diff --git a/.github/workflows/branch-docs.yml b/.github/workflows/branch-docs.yml index b197c02bd..7a4ab1f1c 100644 --- a/.github/workflows/branch-docs.yml +++ b/.github/workflows/branch-docs.yml @@ -1,13 +1,15 @@ name: ActivitySim Branch Docs # This workflow is provided as a service for forks to build branch-specific documentation. -on: push +on: + - push + - workflow_dispatch jobs: docbuild: if: "contains(github.event.head_commit.message, '[makedocs]') && (github.repository_owner != 'ActivitySim') && (github.ref_name != 'develop')" # develop branch docs are built at the end of the core test workflow, regardless of repository owner or commit message flags - name: ubuntu-latest py3.9 + name: ubuntu-latest py3.10 runs-on: ubuntu-latest defaults: run: @@ -16,24 +18,35 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 # get all tags, lets setuptools_scm do its thing - - name: Set up Python 3.9 - uses: actions/setup-python@v2 - with: - python-version: 3.9 - - name: Install dependencies + + - name: Setup Mambaforge uses: conda-incubator/setup-miniconda@v2 with: miniforge-variant: Mambaforge miniforge-version: latest use-mamba: true - environment-file: conda-environments/docbuild.yml - python-version: 3.9 + python-version: "3.10" activate-environment: docbuild auto-activate-base: false auto-update-conda: false + + - name: Set cache date for year and month + run: echo "DATE=$(date +'%Y%m')" >> $GITHUB_ENV + + - uses: actions/cache@v3 + with: + path: /usr/share/miniconda3/envs/docbuild + key: linux-64-conda-${{ hashFiles('conda-environments/docbuild.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }} + id: cache + + - name: Update environment + run: mamba env update --verbose -n docbuild -f conda-environments/docbuild.yml + if: steps.cache.outputs.cache-hit != 'true' + - name: Install activitysim run: | python -m pip install . + - name: Conda checkup run: | conda info -a @@ -41,11 +54,13 @@ jobs: echo REPOSITORY ${{ github.repository }} echo REF ${{ github.ref }} echo REF_NAME ${{ github.ref_name }} + - name: Build the docs run: | cd docs make clean make html + - name: Push to GitHub Pages uses: peaceiris/actions-gh-pages@v3.8.0 with: diff --git a/.github/workflows/core_tests.yml b/.github/workflows/core_tests.yml index 6215c66da..2f43642f1 100644 --- a/.github/workflows/core_tests.yml +++ b/.github/workflows/core_tests.yml @@ -10,14 +10,14 @@ on: - '*' env: - CACHE_NUMBER: 1 # increase to reset cache manually + CACHE_NUMBER: 0 # increase to reset cache manually jobs: foundation: strategy: matrix: - python-version: [3.9] + python-version: ["3.10"] defaults: run: shell: bash -l {0} @@ -38,14 +38,28 @@ jobs: - name: Set cache date for year and month run: echo "DATE=$(date +'%Y%m')" >> $GITHUB_ENV - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: /usr/share/miniconda3/envs/asim-test key: linux-64-conda-${{ hashFiles('conda-environments/github-actions-tests.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }} id: cache - name: Update environment - run: mamba env update -n asim-test -f conda-environments/github-actions-tests.yml + run: | + mamba env update -n asim-test -f conda-environments/github-actions-tests.yml + mamba install --yes \ + "psutil=5.9.5" \ + "pydantic=2.6.1" \ + "pypyr=5.8.0" \ + "pytables=3.6.1" \ + "pytest-cov" \ + "pytest-regressions=2.5.0" \ + "scikit-learn=1.2.2" \ + "sharrow>=2.6.0" \ + "simwrapper=1.8.5" \ + "xarray=2023.2.0" \ + "zarr=2.14.2" \ + "zstandard=0.21.0" if: steps.cache.outputs.cache-hit != 'true' - name: Install activitysim @@ -81,6 +95,10 @@ jobs: run: | python -m pytest --pyargs activitysim.cli + - name: Test activitysim.examples.test + run: | + python -m pytest --pyargs activitysim.examples.test + cross-platform: # also test foundation cross platforms, but do not require a successful @@ -92,12 +110,12 @@ jobs: - os: macos-latest label: macOS prefix: /Users/runner/miniconda3/envs/asim-test - python-version: 3.9 + python-version: "3.10" - os: windows-latest label: win-64 prefix: C:\Miniconda3\envs\asim-test - python-version: 3.9 + python-version: "3.10" defaults: run: @@ -120,14 +138,28 @@ jobs: - name: Set cache date for year and month run: echo "DATE=$(date +'%Y%m')" >> $GITHUB_ENV - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ${{ matrix.prefix }} key: ${{ matrix.label }}-conda-${{ hashFiles('conda-environments/github-actions-tests.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }} id: cache - name: Update environment - run: mamba env update -n asim-test -f conda-environments/github-actions-tests.yml + run: | + mamba env update -n asim-test -f conda-environments/github-actions-tests.yml + mamba install --yes \ + "psutil=5.9.5" \ + "pydantic=2.6.1" \ + "pypyr=5.8.0" \ + "pytables=3.6.1" \ + "pytest-cov" \ + "pytest-regressions=2.5.0" \ + "scikit-learn=1.2.2" \ + "sharrow>=2.6.0" \ + "simwrapper=1.8.5" \ + "xarray=2023.2.0" \ + "zarr=2.14.2" \ + "zstandard=0.21.0" if: steps.cache.outputs.cache-hit != 'true' - name: Install activitysim @@ -164,11 +196,11 @@ jobs: python -m pytest --pyargs activitysim.cli - regional_models: + builtin_regional_models: needs: foundation env: mamba-env-prefix: /usr/share/miniconda3/envs/asim-test - python-version: 3.9 + python-version: "3.10" label: linux-64 strategy: matrix: @@ -180,7 +212,7 @@ jobs: - prototype_mtc_extended - placeholder_sandag - prototype_sandag_xborder - - prototype_semcog + - production_semcog - prototype_mwcog - placeholder_multiple_zone fail-fast: false @@ -204,14 +236,28 @@ jobs: - name: Set cache date for year and month run: echo "DATE=$(date +'%Y%m')" >> $GITHUB_ENV - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ${{ env.mamba-env-prefix }} key: ${{ env.label }}-conda-${{ hashFiles('conda-environments/github-actions-tests.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }} id: cache - name: Update environment - run: mamba env update -n asim-test -f conda-environments/github-actions-tests.yml + run: | + mamba env update -n asim-test -f conda-environments/github-actions-tests.yml + mamba install --yes \ + "psutil=5.9.5" \ + "pydantic=2.6.1" \ + "pypyr=5.8.0" \ + "pytables=3.6.1" \ + "pytest-cov" \ + "pytest-regressions=2.5.0" \ + "scikit-learn=1.2.2" \ + "sharrow>=2.6.0" \ + "simwrapper=1.8.5" \ + "xarray=2023.2.0" \ + "zarr=2.14.2" \ + "zstandard=0.21.0" if: steps.cache.outputs.cache-hit != 'true' - name: Install activitysim @@ -235,7 +281,7 @@ jobs: # - name: Get a random number # run: echo "RANDOM_SUFFIX=${RANDOM}${RANDOM}" >> $GITHUB_ENV # - # - uses: actions/cache@v2 + # - uses: actions/cache@v3 # # store the regional model's cache directory in github actions cache # # this will (almost) never hit on primary key due to the random number # # but will pull the most recent cache from restore-keys... and then @@ -253,11 +299,85 @@ jobs: run: | python -m pytest activitysim/examples/${{ matrix.region }}/test --durations=0 + external_regional_models: + needs: foundation + env: + mamba-env-prefix: /usr/share/miniconda3/envs/asim-test + python-version: "3.10" + label: linux-64 + strategy: + matrix: + region: + - prototype_mtc + - prototype_psrc_in_development + fail-fast: false + defaults: + run: + shell: bash -l {0} + name: ${{ matrix.region }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Setup Mambaforge + uses: conda-incubator/setup-miniconda@v2 + with: + miniforge-variant: Mambaforge + miniforge-version: latest + activate-environment: asim-test + use-mamba: true + python-version: ${{ env.python-version }} + + - name: Set cache date for year and month + run: echo "DATE=$(date +'%Y%m')" >> $GITHUB_ENV + + - uses: actions/cache@v3 + with: + path: | + ${{ env.mamba-env-prefix }} + ~/.cache/ActivitySim + key: ${{ env.label }}-conda-${{ hashFiles('conda-environments/github-actions-tests.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }} + id: cache + + - name: Update environment + run: | + mamba env update -n asim-test -f conda-environments/github-actions-tests.yml + mamba install --yes \ + "psutil=5.9.5" \ + "pydantic=2.6.1" \ + "pypyr=5.8.0" \ + "pytables=3.6.1" \ + "pytest-cov" \ + "pytest-regressions=2.5.0" \ + "scikit-learn=1.2.2" \ + "sharrow>=2.6.0" \ + "simwrapper=1.8.5" \ + "xarray=2023.2.0" \ + "zarr=2.14.2" \ + "zstandard=0.21.0" + if: steps.cache.outputs.cache-hit != 'true' + + - name: Install activitysim + # installing without dependencies is faster, we trust that all needed dependencies + # are in the conda environment defined above. Also, this avoids pip getting + # confused and reinstalling tables (pytables). + run: | + python -m pip install -e . --no-deps + + - name: Conda checkup + run: | + mamba info -a + mamba list + + - name: Test ${{ matrix.region }} + run: | + python -m activitysim test ${{ matrix.region }} + random_seed_generation: needs: foundation env: mamba-env-prefix: /usr/share/miniconda3/envs/asim-test - python-version: 3.9 + python-version: "3.10" label: linux-64 defaults: run: @@ -280,14 +400,28 @@ jobs: - name: Set cache date for year and month run: echo "DATE=$(date +'%Y%m')" >> $GITHUB_ENV - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ${{ env.mamba-env-prefix }} key: ${{ env.label }}-conda-${{ hashFiles('conda-environments/github-actions-tests.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }} id: cache - name: Update environment - run: mamba env update -n asim-test -f conda-environments/github-actions-tests.yml + run: | + mamba env update -n asim-test -f conda-environments/github-actions-tests.yml + mamba install --yes \ + "psutil=5.9.5" \ + "pydantic=2.6.1" \ + "pypyr=5.8.0" \ + "pytables=3.6.1" \ + "pytest-cov" \ + "pytest-regressions=2.5.0" \ + "scikit-learn=1.2.2" \ + "sharrow>=2.6.0" \ + "simwrapper=1.8.5" \ + "xarray=2023.2.0" \ + "zarr=2.14.2" \ + "zstandard=0.21.0" if: steps.cache.outputs.cache-hit != 'true' - name: Install activitysim @@ -310,7 +444,7 @@ jobs: needs: foundation env: mamba-env-prefix: /usr/share/miniconda3/envs/asim-test - python-version: 3.9 + python-version: "3.10" label: linux-64 defaults: run: @@ -332,18 +466,32 @@ jobs: - name: Set cache date for year and month run: echo "DATE=$(date +'%Y%m')" >> $GITHUB_ENV - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ${{ env.mamba-env-prefix }} key: ${{ env.label }}-conda-${{ hashFiles('conda-environments/github-actions-tests.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }} id: cache - name: Update environment - run: mamba env update -n asim-test -f conda-environments/github-actions-tests.yml + run: | + mamba env update -n asim-test -f conda-environments/github-actions-tests.yml + mamba install --yes \ + "psutil=5.9.5" \ + "pydantic=2.6.1" \ + "pypyr=5.8.0" \ + "pytables=3.6.1" \ + "pytest-cov" \ + "pytest-regressions=2.5.0" \ + "scikit-learn=1.2.2" \ + "sharrow>=2.6.0" \ + "simwrapper=1.8.5" \ + "xarray=2023.2.0" \ + "zarr=2.14.2" \ + "zstandard=0.21.0" if: steps.cache.outputs.cache-hit != 'true' - name: Install Larch - run: mamba install "larch>=5.5.3" + run: mamba install "larch>=5.7.1" - name: Install activitysim # installing without dependencies is faster, we trust that all needed dependencies @@ -373,10 +521,10 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 # get all tags, lets setuptools_scm do its thing - - name: Set up Python 3.9 + - name: Set up Python 3.10 uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: "3.10" - name: Install dependencies uses: conda-incubator/setup-miniconda@v2 with: @@ -384,7 +532,7 @@ jobs: miniforge-version: latest use-mamba: true environment-file: conda-environments/docbuild.yml - python-version: 3.9 + python-version: "3.10" activate-environment: docbuild auto-activate-base: false auto-update-conda: false diff --git a/.gitignore b/.gitignore index b1c67af87..ff98b3c68 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,6 @@ sandbox/ .pytest_cache .vagrant - # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] @@ -77,3 +76,7 @@ _test_est **/output/ **/_generated_version.py docs/**/_generated +activitysim/examples/prototype_mtc_extended/test/*.ipynb +activitysim/examples/prototype_mtc/*.ipynb +Untitled.ipynb +docs/dev-guide/_generated2 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3a59ed152..41fecfab5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,14 +1,14 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v4.4.0 hooks: - id: end-of-file-fixer exclude: .*\.ipynb - id: trailing-whitespace - repo: https://github.com/pycqa/isort - rev: 5.10.1 + rev: 5.12.0 hooks: - id: isort args: ["--profile", "black", "--filter-files"] @@ -18,7 +18,7 @@ repos: hooks: - id: black -- repo: https://github.com/PyCQA/flake8 - rev: 5.0.4 - hooks: - - id: flake8 +#- repo: https://github.com/PyCQA/flake8 +# rev: 5.0.4 +# hooks: +# - id: flake8 diff --git a/AAA-BreakingChanges.md b/AAA-BreakingChanges.md new file mode 100644 index 000000000..feae1ae50 --- /dev/null +++ b/AAA-BreakingChanges.md @@ -0,0 +1,3 @@ + + +- The 'run_list' key in settings.yaml is no longer supported. diff --git a/activitysim/abm/__init__.py b/activitysim/abm/__init__.py index eb5a29961..d877297e8 100644 --- a/activitysim/abm/__init__.py +++ b/activitysim/abm/__init__.py @@ -1,3 +1,4 @@ # ActivitySim # See full license in LICENSE.txt. -from . import misc, models, tables +from activitysim.abm import misc, models, tables +from activitysim.core.steps import output # also contains workflow.step # noqa: F401 diff --git a/activitysim/abm/misc.py b/activitysim/abm/misc.py index 528c8db93..2dd0afdf5 100644 --- a/activitysim/abm/misc.py +++ b/activitysim/abm/misc.py @@ -1,10 +1,13 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +import numpy as np import pandas as pd -from activitysim.core import config, inject +from activitysim.core import workflow # FIXME # warnings.filterwarnings('ignore', category=pd.io.pytables.PerformanceWarning) @@ -13,23 +16,27 @@ logger = logging.getLogger(__name__) -@inject.injectable(cache=True) -def households_sample_size(settings, override_hh_ids): +@workflow.cached_object +def households_sample_size(state: workflow.State, override_hh_ids) -> int: if override_hh_ids is None: - return settings.get("households_sample_size", 0) + return state.settings.households_sample_size else: - return 0 if override_hh_ids is None else len(override_hh_ids) + return len(override_hh_ids) -@inject.injectable(cache=True) -def override_hh_ids(settings): +@workflow.cached_object +def override_hh_ids(state: workflow.State) -> np.ndarray | None: - hh_ids_filename = settings.get("hh_ids", None) + hh_ids_filename = state.settings.hh_ids if hh_ids_filename is None: return None - file_path = config.data_file_path(hh_ids_filename, mandatory=False) + file_path = state.filesystem.get_data_file_path(hh_ids_filename, mandatory=False) + if not file_path: + file_path = state.filesystem.get_config_file_path( + hh_ids_filename, mandatory=False + ) if not file_path: logger.error( "hh_ids file name '%s' specified in settings not found" % hh_ids_filename @@ -56,41 +63,31 @@ def override_hh_ids(settings): return household_ids -@inject.injectable(cache=True) -def trace_hh_id(settings): - - id = settings.get("trace_hh_id", None) - - if id and not isinstance(id, int): - logger.warning( - "setting trace_hh_id is wrong type, should be an int, but was %s" % type(id) - ) - id = None - - return id - +@workflow.cached_object +def trace_od(state: workflow.State) -> tuple[int, int] | None: -@inject.injectable(cache=True) -def trace_od(settings): - - od = settings.get("trace_od", None) + od = state.settings.trace_od if od and not ( - isinstance(od, list) and len(od) == 2 and all(isinstance(x, int) for x in od) + isinstance(od, list | tuple) + and len(od) == 2 + and all(isinstance(x, int) for x in od) ): - logger.warning("setting trace_od should be a list of length 2, but was %s" % od) + logger.warning( + "setting trace_od should be a list or tuple of length 2, but was %s" % od + ) od = None return od -@inject.injectable(cache=True) -def chunk_size(settings): - _chunk_size = int(settings.get("chunk_size", 0) or 0) +@workflow.cached_object +def chunk_size(state: workflow.State) -> int: + _chunk_size = int(state.settings.chunk_size or 0) return _chunk_size -@inject.injectable(cache=True) -def check_for_variability(settings): - return bool(settings.get("check_for_variability", False)) +@workflow.cached_object +def check_for_variability(state: workflow.State) -> bool: + return bool(state.settings.check_for_variability) diff --git a/activitysim/abm/models/__init__.py b/activitysim/abm/models/__init__.py index 1c288f8c4..138366843 100644 --- a/activitysim/abm/models/__init__.py +++ b/activitysim/abm/models/__init__.py @@ -15,6 +15,7 @@ initialize, initialize_los, initialize_tours, + input_checker, joint_tour_composition, joint_tour_destination, joint_tour_frequency, diff --git a/activitysim/abm/models/accessibility.py b/activitysim/abm/models/accessibility.py index edd928e5c..f82a34f67 100644 --- a/activitysim/abm/models/accessibility.py +++ b/activitysim/abm/models/accessibility.py @@ -1,26 +1,85 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +from typing import Any +import numba as nb import numpy as np import pandas as pd -from activitysim.core import assign, chunk, config, inject, los, mem, pipeline, tracing -from activitysim.core.pathbuilder import TransitVirtualPathBuilder +from activitysim.core import assign, chunk, los, workflow +from activitysim.core.configuration.base import PydanticReadable logger = logging.getLogger(__name__) +class AccessibilitySettings(PydanticReadable): + """ + Settings for aggregate accessibility component. + """ + + CONSTANTS: dict[str, Any] = {} + + land_use_columns: list[str] = [] + """Only include the these columns in the computational tables + + Memory usage is reduced by only listing the minimum columns needed by + the SPEC, and nothing extra. + """ + + SPEC: str = "accessibility.csv" + """Filename for the accessibility specification (csv) file.""" + + explicit_chunk: int = 0 + """If > 0, use this chunk size instead of adaptive chunking.""" + + +@nb.njit +def _accumulate_accessibility(arr, orig_zone_count, dest_zone_count): + assert arr.size == orig_zone_count * dest_zone_count + assert arr.ndim == 1 + i = 0 + result = np.empty((orig_zone_count,), dtype=arr.dtype) + for o in range(orig_zone_count): + x = 0 + for d in range(dest_zone_count): + x += arr[i] + i += 1 + result[o] = np.log1p(x) + return result + + def compute_accessibilities_for_zones( - accessibility_df, - land_use_df, - assignment_spec, - constants, - network_los, - trace_od, - trace_label, + state: workflow.State, + accessibility_df: pd.DataFrame, + land_use_df: pd.DataFrame, + assignment_spec: dict, + constants: dict, + network_los: los.Network_LOS, + trace_label: str, + chunk_sizer: chunk.ChunkSizer, ): - + """ + Compute accessibility for each zone in land use file using expressions from accessibility_spec. + + Parameters + ---------- + state : workflow.State + accessibility_df : pd.DataFrame + land_use_df : pd.DataFrame + assignment_spec : dict + constants : dict + network_los : los.Network_LOS + trace_label : str + chunk_sizer : chunk.ChunkSizer + + Returns + ------- + accessibility_df : pd.DataFrame + The accessibility_df is updated in place. + """ orig_zones = accessibility_df.index.values dest_zones = land_use_df.index.values @@ -33,23 +92,29 @@ def compute_accessibilities_for_zones( ) # create OD dataframe - od_df = pd.DataFrame( - data={ - "orig": np.repeat(orig_zones, dest_zone_count), - "dest": np.tile(dest_zones, orig_zone_count), - } - ) - + od_data = { + "orig": np.repeat(orig_zones, dest_zone_count), + "dest": np.tile(dest_zones, orig_zone_count), + } + # previously, the land use was added to the dataframe via pd.merge + # but the merge is expensive and unnecessary as we can just tile. + logger.debug(f"{trace_label}: tiling land_use_columns into od_data") + for c in land_use_df.columns: + od_data[c] = np.tile(land_use_df[c].to_numpy(), orig_zone_count) + logger.debug(f"{trace_label}: converting od_data to DataFrame") + od_df = pd.DataFrame(od_data) + logger.debug(f"{trace_label}: dropping od_data") + del od_data + logger.debug(f"{trace_label}: dropping od_data complete") + + trace_od = state.settings.trace_od if trace_od: trace_orig, trace_dest = trace_od trace_od_rows = (od_df.orig == trace_orig) & (od_df.dest == trace_dest) else: trace_od_rows = None - # merge land_use_columns into od_df - logger.info(f"{trace_label}: merge land_use_columns into od_df") - od_df = pd.merge(od_df, land_use_df, left_on="dest", right_index=True).sort_index() - chunk.log_df(trace_label, "od_df", od_df) + chunk_sizer.log_df(trace_label, "od_df", od_df) locals_d = { "log": np.log, @@ -59,6 +124,7 @@ def compute_accessibilities_for_zones( locals_d.update(constants) skim_dict = network_los.get_default_skim_dict() + # FIXME: because od_df is so huge, next two lines use a fair bit of memory locals_d["skim_od"] = skim_dict.wrap("orig", "dest").set_df(od_df) locals_d["skim_do"] = skim_dict.wrap("dest", "orig").set_df(od_df) @@ -67,36 +133,40 @@ def compute_accessibilities_for_zones( logger.info(f"{trace_label}: assign.assign_variables") results, trace_results, trace_assigned_locals = assign.assign_variables( + state, assignment_spec, od_df, locals_d, trace_rows=trace_od_rows, trace_label=trace_label, - chunk_log=True, + chunk_log=chunk_sizer, ) - chunk.log_df(trace_label, "results", results) + chunk_sizer.log_df(trace_label, "results", results) logger.info(f"{trace_label}: have results") # accessibility_df = accessibility_df.copy() + accessibility_new_columns = {} for column in results.columns: - data = np.asanyarray(results[column]) - data.shape = (orig_zone_count, dest_zone_count) # (o,d) - accessibility_df[column] = np.log(np.sum(data, axis=1) + 1) + logger.info(f"{trace_label}: aggregating column {column}") + accessibility_new_columns[column] = _accumulate_accessibility( + results[column].to_numpy(), orig_zone_count, dest_zone_count + ) + logger.info(f"{trace_label}: completed aggregating") + accessibility_df = accessibility_df.assign(**accessibility_new_columns) + logger.info(f"{trace_label}: completed aggregating info df") if trace_od: - if not trace_od_rows.any(): logger.warning( f"trace_od not found origin = {trace_orig}, dest = {trace_dest}" ) else: - # add OD columns to trace results df = pd.concat([od_df[trace_od_rows], trace_results], axis=1) # dump the trace results table (with _temp variables) to aid debugging - tracing.trace_df( + state.tracing.trace_df( df, label="accessibility", index_label="skim_offset", @@ -105,16 +175,24 @@ def compute_accessibilities_for_zones( ) if trace_assigned_locals: - tracing.write_csv( + state.tracing.write_csv( trace_assigned_locals, file_name="accessibility_locals" ) return accessibility_df -@inject.step() -def compute_accessibility(land_use, accessibility, network_los, chunk_size, trace_od): - +@workflow.step +def compute_accessibility( + state: workflow.State, + land_use: pd.DataFrame, + accessibility: pd.DataFrame, + network_los: los.Network_LOS, + model_settings: AccessibilitySettings | None = None, + model_settings_file_name: str = "accessibility.yaml", + trace_label: str = "compute_accessibility", + output_table_name: str = "accessibility", +) -> None: """ Compute accessibility for each zone in land use file using expressions from accessibility_spec @@ -130,45 +208,56 @@ def compute_accessibility(land_use, accessibility, network_los, chunk_size, trac product mutes large differences. The decay function on the walk accessibility measure is steeper than automobile or transit. The minimum accessibility is zero. """ + if model_settings is None: + model_settings = AccessibilitySettings.read_settings_file( + state.filesystem, model_settings_file_name + ) - trace_label = "compute_accessibility" - model_settings = config.read_model_settings("accessibility.yaml") assignment_spec = assign.read_assignment_spec( - config.config_file_path("accessibility.csv") + state.filesystem.get_config_file_path(model_settings.SPEC) ) - accessibility_df = accessibility.to_frame() + accessibility_df = accessibility if len(accessibility_df.columns) > 0: logger.warning( - f"accessibility table is not empty. Columns:{list(accessibility_df.columns)}" + f"accessibility table is not empty. " + f"Columns:{list(accessibility_df.columns)}" ) - raise RuntimeError(f"accessibility table is not empty.") + raise RuntimeError("accessibility table is not empty.") - constants = config.get_model_constants(model_settings) + constants = model_settings.CONSTANTS - # only include the land_use columns needed by spec, as specified by land_use_columns model_setting - land_use_columns = model_settings.get("land_use_columns", []) - land_use_df = land_use.to_frame() + # only include the land_use columns needed by spec, + # as specified by land_use_columns model_setting + land_use_columns = model_settings.land_use_columns + land_use_df = land_use land_use_df = land_use_df[land_use_columns] logger.info( - f"Running {trace_label} with {len(accessibility_df.index)} orig zones {len(land_use_df)} dest zones" + f"Running {trace_label} with {len(accessibility_df.index)} orig zones " + f"{len(land_use_df)} dest zones" ) accessibilities_list = [] - - for i, chooser_chunk, chunk_trace_label in chunk.adaptive_chunked_choosers( - accessibility_df, chunk_size, trace_label + explicit_chunk_size = model_settings.explicit_chunk + + for ( + _i, + chooser_chunk, + _chunk_trace_label, + chunk_sizer, + ) in chunk.adaptive_chunked_choosers( + state, accessibility_df, trace_label, explicit_chunk_size=explicit_chunk_size ): - accessibilities = compute_accessibilities_for_zones( + state, chooser_chunk, land_use_df, assignment_spec, constants, network_los, - trace_od, trace_label, + chunk_sizer, ) accessibilities_list.append(accessibilities) @@ -177,4 +266,4 @@ def compute_accessibility(land_use, accessibility, network_los, chunk_size, trac logger.info(f"{trace_label} computed accessibilities {accessibility_df.shape}") # - write table to pipeline - pipeline.replace_table("accessibility", accessibility_df) + state.add_table(output_table_name, accessibility_df) diff --git a/activitysim/abm/models/atwork_subtour_destination.py b/activitysim/abm/models/atwork_subtour_destination.py index 1b69cde77..d0d7fd991 100644 --- a/activitysim/abm/models/atwork_subtour_destination.py +++ b/activitysim/abm/models/atwork_subtour_destination.py @@ -1,51 +1,54 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd -from activitysim.core import config, inject, pipeline, simulate, tracing -from activitysim.core.interaction_sample import interaction_sample -from activitysim.core.interaction_sample_simulate import interaction_sample_simulate +from activitysim.abm.models.util import tour_destination +from activitysim.core import config, estimation, los, tracing, workflow +from activitysim.core.configuration.logit import TourLocationComponentSettings from activitysim.core.util import assign_in_place -from .util import estimation, tour_destination - logger = logging.getLogger(__name__) DUMP = False -@inject.step() +@workflow.step def atwork_subtour_destination( - tours, persons_merged, network_los, chunk_size, trace_hh_id -): - - trace_label = "atwork_subtour_destination" - model_settings_file_name = "atwork_subtour_destination.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + network_los: los.Network_LOS, + model_settings: TourLocationComponentSettings | None = None, + model_settings_file_name: str = "atwork_subtour_destination.yaml", + trace_label: str = "atwork_subtour_destination", +) -> None: + if model_settings is None: + model_settings = TourLocationComponentSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) future_settings = { "SIZE_TERM_SELECTOR": "atwork", "SEGMENTS": ["atwork"], "ORIG_ZONE_ID": "workplace_zone_id", } - model_settings = config.future_model_settings( + model_settings = config.future_component_settings( model_settings_file_name, model_settings, future_settings ) destination_column_name = "destination" - logsum_column_name = model_settings.get("DEST_CHOICE_LOGSUM_COLUMN_NAME") + logsum_column_name = model_settings.DEST_CHOICE_LOGSUM_COLUMN_NAME want_logsums = logsum_column_name is not None - sample_table_name = model_settings.get("DEST_CHOICE_SAMPLE_TABLE_NAME") + sample_table_name = model_settings.DEST_CHOICE_SAMPLE_TABLE_NAME want_sample_table = ( - config.setting("want_dest_choice_sample_tables") - and sample_table_name is not None + state.settings.want_dest_choice_sample_tables and sample_table_name is not None ) - persons_merged = persons_merged.to_frame() - - tours = tours.to_frame() subtours = tours[tours.tour_category == "atwork"] # - if no atwork subtours @@ -53,21 +56,20 @@ def atwork_subtour_destination( tracing.no_results("atwork_subtour_destination") return - estimator = estimation.manager.begin_estimation("atwork_subtour_destination") + estimator = estimation.manager.begin_estimation(state, "atwork_subtour_destination") if estimator: estimator.write_coefficients(model_settings=model_settings) # estimator.write_spec(model_settings, tag='SAMPLE_SPEC') - estimator.write_spec(model_settings, tag="SPEC") - estimator.set_alt_id(model_settings["ALT_DEST_COL_NAME"]) + estimator.write_spec(file_name=model_settings.SPEC, tag="SPEC") + estimator.set_alt_id(model_settings.ALT_DEST_COL_NAME) estimator.write_table( - inject.get_injectable("size_terms"), "size_terms", append=False - ) - estimator.write_table( - inject.get_table("land_use").to_frame(), "landuse", append=False + state.get_injectable("size_terms"), "size_terms", append=False ) + estimator.write_table(state.get_dataframe("land_use"), "landuse", append=False) estimator.write_model_settings(model_settings, model_settings_file_name) choices_df, save_sample_df = tour_destination.run_tour_destination( + state, subtours, persons_merged, want_logsums, @@ -75,8 +77,6 @@ def atwork_subtour_destination( model_settings, network_los, estimator, - chunk_size, - trace_hh_id, trace_label, ) @@ -89,13 +89,23 @@ def atwork_subtour_destination( estimator.end_estimation() subtours[destination_column_name] = choices_df["choice"] - assign_in_place(tours, subtours[[destination_column_name]]) + assign_in_place( + tours, + subtours[[destination_column_name]], + state.settings.downcast_int, + state.settings.downcast_float, + ) if want_logsums: subtours[logsum_column_name] = choices_df["logsum"] - assign_in_place(tours, subtours[[logsum_column_name]]) + assign_in_place( + tours, + subtours[[logsum_column_name]], + state.settings.downcast_int, + state.settings.downcast_float, + ) - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) tracing.print_summary( destination_column_name, subtours[destination_column_name], describe=True @@ -104,9 +114,9 @@ def atwork_subtour_destination( if want_sample_table: assert len(save_sample_df.index.get_level_values(0).unique()) == len(choices_df) # save_sample_df.set_index(model_settings['ALT_DEST_COL_NAME'], append=True, inplace=True) - pipeline.extend_table(sample_table_name, save_sample_df) + state.extend_table(sample_table_name, save_sample_df) - if trace_hh_id: - tracing.trace_df( + if state.settings.trace_hh_id: + state.tracing.trace_df( tours, label="atwork_subtour_destination", columns=["destination"] ) diff --git a/activitysim/abm/models/atwork_subtour_frequency.py b/activitysim/abm/models/atwork_subtour_frequency.py index d42b97fdc..f73346d10 100644 --- a/activitysim/abm/models/atwork_subtour_frequency.py +++ b/activitysim/abm/models/atwork_subtour_frequency.py @@ -1,56 +1,92 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing - -from .util import estimation -from .util.tour_frequency import process_atwork_subtours +from activitysim.abm.models.util.tour_frequency import process_atwork_subtours +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import LogitComponentSettings logger = logging.getLogger(__name__) -def add_null_results(trace_label, tours): +def add_null_results(state, trace_label, tours): logger.info("Skipping %s: add_null_results", trace_label) - tours["atwork_subtour_frequency"] = np.nan - pipeline.replace_table("tours", tours) + cat_type = pd.api.types.CategoricalDtype( + [""], + ordered=False, + ) + choices = choices.astype(cat_type) + tours["atwork_subtour_frequency"] = "" + tours["atwork_subtour_frequency"] = tours["atwork_subtour_frequency"].astype( + cat_type + ) + state.add_table("tours", tours) + + +class AtworkSubtourFrequencySettings(LogitComponentSettings, extra="forbid"): + """ + Settings for the `atwork_subtour_frequency` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" -@inject.step() -def atwork_subtour_frequency(tours, persons_merged, chunk_size, trace_hh_id): +@workflow.step +def atwork_subtour_frequency( + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + model_settings: AtworkSubtourFrequencySettings | None = None, + model_settings_file_name: str = "atwork_subtour_frequency.yaml", + trace_label: str = "atwork_subtour_frequency", +) -> None: """ This model predicts the frequency of making at-work subtour tours (alternatives for this model come from a separate csv file which is configured by the user). """ - trace_label = "atwork_subtour_frequency" - model_settings_file_name = "atwork_subtour_frequency.yaml" - - tours = tours.to_frame() + trace_hh_id = state.settings.trace_hh_id work_tours = tours[tours.tour_type == "work"] # - if no work_tours if len(work_tours) == 0: - add_null_results(trace_label, tours) + add_null_results(state, trace_label, tours) return - model_settings = config.read_model_settings(model_settings_file_name) - estimator = estimation.manager.begin_estimation("atwork_subtour_frequency") + if model_settings is None: + model_settings = AtworkSubtourFrequencySettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + + estimator = estimation.manager.begin_estimation(state, "atwork_subtour_frequency") - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) alternatives = simulate.read_model_alts( - "atwork_subtour_frequency_alternatives.csv", set_index="alt" + state, "atwork_subtour_frequency_alternatives.csv", set_index="alt" ) # merge persons into work_tours - persons_merged = persons_merged.to_frame() work_tours = pd.merge( work_tours, persons_merged, left_on="person_id", right_index=True ) @@ -61,11 +97,13 @@ def atwork_subtour_frequency(tours, persons_merged, chunk_size, trace_hh_id): constants = config.get_model_constants(model_settings) # - preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - expressions.assign_columns( - df=work_tours, model_settings=preprocessor_settings, trace_label=trace_label + state, + df=work_tours, + model_settings=preprocessor_settings, + trace_label=trace_label, ) if estimator: @@ -75,11 +113,11 @@ def atwork_subtour_frequency(tours, persons_merged, chunk_size, trace_hh_id): estimator.write_choosers(work_tours) choices = simulate.simple_simulate( + state, choosers=work_tours, spec=model_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="atwork_subtour_frequency", estimator=estimator, @@ -87,6 +125,11 @@ def atwork_subtour_frequency(tours, persons_merged, chunk_size, trace_hh_id): # convert indexes to alternative names choices = pd.Series(model_spec.columns[choices.values], index=choices.index) + cat_type = pd.api.types.CategoricalDtype( + alternatives.index.tolist() + [""], + ordered=False, + ) + choices = choices.astype(cat_type) if estimator: estimator.write_choices(choices) @@ -99,22 +142,28 @@ def atwork_subtour_frequency(tours, persons_merged, chunk_size, trace_hh_id): # add atwork_subtour_frequency column to tours # reindex since we are working with a subset of tours tours["atwork_subtour_frequency"] = choices.reindex(tours.index) - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) # - create atwork_subtours based on atwork_subtour_frequency choice names work_tours = tours[tours.tour_type == "work"] assert not work_tours.atwork_subtour_frequency.isnull().any() - subtours = process_atwork_subtours(work_tours, alternatives) + subtours = process_atwork_subtours(state, work_tours, alternatives) + + # convert purpose to pandas categoricals + purpose_type = pd.api.types.CategoricalDtype( + alternatives.columns.tolist() + ["atwork"], ordered=False + ) + subtours["tour_type"] = subtours["tour_type"].astype(purpose_type) - tours = pipeline.extend_table("tours", subtours) + tours = state.extend_table("tours", subtours) - tracing.register_traceable_table("tours", subtours) - pipeline.get_rn_generator().add_channel("tours", subtours) + state.tracing.register_traceable_table("tours", subtours) + state.get_rn_generator().add_channel("tours", subtours) tracing.print_summary( "atwork_subtour_frequency", tours.atwork_subtour_frequency, value_counts=True ) if trace_hh_id: - tracing.trace_df(tours, label="atwork_subtour_frequency.tours") + state.tracing.trace_df(tours, label="atwork_subtour_frequency.tours") diff --git a/activitysim/abm/models/atwork_subtour_mode_choice.py b/activitysim/abm/models/atwork_subtour_mode_choice.py index bc3f1c66c..4e1949dc0 100644 --- a/activitysim/abm/models/atwork_subtour_mode_choice.py +++ b/activitysim/abm/models/atwork_subtour_mode_choice.py @@ -1,45 +1,45 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd -from activitysim.core import ( - config, - expressions, - inject, - los, - pipeline, - simulate, - tracing, -) -from activitysim.core.pathbuilder import TransitVirtualPathBuilder +from activitysim.abm.models.util.mode import run_tour_mode_choice_simulate +from activitysim.core import config, estimation, expressions, los, tracing, workflow +from activitysim.core.configuration.logit import TourModeComponentSettings from activitysim.core.util import assign_in_place -from .util import estimation -from .util.mode import run_tour_mode_choice_simulate - logger = logging.getLogger(__name__) -@inject.step() +@workflow.step def atwork_subtour_mode_choice( - tours, persons_merged, network_los, chunk_size, trace_hh_id -): + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + network_los: los.Network_LOS, + model_settings: TourModeComponentSettings | None = None, + model_settings_file_name: str = "tour_mode_choice.yaml", + trace_label: str = "atwork_subtour_mode_choice", +) -> None: """ At-work subtour mode choice simulate """ - trace_label = "atwork_subtour_mode_choice" + trace_hh_id = state.settings.trace_hh_id - model_settings_file_name = "tour_mode_choice.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + if model_settings is None: + model_settings = TourModeComponentSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - logsum_column_name = model_settings.get("MODE_CHOICE_LOGSUM_COLUMN_NAME") + logsum_column_name = model_settings.MODE_CHOICE_LOGSUM_COLUMN_NAME mode_column_name = "tour_mode" - tours = tours.to_frame() subtours = tours[tours.tour_category == "atwork"] # - if no atwork subtours @@ -49,7 +49,7 @@ def atwork_subtour_mode_choice( subtours_merged = pd.merge( subtours, - persons_merged.to_frame(), + persons_merged, left_on="person_id", right_index=True, how="left", @@ -62,7 +62,7 @@ def atwork_subtour_mode_choice( ) constants = {} - constants.update(config.get_model_constants(model_settings)) + constants.update(model_settings.CONSTANTS) skim_dict = network_los.get_default_skim_dict() @@ -129,7 +129,7 @@ def atwork_subtour_mode_choice( network_los.setting("TVPB_SETTINGS.tour_mode_choice.CONSTANTS") ) - estimator = estimation.manager.begin_estimation("atwork_subtour_mode_choice") + estimator = estimation.manager.begin_estimation(state, "atwork_subtour_mode_choice") if estimator: estimator.write_coefficients(model_settings=model_settings) estimator.write_coefficients_template(model_settings=model_settings) @@ -138,6 +138,7 @@ def atwork_subtour_mode_choice( # FIXME run_tour_mode_choice_simulate writes choosers post-annotation choices_df = run_tour_mode_choice_simulate( + state, subtours_merged, tour_purpose="atwork", model_settings=model_settings, @@ -147,28 +148,23 @@ def atwork_subtour_mode_choice( skims=skims, constants=constants, estimator=estimator, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="tour_mode_choice", ) # add cached tvpb_logsum tap choices for modes specified in tvpb_mode_path_types if network_los.zone_system == los.THREE_ZONE: - - tvpb_mode_path_types = model_settings.get("tvpb_mode_path_types") + tvpb_mode_path_types = model_settings.tvpb_mode_path_types for mode, path_types in tvpb_mode_path_types.items(): - for direction, skim in zip( ["od", "do"], [tvpb_logsum_odt, tvpb_logsum_dot] ): - path_type = path_types[direction] skim_cache = skim.cache[path_type] print(f"mode {mode} direction {direction} path_type {path_type}") for c in skim_cache: - dest_col = f"{direction}_{c}" if dest_col not in choices_df: @@ -194,21 +190,24 @@ def atwork_subtour_mode_choice( "%s choices" % trace_label, choices_df[mode_column_name], value_counts=True ) - assign_in_place(tours, choices_df) - pipeline.replace_table("tours", tours) + assign_in_place( + tours, choices_df, state.settings.downcast_int, state.settings.downcast_float + ) + state.add_table("tours", tours) # - annotate tours table - if model_settings.get("annotate_tours"): - tours = inject.get_table("tours").to_frame() + if model_settings.annotate_tours: + tours = state.get_dataframe("tours") expressions.assign_columns( + state, df=tours, - model_settings=model_settings.get("annotate_tours"), + model_settings=model_settings.annotate_tours, trace_label=tracing.extend_trace_label(trace_label, "annotate_tours"), ) - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) if trace_hh_id: - tracing.trace_df( + state.tracing.trace_df( tours[tours.tour_category == "atwork"], label=tracing.extend_trace_label(trace_label, mode_column_name), slicer="tour_id", diff --git a/activitysim/abm/models/atwork_subtour_scheduling.py b/activitysim/abm/models/atwork_subtour_scheduling.py index 041d899a2..1eec282f2 100644 --- a/activitysim/abm/models/atwork_subtour_scheduling.py +++ b/activitysim/abm/models/atwork_subtour_scheduling.py @@ -1,35 +1,45 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd -from activitysim.core import config, expressions, inject, pipeline, simulate +from activitysim.abm.models.util.vectorize_tour_scheduling import ( + TourSchedulingSettings, + vectorize_subtour_scheduling, +) +from activitysim.core import config, estimation, expressions, simulate from activitysim.core import timetable as tt -from activitysim.core import tracing +from activitysim.core import tracing, workflow +from activitysim.core.configuration.base import PydanticReadable +from activitysim.core.skim_dataset import SkimDataset +from activitysim.core.skim_dictionary import SkimDict from activitysim.core.util import assign_in_place -from .util import estimation -from .util.vectorize_tour_scheduling import vectorize_subtour_scheduling - logger = logging.getLogger(__name__) DUMP = False -@inject.step() +@workflow.step def atwork_subtour_scheduling( - tours, persons_merged, tdd_alts, skim_dict, chunk_size, trace_hh_id -): + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + tdd_alts: pd.DataFrame, + skim_dict: SkimDict | SkimDataset, + model_settings: TourSchedulingSettings | None = None, + model_settings_file_name: str = "tour_scheduling_atwork.yaml", + trace_label: str = "atwork_subtour_scheduling", +) -> None: """ This model predicts the departure time and duration of each activity for at work subtours tours """ - trace_label = "atwork_subtour_scheduling" - model_settings_file_name = "tour_scheduling_atwork.yaml" - - tours = tours.to_frame() + trace_hh_id = state.settings.trace_hh_id subtours = tours[tours.tour_category == "atwork"] # - if no atwork subtours @@ -37,15 +47,20 @@ def atwork_subtour_scheduling( tracing.no_results(trace_label) return - model_settings = config.read_model_settings(model_settings_file_name) - estimator = estimation.manager.begin_estimation("atwork_subtour_scheduling") + if model_settings is None: + model_settings = TourSchedulingSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - sharrow_skip = model_settings.get("sharrow_skip") - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + estimator = estimation.manager.begin_estimation(state, "atwork_subtour_scheduling") - persons_merged = persons_merged.to_frame() + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + sharrow_skip = model_settings.sharrow_skip + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) logger.info("Running %s with %d tours", trace_label, len(subtours)) @@ -56,7 +71,7 @@ def atwork_subtour_scheduling( "od_skims": od_skim_wrapper, } expressions.annotate_preprocessors( - subtours, constants, skims, model_settings, trace_label + state, subtours, constants, skims, model_settings, trace_label ) # parent_tours table with columns ['tour_id', 'tdd'] index = tour_id @@ -71,6 +86,7 @@ def atwork_subtour_scheduling( # we don't need to update timetable because subtours are scheduled inside work trip windows choices = vectorize_subtour_scheduling( + state, parent_tours, subtours, persons_merged, @@ -78,7 +94,7 @@ def atwork_subtour_scheduling( model_spec, model_settings, estimator=estimator, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_label=trace_label, sharrow_skip=sharrow_skip, ) @@ -95,11 +111,13 @@ def atwork_subtour_scheduling( choices.to_frame("tdd"), tdd_alts, left_on=["tdd"], right_index=True, how="left" ) - assign_in_place(tours, tdd_choices) - pipeline.replace_table("tours", tours) + assign_in_place( + tours, tdd_choices, state.settings.downcast_int, state.settings.downcast_float + ) + state.add_table("tours", tours) if trace_hh_id: - tracing.trace_df( + state.tracing.trace_df( tours[tours.tour_category == "atwork"], label="atwork_subtour_scheduling", slicer="person_id", @@ -111,12 +129,12 @@ def atwork_subtour_scheduling( subtours = tours[tours.tour_category == "atwork"] parent_tours = tours[tours.index.isin(subtours.parent_tour_id)] - tracing.dump_df(DUMP, subtours, trace_label, "sub_tours") - tracing.dump_df(DUMP, parent_tours, trace_label, "parent_tours") + state.tracing.dump_df(DUMP, subtours, trace_label, "sub_tours") + state.tracing.dump_df(DUMP, parent_tours, trace_label, "parent_tours") parent_tours["parent_tour_id"] = parent_tours.index subtours = pd.concat([parent_tours, subtours]) - tracing.dump_df( + state.tracing.dump_df( DUMP, tt.tour_map( parent_tours, subtours, tdd_alts, persons_id_col="parent_tour_id" diff --git a/activitysim/abm/models/auto_ownership.py b/activitysim/abm/models/auto_ownership.py index 564d6f94b..16b3141e9 100644 --- a/activitysim/abm/models/auto_ownership.py +++ b/activitysim/abm/models/auto_ownership.py @@ -1,34 +1,59 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -from activitysim.core import config, inject, pipeline, simulate, tracing +import pandas as pd +from pydantic import validator -from .util import estimation +from activitysim.core import config, estimation, simulate, tracing, workflow +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import LogitComponentSettings logger = logging.getLogger(__name__) -@inject.step() -def auto_ownership_simulate(households, households_merged, chunk_size, trace_hh_id): +class AutoOwnershipSettings(LogitComponentSettings): + """ + Settings for the `auto_ownership` component. + """ + + # This model is relatively simple and has no unique settings + + +@workflow.step +def auto_ownership_simulate( + state: workflow.State, + households: pd.DataFrame, + households_merged: pd.DataFrame, + model_settings: AutoOwnershipSettings | None = None, + model_settings_file_name: str = "auto_ownership.yaml", + trace_label: str = "auto_ownership_simulate", + trace_hh_id: bool = False, +) -> None: """ Auto ownership is a standard model which predicts how many cars a household with given characteristics owns """ - trace_label = "auto_ownership_simulate" - model_settings_file_name = "auto_ownership.yaml" - model_settings = config.read_model_settings(model_settings_file_name) - - estimator = estimation.manager.begin_estimation("auto_ownership") - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + if model_settings is None: + model_settings = AutoOwnershipSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + + estimator = estimation.manager.begin_estimation(state, "auto_ownership") + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) nest_spec = config.get_logit_model_settings(model_settings) constants = config.get_model_constants(model_settings) - choosers = households_merged.to_frame() + choosers = households_merged logger.info("Running %s with %d households", trace_label, len(choosers)) @@ -38,14 +63,14 @@ def auto_ownership_simulate(households, households_merged, chunk_size, trace_hh_ estimator.write_coefficients(coefficients_df, model_settings) estimator.write_choosers(choosers) - log_alt_losers = config.setting("log_alt_losers", False) + log_alt_losers = state.settings.log_alt_losers choices = simulate.simple_simulate( + state, choosers=choosers, spec=model_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="auto_ownership", log_alt_losers=log_alt_losers, @@ -58,16 +83,14 @@ def auto_ownership_simulate(households, households_merged, chunk_size, trace_hh_ estimator.write_override_choices(choices) estimator.end_estimation() - households = households.to_frame() - # no need to reindex as we used all households households["auto_ownership"] = choices - pipeline.replace_table("households", households) + state.add_table("households", households) tracing.print_summary( "auto_ownership", households.auto_ownership, value_counts=True ) if trace_hh_id: - tracing.trace_df(households, label="auto_ownership", warn_if_empty=True) + state.tracing.trace_df(households, label="auto_ownership", warn_if_empty=True) diff --git a/activitysim/abm/models/cdap.py b/activitysim/abm/models/cdap.py index f7da93687..e10763730 100644 --- a/activitysim/abm/models/cdap.py +++ b/activitysim/abm/models/cdap.py @@ -1,19 +1,51 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +from pathlib import Path +from typing import Any import pandas as pd -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing +from activitysim.abm.models.util import cdap +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable from activitysim.core.util import reindex -from .util import cdap, estimation - logger = logging.getLogger(__name__) -@inject.step() -def cdap_simulate(persons_merged, persons, households, chunk_size, trace_hh_id): +class CdapSettings(PydanticReadable, extra="forbid"): + PERSON_TYPE_MAP: dict[str, list[int]] + INDIV_AND_HHSIZE1_SPEC: str + INTERACTION_COEFFICIENTS: str = "cdap_interaction_coefficients.csv" + FIXED_RELATIVE_PROPORTIONS_SPEC: str = "cdap_fixed_relative_proportions.csv" + ADD_JOINT_TOUR_UTILITY: bool = False + JOINT_TOUR_COEFFICIENTS: str = "cdap_joint_tour_coefficients.csv" + annotate_persons: PreprocessorSettings | None = None + annotate_households: PreprocessorSettings | None = None + COEFFICIENTS: Path + CONSTANTS: dict[str, Any] = {} + + +@workflow.step +def cdap_simulate( + state: workflow.State, + persons_merged: pd.DataFrame, + persons: pd.DataFrame, + households: pd.DataFrame, + model_settings: CdapSettings | None = None, + model_settings_file_name: str = "cdap.yaml", + trace_label: str = "cdap", +) -> None: """ CDAP stands for Coordinated Daily Activity Pattern, which is a choice of high-level activity pattern for each person, in a coordinated way with other @@ -23,30 +55,28 @@ def cdap_simulate(persons_merged, persons, households, chunk_size, trace_hh_id): routines in the cdap directory of activitysim for this purpose. This module simply applies those utilities using the simulation framework. """ + if model_settings is None: + model_settings = CdapSettings.read_settings_file( + state.filesystem, model_settings_file_name + ) + trace_hh_id = state.settings.trace_hh_id + person_type_map = model_settings.PERSON_TYPE_MAP + estimator = estimation.manager.begin_estimation(state, "cdap") - trace_label = "cdap" - model_settings = config.read_model_settings("cdap.yaml") - person_type_map = model_settings.get("PERSON_TYPE_MAP", None) - assert ( - person_type_map is not None - ), f"Expected to find PERSON_TYPE_MAP setting in cdap.yaml" - estimator = estimation.manager.begin_estimation("cdap") - - cdap_indiv_spec = simulate.read_model_spec( - file_name=model_settings["INDIV_AND_HHSIZE1_SPEC"] + cdap_indiv_spec = state.filesystem.read_model_spec( + file_name=model_settings.INDIV_AND_HHSIZE1_SPEC ) - coefficients_df = simulate.read_model_coefficients(model_settings) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) cdap_indiv_spec = simulate.eval_coefficients( - cdap_indiv_spec, coefficients_df, estimator + state, cdap_indiv_spec, coefficients_df, estimator ) # Rules and coefficients for generating interaction specs for different household sizes - interaction_coefficients_file_name = model_settings.get( - "INTERACTION_COEFFICIENTS", "cdap_interaction_coefficients.csv" - ) + interaction_coefficients_file_name = model_settings.INTERACTION_COEFFICIENTS cdap_interaction_coefficients = pd.read_csv( - config.config_file_path(interaction_coefficients_file_name), comment="#" + state.filesystem.get_config_file_path(interaction_coefficients_file_name), + comment="#", ) # replace cdap_interaction_coefficients coefficient labels with numeric values @@ -74,23 +104,20 @@ def cdap_simulate(persons_merged, persons, households, chunk_size, trace_hh_id): EXCEPT that the values computed are relative proportions, not utilities (i.e. values are not exponentiated before being normalized to probabilities summing to 1.0) """ - cdap_fixed_relative_proportions = simulate.read_model_spec( - file_name=model_settings["FIXED_RELATIVE_PROPORTIONS_SPEC"] + cdap_fixed_relative_proportions = state.filesystem.read_model_spec( + file_name=model_settings.FIXED_RELATIVE_PROPORTIONS_SPEC ) - add_joint_tour_utility = model_settings.get("ADD_JOINT_TOUR_UTILITY", False) + add_joint_tour_utility = model_settings.ADD_JOINT_TOUR_UTILITY if add_joint_tour_utility: # Rules and coefficients for generating cdap joint tour specs for different household sizes - joint_tour_coefficients_file_name = model_settings.get( - "JOINT_TOUR_COEFFICIENTS", "cdap_joint_tour_coefficients.csv" - ) + joint_tour_coefficients_file_name = model_settings.JOINT_TOUR_COEFFICIENTS cdap_joint_tour_coefficients = pd.read_csv( - config.config_file_path(joint_tour_coefficients_file_name), comment="#" + state.filesystem.get_config_file_path(joint_tour_coefficients_file_name), + comment="#", ) - persons_merged = persons_merged.to_frame() - # add tour-based chunk_id so we can chunk all trips in tour together assert "chunk_id" not in persons_merged.columns unique_household_ids = persons_merged.household_id.unique() @@ -113,24 +140,27 @@ def cdap_simulate(persons_merged, persons, households, chunk_size, trace_hh_id): logger.info("Pre-building cdap specs") for hhsize in range(2, cdap.MAX_HHSIZE + 1): spec = cdap.build_cdap_spec( + state, cdap_interaction_coefficients, hhsize, cache=True, joint_tour_alt=add_joint_tour_utility, ) - if inject.get_injectable("locutor", False): + if state.get_injectable("locutor", False): spec.to_csv( - config.output_file_path("cdap_spec_%s.csv" % hhsize), index=True + state.get_output_file_path(f"cdap_spec_{hhsize}.csv"), index=True ) if add_joint_tour_utility: # build cdap joint tour spec # joint_spec_dependency = spec.loc[[c for c in spec.index if c.startswith(('M_p', 'N_p', 'H_p'))]] joint_spec = cdap.build_cdap_joint_spec( - cdap_joint_tour_coefficients, hhsize, cache=True + state, cdap_joint_tour_coefficients, hhsize, cache=True ) - if inject.get_injectable("locutor", False): + if state.get_injectable("locutor", False): joint_spec.to_csv( - config.output_file_path("cdap_joint_spec_%s.csv" % hhsize), + state.get_output_file_path( + f"cdap_joint_spec_{hhsize}.csv", + ), index=True, ) @@ -149,36 +179,37 @@ def cdap_simulate(persons_merged, persons, households, chunk_size, trace_hh_id): ) estimator.write_choosers(persons_merged) for hhsize in range(2, cdap.MAX_HHSIZE + 1): - spec = cdap.get_cached_spec(hhsize) + spec = cdap.get_cached_spec(state, hhsize) estimator.write_table(spec, "spec_%s" % hhsize, append=False) logger.info("Running cdap_simulate with %d persons", len(persons_merged.index)) if add_joint_tour_utility: choices, hh_joint = cdap.run_cdap( + state, persons=persons_merged, person_type_map=person_type_map, cdap_indiv_spec=cdap_indiv_spec, cdap_interaction_coefficients=cdap_interaction_coefficients, cdap_fixed_relative_proportions=cdap_fixed_relative_proportions, locals_d=constants, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_hh_id=trace_hh_id, trace_label=trace_label, add_joint_tour_utility=add_joint_tour_utility, ) else: choices = cdap.run_cdap( + state, persons=persons_merged, person_type_map=person_type_map, cdap_indiv_spec=cdap_indiv_spec, cdap_interaction_coefficients=cdap_interaction_coefficients, cdap_fixed_relative_proportions=cdap_fixed_relative_proportions, locals_d=constants, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_hh_id=trace_hh_id, trace_label=trace_label, - add_joint_tour_utility=add_joint_tour_utility, ) if estimator: @@ -187,33 +218,32 @@ def cdap_simulate(persons_merged, persons, households, chunk_size, trace_hh_id): estimator.write_override_choices(choices) estimator.end_estimation() - # - assign results to persons table and annotate - persons = persons.to_frame() - choices = choices.reindex(persons.index) + cap_cat_type = pd.api.types.CategoricalDtype(["", "M", "N", "H"], ordered=False) + choices = choices.astype(cap_cat_type) persons["cdap_activity"] = choices expressions.assign_columns( + state, df=persons, - model_settings=model_settings.get("annotate_persons"), + model_settings=model_settings.annotate_persons, trace_label=tracing.extend_trace_label(trace_label, "annotate_persons"), ) - pipeline.replace_table("persons", persons) + state.add_table("persons", persons) # - annotate households table - households = households.to_frame() - if add_joint_tour_utility: hh_joint = hh_joint.reindex(households.index) households["has_joint_tour"] = hh_joint expressions.assign_columns( + state, df=households, - model_settings=model_settings.get("annotate_households"), + model_settings=model_settings.annotate_households, trace_label=tracing.extend_trace_label(trace_label, "annotate_households"), ) - pipeline.replace_table("households", households) + state.add_table("households", households) tracing.print_summary("cdap_activity", persons.cdap_activity, value_counts=True) logger.info( diff --git a/activitysim/abm/models/disaggregate_accessibility.py b/activitysim/abm/models/disaggregate_accessibility.py index fe79d3fcd..ab4f9acef 100644 --- a/activitysim/abm/models/disaggregate_accessibility.py +++ b/activitysim/abm/models/disaggregate_accessibility.py @@ -1,93 +1,233 @@ +# ActivitySim +# See full license in LICENSE.txt. +from __future__ import annotations + import logging import random from functools import reduce +from typing import Any, Literal import numpy as np import pandas as pd -from orca import orca from sklearn.cluster import KMeans from activitysim.abm.models import initialize, location_choice -from activitysim.abm.models.util import estimation, tour_destination +from activitysim.abm.models.util import tour_destination from activitysim.abm.tables import shadow_pricing -from activitysim.core import config, inject, los, pipeline, tracing, util +from activitysim.core import estimation, los, tracing, util, workflow +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import TourLocationComponentSettings from activitysim.core.expressions import assign_columns logger = logging.getLogger(__name__) -def read_disaggregate_accessibility_yaml(file_name): +class DisaggregateAccessibilitySuffixes(PydanticReadable): + SUFFIX: str = "proto_" + ROOTS: list[str] = [ + "persons", + "households", + "tours", + "persons_merged", + "person_id", + "household_id", + "tour_id", + ] + + +class DisaggregateAccessibilityTableSettings(PydanticReadable, extra="forbid"): + index_col: str | None = None + zone_col: str | None = None + rename_columns: dict[str, str] = {} + VARIABLES: dict[str, int | list[int]] + """ + Base value(s) for each variable. + + Results in the cartesian product (all non-repeating combinations) of the + fields. + """ + + mapped_fields: dict[str, dict] = {} + """ + Maps variables to the fields generated in VARIABLES. + + For non-combinatorial fields, users can map a variable to the fields generated + in VARIABLES (e.g., income category bins mapped to median dollar values). + """ + + filter_rows: list[str] = [] + """ + filter rows using pandas expressions. + + Users can also filter rows using these expressions if specific variable + combinations are not desired. + """ + + JOIN_ON: Any = None + """ + The persons variable to join the tours to (e.g., person_number). + This is required only for PROTO_TOURS + """ + + +class DisaggregateAccessibilityAnnotateSettings(PydanticReadable, extra="forbid"): + tablename: str + annotate: PreprocessorSettings + + +class DisaggregateAccessibilitySettings(PydanticReadable, extra="forbid"): + suffixes: DisaggregateAccessibilitySuffixes = DisaggregateAccessibilitySuffixes() + ORIGIN_SAMPLE_SIZE: float | int = 0 + """ + The number of sampled origins where logsum is calculated. + + Setting this to zero implies sampling all zones. + + Origins without a logsum will draw from the nearest zone with a logsum. This + parameter is useful for systems with a large number of zones with similar + accessibility. Fractional values less than 1 will be interpreted as a percentage, + e.g., 0.5 = 50% sample. + """ + DESTINATION_SAMPLE_SIZE: float | int = 0 + """ + Number of destination zone alternatives sampled for calculating the destination logsum. + + Setting this to zero implies sampling all zones. + + Decimal values < 1 will be interpreted as a percentage, e.g., 0.5 = 50% sample. + """ + + BASE_RANDOM_SEED: int = 0 + add_size_tables: bool = True + zone_id_names: dict[str, str] = {"index_col": "zone_id"} + ORIGIN_SAMPLE_METHOD: Literal[ + None, "full", "uniform", "uniform-taz", "kmeans" + ] = None + """ + The method in which origins are sampled. + + Population weighted sampling can be TAZ-based or "TAZ-agnostic" using KMeans + clustering. The potential advantage of KMeans is to provide a more geographically + even spread of MAZs sampled that do not rely on TAZ hierarchies. Unweighted + sampling is also possible using 'uniform' and 'uniform-taz'. + + - None [Default] - Sample zones weighted by population, ensuring at least + one TAZ is sampled per MAZ. If n-samples > n-tazs then sample 1 MAZ from + each TAZ until n-remaining-samples < n-tazs, then sample n-remaining-samples + TAZs and sample an MAZ within each of those TAZs. If n-samples < n-tazs, then + it proceeds to the above 'then' condition. + + - "kmeans" - K-Means clustering is performed on the zone centroids (must be + provided as maz_centroids.csv), weighted by population. The clustering yields + k XY coordinates weighted by zone population for n-samples = k-clusters + specified. Once k new cluster centroids are found, these are then approximated + into the nearest available zone centroid and used to calculate accessibilities + on. By default, the k-means method is run on 10 different initial cluster + seeds (n_init) using using [k-means++ seeding algorithm](https://en.wikipedia.org/wiki/K-means%2B%2B). + The k-means method runs for max_iter iterations (default=300). + + - "uniform" - Unweighted sample of N zones independent of each other. + + - "uniform-taz" - Unweighted sample of 1 zone per taz up to the N samples + specified. + """ + + ORIGIN_WEIGHTING_COLUMN: str + CREATE_TABLES: dict[str, DisaggregateAccessibilityTableSettings | str] = {} + MERGE_ON: dict[str, list[str]] + """ + Field to merge the proto-population logsums onto the full synthetic population/ + + The proto-population should be designed such that the logsums are able to be + joined exactly on these variables specified to the full population. + Users specify the to join on using: + + - by: An exact merge will be attempted using these discrete variables. + - asof [optional]: The model can peform an "asof" join for continuous variables, + which finds the nearest value. This method should not be necessary since + synthetic populations are all discrete. + - method [optional]: Optional join method can be "soft", default is None. For + cases where a full inner join is not possible, a Naive Bayes clustering method + is fast but discretely constrained method. The proto-population is treated as + the "training data" to match the synthetic population value to the best possible + proto-population candidate. The Some refinement may be necessary to make this + procedure work. + """ + + FROM_TEMPLATES: bool = False + annotate_proto_tables: list[DisaggregateAccessibilityAnnotateSettings] = [] + """ + Allows modification of the proto-population. + + Annotation configurations are available here, if users wish to modify the + proto-population beyond basic generation in the YAML. + """ + NEAREST_METHOD: str = "skims" + + +def read_disaggregate_accessibility_yaml( + state: workflow.State, file_name +) -> DisaggregateAccessibilitySettings: """ Adds in default table suffixes 'proto_' if not defined in the settings file """ - model_settings = config.read_model_settings(file_name) - if not model_settings.get("suffixes"): - model_settings["suffixes"] = { - "SUFFIX": "proto_", - "ROOTS": [ - "persons", - "households", - "tours", - "persons_merged", - "person_id", - "household_id", - "tour_id", - ], - } + model_settings = DisaggregateAccessibilitySettings.read_settings_file( + state.filesystem, file_name + ) # Convert decimal sample rate to integer sample size for sample in ["ORIGIN_SAMPLE_SIZE", "DESTINATION_SAMPLE_SIZE"]: - size = model_settings.get(sample, 0) + size = getattr(model_settings, sample) if size > 0 and size < 1: - model_settings[sample] = round( - size * len(pipeline.get_table("land_use").index) + setattr( + model_settings, + sample, + round(size * len(state.get_dataframe("land_use").index)), ) return model_settings class ProtoPop: - def __init__(self, network_los, chunk_size): + def __init__(self, state: workflow.State, network_los, chunk_size): + self.state = state # Run necessary inits for later - initialize.initialize_landuse() + initialize.initialize_landuse(state) # Initialization self.proto_pop = {} self.zone_list = [] - self.land_use = pipeline.get_table("land_use") + self.land_use = state.get_dataframe("land_use") self.network_los = network_los self.chunk_size = chunk_size self.model_settings = read_disaggregate_accessibility_yaml( - "disaggregate_accessibility.yaml" + state, "disaggregate_accessibility.yaml" ) # Random seed - self.seed = self.model_settings.get("BASE_RANDOM_SEED", 0) + len( - self.land_use.index - ) + self.seed = self.model_settings.BASE_RANDOM_SEED + len(self.land_use.index) # Generation self.params = self.read_table_settings() self.create_proto_pop() logger.info( - "Created a proto-population with %s households across %s origin zones to %s possible destination zones" - % ( + "Created a proto-population with {} households across {} origin zones to {} possible destination zones".format( len(self.proto_pop["proto_households"]), len(self.proto_pop["proto_households"].home_zone_id.unique()), - self.model_settings["DESTINATION_SAMPLE_SIZE"], + self.model_settings.DESTINATION_SAMPLE_SIZE, ) ) - self.inject_tables() - self.annotate_tables() + self.inject_tables(state) + self.annotate_tables(state) self.merge_persons() # - initialize shadow_pricing size tables after annotating household and person tables # since these are scaled to model size, they have to be created while single-process # this can now be called as a standalone model step instead, add_size_tables - add_size_tables = self.model_settings.get("add_size_tables", True) + add_size_tables = self.model_settings.add_size_tables if add_size_tables: # warnings.warn(f"Calling add_size_tables from initialize will be removed in the future.", FutureWarning) - shadow_pricing._add_size_tables( - self.model_settings.get("suffixes"), scale=False + shadow_pricing.add_size_tables( + state, self.model_settings.suffixes.dict(), scale=False ) def zone_sampler(self): @@ -126,14 +266,14 @@ def zone_sampler(self): # default_zone_col = 'TAZ' if not (self.network_los.zone_system == los.ONE_ZONE) else 'zone_id' # zone_cols = self.model_settings["zone_id_names"].get("zone_group_cols", default_zone_col) - id_col = self.model_settings["zone_id_names"].get("index_col", "zone_id") - method = self.model_settings.get("ORIGIN_SAMPLE_METHOD") - n_samples = self.model_settings.get("ORIGIN_SAMPLE_SIZE", 0) + id_col = self.model_settings.zone_id_names.get("index_col", "zone_id") + method = self.model_settings.ORIGIN_SAMPLE_METHOD + n_samples = int(self.model_settings.ORIGIN_SAMPLE_SIZE) # Get weights, need to get households first to get persons merged. # Note: This will cause empty zones to be excluded. Which is intended, but just know that. zone_weights = self.land_use[ - self.model_settings["ORIGIN_WEIGHTING_COLUMN"] + self.model_settings.ORIGIN_WEIGHTING_COLUMN ].to_frame("weight") zone_weights = zone_weights[zone_weights.weight != 0] @@ -164,7 +304,7 @@ def zone_sampler(self): ), "K-Means only implemented for 2-zone systems for now" # Performs a simple k-means clustering using centroid XY coordinates - centroids_df = pipeline.get_table("maz_centroids") + centroids_df = self.state.get_dataframe("maz_centroids") # Assert that land_use zone ids is subset of centroid zone ids assert set(self.land_use.index).issubset(set(centroids_df.index)) @@ -172,12 +312,12 @@ def zone_sampler(self): # Join the land_use pop on centroids, # this also filter only zones we need (relevant if running scaled model) centroids_df = centroids_df.join( - self.land_use[self.model_settings["ORIGIN_WEIGHTING_COLUMN"]], + self.land_use[self.model_settings.ORIGIN_WEIGHTING_COLUMN], how="inner", ) xy_list = list(centroids_df[["X", "Y"]].itertuples(index=False, name=None)) xy_weights = np.array( - centroids_df[self.model_settings["ORIGIN_WEIGHTING_COLUMN"]] + centroids_df[self.model_settings.ORIGIN_WEIGHTING_COLUMN] ) # Initializer k-means class @@ -298,14 +438,9 @@ def zone_sampler(self): def read_table_settings(self): # Check if setup properly - assert "CREATE_TABLES" in self.model_settings.keys() - # Set zone_id name if not already specified - self.model_settings["zone_id_names"] = self.model_settings.get( - "zone_id_names", {"index_col": "zone_id"} - ) - create_tables = self.model_settings.get("CREATE_TABLES") - from_templates = self.model_settings.get("FROM_TEMPLATES", False) + create_tables = self.model_settings.CREATE_TABLES + from_templates = self.model_settings.FROM_TEMPLATES zone_list = self.zone_sampler() params = {} @@ -326,21 +461,26 @@ def read_table_settings(self): params["proto_households"]["zone_col"] = "home_zone_id" else: assert all( - [True for k, v in create_tables.items() if "VARIABLES" in v.keys()] + [ + True + for k, v in create_tables.items() + if isinstance(v, DisaggregateAccessibilityTableSettings) + ] ) for name, table in create_tables.items(): + assert isinstance(table, DisaggregateAccessibilityTableSettings) # Ensure table variables are all lists params[name.lower()] = { "variables": { k: (v if isinstance(v, list) else [v]) - for k, v in table["VARIABLES"].items() + for k, v in table.VARIABLES.items() }, - "mapped": table.get("mapped_fields", []), - "filter": table.get("filter_rows", []), - "join_on": table.get("JOIN_ON", []), - "index_col": table.get("index_col", []), - "zone_col": table.get("zone_col", []), - "rename_columns": table.get("rename_columns", []), + "mapped": table.mapped_fields, + "filter": table.filter_rows, + "join_on": table.JOIN_ON, + "index_col": table.index_col, + "zone_col": table.zone_col, + "rename_columns": table.rename_columns, } # Add zones to households dicts as vary_on variable @@ -453,23 +593,25 @@ def create_proto_pop(self): klist = ["proto_households", "proto_persons", "proto_tours"] # Create ID columns, defaults to "%tablename%_id" - hhid, perid, tourid = [ + hhid, perid, tourid = ( self.params[x]["index_col"] if len(self.params[x]["index_col"]) > 0 else x + "_id" for x in klist - ] + ) - if self.model_settings.get("FROM_TEMPLATES"): + if self.model_settings.FROM_TEMPLATES: table_params = {k: self.params.get(k) for k in klist} tables = { - k: pd.read_csv(config.config_file_path(v.get("file"))) + k: pd.read_csv( + self.state.filesystem.get_config_file_path(v.get("file")) + ) for k, v in table_params.items() } households, persons, tours = self.expand_template_zones(tables) households["household_serial_no"] = households[hhid] else: - households, persons, tours = [self.generate_replicates(k) for k in klist] + households, persons, tours = (self.generate_replicates(k) for k in klist) # Names households.name, persons.name, tours.name = klist @@ -516,38 +658,37 @@ def create_proto_pop(self): if len(colnames) > 0: df.rename(columns=colnames, inplace=True) - def inject_tables(self): + def inject_tables(self, state: workflow.State): # Update canonical tables lists - inject.add_injectable( - "traceable_tables", - inject.get_injectable("traceable_tables") + list(self.proto_pop.keys()), + state.tracing.traceable_tables = state.tracing.traceable_tables + list( + self.proto_pop.keys() ) for tablename, df in self.proto_pop.items(): - inject.add_table(tablename, df) - pipeline.get_rn_generator().add_channel(tablename, df) - tracing.register_traceable_table(tablename, df) - # pipeline.get_rn_generator().drop_channel(tablename) + state.add_table(tablename, df) + self.state.get_rn_generator().add_channel(tablename, df) + state.tracing.register_traceable_table(tablename, df) - def annotate_tables(self): + def annotate_tables(self, state: workflow.State): # Extract annotations - for annotations in self.model_settings["annotate_proto_tables"]: - tablename = annotations["tablename"] - df = pipeline.get_table(tablename) + for annot in self.model_settings.annotate_proto_tables: + tablename = annot.tablename + df = self.state.get_dataframe(tablename) assert df is not None - assert annotations is not None + assert annot is not None assign_columns( + state, df=df, model_settings={ - **annotations["annotate"], - **self.model_settings["suffixes"], + **annot.annotate.dict(), + **self.model_settings.suffixes.dict(), }, trace_label=tracing.extend_trace_label("ProtoPop.annotate", tablename), ) - pipeline.replace_table(tablename, df) + self.state.add_table(tablename, df) def merge_persons(self): - persons = pipeline.get_table("proto_persons") - households = pipeline.get_table("proto_households") + persons = self.state.get_dataframe("proto_persons") + households = self.state.get_dataframe("proto_households") # For dropping any extra columns created during merge cols_to_use = households.columns.difference(persons.columns) @@ -558,7 +699,7 @@ def merge_persons(self): ).merge( self.land_use, left_on=self.params["proto_households"]["zone_col"], - right_on=self.model_settings["zone_id_names"]["index_col"], + right_on=self.model_settings.zone_id_names["index_col"], ) perid = self.params["proto_persons"]["index_col"] @@ -566,16 +707,18 @@ def merge_persons(self): self.proto_pop["proto_persons_merged"] = persons_merged # Store in pipeline - inject.add_table("proto_persons_merged", persons_merged) + self.state.add_table("proto_persons_merged", persons_merged) -def get_disaggregate_logsums(network_los, chunk_size, trace_hh_id): +def get_disaggregate_logsums( + state: workflow.State, network_los: los.Network_LOS, chunk_size: int, trace_hh_id +): logsums = {} - persons_merged = pipeline.get_table("proto_persons_merged").sort_index( + persons_merged = state.get_dataframe("proto_persons_merged").sort_index( inplace=False ) disagg_model_settings = read_disaggregate_accessibility_yaml( - "disaggregate_accessibility.yaml" + state, "disaggregate_accessibility.yaml" ) for model_name in [ @@ -584,38 +727,40 @@ def get_disaggregate_logsums(network_los, chunk_size, trace_hh_id): "non_mandatory_tour_destination", ]: trace_label = tracing.extend_trace_label(model_name, "accessibilities") - print("Running model {}".format(trace_label)) - model_settings = config.read_model_settings(model_name + ".yaml") - model_settings["SAMPLE_SIZE"] = disagg_model_settings.get( - "DESTINATION_SAMPLE_SIZE" + print(f"Running model {trace_label}") + + model_settings = TourLocationComponentSettings.read_settings_file( + state.filesystem, model_name + ".yaml" ) - estimator = estimation.manager.begin_estimation(trace_label) + model_settings.SAMPLE_SIZE = disagg_model_settings.DESTINATION_SAMPLE_SIZE + estimator = estimation.manager.begin_estimation(state, trace_label) if estimator: location_choice.write_estimation_specs( - estimator, model_settings, model_name + ".yaml" + state, estimator, model_settings, model_name + ".yaml" ) # Append table references in settings with "proto_" # This avoids having to make duplicate copies of config files for disagg accessibilities model_settings = util.suffix_tables_in_settings(model_settings) - model_settings["CHOOSER_ID_COLUMN"] = "proto_person_id" + model_settings.CHOOSER_ID_COLUMN = "proto_person_id" # Include the suffix tags to pass onto downstream logsum models (e.g., tour mode choice) - if model_settings.get("LOGSUM_SETTINGS", None): - suffixes = util.concat_suffix_dict(disagg_model_settings.get("suffixes")) - suffixes.insert(0, model_settings.get("LOGSUM_SETTINGS")) - model_settings["LOGSUM_SETTINGS"] = " ".join(suffixes) + if model_settings.LOGSUM_SETTINGS: + suffixes = util.concat_suffix_dict(disagg_model_settings.suffixes) + suffixes.insert(0, str(model_settings.LOGSUM_SETTINGS)) + model_settings.LOGSUM_SETTINGS = " ".join(suffixes) if model_name != "non_mandatory_tour_destination": - spc = shadow_pricing.load_shadow_price_calculator(model_settings) + spc = shadow_pricing.load_shadow_price_calculator(state, model_settings) # explicitly turning off shadow pricing for disaggregate accessibilities spc.use_shadow_pricing = False # filter to only workers or students - chooser_filter_column = model_settings["CHOOSER_FILTER_COLUMN_NAME"] + chooser_filter_column = model_settings.CHOOSER_FILTER_COLUMN_NAME choosers = persons_merged[persons_merged[chooser_filter_column]] # run location choice and return logsums _logsums, _ = location_choice.run_location_choice( + state, choosers, network_los, shadow_price_calculator=spc, @@ -625,7 +770,6 @@ def get_disaggregate_logsums(network_los, chunk_size, trace_hh_id): model_settings=model_settings, chunk_size=chunk_size, chunk_tag=trace_label, - trace_hh_id=trace_hh_id, trace_label=trace_label, skip_choice=True, ) @@ -638,10 +782,11 @@ def get_disaggregate_logsums(network_los, chunk_size, trace_hh_id): ) else: - tours = pipeline.get_table("proto_tours") + tours = state.get_dataframe("proto_tours") tours = tours[tours.tour_category == "non_mandatory"] _logsums, _ = tour_destination.run_tour_destination( + state, tours, persons_merged, want_logsums=True, @@ -649,8 +794,6 @@ def get_disaggregate_logsums(network_los, chunk_size, trace_hh_id): model_settings=model_settings, network_los=network_los, estimator=estimator, - chunk_size=chunk_size, - trace_hh_id=trace_hh_id, trace_label=trace_label, skip_choice=True, ) @@ -670,34 +813,46 @@ def get_disaggregate_logsums(network_los, chunk_size, trace_hh_id): return logsums -@inject.step() -def initialize_proto_population(network_los, chunk_size): +@workflow.step +def initialize_proto_population( + state: workflow.State, + network_los: los.Network_LOS, +) -> None: # Synthesize the proto-population - ProtoPop(network_los, chunk_size) + ProtoPop(state, network_los, state.settings.chunk_size) return -@inject.step() -def compute_disaggregate_accessibility(network_los, chunk_size, trace_hh_id): +@workflow.step +def compute_disaggregate_accessibility( + state: workflow.State, + network_los: los.Network_LOS, +) -> None: """ Compute enhanced disaggregate accessibility for user specified population segments, as well as each zone in land use file using expressions from accessibility_spec. """ + tables_prior = list(state.existing_table_status) # Re-Register tables in this step, necessary for multiprocessing for tablename in ["proto_households", "proto_persons", "proto_tours"]: - df = inject.get_table(tablename).to_frame() - traceables = inject.get_injectable("traceable_tables") - if tablename not in pipeline.get_rn_generator().channels: - pipeline.get_rn_generator().add_channel(tablename, df) + df = state.get_dataframe(tablename) + traceables = state.tracing.traceable_tables + if tablename not in state.get_rn_generator().channels: + state.get_rn_generator().add_channel(tablename, df) if tablename not in traceables: - inject.add_injectable("traceable_tables", traceables + [tablename]) - tracing.register_traceable_table(tablename, df) + state.tracing.traceable_tables = traceables + [tablename] + state.tracing.register_traceable_table(tablename, df) del df # Run location choice - logsums = get_disaggregate_logsums(network_los, chunk_size, trace_hh_id) + logsums = get_disaggregate_logsums( + state, + network_los, + state.settings.chunk_size, + state.settings.trace_hh_id, + ) logsums = {k + "_accessibility": v for k, v in logsums.items()} # Combined accessibility table @@ -726,7 +881,7 @@ def compute_disaggregate_accessibility(network_los, chunk_size, trace_hh_id): # Merge in the proto pop data and inject it access_df = ( access_df.merge( - pipeline.get_table("proto_persons_merged").reset_index(), + state.get_dataframe("proto_persons_merged").reset_index(), on="proto_household_id", ) .set_index("proto_person_id") @@ -735,29 +890,20 @@ def compute_disaggregate_accessibility(network_los, chunk_size, trace_hh_id): logsums["proto_disaggregate_accessibility"] = access_df - # Drop any tables prematurely created - for tablename in [ - "school_destination_size", - "workplace_destination_size", - ]: - pipeline.drop_table(tablename) - - for ch in list(pipeline.get_rn_generator().channels.keys()): - pipeline.get_rn_generator().drop_channel(ch) + for ch in list(state.get_rn_generator().channels.keys()): + state.get_rn_generator().drop_channel(ch) # Drop any prematurely added traceables - for trace in [ - x for x in inject.get_injectable("traceable_tables") if "proto_" not in x - ]: - tracing.deregister_traceable_table(trace) + for trace in [x for x in state.tracing.traceable_tables if "proto_" not in x]: + state.tracing.deregister_traceable_table(trace) - # need to clear any premature tables that were added during the previous run - orca._TABLES.clear() - for name, func in inject._DECORATED_TABLES.items(): - logger.debug("reinject decorated table %s" % name) - orca.add_table(name, func) + # # need to clear any premature tables that were added during the previous run + for name in list(state.existing_table_status): + if name not in tables_prior: + state.drop_table(name) # Inject accessibility results into pipeline - [inject.add_table(k, df) for k, df in logsums.items()] + for k, df in logsums.items(): + state.add_table(k, df) return diff --git a/activitysim/abm/models/free_parking.py b/activitysim/abm/models/free_parking.py index 086422ba2..97b70ade3 100644 --- a/activitysim/abm/models/free_parking.py +++ b/activitysim/abm/models/free_parking.py @@ -1,69 +1,126 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing +import pandas as pd +from pydantic import validator -from .util import estimation +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import LogitComponentSettings logger = logging.getLogger(__name__) -@inject.step() -def free_parking(persons_merged, persons, chunk_size, trace_hh_id): - """ """ - - trace_label = "free_parking" - model_settings_file_name = "free_parking.yaml" +class FreeParkingSettings(LogitComponentSettings, extra="forbid"): + """ + Settings for the `free_parking` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + FREE_PARKING_ALT: int + """The code for free parking.""" + + +@workflow.step +def free_parking( + state: workflow.State, + persons_merged: pd.DataFrame, + persons: pd.DataFrame, + model_settings: FreeParkingSettings | None = None, + model_settings_file_name: str = "free_parking.yaml", + trace_label: str = "free_parking", +) -> None: + """ + Determine for each person whether they have free parking available at work. + + Parameters + ---------- + state : workflow.State + persons_merged : DataFrame + This represents the 'choosers' table for this component. + persons : DataFrame + The original persons table is referenced so the free parking column + can be appended to it. + model_settings : FreeParkingSettings, optional + The settings used in this model component. If not provided, they are + loaded out of the configs directory YAML file referenced by + the `model_settings_file_name` argument. + model_settings_file_name : str, default "free_parking.yaml" + This is where model setting are found if `model_settings` is not given + explicitly. The same filename is also used to write settings files to + the estimation data bundle in estimation mode. + trace_label : str, default "free_parking" + This label is used for various tracing purposes. + """ + if model_settings is None: + model_settings = FreeParkingSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - choosers = persons_merged.to_frame() + choosers = pd.DataFrame(persons_merged) choosers = choosers[choosers.workplace_zone_id > -1] logger.info("Running %s with %d persons", trace_label, len(choosers)) - model_settings = config.read_model_settings(model_settings_file_name) - estimator = estimation.manager.begin_estimation("free_parking") + estimator = estimation.manager.begin_estimation(state, "free_parking") - constants = config.get_model_constants(model_settings) + constants = model_settings.CONSTANTS or {} # - preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_d = {} if constants is not None: locals_d.update(constants) expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_d, trace_label=trace_label, ) - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) nest_spec = config.get_logit_model_settings(model_settings) if estimator: estimator.write_model_settings(model_settings, model_settings_file_name) - estimator.write_spec(model_settings) - estimator.write_coefficients(coefficients_df, model_settings) + estimator.write_spec(file_name=model_settings.SPEC) + estimator.write_coefficients( + coefficients_df, file_name=model_settings.COEFFICIENTS + ) estimator.write_choosers(choosers) choices = simulate.simple_simulate( + state, choosers=choosers, spec=model_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="free_parking_at_work", estimator=estimator, ) - free_parking_alt = model_settings["FREE_PARKING_ALT"] + free_parking_alt = model_settings.FREE_PARKING_ALT choices = choices == free_parking_alt if estimator: @@ -74,16 +131,15 @@ def free_parking(persons_merged, persons, chunk_size, trace_hh_id): estimator.write_override_choices(choices) estimator.end_estimation() - persons = persons.to_frame() persons["free_parking_at_work"] = ( choices.reindex(persons.index).fillna(0).astype(bool) ) - pipeline.replace_table("persons", persons) + state.add_table("persons", persons) tracing.print_summary( "free_parking", persons.free_parking_at_work, value_counts=True ) - if trace_hh_id: - tracing.trace_df(persons, label=trace_label, warn_if_empty=True) + if state.settings.trace_hh_id: + state.tracing.trace_df(persons, label=trace_label, warn_if_empty=True) diff --git a/activitysim/abm/models/initialize.py b/activitysim/abm/models/initialize.py index fd9f47bb8..8e0c758c0 100644 --- a/activitysim/abm/models/initialize.py +++ b/activitysim/abm/models/initialize.py @@ -1,18 +1,16 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import os import warnings +from typing import Any -import pandas as pd - -from activitysim.abm.tables import shadow_pricing, disaggregate_accessibility -from activitysim.core import chunk, config, expressions, inject, mem, pipeline, tracing -from activitysim.core.steps.output import ( - track_skim_usage, - write_data_dictionary, - write_tables, -) +from activitysim.abm.tables import disaggregate_accessibility, shadow_pricing +from activitysim.core import chunk, expressions, tracing, workflow +from activitysim.core.configuration.base import PydanticReadable +from activitysim.core.configuration.logit import PreprocessorSettings # We are using the naming conventions in the mtc_asim.h5 example # file for our default list. This provides backwards compatibility @@ -31,13 +29,27 @@ logger = logging.getLogger(__name__) -def annotate_tables(model_settings, trace_label): +def annotate_tables(state: workflow.State, model_settings, trace_label, chunk_sizer): + """ + + Parameters + ---------- + state : workflow.State + model_settings : PydanticReadable + trace_label : str + chunk_sizer : ChunkSizer + + Returns + ------- + + """ trace_label = tracing.extend_trace_label(trace_label, "annotate_tables") - chunk.log_rss(trace_label) + chunk_sizer.log_rss(trace_label) - annotate_tables = model_settings.get("annotate_tables", []) + annotate_tables = model_settings.annotate_tables + print(annotate_tables) if not annotate_tables: logger.warning( @@ -51,18 +63,16 @@ def annotate_tables(model_settings, trace_label): t0 = tracing.print_elapsed_time() for table_info in annotate_tables: + tablename = table_info.tablename - tablename = table_info["tablename"] + chunk_sizer.log_rss(f"{trace_label}.pre-get_table.{tablename}") - chunk.log_rss(f"{trace_label}.pre-get_table.{tablename}") - - df = inject.get_table(tablename).to_frame() - chunk.log_df(trace_label, tablename, df) + df = state.get_dataframe(tablename) + chunk_sizer.log_df(trace_label, tablename, df) # - rename columns - column_map = table_info.get("column_map", None) + column_map = table_info.column_map if column_map: - warnings.warn( f"Setting 'column_map' has been changed to 'rename_columns'. " f"Support for 'column_map' in annotate_tables will be removed in future versions.", @@ -73,127 +83,139 @@ def annotate_tables(model_settings, trace_label): df.rename(columns=column_map, inplace=True) # - annotate - annotate = table_info.get("annotate", None) + annotate = table_info.annotate if annotate: - logger.info( - f"{trace_label} - annotating {tablename} SPEC {annotate['SPEC']}" - ) + logger.info(f"{trace_label} - annotating {tablename} SPEC {annotate.SPEC}") expressions.assign_columns( - df=df, model_settings=annotate, trace_label=trace_label + state, df=df, model_settings=annotate, trace_label=trace_label ) - chunk.log_df(trace_label, tablename, df) + chunk_sizer.log_df(trace_label, tablename, df) # - write table to pipeline - pipeline.replace_table(tablename, df) + state.add_table(tablename, df) del df - chunk.log_df(trace_label, tablename, None) + chunk_sizer.log_df(trace_label, tablename, None) -@inject.step() -def initialize_landuse(): +class AnnotateTableSettings(PydanticReadable): + tablename: str + annotate: PreprocessorSettings + column_map: dict[str, str] | None = None - trace_label = "initialize_landuse" - with chunk.chunk_log(trace_label, base=True): +class InitializeTableSettings(PydanticReadable): + """ + Settings for the `initialize_landuse` component. + """ - model_settings = config.read_model_settings( - "initialize_landuse.yaml", mandatory=True - ) + annotate_tables: list[AnnotateTableSettings] = [] - annotate_tables(model_settings, trace_label) - # instantiate accessibility (must be checkpointed to be be used to slice accessibility) - accessibility = pipeline.get_table("accessibility") - chunk.log_df(trace_label, "accessibility", accessibility) +@workflow.step +def initialize_landuse( + state: workflow.State, + model_settings: InitializeTableSettings | None = None, + model_settings_file_name: str = "initialize_landuse.yaml", + trace_label: str = "initialize_landuse", +) -> None: + """ + Initialize the land use table. + Parameters + ---------- + state : State + """ + with chunk.chunk_log(state, trace_label, base=True) as chunk_sizer: + if model_settings is None: + model_settings = InitializeTableSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + mandatory=True, + ) -@inject.step() -def initialize_households(): + annotate_tables(state, model_settings, trace_label, chunk_sizer) - trace_label = "initialize_households" + # instantiate accessibility (must be checkpointed to be be used to slice accessibility) + accessibility = state.get_dataframe("accessibility") + chunk_sizer.log_df(trace_label, "accessibility", accessibility) - with chunk.chunk_log(trace_label, base=True): - chunk.log_rss(f"{trace_label}.inside-yield") +@workflow.step +def initialize_households( + state: workflow.State, + model_settings_file_name: str = "initialize_households.yaml", + trace_label: str = "initialize_households", +) -> None: - households = inject.get_table("households").to_frame() + with chunk.chunk_log(state, trace_label, base=True) as chunk_sizer: + chunk_sizer.log_rss(f"{trace_label}.inside-yield") + + households = state.get_dataframe("households") assert not households._is_view - chunk.log_df(trace_label, "households", households) + chunk_sizer.log_df(trace_label, "households", households) del households - chunk.log_df(trace_label, "households", None) + chunk_sizer.log_df(trace_label, "households", None) - persons = inject.get_table("persons").to_frame() + persons = state.get_dataframe("persons") assert not persons._is_view - chunk.log_df(trace_label, "persons", persons) + chunk_sizer.log_df(trace_label, "persons", persons) del persons - chunk.log_df(trace_label, "persons", None) + chunk_sizer.log_df(trace_label, "persons", None) - model_settings = config.read_model_settings( - "initialize_households.yaml", mandatory=True + model_settings = InitializeTableSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + mandatory=True, ) - annotate_tables(model_settings, trace_label) + annotate_tables(state, model_settings, trace_label, chunk_sizer) # - initialize shadow_pricing size tables after annotating household and person tables # since these are scaled to model size, they have to be created while single-process # this can now be called as a stand alone model step instead, add_size_tables - add_size_tables = model_settings.get("add_size_tables", True) - if add_size_tables: - # warnings.warn(f"Calling add_size_tables from initialize will be removed in the future.", FutureWarning) - suffixes = inject.get_injectable("disaggregate_suffixes") - shadow_pricing.add_size_tables(suffixes) + # warnings.warn(f"Calling add_size_tables from initialize will be removed in the future.", FutureWarning) + suffixes = disaggregate_accessibility.disaggregate_suffixes(state) + shadow_pricing.add_size_tables(state, suffixes) # - preload person_windows - person_windows = inject.get_table("person_windows").to_frame() - chunk.log_df(trace_label, "person_windows", person_windows) + person_windows = state.get_dataframe("person_windows") + chunk_sizer.log_df(trace_label, "person_windows", person_windows) -@inject.injectable(cache=True) -def preload_injectables(): +@workflow.cached_object +def preload_injectables(state: workflow.State): """ preload bulky injectables up front - stuff that isn't inserted into the pipeline """ logger.info("preload_injectables") - inject.add_step("track_skim_usage", track_skim_usage) - inject.add_step("write_data_dictionary", write_data_dictionary) - inject.add_step("write_tables", write_tables) - - table_list = config.setting("input_table_list") - - # default ActivitySim table names and indices - if table_list is None: - logger.warning( - "No 'input_table_list' found in settings. This will be a " - "required setting in upcoming versions of ActivitySim." - ) - - new_settings = inject.get_injectable("settings") - new_settings["input_table_list"] = DEFAULT_TABLE_LIST - inject.add_injectable("settings", new_settings) - # FIXME undocumented feature - if config.setting("write_raw_tables"): - + if state.settings.write_raw_tables: # write raw input tables as csv (before annotation) - csv_dir = config.output_file_path("raw_tables") + csv_dir = state.get_output_file_path("raw_tables") if not os.path.exists(csv_dir): os.makedirs(csv_dir) # make directory if needed - table_names = [t["tablename"] for t in table_list] + # default ActivitySim table names and indices + if state.settings.input_table_list is None: + raise ValueError( + "no `input_table_list` found in settings, " "cannot `write_raw_tables`." + ) + + table_names = [t["tablename"] for t in state.settings.input_table_list] for t in table_names: - df = inject.get_table(t).to_frame() + df = state.get_dataframe(t) df.to_csv(os.path.join(csv_dir, "%s.csv" % t), index=True) t0 = tracing.print_elapsed_time() - if config.setting("benchmarking", False): + if state.settings.benchmarking: # we don't want to pay for skim_dict inside any model component during # benchmarking, so we'll preload skim_dict here. Preloading is not needed # for regular operation, as activitysim components can load-on-demand. - if inject.get_injectable("skim_dict", None) is not None: + if state.get_injectable("skim_dict", None) is not None: t0 = tracing.print_elapsed_time("preload skim_dict", t0, debug=True) return True diff --git a/activitysim/abm/models/initialize_los.py b/activitysim/abm/models/initialize_los.py index 2649c09a3..22b5b1c79 100644 --- a/activitysim/abm/models/initialize_los.py +++ b/activitysim/abm/models/initialize_los.py @@ -1,5 +1,7 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import multiprocessing import os @@ -10,17 +12,7 @@ import numpy as np import pandas as pd -from activitysim.core import ( - assign, - chunk, - config, - inject, - los, - pathbuilder, - pipeline, - simulate, - tracing, -) +from activitysim.core import chunk, los, pathbuilder, tracing, workflow logger = logging.getLogger(__name__) @@ -55,21 +47,19 @@ def num_nans(data): def any_uninitialized(data, lock=None): - with lock_data(lock): result = any_nans(data) return result def num_uninitialized(data, lock=None): - with lock_data(lock): result = num_nans(data) return result -@inject.step() -def initialize_los(network_los): +@workflow.step +def initialize_los(state: workflow.State, network_los: los.Network_LOS) -> None: """ Currently, this step is only needed for THREE_ZONE systems in which the tap_tap_utilities are precomputed in the (presumably subsequent) initialize_tvpb step. @@ -84,13 +74,12 @@ def initialize_los(network_los): trace_label = "initialize_los" if network_los.zone_system == los.THREE_ZONE: - tap_cache = network_los.tvpb.tap_cache uid_calculator = network_los.tvpb.uid_calculator attribute_combinations_df = uid_calculator.scalar_attribute_combinations() # - write table to pipeline (so we can slice it, when multiprocessing) - pipeline.replace_table("attribute_combinations", attribute_combinations_df) + state.add_table("attribute_combinations", attribute_combinations_df) # clean up any unwanted cache files from previous run if network_los.rebuild_tvpb_cache: @@ -118,9 +107,8 @@ def initialize_los(network_los): def compute_utilities_for_attribute_tuple( - network_los, scalar_attributes, data, chunk_size, trace_label + state, network_los, scalar_attributes, data, trace_label ): - # scalar_attributes is a dict of attribute name/value pairs for this combination # (e.g. {'demographic_segment': 0, 'tod': 'AM', 'access_mode': 'walk'}) @@ -146,12 +134,17 @@ def compute_utilities_for_attribute_tuple( # choosers_df is pretty big and was custom made for compute_utilities but we don't need to chunk_log it # since it is created outside of adaptive_chunked_choosers and so will show up in baseline - assert not chunk.chunk_logging() # otherwise we should chunk_log this + assert not chunk.chunk_logging(state) # otherwise we should chunk_log this chunk_tag = "initialize_tvpb" # all attribute_combinations can use same cached data for row_size calc - for i, chooser_chunk, chunk_trace_label in chunk.adaptive_chunked_choosers( - choosers_df, chunk_size, trace_label, chunk_tag=chunk_tag + for ( + i, + chooser_chunk, + chunk_trace_label, + chunk_sizer, + ) in chunk.adaptive_chunked_choosers( + state, choosers_df, trace_label, chunk_tag=chunk_tag ): # we should count choosers_df as chunk overhead since its pretty big and was custom made for compute_utilities if chooser_chunk._is_view: @@ -164,15 +157,16 @@ def compute_utilities_for_attribute_tuple( # TODO: convert to Dataset or otherwise stop this copying, without # harming anything else. chooser_chunk = chooser_chunk.copy() - chunk.log_df(trace_label, "attribute_chooser_chunk", chooser_chunk) + chunk_sizer.log_df(trace_label, "attribute_chooser_chunk", chooser_chunk) # add any attribute columns specified as column attributes in settings (the rest will be scalars in locals_dict) for attribute_name in attributes_as_columns: chooser_chunk[attribute_name] = scalar_attributes[attribute_name] - chunk.log_df(trace_label, "attribute_chooser_chunk", chooser_chunk) + chunk_sizer.log_df(trace_label, "attribute_chooser_chunk", chooser_chunk) utilities_df = pathbuilder.compute_utilities( + state, network_los, model_settings=model_settings, choosers=chooser_chunk, @@ -180,7 +174,7 @@ def compute_utilities_for_attribute_tuple( trace_label=trace_label, ) - chunk.log_df(trace_label, "utilities_df", utilities_df) + chunk_sizer.log_df(trace_label, "utilities_df", utilities_df) assert len(utilities_df) == len(chooser_chunk) assert len(utilities_df.columns) == data.shape[1] @@ -189,13 +183,17 @@ def compute_utilities_for_attribute_tuple( data[chooser_chunk.index.values, :] = utilities_df.values del chooser_chunk - chunk.log_df(trace_label, "attribute_chooser_chunk", None) + chunk_sizer.log_df(trace_label, "attribute_chooser_chunk", None) logger.debug(f"{trace_label} updated utilities") -@inject.step() -def initialize_tvpb(network_los, attribute_combinations, chunk_size): +@workflow.step +def initialize_tvpb( + state: workflow.State, + network_los: los.Network_LOS, + attribute_combinations: pd.DataFrame, +) -> None: """ Initialize STATIC tap_tap_utility cache and write mmap to disk. @@ -220,7 +218,7 @@ def initialize_tvpb(network_los, attribute_combinations, chunk_size): ) return - attribute_combinations_df = attribute_combinations.to_frame() + attribute_combinations_df = attribute_combinations multiprocess = network_los.multiprocess() uid_calculator = network_los.tvpb.uid_calculator @@ -258,7 +256,7 @@ def initialize_tvpb(network_los, attribute_combinations, chunk_size): tuple_trace_label = tracing.extend_trace_label(trace_label, f"offset{offset}") compute_utilities_for_attribute_tuple( - network_los, scalar_attributes, data, chunk_size, tuple_trace_label + state, network_los, scalar_attributes, data, tuple_trace_label ) # make sure we populated the entire offset @@ -266,12 +264,11 @@ def initialize_tvpb(network_los, attribute_combinations, chunk_size): data.reshape(uid_calculator.skim_shape)[offset], lock ) - if multiprocess and not inject.get_injectable("locutor", False): + if multiprocess and not state.get_injectable("locutor", False): return - write_results = not multiprocess or inject.get_injectable("locutor", False) + write_results = not multiprocess or state.get_injectable("locutor", False) if write_results: - if multiprocess: # if multiprocessing, wait for all processes to fully populate share data before writing results # (the other processes don't have to wait, since we were sliced by attribute combination diff --git a/activitysim/abm/models/initialize_tours.py b/activitysim/abm/models/initialize_tours.py index 476a53feb..da69e8d22 100644 --- a/activitysim/abm/models/initialize_tours.py +++ b/activitysim/abm/models/initialize_tours.py @@ -1,13 +1,15 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -import os -import warnings import pandas as pd from activitysim.abm.models.util import tour_frequency as tf -from activitysim.core import config, expressions, inject, pipeline, tracing +from activitysim.core import expressions, tracing, workflow +from activitysim.core.configuration import PydanticReadable +from activitysim.core.configuration.base import PreprocessorSettings from activitysim.core.input import read_input_table logger = logging.getLogger(__name__) @@ -17,11 +19,11 @@ SURVEY_PARTICIPANT_ID = "external_participant_id" ASIM_TOUR_ID = "tour_id" ASIM_PARENT_TOUR_ID = "parent_tour_id" -REQUIRED_TOUR_COLUMNS = set(["person_id", "tour_category", "tour_type"]) +REQUIRED_TOUR_COLUMNS = {"person_id", "tour_category", "tour_type"} -def patch_tour_ids(tours): - def set_tour_index(tours, parent_tour_num_col, is_joint): +def patch_tour_ids(state: workflow.State, tours): + def set_tour_index(state: workflow.State, tours, parent_tour_num_col, is_joint): group_cols = ["person_id", "tour_category", "tour_type"] if "parent_tour_num" in tours: @@ -32,7 +34,7 @@ def set_tour_index(tours, parent_tour_num_col, is_joint): ) return tf.set_tour_index( - tours, parent_tour_num_col=parent_tour_num_col, is_joint=is_joint + state, tours, parent_tour_num_col=parent_tour_num_col, is_joint=is_joint ) assert REQUIRED_TOUR_COLUMNS.issubset( @@ -48,6 +50,7 @@ def set_tour_index(tours, parent_tour_num_col, is_joint): # mandatory tours mandatory_tours = set_tour_index( + state, tours[tours.tour_category == "mandatory"], parent_tour_num_col=None, is_joint=False, @@ -60,6 +63,7 @@ def set_tour_index(tours, parent_tour_num_col, is_joint): # non_mandatory tours non_mandatory_tours = set_tour_index( + state, tours[tours.tour_category == "non_mandatory"], parent_tour_num_col=None, is_joint=False, @@ -74,45 +78,57 @@ def set_tour_index(tours, parent_tour_num_col, is_joint): return patched_tours -@inject.step() -def initialize_tours(network_los, households, persons, trace_hh_id): +class InitializeToursSettings(PydanticReadable): + annotate_tours: PreprocessorSettings | None = None + """Preprocessor settings to annotate tours""" + + skip_patch_tour_ids: bool = False + """Skip patching tour_ids""" + +@workflow.step +def initialize_tours( + state: workflow.State, + households: pd.DataFrame, + persons: pd.DataFrame, +) -> None: trace_label = "initialize_tours" - tours = read_input_table("tours") + trace_hh_id = state.settings.trace_hh_id + tours = read_input_table(state, "tours") # FIXME can't use households_sliced injectable as flag like persons table does in case of resume_after. # FIXME could just always slice... - slice_happened = ( - inject.get_injectable("households_sample_size", 0) > 0 - or inject.get_injectable("households_sample_size", 0) > 0 - ) + slice_happened = state.settings.households_sample_size > 0 if slice_happened: logger.info("slicing tours %s" % (tours.shape,)) # keep all persons in the sampled households tours = tours[tours.person_id.isin(persons.index)] # annotate before patching tour_id to allow addition of REQUIRED_TOUR_COLUMNS defined above - model_settings = config.read_model_settings("initialize_tours.yaml", mandatory=True) + model_settings = InitializeToursSettings.read_settings_file( + state.filesystem, "initialize_tours.yaml", mandatory=True + ) expressions.assign_columns( + state, df=tours, - model_settings=model_settings.get("annotate_tours"), + model_settings=model_settings.annotate_tours, trace_label=tracing.extend_trace_label(trace_label, "annotate_tours"), ) - skip_patch_tour_ids = model_settings.get("skip_patch_tour_ids", False) + skip_patch_tour_ids = model_settings.skip_patch_tour_ids if skip_patch_tour_ids: pass else: - tours = patch_tour_ids(tours) + tours = patch_tour_ids(state, tours) assert tours.index.name == "tour_id" # replace table function with dataframe - inject.add_table("tours", tours) + state.add_table("tours", tours) - pipeline.get_rn_generator().add_channel("tours", tours) + state.get_rn_generator().add_channel("tours", tours) - tracing.register_traceable_table("tours", tours) + state.tracing.register_traceable_table("tours", tours) logger.debug(f"{len(tours.household_id.unique())} unique household_ids in tours") logger.debug(f"{len(households.index.unique())} unique household_ids in households") @@ -127,4 +143,4 @@ def initialize_tours(network_los, households, persons, trace_hh_id): raise RuntimeError(f"{tours_without_persons.sum()} tours with bad person_id") if trace_hh_id: - tracing.trace_df(tours, label="initialize_tours", warn_if_empty=True) + state.tracing.trace_df(tours, label="initialize_tours", warn_if_empty=True) diff --git a/activitysim/abm/models/input_checker.py b/activitysim/abm/models/input_checker.py new file mode 100644 index 000000000..b8a94f369 --- /dev/null +++ b/activitysim/abm/models/input_checker.py @@ -0,0 +1,466 @@ +from __future__ import annotations + +import logging +import os +import sys +import warnings +from collections import defaultdict + +import numpy as np +import pandas as pd +import pandera as pa +import pydantic + +from activitysim.core import workflow +from activitysim.core.input import read_input_table + +logger = logging.getLogger(__name__) +file_logger = logger.getChild("logfile") + +global TABLE_STORE +TABLE_STORE = {} + +_log_infos = {} + +global cur_table +cur_table = None + + +def create_table_store(state, input_checker_settings): + """ + creating a global variable called TABLE_STORE to be able to access + all tables at any point in the input checker python code + + FIXME: can we do this better with the state object? + """ + # looping through all tables listed in input_checker.yaml + for table_settings in input_checker_settings["table_list"]: + table = None + path = None + + table_name = table_settings["name"] + logger.info("reading in table for input checking: %s" % table_name) + + # read with ActivitySim's input reader if ActivitySim input + if table_settings["is_activitysim_input"]: + table = read_input_table(state, table_name).reset_index() + + # otherwise read csv file directly with pandas + else: + path = table_settings.get("path", None) + if path: + if os.path.isabs(path): + table = pd.read_csv(os.path.join(path, table_name + ".csv")) + elif os.path.exists(os.path.join(os.getcwd(), table_name + ".csv")): + table = pd.read_csv(os.path.join(os.getcwd(), table_name + ".csv")) + else: + for directory in state.filesystem.get_data_dir(): + file = os.path.join(directory, path, table_name + ".csv") + if os.path.exists(file): + table = pd.read_csv(file) + break + + else: + table = pd.read_csv( + state.filesystem.get_data_file_path( + table_name, alternative_suffixes=[".csv"] + ) + ) + if table is None: + raise FileNotFoundError( + f"Input table {table_name} could not be found" + f"\nPath: {path}" + if path + else "" + ) + # add pandas dataframes to TABLE_STORE dictionary with table name as key + TABLE_STORE[table_name] = table + _log_infos[table_name] = list() + + # FIXME: need to have state object available in the input checker. Is there a better way to pass this? + TABLE_STORE["state"] = state + + +def validate_with_pandera( + input_checker, table_name, validation_settings, v_errors, v_warnings +): + """ + Validating with pandera. Grabs the relevant class for the table and runs the validate() function. + + Structure of the code is as follows: + households = pd.DataFrame() + in input_checker: + class Household(pa.DataFrameModel)... + validator_class = input_checker.Household() + validator_class.validate(households) + + Warnings & errors are captured and written out in full after all tables are checked. + """ + + validator_class = getattr(input_checker, validation_settings["class"]) + + with warnings.catch_warnings(record=True) as caught_warnings: + warnings.simplefilter("always") + try: + validator_class.validate(TABLE_STORE[table_name], lazy=True) + except pa.errors.SchemaErrors as e: + v_errors[table_name].append(e) + + for warning in caught_warnings: + v_warnings[table_name].append(warning) + + return v_errors, v_warnings + + +def add_child_to_parent_list(pydantic_lists, parent_table_name, children_settings): + """ + Code to efficiently add children to the parent list. Used for input checking with pydantic. + + If "parent" is household and "child" is persons, the following code is equivalent to: + for household in h_list: + person_list = [] + for person in p_list: + if household["household_id"] == person["household_id"]: + person_list.append(person) + household["persons"] = person_list + + Above code is slow with nested for loops. Actual implementation is much faster. + """ + child_table_name = children_settings["table_name"] + child_variable_name = children_settings["child_name"] + merge_variable = children_settings["merged_on"] + + # need to create child list if it does not yet exist + if child_table_name not in pydantic_lists.keys(): + pydantic_lists[child_table_name] = TABLE_STORE[child_table_name].to_dict( + orient="records" + ) + + child_list = pydantic_lists[child_table_name] + parent_list = pydantic_lists[parent_table_name] + + logger.info( + f"Adding {child_table_name} to {parent_table_name} based on {merge_variable}" + ) + + parent_children = defaultdict(list) + for child in child_list: + children = child[merge_variable] + parent_children[children].append(child) + + for parent in parent_list: + children = parent[merge_variable] + parent[child_variable_name] = parent_children.get(children, []) + + pydantic_lists[parent_table_name] = parent_list + + return pydantic_lists + + +def validate_with_pydantic( + input_checker, + table_name, + validation_settings, + v_errors, + v_warnings, + pydantic_lists, +): + """ + FIXME: Not fully built out!! Went with Pandera instead of pydantic, + but leaving this in for future development. Code is functional, + but not setup for warnings and errors handling yet. + + Validing table with pydantic. Uses a helper class to perform the validation. + + Strucutre of the code is as follows: + households = pd.DataFrame() + in input_checker: + class Household(pydantic.BaseModel)... + class HouseholdValidator(pydantic.BaseModel) list_of_households... + validator_class = input_checker.HouseholdValidator() + h_list = households.to_dict() with optional addition of child class (aka Persons) + validator_class(list_of_households=h_list) + + Warnings & errors are captured and written out in full after all tables are checked. + """ + if table_name not in pydantic_lists.keys(): + pydantic_lists[table_name] = TABLE_STORE[table_name].to_dict(orient="records") + + if validation_settings.get("children") is not None: + # FIXME need to add functionality for if there are multiple children + pydantic_lists = add_child_to_parent_list( + pydantic_lists, table_name, validation_settings["children"] + ) + + validator_class = getattr(input_checker, validation_settings["helper_class"]) + + attr = validation_settings["helper_class_attribute"] + + try: + validator_instance = validator_class(**{attr: pydantic_lists[table_name]}) + except pydantic.error_wrappers.ValidationError as e: + v_errors[table_name].append(e) + # FIXME need to implement validation warning + # except ValidationWarning as w: + # v_warnings[table_name].append(w) + + return v_errors, v_warnings, pydantic_lists + + +def report_errors(state, input_checker_settings, v_warnings, v_errors): + + # logging overall statistics first before printing details + for table_settings in input_checker_settings["table_list"]: + table_name = table_settings["name"] + + # printing out any errors + errors = v_errors[table_name] + warns = v_warnings[table_name] + + msg = f"Encountered {sum(len(entry.schema_errors) for entry in errors)} errors and {len(warns)} warnings in table {table_name}" + + # first printing to activitysim log file + if len(errors) > 0: + logger.error(msg) + elif len(warns) > 0: + logger.warning(msg) + else: + logger.info(msg) + + # printing to input_checker.log file + file_logger.info(msg) + file_logger.info("\n") + + # now reporting details to just input_checker.log + input_check_failure = False + # looping through each input table first + for table_settings in input_checker_settings["table_list"]: + table_name = table_settings["name"] + + if ( + len(v_errors[table_name]) > 0 + or len(v_warnings[table_name]) > 0 + or len(_log_infos[table_name]) > 0 + ): + file_logger.info("#" * (len(table_name) + 4)) + file_logger.info(" " + table_name) + file_logger.info("#" * (len(table_name) + 4)) + + # printing out any errors + errors = v_errors[table_name] + if len(errors) > 0: + input_check_failure = True + file_logger.error( + f"\n{table_name} errors:\n" + ("-" * (8 + len(table_name))) + ) + + for error_group in errors: + file_logger.error("Error Counts\n------------") + for error_type in error_group.error_counts: + file_logger.error( + f"{error_type}\t{error_group.error_counts[error_type]}\n", + ) + + for error in error_group.schema_errors: + if "dataframe validator" in str(error): + file_logger.error( + "Failed dataframe validator: " + str(error).split("\n")[-1] + ) + elif "element-wise validator" in str(error): + if "DataFrameSchema" in str(error): + file_logger.error( + "Failed element-wise validator: <" + + str(error).split("\n")[0].split(" ")[1] + + table_name + + ")>\n\t" + + str(error) + .split("failure cases:\n")[0] + .split("\n")[-2] + + "\n\tfailure cases:\n\t" + + "\n\t".join( + str(error).split("failure cases:\n")[1].split("\n") + ) + ) + else: + file_logger.error( + "Failed element-wise validator: <" + + " ".join(str(error).split("\n")[0].split(" ")[1:3]) + + "\n\t" + + "\n\t".join(str(error).split("\n")[1:]) + ) + else: + file_logger.error(str(error)) + file_logger.error("\n") + + # printing out any warnings + warns = v_warnings[table_name] + if len(warns) > 0: + file_logger.warning( + f"\n{table_name} warnings:\n" + ("-" * (10 + len(table_name))) + ) + + for warn in warns: + if "dataframe validator" in str(warn.message): + file_logger.warning( + "Failed dataframe validator: " + + str(warn.message).split("\n")[-1] + ) + elif "element-wise validator" in str(warn.message): + if "DataFrameSchema" in str(warn.message): + file_logger.warning( + "Failed element-wise validator: <" + + str(warn.message).split("\n")[0].split(" ")[1] + + table_name + + ")>\n\t" + + str(warn.message) + .split("failure cases:\n")[0] + .split("\n")[-2] + + "\n\tfailure cases:\n\t" + + "\n\t".join( + str(warn.message) + .split("failure cases:\n")[1] + .split("\n") + ) + ) + else: + file_logger.warning( + "Failed element-wise validator: <" + + " ".join(str(warn.message).split("\n")[0].split(" ")[1:3]) + + "\n\t" + + "\n\t".join(str(warn.message).split("\n")[1:]) + ) + else: + file_logger.warning(warn) + file_logger.warning("\n") + + infos = _log_infos[table_name] + if len(infos) > 0: + file_logger.info( + f"\n{table_name} additional messages:\n" + + ("-" * (21 + len(table_name))) + ) + + for info in infos: + file_logger.info(info) + file_logger.info("\n") + + if (len(v_warnings) > 0) | (len(v_errors) > 0): + logger.info("See the input_checker.log for full details on errors and warnings") + + return input_check_failure + + +def log_info(text: str): + _log_infos[cur_table].append(text) + + +@workflow.step() +def input_checker(state: workflow.State): + """ + Input checker model is designed to be a stand-alone model that gets run at the + start of each ActivitySim run to quickly check the inputs for potential errors. + + Users are able to write python code built on the pandera package to perform the checks. + The ActivitySim code written in this module then imports the data according to the user + specification and the input checks and passes them to pandera. + + Pandera will output warnings and errors which are captured and written to the input_checker.log file. + Additional info can be written to the output log file from the user by calling the log_info() inside + their input checking code. See the ActivitySim model documentation for more detailed user instructions. + """ + + # creating a new log file to report out warnings and errors + out_log_file = state.get_log_file_path("input_checker.log") + if os.path.exists(out_log_file): + os.remove(out_log_file) + + file_logger.addHandler(logging.FileHandler(out_log_file)) + file_logger.propagate = False + + input_checker_settings = state.filesystem.read_model_settings( + "input_checker.yaml", mandatory=True + ) + + input_checker_file = input_checker_settings.get( + "input_checker_code", "input_checks.py" + ) + + data_model_dir = state.get_injectable("data_model_dir")[0] + logger.info("Data model directory: %s", data_model_dir) + + # FIXME: path doesn't recognize windows path object, so converting to string. + # Is there a better way to get the data model directory than just adding it to the path? + # Can't just import input_checker because enums.py also needs to be recognized. + sys.path.append(str(data_model_dir)) + + input_checker_file_full = os.path.join( + state.filesystem.working_dir if state.filesystem.working_dir else ".", + data_model_dir, + input_checker_file, + ) + + assert os.path.exists( + input_checker_file_full + ), f"Cannot find input checker file {input_checker_file} in data_model_dir {data_model_dir}" + + create_table_store(state, input_checker_settings) + + # import the input checker code after the TABLE_STORE is initialized so functions have access to the variable + prior_dir = os.getcwd() + if state.filesystem.working_dir: + os.chdir(state.filesystem.working_dir) + input_checker = __import__(os.path.splitext(input_checker_file)[0]) + os.chdir(prior_dir) + + # intializing data objects for errors, warnings, and pydantic data + v_errors = {} + v_warnings = {} + pydantic_lists = {} + + # loop through each input table checker + for table_settings in input_checker_settings["table_list"]: + validation_settings = table_settings["validation"] + table_name = table_settings["name"] + + # creating current table global so that logger can access automatically without the + # user having to specify when calling log_info + global cur_table + cur_table = table_name + + # initializing validation error and warning tracking + v_errors[table_name] = [] + v_warnings[table_name] = [] + + assert validation_settings["method"] in ["pandera", "pydantic"] + + if validation_settings["method"] == "pandera": + logger.info(f"performing Pandera check on {table_settings['name']}") + v_errors, v_warnings = validate_with_pandera( + input_checker, table_name, validation_settings, v_errors, v_warnings + ) + + if validation_settings["method"] == "pydantic": + logger.info(f"performing Pydantic check on {table_settings['name']}") + logger.warning(f"Pydantic validation is not fully implemented yet!!") + v_errors, v_warnings, pydantic_lists = validate_with_pydantic( + input_checker, + table_name, + validation_settings, + v_errors, + v_warnings, + pydantic_lists, + ) + + input_check_failure = report_errors( + state, input_checker_settings, v_warnings, v_errors + ) + + # free memory from input checker tables + for key, value in TABLE_STORE.items(): + del value + TABLE_STORE.clear() + + if input_check_failure: + logger.error("Run is killed due to input checker failure!!") + raise RuntimeError( + "Encountered error in input checker, see input_checker.log for details" + ) diff --git a/activitysim/abm/models/joint_tour_composition.py b/activitysim/abm/models/joint_tour_composition.py index a041fb9e8..ab57298e0 100644 --- a/activitysim/abm/models/joint_tour_composition.py +++ b/activitysim/abm/models/joint_tour_composition.py @@ -1,47 +1,77 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing - -from .util import estimation -from .util.overlap import hh_time_window_overlap +from activitysim.abm.models.util.overlap import hh_time_window_overlap +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import LogitComponentSettings logger = logging.getLogger(__name__) -def add_null_results(trace_label, tours): +def add_null_results(state, trace_label, tours): logger.info("Skipping %s: add_null_results" % trace_label) tours["composition"] = "" - pipeline.replace_table("tours", tours) + cat_type = pd.api.types.CategoricalDtype( + ["", "adults", "children", "mixed"], ordered=False + ) + tours["composition"] = tours["composition"].astype(cat_type) + state.add_table("tours", tours) -@inject.step() -def joint_tour_composition(tours, households, persons, chunk_size, trace_hh_id): +class JointTourCompositionSettings(LogitComponentSettings, extra="forbid"): + """ + Settings for the `joint_tour_composition` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + +@workflow.step +def joint_tour_composition( + state: workflow.State, + tours: pd.DataFrame, + households: pd.DataFrame, + persons: pd.DataFrame, + model_settings: JointTourCompositionSettings | None = None, + model_settings_file_name: str = "joint_tour_composition.yaml", + trace_label: str = "joint_tour_composition", +) -> None: """ This model predicts the makeup of the travel party (adults, children, or mixed). """ - trace_label = "joint_tour_composition" - model_settings_file_name = "joint_tour_composition.yaml" - tours = tours.to_frame() joint_tours = tours[tours.tour_category == "joint"] + if model_settings is None: + model_settings = JointTourCompositionSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + # - if no joint tours if joint_tours.shape[0] == 0: - add_null_results(trace_label, tours) + add_null_results(state, trace_label, tours) return - model_settings = config.read_model_settings(model_settings_file_name) - estimator = estimation.manager.begin_estimation("joint_tour_composition") + estimator = estimation.manager.begin_estimation(state, "joint_tour_composition") # - only interested in households with joint_tours - households = households.to_frame() households = households[households.num_hh_joint_tours > 0] - persons = persons.to_frame() persons = persons[persons.household_id.isin(households.index)] logger.info( @@ -49,15 +79,15 @@ def joint_tour_composition(tours, households, persons, chunk_size, trace_hh_id): ) # - run preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_dict = { "persons": persons, - "hh_time_window_overlap": hh_time_window_overlap, + "hh_time_window_overlap": lambda *x: hh_time_window_overlap(state, *x), } expressions.assign_columns( + state, df=households, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -69,9 +99,11 @@ def joint_tour_composition(tours, households, persons, chunk_size, trace_hh_id): ) # - simple_simulate - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) nest_spec = config.get_logit_model_settings(model_settings) constants = config.get_model_constants(model_settings) @@ -83,11 +115,11 @@ def joint_tour_composition(tours, households, persons, chunk_size, trace_hh_id): estimator.write_choosers(joint_tours_merged) choices = simulate.simple_simulate( + state, choosers=joint_tours_merged, spec=model_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="composition", estimator=estimator, @@ -95,6 +127,10 @@ def joint_tour_composition(tours, households, persons, chunk_size, trace_hh_id): # convert indexes to alternative names choices = pd.Series(model_spec.columns[choices.values], index=choices.index) + cat_type = pd.api.types.CategoricalDtype( + model_spec.columns.tolist() + [""], ordered=False + ) + choices = choices.astype(cat_type) if estimator: estimator.write_choices(choices) @@ -106,15 +142,15 @@ def joint_tour_composition(tours, households, persons, chunk_size, trace_hh_id): joint_tours["composition"] = choices # reindex since we ran model on a subset of households - tours["composition"] = choices.reindex(tours.index).fillna("").astype(str) - pipeline.replace_table("tours", tours) + tours["composition"] = choices.reindex(tours.index).fillna("") + state.add_table("tours", tours) tracing.print_summary( "joint_tour_composition", joint_tours.composition, value_counts=True ) - if trace_hh_id: - tracing.trace_df( + if state.settings.trace_hh_id: + state.tracing.trace_df( joint_tours, label="joint_tour_composition.joint_tours", slicer="household_id", diff --git a/activitysim/abm/models/joint_tour_destination.py b/activitysim/abm/models/joint_tour_destination.py index 02651d2a4..b214e0982 100644 --- a/activitysim/abm/models/joint_tour_destination.py +++ b/activitysim/abm/models/joint_tour_destination.py @@ -1,67 +1,72 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd -from activitysim.core import config, inject, pipeline, simulate, tracing +from activitysim.abm.models.util import tour_destination +from activitysim.core import estimation, los, tracing, workflow +from activitysim.core.configuration.logit import TourLocationComponentSettings from activitysim.core.util import assign_in_place -from .util import estimation, tour_destination - logger = logging.getLogger(__name__) -@inject.step() +@workflow.step def joint_tour_destination( - tours, persons_merged, households_merged, network_los, chunk_size, trace_hh_id -): - + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + network_los: los.Network_LOS, + model_settings: TourLocationComponentSettings | None = None, + model_settings_file_name: str = "joint_tour_destination.yaml", + trace_label: str = "joint_tour_destination", +) -> None: """ Given the tour generation from the above, each tour needs to have a destination, so in this case tours are the choosers (with the associated person that's making the tour) """ + if model_settings is None: + model_settings = TourLocationComponentSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - trace_label = "joint_tour_destination" - model_settings_file_name = "joint_tour_destination.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + trace_hh_id = state.settings.trace_hh_id - logsum_column_name = model_settings.get("DEST_CHOICE_LOGSUM_COLUMN_NAME") + logsum_column_name = model_settings.DEST_CHOICE_LOGSUM_COLUMN_NAME want_logsums = logsum_column_name is not None - sample_table_name = model_settings.get("DEST_CHOICE_SAMPLE_TABLE_NAME") + sample_table_name = model_settings.DEST_CHOICE_SAMPLE_TABLE_NAME want_sample_table = ( - config.setting("want_dest_choice_sample_tables") - and sample_table_name is not None + state.settings.want_dest_choice_sample_tables and sample_table_name is not None ) # choosers are tours - in a sense tours are choosing their destination - tours = tours.to_frame() joint_tours = tours[tours.tour_category == "joint"] - persons_merged = persons_merged.to_frame() - # - if no joint tours if joint_tours.shape[0] == 0: tracing.no_results("joint_tour_destination") return - estimator = estimation.manager.begin_estimation("joint_tour_destination") + estimator = estimation.manager.begin_estimation(state, "joint_tour_destination") if estimator: estimator.write_coefficients(model_settings=model_settings) # estimator.write_spec(model_settings, tag='SAMPLE_SPEC') estimator.write_spec(model_settings, tag="SPEC") - estimator.set_alt_id(model_settings["ALT_DEST_COL_NAME"]) + estimator.set_alt_id(model_settings.ALT_DEST_COL_NAME) estimator.write_table( - inject.get_injectable("size_terms"), "size_terms", append=False - ) - estimator.write_table( - inject.get_table("land_use").to_frame(), "landuse", append=False + state.get_injectable("size_terms"), "size_terms", append=False ) + estimator.write_table(state.get_dataframe("land_use"), "landuse", append=False) estimator.write_model_settings(model_settings, model_settings_file_name) choices_df, save_sample_df = tour_destination.run_tour_destination( + state, tours, persons_merged, want_logsums, @@ -69,8 +74,6 @@ def joint_tour_destination( model_settings, network_los, estimator, - chunk_size, - trace_hh_id, trace_label, ) @@ -84,19 +87,29 @@ def joint_tour_destination( # add column as we want joint_tours table for tracing. joint_tours["destination"] = choices_df.choice - assign_in_place(tours, joint_tours[["destination"]]) - pipeline.replace_table("tours", tours) + assign_in_place( + tours, + joint_tours[["destination"]], + state.settings.downcast_int, + state.settings.downcast_float, + ) + state.add_table("tours", tours) if want_logsums: joint_tours[logsum_column_name] = choices_df["logsum"] - assign_in_place(tours, joint_tours[[logsum_column_name]]) + assign_in_place( + tours, + joint_tours[[logsum_column_name]], + state.settings.downcast_int, + state.settings.downcast_float, + ) tracing.print_summary("destination", joint_tours.destination, describe=True) if want_sample_table: assert len(save_sample_df.index.get_level_values(0).unique()) == len(choices_df) # save_sample_df.set_index(model_settings['ALT_DEST_COL_NAME'], append=True, inplace=True) - pipeline.extend_table(sample_table_name, save_sample_df) + state.extend_table(sample_table_name, save_sample_df) if trace_hh_id: - tracing.trace_df(joint_tours, label="joint_tour_destination.joint_tours") + state.tracing.trace_df(joint_tours, label="joint_tour_destination.joint_tours") diff --git a/activitysim/abm/models/joint_tour_frequency.py b/activitysim/abm/models/joint_tour_frequency.py index 103964665..93a8aa475 100644 --- a/activitysim/abm/models/joint_tour_frequency.py +++ b/activitysim/abm/models/joint_tour_frequency.py @@ -1,44 +1,70 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing - -from .util import estimation -from .util.overlap import hh_time_window_overlap -from .util.tour_frequency import process_joint_tours +from activitysim.abm.models.util.overlap import hh_time_window_overlap +from activitysim.abm.models.util.tour_frequency import process_joint_tours +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import LogitComponentSettings logger = logging.getLogger(__name__) -@inject.step() -def joint_tour_frequency(households, persons, chunk_size, trace_hh_id): +class JointTourFrequencySettings(LogitComponentSettings, extra="forbid"): + """ + Settings for the `free_parking` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + +@workflow.step +def joint_tour_frequency( + state: workflow.State, + households: pd.DataFrame, + persons: pd.DataFrame, + model_settings: JointTourFrequencySettings | None = None, + model_settings_file_name: str = "joint_tour_frequency.yaml", + trace_label: str = "joint_tour_frequency", +) -> None: """ This model predicts the frequency of making fully joint trips (see the alternatives above). """ - trace_label = "joint_tour_frequency" - model_settings_file_name = "joint_tour_frequency.yaml" + if model_settings is None: + model_settings = JointTourFrequencySettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - estimator = estimation.manager.begin_estimation("joint_tour_frequency") + trace_hh_id = state.settings.trace_hh_id - model_settings = config.read_model_settings(model_settings_file_name) + estimator = estimation.manager.begin_estimation(state, "joint_tour_frequency") alternatives = simulate.read_model_alts( - "joint_tour_frequency_alternatives.csv", set_index="alt" + state, "joint_tour_frequency_alternatives.csv", set_index="alt" ) # - only interested in households with more than one cdap travel_active person and # - at least one non-preschooler - households = households.to_frame() multi_person_households = households[households.participates_in_jtf_model].copy() # - only interested in persons in multi_person_households # FIXME - gratuitous pathological efficiency move, just let yaml specify persons? - persons = persons.to_frame() persons = persons[persons.household_id.isin(multi_person_households.index)] logger.info( @@ -47,24 +73,26 @@ def joint_tour_frequency(households, persons, chunk_size, trace_hh_id): ) # - preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_dict = { "persons": persons, - "hh_time_window_overlap": hh_time_window_overlap, + "hh_time_window_overlap": lambda *x: hh_time_window_overlap(state, *x), } expressions.assign_columns( + state, df=multi_person_households, model_settings=preprocessor_settings, locals_dict=locals_dict, trace_label=trace_label, ) - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) nest_spec = config.get_logit_model_settings(model_settings) constants = config.get_model_constants(model_settings) @@ -76,11 +104,11 @@ def joint_tour_frequency(households, persons, chunk_size, trace_hh_id): estimator.write_choosers(multi_person_households) choices = simulate.simple_simulate( + state, choosers=multi_person_households, spec=model_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="joint_tour_frequency", estimator=estimator, @@ -88,6 +116,11 @@ def joint_tour_frequency(households, persons, chunk_size, trace_hh_id): # convert indexes to alternative names choices = pd.Series(model_spec.columns[choices.values], index=choices.index) + cat_type = pd.api.types.CategoricalDtype( + model_spec.columns.tolist(), + ordered=False, + ) + choices = choices.astype(cat_type) if estimator: estimator.write_choices(choices) @@ -108,19 +141,25 @@ def joint_tour_frequency(households, persons, chunk_size, trace_hh_id): temp_point_persons = temp_point_persons.set_index("household_id") temp_point_persons = temp_point_persons[["person_id", "home_zone_id"]] - joint_tours = process_joint_tours(choices, alternatives, temp_point_persons) + joint_tours = process_joint_tours(state, choices, alternatives, temp_point_persons) + + # convert purpose to pandas categoricals + purpose_type = pd.api.types.CategoricalDtype( + alternatives.columns.tolist(), ordered=False + ) + joint_tours["tour_type"] = joint_tours["tour_type"].astype(purpose_type) - tours = pipeline.extend_table("tours", joint_tours) + tours = state.extend_table("tours", joint_tours) - tracing.register_traceable_table("tours", joint_tours) - pipeline.get_rn_generator().add_channel("tours", joint_tours) + state.tracing.register_traceable_table("tours", joint_tours) + state.get_rn_generator().add_channel("tours", joint_tours) # - annotate households # we expect there to be an alt with no tours - which we can use to backfill non-travelers no_tours_alt = (alternatives.sum(axis=1) == 0).index[0] - households["joint_tour_frequency"] = ( - choices.reindex(households.index).fillna(no_tours_alt).astype(str) + households["joint_tour_frequency"] = choices.reindex(households.index).fillna( + no_tours_alt ) households["num_hh_joint_tours"] = ( @@ -131,16 +170,16 @@ def joint_tour_frequency(households, persons, chunk_size, trace_hh_id): .astype(np.int8) ) - pipeline.replace_table("households", households) + state.add_table("households", households) tracing.print_summary( "joint_tour_frequency", households.joint_tour_frequency, value_counts=True ) if trace_hh_id: - tracing.trace_df(households, label="joint_tour_frequency.households") + state.tracing.trace_df(households, label="joint_tour_frequency.households") - tracing.trace_df( + state.tracing.trace_df( joint_tours, label="joint_tour_frequency.joint_tours", slicer="household_id" ) diff --git a/activitysim/abm/models/joint_tour_frequency_composition.py b/activitysim/abm/models/joint_tour_frequency_composition.py index 3e52d27fa..44e57d604 100644 --- a/activitysim/abm/models/joint_tour_frequency_composition.py +++ b/activitysim/abm/models/joint_tour_frequency_composition.py @@ -1,64 +1,82 @@ +from __future__ import annotations + # ActivitySim # See full license in LICENSE.txt. import logging import numpy as np import pandas as pd -import os + +from activitysim.abm.models.util.overlap import hh_time_window_overlap +from activitysim.abm.models.util.tour_frequency import ( + process_joint_tours_frequency_composition, +) +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import LogitComponentSettings from activitysim.core.interaction_simulate import interaction_simulate -from activitysim.core import simulate -from activitysim.core import tracing -from activitysim.core import pipeline -from activitysim.core import config -from activitysim.core import inject -from activitysim.core import expressions +logger = logging.getLogger(__name__) -from .util import estimation -from .util.overlap import hh_time_window_overlap -from .util.tour_frequency import process_joint_tours_frequency_composition +class JointTourFrequencyCompositionSettings(LogitComponentSettings): + """ + Settings for the `joint_tour_frequency_composition` component. + """ -logger = logging.getLogger(__name__) + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + ALTS_PREPROCESSOR: PreprocessorSettings | None = None -@inject.step() +@workflow.step def joint_tour_frequency_composition( - households_merged, persons, chunk_size, trace_hh_id -): + state: workflow.State, + households_merged: pd.DataFrame, + persons: pd.DataFrame, + model_settings: JointTourFrequencyCompositionSettings | None = None, + model_settings_file_name: str = "joint_tour_frequency_composition.yaml", + trace_label: str = "joint_tour_frequency_composition", +) -> None: """ This model predicts the frequency and composition of fully joint tours. """ - - trace_label = "joint_tour_frequency_composition" - model_settings_file_name = "joint_tour_frequency_composition.yaml" - - model_settings = config.read_model_settings(model_settings_file_name) + if model_settings is None: + model_settings = JointTourFrequencyCompositionSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) alt_tdd = simulate.read_model_alts( - "joint_tour_frequency_composition_alternatives.csv", set_index="alt" + state, "joint_tour_frequency_composition_alternatives.csv", set_index="alt" ) # - only interested in households with more than one cdap travel_active person and # - at least one non-preschooler - households_merged = households_merged.to_frame() choosers = households_merged[households_merged.participates_in_jtf_model].copy() # - only interested in persons in choosers households - persons = persons.to_frame() persons = persons[persons.household_id.isin(choosers.index)] logger.info("Running %s with %d households", trace_label, len(choosers)) # alt preprocessor - alt_preprocessor_settings = model_settings.get("ALTS_PREPROCESSOR", None) + alt_preprocessor_settings = model_settings.ALTS_PREPROCESSOR if alt_preprocessor_settings: - locals_dict = {} alt_tdd = alt_tdd.copy() expressions.assign_columns( + state, df=alt_tdd, model_settings=alt_preprocessor_settings, locals_dict=locals_dict, @@ -66,26 +84,30 @@ def joint_tour_frequency_composition( ) # - preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_dict = { "persons": persons, - "hh_time_window_overlap": hh_time_window_overlap, + "hh_time_window_overlap": lambda *x: hh_time_window_overlap(state, *x), } expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_dict, trace_label=trace_label, ) - estimator = estimation.manager.begin_estimation("joint_tour_frequency_composition") + estimator = estimation.manager.begin_estimation( + state, "joint_tour_frequency_composition" + ) - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) constants = config.get_model_constants(model_settings) @@ -105,11 +127,12 @@ def joint_tour_frequency_composition( # The choice value 'joint_tour_frequency_composition' assigned by interaction_simulate # is the index value of the chosen alternative in the alternatives table. choices = interaction_simulate( + state, choosers=choosers, alternatives=alt_tdd, spec=model_spec, locals_d=constants, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_label=trace_label, trace_choice_name=trace_label, estimator=estimator, @@ -162,13 +185,13 @@ def joint_tour_frequency_composition( # 33333 shop joint adults joint_tours = process_joint_tours_frequency_composition( - choices, alt_tdd, temp_point_persons + state, choices, alt_tdd, temp_point_persons ) - tours = pipeline.extend_table("tours", joint_tours) + tours = state.extend_table("tours", joint_tours) - tracing.register_traceable_table("tours", joint_tours) - pipeline.get_rn_generator().add_channel("tours", joint_tours) + state.tracing.register_traceable_table("tours", joint_tours) + state.get_rn_generator().add_channel("tours", joint_tours) # we expect there to be an alt with no tours - which we can use to backfill non-travelers no_tours_alt = 0 @@ -184,7 +207,7 @@ def joint_tour_frequency_composition( .astype(np.int8) ) - pipeline.replace_table("households", households_merged) + state.add_table("households", households_merged) tracing.print_summary( "joint_tour_frequency_composition", @@ -192,12 +215,12 @@ def joint_tour_frequency_composition( value_counts=True, ) - if trace_hh_id: - tracing.trace_df( + if state.settings.trace_hh_id: + state.tracing.trace_df( households_merged, label="joint_tour_frequency_composition.households" ) - tracing.trace_df( + state.tracing.trace_df( joint_tours, label="joint_tour_frequency_composition.joint_tours", slicer="household_id", diff --git a/activitysim/abm/models/joint_tour_participation.py b/activitysim/abm/models/joint_tour_participation.py index ee8658ae5..4c6691ec1 100644 --- a/activitysim/abm/models/joint_tour_participation.py +++ b/activitysim/abm/models/joint_tour_participation.py @@ -1,31 +1,31 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -import pandas as pd import numpy as np +import pandas as pd from activitysim.abm.models.util.canonical_ids import MAX_PARTICIPANT_PNUM +from activitysim.abm.models.util.overlap import person_time_window_overlap from activitysim.core import ( - chunk, config, + estimation, expressions, - inject, logit, - pipeline, simulate, tracing, + workflow, ) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import LogitComponentSettings from activitysim.core.util import assign_in_place, reindex -from .util import estimation -from .util.overlap import person_time_window_overlap - logger = logging.getLogger(__name__) def joint_tour_participation_candidates(joint_tours, persons_merged): - # - only interested in persons from households with joint_tours persons_merged = persons_merged[persons_merged.num_hh_joint_tours > 0] @@ -66,7 +66,7 @@ def joint_tour_participation_candidates(joint_tours, persons_merged): candidates["participant_id"] = ( candidates[joint_tours.index.name] * MAX_PARTICIPANT_PNUM ) + candidates.PNUM - candidates["participant_id"] = candidates["participant_id"].astype(np.uint64) + candidates["participant_id"] = candidates["participant_id"].astype(np.int64) candidates.set_index( "participant_id", drop=True, inplace=True, verify_integrity=True ) @@ -75,11 +75,9 @@ def joint_tour_participation_candidates(joint_tours, persons_merged): def get_tour_satisfaction(candidates, participate): - tour_ids = candidates.tour_id.unique() if participate.any(): - candidates = candidates[participate] # if this happens, we would need to filter them out! @@ -94,7 +92,7 @@ def get_tour_satisfaction(candidates, participate): x = ( candidates[cols] - .groupby(["tour_id", "composition"]) + .groupby(["tour_id", "composition"], observed=True) .agg( participants=("adult", "size"), adults=("adult", "sum"), @@ -123,7 +121,13 @@ def get_tour_satisfaction(candidates, participate): return satisfaction -def participants_chooser(probs, choosers, spec, trace_label): +def participants_chooser( + state: workflow.State, + probs: pd.DataFrame, + choosers: pd.DataFrame, + spec: pd.DataFrame, + trace_label: str, +) -> tuple[pd.Series, pd.Series]: """ custom alternative to logit.make_choices for simulate.simple_simulate @@ -161,14 +165,16 @@ def participants_chooser(probs, choosers, spec, trace_label): assert probs.index.equals(choosers.index) # choice is boolean (participate or not) - model_settings = config.read_model_settings("joint_tour_participation.yaml") + model_settings = JointTourParticipationSettings.read_settings_file( + state.filesystem, "joint_tour_participation.yaml", mandatory=False + ) - choice_col = model_settings.get("participation_choice", "participate") + choice_col = model_settings.participation_choice assert ( choice_col in spec.columns ), "couldn't find participation choice column '%s' in spec" PARTICIPATE_CHOICE = spec.columns.get_loc(choice_col) - MAX_ITERATIONS = model_settings.get("max_participation_choice_iterations", 5000) + MAX_ITERATIONS = model_settings.max_participation_choice_iterations trace_label = tracing.extend_trace_label(trace_label, "participants_chooser") @@ -185,7 +191,6 @@ def participants_chooser(probs, choosers, spec, trace_label): iter = 0 while candidates.shape[0] > 0: - iter += 1 if iter > MAX_ITERATIONS: @@ -194,14 +199,14 @@ def participants_chooser(probs, choosers, spec, trace_label): ) diagnostic_cols = ["tour_id", "household_id", "composition", "adult"] unsatisfied_candidates = candidates[diagnostic_cols].join(probs) - tracing.write_csv( + state.tracing.write_csv( unsatisfied_candidates, file_name="%s.UNSATISFIED" % trace_label, transpose=False, ) print(unsatisfied_candidates.head(20)) - if model_settings.get("FORCE_PARTICIPATION", False): + if model_settings.FORCE_PARTICIPATION: logger.warning( f"Forcing joint tour participation for {num_tours_remaining} tours." ) @@ -215,7 +220,7 @@ def participants_chooser(probs, choosers, spec, trace_label): ) choices, rands = logit.make_choices( - probs, trace_label=trace_label, trace_choosers=choosers + state, probs, trace_label=trace_label, trace_choosers=choosers ) participate = choices == PARTICIPATE_CHOICE @@ -231,7 +236,6 @@ def participants_chooser(probs, choosers, spec, trace_label): ) if num_tours_satisfied_this_iter > 0: - num_tours_remaining -= num_tours_satisfied_this_iter satisfied = reindex(tour_satisfaction, candidates.tour_id) @@ -266,19 +270,27 @@ def participants_chooser(probs, choosers, spec, trace_label): return choices, rands -def annotate_jtp(model_settings, trace_label): - +def annotate_jtp( + state: workflow.State, + model_settings: JointTourParticipationSettings, + trace_label: str, +): # - annotate persons - persons = inject.get_table("persons").to_frame() + persons = state.get_dataframe("persons") expressions.assign_columns( + state, df=persons, - model_settings=model_settings.get("annotate_persons"), + model_settings=model_settings.annotate_persons, trace_label=tracing.extend_trace_label(trace_label, "annotate_persons"), ) - pipeline.replace_table("persons", persons) + state.add_table("persons", persons) -def add_null_results(model_settings, trace_label): +def add_null_results( + state: workflow.State, + model_settings: JointTourParticipationSettings, + trace_label: str, +): logger.info("Skipping %s: joint tours", trace_label) # participants table is used downstream in non-joint tour expressions @@ -286,35 +298,61 @@ def add_null_results(model_settings, trace_label): participants = pd.DataFrame(columns=PARTICIPANT_COLS) participants.index.name = "participant_id" - pipeline.replace_table("joint_tour_participants", participants) + state.add_table("joint_tour_participants", participants) # - run annotations - annotate_jtp(model_settings, trace_label) + annotate_jtp(state, model_settings, trace_label) + + +class JointTourParticipationSettings(LogitComponentSettings, extra="forbid"): + """ + Settings for the `joint_tour_participation` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + annotate_persons: PreprocessorSettings | None = None + """Instructions for annotating the persons table.""" + + participation_choice: str = "participate" + max_participation_choice_iterations: int = 5000 -@inject.step() -def joint_tour_participation(tours, persons_merged, chunk_size, trace_hh_id): + FORCE_PARTICIPATION: bool = False + + +@workflow.step +def joint_tour_participation( + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + model_settings: JointTourParticipationSettings | None = None, + model_settings_file_name: str = "joint_tour_participation.yaml", + trace_label: str = "joint_tour_participation", +) -> None: """ Predicts for each eligible person to participate or not participate in each joint tour. """ - trace_label = "joint_tour_participation" - model_settings_file_name = "joint_tour_participation.yaml" - model_settings = config.read_model_settings(model_settings_file_name) - tours = tours.to_frame() + if model_settings is None: + model_settings = JointTourParticipationSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + trace_hh_id = state.settings.trace_hh_id + joint_tours = tours[tours.tour_category == "joint"] # - if no joint tours if joint_tours.shape[0] == 0: - add_null_results(model_settings, trace_label) + add_null_results(state, model_settings, trace_label) return - persons_merged = persons_merged.to_frame() - # - create joint_tour_participation_candidates table candidates = joint_tour_participation_candidates(joint_tours, persons_merged) - tracing.register_traceable_table("joint_tour_participants", candidates) - pipeline.get_rn_generator().add_channel("joint_tour_participants", candidates) + state.tracing.register_traceable_table("joint_tour_participants", candidates) + state.get_rn_generator().add_channel("joint_tour_participants", candidates) logger.info( "Running joint_tours_participation with %d potential participants (candidates)" @@ -322,15 +360,17 @@ def joint_tour_participation(tours, persons_merged, chunk_size, trace_hh_id): ) # - preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_dict = { - "person_time_window_overlap": person_time_window_overlap, + "person_time_window_overlap": lambda x: person_time_window_overlap( + state, x + ), "persons": persons_merged, } expressions.assign_columns( + state, df=candidates, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -339,11 +379,13 @@ def joint_tour_participation(tours, persons_merged, chunk_size, trace_hh_id): # - simple_simulate - estimator = estimation.manager.begin_estimation("joint_tour_participation") + estimator = estimation.manager.begin_estimation(state, "joint_tour_participation") - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) nest_spec = config.get_logit_model_settings(model_settings) constants = config.get_model_constants(model_settings) @@ -363,11 +405,11 @@ def joint_tour_participation(tours, persons_merged, chunk_size, trace_hh_id): candidates["chunk_id"] = reindex(household_chunk_ids, candidates.household_id) choices = simulate.simple_simulate_by_chunk_id( + state, choosers=candidates, spec=model_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="participation", custom_chooser=participants_chooser, @@ -375,7 +417,7 @@ def joint_tour_participation(tours, persons_merged, chunk_size, trace_hh_id): ) # choice is boolean (participate or not) - choice_col = model_settings.get("participation_choice", "participate") + choice_col = model_settings.participation_choice assert ( choice_col in model_spec.columns ), "couldn't find participation choice column '%s' in spec" @@ -421,10 +463,10 @@ def joint_tour_participation(tours, persons_merged, chunk_size, trace_hh_id): + 1 ) - pipeline.replace_table("joint_tour_participants", participants) + state.add_table("joint_tour_participants", participants) # drop channel as we aren't using any more (and it has candidates that weren't chosen) - pipeline.get_rn_generator().drop_channel("joint_tour_participants") + state.get_rn_generator().drop_channel("joint_tour_participants") # - assign joint tour 'point person' (participant_num == 1) point_persons = participants[participants.participant_num == 1] @@ -433,14 +475,23 @@ def joint_tour_participation(tours, persons_merged, chunk_size, trace_hh_id): # update number_of_participants which was initialized to 1 joint_tours["number_of_participants"] = participants.groupby("tour_id").size() - assign_in_place(tours, joint_tours[["person_id", "number_of_participants"]]) + assign_in_place( + tours, + joint_tours[["person_id", "number_of_participants"]], + state.settings.downcast_int, + state.settings.downcast_float, + ) - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) # - run annotations - annotate_jtp(model_settings, trace_label) + annotate_jtp(state, model_settings, trace_label) if trace_hh_id: - tracing.trace_df(participants, label="joint_tour_participation.participants") + state.tracing.trace_df( + participants, label="joint_tour_participation.participants" + ) - tracing.trace_df(joint_tours, label="joint_tour_participation.joint_tours") + state.tracing.trace_df( + joint_tours, label="joint_tour_participation.joint_tours" + ) diff --git a/activitysim/abm/models/joint_tour_scheduling.py b/activitysim/abm/models/joint_tour_scheduling.py index ca56327d0..260abedc7 100644 --- a/activitysim/abm/models/joint_tour_scheduling.py +++ b/activitysim/abm/models/joint_tour_scheduling.py @@ -1,29 +1,64 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing +from activitysim.abm.models.util.vectorize_tour_scheduling import ( + TourSchedulingSettings, + vectorize_joint_tour_scheduling, +) +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import LogitComponentSettings from activitysim.core.util import assign_in_place, reindex -from .util import estimation -from .util.vectorize_tour_scheduling import vectorize_joint_tour_scheduling - logger = logging.getLogger(__name__) -@inject.step() -def joint_tour_scheduling(tours, persons_merged, tdd_alts, chunk_size, trace_hh_id): +# class JointTourSchedulingSettings(LogitComponentSettings, extra="forbid"): +# """ +# Settings for the `joint_tour_scheduling` component. +# """ +# +# preprocessor: PreprocessorSettings | None = None +# """Setting for the preprocessor.""" +# +# sharrow_skip: bool = False +# """Setting to skip sharrow""" +# + + +@workflow.step +def joint_tour_scheduling( + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + tdd_alts: pd.DataFrame, + model_settings: TourSchedulingSettings | None = None, + model_settings_file_name: str = "joint_tour_scheduling.yaml", + trace_label: str = "joint_tour_scheduling", +) -> None: """ This model predicts the departure time and duration of each joint tour """ - trace_label = "joint_tour_scheduling" - model_settings_file_name = "joint_tour_scheduling.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + if model_settings is None: + model_settings = TourSchedulingSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - tours = tours.to_frame() + trace_hh_id = state.settings.trace_hh_id joint_tours = tours[tours.tour_category == "joint"] # - if no joint tours @@ -31,10 +66,8 @@ def joint_tour_scheduling(tours, persons_merged, tdd_alts, chunk_size, trace_hh_ tracing.no_results(trace_label) return - # use inject.get_table as this won't exist if there are no joint_tours - joint_tour_participants = inject.get_table("joint_tour_participants").to_frame() - - persons_merged = persons_merged.to_frame() + # use state.get_dataframe as this won't exist if there are no joint_tours + joint_tour_participants = state.get_dataframe("joint_tour_participants") logger.info("Running %s with %d joint tours", trace_label, joint_tours.shape[0]) @@ -52,28 +85,30 @@ def joint_tour_scheduling(tours, persons_merged, tdd_alts, chunk_size, trace_hh_ constants = config.get_model_constants(model_settings) # - run preprocessor to annotate choosers - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_d = {} if constants is not None: locals_d.update(constants) expressions.assign_columns( + state, df=joint_tours, model_settings=preprocessor_settings, locals_dict=locals_d, trace_label=trace_label, ) - timetable = inject.get_injectable("timetable") + timetable = state.get_injectable("timetable") - estimator = estimation.manager.begin_estimation("joint_tour_scheduling") + estimator = estimation.manager.begin_estimation(state, "joint_tour_scheduling") - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - sharrow_skip = model_settings.get("sharrow_skip", False) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + sharrow_skip = model_settings.sharrow_skip + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) if estimator: estimator.write_model_settings(model_settings, model_settings_file_name) @@ -82,6 +117,7 @@ def joint_tour_scheduling(tours, persons_merged, tdd_alts, chunk_size, trace_hh_ timetable.begin_transaction(estimator) choices = vectorize_joint_tour_scheduling( + state, joint_tours, joint_tour_participants, persons_merged, @@ -90,7 +126,7 @@ def joint_tour_scheduling(tours, persons_merged, tdd_alts, chunk_size, trace_hh_ spec=model_spec, model_settings=model_settings, estimator=estimator, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_label=trace_label, sharrow_skip=sharrow_skip, ) @@ -117,7 +153,7 @@ def joint_tour_scheduling(tours, persons_merged, tdd_alts, chunk_size, trace_hh_ nth_participants.person_id, reindex(choices, nth_participants.tour_id) ) - timetable.replace_table() + timetable.replace_table(state) # choices are tdd alternative ids # we want to add start, end, and duration columns to tours, which we have in tdd_alts table @@ -125,13 +161,15 @@ def joint_tour_scheduling(tours, persons_merged, tdd_alts, chunk_size, trace_hh_ choices.to_frame("tdd"), tdd_alts, left_on=["tdd"], right_index=True, how="left" ) - assign_in_place(tours, choices) - pipeline.replace_table("tours", tours) + assign_in_place( + tours, choices, state.settings.downcast_int, state.settings.downcast_float + ) + state.add_table("tours", tours) # updated df for tracing joint_tours = tours[tours.tour_category == "joint"] if trace_hh_id: - tracing.trace_df( + state.tracing.trace_df( joint_tours, label="joint_tour_scheduling", slicer="household_id" ) diff --git a/activitysim/abm/models/location_choice.py b/activitysim/abm/models/location_choice.py index dd5e279b3..937721c05 100644 --- a/activitysim/abm/models/location_choice.py +++ b/activitysim/abm/models/location_choice.py @@ -1,27 +1,23 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd +from activitysim.abm.models.util import logsums as logsum +from activitysim.abm.models.util import tour_destination from activitysim.abm.tables import shadow_pricing -from activitysim.core import ( - config, - expressions, - inject, - los, - pipeline, - simulate, - tracing, +from activitysim.core import estimation, expressions, los, simulate, tracing, workflow +from activitysim.core.configuration.logit import ( + TourLocationComponentSettings, + TourModeComponentSettings, ) from activitysim.core.interaction_sample import interaction_sample from activitysim.core.interaction_sample_simulate import interaction_sample_simulate -from .util import estimation -from .util import logsums as logsum -from .util import tour_destination - # import multiprocessing @@ -80,36 +76,42 @@ ALT_LOGSUM = "mode_choice_logsum" -def write_estimation_specs(estimator, model_settings, settings_file): +def write_estimation_specs( + state: workflow.State, + estimator: estimation.Estimator, + model_settings: TourLocationComponentSettings, + settings_file, +): """ write sample_spec, spec, and coefficients to estimation data bundle Parameters ---------- + state : workflow.State + estimator : estimation.Estimator model_settings settings_file """ estimator.write_model_settings(model_settings, settings_file) # estimator.write_spec(model_settings, tag='SAMPLE_SPEC') - estimator.write_spec(model_settings, tag="SPEC") - estimator.write_coefficients(model_settings=model_settings) + estimator.write_spec(file_name=model_settings.SPEC, tag="SPEC") + estimator.write_coefficients(file_name=model_settings.COEFFICIENTS) estimator.write_table( - inject.get_injectable("size_terms"), "size_terms", append=False - ) - estimator.write_table( - inject.get_table("land_use").to_frame(), "landuse", append=False + state.get_injectable("size_terms"), "size_terms", append=False ) + estimator.write_table(state.get_dataframe("land_use"), "landuse", append=False) def _location_sample( + state: workflow.State, segment_name, choosers, alternatives, skims, estimator, - model_settings, + model_settings: TourLocationComponentSettings, alt_dest_col_name, chunk_size, chunk_tag, @@ -137,8 +139,9 @@ def _location_sample( logger.info("Running %s with %d persons" % (trace_label, len(choosers.index))) - sample_size = model_settings["SAMPLE_SIZE"] - if config.setting("disable_destination_sampling", False) or ( + sample_size = model_settings.SAMPLE_SIZE + + if state.settings.disable_destination_sampling or ( estimator and estimator.want_unsampled_alternatives ): # FIXME interaction_sample will return unsampled complete alternatives with probs and pick_count @@ -155,20 +158,23 @@ def _location_sample( "dest_col_name": skims.dest_key, # added for sharrow flows "timeframe": "timeless", } - constants = config.get_model_constants(model_settings) - locals_d.update(constants) + locals_d.update(model_settings.CONSTANTS or {}) spec = simulate.spec_for_segment( - model_settings, + state, + None, spec_id="SAMPLE_SPEC", segment_name=segment_name, estimator=estimator, + spec_file_name=model_settings.SAMPLE_SPEC, + coefficients_file_name=model_settings.COEFFICIENTS, ) # here since presumably we want this when called for either sample or presample - log_alt_losers = config.setting("log_alt_losers", False) + log_alt_losers = state.settings.log_alt_losers choices = interaction_sample( + state, choosers, alternatives, spec=spec, @@ -187,19 +193,19 @@ def _location_sample( def location_sample( + state, segment_name, persons_merged, network_los, dest_size_terms, estimator, - model_settings, + model_settings: TourLocationComponentSettings, chunk_size, chunk_tag, trace_label, ): - # FIXME - MEMORY HACK - only include columns actually used in spec - chooser_columns = model_settings["SIMULATE_CHOOSER_COLUMNS"] + chooser_columns = model_settings.SIMULATE_CHOOSER_COLUMNS choosers = persons_merged[chooser_columns] # create wrapper with keys for this lookup - in this case there is a home_zone_id in the choosers @@ -209,9 +215,10 @@ def location_sample( skim_dict = network_los.get_default_skim_dict() skims = skim_dict.wrap("home_zone_id", "zone_id") - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME choices = _location_sample( + state, segment_name, choosers, dest_size_terms, @@ -233,7 +240,12 @@ def location_sample( DEST_MAZ = "dest_MAZ" -def aggregate_size_terms(dest_size_terms, network_los, model_settings): +def aggregate_size_terms( + state: workflow.State, + dest_size_terms, + network_los: los.Network_LOS, + model_settings: TourLocationComponentSettings, +): # # aggregate MAZ_size_terms to TAZ_size_terms # @@ -269,9 +281,9 @@ def aggregate_size_terms(dest_size_terms, network_los, model_settings): for c in weighted_average_cols: TAZ_size_terms[c] /= TAZ_size_terms["size_term"] # weighted average - spc = shadow_pricing.load_shadow_price_calculator(model_settings) + spc = shadow_pricing.load_shadow_price_calculator(state, model_settings) if spc.use_shadow_pricing and ( - spc.shadow_settings["SHADOW_PRICE_METHOD"] == "simulation" + spc.shadow_settings.SHADOW_PRICE_METHOD == "simulation" ): # allow TAZs with at least one underassigned MAZ in them, therefore with a shadowprice larger than -999, to be selected again TAZ_size_terms["shadow_price_utility_adjustment"] = np.where( @@ -316,26 +328,26 @@ def aggregate_size_terms(dest_size_terms, network_los, model_settings): def location_presample( + state, segment_name, persons_merged, network_los, dest_size_terms, estimator, - model_settings, + model_settings: TourLocationComponentSettings, chunk_size, chunk_tag, trace_label, ): - trace_label = tracing.extend_trace_label(trace_label, "presample") logger.info(f"{trace_label} location_presample") - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME assert DEST_TAZ != alt_dest_col_name MAZ_size_terms, TAZ_size_terms = aggregate_size_terms( - dest_size_terms, network_los, model_settings + state, dest_size_terms, network_los, model_settings ) # convert MAZ zone_id to 'TAZ' in choosers (persons_merged) @@ -348,7 +360,7 @@ def location_presample( # FIXME - MEMORY HACK - only include columns actually used in spec # FIXME we don't actually require that land_use provide a TAZ crosswalk # FIXME maybe we should add it for multi-zone (from maz_taz) if missing? - chooser_columns = model_settings["SIMULATE_CHOOSER_COLUMNS"] + chooser_columns = model_settings.SIMULATE_CHOOSER_COLUMNS chooser_columns = [HOME_TAZ if c == HOME_MAZ else c for c in chooser_columns] choosers = persons_merged[chooser_columns] @@ -359,6 +371,7 @@ def location_presample( skims = skim_dict.wrap(HOME_TAZ, DEST_TAZ) taz_sample = _location_sample( + state, segment_name, choosers, TAZ_size_terms, @@ -382,7 +395,7 @@ def location_presample( # choose a MAZ for each DEST_TAZ choice, choice probability based on MAZ size_term fraction of TAZ total maz_choices = tour_destination.choose_MAZ_for_TAZ( - taz_sample, MAZ_size_terms, trace_label + state, taz_sample, MAZ_size_terms, trace_label ) assert DEST_MAZ in maz_choices @@ -392,12 +405,13 @@ def location_presample( def run_location_sample( + state: workflow.State, segment_name, persons_merged, network_los, dest_size_terms, estimator, - model_settings, + model_settings: TourLocationComponentSettings, chunk_size, chunk_tag, trace_label, @@ -430,7 +444,7 @@ def run_location_sample( # by default, enable presampling for multizone systems, unless they disable it in settings file pre_sample_taz = not (network_los.zone_system == los.ONE_ZONE) - if pre_sample_taz and not config.setting("want_dest_choice_presampling", True): + if pre_sample_taz and not state.settings.want_dest_choice_presampling: pre_sample_taz = False logger.info( f"Disabled destination zone presampling for {trace_label} " @@ -438,13 +452,13 @@ def run_location_sample( ) if pre_sample_taz: - logger.info( "Running %s location_presample with %d persons" % (trace_label, len(persons_merged)) ) choices = location_presample( + state, segment_name, persons_merged, network_los, @@ -457,8 +471,8 @@ def run_location_sample( ) else: - choices = location_sample( + state, segment_name, persons_merged, network_los, @@ -474,11 +488,12 @@ def run_location_sample( def run_location_logsums( + state, segment_name, persons_merged_df, network_los, location_sample_df, - model_settings, + model_settings: TourLocationComponentSettings, chunk_size, chunk_tag, trace_label, @@ -506,24 +521,27 @@ def run_location_logsums( assert not location_sample_df.empty - logsum_settings = config.read_model_settings(model_settings["LOGSUM_SETTINGS"]) + logsum_settings = TourModeComponentSettings.read_settings_file( + state.filesystem, + str(model_settings.LOGSUM_SETTINGS), + mandatory=False, + ) # FIXME - MEMORY HACK - only include columns actually used in spec persons_merged_df = logsum.filter_chooser_columns( persons_merged_df, logsum_settings, model_settings ) - logger.info( - "Running %s with %s rows" % (trace_label, len(location_sample_df.index)) - ) + logger.info(f"Running {trace_label} with {len(location_sample_df.index)} rows") choosers = location_sample_df.join(persons_merged_df, how="left") - tour_purpose = model_settings["LOGSUM_TOUR_PURPOSE"] + tour_purpose = model_settings.LOGSUM_TOUR_PURPOSE if isinstance(tour_purpose, dict): tour_purpose = tour_purpose[segment_name] - logsums = logsum.compute_logsums( + logsums = logsum.compute_location_choice_logsums( + state, choosers, tour_purpose, logsum_settings, @@ -544,6 +562,7 @@ def run_location_logsums( def run_location_simulate( + state: workflow.State, segment_name, persons_merged, location_sample_df, @@ -551,7 +570,7 @@ def run_location_simulate( dest_size_terms, want_logsums, estimator, - model_settings, + model_settings: TourLocationComponentSettings, chunk_size, chunk_tag, trace_label, @@ -572,10 +591,10 @@ def run_location_simulate( assert not persons_merged.empty # FIXME - MEMORY HACK - only include columns actually used in spec - chooser_columns = model_settings["SIMULATE_CHOOSER_COLUMNS"] + chooser_columns = model_settings.SIMULATE_CHOOSER_COLUMNS choosers = persons_merged[chooser_columns] - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME # alternatives are pre-sampled and annotated with logsums and pick_count # but we have to merge additional alt columns into alt sample list @@ -602,9 +621,7 @@ def run_location_simulate( "dest_col_name": skims.dest_key, # added for sharrow flows "timeframe": "timeless", } - constants = config.get_model_constants(model_settings) - if constants is not None: - locals_d.update(constants) + locals_d.update(model_settings.CONSTANTS or {}) if estimator: # write choosers after annotation @@ -613,12 +630,19 @@ def run_location_simulate( estimator.write_interaction_sample_alternatives(alternatives) spec = simulate.spec_for_segment( - model_settings, spec_id="SPEC", segment_name=segment_name, estimator=estimator + state, + None, + spec_id="SPEC", + segment_name=segment_name, + estimator=estimator, + spec_file_name=model_settings.SPEC, + coefficients_file_name=model_settings.COEFFICIENTS, ) - log_alt_losers = config.setting("log_alt_losers", False) + log_alt_losers = state.settings.log_alt_losers choices = interaction_sample_simulate( + state, choosers, alternatives, spec=spec, @@ -630,7 +654,7 @@ def run_location_simulate( chunk_size=chunk_size, chunk_tag=chunk_tag, trace_label=trace_label, - trace_choice_name=model_settings["DEST_CHOICE_COLUMN_NAME"], + trace_choice_name=model_settings.DEST_CHOICE_COLUMN_NAME, estimator=estimator, skip_choice=skip_choice, ) @@ -646,16 +670,16 @@ def run_location_simulate( def run_location_choice( + state: workflow.State, persons_merged_df, network_los, shadow_price_calculator, want_logsums, want_sample_table, estimator, - model_settings, + model_settings: TourLocationComponentSettings, chunk_size, chunk_tag, - trace_hh_id, trace_label, skip_choice=False, ): @@ -676,7 +700,6 @@ def run_location_choice( estimator: Estimator object model_settings : dict chunk_size : int - trace_hh_id : int trace_label : str Returns @@ -688,15 +711,14 @@ def run_location_choice( logsums optional & only returned if DEST_CHOICE_LOGSUM_COLUMN_NAME specified in model_settings """ - chooser_segment_column = model_settings["CHOOSER_SEGMENT_COLUMN_NAME"] + chooser_segment_column = model_settings.CHOOSER_SEGMENT_COLUMN_NAME # maps segment names to compact (integer) ids - segment_ids = model_settings["SEGMENT_IDS"] + segment_ids = model_settings.SEGMENT_IDS choices_list = [] sample_list = [] for segment_name, segment_id in segment_ids.items(): - choosers = persons_merged_df[ persons_merged_df[chooser_segment_column] == segment_id ] @@ -714,6 +736,7 @@ def run_location_choice( # - location_sample location_sample_df = run_location_sample( + state, segment_name, choosers, network_los, @@ -729,6 +752,7 @@ def run_location_choice( # - location_logsums location_sample_df = run_location_logsums( + state, segment_name, choosers, network_los, @@ -743,6 +767,7 @@ def run_location_choice( # - location_simulate choices_df = run_location_simulate( + state, segment_name, choosers, location_sample_df, @@ -760,17 +785,17 @@ def run_location_choice( ) if estimator: - if trace_hh_id: + if state.settings.trace_hh_id: estimation_trace_label = tracing.extend_trace_label( trace_label, f"estimation.{segment_name}.modeled_choices" ) - tracing.trace_df(choices_df, label=estimation_trace_label) + state.tracing.trace_df(choices_df, label=estimation_trace_label) estimator.write_choices(choices_df.choice) choices_df.choice = estimator.get_survey_values( choices_df.choice, "persons", - column_names=model_settings["DEST_CHOICE_COLUMN_NAME"], + column_names=model_settings.DEST_CHOICE_COLUMN_NAME, ) estimator.write_override_choices(choices_df.choice) @@ -783,7 +808,7 @@ def run_location_choice( # merge mode_choice_logsum for the overridden location # alt_logsums columns: ['person_id', 'choice', 'logsum'] - alt_dest_col = model_settings["ALT_DEST_COL_NAME"] + alt_dest_col = model_settings.ALT_DEST_COL_NAME alt_logsums = ( location_sample_df[[alt_dest_col, ALT_LOGSUM]] .rename(columns={alt_dest_col: "choice", ALT_LOGSUM: "logsum"}) @@ -802,18 +827,18 @@ def run_location_choice( f"{trace_label} segment {segment_name} estimation: override logsums" ) - if trace_hh_id: + if state.settings.trace_hh_id: estimation_trace_label = tracing.extend_trace_label( trace_label, f"estimation.{segment_name}.survey_choices" ) - tracing.trace_df(choices_df, estimation_trace_label) + state.tracing.trace_df(choices_df, estimation_trace_label) choices_list.append(choices_df) if want_sample_table: # FIXME - sample_table location_sample_df.set_index( - model_settings["ALT_DEST_COL_NAME"], append=True, inplace=True + model_settings.ALT_DEST_COL_NAME, append=True, inplace=True ) sample_list.append(location_sample_df) else: @@ -837,16 +862,16 @@ def run_location_choice( def iterate_location_choice( - model_settings, - persons_merged, - persons, - households, - network_los, - estimator, - chunk_size, - trace_hh_id, - locutor, - trace_label, + state: workflow.State, + model_settings: TourLocationComponentSettings, + persons_merged: pd.DataFrame, + persons: pd.DataFrame, + households: pd.DataFrame, + network_los: los.Network_LOS, + estimator: estimation.Estimator, + chunk_size: int, + locutor: bool, + trace_label: str, ): """ iterate run_location_choice updating shadow pricing until convergence criteria satisfied @@ -861,7 +886,6 @@ def iterate_location_choice( persons : injected table network_los : los.Network_LOS chunk_size : int - trace_hh_id : int locutor : bool whether this process is the privileged logger of shadow_pricing when multiprocessing trace_label : str @@ -876,18 +900,17 @@ def iterate_location_choice( chunk_tag = trace_label # boolean to filter out persons not needing location modeling (e.g. is_worker, is_student) - chooser_filter_column = model_settings["CHOOSER_FILTER_COLUMN_NAME"] + chooser_filter_column = model_settings.CHOOSER_FILTER_COLUMN_NAME - dest_choice_column_name = model_settings["DEST_CHOICE_COLUMN_NAME"] - logsum_column_name = model_settings.get("DEST_CHOICE_LOGSUM_COLUMN_NAME") + dest_choice_column_name = model_settings.DEST_CHOICE_COLUMN_NAME + logsum_column_name = model_settings.DEST_CHOICE_LOGSUM_COLUMN_NAME - sample_table_name = model_settings.get("DEST_CHOICE_SAMPLE_TABLE_NAME") + sample_table_name = model_settings.DEST_CHOICE_SAMPLE_TABLE_NAME want_sample_table = ( - config.setting("want_dest_choice_sample_tables") - and sample_table_name is not None + state.settings.want_dest_choice_sample_tables and sample_table_name is not None ) - persons_merged_df = persons_merged.to_frame() + persons_merged_df = persons_merged persons_merged_df = persons_merged_df[persons_merged[chooser_filter_column]] @@ -896,29 +919,30 @@ def iterate_location_choice( ) # interaction_sample expects chooser index to be monotonic increasing # chooser segmentation allows different sets coefficients for e.g. different income_segments or tour_types - chooser_segment_column = model_settings["CHOOSER_SEGMENT_COLUMN_NAME"] - segment_ids = model_settings["SEGMENT_IDS"] + chooser_segment_column = model_settings.CHOOSER_SEGMENT_COLUMN_NAME + segment_ids = model_settings.SEGMENT_IDS assert ( chooser_segment_column in persons_merged_df ), f"CHOOSER_SEGMENT_COLUMN '{chooser_segment_column}' not in persons_merged table." - spc = shadow_pricing.load_shadow_price_calculator(model_settings) + spc = shadow_pricing.load_shadow_price_calculator(state, model_settings) max_iterations = spc.max_iterations assert not (spc.use_shadow_pricing and estimator) - logger.debug("%s max_iterations: %s" % (trace_label, max_iterations)) + logger.debug(f"{trace_label} max_iterations: {max_iterations}") - choices_df = None # initialize to None, will be populated in first iteration + save_sample_df = ( + choices_df + ) = None # initialize to None, will be populated in first iteration for iteration in range(1, max_iterations + 1): - persons_merged_df_ = persons_merged_df.copy() if spc.use_shadow_pricing and iteration > 1: - spc.update_shadow_prices() + spc.update_shadow_prices(state) - if spc.shadow_settings["SHADOW_PRICE_METHOD"] == "simulation": + if spc.shadow_settings.SHADOW_PRICE_METHOD == "simulation": # filter from the sampled persons persons_merged_df_ = persons_merged_df_[ persons_merged_df_.index.isin(spc.sampled_persons.index) @@ -926,6 +950,7 @@ def iterate_location_choice( persons_merged_df_ = persons_merged_df_.sort_index() choices_df_, save_sample_df = run_location_choice( + state, persons_merged_df_, network_los, shadow_price_calculator=spc, @@ -935,7 +960,6 @@ def iterate_location_choice( model_settings=model_settings, chunk_size=chunk_size, chunk_tag=chunk_tag, - trace_hh_id=trace_hh_id, trace_label=tracing.extend_trace_label(trace_label, "i%s" % iteration), ) @@ -946,7 +970,7 @@ def iterate_location_choice( if spc.use_shadow_pricing: # handle simulation method if ( - spc.shadow_settings["SHADOW_PRICE_METHOD"] == "simulation" + spc.shadow_settings.SHADOW_PRICE_METHOD == "simulation" and iteration > 1 ): # if a process ends up with no sampled workers in it, hence an empty choice_df_, then choice_df wil be what it was previously @@ -974,9 +998,9 @@ def iterate_location_choice( ) if locutor: - spc.write_trace_files(iteration) + spc.write_trace_files(state, iteration) - if spc.use_shadow_pricing and spc.check_fit(iteration): + if spc.use_shadow_pricing and spc.check_fit(state, iteration): logging.info( "%s converged after iteration %s" % ( @@ -988,12 +1012,12 @@ def iterate_location_choice( # - shadow price table if locutor: - if spc.use_shadow_pricing and "SHADOW_PRICE_TABLE" in model_settings: - inject.add_table(model_settings["SHADOW_PRICE_TABLE"], spc.shadow_prices) - if "MODELED_SIZE_TABLE" in model_settings: - inject.add_table(model_settings["MODELED_SIZE_TABLE"], spc.modeled_size) + if spc.use_shadow_pricing and model_settings.SHADOW_PRICE_TABLE: + state.add_table(model_settings.SHADOW_PRICE_TABLE, spc.shadow_prices) + if model_settings.MODELED_SIZE_TABLE: + state.add_table(model_settings.MODELED_SIZE_TABLE, spc.modeled_size) - persons_df = persons.to_frame() + persons_df = persons # add the choice values to the dest_choice_column in persons dataframe # We only chose school locations for the subset of persons who go to school @@ -1014,38 +1038,39 @@ def iterate_location_choice( # might be None for tiny samples even if sample_table_name was specified assert len(save_sample_df.index.get_level_values(0).unique()) == len(choices_df) # lest they try to put school and workplace samples into the same table - if pipeline.is_table(sample_table_name): + if state.is_table(sample_table_name): raise RuntimeError( "dest choice sample table %s already exists" % sample_table_name ) - pipeline.extend_table(sample_table_name, save_sample_df) + state.extend_table(sample_table_name, save_sample_df) # - annotate persons table - if "annotate_persons" in model_settings: + if model_settings.annotate_persons: expressions.assign_columns( + state, df=persons_df, - model_settings=model_settings.get("annotate_persons"), + model_settings=model_settings.annotate_persons, trace_label=tracing.extend_trace_label(trace_label, "annotate_persons"), ) - pipeline.replace_table("persons", persons_df) + state.add_table("persons", persons_df) - if trace_hh_id: - tracing.trace_df(persons_df, label=trace_label, warn_if_empty=True) + if state.settings.trace_hh_id: + state.tracing.trace_df(persons_df, label=trace_label, warn_if_empty=True) # - annotate households table - if "annotate_households" in model_settings: - - households_df = households.to_frame() + if model_settings.annotate_households: + households_df = households expressions.assign_columns( + state, df=households_df, - model_settings=model_settings.get("annotate_households"), + model_settings=model_settings.annotate_households, trace_label=tracing.extend_trace_label(trace_label, "annotate_households"), ) - pipeline.replace_table("households", households_df) + state.add_table("households", households_df) - if trace_hh_id: - tracing.trace_df(households_df, label=trace_label, warn_if_empty=True) + if state.settings.trace_hh_id: + state.tracing.trace_df(households_df, label=trace_label, warn_if_empty=True) if logsum_column_name: tracing.print_summary( @@ -1055,22 +1080,33 @@ def iterate_location_choice( return persons_df -@inject.step() +@workflow.step def workplace_location( - persons_merged, persons, households, network_los, chunk_size, trace_hh_id, locutor -): + state: workflow.State, + persons_merged: pd.DataFrame, + persons: pd.DataFrame, + households: pd.DataFrame, + network_los: los.Network_LOS, + locutor: bool, + model_settings: TourLocationComponentSettings | None = None, + model_settings_file_name: str = "workplace_location.yaml", + trace_label: str = "workplace_location", +) -> None: """ workplace location choice model iterate_location_choice adds location choice column and annotations to persons table """ - - trace_label = "workplace_location" - model_settings = config.read_model_settings("workplace_location.yaml") - - estimator = estimation.manager.begin_estimation("workplace_location") + if model_settings is None: + model_settings = TourLocationComponentSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + estimator = estimation.manager.begin_estimation(state, "workplace_location") if estimator: - write_estimation_specs(estimator, model_settings, "workplace_location.yaml") + write_estimation_specs( + state, estimator, model_settings, "workplace_location.yaml" + ) # FIXME - debugging code to test multiprocessing failure handling # process_name = multiprocessing.current_process().name @@ -1078,18 +1114,18 @@ def workplace_location( # raise RuntimeError(f"fake fail {process_name}") # disable locutor for benchmarking - if config.setting("benchmarking", False): + if state.settings.benchmarking: locutor = False iterate_location_choice( + state, model_settings, persons_merged, persons, households, network_los, estimator, - chunk_size, - trace_hh_id, + state.settings.chunk_size, locutor, trace_label, ) @@ -1098,36 +1134,47 @@ def workplace_location( estimator.end_estimation() -@inject.step() +@workflow.step def school_location( - persons_merged, persons, households, network_los, chunk_size, trace_hh_id, locutor -): + state: workflow.State, + persons_merged: pd.DataFrame, + persons: pd.DataFrame, + households: pd.DataFrame, + network_los: los.Network_LOS, + locutor: bool, + model_settings: TourLocationComponentSettings | None = None, + model_settings_file_name: str = "school_location.yaml", + trace_label: str = "school_location", +) -> None: """ School location choice model iterate_location_choice adds location choice column and annotations to persons table """ - trace_label = "school_location" - model_settings = config.read_model_settings("school_location.yaml") + if model_settings is None: + model_settings = TourLocationComponentSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - estimator = estimation.manager.begin_estimation("school_location") + estimator = estimation.manager.begin_estimation(state, "school_location") if estimator: - write_estimation_specs(estimator, model_settings, "school_location.yaml") + write_estimation_specs(state, estimator, model_settings, "school_location.yaml") # disable locutor for benchmarking - if config.setting("benchmarking", False): + if state.settings.benchmarking: locutor = False iterate_location_choice( + state, model_settings, persons_merged, persons, households, network_los, estimator, - chunk_size, - trace_hh_id, + state.settings.chunk_size, locutor, trace_label, ) diff --git a/activitysim/abm/models/mandatory_scheduling.py b/activitysim/abm/models/mandatory_scheduling.py index 6a9618874..64fc26215 100644 --- a/activitysim/abm/models/mandatory_scheduling.py +++ b/activitysim/abm/models/mandatory_scheduling.py @@ -1,25 +1,28 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd -from activitysim.core import config, expressions, inject, pipeline, simulate +from activitysim.abm.models.util.tour_scheduling import run_tour_scheduling from activitysim.core import timetable as tt -from activitysim.core import tracing +from activitysim.core import tracing, workflow from activitysim.core.util import assign_in_place, reindex -from .util import estimation -from .util import vectorize_tour_scheduling as vts -from .util.tour_scheduling import run_tour_scheduling - logger = logging.getLogger(__name__) DUMP = False -@inject.step() -def mandatory_tour_scheduling(tours, persons_merged, tdd_alts, chunk_size, trace_hh_id): +@workflow.step +def mandatory_tour_scheduling( + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + tdd_alts: pd.DataFrame, +) -> None: """ This model predicts the departure time and duration of each activity for mandatory tours """ @@ -27,9 +30,6 @@ def mandatory_tour_scheduling(tours, persons_merged, tdd_alts, chunk_size, trace model_name = "mandatory_tour_scheduling" trace_label = model_name - persons_merged = persons_merged.to_frame() - - tours = tours.to_frame() mandatory_tours = tours[tours.tour_category == "mandatory"] # - if no mandatory_tours @@ -54,30 +54,31 @@ def mandatory_tour_scheduling(tours, persons_merged, tdd_alts, chunk_size, trace ) choices = run_tour_scheduling( + state, model_name, mandatory_tours, persons_merged, tdd_alts, tour_segment_col, - chunk_size, - trace_hh_id, ) - assign_in_place(tours, choices) - pipeline.replace_table("tours", tours) + assign_in_place( + tours, choices, state.settings.downcast_int, state.settings.downcast_float + ) + state.add_table("tours", tours) # updated df for tracing mandatory_tours = tours[tours.tour_category == "mandatory"] - tracing.dump_df( + state.tracing.dump_df( DUMP, tt.tour_map(persons_merged, mandatory_tours, tdd_alts), trace_label, "tour_map", ) - if trace_hh_id: - tracing.trace_df( + if state.settings.trace_hh_id: + state.tracing.trace_df( mandatory_tours, label=trace_label, slicer="person_id", diff --git a/activitysim/abm/models/mandatory_tour_frequency.py b/activitysim/abm/models/mandatory_tour_frequency.py index 727a591f0..a80b82904 100644 --- a/activitysim/abm/models/mandatory_tour_frequency.py +++ b/activitysim/abm/models/mandatory_tour_frequency.py @@ -1,78 +1,120 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +from typing import Any import pandas as pd -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing - -from .util import estimation -from .util.tour_frequency import process_mandatory_tours +from activitysim.abm.models.util.tour_frequency import process_mandatory_tours +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import ( + BaseLogitComponentSettings, + LogitComponentSettings, + PreprocessorSettings, +) logger = logging.getLogger(__name__) -def add_null_results(trace_label, mandatory_tour_frequency_settings): +def add_null_results(state, trace_label, mandatory_tour_frequency_settings): logger.info("Skipping %s: add_null_results", trace_label) - persons = inject.get_table("persons").to_frame() - persons["mandatory_tour_frequency"] = "" + persons = state.get_dataframe("persons") + persons["mandatory_tour_frequency"] = pd.categorical( + "", + categories=["", "work1", "work2", "school1", "school2", "work_and_school"], + ordered=False, + ) tours = pd.DataFrame() tours["tour_category"] = None tours["tour_type"] = None tours["person_id"] = None tours.index.name = "tour_id" - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) expressions.assign_columns( + state, df=persons, model_settings=mandatory_tour_frequency_settings.get("annotate_persons"), trace_label=tracing.extend_trace_label(trace_label, "annotate_persons"), ) - pipeline.replace_table("persons", persons) + state.add_table("persons", persons) + + +class MandatoryTourFrequencySettings(LogitComponentSettings): + """ + Settings for the `mandatory_tour_frequency` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + annotate_persons: PreprocessorSettings | None = None -@inject.step() -def mandatory_tour_frequency(persons_merged, chunk_size, trace_hh_id): +@workflow.step +def mandatory_tour_frequency( + state: workflow.State, + persons_merged: pd.DataFrame, + model_settings: MandatoryTourFrequencySettings | None = None, + model_settings_file_name: str = "mandatory_tour_frequency.yaml", + trace_label: str = "mandatory_tour_frequency", +) -> None: """ This model predicts the frequency of making mandatory trips (see the alternatives above) - these trips include work and school in some combination. """ - trace_label = "mandatory_tour_frequency" - model_settings_file_name = "mandatory_tour_frequency.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + trace_hh_id = state.settings.trace_hh_id - choosers = persons_merged.to_frame() + if model_settings is None: + model_settings = MandatoryTourFrequencySettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + + choosers = persons_merged # filter based on results of CDAP choosers = choosers[choosers.cdap_activity == "M"] logger.info("Running mandatory_tour_frequency with %d persons", len(choosers)) # - if no mandatory tours if choosers.shape[0] == 0: - add_null_results(trace_label, model_settings) + add_null_results(state, trace_label, model_settings) return # - preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_dict = {} expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_dict, trace_label=trace_label, ) - estimator = estimation.manager.begin_estimation("mandatory_tour_frequency") + estimator = estimation.manager.begin_estimation(state, "mandatory_tour_frequency") - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) nest_spec = config.get_logit_model_settings(model_settings) constants = config.get_model_constants(model_settings) @@ -84,11 +126,11 @@ def mandatory_tour_frequency(persons_merged, chunk_size, trace_hh_id): estimator.write_choosers(choosers) choices = simulate.simple_simulate( + state, choosers=choosers, spec=model_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="mandatory_tour_frequency", estimator=estimator, @@ -96,6 +138,10 @@ def mandatory_tour_frequency(persons_merged, chunk_size, trace_hh_id): # convert indexes to alternative names choices = pd.Series(model_spec.columns[choices.values], index=choices.index) + cat_type = pd.api.types.CategoricalDtype( + model_spec.columns.tolist() + [""], ordered=False + ) + choices = choices.astype(cat_type) if estimator: estimator.write_choices(choices) @@ -112,45 +158,50 @@ def mandatory_tour_frequency(persons_merged, chunk_size, trace_hh_id): the same as got non_mandatory_tours except trip types are "work" and "school" """ alternatives = simulate.read_model_alts( - "mandatory_tour_frequency_alternatives.csv", set_index="alt" + state, "mandatory_tour_frequency_alternatives.csv", set_index="alt" ) choosers["mandatory_tour_frequency"] = choices.reindex(choosers.index) mandatory_tours = process_mandatory_tours( - persons=choosers, mandatory_tour_frequency_alts=alternatives + state, persons=choosers, mandatory_tour_frequency_alts=alternatives + ) + + # convert purpose to pandas categoricals + purpose_type = pd.api.types.CategoricalDtype( + alternatives.columns.tolist() + ["univ", "home", "escort"], ordered=False ) + mandatory_tours["tour_type"] = mandatory_tours["tour_type"].astype(purpose_type) - tours = pipeline.extend_table("tours", mandatory_tours) - tracing.register_traceable_table("tours", mandatory_tours) - pipeline.get_rn_generator().add_channel("tours", mandatory_tours) + tours = state.extend_table("tours", mandatory_tours) + state.tracing.register_traceable_table("tours", mandatory_tours) + state.get_rn_generator().add_channel("tours", mandatory_tours) # - annotate persons - persons = inject.get_table("persons").to_frame() + persons = state.get_dataframe("persons") # need to reindex as we only handled persons with cdap_activity == 'M' - persons["mandatory_tour_frequency"] = ( - choices.reindex(persons.index).fillna("").astype(str) - ) + persons["mandatory_tour_frequency"] = choices.reindex(persons.index).fillna("") expressions.assign_columns( + state, df=persons, - model_settings=model_settings.get("annotate_persons"), + model_settings=model_settings.annotate_persons, trace_label=tracing.extend_trace_label(trace_label, "annotate_persons"), ) - pipeline.replace_table("persons", persons) + state.add_table("persons", persons) tracing.print_summary( "mandatory_tour_frequency", persons.mandatory_tour_frequency, value_counts=True ) if trace_hh_id: - tracing.trace_df( + state.tracing.trace_df( mandatory_tours, label="mandatory_tour_frequency.mandatory_tours", warn_if_empty=True, ) - tracing.trace_df( + state.tracing.trace_df( persons, label="mandatory_tour_frequency.persons", warn_if_empty=True ) diff --git a/activitysim/abm/models/non_mandatory_destination.py b/activitysim/abm/models/non_mandatory_destination.py index adfd4a098..496c734cd 100644 --- a/activitysim/abm/models/non_mandatory_destination.py +++ b/activitysim/abm/models/non_mandatory_destination.py @@ -1,52 +1,57 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd -from activitysim.core import config, inject, pipeline, simulate, tracing +from activitysim.abm.models.util import annotate, tour_destination +from activitysim.core import estimation, los, tracing, workflow +from activitysim.core.configuration.logit import TourLocationComponentSettings from activitysim.core.util import assign_in_place -from .util import estimation, tour_destination, annotate - - logger = logging.getLogger(__name__) -@inject.step() +@workflow.step def non_mandatory_tour_destination( - tours, persons_merged, network_los, chunk_size, trace_hh_id -): - + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + network_los: los.Network_LOS, + model_settings: TourLocationComponentSettings | None = None, + model_settings_file_name: str = "non_mandatory_tour_destination.yaml", + trace_label: str = "non_mandatory_tour_destination", +) -> None: """ Given the tour generation from the above, each tour needs to have a destination, so in this case tours are the choosers (with the associated person that's making the tour) """ - trace_label = "non_mandatory_tour_destination" - model_settings_file_name = "non_mandatory_tour_destination.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + if model_settings is None: + model_settings = TourLocationComponentSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + + trace_hh_id = state.settings.trace_hh_id - logsum_column_name = model_settings.get("DEST_CHOICE_LOGSUM_COLUMN_NAME") + logsum_column_name = model_settings.DEST_CHOICE_LOGSUM_COLUMN_NAME want_logsums = logsum_column_name is not None - sample_table_name = model_settings.get("DEST_CHOICE_SAMPLE_TABLE_NAME") + sample_table_name = model_settings.DEST_CHOICE_SAMPLE_TABLE_NAME want_sample_table = ( - config.setting("want_dest_choice_sample_tables") - and sample_table_name is not None + state.settings.want_dest_choice_sample_tables and sample_table_name is not None ) - tours = tours.to_frame() - - persons_merged = persons_merged.to_frame() - # choosers are tours - in a sense tours are choosing their destination non_mandatory_tours = tours[tours.tour_category == "non_mandatory"] # separating out pure escort school tours # they already have their destination set - if pipeline.is_table("school_escort_tours"): + if state.is_table("school_escort_tours"): nm_tour_index = non_mandatory_tours.index pure_school_escort_tours = non_mandatory_tours[ (non_mandatory_tours["school_esc_outbound"] == "pure_escort") @@ -60,21 +65,22 @@ def non_mandatory_tour_destination( tracing.no_results(trace_label) return - estimator = estimation.manager.begin_estimation("non_mandatory_tour_destination") + estimator = estimation.manager.begin_estimation( + state, "non_mandatory_tour_destination" + ) if estimator: estimator.write_coefficients(model_settings=model_settings) # estimator.write_spec(model_settings, tag='SAMPLE_SPEC') estimator.write_spec(model_settings, tag="SPEC") - estimator.set_alt_id(model_settings["ALT_DEST_COL_NAME"]) - estimator.write_table( - inject.get_injectable("size_terms"), "size_terms", append=False - ) + estimator.set_alt_id(model_settings.ALT_DEST_COL_NAME) estimator.write_table( - inject.get_table("land_use").to_frame(), "landuse", append=False + state.get_injectable("size_terms"), "size_terms", append=False ) + estimator.write_table(state.get_dataframe("land_use"), "landuse", append=False) estimator.write_model_settings(model_settings, model_settings_file_name) choices_df, save_sample_df = tour_destination.run_tour_destination( + state, non_mandatory_tours, persons_merged, want_logsums, @@ -82,8 +88,6 @@ def non_mandatory_tour_destination( model_settings, network_los, estimator, - chunk_size, - trace_hh_id, trace_label, ) @@ -98,33 +102,43 @@ def non_mandatory_tour_destination( non_mandatory_tours["destination"] = choices_df.choice # merging back in school escort tours and preserving index - if pipeline.is_table("school_escort_tours"): + if state.is_table("school_escort_tours"): non_mandatory_tours = pd.concat( [pure_school_escort_tours, non_mandatory_tours] ).set_index(nm_tour_index) - assign_in_place(tours, non_mandatory_tours[["destination"]]) + assign_in_place( + tours, + non_mandatory_tours[["destination"]], + state.settings.downcast_int, + state.settings.downcast_float, + ) if want_logsums: non_mandatory_tours[logsum_column_name] = choices_df["logsum"] - assign_in_place(tours, non_mandatory_tours[[logsum_column_name]]) + assign_in_place( + tours, + non_mandatory_tours[[logsum_column_name]], + state.settings.downcast_int, + state.settings.downcast_float, + ) assert all( ~tours["destination"].isna() ), f"Tours are missing destination: {tours[tours['destination'].isna()]}" - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) - if model_settings.get("annotate_tours"): - annotate.annotate_tours(model_settings, trace_label) + if model_settings.annotate_tours: + annotate.annotate_tours(state, model_settings, trace_label) if want_sample_table: assert len(save_sample_df.index.get_level_values(0).unique()) == len(choices_df) # save_sample_df.set_index(model_settings['ALT_DEST_COL_NAME'], append=True, inplace=True) - pipeline.extend_table(sample_table_name, save_sample_df) + state.extend_table(sample_table_name, save_sample_df) if trace_hh_id: - tracing.trace_df( + state.tracing.trace_df( tours[tours.tour_category == "non_mandatory"], label="non_mandatory_tour_destination", slicer="person_id", diff --git a/activitysim/abm/models/non_mandatory_scheduling.py b/activitysim/abm/models/non_mandatory_scheduling.py index 5b32c9550..4e444107b 100644 --- a/activitysim/abm/models/non_mandatory_scheduling.py +++ b/activitysim/abm/models/non_mandatory_scheduling.py @@ -1,33 +1,34 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd -from activitysim.core import config, expressions, inject, pipeline, simulate +from activitysim.abm.models.util.tour_scheduling import run_tour_scheduling from activitysim.core import timetable as tt -from activitysim.core import tracing +from activitysim.core import tracing, workflow from activitysim.core.util import assign_in_place -from .util.tour_scheduling import run_tour_scheduling logger = logging.getLogger(__name__) DUMP = False -@inject.step() +@workflow.step def non_mandatory_tour_scheduling( - tours, persons_merged, tdd_alts, chunk_size, trace_hh_id -): + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + tdd_alts: pd.DataFrame, +) -> None: """ This model predicts the departure time and duration of each activity for non-mandatory tours """ model_name = "non_mandatory_tour_scheduling" trace_label = model_name - - persons_merged = persons_merged.to_frame() - - tours = tours.to_frame() + trace_hh_id = state.settings.trace_hh_id non_mandatory_tours = tours[tours.tour_category == "non_mandatory"] # - if no mandatory_tours @@ -38,22 +39,23 @@ def non_mandatory_tour_scheduling( tour_segment_col = None choices = run_tour_scheduling( + state, model_name, non_mandatory_tours, persons_merged, tdd_alts, tour_segment_col, - chunk_size, - trace_hh_id, ) - assign_in_place(tours, choices) - pipeline.replace_table("tours", tours) + assign_in_place( + tours, choices, state.settings.downcast_int, state.settings.downcast_float + ) + state.add_table("tours", tours) # updated df for tracing non_mandatory_tours = tours[tours.tour_category == "non_mandatory"] - tracing.dump_df( + state.tracing.dump_df( DUMP, tt.tour_map(persons_merged, non_mandatory_tours, tdd_alts), trace_label, @@ -61,7 +63,7 @@ def non_mandatory_tour_scheduling( ) if trace_hh_id: - tracing.trace_df( + state.tracing.trace_df( non_mandatory_tours, label=trace_label, slicer="person_id", diff --git a/activitysim/abm/models/non_mandatory_tour_frequency.py b/activitysim/abm/models/non_mandatory_tour_frequency.py index 521f49c47..b300b0e88 100644 --- a/activitysim/abm/models/non_mandatory_tour_frequency.py +++ b/activitysim/abm/models/non_mandatory_tour_frequency.py @@ -1,33 +1,41 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +import warnings +from pathlib import Path +from typing import Any import numpy as np import pandas as pd +from activitysim.abm.models.util import annotate +from activitysim.abm.models.util.overlap import person_max_window +from activitysim.abm.models.util.school_escort_tours_trips import ( + recompute_tour_count_statistics, +) +from activitysim.abm.models.util.tour_frequency import process_non_mandatory_tours from activitysim.core import ( config, + estimation, expressions, - inject, logit, - pipeline, simulate, tracing, + workflow, ) +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import LogitComponentSettings from activitysim.core.interaction_simulate import interaction_simulate -from .util import estimation -from .util import annotate -from .util.school_escort_tours_trips import recompute_tour_count_statistics - -from .util.overlap import person_max_window -from .util.tour_frequency import process_non_mandatory_tours - logger = logging.getLogger(__name__) -def extension_probs(): - f = config.config_file_path("non_mandatory_tour_frequency_extension_probs.csv") +def extension_probs(state: workflow.State): + f = state.filesystem.get_config_file_path( + "non_mandatory_tour_frequency_extension_probs.csv" + ) df = pd.read_csv(f, comment="#") # convert cum probs to individual probs @@ -37,7 +45,13 @@ def extension_probs(): return df -def extend_tour_counts(persons, tour_counts, alternatives, trace_hh_id, trace_label): +def extend_tour_counts( + state: workflow.State, + persons: pd.DataFrame, + tour_counts: pd.DataFrame, + alternatives, + trace_label: str, +): """ extend tour counts based on a probability table @@ -55,7 +69,6 @@ def extend_tour_counts(persons, tour_counts, alternatives, trace_hh_id, trace_la alternatives alternatives from nmtv interaction_simulate only need this to know max possible frequency for a tour type - trace_hh_id trace_label Returns @@ -77,7 +90,7 @@ def extend_tour_counts(persons, tour_counts, alternatives, trace_hh_id, trace_la JOIN_COLUMNS = ["ptype", "has_mandatory_tour", "has_joint_tour"] TOUR_TYPE_COL = "nonmandatory_tour_type" - probs_spec = extension_probs() + probs_spec = extension_probs(state) persons = persons[JOIN_COLUMNS] # only extend if there are 1 - 4 non_mandatory tours to start with @@ -86,10 +99,11 @@ def extend_tour_counts(persons, tour_counts, alternatives, trace_hh_id, trace_la logger.info("extend_tour_counts - no persons eligible for tour_count extension") return tour_counts - have_trace_targets = trace_hh_id and tracing.has_trace_targets(extend_tour_counts) + have_trace_targets = state.settings.trace_hh_id and state.tracing.has_trace_targets( + extend_tour_counts + ) for i, tour_type in enumerate(alternatives.columns): - i_tour_type = i + 1 # (probs_spec nonmandatory_tour_type column is 1-based) tour_type_trace_label = tracing.extend_trace_label(trace_label, tour_type) @@ -113,6 +127,7 @@ def extend_tour_counts(persons, tour_counts, alternatives, trace_hh_id, trace_la # - random choice of extension magnitude based on relative probs choices, rands = logit.make_choices( + state, choosers[PROBABILITY_COLUMNS], trace_label=tour_type_trace_label, trace_choosers=choosers, @@ -123,12 +138,12 @@ def extend_tour_counts(persons, tour_counts, alternatives, trace_hh_id, trace_la tour_counts.loc[choices.index, tour_type] += choices if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( choices, tracing.extend_trace_label(tour_type_trace_label, "choices"), columns=[None, "choice"], ) - tracing.trace_df( + state.tracing.trace_df( rands, tracing.extend_trace_label(tour_type_trace_label, "rands"), columns=[None, "rand"], @@ -137,8 +152,42 @@ def extend_tour_counts(persons, tour_counts, alternatives, trace_hh_id, trace_la return tour_counts -@inject.step() -def non_mandatory_tour_frequency(persons, persons_merged, chunk_size, trace_hh_id): +class NonMandatoryTourSpecSegment(PydanticReadable): + NAME: str + PTYPE: int + COEFFICIENTS: Path + + +class NonMandatoryTourFrequencySettings(LogitComponentSettings): + """ + Settings for the `non_mandatory_tour_frequency` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + SEGMENT_COL: str = "ptype" + # not used anymore TODO remove if needed + + SPEC_SEGMENTS: list[NonMandatoryTourSpecSegment] = [] + # check the above + + annotate_persons: PreprocessorSettings | None = None + """Preprocessor settings to annotate persons""" + + annotate_tours: PreprocessorSettings | None = None + """Preprocessor settings to annotate tours""" + + +@workflow.step +def non_mandatory_tour_frequency( + state: workflow.State, + persons: pd.DataFrame, + persons_merged: pd.DataFrame, + model_settings: NonMandatoryTourFrequencySettings | None = None, + model_settings_file_name: str = "non_mandatory_tour_frequency.yaml", + trace_label: str = "non_mandatory_tour_frequency", +) -> None: """ This model predicts the frequency of making non-mandatory trips (alternatives for this model come from a separate csv file which is @@ -146,29 +195,42 @@ def non_mandatory_tour_frequency(persons, persons_merged, chunk_size, trace_hh_i othdiscr, eatout, and social trips in various combination. """ - trace_label = "non_mandatory_tour_frequency" - model_settings_file_name = "non_mandatory_tour_frequency.yaml" - - model_settings = config.read_model_settings(model_settings_file_name) + if model_settings is None: + model_settings = NonMandatoryTourFrequencySettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - # FIXME kind of tacky both that we know to add this here and del it below - # 'tot_tours' is used in model_spec expressions alternatives = simulate.read_model_alts( - "non_mandatory_tour_frequency_alternatives.csv", set_index=None + state, "non_mandatory_tour_frequency_alternatives.csv", set_index=None ) - alternatives["tot_tours"] = alternatives.sum(axis=1) + if "tot_tours" not in alternatives.columns: + # add a column for total tours + alternatives["tot_tours"] = alternatives.sum(axis=1) + warnings.warn( + "The 'tot_tours' column may not be automatically added in the future.", + FutureWarning, + ) + else: + # tot_tours already exists, check if it is consistent with legacy behavior + if not (alternatives["tot_tours"] == alternatives.sum(axis=1)).all(): + warnings.warn( + "The 'tot_tours' column in non_mandatory_tour_frequency_alternatives.csv " + "does not match the sum of the other columns.", + RuntimeWarning, + ) # filter based on results of CDAP - choosers = persons_merged.to_frame() + choosers = persons_merged choosers = choosers[choosers.cdap_activity.isin(["M", "N"])] # - preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - - locals_dict = {"person_max_window": person_max_window} + locals_dict = {"person_max_window": lambda x: person_max_window(state, x)} expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -179,15 +241,14 @@ def non_mandatory_tour_frequency(persons, persons_merged, chunk_size, trace_hh_i constants = config.get_model_constants(model_settings) - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - spec_segments = model_settings.get("SPEC_SEGMENTS", {}) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + spec_segments = model_settings.SPEC_SEGMENTS # segment by person type and pick the right spec for each person type choices_list = [] for segment_settings in spec_segments: - - segment_name = segment_settings["NAME"] - ptype = segment_settings["PTYPE"] + segment_name = segment_settings.NAME + ptype = segment_settings.PTYPE # pick the spec column for the segment segment_spec = model_spec[[segment_name]] @@ -203,12 +264,12 @@ def non_mandatory_tour_frequency(persons, persons_merged, chunk_size, trace_hh_i continue estimator = estimation.manager.begin_estimation( - model_name=segment_name, bundle_name="non_mandatory_tour_frequency" + state, model_name=segment_name, bundle_name="non_mandatory_tour_frequency" ) - coefficients_df = simulate.read_model_coefficients(segment_settings) + coefficients_df = state.filesystem.read_model_coefficients(segment_settings) segment_spec = simulate.eval_coefficients( - segment_spec, coefficients_df, estimator + state, segment_spec, coefficients_df, estimator ) if estimator: @@ -235,15 +296,16 @@ def non_mandatory_tour_frequency(persons, persons_merged, chunk_size, trace_hh_i estimator.set_chooser_id(chooser_segment.index.name) - log_alt_losers = config.setting("log_alt_losers", False) + log_alt_losers = state.settings.log_alt_losers choices = interaction_simulate( + state, chooser_segment, alternatives, spec=segment_spec, log_alt_losers=log_alt_losers, locals_d=constants, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_label="non_mandatory_tour_frequency.%s" % segment_name, trace_choice_name="non_mandatory_tour_frequency", estimator=estimator, @@ -266,7 +328,6 @@ def non_mandatory_tour_frequency(persons, persons_merged, chunk_size, trace_hh_i choices = pd.concat(choices_list).sort_index() # add non_mandatory_tour_frequency column to persons - persons = persons.to_frame() # we expect there to be an alt with no tours - which we can use to backfill non-travelers no_tours_alt = (alternatives.sum(axis=1) == 0).index[0] # need to reindex as we only handled persons with cdap_activity in ['M', 'N'] @@ -299,10 +360,10 @@ def non_mandatory_tour_frequency(persons, persons_merged, chunk_size, trace_hh_i # - extend_tour_counts - probabalistic extended_tour_counts = extend_tour_counts( + state, choosers, modeled_tour_counts.copy(), alternatives, - trace_hh_id, tracing.extend_trace_label(trace_label, "extend_tour_counts"), ) @@ -338,11 +399,20 @@ def non_mandatory_tour_frequency(persons, persons_merged, chunk_size, trace_hh_i """ create the non_mandatory tours based on extended_tour_counts """ - non_mandatory_tours = process_non_mandatory_tours(persons, extended_tour_counts) + non_mandatory_tours = process_non_mandatory_tours( + state, persons, extended_tour_counts + ) assert len(non_mandatory_tours) == extended_tour_counts.sum().sum() - if estimator: + # convert purpose to pandas categoricals + purpose_type = pd.api.types.CategoricalDtype( + alternatives.columns.tolist(), ordered=False + ) + non_mandatory_tours["tour_type"] = non_mandatory_tours["tour_type"].astype( + purpose_type + ) + if estimator: # make sure they created the right tours survey_tours = estimation.manager.get_survey_table("tours").sort_index() non_mandatory_survey_tours = survey_tours[ @@ -374,25 +444,26 @@ def non_mandatory_tour_frequency(persons, persons_merged, chunk_size, trace_hh_i assert not tours_differ.any() - pipeline.extend_table("tours", non_mandatory_tours) + state.extend_table("tours", non_mandatory_tours) - tracing.register_traceable_table("tours", non_mandatory_tours) - pipeline.get_rn_generator().add_channel("tours", non_mandatory_tours) + state.tracing.register_traceable_table("tours", non_mandatory_tours) + state.get_rn_generator().add_channel("tours", non_mandatory_tours) - if pipeline.is_table("school_escort_tours"): + if state.is_table("school_escort_tours"): # need to re-compute tour frequency statistics to account for school escort tours - recompute_tour_count_statistics() + recompute_tour_count_statistics(state) - if model_settings.get("annotate_tours"): - annotate.annotate_tours(model_settings, trace_label) + if model_settings.annotate_tours: + annotate.annotate_tours(state, model_settings, trace_label) expressions.assign_columns( + state, df=persons, - model_settings=model_settings.get("annotate_persons"), + model_settings=model_settings.annotate_persons, trace_label=trace_label, ) - pipeline.replace_table("persons", persons) + state.add_table("persons", persons) tracing.print_summary( "non_mandatory_tour_frequency", @@ -400,18 +471,18 @@ def non_mandatory_tour_frequency(persons, persons_merged, chunk_size, trace_hh_i value_counts=True, ) - if trace_hh_id: - tracing.trace_df( + if state.settings.trace_hh_id: + state.tracing.trace_df( non_mandatory_tours, label="non_mandatory_tour_frequency.non_mandatory_tours", warn_if_empty=True, ) - tracing.trace_df( + state.tracing.trace_df( choosers, label="non_mandatory_tour_frequency.choosers", warn_if_empty=True ) - tracing.trace_df( + state.tracing.trace_df( persons, label="non_mandatory_tour_frequency.annotated_persons", warn_if_empty=True, diff --git a/activitysim/abm/models/parking_location_choice.py b/activitysim/abm/models/parking_location_choice.py index a87703b8b..2c9b5097c 100644 --- a/activitysim/abm/models/parking_location_choice.py +++ b/activitysim/abm/models/parking_location_choice.py @@ -1,6 +1,9 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +from pathlib import Path import numpy as np import pandas as pd @@ -8,24 +11,24 @@ from activitysim.core import ( config, expressions, - inject, logit, - pipeline, + los, simulate, tracing, + workflow, ) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import LogitComponentSettings from activitysim.core.interaction_sample_simulate import interaction_sample_simulate from activitysim.core.tracing import print_elapsed_time from activitysim.core.util import assign_in_place -from .util import estimation - logger = logging.getLogger(__name__) NO_DESTINATION = -1 -def wrap_skims(model_settings): +def wrap_skims(state: workflow.State, model_settings: ParkingLocationSettings): """ wrap skims of trip destination using origin, dest column names from model settings. Various of these are used by destination_sample, compute_logsums, and destination_simulate @@ -50,13 +53,13 @@ def wrap_skims(model_settings): dict containing skims, keyed by canonical names relative to tour orientation """ - network_los = inject.get_injectable("network_los") + network_los = state.get_injectable("network_los") skim_dict = network_los.get_default_skim_dict() - origin = model_settings["TRIP_ORIGIN"] - park_zone = model_settings["ALT_DEST_COL_NAME"] - destination = model_settings["TRIP_DESTINATION"] - time_period = model_settings["TRIP_DEPARTURE_PERIOD"] + origin = model_settings.TRIP_ORIGIN + park_zone = model_settings.ALT_DEST_COL_NAME + destination = model_settings.TRIP_DESTINATION + time_period = model_settings.TRIP_DEPARTURE_PERIOD skims = { "odt_skims": skim_dict.wrap_3d( @@ -80,9 +83,12 @@ def wrap_skims(model_settings): return skims -def get_spec_for_segment(model_settings, spec_name, segment): - - omnibus_spec = simulate.read_model_spec(file_name=model_settings[spec_name]) +def get_spec_for_segment( + state: workflow.State, model_settings: ParkingLocationSettings, segment: str +): + omnibus_spec = state.filesystem.read_model_spec( + file_name=model_settings.SPECIFICATION + ) spec = omnibus_spec[[segment]] @@ -94,10 +100,11 @@ def get_spec_for_segment(model_settings, spec_name, segment): def parking_destination_simulate( + state: workflow.State, segment_name, trips, destination_sample, - model_settings, + model_settings: ParkingLocationSettings, skims, chunk_size, trace_hh_id, @@ -112,16 +119,18 @@ def parking_destination_simulate( choices - pandas.Series destination alt chosen """ - trace_label = tracing.extend_trace_label(trace_label, "trip_destination_simulate") + trace_label = tracing.extend_trace_label( + trace_label, "parking_destination_simulate" + ) - spec = get_spec_for_segment(model_settings, "SPECIFICATION", segment_name) + spec = get_spec_for_segment(state, model_settings, segment_name) - coefficients_df = simulate.read_model_coefficients(model_settings) - spec = simulate.eval_coefficients(spec, coefficients_df, None) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + spec = simulate.eval_coefficients(state, spec, coefficients_df, None) - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME - logger.info("Running trip_destination_simulate with %d trips", len(trips)) + logger.info("Running parking_destination_simulate with %d trips", len(trips)) locals_dict = config.get_model_constants(model_settings).copy() locals_dict.update(skims) @@ -129,6 +138,7 @@ def parking_destination_simulate( locals_dict["PARKING"] = skims["op_skims"].dest_key parking_locations = interaction_sample_simulate( + state, choosers=trips, alternatives=destination_sample, spec=spec, @@ -155,30 +165,30 @@ def parking_destination_simulate( def choose_parking_location( + state: workflow.State, segment_name, trips, alternatives, - model_settings, + model_settings: ParkingLocationSettings, want_sample_table, skims, chunk_size, trace_hh_id, trace_label, ): - logger.info("choose_parking_location %s with %d trips", trace_label, trips.shape[0]) t0 = print_elapsed_time() - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME destination_sample = logit.interaction_dataset( - trips, alternatives, alt_index_id=alt_dest_col_name + state, trips, alternatives, alt_index_id=alt_dest_col_name ) destination_sample.index = np.repeat(trips.index.values, len(alternatives)) destination_sample.index.name = trips.index.name - # # - trip_destination_simulate destinations = parking_destination_simulate( + state, segment_name=segment_name, trips=trips, destination_sample=destination_sample, @@ -192,7 +202,7 @@ def choose_parking_location( if want_sample_table: # FIXME - sample_table destination_sample.set_index( - model_settings["ALT_DEST_COL_NAME"], append=True, inplace=True + model_settings.ALT_DEST_COL_NAME, append=True, inplace=True ) else: destination_sample = None @@ -203,7 +213,8 @@ def choose_parking_location( def run_parking_destination( - model_settings, + state: workflow.State, + model_settings: ParkingLocationSettings, trips, land_use, chunk_size, @@ -211,15 +222,13 @@ def run_parking_destination( trace_label, fail_some_trips_for_testing=False, ): + chooser_filter_column = model_settings.CHOOSER_FILTER_COLUMN_NAME + chooser_segment_column = model_settings.CHOOSER_SEGMENT_COLUMN_NAME - chooser_filter_column = model_settings.get("CHOOSER_FILTER_COLUMN_NAME") - chooser_segment_column = model_settings.get("CHOOSER_SEGMENT_COLUMN_NAME") - - parking_location_column_name = model_settings["ALT_DEST_COL_NAME"] - sample_table_name = model_settings.get("DEST_CHOICE_SAMPLE_TABLE_NAME") + parking_location_column_name = model_settings.ALT_DEST_COL_NAME + sample_table_name = model_settings.DEST_CHOICE_SAMPLE_TABLE_NAME want_sample_table = ( - config.setting("want_dest_choice_sample_tables") - and sample_table_name is not None + state.settings.want_dest_choice_sample_tables and sample_table_name is not None ) choosers = trips[trips[chooser_filter_column]] @@ -228,9 +237,9 @@ def run_parking_destination( # Placeholder for trips without a parking choice trips[parking_location_column_name] = -1 - skims = wrap_skims(model_settings) + skims = wrap_skims(state, model_settings) - alt_column_filter_name = model_settings.get("ALTERNATIVE_FILTER_COLUMN_NAME") + alt_column_filter_name = model_settings.ALTERNATIVE_FILTER_COLUMN_NAME alternatives = land_use[land_use[alt_column_filter_name]] alternatives.index.name = parking_location_column_name @@ -244,6 +253,7 @@ def run_parking_destination( continue choices, destination_sample = choose_parking_location( + state, segment_name, chooser_segment, alternatives, @@ -266,7 +276,12 @@ def run_parking_destination( if fail_some_trips_for_testing: parking_df = parking_df.drop(parking_df.index[0]) - assign_in_place(trips, parking_df.to_frame(parking_location_column_name)) + assign_in_place( + trips, + parking_df.to_frame(parking_location_column_name), + state.settings.downcast_int, + state.settings.downcast_float, + ) trips[parking_location_column_name] = trips[ parking_location_column_name ].fillna(-1) @@ -278,29 +293,79 @@ def run_parking_destination( return trips[parking_location_column_name], save_sample_df -@inject.step() +class ParkingLocationSettings(LogitComponentSettings, extra="forbid"): + """ + Settings for the `parking_location` component. + """ + + SPECIFICATION: Path | None = None + SPEC: None = None + """The school escort model does not use this setting, see `SPECIFICATION`.""" + + PREPROCESSOR: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + ALT_DEST_COL_NAME: str = "parking_zone" + """Parking destination column name.""" + + TRIP_DEPARTURE_PERIOD: str = "stop_period" + """Trip departure time period.""" + + PARKING_LOCATION_SAMPLE_TABLE_NAME: str | None = None + + TRIP_ORIGIN: str = "origin" + TRIP_DESTINATION: str = "destination" + + CHOOSER_FILTER_COLUMN_NAME: str + """A boolean column to filter choosers. + + If this column evaluates as True the row will be kept. + """ + + CHOOSER_SEGMENT_COLUMN_NAME: str + + DEST_CHOICE_SAMPLE_TABLE_NAME: str | None = None + + ALTERNATIVE_FILTER_COLUMN_NAME: str + + SEGMENTS: list[str] | None = None + + +@workflow.step def parking_location( - trips, trips_merged, land_use, network_los, chunk_size, trace_hh_id -): + state: workflow.State, + trips: pd.DataFrame, + trips_merged: pd.DataFrame, + land_use: pd.DataFrame, + network_los: los.Network_LOS, + model_settings: ParkingLocationSettings | None = None, + model_settings_file_name: str = "parking_location_choice.yaml", + trace_label: str = "parking_location", +) -> None: """ Given a set of trips, each trip needs to have a parking location if it is eligible for remote parking. """ - trace_label = "parking_location" - model_settings = config.read_model_settings("parking_location_choice.yaml") - alt_destination_col_name = model_settings["ALT_DEST_COL_NAME"] + if model_settings is None: + model_settings = ParkingLocationSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + + trace_hh_id = state.settings.trace_hh_id + alt_destination_col_name = model_settings.ALT_DEST_COL_NAME - preprocessor_settings = model_settings.get("PREPROCESSOR", None) + preprocessor_settings = model_settings.PREPROCESSOR - trips_df = trips.to_frame() - trips_merged_df = trips_merged.to_frame() - land_use_df = land_use.to_frame() + trips_df = trips + trips_merged_df = trips_merged + land_use_df = land_use - proposed_trip_departure_period = model_settings["TRIP_DEPARTURE_PERIOD"] + proposed_trip_departure_period = model_settings.TRIP_DEPARTURE_PERIOD # TODO: the number of skim time periods should be more readily available than this n_skim_time_periods = np.unique( - network_los.los_settings["skim_time_periods"]["labels"] + network_los.los_settings.skim_time_periods.labels ).size if trips_merged_df[proposed_trip_departure_period].max() > n_skim_time_periods: # max proposed_trip_departure_period is out of range, @@ -308,9 +373,9 @@ def parking_location( if "trip_period" not in trips_merged_df: # TODO: resolve this to the skim time period index not the label, it will be faster trips_merged_df["trip_period"] = network_los.skim_time_period_label( - trips_merged_df[proposed_trip_departure_period] + trips_merged_df[proposed_trip_departure_period], as_cat=True ) - model_settings["TRIP_DEPARTURE_PERIOD"] = "trip_period" + model_settings.TRIP_DEPARTURE_PERIOD = "trip_period" locals_dict = {"network_los": network_los} @@ -321,6 +386,7 @@ def parking_location( if preprocessor_settings: expressions.assign_columns( + state, df=trips_merged_df, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -328,20 +394,26 @@ def parking_location( ) parking_locations, save_sample_df = run_parking_destination( + state, model_settings, trips_merged_df, land_use_df, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_hh_id=trace_hh_id, trace_label=trace_label, ) - assign_in_place(trips_df, parking_locations.to_frame(alt_destination_col_name)) + assign_in_place( + trips_df, + parking_locations.to_frame(alt_destination_col_name), + state.settings.downcast_int, + state.settings.downcast_float, + ) - pipeline.replace_table("trips", trips_df) + state.add_table("trips", trips_df) if trace_hh_id: - tracing.trace_df( + state.tracing.trace_df( trips_df, label=trace_label, slicer="trip_id", @@ -354,14 +426,12 @@ def parking_location( trips_df[trips_df.trip_num < trips_df.trip_count] ) - sample_table_name = model_settings.get("PARKING_LOCATION_SAMPLE_TABLE_NAME") + sample_table_name = model_settings.PARKING_LOCATION_SAMPLE_TABLE_NAME assert sample_table_name is not None - logger.info( - "adding %s samples to %s" % (len(save_sample_df), sample_table_name) - ) + logger.info(f"adding {len(save_sample_df)} samples to {sample_table_name}") # lest they try to put tour samples into the same table - if pipeline.is_table(sample_table_name): + if state.is_table(sample_table_name): raise RuntimeError("sample table %s already exists" % sample_table_name) - pipeline.extend_table(sample_table_name, save_sample_df) + state.extend_table(sample_table_name, save_sample_df) diff --git a/activitysim/abm/models/school_escorting.py b/activitysim/abm/models/school_escorting.py index 1b5a97fc9..ed4e15bb3 100644 --- a/activitysim/abm/models/school_escorting.py +++ b/activitysim/abm/models/school_escorting.py @@ -1,16 +1,27 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +from typing import Any import numpy as np import pandas as pd -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing +from activitysim.abm.models.util import school_escort_tours_trips +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import BaseLogitComponentSettings from activitysim.core.interaction_simulate import interaction_simulate from activitysim.core.util import reindex -from .util import estimation, school_escort_tours_trips - logger = logging.getLogger(__name__) # setting global defaults for max number of escortees and escortees in model @@ -18,7 +29,9 @@ NUM_CHAPERONES = 2 -def determine_escorting_participants(choosers, persons, model_settings): +def determine_escorting_participants( + choosers: pd.DataFrame, persons: pd.DataFrame, model_settings: SchoolEscortSettings +): """ Determining which persons correspond to chauffer 1..n and escortee 1..n. Chauffers are those with the highest weight given by: @@ -27,15 +40,15 @@ def determine_escorting_participants(choosers, persons, model_settings): """ global NUM_ESCORTEES global NUM_CHAPERONES - NUM_ESCORTEES = model_settings.get("NUM_ESCORTEES", NUM_ESCORTEES) - NUM_CHAPERONES = model_settings.get("NUM_CHAPERONES", NUM_CHAPERONES) + NUM_ESCORTEES = model_settings.NUM_ESCORTEES + NUM_CHAPERONES = model_settings.NUM_CHAPERONES - ptype_col = model_settings.get("PERSONTYPE_COLUMN", "ptype") - sex_col = model_settings.get("GENDER_COLUMN", "sex") - age_col = model_settings.get("AGE_COLUMN", "age") + ptype_col = model_settings.PERSONTYPE_COLUMN + sex_col = model_settings.GENDER_COLUMN + age_col = model_settings.AGE_COLUMN - escortee_age_cutoff = model_settings.get("ESCORTEE_AGE_CUTOFF", 16) - chaperone_age_cutoff = model_settings.get("CHAPERONE_AGE_CUTOFF", 18) + escortee_age_cutoff = model_settings.ESCORTEE_AGE_CUTOFF + chaperone_age_cutoff = model_settings.CHAPERONE_AGE_CUTOFF escortees = persons[ persons.is_student @@ -45,9 +58,9 @@ def determine_escorting_participants(choosers, persons, model_settings): households_with_escortees = escortees["household_id"] # can specify different weights to determine chaperones - persontype_weight = model_settings.get("PERSON_WEIGHT", 100) - gender_weight = model_settings.get("PERSON_WEIGHT", 10) - age_weight = model_settings.get("AGE_WEIGHT", 1) + persontype_weight = model_settings.PERSON_WEIGHT + gender_weight = model_settings.GENDER_WEIGHT + age_weight = model_settings.AGE_WEIGHT # can we move all of these to a config file? chaperones = persons[ @@ -56,9 +69,9 @@ def determine_escorting_participants(choosers, persons, model_settings): ] chaperones["chaperone_weight"] = ( - (persontype_weight * chaperones[ptype_col]) - + (gender_weight * np.where(chaperones[sex_col] == 1, 1, 2)) - + (age_weight * np.where(chaperones[age_col] > 25, 1, 0)) + (persontype_weight * chaperones[ptype_col].astype("int64")) + + (gender_weight * np.where(chaperones[sex_col].astype("int64") == 1, 1, 2)) + + (age_weight * np.where(chaperones[age_col].astype("int64") > 25, 1, 0)) ) chaperones["chaperone_num"] = ( @@ -93,7 +106,7 @@ def determine_escorting_participants(choosers, persons, model_settings): return choosers, participant_columns -def check_alts_consistency(alts): +def check_alts_consistency(alts: pd.DataFrame): """ Checking to ensure that the alternatives file is consistent with the number of chaperones and escortees set in the model settings. @@ -108,7 +121,9 @@ def check_alts_consistency(alts): return -def add_prev_choices_to_choosers(choosers, choices, alts, stage): +def add_prev_choices_to_choosers( + choosers: pd.DataFrame, choices: pd.Series, alts: pd.DataFrame, stage: str +) -> pd.DataFrame: # adding choice details to chooser table escorting_choice = "school_escorting_" + stage choosers[escorting_choice] = choices @@ -211,6 +226,14 @@ def create_school_escorting_bundles_table(choosers, tours, stage): ) bundles["bundle_num"] = bundles.groupby("household_id").cumcount() + 1 + # school escorting direction category + escort_direction_cat = pd.api.types.CategoricalDtype( + ["outbound", "inbound"], ordered=False + ) + bundles["school_escort_direction"] = bundles["school_escort_direction"].astype( + escort_direction_cat + ) + # initialize values bundles["chauf_type_num"] = 0 @@ -276,9 +299,13 @@ def create_school_escorting_bundles_table(choosers, tours, stage): # odd chauf_type_num means ride share, even means pure escort # this comes from the way the alternatives file is constructed where chauf_id is # incremented for each possible chauffeur and for each tour type + escort_type_cat = pd.api.types.CategoricalDtype( + ["pure_escort", "ride_share"], ordered=False + ) bundles["escort_type"] = np.where( bundles["chauf_type_num"].mod(2) == 1, "ride_share", "pure_escort" ) + bundles["escort_type"] = bundles["escort_type"].astype(escort_type_cat) # This is just pulled from the pre-processor. Will break if removed or renamed in pre-processor # I think this is still a better implmentation than re-calculating here... @@ -326,10 +353,73 @@ def create_school_escorting_bundles_table(choosers, tours, stage): return bundles -@inject.step() +class SchoolEscortSettings(BaseLogitComponentSettings): + """ + Settings for the `telecommute_frequency` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + ALTS: Any + + NUM_ESCORTEES: int = 3 + NUM_CHAPERONES: int = 2 + + PERSONTYPE_COLUMN: str = "ptype" + GENDER_COLUMN: str = "sex" + AGE_COLUMN: str = "age" + + ESCORTEE_AGE_CUTOFF: int = 16 + CHAPERONE_AGE_CUTOFF: int = 18 + + PERSON_WEIGHT: float = 100.0 + GENDER_WEIGHT: float = 10.0 + AGE_WEIGHT: float = 1.0 + + sharrow_skip: bool | dict[str, bool] = False + """Setting to skip sharrow. + + Sharrow can be skipped (or not) for all school escorting stages by giving + simply true or false. Alternatively, it can be skipped only for particular + stages by giving a mapping of stage name to skipping. For example: + + ```yaml + sharrow_skip: + OUTBOUND: true + INBOUND: false + OUTBOUND_COND: true + ``` + """ + + SIMULATE_CHOOSER_COLUMNS: list[str] | None = None + + SPEC: None = None + """The school escort model does not use this setting.""" + + OUTBOUND_SPEC: str = "school_escorting_outbound.csv" + OUTBOUND_COEFFICIENTS: str = "school_escorting_coefficients_outbound.csv" + INBOUND_SPEC: str = "school_escorting_inbound.csv" + INBOUND_COEFFICIENTS: str = "school_escorting_coefficients_inbound.csv" + OUTBOUND_COND_SPEC: str = "school_escorting_outbound_cond.csv" + OUTBOUND_COND_COEFFICIENTS: str = "school_escorting_coefficients_outbound_cond.csv" + + preprocessor_outbound: PreprocessorSettings | None = None + preprocessor_inbound: PreprocessorSettings | None = None + preprocessor_outbound_cond: PreprocessorSettings | None = None + + +@workflow.step def school_escorting( - households, households_merged, persons, tours, chunk_size, trace_hh_id -): + state: workflow.State, + households: pd.DataFrame, + households_merged: pd.DataFrame, + persons: pd.DataFrame, + tours: pd.DataFrame, + model_settings: SchoolEscortSettings | None = None, + model_settings_file_name: str = "school_escorting.yaml", + trace_label: str = "school_escorting_simulate", +) -> None: """ school escorting model @@ -353,16 +443,15 @@ def school_escorting( - timetable to avoid joint tours scheduled over school escort tours """ - trace_label = "school_escorting_simulate" - model_settings_file_name = "school_escorting.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + if model_settings is None: + model_settings = SchoolEscortSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - persons = persons.to_frame() - households = households.to_frame() - households_merged = households_merged.to_frame() - tours = tours.to_frame() + trace_hh_id = state.settings.trace_hh_id - alts = simulate.read_model_alts(model_settings["ALTS"], set_index="Alt") + alts = simulate.read_model_alts(state, model_settings.ALTS, set_index="Alt") households_merged, participant_columns = determine_escorting_participants( households_merged, persons, model_settings @@ -379,21 +468,23 @@ def school_escorting( choices = None for stage_num, stage in enumerate(school_escorting_stages): stage_trace_label = trace_label + "_" + stage - estimator = estimation.manager.begin_estimation("school_escorting_" + stage) + estimator = estimation.manager.begin_estimation( + state, "school_escorting_" + stage + ) - model_spec_raw = simulate.read_model_spec( - file_name=model_settings[stage.upper() + "_SPEC"] + model_spec_raw = state.filesystem.read_model_spec( + file_name=getattr(model_settings, stage.upper() + "_SPEC") ) - coefficients_df = simulate.read_model_coefficients( - file_name=model_settings[stage.upper() + "_COEFFICIENTS"] + coefficients_df = state.filesystem.read_model_coefficients( + file_name=getattr(model_settings, stage.upper() + "_COEFFICIENTS") ) model_spec = simulate.eval_coefficients( - model_spec_raw, coefficients_df, estimator + state, model_spec_raw, coefficients_df, estimator ) # allow for skipping sharrow entirely in this model with `sharrow_skip: true` # or skipping stages selectively with a mapping of the stages to skip - sharrow_skip = model_settings.get("sharrow_skip", False) + sharrow_skip = model_settings.sharrow_skip stage_sharrow_skip = False # default is false unless set below if sharrow_skip: if isinstance(sharrow_skip, dict): @@ -406,7 +497,7 @@ def school_escorting( locals_dict.pop("_sharrow_skip", None) # reduce memory by limiting columns if selected columns are supplied - chooser_columns = model_settings.get("SIMULATE_CHOOSER_COLUMNS", None) + chooser_columns = model_settings.SIMULATE_CHOOSER_COLUMNS if chooser_columns is not None: chooser_columns = chooser_columns + participant_columns choosers = households_merged[chooser_columns] @@ -423,9 +514,10 @@ def school_escorting( logger.info("Running %s with %d households", stage_trace_label, len(choosers)) - preprocessor_settings = model_settings.get("preprocessor_" + stage, None) + preprocessor_settings = getattr(model_settings, "preprocessor_" + stage, None) if preprocessor_settings: expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -438,15 +530,16 @@ def school_escorting( estimator.write_coefficients(coefficients_df, model_settings) estimator.write_choosers(choosers) - log_alt_losers = config.setting("log_alt_losers", False) + log_alt_losers = state.settings.log_alt_losers choices = interaction_simulate( + state, choosers=choosers, alternatives=alts, spec=model_spec, log_alt_losers=log_alt_losers, locals_d=locals_dict, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_label=stage_trace_label, trace_choice_name="school_escorting_" + "stage", estimator=estimator, @@ -470,7 +563,9 @@ def school_escorting( ) if trace_hh_id: - tracing.trace_df(households, label=escorting_choice, warn_if_empty=True) + state.tracing.trace_df( + households, label=escorting_choice, warn_if_empty=True + ) if stage_num >= 1: choosers["Alt"] = choices @@ -493,7 +588,7 @@ def school_escorting( ) school_escort_tours = school_escort_tours_trips.create_pure_school_escort_tours( - escort_bundles + state, escort_bundles ) chauf_tour_id_map = { v: k for k, v in school_escort_tours["bundle_id"].to_dict().items() @@ -506,36 +601,43 @@ def school_escorting( tours = school_escort_tours_trips.add_pure_escort_tours(tours, school_escort_tours) tours = school_escort_tours_trips.process_tours_after_escorting_model( - escort_bundles, tours + state, escort_bundles, tours ) school_escort_trips = school_escort_tours_trips.create_school_escort_trips( escort_bundles ) + school_escort_trips["primary_purpose"] = school_escort_trips[ + "primary_purpose" + ].astype(state.get_dataframe("tours")["tour_type"].dtype) + school_escort_trips["purpose"] = school_escort_trips["purpose"].astype( + state.get_dataframe("tours")["tour_type"].dtype + ) + # update pipeline - pipeline.replace_table("households", households) - pipeline.replace_table("tours", tours) - pipeline.get_rn_generator().drop_channel("tours") - pipeline.get_rn_generator().add_channel("tours", tours) - pipeline.replace_table("escort_bundles", escort_bundles) + state.add_table("households", households) + state.add_table("tours", tours) + state.get_rn_generator().drop_channel("tours") + state.get_rn_generator().add_channel("tours", tours) + state.add_table("escort_bundles", escort_bundles) # save school escorting tours and trips in pipeline so we can overwrite results from downstream models - pipeline.replace_table("school_escort_tours", school_escort_tours) - pipeline.replace_table("school_escort_trips", school_escort_trips) + state.add_table("school_escort_tours", school_escort_tours) + state.add_table("school_escort_trips", school_escort_trips) # updating timetable object with pure escort tours so joint tours do not schedule ontop - timetable = inject.get_injectable("timetable") + timetable = state.get_injectable("timetable") # Need to do this such that only one person is in nth_tours # thus, looping through tour_category and tour_num # including mandatory tours because their start / end times may have # changed to match the school escort times for tour_category in tours.tour_category.unique(): - for tour_num, nth_tours in tours[tours.tour_category == tour_category].groupby( + for _tour_num, nth_tours in tours[tours.tour_category == tour_category].groupby( "tour_num", sort=True ): timetable.assign( window_row_ids=nth_tours["person_id"], tdds=nth_tours["tdd"] ) - timetable.replace_table() + timetable.replace_table(state) diff --git a/activitysim/abm/models/stop_frequency.py b/activitysim/abm/models/stop_frequency.py index 94a208075..3a9903179 100644 --- a/activitysim/abm/models/stop_frequency.py +++ b/activitysim/abm/models/stop_frequency.py @@ -1,23 +1,81 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +from pathlib import Path +from typing import Any, Literal -import numpy as np import pandas as pd -from activitysim.abm.models.util import school_escort_tours_trips - -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing -from activitysim.core.util import assign_in_place, reindex -from .util import estimation, trip +from activitysim.abm.models.util import school_escort_tours_trips, trip +from activitysim.core import ( + config, + estimation, + expressions, + los, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import LogitComponentSettings +from activitysim.core.util import assign_in_place logger = logging.getLogger(__name__) -@inject.step() +class StopFrequencySpecSegmentSettings(LogitComponentSettings, extra="allow"): + # this class specifically allows "extra" settings because ActivitySim + # is set up to have the name of the segment column be identified with + # an arbitrary key. + SPEC: Path + COEFFICIENTS: Path + + +class StopFrequencySettings(LogitComponentSettings, extra="forbid"): + """ + Settings for the stop frequency component. + """ + + LOGIT_TYPE: Literal["MNL"] = "MNL" + """Logit model mathematical form. + + * "MNL" + Multinomial logit model. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + SPEC_SEGMENTS: list[StopFrequencySpecSegmentSettings] = {} + + SPEC: Path | None = None + """Utility specification filename. + + This is sometimes alternatively called the utility expressions calculator + (UEC). It is a CSV file giving all the functions for the terms of a + linear-in-parameters utility expression. If SPEC_SEGMENTS is given, then + this unsegmented SPEC should be omitted. + """ + + SEGMENT_COL: str = "primary_purpose" + + CONSTANTS: dict[str, Any] = {} + """Named constants usable in the utility expressions.""" + + +@workflow.step def stop_frequency( - tours, tours_merged, stop_frequency_alts, network_los, chunk_size, trace_hh_id -): + state: workflow.State, + tours: pd.DataFrame, + tours_merged: pd.DataFrame, + stop_frequency_alts: pd.DataFrame, + network_los: los.Network_LOS, + model_settings: StopFrequencySettings | None = None, + model_settings_file_name: str = "stop_frequency.yaml", + trace_label: str = "stop_frequency", +) -> None: """ stop frequency model @@ -44,13 +102,14 @@ def stop_frequency( """ - trace_label = "stop_frequency" - model_settings_file_name = "stop_frequency.yaml" + trace_hh_id = state.settings.trace_hh_id - model_settings = config.read_model_settings(model_settings_file_name) + if model_settings is None: + model_settings = StopFrequencySettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - tours = tours.to_frame() - tours_merged = tours_merged.to_frame() assert not tours_merged.household_id.isnull().any() assert not (tours_merged.origin == -1).any() assert not (tours_merged.destination == -1).any() @@ -59,9 +118,8 @@ def stop_frequency( constants = config.get_model_constants(model_settings) # - run preprocessor to annotate tours_merged - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - # hack: preprocessor adds origin column in place if it does not exist already assert "origin" in tours_merged assert "destination" in tours_merged @@ -77,23 +135,29 @@ def stop_frequency( # this should be pre-slice as some expressions may count tours by type annotations = expressions.compute_columns( + state, df=tours_merged, model_settings=preprocessor_settings, locals_dict=locals_dict, trace_label=trace_label, ) - assign_in_place(tours_merged, annotations) + assign_in_place( + tours_merged, + annotations, + state.settings.downcast_int, + state.settings.downcast_float, + ) tracing.print_summary( "stop_frequency segments", tours_merged.primary_purpose, value_counts=True ) - spec_segments = model_settings.get("SPEC_SEGMENTS") + spec_segments = model_settings.SPEC_SEGMENTS assert ( spec_segments is not None ), f"SPEC_SEGMENTS setting not found in model settings: {model_settings_file_name}" - segment_col = model_settings.get("SEGMENT_COL") + segment_col = model_settings.SEGMENT_COL assert ( segment_col is not None ), f"SEGMENT_COL setting not found in model settings: {model_settings_file_name}" @@ -102,9 +166,7 @@ def stop_frequency( choices_list = [] for segment_settings in spec_segments: - - segment_name = segment_settings[segment_col] - segment_value = segment_settings[segment_col] + segment_name = segment_value = getattr(segment_settings, segment_col) chooser_segment = tours_merged[tours_merged[segment_col] == segment_value] @@ -117,20 +179,20 @@ def stop_frequency( ) estimator = estimation.manager.begin_estimation( - model_name=segment_name, bundle_name="stop_frequency" + state, model_name=segment_name, bundle_name="stop_frequency" ) - segment_spec = simulate.read_model_spec(file_name=segment_settings["SPEC"]) + segment_spec = state.filesystem.read_model_spec(file_name=segment_settings.SPEC) assert segment_spec is not None, ( "spec for segment_type %s not found" % segment_name ) - coefficients_file_name = segment_settings["COEFFICIENTS"] - coefficients_df = simulate.read_model_coefficients( - file_name=coefficients_file_name + coefficients_file_name = segment_settings.COEFFICIENTS + coefficients_df = state.filesystem.read_model_coefficients( + file_name=str(coefficients_file_name) ) segment_spec = simulate.eval_coefficients( - segment_spec, coefficients_df, estimator + state, segment_spec, coefficients_df, estimator ) if estimator: @@ -144,11 +206,11 @@ def stop_frequency( estimator.set_chooser_id(chooser_segment.index.name) choices = simulate.simple_simulate( + state, choosers=chooser_segment, spec=segment_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=tracing.extend_trace_label(trace_label, segment_name), trace_choice_name="stops", estimator=estimator, @@ -156,6 +218,10 @@ def stop_frequency( # convert indexes to alternative names choices = pd.Series(segment_spec.columns[choices.values], index=choices.index) + cat_type = pd.api.types.CategoricalDtype( + segment_spec.columns.tolist(), ordered=False + ) + choices = choices.astype(cat_type) if estimator: estimator.write_choices(choices) @@ -172,21 +238,31 @@ def stop_frequency( tracing.print_summary("stop_frequency", choices, value_counts=True) # add stop_frequency choices to tours table - assign_in_place(tours, choices.to_frame("stop_frequency")) + assign_in_place( + tours, + choices.to_frame("stop_frequency"), + state.settings.downcast_int, + state.settings.downcast_float, + ) # FIXME should have added this when tours created? assert "primary_purpose" not in tours if "primary_purpose" not in tours.columns: # if not already there, then it will have been added by stop_freq_annotate_tours_preprocessor - assign_in_place(tours, tours_merged[["primary_purpose"]]) + assign_in_place( + tours, + tours_merged[["primary_purpose"]], + state.settings.downcast_int, + state.settings.downcast_float, + ) - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) # create trips table - trips = trip.initialize_from_tours(tours, stop_frequency_alts) - pipeline.replace_table("trips", trips) - tracing.register_traceable_table("trips", trips) - pipeline.get_rn_generator().add_channel("trips", trips) + trips = trip.initialize_from_tours(state, tours, stop_frequency_alts) + state.add_table("trips", trips) + state.tracing.register_traceable_table("trips", trips) + state.get_rn_generator().add_channel("trips", trips) if estimator: # make sure they created trips with the expected tour_ids @@ -219,22 +295,24 @@ def stop_frequency( assert not trips_differ.any() if trace_hh_id: - tracing.trace_df( + state.tracing.trace_df( tours, label="stop_frequency.tours", slicer="person_id", columns=None ) - tracing.trace_df( + state.tracing.trace_df( trips, label="stop_frequency.trips", slicer="person_id", columns=None ) - tracing.trace_df(annotations, label="stop_frequency.annotations", columns=None) + state.tracing.trace_df( + annotations, label="stop_frequency.annotations", columns=None + ) - tracing.trace_df( + state.tracing.trace_df( tours_merged, label="stop_frequency.tours_merged", slicer="person_id", columns=None, ) - if pipeline.is_table("school_escort_trips"): - school_escort_tours_trips.merge_school_escort_trips_into_pipeline() + if state.is_table("school_escort_trips"): + school_escort_tours_trips.merge_school_escort_trips_into_pipeline(state) diff --git a/activitysim/abm/models/summarize.py b/activitysim/abm/models/summarize.py index 66b5cf958..e842393fd 100644 --- a/activitysim/abm/models/summarize.py +++ b/activitysim/abm/models/summarize.py @@ -1,19 +1,22 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import os import numpy as np import pandas as pd -from activitysim.abm.models.trip_matrices import annotate_trips -from activitysim.core import config, expressions, inject, pipeline +from activitysim.core import expressions, workflow +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.los import Network_LOS logger = logging.getLogger(__name__) def wrap_skims( - network_los: pipeline.Pipeline, trips_merged: pd.DataFrame + network_los: Network_LOS, trips_merged: pd.DataFrame ) -> dict[str, object]: """ Retrieve skim wrappers for merged trips. @@ -198,18 +201,38 @@ def manual_breaks( return bins -@inject.step() +class SummarizeSettings(PydanticReadable, extra="allow"): + """ + Settings for the `summarize` component. + """ + + SPECIFICATION: str = "summarize.csv" + """Filename for the summarize specification (csv) file.""" + + OUTPUT: str = "summarize" + """Output folder name.""" + + EXPORT_PIPELINE_TABLES: bool = True + """To export pipeline tables for expression development.""" + + preprocessor: PreprocessorSettings | None = None + + +@workflow.step def summarize( - network_los: pipeline.Pipeline, + state: workflow.State, + network_los: Network_LOS, persons: pd.DataFrame, persons_merged: pd.DataFrame, households: pd.DataFrame, households_merged: pd.DataFrame, trips: pd.DataFrame, - tours: pd.DataFrame, tours_merged: pd.DataFrame, land_use: pd.DataFrame, -): + model_settings: SummarizeSettings | None = None, + model_settings_file_name: str = "summarize.yaml", + trace_label: str = "summarize", +) -> None: """ A standard model that uses expression files to summarize pipeline tables for vizualization. @@ -222,28 +245,23 @@ def summarize( Outputs a seperate csv summary file for each expression; outputs starting with '_' are saved as temporary local variables. """ - trace_label = "summarize" - model_settings_file_name = "summarize.yaml" - model_settings = config.read_model_settings(model_settings_file_name) - output_location = ( - model_settings["OUTPUT"] if "OUTPUT" in model_settings else "summaries" - ) - os.makedirs(config.output_file_path(output_location), exist_ok=True) + if model_settings is None: + model_settings = SummarizeSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + + output_location = model_settings.OUTPUT + os.makedirs(state.get_output_file_path(output_location), exist_ok=True) spec = pd.read_csv( - config.config_file_path(model_settings["SPECIFICATION"]), comment="#" + state.filesystem.get_config_file_path(model_settings.SPECIFICATION), + comment="#", ) # Load dataframes from pipeline - persons = persons.to_frame() - persons_merged = persons_merged.to_frame() - households = households.to_frame() - households_merged = households_merged.to_frame() - trips = trips.to_frame() - tours = tours_merged.to_frame() - tours_merged = tours_merged.to_frame() - land_use = land_use.to_frame() + tours = tours_merged # - trips_merged - merge trips and tours_merged trips_merged = pd.merge( @@ -251,7 +269,7 @@ def summarize( tours_merged.drop(columns=["person_id", "household_id"]), left_on="tour_id", right_index=True, - suffixes=["_trip", "_tour"], + suffixes=("_trip", "_tour"), how="left", ) @@ -272,13 +290,12 @@ def summarize( # Annotate trips_merged expressions.annotate_preprocessors( - trips_merged, locals_d, skims, model_settings, "summarize" + state, trips_merged, locals_d, skims, model_settings, "summarize" ) for table_name, df in locals_d.items(): - if table_name in model_settings: - - meta = model_settings[table_name] + if hasattr(model_settings, table_name): + meta = getattr(model_settings, table_name) df = eval(table_name) if "AGGREGATE" in meta and meta["AGGREGATE"]: @@ -316,12 +333,14 @@ def summarize( ) # Output pipeline tables for expression development - if model_settings["EXPORT_PIPELINE_TABLES"] is True: + if model_settings.EXPORT_PIPELINE_TABLES is True: pipeline_table_dir = os.path.join(output_location, "pipeline_tables") - os.makedirs(config.output_file_path(pipeline_table_dir), exist_ok=True) + os.makedirs(state.get_output_file_path(pipeline_table_dir), exist_ok=True) for name, df in locals_d.items(): df.to_csv( - config.output_file_path(os.path.join(pipeline_table_dir, f"{name}.csv")) + state.get_output_file_path( + os.path.join(pipeline_table_dir, f"{name}.csv") + ) ) # Add classification functions to locals @@ -335,13 +354,11 @@ def summarize( ) for i, row in spec.iterrows(): - out_file = row["Output"] expr = row["Expression"] # Save temporary variables starting with underscores in locals_d if out_file.startswith("_"): - logger.debug(f"Temp Variable: {expr} -> {out_file}") locals_d[out_file] = eval(expr, globals(), locals_d) @@ -351,6 +368,8 @@ def summarize( resultset = eval(expr, globals(), locals_d) resultset.to_csv( - config.output_file_path(os.path.join(output_location, f"{out_file}.csv")), + state.get_output_file_path( + os.path.join(output_location, f"{out_file}.csv") + ), index=False, ) diff --git a/activitysim/abm/models/telecommute_frequency.py b/activitysim/abm/models/telecommute_frequency.py index 4596a8911..19bd850f8 100755 --- a/activitysim/abm/models/telecommute_frequency.py +++ b/activitysim/abm/models/telecommute_frequency.py @@ -1,17 +1,43 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd -from activitysim.abm.models.util import estimation -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import LogitComponentSettings logger = logging.getLogger("activitysim") -@inject.step() -def telecommute_frequency(persons_merged, persons, chunk_size, trace_hh_id): +class TelecommuteFrequencySettings(LogitComponentSettings): + """ + Settings for the `telecommute_frequency` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + +@workflow.step +def telecommute_frequency( + state: workflow.State, + persons_merged: pd.DataFrame, + persons: pd.DataFrame, + model_settings: TelecommuteFrequencySettings | None = None, + model_settings_file_name: str = "telecommute_frequency.yaml", + trace_label: str = "telecommute_frequency", +) -> None: """ This model predicts the frequency of telecommute for a person (worker) who does not works from home. The alternatives of this model are 'No Telecommute', @@ -20,37 +46,41 @@ def telecommute_frequency(persons_merged, persons, chunk_size, trace_hh_id): office during a week. """ - trace_label = "telecommute_frequency" - model_settings_file_name = "telecommute_frequency.yaml" + if model_settings is None: + model_settings = TelecommuteFrequencySettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - choosers = persons_merged.to_frame() + choosers = persons_merged choosers = choosers[choosers.workplace_zone_id > -1] logger.info("Running %s with %d persons", trace_label, len(choosers)) - model_settings = config.read_model_settings(model_settings_file_name) - estimator = estimation.manager.begin_estimation("telecommute_frequency") + estimator = estimation.manager.begin_estimation(state, "telecommute_frequency") constants = config.get_model_constants(model_settings) # - preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_d = {} if constants is not None: locals_d.update(constants) expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_d, trace_label=trace_label, ) - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) nest_spec = config.get_logit_model_settings(model_settings) @@ -61,17 +91,22 @@ def telecommute_frequency(persons_merged, persons, chunk_size, trace_hh_id): estimator.write_choosers(choosers) choices = simulate.simple_simulate( + state, choosers=choosers, spec=model_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="telecommute_frequency", estimator=estimator, ) choices = pd.Series(model_spec.columns[choices.values], index=choices.index) + telecommute_frequency_cat = pd.api.types.CategoricalDtype( + model_spec.columns.tolist() + [""], + ordered=False, + ) + choices = choices.astype(telecommute_frequency_cat) if estimator: estimator.write_choices(choices) @@ -81,16 +116,13 @@ def telecommute_frequency(persons_merged, persons, chunk_size, trace_hh_id): estimator.write_override_choices(choices) estimator.end_estimation() - persons = persons.to_frame() - persons["telecommute_frequency"] = ( - choices.reindex(persons.index).fillna("").astype(str) - ) + persons["telecommute_frequency"] = choices.reindex(persons.index).fillna("") - pipeline.replace_table("persons", persons) + state.add_table("persons", persons) tracing.print_summary( "telecommute_frequency", persons.telecommute_frequency, value_counts=True ) - if trace_hh_id: - tracing.trace_df(persons, label=trace_label, warn_if_empty=True) + if state.settings.trace_hh_id: + state.tracing.trace_df(persons, label=trace_label, warn_if_empty=True) diff --git a/activitysim/abm/models/tour_mode_choice.py b/activitysim/abm/models/tour_mode_choice.py index 1e826ae91..c6b8a5e00 100644 --- a/activitysim/abm/models/tour_mode_choice.py +++ b/activitysim/abm/models/tour_mode_choice.py @@ -1,26 +1,17 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd -from orca import orca - -from activitysim.core import ( - config, - expressions, - inject, - logit, - los, - pipeline, - simulate, - tracing, -) -from activitysim.core.pathbuilder import TransitVirtualPathBuilder -from activitysim.core.util import assign_in_place, reindex -from .util import estimation, trip, annotate, school_escort_tours_trips -from .util.mode import run_tour_mode_choice_simulate +from activitysim.abm.models.util import annotate, school_escort_tours_trips, trip +from activitysim.abm.models.util.mode import run_tour_mode_choice_simulate +from activitysim.core import config, estimation, logit, los, simulate, tracing, workflow +from activitysim.core.configuration.logit import TourModeComponentSettings +from activitysim.core.util import assign_in_place, reindex logger = logging.getLogger(__name__) @@ -30,7 +21,12 @@ """ -def get_alts_from_segmented_nested_logit(model_settings, segment_name, trace_label): +def get_alts_from_segmented_nested_logit( + state: workflow.State, + model_settings: TourModeComponentSettings, + segment_name: str, + trace_label: str, +): """Infer alts from logit spec Parameters @@ -45,7 +41,9 @@ def get_alts_from_segmented_nested_logit(model_settings, segment_name, trace_lab """ nest_spec = config.get_logit_model_settings(model_settings) - coefficients = simulate.get_segment_coefficients(model_settings, segment_name) + coefficients = state.filesystem.get_segment_coefficients( + model_settings, segment_name + ) nest_spec = simulate.eval_nest_coefficients(nest_spec, coefficients, trace_label) tour_mode_alts = [] for nest in logit.each_nest(nest_spec): @@ -55,7 +53,13 @@ def get_alts_from_segmented_nested_logit(model_settings, segment_name, trace_lab return tour_mode_alts -def create_logsum_trips(tours, segment_column_name, model_settings, trace_label): +def create_logsum_trips( + state: workflow.State, + tours: pd.DataFrame, + segment_column_name: str, + model_settings: TourModeComponentSettings, + trace_label: str, +): """ Construct table of trips from half-tours (1 inbound, 1 outbound) for each tour-mode. @@ -64,7 +68,7 @@ def create_logsum_trips(tours, segment_column_name, model_settings, trace_label) tours : pandas.DataFrame segment_column_name : str column in tours table used for segmenting model spec - model_settings : dict + model_settings : TourModeComponentSettings trace_label : str Returns @@ -72,12 +76,17 @@ def create_logsum_trips(tours, segment_column_name, model_settings, trace_label) pandas.DataFrame Table of trips: 2 per tour, with O/D and purpose inherited from tour """ - stop_frequency_alts = inject.get_injectable("stop_frequency_alts") + stop_frequency_alts = state.get_injectable("stop_frequency_alts") + stop_freq_cat_type = pd.api.types.CategoricalDtype( + stop_frequency_alts.index.tolist() + [""], ordered=False + ) stop_freq = "0out_0in" # no intermediate stops tours["stop_frequency"] = stop_freq + tours["stop_frequency"] = tours["stop_frequency"].astype(stop_freq_cat_type) tours["primary_purpose"] = tours["tour_purpose"] - trips = trip.initialize_from_tours(tours, stop_frequency_alts) + trips = trip.initialize_from_tours(state, tours, stop_frequency_alts) trips["stop_frequency"] = stop_freq + outbound = trips["outbound"] trips["depart"] = reindex(tours.start, trips.tour_id) trips.loc[~outbound, "depart"] = reindex(tours.end, trips.loc[~outbound, "tour_id"]) @@ -86,13 +95,15 @@ def create_logsum_trips(tours, segment_column_name, model_settings, trace_label) # to get a set of coefficients from the spec segment_name = tours.iloc[0][segment_column_name] tour_mode_alts = get_alts_from_segmented_nested_logit( - model_settings, segment_name, trace_label + state, model_settings, segment_name, trace_label ) + mode_cat_type = pd.api.types.CategoricalDtype(tour_mode_alts + [""], ordered=False) # repeat rows from the trips table iterating over tour mode logsum_trips = pd.DataFrame() for tour_mode in tour_mode_alts: trips["tour_mode"] = tour_mode + trips["tour_mode"] = trips["tour_mode"].astype(mode_cat_type) logsum_trips = pd.concat((logsum_trips, trips), ignore_index=True) assert len(logsum_trips) == len(trips) * len(tour_mode_alts) logsum_trips.index.name = "trip_id" @@ -100,7 +111,7 @@ def create_logsum_trips(tours, segment_column_name, model_settings, trace_label) return logsum_trips -def append_tour_leg_trip_mode_choice_logsums(tours): +def append_tour_leg_trip_mode_choice_logsums(state: workflow.State, tours): """Creates trip mode choice logsum column in tours table for each tour mode and leg Parameters @@ -112,7 +123,7 @@ def append_tour_leg_trip_mode_choice_logsums(tours): tours : pd.DataFrame Adds two * n_modes logsum columns to each tour row, e.g. "logsum_DRIVE_outbound" """ - trips = inject.get_table("trips").to_frame() + trips = state.get_dataframe("trips") trip_dir_mode_logsums = trips.pivot( index="tour_id", columns=["tour_mode", "outbound"], @@ -130,7 +141,11 @@ def append_tour_leg_trip_mode_choice_logsums(tours): def get_trip_mc_logsums_for_all_modes( - tours, segment_column_name, model_settings, trace_label + state: workflow.State, + tours: pd.DataFrame, + segment_column_name: str, + model_settings: TourModeComponentSettings, + trace_label: str, ): """Creates pseudo-trips from tours and runs trip mode choice to get logsums @@ -139,7 +154,7 @@ def get_trip_mc_logsums_for_all_modes( tours : pandas.DataFrame segment_column_name : str column in tours table used for segmenting model spec - model_settings : dict + model_settings : TourModeComponentSettings trace_label : str Returns @@ -150,51 +165,60 @@ def get_trip_mc_logsums_for_all_modes( # create pseudo-trips from tours for all tour modes logsum_trips = create_logsum_trips( - tours, segment_column_name, model_settings, trace_label + state, tours, segment_column_name, model_settings, trace_label ) # temporarily register trips in the pipeline - pipeline.replace_table("trips", logsum_trips) - tracing.register_traceable_table("trips", logsum_trips) - pipeline.get_rn_generator().add_channel("trips", logsum_trips) + state.add_table("trips", logsum_trips) + state.tracing.register_traceable_table("trips", logsum_trips) + state.get_rn_generator().add_channel("trips", logsum_trips) - # run trip mode choice on pseudo-trips. use orca instead of pipeline to + # run trip mode choice on pseudo-trips. use a direct call instead of pipeline to # execute the step because pipeline can only handle one open step at a time - orca.run(["trip_mode_choice"]) + from .trip_mode_choice import trip_mode_choice + + trip_mode_choice(state, logsum_trips, state.get("network_los")) # add trip mode choice logsums as new cols in tours - tours = append_tour_leg_trip_mode_choice_logsums(tours) + tours = append_tour_leg_trip_mode_choice_logsums(state, tours) # de-register logsum trips table - pipeline.get_rn_generator().drop_channel("trips") - tracing.deregister_traceable_table("trips") + state.get_rn_generator().drop_channel("trips") + state.tracing.deregister_traceable_table("trips") return tours -@inject.step() +@workflow.step def tour_mode_choice_simulate( - tours, persons_merged, network_los, chunk_size, trace_hh_id -): + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + network_los: los.Network_LOS, + model_settings: TourModeComponentSettings | None = None, + model_settings_file_name: str = "tour_mode_choice.yaml", + trace_label: str = "tour_mode_choice", +) -> None: """ Tour mode choice simulate """ - trace_label = "tour_mode_choice" - model_settings_file_name = "tour_mode_choice.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + if model_settings is None: + model_settings = TourModeComponentSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - logsum_column_name = model_settings.get("MODE_CHOICE_LOGSUM_COLUMN_NAME") + logsum_column_name = model_settings.MODE_CHOICE_LOGSUM_COLUMN_NAME mode_column_name = "tour_mode" segment_column_name = "tour_purpose" - primary_tours = tours.to_frame() + primary_tours = tours assert not (primary_tours.tour_category == "atwork").any() logger.info("Running %s with %d tours" % (trace_label, primary_tours.shape[0])) tracing.print_summary("tour_types", primary_tours.tour_type, value_counts=True) - persons_merged = persons_merged.to_frame() primary_tours_merged = pd.merge( primary_tours, persons_merged, @@ -206,7 +230,7 @@ def tour_mode_choice_simulate( constants = {} # model_constants can appear in expressions - constants.update(config.get_model_constants(model_settings)) + constants.update(model_settings.CONSTANTS) skim_dict = network_los.get_default_skim_dict() @@ -271,17 +295,17 @@ def tour_mode_choice_simulate( ) # TVPB constants can appear in expressions - if model_settings.get("use_TVPB_constants", True): + if model_settings.use_TVPB_constants: constants.update( network_los.setting("TVPB_SETTINGS.tour_mode_choice.CONSTANTS") ) # don't create estimation data bundle if trip mode choice is being called # from another model step (i.e. tour mode choice logsum creation) - if pipeline.get_rn_generator().step_name != "tour_mode_choice_simulate": + if state.get_rn_generator().step_name != "tour_mode_choice_simulate": estimator = None else: - estimator = estimation.manager.begin_estimation("tour_mode_choice") + estimator = estimation.manager.begin_estimation(state, "tour_mode_choice") if estimator: estimator.write_coefficients(model_settings=model_settings) estimator.write_coefficients_template(model_settings=model_settings) @@ -302,16 +326,19 @@ def tour_mode_choice_simulate( ) # if trip logsums are used, run trip mode choice and append the logsums - if model_settings.get("COMPUTE_TRIP_MODE_CHOICE_LOGSUMS", False): + if model_settings.COMPUTE_TRIP_MODE_CHOICE_LOGSUMS: primary_tours_merged = get_trip_mc_logsums_for_all_modes( - primary_tours_merged, segment_column_name, model_settings, trace_label + state, + primary_tours_merged, + segment_column_name, + model_settings, + trace_label, ) choices_list = [] for tour_purpose, tours_segment in primary_tours_merged.groupby( - segment_column_name + segment_column_name, observed=True ): - logger.info( "tour_mode_choice_simulate tour_type '%s' (%s tours)" % ( @@ -328,6 +355,7 @@ def tour_mode_choice_simulate( assert tours_segment.index.name == "tour_id" choices_df = run_tour_mode_choice_simulate( + state, tours_segment, tour_purpose, model_settings, @@ -337,7 +365,6 @@ def tour_mode_choice_simulate( skims=skims, constants=constants, estimator=estimator, - chunk_size=chunk_size, trace_label=tracing.extend_trace_label(trace_label, tour_purpose), trace_choice_name="tour_mode_choice", ) @@ -354,22 +381,18 @@ def tour_mode_choice_simulate( # add cached tvpb_logsum tap choices for modes specified in tvpb_mode_path_types if network_los.zone_system == los.THREE_ZONE: - - tvpb_mode_path_types = model_settings.get("tvpb_mode_path_types") + tvpb_mode_path_types = model_settings.tvpb_mode_path_types if tvpb_mode_path_types is not None: for mode, path_types in tvpb_mode_path_types.items(): - for direction, skim in zip( ["od", "do"], [tvpb_logsum_odt, tvpb_logsum_dot] ): - path_type = path_types[direction] skim_cache = skim.cache[path_type] print(f"mode {mode} direction {direction} path_type {path_type}") for c in skim_cache: - dest_col = f"{direction}_{c}" if dest_col not in choices_df: @@ -397,29 +420,40 @@ def tour_mode_choice_simulate( ) # so we can trace with annotations - assign_in_place(primary_tours, choices_df) + assign_in_place( + primary_tours, + choices_df, + state.settings.downcast_int, + state.settings.downcast_float, + ) # update tours table with mode choice (and optionally logsums) - all_tours = tours.to_frame() - assign_in_place(all_tours, choices_df) + all_tours = tours + assign_in_place( + all_tours, + choices_df, + state.settings.downcast_int, + state.settings.downcast_float, + ) - if pipeline.is_table("school_escort_tours") & model_settings.get( - "FORCE_ESCORTEE_CHAUFFEUR_MODE_MATCH", True + if ( + state.is_table("school_escort_tours") + & model_settings.FORCE_ESCORTEE_CHAUFFEUR_MODE_MATCH ): all_tours = ( school_escort_tours_trips.force_escortee_tour_modes_to_match_chauffeur( - all_tours + state, all_tours ) ) - pipeline.replace_table("tours", all_tours) + state.add_table("tours", all_tours) # - annotate tours table - if model_settings.get("annotate_tours"): - annotate.annotate_tours(model_settings, trace_label) + if model_settings.annotate_tours: + annotate.annotate_tours(state, model_settings, trace_label) - if trace_hh_id: - tracing.trace_df( + if state.settings.trace_hh_id: + state.tracing.trace_df( primary_tours, label=tracing.extend_trace_label(trace_label, mode_column_name), slicer="tour_id", diff --git a/activitysim/abm/models/tour_od_choice.py b/activitysim/abm/models/tour_od_choice.py index 0825a21ea..b518b36f9 100644 --- a/activitysim/abm/models/tour_od_choice.py +++ b/activitysim/abm/models/tour_od_choice.py @@ -1,22 +1,29 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd -from activitysim.core import config, inject, pipeline, simulate, tracing -from activitysim.core.util import assign_in_place - -from .util import estimation, tour_od +from activitysim.abm.models.util import tour_od +from activitysim.core import estimation, los, workflow logger = logging.getLogger(__name__) -@inject.step() +@workflow.step def tour_od_choice( - tours, persons, households, land_use, network_los, chunk_size, trace_hh_id -): - + state: workflow.State, + tours: pd.DataFrame, + persons: pd.DataFrame, + households: pd.DataFrame, + land_use: pd.DataFrame, + network_los: los.Network_LOS, + model_settings: tour_od.TourODSettings | None = None, + model_settings_file_name: str = "tour_od_choice.yaml", + trace_label: str = "tour_od_choice", +) -> None: """Simulates joint origin/destination choice for all tours. Given a set of previously generated tours, each tour needs to have an @@ -28,60 +35,53 @@ def tour_od_choice( Parameters ---------- - tours : orca.DataFrameWrapper + tours : pd.DataFrame lazy-loaded tours table - persons : orca.DataFrameWrapper + persons : pd.DataFrame lazy-loaded persons table - households : orca.DataFrameWrapper + households : pd.DataFrame lazy-loaded households table - land_use : orca.DataFrameWrapper + land_use : pd.DataFrame lazy-loaded land use data table - stop_frequency_alts : orca.DataFrameWrapper - lazy-loaded table of stop frequency alternatives, e.g. "1out2in" - network_los : orca._InjectableFuncWrapper + network_los : los.Network_LOS lazy-loaded activitysim.los.Network_LOS object - chunk_size - simulation chunk size, set in main settings.yaml - trace_hh_id : int - households to trace, set in main settings.yaml """ - - trace_label = "tour_od_choice" - model_settings_file_name = "tour_od_choice.yaml" - model_settings = config.read_model_settings(model_settings_file_name) - origin_col_name = model_settings["ORIG_COL_NAME"] - dest_col_name = model_settings["DEST_COL_NAME"] + if model_settings is None: + model_settings = tour_od.TourODSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + origin_col_name = model_settings.ORIG_COL_NAME + dest_col_name = model_settings.DEST_COL_NAME alt_id_col = tour_od.get_od_id_col(origin_col_name, dest_col_name) + trace_hh_id = state.settings.trace_hh_id + chunk_size = state.settings.chunk_size - sample_table_name = model_settings.get("OD_CHOICE_SAMPLE_TABLE_NAME") + sample_table_name = model_settings.OD_CHOICE_SAMPLE_TABLE_NAME want_sample_table = ( - config.setting("want_dest_choice_sample_tables") - and sample_table_name is not None + state.settings.want_dest_choice_sample_tables and sample_table_name is not None ) - logsum_column_name = model_settings.get("OD_CHOICE_LOGSUM_COLUMN_NAME", None) + logsum_column_name = model_settings.OD_CHOICE_LOGSUM_COLUMN_NAME want_logsums = logsum_column_name is not None - tours = tours.to_frame() - # interaction_sample_simulate insists choosers appear in same order as alts tours = tours.sort_index() - estimator = estimation.manager.begin_estimation("tour_od_choice") + estimator = estimation.manager.begin_estimation(state, "tour_od_choice") if estimator: estimator.write_coefficients(model_settings=model_settings) - estimator.write_spec(model_settings, tag="SAMPLE_SPEC") - estimator.write_spec(model_settings, tag="SPEC") + estimator.write_spec(file_name=model_settings.SAMPLE_SPEC, tag="SAMPLE_SPEC") + estimator.write_spec(file_name=model_settings.SPEC, tag="SPEC") estimator.set_alt_id(alt_id_col) estimator.write_table( - inject.get_injectable("size_terms"), "size_terms", append=False - ) - estimator.write_table( - inject.get_table("land_use").to_frame(), "landuse", append=False + state.get_injectable("size_terms"), "size_terms", append=False ) + estimator.write_table(state.get_dataframe("land_use"), "landuse", append=False) estimator.write_model_settings(model_settings, model_settings_file_name) choices_df, save_sample_df = tour_od.run_tour_od( + state, tours, persons, want_logsums, @@ -115,12 +115,8 @@ def tour_od_choice( tours[logsum_column_name] = ( choices_df["logsum"].reindex(tours.index).astype("float") ) - tours["poe_id"] = tours[origin_col_name].map( - land_use.to_frame(columns="poe_id").poe_id - ) + tours["poe_id"] = tours[origin_col_name].map(land_use.poe_id) - households = households.to_frame() - persons = persons.to_frame() households[origin_col_name] = tours.set_index("household_id")[ origin_col_name ].reindex(households.index) @@ -134,16 +130,16 @@ def tour_od_choice( households["home_zone_id"] = households[origin_col_name] persons["home_zone_id"] = persons[origin_col_name] - pipeline.replace_table("tours", tours) - pipeline.replace_table("persons", persons) - pipeline.replace_table("households", households) + state.add_table("tours", tours) + state.add_table("persons", persons) + state.add_table("households", households) if want_sample_table: assert len(save_sample_df.index.get_level_values(0).unique()) == len(choices_df) - pipeline.extend_table(sample_table_name, save_sample_df) + state.extend_table(sample_table_name, save_sample_df) if trace_hh_id: - tracing.trace_df( + state.tracing.trace_df( tours, label="tours_od_choice", slicer="person_id", diff --git a/activitysim/abm/models/tour_scheduling_probabilistic.py b/activitysim/abm/models/tour_scheduling_probabilistic.py index 89fb41676..324db4566 100644 --- a/activitysim/abm/models/tour_scheduling_probabilistic.py +++ b/activitysim/abm/models/tour_scheduling_probabilistic.py @@ -1,33 +1,31 @@ # ActivitySim # See full license in LICENSE.txt +from __future__ import annotations import logging -import numpy as np import pandas as pd -from activitysim.abm.models.util import estimation -from activitysim.core import chunk, config, inject, logit, pipeline, tracing -from activitysim.core.util import reindex - -from .util import probabilistic_scheduling as ps +from activitysim.abm.models.util import probabilistic_scheduling as ps +from activitysim.core import chunk, estimation, workflow +from activitysim.core.configuration.base import PydanticReadable logger = logging.getLogger(__name__) def run_tour_scheduling_probabilistic( - tours_df, - scheduling_probs, - probs_join_cols, - depart_alt_base, - chunk_size, - trace_label, - trace_hh_id, + state: workflow.State, + tours_df: pd.DataFrame, + scheduling_probs: pd.DataFrame, + probs_join_cols: str | list[str], + depart_alt_base: int, + trace_label: str, ): """Make probabilistic tour scheduling choices in chunks Parameters ---------- + state: workflow.State tours_df : pandas.DataFrame table of tours scheduling_probs : pandas.DataFrame @@ -37,12 +35,8 @@ def run_tour_scheduling_probabilistic( depart_alt_base : int int to add to probs column index to get time period it represents. e.g. depart_alt_base = 5 means first column (column 0) represents 5 am - chunk_size : int - size of chooser chunks, set in main settings.yaml trace_label : str label to append to tracing logs and table names - trace_hh_id : int - households to trace Returns ------- @@ -50,10 +44,14 @@ def run_tour_scheduling_probabilistic( series of chosen alternative indices for each chooser """ result_list = [] - for i, chooser_chunk, chunk_trace_label in chunk.adaptive_chunked_choosers( - tours_df, chunk_size, trace_label, trace_label - ): + for ( + i, + chooser_chunk, + chunk_trace_label, + chunk_sizer, + ) in chunk.adaptive_chunked_choosers(state, tours_df, trace_label, trace_label): choices = ps.make_scheduling_choices( + state, chooser_chunk, "departure", scheduling_probs, @@ -62,9 +60,9 @@ def run_tour_scheduling_probabilistic( first_trip_in_leg=False, report_failed_trips=True, trace_label=chunk_trace_label, - trace_hh_id=trace_hh_id, trace_choice_col_name="depart_return", clip_earliest_latest=False, + chunk_sizer=chunk_sizer, ) result_list.append(choices) @@ -72,8 +70,28 @@ def run_tour_scheduling_probabilistic( return choices -@inject.step() -def tour_scheduling_probabilistic(tours, chunk_size, trace_hh_id): +class TourSchedulingProbabilisticSettings(PydanticReadable): + """ + Settings for the `tour_scheduling_probabilistic` component. + """ + + depart_alt_base: int = 0 + + PROBS_SPEC: str = "tour_scheduling_probs.csv" + """Filename for the tour scheduling probabilistic specification (csv) file.""" + + PROBS_JOIN_COLS: list[str] | None = None + """List of columns""" + + +@workflow.step +def tour_scheduling_probabilistic( + state: workflow.State, + tours: pd.DataFrame, + model_settings: TourSchedulingProbabilisticSettings | None = None, + model_settings_file_name: str = "tour_scheduling_probabilistic.yaml", + trace_label: str = "tour_scheduling_probabilistic", +) -> None: """Makes tour departure and arrival choices by sampling from a probability lookup table This model samples tour scheduling choices from an exogenously defined probability @@ -83,7 +101,7 @@ def tour_scheduling_probabilistic(tours, chunk_size, trace_hh_id): Parameters ---------- - tours : orca.DataFrameWrapper + tours : DataFrame lazy-loaded table of tours chunk_size : int size of chooser chunks, defined in main settings.yaml @@ -92,18 +110,25 @@ def tour_scheduling_probabilistic(tours, chunk_size, trace_hh_id): """ - trace_label = "tour_scheduling_probabilistic" - model_settings_file_name = "tour_scheduling_probabilistic.yaml" - model_settings = config.read_model_settings(model_settings_file_name) - depart_alt_base = model_settings.get("depart_alt_base", 0) - scheduling_probs_filepath = config.config_file_path(model_settings["PROBS_SPEC"]) + if model_settings is None: + model_settings = TourSchedulingProbabilisticSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + + depart_alt_base = model_settings.depart_alt_base + scheduling_probs_filepath = state.filesystem.get_config_file_path( + model_settings.PROBS_SPEC + ) scheduling_probs = pd.read_csv(scheduling_probs_filepath) - probs_join_cols = model_settings["PROBS_JOIN_COLS"] - tours_df = tours.to_frame() + probs_join_cols = model_settings.PROBS_JOIN_COLS + tours_df = tours # trip_scheduling is a probabilistic model ane we don't support estimation, # but we do need to override choices in estimation mode - estimator = estimation.manager.begin_estimation("tour_scheduling_probabilistic") + estimator = estimation.manager.begin_estimation( + state, "tour_scheduling_probabilistic" + ) if estimator: estimator.write_spec(model_settings, tag="PROBS_SPEC") estimator.write_model_settings(model_settings, model_settings_file_name) @@ -111,13 +136,12 @@ def tour_scheduling_probabilistic(tours, chunk_size, trace_hh_id): estimator.write_choosers(tours_df[chooser_cols_for_estimation]) choices = run_tour_scheduling_probabilistic( + state, tours_df, scheduling_probs, probs_join_cols, depart_alt_base, - chunk_size, trace_label, - trace_hh_id, ) # convert alt index choices to depart/return times @@ -150,4 +174,4 @@ def tour_scheduling_probabilistic(tours, chunk_size, trace_hh_id): assert not tours_df["end"].isnull().any() assert not tours_df["duration"].isnull().any() - pipeline.replace_table("tours", tours_df) + state.add_table("tours", tours_df) diff --git a/activitysim/abm/models/transit_pass_ownership.py b/activitysim/abm/models/transit_pass_ownership.py index 92d97080f..48e01c47d 100644 --- a/activitysim/abm/models/transit_pass_ownership.py +++ b/activitysim/abm/models/transit_pass_ownership.py @@ -1,50 +1,80 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -import numpy as np +import pandas as pd -from activitysim.abm.models.util import estimation -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import LogitComponentSettings logger = logging.getLogger("activitysim") -@inject.step() -def transit_pass_ownership(persons_merged, persons, chunk_size, trace_hh_id): +class TransitPassOwnershipSettings(LogitComponentSettings): + """ + Settings for the `transit_pass_ownership` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + +@workflow.step +def transit_pass_ownership( + state: workflow.State, + persons_merged: pd.DataFrame, + persons: pd.DataFrame, + model_settings: TransitPassOwnershipSettings | None = None, + model_settings_file_name: str = "transit_pass_ownership.yaml", + trace_label: str = "transit_pass_ownership", +) -> None: """ Transit pass ownership model. """ - trace_label = "transit_pass_ownership" - model_settings_file_name = "transit_pass_ownership.yaml" + if model_settings is None: + model_settings = TransitPassOwnershipSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - choosers = persons_merged.to_frame() + choosers = persons_merged logger.info("Running %s with %d persons", trace_label, len(choosers)) - model_settings = config.read_model_settings(model_settings_file_name) - estimator = estimation.manager.begin_estimation("transit_pass_ownership") + estimator = estimation.manager.begin_estimation(state, "transit_pass_ownership") constants = config.get_model_constants(model_settings) # - preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_d = {} if constants is not None: locals_d.update(constants) expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_d, trace_label=trace_label, ) - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) nest_spec = config.get_logit_model_settings(model_settings) @@ -55,11 +85,11 @@ def transit_pass_ownership(persons_merged, persons, chunk_size, trace_hh_id): estimator.write_choosers(choosers) choices = simulate.simple_simulate( + state, choosers=choosers, spec=model_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="transit_pass_ownership", estimator=estimator, @@ -73,14 +103,13 @@ def transit_pass_ownership(persons_merged, persons, chunk_size, trace_hh_id): estimator.write_override_choices(choices) estimator.end_estimation() - persons = persons.to_frame() persons["transit_pass_ownership"] = choices.reindex(persons.index) - pipeline.replace_table("persons", persons) + state.add_table("persons", persons) tracing.print_summary( "transit_pass_ownership", persons.transit_pass_ownership, value_counts=True ) - if trace_hh_id: - tracing.trace_df(persons, label=trace_label, warn_if_empty=True) + if state.settings.trace_hh_id: + state.tracing.trace_df(persons, label=trace_label, warn_if_empty=True) diff --git a/activitysim/abm/models/transit_pass_subsidy.py b/activitysim/abm/models/transit_pass_subsidy.py index 45a118fda..7d1f320e2 100644 --- a/activitysim/abm/models/transit_pass_subsidy.py +++ b/activitysim/abm/models/transit_pass_subsidy.py @@ -1,50 +1,79 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -import numpy as np +import pandas as pd -from activitysim.abm.models.util import estimation -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import LogitComponentSettings logger = logging.getLogger("activitysim") -@inject.step() -def transit_pass_subsidy(persons_merged, persons, chunk_size, trace_hh_id): +class TransitPassSubsidySettings(LogitComponentSettings, extra="forbid"): """ - Transit pass subsidy model. + Settings for the `transit_pass_subsidy` component. """ - trace_label = "transit_pass_subsidy" - model_settings_file_name = "transit_pass_subsidy.yaml" + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + +@workflow.step +def transit_pass_subsidy( + state: workflow.State, + persons_merged: pd.DataFrame, + persons: pd.DataFrame, + model_settings: TransitPassSubsidySettings | None = None, + model_settings_file_name: str = "transit_pass_subsidy.yaml", + trace_label: str = "transit_pass_subsidy", +) -> None: + """ + Transit pass subsidy model. + """ + if model_settings is None: + model_settings = TransitPassSubsidySettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - choosers = persons_merged.to_frame() + choosers = persons_merged logger.info("Running %s with %d persons", trace_label, len(choosers)) - model_settings = config.read_model_settings(model_settings_file_name) - estimator = estimation.manager.begin_estimation("transit_pass_subsidy") + estimator = estimation.manager.begin_estimation(state, "transit_pass_subsidy") constants = config.get_model_constants(model_settings) # - preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_d = {} if constants is not None: locals_d.update(constants) expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_d, trace_label=trace_label, ) - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) nest_spec = config.get_logit_model_settings(model_settings) @@ -55,11 +84,11 @@ def transit_pass_subsidy(persons_merged, persons, chunk_size, trace_hh_id): estimator.write_choosers(choosers) choices = simulate.simple_simulate( + state, choosers=choosers, spec=model_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="transit_pass_subsidy", estimator=estimator, @@ -73,14 +102,13 @@ def transit_pass_subsidy(persons_merged, persons, chunk_size, trace_hh_id): estimator.write_override_choices(choices) estimator.end_estimation() - persons = persons.to_frame() persons["transit_pass_subsidy"] = choices.reindex(persons.index) - pipeline.replace_table("persons", persons) + state.add_table("persons", persons) tracing.print_summary( "transit_pass_subsidy", persons.transit_pass_subsidy, value_counts=True ) - if trace_hh_id: - tracing.trace_df(persons, label=trace_label, warn_if_empty=True) + if state.settings.trace_hh_id: + state.tracing.trace_df(persons, label=trace_label, warn_if_empty=True) diff --git a/activitysim/abm/models/trip_departure_choice.py b/activitysim/abm/models/trip_departure_choice.py index 2dad8d37c..43f02df34 100644 --- a/activitysim/abm/models/trip_departure_choice.py +++ b/activitysim/abm/models/trip_departure_choice.py @@ -1,4 +1,10 @@ +# ActivitySim +# See full license in LICENSE.txt. +from __future__ import annotations + import logging +from pathlib import Path +from typing import Any import numpy as np import pandas as pd @@ -8,14 +14,15 @@ chunk, config, expressions, - inject, interaction_simulate, logit, - pipeline, simulate, tracing, + workflow, ) -from activitysim.core.simulate import set_skim_wrapper_targets +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.skim_dataset import SkimDataset +from activitysim.core.skim_dictionary import SkimDict from activitysim.core.util import reindex logger = logging.getLogger(__name__) @@ -164,7 +171,6 @@ def build_patterns(trips, time_windows): def get_spec_for_segment(omnibus_spec, segment): - spec = omnibus_spec[[segment]] # might as well ignore any spec rows with 0 utility @@ -174,15 +180,23 @@ def get_spec_for_segment(omnibus_spec, segment): return spec -def choose_tour_leg_pattern(trip_segment, patterns, spec, trace_label="trace_label"): +def choose_tour_leg_pattern( + state, + trip_segment, + patterns, + spec, + trace_label="trace_label", + *, + chunk_sizer: chunk.ChunkSizer, +): alternatives = generate_alternatives(trip_segment, STOP_TIME_DURATION).sort_index() - have_trace_targets = tracing.has_trace_targets(trip_segment) + have_trace_targets = state.tracing.has_trace_targets(trip_segment) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( trip_segment, tracing.extend_trace_label(trace_label, "choosers") ) - tracing.trace_df( + state.tracing.trace_df( alternatives, tracing.extend_trace_label(trace_label, "alternatives"), transpose=False, @@ -201,14 +215,14 @@ def choose_tour_leg_pattern(trip_segment, patterns, spec, trace_label="trace_lab interaction_df = alternatives.join(trip_segment, how="left", rsuffix="_chooser") - chunk.log_df(trace_label, "interaction_df", interaction_df) + chunk_sizer.log_df(trace_label, "interaction_df", interaction_df) if have_trace_targets: - trace_rows, trace_ids = tracing.interaction_trace_rows( + trace_rows, trace_ids = state.tracing.interaction_trace_rows( interaction_df, trip_segment ) - tracing.trace_df( + state.tracing.trace_df( interaction_df, tracing.extend_trace_label(trace_label, "interaction_df"), transpose=False, @@ -220,13 +234,13 @@ def choose_tour_leg_pattern(trip_segment, patterns, spec, trace_label="trace_lab interaction_utilities, trace_eval_results, ) = interaction_simulate.eval_interaction_utilities( - spec, interaction_df, None, trace_label, trace_rows, estimator=None + state, spec, interaction_df, None, trace_label, trace_rows, estimator=None ) interaction_utilities = pd.concat( [interaction_df[STOP_TIME_DURATION], interaction_utilities], axis=1 ) - chunk.log_df(trace_label, "interaction_utilities", interaction_utilities) + chunk_sizer.log_df(trace_label, "interaction_utilities", interaction_utilities) interaction_utilities = pd.merge( interaction_utilities.reset_index(), @@ -236,20 +250,20 @@ def choose_tour_leg_pattern(trip_segment, patterns, spec, trace_label="trace_lab ) if have_trace_targets: - tracing.trace_interaction_eval_results( + state.tracing.trace_interaction_eval_results( trace_eval_results, trace_ids, tracing.extend_trace_label(trace_label, "eval"), ) - tracing.trace_df( + state.tracing.trace_df( interaction_utilities, tracing.extend_trace_label(trace_label, "interaction_utilities"), transpose=False, ) del interaction_df - chunk.log_df(trace_label, "interaction_df", None) + chunk_sizer.log_df(trace_label, "interaction_df", None) interaction_utilities = interaction_utilities.groupby( [TOUR_ID, OUTBOUND, PATTERN_ID], as_index=False @@ -271,7 +285,7 @@ def choose_tour_leg_pattern(trip_segment, patterns, spec, trace_label="trace_lab sample_counts = ( interaction_utilities.groupby(interaction_utilities.index).size().values ) - chunk.log_df(trace_label, "sample_counts", sample_counts) + chunk_sizer.log_df(trace_label, "sample_counts", sample_counts) # max number of alternatvies for any chooser max_sample_count = sample_counts.max() @@ -286,28 +300,28 @@ def choose_tour_leg_pattern(trip_segment, patterns, spec, trace_label="trace_lab inserts = np.repeat(last_row_offsets, max_sample_count - sample_counts) del sample_counts - chunk.log_df(trace_label, "sample_counts", None) + chunk_sizer.log_df(trace_label, "sample_counts", None) # insert the zero-prob utilities to pad each alternative set to same size padded_utilities = np.insert(interaction_utilities.utility.values, inserts, -999) del inserts del interaction_utilities - chunk.log_df(trace_label, "interaction_utilities", None) + chunk_sizer.log_df(trace_label, "interaction_utilities", None) # reshape to array with one row per chooser, one column per alternative padded_utilities = padded_utilities.reshape(-1, max_sample_count) - chunk.log_df(trace_label, "padded_utilities", padded_utilities) + chunk_sizer.log_df(trace_label, "padded_utilities", padded_utilities) # convert to a dataframe with one row per chooser and one column per alternative utilities_df = pd.DataFrame(padded_utilities, index=tour_choosers.index.unique()) - chunk.log_df(trace_label, "utilities_df", utilities_df) + chunk_sizer.log_df(trace_label, "utilities_df", utilities_df) del padded_utilities - chunk.log_df(trace_label, "padded_utilities", None) + chunk_sizer.log_df(trace_label, "padded_utilities", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( utilities_df, tracing.extend_trace_label(trace_label, "utilities"), column_labels=["alternative", "utility"], @@ -316,16 +330,16 @@ def choose_tour_leg_pattern(trip_segment, patterns, spec, trace_label="trace_lab # convert to probabilities (utilities exponentiated and normalized to probs) # probs is same shape as utilities, one row per chooser and one column for alternative probs = logit.utils_to_probs( - utilities_df, trace_label=trace_label, trace_choosers=trip_segment + state, utilities_df, trace_label=trace_label, trace_choosers=trip_segment ) - chunk.log_df(trace_label, "probs", probs) + chunk_sizer.log_df(trace_label, "probs", probs) del utilities_df - chunk.log_df(trace_label, "utilities_df", None) + chunk_sizer.log_df(trace_label, "utilities_df", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( probs, tracing.extend_trace_label(trace_label, "probs"), column_labels=["alternative", "probability"], @@ -335,14 +349,14 @@ def choose_tour_leg_pattern(trip_segment, patterns, spec, trace_label="trace_lab # positions is series with the chosen alternative represented as a column index in probs # which is an integer between zero and num alternatives in the alternative sample positions, rands = logit.make_choices( - probs, trace_label=trace_label, trace_choosers=trip_segment + state, probs, trace_label=trace_label, trace_choosers=trip_segment ) - chunk.log_df(trace_label, "positions", positions) - chunk.log_df(trace_label, "rands", rands) + chunk_sizer.log_df(trace_label, "positions", positions) + chunk_sizer.log_df(trace_label, "rands", rands) del probs - chunk.log_df(trace_label, "probs", None) + chunk_sizer.log_df(trace_label, "probs", None) # shouldn't have chosen any of the dummy pad utilities assert positions.max() < max_sample_count @@ -354,15 +368,15 @@ def choose_tour_leg_pattern(trip_segment, patterns, spec, trace_label="trace_lab # resulting pandas Int64Index has one element per chooser row and is in same order as choosers choices = tour_choosers[PATTERN_ID].take(positions + first_row_offsets) - chunk.log_df(trace_label, "choices", choices) + chunk_sizer.log_df(trace_label, "choices", choices) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( choices, tracing.extend_trace_label(trace_label, "choices"), columns=[None, PATTERN_ID], ) - tracing.trace_df( + state.tracing.trace_df( rands, tracing.extend_trace_label(trace_label, "rands"), columns=[None, "rand"], @@ -371,8 +385,7 @@ def choose_tour_leg_pattern(trip_segment, patterns, spec, trace_label="trace_lab return choices -def apply_stage_two_model(omnibus_spec, trips, chunk_size, trace_label): - +def apply_stage_two_model(state, omnibus_spec, trips, chunk_size, trace_label): if not trips.index.is_monotonic: trips = trips.sort_index() @@ -426,10 +439,8 @@ def apply_stage_two_model(omnibus_spec, trips, chunk_size, trace_label): i, chooser_chunk, chunk_trace_label, - ) in chunk.adaptive_chunked_choosers_by_chunk_id( - side_trips, chunk_size, trace_label - ): - + chunk_sizer, + ) in chunk.adaptive_chunked_choosers_by_chunk_id(state, side_trips, trace_label): for is_outbound, trip_segment in chooser_chunk.groupby(OUTBOUND): direction = OUTBOUND if is_outbound else "inbound" spec = get_spec_for_segment(omnibus_spec, direction) @@ -438,7 +449,12 @@ def apply_stage_two_model(omnibus_spec, trips, chunk_size, trace_label): patterns = build_patterns(trip_segment, time_windows) choices = choose_tour_leg_pattern( - trip_segment, patterns, spec, trace_label=segment_trace_label + state, + trip_segment, + patterns, + spec, + trace_label=segment_trace_label, + chunk_sizer=chunk_sizer, ) choices = pd.merge( @@ -466,15 +482,40 @@ def apply_stage_two_model(omnibus_spec, trips, chunk_size, trace_label): return trips["depart"].astype(int) -@inject.step() -def trip_departure_choice(trips, trips_merged, skim_dict, chunk_size, trace_hh_id): +class TripDepartureChoiceSettings(PydanticReadable, extra="forbid"): + """ + Settings for the `trip_departure_choice` component. + """ + + PREPROCESSOR: PreprocessorSettings | None = None + """Setting for the preprocessor.""" - trace_label = "trip_departure_choice" - model_settings = config.read_model_settings("trip_departure_choice.yaml") + SPECIFICATION: str = "trip_departure_choice.csv" + """Filename for the trip departure choice (.csv) file.""" - spec = simulate.read_model_spec(file_name=model_settings["SPECIFICATION"]) + CONSTANTS: dict[str, Any] = {} - trips_merged_df = trips_merged.to_frame() + +@workflow.step +def trip_departure_choice( + state: workflow.State, + trips: pd.DataFrame, + trips_merged: pd.DataFrame, + skim_dict: SkimDict | SkimDataset, + model_settings: TripDepartureChoiceSettings | None = None, + model_settings_file_name: str = "trip_departure_choice.yaml", + trace_label: str = "trip_departure_choice", +) -> None: + + if model_settings is None: + model_settings = TripDepartureChoiceSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + + spec = state.filesystem.read_model_spec(file_name=model_settings.SPECIFICATION) + + trips_merged_df = trips_merged # add tour-based chunk_id so we can chunk all trips in tour together tour_ids = trips_merged[TOUR_ID].unique() trips_merged_df["chunk_id"] = reindex( @@ -488,9 +529,9 @@ def trip_departure_choice(trips, trips_merged, skim_dict, chunk_size, trace_hh_i ) locals_d = config.get_model_constants(model_settings).copy() - preprocessor_settings = model_settings.get("PREPROCESSOR", None) + preprocessor_settings = model_settings.PREPROCESSOR tour_legs = get_tour_legs(trips_merged_df) - pipeline.get_rn_generator().add_channel("tour_legs", tour_legs) + state.get_rn_generator().add_channel("tour_legs", tour_legs) if preprocessor_settings: od_skim = skim_dict.wrap("origin", "destination") @@ -508,18 +549,21 @@ def trip_departure_choice(trips, trips_merged, skim_dict, chunk_size, trace_hh_i ) expressions.assign_columns( + state, df=trips_merged_df, model_settings=preprocessor_settings, locals_dict=locals_d, trace_label=trace_label, ) - choices = apply_stage_two_model(spec, trips_merged_df, chunk_size, trace_label) + choices = apply_stage_two_model( + state, spec, trips_merged_df, state.settings.chunk_size, trace_label + ) - trips_df = trips.to_frame() + trips_df = trips trip_length = len(trips_df) trips_df = pd.concat([trips_df, choices], axis=1) assert len(trips_df) == trip_length assert trips_df[trips_df["depart"].isnull()].empty - pipeline.replace_table("trips", trips_df) + state.add_table("trips", trips_df) diff --git a/activitysim/abm/models/trip_destination.py b/activitysim/abm/models/trip_destination.py index 545cfee29..f4413e00f 100644 --- a/activitysim/abm/models/trip_destination.py +++ b/activitysim/abm/models/trip_destination.py @@ -1,12 +1,18 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -from builtins import range +import warnings from pathlib import Path import numpy as np import pandas as pd +from pydantic import root_validator +from activitysim.abm.models.util.school_escort_tours_trips import ( + split_out_school_escorting_trips, +) from activitysim.abm.models.util.trip import ( cleanup_failed_trips, flag_failed_trip_leg_mates, @@ -15,23 +21,21 @@ from activitysim.core import ( chunk, config, + estimation, expressions, - inject, los, - pipeline, simulate, tracing, + workflow, ) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import LocationComponentSettings from activitysim.core.interaction_sample import interaction_sample from activitysim.core.interaction_sample_simulate import interaction_sample_simulate from activitysim.core.skim_dictionary import DataFrameMatrix from activitysim.core.tracing import print_elapsed_time from activitysim.core.util import assign_in_place, reindex -from ...core.configuration.base import Any, PydanticBase -from .util.school_escort_tours_trips import split_out_school_escorting_trips -from .util import estimation - logger = logging.getLogger(__name__) NO_DESTINATION = -1 @@ -42,50 +46,102 @@ # DEST_MAZ = 'dest_maz' -class TripDestinationSettings(PydanticBase): +class TripDestinationSettings(LocationComponentSettings, extra="forbid"): """Settings for the trip_destination component. .. versionadded:: 1.2 - - Note that this implementation is presently used only for generating - documentation, but future work may migrate the settings implementation to - actually use this pydantic code to validate the settings before running - the model. """ - SAMPLE_SPEC: Path - SPEC: Path - COEFFICIENTS: Path - SAMPLE_SIZE: int - """This many candidate stop locations will be sampled for each choice.""" - DESTINATION_SAMPLE_SPEC: Path - DESTINATION_SPEC: Path - LOGSUM_SETTINGS: Path DEST_CHOICE_LOGSUM_COLUMN_NAME: str = None DEST_CHOICE_SAMPLE_TABLE_NAME: str = None TRIP_ORIGIN: str = "origin" ALT_DEST_COL_NAME: str = "dest_taz" + PRIMARY_ORIGIN: str = "origin" PRIMARY_DEST: str = "tour_leg_dest" # must be created in preprocessor - REDUNDANT_TOURS_MERGED_CHOOSER_COLUMNS: list[str] = None - CONSTANTS: dict[str, Any] = None - preprocessor: Any + REDUNDANT_TOURS_MERGED_CHOOSER_COLUMNS: list[str] | None = None + preprocessor: PreprocessorSettings | None = None CLEANUP: bool fail_some_trips_for_testing: bool = False """This setting is used by testing code to force failed trip_destination.""" + @root_validator(pre=True) + def deprecated_destination_prefix(cls, values): + replacements = { + "DESTINATION_SAMPLE_SPEC": "SAMPLE_SPEC", + "DESTINATION_SPEC": "SPEC", + } + for badkey, goodkey in replacements.items(): + if badkey in values: + if goodkey in values: + if values[badkey] != values[goodkey]: + # both keys are given, with different values -> error + raise ValueError( + f"Deprecated `{badkey}` field must have the " + f"same value as `{goodkey}` if both are provided." + ) + else: + # both keys are given, with same values -> warning + warnings.warn( + f"Use of the field `{badkey}` in the " + "trip_destination configuration file is deprecated, use " + f"just `{goodkey}` instead (currently both are given).", + FutureWarning, + stacklevel=2, + ) + values.pop(badkey) + else: + # only the wrong key is given -> warning + warnings.warn( + f"Use of the field `{badkey}` in the " + "trip_destination configuration file is deprecated, use " + f"`{goodkey}` instead.", + FutureWarning, + stacklevel=2, + ) + values[goodkey] = values[badkey] + values.pop(badkey) + return values + + @property + def DESTINATION_SAMPLE_SPEC(self) -> Path: + """Alias for `SAMPLE_SPEC`. + + .. deprecated:: 1.3 + """ + warnings.warn( + "DESTINATION_SAMPLE_SPEC is deprecated, use SAMPLE_SPEC", + DeprecationWarning, + stacklevel=2, + ) + return self.SAMPLE_SPEC + + @property + def DESTINATION_SPEC(self) -> Path: + """Alias for `SPEC`. + + .. deprecated:: 1.3 + """ + warnings.warn( + "DESTINATION_SPEC is deprecated, use SPEC", + DeprecationWarning, + stacklevel=2, + ) + return self.SPEC + +@workflow.func def _destination_sample( + state: workflow.State, primary_purpose, trips, alternatives, - model_settings, + model_settings: TripDestinationSettings, size_term_matrix, skims, alt_dest_col_name, estimator, - chunk_size, - chunk_tag, - trace_label, + chunk_tag: str, + trace_label: str, zone_layer=None, ): """ @@ -105,24 +161,27 @@ def _destination_sample( """ spec = simulate.spec_for_segment( - model_settings, - spec_id="DESTINATION_SAMPLE_SPEC", + state, + None, + spec_id="SAMPLE_SPEC", segment_name=primary_purpose, estimator=estimator, + spec_file_name=model_settings.SAMPLE_SPEC, + coefficients_file_name=model_settings.COEFFICIENTS, ) - sample_size = model_settings["SAMPLE_SIZE"] - if config.setting("disable_destination_sampling", False) or ( + sample_size = model_settings.SAMPLE_SIZE + if state.settings.disable_destination_sampling or ( estimator and estimator.want_unsampled_alternatives ): # FIXME interaction_sample will return unsampled complete alternatives with probs and pick_count logger.info( - "Estimation mode for %s using unsampled alternatives short_circuit_choices" - % (trace_label,) + f"Estimation mode for {trace_label} using " + f"unsampled alternatives short_circuit_choices" ) sample_size = 0 - locals_dict = config.get_model_constants(model_settings).copy() + locals_dict = model_settings.CONSTANTS.copy() # size_terms of destination zones are purpose-specific, and trips have various purposes # so the relevant size_term for each interaction_sample row @@ -138,9 +197,10 @@ def _destination_sample( ) locals_dict.update(skims) - log_alt_losers = config.setting("log_alt_losers", False) + log_alt_losers = state.settings.log_alt_losers choices = interaction_sample( + state, choosers=trips, alternatives=alternatives, sample_size=sample_size, @@ -150,7 +210,7 @@ def _destination_sample( spec=spec, skims=skims, locals_d=locals_dict, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, chunk_tag=chunk_tag, trace_label=trace_label, zone_layer=zone_layer, @@ -159,24 +219,26 @@ def _destination_sample( return choices +@workflow.func def destination_sample( + state: workflow.State, primary_purpose, trips, alternatives, - model_settings, + model_settings: TripDestinationSettings, size_term_matrix, skim_hotel, estimator, chunk_size, trace_label, ): - chunk_tag = "trip_destination.sample" skims = skim_hotel.sample_skims(presample=False) - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME choices = _destination_sample( + state, primary_purpose, trips, alternatives, @@ -185,7 +247,6 @@ def destination_sample( skims, alt_dest_col_name, estimator, - chunk_size, chunk_tag=chunk_tag, trace_label=trace_label, ) @@ -194,7 +255,6 @@ def destination_sample( def aggregate_size_term_matrix(maz_size_term_matrix, network_los): - df = maz_size_term_matrix.df assert ALT_DEST_TAZ not in df @@ -207,7 +267,13 @@ def aggregate_size_term_matrix(maz_size_term_matrix, network_los): def choose_MAZ_for_TAZ( - taz_sample, MAZ_size_terms, trips, network_los, alt_dest_col_name, trace_label + state, + taz_sample, + MAZ_size_terms, + trips, + network_los, + alt_dest_col_name, + trace_label, ): """ Convert taz_sample table with TAZ zone sample choices to a table with a MAZ zone chosen for each TAZ @@ -235,14 +301,14 @@ def choose_MAZ_for_TAZ( taz_sample.rename(columns={alt_dest_col_name: DEST_TAZ}, inplace=True) - trace_hh_id = inject.get_injectable("trace_hh_id", None) - have_trace_targets = trace_hh_id and tracing.has_trace_targets(taz_sample) + trace_hh_id = state.settings.trace_hh_id + have_trace_targets = trace_hh_id and state.tracing.has_trace_targets(taz_sample) if have_trace_targets: trace_label = tracing.extend_trace_label(trace_label, "choose_MAZ_for_TAZ") # write taz choices, pick_counts, probs - trace_targets = tracing.trace_targets(taz_sample) - tracing.trace_df( + trace_targets = state.tracing.trace_targets(taz_sample) + state.tracing.trace_df( taz_sample[trace_targets], label=tracing.extend_trace_label(trace_label, "taz_sample"), transpose=False, @@ -298,7 +364,8 @@ def choose_MAZ_for_TAZ( # (preserve index, which will have duplicates as result of join) maz_taz = ( - network_los.get_maz_to_taz_series.rename(DEST_TAZ) + network_los.get_maz_to_taz_series(state) + .rename(DEST_TAZ) .rename_axis(index=DEST_MAZ) .to_frame() .reset_index() @@ -323,9 +390,11 @@ def choose_MAZ_for_TAZ( if have_trace_targets: # write maz_sizes: maz_sizes[index,trip_id,dest_TAZ,zone_id,size_term] - maz_sizes_trace_targets = tracing.trace_targets(maz_sizes, slicer="trip_id") + maz_sizes_trace_targets = state.tracing.trace_targets( + maz_sizes, slicer="trip_id" + ) trace_maz_sizes = maz_sizes[maz_sizes_trace_targets] - tracing.trace_df( + state.tracing.trace_df( trace_maz_sizes, label=tracing.extend_trace_label(trace_label, "maz_sizes"), transpose=False, @@ -358,7 +427,7 @@ def choose_MAZ_for_TAZ( assert maz_probs.shape == (num_choosers * taz_sample_size, max_maz_count) rands = ( - pipeline.get_rn_generator() + state.get_rn_generator() .random_for_df(chooser_df, n=taz_sample_size) .reshape(-1, 1) ) @@ -378,10 +447,11 @@ def choose_MAZ_for_TAZ( taz_choices["prob"] = taz_choices["TAZ_prob"] * taz_choices["MAZ_prob"] if have_trace_targets: - - taz_choices_trace_targets = tracing.trace_targets(taz_choices, slicer="trip_id") + taz_choices_trace_targets = state.tracing.trace_targets( + taz_choices, slicer="trip_id" + ) trace_taz_choices_df = taz_choices[taz_choices_trace_targets] - tracing.trace_df( + state.tracing.trace_df( trace_taz_choices_df, label=tracing.extend_trace_label(trace_label, "taz_choices"), transpose=False, @@ -407,7 +477,7 @@ def choose_MAZ_for_TAZ( index=trace_taz_choices_df.index, ) df = pd.concat([lhs_df, df], axis=1) - tracing.trace_df( + state.tracing.trace_df( df, label=tracing.extend_trace_label(trace_label, "dest_maz_alts"), transpose=False, @@ -423,7 +493,7 @@ def choose_MAZ_for_TAZ( index=trace_taz_choices_df.index, ) df = pd.concat([lhs_df, df], axis=1) - tracing.trace_df( + state.tracing.trace_df( df, label=tracing.extend_trace_label(trace_label, "dest_maz_size_terms"), transpose=False, @@ -437,7 +507,7 @@ def choose_MAZ_for_TAZ( ) df = pd.concat([lhs_df, df], axis=1) df["rand"] = rands[taz_choices_trace_targets] - tracing.trace_df( + state.tracing.trace_df( df, label=tracing.extend_trace_label(trace_label, "dest_maz_probs"), transpose=False, @@ -453,29 +523,28 @@ def choose_MAZ_for_TAZ( return taz_choices +@workflow.func def destination_presample( + state: workflow.State, primary_purpose, trips, alternatives, - model_settings, + model_settings: TripDestinationSettings, size_term_matrix, skim_hotel, network_los, estimator, - chunk_size, - trace_hh_id, trace_label, ): - trace_label = tracing.extend_trace_label(trace_label, "presample") chunk_tag = "trip_destination.presample" # distinguish from trip_destination.sample - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME TAZ_size_term_matrix = aggregate_size_term_matrix(size_term_matrix, network_los) - TRIP_ORIGIN = model_settings["TRIP_ORIGIN"] - PRIMARY_DEST = model_settings["PRIMARY_DEST"] + TRIP_ORIGIN = model_settings.TRIP_ORIGIN + PRIMARY_DEST = model_settings.PRIMARY_DEST trips_taz = trips.copy() trips_taz[TRIP_ORIGIN] = network_los.map_maz_to_taz(trips_taz[TRIP_ORIGIN]) @@ -494,6 +563,7 @@ def destination_presample( skims = skim_hotel.sample_skims(presample=True) taz_sample = _destination_sample( + state, primary_purpose, trips_taz, alternatives, @@ -502,7 +572,6 @@ def destination_presample( skims, alt_dest_col_name, estimator, - chunk_size, chunk_tag=chunk_tag, trace_label=trace_label, zone_layer="taz", @@ -510,7 +579,13 @@ def destination_presample( # choose a MAZ for each DEST_TAZ choice, choice probability based on MAZ size_term fraction of TAZ total maz_sample = choose_MAZ_for_TAZ( - taz_sample, size_term_matrix, trips, network_los, alt_dest_col_name, trace_label + state, + taz_sample, + size_term_matrix, + trips, + network_los, + alt_dest_col_name, + trace_label, ) assert alt_dest_col_name in maz_sample @@ -519,6 +594,7 @@ def destination_presample( def trip_destination_sample( + state: workflow.State, primary_purpose, trips, alternatives, @@ -527,7 +603,6 @@ def trip_destination_sample( skim_hotel, estimator, chunk_size, - trace_hh_id, trace_label, ): """ @@ -552,9 +627,9 @@ def trip_destination_sample( assert len(alternatives) > 0 # by default, enable presampling for multizone systems, unless they disable it in settings file - network_los = inject.get_injectable("network_los") + network_los = state.get_injectable("network_los") pre_sample_taz = network_los.zone_system != los.ONE_ZONE - if pre_sample_taz and not config.setting("want_dest_choice_presampling", True): + if pre_sample_taz and not state.settings.want_dest_choice_presampling: pre_sample_taz = False logger.info( f"Disabled destination zone presampling for {trace_label} " @@ -562,13 +637,13 @@ def trip_destination_sample( ) if pre_sample_taz: - logger.info( "Running %s trip_destination_presample with %d trips" % (trace_label, len(trips)) ) choices = destination_presample( + state, primary_purpose, trips, alternatives, @@ -577,13 +652,12 @@ def trip_destination_sample( skim_hotel, network_los, estimator, - chunk_size, - trace_hh_id, trace_label, ) else: choices = destination_sample( + state, primary_purpose, trips, alternatives, @@ -598,7 +672,9 @@ def trip_destination_sample( return choices +@workflow.func def compute_ood_logsums( + state: workflow.State, choosers, logsum_settings, nest_spec, @@ -623,13 +699,16 @@ def compute_ood_logsums( # in `chunk.chunk_log()` at chunk.py L927. To avoid failing this assertion, # the preprocessor must be called from within a "null chunker" as follows: with chunk.chunk_log( - tracing.extend_trace_label(trace_label, "annotate_preprocessor"), base=True + state, + tracing.extend_trace_label(trace_label, "annotate_preprocessor"), + base=True, ): expressions.annotate_preprocessors( - choosers, locals_dict, od_skims, logsum_settings, trace_label + state, choosers, locals_dict, od_skims, logsum_settings, trace_label ) logsums = simulate.simple_simulate_logsums( + state, choosers, logsum_spec, nest_spec, @@ -649,14 +728,14 @@ def compute_ood_logsums( def compute_logsums( + state: workflow.State, primary_purpose, - trips, + trips: pd.DataFrame, destination_sample, - tours_merged, - model_settings, + tours_merged: pd.DataFrame, + model_settings: TripDestinationSettings, skim_hotel, - chunk_size, - trace_label, + trace_label: str, ): """ Calculate mode choice logsums using the same recipe as for trip_mode_choice, but do it twice @@ -674,7 +753,7 @@ def compute_logsums( chunk_tag = "trip_destination.compute_logsums" # FIXME should pass this in? - network_los = inject.get_injectable("network_los") + network_los = state.get_injectable("network_los") # - trips_merged - merge trips and tours_merged trips_merged = pd.merge( @@ -694,14 +773,20 @@ def compute_logsums( ).set_index("trip_id") assert choosers.index.equals(destination_sample.index) - logsum_settings = config.read_model_settings(model_settings["LOGSUM_SETTINGS"]) - coefficients = simulate.get_segment_coefficients(logsum_settings, primary_purpose) + logsum_settings = state.filesystem.read_model_settings( + model_settings.LOGSUM_SETTINGS + ) + coefficients = state.filesystem.get_segment_coefficients( + logsum_settings, primary_purpose + ) nest_spec = config.get_logit_model_settings(logsum_settings) nest_spec = simulate.eval_nest_coefficients(nest_spec, coefficients, trace_label) - logsum_spec = simulate.read_model_spec(file_name=logsum_settings["SPEC"]) - logsum_spec = simulate.eval_coefficients(logsum_spec, coefficients, estimator=None) + logsum_spec = state.filesystem.read_model_spec(file_name=logsum_settings["SPEC"]) + logsum_spec = simulate.eval_coefficients( + state, logsum_spec, coefficients, estimator=None + ) locals_dict = {} locals_dict.update(config.get_model_constants(logsum_settings)) @@ -719,8 +804,8 @@ def compute_logsums( # - od_logsums od_skims = { - "ORIGIN": model_settings["TRIP_ORIGIN"], - "DESTINATION": model_settings["ALT_DEST_COL_NAME"], + "ORIGIN": model_settings.TRIP_ORIGIN, + "DESTINATION": model_settings.ALT_DEST_COL_NAME, "odt_skims": skims["odt_skims"], "dot_skims": skims["dot_skims"], "od_skims": skims["od_skims"], @@ -734,21 +819,22 @@ def compute_logsums( } ) destination_sample["od_logsum"] = compute_ood_logsums( + state, choosers, logsum_settings, nest_spec, logsum_spec, od_skims, locals_dict, - chunk_size, + state.settings.chunk_size, trace_label=tracing.extend_trace_label(trace_label, "od"), chunk_tag=chunk_tag, ) # - dp_logsums dp_skims = { - "ORIGIN": model_settings["ALT_DEST_COL_NAME"], - "DESTINATION": model_settings["PRIMARY_DEST"], + "ORIGIN": model_settings.ALT_DEST_COL_NAME, + "DESTINATION": model_settings.PRIMARY_DEST, "odt_skims": skims["dpt_skims"], "dot_skims": skims["pdt_skims"], "od_skims": skims["dp_skims"], @@ -762,13 +848,14 @@ def compute_logsums( ) destination_sample["dp_logsum"] = compute_ood_logsums( + state, choosers, logsum_settings, nest_spec, logsum_spec, dp_skims, locals_dict, - chunk_size, + state.settings.chunk_size, trace_label=tracing.extend_trace_label(trace_label, "dp"), chunk_tag=chunk_tag, ) @@ -777,16 +864,15 @@ def compute_logsums( def trip_destination_simulate( + state: workflow.State, primary_purpose, trips, destination_sample, - model_settings, + model_settings: TripDestinationSettings, want_logsums, size_term_matrix, skim_hotel, estimator, - chunk_size, - trace_hh_id, trace_label, ): """ @@ -802,28 +888,38 @@ def trip_destination_simulate( chunk_tag = "trip_destination.simulate" spec = simulate.spec_for_segment( - model_settings, - spec_id="DESTINATION_SPEC", + state, + None, + spec_id="SPEC", segment_name=primary_purpose, estimator=estimator, + spec_file_name=model_settings.SPEC, + coefficients_file_name=model_settings.COEFFICIENTS, ) if estimator: estimator.write_choosers(trips) - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME logger.info("Running trip_destination_simulate with %d trips", len(trips)) skims = skim_hotel.sample_skims(presample=False) - if not np.issubdtype(trips["trip_period"].dtype, np.integer): + if isinstance(trips["trip_period"].dtype, pd.api.types.CategoricalDtype): + if hasattr(skims["odt_skims"], "map_time_periods"): + trip_period_idx = skims["odt_skims"].map_time_periods(trips) + if trip_period_idx is not None: + trips["trip_period"] = trip_period_idx + elif not np.issubdtype(trips["trip_period"].dtype, np.integer): if hasattr(skims["odt_skims"], "map_time_periods"): trip_period_idx = skims["odt_skims"].map_time_periods(trips) if trip_period_idx is not None: trips["trip_period"] = trip_period_idx + else: + None - locals_dict = config.get_model_constants(model_settings).copy() + locals_dict = model_settings.CONSTANTS.copy() locals_dict.update( { "size_terms": size_term_matrix, @@ -833,8 +929,9 @@ def trip_destination_simulate( ) locals_dict.update(skims) - log_alt_losers = config.setting("log_alt_losers", False) + log_alt_losers = state.settings.log_alt_losers destinations = interaction_sample_simulate( + state, choosers=trips, alternatives=destination_sample, spec=spec, @@ -845,7 +942,7 @@ def trip_destination_simulate( zero_prob_choice_val=NO_DESTINATION, skims=skims, locals_d=locals_dict, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, chunk_tag=chunk_tag, trace_label=trace_label, trace_choice_name="trip_dest", @@ -874,28 +971,29 @@ def trip_destination_simulate( return destinations +@workflow.func def choose_trip_destination( + state: workflow.State, primary_purpose, trips, alternatives, tours_merged, - model_settings, + model_settings: TripDestinationSettings, want_logsums, want_sample_table, size_term_matrix, skim_hotel, estimator, chunk_size, - trace_hh_id, trace_label, ): - logger.info("choose_trip_destination %s with %d trips", trace_label, trips.shape[0]) t0 = print_elapsed_time() # - trip_destination_sample destination_sample = trip_destination_sample( + state, primary_purpose=primary_purpose, trips=trips, alternatives=alternatives, @@ -904,7 +1002,6 @@ def choose_trip_destination( skim_hotel=skim_hotel, estimator=estimator, chunk_size=chunk_size, - trace_hh_id=trace_hh_id, trace_label=trace_label, ) @@ -924,20 +1021,20 @@ def choose_trip_destination( # - compute logsums destination_sample = compute_logsums( + state, primary_purpose=primary_purpose, trips=trips, destination_sample=destination_sample, tours_merged=tours_merged, model_settings=model_settings, skim_hotel=skim_hotel, - chunk_size=chunk_size, trace_label=trace_label, ) t0 = print_elapsed_time("%s.compute_logsums" % trace_label, t0) - # - trip_destination_simulate destinations = trip_destination_simulate( + state, primary_purpose=primary_purpose, trips=trips, destination_sample=destination_sample, @@ -946,8 +1043,6 @@ def choose_trip_destination( size_term_matrix=size_term_matrix, skim_hotel=skim_hotel, estimator=estimator, - chunk_size=chunk_size, - trace_hh_id=trace_hh_id, trace_label=trace_label, ) @@ -962,7 +1057,7 @@ def choose_trip_destination( if want_sample_table: # FIXME - sample_table destination_sample.set_index( - model_settings["ALT_DEST_COL_NAME"], append=True, inplace=True + model_settings.ALT_DEST_COL_NAME, append=True, inplace=True ) else: destination_sample = None @@ -972,20 +1067,23 @@ def choose_trip_destination( return destinations, destination_sample -class SkimHotel(object): - def __init__(self, model_settings, network_los, trace_label): - +class SkimHotel: + def __init__( + self, + model_settings: TripDestinationSettings, + network_los: los.Network_LOS, + trace_label: str, + ): self.model_settings = model_settings self.trace_label = tracing.extend_trace_label(trace_label, "skim_hotel") self.network_los = network_los self.zone_system = network_los.zone_system def sample_skims(self, presample): - - o = self.model_settings["TRIP_ORIGIN"] - d = self.model_settings["ALT_DEST_COL_NAME"] - n = self.model_settings.get("PRIMARY_ORIGIN", "origin") - p = self.model_settings["PRIMARY_DEST"] + o = self.model_settings.TRIP_ORIGIN + d = self.model_settings.ALT_DEST_COL_NAME + n = self.model_settings.PRIMARY_ORIGIN + p = self.model_settings.PRIMARY_DEST if presample: assert not (self.zone_system == los.ONE_ZONE) @@ -1027,10 +1125,9 @@ def sample_skims(self, presample): return skims def logsum_skims(self): - - o = self.model_settings["TRIP_ORIGIN"] - d = self.model_settings["ALT_DEST_COL_NAME"] - p = self.model_settings["PRIMARY_DEST"] + o = self.model_settings.TRIP_ORIGIN + d = self.model_settings.ALT_DEST_COL_NAME + p = self.model_settings.PRIMARY_DEST skim_dict = self.network_los.get_default_skim_dict() skims = { @@ -1099,14 +1196,17 @@ def logsum_skims(self): return skims +@workflow.func def run_trip_destination( - trips, - tours_merged, - estimator, - chunk_size, - trace_hh_id, - trace_label, - fail_some_trips_for_testing=False, + state: workflow.State, + trips: pd.DataFrame, + tours_merged: pd.DataFrame, + estimator: estimation.Estimator | None, + chunk_size: int, + trace_label: str, + fail_some_trips_for_testing: bool = False, + model_settings: TripDestinationSettings | None = None, + model_settings_file_name: str = "trip_destination.yaml", ): """ trip destination - main functionality separated from model step so it can be called iteratively @@ -1119,35 +1219,41 @@ def run_trip_destination( Parameters ---------- - trips - tours_merged - want_sample_table - chunk_size - trace_hh_id - trace_label + state : workflow.State + trips : pd.DataFrame + tours_merged : pd.DataFrame + estimator + chunk_size : int + trace_label : str + fail_some_trips_for_testing : bool, default False + model_settings : TripDestinationSettings, optional + model_settings_file_name : str, default "trip_destination.yaml" Returns ------- - + trips : pd.DataFrame + sample_list : pd.DataFrame """ + if model_settings is None: + model_settings = TripDestinationSettings.read_settings_file( + state.filesystem, model_settings_file_name + ) + preprocessor_settings = model_settings.preprocessor + logsum_settings = state.filesystem.read_model_settings( + model_settings.LOGSUM_SETTINGS + ) - model_settings_file_name = "trip_destination.yaml" - model_settings = config.read_model_settings(model_settings_file_name) - preprocessor_settings = model_settings.get("preprocessor", None) - logsum_settings = config.read_model_settings(model_settings["LOGSUM_SETTINGS"]) - - logsum_column_name = model_settings.get("DEST_CHOICE_LOGSUM_COLUMN_NAME") + logsum_column_name = model_settings.DEST_CHOICE_LOGSUM_COLUMN_NAME want_logsums = logsum_column_name is not None - sample_table_name = model_settings.get("DEST_CHOICE_SAMPLE_TABLE_NAME") + sample_table_name = model_settings.DEST_CHOICE_SAMPLE_TABLE_NAME want_sample_table = ( - config.setting("want_dest_choice_sample_tables") - and sample_table_name is not None + state.settings.want_dest_choice_sample_tables and sample_table_name is not None ) - land_use = inject.get_table("land_use") - size_terms = inject.get_injectable("size_terms") - network_los = inject.get_injectable("network_los") + land_use = state.get_dataframe("land_use") + size_terms = state.get_injectable("size_terms") + network_los = state.get_injectable("network_los") trips = trips.sort_index() trips["next_trip_id"] = np.roll(trips.index, -1) trips.next_trip_id = trips.next_trip_id.where(trips.trip_num < trips.trip_count, 0) @@ -1162,7 +1268,7 @@ def run_trip_destination( # stop_frequency step calls trip.initialize_from_tours. But if this module is being # called from trip_destination_and_purpose, these columns will have been deleted # so they must be re-created - if pipeline.get_rn_generator().step_name == "trip_purpose_and_destination": + if state.get_rn_generator().step_name == "trip_purpose_and_destination": trips["destination"] = np.where(trips.outbound, tour_destination, tour_origin) trips["origin"] = np.where(trips.outbound, tour_origin, tour_destination) trips["failed"] = False @@ -1204,11 +1310,11 @@ def run_trip_destination( # - filter tours_merged (AFTER copying destination and origin columns to trips) # tours_merged is used for logsums, we filter it here upfront to save space and time tours_merged_cols = logsum_settings["TOURS_MERGED_CHOOSER_COLUMNS"] - redundant_cols = model_settings.get("REDUNDANT_TOURS_MERGED_CHOOSER_COLUMNS", []) + redundant_cols = model_settings.REDUNDANT_TOURS_MERGED_CHOOSER_COLUMNS or [] if redundant_cols: tours_merged_cols = [c for c in tours_merged_cols if c not in redundant_cols] - assert model_settings["PRIMARY_DEST"] not in tours_merged_cols + assert model_settings.PRIMARY_DEST not in tours_merged_cols tours_merged = tours_merged[tours_merged_cols] # - skims @@ -1224,20 +1330,18 @@ def run_trip_destination( # don't need size terms in alternatives, just zone_id index alternatives = alternatives.drop(alternatives.columns, axis=1) - alternatives.index.name = model_settings["ALT_DEST_COL_NAME"] + alternatives.index.name = model_settings.ALT_DEST_COL_NAME sample_list = [] # - process intermediate trips in ascending trip_num order intermediate = trips.trip_num < trips.trip_count if intermediate.any(): - first_trip_num = trips[intermediate].trip_num.min() last_trip_num = trips[intermediate].trip_num.max() # iterate over trips in ascending trip_num order for trip_num in range(first_trip_num, last_trip_num + 1): - nth_trips = trips[intermediate & (trips.trip_num == trip_num)] nth_trace_label = tracing.extend_trace_label( trace_label, "trip_num_%s" % trip_num @@ -1247,18 +1351,29 @@ def run_trip_destination( "network_los": network_los, "size_terms": size_term_matrix, } - locals_dict.update(config.get_model_constants(model_settings)) + locals_dict.update(model_settings.CONSTANTS) # - annotate nth_trips if preprocessor_settings: expressions.assign_columns( + state, df=nth_trips, model_settings=preprocessor_settings, locals_dict=locals_dict, trace_label=nth_trace_label, ) - if not np.issubdtype(nth_trips["trip_period"].dtype, np.integer): + if isinstance( + nth_trips["trip_period"].dtype, pd.api.types.CategoricalDtype + ): + skims = network_los.get_default_skim_dict() + if hasattr(skims, "map_time_periods_from_series"): + trip_period_idx = skims.map_time_periods_from_series( + nth_trips["trip_period"] + ) + if trip_period_idx is not None: + nth_trips["trip_period"] = trip_period_idx + elif not np.issubdtype(nth_trips["trip_period"].dtype, np.integer): skims = network_los.get_default_skim_dict() if hasattr(skims, "map_time_periods_from_series"): trip_period_idx = skims.map_time_periods_from_series( @@ -1266,13 +1381,18 @@ def run_trip_destination( ) if trip_period_idx is not None: nth_trips["trip_period"] = trip_period_idx + else: + None logger.info("Running %s with %d trips", nth_trace_label, nth_trips.shape[0]) # - choose destination for nth_trips, segmented by primary_purpose choices_list = [] - for primary_purpose, trips_segment in nth_trips.groupby("primary_purpose"): + for primary_purpose, trips_segment in nth_trips.groupby( + "primary_purpose", observed=True + ): choices, destination_sample = choose_trip_destination( + state, primary_purpose, trips_segment, alternatives, @@ -1284,7 +1404,6 @@ def run_trip_destination( skim_hotel, estimator, chunk_size, - trace_hh_id, trace_label=tracing.extend_trace_label( nth_trace_label, primary_purpose ), @@ -1324,18 +1443,31 @@ def run_trip_destination( # - assign choices to this trip's destinations # if estimator, then the choices will already have been overridden by trip_destination_simulate # because we need to overwrite choices before any failed choices are suppressed - assign_in_place(trips, destinations_df.choice.to_frame("destination")) + assign_in_place( + trips, + destinations_df.choice.to_frame("destination"), + state.settings.downcast_int, + state.settings.downcast_float, + ) if want_logsums: assert "logsum" in destinations_df.columns assign_in_place( - trips, destinations_df.logsum.to_frame(logsum_column_name) + trips, + destinations_df.logsum.to_frame(logsum_column_name), + state.settings.downcast_int, + state.settings.downcast_float, ) # - assign choice to next trip's origin destinations_df.index = nth_trips.next_trip_id.reindex( destinations_df.index ) - assign_in_place(trips, destinations_df.choice.to_frame("origin")) + assign_in_place( + trips, + destinations_df.choice.to_frame("origin"), + state.settings.downcast_int, + state.settings.downcast_float, + ) del trips["next_trip_id"] @@ -1348,8 +1480,15 @@ def run_trip_destination( return trips, save_sample_df -@inject.step() -def trip_destination(trips, tours_merged, chunk_size, trace_hh_id): +@workflow.step +def trip_destination( + state: workflow.State, + trips: pd.DataFrame, + tours_merged: pd.DataFrame, + model_settings: TripDestinationSettings | None = None, + model_settings_file_name: str = "trip_destination.yaml", + trace_label: str = "trip_destination", +) -> None: """ Choose a destination for all intermediate trips based on trip purpose. @@ -1364,69 +1503,66 @@ def trip_destination(trips, tours_merged, chunk_size, trace_hh_id): Parameters ---------- - trips : orca.DataFrameWrapper + state : workflow.State + trips : DataFrame The trips table. This table is edited in-place to add the trip destinations. - tours_merged : orca.DataFrameWrapper + tours_merged : DataFrame The tours table, with columns merge from persons and households as well. - chunk_size : int - If non-zero, iterate over trips using this chunk size. - trace_hh_id : int or list[int] - Generate trace output for these households. - + model_settings : TripDestinationSettings, optional + The settings used in this model component. If not provided, they are + loaded out of the configs directory YAML file referenced by + the `model_settings_file_name` argument. + model_settings_file_name : str, default "trip_destination.yaml" + This is where model setting are found if `model_settings` is not given + explicitly. The same filename is also used to write settings files to + the estimation data bundle in estimation mode. + trace_label : str, default "free_parking" + This label is used for various tracing purposes. """ - trace_label = "trip_destination" - - model_settings_file_name = "trip_destination.yaml" - model_settings = config.read_model_settings(model_settings_file_name) - - CLEANUP = model_settings.get("CLEANUP", True) - fail_some_trips_for_testing = model_settings.get( - "fail_some_trips_for_testing", False - ) + if model_settings is None: + model_settings = TripDestinationSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - trips_df = trips.to_frame() - tours_merged_df = tours_merged.to_frame() + fail_some_trips_for_testing = model_settings.fail_some_trips_for_testing + trips_df = trips + tours_merged_df = tours_merged - if pipeline.is_table("school_escort_trips"): - school_escort_trips = pipeline.get_table("school_escort_trips") + if state.is_table("school_escort_trips"): + school_escort_trips = state.get_dataframe("school_escort_trips") # separate out school escorting trips to exclude them from the model and estimation data bundle trips_df, se_trips_df, full_trips_index = split_out_school_escorting_trips( trips_df, school_escort_trips ) - estimator = estimation.manager.begin_estimation("trip_destination") + estimator = estimation.manager.begin_estimation(state, "trip_destination") if estimator: - estimator.write_coefficients(model_settings=model_settings) - # estimator.write_spec(model_settings, tag='SAMPLE_SPEC') - estimator.write_spec(model_settings, tag="SPEC") - estimator.set_alt_id(model_settings["ALT_DEST_COL_NAME"]) - estimator.write_table( - inject.get_injectable("size_terms"), "size_terms", append=False - ) + estimator.write_coefficients(file_name=model_settings.COEFFICIENTS) + estimator.write_spec(file_name=model_settings.SPEC, tag="SPEC") + estimator.set_alt_id(model_settings.ALT_DEST_COL_NAME) estimator.write_table( - inject.get_table("land_use").to_frame(), "landuse", append=False + state.get_injectable("size_terms"), "size_terms", append=False ) + estimator.write_table(state.get_dataframe("land_use"), "landuse", append=False) estimator.write_model_settings(model_settings, model_settings_file_name) logger.info("Running %s with %d trips", trace_label, trips_df.shape[0]) trips_df, save_sample_df = run_trip_destination( + state, trips_df, tours_merged_df, estimator=estimator, - chunk_size=chunk_size, - trace_hh_id=trace_hh_id, + chunk_size=state.settings.chunk_size, trace_label=trace_label, fail_some_trips_for_testing=fail_some_trips_for_testing, ) # testing feature t0 make sure at least one trip fails so trip_purpose_and_destination model is run - if ( - config.setting("testing_fail_trip_destination", False) - and not trips_df.failed.any() - ): + if state.settings.testing_fail_trip_destination and not trips_df.failed.any(): if (trips_df.trip_num < trips_df.trip_count).sum() == 0: raise RuntimeError( "can't honor 'testing_fail_trip_destination' setting because no intermediate trips" @@ -1439,12 +1575,12 @@ def trip_destination(trips, tours_merged, chunk_size, trace_hh_id): if trips_df.failed.any(): logger.warning("%s %s failed trips", trace_label, trips_df.failed.sum()) - if inject.get_injectable("pipeline_file_prefix", None): - file_name = f"{trace_label}_failed_trips_{inject.get_injectable('pipeline_file_prefix')}" + if state.get_injectable("pipeline_file_prefix", None): + file_name = f"{trace_label}_failed_trips_{state.get_injectable('pipeline_file_prefix')}" else: file_name = f"{trace_label}_failed_trips" logger.info("writing failed trips to %s", file_name) - tracing.write_csv( + state.tracing.write_csv( trips_df[trips_df.failed], file_name=file_name, transpose=False ) @@ -1453,8 +1589,7 @@ def trip_destination(trips, tours_merged, chunk_size, trace_hh_id): # no trips should have failed since we overwrite choices and sample should have not failed trips assert not trips_df.failed.any() - if CLEANUP: - + if model_settings.CLEANUP: if trips_df.failed.any(): flag_failed_trip_leg_mates(trips_df, "failed") @@ -1467,7 +1602,7 @@ def trip_destination(trips, tours_merged, chunk_size, trace_hh_id): trips_df.drop(columns="failed", inplace=True, errors="ignore") - if pipeline.is_table("school_escort_trips"): + if state.is_table("school_escort_trips"): # setting destination for school escort trips se_trips_df["destination"] = reindex( school_escort_trips.destination, se_trips_df.index @@ -1479,15 +1614,15 @@ def trip_destination(trips, tours_merged, chunk_size, trace_hh_id): # Origin is previous destination # (leaving first origin alone as it's already set correctly) trips_df["origin"] = np.where( - (trips_df["trip_num"] == 1) & (trips_df["outbound"] == True), + (trips_df["trip_num"] == 1) & (trips_df["outbound"] == 1), trips_df["origin"], trips_df.groupby("tour_id")["destination"].shift(), ).astype(int) - pipeline.replace_table("trips", trips_df) + state.add_table("trips", trips_df) - if trace_hh_id: - tracing.trace_df( + if state.settings.trace_hh_id: + state.tracing.trace_df( trips_df, label=trace_label, slicer="trip_id", @@ -1503,14 +1638,12 @@ def trip_destination(trips, tours_merged, chunk_size, trace_hh_id): trips_df[trips_df.trip_num < trips_df.trip_count] ) - sample_table_name = model_settings.get("DEST_CHOICE_SAMPLE_TABLE_NAME") + sample_table_name = model_settings.DEST_CHOICE_SAMPLE_TABLE_NAME assert sample_table_name is not None - logger.info( - "adding %s samples to %s" % (len(save_sample_df), sample_table_name) - ) + logger.info(f"adding {len(save_sample_df)} samples to {sample_table_name}") # lest they try to put tour samples into the same table - if pipeline.is_table(sample_table_name): + if state.is_table(sample_table_name): raise RuntimeError("sample table %s already exists" % sample_table_name) - pipeline.extend_table(sample_table_name, save_sample_df) + state.extend_table(sample_table_name, save_sample_df) diff --git a/activitysim/abm/models/trip_matrices.py b/activitysim/abm/models/trip_matrices.py index 0c9e1f447..12c2e4f6a 100644 --- a/activitysim/abm/models/trip_matrices.py +++ b/activitysim/abm/models/trip_matrices.py @@ -1,19 +1,59 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import logging +from pathlib import Path +from typing import Any import numpy as np import openmatrix as omx import pandas as pd -from activitysim.core import config, expressions, inject, los, pipeline +from activitysim.core import config, expressions, los, workflow +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import LogitComponentSettings logger = logging.getLogger(__name__) -@inject.step() -def write_trip_matrices(network_los): +class MatrixTableSettings(PydanticReadable): + name: str + data_field: str + + +class MatrixSettings(PydanticReadable): + file_name: Path + tables: list[MatrixTableSettings] = [] + is_tap: bool = False + + +class WriteTripMatricesSettings(PydanticReadable): + """ + Settings for the `write_trip_matrices` component. + """ + + SAVE_TRIPS_TABLE: bool = False + """Save trip tables""" + + HH_EXPANSION_WEIGHT_COL: str = "sample_rate" + """Column represents the sampling rate of households""" + + MATRICES: list[MatrixSettings] = [] + + CONSTANTS: dict[str, Any] = {} + + preprocessor: PreprocessorSettings | None = None + + +@workflow.step(copy_tables=["trips"]) +def write_trip_matrices( + state: workflow.State, + network_los: los.Network_LOS, + trips: pd.DataFrame, + model_settings: WriteTripMatricesSettings | None = None, + model_settings_file_name: str = "write_trip_matrices.yaml", +) -> None: """ Write trip matrices step. @@ -32,7 +72,6 @@ def write_trip_matrices(network_los): """ - trips = inject.get_table("trips", None) if trips is None: # this step is a NOP if there is no trips table # this might legitimately happen if they comment out some steps to debug but still want write_tables @@ -42,14 +81,21 @@ def write_trip_matrices(network_los): ) return - model_settings = config.read_model_settings("write_trip_matrices.yaml") - trips_df = annotate_trips(trips, network_los, model_settings) + if model_settings is None: + model_settings = WriteTripMatricesSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - if bool(model_settings.get("SAVE_TRIPS_TABLE")): - pipeline.replace_table("trips", trips_df) + trips_df = annotate_trips(state, trips, network_los, model_settings) - if "parking_location" in config.setting("models"): - parking_settings = config.read_model_settings("parking_location_choice.yaml") + if model_settings.SAVE_TRIPS_TABLE: + state.add_table("trips", trips_df) + + if "parking_location" in state.settings.models: + parking_settings = state.filesystem.read_model_settings( + "parking_location_choice.yaml" + ) parking_taz_col_name = parking_settings["ALT_DEST_COL_NAME"] if parking_taz_col_name in trips_df: # TODO make parking zone negative, not zero, if not used @@ -66,7 +112,7 @@ def write_trip_matrices(network_los): ) # use the average household weight for all trips in the origin destination pair - hh_weight_col = model_settings.get("HH_EXPANSION_WEIGHT_COL") + hh_weight_col = model_settings.HH_EXPANSION_WEIGHT_COL aggregate_weight = ( trips_df[["origin", "destination", hh_weight_col]] .groupby(["origin", "destination"], sort=False) @@ -78,7 +124,7 @@ def write_trip_matrices(network_los): dest_vals = aggregate_trips.index.get_level_values("destination") # use the land use table for the set of possible tazs - land_use = pipeline.get_table("land_use") + land_use = state.get_dataframe("land_use") zone_index = land_use.index assert all(zone in zone_index for zone in orig_vals) assert all(zone in zone_index for zone in dest_vals) @@ -92,23 +138,25 @@ def write_trip_matrices(network_los): zone_labels = land_use.index write_matrices( - aggregate_trips, zone_labels, orig_index, dest_index, model_settings + state, aggregate_trips, zone_labels, orig_index, dest_index, model_settings ) elif network_los.zone_system == los.TWO_ZONE: # maz trips written to taz matrices logger.info("aggregating trips two zone...") trips_df["otaz"] = ( - pipeline.get_table("land_use").reindex(trips_df["origin"]).TAZ.tolist() + state.get_dataframe("land_use").reindex(trips_df["origin"]).TAZ.tolist() ) trips_df["dtaz"] = ( - pipeline.get_table("land_use").reindex(trips_df["destination"]).TAZ.tolist() + state.get_dataframe("land_use") + .reindex(trips_df["destination"]) + .TAZ.tolist() ) aggregate_trips = trips_df.groupby(["otaz", "dtaz"], sort=False).sum( numeric_only=True ) # use the average household weight for all trips in the origin destination pair - hh_weight_col = model_settings.get("HH_EXPANSION_WEIGHT_COL") + hh_weight_col = model_settings.HH_EXPANSION_WEIGHT_COL aggregate_weight = ( trips_df[["otaz", "dtaz", hh_weight_col]] .groupby(["otaz", "dtaz"], sort=False) @@ -120,7 +168,7 @@ def write_trip_matrices(network_los): dest_vals = aggregate_trips.index.get_level_values("dtaz") try: - land_use_taz = pipeline.get_table("land_use_taz") + land_use_taz = state.get_dataframe("land_use_taz") except (KeyError, RuntimeError): pass # table missing, ignore else: @@ -128,7 +176,7 @@ def write_trip_matrices(network_los): orig_vals = orig_vals.map(land_use_taz["_original_TAZ"]) dest_vals = dest_vals.map(land_use_taz["_original_TAZ"]) - zone_index = pd.Index(network_los.get_tazs(), name="TAZ") + zone_index = pd.Index(network_los.get_tazs(state), name="TAZ") assert all(zone in zone_index for zone in orig_vals) assert all(zone in zone_index for zone in dest_vals) @@ -136,26 +184,27 @@ def write_trip_matrices(network_los): _, dest_index = zone_index.reindex(dest_vals) write_matrices( - aggregate_trips, zone_index, orig_index, dest_index, model_settings + state, aggregate_trips, zone_index, orig_index, dest_index, model_settings ) elif ( network_los.zone_system == los.THREE_ZONE ): # maz trips written to taz and tap matrices - logger.info("aggregating trips three zone taz...") trips_df["otaz"] = ( - pipeline.get_table("land_use").reindex(trips_df["origin"]).TAZ.tolist() + state.get_dataframe("land_use").reindex(trips_df["origin"]).TAZ.tolist() ) trips_df["dtaz"] = ( - pipeline.get_table("land_use").reindex(trips_df["destination"]).TAZ.tolist() + state.get_dataframe("land_use") + .reindex(trips_df["destination"]) + .TAZ.tolist() ) aggregate_trips = trips_df.groupby(["otaz", "dtaz"], sort=False).sum( numeric_only=True ) # use the average household weight for all trips in the origin destination pair - hh_weight_col = model_settings.get("HH_EXPANSION_WEIGHT_COL") + hh_weight_col = model_settings.HH_EXPANSION_WEIGHT_COL aggregate_weight = ( trips_df[["otaz", "dtaz", hh_weight_col]] .groupby(["otaz", "dtaz"], sort=False) @@ -167,7 +216,7 @@ def write_trip_matrices(network_los): dest_vals = aggregate_trips.index.get_level_values("dtaz") try: - land_use_taz = pipeline.get_table("land_use_taz") + land_use_taz = state.get_dataframe("land_use_taz") except (KeyError, RuntimeError): pass # table missing, ignore else: @@ -175,7 +224,7 @@ def write_trip_matrices(network_los): orig_vals = orig_vals.map(land_use_taz["_original_TAZ"]) dest_vals = dest_vals.map(land_use_taz["_original_TAZ"]) - zone_index = pd.Index(network_los.get_tazs(), name="TAZ") + zone_index = pd.Index(network_los.get_tazs(state), name="TAZ") assert all(zone in zone_index for zone in orig_vals) assert all(zone in zone_index for zone in dest_vals) @@ -183,7 +232,7 @@ def write_trip_matrices(network_los): _, dest_index = zone_index.reindex(dest_vals) write_matrices( - aggregate_trips, zone_index, orig_index, dest_index, model_settings + state, aggregate_trips, zone_index, orig_index, dest_index, model_settings ) logger.info("aggregating trips three zone tap...") @@ -192,7 +241,7 @@ def write_trip_matrices(network_los): ) # use the average household weight for all trips in the origin destination pair - hh_weight_col = model_settings.get("HH_EXPANSION_WEIGHT_COL") + hh_weight_col = model_settings.HH_EXPANSION_WEIGHT_COL aggregate_weight = ( trips_df[["btap", "atap", hh_weight_col]] .groupby(["btap", "atap"], sort=False) @@ -211,11 +260,22 @@ def write_trip_matrices(network_los): _, dest_index = zone_index.reindex(dest_vals) write_matrices( - aggregate_trips, zone_index, orig_index, dest_index, model_settings, True + state, + aggregate_trips, + zone_index, + orig_index, + dest_index, + model_settings, + True, ) -def annotate_trips(trips, network_los, model_settings): +def annotate_trips( + state: workflow.State, + trips: pd.DataFrame, + network_los, + model_settings: WriteTripMatricesSettings, +): """ Add columns to local trips table. The annotator has access to the origin/destination skims and everything @@ -225,7 +285,7 @@ def annotate_trips(trips, network_los, model_settings): TABLES in the preprocessor settings. """ - trips_df = trips.to_frame() + trips_df = trips trace_label = "trip_matrices" @@ -246,7 +306,7 @@ def annotate_trips(trips, network_los, model_settings): locals_dict.update(constants) expressions.annotate_preprocessors( - trips_df, locals_dict, skims, model_settings, trace_label + state, trips_df, locals_dict, skims, model_settings, trace_label ) if not np.issubdtype(trips_df["trip_period"].dtype, np.integer): @@ -259,18 +319,24 @@ def annotate_trips(trips, network_los, model_settings): # Data will be expanded by an expansion weight column from # the households pipeline table, if specified in the model settings. - hh_weight_col = model_settings.get("HH_EXPANSION_WEIGHT_COL") + hh_weight_col = model_settings.HH_EXPANSION_WEIGHT_COL if hh_weight_col and hh_weight_col not in trips_df: logger.info("adding '%s' from households to trips table" % hh_weight_col) - household_weights = pipeline.get_table("households")[hh_weight_col] + household_weights = state.get_dataframe("households")[hh_weight_col] trips_df[hh_weight_col] = trips_df.household_id.map(household_weights) return trips_df def write_matrices( - aggregate_trips, zone_index, orig_index, dest_index, model_settings, is_tap=False + state: workflow.State, + aggregate_trips, + zone_index, + orig_index, + dest_index, + model_settings: WriteTripMatricesSettings, + is_tap=False, ): """ Write aggregated trips to OMX format. @@ -284,30 +350,30 @@ def write_matrices( but the table 'data_field's must be summable types: ints, floats, bools. """ - matrix_settings = model_settings.get("MATRICES") + matrix_settings = model_settings.MATRICES if not matrix_settings: logger.error("Missing MATRICES setting in write_trip_matrices.yaml") for matrix in matrix_settings: - matrix_is_tap = matrix.get("is_tap", False) + matrix_is_tap = matrix.is_tap if matrix_is_tap == is_tap: # only write tap matrices to tap matrix files - filename = matrix.get("file_name") - filepath = config.output_file_path(filename) + filename = str(matrix.file_name) + filepath = state.get_output_file_path(filename) logger.info("opening %s" % filepath) - file = omx.open_file(filepath, "w") # possibly overwrite existing file - table_settings = matrix.get("tables") + file = omx.open_file(str(filepath), "w") # possibly overwrite existing file + table_settings = matrix.tables for table in table_settings: - table_name = table.get("name") - col = table.get("data_field") + table_name = table.name + col = table.data_field if col not in aggregate_trips: logger.error(f"missing {col} column in aggregate_trips DataFrame") return - hh_weight_col = model_settings.get("HH_EXPANSION_WEIGHT_COL") + hh_weight_col = model_settings.HH_EXPANSION_WEIGHT_COL if hh_weight_col: aggregate_trips[col] = ( aggregate_trips[col] / aggregate_trips[hh_weight_col] diff --git a/activitysim/abm/models/trip_mode_choice.py b/activitysim/abm/models/trip_mode_choice.py index e7bb200e4..b9091522c 100644 --- a/activitysim/abm/models/trip_mode_choice.py +++ b/activitysim/abm/models/trip_mode_choice.py @@ -1,33 +1,71 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import logging +from typing import Any import numpy as np import pandas as pd +from activitysim.abm.models.util import annotate, school_escort_tours_trips +from activitysim.abm.models.util.mode import mode_choice_simulate from activitysim.core import ( - assign, chunk, config, + estimation, expressions, - inject, los, - pipeline, simulate, tracing, + workflow, ) -from activitysim.core.pathbuilder import TransitVirtualPathBuilder +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import TemplatedLogitComponentSettings from activitysim.core.util import assign_in_place -from .util import estimation, annotate, school_escort_tours_trips -from .util.mode import mode_choice_simulate - logger = logging.getLogger(__name__) -@inject.step() -def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): +class TripModeChoiceSettings(TemplatedLogitComponentSettings, extra="forbid"): + """ + Settings for the `trip_mode_choice` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + MODE_CHOICE_LOGSUM_COLUMN_NAME: str = "mode_choice_logsum" + """Column name of the mode choice logsum""" + + TOURS_MERGED_CHOOSER_COLUMNS: list[str] | None = None + """List of columns to be filtered from the dataframe to reduce memory + needs filter chooser table to these fields""" + + CHOOSER_COLS_TO_KEEP: list[str] = [] + + tvpb_mode_path_types: dict[str, Any] = {} + TVPB_recipe: str = "tour_mode_choice" + use_TVPB_constants: bool = True + + FORCE_ESCORTEE_CHAUFFEUR_MODE_MATCH: bool = True + + annotate_trips: PreprocessorSettings | None = None + + LEGACY_COEFFICIENTS: str | None = None + + REDUNDANT_TOURS_MERGED_CHOOSER_COLUMNS: list[str] | None = None + + +@workflow.step +def trip_mode_choice( + state: workflow.State, + trips: pd.DataFrame, + network_los: los.Network_LOS, + model_settings: TripModeChoiceSettings | None = None, + model_settings_file_name: str = "trip_mode_choice.yaml", + trace_label: str = "trip_mode_choice", +) -> None: """ Trip mode choice - compute trip_mode (same values as for tour_mode) for each trip. @@ -37,14 +75,16 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): Adds trip_mode column to trip table """ - trace_label = "trip_mode_choice" - model_settings_file_name = "trip_mode_choice.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + if model_settings is None: + model_settings = TripModeChoiceSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - logsum_column_name = model_settings.get("MODE_CHOICE_LOGSUM_COLUMN_NAME") + logsum_column_name = model_settings.MODE_CHOICE_LOGSUM_COLUMN_NAME mode_column_name = "trip_mode" - trips_df = trips.to_frame() + trips_df = trips logger.info("Running %s with %d trips", trace_label, trips_df.shape[0]) # give trip mode choice the option to run without calling tours_merged. Useful for xborder @@ -52,11 +92,11 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): # needed by tour_merged (e.g. home_zone_id) exist tours_cols = [ col - for col in model_settings["TOURS_MERGED_CHOOSER_COLUMNS"] + for col in model_settings.TOURS_MERGED_CHOOSER_COLUMNS if col not in trips_df.columns ] if len(tours_cols) > 0: - tours_merged = inject.get_table("tours_merged").to_frame(columns=tours_cols) + tours_merged = state.get_dataframe("tours_merged", columns=tours_cols) else: tours_merged = pd.DataFrame() @@ -73,12 +113,12 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): # setup skim keys assert "trip_period" not in trips_merged trips_merged["trip_period"] = network_los.skim_time_period_label( - trips_merged.depart + trips_merged.depart, as_cat=True ) orig_col = "origin" dest_col = "destination" - min_per_period = network_los.skim_time_periods["period_minutes"] + min_per_period = network_los.skim_time_periods.period_minutes periods_per_hour = 60 / min_per_period constants = {} @@ -118,7 +158,7 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): if network_los.zone_system == los.THREE_ZONE: # fixme - is this a lightweight object? tvpb = network_los.tvpb - tvpb_recipe = model_settings.get("TVPB_recipe", "tour_mode_choice") + tvpb_recipe = model_settings.TVPB_recipe tvpb_logsum_odt = tvpb.wrap_logsum( orig_key=orig_col, dest_key=dest_col, @@ -145,31 +185,32 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): # the tvpb will still use the constants as defined in the recipe # specified above in `tvpb.wrap_logsum()` but they will not be used # in the trip mode choice expressions. - if model_settings.get("use_TVPB_constants", True): + if model_settings.use_TVPB_constants: constants.update( network_los.setting("TVPB_SETTINGS.tour_mode_choice.CONSTANTS") ) # don't create estimation data bundle if trip mode choice is being called # from another model step (e.g. tour mode choice logsum creation) - if pipeline._PIPELINE.rng().step_name != "trip_mode_choice": + if state.current_model_name != "trip_mode_choice": estimator = None else: - estimator = estimation.manager.begin_estimation("trip_mode_choice") + estimator = estimation.manager.begin_estimation(state, "trip_mode_choice") if estimator: estimator.write_coefficients(model_settings=model_settings) estimator.write_coefficients_template(model_settings=model_settings) estimator.write_spec(model_settings) estimator.write_model_settings(model_settings, model_settings_file_name) - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) nest_spec = config.get_logit_model_settings(model_settings) - cols_to_keep = model_settings.get("CHOOSER_COLS_TO_KEEP", None) + cols_to_keep = model_settings.CHOOSER_COLS_TO_KEEP choices_list = [] cols_to_keep_list = [] - for primary_purpose, trips_segment in trips_merged.groupby("primary_purpose"): - + for primary_purpose, trips_segment in trips_merged.groupby( + "primary_purpose", observed=True + ): segment_trace_label = tracing.extend_trace_label(trace_label, primary_purpose) logger.info( @@ -187,7 +228,7 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): tvpb_logsum_odt.extend_trace_label(primary_purpose) # tvpb_logsum_dot.extend_trace_label(primary_purpose) - coefficients = simulate.get_segment_coefficients( + coefficients = state.filesystem.get_segment_coefficients( model_settings, primary_purpose ) @@ -202,10 +243,17 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): # have to initialize chunker for preprocessing in order to access # tvpb logsum terms in preprocessor expressions. with chunk.chunk_log( - tracing.extend_trace_label(trace_label, "preprocessing"), base=True + state, + tracing.extend_trace_label(trace_label, "preprocessing"), + base=True, ): expressions.annotate_preprocessors( - trips_segment, locals_dict, skims, model_settings, segment_trace_label + state, + trips_segment, + locals_dict, + skims, + model_settings, + segment_trace_label, ) if estimator: @@ -216,14 +264,14 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): locals_dict["timeframe"] = "trip" choices = mode_choice_simulate( + state, choosers=trips_segment, - spec=simulate.eval_coefficients(model_spec, coefficients, estimator), + spec=simulate.eval_coefficients(state, model_spec, coefficients, estimator), nest_spec=simulate.eval_nest_coefficients( nest_spec, coefficients, segment_trace_label ), skims=skims, locals_d=locals_dict, - chunk_size=chunk_size, mode_column_name=mode_column_name, logsum_column_name=logsum_column_name, trace_label=segment_trace_label, @@ -231,9 +279,9 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): estimator=estimator, ) - if trace_hh_id: + if state.settings.trace_hh_id: # trace the coefficients - tracing.trace_df( + state.tracing.trace_df( pd.Series(locals_dict), label=tracing.extend_trace_label(segment_trace_label, "constants"), transpose=False, @@ -241,9 +289,14 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): ) # so we can trace with annotations - assign_in_place(trips_segment, choices) + assign_in_place( + trips_segment, + choices, + state.settings.downcast_int, + state.settings.downcast_float, + ) - tracing.trace_df( + state.tracing.trace_df( trips_segment, label=tracing.extend_trace_label(segment_trace_label, "trip_mode"), slicer="tour_id", @@ -265,10 +318,8 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): # add cached tvpb_logsum tap choices for modes specified in tvpb_mode_path_types if network_los.zone_system == los.THREE_ZONE: - - tvpb_mode_path_types = model_settings.get("tvpb_mode_path_types") + tvpb_mode_path_types = model_settings.tvpb_mode_path_types for mode, path_type in tvpb_mode_path_types.items(): - skim_cache = tvpb_logsum_odt.cache[path_type] for c in skim_cache: @@ -288,21 +339,23 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): ) estimator.write_override_choices(choices_df.trip_mode) estimator.end_estimation() - trips_df = trips.to_frame() - + trips_df = trips # adding columns from the chooser table to include in final output if len(cols_to_keep_list) > 0: cols_to_keep_df = pd.concat(cols_to_keep_list) choices_df = pd.concat([choices_df, cols_to_keep_df], axis=1) - assign_in_place(trips_df, choices_df) + assign_in_place( + trips_df, choices_df, state.settings.downcast_int, state.settings.downcast_float + ) - if pipeline.is_table("school_escort_tours") & model_settings.get( - "FORCE_ESCORTEE_CHAUFFEUR_MODE_MATCH", True + if ( + state.is_table("school_escort_tours") + & model_settings.FORCE_ESCORTEE_CHAUFFEUR_MODE_MATCH ): trips_df = ( school_escort_tours_trips.force_escortee_trip_modes_to_match_chauffeur( - trips_df + state, trips_df ) ) @@ -314,13 +367,13 @@ def trip_mode_choice(trips, network_los, chunk_size, trace_hh_id): assert not trips_df[mode_column_name].isnull().any() - pipeline.replace_table("trips", trips_df) + state.add_table("trips", trips_df) - if model_settings.get("annotate_trips"): - annotate.annotate_trips(model_settings, trace_label, locals_dict) + if model_settings.annotate_trips: + annotate.annotate_trips(state, model_settings, trace_label, locals_dict) - if trace_hh_id: - tracing.trace_df( + if state.settings.trace_hh_id: + state.tracing.trace_df( trips_df, label=tracing.extend_trace_label(trace_label, "trip_mode"), slicer="trip_id", diff --git a/activitysim/abm/models/trip_purpose.py b/activitysim/abm/models/trip_purpose.py index 1e48444e7..5f208f514 100644 --- a/activitysim/abm/models/trip_purpose.py +++ b/activitysim/abm/models/trip_purpose.py @@ -1,23 +1,27 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +from typing import Any + import numpy as np import pandas as pd +from activitysim.abm.models.util.school_escort_tours_trips import ( + split_out_school_escorting_trips, +) from activitysim.core import ( chunk, config, + estimation, expressions, - inject, logit, - pipeline, simulate, - tracing, + workflow, ) - -from .util import estimation +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable from activitysim.core.util import reindex -from .util.school_escort_tours_trips import split_out_school_escorting_trips logger = logging.getLogger(__name__) @@ -45,6 +49,7 @@ def map_coefficients(spec, coefficients): def choose_intermediate_trip_purpose( + state: workflow.State, trips, probs_spec, estimator, @@ -52,6 +57,8 @@ def choose_intermediate_trip_purpose( use_depart_time, trace_hh_id, trace_label, + *, + chunk_sizer: chunk.ChunkSizer, ): """ chose purpose for intermediate trips based on probs_spec @@ -68,7 +75,7 @@ def choose_intermediate_trip_purpose( purpose_cols = [c for c in probs_spec.columns if c not in non_purpose_cols] num_trips = len(trips.index) - have_trace_targets = trace_hh_id and tracing.has_trace_targets(trips) + have_trace_targets = trace_hh_id and state.tracing.has_trace_targets(trips) # probs should sum to 1 across rows sum_probs = probs_spec[purpose_cols].sum(axis=1) @@ -78,10 +85,9 @@ def choose_intermediate_trip_purpose( choosers = pd.merge( trips.reset_index(), probs_spec, on=probs_join_cols, how="left" ).set_index("trip_id") - chunk.log_df(trace_label, "choosers", choosers) + chunk_sizer.log_df(trace_label, "choosers", choosers) if use_depart_time: - # select the matching depart range (this should result on in exactly one chooser row per trip) chooser_probs = (choosers.start >= choosers["depart_range_start"]) & ( choosers.start <= choosers["depart_range_end"] @@ -89,7 +95,6 @@ def choose_intermediate_trip_purpose( # if we failed to match a row in probs_spec if chooser_probs.sum() < num_trips: - # this can happen if the spec doesn't have probs for the trips matching a trip's probs_join_cols missing_trip_ids = trips.index[ ~trips.index.isin(choosers.index[chooser_probs]) @@ -100,7 +105,7 @@ def choose_intermediate_trip_purpose( ] # join to persons for better diagnostics - persons = inject.get_table("persons").to_frame() + persons = state.get_dataframe("persons") persons_cols = [ "age", "is_worker", @@ -119,17 +124,16 @@ def choose_intermediate_trip_purpose( file_name = "%s.UNMATCHED_PROBS" % trace_label logger.error( - "%s %s of %s intermediate trips could not be matched to probs based on join columns %s" - % (trace_label, len(unmatched_choosers), len(choosers), probs_join_cols) + "{} {} of {} intermediate trips could not be matched to probs based on join columns {}".format( + trace_label, len(unmatched_choosers), len(choosers), probs_join_cols + ) ) logger.info( - "Writing %s unmatched choosers to %s" - % ( - len(unmatched_choosers), - file_name, - ) + f"Writing {len(unmatched_choosers)} unmatched choosers to {file_name}" + ) + state.tracing.write_csv( + unmatched_choosers, file_name=file_name, transpose=False ) - tracing.write_csv(unmatched_choosers, file_name=file_name, transpose=False) raise RuntimeError( "Some trips could not be matched to probs based on join columns %s." % probs_join_cols @@ -147,20 +151,40 @@ def choose_intermediate_trip_purpose( estimator.write_table(choosers[probs_cols], "probs", append=True) choices, rands = logit.make_choices( - choosers[purpose_cols], trace_label=trace_label, trace_choosers=choosers + state, choosers[purpose_cols], trace_label=trace_label, trace_choosers=choosers ) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( choices, "%s.choices" % trace_label, columns=[None, "trip_purpose"] ) - tracing.trace_df(rands, "%s.rands" % trace_label, columns=[None, "rand"]) + state.tracing.trace_df(rands, "%s.rands" % trace_label, columns=[None, "rand"]) choices = choices.map(pd.Series(purpose_cols)) + # expand the purpose categorical + for p in purpose_cols: + if not p in trips.primary_purpose.cat.categories: + trips.primary_purpose = trips.primary_purpose.cat.add_categories([p]) + choices = choices.astype(trips["primary_purpose"].dtype) return choices -def run_trip_purpose(trips_df, estimator, chunk_size, trace_hh_id, trace_label): +class TripPurposeSettings(PydanticReadable): + probs_join_cols: list[str] = ["primary_purpose", "outbound", "person_type"] + PROBS_SPEC: str = "trip_purpose_probs.csv" + preprocessor: PreprocessorSettings | None = None + use_depart_time: bool = True + CONSTANTS: dict[str, Any] = {} + + +def run_trip_purpose( + state: workflow.State, + trips_df: pd.DataFrame, + estimator, + model_settings: TripPurposeSettings | None = None, + model_settings_file_name: str = "trip_purpose.yaml", + trace_label: str = "trip_purpose", +): """ trip purpose - main functionality separated from model step so it can be called iteratively @@ -180,16 +204,20 @@ def run_trip_purpose(trips_df, estimator, chunk_size, trace_hh_id, trace_label): # uniform across trip_purpose chunk_tag = "trip_purpose" - model_settings_file_name = "trip_purpose.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + if model_settings is None: + model_settings = TripPurposeSettings.read_settings_file( + state.filesystem, model_settings_file_name + ) - probs_join_cols = model_settings.get("probs_join_cols", PROBS_JOIN_COLUMNS) + probs_join_cols = model_settings.probs_join_cols - spec_file_name = model_settings.get("PROBS_SPEC", "trip_purpose_probs.csv") - probs_spec = pd.read_csv(config.config_file_path(spec_file_name), comment="#") + spec_file_name = model_settings.PROBS_SPEC + probs_spec = pd.read_csv( + state.filesystem.get_config_file_path(spec_file_name), comment="#" + ) # FIXME for now, not really doing estimation for probabilistic model - just overwriting choices # besides, it isn't clear that named coefficients would be helpful if we had some form of estimation - # coefficients_df = simulate.read_model_coefficients(model_settings) + # coefficients_df = state.filesystem.read_model_coefficients(model_settings) # probs_spec = map_coefficients(probs_spec, coefficients_df) if estimator: @@ -199,17 +227,25 @@ def run_trip_purpose(trips_df, estimator, chunk_size, trace_hh_id, trace_label): result_list = [] + # add home to purpose categorical + # check if parking_name is in the purpose category + if not "home" in trips_df.primary_purpose.cat.categories: + trips_df.primary_purpose = trips_df.primary_purpose.cat.add_categories(["home"]) + # - last trip of outbound tour gets primary_purpose last_trip = trips_df.trip_num == trips_df.trip_count purpose = trips_df.primary_purpose[last_trip & trips_df.outbound] + print(purpose.value_counts(dropna=False)) result_list.append(purpose) logger.info("assign purpose to %s last outbound trips", purpose.shape[0]) # - last trip of inbound tour gets home (or work for atwork subtours) purpose = trips_df.primary_purpose[last_trip & ~trips_df.outbound] + print(purpose.value_counts(dropna=False)) purpose = pd.Series( np.where(purpose == "atwork", "work", "home"), index=purpose.index - ) + ).astype(trips_df.primary_purpose.dtype) + print(purpose.value_counts(dropna=False)) result_list.append(purpose) logger.info("assign purpose to %s last inbound trips", purpose.shape[0]) @@ -217,34 +253,40 @@ def run_trip_purpose(trips_df, estimator, chunk_size, trace_hh_id, trace_label): trips_df = trips_df[~last_trip] logger.info("assign purpose to %s intermediate trips", trips_df.shape[0]) - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: locals_dict = config.get_model_constants(model_settings) expressions.assign_columns( + state, df=trips_df, model_settings=preprocessor_settings, locals_dict=locals_dict, trace_label=trace_label, ) - use_depart_time = model_settings.get("use_depart_time", True) + use_depart_time = model_settings.use_depart_time - for i, trips_chunk, chunk_trace_label in chunk.adaptive_chunked_choosers( - trips_df, chunk_size, chunk_tag, trace_label - ): + for ( + _i, + trips_chunk, + chunk_trace_label, + chunk_sizer, + ) in chunk.adaptive_chunked_choosers(state, trips_df, chunk_tag, trace_label): choices = choose_intermediate_trip_purpose( + state, trips_chunk, probs_spec, estimator, probs_join_cols=probs_join_cols, use_depart_time=use_depart_time, - trace_hh_id=trace_hh_id, + trace_hh_id=state.settings.trace_hh_id, trace_label=chunk_trace_label, + chunk_sizer=chunk_sizer, ) - + print(choices.value_counts(dropna=False)) result_list.append(choices) - chunk.log_df(trace_label, f"result_list", result_list) + chunk_sizer.log_df(trace_label, "result_list", result_list) if len(result_list) > 1: choices = pd.concat(result_list) @@ -252,9 +294,8 @@ def run_trip_purpose(trips_df, estimator, chunk_size, trace_hh_id, trace_label): return choices -@inject.step() -def trip_purpose(trips, chunk_size, trace_hh_id): - +@workflow.step +def trip_purpose(state: workflow.State, trips: pd.DataFrame) -> None: """ trip purpose model step - calls run_trip_purpose to run the actual model @@ -262,16 +303,16 @@ def trip_purpose(trips, chunk_size, trace_hh_id): """ trace_label = "trip_purpose" - trips_df = trips.to_frame() + trips_df = trips - if pipeline.is_table("school_escort_trips"): - school_escort_trips = pipeline.get_table("school_escort_trips") + if state.is_table("school_escort_trips"): + school_escort_trips = state.get_dataframe("school_escort_trips") # separate out school escorting trips to exclude them from the model and estimation data bundle trips_df, se_trips_df, full_trips_index = split_out_school_escorting_trips( trips_df, school_escort_trips ) - estimator = estimation.manager.begin_estimation("trip_purpose") + estimator = estimation.manager.begin_estimation(state, "trip_purpose") if estimator: chooser_cols_for_estimation = [ "person_id", @@ -282,10 +323,9 @@ def trip_purpose(trips, chunk_size, trace_hh_id): estimator.write_choosers(trips_df[chooser_cols_for_estimation]) choices = run_trip_purpose( + state, trips_df, estimator, - chunk_size=chunk_size, - trace_hh_id=trace_hh_id, trace_label=trace_label, ) @@ -299,7 +339,7 @@ def trip_purpose(trips, chunk_size, trace_hh_id): trips_df["purpose"] = choices - if pipeline.is_table("school_escort_trips"): + if state.is_table("school_escort_trips"): # setting purpose for school escort trips se_trips_df["purpose"] = reindex(school_escort_trips.purpose, se_trips_df.index) # merge trips back together preserving index order @@ -309,10 +349,10 @@ def trip_purpose(trips, chunk_size, trace_hh_id): # we should have assigned a purpose to all trips assert not trips_df.purpose.isnull().any() - pipeline.replace_table("trips", trips_df) + state.add_table("trips", trips_df) - if trace_hh_id: - tracing.trace_df( + if state.settings.trace_hh_id: + state.tracing.trace_df( trips_df, label=trace_label, slicer="trip_id", diff --git a/activitysim/abm/models/trip_purpose_and_destination.py b/activitysim/abm/models/trip_purpose_and_destination.py index 31bca977e..d32703ca0 100644 --- a/activitysim/abm/models/trip_purpose_and_destination.py +++ b/activitysim/abm/models/trip_purpose_and_destination.py @@ -1,5 +1,7 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd @@ -10,64 +12,85 @@ cleanup_failed_trips, flag_failed_trip_leg_mates, ) -from activitysim.core import config, inject, pipeline, tracing +from activitysim.core import estimation, tracing, workflow +from activitysim.core.configuration.base import PydanticReadable from activitysim.core.util import assign_in_place -from .util import estimation - logger = logging.getLogger(__name__) +@workflow.func def run_trip_purpose_and_destination( - trips_df, tours_merged_df, chunk_size, trace_hh_id, trace_label + state: workflow.State, + trips_df, + tours_merged_df, + chunk_size, + trace_label, ): - assert not trips_df.empty + trace_hh_id = state.settings.trace_hh_id choices = run_trip_purpose( + state, trips_df, estimator=None, - chunk_size=chunk_size, - trace_hh_id=trace_hh_id, trace_label=tracing.extend_trace_label(trace_label, "purpose"), ) trips_df["purpose"] = choices trips_df, save_sample_df = run_trip_destination( + state, trips_df, tours_merged_df, estimator=None, chunk_size=chunk_size, - trace_hh_id=trace_hh_id, trace_label=tracing.extend_trace_label(trace_label, "destination"), ) return trips_df, save_sample_df -@inject.step() -def trip_purpose_and_destination(trips, tours_merged, chunk_size, trace_hh_id): +class TripPurposeAndDestinationSettings(PydanticReadable): + """ + Settings for the `trip_purpose_and_destination` component. + """ + + MAX_ITERATIONS: int = 5 + """Setting for the maximum iterations""" + - trace_label = "trip_purpose_and_destination" - model_settings = config.read_model_settings("trip_purpose_and_destination.yaml") +@workflow.step +def trip_purpose_and_destination( + state: workflow.State, + trips: pd.DataFrame, + tours_merged: pd.DataFrame, + model_settings: TripPurposeAndDestinationSettings | None = None, + model_settings_file_name: str = "trip_purpose_and_destination.yaml", + trace_label: str = "trip_purpose_and_destination", +) -> None: + + if model_settings is None: + model_settings = TripPurposeAndDestinationSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) # for consistency, read sample_table_name setting from trip_destination settings file - trip_destination_model_settings = config.read_model_settings( + trip_destination_model_settings = state.filesystem.read_model_settings( "trip_destination.yaml" ) sample_table_name = trip_destination_model_settings.get( "DEST_CHOICE_SAMPLE_TABLE_NAME" ) want_sample_table = ( - config.setting("want_dest_choice_sample_tables") - and sample_table_name is not None + state.settings.want_dest_choice_sample_tables and sample_table_name is not None ) - MAX_ITERATIONS = model_settings.get("MAX_ITERATIONS", 5) + MAX_ITERATIONS = model_settings.MAX_ITERATIONS - trips_df = trips.to_frame() - tours_merged_df = tours_merged.to_frame() + trips_df = trips + tours_merged_df = tours_merged if trips_df.empty: logger.info("%s - no trips. Nothing to do." % trace_label) @@ -79,7 +102,6 @@ def trip_purpose_and_destination(trips, tours_merged, chunk_size, trace_hh_id): # if trip_destination has been run before, keep only failed trips (and leg_mates) to retry if "destination" in trips_df: - if "failed" not in trips_df.columns: # trip_destination model cleaned up any failed trips logger.info("%s - no failed column from prior model run." % trace_label) @@ -89,7 +111,7 @@ def trip_purpose_and_destination(trips, tours_merged, chunk_size, trace_hh_id): # 'failed' column but no failed trips from prior run of trip_destination logger.info("%s - no failed trips from prior model run." % trace_label) trips_df.drop(columns="failed", inplace=True) - pipeline.replace_table("trips", trips_df) + state.add_table("trips", trips_df) return else: @@ -102,19 +124,19 @@ def trip_purpose_and_destination(trips, tours_merged, chunk_size, trace_hh_id): logger.info("Rerunning %s failed trips and leg-mates" % trips_df.shape[0]) # drop any previously saved samples of failed trips - if want_sample_table and pipeline.is_table(sample_table_name): + if want_sample_table and state.is_table(sample_table_name): logger.info("Dropping any previously saved samples of failed trips") - save_sample_df = pipeline.get_table(sample_table_name) + save_sample_df = state.get_dataframe(sample_table_name) save_sample_df.drop(trips_df.index, level="trip_id", inplace=True) - pipeline.replace_table(sample_table_name, save_sample_df) + state.add_table(sample_table_name, save_sample_df) del save_sample_df # if we estimated trip_destination, there should have been no failed trips # if we didn't, but it is enabled, it is probably a configuration error # if we just estimated trip_purpose, it isn't clear what they are trying to do , nor how to handle it assert not ( - estimation.manager.begin_estimation("trip_purpose") - or estimation.manager.begin_estimation("trip_destination") + estimation.manager.begin_estimation(state, "trip_purpose") + or estimation.manager.begin_estimation(state, "trip_destination") ) processed_trips = [] @@ -122,7 +144,6 @@ def trip_purpose_and_destination(trips, tours_merged, chunk_size, trace_hh_id): i = 0 TRIP_RESULT_COLUMNS = ["purpose", "destination", "origin", "failed"] while True: - i += 1 for c in TRIP_RESULT_COLUMNS: @@ -130,16 +151,16 @@ def trip_purpose_and_destination(trips, tours_merged, chunk_size, trace_hh_id): del trips_df[c] trips_df, save_sample_df = run_trip_purpose_and_destination( + state, trips_df, tours_merged_df, - chunk_size=chunk_size, - trace_hh_id=trace_hh_id, + chunk_size=state.settings.chunk_size, trace_label=tracing.extend_trace_label(trace_label, "i%s" % i), ) # # if testing, make sure at least one trip fails if ( - config.setting("testing_fail_trip_destination", False) + state.settings.testing_fail_trip_destination and (i == 1) and not trips_df.failed.any() ): @@ -162,7 +183,7 @@ def trip_purpose_and_destination(trips, tours_merged, chunk_size, trace_hh_id): ) file_name = "%s_i%s_failed_trips" % (trace_label, i) logger.info("writing failed trips to %s" % file_name) - tracing.write_csv( + state.tracing.write_csv( trips_df[trips_df.failed], file_name=file_name, transpose=False ) @@ -202,34 +223,39 @@ def trip_purpose_and_destination(trips, tours_merged, chunk_size, trace_hh_id): logger.info( "adding %s samples to %s" % (len(save_sample_df), sample_table_name) ) - pipeline.extend_table(sample_table_name, save_sample_df) + state.extend_table(sample_table_name, save_sample_df) logger.info( "%s %s failed trips after %s iterations" % (trace_label, processed_trips.failed.sum(), i) ) - trips_df = trips.to_frame() - assign_in_place(trips_df, processed_trips) + trips_df = trips + assign_in_place( + trips_df, + processed_trips, + state.settings.downcast_int, + state.settings.downcast_float, + ) trips_df = cleanup_failed_trips(trips_df) - pipeline.replace_table("trips", trips_df) + state.add_table("trips", trips_df) # check to make sure we wrote sample file if requestsd if want_sample_table and len(trips_df) > 0: - assert pipeline.is_table(sample_table_name) + assert state.is_table(sample_table_name) # since we have saved samples for all successful trips # once we discard failed trips, we should samples for all trips - save_sample_df = pipeline.get_table(sample_table_name) + save_sample_df = state.get_dataframe(sample_table_name) # expect samples only for intermediate trip destinatinos assert len(save_sample_df.index.get_level_values(0).unique()) == len( trips_df[trips_df.trip_num < trips_df.trip_count] ) del save_sample_df - if trace_hh_id: - tracing.trace_df( + if state.settings.trace_hh_id: + state.tracing.trace_df( trips_df, label=trace_label, slicer="trip_id", diff --git a/activitysim/abm/models/trip_scheduling.py b/activitysim/abm/models/trip_scheduling.py index 54c3eb201..3dddd5e2b 100644 --- a/activitysim/abm/models/trip_scheduling.py +++ b/activitysim/abm/models/trip_scheduling.py @@ -1,20 +1,24 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import warnings from builtins import range +from typing import Any, List, Literal import numpy as np import pandas as pd -from activitysim.abm.models.util import estimation +from activitysim.abm.models.util import probabilistic_scheduling as ps +from activitysim.abm.models.util.school_escort_tours_trips import ( + split_out_school_escorting_trips, +) from activitysim.abm.models.util.trip import cleanup_failed_trips, failed_trip_cohorts -from activitysim.core import chunk, config, expressions, inject, pipeline, tracing +from activitysim.core import chunk, config, estimation, expressions, tracing, workflow +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable from activitysim.core.util import reindex -from .util import probabilistic_scheduling as ps -from .util.school_escort_tours_trips import split_out_school_escorting_trips - logger = logging.getLogger(__name__) """ @@ -38,18 +42,18 @@ DEPARTURE_MODE = "departure" DURATION_MODE = "stop_duration" RELATIVE_MODE = "relative" -PROBS_JOIN_COLUMNS_DEPARTURE_BASED = [ +PROBS_JOIN_COLUMNS_DEPARTURE_BASED: list[str] = [ "primary_purpose", "outbound", "tour_hour", "trip_num", ] -PROBS_JOIN_COLUMNS_DURATION_BASED = ["outbound", "stop_num"] -PROBS_JOIN_COLUMNS_RELATIVE_BASED = ["outbound", "periods_left"] +PROBS_JOIN_COLUMNS_DURATION_BASED: list[str] = ["outbound", "stop_num"] +PROBS_JOIN_COLUMNS_RELATIVE_BASED: list[str] = ["outbound", "periods_left"] -def _logic_version(model_settings): - logic_version = model_settings.get("logic_version", None) +def _logic_version(model_settings: TripSchedulingSettings): + logic_version = model_settings.logic_version if logic_version is None: warnings.warn( "The trip_scheduling component now has a logic_version setting " @@ -189,24 +193,26 @@ def update_tour_earliest(trips, outbound_choices, logic_version: int): def schedule_trips_in_leg( + state: workflow.State, outbound, trips, probs_spec, - model_settings, + model_settings: TripSchedulingSettings, is_last_iteration, - trace_hh_id, trace_label, + *, + chunk_sizer: chunk.ChunkSizer, ): """ Parameters ---------- + state outbound trips probs_spec depart_alt_base is_last_iteration - trace_hh_id trace_label Returns @@ -215,28 +221,25 @@ def schedule_trips_in_leg( depart choice for trips, indexed by trip_id """ - failfix = model_settings.get(FAILFIX, FAILFIX_DEFAULT) - depart_alt_base = model_settings.get("DEPART_ALT_BASE", 0) - scheduling_mode = model_settings.get("scheduling_mode", "departure") - preprocessor_settings = model_settings.get("preprocessor", None) - - if scheduling_mode == "departure": - probs_join_cols = model_settings.get( - "probs_join_cols", PROBS_JOIN_COLUMNS_DEPARTURE_BASED - ) - elif scheduling_mode == "stop_duration": - probs_join_cols = model_settings.get( - "probs_join_cols", PROBS_JOIN_COLUMNS_DURATION_BASED - ) - elif scheduling_mode == "relative": - probs_join_cols = model_settings.get( - "probs_join_cols", PROBS_JOIN_COLUMNS_RELATIVE_BASED - ) - else: - logger.error( - "Invalid scheduling mode specified: {0}.".format(scheduling_mode), - "Please select one of ['departure', 'stop_duration', 'relative'] and try again.", - ) + failfix = model_settings.FAILFIX + depart_alt_base = model_settings.DEPART_ALT_BASE + scheduling_mode = model_settings.scheduling_mode + preprocessor_settings = model_settings.preprocessor + + probs_join_cols = model_settings.probs_join_cols + if probs_join_cols is None: + if scheduling_mode == "departure": + probs_join_cols = PROBS_JOIN_COLUMNS_DEPARTURE_BASED + elif scheduling_mode == "stop_duration": + probs_join_cols = PROBS_JOIN_COLUMNS_DURATION_BASED + elif scheduling_mode == "relative": + probs_join_cols = PROBS_JOIN_COLUMNS_RELATIVE_BASED + else: + logger.error( + "Invalid scheduling mode specified: {0}.".format(scheduling_mode), + "Please select one of ['departure', 'stop_duration', 'relative'] and try again.", + ) + raise ValueError(f"Invalid scheduling mode specified: {scheduling_mode}") # logger.debug("%s scheduling %s trips" % (trace_label, trips.shape[0])) @@ -274,7 +277,7 @@ def schedule_trips_in_leg( ADJUST_NEXT_DEPART_COL = "latest" trips.next_trip_id = trips.next_trip_id.where(~is_final, NO_TRIP_ID) - network_los = inject.get_injectable("network_los") + network_los = state.get_injectable("network_los") locals_dict = {"network_los": network_los} locals_dict.update(config.get_model_constants(model_settings)) @@ -285,6 +288,7 @@ def schedule_trips_in_leg( # - annotate trips if preprocessor_settings: expressions.assign_columns( + state, df=trips, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -303,6 +307,7 @@ def schedule_trips_in_leg( nth_trips = trips[trips.trip_num == trips.trip_count - i] choices = ps.make_scheduling_choices( + state, nth_trips, scheduling_mode, probs_spec, @@ -310,8 +315,8 @@ def schedule_trips_in_leg( depart_alt_base, first_trip_in_leg=first_trip_in_leg, report_failed_trips=is_last_iteration, - trace_hh_id=trace_hh_id, trace_label=nth_trace_label, + chunk_sizer=chunk_sizer, ) # most initial departure (when no choice was made because all probs were zero) @@ -347,7 +352,7 @@ def schedule_trips_in_leg( result_list.append(choices) - chunk.log_df(trace_label, f"result_list", result_list) + chunk_sizer.log_df(trace_label, "result_list", result_list) first_trip_in_leg = False @@ -358,15 +363,16 @@ def schedule_trips_in_leg( def run_trip_scheduling( + state: workflow.State, trips_chunk, tours, probs_spec, model_settings, estimator, is_last_iteration, - chunk_size, - trace_hh_id, trace_label, + *, + chunk_sizer: chunk.ChunkSizer, ): set_tour_hour(trips_chunk, tours) set_stop_num(trips_chunk) @@ -382,17 +388,18 @@ def run_trip_scheduling( leg_chunk = trips_chunk[trips_chunk.outbound] leg_trace_label = tracing.extend_trace_label(trace_label, "outbound") choices = schedule_trips_in_leg( + state, outbound=True, trips=leg_chunk, probs_spec=probs_spec, model_settings=model_settings, is_last_iteration=is_last_iteration, - trace_hh_id=trace_hh_id, trace_label=leg_trace_label, + chunk_sizer=chunk_sizer, ) result_list.append(choices) - chunk.log_df(trace_label, f"result_list", result_list) + chunk_sizer.log_df(trace_label, "result_list", result_list) # departure time of last outbound trips must constrain # departure times for initial inbound trips @@ -402,25 +409,65 @@ def run_trip_scheduling( leg_chunk = trips_chunk[~trips_chunk.outbound] leg_trace_label = tracing.extend_trace_label(trace_label, "inbound") choices = schedule_trips_in_leg( + state, outbound=False, trips=leg_chunk, probs_spec=probs_spec, model_settings=model_settings, is_last_iteration=is_last_iteration, - trace_hh_id=trace_hh_id, trace_label=leg_trace_label, + chunk_sizer=chunk_sizer, ) result_list.append(choices) - chunk.log_df(trace_label, f"result_list", result_list) + chunk_sizer.log_df(trace_label, "result_list", result_list) choices = pd.concat(result_list) return choices -@inject.step() -def trip_scheduling(trips, tours, chunk_size, trace_hh_id): +class TripSchedulingSettings(PydanticReadable): + """ + Settings for the `trip_scheduling` component. + """ + + PROBS_SPEC: str = "trip_scheduling_probs.csv" + """Filename for the trip scheduling probabilities (.csv) file.""" + + COEFFICIENTS: str = "trip_scheduling_coefficients.csv" + """Filename for the trip scheduling coefficients file""" + + FAILFIX: str = "choose_most_initial" + """ """ + + MAX_ITERATIONS: int = 1 + """Maximum iterations.""" + + DEPART_ALT_BASE: int = 5 + """Integer to add to probs column index to get time period it represents. + e.g. depart_alt_base = 5 means first column (column 0) represents 5 am""" + + scheduling_mode: Literal["departure", "stop_duration", "relative"] = "departure" + + probs_join_cols: list[str] | None = None + + preprocessor: PreprocessorSettings | None = None + + logic_version: int | None = None + + CONSTANTS: dict[str, Any] = {} + + +@workflow.step(copy_tables=False) +def trip_scheduling( + state: workflow.State, + trips: pd.DataFrame, + tours: pd.DataFrame, + model_settings: TripSchedulingSettings | None = None, + model_settings_file_name: str = "trip_scheduling.yaml", + trace_label: str = "trip_scheduling", +) -> None: """ Trip scheduling assigns depart times for trips within the start, end limits of the tour. @@ -466,15 +513,17 @@ def trip_scheduling(trips, tours, chunk_size, trace_hh_id): Which option is applied is determined by the FAILFIX model setting """ - trace_label = "trip_scheduling" - model_settings_file_name = "trip_scheduling.yaml" - model_settings = config.read_model_settings(model_settings_file_name) - trips_df = trips.to_frame() - tours = tours.to_frame() + if model_settings is None: + model_settings = TripSchedulingSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + + trips_df = trips.copy() - if pipeline.is_table("school_escort_trips"): - school_escort_trips = pipeline.get_table("school_escort_trips") + if state.is_table("school_escort_trips"): + school_escort_trips = state.get_dataframe("school_escort_trips") # separate out school escorting trips to exclude them from the model and estimation data bundle trips_df, se_trips_df, full_trips_index = split_out_school_escorting_trips( trips_df, school_escort_trips @@ -486,7 +535,7 @@ def trip_scheduling(trips, tours, chunk_size, trace_hh_id): # trip_scheduling is a probabilistic model ane we don't support estimation, # but we do need to override choices in estimation mode - estimator = estimation.manager.begin_estimation("trip_scheduling") + estimator = estimation.manager.begin_estimation(state, "trip_scheduling") if estimator: estimator.write_spec(model_settings, tag="PROBS_SPEC") estimator.write_model_settings(model_settings, model_settings_file_name) @@ -504,12 +553,13 @@ def trip_scheduling(trips, tours, chunk_size, trace_hh_id): ] estimator.write_choosers(trips_df[chooser_cols_for_estimation]) - probs_spec_file = model_settings.get("PROBS_SPEC", "trip_scheduling_probs.csv") - logger.debug(f"probs_spec_file: {config.config_file_path(probs_spec_file)}") - probs_spec = pd.read_csv(config.config_file_path(probs_spec_file), comment="#") + probs_spec_file = model_settings.PROBS_SPEC + probs_spec = pd.read_csv( + state.filesystem.get_config_file_path(probs_spec_file), comment="#" + ) # FIXME for now, not really doing estimation for probabilistic model - just overwriting choices # besides, it isn't clear that named coefficients would be helpful if we had some form of estimation - # coefficients_df = simulate.read_model_coefficients(model_settings) + # coefficients_df = state.filesystem.read_model_coefficients(model_settings) # probs_spec = map_coefficients(probs_spec, coefficients_df) # add tour-based chunk_id so we can chunk all trips in tour together @@ -517,10 +567,9 @@ def trip_scheduling(trips, tours, chunk_size, trace_hh_id): pd.Series(list(range(len(tours))), tours.index), trips_df.tour_id ) - assert "DEPART_ALT_BASE" in model_settings - failfix = model_settings.get(FAILFIX, FAILFIX_DEFAULT) + failfix = model_settings.FAILFIX - max_iterations = model_settings.get("MAX_ITERATIONS", 1) + max_iterations = model_settings.MAX_ITERATIONS assert max_iterations > 0 choices_list = [] @@ -529,13 +578,16 @@ def trip_scheduling(trips, tours, chunk_size, trace_hh_id): chunk_i, trips_chunk, chunk_trace_label, + chunk_sizer, ) in chunk.adaptive_chunked_choosers_by_chunk_id( - trips_df, chunk_size, trace_label, trace_label + state, trips_df, trace_label, trace_label ): i = 0 while (i < max_iterations) and not trips_chunk.empty: # only chunk log first iteration since memory use declines with each iteration - with chunk.chunk_log(trace_label) if i == 0 else chunk.chunk_log_skip(): + with chunk.chunk_log( + state, trace_label + ) if i == 0 else chunk.chunk_log_skip(): i += 1 is_last_iteration = i == max_iterations @@ -548,24 +600,22 @@ def trip_scheduling(trips, tours, chunk_size, trace_hh_id): ) choices = run_trip_scheduling( + state, trips_chunk, tours, probs_spec, model_settings, estimator=estimator, is_last_iteration=is_last_iteration, - chunk_size=chunk_size, - trace_hh_id=trace_hh_id, trace_label=trace_label_i, + chunk_sizer=chunk_sizer, ) # boolean series of trips whose individual trip scheduling failed failed = choices.reindex(trips_chunk.index).isnull() logger.info("%s %s failed", trace_label_i, failed.sum()) - if (failed.sum() > 0) & ( - model_settings.get("scheduling_mode") == "relative" - ): + if (failed.sum() > 0) & (model_settings.scheduling_mode == "relative"): raise RuntimeError("failed trips with relative scheduling mode") if not is_last_iteration: @@ -576,9 +626,9 @@ def trip_scheduling(trips, tours, chunk_size, trace_hh_id): choices_list.append(choices) - trips_df = trips.to_frame() + trips_df = trips.copy() - if pipeline.is_table("school_escort_trips"): + if state.is_table("school_escort_trips"): # separate out school escorting trips to exclude them from the model and estimation data bundle trips_df, se_trips_df, full_trips_index = split_out_school_escorting_trips( trips_df, school_escort_trips @@ -615,7 +665,7 @@ def trip_scheduling(trips, tours, chunk_size, trace_hh_id): trips_df["depart"] = choices - if pipeline.is_table("school_escort_trips"): + if state.is_table("school_escort_trips"): # setting destination for school escort trips se_trips_df["depart"] = reindex(school_escort_trips.depart, se_trips_df.index) non_se_trips_df["depart"] = reindex(trips_df.depart, non_se_trips_df.index) @@ -631,4 +681,4 @@ def trip_scheduling(trips, tours, chunk_size, trace_hh_id): assert not trips_df.depart.isnull().any() - pipeline.replace_table("trips", trips_df) + state.add_table("trips", trips_df) diff --git a/activitysim/abm/models/trip_scheduling_choice.py b/activitysim/abm/models/trip_scheduling_choice.py index 5a7abe1f5..d6f6d5886 100644 --- a/activitysim/abm/models/trip_scheduling_choice.py +++ b/activitysim/abm/models/trip_scheduling_choice.py @@ -1,4 +1,9 @@ +# ActivitySim +# See full license in LICENSE.txt. +from __future__ import annotations + import logging +from collections.abc import Mapping import numpy as np import pandas as pd @@ -7,16 +12,11 @@ generate_alternative_sizes, get_time_windows, ) -from activitysim.core import ( - chunk, - config, - expressions, - inject, - pipeline, - simulate, - tracing, -) +from activitysim.core import chunk, expressions, simulate, tracing, workflow +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable from activitysim.core.interaction_sample_simulate import _interaction_sample_simulate +from activitysim.core.skim_dataset import SkimDataset +from activitysim.core.skim_dictionary import SkimDict logger = logging.getLogger(__name__) @@ -67,9 +67,7 @@ def generate_schedule_alternatives(tours): stops. :return: pd.Dataframe: Potential time duration windows. """ - assert set([NUM_IB_STOPS, NUM_OB_STOPS, TOUR_DURATION_COLUMN]).issubset( - tours.columns - ) + assert {NUM_IB_STOPS, NUM_OB_STOPS, TOUR_DURATION_COLUMN}.issubset(tours.columns) stop_pattern = tours[HAS_OB_STOPS].astype(int) + tours[HAS_IB_STOPS].astype(int) @@ -195,16 +193,19 @@ def get_pattern_index_and_arrays(tour_indexes, durations, one_way=True): return indexes, patterns, pattern_sizes -def get_spec_for_segment(model_settings, spec_name, segment): +def get_spec_for_segment( + state: workflow.State, model_settings: TripSchedulingChoiceSettings, segment: str +): """ Read in the model spec :param model_settings: model settings file - :param spec_name: name of the key in the settings file :param segment: which segment of the spec file do you want to read :return: array of utility equations """ - omnibus_spec = simulate.read_model_spec(file_name=model_settings[spec_name]) + omnibus_spec = state.filesystem.read_model_spec( + file_name=model_settings.SPECIFICATION + ) spec = omnibus_spec[[segment]] @@ -216,9 +217,13 @@ def get_spec_for_segment(model_settings, spec_name, segment): def run_trip_scheduling_choice( - spec, tours, skims, locals_dict, chunk_size, trace_hh_id, trace_label + state: workflow.State, + spec: pd.DataFrame, + tours: pd.DataFrame, + skims, + locals_dict: Mapping, + trace_label: str, ): - NUM_TOUR_LEGS = 3 trace_label = tracing.extend_trace_label(trace_label, "interaction_sample_simulate") @@ -258,13 +263,14 @@ def run_trip_scheduling_choice( indirect_tours = tours.loc[tours[HAS_OB_STOPS] | tours[HAS_IB_STOPS]] if len(indirect_tours) > 0: - # Iterate through the chunks result_list = [] - for i, choosers, chunk_trace_label in chunk.adaptive_chunked_choosers( - indirect_tours, chunk_size, trace_label - ): - + for ( + i, + choosers, + chunk_trace_label, + chunk_sizer, + ) in chunk.adaptive_chunked_choosers(state, indirect_tours, trace_label): # Sort the choosers and get the schedule alternatives choosers = choosers.sort_index() schedules = generate_schedule_alternatives(choosers).sort_index() @@ -275,6 +281,7 @@ def run_trip_scheduling_choice( # Run the simulation choices = _interaction_sample_simulate( + state, choosers=choosers, alternatives=schedules, spec=spec, @@ -288,6 +295,7 @@ def run_trip_scheduling_choice( trace_label=chunk_trace_label, trace_choice_name="trip_schedule_stage_1", estimator=None, + chunk_sizer=chunk_sizer, ) assert len(choices.index) == len(choosers.index) @@ -296,7 +304,7 @@ def run_trip_scheduling_choice( result_list.append(choices) - chunk.log_df(trace_label, f"result_list", result_list) + chunk_sizer.log_df(trace_label, "result_list", result_list) # FIXME: this will require 2X RAM # if necessary, could append to hdf5 store on disk: @@ -319,15 +327,39 @@ def run_trip_scheduling_choice( return tours -@inject.step() -def trip_scheduling_choice(trips, tours, skim_dict, chunk_size, trace_hh_id): +class TripSchedulingChoiceSettings(PydanticReadable, extra="forbid"): + """ + Settings for the `trip_scheduling_choice` component. + """ - trace_label = "trip_scheduling_choice" - model_settings = config.read_model_settings("trip_scheduling_choice.yaml") - spec = get_spec_for_segment(model_settings, "SPECIFICATION", "stage_one") + PREPROCESSOR: PreprocessorSettings | None = None + """Setting for the preprocessor.""" - trips_df = trips.to_frame() - tours_df = tours.to_frame() + SPECIFICATION: str + """file name of specification file""" + + +@workflow.step +def trip_scheduling_choice( + state: workflow.State, + trips: pd.DataFrame, + tours: pd.DataFrame, + skim_dict: SkimDict | SkimDataset, + model_settings: TripSchedulingChoiceSettings | None = None, + model_settings_file_name: str = "trip_scheduling_choice.yaml", + trace_label: str = "trip_scheduling_choice", +) -> None: + + if model_settings is None: + model_settings = TripSchedulingChoiceSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + + spec = get_spec_for_segment(state, model_settings, "stage_one") + + trips_df = trips + tours_df = tours outbound_trips = trips_df[trips_df[OUTBOUND_FLAG]] inbound_trips = trips_df[~trips_df[OUTBOUND_FLAG]] @@ -356,28 +388,30 @@ def trip_scheduling_choice(trips, tours, skim_dict, chunk_size, trace_hh_id): .reindex(tours.index) ) - preprocessor_settings = model_settings.get("PREPROCESSOR", None) + preprocessor_settings = model_settings.PREPROCESSOR + + # hack: preprocessor adds origin column in place if it does not exist already + od_skim_stack_wrapper = skim_dict.wrap("origin", "destination") + do_skim_stack_wrapper = skim_dict.wrap("destination", "origin") + obib_skim_stack_wrapper = skim_dict.wrap(LAST_OB_STOP, FIRST_IB_STOP) + + skims = [od_skim_stack_wrapper, do_skim_stack_wrapper, obib_skim_stack_wrapper] + + locals_dict = { + "od_skims": od_skim_stack_wrapper, + "do_skims": do_skim_stack_wrapper, + "obib_skims": obib_skim_stack_wrapper, + "orig_col_name": "origin", + "dest_col_name": "destination", + "timeframe": "timeless_directional", + } if preprocessor_settings: - # hack: preprocessor adds origin column in place if it does not exist already - od_skim_stack_wrapper = skim_dict.wrap("origin", "destination") - do_skim_stack_wrapper = skim_dict.wrap("destination", "origin") - obib_skim_stack_wrapper = skim_dict.wrap(LAST_OB_STOP, FIRST_IB_STOP) - - skims = [od_skim_stack_wrapper, do_skim_stack_wrapper, obib_skim_stack_wrapper] - - locals_dict = { - "od_skims": od_skim_stack_wrapper, - "do_skims": do_skim_stack_wrapper, - "obib_skims": obib_skim_stack_wrapper, - "orig_col_name": "origin", - "dest_col_name": "destination", - "timeframe": "timeless_directional", - } simulate.set_skim_wrapper_targets(tours_df, skims) expressions.assign_columns( + state, df=tours_df, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -385,7 +419,7 @@ def trip_scheduling_choice(trips, tours, skim_dict, chunk_size, trace_hh_id): ) tours_df = run_trip_scheduling_choice( - spec, tours_df, skims, locals_dict, chunk_size, trace_hh_id, trace_label + state, spec, tours_df, skims, locals_dict, trace_label ) - pipeline.replace_table("tours", tours_df) + state.add_table("tours", tours_df) diff --git a/activitysim/abm/models/util/annotate.py b/activitysim/abm/models/util/annotate.py index e50519b38..a689637f9 100644 --- a/activitysim/abm/models/util/annotate.py +++ b/activitysim/abm/models/util/annotate.py @@ -1,12 +1,13 @@ # ActivitySim # See full license in LICENSE.txt. -import pandas as pd +from __future__ import annotations + import logging -from activitysim.core import expressions -from activitysim.core import tracing -from activitysim.core import inject -from activitysim.core import pipeline +import pandas as pd + +from activitysim.core import expressions, tracing, workflow +from activitysim.core.configuration import PydanticBase """ Code for annotating tables @@ -15,39 +16,63 @@ logger = logging.getLogger(__name__) -def annotate_tours(model_settings, trace_label, locals_dict={}): +def annotate_tours( + state: workflow.State, + model_settings: dict | PydanticBase, + trace_label: str, + locals_dict: dict | None = None, +): """ Add columns to the tours table in the pipeline according to spec. Parameters ---------- - model_settings : dict + state : workflow.State + model_settings : dict or PydanticBase trace_label : str + locals_dict : dict, optional """ - tours = inject.get_table("tours").to_frame() + if isinstance(model_settings, PydanticBase): + model_settings = model_settings.dict() + if locals_dict is None: + locals_dict = {} + tours = state.get_dataframe("tours") expressions.assign_columns( + state, df=tours, model_settings=model_settings.get("annotate_tours"), locals_dict=locals_dict, trace_label=tracing.extend_trace_label(trace_label, "annotate_tours"), ) - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) -def annotate_trips(model_settings, trace_label, locals_dict={}): +def annotate_trips( + state: workflow.State, + model_settings: dict | PydanticBase, + trace_label: str, + locals_dict=None, +): """ Add columns to the trips table in the pipeline according to spec. Parameters ---------- - model_settings : dict + state : workflow.State + model_settings : dict or PydanticBase trace_label : str + locals_dict : dict, optional """ - trips = inject.get_table("trips").to_frame() + if isinstance(model_settings, PydanticBase): + model_settings = model_settings.dict() + if locals_dict is None: + locals_dict = {} + trips = state.get_dataframe("trips") expressions.assign_columns( + state, df=trips, model_settings=model_settings.get("annotate_trips"), locals_dict=locals_dict, trace_label=tracing.extend_trace_label(trace_label, "annotate_trips"), ) - pipeline.replace_table("trips", trips) + state.add_table("trips", trips) diff --git a/activitysim/abm/models/util/canonical_ids.py b/activitysim/abm/models/util/canonical_ids.py index 4e46e26aa..ab2623916 100644 --- a/activitysim/abm/models/util/canonical_ids.py +++ b/activitysim/abm/models/util/canonical_ids.py @@ -1,15 +1,14 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import re import numpy as np import pandas as pd -import re -from activitysim.core import config -from activitysim.core import pipeline -from activitysim.core import simulate +from activitysim.core import simulate, workflow logger = logging.getLogger(__name__) @@ -58,9 +57,9 @@ def enumerate_tour_types(tour_flavors): return channels -def read_alts_file(file_name, set_index=None): +def read_alts_file(state: workflow.State, file_name, set_index=None): try: - alts = simulate.read_model_alts(file_name, set_index=set_index) + alts = simulate.read_model_alts(state, file_name, set_index=set_index) except (RuntimeError, FileNotFoundError): logger.warning(f"Could not find file {file_name} to determine tour flavors.") return pd.DataFrame() @@ -183,7 +182,7 @@ def determine_flavors_from_alts_file( flavors = { c: int(alts[c].max() + max_extension) for c in alts.columns - if all(alts[c].astype(str).str.isnumeric()) + if all(alts[c].astype(str).str.isnumeric()) and (c != "tot_tours") } valid_flavors = all( [(isinstance(flavor, str) & (num >= 0)) for flavor, num in flavors.items()] @@ -210,7 +209,7 @@ def determine_flavors_from_alts_file( return flavors -def canonical_tours(): +def canonical_tours(state: workflow.State): """ create labels for every the possible tour by combining tour_type/tour_num. @@ -221,12 +220,14 @@ def canonical_tours(): # ---- non_mandatory_channels nm_model_settings_file_name = "non_mandatory_tour_frequency.yaml" - nm_model_settings = config.read_model_settings(nm_model_settings_file_name) - nm_alts = read_alts_file("non_mandatory_tour_frequency_alternatives.csv") + nm_model_settings = state.filesystem.read_model_settings( + nm_model_settings_file_name + ) + nm_alts = read_alts_file(state, "non_mandatory_tour_frequency_alternatives.csv") # first need to determine max extension try: - ext_probs_f = config.config_file_path( + ext_probs_f = state.filesystem.get_config_file_path( "non_mandatory_tour_frequency_extension_probs.csv" ) extension_probs = pd.read_csv(ext_probs_f, comment="#") @@ -258,9 +259,11 @@ def canonical_tours(): # ---- mandatory_channels mtf_model_settings_file_name = "mandatory_tour_frequency.yaml" - mtf_model_settings = config.read_model_settings(mtf_model_settings_file_name) + mtf_model_settings = state.filesystem.read_model_settings( + mtf_model_settings_file_name + ) mtf_spec = mtf_model_settings.get("SPEC", "mandatory_tour_frequency.csv") - mtf_model_spec = read_alts_file(file_name=mtf_spec) + mtf_model_spec = read_alts_file(state, file_name=mtf_spec) default_mandatory_tour_flavors = {"work": 2, "school": 2} mandatory_tour_flavors = determine_mandatory_tour_flavors( @@ -272,8 +275,10 @@ def canonical_tours(): # ---- atwork_subtour_channels atwork_model_settings_file_name = "atwork_subtour_frequency.yaml" - atwork_model_settings = config.read_model_settings(atwork_model_settings_file_name) - atwork_alts = read_alts_file("atwork_subtour_frequency_alternatives.csv") + atwork_model_settings = state.filesystem.read_model_settings( + atwork_model_settings_file_name + ) + atwork_alts = read_alts_file(state, "atwork_subtour_frequency_alternatives.csv") provided_atwork_flavors = atwork_model_settings.get("ATWORK_SUBTOUR_FLAVORS", None) default_atwork_flavors = {"eat": 1, "business": 2, "maint": 1} @@ -296,8 +301,10 @@ def canonical_tours(): # ---- joint_tour_channels jtf_model_settings_file_name = "joint_tour_frequency.yaml" - jtf_model_settings = config.read_model_settings(jtf_model_settings_file_name) - jtf_alts = read_alts_file("joint_tour_frequency_alternatives.csv") + jtf_model_settings = state.filesystem.read_model_settings( + jtf_model_settings_file_name + ) + jtf_alts = read_alts_file(state, "joint_tour_frequency_alternatives.csv") provided_joint_flavors = jtf_model_settings.get("JOINT_TOUR_FLAVORS", None) default_joint_flavors = { @@ -324,11 +331,14 @@ def canonical_tours(): # ---- school escort channels # only include if model is run - if pipeline.is_table("school_escort_tours") | ( - "school_escorting" in config.setting("models", default=[]) + if state.is_table("school_escort_tours") | ( + state.settings.models is not None + and "school_escorting" in state.settings.models ): se_model_settings_file_name = "school_escorting.yaml" - se_model_settings = config.read_model_settings(se_model_settings_file_name) + se_model_settings = state.filesystem.read_model_settings( + se_model_settings_file_name + ) num_escortees = se_model_settings.get("NUM_ESCORTEES", 3) school_escort_flavors = {"escort": 2 * num_escortees} school_escort_channels = enumerate_tour_types(school_escort_flavors) @@ -343,7 +353,11 @@ def canonical_tours(): def set_tour_index( - tours, parent_tour_num_col=None, is_joint=False, is_school_escorting=False + state: workflow.State, + tours, + parent_tour_num_col=None, + is_joint=False, + is_school_escorting=False, ): """ The new index values are stable based on the person_id, tour_type, and tour_num. @@ -363,13 +377,13 @@ def set_tour_index( """ tour_num_col = "tour_type_num" - possible_tours = canonical_tours() + possible_tours = canonical_tours(state) possible_tours_count = len(possible_tours) assert tour_num_col in tours.columns # create string tour_id corresonding to keys in possible_tours (e.g. 'work1', 'j_shopping2') - tours["tour_id"] = tours.tour_type + tours[tour_num_col].map(str) + tours["tour_id"] = tours.tour_type.astype(str) + tours[tour_num_col].map(str) if parent_tour_num_col: # we need to distinguish between subtours of different work tours @@ -417,16 +431,16 @@ def set_tour_index( return tours -def determine_max_trips_per_leg(default_max_trips_per_leg=4): +def determine_max_trips_per_leg(state: workflow.State, default_max_trips_per_leg=4): model_settings_file_name = "stop_frequency.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + model_settings = state.filesystem.read_model_settings(model_settings_file_name) # first see if flavors given explicitly provided_max_trips_per_leg = model_settings.get("MAX_TRIPS_PER_LEG", None) # determine flavors from alternative file try: - alts = read_alts_file("stop_frequency_alternatives.csv") + alts = read_alts_file(state, "stop_frequency_alternatives.csv") trips_per_leg = [ int(alts[c].max()) for c in alts.columns @@ -452,10 +466,10 @@ def determine_max_trips_per_leg(default_max_trips_per_leg=4): return default_max_trips_per_leg -def set_trip_index(trips, tour_id_column="tour_id"): +def set_trip_index(state: workflow.State, trips, tour_id_column="tour_id"): # max number of trips per leg (inbound or outbound) of tour # = stops + 1 for primary half-tour destination - max_trips_per_leg = determine_max_trips_per_leg() + max_trips_per_leg = determine_max_trips_per_leg(state) # canonical_trip_num: 1st trip out = 1, 2nd trip out = 2, 1st in = 5, etc. canonical_trip_num = (~trips.outbound * max_trips_per_leg) + trips.trip_num diff --git a/activitysim/abm/models/util/cdap.py b/activitysim/abm/models/util/cdap.py index b71d5128a..6ed14d492 100644 --- a/activitysim/abm/models/util/cdap.py +++ b/activitysim/abm/models/util/cdap.py @@ -1,13 +1,14 @@ +from __future__ import annotations + # ActivitySim # See full license in LICENSE.txt. import itertools import logging -import os import numpy as np import pandas as pd -from activitysim.core import chunk, config, inject, logit, pipeline, simulate, tracing +from activitysim.core import chunk, logit, simulate, tracing, workflow logger = logging.getLogger(__name__) @@ -29,7 +30,6 @@ def set_hh_index(df): - # index on household_id, not person_id df.set_index(_hh_id_, inplace=True) df.index.name = _hh_index_ @@ -50,7 +50,13 @@ def add_pn(col, pnum): raise RuntimeError("add_pn col not list or str") -def assign_cdap_rank(persons, person_type_map, trace_hh_id=None, trace_label=None): +def assign_cdap_rank( + state: workflow.State | None, + persons, + person_type_map, + trace_hh_id=None, + trace_label=None, +): """ Assign an integer index, cdap_rank, to each household member. (Starting with 1, not 0) @@ -130,7 +136,11 @@ def assign_cdap_rank(persons, person_type_map, trace_hh_id=None, trace_label=Non # choose up to MAX_HHSIZE, choosing randomly others = persons[[_hh_id_, "cdap_rank"]].copy() - others["random_order"] = pipeline.get_rn_generator().random_for_df(persons) + if state is None: + # typically in estimation, no state is available, just use stable but simple random + others["random_order"] = np.random.default_rng(seed=0).uniform(size=len(others)) + else: + others["random_order"] = state.get_rn_generator().random_for_df(persons) others = ( others.sort_values(by=[_hh_id_, "random_order"], ascending=[True, True]) .groupby(_hh_id_) @@ -156,17 +166,24 @@ def assign_cdap_rank(persons, person_type_map, trace_hh_id=None, trace_label=Non persons["cdap_rank"] = p["cdap_rank"] # assignment aligns on index values # if DUMP: - # tracing.trace_df(persons, '%s.DUMP.cdap_person_array' % trace_label, + # state.tracing.trace_df(persons, '%s.DUMP.cdap_person_array' % trace_label, # transpose=False, slicer='NONE') - if trace_hh_id: - tracing.trace_df(persons, "%s.cdap_rank" % trace_label) + if trace_hh_id and state is not None: + state.tracing.trace_df(persons, "%s.cdap_rank" % trace_label) return persons["cdap_rank"] def individual_utilities( - persons, cdap_indiv_spec, locals_d, trace_hh_id=None, trace_label=None + state: workflow.State, + persons, + cdap_indiv_spec, + locals_d, + trace_hh_id=None, + trace_label=None, + *, + chunk_sizer, ): """ Calculate CDAP utilities for all individuals. @@ -188,7 +205,12 @@ def individual_utilities( # calculate single person utilities indiv_utils = simulate.eval_utilities( - cdap_indiv_spec, persons, locals_d, trace_label=trace_label + state, + cdap_indiv_spec, + persons, + locals_d, + trace_label=trace_label, + chunk_sizer=chunk_sizer, ) # add columns from persons to facilitate building household interactions @@ -196,13 +218,13 @@ def individual_utilities( indiv_utils[useful_columns] = persons[useful_columns] # add attributes for joint tour utility - model_settings = config.read_model_settings("cdap.yaml") + model_settings = state.filesystem.read_model_settings("cdap.yaml") additional_useful_columns = model_settings.get("JOINT_TOUR_USEFUL_COLUMNS", None) if additional_useful_columns is not None: indiv_utils[additional_useful_columns] = persons[additional_useful_columns] if trace_hh_id: - tracing.trace_df( + state.tracing.trace_df( indiv_utils, "%s.indiv_utils" % trace_label, column_labels=["activity", "person"], @@ -269,11 +291,11 @@ def cached_joint_spec_name(hhsize): return "cdap_joint_spec_%s" % hhsize -def get_cached_spec(hhsize): +def get_cached_spec(state: workflow.State, hhsize): spec_name = cached_spec_name(hhsize) - spec = inject.get_injectable(spec_name, None) + spec = state.get_injectable(spec_name, None) if spec is not None: logger.debug("build_cdap_spec returning cached injectable spec %s", spec_name) return spec @@ -283,8 +305,8 @@ def get_cached_spec(hhsize): # cached spec will be available as an injectable to subsequent chunks # # try data dir - # if os.path.exists(config.output_file_path(spec_name)): - # spec_path = config.output_file_path(spec_name) + # if os.path.exists(state.get_output_file_path(spec_name)): + # spec_path = state.get_output_file_path(spec_name) # logger.info("build_cdap_spec reading cached spec %s from %s", spec_name, spec_path) # return pd.read_csv(spec_path, index_col='Expression') @@ -305,9 +327,35 @@ def get_cached_joint_spec(hhsize): return None -def cache_spec(hhsize, spec): +def get_cached_joint_spec(state: workflow.State, hhsize): + + spec_name = cached_joint_spec_name(hhsize) + + spec = state.get_injectable(spec_name, None) + if spec is not None: + logger.debug( + "build_cdap_joint_spec returning cached injectable spec %s", spec_name + ) + return spec + + return None + + +def cache_spec(state: workflow.State, hhsize, spec): spec_name = cached_spec_name(hhsize) # cache as injectable + state.add_injectable(spec_name, spec) + + +def cache_joint_spec(state: workflow.State, hhsize, spec): + spec_name = cached_joint_spec_name(hhsize) + # cache as injectable + state.add_injectable(spec_name, spec) + + +def cache_joint_spec(hhsize, spec): + spec_name = cached_joint_spec_name(hhsize) + # cache as injectable inject.add_injectable(spec_name, spec) @@ -318,6 +366,7 @@ def cache_joint_spec(hhsize, spec): def build_cdap_spec( + state: workflow.State, interaction_coefficients, hhsize, trace_spec=False, @@ -372,7 +421,7 @@ def build_cdap_spec( # if DUMP: # # dump the interaction_coefficients table because it has been preprocessed - # tracing.trace_df(interaction_coefficients, + # state.tracing.trace_df(interaction_coefficients, # '%s.hhsize%d_interaction_coefficients' % (trace_label, hhsize), # transpose=False, slicer='NONE') @@ -380,7 +429,7 @@ def build_cdap_spec( hhsize = min(hhsize, MAX_HHSIZE) if cache: - spec = get_cached_spec(hhsize) + spec = get_cached_spec(state, hhsize) if spec is not None: return spec @@ -412,7 +461,6 @@ def build_cdap_spec( # N_p1 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 0.0 for pnum in range(1, hhsize + 1): for activity in ["M", "N", "H"]: - new_row_index = len(spec) spec.loc[new_row_index, expression_name] = add_pn(activity, pnum) @@ -428,10 +476,8 @@ def build_cdap_spec( # for each row in the interaction_coefficients table for row in interaction_coefficients[relevant_rows].itertuples(): - # if it is a wildcard all_people interaction if not row.interaction_ptypes: - # wildcard interactions only apply if the interaction includes all household members # this will be the case if the cardinality of the wildcard equals the hhsize # conveniently, the slug is given the name of the alternative column (e.g. HHHH) @@ -455,7 +501,6 @@ def build_cdap_spec( # possible combination of interacting persons # e.g. for (1, 2), (1,3), (2,3) for a coefficient with cardinality 2 in hhsize 3 for tup in itertools.combinations(list(range(1, hhsize + 1)), row.cardinality): - # determine the name of the chooser column with the ptypes for this interaction if row.cardinality == 1: interaction_column = "ptype_p%d" % tup[0] @@ -497,7 +542,7 @@ def build_cdap_spec( simulate.uniquify_spec_index(spec) if trace_spec: - tracing.trace_df( + state.tracing.trace_df( spec, "%s.hhsize%d_spec" % (trace_label, hhsize), transpose=False, @@ -510,7 +555,7 @@ def build_cdap_spec( spec[c] = spec[c].map(lambda x: d.get(x, x or 0.0)).fillna(0) if trace_spec: - tracing.trace_df( + state.tracing.trace_df( spec, "%s.hhsize%d_spec_patched" % (trace_label, hhsize), transpose=False, @@ -518,7 +563,7 @@ def build_cdap_spec( ) if cache: - cache_spec(hhsize, spec) + cache_spec(state, hhsize, spec) t0 = tracing.print_elapsed_time("build_cdap_spec hh_size %s" % hhsize, t0) @@ -726,6 +771,212 @@ def build_cdap_joint_spec( return spec +def build_cdap_joint_spec( + state: workflow.State, + joint_tour_coefficients, + hhsize, + trace_spec=False, + trace_label=None, + cache=True, +): + """ + Build a spec file for computing joint tour utilities of alternative household member for households of specified size. + We generate this spec automatically from a table of rules and coefficients because the + interaction rules are fairly simple and can be expressed compactly whereas + there is a lot of redundancy between the spec files for different household sizes, as well as + in the vectorized expression of the interaction alternatives within the spec file itself + joint_tour_coefficients has five columns: + label + label of the expression + description + description of the expression + dependency + if the expression is dependent on alternative, and which alternative is it dependent on + (e.g. M_px, N_px, H_px) + expression + expression of the utility term + coefficient + The coefficient to apply for the alternative + The generated spec will have the eval expression in the index, and a utility column for each + alternative (e.g. ['HH', 'HM', 'HN', 'MH', 'MM', 'MN', 'NH', 'NM', 'NN', 'MMJ', 'MNJ', 'NMJ', 'NNJ'] for hhsize 2 with joint alts) + Parameters + ---------- + joint_tour_coefficients : pandas.DataFrame + Rules and coefficients for generating joint tour specs for different household sizes + hhsize : int + household size for which the spec should be built. + Returns + ------- + spec: pandas.DataFrame + """ + + t0 = tracing.print_elapsed_time() + + # cdap joint spec is same for all households of MAX_HHSIZE and greater + hhsize = min(hhsize, MAX_HHSIZE) + + if cache: + spec = get_cached_joint_spec(state, hhsize) + if spec is not None: + return spec + + expression_name = "Expression" + + # generate a list of activity pattern alternatives for this hhsize + # e.g. ['HH', 'HM', 'HN', 'MH', 'MM', 'MN', 'NH', 'NM', 'NN'] for hhsize=2 + alternatives = ["".join(tup) for tup in itertools.product("HMN", repeat=hhsize)] + + joint_alternatives = [ + "".join(tup) + "J" + for tup in itertools.product("HMN", repeat=hhsize) + if tup.count("M") + tup.count("N") >= 2 + ] + alternatives = alternatives + joint_alternatives + + # spec df has expression column plus a column for each alternative + spec = pd.DataFrame(columns=[expression_name] + alternatives) + + # Before processing the interaction_coefficients, we add add rows to the spec to carry + # the alternative utilities previously computed for each individual into all hh alternative + # columns in which the individual assigned that alternative. The Expression column contains + # the name of the choosers column with that individuals utility for the individual alternative + # and the hh alternative columns that should receive that utility are given a value of 1 + # e.g. M_p1 is a column in choosers with the individual utility to person p1 of alternative M + # Expression MM MN MH NM NN NH HM HN HH + # M_p1 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 + # N_p1 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 0.0 + for pnum in range(1, hhsize + 1): + for activity in ["M", "N", "H"]: + + new_row_index = len(spec) + spec.loc[new_row_index, expression_name] = add_pn(activity, pnum) + + # list of alternative columns where person pnum has expression activity + # e.g. for M_p1 we want the columns where activity M is in position p1 + alternative_columns = [ + alt for alt in alternatives if alt[pnum - 1] == activity + ] + spec.loc[new_row_index, alternative_columns] = 1 + + # for each row in the joint util table + for row in joint_tour_coefficients.itertuples(): + + # if there is no dependencies + if row.dependency is np.nan: + expression = row.Expression + # add a new row to spec + new_row_index = len(spec) + spec.loc[new_row_index, expression_name] = expression + spec.loc[new_row_index, alternatives] = row.coefficient + # if there is dependencies + else: + dependency_name = row.dependency + expression = row.Expression + coefficient = row.coefficient + if dependency_name in ["M_px", "N_px", "H_px"]: + if "_pxprod" in expression: + prod_conds = [j.strip() for j in row.Expression.split("|")] + expanded_expressions = [ + tup + for tup in itertools.product( + range(len(prod_conds)), repeat=hhsize + ) + ] + for expression_tup in expanded_expressions: + expression_list = [] + dependency_list = [] + for counter in range(len(expression_tup)): + expression_list.append( + prod_conds[expression_tup[counter]].replace( + "xprod", str(counter + 1) + ) + ) + if expression_tup[counter] == 0: + dependency_list.append( + dependency_name.replace("x", str(counter + 1)) + ) + + expression_value = "&".join(expression_list) + dependency_value = pd.Series( + np.ones(len(alternatives)), index=alternatives + ) + if len(dependency_list) > 0: + for dependency in dependency_list: + # temp = spec.loc[spec[expression_name]==dependency, alternatives].squeeze().fillna(0) + dependency_value *= ( + spec.loc[ + spec[expression_name] == dependency, + alternatives, + ] + .squeeze() + .fillna(0) + ) + + # add a new row to spec + new_row_index = len(spec) + spec.loc[new_row_index] = dependency_value + spec.loc[new_row_index, expression_name] = expression_value + spec.loc[new_row_index, alternatives] = ( + spec.loc[new_row_index, alternatives] * coefficient + ) + + elif "_px" in expression: + for pnum in range(1, hhsize + 1): + dependency_name = row.dependency.replace("x", str(pnum)) + expression = row.Expression.replace("x", str(pnum)) + + # add a new row to spec + new_row_index = len(spec) + spec.loc[new_row_index] = spec.loc[ + spec[expression_name] == dependency_name + ].squeeze() + spec.loc[new_row_index, expression_name] = expression + spec.loc[new_row_index, alternatives] = ( + spec.loc[new_row_index, alternatives] * coefficient + ) + + # drop dependency rows + spec = spec[~spec[expression_name].str.startswith(("M_p", "N_p", "H_p"))] + + # eval expression goes in the index + spec.set_index(expression_name, inplace=True) + + for c in spec.columns: + spec[c] = spec[c].fillna(0) + + simulate.uniquify_spec_index(spec) + + # make non-joint alts 0 + for c in alternatives: + if c.endswith("J"): + continue + else: + spec[c] = 0 + + if trace_spec: + state.tracing.trace_df( + spec, + "%s.hhsize%d_joint_spec" % (trace_label, hhsize), + transpose=False, + slicer="NONE", + ) + + if trace_spec: + state.tracing.trace_df( + spec, + "%s.hhsize%d_joint_spec_patched" % (trace_label, hhsize), + transpose=False, + slicer="NONE", + ) + + if cache: + cache_joint_spec(state, hhsize, spec) + + t0 = tracing.print_elapsed_time("build_cdap_joint_spec hh_size %s" % hhsize, t0) + + return spec + + def add_interaction_column(choosers, p_tup): """ Add an interaction column in place to choosers, listing the ptypes of the persons in p_tup @@ -784,7 +1035,7 @@ def add_interaction_column(choosers, p_tup): ) -def hh_choosers(indiv_utils, hhsize): +def hh_choosers(state: workflow.State, indiv_utils, hhsize): """ Build a chooser table for calculating house utilities for all households of specified hhsize @@ -823,7 +1074,7 @@ def hh_choosers(indiv_utils, hhsize): merge_cols = [_hh_id_, _ptype_, "M", "N", "H"] # add attributes for joint tour utility - model_settings = config.read_model_settings("cdap.yaml") + model_settings = state.filesystem.read_model_settings("cdap.yaml") additional_merge_cols = model_settings.get("JOINT_TOUR_USEFUL_COLUMNS", None) if additional_merge_cols is not None: merge_cols.extend(additional_merge_cols) @@ -846,7 +1097,6 @@ def hh_choosers(indiv_utils, hhsize): # for each of the higher cdap_ranks for pnum in range(2, hhsize + 1): - # df with merge columns for indiv with cdap_rank of pnum rhs = indiv_utils.loc[ include_households & (indiv_utils["cdap_rank"] == pnum), merge_cols @@ -877,12 +1127,15 @@ def hh_choosers(indiv_utils, hhsize): def household_activity_choices( + state: workflow.State, indiv_utils, interaction_coefficients, hhsize, trace_hh_id=None, trace_label=None, add_joint_tour_utility=False, + *, + chunk_sizer, ): """ Calculate household utilities for each activity pattern alternative for households of hhsize @@ -919,10 +1172,10 @@ def household_activity_choices( # index on household_id, not person_id set_hh_index(utils) else: - - choosers = hh_choosers(indiv_utils, hhsize=hhsize) + choosers = hh_choosers(state, indiv_utils, hhsize=hhsize) spec = build_cdap_spec( + state, interaction_coefficients, hhsize, trace_spec=(trace_hh_id in choosers.index), @@ -930,15 +1183,19 @@ def household_activity_choices( joint_tour_alt=add_joint_tour_utility, ) - utils = simulate.eval_utilities(spec, choosers, trace_label=trace_label) + utils = simulate.eval_utilities( + state, spec, choosers, trace_label=trace_label, chunk_sizer=chunk_sizer + ) if len(utils.index) == 0: return pd.Series(dtype="float64") + probs = logit.utils_to_probs(state, utils, trace_label=trace_label) # calculate joint tour utility if add_joint_tour_utility & (hhsize > 1): # calculate joint utils joint_tour_spec = build_cdap_joint_spec( + state, interaction_coefficients, hhsize, trace_spec=(trace_hh_id in choosers.index), @@ -946,46 +1203,47 @@ def household_activity_choices( ) joint_tour_utils = simulate.eval_utilities( - joint_tour_spec, choosers, trace_label=trace_label + state, + joint_tour_spec, + choosers, + trace_label=trace_label, + chunk_sizer=chunk_sizer, ) # add joint util to util utils = utils.add(joint_tour_utils) - probs = logit.utils_to_probs(utils, trace_label=trace_label) - # select an activity pattern alternative for each household based on probability # result is a series indexed on _hh_index_ with the (0 based) index of the column from probs - idx_choices, rands = logit.make_choices(probs, trace_label=trace_label) + idx_choices, rands = logit.make_choices(state, probs, trace_label=trace_label) # convert choice expressed as index into alternative name from util column label choices = pd.Series(utils.columns[idx_choices].values, index=utils.index) if trace_hh_id: - if hhsize > 1: - tracing.trace_df( + state.tracing.trace_df( choosers, "%s.hhsize%d_choosers" % (trace_label, hhsize), column_labels=["expression", "person"], ) - tracing.trace_df( + state.tracing.trace_df( utils, "%s.hhsize%d_utils" % (trace_label, hhsize), column_labels=["expression", "household"], ) - tracing.trace_df( + state.tracing.trace_df( probs, "%s.hhsize%d_probs" % (trace_label, hhsize), column_labels=["expression", "household"], ) - tracing.trace_df( + state.tracing.trace_df( choices, "%s.hhsize%d_activity_choices" % (trace_label, hhsize), column_labels=["expression", "household"], ) - tracing.trace_df( + state.tracing.trace_df( rands, "%s.hhsize%d_rands" % (trace_label, hhsize), columns=[None, "rand"] ) @@ -1034,7 +1292,7 @@ def unpack_cdap_indiv_activity_choices(persons, hh_choices, trace_hh_id, trace_l cdap_indiv_activity_choices = indiv_activity["cdap_activity"] # if DUMP: - # tracing.trace_df(cdap_indiv_activity_choices, + # state.tracing.trace_df(cdap_indiv_activity_choices, # '%s.DUMP.cdap_indiv_activity_choices' % trace_label, # transpose=False, slicer='NONE') @@ -1042,7 +1300,12 @@ def unpack_cdap_indiv_activity_choices(persons, hh_choices, trace_hh_id, trace_l def extra_hh_member_choices( - persons, cdap_fixed_relative_proportions, locals_d, trace_hh_id, trace_label + state: workflow.State, + persons, + cdap_fixed_relative_proportions: pd.DataFrame, + locals_d, + trace_hh_id, + trace_label, ): """ Generate the activity choices for the 'extra' household members who weren't handled by cdap @@ -1083,7 +1346,7 @@ def extra_hh_member_choices( # eval the expression file values = simulate.eval_variables( - cdap_fixed_relative_proportions.index, choosers, locals_d + state, cdap_fixed_relative_proportions.index, choosers, locals_d ) # cdap_fixed_relative_proportions computes relative proportions by ptype, not utilities @@ -1095,37 +1358,37 @@ def extra_hh_member_choices( # select an activity pattern alternative for each person based on probability # idx_choices is a series (indexed on _persons_index_ ) with the chosen alternative represented # as the integer (0 based) index of the chosen column from probs - idx_choices, rands = logit.make_choices(probs, trace_label=trace_label) + idx_choices, rands = logit.make_choices(state, probs, trace_label=trace_label) # convert choice from column index to activity name choices = pd.Series(probs.columns[idx_choices].values, index=probs.index) # if DUMP: - # tracing.trace_df(proportions, '%s.DUMP.extra_proportions' % trace_label, + # state.tracing.trace_df(proportions, '%s.DUMP.extra_proportions' % trace_label, # transpose=False, slicer='NONE') - # tracing.trace_df(probs, '%s.DUMP.extra_probs' % trace_label, + # state.tracing.trace_df(probs, '%s.DUMP.extra_probs' % trace_label, # transpose=False, slicer='NONE') - # tracing.trace_df(choices, '%s.DUMP.extra_choices' % trace_label, + # state.tracing.trace_df(choices, '%s.DUMP.extra_choices' % trace_label, # transpose=False, # slicer='NONE') if trace_hh_id: - tracing.trace_df( + state.tracing.trace_df( proportions, "%s.extra_hh_member_choices_proportions" % trace_label, column_labels=["expression", "person"], ) - tracing.trace_df( + state.tracing.trace_df( probs, "%s.extra_hh_member_choices_probs" % trace_label, column_labels=["expression", "person"], ) - tracing.trace_df( + state.tracing.trace_df( choices, "%s.extra_hh_member_choices_choices" % trace_label, column_labels=["expression", "person"], ) - tracing.trace_df( + state.tracing.trace_df( rands, "%s.extra_hh_member_choices_rands" % trace_label, columns=[None, "rand"], @@ -1135,6 +1398,7 @@ def extra_hh_member_choices( def _run_cdap( + state: workflow.State, persons, person_type_map, cdap_indiv_spec, @@ -1144,7 +1408,9 @@ def _run_cdap( trace_hh_id, trace_label, add_joint_tour_utility, -): + *, + chunk_sizer, +) -> pd.DataFrame | tuple: """ Implements core run_cdap functionality on persons df (or chunked subset thereof) Aside from chunking of persons df, params are passed through from run_cdap unchanged @@ -1160,43 +1426,46 @@ def _run_cdap( # assign integer cdap_rank to each household member # persons with cdap_rank 1..MAX_HHSIZE will be have their activities chose by CDAP model # extra household members, will have activities assigned by in fixed proportions - assign_cdap_rank(persons, person_type_map, trace_hh_id, trace_label) - chunk.log_df(trace_label, "persons", persons) + assign_cdap_rank(state, persons, person_type_map, trace_hh_id, trace_label) + chunk_sizer.log_df(trace_label, "persons", persons) # Calculate CDAP utilities for each individual, ignoring interactions # ind_utils has index of 'person_id' and a column for each alternative # i.e. three columns 'M' (Mandatory), 'N' (NonMandatory), 'H' (Home) indiv_utils = individual_utilities( + state, persons[persons.cdap_rank <= MAX_HHSIZE], cdap_indiv_spec, locals_d, trace_hh_id, trace_label, + chunk_sizer=chunk_sizer, ) - chunk.log_df(trace_label, "indiv_utils", indiv_utils) + chunk_sizer.log_df(trace_label, "indiv_utils", indiv_utils) # compute interaction utilities, probabilities, and hh activity pattern choices # for each size household separately in turn up to MAX_HHSIZE hh_choices_list = [] for hhsize in range(1, MAX_HHSIZE + 1): - choices = household_activity_choices( + state, indiv_utils, interaction_coefficients, hhsize=hhsize, trace_hh_id=trace_hh_id, trace_label=trace_label, add_joint_tour_utility=add_joint_tour_utility, + chunk_sizer=chunk_sizer, ) hh_choices_list.append(choices) del indiv_utils - chunk.log_df(trace_label, "indiv_utils", None) + chunk_sizer.log_df(trace_label, "indiv_utils", None) # concat all the household choices into a single series indexed on _hh_index_ hh_activity_choices = pd.concat(hh_choices_list) - chunk.log_df(trace_label, "hh_activity_choices", hh_activity_choices) + chunk_sizer.log_df(trace_label, "hh_activity_choices", hh_activity_choices) # unpack the household activity choice list into choices for each (non-extra) household member # resulting series contains one activity per individual hh member, indexed on _persons_index_ @@ -1207,7 +1476,12 @@ def _run_cdap( # assign activities to extra household members (with cdap_rank > MAX_HHSIZE) # resulting series contains one activity per individual hh member, indexed on _persons_index_ extra_person_choices = extra_hh_member_choices( - persons, cdap_fixed_relative_proportions, locals_d, trace_hh_id, trace_label + state, + persons, + cdap_fixed_relative_proportions, + locals_d, + trace_hh_id, + trace_label, ) # concat cdap and extra persoin choices into a single series @@ -1216,7 +1490,21 @@ def _run_cdap( person_choices = pd.concat([cdap_person_choices, extra_person_choices]) persons["cdap_activity"] = person_choices - chunk.log_df(trace_label, "persons", persons) + chunk_sizer.log_df(trace_label, "persons", persons) + + # return household joint tour flag + if add_joint_tour_utility: + hh_activity_choices = hh_activity_choices.to_frame(name="hh_choices") + hh_activity_choices["has_joint_tour"] = hh_activity_choices["hh_choices"].apply( + lambda x: 1 if "J" in x else 0 + ) + + # return household joint tour flag + if add_joint_tour_utility: + hh_activity_choices = hh_activity_choices.to_frame(name="hh_choices") + hh_activity_choices["has_joint_tour"] = hh_activity_choices["hh_choices"].apply( + lambda x: 1 if "J" in x else 0 + ) # return household joint tour flag if add_joint_tour_utility: @@ -1226,15 +1514,15 @@ def _run_cdap( ) # if DUMP: - # tracing.trace_df(hh_activity_choices, '%s.DUMP.hh_activity_choices' % trace_label, + # state.tracing.trace_df(hh_activity_choices, '%s.DUMP.hh_activity_choices' % trace_label, # transpose=False, slicer='NONE') - # tracing.trace_df(cdap_results, '%s.DUMP.cdap_results' % trace_label, + # state.tracing.trace_df(cdap_results, '%s.DUMP.cdap_results' % trace_label, # transpose=False, slicer='NONE') result = persons[["cdap_rank", "cdap_activity"]] del persons - chunk.log_df(trace_label, "persons", None) + chunk_sizer.log_df(trace_label, "persons", None) if add_joint_tour_utility: return result, hh_activity_choices["has_joint_tour"] @@ -1243,6 +1531,7 @@ def _run_cdap( def run_cdap( + state: workflow.State, persons, person_type_map, cdap_indiv_spec, @@ -1294,16 +1583,18 @@ def run_cdap( trace_label = tracing.extend_trace_label(trace_label, "cdap") + cdap_results = hh_choice_results = None result_list = [] # segment by person type and pick the right spec for each person type for ( i, persons_chunk, chunk_trace_label, - ) in chunk.adaptive_chunked_choosers_by_chunk_id(persons, chunk_size, trace_label): - + chunk_sizer, + ) in chunk.adaptive_chunked_choosers_by_chunk_id(state, persons, trace_label): if add_joint_tour_utility: cdap_results, hh_choice_results = _run_cdap( + state, persons_chunk, person_type_map, cdap_indiv_spec, @@ -1313,9 +1604,11 @@ def run_cdap( trace_hh_id, chunk_trace_label, add_joint_tour_utility, + chunk_sizer=chunk_sizer, ) else: cdap_results = _run_cdap( + state, persons_chunk, person_type_map, cdap_indiv_spec, @@ -1325,11 +1618,12 @@ def run_cdap( trace_hh_id, chunk_trace_label, add_joint_tour_utility, + chunk_sizer=chunk_sizer, ) result_list.append(cdap_results) - chunk.log_df(trace_label, f"result_list", result_list) + chunk_sizer.log_df(trace_label, "result_list", result_list) # FIXME: this will require 2X RAM # if necessary, could append to hdf5 store on disk: @@ -1338,8 +1632,7 @@ def run_cdap( cdap_results = pd.concat(result_list) if trace_hh_id: - - tracing.trace_df( + state.tracing.trace_df( cdap_results, label="cdap", columns=["cdap_rank", "cdap_activity"], diff --git a/activitysim/abm/models/util/logsums.py b/activitysim/abm/models/util/logsums.py index f42c15c16..328957965 100644 --- a/activitysim/abm/models/util/logsums.py +++ b/activitysim/abm/models/util/logsums.py @@ -1,22 +1,42 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -from activitysim.core import config, expressions, los, simulate, tracing -from activitysim.core.pathbuilder import TransitVirtualPathBuilder +import pandas as pd -logger = logging.getLogger(__name__) +from activitysim.core import config, expressions, los, simulate, tracing, workflow +from activitysim.core.configuration import PydanticBase +from activitysim.core.configuration.logit import ( + TourLocationComponentSettings, + TourModeComponentSettings, +) +logger = logging.getLogger(__name__) -def filter_chooser_columns(choosers, logsum_settings, model_settings): - chooser_columns = logsum_settings.get("LOGSUM_CHOOSER_COLUMNS", []) +def filter_chooser_columns( + choosers, logsum_settings: dict | PydanticBase, model_settings: dict | PydanticBase +): + try: + chooser_columns = logsum_settings.LOGSUM_CHOOSER_COLUMNS + except AttributeError: + chooser_columns = logsum_settings.get("LOGSUM_CHOOSER_COLUMNS", []) if ( - "CHOOSER_ORIG_COL_NAME" in model_settings + isinstance(model_settings, dict) + and "CHOOSER_ORIG_COL_NAME" in model_settings and model_settings["CHOOSER_ORIG_COL_NAME"] not in chooser_columns ): chooser_columns.append(model_settings["CHOOSER_ORIG_COL_NAME"]) + if ( + isinstance(model_settings, PydanticBase) + and hasattr(model_settings, "CHOOSER_ORIG_COL_NAME") + and model_settings.CHOOSER_ORIG_COL_NAME + and model_settings.CHOOSER_ORIG_COL_NAME not in chooser_columns + ): + chooser_columns.append(model_settings.CHOOSER_ORIG_COL_NAME) missing_columns = [c for c in chooser_columns if c not in choosers] if missing_columns: @@ -31,18 +51,19 @@ def filter_chooser_columns(choosers, logsum_settings, model_settings): return choosers -def compute_logsums( - choosers, +def compute_location_choice_logsums( + state: workflow.State, + choosers: pd.DataFrame, tour_purpose, - logsum_settings, - model_settings, - network_los, - chunk_size, - chunk_tag, - trace_label, - in_period_col=None, - out_period_col=None, - duration_col=None, + logsum_settings: TourModeComponentSettings, + model_settings: TourLocationComponentSettings, + network_los: los.Network_LOS, + chunk_size: int, + chunk_tag: str, + trace_label: str, + in_period_col: str | None = None, + out_period_col: str | None = None, + duration_col: str | None = None, ): """ @@ -50,8 +71,8 @@ def compute_logsums( ---------- choosers tour_purpose - logsum_settings - model_settings + logsum_settings : TourModeComponentSettings + model_settings : TourLocationComponentSettings network_los chunk_size trace_hh_id @@ -62,45 +83,56 @@ def compute_logsums( logsums: pandas series computed logsums with same index as choosers """ + if isinstance(model_settings, dict): + model_settings = TourLocationComponentSettings.model_validate(model_settings) + if isinstance(logsum_settings, dict): + logsum_settings = TourModeComponentSettings.model_validate(logsum_settings) trace_label = tracing.extend_trace_label(trace_label, "compute_logsums") - logger.debug("Running compute_logsums with %d choosers" % choosers.shape[0]) + logger.debug(f"Running compute_logsums with {choosers.shape[0]:d} choosers") # compute_logsums needs to know name of dest column in interaction_sample - orig_col_name = model_settings["CHOOSER_ORIG_COL_NAME"] - dest_col_name = model_settings["ALT_DEST_COL_NAME"] + orig_col_name = model_settings.CHOOSER_ORIG_COL_NAME + dest_col_name = model_settings.ALT_DEST_COL_NAME + + assert (in_period_col is not None) or (model_settings.IN_PERIOD is not None) + assert (out_period_col is not None) or (model_settings.OUT_PERIOD is not None) # FIXME - are we ok with altering choosers (so caller doesn't have to set these)? if (in_period_col is not None) and (out_period_col is not None): choosers["in_period"] = network_los.skim_time_period_label( - choosers[in_period_col] + choosers[in_period_col], as_cat=True ) choosers["out_period"] = network_los.skim_time_period_label( - choosers[out_period_col] + choosers[out_period_col], as_cat=True ) elif ("in_period" not in choosers.columns) and ( "out_period" not in choosers.columns ): if ( - type(model_settings["IN_PERIOD"]) is dict - and type(model_settings["OUT_PERIOD"]) is dict + type(model_settings.IN_PERIOD) is dict + and type(model_settings.OUT_PERIOD) is dict ): if ( - tour_purpose in model_settings["IN_PERIOD"] - and tour_purpose in model_settings["OUT_PERIOD"] + tour_purpose in model_settings.IN_PERIOD + and tour_purpose in model_settings.OUT_PERIOD ): choosers["in_period"] = network_los.skim_time_period_label( - model_settings["IN_PERIOD"][tour_purpose] + model_settings.IN_PERIOD[tour_purpose], + as_cat=True, + broadcast_to=choosers.index, ) choosers["out_period"] = network_los.skim_time_period_label( - model_settings["OUT_PERIOD"][tour_purpose] + model_settings.OUT_PERIOD[tour_purpose], + as_cat=True, + broadcast_to=choosers.index, ) else: choosers["in_period"] = network_los.skim_time_period_label( - model_settings["IN_PERIOD"] + model_settings.IN_PERIOD, as_cat=True, broadcast_to=choosers.index ) choosers["out_period"] = network_los.skim_time_period_label( - model_settings["OUT_PERIOD"] + model_settings.OUT_PERIOD, as_cat=True, broadcast_to=choosers.index ) else: logger.error("Choosers table already has columns 'in_period' and 'out_period'.") @@ -109,28 +141,30 @@ def compute_logsums( choosers["duration"] = choosers[duration_col] elif "duration" not in choosers.columns: if ( - type(model_settings["IN_PERIOD"]) is dict - and type(model_settings["OUT_PERIOD"]) is dict + type(model_settings.IN_PERIOD) is dict + and type(model_settings.OUT_PERIOD) is dict ): if ( - tour_purpose in model_settings["IN_PERIOD"] - and tour_purpose in model_settings["OUT_PERIOD"] + tour_purpose in model_settings.IN_PERIOD + and tour_purpose in model_settings.OUT_PERIOD ): choosers["duration"] = ( - model_settings["IN_PERIOD"][tour_purpose] - - model_settings["OUT_PERIOD"][tour_purpose] + model_settings.IN_PERIOD[tour_purpose] + - model_settings.OUT_PERIOD[tour_purpose] ) else: - choosers["duration"] = ( - model_settings["IN_PERIOD"] - model_settings["OUT_PERIOD"] - ) + choosers["duration"] = model_settings.IN_PERIOD - model_settings.OUT_PERIOD else: logger.error("Choosers table already has column 'duration'.") - logsum_spec = simulate.read_model_spec(file_name=logsum_settings["SPEC"]) - coefficients = simulate.get_segment_coefficients(logsum_settings, tour_purpose) + logsum_spec = state.filesystem.read_model_spec(file_name=logsum_settings.SPEC) + coefficients = state.filesystem.get_segment_coefficients( + logsum_settings, tour_purpose + ) - logsum_spec = simulate.eval_coefficients(logsum_spec, coefficients, estimator=None) + logsum_spec = simulate.eval_coefficients( + state, logsum_spec, coefficients, estimator=None + ) nest_spec = config.get_logit_model_settings(logsum_settings) nest_spec = simulate.eval_nest_coefficients(nest_spec, coefficients, trace_label) @@ -194,7 +228,7 @@ def compute_logsums( ) # TVPB constants can appear in expressions - if logsum_settings.get("use_TVPB_constants", True): + if logsum_settings.use_TVPB_constants: locals_dict.update( network_los.setting("TVPB_SETTINGS.tour_mode_choice.CONSTANTS") ) @@ -203,14 +237,14 @@ def compute_logsums( # - run preprocessor to annotate choosers # allow specification of alternate preprocessor for nontour choosers - preprocessor = model_settings.get("LOGSUM_PREPROCESSOR", "preprocessor") - preprocessor_settings = logsum_settings[preprocessor] + preprocessor = model_settings.LOGSUM_PREPROCESSOR + preprocessor_settings = getattr(logsum_settings, preprocessor, None) if preprocessor_settings: - simulate.set_skim_wrapper_targets(choosers, skims) expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -218,6 +252,7 @@ def compute_logsums( ) logsums = simulate.simple_simulate_logsums( + state, choosers, logsum_spec, nest_spec, diff --git a/activitysim/abm/models/util/mode.py b/activitysim/abm/models/util/mode.py index f28713b2c..b6e6bbb23 100644 --- a/activitysim/abm/models/util/mode.py +++ b/activitysim/abm/models/util/mode.py @@ -1,10 +1,16 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +import warnings +from typing import Optional import pandas as pd -from activitysim.core import config, expressions, simulate, tracing +from activitysim.core import config, expressions, simulate, workflow +from activitysim.core.configuration.logit import TourModeComponentSettings +from activitysim.core.estimation import Estimator """ At this time, these utilities are mostly for transforming the mode choice @@ -16,18 +22,18 @@ def mode_choice_simulate( - choosers, - spec, + state: workflow.State, + choosers: pd.DataFrame, + spec: pd.DataFrame, nest_spec, skims, locals_d, - chunk_size, mode_column_name, logsum_column_name, - trace_label, + trace_label: str, trace_choice_name, trace_column_names=None, - estimator=None, + estimator: Optional[Estimator] = None, ): """ common method for both tour_mode_choice and trip_mode_choice @@ -53,12 +59,12 @@ def mode_choice_simulate( want_logsums = logsum_column_name is not None choices = simulate.simple_simulate( + state, choosers=choosers, spec=spec, nest_spec=nest_spec, skims=skims, locals_d=locals_d, - chunk_size=chunk_size, want_logsums=want_logsums, trace_label=trace_label, trace_choice_name=trace_choice_name, @@ -78,21 +84,23 @@ def mode_choice_simulate( choices[mode_column_name] = choices[mode_column_name].map( dict(list(zip(list(range(len(alts))), alts))) ) + cat_type = pd.api.types.CategoricalDtype([""] + alts.tolist(), ordered=True) + choices[mode_column_name] = choices[mode_column_name].astype(cat_type) return choices def run_tour_mode_choice_simulate( + state: workflow.State, choosers, tour_purpose, - model_settings, + model_settings: TourModeComponentSettings, mode_column_name, logsum_column_name, network_los, skims, constants, estimator, - chunk_size, trace_label=None, trace_choice_name=None, ): @@ -103,10 +111,12 @@ def run_tour_mode_choice_simulate( you want to use in the evaluation of variables. """ - spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients = simulate.get_segment_coefficients(model_settings, tour_purpose) + spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients = state.filesystem.get_segment_coefficients( + model_settings, tour_purpose + ) - spec = simulate.eval_coefficients(spec, coefficients, estimator) + spec = simulate.eval_coefficients(state, spec, coefficients, estimator) nest_spec = config.get_logit_model_settings(model_settings) nest_spec = simulate.eval_nest_coefficients(nest_spec, coefficients, trace_label) @@ -124,15 +134,22 @@ def run_tour_mode_choice_simulate( assert ("in_period" not in choosers) and ("out_period" not in choosers) in_time = skims["in_time_col_name"] out_time = skims["out_time_col_name"] - choosers["in_period"] = network_los.skim_time_period_label(choosers[in_time]) - choosers["out_period"] = network_los.skim_time_period_label(choosers[out_time]) + choosers["in_period"] = network_los.skim_time_period_label( + choosers[in_time], as_cat=True + ) + choosers["out_period"] = network_los.skim_time_period_label( + choosers[out_time], as_cat=True + ) expressions.annotate_preprocessors( - choosers, locals_dict, skims, model_settings, trace_label + state, choosers, locals_dict, skims, model_settings, trace_label ) trace_column_names = choosers.index.name - assert trace_column_names == "tour_id" + if trace_column_names != "tour_id": + # TODO suppress this warning? It should not be relevant in regular + # activitysim models, but could be annoying in extensions. + warnings.warn(f"trace_column_names is {trace_column_names!r} not 'tour_id'") if trace_column_names not in choosers: choosers[trace_column_names] = choosers.index @@ -141,12 +158,12 @@ def run_tour_mode_choice_simulate( estimator.write_choosers(choosers) choices = mode_choice_simulate( + state, choosers=choosers, spec=spec, nest_spec=nest_spec, skims=skims, locals_d=locals_dict, - chunk_size=chunk_size, mode_column_name=mode_column_name, logsum_column_name=logsum_column_name, trace_label=trace_label, diff --git a/activitysim/abm/models/util/overlap.py b/activitysim/abm/models/util/overlap.py index 70fadfbd4..914a25dbd 100644 --- a/activitysim/abm/models/util/overlap.py +++ b/activitysim/abm/models/util/overlap.py @@ -1,11 +1,13 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd -from activitysim.core import inject, tracing +from activitysim.core import workflow logger = logging.getLogger(__name__) @@ -90,7 +92,7 @@ def rle(a): return row_id, start_pos, run_length, run_val -def p2p_time_window_overlap(p1_ids, p2_ids): +def p2p_time_window_overlap(state: workflow.State, p1_ids, p2_ids): """ Parameters @@ -103,7 +105,7 @@ def p2p_time_window_overlap(p1_ids, p2_ids): """ - timetable = inject.get_injectable("timetable") + timetable = state.get_injectable("timetable") assert len(p1_ids) == len(p2_ids) # if series, ought to have same index @@ -163,11 +165,11 @@ def person_pairs(persons): return p2p -def hh_time_window_overlap(households, persons): +def hh_time_window_overlap(state: workflow.State, households, persons): p2p = person_pairs(persons) - p2p["max_overlap"] = p2p_time_window_overlap(p2p.person1, p2p.person2) + p2p["max_overlap"] = p2p_time_window_overlap(state, p2p.person1, p2p.person2) hh_overlap = ( p2p.groupby(["household_id", "p2p_type"]) @@ -186,11 +188,11 @@ def hh_time_window_overlap(households, persons): return hh_overlap -def person_time_window_overlap(persons): +def person_time_window_overlap(state: workflow.State, persons): p2p = person_pairs(persons) - p2p["max_overlap"] = p2p_time_window_overlap(p2p.person1, p2p.person2) + p2p["max_overlap"] = p2p_time_window_overlap(state, p2p.person1, p2p.person2) p_overlap = ( pd.concat( @@ -221,9 +223,9 @@ def person_time_window_overlap(persons): return p_overlap -def person_max_window(persons): +def person_max_window(state: workflow.State, persons): - timetable = inject.get_injectable("timetable") + timetable = state.get_injectable("timetable") # ndarray with one row per person and one column per time period # array value of 1 where free periods and 0 elsewhere diff --git a/activitysim/abm/models/util/probabilistic_scheduling.py b/activitysim/abm/models/util/probabilistic_scheduling.py index 6fc7689a6..1b6b063ba 100644 --- a/activitysim/abm/models/util/probabilistic_scheduling.py +++ b/activitysim/abm/models/util/probabilistic_scheduling.py @@ -1,11 +1,13 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd -from activitysim.core import chunk, config, inject, logit, pipeline, simulate, tracing +from activitysim.core import chunk, logit, tracing, workflow logger = logging.getLogger(__name__) @@ -59,7 +61,9 @@ def _clip_probs(choosers_df, probs, depart_alt_base): return probs -def _report_bad_choices(bad_row_map, df, filename, trace_label, trace_choosers=None): +def _report_bad_choices( + state: workflow.State, bad_row_map, df, filename, trace_label, trace_choosers=None +): """ Parameters @@ -84,7 +88,7 @@ def _report_bad_choices(bad_row_map, df, filename, trace_label, trace_choosers=N filename = "%s.%s" % (trace_label, filename) logger.info("dumping %s" % filename) - tracing.write_csv(df, file_name=filename, transpose=False) + state.tracing.write_csv(df, file_name=filename, transpose=False) # log the indexes of the first MAX_PRINT offending rows MAX_PRINT = 0 @@ -240,6 +244,7 @@ def _postprocess_scheduling_choices( def make_scheduling_choices( + state: workflow.State, choosers_df, scheduling_mode, probs_spec, @@ -247,10 +252,11 @@ def make_scheduling_choices( depart_alt_base, first_trip_in_leg, report_failed_trips, - trace_hh_id, trace_label, trace_choice_col_name="depart", clip_earliest_latest=True, + *, + chunk_sizer: chunk.ChunkSizer, ): """ We join each trip with the appropriate row in probs_spec by joining on probs_join_cols, @@ -271,7 +277,6 @@ def make_scheduling_choices( int to add to probs column index to get time period it represents. e.g. depart_alt_base = 5 means first column (column 0) represents 5 am report_failed_trips : bool - trace_hh_id trace_label Returns @@ -279,14 +284,14 @@ def make_scheduling_choices( choices: pd.Series time periods depart choices, one per trip (except for trips with zero probs) """ - + trace_hh_id = state.settings.trace_hh_id choosers = pd.merge( choosers_df.reset_index(), probs_spec, on=probs_join_cols, how="left" ).set_index(choosers_df.index.name) - chunk.log_df(trace_label, "choosers", choosers) + chunk_sizer.log_df(trace_label, "choosers", choosers) - if trace_hh_id and tracing.has_trace_targets(choosers_df): - tracing.trace_df(choosers, "%s.choosers" % trace_label) + if trace_hh_id and state.tracing.has_trace_targets(choosers_df): + state.tracing.trace_df(choosers, "%s.choosers" % trace_label) # different pre-processing is required based on the scheduling mode chooser_probs = _preprocess_scheduling_probs( @@ -300,25 +305,25 @@ def make_scheduling_choices( first_trip_in_leg, ) - chunk.log_df(trace_label, "chooser_probs", chooser_probs) + chunk_sizer.log_df(trace_label, "chooser_probs", chooser_probs) - if trace_hh_id and tracing.has_trace_targets(choosers_df): - tracing.trace_df(chooser_probs, "%s.chooser_probs" % trace_label) + if trace_hh_id and state.tracing.has_trace_targets(choosers_df): + state.tracing.trace_df(chooser_probs, "%s.chooser_probs" % trace_label) raw_choices, rands = logit.make_choices( - chooser_probs, trace_label=trace_label, trace_choosers=choosers + state, chooser_probs, trace_label=trace_label, trace_choosers=choosers ) - chunk.log_df(trace_label, "choices", raw_choices) - chunk.log_df(trace_label, "rands", rands) + chunk_sizer.log_df(trace_label, "choices", raw_choices) + chunk_sizer.log_df(trace_label, "rands", rands) - if trace_hh_id and tracing.has_trace_targets(choosers_df): - tracing.trace_df( + if trace_hh_id and state.tracing.has_trace_targets(choosers_df): + state.tracing.trace_df( raw_choices, "%s.choices" % trace_label, columns=[None, trace_choice_col_name], ) - tracing.trace_df(rands, "%s.rands" % trace_label, columns=[None, "rand"]) + state.tracing.trace_df(rands, "%s.rands" % trace_label, columns=[None, "rand"]) # different post-processing is required based on the scheduling mode choices, failed = _postprocess_scheduling_choices( @@ -329,11 +334,12 @@ def make_scheduling_choices( choosers_df, ) - chunk.log_df(trace_label, "failed", failed) + chunk_sizer.log_df(trace_label, "failed", failed) # report failed trips while we have the best diagnostic info if report_failed_trips and failed.any(): _report_bad_choices( + state, bad_row_map=failed, df=choosers, filename="failed_choosers", @@ -342,11 +348,11 @@ def make_scheduling_choices( ) # trace before removing failures - if trace_hh_id and tracing.has_trace_targets(choosers_df): - tracing.trace_df( + if trace_hh_id and state.tracing.has_trace_targets(choosers_df): + state.tracing.trace_df( choices, "%s.choices" % trace_label, columns=[None, trace_choice_col_name] ) - tracing.trace_df(rands, "%s.rands" % trace_label, columns=[None, "rand"]) + state.tracing.trace_df(rands, "%s.rands" % trace_label, columns=[None, "rand"]) # remove any failed choices if failed.any(): diff --git a/activitysim/abm/models/util/school_escort_tours_trips.py b/activitysim/abm/models/util/school_escort_tours_trips.py index 778fb8645..42108dfbd 100644 --- a/activitysim/abm/models/util/school_escort_tours_trips.py +++ b/activitysim/abm/models/util/school_escort_tours_trips.py @@ -1,15 +1,15 @@ +from __future__ import annotations + import logging -import pandas as pd + import numpy as np -import warnings +import pandas as pd +from activitysim.abm.models.school_escorting import NUM_ESCORTEES from activitysim.abm.models.util import canonical_ids -from activitysim.core import pipeline -from activitysim.core import inject +from activitysim.core import workflow from activitysim.core.util import reindex -from ..school_escorting import NUM_ESCORTEES - logger = logging.getLogger(__name__) @@ -77,7 +77,6 @@ def create_chauf_trip_table(row): def create_chauf_escort_trips(bundles): - chauf_trip_bundles = bundles.apply(lambda row: create_chauf_trip_table(row), axis=1) chauf_trip_bundles["tour_id"] = bundles["chauf_tour_id"].astype(int) @@ -215,7 +214,6 @@ def create_child_escorting_stops(row, escortee_num): def create_escortee_trips(bundles): - escortee_trips = [] for escortee_num in range(0, int(bundles.num_escortees.max()) + 1): escortee_bundles = bundles.apply( @@ -317,6 +315,14 @@ def add_pure_escort_tours(tours, school_escort_tours): def add_school_escorting_type_to_tours_table(escort_bundles, tours): school_tour = (tours.tour_type == "school") & (tours.tour_num == 1) + escort_type_cat = pd.api.types.CategoricalDtype( + ["pure_escort", "ride_share"], ordered=False + ) + tours["school_esc_outbound"] = pd.NA + tours["school_esc_inbound"] = pd.NA + tours["school_esc_outbound"] = tours["school_esc_outbound"].astype(escort_type_cat) + tours["school_esc_inbound"] = tours["school_esc_inbound"].astype(escort_type_cat) + for school_escort_direction in ["outbound", "inbound"]: for escort_type in ["ride_share", "pure_escort"]: bundles = escort_bundles[ @@ -338,7 +344,7 @@ def add_school_escorting_type_to_tours_table(escort_bundles, tours): return tours -def process_tours_after_escorting_model(escort_bundles, tours): +def process_tours_after_escorting_model(state: workflow.State, escort_bundles, tours): # adding indicators to tours that include school escorting tours = add_school_escorting_type_to_tours_table(escort_bundles, tours) @@ -376,7 +382,7 @@ def process_tours_after_escorting_model(escort_bundles, tours): tours.loc[bad_end_times, "end"] = tours.loc[bad_end_times, "start"] # updating tdd to match start and end times - tdd_alts = inject.get_injectable("tdd_alts") + tdd_alts = state.get_injectable("tdd_alts") tdd_alts["tdd"] = tdd_alts.index tours.drop(columns="tdd", inplace=True) @@ -394,10 +400,10 @@ def process_tours_after_escorting_model(escort_bundles, tours): return tours -def merge_school_escort_trips_into_pipeline(): - school_escort_trips = pipeline.get_table("school_escort_trips") - tours = pipeline.get_table("tours") - trips = pipeline.get_table("trips") +def merge_school_escort_trips_into_pipeline(state: workflow.State): + school_escort_trips = state.get_dataframe("school_escort_trips") + tours = state.get_dataframe("tours") + trips = state.get_dataframe("trips") # want to remove stops if school escorting takes place on that half tour so we can replace them with the actual stops out_se_tours = tours[ @@ -440,6 +446,19 @@ def merge_school_escort_trips_into_pipeline(): # for better merge with trips created in stop frequency school_escort_trips["failed"] = False + # make sure the pandas categorical columns share the same categories before cancat + # union categoricals + for c in trips.columns.intersection(school_escort_trips.columns): + if isinstance(trips[c].dtype, pd.api.types.CategoricalDtype): + if isinstance(school_escort_trips[c].dtype, pd.api.types.CategoricalDtype): + from pandas.api.types import union_categoricals + + uc = union_categoricals([trips[c], school_escort_trips[c]]) + trips[c] = pd.Categorical(trips[c], categories=uc.categories) + school_escort_trips[c] = pd.Categorical( + school_escort_trips[c], categories=uc.categories + ) + trips = pd.concat( [ trips, @@ -468,8 +487,14 @@ def merge_school_escort_trips_into_pipeline(): trips["origin"] = trips["origin"].astype(int) trips["destination"] = trips["destination"].astype(int) + # converting to categoricals + trips["school_escort_direction"] = trips["school_escort_direction"].astype( + "category" + ) + trips["escort_participants"] = trips["escort_participants"].astype("category") + # updating trip_id now that we have all trips - trips = canonical_ids.set_trip_index(trips) + trips = canonical_ids.set_trip_index(state, trips) school_escort_trip_id_map = { v: k for k, v in trips.loc[ @@ -492,10 +517,10 @@ def merge_school_escort_trips_into_pipeline(): trips.drop(columns="school_escort_trip_id", inplace=True) # replace trip table and pipeline and register with the random number generator - pipeline.replace_table("trips", trips) - pipeline.get_rn_generator().drop_channel("trips") - pipeline.get_rn_generator().add_channel("trips", trips) - pipeline.replace_table("school_escort_trips", school_escort_trips) + state.add_table("trips", trips) + state.get_rn_generator().drop_channel("trips") + state.get_rn_generator().add_channel("trips", trips) + state.add_table("school_escort_trips", school_escort_trips) # updating stop frequency in tours tabel to be consistent num_outbound_stops = ( @@ -510,13 +535,13 @@ def merge_school_escort_trips_into_pipeline(): tours.loc[stop_freq.index, "stop_frequency"] = stop_freq # no need to reset random number generator since no tours added - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) return trips -def recompute_tour_count_statistics(): - tours = pipeline.get_table("tours") +def recompute_tour_count_statistics(state: workflow.State): + tours = state.get_dataframe("tours") grouped = tours.groupby(["person_id", "tour_type"]) tours["tour_type_num"] = grouped.cumcount() + 1 @@ -528,10 +553,16 @@ def recompute_tour_count_statistics(): tours["tour_num"] = grouped.cumcount() + 1 tours["tour_count"] = tours["tour_num"] + grouped.cumcount(ascending=False) - pipeline.replace_table("tours", tours) + # downcast + tours["tour_count"] = tours["tour_count"].astype("int8") + tours["tour_num"] = tours["tour_num"].astype("int8") + tours["tour_type_num"] = tours["tour_type_num"].astype("int8") + tours["tour_type_count"] = tours["tour_type_count"].astype("int8") + + state.add_table("tours", tours) -def create_pure_school_escort_tours(bundles): +def create_pure_school_escort_tours(state: workflow.State, bundles): # creating home to school tour for chauffers making pure escort tours # ride share tours are already created since they go off the mandatory tour pe_tours = bundles[bundles["escort_type"] == "pure_escort"] @@ -556,8 +587,16 @@ def create_pure_school_escort_tours(bundles): pe_tours["person_id"] = pe_tours["chauf_id"] pe_tours["tour_category"] = "non_mandatory" + # convert tour category to categorical + pe_tours["tour_category"] = pe_tours["tour_category"].astype( + state.get_dataframe("tours").tour_category.dtype + ) pe_tours["number_of_participants"] = 1 pe_tours["tour_type"] = "escort" + # convert tour type to categorical + pe_tours["tour_type"] = pe_tours["tour_type"].astype( + state.get_dataframe("tours").tour_type.dtype + ) pe_tours["school_esc_outbound"] = np.where( pe_tours["school_escort_direction"] == "outbound", "pure_escort", pd.NA ) @@ -582,7 +621,7 @@ def create_pure_school_escort_tours(bundles): pe_tours["tour_num"] = grouped.cumcount() + 1 pe_tours["tour_count"] = pe_tours["tour_num"] + grouped.cumcount(ascending=False) - pe_tours = canonical_ids.set_tour_index(pe_tours, is_school_escorting=True) + pe_tours = canonical_ids.set_tour_index(state, pe_tours, is_school_escorting=True) return pe_tours @@ -597,11 +636,11 @@ def split_out_school_escorting_trips(trips, school_escort_trips): return trips, se_trips, full_trips_index -def force_escortee_tour_modes_to_match_chauffeur(tours): +def force_escortee_tour_modes_to_match_chauffeur(state: workflow.State, tours): # FIXME: escortee tour can have different chauffeur in outbound vs inbound direction # which tour mode should it be set to? Currently it's whatever comes last. # Does it even matter if trip modes are getting matched later? - escort_bundles = inject.get_table("escort_bundles").to_frame() + escort_bundles = state.get_dataframe("escort_bundles") # grabbing the school tour ids for each school escort bundle se_tours = escort_bundles[["school_tour_ids", "chauf_tour_id"]].copy() @@ -628,8 +667,8 @@ def force_escortee_tour_modes_to_match_chauffeur(tours): return tours -def force_escortee_trip_modes_to_match_chauffeur(trips): - school_escort_trips = inject.get_table("school_escort_trips").to_frame() +def force_escortee_trip_modes_to_match_chauffeur(state: workflow.State, trips): + school_escort_trips = state.get_dataframe("school_escort_trips") # starting with only trips that are created as part of the school escorting model se_trips = trips[trips.index.isin(school_escort_trips.index)].copy() diff --git a/activitysim/abm/models/util/test/test_cdap.py b/activitysim/abm/models/util/test/test_cdap.py index 0e4bd6839..20dc6b241 100644 --- a/activitysim/abm/models/util/test/test_cdap.py +++ b/activitysim/abm/models/util/test/test_cdap.py @@ -1,6 +1,8 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import os.path import pandas as pd @@ -8,9 +10,8 @@ import pytest import yaml -from activitysim.core import chunk, config, inject, simulate - -from .. import cdap +from activitysim.abm.models.util import cdap +from activitysim.core import chunk, simulate, workflow @pytest.fixture(scope="module") @@ -23,11 +24,6 @@ def people(data_dir): return pd.read_csv(os.path.join(data_dir, "people.csv"), index_col="id") -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() - - @pytest.fixture(scope="module") def model_settings(configs_dir): yml_file = os.path.join(configs_dir, "cdap.yaml") @@ -41,17 +37,11 @@ def configs_dir(): return os.path.join(os.path.dirname(__file__), "configs") -def setup_function(): - configs_dir = os.path.join(os.path.dirname(__file__), "configs") - inject.add_injectable("configs_dir", configs_dir) - output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) - - def test_bad_coefficients(): - + state = workflow.State.make_default(__file__) coefficients = pd.read_csv( - config.config_file_path("cdap_interaction_coefficients.csv"), comment="#" + state.filesystem.get_config_file_path("cdap_interaction_coefficients.csv"), + comment="#", ) coefficients = cdap.preprocess_interaction_coefficients(coefficients) @@ -63,11 +53,11 @@ def test_bad_coefficients(): def test_assign_cdap_rank(people, model_settings): - + state = workflow.State.make_default(__file__) person_type_map = model_settings.get("PERSON_TYPE_MAP", {}) - with chunk.chunk_log("test_assign_cdap_rank", base=True): - cdap.assign_cdap_rank(people, person_type_map) + with chunk.chunk_log(state, "test_assign_cdap_rank", base=True): + cdap.assign_cdap_rank(state, people, person_type_map) expected = pd.Series( [1, 1, 1, 2, 2, 1, 3, 1, 2, 1, 3, 2, 1, 3, 2, 4, 1, 3, 4, 2], index=people.index @@ -79,17 +69,21 @@ def test_assign_cdap_rank(people, model_settings): def test_individual_utilities(people, model_settings): - - cdap_indiv_and_hhsize1 = simulate.read_model_spec( + state = workflow.State.make_default(__file__) + cdap_indiv_and_hhsize1 = state.filesystem.read_model_spec( file_name="cdap_indiv_and_hhsize1.csv" ) person_type_map = model_settings.get("PERSON_TYPE_MAP", {}) - with chunk.chunk_log("test_individual_utilities", base=True): - cdap.assign_cdap_rank(people, person_type_map) + with chunk.chunk_log(state, "test_individual_utilities", base=True) as chunk_sizer: + cdap.assign_cdap_rank(state, people, person_type_map) individual_utils = cdap.individual_utilities( - people, cdap_indiv_and_hhsize1, locals_d=None + state, + people, + cdap_indiv_and_hhsize1, + locals_d=None, + chunk_sizer=chunk_sizer, ) individual_utils = individual_utils[["M", "N", "H"]] @@ -127,14 +121,15 @@ def test_individual_utilities(people, model_settings): def test_build_cdap_spec_hhsize2(people, model_settings): - + state = workflow.State.make_default(__file__) hhsize = 2 - cdap_indiv_and_hhsize1 = simulate.read_model_spec( + cdap_indiv_and_hhsize1 = state.filesystem.read_model_spec( file_name="cdap_indiv_and_hhsize1.csv" ) interaction_coefficients = pd.read_csv( - config.config_file_path("cdap_interaction_coefficients.csv"), comment="#" + state.filesystem.get_config_file_path("cdap_interaction_coefficients.csv"), + comment="#", ) interaction_coefficients = cdap.preprocess_interaction_coefficients( interaction_coefficients @@ -142,23 +137,29 @@ def test_build_cdap_spec_hhsize2(people, model_settings): person_type_map = model_settings.get("PERSON_TYPE_MAP", {}) - with chunk.chunk_log("test_build_cdap_spec_hhsize2", base=True): - cdap.assign_cdap_rank(people, person_type_map) + with chunk.chunk_log( + state, "test_build_cdap_spec_hhsize2", base=True + ) as chunk_sizer: + cdap.assign_cdap_rank(state, people, person_type_map) indiv_utils = cdap.individual_utilities( - people, cdap_indiv_and_hhsize1, locals_d=None + state, + people, + cdap_indiv_and_hhsize1, + locals_d=None, + chunk_sizer=chunk_sizer, ) - choosers = cdap.hh_choosers(indiv_utils, hhsize=hhsize) + choosers = cdap.hh_choosers(state, indiv_utils, hhsize=hhsize) spec = cdap.build_cdap_spec( - interaction_coefficients, hhsize=hhsize, cache=False + state, interaction_coefficients, hhsize=hhsize, cache=False ) # pandas.dot depends on column names of expression_values matching spec index values # expressions should have been uniquified when spec was read assert spec.index.is_unique - vars = simulate.eval_variables(spec.index, choosers) + vars = simulate.eval_variables(state, spec.index, choosers) assert (spec.index.values == vars.columns.values).all() # spec = spec.astype(np.float64) diff --git a/activitysim/abm/models/util/test/test_flexible_tour_trip_ids.py b/activitysim/abm/models/util/test/test_flexible_tour_trip_ids.py index 178025160..288e11cbc 100644 --- a/activitysim/abm/models/util/test/test_flexible_tour_trip_ids.py +++ b/activitysim/abm/models/util/test/test_flexible_tour_trip_ids.py @@ -3,7 +3,7 @@ import pandas as pd -from ..canonical_ids import ( +from activitysim.abm.models.util.canonical_ids import ( determine_flavors_from_alts_file, determine_mandatory_tour_flavors, ) diff --git a/activitysim/abm/models/util/test/test_input_checker.py b/activitysim/abm/models/util/test/test_input_checker.py new file mode 100644 index 000000000..cdd9f4139 --- /dev/null +++ b/activitysim/abm/models/util/test/test_input_checker.py @@ -0,0 +1,158 @@ +# ActivitySim +# See full license in LICENSE.txt. + +from __future__ import annotations + +import os.path + +import pandas as pd +import pandas.testing as pdt +import pytest +import yaml +import pandera as pa + +from activitysim.abm.models.input_checker import validate_with_pandera, TABLE_STORE + + +@pytest.fixture(scope="class") +def v_errors(): + v_errors = {} + v_errors["households"] = [] + return v_errors + + +@pytest.fixture(scope="class") +def v_warnings(): + v_warnings = {} + v_warnings["households"] = [] + return v_warnings + + +@pytest.fixture(scope="module") +def validation_settings(): + return {"method": "pandera", "class": "Household"} + + +@pytest.fixture(scope="module") +def households(): + return pd.DataFrame( + data={ + "household_id": [1, 2, 3, 4], + "home_zone_id": [0, 1, 2, 3], + "income": [10000, 20000, 30000, 40000], + "hhsize": [2, 2, 4, 5], + } + ) + + +TABLE_STORE["households"] = pd.DataFrame( + data={ + "household_id": [1, 2, 3, 4], + "home_zone_id": [0, 1, 2, 3], + "income": [10000, 20000, 30000, 40000], + "hhsize": [2, 2, 4, 5], + } +) + + +def test_passing_dataframe(households, v_errors, v_warnings, validation_settings): + + TABLE_STORE["households"] = households + + class input_checker: + class Household(pa.DataFrameModel): + household_id: int = pa.Field(unique=True, gt=0) + home_zone_id: int = pa.Field(ge=0) + hhsize: int = pa.Field(gt=0) + income: int = pa.Field(ge=0, raise_warning=True) + + @pa.dataframe_check(name="Example setup of a passing error check.") + def dummy_example(cls, households: pd.DataFrame): + return (households.household_id > 0).all() + + returned_errors, returned_warnings = validate_with_pandera( + input_checker, "households", validation_settings, v_errors, v_warnings + ) + + assert ( + len(returned_errors["households"]) == 0 + ), f"Expect no household errors, but got {returned_errors}" + assert ( + len(returned_warnings["households"]) == 0 + ), f"Expect no household warnings, but got {returned_warnings}" + + +def test_error_dataframe(households, v_errors, v_warnings, validation_settings): + + TABLE_STORE["households"] = households + + class input_checker: + class Household(pa.DataFrameModel): + household_id: int = pa.Field(unique=True, gt=0) + home_zone_id: int = pa.Field(ge=0) + hhsize: int = pa.Field(gt=0) + income: int = pa.Field(ge=0, raise_warning=True) + bug1: int # error here + + returned_errors, returned_warnings = validate_with_pandera( + input_checker, "households", validation_settings, v_errors, v_warnings + ) + + assert ( + len(returned_errors["households"]) == 1 + ), f"Expected household error, but got {len(returned_errors['households'])}" + assert ( + len(returned_warnings["households"]) == 0 + ), f"Expect no household warnings, but got {returned_warnings['households']}" + + +def test_warning_dataframe(households, v_errors, v_warnings, validation_settings): + + TABLE_STORE["households"] = households + + class input_checker: + class Household(pa.DataFrameModel): + household_id: int = pa.Field(unique=True, gt=0) + home_zone_id: int = pa.Field(ge=0) + hhsize: int = pa.Field(gt=0) + income: int = pa.Field(ge=100000, raise_warning=True) # warning here + + returned_errors, returned_warnings = validate_with_pandera( + input_checker, "households", validation_settings, v_errors, v_warnings + ) + + assert ( + len(returned_errors["households"]) == 0 + ), f"Expect no household errors, but got {returned_errors['households']}" + assert ( + len(returned_warnings["households"]) > 0 + ), f"Expected warnings, but got {len(returned_warnings['households'])}" + + +def test_custom_check_failure_dataframe( + households, v_errors, v_warnings, validation_settings +): + + TABLE_STORE["households"] = households + + class input_checker: + class Household(pa.DataFrameModel): + household_id: int = pa.Field(unique=True, gt=0) + home_zone_id: int = pa.Field(ge=0) + hhsize: int = pa.Field(gt=0) + income: int = pa.Field(ge=0, raise_warning=True) + + @pa.dataframe_check(name="Example setup of a failed error check.") + def dummy_example(cls, households: pd.DataFrame): + return False + + returned_errors, returned_warnings = validate_with_pandera( + input_checker, "households", validation_settings, v_errors, v_warnings + ) + + assert ( + len(returned_errors["households"]) > 0 + ), f"Expected household errors, but got {returned_errors['households']}" + assert ( + len(returned_warnings["households"]) == 0 + ), f"Expect no household warnings, but got {returned_warnings['households']}" diff --git a/activitysim/abm/models/util/test/test_mandatory_tour_frequency.py b/activitysim/abm/models/util/test/test_mandatory_tour_frequency.py index 3f0144608..8f2df86e8 100644 --- a/activitysim/abm/models/util/test/test_mandatory_tour_frequency.py +++ b/activitysim/abm/models/util/test/test_mandatory_tour_frequency.py @@ -8,9 +8,8 @@ import pandas.testing as pdt import pytest -from activitysim.core import inject - -from ..tour_frequency import process_mandatory_tours +from activitysim.abm.models.util.tour_frequency import process_mandatory_tours +from activitysim.core import workflow @pytest.fixture(scope="module") @@ -18,13 +17,6 @@ def configs_dir(): return os.path.join(os.path.dirname(__file__), "configs") -def setup_function(): - configs_dir = os.path.join(os.path.dirname(__file__), "configs") - inject.add_injectable("configs_dir", configs_dir) - output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) - - def mandatory_tour_frequency_alternatives(): configs_dir = os.path.join(os.path.dirname(__file__), "configs") f = os.path.join(configs_dir, "mandatory_tour_frequency_alternatives.csv") @@ -34,6 +26,8 @@ def mandatory_tour_frequency_alternatives(): def test_mtf(): + state = workflow.State.make_default(__file__) + persons = pd.DataFrame( { "is_worker": [True, True, False, False], @@ -53,36 +47,53 @@ def test_mtf(): tour_frequency_alternatives = mandatory_tour_frequency_alternatives() - mandatory_tours = process_mandatory_tours(persons, tour_frequency_alternatives) + mandatory_tours = process_mandatory_tours( + state, persons, tour_frequency_alternatives + ) idx = mandatory_tours.index pdt.assert_series_equal( mandatory_tours.person_id, pd.Series([10, 20, 20, 30, 30, 40, 40], index=idx, name="person_id"), + check_dtype=False, ) - pdt.assert_series_equal( - mandatory_tours.tour_type, - pd.Series( - ["work", "work", "school", "work", "school", "school", "school"], - index=idx, - name="tour_type", - ), - ) + # check if the tour_type variable is pandas categorical + if isinstance(mandatory_tours.tour_type.dtype, pd.api.types.CategoricalDtype): + pdt.assert_series_equal( + mandatory_tours.tour_type.astype(str), + pd.Series( + ["work", "work", "school", "work", "school", "school", "school"], + index=idx, + name="tour_type", + ), + ) + else: + pdt.assert_series_equal( + mandatory_tours.tour_type, + pd.Series( + ["work", "work", "school", "work", "school", "school", "school"], + index=idx, + name="tour_type", + ), + ) # tour_nums for work_and_school non-worker should be flipped pdt.assert_series_equal( mandatory_tours.tour_num, pd.Series([1, 1, 2, 2, 1, 1, 2], index=idx, name="tour_num"), + check_dtype=False, ) pdt.assert_series_equal( mandatory_tours.destination, pd.Series([10, 20, 2, 30, 3, 4, 4], index=idx, name="destination"), + check_dtype=False, ) pdt.assert_series_equal( mandatory_tours.origin, pd.Series([100, 200, 200, 300, 300, 400, 400], index=idx, name="origin"), + check_dtype=False, ) diff --git a/activitysim/abm/models/util/test/test_non_mandatory_tour_frequency.py b/activitysim/abm/models/util/test/test_non_mandatory_tour_frequency.py index b7fac8044..6dc8f591e 100644 --- a/activitysim/abm/models/util/test/test_non_mandatory_tour_frequency.py +++ b/activitysim/abm/models/util/test/test_non_mandatory_tour_frequency.py @@ -2,25 +2,15 @@ # See full license in LICENSE.txt. -import os - import pandas as pd import pandas.testing as pdt -import pytest - -from activitysim.core import inject - -from ..tour_frequency import process_non_mandatory_tours - -def setup_function(): - configs_dir = os.path.join(os.path.dirname(__file__), "configs") - inject.add_injectable("configs_dir", configs_dir) - output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) +from activitysim.abm.models.util.tour_frequency import process_non_mandatory_tours +from activitysim.core import workflow def test_nmtf(): + state = workflow.State.make_default(__file__) persons = pd.DataFrame( { @@ -42,7 +32,7 @@ def test_nmtf(): tour_counts.index = persons.index # assign person ids to the index # - create the non_mandatory tours - nmt = process_non_mandatory_tours(persons, tour_counts) + nmt = process_non_mandatory_tours(state, persons, tour_counts) idx = nmt.index @@ -50,9 +40,22 @@ def test_nmtf(): nmt.person_id, pd.Series([0, 2, 2, 3], index=idx, name="person_id") ) - pdt.assert_series_equal( - nmt.tour_type, - pd.Series( - ["shopping", "escort", "escort", "othmaint"], index=idx, name="tour_type" - ), - ) + # check if the tour_type variable is pandas categorical + if isinstance(nmt.tour_type.dtype, pd.api.types.CategoricalDtype): + pdt.assert_series_equal( + nmt.tour_type.astype(str), + pd.Series( + ["shopping", "escort", "escort", "othmaint"], + index=idx, + name="tour_type", + ), + ) + else: + pdt.assert_series_equal( + nmt.tour_type, + pd.Series( + ["shopping", "escort", "escort", "othmaint"], + index=idx, + name="tour_type", + ), + ) diff --git a/activitysim/abm/models/util/test/test_vectorize_tour_scheduling.py b/activitysim/abm/models/util/test/test_vectorize_tour_scheduling.py index 4e4325b05..8dc7aaa39 100644 --- a/activitysim/abm/models/util/test/test_vectorize_tour_scheduling.py +++ b/activitysim/abm/models/util/test/test_vectorize_tour_scheduling.py @@ -1,39 +1,26 @@ # ActivitySim # See full license in LICENSE.txt. -import os +from __future__ import annotations -import numpy as np import pandas as pd import pandas.testing as pdt -import pytest -from activitysim.core import inject - -from ..vectorize_tour_scheduling import ( +from activitysim.abm.models.util.vectorize_tour_scheduling import ( + TourSchedulingSettings, get_previous_tour_by_tourid, vectorize_tour_scheduling, ) - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() - - -def setup_function(): - output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) +from activitysim.core import workflow def test_vts(): - - inject.add_injectable("settings", {}) + state = workflow.State.make_default(__file__) # note: need 0 duration tour on one end of day to guarantee at least one available tour alts = pd.DataFrame({"start": [1, 1, 2, 3], "end": [1, 4, 5, 6]}) alts["duration"] = alts.end - alts.start - inject.add_injectable("tdd_alts", alts) + state.add_injectable("tdd_alts", alts) current_tour_person_ids = pd.Series(["b", "c"], index=["d", "e"]) @@ -63,23 +50,24 @@ def test_vts(): persons = pd.DataFrame({"income": [20, 30, 25]}, index=[1, 2, 3]) - inject.add_table("persons", persons) + state.add_table("persons", persons) spec = pd.DataFrame({"Coefficient": [1.2]}, index=["income"]) spec.index.name = "Expression" - inject.add_injectable("check_for_variability", True) + state.settings.check_for_variability = True - timetable = inject.get_injectable("timetable") + timetable = state.get_injectable("timetable") tdd_choices = vectorize_tour_scheduling( + state, tours, persons, alts, timetable, tour_segments={"spec": spec}, tour_segment_col=None, - model_settings={}, + model_settings=TourSchedulingSettings(), chunk_size=0, trace_label="test_vts", ) diff --git a/activitysim/abm/models/util/test/test_vehicle_type_alts.py b/activitysim/abm/models/util/test/test_vehicle_type_alts.py new file mode 100644 index 000000000..d9cf1c176 --- /dev/null +++ b/activitysim/abm/models/util/test/test_vehicle_type_alts.py @@ -0,0 +1,59 @@ +# ActivitySim +# See full license in LICENSE.txt. + +import pandas as pd +import pandas.testing as pdt + +from activitysim.abm.models.vehicle_type_choice import ( + get_combinatorial_vehicle_alternatives, + construct_model_alternatives, + VehicleTypeChoiceSettings, +) +from activitysim.core import workflow + + +def test_vehicle_type_alts(): + state = workflow.State.make_default(__file__) + + alts_cats_dict = { + "body_type": ["Car", "SUV"], + "fuel_type": ["Gas", "BEV"], + "age": [1, 2, 3], + } + + alts_wide, alts_long = get_combinatorial_vehicle_alternatives(alts_cats_dict) + + # alts are initially constructed combinatorially + assert len(alts_long) == 12, "alts_long should have 12 rows" + assert len(alts_wide) == 12, "alts_wide should have 12 rows" + + model_settings = VehicleTypeChoiceSettings.model_construct() + model_settings.combinatorial_alts = alts_cats_dict + model_settings.PROBS_SPEC = None + model_settings.WRITE_OUT_ALTS_FILE = False + + # constructing veh type data with missing alts + vehicle_type_data = pd.DataFrame( + data={ + "body_type": ["Car", "Car", "Car", "SUV", "SUV"], + "fuel_type": ["Gas", "Gas", "BEV", "Gas", "BEV"], + "age": ["1", "2", "3", "1", "2"], + "dummy_data": [1, 2, 3, 4, 5], + }, + index=[0, 1, 2, 3, 4], + ) + + alts_wide, alts_long = construct_model_alternatives( + state, model_settings, alts_cats_dict, vehicle_type_data + ) + + # should only have alts left that are in the file + assert len(alts_long) == 5, "alts_long should have 5 rows" + + # indexes need to be the same to choices match alts + pdt.assert_index_equal(alts_long.index, alts_wide.index) + + # columns need to be in correct order for downstream configs + pdt.assert_index_equal( + alts_long.columns, pd.Index(["body_type", "age", "fuel_type"]) + ) diff --git a/activitysim/abm/models/util/tour_destination.py b/activitysim/abm/models/util/tour_destination.py index fed9c1557..fbc8113e2 100644 --- a/activitysim/abm/models/util/tour_destination.py +++ b/activitysim/abm/models/util/tour_destination.py @@ -1,34 +1,35 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd +from activitysim.abm.models.util import logsums as logsum from activitysim.abm.tables.size_terms import tour_destination_size_terms -from activitysim.core import config, inject, los, pipeline, simulate, tracing +from activitysim.core import config, los, simulate, tracing, workflow +from activitysim.core.configuration.logit import TourLocationComponentSettings from activitysim.core.interaction_sample import interaction_sample from activitysim.core.interaction_sample_simulate import interaction_sample_simulate from activitysim.core.util import reindex -from . import logsums as logsum - logger = logging.getLogger(__name__) DUMP = False -class SizeTermCalculator(object): +class SizeTermCalculator: """ convenience object to provide size_terms for a selector (e.g. non_mandatory) for various segments (e.g. tour_type or purpose) returns size terms for specified segment in df or series form """ - def __init__(self, size_term_selector): - + def __init__(self, state: workflow.State, size_term_selector): # do this once so they can request size_terms for various segments (tour_type or purpose) - land_use = inject.get_table("land_use") - size_terms = inject.get_injectable("size_terms") + land_use = state.get_dataframe("land_use") + size_terms = state.get_injectable("size_terms") self.destination_size_terms = tour_destination_size_terms( land_use, size_terms, size_term_selector ) @@ -59,37 +60,34 @@ def dest_size_terms_df(self, segment_name, trace_label): return size_terms - # def dest_size_terms_series(self, segment_name): - # # return size terms as as series - # # convenient (and no copy overhead) if reindexing and assigning into alts column - # return self.destination_size_terms[segment_name] - def _destination_sample( - spec_segment_name, - choosers, + state: workflow.State, + spec_segment_name: str, + choosers: pd.DataFrame, destination_size_terms, skims, estimator, - model_settings, + model_settings: TourLocationComponentSettings, alt_dest_col_name, - chunk_size, chunk_tag, - trace_label, + trace_label: str, zone_layer=None, ): - model_spec = simulate.spec_for_segment( - model_settings, + state, + None, spec_id="SAMPLE_SPEC", segment_name=spec_segment_name, estimator=estimator, + spec_file_name=model_settings.SAMPLE_SPEC, + coefficients_file_name=model_settings.COEFFICIENTS, ) logger.info("running %s with %d tours", trace_label, len(choosers)) - sample_size = model_settings["SAMPLE_SIZE"] - if config.setting("disable_destination_sampling", False) or ( + sample_size = model_settings.SAMPLE_SIZE + if state.settings.disable_destination_sampling or ( estimator and estimator.want_unsampled_alternatives ): # FIXME interaction_sample will return unsampled complete alternatives with probs and pick_count @@ -105,13 +103,14 @@ def _destination_sample( "dest_col_name": skims.dest_key, # added for sharrow flows "timeframe": "timeless", } - constants = config.get_model_constants(model_settings) + constants = model_settings.CONSTANTS if constants is not None: locals_d.update(constants) - log_alt_losers = config.setting("log_alt_losers", False) + log_alt_losers = state.settings.log_alt_losers choices = interaction_sample( + state, choosers, alternatives=destination_size_terms, sample_size=sample_size, @@ -120,14 +119,14 @@ def _destination_sample( spec=model_spec, skims=skims, locals_d=locals_d, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, chunk_tag=chunk_tag, trace_label=trace_label, zone_layer=zone_layer, ) # if special person id is passed - chooser_id_column = model_settings.get("CHOOSER_ID_COLUMN", "person_id") + chooser_id_column = model_settings.CHOOSER_ID_COLUMN # remember person_id in chosen alts so we can merge with persons in subsequent steps # (broadcasts person_id onto all alternatives sharing the same tour_id index value) @@ -137,21 +136,21 @@ def _destination_sample( def destination_sample( + state: workflow.State, spec_segment_name, choosers, - model_settings, + model_settings: TourLocationComponentSettings, network_los, destination_size_terms, estimator, chunk_size, trace_label, ): - chunk_tag = "tour_destination.sample" # create wrapper with keys for this lookup # the skims will be available under the name "skims" for any @ expressions - skim_origin_col_name = model_settings["CHOOSER_ORIG_COL_NAME"] + skim_origin_col_name = model_settings.CHOOSER_ORIG_COL_NAME skim_dest_col_name = destination_size_terms.index.name # (logit.interaction_dataset suffixes duplicate chooser column with '_chooser') if skim_origin_col_name == skim_dest_col_name: @@ -161,9 +160,10 @@ def destination_sample( skims = skim_dict.wrap(skim_origin_col_name, skim_dest_col_name) # the name of the dest column to be returned in choices - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME choices = _destination_sample( + state, spec_segment_name, choosers, destination_size_terms, @@ -171,7 +171,6 @@ def destination_sample( estimator, model_settings, alt_dest_col_name, - chunk_size, chunk_tag=chunk_tag, trace_label=trace_label, ) @@ -229,7 +228,7 @@ def aggregate_size_terms(dest_size_terms, network_los): return MAZ_size_terms, TAZ_size_terms -def choose_MAZ_for_TAZ(taz_sample, MAZ_size_terms, trace_label): +def choose_MAZ_for_TAZ(state: workflow.State, taz_sample, MAZ_size_terms, trace_label): """ Convert taz_sample table with TAZ zone sample choices to a table with a MAZ zone chosen for each TAZ choose MAZ probabilistically (proportionally by size_term) from set of MAZ zones in parent TAZ @@ -251,8 +250,8 @@ def choose_MAZ_for_TAZ(taz_sample, MAZ_size_terms, trace_label): # 542963 53 0.004224 2 13243 # 542963 59 0.008628 1 13243 - trace_hh_id = inject.get_injectable("trace_hh_id", None) - have_trace_targets = trace_hh_id and tracing.has_trace_targets(taz_sample) + trace_hh_id = state.settings.trace_hh_id + have_trace_targets = trace_hh_id and state.tracing.has_trace_targets(taz_sample) if have_trace_targets: trace_label = tracing.extend_trace_label(trace_label, "choose_MAZ_for_TAZ") @@ -262,8 +261,8 @@ def choose_MAZ_for_TAZ(taz_sample, MAZ_size_terms, trace_label): assert CHOOSER_ID is not None # write taz choices, pick_counts, probs - trace_targets = tracing.trace_targets(taz_sample) - tracing.trace_df( + trace_targets = state.tracing.trace_targets(taz_sample) + state.tracing.trace_df( taz_sample[trace_targets], label=tracing.extend_trace_label(trace_label, "taz_sample"), transpose=False, @@ -331,9 +330,11 @@ def choose_MAZ_for_TAZ(taz_sample, MAZ_size_terms, trace_label): if have_trace_targets: # write maz_sizes: maz_sizes[index,tour_id,dest_TAZ,zone_id,size_term] - maz_sizes_trace_targets = tracing.trace_targets(maz_sizes, slicer=CHOOSER_ID) + maz_sizes_trace_targets = state.tracing.trace_targets( + maz_sizes, slicer=CHOOSER_ID + ) trace_maz_sizes = maz_sizes[maz_sizes_trace_targets] - tracing.trace_df( + state.tracing.trace_df( trace_maz_sizes, label=tracing.extend_trace_label(trace_label, "maz_sizes"), transpose=False, @@ -364,7 +365,7 @@ def choose_MAZ_for_TAZ(taz_sample, MAZ_size_terms, trace_label): maz_probs = np.divide(padded_maz_sizes, row_sums.reshape(-1, 1)) assert maz_probs.shape == (num_choosers * taz_sample_size, max_maz_count) - rands = pipeline.get_rn_generator().random_for_df(chooser_df, n=taz_sample_size) + rands = state.get_rn_generator().random_for_df(chooser_df, n=taz_sample_size) rands = rands.reshape(-1, 1) assert len(rands) == num_choosers * taz_sample_size assert len(rands) == maz_probs.shape[0] @@ -382,12 +383,11 @@ def choose_MAZ_for_TAZ(taz_sample, MAZ_size_terms, trace_label): taz_choices["prob"] = taz_choices["TAZ_prob"] * taz_choices["MAZ_prob"] if have_trace_targets: - - taz_choices_trace_targets = tracing.trace_targets( + taz_choices_trace_targets = state.tracing.trace_targets( taz_choices, slicer=CHOOSER_ID ) trace_taz_choices_df = taz_choices[taz_choices_trace_targets] - tracing.trace_df( + state.tracing.trace_df( trace_taz_choices_df, label=tracing.extend_trace_label(trace_label, "taz_choices"), transpose=False, @@ -413,7 +413,7 @@ def choose_MAZ_for_TAZ(taz_sample, MAZ_size_terms, trace_label): index=trace_taz_choices_df.index, ) df = pd.concat([lhs_df, df], axis=1) - tracing.trace_df( + state.tracing.trace_df( df, label=tracing.extend_trace_label(trace_label, "dest_maz_alts"), transpose=False, @@ -429,7 +429,7 @@ def choose_MAZ_for_TAZ(taz_sample, MAZ_size_terms, trace_label): index=trace_taz_choices_df.index, ) df = pd.concat([lhs_df, df], axis=1) - tracing.trace_df( + state.tracing.trace_df( df, label=tracing.extend_trace_label(trace_label, "dest_maz_size_terms"), transpose=False, @@ -443,7 +443,7 @@ def choose_MAZ_for_TAZ(taz_sample, MAZ_size_terms, trace_label): ) df = pd.concat([lhs_df, df], axis=1) df["rand"] = rands[taz_choices_trace_targets] - tracing.trace_df( + state.tracing.trace_df( df, label=tracing.extend_trace_label(trace_label, "dest_maz_probs"), transpose=False, @@ -460,29 +460,28 @@ def choose_MAZ_for_TAZ(taz_sample, MAZ_size_terms, trace_label): def destination_presample( + state: workflow.State, spec_segment_name, choosers, - model_settings, + model_settings: TourLocationComponentSettings, network_los, destination_size_terms, estimator, - chunk_size, trace_label, ): - trace_label = tracing.extend_trace_label(trace_label, "presample") chunk_tag = "tour_destination.presample" logger.info(f"{trace_label} location_presample") - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME assert DEST_TAZ != alt_dest_col_name MAZ_size_terms, TAZ_size_terms = aggregate_size_terms( destination_size_terms, network_los ) - orig_maz = model_settings["CHOOSER_ORIG_COL_NAME"] + orig_maz = model_settings.CHOOSER_ORIG_COL_NAME assert orig_maz in choosers if ORIG_TAZ not in choosers: choosers[ORIG_TAZ] = network_los.map_maz_to_taz(choosers[orig_maz]) @@ -494,6 +493,7 @@ def destination_presample( skims = skim_dict.wrap(ORIG_TAZ, DEST_TAZ) taz_sample = _destination_sample( + state, spec_segment_name, choosers, TAZ_size_terms, @@ -501,14 +501,13 @@ def destination_presample( estimator, model_settings, DEST_TAZ, - chunk_size, chunk_tag=chunk_tag, trace_label=trace_label, zone_layer="taz", ) # choose a MAZ for each DEST_TAZ choice, choice probability based on MAZ size_term fraction of TAZ total - maz_choices = choose_MAZ_for_TAZ(taz_sample, MAZ_size_terms, trace_label) + maz_choices = choose_MAZ_for_TAZ(state, taz_sample, MAZ_size_terms, trace_label) assert DEST_MAZ in maz_choices maz_choices = maz_choices.rename(columns={DEST_MAZ: alt_dest_col_name}) @@ -517,22 +516,22 @@ def destination_presample( def run_destination_sample( + state, spec_segment_name, tours, persons_merged, - model_settings, + model_settings: TourLocationComponentSettings, network_los, destination_size_terms, estimator, chunk_size, trace_label, ): - # FIXME - MEMORY HACK - only include columns actually used in spec (omit them pre-merge) - chooser_columns = model_settings["SIMULATE_CHOOSER_COLUMNS"] + chooser_columns = model_settings.SIMULATE_CHOOSER_COLUMNS # if special person id is passed - chooser_id_column = model_settings.get("CHOOSER_ID_COLUMN", "person_id") + chooser_id_column = model_settings.CHOOSER_ID_COLUMN persons_merged = persons_merged[ [c for c in persons_merged.columns if c in chooser_columns] @@ -553,7 +552,7 @@ def run_destination_sample( # by default, enable presampling for multizone systems, unless they disable it in settings file pre_sample_taz = not (network_los.zone_system == los.ONE_ZONE) - if pre_sample_taz and not config.setting("want_dest_choice_presampling", True): + if pre_sample_taz and not state.settings.want_dest_choice_presampling: pre_sample_taz = False logger.info( f"Disabled destination zone presampling for {trace_label} " @@ -561,24 +560,24 @@ def run_destination_sample( ) if pre_sample_taz: - logger.info( "Running %s destination_presample with %d tours" % (trace_label, len(tours)) ) choices = destination_presample( + state, spec_segment_name, choosers, model_settings, network_los, destination_size_terms, estimator, - chunk_size, trace_label, ) else: choices = destination_sample( + state, spec_segment_name, choosers, model_settings, @@ -597,10 +596,11 @@ def run_destination_sample( def run_destination_logsums( + state: workflow.State, tour_purpose, persons_merged, destination_sample, - model_settings, + model_settings: TourLocationComponentSettings, network_los, chunk_size, trace_label, @@ -626,9 +626,11 @@ def run_destination_logsums( +-----------+--------------+----------------+------------+----------------+ """ - logsum_settings = config.read_model_settings(model_settings["LOGSUM_SETTINGS"]) + logsum_settings = state.filesystem.read_model_settings( + model_settings.LOGSUM_SETTINGS + ) # if special person id is passed - chooser_id_column = model_settings.get("CHOOSER_ID_COLUMN", "person_id") + chooser_id_column = model_settings.CHOOSER_ID_COLUMN chunk_tag = "tour_destination.logsums" @@ -648,10 +650,11 @@ def run_destination_logsums( logger.info("Running %s with %s rows", trace_label, len(choosers)) - tracing.dump_df(DUMP, persons_merged, trace_label, "persons_merged") - tracing.dump_df(DUMP, choosers, trace_label, "choosers") + state.tracing.dump_df(DUMP, persons_merged, trace_label, "persons_merged") + state.tracing.dump_df(DUMP, choosers, trace_label, "choosers") - logsums = logsum.compute_logsums( + logsums = logsum.compute_location_choice_logsums( + state, choosers, tour_purpose, logsum_settings, @@ -668,13 +671,14 @@ def run_destination_logsums( def run_destination_simulate( - spec_segment_name, - tours, - persons_merged, + state: workflow.State, + spec_segment_name: str, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, destination_sample, - want_logsums, - model_settings, - network_los, + want_logsums: bool, + model_settings: TourLocationComponentSettings, + network_los: los.Network_LOS, destination_size_terms, estimator, chunk_size, @@ -688,17 +692,20 @@ def run_destination_simulate( chunk_tag = "tour_destination.simulate" model_spec = simulate.spec_for_segment( - model_settings, + state, + None, spec_id="SPEC", segment_name=spec_segment_name, estimator=estimator, + spec_file_name=model_settings.SPEC, + coefficients_file_name=model_settings.COEFFICIENTS, ) # FIXME - MEMORY HACK - only include columns actually used in spec (omit them pre-merge) - chooser_columns = model_settings["SIMULATE_CHOOSER_COLUMNS"] + chooser_columns = model_settings.SIMULATE_CHOOSER_COLUMNS # if special person id is passed - chooser_id_column = model_settings.get("CHOOSER_ID_COLUMN", "person_id") + chooser_id_column = model_settings.CHOOSER_ID_COLUMN persons_merged = persons_merged[ [c for c in persons_merged.columns if c in chooser_columns] @@ -720,8 +727,8 @@ def run_destination_simulate( if estimator: estimator.write_choosers(choosers) - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] - origin_col_name = model_settings["CHOOSER_ORIG_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME + origin_col_name = model_settings.CHOOSER_ORIG_COL_NAME # alternatives are pre-sampled and annotated with logsums and pick_count # but we have to merge size_terms column into alt sample list @@ -729,9 +736,9 @@ def run_destination_simulate( destination_size_terms.size_term, destination_sample[alt_dest_col_name] ) - tracing.dump_df(DUMP, destination_sample, trace_label, "alternatives") + state.tracing.dump_df(DUMP, destination_sample, trace_label, "alternatives") - constants = config.get_model_constants(model_settings) + constants = model_settings.CONSTANTS logger.info("Running tour_destination_simulate with %d persons", len(choosers)) @@ -750,11 +757,12 @@ def run_destination_simulate( if constants is not None: locals_d.update(constants) - tracing.dump_df(DUMP, choosers, trace_label, "choosers") + state.tracing.dump_df(DUMP, choosers, trace_label, "choosers") - log_alt_losers = config.setting("log_alt_losers", False) + log_alt_losers = state.settings.log_alt_losers choices = interaction_sample_simulate( + state, choosers, destination_sample, spec=model_spec, @@ -780,25 +788,23 @@ def run_destination_simulate( def run_tour_destination( - tours, - persons_merged, - want_logsums, - want_sample_table, - model_settings, - network_los, + state: workflow.State, + tours: pd.DataFrame, + persons_merged: pd.DataFrame, + want_logsums: bool, + want_sample_table: bool, + model_settings: TourLocationComponentSettings, + network_los: los.Network_LOS, estimator, - chunk_size, - trace_hh_id, trace_label, skip_choice=False, ): - - size_term_calculator = SizeTermCalculator(model_settings["SIZE_TERM_SELECTOR"]) + size_term_calculator = SizeTermCalculator(state, model_settings.SIZE_TERM_SELECTOR) # maps segment names to compact (integer) ids - segments = model_settings["SEGMENTS"] + segments = model_settings.SEGMENTS - chooser_segment_column = model_settings.get("CHOOSER_SEGMENT_COLUMN_NAME", None) + chooser_segment_column = model_settings.CHOOSER_SEGMENT_COLUMN_NAME if chooser_segment_column is None: assert ( len(segments) == 1 @@ -807,7 +813,6 @@ def run_tour_destination( choices_list = [] sample_list = [] for segment_name in segments: - segment_trace_label = tracing.extend_trace_label(trace_label, segment_name) if chooser_segment_column is not None: @@ -829,6 +834,7 @@ def run_tour_destination( # - destination_sample spec_segment_name = segment_name # spec_segment_name is segment_name location_sample_df = run_destination_sample( + state, spec_segment_name, choosers, persons_merged, @@ -836,25 +842,27 @@ def run_tour_destination( network_los, segment_destination_size_terms, estimator, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_label=tracing.extend_trace_label(segment_trace_label, "sample"), ) # - destination_logsums tour_purpose = segment_name # tour_purpose is segment_name location_sample_df = run_destination_logsums( + state, tour_purpose, persons_merged, location_sample_df, model_settings, network_los, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_label=tracing.extend_trace_label(segment_trace_label, "logsums"), ) # - destination_simulate spec_segment_name = segment_name # spec_segment_name is segment_name choices = run_destination_simulate( + state, spec_segment_name, choosers, persons_merged, @@ -864,7 +872,7 @@ def run_tour_destination( network_los=network_los, destination_size_terms=segment_destination_size_terms, estimator=estimator, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_label=tracing.extend_trace_label(segment_trace_label, "simulate"), skip_choice=skip_choice, ) @@ -874,7 +882,7 @@ def run_tour_destination( if want_sample_table: # FIXME - sample_table location_sample_df.set_index( - model_settings["ALT_DEST_COL_NAME"], append=True, inplace=True + model_settings.ALT_DEST_COL_NAME, append=True, inplace=True ) sample_list.append(location_sample_df) else: diff --git a/activitysim/abm/models/util/tour_frequency.py b/activitysim/abm/models/util/tour_frequency.py index a73482fe5..eff354965 100644 --- a/activitysim/abm/models/util/tour_frequency.py +++ b/activitysim/abm/models/util/tour_frequency.py @@ -1,12 +1,16 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd -from activitysim.core import config from activitysim.abm.models.util.canonical_ids import set_tour_index +from activitysim.core import workflow +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import LogitComponentSettings from activitysim.core.util import reindex logger = logging.getLogger(__name__) @@ -93,8 +97,14 @@ def create_tours(tour_counts, tour_category, parent_col="person_id"): """ # set these here to ensure consistency across different tour categories - assert tour_category in ["mandatory", "non_mandatory", "atwork", "joint"] + + # do not enforce this here, other categories are possible + # assert tour_category in ["mandatory", "non_mandatory", "atwork", "joint"] tours["tour_category"] = tour_category + cat_tour_category = pd.api.types.CategoricalDtype( + ["mandatory", "joint", "non_mandatory", "atwork"], ordered=False + ) + tours["tour_category"] = tours["tour_category"].astype(cat_tour_category) # for joint tours, the correct number will be filled in after participation step tours["number_of_participants"] = 1 @@ -102,6 +112,13 @@ def create_tours(tour_counts, tour_category, parent_col="person_id"): # index is arbitrary but don't want any duplicates in index tours.reset_index(drop=True, inplace=True) + # downcast + tours["tour_count"] = tours["tour_count"].astype("int8") + tours["tour_num"] = tours["tour_num"].astype("int8") + tours["tour_type_num"] = tours["tour_type_num"].astype("int8") + tours["tour_type_count"] = tours["tour_type_count"].astype("int8") + tours["number_of_participants"] = tours["number_of_participants"].astype("int8") + return tours @@ -168,7 +185,9 @@ def process_tours( return tours -def process_mandatory_tours(persons, mandatory_tour_frequency_alts): +def process_mandatory_tours( + state: workflow.State, persons, mandatory_tour_frequency_alts +): """ This method processes the mandatory_tour_frequency column that comes out of the model of the same name and turns into a DataFrame that represents the @@ -239,7 +258,7 @@ def process_mandatory_tours(persons, mandatory_tour_frequency_alts): tours["household_id"] = tours_merged.household_id # assign stable (predictable) tour_id - set_tour_index(tours) + set_tour_index(state, tours) """ person_id tour_type tour_type_count tour_type_num tour_num tour_count @@ -258,7 +277,7 @@ def process_mandatory_tours(persons, mandatory_tour_frequency_alts): return tours -def process_non_mandatory_tours(persons, tour_counts): +def process_non_mandatory_tours(state: workflow.State, persons, tour_counts): """ This method processes the non_mandatory_tour_frequency column that comes out of the model of the same name and turns into a DataFrame that @@ -292,7 +311,7 @@ def process_non_mandatory_tours(persons, tour_counts): tours["origin"] = reindex(persons.home_zone_id, tours.person_id) # assign stable (predictable) tour_id - set_tour_index(tours) + set_tour_index(state, tours) """ person_id tour_type tour_type_count tour_type_num tour_num tour_count @@ -311,8 +330,11 @@ def process_non_mandatory_tours(persons, tour_counts): return tours -def process_atwork_subtours(work_tours, atwork_subtour_frequency_alts): - +def process_atwork_subtours( + state: workflow.State, + work_tours: pd.DataFrame, + atwork_subtour_frequency_alts: pd.DataFrame, +): """ This method processes the atwork_subtour_frequency column that comes out of the model of the same name and turns into a DataFrame that @@ -378,7 +400,7 @@ def process_atwork_subtours(work_tours, atwork_subtour_frequency_alts): tours = pd.merge(tours, work_tours, left_on=parent_col, right_index=True) # assign stable (predictable) tour_id - set_tour_index(tours, parent_tour_num_col="parent_tour_num") + set_tour_index(state, tours, parent_tour_num_col="parent_tour_num") """ person_id tour_type tour_type_count tour_type_num tour_num tour_count @@ -399,7 +421,12 @@ def process_atwork_subtours(work_tours, atwork_subtour_frequency_alts): return tours -def process_joint_tours(joint_tour_frequency, joint_tour_frequency_alts, point_persons): +def process_joint_tours( + state: workflow.State, + joint_tour_frequency, + joint_tour_frequency_alts, + point_persons, +): """ This method processes the joint_tour_frequency column that comes out of the model of the same name and turns into a DataFrame that represents the @@ -443,7 +470,7 @@ def process_joint_tours(joint_tour_frequency, joint_tour_frequency_alts, point_p tours["origin"] = reindex(point_persons.home_zone_id, tours.household_id) # assign stable (predictable) tour_id - set_tour_index(tours, is_joint=True) + set_tour_index(state, tours, is_joint=True) """ household_id tour_type tour_type_count tour_type_num tour_num tour_count @@ -463,6 +490,7 @@ def process_joint_tours(joint_tour_frequency, joint_tour_frequency_alts, point_p def process_joint_tours_frequency_composition( + state: workflow.State, joint_tour_frequency_composition, joint_tour_frequency_composition_alts, point_persons, @@ -496,6 +524,7 @@ def process_joint_tours_frequency_composition( assert not joint_tour_frequency_composition.isnull().any() tours = process_tours_frequency_composition( + state, joint_tour_frequency_composition.dropna(), joint_tour_frequency_composition_alts, tour_category="joint", @@ -510,7 +539,7 @@ def process_joint_tours_frequency_composition( tours["origin"] = reindex(point_persons.home_zone_id, tours.household_id) # assign stable (predictable) tour_id - set_tour_index(tours, is_joint=True) + set_tour_index(state, tours, is_joint=True) """ household_id tour_type tour_type_count tour_type_num tour_num tour_count @@ -530,6 +559,7 @@ def process_joint_tours_frequency_composition( def process_tours_frequency_composition( + state: workflow.State, joint_tour_frequency_composition, joint_tour_frequency_composition_alts, tour_category, @@ -592,12 +622,39 @@ def process_tours_frequency_composition( 2588677 1 1 0 """ - tours = create_joint_tours(tour_counts, tour_category, parent_col) + tours = create_joint_tours(state, tour_counts, tour_category, parent_col) return tours -def create_joint_tours(tour_counts, tour_category, parent_col="person_id"): +class JointTourFreqCompContent(PydanticReadable): + VALUE_MAP: dict[int, str] + COLUMNS: list[str] + + +class JointTourFreqCompAlts(PydanticReadable): + PURPOSE: JointTourFreqCompContent + COMPOSITION: JointTourFreqCompContent + + +class JointTourFreqCompSettings(LogitComponentSettings): + """ + Settings for joint tour frequency and composition. + """ + + ALTS_TABLE_STRUCTURE: JointTourFreqCompAlts + preprocessor: PreprocessorSettings | None = None + ALTS_PREPROCESSOR: PreprocessorSettings | None = None + + +def create_joint_tours( + state: workflow.State, + tour_counts, + tour_category, + parent_col="person_id", + model_settings: JointTourFreqCompSettings | None = None, + model_settings_file_name: str = "joint_tour_frequency_composition.yaml", +): """ This method processes the tour_frequency column that comes out of the model of the same name and turns into a DataFrame that @@ -637,36 +694,17 @@ def create_joint_tours(tour_counts, tour_category, parent_col="person_id"): 2588676 2 0 0 2588677 1 1 0 """ - model_settings_file_name = "joint_tour_frequency_composition.yaml" - - model_settings = config.read_model_settings(model_settings_file_name) - alts_table_structure = model_settings.get("ALTS_TABLE_STRUCTURE", None) - assert ( - alts_table_structure is not None - ), f"Expected to find ALTS_TABLE_STRUCTURE setting in joint_tour_frequency_composition.yaml" + if model_settings is None: + model_settings = JointTourFreqCompSettings.read_settings_file( + state.filesystem, model_settings_file_name + ) - tour_type_dict = alts_table_structure.get("PURPOSE", None).get("VALUE_MAP", None) - assert ( - tour_type_dict is not None - ), f"Expected to find PURPOSE.VALUE_MAP setting in ALTS_TABLE_STRUCTURE" - - tour_type_cols = alts_table_structure.get("PURPOSE", None).get("COLUMNS", None) - assert ( - tour_type_cols is not None - ), f"Expected to find PURPOSE.COLUMNS setting in ALTS_TABLE_STRUCTURE" - - tour_comp_dict = alts_table_structure.get("COMPOSITION", None).get( - "VALUE_MAP", None - ) - assert ( - tour_comp_dict is not None - ), f"Expected to find COMPOSITION.VALUE_MAP setting in ALTS_TABLE_STRUCTURE" - - tour_comp_cols = alts_table_structure.get("COMPOSITION", None).get("COLUMNS", None) - assert ( - tour_comp_cols is not None - ), f"Expected to find COMPOSITION.COLUMNS setting in ALTS_TABLE_STRUCTURE" + alts_table_structure = model_settings.ALTS_TABLE_STRUCTURE + tour_type_dict = alts_table_structure.PURPOSE.VALUE_MAP + tour_type_cols = alts_table_structure.PURPOSE.COLUMNS + tour_comp_dict = alts_table_structure.COMPOSITION.VALUE_MAP + tour_comp_cols = alts_table_structure.COMPOSITION.COLUMNS # reformat with the columns given below tours_purp = tour_counts[tour_type_cols].stack().reset_index() @@ -691,6 +729,10 @@ def create_joint_tours(tour_counts, tour_category, parent_col="person_id"): tours_comp.columns = [parent_col, "tour_id_temp", "composition"] tours_comp["tour_id_temp"] = range(1, 1 + len(tours_comp)) tours_comp["composition"] = tours_comp["composition"].map(tour_comp_dict) + cat_tour_comp = pd.api.types.CategoricalDtype( + ["adults", "children", "mixed"], ordered=False + ) + tours_comp["composition"] = tours_comp["composition"].astype(cat_tour_comp) """ tour_id_temp tour_composition @@ -732,6 +774,10 @@ def create_joint_tours(tour_counts, tour_category, parent_col="person_id"): # set these here to ensure consistency across different tour categories assert tour_category in ["mandatory", "non_mandatory", "atwork", "joint"] tours["tour_category"] = tour_category + cat_tour_category = pd.api.types.CategoricalDtype( + ["mandatory", "joint", "non_mandatory", "atwork"], ordered=False + ) + tours["tour_category"] = tours["tour_category"].astype(cat_tour_category) # for joint tours, the correct number will be filled in after participation step tours["number_of_participants"] = 1 @@ -739,4 +785,11 @@ def create_joint_tours(tour_counts, tour_category, parent_col="person_id"): # index is arbitrary but don't want any duplicates in index tours.reset_index(drop=True, inplace=True) + # downcast + tours["tour_count"] = tours["tour_count"].astype("int8") + tours["tour_num"] = tours["tour_num"].astype("int8") + tours["tour_type_num"] = tours["tour_type_num"].astype("int8") + tours["tour_type_count"] = tours["tour_type_count"].astype("int8") + tours["number_of_participants"] = tours["number_of_participants"].astype("int8") + return tours diff --git a/activitysim/abm/models/util/tour_od.py b/activitysim/abm/models/util/tour_od.py index 91377bd6d..22ea4a310 100644 --- a/activitysim/abm/models/util/tour_od.py +++ b/activitysim/abm/models/util/tour_od.py @@ -1,29 +1,31 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +from typing import Optional import numpy as np import pandas as pd -from orca import orca -from activitysim.abm.tables.size_terms import tour_destination_size_terms +from activitysim.abm.models.util import logsums as logsum +from activitysim.abm.models.util import trip +from activitysim.abm.models.util.tour_destination import SizeTermCalculator from activitysim.core import ( config, expressions, - inject, logit, los, - pipeline, simulate, tracing, + workflow, ) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import TourLocationComponentSettings from activitysim.core.interaction_sample import interaction_sample from activitysim.core.interaction_sample_simulate import interaction_sample_simulate from activitysim.core.util import reindex -from . import logsums as logsum -from . import trip - logger = logging.getLogger(__name__) DUMP = False @@ -38,8 +40,18 @@ ORIG_TAZ_EXT = "orig_TAZ_ext" +class TourODSettings(TourLocationComponentSettings): + DEST_COL_NAME: str + OD_CHOICE_SAMPLE_TABLE_NAME: str | None = None + OD_CHOICE_LOGSUM_COLUMN_NAME: str | None = None + ORIGIN_ATTR_COLS_TO_USE: list[str] = [] + ORIG_COL_NAME: str + ORIG_FILTER: str | None = None + preprocessor: PreprocessorSettings | None = None + + def get_od_id_col(origin_col, destination_col): - colname = "{0}_{1}".format(origin_col, destination_col) + colname = f"{origin_col}_{destination_col}" return colname @@ -50,7 +62,6 @@ def create_od_id_col(df, origin_col, destination_col): def _get_od_cols_from_od_id( df, orig_col_name=None, dest_col_name=None, od_id_col="choice" ): - df[orig_col_name] = df[od_id_col].str.split("_").str[0].astype(int) df[dest_col_name] = df[od_id_col].str.split("_").str[1].astype(int) @@ -58,13 +69,14 @@ def _get_od_cols_from_od_id( def _create_od_alts_from_dest_size_terms( + state: workflow.State, size_terms_df, segment_name, od_id_col=None, origin_id_col="origin", dest_id_col="destination", origin_filter=None, - origin_attr_cols=None, + origin_attr_cols: list[str] | None = None, ): """ Extend destination size terms to create dataframe representing the @@ -73,7 +85,9 @@ def _create_od_alts_from_dest_size_terms( attributes of the origins can be preserved. """ - land_use = inject.get_table("land_use").to_frame(columns=origin_attr_cols) + land_use = state.get_dataframe("land_use") + if origin_attr_cols is not None: + land_use = land_use[origin_attr_cols] if origin_filter: origins = land_use.query(origin_filter) @@ -113,6 +127,7 @@ def _create_od_alts_from_dest_size_terms( def _od_sample( + state: workflow.State, spec_segment_name, choosers, network_los, @@ -121,18 +136,20 @@ def _od_sample( dest_id_col, skims, estimator, - model_settings, + model_settings: TourODSettings, alt_od_col_name, chunk_size, chunk_tag, trace_label, ): - model_spec = simulate.spec_for_segment( - model_settings, + state, + None, spec_id="SAMPLE_SPEC", segment_name=spec_segment_name, estimator=estimator, + spec_file_name=model_settings.SAMPLE_SPEC, + coefficients_file_name=model_settings.COEFFICIENTS, ) if alt_od_col_name is None: alt_col_name = get_od_id_col(origin_id_col, dest_id_col) @@ -141,8 +158,8 @@ def _od_sample( logger.info("running %s with %d tours", trace_label, len(choosers)) - sample_size = model_settings["SAMPLE_SIZE"] - if config.setting("disable_destination_sampling", False) or ( + sample_size = model_settings.SAMPLE_SIZE + if state.settings.disable_destination_sampling or ( estimator and estimator.want_unsampled_alternatives ): # FIXME interaction_sample will return unsampled complete alternatives @@ -162,14 +179,15 @@ def _od_sample( "orig_col_name": ORIG_TAZ, "dest_col_name": DEST_TAZ, } - constants = config.get_model_constants(model_settings) + constants = model_settings.CONSTANTS if constants is not None: locals_d.update(constants) - origin_filter = model_settings.get("ORIG_FILTER", None) - origin_attr_cols = model_settings["ORIGIN_ATTR_COLS_TO_USE"] + origin_filter = model_settings.ORIG_FILTER + origin_attr_cols = model_settings.ORIGIN_ATTR_COLS_TO_USE od_alts_df = _create_od_alts_from_dest_size_terms( + state, destination_size_terms, spec_segment_name, od_id_col=alt_col_name, @@ -186,6 +204,7 @@ def _od_sample( logger.error("Alts df is missing origin skim key column.") choices = interaction_sample( + state, choosers, alternatives=od_alts_df, sample_size=sample_size, @@ -203,21 +222,21 @@ def _od_sample( def od_sample( + state: workflow.State, spec_segment_name, choosers, - model_settings, + model_settings: TourODSettings, network_los, destination_size_terms, estimator, chunk_size, trace_label, ): - chunk_tag = "tour_od.sample" - origin_col_name = model_settings["ORIG_COL_NAME"] - dest_col_name = model_settings["DEST_COL_NAME"] - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] + origin_col_name = model_settings.ORIG_COL_NAME + dest_col_name = model_settings.DEST_COL_NAME + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME skim_dict = network_los.get_default_skim_dict() skims = skim_dict.wrap(origin_col_name, dest_col_name) @@ -225,6 +244,7 @@ def od_sample( # the name of the od column to be returned in choices alt_od_col_name = get_od_id_col(origin_col_name, dest_col_name) choices = _od_sample( + state, spec_segment_name, choosers, network_los, @@ -253,29 +273,22 @@ def map_maz_to_taz(s, network_los): return s.map(maz_to_taz) -def map_maz_to_ext_taz(s): - land_use = ( - inject.get_table("land_use").to_frame(columns=["external_TAZ"]).external_TAZ - ) +def map_maz_to_ext_taz(state: workflow.State, s): + land_use = state.get_dataframe("land_use", columns=["external_TAZ"]).external_TAZ return s.map(land_use).astype(int) -def map_maz_to_ext_maz(s): - land_use = ( - inject.get_table("land_use").to_frame(columns=["external_MAZ"]).external_MAZ - ) +def map_maz_to_ext_maz(state: workflow.State, s): + land_use = state.get_dataframe("land_use", columns=["external_MAZ"]).external_MAZ return s.map(land_use).astype(int) -def map_ext_maz_to_maz(s): - land_use = ( - inject.get_table("land_use").to_frame(columns=["original_MAZ"]).original_MAZ - ) +def map_ext_maz_to_maz(state: workflow.State, s): + land_use = state.get_dataframe("land_use", columns=["original_MAZ"]).original_MAZ return s.map(land_use).astype(int) def aggregate_size_terms(dest_size_terms, network_los): - # aggregate MAZ_size_terms to TAZ_size_terms MAZ_size_terms = dest_size_terms.copy() @@ -310,7 +323,9 @@ def aggregate_size_terms(dest_size_terms, network_los): return MAZ_size_terms, TAZ_size_terms +@workflow.func def choose_MAZ_for_TAZ( + state: workflow.State, taz_sample, MAZ_size_terms, trace_label, @@ -341,8 +356,8 @@ def choose_MAZ_for_TAZ( # 542963 53 0.004224 2 13243 # 542963 59 0.008628 1 13243 - trace_hh_id = inject.get_injectable("trace_hh_id", None) - have_trace_targets = trace_hh_id and tracing.has_trace_targets(taz_sample) + trace_hh_id = state.settings.trace_hh_id + have_trace_targets = trace_hh_id and state.tracing.has_trace_targets(taz_sample) if have_trace_targets: trace_label = tracing.extend_trace_label(trace_label, "choose_MAZ_for_TAZ") @@ -352,8 +367,8 @@ def choose_MAZ_for_TAZ( assert CHOOSER_ID is not None # write taz choices, pick_counts, probs - trace_targets = tracing.trace_targets(taz_sample) - tracing.trace_df( + trace_targets = state.tracing.trace_targets(taz_sample) + state.tracing.trace_df( taz_sample[trace_targets], label=tracing.extend_trace_label(trace_label, "taz_sample"), transpose=False, @@ -431,9 +446,11 @@ def choose_MAZ_for_TAZ( if have_trace_targets: # write maz_sizes: maz_sizes[index,tour_id,dest_TAZ,zone_id,size_term] - maz_sizes_trace_targets = tracing.trace_targets(maz_sizes, slicer=CHOOSER_ID) + maz_sizes_trace_targets = state.tracing.trace_targets( + maz_sizes, slicer=CHOOSER_ID + ) trace_maz_sizes = maz_sizes[maz_sizes_trace_targets] - tracing.trace_df( + state.tracing.trace_df( trace_maz_sizes, label=tracing.extend_trace_label(trace_label, "maz_sizes"), transpose=False, @@ -464,7 +481,7 @@ def choose_MAZ_for_TAZ( maz_probs = np.divide(padded_maz_sizes, row_sums.reshape(-1, 1)) assert maz_probs.shape == (num_choosers * taz_sample_size, max_maz_count) - rands = pipeline.get_rn_generator().random_for_df(chooser_df, n=taz_sample_size) + rands = state.get_rn_generator().random_for_df(chooser_df, n=taz_sample_size) rands = rands.reshape(-1, 1) assert len(rands) == num_choosers * taz_sample_size assert len(rands) == maz_probs.shape[0] @@ -484,12 +501,11 @@ def choose_MAZ_for_TAZ( taz_choices["prob"] = taz_choices["TAZ_prob"] * taz_choices["MAZ_prob"] if have_trace_targets: - - taz_choices_trace_targets = tracing.trace_targets( + taz_choices_trace_targets = state.tracing.trace_targets( taz_choices, slicer=CHOOSER_ID ) trace_taz_choices_df = taz_choices[taz_choices_trace_targets] - tracing.trace_df( + state.tracing.trace_df( trace_taz_choices_df, label=tracing.extend_trace_label(trace_label, "taz_choices"), transpose=False, @@ -515,7 +531,7 @@ def choose_MAZ_for_TAZ( index=trace_taz_choices_df.index, ) df = pd.concat([lhs_df, df], axis=1) - tracing.trace_df( + state.tracing.trace_df( df, label=tracing.extend_trace_label(trace_label, "dest_maz_alts"), transpose=False, @@ -531,7 +547,7 @@ def choose_MAZ_for_TAZ( index=trace_taz_choices_df.index, ) df = pd.concat([lhs_df, df], axis=1) - tracing.trace_df( + state.tracing.trace_df( df, label=tracing.extend_trace_label(trace_label, "dest_maz_size_terms"), transpose=False, @@ -545,7 +561,7 @@ def choose_MAZ_for_TAZ( ) df = pd.concat([lhs_df, df], axis=1) df["rand"] = rands[taz_choices_trace_targets] - tracing.trace_df( + state.tracing.trace_df( df, label=tracing.extend_trace_label(trace_label, "dest_maz_probs"), transpose=False, @@ -562,17 +578,18 @@ def choose_MAZ_for_TAZ( return taz_choices_w_maz +@workflow.func def od_presample( + state: workflow.State, spec_segment_name, choosers, - model_settings, + model_settings: TourODSettings, network_los, destination_size_terms, estimator, chunk_size, trace_label, ): - trace_label = tracing.extend_trace_label(trace_label, "presample") chunk_tag = "tour_od.presample" @@ -591,6 +608,7 @@ def od_presample( skims = skim_dict.wrap(ORIG_TAZ, DEST_TAZ) orig_MAZ_dest_TAZ_sample = _od_sample( + state, spec_segment_name, choosers, network_los, @@ -617,6 +635,7 @@ def od_presample( # MAZ size_term fraction of TAZ total maz_choices = choose_MAZ_for_TAZ( + state, orig_MAZ_dest_TAZ_sample, MAZ_size_terms, trace_label, @@ -626,8 +645,8 @@ def od_presample( # outputs assert DEST_MAZ in maz_choices - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] - chooser_orig_col_name = model_settings["CHOOSER_ORIG_COL_NAME"] + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME + chooser_orig_col_name = model_settings.CHOOSER_ORIG_COL_NAME maz_choices = maz_choices.rename( columns={DEST_MAZ: alt_dest_col_name, ORIG_MAZ: chooser_orig_col_name} ) @@ -635,76 +654,78 @@ def od_presample( return maz_choices -class SizeTermCalculator(object): - """ - convenience object to provide size_terms for a selector (e.g. - non_mandatory) for various segments (e.g. tour_type or purpose) - returns size terms for specified segment in df or series form. - """ - - def __init__(self, size_term_selector): - - # do this once so they can request size_terms for various segments (tour_type or purpose) - land_use = inject.get_table("land_use") - self.land_use = land_use - size_terms = inject.get_injectable("size_terms") - self.destination_size_terms = tour_destination_size_terms( - self.land_use, size_terms, size_term_selector - ) - - assert not self.destination_size_terms.isna().any(axis=None) - - def omnibus_size_terms_df(self): - return self.destination_size_terms - - def dest_size_terms_df(self, segment_name, trace_label): - # return size terms as df with one column named 'size_term' - # convenient if creating or merging with alts - - size_terms = self.destination_size_terms[[segment_name]].copy() - size_terms.columns = ["size_term"] - - # FIXME - no point in considering impossible alternatives (where dest size term is zero) - logger.debug( - f"SizeTermCalculator dropping {(~(size_terms.size_term > 0)).sum()} " - f"of {len(size_terms)} rows where size_term is zero for {segment_name}" - ) - size_terms = size_terms[size_terms.size_term > 0] - - if len(size_terms) == 0: - logger.warning( - f"SizeTermCalculator: no zones with non-zero size terms for {segment_name} in {trace_label}" - ) - - return size_terms - - def dest_size_terms_series(self, segment_name): - # return size terms as as series - # convenient (and no copy overhead) if reindexing and assigning into alts column - return self.destination_size_terms[segment_name] +# class SizeTermCalculatorOD: # class SizeTermCalculator +# """ +# convenience object to provide size_terms for a selector (e.g. +# non_mandatory) for various segments (e.g. tour_type or purpose) +# returns size terms for specified segment in df or series form. +# """ +# +# def __init__(self, size_term_selector): +# # do this once so they can request size_terms for various segments (tour_type or purpose) +# land_use = state.checkpoint.load_dataframe("land_use") +# self.land_use = land_use +# size_terms = state.get_injectable("size_terms") +# self.destination_size_terms = tour_destination_size_terms( +# self.land_use, size_terms, size_term_selector +# ) +# +# assert not self.destination_size_terms.isna().any(axis=None) +# +# def omnibus_size_terms_df(self): +# return self.destination_size_terms +# +# def dest_size_terms_df(self, segment_name, trace_label): +# # return size terms as df with one column named 'size_term' +# # convenient if creating or merging with alts +# +# size_terms = self.destination_size_terms[[segment_name]].copy() +# size_terms.columns = ["size_term"] +# +# # FIXME - no point in considering impossible alternatives (where dest size term is zero) +# logger.debug( +# f"SizeTermCalculator dropping {(~(size_terms.size_term > 0)).sum()} " +# f"of {len(size_terms)} rows where size_term is zero for {segment_name}" +# ) +# size_terms = size_terms[size_terms.size_term > 0] +# +# if len(size_terms) == 0: +# logger.warning( +# f"SizeTermCalculator: no zones with non-zero size terms for {segment_name} in {trace_label}" +# ) +# +# return size_terms +# +# def dest_size_terms_series(self, segment_name): +# # return size terms as as series +# # convenient (and no copy overhead) if reindexing and assigning into alts column +# return self.destination_size_terms[segment_name] def run_od_sample( + state, spec_segment_name, tours, - model_settings, + model_settings: TourODSettings, network_los, destination_size_terms, estimator, chunk_size, trace_label, ): - model_spec = simulate.spec_for_segment( - model_settings, + state, + None, spec_id="SAMPLE_SPEC", segment_name=spec_segment_name, estimator=estimator, + spec_file_name=model_settings.SAMPLE_SPEC, + coefficients_file_name=model_settings.COEFFICIENTS, ) choosers = tours # FIXME - MEMORY HACK - only include columns actually used in spec - chooser_columns = model_settings["SIMULATE_CHOOSER_COLUMNS"] + chooser_columns = model_settings.SIMULATE_CHOOSER_COLUMNS choosers = choosers[chooser_columns] # interaction_sample requires that choosers.index.is_monotonic_increasing @@ -716,7 +737,7 @@ def run_od_sample( # by default, enable presampling for multizone systems, unless they disable it in settings file pre_sample_taz = not (network_los.zone_system == los.ONE_ZONE) - if pre_sample_taz and not config.setting("want_dest_choice_presampling", True): + if pre_sample_taz and not state.settings.want_dest_choice_presampling: pre_sample_taz = False logger.info( f"Disabled destination zone presampling for {trace_label} " @@ -724,12 +745,12 @@ def run_od_sample( ) if pre_sample_taz: - logger.info( "Running %s destination_presample with %d tours" % (trace_label, len(tours)) ) choices = od_presample( + state, spec_segment_name, choosers, model_settings, @@ -742,6 +763,7 @@ def run_od_sample( else: choices = od_sample( + state, spec_segment_name, choosers, model_settings, @@ -756,10 +778,11 @@ def run_od_sample( def run_od_logsums( + state: workflow.State, spec_segment_name, tours_merged_df, od_sample, - model_settings, + model_settings: TourODSettings, network_los, estimator, chunk_size, @@ -773,9 +796,11 @@ def run_od_logsums( (person, OD_id) pair in od_sample, and computing the logsum of all the utilities """ chunk_tag = "tour_od.logsums" - logsum_settings = config.read_model_settings(model_settings["LOGSUM_SETTINGS"]) - origin_id_col = model_settings["ORIG_COL_NAME"] - dest_id_col = model_settings["DEST_COL_NAME"] + logsum_settings = state.filesystem.read_model_settings( + model_settings.LOGSUM_SETTINGS + ) + origin_id_col = model_settings.ORIG_COL_NAME + dest_id_col = model_settings.DEST_COL_NAME tour_od_id_col = get_od_id_col(origin_id_col, dest_id_col) # FIXME - MEMORY HACK - only include columns actually used in spec @@ -791,13 +816,14 @@ def run_od_logsums( logger.info("Running %s with %s rows", trace_label, len(choosers)) - tracing.dump_df(DUMP, choosers, trace_label, "choosers") + state.tracing.dump_df(DUMP, choosers, trace_label, "choosers") # run trip mode choice to compute tour mode choice logsums if logsum_settings.get("COMPUTE_TRIP_MODE_CHOICE_LOGSUMS", False): - pseudo_tours = choosers.copy() - trip_mode_choice_settings = config.read_model_settings("trip_mode_choice") + trip_mode_choice_settings = state.filesystem.read_model_settings( + "trip_mode_choice" + ) # tours_merged table doesn't yet have all the cols it needs to be called (e.g. # home_zone_id), so in order to compute tour mode choice/trip mode choice logsums @@ -826,9 +852,10 @@ def run_od_logsums( # tour dest as separate column in the trips table bc the trip mode choice # preprocessor isn't able to get the tour dest from the tours table bc the # tours don't yet have ODs. - stop_frequency_alts = inject.get_injectable("stop_frequency_alts") + stop_frequency_alts = state.get_injectable("stop_frequency_alts") pseudo_tours["tour_destination"] = pseudo_tours[dest_id_col] trips = trip.initialize_from_tours( + state, pseudo_tours, stop_frequency_alts, [origin_id_col, dest_id_col, "tour_destination", "unique_id"], @@ -843,7 +870,7 @@ def run_od_logsums( nest_spec = config.get_logit_model_settings(logsum_settings) # actual coeffs dont matter here, just need them to load the nest structure - coefficients = simulate.get_segment_coefficients( + coefficients = state.filesystem.get_segment_coefficients( logsum_settings, pseudo_tours.iloc[0]["tour_purpose"] ) nest_spec = simulate.eval_nest_coefficients( @@ -865,17 +892,19 @@ def run_od_logsums( if col not in trips: logsum_trips[col] = reindex(pseudo_tours[col], logsum_trips.unique_id) - pipeline.replace_table("trips", logsum_trips) - tracing.register_traceable_table("trips", logsum_trips) - pipeline.get_rn_generator().add_channel("trips", logsum_trips) + state.add_table("trips", logsum_trips) + state.tracing.register_traceable_table("trips", logsum_trips) + state.get_rn_generator().add_channel("trips", logsum_trips) - # run trip mode choice on pseudo-trips. use orca instead of pipeline to + # run trip mode choice on pseudo-trips. use a direct call instead of pipeline to # execute the step because pipeline can only handle one open step at a time - orca.run(["trip_mode_choice"]) + from activitysim.abm.models.trip_mode_choice import trip_mode_choice + + trip_mode_choice(state, logsum_trips, state.get("network_los")) # grab trip mode choice logsums and pivot by tour mode and direction, index # on tour_id to enable merge back to choosers table - trips = inject.get_table("trips").to_frame() + trips = state.get_dataframe("trips") trip_dir_mode_logsums = trips.pivot( index=["tour_id", tour_od_id_col], columns=["tour_mode", "outbound"], @@ -895,14 +924,15 @@ def run_od_logsums( choosers.reset_index(inplace=True) choosers.set_index(choosers_og_index, inplace=True) - pipeline.get_rn_generator().drop_channel("trips") - tracing.deregister_traceable_table("trips") + state.get_rn_generator().drop_channel("trips") + state.tracing.deregister_traceable_table("trips") assert (od_sample.index == choosers.index).all() for col in new_cols: od_sample[col] = choosers[col] - logsums = logsum.compute_logsums( + logsums = logsum.compute_location_choice_logsums( + state, choosers, spec_segment_name, logsum_settings, @@ -923,11 +953,12 @@ def run_od_logsums( def run_od_simulate( + state: workflow.State, spec_segment_name, tours, od_sample, want_logsums, - model_settings, + model_settings: TourODSettings, network_los, destination_size_terms, estimator, @@ -940,17 +971,20 @@ def run_od_simulate( """ model_spec = simulate.spec_for_segment( - model_settings, + state, + None, spec_id="SPEC", segment_name=spec_segment_name, estimator=estimator, + spec_file_name=model_settings.SPEC, + coefficients_file_name=model_settings.COEFFICIENTS, ) # merge persons into tours choosers = tours # FIXME - MEMORY HACK - only include columns actually used in spec - chooser_columns = model_settings["SIMULATE_CHOOSER_COLUMNS"] + chooser_columns = model_settings.SIMULATE_CHOOSER_COLUMNS choosers = choosers[chooser_columns] # interaction_sample requires that choosers.index.is_monotonic_increasing @@ -963,10 +997,10 @@ def run_od_simulate( if estimator: estimator.write_choosers(choosers) - origin_col_name = model_settings["ORIG_COL_NAME"] - dest_col_name = model_settings["DEST_COL_NAME"] - alt_dest_col_name = model_settings["ALT_DEST_COL_NAME"] - origin_attr_cols = model_settings["ORIGIN_ATTR_COLS_TO_USE"] + origin_col_name = model_settings.ORIG_COL_NAME + dest_col_name = model_settings.DEST_COL_NAME + alt_dest_col_name = model_settings.ALT_DEST_COL_NAME + origin_attr_cols = model_settings.ORIGIN_ATTR_COLS_TO_USE alt_od_col_name = get_od_id_col(origin_col_name, dest_col_name) od_sample[alt_od_col_name] = create_od_id_col( @@ -980,14 +1014,14 @@ def run_od_simulate( ) # also have to add origin attribute columns - lu = inject.get_table("land_use").to_frame(columns=origin_attr_cols) + lu = state.get_dataframe("land_use", columns=origin_attr_cols) od_sample = pd.merge( od_sample, lu, left_on=origin_col_name, right_index=True, how="left" ) - tracing.dump_df(DUMP, od_sample, trace_label, "alternatives") + state.tracing.dump_df(DUMP, od_sample, trace_label, "alternatives") - constants = config.get_model_constants(model_settings) + constants = model_settings.CONSTANTS logger.info("Running tour_destination_simulate with %d persons", len(choosers)) @@ -1006,8 +1040,9 @@ def run_od_simulate( if constants is not None: locals_d.update(constants) - tracing.dump_df(DUMP, choosers, trace_label, "choosers") + state.tracing.dump_df(DUMP, choosers, trace_label, "choosers") choices = interaction_sample_simulate( + state, choosers, od_sample, spec=model_spec, @@ -1022,6 +1057,7 @@ def run_od_simulate( ) if not want_logsums: + # expand pd.Series to a one-column DataFrame choices = choices.to_frame("choice") choices = _get_od_cols_from_od_id(choices, origin_col_name, dest_col_name) @@ -1030,26 +1066,26 @@ def run_od_simulate( def run_tour_od( + state, tours, persons, want_logsums, want_sample_table, - model_settings, + model_settings: TourODSettings, network_los, estimator, chunk_size, trace_hh_id, trace_label, ): + size_term_calculator = SizeTermCalculator(state, model_settings.SIZE_TERM_SELECTOR) + preprocessor_settings = model_settings.preprocessor + origin_col_name = model_settings.ORIG_COL_NAME - size_term_calculator = SizeTermCalculator(model_settings["SIZE_TERM_SELECTOR"]) - preprocessor_settings = model_settings.get("preprocessor", None) - origin_col_name = model_settings["ORIG_COL_NAME"] - - chooser_segment_column = model_settings["CHOOSER_SEGMENT_COLUMN_NAME"] + chooser_segment_column = model_settings.CHOOSER_SEGMENT_COLUMN_NAME # maps segment names to compact (integer) ids - segments = model_settings["SEGMENTS"] + segments = model_settings.SEGMENTS # interaction_sample_simulate insists choosers appear in same order as alts tours = tours.sort_index() @@ -1057,12 +1093,11 @@ def run_tour_od( choices_list = [] sample_list = [] for segment_name in segments: - choosers = tours[tours[chooser_segment_column] == segment_name] choosers = pd.merge( choosers, - persons.to_frame(columns=["is_university", "demographic_segment"]), + persons[["is_university", "demographic_segment"]], left_on="person_id", right_index=True, ) @@ -1070,6 +1105,7 @@ def run_tour_od( # - annotate choosers if preprocessor_settings: expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, trace_label=trace_label, @@ -1090,6 +1126,7 @@ def run_tour_od( spec_segment_name = segment_name # spec_segment_name is segment_name od_sample_df = run_od_sample( + state, spec_segment_name, choosers, model_settings, @@ -1102,13 +1139,13 @@ def run_tour_od( ), ) - if model_settings["ORIG_FILTER"] == "original_MAZ > 0": + if model_settings.ORIG_FILTER == "original_MAZ > 0": pass - elif model_settings["ORIG_FILTER"] == "external_TAZ > 0": + elif model_settings.ORIG_FILTER == "external_TAZ > 0": # sampled alts using internal mazs, so now we # have to convert to using the external tazs od_sample_df[origin_col_name] = map_maz_to_ext_maz( - od_sample_df[origin_col_name] + state, od_sample_df[origin_col_name] ) else: raise ValueError( @@ -1118,6 +1155,7 @@ def run_tour_od( # - destination_logsums od_sample_df = run_od_logsums( + state, spec_segment_name, choosers, od_sample_df, @@ -1127,12 +1165,13 @@ def run_tour_od( chunk_size=chunk_size, trace_hh_id=trace_hh_id, trace_label=tracing.extend_trace_label( - trace_label, "logsums.%s" % segment_name + trace_label, f"logsums.{segment_name}" ), ) # - od_simulate choices = run_od_simulate( + state, spec_segment_name, choosers, od_sample_df, @@ -1154,7 +1193,7 @@ def run_tour_od( if want_sample_table: # FIXME - sample_table od_sample_df.set_index( - model_settings["ALT_DEST_COL_NAME"], append=True, inplace=True + model_settings.ALT_DEST_COL_NAME, append=True, inplace=True ) sample_list.append(od_sample_df) diff --git a/activitysim/abm/models/util/tour_scheduling.py b/activitysim/abm/models/util/tour_scheduling.py index 1d6de7316..f52d0db44 100644 --- a/activitysim/abm/models/util/tour_scheduling.py +++ b/activitysim/abm/models/util/tour_scheduling.py @@ -1,55 +1,64 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd -from activitysim.core import config, expressions, inject, simulate +from activitysim.abm.models.util import vectorize_tour_scheduling as vts +from activitysim.core import config, estimation, expressions, simulate, workflow -from . import estimation -from . import vectorize_tour_scheduling as vts +from .vectorize_tour_scheduling import TourModeComponentSettings, TourSchedulingSettings logger = logging.getLogger(__name__) def run_tour_scheduling( + state: workflow.State, model_name, chooser_tours, persons_merged, tdd_alts, tour_segment_col, - chunk_size, - trace_hh_id, ): - trace_label = model_name model_settings_file_name = f"{model_name}.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + model_settings = TourSchedulingSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + mandatory=False, + ) - if "LOGSUM_SETTINGS" in model_settings: - logsum_settings = config.read_model_settings(model_settings["LOGSUM_SETTINGS"]) - logsum_columns = logsum_settings.get("LOGSUM_CHOOSER_COLUMNS", []) + if model_settings.LOGSUM_SETTINGS: + logsum_settings = TourModeComponentSettings.read_settings_file( + state.filesystem, + str(model_settings.LOGSUM_SETTINGS), + mandatory=False, + ) + logsum_columns = logsum_settings.LOGSUM_CHOOSER_COLUMNS else: logsum_columns = [] # - filter chooser columns for both logsums and simulate - model_columns = model_settings.get("SIMULATE_CHOOSER_COLUMNS", []) + model_columns = model_settings.SIMULATE_CHOOSER_COLUMNS chooser_columns = logsum_columns + [ c for c in model_columns if c not in logsum_columns ] persons_merged = expressions.filter_chooser_columns(persons_merged, chooser_columns) - timetable = inject.get_injectable("timetable") + timetable = state.get_injectable("timetable") # - run preprocessor to annotate choosers - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_d = {"tt": timetable} + locals_d = {"tt": timetable.attach_state(state)} locals_d.update(config.get_model_constants(model_settings)) expressions.assign_columns( + state, df=chooser_tours, model_settings=preprocessor_settings, locals_dict=locals_d, @@ -57,27 +66,26 @@ def run_tour_scheduling( ) estimators = {} - if "TOUR_SPEC_SEGMENTS" in model_settings: + if model_settings.TOUR_SPEC_SEGMENTS: # load segmented specs - spec_segment_settings = model_settings.get("SPEC_SEGMENTS", {}) + spec_segment_settings = model_settings.SPEC_SEGMENTS specs = {} sharrow_skips = {} for spec_segment_name, spec_settings in spec_segment_settings.items(): - bundle_name = f"{model_name}_{spec_segment_name}" # estimator for this tour_segment estimator = estimation.manager.begin_estimation( - model_name=bundle_name, bundle_name=bundle_name + state, model_name=bundle_name, bundle_name=bundle_name ) - spec_file_name = spec_settings["SPEC"] - model_spec = simulate.read_model_spec(file_name=spec_file_name) - coefficients_df = simulate.read_model_coefficients(spec_settings) + spec_file_name = spec_settings.SPEC + model_spec = state.filesystem.read_model_spec(file_name=spec_file_name) + coefficients_df = state.filesystem.read_model_coefficients(spec_settings) specs[spec_segment_name] = simulate.eval_coefficients( - model_spec, coefficients_df, estimator + state, model_spec, coefficients_df, estimator ) - sharrow_skips[spec_segment_name] = spec_settings.get("sharrow_skip", False) + sharrow_skips[spec_segment_name] = spec_settings.sharrow_skip if estimator: estimators[spec_segment_name] = estimator # add to local list @@ -86,7 +94,7 @@ def run_tour_scheduling( estimator.write_coefficients(coefficients_df, spec_settings) # - spec dict segmented by primary_purpose - tour_segment_settings = model_settings.get("TOUR_SPEC_SEGMENTS", {}) + tour_segment_settings = model_settings.TOUR_SPEC_SEGMENTS tour_segments = {} for tour_segment_name, spec_segment_name in tour_segment_settings.items(): tour_segments[tour_segment_name] = {} @@ -105,17 +113,21 @@ def run_tour_scheduling( else: # unsegmented spec - assert "SPEC_SEGMENTS" not in model_settings - assert "TOUR_SPEC_SEGMENTS" not in model_settings + assert ( + not model_settings.SPEC_SEGMENTS + ), f"model_settings.SPEC_SEGMENTS should be omitted not {model_settings.SPEC_SEGMENTS!r}" + assert not model_settings.TOUR_SPEC_SEGMENTS assert tour_segment_col is None - estimator = estimation.manager.begin_estimation(model_name) + estimator = estimation.manager.begin_estimation(state, model_name) - spec_file_name = model_settings["SPEC"] - model_spec = simulate.read_model_spec(file_name=spec_file_name) - sharrow_skip = model_settings.get("sharrow_skip", False) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + spec_file_name = model_settings.SPEC + model_spec = state.filesystem.read_model_spec(file_name=spec_file_name) + sharrow_skip = model_settings.sharrow_skip + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) if estimator: estimators[None] = estimator # add to local list @@ -135,6 +147,7 @@ def run_tour_scheduling( logger.info(f"Running {model_name} with %d tours", len(chooser_tours)) choices = vts.vectorize_tour_scheduling( + state, chooser_tours, persons_merged, tdd_alts, @@ -142,7 +155,7 @@ def run_tour_scheduling( tour_segments=tour_segments, tour_segment_col=tour_segment_col, model_settings=model_settings, - chunk_size=chunk_size, + chunk_size=state.settings.chunk_size, trace_label=trace_label, ) @@ -173,7 +186,7 @@ def run_tour_scheduling( tdds=choices.reindex(nth_tours.index), ) - timetable.replace_table() + timetable.replace_table(state) # choices are tdd alternative ids # we want to add start, end, and duration columns to tours, which we have in tdd_alts table diff --git a/activitysim/abm/models/util/trip.py b/activitysim/abm/models/util/trip.py index 870801e27..2ffb8750b 100644 --- a/activitysim/abm/models/util/trip.py +++ b/activitysim/abm/models/util/trip.py @@ -1,12 +1,14 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd from activitysim.abm.models.util.canonical_ids import set_trip_index -from activitysim.core import config, inject +from activitysim.core import workflow from activitysim.core.util import assign_in_place, reindex logger = logging.getLogger(__name__) @@ -82,7 +84,12 @@ def cleanup_failed_trips(trips): ascending=False ) - assign_in_place(trips, patch_trips[["trip_num", "trip_count"]]) + assign_in_place( + trips, + patch_trips[["trip_num", "trip_count"]], + state.settings.downcast_int, + state.settings.downcast_float, + ) # origin needs to match the previous destination # (leaving first origin alone as it's already set correctly) @@ -148,22 +155,28 @@ def get_time_windows(residual, level): return np.concatenate(ranges, axis=1) -@inject.injectable() -def stop_frequency_alts(): +@workflow.cached_object +def stop_frequency_alts(state: workflow.State) -> pd.DataFrame: # alt file for building trips even though simulation is simple_simulate not interaction_simulate - file_path = config.config_file_path("stop_frequency_alternatives.csv") + file_path = state.filesystem.get_config_file_path("stop_frequency_alternatives.csv") df = pd.read_csv(file_path, comment="#") df.set_index("alt", inplace=True) return df -def initialize_from_tours(tours, stop_frequency_alts, addtl_tour_cols_to_preserve=None): +def initialize_from_tours( + state: workflow.State, + tours, + stop_frequency_alts: pd.DataFrame, + addtl_tour_cols_to_preserve=None, +): """ Instantiates a trips table based on tour-level attributes: stop frequency, tour origin, tour destination. """ OUTBOUND_ALT = "out" + direction_cat_type = pd.api.types.CategoricalDtype(["out", "in"], ordered=False) assert OUTBOUND_ALT in stop_frequency_alts.columns # get the actual alternatives for each person - have to go back to the @@ -278,7 +291,7 @@ def initialize_from_tours(tours, stop_frequency_alts, addtl_tour_cols_to_preserv else: trip_index_tour_id = "tour_id" - set_trip_index(trips, trip_index_tour_id) + set_trip_index(state, trips, trip_index_tour_id) del trips["tour_temp_index"] return trips diff --git a/activitysim/abm/models/util/vectorize_tour_scheduling.py b/activitysim/abm/models/util/vectorize_tour_scheduling.py index 0882a6f74..17425d75b 100644 --- a/activitysim/abm/models/util/vectorize_tour_scheduling.py +++ b/activitysim/abm/models/util/vectorize_tour_scheduling.py @@ -1,13 +1,21 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging +from collections import OrderedDict +from pathlib import Path +from typing import Any import numpy as np import pandas as pd -from activitysim.core import chunk, config, expressions, inject, los, simulate +from activitysim.abm.models.tour_mode_choice import TourModeComponentSettings +from activitysim.core import chunk, config, expressions, los, simulate from activitysim.core import timetable as tt -from activitysim.core import tracing +from activitysim.core import tracing, workflow +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import LogitComponentSettings from activitysim.core.interaction_sample_simulate import interaction_sample_simulate from activitysim.core.util import reindex @@ -19,17 +27,52 @@ RUN_ALTS_PREPROCESSOR_BEFORE_MERGE = True # see FIXME below before changing this -def skims_for_logsums(tour_purpose, model_settings, trace_label): +# class TourSchedulingSpecSegmentsSettings(PydanticReadable, extra="forbid"): +# COEFFICIENTS: Path +# SPEC: Path + + +class TourSchedulingSettings(LogitComponentSettings, extra="forbid"): + LOGSUM_SETTINGS: Path | None = None + DESTINATION_FOR_TOUR_PURPOSE: str | dict[str, str] | None = None + LOGSUM_PREPROCESSOR: str = "preprocessor" + ALTS_PREPROCESSOR: PreprocessorSettings | dict[str, PreprocessorSettings] = {} + """ + If the alternatives preprocessor is a single PreprocessorSettings object, + it is assumed to be an unsegmented preprocessor. Otherwise, the dict keys + give the segements. + """ + SIMULATE_CHOOSER_COLUMNS: list[str] | None = None + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + SPEC_SEGMENTS: dict[str, LogitComponentSettings] = {} + + TOUR_SPEC_SEGMENTS: dict[str, str] = {} - assert "LOGSUM_SETTINGS" in model_settings + SPEC: Path | None = None + """Utility specification filename. - network_los = inject.get_injectable("network_los") + This is sometimes alternatively called the utility expressions calculator + (UEC). It is a CSV file giving all the functions for the terms of a + linear-in-parameters utility expression. If SPEC_SEGMENTS is given, then + this unsegmented SPEC should be omitted. + """ + + +def skims_for_logsums( + state: workflow.State, + tour_purpose, + model_settings: TourSchedulingSettings, + trace_label: str, +): + network_los = state.get_injectable("network_los") skim_dict = network_los.get_default_skim_dict() orig_col_name = "home_zone_id" - destination_for_tour_purpose = model_settings.get("DESTINATION_FOR_TOUR_PURPOSE") + destination_for_tour_purpose = model_settings.DESTINATION_FOR_TOUR_PURPOSE if isinstance(destination_for_tour_purpose, str): dest_col_name = destination_for_tour_purpose elif isinstance(destination_for_tour_purpose, dict): @@ -92,7 +135,14 @@ def skims_for_logsums(tour_purpose, model_settings, trace_label): def _compute_logsums( - alt_tdd, tours_merged, tour_purpose, model_settings, network_los, skims, trace_label + state: workflow.State, + alt_tdd, + tours_merged, + tour_purpose, + model_settings: TourSchedulingSettings, + network_los, + skims, + trace_label, ): """ compute logsums for tours using skims for alt_tdd out_period and in_period @@ -100,8 +150,12 @@ def _compute_logsums( trace_label = tracing.extend_trace_label(trace_label, "logsums") - with chunk.chunk_log(trace_label): - logsum_settings = config.read_model_settings(model_settings["LOGSUM_SETTINGS"]) + with chunk.chunk_log(state, trace_label): + logsum_settings = TourModeComponentSettings.read_settings_file( + state.filesystem, + str(model_settings.LOGSUM_SETTINGS), + mandatory=False, + ) choosers = alt_tdd.join(tours_merged, how="left", rsuffix="_chooser") logger.info( f"{trace_label} compute_logsums for {choosers.shape[0]} choosers {alt_tdd.shape[0]} alts" @@ -121,29 +175,39 @@ def _compute_logsums( locals_dict.update(skims) # constrained coefficients can appear in expressions - coefficients = simulate.get_segment_coefficients(logsum_settings, tour_purpose) + coefficients = state.filesystem.get_segment_coefficients( + logsum_settings, tour_purpose + ) locals_dict.update(coefficients) # - run preprocessor to annotate choosers # allow specification of alternate preprocessor for nontour choosers - preprocessor = model_settings.get("LOGSUM_PREPROCESSOR", "preprocessor") - preprocessor_settings = logsum_settings[preprocessor] + preprocessor = model_settings.LOGSUM_PREPROCESSOR + preprocessor_settings = ( + getattr(logsum_settings, preprocessor, None) + or logsum_settings[preprocessor] + ) if preprocessor_settings: - simulate.set_skim_wrapper_targets(choosers, skims) - + logger.info( + f"{trace_label} start preprocessing prior to compute_logsums for {choosers.shape[0]} choosers {alt_tdd.shape[0]} alts" + ) expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_dict, trace_label=trace_label, ) + logger.info( + f"{trace_label} end preprocessing prior to compute_logsums for {choosers.shape[0]} choosers {alt_tdd.shape[0]} alts" + ) # - compute logsums - logsum_spec = simulate.read_model_spec(file_name=logsum_settings["SPEC"]) + logsum_spec = state.filesystem.read_model_spec(file_name=logsum_settings.SPEC) logsum_spec = simulate.eval_coefficients( - logsum_spec, coefficients, estimator=None + state, logsum_spec, coefficients, estimator=None ) nest_spec = config.get_logit_model_settings(logsum_settings) @@ -152,6 +216,7 @@ def _compute_logsums( ) logsums = simulate.simple_simulate_logsums( + state, choosers, logsum_spec, nest_spec, @@ -164,22 +229,30 @@ def _compute_logsums( return logsums -def dedupe_alt_tdd(alt_tdd, tour_purpose, trace_label): - - tdd_segments = inject.get_injectable("tdd_alt_segments", None) +def dedupe_alt_tdd(state: workflow.State, alt_tdd, tour_purpose, trace_label): + tdd_segments = state.get_injectable("tdd_alt_segments", None) alt_tdd_periods = None logger.info("tdd_alt_segments specified for representative logsums") - with chunk.chunk_log(tracing.extend_trace_label(trace_label, "dedupe_alt_tdd")): + if tdd_segments is not None: + # apply categorical dtypes + tdd_segments["time_period"] = tdd_segments["time_period"].astype( + alt_tdd["out_period"].dtype + ) + with chunk.chunk_log( + state, tracing.extend_trace_label(trace_label, "dedupe_alt_tdd") + ) as chunk_sizer: if tdd_segments is not None: + tdd_segments["time_period"] = tdd_segments["time_period"].astype( + alt_tdd["out_period"].dtype + ) dedupe_columns = ["out_period", "in_period"] # tdd_alt_segments is optionally segmented by tour purpose if "tour_purpose" in tdd_segments: - is_tdd_for_tour_purpose = tdd_segments.tour_purpose == tour_purpose if not is_tdd_for_tour_purpose.any(): is_tdd_for_tour_purpose = tdd_segments.tour_purpose.isnull() @@ -203,7 +276,7 @@ def dedupe_alt_tdd(alt_tdd, tour_purpose, trace_label): how="left", on="out_period", ) - chunk.log_df(trace_label, "alt_tdd_periods", alt_tdd_periods) + chunk_sizer.log_df(trace_label, "alt_tdd_periods", alt_tdd_periods) # left join representative end on in_period alt_tdd_periods = pd.merge( @@ -214,7 +287,7 @@ def dedupe_alt_tdd(alt_tdd, tour_purpose, trace_label): how="left", on=["in_period"], ) - chunk.log_df(trace_label, "alt_tdd_periods", alt_tdd_periods) + chunk_sizer.log_df(trace_label, "alt_tdd_periods", alt_tdd_periods) if tdd_segments.start.isnull().any(): missing_periods = tdd_segments.out_period[ @@ -239,13 +312,13 @@ def dedupe_alt_tdd(alt_tdd, tour_purpose, trace_label): alt_tdd_periods = alt_tdd_periods.drop_duplicates().set_index( alt_tdd.index.name ) - chunk.log_df(trace_label, "alt_tdd_periods", alt_tdd_periods) + chunk_sizer.log_df(trace_label, "alt_tdd_periods", alt_tdd_periods) # representative duration alt_tdd_periods["duration"] = ( alt_tdd_periods["end"] - alt_tdd_periods["start"] ) - chunk.log_df(trace_label, "alt_tdd_periods", alt_tdd_periods) + chunk_sizer.log_df(trace_label, "alt_tdd_periods", alt_tdd_periods) logger.debug( f"{trace_label} " @@ -256,7 +329,6 @@ def dedupe_alt_tdd(alt_tdd, tour_purpose, trace_label): # if there is no tdd_alt_segments file, we can at least dedupe on 'out_period', 'in_period', 'duration' if alt_tdd_periods is None: - # FIXME This won't work if they reference start or end in logsum calculations # for MTC only duration is used (to calculate all_day parking cost) dedupe_columns = ["out_period", "in_period", "duration"] @@ -274,7 +346,7 @@ def dedupe_alt_tdd(alt_tdd, tour_purpose, trace_label): .drop_duplicates() .set_index(alt_tdd.index.name) ) - chunk.log_df(trace_label, "alt_tdd_periods", alt_tdd_periods) + chunk_sizer.log_df(trace_label, "alt_tdd_periods", alt_tdd_periods) logger.debug( f"{trace_label} " @@ -286,8 +358,16 @@ def dedupe_alt_tdd(alt_tdd, tour_purpose, trace_label): return alt_tdd_periods, dedupe_columns -def compute_logsums( - alt_tdd, tours_merged, tour_purpose, model_settings, skims, trace_label +def compute_tour_scheduling_logsums( + state: workflow.State, + alt_tdd, + tours_merged, + tour_purpose, + model_settings: TourSchedulingSettings, + skims, + trace_label, + *, + chunk_sizer: chunk.ChunkSizer, ): """ Compute logsums for the tour alt_tdds, which will differ based on their different start, stop @@ -302,28 +382,29 @@ def compute_logsums( """ trace_label = tracing.extend_trace_label(trace_label, "compute_logsums") - network_los = inject.get_injectable("network_los") + network_los = state.get_injectable("network_los") # - in_period and out_period assert "out_period" not in alt_tdd assert "in_period" not in alt_tdd - # FIXME:MEMORY - # These two lines each generate a massive array of strings, - # using a bunch of RAM and slowing things down. - alt_tdd["out_period"] = network_los.skim_time_period_label(alt_tdd["start"]) - alt_tdd["in_period"] = network_los.skim_time_period_label(alt_tdd["end"]) + alt_tdd["out_period"] = network_los.skim_time_period_label( + alt_tdd["start"], as_cat=True + ) + alt_tdd["in_period"] = network_los.skim_time_period_label( + alt_tdd["end"], as_cat=True + ) alt_tdd["duration"] = alt_tdd["end"] - alt_tdd["start"] # outside chunk_log context because we extend log_df call for alt_tdd made by our only caller _schedule_tours - chunk.log_df(trace_label, "alt_tdd", alt_tdd) - - with chunk.chunk_log(trace_label): + chunk_sizer.log_df(trace_label, "alt_tdd", alt_tdd) + with chunk.chunk_log(state, trace_label) as chunk_sizer: if USE_BRUTE_FORCE_TO_COMPUTE_LOGSUMS: # compute logsums for all the tour alt_tdds (inefficient) logsums = _compute_logsums( + state, alt_tdd, tours_merged, tour_purpose, @@ -336,9 +417,9 @@ def compute_logsums( index_name = alt_tdd.index.name deduped_alt_tdds, redupe_columns = dedupe_alt_tdd( - alt_tdd, tour_purpose, trace_label + state, alt_tdd, tour_purpose, trace_label ) - chunk.log_df(trace_label, "deduped_alt_tdds", deduped_alt_tdds) + chunk_sizer.log_df(trace_label, "deduped_alt_tdds", deduped_alt_tdds) logger.info( f"{trace_label} compute_logsums " @@ -351,6 +432,7 @@ def compute_logsums( # - compute logsums for the alt_tdd_periods deduped_alt_tdds["logsums"] = _compute_logsums( + state, deduped_alt_tdds, tours_merged, tour_purpose, @@ -362,27 +444,39 @@ def compute_logsums( # tracing.log_runtime(model_name=trace_label, start_time=t0) - # redupe - join the alt_tdd_period logsums to alt_tdd to get logsums for alt_tdd - logsums = ( - pd.merge( - alt_tdd.reset_index(), - deduped_alt_tdds.reset_index(), - on=[index_name] + redupe_columns, - how="left", - ) - .set_index(index_name) - .logsums - ) - chunk.log_df(trace_label, "logsums", logsums) + logsums = pd.Series(data=0, index=alt_tdd.index, dtype=np.float64) + left_on = [alt_tdd.index] + right_on = [deduped_alt_tdds.index] + for i in redupe_columns: + if ( + alt_tdd[i].dtype == "category" + and alt_tdd[i].dtype.ordered + and alt_tdd[i].dtype == deduped_alt_tdds[i].dtype + ): + left_on += [alt_tdd[i].cat.codes] + right_on += [deduped_alt_tdds[i].cat.codes] + else: + left_on += [alt_tdd[i].to_numpy()] + right_on += [deduped_alt_tdds[i].to_numpy()] + + logsums.iloc[:] = pd.merge( + pd.DataFrame(index=alt_tdd.index), + deduped_alt_tdds.logsums, + left_on=left_on, + right_on=right_on, + how="left", + ).logsums.to_numpy() + chunk_sizer.log_df(trace_label, "logsums", logsums) del deduped_alt_tdds - chunk.log_df(trace_label, "deduped_alt_tdds", None) + chunk_sizer.log_df(trace_label, "deduped_alt_tdds", None) # this is really expensive TRACE = False if TRACE: trace_logsums_df = logsums.to_frame("representative_logsum") trace_logsums_df["brute_force_logsum"] = _compute_logsums( + state, alt_tdd, tours_merged, tour_purpose, @@ -391,14 +485,14 @@ def compute_logsums( skims, trace_label, ) - tracing.trace_df( + state.tracing.trace_df( trace_logsums_df, label=tracing.extend_trace_label(trace_label, "representative_logsums"), slicer="NONE", transpose=False, ) - # leave it to our caller to pick up logsums with call to chunk.log_df + # leave it to our caller to pick up logsums with call to chunk_sizer.log_df return logsums @@ -444,7 +538,13 @@ def get_previous_tour_by_tourid( def tdd_interaction_dataset( - tours, alts, timetable, choice_column, window_id_col, trace_label + state: workflow.State, + tours, + alts, + timetable, + choice_column, + window_id_col, + trace_label, ): """ interaction_sample_simulate expects @@ -473,13 +573,13 @@ def tdd_interaction_dataset( trace_label = tracing.extend_trace_label(trace_label, "tdd_interaction_dataset") - with chunk.chunk_log(trace_label): + with chunk.chunk_log(state, trace_label) as chunk_sizer: alts_ids = np.tile(alts.index, len(tours.index)) - chunk.log_df(trace_label, "alts_ids", alts_ids) + chunk_sizer.log_df(trace_label, "alts_ids", alts_ids) tour_ids = np.repeat(tours.index, len(alts.index)) window_row_ids = np.repeat(tours[window_id_col], len(alts.index)) - chunk.log_df(trace_label, "window_row_ids", window_row_ids) + chunk_sizer.log_df(trace_label, "window_row_ids", window_row_ids) alt_tdd = alts.take(alts_ids) @@ -502,20 +602,20 @@ def tdd_interaction_dataset( available = timetable.tour_available(window_row_ids, alts_ids) del window_row_ids - chunk.log_df(trace_label, "window_row_ids", None) + chunk_sizer.log_df(trace_label, "window_row_ids", None) logger.debug( f"tdd_interaction_dataset keeping {available.sum()} of ({len(available)}) available alt_tdds" ) assert available.any() - chunk.log_df( + chunk_sizer.log_df( trace_label, "alt_tdd_", alt_tdd_ ) # catch this before we slice on available alt_tdd = alt_tdd_.isel({dimname: available}).to_dataframe() - chunk.log_df(trace_label, "alt_tdd", alt_tdd) + chunk_sizer.log_df(trace_label, "alt_tdd", alt_tdd) # FIXME - don't need this any more after slicing # del alt_tdd[window_id_col] @@ -523,7 +623,14 @@ def tdd_interaction_dataset( return alt_tdd -def run_alts_preprocessor(model_settings, alts, segment, locals_dict, trace_label): +def run_alts_preprocessor( + state: workflow.State, + model_settings: TourSchedulingSettings, + alts, + segment, + locals_dict, + trace_label, +): """ run preprocessor on alts, as specified by ALTS_PREPROCESSOR in model_settings @@ -547,18 +654,18 @@ def run_alts_preprocessor(model_settings, alts, segment, locals_dict, trace_labe annotated copy of alts """ - preprocessor_settings = model_settings.get("ALTS_PREPROCESSOR", {}) + preprocessor_settings = model_settings.ALTS_PREPROCESSOR - if segment in preprocessor_settings: + if isinstance(preprocessor_settings, dict) and segment in preprocessor_settings: # segmented by logsum_tour_purpose preprocessor_settings = preprocessor_settings.get(segment) logger.debug( - f"running ALTS_PREPROCESSOR with spec for {segment}: {preprocessor_settings.get('SPEC')}" + f"running ALTS_PREPROCESSOR with spec for {segment}: {preprocessor_settings.SPEC}" ) - elif "SPEC" in preprocessor_settings: + elif isinstance(preprocessor_settings, PreprocessorSettings): # unsegmented (either because no segmentation, or fallback if settings has generic preprocessor) logger.debug( - f"running ALTS_PREPROCESSOR with unsegmented spec {preprocessor_settings.get('SPEC')}" + f"running ALTS_PREPROCESSOR with unsegmented spec {preprocessor_settings.SPEC}" ) else: logger.debug( @@ -567,13 +674,13 @@ def run_alts_preprocessor(model_settings, alts, segment, locals_dict, trace_labe preprocessor_settings = None if preprocessor_settings: - logger.debug( f"run_alts_preprocessor calling assign_columns for {segment} preprocessor_settings" ) alts = alts.copy() expressions.assign_columns( + state, df=alts, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -584,12 +691,13 @@ def run_alts_preprocessor(model_settings, alts, segment, locals_dict, trace_labe def _schedule_tours( + state: workflow.State, tours, persons_merged, alts, spec, logsum_tour_purpose, - model_settings, + model_settings: TourSchedulingSettings, skims, timetable, window_id_col, @@ -598,6 +706,8 @@ def _schedule_tours( estimator, tour_trace_label, sharrow_skip=False, + *, + chunk_sizer: chunk.ChunkSizer, ): """ previous_tour stores values used to add columns that can be used in the spec @@ -622,7 +732,7 @@ def _schedule_tours( unavailable alternatives spec : DataFrame The spec which will be passed to interaction_simulate. - model_settings : dict + model_settings : TourSchedulingSettings timetable : TimeTable timetable of timewidows for person (or subtour) with rows for tours[window_id_col] window_id_col : str @@ -656,7 +766,7 @@ def _schedule_tours( right_index=True, suffixes=("", "_y"), ) - chunk.log_df(tour_trace_label, "tours", tours) + chunk_sizer.log_df(tour_trace_label, "tours", tours) # - add explicit window_id_col for timetable owner if it is index # if no timetable window_id_col specified, then add index as an explicit column @@ -673,33 +783,40 @@ def _schedule_tours( # indexed (not unique) on tour_id choice_column = TDD_CHOICE_COLUMN alt_tdd = tdd_interaction_dataset( - tours, alts, timetable, choice_column, window_id_col, tour_trace_label + state, tours, alts, timetable, choice_column, window_id_col, tour_trace_label ) # print(f"tours {tours.shape} alts {alts.shape}") - chunk.log_df(tour_trace_label, "alt_tdd", alt_tdd) + chunk_sizer.log_df(tour_trace_label, "alt_tdd", alt_tdd) # - add logsums if logsum_tour_purpose: - logsums = compute_logsums( - alt_tdd, tours, logsum_tour_purpose, model_settings, skims, tour_trace_label + logsums = compute_tour_scheduling_logsums( + state, + alt_tdd, + tours, + logsum_tour_purpose, + model_settings, + skims, + tour_trace_label, + chunk_sizer=chunk_sizer, ) else: logsums = 0 alt_tdd["mode_choice_logsum"] = logsums del logsums - chunk.log_df(tour_trace_label, "alt_tdd", alt_tdd) + chunk_sizer.log_df(tour_trace_label, "alt_tdd", alt_tdd) # - merge in previous tour columns # adds start_previous and end_previous, joins on index tours = tours.join( get_previous_tour_by_tourid(tours[tour_owner_id_col], previous_tour, alts) ) - chunk.log_df(tour_trace_label, "tours", tours) + chunk_sizer.log_df(tour_trace_label, "tours", tours) # - make choices - locals_d = {"tt": timetable} + locals_d = {"tt": timetable.attach_state(state)} constants = config.get_model_constants(model_settings) if constants is not None: locals_d.update(constants) @@ -721,9 +838,9 @@ def _schedule_tours( logsum_tour_purpose # FIXME this is not always right - see note above ) alt_tdd = run_alts_preprocessor( - model_settings, alt_tdd, spec_segment, locals_d, tour_trace_label + state, model_settings, alt_tdd, spec_segment, locals_d, tour_trace_label ) - chunk.log_df(tour_trace_label, "alt_tdd", alt_tdd) + chunk_sizer.log_df(tour_trace_label, "alt_tdd", alt_tdd) if estimator: # write choosers after annotation @@ -731,9 +848,10 @@ def _schedule_tours( estimator.set_alt_id(choice_column) estimator.write_interaction_sample_alternatives(alt_tdd) - log_alt_losers = config.setting("log_alt_losers", False) + log_alt_losers = state.settings.log_alt_losers choices = interaction_sample_simulate( + state, tours, alt_tdd, spec, @@ -744,7 +862,7 @@ def _schedule_tours( trace_label=tour_trace_label, estimator=estimator, ) - chunk.log_df(tour_trace_label, "choices", choices) + chunk_sizer.log_df(tour_trace_label, "choices", choices) # - update previous_tour and timetable parameters @@ -758,12 +876,13 @@ def _schedule_tours( def schedule_tours( + state: workflow.State, tours, persons_merged, alts, spec, logsum_tour_purpose, - model_settings, + model_settings: TourSchedulingSettings, timetable, timetable_window_id_col, previous_tour, @@ -798,18 +917,25 @@ def schedule_tours( else: assert not tours[timetable_window_id_col].duplicated().any() - if "LOGSUM_SETTINGS" in model_settings: + if model_settings.LOGSUM_SETTINGS: # we need skims to calculate tvpb skim overhead in 3_ZONE systems for use by calc_rows_per_chunk - skims = skims_for_logsums(logsum_tour_purpose, model_settings, tour_trace_label) + skims = skims_for_logsums( + state, logsum_tour_purpose, model_settings, tour_trace_label + ) else: skims = None result_list = [] - for i, chooser_chunk, chunk_trace_label in chunk.adaptive_chunked_choosers( - tours, chunk_size, tour_trace_label, tour_chunk_tag + for ( + _i, + chooser_chunk, + chunk_trace_label, + chunk_sizer, + ) in chunk.adaptive_chunked_choosers( + state, tours, tour_trace_label, tour_chunk_tag ): - choices = _schedule_tours( + state, chooser_chunk, persons_merged, alts, @@ -824,11 +950,12 @@ def schedule_tours( estimator, tour_trace_label=chunk_trace_label, sharrow_skip=sharrow_skip, + chunk_sizer=chunk_sizer, ) result_list.append(choices) - chunk.log_df(tour_trace_label, "result_list", result_list) + chunk_sizer.log_df(tour_trace_label, "result_list", result_list) # FIXME: this will require 2X RAM # if necessary, could append to hdf5 store on disk: @@ -842,13 +969,14 @@ def schedule_tours( def vectorize_tour_scheduling( + state: workflow.State, tours, persons_merged, alts, timetable, tour_segments, tour_segment_col, - model_settings, + model_settings: TourSchedulingSettings, chunk_size=0, trace_label=None, ): @@ -881,7 +1009,7 @@ def vectorize_tour_scheduling( spec : DataFrame The spec which will be passed to interaction_simulate. (or dict of specs keyed on tour_type if tour_types is not None) - model_settings : dict + model_settings : TourSchedulingSettings Returns ------- @@ -909,7 +1037,7 @@ def vectorize_tour_scheduling( timetable_window_id_col = "person_id" tour_owner_id_col = "person_id" - compute_logsums = "LOGSUM_SETTINGS" in model_settings + should_compute_logsums = model_settings.LOGSUM_SETTINGS is not None assert isinstance(tour_segments, dict) @@ -919,16 +1047,13 @@ def vectorize_tour_scheduling( # segregate scheduling by tour_type if multiple specs passed in dict keyed by tour_type for tour_num, nth_tours in tours.groupby("tour_num", sort=True): - tour_trace_label = tracing.extend_trace_label(trace_label, f"tour_{tour_num}") tour_chunk_tag = tracing.extend_trace_label( trace_label, f"tour_{1 if tour_num == 1 else 'n'}" ) if tour_segment_col is not None: - for tour_segment_name, tour_segment_info in tour_segments.items(): - segment_trace_label = tracing.extend_trace_label( tour_trace_label, tour_segment_name ) @@ -939,7 +1064,9 @@ def vectorize_tour_scheduling( # assume segmentation of spec and coefficients are aligned spec_segment_name = tour_segment_info.get("spec_segment_name") # assume logsum segmentation is same as tours - logsum_tour_purpose = tour_segment_name if compute_logsums else None + logsum_tour_purpose = ( + tour_segment_name if should_compute_logsums else None + ) nth_tours_in_segment = nth_tours[ nth_tours[tour_segment_col] == tour_segment_name @@ -951,6 +1078,7 @@ def vectorize_tour_scheduling( if RUN_ALTS_PREPROCESSOR_BEFORE_MERGE: locals_dict = {} alts = run_alts_preprocessor( + state, model_settings, alts, spec_segment_name, @@ -959,6 +1087,7 @@ def vectorize_tour_scheduling( ) choices = schedule_tours( + state, nth_tours_in_segment, persons_merged, alts, @@ -979,16 +1108,16 @@ def vectorize_tour_scheduling( choice_list.append(choices) else: - # MTC non_mandatory_tours are not segmented by tour_purpose and do not require logsums # FIXME should support logsums? assert ( - not compute_logsums + not should_compute_logsums ), "logsums for unsegmented spec not implemented because not currently needed" assert tour_segments.get("spec_segment_name") is None choices = schedule_tours( + state, nth_tours, persons_merged, alts, @@ -1013,12 +1142,13 @@ def vectorize_tour_scheduling( def vectorize_subtour_scheduling( + state: workflow.State, parent_tours, subtours, persons_merged, alts, spec, - model_settings, + model_settings: TourSchedulingSettings, estimator, chunk_size=0, trace_label=None, @@ -1048,7 +1178,7 @@ def vectorize_subtour_scheduling( spec : DataFrame The spec which will be passed to interaction_simulate. (all subtours share same spec regardless of subtour type) - model_settings : dict + model_settings : TourSchedulingSettings chunk_size trace_label @@ -1097,7 +1227,6 @@ def vectorize_subtour_scheduling( # this ought to have been ensured when tours are created (tour_frequency.process_tours) for tour_num, nth_tours in subtours.groupby("tour_num", sort=True): - tour_trace_label = tracing.extend_trace_label(trace_label, f"tour_{tour_num}") tour_chunk_tag = tracing.extend_trace_label( trace_label, f"tour_{1 if tour_num == 1 else 'n'}" @@ -1107,6 +1236,7 @@ def vectorize_subtour_scheduling( assert not nth_tours.parent_tour_id.duplicated().any() choices = schedule_tours( + state, nth_tours, persons_merged, alts, @@ -1118,7 +1248,7 @@ def vectorize_subtour_scheduling( previous_tour_by_parent_tour_id, tour_owner_id_col, estimator, - chunk_size, + state.settings.chunk_size, tour_trace_label, tour_chunk_tag, sharrow_skip=sharrow_skip, @@ -1144,15 +1274,13 @@ def vectorize_subtour_scheduling( def build_joint_tour_timetables( joint_tours, joint_tour_participants, persons_timetable, alts ): - # timetable with a window for each joint tour joint_tour_windows_df = tt.create_timetable_windows(joint_tours, alts) joint_tour_timetable = tt.TimeTable(joint_tour_windows_df, alts) - for participant_num, nth_participants in joint_tour_participants.groupby( + for _participant_num, nth_participants in joint_tour_participants.groupby( "participant_num", sort=True ): - # nth_participant windows from persons_timetable participant_windows = persons_timetable.slice_windows_by_row_id( nth_participants.person_id @@ -1167,13 +1295,14 @@ def build_joint_tour_timetables( def vectorize_joint_tour_scheduling( + state: workflow.State, joint_tours, joint_tour_participants, persons_merged, alts, persons_timetable, spec, - model_settings, + model_settings: TourSchedulingSettings, estimator, chunk_size=0, trace_label=None, @@ -1199,7 +1328,7 @@ def vectorize_joint_tour_scheduling( spec : DataFrame The spec which will be passed to interaction_simulate. (or dict of specs keyed on tour_type if tour_types is not None) - model_settings : dict + model_settings : TourSchedulingSettings Returns ------- @@ -1238,7 +1367,6 @@ def vectorize_joint_tour_scheduling( # persons_timetable.slice_windows_by_row_id(joint_tour_participants.person_id) for tour_num, nth_tours in joint_tours.groupby("tour_num", sort=True): - tour_trace_label = tracing.extend_trace_label(trace_label, f"tour_{tour_num}") tour_chunk_tag = tracing.extend_trace_label( trace_label, f"tour_{1 if tour_num == 1 else 'n'}" @@ -1256,6 +1384,7 @@ def vectorize_joint_tour_scheduling( ) choices = schedule_tours( + state, nth_tours, persons_merged, alts, diff --git a/activitysim/abm/models/vehicle_allocation.py b/activitysim/abm/models/vehicle_allocation.py index e68abc386..e4129e106 100644 --- a/activitysim/abm/models/vehicle_allocation.py +++ b/activitysim/abm/models/vehicle_allocation.py @@ -1,52 +1,48 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations -import itertools import logging -import os -import numpy as np import pandas as pd from activitysim.core import ( - assign, config, + estimation, expressions, - inject, - logit, los, - pipeline, simulate, tracing, + workflow, ) -from activitysim.core.interaction_simulate import interaction_simulate -from activitysim.core.util import assign_in_place - -from .util import estimation -from .util.mode import mode_choice_simulate +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import LogitComponentSettings logger = logging.getLogger(__name__) -def annotate_vehicle_allocation(model_settings, trace_label): +def annotate_vehicle_allocation( + state: workflow.State, model_settings: VehicleAllocationSettings, trace_label: str +): """ Add columns to the tours table in the pipeline according to spec. Parameters ---------- - model_settings : dict + model_settings : VehicleAllocationSettings trace_label : str """ - tours = inject.get_table("tours").to_frame() + tours = state.get_dataframe("tours") expressions.assign_columns( + state, df=tours, - model_settings=model_settings.get("annotate_tours"), + model_settings=model_settings.annotate_tours, trace_label=tracing.extend_trace_label(trace_label, "annotate_tours"), ) - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) -def get_skim_dict(network_los, choosers): +def get_skim_dict(network_los: los.Network_LOS, choosers: pd.DataFrame): """ Returns a dictionary of skim wrappers to use in expression writing. @@ -89,17 +85,39 @@ def get_skim_dict(network_los, choosers): return skims -@inject.step() +class VehicleAllocationSettings(LogitComponentSettings, extra="forbid"): + """ + Settings for the `joint_tour_scheduling` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + OCCUPANCY_LEVELS: list = [1] # TODO Check this + """Occupancy level + + It will create columns in the tour table selecting a vehicle for each of the + occupancy levels. They are named vehicle_occup_1, vehicle_occup_2,... etc. + if not supplied, will default to only one occupancy level of 1 + """ + + annotate_tours: PreprocessorSettings | None = None + """Preprocessor settings to annotate tours""" + + +@workflow.step def vehicle_allocation( - persons, - households, - vehicles, - tours, - tours_merged, - network_los, - chunk_size, - trace_hh_id, -): + state: workflow.State, + persons: pd.DataFrame, + households: pd.DataFrame, + vehicles: pd.DataFrame, + tours: pd.DataFrame, + tours_merged: pd.DataFrame, + network_los: los.Network_LOS, + model_settings: VehicleAllocationSettings | None = None, + model_settings_file_name: str = "vehicle_allocation.yaml", + trace_label: str = "vehicle_allocation", +) -> None: """Selects a vehicle for each occupancy level for each tour. Alternatives consist of the up to the number of household vehicles plus one @@ -113,26 +131,30 @@ def vehicle_allocation( Parameters ---------- - persons : orca.DataFrameWrapper - households : orca.DataFrameWrapper - vehicles : orca.DataFrameWrapper - vehicles_merged : orca.DataFrameWrapper - tours : orca.DataFrameWrapper - tours_merged : orca.DataFrameWrapper - chunk_size : orca.injectable - trace_hh_id : orca.injectable + state : workflow.State + persons : pd.DataFrame + households : pd.DataFrame + vehicles : pd.DataFrame + tours : pd.DataFrame + tours_merged : pd.DataFrame + network_los : los.Network_LOS """ - trace_label = "vehicle_allocation" - model_settings_file_name = "vehicle_allocation.yaml" - model_settings = config.read_model_settings(model_settings_file_name) - logsum_column_name = model_settings.get("MODE_CHOICE_LOGSUM_COLUMN_NAME") + if model_settings is None: + model_settings = VehicleAllocationSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) + + # logsum_column_name = model_settings.MODE_CHOICE_LOGSUM_COLUMN_NAME - estimator = estimation.manager.begin_estimation("vehicle_allocation") + estimator = estimation.manager.begin_estimation(state, "vehicle_allocation") - model_spec_raw = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec_raw, coefficients_df, estimator) + model_spec_raw = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec_raw, coefficients_df, estimator + ) nest_spec = config.get_logit_model_settings(model_settings) constants = config.get_model_constants(model_settings) @@ -142,7 +164,7 @@ def vehicle_allocation( locals_dict.update(coefficients_df) # ------ constructing alternatives from model spec and joining to choosers - vehicles_wide = vehicles.to_frame().pivot_table( + vehicles_wide = vehicles.pivot_table( index="household_id", columns="vehicle_num", values="vehicle_type", @@ -170,7 +192,7 @@ def vehicle_allocation( vehicles_wide[alts_from_spec[-1]] = "" # merging vehicle alternatives to choosers - choosers = tours_merged.to_frame().reset_index() + choosers = tours_merged.reset_index() choosers = pd.merge(choosers, vehicles_wide, how="left", on="household_id") choosers.set_index("tour_id", inplace=True) @@ -179,9 +201,10 @@ def vehicle_allocation( locals_dict.update(skims) # ------ preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -196,22 +219,20 @@ def vehicle_allocation( estimator.write_coefficients(coefficients_df, model_settings) estimator.write_choosers(choosers) - tours = tours.to_frame() - # ------ running for each occupancy level selected tours_veh_occup_cols = [] - for occup in model_settings.get("OCCUPANCY_LEVELS", [1]): + for occup in model_settings.OCCUPANCY_LEVELS: logger.info("Running for occupancy = %d", occup) # setting occup for access in spec expressions locals_dict.update({"occup": occup}) choices = simulate.simple_simulate( + state, choosers=choosers, spec=model_spec, nest_spec=nest_spec, skims=skims, locals_d=locals_dict, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="vehicle_allocation", estimator=estimator, @@ -233,6 +254,7 @@ def vehicle_allocation( # creating a column for choice of each occupancy level tours_veh_occup_col = f"vehicle_occup_{occup}" tours[tours_veh_occup_col] = choices["choice"] + tours[tours_veh_occup_col] = tours[tours_veh_occup_col].astype("category") tours_veh_occup_cols.append(tours_veh_occup_col) if estimator: @@ -243,15 +265,15 @@ def vehicle_allocation( estimator.write_override_choices(choices) estimator.end_estimation() - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) tracing.print_summary( "vehicle_allocation", tours[tours_veh_occup_cols], value_counts=True ) - annotate_settings = model_settings.get("annotate_tours", None) + annotate_settings = model_settings.annotate_tours if annotate_settings: - annotate_vehicle_allocation(model_settings, trace_label) + annotate_vehicle_allocation(state, model_settings, trace_label) - if trace_hh_id: - tracing.trace_df(tours, label="vehicle_allocation", warn_if_empty=True) + if state.settings.trace_hh_id: + state.tracing.trace_df(tours, label="vehicle_allocation", warn_if_empty=True) diff --git a/activitysim/abm/models/vehicle_type_choice.py b/activitysim/abm/models/vehicle_type_choice.py index 324e505dd..6b17d9e35 100644 --- a/activitysim/abm/models/vehicle_type_choice.py +++ b/activitysim/abm/models/vehicle_type_choice.py @@ -1,33 +1,37 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import itertools import logging import os +from typing import Literal -import numpy as np import pandas as pd from activitysim.core import ( - assign, config, + estimation, expressions, - inject, logit, - los, - pipeline, simulate, tracing, + workflow, ) +from activitysim.core.configuration.base import PreprocessorSettings +from activitysim.core.configuration.logit import LogitComponentSettings from activitysim.core.interaction_simulate import interaction_simulate -from activitysim.core.util import assign_in_place - -from .util import estimation logger = logging.getLogger(__name__) -def append_probabilistic_vehtype_type_choices(choices, model_settings, trace_label): +def append_probabilistic_vehtype_type_choices( + state: workflow.State, + choices, + model_settings: VehicleTypeChoiceSettings, + trace_label, +): """ Select a fuel type for the provided body type and age of the vehicle. @@ -35,9 +39,10 @@ def append_probabilistic_vehtype_type_choices(choices, model_settings, trace_lab Parameters ---------- + state : workflow.State choices : pandas.DataFrame selection of {body_type}_{age} to append vehicle type to - probs_spec_file : str + model_settings : VehicleTypeChoiceSettings trace_label : str Returns @@ -45,10 +50,12 @@ def append_probabilistic_vehtype_type_choices(choices, model_settings, trace_lab choices : pandas.DataFrame table of chosen vehicle types """ - probs_spec_file = model_settings.get("PROBS_SPEC", None) - probs_spec = pd.read_csv(config.config_file_path(probs_spec_file), comment="#") + probs_spec_file = model_settings.PROBS_SPEC + probs_spec = pd.read_csv( + state.filesystem.get_config_file_path(probs_spec_file), comment="#" + ) - fleet_year = model_settings.get("FLEET_YEAR") + fleet_year = model_settings.FLEET_YEAR probs_spec["age"] = (1 + fleet_year - probs_spec["vehicle_year"]).astype(int) probs_spec["vehicle_type"] = ( probs_spec[["body_type", "age"]].astype(str).agg("_".join, axis=1) @@ -75,7 +82,7 @@ def append_probabilistic_vehtype_type_choices(choices, model_settings, trace_lab # make probabilistic choices prob_choices, rands = logit.make_choices( - chooser_probs, trace_label=trace_label, trace_choosers=choosers + state, chooser_probs, trace_label=trace_label, trace_choosers=choosers ) # convert alt choice index to vehicle type attribute @@ -91,58 +98,70 @@ def append_probabilistic_vehtype_type_choices(choices, model_settings, trace_lab return choices -def annotate_vehicle_type_choice_households(model_settings, trace_label): +def annotate_vehicle_type_choice_households( + state: workflow.State, model_settings: VehicleTypeChoiceSettings, trace_label: str +): """ Add columns to the households table in the pipeline according to spec. Parameters ---------- - model_settings : dict + state : workflow.State + model_settings : VehicleTypeChoiceSettings trace_label : str """ - households = inject.get_table("households").to_frame() + households = state.get_dataframe("households") expressions.assign_columns( + state, df=households, - model_settings=model_settings.get("annotate_households"), + model_settings=model_settings.annotate_households, trace_label=tracing.extend_trace_label(trace_label, "annotate_households"), ) - pipeline.replace_table("households", households) + state.add_table("households", households) -def annotate_vehicle_type_choice_persons(model_settings, trace_label): +def annotate_vehicle_type_choice_persons( + state: workflow.State, model_settings: VehicleTypeChoiceSettings, trace_label: str +): """ Add columns to the persons table in the pipeline according to spec. Parameters ---------- - model_settings : dict + state : workflow.State + model_settings : VehicleTypeChoiceSettings trace_label : str """ - persons = inject.get_table("persons").to_frame() + persons = state.get_dataframe("persons") expressions.assign_columns( + state, df=persons, - model_settings=model_settings.get("annotate_persons"), + model_settings=model_settings.annotate_persons, trace_label=tracing.extend_trace_label(trace_label, "annotate_persons"), ) - pipeline.replace_table("persons", persons) + state.add_table("persons", persons) -def annotate_vehicle_type_choice_vehicles(model_settings, trace_label): +def annotate_vehicle_type_choice_vehicles( + state: workflow.State, model_settings: VehicleTypeChoiceSettings, trace_label: str +): """ Add columns to the vehicles table in the pipeline according to spec. Parameters ---------- - model_settings : dict + state : workflow.State + model_settings : VehicleTypeChoiceSettings trace_label : str """ - vehicles = inject.get_table("vehicles").to_frame() + vehicles = state.get_dataframe("vehicles") expressions.assign_columns( + state, df=vehicles, - model_settings=model_settings.get("annotate_vehicles"), + model_settings=model_settings.annotate_vehicles, trace_label=tracing.extend_trace_label(trace_label, "annotate_vehicles"), ) - pipeline.replace_table("vehicles", vehicles) + state.add_table("vehicles", vehicles) def get_combinatorial_vehicle_alternatives(alts_cats_dict): @@ -155,14 +174,13 @@ def get_combinatorial_vehicle_alternatives(alts_cats_dict): Parameters ---------- alts_cats_dict : dict - model_settings : dict Returns ------- alts_wide : pd.DataFrame in wide format expanded using pandas get_dummies function alts_long : pd.DataFrame in long format """ - cat_cols = list(alts_cats_dict.keys()) # e.g. fuel type, body type, age + list(alts_cats_dict.keys()) # e.g. fuel type, body type, age alts_long = pd.DataFrame( list(itertools.product(*alts_cats_dict.values())), columns=alts_cats_dict.keys() ).astype(str) @@ -172,7 +190,12 @@ def get_combinatorial_vehicle_alternatives(alts_cats_dict): return alts_wide, alts_long -def construct_model_alternatives(model_settings, alts_cats_dict, vehicle_type_data): +def construct_model_alternatives( + state: workflow.State, + model_settings: VehicleTypeChoiceSettings, + alts_cats_dict, + vehicle_type_data, +): """ Construct the table of vehicle type alternatives. @@ -180,7 +203,8 @@ def construct_model_alternatives(model_settings, alts_cats_dict, vehicle_type_da Parameters ---------- - model_settings : dict + state : workflow.State + model_settings : VehicleTypeChoiceSettings alts_cats_dict : dict nested dictionary of vehicle body, age, and fuel options vehicle_type_data : pandas.DataFrame @@ -192,7 +216,7 @@ def construct_model_alternatives(model_settings, alts_cats_dict, vehicle_type_da alts_long : pd.DataFrame rows just list the alternatives """ - probs_spec_file = model_settings.get("PROBS_SPEC", None) + probs_spec_file = model_settings.PROBS_SPEC if probs_spec_file: # do not include alternatives from fuel_type if they are given probabilisticly del alts_cats_dict["fuel_type"] @@ -200,7 +224,6 @@ def construct_model_alternatives(model_settings, alts_cats_dict, vehicle_type_da # merge vehicle type data to alternatives if data is provided if (vehicle_type_data is not None) and (probs_spec_file is None): - alts_wide = pd.merge( alts_wide, vehicle_type_data, @@ -214,24 +237,36 @@ def construct_model_alternatives(model_settings, alts_cats_dict, vehicle_type_da alts_wide._merge == "left_only", ["body_type", "fuel_type", "age"] ] - if model_settings.get("REQUIRE_DATA_FOR_ALL_ALTS", False): + if model_settings.REQUIRE_DATA_FOR_ALL_ALTS: # fail if alternative does not have an associated record in the data assert ( len(missing_alts) == 0 ), f"missing vehicle data for alternatives:\n {missing_alts}" else: # eliminate alternatives if no vehicle type data + num_alts_before_filer = len(alts_wide) alts_wide = alts_wide[alts_wide._merge != "left_only"] + logger.warning( + f"Removed {num_alts_before_filer - len(alts_wide)} alternatives not included in input vehicle type data." + ) + # need to also remove any alts from alts_long + alts_long.set_index(["body_type", "age", "fuel_type"], inplace=True) + alts_long = alts_long[ + alts_long.index.isin( + alts_wide.set_index(["body_type", "age", "fuel_type"]).index + ) + ].reset_index() + alts_long.index = alts_wide.index alts_wide.drop(columns="_merge", inplace=True) # converting age to integer to allow interactions in utilities alts_wide["age"] = alts_wide["age"].astype(int) # store alts in primary configs dir for inspection - configs_dirs = inject.get_injectable("configs_dir") + configs_dirs = state.filesystem.get_configs_dir() configs_dirs = configs_dirs if isinstance(configs_dirs, list) else [configs_dirs] - if model_settings.get("WRITE_OUT_ALTS_FILE", False): + if model_settings.WRITE_OUT_ALTS_FILE: alts_wide.to_csv( os.path.join(configs_dirs[0]), "vehicle_type_choice_aternatives.csv" ) @@ -239,13 +274,18 @@ def construct_model_alternatives(model_settings, alts_cats_dict, vehicle_type_da return alts_wide, alts_long -def get_vehicle_type_data(model_settings, vehicle_type_data_file): +def get_vehicle_type_data( + state: workflow.State, + model_settings: VehicleTypeChoiceSettings, + vehicle_type_data_file, +): """ Read in the vehicle type data and computes the vehicle age. Parameters ---------- - model_settings : dict + state : workflow.State + model_settings : VehicleTypeChoiceSettings vehicle_type_data_file : str name of vehicle type data file found in config folder @@ -255,9 +295,9 @@ def get_vehicle_type_data(model_settings, vehicle_type_data_file): table of vehicle type data with required body_type, age, and fuel_type columns """ vehicle_type_data = pd.read_csv( - config.config_file_path(vehicle_type_data_file), comment="#" + state.filesystem.get_config_file_path(vehicle_type_data_file), comment="#" ) - fleet_year = model_settings.get("FLEET_YEAR") + fleet_year = model_settings.FLEET_YEAR vehicle_type_data["age"] = ( 1 + fleet_year - vehicle_type_data["vehicle_year"] @@ -272,8 +312,9 @@ def get_vehicle_type_data(model_settings, vehicle_type_data_file): def iterate_vehicle_type_choice( - vehicles_merged, - model_settings, + state: workflow.State, + vehicles_merged: pd.DataFrame, + model_settings: VehicleTypeChoiceSettings, model_spec, locals_dict, estimator, @@ -295,7 +336,7 @@ def iterate_vehicle_type_choice( Parameters ---------- - vehicles_merged : orca.DataFrameWrapper + vehicles_merged : DataFrame vehicle list owned by each household merged with households table model_settings : dict yaml model settings file as dict @@ -304,7 +345,7 @@ def iterate_vehicle_type_choice( locals_dict : dict additional variables available when writing expressions estimator : Estimator object - chunk_size : orca.injectable + chunk_size : int trace_label : str Returns @@ -316,28 +357,56 @@ def iterate_vehicle_type_choice( """ # - model settings nest_spec = config.get_logit_model_settings(model_settings) - vehicle_type_data_file = model_settings.get("VEHICLE_TYPE_DATA_FILE", None) - probs_spec_file = model_settings.get("PROBS_SPEC", None) - alts_cats_dict = model_settings.get("combinatorial_alts", False) + vehicle_type_data_file = model_settings.VEHICLE_TYPE_DATA_FILE + probs_spec_file = model_settings.PROBS_SPEC + alts_cats_dict = model_settings.combinatorial_alts # adding vehicle type data to be available to locals_dict regardless of option if vehicle_type_data_file: vehicle_type_data = get_vehicle_type_data( - model_settings, vehicle_type_data_file + state, model_settings, vehicle_type_data_file ) locals_dict.update({"vehicle_type_data": vehicle_type_data}) + else: + vehicle_type_data = None + # initialize categorical type for vehicle_type + vehicle_type_cat = "category" # - Preparing alternatives # create alts on-the-fly as cartesian product of categorical values if alts_cats_dict: # do not include fuel types as alternatives if probability file is supplied alts_wide, alts_long = construct_model_alternatives( - model_settings, alts_cats_dict, vehicle_type_data + state, model_settings, alts_cats_dict, vehicle_type_data + ) + # convert alternative names to categoricals + # body_type, fuel_type, vehicle_type + # age should be a int becuase it is used as a numeric value in utilities + body_type_cat = pd.api.types.CategoricalDtype( + alts_cats_dict["body_type"], ordered=False + ) + fuel_type_cat = pd.api.types.CategoricalDtype( + alts_cats_dict["fuel_type"], ordered=False + ) + vehicle_type_cat = pd.api.types.CategoricalDtype( + list(set(alts_wide["vehicle_type"])) + [""], ordered=False + ) + + alts_wide["body_type"] = alts_wide["body_type"].astype(body_type_cat) + alts_wide["fuel_type"] = alts_wide["fuel_type"].astype(fuel_type_cat) + alts_wide["vehicle_type"] = alts_wide["vehicle_type"].astype(vehicle_type_cat) + else: + alts_wide = alts_long = None + alts = model_spec.columns + vehicle_type_cat = pd.api.types.CategoricalDtype( + list(set(alts)) + [""], ordered=False ) # - preparing choosers for iterating - vehicles_merged = vehicles_merged.to_frame() vehicles_merged["already_owned_veh"] = "" + vehicles_merged["already_owned_veh"] = vehicles_merged["already_owned_veh"].astype( + vehicle_type_cat + ) logger.info("Running %s with %d vehicles", trace_label, len(vehicles_merged)) all_choosers = [] all_choices = [] @@ -350,9 +419,10 @@ def iterate_vehicle_type_choice( # running preprocessor on entire vehicle table to enumerate vehicle types # already owned by the household choosers = vehicles_merged - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -371,12 +441,12 @@ def iterate_vehicle_type_choice( # if there were so many alts that they had to be created programmatically, # by combining categorical variables, then the utility expressions should make # use of interaction terms to accommodate alt-specific coefficients and constants - simulation_type = model_settings.get("SIMULATION_TYPE", "interaction_simulate") + simulation_type = model_settings.SIMULATION_TYPE assert (simulation_type == "interaction_simulate") or ( simulation_type == "simple_simulate" ), "SIMULATION_TYPE needs to be interaction_simulate or simple_simulate" - log_alt_losers = config.setting("log_alt_losers", False) + log_alt_losers = state.settings.log_alt_losers if simulation_type == "interaction_simulate": assert ( @@ -384,6 +454,7 @@ def iterate_vehicle_type_choice( ), "Need to supply combinatorial_alts in yaml" choices = interaction_simulate( + state, choosers=choosers, alternatives=alts_wide, spec=model_spec, @@ -399,16 +470,18 @@ def iterate_vehicle_type_choice( # each alternative as a distinct column in the .csv elif simulation_type == "simple_simulate": choices = simulate.simple_simulate( + state, choosers=choosers, spec=model_spec, log_alt_losers=log_alt_losers, nest_spec=nest_spec, locals_d=locals_dict, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="vehicle_type", estimator=estimator, ) + else: + raise NotImplementedError(simulation_type) if isinstance(choices, pd.Series): choices = choices.to_frame("choice") @@ -419,18 +492,21 @@ def iterate_vehicle_type_choice( alts = ( alts_long[alts_long.columns] .apply(lambda row: "_".join(row.values.astype(str)), axis=1) - .values + .to_dict() ) else: - alts = model_spec.columns - choices["vehicle_type"] = choices["vehicle_type"].map(dict(enumerate(alts))) + alts = enumerate(dict(model_spec.columns)) + choices["vehicle_type"] = choices["vehicle_type"].map(alts) # STEP II: append probabilistic vehicle type attributes if probs_spec_file is not None: choices = append_probabilistic_vehtype_type_choices( - choices, model_settings, trace_label + state, choices, model_settings, trace_label ) + # convert vehicle_type to categorical + choices["vehicle_type"] = choices["vehicle_type"].astype(vehicle_type_cat) + vehicles_merged.loc[choices.index, "already_owned_veh"] = choices[ "vehicle_type" ] @@ -442,9 +518,12 @@ def iterate_vehicle_type_choice( all_choosers = pd.concat(all_choosers) # appending vehicle type data to the vehicle table - additional_cols = model_settings.get("COLS_TO_INCLUDE_IN_VEHICLE_TABLE") + additional_cols = model_settings.COLS_TO_INCLUDE_IN_VEHICLE_TABLE if additional_cols: additional_cols.append("vehicle_type") + vehicle_type_data["vehicle_type"] = vehicle_type_data["vehicle_type"].astype( + vehicle_type_cat + ) all_choices = ( all_choices.reset_index() .merge(vehicle_type_data[additional_cols], how="left", on="vehicle_type") @@ -454,10 +533,41 @@ def iterate_vehicle_type_choice( return all_choices, all_choosers -@inject.step() +class VehicleTypeChoiceSettings(LogitComponentSettings): + """ + Settings for the `vehicle_type_choice` component. + """ + + VEHICLE_TYPE_DATA_FILE: str | None = None + PROBS_SPEC: str | None = None + combinatorial_alts: dict | None = None + preprocessor: PreprocessorSettings | None = None + SIMULATION_TYPE: Literal[ + "simple_simulate", "interaction_simulate" + ] = "interaction_simulate" + COLS_TO_INCLUDE_IN_VEHICLE_TABLE: list[str] = [] + + annotate_households: PreprocessorSettings | None = None + annotate_persons: PreprocessorSettings | None = None + annotate_vehicles: PreprocessorSettings | None = None + + REQUIRE_DATA_FOR_ALL_ALTS: bool = False + WRITE_OUT_ALTS_FILE: bool = False + + FLEET_YEAR: int + + +@workflow.step def vehicle_type_choice( - persons, households, vehicles, vehicles_merged, chunk_size, trace_hh_id -): + state: workflow.State, + persons: pd.DataFrame, + households: pd.DataFrame, + vehicles: pd.DataFrame, + vehicles_merged: pd.DataFrame, + model_settings: VehicleTypeChoiceSettings | None = None, + model_settings_file_name: str = "vehicle_type_choice.yaml", + trace_label: str = "vehicle_type_choice", +) -> None: """Assign a vehicle type to each vehicle in the `vehicles` table. If a "SIMULATION_TYPE" is set to simple_simulate in the @@ -493,22 +603,28 @@ def vehicle_type_choice( Parameters ---------- - persons : orca.DataFrameWrapper - households : orca.DataFrameWrapper - vehicles : orca.DataFrameWrapper - vehicles_merged : orca.DataFrameWrapper - chunk_size : orca.injectable - trace_hh_id : orca.injectable + state : workflow.State + persons : pd.DataFrame + households : pd.DataFrame + vehicles : pd.DataFrame + vehicles_merged :pd. DataFrame + model_settings : class specifying the model settings + model_settings_file_name: filename of the model settings file + trace_label: trace label of the vehicle type choice model """ - trace_label = "vehicle_type_choice" - model_settings_file_name = "vehicle_type_choice.yaml" - model_settings = config.read_model_settings(model_settings_file_name) + if model_settings is None: + model_settings = VehicleTypeChoiceSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - estimator = estimation.manager.begin_estimation("vehicle_type") + estimator = estimation.manager.begin_estimation(state, "vehicle_type") - model_spec_raw = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) - model_spec = simulate.eval_coefficients(model_spec_raw, coefficients_df, estimator) + model_spec_raw = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + model_spec = simulate.eval_coefficients( + state, model_spec_raw, coefficients_df, estimator + ) constants = config.get_model_constants(model_settings) @@ -517,12 +633,13 @@ def vehicle_type_choice( locals_dict.update(coefficients_df) choices, choosers = iterate_vehicle_type_choice( + state, vehicles_merged, model_settings, model_spec, locals_dict, estimator, - chunk_size, + state.settings.chunk_size, trace_label, ) @@ -553,21 +670,22 @@ def vehicle_type_choice( estimator.end_estimation() # update vehicles table - # vehicles = pd.merge(vehicles.to_frame(), choices, left_index=True, right_index=True) - vehicles = pd.concat([vehicles.to_frame(), choices], axis=1) - pipeline.replace_table("vehicles", vehicles) + vehicles = pd.concat([vehicles, choices], axis=1) + state.add_table("vehicles", vehicles) # - annotate tables - if model_settings.get("annotate_households"): - annotate_vehicle_type_choice_households(model_settings, trace_label) - if model_settings.get("annotate_persons"): - annotate_vehicle_type_choice_persons(model_settings, trace_label) - if model_settings.get("annotate_vehicles"): - annotate_vehicle_type_choice_vehicles(model_settings, trace_label) + if model_settings.annotate_households: + annotate_vehicle_type_choice_households(state, model_settings, trace_label) + if model_settings.annotate_persons: + annotate_vehicle_type_choice_persons(state, model_settings, trace_label) + if model_settings.annotate_vehicles: + annotate_vehicle_type_choice_vehicles(state, model_settings, trace_label) tracing.print_summary( "vehicle_type_choice", vehicles.vehicle_type, value_counts=True ) - if trace_hh_id: - tracing.trace_df(vehicles, label="vehicle_type_choice", warn_if_empty=True) + if state.settings.trace_hh_id: + state.tracing.trace_df( + vehicles, label="vehicle_type_choice", warn_if_empty=True + ) diff --git a/activitysim/abm/models/work_from_home.py b/activitysim/abm/models/work_from_home.py index 043264000..234302b70 100755 --- a/activitysim/abm/models/work_from_home.py +++ b/activitysim/abm/models/work_from_home.py @@ -1,57 +1,113 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np - -from activitysim.abm.models.util import estimation -from activitysim.core import config, expressions, inject, pipeline, simulate, tracing +import pandas as pd + +from activitysim.core import ( + config, + estimation, + expressions, + simulate, + tracing, + workflow, +) +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable +from activitysim.core.configuration.logit import LogitComponentSettings logger = logging.getLogger("activitysim") -@inject.step() -def work_from_home(persons_merged, persons, chunk_size, trace_hh_id): +class WorkFromHomeSettings(LogitComponentSettings, extra="forbid"): + """ + Settings for the `work_from_home` component. + """ + + preprocessor: PreprocessorSettings | None = None + """Setting for the preprocessor.""" + + WORK_FROM_HOME_ALT: int + """Value that specify if the person is working from home""" # TODO + + WORK_FROM_HOME_ITERATIONS: int = 1 + """Setting to specify the number of iterations.""" + + CHOOSER_FILTER_COLUMN_NAME: str = "is_worker" + """Column name in the dataframe to represent worker.""" + + WORK_FROM_HOME_CHOOSER_FILTER: str = None + """Setting to filter work from home chooser.""" + + WORK_FROM_HOME_COEFFICIENT_CONSTANT: float = None + """Setting to set the work from home coefficient.""" + + WORK_FROM_HOME_TARGET_PERCENT: float = None + """Setting to set work from target percent.""" + + WORK_FROM_HOME_TARGET_PERCENT_TOLERANCE: float = None + """Setting to set work from home target percent tolerance.""" + + sharrow_skip: bool = False + """Setting to skip sharrow.""" + + DEST_CHOICE_COLUMN_NAME: str = "workplace_zone_id" + """Column name in persons dataframe to specify the workplace zone id. """ + + SPEC: str = "work_from_home.csv" + """Filename for the accessibility specification (csv) file.""" + + +@workflow.step +def work_from_home( + state: workflow.State, + persons_merged: pd.DataFrame, + persons: pd.DataFrame, + model_settings: WorkFromHomeSettings | None = None, + model_settings_file_name: str = "work_from_home.yaml", + trace_label: str = "work_from_home", +) -> None: """ This model predicts whether a person (worker) works from home. The output from this model is TRUE (if works from home) or FALSE (works away from home). The workplace location choice is overridden for workers who work from home and set to -1. """ + if model_settings is None: + model_settings = WorkFromHomeSettings.read_settings_file( + state.filesystem, + model_settings_file_name, + ) - trace_label = "work_from_home" - model_settings_file_name = "work_from_home.yaml" - - choosers = persons_merged.to_frame() - model_settings = config.read_model_settings(model_settings_file_name) - chooser_filter_column_name = model_settings.get( - "CHOOSER_FILTER_COLUMN_NAME", "is_worker" - ) + choosers = persons_merged + chooser_filter_column_name = model_settings.CHOOSER_FILTER_COLUMN_NAME choosers = choosers[choosers[chooser_filter_column_name]] logger.info("Running %s with %d persons", trace_label, len(choosers)) - estimator = estimation.manager.begin_estimation("work_from_home") + estimator = estimation.manager.begin_estimation(state, "work_from_home") constants = config.get_model_constants(model_settings) - work_from_home_alt = model_settings["WORK_FROM_HOME_ALT"] + work_from_home_alt = model_settings.WORK_FROM_HOME_ALT # - preprocessor - preprocessor_settings = model_settings.get("preprocessor", None) + preprocessor_settings = model_settings.preprocessor if preprocessor_settings: - locals_d = {} if constants is not None: locals_d.update(constants) expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_d, trace_label=trace_label, ) - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - coefficients_df = simulate.read_model_coefficients(model_settings) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) nest_spec = config.get_logit_model_settings(model_settings) @@ -62,22 +118,15 @@ def work_from_home(persons_merged, persons, chunk_size, trace_hh_id): estimator.write_choosers(choosers) # - iterative single process what-if adjustment if specified - iterations = model_settings.get("WORK_FROM_HOME_ITERATIONS", 1) - iterations_chooser_filter = model_settings.get( - "WORK_FROM_HOME_CHOOSER_FILTER", None - ) - iterations_coefficient_constant = model_settings.get( - "WORK_FROM_HOME_COEFFICIENT_CONSTANT", None - ) - iterations_target_percent = model_settings.get( - "WORK_FROM_HOME_TARGET_PERCENT", None - ) - iterations_target_percent_tolerance = model_settings.get( - "WORK_FROM_HOME_TARGET_PERCENT_TOLERANCE", None + iterations = model_settings.WORK_FROM_HOME_ITERATIONS + iterations_chooser_filter = model_settings.WORK_FROM_HOME_CHOOSER_FILTER + iterations_coefficient_constant = model_settings.WORK_FROM_HOME_COEFFICIENT_CONSTANT + iterations_target_percent = model_settings.WORK_FROM_HOME_TARGET_PERCENT + iterations_target_percent_tolerance = ( + model_settings.WORK_FROM_HOME_TARGET_PERCENT_TOLERANCE ) for iteration in range(iterations): - logger.info( "Running %s with %d persons iteration %d", trace_label, @@ -86,15 +135,20 @@ def work_from_home(persons_merged, persons, chunk_size, trace_hh_id): ) # re-read spec to reset substitution - model_spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) - model_spec = simulate.eval_coefficients(model_spec, coefficients_df, estimator) + model_spec = state.filesystem.read_model_spec(file_name=model_settings.SPEC) + model_spec = simulate.eval_coefficients( + state, model_spec, coefficients_df, estimator + ) + + if model_settings.sharrow_skip: + constants["disable_sharrow"] = True choices = simulate.simple_simulate( + state, choosers=choosers, spec=model_spec, nest_spec=nest_spec, locals_d=constants, - chunk_size=chunk_size, trace_label=trace_label, trace_choice_name="work_from_home", estimator=estimator, @@ -152,7 +206,6 @@ def work_from_home(persons_merged, persons, chunk_size, trace_hh_id): estimator.write_override_choices(choices) estimator.end_estimation() - persons = persons.to_frame() persons["work_from_home"] = choices.reindex(persons.index).fillna(0).astype(bool) persons["is_out_of_home_worker"] = ( persons[chooser_filter_column_name] & ~persons["work_from_home"] @@ -161,17 +214,15 @@ def work_from_home(persons_merged, persons, chunk_size, trace_hh_id): # setting workplace_zone_id to -1 if person works from home # this will exclude them from the telecommute frequency model choosers # See https://github.com/ActivitySim/activitysim/issues/627 - dest_choice_column_name = model_settings.get( - "DEST_CHOICE_COLUMN_NAME", "workplace_zone_id" - ) + dest_choice_column_name = model_settings.DEST_CHOICE_COLUMN_NAME if dest_choice_column_name in persons.columns: persons[dest_choice_column_name] = np.where( persons.work_from_home == True, -1, persons[dest_choice_column_name] ) - pipeline.replace_table("persons", persons) + state.add_table("persons", persons) tracing.print_summary("work_from_home", persons.work_from_home, value_counts=True) - if trace_hh_id: - tracing.trace_df(persons, label=trace_label, warn_if_empty=True) + if state.settings.trace_hh_id: + state.tracing.trace_df(persons, label=trace_label, warn_if_empty=True) diff --git a/activitysim/abm/tables/accessibility.py b/activitysim/abm/tables/accessibility.py index 6869da736..b37904c16 100644 --- a/activitysim/abm/tables/accessibility.py +++ b/activitysim/abm/tables/accessibility.py @@ -1,17 +1,19 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import pandas as pd -from activitysim.core import inject +from activitysim.core import workflow from activitysim.core.input import read_input_table logger = logging.getLogger(__name__) -@inject.table() -def accessibility(land_use): +@workflow.table +def accessibility(state: workflow.State): """ If 'accessibility' is in input_tables list, then read it in, otherwise create skeleton table with same index as landuse. @@ -23,7 +25,8 @@ def accessibility(land_use): otherwise it will simply be replaced when accessibility model is run """ - accessibility_df = read_input_table("accessibility", required=False) + land_use = state.get_dataframe("land_use") + accessibility_df = read_input_table(state, "accessibility", required=False) if accessibility_df is None: accessibility_df = pd.DataFrame(index=land_use.index) @@ -33,24 +36,22 @@ def accessibility(land_use): else: try: assert accessibility_df.sort_index().index.equals( - land_use.to_frame().sort_index().index + land_use.sort_index().index ), f"loaded accessibility table index does not match index of land_use table" except AssertionError: - land_use_index = land_use.to_frame().index - if f"_original_{land_use_index.name}" in land_use.to_frame(): - land_use_zone_ids = land_use.to_frame()[ - f"_original_{land_use_index.name}" - ] + land_use_index = land_use.index + if f"_original_{land_use_index.name}" in land_use: + land_use_zone_ids = land_use[f"_original_{land_use_index.name}"] remapper = dict(zip(land_use_zone_ids, land_use_zone_ids.index)) accessibility_df.index = accessibility_df.index.map(remapper.get) assert accessibility_df.sort_index().index.equals( - land_use.to_frame().sort_index().index + land_use.sort_index().index ), f"loaded accessibility table index does not match index of land_use table" else: raise logger.info("loaded land_use %s" % (accessibility_df.shape,)) # replace table function with dataframe - inject.add_table("accessibility", accessibility_df) + state.add_table("accessibility", accessibility_df) return accessibility_df diff --git a/activitysim/abm/tables/disaggregate_accessibility.py b/activitysim/abm/tables/disaggregate_accessibility.py index 4c4eb9ad4..8ab0e0820 100644 --- a/activitysim/abm/tables/disaggregate_accessibility.py +++ b/activitysim/abm/tables/disaggregate_accessibility.py @@ -1,19 +1,23 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -import os +from typing import Any import numpy as np import pandas as pd import pandas.api.types as ptypes - from sklearn.naive_bayes import CategoricalNB -from activitysim.core import inject, config, pipeline, util, input + +from activitysim.core import input, util, workflow logger = logging.getLogger(__name__) -def find_nearest_accessibility_zone(choosers, accessibility_df, method="skims"): +def find_nearest_accessibility_zone( + state: workflow.State, choosers, accessibility_df, method="skims" +): """ Matches choosers zone to the nearest accessibility zones. Can be achieved by querying the skims or by nearest neighbor of centroids @@ -47,7 +51,7 @@ def nearest_node(oz, zones_df): if method == "centroids": # Extract and vectorize TAZ centroids - centroids = inject.get_table("maz_centroids").to_frame() + centroids = state.get_dataframe("maz_centroids") # TODO.NF This is a bit hacky, needs some work for variable zone names if "TAZ" in centroids.columns: @@ -65,7 +69,7 @@ def nearest_node(oz, zones_df): nearest = [nearest_node(Oz, _centroids.XY) for Oz in unmatched_zones] else: - skim_dict = inject.get_injectable("skim_dict") + skim_dict = state.get_injectable("skim_dict") nearest = [nearest_skim(Oz, accessibility_zones) for Oz in unmatched_zones] # Add the nearest zones to the matched zones @@ -82,14 +86,14 @@ def nearest_node(oz, zones_df): return matched_df.loc[_idx] -@inject.injectable() -def disaggregate_suffixes(): +@workflow.cached_object +def disaggregate_suffixes(state: workflow.State) -> dict[str, Any]: return {"SUFFIX": None, "ROOTS": []} -@inject.table() -def maz_centroids(): - df = input.read_input_table("maz_centroids") +@workflow.table +def maz_centroids(state: workflow.State): + df = input.read_input_table(state, "maz_centroids") if not df.index.is_monotonic_increasing: df = df.sort_index() @@ -97,16 +101,17 @@ def maz_centroids(): logger.info("loaded maz_centroids %s" % (df.shape,)) # replace table function with dataframe - inject.add_table("maz_centroids", df) + state.add_table("maz_centroids", df) return df -@inject.table() -def proto_disaggregate_accessibility(): - +@workflow.table +def proto_disaggregate_accessibility(state: workflow.State): # Read existing accessibilities, but is not required to enable model compatibility - df = input.read_input_table("proto_disaggregate_accessibility", required=False) + df = input.read_input_table( + state, "proto_disaggregate_accessibility", required=False + ) # If no df, return empty dataframe to skip this model if not df: @@ -119,35 +124,51 @@ def proto_disaggregate_accessibility(): logger.info("loaded proto_disaggregate_accessibility %s" % (df.shape,)) # replace table function with dataframe - inject.add_table("proto_disaggregate_accessibility", df) + state.add_table("proto_disaggregate_accessibility", df) return df -@inject.table() -def disaggregate_accessibility(persons, households, land_use, accessibility): +@workflow.table +def disaggregate_accessibility(state: workflow.State): """ This step initializes pre-computed disaggregate accessibility and merges it onto the full synthetic population. Function adds merged all disaggregate accessibility tables to the pipeline but returns nothing. """ + persons = state.get_dataframe("persons") + households = state.get_dataframe("households") + land_use = state.get_dataframe("land_use") + accessibility = state.get_dataframe("accessibility") + # If disaggregate_accessibilities do not exist in the pipeline, it will try loading csv of that name - proto_accessibility_df = pipeline.get_table("proto_disaggregate_accessibility") + proto_accessibility_df = state.get_dataframe("proto_disaggregate_accessibility") # If there is no table, skip. We do this first to skip as fast as possible if proto_accessibility_df.empty: return pd.DataFrame() # Get persons merged manually - persons_merged_df = inject.merge_tables( - persons.name, tables=[persons, households, land_use, accessibility] + from activitysim.abm.tables.persons import persons_merged + + persons_merged_df = persons_merged( + state, + persons, + land_use, + households, + accessibility, + disaggregate_accessibility=None, ) + from ..models.disaggregate_accessibility import DisaggregateAccessibilitySettings + # Extract model settings - model_settings = config.read_model_settings("disaggregate_accessibility.yaml") - merging_params = model_settings.get("MERGE_ON") - nearest_method = model_settings.get("NEAREST_METHOD", "skims") + model_settings = DisaggregateAccessibilitySettings.read_settings_file( + state.filesystem, "disaggregate_accessibility.yaml" + ) + merging_params = model_settings.MERGE_ON + nearest_method = model_settings.NEAREST_METHOD accessibility_cols = [ x for x in proto_accessibility_df.columns if "accessibility" in x ] @@ -165,7 +186,7 @@ def disaggregate_accessibility(persons, households, land_use, accessibility): # Note that from here on the 'home_zone_id' is the matched name if "nearest_accessibility_zone_id" not in persons_merged_df.columns: persons_merged_df = find_nearest_accessibility_zone( - persons_merged_df, proto_accessibility_df, nearest_method + state, persons_merged_df, proto_accessibility_df, nearest_method ) # Copy home_zone_id in proto-table to match the temporary 'nearest_zone_id' @@ -260,11 +281,6 @@ def disaggregate_accessibility(persons, households, land_use, accessibility): assert any(merge_df[accessibility_cols].isnull()) # Inject merged accessibilities so that it can be included in persons_merged function - inject.add_table("disaggregate_accessibility", merge_df[accessibility_cols]) + state.add_table("disaggregate_accessibility", merge_df[accessibility_cols]) return merge_df[accessibility_cols] - - -inject.broadcast( - "disaggregate_accessibility", "persons", cast_index=True, onto_on="person_id" -) diff --git a/activitysim/abm/tables/households.py b/activitysim/abm/tables/households.py index e0a42f63b..142da7a01 100644 --- a/activitysim/abm/tables/households.py +++ b/activitysim/abm/tables/households.py @@ -1,21 +1,27 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import io import logging -from builtins import range import pandas as pd -from activitysim.core import inject, mem, pipeline, tracing +from activitysim.abm.misc import override_hh_ids +from activitysim.abm.tables.util import simple_table_join +from activitysim.core import tracing, workflow from activitysim.core.input import read_input_table logger = logging.getLogger(__name__) -@inject.table() -def households(households_sample_size, override_hh_ids, trace_hh_id): +@workflow.table +def households(state: workflow.State) -> pd.DataFrame: + households_sample_size = state.settings.households_sample_size + _override_hh_ids = override_hh_ids(state) + _trace_hh_id = state.settings.trace_hh_id - df_full = read_input_table("households") + df_full = read_input_table(state, "households") tot_households = df_full.shape[0] logger.info("full household list contains %s households" % tot_households) @@ -23,35 +29,32 @@ def households(households_sample_size, override_hh_ids, trace_hh_id): households_sliced = False # only using households listed in override_hh_ids - if override_hh_ids is not None: - + if _override_hh_ids is not None: # trace_hh_id will not used if it is not in list of override_hh_ids logger.info( - "override household list containing %s households" % len(override_hh_ids) + "override household list containing %s households" % len(_override_hh_ids) ) - df = df_full[df_full.index.isin(override_hh_ids)] + df = df_full[df_full.index.isin(_override_hh_ids)] households_sliced = True - if df.shape[0] < len(override_hh_ids): + if df.shape[0] < len(_override_hh_ids): logger.info( "found %s of %s households in override household list" - % (df.shape[0], len(override_hh_ids)) + % (df.shape[0], len(_override_hh_ids)) ) if df.shape[0] == 0: raise RuntimeError("No override households found in store") # if we are tracing hh exclusively - elif trace_hh_id and households_sample_size == 1: - + elif _trace_hh_id and households_sample_size == 1: # df contains only trace_hh (or empty if not in full store) - df = tracing.slice_ids(df_full, trace_hh_id) + df = tracing.slice_ids(df_full, _trace_hh_id) households_sliced = True # if we need a subset of full store elif tot_households > households_sample_size > 0: - logger.info( "sampling %s of %s households" % (households_sample_size, tot_households) ) @@ -66,27 +69,30 @@ def households(households_sample_size, override_hh_ids, trace_hh_id): if the pipeline rng's base_seed is changed """ - prng = pipeline.get_rn_generator().get_external_rng("sample_households") + prng = state.get_rn_generator().get_external_rng("sample_households") df = df_full.take( prng.choice(len(df_full), size=households_sample_size, replace=False) ) households_sliced = True # if tracing and we missed trace_hh in sample, but it is in full store - if trace_hh_id and trace_hh_id not in df.index and trace_hh_id in df_full.index: + if ( + _trace_hh_id + and _trace_hh_id not in df.index + and _trace_hh_id in df_full.index + ): # replace first hh in sample with trace_hh logger.debug( "replacing household %s with %s in household sample" - % (df.index[0], trace_hh_id) + % (df.index[0], _trace_hh_id) ) - df_hh = df_full.loc[[trace_hh_id]] + df_hh = df_full.loc[[_trace_hh_id]] df = pd.concat([df_hh, df[1:]]) else: df = df_full - # persons table - inject.add_injectable("households_sliced", households_sliced) + state.set("households_sliced", households_sliced) if "sample_rate" not in df.columns: if households_sample_size == 0: @@ -102,27 +108,34 @@ def households(households_sample_size, override_hh_ids, trace_hh_id): logger.debug("households.info:\n" + buffer.getvalue()) # replace table function with dataframe - inject.add_table("households", df) + state.add_table("households", df) - pipeline.get_rn_generator().add_channel("households", df) + state.get_rn_generator().add_channel("households", df) - tracing.register_traceable_table("households", df) - if trace_hh_id: - tracing.trace_df(df, "raw.households", warn_if_empty=True) + state.tracing.register_traceable_table("households", df) + if _trace_hh_id: + state.tracing.trace_df(df, "raw.households", warn_if_empty=True) return df # this is a common merge so might as well define it once here and use it -@inject.table() -def households_merged(households, land_use, accessibility): - return inject.merge_tables( - households.name, tables=[households, land_use, accessibility] +@workflow.temp_table +def households_merged( + state: workflow.State, + households: pd.DataFrame, + land_use: pd.DataFrame, + accessibility: pd.DataFrame, +) -> pd.DataFrame: + + households = simple_table_join( + households, + land_use, + left_on="home_zone_id", ) - - -inject.broadcast("households", "persons", cast_index=True, onto_on="household_id") - -# this would be accessibility around the household location - be careful with -# this one as accessibility at some other location can also matter -inject.broadcast("accessibility", "households", cast_index=True, onto_on="home_zone_id") + households = simple_table_join( + households, + accessibility, + left_on="home_zone_id", + ) + return households diff --git a/activitysim/abm/tables/landuse.py b/activitysim/abm/tables/landuse.py index 1161bfe5d..9abc0c2e7 100644 --- a/activitysim/abm/tables/landuse.py +++ b/activitysim/abm/tables/landuse.py @@ -1,27 +1,38 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import io import logging -from activitysim.core import config, inject +import numpy as np +import pandas as pd + +from activitysim.core import workflow +from activitysim.core.exceptions import MissingInputTableDefinition from activitysim.core.input import read_input_table +from activitysim.core.los import Network_LOS +from activitysim.core.skim_dictionary import SkimDict logger = logging.getLogger(__name__) -@inject.table() -def land_use(): - - df = read_input_table("land_use") +@workflow.table +def land_use(state: workflow.State): + df = read_input_table(state, "land_use") - sharrow_enabled = config.setting("sharrow", False) + sharrow_enabled = state.settings.sharrow if sharrow_enabled: + err_msg = ( + "a zero-based land_use index is required for sharrow,\n" + "try adding `recode_pipeline_columns: true` to your settings file." + ) # when using sharrow, the land use file must be organized (either in raw # form or via recoding) so that the index is zero-based and contiguous - assert df.index.is_monotonic_increasing - assert df.index[0] == 0 - assert df.index[-1] == len(df.index) - 1 - assert df.index.dtype.kind == "i" + assert df.index.is_monotonic_increasing, err_msg + assert df.index[0] == 0, err_msg + assert df.index[-1] == len(df.index) - 1, err_msg + assert df.index.dtype.kind == "i", err_msg # try to make life easy for everybody by keeping everything in canonical order # but as long as coalesce_pipeline doesn't sort tables it coalesces, it might not stay in order @@ -33,20 +44,38 @@ def land_use(): buffer = io.StringIO() df.info(buf=buffer) logger.debug("land_use.info:\n" + buffer.getvalue()) - - # replace table function with dataframe - inject.add_table("land_use", df) - return df -inject.broadcast("land_use", "households", cast_index=True, onto_on="home_zone_id") - - -@inject.table() -def land_use_taz(): - - df = read_input_table("land_use_taz") +@workflow.table +def land_use_taz(state: workflow.State): + try: + df = read_input_table(state, "land_use_taz") + except MissingInputTableDefinition: + # if the land_use_taz table is not given explicitly in the settings, + # we will construct our best approximation of the table by collecting + # a sorted list of unique TAZ ids found in the land_use table of MAZs. + # In nearly all cases this should be good enough, unless the model + # includes TAZs without MAZs (e.g. external stations) or for some + # reason wants TAZs in some not-sorted ordering. + land_use = state.get_dataframe("land_use") + if "TAZ" not in land_use: + raise + logger.warning( + "no land_use_taz defined in input_table_list, constructing " + "from discovered TAZ values in land_use" + ) + unique_tazs = np.unique(land_use["TAZ"]) + if state.settings.recode_pipeline_columns: + df = pd.Series( + unique_tazs, + name="_original_TAZ", + index=pd.RangeIndex(unique_tazs.size, name="TAZ"), + ).to_frame() + else: + df = pd.DataFrame( + index=pd.Index(unique_tazs, name="TAZ"), + ) if not df.index.is_monotonic_increasing: df = df.sort_index() @@ -57,6 +86,6 @@ def land_use_taz(): logger.debug("land_use_taz.info:\n" + buffer.getvalue()) # replace table function with dataframe - inject.add_table("land_use_taz", df) + state.add_table("land_use_taz", df) return df diff --git a/activitysim/abm/tables/persons.py b/activitysim/abm/tables/persons.py index a3d3804cf..8825ebe84 100644 --- a/activitysim/abm/tables/persons.py +++ b/activitysim/abm/tables/persons.py @@ -1,31 +1,34 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import io import logging import pandas as pd -from activitysim.core import inject, pipeline, tracing +from activitysim.abm.tables.util import simple_table_join +from activitysim.core import workflow from activitysim.core.input import read_input_table logger = logging.getLogger(__name__) -def read_raw_persons(households): - - df = read_input_table("persons") +def read_raw_persons(state, households): + df = read_input_table(state, "persons") - if inject.get_injectable("households_sliced", False): + if state.get_injectable("households_sliced", False): # keep only persons in the sampled households df = df[df.household_id.isin(households.index)] return df -@inject.table() -def persons(households, trace_hh_id): - - df = read_raw_persons(households) +@workflow.table +def persons(state: workflow.State) -> pd.DataFrame: + households = state.get_dataframe("households") + trace_hh_id = state.settings.trace_hh_id + df = read_raw_persons(state, households) logger.info("loaded persons %s" % (df.shape,)) buffer = io.StringIO() @@ -33,13 +36,13 @@ def persons(households, trace_hh_id): logger.debug("persons.info:\n" + buffer.getvalue()) # replace table function with dataframe - inject.add_table("persons", df) + state.add_table("persons", df) - pipeline.get_rn_generator().add_channel("persons", df) + state.get_rn_generator().add_channel("persons", df) - tracing.register_traceable_table("persons", df) + state.tracing.register_traceable_table("persons", df) if trace_hh_id: - tracing.trace_df(df, "raw.persons", warn_if_empty=True) + state.tracing.trace_df(df, "raw.persons", warn_if_empty=True) logger.debug(f"{len(df.household_id.unique())} unique household_ids in persons") logger.debug(f"{len(households.index.unique())} unique household_ids in households") @@ -49,7 +52,7 @@ def persons(households, trace_hh_id): persons_without_households = ~df.household_id.isin(households.index) if persons_without_households.any(): logger.error( - f"{persons_without_households.sum()} persons out of {len(persons)} without households\n" + f"{persons_without_households.sum()} persons out of {len(df)} without households\n" f"{pd.Series({'person_id': persons_without_households.index.values})}" ) raise RuntimeError( @@ -71,21 +74,37 @@ def persons(households, trace_hh_id): return df -# another common merge for persons -@inject.table() +@workflow.temp_table def persons_merged( - persons, households, land_use, accessibility, disaggregate_accessibility + state: workflow.State, + persons: pd.DataFrame, + land_use: pd.DataFrame, + households: pd.DataFrame, + accessibility: pd.DataFrame, + disaggregate_accessibility: pd.DataFrame = None, ): - - if not disaggregate_accessibility.to_frame().empty: - tables = [ + n_persons = len(persons) + households = simple_table_join( + households, + land_use, + left_on="home_zone_id", + ) + households = simple_table_join( + households, + accessibility, + left_on="home_zone_id", + ) + persons = simple_table_join( + persons, + households, + left_on="household_id", + ) + if disaggregate_accessibility is not None and not disaggregate_accessibility.empty: + persons = simple_table_join( persons, - households, - land_use, - accessibility, disaggregate_accessibility, - ] - else: - tables = [persons, households, land_use, accessibility] - - return inject.merge_tables(persons.name, tables=tables) + left_on="person_id", + ) + if n_persons != len(persons): + raise RuntimeError("number of persons changed") + return persons diff --git a/activitysim/abm/tables/shadow_pricing.py b/activitysim/abm/tables/shadow_pricing.py index 396cf7c56..1b28883df 100644 --- a/activitysim/abm/tables/shadow_pricing.py +++ b/activitysim/abm/tables/shadow_pricing.py @@ -1,16 +1,22 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import ctypes import logging import multiprocessing import time from collections import OrderedDict +from typing import Any, Literal import numpy as np import pandas as pd +from activitysim.abm.tables.size_terms import size_terms as get_size_terms from activitysim.abm.tables.size_terms import tour_destination_size_terms -from activitysim.core import config, inject, logit, tracing, util +from activitysim.core import logit, tracing, util, workflow +from activitysim.core.configuration import PydanticReadable +from activitysim.core.configuration.logit import TourLocationComponentSettings from activitysim.core.input import read_input_table logger = logging.getLogger(__name__) @@ -84,10 +90,67 @@ def size_table_name(model_selector): return "%s_destination_size" % model_selector -class ShadowPriceCalculator(object): +class ShadowPriceSettings(PydanticReadable, extra="forbid"): + """Settings used for shadow pricing.""" + + shadow_pricing_models: dict[str, str] | None = None + """List model_selectors and model_names of models that use shadow pricing. + This list identifies which size_terms to preload which must be done in single process mode, so + predicted_size tables can be scaled to population""" + + LOAD_SAVED_SHADOW_PRICES: bool = True + """Global switch to enable/disable loading of saved shadow prices. + + This is ignored if global use_shadow_pricing switch is False + """ + + MAX_ITERATIONS: int = 5 + """Number of shadow price iterations for cold start.""" + + MAX_ITERATIONS_SAVED: int = 1 + """Number of shadow price iterations for warm start. + + A warm start means saved shadow_prices were found in a file and loaded.""" + + SIZE_THRESHOLD: float = 10 + """ignore criteria for zones smaller than size_threshold""" + + PERCENT_TOLERANCE: float = 5 + """zone passes if modeled is within percent_tolerance of predicted_size""" + + FAIL_THRESHOLD: float = 10 + """max percentage of zones allowed to fail""" + + SHADOW_PRICE_METHOD: Literal["ctramp", "daysim", "simulation"] = "ctramp" + + DAMPING_FACTOR: float = 1 + """ctramp-style damping factor""" + + SCALE_SIZE_TABLE: bool = False + + DAYSIM_ABSOLUTE_TOLERANCE: float = 50 + DAYSIM_PERCENT_TOLERANCE: float = 10 + + TARGET_THRESHOLD: float = 20 + """ignore criteria for zones smaller than target_threshold (total employmnet or enrollment)""" + + workplace_segmentation_targets: dict[str, str] | None = None + school_segmentation_targets: dict[str, str] | None = None + + WRITE_ITERATION_CHOICES: bool = False + + SEGMENT_TO_NAME: dict[str, str] = { + "school": "school_segment", + "workplace": "income_segment", + } # pydantic uses deep copy, so mutable default value is ok here + """Mapping from model_selector to persons_segment_name.""" + + +class ShadowPriceCalculator: def __init__( self, - model_settings, + state: workflow.State, + model_settings: TourLocationComponentSettings, num_processes, shared_data=None, shared_data_lock=None, @@ -112,14 +175,14 @@ def __init__( """ self.num_processes = num_processes - self.use_shadow_pricing = bool(config.setting("use_shadow_pricing")) + self.use_shadow_pricing = bool(state.settings.use_shadow_pricing) self.saved_shadow_price_file_path = ( None # set by read_saved_shadow_prices if loaded ) - self.model_selector = model_settings["MODEL_SELECTOR"] + self.model_selector = model_settings.MODEL_SELECTOR - if (self.num_processes > 1) and not config.setting("fail_fast"): + if (self.num_processes > 1) and not state.settings.fail_fast: # if we are multiprocessing, then fail_fast should be true or we will wait forever for failed processes logger.warning( "deprecated combination of multiprocessing and not fail_fast" @@ -128,24 +191,24 @@ def __init__( "Shadow pricing requires fail_fast setting in multiprocessing mode" ) - self.segment_ids = model_settings["SEGMENT_IDS"] + self.segment_ids = model_settings.SEGMENT_IDS # - modeled_size (set by call to set_choices/synchronize_modeled_size) self.modeled_size = None if self.use_shadow_pricing: - self.shadow_settings = config.read_model_settings("shadow_pricing.yaml") + self.shadow_settings = ShadowPriceSettings.read_settings_file( + state.filesystem, "shadow_pricing.yaml" + ) - for k in self.shadow_settings: - logger.debug( - "shadow_settings %s: %s" % (k, self.shadow_settings.get(k)) - ) + for k, k_value in self.shadow_settings: + logger.debug(f"shadow_settings {k}: {k_value}") - full_model_run = config.setting("households_sample_size") == 0 + full_model_run = state.settings.households_sample_size == 0 if ( self.use_shadow_pricing and not full_model_run - and self.shadow_settings["SHADOW_PRICE_METHOD"] != "simulation" + and self.shadow_settings.SHADOW_PRICE_METHOD != "simulation" ): # ctramp and daysim methods directly compare desired and modeled size to compute shadow prices. # desination size terms are scaled in add_size_tables only for full model runs @@ -158,7 +221,7 @@ def __init__( if ( self.use_shadow_pricing and self.model_selector not in ["workplace", "school"] - and self.shadow_settings["SHADOW_PRICE_METHOD"] == "simulation" + and self.shadow_settings.SHADOW_PRICE_METHOD == "simulation" ): logger.warning( "Shadow price simulation method is only implemented for workplace and school." @@ -167,9 +230,7 @@ def __init__( self.use_shadow_pricing = False # - destination_size_table (desired_size) - self.desired_size = inject.get_table( - size_table_name(self.model_selector) - ).to_frame() + self.desired_size = state.get_dataframe(size_table_name(self.model_selector)) self.desired_size = self.desired_size.sort_index() assert ( @@ -198,21 +259,21 @@ def __init__( # - load saved shadow_prices (if available) and set max_iterations accordingly if self.use_shadow_pricing: self.shadow_prices = None - self.shadow_price_method = self.shadow_settings["SHADOW_PRICE_METHOD"] + self.shadow_price_method = self.shadow_settings.SHADOW_PRICE_METHOD assert self.shadow_price_method in ["daysim", "ctramp", "simulation"] # ignore convergence criteria for zones smaller than target_threshold - self.target_threshold = self.shadow_settings["TARGET_THRESHOLD"] + self.target_threshold = self.shadow_settings.TARGET_THRESHOLD - if self.shadow_settings["LOAD_SAVED_SHADOW_PRICES"]: + if self.shadow_settings.LOAD_SAVED_SHADOW_PRICES: # read_saved_shadow_prices logs error and returns None if file not found - self.shadow_prices = self.read_saved_shadow_prices(model_settings) + self.shadow_prices = self.read_saved_shadow_prices( + state, model_settings + ) if self.shadow_prices is None: - self.max_iterations = self.shadow_settings.get("MAX_ITERATIONS", 5) + self.max_iterations = self.shadow_settings.MAX_ITERATIONS else: - self.max_iterations = self.shadow_settings.get( - "MAX_ITERATIONS_SAVED", 1 - ) + self.max_iterations = self.shadow_settings.MAX_ITERATIONS_SAVED # initial_shadow_price if we did not load if self.shadow_prices is None: @@ -237,19 +298,18 @@ def __init__( if ( self.use_shadow_pricing - and self.shadow_settings["SHADOW_PRICE_METHOD"] == "simulation" + and self.shadow_settings.SHADOW_PRICE_METHOD == "simulation" ): - assert self.model_selector in ["workplace", "school"] self.target = {} - land_use = inject.get_table("land_use").to_frame() + land_use = state.get_dataframe("land_use") if self.model_selector == "workplace": - employment_targets = self.shadow_settings[ - "workplace_segmentation_targets" - ] + employment_targets = ( + self.shadow_settings.workplace_segmentation_targets or {} + ) assert ( - employment_targets is not None + employment_targets ), "Need to supply workplace_segmentation_targets in shadow_pricing.yaml" for segment, target in employment_targets.items(): @@ -262,9 +322,9 @@ def __init__( self.target[segment] = land_use[target] elif self.model_selector == "school": - school_targets = self.shadow_settings["school_segmentation_targets"] + school_targets = self.shadow_settings.school_segmentation_targets or {} assert ( - school_targets is not None + school_targets ), "Need to supply school_segmentation_targets in shadow_pricing.yaml" for segment, target in school_targets.items(): @@ -276,7 +336,9 @@ def __init__( ), f"{target} is not in landuse columns: {land_use.columns}" self.target[segment] = land_use[target] - def read_saved_shadow_prices(self, model_settings): + def read_saved_shadow_prices( + self, state: workflow.State, model_settings: TourLocationComponentSettings + ): """ Read saved shadow_prices from csv file in data_dir (so-called warm start) returns None if no saved shadow price file name specified or named file not found @@ -293,12 +355,10 @@ def read_saved_shadow_prices(self, model_settings): shadow_prices = None # - load saved shadow_prices - saved_shadow_price_file_name = model_settings.get( - "SAVED_SHADOW_PRICE_TABLE_NAME" - ) + saved_shadow_price_file_name = model_settings.SAVED_SHADOW_PRICE_TABLE_NAME if saved_shadow_price_file_name: # FIXME - where should we look for this file? - file_path = config.data_file_path( + file_path = state.filesystem.get_data_file_path( saved_shadow_price_file_name, mandatory=False ) if file_path: @@ -479,7 +539,6 @@ def set_choices(self, choices, segment_ids): modeled_size = pd.DataFrame(index=self.desired_size.index) for seg_name in self.desired_size: - segment_choices = choices[(segment_ids == self.segment_ids[seg_name])] modeled_size[seg_name] = segment_choices.value_counts() @@ -512,7 +571,7 @@ def set_choices(self, choices, segment_ids): self.choices_synced = self.synchronize_choices(choice_merged) - def check_fit(self, iteration): + def check_fit(self, state: workflow.State, iteration): """ Check convergence criteria fit of modeled_size to target desired_size (For multiprocessing, this is global modeled_size summed across processes, @@ -539,18 +598,17 @@ def check_fit(self, iteration): # - convergence criteria for check_fit # ignore convergence criteria for zones smaller than size_threshold - size_threshold = self.shadow_settings["SIZE_THRESHOLD"] + size_threshold = self.shadow_settings.SIZE_THRESHOLD # zone passes if modeled is within percent_tolerance of desired_size - percent_tolerance = self.shadow_settings["PERCENT_TOLERANCE"] + percent_tolerance = self.shadow_settings.PERCENT_TOLERANCE # max percentage of zones allowed to fail - fail_threshold = self.shadow_settings["FAIL_THRESHOLD"] + fail_threshold = self.shadow_settings.FAIL_THRESHOLD # option to write out choices by iteration for each person to trace folder - write_choices = self.shadow_settings.get("WRITE_ITERATION_CHOICES", False) + write_choices = self.shadow_settings.WRITE_ITERATION_CHOICES if write_choices: self.choices_by_iteration[iteration] = self.choices_synced - if self.shadow_settings["SHADOW_PRICE_METHOD"] != "simulation": - + if self.shadow_settings.SHADOW_PRICE_METHOD != "simulation": modeled_size = self.modeled_size desired_size = self.desired_size @@ -638,7 +696,7 @@ def check_fit(self, iteration): logger.info("\nshadow_pricing num_fail\n%s" % self.num_fail) if write_choices: - tracing.write_csv( + state.tracing.write_csv( self.choices_by_iteration, "%s_choices_by_shadow_price_iteration" % self.model_selector, transpose=False, @@ -646,7 +704,7 @@ def check_fit(self, iteration): return converged - def update_shadow_prices(self): + def update_shadow_prices(self, state): """ Adjust shadow_prices based on relative values of modeled_size and desired_size. @@ -677,7 +735,7 @@ def update_shadow_prices(self): assert self.use_shadow_pricing - shadow_price_method = self.shadow_settings["SHADOW_PRICE_METHOD"] + shadow_price_method = self.shadow_settings.SHADOW_PRICE_METHOD # can't update_shadow_prices until after first iteration # modeled_size should have been set by set_choices at end of previous iteration @@ -693,7 +751,7 @@ def update_shadow_prices(self): // else // shadowPrice *= scaledSize; """ - damping_factor = self.shadow_settings["DAMPING_FACTOR"] + damping_factor = self.shadow_settings.DAMPING_FACTOR assert 0 < damping_factor <= 1 new_scale_factor = self.desired_size / self.modeled_size @@ -725,8 +783,8 @@ def update_shadow_prices(self): shadow_price = shadow_price + log(np.maximum(target, 0.01) / np.maximum(modeled, 0.01)) """ # FIXME should these be the same as PERCENT_TOLERANCE and FAIL_THRESHOLD above? - absolute_tolerance = self.shadow_settings["DAYSIM_ABSOLUTE_TOLERANCE"] - percent_tolerance = self.shadow_settings["DAYSIM_PERCENT_TOLERANCE"] / 100.0 + absolute_tolerance = self.shadow_settings.DAYSIM_ABSOLUTE_TOLERANCE + percent_tolerance = self.shadow_settings.DAYSIM_PERCENT_TOLERANCE / 100.0 assert 0 <= percent_tolerance <= 1 target = np.where( @@ -769,14 +827,12 @@ def update_shadow_prices(self): shadow_price_j = -999 resimulate n workers from zone j, with n = int(workers_j-emp_j/sum(emp_j*workers_j)) """ - percent_tolerance = self.shadow_settings["PERCENT_TOLERANCE"] + percent_tolerance = self.shadow_settings.PERCENT_TOLERANCE sampled_persons = pd.DataFrame() - persons_merged = inject.get_table("persons_merged").to_frame() + persons_merged = state.get_dataframe("persons_merged") # need to join the segment to the choices to sample correct persons - segment_to_name_dict = self.shadow_settings.get( - "", default_segment_to_name_dict - ) + segment_to_name_dict = self.shadow_settings.SEGMENT_TO_NAME segment_name = segment_to_name_dict[self.model_selector] if type(self.choices_synced) != pd.DataFrame: @@ -843,7 +899,7 @@ def update_shadow_prices(self): index=choices.index, ) # using ActivitySim's RNG to make choices for repeatability - current_sample, rands = logit.make_choices(probs) + current_sample, rands = logit.make_choices(state, probs) current_sample = current_sample[current_sample == 1] if len(sampled_persons) == 0: @@ -857,15 +913,13 @@ def update_shadow_prices(self): raise RuntimeError("unknown SHADOW_PRICE_METHOD %s" % shadow_price_method) def dest_size_terms(self, segment): - assert segment in self.segment_ids size_term_adjustment = 1 utility_adjustment = 0 if self.use_shadow_pricing: - - shadow_price_method = self.shadow_settings["SHADOW_PRICE_METHOD"] + shadow_price_method = self.shadow_settings.SHADOW_PRICE_METHOD if shadow_price_method == "ctramp": size_term_adjustment = self.shadow_prices[segment] @@ -891,7 +945,7 @@ def dest_size_terms(self, segment): return size_terms - def write_trace_files(self, iteration): + def write_trace_files(self, state: workflow.State, iteration): """ Write trace files for this iteration Writes desired_size, modeled_size, and shadow_prices tables @@ -907,20 +961,20 @@ def write_trace_files(self, iteration): logger.info("write_trace_files iteration %s" % iteration) if iteration == 1: # write desired_size only on first iteration, as it doesn't change - tracing.write_csv( + state.tracing.write_csv( self.desired_size, "shadow_price_%s_desired_size" % self.model_selector, transpose=False, ) - tracing.write_csv( + state.tracing.write_csv( self.modeled_size, "shadow_price_%s_modeled_size_%s" % (self.model_selector, iteration), transpose=False, ) if self.use_shadow_pricing: - tracing.write_csv( + state.tracing.write_csv( self.shadow_prices, "shadow_price_%s_shadow_prices_%s" % (self.model_selector, iteration), transpose=False, @@ -976,7 +1030,6 @@ def buffers_for_shadow_pricing(shadow_pricing_info): data_buffers = {} for block_key, block_shape in block_shapes.items(): - # buffer_size must be int, not np.int64 buffer_size = util.iprod(block_shape) @@ -1002,7 +1055,7 @@ def buffers_for_shadow_pricing(shadow_pricing_info): return data_buffers -def buffers_for_shadow_pricing_choice(shadow_pricing_choice_info): +def buffers_for_shadow_pricing_choice(state, shadow_pricing_choice_info): """ Same as above buffers_for_shadow_price function except now we need to store the actual choices for the simulation based shadow pricing method @@ -1026,7 +1079,6 @@ def buffers_for_shadow_pricing_choice(shadow_pricing_choice_info): data_buffers = {} for block_key, block_shape in block_shapes.items(): - # buffer_size must be int, not np.int64 buffer_size = util.iprod(block_shape) @@ -1049,7 +1101,7 @@ def buffers_for_shadow_pricing_choice(shadow_pricing_choice_info): data_buffers[block_key + "_choice"] = shared_data_buffer - persons = read_input_table("persons") + persons = read_input_table(state, "persons") sp_choice_df = persons.reset_index()["person_id"].to_frame() # declare a shared Array with data from sp_choice_df @@ -1162,7 +1214,9 @@ def shadow_price_data_from_buffers(data_buffers, shadow_pricing_info, model_sele return np.frombuffer(data.get_obj(), dtype=dtype).reshape(shape), data.get_lock() -def load_shadow_price_calculator(model_settings): +def load_shadow_price_calculator( + state: workflow.State, model_settings: TourLocationComponentSettings +): """ Initialize ShadowPriceCalculator for model_selector (e.g. school or workplace) @@ -1171,27 +1225,30 @@ def load_shadow_price_calculator(model_settings): Parameters ---------- - model_settings : dict + state : workflow.State + model_settings : TourLocationComponentSettings Returns ------- spc : ShadowPriceCalculator """ + if not isinstance(model_settings, TourLocationComponentSettings): + model_settings = TourLocationComponentSettings.model_validate(model_settings) - num_processes = inject.get_injectable("num_processes", 1) + num_processes = state.get_injectable("num_processes", 1) - model_selector = model_settings["MODEL_SELECTOR"] + model_selector = model_settings.MODEL_SELECTOR # - get shared_data from data_buffers (if multiprocessing) - data_buffers = inject.get_injectable("data_buffers", None) + data_buffers = state.get_injectable("data_buffers", None) if data_buffers is not None: logger.info("Using existing data_buffers for shadow_price") # - shadow_pricing_info - shadow_pricing_info = inject.get_injectable("shadow_pricing_info", None) + shadow_pricing_info = state.get_injectable("shadow_pricing_info", None) assert shadow_pricing_info is not None - shadow_pricing_choice_info = inject.get_injectable( + shadow_pricing_choice_info = state.get_injectable( "shadow_pricing_choice_info", None ) assert shadow_pricing_choice_info is not None @@ -1218,6 +1275,7 @@ def load_shadow_price_calculator(model_settings): # - ShadowPriceCalculator spc = ShadowPriceCalculator( + state, model_settings, num_processes, data, @@ -1230,17 +1288,12 @@ def load_shadow_price_calculator(model_settings): return spc -# first define add_size_tables as an orca step with no scale argument at all. -@inject.step() -def add_size_tables(disaggregate_suffixes): - return _add_size_tables(disaggregate_suffixes) - - -# then define _add_size_tables as a second method which also offers an optional -# default argument to not scale sizes. This is used only in disaggregate -# accessibility (for now) and is not called via orca. We need to do this to -# avoid having to create a new orca variable for the scale argument. -def _add_size_tables(disaggregate_suffixes, scale=True): +@workflow.step +def add_size_tables( + state: workflow.State, + disaggregate_suffixes: dict[str, Any], + scale: bool = True, +) -> None: """ inject tour_destination_size_terms tables for each model_selector (e.g. school, workplace) @@ -1260,10 +1313,12 @@ def _add_size_tables(disaggregate_suffixes, scale=True): (size table) counts. """ - use_shadow_pricing = bool(config.setting("use_shadow_pricing")) + use_shadow_pricing = bool(state.settings.use_shadow_pricing) - shadow_settings = config.read_model_settings("shadow_pricing.yaml") - shadow_pricing_models = shadow_settings.get("shadow_pricing_models") + shadow_settings = ShadowPriceSettings.read_settings_file( + state.filesystem, "shadow_pricing.yaml" + ) + shadow_pricing_models = shadow_settings.shadow_pricing_models if shadow_pricing_models is None: logger.warning( @@ -1273,7 +1328,7 @@ def _add_size_tables(disaggregate_suffixes, scale=True): # probably ought not scale if not shadow_pricing (breaks partial sample replicability) # but this allows compatability with existing CTRAMP behavior... - scale_size_table = shadow_settings.get("SCALE_SIZE_TABLE", False) + scale_size_table = shadow_settings.SCALE_SIZE_TABLE # Suffixes for disaggregate accessibilities # Set default here incase None is explicitly passed @@ -1295,41 +1350,41 @@ def _add_size_tables(disaggregate_suffixes, scale=True): # since these are scaled to model size, they have to be created while single-process for model_selector, model_name in shadow_pricing_models.items(): - - model_settings = config.read_model_settings(model_name) + model_settings = TourLocationComponentSettings.read_settings_file( + state.filesystem, model_name + ) if suffix is not None and roots: model_settings = util.suffix_tables_in_settings( model_settings, suffix, roots ) - assert model_selector == model_settings["MODEL_SELECTOR"] + assert model_selector == model_settings.MODEL_SELECTOR - assert ( - "SEGMENT_IDS" in model_settings - ), f"missing SEGMENT_IDS setting in {model_name} model_settings" - segment_ids = model_settings["SEGMENT_IDS"] - chooser_table_name = model_settings["CHOOSER_TABLE_NAME"] - chooser_segment_column = model_settings["CHOOSER_SEGMENT_COLUMN_NAME"] - - choosers_df = inject.get_table(chooser_table_name).to_frame() - if "CHOOSER_FILTER_COLUMN_NAME" in model_settings: + # assert ( + # "SEGMENT_IDS" in model_settings + # ), f"missing SEGMENT_IDS setting in {model_name} model_settings" + segment_ids = model_settings.SEGMENT_IDS + chooser_table_name = model_settings.CHOOSER_TABLE_NAME + chooser_segment_column = model_settings.CHOOSER_SEGMENT_COLUMN_NAME + + choosers_df = state.get_dataframe(chooser_table_name) + if model_settings.CHOOSER_FILTER_COLUMN_NAME: choosers_df = choosers_df[ - choosers_df[model_settings["CHOOSER_FILTER_COLUMN_NAME"]] != 0 + choosers_df[model_settings.CHOOSER_FILTER_COLUMN_NAME] != 0 ] # - raw_desired_size - land_use = inject.get_table("land_use") - size_terms = inject.get_injectable("size_terms") + land_use = state.get_dataframe("land_use") + size_terms = get_size_terms(state) raw_size = tour_destination_size_terms(land_use, size_terms, model_selector) assert set(raw_size.columns) == set(segment_ids.keys()) - full_model_run = config.setting("households_sample_size") == 0 + full_model_run = state.settings.households_sample_size == 0 scale_size_table = scale and scale_size_table if (use_shadow_pricing and full_model_run) and scale_size_table: - # need to scale destination size terms because ctramp and daysim approaches directly # compare modeled size and target size when computing shadow prices # Does not apply to simulation approach which compares proportions. @@ -1387,10 +1442,10 @@ def _add_size_tables(disaggregate_suffixes, scale=True): scaled_size.index.is_monotonic_increasing ), f"size table {size_table_name(model_selector)} not is_monotonic_increasing" - inject.add_table(size_table_name(model_selector), scaled_size, replace=True) + state.add_table(size_table_name(model_selector), scaled_size) -def get_shadow_pricing_info(): +def get_shadow_pricing_info(state): """ return dict with info about dtype and shapes of desired and modeled size tables @@ -1404,17 +1459,18 @@ def get_shadow_pricing_info(): block_shapes: dict {: } """ - land_use = inject.get_table("land_use") - size_terms = inject.get_injectable("size_terms") + land_use = state.get_dataframe("land_use") + size_terms = state.get_injectable("size_terms") - shadow_settings = config.read_model_settings("shadow_pricing.yaml") + shadow_settings = ShadowPriceSettings.read_settings_file( + state.filesystem, "shadow_pricing.yaml" + ) # shadow_pricing_models is dict of {: } - shadow_pricing_models = shadow_settings.get("shadow_pricing_models", {}) + shadow_pricing_models = shadow_settings.shadow_pricing_models or {} blocks = OrderedDict() for model_selector in shadow_pricing_models: - sp_rows = len(land_use) sp_cols = len(size_terms[size_terms.model_selector == model_selector]) @@ -1429,12 +1485,12 @@ def get_shadow_pricing_info(): } for k in shadow_pricing_info: - logger.debug("shadow_pricing_info %s: %s" % (k, shadow_pricing_info.get(k))) + logger.debug(f"shadow_pricing_info {k}: {shadow_pricing_info.get(k)}") return shadow_pricing_info -def get_shadow_pricing_choice_info(): +def get_shadow_pricing_choice_info(state): """ return dict with info about dtype and shapes of desired and modeled size tables @@ -1448,16 +1504,17 @@ def get_shadow_pricing_choice_info(): block_shapes: dict {: } """ - persons = read_input_table("persons") + persons = read_input_table(state, "persons") - shadow_settings = config.read_model_settings("shadow_pricing.yaml") + shadow_settings = ShadowPriceSettings.read_settings_file( + state.filesystem, "shadow_pricing.yaml" + ) # shadow_pricing_models is dict of {: } - shadow_pricing_models = shadow_settings.get("shadow_pricing_models", {}) + shadow_pricing_models = shadow_settings.shadow_pricing_models or {} blocks = OrderedDict() for model_selector in shadow_pricing_models: - # each person will have a work or school location choice sp_rows = len(persons) @@ -1474,27 +1531,25 @@ def get_shadow_pricing_choice_info(): for k in shadow_pricing_choice_info: logger.debug( - "shadow_pricing_choice_info %s: %s" % (k, shadow_pricing_choice_info.get(k)) + f"shadow_pricing_choice_info {k}: {shadow_pricing_choice_info.get(k)}" ) return shadow_pricing_choice_info -@inject.injectable(cache=True) -def shadow_pricing_info(): - +@workflow.cached_object +def shadow_pricing_info(state: workflow.State): # when multiprocessing with shared data mp_tasks has to call network_los methods # get_shadow_pricing_info() and buffers_for_shadow_pricing() logger.debug("loading shadow_pricing_info injectable") - return get_shadow_pricing_info() - + return get_shadow_pricing_info(state) -@inject.injectable(cache=True) -def shadow_pricing_choice_info(): +@workflow.cached_object +def shadow_pricing_choice_info(state: workflow.State): # when multiprocessing with shared data mp_tasks has to call network_los methods # get_shadow_pricing_info() and buffers_for_shadow_pricing() logger.debug("loading shadow_pricing_choice_info injectable") - return get_shadow_pricing_choice_info() + return get_shadow_pricing_choice_info(state) diff --git a/activitysim/abm/tables/size_terms.py b/activitysim/abm/tables/size_terms.py index e31b004e5..531a0b7d7 100644 --- a/activitysim/abm/tables/size_terms.py +++ b/activitysim/abm/tables/size_terms.py @@ -1,18 +1,19 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -import numpy as np import pandas as pd -from activitysim.core import config, inject +from activitysim.core import workflow logger = logging.getLogger(__name__) -@inject.injectable(cache=True) -def size_terms(): - f = config.config_file_path("destination_choice_size_terms.csv") +@workflow.cached_object +def size_terms(state: workflow.State): + f = state.filesystem.get_config_file_path("destination_choice_size_terms.csv") return pd.read_csv(f, comment="#", index_col="segment") @@ -57,7 +58,7 @@ def tour_destination_size_terms(land_use, size_terms, model_selector): Parameters ---------- - land_use - pipeline table + land_use - pd.DataFrame size_terms - pipeline table model_selector - str @@ -78,8 +79,6 @@ def tour_destination_size_terms(land_use, size_terms, model_selector): ... """ - land_use = land_use.to_frame() - # don't count on land_use being sorted by index if not land_use.index.is_monotonic_increasing: land_use = land_use.sort_index() diff --git a/activitysim/abm/tables/skims.py b/activitysim/abm/tables/skims.py index 39440b29f..af310c30b 100644 --- a/activitysim/abm/tables/skims.py +++ b/activitysim/abm/tables/skims.py @@ -3,8 +3,7 @@ import logging -from activitysim.core import config, inject, los -from activitysim.core.pathbuilder import TransitVirtualPathBuilder +from activitysim.core import los, workflow logger = logging.getLogger(__name__) @@ -13,33 +12,38 @@ """ -@inject.injectable(cache=True) -def network_los_preload(): - +@workflow.cached_object +def network_los_preload(state: workflow.State) -> los.Network_LOS: # when multiprocessing with shared data mp_tasks has to call network_los methods # allocate_shared_skim_buffers() and load_shared_data() BEFORE network_los.load_data() logger.debug("loading network_los_without_data_loaded injectable") - nw_los = los.Network_LOS() - + nw_los = los.Network_LOS(state) return nw_los -@inject.injectable(cache=True) -def network_los(network_los_preload): - +@workflow.cached_object +def network_los( + state: workflow.State, # noqa: F841 + network_los_preload: los.Network_LOS, +) -> los.Network_LOS: logger.debug("loading network_los injectable") network_los_preload.load_data() return network_los_preload -@inject.injectable(cache=True) -def skim_dict(network_los): - return network_los.get_default_skim_dict() - +@workflow.cached_object +def skim_dict( + state: workflow.State, # noqa: F841 + network_los: los.Network_LOS, +): + result = network_los.get_default_skim_dict() + return result -@inject.injectable() -def log_settings(): +@workflow.cached_object +def log_settings( + state: workflow.State, # noqa: F841 +): # abm settings to log on startup return [ "households_sample_size", diff --git a/activitysim/abm/tables/table_dict.py b/activitysim/abm/tables/table_dict.py index 2b1cb9086..12894516c 100644 --- a/activitysim/abm/tables/table_dict.py +++ b/activitysim/abm/tables/table_dict.py @@ -1,10 +1,12 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging from collections import OrderedDict from activitysim.abm.models.util import canonical_ids as cid -from activitysim.core import inject +from activitysim.core import workflow logger = logging.getLogger(__name__) @@ -14,14 +16,14 @@ """ -@inject.injectable() -def rng_channels(): +@workflow.cached_object +def rng_channels(state: workflow.State): return cid.RANDOM_CHANNELS -@inject.injectable() -def traceable_tables(): +@workflow.cached_object +def traceable_tables(state: workflow.State): # names of all traceable tables ordered by dependency on household_id # e.g. 'persons' has to be registered AFTER 'households' @@ -29,20 +31,14 @@ def traceable_tables(): return cid.TRACEABLE_TABLES -@inject.injectable() -def traceable_table_indexes(): +@workflow.cached_object +def traceable_table_indexes(state: workflow.State): # traceable_table_indexes is OrderedDict {: } # so we can find first registered table to slice by ref_col return OrderedDict() -@inject.injectable() -def traceable_table_ids(): - # traceable_table_ids is dict {: [, ]} - return dict() - - -@inject.injectable() -def canonical_table_index_names(): +@workflow.cached_object +def canonical_table_index_names(state: workflow.State): # traceable_table_ids is dict {: [, ]} return cid.CANONICAL_TABLE_INDEX_NAMES diff --git a/activitysim/abm/tables/time_windows.py b/activitysim/abm/tables/time_windows.py index 1a6279173..af639e669 100644 --- a/activitysim/abm/tables/time_windows.py +++ b/activitysim/abm/tables/time_windows.py @@ -1,21 +1,24 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -import os import numpy as np import pandas as pd -from activitysim.core import config, inject from activitysim.core import timetable as tt +from activitysim.core import workflow logger = logging.getLogger(__name__) -@inject.injectable(cache=True) -def tdd_alts(): +@workflow.cached_object +def tdd_alts(state: workflow.State) -> pd.DataFrame: # right now this file just contains the start and end hour - file_path = config.config_file_path("tour_departure_and_duration_alternatives.csv") + file_path = state.filesystem.get_config_file_path( + "tour_departure_and_duration_alternatives.csv" + ) df = pd.read_csv(file_path) df["duration"] = df.end - df.start @@ -26,9 +29,8 @@ def tdd_alts(): return df -@inject.injectable(cache=True) -def tdd_alt_segments(): - +@workflow.cached_object +def tdd_alt_segments(state: workflow.State) -> pd.DataFrame: # tour_purpose,time_period,start,end # work,EA,3,5 # work,AM,6,8 @@ -36,12 +38,11 @@ def tdd_alt_segments(): # school,PM,15,17 # school,EV,18,22 - file_path = config.config_file_path( + file_path = state.filesystem.get_config_file_path( "tour_departure_and_duration_segments.csv", mandatory=False ) if file_path: - df = pd.read_csv(file_path, comment="#") # - NARROW @@ -54,18 +55,20 @@ def tdd_alt_segments(): return df -@inject.table() -def person_windows(persons, tdd_alts): - +@workflow.table +def person_windows( + state: workflow.State, + persons: pd.DataFrame, + tdd_alts: pd.DataFrame, +) -> pd.DataFrame: df = tt.create_timetable_windows(persons, tdd_alts) - inject.add_table("person_windows", df) - return df -@inject.injectable() -def timetable(person_windows, tdd_alts): - - logging.debug("@inject timetable") - return tt.TimeTable(person_windows.to_frame(), tdd_alts, person_windows.name) +@workflow.cached_object +def timetable( + state: workflow.State, person_windows: pd.DataFrame, tdd_alts: pd.DataFrame +) -> tt.TimeTable: + logging.debug("@workflow.cached_object timetable") + return tt.TimeTable(person_windows, tdd_alts, "person_windows") diff --git a/activitysim/abm/tables/tours.py b/activitysim/abm/tables/tours.py index a3bd8a811..b23cfaa28 100644 --- a/activitysim/abm/tables/tours.py +++ b/activitysim/abm/tables/tours.py @@ -1,15 +1,23 @@ # ActivitySim # See full license in LICENSE.txt. -import logging +from __future__ import annotations -from activitysim.core import inject +import logging -logger = logging.getLogger(__name__) +import pandas as pd +from activitysim.abm.tables.util import simple_table_join +from activitysim.core import workflow -@inject.table() -def tours_merged(tours, persons_merged): - return inject.merge_tables(tours.name, tables=[tours, persons_merged]) +logger = logging.getLogger(__name__) -inject.broadcast("persons_merged", "tours", cast_index=True, onto_on="person_id") +@workflow.temp_table +def tours_merged( + state: workflow.State, tours: pd.DataFrame, persons_merged: pd.DataFrame +): + return simple_table_join( + tours, + persons_merged, + left_on="person_id", + ) diff --git a/activitysim/abm/tables/trips.py b/activitysim/abm/tables/trips.py index 890cbd6f5..ee9963586 100644 --- a/activitysim/abm/tables/trips.py +++ b/activitysim/abm/tables/trips.py @@ -1,15 +1,15 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -from activitysim.core import inject +from activitysim.abm.tables.util import simple_table_join +from activitysim.core import workflow logger = logging.getLogger(__name__) -@inject.table() -def trips_merged(trips, tours): - return inject.merge_tables(trips.name, tables=[trips, tours]) - - -inject.broadcast("tours", "trips", cast_index=True, onto_on="tour_id") +@workflow.temp_table +def trips_merged(state: workflow.State, trips, tours): + return simple_table_join(trips, tours, "tour_id") diff --git a/activitysim/abm/tables/util.py b/activitysim/abm/tables/util.py new file mode 100644 index 000000000..0b43126a6 --- /dev/null +++ b/activitysim/abm/tables/util.py @@ -0,0 +1,44 @@ +from __future__ import annotations + +import pandas as pd + + +def simple_table_join( + left: pd.DataFrame, right: pd.DataFrame, left_on: str +) -> pd.DataFrame: + """ + A simple table join. + + The left table should usually have a many-to-one (or a one-to-one) + relationship with the right table (so, exactly one row on the right table + matches each row in the left). This is not enforced and the code can + still work with many-to-many join, but ActivitySim by convention includes + only many-to-one joins. + + This function mostly mirrors the usual pandas `join`, except when there + are duplicate column names in the right-side table, in which case those + duplciate columns are silently dropped instead of getting renamed. + + Parameters + ---------- + left, right : DataFrame + left_on : str + The name of the column of the left + + Returns + ------- + DataFrame + """ + # all the column names in both left and right + intersection = set(left.columns).intersection(right.columns) + intersection.discard(left_on) # intersection is ok if it's the join key + + # duplicate column names in the right-side table are ignored. + right = right.drop(intersection, axis=1) + + return pd.merge( + left, + right, + left_on=left_on, + right_index=True, + ) diff --git a/activitysim/abm/tables/vehicles.py b/activitysim/abm/tables/vehicles.py index fdc886a25..c998c9abe 100644 --- a/activitysim/abm/tables/vehicles.py +++ b/activitysim/abm/tables/vehicles.py @@ -1,14 +1,19 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -from activitysim.core import inject, pipeline, tracing +import pandas as pd + +from activitysim.abm.tables.util import simple_table_join +from activitysim.core import workflow logger = logging.getLogger(__name__) -@inject.table() -def vehicles(households): +@workflow.table +def vehicles(state: workflow.State, households: pd.DataFrame): """Creates the vehicles table and load it as an injectable This method initializes the `vehicles` table, where the number of rows @@ -16,7 +21,7 @@ def vehicles(households): Parameters ---------- - households : orca.DataFrameWrapper + households : DataFrame Returns ------- @@ -24,9 +29,7 @@ def vehicles(households): """ # initialize vehicles table - vehicles = households.to_frame().loc[ - households.index.repeat(households["auto_ownership"]) - ] + vehicles = households.loc[households.index.repeat(households["auto_ownership"])] vehicles = vehicles.reset_index()[["household_id"]] vehicles["vehicle_num"] = vehicles.groupby("household_id").cumcount() + 1 @@ -35,34 +38,27 @@ def vehicles(households): vehicles.set_index("vehicle_id", inplace=True) # replace table function with dataframe - inject.add_table("vehicles", vehicles) + state.add_table("vehicles", vehicles) - pipeline.get_rn_generator().add_channel("vehicles", vehicles) - tracing.register_traceable_table("vehicles", vehicles) + state.get_rn_generator().add_channel("vehicles", vehicles) + state.tracing.register_traceable_table("vehicles", vehicles) return vehicles -@inject.table() -def vehicles_merged(vehicles, households_merged): +@workflow.temp_table +def vehicles_merged( + state: workflow.State, vehicles: pd.DataFrame, households_merged: pd.DataFrame +): """Augments the vehicles table with household attributes Parameters ---------- - vehicles : orca.DataFrameWrapper - households_merged : orca.DataFrameWrapper + vehicles : DataFrame + households_merged : DataFrame Returns ------- vehicles_merged : pandas.DataFrame """ - - vehicles_merged = inject.merge_tables( - vehicles.name, tables=[vehicles, households_merged] - ) - return vehicles_merged - - -inject.broadcast( - "households_merged", "vehicles", cast_index=True, onto_on="household_id" -) + return simple_table_join(vehicles, households_merged, "household_id") diff --git a/activitysim/abm/test/conftest.py b/activitysim/abm/test/conftest.py deleted file mode 100644 index f14a69149..000000000 --- a/activitysim/abm/test/conftest.py +++ /dev/null @@ -1,55 +0,0 @@ -import os - -import orca -import pandas as pd -import pytest - -from activitysim.core import pipeline -from activitysim.core.los import Network_LOS as los - - -@pytest.fixture(scope="module") -def initialize_pipeline( - module: str, tables: dict[str, str], initialize_network_los: bool -) -> pipeline.Pipeline: - test_dir = os.path.join("test", module) - configs_dir = os.path.join(test_dir, "configs") - data_dir = os.path.join(test_dir, "data") - output_dir = os.path.join(test_dir, "output") - - if os.path.isdir(configs_dir): - orca.add_injectable("configs_dir", configs_dir) - - if os.path.isdir(data_dir): - orca.add_injectable("data_dir", data_dir) - - if os.path.isdir(test_dir): - if not os.path.isdir(output_dir): - os.mkdir(output_dir) - orca.add_injectable("output_dir", output_dir) - - # Read in the input test dataframes - for dataframe_name, idx_name in tables.items(): - df = pd.read_csv( - os.path.join("test", module, "data", f"{dataframe_name}.csv"), - index_col=idx_name, - ) - orca.add_table(dataframe_name, df) - - if initialize_network_los: - net_los = los() - net_los.load_data() - orca.add_injectable("network_los", net_los) - - # Add the dataframes to the pipeline - pipeline.open_pipeline() - pipeline.add_checkpoint(module) - pipeline.close_pipeline() - - # By convention, this method needs to yield something - yield pipeline._PIPELINE - - # pytest teardown code - pipeline.close_pipeline() - pipeline_file_path = os.path.join(output_dir, "pipeline.h5") - os.unlink(pipeline_file_path) diff --git a/activitysim/abm/test/run_multi_zone_mp.py b/activitysim/abm/test/run_multi_zone_mp.py index dacd1b310..f4751864b 100644 --- a/activitysim/abm/test/run_multi_zone_mp.py +++ b/activitysim/abm/test/run_multi_zone_mp.py @@ -6,7 +6,7 @@ import pandas.testing as pdt from test_multi_zone import example_path, regress_3_zone, setup_dirs -from activitysim.core import inject, mp_tasks, pipeline +from activitysim.core import mp_tasks # set the max households for all tests (this is to limit memory use on travis) HOUSEHOLDS_SAMPLE_SIZE = 100 @@ -17,20 +17,20 @@ def test_mp_run(): configs_dir = [example_path("configs_3_zone"), example_path("configs")] data_dir = example_path("data_3") - setup_dirs(configs_dir, data_dir) - inject.add_injectable("settings_file_name", "settings_mp.yaml") + state = setup_dirs(configs_dir, data_dir) + state.add_injectable("settings_file_name", "settings_mp.yaml") - run_list = mp_tasks.get_run_list() + run_list = mp_tasks.get_run_list(state) mp_tasks.print_run_list(run_list) # do this after config.handle_standard_args, as command line args may override injectables injectables = ["data_dir", "configs_dir", "output_dir", "settings_file_name"] - injectables = {k: inject.get_injectable(k) for k in injectables} + injectables = {k: state.get_injectable(k) for k in injectables} mp_tasks.run_multiprocess(run_list, injectables) - pipeline.open_pipeline("_") + pipeline.checkpoint.restore("_") regress_3_zone() - pipeline.close_pipeline() + pipeline.checkpoint.close_store() if __name__ == "__main__": diff --git a/activitysim/abm/test/test_agg_accessibility.py b/activitysim/abm/test/test_agg_accessibility.py new file mode 100644 index 000000000..4015e35cb --- /dev/null +++ b/activitysim/abm/test/test_agg_accessibility.py @@ -0,0 +1,63 @@ +from __future__ import annotations + +import logging + +import pytest + +from activitysim.abm import models # noqa: F401 +from activitysim.abm.models.accessibility import ( + AccessibilitySettings, + compute_accessibility, +) +from activitysim.core import workflow + +logger = logging.getLogger(__name__) + + +@pytest.fixture +def state() -> workflow.State: + state = workflow.create_example("prototype_mtc", temp=True) + + state.settings.models = [ + "initialize_landuse", + "initialize_households", + "compute_accessibility", + ] + state.settings.chunk_size = 0 + state.settings.sharrow = False + + state.run.by_name("initialize_landuse") + state.run.by_name("initialize_households") + return state + + +def test_simple_agg_accessibility(state, dataframe_regression): + state.run.by_name("compute_accessibility") + df = state.get_dataframe("accessibility") + dataframe_regression.check(df, basename="simple_agg_accessibility") + + +def test_agg_accessibility_explicit_chunking(state, dataframe_regression): + # set top level settings + state.settings.chunk_size = 0 + state.settings.sharrow = False + state.settings.chunk_training_mode = "explicit" + + # read the accessibility settings and override the explicit chunk size to 5 + model_settings = AccessibilitySettings.read_settings_file( + state.filesystem, "accessibility.yaml" + ) + model_settings.explicit_chunk = 5 + + compute_accessibility( + state, + state.get_dataframe("land_use"), + state.get_dataframe("accessibility"), + state.get("network_los"), + model_settings, + model_settings_file_name="accessibility.yaml", + trace_label="compute_accessibility", + output_table_name="accessibility", + ) + df = state.get_dataframe("accessibility") + dataframe_regression.check(df, basename="simple_agg_accessibility") diff --git a/activitysim/abm/test/test_agg_accessibility/simple_agg_accessibility.csv b/activitysim/abm/test/test_agg_accessibility/simple_agg_accessibility.csv new file mode 100644 index 000000000..9c7340509 --- /dev/null +++ b/activitysim/abm/test/test_agg_accessibility/simple_agg_accessibility.csv @@ -0,0 +1,26 @@ +zone_id,auPkRetail,auPkTotal,auOpRetail,auOpTotal,trPkRetail,trPkTotal,trOpRetail,trOpTotal,nmRetail,nmTotal +0,9.3164942696213568,12.615175743409841,9.3074367804092777,12.607849383502469,7.7642635203141968,11.145248204314596,7.6930860038975712,11.037285967769643,8.1373609284815895,11.726242204251774 +1,9.3168979433052908,12.613460949773618,9.3046270180951538,12.604209004116514,7.5113009238919934,10.950045517942753,7.4270600345597773,10.763101915020352,8.1427168965425558,11.724186002096861 +2,9.2932169855583542,12.580014484201365,9.2862416670099286,12.574901916285086,7.3409752547469438,10.787608449410779,7.2526778560064189,10.574953629615715,8.0503691347033364,11.478912540319461 +3,9.3573494887919679,12.630894217760538,9.3482485710113998,12.623585758033322,7.8733268188651611,11.224171200372194,7.8143652246183066,11.135415940164263,8.3711974981452286,11.775230687719375 +4,9.3435505366989382,12.585069456547828,9.3332621841590289,12.574553613617503,7.5893556698506153,11.082549781423353,7.5495574089217605,11.027965011367975,8.3180592569770333,11.431764418643981 +5,9.2713502507871883,12.523449294093886,9.2657623133569711,12.519697725868093,7.3138724828278905,10.504310979303222,7.0683412975590123,10.251789948959422,7.8382412773559516,11.023737623179843 +6,9.2931944176067329,12.528401489853936,9.2863728392168525,12.52041616561077,7.6419100510389839,10.805002739363189,7.6078784435600868,10.752509743759392,8.0169148075612071,11.108804747288168 +7,9.2678442418060758,12.497146015767587,9.2621330948390046,12.489886065239302,7.5469338237309387,10.834136335989049,7.5014237921006828,10.779320100783975,7.9819505240836239,11.052152868115712 +8,9.1895029665940431,12.42603649432956,9.184035053974922,12.415459802362889,7.188751493522151,10.303186212218705,7.149056566233341,10.260609523175923,7.4156298027129628,10.75866342061707 +9,9.1860041373516861,12.40389009503904,9.1807619960868472,12.396344385917818,7.3793358243378222,10.548674769786773,7.3065218950712447,10.495921674032259,7.5678261562359008,10.694411485785926 +10,9.3200926649609794,12.519242143782318,9.3150950606590026,12.511758212122075,7.4557019917326173,10.875601348026509,7.3483680514593566,10.762777861942512,8.2282865778153074,11.171156639341758 +11,9.3515905766957719,12.600777214457102,9.3402871188008589,12.590072565945791,7.9459651463751646,11.204374985337394,7.8463256139030397,11.074533943328571,8.420517825501955,11.618972560237365 +12,9.3475957875421258,12.610940370257774,9.3373286290969943,12.601590484236365,7.7678939430595539,11.12100647463696,7.691841626412466,11.012476514764131,8.4227464698159356,11.742390115774514 +13,9.3272875917488811,12.61272185509814,9.3195224070699076,12.605842856331305,7.9829144769225122,11.205704184915069,7.9147382904661239,11.09630520845371,8.2936062476422165,11.736593006351654 +14,9.2849351600384047,12.581337475036822,9.2777982690366851,12.575463251817387,7.6566141377182202,10.99707556494131,7.5743974507217873,10.914272271565647,8.0004874415095593,11.541814468777813 +15,9.3121586675513246,12.554715357067975,9.3098515403136357,12.554250369775952,7.0161536446213777,10.534220863424366,6.9452061747018057,10.442447038350544,8.2473032556208885,11.373742456242004 +16,9.2525132367431926,12.480891480108502,9.2515129069576805,12.479315380270007,6.6611995964557575,9.84475304878708,6.5626838669177907,9.7353179337959279,7.6671416984161134,10.785216324011325 +17,9.2493602579025467,12.438990589690656,9.2489616305878055,12.440034826308484,7.0859296965612435,10.25268796871535,6.997755995841743,10.137302158694951,7.5966361055753779,10.414585321652353 +18,9.1690294854761021,12.357455449640511,9.169914338241016,12.359583887732027,6.0886234793709892,9.29599202765759,5.9074690455933911,9.1012171904995682,7.0886934502985248,9.8650009904318754 +19,9.2217425939140494,12.420066322549278,9.2188633511870108,12.41597699421243,6.636652875558787,9.8019044704452742,6.5908204292849781,9.7532014746502398,7.4941970400287934,10.367677845680188 +20,9.3219157803287924,12.515866541333265,9.3251764782856572,12.518960683082542,7.428996554006094,10.580037613397844,7.3427336309884295,10.454321473639835,8.1084359799671955,11.011608267238865 +21,9.2296522071417968,12.543187229493718,9.2196001636905649,12.535205063776825,7.1509239235248376,10.713897532287987,6.9410839531896329,10.463984552764911,7.6379082836081578,11.319586635314565 +22,9.1161497032019767,12.433017912353973,9.1078484333015215,12.426054879223617,6.2116445474246689,9.7707806110979902,6.1182229314057297,9.6877986968503578,6.8876395653603648,10.656699616249735 +23,9.2437967585247165,12.55097406396871,9.2300864314796112,12.541349601021635,7.3227417893504727,10.850763529501046,7.1151212727695663,10.577146937229784,7.7136276931827608,11.346711473571119 +24,9.1982619817999431,12.494596324310164,9.1914370661962863,12.490871942939226,7.2966461173380575,10.729604500822386,7.1803656319823519,10.549488525934116,7.6165179958947329,11.016222756734685 diff --git a/activitysim/abm/test/test_misc/setup_utils.py b/activitysim/abm/test/test_misc/setup_utils.py index d844dcc5f..65deed212 100644 --- a/activitysim/abm/test/test_misc/setup_utils.py +++ b/activitysim/abm/test/test_misc/setup_utils.py @@ -1,5 +1,7 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import os @@ -12,7 +14,7 @@ import pytest import yaml -from activitysim.core import config, inject, pipeline, random, tracing +from activitysim.core import config, random, tracing, workflow # set the max households for all tests (this is to limit memory use on travis) HOUSEHOLDS_SAMPLE_SIZE = 50 @@ -37,36 +39,33 @@ def setup_dirs(ancillary_configs_dir=None, data_dir=None): # ancillary_configs_dir is used by run_mp to test multiprocess - test_pipeline_configs_dir = os.path.join(os.path.dirname(__file__), "configs") + # test_pipeline_configs_dir = os.path.join(os.path.dirname(__file__), "configs") example_configs_dir = example_path("configs") - configs_dir = [test_pipeline_configs_dir, example_configs_dir] + # configs_dir = [test_pipeline_configs_dir, example_configs_dir] + configs_dir = [example_configs_dir] if ancillary_configs_dir is not None: configs_dir = [ancillary_configs_dir] + configs_dir - inject.add_injectable("configs_dir", configs_dir) - output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) if not data_dir: data_dir = example_path("data") - inject.add_injectable("data_dir", data_dir) - - inject.clear_cache() + state = workflow.State.make_default( + configs_dir=configs_dir, + output_dir=output_dir, + data_dir=data_dir, + ) - tracing.config_logger() + state.logging.config_logger() - tracing.delete_output_files("csv") - tracing.delete_output_files("txt") - tracing.delete_output_files("yaml") - tracing.delete_output_files("omx") + state.tracing.delete_output_files("csv") + state.tracing.delete_output_files("txt") + state.tracing.delete_output_files("yaml") + state.tracing.delete_output_files("omx") - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() + return state def close_handlers(): @@ -77,15 +76,3 @@ def close_handlers(): logger.handlers = [] logger.propagate = True logger.setLevel(logging.NOTSET) - - -def inject_settings(**kwargs): - - settings = config.read_settings_file("settings.yaml", mandatory=True) - - for k in kwargs: - settings[k] = kwargs[k] - - inject.add_injectable("settings", settings) - - return settings diff --git a/activitysim/abm/test/test_misc/test_load_cached_accessibility.py b/activitysim/abm/test/test_misc/test_load_cached_accessibility.py index 721b441d4..60288d67c 100644 --- a/activitysim/abm/test/test_misc/test_load_cached_accessibility.py +++ b/activitysim/abm/test/test_misc/test_load_cached_accessibility.py @@ -1,5 +1,7 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import os @@ -12,9 +14,9 @@ import pytest import yaml -from activitysim.core import config, inject, pipeline, random, tracing +from activitysim.core import config, configuration, random, tracing, workflow -from .setup_utils import inject_settings, setup_dirs +from .setup_utils import setup_dirs # set the max households for all tests (this is to limit memory use on travis) HOUSEHOLDS_SAMPLE_SIZE = 50 @@ -35,11 +37,6 @@ def example_path(dirname): return pkg_resources.resource_filename("activitysim", resource) -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() - - def close_handlers(): loggers = logging.Logger.manager.loggerDict for name in loggers: @@ -50,30 +47,27 @@ def close_handlers(): def test_load_cached_accessibility(): - - inject.clear_cache() - inject.reinject_decorated_tables() - data_dir = [os.path.join(os.path.dirname(__file__), "data"), example_path("data")] - setup_dirs(data_dir=data_dir) + state = setup_dirs(data_dir=data_dir) # # add OPTIONAL ceched table accessibility to input_table_list # activitysim.abm.tables.land_use.accessibility() will load this table if listed here # presumably independently calculated outside activitysim or a cached copy created during a previous run # - settings = config.read_settings_file("settings.yaml", mandatory=True) - input_table_list = settings.get("input_table_list") + settings = state.settings + input_table_list = settings.input_table_list input_table_list.append( - { - "tablename": "accessibility", - "filename": "cached_accessibility.csv", - "index_col": "zone_id", - } - ) - inject_settings( - households_sample_size=HOUSEHOLDS_SAMPLE_SIZE, input_table_list=input_table_list + configuration.InputTable.model_validate( + { + "tablename": "accessibility", + "filename": "cached_accessibility.csv", + "index_col": "zone_id", + } + ) ) + state.settings.households_sample_size = HOUSEHOLDS_SAMPLE_SIZE + state.settings.input_table_list = input_table_list _MODELS = [ "initialize_landuse", @@ -82,15 +76,13 @@ def test_load_cached_accessibility(): ] try: - pipeline.run(models=_MODELS, resume_after=None) + state.run(models=_MODELS, resume_after=None) - accessibility_df = pipeline.get_table("accessibility") + accessibility_df = state.checkpoint.load_dataframe("accessibility") assert "auPkRetail" in accessibility_df finally: - pipeline.close_pipeline() - inject.clear_cache() close_handlers() diff --git a/activitysim/abm/test/test_misc/test_misc.py b/activitysim/abm/test/test_misc/test_misc.py index f4daf7250..2c47f6e87 100644 --- a/activitysim/abm/test/test_misc/test_misc.py +++ b/activitysim/abm/test/test_misc/test_misc.py @@ -2,38 +2,22 @@ # See full license in LICENSE.txt. import os -import pytest - -from activitysim.core import inject - # The following import statement has the side-effect of registering injectables: -from .. import __init__ +import activitysim.abm # noqa: F401 +from activitysim.core import configuration, workflow def test_misc(): - - inject.clear_cache() - - with pytest.raises(RuntimeError) as excinfo: - inject.get_injectable("configs_dir") - assert "directory does not exist" in str(excinfo.value) - - with pytest.raises(RuntimeError) as excinfo: - inject.get_injectable("data_dir") - assert "directory does not exist" in str(excinfo.value) - - with pytest.raises(RuntimeError) as excinfo: - inject.get_injectable("output_dir") - assert "directory does not exist" in str(excinfo.value) - configs_dir = os.path.join(os.path.dirname(__file__), "configs_test_misc") - inject.add_injectable("configs_dir", configs_dir) + data_dir = os.path.join(os.path.dirname(__file__), "data") - settings = inject.get_injectable("settings") - assert isinstance(settings, dict) + state = workflow.State().initialize_filesystem( + configs_dir=configs_dir, + data_dir=data_dir, + ) - data_dir = os.path.join(os.path.dirname(__file__), "data") - inject.add_injectable("data_dir", data_dir) + state.load_settings() + assert isinstance(state.settings, configuration.Settings) # default values if not specified in settings - assert inject.get_injectable("chunk_size") == 0 + assert state.settings.chunk_size == 0 diff --git a/activitysim/abm/test/test_misc/test_summarize.py b/activitysim/abm/test/test_misc/test_summarize.py deleted file mode 100644 index 6f76e1f2c..000000000 --- a/activitysim/abm/test/test_misc/test_summarize.py +++ /dev/null @@ -1,79 +0,0 @@ -import logging -import os - -import pandas as pd -import pytest - -# import models is necessary to initalize the model steps with orca -from activitysim.abm import models -from activitysim.core import config, pipeline - - -# Used by conftest.py initialize_pipeline method -@pytest.fixture(scope="module") -def module() -> str: - """ - A pytest fixture that returns the data folder location. - :return: folder location for any necessary data to initialize the tests - """ - return "summarize" - - -# Used by conftest.py initialize_pipeline method -@pytest.fixture(scope="module") -def tables() -> dict[str, str]: - """ - A pytest fixture that returns the "mock" tables to build pipeline dataframes. The - key-value pair is the name of the table and the index column. - :return: dict - """ - return { - "land_use": "zone_id", - "tours": "tour_id", - "trips": "trip_id", - "persons": "person_id", - "households": "household_id", - } - - -# Used by conftest.py initialize_pipeline method -# Set to true if you need to read skims into the pipeline -@pytest.fixture(scope="module") -def initialize_network_los() -> bool: - """ - A pytest boolean fixture indicating whether network skims should be read from the - fixtures test data folder. - :return: bool - """ - return True - - -def test_summarize(initialize_pipeline: pipeline.Pipeline, caplog): - # Run summarize model - caplog.set_level(logging.DEBUG) - pipeline.run(models=["summarize"]) - - # Retrieve output tables to check contents - model_settings = config.read_model_settings("summarize.yaml") - output_location = ( - model_settings["OUTPUT"] if "OUTPUT" in model_settings else "summaries" - ) - output_dir = config.output_file_path(output_location) - - # Check that households are counted correctly - households_count = pd.read_csv( - config.output_file_path(os.path.join(output_location, f"households_count.csv")) - ) - households = pd.read_csv(config.data_file_path("households.csv")) - assert int(households_count.iloc[0]) == len(households) - - # Check that bike trips are counted correctly - trips_by_mode_count = pd.read_csv( - config.output_file_path( - os.path.join(output_location, f"trips_by_mode_count.csv") - ) - ) - trips = pd.read_csv(config.data_file_path("trips.csv")) - assert int(trips_by_mode_count.BIKE.iloc[0]) == len( - trips[trips.trip_mode == "BIKE"] - ) diff --git a/activitysim/abm/test/test_misc/test_trip_departure_choice.py b/activitysim/abm/test/test_misc/test_trip_departure_choice.py index f36cf6df2..6d462c0bd 100644 --- a/activitysim/abm/test/test_misc/test_trip_departure_choice.py +++ b/activitysim/abm/test/test_misc/test_trip_departure_choice.py @@ -1,150 +1,152 @@ -import numpy as np -import pandas as pd -import pytest - -import activitysim.abm.models.trip_departure_choice as tdc -from activitysim.abm.models.util.trip import get_time_windows -from activitysim.core import los - -from .setup_utils import setup_dirs - - -@pytest.fixture(scope="module") -def trips(): - outbound_array = [True, True, False, False, False, True, True, False, False, True] - - trips = pd.DataFrame( - data={ - "tour_id": [1, 1, 2, 2, 2, 2, 2, 3, 3, 4], - "trip_duration": [2, 2, 7, 7, 7, 12, 12, 4, 4, 5], - "inbound_duration": [0, 0, 7, 7, 7, 0, 0, 4, 4, 5], - "main_leg_duration": [4, 4, 2, 2, 2, 2, 2, 1, 1, 2], - "outbound_duration": [2, 2, 0, 0, 0, 12, 12, 0, 0, 5], - "trip_count": [2, 2, 3, 3, 3, 2, 2, 2, 2, 1], - "trip_num": [1, 2, 1, 2, 3, 1, 2, 1, 2, 1], - "outbound": outbound_array, - "chunk_id": [1, 1, 2, 2, 2, 2, 2, 3, 3, 4], - "is_work": [ - True, - True, - False, - False, - False, - False, - False, - False, - False, - True, - ], - "is_school": [ - False, - False, - False, - False, - False, - False, - False, - True, - True, - False, - ], - "is_eatout": [ - False, - False, - True, - True, - True, - True, - True, - False, - False, - False, - ], - "start": [8, 8, 18, 18, 18, 18, 18, 24, 24, 19], - "end": [14, 14, 39, 39, 39, 39, 39, 29, 29, 26], - "origin": [3, 5, 15, 12, 24, 8, 17, 8, 9, 6], - "destination": [5, 9, 12, 24, 20, 17, 18, 9, 11, 14], - }, - index=range(10), - ) - - trips.index.name = "trip_id" - return trips - - -@pytest.fixture(scope="module") -def settings(): - return { - "skims_file": "skims.omx", - "skim_time_periods": {"labels": ["EA", "AM", "MD", "PM", "NT"]}, - } - - -@pytest.fixture(scope="module") -def model_spec(): - index = [ - "@(df['stop_time_duration'] * df['is_work'].astype(int)).astype(int)", - "@(df['stop_time_duration'] * df['is_school'].astype(int)).astype(int)", - "@(df['stop_time_duration'] * df['is_eatout'].astype(int)).astype(int)", - ] - - values = { - "inbound": [0.933020, 0.370260, 0.994840], - "outbound": [0.933020, 0.370260, 0.994840], - } - - return pd.DataFrame(index=index, data=values) - - -def test_build_patterns(trips): - time_windows = get_time_windows(48, 3) - patterns = tdc.build_patterns(trips, time_windows) - patterns = patterns.sort_values(["tour_id", "outbound", "trip_num"]) - - assert patterns.shape[0] == 34 - assert patterns.shape[1] == 6 - assert patterns.index.name == tdc.TOUR_LEG_ID - - output_columns = [ - tdc.TOUR_ID, - tdc.PATTERN_ID, - tdc.TRIP_NUM, - tdc.STOP_TIME_DURATION, - tdc.TOUR_ID, - tdc.OUTBOUND, - ] - - assert set(output_columns).issubset(patterns.columns) - - -def test_get_tour_legs(trips): - tour_legs = tdc.get_tour_legs(trips) - assert tour_legs.index.name == tdc.TOUR_LEG_ID - assert ( - np.unique(tour_legs[tdc.TOUR_ID].values).shape[0] - == np.unique(trips[tdc.TOUR_ID].values).shape[0] - ) - - -def test_generate_alternative(trips): - alts = tdc.generate_alternatives(trips, tdc.STOP_TIME_DURATION) - assert alts.shape[0] == 67 - assert alts.shape[1] == 1 - - assert alts.index.name == tdc.TRIP_ID - assert alts.columns[0] == tdc.STOP_TIME_DURATION - - pd.testing.assert_series_equal( - trips.groupby(trips.index)["trip_duration"].max(), - alts.groupby(alts.index)[tdc.STOP_TIME_DURATION].max(), - check_names=False, - ) - - -def test_apply_stage_two_model(model_spec, trips): - setup_dirs() - departures = tdc.apply_stage_two_model(model_spec, trips, 0, "TEST Trip Departure") - assert len(departures) == len(trips) - pd.testing.assert_index_equal(departures.index, trips.index) - - departures = pd.concat([trips, departures], axis=1) +# import numpy as np +# import pandas as pd +# import pytest +# +# import activitysim.abm.models.trip_departure_choice as tdc +# from activitysim.abm.models.util.trip import get_time_windows +# from activitysim.core import los +# +# from .setup_utils import setup_dirs +# +# +# @pytest.fixture(scope="module") +# def trips(): +# outbound_array = [True, True, False, False, False, True, True, False, False, True] +# +# trips = pd.DataFrame( +# data={ +# "tour_id": [1, 1, 2, 2, 2, 2, 2, 3, 3, 4], +# "trip_duration": [2, 2, 7, 7, 7, 12, 12, 4, 4, 5], +# "inbound_duration": [0, 0, 7, 7, 7, 0, 0, 4, 4, 5], +# "main_leg_duration": [4, 4, 2, 2, 2, 2, 2, 1, 1, 2], +# "outbound_duration": [2, 2, 0, 0, 0, 12, 12, 0, 0, 5], +# "trip_count": [2, 2, 3, 3, 3, 2, 2, 2, 2, 1], +# "trip_num": [1, 2, 1, 2, 3, 1, 2, 1, 2, 1], +# "outbound": outbound_array, +# "chunk_id": [1, 1, 2, 2, 2, 2, 2, 3, 3, 4], +# "is_work": [ +# True, +# True, +# False, +# False, +# False, +# False, +# False, +# False, +# False, +# True, +# ], +# "is_school": [ +# False, +# False, +# False, +# False, +# False, +# False, +# False, +# True, +# True, +# False, +# ], +# "is_eatout": [ +# False, +# False, +# True, +# True, +# True, +# True, +# True, +# False, +# False, +# False, +# ], +# "start": [8, 8, 18, 18, 18, 18, 18, 24, 24, 19], +# "end": [14, 14, 39, 39, 39, 39, 39, 29, 29, 26], +# "origin": [3, 5, 15, 12, 24, 8, 17, 8, 9, 6], +# "destination": [5, 9, 12, 24, 20, 17, 18, 9, 11, 14], +# }, +# index=range(10), +# ) +# +# trips.index.name = "trip_id" +# return trips +# +# +# @pytest.fixture(scope="module") +# def settings(): +# return { +# "skims_file": "skims.omx", +# "skim_time_periods": {"labels": ["EA", "AM", "MD", "PM", "NT"]}, +# } +# +# +# @pytest.fixture(scope="module") +# def model_spec(): +# index = [ +# "@(df['stop_time_duration'] * df['is_work'].astype(int)).astype(int)", +# "@(df['stop_time_duration'] * df['is_school'].astype(int)).astype(int)", +# "@(df['stop_time_duration'] * df['is_eatout'].astype(int)).astype(int)", +# ] +# +# values = { +# "inbound": [0.933020, 0.370260, 0.994840], +# "outbound": [0.933020, 0.370260, 0.994840], +# } +# +# return pd.DataFrame(index=index, data=values) +# +# +# def test_build_patterns(trips): +# time_windows = get_time_windows(48, 3) +# patterns = tdc.build_patterns(trips, time_windows) +# patterns = patterns.sort_values(["tour_id", "outbound", "trip_num"]) +# +# assert patterns.shape[0] == 34 +# assert patterns.shape[1] == 6 +# assert patterns.index.name == tdc.TOUR_LEG_ID +# +# output_columns = [ +# tdc.TOUR_ID, +# tdc.PATTERN_ID, +# tdc.TRIP_NUM, +# tdc.STOP_TIME_DURATION, +# tdc.TOUR_ID, +# tdc.OUTBOUND, +# ] +# +# assert set(output_columns).issubset(patterns.columns) +# +# +# def test_get_tour_legs(trips): +# tour_legs = tdc.get_tour_legs(trips) +# assert tour_legs.index.name == tdc.TOUR_LEG_ID +# assert ( +# np.unique(tour_legs[tdc.TOUR_ID].values).shape[0] +# == np.unique(trips[tdc.TOUR_ID].values).shape[0] +# ) +# +# +# def test_generate_alternative(trips): +# alts = tdc.generate_alternatives(trips, tdc.STOP_TIME_DURATION) +# assert alts.shape[0] == 67 +# assert alts.shape[1] == 1 +# +# assert alts.index.name == tdc.TRIP_ID +# assert alts.columns[0] == tdc.STOP_TIME_DURATION +# +# pd.testing.assert_series_equal( +# trips.groupby(trips.index)["trip_duration"].max(), +# alts.groupby(alts.index)[tdc.STOP_TIME_DURATION].max(), +# check_names=False, +# ) +# +# +# def test_apply_stage_two_model(state, model_spec, trips): +# setup_dirs() +# departures = tdc.apply_stage_two_model( +# state, model_spec, trips, 0, "TEST Trip Departure" +# ) +# assert len(departures) == len(trips) +# pd.testing.assert_index_equal(departures.index, trips.index) +# +# departures = pd.concat([trips, departures], axis=1) diff --git a/activitysim/abm/test/test_misc/test_trip_scheduling_choice.py b/activitysim/abm/test/test_misc/test_trip_scheduling_choice.py index a3f6ffdd9..24fdebde3 100644 --- a/activitysim/abm/test/test_misc/test_trip_scheduling_choice.py +++ b/activitysim/abm/test/test_misc/test_trip_scheduling_choice.py @@ -1,192 +1,199 @@ -import numpy as np -import pandas as pd -import pytest - -from activitysim.abm.models import trip_scheduling_choice as tsc -from activitysim.abm.tables.skims import skim_dict -from activitysim.core import los - -from .setup_utils import setup_dirs - - -@pytest.fixture(scope="module") -def tours(): - tours = pd.DataFrame( - data={ - "duration": [2, 44, 32, 12, 11, 16], - "num_outbound_stops": [2, 4, 0, 0, 1, 3], - "num_inbound_stops": [1, 0, 0, 2, 1, 2], - "tour_type": ["othdisc"] * 2 + ["eatout"] * 4, - "origin": [3, 10, 15, 23, 5, 8], - "destination": [5, 9, 12, 24, 20, 17], - tsc.LAST_OB_STOP: [1, 3, 0, 0, 12, 14], - tsc.FIRST_IB_STOP: [2, 0, 0, 4, 6, 20], - }, - index=range(6), - ) - - tours.index.name = "tour_id" - - tours[tsc.HAS_OB_STOPS] = tours[tsc.NUM_OB_STOPS] >= 1 - tours[tsc.HAS_IB_STOPS] = tours[tsc.NUM_IB_STOPS] >= 1 - - return tours - - -@pytest.fixture(scope="module") -def settings(): - return {"skims_file": "skims.omx", "skim_time_periods": {"labels": ["MD"]}} - - -@pytest.fixture(scope="module") -def model_spec(): - index = [ - "@(df['main_leg_duration']>df['duration']).astype(int)", - "@(df['main_leg_duration'] == 0)&(df['tour_type']=='othdiscr')", - "@(df['main_leg_duration'] == 1)&(df['tour_type']=='othdiscr')", - "@(df['main_leg_duration'] == 2)&(df['tour_type']=='othdiscr')", - "@(df['main_leg_duration'] == 3)&(df['tour_type']=='othdiscr')", - "@(df['main_leg_duration'] == 4)&(df['tour_type']=='othdiscr')", - "@df['tour_type']=='othdiscr'", - "@df['tour_type']=='eatout'", - "@df['tour_type']=='eatout'", - ] - - values = [ - -999, - -6.5884, - -5.0326, - -2.0526, - -1.0313, - -0.46489, - 0.060382, - -0.7508, - 0.53247, - ] - - return pd.DataFrame(index=index, data=values, columns=["stage_one"]) - - -@pytest.fixture(scope="module") -def skims(settings): - setup_dirs() - nw_los = los.Network_LOS() - nw_los.load_data() - skim_d = skim_dict(nw_los) - - od_skim_stack_wrapper = skim_d.wrap("origin", "destination") - do_skim_stack_wrapper = skim_d.wrap("destination", "origin") - obib_skim_stack_wrapper = skim_d.wrap(tsc.LAST_OB_STOP, tsc.FIRST_IB_STOP) - - skims = [od_skim_stack_wrapper, do_skim_stack_wrapper, obib_skim_stack_wrapper] - - return skims - - -@pytest.fixture(scope="module") -def locals_dict(skims): - return {"od_skims": skims[0], "do_skims": skims[1], "obib_skims": skims[2]} - - -def test_generate_schedule_alternatives(tours): - windows = tsc.generate_schedule_alternatives(tours) - assert windows.shape[0] == 296 - assert windows.shape[1] == 4 - - output_columns = [ - tsc.SCHEDULE_ID, - tsc.MAIN_LEG_DURATION, - tsc.OB_DURATION, - tsc.IB_DURATION, - ] - - assert set(output_columns).issubset(windows.columns) - - -def test_no_stops_patterns(tours): - no_stops = tours[ - (tours["num_outbound_stops"] == 0) & (tours["num_inbound_stops"] == 0) - ].copy() - windows = tsc.no_stops_patterns(no_stops) - - assert windows.shape[0] == 1 - assert windows.shape[1] == 3 - - output_columns = [tsc.MAIN_LEG_DURATION, tsc.OB_DURATION, tsc.IB_DURATION] - - assert set(output_columns).issubset(windows.columns) - - pd.testing.assert_series_equal( - windows[tsc.MAIN_LEG_DURATION], - no_stops["duration"], - check_names=False, - check_dtype=False, - ) - assert windows[windows[tsc.IB_DURATION] > 0].empty - assert windows[windows[tsc.OB_DURATION] > 0].empty - - -def test_one_way_stop_patterns(tours): - one_way_stops = tours[ - ( - (tours["num_outbound_stops"] > 0).astype(int) - + (tours["num_inbound_stops"] > 0).astype(int) - ) - == 1 - ].copy() - windows = tsc.stop_one_way_only_patterns(one_way_stops) - - assert windows.shape[0] == 58 - assert windows.shape[1] == 3 - - output_columns = [tsc.MAIN_LEG_DURATION, tsc.OB_DURATION, tsc.IB_DURATION] - - assert set(output_columns).issubset(windows.columns) - - inbound_options = windows[(windows[tsc.IB_DURATION] > 0)] - outbound_options = windows[windows[tsc.OB_DURATION] > 0] - assert np.unique(inbound_options.index).shape[0] == 1 - assert np.unique(outbound_options.index).shape[0] == 1 - - -def test_two_way_stop_patterns(tours): - two_way_stops = tours[ - ( - (tours["num_outbound_stops"] > 0).astype(int) - + (tours["num_inbound_stops"] > 0).astype(int) - ) - == 2 - ].copy() - windows = tsc.stop_two_way_only_patterns(two_way_stops) - - assert windows.shape[0] == 237 - assert windows.shape[1] == 3 - - output_columns = [tsc.MAIN_LEG_DURATION, tsc.OB_DURATION, tsc.IB_DURATION] - - assert set(output_columns).issubset(windows.columns) - - -def test_run_trip_scheduling_choice(model_spec, tours, skims, locals_dict): - """ - Test run the model. - """ - - out_tours = tsc.run_trip_scheduling_choice( - model_spec, tours, skims, locals_dict, 2, None, "PyTest Trip Scheduling" - ) - - assert len(tours) == len(out_tours) - pd.testing.assert_index_equal( - tours.sort_index().index, out_tours.sort_index().index - ) - - output_columns = [tsc.MAIN_LEG_DURATION, tsc.OB_DURATION, tsc.IB_DURATION] - - assert set(output_columns).issubset(out_tours.columns) - - assert len( - out_tours[ - out_tours[output_columns].sum(axis=1) == out_tours[tsc.TOUR_DURATION_COLUMN] - ] - ) == len(tours) +# import numpy as np +# import pandas as pd +# import pytest +# +# from activitysim.abm.models import trip_scheduling_choice as tsc +# from activitysim.abm.tables.skims import skim_dict +# from activitysim.core import los, workflow +# +# from .setup_utils import setup_dirs +# +# +# @pytest.fixture(scope="module") +# def tours(): +# tours = pd.DataFrame( +# data={ +# "duration": [2, 44, 32, 12, 11, 16], +# "num_outbound_stops": [2, 4, 0, 0, 1, 3], +# "num_inbound_stops": [1, 0, 0, 2, 1, 2], +# "tour_type": ["othdisc"] * 2 + ["eatout"] * 4, +# "origin": [3, 10, 15, 23, 5, 8], +# "destination": [5, 9, 12, 24, 20, 17], +# tsc.LAST_OB_STOP: [1, 3, 0, 0, 12, 14], +# tsc.FIRST_IB_STOP: [2, 0, 0, 4, 6, 20], +# }, +# index=range(6), +# ) +# +# tours.index.name = "tour_id" +# +# tours[tsc.HAS_OB_STOPS] = tours[tsc.NUM_OB_STOPS] >= 1 +# tours[tsc.HAS_IB_STOPS] = tours[tsc.NUM_IB_STOPS] >= 1 +# +# return tours +# +# +# @pytest.fixture(scope="module") +# def settings(): +# return {"skims_file": "skims.omx", "skim_time_periods": {"labels": ["MD"]}} +# +# +# @pytest.fixture(scope="module") +# def model_spec(): +# index = [ +# "@(df['main_leg_duration']>df['duration']).astype(int)", +# "@(df['main_leg_duration'] == 0)&(df['tour_type']=='othdiscr')", +# "@(df['main_leg_duration'] == 1)&(df['tour_type']=='othdiscr')", +# "@(df['main_leg_duration'] == 2)&(df['tour_type']=='othdiscr')", +# "@(df['main_leg_duration'] == 3)&(df['tour_type']=='othdiscr')", +# "@(df['main_leg_duration'] == 4)&(df['tour_type']=='othdiscr')", +# "@df['tour_type']=='othdiscr'", +# "@df['tour_type']=='eatout'", +# "@df['tour_type']=='eatout'", +# ] +# +# values = [ +# -999, +# -6.5884, +# -5.0326, +# -2.0526, +# -1.0313, +# -0.46489, +# 0.060382, +# -0.7508, +# 0.53247, +# ] +# +# return pd.DataFrame(index=index, data=values, columns=["stage_one"]) +# +# +# @pytest.fixture(scope="module") +# def skims(settings): +# setup_dirs() +# nw_los = los.Network_LOS() +# nw_los.load_data() +# skim_d = skim_dict(nw_los) +# +# od_skim_stack_wrapper = skim_d.wrap("origin", "destination") +# do_skim_stack_wrapper = skim_d.wrap("destination", "origin") +# obib_skim_stack_wrapper = skim_d.wrap(tsc.LAST_OB_STOP, tsc.FIRST_IB_STOP) +# +# skims = [od_skim_stack_wrapper, do_skim_stack_wrapper, obib_skim_stack_wrapper] +# +# return skims +# +# +# @pytest.fixture(scope="module") +# def locals_dict(skims): +# return {"od_skims": skims[0], "do_skims": skims[1], "obib_skims": skims[2]} +# +# +# def test_generate_schedule_alternatives(tours): +# windows = tsc.generate_schedule_alternatives(tours) +# assert windows.shape[0] == 296 +# assert windows.shape[1] == 4 +# +# output_columns = [ +# tsc.SCHEDULE_ID, +# tsc.MAIN_LEG_DURATION, +# tsc.OB_DURATION, +# tsc.IB_DURATION, +# ] +# +# assert set(output_columns).issubset(windows.columns) +# +# +# def test_no_stops_patterns(tours): +# no_stops = tours[ +# (tours["num_outbound_stops"] == 0) & (tours["num_inbound_stops"] == 0) +# ].copy() +# windows = tsc.no_stops_patterns(no_stops) +# +# assert windows.shape[0] == 1 +# assert windows.shape[1] == 3 +# +# output_columns = [tsc.MAIN_LEG_DURATION, tsc.OB_DURATION, tsc.IB_DURATION] +# +# assert set(output_columns).issubset(windows.columns) +# +# pd.testing.assert_series_equal( +# windows[tsc.MAIN_LEG_DURATION], +# no_stops["duration"], +# check_names=False, +# check_dtype=False, +# ) +# assert windows[windows[tsc.IB_DURATION] > 0].empty +# assert windows[windows[tsc.OB_DURATION] > 0].empty +# +# +# def test_one_way_stop_patterns(tours): +# one_way_stops = tours[ +# ( +# (tours["num_outbound_stops"] > 0).astype(int) +# + (tours["num_inbound_stops"] > 0).astype(int) +# ) +# == 1 +# ].copy() +# windows = tsc.stop_one_way_only_patterns(one_way_stops) +# +# assert windows.shape[0] == 58 +# assert windows.shape[1] == 3 +# +# output_columns = [tsc.MAIN_LEG_DURATION, tsc.OB_DURATION, tsc.IB_DURATION] +# +# assert set(output_columns).issubset(windows.columns) +# +# inbound_options = windows[(windows[tsc.IB_DURATION] > 0)] +# outbound_options = windows[windows[tsc.OB_DURATION] > 0] +# assert np.unique(inbound_options.index).shape[0] == 1 +# assert np.unique(outbound_options.index).shape[0] == 1 +# +# +# def test_two_way_stop_patterns(tours): +# two_way_stops = tours[ +# ( +# (tours["num_outbound_stops"] > 0).astype(int) +# + (tours["num_inbound_stops"] > 0).astype(int) +# ) +# == 2 +# ].copy() +# windows = tsc.stop_two_way_only_patterns(two_way_stops) +# +# assert windows.shape[0] == 237 +# assert windows.shape[1] == 3 +# +# output_columns = [tsc.MAIN_LEG_DURATION, tsc.OB_DURATION, tsc.IB_DURATION] +# +# assert set(output_columns).issubset(windows.columns) +# +# +# def test_run_trip_scheduling_choice( +# state: workflow.State, model_spec, tours, skims, locals_dict +# ): +# """ +# Test run the model. +# """ +# +# out_tours = tsc.run_trip_scheduling_choice( +# state, +# model_spec, +# tours, +# skims, +# locals_dict, +# trace_label="PyTest Trip Scheduling", +# ) +# +# assert len(tours) == len(out_tours) +# pd.testing.assert_index_equal( +# tours.sort_index().index, out_tours.sort_index().index +# ) +# +# output_columns = [tsc.MAIN_LEG_DURATION, tsc.OB_DURATION, tsc.IB_DURATION] +# +# assert set(output_columns).issubset(out_tours.columns) +# +# assert len( +# out_tours[ +# out_tours[output_columns].sum(axis=1) == out_tours[tsc.TOUR_DURATION_COLUMN] +# ] +# ) == len(tours) diff --git a/activitysim/abm/test/test_pipeline/test_pipeline.py b/activitysim/abm/test/test_pipeline/test_pipeline.py index 0bb09a4cc..d5b4253b6 100644 --- a/activitysim/abm/test/test_pipeline/test_pipeline.py +++ b/activitysim/abm/test/test_pipeline/test_pipeline.py @@ -1,18 +1,18 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import os import numpy as np -import numpy.testing as npt import openmatrix as omx import pandas as pd import pandas.testing as pdt import pkg_resources import pytest -import yaml -from activitysim.core import config, inject, pipeline, random, tracing +from activitysim.core import random, tracing, workflow # set the max households for all tests (this is to limit memory use on travis) HOUSEHOLDS_SAMPLE_SIZE = 50 @@ -44,29 +44,25 @@ def setup_dirs(ancillary_configs_dir=None, data_dir=None): if ancillary_configs_dir is not None: configs_dir = [ancillary_configs_dir] + configs_dir - inject.add_injectable("configs_dir", configs_dir) - output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) if not data_dir: data_dir = example_path("data") - inject.add_injectable("data_dir", data_dir) - - inject.clear_cache() - - tracing.config_logger() + state = workflow.State.make_default( + configs_dir=configs_dir, + output_dir=output_dir, + data_dir=data_dir, + ) - tracing.delete_output_files("csv") - tracing.delete_output_files("txt") - tracing.delete_output_files("yaml") - tracing.delete_output_files("omx") + state.logging.config_logger() + state.tracing.delete_output_files("csv") + state.tracing.delete_output_files("txt") + state.tracing.delete_output_files("yaml") + state.tracing.delete_output_files("omx") -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() + return state def close_handlers(): @@ -79,35 +75,21 @@ def close_handlers(): logger.setLevel(logging.NOTSET) -def inject_settings(**kwargs): - - settings = config.read_settings_file("settings.yaml", mandatory=True) - - for k in kwargs: - settings[k] = kwargs[k] - - inject.add_injectable("settings", settings) - - return settings - - def test_rng_access(): - setup_dirs() + state = setup_dirs() + state.settings.rng_base_seed = 0 - inject.add_injectable("rng_base_seed", 0) + state.checkpoint.restore() - pipeline.open_pipeline() - - rng = pipeline.get_rn_generator() + rng = state.get_rn_generator() assert isinstance(rng, random.Random) - pipeline.close_pipeline() - inject.clear_cache() + state.checkpoint.close_store() -def regress_mini_auto(): +def regress_mini_auto(state: workflow.State): # regression test: these are among the middle households in households table # should be the same results as in run_mp (multiprocessing) test case @@ -117,7 +99,9 @@ def regress_mini_auto(): choices, index=pd.Index(hh_ids, name="household_id"), name="auto_ownership" ) - auto_choice = pipeline.get_table("households").sort_index().auto_ownership + auto_choice = ( + state.checkpoint.load_dataframe("households").sort_index().auto_ownership + ) offset = ( HOUSEHOLDS_SAMPLE_SIZE // 2 @@ -138,9 +122,11 @@ def regress_mini_auto(): pdt.assert_series_equal(auto_choice, expected_choice, check_dtype=False) -def regress_mini_mtf(): +def regress_mini_mtf(state: workflow.State): - mtf_choice = pipeline.get_table("persons").sort_index().mandatory_tour_frequency + mtf_choice = ( + state.checkpoint.load_dataframe("persons").sort_index().mandatory_tour_frequency + ) # these choices are for pure regression - their appropriateness has not been checked per_ids = [2566701, 2566702, 3061895] @@ -165,13 +151,13 @@ def regress_mini_mtf(): Name: mandatory_tour_frequency, dtype: object """ pdt.assert_series_equal( - mtf_choice.reindex(per_ids), expected_choice, check_dtype=False + mtf_choice.astype(str).reindex(per_ids), expected_choice, check_dtype=False ) -def regress_mini_location_choice_logsums(): +def regress_mini_location_choice_logsums(state: workflow.State): - persons = pipeline.get_table("persons") + persons = state.checkpoint.load_dataframe("persons") # DEST_CHOICE_LOGSUM_COLUMN_NAME is specified in school_location.yaml and should be assigned assert "school_location_logsum" in persons @@ -183,11 +169,13 @@ def regress_mini_location_choice_logsums(): def test_mini_pipeline_run(): - setup_dirs() + from activitysim.abm.tables.skims import network_los_preload - inject_settings( - households_sample_size=HOUSEHOLDS_SAMPLE_SIZE, write_skim_cache=True - ) + state = setup_dirs() + state.get(network_los_preload) + + state.settings.households_sample_size = HOUSEHOLDS_SAMPLE_SIZE + state.network_settings.write_skim_cache = True _MODELS = [ "initialize_landuse", @@ -198,32 +186,33 @@ def test_mini_pipeline_run(): "auto_ownership_simulate", ] - pipeline.run(models=_MODELS, resume_after=None) + state.run(models=_MODELS, resume_after=None) - regress_mini_auto() + regress_mini_auto(state) - pipeline.run_model("cdap_simulate") - pipeline.run_model("mandatory_tour_frequency") + state.run.by_name("cdap_simulate") + state.run.by_name("mandatory_tour_frequency") - regress_mini_mtf() - regress_mini_location_choice_logsums() + regress_mini_mtf(state) + regress_mini_location_choice_logsums(state) # try to get a non-existant table with pytest.raises(RuntimeError) as excinfo: - pipeline.get_table("bogus") + state.checkpoint.load_dataframe("bogus") assert "never checkpointed" in str(excinfo.value) # try to get an existing table from a non-existant checkpoint with pytest.raises(RuntimeError) as excinfo: - pipeline.get_table("households", checkpoint_name="bogus") + state.checkpoint.load_dataframe("households", checkpoint_name="bogus") assert "not in checkpoints" in str(excinfo.value) # should create optional workplace_location_sample table - workplace_location_sample_df = pipeline.get_table("workplace_location_sample") + workplace_location_sample_df = state.checkpoint.load_dataframe( + "workplace_location_sample" + ) assert "mode_choice_logsum" in workplace_location_sample_df - pipeline.close_pipeline() - inject.clear_cache() + state.checkpoint.close_store() close_handlers() @@ -233,46 +222,50 @@ def test_mini_pipeline_run2(): # exactly the same results as for test_mini_pipeline_run # when we restart pipeline - setup_dirs() + state = setup_dirs() + from activitysim.abm.tables.skims import network_los_preload + + state.get(network_los_preload) - inject_settings(households_sample_size=HOUSEHOLDS_SAMPLE_SIZE, read_skim_cache=True) + state.settings.households_sample_size = HOUSEHOLDS_SAMPLE_SIZE + state.network_settings.read_skim_cache = True # should be able to get this BEFORE pipeline is opened - checkpoints_df = pipeline.get_checkpoints() + checkpoints_df = state.checkpoint.get_inventory() prev_checkpoint_count = len(checkpoints_df.index) - # print "checkpoints_df\n%s" % checkpoints_df[['checkpoint_name']] - assert prev_checkpoint_count == 9 + assert "auto_ownership_simulate" in checkpoints_df.checkpoint_name.values + assert "cdap_simulate" in checkpoints_df.checkpoint_name.values + assert "mandatory_tour_frequency" in checkpoints_df.checkpoint_name.values - pipeline.open_pipeline("auto_ownership_simulate") + state.checkpoint.restore("auto_ownership_simulate") - regress_mini_auto() + regress_mini_auto(state) # try to run a model already in pipeline with pytest.raises(RuntimeError) as excinfo: - pipeline.run_model("auto_ownership_simulate") + state.run.by_name("auto_ownership_simulate") assert "run model 'auto_ownership_simulate' more than once" in str(excinfo.value) # and these new ones - pipeline.run_model("cdap_simulate") - pipeline.run_model("mandatory_tour_frequency") + state.run.by_name("cdap_simulate") + state.run.by_name("mandatory_tour_frequency") - regress_mini_mtf() + regress_mini_mtf(state) # should be able to get this before pipeline is closed (from existing open store) - checkpoints_df = pipeline.get_checkpoints() + checkpoints_df = state.checkpoint.get_inventory() assert len(checkpoints_df.index) == prev_checkpoint_count # - write list of override_hh_ids to override_hh_ids.csv in data for use in next test num_hh_ids = 10 - hh_ids = pipeline.get_table("households").head(num_hh_ids).index.values + hh_ids = state.checkpoint.load_dataframe("households").head(num_hh_ids).index.values hh_ids = pd.DataFrame({"household_id": hh_ids}) - hh_ids_path = config.data_file_path("override_hh_ids.csv") + hh_ids_path = state.filesystem.get_data_file_path("override_hh_ids.csv") hh_ids.to_csv(hh_ids_path, index=False, header=True) - pipeline.close_pipeline() - inject.clear_cache() + state.checkpoint.close_store() close_handlers() @@ -280,12 +273,14 @@ def test_mini_pipeline_run3(): # test that hh_ids setting overrides household sampling - setup_dirs() - inject_settings(hh_ids="override_hh_ids.csv") + state = setup_dirs() + state.settings.hh_ids = "override_hh_ids.csv" - households = inject.get_table("households").to_frame() + households = state.get_dataframe("households") - override_hh_ids = pd.read_csv(config.data_file_path("override_hh_ids.csv")) + override_hh_ids = pd.read_csv( + state.filesystem.get_data_file_path("override_hh_ids.csv") + ) print("\noverride_hh_ids\n%s" % override_hh_ids) @@ -294,7 +289,6 @@ def test_mini_pipeline_run3(): assert households.shape[0] == override_hh_ids.shape[0] assert households.index.isin(override_hh_ids.household_id).all() - inject.clear_cache() close_handlers() @@ -304,52 +298,30 @@ def full_run( households_sample_size=HOUSEHOLDS_SAMPLE_SIZE, trace_hh_id=None, trace_od=None, - check_for_variability=None, + check_for_variability=False, ): - setup_dirs() + state = setup_dirs() - settings = inject_settings( - households_sample_size=households_sample_size, - chunk_size=chunk_size, - trace_hh_id=trace_hh_id, - trace_od=trace_od, - testing_fail_trip_destination=False, - check_for_variability=check_for_variability, - want_dest_choice_sample_tables=False, - use_shadow_pricing=False, - ) # shadow pricing breaks replicability when sample_size varies + state.settings.households_sample_size = households_sample_size + state.settings.chunk_size = chunk_size + state.settings.trace_hh_id = trace_hh_id + state.settings.trace_od = trace_od + state.settings.testing_fail_trip_destination = False + state.settings.check_for_variability = check_for_variability + state.settings.want_dest_choice_sample_tables = False + state.settings.use_shadow_pricing = False # FIXME should enable testing_fail_trip_destination? - MODELS = settings["models"] + MODELS = state.settings.models - pipeline.run(models=MODELS, resume_after=resume_after) + state.run(models=MODELS, resume_after=resume_after) - tours = pipeline.get_table("tours") + tours = state.checkpoint.load_dataframe("tours") tour_count = len(tours.index) - return tour_count - - -def get_trace_csv(file_name): - - file_name = config.output_file_path(file_name) - df = pd.read_csv(file_name) - - # label value_1 value_2 value_3 value_4 - # 0 tour_id 38 201 39 40 - # 1 mode DRIVE_LOC DRIVE_COM DRIVE_LOC DRIVE_LOC - # 2 person_id 1888694 1888695 1888695 1888696 - # 3 tour_type work othmaint work school - # 4 tour_num 1 1 1 1 - - # transpose df and rename columns - labels = df.label.values - df = df.transpose()[1:] - df.columns = labels - - return df + return state, tour_count EXPECT_TOUR_COUNT = 121 @@ -360,6 +332,8 @@ def regress_tour_modes(tours_df): mode_cols = ["tour_mode", "person_id", "tour_type", "tour_num", "tour_category"] tours_df = tours_df[tours_df.household_id == HH_ID] + # convert tour_category from categorical to string for comparison + tours_df.tour_category = tours_df.tour_category.astype(str) tours_df = tours_df.sort_values(by=["person_id", "tour_category", "tour_num"]) print("mode_df\n%s" % tours_df[mode_cols]) @@ -397,13 +371,13 @@ def regress_tour_modes(tours_df): assert len(tours_df) == len(EXPECT_PERSON_IDS) assert (tours_df.person_id.values == EXPECT_PERSON_IDS).all() - assert (tours_df.tour_type.values == EXPECT_TOUR_TYPES).all() - assert (tours_df.tour_mode.values == EXPECT_MODES).all() + assert (tours_df.tour_type.astype(str).values == EXPECT_TOUR_TYPES).all() + assert (tours_df.tour_mode.astype(str).values == EXPECT_MODES).all() -def regress(): +def regress(state: workflow.State): - persons_df = pipeline.get_table("persons") + persons_df = state.checkpoint.load_dataframe("persons") persons_df = persons_df[persons_df.household_id == HH_ID] print("persons_df\n%s" % persons_df[["value_of_time", "distance_to_work"]]) @@ -415,7 +389,7 @@ def regress(): 3249923 23.349532 0.62 """ - tours_df = pipeline.get_table("tours") + tours_df = state.checkpoint.load_dataframe("tours") regress_tour_modes(tours_df) @@ -443,7 +417,7 @@ def regress(): assert "mode_choice_logsum" in tours_df assert not tours_df.mode_choice_logsum.isnull().any() - trips_df = pipeline.get_table("trips") + trips_df = state.checkpoint.load_dataframe("trips") assert trips_df.shape[0] > 0 assert not trips_df.purpose.isnull().any() assert not trips_df.depart.isnull().any() @@ -456,7 +430,7 @@ def regress(): assert trips_df.shape[0] >= 2 * tours_df.shape[0] # write_trip_matrices - trip_matrices_file = config.output_file_path("trips_md.omx") + trip_matrices_file = state.get_output_file_path("trips_md.omx") assert os.path.exists(trip_matrices_file) trip_matrices = omx.open_file(trip_matrices_file) assert trip_matrices.shape() == (25, 25) @@ -473,7 +447,7 @@ def test_full_run1(): if SKIP_FULL_RUN: return - tour_count = full_run( + state, tour_count = full_run( trace_hh_id=HH_ID, check_for_variability=True, households_sample_size=HOUSEHOLDS_SAMPLE_SIZE, @@ -485,9 +459,9 @@ def test_full_run1(): tour_count == EXPECT_TOUR_COUNT ), "EXPECT_TOUR_COUNT %s but got tour_count %s" % (EXPECT_TOUR_COUNT, tour_count) - regress() + regress(state) - pipeline.close_pipeline() + state.checkpoint.close_store() def test_full_run2(): @@ -497,7 +471,7 @@ def test_full_run2(): if SKIP_FULL_RUN: return - tour_count = full_run( + state, tour_count = full_run( resume_after="non_mandatory_tour_scheduling", trace_hh_id=HH_ID ) @@ -505,9 +479,9 @@ def test_full_run2(): tour_count == EXPECT_TOUR_COUNT ), "EXPECT_TOUR_COUNT %s but got tour_count %s" % (EXPECT_TOUR_COUNT, tour_count) - regress() + regress(state) - pipeline.close_pipeline() + state.checkpoint.close_store() def test_full_run3_with_chunks(): @@ -517,7 +491,7 @@ def test_full_run3_with_chunks(): if SKIP_FULL_RUN: return - tour_count = full_run( + state, tour_count = full_run( trace_hh_id=HH_ID, households_sample_size=HOUSEHOLDS_SAMPLE_SIZE, chunk_size=500000, @@ -527,9 +501,9 @@ def test_full_run3_with_chunks(): tour_count == EXPECT_TOUR_COUNT ), "EXPECT_TOUR_COUNT %s but got tour_count %s" % (EXPECT_TOUR_COUNT, tour_count) - regress() + regress(state) - pipeline.close_pipeline() + state.checkpoint.close_store() def test_full_run4_stability(): @@ -539,13 +513,13 @@ def test_full_run4_stability(): if SKIP_FULL_RUN: return - tour_count = full_run( + state, tour_count = full_run( trace_hh_id=HH_ID, households_sample_size=HOUSEHOLDS_SAMPLE_SIZE - 10 ) - regress() + regress(state) - pipeline.close_pipeline() + state.checkpoint.close_store() def test_full_run5_singleton(): @@ -557,17 +531,17 @@ def test_full_run5_singleton(): if SKIP_FULL_RUN: return - tour_count = full_run(trace_hh_id=HH_ID, households_sample_size=1, chunk_size=1) + state, tour_count = full_run( + trace_hh_id=HH_ID, households_sample_size=1, chunk_size=1 + ) - regress() + regress(state) - pipeline.close_pipeline() + state.checkpoint.close_store() if __name__ == "__main__": - from activitysim import abm # register injectables - print("running test_full_run1") test_full_run1() # teardown_function(None) diff --git a/activitysim/benchmarking/benchmarks/mtc1mp4.py b/activitysim/benchmarking/benchmarks/mtc1mp4.py index 8fe8dce18..9e9573d04 100644 --- a/activitysim/benchmarking/benchmarks/mtc1mp4.py +++ b/activitysim/benchmarking/benchmarks/mtc1mp4.py @@ -73,6 +73,7 @@ def setup_cache(): template_component_timings_mp( + state, globals(), COMPONENT_NAMES, EXAMPLE_NAME, diff --git a/activitysim/benchmarking/componentwise.py b/activitysim/benchmarking/componentwise.py index bb3c909b0..5a9d9a7cd 100644 --- a/activitysim/benchmarking/componentwise.py +++ b/activitysim/benchmarking/componentwise.py @@ -1,36 +1,38 @@ +from __future__ import annotations + import glob import logging import logging.handlers import os import traceback +from pathlib import Path import numpy as np import pandas as pd import yaml -from ..cli.create import get_example -from ..cli.run import INJECTABLES, config, pipeline -from ..core import inject, tracing -from ..core.pipeline import open_pipeline, run_model -from . import workspace +from activitysim.benchmarking import workspace +from activitysim.cli.create import get_example +from activitysim.cli.run import INJECTABLES, config +from activitysim.core import tracing, workflow logger = logging.getLogger(__name__) -def reload_settings(settings_filename, **kwargs): - settings = config.read_settings_file(settings_filename, mandatory=True) +def reload_settings(state, settings_filename, **kwargs): + settings = state.filesystem.read_settings_file(settings_filename, mandatory=True) for k in kwargs: settings[k] = kwargs[k] - inject.add_injectable("settings", settings) + state.add_injectable("settings", settings) return settings -def component_logging(component_name): +def component_logging(state: workflow.State, component_name): root_logger = logging.getLogger() CLOG_FMT = "%(asctime)s %(levelname)7s - %(name)s: %(message)s" - logfilename = config.log_file_path(f"asv-{component_name}.log") + logfilename = state.get_log_file_path(f"asv-{component_name}.log") # avoid creation of multiple file handlers for logging components # as we will re-enter this function for every component run @@ -40,7 +42,7 @@ def component_logging(component_name): ): return - tracing.config_logger(basic=True) + state.logging.config_logger(basic=True) file_handler = logging.handlers.RotatingFileHandler( filename=logfilename, mode="a", @@ -56,6 +58,7 @@ def component_logging(component_name): def setup_component( + state, component_name, working_dir=".", preload_injectables=(), @@ -75,35 +78,36 @@ def setup_component( """ if isinstance(configs_dirs, str): configs_dirs = [configs_dirs] - inject.add_injectable( + state.add_injectable( "configs_dir", [os.path.join(working_dir, i) for i in configs_dirs] ) - inject.add_injectable("data_dir", os.path.join(working_dir, data_dir)) - inject.add_injectable("output_dir", os.path.join(working_dir, output_dir)) + state.add_injectable("data_dir", os.path.join(working_dir, data_dir)) + state.add_injectable("output_dir", os.path.join(working_dir, output_dir)) reload_settings( + state, settings_filename, benchmarking=component_name, checkpoints=False, **other_settings, ) - component_logging(component_name) + component_logging(state, component_name) logger.info("connected to component logger") config.filter_warnings() logging.captureWarnings(capture=True) # register abm steps and other abm-specific injectables outside of # benchmark timing loop - if not inject.is_injectable("preload_injectables"): + if "preload_injectables" not in state.context: logger.info("preload_injectables yes import") - from activitysim import abm + from activitysim import abm # noqa: F401 else: logger.info("preload_injectables no import") # Extract the resume_after argument based on the model immediately # prior to the component being benchmarked. - models = config.setting("models") + models = state.settings.models try: component_index = models.index(component_name) except ValueError: @@ -115,7 +119,7 @@ def setup_component( else: resume_after = None - if config.setting("multiprocess", False): + if state.settings.multiprocess: raise NotImplementedError( "multiprocess component benchmarking is not yet implemented" ) @@ -124,15 +128,15 @@ def setup_component( # components. Instead, those benchmarks are generated in # aggregate during setup and then extracted from logs later. else: - open_pipeline(resume_after, mode="r") + state.checkpoint.restore(resume_after, mode="r") for k in preload_injectables: - if inject.get_injectable(k, None) is not None: + if state.get_injectable(k, None) is not None: logger.info("pre-loaded %s", k) # Directories Logging for k in ["configs_dir", "settings_file_name", "data_dir", "output_dir"]: - logger.info(f"DIRECTORY {k}: {inject.get_injectable(k, None)}") + logger.info(f"DIRECTORY {k}: {state.get_injectable(k, None)}") # Settings Logging log_settings = [ @@ -154,10 +158,10 @@ def setup_component( logger.info("setup_component completed: %s", component_name) -def run_component(component_name): +def run_component(state, component_name): logger.info("run_component: %s", component_name) try: - if config.setting("multiprocess", False): + if state.settings.multiprocess: raise NotImplementedError( "multiprocess component benchmarking is not yet implemented" ) @@ -166,7 +170,7 @@ def run_component(component_name): # components. Instead, those benchmarks are generated in # aggregate during setup and then extracted from logs later. else: - run_model(component_name) + state.run.by_name(component_name) except Exception as err: logger.exception("run_component exception: %s", component_name) raise @@ -175,21 +179,21 @@ def run_component(component_name): return 0 -def teardown_component(component_name): +def teardown_component(state, component_name): logger.info("teardown_component: %s", component_name) - # use the pipeline module to clear out all the orca tables, so + # use the pipeline module to clear out all the tables, so # the next benchmark run has a clean slate. # anything needed should be reloaded from the pipeline checkpoint file - pipeline_tables = pipeline.registered_tables() + pipeline_tables = state.registered_tables() for table_name in pipeline_tables: logger.info("dropping table %s", table_name) - pipeline.drop_table(table_name) + state.drop_table(table_name) - if config.setting("multiprocess", False): + if state.settings.multiprocess: raise NotImplementedError("multiprocess benchmarking is not yet implemented") else: - pipeline.close_pipeline() + state.checkpoint.close_store() logger.critical( "teardown_component completed: %s\n\n%s\n\n", component_name, "~" * 88 ) @@ -197,6 +201,7 @@ def teardown_component(component_name): def pre_run( + state, model_working_dir, configs_dirs=None, data_dir="data", @@ -229,40 +234,40 @@ def pre_run( for a model run. """ if configs_dirs is None: - inject.add_injectable("configs_dir", os.path.join(model_working_dir, "configs")) + state.add_injectable("configs_dir", os.path.join(model_working_dir, "configs")) else: configs_dirs_ = [os.path.join(model_working_dir, i) for i in configs_dirs] - inject.add_injectable("configs_dir", configs_dirs_) - inject.add_injectable("data_dir", os.path.join(model_working_dir, data_dir)) - inject.add_injectable("output_dir", os.path.join(model_working_dir, output_dir)) + state.add_injectable("configs_dir", configs_dirs_) + state.add_injectable("data_dir", os.path.join(model_working_dir, data_dir)) + state.add_injectable("output_dir", os.path.join(model_working_dir, output_dir)) if settings_file_name is not None: - inject.add_injectable("settings_file_name", settings_file_name) + state.add_injectable("settings_file_name", settings_file_name) # Always pre_run from the beginning config.override_setting("resume_after", None) # register abm steps and other abm-specific injectables - if not inject.is_injectable("preload_injectables"): - from activitysim import ( # register abm steps and other abm-specific injectables - abm, - ) + if "preload_injectables" not in state.context: + from activitysim import abm # noqa: F401 + + # register abm steps and other abm-specific injectables if settings_file_name is not None: - inject.add_injectable("settings_file_name", settings_file_name) + state.add_injectable("settings_file_name", settings_file_name) # cleanup # cleanup_output_files() - tracing.config_logger(basic=False) + state.logging.config_logger(basic=False) config.filter_warnings() logging.captureWarnings(capture=True) # directories for k in ["configs_dir", "settings_file_name", "data_dir", "output_dir"]: - logger.info("SETTING %s: %s" % (k, inject.get_injectable(k, None))) + logger.info("SETTING %s: %s" % (k, state.get_injectable(k, None))) - log_settings = inject.get_injectable("log_settings", {}) + log_settings = state.get_injectable("log_settings", {}) for k in log_settings: logger.info("SETTING %s: %s" % (k, config.setting(k))) @@ -297,37 +302,37 @@ def pre_run( logger.info(f"MODELS: {config.setting('models')}") - if config.setting("multiprocess", False): + if state.settings.multiprocess: logger.info("run multi-process complete simulation") else: logger.info("run single process simulation") - pipeline.run(models=config.setting("models")) - pipeline.close_pipeline() + state.run(models=state.settings.models) + state.checkpoint.close_store() tracing.print_elapsed_time("prerun required models for checkpointing", t0) return 0 -def run_multiprocess(): +def run_multiprocess(state: workflow.State): logger.info("run multiprocess simulation") - tracing.delete_trace_files() - tracing.delete_output_files("h5") - tracing.delete_output_files("csv") - tracing.delete_output_files("txt") - tracing.delete_output_files("yaml") - tracing.delete_output_files("prof") - tracing.delete_output_files("omx") + state.tracing.delete_trace_files() + state.tracing.delete_output_files("h5") + state.tracing.delete_output_files("csv") + state.tracing.delete_output_files("txt") + state.tracing.delete_output_files("yaml") + state.tracing.delete_output_files("prof") + state.tracing.delete_output_files("omx") from activitysim.core import mp_tasks - injectables = {k: inject.get_injectable(k) for k in INJECTABLES} - mp_tasks.run_multiprocess(injectables) + injectables = {k: state.get_injectable(k) for k in INJECTABLES} + mp_tasks.run_multiprocess(state, injectables) - assert not pipeline.is_open() - - if config.setting("cleanup_pipeline_after_run", False): - pipeline.cleanup_pipeline() + # assert not pipeline.is_open() + # + # if state.settings.cleanup_pipeline_after_run: + # pipeline.cleanup_pipeline() ######## @@ -408,10 +413,8 @@ def template_setup_cache( os.makedirs(model_dir(example_name, config_overload_dir), exist_ok=True) # Find the settings file and extract the complete set of models included - from ..core.config import read_settings_file - try: - existing_settings, settings_filenames = read_settings_file( + existing_settings, settings_filenames = state.filesystem.read_settings_file( settings_filename, mandatory=True, include_stack=True, @@ -490,6 +493,8 @@ def template_setup_cache( os.makedirs(model_dir(example_name, output_dir), exist_ok=True) + state = workflow.State.make_default(Path(model_dir(example_name))) + # Running the model through all the steps and checkpointing everywhere is # expensive and only needs to be run once. Once it is done we will write # out a completion token file to indicate to future benchmark attempts @@ -502,6 +507,7 @@ def template_setup_cache( if not os.path.exists(token_file) and not use_multiprocess: try: pre_run( + state, model_dir(example_name), use_config_dirs, data_dir, @@ -530,13 +536,14 @@ def template_setup_cache( asv_commit = os.environ.get("ASV_COMMIT", "ASV_COMMIT_UNKNOWN") try: pre_run( + state, model_dir(example_name), use_config_dirs, data_dir, output_dir, settings_filename, ) - run_multiprocess() + run_multiprocess(state) except Exception as err: with open( model_dir( @@ -644,6 +651,7 @@ def time_component(self): def template_component_timings_mp( + state: workflow.State, module_globals, component_names, example_name, @@ -685,8 +693,8 @@ class ComponentTiming: def track_component(self): durations = [] - inject.add_injectable("output_dir", model_dir(example_name, output_dir)) - logfiler = config.log_file_path(f"timing_log.mp_households_*.csv") + state.add_injectable("output_dir", model_dir(example_name, output_dir)) + logfiler = state.get_log_file_path(f"timing_log.mp_households_*.csv") for logfile in glob.glob(logfiler): df = pd.read_csv(logfile) dfq = df.query(f"component_name=='{self.component_name}'") diff --git a/activitysim/cli/benchmark.py b/activitysim/cli/benchmark.py index af46766aa..31b920011 100644 --- a/activitysim/cli/benchmark.py +++ b/activitysim/cli/benchmark.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import json import os import shutil @@ -43,7 +45,6 @@ "pyyaml": [], "pytables": [], "toolz": [], - "orca": [], "psutil": [], "requests": [], "numba": ["0.54"], diff --git a/activitysim/cli/cli.py b/activitysim/cli/cli.py index de95e78ff..5a9f5e6ec 100644 --- a/activitysim/cli/cli.py +++ b/activitysim/cli/cli.py @@ -1,5 +1,15 @@ import argparse +from activitysim import __version__ + +text_art = """ + ___ __ _ _ __ _____ + / _ |____/ /_(_) __(_) /___ __/ __(_)_ _ + / __ / __/ __/ / |/ / / __/ // /\ \/ / ' \ {} +/_/ |_\__/\__/_/|___/_/\__/\_, /___/_/_/_/_/ + /___/ +""" + class CLI: def __init__(self, version, description): @@ -24,5 +34,6 @@ def add_subcommand(self, name, args_func, exec_func, description): subparser.set_defaults(afunc=exec_func) def execute(self): + print(text_art.format(__version__)) args = self.parser.parse_args() return args.afunc(args) diff --git a/activitysim/cli/create.py b/activitysim/cli/create.py index 7cd8d218c..7211471d7 100644 --- a/activitysim/cli/create.py +++ b/activitysim/cli/create.py @@ -1,9 +1,13 @@ +from __future__ import annotations + import glob import hashlib import logging import os import shutil import sys +import tarfile +import zipfile from pathlib import Path import pkg_resources @@ -72,7 +76,6 @@ def create(args): """ if args.list: - list_examples() return 0 @@ -98,7 +101,12 @@ def list_examples(): def get_example( - example_name, destination, benchmarking=False, optimize=True, link=True + example_name, + destination, + benchmarking=False, + optimize=True, + link=True, + with_subdirs=False, ): """ Copy project data to user-specified directory. @@ -110,13 +118,12 @@ def get_example( Parameters ---------- - example_name: str, name of the example to copy. Options can be found via list_examples() destination: name of target directory to copy files to. - If the target directory already exists, project files - will be copied into a subdirectory with the same name - as the example + If the target directory does not exist, it is created. + Project files will then be copied into a subdirectory + with the same name as the example benchmarking: bool optimize: bool link: bool or path-like @@ -125,14 +132,25 @@ def get_example( value, then a cache directory is created using in a location selected by the platformdirs library (or, if not installed, linking is skipped.) + with_subdirs: bool, default False + Also return any instructions about sub-directories. + + Returns + ------- + Path or (Path, dict) + The path to the location where the example was installed, and + optionally also a mapping of example subdirectory locations. """ if example_name not in EXAMPLES: sys.exit(f"error: could not find example '{example_name}'") if os.path.isdir(destination): dest_path = os.path.join(destination, example_name) + elif os.path.isfile(destination): + raise FileExistsError(destination) else: - dest_path = destination + os.makedirs(destination) + dest_path = os.path.join(destination, example_name) example = EXAMPLES[example_name] itemlist = example.get("include", []) @@ -140,7 +158,6 @@ def get_example( itemlist.extend(example.get("benchmarking", [])) for item in itemlist: - # split include string into source/destination paths items = item.split() assets = items[0] @@ -155,7 +172,9 @@ def get_example( sha256 = None if assets.startswith("http"): - download_asset(assets, target_path, sha256, link=link) + download_asset( + assets, target_path, sha256, link=link, base_path=destination + ) else: for asset_path in glob.glob(_example_path(assets)): @@ -180,9 +199,18 @@ def get_example( if instructions: print(instructions) + if with_subdirs: + subdirs = example.get("subdirs", {}) + subdirs.setdefault("configs_dir", ("configs",)) + subdirs.setdefault("data_dir", ("data",)) + subdirs.setdefault("output_dir", "output") -def copy_asset(asset_path, target_path, dirs_exist_ok=False): + return Path(dest_path), subdirs + else: + return Path(dest_path) + +def copy_asset(asset_path, target_path, dirs_exist_ok=False): print(f"copying {os.path.basename(asset_path)} ...") sys.stdout.flush() if os.path.isdir(asset_path): @@ -196,16 +224,98 @@ def copy_asset(asset_path, target_path, dirs_exist_ok=False): shutil.copy(asset_path, target_path) -def download_asset(url, target_path, sha256=None, link=True): - if link: - if not isinstance(link, (str, Path)): +def _decompress_archive(archive_path: Path, target_location: Path): + # decompress archive file into working directory + if archive_path.suffixes[-2:] == [".tar", ".gz"]: + with tarfile.open(archive_path) as tfile: + common_prefix = os.path.commonprefix(tfile.getnames()) + if common_prefix in {"", ".", "./", None}: + working_dir = target_location + working_dir.mkdir(parents=True, exist_ok=True) + working_subdir = working_dir + else: + working_subdir = target_location.joinpath(common_prefix) + tfile.extractall(working_dir) + elif archive_path.suffixes[-2:] == [".tar", ".zst"]: + working_dir = target_location + try: + working_dir.mkdir(parents=True, exist_ok=True) + except FileExistsError: + pass + working_subdir = working_dir + from sharrow.utils.tar_zst import extract_zst + + extract_zst(archive_path, working_dir) + elif archive_path.suffix == ".zip": + with zipfile.ZipFile(archive_path, "r") as zf: + common_prefix = os.path.commonprefix(zf.namelist()) + if common_prefix in {"", ".", "./", None}: + working_dir = target_location + working_dir.mkdir(parents=True, exist_ok=True) + working_subdir = working_dir + else: + working_subdir = target_location.joinpath(common_prefix) + zf.extractall(working_dir) + else: + raise ValueError(f"unknown archive file type {''.join(archive_path.suffixes)}") + return working_subdir + + +def download_asset( + url: str, + target_path: str, + sha256: str = None, + link: bool = True, + base_path: str | None = None, + unpack: str | None = None, +): + """ + Download assets (extra files) associated with examples. + + Parameters + ---------- + url : str + The URL to download. + target_path : str + The location where the asset should be made available. The raw asset + file is not necessarily stored here, as it may be stored in a cache + directory and symlinked here instead (see `link`). + sha256 : str, optional + Checksum for the file. If there is already a cached file and the + checksum matches, it is not re-downloaded and the cached version is + used. Otherwise, the file is downloaded, and if the downloaded file's + checksum does not match, an error is raised. + link : bool, default True + Download the raw asset to a cache location, and then symlink to the + desired `target_path` location. Note symlinks may not work on Windows + so the file will still be stored in the cache but it will be *copied* + instead of linked. + base_path : str, optional + Give the base directory for the example. + unpack : str, optional + If the asset is an archive file (.zip, .tar.gz, or .tar.zst), it + will be decompressed into this location. + """ + if isinstance(target_path, Path): + target_path = str(target_path) + original_target_path = target_path + if link or unpack: + original_target_path = target_path + if base_path is not None and os.path.isabs(target_path): + target_path = os.path.relpath(target_path, base_path) + if base_path is not None: + if unpack: + if os.path.isabs(unpack): + unpack = os.path.relpath(unpack, base_path) + else: + unpack = os.path.join(base_path, unpack) + if not isinstance(link, str | Path): try: import platformdirs except ImportError: link = False else: link = platformdirs.user_data_dir("ActivitySim") - original_target_path = target_path target_path = os.path.join(link, target_path) os.makedirs(os.path.dirname(target_path), exist_ok=True) if url.endswith(".gz") and not target_path.endswith(".gz"): @@ -249,11 +359,10 @@ def download_asset(url, target_path, sha256=None, link=True): ) elif not sha256: print(f"| computed checksum {computed_sha256}") - if link: - os.makedirs( - os.path.dirname(os.path.normpath(original_target_path)), - exist_ok=True, - ) + if link or unpack: + target_dir = os.path.dirname(os.path.normpath(original_target_path)) + if target_dir: + os.makedirs(target_dir, exist_ok=True) # check if the original_target_path exists and if so check if it is the correct file if os.path.isfile(os.path.normpath(original_target_path)): @@ -263,22 +372,29 @@ def download_asset(url, target_path, sha256=None, link=True): if existing_sha256 != sha256: os.unlink(os.path.normpath(original_target_path)) - # if the original_target_path exists now it is the correct file, keep it - if not os.path.isfile(os.path.normpath(original_target_path)): - try: - os.symlink( - os.path.normpath(target_path), - os.path.normpath(original_target_path), - ) - except OSError: - # permission errors likely foil symlinking on windows - shutil.copy( - os.path.normpath(target_path), - os.path.normpath(original_target_path), - ) - print(f"| copied to {os.path.normpath(original_target_path)}") - else: - print(f"| symlinked to {os.path.normpath(original_target_path)}") + if unpack: + _decompress_archive( + Path(os.path.normpath(target_path)), + Path(os.path.normpath(unpack)), + ) + print(f"| unpacked to {os.path.normpath(unpack)}") + elif link: + # if the original_target_path exists now it is the correct file, keep it + if not os.path.isfile(os.path.normpath(original_target_path)): + try: + os.symlink( + os.path.normpath(target_path), + os.path.normpath(original_target_path), + ) + except OSError: + # permission errors likely foil symlinking on windows + shutil.copy( + os.path.normpath(target_path), + os.path.normpath(original_target_path), + ) + print(f"| copied to {os.path.normpath(original_target_path)}") + else: + print(f"| symlinked to {os.path.normpath(original_target_path)}") def sha256_checksum(filename, block_size=65536): diff --git a/activitysim/cli/exercise.py b/activitysim/cli/exercise.py new file mode 100644 index 000000000..72bb1cf65 --- /dev/null +++ b/activitysim/cli/exercise.py @@ -0,0 +1,47 @@ +from __future__ import annotations + +import os +import traceback + + +def add_exercise_args(parser): + """Create command args""" + parser.add_argument( + "example_name", + type=str, + metavar="EXAMPLE_NAME", + help="name of registered external example to test", + ) + + +def main(args): + """ + Run tests on a registered external example. + """ + example_name = args.example_name + try: + resultcode = _main(example_name) + except Exception: + traceback.print_exc() + return 99 + return resultcode + + +def _main(example_name: str): + if not example_name: + print("no example_name given") + return 101 + + import tempfile + + from activitysim.examples.external import exercise_external_example + + tempdir = tempfile.TemporaryDirectory() + os.chdir(tempdir.name) + try: + resultcode = exercise_external_example(example_name, tempdir.name) + except Exception: + print(f"error in testing {example_name} in {tempdir.name}") + traceback.print_exc() + return 98 + return resultcode diff --git a/activitysim/cli/main.py b/activitysim/cli/main.py index e4b37ba12..2a68910ca 100644 --- a/activitysim/cli/main.py +++ b/activitysim/cli/main.py @@ -1,3 +1,6 @@ +from __future__ import annotations + +import logging import os import sys @@ -5,7 +8,7 @@ def prog(): from activitysim import __doc__, __version__, workflows - from activitysim.cli import CLI, benchmark, create, run + from activitysim.cli import CLI, benchmark, create, exercise, run asim = CLI(version=__version__, description=__doc__) asim.add_subcommand( @@ -32,6 +35,12 @@ def prog(): exec_func=workflows.main, description=workflows.main.__doc__, ) + asim.add_subcommand( + name="test", + args_func=exercise.add_exercise_args, + exec_func=exercise.main, + description=exercise.main.__doc__, + ) return asim @@ -61,10 +70,11 @@ def main(): sys.exit(workflows.main(sys.argv[2:])) else: sys.exit(asim.execute()) - except Exception: + except Exception as err: # if we are in the debugger, re-raise the error instead of exiting if sys.gettrace() is not None: raise + logging.exception(err) sys.exit(99) diff --git a/activitysim/cli/run.py b/activitysim/cli/run.py index 71677e8ad..03258be4b 100644 --- a/activitysim/cli/run.py +++ b/activitysim/cli/run.py @@ -1,3 +1,5 @@ +from __future__ import annotations + # ActivitySim # See full license in LICENSE.txt. import argparse @@ -9,7 +11,8 @@ import numpy as np -from activitysim.core import chunk, config, inject, mem, pipeline, tracing +from activitysim.core import chunk, config, mem, tracing, workflow +from activitysim.core.configuration import FileSystem, Settings logger = logging.getLogger(__name__) @@ -17,7 +20,9 @@ INJECTABLES = [ "data_dir", "configs_dir", + "data_model_dir", "output_dir", + "cache_dir", "settings_file_name", "imported_extensions", ] @@ -51,6 +56,13 @@ def add_run_args(parser, multiprocess=True): metavar="PATH", help="path to data dir", ) + parser.add_argument( + "--data_model", + type=str, + action="append", + metavar="PATH", + help="path to data model dir", + ) parser.add_argument( "-r", "--resume", type=str, metavar="STEPNAME", help="resume after step" ) @@ -78,6 +90,12 @@ def add_run_args(parser, multiprocess=True): "Can make single process runs faster, " "but will cause thrashing on MP runs.", ) + parser.add_argument( + "--persist-sharrow-cache", + action="store_true", + help="Store the sharrow cache in a persistent user cache directory.", + ) + parser.add_argument( "-e", "--ext", @@ -97,15 +115,17 @@ def add_run_args(parser, multiprocess=True): metavar="(N)", nargs="?", type=int, - help="run multiprocess. Adds configs_mp settings" - " by default. Optionally give a number of processes," - " which will override the settings file.", + help="run multiprocess. Adds configs_mp settings " + "by default as the first config directory, but only if it is found" + "and is not already explicitly included elsewhere in the list of " + "configs. Optionally give a number of processes greater than 1, " + "which will override the number of processes written in settings file.", ) -def validate_injectable(name): +def validate_injectable(state: workflow.State, name, make_if_missing=False): try: - dir_paths = inject.get_injectable(name) + dir_paths = state.get(name) except RuntimeError: # injectable is missing, meaning is hasn't been explicitly set # and defaults cannot be found. @@ -119,15 +139,18 @@ def validate_injectable(name): for dir_path in dir_paths: if not os.path.exists(dir_path): - sys.exit("Could not find %s '%s'" % (name, os.path.abspath(dir_path))) + if make_if_missing: + os.makedirs(dir_path) + else: + sys.exit("Could not find %s '%s'" % (name, os.path.abspath(dir_path))) return dir_paths -def handle_standard_args(args, multiprocess=True): - def inject_arg(name, value, cache=False): +def handle_standard_args(state: workflow.State, args, multiprocess=True): + def inject_arg(name, value): assert name in INJECTABLES - inject.add_injectable(name, value, cache=cache) + state.set(name, value) if args.working_dir: # activitysim will look in the current working directory for @@ -154,68 +177,79 @@ def inject_arg(name, value, cache=False): else: inject_arg("imported_extensions", ()) - # settings_file_name should be cached or else it gets squashed by config.py - if args.settings_file: - inject_arg("settings_file_name", args.settings_file, cache=True) - - if args.config: - inject_arg("configs_dir", args.config) - - if args.data: - inject_arg("data_dir", args.data) + state.filesystem = FileSystem.parse_args(args) + for config_dir in state.filesystem.get_configs_dir(): + if not config_dir.is_dir(): + print(f"missing config directory: {config_dir}", file=sys.stderr) + raise NotADirectoryError(f"missing config directory: {config_dir}") + for data_dir in state.filesystem.get_data_dir(): + if not data_dir.is_dir(): + print(f"missing data directory: {data_dir}", file=sys.stderr) + raise NotADirectoryError(f"missing data directory: {data_dir}") - if args.output: - inject_arg("output_dir", args.output) - - if multiprocess and args.multiprocess: - config_paths = validate_injectable("configs_dir") - - if not os.path.exists("configs_mp"): - logger.warning("could not find 'configs_mp'. skipping...") - else: - logger.info("adding 'configs_mp' to config_dir list...") - config_paths.insert(0, "configs_mp") - inject_arg("configs_dir", config_paths) + try: + state.load_settings() + except Exception as err: + logger.exception(f"Error {err} in loading settings") + raise - config.override_setting("multiprocess", True) - if args.multiprocess > 0: - config.override_setting("num_processes", args.multiprocess) + if args.multiprocess: + if "configs_mp" not in state.filesystem.configs_dir: + # when triggering multiprocessing from command arguments, + # add 'configs_mp' as the first config directory, but only + # if it exists, and it is not already explicitly included + # in the set of config directories. + if not state.filesystem.get_working_subdir("configs_mp").exists(): + logger.warning("could not find 'configs_mp'. skipping...") + else: + logger.info("adding 'configs_mp' to config_dir list...") + state.filesystem.configs_dir = ( + "configs_mp", + ) + state.filesystem.configs_dir + + state.settings.multiprocess = True + if args.multiprocess > 1: + # setting --multiprocess to just 1 implies using the number of + # processes discovered in the configs file, while setting to more + # than 1 explicitly overrides that setting + state.settings.num_processes = args.multiprocess if args.chunk_size: - config.override_setting("chunk_size", int(args.chunk_size)) + state.settings.chunk_size = int(args.chunk_size) if args.chunk_training_mode is not None: - config.override_setting("chunk_training_mode", args.chunk_training_mode) + state.settings.chunk_training_mode = args.chunk_training_mode if args.households_sample_size is not None: - config.override_setting("households_sample_size", args.households_sample_size) - - for injectable in ["configs_dir", "data_dir", "output_dir"]: - validate_injectable(injectable) + state.settings.households_sample_size = args.households_sample_size if args.pipeline: - inject.add_injectable("pipeline_file_name", args.pipeline) + state.filesystem.pipeline_file_name = args.pipeline if args.resume: - config.override_setting("resume_after", args.resume) + state.settings.resume_after = args.resume + if args.persist_sharrow_cache: + state.filesystem.persist_sharrow_cache() -def cleanup_output_files(): + return state - tracing.delete_trace_files() + +def cleanup_output_files(state: workflow.State): + tracing.delete_trace_files(state) csv_ignore = [] - if config.setting("memory_profile", False): + if state.settings.memory_profile: # memory profiling is opened potentially before `cleanup_output_files` # is called, but we want to leave any (newly created) memory profiling # log files that may have just been created. - mem_prof_log = config.log_file_path("memory_profile.csv") + mem_prof_log = state.get_log_file_path("memory_profile.csv") csv_ignore.append(mem_prof_log) - tracing.delete_output_files("h5") - tracing.delete_output_files("csv", ignore=csv_ignore) - tracing.delete_output_files("txt") - tracing.delete_output_files("yaml") - tracing.delete_output_files("prof") - tracing.delete_output_files("omx") + state.tracing.delete_output_files("h5") + state.tracing.delete_output_files("csv", ignore=csv_ignore) + state.tracing.delete_output_files("txt") + state.tracing.delete_output_files("yaml") + state.tracing.delete_output_files("prof") + state.tracing.delete_output_files("omx") def run(args): @@ -229,26 +263,26 @@ def run(args): int: sys.exit exit code """ + state = workflow.State() + # register abm steps and other abm-specific injectables # by default, assume we are running activitysim.abm # other callers (e.g. populationsim) will have to arrange to register their own steps and injectables # (presumably) in a custom run_simulation.py instead of using the 'activitysim run' command - if not inject.is_injectable("preload_injectables"): + if not "preload_injectables" in state: # register abm steps and other abm-specific injectables from activitysim import abm # noqa: F401 - tracing.config_logger(basic=True) - handle_standard_args(args) # possibly update injectables + state.logging.config_logger(basic=True) + state = handle_standard_args(state, args) # possibly update injectables - if config.setting("rotate_logs", False): - config.rotate_log_directory() + if state.settings.rotate_logs: + state.logging.rotate_log_directory() - if config.setting("memory_profile", False) and not config.setting( - "multiprocess", False - ): + if state.settings.memory_profile and not state.settings.multiprocess: # Memory sidecar is only useful for single process runs # multiprocess runs log memory usage without blocking in the controlling process. - mem_prof_log = config.log_file_path("memory_profile.csv") + mem_prof_log = state.get_log_file_path("memory_profile.csv") from ..core.memory_sidecar import MemorySidecar memory_sidecar_process = MemorySidecar(mem_prof_log) @@ -256,49 +290,51 @@ def run(args): memory_sidecar_process = None # legacy support for run_list setting nested 'models' and 'resume_after' settings - if config.setting("run_list"): - warnings.warn( - "Support for 'run_list' settings group will be removed.\n" - "The run_list.steps setting is renamed 'models'.\n" - "The run_list.resume_after setting is renamed 'resume_after'.\n" - "Specify both 'models' and 'resume_after' directly in settings config file.", - FutureWarning, - ) - run_list = config.setting("run_list") - if "steps" in run_list: - assert not config.setting( - "models" - ), f"Don't expect 'steps' in run_list and 'models' as stand-alone setting!" - config.override_setting("models", run_list["steps"]) - - if "resume_after" in run_list: - assert not config.setting( - "resume_after" - ), f"Don't expect 'resume_after' both in run_list and as stand-alone setting!" - config.override_setting("resume_after", run_list["resume_after"]) + # if state.settings.run_list: + # warnings.warn( + # "Support for 'run_list' settings group will be removed.\n" + # "The run_list.steps setting is renamed 'models'.\n" + # "The run_list.resume_after setting is renamed 'resume_after'.\n" + # "Specify both 'models' and 'resume_after' directly in settings config file.", + # FutureWarning, + # ) + # run_list = state.settings.run_list + # if "steps" in run_list: + # assert not config.setting( + # "models" + # ), f"Don't expect 'steps' in run_list and 'models' as stand-alone setting!" + # config.override_setting("models", run_list["steps"]) + # + # if "resume_after" in run_list: + # assert not config.setting( + # "resume_after" + # ), f"Don't expect 'resume_after' both in run_list and as stand-alone setting!" + # config.override_setting("resume_after", run_list["resume_after"]) # If you provide a resume_after argument to pipeline.run # the pipeline manager will attempt to load checkpointed tables from the checkpoint store # and resume pipeline processing on the next submodel step after the specified checkpoint - resume_after = config.setting("resume_after", None) + resume_after = state.settings.resume_after # cleanup if not resuming if not resume_after: - cleanup_output_files() - elif config.setting("cleanup_trace_files_on_resume", False): - tracing.delete_trace_files() - - tracing.config_logger(basic=False) # update using possibly new logging configs - config.filter_warnings() + cleanup_output_files(state) + elif state.settings.cleanup_trace_files_on_resume: + tracing.delete_trace_files(state) + + state.logging.config_logger( + basic=False + ) # update using possibly new logging configs + config.filter_warnings(state) logging.captureWarnings(capture=True) # directories for k in ["configs_dir", "settings_file_name", "data_dir", "output_dir"]: - logger.info("SETTING %s: %s" % (k, inject.get_injectable(k, None))) + logger.info("SETTING %s: %s" % (k, getattr(state.filesystem, k, None))) - log_settings = inject.get_injectable("log_settings", {}) + log_settings = state.settings.log_settings for k in log_settings: - logger.info("SETTING %s: %s" % (k, config.setting(k))) + logger.info("SETTING %s: %s" % (k, getattr(state.settings, k, None))) # OMP_NUM_THREADS: openmp # OPENBLAS_NUM_THREADS: openblas @@ -335,32 +371,38 @@ def run(args): t0 = tracing.print_elapsed_time() try: - if config.setting("multiprocess", False): + if state.settings.multiprocess: logger.info("run multiprocess simulation") from activitysim.core import mp_tasks - injectables = {k: inject.get_injectable(k) for k in INJECTABLES} - mp_tasks.run_multiprocess(injectables) - - assert not pipeline.is_open() + injectables = {} + for k in INJECTABLES: + try: + injectables[k] = state.get_injectable(k) + except KeyError: + # if injectable is not set, just ignore it + pass + injectables["settings"] = state.settings + # injectables["settings_package"] = state.settings.dict() + mp_tasks.run_multiprocess(state, injectables) - if config.setting("cleanup_pipeline_after_run", False): - pipeline.cleanup_pipeline() + if state.settings.cleanup_pipeline_after_run: + state.checkpoint.cleanup() else: logger.info("run single process simulation") - pipeline.run( - models=config.setting("models"), + state.run( + models=state.settings.models, resume_after=resume_after, memory_sidecar_process=memory_sidecar_process, ) - if config.setting("cleanup_pipeline_after_run", False): - pipeline.cleanup_pipeline() # has side effect of closing open pipeline + if state.settings.cleanup_pipeline_after_run: + state.checkpoint.cleanup() # has side effect of closing open pipeline else: - pipeline.close_pipeline() + state.checkpoint.close_store() mem.log_global_hwm() # main process except Exception: @@ -369,12 +411,12 @@ def run(args): logger.exception("activitysim run encountered an unrecoverable error") raise - chunk.consolidate_logs() - mem.consolidate_logs() + chunk.consolidate_logs(state) + mem.consolidate_logs(state) - from ..core.flow import TimeLogger + from activitysim.core.flow import TimeLogger - TimeLogger.aggregate_summary(logger) + # TimeLogger.aggregate_summary(logger) tracing.print_elapsed_time("all models", t0) @@ -385,7 +427,6 @@ def run(args): if __name__ == "__main__": - from activitysim import abm # register injectables # noqa: F401 parser = argparse.ArgumentParser() diff --git a/activitysim/cli/test/test_cli.py b/activitysim/cli/test/test_cli.py index b8f0fc384..9358fb740 100644 --- a/activitysim/cli/test/test_cli.py +++ b/activitysim/cli/test/test_cli.py @@ -59,7 +59,7 @@ def test_create_copy(): assert os.path.exists(target) for folder in ["configs", "configs_mp", "data", "output"]: - assert os.path.isdir(os.path.join(target, folder)) + assert os.path.isdir(os.path.join(target, "prototype_mtc", folder)) # clean up shutil.rmtree(target) @@ -70,14 +70,8 @@ def test_run(): cp = subprocess.run(["activitysim", "run"], capture_output=True) - msg = ( - "please specify either a --working_dir " - "containing 'configs', 'data', and 'output' " - "folders or all three of --config, --data, and --output" - ) - # expect error - assert msg in str(cp.stderr) + assert "missing" in str(cp.stderr) if __name__ == "__main__": diff --git a/activitysim/core/assign.py b/activitysim/core/assign.py index f8e73adc6..19693f2ab 100644 --- a/activitysim/core/assign.py +++ b/activitysim/core/assign.py @@ -1,5 +1,7 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging from builtins import object, zip from collections import OrderedDict @@ -7,7 +9,7 @@ import numpy as np import pandas as pd -from activitysim.core import chunk, config, pipeline, util +from activitysim.core import chunk, util, workflow logger = logging.getLogger(__name__) @@ -78,7 +80,7 @@ def read_assignment_spec( Parameters ---------- - file_name : str + file_name : path-like Name of a CSV spec file. description_name : str, optional Name of the column in `fname` that contains the component description. @@ -135,7 +137,7 @@ def write(self, msg): ) -def local_utilities(): +def local_utilities(state): """ Dict of useful modules and functions to provides as locals for use in eval of expressions @@ -150,12 +152,12 @@ def local_utilities(): "np": np, "reindex": util.reindex, "reindex_i": util.reindex_i, - "setting": config.setting, + "setting": lambda *arg: state.settings._get_attr(*arg), "other_than": util.other_than, - "rng": pipeline.get_rn_generator(), + "rng": state.get_rn_generator(), } - utility_dict.update(config.get_global_constants()) + utility_dict.update(state.get_global_constants()) return utility_dict @@ -173,6 +175,7 @@ def is_temp(target): def assign_variables( + state, assignment_expressions, df, locals_dict, @@ -218,8 +221,9 @@ def assign_variables( variables : pandas.DataFrame Will have the index of `df` and columns named by target and containing the result of evaluating expression - trace_df : pandas.DataFrame or None + trace_results : pandas.DataFrame or None a dataframe containing the eval result values for each assignment expression + trace_assigned_locals : dict or None """ np_logger = NumpyLogger(logger) @@ -234,7 +238,9 @@ def is_temp_series_val(target): return target.startswith("_") def to_series(x): - if x is None or np.isscalar(x): + if np.isscalar(x): + return pd.Series(x, index=df.index) + if x is None: return pd.Series([x] * len(df.index), index=df.index) return x @@ -250,7 +256,7 @@ def to_series(x): trace_assigned_locals = OrderedDict() # avoid touching caller's passed-in locals_d parameter (they may be looping) - _locals_dict = local_utilities() + _locals_dict = local_utilities(state) if locals_dict is not None: _locals_dict.update(locals_dict) if df_alias: @@ -276,10 +282,9 @@ def to_series(x): n_randoms += 1 assignment_expressions.loc[expression_idx, "expression"] = expression if n_randoms: - from activitysim.core import pipeline try: - random_draws = pipeline.get_rn_generator().normal_for_df( + random_draws = state.get_rn_generator().normal_for_df( df, broadcast=True, size=n_randoms ) except RuntimeError: @@ -297,7 +302,7 @@ def rng_lognormal(random_draws, mu, sigma, broadcast=True, scale=False): _locals_dict["rng_lognormal"] = rng_lognormal - sharrow_enabled = config.setting("sharrow", False) + sharrow_enabled = state.settings.sharrow # need to be able to identify which variables causes an error, which keeps # this from being expressed more parsimoniously @@ -343,7 +348,6 @@ def rng_lognormal(random_draws, mu, sigma, broadcast=True, scale=False): continue try: - # FIXME - log any numpy warnings/errors but don't raise np_logger.target = str(target) np_logger.expression = str(expression) @@ -354,17 +358,21 @@ def rng_lognormal(random_draws, mu, sigma, broadcast=True, scale=False): globals_dict = {} expr_values = to_series(eval(expression, globals_dict, _locals_dict)) - if ( - sharrow_enabled - and np.issubdtype(expr_values.dtype, np.floating) - and expr_values.dtype.itemsize < 4 - ): - # promote to float32, numba is not presently compatible with - # any float less than 32 (i.e., float16) - # see https://github.com/numba/numba/issues/4402 - # note this only applies to floats, signed and unsigned - # integers are readily supported down to 1 byte - expr_values = expr_values.astype(np.float32) + if sharrow_enabled: + if isinstance(expr_values.dtype, pd.api.types.CategoricalDtype): + None + elif ( + np.issubdtype(expr_values.dtype, np.floating) + and expr_values.dtype.itemsize < 4 + ): + # promote to float32, numba is not presently compatible with + # any float less than 32 (i.e., float16) + # see https://github.com/numba/numba/issues/4402 + # note this only applies to floats, signed and unsigned + # integers are readily supported down to 1 byte + expr_values = expr_values.astype(np.float32) + else: + None np.seterr(**save_err) np.seterrcall(saved_handler) @@ -388,7 +396,8 @@ def rng_lognormal(random_draws, mu, sigma, broadcast=True, scale=False): # just keeping track of temps so we can chunk.log_df if is_temp(target): - temps[target] = expr_values + if chunk_log: + temps[target] = expr_values else: variables[target] = expr_values @@ -396,7 +405,6 @@ def rng_lognormal(random_draws, mu, sigma, broadcast=True, scale=False): _locals_dict[target] = expr_values if trace_results is not None: - trace_results = pd.DataFrame.from_dict(trace_results) trace_results.index = df[trace_rows].index @@ -407,13 +415,20 @@ def rng_lognormal(random_draws, mu, sigma, broadcast=True, scale=False): assert variables, "No non-temp variables were assigned." if chunk_log: - chunk.log_df(trace_label, "temps", temps) - chunk.log_df(trace_label, "variables", variables) + chunk_log.log_df(trace_label, "temps", temps) + chunk_log.log_df(trace_label, "variables", variables) # these are going away - let caller log result df - chunk.log_df(trace_label, "temps", None) - chunk.log_df(trace_label, "variables", None) + chunk_log.log_df(trace_label, "temps", None) + chunk_log.log_df(trace_label, "variables", None) # we stored result in dict - convert to df variables = util.df_from_dict(variables, index=df.index) + util.auto_opt_pd_dtypes( + variables, + downcast_int=state.settings.downcast_int, + downcast_float=state.settings.downcast_float, + inplace=True, + ) + return variables, trace_results, trace_assigned_locals diff --git a/activitysim/core/chunk.py b/activitysim/core/chunk.py index 6634b479d..6ad77a7be 100644 --- a/activitysim/core/chunk.py +++ b/activitysim/core/chunk.py @@ -1,6 +1,8 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import datetime import glob import logging @@ -15,8 +17,8 @@ import pandas as pd import xarray as xr -from . import config, mem, tracing, util -from .util import GB +from activitysim.core import configuration, mem, tracing, util, workflow +from activitysim.core.util import GB logger = logging.getLogger(__name__) @@ -52,7 +54,7 @@ MODE_RETRAIN rebuild chunk_cache table and save/replace in output/cache/chunk_cache.csv preforms a complete rebuild of chunk_cache table by doing adaptive chunking starting with based on default initial - settings (DEFAULT_INITIAL_ROWS_PER_CHUNK) and observing rss, uss, and allocated bytes to compute rows_size. + settings (see configuration.settings) and observing rss, uss, and allocated bytes to compute rows_size. This will run somewhat slower than the other modes because of overhead of small first chunk, and possible instability in the second chunk due to inaccuracies caused by small initial chunk_size sample @@ -72,13 +74,27 @@ MODE_CHUNKLESS Do not do chunking, and also do not check or log memory usage, so ActivitySim can focus on performance assuming there is abundant RAM. + +MODE_EXPLICIT + Allow the user to explicitly set a chunk size (number of chooser row per chunk) + for each component. No assessment of overhead is made, and all responsibility + for monitoring RAM usage is and ensuring quality performance is transferred to the + model user. If a component is missing an `explicit_chunk` setting, it is assumed + to be run in a single chunk. """ MODE_RETRAIN = "training" MODE_ADAPTIVE = "adaptive" MODE_PRODUCTION = "production" MODE_CHUNKLESS = "disabled" -TRAINING_MODES = [MODE_RETRAIN, MODE_ADAPTIVE, MODE_PRODUCTION, MODE_CHUNKLESS] +MODE_EXPLICIT = "explicit" +TRAINING_MODES = [ + MODE_RETRAIN, + MODE_ADAPTIVE, + MODE_PRODUCTION, + MODE_CHUNKLESS, + MODE_EXPLICIT, +] # # low level @@ -89,10 +105,6 @@ LOG_SUBCHUNK_HISTORY = False # only useful for debugging WRITE_SUBCHUNK_HISTORY = False # only useful for debugging -DEFAULT_INITIAL_ROWS_PER_CHUNK = ( - 100 # fallback for default_initial_rows_per_chunk setting -) - # # cache and history files @@ -121,35 +133,26 @@ # globals # -SETTINGS = {} -CHUNK_LEDGERS = [] -CHUNK_SIZERS = [] ledger_lock = threading.Lock() -def chunk_method(): - method = SETTINGS.get("chunk_method") - if method is None: - method = SETTINGS.setdefault( - "chunk_method", config.setting("chunk_method", DEFAULT_CHUNK_METHOD) - ) - assert ( - method in CHUNK_METHODS - ), f"chunk_method setting '{method}' not recognized. Should be one of: {CHUNK_METHODS}" +def chunk_method(state: workflow.State): + method = state.settings.chunk_method + # if method is None: + # method = SETTINGS.setdefault("chunk_method", state.settings.chunk_method) + # assert ( + # method in CHUNK_METHODS + # ), f"chunk_method setting '{method}' not recognized. Should be one of: {CHUNK_METHODS}" return method -def chunk_metric(): - return SETTINGS.setdefault( - "chunk_metric", USS if chunk_method() in USS_CHUNK_METHODS else "rss" - ) +def chunk_metric(state: workflow.State): + return USS if chunk_method(state) in USS_CHUNK_METHODS else "rss" -def chunk_training_mode(): - training_mode = SETTINGS.setdefault( - "chunk_training_mode", config.setting("chunk_training_mode", MODE_ADAPTIVE) - ) +def chunk_training_mode(state: workflow.State): + training_mode = state.settings.chunk_training_mode if not training_mode: training_mode = MODE_CHUNKLESS assert ( @@ -158,47 +161,31 @@ def chunk_training_mode(): return training_mode -def chunk_logging(): - return len(CHUNK_LEDGERS) > 0 - - -def default_initial_rows_per_chunk(): - return SETTINGS.setdefault( - "default_initial_rows_per_chunk", - config.setting( - "default_initial_rows_per_chunk", DEFAULT_INITIAL_ROWS_PER_CHUNK - ), - ) +def chunk_logging(state: workflow.State): + return len(state.chunk.CHUNK_LEDGERS) > 0 -def min_available_chunk_ratio(): - return SETTINGS.setdefault( - "min_available_chunk_ratio", config.setting("min_available_chunk_ratio", 0) - ) +def min_available_chunk_ratio(state: workflow.State): + return state.settings.min_available_chunk_ratio -def keep_chunk_logs(): - # if we are overwriting MEM_LOG_FILE then presumably we want to delete any subprocess files - default = LOG_FILE_NAME == OMNIBUS_LOG_FILE_NAME - - return SETTINGS.setdefault( - "keep_chunk_logs", config.setting("keep_chunk_logs", default) - ) +def keep_chunk_logs(state: workflow.State): + return state.settings.keep_chunk_logs -def trace_label_for_chunk(trace_label, chunk_size, i): +def trace_label_for_chunk(state: workflow.State, trace_label: str, chunk_size, i): # add chunk_num to trace_label # if chunk_size > 0: # trace_label = tracing.extend_trace_label(trace_label, f'chunk_{i}') return trace_label -def get_base_chunk_size(): - assert len(CHUNK_SIZERS) > 0 - return CHUNK_SIZERS[0].chunk_size +def get_base_chunk_size(state: workflow.State): + assert len(state.chunk.CHUNK_SIZERS) > 0 + return state.chunk.CHUNK_SIZERS[0].chunk_size -def overhead_for_chunk_method(overhead, method=None): +def overhead_for_chunk_method(state: workflow.State, overhead, method=None): """ return appropriate overhead for row_size calculation based on current chunk_method @@ -217,7 +204,6 @@ def overhead_for_chunk_method(overhead, method=None): """ def hybrid(xss, bytes): - # this avoids pessimistic underchunking on second chunk without pre-existing cache # but it tends to overshoot on a trained runs # hybrid_overhead = np.maximum(bytes, (xss + bytes) / 2) @@ -228,7 +214,7 @@ def hybrid(xss, bytes): return hybrid_overhead - method = method or chunk_method() + method = method or chunk_method(state) if method == HYBRID_RSS: oh = hybrid(overhead[RSS], overhead[BYTES]) @@ -241,15 +227,14 @@ def hybrid(xss, bytes): return oh -def consolidate_logs(): - - glob_file_name = config.log_file_path(f"*{LOG_FILE_NAME}", prefix=False) - glob_files = glob.glob(glob_file_name) +def consolidate_logs(state: workflow.State): + glob_file_name = state.get_log_file_path(f"*{LOG_FILE_NAME}", prefix=False) + glob_files = glob.glob(str(glob_file_name)) if not glob_files: return - assert chunk_training_mode() not in (MODE_PRODUCTION, MODE_CHUNKLESS), ( + assert chunk_training_mode(state) not in (MODE_PRODUCTION, MODE_CHUNKLESS), ( f"shouldn't be any chunk log files when chunk_training_mode" f" is {MODE_PRODUCTION} or {MODE_CHUNKLESS}" ) @@ -275,10 +260,10 @@ def consolidate_logs(): len(multi_depth_chunk_tag) == 0 ), f"consolidate_logs multi_depth_chunk_tags \n{multi_depth_chunk_tag.values}" - if not keep_chunk_logs(): + if not keep_chunk_logs(state): util.delete_files(glob_files, "chunk.consolidate_logs") - log_output_path = config.log_file_path(OMNIBUS_LOG_FILE_NAME, prefix=False) + log_output_path = state.get_log_file_path(OMNIBUS_LOG_FILE_NAME, prefix=False) logger.debug(f"chunk.consolidate_logs writing omnibus log to {log_output_path}") omnibus_df.to_csv(log_output_path, mode="w", index=False) @@ -311,27 +296,31 @@ def consolidate_logs(): num_rows = omnibus_df[C_NUM_ROWS] for m in USS_CHUNK_METHODS: omnibus_df[f"{m}_row_size"] = np.ceil( - overhead_for_chunk_method(omnibus_df, m) / num_rows + overhead_for_chunk_method(state, omnibus_df, m) / num_rows ).astype(int) omnibus_df = omnibus_df.sort_values(by=C_CHUNK_TAG) - log_dir_output_path = config.log_file_path(CACHE_FILE_NAME, prefix=False) + log_dir_output_path = state.get_log_file_path(CACHE_FILE_NAME, prefix=False) logger.debug( f"chunk.consolidate_logs writing omnibus chunk cache to {log_dir_output_path}" ) omnibus_df.to_csv(log_dir_output_path, mode="w", index=False) - if (chunk_training_mode() == MODE_RETRAIN) or not _HISTORIAN.have_cached_history: - - if config.setting("resume_after"): + if ( + chunk_training_mode( + state, + ) + == MODE_RETRAIN + ) or not state.chunk.HISTORIAN.have_cached_history: + if state.settings.resume_after: # FIXME logger.warning( f"Not updating chunk_log cache directory because resume_after" ) else: cache_dir_output_path = os.path.join( - config.get_cache_dir(), CACHE_FILE_NAME + state.filesystem.get_cache_dir(), CACHE_FILE_NAME ) logger.debug( f"chunk.consolidate_logs writing chunk cache to {cache_dir_output_path}" @@ -339,20 +328,23 @@ def consolidate_logs(): omnibus_df.to_csv(cache_dir_output_path, mode="w", index=False) -class ChunkHistorian(object): +class ChunkHistorian: """ Utility for estimating row_size """ def __init__(self): - self.chunk_log_path = None self.have_cached_history = None self.cached_history_df = None - def load_cached_history(self): - - if chunk_training_mode() == MODE_RETRAIN: + def load_cached_history(self, state: workflow.State): + if ( + chunk_training_mode( + state, + ) + == MODE_RETRAIN + ): # don't need cached history if retraining return @@ -360,7 +352,9 @@ def load_cached_history(self): # already loaded, nothing to do return - chunk_cache_path = os.path.join(config.get_cache_dir(), CACHE_FILE_NAME) + chunk_cache_path = os.path.join( + state.filesystem.get_cache_dir(), CACHE_FILE_NAME + ) logger.debug( f"ChunkHistorian load_cached_history chunk_cache_path {chunk_cache_path}" @@ -383,33 +377,40 @@ def load_cached_history(self): else: self.have_cached_history = False - if chunk_training_mode() == MODE_CHUNKLESS: + if ( + chunk_training_mode( + state, + ) + == MODE_CHUNKLESS + ): return - if chunk_training_mode() == MODE_PRODUCTION: + if ( + chunk_training_mode( + state, + ) + == MODE_PRODUCTION + ): # raise RuntimeError(f"chunk_training_mode is {MODE_PRODUCTION} but no chunk_cache: {chunk_cache_path}") - SETTINGS["chunk_training_mode"] = MODE_RETRAIN + state.settings.chunk_training_mode = MODE_RETRAIN logger.warning( f"chunk_training_mode is {MODE_PRODUCTION} but no chunk_cache: {chunk_cache_path}" ) logger.warning( - f"chunk_training_mode falling back to {chunk_training_mode()}" + f"chunk_training_mode falling back to {chunk_training_mode(state,)}" ) - def cached_history_for_chunk_tag(self, chunk_tag): - + def cached_history_for_chunk_tag(self, state: workflow.State, chunk_tag): history = {} - self.load_cached_history() + self.load_cached_history(state) if self.have_cached_history: - try: df = self.cached_history_df[ self.cached_history_df[C_CHUNK_TAG] == chunk_tag ] if len(df) > 0: - if len(df) > 1: # don't expect this, but not fatal logger.warning( @@ -428,23 +429,25 @@ def cached_history_for_chunk_tag(self, chunk_tag): return history - def cached_row_size(self, chunk_tag): - + def cached_row_size(self, state: workflow.State, chunk_tag): row_size = 0 - cached_history = self.cached_history_for_chunk_tag(chunk_tag) + cached_history = self.cached_history_for_chunk_tag(state, chunk_tag) if cached_history: cum_overhead = {m: cached_history[m] for m in METRICS} num_rows = cached_history[C_NUM_ROWS] # initial_row_size based on cum_overhead and rows_processed from chunk_cache - row_size = math.ceil(overhead_for_chunk_method(cum_overhead) / num_rows) + row_size = math.ceil( + overhead_for_chunk_method(state, cum_overhead) / num_rows + ) return row_size - def write_history(self, history, chunk_tag): - - assert chunk_training_mode() not in (MODE_PRODUCTION, MODE_CHUNKLESS) + def write_history(self, state: workflow.State, history, chunk_tag): + assert chunk_training_mode( + state, + ) not in (MODE_PRODUCTION, MODE_CHUNKLESS) history_df = pd.DataFrame.from_dict(history) @@ -457,7 +460,7 @@ def write_history(self, history, chunk_tag): history_df = history_df[CHUNK_HISTORY_COLUMNS] if self.chunk_log_path is None: - self.chunk_log_path = config.log_file_path(LOG_FILE_NAME) + self.chunk_log_path = state.get_log_file_path(LOG_FILE_NAME) tracing.write_df_csv( history_df, @@ -469,17 +472,23 @@ def write_history(self, history, chunk_tag): ) -_HISTORIAN = ChunkHistorian() - - -class ChunkLedger(object): +class ChunkLedger: """ """ - def __init__(self, trace_label, chunk_size, baseline_rss, baseline_uss, headroom): + def __init__( + self, + state: workflow.State, + trace_label, + chunk_size, + baseline_rss, + baseline_uss, + headroom, + ): + self.state = state self.trace_label = trace_label self.chunk_size = chunk_size self.headroom = headroom - self.base_chunk_size = get_base_chunk_size() + self.base_chunk_size = get_base_chunk_size(state) self.tables = {} self.hwm_bytes = {"value": 0, "info": f"{trace_label}.init"} @@ -487,9 +496,12 @@ def __init__(self, trace_label, chunk_size, baseline_rss, baseline_uss, headroom self.hwm_uss = {"value": baseline_uss, "info": f"{trace_label}.init"} self.total_bytes = 0 - def audit(self, msg, bytes=0, rss=0, uss=0, from_rss_monitor=False): - - assert chunk_training_mode() not in (MODE_PRODUCTION, MODE_CHUNKLESS) + def audit( + self, state: workflow.State, msg, bytes=0, rss=0, uss=0, from_rss_monitor=False + ): + assert chunk_training_mode( + state, + ) not in (MODE_PRODUCTION, MODE_CHUNKLESS) MAX_OVERDRAFT = 0.2 @@ -505,7 +517,7 @@ def audit(self, msg, bytes=0, rss=0, uss=0, from_rss_monitor=False): f"bytes: {bytes} headroom: {self.headroom} chunk_size: {self.base_chunk_size} {msg}" ) - if chunk_metric() == RSS and rss > mem_panic_threshold: + if chunk_metric(state) == RSS and rss > mem_panic_threshold: rss, _ = mem.get_rss(force_garbage_collect=True, uss=False) if rss > mem_panic_threshold: logger.warning( @@ -513,7 +525,7 @@ def audit(self, msg, bytes=0, rss=0, uss=0, from_rss_monitor=False): f"rss: {rss} chunk_size: {self.base_chunk_size} {msg}" ) - if chunk_metric() == USS and uss > mem_panic_threshold: + if chunk_metric(state) == USS and uss > mem_panic_threshold: _, uss = mem.get_rss(force_garbage_collect=True, uss=True) if uss > mem_panic_threshold: logger.warning( @@ -533,7 +545,7 @@ def close(self): f"ChunkLedger.close hwm_uss {self.hwm_uss['value']} {self.hwm_uss['info']}" ) - def log_df(self, table_name, df): + def log_df(self, state: workflow.State, table_name: str, df): def size_it(df): if isinstance(df, pd.Series): elements = util.iprod(df.shape) @@ -565,7 +577,7 @@ def size_it(df): assert False return elements, bytes - assert chunk_training_mode() not in (MODE_PRODUCTION, MODE_CHUNKLESS) + assert chunk_training_mode(state) not in (MODE_PRODUCTION, MODE_CHUNKLESS) if df is None: elements, bytes = (0, 0) @@ -595,9 +607,15 @@ def size_it(df): # update current total_bytes count self.total_bytes = sum(self.tables.values()) - def check_local_hwm(self, hwm_trace_label, rss, uss, total_bytes): - - assert chunk_training_mode() not in (MODE_PRODUCTION, MODE_CHUNKLESS) + def check_local_hwm( + self, + state: workflow.State, + hwm_trace_label: str, + rss: int, + uss: int, + total_bytes: int, + ): + assert chunk_training_mode(state) not in (MODE_PRODUCTION, MODE_CHUNKLESS) from_rss_monitor = total_bytes is None @@ -615,19 +633,23 @@ def check_local_hwm(self, hwm_trace_label, rss, uss, total_bytes): # total_bytes high water mark self.hwm_bytes["value"] = total_bytes self.hwm_bytes["info"] = info - self.audit(hwm_trace_label, bytes=total_bytes) + self.audit(state, hwm_trace_label, bytes=total_bytes) if rss > self.hwm_rss["value"]: # rss high water mark self.hwm_rss["value"] = rss self.hwm_rss["info"] = info - self.audit(hwm_trace_label, rss=rss, from_rss_monitor=from_rss_monitor) + self.audit( + state, hwm_trace_label, rss=rss, from_rss_monitor=from_rss_monitor + ) if uss > self.hwm_uss["value"]: # uss high water mark self.hwm_uss["value"] = uss self.hwm_uss["info"] = info - self.audit(hwm_trace_label, uss=uss, from_rss_monitor=from_rss_monitor) + self.audit( + state, hwm_trace_label, uss=uss, from_rss_monitor=from_rss_monitor + ) # silently registers global high water mark mem.check_global_hwm(RSS, rss, hwm_trace_label) @@ -636,12 +658,12 @@ def check_local_hwm(self, hwm_trace_label, rss, uss, total_bytes): mem.check_global_hwm(BYTES, total_bytes, hwm_trace_label) def get_hwm_rss(self): - with ledger_lock: + with self.state.chunk.ledger_lock: net_rss = self.hwm_rss["value"] return net_rss def get_hwm_uss(self): - with ledger_lock: + with self.state.chunk.ledger_lock: net_uss = self.hwm_uss["value"] return net_uss @@ -649,76 +671,77 @@ def get_hwm_bytes(self): return self.hwm_bytes["value"] -def log_rss(trace_label, force=False): - - if chunk_training_mode() == MODE_CHUNKLESS: +def log_rss(state: workflow.State, trace_label: str, force=False): + if chunk_training_mode(state) == MODE_CHUNKLESS: # no memory tracing at all in chunkless mode return - assert len(CHUNK_LEDGERS) > 0, f"log_rss called without current chunker." + assert ( + len(state.chunk.CHUNK_LEDGERS) > 0 + ), f"log_rss called without current chunker." hwm_trace_label = f"{trace_label}.log_rss" - if chunk_training_mode() == MODE_PRODUCTION: + if chunk_training_mode(state) == MODE_PRODUCTION: # FIXME - this trace_memory_info call slows things down a lot so it is turned off for now # trace_ticks = 0 if force else mem.MEM_TRACE_TICK_LEN # mem.trace_memory_info(hwm_trace_label, trace_ticks=trace_ticks) return - rss, uss = mem.trace_memory_info(hwm_trace_label) - - # check local hwm for all ledgers - with ledger_lock: - for c in CHUNK_LEDGERS: - c.check_local_hwm(hwm_trace_label, rss, uss, total_bytes=None) - - -def log_df(trace_label, table_name, df): - - if chunk_training_mode() in (MODE_PRODUCTION, MODE_CHUNKLESS): - return - - assert len(CHUNK_LEDGERS) > 0, f"log_df called without current chunker." - - op = "del" if df is None else "add" - hwm_trace_label = f"{trace_label}.{op}.{table_name}" - - rss, uss = mem.trace_memory_info(hwm_trace_label) - - cur_chunker = CHUNK_LEDGERS[-1] - - # registers this df and recalc total_bytes - cur_chunker.log_df(table_name, df) - - total_bytes = sum([c.total_bytes for c in CHUNK_LEDGERS]) + rss, uss = mem.trace_memory_info(hwm_trace_label, state=state) # check local hwm for all ledgers - with ledger_lock: - for c in CHUNK_LEDGERS: - c.check_local_hwm(hwm_trace_label, rss, uss, total_bytes) + with state.chunk.ledger_lock: + for c in state.chunk.CHUNK_LEDGERS: + c.check_local_hwm(state, hwm_trace_label, rss, uss, total_bytes=None) class MemMonitor(threading.Thread): - def __init__(self, trace_label, stop_snooping): + def __init__( + self, state: workflow.State, trace_label: str, stop_snooping: threading.Event + ): self.trace_label = trace_label self.stop_snooping = stop_snooping + self.state = state threading.Thread.__init__(self) def run(self): - log_rss(self.trace_label) + log_rss(self.state, self.trace_label) while not self.stop_snooping.wait(timeout=mem.MEM_SNOOP_TICK_LEN): - log_rss(self.trace_label) + log_rss(self.state, self.trace_label) -class ChunkSizer(object): +class ChunkSizer: """ """ - def __init__(self, chunk_tag, trace_label, num_choosers=0, chunk_size=0): - - self.depth = len(CHUNK_SIZERS) + 1 + def __init__( + self, + state: workflow.State, + chunk_tag, + trace_label, + num_choosers=0, + chunk_size=0, + chunk_training_mode="disabled", + ): + self.state = state + if state is not None: + self.depth = len(state.chunk.CHUNK_SIZERS) + 1 + self.chunk_training_mode = chunk_training_mode + self.chunk_tag = chunk_tag + self.trace_label = trace_label + self.chunk_size = chunk_size + self.num_choosers = num_choosers + self.rows_processed = 0 + self.initial_row_size = 0 + self.rows_per_chunk = 0 + self.chunk_ledger = None + self.history = {} + self.cum_rows = 0 + self.cum_overhead = {m: 0 for m in METRICS} + self.headroom = None - if chunk_training_mode() != MODE_CHUNKLESS: - if chunk_metric() == USS: + if self.chunk_training_mode not in (MODE_CHUNKLESS, MODE_EXPLICIT): + if chunk_metric(self.state) == USS: self.rss, self.uss = mem.get_rss(force_garbage_collect=True, uss=True) else: self.rss, _ = mem.get_rss(force_garbage_collect=True, uss=False) @@ -730,17 +753,18 @@ def __init__(self, chunk_tag, trace_label, num_choosers=0, chunk_size=0): # if we are in a nested call, then we must be in the scope of active Ledger # so any rss accumulated so far should be attributed to the parent active ledger - assert len(CHUNK_SIZERS) == len(CHUNK_LEDGERS) - parent = CHUNK_SIZERS[-1] + assert len(state.chunk.CHUNK_SIZERS) == len(state.chunk.CHUNK_LEDGERS) + parent = state.chunk.CHUNK_SIZERS[-1] assert parent.chunk_ledger is not None - log_rss( - trace_label - ) # give parent a complementary log_rss reading entering sub context + log_rss(self.state, trace_label) + # give parent a complementary log_rss reading entering sub context else: self.rss, self.uss = 0, 0 - chunk_size = 0 - config.override_setting("chunk_size", 0) + # config.override_setting("chunk_size", 0) + if self.chunk_training_mode == MODE_CHUNKLESS: + # chunkless needs nothing else + return self.chunk_tag = chunk_tag self.trace_label = trace_label @@ -749,23 +773,22 @@ def __init__(self, chunk_tag, trace_label, num_choosers=0, chunk_size=0): self.num_choosers = num_choosers self.rows_processed = 0 - min_chunk_ratio = min_available_chunk_ratio() + if self.chunk_training_mode == MODE_EXPLICIT: + self.rows_per_chunk = chunk_size + # explicit needs nothing else + return + + min_chunk_ratio = min_available_chunk_ratio(self.state) assert ( 0 <= min_chunk_ratio <= 1 ), f"min_chunk_ratio setting {min_chunk_ratio} is not in range [0..1]" self.min_chunk_size = chunk_size * min_chunk_ratio - self.initial_row_size = 0 - self.rows_per_chunk = 0 - self.chunk_ledger = None - self.history = {} - - self.cum_rows = 0 - self.cum_overhead = {m: 0 for m in METRICS} - # if production mode, to reduce volatility, initialize cum_overhead and cum_rows from cache - if chunk_training_mode() in [MODE_ADAPTIVE, MODE_PRODUCTION]: - cached_history = _HISTORIAN.cached_history_for_chunk_tag(self.chunk_tag) + if self.chunk_training_mode in [MODE_ADAPTIVE, MODE_PRODUCTION]: + cached_history = self.state.chunk.HISTORIAN.cached_history_for_chunk_tag( + self.state, self.chunk_tag + ) if cached_history: self.cum_overhead = {m: cached_history[m] for m in METRICS} self.cum_rows = cached_history[C_NUM_ROWS] @@ -776,33 +799,36 @@ def __init__(self, chunk_tag, trace_label, num_choosers=0, chunk_size=0): f"cum_overhead: {self.cum_overhead} " ) - # add self to CHUNK_SIZERS list before setting base_chunk_size (since we might be base chunker) - CHUNK_SIZERS.append(self) + # add self to state.chunk.CHUNK_SIZERS list before setting base_chunk_size (since we might be base chunker) + state.chunk.CHUNK_SIZERS.append(self) - self.base_chunk_size = CHUNK_SIZERS[0].chunk_size + self.base_chunk_size = state.chunk.CHUNK_SIZERS[0].chunk_size # need base_chunk_size to calc headroom self.headroom = self.available_headroom( - self.uss if chunk_metric() == USS else self.rss + self.uss if chunk_metric(self.state) == USS else self.rss ) def close(self): + if self.chunk_training_mode in (MODE_CHUNKLESS, MODE_EXPLICIT): + return if ((self.depth == 1) or WRITE_SUBCHUNK_HISTORY) and ( - chunk_training_mode() not in (MODE_PRODUCTION, MODE_CHUNKLESS) + self.chunk_training_mode + not in (MODE_PRODUCTION, MODE_CHUNKLESS, MODE_EXPLICIT) ): - _HISTORIAN.write_history(self.history, self.chunk_tag) + self.state.chunk.HISTORIAN.write_history( + self.state, self.history, self.chunk_tag + ) - _chunk_sizer = CHUNK_SIZERS.pop() + _chunk_sizer = self.state.chunk.CHUNK_SIZERS.pop() assert _chunk_sizer == self def available_headroom(self, xss): - headroom = self.base_chunk_size - xss # adjust deficient headroom to min_chunk_size if headroom < self.min_chunk_size: - if self.base_chunk_size > 0: logger.warning( f"Not enough memory for minimum chunk_size without exceeding specified chunk_size. " @@ -816,19 +842,30 @@ def available_headroom(self, xss): return headroom def initial_rows_per_chunk(self): + if self.chunk_training_mode == MODE_EXPLICIT: + if self.rows_per_chunk: + number_of_chunks = self.num_choosers // self.rows_per_chunk + ( + 1 if self.num_choosers % self.rows_per_chunk else 0 + ) + else: + number_of_chunks = 1 + return self.rows_per_chunk, number_of_chunks - # whatever the TRAINING_MODE, use cache to determine initial_row_size + # for any other TRAINING_MODE, use cache to determine initial_row_size # (presumably preferable to default_initial_rows_per_chunk) - self.initial_row_size = _HISTORIAN.cached_row_size(self.chunk_tag) + self.initial_row_size = self.state.chunk.HISTORIAN.cached_row_size( + self.state, self.chunk_tag + ) if self.chunk_size == 0: rows_per_chunk = self.num_choosers estimated_number_of_chunks = 1 self.initial_row_size = 0 else: - # we should be a base chunker - assert len(CHUNK_LEDGERS) == 0, f"len(CHUNK_LEDGERS): {len(CHUNK_LEDGERS)}" + assert ( + len(self.state.chunk.CHUNK_LEDGERS) == 0 + ), f"len(state.chunk.CHUNK_LEDGERS): {len(self.state.chunk.CHUNK_LEDGERS)}" if self.initial_row_size > 0: max_rows_per_chunk = np.maximum( @@ -846,11 +883,12 @@ def initial_rows_per_chunk(self): # if no initial_row_size from cache, fall back to default_initial_rows_per_chunk self.initial_row_size = 0 rows_per_chunk = min( - self.num_choosers, default_initial_rows_per_chunk() + self.num_choosers, + self.state.settings.default_initial_rows_per_chunk, ) estimated_number_of_chunks = None - if chunk_training_mode() == MODE_PRODUCTION: + if self.chunk_training_mode == MODE_PRODUCTION: warnings.warn( "ActivitySim is running with a chunk_training_mode of " f"'production' but initial_row_size is zero in {self.trace_label}" @@ -872,6 +910,15 @@ def initial_rows_per_chunk(self): return rows_per_chunk, estimated_number_of_chunks def adaptive_rows_per_chunk(self, i): + if self.chunk_training_mode == MODE_EXPLICIT: + if self.rows_per_chunk: + number_of_chunks = self.num_choosers // self.rows_per_chunk + ( + 1 if self.num_choosers % self.rows_per_chunk else 0 + ) + else: + number_of_chunks = 1 + return self.rows_per_chunk, number_of_chunks + # rows_processed is out of phase with cum_overhead # overhead is the actual bytes/rss used top process chooser chunk with prev_rows_per_chunk rows @@ -883,28 +930,26 @@ def adaptive_rows_per_chunk(self, i): prev_rss = self.rss prev_uss = self.uss - if chunk_training_mode() != MODE_PRODUCTION: - - if chunk_metric() == USS: + if self.chunk_training_mode != MODE_PRODUCTION: + if chunk_metric(self.state) == USS: self.rss, self.uss = mem.get_rss(force_garbage_collect=True, uss=True) else: self.rss, _ = mem.get_rss(force_garbage_collect=True, uss=False) self.uss = 0 self.headroom = self.available_headroom( - self.uss if chunk_metric() == USS else self.rss + self.uss if chunk_metric(self.state) == USS else self.rss ) rows_remaining = self.num_choosers - prev_rows_processed - if chunk_training_mode() == MODE_PRODUCTION: + if self.chunk_training_mode == MODE_PRODUCTION: # since overhead changes we don't necessarily want the same number of rows per chunk every time # but we do use the row_size from cache which we trust is stable # which is stored in self.initial_row_size because initial_rows_per_chunk used it for the first chunk observed_row_size = self.initial_row_size overhead = self.cum_overhead.copy() else: - # calculate overhead for this chunk iteration overhead = {} overhead[BYTES] = self.chunk_ledger.get_hwm_bytes() @@ -915,7 +960,7 @@ def adaptive_rows_per_chunk(self, i): self.cum_overhead[m] += overhead[m] observed_row_size = prev_cum_rows and math.ceil( - overhead_for_chunk_method(self.cum_overhead) / prev_cum_rows + overhead_for_chunk_method(self.state, self.cum_overhead) / prev_cum_rows ) # rows_per_chunk is closest number of chooser rows to achieve chunk_size without exceeding it @@ -946,7 +991,7 @@ def adaptive_rows_per_chunk(self, i): # diagnostics not reported by ChunkHistorian - if chunk_metric() == USS: + if chunk_metric(self.state) == USS: self.history.setdefault("prev_uss", []).append(prev_uss) self.history.setdefault("cur_uss", []).append(self.uss) else: @@ -973,85 +1018,165 @@ def adaptive_rows_per_chunk(self, i): # input() - if chunk_training_mode() not in (MODE_PRODUCTION, MODE_CHUNKLESS): + if self.chunk_training_mode not in ( + MODE_PRODUCTION, + MODE_CHUNKLESS, + MODE_EXPLICIT, + ): self.cum_rows += self.rows_per_chunk return self.rows_per_chunk, estimated_number_of_chunks @contextmanager def ledger(self): - - # don't do anything in chunkless mode - if chunk_training_mode() == MODE_CHUNKLESS: + # don't do anything in chunkless mode or explicit mode + if self.chunk_training_mode in (MODE_CHUNKLESS, MODE_EXPLICIT): yield return mem_monitor = None # nested chunkers should be unchunked - if len(CHUNK_LEDGERS) > 0: + if len(self.state.chunk.CHUNK_LEDGERS) > 0: assert self.chunk_size == 0 - with ledger_lock: + with self.state.chunk.ledger_lock: self.chunk_ledger = ChunkLedger( - self.trace_label, self.chunk_size, self.rss, self.uss, self.headroom + self.state, + self.trace_label, + self.chunk_size, + self.rss, + self.uss, + self.headroom, ) - CHUNK_LEDGERS.append(self.chunk_ledger) + self.state.chunk.CHUNK_LEDGERS.append(self.chunk_ledger) # reality check - there should be one ledger per sizer - assert len(CHUNK_LEDGERS) == len(CHUNK_SIZERS) + assert len(self.state.chunk.CHUNK_LEDGERS) == len(self.state.chunk.CHUNK_SIZERS) + + stop_snooping = None try: # all calls to log_df within this block will be directed to top level chunk_ledger # and passed on down the stack to the base to support hwm tallies # if this is a base chunk_sizer (and ledger) then start a thread to monitor rss usage - if (len(CHUNK_LEDGERS) == 1) and ENABLE_MEMORY_MONITOR: + if (len(self.state.chunk.CHUNK_LEDGERS) == 1) and ENABLE_MEMORY_MONITOR: stop_snooping = threading.Event() - mem_monitor = MemMonitor(self.trace_label, stop_snooping) + mem_monitor = MemMonitor(self.state, self.trace_label, stop_snooping) mem_monitor.start() log_rss( - self.trace_label, force=True + self.state, self.trace_label, force=True ) # make sure we get at least one reading yield log_rss( - self.trace_label, force=True + self.state, self.trace_label, force=True ) # make sure we get at least one reading finally: - if mem_monitor is not None: - if not mem_monitor.is_alive(): logger.error(f"mem_monitor for {self.trace_label} died!") - bug # bug + raise RuntimeError("bug") - stop_snooping.set() + if stop_snooping is not None: + stop_snooping.set() while mem_monitor.is_alive(): logger.debug( f"{self.trace_label} waiting for mem_monitor thread to terminate" ) mem_monitor.join(timeout=MEM_MONITOR_TICK) - with ledger_lock: + with self.state.chunk.ledger_lock: self.chunk_ledger.close() - CHUNK_LEDGERS.pop() + self.state.chunk.CHUNK_LEDGERS.pop() self.chunk_ledger = None + def log_rss(self, trace_label: str, force: bool = False): + if self.chunk_training_mode in (MODE_CHUNKLESS, MODE_EXPLICIT): + # no memory tracing at all in chunkless or explicit mode + return + + assert ( + len(self.state.chunk.CHUNK_LEDGERS) > 0 + ), f"log_rss called without current chunker." + + hwm_trace_label = f"{trace_label}.log_rss" + + if self.chunk_training_mode == MODE_PRODUCTION: + # FIXME - this trace_memory_info call slows things down a lot so it is turned off for now + # trace_ticks = 0 if force else mem.MEM_TRACE_TICK_LEN + # mem.trace_memory_info(hwm_trace_label, trace_ticks=trace_ticks) + return + + rss, uss = mem.trace_memory_info(hwm_trace_label, state=self.state) + + # check local hwm for all ledgers + with self.state.chunk.ledger_lock: + for c in self.state.chunk.CHUNK_LEDGERS: + c.check_local_hwm( + self.state, hwm_trace_label, rss, uss, total_bytes=None + ) + + def log_df(self, trace_label: str, table_name: str, df: pd.DataFrame): + if self.chunk_training_mode in (MODE_PRODUCTION, MODE_CHUNKLESS, MODE_EXPLICIT): + return + + assert ( + len(self.state.chunk.CHUNK_LEDGERS) > 0 + ), f"log_df called without current chunker." + + op = "del" if df is None else "add" + hwm_trace_label = f"{trace_label}.{op}.{table_name}" + + rss, uss = mem.trace_memory_info(hwm_trace_label, state=self.state) + + cur_chunker = self.state.chunk.CHUNK_LEDGERS[-1] + + # registers this df and recalc total_bytes + cur_chunker.log_df(self.state, table_name, df) + + total_bytes = sum([c.total_bytes for c in self.state.chunk.CHUNK_LEDGERS]) + + # check local hwm for all ledgers + with self.state.chunk.ledger_lock: + for c in self.state.chunk.CHUNK_LEDGERS: + c.check_local_hwm(self.state, hwm_trace_label, rss, uss, total_bytes) + @contextmanager -def chunk_log(trace_label, chunk_tag=None, base=False): +def chunk_log(state: workflow.State, trace_label, chunk_tag=None, base=False): + """ + Chunk management. + Parameters + ---------- + trace_label : str + chunk_tag : str, optional + base + + Yields + ------ + ChunkSizer + """ # With `base=True` this method can be used to instantiate # a ChunkSizer class object without actually chunking. This # avoids breaking the assertion below. - if chunk_training_mode() == MODE_CHUNKLESS: - yield + if state is None: + # use default chunk_training_mode if settings is not given + _chunk_training_mode = configuration.Settings().chunk_training_mode + else: + _chunk_training_mode = state.settings.chunk_training_mode + + if _chunk_training_mode == MODE_CHUNKLESS: + yield ChunkSizer(state, "chunkless", trace_label, 0, 0, _chunk_training_mode) return - assert base == (len(CHUNK_SIZERS) == 0) + assert (_chunk_training_mode == MODE_EXPLICIT) or ( + base == (len(state.chunk.CHUNK_SIZERS) == 0) + ), f"{base=}, {len(state.chunk.CHUNK_SIZERS)=}" trace_label = f"{trace_label}.chunk_log" @@ -1059,15 +1184,16 @@ def chunk_log(trace_label, chunk_tag=None, base=False): num_choosers = 0 chunk_size = 0 - chunk_sizer = ChunkSizer(chunk_tag, trace_label, num_choosers, chunk_size) + chunk_sizer = ChunkSizer( + state, chunk_tag, trace_label, num_choosers, chunk_size, _chunk_training_mode + ) chunk_sizer.initial_rows_per_chunk() with chunk_sizer.ledger(): + yield chunk_sizer - yield - - if chunk_training_mode() != MODE_CHUNKLESS: + if _chunk_training_mode != MODE_CHUNKLESS: chunk_sizer.adaptive_rows_per_chunk(1) chunk_sizer.close() @@ -1075,26 +1201,42 @@ def chunk_log(trace_label, chunk_tag=None, base=False): @contextmanager def chunk_log_skip(): - yield None -def adaptive_chunked_choosers(choosers, chunk_size, trace_label, chunk_tag=None): - +def adaptive_chunked_choosers( + state: workflow.State, + choosers: pd.DataFrame, + trace_label: str, + chunk_tag: str = None, + *, + chunk_size: int | None = None, + explicit_chunk_size: int = 0, +): # generator to iterate over choosers - if chunk_training_mode() == MODE_CHUNKLESS: + if state.settings.chunk_training_mode == MODE_CHUNKLESS or ( + (state.settings.chunk_training_mode == MODE_EXPLICIT) + and (explicit_chunk_size == 0) + ): # The adaptive chunking logic is expensive and sometimes results # in needless data copying. So we short circuit it entirely # when chunking is disabled. logger.info(f"Running chunkless with {len(choosers)} choosers") - yield 0, choosers, trace_label + yield 0, choosers, trace_label, ChunkSizer( + state, "chunkless", trace_label, 0, 0, state.settings.chunk_training_mode + ) return chunk_tag = chunk_tag or trace_label + if state.settings.chunk_training_mode == MODE_EXPLICIT: + chunk_size = explicit_chunk_size + elif chunk_size is None: + chunk_size = state.settings.chunk_size + num_choosers = len(choosers.index) assert num_choosers > 0 assert chunk_size >= 0 @@ -1103,20 +1245,24 @@ def adaptive_chunked_choosers(choosers, chunk_size, trace_label, chunk_tag=None) f"{trace_label} Running adaptive_chunked_choosers with {num_choosers} choosers" ) - chunk_sizer = ChunkSizer(chunk_tag, trace_label, num_choosers, chunk_size) + chunk_sizer = ChunkSizer( + state, + chunk_tag, + trace_label, + num_choosers, + chunk_size, + chunk_training_mode=state.settings.chunk_training_mode, + ) rows_per_chunk, estimated_number_of_chunks = chunk_sizer.initial_rows_per_chunk() i = offset = 0 while offset < num_choosers: - i += 1 - assert offset + rows_per_chunk <= num_choosers - chunk_trace_label = trace_label_for_chunk(trace_label, chunk_size, i) + chunk_trace_label = trace_label_for_chunk(state, trace_label, chunk_size, i) with chunk_sizer.ledger(): - # grab the next chunk based on current rows_per_chunk chooser_chunk = choosers[offset : offset + rows_per_chunk] @@ -1125,11 +1271,11 @@ def adaptive_chunked_choosers(choosers, chunk_size, trace_label, chunk_tag=None) f"with {len(chooser_chunk)} of {num_choosers} choosers" ) - yield i, chooser_chunk, chunk_trace_label + yield i, chooser_chunk, chunk_trace_label, chunk_sizer offset += rows_per_chunk - if chunk_training_mode() != MODE_CHUNKLESS: + if chunk_training_mode(state) != MODE_CHUNKLESS: ( rows_per_chunk, estimated_number_of_chunks, @@ -1139,7 +1285,14 @@ def adaptive_chunked_choosers(choosers, chunk_size, trace_label, chunk_tag=None) def adaptive_chunked_choosers_and_alts( - choosers, alternatives, chunk_size, trace_label, chunk_tag=None + state: workflow.State, + choosers: pd.DataFrame, + alternatives: pd.DataFrame, + trace_label: str, + chunk_tag: str = None, + *, + chunk_size: int | None = None, + explicit_chunk_size: int = 0, ): """ generator to iterate over choosers and alternatives in chunk_size chunks @@ -1160,7 +1313,6 @@ def adaptive_chunked_choosers_and_alts( choosers alternatives : pandas DataFrame sample alternatives including pick_count column in same order as choosers - rows_per_chunk : int Yields ------ @@ -1174,12 +1326,18 @@ def adaptive_chunked_choosers_and_alts( chunk of alternatives for chooser chunk """ - if chunk_training_mode() == MODE_CHUNKLESS: + if state.settings.chunk_training_mode == MODE_CHUNKLESS or ( + (state.settings.chunk_training_mode == MODE_EXPLICIT) + and (explicit_chunk_size == 0) + ): # The adaptive chunking logic is expensive and sometimes results # in needless data copying. So we short circuit it entirely # when chunking is disabled. logger.info(f"Running chunkless with {len(choosers)} choosers") - yield 0, choosers, alternatives, trace_label + chunk_sizer = ChunkSizer( + state, "chunkless", trace_label, 0, 0, state.settings.chunk_training_mode + ) + yield 0, choosers, alternatives, trace_label, chunk_sizer return check_assertions = False @@ -1210,7 +1368,18 @@ def adaptive_chunked_choosers_and_alts( f"with {num_choosers} choosers and {num_alternatives} alternatives" ) - chunk_sizer = ChunkSizer(chunk_tag, trace_label, num_choosers, chunk_size) + if state.settings.chunk_training_mode == MODE_EXPLICIT: + chunk_size = explicit_chunk_size + elif chunk_size is None: + chunk_size = state.settings.chunk_size + chunk_sizer = ChunkSizer( + state, + chunk_tag, + trace_label, + num_choosers, + chunk_size, + chunk_training_mode=state.settings.chunk_training_mode, + ) rows_per_chunk, estimated_number_of_chunks = chunk_sizer.initial_rows_per_chunk() assert (rows_per_chunk > 0) and (rows_per_chunk <= num_choosers) @@ -1232,10 +1401,9 @@ def adaptive_chunked_choosers_and_alts( offset + rows_per_chunk <= num_choosers ), f"i {i} offset {offset} rows_per_chunk {rows_per_chunk} num_choosers {num_choosers}" - chunk_trace_label = trace_label_for_chunk(trace_label, chunk_size, i) + chunk_trace_label = trace_label_for_chunk(state, trace_label, chunk_size, i) with chunk_sizer.ledger(): - chooser_chunk = choosers[offset : offset + rows_per_chunk] alt_end = alt_chunk_ends[offset + rows_per_chunk] @@ -1254,12 +1422,12 @@ def adaptive_chunked_choosers_and_alts( f"with {len(chooser_chunk)} of {num_choosers} choosers" ) - yield i, chooser_chunk, alternative_chunk, chunk_trace_label + yield i, chooser_chunk, alternative_chunk, chunk_trace_label, chunk_sizer offset += rows_per_chunk alt_offset = alt_end - if chunk_training_mode() != MODE_CHUNKLESS: + if chunk_training_mode(state) != MODE_CHUNKLESS: ( rows_per_chunk, estimated_number_of_chunks, @@ -1269,7 +1437,11 @@ def adaptive_chunked_choosers_and_alts( def adaptive_chunked_choosers_by_chunk_id( - choosers, chunk_size, trace_label, chunk_tag=None + state: workflow.State, + choosers: pd.DataFrame, + trace_label: str, + chunk_tag=None, + explicit_chunk_size: int = 0, ): # generator to iterate over choosers in chunk_size chunks # like chunked_choosers but based on chunk_id field rather than dataframe length @@ -1277,12 +1449,18 @@ def adaptive_chunked_choosers_by_chunk_id( # all have to be included in the same chunk) # FIXME - we pathologically know name of chunk_id col in households table - if chunk_training_mode() == MODE_CHUNKLESS: + if state.settings.chunk_training_mode == MODE_CHUNKLESS or ( + (state.settings.chunk_training_mode == MODE_EXPLICIT) + and (explicit_chunk_size == 0) + ): # The adaptive chunking logic is expensive and sometimes results # in needless data copying. So we short circuit it entirely # when chunking is disabled. logger.info(f"Running chunkless with {len(choosers)} choosers") - yield 0, choosers, trace_label + chunk_sizer = ChunkSizer( + state, "chunkless", trace_label, 0, 0, state.settings.chunk_training_mode + ) + yield 0, choosers, trace_label, chunk_sizer return chunk_tag = chunk_tag or trace_label @@ -1290,20 +1468,28 @@ def adaptive_chunked_choosers_by_chunk_id( num_choosers = choosers["chunk_id"].max() + 1 assert num_choosers > 0 - chunk_sizer = ChunkSizer(chunk_tag, trace_label, num_choosers, chunk_size) + if state.settings.chunk_training_mode == MODE_EXPLICIT: + chunk_size = explicit_chunk_size + else: + chunk_size = state.settings.chunk_size + chunk_sizer = ChunkSizer( + state, + chunk_tag, + trace_label, + num_choosers, + chunk_size, + chunk_training_mode=state.settings.chunk_training_mode, + ) rows_per_chunk, estimated_number_of_chunks = chunk_sizer.initial_rows_per_chunk() i = offset = 0 while offset < num_choosers: - i += 1 - assert offset + rows_per_chunk <= num_choosers - chunk_trace_label = trace_label_for_chunk(trace_label, chunk_size, i) + chunk_trace_label = trace_label_for_chunk(state, trace_label, chunk_size, i) with chunk_sizer.ledger(): - chooser_chunk = choosers[ choosers["chunk_id"].between(offset, offset + rows_per_chunk - 1) ] @@ -1313,11 +1499,11 @@ def adaptive_chunked_choosers_by_chunk_id( f"with {rows_per_chunk} of {num_choosers} choosers" ) - yield i, chooser_chunk, chunk_trace_label + yield i, chooser_chunk, chunk_trace_label, chunk_sizer offset += rows_per_chunk - if chunk_training_mode() != MODE_CHUNKLESS: + if chunk_training_mode(state) != MODE_CHUNKLESS: ( rows_per_chunk, estimated_number_of_chunks, diff --git a/activitysim/core/cleaning.py b/activitysim/core/cleaning.py index 65b64db15..77874bd16 100644 --- a/activitysim/core/cleaning.py +++ b/activitysim/core/cleaning.py @@ -1,9 +1,11 @@ +from __future__ import annotations + import logging import numpy as np import pandas as pd -from . import inject +from activitysim.core import workflow logger = logging.getLogger(__name__) @@ -32,24 +34,35 @@ def recode_to_zero_based(values, mapping): return result -def should_recode_based_on_table(tablename): +def should_recode_based_on_table(state: workflow.State, tablename): try: - base_df = inject.get_table(tablename).to_frame() + base_df = state.get_dataframe(tablename) except (KeyError, RuntimeError): # the basis table is missing, do not return False + except AssertionError: + if state.settings.input_table_list is None: + # some tests don't include table definitions. + return False + raise if base_df.index.name and f"_original_{base_df.index.name}" in base_df: return True return False -def recode_based_on_table(values, tablename): +def recode_based_on_table(state: workflow.State, values, tablename): try: - base_df = inject.get_table(tablename).to_frame() + base_df = state.get_dataframe(tablename) except (KeyError, RuntimeError): # the basis table is missing, do nothing logger.warning(f"unable to recode based on missing {tablename} table") return values + except AssertionError: + if state.settings.input_table_list is None: + # some tests don't include table definitions. + logger.warning(f"unable to recode based on missing {tablename} table") + return values + raise if base_df.index.name and f"_original_{base_df.index.name}" in base_df: source_ids = base_df[f"_original_{base_df.index.name}"] if ( diff --git a/activitysim/core/config.py b/activitysim/core/config.py index aaa7ed2fb..730c38315 100644 --- a/activitysim/core/config.py +++ b/activitysim/core/config.py @@ -1,173 +1,65 @@ -# ActivitySim -# See full license in LICENSE.txt. -import argparse -import glob +from __future__ import annotations + import logging -import os -import struct -import time import warnings +from typing import Any, TypeVar -import yaml +from activitysim.core import workflow +from activitysim.core.configuration.base import PydanticBase +from activitysim.core.configuration.logit import LogitComponentSettings -from activitysim.core import inject, util +# ActivitySim +# See full license in LICENSE.txt. -logger = logging.getLogger(__name__) -""" - default injectables -""" +logger = logging.getLogger(__name__) -@inject.injectable(cache=True) -def locutor(): +@workflow.cached_object +def locutor(state: workflow.State) -> bool: # when multiprocessing, sometimes you only want one process to write trace files # mp_tasks overrides this definition to designate a single sub-process as locutor return True -@inject.injectable(cache=True) -def configs_dir(): - if not os.path.exists("configs"): - raise RuntimeError("'configs' directory does not exist") - return "configs" - - -@inject.injectable(cache=True) -def data_dir(): - if not os.path.exists("data"): - raise RuntimeError("'data' directory does not exist") - return "data" - - -@inject.injectable(cache=True) -def output_dir(): - if not os.path.exists("output"): - print( - f"'output' directory does not exist - current working directory: {os.getcwd()}" - ) - raise RuntimeError("'output' directory does not exist") - return "output" - - -@inject.injectable() -def output_file_prefix(): - return "" - - -@inject.injectable(cache=True) -def pipeline_file_name(settings): - - pipeline_file_name = settings.get("pipeline_file_name", "pipeline.h5") - - return pipeline_file_name - - -@inject.injectable() -def rng_base_seed(): - return setting("rng_base_seed", 0) - - -@inject.injectable(cache=True) -def settings_file_name(): - return "settings.yaml" - - -@inject.injectable(cache=True) -def settings(settings_file_name): - settings_dict = read_settings_file(settings_file_name, mandatory=True) - - # basic settings validation for sharrow - sharrow_enabled = settings_dict.get("sharrow", False) - recode_pipeline_columns = settings_dict.get("recode_pipeline_columns", True) - if sharrow_enabled and not recode_pipeline_columns: - warnings.warn( - "use of `sharrow` setting generally requires `recode_pipeline_columns`" - ) - - return settings_dict - - -# def testing(): -# -# assert ("pytest" in sys.modules) == ("PYTEST_CURRENT_TEST" in os.environ) -# return "PYTEST_CURRENT_TEST" in os.environ - - -def get_cache_dir(): - """ - return path of cache directory in output_dir (creating it, if need be) - - cache directory is used to store - skim memmaps created by skim+dict_factories - tvpb tap_tap table cache - - Returns - ------- - str path - """ - cache_dir = setting("cache_dir", default=None) - if cache_dir is None: - cache_dir = setting( - "cache_dir", os.path.join(inject.get_injectable("output_dir"), "cache") - ) - - if not os.path.isdir(cache_dir): - os.mkdir(cache_dir) - assert os.path.isdir(cache_dir) - - # create a git-ignore in the cache dir if it does not exist. - # this helps prevent accidentally committing cache contents to git - gitignore = os.path.join(cache_dir, ".gitignore") - if not os.path.exists(gitignore): - with open(gitignore, "wt") as f: - f.write("/*") - - return cache_dir - - -def setting(key, default=None): - return inject.get_injectable("settings").get(key, default) - - -def override_setting(key, value): - new_settings = inject.get_injectable("settings") - new_settings[key] = value - inject.add_injectable("settings", new_settings) - - -def get_global_constants(): - """ - Read global constants from settings file - - Returns - ------- - constants : dict - dictionary of constants to add to locals for use by expressions in model spec - """ - return read_settings_file("constants.yaml", mandatory=False) - - -def read_model_settings(file_name, mandatory=False): +def future_model_settings(model_name, model_settings, future_settings): """ + Warn users of new required model settings, and substitute default values Parameters ---------- - file_name : str - yaml file name - mandatory : bool - throw error if file empty or not found + model_name: str + name of model + model_settings: dict + model_settings from settigns file + future_settings: dict + default values for new required settings + Returns ------- - + dict + model_settings with any missing future_settings added """ - - model_settings = read_settings_file(file_name, mandatory=mandatory) + model_settings = model_settings.copy() + for key, setting in future_settings.items(): + if key not in model_settings.keys(): + warnings.warn( + f"Setting '{key}' not found in {model_name} model settings." + f"Replacing with default value: {setting}." + f"This setting will be required in future versions", + FutureWarning, + ) + model_settings[key] = setting return model_settings -def future_model_settings(model_name, model_settings, future_settings): +T = TypeVar("T", bound=PydanticBase) + + +def future_component_settings( + model_name: str, model_settings: T, future_settings: dict +) -> T: """ Warn users of new required model settings, and substitute default values @@ -175,28 +67,21 @@ def future_model_settings(model_name, model_settings, future_settings): ---------- model_name: str name of model - model_settings: dict + model_settings: PydanticBase model_settings from settigns file future_settings: dict default values for new required settings - - Returns - ------- - dict - model_settings with any missing future_settings added - """ - model_settings = model_settings.copy() for key, setting in future_settings.items(): - if key not in model_settings.keys(): + if getattr(model_settings, key) is None: warnings.warn( f"Setting '{key}' not found in {model_name} model settings." f"Replacing with default value: {setting}." f"This setting will be required in future versions", FutureWarning, + stacklevel=2, ) - model_settings[key] = setting - + setattr(model_settings, key, setting) return model_settings @@ -209,10 +94,14 @@ def get_model_constants(model_settings): constants : dict dictionary of constants to add to locals for use by expressions in model spec """ + if hasattr(model_settings, "CONSTANTS"): + return model_settings.CONSTANTS return model_settings.get("CONSTANTS", {}) -def get_logit_model_settings(model_settings): +def get_logit_model_settings( + model_settings: LogitComponentSettings | dict[str, Any] | None +): """ Read nest spec (for nested logit) from model settings file @@ -220,14 +109,15 @@ def get_logit_model_settings(model_settings): ------- nests : dict dictionary specifying nesting structure and nesting coefficients - - constants : dict - dictionary of constants to add to locals for use by expressions in model spec """ + if isinstance(model_settings, LogitComponentSettings): + # all the validation for well formatted settings is handled by pydantic, + # so we just return the nests here. + return model_settings.NESTS + nests = None if model_settings is not None: - # default to MNL logit_type = model_settings.get("LOGIT_TYPE", "MNL") @@ -244,434 +134,17 @@ def get_logit_model_settings(model_settings): return nests -def build_output_file_path(file_name, use_prefix=None): - output_dir = inject.get_injectable("output_dir") - - if use_prefix: - file_name = "%s-%s" % (use_prefix, file_name) - - file_path = os.path.join(output_dir, file_name) - - return file_path - - -def cascading_input_file_path( - file_name, dir_list_injectable_name, mandatory=True, allow_glob=False -): - - dir_paths = inject.get_injectable(dir_list_injectable_name) - dir_paths = [dir_paths] if isinstance(dir_paths, str) else dir_paths - - file_path = None - if file_name is not None: - for dir in dir_paths: - p = os.path.join(dir, file_name) - if os.path.isfile(p): - file_path = p - break - - if allow_glob and len(glob.glob(p)) > 0: - file_path = p - break - - if mandatory and not file_path: - raise FileNotFoundError( - "file_path %s: file '%s' not in %s" - % (dir_list_injectable_name, file_name, dir_paths) - ) - - return file_path - - -def data_file_path(file_name, mandatory=True, allow_glob=False): - - return cascading_input_file_path( - file_name, "data_dir", mandatory=mandatory, allow_glob=allow_glob - ) - - -def expand_input_file_list(input_files): - """ - expand list by unglobbing globs globs +def filter_warnings(state=None): """ - - # be nice and accept a string as well as a list of strings - if isinstance(input_files, str): - input_files = [input_files] - - expanded_files = [] - ungroked_files = 0 - - for file_name in input_files: - - file_name = data_file_path(file_name, allow_glob=True) - - if os.path.isfile(file_name): - expanded_files.append(file_name) - continue - - if os.path.isdir(file_name): - logger.warning( - "WARNING: expand_input_file_list skipping directory: " - "(use glob instead): %s", - file_name, - ) - ungroked_files += 1 - continue - - # - glob - logger.debug(f"expand_input_file_list trying {file_name} as glob") - globbed_files = glob.glob(file_name) - for globbed_file in globbed_files: - if os.path.isfile(globbed_file): - expanded_files.append(globbed_file) - else: - logger.warning( - "WARNING: expand_input_file_list skipping: " "(does not grok) %s", - file_name, - ) - ungroked_files += 1 - - if len(globbed_files) == 0: - logger.warning( - "WARNING: expand_input_file_list file/glob not found: %s", file_name - ) - - assert ungroked_files == 0, f"{ungroked_files} ungroked file names" - - return sorted(expanded_files) - - -def config_file_path(file_name, mandatory=True): - - return cascading_input_file_path(file_name, "configs_dir", mandatory) - - -def output_file_path(file_name): - - prefix = inject.get_injectable("output_file_prefix", None) - return build_output_file_path(file_name, use_prefix=prefix) - - -def profiling_file_path(file_name): - - profile_dir = inject.get_injectable("profile_dir", None) - if profile_dir is None: - output_dir = inject.get_injectable("output_dir") - profile_dir = os.path.join( - output_dir, time.strftime("profiling--%Y-%m-%d--%H-%M-%S") - ) - os.makedirs(profile_dir, exist_ok=True) - inject.add_injectable("profile_dir", profile_dir) - - return os.path.join(profile_dir, file_name) - - -def trace_file_path(file_name): - - output_dir = inject.get_injectable("output_dir") - - # - check for trace subfolder, create it if missing - trace_dir = os.path.join(output_dir, "trace") - if not os.path.exists(trace_dir): - os.makedirs(trace_dir) - - # construct a unique tail string from the time - # this is a convenience for opening multiple similarly named trace files - tail = hex(struct.unpack(" in directories in configs_dir list, - read settings from yaml file and return as dict. - - Settings file may contain directives that affect which file settings are returned: - - inherit_settings: boolean - backfill settings in the current file with values from the next settings file in configs_dir list - include_settings: string - read settings from specified include_file in place of the current file settings - (to avoid confusion, this directive must appea ALONE in fiel, without any additional settings or directives.) - - Parameters - ---------- - file_name - mandatory: booelan - if true, raise SettingsFileNotFound exception if no settings file, otherwise return empty dict - include_stack: boolean or list - only used for recursive calls to provide list of files included so far to detect cycles - - Returns: dict - settings from speciified settings file/s - ------- - + set warning filter to 'strict' if specified in settings """ - def backfill_settings(settings, backfill): - new_settings = backfill.copy() - new_settings.update(settings) - return new_settings - - if configs_dir_list is None: - configs_dir_list = inject.get_injectable("configs_dir") - configs_dir_list = ( - [configs_dir_list] - if isinstance(configs_dir_list, str) - else configs_dir_list - ) - assert isinstance(configs_dir_list, list) - assert len(configs_dir_list) == len( - set(configs_dir_list) - ), f"repeating file names not allowed in config_dir list: {configs_dir_list}" - - args = util.parse_suffix_args(file_name) - file_name = args.filename - - assert isinstance(args.ROOTS, list) - assert (args.SUFFIX is not None and args.ROOTS) or ( - args.SUFFIX is None and not args.ROOTS - ), ("Expected to find both 'ROOTS' and 'SUFFIX' in %s, missing one" % args.filename) - - if not file_name.lower().endswith(".yaml"): - file_name = "%s.yaml" % (file_name,) - - inheriting = False - settings = {} - if isinstance(include_stack, list): - source_file_paths = include_stack.copy() - else: - source_file_paths = [] - for dir in configs_dir_list: - file_path = os.path.join(dir, file_name) - if os.path.exists(file_path): - if inheriting: - # we must be inheriting - logger.debug( - "inheriting additional settings for %s from %s" - % (file_name, file_path) - ) - inheriting = True - - assert ( - file_path not in source_file_paths - ), f"read_settings_file - recursion in reading 'file_path' after loading: {source_file_paths}" - - with open(file_path) as f: - - s = yaml.load(f, Loader=yaml.SafeLoader) - if s is None: - s = {} - - settings = backfill_settings(settings, s) - - # maintain a list of files we read from to improve error message when an expected setting is not found - source_file_paths += [file_path] - - include_file_name = s.get("include_settings", False) - if include_file_name: - # FIXME - prevent users from creating borgesian garden of branching paths? - # There is a lot of opportunity for confusion if this feature were over-used - # Maybe we insist that a file with an include directive is the 'end of the road' - # essentially the current settings firle is an alias for the included file - if len(s) > 1: - logger.error( - "'include_settings' must appear alone in settings file." - ) - additional_settings = list( - set(s.keys()).difference({"include_settings"}) - ) - logger.error( - f"Unexpected additional settings: {additional_settings}" - ) - raise RuntimeError( - "'include_settings' must appear alone in settings file." - ) - - logger.debug( - "including settings for %s from %s" % (file_name, include_file_name) - ) - - # recursive call to read included file INSTEAD of the file with include_settings sepcified - s, source_file_paths = read_settings_file( - include_file_name, mandatory=True, include_stack=source_file_paths - ) - - # FIXME backfill with the included file - settings = backfill_settings(settings, s) - - # we are done as soon as we read one file successfully - # unless if inherit_settings is set to true in this file - - if not s.get("inherit_settings", False): - break - - # if inheriting, continue and backfill settings from the next existing settings file configs_dir_list - - inherit_settings = s.get("inherit_settings") - if isinstance(inherit_settings, str): - inherit_file_name = inherit_settings - assert ( - os.path.join(dir, inherit_file_name) not in source_file_paths - ), f"circular inheritance of {inherit_file_name}: {source_file_paths}: " - # make a recursive call to switch inheritance chain to specified file - - logger.debug( - "inheriting additional settings for %s from %s" - % (file_name, inherit_file_name) - ) - s, source_file_paths = read_settings_file( - inherit_file_name, - mandatory=True, - include_stack=source_file_paths, - configs_dir_list=configs_dir_list, - ) - - # backfill with the inherited file - settings = backfill_settings(settings, s) - break # break the current inheritance chain (not as bad luck as breaking a chain-letter chain?...) - - if len(source_file_paths) > 0: - settings["source_file_paths"] = source_file_paths - - if mandatory and not settings: - raise SettingsFileNotFound(file_name, configs_dir_list) - - # Adds proto_ suffix for disaggregate accessibilities - if args.SUFFIX is not None and args.ROOTS: - settings = util.suffix_tables_in_settings(settings, args.SUFFIX, args.ROOTS) - - if include_stack: - # if we were called recursively, return an updated list of source_file_paths - return settings, source_file_paths - + if state is None: + strict = False else: - return settings + strict = state.settings.treat_warnings_as_errors - -def base_settings_file_path(file_name): - """ - - Parameters - ---------- - file_name - - Returns - ------- - path to base settings file or None if not found - """ - - if not file_name.lower().endswith(".yaml"): - file_name = "%s.yaml" % (file_name,) - - configs_dir = inject.get_injectable("configs_dir") - configs_dir = [configs_dir] if isinstance(configs_dir, str) else configs_dir - - for dir in configs_dir: - file_path = os.path.join(dir, file_name) - if os.path.exists(file_path): - return file_path - - raise RuntimeError("base_settings_file %s not found" % file_name) - - -def filter_warnings(): - """ - set warning filter to 'strict' if specified in settings - """ - - if setting("strict", False): # noqa: E402 + if strict: # noqa: E402 warnings.filterwarnings("error", category=Warning) warnings.filterwarnings( "default", category=PendingDeprecationWarning, module="future" @@ -705,10 +178,11 @@ def filter_warnings(): # beginning pandas version 1.3, various places emit a PerformanceWarning that is # caught in the "strict" filter above, but which are currently unavoidable for complex models. - # These warning are left as warnings as an invitation for future enhancement. + # Turning this filter back to "default" could be a good helper for finding places to + # look for future performance enhancements. from pandas.errors import PerformanceWarning - warnings.filterwarnings("default", category=PerformanceWarning) + warnings.filterwarnings("ignore", category=PerformanceWarning) # pandas 1.5 # beginning in pandas version 1.5, a new warning is emitted when a column is set via iloc @@ -757,21 +231,3 @@ def filter_warnings(): category=FutureWarning, message="The trip_scheduling component now has a logic_version setting.*", ) - - -def handle_standard_args(parser=None): - - from activitysim.cli import run - - warnings.warn( - "config.handle_standard_args() has been moved to the command line " - "module and will be removed in future versions.", - FutureWarning, - ) - - if parser is None: - parser = argparse.ArgumentParser() - - run.add_run_args(parser) - args = parser.parse_args() - run.handle_standard_args(args) diff --git a/activitysim/core/configuration/__init__.py b/activitysim/core/configuration/__init__.py index 5cdd2f69c..58c0a9690 100644 --- a/activitysim/core/configuration/__init__.py +++ b/activitysim/core/configuration/__init__.py @@ -1,4 +1,6 @@ # flake8: noqa +from __future__ import annotations +from .filesystem import FileSystem from .network import * from .top import * diff --git a/activitysim/core/configuration/base.py b/activitysim/core/configuration/base.py index d6c5a3ed9..754865dc1 100644 --- a/activitysim/core/configuration/base.py +++ b/activitysim/core/configuration/base.py @@ -1,8 +1,128 @@ -from typing import Any, Union # noqa: F401 +from __future__ import annotations -try: - from pydantic import BaseModel as PydanticBase -except ModuleNotFoundError: +from pathlib import Path +from typing import Any, Literal, TypeVar, Union # noqa: F401 - class PydanticBase: - pass +from pydantic import BaseModel as PydanticBase + +from activitysim.core import configuration + +PydanticReadableType = TypeVar("PydanticReadableType", bound="PydanticReadable") + + +class PydanticReadable(PydanticBase): + """ + Base class for `pydantic.BaseModel`s readable from cascading config files. + + Although not formally defined as an abstract base class, there is generally + no reason to instantiate a `PydanticReadable` object directly. + """ + + source_file_paths: list[Path] = None + """ + A list of source files from which these settings were loaded. + + This value should not be set by the user within the YAML settings files, + instead it is populated as those files are loaded. It is primarily + provided for debugging purposes, and does not actually affect the operation + of any model. + """ + + @classmethod + def read_settings_file( + cls: type[PydanticReadableType], + filesystem: configuration.FileSystem, + file_name: str, + mandatory: bool = True, + ) -> PydanticReadableType: + """ + Load settings from one or more yaml files. + + This method has been written to allow models to be configured with + "settings file inheritance". This allows the user to avoid duplicating + settings across multiple related model configurations. Instead, + settings can be written in a "cascading" manner: multiple files can be + provided with settings values, and each particular key is set according + to the first value found for that key. + + For example, suppose a user has a basic model setup with some settings, and + they would like to do a model run with all the same settings except with the + `foo` setting using a value of `'baz'` instead of the usual value of `'bar'` + that is defined in the usual model setup. They could accomplish this by + placing a `file_name` file with *only* + + .. code-block:: yaml + + foo: baz + inherit_settings: true + + in the first directory listed in `filesystem.configs_dir`. The + `inherit_settings` flag tells the interpreter to search for other + matching settings files in the chain of config directories, and to fill + in other settings values that are not yet defined, but the `foo: baz` will + preempt any other values for `foo` that may be set in those other files. + If the `inherit_settings` flag is omitted or set to false, then the + search process ends with this file, only the `foo` setting would be + defined, and all other settings expected in this file would take on + their default values. + + Alternatively, a settings file may include a `include_settings` key, + + .. code-block:: yaml + + include_settings: other-filename.yaml + + with an alternative file name as its value, in which case the method + loads values from that other file instead. To avoid confusion, this + directive must appear ALONE in the target file, without any additional + settings or directives. + + Parameters + ---------- + filesystem: configuration.FileSystem + Provides the list of config directories to search. + file_name : str + The name of the YAML file to search for. + mandatory : boolean, default True + If true, raise SettingsFileNotFoundError if no matching settings file + is found in any config directory, otherwise this method will return + an empty dict or an all-default instance of the validator class. + + Returns + ------- + PydanticReadable or derived class + """ + # pass through to read_settings_file, requires validator_class and provides type hinting for IDE's + return filesystem.read_settings_file( + file_name, + mandatory, + validator_class=cls, + ) + + +class PreprocessorSettings(PydanticBase): + """ + Preprocessor instructions. + """ + + SPEC: str + """Specification to use for pre-processing. + + This is the name of the specification CSV file to be found in one of the + configs directories. The '.csv' extension may be omitted. + """ + + DF: str + """Name of the primary table used for this preprocessor. + + The preprocessor will emit rows to a temporary table that match the rows + in this table from the pipeline.""" + + TABLES: list[str] | None = None + """Names of the additional tables to be merged for the preprocessor. + + Data from these tables will be merged into the primary table, according + to standard merge rules for these tables. Care should be taken to limit the + number of merged tables as the memory requirements for the preprocessor + will increase with each table. + """ diff --git a/activitysim/core/configuration/filesystem.py b/activitysim/core/configuration/filesystem.py new file mode 100644 index 000000000..ce50becd4 --- /dev/null +++ b/activitysim/core/configuration/filesystem.py @@ -0,0 +1,858 @@ +from __future__ import annotations + +import glob +import logging +import os +import struct +import time +from pathlib import Path +from typing import Any + +import numba +import pandas as pd +import platformdirs +import yaml +from pydantic import DirectoryPath, validator + +from activitysim.core.configuration.base import PydanticBase +from activitysim.core.configuration.logit import LogitComponentSettings +from activitysim.core.exceptions import SettingsFileNotFoundError +from activitysim.core.util import parse_suffix_args, suffix_tables_in_settings + +logger = logging.getLogger(__name__) + + +class FileSystem(PydanticBase, validate_assignment=True): + """ + Manage finding and loading files for ActivitySim's command line interface. + """ + + working_dir: DirectoryPath = None + """ + Name of the working directory. + + All other directories (configs, data, output, cache), when given as relative + paths, are assumed to be relative to this working directory. If it is not + provided, the usual Python current working directory is used. + """ + + configs_dir: tuple[Path, ...] = ("configs",) + """ + Name[s] of the config directory. + """ + + @validator("configs_dir") + def configs_dirs_must_exist(cls, configs_dir, values): + working_dir = values.get("working_dir", None) or Path.cwd() + for c in configs_dir: + c_full = working_dir.joinpath(c) + if not c_full.exists(): + raise ValueError(f"config directory {c_full} does not exist") + return configs_dir + + data_dir: tuple[Path, ...] = ("data",) + """ + Name of the data directory. + """ + + @validator("data_dir") + def data_dirs_must_exist(cls, data_dir, values): + working_dir = values.get("working_dir", None) or Path.cwd() + for d in data_dir: + d_full = working_dir.joinpath(d) + if not d_full.exists(): + raise ValueError(f"data directory {d_full} does not exist") + return data_dir + + data_model_dir: tuple[Path, ...] = ("data_model",) + """ + Name of the data model directory. + """ + + @validator("data_model_dir") + def data_model_dirs_must_exist(cls, data_model_dir, values): + working_dir = values.get("working_dir", None) or Path.cwd() + for d in data_model_dir: + d_full = working_dir.joinpath(d) + if not d_full.exists(): + raise ValueError(f"data model directory {d_full} does not exist") + return data_model_dir + + output_dir: Path = "output" + """ + Name of the output directory. + + This directory will be created on access if it does not exist. + """ + + profile_dir: Path = None + """ + Name of the output directory for pyinstrument profiling files. + + If not given, a unique time-stamped directory will be created inside + the usual output directory. + """ + + cache_dir: Path = None + """ + Name of the output directory for general cache files. + + If not given, a directory named "cache" will be created inside + the usual output directory. + """ + + sharrow_cache_dir: Path = None + """ + Name of the output directory for sharrow cache files. + + If not given, a directory named "__sharrowcache__" will be created inside + the general cache directory. + """ + + settings_file_name: str = "settings.yaml" + + pipeline_file_name: str = "pipeline" + """ + The name for the base pipeline file or directory. + """ + + @classmethod + def parse_args(cls, args): + self = cls() + + def _parse_arg(name, x): + v = getattr(args, x, None) + if v is not None: + setattr(self, name, v) + + _parse_arg("working_dir", "working_dir") + _parse_arg("settings_file_name", "settings_file") + _parse_arg("configs_dir", "config") + _parse_arg("data_dir", "data") + _parse_arg("data_model_dir", "data_model") + _parse_arg("output_dir", "output") + + return self + + def get_working_subdir(self, subdir) -> Path: + if self.working_dir: + return self.working_dir.joinpath(subdir) + else: + return Path(subdir) + + def get_output_dir(self, subdir=None) -> Path: + """ + Get an output directory, creating it if needed. + + Parameters + ---------- + subdir : Path-like, optional + If given, get this subdirectory of the output_dir. + + Returns + ------- + Path + """ + out = self.get_working_subdir(self.output_dir) + if subdir is not None: + out = out.joinpath(subdir) + if not out.exists(): + out.mkdir(parents=True) + return out + + def get_output_file_path(self, file_name) -> Path: + return self.get_output_dir().joinpath(file_name) + + def get_pipeline_filepath(self) -> Path: + """ + Get the complete path to the pipeline file or directory. + + Returns + ------- + Path + """ + return self.get_output_dir().joinpath(self.pipeline_file_name) + + def get_profiling_file_path(self, file_name) -> Path: + """ + Get the complete path to a profile output file. + + Parameters + ---------- + file_name : str + Base name of the profiling output file. + + Returns + ------- + Path + """ + if self.profile_dir is None: + profile_dir = self.get_output_dir( + time.strftime("profiling--%Y-%m-%d--%H-%M-%S") + ) + profile_dir.mkdir(parents=True, exist_ok=True) + self.profile_dir = profile_dir + return self.profile_dir.joinpath(file_name) + + def get_log_file_path(self, file_name) -> Path: + """ + Get the complete path to a log file. + + Parameters + ---------- + file_name : str + Base name of the log file. + + Returns + ------- + Path + """ + + output_dir = self.get_output_dir() + + # - check if running asv and if so, log to commit-specific subfolder + asv_commit = os.environ.get("ASV_COMMIT", None) + if asv_commit: + output_dir = os.path.join(output_dir, f"log-{asv_commit}") + os.makedirs(output_dir, exist_ok=True) + + # - check for optional log subfolder + if os.path.exists(os.path.join(output_dir, "log")): + output_dir = os.path.join(output_dir, "log") + + file_path = os.path.join(output_dir, file_name) + + return Path(file_path) + + def get_trace_file_path( + self, file_name, tail=None, trace_dir=None, create_dirs=True, file_type=None + ): + """ + Get the complete path to a trace file. + + Parameters + ---------- + file_name : str + Base name of the trace file. + tail : str or False, optional + Add this suffix to filenames. If not given, a quasi-random short + string is derived from the current time. Set to `False` to omit + the suffix entirely. Having a unique suffix makes it easier to + open multiple comparable trace files side-by-side in Excel, which + doesn't allow identically named files to be open simultaneously. + Omitting the suffix can be valuable for using automated tools to + find file differences across many files simultaneously. + trace_dir : path-like, optional + Construct the trace file path within this directory. If not + provided (typically for normal operation) the "trace" sub-directory + of the normal output directory given by `get_output_dir` is used. + The option to give a different location is primarily used to + conduct trace file validation testing. + create_dirs : bool, default True + If the path to the containing directory of the trace file does not + yet exist, create it. + file_type : str, optional + If provided, ensure that the generated file path has this extension. + + Returns + ------- + Path + """ + if trace_dir is None: + output_dir = self.get_output_dir() + + # - check for trace subfolder, create it if missing + trace_dir = output_dir.joinpath("trace") + if not trace_dir.exists(): + trace_dir.mkdir(parents=True) + + if tail is None: + # construct a unique tail string from the time + # this is a convenience for opening multiple similarly named trace files + tail = ( + "-" + + hex(struct.unpack(" Path: + """ + Get the cache directory, creating it if needed. + + The cache directory is used to store: + - skim memmaps created by skim+dict_factories + - tvpb tap_tap table cache + - pre-compiled sharrow modules + + + Parameters + ---------- + subdir : Path-like, optional + If given, get this subdirectory of the output_dir. + + Returns + ------- + Path + """ + if self.cache_dir is None: + out = self.get_output_dir("cache") + else: + out = self.get_working_subdir(self.cache_dir) + if subdir is not None: + out = out.joinpath(subdir) + if not out.exists(): + out.mkdir(parents=True) + + # create a git-ignore in the cache dir if it does not exist. + # this helps prevent accidentally committing cache contents to git + gitignore = out.joinpath(".gitignore") + if not gitignore.exists(): + gitignore.write_text("/**") + + return out + + def get_sharrow_cache_dir(self) -> Path: + """ + Get the sharrow cache directory, creating it if needed. + + The sharrow cache directory is used to store only sharrow's cache + of pre-compiled functions. + + Returns + ------- + Path + """ + if self.sharrow_cache_dir is None: + out = self.get_cache_dir("__sharrowcache__") + else: + out = self.get_working_subdir(self.sharrow_cache_dir) + if not out.exists(): + out.mkdir(parents=True) + + # create a git-ignore in the sharrow cache dir if it does not exist. + # this helps prevent accidentally committing cache contents to git + gitignore = out.joinpath(".gitignore") + if not gitignore.exists(): + gitignore.write_text("/**") + + return out + + def persist_sharrow_cache(self) -> None: + """ + Change the sharrow cache directory to a persistent, user-global location. + + The change is made in-place to `sharrow_cache_dir` for this object. The + location for the cache is selected by `platformdirs.user_cache_dir`. + An extra directory layer based on the current numba version is also added + to the cache directory, which allows for different sets of cache files to + co-exist for different version of numba (i.e. different conda envs). + This location is not configurable -- to select a different location, + change the value of `FileSystem.sharrow_cache_dir` itself. + + See Also + -------- + FileSystem.sharrow_cache_dir + """ + self.sharrow_cache_dir = Path( + platformdirs.user_cache_dir(appname="ActivitySim") + ).joinpath(f"numba-{numba.__version__}") + self.sharrow_cache_dir.mkdir(parents=True, exist_ok=True) + + def _cascading_input_file_path( + self, file_name, dir_list_injectable_name, mandatory=True, allow_glob=False + ) -> Path: + """ + Find the first matching file among a group of directories. + + Parameters + ---------- + file_name : Path-like + The name of the file to match. + dir_list_injectable_name : {'configs_dir', 'data_dir'} + The group of directories to search. + mandatory : bool, default True + Raise a FileNotFoundError if no match is found. If set to False, + this method returns None when there is no match. + allow_glob : bool, default False + Allow glob-style matches. + + Returns + ------- + Path or None + """ + if dir_list_injectable_name == "configs_dir": + dir_paths = self.get_configs_dir() + elif dir_list_injectable_name == "data_dir": + dir_paths = self.get_data_dir() + else: + dir_paths = getattr(self, dir_list_injectable_name) + dir_paths = [dir_paths] if isinstance(dir_paths, str) else dir_paths + + file_path = None + if file_name is not None: + for dir in dir_paths: + p = os.path.join(dir, file_name) + if os.path.isfile(p): + file_path = p + break + + if allow_glob and len(glob.glob(p)) > 0: + file_path = p + break + + if mandatory and not file_path: + raise FileNotFoundError( + "file_path %s: file '%s' not in %s" + % (dir_list_injectable_name, file_name, [str(i) for i in dir_paths]) + ) + + return Path(file_path) if file_path else None + + def expand_input_file_list(self, input_files) -> list[Path]: + """ + expand list by unglobbing globs globs + """ + + # be nice and accept a string as well as a list of strings + if isinstance(input_files, (str, Path)): + input_files = [Path(input_files)] + else: + input_files = [Path(i) for i in input_files] + + expanded_files = [] + ungroked_files = 0 + + for file_name in input_files: + file_name = self.get_data_file_path(file_name, allow_glob=True) + + if file_name.is_file(): + expanded_files.append(file_name) + continue + + if file_name.is_dir(): + logger.warning( + "WARNING: _expand_input_file_list skipping directory: " + f"(use glob instead): {file_name}", + ) + ungroked_files += 1 + continue + + # - not an exact match, could be a glob pattern + logger.debug(f"expand_input_file_list trying {file_name} as glob") + globbed_files = glob.glob(str(file_name)) + for globbed_file in globbed_files: + if os.path.isfile(globbed_file) or os.path.islink(globbed_file): + expanded_files.append(Path(globbed_file)) + else: + logger.warning( + "WARNING: expand_input_file_list skipping: " + f"(does not grok) {file_name}" + ) + ungroked_files += 1 + + if len(globbed_files) == 0: + logger.warning( + f"WARNING: expand_input_file_list file/glob not found: {file_name}", + ) + + assert ungroked_files == 0, f"{ungroked_files} ungroked file names" + + return sorted(expanded_files) + + def get_configs_dir(self) -> tuple[Path]: + """ + Get the configs directories. + + Returns + ------- + tuple[Path] + """ + return tuple(self.get_working_subdir(i) for i in self.configs_dir) + + def get_config_file_path( + self, file_name: Path | str, mandatory: bool = True, allow_glob: bool = False + ) -> Path: + """ + Find the first matching file among config directories. + + Parameters + ---------- + file_name : Path-like + The name of the file to match. + mandatory : bool, default True + Raise a FileNotFoundError if no match is found. If set to False, + this method returns None when there is no match. + allow_glob : bool, default False + Allow glob-style matches. + + Returns + ------- + Path or None + """ + return self._cascading_input_file_path( + file_name, "configs_dir", mandatory, allow_glob + ) + + def get_data_dir(self) -> tuple[Path]: + """ + Get the data directories. + + Returns + ------- + tuple[Path] + """ + return tuple(self.get_working_subdir(i) for i in self.data_dir) + + def get_data_file_path( + self, file_name, mandatory=True, allow_glob=False, alternative_suffixes=() + ) -> Path: + """ + Find the first matching file among data directories. + + Parameters + ---------- + file_name : Path-like + The name of the file to match. + mandatory : bool, default True + Raise a FileNotFoundError if no match is found. If set to False, + this method returns None when there is no match. + allow_glob : bool, default False + Allow glob-style matches. + alternative_suffixes : Iterable[str], optional + Other file suffixes to search for, if the expected filename is + not found. This allows, for example, the data files to be stored + as compressed csv ("*.csv.gz") without changing the config files. + + Returns + ------- + Path or None + """ + try: + return self._cascading_input_file_path( + file_name, "data_dir", mandatory, allow_glob + ) + except FileNotFoundError: + if not allow_glob: + file_name = Path(file_name) + for alt in alternative_suffixes: + alt_file = self._cascading_input_file_path( + file_name.with_suffix(alt), "data_dir", mandatory=False + ) + if alt_file: + return alt_file + raise + + def open_log_file(self, file_name, mode, header=None, prefix=False): + if prefix: + file_name = f"{prefix}-{file_name}" + file_path = self.get_log_file_path(file_name) + + want_header = header and not os.path.exists(file_path) + + f = open(file_path, mode) + + if want_header: + assert mode in [ + "a", + "w", + ], f"open_log_file: header requested but mode was {mode}" + print(header, file=f) + + return f + + def read_settings_file( + self, + file_name: str, + mandatory: bool = True, + include_stack: bool = False, + configs_dir_list: tuple[Path] | None = None, + validator_class: type[PydanticBase] | None = None, + ) -> PydanticBase | dict: + """ + Load settings from one or more yaml files. + + This method will look for first occurrence of a yaml file named + in the directories in configs_dir list, and + read settings from that yaml file. + + Settings file may contain directives that affect which file settings + are returned: + + - inherit_settings (boolean) + If found and set to true, this method will backfill settings + in the current file with values from the next settings file + in configs_dir list (if any) + - include_settings: string + Read settings from specified include_file in place of the current + file. To avoid confusion, this directive must appear ALONE in the + target file, without any additional settings or directives. + + Parameters + ---------- + file_name : str + mandatory : boolean, default True + If true, raise SettingsFileNotFoundError if no matching settings file + is found in any config directory, otherwise this method will return + an empty dict or an all-default instance of the validator class. + include_stack : boolean or list + Only used for recursive calls, provides a list of files included + so far to detect and prevent cycles. + validator_class : type[pydantic.BaseModel], optional + This model is used to validate the loaded settings. + + Returns + ------- + dict or validator_class + """ + if isinstance(file_name, Path): + file_name = str(file_name) + + def backfill_settings(settings, backfill): + new_settings = backfill.copy() + new_settings.update(settings) + return new_settings + + if configs_dir_list is None: + configs_dir_list = self.get_configs_dir() + assert len(configs_dir_list) == len( + set(configs_dir_list) + ), f"repeating file names not allowed in config_dir list: {configs_dir_list}" + + args = parse_suffix_args(file_name) + file_name = args.filename + + assert isinstance(args.ROOTS, list) + assert (args.SUFFIX is not None and args.ROOTS) or ( + args.SUFFIX is None and not args.ROOTS + ), ( + "Expected to find both 'ROOTS' and 'SUFFIX' in %s, missing one" + % args.filename + ) + + if not file_name.lower().endswith(".yaml"): + file_name = "%s.yaml" % (file_name,) + + inheriting = False + settings = {} + if isinstance(include_stack, list): + source_file_paths = include_stack.copy() + else: + source_file_paths = [] + for dir in configs_dir_list: + file_path = os.path.join(dir, file_name) + if os.path.exists(file_path): + if inheriting: + # we must be inheriting + logger.debug( + "inheriting additional settings for %s from %s" + % (file_name, file_path) + ) + inheriting = True + + assert ( + file_path not in source_file_paths + ), f"read_settings_file - recursion in reading 'file_path' after loading: {source_file_paths}" + + with open(file_path) as f: + s = yaml.load(f, Loader=yaml.SafeLoader) + if s is None: + s = {} + + settings = backfill_settings(settings, s) + + # maintain a list of files we read from to improve error message when an expected setting is not found + source_file_paths += [file_path] + + include_file_name = s.get("include_settings", False) + if include_file_name: + # FIXME - prevent users from creating borgesian garden of branching paths? + # There is a lot of opportunity for confusion if this feature were over-used + # Maybe we insist that a file with an include directive is the 'end of the road' + # essentially the current settings firle is an alias for the included file + if len(s) > 1: + logger.error( + "'include_settings' must appear alone in settings file." + ) + additional_settings = list( + set(s.keys()).difference({"include_settings"}) + ) + logger.error( + f"Unexpected additional settings: {additional_settings}" + ) + raise RuntimeError( + "'include_settings' must appear alone in settings file." + ) + + logger.debug( + "including settings for %s from %s" + % (file_name, include_file_name) + ) + + # recursive call to read included file INSTEAD of the file with include_settings sepcified + s, source_file_paths = self.read_settings_file( + include_file_name, + mandatory=True, + include_stack=source_file_paths, + ) + + # FIXME backfill with the included file + settings = backfill_settings(settings, s) + + # we are done as soon as we read one file successfully + # unless if inherit_settings is set to true in this file + + if not s.get("inherit_settings", False): + break + + # if inheriting, continue and backfill settings from the next existing settings file configs_dir_list + + inherit_settings = s.get("inherit_settings") + if isinstance(inherit_settings, str): + inherit_file_name = inherit_settings + assert ( + os.path.join(dir, inherit_file_name) not in source_file_paths + ), f"circular inheritance of {inherit_file_name}: {source_file_paths}: " + # make a recursive call to switch inheritance chain to specified file + + logger.debug( + "inheriting additional settings for %s from %s" + % (file_name, inherit_file_name) + ) + s, source_file_paths = self.read_settings_file( + inherit_file_name, + mandatory=True, + include_stack=source_file_paths, + configs_dir_list=configs_dir_list, + ) + + # backfill with the inherited file + settings = backfill_settings(settings, s) + break # break the current inheritance chain (not as bad luck as breaking a chain-letter chain?...) + + if len(source_file_paths) > 0: + settings["source_file_paths"] = source_file_paths + + if mandatory and not settings: + raise SettingsFileNotFoundError(file_name, configs_dir_list) + + # Adds proto_ suffix for disaggregate accessibilities + if args.SUFFIX is not None and args.ROOTS: + settings = suffix_tables_in_settings(settings, args.SUFFIX, args.ROOTS) + + # we don't want to actually have inherit_settings or include_settings + # as they won't validate + settings.pop("inherit_settings", None) + settings.pop("include_settings", None) + + if validator_class is not None: + settings = validator_class.model_validate(settings) + + if include_stack: + # if we were called recursively, return an updated list of source_file_paths + return settings, source_file_paths + + else: + return settings + + def read_model_settings( + self, + file_name, + mandatory=False, + ): + # in the legacy implementation, this function has a default mandatory=False + return self.read_settings_file(file_name, mandatory=mandatory) + + def read_model_spec(self, file_name: Path | str): + from activitysim.core import simulate + + return simulate.read_model_spec(self, file_name) + + def read_model_coefficients( + self, + model_settings: LogitComponentSettings | dict[str, Any] | None = None, + file_name: str | None = None, + ) -> pd.DataFrame: + from activitysim.core import simulate + + return simulate.read_model_coefficients( + self, model_settings=model_settings, file_name=file_name + ) + + def get_segment_coefficients( + self, model_settings: PydanticBase | dict, segment_name: str + ): + from activitysim.core import simulate + + return simulate.get_segment_coefficients(self, model_settings, segment_name) diff --git a/activitysim/core/configuration/logit.py b/activitysim/core/configuration/logit.py new file mode 100644 index 000000000..c01187eeb --- /dev/null +++ b/activitysim/core/configuration/logit.py @@ -0,0 +1,210 @@ +from __future__ import annotations + +from pathlib import Path +from typing import Any, Literal + +from pydantic import BaseModel as PydanticBase +from pydantic import validator + +from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable + + +class LogitNestSpec(PydanticBase): + """ + Defines a nest in a nested logit model. + """ + + name: str + """A descriptive name for this nest.""" + + coefficient: str | float + """The named parameter to be used as the logsum coefficient. + + If given as a string, this named parameter should appear in the + logit models's `COEFFICIENTS` file. + """ + + alternatives: list[LogitNestSpec | str] + """The alternatives within this nest. + + These can be either the names of elemental alternatives, or `LogitNestSpec` + definitions for more nests, or a mixture of these. + """ + + @validator("coefficient") + def prefer_float_to_str(cls, coefficient_value): + """ + Convert string values to float directly if possible. + """ + try: + coefficient_value = float(coefficient_value) + except ValueError: + pass + return coefficient_value + + +class BaseLogitComponentSettings(PydanticReadable): + """ + Base configuration class for components that are logit models. + + These settings are common to all logit models. Component developers + should generally prefer using a derived classes that defines a complete + logit model such as `LogitComponentSettings`, or a compound component + such as `LocationComponentSettings`, which melds together alternative + sampling, logsums, and choice. + """ + + SPEC: Path + """Utility specification filename. + + This is sometimes alternatively called the utility expressions calculator + (UEC). It is a CSV file giving all the functions for the terms of a + linear-in-parameters utility expression. + """ + + COEFFICIENTS: Path | None = None + """Coefficients filename. + + This is a CSV file giving named parameters for use in the utility expression. + If it is not provided, then it is assumed that all model coefficients are + given explicitly in the `SPEC` as numerical values instead of named parameters. + This is perfectly acceptable for use with ActivitySim for typical simulation + applications, but may be problematic if used with "estimation mode". + """ + + CONSTANTS: dict[str, Any] = {} + """Named constants usable in the utility expressions.""" + + sharrow_skip: bool = False + """Skip sharrow when evaluating this component.""" + + +class LogitComponentSettings(BaseLogitComponentSettings): + """ + Base configuration class for components that are individual logit models. + """ + + LOGIT_TYPE: Literal["MNL", "NL"] = "MNL" + """Logit model mathematical form. + + * "MNL" + Multinomial logit model. + * "NL" + Nested multinomial logit model. + """ + + NESTS: LogitNestSpec | None = None + """Nesting structure for a nested logit model. + + The nesting structure is specified heirarchically from the top, so the + value of this field should be the "root" level nest of the nested logit + tree, which should contain references to lower level nests and/or the + actual alternatives. + + For example, this YAML defines a simple nesting structure for four + alternatives (DRIVE, WALK, WALK_TO_TRANSIT, DRIVE_TO_TRANSIT) with the two + transit alternatives grouped together in a nest: + + .. code-block:: yaml + + NESTS: + name: root + coefficient: coef_nest_root + alternatives: + - DRIVE + - WALK + - name: TRANSIT + coefficient: coef_nest_transit + alternatives: + - WALK_TO_TRANSIT + - DRIVE_TO_TRANSIT + """ + + @validator("NESTS") + def nests_are_for_nl(cls, nests, values): + """ + Checks that nests are provided if (and only if) `LOGIT_TYPE` is NL. + """ + if "LOGIT_TYPE" in values and values["LOGIT_TYPE"] == "NL": + if nests is None: + raise ValueError("NESTS cannot be omitted for a NL model") + if "LOGIT_TYPE" in values and values["LOGIT_TYPE"] == "MNL": + if nests is not None: + raise ValueError("NESTS cannot be provided for a MNL model") + return nests + + +class TemplatedLogitComponentSettings(LogitComponentSettings): + """ + Base configuration for segmented logit models with a coefficient template. + """ + + COEFFICIENT_TEMPLATE: str | None = None + """Coefficients template filename. + + For a segmented model component, this maps the named parameters to + segment-specific names. + """ + + +class LocationComponentSettings(BaseLogitComponentSettings): + """ + Base configuration class for components that are location choice models. + """ + + SAMPLE_SPEC: Path + """The utility spec giving expressions to use in alternative sampling.""" + + SAMPLE_SIZE: int + """This many candidate alternatives will be sampled for each choice.""" + + LOGSUM_SETTINGS: Path + """Settings for the logsum computation.""" + + +class TourLocationComponentSettings(LocationComponentSettings, extra="forbid"): + # Logsum-related settings + CHOOSER_ORIG_COL_NAME: str + ALT_DEST_COL_NAME: str + IN_PERIOD: int | dict[str, int] | None = None + OUT_PERIOD: int | dict[str, int] | None = None + LOGSUM_PREPROCESSOR: str = "preprocessor" + + SEGMENTS: list[str] | None = None + SIZE_TERM_SELECTOR: str | None = None + annotate_tours: PreprocessorSettings | None = None + + CHOOSER_FILTER_COLUMN_NAME: str | None = None + DEST_CHOICE_COLUMN_NAME: str | None = None + DEST_CHOICE_LOGSUM_COLUMN_NAME: str | None = None + DEST_CHOICE_SAMPLE_TABLE_NAME: str | None = None + CHOOSER_TABLE_NAME: str | None = None + CHOOSER_SEGMENT_COLUMN_NAME: str | None = None + SEGMENT_IDS: dict[str, int] | None = None + SHADOW_PRICE_TABLE: str | None = None + MODELED_SIZE_TABLE: str | None = None + annotate_persons: PreprocessorSettings | None = None + annotate_households: PreprocessorSettings | None = None + SIMULATE_CHOOSER_COLUMNS: list[str] | None = None + ALT_DEST_COL_NAME: str + LOGSUM_TOUR_PURPOSE: str | dict[str, str] | None = None + MODEL_SELECTOR: Literal["workplace", "school", None] = None + SAVED_SHADOW_PRICE_TABLE_NAME: str | None = None + CHOOSER_ID_COLUMN: str = "person_id" + + ORIG_ZONE_ID: str | None = None + """This setting appears to do nothing...""" + + +class TourModeComponentSettings(TemplatedLogitComponentSettings, extra="forbid"): + MODE_CHOICE_LOGSUM_COLUMN_NAME: str | None = None + use_TVPB_constants: bool = True + COMPUTE_TRIP_MODE_CHOICE_LOGSUMS: bool = False + tvpb_mode_path_types: dict[str, Any] | None = None + FORCE_ESCORTEE_CHAUFFEUR_MODE_MATCH: bool = True + annotate_tours: PreprocessorSettings | None = None + preprocessor: PreprocessorSettings | list[PreprocessorSettings] | None = None + nontour_preprocessor: PreprocessorSettings | list[ + PreprocessorSettings + ] | None = None + LOGSUM_CHOOSER_COLUMNS: list[str] = [] diff --git a/activitysim/core/configuration/network.py b/activitysim/core/configuration/network.py index c047f117d..f81043438 100644 --- a/activitysim/core/configuration/network.py +++ b/activitysim/core/configuration/network.py @@ -1,4 +1,17 @@ -from .base import Any, PydanticBase, Union +from __future__ import annotations + +import warnings +from pathlib import Path +from typing import Literal + +from pydantic import PositiveInt, root_validator + +from activitysim.core.configuration.base import ( + Any, + PydanticBase, + PydanticReadable, + Union, +) class DigitalEncoding(PydanticBase): @@ -137,7 +150,54 @@ class TAZ_Settings(PydanticBase): """ -class NetworkSettings(PydanticBase): +class MazToMazSettings(PydanticBase, extra="forbid"): + tables: list[str] = [] + + max_blend_distance: dict[str, float] = None + + blend_distance_skim_name: str | None = None + """The name of the skim table used to blend distances for MAZs.""" + + +class TimeSettings(PydanticReadable, extra="forbid"): + """ + Settings to describe discrete time. + """ + + time_window: PositiveInt = 1440 + """total duration (in minutes) of the modeled time span.""" + + period_minutes: PositiveInt = 60 + """length of time (in minutes) each model time period represents. + + Must be whole factor of ``time_window``.""" + + periods: list[int] + """Breakpoints that define the aggregate periods for skims and assignment. + + The first value should be zero and the last value should equal `time_window` + divided by `period_minutes`. The intervals between these various values + represent the skimmed time periods, so this list should be one longer than + that of `labels`. + """ + + labels: list[str] + """Labels to define names for aggregate periods for skims and assignment""" + + @root_validator(pre=True) + def hours_deprecated(cls, data): + if "hours" in data: + data["periods"] = data.pop("hours") + warnings.warn( + "support for `skim_time_periods` key `hours` will be removed in " + "future verions. Use `periods` instead", + FutureWarning, + stacklevel=2, + ) + return data + + +class NetworkSettings(PydanticReadable, extra="forbid"): """ Network level of service and skims settings @@ -145,6 +205,9 @@ class NetworkSettings(PydanticBase): usually called ``network_los.yaml``. """ + name: str = None + """Name of this network, not used for anything?""" + zone_system: int """Which zone system type is used. @@ -153,27 +216,21 @@ class NetworkSettings(PydanticBase): * 3 - MAZ, TAZ, and TAP """ - taz_skims: Union[str, TAZ_Settings] = None + taz_skims: Union[str, list[str], TAZ_Settings] = None """Instructions for how to load and pre-process skim matrices. - If given as a string, it is interpreted as the location for OMX file(s), - either as a single file or as a glob-matching pattern for multiple files. - The time period for the matrix must be represented at the end of the matrix - name and be seperated by a double_underscore (e.g. `BUS_IVT__AM` indicates base - skim BUS_IVT with a time period of AM. + If given as a string or a list of strings, it is interpreted as the location + for OMX file(s), either as a single file or as a glob-matching pattern for + multiple files. The time period for the matrix must be represented at the end + of the matrix name and be seperated by a double_underscore (e.g. `BUS_IVT__AM` + indicates base skim BUS_IVT with a time period of AM. Alternatively, this can be given as a nested dictionary defined via the TAZ_Settings class, which allows for ZARR transformation and pre-processing. """ - skim_time_periods: dict - """time period upper bound values and labels - - * ``time_window`` - total duration (in minutes) of the modeled time span (Default: 1440 minutes (24 hours)) - * ``period_minutes`` - length of time (in minutes) each model time period represents. Must be whole factor of ``time_window``. (Default: 60 minutes) - * ``periods`` - Breakpoints that define the aggregate periods for skims and assignment - * ``labels`` - Labels to define names for aggregate periods for skims and assignment - """ + skim_time_periods: TimeSettings + """How to discretize time in this model.""" read_skim_cache: bool = False """Read cached skims (using numpy memmap) from output directory. @@ -189,5 +246,65 @@ class NetworkSettings(PydanticBase): runs. """ - cache_dir: str = None + network_cache_dir: str = None """alternate dir to read/write cache files (defaults to output_dir)""" + + #### 2 ZONE #### + + maz: str = None + """Filename for the MAZ data file. + + This file should contain the MAZ ID, TAZ, and land use and other MAZ attributes + """ + + maz_to_maz: MazToMazSettings | None = None + """Settings to manage maz-to-maz level of service in 2- and 3-zone models.""" + + #### 3 ZONE #### + + tap: str = None + """Filename for the TAP data file. + + This file should contain the MAZ ID, TAZ, and land use and other MAZ attributes + """ + + maz_to_tap: dict[str, Any] = None + """Settings to manage maz-to-tap level of service in 3-zone models.""" + + demographic_segments: Any = None + + tap_skims: Union[str, list[str]] = None + + tap_lines: str = None + """TAP lines filename.""" + + TVPB_SETTINGS: Any = None + + rebuild_tvpb_cache: bool = True + """ + rebuild and overwrite existing pre-computed TAP to TAP utilities cache + """ + + trace_tvpb_cache_as_csv: bool = False + """Write a CSV version of TVPB cache for tracing + + Not currently implemented.""" + + skim_dict_factory: Literal[ + "NumpyArraySkimFactory", + "MemMapSkimFactory", + ] = "NumpyArraySkimFactory" + """The skim dict factory to use. + + The MemMapSkimFactory is strictly experimental. + """ + + source_file_paths: list[Path] = None + """ + A list of source files from which these settings were loaded. + + This value should not be set by the user within the YAML settings files, + instead it is populated as those files are loaded. It is primarily + provided for debugging purposes, and does not actually affect the operation + of the model. + """ diff --git a/activitysim/core/configuration/top.py b/activitysim/core/configuration/top.py index f956bb6ea..c24861138 100644 --- a/activitysim/core/configuration/top.py +++ b/activitysim/core/configuration/top.py @@ -1,4 +1,11 @@ -from .base import PydanticBase, Union +from __future__ import annotations + +from pathlib import Path +from typing import Any, Literal + +from pydantic import validator + +from activitysim.core.configuration.base import PydanticBase, Union class InputTable(PydanticBase): @@ -9,14 +16,14 @@ class InputTable(PydanticBase): tablename: str """Name of the injected table""" - filename: str = None + filename: Path = None """ Name of the CSV or HDF5 file to read. If not provided, defaults to `input_store` """ - index_col: str = None + index_col: Union[str, None] = "NOTSET" """table column to use for the index""" rename_columns: dict[str, str] = None @@ -65,9 +72,23 @@ class InputTable(PydanticBase): and retained. """ + drop_columns: list[str] = None + """ + Columns to drop once read in to memory. + + Save only the columns needed for modeling or analysis to save on memory + and file I/O. If not given, all columns in the input file will be read + and retained. + """ + h5_tablename: str = None """table name if reading from HDF5 and different from `tablename`""" + dtypes: dict[str, str] = None + """ + dtypes for loaded columns + """ + class OutputTable(PydanticBase): tablename: str @@ -100,6 +121,11 @@ class OutputTables(PydanticBase): h5_store: bool = False """Write tables into a single HDF5 store instead of individual CSVs.""" + file_type: Literal["csv", "parquet", "h5"] = "csv" + """ + Specifies the file type for output tables. Options are limited to 'csv', + 'h5' or 'parquet'. Only applied if h5_store is set to False.""" + action: str """Whether to 'include' or 'skip' the enumerated tables in `tables`.""" @@ -126,8 +152,17 @@ class OutputTables(PydanticBase): """ -class MultiprocessStepSlice(PydanticBase): - """Instructions on how to slice tables for each subprocess.""" +class MultiprocessStepSlice(PydanticBase, extra="forbid"): + """ + Instructions on how to slice tables for each subprocess. + + .. versionchanged:: 1.3 + + In ActivitySim versions 1.2 and earlier, slicing instructions for + multiprocess steps allowed for an "except" instruction, which has + been renamed to be "exclude" to avoid problems from using a reserved + Python keyword. + """ tables: list[str] """ @@ -147,12 +182,16 @@ class MultiprocessStepSlice(PydanticBase): names as the persons table. """ - exclude: Union[bool, str, list[str]] + exclude: Union[bool, str, list[str]] = None """ Optional list of tables not to slice even if they have a sliceable index name. Or set to `True` or "*" to exclude all tables not explicitly listed in `tables`. + + Note in ActivitySim versions 1.2 and earlier, this option was named "except" + instead of "exclude", but that is a reserved python keyword and cannot be + used as a Pydantic field name. """ @@ -178,8 +217,10 @@ class MultiprocessStep(PydanticBase): slice: MultiprocessStepSlice = None """Instructions on how to slice tables for each subprocess.""" + chunk_size: int = None + -class Settings(PydanticBase): +class Settings(PydanticBase, extra="allow", validate_assignment=True): """ The overall settings for the ActivitySim model system. @@ -192,7 +233,7 @@ class Settings(PydanticBase): the model. """ - models: list[str] + models: list[str] = None """ list of model steps to run - auto ownership, tour frequency, etc. @@ -210,13 +251,13 @@ class Settings(PydanticBase): half the number of available CPU cores, plus 1. """ - multiprocess_steps: list[MultiprocessStep] + multiprocess_steps: list[MultiprocessStep] = None """A list of multiprocess steps.""" - resume_after: str = None + resume_after: str | None = None """to resume running the data pipeline after the last successful checkpoint""" - input_table_list: list[InputTable] + input_table_list: list[InputTable] = None """list of table names, indices, and column re-maps for each table in `input_store`""" input_store: str = None @@ -235,21 +276,23 @@ class Settings(PydanticBase): If omitted or set to 0, ActivitySim will simulate all households. """ - trace_hh_id: Union[int, list] = None + trace_hh_id: int | None = None """ - Trace household id(s) + Trace this household id If omitted, no tracing is written out """ - trace_od: list[int] = None + trace_od: tuple[int, int] | None = None """ Trace origin, destination pair in accessibility calculation If omitted, no tracing is written out. """ - chunk_training_mode: str = None + chunk_training_mode: Literal[ + "disabled", "training", "production", "adaptive", "explicit" + ] = "disabled" """ The method to use for chunk training. @@ -257,18 +300,71 @@ class Settings(PydanticBase): See :ref:`chunk_size` for more details. """ - chunk_size: int = None + chunk_size: int = 0 """ Approximate amount of RAM to allocate to ActivitySim for batch processing. See :ref:`chunk_size` for more details. """ - chunk_method: str = None + chunk_method: Literal[ + "bytes", + "uss", + "hybrid_uss", + "rss", + "hybrid_rss", + ] = "hybrid_uss" """ Memory use measure to use for chunking. - See :ref:`chunk_size`. + The following methods are supported to calculate memory overhead when chunking + is enabled: + + * "bytes" + expected rowsize based on actual size (as reported by numpy and + pandas) of explicitly allocated data this can underestimate overhead due + to transient data requirements of operations (e.g. merge, sort, transpose). + * "uss" + expected rowsize based on change in (unique set size) (uss) both as + a result of explicit data allocation, and readings by MemMonitor sniffer + thread that measures transient uss during time-consuming numpy and pandas + operations. + * "hybrid_uss" + hybrid_uss avoids problems with pure uss, especially with + small chunk sizes (e.g. initial training chunks) as numpy may recycle + cached blocks and show no increase in uss even though data was allocated + and logged. + * "rss" + like uss, but for resident set size (rss), which is the portion of + memory occupied by a process that is held in RAM. + * "hybrid_rss" + like hybrid_uss, but for rss + + RSS is reported by :py:meth:`psutil.Process.memory_info` and USS is reported by + :py:meth:`psutil.Process.memory_full_info`. USS is the memory which is private to + a process and which would be freed if the process were terminated. This is + the metric that most closely matches the rather vague notion of memory + "in use" (the meaning of which is difficult to pin down in operating systems + with virtual memory where memory can (but sometimes can't) be swapped or + mapped to disk. Previous testing found `hybrid_uss` performs best and is most + reliable and is therefore the default. + + For more, see :ref:`chunk_size`. + """ + + keep_chunk_logs: bool = True + """ + Whether to keep chunk logs when deleting other files. + """ + + default_initial_rows_per_chunk: int = 100 + """ + Default number of rows to use in initial chunking. + """ + + min_available_chunk_ratio: float = 0.05 + """ + minimum fraction of total chunk_size to reserve for adaptive chunking """ checkpoints: Union[bool, list] = True @@ -280,6 +376,11 @@ class Settings(PydanticBase): list of models to checkpoint. """ + checkpoint_format: Literal["hdf", "parquet"] = "parquet" + """ + Storage format to use when saving checkpoint files. + """ + check_for_variability: bool = False """ Debugging feature to find broken model specifications. @@ -414,13 +515,14 @@ class Settings(PydanticBase): This is generally a developer-only feature and not needed for regular usage of ActivitySim. - The data tables are written out before any annotation steps, but after - initial processing (renaming, filtering columns, recoding). + The data tables are written out to `/raw_tables` before any + annotation steps, but after initial processing (renaming, filtering columns, + recoding). """ disable_destination_sampling: bool = False - want_dest_choice_presampling: bool = False + want_dest_choice_presampling: bool = True testing_fail_trip_destination: bool = False @@ -439,7 +541,7 @@ class Settings(PydanticBase): developer-only feature for testing and development. """ - recode_pipeline_columns: bool = True + recode_pipeline_columns: bool = False """ Apply recoding instructions on input and final output for pipeline tables. @@ -457,3 +559,111 @@ class Settings(PydanticBase): """ keep_mem_logs: bool = False + + pipeline_complib: str = "NOTSET" + """ + Compression library to use when storing pipeline tables in an HDF5 file. + + .. versionadded:: 1.3 + """ + + treat_warnings_as_errors: bool = False + """ + Treat most warnings as errors. + + Use of this setting is not recommended outside of rigorous testing regimes. + + .. versionadded:: 1.3 + """ + + log_settings: tuple[str] = ( + "households_sample_size", + "chunk_size", + "chunk_method", + "chunk_training_mode", + "multiprocess", + "num_processes", + "resume_after", + "trace_hh_id", + "memory_profile", + "instrument", + ) + """ + Setting to log on startup. + """ + + hh_ids: Path = None + """ + Load only the household ids given in this file. + + The file need only contain the desired households ids, nothing else. + If given as a relative path (or just a file name), both the data and + config directories are searched, in that order, for the matching file. + """ + + source_file_paths: list[Path] = None + """ + A list of source files from which these settings were loaded. + + This value should not be set by the user within the YAML settings files, + instead it is populated as those files are loaded. It is primarily + provided for debugging purposes, and does not actually affect the operation + of the model. + """ + + inherit_settings: Union[bool, Path] = None + """ + Instruction on if and how to find other files that can provide settings. + + When this value is True, all config directories are searched in order for + additional files with the same filename. If other files are found they + are also loaded, but only settings values that are not already explicitly + set are applied. Alternatively, set this to a different file name, in which + case settings from that other file are loaded (again, backfilling unset + values only). Once the settings files are loaded, this value does not + have any other effect on the operation of the model(s). + """ + + rng_base_seed: Union[int, None] = 0 + """Base seed for pseudo-random number generator.""" + + duplicate_step_execution: Literal["error", "allow"] = "error" + """ + How activitysim should handle attempts to re-run a step with the same name. + + .. versionadded:: 1.3 + + * "error" + Attempts to re-run a step that has already been run and + checkpointed will raise a `RuntimeError`, halting model execution. + This is the default if no value is given. + * "allow" + Attempts to re-run a step are allowed, potentially overwriting + the results from the previous time that step was run. + """ + + downcast_int: bool = False + """ + automatically downcasting integer variables. + + Use of this setting should be tested by the region to confirm result consistency. + + .. versionadded:: 1.3 + """ + + downcast_float: bool = False + """ + automatically downcasting float variables. + + Use of this setting should be tested by the region to confirm result consistency. + + .. versionadded:: 1.3 + """ + + other_settings: dict[str, Any] = None + + def _get_attr(self, attr): + try: + return getattr(self, attr) + except AttributeError: + return self.other_settings.get(attr) diff --git a/activitysim/core/contrast/__init__.py b/activitysim/core/contrast/__init__.py new file mode 100644 index 000000000..d4e787d53 --- /dev/null +++ b/activitysim/core/contrast/__init__.py @@ -0,0 +1,9 @@ +""" +Tools for contrasting the data or processes of various ActivitySim States. +""" + +from __future__ import annotations + +from ._optional import altair +from .continuous import compare_histogram +from .nominal import NominalTarget, compare_nominal diff --git a/activitysim/core/contrast/_optional.py b/activitysim/core/contrast/_optional.py new file mode 100644 index 000000000..0a224b53f --- /dev/null +++ b/activitysim/core/contrast/_optional.py @@ -0,0 +1,11 @@ +from __future__ import annotations + +try: + import altair +except ImportError as altair_error: + altair = altair_error + +try: + import altaia +except ImportError as altaia_error: + altaia = altaia_error diff --git a/activitysim/core/contrast/continuous.py b/activitysim/core/contrast/continuous.py new file mode 100644 index 000000000..87bb91f3b --- /dev/null +++ b/activitysim/core/contrast/continuous.py @@ -0,0 +1,306 @@ +from __future__ import annotations + +import logging + +import numpy as np +import pandas as pd + +from activitysim.core import workflow +from activitysim.core.contrast import altair as alt + +logger = logging.getLogger(__name__) + + +def compare_histogram( + states: dict[str, workflow.State], + table_name, + column_name, + *, + checkpoint_name=None, + table_filter=None, + grouping=None, + bins: int | str = 10, + bounds=(None, None), + axis_label=None, + interpolate="step", + number_format=",.2f", + title=None, + tickCount=4, + style="histogram", + bandwidth=1, + kde_support=100, + relabel_states=None, +): + """ + + Parameters + ---------- + states + bins : int or str, default 10 + If an integer, then the range of data will be divided into this many + bins. If a string, no binning is undertaken, but the values are + converted to this datatype, usually "int" to achieve the general effect + of binning. + relabel_states : Mapping[str,str] + Remap the keys in `states` with these values. Any + missing values are retained. This allows you to modify + the figure to e.g. change "reference" to "v1.0.4" without + editing the original input data. + + Returns + ------- + altair.Chart + """ + if isinstance(alt, Exception): + raise alt + + if relabel_states is None: + relabel_states = {} + + if bins == "int" and number_format == ",.2f": + number_format = ",d" + + if grouping: + groupings = [grouping] + else: + groupings = [] + + targets = {} + for key, tableset in states.items(): + if isinstance(tableset, workflow.State): + df = tableset.get_dataframe(table_name) + else: + df = tableset.get_dataframe(table_name, checkpoint_name=checkpoint_name) + if isinstance(table_filter, str): + try: + df = df.query(table_filter) + except NotImplementedError: + # pandas.eval can't handle, try sharrow + import sharrow as sh + + q = ( + sh.DataTree(base=df) + .setup_flow({"out": table_filter}) + .load(dtype=np.bool_) + ) + df = df.loc[q] + targets[key] = df[[column_name] + groupings] + + result = pd.concat(targets, names=["source"]) + if bounds[0] is not None: + result = result[result[column_name] >= bounds[0]] + if bounds[1] is not None: + result = result[result[column_name] <= bounds[1]] + lower_bound = result[column_name].min() + upper_bound = result[column_name].max() + if isinstance(bins, str): + bin_width = 0 + result[column_name] = result[column_name].astype(bins) + else: + bin_width = (upper_bound - lower_bound) / bins + if style == "histogram": + result[column_name] = pd.cut(result[column_name], bins) + targets = {k: result.loc[k] for k in targets.keys()} + + n = f"n_{table_name}" + s = f"share_{table_name}" + + d = {} + if style == "histogram": + for key, dat in targets.items(): + if groupings: + df = ( + dat.groupby(groupings + [column_name]) + .size() + .rename(n) + .unstack(column_name) + .fillna(0) + .stack() + .rename(n) + .reset_index() + ) + df[s] = df[n] / df.groupby(groupings)[n].transform("sum") + else: + df = dat.groupby(column_name).size().rename(n).reset_index() + df[s] = df[n] / df[n].sum() + + if bin_width: + if groupings: + dummy = df.groupby(groupings).size().index.to_frame() + else: + dummy = pd.DataFrame(index=[0]) + df[column_name] = df[column_name].apply(lambda x: x.mid) + lower_edge = lower_bound - (bin_width / 2) + upper_edge = upper_bound + (bin_width / 2) + df = pd.concat( + [ + dummy.assign(**{column_name: lower_edge, n: 0, s: 0}), + df, + dummy.assign(**{column_name: upper_edge, n: 0, s: 0}), + ] + ).reset_index(drop=True) + d[relabel_states.get(key, key)] = df + elif style == "kde": + for key, dat in targets.items(): + df, bw = _kde(dat[column_name], bandwidth=bandwidth, n=kde_support) + d[relabel_states.get(key, key)] = df + + # This is sorted in reverse alphabetical order by source, so that + # the stroke width for the first line plotted is fattest, and progressively + # thinner lines are plotted over that, so all data is visible on the figure. + all_d = ( + pd.concat(d, names=["source"]) + .reset_index() + .sort_values("source", ascending=False) + ) + + if style == "histogram": + if len(states) != 1: + encode_kwds = dict( + color="source", + y=alt.Y(s, axis=alt.Axis(grid=False, title="")), + x=alt.X( + f"{column_name}:Q" if bin_width else f"{column_name}:O", + axis=alt.Axis( + grid=False, + title=axis_label or column_name, + format=number_format, + tickCount=tickCount, + ), + ), + # opacity=alt.condition(selection, alt.value(1), alt.value(0.2)), + tooltip=[ + "source", + alt.Tooltip(column_name, format=number_format), + n, + alt.Tooltip(s, format=".2%"), + ], + strokeWidth="source", + ) + else: + encode_kwds = dict( + color="source", + y=alt.Y(s, axis=alt.Axis(grid=False, title="")), + x=alt.X( + f"{column_name}:Q" if bin_width else f"{column_name}:O", + axis=alt.Axis( + grid=False, + title=axis_label or column_name, + format=number_format, + tickCount=tickCount, + ), + ), + tooltip=[ + alt.Tooltip(column_name, format=number_format), + n, + alt.Tooltip(s, format=".2%"), + ], + ) + elif style == "kde": + if len(states) != 1: + encode_kwds = dict( + color="source", + y=alt.Y("density", axis=alt.Axis(grid=False, title="")), + x=alt.X( + f"{column_name}:Q", + axis=alt.Axis( + grid=False, + title=axis_label or column_name, + format=number_format, + tickCount=tickCount, + ), + ), + strokeWidth="source", + ) + else: + encode_kwds = dict( + color="source", + y=alt.Y("density", axis=alt.Axis(grid=False, title="")), + x=alt.X( + f"{column_name}:Q", + axis=alt.Axis( + grid=False, + title=axis_label or column_name, + format=number_format, + tickCount=tickCount, + ), + ), + ) + else: + raise ValueError(f"unknown {style=}") + + if grouping: + encode_kwds["facet"] = alt.Facet(grouping, columns=3) + + if grouping: + properties_kwds = dict( + width=200, + height=120, + ) + else: + properties_kwds = dict( + width=400, + height=240, + ) + + if bounds[0] is not None and bounds[1] is not None: + encode_kwds["x"]["scale"] = alt.Scale(domain=bounds) + + if len(states) != 1: + fig = ( + alt.Chart(all_d) + .mark_line(interpolate=interpolate) + .encode(**encode_kwds) + .properties(**properties_kwds) + ) + else: + if bin_width: + fig = ( + alt.Chart(all_d) + .mark_area(interpolate=interpolate) + .encode(**encode_kwds) + .properties(**properties_kwds) + ) + else: + fig = ( + alt.Chart(all_d) + .mark_bar() + .encode(**encode_kwds) + .properties(**properties_kwds) + ) + + if title: + fig = fig.properties(title=title).configure_title( + fontSize=20, + anchor="start", + color="black", + ) + + return fig + + +def _kde(values, n=5, bandwidth=0.2, **kwargs): + """Kernel Density Estimation with Scikit-learn""" + from sklearn.neighbors import KernelDensity + + x = np.asarray(values) + + if isinstance(bandwidth, (float, int)): + kde_skl = KernelDensity(bandwidth=bandwidth, **kwargs) + kde_skl.fit(x[:, np.newaxis]) + else: + from sklearn.model_selection import GridSearchCV + + grid = GridSearchCV( + KernelDensity(), {"bandwidth": bandwidth}, cv=3 + ) # 20-fold cross-validation + grid.fit(x[:, None]) + bandwidth = grid.best_params_["bandwidth"] + kde_skl = grid.best_estimator_ + + x_grid = np.linspace(values.min(), values.max(), n) + + # score_samples() returns the log-likelihood of the samples + log_pdf = kde_skl.score_samples(x_grid[:, np.newaxis]) + name = getattr(values, "name", "x") + return (pd.DataFrame({name: x_grid, "density": np.exp(log_pdf)}), bandwidth) diff --git a/activitysim/core/contrast/nominal.py b/activitysim/core/contrast/nominal.py new file mode 100644 index 000000000..42a6d071a --- /dev/null +++ b/activitysim/core/contrast/nominal.py @@ -0,0 +1,206 @@ +from __future__ import annotations + +import enum +import logging + +import numpy as np +import pandas as pd +import pyarrow.compute as pc + +from activitysim.core import workflow +from activitysim.core.contrast import altair as alt + +logger = logging.getLogger(__name__) + + +def _parse_grouping(g): + if isinstance(g, str): + return g, {"shorthand": g} + elif isinstance(g, dict): + return g.get("field"), g + elif g is None: + return None, None + else: + raise ValueError(g) + + +class NominalTarget: + def __init__(self, counts: dict): + total = sum(counts[i] for i in counts) + self._shares = {k: v / total for (k, v) in counts.items()} + self._counts = counts + + def as_dataframe(self, table_name, column_name): + targets = {} + if self._shares is not None: + targets[f"share of {table_name}"] = self._shares + if self._counts is not None: + targets[f"# of {table_name}"] = self._counts + return pd.DataFrame(targets).rename_axis(column_name, axis=0).reset_index() + + +def compare_nominal( + states: dict[str, workflow.State], + table_name: str, + column_name: str, + row_grouping=None, + col_grouping=None, + count_label=None, + share_label=None, + axis_label="Share", + title=None, + ordinal=False, + plot_type="share", + relabel_tablesets=None, + categories=None, + table_filter=None, +): + """ + Parameters + ---------- + states : Mapping[str, BasicState] + categories : Mapping + Maps the values found in the referred column into readable names. + """ + if isinstance(alt, Exception): + raise alt + + if isinstance(states, workflow.State): + states = {"results": states} + + if count_label is None: + count_label = f"# of {table_name}" + if share_label is None: + share_label = f"share of {table_name}" + if relabel_tablesets is None: + relabel_tablesets = {} + + row_g, row_g_kwd = _parse_grouping(row_grouping) + col_g, col_g_kwd = _parse_grouping(col_grouping) + + d = {} + groupings = [] + if row_g is not None: + groupings.append(row_g) + if col_g is not None: + groupings.append(col_g) + + if isinstance(table_filter, str): + table_filters = [table_filter] + mask = pc.field(table_filter) + elif table_filter is None: + table_filters = [] + mask = None + else: + raise NotImplementedError(f"{type(table_filter)=}") + + for key, state in states.items(): + if isinstance(state, workflow.State): + try: + raw = state.get_pyarrow( + table_name, groupings + [column_name] + table_filters + ) + except KeyError: + # table filter is maybe complex, try using sharrow + raw = state.get_pyarrow(table_name, groupings + [column_name]) + import sharrow as sh + + mask = ( + sh.DataTree(base=state.get_pyarrow(table_name)) + .setup_flow({"out": table_filter}) + .load(dtype=np.bool_) + .reshape(-1) + ) + if mask is not None: + raw = raw.filter(mask) + df = ( + raw.group_by(groupings + [column_name]) + .aggregate([(column_name, "count")]) + .to_pandas() + .rename(columns={f"{column_name}_count": count_label}) + ) + if not groupings: + df[share_label] = df[count_label] / df[count_label].sum() + else: + df[share_label] = df[count_label] / df.groupby(groupings)[ + count_label + ].transform("sum") + d[relabel_tablesets.get(key, key)] = df + elif isinstance(state, NominalTarget): + d[relabel_tablesets.get(key, key)] = state.as_dataframe( + table_name, column_name + ) + else: + raise TypeError(f"states cannot be {type(state)!r}") + + all_d = pd.concat(d, names=["source"]).reset_index() + + selection = alt.selection_multi( + fields=[column_name], + bind="legend", + ) + + if plot_type == "count": + x = alt.X( + count_label, + axis=alt.Axis(grid=False, labels=False, title=axis_label), + ) + elif plot_type == "share": + x = alt.X( + share_label, + axis=alt.Axis(grid=False, labels=False, title=axis_label), + scale=alt.Scale(domain=[0.0, 1.0]), + ) + else: + raise ValueError(f"unknown plot_type {plot_type}") + + encode = dict( + color=alt.Color( + column_name, + type="ordinal" if ordinal else "nominal", + ), + y=alt.Y("source", axis=alt.Axis(grid=False, title=""), sort=None), + x=x, + opacity=alt.condition(selection, alt.value(1), alt.value(0.2)), + tooltip=[ + column_name, + "source", + count_label, + alt.Tooltip(f"{share_label}:Q", format=".2%"), + ] + + groupings, + ) + if row_g is not None: + encode["row"] = alt.Row(**row_g_kwd) + if col_g is not None: + encode["column"] = alt.Column(**col_g_kwd) + + if isinstance(categories, enum.EnumMeta): + categories = {i.value: i.name for i in categories} + if categories: + all_d[column_name] = all_d[column_name].map(categories) + + fig = ( + alt.Chart(all_d) + .mark_bar() + .encode( + **encode, + ) + .add_selection( + selection, + ) + ) + + if title: + fig = fig.properties(title=title).configure_title( + fontSize=20, + anchor="start", + color="black", + ) + + if col_grouping is not None: + fig = fig.properties( + width=100, + ) + + return fig diff --git a/activitysim/abm/models/util/estimation.py b/activitysim/core/estimation.py similarity index 82% rename from activitysim/abm/models/util/estimation.py rename to activitysim/core/estimation.py index 6a5dbadf1..f6a6ebc7c 100644 --- a/activitysim/abm/models/util/estimation.py +++ b/activitysim/core/estimation.py @@ -1,5 +1,6 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import logging import os @@ -8,9 +9,10 @@ import pandas as pd import yaml -from activitysim.abm.models.util import canonical_ids as cid -from activitysim.core import config, simulate +from activitysim.core import simulate, workflow +from activitysim.core.configuration.base import PydanticBase from activitysim.core.util import reindex +from activitysim.core.yaml_tools import safe_dump logger = logging.getLogger("estimation") @@ -29,11 +31,13 @@ def unlink_files(directory_path, file_types=("csv", "yaml")): print(e) -class Estimator(object): - def __init__(self, bundle_name, model_name, estimation_table_recipes): - +class Estimator: + def __init__( + self, state: workflow.State, bundle_name, model_name, estimation_table_recipes + ): logger.info("Initialize Estimator for'%s'" % (model_name,)) + self.state = state self.bundle_name = bundle_name self.model_name = model_name self.settings_name = model_name @@ -50,7 +54,8 @@ def __init__(self, bundle_name, model_name, estimation_table_recipes): if self.bundle_name != self.model_name: # kind of inelegant to always delete these, but ok as they are redundantly recreated for each sub model unlink_files( - self.output_directory(bundle_directory=True), file_types=("csv", "yaml") + self.output_directory(bundle_directory=True), + file_types=("csv", "yaml"), ) # FIXME - not required? @@ -108,7 +113,6 @@ def get_chooser_id(self): return self.chooser_id_column_name def end_estimation(self): - self.write_omnibus_table() self.estimating = False @@ -119,13 +123,13 @@ def end_estimation(self): manager.release(self) def output_directory(self, bundle_directory=False): - # shouldn't be asking for this if not estimating assert self.estimating assert self.model_name is not None dir = os.path.join( - config.output_file_path("estimation_data_bundle"), self.bundle_name + self.state.filesystem.get_output_dir("estimation_data_bundle"), + self.bundle_name, ) if bundle_directory: @@ -138,7 +142,6 @@ def output_directory(self, bundle_directory=False): return dir def output_file_path(self, table_name, file_type=None, bundle_directory=False): - # shouldn't be asking for this if not estimating assert self.estimating @@ -214,12 +217,10 @@ def write_table(df, table_name, index, append, bundle_directory): self.debug("write_table write: %s" % table_name) def write_omnibus_table(self): - if len(self.omnibus_tables) == 0: return for omnibus_table, table_names in self.omnibus_tables.items(): - self.debug( "write_omnibus_table: %s table_names: %s" % (omnibus_table, table_names) ) @@ -247,7 +248,6 @@ def write_omnibus_table(self): self.debug("write_omnibus_choosers: %s" % file_path) def write_dict(self, d, dict_name, bundle_directory): - assert self.estimating file_path = self.output_file_path(dict_name, "yaml", bundle_directory) @@ -257,7 +257,7 @@ def write_dict(self, d, dict_name, bundle_directory): with open(file_path, "w") as f: # write ordered dict as array - yaml.dump(d, f) + safe_dump(d, f) self.debug("estimate.write_dict: %s" % file_path) @@ -272,12 +272,17 @@ def write_coefficients( if model_settings is not None: assert file_name is None - file_name = model_settings["COEFFICIENTS"] + file_name = ( + getattr(model_settings, "COEFFICIENTS", None) + or model_settings["COEFFICIENTS"] + ) assert file_name is not None if coefficients_df is None: - coefficients_df = simulate.read_model_coefficients(file_name=file_name) + coefficients_df = self.state.filesystem.read_model_coefficients( + file_name=file_name + ) # preserve original config file name base_file_name = os.path.basename(file_name) @@ -288,7 +293,11 @@ def write_coefficients( def write_coefficients_template(self, model_settings): assert self.estimating - coefficients_df = simulate.read_model_coefficient_template(model_settings) + if isinstance(model_settings, PydanticBase): + model_settings = model_settings.dict() + coefficients_df = simulate.read_model_coefficient_template( + self.state.filesystem, model_settings + ) tag = "coefficients_template" self.write_table(coefficients_df, tag, append=False) @@ -316,35 +325,52 @@ def write_nest_spec(self, nest_spec): def copy_model_settings( self, settings_file_name, tag="model_settings", bundle_directory=False ): - - input_path = config.base_settings_file_path(settings_file_name) + input_path = self.state.filesystem.get_config_file_path(settings_file_name) output_path = self.output_file_path(tag, "yaml", bundle_directory) shutil.copy(input_path, output_path) def write_model_settings( - self, model_settings, settings_file_name, bundle_directory=False + self, + model_settings: PydanticBase | dict, + settings_file_name: str, + bundle_directory: bool = False, ): - - if "include_settings" in model_settings: + if isinstance(model_settings, PydanticBase): + # TODO: Deal with how Pydantic settings are used in estimation. + # Legacy estimation data bundles provide separate handling + # for when `include_settings` and `inherit_settings` keys + # are present in YAML files. The new pydantic settings model + # divorces us from the config source content and merely stores + # the resulting values of settings. Do we really want to + # carry around all this baggage in estimation? The content + # is still out there in the original source files, why do we + # make copies in the estimation data bundle in the first place? file_path = self.output_file_path( "model_settings", "yaml", bundle_directory ) assert not os.path.isfile(file_path) with open(file_path, "w") as f: - yaml.dump(model_settings, f) + safe_dump(model_settings.dict(), f) else: - self.copy_model_settings( - settings_file_name, bundle_directory=bundle_directory - ) - if "inherit_settings" in model_settings: - self.write_dict( - model_settings, "inherited_model_settings", bundle_directory - ) + if "include_settings" in model_settings: + file_path = self.output_file_path( + "model_settings", "yaml", bundle_directory + ) + assert not os.path.isfile(file_path) + with open(file_path, "w") as f: + safe_dump(model_settings, f) + else: + self.copy_model_settings( + settings_file_name, bundle_directory=bundle_directory + ) + if "inherit_settings" in model_settings: + self.write_dict( + model_settings, "inherited_model_settings", bundle_directory + ) def melt_alternatives(self, df): - alt_id_name = self.alt_id_column_name assert alt_id_name is not None, ( @@ -440,12 +466,11 @@ def get_survey_table(self, table_name): def write_spec( self, model_settings=None, file_name=None, tag="SPEC", bundle_directory=False ): - if model_settings is not None: assert file_name is None - file_name = model_settings[tag] + file_name = getattr(model_settings, tag, None) or model_settings[tag] - input_path = config.config_file_path(file_name) + input_path = self.state.filesystem.get_config_file_path(file_name) table_name = tag # more readable than full spec file_name output_path = self.output_file_path(table_name, "csv", bundle_directory) @@ -455,22 +480,26 @@ def write_spec( class EstimationManager(object): def __init__(self): - self.settings_initialized = False self.bundles = [] self.estimation_table_recipes = {} self.model_estimation_table_types = {} self.estimating = {} - def initialize_settings(self): - + def initialize_settings(self, state): # FIXME - can't we just initialize in init and handle no-presence of settings file as not enabled if self.settings_initialized: return assert not self.settings_initialized - settings = config.read_model_settings(ESTIMATION_SETTINGS_FILE_NAME) - self.enabled = settings.get("enable", "True") + settings = state.filesystem.read_model_settings( + ESTIMATION_SETTINGS_FILE_NAME, mandatory=False + ) + if not settings: + # if the model settings file is not found, we are not in estimation mode. + self.enabled = False + else: + self.enabled = settings.get("enable", "True") self.bundles = settings.get("bundles", []) self.model_estimation_table_types = settings.get( @@ -479,7 +508,6 @@ def initialize_settings(self): self.estimation_table_recipes = settings.get("estimation_table_recipes", {}) if self.enabled: - self.survey_tables = settings.get("survey_tables", {}) for table_name, table_info in self.survey_tables.items(): assert ( @@ -488,7 +516,7 @@ def initialize_settings(self): table_name, ESTIMATION_SETTINGS_FILE_NAME, ) - file_path = config.data_file_path( + file_path = state.filesystem.get_data_file_path( table_info["file_name"], mandatory=True ) assert os.path.exists( @@ -507,21 +535,25 @@ def initialize_settings(self): self.settings_initialized = True - def begin_estimation(self, model_name, bundle_name=None): + def begin_estimation( + self, state: workflow.State, model_name: str, bundle_name=None + ) -> Estimator | None: """ begin estimating of model_name is specified as model to estimate, otherwise return False Parameters ---------- - model_name + state : workflow.State + model_name : str + bundle_name : str, optional Returns ------- - + Estimator or None """ # load estimation settings file if not self.settings_initialized: - self.initialize_settings() + self.initialize_settings(state) # global estimation setting if not self.enabled: @@ -558,6 +590,7 @@ def begin_estimation(self, model_name, bundle_name=None): ) self.estimating[model_name] = Estimator( + state, bundle_name, model_name, estimation_table_recipes=self.estimation_table_recipes[ @@ -568,7 +601,6 @@ def begin_estimation(self, model_name, bundle_name=None): return self.estimating[model_name] def release(self, estimator): - self.estimating.pop(estimator.model_name) def get_survey_table(self, table_name): @@ -582,7 +614,6 @@ def get_survey_table(self, table_name): return df def get_survey_values(self, model_values, table_name, column_names): - assert isinstance( model_values, (pd.Series, pd.DataFrame, pd.Index) ), "get_survey_values model_values has unrecognized type %s" % type( @@ -670,6 +701,23 @@ def get_survey_values(self, model_values, table_name, column_names): values[c] = survey_values + # if the categorical column exists in the model data, use the same data type + if isinstance(model_values, pd.Series): + if isinstance(model_values.dtype, pd.api.types.CategoricalDtype): + for v in values[c].dropna().unique(): + if not v in model_values.cat.categories: + model_values = model_values.cat.add_categories([v]) + values[c] = values[c].astype(model_values.dtype) + elif isinstance(model_values, pd.DataFrame): + if c in model_values.columns: + if isinstance(model_values[c].dtype, pd.api.types.CategoricalDtype): + for v in values[c].dropna().unique(): + if not v in model_values[c].cat.categories: + model_values[c] = model_values[c].cat.add_categories( + [v] + ) + values[c] = values[c].astype(model_values[c].dtype) + return values[column_name] if column_name else values diff --git a/activitysim/core/exceptions.py b/activitysim/core/exceptions.py new file mode 100644 index 000000000..29d8f03a1 --- /dev/null +++ b/activitysim/core/exceptions.py @@ -0,0 +1,58 @@ +from __future__ import annotations + + +class PipelineError(ValueError): + """General class for errors in using a Pipeline.""" + + +class StateAccessError(PipelineError): + """Error trying to access a pipeline feature that is not yet initialized.""" + + +class TableTypeError(TypeError): + """Unable to return data in the format requested.""" + + +class DuplicateWorkflowNameError(ValueError): + """More than one workflow function is defined with the same name""" + + +class DuplicateWorkflowTableError(ValueError): + """More than one loadable table is defined with the same name""" + + +class DuplicateLoadableObjectError(ValueError): + """More than one loadable object is defined with the same name""" + + +class SettingsFileNotFoundError(FileNotFoundError): + def __init__(self, file_name, configs_dir): + self.file_name = file_name + self.configs_dir = configs_dir + + def __str__(self): + return repr(f"Settings file '{self.file_name}' not found in {self.configs_dir}") + + +class CheckpointFileNotFoundError(FileNotFoundError): + """The checkpoints file is not found.""" + + +class CheckpointNameNotFoundError(KeyError): + """The checkpoint_name is not found.""" + + +class TableNameNotFound(KeyError): + """The table_name is not found.""" + + +class MissingNameError(KeyError): + """The name is not found.""" + + +class ReadOnlyError(IOError): + """This object is read-only.""" + + +class MissingInputTableDefinition(RuntimeError): + """An input table definition was expected but not found.""" diff --git a/activitysim/core/expressions.py b/activitysim/core/expressions.py index 728b6d440..413636d3f 100644 --- a/activitysim/core/expressions.py +++ b/activitysim/core/expressions.py @@ -1,8 +1,13 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -from activitysim.core import assign, config, inject, simulate, tracing +import pandas as pd + +from activitysim.core import assign, simulate, tracing, workflow +from activitysim.core.configuration.base import PreprocessorSettings, PydanticBase from activitysim.core.util import ( assign_in_place, parse_suffix_args, @@ -12,7 +17,13 @@ logger = logging.getLogger(__name__) -def compute_columns(df, model_settings, locals_dict={}, trace_label=None): +def compute_columns( + state: workflow.State, + df: pd.DataFrame, + model_settings: str | dict | PydanticBase, + locals_dict: dict | None = None, + trace_label: str = None, +) -> pd.DataFrame: """ Evaluate expressions_spec in context of df, with optional additional pipeline tables in locals @@ -27,7 +38,7 @@ def compute_columns(df, model_settings, locals_dict={}, trace_label=None): TABLES - list of pipeline tables to load and make available as (read only) locals str: name of yaml file in configs_dir to load dict from - locals_dict : dict + locals_dict : dict, optional dict of locals (e.g. utility functions) to add to the execution environment trace_label @@ -37,10 +48,17 @@ def compute_columns(df, model_settings, locals_dict={}, trace_label=None): one column for each expression (except temps with ALL_CAP target names) same index as df """ + if locals_dict is None: + locals_dict = {} + + if isinstance(model_settings, PydanticBase): + model_settings = model_settings.dict() if isinstance(model_settings, str): model_settings_name = model_settings - model_settings = config.read_model_settings("%s.yaml" % model_settings) + model_settings = state.filesystem.read_model_settings( + "%s.yaml" % model_settings + ) assert model_settings, "Found no model settings for %s" % model_settings_name else: model_settings_name = "dict" @@ -49,7 +67,7 @@ def compute_columns(df, model_settings, locals_dict={}, trace_label=None): assert "DF" in model_settings, "Expected to find 'DF' in %s" % model_settings_name df_name = model_settings.get("DF") - helper_table_names = model_settings.get("TABLES", []) + helper_table_names = model_settings.get("TABLES") or [] expressions_spec_name = model_settings.get("SPEC", None) # Extract suffix for disaggregate accessibilities. @@ -80,7 +98,7 @@ def compute_columns(df, model_settings, locals_dict={}, trace_label=None): ) expressions_spec = assign.read_assignment_spec( - config.config_file_path(expressions_spec_name) + state.filesystem.get_config_file_path(expressions_spec_name), ) if suffix is not None and roots: @@ -90,7 +108,7 @@ def compute_columns(df, model_settings, locals_dict={}, trace_label=None): "Expected to find some assignment expressions in %s" % expressions_spec_name ) - tables = {t: inject.get_table(t).to_frame() for t in helper_table_names} + tables = {t: state.get_dataframe(t) for t in helper_table_names} # if df was passed in, df might be a slice, or any other table, but DF is it's local alias assert df_name not in tables, "Did not expect to find df '%s' in TABLES" % df_name @@ -99,30 +117,44 @@ def compute_columns(df, model_settings, locals_dict={}, trace_label=None): # be nice and also give it to them as df? tables["df"] = df - _locals_dict = assign.local_utilities() + _locals_dict = assign.local_utilities(state) _locals_dict.update(locals_dict) _locals_dict.update(tables) # FIXME a number of asim model preprocessors want skim_dict - should they request it in model_settings.TABLES? - if config.setting("sharrow", False): - _locals_dict["skim_dict"] = inject.get_injectable("skim_dataset_dict", None) - else: - _locals_dict["skim_dict"] = inject.get_injectable("skim_dict", None) + try: + if state.settings.sharrow: + from activitysim.core.flow import skim_dataset_dict # noqa F401 + from activitysim.core.skim_dataset import skim_dataset # noqa F401 + + _locals_dict["skim_dict"] = state.get_injectable("skim_dataset_dict") + else: + _locals_dict["skim_dict"] = state.get_injectable("skim_dict") + except FileNotFoundError: + pass # maybe we don't even need the skims results, trace_results, trace_assigned_locals = assign.assign_variables( - expressions_spec, df, _locals_dict, trace_rows=tracing.trace_targets(df) + state, + expressions_spec, + df, + _locals_dict, + trace_rows=state.tracing.trace_targets(df), ) if trace_results is not None: - tracing.trace_df(trace_results, label=trace_label, slicer="NONE") + state.tracing.trace_df(trace_results, label=trace_label, slicer="NONE") if trace_assigned_locals: - tracing.write_csv(trace_assigned_locals, file_name="%s_locals" % trace_label) + state.tracing.write_csv( + trace_assigned_locals, file_name="%s_locals" % trace_label + ) return results -def assign_columns(df, model_settings, locals_dict={}, trace_label=None): +def assign_columns( + state: workflow.State, df, model_settings, locals_dict=None, trace_label=None +): """ Evaluate expressions in context of df and assign resulting target columns to df @@ -131,13 +163,17 @@ def assign_columns(df, model_settings, locals_dict={}, trace_label=None): Parameters - same as for compute_columns except df must not be None Returns - nothing since we modify df in place """ + if locals_dict is None: + locals_dict = {} assert df is not None assert model_settings is not None - results = compute_columns(df, model_settings, locals_dict, trace_label) + results = compute_columns(state, df, model_settings, locals_dict, trace_label) - assign_in_place(df, results) + assign_in_place( + df, results, state.settings.downcast_int, state.settings.downcast_float + ) # ################################################################################################## @@ -145,33 +181,45 @@ def assign_columns(df, model_settings, locals_dict={}, trace_label=None): # ################################################################################################## -def annotate_preprocessors(df, locals_dict, skims, model_settings, trace_label): - +def annotate_preprocessors( + state: workflow.State, + df: pd.DataFrame, + locals_dict, + skims, + model_settings: PydanticBase | dict, + trace_label: str, +): locals_d = {} locals_d.update(locals_dict) locals_d.update(skims) - preprocessor_settings = model_settings.get("preprocessor", []) + try: + preprocessor_settings = model_settings.preprocessor + except AttributeError: + preprocessor_settings = model_settings.get("preprocessor", []) + if preprocessor_settings is None: + preprocessor_settings = [] if not isinstance(preprocessor_settings, list): - assert isinstance(preprocessor_settings, dict) + assert isinstance(preprocessor_settings, dict | PreprocessorSettings) preprocessor_settings = [preprocessor_settings] simulate.set_skim_wrapper_targets(df, skims) - for model_settings in preprocessor_settings: - + for preproc_settings in preprocessor_settings: results = compute_columns( + state, df=df, - model_settings=model_settings, + model_settings=preproc_settings, locals_dict=locals_d, trace_label=trace_label, ) - assign_in_place(df, results) + assign_in_place( + df, results, state.settings.downcast_int, state.settings.downcast_float + ) def filter_chooser_columns(choosers, chooser_columns): - missing_columns = [c for c in chooser_columns if c not in choosers] if missing_columns: logger.debug("filter_chooser_columns missing_columns %s" % missing_columns) diff --git a/activitysim/core/fast_mapping.py b/activitysim/core/fast_mapping.py index 5c3a4fd10..04c5f9173 100644 --- a/activitysim/core/fast_mapping.py +++ b/activitysim/core/fast_mapping.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import numba as nb import numpy as np import pandas as pd diff --git a/activitysim/core/flow.py b/activitysim/core/flow.py index 88189ae76..92429e7d4 100644 --- a/activitysim/core/flow.py +++ b/activitysim/core/flow.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import contextlib import glob import logging @@ -11,11 +13,11 @@ import numpy as np import pandas as pd -from .. import __version__ -from ..core import tracing -from . import config, inject -from .simulate_consts import SPEC_EXPRESSION_NAME, SPEC_LABEL_NAME -from .timetable import ( +import activitysim.core.skim_dataset # noqa: F401 +from activitysim import __version__ +from activitysim.core import tracing, workflow +from activitysim.core.simulate_consts import SPEC_EXPRESSION_NAME, SPEC_LABEL_NAME +from activitysim.core.timetable import ( sharrow_tt_adjacent_window_after, sharrow_tt_adjacent_window_before, sharrow_tt_max_time_block_available, @@ -133,7 +135,13 @@ def only_simple(x, exclude_keys=()): def get_flow( - spec, local_d, trace_label=None, choosers=None, interacts=None, zone_layer=None + state, + spec, + local_d, + trace_label=None, + choosers=None, + interacts=None, + zone_layer=None, ): extra_vars = only_simple(local_d) orig_col_name = local_d.get("orig_col_name", None) @@ -161,6 +169,7 @@ def get_flow( else: aux_vars = {} flow = new_flow( + state, spec, extra_vars, orig_col_name, @@ -208,7 +217,7 @@ def should_invalidate_cache_file(cache_filename, *source_filenames): return False -def scan_for_unused_names(tokens): +def scan_for_unused_names(state: workflow.State, tokens): """ Scan all spec files to find unused skim variable names. @@ -220,11 +229,11 @@ def scan_for_unused_names(tokens): ------- Set[str] """ - configs_dir_list = inject.get_injectable("configs_dir") + configs_dir_list = state.filesystem.get_configs_dir() configs_dir_list = ( [configs_dir_list] if isinstance(configs_dir_list, str) else configs_dir_list ) - assert isinstance(configs_dir_list, list) + assert isinstance(configs_dir_list, (list, tuple)) for directory in configs_dir_list: logger.debug(f"scanning for unused skims in {directory}") @@ -242,14 +251,15 @@ def scan_for_unused_names(tokens): return tokens -@inject.injectable(cache=True) -def skim_dataset_dict(skim_dataset): +@workflow.cached_object +def skim_dataset_dict(state: workflow.State, skim_dataset): from .skim_dataset import SkimDataset return SkimDataset(skim_dataset) def skims_mapping( + state: workflow.State, orig_col_name, dest_col_name, timeframe="tour", @@ -257,13 +267,14 @@ def skims_mapping( parking_col_name=None, zone_layer=None, primary_origin_col_name=None, + predigitized_time_periods=False, ): logger.info("loading skims_mapping") logger.info(f"- orig_col_name: {orig_col_name}") logger.info(f"- dest_col_name: {dest_col_name}") logger.info(f"- stop_col_name: {stop_col_name}") logger.info(f"- primary_origin_col_name: {primary_origin_col_name}") - skim_dataset = inject.get_injectable("skim_dataset") + skim_dataset = state.get_injectable("skim_dataset") if zone_layer == "maz" or zone_layer is None: odim = "omaz" if "omaz" in skim_dataset.dims else "otaz" ddim = "dmaz" if "dmaz" in skim_dataset.dims else "dtaz" @@ -327,6 +338,10 @@ def skims_mapping( ), ) else: + if predigitized_time_periods: + time_rel = "_code ->" + else: + time_rel = " @" return dict( # TODO:SHARROW: organize dimensions. odt_skims=skim_dataset, @@ -337,16 +352,16 @@ def skims_mapping( relationships=( f"df._orig_col_name -> odt_skims.{odim}", f"df._dest_col_name -> odt_skims.{ddim}", - "df.out_period @ odt_skims.time_period", + f"df.out_period{time_rel} odt_skims.time_period", f"df._dest_col_name -> dot_skims.{odim}", f"df._orig_col_name -> dot_skims.{ddim}", - "df.in_period @ dot_skims.time_period", + f"df.in_period{time_rel} dot_skims.time_period", f"df._orig_col_name -> odr_skims.{odim}", f"df._dest_col_name -> odr_skims.{ddim}", - "df.in_period @ odr_skims.time_period", + f"df.in_period{time_rel} odr_skims.time_period", f"df._dest_col_name -> dor_skims.{odim}", f"df._orig_col_name -> dor_skims.{ddim}", - "df.out_period @ dor_skims.time_period", + f"df.out_period{time_rel} dor_skims.time_period", f"df._orig_col_name -> od_skims.{odim}", f"df._dest_col_name -> od_skims.{ddim}", ), @@ -435,6 +450,7 @@ def skims_mapping( def new_flow( + state: workflow.State, spec, extra_vars, orig_col_name, @@ -512,13 +528,19 @@ def new_flow( else: chooser_cols = list(choosers.columns) - cache_dir = os.path.join( - config.get_cache_dir(), - "__sharrowcache__", - ) - os.makedirs(cache_dir, exist_ok=True) + cache_dir = state.filesystem.get_sharrow_cache_dir() logger.debug(f"flow.cache_dir: {cache_dir}") + predigitized_time_periods = False + if "out_period" in choosers and "in_period" in choosers: + if ( + choosers["out_period"].dtype == "category" + and choosers["in_period"].dtype == "category" + ): + choosers["out_period_code"] = choosers["out_period"].cat.codes + choosers["in_period_code"] = choosers["in_period"].cat.codes + predigitized_time_periods = True skims_mapping_ = skims_mapping( + state, orig_col_name, dest_col_name, timeframe, @@ -526,6 +548,7 @@ def new_flow( parking_col_name=parking_col_name, zone_layer=zone_layer, primary_origin_col_name=primary_origin_col_name, + predigitized_time_periods=predigitized_time_periods, ) if size_term_mapping is None: size_term_mapping = {} @@ -719,6 +742,7 @@ def size_terms_on_flow(locals_d): def apply_flow( + state, spec, choosers, locals_d=None, @@ -765,6 +789,9 @@ def apply_flow( it ever again, but having a reference to it available later can be useful in debugging and tracing. Flows are cached and reused anyway, so it is generally not important to delete this at any point to free resources. + tree : sharrow.DataTree + The tree data used to compute the flow result. It is seperate from the + flow to prevent it from being cached with the flow. """ if sh is None: return None, None @@ -773,6 +800,7 @@ def apply_flow( with logtime("apply_flow"): try: flow = get_flow( + state, spec, locals_d, trace_label, @@ -790,7 +818,7 @@ def apply_flow( logger.error(f"error in apply_flow: {err!s}") if required: raise - return None, None + return None, None, None else: raise with logtime(f"{flow.name}.load", trace_label or ""): @@ -812,7 +840,9 @@ def apply_flow( logger.error(f"error in apply_flow: {err!s}") if required: raise - return None, flow + tree = flow.tree + flow.tree = None + return None, flow, tree raise except Exception as err: logger.error(f"error in apply_flow: {err!s}") @@ -823,4 +853,6 @@ def apply_flow( # Detecting compilation activity when in production mode is a bug # that should be investigated. tracing.timing_notes.add(f"compiled:{flow.name}") - return flow_result, flow + tree = flow.tree + flow.tree = None + return flow_result, flow, tree diff --git a/activitysim/core/inject.py b/activitysim/core/inject.py deleted file mode 100644 index 208a5658f..000000000 --- a/activitysim/core/inject.py +++ /dev/null @@ -1,250 +0,0 @@ -# ActivitySim -# See full license in LICENSE.txt. -import logging -import warnings - -from orca import orca - -_DECORATED_STEPS = {} -_DECORATED_TABLES = {} -_DECORATED_COLUMNS = {} -_DECORATED_INJECTABLES = {} -_BROADCASTS = [] - - -# we want to allow None (any anyting else) as a default value, so just choose an improbable string -_NO_DEFAULT = "throw error if missing" - -logger = logging.getLogger(__name__) - - -def step(): - def decorator(func): - name = func.__name__ - - logger.debug("inject step %s" % name) - - assert not _DECORATED_STEPS.get(name, False), ( - "step '%s' already decorated." % name - ) - if _DECORATED_STEPS.get(name, False): - warnings.warn( - f"step {name!r} already exists, ignoring default implementation." - ) - else: - _DECORATED_STEPS[name] = func - orca.add_step(name, func) - - return func - - return decorator - - -def custom_step(): - """ - This decorator allows custom steps to potentially overload existing steps. - """ - - def decorator(func): - name = func.__name__ - - logger.debug("inject step %s" % name) - - if _DECORATED_STEPS.get(name, False): - warnings.warn(f"step {name!r} already exists, overwriting it.") - _DECORATED_STEPS[name] = func - - orca.add_step(name, func) - - return func - - return decorator - - -def table(): - def decorator(func): - name = func.__name__ - - logger.debug("inject table %s" % name) - - assert not _DECORATED_TABLES.get(name, False), ( - "table '%s' already decorated." % name - ) - _DECORATED_TABLES[name] = func - - orca.add_table(name, func) - - return func - - return decorator - - -def injectable(cache=False, override=False): - def decorator(func): - name = func.__name__ - - logger.debug("inject injectable %s" % name) - - # insist on explicit override to ensure multiple definitions occur in correct order - assert override or not _DECORATED_INJECTABLES.get(name, False), ( - "injectable '%s' already defined. not overridden" % name - ) - - _DECORATED_INJECTABLES[name] = {"func": func, "cache": cache} - - orca.add_injectable(name, func, cache=cache) - - return func - - return decorator - - -def merge_tables(target, tables, columns=None): - return orca.merge_tables(target, tables, columns) - - -def add_step(name, func): - return orca.add_step(name, func) - - -def add_table(table_name, table, replace=False): - """ - Add new table and raise assertion error if the table already exists. - Silently replace if replace=True. - """ - if ( - not replace - and orca.is_table(table_name) - and orca.table_type(table_name) == "dataframe" - ): - logger.warning("inject add_table replacing existing table %s" % table_name) - assert False - - # FIXME - should add table.copy() instead, so it can't be modified behind our back? - return orca.add_table(table_name, table, cache=False) - - -# fixme remove? -def add_column(table_name, column_name, column, cache=False): - return orca.add_column(table_name, column_name, column, cache=cache) - - -def add_injectable(name, injectable, cache=False): - return orca.add_injectable(name, injectable, cache=cache) - - -def broadcast( - cast, onto, cast_on=None, onto_on=None, cast_index=False, onto_index=False -): - _BROADCASTS.append( - [ - (cast, onto), - dict( - cast_on=cast_on, - onto_on=onto_on, - cast_index=cast_index, - onto_index=onto_index, - ), - ] - ) - return orca.broadcast( - cast, - onto, - cast_on=cast_on, - onto_on=onto_on, - cast_index=cast_index, - onto_index=onto_index, - ) - - -def get_table(name, default=_NO_DEFAULT): - - if orca.is_table(name) or default == _NO_DEFAULT: - return orca.get_table(name) - else: - return default - - -def is_injectable(name): - - return orca.is_injectable(name) - - -def get_injectable(name, default=_NO_DEFAULT): - - if is_injectable(name) or default == _NO_DEFAULT: - return orca.get_injectable(name) - else: - return default - - -def remove_injectable(name): - - orca._INJECTABLES.pop(name, None) - - -def reinject_decorated_tables(steps=False): - """ - reinject the decorated tables (and columns) - - This function can be used to completely reset the global state for - ActivitySim. - """ - - logger.info("reinject_decorated_tables") - - # need to clear any non-decorated tables that were added during the previous run - orca._TABLES.clear() - orca._COLUMNS.clear() - orca._TABLE_CACHE.clear() - orca._COLUMN_CACHE.clear() - if steps: - orca._STEPS.clear() - orca._BROADCASTS.clear() - - for name, func in _DECORATED_TABLES.items(): - logger.debug("reinject decorated table %s" % name) - orca.add_table(name, func) - - for column_key, args in _DECORATED_COLUMNS.items(): - table_name, column_name = column_key - logger.debug("reinject decorated column %s.%s" % (table_name, column_name)) - orca.add_column(table_name, column_name, args["func"], cache=args["cache"]) - - for name, args in _DECORATED_INJECTABLES.items(): - logger.debug("reinject decorated injectable %s" % name) - orca.add_injectable(name, args["func"], cache=args["cache"]) - - if steps: - for name, func in _DECORATED_STEPS.items(): - logger.debug("reinject decorated step %s" % name) - orca.add_step(name, func) - for arg, kwarg in _BROADCASTS: - orca.broadcast(*arg, **kwarg) - - -def clear_cache(): - return orca.clear_cache() - - -def set_step_args(args=None): - - assert isinstance(args, dict) or args is None - orca.add_injectable("step_args", args) - - -def get_step_arg(arg_name, default=_NO_DEFAULT): - - args = orca.get_injectable("step_args") - - assert isinstance(args, dict) - if arg_name not in args and default == _NO_DEFAULT: - raise "step arg '%s' not found and no default" % arg_name - - return args.get(arg_name, default) - - -def dump_state(): - - print("_DECORATED_STEPS", list(_DECORATED_STEPS.keys())) - print("orca._STEPS", list(orca._STEPS.keys())) diff --git a/activitysim/core/input.py b/activitysim/core/input.py index 41bfdc1c0..51730fcf0 100644 --- a/activitysim/core/input.py +++ b/activitysim/core/input.py @@ -1,23 +1,27 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import logging import os -import warnings import pandas as pd -from activitysim.core import config, inject, util +from activitysim.core import util, workflow +from activitysim.core.configuration import InputTable +from activitysim.core.exceptions import MissingInputTableDefinition logger = logging.getLogger(__name__) def canonical_table_index_name(table_name): - table_index_names = inject.get_injectable("canonical_table_index_names", None) + from activitysim.abm.models.util import canonical_ids + + table_index_names = canonical_ids.CANONICAL_TABLE_INDEX_NAMES return table_index_names and table_index_names.get(table_name, None) -def read_input_table(tablename, required=True): +def read_input_table(state: workflow.State, tablename, required=True): """Reads input table name and returns cleaned DataFrame. Uses settings found in input_table_list in global settings file @@ -25,24 +29,28 @@ def read_input_table(tablename, required=True): Parameters ---------- tablename : string + settings : State Returns ------- pandas DataFrame """ - table_list = config.setting("input_table_list") - assert table_list is not None, "no input_table_list found in settings" + table_list = state.settings.input_table_list + if required and table_list is None: + raise AssertionError("no input_table_list found in settings") + if not required and table_list is None: + return None table_info = None for info in table_list: - if info["tablename"] == tablename: + if info.tablename == tablename: table_info = info if table_info is not None: - df = read_from_table_info(table_info) + df = read_from_table_info(table_info, state) else: if required: - raise RuntimeError( + raise MissingInputTableDefinition( f"could not find info for for tablename {tablename} in settings file" ) df = None @@ -50,7 +58,7 @@ def read_input_table(tablename, required=True): return df -def read_from_table_info(table_info): +def read_from_table_info(table_info: InputTable, state): """ Read input text files and return cleaned up DataFrame. @@ -65,28 +73,23 @@ def read_from_table_info(table_info): +--------------+----------------------------------------------------------+ | filename | name of csv file to read (in data_dir) | +--------------+----------------------------------------------------------+ - | column_map | list of input columns to rename from_name: to_name | - +--------------+----------------------------------------------------------+ | index_col | name of column to set as dataframe index column | +--------------+----------------------------------------------------------+ - | drop_columns | list of column names of columns to drop | - +--------------+----------------------------------------------------------+ | h5_tablename | name of target table in HDF5 file | +--------------+----------------------------------------------------------+ """ - input_store = config.setting("input_store", None) - create_input_store = config.setting("create_input_store", default=False) - - tablename = table_info.get("tablename") - data_filename = table_info.get("filename", input_store) - h5_tablename = table_info.get("h5_tablename") or tablename - drop_columns = table_info.get("drop_columns", None) - column_map = table_info.get("column_map", None) - keep_columns = table_info.get("keep_columns", None) - rename_columns = table_info.get("rename_columns", None) - recode_columns = table_info.get("recode_columns", None) - csv_dtypes = table_info.get("dtypes", {}) + input_store = state.settings.input_store + create_input_store = state.settings.create_input_store + + tablename = table_info.tablename + data_filename = table_info.filename or input_store + h5_tablename = table_info.h5_tablename or tablename + keep_columns = table_info.keep_columns + drop_columns = table_info.drop_columns + rename_columns = table_info.rename_columns + recode_columns = table_info.recode_columns + csv_dtypes = table_info.dtypes or {} # don't require a redundant index_col directive for canonical tables # but allow explicit disabling of assignment of index col for canonical tables, in which case, presumably, @@ -94,17 +97,17 @@ def read_from_table_info(table_info): canonical_index_col = canonical_table_index_name(tablename) # if there is an explicit index_col entry in table_info - if "index_col" in table_info: + if table_info.index_col != "NOTSET": # honor explicit index_col unless it conflicts with canonical name - index_col = table_info["index_col"] + index_col = table_info.index_col if canonical_index_col: if index_col: # if there is a non-empty index_col directive, it should be for canonical_table_index_name assert ( index_col == canonical_index_col - ), f"{tablename} index_col {table_info.get('index_col')} should be {index_col}" + ), f"{tablename} index_col {table_info.index_col} should be {index_col}" else: logger.info( f"Not assigning canonical index_col {tablename}.{canonical_index_col} " @@ -120,45 +123,39 @@ def read_from_table_info(table_info): assert tablename is not None, "no tablename provided" assert data_filename is not None, "no input file provided" - data_file_path = config.data_file_path(data_filename) + data_file_path = state.filesystem.get_data_file_path( + data_filename, alternative_suffixes=(".csv.gz", ".parquet") + ) - df = _read_input_file( - data_file_path, h5_tablename=h5_tablename, csv_dtypes=csv_dtypes + df = read_input_file( + str(data_file_path), h5_tablename=h5_tablename, csv_dtypes=csv_dtypes ) # logger.debug('raw %s table columns: %s' % (tablename, df.columns.values)) - logger.debug("raw %s table size: %s" % (tablename, util.df_size(df))) + logger.debug(f"raw {tablename} table size: {util.df_size(df)}") if create_input_store: - h5_filepath = config.output_file_path("input_data.h5") - logger.info("writing %s to %s" % (h5_tablename, h5_filepath)) - df.to_hdf(h5_filepath, key=h5_tablename, mode="a") - - csv_dir = config.output_file_path("input_data") - if not os.path.exists(csv_dir): - os.makedirs(csv_dir) # make directory if needed - df.to_csv(os.path.join(csv_dir, "%s.csv" % tablename), index=False) + raise NotImplementedError("the input store functionality has been disabled") + # h5_filepath = state.get_output_file_path("input_data.h5") + # logger.info("writing %s to %s" % (h5_tablename, h5_filepath)) + # df.to_hdf(h5_filepath, key=h5_tablename, mode="a") + # + # csv_dir = state.get_output_file_path("input_data") + # if not os.path.exists(csv_dir): + # os.makedirs(csv_dir) # make directory if needed + # df.to_csv(os.path.join(csv_dir, "%s.csv" % tablename), index=False) if drop_columns: logger.debug("dropping columns: %s" % drop_columns) df.drop(columns=drop_columns, inplace=True, errors="ignore") - if column_map: - warnings.warn( - "table_inf option 'column_map' renamed 'rename_columns'" - "Support for 'column_map' will be removed in future versions.", - FutureWarning, - ) - logger.debug("renaming columns: %s" % column_map) - df.rename(columns=column_map, inplace=True) - # rename columns first, so keep_columns can be a stable list of expected/required columns if rename_columns: logger.debug("renaming columns: %s" % rename_columns) df.rename(columns=rename_columns, inplace=True) # recode columns, can simplify data structure - if recode_columns and config.setting("recode_pipeline_columns", True): + if recode_columns and state.settings.recode_pipeline_columns: for colname, recode_instruction in recode_columns.items(): logger.info(f"recoding column {colname}: {recode_instruction}") if recode_instruction == "zero-based": @@ -177,10 +174,10 @@ def read_from_table_info(table_info): # We need to keep track if we have recoded the land_use # table's index to zero-based, as we need to disable offset # processing for legacy skim access. - config.override_setting("offset_preprocessing", True) + state.settings.offset_preprocessing = True else: source_table, lookup_col = recode_instruction.split(".") - parent_table = inject.get_table(source_table) + parent_table = state.get_dataframe(source_table) try: map_col = parent_table[f"_original_{lookup_col}"] except KeyError: @@ -228,14 +225,19 @@ def read_from_table_info(table_info): not df.columns.duplicated().any() ), f"duplicate columns names in {tablename}: {duplicate_column_names}" - logger.debug("%s table columns: %s" % (tablename, df.columns.values)) - logger.debug("%s table size: %s" % (tablename, util.df_size(df))) - logger.debug("%s index name: %s" % (tablename, df.index.name)) + logger.debug(f"{tablename} table columns: {df.columns.values}") + logger.debug(f"{tablename} table size: {util.df_size(df)}") + logger.debug(f"{tablename} index name: {df.index.name}") return df -def _read_input_file(filepath, h5_tablename=None, csv_dtypes=None): +def read_input_file(filepath: str, h5_tablename: str = None, csv_dtypes=None): + """ + Read data to a pandas DataFrame, inferring file type from filename extension. + """ + + filepath = str(filepath) assert os.path.exists(filepath), "input file not found: %s" % filepath if filepath.endswith(".csv") or filepath.endswith(".csv.gz"): @@ -243,12 +245,15 @@ def _read_input_file(filepath, h5_tablename=None, csv_dtypes=None): if filepath.endswith(".h5"): assert h5_tablename is not None, "must provide a tablename to read HDF5 table" - logger.info("reading %s table from %s" % (h5_tablename, filepath)) + logger.info(f"reading {h5_tablename} table from {filepath}") return pd.read_hdf(filepath, h5_tablename) - raise IOError( + if filepath.endswith(".parquet"): + return pd.read_parquet(filepath) + + raise OSError( "Unsupported file type: %s. " - "ActivitySim supports CSV and HDF5 files only" % filepath + "ActivitySim supports CSV, HDF5, and Parquet files only" % filepath ) diff --git a/activitysim/core/interaction_sample.py b/activitysim/core/interaction_sample.py index 62cabd861..80dc6fb00 100644 --- a/activitysim/core/interaction_sample.py +++ b/activitysim/core/interaction_sample.py @@ -1,12 +1,22 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd -from . import chunk, config, interaction_simulate, logit, pipeline, tracing -from .simulate import set_skim_wrapper_targets +from activitysim.core import ( + chunk, + interaction_simulate, + logit, + simulate, + tracing, + workflow, +) +from activitysim.core.skim_dataset import DatasetWrapper +from activitysim.core.skim_dictionary import SkimWrapper logger = logging.getLogger(__name__) @@ -14,6 +24,7 @@ def make_sample_choices( + state: workflow.State, choosers, probs, alternatives, @@ -22,6 +33,7 @@ def make_sample_choices( alt_col_name, allow_zero_probs, trace_label, + chunk_sizer, ): """ @@ -61,13 +73,13 @@ def make_sample_choices( choosers = choosers[~zero_probs] # get sample_size rands for each chooser - rands = pipeline.get_rn_generator().random_for_df(probs, n=sample_size) + rands = state.get_rn_generator().random_for_df(probs, n=sample_size) # transform as we iterate over alternatives # reshape so rands[i] is in broadcastable (2-D) shape for cum_probs_arr # i.e rands[i] is a 2-D array of one alt choice rand for each chooser # rands = rands.T #.reshape(sample_size, -1, 1) - chunk.log_df(trace_label, "rands", rands) + chunk_sizer.log_df(trace_label, "rands", rands) # TODO: is `sample_choices_maker` more efficient? The order of samples changes, might change repro-randoms from .choosing import sample_choices_maker_preserve_ordering @@ -78,8 +90,8 @@ def make_sample_choices( alternatives.index.values, ) - chunk.log_df(trace_label, "choices_array", choices_array) - chunk.log_df(trace_label, "choice_probs_array", choice_probs_array) + chunk_sizer.log_df(trace_label, "choices_array", choices_array) + chunk_sizer.log_df(trace_label, "choice_probs_array", choice_probs_array) # explode to one row per chooser.index, alt_zone_id choices_df = pd.DataFrame( @@ -91,22 +103,23 @@ def make_sample_choices( } ) - chunk.log_df(trace_label, "choices_df", choices_df) + chunk_sizer.log_df(trace_label, "choices_df", choices_df) del choices_array - chunk.log_df(trace_label, "choices_array", None) + chunk_sizer.log_df(trace_label, "choices_array", None) del rands - chunk.log_df(trace_label, "rands", None) + chunk_sizer.log_df(trace_label, "rands", None) del choice_probs_array - chunk.log_df(trace_label, "choice_probs_array", None) + chunk_sizer.log_df(trace_label, "choice_probs_array", None) # handing this off to caller - chunk.log_df(trace_label, "choices_df", None) + chunk_sizer.log_df(trace_label, "choices_df", None) return choices_df def _interaction_sample( + state: workflow.State, choosers, alternatives, spec, @@ -118,6 +131,7 @@ def _interaction_sample( locals_d=None, trace_label=None, zone_layer=None, + chunk_sizer=None, ): """ Run a MNL simulation in the situation in which alternatives must @@ -159,6 +173,11 @@ def _interaction_sample( the index is same as choosers and the series value is the alternative df index of chosen alternative + zone_layer : {'taz', 'maz'}, default 'taz' + Specify which zone layer of the skims is to be used. You cannot use the + 'maz' zone layer in a one-zone model, but you can use the 'taz' layer in + a two- or three-zone model (e.g. for destination pre-sampling). + Returns ------- choices_df : pandas.DataFrame @@ -174,7 +193,7 @@ def _interaction_sample( number of duplicate picks for chooser, alt """ - have_trace_targets = tracing.has_trace_targets(choosers) + have_trace_targets = state.tracing.has_trace_targets(choosers) trace_ids = None trace_rows = None num_choosers = len(choosers.index) @@ -182,8 +201,10 @@ def _interaction_sample( assert num_choosers > 0 if have_trace_targets: - tracing.trace_df(choosers, tracing.extend_trace_label(trace_label, "choosers")) - tracing.trace_df( + state.tracing.trace_df( + choosers, tracing.extend_trace_label(trace_label, "choosers") + ) + state.tracing.trace_df( alternatives, tracing.extend_trace_label(trace_label, "alternatives"), slicer="NONE", @@ -201,7 +222,7 @@ def _interaction_sample( chooser_index_id = interaction_simulate.ALT_CHOOSER_ID if log_alt_losers else None - sharrow_enabled = config.setting("sharrow", False) + sharrow_enabled = state.settings.sharrow # - cross join choosers and alternatives (cartesian product) # for every chooser, there will be a row for each alternative @@ -211,11 +232,11 @@ def _interaction_sample( interaction_utilities = None interaction_utilities_sh = None if sharrow_enabled: - ( interaction_utilities, trace_eval_results, ) = interaction_simulate.eval_interaction_utilities( + state, spec, choosers, locals_d, @@ -226,7 +247,7 @@ def _interaction_sample( extra_data=alternatives, zone_layer=zone_layer, ) - chunk.log_df(trace_label, "interaction_utilities", interaction_utilities) + chunk_sizer.log_df(trace_label, "interaction_utilities", interaction_utilities) if sharrow_enabled == "test" or True: interaction_utilities_sh, trace_eval_results_sh = ( interaction_utilities, @@ -234,18 +255,19 @@ def _interaction_sample( ) if not sharrow_enabled or (sharrow_enabled == "test"): interaction_df = logit.interaction_dataset( + state, choosers, alternatives, sample_size=alternative_count, chooser_index_id=chooser_index_id, ) - chunk.log_df(trace_label, "interaction_df", interaction_df) + chunk_sizer.log_df(trace_label, "interaction_df", interaction_df) assert alternative_count == len(interaction_df.index) / len(choosers.index) if skims is not None: - set_skim_wrapper_targets(interaction_df, skims) + simulate.set_skim_wrapper_targets(interaction_df, skims) # evaluate expressions from the spec multiply by coefficients and sum # spec is df with one row per spec expression and one col with utility coefficient @@ -253,11 +275,11 @@ def _interaction_sample( # utilities has utility value for element in the cross product of choosers and alternatives # interaction_utilities is a df with one utility column and one row per row in interaction_df if have_trace_targets: - trace_rows, trace_ids = tracing.interaction_trace_rows( + trace_rows, trace_ids = state.tracing.interaction_trace_rows( interaction_df, choosers, alternative_count ) - tracing.trace_df( + state.tracing.trace_df( interaction_df[trace_rows], tracing.extend_trace_label(trace_label, "interaction_df"), slicer="NONE", @@ -271,6 +293,7 @@ def _interaction_sample( interaction_utilities, trace_eval_results, ) = interaction_simulate.eval_interaction_utilities( + state, spec, interaction_df, locals_d, @@ -280,12 +303,12 @@ def _interaction_sample( log_alt_losers=log_alt_losers, zone_layer=zone_layer, ) - chunk.log_df(trace_label, "interaction_utilities", interaction_utilities) + chunk_sizer.log_df(trace_label, "interaction_utilities", interaction_utilities) # ########### HWM - high water mark (point of max observed memory usage) del interaction_df - chunk.log_df(trace_label, "interaction_df", None) + chunk_sizer.log_df(trace_label, "interaction_df", None) if sharrow_enabled == "test": try: @@ -338,7 +361,7 @@ def _interaction_sample( raise if have_trace_targets and trace_ids is not None: - tracing.trace_interaction_eval_results( + state.tracing.trace_interaction_eval_results( trace_eval_results, trace_ids, tracing.extend_trace_label(trace_label, "eval"), @@ -346,7 +369,7 @@ def _interaction_sample( if have_trace_targets and trace_rows is not None: try: - tracing.trace_df( + state.tracing.trace_df( interaction_utilities[trace_rows], tracing.extend_trace_label(trace_label, "interaction_utilities"), slicer="NONE", @@ -355,7 +378,9 @@ def _interaction_sample( except ValueError: pass - tracing.dump_df(DUMP, interaction_utilities, trace_label, "interaction_utilities") + state.tracing.dump_df( + DUMP, interaction_utilities, trace_label, "interaction_utilities" + ) # reshape utilities (one utility column and one row per row in interaction_utilities) # to a dataframe with one row per chooser and one column per alternative @@ -363,35 +388,37 @@ def _interaction_sample( interaction_utilities.values.reshape(len(choosers), alternative_count), index=choosers.index, ) - chunk.log_df(trace_label, "utilities", utilities) + chunk_sizer.log_df(trace_label, "utilities", utilities) del interaction_utilities - chunk.log_df(trace_label, "interaction_utilities", None) + chunk_sizer.log_df(trace_label, "interaction_utilities", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( utilities, tracing.extend_trace_label(trace_label, "utils"), column_labels=["alternative", "utility"], ) - tracing.dump_df(DUMP, utilities, trace_label, "utilities") + state.tracing.dump_df(DUMP, utilities, trace_label, "utilities") # convert to probabilities (utilities exponentiated and normalized to probs) # probs is same shape as utilities, one row per chooser and one column for alternative probs = logit.utils_to_probs( + state, utilities, allow_zero_probs=allow_zero_probs, trace_label=trace_label, trace_choosers=choosers, + overflow_protection=not allow_zero_probs, ) - chunk.log_df(trace_label, "probs", probs) + chunk_sizer.log_df(trace_label, "probs", probs) del utilities - chunk.log_df(trace_label, "utilities", None) + chunk_sizer.log_df(trace_label, "utilities", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( probs, tracing.extend_trace_label(trace_label, "probs"), column_labels=["alternative", "probability"], @@ -420,6 +447,7 @@ def _interaction_sample( return choices_df else: choices_df = make_sample_choices( + state, choosers, probs, alternatives, @@ -428,12 +456,13 @@ def _interaction_sample( alt_col_name, allow_zero_probs=allow_zero_probs, trace_label=trace_label, + chunk_sizer=chunk_sizer, ) - chunk.log_df(trace_label, "choices_df", choices_df) + chunk_sizer.log_df(trace_label, "choices_df", choices_df) del probs - chunk.log_df(trace_label, "probs", None) + chunk_sizer.log_df(trace_label, "probs", None) # pick_count and pick_dup # pick_count is number of duplicate picks @@ -450,15 +479,15 @@ def _interaction_sample( # drop the duplicates choices_df = choices_df[~choices_df["pick_dup"]] del choices_df["pick_dup"] - chunk.log_df(trace_label, "choices_df", choices_df) + chunk_sizer.log_df(trace_label, "choices_df", choices_df) # set index after groupby so we can trace on it choices_df.set_index(choosers.index.name, inplace=True) - tracing.dump_df(DUMP, choices_df, trace_label, "choices_df") + state.tracing.dump_df(DUMP, choices_df, trace_label, "choices_df") if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( choices_df, tracing.extend_trace_label(trace_label, "sampled_alternatives"), transpose=False, @@ -467,7 +496,7 @@ def _interaction_sample( # don't need this after tracing del choices_df["rand"] - chunk.log_df(trace_label, "choices_df", choices_df) + chunk_sizer.log_df(trace_label, "choices_df", choices_df) # - NARROW choices_df["prob"] = choices_df["prob"].astype(np.float32) @@ -478,21 +507,21 @@ def _interaction_sample( def interaction_sample( - choosers, - alternatives, - spec, - sample_size, - alt_col_name, - allow_zero_probs=False, - log_alt_losers=False, - skims=None, + state: workflow.State, + choosers: pd.DataFrame, + alternatives: pd.DataFrame, + spec: pd.DataFrame, + sample_size: int, + alt_col_name: str, + allow_zero_probs: bool = False, + log_alt_losers: bool = False, + skims: SkimWrapper | DatasetWrapper | None = None, locals_d=None, - chunk_size=0, - chunk_tag=None, - trace_label=None, - zone_layer=None, + chunk_size: int = 0, + chunk_tag: str | None = None, + trace_label: str | None = None, + zone_layer: str | None = None, ): - """ Run a simulation in the situation in which alternatives must be merged with choosers because there are interaction terms or @@ -502,6 +531,7 @@ def interaction_sample( Parameters ---------- + state : State choosers : pandas.DataFrame DataFrame of choosers alternatives : pandas.DataFrame @@ -516,7 +546,7 @@ def interaction_sample( which does not sample alternatives. alt_col_name: str name to give the sampled_alternative column - skims : Skims object + skims : SkimWrapper or DatasetWrapper or None The skims object is used to contain multiple matrices of origin-destination impedances. Make sure to also add it to the locals_d below in order to access it in expressions. The *only* job @@ -532,6 +562,10 @@ def interaction_sample( trace_label: str This is the label to be used for trace log file entries and dump file names when household tracing enabled. No tracing occurs if label is empty or None. + zone_layer : {'taz', 'maz'}, default 'taz' + Specify which zone layer of the skims is to be used. You cannot use the + 'maz' zone layer in a one-zone model, but you can use the 'taz' layer in + a two- or three-zone model (e.g. for destination pre-sampling). Returns ------- @@ -555,17 +589,21 @@ def interaction_sample( # we return alternatives ordered in (index, alt_col_name) # if choosers index is not ordered, it is probably a mistake, since the alts wont line up assert alt_col_name is not None - assert choosers.index.is_monotonic_increasing + if not choosers.index.is_monotonic_increasing: + assert choosers.index.is_monotonic_increasing # FIXME - legacy logic - not sure this is needed or even correct? sample_size = min(sample_size, len(alternatives.index)) result_list = [] - for i, chooser_chunk, chunk_trace_label in chunk.adaptive_chunked_choosers( - choosers, chunk_size, trace_label, chunk_tag - ): - + for ( + i, + chooser_chunk, + chunk_trace_label, + chunk_sizer, + ) in chunk.adaptive_chunked_choosers(state, choosers, trace_label, chunk_tag): choices = _interaction_sample( + state, chooser_chunk, alternatives, spec=spec, @@ -577,13 +615,14 @@ def interaction_sample( locals_d=locals_d, trace_label=chunk_trace_label, zone_layer=zone_layer, + chunk_sizer=chunk_sizer, ) if choices.shape[0] > 0: # might not be any if allow_zero_probs result_list.append(choices) - chunk.log_df(trace_label, f"result_list", result_list) + chunk_sizer.log_df(trace_label, f"result_list", result_list) # FIXME: this will require 2X RAM # if necessary, could append to hdf5 store on disk: diff --git a/activitysim/core/interaction_sample_simulate.py b/activitysim/core/interaction_sample_simulate.py index 13e65f384..b42eb2683 100644 --- a/activitysim/core/interaction_sample_simulate.py +++ b/activitysim/core/interaction_sample_simulate.py @@ -1,17 +1,20 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd -from . import chunk, interaction_simulate, logit, tracing -from .simulate import set_skim_wrapper_targets +from activitysim.core import chunk, interaction_simulate, logit, tracing, workflow +from activitysim.core.simulate import set_skim_wrapper_targets logger = logging.getLogger(__name__) def _interaction_sample_simulate( + state: workflow.State, choosers, alternatives, spec, @@ -26,8 +29,9 @@ def _interaction_sample_simulate( trace_choice_name, estimator, skip_choice=False, + *, + chunk_sizer: chunk.ChunkSizer, ): - """ Run a MNL simulation in the situation in which alternatives must be merged with choosers because there are interaction terms or @@ -96,11 +100,13 @@ def _interaction_sample_simulate( alternatives.index[last_repeat] ) - have_trace_targets = tracing.has_trace_targets(choosers) + have_trace_targets = state.tracing.has_trace_targets(choosers) if have_trace_targets: - tracing.trace_df(choosers, tracing.extend_trace_label(trace_label, "choosers")) - tracing.trace_df( + state.tracing.trace_df( + choosers, tracing.extend_trace_label(trace_label, "choosers") + ) + state.tracing.trace_df( alternatives, tracing.extend_trace_label(trace_label, "alternatives"), transpose=False, @@ -125,8 +131,13 @@ def _interaction_sample_simulate( # assert alternatives.index.name == choosers.index.name # asserting the index names are the same tells us nothing about the underlying data so why? - + logger.info( + f"{trace_label} start merging choosers and alternatives to create interaction_df" + ) interaction_df = alternatives.join(choosers, how="left", rsuffix="_chooser") + logger.info( + f"{trace_label} end merging choosers and alternatives to create interaction_df" + ) if log_alt_losers: # logit.interaction_dataset adds ALT_CHOOSER_ID column if log_alt_losers is True @@ -135,12 +146,14 @@ def _interaction_sample_simulate( interaction_simulate.ALT_CHOOSER_ID ] = interaction_df.index.values - chunk.log_df(trace_label, "interaction_df", interaction_df) + chunk_sizer.log_df(trace_label, "interaction_df", interaction_df) if have_trace_targets: - trace_rows, trace_ids = tracing.interaction_trace_rows(interaction_df, choosers) + trace_rows, trace_ids = state.tracing.interaction_trace_rows( + interaction_df, choosers + ) - tracing.trace_df( + state.tracing.trace_df( interaction_df, tracing.extend_trace_label(trace_label, "interaction_df"), transpose=False, @@ -160,6 +173,7 @@ def _interaction_sample_simulate( interaction_utilities, trace_eval_results, ) = interaction_simulate.eval_interaction_utilities( + state, spec, interaction_df, locals_d, @@ -168,19 +182,19 @@ def _interaction_sample_simulate( estimator=estimator, log_alt_losers=log_alt_losers, ) - chunk.log_df(trace_label, "interaction_utilities", interaction_utilities) + chunk_sizer.log_df(trace_label, "interaction_utilities", interaction_utilities) del interaction_df - chunk.log_df(trace_label, "interaction_df", None) + chunk_sizer.log_df(trace_label, "interaction_df", None) if have_trace_targets: - tracing.trace_interaction_eval_results( + state.tracing.trace_interaction_eval_results( trace_eval_results, trace_ids, tracing.extend_trace_label(trace_label, "eval"), ) - tracing.trace_df( + state.tracing.trace_df( interaction_utilities, tracing.extend_trace_label(trace_label, "interaction_utilities"), transpose=False, @@ -195,7 +209,7 @@ def _interaction_sample_simulate( sample_counts = ( interaction_utilities.groupby(interaction_utilities.index).size().values ) - chunk.log_df(trace_label, "sample_counts", sample_counts) + chunk_sizer.log_df(trace_label, "sample_counts", sample_counts) # max number of alternatvies for any chooser max_sample_count = sample_counts.max() @@ -210,28 +224,28 @@ def _interaction_sample_simulate( inserts = np.repeat(last_row_offsets, max_sample_count - sample_counts) del sample_counts - chunk.log_df(trace_label, "sample_counts", None) + chunk_sizer.log_df(trace_label, "sample_counts", None) # insert the zero-prob utilities to pad each alternative set to same size padded_utilities = np.insert(interaction_utilities.utility.values, inserts, -999) - chunk.log_df(trace_label, "padded_utilities", padded_utilities) + chunk_sizer.log_df(trace_label, "padded_utilities", padded_utilities) del inserts del interaction_utilities - chunk.log_df(trace_label, "interaction_utilities", None) + chunk_sizer.log_df(trace_label, "interaction_utilities", None) # reshape to array with one row per chooser, one column per alternative padded_utilities = padded_utilities.reshape(-1, max_sample_count) # convert to a dataframe with one row per chooser and one column per alternative utilities_df = pd.DataFrame(padded_utilities, index=choosers.index) - chunk.log_df(trace_label, "utilities_df", utilities_df) + chunk_sizer.log_df(trace_label, "utilities_df", utilities_df) del padded_utilities - chunk.log_df(trace_label, "padded_utilities", None) + chunk_sizer.log_df(trace_label, "padded_utilities", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( utilities_df, tracing.extend_trace_label(trace_label, "utilities"), column_labels=["alternative", "utility"], @@ -239,25 +253,33 @@ def _interaction_sample_simulate( # convert to probabilities (utilities exponentiated and normalized to probs) # probs is same shape as utilities, one row per chooser and one column for alternative - probs = logit.utils_to_probs( - utilities_df, - allow_zero_probs=allow_zero_probs, - trace_label=trace_label, - trace_choosers=choosers, - ) - chunk.log_df(trace_label, "probs", probs) - if want_logsums: - logsums = logit.utils_to_logsums( - utilities_df, allow_zero_probs=allow_zero_probs + probs, logsums = logit.utils_to_probs( + state, + utilities_df, + allow_zero_probs=allow_zero_probs, + trace_label=trace_label, + trace_choosers=choosers, + overflow_protection=not allow_zero_probs, + return_logsums=True, ) - chunk.log_df(trace_label, "logsums", logsums) + chunk_sizer.log_df(trace_label, "logsums", logsums) + else: + probs = logit.utils_to_probs( + state, + utilities_df, + allow_zero_probs=allow_zero_probs, + trace_label=trace_label, + trace_choosers=choosers, + overflow_protection=not allow_zero_probs, + ) + chunk_sizer.log_df(trace_label, "probs", probs) del utilities_df - chunk.log_df(trace_label, "utilities_df", None) + chunk_sizer.log_df(trace_label, "utilities_df", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( probs, tracing.extend_trace_label(trace_label, "probs"), column_labels=["alternative", "probability"], @@ -277,14 +299,14 @@ def _interaction_sample_simulate( # positions is series with the chosen alternative represented as a column index in probs # which is an integer between zero and num alternatives in the alternative sample positions, rands = logit.make_choices( - probs, trace_label=trace_label, trace_choosers=choosers + state, probs, trace_label=trace_label, trace_choosers=choosers ) - chunk.log_df(trace_label, "positions", positions) - chunk.log_df(trace_label, "rands", rands) + chunk_sizer.log_df(trace_label, "positions", positions) + chunk_sizer.log_df(trace_label, "rands", rands) del probs - chunk.log_df(trace_label, "probs", None) + chunk_sizer.log_df(trace_label, "probs", None) # shouldn't have chosen any of the dummy pad utilities assert positions.max() < max_sample_count @@ -299,25 +321,25 @@ def _interaction_sample_simulate( # create a series with index from choosers and the index of the chosen alternative choices = pd.Series(choices, index=choosers.index) - chunk.log_df(trace_label, "choices", choices) + chunk_sizer.log_df(trace_label, "choices", choices) if allow_zero_probs and zero_probs.any() and zero_prob_choice_val is not None: # FIXME this is kind of gnarly, patch choice for zero_probs choices.loc[zero_probs] = zero_prob_choice_val if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( choices, tracing.extend_trace_label(trace_label, "choices"), columns=[None, trace_choice_name], ) - tracing.trace_df( + state.tracing.trace_df( rands, tracing.extend_trace_label(trace_label, "rands"), columns=[None, "rand"], ) if want_logsums: - tracing.trace_df( + state.tracing.trace_df( logsums, tracing.extend_trace_label(trace_label, "logsum"), columns=[None, "logsum"], @@ -327,15 +349,16 @@ def _interaction_sample_simulate( choices = choices.to_frame("choice") choices["logsum"] = logsums - chunk.log_df(trace_label, "choices", choices) + chunk_sizer.log_df(trace_label, "choices", choices) # handing this off to our caller - chunk.log_df(trace_label, "choices", None) + chunk_sizer.log_df(trace_label, "choices", None) return choices def interaction_sample_simulate( + state: workflow.State, choosers, alternatives, spec, @@ -353,7 +376,6 @@ def interaction_sample_simulate( estimator=None, skip_choice=False, ): - """ Run a simulation in the situation in which alternatives must be merged with choosers because there are interaction terms or @@ -421,11 +443,12 @@ def interaction_sample_simulate( chooser_chunk, alternative_chunk, chunk_trace_label, + chunk_sizer, ) in chunk.adaptive_chunked_choosers_and_alts( - choosers, alternatives, chunk_size, trace_label, chunk_tag + state, choosers, alternatives, trace_label, chunk_tag, chunk_size=chunk_size ): - choices = _interaction_sample_simulate( + state, chooser_chunk, alternative_chunk, spec, @@ -440,11 +463,12 @@ def interaction_sample_simulate( trace_choice_name, estimator, skip_choice, + chunk_sizer=chunk_sizer, ) result_list.append(choices) - chunk.log_df(trace_label, f"result_list", result_list) + chunk_sizer.log_df(trace_label, f"result_list", result_list) # FIXME: this will require 2X RAM # if necessary, could append to hdf5 store on disk: diff --git a/activitysim/core/interaction_simulate.py b/activitysim/core/interaction_simulate.py index 38075e5ad..451345f2f 100644 --- a/activitysim/core/interaction_simulate.py +++ b/activitysim/core/interaction_simulate.py @@ -1,15 +1,18 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import time from builtins import zip from collections import OrderedDict from datetime import timedelta +from typing import Mapping import numpy as np import pandas as pd -from . import chunk, config, logit, simulate, tracing +from . import chunk, config, logit, simulate, tracing, workflow logger = logging.getLogger(__name__) @@ -19,6 +22,7 @@ def eval_interaction_utilities( + state, spec, df, locals_d, @@ -61,6 +65,11 @@ def eval_interaction_utilities( yielding a dataframe with len(interaction_df) rows and one utility column having the same index as interaction_df (non-unique values from alternatives df) + zone_layer : {'taz', 'maz'}, default 'taz' + Specify which zone layer of the skims is to be used. You cannot use the + 'maz' zone layer in a one-zone model, but you can use the 'taz' layer in + a two- or three-zone model (e.g. for destination pre-sampling). + Returns ------- utilities : pandas.DataFrame @@ -72,7 +81,7 @@ def eval_interaction_utilities( trace_label = tracing.extend_trace_label(trace_label, "eval_interaction_utils") logger.info("Running eval_interaction_utilities on %s rows" % df.shape[0]) - sharrow_enabled = config.setting("sharrow", False) + sharrow_enabled = state.settings.sharrow if locals_d is not None and locals_d.get("_sharrow_skip", False): sharrow_enabled = False @@ -84,8 +93,7 @@ def eval_interaction_utilities( trace_eval_results = None - with chunk.chunk_log(trace_label): - + with chunk.chunk_log(state, trace_label) as chunk_sizer: assert len(spec.columns) == 1 # avoid altering caller's passed-in locals_d parameter (they may be looping) @@ -101,7 +109,6 @@ def eval_interaction_utilities( locals_d["df"] = df if sharrow_enabled: - from .flow import apply_flow spec_sh = spec.copy() @@ -169,7 +176,8 @@ def replace_in_index_level(mi, level, *repls): timelogger.mark("sharrow preamble", True, logger, trace_label) - sh_util, sh_flow = apply_flow( + sh_util, sh_flow, sh_tree = apply_flow( + state, spec_sh, df, locals_d, @@ -178,16 +186,19 @@ def replace_in_index_level(mi, level, *repls): zone_layer=zone_layer, ) if sh_util is not None: - chunk.log_df(trace_label, "sh_util", sh_util) + chunk_sizer.log_df(trace_label, "sh_util", sh_util) utilities = pd.DataFrame( {"utility": sh_util.reshape(-1)}, index=df.index if extra_data is None else None, ) - chunk.log_df(trace_label, "sh_util", None) # hand off to caller + chunk_sizer.log_df(trace_label, "sh_util", None) # hand off to caller + if sharrow_enabled != "test": + # if not testing sharrow, we are done with this object now. + del sh_util timelogger.mark("sharrow flow", True, logger, trace_label) else: - sh_util, sh_flow = None, None + sh_util, sh_flow, sh_tree = None, None, None timelogger.mark("sharrow flow", False) if ( @@ -211,14 +222,14 @@ def to_series(x): else: trace_eval_results = None - check_for_variability = config.setting("check_for_variability") + check_for_variability = state.settings.check_for_variability # need to be able to identify which variables causes an error, which keeps # this from being expressed more parsimoniously utilities = pd.DataFrame({"utility": 0.0}, index=df.index) - chunk.log_df(trace_label, "eval.utilities", utilities) + chunk_sizer.log_df(trace_label, "eval.utilities", utilities) no_variability = has_missing_vals = 0 @@ -252,17 +263,15 @@ def to_series(x): for expr, label, coefficient in zip(exprs, labels, spec.iloc[:, 0]): try: - # - allow temps of form _od_DIST@od_skim['DIST'] if expr.startswith("_"): - target = expr[: expr.index("@")] rhs = expr[expr.index("@") + 1 :] v = to_series(eval(rhs, globals(), locals_d)) # update locals to allows us to ref previously assigned targets locals_d[target] = v - chunk.log_df( + chunk_sizer.log_df( trace_label, target, v ) # track temps stored in locals @@ -304,12 +313,10 @@ def to_series(x): utility = (v * coefficient).astype("float") if log_alt_losers: - assert ALT_CHOOSER_ID in df max_utils_by_chooser = utility.groupby(df[ALT_CHOOSER_ID]).max() if (max_utils_by_chooser < simulate.ALT_LOSER_UTIL).any(): - losers = max_utils_by_chooser[ max_utils_by_chooser < simulate.ALT_LOSER_UTIL ] @@ -328,7 +335,6 @@ def to_series(x): utilities.utility.values[:] += utility if trace_eval_results is not None: - # expressions should have been uniquified when spec was read # (though we could do it here if need be...) # expr = assign.uniquify_key(trace_eval_results, expr, template="{} # ({})") @@ -342,12 +348,19 @@ def to_series(x): trace_eval_results[k] = v[trace_rows] * coefficient del v - # chunk.log_df(trace_label, 'v', None) + # chunk_sizer.log_df(trace_label, 'v', None) except Exception as err: logger.exception( f"{trace_label} - {type(err).__name__} ({str(err)}) evaluating: {str(expr)}" ) + if isinstance( + err, AssertionError + ) and "od pairs not in skim" in str(err): + logger.warning( + f"recode_pipeline_columns is set to {state.settings.recode_pipeline_columns}, " + f"you may want to check this" + ) raise err if estimator: @@ -379,11 +392,15 @@ def to_series(x): trace_eval_results = pd.concat( [df[trace_rows], trace_eval_results], axis=1 ) - chunk.log_df(trace_label, "eval.trace_eval_results", trace_eval_results) + chunk_sizer.log_df( + trace_label, "eval.trace_eval_results", trace_eval_results + ) - chunk.log_df(trace_label, "v", None) - chunk.log_df(trace_label, "eval.utilities", None) # out of out hands... - chunk.log_df(trace_label, "eval.trace_eval_results", None) + chunk_sizer.log_df(trace_label, "v", None) + chunk_sizer.log_df( + trace_label, "eval.utilities", None + ) # out of out hands... + chunk_sizer.log_df(trace_label, "eval.trace_eval_results", None) timelogger.mark("regular interact flow", True, logger, trace_label) else: @@ -394,12 +411,14 @@ def to_series(x): # if sh_flow is not None and trace_rows is not None and trace_rows.any(): assert type(trace_rows) == np.ndarray + logger.info("sh_flow load dataarray") sh_utility_fat = sh_flow.load_dataarray( - # sh_flow.tree.replace_datasets( - # df=df.iloc[trace_rows], - # ), + sh_tree.replace_datasets( + df=df.iloc[trace_rows], + ), dtype=np.float32, ) + logger.info("finish sh_flow load dataarray") sh_utility_fat = sh_utility_fat[trace_rows, :] sh_utility_fat = sh_utility_fat.to_dataframe("vals") try: @@ -441,7 +460,9 @@ def to_series(x): trace_eval_results.index = df[trace_rows].index except ValueError: pass - chunk.log_df(trace_label, "eval.trace_eval_results", trace_eval_results) + chunk_sizer.log_df( + trace_label, "eval.trace_eval_results", trace_eval_results + ) else: # in test mode, trace from non-sharrow exists trace_eval_results = pd.concat( @@ -456,7 +477,9 @@ def to_series(x): axis=1, ) trace_eval_results.index = df[trace_rows].index - chunk.log_df(trace_label, "eval.trace_eval_results", trace_eval_results) + chunk_sizer.log_df( + trace_label, "eval.trace_eval_results", trace_eval_results + ) # sh_utility_fat1 = np.dot(sh_utility_fat, spec.values) # sh_utility_fat2 = sh_flow.dot( @@ -469,7 +492,6 @@ def to_series(x): timelogger.mark("sharrow interact trace", True, logger, trace_label) if sharrow_enabled == "test": - try: if sh_util is not None: np.testing.assert_allclose( @@ -572,16 +594,18 @@ def to_series(x): def _interaction_simulate( - choosers, - alternatives, - spec, + state: workflow.State, + choosers: pd.DataFrame, + alternatives: pd.DataFrame, + spec: pd.DataFrame, skims=None, - locals_d=None, + locals_d: Mapping = None, sample_size=None, trace_label=None, trace_choice_name=None, log_alt_losers=False, estimator=None, + chunk_sizer=None, ): """ Run a MNL simulation in the situation in which alternatives must @@ -632,11 +656,13 @@ def _interaction_simulate( """ trace_label = tracing.extend_trace_label(trace_label, "interaction_simulate") - have_trace_targets = tracing.has_trace_targets(choosers) + have_trace_targets = state.tracing.has_trace_targets(choosers) if have_trace_targets: - tracing.trace_df(choosers, tracing.extend_trace_label(trace_label, "choosers")) - tracing.trace_df( + state.tracing.trace_df( + choosers, tracing.extend_trace_label(trace_label, "choosers") + ) + state.tracing.trace_df( alternatives, tracing.extend_trace_label(trace_label, "alternatives"), slicer="NONE", @@ -667,7 +693,7 @@ def _interaction_simulate( alt_index_id = estimator.get_alt_id() if estimator else None chooser_index_id = ALT_CHOOSER_ID if log_alt_losers else None - sharrow_enabled = config.setting("sharrow", False) + sharrow_enabled = state.settings.sharrow interaction_utilities = None if locals_d is not None and locals_d.get("_sharrow_skip", False): @@ -686,6 +712,7 @@ def _interaction_simulate( trace_rows = trace_ids = None interaction_utilities, trace_eval_results = eval_interaction_utilities( + state, spec, choosers, locals_d, @@ -699,7 +726,7 @@ def _interaction_simulate( # set this index here as this is how later code extracts the chosen alt id's interaction_utilities.index = np.tile(alternatives.index, len(choosers)) - chunk.log_df(trace_label, "interaction_utilities", interaction_utilities) + chunk_sizer.log_df(trace_label, "interaction_utilities", interaction_utilities) # mem.trace_memory_info(f"{trace_label}.init interaction_utilities sh", force_garbage_collect=True) if sharrow_enabled == "test" or True: interaction_utilities_sh, trace_eval_results_sh = ( @@ -717,15 +744,15 @@ def _interaction_simulate( or (sharrow_enabled == "test") or interaction_utilities is None ): - interaction_df = logit.interaction_dataset( + state, choosers, alternatives, sample_size, alt_index_id=alt_index_id, chooser_index_id=chooser_index_id, ) - chunk.log_df(trace_label, "interaction_df", interaction_df) + chunk_sizer.log_df(trace_label, "interaction_df", interaction_df) if skims is not None: simulate.set_skim_wrapper_targets(interaction_df, skims) @@ -736,11 +763,11 @@ def _interaction_simulate( # utilities has utility value for element in the cross product of choosers and alternatives # interaction_utilities is a df with one utility column and one row per row in model_design if have_trace_targets: - trace_rows, trace_ids = tracing.interaction_trace_rows( + trace_rows, trace_ids = state.tracing.interaction_trace_rows( interaction_df, choosers, sample_size ) - tracing.trace_df( + state.tracing.trace_df( interaction_df[trace_rows], tracing.extend_trace_label(trace_label, "interaction_df"), slicer="NONE", @@ -750,6 +777,7 @@ def _interaction_simulate( trace_rows = trace_ids = None interaction_utilities, trace_eval_results = eval_interaction_utilities( + state, spec, interaction_df, locals_d, @@ -758,23 +786,23 @@ def _interaction_simulate( estimator=estimator, log_alt_losers=log_alt_losers, ) - chunk.log_df(trace_label, "interaction_utilities", interaction_utilities) + chunk_sizer.log_df(trace_label, "interaction_utilities", interaction_utilities) # mem.trace_memory_info(f"{trace_label}.init interaction_utilities", force_garbage_collect=True) # print(f"interaction_df {interaction_df.shape}") # print(f"interaction_utilities {interaction_utilities.shape}") del interaction_df - chunk.log_df(trace_label, "interaction_df", None) + chunk_sizer.log_df(trace_label, "interaction_df", None) if have_trace_targets: - tracing.trace_interaction_eval_results( + state.tracing.trace_interaction_eval_results( trace_eval_results, trace_ids, tracing.extend_trace_label(trace_label, "eval"), ) - tracing.trace_df( + state.tracing.trace_df( interaction_utilities[trace_rows], tracing.extend_trace_label(trace_label, "interaction_utils"), slicer="NONE", @@ -787,29 +815,29 @@ def _interaction_simulate( interaction_utilities.values.reshape(len(choosers), sample_size), index=choosers.index, ) - chunk.log_df(trace_label, "utilities", utilities) + chunk_sizer.log_df(trace_label, "utilities", utilities) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( utilities, tracing.extend_trace_label(trace_label, "utils"), column_labels=["alternative", "utility"], ) - tracing.dump_df(DUMP, utilities, trace_label, "utilities") + state.tracing.dump_df(DUMP, utilities, trace_label, "utilities") # convert to probabilities (utilities exponentiated and normalized to probs) # probs is same shape as utilities, one row per chooser and one column for alternative probs = logit.utils_to_probs( - utilities, trace_label=trace_label, trace_choosers=choosers + state, utilities, trace_label=trace_label, trace_choosers=choosers ) - chunk.log_df(trace_label, "probs", probs) + chunk_sizer.log_df(trace_label, "probs", probs) del utilities - chunk.log_df(trace_label, "utilities", None) + chunk_sizer.log_df(trace_label, "utilities", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( probs, tracing.extend_trace_label(trace_label, "probs"), column_labels=["alternative", "probability"], @@ -819,10 +847,10 @@ def _interaction_simulate( # positions is series with the chosen alternative represented as a column index in probs # which is an integer between zero and num alternatives in the alternative sample positions, rands = logit.make_choices( - probs, trace_label=trace_label, trace_choosers=choosers + state, probs, trace_label=trace_label, trace_choosers=choosers ) - chunk.log_df(trace_label, "positions", positions) - chunk.log_df(trace_label, "rands", rands) + chunk_sizer.log_df(trace_label, "positions", positions) + chunk_sizer.log_df(trace_label, "rands", rands) # need to get from an integer offset into the alternative sample to the alternative index # that is, we want the index value of the row that is offset by rows into the @@ -834,15 +862,15 @@ def _interaction_simulate( # create a series with index from choosers and the index of the chosen alternative choices = pd.Series(choices, index=choosers.index) - chunk.log_df(trace_label, "choices", choices) + chunk_sizer.log_df(trace_label, "choices", choices) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( choices, tracing.extend_trace_label(trace_label, "choices"), columns=[None, trace_choice_name], ) - tracing.trace_df( + state.tracing.trace_df( rands, tracing.extend_trace_label(trace_label, "rands"), columns=[None, "rand"], @@ -852,6 +880,7 @@ def _interaction_simulate( def interaction_simulate( + state, choosers, alternatives, spec, @@ -864,7 +893,6 @@ def interaction_simulate( trace_choice_name=None, estimator=None, ): - """ Run a simulation in the situation in which alternatives must be merged with choosers because there are interaction terms or @@ -919,11 +947,14 @@ def interaction_simulate( assert len(choosers) > 0 result_list = [] - for i, chooser_chunk, chunk_trace_label in chunk.adaptive_chunked_choosers( - choosers, chunk_size, trace_label - ): - + for ( + i, + chooser_chunk, + chunk_trace_label, + chunk_sizer, + ) in chunk.adaptive_chunked_choosers(state, choosers, trace_label): choices = _interaction_simulate( + state, chooser_chunk, alternatives, spec, @@ -934,11 +965,12 @@ def interaction_simulate( trace_choice_name=trace_choice_name, log_alt_losers=log_alt_losers, estimator=estimator, + chunk_sizer=chunk_sizer, ) result_list.append(choices) - chunk.log_df(trace_label, "result_list", result_list) + chunk_sizer.log_df(trace_label, "result_list", result_list) # FIXME: this will require 2X RAM # if necessary, could append to hdf5 store on disk: diff --git a/activitysim/core/logit.py b/activitysim/core/logit.py index ff3128450..9d282ddda 100644 --- a/activitysim/core/logit.py +++ b/activitysim/core/logit.py @@ -1,13 +1,16 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging -from builtins import object +import warnings import numpy as np import pandas as pd -from . import config, pipeline, tracing -from .choosing import choice_maker +from activitysim.core import tracing, workflow +from activitysim.core.choosing import choice_maker +from activitysim.core.configuration.logit import LogitNestSpec logger = logging.getLogger(__name__) @@ -19,7 +22,13 @@ def report_bad_choices( - bad_row_map, df, trace_label, msg, trace_choosers=None, raise_error=True + state: workflow.State, + bad_row_map, + df, + trace_label, + msg, + trace_choosers=None, + raise_error=True, ): """ @@ -59,7 +68,7 @@ def report_bad_choices( if trace_label: logger.info("dumping %s" % trace_label) - tracing.write_csv(df[:MAX_DUMP], file_name=trace_label, transpose=False) + state.tracing.write_csv(df[:MAX_DUMP], file_name=trace_label, transpose=False) # log the indexes of the first MAX_DUMP offending rows for idx in df.index[:MAX_PRINT].values: @@ -116,11 +125,14 @@ def utils_to_logsums(utils, exponentiated=False, allow_zero_probs=False): def utils_to_probs( + state: workflow.State, utils, trace_label=None, exponentiated=False, allow_zero_probs=False, trace_choosers=None, + overflow_protection: bool = True, + return_logsums: bool = False, ): """ Convert a table of utilities to probabilities. @@ -130,7 +142,7 @@ def utils_to_probs( utils : pandas.DataFrame Rows should be choosers and columns should be alternatives. - trace_label : str + trace_label : str, optional label for tracing bad utility or probability values exponentiated : bool @@ -146,6 +158,20 @@ def utils_to_probs( by report_bad_choices because it can't deduce hh_id from the interaction_dataset which is indexed on index values from alternatives df + overflow_protection : bool, default True + Always shift utility values such that the maximum utility in each row is + zero. This constant per-row shift should not fundamentally alter the + computed probabilities, but will ensure that an overflow does not occur + that will create infinite or NaN values. This will also provide effective + protection against underflow; extremely rare probabilities will round to + zero, but by definition they are extremely rare and losing them entirely + should not impact the simulation in a measureable fashion, and at least one + (and sometimes only one) alternative is guaranteed to have non-zero + probability, as long as at least one alternative has a finite utility value. + If utility values are certain to be well-behaved and non-extreme, enabling + overflow_protection will have no benefit but impose a modest computational + overhead cost. + Returns ------- probs : pandas.DataFrame @@ -158,9 +184,27 @@ def utils_to_probs( # utils_arr = utils.values.astype('float') utils_arr = utils.values - if utils_arr.dtype == np.float32 and utils_arr.max() > 85: + if allow_zero_probs: + if overflow_protection: + warnings.warn( + "cannot set overflow_protection with allow_zero_probs", stacklevel=2 + ) + overflow_protection = utils_arr.dtype == np.float32 and utils_arr.max() > 85 + if overflow_protection: + raise ValueError( + "cannot prevent expected overflow with allow_zero_probs" + ) + else: + overflow_protection = overflow_protection or ( + utils_arr.dtype == np.float32 and utils_arr.max() > 85 + ) + + if overflow_protection: # exponentiated utils will overflow, downshift them - utils_arr -= utils_arr.max(1, keepdims=True) + shifts = utils_arr.max(1, keepdims=True) + utils_arr -= shifts + else: + shifts = None if not exponentiated: # TODO: reduce memory usage by exponentiating in-place. @@ -176,10 +220,20 @@ def utils_to_probs( arr_sum = utils_arr.sum(axis=1) + if return_logsums: + with np.errstate(divide="ignore" if allow_zero_probs else "warn"): + logsums = np.log(arr_sum) + if shifts is not None: + logsums += np.squeeze(shifts, 1) + logsums = pd.Series(logsums, index=utils.index) + else: + logsums = None + if not allow_zero_probs: zero_probs = arr_sum == 0.0 if zero_probs.any(): report_bad_choices( + state, zero_probs, utils, trace_label=tracing.extend_trace_label(trace_label, "zero_prob_utils"), @@ -190,6 +244,7 @@ def utils_to_probs( inf_utils = np.isinf(arr_sum) if inf_utils.any(): report_bad_choices( + state, inf_utils, utils, trace_label=tracing.extend_trace_label(trace_label, "inf_exp_utils"), @@ -211,10 +266,18 @@ def utils_to_probs( probs = pd.DataFrame(utils_arr, columns=utils.columns, index=utils.index) + if return_logsums: + return probs, logsums return probs -def make_choices(probs, trace_label=None, trace_choosers=None, allow_bad_probs=False): +def make_choices( + state: workflow.State, + probs: pd.DataFrame, + trace_label: str = None, + trace_choosers=None, + allow_bad_probs=False, +) -> tuple[pd.Series, pd.Series]: """ Make choices for each chooser from among a set of alternatives. @@ -252,6 +315,7 @@ def make_choices(probs, trace_label=None, trace_choosers=None, allow_bad_probs=F if bad_probs.any() and not allow_bad_probs: report_bad_choices( + state, bad_probs, probs, trace_label=tracing.extend_trace_label(trace_label, "bad_probs"), @@ -259,7 +323,7 @@ def make_choices(probs, trace_label=None, trace_choosers=None, allow_bad_probs=F trace_choosers=trace_choosers, ) - rands = pipeline.get_rn_generator().random_for_df(probs) + rands = state.get_rn_generator().random_for_df(probs) choices = pd.Series(choice_maker(probs.values, rands), index=probs.index) @@ -269,7 +333,12 @@ def make_choices(probs, trace_label=None, trace_choosers=None, allow_bad_probs=F def interaction_dataset( - choosers, alternatives, sample_size=None, alt_index_id=None, chooser_index_id=None + state: workflow.State, + choosers, + alternatives, + sample_size=None, + alt_index_id=None, + chooser_index_id=None, ): """ Combine choosers and alternatives into one table for the purposes @@ -309,7 +378,7 @@ def interaction_dataset( alts_idx = np.arange(numalts) if sample_size < numalts: - sample = pipeline.get_rn_generator().choice_for_df( + sample = state.get_rn_generator().choice_for_df( choosers, alts_idx, sample_size, replace=False ) else: @@ -343,7 +412,7 @@ def interaction_dataset( return alts_sample -class Nest(object): +class Nest: """ Data for a nest-logit node or leaf @@ -388,15 +457,14 @@ def nest_types(cls): return ["leaf", "node"] -def validate_nest_spec(nest_spec, trace_label): +def validate_nest_spec(nest_spec: dict | LogitNestSpec, trace_label: str): keys = [] duplicates = [] for nest in each_nest(nest_spec): if nest.name in keys: logger.error( - "validate_nest_spec:duplicate nest key '%s' in nest spec - %s" - % (nest.name, trace_label) + f"validate_nest_spec:duplicate nest key '{nest.name}' in nest spec - {trace_label}" ) duplicates.append(nest.name) @@ -405,12 +473,11 @@ def validate_nest_spec(nest_spec, trace_label): if duplicates: raise RuntimeError( - "validate_nest_spec:duplicate nest key/s '%s' in nest spec - %s" - % (duplicates, trace_label) + f"validate_nest_spec:duplicate nest key/s '{duplicates}' in nest spec - {trace_label}" ) -def _each_nest(spec, parent_nest, post_order): +def _each_nest(spec: LogitNestSpec, parent_nest, post_order): """ Iterate over each nest or leaf node in the tree (of subtree) @@ -418,7 +485,7 @@ def _each_nest(spec, parent_nest, post_order): Parameters ---------- - spec : dict + spec : LogitNestSpec Nest spec dict tree (or subtree when recursing) from the model spec yaml file parent_nest : Nest nest of parent node (passed to accumulate level, ancestors, and product_of_coefficients) @@ -428,7 +495,7 @@ def _each_nest(spec, parent_nest, post_order): Yields ------ - spec_node : dict + spec_node : LogitNestSpec Nest tree spec dict for this node subtree nest : Nest Nest object with info about the current node (nest or leaf) @@ -437,18 +504,20 @@ def _each_nest(spec, parent_nest, post_order): level = parent_nest.level + 1 - if isinstance(spec, dict): - name = spec["name"] - coefficient = spec["coefficient"] + if isinstance(spec, LogitNestSpec): + name = spec.name + coefficient = spec.coefficient assert isinstance( - coefficient, (int, float) - ), "Coefficient '%s' (%s) not a number" % ( - name, - coefficient, - ) # forgot to eval coefficient? - alternatives = [ - a["name"] if isinstance(a, dict) else a for a in spec["alternatives"] - ] + coefficient, int | float + ), f"Coefficient '{name}' ({coefficient}) not a number" # forgot to eval coefficient? + alternatives = [] + for a in spec.alternatives: + if isinstance(a, dict): + alternatives.append(a["name"]) + elif isinstance(a, LogitNestSpec): + alternatives.append(a.name) + else: + alternatives.append(a) nest = Nest(name=name) nest.level = parent_nest.level + 1 @@ -461,7 +530,7 @@ def _each_nest(spec, parent_nest, post_order): yield spec, nest # recursively iterate the list of alternatives - for alternative in spec["alternatives"]: + for alternative in spec.alternatives: for sub_node, sub_nest in _each_nest(alternative, nest, post_order): yield sub_node, sub_nest @@ -479,13 +548,13 @@ def _each_nest(spec, parent_nest, post_order): yield spec, nest -def each_nest(nest_spec, type=None, post_order=False): +def each_nest(nest_spec: dict | LogitNestSpec, type=None, post_order=False): """ Iterate over each nest or leaf node in the tree (of subtree) Parameters ---------- - nest_spec : dict + nest_spec : dict or LogitNestSpec Nest tree dict from the model spec yaml file type : str Nest class type to yield @@ -504,7 +573,10 @@ def each_nest(nest_spec, type=None, post_order=False): if type is not None and type not in Nest.nest_types(): raise RuntimeError("Unknown nest type '%s' in call to each_nest" % type) - for node, nest in _each_nest(nest_spec, parent_nest=Nest(), post_order=post_order): + if isinstance(nest_spec, dict): + nest_spec = LogitNestSpec.model_validate(nest_spec) + + for _node, nest in _each_nest(nest_spec, parent_nest=Nest(), post_order=post_order): if type is None or (type == nest.type): yield nest diff --git a/activitysim/core/los.py b/activitysim/core/los.py index c1c3a8451..8586a3018 100644 --- a/activitysim/core/los.py +++ b/activitysim/core/los.py @@ -1,16 +1,21 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import os import warnings +from pathlib import Path +from typing import Any import numpy as np import pandas as pd +from pydantic import ValidationError -from activitysim.core import skim_dataset # noqa: F401 -from activitysim.core import config, inject, pathbuilder, skim_dictionary, tracing, util +from activitysim.core import config, input, pathbuilder, skim_dictionary, tracing, util from activitysim.core.cleaning import recode_based_on_table +from activitysim.core.configuration.network import NetworkSettings, TAZ_Settings from activitysim.core.skim_dict_factory import MemMapSkimFactory, NumpyArraySkimFactory from activitysim.core.skim_dictionary import NOT_IN_SKIM_ZONE_ID @@ -70,8 +75,8 @@ class Network_LOS(object): tap_tap_uid: TapTapUidCalculator """ - def __init__(self, los_settings_file_name=LOS_SETTINGS_FILE_NAME): - + def __init__(self, state, los_settings_file_name=LOS_SETTINGS_FILE_NAME): + self.state = state # Note: we require all skims to be of same dtype so they can share buffer - is that ok? # fixme is it ok to require skims be all the same type? if so, is this the right choice? self.skim_dtype_name = "float32" @@ -93,6 +98,7 @@ def __init__(self, los_settings_file_name=LOS_SETTINGS_FILE_NAME): self.los_settings_file_name = los_settings_file_name self.load_settings() + self.sharrow_enabled = state.settings.sharrow # dependency injection of skim factory (of type specified in skim_dict_factory setting) skim_dict_factory_name = self.setting("skim_dict_factory") @@ -117,8 +123,16 @@ def rebuild_tvpb_cache(self): ), f"Should not even be asking about rebuild_tvpb_cache if not THREE_ZONE" return self.setting("rebuild_tvpb_cache") - def setting(self, keys, default=""): + def get_network_cache_dir(self) -> Path: + if self.los_settings.network_cache_dir: + result = self.state.filesystem.get_working_subdir( + self.los_settings.network_cache_dir + ) + result.mkdir(parents=True, exist_ok=True) + return result + return self.state.filesystem.get_cache_dir() + def setting(self, keys, default: Any = ""): # if they dont specify a default, check the default defaults default = ( DEFAULT_SETTINGS.get(keys, "") @@ -130,20 +144,29 @@ def setting(self, keys, default=""): key_list = keys.split(".") s = self.los_settings for key in key_list[:-1]: - s = s.get(key) - if default == "": - assert isinstance( - s, dict - ), f"expected key '{key}' not found in '{keys}' in {self.los_settings_file_name}" + if isinstance(s, dict): + s = s.get(key, None) + else: + s = getattr(s, key, None) + if default == "" and s is None: + raise ValueError( + f"expected key '{key}' not found in '{keys}' in {self.los_settings_file_name}" + ) + # assert isinstance( + # s, dict + # ), f"expected key '{key}' not found in '{keys}' in {self.los_settings_file_name}" key = key_list[-1] # last key if default == "": - assert ( - key in s - ), f"Expected setting {keys} not found in in {LOS_SETTINGS_FILE_NAME}" + if isinstance(s, dict): + assert ( + key in s + ), f"Expected setting {keys} not found in in {LOS_SETTINGS_FILE_NAME}" + else: + assert hasattr(s, key) if isinstance(s, dict): return s.get(key, default) else: - return default + return getattr(s, key, default) def load_settings(self): """ @@ -151,65 +174,19 @@ def load_settings(self): """ try: - self.los_settings = config.read_settings_file( - self.los_settings_file_name, mandatory=True - ) - except config.SettingsFileNotFound as e: - - print( - f"los_settings_file_name {self.los_settings_file_name} not found - trying global settings" - ) - print(f"skims_file: {config.setting('skims_file')}") - print(f"skim_time_periods: {config.setting('skim_time_periods')}") - print(f"source_file_paths: {config.setting('source_file_paths')}") - print( - f"inject.get_injectable('configs_dir') {inject.get_injectable('configs_dir')}" + self.los_settings = NetworkSettings.read_settings_file( + self.state.filesystem, + file_name=self.los_settings_file_name, + mandatory=True, ) - - # look for legacy 'skims_file' setting in global settings file - if config.setting("skims_file"): - - warnings.warn( - "Support for 'skims_file' setting in global settings file will be removed." - "Use 'taz_skims' in network_los.yaml config file instead.", - FutureWarning, - ) - - # in which case, we also expect to find skim_time_periods in settings file - skim_time_periods = config.setting("skim_time_periods") - assert ( - skim_time_periods is not None - ), "'skim_time_periods' setting not found." - warnings.warn( - "Support for 'skim_time_periods' setting in global settings file will be removed." - "Put 'skim_time_periods' in network_los.yaml config file instead.", - FutureWarning, - ) - - self.los_settings = { - "taz_skims": config.setting("skims_file"), - "zone_system": ONE_ZONE, - "skim_time_periods": skim_time_periods, - } - - else: - raise e + except ValidationError as err: + err_msg = str(err) + print(err_msg) + raise + self.state.network_settings = self.los_settings # validate skim_time_periods - self.skim_time_periods = self.setting("skim_time_periods") - if "hours" in self.skim_time_periods: - self.skim_time_periods["periods"] = self.skim_time_periods.pop("hours") - warnings.warn( - "support for `skim_time_periods` key `hours` will be removed in " - "future verions. Use `periods` instead", - FutureWarning, - ) - assert ( - "periods" in self.skim_time_periods - ), "'periods' key not found in network_los.skim_time_periods" - assert ( - "labels" in self.skim_time_periods - ), "'labels' key not found in network_los.skim_time_periods" + self.skim_time_periods = self.state.network_settings.skim_time_periods self.zone_system = self.setting("zone_system") assert self.zone_system in [ @@ -231,7 +208,6 @@ def load_settings(self): # validate skim_time_periods self.skim_time_periods = self.setting("skim_time_periods") - assert {"periods", "labels"}.issubset(set(self.skim_time_periods.keys())) def load_skim_info(self): """ @@ -242,16 +218,24 @@ def load_skim_info(self): """ assert self.skim_dict_factory is not None # load taz skim_info - self.skims_info["taz"] = self.skim_dict_factory.load_skim_info("taz") + self.skims_info["taz"] = self.skim_dict_factory.load_skim_info( + self.state, "taz" + ) if self.zone_system == THREE_ZONE: # load tap skim_info - self.skims_info["tap"] = self.skim_dict_factory.load_skim_info("tap") + self.skims_info["tap"] = self.skim_dict_factory.load_skim_info( + self.state, "tap" + ) if self.zone_system == THREE_ZONE: # load this here rather than in load_data as it is required during multiprocessing to size TVPBCache - self.tap_df = pd.read_csv( - config.data_file_path(self.setting("tap"), mandatory=True) + self.tap_df = input.read_input_file( + self.state.filesystem.get_data_file_path( + self.setting("tap"), + mandatory=True, + alternative_suffixes=(".csv.gz", ".parquet"), + ) ).sort_values("TAP") self.tvpb = pathbuilder.TransitVirtualPathBuilder( self @@ -264,11 +248,14 @@ def load_data(self): # load maz tables if self.zone_system in [TWO_ZONE, THREE_ZONE]: - # maz file_name = self.setting("maz") - self.maz_taz_df = pd.read_csv( - config.data_file_path(file_name, mandatory=True) + self.maz_taz_df = input.read_input_file( + self.state.filesystem.get_data_file_path( + file_name, + mandatory=True, + alternative_suffixes=(".csv.gz", ".parquet"), + ) ) self.maz_taz_df = self.maz_taz_df[["MAZ", "TAZ"]].sort_values( by="MAZ" @@ -276,10 +263,10 @@ def load_data(self): # recode MAZs if needed self.maz_taz_df["MAZ"] = recode_based_on_table( - self.maz_taz_df["MAZ"], "land_use" + self.state, self.maz_taz_df["MAZ"], "land_use" ) self.maz_taz_df["TAZ"] = recode_based_on_table( - self.maz_taz_df["TAZ"], "land_use_taz" + self.state, self.maz_taz_df["TAZ"], "land_use_taz" ) self.maz_ceiling = self.maz_taz_df.MAZ.max() + 1 @@ -292,10 +279,30 @@ def load_data(self): else maz_to_maz_tables ) for file_name in maz_to_maz_tables: + df = input.read_input_file( + self.state.filesystem.get_data_file_path( + file_name, + mandatory=True, + alternative_suffixes=(".csv.gz", ".parquet"), + ) + ) - df = pd.read_csv(config.data_file_path(file_name, mandatory=True)) - - df["i"] = df.OMAZ * self.maz_ceiling + df.DMAZ + # recode MAZs if needed + df["OMAZ"] = recode_based_on_table(self.state, df["OMAZ"], "land_use") + df["DMAZ"] = recode_based_on_table(self.state, df["DMAZ"], "land_use") + + if self.maz_ceiling > (1 << 31): + raise ValueError("maz ceiling too high, will overflow int64") + elif self.maz_ceiling > 32767: + # too many MAZs, or un-recoded MAZ ID's that are too large + # will overflow a 32-bit index, so upgrade to 64bit. + df["i"] = df.OMAZ.astype(np.int64) * np.int64( + self.maz_ceiling + ) + df.DMAZ.astype(np.int64) + else: + df["i"] = df.OMAZ.astype(np.int32) * np.int32( + self.maz_ceiling + ) + df.DMAZ.astype(np.int32) df.set_index("i", drop=True, inplace=True, verify_integrity=True) logger.debug( f"loading maz_to_maz table {file_name} with {len(df)} rows" @@ -315,38 +322,45 @@ def load_data(self): # load tap tables if self.zone_system == THREE_ZONE: - # tap_df should already have been loaded by load_skim_info because, # during multiprocessing, it is required by TapTapUidCalculator to size TVPBCache - # self.tap_df = pd.read_csv(config.data_file_path(self.setting('tap'), mandatory=True)) + # self.tap_df = pd.read_csv(self.state.filesystem.get_data_file_path(self.setting('tap'), mandatory=True)) assert self.tap_df is not None # maz_to_tap_dfs - different sized sparse arrays with different columns, so we keep them seperate for mode, maz_to_tap_settings in self.setting("maz_to_tap").items(): - assert ( "table" in maz_to_tap_settings ), f"Expected setting maz_to_tap.{mode}.table not found in in {LOS_SETTINGS_FILE_NAME}" file_name = maz_to_tap_settings["table"] - df = pd.read_csv(config.data_file_path(file_name, mandatory=True)) + df = input.read_input_file( + self.state.filesystem.get_data_file_path( + file_name, + mandatory=True, + alternative_suffixes=(".csv.gz", ".parquet"), + ) + ) # recode MAZs if needed - df["MAZ"] = recode_based_on_table(df["MAZ"], "land_use") + df["MAZ"] = recode_based_on_table(self.state, df["MAZ"], "land_use") # trim tap set # if provided, use tap_line_distance_col together with tap_lines table to trim the near tap set # to only include the nearest tap to origin when more than one tap serves the same line distance_col = maz_to_tap_settings.get("tap_line_distance_col") if distance_col: - if self.tap_lines_df is None: # load tap_lines on demand (required if they specify tap_line_distance_col) tap_lines_file_name = self.setting( "tap_lines", ) - self.tap_lines_df = pd.read_csv( - config.data_file_path(tap_lines_file_name, mandatory=True) + self.tap_lines_df = input.read_input_file( + self.state.filesystem.get_data_file_path( + tap_lines_file_name, + mandatory=True, + alternative_suffixes=(".csv.gz", ".parquet"), + ) ) # csv file has one row per TAP with space-delimited list of lines served by that TAP @@ -402,7 +416,7 @@ def load_data(self): ) if TRACE_TRIMMED_MAZ_TO_TAP_TABLES: - tracing.write_csv( + self.state.tracing.write_csv( df, file_name=f"trimmed_{maz_to_tap_settings['table']}", transpose=False, @@ -423,11 +437,11 @@ def load_data(self): self.maz_to_tap_dfs[mode] = df # create taz skim dict - if not config.setting("sharrow", False): + if not self.sharrow_enabled: assert "taz" not in self.skim_dicts # If offset_preprocessing was completed, then TAZ values # will be pre-offset and there's no need to re-offset them. - if config.setting("offset_preprocessing", False): + if self.state.settings.offset_preprocessing: _override_offset_int = 0 else: _override_offset_int = None @@ -441,7 +455,7 @@ def load_data(self): # create MazSkimDict facade if self.zone_system in [TWO_ZONE, THREE_ZONE]: - if not config.setting("sharrow", False): + if not self.sharrow_enabled: # create MazSkimDict facade skim_dict # (must have already loaded dependencies: taz skim_dict, maz_to_maz_df, and maz_taz_df) assert "maz" not in self.skim_dicts @@ -461,7 +475,7 @@ def load_data(self): # create tap skim dict if self.zone_system == THREE_ZONE: - if not config.setting("sharrow", False): + if not self.sharrow_enabled: assert "tap" not in self.skim_dicts tap_skim_dict = self.create_skim_dict("tap") self.skim_dicts["tap"] = tap_skim_dict @@ -473,6 +487,18 @@ def load_data(self): else: self.skim_dicts["tap"] = self.get_skim_dict("tap") + # check that the number of rows in land_use_taz matches the number of zones in the skims + if "land_use_taz" in self.state: + skims = self.get_skim_dict("taz") + if hasattr(skims, "zone_ids"): # SkimDict + assert len(skims.zone_ids) == len( + self.state.get_dataframe("land_use_taz") + ) + else: # SkimDataset + assert len(skims.dataset.indexes["otaz"]) == len( + self.state.get_dataframe("land_use_taz") + ) + def create_skim_dict(self, skim_tag, _override_offset_int=None): """ Create a new SkimDict of type specified by skim_tag (e.g. 'taz', 'maz' or 'tap') @@ -501,11 +527,15 @@ def create_skim_dict(self, skim_tag, _override_offset_int=None): "taz" in self.skim_dicts ), f"create_skim_dict 'maz': backing taz skim_dict not in skim_dicts" taz_skim_dict = self.skim_dicts["taz"] - skim_dict = skim_dictionary.MazSkimDict("maz", self, taz_skim_dict) + skim_dict = skim_dictionary.MazSkimDict( + self.state, "maz", self, taz_skim_dict + ) else: skim_info = self.skims_info[skim_tag] skim_data = self.skim_dict_factory.get_skim_data(skim_tag, skim_info) - skim_dict = skim_dictionary.SkimDict(skim_tag, skim_info, skim_data) + skim_dict = skim_dictionary.SkimDict( + self.state, skim_tag, skim_info, skim_data + ) logger.debug(f"create_skim_dict {skim_tag} omx_shape {skim_dict.omx_shape}") @@ -529,6 +559,8 @@ def omx_file_names(self, skim_tag): list of str """ file_names = self.setting(f"{skim_tag}_skims") + if isinstance(file_names, TAZ_Settings): + file_names = file_names.omx if isinstance(file_names, dict): for i in ("file", "files", "omx"): if i in file_names: @@ -551,11 +583,13 @@ def zarr_file_name(self, skim_tag): Returns ------- - list of str + str """ skim_setting = self.setting(f"{skim_tag}_skims") if isinstance(skim_setting, dict): return skim_setting.get("zarr", None) + elif isinstance(skim_setting, TAZ_Settings): + return skim_setting.zarr else: return None @@ -597,7 +631,7 @@ def multiprocess(self): ------- bool """ - is_multiprocess = config.setting("multiprocess", False) + is_multiprocess = self.state.settings.multiprocess return is_multiprocess def load_shared_data(self, shared_data_buffers): @@ -625,7 +659,7 @@ def load_shared_data(self, shared_data_buffers): if self.zone_system == THREE_ZONE: assert self.tvpb is not None - if self.rebuild_tvpb_cache and not config.setting("resume_after", None): + if self.rebuild_tvpb_cache and not self.state.settings.resume_after: # delete old cache at start of new run so that stale cache is not loaded by load_data_to_buffer # when singleprocess, this call is made (later in program flow) in the initialize_los step self.tvpb.tap_cache.cleanup() @@ -676,14 +710,14 @@ def get_skim_dict(self, skim_tag): Returns ------- - SkimDict or subclass (e.g. MazSkimDict) + SkimDict or subclass (e.g. MazSkimDict) or SkimDataset """ - sharrow_enabled = config.setting("sharrow", False) + sharrow_enabled = self.sharrow_enabled if sharrow_enabled and skim_tag in ("taz", "maz"): - skim_dataset = inject.get_injectable("skim_dataset") # non-global import avoids circular references from .skim_dataset import SkimDataset + skim_dataset = self.state.get_injectable("skim_dataset") if skim_tag == "maz": return SkimDataset(skim_dataset) else: @@ -694,7 +728,7 @@ def get_skim_dict(self, skim_tag): del skim_dataset.attrs[f"dim_redirection_{dd}"] return SkimDataset(skim_dataset) elif sharrow_enabled and skim_tag in ("tap"): - tap_dataset = inject.get_injectable("tap_dataset") + tap_dataset = self.state.get_injectable("tap_dataset") from .skim_dataset import SkimDataset return SkimDataset(tap_dataset) @@ -739,7 +773,14 @@ def get_mazpairs(self, omaz, dmaz, attribute): # how="left")[attribute] # synthetic index method i : omaz_dmaz - i = np.asanyarray(omaz) * self.maz_ceiling + np.asanyarray(dmaz) + if self.maz_ceiling > 32767: + # too many MAZs, or un-recoded MAZ ID's that are too large + # will overflow a 32-bit index, so upgrade to 64bit. + i = np.asanyarray(omaz, dtype=np.int64) * np.int64( + self.maz_ceiling + ) + np.asanyarray(dmaz, dtype=np.int64) + else: + i = np.asanyarray(omaz) * self.maz_ceiling + np.asanyarray(dmaz) s = util.quick_loc_df(i, self.maz_to_maz_df, attribute) # FIXME - no point in returning series? @@ -797,7 +838,9 @@ def get_tappairs3d(self, otap, dtap, dim3, key): return s.values - def skim_time_period_label(self, time_period): + def skim_time_period_label( + self, time_period, fillna=None, as_cat=False, broadcast_to=None + ): """ convert time period times to skim time period labels (e.g. 9 -> 'AM') @@ -816,43 +859,67 @@ def skim_time_period_label(self, time_period): ), "'skim_time_periods' setting not found." # Default to 60 minute time periods - period_minutes = self.skim_time_periods.get("period_minutes", 60) + period_minutes = self.skim_time_periods.period_minutes # Default to a day - model_time_window_min = self.skim_time_periods.get("time_window", 1440) + model_time_window_min = self.skim_time_periods.time_window # Check to make sure the intervals result in no remainder time through 24 hour day assert 0 == model_time_window_min % period_minutes total_periods = model_time_window_min / period_minutes + try: + time_label_dtype = self.skim_dicts["taz"].time_label_dtype + except (KeyError, AttributeError): + # if the "taz" skim_dict is missing, or if using old SkimDict + # instead of SkimDataset, this labeling shortcut is unavailable. + time_label_dtype = str + as_cat = False + # FIXME - eventually test and use np version always? if np.isscalar(time_period): bin = ( np.digitize( [time_period % total_periods], - self.skim_time_periods["periods"], + self.skim_time_periods.periods, right=True, )[0] - 1 ) - result = self.skim_time_periods["labels"][bin] + if fillna is not None: + default = self.skim_time_periods.labels[fillna] + result = self.skim_time_periods.labels.get(bin, default=default) + else: + result = self.skim_time_periods.labels[bin] + if broadcast_to is not None: + result = pd.Series( + data=result, + index=broadcast_to, + dtype=time_label_dtype if as_cat else str, + ) else: result = pd.cut( time_period, - self.skim_time_periods["periods"], - labels=self.skim_time_periods["labels"], + self.skim_time_periods.periods, + labels=self.skim_time_periods.labels, ordered=False, - ).astype(str) - + ) + if fillna is not None: + default = self.skim_time_periods.labels[fillna] + result = result.fillna(default) + if as_cat: + result = result.astype(time_label_dtype) + else: + result = result.astype(str) return result - def get_tazs(self): + def get_tazs(self, state): # FIXME - should compute on init? if self.zone_system == ONE_ZONE: - tazs = inject.get_table("land_use").index.values + tazs = state.get_dataframe("land_use").index.values else: try: - land_use_taz = inject.get_table("land_use_taz").to_frame() + land_use_taz = state.get_dataframe("land_use_taz") except (RuntimeError, KeyError): # land_use_taz is missing, use fallback tazs = self.maz_taz_df.TAZ.unique() @@ -878,17 +945,15 @@ def get_taps(self): assert isinstance(taps, np.ndarray) return taps - @property - def get_maz_to_taz_series(self): + def get_maz_to_taz_series(self, state): """ pd.Series: Index is the MAZ, value is the corresponding TAZ """ - sharrow_enabled = config.setting("sharrow", False) - if sharrow_enabled: + if self.sharrow_enabled: # FIXME:SHARROW - this assumes that both MAZ and TAZ have been recoded to # zero-based indexes, but what if that was not done? # Should we check it and error out here or bravely march forward? - skim_dataset = inject.get_injectable("skim_dataset") + skim_dataset = state.get_injectable("skim_dataset") maz_to_taz = skim_dataset["_digitized_otaz_of_omaz"].to_series() else: maz_to_taz = self.maz_taz_df[["MAZ", "TAZ"]].set_index("MAZ").TAZ @@ -913,7 +978,7 @@ def map_maz_to_taz(self, s): input_was_series = False else: input_was_series = True - out = s.map(self.get_maz_to_taz_series) + out = s.map(self.get_maz_to_taz_series(self.state)) if np.issubdtype(out, np.floating): if out.isna().any(): raise KeyError("failed in mapping MAZ to TAZ") diff --git a/activitysim/core/mem.py b/activitysim/core/mem.py index ae832f250..d17b84adc 100644 --- a/activitysim/core/mem.py +++ b/activitysim/core/mem.py @@ -1,5 +1,6 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import datetime import gc @@ -14,7 +15,7 @@ import pandas as pd import psutil -from activitysim.core import config, inject, util +from activitysim.core import config, util, workflow logger = logging.getLogger(__name__) @@ -44,28 +45,30 @@ def time_bin(timestamps): return pd.to_datetime(bin, unit="s", origin="unix") -def consolidate_logs(): +def consolidate_logs(state: workflow.State): """ Consolidate and aggregate subprocess mem logs """ - if not config.setting("multiprocess", False): + if not state.settings.multiprocess: return - delete_originals = not config.setting("keep_mem_logs", False) + delete_originals = not state.settings.keep_mem_logs omnibus_df = [] # for each multiprocess step - multiprocess_steps = config.setting("multiprocess_steps", []) + multiprocess_steps = state.settings.multiprocess_steps + if multiprocess_steps is not None: + multiprocess_steps = [i.dict() for i in multiprocess_steps] for step in multiprocess_steps: step_name = step.get("name", None) logger.debug(f"mem.consolidate_logs for step {step_name}") - glob_file_name = config.log_file_path( + glob_file_name = state.get_log_file_path( f"{step_name}*{MEM_LOG_FILE_NAME}", prefix=False ) - glob_files = glob.glob(glob_file_name) + glob_files = glob.glob(str(glob_file_name)) if not glob_files: continue @@ -126,7 +129,7 @@ def consolidate_logs(): util.delete_files(glob_files, f"mem.consolidate_logs.{step_name}") # write aggregate step log - output_path = config.log_file_path(f"mem_{step_name}.csv", prefix=False) + output_path = state.get_log_file_path(f"mem_{step_name}.csv", prefix=False) logger.debug( f"chunk.consolidate_logs writing step summary log for step {step_name} to {output_path}" ) @@ -138,7 +141,7 @@ def consolidate_logs(): omnibus_df = pd.concat(omnibus_df) omnibus_df = omnibus_df.sort_values("time") - output_path = config.log_file_path(OMNIBUS_LOG_FILE_NAME, prefix=False) + output_path = state.get_log_file_path(OMNIBUS_LOG_FILE_NAME, prefix=False) logger.debug(f"chunk.consolidate_logs writing omnibus log to {output_path}") omnibus_df.to_csv(output_path, mode="w", index=False) @@ -173,10 +176,13 @@ def log_global_hwm(): ) -def trace_memory_info(event, trace_ticks=0, force_garbage_collect=False): +def trace_memory_info(event, trace_ticks=0, force_garbage_collect=False, *, state): global MEM_TICK + if state is None: + raise ValueError("state cannot be None") + tick = time.time() if trace_ticks and (tick - MEM_TICK < trace_ticks): return @@ -235,9 +241,14 @@ def trace_memory_info(event, trace_ticks=0, force_garbage_collect=False): with mem_log_lock: MEM_LOG_HEADER = "process,pid,rss,full_rss,uss,event,children,time" - with config.open_log_file( - MEM_LOG_FILE_NAME, "a", header=MEM_LOG_HEADER, prefix=True - ) as log_file: + log_file = state.filesystem.open_log_file( + MEM_LOG_FILE_NAME, + "a", + header=MEM_LOG_HEADER, + prefix=state.get("log_file_prefix", None), + ) + + with log_file: print( f"{process_name}," f"{pid}," @@ -276,7 +287,7 @@ def get_rss(force_garbage_collect=False, uss=False): return info.rss, 0 -def shared_memory_size(data_buffers=None): +def shared_memory_size(data_buffers): """ return total size of the multiprocessing shared memory block in data_buffers @@ -288,7 +299,7 @@ def shared_memory_size(data_buffers=None): shared_size = 0 if data_buffers is None: - data_buffers = inject.get_injectable("data_buffers", {}) + data_buffers = {} for k, data_buffer in data_buffers.items(): if isinstance(data_buffer, str) and data_buffer.startswith("sh.Dataset:"): diff --git a/activitysim/core/memory_sidecar.py b/activitysim/core/memory_sidecar.py index b1d8816e3..7ad8d35ff 100644 --- a/activitysim/core/memory_sidecar.py +++ b/activitysim/core/memory_sidecar.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import datetime import os import time diff --git a/activitysim/core/mp_tasks.py b/activitysim/core/mp_tasks.py index ebbf1cb37..db92be1da 100644 --- a/activitysim/core/mp_tasks.py +++ b/activitysim/core/mp_tasks.py @@ -1,5 +1,8 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + +import glob import importlib import logging import multiprocessing @@ -8,13 +11,21 @@ import time import traceback from collections import OrderedDict +from pathlib import Path import numpy as np import pandas as pd import yaml -from activitysim.core import config, inject, mem, pipeline, tracing, util -from activitysim.core.config import setting +from activitysim.core import config, mem, tracing, util, workflow +from activitysim.core.configuration import FileSystem, Settings +from activitysim.core.workflow.checkpoint import ( + CHECKPOINT_NAME, + CHECKPOINT_TABLE_NAME, + FINAL_CHECKPOINT_NAME, + NON_TABLE_COLUMNS, + ParquetStore, +) logger = logging.getLogger(__name__) @@ -196,15 +207,14 @@ # FIXME - pathological knowledge of abm.tables.skims and abm.tables.shadow_pricing (see note above) -def log(msg, level, write_to_log_file=True): - +def log(state: workflow.State, msg, level, write_to_log_file=True): process_name = multiprocessing.current_process().name if not write_to_log_file: print(f"############ mp_tasks - {process_name} - {msg}") if write_to_log_file: - with config.open_log_file("mp_tasks_log.txt", "a") as log_file: + with state.filesystem.open_log_file("mp_tasks_log.txt", "a") as log_file: print(f"mp_tasks - {process_name} - {msg}", file=log_file) if write_to_log_file: @@ -212,31 +222,30 @@ def log(msg, level, write_to_log_file=True): logger.log(level, msg) -def debug(msg, write_to_log_file=True): - log(msg, level=logging.DEBUG, write_to_log_file=write_to_log_file) +def debug(state: workflow.State, msg, write_to_log_file=True): + log(state, msg, level=logging.DEBUG, write_to_log_file=write_to_log_file) -def info(msg, write_to_log_file=True): - log(msg, level=logging.INFO, write_to_log_file=write_to_log_file) +def info(state: workflow.State, msg, write_to_log_file=True): + log(state, msg, level=logging.INFO, write_to_log_file=write_to_log_file) -def warning(msg, write_to_log_file=True): - log(msg, level=logging.WARNING, write_to_log_file=write_to_log_file) +def warning(state: workflow.State, msg, write_to_log_file=True): + log(state, msg, level=logging.WARNING, write_to_log_file=write_to_log_file) -def error(msg, write_to_log_file=True): - log(msg, level=logging.ERROR, write_to_log_file=write_to_log_file) +def error(state: workflow.State, msg, write_to_log_file=True): + log(state, msg, level=logging.ERROR, write_to_log_file=write_to_log_file) -def exception(msg, write_to_log_file=True): - +def exception(state: workflow.State, msg, write_to_log_file=True): process_name = multiprocessing.current_process().name if not write_to_log_file: print(f"mp_tasks - {process_name} - {msg}") print(f"---\n{traceback.format_exc()}---") - with config.open_log_file("mp_tasks_log.txt", "a") as log_file: + with state.filesystem.open_log_file("mp_tasks_log.txt", "a") as log_file: print(f"---\nmp_tasks - {process_name} - {msg}", file=log_file) traceback.print_exc(limit=10, file=log_file) print("---", file=log_file) @@ -273,28 +282,21 @@ def pipeline_table_keys(pipeline_store): """ - checkpoints = pipeline_store[pipeline.CHECKPOINT_TABLE_NAME] - - # don't currently need this capability... - # if checkpoint_name: - # # specified checkpoint row as series - # i = checkpoints[checkpoints[pipeline.CHECKPOINT_NAME] == checkpoint_name].index[0] - # checkpoint = checkpoints.loc[i] - # else: + checkpoints = pipeline_store[CHECKPOINT_TABLE_NAME] # last checkpoint row as series checkpoint = checkpoints.iloc[-1] - checkpoint_name = checkpoint.loc[pipeline.CHECKPOINT_NAME] + checkpoint_name = checkpoint.loc[CHECKPOINT_NAME] # series with table name as index and checkpoint_name as value - checkpoint_tables = checkpoint[~checkpoint.index.isin(pipeline.NON_TABLE_COLUMNS)] + checkpoint_tables = checkpoint[~checkpoint.index.isin(NON_TABLE_COLUMNS)] # omit dropped tables with empty checkpoint name checkpoint_tables = checkpoint_tables[checkpoint_tables != ""] # hdf5 key is / checkpoint_tables = { - table_name: pipeline.pipeline_table_key(table_name, checkpoint_name) + table_name: workflow.State.pipeline_table_key(None, table_name, checkpoint_name) for table_name, checkpoint_name in checkpoint_tables.items() } @@ -302,7 +304,51 @@ def pipeline_table_keys(pipeline_store): return checkpoint_name, checkpoint_tables -def build_slice_rules(slice_info, pipeline_tables): +def parquet_pipeline_table_keys(pipeline_path: Path): + """ + return dict of current (as of last checkpoint) pipeline tables + and their checkpoint-specific hdf5_keys + + This facilitates reading pipeline tables directly from a 'raw' open pandas.HDFStore without + opening it as a pipeline (e.g. when apportioning and coalescing pipelines) + + We currently only ever need to do this from the last checkpoint, so the ability to specify + checkpoint_name is not required, and thus omitted. + + Returns + ------- + checkpoint_name : name of the checkpoint + checkpoint_tables : dict {: } + + """ + checkpoints = ParquetStore(pipeline_path).get_dataframe(CHECKPOINT_TABLE_NAME) + # pd.read_parquet( + # pipeline_path.joinpath(CHECKPOINT_TABLE_NAME, "None.parquet") + # ) + + # last checkpoint row as series + checkpoint = checkpoints.iloc[-1] + checkpoint_name = checkpoint.loc[CHECKPOINT_NAME] + + # series with table name as index and checkpoint_name as value + checkpoint_tables = checkpoint[~checkpoint.index.isin(NON_TABLE_COLUMNS)] + + # omit dropped tables with empty checkpoint name + checkpoint_tables = checkpoint_tables[checkpoint_tables != ""] + + # hdf5 key is / + checkpoint_tables = { + table_name: ParquetStore(pipeline_path) + ._store_table_path(table_name, checkpoint_name) + .relative_to(ParquetStore(pipeline_path)._directory) + for table_name, checkpoint_name in checkpoint_tables.items() + } + + # checkpoint name and series mapping table name to path for tables in that checkpoint + return checkpoint_name, checkpoint_tables + + +def build_slice_rules(state: workflow.State, slice_info, pipeline_tables): """ based on slice_info for current step from run_list, generate a recipe for slicing the tables in the pipeline (passed in tables parameter) @@ -383,6 +429,8 @@ def build_slice_rules(slice_info, pipeline_tables): slicer_table_names = slice_info["tables"] slicer_table_exceptions = slice_info.get("exclude", slice_info.get("except", [])) + if slicer_table_exceptions is None: + slicer_table_exceptions = [] primary_slicer = slicer_table_names[0] # - ensure that tables listed in slice_info appear in correct order and before any others @@ -400,7 +448,8 @@ def build_slice_rules(slice_info, pipeline_tables): # So don't change this behavior withoyt testing populationsim multiprocess! if slicer_table_exceptions is True: debug( - f"slice.except wildcard (True): excluding all tables not explicitly listed in slice.tables" + state, + f"slice.except wildcard (True): excluding all tables not explicitly listed in slice.tables", ) slicer_table_exceptions = [t for t in tables if t not in slicer_table_names] @@ -414,7 +463,6 @@ def build_slice_rules(slice_info, pipeline_tables): # build slice rules for loaded tables slice_rules = OrderedDict() for table_name, df in tables.items(): - rule = {} if table_name == primary_slicer: # slice primary apportion table @@ -454,14 +502,15 @@ def build_slice_rules(slice_info, pipeline_tables): for table_name, rule in slice_rules.items(): if rule["slice_by"] is not None: debug( - f"### table_name: {table_name} slice_rules: {slice_rules[table_name]}" + state, + f"### table_name: {table_name} slice_rules: {slice_rules[table_name]}", ) - debug(f"### slicer_ref_cols: {slicer_ref_cols}") + debug(state, f"### slicer_ref_cols: {slicer_ref_cols}") return slice_rules -def apportion_pipeline(sub_proc_names, step_info): +def apportion_pipeline(state: workflow.State, sub_proc_names, step_info): """ apportion pipeline for multiprocessing step @@ -472,7 +521,7 @@ def apportion_pipeline(sub_proc_names, step_info): Parameters ---------- - sub_proc_names : list of str + sub_proc_names : list[str] names of the sub processes to apportion step_info : dict step_info from multiprocess_steps for step we are apportioning pipeline tables for @@ -481,26 +530,28 @@ def apportion_pipeline(sub_proc_names, step_info): ------- creates apportioned pipeline files for each sub job """ - slice_info = step_info.get("slice", None) + if slice_info is None: + raise RuntimeError("missing slice_info.slice") multiprocess_step_name = step_info.get("name", None) - pipeline_file_name = inject.get_injectable("pipeline_file_name") + pipeline_file_name = state.get_injectable("pipeline_file_name") # ensure that if we are resuming, we don't apportion any tables from future model steps last_checkpoint_in_previous_multiprocess_step = step_info.get( "last_checkpoint_in_previous_multiprocess_step", None ) - assert last_checkpoint_in_previous_multiprocess_step is not None - pipeline.open_pipeline(resume_after=last_checkpoint_in_previous_multiprocess_step) + if last_checkpoint_in_previous_multiprocess_step is None: + raise RuntimeError("missing last_checkpoint_in_previous_multiprocess_step") + state.checkpoint.restore(resume_after=last_checkpoint_in_previous_multiprocess_step) # ensure all tables are in the pipeline - checkpointed_tables = pipeline.checkpointed_tables() + checkpointed_tables = state.checkpoint.list_tables() for table_name in slice_info["tables"]: if table_name not in checkpointed_tables: raise RuntimeError(f"slicer table {table_name} not found in pipeline") - checkpoints_df = pipeline.get_checkpoints() + checkpoints_df = state.checkpoint.get_inventory() # for the subprocess pipelines, keep only the last row of checkpoints and patch the last checkpoint name checkpoints_df = checkpoints_df.tail(1).copy() @@ -512,46 +563,120 @@ def apportion_pipeline(sub_proc_names, step_info): # patch last checkpoint name for all tables checkpoints_df[table_name] = checkpoint_name # load the dataframe - tables[table_name] = pipeline.get_table(table_name) + tables[table_name] = state.checkpoint.load_dataframe(table_name) - debug(f"loaded table {table_name} {tables[table_name].shape}") + debug(state, f"loaded table {table_name} {tables[table_name].shape}") - pipeline.close_pipeline() + state.checkpoint.close_store() # should only be one checkpoint (named ) assert len(checkpoints_df) == 1 # - build slice rules for loaded tables - slice_rules = build_slice_rules(slice_info, tables) + slice_rules = build_slice_rules(state, slice_info, tables) # - allocate sliced tables for each sub_proc num_sub_procs = len(sub_proc_names) for i in range(num_sub_procs): - # use well-known pipeline file name process_name = sub_proc_names[i] - pipeline_path = config.build_output_file_path( - pipeline_file_name, use_prefix=process_name + pipeline_path = state.get_output_file_path( + pipeline_file_name, prefix=process_name ) - # remove existing file - try: - os.unlink(pipeline_path) - except OSError: - pass + if state.settings.checkpoint_format == "hdf": + # remove existing file + try: + os.unlink(pipeline_path) + except OSError: + pass + + with pd.HDFStore(str(pipeline_path), mode="a") as pipeline_store: + # remember sliced_tables so we can cascade slicing to other tables + sliced_tables = {} + + # - for each table in pipeline + for table_name, rule in slice_rules.items(): + df = tables[table_name] + + if rule["slice_by"] is not None and num_sub_procs > len(df): + # almost certainly a configuration error + raise RuntimeError( + f"apportion_pipeline: multiprocess step {multiprocess_step_name} " + f"slice table {table_name} has fewer rows {df.shape} " + f"than num_processes ({num_sub_procs})." + ) + + if rule["slice_by"] == "primary": + # slice primary apportion table by num_sub_procs strides + # this hopefully yields a more random distribution + # (e.g.) households are ordered by size in input store + # we are assuming that the primary table index is unique + # otherwise we should slice by strides in df.index.unique + # we could easily work around this, but it seems likely this was an error on the user's part + assert not df.index.duplicated().any() + + primary_df = df[ + np.asanyarray(list(range(df.shape[0]))) % num_sub_procs == i + ] + sliced_tables[table_name] = primary_df + elif rule["slice_by"] == "index": + # slice a table with same index name as a known slicer + source_df = sliced_tables[rule["source"]] + sliced_tables[table_name] = df.loc[source_df.index] + elif rule["slice_by"] == "column": + # slice a table with a recognized slicer_column + source_df = sliced_tables[rule["source"]] + sliced_tables[table_name] = df[ + df[rule["column"]].isin(source_df.index) + ] + elif rule["slice_by"] is None: + # don't slice mirrored tables + sliced_tables[table_name] = df + else: + raise RuntimeError( + "Unrecognized slice rule '%s' for table %s" + % (rule["slice_by"], table_name) + ) - with pd.HDFStore(pipeline_path, mode="a") as pipeline_store: + # - write table to pipeline + hdf5_key = state.pipeline_table_key(table_name, checkpoint_name) + pipeline_store[hdf5_key] = sliced_tables[table_name] + + debug( + state, + f"writing checkpoints ({checkpoints_df.shape}) " + f"to {CHECKPOINT_TABLE_NAME} in {pipeline_path}", + ) + pipeline_store[CHECKPOINT_TABLE_NAME] = checkpoints_df + else: + # remove existing parquet files and directories + for pq_file in glob.glob(str(pipeline_path.joinpath("*", "*.parquet"))): + try: + os.unlink(pq_file) + except OSError: + pass + for pq_dir in glob.glob(str(pipeline_path.joinpath("*", "*"))): + try: + os.rmdir(pq_dir) + except OSError: + pass + for pq_dir in glob.glob(str(pipeline_path.joinpath("*"))): + try: + os.rmdir(pq_dir) + except OSError: + pass # remember sliced_tables so we can cascade slicing to other tables sliced_tables = {} + # YO pipeline_store + # - for each table in pipeline for table_name, rule in slice_rules.items(): - df = tables[table_name] if rule["slice_by"] is not None and num_sub_procs > len(df): - # almost certainly a configuration error raise RuntimeError( f"apportion_pipeline: multiprocess step {multiprocess_step_name} " @@ -592,17 +717,37 @@ def apportion_pipeline(sub_proc_names, step_info): ) # - write table to pipeline - hdf5_key = pipeline.pipeline_table_key(table_name, checkpoint_name) - pipeline_store[hdf5_key] = sliced_tables[table_name] + pipeline_path.joinpath(table_name).mkdir(parents=True, exist_ok=True) + + ParquetStore(pipeline_path).put( + table_name=table_name, + df=sliced_tables[table_name], + checkpoint_name=checkpoint_name, + ) + # + # sliced_tables[table_name].to_parquet( + # pipeline_path.joinpath(table_name, f"{checkpoint_name}.parquet") + # ) debug( + state, f"writing checkpoints ({checkpoints_df.shape}) " - f"to {pipeline.CHECKPOINT_TABLE_NAME} in {pipeline_path}" + f"to {CHECKPOINT_TABLE_NAME} in {pipeline_path}", + ) + pipeline_path.joinpath(CHECKPOINT_TABLE_NAME).mkdir( + parents=True, exist_ok=True + ) + ParquetStore(pipeline_path).put( + table_name=CHECKPOINT_TABLE_NAME, + df=checkpoints_df, + checkpoint_name=None, ) - pipeline_store[pipeline.CHECKPOINT_TABLE_NAME] = checkpoints_df + # checkpoints_df.to_parquet( + # pipeline_path.joinpath(CHECKPOINT_TABLE_NAME, f"None.parquet") + # ) -def coalesce_pipelines(sub_proc_names, slice_info): +def coalesce_pipelines(state: workflow.State, sub_proc_names, slice_info): """ Coalesce the data in the sub_processes apportioned pipelines back into a single pipeline @@ -613,7 +758,7 @@ def coalesce_pipelines(sub_proc_names, slice_info): Parameters ---------- - sub_proc_names : list of str + sub_proc_names : list[str] slice_info : dict slice_info from multiprocess_steps @@ -622,31 +767,37 @@ def coalesce_pipelines(sub_proc_names, slice_info): creates an omnibus pipeline with coalesced data from individual sub_proc pipelines """ - pipeline_file_name = inject.get_injectable("pipeline_file_name") + pipeline_file_name = state.get_injectable("pipeline_file_name") - debug(f"coalesce_pipelines to: {pipeline_file_name}") + debug(state, f"coalesce_pipelines to: {pipeline_file_name}") # - read all tables from first process pipeline # FIXME - note: assumes any new tables will be present in ALL subprocess pipelines tables = {} - pipeline_path = config.build_output_file_path( - pipeline_file_name, use_prefix=sub_proc_names[0] + pipeline_path = state.get_output_file_path( + pipeline_file_name, prefix=sub_proc_names[0] ) - with pd.HDFStore(pipeline_path, mode="r") as pipeline_store: + if state.settings.checkpoint_format == "hdf": + with pd.HDFStore(str(pipeline_path), mode="r") as pipeline_store: + # hdf5_keys is a dict mapping table_name to pipeline hdf5_key + checkpoint_name, hdf5_keys = pipeline_table_keys(pipeline_store) - # hdf5_keys is a dict mapping table_name to pipeline hdf5_key - checkpoint_name, hdf5_keys = pipeline_table_keys(pipeline_store) - - for table_name, hdf5_key in hdf5_keys.items(): - debug(f"loading table {table_name} {hdf5_key}") - tables[table_name] = pipeline_store[hdf5_key] + for table_name, hdf5_key in hdf5_keys.items(): + debug(state, f"loading table {table_name} {hdf5_key}") + tables[table_name] = pipeline_store[hdf5_key] + else: + checkpoint_name, hdf5_keys = parquet_pipeline_table_keys(pipeline_path) + pqstore = ParquetStore(pipeline_path, mode="r") + for table_name, parquet_path in hdf5_keys.items(): + debug(state, f"loading table {table_name} from {pqstore.filename}") + tables[table_name] = pqstore.get_dataframe(table_name) # slice.coalesce is an override list of omnibus tables created by subprocesses that should be coalesced, # whether or not they satisfy the slice rules. Ordinarily all tables qualify for slicing by the slice rules # will be coalesced, including any new tables created by the subprocess that have sliceable indexes or ref_cols. # Any other new tables that don't match the slice rules will be considered mirrored. This is usually the desired - # behavior, especially in activitysim abm models. However, if the "slice.except: True" wildcard is used, it + # behavior, especially in activitysim abm models. However, if the "slice.exclude: True" wildcard is used, it # prevents the inference for newly generated tables, and this directive permits explicit specification of # which new tables to coalesce. Populationsim uses this wildcard except directives to avoid having to list # many slice exceptions, and just lists weigh tables to coalesce. So don't change this behavior without testing @@ -663,7 +814,7 @@ def coalesce_pipelines(sub_proc_names, slice_info): # - use slice rules followed by apportion_pipeline to identify mirrored tables # (tables that are identical in every pipeline and so don't need to be concatenated) - slice_rules = build_slice_rules(slice_info, tables) + slice_rules = build_slice_rules(state, slice_info, tables) # table is mirrored if no slice rule or explicitly listed in slice_info.coalesce setting mirrored_table_names = [ @@ -674,43 +825,48 @@ def coalesce_pipelines(sub_proc_names, slice_info): mirrored_tables = {t: tables[t] for t in mirrored_table_names} omnibus_keys = {t: k for t, k in hdf5_keys.items() if t not in mirrored_table_names} - debug(f"coalesce_pipelines to: {pipeline_file_name}") - debug(f"mirrored_table_names: {mirrored_table_names}") - debug(f"omnibus_keys: {omnibus_keys}") + debug(state, f"coalesce_pipelines to: {pipeline_file_name}") + debug(state, f"mirrored_table_names: {mirrored_table_names}") + debug(state, f"omnibus_keys: {omnibus_keys}") # assemble lists of omnibus tables from all sub_processes omnibus_tables = {table_name: [] for table_name in omnibus_keys} for process_name in sub_proc_names: - pipeline_path = config.build_output_file_path( - pipeline_file_name, use_prefix=process_name + pipeline_path = state.get_output_file_path( + pipeline_file_name, prefix=process_name ) logger.info(f"coalesce pipeline {pipeline_path}") - with pd.HDFStore(pipeline_path, mode="r") as pipeline_store: + if state.settings.checkpoint_format == "hdf": + with pd.HDFStore(str(pipeline_path), mode="r") as pipeline_store: + for table_name, hdf5_key in omnibus_keys.items(): + omnibus_tables[table_name].append(pipeline_store[hdf5_key]) + else: + pqstore = ParquetStore(pipeline_path, mode="r") for table_name, hdf5_key in omnibus_keys.items(): - omnibus_tables[table_name].append(pipeline_store[hdf5_key]) + omnibus_tables[table_name].append(pqstore.get_dataframe(table_name)) # open pipeline, preserving existing checkpoints (so resume_after will work for prior steps) - pipeline.open_pipeline("_") + state.checkpoint.restore(resume_after="_") # - add mirrored tables to pipeline for table_name in mirrored_tables: df = mirrored_tables[table_name] - info(f"adding mirrored table {table_name} {df.shape}") - pipeline.replace_table(table_name, df) + info(state, f"adding mirrored table {table_name} {df.shape}") + state.add_table(table_name, df) # - concatenate omnibus tables and add them to pipeline for table_name in omnibus_tables: df = pd.concat(omnibus_tables[table_name], sort=False) - info(f"adding omnibus table {table_name} {df.shape}") - pipeline.replace_table(table_name, df) + info(state, f"adding omnibus table {table_name} {df.shape}") + state.add_table(table_name, df) - pipeline.add_checkpoint(checkpoint_name) + state.checkpoint.add(checkpoint_name) - pipeline.close_pipeline() + state.checkpoint.close_store() -def setup_injectables_and_logging(injectables, locutor=True): +def setup_injectables_and_logging(injectables, locutor: bool = True) -> workflow.State: """ Setup injectables (passed by parent process) within sub process @@ -728,22 +884,24 @@ def setup_injectables_and_logging(injectables, locutor=True): ------- injects injectables """ + state = workflow.State() + state = state.initialize_filesystem(**injectables) + state.settings = injectables.get("settings", Settings()) # register abm steps and other abm-specific injectables # by default, assume we are running activitysim.abm # other callers (e.g. piopulationsim) will have to arrange to register their own steps and injectables # (presumably) in a custom run_simulation.py instead of using the 'activitysim run' command - if not inject.is_injectable("preload_injectables"): + if not "preload_injectables" in state: # register abm steps and other abm-specific injectables from activitysim import abm # noqa: F401 try: - for k, v in injectables.items(): - inject.add_injectable(k, v) + state.add_injectable(k, v) # re-import extension modules to register injectables - ext = inject.get_injectable("imported_extensions", default=()) + ext = state.get_injectable("imported_extensions", default=()) for e in ext: basepath, extpath = os.path.split(e) if not basepath: @@ -757,30 +915,34 @@ def setup_injectables_and_logging(injectables, locutor=True): finally: del sys.path[0] - inject.add_injectable("is_sub_task", True) - inject.add_injectable("locutor", locutor) + state.add_injectable("is_sub_task", True) + state.add_injectable("locutor", locutor) - config.filter_warnings() + config.filter_warnings(state) process_name = multiprocessing.current_process().name - inject.add_injectable("log_file_prefix", process_name) + state.add_injectable("log_file_prefix", process_name) except Exception as e: exception( + state, f"{type(e).__name__} exception while setting up injectables: {str(e)}", write_to_log_file=False, ) raise e try: - tracing.config_logger() + state.logging.config_logger() except Exception as e: - exception(f"{type(e).__name__} exception while configuring logger: {str(e)}") + exception( + state, f"{type(e).__name__} exception while configuring logger: {str(e)}" + ) raise e + return state -def adjust_chunk_size_for_shared_memory(chunk_size, data_buffers, num_processes): +def adjust_chunk_size_for_shared_memory(chunk_size, data_buffers, num_processes): # even if there is only one subprocess, # we are separate from parent who allocated the shared memory # so we still need to compensate for it @@ -815,7 +977,9 @@ def adjust_chunk_size_for_shared_memory(chunk_size, data_buffers, num_processes) return adjusted_chunk_size -def run_simulation(queue, step_info, resume_after, shared_data_buffer): +def run_simulation( + state: workflow.State, queue, step_info, resume_after, shared_data_buffer +): """ run step models as subtask @@ -844,53 +1008,54 @@ def run_simulation(queue, step_info, resume_after, shared_data_buffer): chunk_size, shared_data_buffer, num_processes ) - inject.add_injectable("data_buffers", shared_data_buffer) - inject.add_injectable("chunk_size", chunk_size) - inject.add_injectable("num_processes", num_processes) + state.add_injectable("data_buffers", shared_data_buffer) + state.add_injectable("chunk_size", chunk_size) + state.add_injectable("num_processes", num_processes) if resume_after: - info(f"resume_after {resume_after}") + info(state, f"resume_after {resume_after}") # if they specified a resume_after model, check to make sure it is checkpointed if ( resume_after != LAST_CHECKPOINT and resume_after - not in pipeline.get_checkpoints()[pipeline.CHECKPOINT_NAME].values + not in state.checkpoint.get_inventory()[CHECKPOINT_NAME].values ): # if not checkpointed, then fall back to last checkpoint - info(f"resume_after checkpoint '{resume_after}' not in pipeline.") + info(state, f"resume_after checkpoint '{resume_after}' not in pipeline.") resume_after = LAST_CHECKPOINT - pipeline.open_pipeline(resume_after) - last_checkpoint = pipeline.last_checkpoint() + state.checkpoint.restore(resume_after) + last_checkpoint = state.checkpoint.last_checkpoint.get(CHECKPOINT_NAME) if last_checkpoint in models: - info(f"Resuming model run list after {last_checkpoint}") + info(state, f"Resuming model run list after {last_checkpoint}") models = models[models.index(last_checkpoint) + 1 :] - assert inject.get_injectable("preload_injectables", None) + assert state.get_injectable("preload_injectables") t0 = tracing.print_elapsed_time() for model in models: - t1 = tracing.print_elapsed_time() try: - pipeline.run_model(model) + state.run.by_name(model) except Exception as e: - warning(f"{type(e).__name__} exception running {model} model: {str(e)}") + warning( + state, f"{type(e).__name__} exception running {model} model: {str(e)}" + ) raise e - tracing.log_runtime(model_name=model, start_time=t1) + state.run.log_runtime(model_name=model, start_time=t1) queue.put({"model": model, "time": time.time() - t1}) tracing.print_elapsed_time("run (%s models)" % len(models), t0) # add checkpoint with final tables even if not intermediate checkpointing checkpoint_name = step_info["name"] - pipeline.add_checkpoint(checkpoint_name) + state.checkpoint.add(checkpoint_name) - pipeline.close_pipeline() + state.checkpoint.close_store() """ @@ -898,7 +1063,9 @@ def run_simulation(queue, step_info, resume_after, shared_data_buffer): """ -def mp_run_simulation(locutor, queue, injectables, step_info, resume_after, **kwargs): +def mp_run_simulation( + locutor: bool, queue, injectables, step_info, resume_after, **kwargs +): """ mp entry point for run_simulation @@ -913,26 +1080,28 @@ def mp_run_simulation(locutor, queue, injectables, step_info, resume_after, **kw shared_data_buffers passed as kwargs to avoid picking dict """ - setup_injectables_and_logging(injectables, locutor=locutor) + state = setup_injectables_and_logging(injectables, locutor=locutor) debug( - f"mp_run_simulation {step_info['name']} locutor={inject.get_injectable('locutor', False)} " + state, + f"mp_run_simulation {step_info['name']} locutor={state.get_injectable('locutor', False)} ", ) try: - if step_info["num_processes"] > 1: pipeline_prefix = multiprocessing.current_process().name logger.debug(f"injecting pipeline_file_prefix '{pipeline_prefix}'") - inject.add_injectable("pipeline_file_prefix", pipeline_prefix) + state.add_injectable("pipeline_file_prefix", pipeline_prefix) shared_data_buffer = kwargs - run_simulation(queue, step_info, resume_after, shared_data_buffer) + run_simulation(state, queue, step_info, resume_after, shared_data_buffer) mem.log_global_hwm() # subprocess except Exception as e: - exception(f"{type(e).__name__} exception caught in mp_run_simulation: {str(e)}") + exception( + state, f"{type(e).__name__} exception caught in mp_run_simulation: {str(e)}" + ) raise e @@ -944,19 +1113,20 @@ def mp_apportion_pipeline(injectables, sub_proc_names, step_info): ---------- injectables : dict injectables from parent - sub_proc_names : list of str + sub_proc_names : list[str] names of the sub processes to apportion step_info : dict step_info for multiprocess_step we are apportioning """ - setup_injectables_and_logging(injectables) + state = setup_injectables_and_logging(injectables) try: - apportion_pipeline(sub_proc_names, step_info) + apportion_pipeline(state, sub_proc_names, step_info) except Exception as e: exception( - f"{type(e).__name__} exception caught in mp_apportion_pipeline: {str(e)}" + state, + f"{type(e).__name__} exception caught in mp_apportion_pipeline: {str(e)}", ) raise e @@ -976,20 +1146,22 @@ def mp_setup_skims(injectables, **kwargs): shared_data_buffers passed as kwargs to avoid picking dict """ - setup_injectables_and_logging(injectables) + state = setup_injectables_and_logging(injectables) - info("mp_setup_skims") + info(state, "mp_setup_skims") try: shared_data_buffer = kwargs - network_los_preload = inject.get_injectable("network_los_preload", None) + network_los_preload = state.get_injectable("network_los_preload", None) if network_los_preload is not None: network_los_preload.load_shared_data(shared_data_buffer) except Exception as e: - exception(f"{type(e).__name__} exception caught in mp_setup_skims: {str(e)}") + exception( + state, f"{type(e).__name__} exception caught in mp_setup_skims: {str(e)}" + ) raise e @@ -1001,19 +1173,20 @@ def mp_coalesce_pipelines(injectables, sub_proc_names, slice_info): ---------- injectables : dict injectables from parent - sub_proc_names : list of str + sub_proc_names : list[str] names of the sub processes to apportion slice_info : dict slice_info from multiprocess_steps """ - setup_injectables_and_logging(injectables) + state = setup_injectables_and_logging(injectables) try: - coalesce_pipelines(sub_proc_names, slice_info) + coalesce_pipelines(state, sub_proc_names, slice_info) except Exception as e: exception( - f"{type(e).__name__} exception caught in coalesce_pipelines: {str(e)}" + state, + f"{type(e).__name__} exception caught in coalesce_pipelines: {str(e)}", ) raise e @@ -1023,7 +1196,7 @@ def mp_coalesce_pipelines(injectables, sub_proc_names, slice_info): """ -def allocate_shared_skim_buffers(): +def allocate_shared_skim_buffers(state: workflow.State): """ This is called by the main process to allocate shared memory buffer to share with subprocs @@ -1035,9 +1208,9 @@ def allocate_shared_skim_buffers(): """ - info("allocate_shared_skim_buffer") + info(state, "allocate_shared_skim_buffer") - network_los = inject.get_injectable("network_los_preload", None) + network_los = state.get_injectable("network_los_preload", None) if network_los is not None: skim_buffers = network_los.allocate_shared_skim_buffers() else: @@ -1046,7 +1219,7 @@ def allocate_shared_skim_buffers(): return skim_buffers -def allocate_shared_shadow_pricing_buffers(): +def allocate_shared_shadow_pricing_buffers(state: workflow.State): """ This is called by the main process to allocate memory buffer to share with subprocs @@ -1055,9 +1228,9 @@ def allocate_shared_shadow_pricing_buffers(): multiprocessing.RawArray """ - info("allocate_shared_shadow_pricing_buffers") + info(state, "allocate_shared_shadow_pricing_buffers") - shadow_pricing_info = inject.get_injectable("shadow_pricing_info", None) + shadow_pricing_info = state.get_injectable("shadow_pricing_info", None) if shadow_pricing_info is not None: from activitysim.abm.tables import shadow_pricing @@ -1071,7 +1244,7 @@ def allocate_shared_shadow_pricing_buffers(): return shadow_pricing_buffers -def allocate_shared_shadow_pricing_buffers_choice(): +def allocate_shared_shadow_pricing_buffers_choice(state): """ This is called by the main process to allocate memory buffer to share with subprocs @@ -1080,9 +1253,9 @@ def allocate_shared_shadow_pricing_buffers_choice(): multiprocessing.RawArray """ - info("allocate_shared_shadow_pricing_buffers_choice") + info(state, "allocate_shared_shadow_pricing_buffers_choice") - shadow_pricing_choice_info = inject.get_injectable( + shadow_pricing_choice_info = state.get_injectable( "shadow_pricing_choice_info", None ) @@ -1090,7 +1263,9 @@ def allocate_shared_shadow_pricing_buffers_choice(): from activitysim.abm.tables import shadow_pricing shadow_pricing_buffers_choice = ( - shadow_pricing.buffers_for_shadow_pricing_choice(shadow_pricing_choice_info) + shadow_pricing.buffers_for_shadow_pricing_choice( + state, shadow_pricing_choice_info + ) ) else: shadow_pricing_buffers_choice = {} @@ -1099,6 +1274,7 @@ def allocate_shared_shadow_pricing_buffers_choice(): def run_sub_simulations( + state: workflow.State, injectables, shared_data_buffers, step_info, @@ -1138,7 +1314,7 @@ def run_sub_simulations( Returns ------- - completed : list of str + completed : list[str] names of sub_processes that completed successfully """ @@ -1149,11 +1325,12 @@ def log_queued_messages(): msg = queue.get(block=False) model_name = msg["model"] info( - f"{process.name} {model_name} : {tracing.format_elapsed_time(msg['time'])}" + state, + f"{process.name} {model_name} : {tracing.format_elapsed_time(msg['time'])}", ) - mem.trace_memory_info(f"{process.name}.{model_name}.completed") + state.trace_memory_info(f"{process.name}.{model_name}.completed") - def check_proc_status(): + def check_proc_status(state: workflow.State): # we want to drop 'completed' breadcrumb when it happens, lest we terminate # if fail_fast flag is set raise for p in procs: @@ -1162,31 +1339,41 @@ def check_proc_status(): elif p.exitcode == 0: # completed successfully if p.name not in completed: - info(f"process {p.name} completed") + info(state, f"process {p.name} completed") completed.add(p.name) - drop_breadcrumb(step_name, "completed", list(completed)) - mem.trace_memory_info(f"{p.name}.completed") + drop_breadcrumb(state, step_name, "completed", list(completed)) + state.trace_memory_info(f"{p.name}.completed") else: # process failed if p.name not in failed: - warning(f"process {p.name} failed with exitcode {p.exitcode}") + warning( + state, f"process {p.name} failed with exitcode {p.exitcode}" + ) failed.add(p.name) - mem.trace_memory_info(f"{p.name}.failed") + state.trace_memory_info(f"{p.name}.failed") if fail_fast: - warning(f"fail_fast terminating remaining running processes") + warning( + state, f"fail_fast terminating remaining running processes" + ) for op in procs: if op.exitcode is None: try: - info(f"terminating process {op.name}") + info(state, f"terminating process {op.name}") op.terminate() except Exception as e: - info(f"error terminating process {op.name}: {e}") + info( + state, + f"error terminating process {op.name}: {e}", + ) raise RuntimeError("Process %s failed" % (p.name,)) step_name = step_info["name"] t0 = tracing.print_elapsed_time() - info(f"run_sub_simulations step {step_name} models resume_after {resume_after}") + info( + state, + f"run_sub_simulations step {step_name} models resume_after {resume_after}", + ) # if resuming and some processes completed successfully in previous run if previously_completed: @@ -1200,7 +1387,8 @@ def check_proc_status(): name for name in process_names if name not in previously_completed ] info( - f"step {step_name}: skipping {len(previously_completed)} previously completed subprocedures" + state, + f"step {step_name}: skipping {len(previously_completed)} previously completed subprocedures", ) else: # if we are resuming after a specific model, then force all subprocesses to run @@ -1217,7 +1405,7 @@ def check_proc_status(): completed = set(previously_completed) failed = set([]) # so we can log process failure first time it happens - drop_breadcrumb(step_name, "completed", list(completed)) + drop_breadcrumb(state, step_name, "completed", list(completed)) for i, process_name in enumerate(process_names): q = multiprocessing.Queue() @@ -1231,11 +1419,11 @@ def check_proc_status(): resume_after=resume_after, ) - # debug(f"create_process {process_name} target={mp_run_simulation}") + # debug(state, f"create_process {process_name} target={mp_run_simulation}") # for k in args: - # debug(f"create_process {process_name} arg {k}={args[k]}") + # debug(state, f"create_process {process_name} arg {k}={args[k]}") # for k in shared_data_buffers: - # debug(f"create_process {process_name} shared_data_buffers {k}={shared_data_buffers[k]}") + # debug(state, f"create_process {process_name} shared_data_buffers {k}={shared_data_buffers[k]}") p = multiprocessing.Process( target=mp_run_simulation, @@ -1255,7 +1443,7 @@ def check_proc_status(): # - start processes for i, p in zip(list(range(num_simulations)), procs): - info(f"start process {p.name}") + info(state, f"start process {p.name}") p.start() """ @@ -1265,8 +1453,8 @@ def check_proc_status(): OSError: [WinError 1450] Insufficient system resources exist to complete the requested service. Judging by the commented-out assert, this (or a related) issue may have been around in some form for a while. - def __setstate__(self, state): - self.size, self.name = self._state = state + def __setstate__(self, state_): + self.size, self.name = self._state = state_ # Reopen existing mmap self.buffer = mmap.mmap(-1, self.size, tagname=self.name) # XXX Temporarily preventing buildbot failures while determining @@ -1276,32 +1464,32 @@ def __setstate__(self, state): if sys.platform == "win32": time.sleep(1) - mem.trace_memory_info(f"{p.name}.start") + state.trace_memory_info(f"{p.name}.start") while multiprocessing.active_children(): # log queued messages as they are received log_queued_messages() # monitor sub process status and drop breadcrumbs or fail_fast as they terminate - check_proc_status() + check_proc_status(state) # monitor memory usage - mem.trace_memory_info( + state.trace_memory_info( "run_sub_simulations.idle", trace_ticks=mem.MEM_PARENT_TRACE_TICK_LEN ) time.sleep(1) # clean up any messages or breadcrumbs that occurred while we slept log_queued_messages() - check_proc_status() + check_proc_status(state) # no need to join() explicitly since multiprocessing.active_children joins completed procs for p in procs: assert p.exitcode is not None if p.exitcode: - error(f"Process %s failed with exitcode {p.exitcode}") + error(state, f"Process %s failed with exitcode {p.exitcode}") assert p.name in failed else: - info(f"Process {p.name} completed with exitcode {p.exitcode}") + info(state, f"Process {p.name} completed with exitcode {p.exitcode}") assert p.name in completed t0 = tracing.print_elapsed_time("run_sub_simulations step %s" % step_name, t0) @@ -1309,7 +1497,7 @@ def __setstate__(self, state): return list(completed) -def run_sub_task(p): +def run_sub_task(state: workflow.State, p): """ Run process p synchroneously, @@ -1319,15 +1507,15 @@ def run_sub_task(p): ---------- p : multiprocessing.Process """ - info(f"#run_model running sub_process {p.name}") + info(state, f"#run_model running sub_process {p.name}") - mem.trace_memory_info(f"{p.name}.start") + state.trace_memory_info(f"{p.name}.start") t0 = tracing.print_elapsed_time() p.start() while multiprocessing.active_children(): - mem.trace_memory_info( + state.trace_memory_info( "run_sub_simulations.idle", trace_ticks=mem.MEM_PARENT_TRACE_TICK_LEN ) time.sleep(1) @@ -1336,16 +1524,16 @@ def run_sub_task(p): # p.join() t0 = tracing.print_elapsed_time("#run_model sub_process %s" % p.name, t0) - # info(f'{p.name}.exitcode = {p.exitcode}') + # info(state, f'{p.name}.exitcode = {p.exitcode}') - mem.trace_memory_info(f"run_model {p.name} completed") + state.trace_memory_info(f"run_model {p.name} completed") if p.exitcode: - error(f"Process {p.name} returned exitcode {p.exitcode}") + error(state, f"Process {p.name} returned exitcode {p.exitcode}") raise RuntimeError("Process %s returned exitcode %s" % (p.name, p.exitcode)) -def drop_breadcrumb(step_name, crumb, value=True): +def drop_breadcrumb(state: workflow.State, step_name, crumb, value=True): """ Add (crumb: value) to specified step in breadcrumbs and flush breadcrumbs to file run can be resumed with resume_after @@ -1366,13 +1554,13 @@ def drop_breadcrumb(step_name, crumb, value=True): ------- """ - breadcrumbs = inject.get_injectable("breadcrumbs", OrderedDict()) + breadcrumbs = state.get_injectable("breadcrumbs", OrderedDict()) breadcrumbs.setdefault(step_name, {"name": step_name})[crumb] = value - inject.add_injectable("breadcrumbs", breadcrumbs) - write_breadcrumbs(breadcrumbs) + state.add_injectable("breadcrumbs", breadcrumbs) + write_breadcrumbs(state, breadcrumbs) -def run_multiprocess(injectables): +def run_multiprocess(state: workflow.State, injectables): """ run the steps in run_list, possibly resuming after checkpoint specified by resume_after @@ -1402,9 +1590,9 @@ def run_multiprocess(injectables): dict of values to inject in sub-processes """ - mem.trace_memory_info("run_multiprocess.start") + state.trace_memory_info("run_multiprocess.start") - run_list = get_run_list() + run_list = get_run_list(state) if not run_list["multiprocess"]: raise RuntimeError( @@ -1415,77 +1603,77 @@ def run_multiprocess(injectables): old_breadcrumbs = run_list.get("breadcrumbs", {}) # raise error if any sub-process fails without waiting for others to complete - fail_fast = setting("fail_fast") - info(f"run_multiprocess fail_fast: {fail_fast}") + fail_fast = state.settings.fail_fast + info(state, f"run_multiprocess fail_fast: {fail_fast}") def skip_phase(phase): skip = old_breadcrumbs and old_breadcrumbs.get(step_name, {}).get(phase, False) if skip: - info(f"Skipping {step_name} {phase}") + info(state, f"Skipping {step_name} {phase}") return skip def find_breadcrumb(crumb, default=None): return old_breadcrumbs.get(step_name, {}).get(crumb, default) - sharrow_enabled = config.setting("sharrow", False) + sharrow_enabled = state.settings.sharrow # - allocate shared data shared_data_buffers = {} - mem.trace_memory_info("allocate_shared_skim_buffer.before") + state.trace_memory_info("allocate_shared_skim_buffer.before") t0 = tracing.print_elapsed_time() if not sharrow_enabled: - shared_data_buffers.update(allocate_shared_skim_buffers()) + shared_data_buffers.update(allocate_shared_skim_buffers(state)) t0 = tracing.print_elapsed_time("allocate shared skim buffer", t0) - mem.trace_memory_info("allocate_shared_skim_buffer.completed") + state.trace_memory_info("allocate_shared_skim_buffer.completed") # combine shared_skim_buffer and shared_shadow_pricing_buffer in shared_data_buffer t0 = tracing.print_elapsed_time() - shared_data_buffers.update(allocate_shared_shadow_pricing_buffers()) + shared_data_buffers.update(allocate_shared_shadow_pricing_buffers(state)) t0 = tracing.print_elapsed_time("allocate shared shadow_pricing buffer", t0) - mem.trace_memory_info("allocate_shared_shadow_pricing_buffers.completed") + state.trace_memory_info("allocate_shared_shadow_pricing_buffers.completed") # combine shared_shadow_pricing_buffers to pool choices across all processes t0 = tracing.print_elapsed_time() - shared_data_buffers.update(allocate_shared_shadow_pricing_buffers_choice()) + shared_data_buffers.update(allocate_shared_shadow_pricing_buffers_choice(state)) t0 = tracing.print_elapsed_time("allocate shared shadow_pricing choice buffer", t0) - mem.trace_memory_info("allocate_shared_shadow_pricing_buffers_choice.completed") + state.trace_memory_info("allocate_shared_shadow_pricing_buffers_choice.completed") + start_time = time.time() if sharrow_enabled: - start_time = time.time() shared_data_buffers["skim_dataset"] = "sh.Dataset:skim_dataset" # Loading skim_dataset must be done in the main process, not a subprocess, # so that this min process can hold on to the shared memory and then cleanly # release it on exit. - from . import flow # make injectable known # noqa: F401 + from . import flow, skim_dataset # make injectables known # noqa: F401 - inject.get_injectable("skim_dataset") + state.get_injectable("skim_dataset") tracing.print_elapsed_time("setup skim_dataset", t0) - mem.trace_memory_info("skim_dataset.completed") + state.trace_memory_info("skim_dataset.completed") # - mp_setup_skims else: # not sharrow_enabled if len(shared_data_buffers) > 0: start_time = time.time() run_sub_task( + state, multiprocessing.Process( target=mp_setup_skims, name="mp_setup_skims", args=(injectables,), kwargs=shared_data_buffers, - ) + ), ) tracing.print_elapsed_time("setup shared_data_buffers", t0) - mem.trace_memory_info("mp_setup_skims.completed") - tracing.log_runtime("mp_setup_skims", start_time=start_time, force=True) + state.trace_memory_info("mp_setup_skims.completed") + state.run.log_runtime("mp_setup_skims", start_time=start_time, force=True) # - for each step in run list for step_info in run_list["multiprocess_steps"]: - step_name = step_info["name"] num_processes = step_info["num_processes"] @@ -1500,16 +1688,17 @@ def find_breadcrumb(crumb, default=None): if not skip_phase("apportion") and num_processes > 1: start_time = time.time() run_sub_task( + state, multiprocessing.Process( target=mp_apportion_pipeline, name="%s_apportion" % step_name, args=(injectables, sub_proc_names, step_info), - ) + ), ) - tracing.log_runtime( + state.run.log_runtime( "%s_apportion" % step_name, start_time=start_time, force=True ) - drop_breadcrumb(step_name, "apportion") + drop_breadcrumb(state, step_name, "apportion") # - run_sub_simulations if not skip_phase("simulate"): @@ -1518,6 +1707,7 @@ def find_breadcrumb(crumb, default=None): previously_completed = find_breadcrumb("completed", default=[]) completed = run_sub_simulations( + state, injectables, shared_data_buffers, step_info, @@ -1532,33 +1722,34 @@ def find_breadcrumb(crumb, default=None): "%s processes failed in step %s" % (num_processes - len(completed), step_name) ) - drop_breadcrumb(step_name, "simulate") + drop_breadcrumb(state, step_name, "simulate") # - mp_coalesce_pipelines if not skip_phase("coalesce") and num_processes > 1: start_time = time.time() run_sub_task( + state, multiprocessing.Process( target=mp_coalesce_pipelines, name="%s_coalesce" % step_name, args=(injectables, sub_proc_names, slice_info), - ) + ), ) - tracing.log_runtime( + state.run.log_runtime( "%s_coalesce" % step_name, start_time=start_time, force=True ) - drop_breadcrumb(step_name, "coalesce") + drop_breadcrumb(state, step_name, "coalesce") # add checkpoint with final tables even if not intermediate checkpointing - if not pipeline.intermediate_checkpoint(): - pipeline.open_pipeline("_") - pipeline.add_checkpoint(pipeline.FINAL_CHECKPOINT_NAME) - pipeline.close_pipeline() + if not state.should_save_checkpoint(): + state.checkpoint.restore(resume_after="_") + state.checkpoint.add(FINAL_CHECKPOINT_NAME) + state.checkpoint.close_store() mem.log_global_hwm() # main process -def get_breadcrumbs(run_list): +def get_breadcrumbs(state: workflow.State, run_list): """ Read, validate, and annotate breadcrumb file from previous run @@ -1590,16 +1781,15 @@ def get_breadcrumbs(run_list): assert resume_after is not None # - read breadcrumbs file from previous run - breadcrumbs = read_breadcrumbs() + breadcrumbs = read_breadcrumbs(state) # - can't resume multiprocess without breadcrumbs file if not breadcrumbs: - error(f"empty breadcrumbs for resume_after '{resume_after}'") + error(state, f"empty breadcrumbs for resume_after '{resume_after}'") raise RuntimeError("empty breadcrumbs for resume_after '%s'" % resume_after) # if resume_after is specified by name if resume_after != LAST_CHECKPOINT: - # breadcrumbs for steps from previous run previous_steps = list(breadcrumbs.keys()) @@ -1616,7 +1806,7 @@ def get_breadcrumbs(run_list): resume_step_name = resume_step["name"] if resume_step_name not in previous_steps: - error(f"resume_after model '{resume_after}' not in breadcrumbs") + error(state, f"resume_after model '{resume_after}' not in breadcrumbs") raise RuntimeError( "resume_after model '%s' not in breadcrumbs" % resume_after ) @@ -1642,7 +1832,7 @@ def get_breadcrumbs(run_list): return breadcrumbs -def get_run_list(): +def get_run_list(state: workflow.State): """ validate and annotate run_list from settings @@ -1691,24 +1881,26 @@ def get_run_list(): validated and annotated run_list """ - models = setting("models", []) - multiprocess_steps = setting("multiprocess_steps", []) + models = state.settings.models + multiprocess_steps = state.settings.multiprocess_steps + if multiprocess_steps is not None: + multiprocess_steps = [i.dict() for i in multiprocess_steps] - resume_after = inject.get_injectable("resume_after", None) or setting( - "resume_after", None + resume_after = ( + state.get_injectable("resume_after", None) or state.settings.resume_after ) - multiprocess = inject.get_injectable("multiprocess", False) or setting( - "multiprocess", False + multiprocess = ( + state.get_injectable("multiprocess", False) or state.settings.multiprocess ) # default settings that can be overridden by settings in individual steps - global_chunk_size = setting("chunk_size", 0) or 0 - default_mp_processes = setting("num_processes", 0) or int( + global_chunk_size = state.settings.chunk_size + default_mp_processes = state.settings.num_processes or int( 1 + multiprocessing.cpu_count() / 2.0 ) if multiprocess and multiprocessing.cpu_count() == 1: - warning("Can't multiprocess because there is only 1 cpu") + warning(state, "Can't multiprocess because there is only 1 cpu") run_list = { "models": models, @@ -1725,7 +1917,6 @@ def get_run_list(): ) if multiprocess: - if not multiprocess_steps: raise RuntimeError( "multiprocess setting is %s but no multiprocess_steps setting" @@ -1758,7 +1949,7 @@ def get_run_list(): step_names.add(name) # - validate num_processes and assign default - num_processes = step.get("num_processes", 0) + num_processes = step.get("num_processes", 0) or 0 if not isinstance(num_processes, int) or num_processes < 0: raise RuntimeError( @@ -1766,14 +1957,18 @@ def get_run_list(): " in multiprocess_steps" % (num_processes, name) ) - if "slice" in step: + if "slice" in step and step["slice"] is not None: if num_processes == 0: - info(f"Setting num_processes = {num_processes} for step {name}") + info( + state, + f"Setting num_processes = {num_processes} for step {name}", + ) num_processes = default_mp_processes if num_processes > multiprocessing.cpu_count(): warning( + state, f"num_processes setting ({num_processes}) " - f"greater than cpu count ({ multiprocessing.cpu_count()})" + f"greater than cpu count ({ multiprocessing.cpu_count()})", ) else: if num_processes == 0: @@ -1864,7 +2059,7 @@ def get_run_list(): # - add resume breadcrumbs if resume_after: try: - breadcrumbs = get_breadcrumbs(run_list) + breadcrumbs = get_breadcrumbs(state, run_list) except IOError: # file does not exist, no resume_after is possible breadcrumbs = None resume_after = None @@ -1883,7 +2078,7 @@ def get_run_list(): # - write run list to output dir # use log_file_path so we use (optional) log subdir and prefix process name - with config.open_log_file("run_list.txt", "w") as f: + with state.filesystem.open_log_file("run_list.txt", "w") as f: print_run_list(run_list, f) return run_list @@ -1938,12 +2133,7 @@ def print_run_list(run_list, output_file=None): print(" ", v, file=output_file) -def breadcrumbs_file_path(): - # return path to breadcrumbs file in output_dir - return config.build_output_file_path("breadcrumbs.yaml") - - -def read_breadcrumbs(): +def read_breadcrumbs(state: workflow.State): """ Read breadcrumbs file from previous run @@ -1954,7 +2144,7 @@ def read_breadcrumbs(): ------- breadcrumbs : OrderedDict """ - file_path = breadcrumbs_file_path() + file_path = state.get_output_file_path("breadcrumbs.yaml") if not os.path.exists(file_path): raise IOError("Could not find saved breadcrumbs file '%s'" % file_path) with open(file_path, "r") as f: @@ -1964,7 +2154,7 @@ def read_breadcrumbs(): return breadcrumbs -def write_breadcrumbs(breadcrumbs): +def write_breadcrumbs(state: workflow.State, breadcrumbs): """ Write breadcrumbs file with execution history of multiprocess run @@ -1983,32 +2173,8 @@ def write_breadcrumbs(breadcrumbs): ---------- breadcrumbs : OrderedDict """ - with open(breadcrumbs_file_path(), "w") as f: + breadcrumbs_file_path = state.get_output_file_path("breadcrumbs.yaml") + with open(breadcrumbs_file_path, "w") as f: # write ordered dict as array breadcrumbs = [step for step in list(breadcrumbs.values())] yaml.dump(breadcrumbs, f) - - -def if_sub_task(if_is, if_isnt): - """ - select one of two values depending whether current process is primary process or subtask - - This is primarily intended for use in yaml files to select between (e.g.) logging levels - so main log file can display only warnings and errors from subtasks - - In yaml file, it can be used like this: - - level: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [WARNING, NOTSET] - - - Parameters - ---------- - if_is : (any type) value to return if process is a subtask - if_isnt : (any type) value to return if process is not a subtask - - Returns - ------- - (any type) (one of parameters if_is or if_isnt) - """ - - return if_is if inject.get_injectable("is_sub_task", False) else if_isnt diff --git a/activitysim/core/pathbuilder.py b/activitysim/core/pathbuilder.py index 1199f19c5..266a99832 100644 --- a/activitysim/core/pathbuilder.py +++ b/activitysim/core/pathbuilder.py @@ -1,5 +1,7 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import warnings from builtins import range @@ -10,14 +12,13 @@ from activitysim.core import ( assign, chunk, - config, expressions, - inject, logit, los, pathbuilder_cache, simulate, tracing, + workflow, ) from activitysim.core.pathbuilder_cache import memo from activitysim.core.util import reindex @@ -36,6 +37,7 @@ def compute_utilities( + state: workflow.State, network_los, model_settings, choosers, @@ -49,8 +51,7 @@ def compute_utilities( """ trace_label = tracing.extend_trace_label(trace_label, "compute_utils") - with chunk.chunk_log(trace_label): - + with chunk.chunk_log(state, trace_label) as chunk_sizer: logger.debug( f"{trace_label} Running compute_utilities with {choosers.shape[0]} choosers" ) @@ -59,7 +60,7 @@ def compute_utilities( locals_dict.update(model_constants) # we don't grok coefficients, but allow them to use constants in spec alt columns - spec = simulate.read_model_spec(file_name=model_settings["SPEC"]) + spec = state.filesystem.read_model_spec(file_name=model_settings["SPEC"]) for c in spec.columns: if c != simulate.SPEC_LABEL_NAME: spec[c] = spec[c].map(lambda s: model_constants.get(s, s)).astype(float) @@ -67,11 +68,11 @@ def compute_utilities( # - run preprocessor to annotate choosers preprocessor_settings = model_settings.get("PREPROCESSOR") if preprocessor_settings: - # don't want to alter caller's dataframe choosers = choosers.copy() expressions.assign_columns( + state, df=choosers, model_settings=preprocessor_settings, locals_dict=locals_dict, @@ -79,24 +80,25 @@ def compute_utilities( ) utilities = simulate.eval_utilities( + state, spec, choosers, locals_d=locals_dict, trace_all_rows=trace, trace_label=trace_label, trace_column_names=trace_column_names, + chunk_sizer=chunk_sizer, ) return utilities -class TransitVirtualPathBuilder(object): +class TransitVirtualPathBuilder: """ Transit virtual path builder for three zone systems """ def __init__(self, network_los): - self.network_los = network_los self.uid_calculator = pathbuilder_cache.TapTapUidCalculator(network_los) @@ -112,7 +114,7 @@ def __init__(self, network_los): def trace_df(self, df, trace_label, extension): assert len(df) > 0 - tracing.trace_df( + self.network_los.state.tracing.trace_df( df, label=tracing.extend_trace_label(trace_label, extension), slicer="NONE", @@ -146,10 +148,9 @@ def units_for_recipe(self, recipe): def compute_maz_tap_utilities( self, recipe, maz_od_df, chooser_attributes, leg, mode, trace_label, trace ): - trace_label = tracing.extend_trace_label(trace_label, f"maz_tap_utils.{leg}") - with chunk.chunk_log(trace_label): + with chunk.chunk_log(self.network_los.state, trace_label) as chunk_sizer: maz_tap_settings = self.network_los.setting( f"TVPB_SETTINGS.{recipe}.maz_tap_settings.{mode}" ) @@ -192,11 +193,11 @@ def compute_maz_tap_utilities( for c in attribute_columns: utilities_df[c] = reindex(chooser_attributes[c], utilities_df["idx"]) - chunk.log_df(trace_label, "utilities_df", utilities_df) + chunk_sizer.log_df(trace_label, "utilities_df", utilities_df) if self.units_for_recipe(recipe) == "utility": - utilities_df[leg] = compute_utilities( + self.network_los.state, self.network_los, maz_tap_settings, utilities_df, @@ -206,21 +207,27 @@ def compute_maz_tap_utilities( trace_column_names=["idx", maz_col, tap_col] if trace else None, ) - chunk.log_df(trace_label, "utilities_df", utilities_df) # annotated + chunk_sizer.log_df( + trace_label, "utilities_df", utilities_df + ) # annotated else: - assignment_spec = assign.read_assignment_spec( - file_name=config.config_file_path(maz_tap_settings["SPEC"]) + file_name=self.network_los.state.filesystem.get_config_file_path( + maz_tap_settings["SPEC"] + ) ) results, _, _ = assign.assign_variables( - assignment_spec, utilities_df, model_constants + self.network_los.state, + assignment_spec, + utilities_df, + model_constants, ) assert len(results.columns == 1) utilities_df[leg] = results - chunk.log_df(trace_label, "utilities_df", utilities_df) + chunk_sizer.log_df(trace_label, "utilities_df", utilities_df) if trace: self.trace_df(utilities_df, trace_label, "utilities_df") @@ -233,7 +240,6 @@ def compute_maz_tap_utilities( def all_transit_paths( self, access_df, egress_df, chooser_attributes, trace_label, trace ): - trace_label = tracing.extend_trace_label(trace_label, "all_transit_paths") # deduped transit_df has one row per chooser for each boarding (btap) and alighting (atap) pair @@ -281,7 +287,7 @@ def compute_tap_tap_utilities( dataframe with 'idx' and 'omaz' columns egress_df: pandas.DataFrame dataframe with 'idx' and 'dmaz' columns - chooser_attributes: dict + chooser_attributes: pandas.DataFrame path_info trace_label: str trace: boolean @@ -295,8 +301,7 @@ def compute_tap_tap_utilities( trace_label = tracing.extend_trace_label(trace_label, "compute_tap_tap_utils") - with chunk.chunk_log(trace_label): - + with chunk.chunk_log(self.network_los.state, trace_label) as chunk_sizer: model_constants = self.network_los.setting( f"TVPB_SETTINGS.{recipe}.CONSTANTS" ) @@ -309,7 +314,7 @@ def compute_tap_tap_utilities( access_df, egress_df, chooser_attributes, trace_label, trace ) # note: transit_df index is arbitrary - chunk.log_df(trace_label, "transit_df", transit_df) + chunk_sizer.log_df(trace_label, "transit_df", transit_df) # FIXME some expressions may want to know access mode - locals_dict = path_info.copy() @@ -320,7 +325,6 @@ def compute_tap_tap_utilities( # deduplicate transit_df to unique_transit_df with memo("#TVPB compute_tap_tap_utilities deduplicate transit_df"): - attribute_segments = self.network_los.setting( "TVPB_SETTINGS.tour_mode_choice.tap_tap_settings.attribute_segments" ) @@ -342,12 +346,12 @@ def compute_tap_tap_utilities( ) unique_transit_df.set_index("uid", inplace=True) - chunk.log_df(trace_label, "unique_transit_df", unique_transit_df) + chunk_sizer.log_df(trace_label, "unique_transit_df", unique_transit_df) transit_df = transit_df[ ["idx", "btap", "atap", "uid"] ] # don't need chooser columns - chunk.log_df(trace_label, "transit_df", transit_df) + chunk_sizer.log_df(trace_label, "transit_df", transit_df) logger.debug( f"#TVPB CACHE compute_tap_tap_utilities dedupe transit_df " @@ -361,6 +365,7 @@ def compute_tap_tap_utilities( with memo("#TVPB compute_tap_tap_utilities compute_utilities"): unique_utilities_df = compute_utilities( + self.network_los.state, self.network_los, tap_tap_settings, choosers=unique_transit_df, @@ -369,8 +374,10 @@ def compute_tap_tap_utilities( trace=trace, trace_column_names=chooser_columns if trace else None, ) - chunk.log_df(trace_label, "unique_utilities_df", unique_utilities_df) - chunk.log_df( + chunk_sizer.log_df( + trace_label, "unique_utilities_df", unique_utilities_df + ) + chunk_sizer.log_df( trace_label, "unique_transit_df", unique_transit_df ) # annotated @@ -384,15 +391,14 @@ def compute_tap_tap_utilities( how="left", ) self.trace_df(omnibus_df, trace_label, "unique_utilities_df") - chunk.log_df(trace_label, "omnibus_df", omnibus_df) + chunk_sizer.log_df(trace_label, "omnibus_df", omnibus_df) del omnibus_df - chunk.log_df(trace_label, "omnibus_df", None) + chunk_sizer.log_df(trace_label, "omnibus_df", None) assert num_unique_transit_rows == len(unique_utilities_df) # errcheck # redupe unique_transit_df back into transit_df with memo("#TVPB compute_tap_tap_utilities redupe transit_df"): - # idx = transit_df.index transit_df = pd.merge( transit_df, unique_utilities_df, left_on="uid", right_index=True @@ -402,7 +408,7 @@ def compute_tap_tap_utilities( # note: left merge on columns does not preserve index, # but transit_df index is arbitrary so no need to restore - chunk.log_df(trace_label, "transit_df", transit_df) + chunk_sizer.log_df(trace_label, "transit_df", transit_df) for c in unique_utilities_df: assert ERR_CHECK and not transit_df[c].isnull().any() @@ -410,9 +416,9 @@ def compute_tap_tap_utilities( if len(unique_transit_df) > 0: # if all rows were cached, then unique_utilities_df is just a ref to cache del unique_utilities_df - chunk.log_df(trace_label, "unique_utilities_df", None) + chunk_sizer.log_df(trace_label, "unique_utilities_df", None) - chunk.log_df(trace_label, "transit_df", None) + chunk_sizer.log_df(trace_label, "transit_df", None) if trace: self.trace_df(transit_df, trace_label, "transit_df") @@ -453,14 +459,13 @@ def lookup_tap_tap_utilities( trace_label = tracing.extend_trace_label(trace_label, "lookup_tap_tap_utils") - with chunk.chunk_log(trace_label): - + with chunk.chunk_log(self.network_los.state, trace_label) as chunk_sizer: with memo("#TVPB CACHE lookup_tap_tap_utilities all_transit_paths"): transit_df = self.all_transit_paths( access_df, egress_df, chooser_attributes, trace_label, trace=False ) # note: transit_df index is arbitrary - chunk.log_df(trace_label, "transit_df", transit_df) + chunk_sizer.log_df(trace_label, "transit_df", transit_df) if TRACE_COMPLEXITY: # diagnostic: log the omaz,dmaz pairs with the greatest number of virtual tap-tap paths @@ -496,7 +501,7 @@ def lookup_tap_tap_utilities( transit_df = transit_df[ ["idx", "btap", "atap"] ] # just needed chooser_columns for uid calculation - chunk.log_df(trace_label, "transit_df add uid index", transit_df) + chunk_sizer.log_df(trace_label, "transit_df add uid index", transit_df) with memo("#TVPB lookup_tap_tap_utilities reindex transit_df"): utilities = self.tap_cache.data @@ -508,7 +513,7 @@ def lookup_tap_tap_utilities( for c in self.uid_calculator.set_names: assert ERR_CHECK and not transit_df[c].isnull().any() - chunk.log_df(trace_label, "transit_df", None) + chunk_sizer.log_df(trace_label, "transit_df", None) return transit_df @@ -522,11 +527,9 @@ def compute_tap_tap_time( trace_label, trace, ): - trace_label = tracing.extend_trace_label(trace_label, "compute_tap_tap_time") - with chunk.chunk_log(trace_label): - + with chunk.chunk_log(self.network_los.state, trace_label) as chunk_sizer: model_constants = self.network_los.setting( f"TVPB_SETTINGS.{recipe}.CONSTANTS" ) @@ -539,7 +542,7 @@ def compute_tap_tap_time( access_df, egress_df, chooser_attributes, trace_label, trace ) # note: transit_df index is arbitrary - chunk.log_df(trace_label, "transit_df", transit_df) + chunk_sizer.log_df(trace_label, "transit_df", transit_df) # some expressions may want to know access mode - locals_dict = path_info.copy() @@ -547,12 +550,13 @@ def compute_tap_tap_time( locals_dict.update(model_constants) assignment_spec = assign.read_assignment_spec( - file_name=config.config_file_path(tap_tap_settings["SPEC"]) + file_name=self.network_los.state.filesystem.get_config_file_path( + tap_tap_settings["SPEC"] + ) ) DEDUPE = True if DEDUPE: - # assign uid for reduping max_atap = transit_df.atap.max() + 1 transit_df["uid"] = transit_df.btap * max_atap + transit_df.atap @@ -564,7 +568,7 @@ def compute_tap_tap_time( ["btap", "atap", "uid"] + chooser_attribute_columns, ] unique_transit_df.set_index("uid", inplace=True) - chunk.log_df(trace_label, "unique_transit_df", unique_transit_df) + chunk_sizer.log_df(trace_label, "unique_transit_df", unique_transit_df) logger.debug( f"#TVPB CACHE deduped transit_df from {len(transit_df)} to {len(unique_transit_df)}" @@ -572,7 +576,10 @@ def compute_tap_tap_time( # assign_variables results, _, _ = assign.assign_variables( - assignment_spec, unique_transit_df, locals_dict + self.network_los.state, + assignment_spec, + unique_transit_df, + locals_dict, ) assert len(results.columns == 1) unique_transit_df["transit"] = results @@ -585,12 +592,12 @@ def compute_tap_tap_time( del transit_df["uid"] del unique_transit_df - chunk.log_df(trace_label, "transit_df", transit_df) - chunk.log_df(trace_label, "unique_transit_df", None) + chunk_sizer.log_df(trace_label, "transit_df", transit_df) + chunk_sizer.log_df(trace_label, "unique_transit_df", None) else: results, _, _ = assign.assign_variables( - assignment_spec, transit_df, locals_dict + self.network_los.state, assignment_spec, transit_df, locals_dict ) assert len(results.columns == 1) transit_df["transit"] = results @@ -603,7 +610,7 @@ def compute_tap_tap_time( transit_df.drop(columns=chooser_attributes.columns, inplace=True) - chunk.log_df(trace_label, "transit_df", None) + chunk_sizer.log_df(trace_label, "transit_df", None) if trace: self.trace_df(transit_df, trace_label, "transit_df") @@ -621,9 +628,7 @@ def compute_tap_tap( trace_label, trace, ): - if self.units_for_recipe(recipe) == "utility": - if not self.tap_cache.is_open: with memo("#TVPB compute_tap_tap tap_cache.open"): self.tap_cache.open() @@ -675,11 +680,9 @@ def best_paths( trace_label, trace=False, ): - trace_label = tracing.extend_trace_label(trace_label, "best_paths") - with chunk.chunk_log(trace_label): - + with chunk.chunk_log(self.network_los.state, trace_label) as chunk_sizer: path_settings = self.network_los.setting( f"TVPB_SETTINGS.{recipe}.path_types.{path_type}" ) @@ -700,7 +703,7 @@ def best_paths( .merge(transit_df, on=["idx", "atap", "btap"], how="inner") ) - chunk.log_df(trace_label, "path_df", path_df) + chunk_sizer.log_df(trace_label, "path_df", path_df) # transit sets are the transit_df non-join columns transit_sets = [ @@ -770,8 +773,9 @@ def build_virtual_path( filter_targets=None, trace=False, override_choices=None, + *, + chunk_sizer, ): - trace_label = tracing.extend_trace_label(trace_label, "build_virtual_path") # Tracing is implemented as a seperate, second call that operates ONLY on filter_targets @@ -832,7 +836,7 @@ def build_virtual_path( "seq": range(len(orig)), } ) - chunk.log_df(trace_label, "maz_od_df", maz_od_df) + chunk_sizer.log_df(trace_label, "maz_od_df", maz_od_df) self.trace_maz_tap(maz_od_df, access_mode, egress_mode) # for location choice, there will be multiple alt dest rows per chooser and duplicate orig.index values @@ -861,7 +865,7 @@ def build_virtual_path( trace_label=trace_label, trace=trace, ) - chunk.log_df(trace_label, "access_df", access_df) + chunk_sizer.log_df(trace_label, "access_df", access_df) with memo("#TVPB build_virtual_path egress_df"): egress_df = self.compute_maz_tap_utilities( @@ -873,7 +877,7 @@ def build_virtual_path( trace_label=trace_label, trace=trace, ) - chunk.log_df(trace_label, "egress_df", egress_df) + chunk_sizer.log_df(trace_label, "egress_df", egress_df) # L200 will drop all rows if all trips are intra-tap. if np.array_equal(access_df["btap"].values, egress_df["atap"].values): @@ -893,7 +897,7 @@ def build_virtual_path( trace_label=trace_label, trace=trace, ) - chunk.log_df(trace_label, "transit_df", transit_df) + chunk_sizer.log_df(trace_label, "transit_df", transit_df) # Cannot trace if df is empty. Prob happened at L200 if len(transit_df) == 0: @@ -910,24 +914,23 @@ def build_virtual_path( trace_label, trace, ) - chunk.log_df(trace_label, "path_df", path_df) + chunk_sizer.log_df(trace_label, "path_df", path_df) # now that we have created path_df, we are done with the dataframes for the separate legs del access_df - chunk.log_df(trace_label, "access_df", None) + chunk_sizer.log_df(trace_label, "access_df", None) del egress_df - chunk.log_df(trace_label, "egress_df", None) + chunk_sizer.log_df(trace_label, "egress_df", None) del transit_df - chunk.log_df(trace_label, "transit_df", None) + chunk_sizer.log_df(trace_label, "transit_df", None) if units == "utility": - # logsums with memo("#TVPB build_virtual_path logsums"): # one row per seq with utilities in columns # path_num 0-based to aligh with logit.make_choices 0-based choice indexes path_df["path_num"] = path_df.groupby("seq").cumcount() - chunk.log_df(trace_label, "path_df", path_df) + chunk_sizer.log_df(trace_label, "path_df", path_df) utilities_df = ( path_df[["seq", "path_num", units]] @@ -946,7 +949,7 @@ def build_virtual_path( UNAVAILABLE ) # set utilities for missing paths to UNAVAILABLE - chunk.log_df(trace_label, "utilities_df", utilities_df) + chunk_sizer.log_df(trace_label, "utilities_df", utilities_df) with warnings.catch_warnings(record=True) as w: # Cause all warnings to always be triggered. @@ -975,21 +978,25 @@ def build_virtual_path( np.nansum(np.exp(utilities_df.values), axis=1) == 0 ] zero_utilities_df.to_csv( - config.output_file_path("warning_utilities_df.csv"), + self.network_los.state.get_output_file_path( + "warning_utilities_df.csv" + ), index=True, ) if want_choices: - # orig index to identify appropriate random number channel to use making choices utilities_df.index = orig.index with memo("#TVPB build_virtual_path make_choices"): - probs = logit.utils_to_probs( - utilities_df, allow_zero_probs=True, trace_label=trace_label + self.network_los.state, + utilities_df, + allow_zero_probs=True, + trace_label=trace_label, + overflow_protection=False, ) - chunk.log_df(trace_label, "probs", probs) + chunk_sizer.log_df(trace_label, "probs", probs) if trace: choices = override_choices @@ -1000,17 +1007,19 @@ def build_virtual_path( probs["choices"] = choices self.trace_df(probs, trace_label, "probs") else: - choices, rands = logit.make_choices( - probs, allow_bad_probs=True, trace_label=trace_label + self.network_los.state, + probs, + allow_bad_probs=True, + trace_label=trace_label, ) - chunk.log_df(trace_label, "rands", rands) + chunk_sizer.log_df(trace_label, "rands", rands) del rands - chunk.log_df(trace_label, "rands", None) + chunk_sizer.log_df(trace_label, "rands", None) del probs - chunk.log_df(trace_label, "probs", None) + chunk_sizer.log_df(trace_label, "probs", None) # we need to get path_set, btap, atap from path_df row with same seq and path_num # drop seq join column, but keep path_num of choice to override_choices when tracing @@ -1031,19 +1040,18 @@ def build_virtual_path( logsum_df["logsum"] = logsums else: - assert len(logsums) == len(orig) logsum_df = pd.DataFrame({"logsum": logsums}, index=orig.index) - chunk.log_df(trace_label, "logsum_df", logsum_df) + chunk_sizer.log_df(trace_label, "logsum_df", logsum_df) del utilities_df - chunk.log_df(trace_label, "utilities_df", None) + chunk_sizer.log_df(trace_label, "utilities_df", None) if trace: self.trace_df(logsum_df, trace_label, "logsum_df") - chunk.log_df(trace_label, "logsum_df", logsum_df) + chunk_sizer.log_df(trace_label, "logsum_df", logsum_df) results = logsum_df else: @@ -1055,12 +1063,12 @@ def build_virtual_path( # zero-fill rows for O-D pairs where no best path exists because there was no tap-tap transit availability results = reindex(results, maz_od_df.idx).fillna(0.0) - chunk.log_df(trace_label, "results", results) + chunk_sizer.log_df(trace_label, "results", results) assert len(results) == len(orig) del path_df - chunk.log_df(trace_label, "path_df", None) + chunk_sizer.log_df(trace_label, "path_df", None) # diagnostic # maz_od_df['DIST'] = self.network_los.get_default_skim_dict().get('DIST').get(maz_od_df.omaz, maz_od_df.dmaz) @@ -1080,13 +1088,11 @@ def get_tvpb_logsum( recipe="tour_mode_choice", trace_label=None, ): - # assume they have given us a more specific name (since there may be more than one active wrapper) trace_label = trace_label or "get_tvpb_logsum" trace_label = tracing.extend_trace_label(trace_label, path_type) - with chunk.chunk_log(trace_label): - + with chunk.chunk_log(self.network_los.state, trace_label) as chunk_sizer: logsum_df = self.build_virtual_path( recipe, path_type, @@ -1096,14 +1102,15 @@ def get_tvpb_logsum( demographic_segment, want_choices=want_choices, trace_label=trace_label, + chunk_sizer=chunk_sizer, ) - trace_hh_id = inject.get_injectable("trace_hh_id", None) + trace_hh_id = self.network_los.state.settings.trace_hh_id if (all(logsum_df["logsum"] == UNAVAILABLE)) or (len(logsum_df) == 0): trace_hh_id = False if trace_hh_id: - filter_targets = tracing.trace_targets(orig) + filter_targets = self.network_los.state.tracing.trace_targets(orig) # choices from preceding run (because random numbers) override_choices = logsum_df["path_num"] if want_choices else None if filter_targets.any(): @@ -1119,19 +1126,19 @@ def get_tvpb_logsum( trace_label=trace_label, filter_targets=filter_targets, trace=True, + chunk_sizer=chunk_sizer, ) return logsum_df def get_tvpb_best_transit_time(self, orig, dest, tod): - # FIXME lots of pathological knowledge here as we are only called by accessibility directly from expressions trace_label = tracing.extend_trace_label("accessibility.tvpb_best_time", tod) recipe = "accessibility" path_type = "WTW" - with chunk.chunk_log(trace_label): + with chunk.chunk_log(self.network_los.state, trace_label) as chunk_sizer: result = self.build_virtual_path( recipe, path_type, @@ -1141,9 +1148,10 @@ def get_tvpb_best_transit_time(self, orig, dest, tod): demographic_segment=None, want_choices=False, trace_label=trace_label, + chunk_sizer=chunk_sizer, ) - trace_od = inject.get_injectable("trace_od", None) + trace_od = self.network_los.state.get_injectable("trace_od", None) if trace_od: filter_targets = (orig == trace_od[0]) & (dest == trace_od[1]) if filter_targets.any(): @@ -1158,6 +1166,7 @@ def get_tvpb_best_transit_time(self, orig, dest, tod): trace_label=trace_label, filter_targets=filter_targets, trace=True, + chunk_sizer=chunk_sizer, ) return result @@ -1173,7 +1182,6 @@ def wrap_logsum( trace_label=None, tag=None, ): - return TransitVirtualPathLogsumWrapper( self, orig_key, @@ -1204,7 +1212,6 @@ def __init__( trace_label, tag, ): - self.tvpb = pathbuilder assert hasattr(pathbuilder, "get_tvpb_logsum") @@ -1259,7 +1266,7 @@ def __getitem__(self, path_type): Parameters ---------- - key : hashable + path_type : hashable The key (identifier) for this skim object Returns @@ -1309,7 +1316,6 @@ def __getitem__(self, path_type): ) if (self.cache_choices) and (not all(logsum_df["logsum"] == UNAVAILABLE)): - # not tested on duplicate index because not currently needed # caching strategy does not require unique indexes but care would need to be taken to maintain alignment assert not orig.index.duplicated().any() diff --git a/activitysim/core/pathbuilder_cache.py b/activitysim/core/pathbuilder_cache.py index 5153cf160..02f8db8dd 100644 --- a/activitysim/core/pathbuilder_cache.py +++ b/activitysim/core/pathbuilder_cache.py @@ -1,5 +1,7 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import itertools import logging import multiprocessing @@ -11,7 +13,7 @@ import pandas as pd import psutil -from activitysim.core import config, inject, simulate, util +from activitysim.core import config, los, util logger = logging.getLogger(__name__) @@ -67,7 +69,7 @@ class TVPBCache(object): Transit virtual path builder cache for three zone systems """ - def __init__(self, network_los, uid_calculator, cache_tag): + def __init__(self, network_los: "los.Network_LOS", uid_calculator, cache_tag): # lightweight until opened @@ -83,12 +85,18 @@ def __init__(self, network_los, uid_calculator, cache_tag): @property def cache_path(self): file_type = "mmap" - return os.path.join(config.get_cache_dir(), f"{self.cache_tag}.{file_type}") + return os.path.join( + self.network_los.state.filesystem.get_cache_dir(), + f"{self.cache_tag}.{file_type}", + ) @property def csv_trace_path(self): file_type = "csv" - return os.path.join(config.get_cache_dir(), f"{self.cache_tag}.{file_type}") + return os.path.join( + self.network_los.state.filesystem.get_cache_dir(), + f"{self.cache_tag}.{file_type}", + ) def cleanup(self): """ @@ -105,7 +113,8 @@ def cleanup(self): while True: n += 1 candidate = os.path.join( - config.get_cache_dir(), f"{self.cache_tag}.{n}.mmap" + self.network_los.state.filesystem.get_cache_dir(), + f"{self.cache_tag}.{n}.mmap", ) if not os.path.isfile(candidate): self.cache_tag = f"{self.cache_tag}.{n}" @@ -307,7 +316,7 @@ def get_data_and_lock_from_buffers(self): ------- either multiprocessing.Array and lock or multiprocessing.RawArray and None according to RAWARRAY """ - data_buffers = inject.get_injectable("data_buffers", None) + data_buffers = self.network_los.state.get_injectable("data_buffers", None) assert self.cache_tag in data_buffers # internal error logger.debug(f"TVPBCache.get_data_and_lock_from_buffers") data_buffer = data_buffers[self.cache_tag] @@ -321,7 +330,7 @@ def get_data_and_lock_from_buffers(self): return data, lock -class TapTapUidCalculator(object): +class TapTapUidCalculator: """ Transit virtual path builder TAP to TAP unique ID calculator for three zone systems """ @@ -362,7 +371,11 @@ def __init__(self, network_los): spec_name = self.network_los.setting( f"TVPB_SETTINGS.tour_mode_choice.tap_tap_settings.SPEC" ) - self.set_names = list(simulate.read_model_spec(file_name=spec_name).columns) + self.set_names = list( + self.network_los.state.filesystem.read_model_spec( + file_name=spec_name + ).columns + ) @property def fully_populated_shape(self): @@ -481,7 +494,7 @@ def each_scalar_attribute_combination(self): yield scalar_attributes - def scalar_attribute_combinations(self): + def scalar_attribute_combinations(self) -> pd.DataFrame: attribute_names = list(self.segmentation.keys()) attribute_tuples = self.attribute_combination_tuples x = [list(t) for t in attribute_tuples] diff --git a/activitysim/core/pipeline.py b/activitysim/core/pipeline.py deleted file mode 100644 index fe3ceca45..000000000 --- a/activitysim/core/pipeline.py +++ /dev/null @@ -1,978 +0,0 @@ -# ActivitySim -# See full license in LICENSE.txt. -import datetime as dt -import logging -import os -from builtins import map, next, object - -import pandas as pd -from orca import orca - -from . import config, inject, mem, random, tracing, util -from .tracing import print_elapsed_time - -logger = logging.getLogger(__name__) - -# name of the checkpoint dict keys -# (which are also columns in the checkpoints dataframe stored in hte pipeline store) -TIMESTAMP = "timestamp" -CHECKPOINT_NAME = "checkpoint_name" -NON_TABLE_COLUMNS = [CHECKPOINT_NAME, TIMESTAMP] - -# name used for storing the checkpoints dataframe to the pipeline store -CHECKPOINT_TABLE_NAME = "checkpoints" - -# name of the first step/checkpoint created when the pipeline is started -INITIAL_CHECKPOINT_NAME = "init" -FINAL_CHECKPOINT_NAME = "final" - -# special value for resume_after meaning last checkpoint -LAST_CHECKPOINT = "_" - -# single character prefix for run_list model name to indicate that no checkpoint should be saved -NO_CHECKPOINT_PREFIX = "_" - - -class Pipeline(object): - def __init__(self): - self.init_state() - - def init_state(self): - - # most recent checkpoint - self.last_checkpoint = {} - - # array of checkpoint dicts - self.checkpoints = [] - - self.replaced_tables = {} - - self._rng = random.Random() - - self.open_files = {} - - self.pipeline_store = None - - self.is_open = False - - tracing.initialize_traceable_tables() - - def rng(self): - - return self._rng - - -_PIPELINE = Pipeline() - - -def is_open(): - return _PIPELINE.is_open - - -def is_readonly(): - if is_open(): - store = get_pipeline_store() - if store and store._mode == "r": - return True - return False - - -def pipeline_table_key(table_name, checkpoint_name): - if checkpoint_name: - key = f"{table_name}/{checkpoint_name}" - else: - key = f"/{table_name}" - return key - - -def close_on_exit(file, name): - assert name not in _PIPELINE.open_files - _PIPELINE.open_files[name] = file - - -def close_open_files(): - for name, file in _PIPELINE.open_files.items(): - print("Closing %s" % name) - file.close() - _PIPELINE.open_files.clear() - - -def open_pipeline_store(overwrite=False, mode="a"): - """ - Open the pipeline checkpoint store - - Parameters - ---------- - overwrite : bool - delete file before opening (unless resuming) - mode : {'a', 'w', 'r', 'r+'}, default 'a' - ``'r'`` - Read-only; no data can be modified. - ``'w'`` - Write; a new file is created (an existing file with the same - name would be deleted). - ``'a'`` - Append; an existing file is opened for reading and writing, - and if the file does not exist it is created. - ``'r+'`` - It is similar to ``'a'``, but the file must already exist. - """ - - if _PIPELINE.pipeline_store is not None: - raise RuntimeError("Pipeline store is already open!") - - pipeline_file_path = config.pipeline_file_path( - inject.get_injectable("pipeline_file_name") - ) - - if overwrite: - try: - if os.path.isfile(pipeline_file_path): - logger.debug("removing pipeline store: %s" % pipeline_file_path) - os.unlink(pipeline_file_path) - except Exception as e: - print(e) - logger.warning("Error removing %s: %s" % (pipeline_file_path, e)) - - _PIPELINE.pipeline_store = pd.HDFStore(pipeline_file_path, mode=mode) - - logger.debug(f"opened pipeline_store {pipeline_file_path}") - - -def get_pipeline_store(): - """ - Return the open pipeline hdf5 checkpoint store or return None if it not been opened - """ - return _PIPELINE.pipeline_store - - -def get_rn_generator(): - """ - Return the singleton random number object - - Returns - ------- - activitysim.random.Random - """ - return _PIPELINE.rng() - - -def read_df(table_name, checkpoint_name=None): - """ - Read a pandas dataframe from the pipeline store. - - We store multiple versions of all simulation tables, for every checkpoint in which they change, - so we need to know both the table_name and the checkpoint_name of hte desired table. - - The only exception is the checkpoints dataframe, which just has a table_name - - An error will be raised by HDFStore if the table is not found - - Parameters - ---------- - table_name : str - checkpoint_name : str - - Returns - ------- - df : pandas.DataFrame - the dataframe read from the store - - """ - - store = get_pipeline_store() - df = store[pipeline_table_key(table_name, checkpoint_name)] - - return df - - -def write_df(df, table_name, checkpoint_name=None): - """ - Write a pandas dataframe to the pipeline store. - - We store multiple versions of all simulation tables, for every checkpoint in which they change, - so we need to know both the table_name and the checkpoint_name to label the saved table - - The only exception is the checkpoints dataframe, which just has a table_name - - Parameters - ---------- - df : pandas.DataFrame - dataframe to store - table_name : str - also conventionally the injected table name - checkpoint_name : str - the checkpoint at which the table was created/modified - """ - - # coerce column names to str as unicode names will cause PyTables to pickle them - df.columns = df.columns.astype(str) - - store = get_pipeline_store() - - store[pipeline_table_key(table_name, checkpoint_name)] = df - - store.flush() - - -def rewrap(table_name, df=None): - """ - Add or replace an orca registered table as a unitary DataFrame-backed DataFrameWrapper table - - if df is None, then get the dataframe from orca (table_name should be registered, or - an error will be thrown) which may involve evaluating added columns, etc. - - If the orca table already exists, deregister it along with any associated columns before - re-registering it. - - The net result is that the dataframe is a registered orca DataFrameWrapper table with no - computed or added columns. - - Parameters - ---------- - table_name - df - - Returns - ------- - the underlying df of the rewrapped table - """ - - logger.debug("rewrap table %s inplace=%s" % (table_name, (df is None))) - - if orca.is_table(table_name): - - if df is None: - # logger.debug("rewrap - orca.get_table(%s)" % (table_name,)) - t = orca.get_table(table_name) - df = t.to_frame() - else: - # logger.debug("rewrap - orca.get_raw_table(%s)" % (table_name,)) - # don't trigger function call of TableFuncWrapper - t = orca.get_raw_table(table_name) - - t.clear_cached() - - for column_name in orca.list_columns_for_table(table_name): - # logger.debug("pop %s.%s: %s" % (table_name, column_name, t.column_type(column_name))) - # fixme - orca._COLUMNS.pop((table_name, column_name), None) - - # remove from orca's table list - orca._TABLES.pop(table_name, None) - - assert df is not None - - orca.add_table(table_name, df) - - return df - - -def add_checkpoint(checkpoint_name): - """ - Create a new checkpoint with specified name, write all data required to restore the simulation - to its current state. - - Detect any changed tables , re-wrap them and write the current version to the pipeline store. - Write the current state of the random number generator. - - Parameters - ---------- - checkpoint_name : str - """ - timestamp = dt.datetime.now() - - logger.debug("add_checkpoint %s timestamp %s" % (checkpoint_name, timestamp)) - - for table_name in registered_tables(): - - # if we have not already checkpointed it or it has changed - # FIXME - this won't detect if the orca table was modified - if len(orca.list_columns_for_table(table_name)): - # rewrap the changed orca table as a unitary DataFrame-backed DataFrameWrapper table - df = rewrap(table_name) - elif ( - table_name not in _PIPELINE.last_checkpoint - or table_name in _PIPELINE.replaced_tables - ): - df = orca.get_table(table_name).to_frame() - else: - continue - - logger.debug( - "add_checkpoint '%s' table '%s' %s" - % (checkpoint_name, table_name, util.df_size(df)) - ) - write_df(df, table_name, checkpoint_name) - - # remember which checkpoint it was last written - _PIPELINE.last_checkpoint[table_name] = checkpoint_name - - _PIPELINE.replaced_tables.clear() - - _PIPELINE.last_checkpoint[CHECKPOINT_NAME] = checkpoint_name - _PIPELINE.last_checkpoint[TIMESTAMP] = timestamp - - # append to the array of checkpoint history - _PIPELINE.checkpoints.append(_PIPELINE.last_checkpoint.copy()) - - # create a pandas dataframe of the checkpoint history, one row per checkpoint - checkpoints = pd.DataFrame(_PIPELINE.checkpoints) - - # convert empty values to str so PyTables doesn't pickle object types - for c in checkpoints.columns: - checkpoints[c] = checkpoints[c].fillna("") - - # write it to the store, overwriting any previous version (no way to simply extend) - write_df(checkpoints, CHECKPOINT_TABLE_NAME) - - -def registered_tables(): - """ - Return a list of the names of all currently registered dataframe tables - """ - return [name for name in orca.list_tables() if orca.table_type(name) == "dataframe"] - - -def checkpointed_tables(): - """ - Return a list of the names of all checkpointed tables - """ - - return [ - name - for name, checkpoint_name in _PIPELINE.last_checkpoint.items() - if checkpoint_name and name not in NON_TABLE_COLUMNS - ] - - -def load_checkpoint(checkpoint_name): - """ - Load dataframes and restore random number channel state from pipeline hdf5 file. - This restores the pipeline state that existed at the specified checkpoint in a prior simulation. - This allows us to resume the simulation after the specified checkpoint - - Parameters - ---------- - checkpoint_name : str - model_name of checkpoint to load (resume_after argument to open_pipeline) - """ - - logger.info("load_checkpoint %s" % (checkpoint_name)) - - checkpoints = read_df(CHECKPOINT_TABLE_NAME) - - if checkpoint_name == LAST_CHECKPOINT: - checkpoint_name = checkpoints[CHECKPOINT_NAME].iloc[-1] - logger.info("loading checkpoint '%s'" % checkpoint_name) - - try: - # truncate rows after target checkpoint - i = checkpoints[checkpoints[CHECKPOINT_NAME] == checkpoint_name].index[0] - checkpoints = checkpoints.loc[:i] - - # if the store is not open in read-only mode, - # write it to the store to ensure so any subsequent checkpoints are forgotten - if not is_readonly(): - write_df(checkpoints, CHECKPOINT_TABLE_NAME) - - except IndexError: - msg = "Couldn't find checkpoint '%s' in checkpoints" % (checkpoint_name,) - print(checkpoints[CHECKPOINT_NAME]) - logger.error(msg) - raise RuntimeError(msg) - - # convert pandas dataframe back to array of checkpoint dicts - checkpoints = checkpoints.to_dict(orient="records") - - # drop tables with empty names - for checkpoint in checkpoints: - for key in list(checkpoint.keys()): - if key not in NON_TABLE_COLUMNS and not checkpoint[key]: - del checkpoint[key] - - # patch _CHECKPOINTS array of dicts - _PIPELINE.checkpoints = checkpoints - - # patch _CHECKPOINTS dict with latest checkpoint info - _PIPELINE.last_checkpoint.clear() - _PIPELINE.last_checkpoint.update(_PIPELINE.checkpoints[-1]) - - logger.info( - "load_checkpoint %s timestamp %s" - % (checkpoint_name, _PIPELINE.last_checkpoint["timestamp"]) - ) - - tables = checkpointed_tables() - - loaded_tables = {} - for table_name in tables: - # read dataframe from pipeline store - df = read_df(table_name, checkpoint_name=_PIPELINE.last_checkpoint[table_name]) - logger.info("load_checkpoint table %s %s" % (table_name, df.shape)) - # register it as an orca table - rewrap(table_name, df) - loaded_tables[table_name] = df - if table_name == "land_use" and "_original_zone_id" in df.columns: - # The presence of _original_zone_id indicates this table index was - # decoded to zero-based, so we need to disable offset - # processing for legacy skim access. - # TODO: this "magic" column name should be replaced with a mechanism - # to write and recover particular settings from the pipeline - # store, but we don't have that mechanism yet - config.override_setting("offset_preprocessing", True) - - # register for tracing in order that tracing.register_traceable_table wants us to register them - traceable_tables = inject.get_injectable("traceable_tables", []) - - for table_name in traceable_tables: - if table_name in loaded_tables: - tracing.register_traceable_table(table_name, loaded_tables[table_name]) - - # add tables of known rng channels - rng_channels = inject.get_injectable("rng_channels", []) - if rng_channels: - logger.debug("loading random channels %s" % rng_channels) - for table_name in rng_channels: - if table_name in loaded_tables: - logger.debug("adding channel %s" % (table_name,)) - _PIPELINE.rng().add_channel(table_name, loaded_tables[table_name]) - - -def split_arg(s, sep, default=""): - """ - split str s in two at first sep, returning empty string as second result if no sep - """ - r = s.split(sep, 2) - r = list(map(str.strip, r)) - - arg = r[0] - - if len(r) == 1: - val = default - else: - val = r[1] - val = {"true": True, "false": False}.get(val.lower(), val) - - return arg, val - - -def run_model(model_name): - """ - Run the specified model and add checkpoint for model_name - - Since we use model_name as checkpoint name, the same model may not be run more than once. - - Parameters - ---------- - model_name : str - model_name is assumed to be the name of a registered orca step - """ - - if not is_open(): - raise RuntimeError("Pipeline not initialized! Did you call open_pipeline?") - - # can't run same model more than once - if model_name in [ - checkpoint[CHECKPOINT_NAME] for checkpoint in _PIPELINE.checkpoints - ]: - raise RuntimeError("Cannot run model '%s' more than once" % model_name) - - _PIPELINE.rng().begin_step(model_name) - - # check for args - if "." in model_name: - step_name, arg_string = model_name.split(".", 1) - args = dict( - (k, v) - for k, v in ( - split_arg(item, "=", default=True) for item in arg_string.split(";") - ) - ) - else: - step_name = model_name - args = {} - - # check for no_checkpoint prefix - if step_name[0] == NO_CHECKPOINT_PREFIX: - step_name = step_name[1:] - checkpoint = False - else: - checkpoint = intermediate_checkpoint(model_name) - - inject.set_step_args(args) - - mem.trace_memory_info(f"pipeline.run_model {model_name} start") - - t0 = print_elapsed_time() - logger.info(f"#run_model running step {step_name}") - - instrument = config.setting("instrument", None) - if instrument is not None: - try: - from pyinstrument import Profiler - except ImportError: - instrument = False - if isinstance(instrument, (list, set, tuple)): - if step_name not in instrument: - instrument = False - else: - instrument = True - - if instrument: - with Profiler() as profiler: - orca.run([step_name]) - out_file = config.profiling_file_path(f"{step_name}.html") - with open(out_file, "wt") as f: - f.write(profiler.output_html()) - else: - orca.run([step_name]) - - t0 = print_elapsed_time( - "#run_model completed step '%s'" % model_name, t0, debug=True - ) - mem.trace_memory_info(f"pipeline.run_model {model_name} finished") - - inject.set_step_args(None) - - _PIPELINE.rng().end_step(model_name) - if checkpoint: - add_checkpoint(model_name) - else: - logger.info("##### skipping %s checkpoint for %s" % (step_name, model_name)) - - -def open_pipeline(resume_after=None, mode="a"): - """ - Start pipeline, either for a new run or, if resume_after, loading checkpoint from pipeline. - - If resume_after, then we expect the pipeline hdf5 file to exist and contain - checkpoints from a previous run, including a checkpoint with name specified in resume_after - - Parameters - ---------- - resume_after : str or None - name of checkpoint to load from pipeline store - mode : {'a', 'w', 'r', 'r+'}, default 'a' - same as for typical opening of H5Store. Ignored unless resume_after - is not None. This is here to allow read-only pipeline for benchmarking. - """ - - if is_open(): - raise RuntimeError("Pipeline is already open!") - - _PIPELINE.init_state() - _PIPELINE.is_open = True - - get_rn_generator().set_base_seed(inject.get_injectable("rng_base_seed", 0)) - - if resume_after: - # open existing pipeline - logger.debug("open_pipeline - open existing pipeline") - open_pipeline_store(overwrite=False, mode=mode) - try: - load_checkpoint(resume_after) - except KeyError as err: - if "checkpoints" in err.args[0]: - # no checkpoints initialized, fall back to restart - _PIPELINE.last_checkpoint[CHECKPOINT_NAME] = INITIAL_CHECKPOINT_NAME - add_checkpoint(INITIAL_CHECKPOINT_NAME) - else: - raise - else: - # open new, empty pipeline - logger.debug("open_pipeline - new, empty pipeline") - open_pipeline_store(overwrite=True) - # - not sure why I thought we needed this? - # could have exogenous tables or prng instantiation under some circumstance?? - _PIPELINE.last_checkpoint[CHECKPOINT_NAME] = INITIAL_CHECKPOINT_NAME - # empty table, in case they have turned off all checkpointing - add_checkpoint(INITIAL_CHECKPOINT_NAME) - - logger.debug("open_pipeline complete") - - -def last_checkpoint(): - """ - - Returns - ------- - last_checkpoint: str - name of last checkpoint - """ - - assert is_open(), f"Pipeline is not open." - - return _PIPELINE.last_checkpoint[CHECKPOINT_NAME] - - -def close_pipeline(): - """ - Close any known open files - """ - - assert is_open(), f"Pipeline is not open." - - close_open_files() - - _PIPELINE.pipeline_store.close() - - _PIPELINE.init_state() - - logger.debug("close_pipeline") - - -def intermediate_checkpoint(checkpoint_name=None): - - checkpoints = config.setting("checkpoints", True) - - if checkpoints is True or checkpoints is False: - return checkpoints - - assert isinstance( - checkpoints, list - ), f"setting 'checkpoints'' should be True or False or a list" - - return checkpoint_name in checkpoints - - -def run(models, resume_after=None, memory_sidecar_process=None): - """ - run the specified list of models, optionally loading checkpoint and resuming after specified - checkpoint. - - Since we use model_name as checkpoint name, the same model may not be run more than once. - - If resume_after checkpoint is specified and a model with that name appears in the models list, - then we only run the models after that point in the list. This allows the user always to pass - the same list of models, but specify a resume_after point if desired. - - Parameters - ---------- - models : [str] - list of model_names - resume_after : str or None - model_name of checkpoint to load checkpoint and AFTER WHICH to resume model run - memory_sidecar_process : MemorySidecar, optional - Subprocess that monitors memory usage - - returns: - nothing, but with pipeline open - """ - - t0 = print_elapsed_time() - - open_pipeline(resume_after) - t0 = print_elapsed_time("open_pipeline", t0) - - if resume_after == LAST_CHECKPOINT: - resume_after = _PIPELINE.last_checkpoint[CHECKPOINT_NAME] - - if resume_after: - logger.info("resume_after %s" % resume_after) - if resume_after in models: - models = models[models.index(resume_after) + 1 :] - - mem.trace_memory_info("pipeline.run before preload_injectables") - - # preload any bulky injectables (e.g. skims) not in pipeline - if inject.get_injectable("preload_injectables", None): - if memory_sidecar_process: - memory_sidecar_process.set_event("preload_injectables") - t0 = print_elapsed_time("preload_injectables", t0) - - mem.trace_memory_info("pipeline.run after preload_injectables") - - t0 = print_elapsed_time() - for model in models: - if memory_sidecar_process: - memory_sidecar_process.set_event(model) - t1 = print_elapsed_time() - run_model(model) - mem.trace_memory_info(f"pipeline.run after {model}") - - tracing.log_runtime(model_name=model, start_time=t1) - - if memory_sidecar_process: - memory_sidecar_process.set_event("finalizing") - - # add checkpoint with final tables even if not intermediate checkpointing - if not intermediate_checkpoint(): - add_checkpoint(FINAL_CHECKPOINT_NAME) - - mem.trace_memory_info("pipeline.run after run_models") - - t0 = print_elapsed_time("run_model (%s models)" % len(models), t0) - - # don't close the pipeline, as the user may want to read intermediate results from the store - - -def get_table(table_name, checkpoint_name=None): - """ - Return pandas dataframe corresponding to table_name - - if checkpoint_name is None, return the current (most recent) version of the table. - The table can be a checkpointed table or any registered orca table (e.g. function table) - - if checkpoint_name is specified, return table as it was at that checkpoint - (the most recently checkpointed version of the table at or before checkpoint_name) - - Parameters - ---------- - table_name : str - checkpoint_name : str or None - - Returns - ------- - df : pandas.DataFrame - """ - - assert is_open(), f"Pipeline is not open." - - # orca table not in checkpoints (e.g. a merged table) - if table_name not in _PIPELINE.last_checkpoint and orca.is_table(table_name): - if checkpoint_name is not None: - raise RuntimeError( - "get_table: checkpoint_name ('%s') not supported" - "for non-checkpointed table '%s'" % (checkpoint_name, table_name) - ) - - return orca.get_table(table_name).to_frame() - - # if they want current version of table, no need to read from pipeline store - if checkpoint_name is None: - - if table_name not in _PIPELINE.last_checkpoint: - raise RuntimeError("table '%s' never checkpointed." % table_name) - - if not _PIPELINE.last_checkpoint[table_name]: - raise RuntimeError("table '%s' was dropped." % table_name) - - # return orca.get_table(table_name).local - return orca.get_table(table_name).to_frame() - - # find the requested checkpoint - checkpoint = next( - (x for x in _PIPELINE.checkpoints if x["checkpoint_name"] == checkpoint_name), - None, - ) - if checkpoint is None: - raise RuntimeError("checkpoint '%s' not in checkpoints." % checkpoint_name) - - # find the checkpoint that table was written to store - last_checkpoint_name = checkpoint.get(table_name, None) - - if not last_checkpoint_name: - raise RuntimeError( - "table '%s' not in checkpoint '%s'." % (table_name, checkpoint_name) - ) - - # if this version of table is same as current - if _PIPELINE.last_checkpoint.get(table_name, None) == last_checkpoint_name: - return orca.get_table(table_name).to_frame() - - return read_df(table_name, last_checkpoint_name) - - -def get_checkpoints(): - """ - Get pandas dataframe of info about all checkpoints stored in pipeline - - pipeline doesn't have to be open - - Returns - ------- - checkpoints_df : pandas.DataFrame - - """ - - store = get_pipeline_store() - - if store is not None: - df = store[CHECKPOINT_TABLE_NAME] - else: - pipeline_file_path = config.pipeline_file_path( - orca.get_injectable("pipeline_file_name") - ) - df = pd.read_hdf(pipeline_file_path, CHECKPOINT_TABLE_NAME) - - # non-table columns first (column order in df is random because created from a dict) - table_names = [name for name in df.columns.values if name not in NON_TABLE_COLUMNS] - - df = df[NON_TABLE_COLUMNS + table_names] - - return df - - -def replace_table(table_name, df): - """ - Add or replace a orca table, removing any existing added orca columns - - The use case for this function is a method that calls to_frame on an orca table, modifies - it and then saves the modified. - - orca.to_frame returns a copy, so no changes are saved, and adding multiple column with - add_column adds them in an indeterminate order. - - Simply replacing an existing the table "behind the pipeline's back" by calling orca.add_table - risks pipeline to failing to detect that it has changed, and thus not checkpoint the changes. - - Parameters - ---------- - table_name : str - orca/pipeline table name - df : pandas DataFrame - """ - - assert is_open(), f"Pipeline is not open." - - if df.columns.duplicated().any(): - logger.error( - "replace_table: dataframe '%s' has duplicate columns: %s" - % (table_name, df.columns[df.columns.duplicated()]) - ) - - raise RuntimeError( - "replace_table: dataframe '%s' has duplicate columns: %s" - % (table_name, df.columns[df.columns.duplicated()]) - ) - - rewrap(table_name, df) - - _PIPELINE.replaced_tables[table_name] = True - - -def extend_table(table_name, df, axis=0): - """ - add new table or extend (add rows) to an existing table - - Parameters - ---------- - table_name : str - orca/inject table name - df : pandas DataFrame - """ - - assert is_open(), f"Pipeline is not open." - - assert axis in [0, 1] - - if orca.is_table(table_name): - - table_df = orca.get_table(table_name).to_frame() - - if axis == 0: - # don't expect indexes to overlap - assert len(table_df.index.intersection(df.index)) == 0 - missing_df_str_columns = [ - c - for c in table_df.columns - if c not in df.columns and table_df[c].dtype == "O" - ] - else: - # expect indexes be same - assert table_df.index.equals(df.index) - new_df_columns = [c for c in df.columns if c not in table_df.columns] - df = df[new_df_columns] - - # preserve existing column order - df = pd.concat([table_df, df], sort=False, axis=axis) - - # backfill missing df columns that were str (object) type in table_df - if axis == 0: - for c in missing_df_str_columns: - df[c] = df[c].fillna("") - - replace_table(table_name, df) - - return df - - -def drop_table(table_name): - - assert is_open(), f"Pipeline is not open." - - if orca.is_table(table_name): - - logger.debug("drop_table dropping orca table '%s'" % table_name) - - # don't trigger function call of TableFuncWrapper - t = orca.get_raw_table(table_name) - t.clear_cached() - - for column_name in orca.list_columns_for_table(table_name): - # logger.debug("pop %s.%s: %s" % (table_name, column_name, t.column_type(column_name))) - orca._COLUMNS.pop((table_name, column_name), None) - - # remove from orca's table list - orca._TABLES.pop(table_name, None) - - if table_name in _PIPELINE.replaced_tables: - - logger.debug("drop_table forgetting replaced_tables '%s'" % table_name) - del _PIPELINE.replaced_tables[table_name] - - if table_name in _PIPELINE.last_checkpoint: - - logger.debug("drop_table removing table %s from last_checkpoint" % table_name) - - _PIPELINE.last_checkpoint[table_name] = "" - - -def is_table(table_name): - return orca.is_table(table_name) - - -def cleanup_pipeline(): - """ - Cleanup pipeline after successful run - - Open main pipeline if not already open (will be closed if multiprocess) - Create a single-checkpoint pipeline file with latest version of all checkpointed tables, - Delete main pipeline and any subprocess pipelines - - Called if cleanup_pipeline_after_run setting is True - - Returns - ------- - nothing, but with changed state: pipeline file that was open on call is closed and deleted - - """ - # we don't expect to be called unless cleanup_pipeline_after_run setting is True - assert config.setting("cleanup_pipeline_after_run", False) - - if not is_open(): - open_pipeline("_") - - assert is_open(), f"Pipeline is not open." - - FINAL_PIPELINE_FILE_NAME = ( - f"final_{inject.get_injectable('pipeline_file_name', 'pipeline')}" - ) - FINAL_CHECKPOINT_NAME = "final" - - final_pipeline_file_path = config.build_output_file_path(FINAL_PIPELINE_FILE_NAME) - - # keep only the last row of checkpoints and patch the last checkpoint name - checkpoints_df = get_checkpoints().tail(1).copy() - checkpoints_df["checkpoint_name"] = FINAL_CHECKPOINT_NAME - - with pd.HDFStore(final_pipeline_file_path, mode="w") as final_pipeline_store: - - for table_name in checkpointed_tables(): - # patch last checkpoint name for all tables - checkpoints_df[table_name] = FINAL_CHECKPOINT_NAME - - table_df = get_table(table_name) - logger.debug( - f"cleanup_pipeline - adding table {table_name} {table_df.shape}" - ) - - final_pipeline_store[table_name] = table_df - - final_pipeline_store[CHECKPOINT_TABLE_NAME] = checkpoints_df - - close_pipeline() - - logger.debug(f"deleting all pipeline files except {final_pipeline_file_path}") - tracing.delete_output_files("h5", ignore=[final_pipeline_file_path]) diff --git a/activitysim/core/random.py b/activitysim/core/random.py index dc34e2729..9960e98e2 100644 --- a/activitysim/core/random.py +++ b/activitysim/core/random.py @@ -1,5 +1,6 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import hashlib import logging @@ -66,7 +67,6 @@ class SimpleChannel(object): """ def __init__(self, channel_name, base_seed, domain_df, step_name): - self.base_seed = base_seed # ensure that every channel is different, even for the same df index values and max_steps @@ -100,7 +100,6 @@ def init_row_states_for_step(self, row_states): assert self.step_name if self.step_name and not row_states.empty: - row_states["row_seed"] = ( self.base_seed + self.channel_seed + self.step_seed + row_states.index ) % _MAX_SEED @@ -164,7 +163,6 @@ def begin_step(self, step_name): self.multi_choice_offset = None def end_step(self, step_name): - assert self.step_name == step_name self.step_name = None @@ -197,7 +195,6 @@ def _generators_for_df(self, df): prng = np.random.RandomState() for row in df_row_states.itertuples(): - prng.seed(row.row_seed) if row.offset: @@ -375,7 +372,6 @@ def choice_for_df(self, df, step_name, a, size, replace): class Random(object): def __init__(self): - self.channels = {} # dict mapping df index name to channel name @@ -415,7 +411,8 @@ def begin_step(self, step_name): pipeline step name """ - assert self.step_name is None + if self.step_name is not None: + raise ValueError(f"already in step {self.step_name}") assert step_name is not None self.step_name = step_name @@ -438,7 +435,9 @@ def end_step(self, step_name): step_name : str name of current step (just a consistency check) """ - assert self.step_name is not None + if self.step_name is None: + # maybe a step was aborted, this is fine + return assert self.step_name == step_name for c in self.channels: @@ -470,7 +469,6 @@ def add_channel(self, channel_name, domain_df): """ if channel_name in self.channels: - assert channel_name == self.index_to_channel[domain_df.index.name] logger.debug( "Random: extending channel '%s' %s ids" diff --git a/activitysim/core/simulate.py b/activitysim/core/simulate.py index 6c0fb902d..133a8b1dc 100644 --- a/activitysim/core/simulate.py +++ b/activitysim/core/simulate.py @@ -1,18 +1,38 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import logging import time import warnings -from builtins import range from collections import OrderedDict +from collections.abc import Callable from datetime import timedelta +from pathlib import Path +from typing import Any import numpy as np import pandas as pd -from . import assign, chunk, config, logit, pathbuilder, pipeline, tracing, util -from .simulate_consts import ( +from activitysim.core import ( + assign, + chunk, + config, + configuration, + logit, + pathbuilder, + tracing, + util, + workflow, +) +from activitysim.core.configuration.base import PydanticBase +from activitysim.core.configuration.logit import ( + BaseLogitComponentSettings, + LogitNestSpec, + TemplatedLogitComponentSettings, +) +from activitysim.core.estimation import Estimator +from activitysim.core.simulate_consts import ( ALT_LOSER_UTIL, SPEC_DESCRIPTION_NAME, SPEC_EXPRESSION_NAME, @@ -21,12 +41,16 @@ logger = logging.getLogger(__name__) +CustomChooser_T = Callable[ + [workflow.State, pd.DataFrame, pd.DataFrame, pd.DataFrame, str], + tuple[pd.Series, pd.Series], +] -def random_rows(df, n): +def random_rows(state: workflow.State, df, n): # only sample if df has more than n rows if len(df.index) > n: - prng = pipeline.get_rn_generator().get_global_rng() + prng = state.get_rn_generator().get_global_rng() return df.take(prng.choice(len(df), size=n, replace=False)) else: @@ -34,7 +58,6 @@ def random_rows(df, n): def uniquify_spec_index(spec): - # uniquify spec index inplace # ensure uniqueness of spec index by appending comment with dupe count # this allows us to use pandas dot to compute_utilities @@ -49,15 +72,15 @@ def uniquify_spec_index(spec): assert spec.index.is_unique -def read_model_alts(file_name, set_index=None): - file_path = config.config_file_path(file_name) +def read_model_alts(state: workflow.State, file_name, set_index=None): + file_path = state.filesystem.get_config_file_path(file_name) df = pd.read_csv(file_path, comment="#") if set_index: df.set_index(set_index, inplace=True) return df -def read_model_spec(file_name): +def read_model_spec(filesystem: configuration.FileSystem, file_name: Path | str): """ Read a CSV model specification into a Pandas DataFrame or Series. @@ -88,12 +111,13 @@ def read_model_spec(file_name): The description column is dropped from the returned data and the expression values are set as the table index. """ - + if isinstance(file_name, Path): + file_name = str(file_name) assert isinstance(file_name, str) if not file_name.lower().endswith(".csv"): - file_name = "%s.csv" % (file_name,) + file_name = f"{file_name}.csv" - file_path = config.config_file_path(file_name) + file_path = filesystem.get_config_file_path(file_name) try: spec = pd.read_csv(file_path, comment="#") @@ -121,24 +145,35 @@ def read_model_spec(file_name): return spec -def read_model_coefficients(model_settings=None, file_name=None): +def read_model_coefficients( + filesystem: configuration.FileSystem, + model_settings: BaseLogitComponentSettings | dict[str, Any] | None = None, + file_name: Path | str | None = None, +) -> pd.DataFrame: """ Read the coefficient file specified by COEFFICIENTS model setting """ + assert isinstance(filesystem, configuration.FileSystem) if model_settings is None: assert file_name is not None else: assert file_name is None - assert ( - "COEFFICIENTS" in model_settings - ), "'COEFFICIENTS' tag not in model_settings in %s" % model_settings.get( - "source_file_paths" - ) - file_name = model_settings["COEFFICIENTS"] + if isinstance(model_settings, BaseLogitComponentSettings) or ( + isinstance(model_settings, PydanticBase) + and hasattr(model_settings, "COEFFICIENTS") + ): + file_name = model_settings.COEFFICIENTS + else: + assert ( + "COEFFICIENTS" in model_settings + ), "'COEFFICIENTS' tag not in model_settings in %s" % model_settings.get( + "source_file_paths" + ) + file_name = model_settings["COEFFICIENTS"] logger.debug(f"read_model_coefficients file_name {file_name}") - file_path = config.config_file_path(file_name) + file_path = filesystem.get_config_file_path(file_name) try: coefficients = pd.read_csv(file_path, comment="#", index_col="coefficient_name") except ValueError: @@ -161,7 +196,16 @@ def read_model_coefficients(model_settings=None, file_name=None): return coefficients -def spec_for_segment(model_settings, spec_id, segment_name, estimator): +def spec_for_segment( + state: workflow.State, + model_settings: dict | None, + spec_id: str, + segment_name: str, + estimator: Estimator | None, + *, + spec_file_name: Path | None = None, + coefficients_file_name: Path | None = None, +) -> pd.DataFrame: """ Select spec for specified segment from omnibus spec containing columns for each segment @@ -178,8 +222,9 @@ def spec_for_segment(model_settings, spec_id, segment_name, estimator): canonical spec file with expressions in index and single column with utility coefficients """ - spec_file_name = model_settings[spec_id] - spec = read_model_spec(file_name=spec_file_name) + if spec_file_name is None: + spec_file_name = model_settings[spec_id] + spec = read_model_spec(state.filesystem, file_name=spec_file_name) if len(spec.columns) > 1: # if spec is segmented @@ -189,7 +234,14 @@ def spec_for_segment(model_settings, spec_id, segment_name, estimator): # doesn't really matter what it is called, but this may catch errors assert spec.columns[0] in ["coefficient", segment_name] - if "COEFFICIENTS" not in model_settings: + if ( + coefficients_file_name is None + and isinstance(model_settings, dict) + and "COEFFICIENTS" in model_settings + ): + coefficients_file_name = model_settings["COEFFICIENTS"] + + if coefficients_file_name is None: logger.warning( f"no coefficient file specified in model_settings for {spec_file_name}" ) @@ -199,31 +251,38 @@ def spec_for_segment(model_settings, spec_id, segment_name, estimator): raise RuntimeError( f"No coefficient file specified for {spec_file_name} " f"but not all spec column values are numeric" - ) + ) from None return spec - coefficients = read_model_coefficients(model_settings) + coefficients = read_model_coefficients( + state.filesystem, file_name=coefficients_file_name + ) - spec = eval_coefficients(spec, coefficients, estimator) + spec = eval_coefficients(state, spec, coefficients, estimator) return spec -def read_model_coefficient_template(model_settings): +def read_model_coefficient_template( + filesystem: configuration.FileSystem, + model_settings: dict | TemplatedLogitComponentSettings, +): """ Read the coefficient template specified by COEFFICIENT_TEMPLATE model setting """ - assert ( - "COEFFICIENT_TEMPLATE" in model_settings - ), "'COEFFICIENT_TEMPLATE' not in model_settings in %s" % model_settings.get( - "source_file_paths" - ) - - coefficients_file_name = model_settings["COEFFICIENT_TEMPLATE"] + if isinstance(model_settings, dict): + assert ( + "COEFFICIENT_TEMPLATE" in model_settings + ), "'COEFFICIENT_TEMPLATE' not in model_settings in %s" % model_settings.get( + "source_file_paths" + ) + coefficients_file_name = model_settings["COEFFICIENT_TEMPLATE"] + else: + coefficients_file_name = model_settings.COEFFICIENT_TEMPLATE - file_path = config.config_file_path(coefficients_file_name) + file_path = filesystem.get_config_file_path(coefficients_file_name) try: template = pd.read_csv(file_path, comment="#", index_col="coefficient_name") except ValueError: @@ -250,29 +309,33 @@ def read_model_coefficient_template(model_settings): return template -def dump_mapped_coefficients(model_settings): +def dump_mapped_coefficients(state: workflow.State, model_settings): """ dump template_df with coefficient values """ - coefficients_df = read_model_coefficients(model_settings) - template_df = read_model_coefficient_template(model_settings) + coefficients_df = state.filesystem.read_model_coefficients(model_settings) + template_df = read_model_coefficient_template(state.filesystem, model_settings) for c in template_df.columns: template_df[c] = template_df[c].map(coefficients_df.value) coefficients_template_file_name = model_settings["COEFFICIENT_TEMPLATE"] - file_path = config.output_file_path(coefficients_template_file_name) + file_path = state.get_output_file_path(coefficients_template_file_name) template_df.to_csv(file_path, index=True) logger.info(f"wrote mapped coefficient template to {file_path}") coefficients_file_name = model_settings["COEFFICIENTS"] - file_path = config.output_file_path(coefficients_file_name) + file_path = state.get_output_file_path(coefficients_file_name) coefficients_df.to_csv(file_path, index=True) logger.info(f"wrote raw coefficients to {file_path}") -def get_segment_coefficients(model_settings, segment_name): +def get_segment_coefficients( + filesystem: configuration.FileSystem, + model_settings: PydanticBase | dict, + segment_name: str, +): """ Return a dict mapping generic coefficient names to segment-specific coefficient values @@ -303,10 +366,19 @@ def get_segment_coefficients(model_settings, segment_name): ... """ - - if "COEFFICIENTS" in model_settings and "COEFFICIENT_TEMPLATE" in model_settings: + if isinstance(model_settings, PydanticBase): + model_settings = model_settings.dict() + + if ( + "COEFFICIENTS" in model_settings + and "COEFFICIENT_TEMPLATE" in model_settings + and model_settings["COEFFICIENTS"] is not None + and model_settings["COEFFICIENT_TEMPLATE"] is not None + ): legacy = False - elif "COEFFICIENTS" in model_settings: + elif ( + "COEFFICIENTS" in model_settings and model_settings["COEFFICIENTS"] is not None + ): legacy = "COEFFICIENTS" warnings.warn( "Support for COEFFICIENTS without COEFFICIENT_TEMPLATE in model settings file will be removed." @@ -325,16 +397,26 @@ def get_segment_coefficients(model_settings, segment_name): if legacy: constants = config.get_model_constants(model_settings) - legacy_coeffs_file_path = config.config_file_path(model_settings[legacy]) + legacy_coeffs_file_path = filesystem.get_config_file_path( + model_settings[legacy] + ) omnibus_coefficients = pd.read_csv( legacy_coeffs_file_path, comment="#", index_col="coefficient_name" ) + try: + omnibus_coefficients_segment_name = omnibus_coefficients[segment_name] + except KeyError: + logger.error(f"No key {segment_name} found!") + possible_keys = "\n- ".join(omnibus_coefficients.keys()) + logger.error(f"possible keys include: \n- {possible_keys}") + raise coefficients_dict = assign.evaluate_constants( - omnibus_coefficients[segment_name], constants=constants + omnibus_coefficients_segment_name, constants=constants ) + else: - coefficients_df = read_model_coefficients(model_settings) - template_df = read_model_coefficient_template(model_settings) + coefficients_df = filesystem.read_model_coefficients(model_settings) + template_df = read_model_coefficient_template(filesystem, model_settings) coefficients_col = ( template_df[segment_name].map(coefficients_df.value).astype(float) ) @@ -352,27 +434,41 @@ def get_segment_coefficients(model_settings, segment_name): return coefficients_dict -def eval_nest_coefficients(nest_spec, coefficients, trace_label): - def replace_coefficients(nest): +def eval_nest_coefficients( + nest_spec: LogitNestSpec | dict, coefficients: dict, trace_label: str +) -> LogitNestSpec: + def replace_coefficients(nest: LogitNestSpec): if isinstance(nest, dict): - assert "coefficient" in nest coefficient_name = nest["coefficient"] if isinstance(coefficient_name, str): assert ( coefficient_name in coefficients - ), "%s not in nest coefficients" % (coefficient_name,) + ), f"{coefficient_name} not in nest coefficients" nest["coefficient"] = coefficients[coefficient_name] assert "alternatives" in nest for alternative in nest["alternatives"]: - if isinstance(alternative, dict): + if isinstance(alternative, dict | LogitNestSpec): + replace_coefficients(alternative) + elif isinstance(nest, LogitNestSpec): + if isinstance(nest.coefficient, str): + assert ( + nest.coefficient in coefficients + ), f"{nest.coefficient} not in nest coefficients" + nest.coefficient = coefficients[nest.coefficient] + + for alternative in nest.alternatives: + if isinstance(alternative, dict | LogitNestSpec): replace_coefficients(alternative) if isinstance(coefficients, pd.DataFrame): assert "value" in coefficients.columns coefficients = coefficients["value"].to_dict() + if not isinstance(nest_spec, LogitNestSpec): + nest_spec = LogitNestSpec.model_validate(nest_spec) + replace_coefficients(nest_spec) logit.validate_nest_spec(nest_spec, trace_label) @@ -380,8 +476,12 @@ def replace_coefficients(nest): return nest_spec -def eval_coefficients(spec, coefficients, estimator): - +def eval_coefficients( + state: workflow.State, + spec: pd.DataFrame, + coefficients: dict | pd.DataFrame, + estimator: Estimator | None, +) -> pd.DataFrame: spec = spec.copy() # don't clobber input spec if isinstance(coefficients, pd.DataFrame): @@ -399,7 +499,7 @@ def eval_coefficients(spec, coefficients, estimator): spec[c].apply(lambda x: eval(str(x), {}, coefficients)).astype(np.float32) ) - sharrow_enabled = config.setting("sharrow", False) + sharrow_enabled = state.settings.sharrow if sharrow_enabled: # keep all zero rows, reduces the number of unique flows to compile and store. return spec @@ -409,15 +509,16 @@ def eval_coefficients(spec, coefficients, estimator): zero_rows = (spec == 0).all(axis=1) if zero_rows.any(): if estimator: - logger.debug("keeping %s all-zero rows in SPEC" % (zero_rows.sum(),)) + logger.debug(f"keeping {zero_rows.sum()} all-zero rows in SPEC") else: - logger.debug("dropping %s all-zero rows from SPEC" % (zero_rows.sum(),)) + logger.debug(f"dropping {zero_rows.sum()} all-zero rows from SPEC") spec = spec.loc[~zero_rows] return spec def eval_utilities( + state, spec, choosers, locals_d=None, @@ -429,6 +530,8 @@ def eval_utilities( log_alt_losers=False, zone_layer=None, spec_sh=None, + *, + chunk_sizer, ): """ Evaluate a utility function as defined in a spec file. @@ -475,7 +578,7 @@ def eval_utilities( """ start_time = time.time() - sharrow_enabled = config.setting("sharrow", False) + sharrow_enabled = state.settings.sharrow expression_values = None @@ -496,10 +599,11 @@ def eval_utilities( from .flow import apply_flow # import inside func to prevent circular imports locals_dict = {} - locals_dict.update(config.get_global_constants()) + locals_dict.update(state.get_global_constants()) if locals_d is not None: locals_dict.update(locals_d) - sh_util, sh_flow = apply_flow( + sh_util, sh_flow, sh_tree = apply_flow( + state, spec_sh, choosers, locals_dict, @@ -515,11 +619,10 @@ def eval_utilities( # fixme - restore tracing and _check_for_variability if utilities is None or estimator or sharrow_enabled == "test": - trace_label = tracing.extend_trace_label(trace_label, "eval_utils") # avoid altering caller's passed-in locals_d parameter (they may be looping) - locals_dict = assign.local_utilities() + locals_dict = assign.local_utilities(state) if locals_d is not None: locals_dict.update(locals_d) @@ -535,11 +638,10 @@ def eval_utilities( exprs = spec.index expression_values = np.empty((spec.shape[0], choosers.shape[0])) - chunk.log_df(trace_label, "expression_values", expression_values) + chunk_sizer.log_df(trace_label, "expression_values", expression_values) i = 0 for expr, coefficients in zip(exprs, spec.values): - try: with warnings.catch_warnings(record=True) as w: # Cause all warnings to always be triggered. @@ -576,7 +678,7 @@ def eval_utilities( expression_values[i] = expression_value i += 1 - chunk.log_df(trace_label, "expression_values", expression_values) + chunk_sizer.log_df(trace_label, "expression_values", expression_values) if estimator: df = pd.DataFrame( @@ -597,17 +699,16 @@ def eval_utilities( timelogger.mark("simple flow", False) utilities = pd.DataFrame(data=utilities, index=choosers.index, columns=spec.columns) - chunk.log_df(trace_label, "utilities", utilities) + chunk_sizer.log_df(trace_label, "utilities", utilities) timelogger.mark("assemble utilities") # sometimes tvpb will drop rows on the fly and we wind up with an empty # table of choosers. this will just bypass tracing in that case. if (trace_all_rows or have_trace_targets) and (len(choosers) > 0): - if trace_all_rows: trace_targets = pd.Series(True, index=choosers.index) else: - trace_targets = tracing.trace_targets(choosers) + trace_targets = state.tracing.trace_targets(choosers) assert trace_targets.any() # since they claimed to have targets... # get int offsets of the trace_targets (offsets of bool=True values) @@ -617,7 +718,7 @@ def eval_utilities( if sh_flow is not None: try: data_sh = sh_flow.load( - sh_flow.tree.replace_datasets( + sh_tree.replace_datasets( df=choosers.iloc[offsets], ), dtype=np.float32, @@ -647,14 +748,14 @@ def eval_utilities( expression_values_df = None if expression_values_sh is not None: - tracing.trace_df( + state.tracing.trace_df( expression_values_sh, tracing.extend_trace_label(trace_label, "expression_values_sh"), slicer=None, transpose=False, ) if expression_values_df is not None: - tracing.trace_df( + state.tracing.trace_df( expression_values_df, tracing.extend_trace_label(trace_label, "expression_values"), slicer=None, @@ -662,11 +763,10 @@ def eval_utilities( ) if len(spec.columns) > 1: - for c in spec.columns: name = f"expression_value_{c}" - tracing.trace_df( + state.tracing.trace_df( expression_values_df.multiply(spec[c].values, axis=0), tracing.extend_trace_label(trace_label, name), slicer=None, @@ -689,7 +789,7 @@ def eval_utilities( misses = np.where(~np.isclose(sh_util, utilities.values, rtol=1e-2, atol=0)) _sh_util_miss1 = sh_util[tuple(m[0] for m in misses)] _u_miss1 = utilities.values[tuple(m[0] for m in misses)] - diff = _sh_util_miss1 - _u_miss1 + _sh_util_miss1 - _u_miss1 if len(misses[0]) > sh_util.size * 0.01: print( f"big problem: {len(misses[0])} missed close values " @@ -697,7 +797,7 @@ def eval_utilities( ) print(f"{sh_util.shape=}") print(misses) - _sh_flow_load = sh_flow.load() + _sh_flow_load = sh_flow.load(sh_tree) print("possible problematic expressions:") for expr_n, expr in enumerate(exprs): closeness = np.isclose( @@ -717,10 +817,10 @@ def eval_utilities( timelogger.mark("sharrow test", True, logger, trace_label) del expression_values - chunk.log_df(trace_label, "expression_values", None) + chunk_sizer.log_df(trace_label, "expression_values", None) # no longer our problem - but our caller should re-log this... - chunk.log_df(trace_label, "utilities", None) + chunk_sizer.log_df(trace_label, "utilities", None) end_time = time.time() logger.info( @@ -730,7 +830,7 @@ def eval_utilities( return utilities -def eval_variables(exprs, df, locals_d=None): +def eval_variables(state: workflow.State, exprs, df, locals_d=None): """ Evaluate a set of variable expressions from a spec in the context of a given data table. @@ -765,7 +865,7 @@ def eval_variables(exprs, df, locals_d=None): """ # avoid altering caller's passed-in locals_d parameter (they may be looping) - locals_dict = assign.local_utilities() + locals_dict = assign.local_utilities(state) if locals_d is not None: locals_dict.update(locals_d) globals_dict = {} @@ -773,7 +873,6 @@ def eval_variables(exprs, df, locals_d=None): locals_dict["df"] = df def to_array(x): - if x is None or np.isscalar(x): a = np.asanyarray([x] * len(df.index)) elif isinstance(x, pd.Series): @@ -875,46 +974,47 @@ def set_skim_wrapper_targets(df, skims): pass -def _check_for_variability(expression_values, trace_label): - """ - This is an internal method which checks for variability in each - expression - under the assumption that you probably wouldn't be using a - variable (in live simulations) if it had no variability. This is a - warning to the user that they might have constructed the variable - incorrectly. It samples 1000 rows in order to not hurt performance - - it's likely that if 1000 rows have no variability, the whole dataframe - will have no variability. - """ - - if trace_label is None: - trace_label = "_check_for_variability" - - sample = random_rows(expression_values, min(1000, len(expression_values))) - - no_variability = has_missing_vals = 0 - for i in range(len(sample.columns)): - v = sample.iloc[:, i] - if v.min() == v.max(): - col_name = sample.columns[i] - logger.info( - "%s: no variability (%s) in: %s" % (trace_label, v.iloc[0], col_name) - ) - no_variability += 1 - # FIXME - how could this happen? Not sure it is really a problem? - if np.count_nonzero(v.isnull().values) > 0: - col_name = sample.columns[i] - logger.info("%s: missing values in: %s" % (trace_label, col_name)) - has_missing_vals += 1 - - if no_variability > 0: - logger.warning( - "%s: %s columns have no variability" % (trace_label, no_variability) - ) - - if has_missing_vals > 0: - logger.warning( - "%s: %s columns have missing values" % (trace_label, has_missing_vals) - ) +# +# def _check_for_variability(expression_values, trace_label): +# """ +# This is an internal method which checks for variability in each +# expression - under the assumption that you probably wouldn't be using a +# variable (in live simulations) if it had no variability. This is a +# warning to the user that they might have constructed the variable +# incorrectly. It samples 1000 rows in order to not hurt performance - +# it's likely that if 1000 rows have no variability, the whole dataframe +# will have no variability. +# """ +# +# if trace_label is None: +# trace_label = "_check_for_variability" +# +# sample = random_rows(expression_values, min(1000, len(expression_values))) +# +# no_variability = has_missing_vals = 0 +# for i in range(len(sample.columns)): +# v = sample.iloc[:, i] +# if v.min() == v.max(): +# col_name = sample.columns[i] +# logger.info( +# "%s: no variability (%s) in: %s" % (trace_label, v.iloc[0], col_name) +# ) +# no_variability += 1 +# # FIXME - how could this happen? Not sure it is really a problem? +# if np.count_nonzero(v.isnull().values) > 0: +# col_name = sample.columns[i] +# logger.info("%s: missing values in: %s" % (trace_label, col_name)) +# has_missing_vals += 1 +# +# if no_variability > 0: +# logger.warning( +# "%s: %s columns have no variability" % (trace_label, no_variability) +# ) +# +# if has_missing_vals > 0: +# logger.warning( +# "%s: %s columns have missing values" % (trace_label, has_missing_vals) +# ) def compute_nested_exp_utilities(raw_utilities, nest_spec): @@ -942,7 +1042,6 @@ def compute_nested_exp_utilities(raw_utilities, nest_spec): nested_utilities = pd.DataFrame(index=raw_utilities.index) for nest in logit.each_nest(nest_spec, post_order=True): - name = nest.name if nest.is_leaf: @@ -968,7 +1067,9 @@ def compute_nested_exp_utilities(raw_utilities, nest_spec): return nested_utilities -def compute_nested_probabilities(nested_exp_utilities, nest_spec, trace_label): +def compute_nested_probabilities( + state: workflow.State, nested_exp_utilities, nest_spec, trace_label +): """ compute nested probabilities for nest leafs and nodes probability for nest alternatives is simply the alternatives's local (to nest) probability @@ -991,12 +1092,13 @@ def compute_nested_probabilities(nested_exp_utilities, nest_spec, trace_label): nested_probabilities = pd.DataFrame(index=nested_exp_utilities.index) for nest in logit.each_nest(nest_spec, type="node", post_order=False): - probs = logit.utils_to_probs( + state, nested_exp_utilities[nest.alternatives], trace_label=trace_label, exponentiated=True, allow_zero_probs=True, + overflow_protection=False, ) nested_probabilities = pd.concat([nested_probabilities, probs], axis=1) @@ -1028,7 +1130,6 @@ def compute_base_probabilities(nested_probabilities, nests, spec): base_probabilities = pd.DataFrame(index=nested_probabilities.index) for nest in logit.each_nest(nests, type="leaf", post_order=False): - # skip root: it has a prob of 1 but we didn't compute a nested probability column for it ancestors = nest.ancestors[1:] @@ -1043,16 +1144,19 @@ def compute_base_probabilities(nested_probabilities, nests, spec): def eval_mnl( + state: workflow.State, choosers, spec, locals_d, - custom_chooser, + custom_chooser: CustomChooser_T, estimator, log_alt_losers=False, want_logsums=False, trace_label=None, trace_choice_name=None, trace_column_names=None, + *, + chunk_sizer, ): """ Run a simulation for when the model spec does not involve alternative @@ -1077,7 +1181,7 @@ def eval_mnl( locals_d : Dict or None This is a dictionary of local variables that will be the environment for an evaluation of an expression that begins with @ - custom_chooser : function(probs, choosers, spec, trace_label) returns choices, rands + custom_chooser : function(state, probs, choosers, spec, trace_label) returns choices, rands custom alternative to logit.make_choices estimator : Estimator object called to report intermediate table results (used for estimation) @@ -1100,12 +1204,13 @@ def eval_mnl( assert not want_logsums trace_label = tracing.extend_trace_label(trace_label, "eval_mnl") - have_trace_targets = tracing.has_trace_targets(choosers) + have_trace_targets = state.tracing.has_trace_targets(choosers) if have_trace_targets: - tracing.trace_df(choosers, "%s.choosers" % trace_label) + state.tracing.trace_df(choosers, "%s.choosers" % trace_label) utilities = eval_utilities( + state, spec, choosers, locals_d, @@ -1114,63 +1219,65 @@ def eval_mnl( have_trace_targets=have_trace_targets, estimator=estimator, trace_column_names=trace_column_names, + chunk_sizer=chunk_sizer, ) - chunk.log_df(trace_label, "utilities", utilities) + chunk_sizer.log_df(trace_label, "utilities", utilities) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( utilities, "%s.utilities" % trace_label, column_labels=["alternative", "utility"], ) probs = logit.utils_to_probs( - utilities, trace_label=trace_label, trace_choosers=choosers + state, utilities, trace_label=trace_label, trace_choosers=choosers ) - chunk.log_df(trace_label, "probs", probs) + chunk_sizer.log_df(trace_label, "probs", probs) del utilities - chunk.log_df(trace_label, "utilities", None) + chunk_sizer.log_df(trace_label, "utilities", None) if have_trace_targets: # report these now in case make_choices throws error on bad_choices - tracing.trace_df( + state.tracing.trace_df( probs, "%s.probs" % trace_label, column_labels=["alternative", "probability"], ) if custom_chooser: - choices, rands = custom_chooser( - probs=probs, choosers=choosers, spec=spec, trace_label=trace_label - ) + choices, rands = custom_chooser(state, probs, choosers, spec, trace_label) else: - choices, rands = logit.make_choices(probs, trace_label=trace_label) + choices, rands = logit.make_choices(state, probs, trace_label=trace_label) del probs - chunk.log_df(trace_label, "probs", None) + chunk_sizer.log_df(trace_label, "probs", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( choices, "%s.choices" % trace_label, columns=[None, trace_choice_name] ) - tracing.trace_df(rands, "%s.rands" % trace_label, columns=[None, "rand"]) + state.tracing.trace_df(rands, "%s.rands" % trace_label, columns=[None, "rand"]) return choices def eval_nl( + state: workflow.State, choosers, spec, nest_spec, locals_d, - custom_chooser, + custom_chooser: CustomChooser_T, estimator, log_alt_losers=False, want_logsums=False, trace_label=None, trace_choice_name=None, trace_column_names=None, + *, + chunk_sizer: chunk.ChunkSizer, ): """ Run a nested-logit simulation for when the model spec does not involve alternative @@ -1211,16 +1318,17 @@ def eval_nl( trace_label = tracing.extend_trace_label(trace_label, "eval_nl") assert trace_label - have_trace_targets = tracing.has_trace_targets(choosers) + have_trace_targets = state.tracing.has_trace_targets(choosers) logit.validate_nest_spec(nest_spec, trace_label) if have_trace_targets: - tracing.trace_df(choosers, "%s.choosers" % trace_label) + state.tracing.trace_df(choosers, "%s.choosers" % trace_label) choosers, spec_sh = _preprocess_tvpb_logsums_on_choosers(choosers, spec, locals_d) raw_utilities = eval_utilities( + state, spec_sh, choosers, locals_d, @@ -1230,11 +1338,12 @@ def eval_nl( estimator=estimator, trace_column_names=trace_column_names, spec_sh=spec_sh, + chunk_sizer=chunk_sizer, ) - chunk.log_df(trace_label, "raw_utilities", raw_utilities) + chunk_sizer.log_df(trace_label, "raw_utilities", raw_utilities) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( raw_utilities, "%s.raw_utilities" % trace_label, column_labels=["alternative", "utility"], @@ -1242,13 +1351,13 @@ def eval_nl( # exponentiated utilities of leaves and nests nested_exp_utilities = compute_nested_exp_utilities(raw_utilities, nest_spec) - chunk.log_df(trace_label, "nested_exp_utilities", nested_exp_utilities) + chunk_sizer.log_df(trace_label, "nested_exp_utilities", nested_exp_utilities) del raw_utilities - chunk.log_df(trace_label, "raw_utilities", None) + chunk_sizer.log_df(trace_label, "raw_utilities", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( nested_exp_utilities, "%s.nested_exp_utilities" % trace_label, column_labels=["alternative", "utility"], @@ -1256,20 +1365,20 @@ def eval_nl( # probabilities of alternatives relative to siblings sharing the same nest nested_probabilities = compute_nested_probabilities( - nested_exp_utilities, nest_spec, trace_label=trace_label + state, nested_exp_utilities, nest_spec, trace_label=trace_label ) - chunk.log_df(trace_label, "nested_probabilities", nested_probabilities) + chunk_sizer.log_df(trace_label, "nested_probabilities", nested_probabilities) if want_logsums: # logsum of nest root logsums = pd.Series(np.log(nested_exp_utilities.root), index=choosers.index) - chunk.log_df(trace_label, "logsums", logsums) + chunk_sizer.log_df(trace_label, "logsums", logsums) del nested_exp_utilities - chunk.log_df(trace_label, "nested_exp_utilities", None) + chunk_sizer.log_df(trace_label, "nested_exp_utilities", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( nested_probabilities, "%s.nested_probabilities" % trace_label, column_labels=["alternative", "probability"], @@ -1279,13 +1388,13 @@ def eval_nl( base_probabilities = compute_base_probabilities( nested_probabilities, nest_spec, spec ) - chunk.log_df(trace_label, "base_probabilities", base_probabilities) + chunk_sizer.log_df(trace_label, "base_probabilities", base_probabilities) del nested_probabilities - chunk.log_df(trace_label, "nested_probabilities", None) + chunk_sizer.log_df(trace_label, "nested_probabilities", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( base_probabilities, "%s.base_probabilities" % trace_label, column_labels=["alternative", "probability"], @@ -1297,8 +1406,8 @@ def eval_nl( no_choices = (base_probabilities.sum(axis=1) - 1).abs() > BAD_PROB_THRESHOLD if no_choices.any(): - logit.report_bad_choices( + state, no_choices, base_probabilities, trace_label=tracing.extend_trace_label(trace_label, "bad_probs"), @@ -1308,25 +1417,28 @@ def eval_nl( if custom_chooser: choices, rands = custom_chooser( - probs=base_probabilities, - choosers=choosers, - spec=spec, - trace_label=trace_label, + state, + base_probabilities, + choosers, + spec, + trace_label, ) else: - choices, rands = logit.make_choices(base_probabilities, trace_label=trace_label) + choices, rands = logit.make_choices( + state, base_probabilities, trace_label=trace_label + ) del base_probabilities - chunk.log_df(trace_label, "base_probabilities", None) + chunk_sizer.log_df(trace_label, "base_probabilities", None) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( choices, "%s.choices" % trace_label, columns=[None, trace_choice_name] ) - tracing.trace_df(rands, "%s.rands" % trace_label, columns=[None, "rand"]) + state.tracing.trace_df(rands, f"{trace_label}.rands", columns=[None, "rand"]) if want_logsums: - tracing.trace_df( - logsums, "%s.logsums" % trace_label, columns=[None, "logsum"] + state.tracing.trace_df( + logsums, f"{trace_label}.logsums", columns=[None, "logsum"] ) if want_logsums: @@ -1336,19 +1448,23 @@ def eval_nl( return choices +@workflow.func def _simple_simulate( + state: workflow.State, choosers, spec, nest_spec, skims=None, locals_d=None, - custom_chooser=None, + custom_chooser: CustomChooser_T = None, log_alt_losers=False, want_logsums=False, estimator=None, trace_label=None, trace_choice_name=None, trace_column_names=None, + *, + chunk_sizer, ): """ Run an MNL or NL simulation for when the model spec does not involve alternative @@ -1376,7 +1492,7 @@ def _simple_simulate( locals_d : Dict This is a dictionary of local variables that will be the environment for an evaluation of an expression that begins with @ - custom_chooser : Estimator object + custom_chooser : CustomChooser_T estimator : function(df, label, table_name) called to report intermediate table results (used for estimation) @@ -1400,6 +1516,7 @@ def _simple_simulate( if nest_spec is None: choices = eval_mnl( + state, choosers, spec, locals_d, @@ -1410,9 +1527,11 @@ def _simple_simulate( trace_label=trace_label, trace_choice_name=trace_choice_name, trace_column_names=trace_column_names, + chunk_sizer=chunk_sizer, ) else: choices = eval_nl( + state, choosers, spec, nest_spec, @@ -1424,6 +1543,7 @@ def _simple_simulate( trace_label=trace_label, trace_choice_name=trace_choice_name, trace_column_names=trace_column_names, + chunk_sizer=chunk_sizer, ) return choices @@ -1449,12 +1569,12 @@ def list_of_skims(skims): def simple_simulate( + state: workflow.State, choosers, spec, nest_spec, skims=None, locals_d=None, - chunk_size=0, custom_chooser=None, log_alt_losers=False, want_logsums=False, @@ -1475,11 +1595,14 @@ def simple_simulate( result_list = [] # segment by person type and pick the right spec for each person type - for i, chooser_chunk, chunk_trace_label in chunk.adaptive_chunked_choosers( - choosers, chunk_size, trace_label - ): - + for ( + _i, + chooser_chunk, + chunk_trace_label, + chunk_sizer, + ) in chunk.adaptive_chunked_choosers(state, choosers, trace_label): choices = _simple_simulate( + state, chooser_chunk, spec, nest_spec, @@ -1492,11 +1615,12 @@ def simple_simulate( trace_label=chunk_trace_label, trace_choice_name=trace_choice_name, trace_column_names=trace_column_names, + chunk_sizer=chunk_sizer, ) result_list.append(choices) - chunk.log_df(trace_label, "result_list", result_list) + chunk_sizer.log_df(trace_label, "result_list", result_list) if len(result_list) > 1: choices = pd.concat(result_list) @@ -1507,12 +1631,12 @@ def simple_simulate( def simple_simulate_by_chunk_id( + state: workflow.State, choosers, spec, nest_spec, skims=None, locals_d=None, - chunk_size=0, custom_chooser=None, log_alt_losers=False, want_logsums=False, @@ -1523,15 +1647,16 @@ def simple_simulate_by_chunk_id( """ chunk_by_chunk_id wrapper for simple_simulate """ - + choices = None result_list = [] for ( - i, + _i, chooser_chunk, chunk_trace_label, - ) in chunk.adaptive_chunked_choosers_by_chunk_id(choosers, chunk_size, trace_label): - + chunk_sizer, + ) in chunk.adaptive_chunked_choosers_by_chunk_id(state, choosers, trace_label): choices = _simple_simulate( + state, chooser_chunk, spec, nest_spec, @@ -1543,11 +1668,12 @@ def simple_simulate_by_chunk_id( estimator=estimator, trace_label=chunk_trace_label, trace_choice_name=trace_choice_name, + chunk_sizer=chunk_sizer, ) result_list.append(choices) - chunk.log_df(trace_label, "result_list", result_list) + chunk_sizer.log_df(trace_label, "result_list", result_list) if len(result_list) > 1: choices = pd.concat(result_list) @@ -1555,7 +1681,9 @@ def simple_simulate_by_chunk_id( return choices -def eval_mnl_logsums(choosers, spec, locals_d, trace_label=None): +def eval_mnl_logsums( + state: workflow.State, choosers, spec, locals_d, trace_label=None, *, chunk_sizer +): """ like eval_nl except return logsums instead of making choices @@ -1568,21 +1696,27 @@ def eval_mnl_logsums(choosers, spec, locals_d, trace_label=None): # FIXME - untested and not currently used by any models... trace_label = tracing.extend_trace_label(trace_label, "eval_mnl_logsums") - have_trace_targets = tracing.has_trace_targets(choosers) + have_trace_targets = state.tracing.has_trace_targets(choosers) logger.debug("running eval_mnl_logsums") # trace choosers if have_trace_targets: - tracing.trace_df(choosers, "%s.choosers" % trace_label) + state.tracing.trace_df(choosers, "%s.choosers" % trace_label) utilities = eval_utilities( - spec, choosers, locals_d, trace_label, have_trace_targets + state, + spec, + choosers, + locals_d, + trace_label, + have_trace_targets, + chunk_sizer=chunk_sizer, ) - chunk.log_df(trace_label, "utilities", utilities) + chunk_sizer.log_df(trace_label, "utilities", utilities) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( utilities, "%s.raw_utilities" % trace_label, column_labels=["alternative", "utility"], @@ -1592,11 +1726,11 @@ def eval_mnl_logsums(choosers, spec, locals_d, trace_label=None): # logsum is log of exponentiated utilities summed across columns of each chooser row logsums = np.log(np.exp(utilities.values).sum(axis=1)) logsums = pd.Series(logsums, index=choosers.index) - chunk.log_df(trace_label, "logsums", logsums) + chunk_sizer.log_df(trace_label, "logsums", logsums) # trace utilities if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( logsums, "%s.logsums" % trace_label, column_labels=["alternative", "logsum"] ) @@ -1682,7 +1816,16 @@ def _replace_in_level(multiindex, level_name, *args, **kwargs): return choosers, spec_sh -def eval_nl_logsums(choosers, spec, nest_spec, locals_d, trace_label=None): +def eval_nl_logsums( + state: workflow.State, + choosers, + spec, + nest_spec, + locals_d, + trace_label=None, + *, + chunk_sizer: chunk.ChunkSizer, +): """ like eval_nl except return logsums instead of making choices @@ -1693,7 +1836,7 @@ def eval_nl_logsums(choosers, spec, nest_spec, locals_d, trace_label=None): """ trace_label = tracing.extend_trace_label(trace_label, "eval_nl_logsums") - have_trace_targets = tracing.has_trace_targets(choosers) + have_trace_targets = state.tracing.has_trace_targets(choosers) logit.validate_nest_spec(nest_spec, trace_label) @@ -1701,20 +1844,22 @@ def eval_nl_logsums(choosers, spec, nest_spec, locals_d, trace_label=None): # trace choosers if have_trace_targets: - tracing.trace_df(choosers, "%s.choosers" % trace_label) + state.tracing.trace_df(choosers, "%s.choosers" % trace_label) raw_utilities = eval_utilities( + state, spec_sh, choosers, locals_d, trace_label=trace_label, have_trace_targets=have_trace_targets, spec_sh=spec_sh, + chunk_sizer=chunk_sizer, ) - chunk.log_df(trace_label, "raw_utilities", raw_utilities) + chunk_sizer.log_df(trace_label, "raw_utilities", raw_utilities) if have_trace_targets: - tracing.trace_df( + state.tracing.trace_df( raw_utilities, "%s.raw_utilities" % trace_label, column_labels=["alternative", "utility"], @@ -1722,36 +1867,44 @@ def eval_nl_logsums(choosers, spec, nest_spec, locals_d, trace_label=None): # - exponentiated utilities of leaves and nests nested_exp_utilities = compute_nested_exp_utilities(raw_utilities, nest_spec) - chunk.log_df(trace_label, "nested_exp_utilities", nested_exp_utilities) + chunk_sizer.log_df(trace_label, "nested_exp_utilities", nested_exp_utilities) del raw_utilities # done with raw_utilities - chunk.log_df(trace_label, "raw_utilities", None) + chunk_sizer.log_df(trace_label, "raw_utilities", None) # - logsums logsums = np.log(nested_exp_utilities.root) logsums = pd.Series(logsums, index=choosers.index) - chunk.log_df(trace_label, "logsums", logsums) + chunk_sizer.log_df(trace_label, "logsums", logsums) if have_trace_targets: # add logsum to nested_exp_utilities for tracing nested_exp_utilities["logsum"] = logsums - tracing.trace_df( + state.tracing.trace_df( nested_exp_utilities, "%s.nested_exp_utilities" % trace_label, column_labels=["alternative", "utility"], ) - tracing.trace_df( + state.tracing.trace_df( logsums, "%s.logsums" % trace_label, column_labels=["alternative", "logsum"] ) del nested_exp_utilities # done with nested_exp_utilities - chunk.log_df(trace_label, "nested_exp_utilities", None) + chunk_sizer.log_df(trace_label, "nested_exp_utilities", None) return logsums def _simple_simulate_logsums( - choosers, spec, nest_spec, skims=None, locals_d=None, trace_label=None + state: workflow.State, + choosers, + spec, + nest_spec, + skims=None, + locals_d=None, + trace_label=None, + *, + chunk_sizer, ): """ like simple_simulate except return logsums instead of making choices @@ -1766,16 +1919,31 @@ def _simple_simulate_logsums( set_skim_wrapper_targets(choosers, skims) if nest_spec is None: - logsums = eval_mnl_logsums(choosers, spec, locals_d, trace_label=trace_label) + logsums = eval_mnl_logsums( + state, + choosers, + spec, + locals_d, + trace_label=trace_label, + chunk_sizer=chunk_sizer, + ) else: logsums = eval_nl_logsums( - choosers, spec, nest_spec, locals_d, trace_label=trace_label + state, + choosers, + spec, + nest_spec, + locals_d, + trace_label=trace_label, + chunk_sizer=chunk_sizer, ) return logsums +@workflow.func def simple_simulate_logsums( + state: workflow.State, choosers, spec, nest_spec, @@ -1799,17 +1967,28 @@ def simple_simulate_logsums( result_list = [] # segment by person type and pick the right spec for each person type - for i, chooser_chunk, chunk_trace_label in chunk.adaptive_chunked_choosers( - choosers, chunk_size, trace_label, chunk_tag + for ( + _i, + chooser_chunk, + chunk_trace_label, + chunk_sizer, + ) in chunk.adaptive_chunked_choosers( + state, choosers, trace_label, chunk_tag, chunk_size=chunk_size ): - logsums = _simple_simulate_logsums( - chooser_chunk, spec, nest_spec, skims, locals_d, chunk_trace_label + state, + chooser_chunk, + spec, + nest_spec, + skims, + locals_d, + chunk_trace_label, + chunk_sizer=chunk_sizer, ) result_list.append(logsums) - chunk.log_df(trace_label, "result_list", result_list) + chunk_sizer.log_df(trace_label, "result_list", result_list) if len(result_list) > 1: logsums = pd.concat(result_list) diff --git a/activitysim/core/skim_dataset.py b/activitysim/core/skim_dataset.py index 9c28082fc..8421cb6c7 100644 --- a/activitysim/core/skim_dataset.py +++ b/activitysim/core/skim_dataset.py @@ -1,15 +1,22 @@ +from __future__ import annotations + import glob import logging import os +import time +from functools import partial +from pathlib import Path import numpy as np import openmatrix import pandas as pd import sharrow as sh +import xarray as xr -from . import config -from . import flow as __flow # noqa, keep this here for side effects? -from . import inject +from activitysim.core import config +from activitysim.core import flow as __flow # noqa: 401 +from activitysim.core import workflow +from activitysim.core.input import read_input_file logger = logging.getLogger(__name__) @@ -26,6 +33,10 @@ def __init__(self, dataset): self.time_map = { j: i for i, j in enumerate(self.dataset.indexes["time_period"]) } + self.time_label_dtype = pd.api.types.CategoricalDtype( + self.dataset.indexes["time_period"], + ordered=True, + ) self.usage = set() # track keys of skims looked up @property @@ -110,6 +121,8 @@ def lookup(self, orig, dest, key): orig = np.asanyarray(orig).astype(int) dest = np.asanyarray(dest).astype(int) + some_missing = (orig.min() < 0) or (dest.min() < 0) + # TODO offset mapper if required positions = {self.odim: orig, self.ddim: dest} @@ -126,6 +139,8 @@ def lookup(self, orig, dest, key): **positions, _name=key ) # Dataset.iat as implemented by sharrow strips data encoding + if some_missing: + result[(orig < 0) | (dest < 0)] = np.nan result = result.to_series() if use_index is not None: @@ -173,6 +188,10 @@ def __init__(self, dataset, orig_key, dest_key, time_key=None, *, time_map=None) } else: self.time_map = time_map + self.time_label_dtype = pd.api.types.CategoricalDtype( + self.dataset.indexes["time_period"], + ordered=True, + ) @property def odim(self): @@ -229,22 +248,40 @@ def set_df(self, df): } if self.time_key: if ( - np.issubdtype(df[self.time_key].dtype, np.integer) + not df[self.time_key].dtype == "category" + and np.issubdtype(df[self.time_key].dtype, np.integer) and df[self.time_key].max() < self.dataset.dims["time_period"] ): logger.info(f"natural use for time_period={self.time_key}") positions["time_period"] = df[self.time_key] + elif ( + df[self.time_key].dtype == "category" + and df[self.time_key].dtype == self.time_label_dtype + ): + positions["time_period"] = df[self.time_key].cat.codes else: logger.info(f"vectorize lookup for time_period={self.time_key}") positions["time_period"] = pd.Series( - np.vectorize(self.time_map.get)(df[self.time_key]), + np.vectorize(self.time_map.get, "I")(df[self.time_key], 0), index=df.index, ) if POSITIONS_AS_DICT: self.positions = {} for k, v in positions.items(): - self.positions[k] = v.astype(int) + try: + is_int = np.issubdtype(v.dtype, np.integer) + except Exception: + is_int = False + if is_int: + self.positions[k] = v + else: + try: + self.positions[k] = v.astype(int) + except TypeError: + # possibly some missing values that are not relevant, + # fill with zeros to continue. + self.positions[k] = v.fillna(0).astype(int) else: self.positions = pd.DataFrame(positions).astype(int) @@ -295,8 +332,10 @@ def lookup(self, key, reverse=False): main_key, time_key = key if time_key in self.time_map: if isinstance(x, dict): - x["time_period"] = np.full_like( - x[self.odim], fill_value=self.time_map[time_key] + # np.broadcast_to saves memory over np.full_like, since we + # don't ever write to this array. + x["time_period"] = np.broadcast_to( + self.time_map[time_key], x[self.odim].shape ) else: x = x.assign(time_period=self.time_map[time_key]) @@ -432,7 +471,7 @@ def _use_existing_backing_if_valid(backing, omx_file_paths, skim_tag): def _dedupe_time_periods(network_los_preload): - raw_time_periods = network_los_preload.los_settings["skim_time_periods"]["labels"] + raw_time_periods = network_los_preload.los_settings.skim_time_periods.labels # deduplicate time period names time_periods = [] for t in raw_time_periods: @@ -490,22 +529,27 @@ def _apply_digital_encoding(dataset, digital_encodings): return dataset -def _scan_for_unused_names(tokens): +def _scan_for_unused_names(state, tokens): """ Scan all spec files to find unused skim variable names. Parameters ---------- + state : State tokens : Collection[str] Returns ------- Set[str] """ - configs_dir_list = inject.get_injectable("configs_dir") + configs_dir_list = state.filesystem.get_configs_dir() configs_dir_list = ( - [configs_dir_list] if isinstance(configs_dir_list, str) else configs_dir_list + [configs_dir_list] + if isinstance(configs_dir_list, (str, Path)) + else configs_dir_list ) + if isinstance(configs_dir_list, tuple): + configs_dir_list = list(configs_dir_list) assert isinstance(configs_dir_list, list) for directory in configs_dir_list: @@ -524,10 +568,10 @@ def _scan_for_unused_names(tokens): return tokens -def _drop_unused_names(dataset): +def _drop_unused_names(state, dataset): logger.info("scanning for unused skims") tokens = set(dataset.variables.keys()) - set(dataset.coords.keys()) - unused_tokens = _scan_for_unused_names(tokens) + unused_tokens = _scan_for_unused_names(state, tokens) if unused_tokens: baggage = dataset.digital_encoding.baggage(None) unused_tokens -= baggage @@ -571,7 +615,7 @@ def load_sparse_maz_skims( maz2taz_file_name : str maz_to_maz_tables : Collection[] max_blend_distance : optional - data_file_resolver : function + data_file_resolver : function or Callable Returns ------- @@ -580,12 +624,12 @@ def load_sparse_maz_skims( from ..core.los import THREE_ZONE, TWO_ZONE if data_file_resolver is None: - data_file_resolver = config.data_file_path + raise ValueError("missing file resolver") if zone_system in [TWO_ZONE, THREE_ZONE]: - # maz - maz_taz = pd.read_csv(data_file_resolver(maz2taz_file_name, mandatory=True)) + maz_filename = data_file_resolver(maz2taz_file_name, mandatory=True) + maz_taz = read_input_file(maz_filename) maz_taz = maz_taz[["MAZ", "TAZ"]].set_index("MAZ").sort_index() # MAZ alignment is ensured here, so no re-alignment check is @@ -623,8 +667,7 @@ def load_sparse_maz_skims( max_blend_distance = {"DEFAULT": max_blend_distance} for file_name in maz_to_maz_tables: - - df = pd.read_csv(data_file_resolver(file_name, mandatory=True)) + df = read_input_file(data_file_resolver(file_name, mandatory=True)) if remapper is not None: df.OMAZ = df.OMAZ.map(remapper.get) df.DMAZ = df.DMAZ.map(remapper.get) @@ -647,38 +690,39 @@ def load_sparse_maz_skims( return dataset -def load_skim_dataset_to_shared_memory(skim_tag="taz"): +def load_skim_dataset_to_shared_memory(state, skim_tag="taz") -> xr.Dataset: """ Load skims from disk into shared memory. Parameters ---------- + state : State skim_tag : str, default "taz" Returns ------- xarray.Dataset """ - from ..core.los import ONE_ZONE + from activitysim.core.los import ONE_ZONE # TODO:SHARROW: taz and maz are the same - network_los_preload = inject.get_injectable("network_los_preload", None) + network_los_preload = state.get_injectable("network_los_preload") if network_los_preload is None: raise ValueError("missing network_los_preload") # find which OMX files are to be used. - omx_file_paths = config.expand_input_file_list( + omx_file_paths = state.filesystem.expand_input_file_list( network_los_preload.omx_file_names(skim_tag), ) zarr_file = network_los_preload.zarr_file_name(skim_tag) - if config.setting("disable_zarr", False): + if state.settings.disable_zarr: # we can disable the zarr optimizations by setting the `disable_zarr` # flag in the master config file to True zarr_file = None if zarr_file is not None: - zarr_file = os.path.join(config.get_cache_dir(), zarr_file) + zarr_file = os.path.join(state.filesystem.get_cache_dir(), zarr_file) max_float_precision = network_los_preload.skim_max_float_precision(skim_tag) @@ -694,30 +738,35 @@ def load_skim_dataset_to_shared_memory(skim_tag="taz"): ) backing = f"memmap:{mmap_file}" - land_use = inject.get_table("land_use") + land_use = state.get_dataframe("land_use") - if f"_original_{land_use.index.name}" in land_use.to_frame(): - land_use_zone_ids = land_use.to_frame()[f"_original_{land_use.index.name}"] + if f"_original_{land_use.index.name}" in land_use: + land_use_zone_ids = land_use[f"_original_{land_use.index.name}"] remapper = dict(zip(land_use_zone_ids, land_use_zone_ids.index)) else: remapper = None d = _use_existing_backing_if_valid(backing, omx_file_paths, skim_tag) + do_not_save_zarr = False if d is None: time_periods = _dedupe_time_periods(network_los_preload) if zarr_file: logger.info(f"looking for zarr skims at {zarr_file}") if zarr_file and os.path.exists(zarr_file): - # TODO: check if the OMX skims or sparse MAZ are modified more - # recently than the cached ZARR versions; if so do not use - # the ZARR + from .util import latest_file_modification_time + logger.info("found zarr skims, loading them") - d = sh.dataset.from_zarr_with_attr(zarr_file).max_float_precision( - max_float_precision - ) - else: - if zarr_file: + d = sh.dataset.from_zarr_with_attr(zarr_file) + zarr_write_time = d.attrs.get("ZARR_WRITE_TIME", 0) + if zarr_write_time < latest_file_modification_time(omx_file_paths): + logger.warning("zarr skims older than omx, not using them") + do_not_save_zarr = True + d = None + else: + d = d.max_float_precision(max_float_precision) + if d is None: + if zarr_file and not do_not_save_zarr: logger.info("did not find zarr skims, loading omx") d = sh.dataset.from_omx_3d( [openmatrix.open_file(f, mode="r") for f in omx_file_paths], @@ -744,7 +793,9 @@ def load_skim_dataset_to_shared_memory(skim_tag="taz"): if zarr_digital_encoding: d = _apply_digital_encoding(d, zarr_digital_encoding) logger.info(f"writing zarr skims to {zarr_file}") - d.to_zarr_with_attr(zarr_file) + d.attrs["ZARR_WRITE_TIME"] = time.time() + if not do_not_save_zarr: + d.to_zarr_with_attr(zarr_file) if skim_tag in ("taz", "maz"): # load sparse MAZ skims, if any @@ -764,9 +815,13 @@ def load_skim_dataset_to_shared_memory(skim_tag="taz"): max_blend_distance=network_los_preload.setting( "maz_to_maz.max_blend_distance", default={} ), + data_file_resolver=partial( + state.filesystem.get_data_file_path, + alternative_suffixes=(".csv.gz", ".parquet"), + ), ) - d = _drop_unused_names(d) + d = _drop_unused_names(state, d) # apply non-zarr dependent digital encoding d = _apply_digital_encoding(d, skim_digital_encoding) @@ -817,11 +872,11 @@ def load_skim_dataset_to_shared_memory(skim_tag="taz"): return d.shm.to_shared_memory(backing, mode="r") -@inject.injectable(cache=True) -def skim_dataset(): - return load_skim_dataset_to_shared_memory() +@workflow.cached_object +def skim_dataset(state: workflow.State) -> xr.Dataset: + return load_skim_dataset_to_shared_memory(state) -@inject.injectable(cache=True) -def tap_dataset(): - return load_skim_dataset_to_shared_memory("tap") +@workflow.cached_object +def tap_dataset(state: workflow.State) -> xr.Dataset: + return load_skim_dataset_to_shared_memory(state, "tap") diff --git a/activitysim/core/skim_dict_factory.py b/activitysim/core/skim_dict_factory.py index 450b98d25..eb0195749 100644 --- a/activitysim/core/skim_dict_factory.py +++ b/activitysim/core/skim_dict_factory.py @@ -1,6 +1,7 @@ # ActivitySim # See full license in LICENSE.txt. # from builtins import int +from __future__ import annotations import logging import multiprocessing @@ -11,7 +12,7 @@ import numpy as np import openmatrix as omx -from activitysim.core import config, inject, skim_dictionary, util +from activitysim.core import skim_dictionary, util logger = logging.getLogger(__name__) @@ -52,7 +53,7 @@ def shape(self): class SkimInfo(object): - def __init__(self, skim_tag, network_los): + def __init__(self, state, skim_tag, network_los): """ skim_tag: str (e.g. 'TAZ') @@ -89,9 +90,9 @@ def __init__(self, skim_tag, network_los): self.block_offsets = None if skim_tag: - self.load_skim_info(skim_tag) + self.load_skim_info(state, skim_tag) - def load_skim_info(self, skim_tag): + def load_skim_info(self, state, skim_tag): """ Read omx files for skim (e.g. 'TAZ') and build skim_info dict @@ -103,12 +104,12 @@ def load_skim_info(self, skim_tag): omx_file_names = self.network_los.omx_file_names(skim_tag) - self.omx_file_paths = config.expand_input_file_list(omx_file_names) + self.omx_file_paths = state.filesystem.expand_input_file_list(omx_file_names) # ignore any 3D skims not in skim_time_periods # specifically, load all skims except those with key2 not in dim3_tags_to_load skim_time_periods = self.network_los.skim_time_periods - dim3_tags_to_load = skim_time_periods and skim_time_periods["labels"] + dim3_tags_to_load = skim_time_periods and skim_time_periods.labels self.omx_manifest = {} # dict mapping { omx_key: skim_name } @@ -131,7 +132,7 @@ def load_skim_info(self, skim_tag): for skim_name in omx_file.listMatrices(): if skim_name in self.omx_manifest: warnings.warn( - f"duplicate skim '{skim_name}' found in {self.omx_manifest[skim_name]} and {omx_file}" + f"duplicate skim '{skim_name}' found in {self.omx_manifest[skim_name]} and {omx_file.filename}" ) self.omx_manifest[skim_name] = omx_file_path @@ -263,10 +264,12 @@ def _skim_data_from_buffer(self, skim_info, skim_buffer): assert False, "Not supported" def _memmap_skim_data_path(self, skim_tag): - return os.path.join(config.get_cache_dir(), f"cached_{skim_tag}.mmap") + return os.path.join( + self.network_los.state.filesystem.get_cache_dir(), f"cached_{skim_tag}.mmap" + ) - def load_skim_info(self, skim_tag): - return SkimInfo(skim_tag, self.network_los) + def load_skim_info(self, state, skim_tag): + return SkimInfo(state, skim_tag, self.network_los) def _read_skims_from_omx(self, skim_info, skim_data): """ @@ -496,14 +499,14 @@ def get_skim_data(self, skim_tag, skim_info): Parameters ---------- skim_tag: str - skim_info: string + skim_info: dict Returns ------- SkimData """ - data_buffers = inject.get_injectable("data_buffers", None) + data_buffers = self.network_los.state.get_injectable("data_buffers", None) if data_buffers: # we assume any existing skim buffers will already have skim data loaded into them logger.info( @@ -594,7 +597,9 @@ def get_skim_data(self, skim_tag, skim_info): """ # don't expect legacy shared memory buffers - assert not inject.get_injectable("data_buffers", {}).get(skim_tag) + assert not self.network_los.state.get_injectable("data_buffers", {}).get( + skim_tag + ) skim_cache_path = self._memmap_skim_data_path(skim_tag) if not os.path.isfile(skim_cache_path): diff --git a/activitysim/core/skim_dictionary.py b/activitysim/core/skim_dictionary.py index a1897b536..ad79b5294 100644 --- a/activitysim/core/skim_dictionary.py +++ b/activitysim/core/skim_dictionary.py @@ -1,5 +1,6 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import logging from builtins import object, range @@ -7,6 +8,8 @@ import numpy as np import pandas as pd +from activitysim.core import workflow + logger = logging.getLogger(__name__) NOT_IN_SKIM_ZONE_ID = -1 @@ -146,7 +149,7 @@ def map(self, zone_ids): return offsets -class SkimDict(object): +class SkimDict: """ A SkimDict object is a wrapper around a dict of multiple skim objects, where each object is identified by a key. @@ -154,7 +157,7 @@ class SkimDict(object): Note that keys are either strings or tuples of two strings (to support stacking of skims.) """ - def __init__(self, skim_tag, skim_info, skim_data): + def __init__(self, state, skim_tag, skim_info, skim_data): logger.info(f"SkimDict init {skim_tag}") @@ -162,8 +165,8 @@ def __init__(self, skim_tag, skim_info, skim_data): self.skim_info = skim_info self.usage = set() # track keys of skims looked up - self.offset_mapper = ( - self._offset_mapper() + self.offset_mapper = self._offset_mapper( + state ) # (in function so subclass can override) self.omx_shape = skim_info.omx_shape @@ -184,7 +187,7 @@ def __init__(self, skim_tag, skim_info, skim_data): f"SkimDict.build_3d_skim_block_offset_table registered {len(self.skim_dim3)} 3d keys" ) - def _offset_mapper(self): + def _offset_mapper(self, state): """ Return an OffsetMapper to set self.offset_mapper for use with skims This allows subclasses (e.g. MazSkimDict) to 'tweak' the parent offset mapper. @@ -613,7 +616,7 @@ class MazSkimDict(SkimDict): to return values of for more distant pairs (or for skims that are not attributes in the maz-maz table.) """ - def __init__(self, skim_tag, network_los, taz_skim_dict): + def __init__(self, state: workflow.State, skim_tag, network_los, taz_skim_dict): """ we need network_los because we have dependencies on network_los.load_data (e.g. maz_to_maz_df, maz_taz_df, and the fallback taz skim_dict) @@ -638,10 +641,10 @@ def __init__(self, skim_tag, network_los, taz_skim_dict): should_recode_based_on_table, ) - if should_recode_based_on_table("land_use_taz"): + if should_recode_based_on_table(state, "land_use_taz"): from .skim_dict_factory import SkimInfo - skim_info = SkimInfo(None, network_los) + skim_info = SkimInfo(state, None, network_los) skim_info.skim_tag = taz_skim_dict.skim_info.skim_tag skim_info.dtype_name = network_los.skim_dtype_name skim_info.omx_manifest = taz_skim_dict.skim_info.omx_manifest @@ -654,24 +657,27 @@ def __init__(self, skim_tag, network_los, taz_skim_dict): skim_info.block_offsets = taz_skim_dict.skim_info.block_offsets skim_info.offset_map = recode_based_on_table( - taz_skim_dict.skim_info.offset_map, "land_use_taz" + state, taz_skim_dict.skim_info.offset_map, "land_use_taz" ) else: skim_info = taz_skim_dict.skim_info - super().__init__(skim_tag, skim_info, taz_skim_dict.skim_data) + super().__init__(state, skim_tag, skim_info, taz_skim_dict.skim_data) assert ( self.offset_mapper is not None ) # should have been set with _init_offset_mapper self.dtype = np.dtype(self.skim_info.dtype_name) self.base_keys = taz_skim_dict.skim_info.base_keys - self.sparse_keys = list( - set(network_los.maz_to_maz_df.columns) - {"OMAZ", "DMAZ"} - ) + if network_los.maz_to_maz_df is not None: + self.sparse_keys = list( + set(network_los.maz_to_maz_df.columns) - {"OMAZ", "DMAZ"} + ) + else: + self.sparse_keys = [] self.sparse_key_usage = set() - def _offset_mapper(self): + def _offset_mapper(self, state): """ return an OffsetMapper to map maz zone_ids to taz skim indexes Specifically, an offset_series with MAZ zone_id index and TAZ skim array offset values @@ -684,13 +690,13 @@ def _offset_mapper(self): """ # use taz offset_mapper to create series mapping directly from MAZ to TAZ skim index - taz_offset_mapper = super()._offset_mapper() - maz_taz = self.network_los.get_maz_to_taz_series + taz_offset_mapper = super()._offset_mapper(state) + maz_taz = self.network_los.get_maz_to_taz_series(state) maz_to_skim_offset = taz_offset_mapper.map(maz_taz) if isinstance(maz_to_skim_offset, np.ndarray): maz_to_skim_offset = pd.Series( - maz_to_skim_offset, self.network_los.get_maz_to_taz_series.index + maz_to_skim_offset, self.network_los.get_maz_to_taz_series(state).index ) # bug # MAZ @@ -731,7 +737,10 @@ def sparse_lookup(self, orig, dest, key): self.sparse_key_usage.add(key) - max_blend_distance = self.network_los.max_blend_distance.get(key, 0) + if self.network_los.max_blend_distance is None: + max_blend_distance = 0 + else: + max_blend_distance = self.network_los.max_blend_distance.get(key, 0) if max_blend_distance == 0: blend_distance_skim_name = None diff --git a/activitysim/core/steps/output.py b/activitysim/core/steps/output.py index 8b8a8e3be..97f50a57f 100644 --- a/activitysim/core/steps/output.py +++ b/activitysim/core/steps/output.py @@ -1,18 +1,24 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import sys import numpy as np import pandas as pd +import pyarrow as pa +import pyarrow.csv as csv +import pyarrow.parquet as parquet -from activitysim.core import config, inject, pipeline -from activitysim.core.config import setting +from activitysim.core import configuration, workflow +from activitysim.core.workflow.checkpoint import CHECKPOINT_NAME logger = logging.getLogger(__name__) -def track_skim_usage(output_dir): +@workflow.step +def track_skim_usage(state: workflow.State) -> None: """ write statistics on skim usage (diagnostic to detect loading of un-needed skims) @@ -28,11 +34,12 @@ def track_skim_usage(output_dir): pd.options.display.max_columns = 500 pd.options.display.max_rows = 100 - skim_dict = inject.get_injectable("skim_dict") + skim_dict = state.get_injectable("skim_dict") mode = "wb" if sys.version_info < (3,) else "w" - with open(config.output_file_path("skim_usage.txt"), mode) as output_file: - + with open( + state.filesystem.get_output_file_path("skim_usage.txt"), mode + ) as output_file: print("\n### skim_dict usage", file=output_file) for key in skim_dict.get_skim_usage(): print(key, file=output_file) @@ -52,7 +59,7 @@ def track_skim_usage(output_dir): print(key, file=output_file) -def previous_write_data_dictionary(output_dir): +def previous_write_data_dictionary(state: workflow.State, output_dir): """ Write table_name, number of rows, columns, and bytes for each checkpointed table @@ -62,31 +69,31 @@ def previous_write_data_dictionary(output_dir): """ - model_settings = config.read_model_settings("write_data_dictionary") + model_settings = state.filesystem.read_model_settings("write_data_dictionary") txt_format = model_settings.get("txt_format", "data_dict.txt") csv_format = model_settings.get("csv_format", "data_dict.csv") if txt_format: - - output_file_path = config.output_file_path(txt_format) + output_file_path = state.get_output_file_path(txt_format) pd.options.display.max_columns = 500 pd.options.display.max_rows = 100 - output_tables = pipeline.checkpointed_tables() + output_tables = state.checkpoint.list_tables() # write data dictionary for all checkpointed_tables with open(output_file_path, "w") as output_file: for table_name in output_tables: - df = inject.get_table(table_name, None).to_frame() + df = state.get_dataframe(table_name) print("\n### %s %s" % (table_name, df.shape), file=output_file) print("index:", df.index.name, df.index.dtype, file=output_file) print(df.dtypes, file=output_file) -def write_data_dictionary(output_dir): +@workflow.step +def write_data_dictionary(state: workflow.State) -> None: """ Write table schema for all tables @@ -107,7 +114,7 @@ def write_data_dictionary(output_dir): """ - model_settings = config.read_model_settings("write_data_dictionary") + model_settings = state.filesystem.read_model_settings("write_data_dictionary") txt_format = model_settings.get("txt_format", "data_dict.txt") csv_format = model_settings.get("csv_format", "data_dict.csv") @@ -117,7 +124,7 @@ def write_data_dictionary(output_dir): ) return - table_names = pipeline.registered_tables() + table_names = state.registered_tables() # use table_names list from model_settings, if provided schema_tables = model_settings.get("tables", None) @@ -129,7 +136,7 @@ def write_data_dictionary(output_dir): final_shapes = dict() for table_name in table_names: try: - df = pipeline.get_table(table_name) + df = state.get_dataframe(table_name) except RuntimeError as run_err: if run_err.args and "dropped" in run_err.args[0]: # if a checkpointed table was dropped, that's not ideal, so we should @@ -138,6 +145,8 @@ def write_data_dictionary(output_dir): # note actually emitting a warnings.warn instead of a logger message will # unfortunately cause some of our excessively strict tests to fail continue + else: + raise final_shapes[table_name] = df.shape @@ -155,42 +164,42 @@ def write_data_dictionary(output_dir): schema[table_name] = info # annotate schema.info with name of checkpoint columns were first seen - for _, row in pipeline.get_checkpoints().iterrows(): - - checkpoint_name = row[pipeline.CHECKPOINT_NAME] - - for table_name in table_names: + if state.checkpoint.store: + for _, row in state.checkpoint.get_inventory().iterrows(): + checkpoint_name = row[CHECKPOINT_NAME] - # no change to table in this checkpoint - if row.get(table_name, None) != checkpoint_name: - continue + for table_name in table_names: + # no change to table in this checkpoint + if row.get(table_name, None) != checkpoint_name: + continue - # get the checkpointed version of the table - df = pipeline.get_table(table_name, checkpoint_name) + # get the checkpointed version of the table + df = state.checkpoint.load_dataframe(table_name, checkpoint_name) - if df.index.name and df.index.name not in df.columns: - df = df.reset_index() + if df.index.name and df.index.name not in df.columns: + df = df.reset_index() - info = schema.get(table_name, None) + info = schema.get(table_name, None) - if info is not None: - # tag any new columns with checkpoint name - prev_columns = info[info.checkpoint != ""].column_name.values - new_cols = [c for c in df.columns.values if c not in prev_columns] - is_new_column_this_checkpoont = info.column_name.isin(new_cols) - info.checkpoint = np.where( - is_new_column_this_checkpoont, checkpoint_name, info.checkpoint - ) - schema[table_name] = info + if info is not None: + # tag any new columns with checkpoint name + prev_columns = info[info.checkpoint != ""].column_name.values + new_cols = [c for c in df.columns.values if c not in prev_columns] + is_new_column_this_checkpoont = info.column_name.isin(new_cols) + info.checkpoint = np.where( + is_new_column_this_checkpoont, checkpoint_name, info.checkpoint + ) + schema[table_name] = info schema_df = pd.concat(schema.values()) if csv_format: - schema_df.to_csv(config.output_file_path(csv_format), header=True, index=False) + schema_df.to_csv( + state.get_output_file_path(csv_format), header=True, index=False + ) if txt_format: - with open(config.output_file_path(txt_format), "w") as output_file: - + with open(state.get_output_file_path(txt_format), "w") as output_file: # get max schema column widths from omnibus table col_width = {c: schema_df[c].str.len().max() + 2 for c in schema_df} @@ -215,10 +224,16 @@ def write_data_dictionary(output_dir): print(f"{info}\n", file=output_file) -def write_tables(output_dir): +@workflow.step +def write_tables(state: workflow.State) -> None: """ - Write pipeline tables as csv files (in output directory) as specified by output_tables list - in settings file. + Write pipeline tables as csv or parquet files (in output directory) as specified + by output_tables list in settings file. Output to parquet or a single h5 file is + also supported. + + 'h5_store' defaults to False, which means the output will be written out to csv. + 'file_type' defaults to 'csv' but can also be used to specify 'parquet' or 'h5'. + When 'h5_store' is set to True, 'file_type' is ingored and the outputs are written to h5. 'output_tables' can specify either a list of output tables to include or to skip if no output_tables list is specified, then all checkpointed tables will be written @@ -252,82 +267,102 @@ def write_tables(output_dir): tables: - households + To write tables to parquet files, use the file_type setting: + + :: + + output_tables: + file_type: parquet + action: include + tables: + - households + Parameters ---------- output_dir: str """ - output_tables_settings_name = "output_tables" - - output_tables_settings = setting(output_tables_settings_name) + output_tables_settings = state.settings.output_tables if output_tables_settings is None: logger.info("No output_tables specified in settings file. Nothing to write.") return - action = output_tables_settings.get("action") - tables = output_tables_settings.get("tables") - prefix = output_tables_settings.get("prefix", "final_") - h5_store = output_tables_settings.get("h5_store", False) - sort = output_tables_settings.get("sort", False) + action = output_tables_settings.action + tables = output_tables_settings.tables + prefix = output_tables_settings.prefix + h5_store = output_tables_settings.h5_store + file_type = output_tables_settings.file_type + sort = output_tables_settings.sort - registered_tables = pipeline.registered_tables() + registered_tables = state.registered_tables() if action == "include": # interpret empty or missing tables setting to mean include all registered tables output_tables_list = tables if tables is not None else registered_tables elif action == "skip": output_tables_list = [t for t in registered_tables if t not in tables] else: - raise "expected %s action '%s' to be either 'include' or 'skip'" % ( - output_tables_settings_name, - action, - ) + raise f"expected action '{action}' to be either 'include' or 'skip'" for table_name in output_tables_list: - - if not isinstance(table_name, str): + if isinstance(table_name, configuration.OutputTable): + table_decode_cols = table_name.decode_columns or {} + table_name = table_name.tablename + elif not isinstance(table_name, str): table_decode_cols = table_name.get("decode_columns", {}) table_name = table_name["tablename"] else: table_decode_cols = {} if table_name == "checkpoints": - df = pipeline.get_checkpoints() + dt = pa.Table.from_pandas( + state.checkpoint.get_inventory(), preserve_index=True + ) else: if table_name not in registered_tables: logger.warning("Skipping '%s': Table not found." % table_name) continue - df = pipeline.get_table(table_name) + + # the write tables method now uses pyarrow to avoid making edits to + # the internal pipeline dataframes, which need to remain un-decoded + # for any subsequent summarize step[s]. + dt = state.get_pyarrow(table_name) + dt_index_name = state.get_dataframe_index_name(table_name) if sort: - traceable_table_indexes = inject.get_injectable( - "traceable_table_indexes", {} - ) + traceable_table_indexes = state.tracing.traceable_table_indexes - if df.index.name in traceable_table_indexes: - df = df.sort_index() + if dt_index_name in traceable_table_indexes: + dt = dt.sort_by(dt_index_name) logger.debug( - f"write_tables sorting {table_name} on index {df.index.name}" + f"write_tables sorting {table_name} on index {dt_index_name}" ) else: # find all registered columns we can use to sort this table # (they are ordered appropriately in traceable_table_indexes) sort_columns = [ - c for c in traceable_table_indexes if c in df.columns + (c, "ascending") + for c in traceable_table_indexes + if c in dt.columns ] if len(sort_columns) > 0: - df = df.sort_values(by=sort_columns) + dt = dt.sort_by(sort_columns) logger.debug( f"write_tables sorting {table_name} on columns {sort_columns}" ) + elif dt_index_name is not None: + logger.debug( + f"write_tables sorting {table_name} on unrecognized index {dt_index_name}" + ) + dt = dt.sort_by(dt_index_name) else: logger.debug( - f"write_tables sorting {table_name} on unrecognized index {df.index.name}" + f"write_tables sorting {table_name} on unrecognized index {dt_index_name}" ) - df = df.sort_index() + dt = dt.sort_by(dt_index_name) - if config.setting("recode_pipeline_columns", True): + if state.settings.recode_pipeline_columns: for colname, decode_instruction in table_decode_cols.items(): if "|" in decode_instruction: decode_filter, decode_instruction = decode_instruction.split("|") @@ -338,14 +373,14 @@ def write_tables(output_dir): if "." not in decode_instruction: lookup_col = decode_instruction source_table = table_name - parent_table = df + parent_table = dt else: source_table, lookup_col = decode_instruction.split(".") - parent_table = inject.get_table(source_table) + parent_table = state.get_pyarrow(source_table) try: - map_col = parent_table[f"_original_{lookup_col}"] + map_col = parent_table.column(f"_original_{lookup_col}") except KeyError: - map_col = parent_table[lookup_col] + map_col = parent_table.column(lookup_col) map_col = np.asarray(map_col) map_func = map_col.__getitem__ if decode_filter: @@ -356,24 +391,34 @@ def map_func(x): else: raise ValueError(f"unknown decode_filter {decode_filter}") - if colname in df.columns: - df[colname] = df[colname].astype(int).map(map_func) - elif colname == df.index.name: - df.index = df.index.astype(int).map(map_func) + if colname in dt.column_names: + revised_col = ( + pd.Series(dt.column(colname)).astype(int).map(map_func) + ) + dt = dt.drop([colname]).append_column( + colname, pa.array(revised_col) + ) # drop _original_x from table if it is duplicative - if source_table == table_name and f"_original_{lookup_col}" in df: - df = df.drop(columns=[f"_original_{lookup_col}"]) + if ( + source_table == table_name + and f"_original_{lookup_col}" in dt.column_names + ): + dt = dt.drop([f"_original_{lookup_col}"]) + + if h5_store or file_type == "h5": + file_path = state.get_output_file_path("%soutput_tables.h5" % prefix) + dt.to_pandas().to_hdf( + str(file_path), key=table_name, mode="a", format="fixed" + ) - if h5_store: - file_path = config.output_file_path("%soutput_tables.h5" % prefix) - df.to_hdf(file_path, key=table_name, mode="a", format="fixed") else: - file_name = "%s%s.csv" % (prefix, table_name) - file_path = config.output_file_path(file_name) + file_name = f"{prefix}{table_name}.{file_type}" + file_path = state.get_output_file_path(file_name) # include the index if it has a name or is a MultiIndex - write_index = df.index.name is not None or isinstance( - df.index, pd.MultiIndex - ) - - df.to_csv(file_path, index=write_index) + if file_type == "csv": + csv.write_csv(dt, file_path) + elif file_type == "parquet": + parquet.write_table(dt, file_path) + else: + raise ValueError(f"unknown file_type {file_type}") diff --git a/activitysim/core/test/__init__.py b/activitysim/core/test/__init__.py index 61e7caf52..487f43a34 100644 --- a/activitysim/core/test/__init__.py +++ b/activitysim/core/test/__init__.py @@ -1,2 +1,18 @@ # ActivitySim # See full license in LICENSE.txt. + +from __future__ import annotations + +try: + import pytest +except ImportError: + pass +else: + pytest.register_assert_rewrite("activitysim.core.test._tools") + +from activitysim.core.test._tools import ( # isort: skip + assert_equal, + assert_frame_substantively_equal, + run_if_exists, + progressive_checkpoint_test, +) diff --git a/activitysim/core/test/_tools.py b/activitysim/core/test/_tools.py new file mode 100644 index 000000000..b8f338ce9 --- /dev/null +++ b/activitysim/core/test/_tools.py @@ -0,0 +1,181 @@ +# ActivitySim +# See full license in LICENSE.txt. +from __future__ import annotations + +import traceback +from pathlib import Path + +import pandas as pd + + +def run_if_exists(filename): + import pytest + + stack = traceback.extract_stack() + base_dir = Path(stack[-2].filename).parent + target_file = base_dir.joinpath(filename) + + return pytest.mark.skipif( + not target_file.exists(), reason=f"required file {filename} is missing" + ) + + +def assert_frame_substantively_equal( + left, + right, + *args, + ignore_column_order=True, + ignore_extra_columns_left=False, + check_column_type_loosely=False, + **kwargs, +): + """ + Check that left and right DataFrame are substantively equal. + + This method generalizes the usual pandas DataFrame test, by allowing + the ordering of columns to be different, and allowing the left dataframe to + have extra columns (e.g. as might happen if more reporting or debugging + data is output into a dataframe, but we want to make sure that the "core" + expected things are all there and correct. + + Parameters + ---------- + left, right : pd.DataFrame + *args + Forwarded to pandas.testing.assert_frame_equal + ignore_column_order : bool, default True + Keyword only argument. + ignore_extra_columns_left : bool, default False + This cannot be True unless `ignore_column_order` is also True + check_column_type_loosely : bool, default False + Check that the dtype kind matches, not the dtype itself, for example + if one column is int32 and the other is int64 that is ok. + check_dtype : bool, default True + Whether to check the DataFrame dtype is identical. + check_index_type : bool or {'equiv'}, default 'equiv' + Whether to check the Index class, dtype and inferred_type + are identical. + check_column_type : bool or {'equiv'}, default 'equiv' + Whether to check the columns class, dtype and inferred_type + are identical. Is passed as the ``exact`` argument of + :func:`assert_index_equal`. + check_frame_type : bool, default True + Whether to check the DataFrame class is identical. + check_names : bool, default True + Whether to check that the `names` attribute for both the `index` + and `column` attributes of the DataFrame is identical. + by_blocks : bool, default False + Specify how to compare internal data. If False, compare by columns. + If True, compare by blocks. + check_exact : bool, default False + Whether to compare number exactly. + check_datetimelike_compat : bool, default False + Compare datetime-like which is comparable ignoring dtype. + check_categorical : bool, default True + Whether to compare internal Categorical exactly. + check_like : bool, default False + If True, ignore the order of index & columns. + Note: index labels must match their respective rows + (same as in columns) - same labels must be with the same data. + check_freq : bool, default True + Whether to check the `freq` attribute on a DatetimeIndex or TimedeltaIndex. + check_flags : bool, default True + Whether to check the `flags` attribute. + rtol : float, default 1e-5 + Relative tolerance. Only used when check_exact is False. + atol : float, default 1e-8 + Absolute tolerance. Only used when check_exact is False. + obj : str, default 'DataFrame' + Specify object name being compared, internally used to show appropriate + assertion message. + + **kwargs + Forwarded to pandas.testing.assert_frame_equal + """ + __tracebackhide__ = True # don't show this code in pytest outputs + + if ignore_extra_columns_left: + assert ignore_column_order + assert set(right.columns).issubset(left.columns) + left = left[right.columns] + + elif ignore_column_order: + # column order may not match, so fix it before checking + assert sorted(left.columns) == sorted(right.columns) + # if there are duplicate column names, we disavow this option + if not left.columns.has_duplicates: + left = left[right.columns] + + if check_column_type_loosely: + left_kinds = {k: i.kind for k, i in left.dtypes.items()} + right_kinds = {k: i.kind for k, i in left.dtypes.items()} + assert left_kinds == right_kinds + kwargs["check_column_type"] = False + + try: + pd.testing.assert_frame_equal(left, right, *args, **kwargs) + except Exception as err: + print(err) + raise + + +def assert_equal(x, y): + __tracebackhide__ = True # don't show this code in pytest outputs + try: + import pytest + except ImportError: + assert x == y + else: + if isinstance(x, list) and isinstance(y, list) and len(x) == len(y): + for n_, (x_, y_) in enumerate(zip(x, y)): + assert x_ == pytest.approx(y_), f"error at index {n_}" + elif isinstance(x, dict) and isinstance(y, dict) and x.keys() == y.keys(): + for n_ in x.keys(): + assert x[n_] == pytest.approx(y[n_]), f"error at key {n_}" + else: + try: + assert x == pytest.approx(y) + except (TypeError, AssertionError): + # pytest.approx() does not support nested data structures + for x_, y_ in zip(x, y): + assert x_ == pytest.approx(y_) + + +def progressive_checkpoint_test( + state, ref_target: Path, expected_models: list[str], name: str = "unnamed-example" +) -> None: + """ + Compare the results of a pipeline to a reference pipeline. + + Parameters + ---------- + state : workflow.State + ref_target : Path + Location of the reference pipeline file. If this file does not exist, + it will be created (and the test will fail). + expected_models : list[str] + List of model names to run and compare results against the reference + pipeline. + name : str, optional + Name of the test example used in logging, by default "unnamed-example" + """ + + for step_name in expected_models: + state.run.by_name(step_name) + if ref_target.exists(): + try: + state.checkpoint.check_against(ref_target, checkpoint_name=step_name) + except Exception: + print(f"> {name} {step_name}: ERROR") + raise + else: + print(f"> {name} {step_name}: ok") + else: + print(f"> {name} {step_name}: regenerated") + + # generate the reference pipeline if it did not exist + if not ref_target.exists(): + state.checkpoint.store.make_zip_archive(ref_target) + raise RuntimeError( + f"Reference pipeline {ref_target} did not exist, so it was created." + ) diff --git a/activitysim/core/test/configs/custom_logging.yaml b/activitysim/core/test/configs/custom_logging.yaml index 71f1e6d4f..e3fb9852d 100644 --- a/activitysim/core/test/configs/custom_logging.yaml +++ b/activitysim/core/test/configs/custom_logging.yaml @@ -28,7 +28,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['xasim.log'] + filename: + get_log_file_path: 'xasim.log' mode: w formatter: simpleFormatter level: NOTSET @@ -51,4 +52,3 @@ logging: class: logging.Formatter format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' datefmt: '%d/%m/%Y %H:%M:%S' - diff --git a/activitysim/core/test/configs/logging.yaml b/activitysim/core/test/configs/logging.yaml index 35067d008..6d02e2ed3 100644 --- a/activitysim/core/test/configs/logging.yaml +++ b/activitysim/core/test/configs/logging.yaml @@ -28,7 +28,7 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: activitysim.log mode: w formatter: simpleFormatter level: NOTSET @@ -51,4 +51,3 @@ logging: class: logging.Formatter format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' datefmt: '%d/%m/%Y %H:%M:%S' - diff --git a/activitysim/core/test/extensions/steps.py b/activitysim/core/test/extensions/steps.py index baa894c69..677285316 100644 --- a/activitysim/core/test/extensions/steps.py +++ b/activitysim/core/test/extensions/steps.py @@ -1,64 +1,66 @@ +from __future__ import annotations + import pandas as pd -from activitysim.core import inject, pipeline, tracing +from activitysim.core import workflow -@inject.step() -def step1(): +@workflow.step +def step1(state: workflow.State) -> None: table1 = pd.DataFrame({"c": [1, 2, 3]}) - inject.add_table("table1", table1) + state.add_table("table1", table1) -@inject.step() -def step2(): +@workflow.step +def step2(state: workflow.State) -> None: table1 = pd.DataFrame({"c": [2, 4, 6]}) - inject.add_table("table2", table1) + state.add_table("table2", table1) -@inject.step() -def step3(): +@workflow.step +def step3(state: workflow.State) -> None: table1 = pd.DataFrame({"c": [3, 6, 9]}) - inject.add_table("table3", table1) + state.add_table("table3", table1) -@inject.step() -def step_add_col(): +@workflow.step +def step_add_col(state: workflow.State) -> None: - table_name = inject.get_step_arg("table_name") + table_name = state.get_step_arg("table_name") assert table_name is not None - col_name = inject.get_step_arg("column_name") + col_name = state.get_step_arg("column_name") assert col_name is not None - table = pipeline.get_table(table_name) + table = state.get_dataframe(table_name) assert col_name not in table.columns table[col_name] = table.index + (1000 * len(table.columns)) - pipeline.replace_table(table_name, table) + state.add_table(table_name, table) -@inject.step() -def step_forget_tab(): +@workflow.step +def step_forget_tab(state: workflow.State) -> None: - table_name = inject.get_step_arg("table_name") + table_name = state.get_step_arg("table_name") assert table_name is not None - table = pipeline.get_table(table_name) + table = state.get_dataframe(table_name) - pipeline.drop_table(table_name) + state.drop_table(table_name) -@inject.step() -def create_households(trace_hh_id): +@workflow.step +def create_households(state: workflow.State) -> None: df = pd.DataFrame({"household_id": [1, 2, 3], "home_zone_id": {100, 100, 101}}) - inject.add_table("households", df) + state.add_table("households", df) - pipeline.get_rn_generator().add_channel("households", df) + state.get_rn_generator().add_channel("households", df) - tracing.register_traceable_table("households", df) + state.tracing.register_traceable_table("households", df) diff --git a/activitysim/core/test/test_assign.py b/activitysim/core/test/test_assign.py index 381871106..e018ec1d5 100644 --- a/activitysim/core/test/test_assign.py +++ b/activitysim/core/test/test_assign.py @@ -1,5 +1,7 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import logging.config import os.path @@ -8,12 +10,7 @@ import pandas as pd import pytest -from .. import assign, config, inject, tracing - - -def setup_function(): - configs_dir = os.path.join(os.path.dirname(__file__), "configs") - inject.add_injectable("configs_dir", configs_dir) +from activitysim.core import assign, workflow def close_handlers(): @@ -26,9 +23,11 @@ def close_handlers(): logger.setLevel(logging.NOTSET) -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +@pytest.fixture +def state() -> workflow.State: + state = workflow.State() + state.initialize_filesystem(working_dir=os.path.dirname(__file__)) + return state @pytest.fixture(scope="module") @@ -51,22 +50,27 @@ def data(data_name): return pd.read_csv(data_name) -def test_read_model_spec(): - spec = assign.read_assignment_spec(config.config_file_path("assignment_spec.csv")) +def test_read_model_spec(state: workflow.State): + spec = assign.read_assignment_spec( + state.filesystem.get_config_file_path("assignment_spec.csv") + ) assert len(spec) == 8 assert list(spec.columns) == ["description", "target", "expression"] -def test_assign_variables(capsys, data): +def test_assign_variables(state: workflow.State, capsys, data): + state.default_settings() - spec = assign.read_assignment_spec(config.config_file_path("assignment_spec.csv")) + spec = assign.read_assignment_spec( + state.filesystem.get_config_file_path("assignment_spec.csv") + ) locals_d = {"CONSTANT": 7, "_shadow": 99} results, trace_results, trace_assigned_locals = assign.assign_variables( - spec, data, locals_d, trace_rows=None + state, spec, data, locals_d, trace_rows=None ) print(results) @@ -81,7 +85,7 @@ def test_assign_variables(capsys, data): trace_rows = [False, True, False] results, trace_results, trace_assigned_locals = assign.assign_variables( - spec, data, locals_d, trace_rows=trace_rows + state, spec, data, locals_d, trace_rows=trace_rows ) # should get same results as before @@ -108,10 +112,11 @@ def test_assign_variables(capsys, data): out, err = capsys.readouterr() -def test_assign_variables_aliased(capsys, data): +def test_assign_variables_aliased(state: workflow.State, capsys, data): + state.default_settings() spec = assign.read_assignment_spec( - config.config_file_path("assignment_spec_alias_df.csv") + state.filesystem.get_config_file_path("assignment_spec_alias_df.csv") ) locals_d = {"CONSTANT": 7, "_shadow": 99} @@ -119,7 +124,7 @@ def test_assign_variables_aliased(capsys, data): trace_rows = [False, True, False] results, trace_results, trace_assigned_locals = assign.assign_variables( - spec, data, locals_d, df_alias="aliased_df", trace_rows=trace_rows + state, spec, data, locals_d, df_alias="aliased_df", trace_rows=trace_rows ) print(results) @@ -146,17 +151,18 @@ def test_assign_variables_aliased(capsys, data): out, err = capsys.readouterr() -def test_assign_variables_failing(capsys, data): +def test_assign_variables_failing(state: workflow.State, capsys, data): + state.default_settings() close_handlers() output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) + state.filesystem.output_dir = output_dir - tracing.config_logger(basic=True) + state.logging.config_logger(basic=True) spec = assign.read_assignment_spec( - config.config_file_path("assignment_spec_failing.csv") + state.filesystem.get_config_file_path("assignment_spec_failing.csv") ) locals_d = { @@ -166,8 +172,8 @@ def test_assign_variables_failing(capsys, data): } with pytest.raises(NameError) as excinfo: - results, trace_results = assign.assign_variables( - spec, data, locals_d, trace_rows=None + results, trace_results, trace_assigned_locals = assign.assign_variables( + state, spec, data, locals_d, trace_rows=None ) out, err = capsys.readouterr() diff --git a/activitysim/core/test/test_inject_defaults.py b/activitysim/core/test/test_inject_defaults.py index 82e106984..399756ae0 100644 --- a/activitysim/core/test/test_inject_defaults.py +++ b/activitysim/core/test/test_inject_defaults.py @@ -1,40 +1,40 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import os +from pathlib import Path import pytest +from pydantic import ValidationError # Note that the following import statement has the side-effect of registering injectables: -from .. import config, inject - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +from activitysim.core import workflow +from activitysim.core.configuration import Settings +from activitysim.core.exceptions import StateAccessError def test_defaults(): - inject.clear_cache() - - with pytest.raises(RuntimeError) as excinfo: - inject.get_injectable("configs_dir") - assert "directory does not exist" in str(excinfo.value) + state = workflow.State() + with pytest.raises(ValidationError): + state.initialize_filesystem(working_dir=Path(__file__).parents[1]) - with pytest.raises(RuntimeError) as excinfo: - inject.get_injectable("data_dir") - assert "directory does not exist" in str(excinfo.value) + work_dir = Path(__file__).parents[0] + state.initialize_filesystem(working_dir=work_dir) - with pytest.raises(RuntimeError) as excinfo: - output_dir = inject.get_injectable("output_dir") - print("output_dir", output_dir) - assert "directory does not exist" in str(excinfo.value) + assert state.filesystem.get_configs_dir() == (work_dir.joinpath("configs"),) + assert state.filesystem.get_data_dir() == (work_dir.joinpath("data"),) + assert state.filesystem.get_output_dir() == work_dir.joinpath("output") configs_dir = os.path.join(os.path.dirname(__file__), "configs_test_defaults") - inject.add_injectable("configs_dir", configs_dir) + with pytest.raises(ValidationError): + # can't write one path to configs_dir, must be a tuple + state.filesystem.configs_dir = Path(configs_dir) + state.filesystem.configs_dir = (Path(configs_dir),) - settings = inject.get_injectable("settings") - assert isinstance(settings, dict) + with pytest.raises(StateAccessError): + settings = state.settings - data_dir = os.path.join(os.path.dirname(__file__), "data") - inject.add_injectable("data_dir", data_dir) + state.load_settings() + assert isinstance(state.settings, Settings) diff --git a/activitysim/core/test/test_input.py b/activitysim/core/test/test_input.py index f695020b6..bedf100d7 100644 --- a/activitysim/core/test/test_input.py +++ b/activitysim/core/test/test_input.py @@ -1,5 +1,7 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import os import pandas as pd @@ -7,7 +9,7 @@ import yaml # Note that the following import statement has the side-effect of registering injectables: -from activitysim.core import config, inject, input +from activitysim.core import configuration, input, workflow @pytest.fixture(scope="module") @@ -21,21 +23,23 @@ def seed_households(): @pytest.fixture(scope="module") -def data_dir(): +def state(): configs_dir = os.path.join(os.path.dirname(__file__), "configs") - inject.add_injectable("configs_dir", configs_dir) output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) data_dir = os.path.join(os.path.dirname(__file__), "temp_data") if not os.path.exists(data_dir): os.mkdir(data_dir) - inject.add_injectable("data_dir", data_dir) + state = workflow.State().initialize_filesystem( + configs_dir=(configs_dir,), + output_dir=output_dir, + data_dir=(data_dir,), + ) - yield data_dir + yield state for file in os.listdir(data_dir): os.remove(os.path.join(data_dir, file)) @@ -43,17 +47,17 @@ def data_dir(): os.rmdir(data_dir) -def test_missing_table_list(data_dir): +def test_missing_table_list(state): - settings = inject.get_injectable("settings") - assert isinstance(settings, dict) + state.load_settings() + assert isinstance(state.settings, configuration.Settings) with pytest.raises(AssertionError) as excinfo: - input.read_input_table("households") + input.read_input_table(state, "households") assert "no input_table_list found" in str(excinfo.value) -def test_csv_reader(seed_households, data_dir): +def test_csv_reader(seed_households, state): settings_yaml = """ input_table_list: @@ -65,19 +69,20 @@ def test_csv_reader(seed_households, data_dir): """ settings = yaml.load(settings_yaml, Loader=yaml.SafeLoader) - inject.add_injectable("settings", settings) + settings = configuration.Settings.model_validate(settings) + state.settings = settings - hh_file = os.path.join(data_dir, "households.csv") + hh_file = state.filesystem.get_data_dir()[0].joinpath("households.csv") seed_households.to_csv(hh_file, index=False) assert os.path.isfile(hh_file) - df = input.read_input_table("households") + df = input.read_input_table(state, "households") assert df.index.name == "household_id" -def test_hdf_reader1(seed_households, data_dir): +def test_hdf_reader1(seed_households, state): settings_yaml = """ input_table_list: @@ -89,19 +94,20 @@ def test_hdf_reader1(seed_households, data_dir): """ settings = yaml.load(settings_yaml, Loader=yaml.SafeLoader) - inject.add_injectable("settings", settings) + settings = configuration.Settings.model_validate(settings) + state.settings = settings - hh_file = os.path.join(data_dir, "households.h5") + hh_file = state.filesystem.get_data_dir()[0].joinpath("households.h5") seed_households.to_hdf(hh_file, key="households", mode="w") assert os.path.isfile(hh_file) - df = input.read_input_table("households") + df = input.read_input_table(state, "households") assert df.index.name == "household_id" -def test_hdf_reader2(seed_households, data_dir): +def test_hdf_reader2(seed_households, state): settings_yaml = """ input_table_list: @@ -114,19 +120,20 @@ def test_hdf_reader2(seed_households, data_dir): """ settings = yaml.load(settings_yaml, Loader=yaml.SafeLoader) - inject.add_injectable("settings", settings) + settings = configuration.Settings.model_validate(settings) + state.settings = settings - hh_file = os.path.join(data_dir, "households.h5") + hh_file = state.filesystem.get_data_dir()[0].joinpath("households.h5") seed_households.to_hdf(hh_file, key="seed_households", mode="w") assert os.path.isfile(hh_file) - df = input.read_input_table("households") + df = input.read_input_table(state, "households") assert df.index.name == "household_id" -def test_hdf_reader3(seed_households, data_dir): +def test_hdf_reader3(seed_households, state): settings_yaml = """ input_store: input_data.h5 @@ -138,19 +145,20 @@ def test_hdf_reader3(seed_households, data_dir): """ settings = yaml.load(settings_yaml, Loader=yaml.SafeLoader) - inject.add_injectable("settings", settings) + settings = configuration.Settings.model_validate(settings) + state.settings = settings - hh_file = os.path.join(data_dir, "input_data.h5") + hh_file = state.filesystem.get_data_dir()[0].joinpath("input_data.h5") seed_households.to_hdf(hh_file, key="households", mode="w") assert os.path.isfile(hh_file) - df = input.read_input_table("households") + df = input.read_input_table(state, "households") assert df.index.name == "household_id" -def test_missing_filename(seed_households, data_dir): +def test_missing_filename(seed_households, state): settings_yaml = """ input_table_list: @@ -161,14 +169,15 @@ def test_missing_filename(seed_households, data_dir): """ settings = yaml.load(settings_yaml, Loader=yaml.SafeLoader) - inject.add_injectable("settings", settings) + settings = configuration.Settings.model_validate(settings) + state.settings = settings with pytest.raises(AssertionError) as excinfo: - input.read_input_table("households") + input.read_input_table(state, "households") assert "no input file provided" in str(excinfo.value) -def test_create_input_store(seed_households, data_dir): +def test_create_input_store(seed_households, state): settings_yaml = """ create_input_store: True @@ -182,19 +191,23 @@ def test_create_input_store(seed_households, data_dir): """ settings = yaml.load(settings_yaml, Loader=yaml.SafeLoader) - inject.add_injectable("settings", settings) + settings = configuration.Settings.model_validate(settings) + state.settings = settings - hh_file = os.path.join(data_dir, "households.csv") + hh_file = state.filesystem.get_data_dir()[0].joinpath("households.csv") seed_households.to_csv(hh_file, index=False) assert os.path.isfile(hh_file) - df = input.read_input_table("households") - - assert df.index.name == "household_id" - - output_store = os.path.join(inject.get_injectable("output_dir"), "input_data.h5") - assert os.path.exists(output_store) - - store_df = pd.read_hdf(output_store, "seed_households") - assert store_df.equals(seed_households) + with pytest.raises(NotImplementedError): + df = input.read_input_table(state, "households") + + # TODO if create_input_store is ever implemented + # + # assert df.index.name == "household_id" + # + # output_store = os.path.join(inject.get_injectable("output_dir"), "input_data.h5") + # assert os.path.exists(output_store) + # + # store_df = pd.read_hdf(output_store, "seed_households") + # assert store_df.equals(seed_households) diff --git a/activitysim/core/test/test_logging.py b/activitysim/core/test/test_logging.py new file mode 100644 index 000000000..b99e80896 --- /dev/null +++ b/activitysim/core/test/test_logging.py @@ -0,0 +1,157 @@ +# ActivitySim +# See full license in LICENSE.txt. +from __future__ import annotations + +import logging +import textwrap + +import pytest +import yaml + +from activitysim.core import workflow + + +def close_handlers(): + loggers = logging.Logger.manager.loggerDict + for name in loggers: + logger = logging.getLogger(name) + logger.handlers = [] + logger.propagate = True + logger.setLevel(logging.NOTSET) + + +logging_config_content = { + "simple": """ + --- + logging: + version: 1 + disable_existing_loggers: true + loggers: + activitysim: + level: DEBUG + handlers: [logfile, console] + propagate: false + handlers: + logfile: + class: logging.FileHandler + filename: activitysim.log + mode: w + formatter: simpleFormatter + level: NOTSET + console: + class: logging.StreamHandler + stream: ext://sys.stdout + formatter: simpleFormatter + level: WARNING + formatters: + simpleFormatter: + class: logging.Formatter + format: '%(levelname)s - %(name)s - %(message)s' + datefmt: '%d/%m/%Y %H:%M:%S' + ... + """, + "functional": """ + --- + logging: + version: 1 + disable_existing_loggers: true + loggers: + activitysim: + level: DEBUG + handlers: [logfile, console] + propagate: false + handlers: + logfile: + class: logging.FileHandler + filename: + get_log_file_path: 'activitysim_from_func.log' + mode: w + formatter: simpleFormatter + level: NOTSET + console: + class: logging.StreamHandler + stream: ext://sys.stdout + formatter: simpleFormatter + level: WARNING + formatters: + simpleFormatter: + class: logging.Formatter + format: '%(levelname)s - %(name)s - %(message)s' + datefmt: '%d/%m/%Y %H:%M:%S' + ... + """, + "unsecure": """ + --- + logging: + version: 1 + disable_existing_loggers: true + loggers: + activitysim: + level: DEBUG + handlers: [logfile, console] + propagate: false + handlers: + logfile: + class: logging.FileHandler + filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim_unsecure.log'] + mode: w + formatter: simpleFormatter + level: NOTSET + console: + class: logging.StreamHandler + stream: ext://sys.stdout + formatter: simpleFormatter + level: WARNING + formatters: + simpleFormatter: + class: logging.Formatter + format: '%(levelname)s - %(name)s - %(message)s' + datefmt: '%d/%m/%Y %H:%M:%S' + ... + """, +} + + +@pytest.mark.parametrize("logging_yaml", logging_config_content.keys()) +def test_config_logger(capsys, logging_yaml): + + print(logging_config_content[logging_yaml]) + + state = workflow.State.make_temp() + state.filesystem.get_configs_dir()[0].joinpath("logging.yaml").write_text( + textwrap.dedent(logging_config_content[logging_yaml]) + ) + + if logging_yaml == "unsecure": + with pytest.raises(yaml.constructor.ConstructorError): + state.logging.config_logger() + return + + state.logging.config_logger() + + logger = logging.getLogger("activitysim") + + file_handlers = [h for h in logger.handlers if type(h) is logging.FileHandler] + assert len(file_handlers) == 1 + asim_logger_baseFilename = file_handlers[0].baseFilename + + logger.info("test_config_logger") + logger.info("log_info") + logger.warning("log_warn1") + + out, err = capsys.readouterr() + + assert "could not find conf file" not in out + assert "log_warn1" in out + assert "log_info" not in out + + close_handlers() + + logger = logging.getLogger(__name__) + logger.warning("log_warn2") + + with open(asim_logger_baseFilename) as content_file: + content = content_file.read() + print(content) + assert "log_warn1" in content + assert "log_warn2" not in content diff --git a/activitysim/core/test/test_logit.py b/activitysim/core/test/test_logit.py index 8253149e1..e249475de 100644 --- a/activitysim/core/test/test_logit.py +++ b/activitysim/core/test/test_logit.py @@ -1,5 +1,6 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import os.path @@ -8,18 +9,8 @@ import pandas.testing as pdt import pytest -from .. import inject, logit -from ..simulate import eval_variables - - -def setup_function(): - configs_dir = os.path.join(os.path.dirname(__file__), "configs") - inject.add_injectable("configs_dir", configs_dir) - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +from activitysim.core import logit, workflow +from activitysim.core.simulate import eval_variables @pytest.fixture(scope="module") @@ -27,15 +18,6 @@ def data_dir(): return os.path.join(os.path.dirname(__file__), "data") -def add_canonical_dirs(): - - configs_dir = os.path.join(os.path.dirname(__file__), "configs") - inject.add_injectable("configs_dir", configs_dir) - - output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) - - # this is lifted straight from urbansim's test_mnl.py @pytest.fixture( scope="module", @@ -79,7 +61,8 @@ def spec(test_data): @pytest.fixture def utilities(choosers, spec, test_data): - vars = eval_variables(spec.index, choosers) + state = workflow.State().default_settings() + vars = eval_variables(state, spec.index, choosers) utils = vars.dot(spec).astype("float") return pd.DataFrame( utils.values.reshape(test_data["probabilities"].shape), @@ -88,33 +71,57 @@ def utilities(choosers, spec, test_data): def test_utils_to_probs(utilities, test_data): - probs = logit.utils_to_probs(utilities, trace_label=None) + state = workflow.State().default_settings() + probs = logit.utils_to_probs(state, utilities, trace_label=None) pdt.assert_frame_equal(probs, test_data["probabilities"]) def test_utils_to_probs_raises(): - - add_canonical_dirs() - + state = workflow.State().default_settings() idx = pd.Index(name="household_id", data=[1]) with pytest.raises(RuntimeError) as excinfo: logit.utils_to_probs( - pd.DataFrame([[1, 2, np.inf, 3]], index=idx), trace_label=None + state, + pd.DataFrame([[1, 2, np.inf, 3]], index=idx), + trace_label=None, + overflow_protection=False, ) assert "infinite exponentiated utilities" in str(excinfo.value) with pytest.raises(RuntimeError) as excinfo: logit.utils_to_probs( - pd.DataFrame([[-999, -999, -999, -999]], index=idx), trace_label=None + state, + pd.DataFrame([[1, 2, 9999, 3]], index=idx), + trace_label=None, + overflow_protection=False, + ) + assert "infinite exponentiated utilities" in str(excinfo.value) + + with pytest.raises(RuntimeError) as excinfo: + logit.utils_to_probs( + state, + pd.DataFrame([[-999, -999, -999, -999]], index=idx), + trace_label=None, + overflow_protection=False, ) assert "all probabilities are zero" in str(excinfo.value) + # test that overflow protection works + z = logit.utils_to_probs( + state, + pd.DataFrame([[1, 2, 9999, 3]], index=idx), + trace_label=None, + overflow_protection=True, + ) + assert np.asarray(z).ravel() == pytest.approx(np.asarray([0.0, 0.0, 1.0, 0.0])) + def test_make_choices_only_one(): + state = workflow.State().default_settings() probs = pd.DataFrame( [[1, 0, 0], [0, 1, 0]], columns=["a", "b", "c"], index=["x", "y"] ) - choices, rands = logit.make_choices(probs) + choices, rands = logit.make_choices(state, probs) pdt.assert_series_equal( choices, pd.Series([0, 1], index=["x", "y"]), check_dtype=False @@ -122,8 +129,9 @@ def test_make_choices_only_one(): def test_make_choices_real_probs(utilities): - probs = logit.utils_to_probs(utilities, trace_label=None) - choices, rands = logit.make_choices(probs) + state = workflow.State().default_settings() + probs = logit.utils_to_probs(state, utilities, trace_label=None) + choices, rands = logit.make_choices(state, probs) pdt.assert_series_equal( choices, @@ -151,7 +159,9 @@ def test_interaction_dataset_no_sample(interaction_choosers, interaction_alts): index=[1, 2, 3, 4] * 4, ) - interacted = logit.interaction_dataset(interaction_choosers, interaction_alts) + interacted = logit.interaction_dataset( + workflow.State().default_settings(), interaction_choosers, interaction_alts + ) interacted, expected = interacted.align(expected, axis=1) @@ -170,7 +180,10 @@ def test_interaction_dataset_sampled(interaction_choosers, interaction_alts): ) interacted = logit.interaction_dataset( - interaction_choosers, interaction_alts, sample_size=2 + workflow.State().default_settings(), + interaction_choosers, + interaction_alts, + sample_size=2, ) interacted, expected = interacted.align(expected, axis=1) diff --git a/activitysim/core/test/test_los.py b/activitysim/core/test/test_los.py index 9a99e9b6b..00372a53e 100644 --- a/activitysim/core/test/test_los.py +++ b/activitysim/core/test/test_los.py @@ -1,5 +1,6 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import os @@ -9,43 +10,42 @@ import pandas.testing as pdt import pytest -from .. import inject, los - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +import activitysim.abm.tables # noqa -- load table defs +from activitysim.core import exceptions, los, workflow def add_canonical_dirs(configs_dir_name): + state = workflow.State() configs_dir = os.path.join(os.path.dirname(__file__), f"los/{configs_dir_name}") - inject.add_injectable("configs_dir", configs_dir) - data_dir = os.path.join(os.path.dirname(__file__), f"los/data") - inject.add_injectable("data_dir", data_dir) - - output_dir = os.path.join(os.path.dirname(__file__), f"output") - inject.add_injectable("output_dir", output_dir) + output_dir = os.path.join(os.path.dirname(__file__), "output") + state.initialize_filesystem( + working_dir=os.path.dirname(__file__), + configs_dir=(configs_dir,), + output_dir=output_dir, + data_dir=(data_dir,), + ) + return state def test_legacy_configs(): - add_canonical_dirs("configs_legacy_settings") - - with pytest.warns(FutureWarning): - network_los = los.Network_LOS() + state = add_canonical_dirs("configs_legacy_settings").load_settings() - assert network_los.setting("zone_system") == los.ONE_ZONE + with pytest.raises(exceptions.SettingsFileNotFoundError): + network_los = los.Network_LOS(state) - assert "z1_taz_skims.omx" in network_los.omx_file_names("taz") + # if backwards compatability is ever fixed... + # assert network_los.setting("zone_system") == los.ONE_ZONE + # assert "z1_taz_skims.omx" in network_los.omx_file_names("taz") def test_one_zone(): - add_canonical_dirs("configs_1z") + state = add_canonical_dirs("configs_1z").load_settings() - network_los = los.Network_LOS() + network_los = los.Network_LOS(state) assert network_los.setting("zone_system") == los.ONE_ZONE @@ -89,9 +89,9 @@ def test_one_zone(): def test_two_zone(): - add_canonical_dirs("configs_2z") + state = add_canonical_dirs("configs_2z").load_settings() - network_los = los.Network_LOS() + network_los = los.Network_LOS(state) assert network_los.setting("zone_system") == los.TWO_ZONE @@ -139,9 +139,9 @@ def test_two_zone(): def test_three_zone(): - add_canonical_dirs("configs_3z") + state = add_canonical_dirs("configs_3z").load_settings() - network_los = los.Network_LOS() + network_los = los.Network_LOS(state) assert network_los.setting("zone_system") == los.THREE_ZONE @@ -164,8 +164,8 @@ def test_three_zone(): def test_30_minute_windows(): - add_canonical_dirs("configs_test_misc") - network_los = los.Network_LOS(los_settings_file_name="settings_30_min.yaml") + state = add_canonical_dirs("configs_test_misc").default_settings() + network_los = los.Network_LOS(state, los_settings_file_name="settings_30_min.yaml") assert network_los.skim_time_period_label(1) == "EA" assert network_los.skim_time_period_label(16) == "AM" @@ -181,8 +181,8 @@ def test_30_minute_windows(): def test_60_minute_windows(): - add_canonical_dirs("configs_test_misc") - network_los = los.Network_LOS(los_settings_file_name="settings_60_min.yaml") + state = add_canonical_dirs("configs_test_misc").default_settings() + network_los = los.Network_LOS(state, los_settings_file_name="settings_60_min.yaml") assert network_los.skim_time_period_label(1) == "EA" assert network_los.skim_time_period_label(8) == "AM" @@ -198,8 +198,8 @@ def test_60_minute_windows(): def test_1_week_time_window(): - add_canonical_dirs("configs_test_misc") - network_los = los.Network_LOS(los_settings_file_name="settings_1_week.yaml") + state = add_canonical_dirs("configs_test_misc").default_settings() + network_los = los.Network_LOS(state, los_settings_file_name="settings_1_week.yaml") assert network_los.skim_time_period_label(1) == "Sunday" assert network_los.skim_time_period_label(2) == "Monday" @@ -229,9 +229,9 @@ def test_1_week_time_window(): def test_skim_time_periods_future_warning(): - add_canonical_dirs("configs_test_misc") + state = add_canonical_dirs("configs_test_misc").default_settings() with pytest.warns(FutureWarning) as warning_test: network_los = los.Network_LOS( - los_settings_file_name="settings_legacy_hours_key.yaml" + state, los_settings_file_name="settings_legacy_hours_key.yaml" ) diff --git a/activitysim/core/test/test_pipeline.py b/activitysim/core/test/test_pipeline.py index 724aa1882..e061fdbb9 100644 --- a/activitysim/core/test/test_pipeline.py +++ b/activitysim/core/test/test_pipeline.py @@ -1,44 +1,40 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import os import pytest import tables -from activitysim.core import inject, pipeline, tracing - -from .extensions import steps +from activitysim.core import workflow +from activitysim.core.test.extensions import steps # set the max households for all tests (this is to limit memory use on travis) HOUSEHOLDS_SAMPLE_SIZE = 100 HH_ID = 961042 -def setup_function(): - - inject.reinject_decorated_tables() - - inject.remove_injectable("skim_dict") - inject.remove_injectable("skim_stack") +@pytest.fixture +def state(): configs_dir = os.path.join(os.path.dirname(__file__), "configs") - inject.add_injectable("configs_dir", configs_dir) - output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) - data_dir = os.path.join(os.path.dirname(__file__), "data") - inject.add_injectable("data_dir", data_dir) - - inject.clear_cache() - tracing.config_logger() + state = ( + workflow.State() + .initialize_filesystem( + configs_dir=(configs_dir,), + output_dir=output_dir, + data_dir=(data_dir,), + ) + .load_settings() + ) - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() + state.logging.config_logger() + return state def close_handlers(): @@ -52,13 +48,12 @@ def close_handlers(): # @pytest.mark.filterwarnings('ignore::tables.NaturalNameWarning') -def test_pipeline_run(): +def test_pipeline_run(state): - inject.add_step("step1", steps.step1) - inject.add_step("step2", steps.step2) - inject.add_step("step3", steps.step3) - inject.add_step("step_add_col", steps.step_add_col) - inject.dump_state() + # workflow.step(steps.step1, step_name="step1") + # workflow.step(steps.step2, step_name="step2") + # workflow.step(steps.step3, step_name="step3") + # workflow.step(steps.step_add_col, step_name="step_add_col") _MODELS = [ "step1", @@ -67,43 +62,43 @@ def test_pipeline_run(): "step_add_col.table_name=table2;column_name=c2", ] - pipeline.run(models=_MODELS, resume_after=None) + state.run(models=_MODELS, resume_after=None) - checkpoints = pipeline.get_checkpoints() + checkpoints = state.checkpoint.get_inventory() print("checkpoints\n", checkpoints) - c2 = pipeline.get_table("table2").c2 + c2 = state.checkpoint.load_dataframe("table2").c2 # get table from - pipeline.get_table("table1", checkpoint_name="step3") + state.checkpoint.load_dataframe("table1", checkpoint_name="step3") # try to get a table from a step before it was checkpointed with pytest.raises(RuntimeError) as excinfo: - pipeline.get_table("table2", checkpoint_name="step1") + state.checkpoint.load_dataframe("table2", checkpoint_name="step1") assert "not in checkpoint 'step1'" in str(excinfo.value) # try to get a non-existant table with pytest.raises(RuntimeError) as excinfo: - pipeline.get_table("bogus") + state.checkpoint.load_dataframe("bogus") assert "never checkpointed" in str(excinfo.value) # try to get an existing table from a non-existant checkpoint with pytest.raises(RuntimeError) as excinfo: - pipeline.get_table("table1", checkpoint_name="bogus") + state.checkpoint.load_dataframe("table1", checkpoint_name="bogus") assert "not in checkpoints" in str(excinfo.value) - pipeline.close_pipeline() + state.checkpoint.close_store() close_handlers() -def test_pipeline_checkpoint_drop(): +def test_pipeline_checkpoint_drop(state): - inject.add_step("step1", steps.step1) - inject.add_step("step2", steps.step2) - inject.add_step("step3", steps.step3) - inject.add_step("step_add_col", steps.step_add_col) - inject.add_step("step_forget_tab", steps.step_forget_tab) + # workflow.step(steps.step1, step_name="step1") + # workflow.step(steps.step2, step_name="step2") + # workflow.step(steps.step3, step_name="step3") + # workflow.step(steps.step_add_col, step_name="step_add_col") + # workflow.step(steps.step_forget_tab, step_name="step_forget_tab") _MODELS = [ "step1", @@ -113,26 +108,26 @@ def test_pipeline_checkpoint_drop(): "step3", "step_forget_tab.table_name=table3", ] - pipeline.run(models=_MODELS, resume_after=None) + state.run(models=_MODELS, resume_after=None) - checkpoints = pipeline.get_checkpoints() + checkpoints = state.checkpoint.get_inventory() print("checkpoints\n", checkpoints) - pipeline.get_table("table1") + state.checkpoint.load_dataframe("table1") with pytest.raises(RuntimeError) as excinfo: - pipeline.get_table("table2") - assert "never checkpointed" in str(excinfo.value) + state.checkpoint.load_dataframe("table2") + # assert "never checkpointed" in str(excinfo.value) # can't get a dropped table from current checkpoint with pytest.raises(RuntimeError) as excinfo: - pipeline.get_table("table3") - assert "was dropped" in str(excinfo.value) + state.checkpoint.load_dataframe("table3") + # assert "was dropped" in str(excinfo.value) # ensure that we can still get table3 from a checkpoint at which it existed - pipeline.get_table("table3", checkpoint_name="step3") + state.checkpoint.load_dataframe("table3", checkpoint_name="step3") - pipeline.close_pipeline() + state.checkpoint.close_store() close_handlers() diff --git a/activitysim/core/test/test_random.py b/activitysim/core/test/test_random.py index 50b4f0dc5..4a461811f 100644 --- a/activitysim/core/test/test_random.py +++ b/activitysim/core/test/test_random.py @@ -1,5 +1,7 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import numpy as np import numpy.testing as npt import pandas as pd diff --git a/activitysim/core/test/test_simulate.py b/activitysim/core/test/test_simulate.py index ab100f6a9..9647b4945 100644 --- a/activitysim/core/test/test_simulate.py +++ b/activitysim/core/test/test_simulate.py @@ -1,5 +1,6 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import os.path @@ -9,40 +10,41 @@ import pandas.testing as pdt import pytest -from .. import inject, simulate +from activitysim.core import simulate, workflow -@pytest.fixture(scope="module") +@pytest.fixture def data_dir(): return os.path.join(os.path.dirname(__file__), "data") -@pytest.fixture(scope="module") +@pytest.fixture def spec_name(data_dir): return "sample_spec.csv" -@pytest.fixture(scope="module") -def spec(data_dir, spec_name): - return simulate.read_model_spec(file_name=spec_name) +@pytest.fixture +def state(data_dir) -> workflow.State: + state = workflow.State() + state.initialize_filesystem( + working_dir=os.path.dirname(__file__), data_dir=(data_dir,) + ).default_settings() + return state -@pytest.fixture(scope="module") -def data(data_dir): - return pd.read_csv(os.path.join(data_dir, "data.csv")) - +@pytest.fixture +def spec(state, spec_name): + return state.filesystem.read_model_spec(file_name=spec_name) -def setup_function(): - configs_dir = os.path.join(os.path.dirname(__file__), "configs") - inject.add_injectable("configs_dir", configs_dir) - output_dir = os.path.join(os.path.dirname(__file__), f"output") - inject.add_injectable("output_dir", output_dir) +@pytest.fixture +def data(data_dir): + return pd.read_csv(os.path.join(data_dir, "data.csv")) -def test_read_model_spec(spec_name): +def test_read_model_spec(state, spec_name): - spec = simulate.read_model_spec(file_name=spec_name) + spec = state.filesystem.read_model_spec(file_name=spec_name) assert len(spec) == 4 assert spec.index.name == "Expression" @@ -50,9 +52,9 @@ def test_read_model_spec(spec_name): npt.assert_array_equal(spec.values, [[1.1, 11], [2.2, 22], [3.3, 33], [4.4, 44]]) -def test_eval_variables(spec, data): +def test_eval_variables(state, spec, data): - result = simulate.eval_variables(spec.index, data) + result = simulate.eval_variables(state, spec.index, data) expected = pd.DataFrame( [[1, 0, 4, 1], [0, 1, 4, 1], [0, 1, 5, 1]], index=data.index, columns=spec.index @@ -69,21 +71,24 @@ def test_eval_variables(spec, data): pdt.assert_frame_equal(result, expected, check_names=False) -def test_simple_simulate(data, spec): +def test_simple_simulate(state, data, spec): - inject.add_injectable("settings", {"check_for_variability": False}) + state.settings.check_for_variability = False - choices = simulate.simple_simulate(choosers=data, spec=spec, nest_spec=None) + choices = simulate.simple_simulate(state, choosers=data, spec=spec, nest_spec=None) expected = pd.Series([1, 1, 1], index=data.index) pdt.assert_series_equal(choices, expected, check_dtype=False) -def test_simple_simulate_chunked(data, spec): - - inject.add_injectable("settings", {"check_for_variability": False}) +def test_simple_simulate_chunked(state, data, spec): + state.settings.check_for_variability = False + state.settings.chunk_size = 2 choices = simulate.simple_simulate( - choosers=data, spec=spec, nest_spec=None, chunk_size=2 + state, + choosers=data, + spec=spec, + nest_spec=None, ) expected = pd.Series([1, 1, 1], index=data.index) pdt.assert_series_equal(choices, expected, check_dtype=False) diff --git a/activitysim/core/test/test_skim.py b/activitysim/core/test/test_skim.py index a1e47779a..ff6d0a9d1 100644 --- a/activitysim/core/test/test_skim.py +++ b/activitysim/core/test/test_skim.py @@ -1,5 +1,6 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import numpy as np import numpy.testing as npt @@ -7,7 +8,7 @@ import pandas.testing as pdt import pytest -from .. import skim_dictionary +from activitysim.core import skim_dictionary, workflow @pytest.fixture @@ -35,7 +36,9 @@ def test_skims(data): skim_info.omx_shape = omx_shape skim_info.dtype_name = "int" - skim_dict = skim_dictionary.SkimDict("taz", skim_info, skim_data) + skim_dict = skim_dictionary.SkimDict( + workflow.State().default_settings(), "taz", skim_info, skim_data + ) skim_dict.offset_mapper.set_offset_int(0) # default is -1 skims = skim_dict.wrap("taz_l", "taz_r") @@ -73,7 +76,9 @@ def test_3dskims(data): skim_info.dtype_name = "int" skim_info.key1_block_offsets = {"SOV": 0} - skim_dict = skim_dictionary.SkimDict("taz", skim_info, skim_data) + skim_dict = skim_dictionary.SkimDict( + workflow.State().default_settings(), "taz", skim_info, skim_data + ) skim_dict.offset_mapper.set_offset_int(0) # default is -1 skims3d = skim_dict.wrap_3d(orig_key="taz_l", dest_key="taz_r", dim3_key="period") diff --git a/activitysim/core/test/test_timetable.py b/activitysim/core/test/test_timetable.py index e8ac8e555..576217ced 100644 --- a/activitysim/core/test/test_timetable.py +++ b/activitysim/core/test/test_timetable.py @@ -1,7 +1,6 @@ # ActivitySim # See full license in LICENSE.txt. - -from builtins import range +from __future__ import annotations import numpy as np import pandas as pd @@ -9,8 +8,9 @@ import pytest from numpy.testing import assert_array_equal -from .. import chunk -from .. import timetable as tt +from activitysim.core import chunk +from activitysim.core import timetable as tt +from activitysim.core import workflow @pytest.fixture @@ -56,7 +56,9 @@ def tdd_alts(): def test_basic(persons, tdd_alts): - with chunk.chunk_log("test_basic", base=True): + state = workflow.State().default_settings() + + with chunk.chunk_log(state, "test_basic", base=True): person_windows = tt.create_timetable_windows(persons, tdd_alts) diff --git a/activitysim/core/test/test_tracing.py b/activitysim/core/test/test_tracing.py index df88e0d36..8ae27add1 100644 --- a/activitysim/core/test/test_tracing.py +++ b/activitysim/core/test/test_tracing.py @@ -1,12 +1,15 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import os.path import pandas as pd import pytest -from .. import inject, tracing +from activitysim.abm.tables import table_dict +from activitysim.core import tracing, workflow def close_handlers(): @@ -19,27 +22,30 @@ def close_handlers(): logger.setLevel(logging.NOTSET) -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() - - def add_canonical_dirs(): - inject.clear_cache() + state = workflow.State() configs_dir = os.path.join(os.path.dirname(__file__), "configs") - inject.add_injectable("configs_dir", configs_dir) + state.add_injectable("configs_dir", configs_dir) output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) + state.add_injectable("output_dir", output_dir) + + state.initialize_filesystem( + working_dir=os.path.dirname(__file__), + configs_dir=(configs_dir,), + output_dir=output_dir, + ) + + return state def test_config_logger(capsys): - add_canonical_dirs() + state = add_canonical_dirs() - tracing.config_logger() + state.logging.config_logger() logger = logging.getLogger("activitysim") @@ -76,9 +82,9 @@ def test_config_logger(capsys): def test_print_summary(capsys): - add_canonical_dirs() + state = add_canonical_dirs() - tracing.config_logger() + state.logging.config_logger() tracing.print_summary( "label", df=pd.DataFrame(), describe=False, value_counts=False @@ -96,23 +102,24 @@ def test_print_summary(capsys): def test_register_households(capsys): - add_canonical_dirs() + state = add_canonical_dirs() + state.load_settings() - tracing.config_logger() + state.logging.config_logger() df = pd.DataFrame({"zort": ["a", "b", "c"]}, index=[1, 2, 3]) - inject.add_injectable("traceable_tables", ["households"]) - inject.add_injectable("trace_hh_id", 5) + state.tracing.traceable_tables = ["households"] + state.settings.trace_hh_id = 5 - tracing.register_traceable_table("households", df) + state.tracing.register_traceable_table("households", df) out, err = capsys.readouterr() # print out # don't consume output assert "Can't register table 'households' without index name" in out df.index.name = "household_id" - tracing.register_traceable_table("households", df) + state.tracing.register_traceable_table("households", df) out, err = capsys.readouterr() # print out # don't consume output @@ -124,22 +131,20 @@ def test_register_households(capsys): def test_register_tours(capsys): - add_canonical_dirs() + state = add_canonical_dirs().load_settings() - tracing.config_logger() + state.logging.config_logger() - inject.add_injectable("traceable_tables", ["households", "tours"]) + state.tracing.traceable_tables = ["households", "tours"] # in case another test injected this - inject.add_injectable("trace_tours", []) - inject.add_injectable( - "trace_hh_id", 3 - ) # need this or register_traceable_table is a nop + state.add_injectable("trace_tours", []) + state.settings.trace_hh_id = 3 tours_df = pd.DataFrame({"zort": ["a", "b", "c"]}, index=[10, 11, 12]) tours_df.index.name = "tour_id" - tracing.register_traceable_table("tours", tours_df) + state.tracing.register_traceable_table("tours", tours_df) out, err = capsys.readouterr() assert ( @@ -147,12 +152,12 @@ def test_register_tours(capsys): in out ) - inject.add_injectable("trace_hh_id", 3) + state.add_injectable("trace_hh_id", 3) households_df = pd.DataFrame({"dzing": ["a", "b", "c"]}, index=[1, 2, 3]) households_df.index.name = "household_id" - tracing.register_traceable_table("households", households_df) + state.tracing.register_traceable_table("households", households_df) - tracing.register_traceable_table("tours", tours_df) + state.tracing.register_traceable_table("tours", tours_df) out, err = capsys.readouterr() # print out # don't consume output @@ -160,13 +165,13 @@ def test_register_tours(capsys): tours_df["household_id"] = [1, 5, 3] - tracing.register_traceable_table("tours", tours_df) + state.tracing.register_traceable_table("tours", tours_df) out, err = capsys.readouterr() print(out) # don't consume output # should be tracing tour with tour_id 3 - traceable_table_ids = inject.get_injectable("traceable_table_ids") + traceable_table_ids = state.tracing.traceable_table_ids assert traceable_table_ids["tours"] == [12] close_handlers() @@ -174,12 +179,12 @@ def test_register_tours(capsys): def test_write_csv(capsys): - add_canonical_dirs() + state = add_canonical_dirs() - tracing.config_logger() + state.logging.config_logger() # should complain if df not a DataFrame or Series - tracing.write_csv(df="not a df or series", file_name="baddie") + state.tracing.write_csv(df="not a df or series", file_name="baddie") out, err = capsys.readouterr() @@ -212,16 +217,12 @@ def test_basic(capsys): close_handlers() - configs_dir = os.path.join(os.path.dirname(__file__), "configs") - inject.add_injectable("configs_dir", configs_dir) - - output_dir = os.path.join(os.path.dirname(__file__), "output") - inject.add_injectable("output_dir", output_dir) + state = add_canonical_dirs() # remove existing handlers or basicConfig is a NOP logging.getLogger().handlers = [] - tracing.config_logger(basic=True) + state.logging.config_logger(basic=True) logger = logging.getLogger() file_handlers = [h for h in logger.handlers if type(h) is logging.FileHandler] diff --git a/activitysim/core/test/test_util.py b/activitysim/core/test/test_util.py index 086e8a032..415ec1f9e 100644 --- a/activitysim/core/test/test_util.py +++ b/activitysim/core/test/test_util.py @@ -1,12 +1,13 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import numpy as np import pandas as pd import pandas.testing as pdt import pytest -from ..util import other_than, quick_loc_df, quick_loc_series, reindex +from ..util import other_than, quick_loc_df, quick_loc_series, reindex, df_from_dict @pytest.fixture(scope="module") @@ -61,3 +62,30 @@ def test_quick_loc_series(): assert list(quick_loc_series(loc_list, series)) == attrib_list assert list(quick_loc_series(loc_list, series)) == list(series.loc[loc_list]) + + +def test_df_from_dict(): + + index = [1, 2, 3, 4, 5] + df = pd.DataFrame({"attrib": [1, 2, 2, 3, 1]}, index=index) + + # scramble index order for one expression and not the other + sorted = df.eval("attrib.sort_values()") + not_sorted = df.eval("attrib * 1") + + # check above expressions + pdt.assert_series_equal( + sorted, pd.Series([1, 1, 2, 2, 3], index=[1, 5, 2, 3, 4]), check_names=False + ) + pdt.assert_series_equal(not_sorted, df.attrib, check_names=False) + + # create a new dataframe from the above expressions + values = {"sorted": sorted, "not_sorted": not_sorted} + new_df = df_from_dict(values, index) + + # index should become unscrambed and back to the same order as before + expected_df = pd.DataFrame( + {"sorted": [1, 2, 2, 3, 1], "not_sorted": [1, 2, 2, 3, 1]}, index=index + ) + + pdt.assert_frame_equal(new_df, expected_df) diff --git a/activitysim/core/test/utils_testing.py b/activitysim/core/test/utils_testing.py index a8a74fd3b..22cfd20bd 100644 --- a/activitysim/core/test/utils_testing.py +++ b/activitysim/core/test/utils_testing.py @@ -1,11 +1,4 @@ -# Orca -# Copyright (C) 2016 UrbanSim Inc. -# See full license in LICENSE. - -""" -Utilities used in testing of Orca. - -""" +from __future__ import annotations import numpy as np import numpy.testing as npt diff --git a/activitysim/core/testing.py b/activitysim/core/testing.py new file mode 100644 index 000000000..c2f1cddf8 --- /dev/null +++ b/activitysim/core/testing.py @@ -0,0 +1,3 @@ +from __future__ import annotations + +from activitysim.core.test import * diff --git a/activitysim/core/timetable.py b/activitysim/core/timetable.py index a2106bbe2..85ecc6954 100644 --- a/activitysim/core/timetable.py +++ b/activitysim/core/timetable.py @@ -1,5 +1,6 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import logging from builtins import object, range @@ -8,7 +9,7 @@ import numpy as np import pandas as pd -from activitysim.core import chunk, pipeline +from activitysim.core import chunk, configuration, workflow logger = logging.getLogger(__name__) @@ -352,7 +353,7 @@ def __init__(self, windows_df, tdd_alts_df, table_name=None): self.checkpoint_df = None # series to map window row index value to window row's ordinal index - from ..core.fast_mapping import FastMapping + from activitysim.core.fast_mapping import FastMapping self.window_row_ix = FastMapping( pd.Series(list(range(len(windows_df.index))), index=windows_df.index) @@ -379,6 +380,9 @@ def __init__(self, windows_df, tdd_alts_df, table_name=None): assert (tdd_alts_df.index == list(range(tdd_alts_df.shape[0]))).all() self.tdd_footprints = np.asanyarray([list(r) for r in w_strings]).astype(int) + # by default, do not attach state to this object. + self.state = None + def begin_transaction(self, transaction_loggers): """ begin a transaction for an estimator or list of estimators @@ -411,6 +415,10 @@ def export_for_numba(self): tt_windows=self.windows, ) + def attach_state(self, state: workflow.State): + self.state = state + return self + def slice_windows_by_row_id(self, window_row_ids): """ return windows array slice containing rows for specified window_row_ids @@ -442,7 +450,7 @@ def get_windows_df(self): # assert (self.windows_df.values == self.windows).all() return self.windows_df - def replace_table(self): + def replace_table(self, state: workflow.State): """ Save or replace windows_df DataFrame to pipeline with saved table name (specified when object instantiated.) @@ -464,7 +472,7 @@ def replace_table(self): # get windows_df from bottleneck function in case updates to self.person_window # do not write through to pandas dataframe - pipeline.replace_table(self.windows_table_name, self.get_windows_df()) + state.add_table(self.windows_table_name, self.get_windows_df()) def tour_available(self, window_row_ids, tdds): """ @@ -632,7 +640,7 @@ def adjacent_window_run_length(self, window_row_ids, periods, before): assert len(window_row_ids) == len(periods) trace_label = "tt.adjacent_window_run_length" - with chunk.chunk_log(trace_label): + with chunk.chunk_log(self.state, trace_label) as chunk_sizer: available_run_length = _available_run_length_2( self.windows, self.window_row_ix._mapper, @@ -642,7 +650,9 @@ def adjacent_window_run_length(self, window_row_ids, periods, before): periods.to_numpy(), ) - chunk.log_df(trace_label, "available_run_length", available_run_length) + chunk_sizer.log_df( + trace_label, "available_run_length", available_run_length + ) return pd.Series(available_run_length, index=window_row_ids.index) diff --git a/activitysim/core/tracing.py b/activitysim/core/tracing.py index 44707c0ae..88bf0fc16 100644 --- a/activitysim/core/tracing.py +++ b/activitysim/core/tracing.py @@ -1,29 +1,21 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import logging import logging.config -import multiprocessing # for process name import os -import sys import time -from builtins import next, range -from collections import OrderedDict +from builtins import range import numpy as np import pandas as pd -import yaml - -from activitysim.core import inject - -from . import config # Configurations ASIM_LOGGER = "activitysim" CSV_FILE_TYPE = "csv" LOGGING_CONF_FILE_NAME = "logging.yaml" - logger = logging.getLogger(__name__) timing_notes = set() @@ -43,7 +35,7 @@ def format(self, record): return super(ElapsedTimeFormatter, self).format(record) -def extend_trace_label(trace_label, extension): +def extend_trace_label(trace_label: str = None, extension: str = None) -> str | None: if trace_label: trace_label = "%s.%s" % (trace_label, extension) return trace_label @@ -66,61 +58,32 @@ def print_elapsed_time(msg=None, t0=None, debug=False): return t1 -def log_runtime(model_name, start_time=None, timing=None, force=False): - global timing_notes - - assert (start_time or timing) and not (start_time and timing) - - timing = timing if timing else time.time() - start_time - seconds = round(timing, 1) - minutes = round(timing / 60, 1) - - process_name = multiprocessing.current_process().name - - if config.setting("multiprocess", False) and not force: - # when benchmarking, log timing for each processes in its own log - if config.setting("benchmarking", False): - header = "component_name,duration" - with config.open_log_file( - f"timing_log.{process_name}.csv", "a", header - ) as log_file: - print(f"{model_name},{timing}", file=log_file) - # only continue to log runtime in global timing log for locutor - if not inject.get_injectable("locutor", False): - return - - header = "process_name,model_name,seconds,minutes,notes" - note = " ".join(timing_notes) - with config.open_log_file("timing_log.csv", "a", header) as log_file: - print(f"{process_name},{model_name},{seconds},{minutes},{note}", file=log_file) - - timing_notes.clear() - - -def delete_output_files(file_type, ignore=None, subdir=None): +def delete_output_files(state, file_type, ignore=None, subdir=None): """ - Delete files in output directory of specified type + Delete files in output directory of specified type. Parameters ---------- - output_dir: str - Directory of trace output CSVs - - Returns - ------- - Nothing + state : Pipeline + The output directory is read from the Pipeline. + file_type : str + File extension to delete. + ignore : list[Path-like] + Specific files to leave alone. + subdir : list[Path-like], optional + Subdirectories to scrub. If not given, the top level output directory + plus the 'log' and 'trace' directories will be scrubbed. """ - output_dir = inject.get_injectable("output_dir") + output_dir = state.filesystem.get_output_dir() subdir = [subdir] if subdir else None directories = subdir or ["", "log", "trace"] for subdir in directories: + dir = output_dir.joinpath(output_dir, subdir) if subdir else output_dir - dir = os.path.join(output_dir, subdir) if subdir else output_dir - - if not os.path.exists(dir): + if not dir.exists(): continue if ignore: @@ -143,16 +106,12 @@ def delete_output_files(file_type, ignore=None, subdir=None): print(e) -def delete_trace_files(): +def delete_trace_files(state): """ Delete CSV files in output_dir - - Returns - ------- - Nothing """ - delete_output_files(CSV_FILE_TYPE, subdir="trace") - delete_output_files(CSV_FILE_TYPE, subdir="log") + delete_output_files(state, CSV_FILE_TYPE, subdir="trace") + delete_output_files(state, CSV_FILE_TYPE, subdir="log") active_log_files = [ h.baseFilename @@ -160,54 +119,7 @@ def delete_trace_files(): if isinstance(h, logging.FileHandler) ] - delete_output_files("log", ignore=active_log_files) - - -def config_logger(basic=False): - """ - Configure logger - - look for conf file in configs_dir, if not found use basicConfig - - Returns - ------- - Nothing - """ - - # look for conf file in configs_dir - if basic: - log_config_file = None - else: - log_config_file = config.config_file_path( - LOGGING_CONF_FILE_NAME, mandatory=False - ) - - if log_config_file: - try: - with open(log_config_file) as f: - config_dict = yaml.load(f, Loader=yaml.UnsafeLoader) - except Exception as e: - print(f"Unable to read logging config file {log_config_file}") - raise e - - try: - config_dict = config_dict["logging"] - config_dict.setdefault("version", 1) - logging.config.dictConfig(config_dict) - except Exception as e: - print(f"Unable to config logging as specified in {log_config_file}") - raise e - - else: - logging.basicConfig(level=logging.INFO, stream=sys.stdout) - - logger = logging.getLogger(ASIM_LOGGER) - - if log_config_file: - logger.info("Read logging configuration from: %s" % log_config_file) - else: - print("Configured logging using basicConfig") - logger.info("Configured logging using basicConfig") + delete_output_files(state, "log", ignore=active_log_files) def print_summary(label, df, describe=False, value_counts=False): @@ -243,132 +155,9 @@ def print_summary(label, df, describe=False, value_counts=False): logger.info("%s summary:\n%s" % (label, df.describe())) -def initialize_traceable_tables(): - - traceable_table_ids = inject.get_injectable("traceable_table_ids", {}) - if len(traceable_table_ids) > 0: - logger.debug( - f"initialize_traceable_tables resetting table_ids for {list(traceable_table_ids.keys())}" - ) - inject.add_injectable("traceable_table_ids", {}) - - -def register_traceable_table(table_name, df): - """ - Register traceable table - - Parameters - ---------- - df: pandas.DataFrame - traced dataframe - - Returns - ------- - Nothing - """ - - # add index name to traceable_table_indexes - - logger.debug(f"register_traceable_table {table_name}") - - traceable_tables = inject.get_injectable("traceable_tables", []) - if table_name not in traceable_tables: - logger.error("table '%s' not in traceable_tables" % table_name) - return - - idx_name = df.index.name - if idx_name is None: - logger.error("Can't register table '%s' without index name" % table_name) - return - - traceable_table_ids = inject.get_injectable("traceable_table_ids", {}) - traceable_table_indexes = inject.get_injectable("traceable_table_indexes", {}) - - if ( - idx_name in traceable_table_indexes - and traceable_table_indexes[idx_name] != table_name - ): - logger.error( - "table '%s' index name '%s' already registered for table '%s'" - % (table_name, idx_name, traceable_table_indexes[idx_name]) - ) - return - - # update traceable_table_indexes with this traceable_table's idx_name - if idx_name not in traceable_table_indexes: - traceable_table_indexes[idx_name] = table_name - logger.debug( - "adding table %s.%s to traceable_table_indexes" % (table_name, idx_name) - ) - inject.add_injectable("traceable_table_indexes", traceable_table_indexes) - - # add any new indexes associated with trace_hh_id to traceable_table_ids - - trace_hh_id = inject.get_injectable("trace_hh_id", None) - if trace_hh_id is None: - return - - new_traced_ids = [] - # if table_name == "households": - if table_name in ["households", "proto_households"]: - if trace_hh_id not in df.index: - logger.warning("trace_hh_id %s not in dataframe" % trace_hh_id) - new_traced_ids = [] - else: - logger.info( - "tracing household id %s in %s households" - % (trace_hh_id, len(df.index)) - ) - new_traced_ids = [trace_hh_id] - else: - - # find first already registered ref_col we can use to slice this table - ref_col = next((c for c in traceable_table_indexes if c in df.columns), None) - - if ref_col is None: - logger.error( - "can't find a registered table to slice table '%s' index name '%s'" - " in traceable_table_indexes: %s" - % (table_name, idx_name, traceable_table_indexes) - ) - return - - # get traceable_ids for ref_col table - ref_col_table_name = traceable_table_indexes[ref_col] - ref_col_traced_ids = traceable_table_ids.get(ref_col_table_name, []) - - # inject list of ids in table we are tracing - # this allows us to slice by id without requiring presence of a household id column - traced_df = df[df[ref_col].isin(ref_col_traced_ids)] - new_traced_ids = traced_df.index.tolist() - if len(new_traced_ids) == 0: - logger.warning( - "register %s: no rows with %s in %s." - % (table_name, ref_col, ref_col_traced_ids) - ) - - # update the list of trace_ids for this table - prior_traced_ids = traceable_table_ids.get(table_name, []) - - if new_traced_ids: - assert not set(prior_traced_ids) & set(new_traced_ids) - traceable_table_ids[table_name] = prior_traced_ids + new_traced_ids - inject.add_injectable("traceable_table_ids", traceable_table_ids) - - logger.debug( - "register %s: added %s new ids to %s existing trace ids" - % (table_name, len(new_traced_ids), len(prior_traced_ids)) - ) - logger.debug( - "register %s: tracing new ids %s in %s" - % (table_name, new_traced_ids, table_name) - ) - - def write_df_csv( df, file_path, index_label=None, columns=None, column_labels=None, transpose=True ): - need_header = not os.path.isfile(file_path) if columns: @@ -385,7 +174,6 @@ def write_df_csv( df_t.index.name = index_label if need_header: - if column_labels is None: column_labels = [None, None] if column_labels[0] is None: @@ -416,7 +204,6 @@ def write_df_csv( def write_series_csv( series, file_path, index_label=None, columns=None, column_labels=None ): - if isinstance(columns, str): series = series.rename(columns) elif isinstance(columns, list): @@ -430,64 +217,6 @@ def write_series_csv( series.to_csv(file_path, mode="a", index=True, header=need_header) -def write_csv( - df, file_name, index_label=None, columns=None, column_labels=None, transpose=True -): - """ - Print write_csv - - Parameters - ---------- - df: pandas.DataFrame or pandas.Series - traced dataframe - file_name: str - output file name - index_label: str - index name - columns: list - columns to write - transpose: bool - whether to transpose dataframe (ignored for series) - Returns - ------- - Nothing - """ - - assert len(file_name) > 0 - - if not file_name.endswith(".%s" % CSV_FILE_TYPE): - file_name = "%s.%s" % (file_name, CSV_FILE_TYPE) - - file_path = config.trace_file_path(file_name) - - if os.name == "nt": - abs_path = os.path.abspath(file_path) - if len(abs_path) > 255: - msg = f"path length ({len(abs_path)}) may exceed Windows maximum length unless LongPathsEnabled: {abs_path}" - logger.warning(msg) - - if os.path.isfile(file_path): - logger.debug("write_csv file exists %s %s" % (type(df).__name__, file_name)) - - if isinstance(df, pd.DataFrame): - # logger.debug("dumping %s dataframe to %s" % (df.shape, file_name)) - write_df_csv( - df, file_path, index_label, columns, column_labels, transpose=transpose - ) - elif isinstance(df, pd.Series): - # logger.debug("dumping %s element series to %s" % (df.shape[0], file_name)) - write_series_csv(df, file_path, index_label, columns, column_labels) - elif isinstance(df, dict): - df = pd.Series(data=df) - # logger.debug("dumping %s element dict to %s" % (df.shape[0], file_name)) - write_series_csv(df, file_path, index_label, columns, column_labels) - else: - logger.error( - "write_csv object for file_name '%s' of unexpected type: %s" - % (file_name, type(df)) - ) - - def slice_ids(df, ids, column=None): """ slice a dataframe to select only records with the specified ids @@ -523,96 +252,6 @@ def slice_ids(df, ids, column=None): return df -def get_trace_target(df, slicer, column=None): - """ - get target ids and column or index to identify target trace rows in df - - Parameters - ---------- - df: pandas.DataFrame - dataframe to slice - slicer: str - name of column or index to use for slicing - - Returns - ------- - (target, column) tuple - - target : int or list of ints - id or ids that identify tracer target rows - column : str - name of column to search for targets or None to search index - """ - - target_ids = None # id or ids to slice by (e.g. hh_id or person_ids or tour_ids) - - # special do-not-slice code for dumping entire df - if slicer == "NONE": - return target_ids, column - - if slicer is None: - slicer = df.index.name - - if isinstance(df, pd.DataFrame): - # always slice by household id if we can - if "household_id" in df.columns: - slicer = "household_id" - if slicer in df.columns: - column = slicer - - if column is None and df.index.name != slicer: - raise RuntimeError( - "bad slicer '%s' for df with index '%s'" % (slicer, df.index.name) - ) - - traceable_table_indexes = inject.get_injectable("traceable_table_indexes", {}) - traceable_table_ids = inject.get_injectable("traceable_table_ids", {}) - - if df.empty: - target_ids = None - elif slicer in traceable_table_indexes: - # maps 'person_id' to 'persons', etc - table_name = traceable_table_indexes[slicer] - target_ids = traceable_table_ids.get(table_name, []) - elif slicer == "zone_id": - target_ids = inject.get_injectable("trace_od", []) - - return target_ids, column - - -def trace_targets(df, slicer=None, column=None): - - target_ids, column = get_trace_target(df, slicer, column) - - if target_ids is None: - targets = None - else: - - if column is None: - targets = df.index.isin(target_ids) - else: - # convert to numpy array for consistency since that is what index.isin returns - targets = df[column].isin(target_ids).to_numpy() - - return targets - - -def has_trace_targets(df, slicer=None, column=None): - - target_ids, column = get_trace_target(df, slicer, column) - - if target_ids is None: - found = False - else: - - if column is None: - found = df.index.isin(target_ids).any() - else: - found = df[column].isin(target_ids).any() - - return found - - def hh_id_for_chooser(id, choosers): """ @@ -665,272 +304,9 @@ def trace_id_for_chooser(id, choosers): return hh_id, column_name -def dump_df(dump_switch, df, trace_label, fname): - if dump_switch: - trace_label = extend_trace_label(trace_label, "DUMP.%s" % fname) - trace_df( - df, trace_label, index_label=df.index.name, slicer="NONE", transpose=False - ) - - -def trace_df( - df, - label, - slicer=None, - columns=None, - index_label=None, - column_labels=None, - transpose=True, - warn_if_empty=False, -): - """ - Slice dataframe by traced household or person id dataframe and write to CSV - - Parameters - ---------- - df: pandas.DataFrame - traced dataframe - label: str - tracer name - slicer: Object - slicer for subsetting - columns: list - columns to write - index_label: str - index name - column_labels: [str, str] - labels for columns in csv - transpose: boolean - whether to transpose file for legibility - warn_if_empty: boolean - write warning if sliced df is empty - - Returns - ------- - Nothing - """ - - target_ids, column = get_trace_target(df, slicer) - - if target_ids is not None: - df = slice_ids(df, target_ids, column) - - if warn_if_empty and df.shape[0] == 0 and target_ids != []: - column_name = column or slicer - logger.warning( - "slice_canonically: no rows in %s with %s == %s" - % (label, column_name, target_ids) - ) - - if df.shape[0] > 0: - write_csv( - df, - file_name=label, - index_label=(index_label or slicer), - columns=columns, - column_labels=column_labels, - transpose=transpose, - ) - - -def interaction_trace_rows(interaction_df, choosers, sample_size=None): - """ - Trace model design for interaction_simulate - - Parameters - ---------- - interaction_df: pandas.DataFrame - traced model_design dataframe - choosers: pandas.DataFrame - interaction_simulate choosers - (needed to filter the model_design dataframe by traced hh or person id) - sample_size int or None - int for constant sample size, or None if choosers have different numbers of alternatives - Returns - ------- - trace_rows : numpy.ndarray - array of booleans to flag which rows in interaction_df to trace - - trace_ids : tuple (str, numpy.ndarray) - column name and array of trace_ids mapping trace_rows to their target_id - for use by trace_interaction_eval_results which needs to know target_id - so it can create separate tables for each distinct target for readability - """ - - # slicer column name and id targets to use for chooser id added to model_design dataframe - # currently we only ever slice by person_id, but that could change, so we check here... - - traceable_table_ids = inject.get_injectable("traceable_table_ids", {}) - - # Determine whether actual tables or proto_ tables for disaggregate accessibilities - persons_table_name = set(traceable_table_ids).intersection( - ["persons", "proto_persons"] - ) - households_table_name = set(traceable_table_ids).intersection( - ["households", "proto_households"] - ) - - assert len(persons_table_name) == 1 and len(persons_table_name) == 1 - persons_table_name, households_table_name = ( - persons_table_name.pop(), - households_table_name.pop(), - ) - - if choosers.index.name == "person_id" and persons_table_name in traceable_table_ids: - slicer_column_name = choosers.index.name - targets = traceable_table_ids["persons"] - elif choosers.index.name == "household_id" and "households" in traceable_table_ids: - slicer_column_name = choosers.index.name - targets = traceable_table_ids["households"] - elif "household_id" in choosers.columns and "households" in traceable_table_ids: - slicer_column_name = "household_id" - targets = traceable_table_ids[households_table_name] - elif "person_id" in choosers.columns and persons_table_name in traceable_table_ids: - slicer_column_name = "person_id" - targets = traceable_table_ids[persons_table_name] - else: - print(choosers.columns) - raise RuntimeError( - "interaction_trace_rows don't know how to slice index '%s'" - % choosers.index.name - ) - - if sample_size is None: - # if sample size not constant, we count on either - # slicer column being in itneraction_df - # or index of interaction_df being same as choosers - if slicer_column_name in interaction_df.columns: - trace_rows = np.in1d(interaction_df[slicer_column_name], targets) - trace_ids = interaction_df.loc[trace_rows, slicer_column_name].values - else: - assert interaction_df.index.name == choosers.index.name - trace_rows = np.in1d(interaction_df.index, targets) - trace_ids = interaction_df[trace_rows].index.values - - else: - - if slicer_column_name == choosers.index.name: - trace_rows = np.in1d(choosers.index, targets) - trace_ids = np.asanyarray(choosers[trace_rows].index) - elif slicer_column_name == "person_id": - trace_rows = np.in1d(choosers["person_id"], targets) - trace_ids = np.asanyarray(choosers[trace_rows].person_id) - elif slicer_column_name == "household_id": - trace_rows = np.in1d(choosers["household_id"], targets) - trace_ids = np.asanyarray(choosers[trace_rows].household_id) - else: - assert False - - # simply repeat if sample size is constant across choosers - assert sample_size == len(interaction_df.index) / len(choosers.index) - trace_rows = np.repeat(trace_rows, sample_size) - trace_ids = np.repeat(trace_ids, sample_size) - - assert type(trace_rows) == np.ndarray - assert type(trace_ids) == np.ndarray - - trace_ids = (slicer_column_name, trace_ids) - - return trace_rows, trace_ids - - -def trace_interaction_eval_results(trace_results, trace_ids, label): - """ - Trace model design eval results for interaction_simulate - - Parameters - ---------- - trace_results: pandas.DataFrame - traced model_design dataframe - trace_ids : tuple (str, numpy.ndarray) - column name and array of trace_ids from interaction_trace_rows() - used to filter the trace_results dataframe by traced hh or person id - label: str - tracer name - - Returns - ------- - Nothing - """ - - assert type(trace_ids[1]) == np.ndarray - - slicer_column_name = trace_ids[0] - - try: - trace_results[slicer_column_name] = trace_ids[1] - except ValueError: - trace_results[slicer_column_name] = int(trace_ids[1]) - - targets = np.unique(trace_ids[1]) - - if len(trace_results.index) == 0: - return - - # write out the raw dataframe - file_path = config.trace_file_path("%s.raw.csv" % label) - trace_results.to_csv(file_path, mode="a", index=True, header=True) - - # if there are multiple targets, we want them in separate tables for readability - for target in targets: - - df_target = trace_results[trace_results[slicer_column_name] == target] - - # we want the transposed columns in predictable order - df_target.sort_index(inplace=True) - - # # remove the slicer (person_id or hh_id) column? - # del df_target[slicer_column_name] - - target_label = "%s.%s.%s" % (label, slicer_column_name, target) - - trace_df( - df_target, - label=target_label, - slicer="NONE", - transpose=True, - column_labels=["expression", None], - warn_if_empty=False, - ) - - def no_results(trace_label): """ standard no-op to write tracing when a model produces no results """ logger.info("Skipping %s: no_results" % trace_label) - - -def deregister_traceable_table(table_name): - """ - un-register traceable table - - Parameters - ---------- - df: pandas.DataFrame - traced dataframe - - Returns - ------- - Nothing - """ - traceable_tables = inject.get_injectable("traceable_tables", []) - traceable_table_ids = inject.get_injectable("traceable_table_ids", {}) - traceable_table_indexes = inject.get_injectable("traceable_table_indexes", {}) - - if table_name not in traceable_tables: - logger.error("table '%s' not in traceable_tables" % table_name) - - else: - traceable_table_ids = { - k: v for k, v in traceable_table_ids.items() if k != table_name - } - traceable_table_indexes = OrderedDict( - {k: v for k, v in traceable_table_indexes.items() if v != table_name} - ) - - inject.add_injectable("traceable_table_ids", traceable_table_ids) - inject.add_injectable("traceable_table_indexes", traceable_table_indexes) - - return diff --git a/activitysim/core/util.py b/activitysim/core/util.py index 217cdb837..3130b18f5 100644 --- a/activitysim/core/util.py +++ b/activitysim/core/util.py @@ -1,25 +1,32 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations import argparse import collections import itertools import logging +import numbers import os -from builtins import zip +from collections.abc import Iterable from operator import itemgetter +from pathlib import Path +from typing import Optional, TypeVar import cytoolz as tz import cytoolz.curried import numpy as np import pandas as pd +import pyarrow as pa +import pyarrow.csv as csv +import pyarrow.parquet as pq import yaml +from pydantic import BaseModel logger = logging.getLogger(__name__) def si_units(x, kind="B", digits=3, shift=1000): - # nano micro milli kilo mega giga tera peta exa zeta yotta tiers = ["n", "µ", "m", "", "K", "M", "G", "T", "P", "E", "Z", "Y"] @@ -307,7 +314,7 @@ def quick_loc_series(loc_list, target_series): return df.right -def assign_in_place(df, df2): +def assign_in_place(df, df2, downcast_int=False, downcast_float=False): """ update existing row values in df from df2, adding columns to df if they are not there @@ -317,6 +324,10 @@ def assign_in_place(df, df2): assignment left-hand-side (dest) df2: pd.DataFrame assignment right-hand-side (source) + downcast_int: bool + if True, downcast int columns if possible + downcast_float: bool + if True, downcast float columns if possible Returns ------- @@ -335,7 +346,6 @@ def assign_in_place(df, df2): # this is a hack fix for a bug in pandas.update # github.com/pydata/pandas/issues/4094 for c, old_dtype in zip(common_columns, old_dtypes): - # if both df and df2 column were same type, but result is not if (old_dtype == df2[c].dtype) and (df[c].dtype != old_dtype): try: @@ -346,6 +356,9 @@ def assign_in_place(df, df2): % (old_dtype, c, df[c].dtype) ) + if isinstance(old_dtype, pd.api.types.CategoricalDtype): + continue + # if both df and df2 column were ints, but result is not if ( np.issubdtype(old_dtype, np.integer) @@ -365,8 +378,92 @@ def assign_in_place(df, df2): df[new_columns] = df2[new_columns] + for c in new_columns: + if pd.api.types.is_object_dtype(df[c]): + df[c] = df[c].astype("category") + + auto_opt_pd_dtypes(df, downcast_int, downcast_float, inplace=True) + + +def auto_opt_pd_dtypes( + df_: pd.DataFrame, downcast_int=False, downcast_float=False, inplace=False +) -> Optional[pd.DataFrame]: + """ + Automatically downcast Number dtypes for minimal possible, + will not touch other (datetime, str, object, etc) + + Parameters + ---------- + df_ : pd.DataFrame + assignment left-hand-side (dest) + downcast_int: bool + if True, downcast int columns if possible + downcast_float: bool + if True, downcast float columns if possible + inplace: bool + if False, will return a copy of input dataset + + Returns + ------- + `None` if `inplace=True` or dataframe if `inplace=False` + + """ + df = df_ if inplace else df_.copy() + + for col in df.columns: + dtype = df[col].dtype + # Skip optimizing floats for precision concerns + if pd.api.types.is_float_dtype(dtype): + if not downcast_float: + continue + else: + # there is a bug in pandas to_numeric + # when convert int and floats gt 16777216 + # https://github.com/pandas-dev/pandas/issues/43693 + # https://github.com/pandas-dev/pandas/issues/23676#issuecomment-438488603 + if df[col].max() >= 16777216: + continue + else: + df[col] = pd.to_numeric(df[col], downcast="float") + # Skip if the column is already categorical + if pd.api.types.is_categorical_dtype(dtype): + continue + # Handle integer types + if pd.api.types.is_integer_dtype(dtype): + if not downcast_int: + continue + # there is a bug in pandas to_numeric + # when convert int and floats gt 16777216 + # https://github.com/pandas-dev/pandas/issues/43693 + # https://github.com/pandas-dev/pandas/issues/23676#issuecomment-438488603 + if df[col].max() >= 16777216: + continue + else: + df[col] = pd.to_numeric(df[col], downcast="integer") + continue + # Initially thought of using unsigned integers, BUT: + # There are calculations in asim (e.g., UECs) that expect results in negative values, + # and operations on two unsigned types will not produce negative values, + # therefore, we did not use unsigned integers. + + if not inplace: + return df + + +def reindex_if_series(values, index): + if index is not None: + return values + + if isinstance(values, pd.Series): + assert len(set(values.index).intersection(index)) == len(index) + + if all(values.index != index): + return values.reindex(index=index) + def df_from_dict(values, index=None): + # If value object is a series and has out of order index, reindex it + values = {k: reindex_if_series(v, index) for k, v in values.items()} df = pd.DataFrame.from_dict(values) if index is not None: @@ -418,13 +515,26 @@ def recursive_replace(obj, search, replace): return obj +T = TypeVar("T") + + def suffix_tables_in_settings( - model_settings, - suffix="proto_", - tables=["persons", "households", "tours", "persons_merged"], -): + model_settings: T, + suffix: str = "proto_", + tables: Iterable[str] = ("persons", "households", "tours", "persons_merged"), +) -> T: + if not isinstance(model_settings, dict): + model_settings_type = type(model_settings) + model_settings = model_settings.dict() + else: + model_settings_type = None + for k in tables: model_settings = recursive_replace(model_settings, k, suffix + k) + + if model_settings_type is not None: + model_settings = model_settings_type.model_validate(model_settings) + return model_settings @@ -447,6 +557,10 @@ def parse_suffix_args(args): def concat_suffix_dict(args): + if isinstance(args, BaseModel): + args = args.dict() + if "source_file_paths" in args: + del args["source_file_paths"] if isinstance(args, dict): args = sum([["--" + k, v] for k, v in args.items()], []) if isinstance(args, list): @@ -468,3 +582,59 @@ def nearest_node_index(node, nodes): deltas = nodes - node dist_2 = np.einsum("ij,ij->i", deltas, deltas) return np.argmin(dist_2) + + +def read_csv(filename): + """Simple read of a CSV file, much faster than pandas.read_csv""" + return csv.read_csv(filename).to_pandas() + + +def to_csv(df, filename, index=False): + """Simple write of a CSV file, much faster than pandas.DataFrame.to_csv""" + filename = Path(filename) + if filename.suffix == ".gz": + with pa.CompressedOutputStream(filename, "gzip") as out: + csv.write_csv(pa.Table.from_pandas(df, preserve_index=index), out) + else: + csv.write_csv(pa.Table.from_pandas(df, preserve_index=index), filename) + + +def read_parquet(filename): + """Simple read of a parquet file""" + return pq.read_table(filename).to_pandas() + + +def to_parquet(df, filename, index=False): + filename = Path(filename) + pq.write_table(pa.Table.from_pandas(df, preserve_index=index), filename) + + +def latest_file_modification_time(filenames: Iterable[Path]): + """Find the most recent file modification time.""" + return max(os.path.getmtime(filename) for filename in filenames) + + +def oldest_file_modification_time(filenames: Iterable[Path]): + """Find the least recent file modification time.""" + return min(os.path.getmtime(filename) for filename in filenames) + + +def zarr_file_modification_time(zarr_dir: Path): + """Find the most recent file modification time inside a zarr dir.""" + t = 0 + for dirpath, dirnames, filenames in os.walk(zarr_dir): + if os.path.basename(dirpath).startswith(".git"): + continue + for n in range(len(dirnames) - 1, -1, -1): + if dirnames[n].startswith(".git"): + dirnames.pop(n) + for f in filenames: + if f.startswith(".git") or f == ".DS_Store": + continue + finame = Path(os.path.join(dirpath, f)) + file_time = os.path.getmtime(finame) + if file_time > t: + t = file_time + if t == 0: + raise FileNotFoundError(zarr_dir) + return t diff --git a/activitysim/core/workflow/__init__.py b/activitysim/core/workflow/__init__.py new file mode 100644 index 000000000..56a69c576 --- /dev/null +++ b/activitysim/core/workflow/__init__.py @@ -0,0 +1,8 @@ +from __future__ import annotations + +from .examples import create_example +from .state import State +from .steps import ModelSettingsFromYaml as from_yaml +from .steps import cached_object, func, step +from .steps import table as table +from .steps import temp_table as temp_table diff --git a/activitysim/core/workflow/accessor.py b/activitysim/core/workflow/accessor.py new file mode 100644 index 000000000..a2317376d --- /dev/null +++ b/activitysim/core/workflow/accessor.py @@ -0,0 +1,136 @@ +from __future__ import annotations + +import inspect +import textwrap +import warnings + +from activitysim.core import workflow +from activitysim.core.exceptions import StateAccessError + +NO_DEFAULT = "< no default >" + + +class StateAccessor: + """ + Boilerplate code for accessors. + + Accessors consolidate groups of related functions in a common interface, + without requiring the main State class to become bloated by including all + relevant functionality. They also allow setting and storing attributes + without worrying about conflicting with similarly named attributes of + other accessors. + """ + + def __set_name__(self, owner, name): + self._name = name + + def __init__(self, state: "workflow.State" = None): + self._obj = state + + def __get__(self, instance, objtype=None): + if instance is None: + return self + cached_accessor = getattr(instance, f"_cached_accessor_{self._name}", None) + if cached_accessor is not None: + return cached_accessor + from .state import State + + assert isinstance(instance, State) + accessor_obj = self.__class__(instance) + object.__setattr__(instance, self._name, accessor_obj) + return accessor_obj + + def __set__(self, instance, value): + if isinstance(value, self.__class__): + setattr(instance, f"_cached_accessor_{self._name}", value) + else: + raise ValueError(f"cannot directly set accessor {self._name}") + + def __delete__(self, instance): + raise ValueError(f"cannot delete accessor {self._name}") + + +class FromState: + def __init__( + self, + member_type=None, + default_init=False, + default_value=NO_DEFAULT, + doc: str | None = None, + ): + """ + Creates a property to access an element from the current context. + + Parameters + ---------- + member_type : type + The data type for this attribute. Basic type validation may be + applied when setting this value, but validation could be disabled + when optimizing models for production and this type checking should + not be relied on as a runtime feature. If not given, member_type is + read from the accessor's type annotation (if applicable). + default_init : bool or callable + When set to true, if this context value is accessed and it has not + already been set, it is automatically initialized with the default + value (i.e. via a no-argument constructor) for the given type. + default_value : Any, optional + When set to some value, if this context value is accessed and it has + not already been set, it is automatically initialized with this + default value. + doc : str, optional + Attribute documentation. + """ + self.member_type = member_type + self._default_init = default_init + self._default_value = default_value + if self._default_init and self._default_value != NO_DEFAULT: + raise ValueError("cannot use both default_init and default_value") + if doc: + self.__doc__ = textwrap.dedent(doc).strip() + + def __set_name__(self, owner, name): + self.name = f"{owner.__name__.lower()}_{name}" + # set member type based on annotation + if self.member_type is None: + annot = inspect.get_annotations(owner, eval_str=True) + if name in annot: + self.member_type = annot[name] + + def __get__(self, instance: StateAccessor, objtype=None): + try: + return instance._obj._context[self.name] + except (KeyError, AttributeError): + if instance is None or instance._obj is None: + # a freestanding accessor not bound to a parent State is not + # typical but does happen when Sphinx generates documentation + return self + if self._default_init: + if callable(self._default_init): + instance._obj._context[self.name] = self._default_init() + else: + instance._obj._context[self.name] = self.member_type() + return instance._obj._context[self.name] + elif self._default_value != NO_DEFAULT: + instance._obj._context[self.name] = self._default_value + return instance._obj._context[self.name] + raise StateAccessError( + f"{self.name} not initialized for this state" + ) from None + + def __set__(self, instance: StateAccessor, value): + if not self.__validate_type(value): + raise TypeError(f"{self.name} must be {self.member_type} not {type(value)}") + instance._obj._context[self.name] = value + + def __delete__(self, instance): + self.__set__(instance, None) + + def __validate_type(self, value): + # type validation is only done at the top level for now. + try: + type_ok = isinstance(value, self.member_type) + except (TypeError, AttributeError): + from typing import get_args, get_origin + + type_ok = isinstance(value, get_origin(self.member_type)) + return type_ok diff --git a/activitysim/core/workflow/checkpoint.py b/activitysim/core/workflow/checkpoint.py new file mode 100644 index 000000000..b7fe5900a --- /dev/null +++ b/activitysim/core/workflow/checkpoint.py @@ -0,0 +1,1226 @@ +from __future__ import annotations + +import abc +import datetime as dt +import logging +import os +import warnings +from pathlib import Path +from typing import Optional, TypeVar + +import pandas as pd +import pyarrow as pa + +from activitysim.core.exceptions import ( + CheckpointFileNotFoundError, + CheckpointNameNotFoundError, + StateAccessError, + TableNameNotFound, +) +from activitysim.core.workflow.accessor import FromState, StateAccessor + +logger = logging.getLogger(__name__) + +# name of the checkpoint dict keys +# (which are also columns in the checkpoints dataframe stored in hte pipeline store) +TIMESTAMP = "timestamp" +CHECKPOINT_NAME = "checkpoint_name" +NON_TABLE_COLUMNS = [CHECKPOINT_NAME, TIMESTAMP] + +# name used for storing the checkpoints dataframe to the pipeline store +CHECKPOINT_TABLE_NAME = "checkpoints" + +LAST_CHECKPOINT = "_" + +# name of the first step/checkpoint created when the pipeline is started +INITIAL_CHECKPOINT_NAME = "init" +FINAL_CHECKPOINT_NAME = "final" + + +CheckpointStore = TypeVar("CheckpointStore", bound="GenericCheckpointStore") + + +class GenericCheckpointStore: + """Abstract base class defining interface for table storage.""" + + @abc.abstractmethod + def put( + self, + table_name: str, + df: pd.DataFrame, + complib: str = None, + checkpoint_name: str = None, + ) -> None: + """ + Store a table. + + Parameters + ---------- + table_name : str + df : pd.DataFrame + complib : str + Name of compression library to use. + checkpoint_name : str, optional + The checkpoint version name to use for this table. + """ + + @abc.abstractmethod + def get_dataframe( + self, table_name: str, checkpoint_name: str = None + ) -> pd.DataFrame: + """ + Load table from store as a pandas DataFrame. + + Parameters + ---------- + table_name : str + checkpoint_name : str, optional + The checkpoint version name to use for this table. + + Returns + ------- + pd.DataFrame + """ + + @property + @abc.abstractmethod + def is_readonly(self) -> bool: + """This store is read-only.""" + + @property + @abc.abstractmethod + def is_open(self) -> bool: + """This store is open.""" + + @abc.abstractmethod + def close(self) -> None: + """Close this store.""" + + @property + @abc.abstractmethod + def filename(self) -> Path: + """Location of this store.""" + + def list_checkpoint_names(self) -> list[str]: + """Get a list of all checkpoint names in this store.""" + try: + df = self.get_dataframe(CHECKPOINT_TABLE_NAME) + except Exception: + return [] + else: + return list(df.checkpoint_name) + + @classmethod + def from_hdf( + cls: CheckpointStore, + source_filename: Path, + dest_filename: Path, + mode: str = "a", + ) -> CheckpointStore: + """ + Create a new checkpoint store from an existing HdfStore. + + Parameters + ---------- + source_filename : path-like + The filename of the source HDF5 checkpoint file. This file should + be the output of an ActivitySim run (or constructed alike). + dest_filename : path-like + The filename or directory where a new checkpoint storage will be + created. + mode : str + The file mode used to open the destination. Must not be a read-only + mode or this operation will fail. + + Returns + ------- + CheckpointStore + """ + hdf_store = HdfStore(source_filename, "r") + output_store = cls(dest_filename, mode) + checkpoint_df = hdf_store.get_dataframe(CHECKPOINT_TABLE_NAME) + output_store.put(CHECKPOINT_TABLE_NAME, checkpoint_df) + for table_name in checkpoint_df.columns: + if table_name in NON_TABLE_COLUMNS: + continue + checkpoints_written = set() + for checkpoint_name in checkpoint_df[table_name]: + if checkpoint_name: + df = hdf_store.get_dataframe(table_name, checkpoint_name) + if checkpoint_name and checkpoint_name not in checkpoints_written: + output_store.put( + table_name, df, checkpoint_name=checkpoint_name + ) + checkpoints_written.add(checkpoint_name) + return output_store + + def _get_store_checkpoint_from_named_checkpoint( + self, table_name: str, checkpoint_name: str = LAST_CHECKPOINT + ): + """ + Get the name of the checkpoint where a table is actually written. + + Checkpoint tables are not re-written if the content has not changed, so + retrieving a particular table at a given checkpoint can involve back-tracking + to find where the file was last actually written. + + Parameters + ---------- + table_name : str + checkpoint_name : str, optional + The name of the checkpoint to load. If not given this function + will load the last stored checkpoint value. + + Returns + ------- + str + The checkpoint to actually load. + """ + cp_df = self.get_dataframe(CHECKPOINT_TABLE_NAME).set_index(CHECKPOINT_NAME) + if checkpoint_name == LAST_CHECKPOINT: + checkpoint_name = cp_df.index[-1] + try: + return cp_df.loc[checkpoint_name, table_name] + except KeyError: + if checkpoint_name not in cp_df.index: + raise CheckpointNameNotFoundError(checkpoint_name) + elif table_name not in cp_df.columns: + raise TableNameNotFound(table_name) + else: + raise + + +class HdfStore(GenericCheckpointStore): + """Storage interface for HDF5-based table storage.""" + + def __init__(self, filename: Path, mode="a"): + self._hdf5 = pd.HDFStore(str(filename), mode=mode) + + @property + def filename(self) -> Path: + return Path(self._hdf5.filename) + + def _store_table_key(self, table_name, checkpoint_name): + if checkpoint_name: + key = f"{table_name}/{checkpoint_name}" + else: + key = f"/{table_name}" + return key + + def put( + self, + table_name: str, + df: pd.DataFrame, + complib: str = None, + checkpoint_name: str = None, + ) -> None: + key = self._store_table_key(table_name, checkpoint_name) + if complib is None or len(df.columns) == 0: + # tables with no columns can't be compressed successfully, so to + # avoid them getting just lost and dropped they are instead written + # in fixed format with no compression, which should be just fine + # since they have no data anyhow. + self._hdf5.put(key, df) + else: + self._hdf5.put(key, df, "table", complib=complib) + self._hdf5.flush() + + def get_dataframe( + self, table_name: str, checkpoint_name: str = None + ) -> pd.DataFrame: + key = self._store_table_key(table_name, checkpoint_name) + return self._hdf5[key] + + @property + def is_readonly(self) -> bool: + return self._hdf5._mode == "r" + + @property + def is_open(self) -> bool: + return self._hdf5.is_open + + def close(self) -> None: + """Close this store.""" + self._hdf5.close() + + +class ParquetStore(GenericCheckpointStore): + """Storage interface for parquet-based table storage. + + This store will store each saved table in a parquet-format archive, + resulting in a hierarchy of separate files in a defined structure, as + opposed to a single monolithic repository files containing all the data. + + This interface will fall back to storing tables in a gzipped pickle if + the parquet format fails (as might happen if datatypes for some columns + are not homogenous and values are stored as "object"). + """ + + extension = ".parquetpipeline" + + @staticmethod + def _to_parquet(df: pd.DataFrame, filename, *args, **kwargs): + try: + df.to_parquet(filename, *args, **kwargs) + except (pa.lib.ArrowInvalid, pa.lib.ArrowTypeError) as err: + logger.error( + f"Problem writing to {filename}\n" f"{err}\n" f"falling back to pickle" + ) + # fallback to pickle, compatible with more dtypes + df.to_pickle(Path(filename).with_suffix(".pickle.gz")) + + def __init__(self, directory: Path, mode: str = "a", gitignore: bool = True): + """Initialize a storage interface for parquet-based table storage. + + Parameters + ---------- + directory : Path + The file directory for this ParquetStore. If this location does not + include a ".parquetpipeline" or ".zip" suffix, one is added. + mode : {"a", "r"}, default "a" + Mode to open this store, "a"ppend or "r"ead-only. Zipped stores + can only be opened in read-only mode. + gitignore : bool, default True + If not opened in read-only mode, should a ".gitignore" file be added + with a global wildcard (**)? Doing so will help prevent this store + from being accidentally committed to git. + """ + directory = Path(directory) + if directory.suffix == ".zip": + if mode != "r": + raise ValueError("can only open a Zip parquet store as read-only.") + elif directory.suffix != self.extension: + directory = directory.with_suffix(self.extension) + self._directory = directory + self._mode = mode + if self._mode != "r": + self._directory.mkdir(parents=True, exist_ok=True) + if gitignore and not self._directory.joinpath(".gitignore").exists(): + self._directory.joinpath(".gitignore").write_text("**\n") + + @property + def filename(self) -> Path: + """The directory location of this ParquetStore.""" + return self._directory + + def _store_table_path(self, table_name, checkpoint_name): + if checkpoint_name: + return self._directory.joinpath(table_name, f"{checkpoint_name}.parquet") + else: + return self._directory.joinpath(f"{table_name}.parquet") + + def put( + self, + table_name: str, + df: pd.DataFrame, + complib: str = "NOTSET", + checkpoint_name: str = None, + ) -> None: + if self.is_readonly: + raise ValueError("store is read-only") + filepath = self._store_table_path(table_name, checkpoint_name) + filepath.parent.mkdir(parents=True, exist_ok=True) + if complib == "NOTSET": + self._to_parquet(pd.DataFrame(df), filepath) + else: + self._to_parquet(pd.DataFrame(df), filepath, compression=complib) + + def get_dataframe( + self, table_name: str, checkpoint_name: str = None + ) -> pd.DataFrame: + if table_name != CHECKPOINT_TABLE_NAME and checkpoint_name is None: + checkpoint_name = LAST_CHECKPOINT + if self._directory.suffix == ".zip": + import io + import zipfile + + zip_internal_filename = self._store_table_path( + table_name, checkpoint_name + ).relative_to(self._directory) + with zipfile.ZipFile(self._directory, mode="r") as zipf: + namelist = set(zipf.namelist()) + if zip_internal_filename.as_posix() in namelist: + with zipf.open(zip_internal_filename.as_posix()) as zipo: + return pd.read_parquet(zipo) + elif ( + zip_internal_filename.with_suffix(".pickle.gz").as_posix() + in namelist + ): + with zipf.open( + zip_internal_filename.with_suffix(".pickle.gz").as_posix() + ) as zipo: + return pd.read_pickle(zipo, compression="gzip") + checkpoint_name_ = self._get_store_checkpoint_from_named_checkpoint( + table_name, checkpoint_name + ) + if checkpoint_name_ != checkpoint_name: + return self.get_dataframe(table_name, checkpoint_name_) + raise FileNotFoundError(str(zip_internal_filename)) + target_path = self._store_table_path(table_name, checkpoint_name) + if target_path.exists(): + return pd.read_parquet(target_path) + elif target_path.with_suffix(".pickle.gz").exists(): + return pd.read_pickle(target_path.with_suffix(".pickle.gz")) + else: + # the direct-read failed, check for backtracking checkpoint + if checkpoint_name is not None: + checkpoint_name_ = self._get_store_checkpoint_from_named_checkpoint( + table_name, checkpoint_name + ) + if checkpoint_name_ != checkpoint_name: + return self.get_dataframe(table_name, checkpoint_name_) + raise FileNotFoundError(target_path) + + @property + def is_readonly(self) -> bool: + return self._mode == "r" + + @property + def is_open(self) -> bool: + return self._directory is not None and self._directory.is_dir() + + def close(self) -> None: + """Close this store.""" + pass + + def make_zip_archive(self, output_filename) -> Path: + """ + Compress this pipeline into a zip archive. + + Parameters + ---------- + output_filename + + Returns + ------- + Path + Filename of the resulting zipped store. + """ + output_filename = Path(output_filename) + import zipfile + + if output_filename.suffix != ".zip": + output_filename = output_filename.with_suffix(".zip") + with zipfile.ZipFile(output_filename, "w", zipfile.ZIP_DEFLATED) as zipf: + for root, dirs, files in os.walk(self._directory): + files = [f for f in files if not f[0] == "."] + for f in files: + arcname = Path(root).joinpath(f).relative_to(self._directory) + zipf.write(Path(root).joinpath(f), arcname=arcname) + + return output_filename + + def wipe(self): + """ + Remove this store, including all subdirectories. + """ + if self.is_readonly: + raise ValueError("store is readonly") + walked = list(os.walk(self._directory)) + while walked: + root, dirs, files = walked.pop(-1) + for f in files: + if f.endswith(".parquet"): + os.unlink(os.path.join(root, f)) + # after removing all parquet files, is this directory basically empty? + should_drop_root = True + file_list = {f for f in Path(root).glob("**/*") if f.is_file()} + for f in file_list: + if f not in {".gitignore", ".DS_Store"}: + should_drop_root = False + if should_drop_root: + os.rmdir(root) + + +class NullStore(GenericCheckpointStore): + """ + A NullStore is a dummy that emulates a checkpoint store object. + + It never writes anything to disk and is primarily used to for + temporary data to prevent accidentally overwriting content in + a "real" store. + """ + + def put( + self, + table_name: str, + df: pd.DataFrame, + complib: str = "NOTSET", + checkpoint_name: str = None, + ) -> None: + pass + + def get_dataframe( + self, table_name: str, checkpoint_name: str = None + ) -> pd.DataFrame: + raise ValueError("no data is actually stored in NullStore") + + @property + def is_readonly(self) -> bool: + return False + + @property + def is_open(self) -> bool: + return True + + def close(self) -> None: + """Close this store.""" + pass + + +class Checkpoints(StateAccessor): + """ + State accessor for checkpointing operations. + + See :ref:`State.checkpoint ` for more detailed + documentation. + """ + + last_checkpoint: dict = FromState( + default_init=True, + doc=""" + Metadata about the last saved checkpoint. + + This dictionary contains the name of the checkpoint, a timestamp, and + the checkpoint-lookup for all relevant tables. + """, + ) + checkpoints: list[dict] = FromState( + default_init=True, + doc=""" + Metadata about various saved checkpoint(s). + + Each item in this list is a dictionary similar to the `last_checkpoint`. + """, + ) + _checkpoint_store: GenericCheckpointStore | None = FromState( + default_value=None, + doc=""" + The store where checkpoints are written. + """, + ) + + def __get__(self, instance, objtype=None) -> Checkpoints: + # derived __get__ changes annotation, aids in type checking + return super().__get__(instance, objtype) + + def initialize(self): + self.last_checkpoint = {} + self.checkpoints: list[dict] = [] + self._checkpoint_store = None + + @property + def store(self) -> GenericCheckpointStore: + """The store where checkpoints are written.""" + if self._checkpoint_store is None: + self.open_store() + return self._checkpoint_store + + def store_is_open(self) -> bool: + """Whether this checkpoint store is open.""" + if self._checkpoint_store is None: + return False + return self._checkpoint_store.is_open + + def default_pipeline_file_path(self): + if self._obj is None: + # a freestanding accessor not bound to a parent State is not + # typical but does happen when Sphinx generates documentation + return self + prefix = self._obj.get("pipeline_file_prefix", None) + if prefix is None: + return self._obj.filesystem.get_pipeline_filepath() + else: + pipeline_file_name = str(self._obj.filesystem.pipeline_file_name) + pipeline_file_name = f"{prefix}-{pipeline_file_name}" + return self._obj.filesystem.get_output_dir().joinpath(pipeline_file_name) + + def open_store( + self, pipeline_file_name: Optional[Path] = None, overwrite=False, mode="a" + ): + """ + Open the checkpoint store. + + The format for the checkpoint store is determined by the + `checkpoint_format` setting in the top-level Settings. + + Parameters + ---------- + pipeline_file_name : Path-like, optional + An explicit pipeline file path. If not given, the default pipeline + file path is opened. + overwrite : bool, default False + delete file before opening (unless resuming) + mode : {'a', 'w', 'r', 'r+'}, default 'a' + ``'r'`` + Read-only; no data can be modified. + ``'w'`` + Write; a new file is created (an existing file with the same + name would be deleted). + ``'a'`` + Append; an existing file is opened for reading and writing, + and if the file does not exist it is created. + ``'r+'`` + It is similar to ``'a'``, but the file must already exist. + """ + + if self._checkpoint_store is not None: + raise RuntimeError("Pipeline store is already open!") + + if pipeline_file_name is None: + pipeline_file_path = self.default_pipeline_file_path() + else: + pipeline_file_path = Path(pipeline_file_name) + + if self._obj.settings.checkpoint_format == "hdf": + if overwrite: + try: + if os.path.isfile(pipeline_file_path): + logger.debug("removing pipeline store: %s" % pipeline_file_path) + os.unlink(pipeline_file_path) + except Exception as e: + print(e) + logger.warning(f"Error removing {pipeline_file_path}: {e}") + + self._checkpoint_store = HdfStore(pipeline_file_path, mode=mode) + else: + self._checkpoint_store = ParquetStore(pipeline_file_path, mode=mode) + + logger.debug(f"opened checkpoint.store {pipeline_file_path}") + + def close_store(self): + """ + Close the checkpoint storage. + """ + if self._checkpoint_store is not None: + self.store.close() + self._checkpoint_store = None + logger.debug("checkpoint.close_store") + + def is_readonly(self): + if self._checkpoint_store is not None: + try: + return self._checkpoint_store.is_readonly + except AttributeError: + return None + return False + + def last_checkpoint_name(self): + if self.last_checkpoint: + try: + return self.last_checkpoint.get("checkpoint_name", None) + except AttributeError: + return None + else: + return None + + def add(self, checkpoint_name: str): + """ + Create a new checkpoint with specified name. + + Adding a checkpoint will write into the checkpoint store + all the data required to restore the simulation to its + current state. + + Parameters + ---------- + checkpoint_name : str + """ + timestamp = dt.datetime.now() + + logger.debug("add_checkpoint %s timestamp %s" % (checkpoint_name, timestamp)) + + for table_name in self._obj.uncheckpointed_table_names(): + df = self._obj.get_dataframe(table_name) + logger.debug(f"add_checkpoint {checkpoint_name!r} table {table_name!r}") + self._write_df(df, table_name, checkpoint_name) + + # remember which checkpoint it was last written + self.last_checkpoint[table_name] = checkpoint_name + self._obj.existing_table_status[table_name] = False + + self.last_checkpoint[CHECKPOINT_NAME] = checkpoint_name + self.last_checkpoint[TIMESTAMP] = timestamp + + # append to the array of checkpoint history + self.checkpoints.append(self.last_checkpoint.copy()) + + # create a pandas dataframe of the checkpoint history, one row per checkpoint + checkpoints = pd.DataFrame(self.checkpoints) + + # convert empty values to str so PyTables doesn't pickle object types + for c in checkpoints.columns: + checkpoints[c] = checkpoints[c].fillna("") + + # write it to the store, overwriting any previous version (no way to simply extend) + self._write_df(checkpoints, CHECKPOINT_TABLE_NAME) + + def _read_df( + self, table_name, checkpoint_name=None, store: GenericCheckpointStore = None + ): + """ + Read a pandas dataframe from the pipeline store. + + We store multiple versions of all simulation tables, for every checkpoint in which they change, + so we need to know both the table_name and the checkpoint_name of hte desired table. + + The only exception is the checkpoints dataframe, which just has a table_name + + An error will be raised by HDFStore if the table is not found + + Parameters + ---------- + table_name : str + checkpoint_name : str + + Returns + ------- + df : pandas.DataFrame + the dataframe read from the store + + """ + if store is None: + store = self.store + return store.get_dataframe(table_name, checkpoint_name) + + def _write_df( + self, + df: pd.DataFrame, + table_name: str, + checkpoint_name: str = None, + store: GenericCheckpointStore = None, + ): + """ + Write a pandas dataframe to the pipeline store. + + We store multiple versions of all simulation tables, for every checkpoint in which they change, + so we need to know both the table_name and the checkpoint_name to label the saved table + + The only exception is the checkpoints dataframe, which just has a table_name, + although when using the parquet storage format this file is stored as "None.parquet" + to maintain a simple consistent file directory structure. + + Parameters + ---------- + df : pandas.DataFrame + dataframe to store + table_name : str + also conventionally the injected table name + checkpoint_name : str + the checkpoint at which the table was created/modified + store : GenericCheckpointStore, optional + Write to this store instead of the default store. + """ + if store is None: + store = self.store + + # coerce column names to str as unicode names will cause PyTables to pickle them + df.columns = df.columns.astype(str) + + store.put( + table_name, + df, + complib=self._obj.settings.pipeline_complib, + checkpoint_name=checkpoint_name, + ) + + def list_tables(self): + """ + Return a list of the names of all checkpointed tables + """ + return [ + name + for name, checkpoint_name in self.last_checkpoint.items() + if checkpoint_name and name not in NON_TABLE_COLUMNS + ] + + def load(self, checkpoint_name: str, store=None): + """ + Load dataframes and restore random number channel state from pipeline hdf5 file. + This restores the pipeline state that existed at the specified checkpoint in a prior simulation. + This allows us to resume the simulation after the specified checkpoint + + Parameters + ---------- + checkpoint_name : str + model_name of checkpoint to load (resume_after argument to open_pipeline) + """ + + logger.info(f"load_checkpoint {checkpoint_name} from {self.store.filename}") + + try: + checkpoints = self._read_df(CHECKPOINT_TABLE_NAME, store=store) + except FileNotFoundError as err: + raise CheckpointFileNotFoundError(err) from None + + if checkpoint_name == LAST_CHECKPOINT: + checkpoint_name = checkpoints[CHECKPOINT_NAME].iloc[-1] + logger.info(f"loading checkpoint '{checkpoint_name}'") + + try: + # truncate rows after target checkpoint + i = checkpoints[checkpoints[CHECKPOINT_NAME] == checkpoint_name].index[0] + checkpoints = checkpoints.loc[:i] + + # if the store is not open in read-only mode, + # write it to the store to ensure so any subsequent checkpoints are forgotten + if ( + store is None + and not self.is_readonly + and isinstance(self.store, pd.HDFStore) + ): + self._write_df(checkpoints, CHECKPOINT_TABLE_NAME) + + except IndexError: + msg = f"Couldn't find checkpoint '{checkpoint_name}' in checkpoints" + print(checkpoints[CHECKPOINT_NAME]) + logger.error(msg) + raise RuntimeError(msg) from None + + # convert pandas dataframe back to array of checkpoint dicts + checkpoints = checkpoints.to_dict(orient="records") + + # drop tables with empty names + for checkpoint in checkpoints: + for key in list(checkpoint.keys()): + if key not in NON_TABLE_COLUMNS and not checkpoint[key]: + del checkpoint[key] + + if store is None: + # patch _CHECKPOINTS array of dicts + self.checkpoints = checkpoints + + # patch _CHECKPOINTS dict with latest checkpoint info + self.last_checkpoint.clear() + self.last_checkpoint.update(self.checkpoints[-1]) + + logger.info( + "load_checkpoint %s timestamp %s" + % (checkpoint_name, self.last_checkpoint["timestamp"]) + ) + + tables = self.list_tables() + last_checkpoint = self.last_checkpoint + + else: + last_checkpoint = checkpoints[-1] + tables = [ + name + for name, checkpoint_name in last_checkpoint.items() + if checkpoint_name and name not in NON_TABLE_COLUMNS + ] + + loaded_tables = {} + for table_name in tables: + # read dataframe from pipeline store + df = self._read_df( + table_name, checkpoint_name=last_checkpoint[table_name], store=store + ) + logger.info("load_checkpoint table %s %s" % (table_name, df.shape)) + # register it as an workflow table + self._obj.add_table(table_name, df) + loaded_tables[table_name] = df + if table_name == "land_use" and "_original_zone_id" in df.columns: + # The presence of _original_zone_id indicates this table index was + # decoded to zero-based, so we need to disable offset + # processing for legacy skim access. + # TODO: this "magic" column name should be replaced with a mechanism + # to write and recover particular settings from the pipeline + # store, but we don't have that mechanism yet + try: + self._obj.settings.offset_preprocessing = True + except StateAccessError: + pass + # self.obj.default_settings() + # self.obj.settings.offset_preprocessing = True + + # register for tracing in order that tracing.register_traceable_table wants us to register them + traceable_tables = self._obj.tracing.traceable_tables + + for table_name in traceable_tables: + if table_name in loaded_tables: + self._obj.tracing.register_traceable_table( + table_name, loaded_tables[table_name] + ) + + # add tables of known rng channels + rng_channels = self._obj.get_injectable("rng_channels", []) + if rng_channels: + logger.debug("loading random channels %s" % rng_channels) + for table_name in rng_channels: + if table_name in loaded_tables: + logger.debug("adding channel %s" % (table_name,)) + self._obj.rng().add_channel(table_name, loaded_tables[table_name]) + + if store is not None: + # we have loaded from an external store, so we make a new checkpoint + # with the same name as the one we just loaded. + self.add(checkpoint_name) + + def get_inventory(self): + """ + Get pandas dataframe of info about all checkpoints stored in pipeline + + pipeline doesn't have to be open + + Returns + ------- + checkpoints_df : pandas.DataFrame + + """ + df = self.store.get_dataframe(CHECKPOINT_TABLE_NAME) + # non-table columns first (column order in df is random because created from a dict) + table_names = [ + name for name in df.columns.values if name not in NON_TABLE_COLUMNS + ] + + df = df[NON_TABLE_COLUMNS + table_names] + + return df + + def restore(self, resume_after=None, mode="a"): + """ + Restore state from checkpoints. + + This can be used with "resume_after" to get the correct checkpoint, + or for a new run. + + If resume_after, then we expect the pipeline hdf5 file to exist and contain + checkpoints from a previous run, including a checkpoint with name specified in resume_after + + Parameters + ---------- + resume_after : str or None + name of checkpoint to load from pipeline store + mode : {'a', 'w', 'r', 'r+'}, default 'a' + same as for typical opening of H5Store. Ignored unless resume_after + is not None. This is here to allow read-only pipeline for benchmarking. + """ + + self._obj.init_state() + + if resume_after: + # open existing pipeline + logger.debug("checkpoint.restore - open existing pipeline") + if self._checkpoint_store is None: + self.open_store(overwrite=False, mode=mode) + try: + self.load(resume_after) + except (KeyError, CheckpointFileNotFoundError) as err: + if ( + isinstance(err, CheckpointFileNotFoundError) + or "checkpoints" in err.args[0] + ): + # no checkpoints initialized, fall back to restart + self.last_checkpoint[CHECKPOINT_NAME] = INITIAL_CHECKPOINT_NAME + self.add(INITIAL_CHECKPOINT_NAME) + else: + raise + logger.debug(f"restore from checkpoint {resume_after} complete") + else: + # open new, empty pipeline + logger.debug("checkpoint.restore - new, empty pipeline") + if self._checkpoint_store is None: + self.open_store(overwrite=True) + # - not sure why I thought we needed this? + # could have exogenous tables or prng instantiation under some circumstance?? + self.last_checkpoint[CHECKPOINT_NAME] = INITIAL_CHECKPOINT_NAME + # empty table, in case they have turned off all checkpointing + self.add(INITIAL_CHECKPOINT_NAME) + + logger.debug(f"restore from tabula rasa complete") + + def restore_from(self, location: Path, checkpoint_name: str = LAST_CHECKPOINT): + """ + Restore state from an alternative pipeline store. + + The checkpoint history is collapsed when reading out of an alternative + store location, given the presumption that if the use wanted to load a + prior intermediate state, that could be done so from the same outside + store, and the history does not need to be also preserved in the active + checkpoint store. + + Parameters + ---------- + location : Path-like + Location of pipeline store to load. + checkpoint_name : str + name of checkpoint to load from pipeline store + """ + self._obj.init_state() + logger.debug(f"checkpoint.restore_from - opening {location}") + if isinstance(location, str): + location = Path(location) + if self._obj.settings.checkpoint_format == "hdf": + from_store = HdfStore(location, mode="r") + else: + from_store = ParquetStore(location, mode="r") + self.load(checkpoint_name, store=from_store) + logger.debug(f"checkpoint.restore_from of {checkpoint_name} complete") + + def check_against( + self, location: Path, checkpoint_name: str, strict_categoricals: bool = False + ): + """ + Check that the tables in this State match those in an archived pipeline. + + Parameters + ---------- + location : Path-like + checkpoint_name : str + strict_categoricals : bool, default False + If True, check that categorical columns have the same categories + in both the current state and the checkpoint. Otherwise, the dtypes + of categorical columns are ignored, and only the values themselves are + checked to confirm they match. + + Raises + ------ + AssertionError + If any registered table does not match. + """ + __tracebackhide__ = True # don't show this code in pytest outputs + + for table_name in self._obj.registered_tables(): + local_table = self._obj.get_dataframe(table_name) + logger.info(f"table {table_name!r}: shalpe1 {local_table.shape}") + + from .state import State + + ref_state = State() + ref_state.default_settings() + ref_state.checkpoint._checkpoint_store = NullStore() + + if isinstance(location, str): + location = Path(location) + if self._obj.settings.checkpoint_format == "hdf": + from_store = HdfStore(location, mode="r") + else: + from_store = ParquetStore(location, mode="r") + ref_state.checkpoint.load(checkpoint_name, store=from_store) + registered_tables = ref_state.registered_tables() + if len(registered_tables) == 0: + logger.warning("no tables checked") + for table_name in registered_tables: + local_table = self._obj.get_dataframe(table_name) + ref_table = ref_state.get_dataframe(table_name) + cols_in_run_but_not_ref = set(local_table.columns) - set(ref_table.columns) + cols_in_ref_but_not_run = set(ref_table.columns) - set(local_table.columns) + if cols_in_ref_but_not_run: + msg = f"checkpoint {checkpoint_name!r} table {table_name!r} column names mismatch" + if cols_in_run_but_not_ref: + msg += ( + f"\ncolumns found but not expected: {cols_in_run_but_not_ref}" + ) + if cols_in_ref_but_not_run: + msg += ( + f"\ncolumns expected but not found: {cols_in_ref_but_not_run}" + ) + raise AssertionError(msg) + elif cols_in_run_but_not_ref: + # if there are extra columns output that were not expected, but + # we at least have all the column names that were expected, just + # warn, not error + warnings.warn( + f"checkpoint {checkpoint_name!r} table {table_name!r}\n" + f"columns found but not expected: {cols_in_run_but_not_ref}" + ) + if len(ref_table.columns) == 0: + try: + pd.testing.assert_index_equal(local_table.index, ref_table.index) + except Exception as err: + raise AssertionError( + f"checkpoint {checkpoint_name!r} table {table_name!r}, {str(err)}" + ) + else: + logger.info(f"table {table_name!r}: ok") + else: + try: + pd.testing.assert_frame_equal( + local_table[ref_table.columns], ref_table, check_dtype=False + ) + except Exception as err: + if not strict_categoricals: + try: + pd.testing.assert_frame_equal( + local_table[ref_table.columns], + ref_table, + check_dtype=False, + check_categorical=False, + ) + except Exception as err2: + raise AssertionError( + f"checkpoint {checkpoint_name!r} table {table_name!r}, {str(err)}\nfrom: {str(err2)}" + ) + else: + warnings.warn( + f"checkpoint {checkpoint_name!r} table {table_name!r}, " + f"values match but categorical dtype does not" + ) + else: + raise AssertionError( + f"checkpoint {checkpoint_name!r} table {table_name!r}, {str(err)}" + ) + else: + logger.info(f"table {table_name!r}: ok") + + def cleanup(self): + """ + Remove intermediate checkpoints from pipeline. + + These are the steps to clean up: + + - Open main pipeline if not already open (it may be closed if + running with multiprocessing), + - Create a new single-checkpoint pipeline file with the latest + version of all checkpointed tables, + - Delete the original main pipeline and any subprocess pipelines + + This method is generally called at the end of a successful model + run, as it removes the intermediate checkpoint files. + + Called if cleanup_pipeline_after_run setting is True + + """ + # we don't expect to be called unless cleanup_pipeline_after_run setting is True + if not self._obj.settings.cleanup_pipeline_after_run: + logger.warning("will not clean up, `cleanup_pipeline_after_run` is False") + return + + if not self.store_is_open(): + self.restore(LAST_CHECKPOINT) + + assert self.store_is_open(), f"Pipeline is not open." + + FINAL_PIPELINE_FILE_NAME = f"final_{self._obj.filesystem.pipeline_file_name}" + FINAL_CHECKPOINT_NAME = "final" + + if self._obj.settings.checkpoint_format == "hdf": + # constructing the path manually like this will not create a + # subdirectory that competes with the HDF5 filename. + final_pipeline_file_path = self._obj.filesystem.get_output_dir().joinpath( + FINAL_PIPELINE_FILE_NAME + ) + else: + # calling for a subdir ensures that the subdirectory exists. + final_pipeline_file_path = self._obj.filesystem.get_output_dir( + subdir=FINAL_PIPELINE_FILE_NAME + ) + + # keep only the last row of checkpoints and patch the last checkpoint name + checkpoints_df = self.get_inventory().tail(1).copy() + checkpoints_df["checkpoint_name"] = FINAL_CHECKPOINT_NAME + + if self._obj.settings.checkpoint_format == "hdf": + with pd.HDFStore( + str(final_pipeline_file_path), mode="w" + ) as final_pipeline_store: + for table_name in self.list_tables(): + # patch last checkpoint name for all tables + checkpoints_df[table_name] = FINAL_CHECKPOINT_NAME + + table_df = self._obj.get_table(table_name) + logger.debug( + f"cleanup_pipeline - adding table {table_name} {table_df.shape}" + ) + + final_pipeline_store[table_name] = table_df + + final_pipeline_store[CHECKPOINT_TABLE_NAME] = checkpoints_df + self.close_store() + else: + for table_name in self.list_tables(): + # patch last checkpoint name for all tables + checkpoints_df[table_name] = FINAL_CHECKPOINT_NAME + + table_df = self._obj.get_table(table_name) + logger.debug( + f"cleanup_pipeline - adding table {table_name} {table_df.shape}" + ) + table_dir = final_pipeline_file_path.joinpath(table_name) + if not table_dir.exists(): + table_dir.mkdir(parents=True) + ParquetStore._to_parquet( + table_df, table_dir.joinpath(f"{FINAL_CHECKPOINT_NAME}.parquet") + ) + final_pipeline_file_path.joinpath(CHECKPOINT_TABLE_NAME).mkdir( + parents=True, exist_ok=True + ) + ParquetStore._to_parquet( + checkpoints_df, + final_pipeline_file_path.joinpath( + CHECKPOINT_TABLE_NAME, "None.parquet" + ), + ) + + logger.debug(f"deleting all pipeline files except {final_pipeline_file_path}") + self._obj.tracing.delete_output_files("h5", ignore=[final_pipeline_file_path]) + + # delete all ParquetStore except final + pqps = list( + self._obj.filesystem.get_output_dir().glob(f"**/*{ParquetStore.extension}") + ) + for pqp in pqps: + if pqp.name != final_pipeline_file_path.name: + ParquetStore(pqp).wipe() + + def load_dataframe(self, table_name, checkpoint_name=None): + """ + Return pandas dataframe corresponding to table_name + + if checkpoint_name is None, return the current (most recent) version of the table. + The table can be a checkpointed table or any registered table (e.g. function table) + + if checkpoint_name is specified, return table as it was at that checkpoint + (the most recently checkpointed version of the table at or before checkpoint_name) + + Parameters + ---------- + table_name : str + checkpoint_name : str or None + + Returns + ------- + df : pandas.DataFrame + """ + + if table_name not in self.last_checkpoint and self._obj.is_table(table_name): + if checkpoint_name is not None: + raise RuntimeError( + f"checkpoint.dataframe: checkpoint_name ({checkpoint_name!r}) not " + f"supported for non-checkpointed table {table_name!r}" + ) + + return self._obj.get_dataframe(table_name) + + # if there is no checkpoint name given, do not attempt to read from store + if checkpoint_name is None: + if table_name not in self.last_checkpoint: + raise RuntimeError("table '%s' never checkpointed." % table_name) + + if not self.last_checkpoint[table_name]: + raise RuntimeError("table '%s' was dropped." % table_name) + + return self._obj.get_dataframe(table_name) + + # find the requested checkpoint + checkpoint = next( + (x for x in self.checkpoints if x["checkpoint_name"] == checkpoint_name), + None, + ) + if checkpoint is None: + raise RuntimeError("checkpoint '%s' not in checkpoints." % checkpoint_name) + + # find the checkpoint that table was written to store + last_checkpoint_name = checkpoint.get(table_name, None) + + if not last_checkpoint_name: + raise RuntimeError( + "table '%s' not in checkpoint '%s'." % (table_name, checkpoint_name) + ) + + # if this version of table is same as current + if self.last_checkpoint.get(table_name, None) == last_checkpoint_name: + return self._obj.get_dataframe(table_name) + + return self._read_df(table_name, last_checkpoint_name) diff --git a/activitysim/core/workflow/chunking.py b/activitysim/core/workflow/chunking.py new file mode 100644 index 000000000..90bc8ee17 --- /dev/null +++ b/activitysim/core/workflow/chunking.py @@ -0,0 +1,29 @@ +from __future__ import annotations + +import logging.config +import threading + +from activitysim.core.workflow.accessor import FromState, StateAccessor + +logger = logging.getLogger(__name__) + + +def _init_historian(): + from activitysim.core.chunk import ChunkHistorian + + return ChunkHistorian() + + +class Chunking(StateAccessor): + """ + This accessor provides chunking tools. + """ + + def __get__(self, instance, objtype=None) -> Chunking: + # derived __get__ changes annotation, aids in type checking + return super().__get__(instance, objtype) + + CHUNK_LEDGERS: list = FromState(default_init=True) + CHUNK_SIZERS: list = FromState(default_init=True) + ledger_lock: threading.Lock = FromState(default_init=True) + HISTORIAN = FromState(default_init=_init_historian) diff --git a/activitysim/core/workflow/dataset.py b/activitysim/core/workflow/dataset.py new file mode 100644 index 000000000..8cf9b5572 --- /dev/null +++ b/activitysim/core/workflow/dataset.py @@ -0,0 +1,42 @@ +from __future__ import annotations + +import logging +from collections.abc import Iterable + +import xarray as xr +from sharrow.dataset import construct + +from .accessor import StateAccessor + +logger = logging.getLogger(__name__) + + +class Datasets(StateAccessor): + """ + This accessor provides easy access to state tables and datasets. + + Named datasets are available as attributes on this accessor, for + example `State.dataset.persons`, which is the equivalent of calling + `State.get_dataset("persons")`. + + Otherwise, there are no "normal" methods for this accessor, but the + `__dir__` method is implemented to provide tab-completion capabilities + inside compatible interactive interpreters (including Jupyter notebooks). + """ + + def __get__(self, instance, objtype=None) -> Datasets: + # derived __get__ changes annotation, aids in type checking + return super().__get__(instance, objtype) + + def __dir__(self) -> Iterable[str]: + return ( + self._obj.existing_table_status.keys() | self._obj._LOADABLE_TABLES.keys() + ) + + def __getattr__(self, item) -> xr.Dataset: + if item in self._obj.existing_table_status: + return self._obj.get_dataset(item) + elif item in self._obj._LOADABLE_TABLES: + arg_value = self._obj._LOADABLE_TABLES[item](self._obj._context) + return construct(arg_value) + raise AttributeError(item) diff --git a/activitysim/core/workflow/examples.py b/activitysim/core/workflow/examples.py new file mode 100644 index 000000000..6214ef45f --- /dev/null +++ b/activitysim/core/workflow/examples.py @@ -0,0 +1,52 @@ +from __future__ import annotations + +from pathlib import Path + +from activitysim.core import workflow + + +def create_example( + example_name: str, + directory: Path | str = None, + temp: bool = False, +) -> workflow.State: + """ + Create an example model. + + Parameters + ---------- + example_name : str + directory : Path-like, optional + Install the example into this directory. + temp : bool, default False + Install the example into a temporary directory tied to the returned + State object. Cannot be set to True if `directory` is given. + + Returns + ------- + State + """ + if temp: + if directory is not None: + raise ValueError("cannot give `directory` and also `temp`") + import tempfile + + temp_dir = tempfile.TemporaryDirectory() + directory = temp_dir.name + else: + temp_dir = None + if directory is None: + directory = Path.cwd() + + directory = Path(directory) + + # import inside function to prevent circular references. + from activitysim.examples import get_example + + installed_to, subdirs = get_example( + example_name, destination=directory, with_subdirs=True + ) + state = workflow.State.make_default(installed_to, **subdirs) + if temp: + state.set("_TEMP_DIR_", temp_dir) + return state diff --git a/activitysim/core/workflow/extending.py b/activitysim/core/workflow/extending.py new file mode 100644 index 000000000..b75829f77 --- /dev/null +++ b/activitysim/core/workflow/extending.py @@ -0,0 +1,45 @@ +from __future__ import annotations + +from activitysim.core.workflow.accessor import StateAccessor + + +class Extend(StateAccessor): + """ + Methods to extend the capabilities of ActivitySim. + """ + + def __get__(self, instance, objtype=None) -> "Extend": + # derived __get__ changes annotation, aids in type checking + return super().__get__(instance, objtype) + + def declare_table( + self, table_name, traceable=True, random_channel=True, index_name=None + ): + """ + Declare a new table. + + Parameters + ---------- + table_name : str + traceable : bool, default True + random_channel : bool, default True + index_name : str, optional + + """ + + traceable_tables = self._obj.tracing.traceable_tables + if traceable and table_name not in traceable_tables: + traceable_tables.append(table_name) + self._obj.set("traceable_tables", traceable_tables) + + from activitysim.abm.models.util import canonical_ids + + rng_channels = self._obj.get("rng_channels") + if random_channel and table_name not in rng_channels: + rng_channels.append(table_name) + self._obj.set("rng_channels", rng_channels) + + canonical_table_index_names = self._obj.get("canonical_table_index_names") + if index_name is not None and table_name not in canonical_table_index_names: + canonical_table_index_names[table_name] = index_name + self._obj.set("canonical_table_index_names", canonical_table_index_names) diff --git a/activitysim/core/workflow/logging.py b/activitysim/core/workflow/logging.py new file mode 100644 index 000000000..5f0ddd6fb --- /dev/null +++ b/activitysim/core/workflow/logging.py @@ -0,0 +1,152 @@ +from __future__ import annotations + +import logging +import logging.config +import os +import sys +from collections.abc import Mapping, MutableMapping + +import yaml + +from activitysim.core.workflow.accessor import StateAccessor + +logger = logging.getLogger(__name__) + +ASIM_LOGGER = "activitysim" +CSV_FILE_TYPE = "csv" +LOGGING_CONF_FILE_NAME = "logging.yaml" + + +def _rewrite_config_dict(state, x): + if isinstance(x, Mapping): + # When a log config is a mapping of a single key that is `get_log_file_path` + # we apply the get_log_file_path method to the value, which can add a + # prefix (usually for multiprocessing) + if len(x.keys()) == 1 and "get_log_file_path" in x.keys(): + return _rewrite_config_dict( + state, state.get_log_file_path(x["get_log_file_path"]) + ) + # When a log config is a mapping of two keys that are `is_sub_task` + # and `is_not_sub_task`, we check the `is_sub_task` value in this context, + # and choose the appropriate value + elif ( + len(x.keys()) == 2 + and "is_sub_task" in x.keys() + and "is_not_sub_task" in x.keys() + ): + is_sub_task = state.get_injectable("is_sub_task", False) + return _rewrite_config_dict( + state, x["is_sub_task"] if is_sub_task else x["is_not_sub_task"] + ) + # accept alternate spelling "if_sub_task" in addition to "is_sub_task" + elif ( + len(x.keys()) == 2 + and "if_sub_task" in x.keys() + and "if_not_sub_task" in x.keys() + ): + is_sub_task = state.get_injectable("is_sub_task", False) + return _rewrite_config_dict( + state, x["if_sub_task"] if is_sub_task else x["if_not_sub_task"] + ) + else: + return {k: _rewrite_config_dict(state, v) for (k, v) in x.items()} + elif isinstance(x, list): + return [_rewrite_config_dict(state, v) for v in x] + elif isinstance(x, tuple): + return tuple(_rewrite_config_dict(state, v) for v in x) + else: + return x + + +class Logging(StateAccessor): + """ + This accessor provides logging tools. + """ + + def __get__(self, instance, objtype=None) -> Logging: + # derived __get__ changes annotation, aids in type checking + return super().__get__(instance, objtype) + + def config_logger(self, basic=False): + """ + Configure logger + + look for conf file in configs_dir, if not found use basicConfig + + Parameters + ---------- + basic : bool or int, default False + When set, ignore configuration file and just set logging to + use streaming to stdout. True implies logging level INFO, + or set to a different integer for that level. + + """ + + # look for conf file in configs_dir + if basic: + log_config_file = None + else: + log_config_file = self._obj.filesystem.get_config_file_path( + LOGGING_CONF_FILE_NAME, mandatory=False + ) + + if log_config_file: + try: + with open(log_config_file) as f: + config_dict = yaml.load(f, Loader=yaml.SafeLoader) + except Exception as e: + print(f"Unable to read logging config file {log_config_file}") + raise e + + config_dict = _rewrite_config_dict(self._obj, config_dict) + + try: + config_dict = config_dict["logging"] + config_dict.setdefault("version", 1) + logging.config.dictConfig(config_dict) + except Exception as e: + logging.warning( + f"Unable to config logging as specified in {log_config_file}" + ) + logging.warning( + "ActivitySim now requires YAML files to be loaded in " + "safe mode, check your file for unsafe tags such as " + "`!!python/object/apply`" + ) + raise e + + else: + if basic is True: + basic = logging.INFO + logging.basicConfig(level=basic, stream=sys.stdout) + + logger = logging.getLogger(ASIM_LOGGER) + + if log_config_file: + logger.info("Read logging configuration from: %s" % log_config_file) + else: + logger.log(basic, "Configured logging using basicConfig") + + def rotate_log_directory(self): + + output_dir = self._obj.filesystem.get_output_dir() + log_dir = output_dir.joinpath("log") + if not log_dir.exists(): + return + + from datetime import datetime + from stat import ST_CTIME + + old_log_time = os.stat(log_dir)[ST_CTIME] + rotate_name = os.path.join( + output_dir, + datetime.fromtimestamp(old_log_time).strftime("log--%Y-%m-%d--%H-%M-%S"), + ) + try: + os.rename(log_dir, rotate_name) + except Exception as err: + # if Windows fights us due to permissions or whatever, + print(f"unable to rotate log file, {err!r}") + else: + # on successful rotate, create new empty log directory + os.makedirs(log_dir) diff --git a/activitysim/core/workflow/report.py b/activitysim/core/workflow/report.py new file mode 100644 index 000000000..97cdca339 --- /dev/null +++ b/activitysim/core/workflow/report.py @@ -0,0 +1,17 @@ +from __future__ import annotations + +import logging + +from activitysim.core.workflow.accessor import StateAccessor + +logger = logging.getLogger(__name__) + + +class Reporting(StateAccessor): + """ + Tools for reporting and visualization + """ + + def __get__(self, instance, objtype=None) -> "Reporting": + # derived __get__ changes annotation, aids in type checking + return super().__get__(instance, objtype) diff --git a/activitysim/core/workflow/runner.py b/activitysim/core/workflow/runner.py new file mode 100644 index 000000000..8ba37a314 --- /dev/null +++ b/activitysim/core/workflow/runner.py @@ -0,0 +1,410 @@ +from __future__ import annotations + +import logging +import multiprocessing +import time +import warnings +from datetime import timedelta +from typing import Callable, Iterable + +from activitysim.core import tracing +from activitysim.core.exceptions import DuplicateWorkflowNameError +from activitysim.core.workflow.accessor import FromState, StateAccessor +from activitysim.core.workflow.checkpoint import ( + CHECKPOINT_NAME, + CHECKPOINT_TABLE_NAME, + FINAL_CHECKPOINT_NAME, + LAST_CHECKPOINT, +) +from activitysim.core.workflow.steps import run_named_step +from activitysim.core.workflow.util import write_notebook_heading + +# single character prefix for run_list model name to indicate that no checkpoint should be saved +NO_CHECKPOINT_PREFIX = "_" + + +logger = logging.getLogger(__name__) + + +def _format_elapsed_time(t): + t = round(t, 3) + if t < 60: + return f"{round(t, 3)} seconds" + td = str(timedelta(seconds=t)).rstrip("0") + if td.startswith("0:"): + td = td[2:] + return td + + +def split_arg(s: str, sep: str, default="") -> tuple[str, Any]: + """ + Split a string into two parts. + + When the part after the seperator is "true" or "false" (case-insensitive) + the second element of the returned tuple is the matching boolean value, + not a string. + + Parameters + ---------- + s : str + The string to split. + sep : str + The split character. + default : Any, default "" + The second part is by default an empty string, but through this + argument this can be overridden to be some other value. + + """ + r = s.split(sep, 2) + r = list(map(str.strip, r)) + + arg = r[0] + + if len(r) == 1: + val = default + else: + val = r[1] + val = {"true": True, "false": False}.get(val.lower(), val) + + return arg, val + + +class Runner(StateAccessor): + """ + This accessor provides the tools to actually run ActivitySim workflow steps. + """ + + def __get__(self, instance, objtype=None) -> "Runner": + # derived __get__ changes annotation, aids in type checking + return super().__get__(instance, objtype) + + def __call__(self, models, resume_after=None, memory_sidecar_process=None): + """ + run the specified list of models, optionally loading checkpoint and resuming after specified + checkpoint. + + Since we use model_name as checkpoint name, the same model may not be run more than once. + + If resume_after checkpoint is specified and a model with that name appears in the models list, + then we only run the models after that point in the list. This allows the user always to pass + the same list of models, but specify a resume_after point if desired. + + Parameters + ---------- + models : list[str] or Callable + A list of the model names to run, which should all have been + registered with the @workflow.step decorator. Alternative, give + a single function that is or could have been so-decorated. + resume_after : str or None + model_name of checkpoint to load checkpoint and AFTER WHICH to resume model run + memory_sidecar_process : MemorySidecar, optional + Subprocess that monitors memory usage + + returns: + nothing, but with pipeline open + """ + if isinstance(models, Callable) and models.__name__ is not None: + if models is self._obj._RUNNABLE_STEPS.get(models.__name__, None): + self([models.__name__], resume_after=None, memory_sidecar_process=None) + elif models is self._obj._LOADABLE_OBJECTS.get(models.__name__, None): + self._obj.set(models.__name__, self._obj.get(models.__name__)) + elif models is self._obj._LOADABLE_TABLES.get(models.__name__, None): + self._obj.set(models.__name__, self._obj.get(models.__name__)) + else: + raise DuplicateWorkflowNameError(models.__name__) + return + + if isinstance(models, str): + return self.by_name(models) + + t0 = tracing.print_elapsed_time() + + if resume_after == LAST_CHECKPOINT: + _checkpoints = self._obj.checkpoint.store.list_checkpoint_names() + if len(_checkpoints): + _resume_after = _checkpoints[-1] + else: + # nothing available in the checkpoint.store, cannot resume_after + resume_after = _resume_after = None + else: + _resume_after = resume_after + + if _resume_after: + + if ( + _resume_after != self._obj.checkpoint.last_checkpoint_name() + or self._obj.uncheckpointed_table_names() + ): + logger.debug( + f"last_checkpoint_name = {self._obj.checkpoint.last_checkpoint_name()}" + ) + logger.debug( + f"uncheckpointed_table_names = {self._obj.uncheckpointed_table_names()}" + ) + logger.debug(f"restoring from store with resume_after = {resume_after}") + self._obj.checkpoint.restore(resume_after) + t0 = tracing.print_elapsed_time("checkpoint.restore", t0) + else: + logger.debug(f"good to go with resume_after = {resume_after}") + + if resume_after == LAST_CHECKPOINT: + resume_after = self._obj.checkpoint.last_checkpoint[CHECKPOINT_NAME] + + if resume_after: + logger.info("resume_after %s" % resume_after) + if resume_after in models: + models = models[models.index(resume_after) + 1 :] + + self._obj.trace_memory_info("pipeline.run before preload_injectables") + + # preload any bulky injectables (e.g. skims) not in pipeline + if self._obj.get("preload_injectables", None): + if memory_sidecar_process: + memory_sidecar_process.set_event("preload_injectables") + t0 = tracing.print_elapsed_time("preload_injectables", t0) + + self._obj.trace_memory_info("pipeline.run after preload_injectables") + + t0 = tracing.print_elapsed_time() + for model in models: + if memory_sidecar_process: + memory_sidecar_process.set_event(model) + t1 = tracing.print_elapsed_time() + self.by_name(model) + self._obj.trace_memory_info(f"pipeline.run after {model}") + + self.log_runtime(model_name=model, start_time=t1) + + if memory_sidecar_process: + memory_sidecar_process.set_event("finalizing") + + # add checkpoint with final tables even if not intermediate checkpointing + if not self._obj.should_save_checkpoint(): + self._obj.checkpoint.add(FINAL_CHECKPOINT_NAME) + + self._obj.trace_memory_info("pipeline.run after run_models") + + t0 = tracing.print_elapsed_time("run_model (%s models)" % len(models), t0) + + # don't close the pipeline, as the user may want to read intermediate results from the store + + def __dir__(self) -> Iterable[str]: + return self._obj._RUNNABLE_STEPS.keys() | {"all"} + + def __getattr__(self, item): + if item in self._obj._RUNNABLE_STEPS: + + def f(**kwargs): + write_notebook_heading(item, self.heading_level) + return self.by_name(item, **kwargs) + + f.__doc__ = self._obj._RUNNABLE_STEPS[item].__doc__ + return f + raise AttributeError(item) + + timing_notes: set[str] = FromState(default_init=True) + + heading_level: int | None = FromState( + default_value=None, + doc=""" + Individual component heading level to use when running in a notebook. + + When individual components are called in a Jupyter notebook-like environment + using the `state.run.component_name` syntax, an HTML heading for each component + can be displayed in the notebook. These headings can be detected by Jupyter + extensions to enable rapid navigation with an automatically generated table + of contents. + """, + ) + + def log_runtime(self, model_name, start_time=None, timing=None, force=False): + assert (start_time or timing) and not (start_time and timing) + + timing = timing if timing else time.time() - start_time + seconds = round(timing, 1) + minutes = round(timing / 60, 1) + + process_name = multiprocessing.current_process().name + + if self._obj.settings.multiprocess and not force: + # when benchmarking, log timing for each processes in its own log + if self._obj.settings.benchmarking: + header = "component_name,duration" + with self._obj.filesystem.open_log_file( + f"timing_log.{process_name}.csv", "a", header + ) as log_file: + print(f"{model_name},{timing}", file=log_file) + # only continue to log runtime in global timing log for locutor + if not self._obj.get_injectable("locutor", False): + return + + header = "process_name,model_name,seconds,minutes,notes" + note = " ".join(self.timing_notes) + with self._obj.filesystem.open_log_file( + "timing_log.csv", "a", header + ) as log_file: + print( + f"{process_name},{model_name},{seconds},{minutes},{note}", file=log_file + ) + + self.timing_notes.clear() + + def _pre_run_step(self, model_name: str) -> bool | None: + """ + + Parameters + ---------- + model_name + + Returns + ------- + bool + True if the run of this step should be skipped. + """ + checkpointed_models = [ + checkpoint[CHECKPOINT_NAME] + for checkpoint in self._obj.checkpoint.checkpoints + ] + if model_name in checkpointed_models: + if self._obj.settings.duplicate_step_execution == "error": + checkpointed_model_bullets = "\n - ".join(checkpointed_models) + raise RuntimeError( + f"Checkpointed Models:\n - {checkpointed_model_bullets}\n" + f"Cannot run model '{model_name}' more than once" + ) + + self._obj.rng().begin_step(model_name) + + # check for args + if "." in model_name: + step_name, arg_string = model_name.split(".", 1) + args = dict( + (k, v) + for k, v in ( + split_arg(item, "=", default=True) for item in arg_string.split(";") + ) + ) + else: + step_name = model_name + args = {} + + # check for no_checkpoint prefix + if step_name[0] == NO_CHECKPOINT_PREFIX: + step_name = step_name[1:] + checkpoint = False + else: + checkpoint = self._obj.should_save_checkpoint(model_name) + + self._obj.add_injectable("step_args", args) + + self._obj.trace_memory_info(f"pipeline.run_model {model_name} start") + + logger.info(f"#run_model running step {step_name}") + + # these values are cached in the runner object itself, not in the context. + self.step_name = step_name + self.checkpoint = checkpoint + + def by_name(self, model_name, **kwargs): + """ + Run the specified model and add checkpoint for model_name + + Since we use model_name as checkpoint name, the same model may not be run more than once. + + Parameters + ---------- + model_name : str + model_name is assumed to be the name of a registered workflow step + """ + self.t0 = time.time() + try: + should_skip = self._pre_run_step(model_name) + if should_skip: + return + + instrument = self._obj.settings.instrument + if instrument is not None: + try: + from pyinstrument import Profiler + except ImportError: + instrument = False + if isinstance(instrument, list | set | tuple): + if self.step_name not in instrument: + instrument = False + else: + instrument = True + + if instrument: + from pyinstrument import Profiler + + with Profiler() as profiler: + self._obj._context = run_named_step( + self.step_name, self._obj._context, **kwargs + ) + out_file = self._obj.filesystem.get_profiling_file_path( + f"{self.step_name}.html" + ) + with open(out_file, "w") as f: + f.write(profiler.output_html()) + else: + self._obj._context = run_named_step( + self.step_name, self._obj._context, **kwargs + ) + + except Exception: + self.t0 = self._log_elapsed_time(f"run.{model_name} UNTIL ERROR", self.t0) + self._obj.add_injectable("step_args", None) + self._obj.rng().end_step(model_name) + raise + + else: + # no error, finish as normal + self.t0 = self._log_elapsed_time(f"run.{model_name}", self.t0) + self._obj.trace_memory_info(f"pipeline.run_model {model_name} finished") + + self._obj.add_injectable("step_args", None) + + self._obj.rng().end_step(model_name) + if self.checkpoint: + self._obj.checkpoint.add(model_name) + else: + logger.info( + f"##### skipping {self.step_name} checkpoint for {model_name}" + ) + + def all(self, resume_after=LAST_CHECKPOINT, memory_sidecar_process=None): + try: + t0 = tracing.print_elapsed_time() + + if self._obj.settings.multiprocess: + logger.info("run multiprocess simulation") + + from activitysim.cli.run import INJECTABLES + from activitysim.core import mp_tasks + + injectables = {k: self._obj.get_injectable(k) for k in INJECTABLES} + injectables["settings"] = self._obj.settings + # injectables["settings_package"] = state.settings.dict() + mp_tasks.run_multiprocess(self._obj, injectables) + + else: + logger.info("run single process simulation") + self( + models=self._obj.settings.models, + resume_after=resume_after, + memory_sidecar_process=memory_sidecar_process, + ) + + except Exception: + # log time until error and the error traceback + tracing.print_elapsed_time("all models until this error", t0) + logger.exception("activitysim run encountered an unrecoverable error") + raise + + def _log_elapsed_time(self, msg, t0=None, level=25): + t1 = time.time() + assert t0 is not None + t = t1 - (t0 or t1) + msg = f" time to execute {msg} : {_format_elapsed_time(t)}" + logger.log(level, msg) + return t1 diff --git a/activitysim/core/workflow/state.py b/activitysim/core/workflow/state.py new file mode 100644 index 000000000..f21810bb5 --- /dev/null +++ b/activitysim/core/workflow/state.py @@ -0,0 +1,1175 @@ +from __future__ import annotations + +import importlib +import io +import logging +import os +import sys +import textwrap +import warnings +from collections.abc import Iterable +from pathlib import Path +from typing import Any, Optional + +import pandas as pd +import pyarrow as pa +import xarray as xr +from pypyr.context import Context +from sharrow.dataset import construct as _dataset_construct + +import activitysim.core.random +from activitysim.core.configuration import FileSystem, NetworkSettings, Settings +from activitysim.core.exceptions import StateAccessError +from activitysim.core.workflow.checkpoint import LAST_CHECKPOINT, Checkpoints +from activitysim.core.workflow.chunking import Chunking +from activitysim.core.workflow.dataset import Datasets +from activitysim.core.workflow.extending import Extend +from activitysim.core.workflow.logging import Logging +from activitysim.core.workflow.report import Reporting +from activitysim.core.workflow.runner import Runner +from activitysim.core.workflow.steps import step as workflow_step +from activitysim.core.workflow.tracing import Tracing + +# ActivitySim +# See full license in LICENSE.txt. + + +logger = logging.getLogger(__name__) + +# name of the checkpoint dict keys +# (which are also columns in the checkpoints dataframe stored in hte pipeline store) + +# single character prefix for run_list model name to indicate that no checkpoint should be saved +NO_CHECKPOINT_PREFIX = "_" + +NO_DEFAULT = "throw error if missing" + + +class StateAttr: + """ + Convenience class for defining a context value as an attribute on a State. + + The name of the attribute defined in the `State` object is the key used + to find the attribute in the context. The primary use case is to make + a Pydantic BaseModel available as an attribute. + + Parameters + ---------- + member_type : type + default_init : bool, default False + When this attribute is accessed but the underlying key is not + found in the state's context, the default constructor can be called + to initialize the object. If this is False, accessing a missing + key raises a StateAccessError. + + See Also + -------- + activitysim.core.workflow.accessor.StateAccessor + """ + + def __init__(self, member_type, default_init=False, doc=None): + self.member_type = member_type + self._default_init = default_init + if doc: + self.__doc__ = textwrap.dedent(doc).strip() + else: + self.__doc__ = member_type.__doc__ + + def __set_name__(self, owner, name): + """Captures the attribute name when assigned in the State class.""" + self.name = name + + def __get__(self, instance, objtype=None): + """Access the value from the State's context.""" + if instance is None: + return self + try: + return instance._context[self.name] + except (KeyError, AttributeError): + if self._default_init: + instance._context[self.name] = self.member_type() + return instance._context[self.name] + raise StateAccessError( + f"{self.name} not initialized for this state" + ) from None + + def __set__(self, instance, value): + """Write a value into the State's context.""" + if not isinstance(value, self.member_type): + raise TypeError(f"{self.name} must be {self.member_type} not {type(value)}") + instance._context[self.name] = value + + def __delete__(self, instance): + """Remove a value from the State's context.""" + self.__set__(instance, None) + + +class State: + """ + The encapsulated state of an ActivitySim model. + """ + + def __init__(self, context=None): + """ + Initialize the encapsulated state of an ActivitySim model. + + Parameters + ---------- + context : pypyr.Context, optional + An initial context can be provided when the State is created. + """ + + self.open_files: dict[str, io.TextIOBase] = {} + """Files to close when state is destroyed or re-initialized.""" + + if context is None: + self._context = Context() + self.init_state() + elif isinstance(context, Context): + self._context = context + else: + raise TypeError(f"cannot init {type(self)} with {type(context)}") + + def __del__(self): + self.close_open_files() + + def __contains__(self, key): + """ + Check if a key is already stored in this state's context. + + This does *not* check if the key is automatically loadable, it only + checks if a cached value has already been stored. + + Parameters + ---------- + key : str + + Returns + ------- + bool + """ + return self._context.__contains__(key) + + def copy(self): + """ + Create a copy of this State. + + The copy will share the memory space for most arrays and tables with + the original state. + """ + return self.__class__(context=Context(self._context.copy())) + + def init_state(self) -> None: + """ + Initialize this state. + + - All checkpoints are wiped out. + - All open file objects connected to this state are closed. + - The status of all random number generators is cleared. + - The set of traceable table id's is emptied. + """ + self.checkpoint.initialize() + + self.close_open_files() + + self._initialize_prng() + + self.tracing.initialize() + self._context["_salient_tables"] = {} + + def _initialize_prng(self, base_seed=None): + from activitysim.core.random import Random + + self._context["prng"] = Random() + if base_seed is None: + try: + self.settings + except StateAccessError: + base_seed = 0 + else: + base_seed = self.settings.rng_base_seed + self._context["prng"].set_base_seed(base_seed) + + def import_extensions(self, ext: str | Iterable[str] = None, append=True) -> None: + """ + Import one or more extension modules for use with this model. + + This method isn't really necessary for single-process model + runs, as extension modules can be imported in the normal manner + for python. The real reason this methid is here is to support + multiprocessing. The names of extension modules imported with + this method will be saved and passed through to subtask workers, + which will also import the extensions and make them available as + model steps within the workers. + + Parameters + ---------- + ext : str | Iterable[str] + Names of extension modules to import. They should be module + or package names that can be imported from this state's working + directory. If they need to be imported from elsewhere, the + name should be the relative path to the extension module from + the working directory. + append : bool, default True + Extension names will be appended to the "imported_extensions" list + in this State's context (creating it if needed). Setting this + argument to false will remove references to any existing extensions, + before adding this new extension to the list. + """ + if ext is None: + return + if isinstance(ext, str): + ext = [ext] + if append: + extensions = self.get("imported_extensions", []) + else: + extensions = [] + if self.filesystem.working_dir: + working_dir = self.filesystem.working_dir + else: + working_dir = Path.cwd() + for e in ext: + basepath, extpath = os.path.split(working_dir.joinpath(e)) + if not basepath: + basepath = "." + sys.path.insert(0, os.path.abspath(basepath)) + try: + importlib.import_module(extpath) + except ImportError: + logger.exception("ImportError") + raise + except Exception as err: + logger.exception(f"Error {err}") + raise + finally: + del sys.path[0] + extensions.append(e) + self.set("imported_extensions", extensions) + + filesystem: FileSystem = StateAttr(FileSystem) + settings: Settings = StateAttr(Settings) + network_settings: NetworkSettings = StateAttr(NetworkSettings) + + checkpoint = Checkpoints() + logging = Logging() + tracing = Tracing() + extend = Extend() + report = Reporting() + dataset = Datasets() + chunk = Chunking() + + @property + def this_step(self): + step_list = self._context.get("_this_step", []) + if not step_list: + raise ValueError("not in a step") + return step_list[-1] + + @this_step.setter + def this_step(self, x): + assert isinstance(x, workflow_step) + step_list = self._context.get("_this_step", []) + step_list.append(x) + self._context["_this_step"] = step_list + + @this_step.deleter + def this_step(self): + step_list = self._context.get("_this_step", []) + step_list.pop() + self._context["_this_step"] = step_list + + @classmethod + def make_default( + cls, working_dir: Path = None, settings: dict[str, Any] = None, **kwargs + ) -> "State": + """ + Convenience constructor for mostly default States. + + Parameters + ---------- + working_dir : Path-like + If a directory, then this directory is the working directory. Or, + if the given path is actually a file, then the directory where the + file lives is the working directory (typically as a convenience for + using __file__ in testing). + settings : Mapping[str, Any] + Override settings values. + **kwargs + All other keyword arguments are forwarded to the + initialize_filesystem method. + + Returns + ------- + State + """ + if working_dir: + working_dir = Path(working_dir) + if working_dir.is_file(): + working_dir = working_dir.parent + self = cls().initialize_filesystem(working_dir, **kwargs) + settings_file = self.filesystem.get_config_file_path( + self.filesystem.settings_file_name, mandatory=False + ) + if settings_file is not None and settings_file.exists(): + self.load_settings() + else: + self.default_settings() + if settings: + for k, v in settings.items(): + if k not in self.settings.__fields__: + raise KeyError(f"no field {k!r} in {type(self.settings)}") + setattr(self.settings, k, v) + return self + + @classmethod + def make_temp( + cls, source: Path = None, checkpoint_name: str = LAST_CHECKPOINT + ) -> "State": + """ + Initialize state with a temporary directory. + + Parameters + ---------- + source : Path-like, optional + Location of pipeline store to use to initialize this object. + checkpoint_name : str, optional + name of checkpoint to load from source store, defaults to + the last checkpoint found + + Returns + ------- + State + """ + import tempfile + + temp_dir = tempfile.TemporaryDirectory() + temp_dir_path = Path(temp_dir.name) + temp_dir_path.joinpath("configs").mkdir() + temp_dir_path.joinpath("data").mkdir() + temp_dir_path.joinpath("configs/settings.yaml").write_text("# empty\n") + state = cls.make_default(temp_dir_path) + state._context["_TEMP_DIR_"] = temp_dir + if source is not None: + state.checkpoint.restore_from(source, checkpoint_name) + return state + + def initialize_filesystem( + self, + working_dir: Path | None = None, + *, + configs_dir: Path | tuple[Path, ...] = ("configs",), + data_dir: Path | tuple[Path, ...] = ("data",), + output_dir: str | Path = "output", + profile_dir: Path | None = None, + cache_dir: Path | None = None, + settings_file_name: str = "settings.yaml", + pipeline_file_name: str = "pipeline", + **silently_ignored_kwargs, + ) -> State: + """ + Initialize the state's filesystem. + + ActivitySim has a number of features to extract settings, model configs, + data, and other inputs automatically from various files, and to write + outputs to the file system in various locations. These directories + are defined very early in a model run, and other settings are loaded + based on them, so for convenience the filesystem settings are collected + together in a single pydantic validated object separate from all other + settings. + + All arguments to this function beyond `working_dir` are keyword-only. + Keyword arguments other than those listed are silently ignored. + + Parameters + ---------- + working_dir : path-like, optional + The top-level working directory for the model. When other + directories are given as relative paths, those relative paths are + evaluated relative to this directory. + configs_dir : path-like or tuple of path-like, default "configs" + Directories containing model configurations and settings. ActivitySim + model runs can be configured with settings file inheritance to avoid + duplicating settings across model configurations, e.g. to allow for + single-process and multiprocess configurations that share most of + their inputs and settings. + data_dir : path-like or tuple of path-like, default "data" + The directories where input data files can be found. + output_dir : path-like, default "output" + Most ActivitySim output will be written to this directory (or + subdirectories within it). + profile_dir : path-like, optional + If runtime instrumentation is turned on, pyinstrument profiling + output will be written in this directory. If not given, a unique + time-stamped subdirectory will be created in the `output` directory. + cache_dir : path-like, optional + Various intermediate files may be stored in the cache directory. This + should be a writable and readable location, and cached files may + persist and be re-used by various different model runs. It should + always be safe to simply delete everything in the cache directory, + as everything saved here should be recreated automatically from other + inputs if it is missing (although it may take some time to do so). + settings_file_name : str, default "settings.yaml" + Top level settings are defined in this file, which should be found + in one or more `configs_dir` locations. + pipeline_file_name : str, default "pipeline" + The base filename for checkpointed intermediate outputs. + + Returns + ------- + self : State + """ + if isinstance(configs_dir, str | Path): + configs_dir = (configs_dir,) + if isinstance(data_dir, str | Path): + data_dir = (data_dir,) + + fs = dict( + configs_dir=configs_dir, + data_dir=data_dir, + output_dir=output_dir, + settings_file_name=settings_file_name, + pipeline_file_name=pipeline_file_name, + ) + if working_dir is not None: + fs["working_dir"] = working_dir + if profile_dir is not None: + fs["profile_dir"] = profile_dir + if cache_dir is not None: + fs["cache_dir"] = cache_dir + try: + self.filesystem: FileSystem = FileSystem.model_validate(fs) + except Exception as err: + print(err) + raise + return self + + def default_settings(self, force=False) -> State: + """ + Initialize with all default settings, rather than reading from a file. + + Parameters + ---------- + force : bool, default False + If settings are already loaded, this method does nothing unless + this argument is true, in which case all existing settings are + discarded in favor of the defaults. + """ + try: + _ = self.settings + if force: + raise StateAccessError + except StateAccessError: + self.settings = Settings() + self.init_state() + return self + + def load_settings(self) -> State: + """ + Read and parse settings file(s) from config dirs. + + Returns + ------- + self : State + """ + # read settings file + raw_settings = self.filesystem.read_settings_file( + self.filesystem.settings_file_name, + mandatory=True, + include_stack=False, + ) + + # the settings can redefine the cache directories. + cache_dir = raw_settings.pop("cache_dir", None) + if cache_dir: + if self.filesystem.cache_dir != cache_dir: + logger.warning(f"settings file changes cache_dir to {cache_dir}") + self.filesystem.cache_dir = cache_dir + settings_class = self.__class__.settings.member_type + self.settings: Settings = settings_class.model_validate(raw_settings) + + extra_settings = set(self.settings.__dict__) - set(settings_class.__fields__) + + if extra_settings: + warnings.warn( + "Writing arbitrary model values as top-level key in settings.yaml " + "is deprecated, make them sub-keys of `other_settings` instead.", + DeprecationWarning, + ) + logger.warning("Found the following unexpected settings:") + if self.settings.other_settings is None: + self.settings.other_settings = {} + for k in extra_settings: + logger.warning(f" - {k}") + self.settings.other_settings[k] = getattr(self.settings, k) + delattr(self.settings, k) + + self.init_state() + return self + + _RUNNABLE_STEPS = {} + _LOADABLE_TABLES = {} + _LOADABLE_OBJECTS = {} + _PREDICATES = {} + _TEMP_NAMES = set() # never checkpointed + + @property + def known_table_names(self): + return self._LOADABLE_TABLES.keys() | self.existing_table_names + + @property + def existing_table_names(self): + return self.existing_table_status.keys() + + @property + def existing_table_status(self) -> dict: + return self._context["_salient_tables"] + + def uncheckpointed_table_names(self): + uncheckpointed = [] + for tablename, table_status in self.existing_table_status.items(): + if table_status and tablename not in self._TEMP_NAMES: + uncheckpointed.append(tablename) + return uncheckpointed + + def _load_or_create_dataset( + self, table_name, overwrite=False, swallow_errors=False + ): + """ + Load a table from disk or otherwise programmatically create it. + + Parameters + ---------- + table_name : str + overwrite : bool + swallow_errors : bool + + Returns + ------- + xarray.Dataset + """ + if table_name in self.existing_table_names and not overwrite: + if swallow_errors: + return self.get_dataframe(table_name) + raise ValueError(f"table {table_name} already loaded") + if table_name not in self._LOADABLE_TABLES: + if swallow_errors: + return + raise ValueError(f"table {table_name} has no loading function") + logger.debug(f"loading table {table_name}") + try: + t = self._LOADABLE_TABLES[table_name](self._context) + except StateAccessError: + if not swallow_errors: + raise + else: + t = None + if t is not None: + self.add_table(table_name, t) + return t + + def get_dataset( + self, + table_name: str, + column_names: list[str] | None = None, + as_copy: bool = False, + ) -> xr.Dataset: + """ + Get a workflow table or dataset as a xarray.Dataset. + + Parameters + ---------- + table_name : str + Name of table or dataset to get. + column_names : list[str], optional + Include only these columns or variables in the dataset. + as_copy : bool, default False + Return a copy of the dataset instead of the original. + + Returns + ------- + xarray.Dataset + """ + t = self._context.get(table_name, None) + if t is None: + t = self._load_or_create_dataset(table_name, swallow_errors=False) + if t is None: + raise KeyError(table_name) + t = _dataset_construct(t) + if isinstance(t, xr.Dataset): + if column_names is not None: + t = t[column_names] + if as_copy: + return t.copy() + else: + return t + raise TypeError(f"cannot convert {table_name} to Dataset") + + def get_dataframe( + self, + tablename: str, + columns: Optional[list[str]] = None, + as_copy: bool = True, + ) -> pd.DataFrame: + """ + Get a workflow table as a pandas.DataFrame. + + Parameters + ---------- + tablename : str + Name of table to get. + columns : list[str], optional + Include only these columns in the dataframe. + as_copy : bool, default True + Return a copy of the dataframe instead of the original. + + Returns + ------- + DataFrame + """ + t = self._context.get(tablename, None) + if t is None: + t = self._load_or_create_dataset(tablename, swallow_errors=False) + if t is None: + raise KeyError(tablename) + if isinstance(t, pd.DataFrame): + if columns is not None: + t = t[columns] + if as_copy: + return t.copy() + else: + return t + elif isinstance(t, xr.Dataset): + # this route through pyarrow is generally faster than xarray.to_pandas + return t.single_dim.to_pyarrow().to_pandas() + raise TypeError(f"cannot convert {tablename} to DataFrame") + + def get_dataarray( + self, + tablename: str, + item: str, + as_copy: bool = True, + ) -> xr.DataArray: + """ + Get a workflow table item as a xarray.DataArray. + + Parameters + ---------- + tablename : str + Name of table to get. + item : str + Name of item within table. + as_copy : bool, default True + Return a copy of the data instead of the original. + + Returns + ------- + DataArray + """ + return self.get_dataset(tablename, column_names=[item])[item] + + def get_dataframe_index_name(self, tablename: str) -> str: + """ + Get the index name for a workflow table. + + Parameters + ---------- + tablename : str + Name of table to get. + + Returns + ------- + str + """ + t = self._context.get(tablename, None) + if t is None: + t = self._load_or_create_dataset(tablename, swallow_errors=False) + if t is None: + raise KeyError(tablename) + if isinstance(t, pd.DataFrame): + return t.index.name + raise TypeError(f"cannot get index name for {tablename}") + + def get_pyarrow( + self, tablename: str, columns: Optional[list[str] | str] = None + ) -> pa.Table: + """ + Get a workflow table as a pyarrow.Table. + + Parameters + ---------- + tablename : str + Name of table to get. + columns : list[str] or str, optional + Include only these columns in the dataframe. + + Returns + ------- + pyarrow.Table + """ + if isinstance(columns, str): + columns = [columns] + t = self._context.get(tablename, None) + if t is None: + t = self._load_or_create_dataset(tablename, swallow_errors=False) + if t is None: + raise KeyError(tablename) + if isinstance(t, pd.DataFrame): + t = pa.Table.from_pandas(t, preserve_index=True, columns=columns) + if isinstance(t, pa.Table): + if columns is not None: + t = t.select(columns) + return t + raise TypeError(f"cannot convert {tablename} to pyarrow.Table") + + def access(self, key: str, initializer: Any = NO_DEFAULT) -> Any: + """ + Raw access to values stored in this state's context. + + This method short-circuits all of ActivitySim's machinery to provide + or build missing context values automatically -- only values already + stored can be accessed. + + Parameters + ---------- + key : str + The name of the variable to access. + initializer : Any, optional + If the variable is not already in the state's context, it will + be set with this value, or if it is not provided a KeyError is + raised instead. + + Returns + ------- + Any + """ + if key not in self._context: + if initializer != NO_DEFAULT: + self.set(key, initializer) + else: + raise KeyError(key) + return self._context[key] + + def get(self, key, default: Any = NO_DEFAULT) -> Any: + """ + Automated access to values stored in this state's context. + + This method takes advantage of ActivitySim's machinery to provide + or build missing context values automatically. If a value is already + present in this state's context it is returned, otherwise the set of + defined methods for loadable objects and tables will be used to + create values if possible. + + Parameters + ---------- + key : str + The name of the variable to access. + default : Any, optional + If the variable is not already in the state's context, and cannot + be otherwise created automatically, it will be set with this value, + or else a KeyError is raised instead. + + Returns + ------- + Any + """ + + if not isinstance(key, str): + key_name = getattr(key, "__name__", None) + if key_name in self._LOADABLE_TABLES or key_name in self._LOADABLE_OBJECTS: + key = key_name + if key_name in self._RUNNABLE_STEPS: + raise ValueError( + f"cannot `get` {key_name}, it is a step, try State.run.{key_name}()" + ) + result = self._context.get(key, None) + if result is None: + try: + result = getattr(self.filesystem, key, None) + except StateAccessError: + result = None + if result is None: + if key in self._LOADABLE_TABLES: + result = self._LOADABLE_TABLES[key](self._context) + elif key in self._LOADABLE_OBJECTS: + result = self._LOADABLE_OBJECTS[key](self._context) + if result is None: + if default != NO_DEFAULT: + result = default + else: + self._context.assert_key_has_value( + key=key, caller=self.__class__.__name__ + ) + raise KeyError(key) + if not isinstance(result, xr.Dataset | xr.DataArray | pd.DataFrame | pd.Series): + result = self._context.get_formatted_value(result) + return result + + def set(self, key, value): + """ + Set a new value for a key in the context. + + Also removes from the context all other keys predicated on this key. + They can be regenerated later (from fresh inputs) if needed. + + Parameters + ---------- + key : str + """ + self._context[key] = value + for i in self._PREDICATES.get(key, []): + if i in self._context: + logger.debug(f"update of {key} clears cached {i}") + self.drop(i) + + def drop(self, key): + """ + Remove a key from the context. + + Also removes from the context all other keys predicated on this key. + + Parameters + ---------- + key : str + """ + del self._context[key] + for i in self._PREDICATES.get(key, []): + if i in self._context: + logger.debug(f"dropping {key} clears cached {i}") + self.drop(i) + + def extract(self, func): + return func(self) + + get_injectable = get # legacy function name + """Alias for :meth:`State.get`.""" + + add_injectable = set # legacy function name + """Alias for :meth:`State.set`.""" + + def rng(self) -> activitysim.core.random.Random: + if "prng" not in self._context: + self._initialize_prng() + return self._context["prng"] + + def pipeline_table_key(self, table_name, checkpoint_name): + if checkpoint_name: + key = f"{table_name}/{checkpoint_name}" + else: + key = f"/{table_name}" + return key + + def close_on_exit(self, file, name): + assert name not in self.open_files + self.open_files[name] = file + + def close_open_files(self): + for name, file in self.open_files.items(): + print("Closing %s" % name) + file.close() + self.open_files.clear() + + def get_rn_generator(self) -> activitysim.core.random.Random: + """ + Return the singleton random number object + + Returns + ------- + activitysim.random.Random + """ + return self.rng() + + def get_global_constants(self): + """ + Read global constants from settings file + + Returns + ------- + constants : dict + dictionary of constants to add to locals for use by expressions in model spec + """ + try: + filesystem = self.filesystem + except StateAccessError: + return {} + else: + return filesystem.read_settings_file("constants.yaml", mandatory=False) + + def add_table( + self, name: str, content: pd.DataFrame | xr.Dataset, salient: bool | None = None + ): + """ + Add a data table to this context, and potentially mark it for checkpointing. + + The table added completely replaces any existing table of the same + name. In part because checkpointing currently manages tables only in their + entirety, there is no mechanism to incrementally update a table by adding + data (columns and/or rows) in-place, although nothing prevents the user + of this method from partially re-using data content from an existing + table via a zero-copy transformation. + + Parameters + ---------- + name : str + The name of the table being added to this state's context. + content : pandas.DataFrame or xarray.Dataset + The new data content to write. + salient : bool, optional + Explicitly mark this table as salient or not. Salient tables + are marked to be checkpointed the next time a checkpoint operation + happens. If not set explicitly tables are presumed to be salient + unless they elsewhere defined as temporary tables. + + See Also + -------- + State.set + """ + if salient is None: + salient = name not in self._TEMP_NAMES + if salient: + # mark this salient table as edited, so it can be checkpointed + # at some later time if desired. + self.existing_table_status[name] = True + self.set(name, content) + + def is_table(self, name: str): + """ + Check if a name corresponds to a table in this state's context. + + Parameters + ---------- + name : str + + Returns + ------- + bool + """ + return name in self.existing_table_status + + def registered_tables(self): + """ + Return a list of the names of all currently registered dataframe tables + """ + return [name for name in self.existing_table_status if name in self._context] + + @property + def current_model_name(self) -> str: + """Name of the currently running model.""" + return self.rng().step_name + + def close_pipeline(self): + """ + Close any known open files + """ + self.close_open_files() + self.checkpoint.close_store() + self.init_state() + logger.debug("close_pipeline") + + def should_save_checkpoint(self, checkpoint_name=None) -> bool: + checkpoints = self.settings.checkpoints + + if checkpoints is True or checkpoints is False: + return checkpoints + + assert isinstance( + checkpoints, list + ), "setting 'checkpoints'' should be True or False or a list" + + return checkpoint_name in checkpoints + + def trace_memory_info(self, event, trace_ticks=0): + from activitysim.core.mem import trace_memory_info + + return trace_memory_info(event, state=self, trace_ticks=trace_ticks) + + run = Runner() + + def get_table(self, table_name, checkpoint_name=None): + """ + Return pandas dataframe corresponding to table_name + + if checkpoint_name is None, return the current (most recent) version of the table. + The table can be a checkpointed table or any registered table (e.g. function table) + + if checkpoint_name is specified, return table as it was at that checkpoint + (the most recently checkpointed version of the table at or before checkpoint_name) + + Parameters + ---------- + table_name : str + checkpoint_name : str or None + + Returns + ------- + df : pandas.DataFrame + """ + + if table_name not in self.checkpoint.last_checkpoint and self.is_table( + table_name + ): + if checkpoint_name is not None: + raise RuntimeError( + f"get_table: checkpoint_name ({checkpoint_name!r}) not " + f"supported for non-checkpointed table {table_name!r}" + ) + + return self._context.get(table_name) + + # if they want current version of table, no need to read from pipeline store + if checkpoint_name is None: + if table_name not in self.checkpoint.last_checkpoint: + raise RuntimeError("table '%s' never checkpointed." % table_name) + + if not self.checkpoint.last_checkpoint[table_name]: + raise RuntimeError("table '%s' was dropped." % table_name) + + return self._context.get(table_name) + + # find the requested checkpoint + checkpoint = next( + ( + x + for x in self.checkpoint.checkpoints + if x["checkpoint_name"] == checkpoint_name + ), + None, + ) + if checkpoint is None: + raise RuntimeError("checkpoint '%s' not in checkpoints." % checkpoint_name) + + # find the checkpoint that table was written to store + last_checkpoint_name = checkpoint.get(table_name, None) + + if not last_checkpoint_name: + raise RuntimeError( + "table '%s' not in checkpoint '%s'." % (table_name, checkpoint_name) + ) + + # if this version of table is same as current + if ( + self.checkpoint.last_checkpoint.get(table_name, None) + == last_checkpoint_name + ): + return self._context.get(table_name) + + return self.checkpoint._read_df(table_name, last_checkpoint_name) + + def extend_table(self, table_name, df, axis=0): + """ + add new table or extend (add rows) to an existing table + + Parameters + ---------- + table_name : str + potentially existing table name + df : pandas DataFrame + """ + assert axis in [0, 1] + + if self.is_table(table_name): + table_df = self.get_dataframe(table_name) + + if axis == 0: + # don't expect indexes to overlap + assert len(table_df.index.intersection(df.index)) == 0 + missing_df_str_columns = [ + c + for c in table_df.columns + if c not in df.columns and table_df[c].dtype == "O" + ] + else: + # expect indexes be same + assert table_df.index.equals(df.index) + new_df_columns = [c for c in df.columns if c not in table_df.columns] + df = df[new_df_columns] + missing_df_str_columns = [] + + # union categoricals + for c in table_df.columns: + if c in df.columns: + if isinstance(table_df[c].dtype, pd.api.types.CategoricalDtype): + if isinstance(df[c].dtype, pd.api.types.CategoricalDtype): + from pandas.api.types import union_categoricals + + uc = union_categoricals([table_df[c], df[c]]) + table_df[c] = pd.Categorical( + table_df[c], categories=uc.categories + ) + df[c] = pd.Categorical(df[c], categories=uc.categories) + else: + # when the existing categorical type has an empty string as a category, + # we will use that as the missing value instead of NaN + if isinstance(table_df[c].dtype, pd.api.types.CategoricalDtype): + if "" in table_df[c].cat.categories: + missing_df_str_columns.append(c) + + # preserve existing column order + df = pd.concat([table_df, df], sort=False, axis=axis) + + # backfill missing df columns that were str (object) type in table_df + if axis == 0: + for c in missing_df_str_columns: + df[c] = df[c].fillna("") + + self.add_table(table_name, df) + + return df + + def drop_table(self, table_name): + if self.is_table(table_name): + logger.debug("drop_table dropping table '%s'" % table_name) + self._context.pop(table_name, None) + self.existing_table_status.pop(table_name) + + if table_name in self.checkpoint.last_checkpoint: + logger.debug( + "drop_table removing table %s from last_checkpoint" % table_name + ) + self.checkpoint.last_checkpoint[table_name] = "" + + def get_output_file_path(self, file_name: str, prefix: str | bool = None) -> Path: + if prefix is None or prefix is True: + prefix = self.get_injectable("output_file_prefix", None) + if prefix: + file_name = f"{prefix}-{file_name}" + return self.filesystem.get_output_dir().joinpath(file_name) + + def get_log_file_path(self, file_name: str, prefix: bool = True) -> Path: + """ + Get the log file path for this process. + + This method is not purely a pass-through to this state's `filesystem`, + as it also potentially adds a prefix to the filename based on the state. + + Parameters + ---------- + file_name : str + The name of the desired log file. + prefix : bool, default True + Whether to add a prefix to the desired log file name. This is + simply a boolean flag for whether to add the prefix, the actual + value of the prefix id drawn from the "log_file_prefix" key within + this state. If that key is not set, no prefix is added regardless + of the value of this argument. + + Returns + ------- + Path + """ + prefix = prefix and self.get_injectable("log_file_prefix", None) + if prefix: + file_name = f"{prefix}-{file_name}" + return self.filesystem.get_log_file_path(file_name) + + def set_step_args(self, args=None): + assert isinstance(args, dict) or args is None + self.add_injectable("step_args", args) + + def get_step_arg(self, arg_name, default=NO_DEFAULT): + args = self.get_injectable("step_args") + + assert isinstance(args, dict) + if arg_name not in args and default == NO_DEFAULT: + raise "step arg '%s' not found and no default" % arg_name + + return args.get(arg_name, default) diff --git a/activitysim/core/workflow/steps.py b/activitysim/core/workflow/steps.py new file mode 100644 index 000000000..6a8884225 --- /dev/null +++ b/activitysim/core/workflow/steps.py @@ -0,0 +1,502 @@ +from __future__ import annotations + +import abc +import importlib +import importlib.machinery +import importlib.util +import logging +import time +from collections import namedtuple +from collections.abc import Container +from inspect import get_annotations, getfullargspec +from typing import Callable, Collection, Mapping, NamedTuple + +import numpy as np # noqa: 401 +import pandas as pd # noqa: 401 +import xarray as xr # noqa: 401 +from pypyr.context import Context +from pypyr.errors import KeyNotInContextError + +from activitysim.core import workflow +from activitysim.core.exceptions import ( + DuplicateWorkflowNameError, + DuplicateWorkflowTableError, +) +from activitysim.core.workflow.util import ( + get_formatted_or_default, + get_formatted_or_raw, + get_override_or_formatted_or_default, + is_notebook, +) + +logger = logging.getLogger(__name__) + +_STEP_LIBRARY = {} + +ExtendedArgSpec = namedtuple( + "ExtendedArgSpec", + "args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, " + "annotations, ndefault, required_args", +) + + +def error_logging(func): + def wrapper(*args, **kwargs): + try: + return func(*args, **kwargs) + except Exception as err: + logging.error(f"===== ERROR IN {func.__name__} =====") + logging.exception(f"{err}") + logging.error(f"===== / =====") + raise + + return wrapper + + +def _new_module(mod_name): + spec = importlib.machinery.ModuleSpec(mod_name, None) + return importlib.util.module_from_spec(spec) + + +def _create_module(mod_name, content): + mod = _new_module(mod_name) + for k, v in content.items(): + setattr(mod, k, v) + return mod + + +def _create_step(step_name, step_func): + # the module version of each step is for pypyr, and it always mutates + # context in-place instead of making updates to copies + _create_module(f"{__package__}.{step_name}", {"run_step": step_func}) + _STEP_LIBRARY[step_name] = step_func + + +def run_named_step(name, context, **kwargs): + try: + step_func = _STEP_LIBRARY[name] + except KeyError: + logger.error(f"Unknown step {name}, the known steps are:") + for n in sorted(_STEP_LIBRARY.keys()): + logger.error(f" - {n}") + raise + step_func(context, **kwargs) + return context + + +class StepArgInit(abc.ABC): + """ + Base class for things that initialize default workflow.step args from state. + """ + + @abc.abstractmethod + def __call__(self, state: workflow.State, **other_overrides): + raise NotImplementedError + + +class ModelSettingsFromYaml(StepArgInit): + def __init__(self, model_settings_file_name): + self.model_settings_file_name = model_settings_file_name + + def __call__(self, state: workflow.State, **other_overrides): + return state.filesystem.read_model_settings(self.model_settings_file_name) + + +class step: + """ + Decorator for ActivitySim model components and related functions. + + See the documentation on :ref:`workflow-steps` for more details. + + Parameters + ---------- + wrapped_func : Callable + The function being wrapped. + step_name : str, optional + The name of the step. This is usually just inferred from the name of + the function being wrapped, but it can be explicitly set to some other + value if needed. + cache : bool, default False + If true, this function is only run if the named value is not + already stored in the context. Also, the return value should + not be a mapping but instead just a single Python object that + will be stored in the context with a key given by the step_name. + kind : {"step", "table", "temp_table", "cached_object"} + The kind of workflow function being wrapped. + copy_tables : bool or Container[str], default True + If this evaluates to true, access to tables as a DataFrame is + always via a copy operation on any registered table instead of the + original. If given as a container, only table names in the container + are copied. + overloading : bool, default False + Allow this step definition to overload an existing wrapped workflow + function. This permits a user to overload ActivitySim functions with + bespoke alternatives. To ensure that the reverse never occurs (i.e. + the user creates a bespoke alternative implementation and then allows + it to be overwritten by ActivitySim's default by importing things in + the wrong order) steps defined and delivered within the ActivitySim + package itself should never set this flag. + + Returns + ------- + Callable + """ + + def __new__( + cls, + wrapped_func=None, + *, + step_name=None, + cache=False, + kind="step", + copy_tables=True, + overloading=False, + ): + if wrapped_func is not None and not isinstance(wrapped_func, Callable): + raise TypeError("workflow step must decorate a callable") + if step_name is None and wrapped_func is not None: + step_name = wrapped_func.__name__ + self = super().__new__(cls) + self._step_name = step_name + self._cache = cache + self._kind = kind + self._copy_tables = copy_tables + self._overloading = overloading + if wrapped_func is not None: + return self(wrapped_func) + else: + return self + + def __call__(self, wrapped_func): + """ + Initialize a workflow.step wrapper. + + Parameters + ---------- + wrapped_func : Callable + The function being decorated. It should return a dictionary + of context updates. + """ + from activitysim.core.workflow import State + + _validate_workflow_function(wrapped_func) + if self._step_name is None: + self._step_name = wrapped_func.__name__ + logger.debug(f"found workflow_{self._kind}: {self._step_name}") + docstring = wrapped_func.__doc__ + + # overloading of existing steps is only allowed when the user + # sets overloading=True, which should never be done for steps + # defined and delivered within the ActivitySim package itself + def warn_overload(): + if self._overloading: + logger.warning( + f"workflow.step {wrapped_func.__module__}.{self._step_name} " + f"overloading existing {self._step_name}" + ) + else: + raise DuplicateWorkflowNameError(self._step_name) + + # check for duplicate workflow function names + if self._step_name in State._LOADABLE_OBJECTS: + warn_overload() + if self._step_name in State._LOADABLE_TABLES: + warn_overload() + if self._step_name in State._RUNNABLE_STEPS: + warn_overload() + + ( + _args, + _varargs, + _varkw, + _defaults, + _kwonlyargs, + _kwonlydefaults, + _annotations, + ) = getfullargspec(wrapped_func) + + # getfullargspec does not eval stringized annotations, so re-get those + _annotations = get_annotations(wrapped_func, eval_str=True) + + if _defaults is None: + _ndefault = 0 + _required_args = _args + else: + _ndefault = len(_defaults) + _required_args = _args[:-_ndefault] + + self._fullargspec = ExtendedArgSpec( + _args, + _varargs, + _varkw, + _defaults, + _kwonlyargs, + _kwonlydefaults, + _annotations, + _ndefault, + _required_args, + ) + + if not _required_args or _required_args[0] != "state": + raise TypeError( + f"the first argument of a workflow_{self._kind} must be the state" + ) + + def run_step(context: Context = None, **override_kwargs) -> None: + if ( + self._cache + and (context is not None) + and (self._step_name in context) + and len(override_kwargs) == 0 + ): + return context.get_formatted(self._step_name) + assert isinstance(context, Context) + state = State(context) + + # initialize step-specific arguments if they are not provided in override_kwargs + if _ndefault: + for arg, default in zip(_args[-_ndefault:], _defaults): + if isinstance(default, StepArgInit): + override_kwargs[arg] = default(state, **override_kwargs) + else: + override_kwargs[arg] = default + if _kwonlydefaults: + for karg in _kwonlyargs: + karg_default = _kwonlydefaults.get(karg, None) + if isinstance(karg_default, StepArgInit): + override_kwargs[karg] = karg_default(state, **override_kwargs) + else: + override_kwargs[karg] = karg_default + + caption = get_override_or_formatted_or_default( + override_kwargs, context, "caption", None + ) + progress_tag = get_override_or_formatted_or_default( + override_kwargs, context, "progress_tag", caption + ) + # if progress_tag is not None: + # reset_progress_step(description=progress_tag) + + return_type = _annotations.get("return", "") + + caption_type = get_override_or_formatted_or_default( + override_kwargs, context, "caption_type", "fig" + ) + caption_maker = get_override_or_formatted_or_default( + override_kwargs, context, caption_type, None + ) + # parse and run function itself + args = [] + for arg in _required_args[1:]: + # first arg is always state + if arg in override_kwargs: + arg_value = override_kwargs[arg] + elif arg in context: + arg_value = context.get(arg) + else: + if arg in state._LOADABLE_TABLES: + arg_value = state._LOADABLE_TABLES[arg](context) + elif arg in state._LOADABLE_OBJECTS: + arg_value = state._LOADABLE_OBJECTS[arg](context) + else: + context.assert_key_has_value( + key=arg, caller=wrapped_func.__module__ + ) + raise KeyError(arg) + if ( + self._copy_tables + and arg in state.existing_table_status + and arg not in override_kwargs + ): + is_df = _annotations.get(arg) is pd.DataFrame + if is_df: + if isinstance(self._copy_tables, Container): + if arg in self._copy_tables: + arg_value = arg_value.copy() + else: + # copy_tables is truthy + arg_value = arg_value.copy() + if _annotations.get(arg) is pd.DataFrame and isinstance( + arg_value, xr.Dataset + ): + # convert to dataframe if asking for that + arg_value = arg_value.single_dim.to_pandas() + if _annotations.get(arg) is xr.Dataset and isinstance( + arg_value, pd.DataFrame + ): + # convert to dataset if asking for that + from sharrow.dataset import construct + + arg_value = construct(arg_value) + try: + args.append(arg_value) + except Exception as err: + raise ValueError(f"extracting {arg} from context") from err + if _ndefault: + # step arguments with defaults are never taken from the context + # they use the defaults always unless overridden manually + for arg, default in zip(_args[-_ndefault:], _defaults): + if arg in override_kwargs: + args.append(override_kwargs[arg]) + else: + args.append(default) + kwargs = {} + for karg in _kwonlyargs: + if karg in _kwonlydefaults: + # step arguments with defaults are never taken from the context + # they use the defaults always unless overridden manually + kwargs[karg] = override_kwargs.get(karg, _kwonlydefaults[karg]) + else: + if karg in override_kwargs: + kwargs[karg] = override_kwargs[karg] + else: + context.assert_key_has_value( + key=karg, caller=wrapped_func.__module__ + ) + try: + kwargs[karg] = get_formatted_or_raw(context, karg) + except Exception as err: + raise ValueError(f"extracting {karg} from context") from err + if _varkw: + kwargs.update(context) + for arg in _required_args: + if arg in kwargs: + kwargs.pop(arg) + try: + state.this_step = self + outcome = error_logging(wrapped_func)(state, *args, **kwargs) + finally: + del state.this_step + if self._kind == "table": + context[self._step_name] = outcome + if "_salient_tables" not in context: + context["_salient_tables"] = {} + context["_salient_tables"][self._step_name] = time.time() + return outcome + elif self._kind == "temp_table": + context[self._step_name] = outcome + return outcome + elif self._kind == "cached_object": + context[self._step_name] = outcome + return outcome + elif self._kind == "step": + if outcome is not None: + if not isinstance(outcome, Mapping): + raise ValueError( + f"workflow step {wrapped_func.__name__} should return a mapping or None" + ) + context.update(outcome) + + run_step.__doc__ = docstring + _create_step(self._step_name, run_step) + + def update_with_cache(state: State, *args, **kwargs): + ignore_cache = kwargs.pop("_ignore_cache_", False) + if self._step_name not in state._context or ignore_cache: + state._context[self._step_name] = wrapped_func(state, *args, **kwargs) + return state._context[self._step_name] + + update_with_cache.__doc__ = docstring + update_with_cache.__name__ = self._step_name + + if self._kind == "cached_object": + State._LOADABLE_OBJECTS[self._step_name] = run_step + return update_with_cache + elif self._kind == "table": + State._LOADABLE_TABLES[self._step_name] = run_step + return update_with_cache + elif self._kind == "temp_table": + State._TEMP_NAMES.add(self._step_name) + State._LOADABLE_TABLES[self._step_name] = run_step + for i in _args[1:]: + if i not in State._PREDICATES: + State._PREDICATES[i] = {self._step_name} + else: + State._PREDICATES[i].add(self._step_name) + return update_with_cache + elif self._kind == "step": + State._RUNNABLE_STEPS[self._step_name] = run_step + return wrapped_func + else: + raise ValueError(self._kind) + + +class cached_object(step): + """ + Decorator for functions that deliver objects that should be cached. + + The function is called to initialize or otherwise generate the value of + an object to be cached, but only if the matching name is not already stored + in the state's context. + + :py:class:`@workflow.cached_object ` is equivalent to + :py:class:`@workflow.step(cache=True, kind="cached_object") `. + """ + + def __new__(cls, wrapped_func=None, *, step_name=None): + return super().__new__( + cls, wrapped_func, step_name=step_name, cache=True, kind="cached_object" + ) + + +class table(step): + """ + Decorator for functions that deliver a data table. + + The function is called to initialize or otherwise generate the content of + a named data table, but only if the matching name is not already stored + in the state's context. + + :py:class:`@workflow.table ` is equivalent to + :py:class:`@workflow.step(cache=True, kind="table") `. + """ + + def __new__(cls, wrapped_func=None, *, step_name=None): + return super().__new__( + cls, wrapped_func, step_name=step_name, cache=True, kind="table" + ) + + +class temp_table(step): + """ + Decorator for functions that deliver a temporary data table. + + The function is called to initialize or otherwise generate the content of + a named temp table, but only if the matching name is not already stored + in the state's context. + + :py:class:`@workflow.temp_table ` is equivalent to + :py:class:`@workflow.step(cache=True, kind="temp_table") `. + """ + + def __new__(cls, wrapped_func=None, *, step_name=None): + return super().__new__( + cls, wrapped_func, step_name=step_name, cache=True, kind="temp_table" + ) + + +def _validate_workflow_function(f): + annot = get_annotations(f, eval_str=True) + argspec = getfullargspec(f) + if argspec.args[0] != "state": + raise SyntaxError("workflow.func must have `state` as the first argument") + if not issubclass(annot.get("state"), workflow.State): + raise SyntaxError( + "workflow.func must have `State` as the first argument annotation" + ) + + +def func(function): + """ + Wrapper for a simple workflow function. + """ + _validate_workflow_function(function) + + def wrapper(state, *args, **kwargs): + if not isinstance(state, workflow.State): + raise TypeError( + "workflow functions must have a State as the first argument" + ) + return function(state, *args, **kwargs) + + return wrapper diff --git a/activitysim/core/workflow/test/conftest.py b/activitysim/core/workflow/test/conftest.py new file mode 100644 index 000000000..7c123dacf --- /dev/null +++ b/activitysim/core/workflow/test/conftest.py @@ -0,0 +1,136 @@ +# The conftest.py file serves as a means of providing fixtures for an entire directory. +# Fixtures defined in a conftest.py can be used by any test in that package without +# needing to import them (pytest will automatically discover them). +# https://docs.pytest.org/en/7.2.x/reference/fixtures.html#conftest-py-sharing-fixtures-across-multiple-files + +from __future__ import annotations + +from pathlib import Path + +import pandas as pd +import pytest + +from activitysim.core.workflow import State +from activitysim.core.workflow.checkpoint import INITIAL_CHECKPOINT_NAME, ParquetStore + + +def _person_df() -> pd.DataFrame: + df = pd.DataFrame( + { + "Income": [45, 88, 56, 15, 71], + "Name": ["Andre", "Bruce", "Carol", "David", "Eugene"], + "Age": [14, 25, 55, 8, 21], + "WorkMode": ["Car", "Bus", "Car", "Car", "Walk"], + }, + index=pd.Index([441, 445, 552, 556, 934], name="person_id"), + ) + df["WorkMode"] = df["WorkMode"].astype("category") + return df + + +@pytest.fixture +def person_df() -> pd.DataFrame: + """ + Sample persons dataframe with dummy data. + """ + return _person_df() + + +def _los_df() -> pd.DataFrame: + return pd.DataFrame( + { + "Speed": {"Car": 60, "Bus": 20, "Walk": 3}, + "Cost": {"Car": 3.25, "Bus": 1.75, "Walk": 0}, + } + ) + + +@pytest.fixture +def los_df() -> pd.DataFrame: + """ + Sample LOS dataframe with dummy data. + """ + return _los_df() + + +@pytest.fixture +def los_messy_df() -> pd.DataFrame: + """ + Sample LOS dataframe with messy data. + """ + return _los_messy_df() + + +def _los_messy_df() -> pd.DataFrame: + los_df = _los_df() + los_df["int_first"] = [123, "text", 456.7] + los_df["text_first"] = ["klondike", 5, 12.34] + los_df["float_first"] = [456.7, "text", 555] + return los_df + + +@pytest.fixture(scope="session") +def sample_parquet_store(tmp_path_factory: pytest.TempPathFactory) -> Path: + """ + Generate sample parquet store for testing. + + Parameters + ---------- + tmp_path_factory : pytest.TempPathFactory + PyTest's own temporary path fixture, the sample parquet store + will be created in a temporary directory here. + + Returns + ------- + Path + Location of zip archive + """ + t = tmp_path_factory.mktemp("core-workflow") + + s = t.joinpath("sample-1") + s.joinpath("configs").mkdir(parents=True, exist_ok=True) + s.joinpath("data").mkdir(exist_ok=True) + + state = State.make_default(s) + state.checkpoint.add(INITIAL_CHECKPOINT_NAME) + + # a table to store + person_df = _person_df() + state.add_table("persons", person_df) + state.checkpoint.add("init_persons") + + # a second table + state.add_table("level_of_service", _los_df()) + state.checkpoint.add("init_los") + + # modify table + person_df["status"] = [11, 22, 33, 44, 55] + state.add_table("persons", person_df) + state.checkpoint.add("mod_persons") + + # modify table messy + state.add_table("level_of_service", _los_messy_df()) + state.checkpoint.add("mod_los") + + return state.checkpoint.store.filename + + +@pytest.fixture(scope="session") +def sample_parquet_zip(sample_parquet_store: Path) -> Path: + """ + Copy the sample parquet store into a read-only Zip archive. + + Parameters + ---------- + sample_parquet_store : Path + Location of original ParquetStore files. + + Returns + ------- + Path + Location of zip archive + """ + ps = ParquetStore(sample_parquet_store, mode="r") + return ps.make_zip_archive( + output_filename=ps.filename.parent.joinpath("samplepipeline") + ) diff --git a/activitysim/core/workflow/test/test_parquet_store.py b/activitysim/core/workflow/test/test_parquet_store.py new file mode 100644 index 000000000..75889a128 --- /dev/null +++ b/activitysim/core/workflow/test/test_parquet_store.py @@ -0,0 +1,70 @@ +from __future__ import annotations + +from pathlib import Path + +import pandas as pd +import pytest + +from activitysim.core import exceptions +from activitysim.core.workflow.checkpoint import GenericCheckpointStore, ParquetStore + + +def _test_parquet_store(store: GenericCheckpointStore, person_df, los_df, los_messy_df): + assert isinstance(store, GenericCheckpointStore) + assert store.list_checkpoint_names() == [ + "init", + "init_persons", + "init_los", + "mod_persons", + "mod_los", + ] + with pytest.raises(exceptions.TableNameNotFound): + store.get_dataframe("missing-tablename", "init_persons") + with pytest.raises(exceptions.CheckpointNameNotFoundError): + store.get_dataframe("persons", "bad-checkpoint-name") + pd.testing.assert_frame_equal( + store.get_dataframe("persons", "init_persons"), person_df + ) + pd.testing.assert_frame_equal(store.get_dataframe("persons", "init_los"), person_df) + with pytest.raises(AssertionError, match="DataFrame shape mismatch"): + pd.testing.assert_frame_equal( + store.get_dataframe("persons", "mod_persons"), person_df + ) + pd.testing.assert_frame_equal( + store.get_dataframe("persons", "mod_persons"), + person_df.assign(status=[11, 22, 33, 44, 55]), + ) + # call for last checkpoint explicitly + pd.testing.assert_frame_equal( + store.get_dataframe("persons", "_"), + person_df.assign(status=[11, 22, 33, 44, 55]), + ) + # call for last checkpoint implicitly + pd.testing.assert_frame_equal( + store.get_dataframe("persons"), + person_df.assign(status=[11, 22, 33, 44, 55]), + ) + + pd.testing.assert_frame_equal( + store.get_dataframe("level_of_service", "init_los"), + los_df, + ) + pd.testing.assert_frame_equal( + store.get_dataframe("level_of_service", "mod_persons"), + los_df, + ) + # messy data has mixed dtypes, falls back to pickle instead of parquet + pd.testing.assert_frame_equal( + store.get_dataframe("level_of_service"), + los_messy_df, + ) + + +def test_parquet_store(sample_parquet_store: Path, person_df, los_df, los_messy_df): + ps = ParquetStore(sample_parquet_store, mode="r") + _test_parquet_store(ps, person_df, los_df, los_messy_df) + + +def test_parquet_store_zip(sample_parquet_zip: Path, person_df, los_df, los_messy_df): + ps = ParquetStore(sample_parquet_zip, mode="r") + _test_parquet_store(ps, person_df, los_df, los_messy_df) diff --git a/activitysim/core/workflow/tracing.py b/activitysim/core/workflow/tracing.py new file mode 100644 index 000000000..384e10f59 --- /dev/null +++ b/activitysim/core/workflow/tracing.py @@ -0,0 +1,745 @@ +from __future__ import annotations + +import ast +import csv +import logging +import logging.config +import os +import struct +import sys +import tarfile +import tempfile +import time +from collections.abc import Mapping, MutableMapping, Sequence +from pathlib import Path +from typing import Any, Optional + +import numpy as np +import pandas as pd +import yaml + +from activitysim.core import tracing +from activitysim.core.test import assert_equal, assert_frame_substantively_equal +from activitysim.core.workflow.accessor import FromState, StateAccessor + +logger = logging.getLogger(__name__) + +CSV_FILE_TYPE = "csv" + +DEFAULT_TRACEABLE_TABLES = [ + "households", + "persons", + "tours", + "joint_tour_participants", + "trips", + "vehicles", +] + + +class RunId(str): + def __new__(cls, x=None): + if x is None: + return cls( + hex(struct.unpack(" Path | None: + if self._obj is None: + return None + result = self._obj._context.get("tracing_validation_directory", None) + if isinstance(result, tempfile.TemporaryDirectory): + return Path(result.name) + return result + + @validation_directory.setter + def validation_directory(self, directory: Path | None): + if directory is None: + self._obj._context.pop("tracing_validation_directory", None) + else: + directory = Path(directory) + # decompress cache file into working directory + if directory.suffixes[-2:] == [".tar", ".gz"]: + tempdir = tempfile.TemporaryDirectory() + with tarfile.open(directory) as tfile: + tfile.extractall(tempdir.name) + self._obj._context["tracing_validation_directory"] = tempdir + else: + self._obj._context["tracing_validation_directory"] = directory + + def __get__(self, instance, objtype=None) -> "Tracing": + # derived __get__ changes annotation, aids in type checking + return super().__get__(instance, objtype) + + def initialize(self): + self.traceable_table_ids = {} + + def register_traceable_table(self, table_name: str, df: pd.DataFrame) -> None: + """ + Register traceable table + + Parameters + ---------- + table_name : str + df: pandas.DataFrame + The traced dataframe. + """ + + # add index name to traceable_table_indexes + + logger.debug(f"register_traceable_table {table_name}") + + traceable_tables = self.traceable_tables + if table_name not in traceable_tables: + logger.error("table '%s' not in traceable_tables" % table_name) + return + + idx_name = df.index.name + if idx_name is None: + logger.error("Can't register table '%s' without index name" % table_name) + return + + traceable_table_ids = self.traceable_table_ids + traceable_table_indexes = self.traceable_table_indexes + + if ( + idx_name in traceable_table_indexes + and traceable_table_indexes[idx_name] != table_name + ): + logger.error( + "table '%s' index name '%s' already registered for table '%s'" + % (table_name, idx_name, traceable_table_indexes[idx_name]) + ) + return + + # update traceable_table_indexes with this traceable_table's idx_name + if idx_name not in traceable_table_indexes: + traceable_table_indexes[idx_name] = table_name + logger.debug( + "adding table %s.%s to traceable_table_indexes" % (table_name, idx_name) + ) + self.traceable_table_indexes = traceable_table_indexes + + # add any new indexes associated with trace_hh_id to traceable_table_ids + + trace_hh_id = self._obj.settings.trace_hh_id + if trace_hh_id is None: + return + + new_traced_ids = [] + # if table_name == "households": + if table_name in ["households", "proto_households"]: + if trace_hh_id not in df.index: + logger.warning("trace_hh_id %s not in dataframe" % trace_hh_id) + new_traced_ids = [] + else: + logger.info( + "tracing household id %s in %s households" + % (trace_hh_id, len(df.index)) + ) + new_traced_ids = [trace_hh_id] + else: + # find first already registered ref_col we can use to slice this table + ref_col = next( + (c for c in traceable_table_indexes if c in df.columns), None + ) + + if ref_col is None: + logger.error( + "can't find a registered table to slice table '%s' index name '%s'" + " in traceable_table_indexes: %s" + % (table_name, idx_name, traceable_table_indexes) + ) + return + + # get traceable_ids for ref_col table + ref_col_table_name = traceable_table_indexes[ref_col] + ref_col_traced_ids = traceable_table_ids.get(ref_col_table_name, []) + + # inject list of ids in table we are tracing + # this allows us to slice by id without requiring presence of a household id column + traced_df = df[df[ref_col].isin(ref_col_traced_ids)] + new_traced_ids = traced_df.index.tolist() + if len(new_traced_ids) == 0: + logger.warning( + "register %s: no rows with %s in %s." + % (table_name, ref_col, ref_col_traced_ids) + ) + + # update the list of trace_ids for this table + prior_traced_ids = traceable_table_ids.get(table_name, []) + + if new_traced_ids: + assert not set(prior_traced_ids) & set(new_traced_ids) + traceable_table_ids[table_name] = prior_traced_ids + new_traced_ids + self.traceable_table_ids = traceable_table_ids + + logger.debug( + "register %s: added %s new ids to %s existing trace ids" + % (table_name, len(new_traced_ids), len(prior_traced_ids)) + ) + logger.debug( + "register %s: tracing new ids %s in %s" + % (table_name, new_traced_ids, table_name) + ) + + def deregister_traceable_table(self, table_name: str) -> None: + """ + un-register traceable table + + Parameters + ---------- + table_name : str + """ + traceable_table_ids = self.traceable_table_ids + traceable_table_indexes = self.traceable_table_indexes + + if table_name not in self.traceable_tables: + logger.error("table '%s' not in traceable_tables" % table_name) + + else: + self.traceable_table_ids = { + k: v for k, v in traceable_table_ids.items() if k != table_name + } + self.traceable_table_indexes = { + k: v for k, v in traceable_table_indexes.items() if v != table_name + } + + def write_csv( + self, + df, + file_name, + index_label=None, + columns=None, + column_labels=None, + transpose=True, + ): + """ + Print write_csv + + Parameters + ---------- + df: pandas.DataFrame or pandas.Series or dict + traced dataframe + file_name: str + output file name + index_label: str + index name + columns: list + columns to write + transpose: bool + whether to transpose dataframe (ignored for series) + Returns + ------- + Nothing + """ + + assert len(file_name) > 0 + + if not file_name.endswith(".%s" % CSV_FILE_TYPE): + file_name = "%s.%s" % (file_name, CSV_FILE_TYPE) + + file_path = self._obj.filesystem.get_trace_file_path( + file_name, tail=self.run_id + ) + + if os.name == "nt": + abs_path = os.path.abspath(file_path) + if len(abs_path) > 255: + msg = f"path length ({len(abs_path)}) may exceed Windows maximum length unless LongPathsEnabled: {abs_path}" + logger.warning(msg) + + if os.path.isfile(file_path): + logger.debug("write_csv file exists %s %s" % (type(df).__name__, file_name)) + + if isinstance(df, pd.DataFrame): + # logger.debug("dumping %s dataframe to %s" % (df.shape, file_name)) + tracing.write_df_csv( + df, file_path, index_label, columns, column_labels, transpose=transpose + ) + elif isinstance(df, pd.Series): + # logger.debug("dumping %s element series to %s" % (df.shape[0], file_name)) + tracing.write_series_csv(df, file_path, index_label, columns, column_labels) + elif isinstance(df, dict): + df = pd.Series(data=df) + # logger.debug("dumping %s element dict to %s" % (df.shape[0], file_name)) + tracing.write_series_csv(df, file_path, index_label, columns, column_labels) + else: + logger.error( + "write_csv object for file_name '%s' of unexpected type: %s" + % (file_name, type(df)) + ) + + def trace_df( + self, + df: pd.DataFrame, + label: str, + slicer=None, + columns: Optional[list[str]] = None, + index_label=None, + column_labels=None, + transpose=True, + warn_if_empty=False, + ): + """ + Slice dataframe by traced household or person id dataframe and write to CSV + + Parameters + ---------- + state: workflow.State + df: pandas.DataFrame + traced dataframe + label: str + tracer name + slicer: Object + slicer for subsetting + columns: list + columns to write + index_label: str + index name + column_labels: [str, str] + labels for columns in csv + transpose: boolean + whether to transpose file for legibility + warn_if_empty: boolean + write warning if sliced df is empty + + Returns + ------- + Nothing + """ + + target_ids, column = self.get_trace_target(df, slicer) + + if target_ids is not None: + df = tracing.slice_ids(df, target_ids, column) + + if warn_if_empty and df.shape[0] == 0 and target_ids != []: + column_name = column or slicer + logger.warning( + "slice_canonically: no rows in %s with %s == %s" + % (label, column_name, target_ids) + ) + + if df.shape[0] > 0: + self.write_csv( + df, + file_name=label, + index_label=(index_label or slicer), + columns=columns, + column_labels=column_labels, + transpose=transpose, + ) + + if self.validation_directory: + skip_validation = False + if label.endswith("constants"): + skip_validation = ( + True # contants sometimes has skimwrapper objects added + ) + if not skip_validation: + try: + that_path = self._obj.filesystem.find_trace_file_path( + label, trace_dir=self.validation_directory, file_type="csv" + ) + except FileNotFoundError as err: + logger.warning( + f"trace validation file not found: {err}\n" + f" in validation_directory: {self.validation_directory}" + ) + else: + if transpose: + # wreaks havoc with pandas dtypes and column names + # check as a simple list of lists instead + def literal_eval(x): + try: + return ast.literal_eval(x) + except Exception: + return x + + def read_csv_as_list_of_lists(finame): + with open(finame, newline="") as csvfile: + return [ + list(map(literal_eval, row)) + for row in csv.reader(csvfile) + ] + + that_blob = read_csv_as_list_of_lists(that_path) + this_path = self._obj.filesystem.get_trace_file_path( + label, tail=self.run_id, file_type="csv" + ) + this_blob = read_csv_as_list_of_lists(this_path) + + _this_index = [i[0] for i in this_blob] + if len(set(_this_index)) == len(_this_index): + # indexes are unique, convert to dict + this_dict = dict( + zip( + [i[0] for i in this_blob], + [i[1:] for i in this_blob], + ) + ) + that_dict = dict( + zip( + [i[0] for i in that_blob], + [i[1:] for i in that_blob], + ) + ) + assert_equal(this_dict, that_dict) + else: + try: + assert_equal(this_blob, that_blob) + except: + logger.error(f"trace validation BAD: {label}") + raise + else: + logger.debug(f"trace validation OK: {label}") + else: + that_df = pd.read_csv(that_path) + # check against the file we just wrote + this_path = self._obj.filesystem.get_trace_file_path( + label, tail=self.run_id, file_type="csv" + ) + this_df = pd.read_csv(this_path) + assert_frame_substantively_equal(this_df, that_df) + logger.debug(f"trace validation OK: {label}") + + def trace_interaction_eval_results(self, trace_results, trace_ids, label): + """ + Trace model design eval results for interaction_simulate + + Parameters + ---------- + trace_results: pandas.DataFrame + traced model_design dataframe + trace_ids : tuple (str, numpy.ndarray) + column name and array of trace_ids from interaction_trace_rows() + used to filter the trace_results dataframe by traced hh or person id + label: str + tracer name + + Returns + ------- + Nothing + """ + + assert type(trace_ids[1]) == np.ndarray + + slicer_column_name = trace_ids[0] + + try: + trace_results[slicer_column_name] = trace_ids[1] + except ValueError: + trace_results[slicer_column_name] = int(trace_ids[1]) + + targets = np.unique(trace_ids[1]) + + if len(trace_results.index) == 0: + return + + # write out the raw dataframe + + file_path = self._obj.filesystem.get_trace_file_path( + "%s.raw.csv" % label, tail=self.run_id + ) + trace_results.to_csv(file_path, mode="a", index=True, header=True) + + # if there are multiple targets, we want them in separate tables for readability + for target in targets: + df_target = trace_results[trace_results[slicer_column_name] == target] + + # we want the transposed columns in predictable order + df_target.sort_index(inplace=True) + + # # remove the slicer (person_id or hh_id) column? + # del df_target[slicer_column_name] + + target_label = "%s.%s.%s" % (label, slicer_column_name, target) + + self.trace_df( + df_target, + label=target_label, + slicer="NONE", + transpose=True, + column_labels=["expression", None], + warn_if_empty=False, + ) + + def interaction_trace_rows(self, interaction_df, choosers, sample_size=None): + """ + Trace model design for interaction_simulate + + Parameters + ---------- + interaction_df: pandas.DataFrame + traced model_design dataframe + choosers: pandas.DataFrame + interaction_simulate choosers + (needed to filter the model_design dataframe by traced hh or person id) + sample_size int or None + int for constant sample size, or None if choosers have different numbers of alternatives + Returns + ------- + trace_rows : numpy.ndarray + array of booleans to flag which rows in interaction_df to trace + + trace_ids : tuple (str, numpy.ndarray) + column name and array of trace_ids mapping trace_rows to their target_id + for use by trace_interaction_eval_results which needs to know target_id + so it can create separate tables for each distinct target for readability + """ + + # slicer column name and id targets to use for chooser id added to model_design dataframe + # currently we only ever slice by person_id, but that could change, so we check here... + + traceable_table_ids = self.traceable_table_ids + + # Determine whether actual tables or proto_ tables for disaggregate accessibilities + persons_table_name = set(traceable_table_ids).intersection( + ["persons", "proto_persons"] + ) + households_table_name = set(traceable_table_ids).intersection( + ["households", "proto_households"] + ) + + assert len(persons_table_name) == 1 and len(persons_table_name) == 1 + persons_table_name, households_table_name = ( + persons_table_name.pop(), + households_table_name.pop(), + ) + + if ( + choosers.index.name in ["person_id", "proto_person_id"] + ) and persons_table_name in traceable_table_ids: + slicer_column_name = choosers.index.name + targets = traceable_table_ids[persons_table_name] + elif ( + choosers.index.name in ["household_id", "proto_household_id"] + ) and households_table_name in traceable_table_ids: + slicer_column_name = choosers.index.name + targets = traceable_table_ids[households_table_name] + elif "household_id" in choosers.columns and "households" in traceable_table_ids: + slicer_column_name = "household_id" + targets = traceable_table_ids[households_table_name] + elif ( + "person_id" in choosers.columns + and persons_table_name in traceable_table_ids + ): + slicer_column_name = "person_id" + targets = traceable_table_ids[persons_table_name] + elif ( + choosers.index.name == "proto_tour_id" + and "proto_tours" in traceable_table_ids + ): + slicer_column_name = choosers.index.name + targets = traceable_table_ids["proto_tours"] + else: + print(choosers.columns) + raise RuntimeError( + "interaction_trace_rows don't know how to slice index '%s'" + % choosers.index.name + ) + + if sample_size is None: + # if sample size not constant, we count on either + # slicer column being in itneraction_df + # or index of interaction_df being same as choosers + if slicer_column_name in interaction_df.columns: + trace_rows = np.in1d(interaction_df[slicer_column_name], targets) + trace_ids = interaction_df.loc[trace_rows, slicer_column_name].values + else: + assert interaction_df.index.name == choosers.index.name + trace_rows = np.in1d(interaction_df.index, targets) + trace_ids = interaction_df[trace_rows].index.values + + else: + if slicer_column_name == choosers.index.name: + trace_rows = np.in1d(choosers.index, targets) + trace_ids = np.asanyarray(choosers[trace_rows].index) + elif slicer_column_name == "person_id": + trace_rows = np.in1d(choosers["person_id"], targets) + trace_ids = np.asanyarray(choosers[trace_rows].person_id) + elif slicer_column_name == "household_id": + trace_rows = np.in1d(choosers["household_id"], targets) + trace_ids = np.asanyarray(choosers[trace_rows].household_id) + else: + assert False + + # simply repeat if sample size is constant across choosers + assert sample_size == len(interaction_df.index) / len(choosers.index) + trace_rows = np.repeat(trace_rows, sample_size) + trace_ids = np.repeat(trace_ids, sample_size) + + assert type(trace_rows) == np.ndarray + assert type(trace_ids) == np.ndarray + + trace_ids = (slicer_column_name, trace_ids) + + return trace_rows, trace_ids + + def get_trace_target(self, df: pd.DataFrame, slicer: str, column: Any = None): + """ + get target ids and column or index to identify target trace rows in df + + Parameters + ---------- + df: pandas.DataFrame + This dataframe is to be sliced + slicer: str + name of column or index to use for slicing + column : Any + + Returns + ------- + target : int or list of ints + id or ids that identify tracer target rows + column : str + name of column to search for targets or None to search index + """ + + target_ids = ( + None # id or ids to slice by (e.g. hh_id or person_ids or tour_ids) + ) + + # special do-not-slice code for dumping entire df + if slicer == "NONE": + return target_ids, column + + if slicer is None: + slicer = df.index.name + + if isinstance(df, pd.DataFrame): + # always slice by household id if we can + if "household_id" in df.columns: + slicer = "household_id" + if slicer in df.columns: + column = slicer + + if column is None and df.index.name != slicer: + raise RuntimeError( + "bad slicer '%s' for df with index '%s'" % (slicer, df.index.name) + ) + + traceable_table_indexes = self.traceable_table_indexes + traceable_table_ids = self.traceable_table_ids + + if df.empty: + target_ids = None + elif slicer in traceable_table_indexes: + # maps 'person_id' to 'persons', etc + table_name = traceable_table_indexes[slicer] + target_ids = traceable_table_ids.get(table_name, []) + elif slicer == "zone_id": + target_ids = self._obj.settings.trace_od + + return target_ids, column + + def trace_targets(self, df, slicer=None, column=None): + target_ids, column = self.get_trace_target(df, slicer, column) + + if target_ids is None: + targets = None + else: + if column is None: + targets = df.index.isin(target_ids) + else: + # convert to numpy array for consistency since that is what index.isin returns + targets = df[column].isin(target_ids).to_numpy() + + return targets + + def has_trace_targets(self, df, slicer=None, column=None): + target_ids, column = self.get_trace_target(df, slicer, column) + + if target_ids is None: + found = False + else: + if column is None: + found = df.index.isin(target_ids).any() + else: + found = df[column].isin(target_ids).any() + + return found + + def dump_df(self, dump_switch, df, trace_label, fname): + if dump_switch: + trace_label = tracing.extend_trace_label(trace_label, "DUMP.%s" % fname) + self.trace_df( + df, + trace_label, + index_label=df.index.name, + slicer="NONE", + transpose=False, + ) + + def delete_output_files(self, file_type, ignore=None, subdir=None): + """ + Delete files in output directory of specified type. + + Parameters + ---------- + file_type : str + File extension to delete. + ignore : list[Path-like] + Specific files to leave alone. + subdir : list[Path-like], optional + Subdirectories to scrub. If not given, the top level output directory + plus the 'log' and 'trace' directories will be scrubbed. + """ + + output_dir = self._obj.filesystem.get_output_dir() + + subdir = [subdir] if subdir else None + directories = subdir or ["", "log", "trace"] + + for subdir in directories: + dir = output_dir.joinpath(output_dir, subdir) if subdir else output_dir + + if not dir.exists(): + continue + + if ignore: + ignore = [os.path.realpath(p) for p in ignore] + + # logger.debug("Deleting %s files in output dir %s" % (file_type, dir)) + + for the_file in os.listdir(dir): + if the_file.endswith(file_type): + file_path = os.path.join(dir, the_file) + + if ignore and os.path.realpath(file_path) in ignore: + continue + + try: + if os.path.isfile(file_path): + logger.debug("delete_output_files deleting %s" % file_path) + os.unlink(file_path) + except Exception as e: + print(e) + + def delete_trace_files(self): + """ + Delete CSV files in output_dir + """ + self.delete_output_files(CSV_FILE_TYPE, subdir="trace") + self.delete_output_files(CSV_FILE_TYPE, subdir="log") + + active_log_files = [ + h.baseFilename + for h in logger.root.handlers + if isinstance(h, logging.FileHandler) + ] + + self.delete_output_files("log", ignore=active_log_files) diff --git a/activitysim/core/workflow/util.py b/activitysim/core/workflow/util.py new file mode 100644 index 000000000..37f327944 --- /dev/null +++ b/activitysim/core/workflow/util.py @@ -0,0 +1,80 @@ +from __future__ import annotations + +import logging +import os + +from pypyr.context import Context, KeyNotInContextError + +logger = logging.getLogger(__name__) + + +def get_formatted_or_raw(self: Context, key: str): + try: + return self.get_formatted(key) + except TypeError: + return self.get(key) + except Exception as err: + raise ValueError(f"extracting {key} from context") from err + + +def get_formatted_or_default(self: Context, key: str, default): + try: + return self.get_formatted(key) + except (KeyNotInContextError, KeyError): + return default + except TypeError: + return self.get(key) + except Exception as err: + raise ValueError(f"extracting {key} from context") from err + + +def get_override_or_formatted_or_default( + overrides: dict, self: Context, key: str, default +): + if key in overrides: + return overrides[key] + else: + return get_formatted_or_default(self, key, default) + + +def is_notebook() -> bool: + try: + shell = get_ipython().__class__.__name__ + if shell == "ZMQInteractiveShell": + return True # Jupyter notebook or qtconsole + elif shell == "TerminalInteractiveShell": + return False # Terminal running IPython + else: + return False # Other type (?) + except NameError: + return False # Probably standard Python interpreter + + +def write_notebook_heading(text: str, heading_level: int | None = None) -> None: + """ + If running in a jupyter-like environment, display a heading. + + Parameters + ---------- + text : str + The heading to display + heading_level : int, optional + The heading level to use. Should be an integer from 1 to 6. + If omitted or zero, no heading is not displayed. + """ + if heading_level and is_notebook(): + if heading_level < 0: + raise ValueError("negative heading levels not allowed") + if heading_level > 6: + # heading levels greater than 6 are not allowed + heading_level = 6 + import IPython.display + + IPython.display.display_markdown("#" * heading_level + f" {text}", raw=True) + + +def remove_empty_folders(path_abs): + walk = list(os.walk(path_abs)) + for path, _, _ in walk[::-1]: + if len(os.listdir(path)) == 0: + os.remove(path) diff --git a/activitysim/core/yaml_tools.py b/activitysim/core/yaml_tools.py new file mode 100644 index 000000000..f86d1fe29 --- /dev/null +++ b/activitysim/core/yaml_tools.py @@ -0,0 +1,22 @@ +from __future__ import annotations + +from pathlib import Path + +from yaml import Dumper, SafeDumper, dump_all + + +def _Path(dumper: Dumper, data: Path): + """Dump a Path as a string.""" + return dumper.represent_str(str(data)) + + +SafeDumper.add_multi_representer(Path, _Path) + + +def safe_dump(data, stream=None, **kwds): + """ + Serialize a Python object into a YAML stream. + Produce only basic YAML tags. + If stream is None, return the produced string instead. + """ + return dump_all([data], stream, Dumper=SafeDumper, **kwds) diff --git a/activitysim/estimation/larch/cdap.py b/activitysim/estimation/larch/cdap.py index fdb801de0..761cce05b 100644 --- a/activitysim/estimation/larch/cdap.py +++ b/activitysim/estimation/larch/cdap.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import importlib import itertools import logging @@ -326,7 +328,7 @@ def read_yaml(filename, **kwargs): if person_type_map is None: raise KeyError("PERSON_TYPE_MAP missing from cdap_settings.yaml") - person_rank = cdap.assign_cdap_rank(persons, person_type_map) + person_rank = cdap.assign_cdap_rank(None, persons, person_type_map) coefficients = read_csv( coefficients_file, diff --git a/activitysim/estimation/larch/location_choice.py b/activitysim/estimation/larch/location_choice.py index 74a426e71..8b0080145 100644 --- a/activitysim/estimation/larch/location_choice.py +++ b/activitysim/estimation/larch/location_choice.py @@ -1,6 +1,10 @@ +from __future__ import annotations + import os from pathlib import Path from typing import Collection +import pickle +from datetime import datetime import numpy as np import pandas as pd @@ -44,6 +48,8 @@ def location_choice_model( settings_file="{name}_model_settings.yaml", landuse_file="{name}_landuse.csv", return_data=False, + alt_values_to_feather=False, + chunking_size=None, ): model_selector = name.replace("_location", "") model_selector = model_selector.replace("_destination", "") @@ -57,12 +63,42 @@ def _read_csv(filename, **kwargs): filename = filename.format(name=name) return pd.read_csv(os.path.join(edb_directory, filename), **kwargs) + def _read_feather(filename, **kwargs): + filename = filename.format(name=name) + return pd.read_feather(os.path.join(edb_directory, filename), **kwargs) + + def _to_feather(df, filename, **kwargs): + filename = filename.format(name=name) + return df.to_feather(os.path.join(edb_directory, filename), **kwargs) + + def _read_pickle(filename, **kwargs): + filename = filename.format(name=name) + return pd.read_pickle(os.path.join(edb_directory, filename)) + + def _to_pickle(df, filename, **kwargs): + filename = filename.format(name=name) + return df.to_pickle(os.path.join(edb_directory, filename)) + + def _file_exists(filename): + filename = filename.format(name=name) + return os.path.exists(os.path.join(edb_directory, filename)) + coefficients = _read_csv( coefficients_file, index_col="coefficient_name", ) spec = _read_csv(spec_file, comment="#") - alt_values = _read_csv(alt_values_file) + + # read alternative values either as csv or feather file + alt_values_fea_file = alt_values_file.replace(".csv", ".fea") + if os.path.exists( + os.path.join(edb_directory, alt_values_fea_file.format(name=name)) + ): + alt_values = _read_feather(alt_values_fea_file) + else: + alt_values = _read_csv(alt_values_file) + if alt_values_to_feather: + _to_feather(df=alt_values, filename=alt_values_fea_file) chooser_data = _read_csv(chooser_file) landuse = _read_csv(landuse_file, index_col="zone_id") master_size_spec = _read_csv(size_spec_file) @@ -97,7 +133,9 @@ def _read_csv(filename, **kwargs): if SEGMENTS is not None: SEGMENT_IDS = {i: i for i in SEGMENTS} - SIZE_TERM_SELECTOR = settings.get("SIZE_TERM_SELECTOR", model_selector) + SIZE_TERM_SELECTOR = ( + settings.get("SIZE_TERM_SELECTOR", model_selector) or model_selector + ) # filter size spec for this location choice only size_spec = ( @@ -148,7 +186,49 @@ def _read_csv(filename, **kwargs): chooser_index_name = chooser_data.columns[0] x_co = chooser_data.set_index(chooser_index_name) - x_ca = cv_to_ca(alt_values.set_index([chooser_index_name, alt_values.columns[1]])) + + def split(a, n): + k, m = divmod(len(a), n) + return (a[i * k + min(i, m) : (i + 1) * k + min(i + 1, m)] for i in range(n)) + + # process x_ca with cv_to_ca with or without chunking + x_ca_pickle_file = "{name}_x_ca.pkl" + if chunking_size == None: + x_ca = cv_to_ca( + alt_values.set_index([chooser_index_name, alt_values.columns[1]]) + ) + elif _file_exists(x_ca_pickle_file): + # if pickle file from previous x_ca processing exist, load it to save time + time_start = datetime.now() + x_ca = _read_pickle(x_ca_pickle_file) + print( + f"x_ca data loaded from {name}_x_ca.fea - time elapsed {(datetime.now() - time_start).total_seconds()}" + ) + else: + time_start = datetime.now() + # calculate num_chunks based on chunking_size (or max number of rows per chunk) + num_chunks = int(len(alt_values) / chunking_size) + id_col_name = alt_values.columns[0] + all_ids = list(alt_values[id_col_name].unique()) + split_ids = list(split(all_ids, num_chunks)) + x_ca_list = [] + i = 0 + for chunk_ids in split_ids: + alt_values_i = alt_values[alt_values[id_col_name].isin(chunk_ids)] + x_ca_i = cv_to_ca( + alt_values_i.set_index([chooser_index_name, alt_values_i.columns[1]]) + ) + x_ca_list.append(x_ca_i) + print( + f"\rx_ca_i compute done for chunk {i}/{num_chunks} - time elapsed {(datetime.now() - time_start).total_seconds()}" + ) + i = i + 1 + x_ca = pd.concat(x_ca_list, axis=0) + # save final x_ca result as pickle file to save time for future data loading + _to_pickle(df=x_ca, filename=x_ca_pickle_file) + print( + f"x_ca compute done - time elapsed {(datetime.now() - time_start).total_seconds()}" + ) if CHOOSER_SEGMENT_COLUMN_NAME is not None: # label segments with names diff --git a/activitysim/estimation/test/test_larch_estimation.py b/activitysim/estimation/test/test_larch_estimation.py index b148009f3..09355f846 100644 --- a/activitysim/estimation/test/test_larch_estimation.py +++ b/activitysim/estimation/test/test_larch_estimation.py @@ -1,43 +1,35 @@ +from __future__ import annotations + +import datetime import os -import subprocess -import tempfile +from pathlib import Path import pandas as pd +import platformdirs import pytest -from activitysim.cli.create import get_example +from activitysim.core import workflow @pytest.fixture(scope="module") def est_data(): - cwd = os.getcwd() - tempdir = tempfile.TemporaryDirectory() - os.chdir(tempdir.name) - - get_example("example_estimation_sf", "_test_est") - os.chdir("_test_est") - - # !activitysim run -c configs_estimation/configs -c configs -o output -d data_sf - print(f"List of files now in {os.getcwd()}") - subprocess.run(["find", "."]) - print(f"\n\nrunning activitysim estimation mode in {os.getcwd()}") - subprocess.run( - [ - "activitysim", - "run", - "-c", - "configs_estimation/configs", - "-c", - "configs", - "-o", - "output", - "-d", - "data_sf", - ], + working_dir = Path(platformdirs.user_cache_dir(appname="ActivitySim")).joinpath( + f"estimation-test-base" ) + working_dir.mkdir(parents=True, exist_ok=True) + os.chdir(working_dir) + if not working_dir.joinpath("success.txt").exists(): + import activitysim.abm + + state = workflow.create_example("example_estimation_sf", directory=working_dir) + state.run.all() + working_dir.joinpath("success.txt").write_text( + datetime.datetime.now().strftime("%Y/%m/%d %H:%M:%S.%f") + ) - yield os.getcwd() + os.chdir(working_dir.joinpath("example_estimation_sf")) + yield str(working_dir.joinpath("example_estimation_sf")) os.chdir(cwd) @@ -139,7 +131,7 @@ def test_location_model( [ ("non_mandatory_tour_scheduling", "SLSQP"), ("joint_tour_scheduling", "SLSQP"), - ("atwork_subtour_scheduling", "SLSQP"), + # ("atwork_subtour_scheduling", "SLSQP"), # TODO this test is unstable, needs to be updated with better data ("mandatory_tour_scheduling_work", "SLSQP"), ("mandatory_tour_scheduling_school", "SLSQP"), ], diff --git a/activitysim/estimation/test/test_larch_estimation/test_cdap_model.csv b/activitysim/estimation/test/test_larch_estimation/test_cdap_model.csv index 2ce2d1807..a9e237b23 100644 --- a/activitysim/estimation/test/test_larch_estimation/test_cdap_model.csv +++ b/activitysim/estimation/test/test_larch_estimation/test_cdap_model.csv @@ -1,162 +1,162 @@ ,value,initvalue,nullvalue,minimum,maximum,best coef_UNAVAILABLE,-999,-999,0,-999,-999,-999 -coef_child_who_is_in_school_or_too_young_for_school_interaction_with_off_peak_accessibility_to_retail_N,0.85692976124501019,0.08233,0,,,0.85692976124501019 -coef_driving_age_child_who_is_in_school_asc_M,0.73848046972910941,2.3309186849999999,0,,,0.73848046972910941 -coef_driving_age_child_who_is_in_school_asc_N,-8.9308855274487637,-0.59911911200000001,0,,,-8.9308855274487637 -coef_driving_age_child_who_is_in_school_interaction_income_between_50k_and_100k_H,-0.93853079335916489,-0.50309999999999999,0,,,-0.93853079335916489 -coef_driving_age_child_who_is_in_school_interaction_with_fewer_cars_than_workers_H,0.4088477129872149,0.64749999999999996,0,,,0.4088477129872149 -coef_driving_age_child_who_is_in_school_interaction_with_income_more_than_100k_H,-1.7505782057913633,-2.0459999999999998,0,,,-1.7505782057913633 -coef_driving_age_child_who_is_in_school_interaction_with_less_than_20k_H,0.45641220632252377,1.3069999999999999,0,,,0.45641220632252377 -coef_full_time_worker_asc_M,1.0349870898895677,1.3787345790000001,0,,,1.0349870898895677 -coef_full_time_worker_asc_N,0.74205343594968753,0.62266239099999998,0,,,0.74205343594968753 -coef_full_time_worker_interaction_with_age_less_than_40_M,0.43851597545706389,0.20910000000000001,0,,,0.43851597545706389 -coef_full_time_worker_interaction_with_female_gender_M,0.052938784327757844,-0.12590000000000001,0,,,0.052938784327757844 -coef_full_time_worker_interaction_with_fewer_cars_than_workers_H,0.41848366916078727,0.50390000000000001,0,,,0.41848366916078727 -coef_full_time_worker_interaction_with_income_less_than_20k_H,0.35894137920266034,0.53129999999999999,0,,,0.35894137920266034 -coef_full_time_worker_intraction_with_peak_accessibility_to_all_employment_M,0.14689866226825507,0.1212,0,,,0.14689866226825507 -coef_non_working_adult_asc_N,0.87387238182319815,0.59464538600000005,0,,,0.87387238182319815 +coef_child_who_is_in_school_or_too_young_for_school_interaction_with_off_peak_accessibility_to_retail_N,0.87159546592932291,0.08233,0,,,0.87159546592932291 +coef_driving_age_child_who_is_in_school_asc_M,0.74815228797618816,2.3309186849999999,0,,,0.74815228797618816 +coef_driving_age_child_who_is_in_school_asc_N,-9.0640177490324412,-0.59911911200000001,0,,,-9.0640177490324412 +coef_driving_age_child_who_is_in_school_interaction_income_between_50k_and_100k_H,-0.90601686275009163,-0.50309999999999999,0,,,-0.90601686275009163 +coef_driving_age_child_who_is_in_school_interaction_with_fewer_cars_than_workers_H,0.42727506400961712,0.64749999999999996,0,,,0.42727506400961712 +coef_driving_age_child_who_is_in_school_interaction_with_income_more_than_100k_H,-1.7272824609972235,-2.0459999999999998,0,,,-1.7272824609972235 +coef_driving_age_child_who_is_in_school_interaction_with_less_than_20k_H,0.45396678614268526,1.3069999999999999,0,,,0.45396678614268526 +coef_full_time_worker_asc_M,0.98435866822120488,1.3787345790000001,0,,,0.98435866822120488 +coef_full_time_worker_asc_N,0.73324510331920412,0.62266239099999998,0,,,0.73324510331920412 +coef_full_time_worker_interaction_with_age_less_than_40_M,0.44443952843908197,0.20910000000000001,0,,,0.44443952843908197 +coef_full_time_worker_interaction_with_female_gender_M,0.038410812572387439,-0.12590000000000001,0,,,0.038410812572387439 +coef_full_time_worker_interaction_with_fewer_cars_than_workers_H,0.41538570763618882,0.50390000000000001,0,,,0.41538570763618882 +coef_full_time_worker_interaction_with_income_less_than_20k_H,0.44991051165021323,0.53129999999999999,0,,,0.44991051165021323 +coef_full_time_worker_intraction_with_peak_accessibility_to_all_employment_M,0.15132046128679377,0.1212,0,,,0.15132046128679377 +coef_non_working_adult_asc_N,0.61315184259117572,0.59464538600000005,0,,,0.61315184259117572 coef_non_working_adult_interaction_with_female_gender_M,-0.74299999999999999,-0.74299999999999999,0,,,-0.74299999999999999 -coef_non_working_adult_interaction_with_fewer_cars_than_workers_H,0.79722787615405288,0.89649999999999996,0,,,0.79722787615405288 -coef_non_working_adult_interaction_with_income_between_50k_and_100k_H,-1.2296785020118925,-0.56020000000000003,0,,,-1.2296785020118925 -coef_non_working_adult_interaction_with_income_more_than_100k_H,-0.68256354997790902,-0.71879999999999999,0,,,-0.68256354997790902 +coef_non_working_adult_interaction_with_fewer_cars_than_workers_H,0.80008083982324651,0.89649999999999996,0,,,0.80008083982324651 +coef_non_working_adult_interaction_with_income_between_50k_and_100k_H,-1.135877229516298,-0.56020000000000003,0,,,-1.135877229516298 +coef_non_working_adult_interaction_with_income_more_than_100k_H,-0.53695636446511075,-0.71879999999999999,0,,,-0.53695636446511075 coef_non_working_adult_interaction_with_more_cars_than_workers_M,0.65149999999999997,0.65149999999999997,0,,,0.65149999999999997 -coef_non_working_adult_interaction_with_more_cars_than_workers_N,1.3261941742938397,0.81679999999999997,0,,,1.3261941742938397 +coef_non_working_adult_interaction_with_more_cars_than_workers_N,1.4756696612117433,0.81679999999999997,0,,,1.4756696612117433 coef_non_working_adult_interaction_with_peak_accessibility_to_all_employment_M,0.23139999999999999,0.23139999999999999,0,,,0.23139999999999999 -coef_non_working_adult_retired_or_univ_student_interaction_with_off_peak_accessibility_to_all_employment_N,0.017589208634449675,0.072069999999999995,0,,,0.017589208634449675 -coef_part_time_worker_asc_M,4.9000426829635204,-0.71882373799999999,0,,,4.9000426829635204 -coef_part_time_worker_asc_N,0.65921416326577464,0.63603246700000005,0,,,0.65921416326577464 -coef_part_time_worker_interaction_with_income_between_50k_and_100k_H,0.17186717026517481,-0.4032,0,,,0.17186717026517481 -coef_part_time_worker_interaction_with_income_less_than_20k_H,0.38041904791748155,0.32319999999999999,0,,,0.38041904791748155 -coef_part_time_worker_interaction_with_income_more_than_100k_H,-1.362929826508287,-0.35339999999999999,0,,,-1.362929826508287 -coef_part_time_worker_interaction_with_income_more_than_100k_N,0.49250876189647425,0.42070000000000002,0,,,0.49250876189647425 -coef_part_time_worker_interaction_with_peak_accessibility_to_all_employment_M,-0.24708976803064769,0.20039999999999999,0,,,-0.24708976803064769 -coef_pre_driving_age_child_who_is_in_school_asc_M,3.9459941307419402,3.295863529,0,,,3.9459941307419402 -coef_pre_driving_age_child_who_is_in_school_asc_N,-6.8110611320385024,0.57142433999999998,0,,,-6.8110611320385024 -coef_pre_driving_age_child_who_is_in_school_interaction_with_age_13_to_15_M,-1.5479969903363138,-0.71409999999999996,0,,,-1.5479969903363138 -coef_pre_driving_age_child_who_is_in_school_interaction_with_age_13_to_15_N,-1.1527677554511755,-0.67200000000000004,0,,,-1.1527677554511755 -coef_pre_driving_age_child_who_is_in_school_interaction_with_age_6_to_9_M,-0.67028640157584041,-0.29430000000000001,0,,,-0.67028640157584041 -coef_pre_driving_age_child_who_is_in_school_interaction_with_fewer_cars_than_workers_H,1.1016412307552537,0.58620000000000005,0,,,1.1016412307552537 -coef_pre_driving_age_child_who_is_too_young_for_school_asc_M,0.93761313981906003,1.052531189,0,,,0.93761313981906003 -coef_pre_driving_age_child_who_is_too_young_for_school_asc_N,-8.4726758731572183,-0.83756777599999999,0,,,-8.4726758731572183 -coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_age_0_to_1_M,-0.94370983129521369,-0.45150000000000001,0,,,-0.94370983129521369 -coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_age_4_to_5_M,0.23942677869103898,0.61070000000000002,0,,,0.23942677869103898 -coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_fewer_cars_than_workers_H,-0.062626330292437762,0.50609999999999999,0,,,-0.062626330292437762 -coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_income_between_50k_and_100k_H,-0.72315508703120213,-0.57079999999999997,0,,,-0.72315508703120213 -coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_income_more_than_100k_H,-0.78255504212379234,-0.61860000000000004,0,,,-0.78255504212379234 -coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_more_cars_than_workers_N,0.77202970270645432,0.29909999999999998,0,,,0.77202970270645432 -coef_retired_asc_N,1.5364416553612539,0.408202071,0,,,1.5364416553612539 -coef_retired_interaction_with_age_more_than_80_H,1.1681808203688446,0.76659999999999995,0,,,1.1681808203688446 +coef_non_working_adult_retired_or_univ_student_interaction_with_off_peak_accessibility_to_all_employment_N,0.05369614335005668,0.072069999999999995,0,,,0.05369614335005668 +coef_part_time_worker_asc_M,4.6632375293425374,-0.71882373799999999,0,,,4.6632375293425374 +coef_part_time_worker_asc_N,0.63327669200378511,0.63603246700000005,0,,,0.63327669200378511 +coef_part_time_worker_interaction_with_income_between_50k_and_100k_H,0.084764438455744495,-0.4032,0,,,0.084764438455744495 +coef_part_time_worker_interaction_with_income_less_than_20k_H,0.38471102017852971,0.32319999999999999,0,,,0.38471102017852971 +coef_part_time_worker_interaction_with_income_more_than_100k_H,-1.3396802216835464,-0.35339999999999999,0,,,-1.3396802216835464 +coef_part_time_worker_interaction_with_income_more_than_100k_N,0.57320315896108665,0.42070000000000002,0,,,0.57320315896108665 +coef_part_time_worker_interaction_with_peak_accessibility_to_all_employment_M,-0.22927275954114743,0.20039999999999999,0,,,-0.22927275954114743 +coef_pre_driving_age_child_who_is_in_school_asc_M,3.9697740814213565,3.295863529,0,,,3.9697740814213565 +coef_pre_driving_age_child_who_is_in_school_asc_N,-6.9669814176755258,0.57142433999999998,0,,,-6.9669814176755258 +coef_pre_driving_age_child_who_is_in_school_interaction_with_age_13_to_15_M,-1.5862536567965162,-0.71409999999999996,0,,,-1.5862536567965162 +coef_pre_driving_age_child_who_is_in_school_interaction_with_age_13_to_15_N,-1.1444471156694567,-0.67200000000000004,0,,,-1.1444471156694567 +coef_pre_driving_age_child_who_is_in_school_interaction_with_age_6_to_9_M,-0.71694326641444928,-0.29430000000000001,0,,,-0.71694326641444928 +coef_pre_driving_age_child_who_is_in_school_interaction_with_fewer_cars_than_workers_H,1.0962667615224149,0.58620000000000005,0,,,1.0962667615224149 +coef_pre_driving_age_child_who_is_too_young_for_school_asc_M,0.92486435043901694,1.052531189,0,,,0.92486435043901694 +coef_pre_driving_age_child_who_is_too_young_for_school_asc_N,-8.6130259294995177,-0.83756777599999999,0,,,-8.6130259294995177 +coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_age_0_to_1_M,-0.94468281293415513,-0.45150000000000001,0,,,-0.94468281293415513 +coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_age_4_to_5_M,0.23268035055770159,0.61070000000000002,0,,,0.23268035055770159 +coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_fewer_cars_than_workers_H,-0.056007934757943807,0.50609999999999999,0,,,-0.056007934757943807 +coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_income_between_50k_and_100k_H,-0.71502868941234388,-0.57079999999999997,0,,,-0.71502868941234388 +coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_income_more_than_100k_H,-0.7760438496909059,-0.61860000000000004,0,,,-0.7760438496909059 +coef_pre_driving_age_child_who_is_too_young_for_school_interaction_with_more_cars_than_workers_N,0.77447196962877585,0.29909999999999998,0,,,0.77447196962877585 +coef_retired_asc_N,1.1425900456454805,0.408202071,0,,,1.1425900456454805 +coef_retired_interaction_with_age_more_than_80_H,1.1363693439466673,0.76659999999999995,0,,,1.1363693439466673 coef_retired_interaction_with_female_M,0.47689999999999999,0.47689999999999999,0,,,0.47689999999999999 -coef_retired_interaction_with_fewer_cars_than_workers_H,0.84933419475176275,0.54959999999999998,0,,,0.84933419475176275 -coef_retired_interaction_with_income_less_than_20k_H,0.63470799837285252,0.53300000000000003,0,,,0.63470799837285252 +coef_retired_interaction_with_fewer_cars_than_workers_H,1.1295952477348739,0.54959999999999998,0,,,1.1295952477348739 +coef_retired_interaction_with_income_less_than_20k_H,0.65398902348188781,0.53300000000000003,0,,,0.65398902348188781 coef_retired_interaction_with_more_cars_than_workers_M,2.992,2.992,0,,,2.992 -coef_retired_interaction_with_more_cars_than_workers_N,0.71261516449491702,1.056,0,,,0.71261516449491702 +coef_retired_interaction_with_more_cars_than_workers_N,0.76262176538305015,1.056,0,,,0.76262176538305015 coef_retired_interaction_with_peak_accessibility_to_all_employment_M,0.2792,0.2792,0,,,0.2792 -coef_university_student_asc_M,2.1168963081096361,2.3535951759999998,0,,,2.1168963081096361 -coef_university_student_asc_N,0.80965567152181694,0.609709846,0,,,0.80965567152181694 +coef_university_student_asc_M,2.1206612172447477,2.3535951759999998,0,,,2.1206612172447477 +coef_university_student_asc_N,0.47323909115586493,0.609709846,0,,,0.47323909115586493 -999.0,-999,-999,-999,-999,-999,-999 -coef_H_11,1.4760964655352482,1.6259999999999999,0,,,1.4760964655352482 -coef_H_12,-0.064158230056873197,0.74070000000000003,0,,,-0.064158230056873197 -coef_H_13,1.493250407209171,1.1830000000000001,0,,,1.493250407209171 -coef_H_14,1.2067361944629116,0.94359999999999999,0,,,1.2067361944629116 -coef_H_15,0.96634010744463039,1.298,0,,,0.96634010744463039 -coef_H_16,1.5407052927368943,2.0640000000000001,0,,,1.5407052927368943 -coef_H_17,1.4643057546116216,1.5009999999999999,0,,,1.4643057546116216 -coef_H_18,1.2137468768191544,0.99119999999999997,0,,,1.2137468768191544 -coef_H_22,-20.048185633111903,0.8911,0,,,-20.048185633111903 -coef_H_23,0.76133088237279201,1.6419999999999999,0,,,0.76133088237279201 -coef_H_24,0.965915261743025,0.70569999999999999,0,,,0.965915261743025 -coef_H_25,-18.390425378629139,0.46300000000000002,0,,,-18.390425378629139 -coef_H_26,4.1358263879148796,3.0569999999999999,0,,,4.1358263879148796 -coef_H_27,0.40240985829557219,0.76849999999999996,0,,,0.40240985829557219 -coef_H_28,-17.787339403083198,1.0700000000000001,0,,,-17.787339403083198 -coef_H_33,0.9552059166675555,1.018,0,,,0.9552059166675555 -coef_H_34,1.5575240015522469,1.7809999999999999,0,,,1.5575240015522469 -coef_H_35,-18.276728044549817,0.48349999999999999,0,,,-18.276728044549817 +coef_H_11,1.5446242163709172,1.6259999999999999,0,,,1.5446242163709172 +coef_H_12,0.15833568776463425,0.74070000000000003,0,,,0.15833568776463425 +coef_H_13,1.5389002358533881,1.1830000000000001,0,,,1.5389002358533881 +coef_H_14,1.3436422025992563,0.94359999999999999,0,,,1.3436422025992563 +coef_H_15,0.62460727406650574,1.298,0,,,0.62460727406650574 +coef_H_16,1.521735383660767,2.0640000000000001,0,,,1.521735383660767 +coef_H_17,1.4606474415665514,1.5009999999999999,0,,,1.4606474415665514 +coef_H_18,1.2139109701831139,0.99119999999999997,0,,,1.2139109701831139 +coef_H_22,-15.923116744497655,0.8911,0,,,-15.923116744497655 +coef_H_23,0.73052600611455265,1.6419999999999999,0,,,0.73052600611455265 +coef_H_24,1.0651655384578942,0.70569999999999999,0,,,1.0651655384578942 +coef_H_25,-16.202420121437097,0.46300000000000002,0,,,-16.202420121437097 +coef_H_26,4.156194778954351,3.0569999999999999,0,,,4.156194778954351 +coef_H_27,0.40222213291144671,0.76849999999999996,0,,,0.40222213291144671 +coef_H_28,-15.469749038901073,1.0700000000000001,0,,,-15.469749038901073 +coef_H_33,0.99710939823398292,1.018,0,,,0.99710939823398292 +coef_H_34,1.6743259141961955,1.7809999999999999,0,,,1.6743259141961955 +coef_H_35,-17.763631508602064,0.48349999999999999,0,,,-17.763631508602064 coef_H_36,1.546,1.546,0,,,1.546 coef_H_37,1.552,1.552,0,,,1.552 coef_H_38,1.3400000000000001,1.3400000000000001,0,,,1.3400000000000001 -coef_H_44,1.5193676847366135,1.3520000000000001,0,,,1.5193676847366135 -coef_H_45,2.052832778022585,1.2090000000000001,0,,,2.052832778022585 +coef_H_44,1.7326164145508278,1.3520000000000001,0,,,1.7326164145508278 +coef_H_45,2.1749474138597793,1.2090000000000001,0,,,2.1749474138597793 coef_H_46,0.52429999999999999,0.52429999999999999,0,,,0.52429999999999999 coef_H_47,0.81120000000000003,0.81120000000000003,0,,,0.81120000000000003 coef_H_48,1.167,1.167,0,,,1.167 -coef_H_55,1.0130996289124303,1.407,0,,,1.0130996289124303 +coef_H_55,0.98410006600474542,1.407,0,,,0.98410006600474542 coef_H_56_57_58,0.86319999999999997,0.86319999999999997,0,,,0.86319999999999997 -coef_H_66,20.828610446733244,2.198,0,,,20.828610446733244 -coef_H_67,-22.167021114601525,0.97699999999999998,0,,,-22.167021114601525 +coef_H_66,18.485095476410191,2.198,0,,,18.485095476410191 +coef_H_67,-18.838145375909068,0.97699999999999998,0,,,-18.838145375909068 coef_H_68,1.4670000000000001,1.4670000000000001,0,,,1.4670000000000001 -coef_H_77,2.4238673331441256,2.7999999999999998,0,,,2.4238673331441256 -coef_H_78,18.7395851650442,1.4339999999999999,0,,,18.7395851650442 -coef_H_88,1.1842097491232364,1.3779999999999999,0,,,1.1842097491232364 -coef_M_11,-0.10315745218079309,0.14099999999999999,0,,,-0.10315745218079309 -coef_M_12,0.24289066416954588,0.088450000000000001,0,,,0.24289066416954588 -coef_M_13,0.23512628556691934,0.42730000000000001,0,,,0.23512628556691934 -coef_M_16,0.37436260076978561,0.38419999999999999,0,,,0.37436260076978561 -coef_M_17,-0.12351627151201074,0.26229999999999998,0,,,-0.12351627151201074 -coef_M_18,0.26156298152357188,0.51180000000000003,0,,,0.26156298152357188 -coef_M_22,0.8876822133090766,1.135,0,,,0.8876822133090766 -coef_M_23,0.16967023848026888,0.17299999999999999,0,,,0.16967023848026888 -coef_M_26,1.9043268450318949,1.103,0,,,1.9043268450318949 -coef_M_27,0.098747793809281739,0.30790000000000001,0,,,0.098747793809281739 -coef_M_28,0.37788788825830905,0.50739999999999996,0,,,0.37788788825830905 -coef_M_33,0.46951340963465871,0.87260000000000004,0,,,0.46951340963465871 +coef_H_77,2.4644108765258532,2.7999999999999998,0,,,2.4644108765258532 +coef_H_78,16.353710938881033,1.4339999999999999,0,,,16.353710938881033 +coef_H_88,1.189203293091496,1.3779999999999999,0,,,1.189203293091496 +coef_M_11,-0.069163059806229873,0.14099999999999999,0,,,-0.069163059806229873 +coef_M_12,0.27916204731988919,0.088450000000000001,0,,,0.27916204731988919 +coef_M_13,0.29314801601836593,0.42730000000000001,0,,,0.29314801601836593 +coef_M_16,0.39262282583718466,0.38419999999999999,0,,,0.39262282583718466 +coef_M_17,-0.10503260073739486,0.26229999999999998,0,,,-0.10503260073739486 +coef_M_18,0.28872595185423811,0.51180000000000003,0,,,0.28872595185423811 +coef_M_22,0.94589050141866338,1.135,0,,,0.94589050141866338 +coef_M_23,0.1879379616749213,0.17299999999999999,0,,,0.1879379616749213 +coef_M_26,1.9267776692819061,1.103,0,,,1.9267776692819061 +coef_M_27,0.1161255949291411,0.30790000000000001,0,,,0.1161255949291411 +coef_M_28,0.40930716183312305,0.50739999999999996,0,,,0.40930716183312305 +coef_M_33,0.42731234923519629,0.87260000000000004,0,,,0.42731234923519629 coef_M_36,-0.0020999999999999999,-0.0020999999999999999,0,,,-0.0020999999999999999 coef_M_37,0.29749999999999999,0.29749999999999999,0,,,0.29749999999999999 coef_M_38,0.22539999999999999,0.22539999999999999,0,,,0.22539999999999999 -coef_M_66,19.233945823086177,0.47939999999999999,0,,,19.233945823086177 -coef_M_67,-20.972852325241863,0.5151,0,,,-20.972852325241863 +coef_M_66,16.866971034774586,0.47939999999999999,0,,,16.866971034774586 +coef_M_67,-18.934085377461077,0.5151,0,,,-18.934085377461077 coef_M_68,0.55159999999999998,0.55159999999999998,0,,,0.55159999999999998 -coef_M_77,1.1716655129786113,0.97309999999999997,0,,,1.1716655129786113 -coef_M_78,-1.6161731715056533,0.59609999999999996,0,,,-1.6161731715056533 -coef_M_88,1.1434842530496023,1.651,0,,,1.1434842530496023 -coef_N_11,0.77649157176524208,1.123,0,,,0.77649157176524208 -coef_N_12,0.488124079368988,0.49469999999999997,0,,,0.488124079368988 -coef_N_13,0.49743796422025144,0.55230000000000001,0,,,0.49743796422025144 -coef_N_14,-0.35982728457022323,0.021860000000000001,0,,,-0.35982728457022323 -coef_N_15,0.36564167259654867,0.3115,0,,,0.36564167259654867 -coef_N_16,0.86415804495299897,0.40949999999999998,0,,,0.86415804495299897 -coef_N_17,-0.15493465142131949,0.6008,0,,,-0.15493465142131949 -coef_N_18,0.061553453384430544,0.751,0,,,0.061553453384430544 -coef_N_22,0.78153353062803688,1.032,0,,,0.78153353062803688 -coef_N_23,0.51787026611388409,0.33550000000000002,0,,,0.51787026611388409 -coef_N_24,1.207010392275131,0.74770000000000003,0,,,1.207010392275131 -coef_N_25,-0.30432121041501858,0.098309999999999995,0,,,-0.30432121041501858 -coef_N_26,-17.935679569781499,0.495,0,,,-17.935679569781499 -coef_N_27,0.29124572708554775,0.89839999999999998,0,,,0.29124572708554775 -coef_N_28,0.93187705384090591,1.452,0,,,0.93187705384090591 -coef_N_33,0.97616884807409698,1.054,0,,,0.97616884807409698 -coef_N_34,-0.19667396077248783,0.193,0,,,-0.19667396077248783 -coef_N_35,0.072084224013530651,0.40649999999999997,0,,,0.072084224013530651 +coef_M_77,1.1689185377597398,0.97309999999999997,0,,,1.1689185377597398 +coef_M_78,-1.5331233891804061,0.59609999999999996,0,,,-1.5331233891804061 +coef_M_88,1.1505839302746146,1.651,0,,,1.1505839302746146 +coef_N_11,0.87318887937108214,1.123,0,,,0.87318887937108214 +coef_N_12,0.24183915201361481,0.49469999999999997,0,,,0.24183915201361481 +coef_N_13,0.59192245194065063,0.55230000000000001,0,,,0.59192245194065063 +coef_N_14,-0.11520399026943709,0.021860000000000001,0,,,-0.11520399026943709 +coef_N_15,0.35837177201195769,0.3115,0,,,0.35837177201195769 +coef_N_16,0.87560206874032775,0.40949999999999998,0,,,0.87560206874032775 +coef_N_17,-0.12677865514794309,0.6008,0,,,-0.12677865514794309 +coef_N_18,0.10704226969734577,0.751,0,,,0.10704226969734577 +coef_N_22,0.72707556913323979,1.032,0,,,0.72707556913323979 +coef_N_23,0.54094331873208856,0.33550000000000002,0,,,0.54094331873208856 +coef_N_24,1.2778673813277723,0.74770000000000003,0,,,1.2778673813277723 +coef_N_25,-0.44876565834828996,0.098309999999999995,0,,,-0.44876565834828996 +coef_N_26,-14.897952319514477,0.495,0,,,-14.897952319514477 +coef_N_27,0.3031034553268101,0.89839999999999998,0,,,0.3031034553268101 +coef_N_28,0.90141537238007852,1.452,0,,,0.90141537238007852 +coef_N_33,0.94126692083673891,1.054,0,,,0.94126692083673891 +coef_N_34,-0.17640412257232874,0.193,0,,,-0.17640412257232874 +coef_N_35,0.10306375422257623,0.40649999999999997,0,,,0.10306375422257623 coef_N_36,1.6200000000000001,1.6200000000000001,0,,,1.6200000000000001 coef_N_37,0.51649999999999996,0.51649999999999996,0,,,0.51649999999999996 coef_N_38,0.89729999999999999,0.89729999999999999,0,,,0.89729999999999999 -coef_N_44,0.49234460682467146,0.69840000000000002,0,,,0.49234460682467146 -coef_N_45,0.079463133627298746,0.18640000000000001,0,,,0.079463133627298746 +coef_N_44,0.18753988004006014,0.69840000000000002,0,,,0.18753988004006014 +coef_N_45,0.10139966319988514,0.18640000000000001,0,,,0.10139966319988514 coef_N_46,0.68010000000000004,0.68010000000000004,0,,,0.68010000000000004 coef_N_47,0.56459999999999999,0.56459999999999999,0,,,0.56459999999999999 coef_N_48,1.1639999999999999,1.1639999999999999,0,,,1.1639999999999999 -coef_N_55,0.71170975542229609,0.72909999999999997,0,,,0.71170975542229609 +coef_N_55,0.71481848079980614,0.72909999999999997,0,,,0.71481848079980614 coef_N_56_57_58,0.29189999999999999,0.29189999999999999,0,,,0.29189999999999999 -coef_N_66,-3.0799970068090738,1.512,0,,,-3.0799970068090738 -coef_N_67,-17.056285405105893,1.4219999999999999,0,,,-17.056285405105893 +coef_N_66,-2.4730624946698345,1.512,0,,,-2.4730624946698345 +coef_N_67,-14.740556739194025,1.4219999999999999,0,,,-14.740556739194025 coef_N_68,1.2729999999999999,1.2729999999999999,0,,,1.2729999999999999 -coef_N_77,2.2686582220936948,1.5529999999999999,0,,,2.2686582220936948 -coef_N_78,-0.3962846317912857,0.61839999999999995,0,,,-0.3962846317912857 -coef_N_88,-0.18416905539843373,0.87709999999999999,0,,,-0.18416905539843373 -coef_H_124_122_144,0.69278315447063155,0.95730000000000004,0,,,0.69278315447063155 -coef_H_126_146,1.7014712183693104,0.29389999999999999,0,,,1.7014712183693104 -coef_H_222_224_244,-9.0699293225103421,0.98809999999999998,0,,,-9.0699293225103421 -coef_H_226_246_446,39.460567637960175,0.43740000000000001,0,,,39.460567637960175 +coef_N_77,2.3130640609159334,1.5529999999999999,0,,,2.3130640609159334 +coef_N_78,-0.30407334622872023,0.61839999999999995,0,,,-0.30407334622872023 +coef_N_88,-0.15881741099470906,0.87709999999999999,0,,,-0.15881741099470906 +coef_H_124_122_144,0.33133065098679593,0.95730000000000004,0,,,0.33133065098679593 +coef_H_126_146,1.5514557242593745,0.29389999999999999,0,,,1.5514557242593745 +coef_H_222_224_244,-9.203498518007823,0.98809999999999998,0,,,-9.203498518007823 +coef_H_226_246_446,34.311085923988777,0.43740000000000001,0,,,34.311085923988777 coef_H_266_466,0.47470000000000001,0.47470000000000001,0,,,0.47470000000000001 -coef_H_xxxxx,-4.4491970695320449,-8.6210000000000004,0,,,-4.4491970695320449 -coef_M_111,0.26484774815280648,0.31330000000000002,0,,,0.26484774815280648 -coef_M_112_114,-0.13344931506337007,0.34949999999999998,0,,,-0.13344931506337007 +coef_H_xxxxx,-4.3950349906415909,-8.6210000000000004,0,,,-4.3950349906415909 +coef_M_111,0.22029613237472445,0.31330000000000002,0,,,0.22029613237472445 +coef_M_112_114,-0.0040326112064052802,0.34949999999999998,0,,,-0.0040326112064052802 coef_M_666,-0.3906,-0.3906,0,,,-0.3906 -coef_M_xxxxx,-0.040213814658512113,-1.528,0,,,-0.040213814658512113 -coef_N_112_114,-0.45158995385066814,0.4637,0,,,-0.45158995385066814 -coef_N_124_122_144,0.99671035413350717,0.34910000000000002,0,,,0.99671035413350717 -coef_N_166,-1.9761012859626266,0.3553,0,,,-1.9761012859626266 -coef_N_222_224_444,-2.0462327181587683,-1.3859999999999999,0,,,-2.0462327181587683 -coef_N_246_226_446,-0.85937641201738035,-0.85709999999999997,0,,,-0.85937641201738035 -coef_N_xxxxx,-0.82569094329321668,-3.4529999999999998,0,,,-0.82569094329321668 +coef_M_xxxxx,-0.094419014924773184,-1.528,0,,,-0.094419014924773184 +coef_N_112_114,0.38961790319791489,0.4637,0,,,0.38961790319791489 +coef_N_124_122_144,0.58723976265654321,0.34910000000000002,0,,,0.58723976265654321 +coef_N_166,-1.6454258220246625,0.3553,0,,,-1.6454258220246625 +coef_N_222_224_444,-0.73749437161692599,-1.3859999999999999,0,,,-0.73749437161692599 +coef_N_246_226_446,-0.85860667485009734,-0.85709999999999997,0,,,-0.85860667485009734 +coef_N_xxxxx,-1.0332955358547824,-3.4529999999999998,0,,,-1.0332955358547824 diff --git a/activitysim/estimation/test/test_larch_estimation/test_cdap_model_loglike.csv b/activitysim/estimation/test/test_larch_estimation/test_cdap_model_loglike.csv index 1e2087566..dcd755572 100644 --- a/activitysim/estimation/test/test_larch_estimation/test_cdap_model_loglike.csv +++ b/activitysim/estimation/test/test_larch_estimation/test_cdap_model_loglike.csv @@ -1,2 +1,2 @@ ,loglike_prior,loglike_converge -0,-2477.2003381662212,-2354.458830163564 +0,-2460.72797581254872057,-2335.77494762967762654 diff --git a/activitysim/examples/__init__.py b/activitysim/examples/__init__.py index e69de29bb..642b31590 100644 --- a/activitysim/examples/__init__.py +++ b/activitysim/examples/__init__.py @@ -0,0 +1,5 @@ +from pathlib import Path + +from activitysim.cli.create import get_example # noqa: F401 + +path = Path(__file__).parent diff --git a/activitysim/examples/example_estimation/configs/logging.yaml b/activitysim/examples/example_estimation/configs/logging.yaml index 9531f40bb..f4902943d 100644 --- a/activitysim/examples/example_estimation/configs/logging.yaml +++ b/activitysim/examples/example_estimation/configs/logging.yaml @@ -33,14 +33,16 @@ logging: elogfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['estimation.log'] + filename: + get_log_file_path: 'estimation.log' mode: w formatter: fileFormatter level: NOTSET logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET @@ -63,4 +65,3 @@ logging: class: logging.Formatter format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' datefmt: '%d/%m/%Y %H:%M:%S' - diff --git a/activitysim/examples/example_estimation/scripts/infer.py b/activitysim/examples/example_estimation/scripts/infer.py index f60b94900..6b6991992 100644 --- a/activitysim/examples/example_estimation/scripts/infer.py +++ b/activitysim/examples/example_estimation/scripts/infer.py @@ -10,7 +10,7 @@ import yaml from activitysim.abm.models.util import canonical_ids as cid -from activitysim.abm.models.util import tour_frequency as tf +from activitysim.core import workflow from activitysim.core.util import reindex logger = logging.getLogger(__name__) @@ -69,7 +69,6 @@ def unmangle_ids(ids): def infer_cdap_activity(persons, tours, joint_tour_participants): - mandatory_tour_types = ["work", "school"] non_mandatory_tour_types = [ "escort", @@ -118,7 +117,6 @@ def infer_cdap_activity(persons, tours, joint_tour_participants): def infer_mandatory_tour_frequency(persons, tours): - num_work_tours = ( tours[tours.tour_type == "work"] .groupby("person_id") @@ -402,9 +400,8 @@ def read_tdd_alts(): return tdds.tdd -def patch_tour_ids(persons, tours, joint_tour_participants): - def set_tour_index(tours, parent_tour_num_col, is_joint): - +def patch_tour_ids(state: workflow.State, persons, tours, joint_tour_participants): + def set_tour_index(state, tours, parent_tour_num_col, is_joint): group_cols = ["person_id", "tour_category", "tour_type"] if "parent_tour_num" in tours: @@ -415,7 +412,7 @@ def set_tour_index(tours, parent_tour_num_col, is_joint): ) return cid.set_tour_index( - tours, parent_tour_num_col=parent_tour_num_col, is_joint=is_joint + state, tours, parent_tour_num_col=parent_tour_num_col, is_joint=is_joint ) assert "mandatory_tour_frequency" in persons @@ -426,6 +423,7 @@ def set_tour_index(tours, parent_tour_num_col, is_joint): # mandatory tours ##################### mandatory_tours = set_tour_index( + state, tours[tours.tour_category == "mandatory"], parent_tour_num_col=None, is_joint=False, @@ -450,7 +448,9 @@ def set_tour_index(tours, parent_tour_num_col, is_joint): temp_point_persons.person_id, joint_tours.household_id ) - joint_tours = set_tour_index(joint_tours, parent_tour_num_col=None, is_joint=True) + joint_tours = set_tour_index( + state, joint_tours, parent_tour_num_col=None, is_joint=True + ) joint_tours["person_id"] = joint_tours["cache_point_person_id"] del joint_tours["cache_point_person_id"] @@ -475,6 +475,7 @@ def set_tour_index(tours, parent_tour_num_col, is_joint): ##################### non_mandatory_tours = set_tour_index( + state, tours[tours.tour_category == "non_mandatory"], parent_tour_num_col=None, is_joint=False, @@ -523,7 +524,7 @@ def set_tour_index(tours, parent_tour_num_col, is_joint): ) atwork_tours = set_tour_index( - atwork_tours, parent_tour_num_col="parent_tour_num", is_joint=False + state, atwork_tours, parent_tour_num_col="parent_tour_num", is_joint=False ) del atwork_tours["parent_tour_num"] @@ -565,7 +566,6 @@ def set_tour_index(tours, parent_tour_num_col, is_joint): def infer_atwork_subtour_frequency(configs_dir, tours): - # first column is 'atwork_subtour_frequency' nickname, remaining columns are trip type counts alts = pd.read_csv( os.path.join(configs_dir, "atwork_subtour_frequency_alternatives.csv"), @@ -640,7 +640,7 @@ def infer_atwork_subtour_frequency(configs_dir, tours): return atwork_subtour_frequency -def patch_trip_ids(tours, trips): +def patch_trip_ids(state: workflow.State, tours, trips): """ replace survey trip_ids with asim standard trip_id replace survey tour_id foreign key with asim standard tour_id @@ -672,7 +672,7 @@ def patch_trip_ids(tours, trips): + 1 ) - cid.set_trip_index(trips) + cid.set_trip_index(state, trips) assert trips.index.name == ASIM_TRIP_ID trips = trips.reset_index().rename(columns={"trip_id": ASIM_TRIP_ID}) @@ -681,7 +681,6 @@ def patch_trip_ids(tours, trips): def infer_stop_frequency(configs_dir, tours, trips): - # alt,out,in # 0out_0in,0,0 # 0out_1in,0,1 @@ -707,7 +706,6 @@ def infer_stop_frequency(configs_dir, tours, trips): def read_tables(input_dir, tables): - for table, info in tables.items(): table = pd.read_csv( os.path.join(input_dir, info["file_name"]), index_col=info.get("index") @@ -730,7 +728,6 @@ def read_tables(input_dir, tables): def check_controls(table_name, column_name): - table = survey_tables[table_name].get("table") c_table = control_tables[table_name].get("table") @@ -754,8 +751,7 @@ def check_controls(table_name, column_name): return True -def infer(configs_dir, input_dir, output_dir): - +def infer(state: workflow.State, configs_dir, input_dir, output_dir): households, persons, tours, joint_tour_participants, trips = read_tables( input_dir, survey_tables ) @@ -801,7 +797,7 @@ def infer(configs_dir, input_dir, output_dir): # patch_tour_ids tours, joint_tour_participants = patch_tour_ids( - persons, tours, joint_tour_participants + state, persons, tours, joint_tour_participants ) survey_tables["tours"]["table"] = tours survey_tables["joint_tour_participants"]["table"] = joint_tour_participants @@ -864,4 +860,4 @@ def infer(configs_dir, input_dir, output_dir): if apply_controls: read_tables(input_dir, control_tables) -infer(configs_dir, input_dir, output_dir) +infer(state, configs_dir, input_dir, output_dir) diff --git a/activitysim/examples/example_manifest.yaml b/activitysim/examples/example_manifest.yaml index 6af4302c1..769dad925 100644 --- a/activitysim/examples/example_manifest.yaml +++ b/activitysim/examples/example_manifest.yaml @@ -48,6 +48,11 @@ - prototype_mtc_extended/configs_mp - prototype_mtc_extended/output - prototype_mtc_extended/README.MD + - prototype_mtc_extended/data_model + subdirs: + configs_dir: + - configs_extended/configs + - configs - name: prototype_mtc_extended_full description: Prototype MTC example model using data from the full 1475-zone MTC region with 2.8M households and 7.5M persons @@ -63,6 +68,7 @@ - prototype_mtc_extended/configs_mp - prototype_mtc_extended/output - prototype_mtc_extended/README.MD + - prototype_mtc_extended/data_model - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/mtc_data_full/skims.omx data/skims.omx - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/mtc_data_full/households.csv @@ -126,6 +132,11 @@ data_sf/skims.omx 579d6007266db3b055d0f9e4814004f4d5ccfae27a36e40f4881e3662bc3d3f1 - prototype_mtc/output + subdirs: + configs_dir: + - configs_estimation/configs + - configs + data_dir: data_sf - name: placeholder_2_zone description: 2 zone system test example based on prototype MTC @@ -488,77 +499,55 @@ data/final_accessibility.csv 949994345c9965054be260589fd64079e4032d2e4079e46b9eb9c758a40527c3 -- name: prototype_semcog +- name: production_semcog description: 67 zone test example for the SEMCOG region - # activitysim create -e prototype_semcog -d test_prototype_semcog - # cd test_prototype_semcog + # activitysim create -e production_semcog -d test_production_semcog + # cd test_production_semcog # python simulation.py -c configs -o output -d data # cd .. include: - - prototype_semcog/extensions - - prototype_semcog/data - - prototype_semcog/configs - - prototype_semcog/configs_mp - - prototype_semcog/output - - prototype_semcog/README.MD - - prototype_semcog/simulation.py + - production_semcog/extensions + - production_semcog/data + - production_semcog/configs + - production_semcog/configs_mp + - production_semcog/output + - production_semcog/README.MD + - production_semcog/simulation.py -- name: prototype_semcog_z500 - description: 500 zone intermediate size example for the SEMCOG region - # activitysim create -e prototype_semcog_z500 -d test_prototype_semcog_z500 - # cd test_prototype_semcog_z500 - # python simulation.py -c configs -o output -d data - # cd .. - include: - - prototype_semcog/extensions - - prototype_semcog/data - - prototype_semcog/configs - - prototype_semcog/configs_mp - - prototype_semcog/output - - prototype_semcog/README.MD - - prototype_semcog/simulation.py - - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_z500/skims.omx - data/skims.omx - 7c824032940d1006e731d715bcee8771572e03558eef40ca1ca5f820bfc071ca - - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_z500/households.csv - data/households.csv - 93b74d3ad86c4c49222a2427cca6014a12a34c0b46c8a934fc8f849f943b820f - - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_z500/persons.csv - data/persons.csv - 3496761cc3b5f9718349ccd3ab97de7db96b8b5eed535a9bf97248fa087161a1 - - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_z500/land_use.csv - data/land_use.csv - d4ddb6f5fc7cd844e3e9149d03d32c841c5cb641a77aea9174045ddb85f27a3a - -- name: prototype_semcog_full - description: 2899 zone full size example for the SEMCOG region - # activitysim create -e prototype_semcog_full -d test_prototype_semcog_full - # cd test_prototype_semcog_full +- name: production_semcog_full + description: 2899 zone full size production model for the SEMCOG region + # activitysim create -e production_semcog_full -d test_production_semcog_full + # cd test_production_semcog_full # python simulation.py -c configs_mp -c configs -o output -d data # cd .. include: - - prototype_semcog/extensions - # prototype_semcog/data # data loaded from activitysim_resources - - prototype_semcog/configs - - prototype_semcog/configs_mp - - prototype_semcog/output - - prototype_semcog/README.MD - - prototype_semcog/simulation.py - - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_full/skims.omx - data/skims.omx - efa1f87395df354ccfad7cfe4e67ace96c7ac04fa0290e5e6f8e2593fc0ba6a3 - - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_full/skims2.omx - data/skims2.omx - 3cec3453f12c3f07a19ef896b98da2ab79cbcca8bb541f845f6541bf878feeff + - production_semcog/extensions + - production_semcog/configs + - production_semcog/configs_mp + - production_semcog/output + - production_semcog/README.MD + - production_semcog/simulation.py + - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_full/skims_offpeak.omx + data/skims_offpeak.omx + 685e93a725e2c04e4b1fc11b92609472c347ce830475448e39b52947fa729d80 + - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_full/skims_peak.omx + data/skims_peak.omx + f92d924728c3984bc0d960b0258f6a395be5169167ccc88747503a446ff153f9 - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_full/households.csv data/households.csv - 25f5fcabd2953951e0e1cfe3ca2cc8bb4bc63ee11bbdee299a8fc026a775986d + 34d5db243f7d176c536012f4d475fcc7dc51deb46c070e0e74f5e667578bcd15 - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_full/persons.csv data/persons.csv - 934209ad17b789de07ad601c3f77a905a1c35c4bd7c15c62f088c045b3c64f43 + d8c7eac449efd57758504ca80cf86f150d232b85d659423baab9d203a47dbb6d - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_full/land_use.csv data/land_use.csv - 8f9146993bff315afc6ada52182cb3ea719a6a1ed07095b51535bc7c026285f6 + 2e3c5a8b50d638f6956b3c78c9402ce15f3ceaa4cdc5a51d9d802652b6843772 + - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_full/maz_to_maz_walk.csv + data/maz_to_maz_walk.csv + 3dd2511cfdac1380653f8cf93a11ee00c625800aad378b46cd1ce191371cec39 + - https://media.githubusercontent.com/media/activitysim/activitysim_resources/master/semcog_data_full/maz_to_maz_bike.csv + data/maz_to_maz_bike.csv + b158a181a48723117c86286a2e3041a35a980143d6b767e3f541c28bfbd38dcf - name: prototype_arc description: 36 zone test example for the ARC region @@ -763,6 +752,12 @@ - placeholder_sandag/configs_3_zone - placeholder_sandag/configs_skip_accessibility - placeholder_sandag/output_3 + subdirs: + configs_dir: + - configs_3_zone + - prototype_mtc/configs + data_dir: data_3 + output_dir: output_3 - name: placeholder_sandag_3_zone_full description: full 3-zone example for the SANDAG region diff --git a/activitysim/examples/external.py b/activitysim/examples/external.py new file mode 100644 index 000000000..447cbe0ce --- /dev/null +++ b/activitysim/examples/external.py @@ -0,0 +1,334 @@ +""" +Tools to download and use example models from external sources. + +The tools in this module allow for automated access to *external* example models, +which are not necessarily maintained or supported by the ActivitySim Consortium. +These models can be test-sized or full scale representations of models operated +by various agencies, and can contain thousands of zones and/or millions of simulated +households. +""" + +from __future__ import annotations + +import logging +import os +import tarfile +import zipfile +from pathlib import Path + +import platformdirs +import yaml + +from activitysim.cli.create import download_asset + +logger = logging.getLogger(__name__) + + +def registered_external_example( + name: str, working_dir: Path, registry: Path | None = None +) -> Path: + """ + Download a registered external example and copy into a working directory. + + Parameters + ---------- + name : str + The unique name for the registered external example. See + `activitysim/examples/external_example_manifest.yaml` or run + `list_registered_examples()` for the names of the built-in registered + examples. + working_dir : path-like + The location to install the external example. + registry : path-like, optional + Provide the file location of an alternative example registry. This + should be a yaml file with information about the location of examples. + When not provided, the default external example registry is used, + which is found at `activitysim/examples/external_example_manifest.yaml`. + + Returns + ------- + Path + The location where the example was installed, generally a subdirectory + of `working_dir`. + """ + if registry is None: + registry = Path(__file__).parent.joinpath("external_example_manifest.yaml") + with open(registry) as eem: + registered_examples = yaml.load(eem, yaml.SafeLoader) + if name not in registered_examples: + raise KeyError(f"{name!r} is not a registered external example") + if "name" not in registered_examples[name]: + registered_examples[name]["name"] = name + return download_external_example( + working_dir, + **registered_examples[name], + ) + + +def list_registered_examples(registry: Path | None = None) -> list[str]: + """ + Read a list of registered example names. + + Parameters + ---------- + registry : path-like, optional + Provide the file location of an alternative example registry. This + should be a yaml file with information about the location of examples. + When not provided, the default external example registry is used, + which is found at `activitysim/examples/external_example_manifest.yaml`. + + Returns + ------- + list[str] + """ + if registry is None: + registry = Path(__file__).parent.joinpath("external_example_manifest.yaml") + with open(registry) as eem: + registered_examples = yaml.load(eem, yaml.SafeLoader) + return list(registered_examples.keys()) + + +def exercise_external_example( + name: str, + working_dir: Path, + maxfail: int = None, + verbose: int = 2, + durations: int = 0, + registry: Path | None = None, +) -> int: + """ + Use pytest to ensure that an external example is functioning correctly. + + Parameters + ---------- + name : str + The unique name for the registered external example. See + `activitysim/examples/external_example_manifest.yaml` or run + `list_registered_examples()` for the names of the registered examples. + working_dir : path-like + The location to install a copy of the external example for testing. + maxfail : int, optional + Stop testing after this many failures have been detected. + verbose : int, default 2 + Verbosity level given to pytest. + durations : int, default 0 + Report the durations of this many of the slowest tests conducted. + Leave as 0 to report all durations, or set to None to report no + durations. + + Returns + ------- + int + The result code returned by pytest. + """ + try: + directory = registered_external_example(name, working_dir, registry) + except Exception as err: + logger.exception(err) + raise + import pytest + + args = [] + if verbose: + args.append("-" + "v" * verbose) + if maxfail: + args.append(f"--maxfail={int(maxfail)}") + if durations is not None: + args.append(f"--durations={int(durations)}") + args.append(os.path.relpath(os.path.normpath(os.path.realpath(directory)))) + return pytest.main(args) + + +def _run_tests_on_example(name): + import tempfile + + tempdir = tempfile.TemporaryDirectory() + resultcode = exercise_external_example(name, tempdir.name) + return resultcode + + +def default_cache_dir() -> Path: + """ + Get the default external example cache directory. + + Returns + ------- + Path + """ + return Path(platformdirs.user_cache_dir(appname="ActivitySim")).joinpath( + "External-Examples" + ) + + +def _decompress_archive(archive_path: Path, target_location: Path): + # decompress archive file into working directory + if archive_path.suffixes[-2:] == [".tar", ".gz"]: + with tarfile.open(archive_path) as tfile: + common_prefix = os.path.commonprefix(tfile.getnames()) + if common_prefix in {"", ".", "./", None}: + working_dir = target_location + working_dir.mkdir(parents=True, exist_ok=True) + working_subdir = working_dir + else: + working_subdir = target_location.joinpath(common_prefix) + tfile.extractall(working_dir) + elif archive_path.suffixes[-2:] == [".tar", ".zst"]: + working_dir = target_location + working_dir.mkdir(parents=True, exist_ok=True) + working_subdir = working_dir + from sharrow.utils.tar_zst import extract_zst + + extract_zst(archive_path, working_dir) + elif archive_path.suffix == ".zip": + with zipfile.ZipFile(archive_path, "r") as zf: + common_prefix = os.path.commonprefix(zf.namelist()) + if common_prefix in {"", ".", "./", None}: + working_dir = target_location + working_dir.mkdir(parents=True, exist_ok=True) + working_subdir = working_dir + else: + working_subdir = target_location.joinpath(common_prefix) + zf.extractall(working_dir) + else: + raise ValueError(f"unknown archive file type {''.join(archive_path.suffixes)}") + return working_subdir + + +def download_external_example( + working_dir: Path, + url: str | None = None, + cache_dir: Path | None = None, + cache_file_name: str | None = None, + sha256: str | None = None, + name=None, + assets: dict = None, + link_assets: bool = True, +) -> Path: + """ + Download an external example. + + Parameters + ---------- + working_dir : Path + The working directory where the external example files will be installed. + The `name` subdirectory of this directory will be created if it does not + exist, and downloaded files will be installed there. + url : str, optional + The main url for the example to download. This should point to an + archive file (e.g. blah.tar.gz) that will be unpacked into the target + working subdirectory. + cache_dir : Path, optional + The compressed archive(s) will be downloaded and cached in this + directory. If not provided, a suitable cache location is chosen based + on the suggested user cache locations from platformdirs library. + cache_file_name : str, optional + The archive at the primary url will be cached with this filename. It + is typically not necessary to provide this file name explicitly, as a + file name will be generated automatically from the url if not given. + sha256 : str, optional + This checksum is used to validate the download and/or the cached + archive file. If the cached file exists but the checksum does not match, + the file will be re-downloaded. + name : str, optional + The name of the external example. This will become the working + subdirectory name where files are installed, unless the main archive + has an embedded name (as a common prefix) in which case the name is + ignored. + assets : dict, optional + Instructions for additional files to be downloaded to support this + external example (e.g. large data files not in the main archive). + link_assets : bool, default True + If set to True, this function will attempt to symlink assets from the + cache into the target directory instead of copying them. This can + save disk space when the same external example is installed multiple + times. + + Returns + ------- + Path + The working subdirectory name where files are installed. + """ + # set up cache dir + if cache_dir is None: + cache_dir = default_cache_dir() + else: + cache_dir = Path(cache_dir) + if name: + cache_dir = cache_dir.joinpath(name) + cache_dir.mkdir(parents=True, exist_ok=True) + + working_dir = Path(working_dir) + working_dir.mkdir(parents=True, exist_ok=True) + common_prefix = "." + + if url: + # check if target file exists in cache dir + if cache_file_name is None: + cache_file_name = url + if cache_file_name.startswith("https://github.com/"): + cache_file_name = cache_file_name.replace("https://github.com/", "") + if "//" in cache_file_name: + cache_file_name = cache_file_name.split("//", 1)[1] + cache_file_name = cache_file_name.replace("/", "_").replace("\\", "_") + + target_path = cache_dir.joinpath(cache_file_name) + + download_asset(url, target_path, sha256, link=False) + + # decompress cache file into working directory + if target_path.suffixes[-2:] == [".tar", ".gz"]: + with tarfile.open(target_path) as tfile: + common_prefix = os.path.commonprefix(tfile.getnames()) + if name is not None and common_prefix in {"", ".", "./", None}: + common_prefix = name + working_dir = working_dir.joinpath(name) + working_dir.mkdir(parents=True, exist_ok=True) + working_subdir = working_dir + else: + working_subdir = working_dir.joinpath(common_prefix) + tfile.extractall(working_dir) + elif target_path.suffixes[-2:] == [".tar", ".zst"]: + working_dir = working_dir.joinpath(name) + working_dir.mkdir(parents=True, exist_ok=True) + working_subdir = working_dir + from sharrow.utils.tar_zst import extract_zst + + extract_zst(target_path, working_dir) + elif target_path.suffix == ".zip": + with zipfile.ZipFile(target_path, "r") as zf: + common_prefix = os.path.commonprefix(zf.namelist()) + if name is not None and common_prefix in {"", ".", "./", None}: + common_prefix = name + working_dir = working_dir.joinpath(name) + working_dir.mkdir(parents=True, exist_ok=True) + working_subdir = working_dir + else: + working_subdir = working_dir.joinpath(common_prefix) + zf.extractall(working_dir) + else: + raise ValueError( + f"unknown archive file type {''.join(target_path.suffixes)}" + ) + + # download assets if any: + if assets: + for asset_name, asset_info in assets.items(): + if link_assets or asset_info.get("unpack", False): + asset_target_path = working_subdir.joinpath(asset_name) + download_asset( + asset_info.get("url"), + asset_target_path, + sha256=asset_info.get("sha256", "deadbeef"), + link=cache_dir, + base_path=working_subdir, + unpack=asset_info.get("unpack"), + ) + else: + # TODO should cache and copy, this just downloads to new locations + download_asset( + asset_info.get("url"), + working_subdir.joinpath(asset_name), + sha256=asset_info.get("sha256", "deadbeef"), + ) + + return working_subdir diff --git a/activitysim/examples/external_example_manifest.yaml b/activitysim/examples/external_example_manifest.yaml new file mode 100644 index 000000000..65de55421 --- /dev/null +++ b/activitysim/examples/external_example_manifest.yaml @@ -0,0 +1,55 @@ +# +# Registered External Examples +# +# +# : -- a unique name for the example +# url: -- the public url for the archive +# sha256: -- the checksum for the archive +# assets: -- additional files for testing (optional) +# : -- filename for asset relative to common root +# url: -- url for each extra file +# sha256: -- the checksum for extra file +# unpack: -- (optional) decompress asset archive file here +# + +prototype_mtc: + url: https://github.com/ActivitySim/activitysim-prototype-mtc/archive/refs/tags/v1.3.1.tar.gz + sha256: ec53c6e72da1444bd5808de8c644cea75db284dfcc419b776575ba532b3ccb87 + assets: + test/prototype_mtc_reference_pipeline.zip: + url: https://github.com/ActivitySim/activitysim-prototype-mtc/releases/download/v1.3.1/prototype_mtc_reference_pipeline.zip + sha256: 394e5b403d4c61d5214493cefe161432db840ba4967c23c999d914178d43a1f0 + +prototype_mtc_extended: + url: https://github.com/ActivitySim/activitysim-prototype-mtc/archive/refs/tags/v1.3.2.tar.gz + sha256: b3f8f60f6354a0ffce80dd67f058c2ef81645d2c8bedddfcb989d3878651f045 + assets: + mtc_data_full.tar.zst: + url: https://github.com/ActivitySim/activitysim-prototype-mtc/releases/download/v1.3.2/mtc_data_full.tar.zst + sha256: ffc22b34b4990a1459829b101b43180d0f5d41da0d4535d58588f232c98bd44e + unpack: data_full + test/prototype_mtc_reference_pipeline.zip: + url: https://github.com/ActivitySim/activitysim-prototype-mtc/releases/download/v1.3.2/prototype_mtc_extended_reference_pipeline.zip + sha256: 4d94b6a8a83225dda17e9ca19c9110bc1df2df5b4b362effa153d1c8d31524f5 + +estimation_example: + url: https://github.com/ActivitySim/activitysim-estimation-example/archive/refs/tags/v0.0.2.tar.gz + sha256: 88c8208ee250a20e7d77036d77bc71122f21cbfeaba1eaf3b644120799f9d023 + assets: + data_sf.tar.zst: + url: https://github.com/ActivitySim/activitysim-estimation-example/releases/download/v0.0.2/data_sf.tar.zst + sha256: e0775ee2211367e25de541fa210350009d7ac142d49deba41c5e154fc908146e + unpack: data_sf + +legacy_mtc: + url: https://github.com/camsys/legacy_mtc_tm2_data/releases/download/v1.2/legacy-mtc.tar.zst + sha256: b62b462eb5178d01e61506274272508f163e3921777f34ba9d04fdb2c4be0fdf + +legacy_mtc_skims: + url: https://github.com/camsys/legacy_mtc_tm2_data/releases/download/v1.2/skims.zarr.tar.zst + sha256: 8c5ae22ce28b52bb5633627986f114b88df7fee27a42931a2aa0e454f0dd84b9 + name: legacy_mtc/skims.zarr + +prototype_psrc_in_development: + url: https://github.com/jpn--/psrc_activitysim/archive/refs/tags/v23.06.21.tar.gz + sha256: 2241816746559cd13d125e59a80deb1bf144519fec41383c891ff1fe28d7b5a2 diff --git a/activitysim/examples/placeholder_multiple_zone/configs_3_zone_marin/logging.yaml b/activitysim/examples/placeholder_multiple_zone/configs_3_zone_marin/logging.yaml index df20cf0c7..9addd3070 100755 --- a/activitysim/examples/placeholder_multiple_zone/configs_3_zone_marin/logging.yaml +++ b/activitysim/examples/placeholder_multiple_zone/configs_3_zone_marin/logging.yaml @@ -28,7 +28,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET @@ -51,4 +52,3 @@ logging: class: logging.Formatter format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' datefmt: '%d/%m/%Y %H:%M:%S' - diff --git a/activitysim/examples/placeholder_multiple_zone/test/output/.gitignore b/activitysim/examples/placeholder_multiple_zone/test/output/.gitignore index bf5bf15e3..31230d824 100644 --- a/activitysim/examples/placeholder_multiple_zone/test/output/.gitignore +++ b/activitysim/examples/placeholder_multiple_zone/test/output/.gitignore @@ -1,3 +1,4 @@ +** *.csv *.log *.prof diff --git a/activitysim/examples/placeholder_multiple_zone/test/reference_pipeline_2_zone.zip b/activitysim/examples/placeholder_multiple_zone/test/reference_pipeline_2_zone.zip new file mode 100644 index 000000000..a41d46f00 Binary files /dev/null and b/activitysim/examples/placeholder_multiple_zone/test/reference_pipeline_2_zone.zip differ diff --git a/activitysim/examples/placeholder_multiple_zone/test/reference_trace_2_zone.tar.gz b/activitysim/examples/placeholder_multiple_zone/test/reference_trace_2_zone.tar.gz new file mode 100644 index 000000000..3a92c473e Binary files /dev/null and b/activitysim/examples/placeholder_multiple_zone/test/reference_trace_2_zone.tar.gz differ diff --git a/activitysim/examples/placeholder_multiple_zone/test/regress/.gitignore b/activitysim/examples/placeholder_multiple_zone/test/regress/.gitignore new file mode 100644 index 000000000..c5200d0c4 --- /dev/null +++ b/activitysim/examples/placeholder_multiple_zone/test/regress/.gitignore @@ -0,0 +1 @@ +*_last_run.csv diff --git a/activitysim/examples/placeholder_multiple_zone/test/test_multiple_zone.py b/activitysim/examples/placeholder_multiple_zone/test/test_multiple_zone.py index 40d4a41a0..f0c9e1587 100644 --- a/activitysim/examples/placeholder_multiple_zone/test/test_multiple_zone.py +++ b/activitysim/examples/placeholder_multiple_zone/test/test_multiple_zone.py @@ -1,20 +1,17 @@ +from __future__ import annotations + # ActivitySim # See full license in LICENSE.txt. import os import subprocess import sys +from pathlib import Path import pandas as pd -import pandas.testing as pdt import pkg_resources import pytest -from activitysim.core import inject - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +from activitysim.core import test, workflow def example_path(dirname): @@ -57,7 +54,9 @@ def regress(zone): test_path(f"regress/final_tours_{zone}_zone_last_run.csv"), index=False ) print("regress tours") - pdt.assert_frame_equal(tours_df, regress_tours_df, rtol=1e-03) + test.assert_frame_substantively_equal( + tours_df, regress_tours_df, rtol=1e-03, check_dtype=False + ) # regress trips regress_trips_df = pd.read_csv( @@ -68,7 +67,9 @@ def regress(zone): test_path(f"regress/final_trips_{zone}_zone_last_run.csv"), index=False ) print("regress trips") - pdt.assert_frame_equal(trips_df, regress_trips_df, rtol=1e-03) + test.assert_frame_substantively_equal( + trips_df, regress_trips_df, rtol=1e-03, check_dtype=False + ) file_path = os.path.join(os.path.dirname(__file__), "simulation.py") @@ -116,6 +117,93 @@ def test_3_zone_mp(data): run_test(zone="3", multiprocess=True) +EXPECTED_MODELS = [ + "initialize_landuse", + "initialize_households", + "compute_accessibility", + "school_location", + "workplace_location", + "auto_ownership_simulate", + "free_parking", + "cdap_simulate", + "mandatory_tour_frequency", + "mandatory_tour_scheduling", + "joint_tour_frequency", + "joint_tour_composition", + "joint_tour_participation", + "joint_tour_destination", + "joint_tour_scheduling", + "non_mandatory_tour_frequency", + "non_mandatory_tour_destination", + "non_mandatory_tour_scheduling", + "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", + "write_data_dictionary", + "track_skim_usage", + "write_trip_matrices", + "write_tables", + "summarize", +] + + +@test.run_if_exists("reference_pipeline_2_zone.zip") +def test_multizone_progressive(zone="2"): + + zone = str(zone) + + import activitysim.abm # register components + + def test_path(dirname): + return os.path.join(os.path.dirname(__file__), dirname) + + if zone == "3": + settings_file_name = "settings_static.yaml" + else: + settings_file_name = "settings.yaml" + + state = workflow.State.make_default( + configs_dir=( + test_path(f"configs_{zone}_zone"), + example_path(f"configs_{zone}_zone"), + mtc_example_path("configs"), + ), + data_dir=(example_path(f"data_{zone}"),), + output_dir=test_path("output"), + settings_file_name=settings_file_name, + ) + + assert state.settings.models == EXPECTED_MODELS + assert state.settings.chunk_size == 0 + assert state.settings.sharrow == False + + state.settings.trace_hh_id = 1099626 + state.tracing.validation_directory = ( + Path(__file__).parent / "reference_trace_2_zone" + ) + + for step_name in EXPECTED_MODELS: + state.run.by_name(step_name) + try: + state.checkpoint.check_against( + Path(__file__).parent.joinpath("reference_pipeline_2_zone.zip"), + checkpoint_name=step_name, + ) + except Exception: + print(f"> {zone} zone {step_name}: ERROR") + raise + else: + print(f"> {zone} zone {step_name}: ok") + + if __name__ == "__main__": build_data() diff --git a/activitysim/examples/placeholder_psrc/configs/logging.yaml b/activitysim/examples/placeholder_psrc/configs/logging.yaml index 46838a7a2..2921a73d2 100755 --- a/activitysim/examples/placeholder_psrc/configs/logging.yaml +++ b/activitysim/examples/placeholder_psrc/configs/logging.yaml @@ -40,7 +40,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET diff --git a/activitysim/examples/placeholder_psrc/configs/non_mandatory_tour_frequency_alternatives.csv b/activitysim/examples/placeholder_psrc/configs/non_mandatory_tour_frequency_alternatives.csv index b9765aa75..09e89fae3 100755 --- a/activitysim/examples/placeholder_psrc/configs/non_mandatory_tour_frequency_alternatives.csv +++ b/activitysim/examples/placeholder_psrc/configs/non_mandatory_tour_frequency_alternatives.csv @@ -1,97 +1,97 @@ -escort,shopping,othmaint,othdiscr,eatout,social -0,0,0,0,0,0 -0,0,0,1,0,0 -0,0,0,0,0,1 -0,0,0,1,0,1 -0,0,0,0,1,0 -0,0,0,1,1,0 -0,0,0,0,1,1 -0,0,0,1,1,1 -0,0,1,0,0,0 -0,0,1,1,0,0 -0,0,1,0,0,1 -0,0,1,1,0,1 -0,0,1,0,1,0 -0,0,1,1,1,0 -0,0,1,0,1,1 -0,0,1,1,1,1 -0,1,0,0,0,0 -0,1,0,1,0,0 -0,1,0,0,0,1 -0,1,0,1,0,1 -0,1,0,0,1,0 -0,1,0,1,1,0 -0,1,0,0,1,1 -0,1,0,1,1,1 -0,1,1,0,0,0 -0,1,1,1,0,0 -0,1,1,0,0,1 -0,1,1,1,0,1 -0,1,1,0,1,0 -0,1,1,1,1,0 -0,1,1,0,1,1 -0,1,1,1,1,1 -1,0,0,0,0,0 -1,0,0,1,0,0 -1,0,0,0,0,1 -1,0,0,1,0,1 -1,0,0,0,1,0 -1,0,0,1,1,0 -1,0,0,0,1,1 -1,0,0,1,1,1 -1,0,1,0,0,0 -1,0,1,1,0,0 -1,0,1,0,0,1 -1,0,1,1,0,1 -1,0,1,0,1,0 -1,0,1,1,1,0 -1,0,1,0,1,1 -1,0,1,1,1,1 -1,1,0,0,0,0 -1,1,0,1,0,0 -1,1,0,0,0,1 -1,1,0,1,0,1 -1,1,0,0,1,0 -1,1,0,1,1,0 -1,1,0,0,1,1 -1,1,0,1,1,1 -1,1,1,0,0,0 -1,1,1,1,0,0 -1,1,1,0,0,1 -1,1,1,1,0,1 -1,1,1,0,1,0 -1,1,1,1,1,0 -1,1,1,0,1,1 -1,1,1,1,1,1 -2,0,0,0,0,0 -2,0,0,1,0,0 -2,0,0,0,0,1 -2,0,0,1,0,1 -2,0,0,0,1,0 -2,0,0,1,1,0 -2,0,0,0,1,1 -2,0,0,1,1,1 -2,0,1,0,0,0 -2,0,1,1,0,0 -2,0,1,0,0,1 -2,0,1,1,0,1 -2,0,1,0,1,0 -2,0,1,1,1,0 -2,0,1,0,1,1 -2,0,1,1,1,1 -2,1,0,0,0,0 -2,1,0,1,0,0 -2,1,0,0,0,1 -2,1,0,1,0,1 -2,1,0,0,1,0 -2,1,0,1,1,0 -2,1,0,0,1,1 -2,1,0,1,1,1 -2,1,1,0,0,0 -2,1,1,1,0,0 -2,1,1,0,0,1 -2,1,1,1,0,1 -2,1,1,0,1,0 -2,1,1,1,1,0 -2,1,1,0,1,1 -2,1,1,1,1,1 +escort,shopping,othmaint,othdiscr,eatout,social,tot_tours +0,0,0,0,0,0,0 +0,0,0,1,0,0,1 +0,0,0,0,0,1,1 +0,0,0,1,0,1,2 +0,0,0,0,1,0,1 +0,0,0,1,1,0,2 +0,0,0,0,1,1,2 +0,0,0,1,1,1,3 +0,0,1,0,0,0,1 +0,0,1,1,0,0,2 +0,0,1,0,0,1,2 +0,0,1,1,0,1,3 +0,0,1,0,1,0,2 +0,0,1,1,1,0,3 +0,0,1,0,1,1,3 +0,0,1,1,1,1,4 +0,1,0,0,0,0,1 +0,1,0,1,0,0,2 +0,1,0,0,0,1,2 +0,1,0,1,0,1,3 +0,1,0,0,1,0,2 +0,1,0,1,1,0,3 +0,1,0,0,1,1,3 +0,1,0,1,1,1,4 +0,1,1,0,0,0,2 +0,1,1,1,0,0,3 +0,1,1,0,0,1,3 +0,1,1,1,0,1,4 +0,1,1,0,1,0,3 +0,1,1,1,1,0,4 +0,1,1,0,1,1,4 +0,1,1,1,1,1,5 +1,0,0,0,0,0,1 +1,0,0,1,0,0,2 +1,0,0,0,0,1,2 +1,0,0,1,0,1,3 +1,0,0,0,1,0,2 +1,0,0,1,1,0,3 +1,0,0,0,1,1,3 +1,0,0,1,1,1,4 +1,0,1,0,0,0,2 +1,0,1,1,0,0,3 +1,0,1,0,0,1,3 +1,0,1,1,0,1,4 +1,0,1,0,1,0,3 +1,0,1,1,1,0,4 +1,0,1,0,1,1,4 +1,0,1,1,1,1,5 +1,1,0,0,0,0,2 +1,1,0,1,0,0,3 +1,1,0,0,0,1,3 +1,1,0,1,0,1,4 +1,1,0,0,1,0,3 +1,1,0,1,1,0,4 +1,1,0,0,1,1,4 +1,1,0,1,1,1,5 +1,1,1,0,0,0,3 +1,1,1,1,0,0,4 +1,1,1,0,0,1,4 +1,1,1,1,0,1,5 +1,1,1,0,1,0,4 +1,1,1,1,1,0,5 +1,1,1,0,1,1,5 +1,1,1,1,1,1,6 +2,0,0,0,0,0,2 +2,0,0,1,0,0,3 +2,0,0,0,0,1,3 +2,0,0,1,0,1,4 +2,0,0,0,1,0,3 +2,0,0,1,1,0,4 +2,0,0,0,1,1,4 +2,0,0,1,1,1,5 +2,0,1,0,0,0,3 +2,0,1,1,0,0,4 +2,0,1,0,0,1,4 +2,0,1,1,0,1,5 +2,0,1,0,1,0,4 +2,0,1,1,1,0,5 +2,0,1,0,1,1,5 +2,0,1,1,1,1,6 +2,1,0,0,0,0,3 +2,1,0,1,0,0,4 +2,1,0,0,0,1,4 +2,1,0,1,0,1,5 +2,1,0,0,1,0,4 +2,1,0,1,1,0,5 +2,1,0,0,1,1,5 +2,1,0,1,1,1,6 +2,1,1,0,0,0,4 +2,1,1,1,0,0,5 +2,1,1,0,0,1,5 +2,1,1,1,0,1,6 +2,1,1,0,1,0,5 +2,1,1,1,1,0,6 +2,1,1,0,1,1,6 +2,1,1,1,1,1,7 diff --git a/activitysim/examples/placeholder_psrc/configs/settings_mp.yaml b/activitysim/examples/placeholder_psrc/configs/settings_mp.yaml index 5a95144a4..c43f78b65 100644 --- a/activitysim/examples/placeholder_psrc/configs/settings_mp.yaml +++ b/activitysim/examples/placeholder_psrc/configs/settings_mp.yaml @@ -27,7 +27,7 @@ multiprocess_steps: tables: - accessibility # don't slice any tables not explicitly listed above in slice.tables - except: True + exclude: True - name: mp_households begin: school_location slice: @@ -50,4 +50,3 @@ output_tables: - persons - tours - trips - diff --git a/activitysim/examples/placeholder_psrc/configs/stop_frequency_annotate_tours_preprocessor.csv b/activitysim/examples/placeholder_psrc/configs/stop_frequency_annotate_tours_preprocessor.csv index d7b2f1d61..faa80422a 100755 --- a/activitysim/examples/placeholder_psrc/configs/stop_frequency_annotate_tours_preprocessor.csv +++ b/activitysim/examples/placeholder_psrc/configs/stop_frequency_annotate_tours_preprocessor.csv @@ -45,3 +45,6 @@ AccesibilityADestination off-peak transit,_dest_trOpRetail,"reindex(accessibilit AccesibilityAtDestination if transit,pracc,"pracc.where(~tour_mode_is_transit, _dest_trPkRetail.where(_tour_starts_in_peak, _dest_trOpRetail))" AccesibilityAtDestination if non_motorized,pracc,"pracc.where(~tour_mode_is_non_motorized, reindex(accessibility.nmRetail, df.destination))" ,destination_area_type,"reindex(land_use.area_type, df.destination)" +,is_mixed,df.composition=='mixed' +,is_adults_tour,df.composition=='adults' +,is_social,primary_purpose=='social' diff --git a/activitysim/examples/placeholder_psrc/configs/stop_frequency_eatout.csv b/activitysim/examples/placeholder_psrc/configs/stop_frequency_eatout.csv index bd0174ceb..75480c187 100644 --- a/activitysim/examples/placeholder_psrc/configs/stop_frequency_eatout.csv +++ b/activitysim/examples/placeholder_psrc/configs/stop_frequency_eatout.csv @@ -27,7 +27,7 @@ util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, util_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction util_number_of_persons_participating_in_the_tour_return_stops_interaction,Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -util_at_least_one_kid_and_one_adult_participate_in_the_tour,At least one kid and one adult participate in the tour,composition=='mixed',,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour +util_at_least_one_kid_and_one_adult_participate_in_the_tour,At least one kid and one adult participate in the tour,is_mixed,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_ util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, @@ -47,6 +47,6 @@ util_alternative_specific_constant_for_the_total_number_of_stops,Alternative spe util_alternative_specific_constant_for_outbound_stops_on_joint_tours,Alternative specific constant for outbound stops on joint tours,is_joint,,,,,-1.783,-1.783,-1.783,-1.783,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in util_alternative_specific_constant_for_return_stops_on_joint_tours,Alternative specific constant for return stops on joint tours,is_joint,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,-3.379,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,-3.379,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,-3.379,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,-3.379 util_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours,Alternative specific constant for the total number of stops on joint tours,is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,1.497,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,1.497,1.497 -util_dummy_for_an_outbound_visiting_tour,Dummy for an outbound visiting tour,primary_purpose == 'social',,,,,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour -util_dummy_for_a_return_visiting_tour,Dummy for a return visiting tour,primary_purpose == 'social',,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour -util_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,Dummy for a visiting tour with both outbound and return leg,primary_purpose == 'social',,,,,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg +util_dummy_for_an_outbound_visiting_tour,Dummy for an outbound visiting tour,is_social,,,,,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour +util_dummy_for_a_return_visiting_tour,Dummy for a return visiting tour,is_social,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour +util_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,Dummy for a visiting tour with both outbound and return leg,is_social,,,,,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg diff --git a/activitysim/examples/placeholder_psrc/configs/stop_frequency_shopping.csv b/activitysim/examples/placeholder_psrc/configs/stop_frequency_shopping.csv index bf7d02ede..80b8e285a 100644 --- a/activitysim/examples/placeholder_psrc/configs/stop_frequency_shopping.csv +++ b/activitysim/examples/placeholder_psrc/configs/stop_frequency_shopping.csv @@ -27,7 +27,7 @@ util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold util_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, util_number_of_persons_participating_in_the_tour_return_stops_interaction,Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -util_dummy_for_only_adults_participate_in_the_tour,Dummy for only adults participate in the tour,composition=='adults',,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour +util_dummy_for_only_adults_participate_in_the_tour,Dummy for only adults participate in the tour,is_adults_tour,,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,,,,,,,,,,,,,,, util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, diff --git a/activitysim/examples/placeholder_psrc/configs/stop_frequency_social.csv b/activitysim/examples/placeholder_psrc/configs/stop_frequency_social.csv index f331514b0..0d64a60c6 100644 --- a/activitysim/examples/placeholder_psrc/configs/stop_frequency_social.csv +++ b/activitysim/examples/placeholder_psrc/configs/stop_frequency_social.csv @@ -27,7 +27,7 @@ util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, util_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction util_number_of_persons_participating_in_the_tour_return_stops_interaction,Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -util_at_least_one_kid_and_one_adult_participate_in_the_tour,At least one kid and one adult participate in the tour,composition=='mixed',,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour +util_at_least_one_kid_and_one_adult_participate_in_the_tour,At least one kid and one adult participate in the tour,is_mixed,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_ util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, @@ -47,6 +47,6 @@ util_alternative_specific_constant_for_the_total_number_of_stops,Alternative spe util_alternative_specific_constant_for_outbound_stops_on_joint_tours,Alternative specific constant for outbound stops on joint tours,is_joint,,,,,-1.783,-1.783,-1.783,-1.783,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in util_alternative_specific_constant_for_return_stops_on_joint_tours,Alternative specific constant for return stops on joint tours,is_joint,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,-3.379,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,-3.379,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,-3.379,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,-3.379 util_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours,Alternative specific constant for the total number of stops on joint tours,is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,1.497,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,1.497,1.497 -util_dummy_for_an_outbound_visiting_tour,Dummy for an outbound visiting tour,primary_purpose == 'social',,,,,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour -util_dummy_for_a_return_visiting_tour,Dummy for a return visiting tour,primary_purpose == 'social',,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour -util_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,Dummy for a visiting tour with both outbound and return leg,primary_purpose == 'social',,,,,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg +util_dummy_for_an_outbound_visiting_tour,Dummy for an outbound visiting tour,is_social,,,,,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour +util_dummy_for_a_return_visiting_tour,Dummy for a return visiting tour,is_social,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour +util_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,Dummy for a visiting tour with both outbound and return leg,is_social,,,,,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg diff --git a/activitysim/examples/placeholder_psrc/configs/trip_destination.yaml b/activitysim/examples/placeholder_psrc/configs/trip_destination.yaml index 4165986d7..055ce5b82 100644 --- a/activitysim/examples/placeholder_psrc/configs/trip_destination.yaml +++ b/activitysim/examples/placeholder_psrc/configs/trip_destination.yaml @@ -1,7 +1,7 @@ SAMPLE_SIZE: 30 -DESTINATION_SAMPLE_SPEC: trip_destination_sample.csv -DESTINATION_SPEC: trip_destination.csv +SAMPLE_SPEC: trip_destination_sample.csv +SPEC: trip_destination.csv COEFFICIENTS: _dummy_coefficients.csv LOGSUM_SETTINGS: trip_mode_choice.yaml diff --git a/activitysim/examples/placeholder_psrc/configs_accessibility/settings_mp.yaml b/activitysim/examples/placeholder_psrc/configs_accessibility/settings_mp.yaml index fca3c67cb..e1aad2b43 100644 --- a/activitysim/examples/placeholder_psrc/configs_accessibility/settings_mp.yaml +++ b/activitysim/examples/placeholder_psrc/configs_accessibility/settings_mp.yaml @@ -35,7 +35,7 @@ multiprocess_steps: tables: - accessibility # don't slice any tables not explicitly listed above in slice.tables - except: True + exclude: True - name: mp_summarize begin: write_data_dictionary @@ -48,4 +48,3 @@ output_tables: - checkpoints - accessibility - land_use - diff --git a/activitysim/examples/placeholder_psrc/test/test_psrc.py b/activitysim/examples/placeholder_psrc/test/test_psrc.py index b265d7d5f..3d30d1ea3 100644 --- a/activitysim/examples/placeholder_psrc/test/test_psrc.py +++ b/activitysim/examples/placeholder_psrc/test/test_psrc.py @@ -1,25 +1,30 @@ +from __future__ import annotations + +import atexit +import importlib.resources + # ActivitySim # See full license in LICENSE.txt. import os import subprocess import sys +from contextlib import ExitStack import pandas as pd -import pandas.testing as pdt -import pkg_resources - -from activitysim.core import inject +import pytest - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +from activitysim.core import workflow +from activitysim.core.test import assert_frame_substantively_equal def _test_psrc(sharrow=False): def example_path(dirname): - resource = os.path.join("examples", "placeholder_psrc", dirname) - return pkg_resources.resource_filename("activitysim", resource) + file_manager = ExitStack() + atexit.register(file_manager.close) + ref = importlib.resources.files("activitysim").joinpath( + "examples", "placeholder_psrc", dirname + ) + return file_manager.enter_context(importlib.resources.as_file(ref)) def test_path(dirname): return os.path.join(os.path.dirname(__file__), dirname) @@ -31,7 +36,7 @@ def regress(): # person_id,household_id,tour_id,primary_purpose,trip_num,outbound,trip_count,purpose, # destination,origin,destination_logsum,depart,trip_mode,mode_choice_logsum # compare_cols = [] - pdt.assert_frame_equal(final_trips_df, regress_trips_df) + assert_frame_substantively_equal(final_trips_df, regress_trips_df) file_path = os.path.join(os.path.dirname(__file__), "simulation.py") @@ -67,6 +72,37 @@ def test_psrc_sharrow(): _test_psrc(sharrow=True) -if __name__ == "__main__": +@pytest.mark.parametrize("use_sharrow", [False, True]) +def test_psrc_no_taz_input(use_sharrow): + import activitysim.abm # noqa: F401 + + configs_dir = ("configs", "../configs") + if use_sharrow: + configs_dir = ("configs_sharrow",) + configs_dir + + state = workflow.State.make_default( + working_dir=__file__, + configs_dir=configs_dir, + data_dir=("../data",), + output_dir="output_no_taz", + ) + + # strip out land_use_taz from input_table_list + given = state.settings.input_table_list + state.settings.input_table_list = [ + i for i in given if i.tablename != "land_use_taz" + ] + state.run.all() + + def test_path(dirname): + return os.path.join(os.path.dirname(__file__), dirname) + + regress_trips_df = pd.read_csv(test_path("regress/final_trips.csv")) + final_trips_df = pd.read_csv(test_path("output_no_taz/final_trips.csv")) + + assert_frame_substantively_equal(final_trips_df, regress_trips_df) + + +if __name__ == "__main__": test_psrc() diff --git a/activitysim/examples/placeholder_sandag/3_zone_change_log.txt b/activitysim/examples/placeholder_sandag/3_zone_change_log.txt index 39354c3ee..4bc750e9d 100644 --- a/activitysim/examples/placeholder_sandag/3_zone_change_log.txt +++ b/activitysim/examples/placeholder_sandag/3_zone_change_log.txt @@ -23,7 +23,7 @@ multiprocess_steps: # except: # - land_use # don't slice any tables not explicitly listed above in slice.tables - except: True + exclude: True # global switch to turn on or off presampling of destination alternatives at TAZ level (multizone models only) @@ -87,7 +87,3 @@ maz_to_tap: # # not trimming because drive_maz_tap utility calculations take into account both drive and walk time and cost # # though some sort of trimming appears to have been done as there are not so many of these in marin data # #tap_line_distance_col: DDIST - - - - diff --git a/activitysim/examples/placeholder_sandag/configs_1_zone/logging.yaml b/activitysim/examples/placeholder_sandag/configs_1_zone/logging.yaml index 13e533abb..779a4cbab 100644 --- a/activitysim/examples/placeholder_sandag/configs_1_zone/logging.yaml +++ b/activitysim/examples/placeholder_sandag/configs_1_zone/logging.yaml @@ -40,7 +40,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET @@ -48,7 +49,9 @@ logging: console: class: logging.StreamHandler stream: ext://sys.stdout - level: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [WARNING, NOTSET] + level: + if_sub_task: WARNING + if_not_sub_task: NOTSET formatter: elapsedFormatter formatters: diff --git a/activitysim/examples/placeholder_sandag/configs_2_zone/settings.yaml b/activitysim/examples/placeholder_sandag/configs_2_zone/settings.yaml index 2d341f552..b570a8253 100644 --- a/activitysim/examples/placeholder_sandag/configs_2_zone/settings.yaml +++ b/activitysim/examples/placeholder_sandag/configs_2_zone/settings.yaml @@ -189,3 +189,5 @@ household_median_value_of_time: 2: 8.81 3: 10.44 4: 12.86 + +recode_pipeline_columns: True diff --git a/activitysim/examples/placeholder_sandag/configs_2_zone/settings_mp.yaml b/activitysim/examples/placeholder_sandag/configs_2_zone/settings_mp.yaml index 212a1097a..9841f2a31 100644 --- a/activitysim/examples/placeholder_sandag/configs_2_zone/settings_mp.yaml +++ b/activitysim/examples/placeholder_sandag/configs_2_zone/settings_mp.yaml @@ -40,9 +40,27 @@ output_tables: tables: - checkpoints - accessibility - - land_use - - households - - persons - - tours - - trips - + - tablename: land_use + decode_columns: + zone_id: land_use.zone_id + - tablename: households + decode_columns: + home_zone_id: land_use.zone_id + - tablename: persons + decode_columns: + home_zone_id: land_use.zone_id + school_zone_id: nonnegative | land_use.zone_id + workplace_zone_id: nonnegative | land_use.zone_id + - tablename: tours + decode_columns: + origin: land_use.zone_id + destination: land_use.zone_id + - tablename: trips + decode_columns: + origin: land_use.zone_id + destination: land_use.zone_id + - joint_tour_participants + - tablename: proto_disaggregate_accessibility + decode_columns: + home_zone_id: land_use.zone_id + TAZ: land_use_taz.TAZ diff --git a/activitysim/examples/placeholder_sandag/configs_3_zone/logging.yaml b/activitysim/examples/placeholder_sandag/configs_3_zone/logging.yaml index 93cf6cea9..0a7df5d47 100644 --- a/activitysim/examples/placeholder_sandag/configs_3_zone/logging.yaml +++ b/activitysim/examples/placeholder_sandag/configs_3_zone/logging.yaml @@ -28,7 +28,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET diff --git a/activitysim/examples/placeholder_sandag/test/configs_2_zone/settings.yaml b/activitysim/examples/placeholder_sandag/test/configs_2_zone/settings.yaml index 27a426684..498f257cf 100644 --- a/activitysim/examples/placeholder_sandag/test/configs_2_zone/settings.yaml +++ b/activitysim/examples/placeholder_sandag/test/configs_2_zone/settings.yaml @@ -65,9 +65,22 @@ output_tables: prefix: final_2_zone_ sort: True tables: - - tours - - trips - - vehicles - - proto_disaggregate_accessibility - -recode_pipeline_columns: False + - tablename: tours + decode_columns: + origin: land_use.zone_id + destination: land_use.zone_id + - tablename: trips + decode_columns: + origin: land_use.zone_id + destination: land_use.zone_id + - tablename: proto_disaggregate_accessibility + decode_columns: + home_zone_id: land_use.zone_id + TAZ: land_use_taz.TAZ + - tablename: land_use + decode_columns: + zone_id: land_use.zone_id + - tablename: accessibility + decode_columns: + home_zone_id: land_use.zone_id + TAZ: land_use_taz.TAZ diff --git a/activitysim/examples/placeholder_sandag/test/configs_2_zone/settings_mp.yaml b/activitysim/examples/placeholder_sandag/test/configs_2_zone/settings_mp.yaml index d965a26ec..85644fec5 100644 --- a/activitysim/examples/placeholder_sandag/test/configs_2_zone/settings_mp.yaml +++ b/activitysim/examples/placeholder_sandag/test/configs_2_zone/settings_mp.yaml @@ -16,7 +16,7 @@ fail_fast: True models: ## Disaggregate Accessibility steps # only including for 2 zone sandag test - - initialize_proto_population + - initialize_proto_population - compute_disaggregate_accessibility ### mp_initialize step - initialize_landuse @@ -84,7 +84,27 @@ output_tables: prefix: final_2_zone_ sort: True tables: - - tours - - trips - - vehicles - - proto_disaggregate_accessibility \ No newline at end of file + - tablename: land_use + decode_columns: + zone_id: land_use.zone_id + - tablename: households + decode_columns: + home_zone_id: land_use.zone_id + - tablename: persons + decode_columns: + home_zone_id: land_use.zone_id + school_zone_id: nonnegative | land_use.zone_id + workplace_zone_id: nonnegative | land_use.zone_id + - tablename: tours + decode_columns: + origin: land_use.zone_id + destination: land_use.zone_id + - tablename: trips + decode_columns: + origin: land_use.zone_id + destination: land_use.zone_id + - joint_tour_participants + - tablename: proto_disaggregate_accessibility + decode_columns: + home_zone_id: land_use.zone_id + TAZ: land_use_taz.TAZ diff --git a/activitysim/examples/placeholder_sandag/test/configs_2_zone/settings_no_recode.yaml b/activitysim/examples/placeholder_sandag/test/configs_2_zone/settings_no_recode.yaml new file mode 100644 index 000000000..45648afcc --- /dev/null +++ b/activitysim/examples/placeholder_sandag/test/configs_2_zone/settings_no_recode.yaml @@ -0,0 +1,2 @@ +inherit_settings: settings.yaml +recode_pipeline_columns: False diff --git a/activitysim/examples/placeholder_sandag/test/configs_3_zone/settings.yaml b/activitysim/examples/placeholder_sandag/test/configs_3_zone/settings.yaml index 9f4e768b6..86df7817d 100644 --- a/activitysim/examples/placeholder_sandag/test/configs_3_zone/settings.yaml +++ b/activitysim/examples/placeholder_sandag/test/configs_3_zone/settings.yaml @@ -27,3 +27,5 @@ output_tables: tables: - trips - tours + +recode_pipeline_columns: False diff --git a/activitysim/examples/placeholder_sandag/test/output_1/.gitignore b/activitysim/examples/placeholder_sandag/test/output_1/.gitignore index bf5bf15e3..5252eb112 100644 --- a/activitysim/examples/placeholder_sandag/test/output_1/.gitignore +++ b/activitysim/examples/placeholder_sandag/test/output_1/.gitignore @@ -5,3 +5,4 @@ *.txt *.yaml *.omx +*.parquet diff --git a/activitysim/examples/placeholder_sandag/test/output_1/cache/.gitignore b/activitysim/examples/placeholder_sandag/test/output_1/cache/.gitignore index 3dd2e62f9..46968a4f0 100644 --- a/activitysim/examples/placeholder_sandag/test/output_1/cache/.gitignore +++ b/activitysim/examples/placeholder_sandag/test/output_1/cache/.gitignore @@ -1,2 +1,3 @@ *.mmap *.feather +** diff --git a/activitysim/examples/placeholder_sandag/test/output_3/.gitignore b/activitysim/examples/placeholder_sandag/test/output_3/.gitignore index bf5bf15e3..5252eb112 100644 --- a/activitysim/examples/placeholder_sandag/test/output_3/.gitignore +++ b/activitysim/examples/placeholder_sandag/test/output_3/.gitignore @@ -5,3 +5,4 @@ *.txt *.yaml *.omx +*.parquet diff --git a/activitysim/examples/placeholder_sandag/test/output_3/cache/.gitignore b/activitysim/examples/placeholder_sandag/test/output_3/cache/.gitignore index 3dd2e62f9..46968a4f0 100644 --- a/activitysim/examples/placeholder_sandag/test/output_3/cache/.gitignore +++ b/activitysim/examples/placeholder_sandag/test/output_3/cache/.gitignore @@ -1,2 +1,3 @@ *.mmap *.feather +** diff --git a/activitysim/examples/placeholder_sandag/test/placeholder_sandag_3_zone_reference_pipeline.zip b/activitysim/examples/placeholder_sandag/test/placeholder_sandag_3_zone_reference_pipeline.zip new file mode 100644 index 000000000..4964267eb Binary files /dev/null and b/activitysim/examples/placeholder_sandag/test/placeholder_sandag_3_zone_reference_pipeline.zip differ diff --git a/activitysim/examples/placeholder_sandag/test/regress/final_1_zone_tours_sh.csv b/activitysim/examples/placeholder_sandag/test/regress/final_1_zone_tours_sh.csv index c5f84186b..317430a5b 100644 --- a/activitysim/examples/placeholder_sandag/test/regress/final_1_zone_tours_sh.csv +++ b/activitysim/examples/placeholder_sandag/test/regress/final_1_zone_tours_sh.csv @@ -20,7 +20,7 @@ tour_id,person_id,tour_type,tour_type_count,tour_type_num,tour_num,tour_count,to 2373898,57899,work,1,1,1,1,mandatory,1,3402.0,3746.0,20552,47.0,7.0,17.0,10.0,,,WALK,1.0388895039783694,no_subtours,,0out_0in,work 2373980,57901,work,2,1,1,2,mandatory,1,3115.0,3746.0,20552,25.0,6.0,12.0,6.0,,,SHARED3FREE,0.6022315390131013,no_subtours,,0out_0in,work 2373981,57901,work,2,2,2,2,mandatory,1,3115.0,3746.0,20552,150.0,15.0,20.0,5.0,,,SHARED2FREE,0.6232767878249469,no_subtours,,1out_0in,work -2563802,62531,school,1,1,1,1,mandatory,1,3460.0,3316.0,21869,180.0,20.0,20.0,0.0,,,SHARED3FREE,-0.7094603590463964,,,0out_0in,school +2563802,62531,school,1,1,1,1,mandatory,1,3460.0,3316.0,21869,181.0,20.0,21.0,1.0,,,SHARED3FREE,-0.7094603590463964,,,0out_0in,school 2563821,62532,escort,1,1,1,1,non_mandatory,1,3398.0,3316.0,21869,20.0,6.0,7.0,1.0,,12.499268454965652,SHARED2FREE,-1.4604154628072699,,,0out_0in,escort 2563862,62533,escort,3,1,1,4,non_mandatory,1,3402.0,3316.0,21869,1.0,5.0,6.0,1.0,,12.534424209198946,SHARED3FREE,-1.2940574569954848,,,0out_3in,escort 2563863,62533,escort,3,2,2,4,non_mandatory,1,3519.0,3316.0,21869,99.0,11.0,11.0,0.0,,12.466623656700463,SHARED2FREE,-0.9326373013150777,,,0out_0in,escort diff --git a/activitysim/examples/placeholder_sandag/test/regress/final_1_zone_trips_sh.csv b/activitysim/examples/placeholder_sandag/test/regress/final_1_zone_trips_sh.csv index 3e4eecce6..adc796c13 100644 --- a/activitysim/examples/placeholder_sandag/test/regress/final_1_zone_trips_sh.csv +++ b/activitysim/examples/placeholder_sandag/test/regress/final_1_zone_trips_sh.csv @@ -55,7 +55,7 @@ trip_id,person_id,household_id,primary_purpose,trip_num,outbound,trip_count,dest 18991850,57901,20552,work,2,True,2,3115,3460,2373981,work,,16,DRIVEALONEFREE,0.10597046751418379 18991853,57901,20552,work,1,False,1,3746,3115,2373981,home,,20,SHARED2FREE,0.23660752783217825 20510417,62531,21869,school,1,True,1,3460,3316,2563802,school,,20,SHARED3FREE,-1.4448137456466916 -20510421,62531,21869,school,1,False,1,3316,3460,2563802,home,,20,WALK,-1.5207459403958272 +20510421,62531,21869,school,1,False,1,3316,3460,2563802,home,,21,WALK,-1.5207459403958272 20510569,62532,21869,escort,1,True,1,3398,3316,2563821,escort,,6,SHARED2FREE,0.17869598454022895 20510573,62532,21869,escort,1,False,1,3316,3398,2563821,home,,7,DRIVEALONEFREE,0.20045149458253975 20510897,62533,21869,escort,1,True,1,3402,3316,2563862,escort,,5,SHARED3FREE,0.7112775892674524 diff --git a/activitysim/examples/placeholder_sandag/test/regress/final_3_zone_tours.csv b/activitysim/examples/placeholder_sandag/test/regress/final_3_zone_tours.csv index a27174eec..f2404fb78 100644 --- a/activitysim/examples/placeholder_sandag/test/regress/final_3_zone_tours.csv +++ b/activitysim/examples/placeholder_sandag/test/regress/final_3_zone_tours.csv @@ -1,78 +1,79 @@ -tour_id,person_id,tour_type,tour_type_count,tour_type_num,tour_num,tour_count,tour_category,number_of_participants,destination,origin,household_id,tdd,start,end,duration,composition,destination_logsum,tour_mode,mode_choice_logsum,od_atap,od_btap,od_path_set,do_atap,do_btap,do_path_set,atwork_subtour_frequency,parent_tour_id,stop_frequency,primary_purpose -1359025,33146,work,1,1,1,1,mandatory,1,608.0,68.0,12593,12.0,5.0,17.0,12.0,,,DRIVEALONEFREE,1.0261372219238083,,,,,,,no_subtours,,2out_0in,work -1359066,33147,work,1,1,1,1,mandatory,1,578.0,68.0,12593,61.0,8.0,15.0,7.0,,,WALK_TRANSIT,2.96683804953191,1500.0,1558.0,fastest,1558.0,1500.0,fastest,no_subtours,,0out_1in,work -1494647,36454,shopping,2,1,1,2,non_mandatory,1,233.0,88.0,13797,128.0,13.0,17.0,4.0,,11.594151670549255,DRIVEALONEFREE,0.054207142123309696,,,,,,,,,0out_1in,shopping -1494648,36454,shopping,2,2,2,2,non_mandatory,1,237.0,88.0,13797,169.0,18.0,18.0,0.0,,11.643159811140553,DRIVEALONEFREE,0.28212638921439376,,,,,,,,,1out_0in,shopping -1494680,36455,othdiscr,1,1,1,1,non_mandatory,1,131.0,88.0,13797,159.0,16.0,21.0,5.0,,13.153011009083952,DRIVEALONEFREE,0.527847608692733,,,,,,,,,0out_2in,othdiscr -1494694,36455,work,1,1,1,1,mandatory,1,70.0,88.0,13797,58.0,8.0,12.0,4.0,,,WALK,0.9189166731374394,,,,,,,no_subtours,,0out_0in,work -1709911,41705,eatout,1,1,1,1,non_mandatory,1,578.0,153.0,15777,76.0,9.0,15.0,6.0,,12.194280696346672,WALK_TRANSIT,0.4629895150090414,1500.0,1611.0,fastest,1611.0,1500.0,fastest,,,0out_0in,eatout -1709950,41706,eat,1,1,1,1,atwork,1,497.0,362.0,15777,112.0,12.0,12.0,0.0,,18.60610008578578,WALK_TRANSIT,-0.8459966967797716,1666.0,1662.0,shortest,1662.0,1666.0,shortest,,1709985.0,0out_0in,atwork -1709985,41706,work,1,1,1,1,mandatory,1,362.0,153.0,15777,65.0,8.0,19.0,11.0,,,SHARED2FREE,0.6600577445845757,,,,,,,eat,,0out_1in,work -2051448,50035,eatout,1,1,1,1,joint,3,578.0,265.0,18261,156.0,16.0,18.0,2.0,mixed,11.830383451121103,SHARED3FREE,-5.832306485220664,,,,,,,,,1out_0in,eatout -2051466,50035,school,1,1,1,1,mandatory,1,427.0,265.0,18261,43.0,7.0,13.0,6.0,,,WALK_TRANSIT,1.2158966517539807,1618.0,1748.0,shortest,1748.0,1618.0,shortest,,,0out_0in,school -2051468,50035,shopping,1,1,1,1,non_mandatory,1,504.0,265.0,18261,175.0,19.0,19.0,0.0,,11.561744392977129,DRIVEALONEFREE,-0.18465816333379353,,,,,,,,,0out_0in,shopping -2051504,50036,othmaint,1,1,1,1,non_mandatory,1,385.0,265.0,18261,44.0,7.0,14.0,7.0,,12.388911839471218,SHARED2FREE,0.07492591448018238,,,,,,,,,0out_0in,othmaint -2051556,50037,work,1,1,1,1,mandatory,1,578.0,265.0,18261,46.0,7.0,16.0,9.0,,,WALK_TRANSIT,1.2858135302346076,1500.0,1651.0,shortest,1651.0,1500.0,fastest,no_subtours,,0out_0in,work -2268889,55338,school,1,1,1,1,mandatory,1,207.0,302.0,19758,40.0,7.0,10.0,3.0,,,WALK_TRANSIT,1.4625238798878268,1608.0,1652.0,cheapest,1652.0,1608.0,shortest,,,0out_0in,school -2268938,55339,work,1,1,1,1,mandatory,1,254.0,302.0,19758,11.0,5.0,16.0,11.0,,,DRIVEALONEFREE,0.899253309377072,,,,,,,no_subtours,,0out_0in,work -2373816,57897,work,1,1,1,1,mandatory,1,578.0,337.0,20552,50.0,7.0,20.0,13.0,,,WALK_TRANSIT,1.8152536207268481,1500.0,1754.0,fastest,1754.0,1500.0,fastest,no_subtours,,0out_0in,work -2373818,57898,business,1,1,1,1,atwork,1,456.0,456.0,20552,101.0,11.0,13.0,2.0,,10.851045587482702,WALK,0.8933720529791014,,,,,,,,2373857.0,1out_0in,atwork -2373857,57898,work,1,1,1,1,mandatory,1,456.0,337.0,20552,105.0,11.0,17.0,6.0,,,DRIVEALONEFREE,0.22661990599461826,,,,,,,business1,,0out_1in,work -2373898,57899,work,1,1,1,1,mandatory,1,195.0,337.0,20552,47.0,7.0,17.0,10.0,,,WALK,1.4775079963774336,,,,,,,no_subtours,,0out_0in,work -2373980,57901,work,2,1,1,2,mandatory,1,216.0,337.0,20552,30.0,6.0,17.0,11.0,,,DRIVEALONEFREE,0.5418945770189671,,,,,,,no_subtours,,0out_0in,work -2373981,57901,work,2,2,2,2,mandatory,1,216.0,337.0,20552,175.0,19.0,19.0,0.0,,,SHARED2FREE,0.7907156266134642,,,,,,,no_subtours,,1out_0in,work -2563802,62531,school,1,1,1,1,mandatory,1,442.0,408.0,21869,180.0,20.0,20.0,0.0,,,WALK_TRANSIT,0.9438904813360477,1682.0,1633.0,shortest,1633.0,1682.0,fastest,,,0out_0in,school -2563821,62532,escort,1,1,1,1,non_mandatory,1,155.0,408.0,21869,20.0,6.0,7.0,1.0,,12.523318372217064,SHARED2FREE,-1.2299200748899615,,,,,,,,,0out_0in,escort -2563862,62533,escort,3,1,1,4,non_mandatory,1,203.0,408.0,21869,1.0,5.0,6.0,1.0,,12.561374920193618,SHARED3FREE,-1.221458591960288,,,,,,,,,0out_3in,escort -2563863,62533,escort,3,2,2,4,non_mandatory,1,26.0,408.0,21869,99.0,11.0,11.0,0.0,,12.495641230564226,SHARED3FREE,-1.66067049305692,,,,,,,,,0out_0in,escort -2563864,62533,escort,3,3,3,4,non_mandatory,1,352.0,408.0,21869,135.0,14.0,14.0,0.0,,12.525318452376542,SHARED2FREE,-1.4032965315757244,,,,,,,,,0out_0in,escort -2563878,62533,othdiscr,1,1,4,4,non_mandatory,1,578.0,408.0,21869,100.0,11.0,12.0,1.0,,13.255455507967595,WALK_TRANSIT,1.0602578337312834,1500.0,73.0,fastest,73.0,1500.0,shortest,,,0out_0in,othdiscr -2563925,62534,school,1,1,1,1,mandatory,1,301.0,408.0,21869,55.0,8.0,9.0,1.0,,,WALK_TRANSIT,-0.605105363231441,1748.0,73.0,shortest,73.0,1748.0,fastest,,,0out_0in,school -2787968,67999,escort,1,1,1,2,non_mandatory,1,269.0,481.0,23619,124.0,13.0,13.0,0.0,,12.995994495540678,SHARED3FREE,-0.6687154899908945,,,,,,,,,0out_2in,escort -2787995,67999,social,1,1,2,2,non_mandatory,1,496.0,481.0,23619,165.0,17.0,20.0,3.0,,12.759866800729268,WALK,1.4266623253551904,,,,,,,,,0out_0in,social -2788039,68000,work,1,1,1,1,mandatory,1,578.0,481.0,23619,51.0,7.0,21.0,14.0,,,WALK_TRANSIT,1.4899770411640134,1500.0,1588.0,shortest,1588.0,1500.0,shortest,no_subtours,,1out_0in,work -3238088,78977,school,1,1,1,1,mandatory,1,492.0,589.0,26897,44.0,7.0,14.0,7.0,,,WALK_TRANSIT,0.8204920756912042,1618.0,1584.0,shortest,1584.0,1618.0,cheapest,,,0out_0in,school -3238143,78979,eat,1,1,1,1,atwork,1,578.0,405.0,26897,72.0,9.0,11.0,2.0,,18.599435534464497,DRIVEALONEFREE,-0.2744746714261923,,,,,,,,3238178.0,0out_0in,atwork -3238178,78979,work,1,1,1,1,mandatory,1,405.0,589.0,26897,48.0,7.0,18.0,11.0,,,DRIVEALONEFREE,0.5976010496480395,,,,,,,eat,,0out_0in,work -52627721,1283602,work,1,1,1,1,mandatory,1,586.0,29.0,435012,64.0,8.0,18.0,10.0,,,WALK_TRANSIT,5.710266024459359,1584.0,1238.0,shortest,1608.0,1584.0,fastest,no_subtours,,0out_0in,work -52638588,1283868,business,1,1,1,1,atwork,1,578.0,578.0,435278,112.0,12.0,12.0,0.0,,19.462265786986954,WALK,0.6243659427953904,,,,,,,,52638627.0,0out_0in,atwork -52638594,1283868,eatout,1,1,1,1,non_mandatory,1,578.0,45.0,435278,172.0,18.0,21.0,3.0,,11.758619181788253,WALK_TRANSIT,0.6406085296048486,1500.0,1558.0,fastest,1558.0,1500.0,shortest,,,0out_1in,eatout -52638627,1283868,work,1,1,1,1,mandatory,1,578.0,45.0,435278,79.0,9.0,18.0,9.0,,,WALK_TRANSIT,1.206681423660966,1500.0,1558.0,shortest,1558.0,1500.0,shortest,business1,,0out_0in,work -52641825,1283946,work,1,1,1,1,mandatory,1,578.0,31.0,435356,49.0,7.0,19.0,12.0,,,WALK_TRANSIT,1.1978831616543206,1500.0,1604.0,cheapest,1604.0,1500.0,shortest,no_subtours,,0out_0in,work -52668557,1284598,work,1,1,1,1,mandatory,1,61.0,70.0,436008,80.0,9.0,19.0,10.0,,,DRIVEALONEFREE,0.7713829364314543,,,,,,,no_subtours,,0out_0in,work -52734819,1286215,eat,1,1,1,1,atwork,1,585.0,114.0,437625,88.0,10.0,13.0,3.0,,17.98372758878566,WALK_TRANSIT,-0.8798916104770301,1500.0,1562.0,shortest,1562.0,1500.0,cheapest,,52734854.0,0out_0in,atwork -52734854,1286215,work,1,1,1,1,mandatory,1,114.0,164.0,437625,65.0,8.0,19.0,11.0,,,DRIVEALONEFREE,0.8500450570238016,,,,,,,eat,,0out_2in,work -52897544,1290184,business,1,1,1,1,atwork,1,240.0,485.0,441594,99.0,11.0,11.0,0.0,,18.649706295366613,WALK,0.7361914154560637,,,,,,,,52897583.0,0out_0in,atwork -52897550,1290184,eatout,1,1,4,4,non_mandatory,1,347.0,604.0,441594,184.0,21.0,21.0,0.0,,11.9769068256242,SHARED2FREE,-0.10785441309565102,,,,,,,,,0out_1in,eatout -52897569,1290184,othdiscr,3,1,1,4,non_mandatory,1,22.0,604.0,441594,2.0,5.0,7.0,2.0,,13.340592587029276,DRIVEALONEFREE,0.9729989937926249,,,,,,,,,0out_0in,othdiscr -52897570,1290184,othdiscr,3,2,2,4,non_mandatory,1,241.0,604.0,441594,185.0,21.0,22.0,1.0,,13.194495693775464,BIKE,0.24171550040319387,,,,,,,,,0out_0in,othdiscr -52897571,1290184,othdiscr,3,3,3,4,non_mandatory,1,161.0,604.0,441594,189.0,23.0,23.0,0.0,,13.296474125502314,WALK_TRANSIT,0.4347637705876943,1238.0,1516.0,fastest,1516.0,1238.0,fastest,,,0out_1in,othdiscr -52897583,1290184,work,1,1,1,1,mandatory,1,485.0,604.0,441594,82.0,9.0,21.0,12.0,,,DRIVEALONEFREE,-0.05454824120553145,,,,,,,business1,,0out_1in,work -52915705,1290626,work,1,1,1,1,mandatory,1,578.0,608.0,442036,64.0,8.0,18.0,10.0,,,WALK_TRANSIT,1.4241213520203073,1500.0,1584.0,cheapest,1584.0,1500.0,fastest,no_subtours,,1out_0in,work -76379130,1862905,othdiscr,1,1,1,1,non_mandatory,1,494.0,468.0,721960,151.0,15.0,21.0,6.0,,13.046748957111205,BIKE,0.6336063394695053,,,,,,,,,0out_0in,othdiscr -76379171,1862906,othdiscr,1,1,1,1,non_mandatory,1,500.0,468.0,721960,104.0,11.0,16.0,5.0,,13.068781711323547,WALK,0.6246154614956402,,,,,,,,,0out_0in,othdiscr -80946571,1974306,othdiscr,1,1,1,1,non_mandatory,1,72.0,17.0,760593,62.0,8.0,16.0,8.0,,13.609717599377104,WALK,1.2877790624306358,,,,,,,,,0out_0in,othdiscr -80946591,1974307,eat,1,1,1,1,atwork,1,324.0,204.0,760593,113.0,12.0,13.0,1.0,,18.711722700372903,SHARED3FREE,-1.1971419362787026,,,,,,,,80946626.0,0out_0in,atwork -80946626,1974307,work,1,1,1,1,mandatory,1,204.0,17.0,760593,79.0,9.0,18.0,9.0,,,WALK_TRANSIT,0.9146373054676561,1748.0,1603.0,shortest,1603.0,1748.0,shortest,eat,,1out_1in,work -80946637,1974308,escort,1,1,1,1,non_mandatory,1,224.0,17.0,760593,0.0,5.0,5.0,0.0,,12.668506375964688,SHARED3FREE,-0.8073126044826399,,,,,,,,,0out_0in,escort -81048440,1976791,escort,1,1,1,1,non_mandatory,1,483.0,121.0,761445,124.0,13.0,13.0,0.0,,12.714018122401603,SHARED2FREE,-0.7186631667509052,,,,,,,,,0out_0in,escort -81048508,1976792,social,1,1,1,1,non_mandatory,1,494.0,121.0,761445,140.0,14.0,19.0,5.0,,12.159236859223718,DRIVEALONEFREE,0.5721200907291696,,,,,,,,,0out_0in,social -81048511,1976792,work,1,1,1,1,mandatory,1,25.0,121.0,761445,7.0,5.0,12.0,7.0,,,WALK_TRANSIT,0.4973097110196049,1681.0,1238.0,fastest,1238.0,1681.0,fastest,no_subtours,,0out_0in,work -81130344,1978788,social,1,1,1,1,non_mandatory,1,271.0,469.0,762159,66.0,8.0,20.0,12.0,,12.430877422027173,SHARED2FREE,1.1233925360416968,,,,,,,,,0out_0in,social -81130399,1978790,escort,1,1,1,1,non_mandatory,1,500.0,469.0,762159,54.0,8.0,8.0,0.0,,12.604750255865364,SHARED2FREE,-0.7891363476365268,,,,,,,,,0out_0in,escort -81130429,1978790,work,1,1,1,1,mandatory,1,180.0,469.0,762159,63.0,8.0,17.0,9.0,,,DRIVEALONEFREE,0.7319548477569705,,,,,,,no_subtours,,0out_0in,work -81130470,1978791,work,1,1,1,1,mandatory,1,578.0,469.0,762159,47.0,7.0,17.0,10.0,,,WALK_TRANSIT,1.2232315365174313,1500.0,1762.0,shortest,1762.0,1500.0,shortest,no_subtours,,0out_0in,work -102419958,2498047,school,1,1,1,1,mandatory,1,432.0,238.0,922602,77.0,9.0,16.0,7.0,,,WALK_TRANSIT,4.547714059900562,1673.0,1608.0,shortest,1608.0,1673.0,fastest,,,0out_0in,school -102420007,2498048,work,1,1,1,1,mandatory,1,243.0,238.0,922602,46.0,7.0,16.0,9.0,,,WALK_TRANSIT,2.571846550195381,1592.0,1612.0,shortest,1612.0,1592.0,shortest,no_subtours,,0out_0in,work -102420048,2498049,work,1,1,1,1,mandatory,1,271.0,238.0,922602,29.0,6.0,16.0,10.0,,,WALK,2.3529244532782645,,,,,,,no_subtours,,0out_0in,work -107509903,2622192,school,1,1,1,1,mandatory,1,501.0,533.0,952720,44.0,7.0,14.0,7.0,,,WALK_TRANSIT,0.7689513133515259,1664.0,1666.0,fastest,1666.0,1664.0,shortest,,,0out_0in,school -107509922,2622193,escort,1,1,1,2,non_mandatory,1,281.0,533.0,952720,19.0,6.0,6.0,0.0,,13.120197714243572,WALK,-0.6633544461803778,,,,,,,,,0out_0in,escort -107509941,2622193,othmaint,1,1,2,2,non_mandatory,1,58.0,533.0,952720,61.0,8.0,15.0,7.0,,13.296284550786224,WALK_TRANSIT,0.6229120227429399,1238.0,1666.0,fastest,1666.0,1238.0,shortest,,,0out_0in,othmaint -107509987,2622194,shopping,1,1,1,1,non_mandatory,1,504.0,533.0,952720,74.0,9.0,13.0,4.0,,12.281026585137033,SHARED3FREE,0.8228058752894183,,,,,,,,,0out_0in,shopping -107510034,2622195,work,1,1,1,1,mandatory,1,578.0,533.0,952720,63.0,8.0,17.0,9.0,,,WALK_TRANSIT,1.4377271736671302,1500.0,1666.0,fastest,1666.0,1500.0,shortest,no_subtours,,0out_0in,work -116640406,2844887,work,1,1,1,1,mandatory,1,385.0,354.0,1028031,108.0,11.0,20.0,9.0,,,WALK_TRANSIT,0.6883028572332556,1754.0,1695.0,shortest,1748.0,1754.0,fastest,no_subtours,,0out_0in,work -120287676,2933845,school,1,1,1,1,mandatory,1,197.0,82.0,1048898,121.0,12.0,21.0,9.0,,,WALK_TRANSIT,-0.05133861963844917,1608.0,1559.0,shortest,1559.0,1608.0,fastest,,,0out_0in,school -120287717,2933846,school,1,1,1,1,mandatory,1,23.0,82.0,1048898,62.0,8.0,16.0,8.0,,,SHARED2FREE,-1.0238153653421556,,,,,,,,,0out_0in,school -120287752,2933847,othdiscr,1,1,1,1,non_mandatory,1,165.0,82.0,1048898,42.0,7.0,12.0,5.0,,12.971588539704879,WALK_TRANSIT,0.8435740874298338,1238.0,1559.0,shortest,1559.0,1238.0,fastest,,,0out_1in,othdiscr -120287807,2933848,work,1,1,1,1,mandatory,1,10.0,82.0,1048898,31.0,6.0,18.0,12.0,,,WALK_TRANSIT,0.3435861763727887,1333.0,1559.0,fastest,1559.0,1333.0,shortest,no_subtours,,0out_0in,work -131881533,3216622,school,1,1,1,1,mandatory,1,582.0,584.0,1148260,136.0,14.0,15.0,1.0,,,WALK_TRANSIT,10.730879630807463,1500.0,1516.0,fastest,1516.0,1500.0,shortest,,,0out_0in,univ +person_id,tour_type,tour_type_count,tour_type_num,tour_num,tour_count,tour_category,number_of_participants,destination,origin,household_id,tdd,start,end,duration,composition,destination_logsum,tour_mode,mode_choice_logsum,od_atap,od_btap,od_path_set,do_atap,do_btap,do_path_set,atwork_subtour_frequency,parent_tour_id,stop_frequency,primary_purpose,tour_id +33146,work,1,1,1,1,mandatory,1,1100,560,12593,12,5,17,12,,,DRIVEALONEFREE,1.0261372219238083,,,,,,,no_subtours,,2out_0in,work,1359025 +33147,work,1,1,1,1,mandatory,1,1070,560,12593,61,8,15,7,,,WALK_TRANSIT,2.96683804953191,1500.0,1558.0,fastest,1558.0,1500.0,fastest,no_subtours,,0out_1in,work,1359066 +36454,shopping,2,1,1,2,non_mandatory,1,725,580,13797,128,13,17,4,,11.688295162318989,DRIVEALONEFREE,0.185754815801926,,,,,,,,,0out_1in,shopping,1494647 +36454,shopping,2,2,2,2,non_mandatory,1,729,580,13797,169,18,18,0,,11.689029568940938,DRIVEALONEFREE,0.443644139698639,,,,,,,,,1out_0in,shopping,1494648 +36455,othdiscr,1,1,1,1,non_mandatory,1,623,580,13797,159,16,21,5,,13.239720693390336,SHARED2FREE,0.738377038878971,,,,,,,,,0out_2in,othdiscr,1494680 +36455,work,1,1,1,1,mandatory,1,562,580,13797,58,8,12,4,,,SHARED3FREE,0.8851264867711228,,,,,,,no_subtours,,0out_0in,work,1494694 +41705,eatout,1,1,1,1,non_mandatory,1,1070,645,15777,76,9,15,6,,12.070246786563017,WALK_TRANSIT,0.4629895150090414,1500.0,1611.0,fastest,1611.0,1500.0,fastest,,,0out_0in,eatout,1709911 +41706,eat,1,1,1,1,atwork,1,989,854,15777,112,12,12,0,,18.50954665100095,WALK_TRANSIT,-0.6180823333381719,1666.0,1662.0,shortest,1662.0,1666.0,shortest,,1709985.0,0out_0in,atwork,1709950 +41706,work,1,1,1,1,mandatory,1,854,645,15777,65,8,19,11,,,SHARED2FREE,0.613674174636675,,,,,,,eat,,0out_1in,work,1709985 +50035,eatout,1,1,1,1,joint,3,1070,757,18261,156,16,18,2,mixed,11.85828127629614,SHARED3FREE,-5.832306485220664,,,,,,,,,1out_0in,eatout,2051448 +50035,school,1,1,1,1,mandatory,1,919,757,18261,43,7,13,6,,,WALK_TRANSIT,1.2158966517539809,1618.0,1748.0,shortest,1748.0,1618.0,shortest,,,0out_0in,school,2051466 +50035,shopping,1,1,1,1,non_mandatory,1,996,757,18261,175,19,19,0,,11.577466521097683,DRIVEALONEFREE,-0.1846581633337935,,,,,,,,,0out_0in,shopping,2051468 +50036,othmaint,1,1,1,1,non_mandatory,1,877,757,18261,44,7,14,7,,12.412335687839308,SHARED2FREE,0.0818069109613803,,,,,,,,,0out_0in,othmaint,2051504 +50037,work,1,1,1,1,mandatory,1,1070,757,18261,46,7,16,9,,,WALK_TRANSIT,1.2858135302346076,1500.0,1651.0,shortest,1651.0,1500.0,fastest,no_subtours,,0out_0in,work,2051556 +55338,school,1,1,1,1,mandatory,1,699,794,19758,40,7,10,3,,,WALK_TRANSIT,1.426179634142238,1608.0,1652.0,cheapest,1652.0,1608.0,shortest,,,0out_0in,school,2268889 +55339,work,1,1,1,1,mandatory,1,762,794,19758,11,5,16,11,,,DRIVEALONEFREE,0.6319219718888117,,,,,,,no_subtours,,0out_0in,work,2268938 +57897,work,1,1,1,1,mandatory,1,1070,829,20552,50,7,20,13,,,WALK_TRANSIT,1.815253620726848,1500.0,1754.0,fastest,1754.0,1500.0,fastest,no_subtours,,0out_0in,work,2373816 +57898,business,1,1,1,1,atwork,1,948,948,20552,101,11,13,2,,10.856328670591866,WALK,1.0849001811607144,,,,,,,,2373857.0,1out_0in,atwork,2373818 +57898,work,1,1,1,1,mandatory,1,948,829,20552,105,11,17,6,,,DRIVEALONEFREE,0.2266199059946182,,,,,,,business1,,0out_1in,work,2373857 +57899,work,1,1,1,1,mandatory,1,687,829,20552,47,7,17,10,,,WALK,1.4925958516365831,,,,,,,no_subtours,,0out_0in,work,2373898 +57901,work,2,1,1,2,mandatory,1,708,829,20552,30,6,17,11,,,DRIVEALONEFREE,0.5418945770189671,,,,,,,no_subtours,,0out_0in,work,2373980 +57901,work,2,2,2,2,mandatory,1,708,829,20552,175,19,19,0,,,SHARED2FREE,0.7907156266134642,,,,,,,no_subtours,,1out_0in,work,2373981 +62531,school,1,1,1,1,mandatory,1,938,900,21869,180,20,20,0,,,WALK_TRANSIT,1.0406873179045706,1673.0,1633.0,shortest,1633.0,1673.0,fastest,,,0out_0in,school,2563802 +62532,escort,1,1,1,1,non_mandatory,1,647,900,21869,20,6,7,1,,12.49976194812137,SHARED2FREE,-1.2299200748899617,,,,,,,,,0out_0in,escort,2563821 +62533,escort,3,1,1,4,non_mandatory,1,695,900,21869,1,5,6,1,,12.55798878217292,SHARED3FREE,-1.221458591960288,,,,,,,,,0out_3in,escort,2563862 +62533,escort,3,2,2,4,non_mandatory,1,518,900,21869,99,11,11,0,,12.502003827155296,SHARED3FREE,-1.66067049305692,,,,,,,,,0out_0in,escort,2563863 +62533,escort,3,3,3,4,non_mandatory,1,844,900,21869,135,14,14,0,,12.530459798779978,SHARED2FREE,-1.4032965315757244,,,,,,,,,0out_0in,escort,2563864 +62533,othdiscr,1,1,4,4,non_mandatory,1,1070,900,21869,100,11,12,1,,13.216136797297771,WALK_TRANSIT,1.0118533227067692,1500.0,73.0,fastest,73.0,1500.0,shortest,,,0out_0in,othdiscr,2563878 +62534,school,1,1,1,1,mandatory,1,793,900,21869,55,8,9,1,,,WALK_TRANSIT,-0.605105363231441,1748.0,73.0,shortest,73.0,1748.0,fastest,,,0out_0in,school,2563925 +67999,escort,1,1,1,2,non_mandatory,1,767,973,23619,124,13,13,0,,12.970512717862755,SHARED3FREE,-0.7145790466379958,,,,,,,,,0out_2in,escort,2787968 +67999,social,1,1,2,2,non_mandatory,1,988,973,23619,165,17,20,3,,12.777797143559908,WALK,1.394261833722182,,,,,,,,,0out_0in,social,2787995 +68000,work,1,1,1,1,mandatory,1,1070,973,23619,51,7,21,14,,,WALK_TRANSIT,1.4899770411640134,1500.0,1588.0,shortest,1588.0,1500.0,shortest,no_subtours,,1out_0in,work,2788039 +78977,school,1,1,1,1,mandatory,1,984,1081,26897,44,7,14,7,,,WALK,1.0391837359866254,,,,,,,,,0out_0in,school,3238088 +78979,eat,1,1,1,1,atwork,1,1070,897,26897,72,9,11,2,,18.50007970900582,DRIVEALONEFREE,-0.2864770605138423,,,,,,,,3238178.0,0out_0in,atwork,3238143 +78979,work,1,1,1,1,mandatory,1,897,1081,26897,48,7,18,11,,,DRIVEALONEFREE,0.5747485518145101,,,,,,,eat,,0out_0in,work,3238178 +1283602,work,1,1,1,1,mandatory,1,1078,521,435012,64,8,18,10,,,WALK_TRANSIT,5.710266024459359,1584.0,1238.0,shortest,1608.0,1584.0,fastest,no_subtours,,0out_0in,work,52627721 +1283868,business,1,1,1,1,atwork,1,1070,1070,435278,112,12,12,0,,19.38117027561944,WALK,0.6487888616012731,,,,,,,,52638627.0,0out_0in,atwork,52638588 +1283868,eatout,1,1,1,1,non_mandatory,1,1070,537,435278,172,18,21,3,,11.755720899317405,WALK_TRANSIT,0.6406085296048486,1500.0,1558.0,fastest,1558.0,1500.0,shortest,,,0out_1in,eatout,52638594 +1283868,work,1,1,1,1,mandatory,1,1070,537,435278,79,9,18,9,,,WALK_TRANSIT,1.206681423660966,1500.0,1558.0,shortest,1558.0,1500.0,shortest,business1,,0out_0in,work,52638627 +1283946,work,1,1,1,1,mandatory,1,1070,523,435356,49,7,19,12,,,WALK_TRANSIT,1.1978831616543206,1500.0,1604.0,cheapest,1604.0,1500.0,shortest,no_subtours,,0out_0in,work,52641825 +1284598,work,1,1,1,1,mandatory,1,553,562,436008,80,9,19,10,,,DRIVEALONEFREE,0.7312528815647517,,,,,,,no_subtours,,0out_0in,work,52668557 +1286215,eat,1,1,1,1,atwork,1,1077,606,437625,88,10,13,3,,18.149830935609163,WALK_TRANSIT,-0.8798916104770301,1500.0,1562.0,shortest,1562.0,1500.0,cheapest,,52734854.0,0out_0in,atwork,52734819 +1286215,work,1,1,1,1,mandatory,1,606,656,437625,65,8,19,11,,,DRIVEALONEFREE,0.8985332322364314,,,,,,,eat,,0out_2in,work,52734854 +1290184,business,1,1,1,1,atwork,1,732,977,441594,99,11,11,0,,18.610370946991612,SHARED2FREE,0.4316303329603235,,,,,,,,52897583.0,0out_0in,atwork,52897544 +1290184,eatout,1,1,4,4,non_mandatory,1,949,1096,441594,184,21,21,0,,11.904706692046382,SHARED2FREE,-0.1665710953231831,,,,,,,,,0out_1in,eatout,52897550 +1290184,othdiscr,3,1,1,4,non_mandatory,1,684,1096,441594,2,5,7,2,,12.918529902113356,DRIVEALONEFREE,0.2317787046274241,,,,,,,,,0out_0in,othdiscr,52897569 +1290184,othdiscr,3,2,2,4,non_mandatory,1,762,1096,441594,185,21,22,1,,12.959861282775266,WALK_TRANSIT,0.2522845990878585,1748.0,1516.0,fastest,1516.0,1748.0,shortest,,,0out_0in,othdiscr,52897570 +1290184,othdiscr,3,3,3,4,non_mandatory,1,725,1096,441594,189,23,23,0,,13.001363665570665,WALK,0.3854413463230495,,,,,,,,,0out_0in,othdiscr,52897571 +1290184,work,1,1,1,1,mandatory,1,977,1096,441594,82,9,21,12,,,DRIVEALONEFREE,-0.0423820492992088,,,,,,,business1,,0out_1in,work,52897583 +1290626,work,1,1,1,1,mandatory,1,1070,1100,442036,64,8,18,10,,,WALK_TRANSIT,1.4095982213888998,1500.0,1584.0,cheapest,1584.0,1500.0,fastest,no_subtours,,1out_0in,work,52915705 +1862905,othdiscr,1,1,1,1,non_mandatory,1,986,960,721960,151,15,21,6,,12.957346522442643,WALK_TRANSIT,0.3212522660901984,1618.0,1762.0,fastest,1762.0,1618.0,cheapest,,,0out_0in,othdiscr,76379130 +1862906,othdiscr,1,1,1,1,non_mandatory,1,992,960,721960,104,11,16,5,,12.9976638956563,SHARED3FREE,0.3134675853717786,,,,,,,,,0out_1in,othdiscr,76379171 +1974306,othdiscr,1,1,1,1,non_mandatory,1,564,509,760593,62,8,16,8,,13.57415728090829,WALK,1.2942555315594169,,,,,,,,,0out_0in,othdiscr,80946571 +1974307,eat,1,1,1,1,atwork,1,913,739,760593,113,12,13,1,,18.622653002301583,SHARED3FREE,-0.7672328773497228,,,,,,,,80946626.0,0out_0in,atwork,80946591 +1974307,work,1,1,1,1,mandatory,1,739,509,760593,79,9,18,9,,,WALK_TRANSIT,0.6201259698287482,1748.0,1603.0,fastest,1603.0,1748.0,fastest,eat,,1out_1in,work,80946626 +1974308,escort,1,1,1,1,non_mandatory,1,716,509,760593,0,5,5,0,,12.671799977139084,SHARED3FREE,-0.8180421450990675,,,,,,,,,0out_0in,escort,80946637 +1976791,escort,1,1,1,1,non_mandatory,1,908,613,761445,124,13,13,0,,12.82099191373982,SHARED2FREE,-0.9528167859302504,,,,,,,,,0out_0in,escort,81048440 +1976792,eat,1,1,1,1,atwork,1,517,517,761445,70,9,9,0,,17.910037480926228,SHARED2FREE,0.7181216397530412,,,,,,,,81048511.0,0out_0in,atwork,81048476 +1976792,eatout,1,1,1,1,non_mandatory,1,648,613,761445,130,13,19,6,,11.955235691700665,DRIVEALONEFREE,1.3804088714164349,,,,,,,,,0out_0in,eatout,81048478 +1976792,work,1,1,1,1,mandatory,1,517,613,761445,7,5,12,7,,,WALK_TRANSIT,0.5051019359212883,1681.0,1238.0,fastest,1238.0,1681.0,fastest,eat,,0out_0in,work,81048511 +1978788,social,1,1,1,1,non_mandatory,1,763,961,762159,66,8,20,12,,12.393316604403664,SHARED2FREE,1.1233925360416968,,,,,,,,,0out_0in,social,81130344 +1978790,escort,1,1,1,1,non_mandatory,1,992,961,762159,54,8,8,0,,12.58022321361327,SHARED2FREE,-0.9361958649826466,,,,,,,,,0out_0in,escort,81130399 +1978790,work,1,1,1,1,mandatory,1,672,961,762159,63,8,17,9,,,DRIVEALONEFREE,0.7319548477569705,,,,,,,no_subtours,,0out_0in,work,81130429 +1978791,work,1,1,1,1,mandatory,1,1070,961,762159,47,7,17,10,,,WALK_TRANSIT,1.223231536517431,1500.0,1762.0,shortest,1762.0,1500.0,shortest,no_subtours,,0out_0in,work,81130470 +2498047,school,1,1,1,1,mandatory,1,865,730,922602,77,9,16,7,,,WALK_TRANSIT,4.515115660099912,1698.0,1608.0,shortest,1608.0,1698.0,fastest,,,0out_0in,school,102419958 +2498048,work,1,1,1,1,mandatory,1,735,730,922602,46,7,16,9,,,WALK_TRANSIT,2.37613290143943,1592.0,1612.0,shortest,1612.0,1592.0,shortest,no_subtours,,0out_0in,work,102420007 +2498049,work,1,1,1,1,mandatory,1,763,730,922602,29,6,16,10,,,WALK,2.522839906360249,,,,,,,no_subtours,,0out_0in,work,102420048 +2622192,school,1,1,1,1,mandatory,1,995,1025,952720,44,7,14,7,,,WALK_TRANSIT,0.7240925397746193,1664.0,1666.0,fastest,1666.0,1664.0,shortest,,,0out_0in,school,107509903 +2622193,escort,1,1,1,2,non_mandatory,1,773,1025,952720,19,6,6,0,,12.840047018957565,SHARED3FREE,-0.7318852867656347,,,,,,,,,0out_0in,escort,107509922 +2622193,othmaint,1,1,2,2,non_mandatory,1,550,1025,952720,61,8,15,7,,12.86750275018236,WALK_TRANSIT,0.3002279969733954,1238.0,1666.0,fastest,1666.0,1238.0,shortest,,,0out_0in,othmaint,107509941 +2622194,shopping,1,1,1,1,non_mandatory,1,989,1025,952720,72,9,11,2,,11.974087902319576,SHARED3FREE,0.5678792550825605,,,,,,,,,0out_0in,shopping,107509987 +2622195,work,1,1,1,1,mandatory,1,1021,1025,952720,63,8,17,9,,,DRIVEALONEFREE,0.8640931880479102,,,,,,,no_subtours,,0out_0in,work,107510034 +2844887,work,1,1,1,1,mandatory,1,845,846,1028031,111,11,23,12,,,WALK_TRANSIT,0.9802398468480144,1730.0,1695.0,shortest,1695.0,1748.0,fastest,no_subtours,,0out_0in,work,116640406 +2933845,school,1,1,1,1,mandatory,1,666,574,1048898,121,12,21,9,,,WALK,-0.0074452524495141,,,,,,,,,0out_0in,school,120287676 +2933846,school,1,1,1,1,mandatory,1,515,574,1048898,62,8,16,8,,,SHARED2FREE,-1.016021399976598,,,,,,,,,0out_0in,school,120287717 +2933847,othdiscr,1,1,1,1,non_mandatory,1,657,574,1048898,42,7,12,5,,13.002449945790438,WALK_TRANSIT,0.8636594074657713,1238.0,1559.0,shortest,1559.0,1238.0,fastest,,,0out_1in,othdiscr,120287752 +2933848,work,1,1,1,1,mandatory,1,502,574,1048898,31,6,18,12,,,WALK_TRANSIT,0.3885773372794716,1333.0,1559.0,fastest,1559.0,1333.0,shortest,no_subtours,,0out_0in,work,120287807 +3216622,school,1,1,1,1,mandatory,1,1074,1076,1148260,136,14,15,1,,,WALK_TRANSIT,10.725339744357893,1500.0,1516.0,fastest,1516.0,1500.0,shortest,,,0out_0in,univ,131881533 diff --git a/activitysim/examples/placeholder_sandag/test/regress/final_3_zone_trips.csv b/activitysim/examples/placeholder_sandag/test/regress/final_3_zone_trips.csv index 8c93f8ec8..48165dcd5 100644 --- a/activitysim/examples/placeholder_sandag/test/regress/final_3_zone_trips.csv +++ b/activitysim/examples/placeholder_sandag/test/regress/final_3_zone_trips.csv @@ -1,183 +1,185 @@ -trip_id,person_id,household_id,primary_purpose,trip_num,outbound,trip_count,destination,origin,tour_id,purpose,destination_logsum,depart,trip_mode,mode_choice_logsum,atap,btap,path_set -10872201,33146,12593,work,1,True,3,350,68,1359025,escort,11.62710514749821,5,DRIVEALONEFREE,-0.3153159028910412,,, -10872202,33146,12593,work,2,True,3,491,350,1359025,escort,12.424454211009824,7,DRIVEALONEFREE,-0.1330752275781039,,, -10872203,33146,12593,work,3,True,3,608,491,1359025,work,,7,DRIVEALONEFREE,0.1534821760951137,,, -10872205,33146,12593,work,1,False,1,68,608,1359025,home,,17,WALK,-0.3102996602636911,,, -10872529,33147,12593,work,1,True,1,578,68,1359066,work,,8,WALK_TRANSIT,2.7167630046939766,1500.0,1558.0,shortest -10872533,33147,12593,work,1,False,2,578,578,1359066,escort,19.372183137979995,15,WALK,2.9941670645943352,,, -10872534,33147,12593,work,2,False,2,68,578,1359066,home,,15,WALK,1.93207085094047,,, -11957177,36454,13797,shopping,1,True,1,233,88,1494647,shopping,,13,DRIVEALONEFREE,0.1611535351527045,,, -11957181,36454,13797,shopping,1,False,2,423,233,1494647,shopping,12.025184457266546,17,TAXI,-0.0282876166283608,,, -11957182,36454,13797,shopping,2,False,2,88,423,1494647,home,,17,DRIVEALONEFREE,0.0612368483543265,,, -11957185,36454,13797,shopping,1,True,2,195,88,1494648,escort,13.40305488007496,18,WALK,0.3896474852723683,,, -11957186,36454,13797,shopping,2,True,2,237,195,1494648,shopping,,18,DRIVEALONEFREE,0.4918839198395139,,, -11957189,36454,13797,shopping,1,False,1,88,237,1494648,home,,18,TAXI,0.2042092214903569,,, -11957441,36455,13797,othdiscr,1,True,1,131,88,1494680,othdiscr,,16,DRIVEALONEFREE,0.1718894334261086,,, -11957445,36455,13797,othdiscr,1,False,3,578,131,1494680,othmaint,12.886372901931878,21,TAXI,-0.1803784427916115,,, -11957446,36455,13797,othdiscr,2,False,3,578,578,1494680,social,14.222827339077435,21,WALK,1.1995504881185008,,, -11957447,36455,13797,othdiscr,3,False,3,88,578,1494680,home,,21,TAXI,0.0855272375513731,,, -11957553,36455,13797,work,1,True,1,70,88,1494694,work,,8,WALK,0.2791473443211477,,, -11957557,36455,13797,work,1,False,1,88,70,1494694,home,,12,WALK,0.2791984027393967,,, -13679289,41705,15777,eatout,1,True,1,578,153,1709911,eatout,,9,WALK_TRANSIT,3.0405322129710664,1500.0,1611.0,fastest -13679293,41705,15777,eatout,1,False,1,153,578,1709911,home,,15,TAXI,1.1068614998173167,,, -13679601,41706,15777,atwork,1,True,1,497,362,1709950,atwork,,12,WALK_TRANSIT,1.7190241715037766,1618.0,1748.0,fastest -13679605,41706,15777,atwork,1,False,1,362,497,1709950,work,,12,SHARED2FREE,1.0527994338149784,,, -13679881,41706,15777,work,1,True,1,362,153,1709985,work,,8,SHARED2FREE,0.5758380783277821,,, -13679885,41706,15777,work,1,False,2,597,362,1709985,escort,14.841057893338451,18,SHARED2FREE,0.4353503862435287,,, -13679886,41706,15777,work,2,False,2,153,597,1709985,home,,19,SHARED2FREE,0.4996880766938729,,, -16411585,50035,18261,eatout,1,True,2,498,265,2051448,shopping,10.05333950335537,16,SHARED3FREE,-0.6138900950914048,,, -16411586,50035,18261,eatout,2,True,2,578,498,2051448,eatout,,17,WALK,-0.1273881390654513,,, -16411589,50035,18261,eatout,1,False,1,265,578,2051448,home,,18,SHARED3FREE,-1.5064572485047776,,, -16411729,50035,18261,school,1,True,1,427,265,2051466,school,,7,SHARED3FREE,0.7485359100139714,,, -16411733,50035,18261,school,1,False,1,265,427,2051466,home,,13,WALK_TRANSIT,0.8841733805272283,1748.0,1618.0,fastest -16411745,50035,18261,shopping,1,True,1,504,265,2051468,shopping,,19,DRIVEALONEFREE,-0.4672462178894699,,, -16411749,50035,18261,shopping,1,False,1,265,504,2051468,home,,19,DRIVEALONEFREE,-0.4597066008562396,,, -16412033,50036,18261,othmaint,1,True,1,385,265,2051504,othmaint,,7,SHARED2FREE,0.8019298221360518,,, -16412037,50036,18261,othmaint,1,False,1,265,385,2051504,home,,14,SHARED2FREE,0.7815669264302088,,, -16412449,50037,18261,work,1,True,1,578,265,2051556,work,,7,SHARED2FREE,2.569476979448462,,, -16412453,50037,18261,work,1,False,1,265,578,2051556,home,,16,WALK_TRANSIT,1.0586461337073116,1651.0,1500.0,fastest -18151113,55338,19758,school,1,True,1,207,302,2268889,school,,7,WALK_TRANSIT,1.3220566998920782,1608.0,1652.0,cheapest -18151117,55338,19758,school,1,False,1,302,207,2268889,home,,10,SHARED2FREE,1.0450588497025504,,, -18151505,55339,19758,work,1,True,1,254,302,2268938,work,,5,DRIVEALONEFREE,0.1112722333894017,,, -18151509,55339,19758,work,1,False,1,302,254,2268938,home,,16,DRIVEALONEFREE,0.1112770043068081,,, -18990529,57897,20552,work,1,True,1,578,337,2373816,work,,7,WALK_TRANSIT,2.167693637863771,1500.0,1754.0,fastest -18990533,57897,20552,work,1,False,1,337,578,2373816,home,,20,SHARED2FREE,0.8134213565684749,,, -18990545,57898,20552,atwork,1,True,2,456,456,2373818,othmaint,6.956302743667657,11,WALK,-0.5725554350319478,,, -18990546,57898,20552,atwork,2,True,2,456,456,2373818,atwork,,11,WALK,-0.5725554350319478,,, -18990549,57898,20552,atwork,1,False,1,456,456,2373818,work,,13,WALK,-0.5725554350319478,,, -18990857,57898,20552,work,1,True,1,456,337,2373857,work,,11,DRIVEALONEFREE,-0.4249793219573366,,, -18990861,57898,20552,work,1,False,2,350,456,2373857,escort,11.522885117323073,17,DRIVEALONEFREE,-0.4224341222895262,,, -18990862,57898,20552,work,2,False,2,337,350,2373857,home,,17,DRIVEALONEFREE,-0.0678724579075491,,, -18991185,57899,20552,work,1,True,1,195,337,2373898,work,,7,WALK,0.497663225159644,,, -18991189,57899,20552,work,1,False,1,337,195,2373898,home,,17,WALK,0.4231764292042089,,, -18991841,57901,20552,work,1,True,1,216,337,2373980,work,,6,DRIVEALONEFREE,-0.2156500818117738,,, -18991845,57901,20552,work,1,False,1,337,216,2373980,home,,17,DRIVEALONEFREE,-0.8860210329051176,,, -18991849,57901,20552,work,1,True,2,195,337,2373981,othmaint,13.258114756000287,19,WALK,1.189890260596198,,, -18991850,57901,20552,work,2,True,2,216,195,2373981,work,,19,SHARED2FREE,0.5495070616058875,,, -18991853,57901,20552,work,1,False,1,337,216,2373981,home,,19,DRIVEALONEFREE,0.2682235453386703,,, -20510417,62531,21869,school,1,True,1,442,408,2563802,school,,20,TAXI,0.9918167280007733,,, -20510421,62531,21869,school,1,False,1,408,442,2563802,home,,20,SHARED3FREE,0.9273027824432368,,, -20510569,62532,21869,escort,1,True,1,155,408,2563821,escort,,6,SHARED2FREE,0.335383128230131,,, -20510573,62532,21869,escort,1,False,1,408,155,2563821,home,,7,DRIVEALONEFREE,0.3214092822815929,,, -20510897,62533,21869,escort,1,True,1,203,408,2563862,escort,,5,SHARED3FREE,0.7146320921116115,,, -20510901,62533,21869,escort,1,False,4,504,203,2563862,shopping,13.905386682389064,6,SHARED3FREE,0.8499729610956421,,, -20510902,62533,21869,escort,2,False,4,73,504,2563862,eatout,14.52262097584395,6,SHARED2FREE,0.5819032445094066,,, -20510903,62533,21869,escort,3,False,4,607,73,2563862,escort,14.887504187131842,6,SHARED3FREE,0.5359149885298558,,, -20510904,62533,21869,escort,4,False,4,408,607,2563862,home,,6,SHARED2FREE,0.8747878537896981,,, -20510905,62533,21869,escort,1,True,1,26,408,2563863,escort,,11,SHARED2FREE,0.403734784317824,,, -20510909,62533,21869,escort,1,False,1,408,26,2563863,home,,11,SHARED3FREE,0.4094721213082503,,, -20510913,62533,21869,escort,1,True,1,352,408,2563864,escort,,14,SHARED2FREE,0.2145990810721203,,, -20510917,62533,21869,escort,1,False,1,408,352,2563864,home,,14,SHARED2FREE,0.2175421651558981,,, -20511025,62533,21869,othdiscr,1,True,1,578,408,2563878,othdiscr,,11,WALK_TRANSIT,3.124262835713407,1500.0,73.0,fastest -20511029,62533,21869,othdiscr,1,False,1,408,578,2563878,home,,12,WALK_TRANSIT,1.320541626578869,73.0,1500.0,fastest -20511401,62534,21869,school,1,True,1,301,408,2563925,school,,8,SHARED3FREE,0.6297085882553292,,, -20511405,62534,21869,school,1,False,1,408,301,2563925,home,,9,SHARED3FREE,0.5963697573192646,,, -22303745,67999,23619,escort,1,True,1,269,481,2787968,escort,,13,DRIVEALONEFREE,0.9471497272884896,,, -22303749,67999,23619,escort,1,False,3,514,269,2787968,eatout,15.292255065772112,13,DRIVEALONEFREE,1.0997559458267394,,, -22303750,67999,23619,escort,2,False,3,496,514,2787968,escort,16.470852149311927,13,DRIVEALONEFREE,0.9919349481465494,,, -22303751,67999,23619,escort,3,False,3,481,496,2787968,home,,13,SHARED2FREE,1.0470193699425838,,, -22303961,67999,23619,social,1,True,1,496,481,2787995,social,,17,WALK,-0.5194290001855648,,, -22303965,67999,23619,social,1,False,1,481,496,2787995,home,,20,WALK,-0.5194329974199648,,, -22304313,68000,23619,work,1,True,2,437,481,2788039,social,22.336188858055703,7,SHARED3FREE,1.245370428774317,,, -22304314,68000,23619,work,2,True,2,578,437,2788039,work,,8,WALK_TRANSIT,3.2620308996092504,1500.0,1717.0,fastest -22304317,68000,23619,work,1,False,1,481,578,2788039,home,,21,WALK_TRANSIT,1.5243469382674963,1588.0,1500.0,fastest -25904705,78977,26897,school,1,True,1,492,589,3238088,school,,7,WALK,1.1991023619246646,,, -25904709,78977,26897,school,1,False,1,589,492,3238088,home,,14,WALK_TRANSIT,1.1320593632124774,1584.0,1618.0,cheapest -25905145,78979,26897,atwork,1,True,1,578,405,3238143,atwork,,9,DRIVEALONEFREE,-0.0496509953086405,,, -25905149,78979,26897,atwork,1,False,1,405,578,3238143,work,,11,DRIVEALONEFREE,-0.0461032274958093,,, -25905425,78979,26897,work,1,True,1,405,589,3238178,work,,7,DRIVEALONEFREE,0.119565485964625,,, -25905429,78979,26897,work,1,False,1,589,405,3238178,home,,18,DRIVEALONEFREE,0.1179742410301269,,, -421021769,1283602,435012,work,1,True,1,586,29,52627721,work,,8,WALK_TRANSIT,1.8021163156603703,1584.0,1608.0,fastest -421021773,1283602,435012,work,1,False,1,29,586,52627721,home,,18,WALK_TRANSIT,0.8450040063014843,1238.0,1584.0,shortest -421108705,1283868,435278,atwork,1,True,1,578,578,52638588,atwork,,12,WALK,2.459897236353819,,, -421108709,1283868,435278,atwork,1,False,1,578,578,52638588,work,,12,WALK,2.459897236353819,,, -421108753,1283868,435278,eatout,1,True,1,578,45,52638594,eatout,,18,WALK_TRANSIT,3.4599905231494112,1500.0,1558.0,shortest -421108757,1283868,435278,eatout,1,False,2,531,578,52638594,shopping,16.971131751329413,21,WALK,2.4125169566233917,,, -421108758,1283868,435278,eatout,2,False,2,45,531,52638594,home,,21,SHARED2FREE,0.9951467720082716,,, -421109017,1283868,435278,work,1,True,1,578,45,52638627,work,,9,WALK_TRANSIT,2.556266300862197,1500.0,1558.0,cheapest -421109021,1283868,435278,work,1,False,1,45,578,52638627,home,,18,WALK,1.4769191108284825,,, -421134601,1283946,435356,work,1,True,1,578,31,52641825,work,,7,WALK_TRANSIT,2.564484302870523,1500.0,1604.0,shortest -421134605,1283946,435356,work,1,False,1,31,578,52641825,home,,19,TNC_SINGLE,1.2220841443471149,,, -421348457,1284598,436008,work,1,True,1,61,70,52668557,work,,9,WALK,0.38649989959854,,, -421348461,1284598,436008,work,1,False,1,70,61,52668557,home,,19,WALK,0.3859946435001655,,, -421878553,1286215,437625,atwork,1,True,1,585,114,52734819,atwork,,10,WALK_TRANSIT,1.081956268867972,1500.0,1562.0,cheapest -421878557,1286215,437625,atwork,1,False,1,114,585,52734819,work,,13,WALK_TRANSIT,1.6218413932594848,1562.0,1500.0,fastest -421878833,1286215,437625,work,1,True,1,114,164,52734854,work,,8,DRIVEALONEFREE,0.0108507049503425,,, -421878837,1286215,437625,work,1,False,3,505,114,52734854,othmaint,11.678285931399188,17,DRIVEALONEFREE,-0.2251500347921951,,, -421878838,1286215,437625,work,2,False,3,238,505,52734854,othmaint,11.653319784580876,19,DRIVEALONEFREE,-0.0918226143933905,,, -421878839,1286215,437625,work,3,False,3,164,238,52734854,home,,19,DRIVEALONEFREE,0.1142972915542419,,, -423180353,1290184,441594,atwork,1,True,1,240,485,52897544,atwork,,11,WALK,1.1616704858421698,,, -423180357,1290184,441594,atwork,1,False,1,485,240,52897544,work,,11,WALK,1.1616704548482053,,, -423180401,1290184,441594,eatout,1,True,1,347,604,52897550,eatout,,21,SHARED2FREE,0.1039931558703346,,, -423180405,1290184,441594,eatout,1,False,2,600,347,52897550,othmaint,13.35678663215775,21,DRIVEALONEFREE,0.1168155383854849,,, -423180406,1290184,441594,eatout,2,False,2,604,600,52897550,home,,21,WALK,0.9240213001163314,,, -423180553,1290184,441594,othdiscr,1,True,1,22,604,52897569,othdiscr,,5,WALK,-0.0748834380443437,,, -423180557,1290184,441594,othdiscr,1,False,1,604,22,52897569,home,,7,TAXI,-0.2702437909392063,,, -423180561,1290184,441594,othdiscr,1,True,1,241,604,52897570,othdiscr,,21,BIKE,-1.0261281159570592,,, -423180565,1290184,441594,othdiscr,1,False,1,604,241,52897570,home,,22,BIKE,-1.0364857021941367,,, -423180569,1290184,441594,othdiscr,1,True,1,161,604,52897571,othdiscr,,23,TAXI,0.93738966972432,,, -423180573,1290184,441594,othdiscr,1,False,2,232,161,52897571,eatout,15.99440404367919,23,SHARED2FREE,1.631333771028581,,, -423180574,1290184,441594,othdiscr,2,False,2,604,232,52897571,home,,23,WALK_TRANSIT,0.5700662414192166,1516.0,1608.0,shortest -423180665,1290184,441594,work,1,True,1,485,604,52897583,work,,9,DRIVEALONEFREE,-0.2074790120685403,,, -423180669,1290184,441594,work,1,False,2,504,485,52897583,shopping,10.648841698636746,20,WALK,0.2135574369121218,,, -423180670,1290184,441594,work,2,False,2,604,504,52897583,home,,21,DRIVEALONEFREE,-0.1688195503141319,,, -423325641,1290626,442036,work,1,True,2,578,608,52915705,work,22.793846679159277,8,WALK_TRANSIT,2.6947489444098363,1500.0,1584.0,cheapest -423325642,1290626,442036,work,2,True,2,578,578,52915705,work,,9,TAXI,2.9785405530718863,,, -423325645,1290626,442036,work,1,False,1,608,578,52915705,home,,18,WALK_TRANSIT,1.5204714046677252,1584.0,1500.0,shortest -611033041,1862905,721960,othdiscr,1,True,1,494,468,76379130,othdiscr,,15,BIKE,-0.0551141326390255,,, -611033045,1862905,721960,othdiscr,1,False,1,468,494,76379130,home,,21,BIKE,-0.0503449080980652,,, -611033369,1862906,721960,othdiscr,1,True,1,500,468,76379171,othdiscr,,11,WALK,-1.4043276286248658,,, -611033373,1862906,721960,othdiscr,1,False,1,468,500,76379171,home,,16,WALK,-1.3842194916923618,,, -647572569,1974306,760593,othdiscr,1,True,1,72,17,80946571,othdiscr,,8,WALK,0.0729983438076541,,, -647572573,1974306,760593,othdiscr,1,False,1,17,72,80946571,home,,16,WALK,0.0730661118420978,,, -647572729,1974307,760593,atwork,1,True,1,324,204,80946591,atwork,,12,SHARED3FREE,2.153561514861549,,, -647572733,1974307,760593,atwork,1,False,1,204,324,80946591,work,,13,SHARED3FREE,2.1604129937838445,,, -647573009,1974307,760593,work,1,True,2,244,17,80946626,shopping,16.850702372805465,9,WALK_TRANSIT,1.2419694217829829,1748.0,1603.0,shortest -647573010,1974307,760593,work,2,True,2,204,244,80946626,work,,10,WALK_TRANSIT,1.6771107500758995,1748.0,1660.0,shortest -647573013,1974307,760593,work,1,False,2,176,204,80946626,work,18.744021387869157,17,WALK_TRANSIT,1.7298767083660849,1333.0,1658.0,shortest -647573014,1974307,760593,work,2,False,2,17,176,80946626,home,,18,SHARED3FREE,1.5876337419644198,,, -647573097,1974308,760593,escort,1,True,1,224,17,80946637,escort,,5,SHARED3FREE,0.8922078793578596,,, -647573101,1974308,760593,escort,1,False,1,17,224,80946637,home,,5,SHARED3FREE,0.8942651098665495,,, -648387521,1976791,761445,escort,1,True,1,483,121,81048440,escort,,13,SHARED2FREE,0.5482474086094538,,, -648387525,1976791,761445,escort,1,False,1,121,483,81048440,home,,13,SHARED2FREE,0.5356122283077811,,, -648388065,1976792,761445,social,1,True,1,494,121,81048508,social,,14,DRIVEALONEFREE,0.4863963073134856,,, -648388069,1976792,761445,social,1,False,1,121,494,81048508,home,,19,TAXI,0.5958102526909501,,, -648388089,1976792,761445,work,1,True,1,25,121,81048511,work,,5,TAXI,1.5879637864872944,,, -648388093,1976792,761445,work,1,False,1,121,25,81048511,home,,12,SHARED2FREE,1.1814737849875496,,, -649042753,1978788,762159,social,1,True,1,271,469,81130344,social,,8,SHARED2FREE,0.3356357191681573,,, -649042757,1978788,762159,social,1,False,1,469,271,81130344,home,,20,SHARED2FREE,0.3505516593935055,,, -649043193,1978790,762159,escort,1,True,1,500,469,81130399,escort,,8,SHARED2FREE,0.5471590891799881,,, -649043197,1978790,762159,escort,1,False,1,469,500,81130399,home,,8,SHARED2FREE,0.5333524059928323,,, -649043433,1978790,762159,work,1,True,1,180,469,81130429,work,,8,DRIVEALONEFREE,-0.3341036694423639,,, -649043437,1978790,762159,work,1,False,1,469,180,81130429,home,,17,DRIVEALONEFREE,-0.3318966430958522,,, -649043761,1978791,762159,work,1,True,1,578,469,81130470,work,,7,WALK_TRANSIT,2.58470148067105,1500.0,1762.0,fastest -649043765,1978791,762159,work,1,False,1,469,578,81130470,home,,17,TAXI,1.0619367021498107,,, -819359665,2498047,922602,school,1,True,1,432,238,102419958,school,,9,TAXI,1.009935909154772,,, -819359669,2498047,922602,school,1,False,1,238,432,102419958,home,,16,SHARED2FREE,1.7812941984342985,,, -819360057,2498048,922602,work,1,True,1,243,238,102420007,work,,7,SHARED3FREE,1.630772738193186,,, -819360061,2498048,922602,work,1,False,1,238,243,102420007,home,,16,WALK_TRANSIT,1.9203484754329128,1612.0,1592.0,shortest -819360385,2498049,922602,work,1,True,1,271,238,102420048,work,,6,WALK,-1.149581787441591,,, -819360389,2498049,922602,work,1,False,1,238,271,102420048,home,,16,WALK,-1.1497709160537464,,, -860079225,2622192,952720,school,1,True,1,501,533,107509903,school,,7,TNC_SINGLE,1.6140702309701105,,, -860079229,2622192,952720,school,1,False,1,533,501,107509903,home,,14,SHARED3FREE,1.5475600453518767,,, -860079377,2622193,952720,escort,1,True,1,281,533,107509922,escort,,6,WALK,-0.5578556373070639,,, -860079381,2622193,952720,escort,1,False,1,533,281,107509922,home,,6,WALK,-0.5573194757596159,,, -860079529,2622193,952720,othmaint,1,True,1,58,533,107509941,othmaint,,8,TAXI,1.632612282318792,,, -860079533,2622193,952720,othmaint,1,False,1,533,58,107509941,home,,15,WALK_TRANSIT,1.504929950475204,1666.0,1238.0,shortest -860079897,2622194,952720,shopping,1,True,1,504,533,107509987,shopping,,9,SHARED3FREE,1.5569490328652331,,, -860079901,2622194,952720,shopping,1,False,1,533,504,107509987,home,,13,SHARED3FREE,1.5615906994764628,,, -860080273,2622195,952720,work,1,True,1,578,533,107510034,work,,8,WALK_TRANSIT,2.753496136291756,1500.0,1666.0,fastest -860080277,2622195,952720,work,1,False,1,533,578,107510034,home,,17,WALK,1.6442514073833965,,, -933123249,2844887,1028031,work,1,True,1,385,354,116640406,work,,11,SHARED3FREE,1.076717359011956,,, -933123253,2844887,1028031,work,1,False,1,354,385,116640406,home,,20,SHARED2FREE,1.076810290051006,,, -962301409,2933845,1048898,school,1,True,1,197,82,120287676,school,,12,WALK_TRANSIT,1.28199080402723,1608.0,1559.0,fastest -962301413,2933845,1048898,school,1,False,1,82,197,120287676,home,,21,WALK_TRANSIT,1.089904965843972,1559.0,1608.0,cheapest -962301737,2933846,1048898,school,1,True,1,23,82,120287717,school,,8,SHARED2FREE,-2.124600564910897,,, -962301741,2933846,1048898,school,1,False,1,82,23,120287717,home,,16,SHARED2FREE,-2.1298532205579024,,, -962302017,2933847,1048898,othdiscr,1,True,1,165,82,120287752,othdiscr,,7,WALK_TRANSIT,1.3340675832011153,1238.0,1559.0,cheapest -962302021,2933847,1048898,othdiscr,1,False,2,578,165,120287752,eatout,16.449525883467185,12,WALK_TRANSIT,3.482863279857927,3.0,1238.0,shortest -962302022,2933847,1048898,othdiscr,2,False,2,82,578,120287752,home,,12,WALK_TRANSIT,1.1970215357429652,1559.0,1500.0,fastest -962302457,2933848,1048898,work,1,True,1,10,82,120287807,work,,6,WALK_TRANSIT,1.075493937379867,1333.0,1559.0,fastest -962302461,2933848,1048898,work,1,False,1,82,10,120287807,home,,18,TAXI,1.0317861580544103,,, -1055052265,3216622,1148260,univ,1,True,1,582,584,131881533,univ,,14,TAXI,0.8904812765761871,,, -1055052269,3216622,1148260,univ,1,False,1,584,582,131881533,home,,15,WALK,0.8480171082358124,,, +person_id,household_id,primary_purpose,trip_num,outbound,trip_count,destination,origin,tour_id,purpose,destination_logsum,depart,trip_mode,mode_choice_logsum,atap,btap,path_set,trip_id +33146,12593,work,1,True,3,879,560,1359025,escort,11.70885284520791,5,DRIVEALONEFREE,-0.3548746577733072,,,,10872201 +33146,12593,work,2,True,3,989,879,1359025,escort,12.022433281644073,7,DRIVEALONEFREE,-0.361684345054043,,,,10872202 +33146,12593,work,3,True,3,1100,989,1359025,work,,7,DRIVEALONEFREE,0.1801428827020189,,,,10872203 +33146,12593,work,1,False,1,560,1100,1359025,home,,17,DRIVEALONEFREE,-0.368339088809198,,,,10872205 +33147,12593,work,1,True,1,1070,560,1359066,work,,8,WALK_TRANSIT,2.7167630046939766,1500.0,1558.0,shortest,10872529 +33147,12593,work,1,False,2,909,1070,1359066,escort,18.76869362022653,15,SHARED2FREE,1.3303021092897034,,,,10872533 +33147,12593,work,2,False,2,560,909,1359066,home,,15,SHARED2FREE,1.1209924956902448,,,,10872534 +36454,13797,shopping,1,True,1,725,580,1494647,shopping,,13,DRIVEALONEFREE,0.1717448995480592,,,,11957177 +36454,13797,shopping,1,False,2,803,725,1494647,shopping,12.016029658018422,17,TAXI,0.0352267728440656,,,,11957181 +36454,13797,shopping,2,False,2,580,803,1494647,home,,17,DRIVEALONEFREE,0.07359791064631,,,,11957182 +36454,13797,shopping,1,True,2,687,580,1494648,escort,13.593599471819292,18,WALK,0.7788942047635835,,,,11957185 +36454,13797,shopping,2,True,2,729,687,1494648,shopping,,18,DRIVEALONEFREE,0.489210171281661,,,,11957186 +36454,13797,shopping,1,False,1,580,729,1494648,home,,18,TAXI,0.2313076964301194,,,,11957189 +36455,13797,othdiscr,1,True,1,623,580,1494680,othdiscr,,16,DRIVEALONEFREE,0.7744647479734814,,,,11957441 +36455,13797,othdiscr,1,False,3,784,623,1494680,othmaint,15.224351954248831,21,SHARED2FREE,0.6723499661375587,,,,11957445 +36455,13797,othdiscr,2,False,3,687,784,1494680,social,14.665238994089853,21,SHARED2FREE,0.8916379345159234,,,,11957446 +36455,13797,othdiscr,3,False,3,580,687,1494680,home,,21,WALK,1.6583917720273251,,,,11957447 +36455,13797,work,1,True,1,562,580,1494694,work,,8,WALK,1.0769131864309256,,,,11957553 +36455,13797,work,1,False,1,580,562,1494694,home,,12,SHARED3FREE,1.1126409173456748,,,,11957557 +41705,15777,eatout,1,True,1,1070,645,1709911,eatout,,9,WALK_TRANSIT,3.0405322129710664,1500.0,1611.0,fastest,13679289 +41705,15777,eatout,1,False,1,645,1070,1709911,home,,15,TAXI,1.0589757414053866,,,,13679293 +41706,15777,atwork,1,True,1,989,854,1709950,atwork,,12,WALK_TRANSIT,1.744638602675838,1618.0,1748.0,fastest,13679601 +41706,15777,atwork,1,False,1,854,989,1709950,work,,12,SHARED2FREE,1.1051431249206285,,,,13679605 +41706,15777,work,1,True,1,854,645,1709985,work,,8,SHARED2FREE,0.484767983512682,,,,13679881 +41706,15777,work,1,False,2,1080,854,1709985,escort,14.795756318103102,18,SHARED2FREE,0.4510582957043532,,,,13679885 +41706,15777,work,2,False,2,645,1080,1709985,home,,19,SHARED2FREE,0.4925057974553318,,,,13679886 +50035,18261,eatout,1,True,2,897,757,2051448,shopping,9.84722541528066,16,SHARED3FREE,-0.8214696655451806,,,,16411585 +50035,18261,eatout,2,True,2,1070,897,2051448,eatout,,17,WALK,0.1729919081975451,,,,16411586 +50035,18261,eatout,1,False,1,757,1070,2051448,home,,18,SHARED3FREE,-1.5064572485047776,,,,16411589 +50035,18261,school,1,True,1,919,757,2051466,school,,7,SHARED3FREE,0.7485359100139714,,,,16411729 +50035,18261,school,1,False,1,757,919,2051466,home,,13,WALK_TRANSIT,0.8841733805272283,1748.0,1618.0,fastest,16411733 +50035,18261,shopping,1,True,1,996,757,2051468,shopping,,19,DRIVEALONEFREE,-0.4672462178894699,,,,16411745 +50035,18261,shopping,1,False,1,757,996,2051468,home,,19,DRIVEALONEFREE,-0.4597066008562396,,,,16411749 +50036,18261,othmaint,1,True,1,877,757,2051504,othmaint,,7,SHARED2FREE,0.8103017184288349,,,,16412033 +50036,18261,othmaint,1,False,1,757,877,2051504,home,,14,SHARED2FREE,0.7939513107930013,,,,16412037 +50037,18261,work,1,True,1,1070,757,2051556,work,,7,SHARED2FREE,2.569476979448462,,,,16412449 +50037,18261,work,1,False,1,757,1070,2051556,home,,16,WALK_TRANSIT,1.0586461337073116,1651.0,1500.0,fastest,16412453 +55338,19758,school,1,True,1,699,794,2268889,school,,7,WALK_TRANSIT,1.2437700951912316,1608.0,1652.0,cheapest,18151113 +55338,19758,school,1,False,1,794,699,2268889,home,,10,SHARED2FREE,0.9734243621086656,,,,18151117 +55339,19758,work,1,True,1,762,794,2268938,work,,5,DRIVEALONEFREE,-0.0975185793139585,,,,18151505 +55339,19758,work,1,False,1,794,762,2268938,home,,16,DRIVEALONEFREE,-0.0075877722519422,,,,18151509 +57897,20552,work,1,True,1,1070,829,2373816,work,,7,WALK_TRANSIT,2.167693637863771,1500.0,1754.0,fastest,18990529 +57897,20552,work,1,False,1,829,1070,2373816,home,,20,SHARED2FREE,0.8134213565684749,,,,18990533 +57898,20552,atwork,1,True,2,948,948,2373818,othmaint,7.505984009752515,11,WALK,-0.4339456610259058,,,,18990545 +57898,20552,atwork,2,True,2,948,948,2373818,atwork,,11,WALK,-0.4339456610259058,,,,18990546 +57898,20552,atwork,1,False,1,948,948,2373818,work,,13,WALK,-0.4339456610259058,,,,18990549 +57898,20552,work,1,True,1,948,829,2373857,work,,11,DRIVEALONEFREE,-0.4249793219573366,,,,18990857 +57898,20552,work,1,False,2,739,948,2373857,escort,11.536722530937924,17,DRIVEALONEFREE,-0.4351552970051177,,,,18990861 +57898,20552,work,2,False,2,829,739,2373857,home,,17,DRIVEALONEFREE,-0.0991454272062134,,,,18990862 +57899,20552,work,1,True,1,687,829,2373898,work,,7,WALK,0.5220452718494769,,,,18991185 +57899,20552,work,1,False,1,829,687,2373898,home,,17,WALK,0.6195549538462863,,,,18991189 +57901,20552,work,1,True,1,708,829,2373980,work,,6,DRIVEALONEFREE,-0.2156500818117738,,,,18991841 +57901,20552,work,1,False,1,829,708,2373980,home,,17,DRIVEALONEFREE,-0.8860210329051176,,,,18991845 +57901,20552,work,1,True,2,687,829,2373981,othmaint,13.312507041737812,19,WALK,1.203803918419165,,,,18991849 +57901,20552,work,2,True,2,708,687,2373981,work,,19,SHARED2FREE,0.5575710262749435,,,,18991850 +57901,20552,work,1,False,1,829,708,2373981,home,,19,DRIVEALONEFREE,0.2682235453386703,,,,18991853 +62531,21869,school,1,True,1,938,900,2563802,school,,20,TAXI,0.9896882699261176,,,,20510417 +62531,21869,school,1,False,1,900,938,2563802,home,,20,SHARED3FREE,0.9332356383119612,,,,20510421 +62532,21869,escort,1,True,1,647,900,2563821,escort,,6,SHARED2FREE,0.335383128230131,,,,20510569 +62532,21869,escort,1,False,1,900,647,2563821,home,,7,DRIVEALONEFREE,0.3214092822815929,,,,20510573 +62533,21869,escort,1,True,1,695,900,2563862,escort,,5,SHARED3FREE,0.7146320921116115,,,,20510897 +62533,21869,escort,1,False,4,996,695,2563862,shopping,13.9010789936427,6,SHARED3FREE,0.8524136187385734,,,,20510901 +62533,21869,escort,2,False,4,565,996,2563862,eatout,14.39637292108163,6,SHARED2FREE,0.5414028775934869,,,,20510902 +62533,21869,escort,3,False,4,1099,565,2563862,escort,14.873416692380914,6,SHARED3FREE,0.5359149885298558,,,,20510903 +62533,21869,escort,4,False,4,900,1099,2563862,home,,6,SHARED2FREE,0.8757485870243559,,,,20510904 +62533,21869,escort,1,True,1,518,900,2563863,escort,,11,SHARED2FREE,0.403734784317824,,,,20510905 +62533,21869,escort,1,False,1,900,518,2563863,home,,11,SHARED3FREE,0.4094721213082503,,,,20510909 +62533,21869,escort,1,True,1,844,900,2563864,escort,,14,SHARED2FREE,0.2145990810721203,,,,20510913 +62533,21869,escort,1,False,1,900,844,2563864,home,,14,SHARED2FREE,0.2175421651558981,,,,20510917 +62533,21869,othdiscr,1,True,1,1070,900,2563878,othdiscr,,11,WALK_TRANSIT,3.105130323985956,1500.0,73.0,fastest,20511025 +62533,21869,othdiscr,1,False,1,900,1070,2563878,home,,12,WALK_TRANSIT,1.157154797772182,73.0,1500.0,fastest,20511029 +62534,21869,school,1,True,1,793,900,2563925,school,,8,SHARED3FREE,0.6297085882553292,,,,20511401 +62534,21869,school,1,False,1,900,793,2563925,home,,9,SHARED3FREE,0.5963697573192646,,,,20511405 +67999,23619,escort,1,True,1,767,973,2787968,escort,,13,DRIVEALONEFREE,0.890462913926255,,,,22303745 +67999,23619,escort,1,False,3,1023,767,2787968,eatout,15.21145768299369,13,DRIVEALONEFREE,0.9380038576909148,,,,22303749 +67999,23619,escort,2,False,3,993,1023,2787968,escort,16.38782485475755,13,DRIVEALONEFREE,1.1641324346709314,,,,22303750 +67999,23619,escort,3,False,3,973,993,2787968,home,,13,SHARED3FREE,1.1940117377263124,,,,22303751 +67999,23619,social,1,True,1,988,973,2787995,social,,17,WALK,-0.5648561131494263,,,,22303961 +67999,23619,social,1,False,1,973,988,2787995,home,,20,WALK,-0.532826088016878,,,,22303965 +68000,23619,work,1,True,2,929,973,2788039,social,22.32425539722021,7,SHARED3FREE,1.2410412266329416,,,,22304313 +68000,23619,work,2,True,2,1070,929,2788039,work,,8,WALK_TRANSIT,3.2620308996092504,1500.0,1717.0,fastest,22304314 +68000,23619,work,1,False,1,973,1070,2788039,home,,21,WALK_TRANSIT,1.5243469382674963,1588.0,1500.0,fastest,22304317 +78977,26897,school,1,True,1,984,1081,3238088,school,,7,WALK,-0.4961040893656598,,,,25904705 +78977,26897,school,1,False,1,1081,984,3238088,home,,14,WALK,-0.4863570793073567,,,,25904709 +78979,26897,atwork,1,True,1,1070,897,3238143,atwork,,9,DRIVEALONEFREE,-0.0790579016887315,,,,25905145 +78979,26897,atwork,1,False,1,897,1070,3238143,work,,11,DRIVEALONEFREE,0.0896991164812165,,,,25905149 +78979,26897,work,1,True,1,897,1081,3238178,work,,7,DRIVEALONEFREE,0.0543705077473041,,,,25905425 +78979,26897,work,1,False,1,1081,897,3238178,home,,18,DRIVEALONEFREE,0.2237278343269858,,,,25905429 +1283602,435012,work,1,True,1,1078,521,52627721,work,,8,WALK_TRANSIT,1.8021163156603703,1584.0,1608.0,fastest,421021769 +1283602,435012,work,1,False,1,521,1078,52627721,home,,18,WALK_TRANSIT,0.6837263082555999,1238.0,1584.0,shortest,421021773 +1283868,435278,atwork,1,True,1,1070,1070,52638588,atwork,,12,WALK,2.4750620100011926,,,,421108705 +1283868,435278,atwork,1,False,1,1070,1070,52638588,work,,12,WALK,2.4750620100011926,,,,421108709 +1283868,435278,eatout,1,True,1,1070,537,52638594,eatout,,18,WALK_TRANSIT,3.4599905231494112,1500.0,1558.0,shortest,421108753 +1283868,435278,eatout,1,False,2,1023,1070,52638594,shopping,16.211897411935006,21,WALK_TRANSIT,1.894666699296724,1664.0,1500.0,cheapest,421108757 +1283868,435278,eatout,2,False,2,537,1023,52638594,home,,21,SHARED2FREE,0.481405926458176,,,,421108758 +1283868,435278,work,1,True,1,1070,537,52638627,work,,9,WALK_TRANSIT,2.556266300862197,1500.0,1558.0,cheapest,421109017 +1283868,435278,work,1,False,1,537,1070,52638627,home,,18,SHARED3FREE,0.9987470907812958,,,,421109021 +1283946,435356,work,1,True,1,1070,523,52641825,work,,7,WALK_TRANSIT,2.564484302870523,1500.0,1604.0,shortest,421134601 +1283946,435356,work,1,False,1,523,1070,52641825,home,,19,TNC_SINGLE,1.0882426323388463,,,,421134605 +1284598,436008,work,1,True,1,553,562,52668557,work,,9,WALK,0.3477587678510122,,,,421348457 +1284598,436008,work,1,False,1,562,553,52668557,home,,19,WALK,0.3521744962789443,,,,421348461 +1286215,437625,atwork,1,True,1,1077,606,52734819,atwork,,10,WALK_TRANSIT,1.081956268867972,1500.0,1562.0,cheapest,421878553 +1286215,437625,atwork,1,False,1,606,1077,52734819,work,,13,WALK_TRANSIT,1.6200392862281745,1562.0,1500.0,fastest,421878557 +1286215,437625,work,1,True,1,606,656,52734854,work,,8,DRIVEALONEFREE,0.1102478757651215,,,,421878833 +1286215,437625,work,1,False,3,934,606,52734854,othmaint,11.66765616556947,17,DRIVEALONEFREE,-0.3317318054812608,,,,421878837 +1286215,437625,work,2,False,3,730,934,52734854,othmaint,11.283765093022993,19,DRIVEALONEFREE,-0.1643308499157778,,,,421878838 +1286215,437625,work,3,False,3,656,730,52734854,home,,19,DRIVEALONEFREE,0.0934059914274113,,,,421878839 +1290184,441594,atwork,1,True,1,732,977,52897544,atwork,,11,WALK,2.454959930326644,,,,423180353 +1290184,441594,atwork,1,False,1,977,732,52897544,work,,11,SHARED2FREE,2.474151530078552,,,,423180357 +1290184,441594,eatout,1,True,1,949,1096,52897550,eatout,,21,SHARED2FREE,0.0292772650529429,,,,423180401 +1290184,441594,eatout,1,False,2,1070,949,52897550,othmaint,13.725541816697769,21,DRIVEALONEFREE,-0.5109700761493449,,,,423180405 +1290184,441594,eatout,2,False,2,1096,1070,52897550,home,,21,WALK,1.478188695251212,,,,423180406 +1290184,441594,othdiscr,1,True,1,684,1096,52897569,othdiscr,,5,DRIVEALONEFREE,-0.0552559508415055,,,,423180553 +1290184,441594,othdiscr,1,False,1,1096,684,52897569,home,,7,TAXI,-0.0112939168809909,,,,423180557 +1290184,441594,othdiscr,1,True,1,762,1096,52897570,othdiscr,,21,WALK_TRANSIT,1.6714757713025346,1748.0,1516.0,fastest,423180561 +1290184,441594,othdiscr,1,False,1,1096,762,52897570,home,,22,SHARED2FREE,0.7128678537533746,,,,423180565 +1290184,441594,othdiscr,1,True,1,725,1096,52897571,othdiscr,,23,WALK,-3.2668547335399403,,,,423180569 +1290184,441594,othdiscr,1,False,1,1096,725,52897571,home,,23,WALK,-3.2660886555615467,,,,423180573 +1290184,441594,work,1,True,1,977,1096,52897583,work,,9,DRIVEALONEFREE,-0.1968641598702008,,,,423180665 +1290184,441594,work,1,False,2,996,977,52897583,shopping,10.57412967355008,20,WALK,0.2087211377734316,,,,423180669 +1290184,441594,work,2,False,2,1096,996,52897583,home,,21,DRIVEALONEFREE,-0.1682790295025423,,,,423180670 +1290626,442036,work,1,True,2,1070,1100,52915705,work,22.736072255128843,8,WALK_TRANSIT,2.680723362376414,1500.0,1584.0,cheapest,423325641 +1290626,442036,work,2,True,2,1070,1070,52915705,work,,9,TAXI,2.982966369402809,,,,423325642 +1290626,442036,work,1,False,1,1100,1070,52915705,home,,18,WALK_TRANSIT,1.487658539961561,1584.0,1500.0,shortest,423325645 +1862905,721960,othdiscr,1,True,1,986,960,76379130,othdiscr,,15,WALK_TRANSIT,1.2392000497595896,1618.0,1762.0,shortest,611033041 +1862905,721960,othdiscr,1,False,1,960,986,76379130,home,,21,TAXI,1.030043298269935,,,,611033045 +1862906,721960,othdiscr,1,True,1,992,960,76379171,othdiscr,,11,SHARED3FREE,0.8858713264739554,,,,611033369 +1862906,721960,othdiscr,1,False,2,551,992,76379171,eatout,14.365988124910029,16,DRIVEALONEFREE,0.6551993708892542,,,,611033373 +1862906,721960,othdiscr,2,False,2,960,551,76379171,home,,16,SHARED2FREE,0.5117735347645973,,,,611033374 +1974306,760593,othdiscr,1,True,1,564,509,80946571,othdiscr,,8,WALK,0.1247752862685705,,,,647572569 +1974306,760593,othdiscr,1,False,1,509,564,80946571,home,,16,WALK,0.116845013634565,,,,647572573 +1974307,760593,atwork,1,True,1,913,739,80946591,atwork,,12,SHARED3FREE,2.326963701825421,,,,647572729 +1974307,760593,atwork,1,False,1,739,913,80946591,work,,13,SHARED3FREE,2.32846863119764,,,,647572733 +1974307,760593,work,1,True,2,746,509,80946626,shopping,17.72989652110887,9,WALK_TRANSIT,1.3491672588128374,1748.0,1603.0,shortest,647573009 +1974307,760593,work,2,True,2,739,746,80946626,work,,10,WALK_TRANSIT,1.938843261360648,1662.0,1748.0,shortest,647573010 +1974307,760593,work,1,False,2,560,739,80946626,work,18.21874805037896,17,WALK_TRANSIT,1.6522805849156224,1558.0,1748.0,shortest,647573013 +1974307,760593,work,2,False,2,509,560,80946626,home,,18,SHARED3FREE,1.442812477343081,,,,647573014 +1974308,760593,escort,1,True,1,716,509,80946637,escort,,5,SHARED3FREE,0.8908384736539703,,,,647573097 +1974308,760593,escort,1,False,1,509,716,80946637,home,,5,SHARED3FREE,0.8921116412562625,,,,647573101 +1976791,761445,escort,1,True,1,908,613,81048440,escort,,13,SHARED2FREE,0.431874605975145,,,,648387521 +1976791,761445,escort,1,False,1,613,908,81048440,home,,13,SHARED2FREE,0.4276938639754877,,,,648387525 +1976792,761445,atwork,1,True,1,517,517,81048476,atwork,,9,WALK,3.011532825794776,,,,648387809 +1976792,761445,atwork,1,False,1,517,517,81048476,work,,9,WALK,3.011532825794776,,,,648387813 +1976792,761445,eatout,1,True,1,648,613,81048478,eatout,,13,DRIVEALONEFREE,0.4724646811902892,,,,648387825 +1976792,761445,eatout,1,False,1,613,648,81048478,home,,19,TAXI,0.5571365851477499,,,,648387829 +1976792,761445,work,1,True,1,517,613,81048511,work,,5,TAXI,1.5969608894805951,,,,648388089 +1976792,761445,work,1,False,1,613,517,81048511,home,,12,SHARED2FREE,1.19217144041821,,,,648388093 +1978788,762159,social,1,True,1,763,961,81130344,social,,8,SHARED2FREE,0.3356357191681573,,,,649042753 +1978788,762159,social,1,False,1,961,763,81130344,home,,20,SHARED2FREE,0.3505516593935055,,,,649042757 +1978790,762159,escort,1,True,1,992,961,81130399,escort,,8,SHARED2FREE,0.5305214939922914,,,,649043193 +1978790,762159,escort,1,False,1,961,992,81130399,home,,8,SHARED2FREE,0.5188517472186277,,,,649043197 +1978790,762159,work,1,True,1,672,961,81130429,work,,8,DRIVEALONEFREE,-0.3341036694423639,,,,649043433 +1978790,762159,work,1,False,1,961,672,81130429,home,,17,DRIVEALONEFREE,-0.3318966430958522,,,,649043437 +1978791,762159,work,1,True,1,1070,961,81130470,work,,7,WALK_TRANSIT,2.58470148067105,1500.0,1762.0,fastest,649043761 +1978791,762159,work,1,False,1,961,1070,81130470,home,,17,TAXI,1.0619367021498107,,,,649043765 +2498047,922602,school,1,True,1,865,730,102419958,school,,9,TAXI,1.1163475417962474,,,,819359665 +2498047,922602,school,1,False,1,730,865,102419958,home,,16,SHARED2FREE,1.8016199836098328,,,,819359669 +2498048,922602,work,1,True,1,735,730,102420007,work,,7,SHARED3FREE,1.5809126110190068,,,,819360057 +2498048,922602,work,1,False,1,730,735,102420007,home,,16,WALK_TRANSIT,1.880736952455109,1612.0,1592.0,shortest,819360061 +2498049,922602,work,1,True,1,763,730,102420048,work,,6,WALK,-0.7841986127882443,,,,819360385 +2498049,922602,work,1,False,1,730,763,102420048,home,,16,WALK,-0.8403247829423018,,,,819360389 +2622192,952720,school,1,True,1,995,1025,107509903,school,,7,TNC_SINGLE,1.6419964172015382,,,,860079225 +2622192,952720,school,1,False,1,1025,995,107509903,home,,14,SHARED3FREE,1.5389530621520078,,,,860079229 +2622193,952720,escort,1,True,1,773,1025,107509922,escort,,6,SHARED3FREE,0.9453815876415104,,,,860079377 +2622193,952720,escort,1,False,1,1025,773,107509922,home,,6,SHARED2FREE,0.9690872179986346,,,,860079381 +2622193,952720,othmaint,1,True,1,550,1025,107509941,othmaint,,8,TAXI,1.500097483373683,,,,860079529 +2622193,952720,othmaint,1,False,1,1025,550,107509941,home,,15,WALK_TRANSIT,1.504929950475204,1666.0,1238.0,shortest,860079533 +2622194,952720,shopping,1,True,1,989,1025,107509987,shopping,,9,WALK,1.6280881165461685,,,,860079897 +2622194,952720,shopping,1,False,1,1025,989,107509987,home,,11,SHARED3FREE,1.5894514263370938,,,,860079901 +2622195,952720,work,1,True,1,1021,1025,107510034,work,,8,DRIVEALONEFREE,0.1307608725915786,,,,860080273 +2622195,952720,work,1,False,1,1025,1021,107510034,home,,17,DRIVEALONEFREE,0.1511979688414838,,,,860080277 +2844887,1028031,work,1,True,1,845,846,116640406,work,,11,WALK,1.405897637665538,,,,933123249 +2844887,1028031,work,1,False,1,846,845,116640406,home,,23,SHARED2FREE,1.3490304072755472,,,,933123253 +2933845,1048898,school,1,True,1,666,574,120287676,school,,12,WALK,-1.1062441750768537,,,,962301409 +2933845,1048898,school,1,False,1,574,666,120287676,home,,21,WALK,-1.227339677708164,,,,962301413 +2933846,1048898,school,1,True,1,515,574,120287717,school,,8,SHARED2FREE,-2.095040038174043,,,,962301737 +2933846,1048898,school,1,False,1,574,515,120287717,home,,16,SHARED2FREE,-2.102822435414125,,,,962301741 +2933847,1048898,othdiscr,1,True,1,657,574,120287752,othdiscr,,7,WALK_TRANSIT,1.341656840196758,1238.0,1559.0,cheapest,962302017 +2933847,1048898,othdiscr,1,False,2,1070,657,120287752,eatout,16.215971752056717,12,WALK_TRANSIT,3.482863279857927,3.0,1238.0,shortest,962302021 +2933847,1048898,othdiscr,2,False,2,574,1070,120287752,home,,12,WALK_TRANSIT,0.9522919082686396,1559.0,1500.0,fastest,962302022 +2933848,1048898,work,1,True,1,502,574,120287807,work,,6,WALK_TRANSIT,1.0919479644277714,1333.0,1559.0,fastest,962302457 +2933848,1048898,work,1,False,1,574,502,120287807,home,,18,WALK_TRANSIT,1.0565178398416113,1559.0,1333.0,shortest,962302461 +3216622,1148260,univ,1,True,1,1074,1076,131881533,univ,,14,TAXI,0.8326272536348395,,,,1055052265 +3216622,1148260,univ,1,False,1,1076,1074,131881533,home,,15,WALK,0.7538832012716944,,,,1055052269 diff --git a/activitysim/examples/placeholder_sandag/test/test_sandag.py b/activitysim/examples/placeholder_sandag/test/test_sandag.py index 8619b8a54..32e18ff1c 100644 --- a/activitysim/examples/placeholder_sandag/test/test_sandag.py +++ b/activitysim/examples/placeholder_sandag/test/test_sandag.py @@ -1,21 +1,18 @@ +from __future__ import annotations + # ActivitySim # See full license in LICENSE.txt. import os import shutil import subprocess import sys +from pathlib import Path import pandas as pd -import pandas.testing as pdt import pkg_resources import pytest -from activitysim.core import inject - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +from activitysim.core import configuration, test, workflow def example_path(dirname): @@ -45,7 +42,7 @@ def data(): build_data() -def run_test(zone, multiprocess=False, sharrow=False): +def run_test(zone, multiprocess=False, sharrow=False, recode=True): def test_path(dirname): return os.path.join(os.path.dirname(__file__), dirname) @@ -67,7 +64,7 @@ def regress(zone): test_path(f"regress/final_{zone}_zone_tours_last_run.csv"), index=False ) print("regress tours") - pdt.assert_frame_equal( + test.assert_frame_substantively_equal( tours_df, regress_tours_df, rtol=1e-03, check_dtype=False ) @@ -87,7 +84,7 @@ def regress(zone): test_path(f"regress/final_{zone}_zone_trips_last_run.csv"), index=False ) print("regress trips") - pdt.assert_frame_equal( + test.assert_frame_substantively_equal( trips_df, regress_trips_df, rtol=1e-03, check_dtype=False ) @@ -110,7 +107,11 @@ def regress(zone): if not c.startswith("_original_") ] ] - pdt.assert_frame_equal(final_accessibility_df, regress_accessibility_df) + test.assert_frame_substantively_equal( + final_accessibility_df, + regress_accessibility_df, + check_dtype=False, + ) # run test file_path = os.path.join(os.path.dirname(__file__), "simulation.py") @@ -135,6 +136,8 @@ def regress(zone): if multiprocess: run_args = run_args + ["-s", "settings_mp.yaml"] + elif not recode: + run_args = run_args + ["-s", "settings_no_recode.yaml"] if sharrow: run_args = ["-c", test_path(f"configs_{zone}_sharrow")] + run_args @@ -193,6 +196,10 @@ def test_2_zone(data): run_test(zone="2", multiprocess=False) +def test_2_zone_norecode(data): + run_test(zone="2", multiprocess=False, recode=False) + + def test_2_zone_mp(data): run_test(zone="2", multiprocess=True) @@ -219,6 +226,94 @@ def test_3_zone_sharrow(data): run_test(zone="3", multiprocess=True, sharrow=True) +EXPECTED_MODELS_3_ZONE = [ + "initialize_landuse", + "initialize_households", + "compute_accessibility", + "initialize_los", + "initialize_tvpb", + "school_location", + "workplace_location", + "auto_ownership_simulate", + "free_parking", + "cdap_simulate", + "mandatory_tour_frequency", + "mandatory_tour_scheduling", + "joint_tour_frequency", + "joint_tour_composition", + "joint_tour_participation", + "joint_tour_destination", + "joint_tour_scheduling", + "non_mandatory_tour_frequency", + "non_mandatory_tour_destination", + "non_mandatory_tour_scheduling", + "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", + "write_data_dictionary", + "track_skim_usage", + "write_trip_matrices", + "write_tables", +] + + +@test.run_if_exists("placeholder_sandag_3_zone_reference_pipeline.zip") +def test_3_zone_progressive(): + import activitysim.abm # register components + + state = workflow.create_example( + "placeholder_sandag_3_zone", directory="/tmp/placeholder_sandag_3_zone" + ) + + assert state.settings.models == EXPECTED_MODELS_3_ZONE + assert state.settings.chunk_size == 0 + assert state.settings.sharrow == False + + state.settings.recode_pipeline_columns = True + state.settings.treat_warnings_as_errors = False + state.settings.households_sample_size = 30 + state.settings.use_shadow_pricing = False + state.settings.want_dest_choice_sample_tables = False + state.settings.want_dest_choice_presampling = True + state.settings.cleanup_pipeline_after_run = True + state.settings.output_tables = configuration.OutputTables( + h5_store=False, + action="include", + prefix="final_3_zone_", + sort=True, + tables=["trips", "tours"], + ) + from activitysim.abm.tables.skims import network_los_preload + + state.get(network_los_preload) + state.network_settings.read_skim_cache = False + state.network_settings.write_skim_cache = False + state.network_settings.rebuild_tvpb_cache = False + + for step_name in EXPECTED_MODELS_3_ZONE: + state.run.by_name(step_name) + try: + state.checkpoint.check_against( + Path(__file__).parent.joinpath( + "placeholder_sandag_3_zone_reference_pipeline.zip" + ), + checkpoint_name=step_name, + ) + except Exception: + print(f"> placeholder_sandag_3_zone {step_name}: ERROR") + raise + else: + print(f"> placeholder_sandag_3_zone {step_name}: ok") + + if __name__ == "__main__": # call each test explicitly so we get a pass/fail for each diff --git a/activitysim/examples/prototype_semcog/.gitignore b/activitysim/examples/production_semcog/.gitignore similarity index 55% rename from activitysim/examples/prototype_semcog/.gitignore rename to activitysim/examples/production_semcog/.gitignore index 443919a09..c80916134 100644 --- a/activitysim/examples/prototype_semcog/.gitignore +++ b/activitysim/examples/production_semcog/.gitignore @@ -1,2 +1 @@ -data_*/ output_*/ diff --git a/activitysim/examples/prototype_semcog/README.MD b/activitysim/examples/production_semcog/README.MD similarity index 100% rename from activitysim/examples/prototype_semcog/README.MD rename to activitysim/examples/production_semcog/README.MD diff --git a/activitysim/examples/prototype_semcog/configs/_dummy_coefficients.csv b/activitysim/examples/production_semcog/configs/_dummy_coefficients.csv similarity index 100% rename from activitysim/examples/prototype_semcog/configs/_dummy_coefficients.csv rename to activitysim/examples/production_semcog/configs/_dummy_coefficients.csv diff --git a/activitysim/examples/prototype_semcog/configs/accessibility.csv b/activitysim/examples/production_semcog/configs/accessibility.csv old mode 100755 new mode 100644 similarity index 99% rename from activitysim/examples/prototype_semcog/configs/accessibility.csv rename to activitysim/examples/production_semcog/configs/accessibility.csv index 37558cf5d..043dabb5d --- a/activitysim/examples/prototype_semcog/configs/accessibility.csv +++ b/activitysim/examples/production_semcog/configs/accessibility.csv @@ -31,6 +31,7 @@ round trip path is available,_rt_available,(_trPkTime_od > 0) & (_trPkTime_do > decay function,_decay,_rt_available * exp(_trPkTime * dispersion_parameter_transit) transit peak retail,trPkRetail,df.e05_retail * _decay transit peak total,trPkTotal,df.tot_emp * _decay +,trPKHH,df.tot_hhs * _decay #,, #,, transit off-peak #,, diff --git a/activitysim/examples/prototype_semcog/configs/accessibility.yaml b/activitysim/examples/production_semcog/configs/accessibility.yaml old mode 100755 new mode 100644 similarity index 87% rename from activitysim/examples/prototype_semcog/configs/accessibility.yaml rename to activitysim/examples/production_semcog/configs/accessibility.yaml index 86ab86629..e13e79fc7 --- a/activitysim/examples/prototype_semcog/configs/accessibility.yaml +++ b/activitysim/examples/production_semcog/configs/accessibility.yaml @@ -1,6 +1,6 @@ # columns from land_use table to add to df -land_use_columns: ['e05_retail', 'tot_emp'] +land_use_columns: ['e05_retail', 'tot_emp', 'tot_hhs'] CONSTANTS: # dispersion parameters diff --git a/activitysim/examples/prototype_semcog/configs/annotate_households.csv b/activitysim/examples/production_semcog/configs/annotate_households.csv old mode 100755 new mode 100644 similarity index 87% rename from activitysim/examples/prototype_semcog/configs/annotate_households.csv rename to activitysim/examples/production_semcog/configs/annotate_households.csv index 3ec08e3a7..f8df22993 --- a/activitysim/examples/prototype_semcog/configs/annotate_households.csv +++ b/activitysim/examples/production_semcog/configs/annotate_households.csv @@ -2,7 +2,7 @@ Description,Target,Expression #,, annotate households table after import ,_PERSON_COUNT,"lambda query, persons, households: persons.query(query).groupby('household_id').size().reindex(households.index).fillna(0).astype(np.int8)" #,,FIXME households.income can be negative - so we clip? -income,income,households.HINCP.fillna(0) +income,income,households.hincp.fillna(0) income_in_thousands,income_in_thousands,(income / 1000).clip(lower=0) income_segment,income_segment,"pd.cut(income_in_thousands, bins=[-np.inf, 30, 60, 100, np.inf], labels=[1, 2, 3, 4]).astype(int)" #,, @@ -14,7 +14,7 @@ median_value_of_time,median_value_of_time,"income_segment.map({k: v for k, v in hh_value_of_time,hh_value_of_time,"rng.lognormal_for_df(df, mu=np.log(median_value_of_time * _MU), sigma=_SIGMA).clip(_MIN_VOT, _MAX_VOT)" #,, #num_workers was renamed in import,, -,num_workers,"_PERSON_COUNT('(ESR==1)|(ESR==2)|(ESR==4)|(ESR==5)', persons, households)" +,num_workers,"_PERSON_COUNT('(esr==1)|(esr==2)|(esr==4)|(esr==5)', persons, households)" number of non_workers,num_non_workers,households.hhsize - num_workers #,, #,,we assume that everyone 16 and older is a potential driver @@ -27,13 +27,15 @@ num_children_6_to_12,num_children_6_to_12,"_PERSON_COUNT('6 <= age <= 12', perso num_children_16_to_17,num_children_16_to_17,"_PERSON_COUNT('16 <= age <= 17', persons, households)" num_college_age,num_college_age,"_PERSON_COUNT('18 <= age <= 24', persons, households)" num_young_adults,num_young_adults,"_PERSON_COUNT('25 <= age <= 34', persons, households)" -non_family,non_family,households.HHT.isin(HHT_NONFAMILY) -family,family,households.HHT.isin(HHT_FAMILY) +non_family,non_family,households.hht.isin(HHT_NONFAMILY) +family,family,households.hht.isin(HHT_FAMILY) home_is_urban,home_is_urban,"reindex(land_use.AreaType, households.home_zone_id) < setting('urban_threshold')" home_is_rural,home_is_rural,"reindex(land_use.AreaType, households.home_zone_id) > setting('rural_threshold')" +home_county,home_county,"reindex(land_use.COUNTY, households.home_zone_id)" +home_in_detroit,home_in_detroit,"reindex(land_use.COUNTY, households.home_zone_id) == 1" #,, default for work and school location logsums before auto_ownership model is run ,auto_ownership,households.auto_ownership -TAZ column to match settings file,TAZ,households.home_zone_id +TAZ column to match settings file,TAZ,households.TAZ number of pre-driving age children in the household,num_predrive_child,"_PERSON_COUNT('ptype == 7', persons, households)" number of non-working adult in the household,num_nonworker_adults,"_PERSON_COUNT('ptype == 4', persons, households)" number of full time workers,num_fullTime_workers,"_PERSON_COUNT('is_fulltime_worker', persons, households)" diff --git a/activitysim/examples/prototype_semcog/configs/annotate_households_cdap.csv b/activitysim/examples/production_semcog/configs/annotate_households_cdap.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/annotate_households_cdap.csv rename to activitysim/examples/production_semcog/configs/annotate_households_cdap.csv diff --git a/activitysim/examples/prototype_semcog/configs/annotate_households_workplace.csv b/activitysim/examples/production_semcog/configs/annotate_households_workplace.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/annotate_households_workplace.csv rename to activitysim/examples/production_semcog/configs/annotate_households_workplace.csv diff --git a/activitysim/examples/prototype_semcog/configs/annotate_landuse.csv b/activitysim/examples/production_semcog/configs/annotate_landuse.csv old mode 100755 new mode 100644 similarity index 80% rename from activitysim/examples/prototype_semcog/configs/annotate_landuse.csv rename to activitysim/examples/production_semcog/configs/annotate_landuse.csv index 4ef3e4310..3321d09c4 --- a/activitysim/examples/prototype_semcog/configs/annotate_landuse.csv +++ b/activitysim/examples/production_semcog/configs/annotate_landuse.csv @@ -3,3 +3,4 @@ Description,Target,Expression household_density,household_density,land_use.tot_hhs / (land_use.tot_acres) employment_density,employment_density,land_use.tot_emp / (land_use.tot_acres) density_index,density_index,(household_density *employment_density) / (household_density + employment_density).clip(lower=1) +,University_Name,"np.where(land_use.Univ_Tier==1, ""University of Michigan"", "" "")" diff --git a/activitysim/examples/prototype_semcog/configs/annotate_persons.csv b/activitysim/examples/production_semcog/configs/annotate_persons.csv old mode 100755 new mode 100644 similarity index 92% rename from activitysim/examples/prototype_semcog/configs/annotate_persons.csv rename to activitysim/examples/production_semcog/configs/annotate_persons.csv index b89e292f9..4c270bded --- a/activitysim/examples/prototype_semcog/configs/annotate_persons.csv +++ b/activitysim/examples/production_semcog/configs/annotate_persons.csv @@ -7,11 +7,11 @@ age_16_p,age_16_p,persons.age >= 16 adult,adult,persons.age >= 18 male,male,persons.sex == 1 female,female,persons.sex == 2 -,esr,persons.ESR.fillna(0) -,wkhp,persons.WKHP.fillna(0) -,wkw,persons.WKW.fillna(0) -,schg,persons.SCHG.fillna(0) -,mil,persons.MIL.fillna(0) +,esr,persons.esr.fillna(0) +,wkhp,persons.wkhp.fillna(0) +,wkw,persons.wkw.fillna(0) +,schg,persons.schg.fillna(0) +,mil,persons.mil.fillna(0) employment status type,pemploy,np.zeros(len(persons)) ,pemploy,"np.where(persons.age < 16, PEMPLOY_CHILD, PEMPLOY_PART)" ,pemploy,"np.where((persons['age'] >= 16) & ((esr == 3) | (esr == 6)), PEMPLOY_NOT, pemploy)" @@ -60,8 +60,11 @@ is_worker,is_worker,"np.where((pemploy == PEMPLOY_FULL) |( pemploy == PEMPLOY_PA home_zone_id,home_zone_id,"reindex(households.home_zone_id, persons.household_id)" hh_child,hh_child,"reindex(households.children, persons.household_id)" person number,PNUM,persons.member_id -income,income,"reindex(households.HINCP, persons.household_id)" +income,income,"reindex(households.hincp, persons.household_id)" income_in_thousands,income_in_thousands,(income / 1000).clip(lower=0) income_segment,income_segment,"pd.cut(income_in_thousands, bins=[-np.inf, 30, 60, 100, np.inf], labels=[1, 2, 3, 4]).astype(int)" is_fulltime_worker,is_fulltime_worker,"((age_16_p) & (wkhp >=35) & (wkw>=1) & (wkw<=4) & (~esr.isin([3,6])))" is_parttime_worker,is_parttime_worker,"((age_16_p) & (~esr.isin([3,6])) & (is_fulltime_worker == False))" +recoding existing as legacy,naicsp_recode,"persons['naicsp'].replace('-9', '0000')" +coding industry according to pums,industry_naics,naicsp_recode.str[0].astype(int)*10 +coding naicsp for telecommuting freq model, naics_category,naicsp_recode.str[0:2] diff --git a/activitysim/examples/prototype_semcog/configs/annotate_persons_after_hh.csv b/activitysim/examples/production_semcog/configs/annotate_persons_after_hh.csv old mode 100755 new mode 100644 similarity index 89% rename from activitysim/examples/prototype_semcog/configs/annotate_persons_after_hh.csv rename to activitysim/examples/production_semcog/configs/annotate_persons_after_hh.csv index 7e5743c8e..8e8990906 --- a/activitysim/examples/prototype_semcog/configs/annotate_persons_after_hh.csv +++ b/activitysim/examples/production_semcog/configs/annotate_persons_after_hh.csv @@ -3,7 +3,7 @@ Description,Target,Expression #,, adults get full hh_value_of_time and children get 60% ,_hh_vot,"reindex(households.hh_value_of_time, persons.household_id)" ,value_of_time,"_hh_vot.where(persons.age>=18, _hh_vot * 0.667)" -,_hh_income,"reindex(households.HINCP, persons.household_id)" +,_hh_income,"reindex(households.hincp, persons.household_id)" ,_num_adults,"reindex(households.num_adults, persons.household_id)" ,_num_predrive_child,"reindex(households.num_predrive_child, persons.household_id)" ,_num_nonworker_adults,"reindex(households.num_nonworker_adults, persons.household_id)" @@ -20,3 +20,5 @@ Presence of predrive child in HHs,is_pre_drive_child_in_HH,_num_predrive_child>0 ,_has_children_6_to_12,"reindex(households.num_children_6_to_12, persons.household_id)" has_young_children,has_young_children,_has_young_children>0 has_children_6_to_12,has_children_6_to_12,_has_children_6_to_12>0 +home_county_,home_county_,"reindex(households.home_county, persons.household_id)" +home_county, home_county, home_county_ diff --git a/activitysim/examples/prototype_semcog/configs/annotate_persons_cdap.csv b/activitysim/examples/production_semcog/configs/annotate_persons_cdap.csv old mode 100755 new mode 100644 similarity index 81% rename from activitysim/examples/prototype_semcog/configs/annotate_persons_cdap.csv rename to activitysim/examples/production_semcog/configs/annotate_persons_cdap.csv index 6e426628c..2ad5e56a6 --- a/activitysim/examples/prototype_semcog/configs/annotate_persons_cdap.csv +++ b/activitysim/examples/production_semcog/configs/annotate_persons_cdap.csv @@ -4,4 +4,3 @@ travel_active,travel_active,persons.cdap_activity != CDAP_ACTIVITY_HOME under16_not_at_school,under16_not_at_school,"persons.ptype.isin([PTYPE_SCHOOL, PTYPE_PRESCHOOL]) & persons.cdap_activity.isin(['N', 'H'])" has_preschool_kid_at_home,has_preschool_kid_at_home,"other_than(persons.household_id, (persons.ptype == PTYPE_PRESCHOOL) & (persons.cdap_activity == 'H'))" has_school_kid_at_home,has_school_kid_at_home,"other_than(persons.household_id, (persons.ptype == PTYPE_SCHOOL) & (persons.cdap_activity == 'H'))" -,cdap_activity,"np.where((persons.work_from_home) & (persons.cdap_activity=='M'), np.random.choice(['N','H']), persons.cdap_activity)" diff --git a/activitysim/examples/prototype_semcog/configs/annotate_persons_jtp.csv b/activitysim/examples/production_semcog/configs/annotate_persons_jtp.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/annotate_persons_jtp.csv rename to activitysim/examples/production_semcog/configs/annotate_persons_jtp.csv diff --git a/activitysim/examples/prototype_semcog/configs/annotate_persons_mtf.csv b/activitysim/examples/production_semcog/configs/annotate_persons_mtf.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/annotate_persons_mtf.csv rename to activitysim/examples/production_semcog/configs/annotate_persons_mtf.csv diff --git a/activitysim/examples/prototype_semcog/configs/annotate_persons_nmtf.csv b/activitysim/examples/production_semcog/configs/annotate_persons_nmtf.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/annotate_persons_nmtf.csv rename to activitysim/examples/production_semcog/configs/annotate_persons_nmtf.csv diff --git a/activitysim/examples/prototype_semcog/configs/annotate_persons_school.csv b/activitysim/examples/production_semcog/configs/annotate_persons_school.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/annotate_persons_school.csv rename to activitysim/examples/production_semcog/configs/annotate_persons_school.csv diff --git a/activitysim/examples/prototype_semcog/configs/annotate_persons_workplace.csv b/activitysim/examples/production_semcog/configs/annotate_persons_workplace.csv old mode 100755 new mode 100644 similarity index 91% rename from activitysim/examples/prototype_semcog/configs/annotate_persons_workplace.csv rename to activitysim/examples/production_semcog/configs/annotate_persons_workplace.csv index 36d6a01f8..e4f4762b4 --- a/activitysim/examples/prototype_semcog/configs/annotate_persons_workplace.csv +++ b/activitysim/examples/production_semcog/configs/annotate_persons_workplace.csv @@ -30,3 +30,7 @@ work_zone_area_type,work_zone_area_type,"reindex(land_use.AreaType, persons.work ,work_auto_savings,"np.where(persons.is_worker, _min_work_walk_transit - roundtrip_auto_time_to_work, 0)" #,,auto savings over walk or transit capped at 120 and normalized to unity ,work_auto_savings_ratio,"(work_auto_savings / 120.0).clip(-1.0, 1.0)" +,umich_student,df.school_zone_id.isin(land_use[land_use.University_Name=='University of Michigan'].index.values) +,umich_worker,df.workplace_zone_id.isin(land_use[land_use.University_Name=='University of Michigan'].index.values) +#,, +,dest_hourly_peak_parking_cost,"reindex(land_use.parking_hourly, df.workplace_zone_id)" diff --git a/activitysim/examples/prototype_semcog/configs/atwork_subtour_destination.csv b/activitysim/examples/production_semcog/configs/atwork_subtour_destination.csv old mode 100755 new mode 100644 similarity index 78% rename from activitysim/examples/prototype_semcog/configs/atwork_subtour_destination.csv rename to activitysim/examples/production_semcog/configs/atwork_subtour_destination.csv index c0e44b679..1bfb2a55b --- a/activitysim/examples/prototype_semcog/configs/atwork_subtour_destination.csv +++ b/activitysim/examples/production_semcog/configs/atwork_subtour_destination.csv @@ -4,8 +4,6 @@ util_dist,util_dist,@_DIST,coef_dist_atwork util_dist_squared,util_dist_squared,"@(_DIST).clip(0,20)**2",coef_dist_squared_atwork util_dist_cubed,util_dist_cubed,"@(_DIST).clip(0,20)**3",coef_dist_cubed_atwork util_dist_logged,util_dist_logged,@(_DIST).apply(np.log1p),coef_dist_logged_atwork -# util_size_variable_atwork,Size variable atwork,@df['atwork'].apply(np.log1p),coef_size_variable_atwork -# util_no_attractions_atwork_size_variable_is_0,"No attractions, atwork size variable is 0",atwork==0,coef_no_attractions_atwork_size_variable_is_0 util_size_variable_atwork,Size variable atwork,@df['size_term'].apply(np.log1p),coef_size_variable_atwork util_no_attractions_atwork_size_variable_is_0,"No attractions, atwork size variable is 0",size_term==0,coef_no_attractions_atwork_size_variable_is_0 util_mode_choice_logsum,Mode choice logsum,mode_choice_logsum,coef_mode_choice_logsum_atwork diff --git a/activitysim/examples/prototype_semcog/configs/atwork_subtour_destination.yaml b/activitysim/examples/production_semcog/configs/atwork_subtour_destination.yaml old mode 100755 new mode 100644 similarity index 88% rename from activitysim/examples/prototype_semcog/configs/atwork_subtour_destination.yaml rename to activitysim/examples/production_semcog/configs/atwork_subtour_destination.yaml index ea7a48e37..af05b1ece --- a/activitysim/examples/prototype_semcog/configs/atwork_subtour_destination.yaml +++ b/activitysim/examples/production_semcog/configs/atwork_subtour_destination.yaml @@ -3,6 +3,10 @@ SPEC: atwork_subtour_destination.csv SAMPLE_SPEC: atwork_subtour_destination_sample.csv COEFFICIENTS: atwork_subtour_destination_coeffs.csv +SIZE_TERM_SELECTOR: atwork +SEGMENTS: + - atwork +ORIG_ZONE_ID: workplace_zone_id SAMPLE_SIZE: 30 diff --git a/activitysim/examples/prototype_semcog/configs/atwork_subtour_destination_coeffs.csv b/activitysim/examples/production_semcog/configs/atwork_subtour_destination_coeffs.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/atwork_subtour_destination_coeffs.csv rename to activitysim/examples/production_semcog/configs/atwork_subtour_destination_coeffs.csv diff --git a/activitysim/examples/prototype_semcog/configs/atwork_subtour_destination_sample.csv b/activitysim/examples/production_semcog/configs/atwork_subtour_destination_sample.csv old mode 100755 new mode 100644 similarity index 71% rename from activitysim/examples/prototype_semcog/configs/atwork_subtour_destination_sample.csv rename to activitysim/examples/production_semcog/configs/atwork_subtour_destination_sample.csv index bacf3e5c2..16035e5be --- a/activitysim/examples/prototype_semcog/configs/atwork_subtour_destination_sample.csv +++ b/activitysim/examples/production_semcog/configs/atwork_subtour_destination_sample.csv @@ -4,7 +4,5 @@ util_dist,util_dist,@_DIST,coef_dist_atwork util_dist_squared,util_dist_squared,"@(_DIST).clip(0,20)**2",coef_dist_squared_atwork util_dist_cubed,util_dist_cubed,"@(_DIST).clip(0,20)**3",coef_dist_cubed_atwork util_dist_logged,util_dist_logged,@(_DIST).apply(np.log1p),coef_dist_logged_atwork -# util_size_variable_atwork,Size variable atwork,@df['atwork'].apply(np.log1p),coef_size_variable_atwork -# util_no_attractions_atwork_size_variable_is_0,"No attractions, atwork size variable is 0",atwork==0,coef_no_attractions_atwork_size_variable_is_0 util_size_variable_atwork,Size variable atwork,@df['size_term'].apply(np.log1p),coef_size_variable_atwork util_no_attractions_atwork_size_variable_is_0,"No attractions, atwork size variable is 0",size_term==0,coef_no_attractions_atwork_size_variable_is_0 diff --git a/activitysim/examples/prototype_semcog/configs/atwork_subtour_frequency.csv b/activitysim/examples/production_semcog/configs/atwork_subtour_frequency.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/atwork_subtour_frequency.csv rename to activitysim/examples/production_semcog/configs/atwork_subtour_frequency.csv diff --git a/activitysim/examples/prototype_semcog/configs/atwork_subtour_frequency.yaml b/activitysim/examples/production_semcog/configs/atwork_subtour_frequency.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/atwork_subtour_frequency.yaml rename to activitysim/examples/production_semcog/configs/atwork_subtour_frequency.yaml diff --git a/activitysim/examples/prototype_semcog/configs/atwork_subtour_frequency_alternatives.csv b/activitysim/examples/production_semcog/configs/atwork_subtour_frequency_alternatives.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/atwork_subtour_frequency_alternatives.csv rename to activitysim/examples/production_semcog/configs/atwork_subtour_frequency_alternatives.csv diff --git a/activitysim/examples/prototype_semcog/configs/atwork_subtour_frequency_annotate_tours_preprocessor.csv b/activitysim/examples/production_semcog/configs/atwork_subtour_frequency_annotate_tours_preprocessor.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/atwork_subtour_frequency_annotate_tours_preprocessor.csv rename to activitysim/examples/production_semcog/configs/atwork_subtour_frequency_annotate_tours_preprocessor.csv diff --git a/activitysim/examples/prototype_semcog/configs/atwork_subtour_frequency_coeffs.csv b/activitysim/examples/production_semcog/configs/atwork_subtour_frequency_coeffs.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/atwork_subtour_frequency_coeffs.csv rename to activitysim/examples/production_semcog/configs/atwork_subtour_frequency_coeffs.csv diff --git a/activitysim/examples/production_semcog/configs/auto_ownership.csv b/activitysim/examples/production_semcog/configs/auto_ownership.csv new file mode 100644 index 000000000..5714716c5 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/auto_ownership.csv @@ -0,0 +1,23 @@ +Label,Description,Expression,cars0,cars1,cars2,cars3,cars4 +util_drivers_1,1 Adult (age 16+),num_drivers==1,,coef_cars1_drivers_1,coef_cars2_drivers_1,coef_cars3_drivers_1,coef_cars4_drivers_1 +util_drivers_2,2 Adult (age 16+),num_drivers==2,,coef_cars1_drivers_2,coef_cars2_drivers_2,coef_cars3_drivers_2,coef_cars4_drivers_2 +util_drivers_3_up,3+ Adults (age 16+),num_drivers>=3,,coef_cars1_drivers_3_up,coef_cars2_drivers_3_up,coef_cars3_drivers_3_up,coef_cars4_drivers_3_up +util_persons_16_17,Persons age 16-17,num_children_16_to_17,,coef_cars1_persons_16_17,coef_cars2_persons_16_17,coef_cars34_persons_16_17,coef_cars34_persons_16_17 +util_persons_18_24,Persons age 18-24,num_college_age,,coef_cars1_persons_18_24,coef_cars2_persons_18_24,coef_cars34_persons_18_24,coef_cars34_persons_18_24 +util_persons_25_34,Persons age 35-34,num_young_adults,,coef_cars1_persons_25_34,coef_cars2_persons_25_34,coef_cars34_persons_25_34,coef_cars34_persons_25_34 +util_presence_children_0_4,Presence of children age 0-4,num_young_children>0,,coef_cars1_presence_children_0_4,coef_cars2_presence_children_0_4,coef_cars34_presence_children_0_4,coef_cars34_presence_children_0_4 +util_presence_children_5_17,Presence of children age 5-17,(num_children_5_to_15+num_children_16_to_17)>0,,coef_cars1_presence_children_5_17,coef_cars2_presence_children_5_17,coef_cars34_presence_children_5_17,coef_cars34_presence_children_5_17 +util_num_workers_clip_3,Number of workers capped at 3,@df.num_workers.clip(upper=3),,coef_cars1_num_workers_clip_3,coef_cars2_num_workers_clip_3,coef_cars3_num_workers_clip_3,coef_cars4_num_workers_clip_3 +util_hh_income_0_15k,Piecewise Linear household income $0-15k,income_in_thousands < 15,,coef_cars1_hh_income_0_15k,coef_cars2_hh_income_0_15k,coef_cars3_hh_income_0_15k,coef_cars4_hh_income_0_15k +util_hh_income_15_35k,Piecewise Linear household income $15-35k,(income_in_thousands >= 15) & (income_in_thousands<35),,coef_cars1_hh_income_15_35k,coef_cars2_hh_income_15_35k,coef_cars3_hh_income_15_35k,coef_cars4_hh_income_15_35k +util_hh_income_35_50k,Piecewise Linear household income $35-50k,(income_in_thousands >= 35) & (income_in_thousands<50),,coef_cars1_hh_income_35_50k,coef_cars2_hh_income_35_50k,coef_cars3_hh_income_35_50k,coef_cars4_hh_income_35_50k +util_hh_income_50_75k,Piecewise Linear household income $50-75k,(income_in_thousands >= 50) & (income_in_thousands<75),,coef_cars1_hh_income_50_75k,coef_cars2_hh_income_50_75k,coef_cars3_hh_income_50_75k,coef_cars4_hh_income_50_75k +util_density,Density index,@df.density_index,,coef_cars1_density,coef_cars2_density,coef_cars3_density,coef_cars4_density +util_retail_transit,Retail accessibility (0.66*PK + 0.34*OP) by transit,(0.66*trPkRetail+0.34*trOpRetail),,coef_cars1_retail_transit,coef_cars2_retail_transit,coef_cars3_retail_transit,coef_cars4_retail_transit +util_retail_non_motor,Retail accessibility by non-motorized,nmRetail,,coef_cars1_retail_non_motor,coef_cars2_retail_non_motor,coef_cars3_retail_non_motor,coef_cars4_retail_non_motor +util_auto_time_saving_per_worker,Auto time savings per worker to work,"@np.where(df.num_workers > 0, df.hh_work_auto_savings_ratio / df.num_workers, 0)",,coef_cars1_auto_time_saving_per_worker,coef_cars2_auto_time_saving_per_worker,coef_cars3_auto_time_saving_per_worker,coef_cars4_auto_time_saving_per_worker +util_univ_students_GQ,University Students living in GQ households,(num_college_age > 0) & (type == 3),,coef_cars1_univ_GQ,coef_unavailable,coef_unavailable,coef_unavailable +util_constants,Alternative-specific constants,1,,coef_cars1,coef_cars2,coef_cars3,coef_cars4 +util_detroit,district specific constant,home_in_detroit,coef_detroit,0,0,,0 +#,,,,,,, +calib_constant,calibration constant,1,coef_cars0_asc,coef_cars1_asc,coef_cars2_asc,coef_cars3_asc,coef_cars4_asc diff --git a/activitysim/examples/prototype_semcog/configs/auto_ownership.yaml b/activitysim/examples/production_semcog/configs/auto_ownership.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/auto_ownership.yaml rename to activitysim/examples/production_semcog/configs/auto_ownership.yaml diff --git a/activitysim/examples/production_semcog/configs/auto_ownership_coeffs.csv b/activitysim/examples/production_semcog/configs/auto_ownership_coeffs.csv new file mode 100644 index 000000000..525754c11 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/auto_ownership_coeffs.csv @@ -0,0 +1,76 @@ +coefficient_name,value,constrain +coef_unavailable,-999,T +coef_cars1_drivers_1,-0.226,F +coef_cars1_drivers_2,0,F +coef_cars1_drivers_3_up,-0.398,F +coef_cars1_persons_16_17,-0.594,F +coef_cars1_persons_18_24,0.281,F +coef_cars1_persons_25_34,0,F +coef_cars1_presence_children_0_4,0,F +coef_cars1_presence_children_5_17,0.365,F +coef_cars1_num_workers_clip_3,-0.389,F +coef_cars1_hh_income_0_15k,-2.54,F +coef_cars1_hh_income_15_35k,-1.2,F +coef_cars1_hh_income_35_50k,0,F +coef_cars1_hh_income_50_75k,0,F +coef_cars1_density,0,F +coef_cars1_retail_transit,-0.444,F +coef_cars1_retail_non_motor,0.115,F +coef_cars1_auto_time_saving_per_worker,1.31,F +coef_cars1_univ_GQ,-3.56,F +coef_cars2_drivers_1,-3.05,F +coef_cars2_drivers_2,0,F +coef_cars2_drivers_3_up,-0.53,F +coef_cars2_persons_16_17,-1.41,F +coef_cars2_persons_18_24,-0.237,F +coef_cars2_persons_25_34,-0.26,F +coef_cars2_presence_children_0_4,0,F +coef_cars2_presence_children_5_17,0.526,F +coef_cars2_num_workers_clip_3,0.433,F +coef_cars2_hh_income_0_15k,-4.08,F +coef_cars2_hh_income_15_35k,-2.41,F +coef_cars2_hh_income_35_50k,-0.772,F +coef_cars2_hh_income_50_75k,-0.532,F +coef_cars2_density,-0.0487,F +coef_cars2_retail_transit,-0.715,F +coef_cars2_retail_non_motor,0,F +coef_cars2_auto_time_saving_per_worker,0.906,F +coef_cars3_drivers_1,-2.97,F +coef_cars3_drivers_2,0,F +coef_cars3_drivers_3_up,1.19,F +coef_cars34_persons_16_17,-1.46,F +coef_cars34_persons_18_24,0,F +coef_cars34_persons_25_34,-0.368,F +coef_cars34_presence_children_0_4,-0.468,F +coef_cars34_presence_children_5_17,0.387,F +coef_cars3_num_workers_clip_3,0.662,F +coef_cars3_hh_income_0_15k,-4.3,F +coef_cars3_hh_income_15_35k,-2.77,F +coef_cars3_hh_income_35_50k,-1.07,F +coef_cars3_hh_income_50_75k,-0.686,F +coef_cars3_density,-0.541,F +coef_cars3_retail_transit,-0.8,F +coef_cars3_retail_non_motor,0,F +coef_cars3_auto_time_saving_per_worker,0.9,F +coef_cars4_drivers_1,-2.58,F +coef_cars4_drivers_2,0,F +coef_cars4_drivers_3_up,1.57,F +coef_cars4_num_workers_clip_3,0.929,F +coef_cars4_hh_income_0_15k,-4.33,F +coef_cars4_hh_income_15_35k,-3.05,F +coef_cars4_hh_income_35_50k,-1.2,F +coef_cars4_hh_income_50_75k,-0.719,F +coef_cars4_density,-0.8,F +coef_cars4_retail_transit,-0.778,F +coef_cars4_retail_non_motor,0,F +coef_cars4_auto_time_saving_per_worker,0.538,F +coef_cars1,3.06,F +coef_cars2,5.44,F +coef_cars3,4.39,F +coef_cars4,3.23,F +coef_detroit,0.25,F +coef_cars0_asc,0.30,F +coef_cars1_asc,0.10,F +coef_cars2_asc,-0.40,F +coef_cars3_asc,-0.80,F +coef_cars4_asc,-0.80,F diff --git a/activitysim/examples/prototype_semcog/configs/cdap.yaml b/activitysim/examples/production_semcog/configs/cdap.yaml old mode 100755 new mode 100644 similarity index 89% rename from activitysim/examples/prototype_semcog/configs/cdap.yaml rename to activitysim/examples/production_semcog/configs/cdap.yaml index 546db913a..9ce3a1d2b --- a/activitysim/examples/prototype_semcog/configs/cdap.yaml +++ b/activitysim/examples/production_semcog/configs/cdap.yaml @@ -1,10 +1,8 @@ COEFFICIENTS: _dummy_coefficients.csv -INTERACTION_COEFFICIENTS: cdap_interaction_coefficients.csv INDIV_AND_HHSIZE1_SPEC: cdap_indiv_and_hhsize1.csv FIXED_RELATIVE_PROPORTIONS_SPEC: cdap_fixed_relative_proportions.csv - CONSTANTS: FULL: 1 PART: 2 diff --git a/activitysim/examples/prototype_semcog/configs/cdap_fixed_relative_proportions.csv b/activitysim/examples/production_semcog/configs/cdap_fixed_relative_proportions.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/cdap_fixed_relative_proportions.csv rename to activitysim/examples/production_semcog/configs/cdap_fixed_relative_proportions.csv diff --git a/activitysim/examples/prototype_semcog/configs/cdap_indiv_and_hhsize1.csv b/activitysim/examples/production_semcog/configs/cdap_indiv_and_hhsize1.csv old mode 100755 new mode 100644 similarity index 85% rename from activitysim/examples/prototype_semcog/configs/cdap_indiv_and_hhsize1.csv rename to activitysim/examples/production_semcog/configs/cdap_indiv_and_hhsize1.csv index a3ce4a01c..18ffbe506 --- a/activitysim/examples/prototype_semcog/configs/cdap_indiv_and_hhsize1.csv +++ b/activitysim/examples/production_semcog/configs/cdap_indiv_and_hhsize1.csv @@ -49,6 +49,13 @@ University student interaction with off-peak accessibility to retail,(ptype == 3 Driving-age child who is in school interaction with off-peak accessibility to retail,(ptype == 6) * auOpRetail,,0.08233, Pre-driving-age child who is in school interaction with off-peak accessibility to retail,(ptype == 7) * auOpRetail,,0.08233, Pre-driving-age child who is too young for school interaction with off-peak accessibility to retail,(ptype == 8) * auOpRetail,,0.08233, +# University Student CDAP calibration,,,, +working university student in non-family housing,(ptype == 3) & (is_worker) & (hht >= 4),0.095989229,-0.565315767, +working university student in family housing,(ptype == 3) & (is_worker) & (hht < 4) & (type != 3),0.160883504,-0.939483752, +working university student in GQ housing,(ptype == 3) & (is_worker) & (hht < 4) & (type == 3),0.273268829,-1.255669628, +non-working university student in non-family housing,(ptype == 3) & (~is_worker) & (hht >= 4),0.165733328,-1.2223963, +non-working university student in family housing,(ptype == 3) & (~is_worker) & (hht < 4) & (type != 3),0.05864678,-0.224588408, +non-working university student in GQ housing,(ptype == 3) & (~is_worker) & (hht < 4) & (type == 3),0.22312397,-1.183939606, # commented out because not used in mtctm1,,,, # Full-time worker interaction with usual work location is home,(ptype == 1) * usualWorkLocationIsHome,-1.758,,0.1813 # Part-time worker interaction with usual work location is home,(ptype == 2) * usualWorkLocationIsHome,-1.758,,0.1813 @@ -64,3 +71,12 @@ Telecommutes 4 days per week,telecommute_frequency=='4_days_week',,1.848,1.711 #Turning Mandatory pattern off for FT and PT who work from home (sandag),,,, "Full time worker, works from home",(ptype == 1) & (work_from_home),-999,, "Part time worker, works from home",(ptype == 2) & (work_from_home),-999,, +#,,,, +full-time worker calibration send more ftworker to M,ptype==1,-0.1,0.32,0.12 +part-time worker calibration send more ptworker to N,ptype==2,-0.3,0.45,0.22 +col students calibration send more univ student to M,ptype==3,-0.41,0.2,0.3 +,ptype==4,-0.15,-0.17,0.68 +,ptype==5,0,-0.06,0.25 +,ptype==6,0.47,,-0.6 +,ptype==7,0.27,,-0.2 +,ptype==8,-0.73,1,0.1 diff --git a/activitysim/examples/prototype_semcog/configs/cdap_interaction_coefficients.csv b/activitysim/examples/production_semcog/configs/cdap_interaction_coefficients.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/cdap_interaction_coefficients.csv rename to activitysim/examples/production_semcog/configs/cdap_interaction_coefficients.csv diff --git a/activitysim/examples/production_semcog/configs/constants.yaml b/activitysim/examples/production_semcog/configs/constants.yaml new file mode 100644 index 000000000..fb2a0cdf5 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/constants.yaml @@ -0,0 +1,123 @@ +## ActivitySim +## See full license in LICENSE.txt. +### MODE CHOICE RELATED CONSTANTS + +# cash discount factor for seniors (persons age 65+) or driving-age students, non-driving age students, and pre-school children +cash_discount_factor: 0.5 + +#pass discount factor by operator and person type (1-8) +transit_pass_discount_factor_ddot: + 1: 0.74 + 2: 0.73 + 3: 0.68 + 4: 0.67 + 5: 0.36 + 6: 0.44 + 7: 0.42 + 8: 1.0 +transit_pass_discount_factor_smart: + 1: 0.65 + 2: 0.54 + 3: 0.61 + 4: 0.58 + 5: 0.15 + 6: 0.21 + 7: 0.12 + 8: 1.0 +transit_pass_discount_factor_aata: + 1: 0.08 + 2: 0.16 + 3: 0.02 + 4: 0.25 + 5: 0.05 + 6: 0.12 + 7: 0.17 + 8: 1.0 +transit_pass_discount_factor_um: + 1: 0.0 + 2: 0.0 + 3: 0.0 + 4: 0.0 + 5: 0.0 + 6: 0.0 + 7: 0.0 + 8: 0.0 +transit_pass_discount_factor_other: + 1: 0.34 + 2: 0.60 + 3: 0.35 + 4: 0.68 + 5: 0.25 + 6: 0.75 + 7: 0.84 + 8: 1.0 + +costPerMile: 18.29 +costShareSr2: 1.75 +costShareSr3: 2.50 + +waitThresh: 10.00 +walkThresh: 1.00 +shortWalk: 0.333 +longWalk: 0.667 +walkSpeed: 3.00 +bikeThresh: 6.00 +bikeSpeed: 12.00 +valueOfTime: 8.00 + +max_local_walk_dist: 0.85 +max_prm_walk_dist: 1.2 +max_mix_walk_dist: 1.2 +walk_speed: 2.8 #mph + +# convenience for expression files +HHT_NONFAMILY: [4, 5, 6, 7] +HHT_FAMILY: [1, 2, 3] + +PSTUDENT_GRADE_OR_HIGH: 1 +PSTUDENT_UNIVERSITY: 2 +PSTUDENT_NOT: 3 + +GRADE_SCHOOL_MAX_AGE: 14 +GRADE_SCHOOL_MIN_AGE: 5 + +SCHOOL_SEGMENT_NONE: 0 +SCHOOL_SEGMENT_GRADE: 1 +SCHOOL_SEGMENT_HIGH: 2 +SCHOOL_SEGMENT_UNIV: 3 + +INCOME_SEGMENT_LOW: 1 +INCOME_SEGMENT_MED: 2 +INCOME_SEGMENT_HIGH: 3 +INCOME_SEGMENT_VERYHIGH: 4 + +PEMPLOY_FULL: 1 +PEMPLOY_PART: 2 +PEMPLOY_NOT: 3 +PEMPLOY_CHILD: 4 + +PTYPE_FULL: &ptype_full 1 +PTYPE_PART: &ptype_part 2 +PTYPE_UNIVERSITY: &ptype_university 3 +PTYPE_NONWORK: &ptype_nonwork 4 +PTYPE_RETIRED: &ptype_retired 5 +PTYPE_DRIVING: &ptype_driving 6 +PTYPE_SCHOOL: &ptype_school 7 +PTYPE_PRESCHOOL: &ptype_preschool 8 + +# these appear as column headers in non_mandatory_tour_frequency.csv +PTYPE_NAME: + *ptype_full: PTYPE_FULL + *ptype_part: PTYPE_PART + *ptype_university: PTYPE_UNIVERSITY + *ptype_nonwork: PTYPE_NONWORK + *ptype_retired: PTYPE_RETIRED + *ptype_driving: PTYPE_DRIVING + *ptype_school: PTYPE_SCHOOL + *ptype_preschool: PTYPE_PRESCHOOL + + +CDAP_ACTIVITY_MANDATORY: M +CDAP_ACTIVITY_NONMANDATORY: N +CDAP_ACTIVITY_HOME: H + diff --git a/activitysim/examples/prototype_semcog/configs/destination_choice_size_terms.csv b/activitysim/examples/production_semcog/configs/destination_choice_size_terms.csv old mode 100755 new mode 100644 similarity index 79% rename from activitysim/examples/prototype_semcog/configs/destination_choice_size_terms.csv rename to activitysim/examples/production_semcog/configs/destination_choice_size_terms.csv index ef359c904..12d4a9818 --- a/activitysim/examples/prototype_semcog/configs/destination_choice_size_terms.csv +++ b/activitysim/examples/production_semcog/configs/destination_choice_size_terms.csv @@ -14,12 +14,12 @@ non_mandatory,social,0.487,0,0,0,0,0,0,0,0,0,0,0,0,0.244,0,0.177,1,0,0,0,0,0 non_mandatory,othdiscr,0.184,0,0,0,0,0.185,0,0,0,0,0,0,0,0.899,0.511,0.004,1.081,1,0,0,0,0 atwork,atwork,0.03,0,0,0,0.049,1,0,0,0,0.141,0,0,0.482,0.048,0.092,0.013,0,0,0.053,0,0,0 trip,work,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0 -trip,escort,0.001,0,0,0,0,0.225,0,0,0,0,0,0,0,0.144,0.144,0.144,0.144,0,0,0.465,0.166,0 -trip,shopping,0.001,0,0,0,0,0.999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -trip,eatout,0,0,0,0,0,0.742,0,0,0,0,0,0,0,0.258,0.258,0.258,0.258,0,0,0,0,0 -trip,othmaint,0.001,0,0,0,0,0.481,0,0,0,0,0,0,0,0.518,0.518,0.518,0.518,0,0,0,0,0 -trip,social,0.001,0,0,0,0,0.521,0,0,0,0,0,0,0,0.478,0.478,0.478,0.478,0,0,0,0,0 -trip,othdiscr,0.252,0,0,0,0,0.212,0,0,0,0,0,0,0,0.273,0.273,0.273,0.273,0.165,0.165,0,0.098,0 +trip,escort,0.192,0,0,0,0,0.188,0,0,0,0,0,0,0,0,0.164,0.078,0.791,0,0,1,0.768,0 +trip,shopping,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.005,0.003,0,0,0,0 +trip,eatout,0.004,0,0,0,0,0.283,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +trip,othmaint,0.029,0,0,0,0.026,0.587,0,0,0,0.268,0,0,0.445,0.161,1,0.556,0.336,0.501,0.478,0,0,0 +trip,social,0.487,0,0,0,0,0,0,0,0,0,0,0,0,0.244,0,0.177,1,0,0,0,0,0 +trip,othdiscr,0.184,0,0,0,0,0.185,0,0,0,0,0,0,0,0.899,0.511,0.004,1.081,1,0,0,0,0 trip,univ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 # not needed as school is not chosen as an intermediate trip destination,,,,,,,,,,,,,,,,,,,,,,,0 #trip,gradeschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/activitysim/examples/prototype_semcog/configs/free_parking.csv b/activitysim/examples/production_semcog/configs/free_parking.csv old mode 100755 new mode 100644 similarity index 80% rename from activitysim/examples/prototype_semcog/configs/free_parking.csv rename to activitysim/examples/production_semcog/configs/free_parking.csv index 2505a9bf7..8bf15e159 --- a/activitysim/examples/prototype_semcog/configs/free_parking.csv +++ b/activitysim/examples/production_semcog/configs/free_parking.csv @@ -1,6 +1,9 @@ Label,Description,Expression,free,pay +util_nopay_parking,free parking where no costs,parking_daily==0,0,-999 util_income_very_high,Very high income household dummy,@df.income>=100000,coef_income_very_high,0 util_income_high,High income housheold dummy,@(df.income>=60000) & (df.income<100000),coef_income_high,0 util_hh_size_4_up,Household size is greater than 3 dummy,@df.hhsize>3,coef_hh_size_4_up,0 util_more_autos_than_workers,More automobiles than workers dummy,@df.auto_ownership>df.num_workers,coef_more_autos_than_workers,0 util_fewer_autos_than_workers,Fewer automobiles than workers dummy,@df.auto_ownership0),-1.5, diff --git a/activitysim/examples/prototype_semcog/configs/free_parking.yaml b/activitysim/examples/production_semcog/configs/free_parking.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/free_parking.yaml rename to activitysim/examples/production_semcog/configs/free_parking.yaml diff --git a/activitysim/examples/production_semcog/configs/free_parking_annotate_persons_preprocessor.csv b/activitysim/examples/production_semcog/configs/free_parking_annotate_persons_preprocessor.csv new file mode 100644 index 000000000..045e60fbc --- /dev/null +++ b/activitysim/examples/production_semcog/configs/free_parking_annotate_persons_preprocessor.csv @@ -0,0 +1,4 @@ +Description,Target,Expression +,workplace_county_id,"reindex(land_use.COUNTY, persons.workplace_zone_id)" +,parking_hourly," reindex(land_use.parking_hourly, persons.workplace_zone_id)" +,parking_daily,"reindex(land_use.parking_daily, persons.workplace_zone_id)" diff --git a/activitysim/examples/prototype_semcog/configs/free_parking_coeffs.csv b/activitysim/examples/production_semcog/configs/free_parking_coeffs.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/free_parking_coeffs.csv rename to activitysim/examples/production_semcog/configs/free_parking_coeffs.csv diff --git a/activitysim/examples/prototype_semcog/configs/initialize_households.yaml b/activitysim/examples/production_semcog/configs/initialize_households.yaml old mode 100755 new mode 100644 similarity index 78% rename from activitysim/examples/prototype_semcog/configs/initialize_households.yaml rename to activitysim/examples/production_semcog/configs/initialize_households.yaml index 5d8a5dbd1..fdd962cb2 --- a/activitysim/examples/prototype_semcog/configs/initialize_households.yaml +++ b/activitysim/examples/production_semcog/configs/initialize_households.yaml @@ -19,6 +19,3 @@ annotate_tables: DF: persons TABLES: - households - -# add the work and school location size tables for backwards compatibility if desired -add_size_tables: False \ No newline at end of file diff --git a/activitysim/examples/prototype_semcog/configs/initialize_landuse.yaml b/activitysim/examples/production_semcog/configs/initialize_landuse.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/initialize_landuse.yaml rename to activitysim/examples/production_semcog/configs/initialize_landuse.yaml diff --git a/activitysim/examples/production_semcog/configs/input_checker.yaml b/activitysim/examples/production_semcog/configs/input_checker.yaml new file mode 100644 index 000000000..a9e636ff3 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/input_checker.yaml @@ -0,0 +1,31 @@ +# name of input checker python file where input checks are listed +# should exist in the data_model directory +input_checker_code: input_checks.py + + +# ------- checking with pandera examples ---------- +table_list: + - name: households + is_activitysim_input: True # will load via ActivitySim's built-in reader and apply column transformations + validation: + method: pandera + class: Household + + - name: persons + is_activitysim_input: True # will load via ActivitySim's built-in reader and apply column transformations + validation: + method: pandera + class: Person + + - name: land_use + is_activitysim_input: True # will load via ActivitySim's built-in reader and apply column transformations + validation: + method: pandera + class: Landuse + + - name: Network + # path: . # must be absolute path or relative path. Can also omit if supplied in a data directory + is_activitysim_input: False # will read raw table with pandas.read_csv from above path + validation: + class: NetworkLinks + method: pandera diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_composition.csv b/activitysim/examples/production_semcog/configs/joint_tour_composition.csv old mode 100755 new mode 100644 similarity index 97% rename from activitysim/examples/prototype_semcog/configs/joint_tour_composition.csv rename to activitysim/examples/production_semcog/configs/joint_tour_composition.csv index de03e3dcc..d0ff7cf61 --- a/activitysim/examples/prototype_semcog/configs/joint_tour_composition.csv +++ b/activitysim/examples/production_semcog/configs/joint_tour_composition.csv @@ -19,4 +19,6 @@ util_log_max_overlap_of_childrens_time_windows,Log of max pair-wise overlap of h util_log_max_overlap_of_time_windows,Log of max pair-wise overlap of household adults and childrens time windows,log_time_window_overlap_adult_child,,,coef_log_max_overlap_of_time_windows util_two_acive_adults,Two adults must have Mand or Non Mand activity patterns to have adult-only joint travel,num_travel_active_adults<2,coef_unavailable,, util_two_active_children,Two children must have Mand or Non Mand activity patterns to have children-only joint travel,num_travel_active_children<2,,coef_unavailable, -util_travel_active_adult,At least one adult and at least one child must have Mand or Non Mand activity patterns to have adult/child joint travel,(num_travel_active_adults == 0) | (num_travel_active_children == 0),,,coef_unavailable \ No newline at end of file +util_travel_active_adult,At least one adult and at least one child must have Mand or Non Mand activity patterns to have adult/child joint travel,(num_travel_active_adults == 0) | (num_travel_active_children == 0),,,coef_unavailable +#,,,,, +util_calib,calibration cte,1,4.75,-2,0.27 diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_composition.yaml b/activitysim/examples/production_semcog/configs/joint_tour_composition.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_composition.yaml rename to activitysim/examples/production_semcog/configs/joint_tour_composition.yaml diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_composition_annotate_households_preprocessor.csv b/activitysim/examples/production_semcog/configs/joint_tour_composition_annotate_households_preprocessor.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_composition_annotate_households_preprocessor.csv rename to activitysim/examples/production_semcog/configs/joint_tour_composition_annotate_households_preprocessor.csv diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_composition_coeffs.csv b/activitysim/examples/production_semcog/configs/joint_tour_composition_coeffs.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_composition_coeffs.csv rename to activitysim/examples/production_semcog/configs/joint_tour_composition_coeffs.csv diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_destination.csv b/activitysim/examples/production_semcog/configs/joint_tour_destination.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_destination.csv rename to activitysim/examples/production_semcog/configs/joint_tour_destination.csv diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_destination.yaml b/activitysim/examples/production_semcog/configs/joint_tour_destination.yaml old mode 100755 new mode 100644 similarity index 95% rename from activitysim/examples/prototype_semcog/configs/joint_tour_destination.yaml rename to activitysim/examples/production_semcog/configs/joint_tour_destination.yaml index bac02c2d7..8043564ee --- a/activitysim/examples/prototype_semcog/configs/joint_tour_destination.yaml +++ b/activitysim/examples/production_semcog/configs/joint_tour_destination.yaml @@ -18,7 +18,7 @@ CHOOSER_SEGMENT_COLUMN_NAME: tour_type SIMULATE_CHOOSER_COLUMNS: - tour_type - - TAZ + - home_zone_id - person_id - income_segment - num_children @@ -26,7 +26,7 @@ SIMULATE_CHOOSER_COLUMNS: LOGSUM_SETTINGS: tour_mode_choice.yaml # model-specific logsum-related settings -CHOOSER_ORIG_COL_NAME: TAZ +CHOOSER_ORIG_COL_NAME: home_zone_id ALT_DEST_COL_NAME: alt_dest IN_PERIOD: 14 OUT_PERIOD: 14 diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_destination_coeffs.csv b/activitysim/examples/production_semcog/configs/joint_tour_destination_coeffs.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_destination_coeffs.csv rename to activitysim/examples/production_semcog/configs/joint_tour_destination_coeffs.csv diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_destination_sample.csv b/activitysim/examples/production_semcog/configs/joint_tour_destination_sample.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_destination_sample.csv rename to activitysim/examples/production_semcog/configs/joint_tour_destination_sample.csv diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_frequency.csv b/activitysim/examples/production_semcog/configs/joint_tour_frequency.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_frequency.csv rename to activitysim/examples/production_semcog/configs/joint_tour_frequency.csv diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_frequency.yaml b/activitysim/examples/production_semcog/configs/joint_tour_frequency.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_frequency.yaml rename to activitysim/examples/production_semcog/configs/joint_tour_frequency.yaml diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_frequency_alternatives.csv b/activitysim/examples/production_semcog/configs/joint_tour_frequency_alternatives.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_frequency_alternatives.csv rename to activitysim/examples/production_semcog/configs/joint_tour_frequency_alternatives.csv diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_frequency_annotate_households_preprocessor.csv b/activitysim/examples/production_semcog/configs/joint_tour_frequency_annotate_households_preprocessor.csv old mode 100755 new mode 100644 similarity index 98% rename from activitysim/examples/prototype_semcog/configs/joint_tour_frequency_annotate_households_preprocessor.csv rename to activitysim/examples/production_semcog/configs/joint_tour_frequency_annotate_households_preprocessor.csv index c5580ed71..03db5879b --- a/activitysim/examples/prototype_semcog/configs/joint_tour_frequency_annotate_households_preprocessor.csv +++ b/activitysim/examples/production_semcog/configs/joint_tour_frequency_annotate_households_preprocessor.csv @@ -29,4 +29,4 @@ Description,Target,Expression logTimeWindowOverlapAdult,log_time_window_overlap_adult,np.log1p(time_window_overlap_adult) logTimeWindowOverlapChild,log_time_window_overlap_child,np.log1p(time_window_overlap_child) logTimeWindowOverlapAdultChild,log_time_window_overlap_adult_child,np.log1p(time_window_overlap_adult_child) -nmRetail,non_motorized_retail_accessibility,"reindex(accessibility.nmRetail, households.TAZ)" +nmRetail,non_motorized_retail_accessibility,"reindex(accessibility.nmRetail, households.home_zone_id)" diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_frequency_coeffs.csv b/activitysim/examples/production_semcog/configs/joint_tour_frequency_coeffs.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_frequency_coeffs.csv rename to activitysim/examples/production_semcog/configs/joint_tour_frequency_coeffs.csv diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_participation.csv b/activitysim/examples/production_semcog/configs/joint_tour_participation.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_participation.csv rename to activitysim/examples/production_semcog/configs/joint_tour_participation.csv diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_participation.yaml b/activitysim/examples/production_semcog/configs/joint_tour_participation.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_participation.yaml rename to activitysim/examples/production_semcog/configs/joint_tour_participation.yaml diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_participation_annotate_participants_preprocessor.csv b/activitysim/examples/production_semcog/configs/joint_tour_participation_annotate_participants_preprocessor.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_participation_annotate_participants_preprocessor.csv rename to activitysim/examples/production_semcog/configs/joint_tour_participation_annotate_participants_preprocessor.csv diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_participation_coeffs.csv b/activitysim/examples/production_semcog/configs/joint_tour_participation_coeffs.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_participation_coeffs.csv rename to activitysim/examples/production_semcog/configs/joint_tour_participation_coeffs.csv diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_scheduling.yaml b/activitysim/examples/production_semcog/configs/joint_tour_scheduling.yaml similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_scheduling.yaml rename to activitysim/examples/production_semcog/configs/joint_tour_scheduling.yaml diff --git a/activitysim/examples/prototype_semcog/configs/joint_tour_scheduling_annotate_tours_preprocessor.csv b/activitysim/examples/production_semcog/configs/joint_tour_scheduling_annotate_tours_preprocessor.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/joint_tour_scheduling_annotate_tours_preprocessor.csv rename to activitysim/examples/production_semcog/configs/joint_tour_scheduling_annotate_tours_preprocessor.csv diff --git a/activitysim/examples/prototype_semcog/configs/logging.yaml b/activitysim/examples/production_semcog/configs/logging.yaml similarity index 88% rename from activitysim/examples/prototype_semcog/configs/logging.yaml rename to activitysim/examples/production_semcog/configs/logging.yaml index 657507ee6..9e7b6142a 100644 --- a/activitysim/examples/prototype_semcog/configs/logging.yaml +++ b/activitysim/examples/production_semcog/configs/logging.yaml @@ -1,70 +1,71 @@ -# 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 - - orca: - level: WARN - handlers: [console, logfile] - propagate: false - - filelock: - level: WARN - - sharrow: - level: INFO - - blib2to3: - level: WARN - - black: - level: WARN - - handlers: - - logfile: - class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] - mode: w - formatter: fileFormatter - level: NOTSET - - console: - class: logging.StreamHandler - stream: ext://sys.stdout - formatter: elapsedFormatter - level: NOTSET - - 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: '{' +# 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: INFO + handlers: [console, logfile] + propagate: false + + orca: + level: WARN + handlers: [console, logfile] + propagate: false + + filelock: + level: WARN + + sharrow: + level: INFO + + blib2to3: + level: WARN + + black: + level: WARN + + 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: NOTSET + + 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/activitysim/examples/prototype_semcog/configs/mandatory_tour_frequency.csv b/activitysim/examples/production_semcog/configs/mandatory_tour_frequency.csv old mode 100755 new mode 100644 similarity index 92% rename from activitysim/examples/prototype_semcog/configs/mandatory_tour_frequency.csv rename to activitysim/examples/production_semcog/configs/mandatory_tour_frequency.csv index 51094ee82..cfc8e1de1 --- a/activitysim/examples/prototype_semcog/configs/mandatory_tour_frequency.csv +++ b/activitysim/examples/production_semcog/configs/mandatory_tour_frequency.csv @@ -99,3 +99,9 @@ util_availability_pre_driving_age_student,Unavailable: Pre-driving age child who util_availability_pre_driving_age_not_in_school,Unavailable: Pre-driving age child who is not in school,ptype == 8,coef_unavailable,coef_unavailable,,coef_unavailable,coef_unavailable util_availability_work_tours_no_usual_work_location,Unavailable: Work tours for those with no usual work location,~(workplace_zone_id > -1),coef_unavailable,coef_unavailable,,,coef_unavailable util_availability_school_tours_no_usual_school_location,Unavailable: School tours for those with no usual school location,~(school_zone_id > -1),,,coef_unavailable,coef_unavailable,coef_unavailable +util_univ_worker_non_family,working university student in non-family housing,(ptype == 3) & (is_worker) & (hht >= 4),coef_univ_worker_non_family_work1,coef_univ_worker_non_family_work2,0,coef_univ_worker_non_family_school2,coef_univ_worker_non_family_work_and_school +util_univ_worker_family,working university student in family housing,(ptype == 3) & (is_worker) & (hht < 4) & (type != 3),coef_univ_worker_family_work1,coef_univ_worker_family_work2,0,coef_univ_worker_family_school2,coef_univ_worker_family_work_and_school +util_univ_worker_GQ,working university student in GQ housing,(ptype == 3) & (is_worker) & (hht < 4) & (type == 3),coef_univ_worker_GQ_work1,coef_univ_worker_GQ_work2,0,coef_univ_worker_GQ_school2,coef_univ_worker_GQ_work_and_school +util_univ_non_worker_non_family,non_working university student in non_family housing,(ptype == 3) & (~is_worker) & (hht >= 4),coef_unavailable,coef_unavailable,0,coef_univ_non_worker_non_family_school2,coef_unavailable +util_univ_non_worker_family,non_working university student in family housing,(ptype == 3) & (~is_worker) & (hht < 4) & (type != 3),coef_unavailable,coef_unavailable,0,coef_univ_non_worker_family_school2,coef_unavailable +util_univ_non_worker_GQ,non_working university student in GQ housing,(ptype == 3) & (~is_worker) & (hht < 4) & (type == 3),coef_unavailable,coef_unavailable,0,coef_univ_non_worker_GQ_school2,coef_unavailable diff --git a/activitysim/examples/prototype_semcog/configs/mandatory_tour_frequency.yaml b/activitysim/examples/production_semcog/configs/mandatory_tour_frequency.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/mandatory_tour_frequency.yaml rename to activitysim/examples/production_semcog/configs/mandatory_tour_frequency.yaml diff --git a/activitysim/examples/prototype_semcog/configs/mandatory_tour_frequency_alternatives.csv b/activitysim/examples/production_semcog/configs/mandatory_tour_frequency_alternatives.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/mandatory_tour_frequency_alternatives.csv rename to activitysim/examples/production_semcog/configs/mandatory_tour_frequency_alternatives.csv diff --git a/activitysim/examples/prototype_semcog/configs/mandatory_tour_frequency_coeffs.csv b/activitysim/examples/production_semcog/configs/mandatory_tour_frequency_coeffs.csv old mode 100755 new mode 100644 similarity index 59% rename from activitysim/examples/prototype_semcog/configs/mandatory_tour_frequency_coeffs.csv rename to activitysim/examples/production_semcog/configs/mandatory_tour_frequency_coeffs.csv index c0909e681..709bb04b6 --- a/activitysim/examples/prototype_semcog/configs/mandatory_tour_frequency_coeffs.csv +++ b/activitysim/examples/production_semcog/configs/mandatory_tour_frequency_coeffs.csv @@ -1,5 +1,20 @@ coefficient_name,value,constrain -coef_unavailable,-999,T +coef_univ_non_worker_GQ_school2,1.1053061791972465,F +coef_univ_non_worker_family_school2,0.4144309804926236,F +coef_univ_non_worker_non_family_school2,0.6905737525503568,F +coef_univ_worker_GQ_school2,0.796660924210737,F +coef_univ_worker_GQ_work1,-1.1776031331447314,F +coef_univ_worker_GQ_work2,-1.3648970409025836,F +coef_univ_worker_GQ_work_and_school,0.14803997146655884,F +coef_univ_worker_family_school2,0.6628398162232699,F +coef_univ_worker_family_work1,-0.46637447728018944,F +coef_univ_worker_family_work2,-1.0892026364474372,F +coef_univ_worker_family_work_and_school,-0.39187199562394276,F +coef_univ_worker_non_family_school2,0.5788696920089542,F +coef_univ_worker_non_family_work1,-0.8581057975250049,F +coef_univ_worker_non_family_work2,-1.9822014482680475,F +coef_univ_worker_non_family_work_and_school,-0.538294137808463,F +coef_unavailable,-999.0,T coef_ft_worker_work2_asc,-3.3781,F coef_pt_worker_work2_asc,-3.0476,F coef_univ_work1_asc,-2.630262534,F @@ -44,11 +59,11 @@ coef_hh_income_gt_50k_worker_work_and_school,0.0347,F coef_hh_income_gt_50k_student_work_and_school,-0.0528,F coef_non_family_hh_category1,-0.25,F coef_non_family_hh_category2,-0.1792,F -coef_num_under_16_not_at_school_work2,0.1804, -coef_num_under_16_not_at_school_school2,0.0866, -coef_num_under_16_not_at_school_work_and_school,-0.1955, -coef_home_urban_work1,-0.2831, -coef_home_urban_work2,0.2308, -coef_home_urban_school1,-0.1361, -coef_home_urban_school2,0.317, -coef_home_urban_work_and_school,-0.3509, +coef_num_under_16_not_at_school_work2,0.1804,F +coef_num_under_16_not_at_school_school2,0.0866,F +coef_num_under_16_not_at_school_work_and_school,-0.1955,F +coef_home_urban_work1,-0.2831,F +coef_home_urban_work2,0.2308,F +coef_home_urban_school1,-0.1361,F +coef_home_urban_school2,0.317,F +coef_home_urban_work_and_school,-0.3509,F diff --git a/activitysim/examples/prototype_semcog/configs/mandatory_tour_scheduling.yaml b/activitysim/examples/production_semcog/configs/mandatory_tour_scheduling.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/mandatory_tour_scheduling.yaml rename to activitysim/examples/production_semcog/configs/mandatory_tour_scheduling.yaml diff --git a/activitysim/examples/production_semcog/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv b/activitysim/examples/production_semcog/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv new file mode 100644 index 000000000..d96114245 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv @@ -0,0 +1,15 @@ +Description,Target,Expression +# make expressions are consistent with reference bins,, +departure_reference_bin,departureRefBin,9 +arrival_reference_bin,arrivalRefBin,29 +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 +departure_reference_bin_school,departureRefBin_school,9 +arrival_reference_bin_school,arrivalRefBin_school,29 +duration_reference_bin_school,durationRefBin_school,16 +departure_shift_school,departureLinearShift1_school,"(9-df.start)*(df.start<=9) + (df.start-9)*(df.start>9)" +arrival_shift_school,arrivalLinearShift1_school,"(29-df.end)*(df.end<=29) + (df.end-29)*(df.end>29)" +duration_shift_school,durationShift_school,"(16-df.duration)*(df.duration<=16) + (df.duration-16)*(df.duration>16)" diff --git a/activitysim/examples/production_semcog/configs/network_los.yaml b/activitysim/examples/production_semcog/configs/network_los.yaml new file mode 100644 index 000000000..4205c066c --- /dev/null +++ b/activitysim/examples/production_semcog/configs/network_los.yaml @@ -0,0 +1,39 @@ + +#inherit_settings: True +#alternate dir to read/write skim cache (defaults to output_dir) +#cache_dir: data/cache + +zone_system: 2 + +#skim_dict_factory: NumpyArraySkimFactory +#skim_dict_factory: MemMapSkimFactory + +# read cached skims (using numpy memmap) from output directory (memmap is faster than omx ) +read_skim_cache: False +# write memmapped cached skims to output directory after reading from omx, for use in subsequent runs +write_skim_cache: False + +taz_skims: skims*.omx + +maz: mazs.csv + +maz_to_maz: + tables: + - maz_to_maz_walk.csv + - maz_to_maz_bike.csv + # # maz_to_maz blending distance (missing or 0 means no blending) + # max_blend_distance: + # DIST: 5 + # # blend distance of 0 means no blending + # DISTBIKE: 0 + # DISTWALK: 0 + + # missing means use the skim value itself rather than DIST skim (e.g. DISTBIKE) + #blend_distance_skim_name: DIST + + +skim_time_periods: + time_window: 1440 + period_minutes: 30 + periods: [0, 7, 12, 23, 31, 48] + labels: &skim_time_period_labels ['EA', 'AM', 'MD', 'PM', 'EV'] diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_destination.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_destination.csv old mode 100755 new mode 100644 similarity index 73% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_destination.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_destination.csv index baf6f3b53..a181dfcaa --- a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_destination.csv +++ b/activitysim/examples/production_semcog/configs/non_mandatory_tour_destination.csv @@ -1,5 +1,6 @@ Description,Expression,escort,shopping,eatout,othmaint,social,othdiscr local_dist,_DIST@skims['DIST'],1,1,1,1,1,1 +dest_county,_DESTCOUNTY@skims['COUNTY'],1,1,1,1,1,1 util_dist,@_DIST,coef_dist_escort,coef_dist_shopping,coef_dist_eatout,coef_dist_othmaint,coef_dist_social,coef_dist_othdiscr util_dist_squared,"@(_DIST).clip(0,20)**2",coef_dist_squared_escort,coef_dist_squared_shopping,coef_dist_squared_eatout,coef_dist_squared_othmaint,,coef_dist_squared_othdiscr util_dist_cubed,"@(_DIST).clip(0,20)**3",coef_dist_cubed_escort,coef_dist_cubed_shopping,coef_dist_cubed_eatout,coef_dist_cubed_othmaint,,coef_dist_cubed_othdiscr @@ -17,3 +18,10 @@ Size variable,@df['size_term'].apply(np.log1p),1,1,1,1,1,1 No attractions,@df['size_term']==0,-999,-999,-999,-999,-999,-999 Mode choice logsum,mode_choice_logsum,coef_mode_logsum_escort,coef_mode_logsum_shopping,coef_mode_logsum_eatout,coef_mode_logsum_othmaint,coef_mode_logsum_social,coef_mode_logsum_othdiscr Sample of alternatives correction factor,"@np.minimum(np.log(df.pick_count/df.prob), 60)",1,1,1,1,1,1 +#,,,,,,, +util_Wayne_washtenaw_ASC,"@np.where((df['home_county']==2) & (_DESTCOUNTY==5), 1, 0)",-0.5,-0.5,-0.5,-0.5,-0.5,-0.5 +util_washtenaw_Wayne_ASC,"@np.where((df['home_county']==5) & (_DESTCOUNTY==2), 1, 0)",-0.5,-0.5,-0.5,-0.5,-0.5,-0.5 +util_detorit_macomb_asc,"@np.where((df['home_county']==1) & (_DESTCOUNTY==4), 1, 0)",-0.3,-0.3,-0.3,-0.3,-0.3,-0.3 +util_macome_detroit_asc,"@np.where((df['home_county']==4) & (_DESTCOUNTY==1), 1, 0)",-0.3,-0.3,-0.3,-0.3,-0.3,-0.3 +util_detroit_oakland_asc,"@np.where((df['home_county']==1) & (_DESTCOUNTY==3), 1, 0)",-0.3,-0.3,-0.3,-0.3,-0.3,-0.3 +util_oakland_detorit_asc,"@np.where((df['home_county']==3) & (_DESTCOUNTY==1), 1, 0)",-0.3,-0.3,-0.3,-0.3,-0.3,-0.3 diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_destination.yaml b/activitysim/examples/production_semcog/configs/non_mandatory_tour_destination.yaml old mode 100755 new mode 100644 similarity index 87% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_destination.yaml rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_destination.yaml index 61ade06f1..ca005185d --- a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_destination.yaml +++ b/activitysim/examples/production_semcog/configs/non_mandatory_tour_destination.yaml @@ -26,7 +26,7 @@ SEGMENTS: SIMULATE_CHOOSER_COLUMNS: - tour_type - - TAZ + - home_zone_id - person_id - income_segment - pemploy @@ -34,11 +34,12 @@ SIMULATE_CHOOSER_COLUMNS: - age_0_to_5 - age_6_to_12 - hh_child + - home_county LOGSUM_SETTINGS: tour_mode_choice.yaml # model-specific logsum-related settings -CHOOSER_ORIG_COL_NAME: TAZ +CHOOSER_ORIG_COL_NAME: home_zone_id ALT_DEST_COL_NAME: alt_dest IN_PERIOD: 14 OUT_PERIOD: 14 @@ -54,10 +55,3 @@ CONSTANTS: WORK_MED_SEGMENT_ID: 2 WORK_HIGH_SEGMENT_ID: 3 WORK_VERYHIGH_SEGMENT_ID: 4 - - -preprocessor: - SPEC: non_mandatory_tour_destination_annotate_tours_preprocessor - DF: tours - TABLES: - - persons \ No newline at end of file diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_destination_coeffs.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_destination_coeffs.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_destination_coeffs.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_destination_coeffs.csv diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_destination_sample.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_destination_sample.csv old mode 100755 new mode 100644 similarity index 72% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_destination_sample.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_destination_sample.csv index 1ab7b426d..8cebab344 --- a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_destination_sample.csv +++ b/activitysim/examples/production_semcog/configs/non_mandatory_tour_destination_sample.csv @@ -1,5 +1,6 @@ Description,Expression,escort,shopping,eatout,othmaint,social,othdiscr local_dist,_DIST@skims['DIST'],1,1,1,1,1,1 +dest_county,_DESTCOUNTY@skims['COUNTY'],1,1,1,1,1,1 util_dist,@_DIST,coef_dist_escort,coef_dist_shopping,coef_dist_eatout,coef_dist_othmaint,coef_dist_social,coef_dist_othdiscr util_dist_squared,"@(_DIST).clip(0,20)**2",coef_dist_squared_escort,coef_dist_squared_shopping,coef_dist_squared_eatout,coef_dist_squared_othmaint,,coef_dist_squared_othdiscr util_dist_cubed,"@(_DIST).clip(0,20)**3",coef_dist_cubed_escort,coef_dist_cubed_shopping,coef_dist_cubed_eatout,coef_dist_cubed_othmaint,,coef_dist_cubed_othdiscr @@ -15,3 +16,10 @@ util_dist_child_0_5,@(df['age_0_to_5']==True) * _DIST,0,0,0,0,0,0 util_dist_child_6_12,@(df['age_6_to_12']==True) * _DIST,0,0,0,0,0,0 Size variable,@df['size_term'].apply(np.log1p),1,1,1,1,1,1 No attractions,@df['size_term']==0,-999,-999,-999,-999,-999,-999 +#,,,,,,, +util_Wayne_washtenaw_ASC,"@np.where((df['home_county']==2) & (_DESTCOUNTY==5), 1, 0)",-5,-5,-5,-5,-5,-5 +util_washtenaw_Wayne_ASC,"@np.where((df['home_county']==5) & (_DESTCOUNTY==2), 1, 0)",-5,-5,-5,-5,-5,-5 +util_detorit_macomb_asc,"@np.where((df['home_county']==1) & (_DESTCOUNTY==4), 1, 0)",-4,-4,-4,-4,-4,-4 +util_macome_detroit_asc,"@np.where((df['home_county']==4) & (_DESTCOUNTY==1), 1, 0)",-4,-4,-4,-4,-4,-4 +util_detroit_oakland_asc,"@np.where((df['home_county']==1) & (_DESTCOUNTY==3), 1, 0)",-4,-4,-4,-4,-4,-4 +util_oakland_detorit_asc,"@np.where((df['home_county']==3) & (_DESTCOUNTY==1), 1, 0)",-4,-4,-4,-4,-4,-4 diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency.csv old mode 100755 new mode 100644 similarity index 99% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency.csv index 76c60822e..e45fd17d6 --- a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency.csv +++ b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency.csv @@ -208,4 +208,11 @@ util_1_plus_maintenance_tours_constant,1+ Maintenance Tours Constant,othmaint >= util_1_plus_eating_out_tours_constant,1+ Eating Out Tours Constant,eatout >= 1,coef_1_plus_eating_out_tours_constant,coef_1_plus_eating_out_tours_constant,coef_1_plus_eating_out_tours_constant,coef_1_plus_eating_out_tours_constant,coef_1_plus_eating_out_tours_constant,coef_1_plus_eating_out_tours_constant,coef_1_plus_eating_out_tours_constant,coef_1_plus_eating_out_tours_constant util_1_plus_visting_tours_constant,1+ Visting Tours Constant,social >= 1,coef_1_plus_visting_tours_constant,coef_1_plus_visting_tours_constant,coef_1_plus_visting_tours_constant,coef_1_plus_visting_tours_constant,coef_1_plus_visting_tours_constant,coef_1_plus_visting_tours_constant,coef_1_plus_visting_tours_constant,coef_1_plus_visting_tours_constant util_1_plus_other_discretionary_tours_constant,1+ Other Discretionary Tours Constant,othdiscr >= 1,coef_1_plus_other_discretionary_tours_constant,coef_1_plus_other_discretionary_tours_constant,coef_1_plus_other_discretionary_tours_constant,coef_1_plus_other_discretionary_tours_constant,coef_1_plus_other_discretionary_tours_constant,coef_1_plus_other_discretionary_tours_constant,coef_1_plus_other_discretionary_tours_constant,coef_1_plus_other_discretionary_tours_constant -util_0_auto_household_and_escorting_tour,Dummy for 0-auto household & Escorting Tour,escort * no_cars,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour \ No newline at end of file +util_0_auto_household_and_escorting_tour,Dummy for 0-auto household & Escorting Tour,escort * no_cars,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour,coef_0_auto_household_and_escorting_tour +#,,,,,,,,,, +util_total_number_of_tours_is_1_calib,Total Number of Tours = 1,tot_tours == 1,0.5,0.5,1.2,-0.6,,0.5,0.5,0.5 +util_total_number_of_tours_is_2_calib,Total Number of Tours = 2,tot_tours == 2,,0.3,1,0.9,0.4,0.5,,0.8 +util_total_number_of_tours_is_3_calib,Total Number of Tours = 3,tot_tours == 3,,,,0.5,,0.1,,0.5 +util_total_number_of_tours_is_4_calib,Total Number of Tours = 4,tot_tours == 4,,,,0.5,,,,0.1 +util_total_number_of_tours_is_5_calib,Total Number of Tours = 5,tot_tours == 5,,,,,,,, +util_total_number_of_tours_is_6_plus_calib,Total Number of Tours = 6+,tot_tours > 5,,,,,,,, diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency.yaml b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency.yaml rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency.yaml diff --git a/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_alternatives.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_alternatives.csv new file mode 100644 index 000000000..09e89fae3 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_alternatives.csv @@ -0,0 +1,97 @@ +escort,shopping,othmaint,othdiscr,eatout,social,tot_tours +0,0,0,0,0,0,0 +0,0,0,1,0,0,1 +0,0,0,0,0,1,1 +0,0,0,1,0,1,2 +0,0,0,0,1,0,1 +0,0,0,1,1,0,2 +0,0,0,0,1,1,2 +0,0,0,1,1,1,3 +0,0,1,0,0,0,1 +0,0,1,1,0,0,2 +0,0,1,0,0,1,2 +0,0,1,1,0,1,3 +0,0,1,0,1,0,2 +0,0,1,1,1,0,3 +0,0,1,0,1,1,3 +0,0,1,1,1,1,4 +0,1,0,0,0,0,1 +0,1,0,1,0,0,2 +0,1,0,0,0,1,2 +0,1,0,1,0,1,3 +0,1,0,0,1,0,2 +0,1,0,1,1,0,3 +0,1,0,0,1,1,3 +0,1,0,1,1,1,4 +0,1,1,0,0,0,2 +0,1,1,1,0,0,3 +0,1,1,0,0,1,3 +0,1,1,1,0,1,4 +0,1,1,0,1,0,3 +0,1,1,1,1,0,4 +0,1,1,0,1,1,4 +0,1,1,1,1,1,5 +1,0,0,0,0,0,1 +1,0,0,1,0,0,2 +1,0,0,0,0,1,2 +1,0,0,1,0,1,3 +1,0,0,0,1,0,2 +1,0,0,1,1,0,3 +1,0,0,0,1,1,3 +1,0,0,1,1,1,4 +1,0,1,0,0,0,2 +1,0,1,1,0,0,3 +1,0,1,0,0,1,3 +1,0,1,1,0,1,4 +1,0,1,0,1,0,3 +1,0,1,1,1,0,4 +1,0,1,0,1,1,4 +1,0,1,1,1,1,5 +1,1,0,0,0,0,2 +1,1,0,1,0,0,3 +1,1,0,0,0,1,3 +1,1,0,1,0,1,4 +1,1,0,0,1,0,3 +1,1,0,1,1,0,4 +1,1,0,0,1,1,4 +1,1,0,1,1,1,5 +1,1,1,0,0,0,3 +1,1,1,1,0,0,4 +1,1,1,0,0,1,4 +1,1,1,1,0,1,5 +1,1,1,0,1,0,4 +1,1,1,1,1,0,5 +1,1,1,0,1,1,5 +1,1,1,1,1,1,6 +2,0,0,0,0,0,2 +2,0,0,1,0,0,3 +2,0,0,0,0,1,3 +2,0,0,1,0,1,4 +2,0,0,0,1,0,3 +2,0,0,1,1,0,4 +2,0,0,0,1,1,4 +2,0,0,1,1,1,5 +2,0,1,0,0,0,3 +2,0,1,1,0,0,4 +2,0,1,0,0,1,4 +2,0,1,1,0,1,5 +2,0,1,0,1,0,4 +2,0,1,1,1,0,5 +2,0,1,0,1,1,5 +2,0,1,1,1,1,6 +2,1,0,0,0,0,3 +2,1,0,1,0,0,4 +2,1,0,0,0,1,4 +2,1,0,1,0,1,5 +2,1,0,0,1,0,4 +2,1,0,1,1,0,5 +2,1,0,0,1,1,5 +2,1,0,1,1,1,6 +2,1,1,0,0,0,4 +2,1,1,1,0,0,5 +2,1,1,0,0,1,5 +2,1,1,1,0,1,6 +2,1,1,0,1,0,5 +2,1,1,1,1,0,6 +2,1,1,0,1,1,6 +2,1,1,1,1,1,7 diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_annotate_persons_preprocessor.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_annotate_persons_preprocessor.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_annotate_persons_preprocessor.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_annotate_persons_preprocessor.csv diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_DRIVING.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_DRIVING.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_DRIVING.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_DRIVING.csv diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_FULL.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_FULL.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_FULL.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_FULL.csv diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_NONWORK.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_NONWORK.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_NONWORK.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_NONWORK.csv diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_PART.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_PART.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_PART.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_PART.csv diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_PRESCHOOL.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_PRESCHOOL.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_PRESCHOOL.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_PRESCHOOL.csv diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_RETIRED.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_RETIRED.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_RETIRED.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_RETIRED.csv diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_SCHOOL.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_SCHOOL.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_SCHOOL.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_SCHOOL.csv diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_UNIVERSITY.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_UNIVERSITY.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_UNIVERSITY.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_coeffs_PTYPE_UNIVERSITY.csv diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_extension_probs.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_extension_probs.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_extension_probs.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_frequency_extension_probs.csv diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling.yaml b/activitysim/examples/production_semcog/configs/non_mandatory_tour_scheduling.yaml similarity index 93% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling.yaml rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_scheduling.yaml index 34b5a9a8e..1dd3561ff 100644 --- a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling.yaml +++ b/activitysim/examples/production_semcog/configs/non_mandatory_tour_scheduling.yaml @@ -11,11 +11,12 @@ preprocessor: - joint_tour_participants SIMULATE_CHOOSER_COLUMNS: - + - home_zone_id - age - female - adult - ptype + - is_university - has_pre_school_child_with_mandatory - has_driving_age_child_with_mandatory - retired_adults_only_hh @@ -32,7 +33,7 @@ SIMULATE_CHOOSER_COLUMNS: - num_add_shop_maint_tours - num_add_soc_discr_tours -#LOGSUM_SETTINGS: tour_mode_choice.yaml +LOGSUM_SETTINGS: tour_mode_choice.yaml # map : : # segmentation of tours for processing may differ from segmentation of spec @@ -72,7 +73,7 @@ SPEC_SEGMENTS: ## alts preprocessor keyed by #ALTS_PREPROCESSOR: # escort: -# SPEC: non_mandatory_tour_scheduling_escort_annotate_alts_preprocessor.csv +# SPEC: tour_scheduling_nonmandatory_escort_annotate_alts_preprocessor.csv # DF: alt_tdd # shopping: # SPEC: non_mandatory_tour_scheduling_shopping_annotate_alts_preprocessor.csv @@ -90,4 +91,4 @@ SPEC_SEGMENTS: # SPEC: non_mandatory_tour_scheduling_annotate_alts_preprocessor.csv # DF: alt_tdd # -#DESTINATION_FOR_TOUR_PURPOSE: destination +DESTINATION_FOR_TOUR_PURPOSE: destination diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_annotate_tours_preprocessor.csv b/activitysim/examples/production_semcog/configs/non_mandatory_tour_scheduling_annotate_tours_preprocessor.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_annotate_tours_preprocessor.csv rename to activitysim/examples/production_semcog/configs/non_mandatory_tour_scheduling_annotate_tours_preprocessor.csv diff --git a/activitysim/examples/production_semcog/configs/parking_location_choice_at_university.yaml b/activitysim/examples/production_semcog/configs/parking_location_choice_at_university.yaml new file mode 100644 index 000000000..85af3dac4 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/parking_location_choice_at_university.yaml @@ -0,0 +1,25 @@ + +# Colunn in the landuse file containing the university codes +LANDUSE_UNIV_CODE_COL_NAME: University_Name +# Specify which university codes should require parking +UNIV_CODES_THAT_REQUIRE_PARKING: + - University of Michigan + +# Parking on campus is should only be required for drive tours +# Names need to be consistent with tour modes +TOUR_MODES_THAT_REQUIRE_PARKING: + - DRIVEALONE + - SHARED2 + - SHARED3 + +# Tour Purposes that should be parked at the nearest lot instead of +# sampled based on lot size (primary_purpose field in tours table) +TOUR_PURPOSES_TO_NEAREST_LOT: + - work + - atwork + +# landuse column that contains the number of parking spaces in zone +LANDUSE_PARKING_SPACES_COL_NAME: parking_spaces +# landuse column containing the university the parking spaces belong to +# codes should match the codes in LANDUSE_UNIV_CODE_COL_NAME +LANDUSE_PARKING_UNIV_CODE_COL_NAME: University_Name diff --git a/activitysim/examples/prototype_semcog/configs/school_location.csv b/activitysim/examples/production_semcog/configs/school_location - Copy.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/school_location.csv rename to activitysim/examples/production_semcog/configs/school_location - Copy.csv diff --git a/activitysim/examples/production_semcog/configs/school_location.csv b/activitysim/examples/production_semcog/configs/school_location.csv new file mode 100644 index 000000000..808e1eb21 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/school_location.csv @@ -0,0 +1,19 @@ +Label,Description,Expression,university,highschool,gradeschool +local_dist,,_DIST@skims['DIST'],1,1,1 +util_dist_0_1,"Distance, piecewise linear from 0 to 1 miles","@_DIST.clip(0,1)",coef_univ_dist_0_1,0,0 +util_dist_1_2,"Distance, piecewise linear from 1 to 2 miles","@(_DIST-1).clip(0,1)",coef_univ_dist_1_2,0,0 +util_dist_2_5,"Distance, piecewise linear from 2 to 5 miles","@(_DIST-2).clip(0,3)",coef_univ_dist_2_5,0,0 +util_dist_5_15,"Distance, piecewise linear from 5 to 15 miles","@(_DIST-5).clip(0,10)",coef_univ_dist_5_15,0,0 +util_dist_15_up,"Distance, piecewise linear for 15+ miles",@(_DIST-15.0).clip(0),coef_univ_dist_15_up,0,0 +util_size_variable,Size variable,@(df['size_term'] * df['shadow_price_size_term_adjustment']).apply(np.log1p),1,1,1 +util_utility_adjustment,utility adjustment,@df['shadow_price_utility_adjustment'],1,1,1 +util_no_attractions,No attractions,@df['size_term']==0,-999,-999,-999 +util_mode_choice_logsum,Mode choice logsum,mode_choice_logsum,coef_mode_logsum_uni,coef_mode_logsum,coef_mode_logsum +util_sample_of_corrections_factor,Sample of alternatives correction factor,"@np.minimum(np.log(df.pick_count/df.prob), 60)",1,1,1 +util_dist,Distance,@_DIST,0,coef_dist,coef_dist +util_dist_squared,"Distance squared, capped at 20 miles","@(_DIST).clip(0,20)**2",0,coef_dist_squared,coef_dist_squared +util_dist_cubed,"Distance cubed, capped at 20 miles","@(_DIST).clip(0,20)**3",0,coef_dist_cubed,coef_dist_cubed +util_dist_logged,Distance logged,@(_DIST).apply(np.log1p),0,coef_dist_logged,coef_dist_logged +util_dist_part_time,"Distance,part time",@(df['pemploy']==2) * _DIST,0,coef_dist_part_time,coef_dist_part_time +util_dist_child_0_5,"Distance,child 0 to 5",@(df['age_0_to_5']==True) * _DIST,0,coef_dist_child_0_5,coef_dist_child_0_5 +util_dist_child_6_12,"Distance,child 6 to 12",@(df['age_6_to_12']==True) * _DIST,0,coef_dist_child_6_12,coef_dist_child_6_12 diff --git a/activitysim/examples/prototype_semcog/configs/school_location.yaml b/activitysim/examples/production_semcog/configs/school_location.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/school_location.yaml rename to activitysim/examples/production_semcog/configs/school_location.yaml diff --git a/activitysim/examples/prototype_semcog/configs/school_location_coeffs.csv b/activitysim/examples/production_semcog/configs/school_location_coeffs.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/school_location_coeffs.csv rename to activitysim/examples/production_semcog/configs/school_location_coeffs.csv diff --git a/activitysim/examples/prototype_semcog/configs/school_location_sample.csv b/activitysim/examples/production_semcog/configs/school_location_sample.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/school_location_sample.csv rename to activitysim/examples/production_semcog/configs/school_location_sample.csv diff --git a/activitysim/examples/prototype_semcog/configs/settings.yaml b/activitysim/examples/production_semcog/configs/settings.yaml old mode 100755 new mode 100644 similarity index 79% rename from activitysim/examples/prototype_semcog/configs/settings.yaml rename to activitysim/examples/production_semcog/configs/settings.yaml index 2aeff430a..23a6b64d8 --- a/activitysim/examples/prototype_semcog/configs/settings.yaml +++ b/activitysim/examples/production_semcog/configs/settings.yaml @@ -1,175 +1,159 @@ -# input tables -# -# activitysim uses "well-known" index and foreign key names for imported tables (e.g. households, persons, land_use) -# as well as for created tables (tours, joint_tour_participants, trips) -# e.g. the households table must have an index column 'household_id' and the foreign key to households in the -# persons table is also household_id. This naming convention allows activitysim to intuit the relationship -# between tables - for instance, to ensure that multiprocess slicing includes all the persons, tours, and trips -# in the same subprocess pipeline. The same strategy is also when chunking choosers, and to support tracing by -# household_id. -# -# the input_table_list index_col directive instructs activitysim to set the imported table index to zone_id -# you cannot change the well-known name of the index by modifying this directive. However, if your input file -# has a different id column name, you can rename it to the required index name with the rename_columns directive. -# In the settings below, the 'TAZ' column in the imported table is renamed 'zone_id' in the rename_columns settings. -# -# input tables -input_table_list: - # - # households (table index 'household_id') - # - - tablename: households - filename: households.csv - index_col: household_id - rename_columns: - persons: hhsize - cars: auto_ownership - zone_id: home_zone_id - recode_columns: - home_zone_id: land_use.zone_id - # - # persons (table index 'person_id') - # - - tablename: persons - filename: persons.csv - index_col: person_id - # - # land_use (table index 'zone_id') - # - - tablename: land_use - filename: land_use.csv - index_col: zone_id - rename_columns: - ZONE: zone_id - recode_columns: - zone_id: zero-based - -# convert input CSVs to HDF5 format and save to outputs directory -# create_input_store: True - -# number of households to simulate -households_sample_size: 100 -# simulate all households -#households_sample_size: 0 - -#hh_ids: override_hh_ids.csv - -chunk_size: 0 - -# assume enough RAM to not chunk -chunk_training_mode: disabled - -# set false to disable variability check in simple_simulate and interaction_simulate -check_for_variability: False - -# - shadow pricing global switches - -# turn shadow_pricing on and off for all models (e.g. school and work) -# shadow pricing is deprecated for less than full samples -# see shadow_pricing.yaml for additional settings -use_shadow_pricing: False - - -# - tracing - -# trace household id; comment out or leave empty for no trace -# households with all tour types -# [ 728370 1234067 1402924 1594625 1595333 1747572 1896849 1931818 2222690 2344951 2677154] -trace_hh_id: 1311364 - -# trace origin, destination in accessibility calculation; comment out or leave empty for no trace -# trace_od: [5, 11] -trace_od: - - -models: - - initialize_landuse - - initialize_households - - compute_accessibility - - work_from_home - - add_size_tables - - school_location - - workplace_location - - transit_pass_subsidy - - transit_pass_ownership - - auto_ownership_simulate - - free_parking - - telecommute_frequency - - cdap_simulate - - mandatory_tour_frequency - - mandatory_tour_scheduling - - joint_tour_frequency - - joint_tour_composition - - joint_tour_participation - - joint_tour_destination - - joint_tour_scheduling - - non_mandatory_tour_frequency - - non_mandatory_tour_destination - - non_mandatory_tour_scheduling - - 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 - - write_data_dictionary - - track_skim_usage - - write_tables - - write_trip_matrices - -# to resume after last successful checkpoint, specify resume_after: _ -resume_after: - -output_tables: - h5_store: False - action: include - prefix: final_ - tables: - - checkpoints - - accessibility - - tablename: land_use - decode_columns: - zone_id: land_use.zone_id - - tablename: households - decode_columns: - home_zone_id: land_use.zone_id - - tablename: persons - decode_columns: - home_zone_id: land_use.zone_id - school_zone_id: nonnegative | land_use.zone_id - workplace_zone_id: nonnegative | land_use.zone_id - - tablename: tours - decode_columns: - origin: land_use.zone_id - destination: land_use.zone_id - - tablename: trips - decode_columns: - origin: land_use.zone_id - destination: land_use.zone_id - - joint_tour_participants - -# area_types less than this are considered urban -urban_threshold: 4 -cbd_threshold: 2 -rural_threshold: 6 - -# - value of time - -# value_of_time = lognormal(np.log(median_value_of_time * mu), sigma).clip(min_vot, max_vot) - -min_value_of_time: 1 -max_value_of_time: 50 -distributed_vot_mu: 0.684 -distributed_vot_sigma: 0.85 - -household_median_value_of_time: - 1: 6.01 - 2: 8.81 - 3: 10.44 - 4: 12.86 - +# input tables +# +# activitysim uses "well-known" index and foreign key names for imported tables (e.g. households, persons, land_use) +# as well as for created tables (tours, joint_tour_participants, trips) +# e.g. the households table must have an index column 'household_id' and the foreign key to households in the +# persons table is also household_id. This naming convention allows activitysim to intuit the relationship +# between tables - for instance, to ensure that multiprocess slicing includes all the persons, tours, and trips +# in the same subprocess pipeline. The same strategy is also when chunking choosers, and to support tracing by +# household_id. +# +# the input_table_list index_col directive instructs activitysim to set the imported table index to zone_id +# you cannot change the well-known name of the index by modifying this directive. However, if your input file +# has a different id column name, you can rename it to the required index name with the rename_columns directive. +# In the settings below, the 'TAZ' column in the imported table is renamed 'zone_id' in the rename_columns settings. +# +# input tables +input_table_list: + # + # households (table index 'household_id') + # + - tablename: households + filename: households.csv + index_col: household_id + rename_columns: + persons: hhsize + cars: auto_ownership + maz: home_zone_id + taz: TAZ + # + # persons (table index 'person_id') + # + - tablename: persons + filename: persons.csv + index_col: person_id + # + # land_use (table index 'zone_id') + # + - tablename: land_use + filename: land_use.csv + index_col: zone_id + rename_columns: + MAZ: zone_id + +want_dest_choice_presampling: True +# convert input CSVs to HDF5 format and save to outputs directory +# create_input_store: True + +# number of households to simulate +households_sample_size: 100 +# simulate all households +#households_sample_size: 0 + +#hh_ids: override_hh_ids.csv + +chunk_size: 0 + +# set false to disable variability check in simple_simulate and interaction_simulate +check_for_variability: False + +# - shadow pricing global switches + +# turn shadow_pricing on and off for all models (e.g. school and work) +# shadow pricing is deprecated for less than full samples +# see shadow_pricing.yaml for additional settings +use_shadow_pricing: False + + +# - tracing + +# trace household id; comment out or leave empty for no trace +# households with all tour types +# [ 728370 1234067 1402924 1594625 1595333 1747572 1896849 1931818 2222690 2344951 2677154] +trace_hh_id: + +# trace origin, destination in accessibility calculation; comment out or leave empty for no trace +# trace_od: [5, 11] +trace_od: + + +models: + - input_checker + - initialize_landuse + - initialize_households + - compute_accessibility + - school_location + - university_location_zone_override + - workplace_location + - work_from_home + - transit_pass_subsidy + - transit_pass_ownership + - auto_ownership_simulate + - free_parking + - telecommute_frequency + - cdap_simulate + - mandatory_tour_frequency + - mandatory_tour_scheduling + - joint_tour_frequency + - joint_tour_composition + - joint_tour_participation + - joint_tour_destination + - joint_tour_scheduling + - non_mandatory_tour_frequency + - non_mandatory_tour_destination + - non_mandatory_tour_scheduling + - 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_destination_univ_zone_override + - parking_location_choice_at_university + - trip_scheduling + - stop_frequency_university_parking + - trip_mode_choice + - write_data_dictionary + - track_skim_usage + - write_tables + - write_trip_matrices + +# to resume after last successful checkpoint, specify resume_after: _ +resume_after: + +output_tables: + h5_store: False + action: include + prefix: final_ + tables: + - checkpoints + - accessibility + - land_use + - households + - persons + - tours + - trips + - joint_tour_participants + +# area_types less than this are considered urban +urban_threshold: 4 +cbd_threshold: 2 +rural_threshold: 6 + +# - value of time + +# value_of_time = lognormal(np.log(median_value_of_time * mu), sigma).clip(min_vot, max_vot) + +min_value_of_time: 1 +max_value_of_time: 50 +distributed_vot_mu: 0.684 +distributed_vot_sigma: 0.85 + +household_median_value_of_time: + 1: 6.01 + 2: 8.81 + 3: 10.44 + 4: 12.86 diff --git a/activitysim/examples/production_semcog/configs/settings_source.yaml b/activitysim/examples/production_semcog/configs/settings_source.yaml new file mode 100644 index 000000000..a4f28f9ac --- /dev/null +++ b/activitysim/examples/production_semcog/configs/settings_source.yaml @@ -0,0 +1,158 @@ +# input tables +# +# activitysim uses "well-known" index and foreign key names for imported tables (e.g. households, persons, land_use) +# as well as for created tables (tours, joint_tour_participants, trips) +# e.g. the households table must have an index column 'household_id' and the foreign key to households in the +# persons table is also household_id. This naming convention allows activitysim to intuit the relationship +# between tables - for instance, to ensure that multiprocess slicing includes all the persons, tours, and trips +# in the same subprocess pipeline. The same strategy is also when chunking choosers, and to support tracing by +# household_id. +# +# the input_table_list index_col directive instructs activitysim to set the imported table index to zone_id +# you cannot change the well-known name of the index by modifying this directive. However, if your input file +# has a different id column name, you can rename it to the required index name with the rename_columns directive. +# In the settings below, the 'TAZ' column in the imported table is renamed 'zone_id' in the rename_columns settings. +# +# input tables +input_table_list: + # + # households (table index 'household_id') + # + - tablename: households + filename: %hh_file% + index_col: household_id + rename_columns: + persons: hhsize + cars: auto_ownership + maz: home_zone_id + taz: TAZ + # + # persons (table index 'person_id') + # + - tablename: persons + filename: %person_file% + index_col: person_id + # + # land_use (table index 'zone_id') + # + - tablename: land_use + filename: %landuse_file% + index_col: zone_id + rename_columns: + MAZ: zone_id + +want_dest_choice_presampling: True +# convert input CSVs to HDF5 format and save to outputs directory +# create_input_store: True + +# number of households to simulate +households_sample_size: 100 +# simulate all households +#households_sample_size: 0 + +#hh_ids: override_hh_ids.csv + +chunk_size: 0 + +# set false to disable variability check in simple_simulate and interaction_simulate +check_for_variability: False + +# - shadow pricing global switches + +# turn shadow_pricing on and off for all models (e.g. school and work) +# shadow pricing is deprecated for less than full samples +# see shadow_pricing.yaml for additional settings +use_shadow_pricing: False + + +# - tracing + +# trace household id; comment out or leave empty for no trace +# households with all tour types +# [ 728370 1234067 1402924 1594625 1595333 1747572 1896849 1931818 2222690 2344951 2677154] +trace_hh_id: + +# trace origin, destination in accessibility calculation; comment out or leave empty for no trace +# trace_od: [5, 11] +trace_od: + + +models: + - initialize_landuse + - initialize_households + - compute_accessibility + - school_location + - university_location_zone_override + - workplace_location + - work_from_home + - transit_pass_subsidy + - transit_pass_ownership + - auto_ownership_simulate + - free_parking + - telecommute_frequency + - cdap_simulate + - mandatory_tour_frequency + - mandatory_tour_scheduling + - joint_tour_frequency + - joint_tour_composition + - joint_tour_participation + - joint_tour_destination + - joint_tour_scheduling + - non_mandatory_tour_frequency + - non_mandatory_tour_destination + - non_mandatory_tour_scheduling + - 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_destination_univ_zone_override + - parking_location_choice_at_university + - trip_scheduling + - stop_frequency_university_parking + - trip_mode_choice + - write_data_dictionary + - track_skim_usage + - write_tables + - write_trip_matrices + +# to resume after last successful checkpoint, specify resume_after: _ +resume_after: + +output_tables: + h5_store: False + action: include + prefix: final_ + tables: + - checkpoints + - accessibility + - land_use + - households + - persons + - tours + - trips + - joint_tour_participants + +# area_types less than this are considered urban +urban_threshold: 4 +cbd_threshold: 2 +rural_threshold: 6 + +# - value of time + +# value_of_time = lognormal(np.log(median_value_of_time * mu), sigma).clip(min_vot, max_vot) + +min_value_of_time: 1 +max_value_of_time: 50 +distributed_vot_mu: 0.684 +distributed_vot_sigma: 0.85 + +household_median_value_of_time: + 1: 6.01 + 2: 8.81 + 3: 10.44 + 4: 12.86 diff --git a/activitysim/examples/prototype_semcog/configs/shadow_pricing.yaml b/activitysim/examples/production_semcog/configs/shadow_pricing.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/shadow_pricing.yaml rename to activitysim/examples/production_semcog/configs/shadow_pricing.yaml diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency.yaml b/activitysim/examples/production_semcog/configs/stop_frequency.yaml old mode 100755 new mode 100644 similarity index 70% rename from activitysim/examples/prototype_semcog/configs/stop_frequency.yaml rename to activitysim/examples/production_semcog/configs/stop_frequency.yaml index 5831f72e7..ad71d2d6e --- a/activitysim/examples/prototype_semcog/configs/stop_frequency.yaml +++ b/activitysim/examples/production_semcog/configs/stop_frequency.yaml @@ -13,34 +13,34 @@ SEGMENT_COL: primary_purpose SPEC_SEGMENTS: - primary_purpose: work SPEC: stop_frequency_work.csv - COEFFICIENTS: _dummy_coefficients.csv + COEFFICIENTS: stop_frequency_coefficients_work.csv - primary_purpose: school SPEC: stop_frequency_school.csv - COEFFICIENTS: _dummy_coefficients.csv + COEFFICIENTS: stop_frequency_coefficients_school.csv - primary_purpose: univ SPEC: stop_frequency_univ.csv - COEFFICIENTS: _dummy_coefficients.csv + COEFFICIENTS: stop_frequency_coefficients_univ.csv - primary_purpose: social SPEC: stop_frequency_social.csv - COEFFICIENTS: _dummy_coefficients.csv + COEFFICIENTS: stop_frequency_coefficients_social.csv - primary_purpose: shopping SPEC: stop_frequency_shopping.csv - COEFFICIENTS: _dummy_coefficients.csv + COEFFICIENTS: stop_frequency_coefficients_shopping.csv - primary_purpose: eatout SPEC: stop_frequency_eatout.csv - COEFFICIENTS: _dummy_coefficients.csv + COEFFICIENTS: stop_frequency_coefficients_eatout.csv - primary_purpose: escort SPEC: stop_frequency_escort.csv - COEFFICIENTS: _dummy_coefficients.csv + COEFFICIENTS: stop_frequency_coefficients_escort.csv - primary_purpose: othmaint SPEC: stop_frequency_othmaint.csv - COEFFICIENTS: _dummy_coefficients.csv + COEFFICIENTS: stop_frequency_coefficients_othmaint.csv - primary_purpose: othdiscr SPEC: stop_frequency_othdiscr.csv - COEFFICIENTS: _dummy_coefficients.csv + COEFFICIENTS: stop_frequency_coefficients_othdiscr.csv - primary_purpose: atwork SPEC: stop_frequency_atwork.csv - COEFFICIENTS: _dummy_coefficients.csv + COEFFICIENTS: stop_frequency_coefficients_atwork.csv CONSTANTS: TRANSIT_MODES: diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_alternatives.csv b/activitysim/examples/production_semcog/configs/stop_frequency_alternatives.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/stop_frequency_alternatives.csv rename to activitysim/examples/production_semcog/configs/stop_frequency_alternatives.csv diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_annotate_tours_preprocessor.csv b/activitysim/examples/production_semcog/configs/stop_frequency_annotate_tours_preprocessor.csv old mode 100755 new mode 100644 similarity index 96% rename from activitysim/examples/prototype_semcog/configs/stop_frequency_annotate_tours_preprocessor.csv rename to activitysim/examples/production_semcog/configs/stop_frequency_annotate_tours_preprocessor.csv index 989f3abe8..89cebd7aa --- a/activitysim/examples/prototype_semcog/configs/stop_frequency_annotate_tours_preprocessor.csv +++ b/activitysim/examples/production_semcog/configs/stop_frequency_annotate_tours_preprocessor.csv @@ -20,6 +20,7 @@ Number of Adults (>= 16 years old),num_adult,"reindex_i(_HH_PERSON_COUNT('age >= ,tour_mode_is_transit,df.tour_mode.isin(TRANSIT_MODES) ,tour_mode_is_drive_transit,df.tour_mode.isin(DRIVE_TO_TRANSIT_MODES) ,tour_mode_is_non_motorized,df.tour_mode.isin(NONMOTORIZED_MODES) +Major University Students as determined by univ location zone override model,is_major_univ_student,df.original_school_zone_id.notna() #,, #num_work_tours already defined,, school but not university,num_school_tours,"reindex_i(df[primary_purpose==SCHOOL_TOUR].groupby('person_id').size(), df.person_id)" diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_atwork.csv b/activitysim/examples/production_semcog/configs/stop_frequency_atwork.csv new file mode 100644 index 000000000..68bfdd522 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_atwork.csv @@ -0,0 +1,13 @@ +Label,Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in +util_middle_to_low_income_hh_,Middle to Low Income HH ,income_in_thousands<50000,,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_ +util_number_of_eating_tours_tours_undertaken_by_the_person,Number of eating tours tours undertaken by the person,num_eatout_tours,,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person,coef_number_of_eating_tours_tours_undertaken_by_the_person +util_subtour_departure_less_than_or_equal_to_11am,Subtour departure less than or equal to 11AM,start<12,,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am,coef_subtour_departure_less_than_or_equal_to_11am +util_subtour_return_time_greater_or_equal_to_2pm,Subtour return time greater or equal to 2PM,end>16,,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm,coef_subtour_return_time_greater_or_equal_to_2pm +util_subtour_duration_in_hours_integer_,Subtour duration in hours (integer),end-start,,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_,coef_subtour_duration_in_hours_integer_ +util_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,dummy for subtour origin (tour destination) at Exurban or Rual (AreaTypes = 6 or 7),destination_area_type >5,,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_ +util_primary_destination_accessibility_log_of_it_,Primary Destination Accessibility (LOG of it),pracc,,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_,coef_primary_destination_accessibility_log_of_it_ +util_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,subtour distance in miles (from tour destination to subtour primary destination one way),distance_in_miles,,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_ +util_alternative_specific_constant_for_outbound_stops,Alternative specific constant for outbound stops,1,,,,,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in +util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,1,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,1,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in +util_Phase1_Calibration,Phase1_Calibration,1,,-0.214873516,-0.08829587,-0.021076701,-0.583908707,1.759594513,1.768617768,0.015908847,-0.496833561,0.742087614,0.721158833,-0.038026423,1.210255745,0.858858431,2.537970801,3.355148354 diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_atwork.csv b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_atwork.csv new file mode 100644 index 000000000..09cd0fd29 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_atwork.csv @@ -0,0 +1,17 @@ +Description,value,coefficient_name +Middle to Low Income HH ,0.45,coef_middle_to_low_income_hh_ +Number of eating tours tours undertaken by the person,-0.28,coef_number_of_eating_tours_tours_undertaken_by_the_person +Subtour departure less than or equal to 11AM,0.31,coef_subtour_departure_less_than_or_equal_to_11am +Subtour return time greater or equal to 2PM,0.34,coef_subtour_return_time_greater_or_equal_to_2pm +Subtour duration in hours (integer),0.56,coef_subtour_duration_in_hours_integer_ +dummy for subtour origin (tour destination) at Exurban or Rual (AreaTypes = 6 or 7),0.27,coef_dummy_for_subtour_origin_tour_destination_at_exurban_or_rual_areatypes_6_or_7_ +Primary Destination Accessibility (LOG of it),0.18,coef_primary_destination_accessibility_log_of_it_ +subtour distance in miles (from tour destination to subtour primary destination one way),0.02,coef_subtour_distance_in_miles_from_tour_destination_to_subtour_primary_destination_one_way_ +Alternative specific constant for return stops,-3.6710000000000003,coef_alternative_specific_constant_for_return_stops_0out_1in +Alternative specific constant for return stops,-5.388,coef_alternative_specific_constant_for_return_stops_0out_2in +Alternative specific constant for the total number of stops,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in +Alternative specific constant for return stops,-6.21,coef_alternative_specific_constant_for_return_stops_0out_3in +Alternative specific constant for outbound stops,-3.8960000000000004,coef_alternative_specific_constant_for_outbound_stops_1out_0in +Alternative specific constant for the total number of stops,2.127,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in +Alternative specific constant for outbound stops,-5.709,coef_alternative_specific_constant_for_outbound_stops_2out_0in +Alternative specific constant for outbound stops,-7.361000000000001,coef_alternative_specific_constant_for_outbound_stops_3out_0in diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_eatout.csv b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_eatout.csv new file mode 100644 index 000000000..a8cd76292 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_eatout.csv @@ -0,0 +1,33 @@ +Description,value,coefficient_name +Number of Vehicles,-0.19,coef_number_of_vehicles +Dummy for all stops made by transit,-0.7,coef_dummy_for_all_stops_made_by_transit +Dummy for walking to all stops,-1.73,coef_dummy_for_walking_to_all_stops +Number of work tours undertaken by the person,-0.28,coef_number_of_work_tours_undertaken_by_the_person +Number of shop tours undertaken by the person,-0.24,coef_number_of_shop_tours_undertaken_by_the_person +At least one kid and one adult participate in the tour,0.37,coef_at_least_one_kid_and_one_adult_participate_in_the_tour +Arrival later than 17:00.,-0.45,coef_arrival_later_than_17_00_ +Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,1.31,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_ +dummy for distance in miles,-0.01,coef_dummy_for_distance_in_miles +No stops if tour mode is driveTransit,-999.0,coef_no_stops_if_tour_mode_is_drivetransit +Alternative specific constant for return stops,-1.761,coef_alternative_specific_constant_for_return_stops_0out_1in +Alternative specific constant for return stops on joint tours,-1.329,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in +Dummy for a return visiting tour,-0.64,coef_dummy_for_a_return_visiting_tour +Alternative specific constant for return stops,-3.697,coef_alternative_specific_constant_for_return_stops_0out_2in +Alternative specific constant for the total number of stops,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in +Alternative specific constant for return stops on joint tours,-2.7960000000000003,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in +Alternative specific constant for the total number of stops on joint tours,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in +Alternative specific constant for return stops,-4.717,coef_alternative_specific_constant_for_return_stops_0out_3in +Alternative specific constant for return stops on joint tours,-3.3789999999999996,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +Number of persons participating in the tour.Outgoing stops interaction,-0.46,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction +Alternative specific constant for outbound stops,-2.19,coef_alternative_specific_constant_for_outbound_stops_1out_0in +Alternative specific constant for outbound stops on joint tours,-1.7830000000000001,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in +Dummy for an outbound visiting tour,-0.69,coef_dummy_for_an_outbound_visiting_tour +Dummy for a visiting tour with both outbound and return leg,0.44,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg +Alternative specific constant for the total number of stops,0.94,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in +Alternative specific constant for the total number of stops on joint tours,0.518,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in +Alternative specific constant for outbound stops,-4.516,coef_alternative_specific_constant_for_outbound_stops_2out_0in +Alternative specific constant for outbound stops on joint tours,-4.067,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in +Alternative specific constant for the total number of stops,2.026,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +Alternative specific constant for the total number of stops on joint tours,1.4969999999999999,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +Alternative specific constant for outbound stops,-5.255,coef_alternative_specific_constant_for_outbound_stops_3out_0in +Alternative specific constant for outbound stops on joint tours,-4.998,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_escort.csv b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_escort.csv new file mode 100644 index 000000000..e78dcf2a2 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_escort.csv @@ -0,0 +1,28 @@ +Description,value,coefficient_name +Number of HH Persons,-0.24,coef_number_of_hh_persons +Number of Students in HH,0.19,coef_number_of_students_in_hh +Dummy for all stops made by transit,-0.7,coef_dummy_for_all_stops_made_by_transit +Dummy for walking to all stops,-1.91,coef_dummy_for_walking_to_all_stops +Number of work tours undertaken by the person,-0.29,coef_number_of_work_tours_undertaken_by_the_person +Number of escort tours tours undertaken by the person,-0.15,coef_number_of_escort_tours_tours_undertaken_by_the_person +Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,0.59,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +dummy for distance less than 5 Miles,0.32,coef_dummy_for_distance_less_than_5_miles +dummy for distance in miles,0.01,coef_dummy_for_distance_in_miles +No stops if tour mode is driveTransit,-999.0,coef_no_stops_if_tour_mode_is_drivetransit +Alternative specific constant for return stops,-0.968,coef_alternative_specific_constant_for_return_stops_0out_1in +Alternative specific constant for return stops on joint tours,-1.329,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in +Alternative specific constant for return stops,-2.41,coef_alternative_specific_constant_for_return_stops_0out_2in +Alternative specific constant for the total number of stops,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in +Alternative specific constant for return stops on joint tours,-2.7960000000000003,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in +Alternative specific constant for the total number of stops on joint tours,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in +Alternative specific constant for return stops,-3.0239999999999996,coef_alternative_specific_constant_for_return_stops_0out_3in +Alternative specific constant for return stops on joint tours,-3.3789999999999996,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +Alternative specific constant for outbound stops,-2.173,coef_alternative_specific_constant_for_outbound_stops_1out_0in +Alternative specific constant for outbound stops on joint tours,-1.7830000000000001,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in +Alternative specific constant for the total number of stops on joint tours,0.518,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in +Alternative specific constant for outbound stops,-4.294,coef_alternative_specific_constant_for_outbound_stops_2out_0in +Alternative specific constant for outbound stops on joint tours,-4.067,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in +Alternative specific constant for the total number of stops,-1.807,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +Alternative specific constant for the total number of stops on joint tours,1.4969999999999999,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +Alternative specific constant for outbound stops,-4.758,coef_alternative_specific_constant_for_outbound_stops_3out_0in +Alternative specific constant for outbound stops on joint tours,-4.998,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_othdiscr.csv b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_othdiscr.csv new file mode 100644 index 000000000..ccc3d25eb --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_othdiscr.csv @@ -0,0 +1,30 @@ +Description,value,coefficient_name +Dummy for all stops made by transit,-0.7,coef_dummy_for_all_stops_made_by_transit +Dummy for walking to all stops,-2.4578,coef_dummy_for_walking_to_all_stops +Number of work tours undertaken by the person,-0.6153,coef_number_of_work_tours_undertaken_by_the_person +Number of shool tours tours undertaken by the person,-0.8176,coef_number_of_shool_tours_tours_undertaken_by_the_person +Number of shop tours undertaken by the person,-0.629,coef_number_of_shop_tours_undertaken_by_the_person +Number of maintenace tours tours undertaken by the person,-0.3715,coef_number_of_maintenace_tours_tours_undertaken_by_the_person +Arrival later than 17:00.,-0.6383,coef_arrival_later_than_17_00_ +Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,0.8335,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +dummy for distance less than 10 Miles ,0.3756,coef_dummy_for_distance_less_than_10_miles_ +dummy for distance in miles,-0.0225,coef_dummy_for_distance_in_miles +No stops if tour mode is driveTransit,-999.0,coef_no_stops_if_tour_mode_is_drivetransit +Alternative specific constant for return stops,-0.9209999999999999,coef_alternative_specific_constant_for_return_stops_0out_1in +Alternative specific constant for return stops on joint tours,-1.329,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in +Alternative specific constant for return stops,-2.336,coef_alternative_specific_constant_for_return_stops_0out_2in +Alternative specific constant for the total number of stops,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in +Alternative specific constant for return stops on joint tours,-2.7960000000000003,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in +Alternative specific constant for the total number of stops on joint tours,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in +Alternative specific constant for return stops,-2.927,coef_alternative_specific_constant_for_return_stops_0out_3in +Alternative specific constant for return stops on joint tours,-3.3789999999999996,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +Alternative specific constant for outbound stops,-1.581,coef_alternative_specific_constant_for_outbound_stops_1out_0in +Alternative specific constant for outbound stops on joint tours,-1.7830000000000001,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in +Alternative specific constant for the total number of stops,0.863,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in +Alternative specific constant for the total number of stops on joint tours,0.518,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in +Alternative specific constant for outbound stops,-3.323,coef_alternative_specific_constant_for_outbound_stops_2out_0in +Alternative specific constant for outbound stops on joint tours,-4.067,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in +Alternative specific constant for the total number of stops,0.9390000000000001,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +Alternative specific constant for the total number of stops on joint tours,1.4969999999999999,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +Alternative specific constant for outbound stops,-4.623,coef_alternative_specific_constant_for_outbound_stops_3out_0in +Alternative specific constant for outbound stops on joint tours,-4.998,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_othmaint.csv b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_othmaint.csv new file mode 100644 index 000000000..1ef7c5e24 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_othmaint.csv @@ -0,0 +1,38 @@ +Description,value,coefficient_name +Middle to Low Income HH ,0.17,coef_middle_to_low_income_hh_ +Mid to High Income HH,0.23,coef_mid_to_high_income_hh +High Income HH,0.24,coef_high_income_hh +Number of HH Persons,-0.31,coef_number_of_hh_persons +Number of Students in HH,0.21,coef_number_of_students_in_hh +Presence of Kids between 0 and 4 (including) years old,0.74,coef_presence_of_kids_between_0_and_4_including_years_old +Dummy for female,0.3012,coef_dummy_for_female +Dummy for all stops made by transit,-0.7,coef_dummy_for_all_stops_made_by_transit +Dummy for walking to all stops,-1.4329,coef_dummy_for_walking_to_all_stops +Number of work tours undertaken by the person,-0.364,coef_number_of_work_tours_undertaken_by_the_person +Number of university tours tours undertaken by the person,-0.6252,coef_number_of_university_tours_tours_undertaken_by_the_person +Number of shool tours tours undertaken by the person,-1.4135,coef_number_of_shool_tours_tours_undertaken_by_the_person +Number of shop tours undertaken by the person,-0.1428,coef_number_of_shop_tours_undertaken_by_the_person +Number of maintenace tours undertaken by the houshold,-0.0468,coef_number_of_maintenace_tours_undertaken_by_the_houshold +Number of persons participating in the tour.Return stops interaction,0.4904,coef_number_of_persons_participating_in_the_tour_return_stops_interaction +Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,0.5134,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +dummy for distance less than 20 Miles ,-0.408,coef_dummy_for_distance_less_than_20_miles_ +dummy for distance in miles,0.0273,coef_dummy_for_distance_in_miles +No stops if tour mode is driveTransit,-999.0,coef_no_stops_if_tour_mode_is_drivetransit +Alternative specific constant for return stops,-0.585,coef_alternative_specific_constant_for_return_stops_0out_1in +Alternative specific constant for return stops on joint tours,-1.329,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in +Alternative specific constant for return stops,-1.48,coef_alternative_specific_constant_for_return_stops_0out_2in +Alternative specific constant for the total number of stops,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in +Alternative specific constant for return stops on joint tours,-2.7960000000000003,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in +Alternative specific constant for the total number of stops on joint tours,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in +Alternative specific constant for return stops,-2.4619999999999997,coef_alternative_specific_constant_for_return_stops_0out_3in +Alternative specific constant for return stops on joint tours,-3.3789999999999996,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +Alternative specific constant for outbound stops,-1.761,coef_alternative_specific_constant_for_outbound_stops_1out_0in +Alternative specific constant for outbound stops on joint tours,-1.7830000000000001,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in +Alternative specific constant for the total number of stops,0.414,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in +Alternative specific constant for the total number of stops on joint tours,0.518,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in +Alternative specific constant for outbound stops,-3.661,coef_alternative_specific_constant_for_outbound_stops_2out_0in +Alternative specific constant for outbound stops on joint tours,-4.067,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in +Alternative specific constant for the total number of stops,0.488,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +Alternative specific constant for the total number of stops on joint tours,1.4969999999999999,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +Alternative specific constant for outbound stops,-5.426,coef_alternative_specific_constant_for_outbound_stops_3out_0in +Alternative specific constant for outbound stops on joint tours,-4.998,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_school.csv b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_school.csv new file mode 100644 index 000000000..9eab1b104 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_school.csv @@ -0,0 +1,21 @@ +Description,value,coefficient_name +Number of HH Persons,-0.506,coef_number_of_hh_persons +Presence of kids between 5 and 15 (including) years old,0.3299,coef_presence_of_kids_between_5_and_15_including_years_old +Number of Cars > Number of Workers,0.5331,coef_number_of_cars_number_of_workers +Dummy for female,0.4099,coef_dummy_for_female +Dummy for all stops made by transit,-0.7,coef_dummy_for_all_stops_made_by_transit +Dummy for walking to all stops,-1.8163,coef_dummy_for_walking_to_all_stops +Number of escort tours tours undertaken by the person,1.2365,coef_number_of_escort_tours_tours_undertaken_by_the_person +Arrival later than 17:00.,1.8377,coef_arrival_later_than_17_00_ +Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,0.9549,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +dummy for distance in miles,0.0438,coef_dummy_for_distance_in_miles +No stops if tour mode is driveTransit,-999.0,coef_no_stops_if_tour_mode_is_drivetransit +Alternative specific constant for return stops,-1.206,coef_alternative_specific_constant_for_return_stops_0out_1in +Alternative specific constant for return stops,-2.6719999999999997,coef_alternative_specific_constant_for_return_stops_0out_2in +Alternative specific constant for the total number of stops,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in +Alternative specific constant for return stops,-3.364,coef_alternative_specific_constant_for_return_stops_0out_3in +Alternative specific constant for outbound stops,-2.123,coef_alternative_specific_constant_for_outbound_stops_1out_0in +Alternative specific constant for the total number of stops,0.701,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in +Alternative specific constant for outbound stops,-3.798,coef_alternative_specific_constant_for_outbound_stops_2out_0in +Alternative specific constant for the total number of stops,1.135,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +Alternative specific constant for outbound stops,-5.85,coef_alternative_specific_constant_for_outbound_stops_3out_0in diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_shopping.csv b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_shopping.csv new file mode 100644 index 000000000..62ce58d76 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_shopping.csv @@ -0,0 +1,33 @@ +Description,value,coefficient_name +Number of HH Persons,-0.1522,coef_number_of_hh_persons +Num kids between 5 and 15 (including) years old,0.0482,coef_num_kids_between_5_and_15_including_years_old +Dummy for female,0.1721,coef_dummy_for_female +Dummy for all stops made by transit,-0.7,coef_dummy_for_all_stops_made_by_transit +Dummy for walking to all stops,-1.4908,coef_dummy_for_walking_to_all_stops +Number of work tours undertaken by the person,-0.5479999999999999,coef_number_of_work_tours_undertaken_by_the_person +Number of university tours tours undertaken by the person,-0.6709,coef_number_of_university_tours_tours_undertaken_by_the_person +Number of maintenace tours tours undertaken by the person,-0.1977,coef_number_of_maintenace_tours_tours_undertaken_by_the_person +Number of shop tours undertaken by the houshold,-0.0733,coef_number_of_shop_tours_undertaken_by_the_houshold +Dummy for only adults participate in the tour,0.1902,coef_dummy_for_only_adults_participate_in_the_tour +Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,0.9056,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +dummy for distance less than 5 Miles,0.3768,coef_dummy_for_distance_less_than_5_miles +dummy for distance in miles,0.0289,coef_dummy_for_distance_in_miles +No stops if tour mode is driveTransit,-999.0,coef_no_stops_if_tour_mode_is_drivetransit +Alternative specific constant for return stops,-1.179,coef_alternative_specific_constant_for_return_stops_0out_1in +Alternative specific constant for return stops on joint tours,-1.329,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in +Alternative specific constant for return stops,-2.305,coef_alternative_specific_constant_for_return_stops_0out_2in +Alternative specific constant for the total number of stops,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in +Alternative specific constant for return stops on joint tours,-2.7960000000000003,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in +Alternative specific constant for the total number of stops on joint tours,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in +Alternative specific constant for return stops,-3.0239999999999996,coef_alternative_specific_constant_for_return_stops_0out_3in +Alternative specific constant for return stops on joint tours,-3.3789999999999996,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +Alternative specific constant for outbound stops,-1.339,coef_alternative_specific_constant_for_outbound_stops_1out_0in +Alternative specific constant for outbound stops on joint tours,-1.7830000000000001,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in +Alternative specific constant for the total number of stops,0.252,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in +Alternative specific constant for the total number of stops on joint tours,0.518,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in +Alternative specific constant for outbound stops,-3.11,coef_alternative_specific_constant_for_outbound_stops_2out_0in +Alternative specific constant for outbound stops on joint tours,-4.067,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in +Alternative specific constant for the total number of stops,0.514,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +Alternative specific constant for the total number of stops on joint tours,1.4969999999999999,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +Alternative specific constant for outbound stops,-4.487,coef_alternative_specific_constant_for_outbound_stops_3out_0in +Alternative specific constant for outbound stops on joint tours,-4.998,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_social.csv b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_social.csv new file mode 100644 index 000000000..ea05f6d1f --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_social.csv @@ -0,0 +1,33 @@ +Description,value,coefficient_name +Number of Vehicles,-0.19,coef_number_of_vehicles +Dummy for all stops made by transit,-0.7,coef_dummy_for_all_stops_made_by_transit +Dummy for walking to all stops,-1.73,coef_dummy_for_walking_to_all_stops +Number of work tours undertaken by the person,-0.28,coef_number_of_work_tours_undertaken_by_the_person +Number of shop tours undertaken by the person,-0.24,coef_number_of_shop_tours_undertaken_by_the_person +At least one kid and one adult participate in the tour,0.37,coef_at_least_one_kid_and_one_adult_participate_in_the_tour +Arrival later than 17:00.,-0.45,coef_arrival_later_than_17_00_ +Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,1.31,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_ +dummy for distance in miles,-0.01,coef_dummy_for_distance_in_miles +No stops if tour mode is driveTransit,-999.0,coef_no_stops_if_tour_mode_is_drivetransit +Alternative specific constant for return stops,-1.12,coef_alternative_specific_constant_for_return_stops_0out_1in +Alternative specific constant for return stops on joint tours,-1.329,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in +Dummy for a return visiting tour,-0.64,coef_dummy_for_a_return_visiting_tour +Alternative specific constant for return stops,-2.764,coef_alternative_specific_constant_for_return_stops_0out_2in +Alternative specific constant for the total number of stops,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in +Alternative specific constant for return stops on joint tours,-2.7960000000000003,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in +Alternative specific constant for the total number of stops on joint tours,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in +Alternative specific constant for return stops,-3.451,coef_alternative_specific_constant_for_return_stops_0out_3in +Alternative specific constant for return stops on joint tours,-3.3789999999999996,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +Number of persons participating in the tour.Outgoing stops interaction,-0.46,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction +Alternative specific constant for outbound stops,-1.081,coef_alternative_specific_constant_for_outbound_stops_1out_0in +Alternative specific constant for outbound stops on joint tours,-1.7830000000000001,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in +Dummy for an outbound visiting tour,-0.69,coef_dummy_for_an_outbound_visiting_tour +Dummy for a visiting tour with both outbound and return leg,0.44,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg +Alternative specific constant for the total number of stops,0.496,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in +Alternative specific constant for the total number of stops on joint tours,0.518,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in +Alternative specific constant for outbound stops,-2.8739999999999997,coef_alternative_specific_constant_for_outbound_stops_2out_0in +Alternative specific constant for outbound stops on joint tours,-4.067,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in +Alternative specific constant for the total number of stops,0.882,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +Alternative specific constant for the total number of stops on joint tours,1.4969999999999999,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +Alternative specific constant for outbound stops,-4.552,coef_alternative_specific_constant_for_outbound_stops_3out_0in +Alternative specific constant for outbound stops on joint tours,-4.998,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_univ.csv b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_univ.csv new file mode 100644 index 000000000..cfdbbce41 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_univ.csv @@ -0,0 +1,20 @@ +Description,value,coefficient_name +Number of HH Persons,-0.2827,coef_number_of_hh_persons +Presence of kids between 5 and 15 (including) years old,0.6823,coef_presence_of_kids_between_5_and_15_including_years_old +Number of Vehicles,0.1703,coef_number_of_vehicles +Dummy for female,0.7349,coef_dummy_for_female +Dummy for all stops made by transit,-0.7,coef_dummy_for_all_stops_made_by_transit +Number of escort tours tours undertaken by the person,0.9018,coef_number_of_escort_tours_tours_undertaken_by_the_person +Arrival later than 17:00.,0.389,coef_arrival_later_than_17_00_ +Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,0.8434,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +HH accesibility for inbound tours. Interaction,0.2481,coef_hh_accesibility_for_inbound_tours_interaction +No stops if tour mode is driveTransit,-999.0,coef_no_stops_if_tour_mode_is_drivetransit +Alternative specific constant for return stops,-2.003,coef_alternative_specific_constant_for_return_stops_0out_1in +Alternative specific constant for return stops,-3.51,coef_alternative_specific_constant_for_return_stops_0out_2in +Alternative specific constant for the total number of stops,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in +Alternative specific constant for return stops,-3.677,coef_alternative_specific_constant_for_return_stops_0out_3in +Alternative specific constant for outbound stops,-2.628,coef_alternative_specific_constant_for_outbound_stops_1out_0in +Alternative specific constant for the total number of stops,1.272,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in +Alternative specific constant for outbound stops,-3.741,coef_alternative_specific_constant_for_outbound_stops_2out_0in +Alternative specific constant for the total number of stops,1.871,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +Alternative specific constant for outbound stops,-4.981,coef_alternative_specific_constant_for_outbound_stops_3out_0in diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_work.csv b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_work.csv new file mode 100644 index 000000000..dd3ebe7d1 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_coefficients_work.csv @@ -0,0 +1,34 @@ +Description,value,coefficient_name +Middle to Low Income HH,0.17,coef_middle_to_low_income_hh +Mid to High Income HH,0.23,coef_mid_to_high_income_hh +High Income HH,0.24,coef_high_income_hh +Number of HH Persons,-0.31,coef_number_of_hh_persons +Number of Students in HH,0.21,coef_number_of_students_in_hh +Presence of Kids between 0 and 4 (including) years old,0.74,coef_presence_of_kids_between_0_and_4_including_years_old +Num kids between 5 and 15 (including) years old,0.08,coef_num_kids_between_5_and_15_including_years_old +Presence of kids between 5 and 15 (including) years old,0.26,coef_presence_of_kids_between_5_and_15_including_years_old +Number of Adults (>= 16 years old),0.03,coef_number_of_adults_16_years_old_ +Number of Cars > Number of Workers,0.16,coef_number_of_cars_number_of_workers +Dummy for female,0.22,coef_dummy_for_female +Dummy for all stops made by transit,-0.7,coef_dummy_for_all_stops_made_by_transit +Dummy for walking to all stops,-1.54,coef_dummy_for_walking_to_all_stops +Number of work tours undertaken by the person,-0.15,coef_number_of_work_tours_undertaken_by_the_person +Number of university tours tours undertaken by the person,-0.48,coef_number_of_university_tours_tours_undertaken_by_the_person +Number of school tours tours undertaken by the person,-1.55,coef_number_of_school_tours_tours_undertaken_by_the_person +Number of escort tours tours undertaken by the person,0.2,coef_number_of_escort_tours_tours_undertaken_by_the_person +Number of shop tours undertaken by the houshold,-0.05,coef_number_of_shop_tours_undertaken_by_the_houshold +AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,-1.93,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours +Evening Arrival (>=19:00) Interacted with return tours,0.31,coef_evening_arrival_19_00_interacted_with_return_tours +Dummy for the duration of the tour being equal or greater than or equal to 11 hours,0.6,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours +dummy for distance less than 20 Miles,-0.22,coef_dummy_for_distance_less_than_20_miles +dummy for distance in miles,0.01,coef_dummy_for_distance_in_miles +No stops if tour mode is driveTransit,-999.0,coef_no_stops_if_tour_mode_is_drivetransit +Alternative specific constant for return stops,-0.445,coef_alternative_specific_constant_for_return_stops_0out_1in +Number of subtours in the tour,0.19,coef_number_of_subtours_in_the_tour +Alternative specific constant for return stops,-1.775,coef_alternative_specific_constant_for_return_stops_0out_2in +Alternative specific constant for the total number of stops,0.0,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in +Alternative specific constant for return stops,-2.1390000000000002,coef_alternative_specific_constant_for_return_stops_0out_3in +Alternative specific constant for outbound stops,-0.833,coef_alternative_specific_constant_for_outbound_stops_1out_0in +Alternative specific constant for outbound stops,-2.613,coef_alternative_specific_constant_for_outbound_stops_2out_0in +Alternative specific constant for the total number of stops,0.695,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +Alternative specific constant for outbound stops,-3.9339999999999997,coef_alternative_specific_constant_for_outbound_stops_3out_0in diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_eatout.csv b/activitysim/examples/production_semcog/configs/stop_frequency_eatout.csv new file mode 100644 index 000000000..70be2a12d --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_eatout.csv @@ -0,0 +1,53 @@ +Label,Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in +util_middle_to_low_income_hh_,Middle to Low Income HH ,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, +util_mid_to_high_income_hh,Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, +util_high_income_hh,High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, +util_number_of_hh_persons,Number of HH Persons,hhsize,,,,,,,,,,,,,,,, +util_number_of_full_time_workes_in_hh,Number of full time workes in HH,num_full,,,,,,,,,,,,,,,, +util_number_of_students_in_hh,Number of Students in HH,num_student,,,,,,,,,,,,,,,, +util_num_kids_between_0_and_4_including_years_old,Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, +util_presence_of_kids_between_0_and_4_including_years_old,Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, +util_num_kids_between_4_and_15_including_years_old,Num kids between 4 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, +util_presence_of_kids_between_5_and_15_including_years_old,Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_adults_16_years_old_,Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, +util_dummy_for_single_parent_household,Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_cars_number_of_workers,Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, +util_number_of_vehicles,Number of Vehicles,auto_ownership,,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles +util_dummy_for_female,Dummy for female,~is_joint & female,,,,,,,,,,,,,,,, +util_dummy_for_all_stops_made_by_transit,Dummy for all stops made by transit,tour_mode_is_transit,,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit +util_dummy_for_walking_to_all_stops,Dummy for walking to all stops,tour_mode_is_non_motorized,,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops +util_number_of_work_tours_undertaken_by_the_person,Number of work tours undertaken by the person,~is_joint * num_work_tours,,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person +util_number_of_university_tours_tours_undertaken_by_the_person,Number of university tours tours undertaken by the person,~is_joint * num_univ_tours,,,,,,,,,,,,,,,, +util_number_of_shool_tours_tours_undertaken_by_the_person,Number of shool tours tours undertaken by the person,~is_joint * num_school_tours,,,,,,,,,,,,,,,, +util_number_of_escort_tours_tours_undertaken_by_the_person,Number of escort tours tours undertaken by the person,~is_joint * num_escort_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_person,Number of shop tours undertaken by the person,~is_joint * num_shop_tours,,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person +util_number_of_maintenace_tours_tours_undertaken_by_the_person,Number of maintenace tours tours undertaken by the person,~is_joint * num_maint_tours,,,,,,,,,,,,,,,, +util_number_of_eating_tours_tours_undertaken_by_the_person,Number of eating tours tours undertaken by the person,~is_joint * num_eatout_tours,,,,,,,,,,,,,,,, +util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours tours undertaken by the person,~is_joint * num_social_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, +util_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction +util_number_of_persons_participating_in_the_tour_return_stops_interaction,Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, +util_at_least_one_kid_and_one_adult_participate_in_the_tour,At least one kid and one adult participate in the tour,composition=='mixed',,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour +util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, +util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_ +util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 10),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 8),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 2),,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_ +util_hh_accesibility_for_outbound_tours_interaction,HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_hh_accesibility_for_inbound_tours_interaction,HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_outbound_tours_interaction,Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_return_tours_interaction,Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_dummy_for_distance_less_than_20_miles_,dummy for distance less than 20 Miles ,(distance_in_miles < 20),,,,,,,,,,,,,,,, +util_dummy_for_distance_in_miles,dummy for distance in miles,distance_in_miles,,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles +util_no_stops_if_tour_mode_is_drivetransit,No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit +util_alternative_specific_constant_for_outbound_stops,Alternative specific constant for outbound stops,~is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in +util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,~is_joint,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,~is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +util_alternative_specific_constant_for_outbound_stops_on_joint_tours,Alternative specific constant for outbound stops on joint tours,is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in +util_alternative_specific_constant_for_return_stops_on_joint_tours,Alternative specific constant for return stops on joint tours,is_joint,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours,Alternative specific constant for the total number of stops on joint tours,is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +util_dummy_for_an_outbound_visiting_tour,Dummy for an outbound visiting tour,primary_purpose == 'social',,,,,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour +util_dummy_for_a_return_visiting_tour,Dummy for a return visiting tour,primary_purpose == 'social',,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour +util_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,Dummy for a visiting tour with both outbound and return leg,primary_purpose == 'social',,,,,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg +util_Phase1_Calibration,Phase1_Calibration,~is_joint,,0.402777606,0.769044419,1.547375234,0.17724742,1.523737838,1.704085866,1.219450496,1.50935493,2.583402672,2.411844468,0.759903236,1.610165394,2.324582352,2.016696053,2.783482815 diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_escort.csv b/activitysim/examples/production_semcog/configs/stop_frequency_escort.csv new file mode 100644 index 000000000..629b1ea1a --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_escort.csv @@ -0,0 +1,47 @@ +Label,Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in +util_middle_to_low_income_hh,Middle to Low Income HH,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, +util_mid_to_high_income_hh,Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, +util_high_income_hh,High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, +util_number_of_hh_persons,Number of HH Persons,hhsize,,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons +util_number_of_full_time_workers_in_hh,Number of full time workers in HH,num_full,,,,,,,,,,,,,,,, +util_number_of_students_in_hh,Number of Students in HH,num_student,,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh +util_num_kids_between_0_and_4_including_years_old,Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, +util_presence_of_kids_between_0_and_4_including_years_old,Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, +util_num_kids_between_5_and_15_including_years_old,Num kids between 5 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, +util_presence_of_kids_between_5_and_15_including_years_old,Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_adults_16_years_old_,Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, +util_dummy_for_single_parent_household,Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_cars_number_of_workers,Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, +util_number_of_vehicles,Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, +util_dummy_for_female,Dummy for female,female,,,,,,,,,,,,,,,, +util_dummy_for_all_stops_made_by_transit,Dummy for all stops made by transit,tour_mode_is_transit,,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit +util_dummy_for_walking_to_all_stops,Dummy for walking to all stops,tour_mode_is_non_motorized,,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops +util_number_of_work_tours_undertaken_by_the_person,Number of work tours undertaken by the person,num_work_tours,,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person +util_number_of_university_tours_tours_undertaken_by_the_person,Number of university tours tours undertaken by the person,num_univ_tours,,,,,,,,,,,,,,,, +util_number_of_school_tours_tours_undertaken_by_the_person,Number of school tours tours undertaken by the person,num_school_tours,,,,,,,,,,,,,,,, +util_number_of_escort_tours_tours_undertaken_by_the_person,Number of escort tours tours undertaken by the person,num_escort_tours,,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person +util_number_of_shop_tours_undertaken_by_the_person,Number of shop tours undertaken by the person,num_shop_tours,,,,,,,,,,,,,,,, +util_number_of_maintenace_tours_tours_undertaken_by_the_person,Number of maintenace tours tours undertaken by the person,num_maint_tours,,,,,,,,,,,,,,,, +util_number_of_eating_tours_tours_undertaken_by_the_person,Number of eating tours tours undertaken by the person,num_eatout_tours,,,,,,,,,,,,,,,, +util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours tours undertaken by the person,num_social_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, +util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, +util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,,,,,,,,,,,,,,, +util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 10),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 8),,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 2),,,,,,,,,,,,,,,, +util_hh_accesibility_for_outbound_tours_interaction,HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_hh_accesibility_for_inbound_tours_interaction,HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_outbound_tours_interaction,Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_return_tours_interaction,Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_dummy_for_distance_less_than_5_miles,dummy for distance less than 5 Miles,(distance_in_miles < 5),,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles +util_dummy_for_distance_in_miles,dummy for distance in miles,distance_in_miles,,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles +util_no_stops_if_tour_mode_is_drivetransit,No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit +util_alternative_specific_constant_for_outbound_stops,Alternative specific constant for outbound stops,~is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in +util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,~is_joint,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,~is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +util_alternative_specific_constant_for_outbound_stops_on_joint_tours,Alternative specific constant for outbound stops on joint tours,is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in +util_alternative_specific_constant_for_return_stops_on_joint_tours,Alternative specific constant for return stops on joint tours,is_joint,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours,Alternative specific constant for the total number of stops on joint tours,is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +util_Phase1_Calibration,Phase1_Calibration,~is_joint,,-0.281471428,-0.016095822,0.633091127,0.54790928,0.034142435,0.648536014,1.179253849,1.588769694,1.014803541,1.362137736,4.47587972,1.689728522,1.349848675,3.365045965,4.461548606 diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_othdiscr.csv b/activitysim/examples/production_semcog/configs/stop_frequency_othdiscr.csv new file mode 100644 index 000000000..bf6b6f281 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_othdiscr.csv @@ -0,0 +1,49 @@ +Label,Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in +util_middle_to_low_income_hh_,Middle to Low Income HH ,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, +util_mid_to_high_income_hh,Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, +util_high_income_hh,High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, +util_number_of_hh_persons,Number of HH Persons,hhsize,,,,,,,,,,,,,,,, +util_number_of_full_time_workes_in_hh,Number of full time workes in HH,num_full,,,,,,,,,,,,,,,, +util_number_of_students_in_hh,Number of Students in HH,num_student,,,,,,,,,,,,,,,, +util_num_kids_between_0_and_4_including_years_old,Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, +util_presence_of_kids_between_0_and_4_including_years_old,Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, +util_num_kids_between_4_and_15_including_years_old,Num kids between 4 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, +util_presence_of_kids_between_5_and_15_including_years_old,Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_adults_16_years_old_,Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, +util_dummy_for_single_parent_household,Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_cars_number_of_workers,Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, +util_number_of_vehicles,Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, +util_dummy_for_female,Dummy for female,~is_joint & female,,,,,,,,,,,,,,,, +util_dummy_for_all_stops_made_by_transit,Dummy for all stops made by transit,tour_mode_is_transit,,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit +util_dummy_for_walking_to_all_stops,Dummy for walking to all stops,tour_mode_is_non_motorized,,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops +util_number_of_work_tours_undertaken_by_the_person,Number of work tours undertaken by the person,~is_joint * num_work_tours,,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person +util_number_of_university_tours_tours_undertaken_by_the_person,Number of university tours tours undertaken by the person,~is_joint * num_univ_tours,,,,,,,,,,,,,,,, +util_number_of_shool_tours_tours_undertaken_by_the_person,Number of shool tours tours undertaken by the person,~is_joint * num_school_tours,,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person +util_number_of_escort_tours_tours_undertaken_by_the_person,Number of escort tours tours undertaken by the person,~is_joint * num_escort_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_person,Number of shop tours undertaken by the person,~is_joint * num_shop_tours,,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person +util_number_of_maintenace_tours_tours_undertaken_by_the_person,Number of maintenace tours tours undertaken by the person,~is_joint * num_maint_tours,,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person +util_number_of_eating_tours_tours_undertaken_by_the_person,Number of eating tours tours undertaken by the person,~is_joint * num_eatout_tours,,,,,,,,,,,,,,,, +util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours tours undertaken by the person,~is_joint * num_social_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, +util_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, +util_number_of_persons_participating_in_the_tour_return_stops_interaction,Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, +util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, +util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_ +util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 10),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 8),,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 2),,,,,,,,,,,,,,,, +util_hh_accesibility_for_outbound_tours_interaction,HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_hh_accesibility_for_inbound_tours_interaction,HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_outbound_tours_interaction,Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_return_tours_interaction,Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_dummy_for_distance_less_than_10_miles_,dummy for distance less than 10 Miles ,(distance_in_miles < 10),,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_,coef_dummy_for_distance_less_than_10_miles_ +util_dummy_for_distance_in_miles,dummy for distance in miles,distance_in_miles,,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles +util_no_stops_if_tour_mode_is_drivetransit,No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit +util_alternative_specific_constant_for_outbound_stops,Alternative specific constant for outbound stops,~is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in +util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,~is_joint,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,~is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +util_alternative_specific_constant_for_outbound_stops_on_joint_tours,Alternative specific constant for outbound stops on joint tours,is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in +util_alternative_specific_constant_for_return_stops_on_joint_tours,Alternative specific constant for return stops on joint tours,is_joint,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours,Alternative specific constant for the total number of stops on joint tours,is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +util_Phase1_Calibration,Phase1_Calibration,~is_joint,,0.187263987,0.670000983,0.992092361,0.283823906,0.461537002,0.958158373,-0.156485013,0.806611419,0.872137091,0.343003767,0.7657564,2.063744949,1.13525473,1.376716611,2.113754844 diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_othmaint.csv b/activitysim/examples/production_semcog/configs/stop_frequency_othmaint.csv new file mode 100644 index 000000000..2c8397388 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_othmaint.csv @@ -0,0 +1,50 @@ +Label,Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in +util_middle_to_low_income_hh_,Middle to Low Income HH ,(income_in_thousands>19999) & (income_in_thousands<50000),,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_,coef_middle_to_low_income_hh_ +util_mid_to_high_income_hh,Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh +util_high_income_hh,High Income HH,(income_in_thousands>=100000),,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh +util_number_of_hh_persons,Number of HH Persons,hhsize,,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons +util_number_of_full_time_workes_in_hh,Number of full time workes in HH,num_full,,,,,,,,,,,,,,,, +util_number_of_students_in_hh,Number of Students in HH,num_student,,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh +util_num_kids_between_0_and_4_including_years_old,Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, +util_presence_of_kids_between_0_and_4_including_years_old,Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old +util_num_kids_between_4_and_15_including_years_old,Num kids between 4 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, +util_presence_of_kids_between_5_and_15_including_years_old,Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_adults_16_years_old_,Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, +util_dummy_for_single_parent_household,Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_cars_number_of_workers,Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, +util_number_of_vehicles,Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, +util_dummy_for_female,Dummy for female,~is_joint & female,,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female +util_dummy_for_all_stops_made_by_transit,Dummy for all stops made by transit,tour_mode_is_transit,,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit +util_dummy_for_walking_to_all_stops,Dummy for walking to all stops,tour_mode_is_non_motorized,,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops +util_number_of_work_tours_undertaken_by_the_person,Number of work tours undertaken by the person,~is_joint * num_work_tours,,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person +util_number_of_university_tours_tours_undertaken_by_the_person,Number of university tours tours undertaken by the person,~is_joint * num_univ_tours,,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person +util_number_of_shool_tours_tours_undertaken_by_the_person,Number of shool tours tours undertaken by the person,~is_joint * num_school_tours,,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person,coef_number_of_shool_tours_tours_undertaken_by_the_person +util_number_of_escort_tours_tours_undertaken_by_the_person,Number of escort tours tours undertaken by the person,~is_joint * num_escort_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_person,Number of shop tours undertaken by the person,~is_joint * num_shop_tours,,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person +util_number_of_maintenace_tours_tours_undertaken_by_the_person,Number of maintenace tours tours undertaken by the person,~is_joint * num_maint_tours,,,,,,,,,,,,,,,, +util_number_of_eating_tours_tours_undertaken_by_the_person,Number of eating tours tours undertaken by the person,~is_joint * num_eatout_tours,,,,,,,,,,,,,,,, +util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours tours undertaken by the person,~is_joint * num_social_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, +util_number_of_maintenace_tours_undertaken_by_the_houshold,Number of maintenace tours undertaken by the houshold,num_hh_maint_tours,,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold,coef_number_of_maintenace_tours_undertaken_by_the_houshold +util_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, +util_number_of_persons_participating_in_the_tour_return_stops_interaction,Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,coef_number_of_persons_participating_in_the_tour_return_stops_interaction,coef_number_of_persons_participating_in_the_tour_return_stops_interaction,coef_number_of_persons_participating_in_the_tour_return_stops_interaction,,coef_number_of_persons_participating_in_the_tour_return_stops_interaction,coef_number_of_persons_participating_in_the_tour_return_stops_interaction,coef_number_of_persons_participating_in_the_tour_return_stops_interaction,,coef_number_of_persons_participating_in_the_tour_return_stops_interaction,coef_number_of_persons_participating_in_the_tour_return_stops_interaction,coef_number_of_persons_participating_in_the_tour_return_stops_interaction,,coef_number_of_persons_participating_in_the_tour_return_stops_interaction,coef_number_of_persons_participating_in_the_tour_return_stops_interaction,coef_number_of_persons_participating_in_the_tour_return_stops_interaction +util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, +util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,,,,,,,,,,,,,,, +util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 10),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 8),,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 2),,,,,,,,,,,,,,,, +util_hh_accesibility_for_outbound_tours_interaction,HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_hh_accesibility_for_inbound_tours_interaction,HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_outbound_tours_interaction,Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_return_tours_interaction,Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_dummy_for_distance_less_than_20_miles_,dummy for distance less than 20 Miles ,(distance_in_miles < 20),,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_,coef_dummy_for_distance_less_than_20_miles_ +util_dummy_for_distance_in_miles,dummy for distance in miles,distance_in_miles,,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles +util_no_stops_if_tour_mode_is_drivetransit,No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit +util_alternative_specific_constant_for_outbound_stops,Alternative specific constant for outbound stops,~is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in +util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,~is_joint,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,~is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +util_alternative_specific_constant_for_outbound_stops_on_joint_tours,Alternative specific constant for outbound stops on joint tours,is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in +util_alternative_specific_constant_for_return_stops_on_joint_tours,Alternative specific constant for return stops on joint tours,is_joint,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours,Alternative specific constant for the total number of stops on joint tours,is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +util_Phase1_Calibration,Phase1_Calibration,~is_joint,,0.475190752,0.530588025,1.389497026,0.960593185,0.775245847,1.122815367,1.226361438,1.683900584,1.594911845,1.101961687,2.302278146,3.35277309,2.734475828,2.746850954,3.93916549 diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_school.csv b/activitysim/examples/production_semcog/configs/stop_frequency_school.csv new file mode 100644 index 000000000..1511de25e --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_school.csv @@ -0,0 +1,45 @@ +Label,Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in +util_middle_to_low_income_hh,Middle to Low Income HH,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, +util_mid_to_high_income_hh,Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, +util_high_income_hh,High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, +util_number_of_hh_persons,Number of HH Persons,hhsize,,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons +util_number_of_full_time_workers_in_hh,Number of full time workers in HH,num_full,,,,,,,,,,,,,,,, +util_number_of_students_in_hh,Number of Students in HH,num_student,,,,,,,,,,,,,,,, +util_num_kids_between_0_and_4_including_years_old,Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, +util_presence_of_kids_between_0_and_4_including_years_old,Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, +util_num_kids_between_5_and_15_including_years_old,Num kids between 5 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, +util_presence_of_kids_between_5_and_15_including_years_old,Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old +util_number_of_adults_16_years_old_,Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, +util_dummy_for_single_parent_household,Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_cars_number_of_workers,Number of Cars > Number of Workers,more_cars_than_workers,,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers +util_number_of_vehicles,Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, +util_dummy_for_female,Dummy for female,female,,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female +util_dummy_for_all_stops_made_by_transit,Dummy for all stops made by transit,tour_mode_is_transit,,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit +util_dummy_for_walking_to_all_stops,Dummy for walking to all stops,tour_mode_is_non_motorized,,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops +util_number_of_work_tours_undertaken_by_the_person,Number of work tours undertaken by the person,num_work_tours,,,,,,,,,,,,,,,, +util_number_of_university_tours_tours_undertaken_by_the_person,Number of university tours tours undertaken by the person,num_univ_tours,,,,,,,,,,,,,,,, +util_number_of_school_tours_tours_undertaken_by_the_person,Number of school tours tours undertaken by the person,num_school_tours,,,,,,,,,,,,,,,, +util_number_of_escort_tours_tours_undertaken_by_the_person,Number of escort tours tours undertaken by the person,num_escort_tours,,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person +util_number_of_shop_tours_undertaken_by_the_person,Number of shop tours undertaken by the person,num_shop_tours,,,,,,,,,,,,,,,, +util_number_of_maintenace_tours_tours_undertaken_by_the_person,Number of maintenace tours tours undertaken by the person,num_maint_tours,,,,,,,,,,,,,,,, +util_number_of_eating_tours_tours_undertaken_by_the_person,Number of eating tours tours undertaken by the person,num_eatout_tours,,,,,,,,,,,,,,,, +util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours tours undertaken by the person,num_social_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, +util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, +util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_ +util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 10),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 8),,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 2),,,,,,,,,,,,,,,, +util_hh_accesibility_for_outbound_tours_interaction,HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_hh_accesibility_for_inbound_tours_interaction,HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_outbound_tours_interaction,Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_return_tours_interaction,Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_dummy_for_distance_less_than_15_miles,dummy for distance less than 15 Miles,(distance_in_miles < 15),,,,,,,,,,,,,,,, +util_dummy_for_distance_in_miles,dummy for distance in miles,distance_in_miles,,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles +util_no_stops_if_tour_mode_is_drivetransit,No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit +util_alternative_specific_constant_for_outbound_stops,Alternative specific constant for outbound stops,1,,,,,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in +util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,1,,coef_alternative_specific_constant_for_return_stops_0out_1in,-2.672,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,-2.672,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,-2.672,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,-2.672,coef_alternative_specific_constant_for_return_stops_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,1,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +util_Phase1_Calibration,Phase1_Calibration,1,,-0.462185603,0.034598859,0.143710811,-0.107820253,0.247416913,0.525399532,0.065742876,-0.264881606,-0.844194184,-0.191651123,-0.295391166,1.390171934,-1.256414914,0.034312538,0.662067578 +#,,,,,,,,,,,,,,,,,, diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_shopping.csv b/activitysim/examples/production_semcog/configs/stop_frequency_shopping.csv new file mode 100644 index 000000000..48944217d --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_shopping.csv @@ -0,0 +1,50 @@ +Label,Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in +util_middle_to_low_income_hh,Middle to Low Income HH,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, +util_mid_to_high_income_hh,Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, +util_high_income_hh,High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, +util_number_of_hh_persons,Number of HH Persons,hhsize,,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons +util_number_of_full_time_workers_in_hh,Number of full time workers in HH,num_full,,,,,,,,,,,,,,,, +util_number_of_students_in_hh,Number of Students in HH,num_student,,,,,,,,,,,,,,,, +util_num_kids_between_0_and_4_including_years_old,Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, +util_presence_of_kids_between_0_and_4_including_years_old,Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, +util_num_kids_between_5_and_15_including_years_old,Num kids between 5 and 15 (including) years old,num_age_5_15,,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old +util_presence_of_kids_between_5_and_15_including_years_old,Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_adults_16_years_old_,Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, +util_dummy_for_single_parent_household,Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_cars_number_of_workers,Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, +util_number_of_vehicles,Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, +util_dummy_for_female,Dummy for female,~is_joint & female,,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female +util_dummy_for_all_stops_made_by_transit,Dummy for all stops made by transit,tour_mode_is_transit,,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit +util_dummy_for_walking_to_all_stops,Dummy for walking to all stops,tour_mode_is_non_motorized,,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops +util_number_of_work_tours_undertaken_by_the_person,Number of work tours undertaken by the person,~is_joint * num_work_tours,,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person +util_number_of_university_tours_tours_undertaken_by_the_person,Number of university tours tours undertaken by the person,~is_joint * num_univ_tours,,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person +util_number_of_school_tours_tours_undertaken_by_the_person,Number of school tours tours undertaken by the person,~is_joint * num_school_tours,,,,,,,,,,,,,,,, +util_number_of_escort_tours_tours_undertaken_by_the_person,Number of escort tours tours undertaken by the person,~is_joint * num_escort_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_person,Number of shop tours undertaken by the person,~is_joint * num_shop_tours,,,,,,,,,,,,,,,, +util_number_of_maintenace_tours_tours_undertaken_by_the_person,Number of maintenace tours tours undertaken by the person,~is_joint * num_maint_tours,,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person,coef_number_of_maintenace_tours_tours_undertaken_by_the_person +util_number_of_eating_tours_tours_undertaken_by_the_person,Number of eating tours tours undertaken by the person,~is_joint * num_eatout_tours,,,,,,,,,,,,,,,, +util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours tours undertaken by the person,~is_joint * num_social_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold +util_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, +util_number_of_persons_participating_in_the_tour_return_stops_interaction,Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, +util_dummy_for_only_adults_participate_in_the_tour,Dummy for only adults participate in the tour,composition=='adults',,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour +util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, +util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,,,,,,,,,,,,,,, +util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 10),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 8),,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 2),,,,,,,,,,,,,,,, +util_hh_accesibility_for_outbound_tours_interaction,HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_hh_accesibility_for_inbound_tours_interaction,HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_outbound_tours_interaction,Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_return_tours_interaction,Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_dummy_for_distance_less_than_5_miles,dummy for distance less than 5 Miles,(distance_in_miles < 5),,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles,coef_dummy_for_distance_less_than_5_miles +util_dummy_for_distance_in_miles,dummy for distance in miles,distance_in_miles,,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles +util_no_stops_if_tour_mode_is_drivetransit,No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit +util_alternative_specific_constant_for_outbound_stops,Alternative specific constant for outbound stops,~is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in +util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,~is_joint,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,~is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +util_alternative_specific_constant_for_outbound_stops_on_joint_tours,Alternative specific constant for outbound stops on joint tours,is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in +util_alternative_specific_constant_for_return_stops_on_joint_tours,Alternative specific constant for return stops on joint tours,is_joint,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours,Alternative specific constant for the total number of stops on joint tours,is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +util_Phase1_Calibration,Phase1_Calibration,~is_joint,,0.061908526,0.211807872,0.269959028,0.159052037,0.386325269,0.209133272,0.563685874,1.002319475,1.182476858,1.537241286,1.004078003,2.038636069,1.69019331,2.060858768,2.809711477 diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_social.csv b/activitysim/examples/production_semcog/configs/stop_frequency_social.csv new file mode 100644 index 000000000..35d3b41fc --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_social.csv @@ -0,0 +1,53 @@ +Label,Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in +util_middle_to_low_income_hh_,Middle to Low Income HH ,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, +util_mid_to_high_income_hh,Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, +util_high_income_hh,High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, +util_number_of_hh_persons,Number of HH Persons,hhsize,,,,,,,,,,,,,,,, +util_number_of_full_time_workes_in_hh,Number of full time workes in HH,num_full,,,,,,,,,,,,,,,, +util_number_of_students_in_hh,Number of Students in HH,num_student,,,,,,,,,,,,,,,, +util_num_kids_between_0_and_4_including_years_old,Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, +util_presence_of_kids_between_0_and_4_including_years_old,Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, +util_num_kids_between_4_and_15_including_years_old,Num kids between 4 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, +util_presence_of_kids_between_5_and_15_including_years_old,Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_adults_16_years_old_,Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, +util_dummy_for_single_parent_household,Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_cars_number_of_workers,Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, +util_number_of_vehicles,Number of Vehicles,auto_ownership,,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles +util_dummy_for_female,Dummy for female,~is_joint & female,,,,,,,,,,,,,,,, +util_dummy_for_all_stops_made_by_transit,Dummy for all stops made by transit,tour_mode_is_transit,,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit +util_dummy_for_walking_to_all_stops,Dummy for walking to all stops,tour_mode_is_non_motorized,,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops +util_number_of_work_tours_undertaken_by_the_person,Number of work tours undertaken by the person,~is_joint * num_work_tours,,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person +util_number_of_university_tours_tours_undertaken_by_the_person,Number of university tours tours undertaken by the person,~is_joint * num_univ_tours,,,,,,,,,,,,,,,, +util_number_of_shool_tours_tours_undertaken_by_the_person,Number of shool tours tours undertaken by the person,~is_joint * num_school_tours,,,,,,,,,,,,,,,, +util_number_of_escort_tours_tours_undertaken_by_the_person,Number of escort tours tours undertaken by the person,~is_joint * num_escort_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_person,Number of shop tours undertaken by the person,~is_joint * num_shop_tours,,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person,coef_number_of_shop_tours_undertaken_by_the_person +util_number_of_maintenace_tours_tours_undertaken_by_the_person,Number of maintenace tours tours undertaken by the person,~is_joint * num_maint_tours,,,,,,,,,,,,,,,, +util_number_of_eating_tours_tours_undertaken_by_the_person,Number of eating tours tours undertaken by the person,~is_joint * num_eatout_tours,,,,,,,,,,,,,,,, +util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours tours undertaken by the person,~is_joint * num_social_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, +util_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction +util_number_of_persons_participating_in_the_tour_return_stops_interaction,Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, +util_at_least_one_kid_and_one_adult_participate_in_the_tour,At least one kid and one adult participate in the tour,composition=='mixed',,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour +util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, +util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_ +util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 10),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 8),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 2),,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_ +util_hh_accesibility_for_outbound_tours_interaction,HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_hh_accesibility_for_inbound_tours_interaction,HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_outbound_tours_interaction,Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_return_tours_interaction,Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_dummy_for_distance_less_than_20_miles_,dummy for distance less than 20 Miles ,(distance_in_miles < 20),,,,,,,,,,,,,,,, +util_dummy_for_distance_in_miles,dummy for distance in miles,distance_in_miles,,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles +util_no_stops_if_tour_mode_is_drivetransit,No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit +util_alternative_specific_constant_for_outbound_stops,Alternative specific constant for outbound stops,~is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in +util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,~is_joint,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,~is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +util_alternative_specific_constant_for_outbound_stops_on_joint_tours,Alternative specific constant for outbound stops on joint tours,is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in +util_alternative_specific_constant_for_return_stops_on_joint_tours,Alternative specific constant for return stops on joint tours,is_joint,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours,Alternative specific constant for the total number of stops on joint tours,is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in +util_dummy_for_an_outbound_visiting_tour,Dummy for an outbound visiting tour,primary_purpose == 'social',,,,,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour +util_dummy_for_a_return_visiting_tour,Dummy for a return visiting tour,primary_purpose == 'social',,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour +util_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,Dummy for a visiting tour with both outbound and return leg,primary_purpose == 'social',,,,,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg +util_Phase1_Calibration,Phase1_Calibration,~is_joint,,0.38246443,0.839705649,1.208071759,0.577945215,0.470848758,0.683396345,0.561543342,1.335624596,0.972779572,1.949517699,0.318404726,3.210420697,0.539522475,0.864775287,3.503722118 diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_univ.csv b/activitysim/examples/production_semcog/configs/stop_frequency_univ.csv new file mode 100644 index 000000000..c059baa07 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_univ.csv @@ -0,0 +1,46 @@ +Label,Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in +util_middle_to_low_income_hh,Middle to Low Income HH,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, +util_mid_to_high_income_hh,Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, +util_high_income_hh,High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, +util_number_of_hh_persons,Number of HH Persons,hhsize,,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons +util_number_of_full_time_workers_in_hh,Number of full time workers in HH,num_full,,,,,,,,,,,,,,,, +util_number_of_students_in_hh,Number of Students in HH,num_student,,,,,,,,,,,,,,,, +util_num_kids_between_0_and_4_including_years_old,Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, +util_presence_of_kids_between_0_and_4_including_years_old,Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, +util_num_kids_between_5_and_15_including_years_old,Num kids between 5 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, +util_presence_of_kids_between_5_and_15_including_years_old,Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old +util_number_of_adults_16_years_old_,Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, +util_dummy_for_single_parent_household,Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_cars_number_of_workers,Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, +util_number_of_vehicles,Number of Vehicles,auto_ownership,,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles,coef_number_of_vehicles +util_dummy_for_female,Dummy for female,female,,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female +util_dummy_for_all_stops_made_by_transit,Dummy for all stops made by transit,tour_mode_is_transit,,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit +util_dummy_for_walking_to_all_stops,Dummy for walking to all stops,tour_mode_is_non_motorized,,,,,,,,,,,,,,,, +util_number_of_work_tours_undertaken_by_the_person,Number of work tours undertaken by the person,num_work_tours,,,,,,,,,,,,,,,, +util_number_of_university_tours_tours_undertaken_by_the_person,Number of university tours tours undertaken by the person,num_univ_tours,,,,,,,,,,,,,,,, +util_number_of_school_tours_tours_undertaken_by_the_person,Number of school tours tours undertaken by the person,num_school_tours,,,,,,,,,,,,,,,, +util_number_of_escort_tours_tours_undertaken_by_the_person,Number of escort tours tours undertaken by the person,num_escort_tours,,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person +util_number_of_shop_tours_undertaken_by_the_person,Number of shop tours undertaken by the person,num_shop_tours,,,,,,,,,,,,,,,, +util_number_of_maintenace_tours_tours_undertaken_by_the_person,Number of maintenace tours tours undertaken by the person,num_maint_tours,,,,,,,,,,,,,,,, +util_number_of_eating_tours_tours_undertaken_by_the_person,Number of eating tours tours undertaken by the person,num_eatout_tours,,,,,,,,,,,,,,,, +util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours tours undertaken by the person,num_social_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, +util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, +util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_ +util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 10),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 8),,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_ +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 2),,,,,,,,,,,,,,,, +util_hh_accesibility_for_outbound_tours_interaction,HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_hh_accesibility_for_inbound_tours_interaction,HH accesibility for inbound tours. Interaction,hhacc,,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction,coef_hh_accesibility_for_inbound_tours_interaction +util_primary_destination_accessibility_for_outbound_tours_interaction,Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_return_tours_interaction,Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_dummy_for_distance_less_than_20_miles,dummy for distance less than 20 Miles,(distance_in_miles < 20),,,,,,,,,,,,,,,, +util_dummy_for_distance_in_miles,dummy for distance in miles,distance_in_miles,,,,,,,,,,,,,,,, +util_no_stops_if_tour_mode_is_drivetransit,No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit +util_alternative_specific_constant_for_outbound_stops,Alternative specific constant for outbound stops,1,,,,,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in +util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,1,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,1,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +util_Phase1_Calibration,Phase1_Calibration,1,,0.420011539,0.781344394,0.733748807,0.712121201,1.545847839,1.973538669,0.675841505,0.652388889,0.802044327,0.807649045,0.537484229,1.764449963,1.356930627,0.668833391,1.667362221 +util_Major University Calibration,Major University Calibration,is_major_univ_student,,-0.199248949,0.652388897,0.625258509,-1.850257358,-1.049976118,-0.922350027,0.617946267,-1.566065939,-0.401448626,-0.508496898,-0.026438159,-3.878745091,-5,0.876560807,-1.094489763 +#,,,,,,,,,,,,,,,,,, diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_university_parking.yaml b/activitysim/examples/production_semcog/configs/stop_frequency_university_parking.yaml new file mode 100644 index 000000000..0cf1111c6 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_university_parking.yaml @@ -0,0 +1,3 @@ + +# name of parking purpose +PARKING_TRIP_NAME: parking diff --git a/activitysim/examples/production_semcog/configs/stop_frequency_work.csv b/activitysim/examples/production_semcog/configs/stop_frequency_work.csv new file mode 100644 index 000000000..e4e03d7f4 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/stop_frequency_work.csv @@ -0,0 +1,45 @@ +Label,Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in +util_middle_to_low_income_hh,Middle to Low Income HH,(income_in_thousands>19999) & (income_in_thousands<50000),,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh,coef_middle_to_low_income_hh +util_mid_to_high_income_hh,Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh,coef_mid_to_high_income_hh +util_high_income_hh,High Income HH,(income_in_thousands>=100000),,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh,coef_high_income_hh +util_number_of_hh_persons,Number of HH Persons,hhsize,,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons,coef_number_of_hh_persons +util_number_of_full_time_workers_in_hh,Number of full time workers in HH,num_full,,,,,,,,,,,,,,,, +util_number_of_students_in_hh,Number of Students in HH,num_student,,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh,coef_number_of_students_in_hh +util_num_kids_between_0_and_4_including_years_old,Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, +util_presence_of_kids_between_0_and_4_including_years_old,Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old,coef_presence_of_kids_between_0_and_4_including_years_old +util_num_kids_between_5_and_15_including_years_old,Num kids between 5 and 15 (including) years old,num_age_5_15,,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old,coef_num_kids_between_5_and_15_including_years_old +util_presence_of_kids_between_5_and_15_including_years_old,Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old,coef_presence_of_kids_between_5_and_15_including_years_old +util_number_of_adults_16_years_old_,Number of Adults (>= 16 years old),num_adult,,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_,coef_number_of_adults_16_years_old_ +util_dummy_for_single_parent_household,Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, +util_number_of_cars_number_of_workers,Number of Cars > Number of Workers,more_cars_than_workers,,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers,coef_number_of_cars_number_of_workers +util_number_of_vehicles,Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, +util_dummy_for_female,Dummy for female,female,,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female,coef_dummy_for_female +util_dummy_for_all_stops_made_by_transit,Dummy for all stops made by transit,tour_mode_is_transit,,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit,coef_dummy_for_all_stops_made_by_transit +util_dummy_for_walking_to_all_stops,Dummy for walking to all stops,tour_mode_is_non_motorized,,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops,coef_dummy_for_walking_to_all_stops +util_number_of_work_tours_undertaken_by_the_person,Number of work tours undertaken by the person,num_work_tours,,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person,coef_number_of_work_tours_undertaken_by_the_person +util_number_of_university_tours_tours_undertaken_by_the_person,Number of university tours tours undertaken by the person,num_univ_tours,,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person,coef_number_of_university_tours_tours_undertaken_by_the_person +util_number_of_school_tours_tours_undertaken_by_the_person,Number of school tours tours undertaken by the person,num_school_tours,,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person,coef_number_of_school_tours_tours_undertaken_by_the_person +util_number_of_escort_tours_tours_undertaken_by_the_person,Number of escort tours tours undertaken by the person,num_escort_tours,,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person,coef_number_of_escort_tours_tours_undertaken_by_the_person +util_number_of_shop_tours_undertaken_by_the_person,Number of shop tours undertaken by the person,num_shop_tours,,,,,,,,,,,,,,,, +util_number_of_maintenace_tours_tours_undertaken_by_the_person,Number of maintenace tours tours undertaken by the person,num_maint_tours,,,,,,,,,,,,,,,, +util_number_of_eating_tours_tours_undertaken_by_the_person,Number of eating tours tours undertaken by the person,num_eatout_tours,,,,,,,,,,,,,,,, +util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours tours undertaken by the person,num_social_tours,,,,,,,,,,,,,,,, +util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold +util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>6) & (start<11),,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,coef_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours +util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 28),,,,,,,,,,,,,,,, +util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 32),,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours,coef_evening_arrival_19_00_interacted_with_return_tours +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 21),,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours,coef_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_11_hours +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_9_hours_,Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 17),,,,,,,,,,,,,,,, +util_dummy_for_the_duration_of_the_tour_being_equal_or_greater_than_or_equal_to_3_hours_,Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 5),,,,,,,,,,,,,,,, +util_hh_accesibility_for_outbound_tours_interaction,HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_hh_accesibility_for_inbound_tours_interaction,HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_outbound_tours_interaction,Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_primary_destination_accessibility_for_return_tours_interaction,Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, +util_dummy_for_distance_less_than_20_miles,dummy for distance less than 20 Miles,(distance_in_miles < 20),,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles,coef_dummy_for_distance_less_than_20_miles +util_dummy_for_distance_in_miles,dummy for distance in miles,distance_in_miles,,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles,coef_dummy_for_distance_in_miles +util_no_stops_if_tour_mode_is_drivetransit,No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit,coef_no_stops_if_tour_mode_is_drivetransit +util_alternative_specific_constant_for_outbound_stops,Alternative specific constant for outbound stops,1,,,,,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_1out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_2out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in,coef_alternative_specific_constant_for_outbound_stops_3out_0in +util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,1,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in +util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,1,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in +util_number_of_subtours_in_the_tour,Number of subtours in the tour,num_atwork_subtours,,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour +util_Phase1_Calibration,Phase1_Calibration,1,,0.223196473,0.325510562,0.203854333,-0.303375802,-0.391244072,-0.093964049,-0.096568307,-0.097190886,-0.494486563,0.334444913,-0.145593481,0.40493641,-0.229067675,0.390561162,0.076806162 diff --git a/activitysim/examples/prototype_semcog/configs/telecommute_frequency.csv b/activitysim/examples/production_semcog/configs/telecommute_frequency.csv old mode 100755 new mode 100644 similarity index 69% rename from activitysim/examples/prototype_semcog/configs/telecommute_frequency.csv rename to activitysim/examples/production_semcog/configs/telecommute_frequency.csv index 265be1b50..5fbe09a99 --- a/activitysim/examples/prototype_semcog/configs/telecommute_frequency.csv +++ b/activitysim/examples/production_semcog/configs/telecommute_frequency.csv @@ -1,8 +1,8 @@ Label,Description,Expression,No_Telecommute,1_day_week,2_3_days_week,4_days_week -#util_Services,Services,@df.occup==52,0,coef_Services_1day,coef_Services_23day,coef_Services_4day -#util_SalesOffice,SalesOffice,@df.occup==53,0,coef_SalesOffice_1day,coef_SalesOffice_23day,coef_SalesOffice_4day -#util_ResourceConstruct,ResourceConstruct,@df.occup==54,0,coef_ResourceConstruct_1day,coef_ResourceConstruct_23day,coef_ResourceConstruct_4day -#util_TransportMat,TransportMat,@df.occup==55,0,coef_TransportMat_1day,coef_TransportMat_23day,coef_TransportMat_4day +util_Services,Services,"@df.naics_category.isin(['56','61','71','72','81'])",0,coef_Services_1day,coef_Services_23day,coef_Services_4day +util_Sales,SalesOffice,"@df.naics_category.isin(['44', '45'])",0,coef_SalesOffice_1day,coef_SalesOffice_23day,coef_SalesOffice_4day +util_Construct,ResourceConstruct,@df.naics_category == '23',0,coef_ResourceConstruct_1day,coef_ResourceConstruct_23day,coef_ResourceConstruct_4day +util_Transport,TransportMat,"@df.naics_category.isin(['48', '49'])",0,coef_TransportMat_1day,coef_TransportMat_23day,coef_TransportMat_4day util_HasChildren0to5,Has children 0 to 5 years old,@df.has_young_children,0,coef_HasChildren0to5_1day,coef_HasChildren0to5_23day,coef_HasChildren0to5_4day util_HasChildren6to12,Has children 6 to 12 years old,@df.has_children_6_to_12,0,coef_HasChildren6to12_1day,coef_HasChildren6to12_23day,coef_HasChildren6to12_4day util_OneAdultInHH,One adult in hh,@df.num_adults==1,0,coef_OneAdultInHH_1day,coef_OneAdultInHH_23day,coef_OneAdultInHH_4day @@ -10,7 +10,7 @@ util_2plusAdultsInHH,2 or more adults in hh,@df.num_adults==2,0,coef_2plusAdults util_Female,female,@df.sex==2,0,coef_Female_1day,coef_Female_23day,coef_Female_4day util_PartTimeWorker,Part-time worker,@df.pemploy==PEMPLOY_PART,0,coef_PartTimeWorker_1day,coef_PartTimeWorker_23day,coef_PartTimeWorker_4day util_CollegeStudent,College student,@df.ptype==PTYPE_UNIVERSITY,0,coef_CollegeStudent_1day,coef_CollegeStudent_23day,coef_CollegeStudent_4day -util_PaysToPark,Pays to park,@~df.free_parking_at_work,0,coef_PaysToPark_1day,coef_PaysToPark_23day,coef_PaysToPark_4day +#util_PaysToPark,Pays to park,@~df.free_parking_at_work,0,coef_PaysToPark_1day,coef_PaysToPark_23day,coef_PaysToPark_4day util_Income60to100k,Income 60-100k,"@df.income.between(60000, 100000)",0,coef_Income60to100k_1day,coef_Income60to100k_23day,coef_Income60to100k_4day util_Income100to150k,Income 100-150k,"@df.income.between(100000, 150000)",0,coef_Income100to150k_1day,coef_Income100to150k_23day,coef_Income100to150k_4day util_Income150kplus,Income 150k+,@df.income > 150000,0,coef_Income150kplus_1day,coef_Income150kplus_23day,coef_Income150kplus_4day @@ -18,4 +18,4 @@ util_0Autos,0 Autos,@df.auto_ownership==0,0,coef_0Autos_1day,coef_0Autos_23day,c util_1Auto,1 Auto,@df.auto_ownership==1,0,coef_1Auto_1day,coef_1Auto_23day,coef_1Auto_4day util_3plusAutos,3+ Autos,@df.auto_ownership>=3,0,coef_3plusAutos_1day,coef_3plusAutos_23day,coef_3plusAutos_4day util_DistanceToWork,Distance to work,@df.distance_to_work,0,coef_DistanceToWork_1day,coef_DistanceToWork_23day,coef_DistanceToWork_4day -util_temp,temp_calibration,1,0.00,-4.00,-4.25,-6.00 +util_calibration_ASC,Calibration constant,1,coef_calib_No_Telecommute_asc,coef_calib_1_day_week_asc,coef_calib_2_3_days_week_asc,coef_calib_4_days_week_asc diff --git a/activitysim/examples/prototype_semcog/configs/telecommute_frequency.yaml b/activitysim/examples/production_semcog/configs/telecommute_frequency.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/telecommute_frequency.yaml rename to activitysim/examples/production_semcog/configs/telecommute_frequency.yaml diff --git a/activitysim/examples/production_semcog/configs/telecommute_frequency_coeffs.csv b/activitysim/examples/production_semcog/configs/telecommute_frequency_coeffs.csv new file mode 100644 index 000000000..c74e32bae --- /dev/null +++ b/activitysim/examples/production_semcog/configs/telecommute_frequency_coeffs.csv @@ -0,0 +1,62 @@ +coefficient_name,value,constrain +coef_Services_1day,-1.624,F +coef_SalesOffice_1day,-0.62,F +coef_ResourceConstruct_1day,-1.57,F +coef_TransportMat_1day,-14.747,F +coef_HasChildren0to5_1day,0,F +coef_HasChildren6to12_1day,0,F +coef_OneAdultInHH_1day,0.177,F +coef_2plusAdultsInHH_1day,0,F +coef_Female_1day,0,F +coef_PartTimeWorker_1day,0,F +coef_CollegeStudent_1day,0,F +coef_PaysToPark_1day,0.457,F +coef_Income60to100k_1day,0.56,F +coef_Income100to150k_1day,0.644,F +coef_Income150kplus_1day,0.92,F +coef_0Autos_1day,0,F +coef_1Auto_1day,0,F +coef_3plusAutos_1day,0,F +coef_DistanceToWork_1day,0.016,F +coef_Services_23day,-0.651,F +coef_SalesOffice_23day,-0.738,F +coef_ResourceConstruct_23day,0,F +coef_TransportMat_23day,0,F +coef_HasChildren0to5_23day,0,F +coef_HasChildren6to12_23day,0.517,F +coef_OneAdultInHH_23day,0,F +coef_2plusAdultsInHH_23day,0,F +coef_Female_23day,0,F +coef_PartTimeWorker_23day,0.425,F +coef_CollegeStudent_23day,0.6,F +coef_PaysToPark_23day,0,F +coef_Income60to100k_23day,0.389,F +coef_Income100to150k_23day,0.193,F +coef_Income150kplus_23day,0.765,F +coef_0Autos_23day,0.407,F +coef_1Auto_23day,0,F +coef_3plusAutos_23day,-0.73,F +coef_DistanceToWork_23day,0,F +coef_Services_4day,0,F +coef_SalesOffice_4day,-0.894,F +coef_ResourceConstruct_4day,0,F +coef_TransportMat_4day,0,F +coef_HasChildren0to5_4day,-0.864,F +coef_HasChildren6to12_4day,-0.81,F +coef_OneAdultInHH_4day,-0.043,F +coef_2plusAdultsInHH_4day,0,F +coef_Female_4day,0,F +coef_PartTimeWorker_4day,1.112,F +coef_CollegeStudent_4day,0,F +coef_PaysToPark_4day,0,F +coef_Income60to100k_4day,0,F +coef_Income100to150k_4day,0,F +coef_Income150kplus_4day,0,F +coef_0Autos_4day,0,F +coef_1Auto_4day,0,F +coef_3plusAutos_4day,0,F +coef_DistanceToWork_4day,0,F +coef_calib_No_Telecommute_asc,-0.013380448,F +coef_calib_1_day_week_asc,-3.5028756,F +coef_calib_2_3_days_week_asc,-4.205827551,F +coef_calib_4_days_week_asc,-6.218810634,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_departure_and_duration_alternatives.csv b/activitysim/examples/production_semcog/configs/tour_departure_and_duration_alternatives.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/tour_departure_and_duration_alternatives.csv rename to activitysim/examples/production_semcog/configs/tour_departure_and_duration_alternatives.csv diff --git a/activitysim/examples/production_semcog/configs/tour_departure_and_duration_segments.csv b/activitysim/examples/production_semcog/configs/tour_departure_and_duration_segments.csv new file mode 100644 index 000000000..03bb92869 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_departure_and_duration_segments.csv @@ -0,0 +1,60 @@ +tour_purpose,time_period,start,end +work,EA,1,6 +work,AM,9,10 +work,MD,13,24 +work,PM,25,27 +work,EV,33,35 +#,,, +school,EA,1,6 +school,AM,9,10 +school,MD,13,24 +school,PM,25,27 +school,EV,33,35 +#,,, +univ,EA,1,6 +univ,AM,9,10 +univ,MD,13,24 +univ,PM,25,27 +univ,EV,33,35 +#,,, +shopping,EA,1,6 +shopping,AM,9,10 +shopping,MD,13,24 +shopping,PM,25,27 +shopping,EV,33,35 +#,,, +escort,EA,1,6 +escort,AM,9,10 +escort,MD,13,24 +escort,PM,25,27 +escort,EV,33,35 +#,,, +othmaint,EA,1,6 +othmaint,AM,9,10 +othmaint,MD,13,24 +othmaint,PM,25,27 +othmaint,EV,33,35 +#,,, +othdiscr,EA,1,6 +othdiscr,AM,9,10 +othdiscr,MD,13,24 +othdiscr,PM,25,27 +othdiscr,EV,33,35 +#,,, +social,EA,1,6 +social,AM,9,10 +social,MD,13,24 +social,PM,25,27 +social,EV,33,35 +#,,, +eatout,EA,1,6 +eatout,AM,9,10 +eatout,MD,13,24 +eatout,PM,25,27 +eatout,EV,33,35 +#,,, +atwork,EA,1,6 +atwork,AM,9,10 +atwork,MD,13,24 +atwork,PM,25,27 +atwork,EV,33,35 diff --git a/activitysim/examples/prototype_semcog/configs/tour_mode_choice.csv b/activitysim/examples/production_semcog/configs/tour_mode_choice.csv old mode 100755 new mode 100644 similarity index 82% rename from activitysim/examples/prototype_semcog/configs/tour_mode_choice.csv rename to activitysim/examples/production_semcog/configs/tour_mode_choice.csv index dfeb0a526..0ec02a337 --- a/activitysim/examples/prototype_semcog/configs/tour_mode_choice.csv +++ b/activitysim/examples/production_semcog/configs/tour_mode_choice.csv @@ -5,29 +5,26 @@ util_DRIVEALONE_Unavailable_for_persons_less_than_16,DRIVEALONE - Unavailable fo util_DRIVEALONE_Unavailable_forJoint_tours,DRIVEALONE - Unavailable for joint tours,is_joint == True,-999,,,,,,,,,,,,,,,,, util_DRIVEALONE_Unavailable_if_didn't_drive_to_work,DRIVEALONE - Unavailable if didn't drive to work,is_atwork_subtour & ~work_tour_is_SOV,-999,,,,,,,,,,,,,,,,, util_DRIVEALONE_In_vehicle_time,DRIVEALONE - In-vehicle time,@odt_skims['SOV_TIME'] + dot_skims['SOV_TIME'],coef_ivt,,,,,,,,,,,,,,,,, -util_DRIVEALONE_Terminal_time,DRIVEALONE - Terminal time,@2 * walktimeshort_multiplier * df.terminal_time,0,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Terminal_time,DRIVEALONE - Terminal time,@2 * walktimeshort_multiplier * df.terminal_time,coef_ivt,,,,,,,,,,,,,,,,, util_DRIVEALONE_Operating_cost_,DRIVEALONE - Operating cost ,@ivt_cost_multiplier * df.ivot * costPerMile * (odt_skims['SOV_DIST'] + dot_skims['SOV_DIST']),coef_ivt,,,,,,,,,,,,,,,,, util_DRIVEALONE_Parking_cost_,DRIVEALONE - Parking cost ,@ivt_cost_multiplier * df.ivot * df.daily_parking_cost,coef_ivt,,,,,,,,,,,,,,,,, -#util_DRIVEALONE_Bridge_toll_,DRIVEALONE - Bridge toll ,@ivt_cost_multiplier * df.ivot * (odt_skims['SOV_BTOLL'] + dot_skims['SOV_BTOLL']),0,,,,,,,,,,,,,,,,, util_DRIVEALONE_Person_is_between_16_and_19_years_old,DRIVEALONE - Person is between 16 and 19 years old,@(df.age >= 16) & (df.age <= 19),coef_age1619_da_multiplier,,,,,,,,,,,,,,,,, #Shared_ride_2,#Shared ride 2,,,,,,,,,,,,,,,,,,, util_SHARED2_Unavailable,SHARED2 - Unavailable,hov2_available == False,,-999,,,,,,,,,,,,,,,, util_SHARED2_Unavailable_based_on_party_size,SHARED2 - Unavailable based on party size,is_joint & (number_of_participants > 2),,-999,,,,,,,,,,,,,,,, util_SHARED2_In_vehicle_time,SHARED2 - In-vehicle time,@(odt_skims['HOV2_TIME'] + dot_skims['HOV2_TIME']),,coef_ivt,,,,,,,,,,,,,,,, -util_SHARED2_Terminal_time,SHARED2 - Terminal time,@2 * walktimeshort_multiplier * df.terminal_time,,0,,,,,,,,,,,,,,,, +util_SHARED2_Terminal_time,SHARED2 - Terminal time,@2 * walktimeshort_multiplier * df.terminal_time,,coef_ivt,,,,,,,,,,,,,,,, util_SHARED2_Operating_cost,SHARED2 - Operating cost,@ivt_cost_multiplier * df.ivot * costPerMile * (odt_skims['HOV2_DIST'] + dot_skims['HOV2_DIST']),,coef_ivt,,,,,,,,,,,,,,,, util_SHARED2_Parking_cost,SHARED2 - Parking cost,@ivt_cost_multiplier * df.ivot * df.daily_parking_cost / costShareSr2,,coef_ivt,,,,,,,,,,,,,,,, -#util_SHARED2_Bridge_toll,SHARED2 - Bridge toll,@ivt_cost_multiplier * df.ivot * (odt_skims['HOV2_BTOLL'] + dot_skims['HOV2_BTOLL']) / costShareSr2,,0,,,,,,,,,,,,,,,, util_SHARED2_One_person_household,SHARED2 - One person household,@(df.hhsize == 1),,coef_hhsize1_sr_multiplier,,,,,,,,,,,,,,,, util_SHARED2_Two_person_household,SHARED2 - Two person household,@(df.hhsize == 2),,coef_hhsize2_sr_multiplier,,,,,,,,,,,,,,,, util_SHARED2_Person_is_16_years_old_or_older,SHARED2 - Person is 16 years old or older,@(df.age >= 16),,coef_age16p_sr_multiplier,,,,,,,,,,,,,,,, #Shared_ride_3+,#Shared ride 3+,,,,,,,,,,,,,,,,,,, util_SHARED3_Unavailable,SHARED3 - Unavailable,hov3_available == False,,,-999,,,,,,,,,,,,,,, util_SHARED3_In_vehicle_time,SHARED3 - In-vehicle time,@(odt_skims['HOV3_TIME'] + dot_skims['HOV3_TIME']),,,coef_ivt,,,,,,,,,,,,,,, -util_SHARED3_Terminal_time,SHARED3 - Terminal time,@2 * walktimeshort_multiplier * df.terminal_time,,,0,,,,,,,,,,,,,,, +util_SHARED3_Terminal_time,SHARED3 - Terminal time,@2 * walktimeshort_multiplier * df.terminal_time,,,coef_ivt,,,,,,,,,,,,,,, util_SHARED3_Operating_cost,SHARED3 - Operating cost,@ivt_cost_multiplier * df.ivot * costPerMile * (odt_skims['HOV3_DIST'] + dot_skims['HOV3_DIST']),,,coef_ivt,,,,,,,,,,,,,,, util_SHARED3_Parking_cost,SHARED3 - Parking cost,@ivt_cost_multiplier * df.ivot * df.daily_parking_cost / costShareSr3,,,coef_ivt,,,,,,,,,,,,,,, -#util_SHARED3_Bridge_toll,SHARED3 - Bridge toll,@ivt_cost_multiplier * df.ivot * (odt_skims['HOV3_BTOLL'] + dot_skims['HOV3_BTOLL']) / costShareSr3,,,0,,,,,,,,,,,,,,, util_SHARED3_One_person_household,SHARED3 - One person household,@(df.hhsize == 1),,,coef_hhsize1_sr_multiplier,,,,,,,,,,,,,,, util_SHARED3_Two_person_household,SHARED3 - Two person household,@(df.hhsize == 2),,,coef_hhsize2_sr_multiplier,,,,,,,,,,,,,,, util_SHARED3_Person_is_16_years_old_or_older,SHARED3 - Person is 16 years old or older,@(df.age >= 16),,,coef_age16p_sr_multiplier,,,,,,,,,,,,,,, @@ -36,14 +33,12 @@ util_SHARED3_Person_is_16_years_old_or_older,SHARED3 - Person is 16 years old or util_WALK_Time_up_to_2_miles,WALK - Time up to 2 miles,@walktimeshort_multiplier * (od_skims['DISTWALK'].clip(upper=walkThresh) + od_skims.reverse('DISTWALK').clip(upper=walkThresh))*60/walkSpeed,,,,coef_ivt,,,,,,,,,,,,,, util_WALK_Time_beyond_2_of_a_miles,WALK - Time beyond 2 of a miles,@walktimelong_multiplier * ((od_skims['DISTWALK'] - walkThresh).clip(lower=0) + (od_skims.reverse('DISTWALK') - walkThresh).clip(lower=0))*60/walkSpeed,,,,coef_ivt,,,,,,,,,,,,,, util_WALK_Destination_zone_densityIndex,WALK - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,coef_ivt,,,,,,,,,,,,,, -util_WALK_Topology,WALK - Topology,@coef_topology_walk_multiplier * df.dest_topology,,,,coef_ivt,,,,,,,,,,,,,, #util_BIKE,#Bike,,,,,,,,,,,,,,,,,,, #FIXME_skims_aren't_symmetrical,#FIXME - skims aren't symmetrical, so we have to make sure they can get back,,,,,,,,,,,,,,,,,, util_BIKE_Unavailable_if_didn't_BIKE_to_work,BIKE - Unavailable if didn't bike to work,is_atwork_subtour & ~work_tour_is_bike,,,,,-999,,,,,,,,,,,,, util_BIKE_Time_up_to_6_miles,BIKE - Time up to 6 miles,@biketimeshort_multiplier * (od_skims['DISTBIKE'].clip(upper=bikeThresh) + od_skims.reverse('DISTBIKE').clip(upper=bikeThresh))*60/bikeSpeed,,,,,coef_ivt,,,,,,,,,,,,, util_BIKE_Time_beyond_6_of_a_miles,BIKE - Time beyond 6 of a miles,@biketimelong_multiplier * ((od_skims['DISTBIKE']-bikeThresh).clip(lower=0) + (od_skims.reverse('DISTBIKE')-bikeThresh).clip(lower=0))*60/bikeSpeed,,,,,coef_ivt,,,,,,,,,,,,, util_BIKE_Destination_zone_densityIndex,BIKE - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,coef_ivt,,,,,,,,,,,,, -util_BIKE_Topology,BIKE - Topology,@coef_topology_bike_multiplier * df.dest_topology,,,,,coef_ivt,,,,,,,,,,,,, #util_WALK_to_Local,#Walk to Local,,,,,,,,,,,,,,,,,,, util_WALK_LOC_Unavailable,WALK_LOC - Unavailable,walk_local_available == False,,,,,,-999,,,,,,,,,,,, util_WALK_LOC_In_vehicle_time,WALK_LOC - In-vehicle time,@(odt_skims['WLK_LOC_IVT'] + dot_skims['WLK_LOC_IVT']),,,,,,coef_ivt,,,,,,,,,,,, @@ -51,12 +46,11 @@ util_WALK_LOC_Short_iwait_time,WALK_LOC - Short iwait time,@short_i_wait_multipl util_WALK_LOC_Long_iwait_time,WALK_LOC - Long iwait time,@long_i_wait_multiplier * ((odt_skims['WLK_LOC_IWAIT']-waitThresh).clip(0) + (dot_skims['WLK_LOC_IWAIT']-waitThresh).clip(0)),,,,,,coef_ivt,,,,,,,,,,,, util_WALK_LOC_transfer_wait_time,WALK_LOC - transfer wait time,@xwait_multiplier * (odt_skims['WLK_LOC_XWAIT'] + dot_skims['WLK_LOC_XWAIT']),,,,,,coef_ivt,,,,,,,,,,,, util_WALK_LOC_number_of_transfers,WALK_LOC - number of transfers,@xfers_wlk_multiplier * ((odt_skims['WLK_LOC_NT']).clip(0) + (dot_skims['WLK_LOC_NT']).clip(0)),,,,,,coef_ivt,,,,,,,,,,,, -util_WALK_LOC_Walk_access_time,WALK_LOC - Walk access time,@wacc_multiplier * 2 * df.origin_walk_time,,,,,,coef_ivt,,,,,,,,,,,, -util_WALK_LOC_Walk_egress_time,WALK_LOC - Walk egress time,@wegr_multiplier * 2 * df.destination_walk_time,,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Walk_access_time,WALK_LOC - Walk access time,@wacc_multiplier * 2 * (df.origin_local_time + df.dest_local_time),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Walk_egress_time,WALK_LOC - Walk egress time,@wegr_multiplier * 2 * (df.origin_local_time + df.dest_local_time),,,,,,coef_ivt,,,,,,,,,,,, util_WALK_LOC_Walk_other_time,WALK_LOC - Walk other time,@waux_multiplier * (odt_skims['WLK_LOC_WAUX'] + dot_skims['WLK_LOC_WAUX']),,,,,,coef_ivt,,,,,,,,,,,, -util_WALK_LOC_Fare,WALK_LOC - Fare,@ivt_cost_multiplier * df.fare_discount_percent * df.ivot * (odt_skims['WLK_LOC_FARE'] + dot_skims['WLK_LOC_FARE']),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Fare,WALK_LOC - Fare,@ivt_cost_multiplier * df.WLKLOC_fare_discount * df.ivot * (odt_skims['WLK_LOC_FARE'] + dot_skims['WLK_LOC_FARE']),,,,,,coef_ivt,,,,,,,,,,,, util_WALK_LOC_Destination_zone_densityIndex,WALK_LOC - Destination zone densityIndex,@density_index_multiplier * df.dest_density_index,,,,,,coef_ivt,,,,,,,,,,,, -util_WALK_LOC_Topology,WALK_LOC - Topology,@coef_topology_trn_multiplier * df.dest_topology,,,,,,coef_ivt,,,,,,,,,,,, util_WALK_LOC_Person_is_less_than_10_years_old,WALK_LOC - Person is less than 10 years old,@(df.age <= 10),,,,,,coef_age010_trn_multiplier,,,,,,,,,,,, #util_WALK_to_Premium,#Walk to Premium,,,,,,,,,,,,,,,,,,, util_WALK_PRM_Unavailable,WALK_PRM - Unavailable,walk_premium_available == False,,,,,,,-999,,,,,,,,,,, @@ -70,12 +64,11 @@ util_WALK_PRM_Short_iwait_time,WALK_PRM - Short iwait time,@short_i_wait_multipl util_WALK_PRM_Long_iwait_time,WALK_PRM - Long iwait time,@long_i_wait_multiplier * ((odt_skims['WLK_PRM_IWAIT']-waitThresh).clip(0) + (dot_skims['WLK_PRM_IWAIT']-waitThresh).clip(0)),,,,,,,coef_ivt,,,,,,,,,,, util_WALK_PRM_transfer_wait_time,WALK_PRM - transfer wait time,@xwait_multiplier * (odt_skims['WLK_PRM_XWAIT'] + dot_skims['WLK_PRM_XWAIT']),,,,,,,coef_ivt,,,,,,,,,,, util_WALK_PRM_number_of_transfers,WALK_PRM - number of transfers,@xfers_wlk_multiplier * ((odt_skims['WLK_PRM_NT']).clip(0) + (dot_skims['WLK_PRM_NT']).clip(0)),,,,,,,coef_ivt,,,,,,,,,,, -util_WALK_PRM_Walk_access_time,WALK_PRM - Walk access time,@wacc_multiplier * 2 * df.origin_walk_time,,,,,,,coef_ivt,,,,,,,,,,, -util_WALK_PRM_Walk_egress_time,WALK_PRM - Walk egress time,@wegr_multiplier * 2 * df.destination_walk_time,,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Walk_access_time,WALK_PRM - Walk access time,@wacc_multiplier * 2 * (df.origin_prm_time + df.dest_prm_time),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Walk_egress_time,WALK_PRM - Walk egress time,@wegr_multiplier * 2 * (df.origin_prm_time + df.dest_prm_time),,,,,,,coef_ivt,,,,,,,,,,, util_WALK_PRM_Walk_other_time,WALK_PRM - Walk other time,@waux_multiplier * (odt_skims['WLK_PRM_WAUX'] + dot_skims['WLK_PRM_WAUX']),,,,,,,coef_ivt,,,,,,,,,,, -util_WALK_PRM_Fare,WALK_PRM - Fare,@ivt_cost_multiplier * df.fare_discount_percent * df.ivot * (odt_skims['WLK_PRM_FARE'] + dot_skims['WLK_PRM_FARE']),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Fare,WALK_PRM - Fare,@ivt_cost_multiplier * df.WLKPRM_fare_discount * df.ivot * (odt_skims['WLK_PRM_FARE'] + dot_skims['WLK_PRM_FARE']),,,,,,,coef_ivt,,,,,,,,,,, util_WALK_PRM_Destination_zone_densityIndex,WALK_PRM - Destination zone densityIndex,@density_index_multiplier * df.dest_density_index,,,,,,,coef_ivt,,,,,,,,,,, -util_WALK_PRM_Topology,WALK_PRM - Topology,@coef_topology_trn_multiplier * df.dest_topology,,,,,,,coef_ivt,,,,,,,,,,, util_WALK_PRM_Person_is_less_than_10_years_old,WALK_PRM - Person is less than 10 years old,@(df.age <= 10),,,,,,,coef_age010_trn_multiplier,,,,,,,,,,, #util_WALK_to_MIX,#Walk to MIX,,,,,,,,,,,,,,,,,,, util_WALK_MIX_Unavailable,WALK_MIX - Unavailable,walk_mix_available == False,,,,,,,,-999,,,,,,,,,, @@ -90,12 +83,11 @@ util_WALK_MIX_Short_iwait_time,WALK_MIX - Short iwait time,@short_i_wait_multipl util_WALK_MIX_Long_iwait_time,WALK_MIX - Long iwait time,@long_i_wait_multiplier * ((odt_skims['WLK_MIX_IWAIT']-waitThresh).clip(0) + (dot_skims['WLK_MIX_IWAIT']-waitThresh).clip(0)),,,,,,,,coef_ivt,,,,,,,,,, util_WALK_MIX_transfer_wait_time,WALK_MIX - transfer wait time,@xwait_multiplier * (odt_skims['WLK_MIX_XWAIT'] + dot_skims['WLK_MIX_XWAIT']),,,,,,,,coef_ivt,,,,,,,,,, util_WALK_MIX_number_of_transfers,WALK_MIX - number of transfers,@xfers_wlk_multiplier * ((odt_skims['WLK_MIX_NT']).clip(0) + (dot_skims['WLK_MIX_NT']).clip(0)),,,,,,,,coef_ivt,,,,,,,,,, -util_WALK_MIX_Walk_access_time,WALK_MIX - Walk access time,@wacc_multiplier * 2 * df.origin_walk_time,,,,,,,,coef_ivt,,,,,,,,,, -util_WALK_MIX_Walk_egress_time,WALK_MIX - Walk egress time,@wegr_multiplier * 2 * df.destination_walk_time,,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Walk_access_time,WALK_MIX - Walk access time,@wacc_multiplier * 2 * (df.origin_mix_time + df.dest_mix_time),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Walk_egress_time,WALK_MIX - Walk egress time,@wegr_multiplier * 2 * (df.origin_mix_time + df.dest_mix_time),,,,,,,,coef_ivt,,,,,,,,,, util_WALK_MIX_Walk_other_time,WALK_MIX - Walk other time,@waux_multiplier * (odt_skims['WLK_MIX_WAUX'] + dot_skims['WLK_MIX_WAUX']),,,,,,,,coef_ivt,,,,,,,,,, -util_WALK_MIX_Fare,WALK_MIX - Fare,@ivt_cost_multiplier * df.fare_discount_percent * df.ivot * (odt_skims['WLK_MIX_FARE'] + dot_skims['WLK_MIX_FARE']),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Fare,WALK_MIX - Fare,@ivt_cost_multiplier * df.WLKMIX_fare_discount * df.ivot * (odt_skims['WLK_MIX_FARE'] + dot_skims['WLK_MIX_FARE']),,,,,,,,coef_ivt,,,,,,,,,, util_WALK_MIX_Destination_zone_densityIndex,WALK_MIX - Destination zone densityIndex,@density_index_multiplier * df.dest_density_index,,,,,,,,coef_ivt,,,,,,,,,, -util_WALK_MIX_Topology,WALK_MIX - Topology,@coef_topology_trn_multiplier * df.dest_topology,,,,,,,,coef_age010_trn_multiplier,,,,,,,,,, util_WALK_MIX_Person_is_less_than_10_years_old,WALK_MIX - Person is less than 10 years old,@(df.age <= 10),,,,,,,,1,,,,,,,,,, #util_PNR_to_Local,#PNR to Local,,,,,,,,,,,,,,,,,,, util_PNR_LOC_Unavailable,PNR_LOC - Unavailable,pnr_local_available == False,,,,,,,,,-999,,,,,,,,, @@ -106,13 +98,12 @@ util_PNR_LOC_Long_iwait_time,PNR_LOC - Long iwait time,@long_i_wait_multiplier * util_PNR_LOC_transfer_wait_time,PNR_LOC - transfer wait time,@xwait_multiplier * (odt_skims['PNR_LOC_XWAIT'] + dot_skims['PNRE_LOC_XWAIT']),,,,,,,,,coef_ivt,,,,,,,,, util_PNR_LOC_number_of_transfers,PNR_LOC - number of transfers,@xfers_wlk_multiplier * ((odt_skims['PNR_LOC_NT']).clip(0) + (dot_skims['PNRE_LOC_NT']).clip(0)),,,,,,,,,coef_ivt,,,,,,,,, util_PNR_LOC_PNR_time,PNR_LOC - PNR time,@dtim_multiplier * (odt_skims['PNR_LOC_DTIME'] + dot_skims['PNRE_LOC_DTIME']),,,,,,,,,coef_ivt,,,,,,,,, -util_PNR_LOC_Walk_access_time,PNR_LOC - Walk access time,@wacc_multiplier * df.destination_walk_time,,,,,,,,,coef_ivt,,,,,,,,, -util_PNR_LOC_Walk_egress_time_(at_attraction_end),PNR_LOC - Walk egress time (at attraction end),@wegr_multiplier * df.destination_walk_time,,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_Walk_access_time,PNR_LOC - Walk access time,@wacc_multiplier * (df.dest_local_time),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_Walk_egress_time_(at_attraction_end),PNR_LOC - Walk egress time (at attraction end),@wegr_multiplier * (df.dest_local_time),,,,,,,,,coef_ivt,,,,,,,,, util_PNR_LOC_Walk_other_time,PNR_LOC - Walk other time,@waux_multiplier * (odt_skims['PNR_LOC_WAUX'] + dot_skims['PNRE_LOC_WAUX']),,,,,,,,,coef_ivt,,,,,,,,, -util_PNR_LOC_Fare_and_operating_cost,PNR_LOC - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.fare_discount_percent * (odt_skims['PNR_LOC_FARE'] + dot_skims['PNRE_LOC_FARE']) + ((odt_skims['PNR_LOC_DDIST']+dot_skims['PNRE_LOC_DDIST']) * costPerMile)),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_Fare_and_operating_cost,PNR_LOC - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.PNRLOC_fare_discount * (odt_skims['PNR_LOC_FARE'] + dot_skims['PNRE_LOC_FARE']) + ((odt_skims['PNR_LOC_DDIST']+dot_skims['PNRE_LOC_DDIST']) * costPerMile)),,,,,,,,,coef_ivt,,,,,,,,, util_PNR_LOC_Ratio_of_PNR_access_distance_to_OD_distance,PNR_LOC - Ratio of PNR access distance to OD distance,@dacc_ratio * ((odt_skims['PNR_LOC_DDIST']+ dot_skims['PNRE_LOC_DDIST'])/ (od_skims['DIST']*2)),,,,,,,,,coef_ivt,,,,,,,,, util_PNR_LOC_Destination_zone_densityIndex,PNR_LOC - Destination zone densityIndex,@density_index_multiplier * df.dest_density_index,,,,,,,,,coef_ivt,,,,,,,,, -util_PNR_LOC_Topology,PNR_LOC - Topology,@coef_topology_trn_multiplier * df.dest_topology,,,,,,,,,coef_ivt,,,,,,,,, util_PNR_LOC_Person_is_less_than_10_years_old,PNR_LOC - Person is less than 10 years old,@(df.age < 10),,,,,,,,,coef_age010_trn_multiplier,,,,,,,,, #util_PNR_to_Premium,#PNR to Premium,,,,,,,,,,,,,,,,,,, util_PNR_PRM_Unavailable,PNR_PRM - Unavailable,pnr_premium_available == False,,,,,,,,,,-999,,,,,,,, @@ -128,13 +119,12 @@ util_PNR_PRM_Long_iwait_time,PNR_PRM - Long iwait time,@long_i_wait_multiplier * util_PNR_PRM_transfer_wait_time,PNR_PRM - transfer wait time,@xwait_multiplier * (odt_skims['PNR_PRM_XWAIT'] + dot_skims['PNRE_PRM_XWAIT']),,,,,,,,,,coef_ivt,,,,,,,, util_PNR_PRM_number_of_transfers,PNR_PRM - number of transfers,@xfers_drv_multiplier * ((odt_skims['PNR_PRM_NT']).clip(0) + (dot_skims['PNRE_PRM_NT']).clip(0)),,,,,,,,,,coef_ivt,,,,,,,, util_PNR_PRM_PNR_time,PNR_PRM - PNR time,@dtim_multiplier * (odt_skims['PNR_PRM_DTIME'] + dot_skims['PNRE_PRM_DTIME']),,,,,,,,,,coef_ivt,,,,,,,, -util_PNR_PRM_Walk_access_time_(at_attraction_end),PNR_PRM - Walk access time (at attraction end),@wacc_multiplier * df.destination_walk_time,,,,,,,,,,coef_ivt,,,,,,,, -util_PNR_PRM_Walk_egress_time_(at_attraction_end),PNR_PRM - Walk egress time (at attraction end),@wegr_multiplier * df.destination_walk_time,,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_Walk_access_time_(at_attraction_end),PNR_PRM - Walk access time (at attraction end),@wacc_multiplier * (df.dest_prm_time),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_Walk_egress_time_(at_attraction_end),PNR_PRM - Walk egress time (at attraction end),@wegr_multiplier * (df.dest_prm_time),,,,,,,,,,coef_ivt,,,,,,,, util_PNR_PRM_Walk_other_time,PNR_PRM - Walk other time,@waux_multiplier * (odt_skims['PNR_PRM_WAUX'] + dot_skims['PNRE_PRM_WAUX']),,,,,,,,,,coef_ivt,,,,,,,, -util_PNR_PRM_Fare_and_operating_cost,PNR_PRM - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.fare_discount_percent * (odt_skims['PNR_PRM_FARE']+dot_skims['PNRE_PRM_FARE']) + ((odt_skims['PNR_PRM_DDIST']+dot_skims['PNRE_PRM_DDIST']) *costPerMile)),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_Fare_and_operating_cost,PNR_PRM - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.PNRPRM_fare_discount * (odt_skims['PNR_PRM_FARE']+dot_skims['PNRE_PRM_FARE']) + ((odt_skims['PNR_PRM_DDIST']+dot_skims['PNRE_PRM_DDIST']) *costPerMile)),,,,,,,,,,coef_ivt,,,,,,,, util_PNR_PRM_Ratio_of_PNR_access_distance_to_OD_distance,PNR_PRM - Ratio of PNR access distance to OD distance,@dacc_ratio * ((odt_skims['PNR_PRM_DDIST']+ dot_skims['PNRE_PRM_DDIST'])/ (od_skims['DIST']*2)),,,,,,,,,,coef_ivt,,,,,,,, util_PNR_PRM_Destination_zone_densityIndex,PNR_PRM - Destination zone densityIndex,@density_index_multiplier * df.dest_density_index,,,,,,,,,,coef_ivt,,,,,,,, -util_PNR_PRM_Topology,PNR_PRM - Topology,@coef_topology_trn_multiplier * df.dest_topology,,,,,,,,,,coef_ivt,,,,,,,, util_PNR_PRM_Person_is_less_than_10_years_old,PNR_PRM - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,coef_age010_trn_multiplier,,,,,,,, #util_PNR_to_MIX,#PNR to MIX,,,,,,,,,,,,,,,,,,, util_PNR_MIX_Unavailable,PNR_MIX - Unavailable,pnr_mix_available == False,,,,,,,,,,,-999,,,,,,, @@ -151,13 +141,12 @@ util_PNR_MIX_Long_iwait_time,PNR_MIX - Long iwait time,@long_i_wait_multiplier * util_PNR_MIX_transfer_wait_time,PNR_MIX - transfer wait time,@xwait_multiplier * (odt_skims['PNR_MIX_XWAIT'] + dot_skims['PNRE_MIX_XWAIT']),,,,,,,,,,,coef_ivt,,,,,,, util_PNR_MIX_number_of_transfers,PNR_MIX - number of transfers,@xfers_drv_multiplier * ((odt_skims['PNR_MIX_NT']).clip(0) + (dot_skims['PNRE_MIX_NT']).clip(0)),,,,,,,,,,,coef_ivt,,,,,,, util_PNR_MIX_PNR_time,PNR_MIX - PNR time,@dtim_multiplier * (odt_skims['PNR_MIX_DTIME'] + dot_skims['PNRE_MIX_DTIME']),,,,,,,,,,,coef_ivt,,,,,,, -util_PNR_MIX_Walk_access_time_(at_attraction_end),PNR_MIX - Walk access time (at attraction end),@wacc_multiplier * df.destination_walk_time,,,,,,,,,,,coef_ivt,,,,,,, -util_PNR_MIX_Walk_egress_ime_(at_attraction_end),PNR_MIX - Walk egress ime (at attraction end),@wegr_multiplier * df.destination_walk_time,,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_Walk_access_time_(at_attraction_end),PNR_MIX - Walk access time (at attraction end),@wacc_multiplier * (df.dest_mix_time),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_Walk_egress_ime_(at_attraction_end),PNR_MIX - Walk egress ime (at attraction end),@wegr_multiplier * (df.dest_mix_time),,,,,,,,,,,coef_ivt,,,,,,, util_PNR_MIX_Walk_other_time,PNR_MIX - Walk other time,@waux_multiplier * (odt_skims['PNR_MIX_WAUX'] + dot_skims['PNRE_MIX_WAUX']),,,,,,,,,,,coef_ivt,,,,,,, -util_PNR_MIX_Fare_and_operating_cost,PNR_MIX - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.fare_discount_percent * (odt_skims['PNR_MIX_FARE']+dot_skims['PNRE_MIX_FARE']) + ((odt_skims['PNR_MIX_DDIST']+dot_skims['PNRE_MIX_DDIST']) *costPerMile)),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_Fare_and_operating_cost,PNR_MIX - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.PNRMIX_fare_discount * (odt_skims['PNR_MIX_FARE']+dot_skims['PNRE_MIX_FARE']) + ((odt_skims['PNR_MIX_DDIST']+dot_skims['PNRE_MIX_DDIST']) *costPerMile)),,,,,,,,,,,coef_ivt,,,,,,, util_PNR_MIX_Ratio_of_PNR_access_distance_to_OD_distance,PNR_MIX - Ratio of PNR access distance to OD distance,@dacc_ratio * ((odt_skims['PNR_MIX_DDIST']+ dot_skims['PNRE_MIX_DDIST'])/ (od_skims['DIST']*2)),,,,,,,,,,,coef_ivt,,,,,,, util_PNR_MIX_Destination_zone_densityIndex,PNR_MIX - Destination zone densityIndex,@density_index_multiplier * df.dest_density_index,,,,,,,,,,,coef_ivt,,,,,,, -util_PNR_MIX_Topology,PNR_MIX - Topology,@coef_topology_trn_multiplier * df.dest_topology,,,,,,,,,,,coef_ivt,,,,,,, util_PNR_MIX_Person_is_less_than_10_years_old,PNR_MIX - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,coef_age010_trn_multiplier,,,,,,, #util_KNR_to_Local,#KNR to Local,,,,,,,,,,,,,,,,,,, util_KNR_LOC_Unavailable,KNR_LOC - Unavailable,knr_local_available == False,,,,,,,,,,,,-999,,,,,, @@ -168,13 +157,12 @@ util_KNR_LOC_Long_iwait_time,KNR_LOC - Long iwait time,@long_i_wait_multiplier * util_KNR_LOC_transfer_wait_time,KNR_LOC - transfer wait time,@xwait_multiplier * (odt_skims['KNR_LOC_XWAIT'] + dot_skims['KNRE_LOC_XWAIT']),,,,,,,,,,,,coef_ivt,,,,,, util_KNR_LOC_number_of_transfers,KNR_LOC - number of transfers,@xfers_wlk_multiplier * ((odt_skims['KNR_LOC_NT']).clip(0) + (dot_skims['KNRE_LOC_NT']).clip(0)),,,,,,,,,,,,coef_ivt,,,,,, util_KNR_LOC_KNR_time,KNR_LOC - KNR time,@dtim_multiplier * (odt_skims['KNR_LOC_DTIME'] + dot_skims['KNRE_LOC_DTIME']),,,,,,,,,,,,coef_ivt,,,,,, -util_KNR_LOC_Walk_access_time,KNR_LOC - Walk access time,@wacc_multiplier * df.destination_walk_time,,,,,,,,,,,,coef_ivt,,,,,, -util_KNR_LOC_Walk_egress_time_(at_attraction_end),KNR_LOC - Walk egress time (at attraction end),@wegr_multiplier * df.destination_walk_time,,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_Walk_access_time,KNR_LOC - Walk access time,@wacc_multiplier * (df.dest_local_time),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_Walk_egress_time_(at_attraction_end),KNR_LOC - Walk egress time (at attraction end),@wegr_multiplier * (df.dest_local_time),,,,,,,,,,,,coef_ivt,,,,,, util_KNR_LOC_Walk_other_time,KNR_LOC - Walk other time,@waux_multiplier * (odt_skims['KNR_LOC_WAUX'] + dot_skims['KNRE_LOC_WAUX']),,,,,,,,,,,,coef_ivt,,,,,, -util_KNR_LOC_Fare_and_operating_cost,KNR_LOC - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.fare_discount_percent * (odt_skims['KNR_LOC_FARE'] + dot_skims['KNRE_LOC_FARE']) + ((odt_skims['KNR_LOC_DDIST']+dot_skims['KNRE_LOC_DDIST']) * costPerMile)),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_Fare_and_operating_cost,KNR_LOC - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.KNRLOC_fare_discount * (odt_skims['KNR_LOC_FARE'] + dot_skims['KNRE_LOC_FARE']) + ((odt_skims['KNR_LOC_DDIST']+dot_skims['KNRE_LOC_DDIST']) * costPerMile)),,,,,,,,,,,,coef_ivt,,,,,, util_KNR_LOC_Ratio_of_KNR_access_distance_to_OD_distance,KNR_LOC - Ratio of KNR access distance to OD distance,@dacc_ratio * ((odt_skims['KNR_LOC_DDIST']+ dot_skims['KNRE_LOC_DDIST'])/ (od_skims['DIST']*2)),,,,,,,,,,,,coef_ivt,,,,,, util_KNR_LOC_Destination_zone_densityIndex,KNR_LOC - Destination zone densityIndex,@density_index_multiplier * df.dest_density_index,,,,,,,,,,,,coef_ivt,,,,,, -util_KNR_LOC_Topology,KNR_LOC - Topology,@coef_topology_trn_multiplier * df.dest_topology,,,,,,,,,,,,coef_ivt,,,,,, util_KNR_LOC_Person_is_less_than_10_years_old,KNR_LOC - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,,coef_age010_trn_multiplier,,,,,, #util_KNR_to_Premium,#KNR to Premium,,,,,,,,,,,,,,,,,,, util_KNR_PRM_Unavailable,KNR_PRM - Unavailable,knr_premium_available == False,,,,,,,,,,,,,-999,,,,, @@ -190,13 +178,12 @@ util_KNR_PRM_Long_iwait_time,KNR_PRM - Long iwait time,@long_i_wait_multiplier * util_KNR_PRM_transfer_wait_time,KNR_PRM - transfer wait time,@xwait_multiplier * (odt_skims['KNR_PRM_XWAIT'] + dot_skims['KNRE_PRM_XWAIT']),,,,,,,,,,,,,coef_ivt,,,,, util_KNR_PRM_number_of_transfers,KNR_PRM - number of transfers,@xfers_drv_multiplier *((odt_skims['KNR_PRM_NT']).clip(0) + (dot_skims['KNRE_PRM_NT']).clip(0)),,,,,,,,,,,,,coef_ivt,,,,, util_KNR_PRM_KNR_time,KNR_PRM - KNR time,@dtim_multiplier * (odt_skims['KNR_PRM_DTIME'] + dot_skims['KNRE_PRM_DTIME']),,,,,,,,,,,,,coef_ivt,,,,, -util_KNR_PRM_Walk_access_time_(at_attraction_end),KNR_PRM - Walk access time (at attraction end),@wacc_multiplier * df.destination_walk_time,,,,,,,,,,,,,coef_ivt,,,,, -util_KNR_PRM_Walk_egress_time_(at_attraction_end),KNR_PRM - Walk egress time (at attraction end),@wegr_multiplier * df.destination_walk_time,,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_Walk_access_time_(at_attraction_end),KNR_PRM - Walk access time (at attraction end),@wacc_multiplier * (df.dest_prm_time),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_Walk_egress_time_(at_attraction_end),KNR_PRM - Walk egress time (at attraction end),@wegr_multiplier * (df.dest_prm_time),,,,,,,,,,,,,coef_ivt,,,,, util_KNR_PRM_Walk_other_time,KNR_PRM - Walk other time,@waux_multiplier * (odt_skims['KNR_PRM_WAUX'] + dot_skims['KNRE_PRM_WAUX']),,,,,,,,,,,,,coef_ivt,,,,, -util_KNR_PRM_Fare_and_operating_cost,KNR_PRM - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.fare_discount_percent * (odt_skims['KNR_PRM_FARE']+dot_skims['KNRE_PRM_FARE']) + ((odt_skims['KNR_PRM_DDIST']+dot_skims['KNRE_PRM_DDIST']) *costPerMile)),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_Fare_and_operating_cost,KNR_PRM - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.KNRPRM_fare_discount * (odt_skims['KNR_PRM_FARE']+dot_skims['KNRE_PRM_FARE']) + ((odt_skims['KNR_PRM_DDIST']+dot_skims['KNRE_PRM_DDIST']) *costPerMile)),,,,,,,,,,,,,coef_ivt,,,,, util_KNR_PRM_Ratio_of_KNR_access_distance_to_OD_distance,KNR_PRM - Ratio of KNR access distance to OD distance,@dacc_ratio * ((odt_skims['KNR_PRM_DDIST']+ dot_skims['KNRE_PRM_DDIST'])/ (od_skims['DIST']*2)),,,,,,,,,,,,,coef_ivt,,,,, util_KNR_PRM_Destination_zone_densityIndex,KNR_PRM - Destination zone densityIndex,@density_index_multiplier * df.dest_density_index,,,,,,,,,,,,,coef_ivt,,,,, -util_KNR_PRM_Topology,KNR_PRM - Topology,@coef_topology_trn_multiplier * df.dest_topology,,,,,,,,,,,,,coef_ivt,,,,, util_KNR_PRM_Person_is_less_than_10_years_old,KNR_PRM - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,,,coef_age010_trn_multiplier,,,,, #util_KNR_to_MIX,#KNR to MIX,,,,,,,,,,,,,,,,,,, util_KNR_MIX_Unavailable,KNR_MIX - Unavailable,knr_mix_available == False,,,,,,,,,,,,,,-999,,,, @@ -213,13 +200,12 @@ util_KNR_MIX_Long_iwait_time,KNR_MIX - Long iwait time,@long_i_wait_multiplier * util_KNR_MIX_transfer_wait_time,KNR_MIX - transfer wait time,@xwait_multiplier * (odt_skims['KNR_MIX_XWAIT'] + dot_skims['KNRE_MIX_XWAIT']),,,,,,,,,,,,,,coef_ivt,,,, util_KNR_MIX_number_of_transfers,KNR_MIX - number of transfers,@xfers_drv_multiplier * ((odt_skims['KNR_MIX_NT']).clip(0) + (dot_skims['KNRE_MIX_NT']).clip(0)),,,,,,,,,,,,,,coef_ivt,,,, util_KNR_MIX_KNR_time,KNR_MIX - KNR time,@dtim_multiplier * (odt_skims['KNR_MIX_DTIME'] + dot_skims['KNRE_MIX_DTIME']),,,,,,,,,,,,,,coef_ivt,,,, -util_KNR_MIX_Walk_access_time_(at_attraction_end),KNR_MIX - Walk access time (at attraction end),@wacc_multiplier * df.destination_walk_time,,,,,,,,,,,,,,coef_ivt,,,, -util_KNR_MIX_Walk_egress_ime_(at_attraction_end),KNR_MIX - Walk egress ime (at attraction end),@wegr_multiplier * df.destination_walk_time,,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_Walk_access_time_(at_attraction_end),KNR_MIX - Walk access time (at attraction end),@wacc_multiplier * (df.dest_mix_time),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_Walk_egress_time_(at_attraction_end),KNR_MIX - Walk egress ime (at attraction end),@wegr_multiplier * (df.dest_mix_time),,,,,,,,,,,,,,coef_ivt,,,, util_KNR_MIX_Walk_other_time,KNR_MIX - Walk other time,@waux_multiplier * (odt_skims['KNR_MIX_WAUX'] + dot_skims['KNRE_MIX_WAUX']),,,,,,,,,,,,,,coef_ivt,,,, -util_KNR_MIX_Fare_and_operating_cost,KNR_MIX - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.fare_discount_percent * (odt_skims['KNR_MIX_FARE']+dot_skims['KNRE_MIX_FARE']) + ((odt_skims['KNR_MIX_DDIST']+dot_skims['KNRE_MIX_DDIST']) *costPerMile)),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_Fare_and_operating_cost,KNR_MIX - Fare and operating cost,@ivt_cost_multiplier * df.ivot * (df.KNRMIX_fare_discount * (odt_skims['KNR_MIX_FARE']+dot_skims['KNRE_MIX_FARE']) + ((odt_skims['KNR_MIX_DDIST']+dot_skims['KNRE_MIX_DDIST']) *costPerMile)),,,,,,,,,,,,,,coef_ivt,,,, util_KNR_MIX_Ratio_of_KNR_access_distance_to_OD_distance,KNR_MIX - Ratio of KNR access distance to OD distance,@dacc_ratio * ((odt_skims['KNR_MIX_DDIST']+ dot_skims['KNRE_MIX_DDIST'])/ (od_skims['DIST']*2)),,,,,,,,,,,,,,coef_ivt,,,, util_KNR_MIX_Destination_zone_densityIndex,KNR_MIX - Destination zone densityIndex,@density_index_multiplier * df.dest_density_index,,,,,,,,,,,,,,coef_ivt,,,, -util_KNR_MIX_Topology,KNR_MIX - Topology,@coef_topology_trn_multiplier * df.dest_topology,,,,,,,,,,,,,,coef_ivt,,,, util_KNR_MIX_Person_is_less_than_10_years_old,KNR_MIX - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,,,,coef_age010_trn_multiplier,,,, #,Taxi,,,,,,,,,,,,,,,,,,, util_Taxi_In_vehicle_time,Taxi - In-vehicle time,@(odt_skims['HOV2_TIME'] + dot_skims['HOV2_TIME']),,,,,,,,,,,,,,,,coef_ivt,, @@ -263,6 +249,9 @@ util_PNR_to_Transit_Auto_sufficient,PNR to Transit - Auto Sufficient,@(df.is_ind util_KNR_to_Transit_Zero_auto,KNR to Transit - Zero auto,@(df.is_indiv & (df.auto_ownership == 0)),,,,,,,,,,,,knr_transit_ASC_no_auto,knr_transit_ASC_no_auto,knr_transit_ASC_no_auto,,,, util_KNR_to_Transit_Auto_deficient,KNR to Transit - Auto deficient,@(df.is_indiv & (df.auto_ownership < df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,knr_transit_ASC_auto_deficient,knr_transit_ASC_auto_deficient,knr_transit_ASC_auto_deficient,,,, util_KNR_to_Transit_Auto_sufficient,KNR to Transit - Auto Sufficient,@(df.is_indiv & (df.auto_ownership >= df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,knr_transit_ASC_auto_sufficient,knr_transit_ASC_auto_sufficient,knr_transit_ASC_auto_sufficient,,,, +util_ridehail_Zero_auto,ridehail - Zero auto,@(df.is_indiv & (df.auto_ownership == 0)),,,,,,,,,,,,,,,,ridehail_ASC_no_auto,ridehail_ASC_no_auto,ridehail_ASC_no_auto +util_ridehail_Auto_deficient,ridehail - Auto deficient,@(df.is_indiv & (df.auto_ownership < df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,,,,,ridehail_ASC_auto_deficient,ridehail_ASC_auto_deficient,ridehail_ASC_auto_deficient +util_ridehail_Auto_sufficient,ridehail - Auto sufficient,@(df.is_indiv & (df.auto_ownership >= df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,,,,,ridehail_ASC_auto_sufficient,ridehail_ASC_auto_sufficient,ridehail_ASC_auto_sufficient util_Taxi_Zero_auto,Taxi - Zero auto,@(df.is_indiv & (df.auto_ownership == 0)),,,,,,,,,,,,,,,,taxi_ASC_no_auto,, util_Taxi_Auto_deficient,Taxi - Auto deficient,@(df.is_indiv & (df.auto_ownership < df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,,,,,taxi_ASC_auto_deficient,, util_Taxi_Auto_sufficient,Taxi - Auto sufficient,@(df.is_indiv & (df.auto_ownership >= df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,,,,,taxi_ASC_auto_sufficient,, @@ -294,6 +283,9 @@ util_Joint_PNR_to_Transit_Auto_sufficient,Joint - PNR to Transit - Auto Sufficie util_Joint_KNR_to_Transit_Zero_auto,Joint - KNR to Transit - Zero auto,@(df.is_joint & (df.auto_ownership == 0)),,,,,,,,,,,,joint_knr_transit_ASC_no_auto,joint_knr_transit_ASC_no_auto,joint_knr_transit_ASC_no_auto,,,, util_Joint_KNR_to_Transit_Auto_deficient,Joint - KNR to Transit - Auto deficient,@(df.is_joint & (df.auto_ownership < df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,joint_knr_transit_ASC_auto_deficient,joint_knr_transit_ASC_auto_deficient,joint_knr_transit_ASC_auto_deficient,,,, util_Joint_KNR_to_Transit_Auto_sufficient,Joint - KNR to Transit - Auto Sufficient,@(df.is_joint & (df.auto_ownership >= df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,joint_knr_transit_ASC_auto_sufficient,joint_knr_transit_ASC_auto_sufficient,joint_knr_transit_ASC_auto_sufficient,,,, +util_Joint_ridehail_Zero_auto,Joint - ridehail - Zero auto,@(df.is_joint & (df.auto_ownership == 0)),,,,,,,,,,,,,,,,joint_ridehail_ASC_no_auto,joint_ridehail_ASC_no_auto,joint_ridehail_ASC_no_auto +util_Joint_ridehail_Auto_deficient,Joint - ridehail - Auto deficient,@(df.is_joint & (df.auto_ownership < df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,,,,,joint_ridehail_ASC_auto_deficient,joint_ridehail_ASC_auto_deficient,joint_ridehail_ASC_auto_deficient +util_Joint_ridehail_Auto_sufficient,Joint - ridehail - Auto sufficient,@(df.is_joint & (df.auto_ownership >= df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,,,,,joint_ridehail_ASC_auto_sufficient,joint_ridehail_ASC_auto_sufficient,joint_ridehail_ASC_auto_sufficient util_Joint_Taxi_Zero_auto,Joint - Taxi - Zero auto,@(df.is_joint & (df.auto_ownership == 0)),,,,,,,,,,,,,,,,joint_taxi_ASC_no_auto,, util_Joint_Taxi_Auto_deficient,Joint - Taxi - Auto deficient,@(df.is_joint & (df.auto_ownership < df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,,,,,joint_taxi_ASC_auto_deficient,, util_Joint_Taxi_Auto_sufficient,Joint - Taxi - Auto sufficient,@(df.is_joint & (df.auto_ownership >= df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,,,,,joint_taxi_ASC_auto_sufficient,, @@ -321,3 +313,33 @@ School_Bus_Wait_Time,School Bus - Wait Time,@short_i_wait_multiplier*10,,,,,,,,, util_schoolbus_ASC_no_auto,School Bus No Auto ASC,@(df.auto_ownership == 0),,,,,,,,,,,,,,,schoolbus_ASC_no_auto,,, util_schoolbus_ASC_auto_deficient,School Bus Auto Deficient ASC,@((df.auto_ownership < df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,,,,schoolbus_ASC_auto_deficient,,, util_schoolbus_ASC_auto_sufficient,School Bus Auto Sufficient ASC,@((df.auto_ownership >= df.num_workers) & (df.auto_ownership > 0)),,,,,,,,,,,,,,,schoolbus_ASC_auto_sufficient,,, +util_umt_unavailable_wlk,UMT unavailable for non affiliates WALK,@((odt_skims['WLK_LOC_IVTT_UMT'] + dot_skims['WLK_LOC_IVTT_UMT'])>0) & (df.umich_affiliate==False),,,,,,-999,,,,,,,,,,,, +util_umt_unavailable_pnr,UMT unavailable for non affiliates PNR,@((odt_skims['PNR_LOC_IVTT_UMT'] + dot_skims['PNRE_LOC_IVTT_UMT'])>0) & (df.umich_affiliate==False),,,,,,,,,-999,,,,,,,,, +util_umt_unavailable_knr,UMT unavailable for non affiliates KNR,@((odt_skims['KNR_LOC_IVTT_UMT'] + dot_skims['KNRE_LOC_IVTT_UMT'])>0) & (df.umich_affiliate==False),,,,,,,,,,,,-999,,,,,, +#forincome,,,,,,,,,,,,,,,,,,,, +util_WALK_to_Transit_inc_low,Walk to Transit - Low income,@(df.is_indiv & (df.income <= 25000)),,,,,,walk_transit_ASC_inc_low,walk_transit_ASC_inc_low,walk_transit_ASC_inc_low,,,,,,,,,, +util_WALK_to_Transit_inc_mid,Walk to Transit - Mid income,@(df.is_indiv & (df.income <= 75000) & (df.income > 25000)),,,,,,walk_transit_ASC_inc_mid,walk_transit_ASC_inc_mid,walk_transit_ASC_inc_mid,,,,,,,,,, +util_WALK_to_Transit_inc_high,Walk to Transit - High income,@(df.is_indiv & (df.income >75000)),,,,,,walk_transit_ASC_inc_high,walk_transit_ASC_inc_high,walk_transit_ASC_inc_high,,,,,,,,,, +util_PNR_to_Transit_inc_low,PNR to Transit - Low income,@(df.is_indiv & (df.income <= 25000)),,,,,,,,,pnr_transit_ASC_inc_low,pnr_transit_ASC_inc_low,pnr_transit_ASC_inc_low,,,,,,, +util_PNR_to_Transit_inc_mid,PNR to Transit - Mid income,@(df.is_indiv & (df.income <= 75000) & (df.income > 25000)),,,,,,,,,pnr_transit_ASC_inc_mid,pnr_transit_ASC_inc_mid,pnr_transit_ASC_inc_mid,,,,,,, +util_PNR_to_Transit_inc_high,PNR to Transit - High income,@(df.is_indiv & (df.income >75000)),,,,,,,,,pnr_transit_ASC_inc_high,pnr_transit_ASC_inc_high,pnr_transit_ASC_inc_high,,,,,,, +util_KNR_to_Transit_inc_low,KNR to Transit - Low income,@(df.is_indiv & (df.income <= 25000)),,,,,,,,,,,,knr_transit_ASC_inc_low,knr_transit_ASC_inc_low,knr_transit_ASC_inc_low,,,, +util_KNR_to_Transit_inc_mid,KNR to Transit - Mid income,@(df.is_indiv & (df.income <= 75000) & (df.income > 25000)),,,,,,,,,,,,knr_transit_ASC_inc_mid,knr_transit_ASC_inc_mid,knr_transit_ASC_inc_mid,,,, +util_KNR_to_Transit_inc_high,KNR to Transit - High income,@(df.is_indiv & (df.income >75000)),,,,,,,,,,,,knr_transit_ASC_inc_high,knr_transit_ASC_inc_high,knr_transit_ASC_inc_high,,,, +#util_Joint_tour_ASCs,,,,,,,,,,,,,,,,,,,, +util_Joint_WALK_to_Transit_inc_low,Joint - Walk to Transit - Low income,@(df.is_joint & (df.income <= 25000)),,,,,,joint_walk_transit_ASC_inc_low,joint_walk_transit_ASC_inc_low,joint_walk_transit_ASC_inc_low,,,,,,,,,, +util_Joint_WALK_to_Transit_inc_mid,Joint - Walk to Transit - Mid income,@(df.is_joint & (df.income <= 75000) & (df.income > 25000)),,,,,,joint_walk_transit_ASC_inc_mid,joint_walk_transit_ASC_inc_mid,joint_walk_transit_ASC_inc_mid,,,,,,,,,, +util_Joint_WALK_to_Transit_inc_high,Joint - Walk to Transit - High income,@(df.is_joint & (df.income >75000)),,,,,,joint_walk_transit_ASC_inc_high,joint_walk_transit_ASC_inc_high,joint_walk_transit_ASC_inc_high,,,,,,,,,, +util_Joint_PNR_to_Transit_inc_low,Joint - PNR to Transit - Low income,@(df.is_joint & (df.income <= 25000)),,,,,,,,,joint_pnr_transit_ASC_inc_low,joint_pnr_transit_ASC_inc_low,joint_pnr_transit_ASC_inc_low,,,,,,, +util_Joint_PNR_to_Transit_inc_mid,Joint - PNR to Transit - Mid income,@(df.is_joint & (df.income <= 75000) & (df.income > 40000)),,,,,,,,,joint_pnr_transit_ASC_inc_mid,joint_pnr_transit_ASC_inc_mid,joint_pnr_transit_ASC_inc_mid,,,,,,, +util_Joint_PNR_to_Transit_inc_high,Joint - PNR to Transit - High income,@(df.is_joint & (df.income >75000)),,,,,,,,,joint_pnr_transit_ASC_inc_high,joint_pnr_transit_ASC_inc_high,joint_pnr_transit_ASC_inc_high,,,,,,, +util_Joint_KNR_to_Transit_inc_low,Joint - KNR to Transit - Low income,@(df.is_joint & (df.income <= 25000)),,,,,,,,,,,,joint_knr_transit_ASC_inc_low,joint_knr_transit_ASC_inc_low,joint_knr_transit_ASC_inc_low,,,, +util_Joint_KNR_to_Transit_inc_mid,Joint - KNR to Transit - Mid income,@(df.is_joint & (df.income <= 75000) & (df.income > 25000)),,,,,,,,,,,,joint_knr_transit_ASC_inc_mid,joint_knr_transit_ASC_inc_mid,joint_knr_transit_ASC_inc_mid,,,, +util_Joint_KNR_to_Transit_inc_high,Joint - KNR to Transit - High income,@(df.is_joint & (df.income >75000)),,,,,,,,,,,,joint_knr_transit_ASC_inc_high,joint_knr_transit_ASC_inc_high,joint_knr_transit_ASC_inc_high,,,, +#,,,,,,,,,,,,,,,,,,,, +util_district1_2_cte,districts1_2_cte,districts1_2_cte,,,,,,1,1,1,1,1,1,1,1,1,,,, +util_district1_8_13_cte,districtS_8 to 13 cte,districts8_13_cte,,,,,,1,1,1,1,1,1,1,1,1,,,, +util_district1_15_cte,districts15_cte,districts15_cte,,,,,,coef_transit_district15,,,coef_transit_district15,,,coef_transit_district15,,,,,, +#,,,,,,,,,,,,,,,,,,,, +util_walk_DPM_asc,,PMOV_transit,,,,,,,0.8,,,0.8,,,0.8,,,,, +util_walk_StCar_asc,,StCar_transit,,,,,,,0.7,,,0.7,,,0.7,,,,, diff --git a/activitysim/examples/prototype_semcog/configs/tour_mode_choice.yaml b/activitysim/examples/production_semcog/configs/tour_mode_choice.yaml old mode 100755 new mode 100644 similarity index 89% rename from activitysim/examples/prototype_semcog/configs/tour_mode_choice.yaml rename to activitysim/examples/production_semcog/configs/tour_mode_choice.yaml index 59f4067bf..19b352c85 --- a/activitysim/examples/prototype_semcog/configs/tour_mode_choice.yaml +++ b/activitysim/examples/production_semcog/configs/tour_mode_choice.yaml @@ -53,17 +53,6 @@ COEFFICIENTS: tour_mode_choice_coeffs.csv COEFFICIENT_TEMPLATE: tour_mode_choice_coeffs_template.csv CONSTANTS: - #valueOfTime: 8.00 - costPerMile: 18.29 - costShareSr2: 1.75 - costShareSr3: 2.50 - waitThresh: 10.00 - walkThresh: 1.50 - shortWalk: 0.333 - longWalk: 0.667 - walkSpeed: 3.00 - bikeThresh: 6.00 - bikeSpeed: 12.00 maxCbdAreaTypeThresh: 2 indivTour: 1.00000 upperEA: 5 @@ -123,8 +112,8 @@ CONSTANTS: max_waitTime: 50 ivt_cost_multiplier: 0.6 - ivt_pmov_multiplier: 1.0 - ivt_stcar_multiplier: 0.9 + ivt_pmov_multiplier: 0.8 + ivt_stcar_multiplier: 0.8 ivt_brt_multiplier: 0.9 ivt_urb_multiplier: 0.8 ivt_com_multiplier: 0.7 @@ -166,11 +155,6 @@ CONSTANTS: 8: 1.0 transit_subsidy_fare_discount_percent_worktour: 0.9 -# joint_sr2_ASC_no_auto: 0 -# joint_sr2_ASC_auto_deficient: 0 -# joint_sr2_ASC_auto_sufficient: 0 -# joint_drive_transit_ASC_no_auto: 0 - # so far, we can use the same spec as for non-joint tours preprocessor: SPEC: tour_mode_choice_annotate_choosers_preprocessor @@ -199,6 +183,8 @@ LOGSUM_CHOOSER_COLUMNS: - num_workers - value_of_time - free_parking_at_work + - umich_affiliate + - income - transit_pass_ownership - transit_pass_subsidy -MODE_CHOICE_LOGSUM_COLUMN_NAME: mode_choice_logsum \ No newline at end of file +MODE_CHOICE_LOGSUM_COLUMN_NAME: mode_choice_logsum diff --git a/activitysim/examples/production_semcog/configs/tour_mode_choice_annotate_choosers_preprocessor.csv b/activitysim/examples/production_semcog/configs/tour_mode_choice_annotate_choosers_preprocessor.csv new file mode 100644 index 000000000..b676ec554 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_mode_choice_annotate_choosers_preprocessor.csv @@ -0,0 +1,193 @@ +Description,Target,Expression +#,, +local,_DF_IS_TOUR,'tour_type' in df.columns +,number_of_participants,df.number_of_participants if _DF_IS_TOUR else 1 +,is_joint,(df.tour_category=='joint') if _DF_IS_TOUR else False +#,, +,orig_district,"reindex(land_use.DISTRICT20, df[orig_col_name])" +,dest_district,"reindex(land_use.DISTRICT20, df[dest_col_name])" +,districts1_2_cte,"np.where((orig_district.isin([1,2])) & (dest_district.isin([1,2])), 0.1,0)" +,districts8_13_cte,"np.where((orig_district.isin([8,9,10,13])) & (dest_district.isin([8,9,10,13])), -2,0)" +,districts15_cte,"np.where((orig_district==15) & (dest_district==15), 2.2,0)" +#,, + local,_HAVE_PARENT_TOURS,'parent_tour_id' in df.columns +,_parent_tour_mode,"reindex(tours.tour_mode, df.parent_tour_id) if _HAVE_PARENT_TOURS else ''" +,work_tour_is_drive,_parent_tour_mode.isin(['DRIVEALONE']) +,work_tour_is_bike,_parent_tour_mode=='BIKE' +,work_tour_is_SOV,_parent_tour_mode.isin(['DRIVEALONE']) +#,, +,is_mandatory,(df.tour_category=='mandatory') if 'tour_category' in df.columns else False +,is_joint,(df.tour_category=='joint') if 'tour_category' in df.columns else False +,is_indiv,~is_joint +,is_atwork_subtour,(df.tour_category=='atwork') if 'tour_category' in df.columns else False +,is_escort,(df.tour_type == 'escort') if _DF_IS_TOUR else False +,is_school,(df.tour_type=='school') & (df.is_university==False) if _DF_IS_TOUR else False +#,, +#,c_cost,(0.60 * c_ivt) / df.value_of_time +#,, +,ivot,1.0/df.value_of_time +,terminal_time,"reindex(land_use.TERMINAL, df[dest_col_name])" +,dest_density_index,"reindex(land_use.density_index, df[dest_col_name])" +# FIXME no transit subzones so all zones short walk to transit,, +,_walk_transit_origin,True +,_walk_transit_destination,True +,walk_transit_available,_walk_transit_origin & _walk_transit_destination +,pnr_transit_available,_walk_transit_destination & (df.auto_ownership > 0) +,knr_transit_available,_walk_transit_origin & _walk_transit_destination +,origin_walk_time,shortWalk*60/walkSpeed +,destination_walk_time,shortWalk*60/walkSpeed +# RIDEHAIL,, +,origin_density_measure,"(reindex(land_use.tot_pop, df[orig_col_name]) + reindex(land_use.tot_emp, df[orig_col_name])) / (reindex(land_use.tot_acres, df[orig_col_name]) / 640)" +,dest_density_measure,"(reindex(land_use.tot_pop, df[dest_col_name]) + reindex(land_use.tot_emp, df[dest_col_name])) / (reindex(land_use.tot_acres, 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)" +,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()})" +,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 +,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()})" +,origin_zone_singleTNC_wait_time_sd,"origin_density.map({k: v for k, v in TNC_single_waitTime_sd.items()})" +,dest_zone_singleTNC_wait_time_mean,"dest_density.map({k: v for k, v in TNC_single_waitTime_mean.items()})" +,dest_zone_singleTNC_wait_time_sd,"dest_density.map({k: v for k, v in TNC_single_waitTime_sd.items()})" +,origSingleTNCWaitTime,"rng.lognormal_for_df(df, mu=origin_zone_singleTNC_wait_time_mean, sigma=origin_zone_singleTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)" +,destSingleTNCWaitTime,"rng.lognormal_for_df(df, mu=dest_zone_singleTNC_wait_time_mean, sigma=dest_zone_singleTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)" +,origin_zone_sharedTNC_wait_time_mean,"origin_density.map({k: v for k, v in TNC_shared_waitTime_mean.items()})" +,origin_zone_sharedTNC_wait_time_sd,"origin_density.map({k: v for k, v in TNC_shared_waitTime_sd.items()})" +,dest_zone_sharedTNC_wait_time_mean,"dest_density.map({k: v for k, v in TNC_shared_waitTime_mean.items()})" +,dest_zone_sharedTNC_wait_time_sd,"dest_density.map({k: v for k, v in TNC_shared_waitTime_sd.items()})" +,origSharedTNCWaitTime,"rng.lognormal_for_df(df, mu=origin_zone_sharedTNC_wait_time_mean, sigma=origin_zone_sharedTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)" +,destSharedTNCWaitTime,"rng.lognormal_for_df(df, mu=dest_zone_sharedTNC_wait_time_mean, sigma=dest_zone_sharedTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)" +,totalWaitTaxi,origTaxiWaitTime + destTaxiWaitTime +,totalWaitSingleTNC,origSingleTNCWaitTime + destSingleTNCWaitTime +,totalWaitSharedTNC,origSharedTNCWaitTime + destSharedTNCWaitTime +#,, +,_free_parking_available,(df.tour_type == 'work') & df.free_parking_at_work if _DF_IS_TOUR else False +,_dest_daily_parking_cost,"reindex(land_use.parking_daily, df[dest_col_name])" +,_dest_hourly_parking_cost_temp,"reindex(land_use.parking_hourly, df[dest_col_name])" +"if hourlycost option not exist, set it to high so daily would be selected below",_dest_hourly_parking_cost,"np.where(_dest_hourly_parking_cost_temp.isna(), 999, _dest_hourly_parking_cost_temp)" +,_daily_parking_cost,"np.where(is_mandatory, np.minimum(_dest_hourly_parking_cost * df.duration/2*100, _dest_daily_parking_cost*100), np.where(_dest_hourly_parking_cost!=999, _dest_hourly_parking_cost * df.duration/2 * 100,0))" +,daily_parking_cost,"np.where(_free_parking_available, 0, _daily_parking_cost)" +#,, +,distance,od_skims['DIST'] +,sov_available,(odt_skims['SOV_TIME']>0) & (dot_skims['SOV_TIME']>0) +,hov2_available,(odt_skims['HOV2_TIME'] + dot_skims['HOV2_TIME'])>0 +,hov3_available,(odt_skims['HOV3_TIME']>0) & (dot_skims['HOV3_TIME']>0) +#,, +destination in central business district,destination_in_cbd,"(reindex(land_use.AreaType, df[dest_col_name]) < setting('cbd_threshold')) * 1" +#,,FIXME diagnostic +#,sov_dist_rt,(odt_skims['SOV_DIST'] + dot_skims['SOV_DIST']) +,umich_affiliate,"df.get('umich_worker', default=False) | df.get('umich_student', default=False)" +#,,fare discounts (no discount for use in logsums) +#,ptype,df.ptype if _DF_IS_TOUR else 1 +#,transit_pass_ownership,df.transit_pass_ownership if _DF_IS_TOUR else 0 +#,transit_pass_subsidy,df.transit_pass_subsidy if _DF_IS_TOUR else 0 +#,tour_type,df.tour_type if _DF_IS_TOUR else 'other' +#,fare_nopass_discount_percent,"ptype.map({k: v for k, v in transit_nopass_fare_discount_percent.items()})" +#,fare_pass_discount_percent,"ptype.map({k: v for k, v in transit_pass_fare_discount_percent.items()})" +#,fare_subsidy_discount_percent,"np.where(tour_type=='work', transit_subsidy_fare_discount_percent_worktour, 0)" +#,fare_discount_percent_ff,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), 0, 1)" +#,fare_discount_percent_tf,"np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), fare_pass_discount_percent, 1)" +#,fare_discount_percent_ft,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), fare_nopass_discount_percent * (1-fare_subsidy_discount_percent), 1)" +#,fare_discount_percent_tt,"np.where((transit_pass_ownership == True ) & (transit_pass_subsidy == True), fare_pass_discount_percent * (1-fare_subsidy_discount_percent), 1)" +#,fare_discount_percent,fare_discount_percent_ff * fare_discount_percent_tf * fare_discount_percent_ft * fare_discount_percent_tt +#,, +,ptype,df.ptype if _DF_IS_TOUR else 1 +,transit_pass_ownership,df.transit_pass_ownership if _DF_IS_TOUR else 0 +,transit_pass_subsidy,df.transit_pass_subsidy if _DF_IS_TOUR else 0 +cash discounts for seniors and students and preKs,transit_cash_discount_factor,"np.where((df.age>64) | (ptype>5), cash_discount_factor, 1)" +100% subsidy if own subsidy,transit_subsidy_factor,"np.where(transit_pass_subsidy, 1, 0)" +,pass_discount_factor_ddot,"ptype.map({k: v for k, v in transit_pass_discount_factor_ddot.items()})" +,pass_discount_factor_smart,"ptype.map({k: v for k, v in transit_pass_discount_factor_smart.items()})" +,pass_discount_factor_aata,"ptype.map({k: v for k, v in transit_pass_discount_factor_aata.items()})" +,pass_discount_factor_um,"ptype.map({k: v for k, v in transit_pass_discount_factor_um.items()})" +,pass_discount_factor_other,"ptype.map({k: v for k, v in transit_pass_discount_factor_other.items()})" +#,pass discount differs by ptype and agency, +,WLKLOC_pass_discount_DDOT,"np.where((odt_skims['WLK_LOC_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,PNRLOC_pass_discount_DDOT,"np.where((odt_skims['PNR_LOC_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,KNRLOC_pass_discount_DDOT,"np.where((odt_skims['KNR_LOC_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,WLKLOC_pass_discount_SMART,"np.where((odt_skims['WLK_LOC_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,PNRLOC_pass_discount_SMART,"np.where((odt_skims['PNR_LOC_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,KNRLOC_pass_discount_SMART,"np.where((odt_skims['KNR_LOC_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,WLKLOC_pass_discount_AATA,"np.where((odt_skims['WLK_LOC_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,PNRLOC_pass_discount_AATA,"np.where((odt_skims['PNR_LOC_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,KNRLOC_pass_discount_AATA,"np.where((odt_skims['KNR_LOC_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,WLKLOC_pass_discount_UM,"np.where((odt_skims['WLK_LOC_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,PNRLOC_pass_discount_UM,"np.where((odt_skims['PNR_LOC_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,KNRLOC_pass_discount_UM,"np.where((odt_skims['KNR_LOC_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,WLKLOC_pass_discount_OTHER,"np.where((odt_skims['WLK_LOC_IVTT_BWAT']>0) | (odt_skims['WLK_LOC_IVTT_LET']>0), pass_discount_factor_other, 1)" +,PNRLOC_pass_discount_OTHER,"np.where((odt_skims['PNR_LOC_IVTT_BWAT']>0) | (odt_skims['PNR_LOC_IVTT_LET']>0), pass_discount_factor_other, 1)" +,KNRLOC_pass_discount_OTHER,"np.where((odt_skims['KNR_LOC_IVTT_BWAT']>0) | (odt_skims['KNR_LOC_IVTT_LET']>0), pass_discount_factor_other, 1)" +,WLKPRM_pass_discount_OTHER,"np.where((odt_skims['WLK_PRM_IVTT_PMov']>0) | (odt_skims['WLK_PRM_IVTT_StCar']>0), pass_discount_factor_other, 1)" +,PNRPRM_pass_discount_OTHER,"np.where((odt_skims['PNR_PRM_IVTT_PMov']>0) | (odt_skims['PNR_PRM_IVTT_LET']>0), pass_discount_factor_other, 1)" +,KNRPRM_pass_discount_OTHER,"np.where((odt_skims['KNR_PRM_IVTT_PMov']>0) | (odt_skims['KNR_PRM_IVTT_StCar']>0), pass_discount_factor_other, 1)" +,WLKMIX_pass_discount_DDOT,"np.where((odt_skims['WLK_MIX_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,PNRMIX_pass_discount_DDOT,"np.where((odt_skims['PNR_MIX_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,KNRMIX_pass_discount_DDOT,"np.where((odt_skims['KNR_MIX_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,WLKMIX_pass_discount_SMART,"np.where((odt_skims['WLK_MIX_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,PNRMIX_pass_discount_SMART,"np.where((odt_skims['PNR_MIX_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,KNRMIX_pass_discount_SMART,"np.where((odt_skims['KNR_MIX_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,WLKMIX_pass_discount_AATA,"np.where((odt_skims['WLK_MIX_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,PNRMIX_pass_discount_AATA,"np.where((odt_skims['PNR_MIX_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,KNRMIX_pass_discount_AATA,"np.where((odt_skims['KNR_MIX_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,WLKMIX_pass_discount_UM,"np.where((odt_skims['WLK_MIX_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,PNRMIX_pass_discount_UM,"np.where((odt_skims['PNR_MIX_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,KNRMIX_pass_discount_UM,"np.where((odt_skims['KNR_MIX_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,WLKMIX_pass_discount_OTHER,"np.where((odt_skims['WLK_MIX_IVTT_BWAT']>0) | (odt_skims['WLK_MIX_IVTT_LET']>0) | (odt_skims['WLK_PRM_IVTT_PMov']>0) | (odt_skims['WLK_PRM_IVTT_StCar']>0), pass_discount_factor_other, 1)" +,PNRMIX_pass_discount_OTHER,"np.where((odt_skims['PNR_MIX_IVTT_BWAT']>0) | (odt_skims['PNR_MIX_IVTT_LET']>0) | (odt_skims['PNR_MIX_IVTT_PMov']>0) | (odt_skims['PNR_MIX_IVTT_StCar']>0), pass_discount_factor_other, 1)" +,KNRMIX_pass_discount_OTHER,"np.where((odt_skims['KNR_MIX_IVTT_BWAT']>0) | (odt_skims['KNR_MIX_IVTT_LET']>0) | (odt_skims['KNR_MIX_IVTT_PMov']>0) | (odt_skims['KNR_MIX_IVTT_StCar']>0), pass_discount_factor_other, 1)" +#,Use the defined hierarchy to pick the pass discount for each transit alt, +,WLKLOC_pass_discount,"np.where(WLKLOC_pass_discount_DDOT<1, WLKLOC_pass_discount_DDOT, np.where(WLKLOC_pass_discount_SMART<1, WLKLOC_pass_discount_SMART, np.where(WLKLOC_pass_discount_AATA<1, WLKLOC_pass_discount_AATA, WLKLOC_pass_discount_OTHER)))" +,WLKPRM_pass_discount,WLKPRM_pass_discount_OTHER +,WLKMIX_pass_discount,"np.where(WLKMIX_pass_discount_DDOT<1, WLKMIX_pass_discount_DDOT, np.where(WLKMIX_pass_discount_SMART<1, WLKMIX_pass_discount_SMART, np.where(WLKMIX_pass_discount_AATA<1, WLKMIX_pass_discount_AATA, WLKMIX_pass_discount_OTHER)))" +,PNRLOC_pass_discount,"np.where(PNRLOC_pass_discount_DDOT<1, PNRLOC_pass_discount_DDOT, np.where(PNRLOC_pass_discount_SMART<1, PNRLOC_pass_discount_SMART, np.where(PNRLOC_pass_discount_AATA<1, PNRLOC_pass_discount_AATA, PNRLOC_pass_discount_OTHER)))" +,PNRPRM_pass_discount,PNRPRM_pass_discount_OTHER +,PNRMIX_pass_discount,"np.where(PNRMIX_pass_discount_DDOT<1, PNRMIX_pass_discount_DDOT, np.where(PNRMIX_pass_discount_SMART<1, PNRMIX_pass_discount_SMART, np.where(PNRMIX_pass_discount_AATA<1, PNRMIX_pass_discount_AATA, PNRMIX_pass_discount_OTHER)))" +,KNRLOC_pass_discount,"np.where(KNRLOC_pass_discount_DDOT<1, KNRLOC_pass_discount_DDOT, np.where(KNRLOC_pass_discount_SMART<1, KNRLOC_pass_discount_SMART, np.where(KNRLOC_pass_discount_AATA<1, KNRLOC_pass_discount_AATA, KNRLOC_pass_discount_OTHER)))" +,KNRPRM_pass_discount,KNRPRM_pass_discount_OTHER +,KNRMIX_pass_discount,"np.where(KNRMIX_pass_discount_DDOT<1, KNRMIX_pass_discount_DDOT, np.where(KNRMIX_pass_discount_SMART<1, KNRMIX_pass_discount_SMART, np.where(KNRMIX_pass_discount_AATA<1, KNRMIX_pass_discount_AATA, KNRMIX_pass_discount_OTHER)))" +#,"Now compute the fare discounts using cash, subsidy, and pass discounts", +,WLKLOC_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), WLKLOC_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), WLKLOC_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,WLKPRM_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), WLKPRM_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), WLKPRM_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,WLKMIX_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), WLKMIX_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), WLKMIX_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,PNRLOC_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), PNRLOC_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), PNRLOC_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,PNRPRM_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), PNRPRM_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), PNRPRM_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,PNRMIX_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), PNRMIX_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), PNRMIX_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,KNRLOC_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), KNRLOC_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), KNRLOC_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,KNRPRM_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), KNRPRM_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), KNRPRM_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,KNRMIX_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), KNRMIX_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), KNRMIX_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +#,, +Determining Tour Origin,origin,df.origin if 'origin' in df.columns else df.home_zone_id if 'home_zone_id' in df.columns else df.workplace_zone_id +Determining Tour Destination,destination,df.destination if 'destination' in df.columns else df.alt_dest +#access egress distances,, +,origin_local_dist,"reindex(land_use.AE_LOCAL, origin)" +,origin_prm_dist,"reindex(land_use.AE_PRM, origin)" +min of local and premium dist,origin_mix_dist,"np.minimum(origin_local_dist, origin_prm_dist)" +,dest_local_dist,"reindex(land_use.AE_LOCAL, destination)" +,dest_prm_dist,"reindex(land_use.AE_PRM, destination)" +,dest_mix_dist,"np.minimum(dest_local_dist, dest_prm_dist)" +#transit availability,, +,walk_local_available,walk_transit_available & (odt_skims['WLK_LOC_IVT']>0) & (dot_skims['WLK_LOC_IVT']>0) & (origin_local_dist < max_local_walk_dist) & (dest_local_dist < max_local_walk_dist) +,walk_premium_available,walk_transit_available & (odt_skims['WLK_PRM_IVT']>0) & (dot_skims['WLK_PRM_IVT']>0) & (origin_prm_dist < max_prm_walk_dist) & (dest_prm_dist < max_prm_walk_dist) +,walk_mix_available,walk_transit_available & (odt_skims['WLK_MIX_IVT']>0) & (dot_skims['WLK_MIX_IVT']>0) & (origin_mix_dist < max_mix_walk_dist) & (dest_mix_dist < max_mix_walk_dist) +,pnr_local_available,pnr_transit_available & (odt_skims['PNR_LOC_IVT']>0) & (dot_skims['PNRE_LOC_IVT']>0) & (dest_local_dist < max_local_walk_dist) +,pnr_premium_available,pnr_transit_available & (odt_skims['PNR_PRM_IVT']>0) & (dot_skims['PNRE_PRM_IVT']>0) & (dest_prm_dist < max_prm_walk_dist) +,pnr_mix_available,pnr_transit_available & (odt_skims['PNR_MIX_IVT']>0) & (dot_skims['PNRE_MIX_IVT']>0) & (dest_mix_dist < max_mix_walk_dist) +,knr_local_available,knr_transit_available & (odt_skims['KNR_LOC_IVT']>0) & (dot_skims['KNRE_LOC_IVT']>0) & (dest_local_dist < max_local_walk_dist) +,knr_premium_available,knr_transit_available & (odt_skims['KNR_PRM_IVT']>0) & (dot_skims['KNRE_PRM_IVT']>0) & (dest_prm_dist < max_prm_walk_dist) +,knr_mix_available,knr_transit_available & (odt_skims['KNR_MIX_IVT']>0) & (dot_skims['KNRE_MIX_IVT']>0) & (dest_mix_dist < max_mix_walk_dist) +#access egress times,, +,origin_local_time,origin_local_dist * 60/walk_speed +,origin_prm_time,origin_prm_dist * 60/walk_speed +,origin_mix_time,origin_mix_dist * 60/walk_speed +,dest_local_time,dest_local_dist * 60/walk_speed +,dest_prm_time,dest_prm_dist * 60/walk_speed +,dest_mix_time,dest_mix_dist * 60/walk_speed +#,, +,PMOV_transit,"np.where(((odt_skims['WLK_PRM_IVTT_PMov']>0) & (dot_skims['WLK_PRM_IVTT_PMov']>0)) | ((odt_skims['PNR_PRM_IVTT_PMov']>0) & (dot_skims['PNRE_PRM_IVTT_PMov']>0)) | ((odt_skims['KNR_PRM_IVTT_PMov']>0) & (dot_skims['KNRE_PRM_IVTT_PMov']>0)) & ((odt_skims['WLK_MIX_NT']==0)&(odt_skims['PNR_MIX_NT']==0)&(odt_skims['KNR_MIX_NT']==0)&(odt_skims['PNRE_MIX_NT']==0)&(odt_skims['KNRE_MIX_NT']==0)),1,0)" +,PMOV_transit_wTransfer,"np.where(((odt_skims['WLK_PRM_IVTT_PMov']>0) & (dot_skims['WLK_PRM_IVTT_PMov']>0)) | ((odt_skims['PNR_PRM_IVTT_PMov']>0) & (dot_skims['PNRE_PRM_IVTT_PMov']>0)) | ((odt_skims['KNR_PRM_IVTT_PMov']>0) & (dot_skims['KNRE_PRM_IVTT_PMov']>0)) & ((odt_skims['WLK_PRM_NT']>0)|(odt_skims['PNR_PRM_NT']>0)|(odt_skims['KNR_PRM_NT']>0)|(odt_skims['PNRE_PRM_NT']>0)|(odt_skims['KNRE_PRM_NT']>0)),1,0)" +,StCar_transit,"np.where((((odt_skims['WLK_PRM_IVTT_StCar']>0) & (dot_skims['WLK_PRM_IVTT_StCar']>0)) | ((odt_skims['PNR_PRM_IVTT_StCar']>0) & (dot_skims['PNRE_PRM_IVTT_StCar']>0)) | ((odt_skims['KNR_PRM_IVTT_StCar']>0) & (dot_skims['KNRE_PRM_IVTT_StCar']>0))) & ((odt_skims['WLK_MIX_NT']==0)&(odt_skims['PNR_MIX_NT']==0)&(odt_skims['KNR_MIX_NT']==0)&(odt_skims['PNRE_MIX_NT']==0)&(odt_skims['KNRE_MIX_NT']==0)),1,0)" +,StCar_transit_wTransfer,"np.where((((odt_skims['WLK_PRM_IVTT_StCar']>0) & (dot_skims['WLK_PRM_IVTT_StCar']>0)) | ((odt_skims['PNR_PRM_IVTT_StCar']>0) & (dot_skims['PNRE_PRM_IVTT_StCar']>0)) | ((odt_skims['KNR_PRM_IVTT_StCar']>0) & (dot_skims['KNRE_PRM_IVTT_StCar']>0))) & ((odt_skims['WLK_PRM_NT']>0)&(odt_skims['PNR_PRM_NT']>0)&(odt_skims['KNR_PRM_NT']>0)&(odt_skims['PNRE_PRM_NT']>0)&(odt_skims['KNRE_PRM_NT']>0)),1,0)" +,AATA_transit,"np.where(((odt_skims['WLK_LOC_IVTT_AAATA']>0) & (dot_skims['WLK_LOC_IVTT_AAATA']>0)) | ((odt_skims['PNR_LOC_IVTT_AAATA']>0) & (dot_skims['PNRE_LOC_IVTT_AAATA']>0)) | ((odt_skims['KNR_LOC_IVTT_AAATA']>0) & (dot_skims['KNRE_LOC_IVTT_AAATA']>0)),1,0)" diff --git a/activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs.csv b/activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs.csv new file mode 100644 index 000000000..9fb2d0eda --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs.csv @@ -0,0 +1,485 @@ +coefficient_name,value,constrain +coef_nest_root,1,T +coef_nest_AUTO,0.72,T +coef_nest_AUTO_DRIVEALONE,0.35,T +coef_nest_AUTO_SHAREDRIDE2,0.35,T +coef_nest_AUTO_SHAREDRIDE3,0.35,T +coef_nest_NONMOTORIZED,0.72,T +coef_nest_TRANSIT,0.72,T +coef_nest_TRANSIT_WALKACCESS,0.5,T +coef_nest_TRANSIT_KNRACCESS,0.5,T +coef_nest_TRANSIT_PNRACCESS,0.5,T +coef_nest_SCHOOL_BUS,0.72,T +coef_nest_RIDEHAIL,0.36,T +coef_ivt_eatout_escort_othdiscr_othmaint_shopping_social,-0.0175,F +coef_ivt_school_univ,-0.0224,F +coef_ivt_work,-0.0134,F +coef_ivt_atwork,-0.0188,F +coef_age1619_da_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,0,F +coef_age1619_da_multiplier_school_univ,-1.3813,F +coef_age1619_da_multiplier_atwork,0.0032336,F +coef_age010_trn_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,0,F +coef_age010_trn_multiplier_school_univ,-1.5548,F +coef_age010_trn_multiplier_atwork,0.000722,F +coef_age16p_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social,-1.366,F +coef_age16p_sr_multiplier_school_univ_work_atwork,0,F +coef_hhsize1_sr_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_atwork,0,F +coef_hhsize1_sr_multiplier_work,-0.734588,F +coef_hhsize2_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work_atwork,0,F +coef_hhsize2_sr_multiplier_school_univ,-0.6359,F +walk_ASC_no_auto_eatout,7.245135654,F +walk_ASC_no_auto_escort,5.377811059,F +walk_ASC_no_auto_othdiscr,5.386612954,F +walk_ASC_no_auto_othmaint,3.863903259,F +walk_ASC_no_auto_school,12.61921094,F +walk_ASC_no_auto_shopping,4.953481559,F +walk_ASC_no_auto_social,3.988109854,F +walk_ASC_no_auto_univ,3.283262773,F +walk_ASC_no_auto_work,6.163475276,F +walk_ASC_no_auto_atwork,1.891282209,F +walk_ASC_auto_deficient_eatout,3.078855796,F +walk_ASC_auto_deficient_escort,-1.36860007,F +walk_ASC_auto_deficient_othdiscr,2.053658296,F +walk_ASC_auto_deficient_othmaint,0.90248689,F +walk_ASC_auto_deficient_school,1.058407835,F +walk_ASC_auto_deficient_shopping,1.80361979,F +walk_ASC_auto_deficient_social,2.674434796,F +walk_ASC_auto_deficient_univ,6.147162109,F +walk_ASC_auto_deficient_work,2.159453616,F +walk_ASC_auto_deficient_atwork,-4.856915223,F +walk_ASC_auto_sufficient_eatout,2.09444032,F +walk_ASC_auto_sufficient_escort,-1.573050181,F +walk_ASC_auto_sufficient_othdiscr,1.80609762,F +walk_ASC_auto_sufficient_othmaint,0.038519819,F +walk_ASC_auto_sufficient_school,-1.250294494,F +walk_ASC_auto_sufficient_shopping,-0.030177281,F +walk_ASC_auto_sufficient_social,2.24996862,F +walk_ASC_auto_sufficient_univ,3.586216606,F +walk_ASC_auto_sufficient_work,-0.509785407,F +walk_ASC_auto_sufficient_atwork,0.761535047,F +bike_ASC_no_auto_eatout,0.642751048,F +bike_ASC_no_auto_escort,-2.349130024,F +bike_ASC_no_auto_othdiscr,-0.601743112,F +bike_ASC_no_auto_othmaint,-0.093484624,F +bike_ASC_no_auto_school,0,F +bike_ASC_no_auto_shopping,-0.798762524,F +bike_ASC_no_auto_social,-0.204736702,F +bike_ASC_no_auto_univ,1.140656827,F +bike_ASC_no_auto_work,2.704438894,F +bike_ASC_no_auto_atwork,11.45762899,F +bike_ASC_auto_deficient_eatout,-1.02631018,F +bike_ASC_auto_deficient_escort,-3.864296367,F +bike_ASC_auto_deficient_othdiscr,0.45033208,F +bike_ASC_auto_deficient_othmaint,-0.854833267,F +bike_ASC_auto_deficient_school,-0.628649477,F +bike_ASC_auto_deficient_shopping,-0.212213027,F +bike_ASC_auto_deficient_social,1.17732182,F +bike_ASC_auto_deficient_univ,0.721995349,F +bike_ASC_auto_deficient_work,-0.021302925,F +bike_ASC_auto_deficient_atwork,-10,F +bike_ASC_auto_sufficient_eatout,-1.245442859,F +bike_ASC_auto_sufficient_escort,-4.512371773,F +bike_ASC_auto_sufficient_othdiscr,-1.116555459,F +bike_ASC_auto_sufficient_othmaint,-2.257565773,F +bike_ASC_auto_sufficient_school,-3.048928862,F +bike_ASC_auto_sufficient_shopping,-2.015473673,F +bike_ASC_auto_sufficient_social,-1.413166759,F +bike_ASC_auto_sufficient_univ,-0.386788169,F +bike_ASC_auto_sufficient_work,-2.09112205,F +bike_ASC_auto_sufficient_atwork,-0.675198411,F +sr2_ASC_auto_deficient_eatout,0.154370234,F +sr2_ASC_auto_deficient_escort,0.638036424,F +sr2_ASC_auto_deficient_othdiscr,0.226287034,F +sr2_ASC_auto_deficient_othmaint,0.900189124,F +sr2_ASC_auto_deficient_school,0.007268111,F +sr2_ASC_auto_deficient_shopping,0.882133984,F +sr2_ASC_auto_deficient_social,1.421988534,F +sr2_ASC_auto_deficient_univ,0.023547615,F +sr2_ASC_auto_deficient_work,-0.330451823,F +sr2_ASC_auto_deficient_atwork,-9.627336365,F +sr2_ASC_auto_sufficient_eatout,0.77961169,F +sr2_ASC_auto_sufficient_escort,0.053737881,F +sr2_ASC_auto_sufficient_othdiscr,0.41365231,F +sr2_ASC_auto_sufficient_othmaint,0.311916711,F +sr2_ASC_auto_sufficient_school,-1.925159966,F +sr2_ASC_auto_sufficient_shopping,0.251444951,F +sr2_ASC_auto_sufficient_social,0.44040864,F +sr2_ASC_auto_sufficient_univ,-0.577536319,F +sr2_ASC_auto_sufficient_work,-0.762064286,F +sr2_ASC_auto_sufficient_atwork,-1.677110787,F +sr3p_ASC_no_auto_eatout,1.919648853,F +sr3p_ASC_no_auto_escort,0.141779955,F +sr3p_ASC_no_auto_othdiscr,1.869818073,F +sr3p_ASC_no_auto_othmaint,1.151521255,F +sr3p_ASC_no_auto_school,9.534872554,F +sr3p_ASC_no_auto_shopping,1.674917175,F +sr3p_ASC_no_auto_social,0.193958853,F +sr3p_ASC_no_auto_univ,-0.004632104,F +sr3p_ASC_no_auto_work,-0.958625298,F +sr3p_ASC_no_auto_atwork,-0.515769726,F +sr3p_ASC_auto_deficient_eatout,0.006033604,F +sr3p_ASC_auto_deficient_escort,0.407928534,F +sr3p_ASC_auto_deficient_othdiscr,1.007077844,F +sr3p_ASC_auto_deficient_othmaint,-0.533276306,F +sr3p_ASC_auto_deficient_school,0.540571768,F +sr3p_ASC_auto_deficient_shopping,0.742746028,F +sr3p_ASC_auto_deficient_social,1.460705544,F +sr3p_ASC_auto_deficient_univ,0.310548307,F +sr3p_ASC_auto_deficient_work,-0.810446929,F +sr3p_ASC_auto_deficient_atwork,-9.60253331,F +sr3p_ASC_auto_sufficient_eatout,0.575245084,F +sr3p_ASC_auto_sufficient_escort,0.00612872,F +sr3p_ASC_auto_sufficient_othdiscr,0.316887534,F +sr3p_ASC_auto_sufficient_othmaint,-0.01195742,F +sr3p_ASC_auto_sufficient_school,-1.319156496,F +sr3p_ASC_auto_sufficient_shopping,-0.014030045,F +sr3p_ASC_auto_sufficient_social,0.234564344,F +sr3p_ASC_auto_sufficient_univ,-0.773804624,F +sr3p_ASC_auto_sufficient_work,-1.403842021,F +sr3p_ASC_auto_sufficient_atwork,-2.092459793,F +walk_transit_ASC_no_auto_eatout,1.155234091,F +walk_transit_ASC_no_auto_escort,-2.959133756,F +walk_transit_ASC_no_auto_othdiscr,0.805375791,F +walk_transit_ASC_no_auto_othmaint,1.822419944,F +walk_transit_ASC_no_auto_school,8.545499008,F +walk_transit_ASC_no_auto_shopping,1.364821944,F +walk_transit_ASC_no_auto_social,-0.056937609,F +walk_transit_ASC_no_auto_univ,2.528979018,F +walk_transit_ASC_no_auto_work,4.142510201,F +walk_transit_ASC_no_auto_atwork,-2.411553685,F +walk_transit_ASC_auto_deficient_eatout,-0.128346613,F +walk_transit_ASC_auto_deficient_escort,-2.554647163,F +walk_transit_ASC_auto_deficient_othdiscr,0.863705027,F +walk_transit_ASC_auto_deficient_othmaint,-0.653668963,F +walk_transit_ASC_auto_deficient_school,1.877685198,F +walk_transit_ASC_auto_deficient_shopping,1.558399937,F +walk_transit_ASC_auto_deficient_social,0.885061497,F +walk_transit_ASC_auto_deficient_univ,4.708304361,F +walk_transit_ASC_auto_deficient_work,1.633394791,F +walk_transit_ASC_auto_deficient_atwork,-10.41361322,F +walk_transit_ASC_auto_sufficient_eatout,-3.270192236,F +walk_transit_ASC_auto_sufficient_escort,-6.111068613,F +walk_transit_ASC_auto_sufficient_othdiscr,-2.963869566,F +walk_transit_ASC_auto_sufficient_othmaint,-2.72333881,F +walk_transit_ASC_auto_sufficient_school,-2.973138685,F +walk_transit_ASC_auto_sufficient_shopping,-3.37990141,F +walk_transit_ASC_auto_sufficient_social,-2.502877536,F +walk_transit_ASC_auto_sufficient_univ,0.236918226,F +walk_transit_ASC_auto_sufficient_work,-2.639528024,F +walk_transit_ASC_auto_sufficient_atwork,-6.16180819,F +ridehail_ASC_no_auto_eatout,-2.045321096,F +ridehail_ASC_no_auto_escort,-0.167281413,F +ridehail_ASC_no_auto_othdiscr,-2.045321096,F +ridehail_ASC_no_auto_othmaint,-0.167281413,F +ridehail_ASC_no_auto_school,0,F +ridehail_ASC_no_auto_shopping,-0.167281413,F +ridehail_ASC_no_auto_social,-2.045321096,F +ridehail_ASC_no_auto_univ,-2,F +ridehail_ASC_no_auto_work,-4.816096715,F +ridehail_ASC_no_auto_atwork,-6.233631424,F +ridehail_ASC_auto_deficient_eatout,2.640431996,F +ridehail_ASC_auto_deficient_escort,-4.464633613,F +ridehail_ASC_auto_deficient_othdiscr,2.640431996,F +ridehail_ASC_auto_deficient_othmaint,-4.464633613,F +ridehail_ASC_auto_deficient_school,-8,F +ridehail_ASC_auto_deficient_shopping,-4.464633613,F +ridehail_ASC_auto_deficient_social,2.640431996,F +ridehail_ASC_auto_deficient_univ,-4.235125902,F +ridehail_ASC_auto_deficient_work,-0.674654999,F +ridehail_ASC_auto_deficient_atwork,-6.501686194,F +ridehail_ASC_auto_sufficient_eatout,1.259325587,F +ridehail_ASC_auto_sufficient_escort,-3.809040237,F +ridehail_ASC_auto_sufficient_othdiscr,1.259325587,F +ridehail_ASC_auto_sufficient_othmaint,-3.809040237,F +ridehail_ASC_auto_sufficient_school,-10,F +ridehail_ASC_auto_sufficient_shopping,-3.809040237,F +ridehail_ASC_auto_sufficient_social,1.259325587,F +ridehail_ASC_auto_sufficient_univ,-3.592479947,F +ridehail_ASC_auto_sufficient_work,-1.366285294,F +ridehail_ASC_auto_sufficient_atwork,-1.09678927,F +joint_walk_ASC_no_auto_all,0.187552654,F +joint_walk_ASC_auto_deficient_all,0.920969324,F +joint_walk_ASC_auto_sufficient_all,-2.318049556,F +joint_bike_ASC_no_auto_all,-2.436803748,F +joint_bike_ASC_auto_deficient_all,-1.988554538,F +joint_bike_ASC_auto_sufficient_all,-6.14466696,F +joint_sr2_ASC_no_auto_all,0,T +joint_sr2_ASC_auto_deficient_all,0,T +joint_sr2_ASC_auto_sufficient_all,0,T +joint_sr3p_ASC_no_auto_all,-0.780430525,F +joint_sr3p_ASC_auto_deficient_all,-1.058527735,F +joint_sr3p_ASC_auto_sufficient_all,-3.128634943,F +joint_walk_transit_ASC_no_auto_all,-1.887321235,F +joint_walk_transit_ASC_auto_deficient_all,-3.750881156,F +joint_walk_transit_ASC_auto_sufficient_all,-8.858079666,F +walk_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,0.525,F +walk_transit_CBD_ASC_school_univ,0.672,F +walk_transit_CBD_ASC_work,0.804,F +walk_transit_CBD_ASC_atwork,0.564,F +drive_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,0.525,F +drive_transit_CBD_ASC_school_univ,0.672,F +drive_transit_CBD_ASC_work,1.1,F +drive_transit_CBD_ASC_atwork,0.564,F +joint_knr_transit_ASC_auto_deficient_all,-0.253706151,F +joint_knr_transit_ASC_auto_sufficient_all,-9.070832511,F +joint_knr_transit_ASC_no_auto_all,1.114290704,F +joint_pnr_transit_ASC_auto_deficient_all,-5.785321634,F +joint_pnr_transit_ASC_auto_sufficient_all,-11.59627446,F +joint_pnr_transit_ASC_no_auto_all,0,T +knr_transit_ASC_auto_deficient_atwork,1.209179807,F +knr_transit_ASC_auto_deficient_eatout,-1.349765692,F +knr_transit_ASC_auto_deficient_escort,-2.442640714,F +knr_transit_ASC_auto_deficient_othdiscr,-0.357714052,F +knr_transit_ASC_auto_deficient_othmaint,-0.541662514,F +knr_transit_ASC_auto_deficient_school,2.51160049,F +knr_transit_ASC_auto_deficient_shopping,1.670406386,F +knr_transit_ASC_auto_deficient_social,-0.336357582,F +knr_transit_ASC_auto_deficient_univ,0.326785116,F +knr_transit_ASC_auto_deficient_work,-0.161159036,F +knr_transit_ASC_auto_sufficient_atwork,-8.401027,F +knr_transit_ASC_auto_sufficient_eatout,-4.530870958,F +knr_transit_ASC_auto_sufficient_escort,-6.70815857,F +knr_transit_ASC_auto_sufficient_othdiscr,-4.224548288,F +knr_transit_ASC_auto_sufficient_othmaint,-3.32042877,F +knr_transit_ASC_auto_sufficient_school,-2.140979117,F +knr_transit_ASC_auto_sufficient_shopping,-3.97699137,F +knr_transit_ASC_auto_sufficient_social,-3.763556258,F +knr_transit_ASC_auto_sufficient_univ,-4.764851235,F +knr_transit_ASC_auto_sufficient_work,-4.605345843,F +knr_transit_ASC_no_auto_atwork,9.920920461,F +knr_transit_ASC_no_auto_eatout,-0.974474564,F +knr_transit_ASC_no_auto_escort,0.343505332,F +knr_transit_ASC_no_auto_othdiscr,-0.974474564,F +knr_transit_ASC_no_auto_othmaint,0.343505332,F +knr_transit_ASC_no_auto_school,10.55224125,F +knr_transit_ASC_no_auto_shopping,0.343505332,F +knr_transit_ASC_no_auto_social,-0.974474564,F +knr_transit_ASC_no_auto_univ,-1.114321226,F +knr_transit_ASC_no_auto_work,2.483257905,F +local_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0,F +local_ASC_school_univ,0,F +local_ASC_work,0,F +mix_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0,F +mix_ASC_school_univ,0,F +mix_ASC_work,0,F +pnr_transit_ASC_auto_deficient_atwork,-998.8196,F +pnr_transit_ASC_auto_deficient_eatout,-0.52292005,F +pnr_transit_ASC_auto_deficient_escort,-1.530423928,F +pnr_transit_ASC_auto_deficient_othdiscr,-0.80279535,F +pnr_transit_ASC_auto_deficient_othmaint,-0.676149508,F +pnr_transit_ASC_auto_deficient_school,1.831621993,F +pnr_transit_ASC_auto_deficient_shopping,-0.795209008,F +pnr_transit_ASC_auto_deficient_social,0.43999335,F +pnr_transit_ASC_auto_deficient_univ,2.538231083,F +pnr_transit_ASC_auto_deficient_work,-0.691994719,F +pnr_transit_ASC_auto_sufficient_atwork,-999.21466,F +pnr_transit_ASC_auto_sufficient_eatout,-4.071057003,F +pnr_transit_ASC_auto_sufficient_escort,-6.639637962,F +pnr_transit_ASC_auto_sufficient_othdiscr,-3.480132843,F +pnr_transit_ASC_auto_sufficient_othmaint,-4.663161062,F +pnr_transit_ASC_auto_sufficient_school,-3.549444013,F +pnr_transit_ASC_auto_sufficient_shopping,-4.210107062,F +pnr_transit_ASC_auto_sufficient_social,-3.717396893,F +pnr_transit_ASC_auto_sufficient_univ,0.209549886,F +pnr_transit_ASC_auto_sufficient_work,-2.835680786,F +pnr_transit_ASC_no_auto_atwork,0,F +pnr_transit_ASC_no_auto_eatout,0,F +pnr_transit_ASC_no_auto_escort,0,F +pnr_transit_ASC_no_auto_othdiscr,0,F +pnr_transit_ASC_no_auto_othmaint,0,F +pnr_transit_ASC_no_auto_school,0,F +pnr_transit_ASC_no_auto_shopping,0,F +pnr_transit_ASC_no_auto_social,0,F +pnr_transit_ASC_no_auto_univ,0,F +pnr_transit_ASC_no_auto_work,0,F +premium_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0,F +premium_ASC_school_univ,0,F +premium_ASC_work,0,F +schoolbus_ASC_auto_deficient_school,0.700834542,F +schoolbus_ASC_auto_sufficient_school,-1.304297646,F +schoolbus_ASC_no_auto_school,10.02392266,F +schoolbus_ASC_not_school,0,T +sr2_ASC_no_auto_atwork,-0.458737013,F +sr2_ASC_no_auto_eatout,1.213600735,F +sr2_ASC_no_auto_escort,1.552940632,F +sr2_ASC_no_auto_othdiscr,1.213600735,F +sr2_ASC_no_auto_othmaint,1.552940632,F +sr2_ASC_no_auto_school,8.193011953,F +sr2_ASC_no_auto_shopping,1.552940632,F +sr2_ASC_no_auto_social,1.213600735,F +sr2_ASC_no_auto_univ,0.470068308,F +sr2_ASC_no_auto_work,0.746531489,F +taxi_ASC_no_auto_eatout_othdiscr_social,0.9923,F +taxi_ASC_no_auto_escort_othmaint_shopping,1.8939,F +taxi_ASC_no_auto_school_univ,-7,T +taxi_ASC_no_auto_work,4.7291,F +taxi_ASC_no_auto_atwork,4.1021,F +taxi_ASC_auto_deficient_eatout_othdiscr_social,-3.1317,F +taxi_ASC_auto_deficient_escort_othmaint_shopping,0.1766,F +taxi_ASC_auto_deficient_school,-0.3338,F +taxi_ASC_auto_deficient_univ,4.2492,F +taxi_ASC_auto_deficient_work,-1.4766,F +taxi_ASC_auto_deficient_atwork,-4.4046,F +taxi_ASC_auto_sufficient_eatout_othdiscr_social,-3.0374,F +taxi_ASC_auto_sufficient_escort_othmaint_shopping,-1.8055,F +taxi_ASC_auto_sufficient_school,-2.4294,F +taxi_ASC_auto_sufficient_univ,-0.3131,F +taxi_ASC_auto_sufficient_work,-4.8509,F +taxi_ASC_auto_sufficient_atwork,-2.8804,F +tnc_single_ASC_no_auto_eatout_othdiscr_social,1.6852,F +tnc_single_ASC_no_auto_escort_othmaint_shopping,1.8605,F +tnc_single_ASC_no_auto_school,-7,T +tnc_single_ASC_no_auto_univ,-2.519,F +tnc_single_ASC_no_auto_work,5.7855,F +tnc_single_ASC_no_auto_atwork,4.4982,F +tnc_single_ASC_auto_deficient_eatout_othdiscr_social,-2.9623,F +tnc_single_ASC_auto_deficient_escort_othmaint_shopping,0.6748,F +tnc_single_ASC_auto_deficient_school,-0.5524,F +tnc_single_ASC_auto_deficient_univ,1.0221,F +tnc_single_ASC_auto_deficient_work,-0.8013,F +tnc_single_ASC_auto_deficient_atwork,-3.7626,F +tnc_single_ASC_auto_sufficient_eatout_othdiscr_social,-2.3239,F +tnc_single_ASC_auto_sufficient_escort_othmaint_shopping,-1.45,F +tnc_single_ASC_auto_sufficient_school,-2.8375,F +tnc_single_ASC_auto_sufficient_univ,0.2088,F +tnc_single_ASC_auto_sufficient_work,-4.1946,F +tnc_single_ASC_auto_sufficient_atwork,-2.7988,F +tnc_shared_ASC_no_auto_eatout_othdiscr_social,0.6464,F +tnc_shared_ASC_no_auto_escort_othmaint_shopping,0.9361,F +tnc_shared_ASC_no_auto_school,-7,T +tnc_shared_ASC_no_auto_univ,-5.8116,F +tnc_shared_ASC_no_auto_work,3.2429,F +tnc_shared_ASC_no_auto_atwork,3.3672,F +tnc_shared_ASC_auto_deficient_eatout_othdiscr_social,-4.3576,F +tnc_shared_ASC_auto_deficient_escort_othmaint_shopping,-0.3863,F +tnc_shared_ASC_auto_deficient_school,-1.4746,F +tnc_shared_ASC_auto_deficient_univ,3.25,F +tnc_shared_ASC_auto_deficient_work,-2.1435,F +tnc_shared_ASC_auto_deficient_atwork,-4.5089,F +tnc_shared_ASC_auto_sufficient_eatout_othdiscr_social,-3.6638,F +tnc_shared_ASC_auto_sufficient_escort_othmaint_shopping,-2.4365,F +tnc_shared_ASC_auto_sufficient_school,-3.7219,F +tnc_shared_ASC_auto_sufficient_univ,-0.9068,F +tnc_shared_ASC_auto_sufficient_work,-5.3575,F +tnc_shared_ASC_auto_sufficient_atwork,-3.5397,F +joint_ridehail_ASC_no_auto_all,-4,F +joint_ridehail_ASC_auto_deficient_all,6.156570253,F +joint_ridehail_ASC_auto_sufficient_all,7.140732878,F +joint_taxi_ASC_no_auto_all,-4.5792,F +joint_taxi_ASC_auto_deficient_all,-9.8157,F +joint_taxi_ASC_auto_sufficient_all,-11.7099,T +joint_tnc_single_ASC_no_auto_all,-4.4917,F +joint_tnc_single_ASC_auto_deficient_all,-9.8961,F +joint_tnc_single_ASC_auto_sufficient_all,-14.0159,T +joint_tnc_shared_ASC_no_auto_all,-4.3002,F +joint_tnc_shared_ASC_auto_deficient_all,-11.1572,F +joint_tnc_shared_ASC_auto_sufficient_all,-13.205,T +walk_transit_ASC_inc_low_eatout,0.249268821,F +walk_transit_ASC_inc_low_escort,0.418897353,F +walk_transit_ASC_inc_low_othdiscr,0.249268821,F +walk_transit_ASC_inc_low_othmaint,0.418897353,F +walk_transit_ASC_inc_low_school,1.014378998,F +walk_transit_ASC_inc_low_shopping,0.418897353,F +walk_transit_ASC_inc_low_social,0.249268821,F +walk_transit_ASC_inc_low_univ,2.289414794,F +walk_transit_ASC_inc_low_work,1.747005245,F +walk_transit_ASC_inc_low_atwork,1.167959856,F +walk_transit_ASC_inc_mid_eatout,-0.121462274,F +walk_transit_ASC_inc_mid_escort,0.214797352,F +walk_transit_ASC_inc_mid_othdiscr,-0.121462274,F +walk_transit_ASC_inc_mid_othmaint,0.214797352,F +walk_transit_ASC_inc_mid_school,-0.353164785,F +walk_transit_ASC_inc_mid_shopping,0.214797352,F +walk_transit_ASC_inc_mid_social,-0.121462274,F +walk_transit_ASC_inc_mid_univ,-1.19203085,F +walk_transit_ASC_inc_mid_work,-0.128411222,F +walk_transit_ASC_inc_mid_atwork,-2.081379825,F +walk_transit_ASC_inc_high_eatout,-1.174572867,F +walk_transit_ASC_inc_high_escort,-1.373952127,F +walk_transit_ASC_inc_high_othdiscr,-1.174572867,F +walk_transit_ASC_inc_high_othmaint,-1.373952127,F +walk_transit_ASC_inc_high_school,-2.817962265,F +walk_transit_ASC_inc_high_shopping,-1.373952127,F +walk_transit_ASC_inc_high_social,-1.174572867,F +walk_transit_ASC_inc_high_univ,-0.598055046,F +walk_transit_ASC_inc_high_work,-2.538809251,F +walk_transit_ASC_inc_high_atwork,-5.862742158,F +pnr_transit_ASC_inc_low_eatout,1.509446923,F +pnr_transit_ASC_inc_low_escort,1.502330638,F +pnr_transit_ASC_inc_low_othdiscr,1.509446923,F +pnr_transit_ASC_inc_low_othmaint,1.502330638,F +pnr_transit_ASC_inc_low_school,-0.99779427,F +pnr_transit_ASC_inc_low_shopping,1.502330638,F +pnr_transit_ASC_inc_low_social,1.509446923,F +pnr_transit_ASC_inc_low_univ,2.160687357,F +pnr_transit_ASC_inc_low_work,1.183944595,F +pnr_transit_ASC_inc_low_atwork,0,F +pnr_transit_ASC_inc_mid_eatout,-0.393853639,F +pnr_transit_ASC_inc_mid_escort,-0.014404566,F +pnr_transit_ASC_inc_mid_othdiscr,-0.393853639,F +pnr_transit_ASC_inc_mid_othmaint,-0.014404566,F +pnr_transit_ASC_inc_mid_school,-0.179710517,F +pnr_transit_ASC_inc_mid_shopping,-0.014404566,F +pnr_transit_ASC_inc_mid_social,-0.393853639,F +pnr_transit_ASC_inc_mid_univ,-0.339971203,F +pnr_transit_ASC_inc_mid_work,0.538595407,F +pnr_transit_ASC_inc_mid_atwork,66,F +pnr_transit_ASC_inc_high_eatout,-0.411400233,F +pnr_transit_ASC_inc_high_escort,-1.521732376,F +pnr_transit_ASC_inc_high_othdiscr,-0.411400233,F +pnr_transit_ASC_inc_high_othmaint,-1.521732376,F +pnr_transit_ASC_inc_high_school,-0.467173335,F +pnr_transit_ASC_inc_high_shopping,-1.521732376,F +pnr_transit_ASC_inc_high_social,-0.411400233,F +pnr_transit_ASC_inc_high_univ,-0.829494594,F +pnr_transit_ASC_inc_high_work,-0.780647012,F +pnr_transit_ASC_inc_high_atwork,0,F +knr_transit_ASC_inc_low_eatout,-0.983447279,F +knr_transit_ASC_inc_low_escort,0.467701556,F +knr_transit_ASC_inc_low_othdiscr,-0.983447279,F +knr_transit_ASC_inc_low_othmaint,0.467701556,F +knr_transit_ASC_inc_low_school,1.235223075,F +knr_transit_ASC_inc_low_shopping,0.467701556,F +knr_transit_ASC_inc_low_social,-0.983447279,F +knr_transit_ASC_inc_low_univ,1.612527976,F +knr_transit_ASC_inc_low_work,1.488447771,F +knr_transit_ASC_inc_low_atwork,-12,F +knr_transit_ASC_inc_mid_eatout,-2.824223783,F +knr_transit_ASC_inc_mid_escort,-0.718143315,F +knr_transit_ASC_inc_mid_othdiscr,-2.824223783,F +knr_transit_ASC_inc_mid_othmaint,-0.718143315,F +knr_transit_ASC_inc_mid_school,-1.197934766,F +knr_transit_ASC_inc_mid_shopping,-0.718143315,F +knr_transit_ASC_inc_mid_social,-2.824223783,F +knr_transit_ASC_inc_mid_univ,0.984455325,F +knr_transit_ASC_inc_mid_work,-0.121947176,F +knr_transit_ASC_inc_mid_atwork,-9.318317361,F +knr_transit_ASC_inc_high_eatout,-2.72665114,F +knr_transit_ASC_inc_high_escort,-4.500580376,F +knr_transit_ASC_inc_high_othdiscr,-2.72665114,F +knr_transit_ASC_inc_high_othmaint,-4.500580376,F +knr_transit_ASC_inc_high_school,-3.051932364,F +knr_transit_ASC_inc_high_shopping,-4.500580376,F +knr_transit_ASC_inc_high_social,-2.72665114,F +knr_transit_ASC_inc_high_univ,1.895479231,F +knr_transit_ASC_inc_high_work,-2.817727332,F +knr_transit_ASC_inc_high_atwork,-16,F +joint_walk_transit_ASC_inc_low_all,0.136230432,F +joint_walk_transit_ASC_inc_mid_all,0.53125371,F +joint_walk_transit_ASC_inc_high_all,-0.473894293,F +joint_pnr_transit_ASC_inc_low_all,1.010477438,F +joint_pnr_transit_ASC_inc_mid_all,-0.049747835,F +joint_pnr_transit_ASC_inc_high_all,0.144894615,F +joint_knr_transit_ASC_inc_low_all,-3.14140084,F +joint_knr_transit_ASC_inc_mid_all,-2.154652426,F +joint_knr_transit_ASC_inc_high_all,-2.725154069,F +coef_transit_district15_univ,1,T +coef_transit_district15_work,1,T +coef_transit_district15_school,1,T +coef_transit_district15_escort,1,T +coef_transit_district15_shopping,1,T +coef_transit_district15_eatout,1,T +coef_transit_district15_othmaint,1,T +coef_transit_district15_social,1,T +coef_transit_district15_othdiscr,1,T +coef_transit_district15_atwork,1,T diff --git a/activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs_.csv b/activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs_.csv new file mode 100644 index 000000000..8f4e7792c --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs_.csv @@ -0,0 +1,475 @@ +coefficient_name,value,constrain +coef_nest_root,1.0,T +coef_nest_AUTO,0.72,T +coef_nest_AUTO_DRIVEALONE,0.35,T +coef_nest_AUTO_SHAREDRIDE2,0.35,T +coef_nest_AUTO_SHAREDRIDE3,0.35,T +coef_nest_NONMOTORIZED,0.72,T +coef_nest_TRANSIT,0.72,T +coef_nest_TRANSIT_WALKACCESS,0.5,T +coef_nest_TRANSIT_KNRACCESS,0.5,T +coef_nest_TRANSIT_PNRACCESS,0.5,T +coef_nest_SCHOOL_BUS,0.72,T +coef_nest_RIDEHAIL,0.36,T +coef_ivt_eatout_escort_othdiscr_othmaint_shopping_social,-0.0175,F +coef_ivt_school_univ,-0.0224,F +coef_ivt_work,-0.0134,F +coef_ivt_atwork,-0.0188,F +coef_age1619_da_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,0.0,F +coef_age1619_da_multiplier_school_univ,-1.3813,F +coef_age1619_da_multiplier_atwork,0.0032336,F +coef_age010_trn_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,0.0,F +coef_age010_trn_multiplier_school_univ,-1.5548,F +coef_age010_trn_multiplier_atwork,0.000722,F +coef_age16p_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social,-1.366,F +coef_age16p_sr_multiplier_school_univ_work_atwork,0.0,F +coef_hhsize1_sr_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_atwork,0.0,F +coef_hhsize1_sr_multiplier_work,-0.734588,F +coef_hhsize2_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work_atwork,0.0,F +coef_hhsize2_sr_multiplier_school_univ,-0.6359,F +walk_ASC_no_auto_eatout,6.679066631523342,F +walk_ASC_no_auto_escort,4.882867039849283,F +walk_ASC_no_auto_othdiscr,4.820543931523342,F +walk_ASC_no_auto_othmaint,3.368959239849282,F +walk_ASC_no_auto_school,12.225978613445273,F +walk_ASC_no_auto_shopping,4.458537539849282,F +walk_ASC_no_auto_social,3.4220408315233444,F +walk_ASC_no_auto_univ,3.910159101302879,F +walk_ASC_no_auto_work,4.159023185762584,F +walk_ASC_no_auto_atwork,1.544217384663518,F +walk_ASC_auto_deficient_eatout,2.9407128853961284,F +walk_ASC_auto_deficient_escort,-1.5008955985254078,F +walk_ASC_auto_deficient_othdiscr,1.9155153853961302,F +walk_ASC_auto_deficient_othmaint,0.7701913614745923,F +walk_ASC_auto_deficient_school,1.1133914430542913,F +walk_ASC_auto_deficient_shopping,1.6713242614745927,F +walk_ASC_auto_deficient_social,2.536291885396129,F +walk_ASC_auto_deficient_univ,5.969815972382048,F +walk_ASC_auto_deficient_work,1.9673254619764007,F +walk_ASC_auto_deficient_atwork,-4.319605328334406,F +walk_ASC_auto_sufficient_eatout,2.066920561656495,F +walk_ASC_auto_sufficient_escort,-1.5108470410440904,F +walk_ASC_auto_sufficient_othdiscr,1.7785778616564947,F +walk_ASC_auto_sufficient_othmaint,0.10072295895590931,F +walk_ASC_auto_sufficient_school,-1.0979961835986936,F +walk_ASC_auto_sufficient_shopping,0.032025858955909314,F +walk_ASC_auto_sufficient_social,2.222448861656495,F +walk_ASC_auto_sufficient_univ,3.7939305088461226,F +walk_ASC_auto_sufficient_work,-0.3839252643739825,F +walk_ASC_auto_sufficient_atwork,0.6888285413821493,F +bike_ASC_no_auto_eatout,1.3406128683316336,F +bike_ASC_no_auto_escort,-1.8776730763253895,F +bike_ASC_no_auto_othdiscr,0.09611870833163341,F +bike_ASC_no_auto_othmaint,0.37797232367461003,F +bike_ASC_no_auto_school,0.0,F +bike_ASC_no_auto_shopping,-0.32730557632538987,F +bike_ASC_no_auto_social,0.49312511833163325,F +bike_ASC_no_auto_univ,1.6230401393208198,F +bike_ASC_no_auto_work,1.9366521491848292,F +bike_ASC_no_auto_atwork,9.618481328604576,F +bike_ASC_auto_deficient_eatout,-0.7329167548814319,F +bike_ASC_auto_deficient_escort,-3.4918334798970845,F +bike_ASC_auto_deficient_othdiscr,0.743725505118568,F +bike_ASC_auto_deficient_othmaint,-0.48237037989708625,F +bike_ASC_auto_deficient_school,-0.6293683143338639,F +bike_ASC_auto_deficient_shopping,0.16024986010291362,F +bike_ASC_auto_deficient_social,1.4707152451185685,F +bike_ASC_auto_deficient_univ,1.3540126982889809,F +bike_ASC_auto_deficient_work,0.38853979137973904,F +bike_ASC_auto_deficient_atwork,-10.0,F +bike_ASC_auto_sufficient_eatout,-0.7818248753539668,F +bike_ASC_auto_sufficient_escort,-4.144424226894791,F +bike_ASC_auto_sufficient_othdiscr,-0.6529374753539668,F +bike_ASC_auto_sufficient_othmaint,-1.889618226894787,F +bike_ASC_auto_sufficient_school,-2.7124064651591198,F +bike_ASC_auto_sufficient_shopping,-1.6475261268947872,F +bike_ASC_auto_sufficient_social,-0.9495487753539665,F +bike_ASC_auto_sufficient_univ,0.24301176351955547,F +bike_ASC_auto_sufficient_work,-1.6346998140156905,F +bike_ASC_auto_sufficient_atwork,-0.0814361118561595,F +sr2_ASC_auto_deficient_eatout,0.2185010004632255,F +sr2_ASC_auto_deficient_escort,0.6179848495837379,F +sr2_ASC_auto_deficient_othdiscr,0.2904178004632254,F +sr2_ASC_auto_deficient_othmaint,0.8801375495837381,F +sr2_ASC_auto_deficient_school,-0.03039932776852437,F +sr2_ASC_auto_deficient_shopping,0.8620824095837377,F +sr2_ASC_auto_deficient_social,1.4861193004632254,F +sr2_ASC_auto_deficient_univ,-0.15502896636128363,F +sr2_ASC_auto_deficient_work,-0.33890161643754213,F +sr2_ASC_auto_deficient_atwork,-8.38235708427838,F +sr2_ASC_auto_sufficient_eatout,0.8512547065657425,F +sr2_ASC_auto_sufficient_escort,0.13915068657630886,F +sr2_ASC_auto_sufficient_othdiscr,0.48529532656574287,F +sr2_ASC_auto_sufficient_othmaint,0.39732951657630877,F +sr2_ASC_auto_sufficient_school,-1.9766014711035016,F +sr2_ASC_auto_sufficient_shopping,0.3368577565763089,F +sr2_ASC_auto_sufficient_social,0.5120516565657426,F +sr2_ASC_auto_sufficient_univ,-0.5409005150645907,F +sr2_ASC_auto_sufficient_work,-0.7529892043147851,F +sr2_ASC_auto_sufficient_atwork,-1.6460505204420481,F +sr3p_ASC_no_auto_eatout,2.152686073151814,F +sr3p_ASC_no_auto_escort,0.23921653518614996,F +sr3p_ASC_no_auto_othdiscr,2.1028552931518147,F +sr3p_ASC_no_auto_othmaint,1.2489578351861494,F +sr3p_ASC_no_auto_school,9.54825400101845,F +sr3p_ASC_no_auto_shopping,1.77235375518615,F +sr3p_ASC_no_auto_social,0.4269960731518134,F +sr3p_ASC_no_auto_univ,-0.06379806855317753,F +sr3p_ASC_no_auto_work,-1.657572555319718,F +sr3p_ASC_no_auto_atwork,-0.4128430336117345,F +sr3p_ASC_auto_deficient_eatout,0.1589796232393426,F +sr3p_ASC_auto_deficient_escort,0.3718187023338501,F +sr3p_ASC_auto_deficient_othdiscr,1.1600238632393436,F +sr3p_ASC_auto_deficient_othmaint,-0.5693861376661502,F +sr3p_ASC_auto_deficient_school,0.5014775649363076,F +sr3p_ASC_auto_deficient_shopping,0.7066361963338501,F +sr3p_ASC_auto_deficient_social,1.6136515632393427,F +sr3p_ASC_auto_deficient_univ,0.09124397105209198,F +sr3p_ASC_auto_deficient_work,-0.8287197437017003,F +sr3p_ASC_auto_deficient_atwork,-8.319829985728258,F +sr3p_ASC_auto_sufficient_eatout,0.6564145713994466,F +sr3p_ASC_auto_sufficient_escort,0.09144046140386361,F +sr3p_ASC_auto_sufficient_othdiscr,0.3980570213994468,F +sr3p_ASC_auto_sufficient_othmaint,0.07335432140386364,F +sr3p_ASC_auto_sufficient_school,-1.3721533940435513,F +sr3p_ASC_auto_sufficient_shopping,0.07128169640386361,F +sr3p_ASC_auto_sufficient_social,0.3157338313994467,F +sr3p_ASC_auto_sufficient_univ,-0.7218797348763317,F +sr3p_ASC_auto_sufficient_work,-1.3843196221151146,F +sr3p_ASC_auto_sufficient_atwork,-2.0671168042321697,F +walk_transit_ASC_no_auto_eatout,2.029089338207329,F +walk_transit_ASC_no_auto_escort,-2.2323603057337933,F +walk_transit_ASC_no_auto_othdiscr,1.6792310382073277,F +walk_transit_ASC_no_auto_othmaint,2.5491933942662075,F +walk_transit_ASC_no_auto_school,9.213473618097698,F +walk_transit_ASC_no_auto_shopping,2.091595394266208,F +walk_transit_ASC_no_auto_social,0.8169176382073282,F +walk_transit_ASC_no_auto_univ,2.0135478195801326,F +walk_transit_ASC_no_auto_work,5.14261357757391,F +walk_transit_ASC_no_auto_atwork,-0.8872481847137047,F +walk_transit_ASC_auto_deficient_eatout,0.812829769856199,F +walk_transit_ASC_auto_deficient_escort,-1.5469043973327803,F +walk_transit_ASC_auto_deficient_othdiscr,1.804881409856198,F +walk_transit_ASC_auto_deficient_othmaint,0.3540738026672199,F +walk_transit_ASC_auto_deficient_school,2.242793135312562,F +walk_transit_ASC_auto_deficient_shopping,2.566142702667222,F +walk_transit_ASC_auto_deficient_social,1.8262378798561996,F +walk_transit_ASC_auto_deficient_univ,4.900803013484653,F +walk_transit_ASC_auto_deficient_work,2.386253230190461,F +walk_transit_ASC_auto_deficient_atwork,-8.352730475537332,F +walk_transit_ASC_auto_sufficient_eatout,-3.343308797914361,F +walk_transit_ASC_auto_sufficient_escort,-6.228887825007517,F +walk_transit_ASC_auto_sufficient_othdiscr,-3.0369861279143593,F +walk_transit_ASC_auto_sufficient_othmaint,-2.841158022007515,F +walk_transit_ASC_auto_sufficient_school,-3.2895991904991178,F +walk_transit_ASC_auto_sufficient_shopping,-3.497720622007516,F +walk_transit_ASC_auto_sufficient_social,-2.5759940979143594,F +walk_transit_ASC_auto_sufficient_univ,-1.1666131817578116,F +walk_transit_ASC_auto_sufficient_work,-2.9189515976760094,F +walk_transit_ASC_auto_sufficient_atwork,-4.70624346069921,F +ridehail_ASC_no_auto_eatout,-1.8322254964003977,F +ridehail_ASC_no_auto_escort,-0.3125120531577249,F +ridehail_ASC_no_auto_othdiscr,-1.8322254964003977,F +ridehail_ASC_no_auto_othmaint,-0.3125120531577249,F +ridehail_ASC_no_auto_school,0.0,F +ridehail_ASC_no_auto_shopping,-0.3125120531577249,F +ridehail_ASC_no_auto_social,-1.8322254964003977,F +ridehail_ASC_no_auto_univ,-2.0,F +ridehail_ASC_no_auto_work,-6.033875454337849,F +ridehail_ASC_no_auto_atwork,-7.269004145817317,F +ridehail_ASC_auto_deficient_eatout,2.7986037739708376,F +ridehail_ASC_auto_deficient_escort,-4.659222701492694,F +ridehail_ASC_auto_deficient_othdiscr,2.7986037739708376,F +ridehail_ASC_auto_deficient_othmaint,-4.659222701492694,F +ridehail_ASC_auto_deficient_school,-8.0,F +ridehail_ASC_auto_deficient_shopping,-4.659222701492694,F +ridehail_ASC_auto_deficient_social,2.7986037739708376,F +ridehail_ASC_auto_deficient_univ,-4.57587934978779,F +ridehail_ASC_auto_deficient_work,-0.6927625574174675,F +ridehail_ASC_auto_deficient_atwork,-5.378092449952847,F +ridehail_ASC_auto_sufficient_eatout,1.3016339166215867,F +ridehail_ASC_auto_sufficient_escort,-3.717708848697935,F +ridehail_ASC_auto_sufficient_othdiscr,1.3016339166215867,F +ridehail_ASC_auto_sufficient_othmaint,-3.717708848697935,F +ridehail_ASC_auto_sufficient_school,-10.0,F +ridehail_ASC_auto_sufficient_shopping,-3.717708848697935,F +ridehail_ASC_auto_sufficient_social,1.3016339166215867,F +ridehail_ASC_auto_sufficient_univ,-3.6095625269189897,F +ridehail_ASC_auto_sufficient_work,-1.1838060217952593,F +ridehail_ASC_auto_sufficient_atwork,-1.0249904101125786,F +joint_walk_ASC_no_auto_all,0.15584223578259168,F +joint_walk_ASC_auto_deficient_all,0.9233175529322957,F +joint_walk_ASC_auto_sufficient_all,-2.331084062768546,F +joint_bike_ASC_no_auto_all,-1.7583826656688333,F +joint_bike_ASC_auto_deficient_all,-1.730334855321718,F +joint_bike_ASC_auto_sufficient_all,-5.5926750569216495,F +joint_sr2_ASC_no_auto_all,0.0,T +joint_sr2_ASC_auto_deficient_all,0.0,T +joint_sr2_ASC_auto_sufficient_all,0.0,T +joint_sr3p_ASC_no_auto_all,-0.842816521690442,F +joint_sr3p_ASC_auto_deficient_all,-1.07878787842315,F +joint_sr3p_ASC_auto_sufficient_all,-3.1712210090824624,F +joint_walk_transit_ASC_no_auto_all,-0.513721366632039,F +joint_walk_transit_ASC_auto_deficient_all,-2.351842334690234,F +joint_walk_transit_ASC_auto_sufficient_all,-8.60193441473402,F +walk_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,0.525,F +walk_transit_CBD_ASC_school_univ,0.672,F +walk_transit_CBD_ASC_work,0.804,F +walk_transit_CBD_ASC_atwork,0.564,F +drive_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,0.525,F +drive_transit_CBD_ASC_school_univ,0.672,F +drive_transit_CBD_ASC_work,1.1,F +drive_transit_CBD_ASC_atwork,0.564,F +joint_knr_transit_ASC_auto_deficient_all,-1.2537061510826404,F +joint_knr_transit_ASC_auto_sufficient_all,-8.112897077787881,F +joint_knr_transit_ASC_no_auto_all,1.108537399695504,F +joint_pnr_transit_ASC_auto_deficient_all,-1.911231256535309,F +joint_pnr_transit_ASC_auto_sufficient_all,-8.765350792242202,F +joint_pnr_transit_ASC_no_auto_all,0.0,T +knr_transit_ASC_auto_deficient_atwork,0.2091798070955826,F +knr_transit_ASC_auto_deficient_eatout,-0.735879161537163,F +knr_transit_ASC_auto_deficient_escort,-1.3895921757602858,F +knr_transit_ASC_auto_deficient_othdiscr,0.25617247846283664,F +knr_transit_ASC_auto_deficient_othmaint,0.511386024239715,F +knr_transit_ASC_auto_deficient_school,3.5976455194036117,F +knr_transit_ASC_auto_deficient_shopping,2.723454924239715,F +knr_transit_ASC_auto_deficient_social,0.27752894846283693,F +knr_transit_ASC_auto_deficient_univ,0.4040538964240499,F +knr_transit_ASC_auto_deficient_work,0.4316262292334842,F +knr_transit_ASC_auto_sufficient_atwork,-8.401027000000001,F +knr_transit_ASC_auto_sufficient_eatout,-4.170306985100459,F +knr_transit_ASC_auto_sufficient_escort,-6.808179208227433,F +knr_transit_ASC_auto_sufficient_othdiscr,-3.8639843151004585,F +knr_transit_ASC_auto_sufficient_othmaint,-3.4204494082274253,F +knr_transit_ASC_auto_sufficient_school,-2.6811653858341096,F +knr_transit_ASC_auto_sufficient_shopping,-4.07701200822743,F +knr_transit_ASC_auto_sufficient_social,-3.402992285100459,F +knr_transit_ASC_auto_sufficient_univ,-5.311815905141975,F +knr_transit_ASC_auto_sufficient_work,-5.078464133612999,F +knr_transit_ASC_no_auto_atwork,8.9209204607444,F +knr_transit_ASC_no_auto_eatout,0.8624477497730498,F +knr_transit_ASC_no_auto_escort,0.6589788615034985,F +knr_transit_ASC_no_auto_othdiscr,0.8624477497730498,F +knr_transit_ASC_no_auto_othmaint,0.6589788615034985,F +knr_transit_ASC_no_auto_school,11.252782407387176,F +knr_transit_ASC_no_auto_shopping,0.6589788615034985,F +knr_transit_ASC_no_auto_social,0.8624477497730498,F +knr_transit_ASC_no_auto_univ,-0.1368308740942435,F +knr_transit_ASC_no_auto_work,3.260097090750686,F +local_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0.0,F +local_ASC_school_univ,0.0,F +local_ASC_work,0.0,F +mix_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0.0,F +mix_ASC_school_univ,0.0,F +mix_ASC_work,0.0,F +pnr_transit_ASC_auto_deficient_atwork,-998.8196,F +pnr_transit_ASC_auto_deficient_eatout,-0.4723885459758467,F +pnr_transit_ASC_auto_deficient_escort,-1.1248134304411364,F +pnr_transit_ASC_auto_deficient_othdiscr,-0.7522638459758466,F +pnr_transit_ASC_auto_deficient_othmaint,-0.2705390104411357,F +pnr_transit_ASC_auto_deficient_school,2.0540720380987447,F +pnr_transit_ASC_auto_deficient_shopping,-0.3895985104411358,F +pnr_transit_ASC_auto_deficient_social,0.4905248540241536,F +pnr_transit_ASC_auto_deficient_univ,2.3242889303868233,F +pnr_transit_ASC_auto_deficient_work,-0.18538837708471065,F +pnr_transit_ASC_auto_sufficient_atwork,-999.21466,F +pnr_transit_ASC_auto_sufficient_eatout,-4.08907753677699,F +pnr_transit_ASC_auto_sufficient_escort,-5.978381222654008,F +pnr_transit_ASC_auto_sufficient_othdiscr,-3.4981533767769926,F +pnr_transit_ASC_auto_sufficient_othmaint,-4.001904322654012,F +pnr_transit_ASC_auto_sufficient_school,-0.8561246162539882,F +pnr_transit_ASC_auto_sufficient_shopping,-3.548850322654009,F +pnr_transit_ASC_auto_sufficient_social,-3.73541742677699,F +pnr_transit_ASC_auto_sufficient_univ,0.1898781940098056,F +pnr_transit_ASC_auto_sufficient_work,-2.780285380301299,F +pnr_transit_ASC_no_auto_atwork,0.0,F +pnr_transit_ASC_no_auto_eatout,0.0,F +pnr_transit_ASC_no_auto_escort,0.0,F +pnr_transit_ASC_no_auto_othdiscr,0.0,F +pnr_transit_ASC_no_auto_othmaint,0.0,F +pnr_transit_ASC_no_auto_school,0.0,F +pnr_transit_ASC_no_auto_shopping,0.0,F +pnr_transit_ASC_no_auto_social,0.0,F +pnr_transit_ASC_no_auto_univ,0.0,F +pnr_transit_ASC_no_auto_work,0.0,F +premium_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0.0,F +premium_ASC_school_univ,0.0,F +premium_ASC_work,0.0,F +schoolbus_ASC_auto_deficient_school,0.7376214587002142,F +schoolbus_ASC_auto_sufficient_school,-1.2613082018801485,F +schoolbus_ASC_no_auto_school,10.158616513444322,F +schoolbus_ASC_not_school,0.0,T +sr2_ASC_no_auto_atwork,-0.08515343095908816,F +sr2_ASC_no_auto_eatout,1.3692494203881804,F +sr2_ASC_no_auto_escort,1.6083870840920869,F +sr2_ASC_no_auto_othdiscr,1.3692494203881804,F +sr2_ASC_no_auto_othmaint,1.6083870840920869,F +sr2_ASC_no_auto_school,8.12416756661324,F +sr2_ASC_no_auto_shopping,1.6083870840920869,F +sr2_ASC_no_auto_social,1.3692494203881804,F +sr2_ASC_no_auto_univ,0.4508430059869959,F +sr2_ASC_no_auto_work,-0.1523914463096275,F +taxi_ASC_no_auto_eatout_othdiscr_social,0.9923,F +taxi_ASC_no_auto_escort_othmaint_shopping,1.8939,F +taxi_ASC_no_auto_school_univ,-7.0,T +taxi_ASC_no_auto_work,4.7291,F +taxi_ASC_no_auto_atwork,4.1021,F +taxi_ASC_auto_deficient_eatout_othdiscr_social,-3.1317,F +taxi_ASC_auto_deficient_escort_othmaint_shopping,0.1766,F +taxi_ASC_auto_deficient_school,-0.3338,F +taxi_ASC_auto_deficient_univ,4.2492,F +taxi_ASC_auto_deficient_work,-1.4766,F +taxi_ASC_auto_deficient_atwork,-4.4046,F +taxi_ASC_auto_sufficient_eatout_othdiscr_social,-3.0374,F +taxi_ASC_auto_sufficient_escort_othmaint_shopping,-1.8055,F +taxi_ASC_auto_sufficient_school,-2.4294,F +taxi_ASC_auto_sufficient_univ,-0.3131,F +taxi_ASC_auto_sufficient_work,-4.8509,F +taxi_ASC_auto_sufficient_atwork,-2.8804,F +tnc_single_ASC_no_auto_eatout_othdiscr_social,1.6852,F +tnc_single_ASC_no_auto_escort_othmaint_shopping,1.8605,F +tnc_single_ASC_no_auto_school,-7.0,T +tnc_single_ASC_no_auto_univ,-2.519,F +tnc_single_ASC_no_auto_work,5.7855,F +tnc_single_ASC_no_auto_atwork,4.4982,F +tnc_single_ASC_auto_deficient_eatout_othdiscr_social,-2.9623,F +tnc_single_ASC_auto_deficient_escort_othmaint_shopping,0.6748,F +tnc_single_ASC_auto_deficient_school,-0.5524,F +tnc_single_ASC_auto_deficient_univ,1.0221,F +tnc_single_ASC_auto_deficient_work,-0.8013,F +tnc_single_ASC_auto_deficient_atwork,-3.7626,F +tnc_single_ASC_auto_sufficient_eatout_othdiscr_social,-2.3239,F +tnc_single_ASC_auto_sufficient_escort_othmaint_shopping,-1.45,F +tnc_single_ASC_auto_sufficient_school,-2.8375,F +tnc_single_ASC_auto_sufficient_univ,0.2088,F +tnc_single_ASC_auto_sufficient_work,-4.1946,F +tnc_single_ASC_auto_sufficient_atwork,-2.7988,F +tnc_shared_ASC_no_auto_eatout_othdiscr_social,0.6464,F +tnc_shared_ASC_no_auto_escort_othmaint_shopping,0.9361,F +tnc_shared_ASC_no_auto_school,-7.0,T +tnc_shared_ASC_no_auto_univ,-5.8116,F +tnc_shared_ASC_no_auto_work,3.2429,F +tnc_shared_ASC_no_auto_atwork,3.3672,F +tnc_shared_ASC_auto_deficient_eatout_othdiscr_social,-4.3576,F +tnc_shared_ASC_auto_deficient_escort_othmaint_shopping,-0.3863,F +tnc_shared_ASC_auto_deficient_school,-1.4746,F +tnc_shared_ASC_auto_deficient_univ,3.25,F +tnc_shared_ASC_auto_deficient_work,-2.1435,F +tnc_shared_ASC_auto_deficient_atwork,-4.5089,F +tnc_shared_ASC_auto_sufficient_eatout_othdiscr_social,-3.6638,F +tnc_shared_ASC_auto_sufficient_escort_othmaint_shopping,-2.4365,F +tnc_shared_ASC_auto_sufficient_school,-3.7219,F +tnc_shared_ASC_auto_sufficient_univ,-0.9068,F +tnc_shared_ASC_auto_sufficient_work,-5.3575,F +tnc_shared_ASC_auto_sufficient_atwork,-3.5397,F +joint_ridehail_ASC_no_auto_all,-4.0,F +joint_ridehail_ASC_auto_deficient_all,6.1148062378316315,F +joint_ridehail_ASC_auto_sufficient_all,7.215420846651934,F +joint_taxi_ASC_no_auto_all,-4.5792,F +joint_taxi_ASC_auto_deficient_all,-9.8157,F +joint_taxi_ASC_auto_sufficient_all,-11.7099,T +joint_tnc_single_ASC_no_auto_all,-4.4917,F +joint_tnc_single_ASC_auto_deficient_all,-9.8961,F +joint_tnc_single_ASC_auto_sufficient_all,-14.0159,T +joint_tnc_shared_ASC_no_auto_all,-4.3002,F +joint_tnc_shared_ASC_auto_deficient_all,-11.1572,F +joint_tnc_shared_ASC_auto_sufficient_all,-13.205,T +walk_transit_ASC_inc_low_eatout,0.964270028396554,F +walk_transit_ASC_inc_low_escort,1.019046214958657,F +walk_transit_ASC_inc_low_othdiscr,0.964270028396554,F +walk_transit_ASC_inc_low_othmaint,1.019046214958657,F +walk_transit_ASC_inc_low_school,1.133297715093305,F +walk_transit_ASC_inc_low_shopping,1.019046214958657,F +walk_transit_ASC_inc_low_social,0.964270028396554,F +walk_transit_ASC_inc_low_univ,1.8037811633554368,F +walk_transit_ASC_inc_low_work,2.3136169139529006,F +walk_transit_ASC_inc_low_atwork,1.3809880998990771,F +walk_transit_ASC_inc_mid_eatout,0.581207139502496,F +walk_transit_ASC_inc_mid_escort,0.9834778460656279,F +walk_transit_ASC_inc_mid_othdiscr,0.581207139502496,F +walk_transit_ASC_inc_mid_othmaint,0.9834778460656279,F +walk_transit_ASC_inc_mid_school,-0.010484902645769378,F +walk_transit_ASC_inc_mid_shopping,0.9834778460656279,F +walk_transit_ASC_inc_mid_social,0.581207139502496,F +walk_transit_ASC_inc_mid_univ,-2.444820175971375,F +walk_transit_ASC_inc_mid_work,0.6020380658763193,F +walk_transit_ASC_inc_mid_atwork,-0.5807624613666531,F +walk_transit_ASC_inc_high_eatout,-0.9034984838833938,F +walk_transit_ASC_inc_high_escort,-1.4748301234406895,F +walk_transit_ASC_inc_high_othdiscr,-0.9034984838833938,F +walk_transit_ASC_inc_high_othmaint,-1.4748301234406895,F +walk_transit_ASC_inc_high_school,-2.5740216646033427,F +walk_transit_ASC_inc_high_shopping,-1.4748301234406895,F +walk_transit_ASC_inc_high_social,-0.9034984838833938,F +walk_transit_ASC_inc_high_univ,-1.1918101962706145,F +walk_transit_ASC_inc_high_work,-2.068393912808487,F +walk_transit_ASC_inc_high_atwork,-0.7763801733229068,F +pnr_transit_ASC_inc_low_eatout,1.3562545460706699,F +pnr_transit_ASC_inc_low_escort,2.0561480128221867,F +pnr_transit_ASC_inc_low_othdiscr,1.3562545460706699,F +pnr_transit_ASC_inc_low_othmaint,2.0561480128221867,F +pnr_transit_ASC_inc_low_school,2.2534975281576393,F +pnr_transit_ASC_inc_low_shopping,2.0561480128221867,F +pnr_transit_ASC_inc_low_social,1.3562545460706699,F +pnr_transit_ASC_inc_low_univ,1.4729631493150355,F +pnr_transit_ASC_inc_low_work,0.8820676061911268,F +pnr_transit_ASC_inc_low_atwork,0.0,F +pnr_transit_ASC_inc_mid_eatout,-0.5050375355698602,F +pnr_transit_ASC_inc_mid_escort,0.029450166916340538,F +pnr_transit_ASC_inc_mid_othdiscr,-0.5050375355698602,F +pnr_transit_ASC_inc_mid_othmaint,0.029450166916340538,F +pnr_transit_ASC_inc_mid_school,2.181266035808401,F +pnr_transit_ASC_inc_mid_shopping,0.029450166916340538,F +pnr_transit_ASC_inc_mid_social,-0.5050375355698602,F +pnr_transit_ASC_inc_mid_univ,-0.13530405576209265,F +pnr_transit_ASC_inc_mid_work,0.750400695688767,F +pnr_transit_ASC_inc_mid_atwork,60.0,F +pnr_transit_ASC_inc_high_eatout,0.045237764173873596,F +pnr_transit_ASC_inc_high_escort,-0.39543968441506877,F +pnr_transit_ASC_inc_high_othdiscr,0.045237764173873596,F +pnr_transit_ASC_inc_high_othmaint,-0.39543968441506877,F +pnr_transit_ASC_inc_high_school,0.05605691672284524,F +pnr_transit_ASC_inc_high_shopping,-0.39543968441506877,F +pnr_transit_ASC_inc_high_social,0.045237764173873596,F +pnr_transit_ASC_inc_high_univ,-0.7895054217492846,F +pnr_transit_ASC_inc_high_work,-0.60578093335835,F +pnr_transit_ASC_inc_high_atwork,0.0,F +knr_transit_ASC_inc_low_eatout,0.3476156239319593,F +knr_transit_ASC_inc_low_escort,0.6764229575641028,F +knr_transit_ASC_inc_low_othdiscr,0.3476156239319593,F +knr_transit_ASC_inc_low_othmaint,0.6764229575641028,F +knr_transit_ASC_inc_low_school,1.304388356086608,F +knr_transit_ASC_inc_low_shopping,0.6764229575641028,F +knr_transit_ASC_inc_low_social,0.3476156239319593,F +knr_transit_ASC_inc_low_univ,2.253938004330797,F +knr_transit_ASC_inc_low_work,1.8606733008375007,F +knr_transit_ASC_inc_low_atwork,-12.0,F +knr_transit_ASC_inc_mid_eatout,-0.28184905727780607,F +knr_transit_ASC_inc_mid_escort,-0.08639791364917668,F +knr_transit_ASC_inc_mid_othdiscr,-0.28184905727780607,F +knr_transit_ASC_inc_mid_othmaint,-0.08639791364917668,F +knr_transit_ASC_inc_mid_school,-0.2053781593474727,F +knr_transit_ASC_inc_mid_shopping,-0.08639791364917668,F +knr_transit_ASC_inc_mid_social,-0.28184905727780607,F +knr_transit_ASC_inc_mid_univ,1.5299186506541744,F +knr_transit_ASC_inc_mid_work,0.5253846211623675,F +knr_transit_ASC_inc_mid_atwork,-10.31831736063357,F +knr_transit_ASC_inc_high_eatout,-0.5007121631463423,F +knr_transit_ASC_inc_high_escort,-2.9736306589568766,F +knr_transit_ASC_inc_high_othdiscr,-0.5007121631463423,F +knr_transit_ASC_inc_high_othmaint,-2.9736306589568766,F +knr_transit_ASC_inc_high_school,-1.5411067400994698,F +knr_transit_ASC_inc_high_shopping,-2.9736306589568766,F +knr_transit_ASC_inc_high_social,-0.5007121631463423,F +knr_transit_ASC_inc_high_univ,-0.6831350878504734,F +knr_transit_ASC_inc_high_work,-3.095941382990495,F +knr_transit_ASC_inc_high_atwork,-14.0,F +joint_walk_transit_ASC_inc_low_all,1.3825348433784466,F +joint_walk_transit_ASC_inc_mid_all,1.8128690564511136,F +joint_walk_transit_ASC_inc_high_all,-0.5760980130913169,F +joint_pnr_transit_ASC_inc_low_all,4.221198468962727,F +joint_pnr_transit_ASC_inc_mid_all,4.038393153909887,F +joint_pnr_transit_ASC_inc_high_all,2.0098920525093384,F +joint_knr_transit_ASC_inc_low_all,-1.8979669665306436,F +joint_knr_transit_ASC_inc_mid_all,-1.4102345809692918,F +joint_knr_transit_ASC_inc_high_all,-3.725154069244148,F diff --git a/activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs_old.csv b/activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs_old.csv new file mode 100644 index 000000000..b1fb4ae15 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs_old.csv @@ -0,0 +1,481 @@ +coefficient_name,value,constrain +coef_nest_root,1.0,T +coef_nest_AUTO,0.72,T +coef_nest_AUTO_DRIVEALONE,0.35,T +coef_nest_AUTO_SHAREDRIDE2,0.35,T +coef_nest_AUTO_SHAREDRIDE3,0.35,T +coef_nest_NONMOTORIZED,0.72,T +coef_nest_TRANSIT,0.72,T +coef_nest_TRANSIT_WALKACCESS,0.5,T +coef_nest_TRANSIT_KNRACCESS,0.5,T +coef_nest_TRANSIT_PNRACCESS,0.5,T +coef_nest_SCHOOL_BUS,0.72,T +coef_nest_RIDEHAIL,0.36,T +coef_ivt_eatout_escort_othdiscr_othmaint_shopping_social,-0.0175,F +coef_ivt_school_univ,-0.0224,F +coef_ivt_work,-0.0134,F +coef_ivt_atwork,-0.0188,F +coef_topology_walk_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,15.0,F +coef_topology_walk_multiplier_atwork,7.5,F +coef_topology_bike_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,20.0,F +coef_topology_bike_multiplier_atwork,10.0,F +coef_topology_trn_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,2.2,F +coef_topology_trn_multiplier_atwork,2.0,F +coef_age1619_da_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,0.0,F +coef_age1619_da_multiplier_school_univ,-1.3813,F +coef_age1619_da_multiplier_atwork,0.0032336,F +coef_age010_trn_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,0.0,F +coef_age010_trn_multiplier_school_univ,-1.5548,F +coef_age010_trn_multiplier_atwork,0.000722,F +coef_age16p_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social,-1.366,F +coef_age16p_sr_multiplier_school_univ_work_atwork,0.0,F +coef_hhsize1_sr_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_atwork,0.0,F +coef_hhsize1_sr_multiplier_work,-0.734588,F +coef_hhsize2_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work_atwork,0.0,F +coef_hhsize2_sr_multiplier_school_univ,-0.6359,F +walk_ASC_no_auto_eatout,6.822718443624304,F +walk_ASC_no_auto_escort,5.140624297832461,F +walk_ASC_no_auto_othdiscr,4.9641957436243045,F +walk_ASC_no_auto_othmaint,3.6267164978324593,F +walk_ASC_no_auto_school,12.044782075575325,F +walk_ASC_no_auto_shopping,4.716294797832461,F +walk_ASC_no_auto_social,3.5656926436243057,F +walk_ASC_no_auto_univ,3.5434244072425534,F +walk_ASC_no_auto_work,5.006266772560758,F +walk_ASC_no_auto_atwork,1.2113351486434998,F +walk_ASC_auto_deficient_eatout,2.9441403667443993,F +walk_ASC_auto_deficient_escort,-1.4531445575493998,F +walk_ASC_auto_deficient_othdiscr,1.9189428667444006,F +walk_ASC_auto_deficient_othmaint,0.8179424024506006,F +walk_ASC_auto_deficient_school,1.0854046599057734,F +walk_ASC_auto_deficient_shopping,1.7190753024506003,F +walk_ASC_auto_deficient_social,2.5397193667444005,F +walk_ASC_auto_deficient_univ,4.8529803578438315,F +walk_ASC_auto_deficient_work,1.8266005380418766,F +walk_ASC_auto_deficient_atwork,-2.756728272586131,F +walk_ASC_auto_sufficient_eatout,2.0744244797405047,F +walk_ASC_auto_sufficient_escort,-1.513812590584619,F +walk_ASC_auto_sufficient_othdiscr,1.786081779740504,F +walk_ASC_auto_sufficient_othmaint,0.09775740941538068,F +walk_ASC_auto_sufficient_school,-1.1940436954695723,F +walk_ASC_auto_sufficient_shopping,0.02906030941538071,F +walk_ASC_auto_sufficient_social,2.2299527797405045,F +walk_ASC_auto_sufficient_univ,3.5325037049643253,F +walk_ASC_auto_sufficient_work,-0.37642523521579613,F +walk_ASC_auto_sufficient_atwork,0.6523221280218748,F +bike_ASC_no_auto_eatout,1.2484113670609545,F +bike_ASC_no_auto_escort,-1.8136780907589327,F +bike_ASC_no_auto_othdiscr,0.00391720706095456,F +bike_ASC_no_auto_othmaint,0.4419673092410671,F +bike_ASC_no_auto_school,0.0,F +bike_ASC_no_auto_shopping,-0.2633105907589328,F +bike_ASC_no_auto_social,0.4009236170609546,F +bike_ASC_no_auto_univ,1.6666927392176571,F +bike_ASC_no_auto_work,2.6481439662397532,F +bike_ASC_no_auto_atwork,6.844910054593578,F +bike_ASC_auto_deficient_eatout,-0.748819236843087,F +bike_ASC_auto_deficient_escort,-3.529730509836597,F +bike_ASC_auto_deficient_othdiscr,0.7278230231569129,F +bike_ASC_auto_deficient_othmaint,-0.5202674098365967,F +bike_ASC_auto_deficient_school,-0.5821269052952013,F +bike_ASC_auto_deficient_shopping,0.1223528301634032,F +bike_ASC_auto_deficient_social,1.454812763156913,F +bike_ASC_auto_deficient_univ,1.0379552356554334,F +bike_ASC_auto_deficient_work,0.23373836624404265,F +bike_ASC_auto_deficient_atwork,-8.0,F +bike_ASC_auto_sufficient_eatout,-0.8298621739812653,F +bike_ASC_auto_sufficient_escort,-4.2092191575402556,F +bike_ASC_auto_sufficient_othdiscr,-0.7009747739812653,F +bike_ASC_auto_sufficient_othmaint,-1.954413157540255,F +bike_ASC_auto_sufficient_school,-2.8080078700499853,F +bike_ASC_auto_sufficient_shopping,-1.712321057540255,F +bike_ASC_auto_sufficient_social,-0.997586073981265,F +bike_ASC_auto_sufficient_univ,0.14982748313573938,F +bike_ASC_auto_sufficient_work,-1.7010532227732524,F +bike_ASC_auto_sufficient_atwork,-0.3372705417600544,F +sr2_ASC_auto_deficient_eatout,0.3283268368064485,F +sr2_ASC_auto_deficient_escort,0.6753440177109278,F +sr2_ASC_auto_deficient_othdiscr,0.40024363680644853,F +sr2_ASC_auto_deficient_othmaint,0.9374967177109281,F +sr2_ASC_auto_deficient_school,-0.03264950525910893,F +sr2_ASC_auto_deficient_shopping,0.9194415777109277,F +sr2_ASC_auto_deficient_social,1.5959451368064488,F +sr2_ASC_auto_deficient_univ,-0.0891759944049673,F +sr2_ASC_auto_deficient_work,-0.34479225816168135,F +sr2_ASC_auto_deficient_atwork,-6.641279846487017,F +sr2_ASC_auto_sufficient_eatout,0.8630316969909022,F +sr2_ASC_auto_sufficient_escort,0.16349867582109043,F +sr2_ASC_auto_sufficient_othdiscr,0.49707231699090215,F +sr2_ASC_auto_sufficient_othmaint,0.4216775058210906,F +sr2_ASC_auto_sufficient_school,-1.9642045985365642,F +sr2_ASC_auto_sufficient_shopping,0.36120574582109055,F +sr2_ASC_auto_sufficient_social,0.5238286469909023,F +sr2_ASC_auto_sufficient_univ,-0.5421064732339067,F +sr2_ASC_auto_sufficient_work,-0.7529876643074862,F +sr2_ASC_auto_sufficient_atwork,-1.64512879601755,F +sr3p_ASC_no_auto_eatout,2.01931406595253,F +sr3p_ASC_no_auto_escort,0.14358505312905812,F +sr3p_ASC_no_auto_othdiscr,1.96948328595253,F +sr3p_ASC_no_auto_othmaint,1.153326353129058,F +sr3p_ASC_no_auto_school,9.605191087285755,F +sr3p_ASC_no_auto_shopping,1.676722273129058,F +sr3p_ASC_no_auto_social,0.29362406595253043,F +sr3p_ASC_no_auto_univ,0.20644886565625387,F +sr3p_ASC_no_auto_work,-0.9726826501627635,F +sr3p_ASC_no_auto_atwork,-0.2343953580869902,F +sr3p_ASC_auto_deficient_eatout,0.23022226974659646,F +sr3p_ASC_auto_deficient_escort,0.40426721601079396,F +sr3p_ASC_auto_deficient_othdiscr,1.2312665097465971,F +sr3p_ASC_auto_deficient_othmaint,-0.5369376239892061,F +sr3p_ASC_auto_deficient_school,0.48673173416884724,F +sr3p_ASC_auto_deficient_shopping,0.739084710010794,F +sr3p_ASC_auto_deficient_social,1.6848942097465964,F +sr3p_ASC_auto_deficient_univ,0.1419264846890286,F +sr3p_ASC_auto_deficient_work,-0.8275275080507102,F +sr3p_ASC_auto_deficient_atwork,-6.5560187920511295,F +sr3p_ASC_auto_sufficient_eatout,0.6609446067163997,F +sr3p_ASC_auto_sufficient_escort,0.12040379981892055,F +sr3p_ASC_auto_sufficient_othdiscr,0.40258705671639955,F +sr3p_ASC_auto_sufficient_othmaint,0.10231765981892059,F +sr3p_ASC_auto_sufficient_school,-1.363180446509713,F +sr3p_ASC_auto_sufficient_shopping,0.10024503481892061,F +sr3p_ASC_auto_sufficient_social,0.3202638667163996,F +sr3p_ASC_auto_sufficient_univ,-0.7073673240702565,F +sr3p_ASC_auto_sufficient_work,-1.3878846636146276,F +sr3p_ASC_auto_sufficient_atwork,-2.062889350039879,F +walk_transit_ASC_no_auto_eatout,1.883891071393701,F +walk_transit_ASC_no_auto_escort,-2.4723966663474184,F +walk_transit_ASC_no_auto_othdiscr,1.5340327713937003,F +walk_transit_ASC_no_auto_othmaint,2.309157033652583,F +walk_transit_ASC_no_auto_school,9.193263987645029,F +walk_transit_ASC_no_auto_shopping,1.8515590336525818,F +walk_transit_ASC_no_auto_social,0.6717193713937002,F +walk_transit_ASC_no_auto_univ,2.58947715599033,F +walk_transit_ASC_no_auto_work,3.15363325904082,F +walk_transit_ASC_no_auto_atwork,-1.7552240151655452,F +walk_transit_ASC_auto_deficient_eatout,0.7109988628015919,F +walk_transit_ASC_auto_deficient_escort,-1.8391559665941768,F +walk_transit_ASC_auto_deficient_othdiscr,1.7030505028015923,F +walk_transit_ASC_auto_deficient_othmaint,0.06182223340582346,F +walk_transit_ASC_auto_deficient_school,2.3451227895424895,F +walk_transit_ASC_auto_deficient_shopping,2.273891133405824,F +walk_transit_ASC_auto_deficient_social,1.7244069728015925,F +walk_transit_ASC_auto_deficient_univ,4.399473739917048,F +walk_transit_ASC_auto_deficient_work,1.8307109378575375,F +walk_transit_ASC_auto_deficient_atwork,-7.0545399009686935,F +walk_transit_ASC_auto_sufficient_eatout,-2.271860628726926,F +walk_transit_ASC_auto_sufficient_escort,-5.135468562605636,F +walk_transit_ASC_auto_sufficient_othdiscr,-1.965537958726925,F +walk_transit_ASC_auto_sufficient_othmaint,-1.747738759605638,F +walk_transit_ASC_auto_sufficient_school,-2.20756344839373,F +walk_transit_ASC_auto_sufficient_shopping,-2.404301359605639,F +walk_transit_ASC_auto_sufficient_social,-1.504545928726925,F +walk_transit_ASC_auto_sufficient_univ,1.1148885216440756,F +walk_transit_ASC_auto_sufficient_work,-1.6847937888346383,F +walk_transit_ASC_auto_sufficient_atwork,-5.197111849510012,F +ridehail_ASC_no_auto_eatout,-2.007457319022973,F +ridehail_ASC_no_auto_escort,-0.2754848992648131,F +ridehail_ASC_no_auto_othdiscr,-2.007457319022973,F +ridehail_ASC_no_auto_othmaint,-0.2754848992648131,F +ridehail_ASC_no_auto_school,0.0,F +ridehail_ASC_no_auto_shopping,-0.2754848992648131,F +ridehail_ASC_no_auto_social,-2.007457319022973,F +ridehail_ASC_no_auto_univ,-2.0,F +ridehail_ASC_no_auto_work,-4.976396020924195,F +ridehail_ASC_no_auto_atwork,-7.163452593395215,F +ridehail_ASC_auto_deficient_eatout,2.6746181368480064,F +ridehail_ASC_auto_deficient_escort,-4.2279054377439005,F +ridehail_ASC_auto_deficient_othdiscr,2.6746181368480064,F +ridehail_ASC_auto_deficient_othmaint,-4.2279054377439005,F +ridehail_ASC_auto_deficient_school,-8.0,F +ridehail_ASC_auto_deficient_shopping,-4.2279054377439005,F +ridehail_ASC_auto_deficient_social,2.6746181368480064,F +ridehail_ASC_auto_deficient_univ,-4.613695143195808,F +ridehail_ASC_auto_deficient_work,-0.63783716934341,F +ridehail_ASC_auto_deficient_atwork,-3.444135114612561,F +ridehail_ASC_auto_sufficient_eatout,1.308886716751561,F +ridehail_ASC_auto_sufficient_escort,-3.5900490534246083,F +ridehail_ASC_auto_sufficient_othdiscr,1.308886716751561,F +ridehail_ASC_auto_sufficient_othmaint,-3.5900490534246083,F +ridehail_ASC_auto_sufficient_school,-10.0,F +ridehail_ASC_auto_sufficient_shopping,-3.5900490534246083,F +ridehail_ASC_auto_sufficient_social,1.308886716751561,F +ridehail_ASC_auto_sufficient_univ,-3.654871802518421,F +ridehail_ASC_auto_sufficient_work,-1.1235953451412668,F +ridehail_ASC_auto_sufficient_atwork,-1.0087446800066344,F +joint_walk_ASC_no_auto_all,0.2797981793096449,F +joint_walk_ASC_auto_deficient_all,0.6407715650187635,F +joint_walk_ASC_auto_sufficient_all,-2.185724804664655,F +joint_bike_ASC_no_auto_all,-2.2665343950943546,F +joint_bike_ASC_auto_deficient_all,-1.7109981207510667,F +joint_bike_ASC_auto_sufficient_all,-5.6696425015976795,F +joint_sr2_ASC_no_auto_all,0.0,T +joint_sr2_ASC_auto_deficient_all,0.0,T +joint_sr2_ASC_auto_sufficient_all,0.0,T +joint_sr3p_ASC_no_auto_all,-1.100582554535116,F +joint_sr3p_ASC_auto_deficient_all,-1.0790547548884877,F +joint_sr3p_ASC_auto_sufficient_all,-3.0248428207418017,F +joint_walk_transit_ASC_no_auto_all,-1.6848346388525164,F +joint_walk_transit_ASC_auto_deficient_all,-2.5155800475851433,F +joint_walk_transit_ASC_auto_sufficient_all,-7.332173065503453,F +walk_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,0.525,F +walk_transit_CBD_ASC_school_univ,0.672,F +walk_transit_CBD_ASC_work,0.804,F +walk_transit_CBD_ASC_atwork,0.564,F +drive_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,0.525,F +drive_transit_CBD_ASC_school_univ,0.672,F +drive_transit_CBD_ASC_work,1.1,F +drive_transit_CBD_ASC_atwork,0.564,F +joint_knr_transit_ASC_auto_deficient_all,-2.670080297969336,F +joint_knr_transit_ASC_auto_sufficient_all,-5.626656841852157,F +joint_knr_transit_ASC_no_auto_all,-0.814936205856911,F +joint_pnr_transit_ASC_auto_deficient_all,-5.706106879142635,F +joint_pnr_transit_ASC_auto_sufficient_all,-8.412260786548387,F +joint_pnr_transit_ASC_no_auto_all,0.0,T +knr_transit_ASC_auto_deficient_atwork,1.5089055851759707,F +knr_transit_ASC_auto_deficient_eatout,-0.9470216377816388,F +knr_transit_ASC_auto_deficient_escort,-2.5857161098394186,F +knr_transit_ASC_auto_deficient_othdiscr,0.04503000221836112,F +knr_transit_ASC_auto_deficient_othmaint,-0.6847379098394176,F +knr_transit_ASC_auto_deficient_school,2.7946164302215064,F +knr_transit_ASC_auto_deficient_shopping,1.5273309901605825,F +knr_transit_ASC_auto_deficient_social,0.06638647221836119,F +knr_transit_ASC_auto_deficient_univ,1.1571197671919342,F +knr_transit_ASC_auto_deficient_work,-0.20687236424985617,F +knr_transit_ASC_auto_sufficient_atwork,-8.401027000000001,F +knr_transit_ASC_auto_sufficient_eatout,-3.3452080719433184,F +knr_transit_ASC_auto_sufficient_escort,-6.501529427549553,F +knr_transit_ASC_auto_sufficient_othdiscr,-3.038885401943318,F +knr_transit_ASC_auto_sufficient_othmaint,-3.113799627549549,F +knr_transit_ASC_auto_sufficient_school,-2.3320585110408443,F +knr_transit_ASC_auto_sufficient_shopping,-3.770362227549551,F +knr_transit_ASC_auto_sufficient_social,-2.5778933719433184,F +knr_transit_ASC_auto_sufficient_univ,-3.5860605179697598,F +knr_transit_ASC_auto_sufficient_work,-4.290823735346708,F +knr_transit_ASC_no_auto_atwork,9.006329356841675,F +knr_transit_ASC_no_auto_eatout,-0.12217656067944771,F +knr_transit_ASC_no_auto_escort,0.06761992321808025,F +knr_transit_ASC_no_auto_othdiscr,-0.12217656067944771,F +knr_transit_ASC_no_auto_othmaint,0.06761992321808025,F +knr_transit_ASC_no_auto_school,10.46204672357949,F +knr_transit_ASC_no_auto_shopping,0.06761992321808025,F +knr_transit_ASC_no_auto_social,-0.12217656067944771,F +knr_transit_ASC_no_auto_univ,0.00020230831333207036,F +knr_transit_ASC_no_auto_work,1.2016896319492887,F +local_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0.0,F +local_ASC_school_univ,0.0,F +local_ASC_work,0.0,F +mix_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0.0,F +mix_ASC_school_univ,0.0,F +mix_ASC_work,0.0,F +pnr_transit_ASC_auto_deficient_atwork,-998.8196,F +pnr_transit_ASC_auto_deficient_eatout,0.019799326123359773,F +pnr_transit_ASC_auto_deficient_escort,-1.8430839035481918,F +pnr_transit_ASC_auto_deficient_othdiscr,-0.26007597387664017,F +pnr_transit_ASC_auto_deficient_othmaint,-0.9888094835481921,F +pnr_transit_ASC_auto_deficient_school,1.6302840221328643,F +pnr_transit_ASC_auto_deficient_shopping,-1.107868983548192,F +pnr_transit_ASC_auto_deficient_social,0.98271272612336,F +pnr_transit_ASC_auto_deficient_univ,2.521983648027319,F +pnr_transit_ASC_auto_deficient_work,-0.6160237900417844,F +pnr_transit_ASC_auto_sufficient_atwork,-999.21466,F +pnr_transit_ASC_auto_sufficient_eatout,-4.06464402354185,F +pnr_transit_ASC_auto_sufficient_escort,-5.616483463141392,F +pnr_transit_ASC_auto_sufficient_othdiscr,-3.473719863541853,F +pnr_transit_ASC_auto_sufficient_othmaint,-3.640006563141392,F +pnr_transit_ASC_auto_sufficient_school,-1.0553161868082603,F +pnr_transit_ASC_auto_sufficient_shopping,-3.186952563141392,F +pnr_transit_ASC_auto_sufficient_social,-3.7109839135418508,F +pnr_transit_ASC_auto_sufficient_univ,0.5851729489597906,F +pnr_transit_ASC_auto_sufficient_work,-2.681603854778619,F +pnr_transit_ASC_no_auto_atwork,0.0,F +pnr_transit_ASC_no_auto_eatout,0.0,F +pnr_transit_ASC_no_auto_escort,0.0,F +pnr_transit_ASC_no_auto_othdiscr,0.0,F +pnr_transit_ASC_no_auto_othmaint,0.0,F +pnr_transit_ASC_no_auto_school,0.0,F +pnr_transit_ASC_no_auto_shopping,0.0,F +pnr_transit_ASC_no_auto_social,0.0,F +pnr_transit_ASC_no_auto_univ,0.0,F +pnr_transit_ASC_no_auto_work,0.0,F +premium_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0.0,F +premium_ASC_school_univ,0.0,F +premium_ASC_work,0.0,F +schoolbus_ASC_auto_deficient_school,0.7537182164693136,F +schoolbus_ASC_auto_sufficient_school,-1.2381306969417312,F +schoolbus_ASC_no_auto_school,10.231844651777715,F +schoolbus_ASC_not_school,0.0,T +sr2_ASC_no_auto_atwork,-0.07132942608354864,F +sr2_ASC_no_auto_eatout,1.2870496233582926,F +sr2_ASC_no_auto_escort,1.51324653556187,F +sr2_ASC_no_auto_othdiscr,1.2870496233582926,F +sr2_ASC_no_auto_othmaint,1.51324653556187,F +sr2_ASC_no_auto_school,8.189697959853925,F +sr2_ASC_no_auto_shopping,1.51324653556187,F +sr2_ASC_no_auto_social,1.2870496233582926,F +sr2_ASC_no_auto_univ,0.7528488243358922,F +sr2_ASC_no_auto_work,0.7809906907645562,F +taxi_ASC_no_auto_eatout_othdiscr_social,0.9923,F +taxi_ASC_no_auto_escort_othmaint_shopping,1.8939,F +taxi_ASC_no_auto_school_univ,-7.0,T +taxi_ASC_no_auto_work,4.7291,F +taxi_ASC_no_auto_atwork,4.1021,F +taxi_ASC_auto_deficient_eatout_othdiscr_social,-3.1317,F +taxi_ASC_auto_deficient_escort_othmaint_shopping,0.1766,F +taxi_ASC_auto_deficient_school,-0.3338,F +taxi_ASC_auto_deficient_univ,4.2492,F +taxi_ASC_auto_deficient_work,-1.4766,F +taxi_ASC_auto_deficient_atwork,-4.4046,F +taxi_ASC_auto_sufficient_eatout_othdiscr_social,-3.0374,F +taxi_ASC_auto_sufficient_escort_othmaint_shopping,-1.8055,F +taxi_ASC_auto_sufficient_school,-2.4294,F +taxi_ASC_auto_sufficient_univ,-0.3131,F +taxi_ASC_auto_sufficient_work,-4.8509,F +taxi_ASC_auto_sufficient_atwork,-2.8804,F +tnc_single_ASC_no_auto_eatout_othdiscr_social,1.6852,F +tnc_single_ASC_no_auto_escort_othmaint_shopping,1.8605,F +tnc_single_ASC_no_auto_school,-7.0,T +tnc_single_ASC_no_auto_univ,-2.519,F +tnc_single_ASC_no_auto_work,5.7855,F +tnc_single_ASC_no_auto_atwork,4.4982,F +tnc_single_ASC_auto_deficient_eatout_othdiscr_social,-2.9623,F +tnc_single_ASC_auto_deficient_escort_othmaint_shopping,0.6748,F +tnc_single_ASC_auto_deficient_school,-0.5524,F +tnc_single_ASC_auto_deficient_univ,1.0221,F +tnc_single_ASC_auto_deficient_work,-0.8013,F +tnc_single_ASC_auto_deficient_atwork,-3.7626,F +tnc_single_ASC_auto_sufficient_eatout_othdiscr_social,-2.3239,F +tnc_single_ASC_auto_sufficient_escort_othmaint_shopping,-1.45,F +tnc_single_ASC_auto_sufficient_school,-2.8375,F +tnc_single_ASC_auto_sufficient_univ,0.2088,F +tnc_single_ASC_auto_sufficient_work,-4.1946,F +tnc_single_ASC_auto_sufficient_atwork,-2.7988,F +tnc_shared_ASC_no_auto_eatout_othdiscr_social,0.6464,F +tnc_shared_ASC_no_auto_escort_othmaint_shopping,0.9361,F +tnc_shared_ASC_no_auto_school,-7.0,T +tnc_shared_ASC_no_auto_univ,-5.8116,F +tnc_shared_ASC_no_auto_work,3.2429,F +tnc_shared_ASC_no_auto_atwork,3.3672,F +tnc_shared_ASC_auto_deficient_eatout_othdiscr_social,-4.3576,F +tnc_shared_ASC_auto_deficient_escort_othmaint_shopping,-0.3863,F +tnc_shared_ASC_auto_deficient_school,-1.4746,F +tnc_shared_ASC_auto_deficient_univ,3.25,F +tnc_shared_ASC_auto_deficient_work,-2.1435,F +tnc_shared_ASC_auto_deficient_atwork,-4.5089,F +tnc_shared_ASC_auto_sufficient_eatout_othdiscr_social,-3.6638,F +tnc_shared_ASC_auto_sufficient_escort_othmaint_shopping,-2.4365,F +tnc_shared_ASC_auto_sufficient_school,-3.7219,F +tnc_shared_ASC_auto_sufficient_univ,-0.9068,F +tnc_shared_ASC_auto_sufficient_work,-5.3575,F +tnc_shared_ASC_auto_sufficient_atwork,-3.5397,F +joint_ridehail_ASC_no_auto_all,-4.0,F +joint_ridehail_ASC_auto_deficient_all,5.859969356147283,F +joint_ridehail_ASC_auto_sufficient_all,7.306961330349286,F +joint_taxi_ASC_no_auto_all,-4.5792,F +joint_taxi_ASC_auto_deficient_all,-9.8157,F +joint_taxi_ASC_auto_sufficient_all,-11.7099,T +joint_tnc_single_ASC_no_auto_all,-4.4917,F +joint_tnc_single_ASC_auto_deficient_all,-9.8961,F +joint_tnc_single_ASC_auto_sufficient_all,-14.0159,T +joint_tnc_shared_ASC_no_auto_all,-4.3002,F +joint_tnc_shared_ASC_auto_deficient_all,-11.1572,F +joint_tnc_shared_ASC_auto_sufficient_all,-13.205,T +walk_transit_ASC_inc_low_eatout,1.2339363031963198,F +walk_transit_ASC_inc_low_escort,1.201103015803608,F +walk_transit_ASC_inc_low_othdiscr,1.2339363031963198,F +walk_transit_ASC_inc_low_othmaint,1.201103015803608,F +walk_transit_ASC_inc_low_school,1.8923995616433105,F +walk_transit_ASC_inc_low_shopping,1.201103015803608,F +walk_transit_ASC_inc_low_social,1.2339363031963198,F +walk_transit_ASC_inc_low_univ,2.486946107198816,F +walk_transit_ASC_inc_low_work,1.4359827680857389,F +walk_transit_ASC_inc_low_atwork,2.016150482811873,F +walk_transit_ASC_inc_mid_eatout,0.7222532298117899,F +walk_transit_ASC_inc_mid_escort,0.88803873919672,F +walk_transit_ASC_inc_mid_othdiscr,0.7222532298117899,F +walk_transit_ASC_inc_mid_othmaint,0.88803873919672,F +walk_transit_ASC_inc_mid_school,0.37219217050789505,F +walk_transit_ASC_inc_mid_shopping,0.88803873919672,F +walk_transit_ASC_inc_mid_social,0.7222532298117899,F +walk_transit_ASC_inc_mid_univ,-0.25982241797484223,F +walk_transit_ASC_inc_mid_work,0.23587952366576392,F +walk_transit_ASC_inc_mid_atwork,-1.0396975919999343,F +walk_transit_ASC_inc_high_eatout,-0.480437971951284,F +walk_transit_ASC_inc_high_escort,-0.9166434368001927,F +walk_transit_ASC_inc_high_othdiscr,-0.480437971951284,F +walk_transit_ASC_inc_high_othmaint,-0.9166434368001927,F +walk_transit_ASC_inc_high_school,-2.611132785383946,F +walk_transit_ASC_inc_high_shopping,-0.9166434368001927,F +walk_transit_ASC_inc_high_social,-0.480437971951284,F +walk_transit_ASC_inc_high_univ,0.21432963246903436,F +walk_transit_ASC_inc_high_work,-1.4229695811930847,F +walk_transit_ASC_inc_high_atwork,-2.328322914707847,F +pnr_transit_ASC_inc_low_eatout,0.7545408345619884,F +pnr_transit_ASC_inc_low_escort,1.797694266149767,F +pnr_transit_ASC_inc_low_othdiscr,0.7545408345619884,F +pnr_transit_ASC_inc_low_othmaint,1.797694266149767,F +pnr_transit_ASC_inc_low_school,3.320804266359301,F +pnr_transit_ASC_inc_low_shopping,1.797694266149767,F +pnr_transit_ASC_inc_low_social,0.7545408345619884,F +pnr_transit_ASC_inc_low_univ,1.7413858014213,F +pnr_transit_ASC_inc_low_work,0.7037737316861775,F +pnr_transit_ASC_inc_low_atwork,0.0,F +pnr_transit_ASC_inc_mid_eatout,-0.5123135950656624,F +pnr_transit_ASC_inc_mid_escort,0.35109387934760067,F +pnr_transit_ASC_inc_mid_othdiscr,-0.5123135950656624,F +pnr_transit_ASC_inc_mid_othmaint,0.35109387934760067,F +pnr_transit_ASC_inc_mid_school,2.110436137790761,F +pnr_transit_ASC_inc_mid_shopping,0.35109387934760067,F +pnr_transit_ASC_inc_mid_social,-0.5123135950656624,F +pnr_transit_ASC_inc_mid_univ,0.15154649938507608,F +pnr_transit_ASC_inc_mid_work,0.6016256542742084,F +pnr_transit_ASC_inc_mid_atwork,44.0,F +pnr_transit_ASC_inc_high_eatout,-0.02558831850501536,F +pnr_transit_ASC_inc_high_escort,-0.4820109337930607,F +pnr_transit_ASC_inc_high_othdiscr,-0.02558831850501536,F +pnr_transit_ASC_inc_high_othmaint,-0.4820109337930607,F +pnr_transit_ASC_inc_high_school,0.6099351997190907,F +pnr_transit_ASC_inc_high_shopping,-0.4820109337930607,F +pnr_transit_ASC_inc_high_social,-0.02558831850501536,F +pnr_transit_ASC_inc_high_univ,-0.4004018570120217,F +pnr_transit_ASC_inc_high_work,-0.4470041532895622,F +pnr_transit_ASC_inc_high_atwork,0.0,F +knr_transit_ASC_inc_low_eatout,0.3960804410090851,F +knr_transit_ASC_inc_low_escort,0.473325448826442,F +knr_transit_ASC_inc_low_othdiscr,0.3960804410090851,F +knr_transit_ASC_inc_low_othmaint,0.473325448826442,F +knr_transit_ASC_inc_low_school,1.2652102812649755,F +knr_transit_ASC_inc_low_shopping,0.473325448826442,F +knr_transit_ASC_inc_low_social,0.3960804410090851,F +knr_transit_ASC_inc_low_univ,2.0592780276713056,F +knr_transit_ASC_inc_low_work,0.7015730545809349,F +knr_transit_ASC_inc_low_atwork,-8.0,F +knr_transit_ASC_inc_mid_eatout,-1.25655658411655,F +knr_transit_ASC_inc_mid_escort,-0.7338367086680577,F +knr_transit_ASC_inc_mid_othdiscr,-1.25655658411655,F +knr_transit_ASC_inc_mid_othmaint,-0.7338367086680577,F +knr_transit_ASC_inc_mid_school,-0.7317745333754034,F +knr_transit_ASC_inc_mid_shopping,-0.7338367086680577,F +knr_transit_ASC_inc_mid_social,-1.25655658411655,F +knr_transit_ASC_inc_mid_univ,1.3116869811404306,F +knr_transit_ASC_inc_mid_work,-0.3848852965876042,F +knr_transit_ASC_inc_mid_atwork,-9.467438153368075,F +knr_transit_ASC_inc_high_eatout,-0.8036452570070582,F +knr_transit_ASC_inc_high_escort,-3.7264828267495282,F +knr_transit_ASC_inc_high_othdiscr,-0.8036452570070582,F +knr_transit_ASC_inc_high_othmaint,-3.7264828267495282,F +knr_transit_ASC_inc_high_school,-2.555396666750429,F +knr_transit_ASC_inc_high_shopping,-3.7264828267495282,F +knr_transit_ASC_inc_high_social,-0.8036452570070582,F +knr_transit_ASC_inc_high_univ,3.054602894113314,F +knr_transit_ASC_inc_high_work,-2.489908212600246,F +knr_transit_ASC_inc_high_atwork,-14.0,F +joint_walk_transit_ASC_inc_low_all,1.2653105263763236,F +joint_walk_transit_ASC_inc_mid_all,0.9689702099436578,F +joint_walk_transit_ASC_inc_high_all,-0.40494433479936387,F +joint_pnr_transit_ASC_inc_low_all,5.0707139490363975,F +joint_pnr_transit_ASC_inc_mid_all,1.2303917824356008,F +joint_pnr_transit_ASC_inc_high_all,0.33304098953890393,F +joint_knr_transit_ASC_inc_low_all,-0.9672797857327882,F +joint_knr_transit_ASC_inc_mid_all,-0.37375387945065697,F +joint_knr_transit_ASC_inc_high_all,-3.561907968837347,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_mode_choice_coeffs_template.csv b/activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs_template.csv old mode 100755 new mode 100644 similarity index 78% rename from activitysim/examples/prototype_semcog/configs/tour_mode_choice_coeffs_template.csv rename to activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs_template.csv index 347e23e8f..f25be4f13 --- a/activitysim/examples/prototype_semcog/configs/tour_mode_choice_coeffs_template.csv +++ b/activitysim/examples/production_semcog/configs/tour_mode_choice_coeffs_template.csv @@ -12,9 +12,6 @@ coef_nest_TRANSIT_KNRACCESS,coef_nest_TRANSIT_KNRACCESS,coef_nest_TRANSIT_KNRACC coef_nest_SCHOOL_BUS,coef_nest_SCHOOL_BUS,coef_nest_SCHOOL_BUS,coef_nest_SCHOOL_BUS,coef_nest_SCHOOL_BUS,coef_nest_SCHOOL_BUS,coef_nest_SCHOOL_BUS,coef_nest_SCHOOL_BUS,coef_nest_SCHOOL_BUS,coef_nest_SCHOOL_BUS,coef_nest_SCHOOL_BUS coef_nest_RIDEHAIL,coef_nest_RIDEHAIL,coef_nest_RIDEHAIL,coef_nest_RIDEHAIL,coef_nest_RIDEHAIL,coef_nest_RIDEHAIL,coef_nest_RIDEHAIL,coef_nest_RIDEHAIL,coef_nest_RIDEHAIL,coef_nest_RIDEHAIL,coef_nest_RIDEHAIL coef_ivt,coef_ivt_eatout_escort_othdiscr_othmaint_shopping_social,coef_ivt_eatout_escort_othdiscr_othmaint_shopping_social,coef_ivt_eatout_escort_othdiscr_othmaint_shopping_social,coef_ivt_eatout_escort_othdiscr_othmaint_shopping_social,coef_ivt_school_univ,coef_ivt_eatout_escort_othdiscr_othmaint_shopping_social,coef_ivt_eatout_escort_othdiscr_othmaint_shopping_social,coef_ivt_school_univ,coef_ivt_work,coef_ivt_atwork -coef_topology_walk_multiplier,coef_topology_walk_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_walk_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_walk_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_walk_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_walk_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_walk_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_walk_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_walk_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_walk_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_walk_multiplier_atwork -coef_topology_bike_multiplier,coef_topology_bike_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_bike_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_bike_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_bike_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_bike_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_bike_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_bike_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_bike_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_bike_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_bike_multiplier_atwork -coef_topology_trn_multiplier,coef_topology_trn_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_trn_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_trn_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_trn_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_trn_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_trn_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_trn_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_trn_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_trn_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,coef_topology_trn_multiplier_atwork coef_age1619_da_multiplier,coef_age1619_da_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age1619_da_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age1619_da_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age1619_da_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age1619_da_multiplier_school_univ,coef_age1619_da_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age1619_da_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age1619_da_multiplier_school_univ,coef_age1619_da_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age1619_da_multiplier_atwork coef_age010_trn_multiplier,coef_age010_trn_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age010_trn_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age010_trn_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age010_trn_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age010_trn_multiplier_school_univ,coef_age010_trn_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age010_trn_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age010_trn_multiplier_school_univ,coef_age010_trn_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,coef_age010_trn_multiplier_atwork coef_age16p_sr_multiplier,coef_age16p_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social,coef_age16p_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social,coef_age16p_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social,coef_age16p_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social,coef_age16p_sr_multiplier_school_univ_work_atwork,coef_age16p_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social,coef_age16p_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social,coef_age16p_sr_multiplier_school_univ_work_atwork,coef_age16p_sr_multiplier_school_univ_work_atwork,coef_age16p_sr_multiplier_school_univ_work_atwork @@ -83,15 +80,33 @@ joint_tnc_shared_ASC_auto_sufficient,joint_tnc_shared_ASC_auto_sufficient_all,jo local_ASC,local_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,local_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,local_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,local_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,local_ASC_school_univ,local_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,local_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,local_ASC_school_univ,local_ASC_work,local_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork premium_ASC,premium_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,premium_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,premium_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,premium_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,premium_ASC_school_univ,premium_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,premium_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,premium_ASC_school_univ,premium_ASC_work,premium_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork mix_ASC,mix_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,mix_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,mix_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,mix_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,mix_ASC_school_univ,mix_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,mix_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,mix_ASC_school_univ,mix_ASC_work,mix_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# walk_light_rail_ASC,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_school_univ,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_school_univ,walk_light_rail_ASC_work,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# drive_light_rail_ASC,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_school_univ,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_school_univ,drive_light_rail_ASC_work,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# walk_ferry_ASC,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_school_univ,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_school_univ,walk_ferry_ASC_work,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# drive_ferry_ASC,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_school_univ,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_school_univ,drive_ferry_ASC_work,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# express_bus_ASC,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_school_univ,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_school_univ,express_bus_ASC_work,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# heavy_rail_ASC,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_school_univ,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_school_univ,heavy_rail_ASC_work,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# commuter_rail_ASC,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_school_univ,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_school_univ,commuter_rail_ASC_work,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork walk_transit_CBD_ASC,walk_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,walk_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,walk_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,walk_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,walk_transit_CBD_ASC_school_univ,walk_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,walk_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,walk_transit_CBD_ASC_school_univ,walk_transit_CBD_ASC_work,walk_transit_CBD_ASC_atwork drive_transit_CBD_ASC,drive_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,drive_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,drive_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,drive_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,drive_transit_CBD_ASC_school_univ,drive_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,drive_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,drive_transit_CBD_ASC_school_univ,drive_transit_CBD_ASC_work,drive_transit_CBD_ASC_atwork schoolbus_ASC_no_auto,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_no_auto_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school schoolbus_ASC_auto_deficient,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_auto_deficient_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school schoolbus_ASC_auto_sufficient,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_auto_sufficient_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school,schoolbus_ASC_not_school +ridehail_ASC_no_auto,ridehail_ASC_no_auto_eatout,ridehail_ASC_no_auto_escort,ridehail_ASC_no_auto_othdiscr,ridehail_ASC_no_auto_othmaint,ridehail_ASC_no_auto_school,ridehail_ASC_no_auto_shopping,ridehail_ASC_no_auto_social,ridehail_ASC_no_auto_univ,ridehail_ASC_no_auto_work,ridehail_ASC_no_auto_atwork +ridehail_ASC_auto_deficient,ridehail_ASC_auto_deficient_eatout,ridehail_ASC_auto_deficient_escort,ridehail_ASC_auto_deficient_othdiscr,ridehail_ASC_auto_deficient_othmaint,ridehail_ASC_auto_deficient_school,ridehail_ASC_auto_deficient_shopping,ridehail_ASC_auto_deficient_social,ridehail_ASC_auto_deficient_univ,ridehail_ASC_auto_deficient_work,ridehail_ASC_auto_deficient_atwork +ridehail_ASC_auto_sufficient,ridehail_ASC_auto_sufficient_eatout,ridehail_ASC_auto_sufficient_escort,ridehail_ASC_auto_sufficient_othdiscr,ridehail_ASC_auto_sufficient_othmaint,ridehail_ASC_auto_sufficient_school,ridehail_ASC_auto_sufficient_shopping,ridehail_ASC_auto_sufficient_social,ridehail_ASC_auto_sufficient_univ,ridehail_ASC_auto_sufficient_work,ridehail_ASC_auto_sufficient_atwork +joint_ridehail_ASC_no_auto,joint_ridehail_ASC_no_auto_all,joint_ridehail_ASC_no_auto_all,joint_ridehail_ASC_no_auto_all,joint_ridehail_ASC_no_auto_all,joint_ridehail_ASC_no_auto_all,joint_ridehail_ASC_no_auto_all,joint_ridehail_ASC_no_auto_all,joint_ridehail_ASC_no_auto_all,joint_ridehail_ASC_no_auto_all,joint_ridehail_ASC_no_auto_all +joint_ridehail_ASC_auto_deficient,joint_ridehail_ASC_auto_deficient_all,joint_ridehail_ASC_auto_deficient_all,joint_ridehail_ASC_auto_deficient_all,joint_ridehail_ASC_auto_deficient_all,joint_ridehail_ASC_auto_deficient_all,joint_ridehail_ASC_auto_deficient_all,joint_ridehail_ASC_auto_deficient_all,joint_ridehail_ASC_auto_deficient_all,joint_ridehail_ASC_auto_deficient_all,joint_ridehail_ASC_auto_deficient_all +joint_ridehail_ASC_auto_sufficient,joint_ridehail_ASC_auto_sufficient_all,joint_ridehail_ASC_auto_sufficient_all,joint_ridehail_ASC_auto_sufficient_all,joint_ridehail_ASC_auto_sufficient_all,joint_ridehail_ASC_auto_sufficient_all,joint_ridehail_ASC_auto_sufficient_all,joint_ridehail_ASC_auto_sufficient_all,joint_ridehail_ASC_auto_sufficient_all,joint_ridehail_ASC_auto_sufficient_all,joint_ridehail_ASC_auto_sufficient_all +walk_transit_ASC_inc_low,walk_transit_ASC_inc_low_eatout,walk_transit_ASC_inc_low_escort,walk_transit_ASC_inc_low_othdiscr,walk_transit_ASC_inc_low_othmaint,walk_transit_ASC_inc_low_school,walk_transit_ASC_inc_low_shopping,walk_transit_ASC_inc_low_social,walk_transit_ASC_inc_low_univ,walk_transit_ASC_inc_low_work,walk_transit_ASC_inc_low_atwork +walk_transit_ASC_inc_mid,walk_transit_ASC_inc_mid_eatout,walk_transit_ASC_inc_mid_escort,walk_transit_ASC_inc_mid_othdiscr,walk_transit_ASC_inc_mid_othmaint,walk_transit_ASC_inc_mid_school,walk_transit_ASC_inc_mid_shopping,walk_transit_ASC_inc_mid_social,walk_transit_ASC_inc_mid_univ,walk_transit_ASC_inc_mid_work,walk_transit_ASC_inc_mid_atwork +walk_transit_ASC_inc_high,walk_transit_ASC_inc_high_eatout,walk_transit_ASC_inc_high_escort,walk_transit_ASC_inc_high_othdiscr,walk_transit_ASC_inc_high_othmaint,walk_transit_ASC_inc_high_school,walk_transit_ASC_inc_high_shopping,walk_transit_ASC_inc_high_social,walk_transit_ASC_inc_high_univ,walk_transit_ASC_inc_high_work,walk_transit_ASC_inc_high_atwork +pnr_transit_ASC_inc_low,pnr_transit_ASC_inc_low_eatout,pnr_transit_ASC_inc_low_escort,pnr_transit_ASC_inc_low_othdiscr,pnr_transit_ASC_inc_low_othmaint,pnr_transit_ASC_inc_low_school,pnr_transit_ASC_inc_low_shopping,pnr_transit_ASC_inc_low_social,pnr_transit_ASC_inc_low_univ,pnr_transit_ASC_inc_low_work,pnr_transit_ASC_inc_low_atwork +pnr_transit_ASC_inc_mid,pnr_transit_ASC_inc_mid_eatout,pnr_transit_ASC_inc_mid_escort,pnr_transit_ASC_inc_mid_othdiscr,pnr_transit_ASC_inc_mid_othmaint,pnr_transit_ASC_inc_mid_school,pnr_transit_ASC_inc_mid_shopping,pnr_transit_ASC_inc_mid_social,pnr_transit_ASC_inc_mid_univ,pnr_transit_ASC_inc_mid_work,pnr_transit_ASC_inc_mid_atwork +pnr_transit_ASC_inc_high,pnr_transit_ASC_inc_high_eatout,pnr_transit_ASC_inc_high_escort,pnr_transit_ASC_inc_high_othdiscr,pnr_transit_ASC_inc_high_othmaint,pnr_transit_ASC_inc_high_school,pnr_transit_ASC_inc_high_shopping,pnr_transit_ASC_inc_high_social,pnr_transit_ASC_inc_high_univ,pnr_transit_ASC_inc_high_work,pnr_transit_ASC_inc_high_atwork +knr_transit_ASC_inc_low,knr_transit_ASC_inc_low_eatout,knr_transit_ASC_inc_low_escort,knr_transit_ASC_inc_low_othdiscr,knr_transit_ASC_inc_low_othmaint,knr_transit_ASC_inc_low_school,knr_transit_ASC_inc_low_shopping,knr_transit_ASC_inc_low_social,knr_transit_ASC_inc_low_univ,knr_transit_ASC_inc_low_work,knr_transit_ASC_inc_low_atwork +knr_transit_ASC_inc_mid,knr_transit_ASC_inc_mid_eatout,knr_transit_ASC_inc_mid_escort,knr_transit_ASC_inc_mid_othdiscr,knr_transit_ASC_inc_mid_othmaint,knr_transit_ASC_inc_mid_school,knr_transit_ASC_inc_mid_shopping,knr_transit_ASC_inc_mid_social,knr_transit_ASC_inc_mid_univ,knr_transit_ASC_inc_mid_work,knr_transit_ASC_inc_mid_atwork +knr_transit_ASC_inc_high,knr_transit_ASC_inc_high_eatout,knr_transit_ASC_inc_high_escort,knr_transit_ASC_inc_high_othdiscr,knr_transit_ASC_inc_high_othmaint,knr_transit_ASC_inc_high_school,knr_transit_ASC_inc_high_shopping,knr_transit_ASC_inc_high_social,knr_transit_ASC_inc_high_univ,knr_transit_ASC_inc_high_work,knr_transit_ASC_inc_high_atwork +joint_walk_transit_ASC_inc_low,joint_walk_transit_ASC_inc_low_all,joint_walk_transit_ASC_inc_low_all,joint_walk_transit_ASC_inc_low_all,joint_walk_transit_ASC_inc_low_all,joint_walk_transit_ASC_inc_low_all,joint_walk_transit_ASC_inc_low_all,joint_walk_transit_ASC_inc_low_all,joint_walk_transit_ASC_inc_low_all,joint_walk_transit_ASC_inc_low_all,joint_walk_transit_ASC_inc_low_all +joint_walk_transit_ASC_inc_mid,joint_walk_transit_ASC_inc_mid_all,joint_walk_transit_ASC_inc_mid_all,joint_walk_transit_ASC_inc_mid_all,joint_walk_transit_ASC_inc_mid_all,joint_walk_transit_ASC_inc_mid_all,joint_walk_transit_ASC_inc_mid_all,joint_walk_transit_ASC_inc_mid_all,joint_walk_transit_ASC_inc_mid_all,joint_walk_transit_ASC_inc_mid_all,joint_walk_transit_ASC_inc_mid_all +joint_walk_transit_ASC_inc_high,joint_walk_transit_ASC_inc_high_all,joint_walk_transit_ASC_inc_high_all,joint_walk_transit_ASC_inc_high_all,joint_walk_transit_ASC_inc_high_all,joint_walk_transit_ASC_inc_high_all,joint_walk_transit_ASC_inc_high_all,joint_walk_transit_ASC_inc_high_all,joint_walk_transit_ASC_inc_high_all,joint_walk_transit_ASC_inc_high_all,joint_walk_transit_ASC_inc_high_all +joint_pnr_transit_ASC_inc_low,joint_pnr_transit_ASC_inc_low_all,joint_pnr_transit_ASC_inc_low_all,joint_pnr_transit_ASC_inc_low_all,joint_pnr_transit_ASC_inc_low_all,joint_pnr_transit_ASC_inc_low_all,joint_pnr_transit_ASC_inc_low_all,joint_pnr_transit_ASC_inc_low_all,joint_pnr_transit_ASC_inc_low_all,joint_pnr_transit_ASC_inc_low_all,joint_pnr_transit_ASC_inc_low_all +joint_pnr_transit_ASC_inc_mid,joint_pnr_transit_ASC_inc_mid_all,joint_pnr_transit_ASC_inc_mid_all,joint_pnr_transit_ASC_inc_mid_all,joint_pnr_transit_ASC_inc_mid_all,joint_pnr_transit_ASC_inc_mid_all,joint_pnr_transit_ASC_inc_mid_all,joint_pnr_transit_ASC_inc_mid_all,joint_pnr_transit_ASC_inc_mid_all,joint_pnr_transit_ASC_inc_mid_all,joint_pnr_transit_ASC_inc_mid_all +joint_pnr_transit_ASC_inc_high,joint_pnr_transit_ASC_inc_high_all,joint_pnr_transit_ASC_inc_high_all,joint_pnr_transit_ASC_inc_high_all,joint_pnr_transit_ASC_inc_high_all,joint_pnr_transit_ASC_inc_high_all,joint_pnr_transit_ASC_inc_high_all,joint_pnr_transit_ASC_inc_high_all,joint_pnr_transit_ASC_inc_high_all,joint_pnr_transit_ASC_inc_high_all,joint_pnr_transit_ASC_inc_high_all +joint_knr_transit_ASC_inc_low,joint_knr_transit_ASC_inc_low_all,joint_knr_transit_ASC_inc_low_all,joint_knr_transit_ASC_inc_low_all,joint_knr_transit_ASC_inc_low_all,joint_knr_transit_ASC_inc_low_all,joint_knr_transit_ASC_inc_low_all,joint_knr_transit_ASC_inc_low_all,joint_knr_transit_ASC_inc_low_all,joint_knr_transit_ASC_inc_low_all,joint_knr_transit_ASC_inc_low_all +joint_knr_transit_ASC_inc_mid,joint_knr_transit_ASC_inc_mid_all,joint_knr_transit_ASC_inc_mid_all,joint_knr_transit_ASC_inc_mid_all,joint_knr_transit_ASC_inc_mid_all,joint_knr_transit_ASC_inc_mid_all,joint_knr_transit_ASC_inc_mid_all,joint_knr_transit_ASC_inc_mid_all,joint_knr_transit_ASC_inc_mid_all,joint_knr_transit_ASC_inc_mid_all,joint_knr_transit_ASC_inc_mid_all +joint_knr_transit_ASC_inc_high,joint_knr_transit_ASC_inc_high_all,joint_knr_transit_ASC_inc_high_all,joint_knr_transit_ASC_inc_high_all,joint_knr_transit_ASC_inc_high_all,joint_knr_transit_ASC_inc_high_all,joint_knr_transit_ASC_inc_high_all,joint_knr_transit_ASC_inc_high_all,joint_knr_transit_ASC_inc_high_all,joint_knr_transit_ASC_inc_high_all,joint_knr_transit_ASC_inc_high_all +coef_transit_district15,coef_transit_district15_work,coef_transit_district15_univ,coef_transit_district15_school,coef_transit_district15_escort,coef_transit_district15_shopping,coef_transit_district15_eatout,coef_transit_district15_othmaint,coef_transit_district15_social,coef_transit_district15_othdiscr,coef_transit_district15_atwork \ No newline at end of file diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_atwork.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_atwork.csv old mode 100755 new mode 100644 similarity index 90% rename from activitysim/examples/prototype_semcog/configs/tour_scheduling_atwork.csv rename to activitysim/examples/production_semcog/configs/tour_scheduling_atwork.csv index c0166ffa5..c1e9adbbe --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_atwork.csv +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_atwork.csv @@ -19,22 +19,22 @@ util_Subtour_purpose_Eatout_Departure_after_1230_pm_Linear,Subtour purpose: Eat- util_Subtour_purpose_Eatout_Duration_less_than_0p5_hours_depart_and_arrive_in_the_same_period,Subtour purpose: Eat-out - Duration less than 0.5 hours (depart and arrive in the same period),"@np.where(((df.tour_type == 'eat') & (df.duration<1)), (np.where((df.duration <= 1), np.minimum(1 - df.duration, 47), 0) + np.where((df.duration > 1), np.minimum(df.duration - 1, 47), 0)), 0)",coef_Subtour_purpose_Eatout_Duration_less_than_0p5_hours_depart_and_arrive_in_the_same_period util__Departure_constants,# Departure constants,,coef__Departure_constants util_Shift_for_every_30_minutes_before_1030_am_Linear,Shift for every 30 minutes before 10:30 am - Linear,"@np.where((df.start<16), (np.where((df.start< 16), np.minimum(16 - df.start, 9), 0) + np.where((df.start> 21), np.minimum(df.start - 21, 11), 0)), 0)",coef_Shift_for_every_30_minutes_before_1030_am_Linear -util_Before_1100_AM,Before 11:00 AM,@(df.start<17),coef_Before_1100_AM -util_1100_AM_1130_AM,11:00 AM - 11:30 AM,@(df.start==17),coef_1100_AM_1130_AM -util_1130_AM_1200_PM,11:30 AM - 12:00 PM,@(df.start==18),coef_1130_AM_1200_PM -util_1200_AM_1230_PM,12:00 AM - 12:30 PM,@(df.start==19),coef_1200_AM_1230_PM -util_1230_PM_0100_PM,12:30 PM - 01:00 PM,@(df.start==20),coef_1230_PM_0100_PM -util_After_0100_PM,After 01:00 PM,@(df.start>20),coef_After_0100_PM +util_Before_1100_AM,Before 11:00 AM,@(df.start<17),coef_start_Before_1100_AM +util_1100_AM_1130_AM_start,11:00 AM - 11:30 AM,@(df.start==17),coef_start_1100_AM_1130_AM +util_1130_AM_1200_PM_start,11:30 AM - 12:00 PM,@(df.start==18),coef_start_1130_AM_1200_PM +util_1200_AM_1230_PM_start,12:00 AM - 12:30 PM,@(df.start==19),coef_start_1200_AM_1230_PM +util_1230_PM_0100_PM_start,12:30 PM - 01:00 PM,@(df.start==20),coef_start_1230_PM_0100_PM +util_After_0100_PM,After 01:00 PM,@(df.start>20),coef_start_After_0100_PM util_Shift_for_every_30_minutes_after_130_pm_Square_Root,Shift for every 30 minutes after 1:30 pm - Square Root,"@np.where((df.start>21), ((np.where((df.start < 16), np.minimum(16 - df.start, 9), 0) + np.where((df.start > 21), np.minimum(df.start - 21, 11), 0))** 0.5), 0)",coef_Shift_for_every_30_minutes_after_130_pm_Square_Root util__Arrival_constants,# Arrival constants,,coef__Arrival_constants util_Shift_for_every_30_minutes_before_1130_am_Linear,Shift for every 30 minutes before 11:30 am - Linear,"@np.where((df.end<18), (np.where((df.end < 14), np.minimum(14 - df.end, 9), 0) + np.where((df.end > 24), np.minimum(df.end - 24, 10), 0)), 0)",coef_Shift_for_every_30_minutes_before_1130_am_Linear -util_Before_1200_PM,Before 12:00 PM,@(df.end<19),coef_Before_1200_PM -util_1200_AM_1230_PM,12:00 AM - 12:30 PM,@(df.end==19),coef_1200_AM_1230_PM -util_1230_PM_0100_PM,12:30 PM - 01:00 PM,@(df.end==20),coef_1230_PM_0100_PM -util_0100_PM_0130_PM,01:00 PM - 01:30 PM,@(df.end==21),coef_0100_PM_0130_PM -util_0130_PM_0200_PM,01:30 PM - 02:00 PM,@(df.end==22),coef_0130_PM_0200_PM -util_0200_PM_0230_PM,02:00 PM - 02:30 PM,@(df.end==23),coef_0200_PM_0230_PM -util_After_0230_PM,After 02:30 PM,@(df.end>23),coef_After_0230_PM +util_Before_1200_PM,Before 12:00 PM,@(df.end<19),coef_end_Before_1200_PM +util_1200_AM_1230_PM_end,12:00 AM - 12:30 PM,@(df.end==19),coef_end_1200_AM_1230_PM +util_1230_PM_0100_PM_end,12:30 PM - 01:00 PM,@(df.end==20),coef_end_1230_PM_0100_PM +util_0100_PM_0130_PM_end,01:00 PM - 01:30 PM,@(df.end==21),coef_end_0100_PM_0130_PM +util_0130_PM_0200_PM_end,01:30 PM - 02:00 PM,@(df.end==22),coef_end_0130_PM_0200_PM +util_0200_PM_0230_PM_end,02:00 PM - 02:30 PM,@(df.end==23),coef_end_0200_PM_0230_PM +util_After_0230_PM,After 02:30 PM,@(df.end>23),coef_end_After_0230_PM util_Shift_for_every_30_minutes_after_300_pm_Linear,Shift for every 30 minutes after 3:00 pm - Linear,"@np.where((df.end>24), (np.where((df.end < 14), np.minimum(14 - df.end, 9), 0) + np.where((df.end > 24), np.minimum(df.end - 24, 10), 0)), 0)",coef_Shift_for_every_30_minutes_after_300_pm_Linear util__Duration_constants,# Duration constants,,coef__Duration_constants util_0_hrs,0 hrs,@(df.duration==0),coef_0_hrs diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_atwork.yaml b/activitysim/examples/production_semcog/configs/tour_scheduling_atwork.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/tour_scheduling_atwork.yaml rename to activitysim/examples/production_semcog/configs/tour_scheduling_atwork.yaml diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_atwork_coeffs.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_atwork_coeffs.csv old mode 100755 new mode 100644 similarity index 81% rename from activitysim/examples/prototype_semcog/configs/tour_scheduling_atwork_coeffs.csv rename to activitysim/examples/production_semcog/configs/tour_scheduling_atwork_coeffs.csv index 457c9e4b8..0e7ab1acb --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_atwork_coeffs.csv +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_atwork_coeffs.csv @@ -18,21 +18,21 @@ coef_Subtour_purpose_Eatout_Departure_before_1200_pm__Linear,-0.250770206,F coef_Subtour_purpose_Eatout_Departure_after_1230_pm_Linear,-0.169861029,F coef_Subtour_purpose_Eatout_Duration_less_than_0p5_hours_depart_and_arrive_in_the_same_period,-0.678939929,F coef_Shift_for_every_30_minutes_before_1030_am_Linear,-0.731880037,F -coef_Before_1100_AM,-2.176744062,F -coef_1100_AM_1130_AM,-1.190017952,F -coef_1130_AM_1200_PM,-0.198229872,F -#coef_1200_AM_1230_PM,0,T -#coef_1230_PM_0100_PM,-0.084950396,F -coef_After_0100_PM,-0.205562723,F +coef_start_Before_1100_AM,-2.176744062,F +coef_start_1100_AM_1130_AM,-1.190017952,F +coef_start_1130_AM_1200_PM,-0.198229872,F +coef_start_1200_AM_1230_PM,0,T +coef_start_1230_PM_0100_PM,-0.084950396,F +coef_start_After_0100_PM,-0.205562723,F coef_Shift_for_every_30_minutes_after_130_pm_Square_Root,0.539088697,F coef_Shift_for_every_30_minutes_before_1130_am_Linear,0.414546555,F -coef_Before_1200_PM,0.279351638,F -coef_1200_AM_1230_PM,-0.045281832,F -coef_1230_PM_0100_PM,0.214070736,F -coef_0100_PM_0130_PM,0,T -coef_0130_PM_0200_PM,-0.69742748,F -coef_0200_PM_0230_PM,-1.284283533,F -coef_After_0230_PM,-2.119733896,F +coef_end_Before_1200_PM,0.279351638,F +coef_end_1200_AM_1230_PM,-0.045281832,F +coef_end_1230_PM_0100_PM,0.214070736,F +coef_end_0100_PM_0130_PM,0,T +coef_end_0130_PM_0200_PM,-0.69742748,F +coef_end_0200_PM_0230_PM,-1.284283533,F +coef_end_After_0230_PM,-2.119733896,F coef_Shift_for_every_30_minutes_after_300_pm_Linear,-0.508006414,F coef_0_hrs,-0.969734874,F coef_0p5_hrs,0,T diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_atwork_preprocessor.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_atwork_preprocessor.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/tour_scheduling_atwork_preprocessor.csv rename to activitysim/examples/production_semcog/configs/tour_scheduling_atwork_preprocessor.csv diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_joint.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_joint.csv similarity index 52% rename from activitysim/examples/prototype_semcog/configs/tour_scheduling_joint.csv rename to activitysim/examples/production_semcog/configs/tour_scheduling_joint.csv index 351eaf77e..8e3a276e9 100644 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_joint.csv +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_joint.csv @@ -1,102 +1,27 @@ Label,Description,Expression,Coefficient -,,, -#ESCORT,#ESCORT,,ESCORT -util_escort_Mode_Choice_Logsum,ESCORT - Mode Choice Logsum,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort')), df.mode_choice_logsum, 0)",coef_escort_Mode_Choice_Logsum -util_escort_Distance_to_destination_Duration_less_than_0p5_hours_depart_and_arrive_in_the_same_period,ESCORT - Distance to destination - Duration less than 0.5 hours (depart and arrive in the same period),"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.duration<1)), ((df.origin_to_destination_distance) * (np.where((df.duration<=1), np.minimum(1-df.duration, 0), 0))),0)",coef_escort_Distance_to_destination_Duration_less_than_0p5_hours_depart_and_arrive_in_the_same_period -util_escort_Distance_to_destination_Duration_greater_than_0p5_hours,ESCORT - Distance to destination - Duration greater than 0.5 hours,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.duration>1)), ((df.origin_to_destination_distance) * (np.where((df.duration>1), np.minimum(df.duration-1,47), 0))), 0)",coef_escort_Distance_to_destination_Duration_greater_than_0p5_hours -util_escort_Fulltime_worker_Departure_after_8_00_am_Linear,ESCORT - Full-time worker - Departure after 8:00 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.ptype == 1) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)),0)",coef_escort_Fulltime_worker_Departure_after_8_00_am_Linear -util_escort_Fulltime_worker_Departure_after_3_00_am_Linear,ESCORT - Full-time worker - Departure after 3:00 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.ptype == 1) & (df.start>24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_Fulltime_worker_Departure_after_3_00_am_Linear -util_escort_Fulltime_worker_Duration_lt_0p5_hrs,ESCORT - Full-time worker - Duration < 0.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.ptype == 1) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0)), 0)",coef_escort_Fulltime_worker_Duration_lt_0p5_hrs -util_escort_Fulltime_worker_Duration_gt_0p5_hrs,ESCORT - Full-time worker - Duration > 0.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.ptype == 1) & (df.duration>1)), (np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_Fulltime_worker_Duration_gt_0p5_hrs -util_escort_University_student_Duration_lt_0p5_hrs,ESCORT - University student - Duration < 0.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.ptype == 3) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0)), 0)",coef_escort_University_student_Duration_lt_0p5_hrs -util_escort_Nondriving_age_student_Duration_gt_0p5_hrs,ESCORT - Non-driving age student - Duration > 0.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & ((df.ptype == 7)|(df.ptype == 8)) & (df.duration>1)), (np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_Nondriving_age_student_Duration_gt_0p5_hrs -util_escort_Driving_age_student_Duration_lt_0p5_hrs,ESCORT - Driving age student - Duration < 0.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.ptype == 6) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0)), 0)",coef_escort_Driving_age_student_Duration_lt_0p5_hrs -util_escort_Driving_age_student_Duration_gt_0p5_hrs,ESCORT - Driving age student - Duration > 0.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.ptype == 6) & (df.duration>1)), (np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_Driving_age_student_Duration_gt_0p5_hrs -util_escort_Preschool_kid_Duration_gt_0p5_hrs,ESCORT - Pre-school kid - Duration > 0.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.ptype == 8) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0)), 0)",coef_escort_Preschool_kid_Duration_gt_0p5_hrs -util_escort_Medhigh_income_60k_to_120k_Duration_gt_0p5_hrs,ESCORT - Med-high income (60k to 120k) - Duration > 0.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.is_income_60K_to_120K) & (df.duration>1)), (np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_Medhigh_income_60k_to_120k_Duration_gt_0p5_hrs -util_escort_Households_with_no_kids_Dummy_1_0_Departure_before_7_30_AM,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 7:30 AM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.num_children == 0) & (df.start<10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_Households_with_no_kids_Dummy_1_0_Departure_before_7_30_AM -util_escort_Households_with_no_kids_Dummy_1_0_Departure_after_8_00_AM,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.num_children == 0) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_Households_with_no_kids_Dummy_1_0_Departure_after_8_00_AM -util_escort_Households_with_no_kids_Dummy_1_0_Departure_before_2_30_PM,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 2:30 PM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.num_children == 0) & (df.start<24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_Households_with_no_kids_Dummy_1_0_Departure_before_2_30_PM -util_escort_Households_with_no_kids_Dummy_1_0_Departure_after_3_00_PM,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.num_children == 0) & (df.start>24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where ((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_Households_with_no_kids_Dummy_1_0_Departure_after_3_00_PM -util_escort_Households_with_no_kids_Dummy_1_0_Arrival_before_8_00_AM,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.num_children == 0) & (df.end<11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_Households_with_no_kids_Dummy_1_0_Arrival_before_8_00_AM -util_escort_Households_with_no_kids_Dummy_1_0_Arrival_after_8_30_AM,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.num_children == 0) & (df.end>11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_Households_with_no_kids_Dummy_1_0_Arrival_after_8_30_AM -util_escort_Households_with_no_kids_Dummy_1_0_Arrival_before_3_00_PM,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.num_children == 0) & (df.end<25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_Households_with_no_kids_Dummy_1_0_Arrival_before_3_00_PM -util_escort_Households_with_no_kids_Dummy_1_0_Arrival_after_3_30_PM,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.num_children == 0) & (df.end>25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_Households_with_no_kids_Dummy_1_0_Arrival_after_3_30_PM -util_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Departure_after_8_00_AM,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.start >10)), (np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Departure_after_8_00_AM -util_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Departure_after_3_00_PM,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.start>24)), (np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Departure_after_3_00_PM -util_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_before_8_00_AM,"ESCORT -Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.end<11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0)), 0)",coef_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_before_8_00_AM -util_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_before_3_00_PM,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.end<25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0)), 0)",coef_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_before_3_00_PM -util_escort_Driving_age_School_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Departure_after_8_00_AM,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) & (df.start>10)), (np.where ((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_Driving_age_School_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Departure_after_8_00_AM -util_escort_Driving_age_School_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_after_8_30_AM,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) & (df.end>11)), (np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_Driving_age_School_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_after_8_30_AM -util_escort_Driving_age_School_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_after_3_30_PM,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) &( df.end>25)), (np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_Driving_age_School_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_after_3_30_PM -util_escort_Number_of_autos_greater_than_number_of_adults_Duration_gt_0p5_hrs,ESCORT - Number of autos greater than number of adults - Duration > 0.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>1)), (np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_Number_of_autos_greater_than_number_of_adults_Duration_gt_0p5_hrs -#FIXME_Number_of_nonescort_tours_is_not_known_until_the_nonmandatory_frequency_model_is_run,#FIXME - Number of non-escort tours is not known until the non-mandatory frequency model is run,,FIXME_Number_of_nonescort_tours_is_not_known_until_the_nonmandatory_frequency_model_is_run -#util_escort_Number_of_Individual_Tours_excluding_escorting_Duration_gt_0p5_hrs,#ESCORT - Number of Individual Tours (excluding escorting) - Duration > 0.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type != 'escort') & (df.num_non_escort_tours > 0) & (df.duration>1)), (np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_Number_of_Individual_Tours_excluding_escorting_Duration_gt_0p5_hrs -util_escort_Number_of_joint_tours_Duration_gt_0p5_hrs,ESCORT - Number of joint tours - Duration > 0.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)) *(df.num_joint_tours), 0)",coef_escort_Number_of_joint_tours_Duration_gt_0p5_hrs -util_escort_Departure_Constant_Shift_for_every_30_minutes_before_06_30_am_Linear,ESCORT - Departure Constant: Shift for every 30 minutes before 06:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start<8)), (np.where((df.start<8), np.minimum(8-df.start,4), 0) + np.where((df.start>13), np.minimum(df.start-13,28), 0)), 0)",coef_escort_Departure_Constant_Shift_for_every_30_minutes_before_06_30_am_Linear -util_escort_Departure_Constant_Before_07_00_AM,ESCORT - Departure Constant: Before 07:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start<9)),coef_escort_Departure_Constant_Before_07_00_AM -util_escort_Departure_Constant_07_00_AM_07_30_AM,ESCORT - Departure Constant: 07:00 AM - 07:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==9)),coef_escort_Departure_Constant_07_00_AM_07_30_AM -util_escort_Departure_Constant_07_30_AM_08_00_AM,ESCORT - Departure Constant: 07:30 AM - 08:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==10)),coef_escort_Departure_Constant_07_30_AM_08_00_AM -util_escort_Departure_Constant_08_00_AM_08_30_AM,ESCORT - Departure Constant: 08:00 AM - 08:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==11)),coef_escort_Departure_Constant_08_00_AM_08_30_AM -util_escort_Departure_Constant_08_30_AM_09_00_AM,ESCORT - Departure Constant: 08:30 AM - 09:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==12)),coef_escort_Departure_Constant_08_30_AM_09_00_AM -util_escort_Departure_Constant_After_09_00_AM,ESCORT - Departure Constant: After 09:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start>12)),coef_escort_Departure_Constant_After_09_00_AM -util_escort_Departure_Constant_01_30_PM_02_00_PM,ESCORT - Departure Constant: 01:30 PM - 02:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==22)),coef_escort_Departure_Constant_01_30_PM_02_00_PM -util_escort_Departure_Constant_02_00_PM_02_30_PM,ESCORT - Departure Constant: 02:00 PM - 02:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==23)),coef_escort_Departure_Constant_02_00_PM_02_30_PM -util_escort_Departure_Constant_02_30_PM_03_00_PM,ESCORT - Departure Constant: 02:30 PM - 03:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==24)),coef_escort_Departure_Constant_02_30_PM_03_00_PM -util_escort_Departure_Constant_03_00_PM_03_30_PM,ESCORT - Departure Constant: 03:00 PM - 03:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==25)),coef_escort_Departure_Constant_03_00_PM_03_30_PM -util_escort_Departure_Constant_After_03_30_PM,ESCORT - Departure Constant: After 03:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start>25)),coef_escort_Departure_Constant_After_03_30_PM -util_escort_Departure_Constant_Shift_for_every_30_minutes_after_9_30_am_Linear,ESCORT - Departure Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start>13)), (np.where((df.start<8), np.minimum(8-df.start,4), 0) + (np.where((df.start>13), np.minimum(df.start-13,28), 0))), 0)",coef_escort_Departure_Constant_Shift_for_every_30_minutes_after_9_30_am_Linear -util_escort_Departure_Constant_Shift_for_every_30_minutes_after_4_00_pm_Linear,ESCORT - Departure Constant: Shift for every 30 minutes after 4:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start>26)), (np.where((df.start<0), np.minimum(0-df.start,48), 0) + np.where((df.start>26), np.minimum(df.start-26,15),0)), 0)",coef_escort_Departure_Constant_Shift_for_every_30_minutes_after_4_00_pm_Linear -util_escort_Arrival_Constant_Shift_for_every_30_minutes_before_6_30_am_Linear,ESCORT - Arrival Constant: Shift for every 30 minutes before 6:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end<8)), (np.where((df.end<8), np.minimum(8-df.end,2), 0) + np.where((df.end>13), np.minimum(df.end-13,30), 0)), 0)",coef_escort_Arrival_Constant_Shift_for_every_30_minutes_before_6_30_am_Linear -util_escort_Arrival_Constant_Before_07_00_AM,ESCORT - Arrival Constant: Before 07:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end<9)),coef_escort_Arrival_Constant_Before_07_00_AM -util_escort_Arrival_Constant_07_00_AM_07_30_AM,ESCORT - Arrival Constant: 07:00 AM - 07:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end==9)),coef_escort_Arrival_Constant_07_00_AM_07_30_AM -util_escort_Arrival_Constant_07_30_AM_08_00_AM,ESCORT - Arrival Constant: 07:30 AM - 08:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end==10)),coef_escort_Arrival_Constant_07_30_AM_08_00_AM -util_escort_Arrival_Constant_08_00_AM_08_30_AM,ESCORT - Arrival Constant: 08:00 AM - 08:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end==11)),coef_escort_Arrival_Constant_08_00_AM_08_30_AM -util_escort_Arrival_Constant_08_30_AM_09_00_AM,ESCORT - Arrival Constant: 08:30 AM - 09:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end==12)),coef_escort_Arrival_Constant_08_30_AM_09_00_AM -util_escort_Arrival_Constant_After_09_00_AM,ESCORT - Arrival Constant: After 09:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end>12)),coef_escort_Arrival_Constant_After_09_00_AM -util_escort_Arrival_Constant_02_30_PM_03_00_PM,ESCORT - Arrival Constant: 02:30 PM - 03:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end==24)),coef_escort_Arrival_Constant_02_30_PM_03_00_PM -util_escort_Arrival_Constant_03_00_PM_03_30_PM,ESCORT - Arrival Constant: 03:00 PM - 03:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end==25)),coef_escort_Arrival_Constant_03_00_PM_03_30_PM -util_escort_Arrival_Constant_03_30_PM_04_00_PM,ESCORT - Arrival Constant: 03:30 PM - 04:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end==26)),coef_escort_Arrival_Constant_03_30_PM_04_00_PM -util_escort_Arrival_Constant_04_00_PM_04_30_PM,ESCORT - Arrival Constant: 04:00 PM - 04:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end==27)),coef_escort_Arrival_Constant_04_00_PM_04_30_PM -util_escort_Arrival_Constant_After_04_30_PM,ESCORT - Arrival Constant: After 04:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end>27)),coef_escort_Arrival_Constant_After_04_30_PM -util_escort_Arrival_Constant_Shift_for_every_30_minutes_after_9_30_am_Linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end>13)), (np.where((df.end<8), np.minimum(8-df.end,2), 0) + np.where((df.end>13), np.minimum(df.end-13,30), 0)), 0)",coef_escort_Arrival_Constant_Shift_for_every_30_minutes_after_9_30_am_Linear -util_escort_Arrival_Constant_Shift_for_every_30_minutes_after_5_00_pm_Linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.end>28)), (np.where((df.end<0), np.minimum(0-df.end,48), 0) + np.where((df.start>28), np.minimum(df.end-28,15), 0)), 0)",coef_escort_Arrival_Constant_Shift_for_every_30_minutes_after_5_00_pm_Linear -util_escort_Duration_Constant_0_hrs,ESCORT - Duration Constant: 0 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.duration==0)),coef_escort_Duration_Constant_0_hrs -util_escort_Duration_Constant_0p5_hrs,ESCORT - Duration Constant: 0.5 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.duration==1)),coef_escort_Duration_Constant_0p5_hrs -util_escort_Duration_Constant_1_hrs,ESCORT - Duration Constant: 1 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.duration==2)),coef_escort_Duration_Constant_1_hrs -util_escort_Duration_Constant_1p5hrs,ESCORT - Duration Constant: 1.5hrs,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.duration==3)),coef_escort_Duration_Constant_1p5hrs -util_escort_Duration_Constant_2_hrs,ESCORT - Duration Constant: 2 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.duration==4)),coef_escort_Duration_Constant_2_hrs -util_escort_Duration_Constant_Longer_than_2_hrs,ESCORT - Duration Constant: Longer than 2 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.duration>4)),coef_escort_Duration_Constant_Longer_than_2_hrs -util_escort_Calibration_Constant_Duration_eq_1,ESCORT - Calibration Constant - Duration = 1,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.duration==0)),coef_escort_Calibration_Constant_Duration_eq_1 -util_escort_Calibration_Constant_Duration_eq_2,ESCORT - Calibration Constant - Duration = 2,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.duration==1)),coef_escort_Calibration_Constant_Duration_eq_2 -util_escort_Calibration_Constant_Departure_eq_9,ESCORT - Calibration Constant - Departure = 9,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==9)),coef_escort_Calibration_Constant_Departure_eq_9 -util_escort_Calibration_Constant_Departure_eq_10,ESCORT - Calibration Constant - Departure = 10,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==10)),coef_escort_Calibration_Constant_Departure_eq_10 -util_escort_Calibration_Constant_Departure_eq_23,ESCORT - Calibration Constant - Departure = 23,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==23)),coef_escort_Calibration_Constant_Departure_eq_23 -util_escort_Calibration_Constant_Departure_eq_24,ESCORT - Calibration Constant - Departure = 24,@((df.tour_category == 'joint') & (df.tour_type == 'escort') & (df.start==24)),coef_escort_Calibration_Constant_Departure_eq_24 #SHOPPING,#SHOPPING,,SHOPPING -util_shop_Joint_Shopping_tours_dummy_Departure_before_10_00_AM_Linear,SHOPPING - Joint Shopping tours dummy: Departure before 10:00 AM - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start<15)), (np.where((df.start<=15), np.minimum(15-df.start,7), 0) + np.where((df.start>15), np.minimum(df.start-15,24), 0)), 0)",coef_shop_Joint_Shopping_tours_dummy_Departure_before_10_00_AM_Linear -util_shop_Joint_Shopping_tours_dummy_Departure_after_10_30_AM_Linear,SHOPPING - Joint Shopping tours dummy: Departure after 10:30 AM - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start>15)), (np.where((df.start<=15), np.minimum(15-df.start,7), 0) + np.where((df.start>15), np.minimum(df.start-15,24), 0)), 0)",coef_shop_Joint_Shopping_tours_dummy_Departure_after_10_30_AM_Linear -util_shop_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs,SHOPPING - Joint Tours Party Size > 2: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.number_of_participants > 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0)), 0)",coef_shop_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs -util_shop_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,SHOPPING - Joint Tours Party Size > 2: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.number_of_participants > 2)), (np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shop_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr -util_shop_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs,SHOPPING - Joint Tour with only adults: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.composition=='adults')), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0)), 0)",coef_shop_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs -util_shop_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,SHOPPING - Kids in Joint Tour: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & ((df.composition=='children')|(df.composition=='mixed'))), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0)), 0)",coef_shop_Kids_in_Joint_Tour_Duration_lt_1p5_hrs -util_shop_Kids_in_Joint_Tour_Duration_gt_1p5_hr,SHOPPING - Kids in Joint Tour: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & ((df.composition=='children')|(df.composition=='mixed'))), (np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shop_Kids_in_Joint_Tour_Duration_gt_1p5_hr -util_shop_Low_Income_lteq25_000_Duration_gt_1p5_hr,"SHOPPING - Low Income (<=$25,000): Duration > 1.5 hr","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.is_income_less25K) & (df.duration>3)), (np.where((df.duration>3),np.minimum(df.duration-3,27), 0)), 0)",coef_shop_Low_Income_lteq25_000_Duration_gt_1p5_hr -util_shop_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs,"SHOPPING - Medium Income ($25,001 to $60,000): Duration < 1.5 hrs","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.is_income_25K_to_60K) & (df.duration<3)), (np.where((df.duration>3),np.minimum(df.duration-3,27), 0)), 0)",coef_shop_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs -util_shop_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr,"SHOPPING - Medium-High Income ($60,001 to $120,00): Duration > 1.5 hr","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.is_income_60K_to_120K) & (df.duration>3)), (np.where((df.duration>3), np.minimum(df.duration-3,27), 0)), 0)",coef_shop_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr -util_shop_Distance_Duration_lt_1p5_hrs,SHOPPING - Distance: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0)) * (df.origin_to_destination_distance), 0)",coef_shop_Distance_Duration_lt_1p5_hrs -util_shop_Distance_Duration_gt_1p5_hr,SHOPPING - Distance: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration>2)), ((np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance)), 0)",coef_shop_Distance_Duration_gt_1p5_hr -util_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start<12)), (np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear -util_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Square_root,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Square root,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start<12)), (np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0))**0.5, 0)",coef_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Square_root +util_shop_Joint_Shopping_tours_dummy_Departure_before_10_00_AM_Linear,SHOPPING - Joint Shopping tours dummy: Departure before 10:00 AM - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start<15)), ((15-df.start)*(df.start<=15) + (df.start-15)*(df.start>15)), 0)",coef_shop_Joint_Shopping_tours_dummy_Departure_before_10_00_AM_Linear +util_shop_Joint_Shopping_tours_dummy_Departure_after_10_30_AM_Linear,SHOPPING - Joint Shopping tours dummy: Departure after 10:30 AM - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start>15)), ((15-df.start)*(df.start<=15) + (df.start-15)*(df.start>15)), 0)",coef_shop_Joint_Shopping_tours_dummy_Departure_after_10_30_AM_Linear +util_shop_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs,SHOPPING - Joint Tours Party Size > 2: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration<3) & (df.number_of_participants > 2)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_shop_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs +util_shop_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,SHOPPING - Joint Tours Party Size > 2: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration>3) & (df.number_of_participants > 2)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_shop_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr +util_shop_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs,SHOPPING - Joint Tour with only adults: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration<3) & (df.composition=='adults')), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_shop_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs +util_shop_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,SHOPPING - Kids in Joint Tour: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration<3) & ((df.composition=='children')|(df.composition=='mixed'))), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_shop_Kids_in_Joint_Tour_Duration_lt_1p5_hrs +util_shop_Kids_in_Joint_Tour_Duration_gt_1p5_hr,SHOPPING - Kids in Joint Tour: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration>3) & ((df.composition=='children')|(df.composition=='mixed'))), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_shop_Kids_in_Joint_Tour_Duration_gt_1p5_hr +util_shop_Low_Income_lteq25_000_Duration_gt_1p5_hr,"SHOPPING - Low Income (<=$25,000): Duration > 1.5 hr","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.is_income_less25K) & (df.duration>3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_shop_Low_Income_lteq25_000_Duration_gt_1p5_hr +util_shop_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs,"SHOPPING - Medium Income ($25,001 to $60,000): Duration < 1.5 hrs","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.is_income_25K_to_60K) & (df.duration<3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_shop_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs +util_shop_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr,"SHOPPING - Medium-High Income ($60,001 to $120,00): Duration > 1.5 hr","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.is_income_60K_to_120K) & (df.duration>3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_shop_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr +util_shop_Distance_Duration_lt_1p5_hrs,SHOPPING - Distance: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration<3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)) * (df.origin_to_destination_distance), 0)",coef_shop_Distance_Duration_lt_1p5_hrs +util_shop_Distance_Duration_gt_1p5_hr,SHOPPING - Distance: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration>3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)) * (df.origin_to_destination_distance), 0)",coef_shop_Distance_Duration_gt_1p5_hr +util_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start<12)), ((12-df.start)*(df.start<=12) + (df.start-12)*(df.start>12)), 0)",coef_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear +util_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Square_root,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Square root,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start<12)), ((12-df.start)*(df.start<=12) + (df.start-12)*(df.start>12))**0.5, 0)",coef_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Square_root util_shop_Departure_Constant_Before_09_00_AM,SHOPPING - Departure Constant: Before 09:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start<13)),coef_shop_Departure_Constant_Before_09_00_AM util_shop_Departure_Constant_09_00_AM_09_30_AM,SHOPPING - Departure Constant: 09:00 AM - 09:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start==13)),coef_shop_Departure_Constant_09_00_AM_09_30_AM util_shop_Departure_Constant_09_30_AM_10_00_AM,SHOPPING - Departure Constant: 09:30 AM - 10:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start==14)),coef_shop_Departure_Constant_09_30_AM_10_00_AM util_shop_Departure_Constant_10_00_AM_10_30_AM,SHOPPING - Departure Constant: 10:00 AM - 10:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start==15)),coef_shop_Departure_Constant_10_00_AM_10_30_AM util_shop_Departure_Constant_10_30_AM_11_00_AM,SHOPPING - Departure Constant: 10:30 AM - 11:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start==16)),coef_shop_Departure_Constant_10_30_AM_11_00_AM util_shop_Departure_Constant_After_11_00_AM,SHOPPING - Departure Constant: After 11:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start>16)),coef_shop_Departure_Constant_After_11_00_AM -util_shop_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start>17)), (np.where((df.start<12), np.minimum(12-df.start,7),0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_shop_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear -util_shop_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Squared,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Squared,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start>17)), ((np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)) ** 2), 0)",coef_shop_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Squared -util_shop_Arrival_Constant_Shift_for_every_30_minutes_before_12_00_pm_Linear,SHOPPING - Arrival Constant: Shift for every 30 minutes before 12:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.end<19)), (np.where ((df.end<19), np.minimum(19-df.end,10), 0) + np.where((df.end>38), np.minimum(df.end-38,5), 0)), 0)",coef_shop_Arrival_Constant_Shift_for_every_30_minutes_before_12_00_pm_Linear +util_shop_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.start>17)), ((17-df.start)*(df.start<=17) + (df.start-17)*(df.start>17)), 0)",coef_shop_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear +util_shop_Arrival_Constant_Shift_for_every_30_minutes_before_12_00_pm_Linear,SHOPPING - Arrival Constant: Shift for every 30 minutes before 12:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.end<19)), ((19-df.end)*(df.end<=19) + (df.end-19)*(df.end>19)), 0)",coef_shop_Arrival_Constant_Shift_for_every_30_minutes_before_12_00_pm_Linear util_shop_Arrival_Constant_Before_12_30_PM,SHOPPING - Arrival Constant: Before 12:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.end<20)),coef_shop_Arrival_Constant_Before_12_30_PM util_shop_Arrival_Constant_12_30_PM_03_00_PM,SHOPPING - Arrival Constant: 12:30 PM - 03:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & ( df.end>=20) & (df.end<=24)),coef_shop_Arrival_Constant_12_30_PM_03_00_PM util_shop_Arrival_Constant_03_00_PM_03_30_PM,SHOPPING - Arrival Constant: 03:00 PM - 03:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.end==25)),coef_shop_Arrival_Constant_03_00_PM_03_30_PM @@ -107,34 +32,34 @@ util_shop_Arrival_Constant_05_00_PM_05_30_PM,SHOPPING - Arrival Constant: 05:00 util_shop_Arrival_Constant_05_30_PM_07_00_PM,SHOPPING - Arrival Constant: 05:30 PM - 07:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.end>=30) & (df.end<=32)),coef_shop_Arrival_Constant_05_30_PM_07_00_PM util_shop_Arrival_Constant_07_00_PM_09_30_PM,SHOPPING - Arrival Constant: 07:00 PM - 09:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.end>=33) & (df.end<=37)),coef_shop_Arrival_Constant_07_00_PM_09_30_PM util_shop_Arrival_Constant_After_09_30_PM,SHOPPING - Arrival Constant: After 09:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.end>37)),coef_shop_Arrival_Constant_After_09_30_PM -util_shop_Arrival_Constant_Shift_for_every_30_minutes_after_10_00_pm_Linear,SHOPPING - Arrival Constant: Shift for every 30 minutes after 10:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.end>38)), (np.where((df.end<19), np.minimum(19-df.end,10), 0) + np.where ((df.end>38), np.minimum(df.end-38,5), 0)), 0)",coef_shop_Arrival_Constant_Shift_for_every_30_minutes_after_10_00_pm_Linear +util_shop_Arrival_Constant_Shift_for_every_30_minutes_after_10_00_pm_Linear,SHOPPING - Arrival Constant: Shift for every 30 minutes after 10:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.end>38)), ((38-df.end)*(df.end<=38) + (df.end-38)*(df.end>38)), 0)",coef_shop_Arrival_Constant_Shift_for_every_30_minutes_after_10_00_pm_Linear util_shop_Duration_Constant_0_hrs,SHOPPING - Duration Constant: 0 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration==0)),coef_shop_Duration_Constant_0_hrs util_shop_Duration_Constant_0p5_hrs,SHOPPING - Duration Constant: 0.5 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration==1)),coef_shop_Duration_Constant_0p5_hrs util_shop_Duration_Constant_1_hrs,SHOPPING - Duration Constant: 1 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration==2)),coef_shop_Duration_Constant_1_hrs util_shop_Duration_Constant_1p5hrs,SHOPPING - Duration Constant: 1.5hrs,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration==3)),coef_shop_Duration_Constant_1p5hrs util_shop_Duration_Constant_2_hrs,SHOPPING - Duration Constant: 2 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration==4)),coef_shop_Duration_Constant_2_hrs util_shop_Duration_Constant_Longer_than_2_hrs,SHOPPING - Duration Constant: Longer than 2 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration>4)),coef_shop_Duration_Constant_Longer_than_2_hrs -util_shop_Duration_Constant_Duration_gt_2p5_hrs_Linear,SHOPPING - Duration Constant: Duration > 2.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration>5)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,26), 0)), 0)",coef_shop_Duration_Constant_Duration_gt_2p5_hrs_Linear -util_shop_Duration_Constant_Duration_gt_2p5_hrs_Square_root,SHOPPING - Duration Constant: Duration > 2.5 hrs - Square root,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration>5)), ((np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,26), 0)) ** 0.5), 0)",coef_shop_Duration_Constant_Duration_gt_2p5_hrs_Square_root +util_shop_Duration_Constant_Duration_gt_2p5_hrs_Linear,SHOPPING - Duration Constant: Duration > 2.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration>5)), ((5-df.duration)*(df.duration<=5) + (df.duration-5)*(df.duration>5)), 0)",coef_shop_Duration_Constant_Duration_gt_2p5_hrs_Linear +util_shop_Duration_Constant_Duration_gt_2p5_hrs_Square_root,SHOPPING - Duration Constant: Duration > 2.5 hrs - Square root,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration>5)), (((5-df.duration)*(df.duration<=5) + (df.duration-5)*(df.duration>5)) ** 0.5), 0)",coef_shop_Duration_Constant_Duration_gt_2p5_hrs_Square_root util_shop_Calibration_Constant_Duration_eq_1,SHOPPING - Calibration Constant - Duration = 1,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration==0)),coef_shop_Calibration_Constant_Duration_eq_1 util_shop_Calibration_Constant_Duration_eq_2,SHOPPING - Calibration Constant - Duration = 2,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration==1)),coef_shop_Calibration_Constant_Duration_eq_2 util_shop_Calibration_Constant_Duration_eq_3,SHOPPING - Calibration Constant - Duration = 3,@((df.tour_category == 'joint') & (df.tour_type == 'shopping') & (df.duration==2)),coef_shop_Calibration_Constant_Duration_eq_3 #MAINTENANCE,#MAINTENANCE,,MAINTENANCE -util_maint_Joint_Maintenance_tours_dummy_Departure_before_10_00_AM_Linear,MAINTENANCE - Joint Maintenance tours dummy: Departure before 10:00 AM - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start<15)), (np.where((df.start<=15), np.minimum(15-df.start,7), 0) + np.where((df.start>15), np.minimum(df.start-15,24), 0)), 0)",coef_maint_Joint_Maintenance_tours_dummy_Departure_before_10_00_AM_Linear -util_maint_Joint_Maintenance_tours_dummy_Departure_after_10_30_AM_Linear,MAINTENANCE - Joint Maintenance tours dummy: Departure after 10:30 AM - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start>15)), (np.where((df.start<=15), np.minimum(15-df.start,7), 0) + np.where((df.start>15), np.minimum(df.start-15,24), 0)), 0)",coef_maint_Joint_Maintenance_tours_dummy_Departure_after_10_30_AM_Linear -util_maint_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs,MAINTENANCE - Joint Tours Party Size > 2: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.number_of_participants > 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0)), 0)",coef_maint_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs -util_maint_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,MAINTENANCE - Joint Tours Party Size > 2: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.number_of_participants > 2)), (np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maint_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr -util_maint_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs,MAINTENANCE - Joint Tour with only adults: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.composition=='adults')), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0)), 0)",coef_maint_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs -util_maint_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,MAINTENANCE - Kids in Joint Tour: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & ((df.composition=='children')|(df.composition=='mixed'))), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0)), 0)",coef_maint_Kids_in_Joint_Tour_Duration_lt_1p5_hrs -util_maint_Kids_in_Joint_Tour_Duration_gt_1p5_hr,MAINTENANCE - Kids in Joint Tour: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & ((df.composition=='children')|(df.composition=='mixed'))), (np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maint_Kids_in_Joint_Tour_Duration_gt_1p5_hr -util_maint_Low_Income_lteq25_000_Duration_gt_1p5_hr,"MAINTENANCE - Low Income (<=$25,000): Duration > 1.5 hr","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.is_income_less25K) & (df.duration>2)), (np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maint_Low_Income_lteq25_000_Duration_gt_1p5_hr -util_maint_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration < 1.5 hrs","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0)), 0)",coef_maint_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs -util_maint_Medium_Income_25_001_to_60_000_Duration_gt_1p5_hr,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration > 1.5 hr","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.is_income_25K_to_60K) & (df.duration>2)), (np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maint_Medium_Income_25_001_to_60_000_Duration_gt_1p5_hr -util_maint_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr,"MAINTENANCE - Medium-High Income ($60,001 to $120,00): Duration > 1.5 hr","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.is_income_60K_to_120K) & (df.duration>2)), (np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_maint_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr -util_maint_Distance_Duration_lt_1p5_hrs,MAINTENANCE - Distance: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0)) *(df.origin_to_destination_distance), 0)",coef_maint_Distance_Duration_lt_1p5_hrs -util_maint_Distance_Duration_gt_1p5_hr,MAINTENANCE - Distance: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration>2)), (np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_maint_Distance_Duration_gt_1p5_hr -util_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start<10)), (np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Linear -util_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Square_Root,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Square Root,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start<10)), ((np.where((df.start<10), np.minimum(10-df.start,7), 0) + (np.where((df.start>17), np.minimum(df.start-17,24), 0)))** 0.5), 0)",coef_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Square_Root +util_maint_Joint_Maintenance_tours_dummy_Departure_before_10_00_AM_Linear,MAINTENANCE - Joint Maintenance tours dummy: Departure before reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start<13)), ((13-df.start)*(df.start<=13) + (df.start-13)*(df.start>13)), 0)",coef_maint_Joint_Maintenance_tours_dummy_Departure_before_10_00_AM_Linear +util_maint_Joint_Maintenance_tours_dummy_Departure_after_10_30_AM_Linear,MAINTENANCE - Joint Maintenance tours dummy: Departure after reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start>13)), ((13-df.start)*(df.start<=13) + (df.start-13)*(df.start>13)), 0)",coef_maint_Joint_Maintenance_tours_dummy_Departure_after_10_30_AM_Linear +util_maint_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs,MAINTENANCE - Joint Tours Party Size > 2: Duration < reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration<4) & (df.number_of_participants > 2)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_maint_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs +util_maint_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,MAINTENANCE - Joint Tours Party Size > 2: Duration > reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration>4) & (df.number_of_participants > 2)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_maint_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr +util_maint_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs,MAINTENANCE - Joint Tour with only adults: Duration < reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration<4) & (df.composition=='adults')), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_maint_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs +util_maint_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,MAINTENANCE - Kids in Joint Tour: Duration < reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration<4) & ((df.composition=='children')|(df.composition=='mixed'))), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_maint_Kids_in_Joint_Tour_Duration_lt_1p5_hrs +util_maint_Kids_in_Joint_Tour_Duration_gt_1p5_hr,MAINTENANCE - Kids in Joint Tour: Duration > reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration>4) & ((df.composition=='children')|(df.composition=='mixed'))), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_maint_Kids_in_Joint_Tour_Duration_gt_1p5_hr +util_maint_Low_Income_lteq25_000_Duration_gt_1p5_hr,"MAINTENANCE - Low Income (<=$25,000): Duration > reference","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.is_income_less25K) & (df.duration>4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_maint_Low_Income_lteq25_000_Duration_gt_1p5_hr +util_maint_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration < reference","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.is_income_25K_to_60K) & (df.duration<4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_maint_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs +util_maint_Medium_Income_25_001_to_60_000_Duration_gt_1p5_hr,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration > reference","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.is_income_25K_to_60K) & (df.duration>4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_maint_Medium_Income_25_001_to_60_000_Duration_gt_1p5_hr +util_maint_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr,"MAINTENANCE - Medium-High Income ($60,001 to $120,00): Duration > reference","@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.is_income_60K_to_120K) & (df.duration>4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_maint_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr +util_maint_Distance_Duration_lt_1p5_hrs,MAINTENANCE - Distance: Duration < reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration<4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)) *(df.origin_to_destination_distance), 0)",coef_maint_Distance_Duration_lt_1p5_hrs +util_maint_Distance_Duration_gt_1p5_hr,MAINTENANCE - Distance: Duration > reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration>4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)) * (df.origin_to_destination_distance), 0)",coef_maint_Distance_Duration_gt_1p5_hr +util_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start<10)), ((10-df.start)*(df.start<=10) + (df.start-10)*(df.start>10)), 0)",coef_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Linear +util_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Square_Root,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Square Root,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start<10)), (((10-df.start)*(df.start<=10) + (df.start-10)*(df.start>10))** 0.5), 0)",coef_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Square_Root util_maint_Departure_Constant_Before_08_00_AM,MAINTENANCE - Departure Constant: Before 08:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start<11)),coef_maint_Departure_Constant_Before_08_00_AM util_maint_Departure_Constant_08_00_AM_08_30_AM,MAINTENANCE - Departure Constant: 08:00 AM - 08:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start==11)),coef_maint_Departure_Constant_08_00_AM_08_30_AM util_maint_Departure_Constant_08_30_AM_09_00_AM,MAINTENANCE - Departure Constant: 08:30 AM - 09:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start==12)),coef_maint_Departure_Constant_08_30_AM_09_00_AM @@ -143,9 +68,8 @@ util_maint_Departure_Constant_09_30_AM_10_00_AM,MAINTENANCE - Departure Constant util_maint_Departure_Constant_10_00_AM_10_30_AM,MAINTENANCE - Departure Constant: 10:00 AM - 10:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start==15)),coef_maint_Departure_Constant_10_00_AM_10_30_AM util_maint_Departure_Constant_10_30_AM_11_00_AM,MAINTENANCE - Departure Constant: 10:30 AM - 11:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start==16)),coef_maint_Departure_Constant_10_30_AM_11_00_AM util_maint_Departure_Constant_After_11_00_AM,MAINTENANCE - Departure Constant: After 11:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start>16)),coef_maint_Departure_Constant_After_11_00_AM -util_maint_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start>17)), np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0), 0)",coef_maint_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear -util_maint_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Squared,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Squared,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start>17)), ((np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)) ** 2), 0)",coef_maint_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Squared -util_maint_Arrival_Constant_Shift_for_every_30_minutes_before_10_00_am_Linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes before 10:00 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.end<15)), (np.where((df.end<15), np.minimum(15-df.end,9), 0) + np.where((df.end>28), np.minimum(df.end-28,16), 0)), 0)",coef_maint_Arrival_Constant_Shift_for_every_30_minutes_before_10_00_am_Linear +util_maint_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.start>17)), ((17-df.start)*(df.start<=17) + (df.start-17)*(df.start>17)), 0)",coef_maint_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear +util_maint_Arrival_Constant_Shift_for_every_30_minutes_before_10_00_am_Linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes before 10:00 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.end<15)), ((15-df.end)*(df.end<=15) + (df.end-15)*(df.end>15)), 0)",coef_maint_Arrival_Constant_Shift_for_every_30_minutes_before_10_00_am_Linear util_maint_Arrival_Constant_Before_10_30_AM,MAINTENANCE - Arrival Constant: Before 10:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.end<16)),coef_maint_Arrival_Constant_Before_10_30_AM util_maint_Arrival_Constant_10_30_AM_11_00_AM,MAINTENANCE - Arrival Constant: 10:30 AM - 11:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.end==16)),coef_maint_Arrival_Constant_10_30_AM_11_00_AM util_maint_Arrival_Constant_11_00_AM_11_30_AM,MAINTENANCE - Arrival Constant: 11:00 AM - 11:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.end==17)),coef_maint_Arrival_Constant_11_00_AM_11_30_AM @@ -154,55 +78,55 @@ util_maint_Arrival_Constant_01_30_PM_02_30_PM,MAINTENANCE - Arrival Constant: 01 util_maint_Arrival_Constant_02_30_PM_04_00_PM,MAINTENANCE - Arrival Constant: 02:30 PM - 04:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.end>=24) & (df.end<=26)),coef_maint_Arrival_Constant_02_30_PM_04_00_PM util_maint_Arrival_Constant_04_00_PM_04_30_PM,MAINTENANCE - Arrival Constant: 04:00 PM - 04:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.end==27)),coef_maint_Arrival_Constant_04_00_PM_04_30_PM util_maint_Arrival_Constant_After_04_30_PM,MAINTENANCE - Arrival Constant: After 04:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.end>27)),coef_maint_Arrival_Constant_After_04_30_PM -util_maint_Arrival_Constant_Shift_for_every_30_minutes_after_5_00_pm_Linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.end>28)), (np.where((df.end<15), np.minimum(15-df.end,9), 0) + np.where((df.end>28), np.minimum(df.end-28,16), 0)), 0)",coef_maint_Arrival_Constant_Shift_for_every_30_minutes_after_5_00_pm_Linear +util_maint_Arrival_Constant_Shift_for_every_30_minutes_after_5_00_pm_Linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.end>28)), ((28-df.end)*(df.end<=28) + (df.end-28)*(df.end>28)), 0)",coef_maint_Arrival_Constant_Shift_for_every_30_minutes_after_5_00_pm_Linear util_maint_Duration_Constant_0_hrs,MAINTENANCE - Duration Constant: 0 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration==0)),coef_maint_Duration_Constant_0_hrs util_maint_Duration_Constant_0p5_hrs,MAINTENANCE - Duration Constant: 0.5 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration==1)),coef_maint_Duration_Constant_0p5_hrs util_maint_Duration_Constant_Longer_than_0p5_hrs,MAINTENANCE - Duration Constant: Longer than 0.5 hrs,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration>1)),coef_maint_Duration_Constant_Longer_than_0p5_hrs -util_maint_Duration_Constant_Duration_gt_1_hrs_Linear,MAINTENANCE - Duration Constant: Duration > 1 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration>2)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_maint_Duration_Constant_Duration_gt_1_hrs_Linear -util_maint_Duration_Constant_Duration_gt_1_hrs_Square_Root,MAINTENANCE - Duration Constant: Duration > 1 hrs - Square Root,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration>2)), ((np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0))** 0.5), 0)",coef_maint_Duration_Constant_Duration_gt_1_hrs_Square_Root +util_maint_Duration_Constant_Duration_gt_1_hrs_Linear,MAINTENANCE - Duration Constant: Duration > 1 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maint_Duration_Constant_Duration_gt_1_hrs_Linear +util_maint_Duration_Constant_Duration_gt_1_hrs_Square_Root,MAINTENANCE - Duration Constant: Duration > 1 hrs - Square Root,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration>2)), (((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2))** 0.5), 0)",coef_maint_Duration_Constant_Duration_gt_1_hrs_Square_Root util_maint_Calibration_Constant_Duration_eq_1,MAINTENANCE - Calibration Constant - Duration = 1,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration==0)),coef_maint_Calibration_Constant_Duration_eq_1 util_maint_Calibration_Constant_Duration_eq_2,MAINTENANCE - Calibration Constant - Duration = 2,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration==1)),coef_maint_Calibration_Constant_Duration_eq_2 util_maint_Calibration_Constant_Duration_eq_3,MAINTENANCE - Calibration Constant - Duration = 3,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration==2)),coef_maint_Calibration_Constant_Duration_eq_3 util_maint_Calibration_Constant_Duration_eq_4,MAINTENANCE - Calibration Constant - Duration = 4,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration==3)),coef_maint_Calibration_Constant_Duration_eq_4 util_maint_Calibration_Constant_Duration_eq_5,MAINTENANCE - Calibration Constant - Duration = 5,@((df.tour_category == 'joint') & (df.tour_type == 'othmaint') & (df.duration==4)),coef_maint_Calibration_Constant_Duration_eq_5 #EATOUT,#EAT-OUT,,EATOUT -util_eatout_Distance_to_destination_Duration_lt_1_hrs,EAT-OUT - Distance to destination - Duration < 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0)) * (df.origin_to_destination_distance), 0)",coef_eatout_Distance_to_destination_Duration_lt_1_hrs -util_eatout_Distance_to_destination_Duration_gt_1_hrs,EAT-OUT - Distance to destination - Duration > 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration>2)), (np.where((df.duration>2), np.minimum(df.duration-2,14), 0)) *(df.origin_to_destination_distance), 0)",coef_eatout_Distance_to_destination_Duration_gt_1_hrs -util_eatout_Low_income_lt25000_Duration_lt_1_hrs,EAT-OUT - Low income (<25000) - Duration < 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.is_income_less25K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0)), 0)",coef_eatout_Low_income_lt25000_Duration_lt_1_hrs -util_eatout_Medium_25k_to_60k_Duration_lt_1_hrs,EAT-OUT - Medium (25k to 60k) - Duration < 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0)), 0)",coef_eatout_Medium_25k_to_60k_Duration_lt_1_hrs -util_eatout_Zero_auto_HH_Duration_gt_1_hrs,EAT-OUT - Zero auto HH - Duration > 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.auto_ownership == 0) & (df.duration>2)), (np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_Zero_auto_HH_Duration_gt_1_hrs -util_eatout_Kids_in_Joint_tour_Duration_lt_1_hrs,EAT-OUT - Kids in Joint tour - Duration < 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration<2) & ((df.composition=='children')|(df.composition=='mixed'))), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0)), 0)",coef_eatout_Kids_in_Joint_tour_Duration_lt_1_hrs -util_eatout_Joint_Tours_Party_Size_greater_than_2_Duration_lt_1_hrs,EAT-OUT - Joint Tours Party Size greater than 2 - Duration < 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration<2) & (df.number_of_participants > 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0)), 0)",coef_eatout_Joint_Tours_Party_Size_greater_than_2_Duration_lt_1_hrs +util_eatout_Distance_to_destination_Duration_lt_1_hrs,EAT-OUT - Distance to destination - Duration < 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration<2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) * (df.origin_to_destination_distance), 0)",coef_eatout_Distance_to_destination_Duration_lt_1_hrs +util_eatout_Distance_to_destination_Duration_gt_1_hrs,EAT-OUT - Distance to destination - Duration > 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) *(df.origin_to_destination_distance), 0)",coef_eatout_Distance_to_destination_Duration_gt_1_hrs +util_eatout_Low_income_lt25000_Duration_lt_1_hrs,EAT-OUT - Low income (<25000) - Duration < 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.is_income_less25K) & (df.duration<2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_eatout_Low_income_lt25000_Duration_lt_1_hrs +util_eatout_Medium_25k_to_60k_Duration_lt_1_hrs,EAT-OUT - Medium (25k to 60k) - Duration < 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.is_income_25K_to_60K) & (df.duration<2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_eatout_Medium_25k_to_60k_Duration_lt_1_hrs +util_eatout_Zero_auto_HH_Duration_gt_1_hrs,EAT-OUT - Zero auto HH - Duration > 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.auto_ownership == 0) & (df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_eatout_Zero_auto_HH_Duration_gt_1_hrs +util_eatout_Kids_in_Joint_tour_Duration_lt_1_hrs,EAT-OUT - Kids in Joint tour - Duration < 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration<2) & ((df.composition=='children')|(df.composition=='mixed'))), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_eatout_Kids_in_Joint_tour_Duration_lt_1_hrs +util_eatout_Joint_Tours_Party_Size_greater_than_2_Duration_lt_1_hrs,EAT-OUT - Joint Tours Party Size greater than 2 - Duration < 1 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration<2) & (df.number_of_participants > 2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_eatout_Joint_Tours_Party_Size_greater_than_2_Duration_lt_1_hrs util_eatout_Departure_Constant_11_00_AM_12_00_PM,EAT-OUT - Departure Constant: 11:00 AM - 12:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start>=17) & (df.start<=18)),coef_eatout_Departure_Constant_11_00_AM_12_00_PM util_eatout_Departure_Constant_12_00_PM_12_30_PM,EAT-OUT - Departure Constant: 12:00 PM - 12:30 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start==19),coef_eatout_Departure_Constant_12_00_PM_12_30_PM util_eatout_Departure_Constant_12_30_PM_to_01_00_PM,EAT-OUT - Departure Constant: 12:30 PM to 01:00 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start==20),coef_eatout_Departure_Constant_12_30_PM_to_01_00_PM -util_eatout_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear,EAT-OUT - Departure Constant: Shift for every 30 minutes before 05:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start<29)), (np.where((df.start<29), np.minimum(29-df.start,20), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_eatout_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear +util_eatout_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear,EAT-OUT - Departure Constant: Shift for every 30 minutes before 05:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start<29)), ((29-df.start)*(df.start<=29) + (df.start-29)*(df.start>29)), 0)",coef_eatout_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear util_eatout_Departure_Constant_Before_05_30_PM,EAT-OUT - Departure Constant: Before 05:30 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start<30),coef_eatout_Departure_Constant_Before_05_30_PM util_eatout_Departure_Constant_05_30_PM_06_00_PM,EAT-OUT - Departure Constant: 05:30 PM - 06:00 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start==30),coef_eatout_Departure_Constant_05_30_PM_06_00_PM util_eatout_Departure_Constant_06_00_PM_06_30_PM,EAT-OUT - Departure Constant: 06:00 PM - 06:30 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start==31),coef_eatout_Departure_Constant_06_00_PM_06_30_PM util_eatout_Departure_Constant_06_30_PM_07_00_PM,EAT-OUT - Departure Constant: 06:30 PM - 07:00 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start==32),coef_eatout_Departure_Constant_06_30_PM_07_00_PM util_eatout_Departure_Constant_07_00_PM_07_30_PM,EAT-OUT - Departure Constant: 07:00 PM - 07:30 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start==33),coef_eatout_Departure_Constant_07_00_PM_07_30_PM util_eatout_Departure_Constant_After_07_30_PM,EAT-OUT - Departure Constant: After 07:30 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start>33),coef_eatout_Departure_Constant_After_07_30_PM -util_eatout_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear,EAT-OUT - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start>34)), (np.where((df.start<29), np.minimum(29-df.start,20), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_eatout_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear +util_eatout_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear,EAT-OUT - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start>34)), ((34-df.start)*(df.start<=34) + (df.start-34)*(df.start>34)), 0)",coef_eatout_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear util_eatout_Arrival_Constant_12_30_PM_to_01_00_PM,EAT-OUT - Arrival Constant: 12:30 PM to 01:00 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.end==20),coef_eatout_Arrival_Constant_12_30_PM_to_01_00_PM util_eatout_Arrival_Constant_01_00_PM_to_01_30_PM,EAT-OUT - Arrival Constant: 01:00 PM to 01:30 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.end==21),coef_eatout_Arrival_Constant_01_00_PM_to_01_30_PM util_eatout_Arrival_Constant_01_30_PM_to_02_00_PM,EAT-OUT - Arrival Constant: 01:30 PM to 02:00 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.end==22),coef_eatout_Arrival_Constant_01_30_PM_to_02_00_PM util_eatout_Arrival_Constant_02_00_PM_to_02_30_PM,EAT-OUT - Arrival Constant: 02:00 PM to 02:30 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.end==23),coef_eatout_Arrival_Constant_02_00_PM_to_02_30_PM -util_eatout_Arrival_Constant_Shift_for_every_30_minutes_before_06_30_pm_Linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes before 06:30 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.end<32)), (np.where((df.end<32), np.minimum(32-df.end,21), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_eatout_Arrival_Constant_Shift_for_every_30_minutes_before_06_30_pm_Linear +util_eatout_Arrival_Constant_Shift_for_every_30_minutes_before_06_30_pm_Linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes before 06:30 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.end<32)), ((32-df.end)*(df.end<=32) + (df.end-32)*(df.end>32)), 0)",coef_eatout_Arrival_Constant_Shift_for_every_30_minutes_before_06_30_pm_Linear util_eatout_Arrival_Constant_Before_7_00_PM,EAT-OUT - Arrival Constant: Before 7:00 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.end<33),coef_eatout_Arrival_Constant_Before_7_00_PM util_eatout_Arrival_Constant_7_00_PM_to_7_30_PM,EAT-OUT - Arrival Constant: 7:00 PM to 7:30 PM,@(df.tour_category == 'joint') & (df.tour_type== 'eatout') & (df.end==33),coef_eatout_Arrival_Constant_7_00_PM_to_7_30_PM util_eatout_Arrival_Constant_7_30_PM_to_8_00_PM,EAT-OUT - Arrival Constant: 7:30 PM to 8:00 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.end==34),coef_eatout_Arrival_Constant_7_30_PM_to_8_00_PM util_eatout_Arrival_Constant_8_00_PM_to_8_30_PM,EAT-OUT - Arrival Constant: 8:00 PM to 8:30 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.end==35),coef_eatout_Arrival_Constant_8_00_PM_to_8_30_PM util_eatout_Arrival_Constant_8_30_PM_to_9_00_PM,EAT-OUT - Arrival Constant: 8:30 PM to 9:00 PM,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.end==36),coef_eatout_Arrival_Constant_8_30_PM_to_9_00_PM util_eatout_Arrival_Constant_After_09_00_PM,EAT-OUT - Arrival Constant: After 09:00 PM,@(df.tour_category == 'joint') & (df.tour_type== 'eatout') & (df.end>36),coef_eatout_Arrival_Constant_After_09_00_PM -util_eatout_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.tour_type== 'eatout') & (df.end>37) & (df.tour_category == 'joint')), (np.where((df.end<32), np.minimum(32-df.end,21), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_eatout_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear -util_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear,EAT-OUT - Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration>6)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>6), np.minimum(df.duration-6,12), 0)), 0)",coef_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear +util_eatout_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.tour_type== 'eatout') & (df.end>37) & (df.tour_category == 'joint')), ((37-df.end)*(df.end<=37) + (df.end-37)*(df.end>37)), 0)",coef_eatout_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear +util_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear,EAT-OUT - Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration>6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)), 0)",coef_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear util_eatout_Duration_Constant_0_hours,EAT-OUT - Duration Constant: 0 hours,@((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration==0)),coef_eatout_Duration_Constant_0_hours util_eatout_Duration_Constant_0p5_hous,EAT-OUT - Duration Constant: 0.5 hous,@((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration==1)),coef_eatout_Duration_Constant_0p5_hous util_eatout_Duration_Constant_1_hour,EAT-OUT - Duration Constant: 1 hour,@((df.tour_category == 'joint') & (df.tour_type== 'eatout') & (df.duration==2)),coef_eatout_Duration_Constant_1_hour util_eatout_Duration_Constant_1p5_hours,EAT-OUT - Duration Constant: 1.5 hours,@((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration==3)),coef_eatout_Duration_Constant_1p5_hours util_eatout_Duration_Constant_2_hours_or_more,EAT-OUT - Duration Constant: 2 hours or more,@(df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration>4),coef_eatout_Duration_Constant_2_hours_or_more -util_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_2p5_hrs_Linear,EAT-OUT - Duration Constant: Shift for every 30 minutes more than 2.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration>5)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,13), 0)), 0)",coef_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_2p5_hrs_Linear +util_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_2p5_hrs_Linear,EAT-OUT - Duration Constant: Shift for every 30 minutes more than 2.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration>5)), ((5-df.duration)*(df.duration<=5) + (df.duration-5)*(df.duration>5)), 0)",coef_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_2p5_hrs_Linear util_eatout_Calibration_Constant_Duration_eq_1,EAT-OUT - Calibration Constant - Duration = 1,@((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration==0)),coef_eatout_Calibration_Constant_Duration_eq_1 util_eatout_Calibration_Constant_Duration_eq_2,EAT-OUT - Calibration Constant - Duration = 2,@((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.duration==1)),coef_eatout_Calibration_Constant_Duration_eq_2 util_eatout_Calibration_Constant_Duration_eq_3,EAT-OUT - Calibration Constant - Duration = 3,@((df.tour_category == 'joint') & (df.tour_type== 'eatout') & (df.duration==2)),coef_eatout_Calibration_Constant_Duration_eq_3 @@ -216,45 +140,45 @@ util_eatout_Calibration_Constant_Departure_eq_19,EAT-OUT - Calibration Constant util_eatout_Calibration_Constant_Departure_eq_20,EAT-OUT - Calibration Constant - Departure = 20,@((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start ==20)),coef_eatout_Calibration_Constant_Departure_eq_20 util_eatout_Calibration_Constant_Departure_eq_21,EAT-OUT - Calibration Constant - Departure = 21,@((df.tour_category == 'joint') & (df.tour_type == 'eatout') & (df.start ==21)),coef_eatout_Calibration_Constant_Departure_eq_21 #SOCIAL,#SOCIAL,,SOCIAL -util_social_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear,SOCIAL - Retiree/ Non-working senior only HH: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.retired_adults_only_hh) & (df.tour_type == 'social') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear -util_social_Zero_auto_households_Duration_lt_1p5_hrs_Linear,SOCIAL - Zero auto households: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.auto_ownership == 0) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_Zero_auto_households_Duration_lt_1p5_hrs_Linear -util_social_Zero_auto_households_Duration_gt_1p5_hrs_Linear,SOCIAL - Zero auto households: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.auto_ownership == 0) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_Zero_auto_households_Duration_gt_1p5_hrs_Linear -util_social_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear,SOCIAL - Number of auto more that number of adults: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint')&(df.tour_type == 'social') & (df.auto_ownership > 0) &(df.auto_ownership > df.num_adults) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0)), 0)",coef_social_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear -util_social_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear,SOCIAL - Number of auto more that number of adults: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>3)), (np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear -util_social_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,SOCIAL - Kids in Joint Tour: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration<3) & ((df.composition=='children')|(df.composition=='mixed'))), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0)), 0)",coef_social_Kids_in_Joint_Tour_Duration_lt_1p5_hrs -util_social_Kids_in_Joint_Tour_Duration_gt_1p5_hr,SOCIAL - Kids in Joint Tour: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration>3) & ((df.composition=='children')|(df.composition=='mixed'))), (np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_Kids_in_Joint_Tour_Duration_gt_1p5_hr -util_social_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,SOCIAL - Joint Tours Party Size > 2: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration>3) & (df.number_of_participants > 2)), (np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr -util_social_Auto_Distance_Duration_lt_1_hrs_Linear,SOCIAL - Auto Distance: Duration < 1 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) * (df.origin_to_destination_distance)), 0) ",coef_social_Auto_Distance_Duration_lt_1_hrs_Linear -util_social_Auto_Distance_Duration_gt_1_hrs_Linear,SOCIAL - Auto Distance: Duration > 1 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration>3)), (np.where((df.duration>3), np.minimum(df.duration-3,47), 0) * (df.origin_to_destination_distance)), 0)",coef_social_Auto_Distance_Duration_gt_1_hrs_Linear -util_social_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start<12)), (np.where((df.start<12), np.minimum(12-df.start,48), 0) + np.where((df.start>48), np.minimum(df.start-48,48), 0)), 0)",coef_social_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear +util_social_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear,SOCIAL - Retiree/ Non-working senior only HH: Duration < reference,"@np.where(((df.tour_category == 'joint') & (df.retired_adults_only_hh) & (df.tour_type == 'social') & (df.duration<4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_social_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear +util_social_Zero_auto_households_Duration_lt_1p5_hrs_Linear,SOCIAL - Zero auto households: Duration < reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.auto_ownership == 0) & (df.duration<4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_social_Zero_auto_households_Duration_lt_1p5_hrs_Linear +util_social_Zero_auto_households_Duration_gt_1p5_hrs_Linear,SOCIAL - Zero auto households: Duration > reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.auto_ownership == 0) & (df.duration>4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_social_Zero_auto_households_Duration_gt_1p5_hrs_Linear +util_social_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear,SOCIAL - Number of auto more that number of adults: Duration < reference - Linear,"@np.where(((df.tour_category == 'joint')&(df.tour_type == 'social') & (df.auto_ownership > 0) &(df.auto_ownership > df.num_adults) & (df.duration<4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_social_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear +util_social_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear,SOCIAL - Number of auto more that number of adults: Duration > reference - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_social_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear +util_social_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,SOCIAL - Kids in Joint Tour: Duration < reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration<4) & ((df.composition=='children')|(df.composition=='mixed'))), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_social_Kids_in_Joint_Tour_Duration_lt_1p5_hrs +util_social_Kids_in_Joint_Tour_Duration_gt_1p5_hr,SOCIAL - Kids in Joint Tour: Duration > reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration>4) & ((df.composition=='children')|(df.composition=='mixed'))), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_social_Kids_in_Joint_Tour_Duration_gt_1p5_hr +util_social_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,SOCIAL - Joint Tours Party Size > 2: Duration > reference,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration>4) & (df.number_of_participants > 2)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_social_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr +util_social_Auto_Distance_Duration_lt_1_hrs_Linear,SOCIAL - Auto Distance: Duration < reference - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration<4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)) * (df.origin_to_destination_distance), 0) ",coef_social_Auto_Distance_Duration_lt_1_hrs_Linear +util_social_Auto_Distance_Duration_gt_1_hrs_Linear,SOCIAL - Auto Distance: Duration > reference - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration>4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)) * (df.origin_to_destination_distance), 0)",coef_social_Auto_Distance_Duration_gt_1_hrs_Linear +util_social_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start<12)), ((12-df.start)*(df.start<=12) + (df.start-12)*(df.start>12)), 0)",coef_social_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear util_social_Departure_Constant_Before_09_00_AM,SOCIAL - Departure Constant: Before 09:00 AM,@(df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start<13),coef_social_Departure_Constant_Before_09_00_AM util_social_Departure_Constant_09_00_AM_to_09_30_AM,SOCIAL - Departure Constant: 09:00 AM to 09:30 AM,@(df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start==13),coef_social_Departure_Constant_09_00_AM_to_09_30_AM -util_social_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 05:00 pm - Linear,"@np.where((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start<29), (np.where((df.start<29), np.minimum(29-df.start,8), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_social_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear +util_social_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 05:00 pm - Linear,"@np.where((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start<29), ((29-df.start)*(df.start<=29) + (df.start-29)*(df.start>29)), 0)",coef_social_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear util_social_Departure_Constant_Before_05_30_PM,SOCIAL - Departure Constant: Before 05:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start<30)),coef_social_Departure_Constant_Before_05_30_PM util_social_Departure_Constant_05_30_PM_06_00_PM,SOCIAL - Departure Constant: 05:30 PM - 06:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start==30)),coef_social_Departure_Constant_05_30_PM_06_00_PM util_social_Departure_Constant_06_00_PM_06_30_PM,SOCIAL - Departure Constant: 06:00 PM - 06:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start==31)),coef_social_Departure_Constant_06_00_PM_06_30_PM util_social_Departure_Constant_06_30_PM_07_00_PM,SOCIAL - Departure Constant: 06:30 PM - 07:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start==32)),coef_social_Departure_Constant_06_30_PM_07_00_PM util_social_Departure_Constant_07_00_PM_07_30_PM,SOCIAL - Departure Constant: 07:00 PM - 07:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start==33)),coef_social_Departure_Constant_07_00_PM_07_30_PM util_social_Departure_Constant_After_07_30_PM,SOCIAL - Departure Constant: After 07:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start>33)),coef_social_Departure_Constant_After_07_30_PM -util_social_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear,SOCIAL - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start>34), (np.where((df.start<29), np.minimum(29-df.start,8), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_social_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear +util_social_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear,SOCIAL - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.start>34), ((34-df.start)*(df.start<=34) + (df.start-34)*(df.start>34)), 0)",coef_social_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear util_social_Arrival_Constant_03_00_PM_to_03_30_PM,SOCIAL - Arrival Constant: 03:00 PM to 03:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end==25)),coef_social_Arrival_Constant_03_00_PM_to_03_30_PM util_social_Arrival_Constant_03_30_PM_to_04_00_PM,SOCIAL - Arrival Constant: 03:30 PM to 04:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end==26)),coef_social_Arrival_Constant_03_30_PM_to_04_00_PM util_social_Arrival_Constant_04_00_PM_to_04_30_PM,SOCIAL - Arrival Constant: 04:00 PM to 04:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end==27)),coef_social_Arrival_Constant_04_00_PM_to_04_30_PM util_social_Arrival_Constant_05_00_PM_to_06_00_PM,SOCIAL - Arrival Constant: 05:00 PM to 06:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end>=29) & (df.end<=30)),coef_social_Arrival_Constant_05_00_PM_to_06_00_PM -util_social_Arrival_Constant_Shift_for_every_30_minutes_before_08_00_pm_Linear,SOCIAL - Arrival Constant: Shift for every 30 minutes before 08:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end<35)), (np.where((df.end<35), np.minimum(35-df.end,48), 0) + np.where((df.end>40), np.minimum(df.end-40,48), 0)), 0)",coef_social_Arrival_Constant_Shift_for_every_30_minutes_before_08_00_pm_Linear +util_social_Arrival_Constant_Shift_for_every_30_minutes_before_08_00_pm_Linear,SOCIAL - Arrival Constant: Shift for every 30 minutes before 08:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end<35)), ((35-df.end)*(df.end<=35) + (df.end-35)*(df.end>35)), 0)",coef_social_Arrival_Constant_Shift_for_every_30_minutes_before_08_00_pm_Linear util_social_Arrival_Constant_Before_8_30_PM,SOCIAL - Arrival Constant: Before 8:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end<36)),coef_social_Arrival_Constant_Before_8_30_PM util_social_Arrival_Constant_8_30_PM_to_9_00_PM,SOCIAL - Arrival Constant: 8:30 PM to 9:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end==36)),coef_social_Arrival_Constant_8_30_PM_to_9_00_PM util_social_Arrival_Constant_9_00_PM_to_9_30_PM,SOCIAL - Arrival Constant: 9:00 PM to 9:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end==37)),coef_social_Arrival_Constant_9_00_PM_to_9_30_PM util_social_Arrival_Constant_9_30_PM_to10_00_PM,SOCIAL - Arrival Constant: 9:30 PM to10:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end==38)),coef_social_Arrival_Constant_9_30_PM_to10_00_PM util_social_Arrival_Constant_10_00_PM_to_10_30_PM,SOCIAL - Arrival Constant: 10:00 PM to 10:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end==39)),coef_social_Arrival_Constant_10_00_PM_to_10_30_PM util_social_Arrival_Constant_After_10_30_PM,SOCIAL - Arrival Constant: After 10:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end>39)),coef_social_Arrival_Constant_After_10_30_PM -util_social_Arrival_Constant_Shift_for_every_30_minutes_after_11_00_pm_Linear,SOCIAL - Arrival Constant: Shift for every 30 minutes after 11:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end>40)), (np.where((df.end<35), np.minimum(35-df.end,48), 0) +np.where((df.end>40),np.minimum(df.end-40,48),0)), 0)",coef_social_Arrival_Constant_Shift_for_every_30_minutes_after_11_00_pm_Linear -util_social_Duration_Constant_Shift_for_every_30_minutes_less_than_1p5_hrs_Linear,SOCIAL - Duration Constant: Shift for every 30 minutes less than 1.5 hrs - Linear,"@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration<3)) * ((np.minimum(3-df.duration,47)*(df.duration<3)) + (np.minimum(df.duration-6,47)*(df.duration>6)))",coef_social_Duration_Constant_Shift_for_every_30_minutes_less_than_1p5_hrs_Linear +util_social_Arrival_Constant_Shift_for_every_30_minutes_after_11_00_pm_Linear,SOCIAL - Arrival Constant: Shift for every 30 minutes after 11:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.end>40)), ((40-df.end)*(df.end<=40) + (df.end-40)*(df.end>40)), 0)",coef_social_Arrival_Constant_Shift_for_every_30_minutes_after_11_00_pm_Linear +util_social_Duration_Constant_Shift_for_every_30_minutes_less_than_1p5_hrs_Linear,SOCIAL - Duration Constant: Shift for every 30 minutes less than 1.5 hrs - Linear,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration<3)) * ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)),coef_social_Duration_Constant_Shift_for_every_30_minutes_less_than_1p5_hrs_Linear util_social_Duration_Constant_Less_than_2_hours,SOCIAL - Duration Constant: Less than 2 hours,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration<4)),coef_social_Duration_Constant_Less_than_2_hours util_social_Duration_Constant_2_hours,SOCIAL - Duration Constant: 2 hours,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration==4)),coef_social_Duration_Constant_2_hours util_social_Duration_Constant_2p5_hours,SOCIAL - Duration Constant: 2.5 hours,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration==5)),coef_social_Duration_Constant_2p5_hours util_social_Duration_Constant_3_hours_or_more,SOCIAL - Duration Constant: 3 hours or more,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration>5)),coef_social_Duration_Constant_3_hours_or_more -util_social_Duration_Constant_Shift_for_every_30_minutes_more_than_3p5_hrs_Linear,SOCIAL - Duration Constant: Shift for every 30 minutes more than 3.5 hrs - Linear,"@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration>6)) * ((np.minimum(3-df.duration,47)*(df.duration<3)) + (np.minimum(df.duration-6,47)*(df.duration>6)))",coef_social_Duration_Constant_Shift_for_every_30_minutes_more_than_3p5_hrs_Linear +util_social_Duration_Constant_Shift_for_every_30_minutes_more_than_3p5_hrs_Linear,SOCIAL - Duration Constant: Shift for every 30 minutes more than 3.5 hrs - Linear,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration>6)) * ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)),coef_social_Duration_Constant_Shift_for_every_30_minutes_more_than_3p5_hrs_Linear util_social_Calibration_Constant_Duration_eq_1,SOCIAL - Calibration Constant - Duration = 1,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration ==0)),coef_social_Calibration_Constant_Duration_eq_1 util_social_Calibration_Constant_Duration_eq_2,SOCIAL - Calibration Constant - Duration = 2,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration == 1)),coef_social_Calibration_Constant_Duration_eq_2 util_social_Calibration_Constant_Duration_eq_3,SOCIAL - Calibration Constant - Duration = 3,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration ==2)),coef_social_Calibration_Constant_Duration_eq_3 @@ -265,17 +189,17 @@ util_social_Calibration_Constant_Duration_eq_7,SOCIAL - Calibration Constant - D util_social_Calibration_Constant_Duration_eq_8,SOCIAL - Calibration Constant - Duration = 8,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration ==7)),coef_social_Calibration_Constant_Duration_eq_8 util_social_Calibration_Constant_Duration_eq_9,SOCIAL - Calibration Constant - Duration = 9,@((df.tour_category == 'joint') & (df.tour_type == 'social') & (df.duration ==8)),coef_social_Calibration_Constant_Duration_eq_9 #DISCRETIONARY,#DISCRETIONARY,,DISCRETIONARY -util_disc_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear,DISCRETIONARY - Retiree/ Non-working senior only HH: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.retired_adults_only_hh) & (df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0)), 0)",coef_disc_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear -util_disc_Zero_auto_households_Duration_lt_1p5_hrs_Linear,DISCRETIONARY - Zero auto households: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.auto_ownership == 0) & (df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0)), 0)",coef_disc_Zero_auto_households_Duration_lt_1p5_hrs_Linear -util_disc_Zero_auto_households_Duration_gt_1p5_hrs_Linear,DISCRETIONARY - Zero auto households: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.auto_ownership == 0) & (df.tour_type == 'othdiscr') & (df.duration>3)), (np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_disc_Zero_auto_households_Duration_gt_1p5_hrs_Linear -util_disc_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear,DISCRETIONARY - Number of auto more that number of adults: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.auto_ownership > 0) & (df.tour_type == 'othdiscr') & (df.auto_ownership > df.num_adults) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0)),0)",coef_disc_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear -util_disc_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear,DISCRETIONARY - Number of auto more that number of adults: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.auto_ownership > 0) &(df.tour_type == 'othdiscr')&(df.auto_ownership > df.num_adults) & (df.duration>3)), (np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_disc_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear -util_disc_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,DISCRETIONARY - Kids in Joint Tour: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3) & ((df.ptype == 6) | (df.ptype == 7) | (df.ptype == 8))), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0)), 0)",coef_disc_Kids_in_Joint_Tour_Duration_lt_1p5_hrs -util_disc_Kids_in_Joint_Tour_Duration_gt_1p5_hr,DISCRETIONARY - Kids in Joint Tour: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3) & ((df.ptype == 6) | (df.ptype == 7) | (df.ptype == 8))), (np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_disc_Kids_in_Joint_Tour_Duration_gt_1p5_hr -util_disc_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,DISCRETIONARY - Joint Tours Party Size > 2: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3) & (df.number_of_participants > 2)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0)), 0)",coef_disc_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr -util_disc_Auto_Distance_Duration_lt_1_hrs_Linear,DISCRETIONARY - Auto Distance: Duration < 1 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0)) * (df.origin_to_destination_distance), 0)",coef_disc_Auto_Distance_Duration_lt_1_hrs_Linear -util_disc_Auto_Distance_Duration_gt_1_hrs_Linear,DISCRETIONARY - Auto Distance: Duration > 1 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3)), (np.where((df.duration>3), np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_disc_Auto_Distance_Duration_gt_1_hrs_Linear -util_disc_Departure_Constant_Shift_for_every_30_minutes_before_07_30_pm_Linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 07:30 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start<9)), (np.where((df.start<9), np.minimum(9-df.start,48), 0) + np.where((df.start>48), np.minimum(df.start-48,48),0)), 0)",coef_disc_Departure_Constant_Shift_for_every_30_minutes_before_07_30_pm_Linear +util_disc_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear,DISCRETIONARY - Retiree/ Non-working senior only HH: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.retired_adults_only_hh) & (df.tour_type == 'othdiscr') & (df.duration<3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_disc_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear +util_disc_Zero_auto_households_Duration_lt_1p5_hrs_Linear,DISCRETIONARY - Zero auto households: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.auto_ownership == 0) & (df.tour_type == 'othdiscr') & (df.duration<3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_disc_Zero_auto_households_Duration_lt_1p5_hrs_Linear +util_disc_Zero_auto_households_Duration_gt_1p5_hrs_Linear,DISCRETIONARY - Zero auto households: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.auto_ownership == 0) & (df.tour_type == 'othdiscr') & (df.duration>3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_disc_Zero_auto_households_Duration_gt_1p5_hrs_Linear +util_disc_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear,DISCRETIONARY - Number of auto more that number of adults: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.auto_ownership > 0) & (df.tour_type == 'othdiscr') & (df.auto_ownership > df.num_adults) & (df.duration<3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)),0)",coef_disc_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear +util_disc_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear,DISCRETIONARY - Number of auto more that number of adults: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.auto_ownership > 0) &(df.tour_type == 'othdiscr')&(df.auto_ownership > df.num_adults) & (df.duration>3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_disc_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear +util_disc_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,DISCRETIONARY - Kids in Joint Tour: Duration < 1.5 hrs,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3) & ((df.ptype == 6) | (df.ptype == 7) | (df.ptype == 8))), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_disc_Kids_in_Joint_Tour_Duration_lt_1p5_hrs +util_disc_Kids_in_Joint_Tour_Duration_gt_1p5_hr,DISCRETIONARY - Kids in Joint Tour: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3) & ((df.ptype == 6) | (df.ptype == 7) | (df.ptype == 8))), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_disc_Kids_in_Joint_Tour_Duration_gt_1p5_hr +util_disc_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,DISCRETIONARY - Joint Tours Party Size > 2: Duration > 1.5 hr,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3) & (df.number_of_participants > 2)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)), 0)",coef_disc_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr +util_disc_Auto_Distance_Duration_lt_1_hrs_Linear,DISCRETIONARY - Auto Distance: Duration < 1 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)) * (df.origin_to_destination_distance), 0)",coef_disc_Auto_Distance_Duration_lt_1_hrs_Linear +util_disc_Auto_Distance_Duration_gt_1_hrs_Linear,DISCRETIONARY - Auto Distance: Duration > 1 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3)), ((3-df.duration)*(df.duration<=3) + (df.duration-3)*(df.duration>3)) * (df.origin_to_destination_distance), 0)",coef_disc_Auto_Distance_Duration_gt_1_hrs_Linear +util_disc_Departure_Constant_Shift_for_every_30_minutes_before_07_30_pm_Linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 07:30 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start<9)), ((9-df.start)*(df.start<=9) + (df.start-9)*(df.start>9)), 0)",coef_disc_Departure_Constant_Shift_for_every_30_minutes_before_07_30_pm_Linear util_disc_Departure_Constant_Before_7_30_AM_,DISCRETIONARY - Departure Constant: Before 7:30 AM ,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start<10)),coef_disc_Departure_Constant_Before_7_30_AM_ util_disc_Departure_Constant_7_30_AM_to_8_00_AM,DISCRETIONARY - Departure Constant: 7:30 AM to 8:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start==10)),coef_disc_Departure_Constant_7_30_AM_to_8_00_AM util_disc_Departure_Constant_8_00_AM_to_8_30_AM,DISCRETIONARY - Departure Constant: 8:00 AM to 8:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start==11)),coef_disc_Departure_Constant_8_00_AM_to_8_30_AM @@ -283,15 +207,15 @@ util_disc_Departure_Constant_8_30_AM_to_9_00_AM,DISCRETIONARY - Departure Consta util_disc_Departure_Constant_9_00_AM_to_9_30_AM,DISCRETIONARY - Departure Constant: 9:00 AM to 9:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start==13)),coef_disc_Departure_Constant_9_00_AM_to_9_30_AM util_disc_Departure_Constant_9_30_AM_to_10_00_AM,DISCRETIONARY - Departure Constant: 9:30 AM to 10:00 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start==14)),coef_disc_Departure_Constant_9_30_AM_to_10_00_AM util_disc_Departure_Constant_10_00_AM_to_10_30_AM,DISCRETIONARY - Departure Constant: 10:00 AM to 10:30 AM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start==15)),coef_disc_Departure_Constant_10_00_AM_to_10_30_AM -util_disc_Departure_Constant_Shift_for_every_30_minutes_before_04_30_pm_Linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 04:30 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start<28)), (np.where((df.start<28), np.minimum(28-df.start,8),0) + np.where((df.start>33), np.minimum(df.start-33,6), 0)), 0)",coef_disc_Departure_Constant_Shift_for_every_30_minutes_before_04_30_pm_Linear +util_disc_Departure_Constant_Shift_for_every_30_minutes_before_04_30_pm_Linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 04:30 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start<28)), ((28-df.start)*(df.start<=28) + (df.start-28)*(df.start>28)), 0)",coef_disc_Departure_Constant_Shift_for_every_30_minutes_before_04_30_pm_Linear util_disc_Departure_Constant_Before_05_00_PM,DISCRETIONARY - Departure Constant: Before 05:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start<29)),coef_disc_Departure_Constant_Before_05_00_PM util_disc_Departure_Constant_05_00_PM_05_30_PM,DISCRETIONARY - Departure Constant: 05:00 PM - 05:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start==29)),coef_disc_Departure_Constant_05_00_PM_05_30_PM util_disc_Departure_Constant_05_30_PM_06_00_PM,DISCRETIONARY - Departure Constant: 05:30 PM - 06:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start==30)),coef_disc_Departure_Constant_05_30_PM_06_00_PM util_disc_Departure_Constant_06_00_PM_06_30_PM,DISCRETIONARY - Departure Constant: 06:00 PM - 06:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start==31)),coef_disc_Departure_Constant_06_00_PM_06_30_PM util_disc_Departure_Constant_06_30_PM_07_00_PM,DISCRETIONARY - Departure Constant: 06:30 PM - 07:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start==32)),coef_disc_Departure_Constant_06_30_PM_07_00_PM util_disc_Departure_Constant_After_07_00_PM,DISCRETIONARY - Departure Constant: After 07:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start>32)),coef_disc_Departure_Constant_After_07_00_PM -util_disc_Departure_Constant_Shift_for_every_30_minutes_after_07_30_pm_Linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes after 07:30 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start>33)), (np.where((df.start<28), np.minimum(28-df.start,8), 0) + np.where((df.start>33), np.minimum(df.start-33,6), 0)), 0)",coef_disc_Departure_Constant_Shift_for_every_30_minutes_after_07_30_pm_Linear -util_disc_Arrival_Constant_Shift_for_every_30_minutes_before_06_00_pm_Linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes before 06:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.end<31)), (np.where((df.end<31), np.minimum(31-df.end,48), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_disc_Arrival_Constant_Shift_for_every_30_minutes_before_06_00_pm_Linear +util_disc_Departure_Constant_Shift_for_every_30_minutes_after_07_30_pm_Linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes after 07:30 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start>33)), ((33-df.start)*(df.start<=33) + (df.start-33)*(df.start>33)), 0)",coef_disc_Departure_Constant_Shift_for_every_30_minutes_after_07_30_pm_Linear +util_disc_Arrival_Constant_Shift_for_every_30_minutes_before_06_00_pm_Linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes before 06:00 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.end<31)), ((31-df.end)*(df.end<=31) + (df.end-31)*(df.end>31)), 0)",coef_disc_Arrival_Constant_Shift_for_every_30_minutes_before_06_00_pm_Linear util_disc_Arrival_Constant_Before_6_30_PM,DISCRETIONARY - Arrival Constant: Before 6:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.end<32)),coef_disc_Arrival_Constant_Before_6_30_PM util_disc_Arrival_Constant_6_30_PM_to_7_00_PM,DISCRETIONARY - Arrival Constant: 6:30 PM to 7:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.end==32)),coef_disc_Arrival_Constant_6_30_PM_to_7_00_PM util_disc_Arrival_Constant_7_00_PM_to_7_30_PM,DISCRETIONARY - Arrival Constant: 7:00 PM to 7:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.end==33)),coef_disc_Arrival_Constant_7_00_PM_to_7_30_PM @@ -299,14 +223,14 @@ util_disc_Arrival_Constant_7_30_PM_to_8_00_PM,DISCRETIONARY - Arrival Constant: util_disc_Arrival_Constant_8_00_PM_to_8_30_PM,DISCRETIONARY - Arrival Constant: 8:00 PM to 8:30 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.end==35)),coef_disc_Arrival_Constant_8_00_PM_to_8_30_PM util_disc_Arrival_Constant_8_30_PM_to_9_00_PM,DISCRETIONARY - Arrival Constant: 8:30 PM to 9:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.end==36)),coef_disc_Arrival_Constant_8_30_PM_to_9_00_PM util_disc_Arrival_Constant_After_9_00_PM,DISCRETIONARY - Arrival Constant: After 9:00 PM,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.end>36)),coef_disc_Arrival_Constant_After_9_00_PM -util_disc_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.end>37)), (np.where((df.end<31), np.minimum(31-df.end,48), 0) + np.where((df.end>37), np.minimum(df.end-37,48),0)), 0)",coef_disc_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear +util_disc_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.end>37)), ((37-df.end)*(df.end<=37) + (df.end-37)*(df.end>37)), 0)",coef_disc_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear util_disc_Duration_Constant_0_hours,DISCRETIONARY - Duration Constant: 0 hours,@(df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration==0),coef_disc_Duration_Constant_0_hours util_disc_Duration_Constant_0p5_hous,DISCRETIONARY - Duration Constant: 0.5 hous,@(df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration==1),coef_disc_Duration_Constant_0p5_hous util_disc_Duration_Constant_1_hour,DISCRETIONARY - Duration Constant: 1 hour,@(df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration==2),coef_disc_Duration_Constant_1_hour util_disc_Duration_Constant_1p5_hours,DISCRETIONARY - Duration Constant: 1.5 hours,@(df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration==3),coef_disc_Duration_Constant_1p5_hours util_disc_Duration_Constant_2_hours,DISCRETIONARY - Duration Constant: 2 hours,@(df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration==4),coef_disc_Duration_Constant_2_hours util_disc_Duration_Constant_2p5_hours_or_more,DISCRETIONARY - Duration Constant: 2.5 hours or more,@(df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration>4),coef_disc_Duration_Constant_2p5_hours_or_more -util_disc_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear,DISCRETIONARY - Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration>5)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,47), 0)), 0)",coef_disc_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear +util_disc_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear,DISCRETIONARY - Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration>5)), ((5-df.duration)*(df.duration<=5) + (df.duration-5)*(df.duration>5)), 0)",coef_disc_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear util_disc_Calibration_Constant_Duration_eq_4,DISCRETIONARY -Calibration Constant - Duration = 4,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration==3)),coef_disc_Calibration_Constant_Duration_eq_4 util_disc_Calibration_Constant_Duration_eq_5,DISCRETIONARY -Calibration Constant - Duration = 5,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.duration==4)),coef_disc_Calibration_Constant_Duration_eq_5 util_disc_Calibration_Constant_Departure_eq_29,DISCRETIONARY -Calibration Constant - Departure = 29,@((df.tour_category == 'joint') & (df.tour_type == 'othdiscr') & (df.start==29)),coef_disc_Calibration_Constant_Departure_eq_29 diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_joint_coeffs.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_joint_coeffs.csv new file mode 100644 index 000000000..7b7374f78 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_joint_coeffs.csv @@ -0,0 +1,239 @@ +coefficient_name,value,constrain +coef_shop_mode_choice_logsum,0.266590021,F +coef_shop_Joint_Shopping_tours_dummy_Departure_before_10_00_AM_Linear,0,F +coef_shop_Joint_Shopping_tours_dummy_Departure_after_10_30_AM_Linear,0,F +coef_shop_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs,0,F +coef_shop_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,0,F +coef_shop_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs,0,F +coef_shop_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,0,F +coef_shop_Kids_in_Joint_Tour_Duration_gt_1p5_hr,0,F +coef_shop_Low_Income_lteq25_000_Duration_gt_1p5_hr,0,F +coef_shop_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs,0,F +coef_shop_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr,0,F +coef_shop_Distance_Duration_lt_1p5_hrs,-0.07242029,F +coef_shop_Distance_Duration_gt_1p5_hr,0.013215963,F +coef_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear,-1.097160499,F +coef_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Square_root,0,F +coef_shop_Departure_Constant_Before_09_00_AM,0,F +coef_shop_Departure_Constant_09_00_AM_09_30_AM,0,F +coef_shop_Departure_Constant_09_30_AM_10_00_AM,0,F +coef_shop_Departure_Constant_10_00_AM_10_30_AM,0,T +coef_shop_Departure_Constant_10_30_AM_11_00_AM,0,F +coef_shop_Departure_Constant_After_11_00_AM,0,F +coef_shop_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear,0,F +coef_shop_Arrival_Constant_Shift_for_every_30_minutes_before_12_00_pm_Linear,-0.178109475,F +coef_shop_Arrival_Constant_Before_12_30_PM,1.33565007,F +coef_shop_Arrival_Constant_12_30_PM_03_00_PM,1.123236175,F +coef_shop_Arrival_Constant_03_00_PM_03_30_PM,1.110617469,F +coef_shop_Arrival_Constant_03_30_PM_04_00_PM,0.588845741,F +coef_shop_Arrival_Constant_04_00_PM_04_30_PM,0.629754019,T +coef_shop_Arrival_Constant_04_30_PM_05_00_PM,0.741900363,F +coef_shop_Arrival_Constant_05_00_PM_05_30_PM,0.868235362,F +coef_shop_Arrival_Constant_05_30_PM_07_00_PM,0.689643357,F +coef_shop_Arrival_Constant_07_00_PM_09_30_PM,0,F +coef_shop_Arrival_Constant_After_09_30_PM,-0.774761875,F +coef_shop_Arrival_Constant_Shift_for_every_30_minutes_after_10_00_pm_Linear,-0.763104981,F +coef_shop_Duration_Constant_0_hrs,-1.505127063,F +coef_shop_Duration_Constant_0p5_hrs,0,F +coef_shop_Duration_Constant_1_hrs,0,T +coef_shop_Duration_Constant_1p5hrs,0.036277026,F +coef_shop_Duration_Constant_2_hrs,-0.155375923,F +coef_shop_Duration_Constant_Longer_than_2_hrs,0,F +coef_shop_Duration_Constant_Duration_gt_2p5_hrs_Linear,-0.532837138,F +coef_shop_Duration_Constant_Duration_gt_2p5_hrs_Square_root,0,F +coef_shop_Calibration_Constant_Duration_eq_1,0,F +coef_shop_Calibration_Constant_Duration_eq_2,0,F +coef_shop_Calibration_Constant_Duration_eq_3,0,F +coef_maint_mode_choice_logsum,0.203572728,F +coef_maint_Joint_Maintenance_tours_dummy_Departure_before_10_00_AM_Linear,-0.499941406,F +coef_maint_Joint_Maintenance_tours_dummy_Departure_after_10_30_AM_Linear,0.136476976,F +coef_maint_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs,0,F +coef_maint_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,0,F +coef_maint_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs,0,F +coef_maint_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,0,F +coef_maint_Kids_in_Joint_Tour_Duration_gt_1p5_hr,0,F +coef_maint_Low_Income_lteq25_000_Duration_gt_1p5_hr,0,F +coef_maint_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs,0,F +coef_maint_Medium_Income_25_001_to_60_000_Duration_gt_1p5_hr,0,T +coef_maint_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr,0,F +coef_maint_Distance_Duration_lt_1p5_hrs,-0.101359184,F +coef_maint_Distance_Duration_gt_1p5_hr,0.008486296,F +coef_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Linear,0,F +coef_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Square_Root,0,F +coef_maint_Departure_Constant_Before_08_00_AM,0,F +coef_maint_Departure_Constant_08_00_AM_08_30_AM,0,F +coef_maint_Departure_Constant_08_30_AM_09_00_AM,0,F +coef_maint_Departure_Constant_09_00_AM_09_30_AM,0,F +coef_maint_Departure_Constant_09_30_AM_10_00_AM,0,F +coef_maint_Departure_Constant_10_00_AM_10_30_AM,0,T +coef_maint_Departure_Constant_10_30_AM_11_00_AM,0,F +coef_maint_Departure_Constant_After_11_00_AM,0,F +coef_maint_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear,0,F +coef_maint_Arrival_Constant_Shift_for_every_30_minutes_before_10_00_am_Linear,0,F +coef_maint_Arrival_Constant_Before_10_30_AM,1.05775869,F +coef_maint_Arrival_Constant_10_30_AM_11_00_AM,1.412605821,T +coef_maint_Arrival_Constant_11_00_AM_11_30_AM,1.495880083,F +coef_maint_Arrival_Constant_11_30_AM_01_30_PM,0.645555572,F +coef_maint_Arrival_Constant_01_30_PM_02_30_PM,0.326964553,F +coef_maint_Arrival_Constant_02_30_PM_04_00_PM,0,F +coef_maint_Arrival_Constant_04_00_PM_04_30_PM,-0.284931133,F +coef_maint_Arrival_Constant_After_04_30_PM,-0.237568932,F +coef_maint_Arrival_Constant_Shift_for_every_30_minutes_after_5_00_pm_Linear,-0.426275674,F +coef_maint_Duration_Constant_0_hrs,0,F +coef_maint_Duration_Constant_0p5_hrs,0,T +coef_maint_Duration_Constant_Longer_than_0p5_hrs,0,F +coef_maint_Duration_Constant_Duration_gt_1_hrs_Linear,-0.141561305,F +coef_maint_Duration_Constant_Duration_gt_1_hrs_Square_Root,0,F +coef_maint_Calibration_Constant_Duration_eq_1,0,F +coef_maint_Calibration_Constant_Duration_eq_2,0,F +coef_maint_Calibration_Constant_Duration_eq_3,0,F +coef_maint_Calibration_Constant_Duration_eq_4,0,F +coef_maint_Calibration_Constant_Duration_eq_5,0,F +coef_eatout_mode_choice_logsum,0.276069583,F +coef_eatout_Distance_to_destination_Duration_lt_1_hrs,-0.200140039,F +coef_eatout_Distance_to_destination_Duration_gt_1_hrs,0.012134828,F +coef_eatout_Low_income_lt25000_Duration_lt_1_hrs,0,F +coef_eatout_Medium_25k_to_60k_Duration_lt_1_hrs,-1.311691471,F +coef_eatout_Zero_auto_HH_Duration_gt_1_hrs,0,F +coef_eatout_Kids_in_Joint_tour_Duration_lt_1_hrs,1.429062459,F +coef_eatout_Joint_Tours_Party_Size_greater_than_2_Duration_lt_1_hrs,-1.169442555,F +coef_eatout_Departure_Constant_11_00_AM_12_00_PM,0.979928772,F +coef_eatout_Departure_Constant_12_00_PM_12_30_PM,0.690690081,F +coef_eatout_Departure_Constant_12_30_PM_to_01_00_PM,0,F +coef_eatout_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear,-0.524666101,F +coef_eatout_Departure_Constant_Before_05_30_PM,-1.029657256,F +coef_eatout_Departure_Constant_05_30_PM_06_00_PM,0,F +coef_eatout_Departure_Constant_06_00_PM_06_30_PM,0,T +coef_eatout_Departure_Constant_06_30_PM_07_00_PM,0.139897449,F +coef_eatout_Departure_Constant_07_00_PM_07_30_PM,0.630991142,F +coef_eatout_Departure_Constant_After_07_30_PM,0.019003231,F +coef_eatout_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear,0.014319105,F +coef_eatout_Arrival_Constant_12_30_PM_to_01_00_PM,0,F +coef_eatout_Arrival_Constant_01_00_PM_to_01_30_PM,1.067038322,F +coef_eatout_Arrival_Constant_01_30_PM_to_02_00_PM,1.041393427,F +coef_eatout_Arrival_Constant_02_00_PM_to_02_30_PM,0,F +coef_eatout_Arrival_Constant_Shift_for_every_30_minutes_before_06_30_pm_Linear,0.363114304,F +coef_eatout_Arrival_Constant_Before_7_00_PM,1.318588562,F +coef_eatout_Arrival_Constant_7_00_PM_to_7_30_PM,0.649317909,F +coef_eatout_Arrival_Constant_7_30_PM_to_8_00_PM,0.741190644,F +coef_eatout_Arrival_Constant_8_00_PM_to_8_30_PM,0,T +coef_eatout_Arrival_Constant_8_30_PM_to_9_00_PM,-0.209479704,F +coef_eatout_Arrival_Constant_After_09_00_PM,0,F +coef_eatout_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear,-0.985149909,F +coef_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear,0,F +coef_eatout_Duration_Constant_0_hours,-2.011019161,F +coef_eatout_Duration_Constant_0p5_hous,-0.318897197,F +coef_eatout_Duration_Constant_1_hour,0,T +coef_eatout_Duration_Constant_1p5_hours,0.066432668,F +coef_eatout_Duration_Constant_2_hours_or_more,-0.179946094,F +coef_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_2p5_hrs_Linear,0,F +coef_eatout_Calibration_Constant_Duration_eq_1,0,F +coef_eatout_Calibration_Constant_Duration_eq_2,0,F +coef_eatout_Calibration_Constant_Duration_eq_3,0,F +coef_eatout_Calibration_Constant_Duration_eq_4,0,F +coef_eatout_Calibration_Constant_Departure_eq_1,0,F +coef_eatout_Calibration_Constant_Departure_eq_2,0,F +coef_eatout_Calibration_Constant_Departure_eq_3,0,F +coef_eatout_Calibration_Constant_Departure_eq_17,0,F +coef_eatout_Calibration_Constant_Departure_eq_18,0,F +coef_eatout_Calibration_Constant_Departure_eq_19,0,F +coef_eatout_Calibration_Constant_Departure_eq_20,0,F +coef_eatout_Calibration_Constant_Departure_eq_21,0,F +coef_social_mode_choice_logsum,0.158037279,F +coef_social_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear,0,F +coef_social_Zero_auto_households_Duration_lt_1p5_hrs_Linear,0,F +coef_social_Zero_auto_households_Duration_gt_1p5_hrs_Linear,0,F +coef_social_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear,0,F +coef_social_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear,0,F +coef_social_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,0,F +coef_social_Kids_in_Joint_Tour_Duration_gt_1p5_hr,0,F +coef_social_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,0,F +coef_social_Auto_Distance_Duration_lt_1_hrs_Linear,-0.086087228,F +coef_social_Auto_Distance_Duration_gt_1_hrs_Linear,0.007353328,F +coef_social_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear,-1.252776126,F +coef_social_Departure_Constant_Before_09_00_AM,0,F +coef_social_Departure_Constant_09_00_AM_to_09_30_AM,0,F +coef_social_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear,-0.343527796,F +coef_social_Departure_Constant_Before_05_30_PM,-1.65532635,F +coef_social_Departure_Constant_05_30_PM_06_00_PM,-0.479101805,F +coef_social_Departure_Constant_06_00_PM_06_30_PM,0,T +coef_social_Departure_Constant_06_30_PM_07_00_PM,0,F +coef_social_Departure_Constant_07_00_PM_07_30_PM,0.247162691,F +coef_social_Departure_Constant_After_07_30_PM,0.117283002,F +coef_social_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear,0,F +coef_social_Arrival_Constant_03_00_PM_to_03_30_PM,0,F +coef_social_Arrival_Constant_03_30_PM_to_04_00_PM,0,F +coef_social_Arrival_Constant_04_00_PM_to_04_30_PM,0,F +coef_social_Arrival_Constant_05_00_PM_to_06_00_PM,0,F +coef_social_Arrival_Constant_Shift_for_every_30_minutes_before_08_00_pm_Linear,0.338514849,F +coef_social_Arrival_Constant_Before_8_30_PM,1.739447864,F +coef_social_Arrival_Constant_8_30_PM_to_9_00_PM,1.225479315,F +coef_social_Arrival_Constant_9_00_PM_to_9_30_PM,1.333432358,F +coef_social_Arrival_Constant_9_30_PM_to10_00_PM,0,T +coef_social_Arrival_Constant_10_00_PM_to_10_30_PM,0,F +coef_social_Arrival_Constant_After_10_30_PM,-1.092590046,F +coef_social_Arrival_Constant_Shift_for_every_30_minutes_after_11_00_pm_Linear,-0.831684531,F +coef_social_Duration_Constant_Shift_for_every_30_minutes_less_than_1p5_hrs_Linear,-0.621915194,F +coef_social_Duration_Constant_Less_than_2_hours,0,F +coef_social_Duration_Constant_2_hours,0,F +coef_social_Duration_Constant_2p5_hours,0.420817953,T +coef_social_Duration_Constant_3_hours_or_more,0.586220378,F +coef_social_Duration_Constant_Shift_for_every_30_minutes_more_than_3p5_hrs_Linear,0.067970995,F +coef_social_Calibration_Constant_Duration_eq_1,0,F +coef_social_Calibration_Constant_Duration_eq_2,0,F +coef_social_Calibration_Constant_Duration_eq_3,0,F +coef_social_Calibration_Constant_Duration_eq_4,0,F +coef_social_Calibration_Constant_Duration_eq_5,0,F +coef_social_Calibration_Constant_Duration_eq_6,0,F +coef_social_Calibration_Constant_Duration_eq_7,0,F +coef_social_Calibration_Constant_Duration_eq_8,0,F +coef_social_Calibration_Constant_Duration_eq_9,0,F +coef_disc_mode_choice_logsum,0.074657942,F +coef_disc_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear,0,F +coef_disc_Zero_auto_households_Duration_lt_1p5_hrs_Linear,0,F +coef_disc_Zero_auto_households_Duration_gt_1p5_hrs_Linear,0.293318964,F +coef_disc_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear,0,F +coef_disc_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear,0,F +coef_disc_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,0,F +coef_disc_Kids_in_Joint_Tour_Duration_gt_1p5_hr,0,F +coef_disc_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,0,F +coef_disc_Auto_Distance_Duration_lt_1_hrs_Linear,-0.320551359,F +coef_disc_Auto_Distance_Duration_gt_1_hrs_Linear,0.00678766,F +coef_disc_Departure_Constant_Shift_for_every_30_minutes_before_07_30_pm_Linear,-0.524087818,F +coef_disc_Departure_Constant_Before_7_30_AM_,0,F +coef_disc_Departure_Constant_7_30_AM_to_8_00_AM,0,F +coef_disc_Departure_Constant_8_00_AM_to_8_30_AM,0.629158335,F +coef_disc_Departure_Constant_8_30_AM_to_9_00_AM,1.707834162,F +coef_disc_Departure_Constant_9_00_AM_to_9_30_AM,1.475746817,F +coef_disc_Departure_Constant_9_30_AM_to_10_00_AM,1.374276946,F +coef_disc_Departure_Constant_10_00_AM_to_10_30_AM,1.399516534,F +coef_disc_Departure_Constant_Shift_for_every_30_minutes_before_04_30_pm_Linear,-2.047979958,F +coef_disc_Departure_Constant_Before_05_00_PM,-6.561139927,F +coef_disc_Departure_Constant_05_00_PM_05_30_PM,-4.39928374,F +coef_disc_Departure_Constant_05_30_PM_06_00_PM,-2.074501744,F +coef_disc_Departure_Constant_06_00_PM_06_30_PM,0,F +coef_disc_Departure_Constant_06_30_PM_07_00_PM,1.789567201,T +coef_disc_Departure_Constant_After_07_00_PM,2.98340404,F +coef_disc_Departure_Constant_Shift_for_every_30_minutes_after_07_30_pm_Linear,1.428288831,F +coef_disc_Arrival_Constant_Shift_for_every_30_minutes_before_06_00_pm_Linear,1.984943283,F +coef_disc_Arrival_Constant_Before_6_30_PM,9.122741092,F +coef_disc_Arrival_Constant_6_30_PM_to_7_00_PM,7.491788267,F +coef_disc_Arrival_Constant_7_00_PM_to_7_30_PM,5.580592347,F +coef_disc_Arrival_Constant_7_30_PM_to_8_00_PM,3.979242005,F +coef_disc_Arrival_Constant_8_00_PM_to_8_30_PM,2.04931473,T +coef_disc_Arrival_Constant_8_30_PM_to_9_00_PM,0,F +coef_disc_Arrival_Constant_After_9_00_PM,-2.339078095,F +coef_disc_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear,-2.486129189,F +coef_disc_Duration_Constant_0_hours,-7.089453421,F +coef_disc_Duration_Constant_0p5_hous,-3.558800588,F +coef_disc_Duration_Constant_1_hour,-1.148558894,F +coef_disc_Duration_Constant_1p5_hours,0,F +coef_disc_Duration_Constant_2_hours,1.831185197,T +coef_disc_Duration_Constant_2p5_hours_or_more,3.582104009,F +coef_disc_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear,1.684187282,F +coef_disc_Calibration_Constant_Duration_eq_4,0,F +coef_disc_Calibration_Constant_Duration_eq_5,0,F +coef_disc_Calibration_Constant_Departure_eq_29,0,F +coef_disc_Calibration_Constant_Departure_eq_30,0,F +coef_disc_Calibration_Constant_Departure_eq_31,0,F +coef_disc_Calibration_Constant_Departure_eq_32,0,F diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory.csv new file mode 100644 index 000000000..0c5c1fab7 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory.csv @@ -0,0 +1,94 @@ +Label,Description,Expression,Coefficient +util_subsequent_tour_must_start_after_previous_tour_for_this_purpose_ends,Subsequent tour must start after previous tour for this purpose ends,(start < end_previous) & (tour_type_num > 1),coef_subsequent_tour_must_start_after_previous_tour_for_this_purpose_ends +util_free_flow_round_trip_auto_time_shift_effects_duration,Free-flow round trip auto time shift effects - duration,roundtrip_auto_time_to_work * duration,coef_free_flow_round_trip_auto_time_shift_effects_duration +util_shopping_tour_departure_shift_effects,Shopping tour - departure shift effects,(tour_type == 'shopping') * start,coef_shopping_tour_departure_shift_effects +util_shopping_tour_duration_shift_effects,Shopping tour - duration shift effects,(tour_type == 'shopping') * duration,coef_shopping_tour_duration_shift_effects +util_maintenance_tour_departure_shift_effects,Maintenance tour - departure shift effects,(tour_type == 'othmaint') * start,coef_maintenance_tour_departure_shift_effects +util_maintenance_tour_duration_shift_effects,Maintenance tour - departure shift effects,(tour_type == 'othmaint') * duration,coef_maintenance_tour_duration_shift_effects +util_visit_tour_departure_shift_effects_start,Visit tour - departure shift effects,(tour_type == 'social') * start,coef_visit_tour_departure_shift_effects +util_visit_tour_duration_shift_effects_duration,Visit tour - departure shift effects,(tour_type == 'social') * duration,coef_visit_tour_duration_shift_effects +util_eat_out_tour_departure_shift_effects,Eat Out tour - departure shift effects,(tour_type == 'eatout') * start,coef_eat_out_tour_departure_shift_effects +util_school_child_age_16_plus_departure_shift_effects,School child age 16+ - departure shift effects,(ptype == 6) * start,coef_school_child_age_16_plus_departure_shift_effects +util_school_child_age_16_plus_duration_shift_effects,School child age 16+ - duration shift effects,(ptype == 6) * duration,coef_school_child_age_16_plus_duration_shift_effects +util_school_child_age_under_16_departure_shift_effects,School child age under 16 - departure shift effects,(ptype == 7) * start,coef_school_child_age_under_16_departure_shift_effects +util_school_child_age_under_16_duration_shift_effects,School child age under 16 - duration shift effects,(ptype == 7) * duration,coef_school_child_age_under_16_duration_shift_effects +util_destination_in_cbd_duration_shift_effects,Destination in CBD - duration shift effects,destination_in_cbd * duration,coef_destination_in_cbd_duration_shift_effects +util_number_of_mandatory_tours_departure_shift_effects,Number of mandatory tours - departure shift effects,num_mand * start,coef_number_of_mandatory_tours_departure_shift_effects +util_number_of_joint_tours_departure_shift_effects,Number of joint tours - departure shift effects,num_person_joint_tours * start,coef_number_of_joint_tours_departure_shift_effects +util_number_of_escort_tours_departure_shift_effects,Number of escort tours - departure shift effects,num_escort_tours * start,coef_number_of_escort_tours_departure_shift_effects +util_number_of_individual_non_mandatory_tours_excluding_escort_departure_shift_effects,Number of idividual non-mandatory tours (excluding escort) - departure shift effects,num_non_escort_tours * start,coef_number_of_individual_non_mandatory_tours_excluding_escort_departure_shift_effects +util_first_of_2_plus_tours_for_same_purpose_departure_shift_effect,First of 2+ tours for same purpose - departure shift effect,((tour_type_count>1) & (tour_type_num == 1)) * start,coef_first_of_2_plus_tours_for_same_purpose_departure_shift_effect +util_subsequent_of_2_plus_tours_for_same_purpose_duration_shift_effect,subsequent of 2+ tours for same purpose - duration shift effect,(tour_type_num > 1) * duration,coef_subsequent_of_2_plus_tours_for_same_purpose_duration_shift_effect +util_maintenance_tour_depart_before_7,Maintenance tour - depart before 7,(tour_type == 'othmaint') & (start < 7),coef_maintenance_tour_depart_before_7 +util_shopping_tour_depart_before_8,Shopping tour - depart before 8,(tour_type == 'shopping') & (start < 8),coef_shopping_tour_depart_before_8 +util_shopping_tour_arrive_after_22,Shopping tour - arrive after 22,(tour_type == 'shopping') & (end > 22),coef_shopping_tour_arrive_after_22 +util_school_child_under_16_arrive_after_22,School child under 16 - arrive after 22,(ptype == 7) & (end > 22),coef_school_child_under_16_arrive_after_22 +util_university_student_arrive_after_22,University student - arrive after 22,(ptype == 3) & (end > 22),coef_university_student_arrive_after_22 +util_shopping_tour_duration_lt_2_hours,Shopping tour - duration < 2 hours,(tour_type == 'shopping') & (duration < 2),coef_shopping_tour_duration_lt_2_hours +util_discretionary_tour_duration_lt_2_hours,Discretionary tour - duration < 2 hours,(tour_type == 'othdiscr') & (duration < 2),coef_discretionary_tour_duration_lt_2_hours +util_adult_with_children_in_hh_arrive_19_21,Adult with children in HH - arrive 19 - 21,adult & (num_children > 0) & ( end > 18 ) & ( end < 22 ),coef_adult_with_children_in_hh_arrive_19_21 +#,,, +#,Mode Choice Logsum,mode_choice_logsum,#mode_choice_logsum +#,,,# +util_some_previously_scheduled_tour_ends_in_this_departure_hour,Some previously-scheduled tour ends in this departure hour,"@tt.previous_tour_ends(df.person_id, df.start)",coef_some_previously_scheduled_tour_ends_in_this_departure_hour +util_some_previously_scheduled_tour_begins_in_this_arrival_hour,Some previously-scheduled tour begins in this arrival hour,"@tt.previous_tour_begins(df.person_id, df.end)",coef_some_previously_scheduled_tour_begins_in_this_arrival_hour +util_adjacent_window_exists_before_this_departure_hour_first_tour_interaction,Adjacent window exists before this departure hour - first tour interaction,"@(df.tour_type_count>1) & (df.tour_type_num == 1) & tt.adjacent_window_before(df.person_id, df.start)",coef_adjacent_window_exists_before_this_departure_hour_first_tour_interaction +util_adjacent_window_exists_after_this_arrival_hour_first_tour_interaction,Adjacent window exists after this arrival hour - first tour interaction,"@(df.tour_type_count>1) & (df.tour_type_num == 1) & tt.adjacent_window_after(df.person_id, df.end)",coef_adjacent_window_exists_after_this_arrival_hour_first_tour_interaction +util_adjacent_window_exists_before_this_departure_hour_second_plus_tour_interaction,Adjacent window exists before this departure hour - second+ tour interaction,"@(df.tour_type_num > 1) & tt.adjacent_window_before(df.person_id, df.start)",coef_adjacent_window_exists_before_this_departure_hour_second_plus_tour_interaction +util_adjacent_window_exists_after_this_arrival_hour_second_plus_tour_interaction,Adjacent window exists after this arrival hour - second+ tour interaction,"@(df.tour_type_num > 1) & tt.adjacent_window_after(df.person_id, df.end)",coef_adjacent_window_exists_after_this_arrival_hour_second_plus_tour_interaction +util_ratio_of_individual_non_mandatory_tours_to_be_scheduled_to_number_of_unscheduled_hours,Remaining individual non-mandatory tours to be scheduled / number of unscheduled hours,"@((1.0 + df.tour_count - df.tour_num)) / tt.remaining_periods_available(df.person_id, df.start, df.end)",coef_ratio_of_individual_non_mandatory_tours_to_be_scheduled_to_number_of_unscheduled_hours +#,#,,# +util_departure_constants_early,Departure Constants -- Early (up to 5),(tour_type != 'escort') & (start < 6),coef_departure_constants_early +util_departure_constants_am_peak_1,Departure Constants -- AM peak 1 (6),(tour_type != 'escort') & (start == 6),coef_departure_constants_am_peak_1 +util_departure_constants_am_peak_2,Departure Constants -- AM peak 2 (7),(tour_type != 'escort') & (start == 7),coef_departure_constants_am_peak_2 +util_departure_constants_am_peak_3,Departure Constants -- AM peak 3 (8),(tour_type != 'escort') & (start == 8),coef_departure_constants_am_peak_3 +util_departure_constants_am_peak_4,Departure Constants -- AM peak 4 (9),(tour_type != 'escort') & (start == 9),coef_departure_constants_am_peak_4 +util_departure_constants_midday_1,Departure Constants -- Midday 1 (10 to 12),(tour_type != 'escort') & (start > 9) & (start < 13),coef_departure_constants_midday_1 +util_departure_constants_midday_2,Departure Constants -- Midday 2 (13 to 15),(tour_type != 'escort') & (start > 12) & (start < 16),coef_departure_constants_midday_2 +util_departure_constants_pm_peak,Departure Constants -- PM peak (16 to 18),(tour_type != 'escort') & (start > 15) & (start < 19),coef_departure_constants_pm_peak +util_departure_constants_evening,Departure Constants -- Evening (19 to 21),(tour_type != 'escort') & (start > 18) & (start < 22),coef_departure_constants_evening +util_departure_constants_late,Departure Constants -- Late (22 and later),(tour_type != 'escort') & (start > 21),coef_departure_constants_late +util_arrival_constants_early,Arrival Constants -- Early (up to 6),(tour_type != 'escort') & (end < 7),coef_arrival_constants_early +util_arrival_constants_am_peak,Arrival Constants -- AM peak (7 to 9),(tour_type != 'escort') & (end > 6) & (end < 10),coef_arrival_constants_am_peak +util_arrival_constants_midday_1,Arrival Constants -- Midday 1 (10 to 12),(tour_type != 'escort') & (end > 9) & (end < 13),coef_arrival_constants_midday_1 +util_arrival_constants_midday_2,Arrival Constants -- Midday 2 (13 to 14),(tour_type != 'escort') & (end > 12) & (end < 15),coef_arrival_constants_midday_2 +util_arrival_constants_pm_peak_1,Arrival Constants -- PM peak 1 (15),(tour_type != 'escort') & (end == 15),coef_arrival_constants_pm_peak_1 +util_arrival_constants_pm_peak_2,Arrival Constants -- PM peak 2 (16),(tour_type != 'escort') & (end == 16),coef_arrival_constants_pm_peak_2 +util_arrival_constants_pm_peak_3,Arrival Constants -- PM peak 3 (17),(tour_type != 'escort') & (end == 17),coef_arrival_constants_pm_peak_3 +util_arrival_constants_pm_peak_4,Arrival Constants -- PM peak 4 (18),(tour_type != 'escort') & (end == 18),coef_arrival_constants_pm_peak_4 +util_arrival_constants_evening,Arrival Constants -- Evening (19 to 21),(tour_type != 'escort') & (end > 18) & (end < 22),coef_arrival_constants_evening +util_arrival_constants_late,Arrival Constants -- Late (22 and later),(tour_type != 'escort') & (end > 21),coef_arrival_constants_late +util_duration_constants_0_to_1_hours,Duration Constants -- 0 to 1 hours,(tour_type != 'escort') & (duration < 2),coef_duration_constants_0_to_1_hours +util_duration_constants_2_to_3_hours,Duration Constants -- 2 to 3 hours,(tour_type != 'escort') & (duration > 1) & (duration < 4),coef_duration_constants_2_to_3_hours +util_duration_constants_4_to_5_hours,Duration Constants -- 4 to 5 hours,(tour_type != 'escort') & (duration > 3) & (duration < 6),coef_duration_constants_4_to_5_hours +util_duration_constants_6_to_7_hours,Duration Constants -- 6 to 7 hours,(tour_type != 'escort') & (duration > 5) & (duration < 8),coef_duration_constants_6_to_7_hours +util_duration_constants_8_to_10_hours,Duration Constants -- 8 to 10 hours,(tour_type != 'escort') & (duration > 7) & (duration < 11),coef_duration_constants_8_to_10_hours +util_duration_constants_11_to_13_hours,Duration Constants -- 11 to 13 hours,(tour_type != 'escort') & (duration > 10) & (duration < 14),coef_duration_constants_11_to_13_hours +util_duration_constants_14_to_18_hours,Duration Constants -- 14 to 18 hours,(tour_type != 'escort') & (duration > 13) & (duration < 19),coef_duration_constants_14_to_18_hours +util_escort_tour_departure_constants_early,Escort Tour Departure Constants -- Early (up to 5),(tour_type == 'escort') & (start < 6),coef_escort_tour_departure_constants_early +util_escort_tour_departure_constants_am_peak_1,Escort Tour Departure Constants -- AM peak 1 (6),(tour_type == 'escort') & (start == 6),coef_escort_tour_departure_constants_am_peak_1 +util_escort_tour_departure_constants_am_peak_2,Escort Tour Departure Constants -- AM peak 2 (7),(tour_type == 'escort') & (start == 7),coef_escort_tour_departure_constants_am_peak_2 +util_escort_tour_departure_constants_am_peak_3,Escort Tour Departure Constants -- AM peak 3 (8),(tour_type == 'escort') & (start == 8),coef_escort_tour_departure_constants_am_peak_3 +util_escort_tour_departure_constants_am_peak_4,Escort Tour Departure Constants -- AM peak 4 (9),(tour_type == 'escort') & (start == 9),coef_escort_tour_departure_constants_am_peak_4 +util_escort_tour_departure_constants_midday_1,Escort Tour Departure Constants -- Midday 1 (10 to 12),(tour_type == 'escort') & (start > 9) & (start < 13),coef_escort_tour_departure_constants_midday_1 +util_escort_tour_departure_constants_midday_2,Escort Tour Departure Constants -- Midday 2 (13 to 15),(tour_type == 'escort') & (start > 12) & (start < 16),coef_escort_tour_departure_constants_midday_2 +util_escort_tour_departure_constants_pm_peak,Escort Tour Departure Constants -- PM peak (16 to 18),(tour_type == 'escort') & (start > 15) & (start < 19),coef_escort_tour_departure_constants_pm_peak +util_escort_tour_departure_constants_evening,Escort Tour Departure Constants -- Evening (19 to 21),(tour_type == 'escort') & (start > 18) & (start < 22),coef_escort_tour_departure_constants_evening +util_escort_tour_departure_constants_late,Escort Tour Departure Constants -- Late (22 and later),(tour_type == 'escort') & (start > 21),coef_escort_tour_departure_constants_late +util_escort_tour_arrival_constants_early,Escort Tour Arrival Constants -- Early (up to 6),(tour_type == 'escort') & (end < 7),coef_escort_tour_arrival_constants_early +util_escort_tour_arrival_constants_am_peak,Escort Tour Arrival Constants -- AM peak (7 to 9),(tour_type == 'escort') & (end > 6) & (end < 10),coef_escort_tour_arrival_constants_am_peak +util_escort_tour_arrival_constants_midday_1,Escort Tour Arrival Constants -- Midday 1 (10 to 12),(tour_type == 'escort') & (end > 9) & (end < 13),coef_escort_tour_arrival_constants_midday_1 +util_escort_tour_arrival_constants_midday_2,Escort Tour Arrival Constants -- Midday 2 (13 to 14),(tour_type == 'escort') & (end > 12) & (end < 15),coef_escort_tour_arrival_constants_midday_2 +util_escort_tour_arrival_constants_pm_peak_1,Escort Tour Arrival Constants -- PM peak 1 (15),(tour_type == 'escort') & (end == 15),coef_escort_tour_arrival_constants_pm_peak_1 +util_escort_tour_arrival_constants_pm_peak_2,Escort Tour Arrival Constants -- PM peak 2 (16),(tour_type == 'escort') & (end == 16),coef_escort_tour_arrival_constants_pm_peak_2 +util_escort_tour_arrival_constants_pm_peak_3,Escort Tour Arrival Constants -- PM peak 3 (17),(tour_type == 'escort') & (end == 17),coef_escort_tour_arrival_constants_pm_peak_3 +util_escort_tour_arrival_constants_pm_peak_4,Escort Tour Arrival Constants -- PM peak 4 (18),(tour_type == 'escort') & (end == 18),coef_escort_tour_arrival_constants_pm_peak_4 +util_escort_tour_arrival_constants_evening,Escort Tour Arrival Constants -- Evening (19 to 21),(tour_type == 'escort') & (end > 18) & (end < 22),coef_escort_tour_arrival_constants_evening +util_escort_tour_arrival_constants_late,Escort Tour Arrival Constants -- Late (22 and later),(tour_type == 'escort') & (end > 21),coef_escort_tour_arrival_constants_late +util_escort_tour_duration_constants_0_to_1_hours,Escort Tour Duration Constants -- 0 to 1 hours,(tour_type == 'escort') & (duration < 2),coef_escort_tour_duration_constants_0_to_1_hours +util_escort_tour_duration_constants_2_to_3_hours,Escort Tour Duration Constants -- 2 to 3 hours,(tour_type == 'escort') & (duration > 1) & (duration < 4),coef_escort_tour_duration_constants_2_to_3_hours +util_escort_tour_duration_constants_4_to_5_hours,Escort Tour Duration Constants -- 4 to 5 hours,(tour_type == 'escort') & (duration > 3) & (duration < 6),coef_escort_tour_duration_constants_4_to_5_hours +util_escort_tour_duration_constants_6_to_7_hours,Escort Tour Duration Constants -- 6 to 7 hours,(tour_type == 'escort') & (duration > 5) & (duration < 8),coef_escort_tour_duration_constants_6_to_7_hours +util_escort_tour_duration_constants_8_to_10_hours,Escort Tour Duration Constants -- 8 to 10 hours,(tour_type == 'escort') & (duration > 7) & (duration < 11),coef_escort_tour_duration_constants_8_to_10_hours +util_escort_tour_duration_constants_11_to_13_hours,Escort Tour Duration Constants -- 11 to 13 hours,(tour_type == 'escort') & (duration > 10) & (duration < 14),coef_escort_tour_duration_constants_11_to_13_hours +util_escort_tour_duration_constants_14_to_18_hours,Escort Tour Duration Constants -- 14 to 18 hours,(tour_type == 'escort') & (duration > 13) & (duration < 19),coef_escort_tour_duration_constants_14_to_18_hours \ No newline at end of file diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_coeffs.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_coeffs.csv new file mode 100644 index 000000000..11120c659 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_coeffs.csv @@ -0,0 +1,94 @@ +coefficient_name,value,constrain +coef_subsequent_tour_must_start_after_previous_tour_for_this_purpose_ends,-999,T +coef_free_flow_round_trip_auto_time_shift_effects_duration,0.004741,F +coef_shopping_tour_departure_shift_effects,-0.06015,F +coef_shopping_tour_duration_shift_effects,-0.1208,F +coef_maintenance_tour_departure_shift_effects,-0.1489,F +coef_maintenance_tour_duration_shift_effects,-0.08372,F +coef_visit_tour_departure_shift_effects,0.09688,F +coef_visit_tour_duration_shift_effects,0.1638,F +coef_eat_out_tour_departure_shift_effects,0.07549,F +coef_school_child_age_16_plus_departure_shift_effects,0.07266,F +coef_school_child_age_16_plus_duration_shift_effects,0.2095,F +coef_school_child_age_under_16_departure_shift_effects,0.04657,F +coef_school_child_age_under_16_duration_shift_effects,0.3272,F +coef_destination_in_cbd_duration_shift_effects,0.1067,F +coef_number_of_mandatory_tours_departure_shift_effects,0.04673,F +coef_number_of_joint_tours_departure_shift_effects,0.05208,F +coef_number_of_escort_tours_departure_shift_effects,0.02013,F +coef_number_of_individual_non_mandatory_tours_excluding_escort_departure_shift_effects,0.03896,F +coef_first_of_2_plus_tours_for_same_purpose_departure_shift_effect,-0.2364,F +coef_subsequent_of_2_plus_tours_for_same_purpose_duration_shift_effect,-0.1731,F +coef_maintenance_tour_depart_before_7,-0.8826,F +coef_shopping_tour_depart_before_8,-1.037,F +coef_shopping_tour_arrive_after_22,-0.6027,F +coef_school_child_under_16_arrive_after_22,-1.18,F +coef_university_student_arrive_after_22,0.5466,F +coef_shopping_tour_duration_lt_2_hours,0.5168,F +coef_discretionary_tour_duration_lt_2_hours,-0.6974,F +coef_adult_with_children_in_hh_arrive_19_21,0.336,F +#,, +#mode_choice_logsum,, +#,, +coef_some_previously_scheduled_tour_ends_in_this_departure_hour,-0.4562,F +coef_some_previously_scheduled_tour_begins_in_this_arrival_hour,-0.3992,F +coef_adjacent_window_exists_before_this_departure_hour_first_tour_interaction,0.008442,F +coef_adjacent_window_exists_after_this_arrival_hour_first_tour_interaction,-0.0257,F +coef_adjacent_window_exists_before_this_departure_hour_second_plus_tour_interaction,-0.0593,F +coef_adjacent_window_exists_after_this_arrival_hour_second_plus_tour_interaction,-0.02734,F +coef_ratio_of_individual_non_mandatory_tours_to_be_scheduled_to_number_of_unscheduled_hours,-13.63,F +#,,F +coef_departure_constants_early,-1.740135661,F +coef_departure_constants_am_peak_1,-0.654163573,F +coef_departure_constants_am_peak_2,0.554282571,F +coef_departure_constants_am_peak_3,1.050561087,F +coef_departure_constants_am_peak_4,0.971568228,F +coef_departure_constants_midday_1,0.881991986,F +coef_departure_constants_midday_2,0.411103634,F +coef_departure_constants_pm_peak,0,T +coef_departure_constants_evening,-1.856475096,F +coef_departure_constants_late,-8.228880141,F +coef_arrival_constants_early,-0.051990748,F +coef_arrival_constants_am_peak,-1.814822602,F +coef_arrival_constants_midday_1,0.000371501,F +coef_arrival_constants_midday_2,0.532116031,F +coef_arrival_constants_pm_peak_1,0.628481567,F +coef_arrival_constants_pm_peak_2,0.650521416,F +coef_arrival_constants_pm_peak_3,0.402894406,F +coef_arrival_constants_pm_peak_4,0.154213293,F +coef_arrival_constants_evening,0,T +coef_arrival_constants_late,-0.866671315,F +coef_duration_constants_0_to_1_hours,0,T +coef_duration_constants_2_to_3_hours,0.051385565,F +coef_duration_constants_4_to_5_hours,-0.593951321,F +coef_duration_constants_6_to_7_hours,-0.951155328,F +coef_duration_constants_8_to_10_hours,-0.828108399,F +coef_duration_constants_11_to_13_hours,-0.955635554,F +coef_duration_constants_14_to_18_hours,-1.042580879,F +coef_escort_tour_departure_constants_early,-1.740135661,F +coef_escort_tour_departure_constants_am_peak_1,-1.112357753,F +coef_escort_tour_departure_constants_am_peak_2,0.698788185,F +coef_escort_tour_departure_constants_am_peak_3,1.196268813,F +coef_escort_tour_departure_constants_am_peak_4,-0.225258221,F +coef_escort_tour_departure_constants_midday_1,0.028662017,F +coef_escort_tour_departure_constants_midday_2,0,T +coef_escort_tour_departure_constants_pm_peak,-1.180140161,F +coef_escort_tour_departure_constants_evening,-3.948732811,F +coef_escort_tour_departure_constants_late,-8.228880141,F +coef_escort_tour_arrival_constants_early,0,T +coef_escort_tour_arrival_constants_am_peak,0,T +coef_escort_tour_arrival_constants_midday_1,0,T +coef_escort_tour_arrival_constants_midday_2,0,T +coef_escort_tour_arrival_constants_pm_peak_1,0,T +coef_escort_tour_arrival_constants_pm_peak_2,0,T +coef_escort_tour_arrival_constants_pm_peak_3,0,T +coef_escort_tour_arrival_constants_pm_peak_4,0,T +coef_escort_tour_arrival_constants_evening,-0.536918728,F +coef_escort_tour_arrival_constants_late,-1.008290213,F +coef_escort_tour_duration_constants_0_to_1_hours,0,T +coef_escort_tour_duration_constants_2_to_3_hours,-2.042013897,F +coef_escort_tour_duration_constants_4_to_5_hours,-2.880293896,F +coef_escort_tour_duration_constants_6_to_7_hours,-2.973533731,F +coef_escort_tour_duration_constants_8_to_10_hours,-3.020213758,F +coef_escort_tour_duration_constants_11_to_13_hours,-2.974364976,F +coef_escort_tour_duration_constants_14_to_18_hours,-2.507447146,F \ No newline at end of file diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_eatout.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_eatout.csv similarity index 63% rename from activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_eatout.csv rename to activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_eatout.csv index 4dde9e73d..b2eb08b66 100644 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_eatout.csv +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_eatout.csv @@ -1,15 +1,16 @@ Label,Description,Expression,Coefficient #EAT-OUT,#EAT-OUT,,#EAT-OUT -util_eatout_distance_to_destination_duration_less_than_1_hr,EAT-OUT - Distance to destination - Duration < 1 hr,"@np.where(((df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)) * (df.origin_to_destination_distance), 0)",coef_eatout_distance_to_destination_duration_less_than_1_hr -util_eatout_distance_to_destination_duration_greater_than_1_hr,EAT-OUT - Distance to destination - Duration > 1 hr,"@np.where(((df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)) *(df.origin_to_destination_distance), 0)",coef_eatout_distance_to_destination_duration_greater_than_1_hr -util_eatout_low_income_duration_less_than_1_hr,EAT-OUT - Low income (<25000) - Duration < 1 hr,"@np.where(((df.is_income_less25K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_low_income_duration_less_than_1_hr -util_eatout_medium_income_duration_less_than_1_hr,EAT-OUT - Medium (25k to 60k) - Duration < 1 hr,"@np.where(((df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_medium_income_duration_less_than_1_hr -util_eatout_zeroauto_HH_duration_greater_than_1_hr,EAT-OUT - Zero auto HH - Duration > 1 hrs,"@np.where(((df.auto_ownership == 0) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_zeroauto_HH_duration_greater_than_1_hr -util_eatout_university_student_departure_after_7_pm_linear,EAT-OUT - University student - Departure after 7:00 pm - Linear,"@np.where(((df.start>32) & (df.ptype == 3)), (np.where((df.start<=32), np.minimum(32-df.start,29), 0) + np.where((df.start>32), np.minimum(df.start-32,8), 0)), 0)",coef_eatout_university_student_departure_after_7_pm_linear -util_eatout_female_duration_less_than_1_hr,EAT-OUT - Female - Duration < 1 hr,"@np.where(((df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_female_duration_less_than_1_hr -util_eatout_female_duration_greater_than_1_hr,EAT-OUT - Female - Duration > 1 hr,"@np.where(((df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_female_duration_greater_than_1_hr -util_eatout_time_pressure_departure_before_6_30_pm,EAT-OUT - Time Pressure - Departure before 6:30 pm,"@np.where(((df.start<32)), (np.minimum(32-df.start,29)) * (np.log10 (30 *(tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_eatout_time_pressure_departure_before_6_30_pm -util_eatout_time_pressure_duration_less_than_1_hr,EAT-OUT - Time Pressure - Duration < 1 hrs,"@np.where(((df.duration<2)), np.minimum(2-df.duration,47) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_eatout_time_pressure_duration_less_than_1_hr +util_mode_choice_logsum,Mode choice logsum,mode_choice_logsum,coef_mode_choice_logsum +util_eatout_distance_to_destination_duration_less_than_ref,EAT-OUT - Distance to destination - Duration < Reference,"@np.where((df.duration<2), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) * (df.origin_to_destination_distance), 0)",coef_eatout_distance_to_destination_duration_less_than_ref +util_eatout_distance_to_destination_duration_greater_than_ref,EAT-OUT - Distance to destination - Duration > Reference,"@np.where((df.duration>2), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) * (df.origin_to_destination_distance), 0)",coef_eatout_distance_to_destination_duration_greater_than_ref +util_eatout_low_income_duration_less_than_ref,EAT-OUT - Low income (<25000) - Duration < Reference,"@np.where(((df.is_income_less25K) & (df.duration<2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_eatout_low_income_duration_less_than_ref +util_eatout_medium_income_duration_less_than_ref,EAT-OUT - Medium (25k to 60k) - Duration < Reference,"@np.where(((df.is_income_25K_to_60K) & (df.duration<2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_eatout_medium_income_duration_less_than_ref +util_eatout_zeroauto_HH_duration_greater_than_ref,EAT-OUT - Zero auto HH - Duration > Reference,"@np.where(((df.auto_ownership == 0) & (df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_eatout_zeroauto_HH_duration_greater_than_ref +util_eatout_university_student_departure_after_7_pm_linear,EAT-OUT - University student - Departure after 7:00 pm - Linear,"@np.where(((df.start>31) & (df.ptype == 3)), ((31-df.start)*(df.start<=31) + (df.start-31)*(df.start>31)), 0)",coef_eatout_university_student_departure_after_7_pm_linear +util_eatout_female_duration_less_than_ref,EAT-OUT - Female - Duration < Reference,"@np.where(((df.duration<2) & (df.female)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_eatout_female_duration_less_than_ref +util_eatout_female_duration_greater_than_ref,EAT-OUT - Female - Duration > Reference,"@np.where(((df.duration>2) & (df.female)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_eatout_female_duration_greater_than_ref +util_eatout_time_pressure_departure_before_6_30_pm,EAT-OUT - Time Pressure - Departure before 6:30 pm,"@np.where(((df.start<31)), ((31-df.start)*(df.start<=31) + (df.start-31)*(df.start>31)) * (np.log10 (30 *(tt.max_time_block_available(df.person_id)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_eatout_time_pressure_departure_before_6_30_pm +util_eatout_time_pressure_duration_less_than_ref,EAT-OUT - Time Pressure - Duration < Reference,"@np.where(((df.duration<2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) * (np.log10 (30 * (tt.max_time_block_available(df.person_id)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_eatout_time_pressure_duration_less_than_ref util_eatout_departure_constant_7_30_am_to_9_am,EAT-OUT - Departure Constant: 07:30 AM - 09:00 AM,@((df.start>=10) & (df.start<=12)),coef_eatout_departure_constant_7_30_am_to_9_am util_eatout_departure_constant_10_30_am_to_11_am,EAT-OUT - Departure Constant: 10:30 AM - 11:00 AM,@((df.start==16)),coef_eatout_departure_constant_10_30_am_to_11_am util_eatout_departure_constant_11_am_to_11_30_am,EAT-OUT - Departure Constant: 11:00 AM - 11:30 AM,@((df.start==17)),coef_eatout_departure_constant_11_am_to_11_30_am @@ -17,13 +18,13 @@ util_eatout_departure_constant_11_30_am_to_12_pm,EAT-OUT - Departure Constant: 1 util_eatout_departure_constant_12_pm_to_12_30_pm,EAT-OUT - Departure Constant: 12:00 PM - 12:30 PM,@((df.start==19)),coef_eatout_departure_constant_12_pm_to_12_30_pm util_eatout_departure_constant_12_30_pm_to_1_pm,EAT-OUT - Departure Constant: 12:30 PM - 01:00 PM,@((df.start==20)),coef_eatout_departure_constant_12_30_pm_to_1_pm util_eatout_departure_constant_1_pm_to_1_30_pm,EAT-OUT - Departure Constant: 01:00 PM - 01:30 PM,@((df.start==21)),coef_eatout_departure_constant_1_pm_to_1_30_pm -util_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear,EAT-OUT - Departure Constant: Shift for every 30 minutes before 05:30 pm - Linear,"@np.where(((df.start<31)), (np.where((df.start<30), np.minimum(30-df.start,27), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear +util_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear,EAT-OUT - Departure Constant: Shift for every 30 minutes before 05:30 pm - Linear,"@np.where(((df.start<30)), ((30-df.start)*(df.start<=30) + (df.start-30)*(df.start>30)), 0)",coef_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear util_eatout_departure_constant_before_6_pm,EAT-OUT - Departure Constant: Before 06:00 PM,@((df.start<31)),coef_eatout_departure_constant_before_6_pm util_eatout_departure_constant_6_pm_to_6_30_pm,EAT-OUT - Departure Constant: 06:00 PM - 06:30 PM,@((df.start==31)),coef_eatout_departure_constant_6_pm_to_6_30_pm util_eatout_departure_constant_6_30_pm_to_7_pm,EAT-OUT - Departure Constant: 06:30 PM - 07:00 PM,@((df.start==32)),coef_eatout_departure_constant_6_30_pm_to_7_pm util_eatout_departure_constant_7_pm_to_7_30_pm,EAT-OUT - Departure Constant: 07:00 PM - 07:30 PM,@((df.start==33)),coef_eatout_departure_constant_7_pm_to_7_30_pm util_eatout_departure_constant_after_7_30_pm,EAT-OUT - Departure Constant: After 07:30 PM,@((df.start>33)),coef_eatout_departure_constant_after_7_30_pm -util_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,EAT-OUT - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where(((df.start>34)), (np.where((df.start<30), np.minimum(30-df.start,27), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear +util_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,EAT-OUT - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where(((df.start>34)), ((34-df.start)*(df.start<=34) + (df.start-34)*(df.start>34)), 0)",coef_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear util_eatout_arrival_constant_9_30_am_to_11_am,EAT-OUT - Arrival Constant: 9:30 AM to 11:00 AM,@((df.end>=14) & (df.end<=16)),coef_eatout_arrival_constant_9_30_am_to_11_am util_eatout_arrival_constant_12_30_pm_to_1_pm,EAT-OUT - Arrival Constant: 12:30 PM to 01:00 PM,@((df.end==20)),coef_eatout_arrival_constant_12_30_pm_to_1_pm util_eatout_arrival_constant_1_pm_to_1_30_pm,EAT-OUT - Arrival Constant: 01:00 PM to 01:30 PM,@((df.end==21)),coef_eatout_arrival_constant_1_pm_to_1_30_pm @@ -31,21 +32,21 @@ util_eatout_arrival_constant_1_30_pm_to_2_pm,EAT-OUT - Arrival Constant: 01:30 P util_eatout_arrival_constant_2_pm_to_2_30_pm,EAT-OUT - Arrival Constant: 02:00 PM to 02:30 PM,@((df.end==23)),coef_eatout_arrival_constant_2_pm_to_2_30_pm util_eatout_arrival_constant_2_30_pm_to_3_pm,EAT-OUT - Arrival Constant: 02:30 PM to 03:00 PM,@((df.end==24)),coef_eatout_arrival_constant_2_30_pm_to_3_pm util_eatout_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes before 06:00 pm - Linear,@((df.end<31)),coef_eatout_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear -util_eatout_arrival_constant_before_6_30_pm,EAT-OUT - Arrival Constant: Before 6:30 PM,"@np.where(((df.end<32)), (np.where((df.end<31), np.minimum(31-df.end,24), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_eatout_arrival_constant_before_6_30_pm +util_eatout_arrival_constant_before_6_30_pm,EAT-OUT - Arrival Constant: Before 6:30 PM,"@np.where(((df.end<32)), ((32-df.end)*(df.end<=32) + (df.end-32)*(df.end>32)), 0)",coef_eatout_arrival_constant_before_6_30_pm util_eatout_arrival_constant_6_30_pm_to_7_pm,EAT-OUT - Arrival Constant: 6:30 PM to 7:00 PM,@((df.end==32)),coef_eatout_arrival_constant_6_30_pm_to_7_pm util_eatout_arrival_constant_7_pm_to_7_30_pm,EAT-OUT - Arrival Constant: 7:00 PM to 7:30 PM,@((df.end==33)),coef_eatout_arrival_constant_7_pm_to_7_30_pm util_eatout_arrival_constant_7_30_pm_to_8_pm,EAT-OUT - Arrival Constant: 7:30 PM to 8:00 PM,@((df.end==34)),coef_eatout_arrival_constant_7_30_pm_to_8_pm util_eatout_arrival_constant_8_pm_to_8_30_pm,EAT-OUT - Arrival Constant: 8:00 PM to 8:30 PM,@((df.end==35)),coef_eatout_arrival_constant_8_pm_to_8_30_pm util_eatout_arrival_constant_8_30_pm_to_9_pm,EAT-OUT - Arrival Constant: 8:30 PM to 9:00 PM,@((df.end==36)),coef_eatout_arrival_constant_8_30_pm_to_9_pm -util_eatout_arrival_constant_after_9_pm,EAT-OUT - Arrival Constant: After 9:00 PM,@((df.tour_category != 'joint')& (df.end>36)),coef_eatout_arrival_constant_after_9_pm -util_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.end>37)), (np.where((df.end<31), np.minimum(31-df.end,24), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear +util_eatout_arrival_constant_after_9_pm,EAT-OUT - Arrival Constant: After 9:00 PM,@((df.end>36)),coef_eatout_arrival_constant_after_9_pm +util_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.end>37)), ((37-df.end)*(df.end<=37) + (df.end-37)*(df.end>37)), 0)",coef_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear util_eatout_duration_constant_0_hour,EAT-OUT - Duration Constant: 0 hour,@((df.duration==0)),coef_eatout_duration_constant_0_hour util_eatout_duration_constant_30_minutes,EAT-OUT - Duration Constant: 0.5 hour,@((df.duration==1)),coef_eatout_duration_constant_30_minutes util_eatout_duration_constant_1_hour,EAT-OUT - Duration Constant: 1 hour,@((df.duration==2)),coef_eatout_duration_constant_1_hour util_eatout_duration_constant_1_hour_30_minutes,EAT-OUT - Duration Constant: 1.5 hours,@((df.duration==3)),coef_eatout_duration_constant_1_hour_30_minutes -util_eatout_duration_constant_2_hours,EAT-OUT - Duration Constant: 2 hours,@((df.tour_category != 'joint')& (df.duration==4)),coef_eatout_duration_constant_2_hours +util_eatout_duration_constant_2_hours,EAT-OUT - Duration Constant: 2 hours,@((df.duration==4)),coef_eatout_duration_constant_2_hours util_eatout_duration_constant_2_hour_30_minutes_or_more,EAT-OUT - Duration Constant: 2.5 hours or more,@((df.duration>4)),coef_eatout_duration_constant_2_hour_30_minutes_or_more -util_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,EAT-OUT - Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.duration>5)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,11), 0)), 0)",coef_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear +util_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,EAT-OUT - Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where((df.duration>5), ((5-df.duration)*(df.duration<=5) + (df.duration-5)*(df.duration>5)), 0)",coef_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear util_eatout_calibration_constant_duration_1,EAT-OUT - Calibration Constant - Duration = 1,@((df.duration==0)),coef_eatout_calibration_constant_duration_1 util_eatout_calibration_constant_duration_2,EAT-OUT - Calibration Constant - Duration = 2,@((df.duration==1)),coef_eatout_calibration_constant_duration_2 util_eatout_calibration_constant_duration_3,EAT-OUT - Calibration Constant - Duration = 3,@((df.duration==2)),coef_eatout_calibration_constant_duration_3 diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_eatout_coefficients.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_eatout_coefficients.csv new file mode 100644 index 000000000..e5e4530bb --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_eatout_coefficients.csv @@ -0,0 +1,60 @@ +coefficient_name,value,constrain +coef_eatout_distance_to_destination_duration_less_than_ref,-0.22213088025234518,F +coef_eatout_distance_to_destination_duration_greater_than_ref,0.006882886760254519,F +coef_eatout_low_income_duration_less_than_ref,0.0,F +coef_eatout_medium_income_duration_less_than_ref,0.0,F +coef_eatout_zeroauto_HH_duration_greater_than_ref,0.0,F +coef_eatout_university_student_departure_after_7_pm_linear,0.0,F +coef_eatout_female_duration_less_than_ref,0.0,F +coef_eatout_female_duration_greater_than_ref,0.07587262787357908,F +coef_eatout_time_pressure_departure_before_6_30_pm,0.12152468184322475,F +coef_eatout_time_pressure_duration_less_than_ref,-1.1004669059917198,F +coef_eatout_departure_constant_7_30_am_to_9_am,0.5692134031282525,F +coef_eatout_departure_constant_10_30_am_to_11_am,0.8995439384100027,F +coef_eatout_departure_constant_11_am_to_11_30_am,1.0520049600035701,F +coef_eatout_departure_constant_11_30_am_to_12_pm,1.0552687311323523,F +coef_eatout_departure_constant_12_pm_to_12_30_pm,0.0,F +coef_eatout_departure_constant_12_30_pm_to_1_pm,0.5514341640403775,F +coef_eatout_departure_constant_1_pm_to_1_30_pm,0.0,F +coef_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear,-0.7733197656863885,F +coef_eatout_departure_constant_before_6_pm,1.2101753740729,F +coef_eatout_departure_constant_6_pm_to_6_30_pm,0.0,F +coef_eatout_departure_constant_6_30_pm_to_7_pm,2.01511052873696,T +coef_eatout_departure_constant_7_pm_to_7_30_pm,2.154439497883138,F +coef_eatout_departure_constant_after_7_30_pm,2.3557017509401206,F +coef_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,0.0,F +coef_eatout_arrival_constant_9_30_am_to_11_am,0.5477594779688595,F +coef_eatout_arrival_constant_12_30_pm_to_1_pm,0.0,F +coef_eatout_arrival_constant_1_pm_to_1_30_pm,0.0,F +coef_eatout_arrival_constant_1_30_pm_to_2_pm,0.6150279185861535,F +coef_eatout_arrival_constant_2_pm_to_2_30_pm,0.0,F +coef_eatout_arrival_constant_2_30_pm_to_3_pm,0.0,F +coef_eatout_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,1.1113521693562283,F +coef_eatout_arrival_constant_before_6_30_pm,0.31077849460990015,F +coef_eatout_arrival_constant_6_30_pm_to_7_pm,1.411751007495926,F +coef_eatout_arrival_constant_7_pm_to_7_30_pm,0.580944990788283,F +coef_eatout_arrival_constant_7_30_pm_to_8_pm,0.8068518512811886,F +coef_eatout_arrival_constant_8_pm_to_8_30_pm,0.0,T +coef_eatout_arrival_constant_8_30_pm_to_9_pm,0.0,F +coef_eatout_arrival_constant_after_9_pm,-0.45642114111135573,F +coef_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,-0.5535494562837153,F +coef_eatout_duration_constant_0_hour,7.7136294531232235,F +coef_eatout_duration_constant_30_minutes,5.243585849897661,F +coef_eatout_duration_constant_1_hour,0.0,F +coef_eatout_duration_constant_1_hour_30_minutes,1.2046725893713652,T +coef_eatout_duration_constant_2_hours,1.3298595485891556,F +coef_eatout_duration_constant_2_hour_30_minutes_or_more,1.4613341980210828,F +coef_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,0.0,F +coef_eatout_calibration_constant_duration_1,0.0,F +coef_eatout_calibration_constant_duration_2,0.0,F +coef_eatout_calibration_constant_duration_3,0.0,F +coef_eatout_calibration_constant_duration_4,0.0,F +coef_eatout_calibration_constant_departure_1,0.0,F +coef_eatout_calibration_constant_departure_2,0.0,F +coef_eatout_calibration_constant_departure_3,0.0,F +coef_eatout_calibration_constant_departure_17,0.0,F +coef_eatout_calibration_constant_departure_18,0.0,F +coef_eatout_calibration_constant_departure_19,0.0,F +coef_eatout_calibration_constant_departure_20,0.0,F +coef_eatout_calibration_constant_departure_21,0.0,F +coef_mode_choice_logsum,0.2,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_escort.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_escort.csv similarity index 57% rename from activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_escort.csv rename to activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_escort.csv index b07727992..2fb7649b1 100644 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_escort.csv +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_escort.csv @@ -2,39 +2,39 @@ Label,Description,Expression,Coefficient # ESCORT,,, util_escort_mode_choice_logsum,ESCORT - Mode Choice Logsum,"@np.where(df.tour_type == 'escort', df.mode_choice_logsum, 0) ",coef_escort_mode_choice_logsum "#Note: In CTRAMP expressions, duration alternative is from 1 to 48 but in ActivitySim, it is from 0 to 47 since the duration alternative ID was calculated as (end - start). Therefore, duration in ActivitySim expression = CTRAMP duration expresssion - 1 ",,,# -util_escort_distance_to_destination_duration_less_than_30_minutes,ESCORT - Distance to destination - Duration less than 0.5 hour (depart and arrive in the same period),"@np.where(((df.duration<1)), ((df.origin_to_destination_distance) * (np.where((df.duration<=1), np.minimum(1-df.duration, 0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0))), 0)",coef_escort_distance_to_destination_duration_less_than_30_minutes -util_escort_distance_to_destination_duration_greater_than_30_minutes,ESCORT - Distance to destination - Duration greater than 0.5 hour,"@np.where(((df.duration>1)), ((df.origin_to_destination_distance) * (np.where((df.duration<=1), np.minimum(1-df.duration, 0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0))), 0)",coef_escort_distance_to_destination_duration_greater_than_30_minutes -util_escort_fulltime_worker_departure_after_8_am_linear,ESCORT - Full-time worker - Departure after 8:00 am - Linear,"@np.where(((df.ptype == 1) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)),0)",coef_escort_fulltime_worker_departure_after_8_am_linear +util_escort_distance_to_destination_duration_less_than_30_minutes,ESCORT - Distance to destination - Duration less than 0.5 hour (depart and arrive in the same period),"@np.where(((df.duration<1)), ((df.origin_to_destination_distance) * ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1))), 0)",coef_escort_distance_to_destination_duration_less_than_30_minutes +util_escort_distance_to_destination_duration_greater_than_30_minutes,ESCORT - Distance to destination - Duration greater than 0.5 hour,"@np.where(((df.duration>1)), ((df.origin_to_destination_distance) * ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1))), 0)",coef_escort_distance_to_destination_duration_greater_than_30_minutes +util_escort_fulltime_worker_departure_after_8_am_linear,ESCORT - Full-time worker - Departure after Reference - Linear,"@np.where(((df.ptype == 1) & (df.start>9)), ((9-df.start)*(df.start<=9) + (df.start-9)*(df.start>9)),0)",coef_escort_fulltime_worker_departure_after_8_am_linear "#Note: In CTRAMP expression file, the description below says departure is after 3 am but from the expression it seems that it would be 3 pm instead of 3 am",,, -util_escort_fulltime_worker_departure_after_3_am_linear,ESCORT - Full-time worker - Departure after 3:00 am - Linear,"@np.where(((df.ptype == 1) & (df.start>24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_fulltime_worker_departure_after_3_am_linear -util_escort_fulltime_worker_duration_less_than_30_minutes,ESCORT - Full-time worker - Duration < 0.5 hr,"@np.where(((df.ptype == 1) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_fulltime_worker_duration_less_than_30_minutes -util_escort_fulltime_worker_duration_greater_than_30_minutes,ESCORT - Full-time worker - Duration > 0.5 hr,"@np.where(((df.ptype == 1) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_fulltime_worker_duration_greater_than_30_minutes -util_escort_university_student_duration_less_than_30_minutes,ESCORT - University student - Duration < 0.5 hr,"@np.where(((df.ptype == 3) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_university_student_duration_less_than_30_minutes -util_escort_non_driving_age_student_duration_greater_than_30_minutes,ESCORT - Non-driving age student - Duration > 0.5 hr,"@np.where((((df.ptype == 7)|(df.ptype == 8)) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_non_driving_age_student_duration_greater_than_30_minutes -util_escort_driving_age_student_duration_less_than_30_minutes,ESCORT - Driving age student - Duration < 0.5 hr,"@np.where(((df.ptype == 6) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_driving_age_student_duration_less_than_30_minutes -util_escort_driving_age_student_duration_greater_than_30_minutes,ESCORT - Driving age student - Duration > 0.5 hr,"@np.where(((df.ptype == 6) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_driving_age_student_duration_greater_than_30_minutes +util_escort_fulltime_worker_departure_after_3_pm_linear,ESCORT - Full-time worker - Departure after 3:00 pm - Linear,"@np.where(((df.ptype == 1) & (df.start>24)), ((24-df.start)*(df.start<=24) + (df.start-24)*(df.start>24)), 0)",coef_escort_fulltime_worker_departure_after_3_pm_linear +util_escort_fulltime_worker_duration_less_than_30_minutes,ESCORT - Full-time worker - Duration < 0.5 hr,"@np.where(((df.ptype == 1) & (df.duration<1)), ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1)), 0)",coef_escort_fulltime_worker_duration_less_than_30_minutes +util_escort_fulltime_worker_duration_greater_than_30_minutes,ESCORT - Full-time worker - Duration > 0.5 hr,"@np.where(((df.ptype == 1) & (df.duration>1)), ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1)), 0)",coef_escort_fulltime_worker_duration_greater_than_30_minutes +util_escort_university_student_duration_less_than_30_minutes,ESCORT - University student - Duration < 0.5 hr,"@np.where(((df.ptype == 3) & (df.duration<1)), ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1)), 0)",coef_escort_university_student_duration_less_than_30_minutes +util_escort_non_driving_age_student_duration_greater_than_30_minutes,ESCORT - Non-driving age student - Duration > 0.5 hr,"@np.where((((df.ptype == 7)|(df.ptype == 8)) & (df.duration>1)), ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1)), 0)",coef_escort_non_driving_age_student_duration_greater_than_30_minutes +util_escort_driving_age_student_duration_less_than_30_minutes,ESCORT - Driving age student - Duration < 0.5 hr,"@np.where(((df.ptype == 6) & (df.duration<1)), ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1)), 0)",coef_escort_driving_age_student_duration_less_than_30_minutes +util_escort_driving_age_student_duration_greater_than_30_minutes,ESCORT - Driving age student - Duration > 0.5 hr,"@np.where(((df.ptype == 6) & (df.duration>1)), ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1)), 0)",coef_escort_driving_age_student_duration_greater_than_30_minutes "#Note: In CTRAMP expression file, description says the expression below is for duration > 0.5 hr but the expression says duration < 0.5 hr",,, -util_escort_pre_school_kid_duration_greater_than_30_minutes,ESCORT - Pre-school kid - Duration > 0.5 hr,"@np.where(((df.ptype == 8) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_pre_school_kid_duration_greater_than_30_minutes -util_escort_med_high_income_duration_greater_than_30_minutes,ESCORT - Med-high income (60k to 120k) - Duration > 0.5 hr,"@np.where(((df.is_income_60K_to_120K) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_med_high_income_duration_greater_than_30_minutes -util_escort_households_with_no_kids_departure_before_7_30_am,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 7:30 AM","@np.where(((df.num_children == 0) & (df.start<10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_households_with_no_kids_departure_before_7_30_am -util_escort_households_with_no_kids_departure_after_8_00_am,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.num_children == 0) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_households_with_no_kids_departure_after_8_00_am -util_escort_households_with_no_kids_departure_before_2_30_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 2:30 PM","@np.where(((df.num_children == 0) & (df.start<24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_households_with_no_kids_departure_before_2_30_pm -util_escort_households_with_no_kids_departure_after_3_00_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.num_children == 0) & (df.start>24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where ((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_households_with_no_kids_departure_after_3_00_pm -util_escort_households_with_no_kids_arrival_before_8_am,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.num_children == 0) & (df.end<11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_households_with_no_kids_arrival_before_8_am -util_escort_households_with_no_kids_arrival_after_8_30_am,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.num_children == 0) & (df.end>11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_households_with_no_kids_arrival_after_8_30_am -util_escort_households_with_no_kids_arrival_before_3_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.num_children == 0) & (df.end<25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_households_with_no_kids_arrival_before_3_pm -util_escort_households_with_no_kids_arrival_after_3_30_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.num_children == 0) & (df.end>25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_households_with_no_kids_arrival_after_3_30_pm -util_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.has_pre_school_child_with_mandatory > 0) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am -util_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.has_pre_school_child_with_mandatory > 0) & (df.start>24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm -util_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am,"ESCORT -Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.has_pre_school_child_with_mandatory > 0) & (df.end<11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am -util_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.has_pre_school_child_with_mandatory > 0) & (df.end<25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.has_driving_age_child_with_mandatory > 0) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where ((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.has_driving_age_child_with_mandatory > 0) & (df.end>11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.has_driving_age_child_with_mandatory > 0) & (df.end>25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm -util_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes,ESCORT - Number of autos greater than number of adults - Duration > 0.5 hr,"@np.where(((df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes -util_escort_number_of_individual_tours_duration_greater_than_30_minutes,ESCORT -Number of Individual Tours (excluding escorting) - Duration > 0.5 hr,"@np.where(((df.num_non_escort_tours > 0) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)) * (df.num_non_escort_tours), 0)",coef_escort_number_of_individual_tours_duration_greater_than_30_minutes -util_escort_number_of_joint_tours_duration_greater_than_30_minutes,ESCORT - Number of joint tours - Duration > 0.5 hr,"@np.where(((df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)) *(df.num_joint_tours), 0)",coef_escort_number_of_joint_tours_duration_greater_than_30_minutes -util_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear,ESCORT - Departure Constant: Shift for every 30 minutes before 06:30 am - Linear,"@np.where(((df.start<8)), (np.where((df.start<8), np.minimum(8-df.start,4), 0) + np.where((df.start>13), np.minimum(df.start-13,28), 0)), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear +util_escort_pre_school_kid_duration_greater_than_30_minutes,ESCORT - Pre-school kid - Duration > 0.5 hr,"@np.where(((df.ptype == 8) & (df.duration<1)), ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1)), 0)",coef_escort_pre_school_kid_duration_greater_than_30_minutes +util_escort_med_high_income_duration_greater_than_30_minutes,ESCORT - Med-high income (60k to 120k) - Duration > 0.5 hr,"@np.where(((df.is_income_60K_to_120K) & (df.duration>1)), ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1)), 0)",coef_escort_med_high_income_duration_greater_than_30_minutes +util_escort_households_with_no_kids_departure_before_7_30_am,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 7:30 AM","@np.where(((df.num_children == 0) & (df.start<10)), ((10-df.start)*(df.start<=10) + (df.start-10)*(df.start>10)), 0)",coef_escort_households_with_no_kids_departure_before_7_30_am +util_escort_households_with_no_kids_departure_after_8_00_am,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.num_children == 0) & (df.start>10)), ((10-df.start)*(df.start<=10) + (df.start-10)*(df.start>10)), 0)",coef_escort_households_with_no_kids_departure_after_8_00_am +util_escort_households_with_no_kids_departure_before_2_30_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 2:30 PM","@np.where(((df.num_children == 0) & (df.start<24)), ((24-df.start)*(df.start<=24) + (df.start-24)*(df.start>24)), 0)",coef_escort_households_with_no_kids_departure_before_2_30_pm +util_escort_households_with_no_kids_departure_after_3_00_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.num_children == 0) & (df.start>24)), ((24-df.start)*(df.start<=24) + (df.start-24)*(df.start>24)), 0)",coef_escort_households_with_no_kids_departure_after_3_00_pm +util_escort_households_with_no_kids_arrival_before_8_am,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.num_children == 0) & (df.end<11)), ((11-df.end)*(df.end<=11) + (df.end-11)*(df.end>11)), 0)",coef_escort_households_with_no_kids_arrival_before_8_am +util_escort_households_with_no_kids_arrival_after_8_30_am,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.num_children == 0) & (df.end>11)), ((11-df.end)*(df.end<=11) + (df.end-11)*(df.end>11)), 0)",coef_escort_households_with_no_kids_arrival_after_8_30_am +util_escort_households_with_no_kids_arrival_before_3_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.num_children == 0) & (df.end<25)), ((25-df.end)*(df.end<=25) + (df.end-25)*(df.end>25)), 0)",coef_escort_households_with_no_kids_arrival_before_3_pm +util_escort_households_with_no_kids_arrival_after_3_30_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.num_children == 0) & (df.end>25)), ((25-df.end)*(df.end<=25) + (df.end-25)*(df.end>25)), 0)",coef_escort_households_with_no_kids_arrival_after_3_30_pm +util_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.has_pre_school_child_with_mandatory > 0) & (df.start>10)), ((10-df.start)*(df.start<=10) + (df.start-10)*(df.start>10)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am +util_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.has_pre_school_child_with_mandatory > 0) & (df.start>24)), ((24-df.start)*(df.start<=24) + (df.start-24)*(df.start>24)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm +util_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am,"ESCORT -Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.has_pre_school_child_with_mandatory > 0) & (df.end<11)), ((11-df.end)*(df.end<=11) + (df.end-11)*(df.end>11)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am +util_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.has_pre_school_child_with_mandatory > 0) & (df.end<25)), ((25-df.end)*(df.end<=25) + (df.end-25)*(df.end>25)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm +util_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.has_driving_age_child_with_mandatory > 0) & (df.start>10)), ((10-df.start)*(df.start<=10) + (df.start-10)*(df.start>10)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am +util_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.has_driving_age_child_with_mandatory > 0) & (df.end>11)), ((11-df.end)*(df.end<=11) + (df.end-11)*(df.end>11)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am +util_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.has_driving_age_child_with_mandatory > 0) & (df.end>25)), ((25-df.end)*(df.end<=25) + (df.end-25)*(df.end>25)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm +util_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes,ESCORT - Number of autos greater than number of adults - Duration > 0.5 hr,"@np.where(((df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>1)), ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1)), 0)",coef_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes +util_escort_number_of_individual_tours_duration_greater_than_30_minutes,ESCORT -Number of Individual Tours (excluding escorting) - Duration > 0.5 hr,"@np.where(((df.num_non_escort_tours > 0) & (df.duration>1)), ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1)) * (df.num_non_escort_tours), 0)",coef_escort_number_of_individual_tours_duration_greater_than_30_minutes +util_escort_number_of_joint_tours_duration_greater_than_30_minutes,ESCORT - Number of joint tours - Duration > 0.5 hr,"@np.where(((df.duration>1)), ((1-df.duration)*(df.duration<=1) + (df.duration-1)*(df.duration>1)) *(df.num_joint_tours), 0)",coef_escort_number_of_joint_tours_duration_greater_than_30_minutes +util_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear,ESCORT - Departure Constant: Shift for every 30 minutes before 06:30 am - Linear,"@np.where(((df.start<8)), ((8-df.start)*(df.start<=8) + (df.start-8)*(df.start>8)), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear util_escort_departure_constant_before_7_am,ESCORT - Departure Constant: Before 07:00 AM,@((df.start<9)),coef_escort_departure_constant_before_7_am util_escort_departure_constant_7_am_to_7_30_am,ESCORT - Departure Constant: 07:00 AM - 07:30 AM,@((df.start==9)),coef_escort_departure_constant_7_am_to_7_30_am util_escort_departure_constant_7_30_am_to_8_am,ESCORT - Departure Constant: 07:30 AM - 08:00 AM,@((df.start==10)),coef_escort_departure_constant_7_30_am_to_8_am @@ -46,9 +46,9 @@ util_escort_departure_constant_2_pm_to_2_30_pm,ESCORT - Departure Constant: 02:0 util_escort_departure_constant_2_30_pm_to_3_pm,ESCORT - Departure Constant: 02:30 PM - 03:00 PM,@((df.start==24)),coef_escort_departure_constant_2_30_pm_to_3_pm util_escort_departure_constant_3_pm_to_3_30_pm,ESCORT - Departure Constant: 03:00 PM - 03:30 PM,@((df.start==25)),coef_escort_departure_constant_3_pm_to_3_30_pm util_escort_departure_constant_after_3_30_pm,ESCORT - Departure Constant: After 03:30 PM,@((df.start>25)),coef_escort_departure_constant_after_3_30_pm -util_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear,ESCORT - Departure Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.start>13)), (np.where((df.start<8), np.minimum(8-df.start,4), 0) + (np.where((df.start>13), np.minimum(df.start-13,28), 0))), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear -util_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear,ESCORT - Departure Constant: Shift for every 30 minutes after 4:00 pm - Linear,"@np.where(((df.start>26)), (np.where((df.start<0), np.minimum(0-df.start,48), 0) + np.where((df.start>26), np.minimum(df.start-26,15),0)), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear -util_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear,ESCORT - Arrival Constant: Shift for every 30 minutes before 6:30 am - Linear,"@np.where(((df.end<8)), (np.where((df.end<8), np.minimum(8-df.end,2), 0) + np.where((df.end>13), np.minimum(df.end-13,30), 0)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear +util_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear,ESCORT - Departure Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.start>13)), ((13-df.start)*(df.start<=13) + (df.start-13)*(df.start>13)), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear +util_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear,ESCORT - Departure Constant: Shift for every 30 minutes after 4:00 pm - Linear,"@np.where(((df.start>26)), ((26-df.start)*(df.start<=26) + (df.start-26)*(df.start>26)), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear +util_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear,ESCORT - Arrival Constant: Shift for every 30 minutes before 6:30 am - Linear,"@np.where(((df.end<8)), ((8-df.end)*(df.end<=8) + (df.end-8)*(df.end>8)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear util_escort_arrival_constant_before_7_am,ESCORT - Arrival Constant: Before 07:00 AM,@((df.end<9)),coef_escort_arrival_constant_before_7_am util_escort_arrival_constant_7_am_to_7_30_am,ESCORT - Arrival Constant: 07:00 AM - 07:30 AM,@((df.end==9)),coef_escort_arrival_constant_7_am_to_7_30_am util_escort_arrival_constant_7_30_am_to_8_am,ESCORT - Arrival Constant: 07:30 AM - 08:00 AM,@((df.end==10)),coef_escort_arrival_constant_7_30_am_to_8_am @@ -60,8 +60,8 @@ util_escort_arrival_constant_3_pm_to_3_30_pm,ESCORT - Arrival Constant: 03:00 PM util_escort_arrival_constant_3_30_pm_to_4_pm,ESCORT - Arrival Constant: 03:30 PM - 04:00 PM,@((df.end==26)),coef_escort_arrival_constant_3_30_pm_to_4_pm util_escort_arrival_constant_4_pm_to_4_30_pm,ESCORT - Arrival Constant: 04:00 PM - 04:30 PM,@((df.end==27)),coef_escort_arrival_constant_4_pm_to_4_30_pm util_escort_arrival_constant_after_4_30_pm,ESCORT - Arrival Constant: After 04:30 PM,@((df.end>27)),coef_escort_arrival_constant_after_4_30_pm -util_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.end>13)), (np.where((df.end<8), np.minimum(8-df.end,2), 0) + np.where((df.end>13), np.minimum(df.end-13,30), 0)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear -util_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.end>28)), (np.where((df.end<0), np.minimum(0-df.end,48), 0) + np.where((df.start>28), np.minimum(df.end-28,15), 0)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear +util_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.end>13)), ((13-df.end)*(df.end<=13) + (df.end-13)*(df.end>13)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear +util_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.end>28)), ((28-df.end)*(df.end<=28) + (df.end-28)*(df.end>28)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear util_escort_duration_constant_0_hour,ESCORT - Duration Constant: 0 hr,@((df.duration==0)),coef_escort_duration_constant_0_hour util_escort_duration_constant_30_minutes,ESCORT - Duration Constant: 0.5 hr,@((df.duration==1)),coef_escort_duration_constant_30_minutes util_escort_duration_constant_1_hour,ESCORT - Duration Constant: 1 hr,@((df.duration==2)),coef_escort_duration_constant_1_hour diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_escort_coefficients.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_escort_coefficients.csv new file mode 100644 index 000000000..e711b2dba --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_escort_coefficients.csv @@ -0,0 +1,72 @@ +coefficient_name,value,constrain +coef_escort_mode_choice_logsum,0.2,F +coef_escort_distance_to_destination_duration_less_than_30_minutes,-0.4733878369607008,F +coef_escort_distance_to_destination_duration_greater_than_30_minutes,0.008568718107435931,F +coef_escort_fulltime_worker_departure_after_8_am_linear,0.0,F +coef_escort_fulltime_worker_departure_after_3_pm_linear,0.10265282779895883,F +coef_escort_fulltime_worker_duration_less_than_30_minutes,0.48717921412555765,F +coef_escort_fulltime_worker_duration_greater_than_30_minutes,0.06360020624220894,F +coef_escort_university_student_duration_less_than_30_minutes,0.0,F +coef_escort_non_driving_age_student_duration_greater_than_30_minutes,0.13619138148103171,F +coef_escort_driving_age_student_duration_less_than_30_minutes,0.0,F +coef_escort_driving_age_student_duration_greater_than_30_minutes,0.2898061598287889,F +coef_escort_pre_school_kid_duration_greater_than_30_minutes,0.0,F +coef_escort_med_high_income_duration_greater_than_30_minutes,0.0,F +coef_escort_households_with_no_kids_departure_before_7_30_am,0.0,F +coef_escort_households_with_no_kids_departure_after_8_00_am,0.0,F +coef_escort_households_with_no_kids_departure_before_2_30_pm,0.0,F +coef_escort_households_with_no_kids_departure_after_3_00_pm,0.0,F +coef_escort_households_with_no_kids_arrival_before_8_am,0.0,F +coef_escort_households_with_no_kids_arrival_after_8_30_am,0.0,F +coef_escort_households_with_no_kids_arrival_before_3_pm,0.0,F +coef_escort_households_with_no_kids_arrival_after_3_30_pm,0.0,F +coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am,0.2193957525105046,F +coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm,-0.33725705669741124,F +coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am,-1.843839469217804,F +coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm,0.2844617723897163,F +coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am,0.0,F +coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am,0.0,F +coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm,0.0,F +coef_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes,0.0,F +coef_escort_number_of_individual_tours_duration_greater_than_30_minutes,-0.0620079827984566,F +coef_escort_number_of_joint_tours_duration_greater_than_30_minutes,0.0,F +coef_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear,-1.236018962947682,F +coef_escort_departure_constant_before_7_am,0.7319683480497287,F +coef_escort_departure_constant_7_am_to_7_30_am,0.0,F +coef_escort_departure_constant_7_30_am_to_8_am,4.122740011813239,T +coef_escort_departure_constant_8_am_to_8_30_am,4.835810362294344,F +coef_escort_departure_constant_8_30_am_to_9_am,5.122388952675412,F +coef_escort_departure_constant_after_9_am,4.283724261944397,F +coef_escort_departure_constant_1_30_pm_to_2_pm,0.0,F +coef_escort_departure_constant_2_pm_to_2_30_pm,0.7940143785524454,F +coef_escort_departure_constant_2_30_pm_to_3_pm,1.0810066025980387,F +coef_escort_departure_constant_3_pm_to_3_30_pm,1.326721246058783,F +coef_escort_departure_constant_after_3_30_pm,1.1856245248532122,F +coef_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear,0.19604399657492097,F +coef_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear,0.0,F +coef_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear,0.0,F +coef_escort_arrival_constant_before_7_am,4.009035240130145,F +coef_escort_arrival_constant_7_am_to_7_30_am,4.18385718813814,F +coef_escort_arrival_constant_7_30_am_to_8_am,2.9375790166530416,F +coef_escort_arrival_constant_8_am_to_8_30_am,0.0,T +coef_escort_arrival_constant_8_30_am_to_9_am,0.0,F +coef_escort_arrival_constant_after_9_am,-0.8516924916440327,F +coef_escort_arrival_constant_2_30_pm_to_3_pm,0.8821519927765968,F +coef_escort_arrival_constant_3_pm_to_3_30_pm,1.3755379509692238,F +coef_escort_arrival_constant_3_30_pm_to_4_pm,1.5074800730702913,F +coef_escort_arrival_constant_4_pm_to_4_30_pm,1.6943356568396335,F +coef_escort_arrival_constant_after_4_30_pm,1.2683991826495213,F +coef_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear,-0.2792532861601614,F +coef_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,-0.17999830126346059,F +coef_escort_duration_constant_0_hour,-0.2939194972058852,F +coef_escort_duration_constant_30_minutes,0.0,T +coef_escort_duration_constant_1_hour,0.0,F +coef_escort_duration_constant_1_hour_30_minutes,-0.717021512011088,F +coef_escort_duration_constant_2_hours,-1.1701511666645092,F +coef_escort_duration_constant_longer_than_2_hours,-1.1702599996232288,F +coef_escort_calibration_constant_duration_1,0.0,F +coef_escort_calibration_constant_duration_2,0.0,F +coef_escort_calibration_constant_departure_9,0.0,F +coef_escort_calibration_constant_departure_10,0.0,F +coef_escort_calibration_constant_departure_23,0.0,F +coef_escort_calibration_constant_departure_24,0.0,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othdiscr.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othdiscr.csv similarity index 53% rename from activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othdiscr.csv rename to activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othdiscr.csv index 12816d338..71681f7b5 100644 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othdiscr.csv +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othdiscr.csv @@ -1,20 +1,20 @@ Label,Description,Expression,Coefficient #DISCRETIONARY,#DISCRETIONARY,,#DISCRETIONARY -util_discretionary_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Person< 18 years old: Duration < 1.5 hrs - Linear,"@np.where(((df.duration<3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear -util_discretionary_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Person< 18 years old: Duration > 1.5 hrs - Linear,"@np.where(((df.duration>3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear -util_discretionary_non_working_senior_retiree_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Non-working senior/ retiree: Duration < 1.5 hrs - Linear,"@np.where(((df.duration<3) & (df.ptype == 5)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_non_working_senior_retiree_duration_less_than_1_hr_30_minutes_linear -util_discretionary_retiree_non_working_senior_only_HH_duration_1_hr_30_minutes_linear,DISCRETIONARY - Retiree/ Non-working senior only HH: Duration < 1.5 hrs - Linear,"@np.where(((df.retired_adults_only_hh) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_retiree_non_working_senior_only_HH_duration_1_hr_30_minutes_linear -util_discretionary_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Zero auto households: Duration < 1.5 hrs - Linear,"@np.where(((df.auto_ownership == 0) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_zero_auto_households_duration_less_than_1_hr_30_minutes_linear -util_discretionary_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Zero auto households: Duration > 1.5 hrs - Linear,"@np.where(((df.auto_ownership == 0) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear -util_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Number of auto more that number of adults: Duration < 1.5 hrs - Linear,"@np.where(((df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)),0)",coef_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear -util_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Number of auto more that number of adults: Duration > 1.5 hrs - Linear,"@np.where(((df.auto_ownership > 0) &(df.tour_type == 'othdiscr')&(df.auto_ownership > df.num_adults) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear -"# In CTRAMP, although the description below says duration is less than 1 hr, expression is for less than 1.5 hr",,, -util_discretionary_auto_distance_duration_less_than_1_hr_linear,DISCRETIONARY - Auto Distance: Duration < 1 hr - Linear,"@np.where(((df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_discretionary_auto_distance_duration_less_than_1_hr_linear -util_discretionary_auto_distance_duration_greater_than_1_hr_linear,DISCRETIONARY - Auto Distance: Duration > 1 hr - Linear,"@np.where(((df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_discretionary_auto_distance_duration_greater_than_1_hr_linear -util_discretionary_time_pressure_duration_less_than_1_hr,DISCRETIONARY - Time Pressure - Duration < 1 hr,"@np.where(((df.duration<3)), np.minimum(3-df.duration,47), 0) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_discretionary_time_pressure_duration_less_than_1_hr -util_discretionary_time_pressure_duration_greater_than_1_hr,DISCRETIONARY - Time Pressure - Duration > 1 hr,"@np.where(((df.duration>3)), np.minimum(df.duration-3,47) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_discretionary_time_pressure_duration_greater_than_1_hr -util_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,DISCRETIONARY - Number of additional individual social and dicretionary tours - Duration < 1 hr,"@np.where(((df.tour_category != 'joint')&(df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0))*(df.num_add_soc_discr_tours),0)",coef_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr -util_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 07:30 pm - Linear,"@np.where(((df.start<9)), (np.where((df.start<9), np.minimum(9-df.start,48), 0) + np.where((df.start>48), np.minimum(df.start-48,48),0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear +util_mode_choice_logsum,Mode choice logsum,mode_choice_logsum,coef_mode_choice_logsum +util_discretionary_person_less_than_18_years_old_duration_less_than_reference_linear,DISCRETIONARY - Person< 18 years old: Duration < Reference - Linear,"@np.where(((df.duration<4) & (df.age<18)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_discretionary_person_less_than_18_years_old_duration_less_than_reference_linear +util_discretionary_person_less_than_18_years_old_duration_greater_than_reference_linear,DISCRETIONARY - Person< 18 years old: Duration > Reference - Linear,"@np.where(((df.duration>4) & (df.age<18)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_discretionary_person_less_than_18_years_old_duration_greater_than_reference_linear +util_discretionary_non_working_senior_retiree_duration_less_than_reference_linear,DISCRETIONARY - Non-working senior/ retiree: Duration < Reference - Linear,"@np.where(((df.duration<4) & (df.ptype == 5)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_discretionary_non_working_senior_retiree_duration_less_than_reference_linear +util_discretionary_retiree_non_working_senior_only_HH_duration_reference_linear,DISCRETIONARY - Retiree/ Non-working senior only HH: Duration < Reference - Linear,"@np.where(((df.retired_adults_only_hh) & (df.duration<4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_discretionary_retiree_non_working_senior_only_HH_duration_reference_linear +util_discretionary_zero_auto_households_duration_less_than_reference_linear,DISCRETIONARY - Zero auto households: Duration < Reference - Linear,"@np.where(((df.auto_ownership == 0) & (df.duration<4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_discretionary_zero_auto_households_duration_less_than_reference_linear +util_discretionary_zero_auto_households_duration_greater_than_reference_linear,DISCRETIONARY - Zero auto households: Duration > Reference - Linear,"@np.where(((df.auto_ownership == 0) & (df.duration>4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_discretionary_zero_auto_households_duration_greater_than_reference_linear +util_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_reference_linear,DISCRETIONARY - Number of auto more that number of adults: Duration < Reference - Linear,"@np.where(((df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration<4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)),0)",coef_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_reference_linear +util_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_reference_linear,DISCRETIONARY - Number of auto more that number of adults: Duration > Reference - Linear,"@np.where(((df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)), 0)",coef_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_reference_linear +util_discretionary_auto_distance_duration_less_than_reference_linear,DISCRETIONARY - Auto Distance: Duration < Reference,"@np.where(((df.duration<4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)) * (df.origin_to_destination_distance), 0)",coef_discretionary_auto_distance_duration_less_than_reference_linear +util_discretionary_auto_distance_duration_greater_than_reference_linear,DISCRETIONARY - Auto Distance: Duration > Reference,"@np.where(((df.duration>4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)) * (df.origin_to_destination_distance), 0)",coef_discretionary_auto_distance_duration_greater_than_reference_linear +util_discretionary_time_pressure_duration_less_reference,DISCRETIONARY - Time Pressure - Duration < Reference,"@np.where(((df.duration<4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)) * (np.log10 (30 * (tt.max_time_block_available(df.person_id)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_discretionary_time_pressure_duration_less_reference +util_discretionary_time_pressure_duration_greater_reference,DISCRETIONARY - Time Pressure - Duration > Reference,"@np.where(((df.duration>4)), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4)) * (np.log10 (30 * (tt.max_time_block_available(df.person_id)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_discretionary_time_pressure_duration_greater_reference +util_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_reference,DISCRETIONARY - Number of additional individual social and dicretionary tours - Duration < Reference,"@np.where((df.duration<4), ((4-df.duration)*(df.duration<=4) + (df.duration-4)*(df.duration>4))*(df.num_add_soc_discr_tours),0)",coef_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_reference +util_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 07:30 pm - Linear,"@np.where(((df.start<9)), ((9-df.start)*(df.start<=9) + (df.start-9)*(df.start>9)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear util_discretionary_departure_constant_before_7_30_am,DISCRETIONARY - Departure Constant: Before 7:30 AM ,@((df.start<10)),coef_discretionary_departure_constant_before_7_30_am util_discretionary_departure_constant_7_30_am_to_8_am,DISCRETIONARY - Departure Constant: 7:30 AM to 8:00 AM,@((df.start==10)),coef_discretionary_departure_constant_7_30_am_to_8_am util_discretionary_departure_constant_8_am_to_8_30_am,DISCRETIONARY - Departure Constant: 8:00 AM to 8:30 AM,@((df.start==11)),coef_discretionary_departure_constant_8_am_to_8_30_am @@ -22,15 +22,15 @@ util_discretionary_departure_constant_8_30_am_to_9_am,DISCRETIONARY - Departure util_discretionary_departure_constant_9_am_to_9_30_am,DISCRETIONARY - Departure Constant: 9:00 AM to 9:30 AM,@((df.start==13)),coef_discretionary_departure_constant_9_am_to_9_30_am util_discretionary_departure_constant_9_30_am_to_10_am,DISCRETIONARY - Departure Constant: 9:30 AM to 10:00 AM,@((df.start==14)),coef_discretionary_departure_constant_9_30_am_to_10_am util_discretionary_departure_constant_10_am_to_10_30_am,DISCRETIONARY - Departure Constant: 10:00 AM to 10:30 AM,@((df.start==15)),coef_discretionary_departure_constant_10_am_to_10_30_am -util_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 04:30 pm - Linear,"@np.where(((df.start<28)), (np.where((df.start<28), np.minimum(28-df.start,8),0) + np.where((df.start>33), np.minimum(df.start-33,6), 0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear +util_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 04:30 pm - Linear,"@np.where(((df.start<28)), ((28-df.start)*(df.start<=28) + (df.start-28)*(df.start>28)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear util_discretionary_departure_constant_before_5_pm,DISCRETIONARY - Departure Constant: Before 05:00 PM,@((df.start<29)),coef_discretionary_departure_constant_before_5_pm util_discretionary_departure_constant_5_pm_to_5_30_pm,DISCRETIONARY - Departure Constant: 05:00 PM - 05:30 PM,@((df.start==29)),coef_discretionary_departure_constant_5_pm_to_5_30_pm util_discretionary_departure_constant_5_30_pm_to_6_pm,DISCRETIONARY - Departure Constant: 05:30 PM - 06:00 PM,@((df.start==30)),coef_discretionary_departure_constant_5_30_pm_to_6_pm util_discretionary_departure_constant_6_pm_to_6_30_pm,DISCRETIONARY - Departure Constant: 06:00 PM - 06:30 PM,@((df.start==31)),coef_discretionary_departure_constant_6_pm_to_6_30_pm util_discretionary_departure_constant_6_30_pm_to_7_pm,DISCRETIONARY - Departure Constant: 06:30 PM - 07:00 PM,@((df.start==32)),coef_discretionary_departure_constant_6_30_pm_to_7_pm util_discretionary_departure_constant_after_7_pm,DISCRETIONARY - Departure Constant: After 07:00 PM,@((df.start>32)),coef_discretionary_departure_constant_after_7_pm -util_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes after 07:30 pm - Linear,"@np.where(((df.start>33)), (np.where((df.start<28), np.minimum(28-df.start,8), 0) + np.where((df.start>33), np.minimum(df.start-33,6), 0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear -util_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes before 06:00 pm - Linear,"@np.where(((df.end<31)), (np.where((df.end<31), np.minimum(31-df.end,48), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear +util_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes after 07:30 pm - Linear,"@np.where(((df.start>33)), ((33-df.start)*(df.start<=33) + (df.start-33)*(df.start>33)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear +util_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes before 06:00 pm - Linear,"@np.where(((df.end<31)), ((31-df.end)*(df.end<=31) + (df.end-31)*(df.end>31)), 0)",coef_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear util_discretionary_arrival_constant_before_6_30_pm,DISCRETIONARY - Arrival Constant: Before 6:30 PM,@((df.end<32)),coef_discretionary_arrival_constant_before_6_30_pm util_discretionary_arrival_constant_6_30_pm_to_7_pm,DISCRETIONARY - Arrival Constant: 6:30 PM to 7:00 PM,@((df.end==32)),coef_discretionary_arrival_constant_6_30_pm_to_7_pm util_discretionary_arrival_constant_7_pm_to_7_30_pm,DISCRETIONARY - Arrival Constant: 7:00 PM to 7:30 PM,@((df.end==33)),coef_discretionary_arrival_constant_7_pm_to_7_30_pm @@ -38,7 +38,7 @@ util_discretionary_arrival_constant_7_30_pm_to_8_pm,DISCRETIONARY - Arrival Cons util_discretionary_arrival_constant_8_pm_to_8_30_pm,DISCRETIONARY - Arrival Constant: 8:00 PM to 8:30 PM,@((df.end==35)),coef_discretionary_arrival_constant_8_pm_to_8_30_pm util_discretionary_arrival_constant_8_30_pm_to_9_pm,DISCRETIONARY - Arrival Constant: 8:30 PM to 9:00 PM,@((df.end==36)),coef_discretionary_arrival_constant_8_30_pm_to_9_pm util_discretionary_arrival_constant_after_9_pm,DISCRETIONARY - Arrival Constant: After 9:00 PM,@((df.end>36)),coef_discretionary_arrival_constant_after_9_pm -util_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.end>37)), (np.where((df.end<31), np.minimum(31-df.end,48), 0) + np.where((df.end>37), np.minimum(df.end-37,48),0)), 0)",coef_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear +util_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.end>37)), ((37-df.end)*(df.end<=37) + (df.end-37)*(df.end>37)), 0)",coef_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear util_discretionary_duration_constant_0_hour,DISCRETIONARY - Duration Constant: 0 hour,@((df.duration==0)),coef_discretionary_duration_constant_0_hour util_discretionary_duration_constant_30_minutes,DISCRETIONARY -Duration Constant: 0.5 hour,@((df.duration==1)),coef_discretionary_duration_constant_30_minutes util_discretionary_duration_constant_1_hour,DISCRETIONARY -Duration Constant: 1 hour,@((df.duration==2)),coef_discretionary_duration_constant_1_hour @@ -46,7 +46,7 @@ util_discretionary_duration_constant_1_hr_30_minutes,DISCRETIONARY -Duration Con util_discretionary_duration_constant_2_hours,DISCRETIONARY -Duration Constant: 2 hours,@((df.duration==4)),coef_discretionary_duration_constant_2_hours util_discretionary_duration_constant_2_hr_30_minutes,DISCRETIONARY -Duration Constant: 2.5 hours,@((df.duration==5)),coef_discretionary_duration_constant_2_hr_30_minutes util_discretionary_duration_constant_3_hours_or_more,DISCRETIONARY -Duration Constant: 3 hours or more,@((df.duration>5)),coef_discretionary_duration_constant_3_hours_or_more -util_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,DISCRETIONARY -Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.duration>6)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>6), np.minimum(df.duration-6,47), 0)), 0)",coef_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear +util_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,DISCRETIONARY -Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.duration>6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)), 0)",coef_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear util_discretionary_calibration_constant_duration_4,DISCRETIONARY -Calibration Constant - Duration = 4,@((df.duration==3)),coef_discretionary_calibration_constant_duration_4 util_discretionary_calibration_constant_duration_5,DISCRETIONARY -Calibration Constant - Duration = 5,@((df.duration==4)),coef_discretionary_calibration_constant_duration_5 util_discretionary_calibration_constant_departure_29,DISCRETIONARY -Calibration Constant - Departure = 29,@((df.start==29)),coef_discretionary_calibration_constant_departure_29 diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othdiscr_coefficients.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othdiscr_coefficients.csv new file mode 100644 index 000000000..a75d7b3e1 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othdiscr_coefficients.csv @@ -0,0 +1,54 @@ +coefficient_name,value,constrain +coef_discretionary_person_less_than_18_years_old_duration_less_than_reference_linear,0.098366285148487,F +coef_discretionary_person_less_than_18_years_old_duration_greater_than_reference_linear,0.0,F +coef_discretionary_non_working_senior_retiree_duration_less_than_reference_linear,-0.1705916260525488,F +coef_discretionary_retiree_non_working_senior_only_HH_duration_reference_linear,0.0,F +coef_discretionary_zero_auto_households_duration_less_than_reference_linear,0.0,F +coef_discretionary_zero_auto_households_duration_greater_than_reference_linear,0.05222497126898865,F +coef_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_reference_linear,0.0,F +coef_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_reference_linear,0.0,F +coef_discretionary_auto_distance_duration_less_than_reference_linear,-0.03606825659562718,F +coef_discretionary_auto_distance_duration_greater_than_reference_linear,0.004596600975929468,F +coef_discretionary_time_pressure_duration_less_reference,0.6728960123740134,F +coef_discretionary_time_pressure_duration_greater_reference,0.25402774161065456,F +coef_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_reference,0.08104208628580123,F +coef_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear,-0.6104747153010481,F +coef_discretionary_departure_constant_before_7_30_am,-0.3390521412898814,F +coef_discretionary_departure_constant_7_30_am_to_8_am,0.0,F +coef_discretionary_departure_constant_8_am_to_8_30_am,0.0,F +coef_discretionary_departure_constant_8_30_am_to_9_am,0.0,F +coef_discretionary_departure_constant_9_am_to_9_30_am,0.33705457332633537,F +coef_discretionary_departure_constant_9_30_am_to_10_am,0.14050652594559154,F +coef_discretionary_departure_constant_10_am_to_10_30_am,0.0,F +coef_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear,2.055051892448251,F +coef_discretionary_departure_constant_before_5_pm,10.078028457555423,F +coef_discretionary_departure_constant_5_pm_to_5_30_pm,8.809104255087856,F +coef_discretionary_departure_constant_5_30_pm_to_6_pm,7.066441289657018,F +coef_discretionary_departure_constant_6_pm_to_6_30_pm,4.909660731901318,F +coef_discretionary_departure_constant_6_30_pm_to_7_pm,2.825818687356497,T +coef_discretionary_departure_constant_after_7_pm,0.0,F +coef_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear,-2.407069142986441,F +coef_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,-1.9913325130310646,F +coef_discretionary_arrival_constant_before_6_30_pm,-8.318569502929208,F +coef_discretionary_arrival_constant_6_30_pm_to_7_pm,-6.434917972534465,F +coef_discretionary_arrival_constant_7_pm_to_7_30_pm,-4.138799434182262,F +coef_discretionary_arrival_constant_7_30_pm_to_8_pm,-2.1058225272583,F +coef_discretionary_arrival_constant_8_pm_to_8_30_pm,0.0,T +coef_discretionary_arrival_constant_8_30_pm_to_9_pm,2.1493158879532435,F +coef_discretionary_arrival_constant_after_9_pm,3.8558666359863616,F +coef_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,1.6858826820414816,F +coef_discretionary_duration_constant_0_hour,0.0,F +coef_discretionary_duration_constant_30_minutes,0.0,F +coef_discretionary_duration_constant_1_hour,0.0,F +coef_discretionary_duration_constant_1_hr_30_minutes,0.0,F +coef_discretionary_duration_constant_2_hours,0.0,F +coef_discretionary_duration_constant_2_hr_30_minutes,-2.9894794551717427,T +coef_discretionary_duration_constant_3_hours_or_more,-6.039866672397804,F +coef_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,-2.9211224892215153,F +coef_discretionary_calibration_constant_duration_4,0.0,F +coef_discretionary_calibration_constant_duration_5,0.0,F +coef_discretionary_calibration_constant_departure_29,0.0,F +coef_discretionary_calibration_constant_departure_30,0.0,F +coef_discretionary_calibration_constant_departure_31,0.0,F +coef_discretionary_calibration_constant_departure_32,0.0,F +coef_mode_choice_logsum,0.06338187336512106,F diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othmaint.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othmaint.csv new file mode 100644 index 000000000..8a44f3dce --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othmaint.csv @@ -0,0 +1,54 @@ +Label,Description,Expression,Coefficient +#MAINTENANCE,#MAINTENANCE,,#MAINTENANCE +util_mode_choice_logsum,Mode choice logsum,mode_choice_logsum,coef_mode_choice_logsum +util_maintenance_driving_age_student_duration_greater_than_reference,MAINTENANCE - Driving age student: Duration > Reference,"@np.where(((df.duration>2) & (df.ptype == 6)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_driving_age_student_duration_greater_than_reference +util_maintenance_full_time_worker_duration_greater_than_reference,MAINTENANCE - Full-time worker: Duration > Reference,"@np.where(((df.duration>2) & (df.ptype == 1)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_full_time_worker_duration_greater_than_reference +util_maintenance_non_driving_student_duration_greater_than_reference,MAINTENANCE - Non-driving Student: Duration > Reference,"@np.where (((df.duration>2) & ((df.ptype == 7)|(df.ptype == 8))), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_non_driving_student_duration_greater_than_reference +util_maintenance_pre_school_child_duration_less_than_reference,MAINTENANCE - Pre-school Child: Duration < Reference,"@np.where(((df.duration<2) & (df.ptype == 8)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_pre_school_child_duration_less_than_reference +util_maintenance_part_time_worker_duration_less_than_reference,MAINTENANCE - Part Time Worker: Duration < Reference,"@np.where(((df.duration<2) & (df.ptype == 2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_part_time_worker_duration_less_than_reference +util_maintenance_part_time_worker_duration_greater_than_reference,MAINTENANCE - Part Time Worker: Duration > Reference,"@np.where(((df.duration>2) & (df.ptype == 2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_part_time_worker_duration_greater_than_reference +util_maintenance_retired_duration_less_than_reference,MAINTENANCE - Retired: Duration < Reference,"@np.where(((df.duration<2) & (df.ptype == 5)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_retired_duration_less_than_reference +util_maintenance_retired_duration_greater_than_reference,MAINTENANCE - Retired: Duration > 1.5 hr,"@np.where(((df.duration>2) & (df.ptype == 5)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_retired_duration_greater_than_reference +util_maintenance_university_student_duration_greater_than_reference,MAINTENANCE - University Student: Duration > Reference,"@np.where(((df.duration>2) & (df.ptype == 3)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_university_student_duration_greater_than_reference +util_maintenance_female_duration_less_than_reference,MAINTENANCE - Female: Duration < Reference,"@np.where(((df.duration<2) & (df.female)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_female_duration_less_than_reference +util_maintenance_female_duration_greater_than_reference,MAINTENANCE - Female: Duration > Reference,"@np.where(((df.duration>2) & (df.female)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_female_duration_greater_than_reference +util_maintenance_low_income_duration_greater_than_reference,"MAINTENANCE - Low Income (<=$25,000): Duration > Reference","@np.where(((df.is_income_less25K) & (df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_low_income_duration_greater_than_reference +util_maintenance_medium_income_duration_less_than_reference,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration < Reference","@np.where(((df.is_income_25K_to_60K) & (df.duration<2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_medium_income_duration_less_than_reference +util_maintenance_medium_income_duration_greater_than_reference,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration > Reference","@np.where(((df.is_income_25K_to_60K) & (df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_medium_income_duration_greater_than_reference +util_maintenance_medium_high_income_duration_greater_than_reference,"MAINTENANCE - Medium-High Income ($60,001 to $120,00): Duration > Reference","@np.where(((df.is_income_60K_to_120K) & (df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_medium_high_income_duration_greater_than_reference +util_maintenance_distance_duration_less_than_reference,MAINTENANCE - Distance: Duration < Reference,"@np.where(((df.duration<2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) *(df.origin_to_destination_distance), 0)",coef_maintenance_distance_duration_less_than_reference +util_maintenance_distance_duration_greater_than_reference,MAINTENANCE - Distance: Duration > Reference,"@np.where(((df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) * (df.origin_to_destination_distance), 0)",coef_maintenance_distance_duration_greater_than_reference +util_maintenance_time_pressure_duration_greater_than_reference,Time Pressure - Duration > Reference,"@np.where(((df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) * (np.log10 (30 * (tt.max_time_block_available(df.person_id)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_maintenance_time_pressure_duration_greater_than_reference +util_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_reference,MAINTENANCE - Number of additional individual shop and maint. tours - Duration < Reference,"@np.where((df.duration<2), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) * (df.num_add_shop_maint_tours), 0)",coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_reference +util_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_reference,MAINTENANCE - Number of additional individual shop and maint. tours - Duration > Reference,"@np.where((df.duration>2), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) * (df.num_add_shop_maint_tours), 0)",coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_reference +util_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Linear,"@np.where((df.start<10), ((10-df.start)*(df.start<=10) + (df.start-10)*(df.start>10)), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear +util_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Square Root,"@np.where((df.start<10), (((10-df.start)*(df.start<=10) + (df.start-10)*(df.start>10))** 0.5), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root +util_maintenance_departure_constant_before_8_am,MAINTENANCE - Departure Constant: Before 08:00 AM,@((df.start<11)),coef_maintenance_departure_constant_before_8_am +util_maintenance_departure_constant_8_am_to_8_30_am,MAINTENANCE - Departure Constant: 08:00 AM - 08:30 AM,@((df.start==11)),coef_maintenance_departure_constant_8_am_to_8_30_am +util_maintenance_departure_constant_8_30_am_to_9_00_am,MAINTENANCE - Departure Constant: 08:30 AM - 09:00 AM,@((df.start==12)),coef_maintenance_departure_constant_8_30_am_to_9_00_am +util_maintenance_departure_constant_9_am_to_9_30_am,MAINTENANCE - Departure Constant: 09:00 AM - 09:30 AM,@((df.start==13)),coef_maintenance_departure_constant_9_am_to_9_30_am +util_maintenance_departure_constant_9_30_am_to_10_am,MAINTENANCE - Departure Constant: 09:30 AM - 10:00 AM,@((df.start==14)),coef_maintenance_departure_constant_9_30_am_to_10_am +util_maintenance_departure_constant_10_am_to_10_30_am,MAINTENANCE - Departure Constant: 10:00 AM - 10:30 AM,@((df.start==15)),coef_maintenance_departure_constant_10_am_to_10_30_am +util_maintenance_departure_constant_10_30_am_to_11_am,MAINTENANCE - Departure Constant: 10:30 AM - 11:00 AM,@((df.start==16)),coef_maintenance_departure_constant_10_30_am_to_11_am +util_maintenance_departure_constant_after_11_am,MAINTENANCE - Departure Constant: After 11:00 AM,@((df.start>16)),coef_maintenance_departure_constant_after_11_am +util_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where((df.start>17), ((17-df.start)*(df.start<=17) + (df.start-17)*(df.start>17)), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear +util_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes before 10:00 am - Linear,"@np.where(((df.end<15)), ((15-df.end)*(df.end<=15) + (df.end-15)*(df.end>15)), 0)",coef_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear +util_maintenance_arrival_constant_before_10_30_am,MAINTENANCE - Arrival Constant: Before 10:30 AM,@((df.end<16)),coef_maintenance_arrival_constant_before_10_30_am +util_maintenance_arrival_constant_10_30_am_to_11_am,MAINTENANCE - Arrival Constant: 10:30 AM - 11:00 AM,@((df.end==16)),coef_maintenance_arrival_constant_10_30_am_to_11_am +util_maintenance_arrival_constant_11_am_to_11_30_am,MAINTENANCE - Arrival Constant: 11:00 AM - 11:30 AM,@((df.end==17)),coef_maintenance_arrival_constant_11_am_to_11_30_am +util_maintenance_arrival_constant_11_30_am_to_1_30_pm,MAINTENANCE - Arrival Constant: 11:30 AM - 01:30 PM,@((df.end>=18) & (df.end<=21)),coef_maintenance_arrival_constant_11_30_am_to_1_30_pm +util_maintenance_arrival_constant_1_30_pm_to_2_30_pm,MAINTENANCE - Arrival Constant: 01:30 PM - 02:30 PM,@((df.end>=22) & (df.end<=23)),coef_maintenance_arrival_constant_1_30_pm_to_2_30_pm +util_maintenance_arrival_constant_2_30_pm_to_4_pm,MAINTENANCE - Arrival Constant: 02:30 PM - 04:00 PM,@((df.end>=24) & (df.end<=26)),coef_maintenance_arrival_constant_2_30_pm_to_4_pm +util_maintenance_arrival_constant_4_pm_to_4_30_pm,MAINTENANCE - Arrival Constant: 04:00 PM - 04:30 PM,@((df.end==27)),coef_maintenance_arrival_constant_4_pm_to_4_30_pm +util_maintenance_arrival_constant_after_4_30_pm,MAINTENANCE - Arrival Constant: After 04:30 PM,@((df.end>27)),coef_maintenance_arrival_constant_after_4_30_pm +util_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.end>28)), ((28-df.end)*(df.end<=28) + (df.end-28)*(df.end>28)), 0)",coef_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear +util_maintenance_duration_constant_0_hr,MAINTENANCE - Duration Constant: 0 hr,@((df.duration==0)),coef_maintenance_duration_constant_0_hr +util_maintenance_duration_constant_30_minutes,MAINTENANCE - Duration Constant: 0.5 hr,@((df.duration==1)),coef_maintenance_duration_constant_30_minutes +util_maintenance_duration_constant_longer_than_30_minutes,MAINTENANCE - Duration Constant: Longer than 0.5 hr,@((df.duration>1)),coef_maintenance_duration_constant_longer_than_30_minutes +util_maintenance_duration_constant_duration_greater_than_1_hr_linear,MAINTENANCE - Duration Constant: Duration > 1 hr - Linear,"@np.where(((df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_maintenance_duration_constant_duration_greater_than_1_hr_linear +util_maintenance_duration_constant_duration_greater_than_1_hr_square_root,MAINTENANCE - Duration Constant: Duration > 1 hr - Square Root,"@np.where(((df.duration>2)), (((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2))** 0.5), 0)",coef_maintenance_duration_constant_duration_greater_than_1_hr_square_root +util_maintenance_calibration_constant_duration_1,MAINTENANCE - Calibration Constant - Duration = 1,@((df.duration==0)),coef_maintenance_calibration_constant_duration_1 +util_maintenance_calibration_constant_duration_2,MAINTENANCE - Calibration Constant - Duration = 2,@((df.duration==1)),coef_maintenance_calibration_constant_duration_2 +util_maintenance_calibration_constant_duration_3,MAINTENANCE - Calibration Constant - Duration = 3,@((df.duration==2)),coef_maintenance_calibration_constant_duration_3 +util_maintenance_calibration_constant_duration_4,MAINTENANCE - Calibration Constant - Duration = 4,@((df.duration==3)),coef_maintenance_calibration_constant_duration_4 +util_maintenance_calibration_constant_duration_5,MAINTENANCE - Calibration Constant - Duration = 5,@((df.duration==4)),coef_maintenance_calibration_constant_duration_5 diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othmaint_coefficients.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othmaint_coefficients.csv new file mode 100644 index 000000000..056150eef --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_othmaint_coefficients.csv @@ -0,0 +1,53 @@ +coefficient_name,value,constrain +coef_maintenance_driving_age_student_duration_greater_than_reference,0,F +coef_maintenance_full_time_worker_duration_greater_than_reference,0.134548182,F +coef_maintenance_non_driving_student_duration_greater_than_reference,0,F +coef_maintenance_pre_school_child_duration_less_than_reference,-2.158781419,F +coef_maintenance_part_time_worker_duration_less_than_reference,0,F +coef_maintenance_part_time_worker_duration_greater_than_reference,0,F +coef_maintenance_retired_duration_less_than_reference,0,F +coef_maintenance_retired_duration_greater_than_reference,-0.035230993,F +coef_maintenance_university_student_duration_greater_than_reference,0,F +coef_maintenance_female_duration_less_than_reference,-0.33673289,F +coef_maintenance_female_duration_greater_than_reference,0,F +coef_maintenance_low_income_duration_greater_than_reference,0.039981716,F +coef_maintenance_medium_income_duration_less_than_reference,0,F +coef_maintenance_medium_income_duration_greater_than_reference,0,T +coef_maintenance_medium_high_income_duration_greater_than_reference,0,F +coef_maintenance_distance_duration_less_than_reference,-0.285294941,F +coef_maintenance_distance_duration_greater_than_reference,0.004262551,F +coef_maintenance_time_pressure_duration_greater_than_reference,0.215748222,F +coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_reference,0,F +coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_reference,-0.038995943,F +coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear,-0.894749684,F +coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root,0.949877711,F +coef_maintenance_departure_constant_before_8_am,-0.551863376,F +coef_maintenance_departure_constant_8_am_to_8_30_am,-0.144009892,F +coef_maintenance_departure_constant_8_30_am_to_9_00_am,0,F +coef_maintenance_departure_constant_9_am_to_9_30_am,0,F +coef_maintenance_departure_constant_9_30_am_to_10_am,0,F +coef_maintenance_departure_constant_10_am_to_10_30_am,0,T +coef_maintenance_departure_constant_10_30_am_to_11_am,-0.175380868,F +coef_maintenance_departure_constant_after_11_am,-0.388816014,F +coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,0.022970491,F +coef_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear,-0.236900146,F +coef_maintenance_arrival_constant_before_10_30_am,0,F +coef_maintenance_arrival_constant_10_30_am_to_11_am,0,T +coef_maintenance_arrival_constant_11_am_to_11_30_am,0,F +coef_maintenance_arrival_constant_11_30_am_to_1_30_pm,0,F +coef_maintenance_arrival_constant_1_30_pm_to_2_30_pm,0,F +coef_maintenance_arrival_constant_2_30_pm_to_4_pm,0,F +coef_maintenance_arrival_constant_4_pm_to_4_30_pm,0,F +coef_maintenance_arrival_constant_after_4_30_pm,0,F +coef_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,-0.303621746,F +coef_maintenance_duration_constant_0_hr,6.023099557,F +coef_maintenance_duration_constant_30_minutes,6.292254209,T +coef_maintenance_duration_constant_longer_than_30_minutes,4.91445025,F +coef_maintenance_duration_constant_duration_greater_than_1_hr_linear,-0.738952132,F +coef_maintenance_duration_constant_duration_greater_than_1_hr_square_root,-0.129507431,F +coef_maintenance_calibration_constant_duration_1,0,F +coef_maintenance_calibration_constant_duration_2,0,F +coef_maintenance_calibration_constant_duration_3,0,F +coef_maintenance_calibration_constant_duration_4,0.253036722,F +coef_maintenance_calibration_constant_duration_5,0.215281783,F +coef_mode_choice_logsum,0.241330739,F diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_shopping.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_shopping.csv new file mode 100644 index 000000000..0966c8336 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_shopping.csv @@ -0,0 +1,54 @@ +Label,Description,Expression,Coefficient +#SHOPPING,,,#SHOPPING +util_mode_choice_logsum,Mode choice logsum,mode_choice_logsum,coef_mode_choice_logsum +util_shoppping_driving_age_student_duration_greater_than_reference,SHOPPING - Driving age student: Duration > Reference,"@np.where(((df.duration>2) & (df.ptype == 6)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shoppping_driving_age_student_duration_greater_than_reference +util_shoppping_full_time_worker_duration_greater_than_reference,SHOPPING - Full-time worker: Duration > Reference,"@np.where(((df.duration>2) & (df.ptype == 1)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shoppping_full_time_worker_duration_greater_than_reference +util_shoppping_non_driving_student_duration_greater_than_reference,SHOPPING - Non-driving Student: Duration > Reference,"@np.where(((df.duration>2) & ((df.ptype == 7)|(df.ptype == 8))), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shoppping_non_driving_student_duration_greater_than_reference +util_shoppping_pre_school_child_duration_less_than_reference,SHOPPING - Pre-school Child: Duration < Reference,"@np.where(((df.duration<2) & (df.ptype == 8)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shoppping_pre_school_child_duration_less_than_reference +util_shoppping_part_time_worker_duration_less_than_reference,SHOPPING - Part Time Worker: Duration < Reference,"@np.where(((df.duration<2) & (df.ptype == 2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shoppping_part_time_worker_duration_less_than_reference +util_shopping_part_time_worker_duration_greater_than_reference,SHOPPING - Part Time Worker: Duration > Reference,"@np.where(((df.duration>2) & (df.ptype == 2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shopping_part_time_worker_duration_greater_than_reference +util_shopping_retired_duration_less_than_reference,SHOPPING - Retired: Duration < Reference,"@np.where(((df.duration<2) & (df.ptype == 5)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shopping_retired_duration_less_than_reference +util_shopping_retired_duration_greater_than_reference,SHOPPING - Retired: Duration > Reference,"@np.where(((df.duration>2) & (df.ptype == 5)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shopping_retired_duration_greater_than_reference +util_shopping_university_student_duration_greater_than_reference,SHOPPING - University Student: Duration > Reference,"@np.where(((df.duration>2) & (df.ptype == 3)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shopping_university_student_duration_greater_than_reference +util_shopping_female_duration_less_than_reference,SHOPPING - Female: Duration < Reference,"@np.where(((df.duration<2) & (df.female)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shopping_female_duration_less_than_reference +util_shopping_female_duration_greater_than_reference,SHOPPING - Female: Duration > Reference,"@np.where(((df.duration>2) & (df.female)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shopping_female_duration_greater_than_reference +util_shopping_low_income_duration_greater_than_reference,"SHOPPING - Low Income (<=$25,000): Duration > Reference","@np.where(((df.is_income_less25K) & (df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shopping_low_income_duration_greater_than_reference +util_shopping_medium_income_duration_less_than_reference,"SHOPPING - Medium Income ($25,001 to $60,000): Duration < Reference","@np.where(((df.is_income_25K_to_60K) & (df.duration<2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shopping_medium_income_duration_less_than_reference +util_shopping_medium_high_income_duration_greater_than_reference,"SHOPPING - Medium-High Income ($60,001 to $120,00): Duration > Reference","@np.where(((df.is_income_60K_to_120K) & (df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)), 0)",coef_shopping_medium_high_income_duration_greater_than_reference +util_shopping_distance_duration_less_than_reference,SHOPPING - Distance: Duration < Reference,"@np.where(((df.duration<2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) * (df.origin_to_destination_distance), 0)",coef_shopping_distance_duration_less_than_reference +util_shopping_distance_duration_greater_than_reference,SHOPPING - Distance: Duration > Reference,"@np.where(((df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) * (df.origin_to_destination_distance), 0)",coef_shopping_distance_duration_greater_than_reference +util_shopping_time_pressure_duration_greater_than_reference,SHOPPING - Time Pressure - Duration > Reference,"@np.where(((df.duration>2)), np.minimum(df.duration-2,26) *(np.log10 (30 *(tt.max_time_block_available(df.person_id)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_shopping_time_pressure_duration_greater_than_reference +util_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_reference,SHOPPING - Number of additional individual shop and maint. tours - Duration < Reference,"@np.where(((df.duration<2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) *(df.num_add_shop_maint_tours), 0)",coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_reference +util_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_reference,SHOPPING - Number of additional individual shop and maint. tours - Duration > Reference,"@np.where(((df.tour_type == 'shopping') &(df.duration>2)), ((2-df.duration)*(df.duration<=2) + (df.duration-2)*(df.duration>2)) *(df.num_add_shop_maint_tours), 0)",coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_reference +util_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@np.where(((df.start<12)), ((12-df.start)*(df.start<=12) + (df.start-12)*(df.start>12)), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear +util_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Square root,"@np.where(((df.start<12)), ((12-df.start)*(df.start<=12) + (df.start-12)*(df.start>12))**0.5, 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root +util_shopping_departure_constant_before_9_am,SHOPPING - Departure Constant: Before 09:00 AM,@((df.start<13)),coef_shopping_departure_constant_before_9_am +util_shopping_departure_constant_9_am_to_9_30_am,SHOPPING - Departure Constant: 09:00 AM - 09:30 AM,@((df.start==13)),coef_shopping_departure_constant_9_am_to_9_30_am +util_shopping_departure_constant_9_30_am_to_10_am,SHOPPING - Departure Constant: 09:30 AM - 10:00 AM,@((df.start==14)),coef_shopping_departure_constant_9_30_am_to_10_am +util_shopping_departure_constant_10_am_to_10_30_am,SHOPPING - Departure Constant: 10:00 AM - 10:30 AM,@((df.start==15)),coef_shopping_departure_constant_10_am_to_10_30_am +util_shopping_departure_constant_10_30_am_to_11_00_am,SHOPPING - Departure Constant: 10:30 AM - 11:00 AM,@((df.start==16)),coef_shopping_departure_constant_10_30_am_to_11_00_am +util_shopping_departure_constant_after_11_am,SHOPPING - Departure Constant: After 11:00 AM,@((df.start>16)),coef_shopping_departure_constant_after_11_am +util_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.start>17)), ((17-df.start)*(df.start<=17) + (df.start-17)*(df.start>17)), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear +util_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear,SHOPPING - Arrival Constant: Shift for every 30 minutes before 12:00 pm - Linear,"@np.where(((df.end<19)), ((19-df.end)*(df.end<=19) + (df.end-19)*(df.end>19)), 0)",coef_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear +util_shopping_arrival_constant_before_12_30_pm,SHOPPING - Arrival Constant: Before 12:30 PM,@((df.end<20)),coef_shopping_arrival_constant_before_12_30_pm +util_shopping_arrival_constant_12_30_pm_to_3_pm,SHOPPING - Arrival Constant: 12:30 PM - 03:00 PM,@(( df.end>=20) & (df.end<=24)),coef_shopping_arrival_constant_12_30_pm_to_3_pm +util_shopping_arrival_constant_3_pm_to_3_30_pm,SHOPPING - Arrival Constant: 03:00 PM - 03:30 PM,@((df.end==25)),coef_shopping_arrival_constant_3_pm_to_3_30_pm +util_shopping_arrival_constant_3_30_pm_to_4_pm,SHOPPING - Arrival Constant: 03:30 PM - 04:00 PM,@((df.end==26)),coef_shopping_arrival_constant_3_30_pm_to_4_pm +util_shopping_arrival_constant_4_pm_to_4_30_pm,SHOPPING - Arrival Constant: 04:00 PM - 04:30 PM,@((df.end==27)),coef_shopping_arrival_constant_4_pm_to_4_30_pm +util_shopping_arrival_constant_4_30_pm_to_5_pm,SHOPPING - Arrival Constant: 04:30 PM - 05:00 PM,@((df.end==28)),coef_shopping_arrival_constant_4_30_pm_to_5_pm +util_shopping_arrival_constant_5_pm_to_5_30_pm,SHOPPING - Arrival Constant: 05:00 PM - 05:30 PM,@((df.end==29)),coef_shopping_arrival_constant_5_pm_to_5_30_pm +util_shopping_arrival_constant_5_30_pm_to_7_pm,SHOPPING - Arrival Constant: 05:30 PM - 07:00 PM,@((df.end>=30) & (df.end<=32)),coef_shopping_arrival_constant_5_30_pm_to_7_pm +util_shopping_arrival_constant_7_pm_to_9_30_pm,SHOPPING - Arrival Constant: 07:00 PM - 09:30 PM,@((df.end>=33) & (df.end<=37)),coef_shopping_arrival_constant_7_pm_to_9_30_pm +util_shopping_arrival_constant_after_9_30_pm,SHOPPING - Arrival Constant: After 09:30 PM,@((df.end>37)),coef_shopping_arrival_constant_after_9_30_pm +util_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear,SHOPPING - Arrival Constant: Shift for every 30 minutes after 10:00 pm - Linear,"@np.where(((df.end>38)), ((38-df.end)*(df.end<=38) + (df.end-38)*(df.end>38)), 0)",coef_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear +util_shopping_duration_constant_0_hr,SHOPPING - Duration Constant: 0 hr,@((df.duration==0)),coef_shopping_duration_constant_0_hr +util_shopping_duration_constant_30_minutes,SHOPPING - Duration Constant: 0.5 hr,@((df.duration==1)),coef_shopping_duration_constant_30_minutes +util_shopping_duration_constant_1_hr,SHOPPING - Duration Constant: 1 hr,@((df.duration==2)),coef_shopping_duration_constant_1_hr +util_shopping_duration_constant_1_hour_30_minutes,SHOPPING - Duration Constant: 1.5hrs,@(df.duration==3),coef_shopping_duration_constant_1_hour_30_minutes +util_shopping_duration_constant_2_hrs,SHOPPING - Duration Constant: 2 hrs,@((df.duration==4)),coef_shopping_duration_constant_2_hrs +util_shopping_duration_constant_longer_than_2_hrs,SHOPPING - Duration Constant: Longer than 2 hrs,@((df.duration>4)),coef_shopping_duration_constant_longer_than_2_hrs +util_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear,SHOPPING - Duration Constant: Duration > 2.5 hrs - Linear,"@np.where(((df.duration>5)), ((5-df.duration)*(df.duration<=5) + (df.duration-5)*(df.duration>5)), 0)",coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear +util_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root,SHOPPING - Duration Constant: Duration > 2.5 hrs - Square root,"@np.where(((df.duration>5)), (((5-df.duration)*(df.duration<=5) + (df.duration-5)*(df.duration>5)) ** 0.5), 0)",coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root +util_shopping_calibration_constant_duration_1,SHOPPING - Calibration Constant - Duration = 1,@((df.duration==0)),coef_shopping_calibration_constant_duration_1 +util_shopping_calibration_constant_duration_2,SHOPPING - Calibration Constant - Duration = 2,@((df.duration==1)),coef_shopping_calibration_constant_duration_2 +util_shopping_calibration_constant_duration_3,SHOPPING - Calibration Constant - Duration = 3,@((df.duration==2)),coef_shopping_calibration_constant_duration_3 diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_shopping_coefficients.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_shopping_coefficients.csv new file mode 100644 index 000000000..b6f2d3b7b --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_shopping_coefficients.csv @@ -0,0 +1,53 @@ +coefficient_name,value,constrain +coef_shoppping_driving_age_student_duration_greater_than_reference,0,F +coef_shoppping_full_time_worker_duration_greater_than_reference,0.052013304,F +coef_shoppping_non_driving_student_duration_greater_than_reference,0,F +coef_shoppping_pre_school_child_duration_less_than_reference,0,F +coef_shoppping_part_time_worker_duration_less_than_reference,0,F +coef_shopping_part_time_worker_duration_greater_than_reference,0,F +coef_shopping_retired_duration_less_than_reference,-0.264488371,F +coef_shopping_retired_duration_greater_than_reference,0,F +coef_shopping_university_student_duration_greater_than_reference,0,F +coef_shopping_female_duration_less_than_reference,-0.706253687,F +coef_shopping_female_duration_greater_than_reference,0.061494712,F +coef_shopping_low_income_duration_greater_than_reference,0.078324543,F +coef_shopping_medium_income_duration_less_than_reference,0,F +coef_shopping_medium_high_income_duration_greater_than_reference,0,F +coef_shopping_distance_duration_less_than_reference,-0.266345479,F +coef_shopping_distance_duration_greater_than_reference,0.011024114,F +coef_shopping_time_pressure_duration_greater_than_reference,0.186025024,F +coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_reference,0,F +coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_reference,-0.073347514,F +coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,-1.271759564,F +coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root,0.585672241,F +coef_shopping_departure_constant_before_9_am,-0.829474619,F +coef_shopping_departure_constant_9_am_to_9_30_am,0,F +coef_shopping_departure_constant_9_30_am_to_10_am,0.500429426,F +coef_shopping_departure_constant_10_am_to_10_30_am,0,T +coef_shopping_departure_constant_10_30_am_to_11_00_am,1.470959168,F +coef_shopping_departure_constant_after_11_am,2.157602106,F +coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,0.435436303,F +coef_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear,0.410256343,F +coef_shopping_arrival_constant_before_12_30_pm,2.191026405,F +coef_shopping_arrival_constant_12_30_pm_to_3_pm,0,F +coef_shopping_arrival_constant_3_pm_to_3_30_pm,-0.985581618,F +coef_shopping_arrival_constant_3_30_pm_to_4_pm,-1.403508984,F +coef_shopping_arrival_constant_4_pm_to_4_30_pm,-1.921153952,T +coef_shopping_arrival_constant_4_30_pm_to_5_pm,-2.584015365,F +coef_shopping_arrival_constant_5_pm_to_5_30_pm,-3.02435605,F +coef_shopping_arrival_constant_5_30_pm_to_7_pm,-4.332791088,F +coef_shopping_arrival_constant_7_pm_to_9_30_pm,-6.506695028,F +coef_shopping_arrival_constant_after_9_30_pm,-9.0099778,F +coef_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear,-0.820420778,F +coef_shopping_duration_constant_0_hr,0,F +coef_shopping_duration_constant_30_minutes,1.178015119,F +coef_shopping_duration_constant_1_hr,0,T +coef_shopping_duration_constant_1_hour_30_minutes,0,F +coef_shopping_duration_constant_2_hrs,-0.475594334,F +coef_shopping_duration_constant_longer_than_2_hrs,-1.099004049,F +coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear,-0.434855764,F +coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root,0,F +coef_shopping_calibration_constant_duration_1,0,F +coef_shopping_calibration_constant_duration_2,0,F +coef_shopping_calibration_constant_duration_3,0,F +coef_mode_choice_logsum,0.2,F diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_social.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_social.csv new file mode 100644 index 000000000..15ba8fd56 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_social.csv @@ -0,0 +1,55 @@ +Label,Description,Expression,Coefficient +#SOCIAL,#SOCIAL,,#SOCIAL +util_mode_choice_logsum,Mode choice logsum,mode_choice_logsum,coef_mode_choice_logsum +util_social_person_less_than_18_years_old_duration_less_than_reference_linear,SOCIAL - Person< 18 years old: Duration < Reference - Linear,"@np.where(((df.duration<6) & (df.age<18)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)), 0)",coef_social_person_less_than_18_years_old_duration_less_than_reference_linear +util_social_person_less_than_18_years_old_duration_greater_than_reference_linear,SOCIAL - Person< 18 years old: Duration > Reference - Linear,"@np.where(((df.duration>6) & (df.age<18)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)), 0)",coef_social_person_less_than_18_years_old_duration_greater_than_reference_linear +util_social_non_working_senior_or_retiree_duration_less_than_reference_linear,SOCIAL - Non-working senior/ retiree: Duration < Reference - Linear,"@np.where(((df.duration<6) & (df.ptype == 5)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)), 0)",coef_social_non_working_senior_or_retiree_duration_less_than_reference_linear +util_social_retiree_or_non_working_senior_only_HH_duration_less_than_reference_linear,SOCIAL - Retiree/ Non-working senior only HH: Duration < Reference - Linear,"@np.where(((df.retired_adults_only_hh) & (df.duration<6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)), 0)",coef_social_retiree_or_non_working_senior_only_HH_duration_less_than_reference_linear +util_social_zero_auto_households_duration_less_than_reference_linear,SOCIAL - Zero auto households: Duration < Reference - Linear,"@np.where(((df.auto_ownership == 0) & (df.duration<6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)), 0)",coef_social_zero_auto_households_duration_less_than_reference_linear +util_social_zero_auto_households_duration_greater_than_reference_linear,SOCIAL - Zero auto households: Duration > Reference - Linear,"@np.where(((df.auto_ownership == 0) & (df.duration>6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)), 0)",coef_social_zero_auto_households_duration_greater_than_reference_linear +util_social_number_of_auto_more_than_number_of_adults_duration_less_than_reference_linear,SOCIAL - Number of auto more than number of adults: Duration < Reference - Linear,"@np.where(((df.auto_ownership > 0) &(df.auto_ownership > df.num_adults) & (df.duration<6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)), 0)",coef_social_number_of_auto_more_than_number_of_adults_duration_less_than_reference_linear +util_social_number_of_auto_more_than_number_of_adults_duration_greater_than_reference_linear,SOCIAL - Number of auto more than number of adults: Duration > Reference - Linear,"@np.where(((df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)), 0)",coef_social_number_of_auto_more_than_number_of_adults_duration_greater_than_reference_linear +"# In CTRAMP, although the description below says duration is less than 1 hr, expression is for less than 1.5 hr",,, +util_social_auto_distance_duration_less_than_reference_linear,SOCIAL - Auto Distance: Duration < Reference - Linear,"@np.where(((df.duration<6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)) * (df.origin_to_destination_distance), 0)",coef_social_auto_distance_duration_less_than_reference_linear +util_social_auto_distance_duration_greater_than_reference_linear,SOCIAL - Auto Distance: Duration > Reference - Linear,"@np.where(((df.duration>6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)) * (df.origin_to_destination_distance), 0)",coef_social_auto_distance_duration_greater_than_reference_linear +util_social_time_pressure_duration_less_than_reference,SOCIAL - Time Pressure - Duration < Reference,"@np.where(((df.duration<6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6))* (np.log10 (30 * (tt.max_time_block_available(df.person_id)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_social_time_pressure_duration_less_than_reference +util_social_time_pressure_duration_greater_than_reference,SOCIAL - Time Pressure - Duration > Reference,"@np.where(((df.duration>6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)) * (np.log10 (30 * (tt.max_time_block_available(df.person_id)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_social_time_pressure_duration_greater_than_reference +util_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_reference,SOCIAL - Number of additional individual social and dicretionary tours - Duration < 1 hr,"@np.where(((df.duration<6)), ((6-df.duration)*(df.duration<=6) + (df.duration-6)*(df.duration>6)) * (df.num_add_soc_discr_tours), 0)",coef_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_reference +util_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,@((df.start<12)) * ((12-df.start)*(df.start<=12) + (df.start-12)*(df.start>12)),coef_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear +util_social_departure_constant_before_9_am,SOCIAL - Departure Constant: Before 09:00 AM,@(df.start<13),coef_social_departure_constant_before_9_am +util_social_departure_constant_9_am_to_9_30_am,SOCIAL - Departure Constant: 09:00 AM to 09:30 AM,@(df.start==13),coef_social_departure_constant_9_am_to_9_30_am +util_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 05:00 pm - Linear,"@np.where((df.start<29), ((29-df.start)*(df.start<=29) + (df.start-29)*(df.start>29)), 0)",coef_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear +util_social_departure_constant_before_5_30_pm,SOCIAL - Departure Constant: Before 05:30 PM,@((df.start<30)),coef_social_departure_constant_before_5_30_pm +util_social_departure_constant_5_30_pm_to_6_pm,SOCIAL - Departure Constant: 05:30 PM - 06:00 PM,@((df.start==30)),coef_social_departure_constant_5_30_pm_to_6_pm +util_social_departure_constant_6_pm_to_6_30_pm,SOCIAL - Departure Constant: 06:00 PM - 06:30 PM,@((df.start==31)),coef_social_departure_constant_6_pm_to_6_30_pm +util_social_departure_constant_6_30_pm_to_7_pm,SOCIAL - Departure Constant: 06:30 PM - 07:00 PM,@((df.start==32)),coef_social_departure_constant_6_30_pm_to_7_pm +util_social_departure_constant_7_pm_to_7_30_pm,SOCIAL - Departure Constant: 07:00 PM - 07:30 PM,@((df.start==33)),coef_social_departure_constant_7_pm_to_7_30_pm +util_social_departure_constant_after_7_30_pm,SOCIAL - Departure Constant: After 07:30 PM,@((df.start>33)),coef_social_departure_constant_after_7_30_pm +util_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,SOCIAL - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where((df.start>34), ((34-df.start)*(df.start<=34) + (df.start-34)*(df.start>34)), 0)",coef_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear +util_social_arrival_constant_3_pm_to_3_30_pm,SOCIAL - Arrival Constant: 03:00 PM to 03:30 PM,@((df.end==25)),coef_social_arrival_constant_3_pm_to_3_30_pm +util_social_arrival_constant_3_30_pm_to_4_pm,SOCIAL - Arrival Constant: 03:30 PM to 04:00 PM,@((df.end==26)),coef_social_arrival_constant_3_30_pm_to_4_pm +util_social_arrival_constant_4_pm_to_4_30_pm,SOCIAL - Arrival Constant: 04:00 PM to 04:30 PM,@((df.end==27)),coef_social_arrival_constant_4_pm_to_4_30_pm +util_social_arrival_constant_5_pm_to_6_pm,SOCIAL - Arrival Constant: 05:00 PM to 06:00 PM,@((df.end>=29) & (df.end<=30)),coef_social_arrival_constant_5_pm_to_6_pm +util_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear,SOCIAL - Arrival Constant: Shift for every 30 minutes before 08:00 pm - Linear,"@np.where(((df.end<35)), ((35-df.end)*(df.end<=35) + (df.end-35)*(df.end>35)), 0)",coef_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear +util_social_arrival_constant_before_8_30_pm,SOCIAL - Arrival Constant: Before 8:30 PM,@((df.end<36)),coef_social_arrival_constant_before_8_30_pm +util_social_arrival_constant_8_30_pm_to_9_pm,SOCIAL - Arrival Constant: 8:30 PM to 9:00 PM,@((df.end==36)),coef_social_arrival_constant_8_30_pm_to_9_pm +util_social_arrival_constant_9_pm_to_9_30_pm,SOCIAL - Arrival Constant: 9:00 PM to 9:30 PM,@((df.end==37)),coef_social_arrival_constant_9_pm_to_9_30_pm +util_social_arrival_constant_9_30_pm_to_10_pm,SOCIAL - Arrival Constant: 9:30 PM to10:00 PM,@((df.end==38)),coef_social_arrival_constant_9_30_pm_to_10_pm +util_social_arrival_constant_10_pm_to_10_30_pm,SOCIAL - Arrival Constant: 10:00 PM to 10:30 PM,@((df.end==39)),coef_social_arrival_constant_10_pm_to_10_30_pm +util_social_arrival_constant_after_10_30_pm,SOCIAL - Arrival Constant: After 10:30 PM,@((df.end>39)),coef_social_arrival_constant_after_10_30_pm +util_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear,SOCIAL - Arrival Constant: Shift for every 30 minutes after 11:00 pm - Linear,"@np.where(((df.end>40)), ((40-df.end)*(df.end<=40) + (df.end-40)*(df.end>40)), 0)",coef_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear +util_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear,SOCIAL - Duration Constant: Shift for every 30 minutes less than 2.5 hrs - Linear,"@np.where(((df.duration<5)), ((5-df.duration)*(df.duration<=5) + (df.duration-5)*(df.duration>5)), 0)",coef_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear +util_social_duration_constant_less_than_3_hours,SOCIAL - Duration Constant: Less than 3 hrs,@((df.duration<6)),coef_social_duration_constant_less_than_3_hours +util_social_duration_constant_3_hours,SOCIAL - Duration Constant: 3 hours,@((df.duration==6)),coef_social_duration_constant_3_hours +util_social_duration_constant_3_hrs_30_minutes,SOCIAL - Duration Constant: 3.5 hours,@((df.duration==7)),coef_social_duration_constant_3_hrs_30_minutes +util_social_duration_constant_4_hours_or_more,SOCIAL - Duration Constant: 4 hours or more,@((df.duration>7)),coef_social_duration_constant_4_hours_or_more +util_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear,SOCIAL - Duration Constant: Shift for every 30 minutes more than 4.5 hrs - Linear,"@np.where(((df.duration>8)), ((8-df.duration)*(df.duration<=8) + (df.duration-8)*(df.duration>8)), 0)",coef_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear +util_social_calibration_constant_duration_1,SOCIAL - Calibration Constant - Duration = 1,@((df.duration ==0)),coef_social_calibration_constant_duration_1 +util_social_calibration_constant_duration_2,SOCIAL - Calibration Constant - Duration = 2,@((df.duration == 1)),coef_social_calibration_constant_duration_2 +util_social_calibration_constant_duration_3,SOCIAL - Calibration Constant - Duration = 3,@((df.duration ==2)),coef_social_calibration_constant_duration_3 +util_social_calibration_constant_duration_4,SOCIAL - Calibration Constant - Duration = 4,@((df.duration ==3)),coef_social_calibration_constant_duration_4 +util_social_calibration_constant_duration_5,SOCIAL - Calibration Constant - Duration = 5,@((df.duration ==4)),coef_social_calibration_constant_duration_5 +util_social_calibration_constant_duration_6,SOCIAL - Calibration Constant - Duration = 6,@((df.duration ==5)),coef_social_calibration_constant_duration_6 +util_social_calibration_constant_duration_7,SOCIAL - Calibration Constant - Duration = 7,@((df.duration ==6)),coef_social_calibration_constant_duration_7 +util_social_calibration_constant_duration_8,SOCIAL - Calibration Constant - Duration = 8,@((df.duration ==7)),coef_social_calibration_constant_duration_8 +util_social_calibration_constant_duration_9,SOCIAL - Calibration Constant - Duration = 9,@((df.duration ==8)),coef_social_calibration_constant_duration_9 diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_social_coefficients.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_social_coefficients.csv new file mode 100644 index 000000000..8e2f4eb4c --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_nonmandatory_social_coefficients.csv @@ -0,0 +1,53 @@ +coefficient_name,value,constrain +coef_social_person_less_than_18_years_old_duration_less_than_reference_linear,0.0,F +coef_social_person_less_than_18_years_old_duration_greater_than_reference_linear,0.1848544664093724,F +coef_social_non_working_senior_or_retiree_duration_less_than_reference_linear,0.0,F +coef_social_retiree_or_non_working_senior_only_HH_duration_less_than_reference_linear,0.0,F +coef_social_zero_auto_households_duration_less_than_reference_linear,0.0,F +coef_social_zero_auto_households_duration_greater_than_reference_linear,0.0,F +coef_social_number_of_auto_more_than_number_of_adults_duration_less_than_reference_linear,0.0,F +coef_social_number_of_auto_more_than_number_of_adults_duration_greater_than_reference_linear,0.0,F +coef_social_auto_distance_duration_less_than_reference_linear,-0.037191211367614524,F +coef_social_auto_distance_duration_greater_than_reference_linear,0.004103999782121744,F +coef_social_time_pressure_duration_less_than_reference,0.0,F +coef_social_time_pressure_duration_greater_than_reference,0.2472747423164598,F +coef_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_reference,0.0,F +coef_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,-0.35038347561648353,F +coef_social_departure_constant_before_9_am,0.0,F +coef_social_departure_constant_9_am_to_9_30_am,0.48320177182957835,F +coef_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear,0.10579475979139634,F +coef_social_departure_constant_before_5_30_pm,2.9248450547864326,F +coef_social_departure_constant_5_30_pm_to_6_pm,3.396566813557204,F +coef_social_departure_constant_6_pm_to_6_30_pm,0.0,T +coef_social_departure_constant_6_30_pm_to_7_pm,3.2332806668467815,F +coef_social_departure_constant_7_pm_to_7_30_pm,2.9564723583835772,F +coef_social_departure_constant_after_7_30_pm,2.5033367748702537,F +coef_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,-0.31575816708433413,F +coef_social_arrival_constant_3_pm_to_3_30_pm,0.6128608441643291,F +coef_social_arrival_constant_3_30_pm_to_4_pm,0.0,F +coef_social_arrival_constant_4_pm_to_4_30_pm,0.0,F +coef_social_arrival_constant_5_pm_to_6_pm,0.0,F +coef_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear,-0.11543939695197131,F +coef_social_arrival_constant_before_8_30_pm,0.0,F +coef_social_arrival_constant_8_30_pm_to_9_pm,0.3725347628206525,F +coef_social_arrival_constant_9_pm_to_9_30_pm,0.34127159737778273,F +coef_social_arrival_constant_9_30_pm_to_10_pm,0.0,T +coef_social_arrival_constant_10_pm_to_10_30_pm,0.349324126243515,F +coef_social_arrival_constant_after_10_30_pm,0.0,F +coef_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear,-0.22982597094534407,F +coef_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear,0.0,F +coef_social_duration_constant_less_than_3_hours,0.0,F +coef_social_duration_constant_3_hours,0.0,T +coef_social_duration_constant_3_hrs_30_minutes,-0.9879910839979239,F +coef_social_duration_constant_4_hours_or_more,-1.9671125098564861,F +coef_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear,-1.081195937845935,F +coef_social_calibration_constant_duration_1,0.0,F +coef_social_calibration_constant_duration_2,0.0,F +coef_social_calibration_constant_duration_3,0.0,F +coef_social_calibration_constant_duration_4,0.0,F +coef_social_calibration_constant_duration_5,0.0,F +coef_social_calibration_constant_duration_6,0.0,F +coef_social_calibration_constant_duration_7,0.0,F +coef_social_calibration_constant_duration_8,0.0,F +coef_social_calibration_constant_duration_9,0.0,F +coef_mode_choice_logsum,0.014255126759576003,F diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_school.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_school.csv new file mode 100644 index 000000000..3492559c8 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_school.csv @@ -0,0 +1,61 @@ +Label,Description,Expression,Coefficient +# writing out varibles we may need for estimation,,, +round_trip_auto_time_to_work,round_trip_auto_time_to_work,@df.roundtrip_auto_time_to_work,zero_coef +age,age,@df.age,zero_coef +util_Mode_Choice_Logsum,SCHOOL - Mode Choice Logsum,mode_choice_logsum,coef_Mode_Choice_Logsum +util_Low_income_lt25000_Departure_before_730_am__Linear,SCHOOL - Low income (<25000) - Departure before 7:30 am - Linear,"@((df.is_income_less25K) & (df.start < df.departureRefBin_school)) *df.departureLinearShift1",coef_Low_income_lt25000_Departure_before_730_am__Linear +util_Low_income_lt25000_Departure_after_800_am_Linear,SCHOOL - Low income (<25000) - Departure after 8:00 am - Linear,"@((df.is_income_less25K) & (df.start > df.departureRefBin_school)) *df.departureLinearShift1",coef_Low_income_lt25000_Departure_after_800_am_Linear +util_Low_income_lt25000_Duration_lt_8hrs,SCHOOL - Low income (<25000) - Duration < 8hrs,"@((df.is_income_less25K) & (df.start < df.durationRefBin_school)) * df.durationShift_school",coef_Low_income_lt25000_Duration_lt_8hrs +util_Low_income_lt25000_Duration_gt_8hrs,SCHOOL - Low income (<25000) - Duration > 8hrs,"@((df.is_income_less25K) & (df.start > df.durationRefBin_school)) * df.durationShift_school",coef_Low_income_lt25000_Duration_gt_8hrs +util_Med_income_25k_to_60k_Departure_before_730_am__Linear,SCHOOL - Med income (25k to 60k) - Departure before 7:30 am - Linear,"@((df.is_income_25K_to_60K) & (df.start < df.departureRefBin_school)) *df.departureLinearShift1",coef_Med_income_25k_to_60k_Departure_before_730_am__Linear +util_Age_0_to_5_yrs_Departure_Before_730_am,SCHOOL - Age 0 to 5 yrs - Departure Before 7:30 am,"@(((df.age>=0) & (df.age<=5)) & (df.start < df.departureRefBin_school)) *df.departureLinearShift1",coef_Age_0_to_5_yrs_Departure_Before_730_am +util_Age_13_to_15_yrs_Departure_Before_730_am,SCHOOL - Age 13 to 15 yrs - Departure Before 7:30 am,"@(((df.age>=13) & (df.age<=15)) & (df.start < df.departureRefBin_school)) *df.departureLinearShift1",coef_Age_13_to_15_yrs_Departure_Before_730_am +util_Age_13_to_15_yrs_Departure_After_800_am,SCHOOL - Age 13 to 15 yrs - Departure After 8:00 am,"@(((df.age>=13) & (df.age<=15)) & (df.start > df.departureRefBin_school)) *df.departureLinearShift1",coef_Age_13_to_15_yrs_Departure_After_800_am +util_Age_16_to_17_yrs_Departure_After_800_am,SCHOOL - Age 16 to 17 yrs - Departure After 8:00 am,"@(((df.age>=16) & (df.age<=17)) & (df.start > df.departureRefBin_school)) *df.departureLinearShift1",coef_Age_16_to_17_yrs_Departure_After_800_am +util_Age_0_to_5_yrs_Duration_lt_8hrs,SCHOOL - Age 0 to 5 yrs - Duration < 8hrs,"@(((df.age>0) & (df.age<=5)) & (df.start < df.durationRefBin_school)) * df.durationShift_school",coef_Age_0_to_5_yrs_Duration_lt_8hrs +util_Age_0_to_5_yrs_Duration_gt_8hrs,SCHOOL - Age 0 to 5 yrs - Duration > 8hrs,"@(((df.age>0) & (df.age<=5)) & (df.start > df.durationRefBin_school)) * df.durationShift_school",coef_Age_0_to_5_yrs_Duration_gt_8hrs +util_Age_13_to_15_yrs_Duration_lt_8hrs,SCHOOL - Age 13 to 15 yrs - Duration < 8hrs,"@(((df.age>=13) & (df.age<=15)) & (df.start < df.durationRefBin_school)) * df.durationShift_school",coef_Age_13_to_15_yrs_Duration_lt_8hrs +util_Age_13_to_15_yrs_Duration_gt_8hrs,SCHOOL - Age 13 to 15 yrs - Duration > 8hrs,"@(((df.age>=13) & (df.age<=15)) & (df.start > df.durationRefBin_school)) * df.durationShift_school",coef_Age_13_to_15_yrs_Duration_gt_8hrs +util_Age_16_to_17_yrs_Duration_gt_8hrs,SCHOOL - Age 16 to 17 yrs - Duration > 8hrs,"@(((df.age>=16) & (df.age<=17)) & (df.start > df.durationRefBin_school)) * df.durationShift_school",coef_Age_16_to_17_yrs_Duration_gt_8hrs +util_Time_SOV_freeflow_to_destination_Departure_before_730_am__Linear,SCHOOL - Time (SOV freeflow) to destination - Departure before 7:30 am - Linear,"@(df.start < df.departureRefBin_school) *df.departureLinearShift1 * (df.roundtrip_auto_time_to_school)",coef_Time_SOV_freeflow_to_destination_Departure_before_730_am__Linear +util_Time_SOV_freeflow_to_destination_Departure_after_800_am_Linear,SCHOOL - Time (SOV freeflow) to destination - Departure after 8:00 am - Linear,"@(df.start > df.departureRefBin_school) *df.departureLinearShift1 * (df.roundtrip_auto_time_to_school)",coef_Time_SOV_freeflow_to_destination_Departure_after_800_am_Linear +util_Time_SOV_freeflow_to_destination_arrival_before_ref,SCHOOL - Time (SOV freeflow) to destination - Arrival < Reference Bin,"@(df.end < df.arrivalRefBin_school) * df.arrivalLinearShift1_school * (df.roundtrip_auto_time_to_school)",coef_Time_SOV_freeflow_to_destination_arrival_before_ref +util_Time_SOV_freeflow_to_destination_arrival_after_ref,SCHOOL - Time (SOV freeflow) to destination - Duration > 8hrs,"@(df.end > df.arrivalRefBin_school) * df.arrivalLinearShift1_school * (df.roundtrip_auto_time_to_school)",coef_Time_SOV_freeflow_to_destination_arrival_after_ref +util_All_adults_in_the_household_are_fulltime_workers_Departure_before_730_am__Linear,SCHOOL - All adults in the household are fulltime workers - Departure before 7:30 am - Linear,"@((df.is_all_adults_full_time_workers) & (df.start < df.departureRefBin_school)) *df.departureLinearShift1",coef_All_adults_in_the_household_are_fulltime_workers_Departure_before_730_am__Linear +util_All_adults_in_the_household_are_fulltime_workers_Departure_after_800_am_Linear,SCHOOL - All adults in the household are fulltime workers - Departure after 8:00 am - Linear,"@((df.is_all_adults_full_time_workers) & (df.start > df.departureRefBin_school)) *df.departureLinearShift1",coef_All_adults_in_the_household_are_fulltime_workers_Departure_after_800_am_Linear +util_All_adults_in_the_household_are_fulltime_workers_arrival_before_ref,SCHOOL - All adults in the household are fulltime workers - Duration < 8hrs,"@((df.is_all_adults_full_time_workers) & (df.end < df.arrivalRefBin_school)) * df.arrivalLinearShift1_school",coef_All_adults_in_the_household_are_fulltime_workers_arrival_before_ref +util_All_adults_in_the_household_are_fulltime_workers_arrival_after_ref,SCHOOL - All adults in the household are fulltime workers - Duration > 8hrs,"@((df.is_all_adults_full_time_workers) & (df.end > df.arrivalRefBin_school)) * df.arrivalLinearShift1_school",coef_All_adults_in_the_household_are_fulltime_workers_arrival_after_ref +util_Subsequent_tour_is_work_tour_Duration_lt_8_hours,SCHOOL - Subsequent tour is work tour: Duration < 8 hours,"@(((df.tour_count>1) & (df.tour_num == 1) & (df.tour_type.shift(-1) == 'work') & (df.start < df.durationRefBin_school))) * df.durationShift_school",coef_Subsequent_tour_is_work_tour_Duration_lt_8_hours +util_Subsequent_tour_is_work_tour_Duration_gt_8_hours,SCHOOL - Subsequent tour is work tour: Duration > 8 hours,"@(((df.tour_count>1) & (df.tour_num == 1) & (df.tour_type.shift(-1) == 'work') & (df.start > df.durationRefBin_school))) * df.durationShift_school",coef_Subsequent_tour_is_work_tour_Duration_gt_8_hours +util_Subsequent_tour_is_school_tour_Departure_after_800_am,SCHOOL - Subsequent tour is school tour: Departure after 8:00 am,"@(((df.tour_count>1) & (df.tour_num == 1) & (df.tour_type.shift(-1) == 'school') & (df.start > df.departureRefBin_school))) *df.departureLinearShift1",coef_Subsequent_tour_is_school_tour_Departure_after_800_am +util_Subsequent_tour_is_school_tour_Duration_lt_8_hours,SCHOOL - Subsequent tour is school tour: Duration < 8 hours,"@(((df.tour_count>1) & (df.tour_num == 1) & (df.tour_type.shift(-1) == 'school') & (df.start < df.durationRefBin_school))) * df.durationShift_school",coef_Subsequent_tour_is_school_tour_Duration_lt_8_hours +util_Subsequent_tour_is_school_tour_Duration_gt_8_hours,SCHOOL - Subsequent tour is school tour: Duration > 8 hours,"@(((df.tour_count>1) & (df.tour_num == 1) & (df.tour_type.shift(-1) == 'school') & (df.start > df.durationRefBin_school))) * df.durationShift_school",coef_Subsequent_tour_is_school_tour_Duration_gt_8_hours +util_Second_tour_of_two_mandatory_tours_Duration_lt_4_hours,SCHOOL - Second tour of two mandatory tours: Duration < 4 hours,"@(((df.tour_count>1) & (df.tour_num > 1)) & (df.duration<7)) * (((7-df.duration)*(df.duration<=7)) + ((df.duration-7)*(df.duration>7)))",coef_Second_tour_of_two_mandatory_tours_Duration_lt_4_hours +util_Second_tour_of_two_mandatory_tours_Duration_gt_4_hours,SCHOOL - Second tour of two mandatory tours: Duration > 4 hours,"@(((df.tour_count>1) & (df.tour_num > 1)) & (df.duration>7)) * (((7-df.duration)*(df.duration<=7)) + ((df.duration-7)*(df.duration>7)))",coef_Second_tour_of_two_mandatory_tours_Duration_gt_4_hours +util_Departure_Constant_Before_0600_AM,SCHOOL - Departure Constant: Before 06:00 AM,@(df.start<7),coef_Departure_Constant_Before_0600_AM +util_Departure_Constant_0600_AM_to_0630_AM_7,SCHOOL - Departure Constant: 06:00 AM to 06:30 AM (7),@(df.start==7),coef_Departure_Constant_0600_AM_to_0630_AM_7 +util_Departure_Constant_0630_AM_to_0700_AM_8,SCHOOL - Departure Constant: 06:30 AM to 07:00 AM (8),@(df.start==8),coef_Departure_Constant_0630_AM_to_0700_AM_8 +util_Departure_Constant_0700_AM_to_0730_AM_9,SCHOOL - Departure Constant: 07:00 AM to 07:30 AM (9),@(df.start==9),coef_Departure_Constant_0700_AM_to_0730_AM_9 +util_Departure_Constant_0730_AM_to_0800_AM_10,SCHOOL - Departure Constant: 07:30 AM to 08:00 AM (10),@(df.start==10),coef_Departure_Constant_0730_AM_to_0800_AM_10 +util_Departure_Constant_After_0800_AM,SCHOOL - Departure Constant: After 08:00 AM,@(df.start > df.departureRefBin_school),coef_Departure_Constant_After_0800_AM +util_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Linear,SCHOOL - Departure Constant: Shift for every 30 minutes after 8:30 am - Linear,"@((df.start>11)) * (((11-df.start)*(df.start<11)) + ((df.start-11)*(df.start>11)))",coef_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Linear +util_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Square_Root,SCHOOL - Departure Constant: Shift for every 30 minutes after 8:30 am - Square Root,"@((df.start>11) * (np.maximum(df.start - 11, 0) ** 0.5))",coef_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Square_Root +util_Arrival_Constant_Before_0230_PM,SCHOOL - Arrival Constant: Before 02:30 PM,@(df.end<24),coef_Arrival_Constant_Before_0230_PM +util_Arrival_Constant_0230_PM_0300_PM_24_,SCHOOL - Arrival Constant: 02:30 PM - 03:00 PM (24) ,@(df.end==24),coef_Arrival_Constant_0230_PM_0300_PM_24_ +util_Arrival_Constant_0300_PM_0330_PM_25_,SCHOOL - Arrival Constant: 03:00 PM - 03:30 PM (25) ,@(df.end==25),coef_Arrival_Constant_0300_PM_0330_PM_25_ +util_Arrival_Constant_0330_PM_0400_PM_26_,SCHOOL - Arrival Constant: 03:30 PM - 04:00 PM (26) ,@(df.end==26),coef_Arrival_Constant_0330_PM_0400_PM_26_ +util_Arrival_Constant_0400_PM_0430_PM_27_,SCHOOL - Arrival Constant: 04:00 PM - 04:30 PM (27) ,@(df.end==27),coef_Arrival_Constant_0400_PM_0430_PM_27_ +util_Arrival_Constant_0430_PM_0500_PM_28_,SCHOOL - Arrival Constant: 04:30 PM - 05:00 PM (28) ,@(df.end==28),coef_Arrival_Constant_0430_PM_0500_PM_28_ +util_Arrival_Constant_0500_PM_0530_PM_29,SCHOOL - Arrival Constant: 05:00 PM - 05:30 PM (29),@(df.end==29),coef_Arrival_Constant_0500_PM_0530_PM_29 +util_Arrival_Constant_0530_PM_0600_PM_30_,SCHOOL - Arrival Constant: 05:30 PM - 06:00 PM (30) ,@(df.end==30),coef_Arrival_Constant_0530_PM_0600_PM_30_ +util_Arrival_Constant_After_0600_PM,SCHOOL - Arrival Constant: After 06:00 PM,@(df.end>30),coef_Arrival_Constant_After_0600_PM +util_Arrival_Constant_Shift_for_every_30_minutes_after_630_pm_Linear,SCHOOL - Arrival Constant: Shift for every 30 minutes after 6:30 pm - Linear,"@(df.end>31) * (((31-df.end)*(df.end<31)) + ((df.end-31)*(df.end>31)))",coef_Arrival_Constant_Shift_for_every_30_minutes_after_630_pm_Linear +util_Duration_Constant_Shift_for_every_30_minutes_less_than_6p5_hrs_Linear,SCHOOL - Duration Constant: Shift for every 30 minutes less than 6.5 hrs - Linear,"@((df.duration<13)) * (((13-df.duration)*(df.duration<13)) + ((df.duration-13)*(df.duration>13)))",coef_Duration_Constant_Shift_for_every_30_minutes_less_than_6p5_hrs_Linear +util_Duration_Constant_Shorter_than_7_hrs,SCHOOL - Duration Constant: Shorter than 7 hrs,@(df.duration<14),coef_Duration_Constant_Shorter_than_7_hrs +util_Duration_Constant_7_hours,SCHOOL - Duration Constant: 7 hours,@(df.duration==14),coef_Duration_Constant_7_hours +util_Duration_Constant_7p5_hours,SCHOOL - Duration Constant: 7.5 hours,@(df.duration==15),coef_Duration_Constant_7p5_hours +util_Duration_Constant_8_hours,SCHOOL - Duration Constant: 8 hours,@(df.duration==16),coef_Duration_Constant_8_hours +util_Duration_Constant_8p5_hours,SCHOOL - Duration Constant: 8.5 hours,@(df.duration==17),coef_Duration_Constant_8p5_hours +util_Duration_Constant_9_hours,SCHOOL - Duration Constant: 9 hours,@(df.duration==18),coef_Duration_Constant_9_hours +util_Duration_Constant_Longer_than_9_hrs,SCHOOL - Duration Constant: Longer than 9 hrs,@(df.duration>18),coef_Duration_Constant_Longer_than_9_hrs +util_Duration_Constant_Shift_for_every_30_minutes_more_than_9p5_hrs_Linear,SCHOOL - Duration Constant: Shift for every 30 minutes more than 9.5 hrs - Linear,"@(df.duration>19) * (((19-df.duration)*(df.duration<19)) + ((df.duration-19)*(df.duration>19)))",coef_Duration_Constant_Shift_for_every_30_minutes_more_than_9p5_hrs_Linear diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_school_coeffs.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_school_coeffs.csv new file mode 100644 index 000000000..4e5c91754 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_school_coeffs.csv @@ -0,0 +1,59 @@ +coefficient_name,value,constrain +coef_Mode_Choice_Logsum,0.0,F +coef_Low_income_lt25000_Departure_before_730_am__Linear,0.0,F +coef_Low_income_lt25000_Departure_after_800_am_Linear,0.0,F +coef_Low_income_lt25000_Duration_lt_8hrs,0.0,F +coef_Low_income_lt25000_Duration_gt_8hrs,0.0,F +coef_Med_income_25k_to_60k_Departure_before_730_am__Linear,0.0,F +coef_Age_0_to_5_yrs_Departure_Before_730_am,-0.8148835593502417,F +coef_Age_13_to_15_yrs_Departure_Before_730_am,0.27726279249507474,F +coef_Age_13_to_15_yrs_Departure_After_800_am,-0.7597642883716563,F +coef_Age_16_to_17_yrs_Departure_After_800_am,-0.8824101711801812,F +coef_Age_0_to_5_yrs_Duration_lt_8hrs,0.1741028592807906,F +coef_Age_0_to_5_yrs_Duration_gt_8hrs,0.241662039787307,F +coef_Age_13_to_15_yrs_Duration_lt_8hrs,0.0,F +coef_Age_13_to_15_yrs_Duration_gt_8hrs,0.5963387646724607,F +coef_Age_16_to_17_yrs_Duration_gt_8hrs,0.6956001833839539,F +coef_Time_SOV_freeflow_to_destination_Departure_before_730_am__Linear,0.00454314976439104,F +coef_Time_SOV_freeflow_to_destination_Departure_after_800_am_Linear,-0.008509123281468139,F +coef_Time_SOV_freeflow_to_destination_arrival_before_ref,-0.0026124484527274773,F +coef_Time_SOV_freeflow_to_destination_arrival_after_ref,0.00213627544235268,F +coef_All_adults_in_the_household_are_fulltime_workers_Departure_before_730_am__Linear,0.0,F +coef_All_adults_in_the_household_are_fulltime_workers_Departure_after_800_am_Linear,-0.14721190410201404,F +coef_All_adults_in_the_household_are_fulltime_workers_arrival_before_ref,-0.16604467456086497,F +coef_All_adults_in_the_household_are_fulltime_workers_arrival_after_ref,0.0,F +coef_Subsequent_tour_is_work_tour_Duration_lt_8_hours,0.0,F +coef_Subsequent_tour_is_work_tour_Duration_gt_8_hours,0.0,F +coef_Subsequent_tour_is_school_tour_Departure_after_800_am,0.0,F +coef_Subsequent_tour_is_school_tour_Duration_lt_8_hours,0.0,F +coef_Subsequent_tour_is_school_tour_Duration_gt_8_hours,0.0,F +coef_Second_tour_of_two_mandatory_tours_Duration_lt_4_hours,0.0,F +coef_Second_tour_of_two_mandatory_tours_Duration_gt_4_hours,0.0,F +coef_Departure_Constant_Before_0600_AM,-8.764796175382282,F +coef_Departure_Constant_0600_AM_to_0630_AM_7,-2.707793497506736,F +coef_Departure_Constant_0630_AM_to_0700_AM_8,-0.654253451781764,F +coef_Departure_Constant_0700_AM_to_0730_AM_9,0.0,F +coef_Departure_Constant_0730_AM_to_0800_AM_10,-0.48281221099875055,T +coef_Departure_Constant_After_0800_AM,1.0336602346049464,F +coef_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Linear,0.0,F +coef_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Square_Root,-0.4982940561474212,F +coef_Arrival_Constant_Before_0230_PM,0.0,F +coef_Arrival_Constant_0230_PM_0300_PM_24_,0.0,F +coef_Arrival_Constant_0300_PM_0330_PM_25_,0.22741669683682353,F +coef_Arrival_Constant_0330_PM_0400_PM_26_,0.0,F +coef_Arrival_Constant_0400_PM_0430_PM_27_,0.0,T +coef_Arrival_Constant_0430_PM_0500_PM_28_,-1.0249817399820995,F +coef_Arrival_Constant_0500_PM_0530_PM_29,-1.4403670450638697,F +coef_Arrival_Constant_0530_PM_0600_PM_30_,-1.8460834370368264,F +coef_Arrival_Constant_After_0600_PM,-2.3316983953964314,F +coef_Arrival_Constant_Shift_for_every_30_minutes_after_630_pm_Linear,-0.6853763563949641,F +coef_Duration_Constant_Shift_for_every_30_minutes_less_than_6p5_hrs_Linear,-0.19770146146375506,F +coef_Duration_Constant_Shorter_than_7_hrs,-3.0269316327052733,F +coef_Duration_Constant_7_hours,-1.8715765041190864,F +coef_Duration_Constant_7p5_hours,-0.3821662280789037,F +coef_Duration_Constant_8_hours,0.0,T +coef_Duration_Constant_8p5_hours,-0.2743767294042022,F +coef_Duration_Constant_9_hours,-0.8177669270743325,F +coef_Duration_Constant_Longer_than_9_hrs,-0.5422856490451977,F +coef_Duration_Constant_Shift_for_every_30_minutes_more_than_9p5_hrs_Linear,0.21538163084141398,F +zero_coef,0.0,T diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_university.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_university.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/tour_scheduling_university.csv rename to activitysim/examples/production_semcog/configs/tour_scheduling_university.csv diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_university_coeffs.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_university_coeffs.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/tour_scheduling_university_coeffs.csv rename to activitysim/examples/production_semcog/configs/tour_scheduling_university_coeffs.csv diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_work.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_work.csv old mode 100755 new mode 100644 similarity index 50% rename from activitysim/examples/prototype_semcog/configs/tour_scheduling_work.csv rename to activitysim/examples/production_semcog/configs/tour_scheduling_work.csv index e180d0c15..0d4b76169 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_work.csv +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_work.csv @@ -1,66 +1,69 @@ Label,Description,Expression,Coefficient +# writing out varibles we may need for estimation,,, +round_trip_auto_time_to_work,round_trip_auto_time_to_work,@df.roundtrip_auto_time_to_work,zero_coef +age,age,@df.age,zero_coef util_Mode_Choice_Logsum,Mode Choice Logsum,mode_choice_logsum,coef_Mode_Choice_Logsum -util_Female_Departure_before_7_am,Female - Departure before 7:00 am - Linear,@((df.female) & (df.start<9)) * df.departureLinearShift1,coef_Female_Departure_before_7_am -util_Female_Arrival_after_6_pm,Female - Arrival after 6:00 pm - Linear,@((df.female) & (df.end>30)) * df.arrivalLinearShift1,coef_Female_Arrival_after_6_pm -util_Female_with_preschool_child_Departure_before_7_am,Female with preschool child - Departure before 7:00 am - Linear,@((df.female) & (df.is_pre_drive_child_in_HH) & (df.start<9)) * df.departureLinearShift1,coef_Female_with_preschool_child_Departure_before_7_am -util_Female_with_preschool_child_Departure_after_7_am,Female with preschool child - Departure after 7:30 am - Linear,@((df.female) & (df.is_pre_drive_child_in_HH) & (df.start>9)) * df.departureLinearShift1,coef_Female_with_preschool_child_Departure_after_7_am -util_Female_with_preschool_child_Arrival_after_6_pm,Female with preschool child - Arrival after 6:00 pm - Linear,@((df.female) & (df.is_pre_drive_child_in_HH) & (df.end>30)) * df.arrivalLinearShift1,coef_Female_with_preschool_child_Arrival_after_6_pm -util_Low_income_lt_25000_Departure_before_7_am,Low income (<25000) - Departure before 7:00 am - Linear,@((df.is_income_less25K) & (df.start<9)) * df.departureLinearShift1,coef_Low_income_lt_25000_Departure_before_7_am -util_Low_income_lt_25000_Departure_after_7_am,Low income (<25000) - Departure after 7:30 am - Linear,@((df.is_income_less25K) & (df.start>9)) * df.departureLinearShift1,coef_Low_income_lt_25000_Departure_after_7_am +util_Female_Departure_before_7_am,Female - Departure before 7:00 am - Linear,@((df.female) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Female_Departure_before_7_am +util_Female_Arrival_after_6_pm,Female - Arrival after 6:00 pm - Linear,@((df.female) & (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Female_Arrival_after_6_pm +util_Female_with_preschool_child_Departure_before_7_am,Female with preschool child - Departure before 7:00 am - Linear,@((df.female) & (df.is_pre_drive_child_in_HH) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Female_with_preschool_child_Departure_before_7_am +util_Female_with_preschool_child_Departure_after_7_am,Female with preschool child - Departure after 7:30 am - Linear,@((df.female) & (df.is_pre_drive_child_in_HH) & (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_Female_with_preschool_child_Departure_after_7_am +util_Female_with_preschool_child_Arrival_after_6_pm,Female with preschool child - Arrival after 6:00 pm - Linear,@((df.female) & (df.is_pre_drive_child_in_HH) & (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Female_with_preschool_child_Arrival_after_6_pm +util_Low_income_lt_25000_Departure_before_7_am,Low income (<25000) - Departure before 7:00 am - Linear,@((df.is_income_less25K) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Low_income_lt_25000_Departure_before_7_am +util_Low_income_lt_25000_Departure_after_7_am,Low income (<25000) - Departure after 7:30 am - Linear,@((df.is_income_less25K) & (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_Low_income_lt_25000_Departure_after_7_am util_Low_income_lt_25000_Arrival_after_6_pm,Low income (<25000) - Arrival after 6:00 pm - Linear,@((df.is_income_less25K) & (df.start>30)) * df.arrivalLinearShift1,coef_Low_income_lt_25000_Arrival_after_6_pm -util_Med_income_25k_to_60k_Departure_before_7_am,Med income (25k to 60k) - Departure before 7:00 am - Linear,@((df.is_income_25K_to_60K) & (df.start<9)) * df.departureLinearShift1,coef_Med_income_25k_to_60k_Departure_before_7_am -util_Med_income_25k_to_60k_Arrival_after_6_pm,Med income (25k to 60k) - Arrival after 6:00 pm - Linear,@((df.is_income_25K_to_60K) & (df.end>30)) * df.arrivalLinearShift1,coef_Med_income_25k_to_60k_Arrival_after_6_pm -util_Medhigh_income_60k_to_120k_Departure_before_7_am,Med-high income (60k to 120k) - Departure before 7:00 am - Linear,@((df.is_income_60K_to_120K) & (df.start<9)) * df.departureLinearShift1,coef_Medhigh_income_60k_to_120k_Departure_before_7_am -util_Age_16_to_18_yrs_Departure_Before_7_am,Age 16 to 18 yrs - Departure Before 7:00 am,@(((df.age>=16) & (df.age<=18)) & (df.start<9)) * df.departureLinearShift1,coef_Age_16_to_18_yrs_Departure_Before_7_am -util_Age_16_to_18_yrs_Departure_After_7_am,Age 16 to 18 yrs - Departure After 7:30 am,@(((df.age>=16) & (df.age<=18)) & (df.start>9)) * df.departureLinearShift1,coef_Age_16_to_18_yrs_Departure_After_7_am -util_Age_19_to_24_yrs_Departure_After_7_am,Age 19 to 24 yrs - Departure After 7:30 am,@(((df.age>=19) & (df.age<=24)) & (df.start>9)) * df.departureLinearShift1,coef_Age_19_to_24_yrs_Departure_After_7_am -util_Age_25_to_40_yrs_Departure_Before_7_am,Age 25 to 40 yrs - Departure Before 7:00 am,@(((df.age>=25) & (df.age<=40)) & (df.start<9)) * df.departureLinearShift1,coef_Age_25_to_40_yrs_Departure_Before_7_am -util_Age_65_plus_yrs_Departure_After_7_am,Age 65+ yrs - Departure After 7:30 am,@((df.age>=65) & (df.start>9)) * df.departureLinearShift1,coef_Age_65_plus_yrs_Departure_After_7_am -util_Age_19_to_24_yrs_Arrival_after_6_pm,Age 19 to 24 yrs - Arrival after 6:00 pm ,@(((df.age>=19) & (df.age<=24)) & (df.end>30)) * df.arrivalLinearShift1,coef_Age_19_to_24_yrs_Arrival_after_6_pm -util_Age_25_to_40_yrs_Arrival_before_5_pm,Age 25 to 40 yrs - Arrival before 5:30 pm ,@(((df.age>=25) & (df.age<=40)) & (df.end<30)) * df.arrivalLinearShift1,coef_Age_25_to_40_yrs_Arrival_before_5_pm -util_Age_56_to_64_yrs_Arrival_after_6_pm,Age 56 to 64 yrs - Arrival after 6:00 pm ,@(((df.age>=56) & (df.age<65)) & (df.end>30)) * df.arrivalLinearShift1,coef_Age_56_to_64_yrs_Arrival_after_6_pm -util_Age_65_plus_yrs_Arrival_before_5_pm,Age 65+ yrs - Arrival before 5:30 pm ,@((df.age>=65) & (df.end<30)) * df.arrivalLinearShift1,coef_Age_65_plus_yrs_Arrival_before_5_pm -util_Age_65_plus_yrs_Arrival_after_6_pm,Age 65+ yrs - Arrival after 6:00 pm ,@((df.age>=65) & (df.end>30)) * df.arrivalLinearShift1,coef_Age_65_plus_yrs_Arrival_after_6_pm -util_Zero_auto_HH_Departure_before_7_am,Zero auto HH - Departure before 7:00 am - Linear,@((df.auto_ownership == 0) & (df.start<9)) * df.departureLinearShift1,coef_Zero_auto_HH_Departure_before_7_am -util_Zero_auto_HH_Arrival_after_6_pm,Zero auto HH - Arrival after 6:00 pm - Linear,@((df.auto_ownership == 0) & (df.end>30)) * df.arrivalLinearShift1,coef_Zero_auto_HH_Arrival_after_6_pm -util_Parttime_worker_Departure_before_7_am,Part-time worker - Departure before 7:00 am - Linear,@((df.ptype==2) & (df.start<9)) * df.departureLinearShift1,coef_Parttime_worker_Departure_before_7_am -util_Parttime_worker_Departure_after_7_am,Part-time worker - Departure after 7:30 am - Linear,@((df.ptype==2) & (df.start>9)) * df.departureLinearShift1,coef_Parttime_worker_Departure_after_7_am -util_Parttime_worker_Arrival_before_5_pm,Part-time worker - Arrival before 5:30 pm - Linear,@((df.ptype==2) & (df.end<30)) * df.arrivalLinearShift1,coef_Parttime_worker_Arrival_before_5_pm -util_Parttime_worker_Arrival_after_6_pm,Part-time worker - Arrival after 6:00 pm - Linear,@((df.ptype==2) & (df.end>30)) * df.arrivalLinearShift1,coef_Parttime_worker_Arrival_after_6_pm -util_University_student_Departure_after_7_am,University student - Departure after 7:30 am - Linear,@((df.ptype==3) & (df.start>9)) * df.departureLinearShift1,coef_University_student_Departure_after_7_am -util_University_student_Arrival_before_5_pm,University student - Arrival before 5:30 pm - Linear,@((df.ptype==3) & (df.end<30)) * df.arrivalLinearShift1,coef_University_student_Arrival_before_5_pm -util_University_student_Arrival_after_6_pm,University student - Arrival after 6:00 pm - Linear,@((df.ptype==3) & (df.end>30)) * df.arrivalLinearShift1,coef_University_student_Arrival_after_6_pm -#util_Blue_collar_Departure_before_7_am,#Blue collar - Departure before 7:00 am - Linear,@((df.work_segment==5) & (df.start<9)) * df.departureLinearShift1,coef_Blue_collar_Departure_before_7_am -#util_Blue_collar_Departure_after_7_am,#Blue collar - Departure after 7:30 am - Linear,@((df.work_segment==5)& (df.start>9)) * df.departureLinearShift1,coef_Blue_collar_Departure_after_7_am -#util_Blue_collar_Arrival_before_5_pm,#Blue collar - Arrival before 5:30 pm - Linear,@((df.work_segment==5)& (df.end<30)) * df.arrivalLinearShift1,coef_Blue_collar_Arrival_before_5_pm -#util_Service_Departure_before_7_am,#Service - Departure before 7:00 am - Linear,@((df.work_segment==2) & (df.start<9)) * df.departureLinearShift1,coef_Service_Departure_before_7_am -#util_Service_Departure_after_7_am,#Service - Departure after 7:30 am - Linear,@((df.work_segment==2) & (df.start>9)) * df.departureLinearShift1,coef_Service_Departure_after_7_am -#util_Service_Arrival_before_5_pm,#Service - Arrival before 5:30 pm - Linear,@((df.work_segment==2) & (df.end<30)) * df.arrivalLinearShift1,coef_Service_Arrival_before_5_pm -#util_Health_Departure_before_7_am,#Health - Departure before 7:00 am - Linear,@((df.work_segment==3) & (df.start<9)) * df.departureLinearShift1,coef_Health_Departure_before_7_am -#util_Health_Arrival_after_6_pm,#Health - Arrival after 6:00 pm - Linear,@((df.work_segment==3) & (df.end>30)) * df.arrivalLinearShift1,coef_Health_Arrival_after_6_pm -#util_Retail_and_food_Departure_after_7_am,#Retail and food - Departure after 7:30 am - Linear,@((df.work_segment==4) & (df.start>9)) * df.departureLinearShift1,coef_Retail_and_food_Departure_after_7_am -#util_Retail_and_food_Arrival_before_5_pm,#Retail and food - Arrival before 5:30 pm - Linear,@((df.work_segment==4) & (df.end<30)) * df.arrivalLinearShift1,coef_Retail_and_food_Arrival_before_5_pm -#util_Retail_and_food_Arrival_after_6_pm,#Retail and food - Arrival after 6:00 pm - Linear,@((df.work_segment==4) & (df.end>30)) * df.arrivalLinearShift1,coef_Retail_and_food_Arrival_after_6_pm -util_Time_SOV_freeflowto_destination_Departure_before_7_am,Time (SOV freeflow) to destination - Departure before 7:00 am - Linear,@(df.start<9) * df.departureLinearShift1* (df.roundtrip_auto_time_to_work),coef_Time_SOV_freeflowto_destination_Departure_before_7_am -util_Time_SOV_freeflowto_destination_Departure_after_7_am,Time (SOV freeflow) to destination - Departure after 7:30 am - Linear,@(df.start>9) * df.departureLinearShift1 * (df.roundtrip_auto_time_to_work),coef_Time_SOV_freeflowto_destination_Departure_after_7_am -util_Time_SOV_freeflowto_destination_Arrival_before_5_pm,Time (SOV freeflow) to destination - Arrival before 5:30 pm - Linear,@(df.end<30) * df.arrivalLinearShift1 * (df.roundtrip_auto_time_to_work),coef_Time_SOV_freeflowto_destination_Arrival_before_5_pm -util_Time_SOV_freeflowto_destination_Arrival_after_6_pm,Time (SOV freeflow) to destination - Arrival after 6:00 pm - Linear,@(df.end>30) * df.arrivalLinearShift1 * (df.roundtrip_auto_time_to_work),coef_Time_SOV_freeflowto_destination_Arrival_after_6_pm -util_Presence_of_NonWorking_Adult_in_the_HH_Departure_before_7_am,Presence of Non-Working Adult in the HH - Departure before 7:00 am - Linear,@((df.is_non_worker_in_HH) & (df.start<9)) * df.departureLinearShift1,coef_Presence_of_NonWorking_Adult_in_the_HH_Departure_before_7_am -util_Presence_of_NonWorking_Adult_in_the_HH_Arrival_before_5_pm,Presence of Non-Working Adult in the HH - Arrival before 5:30 pm - Linear,@((df.is_non_worker_in_HH) & (df.end<30)) * df.arrivalLinearShift1,coef_Presence_of_NonWorking_Adult_in_the_HH_Arrival_before_5_pm -util_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_before_7_am,Presence of Pre-Driving Age Children in the HH - Departure before 7:30 am - Linear,@((df.is_pre_drive_child_in_HH) & (df.start<9)) * df.departureLinearShift1,coef_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_before_7_am -util_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_after_8_am,Presence of Pre-Driving Age Children in the HH - Departure after 8 am - Linear,@((df.is_pre_drive_child_in_HH) & (df.start>9)) * df.departureLinearShift1,coef_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_after_8_am -util_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_before_5_pm,Presence of Pre-Driving Age Children in the HH - Arrival before 5:30 pm - Linear,@((df.is_pre_drive_child_in_HH) & (df.end<30)) * df.arrivalLinearShift1,coef_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_before_5_pm -util_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_after_6_pm,Presence of Pre-Driving Age Children in the HH - Arrival after 6:00 pm - Linear,@((df.is_pre_drive_child_in_HH)& (df.end>30)) * df.arrivalLinearShift1,coef_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_after_6_pm -util_First_of_2_plus_mandatory_tour_Departure_before_7_am,First of 2+ mandatory tour - Departure before 7:00 am,@(((df.tour_count>1) & (df.tour_num == 1)) & (df.start<9)) * df.departureLinearShift1,coef_First_of_2_plus_mandatory_tour_Departure_before_7_am -util_First_of_2_plus_mandatory_tour_Departure_after_7_am,First of 2+ mandatory tour - Departure after 7:30 am,@(((df.tour_count>1) & (df.tour_num == 1)) & (df.start>9)) * df.departureLinearShift1,coef_First_of_2_plus_mandatory_tour_Departure_after_7_am -util_First_of_2_plus_mandatory_tour_Duration_lt_9p5_hours,First of 2+ mandatory tour - Duration < 9.5 hours,@(((df.tour_count>1) & (df.tour_num == 1)) & (df.duration<21)) * df.durationShift,coef_First_of_2_plus_mandatory_tour_Duration_lt_9p5_hours -util_First_of_2_plus_mandatory_tour_Duration_gt_9p5_hours,First of 2+ mandatory tour - Duration > 9.5 hours,@(((df.tour_count>1) & (df.tour_num == 1)) & (df.duration<21)) * df.durationShift,coef_First_of_2_plus_mandatory_tour_Duration_gt_9p5_hours -util_2nd_or_later_of_2_plus_mandatory_tour_Departure_before_1_pm,2nd or later of 2+ mandatory tour - Departure before 1:30 pm,@(((df.tour_count>1) & (df.tour_num > 1)) & (df.start<22)) * df.departureLinearShift1,coef_2nd_or_later_of_2_plus_mandatory_tour_Departure_before_1_pm -util_2nd_or_later_of_2_plus_mandatory_tour_Departure_after_2_pm,2nd or later of 2+ mandatory tour - Departure after 2:00 pm,@(((df.tour_count>1) & (df.tour_num > 1)) & (df.start>22)) * df.departureLinearShift1,coef_2nd_or_later_of_2_plus_mandatory_tour_Departure_after_2_pm -util_2nd_or_later_of_2_plus_mandatory_tour_Duration_lt_9p5_hours,2nd or later of 2+ mandatory tour - Duration < 9.5 hours,@(((df.tour_count>1) & (df.tour_num > 1)) & (df.duration<21)) * df.durationShift,coef_2nd_or_later_of_2_plus_mandatory_tour_Duration_lt_9p5_hours -util_2nd_or_later_of_2_plus_mandatory_tour_Duration_gt_9p5_hours,2nd or later of 2+ mandatory tour - Duration > 9.5 hours,@(((df.tour_count>1) & (df.tour_num > 1)) & (df.duration<21)) * df.durationShift,coef_2nd_or_later_of_2_plus_mandatory_tour_Duration_gt_9p5_hours +util_Med_income_25k_to_60k_Departure_before_7_am,Med income (25k to 60k) - Departure before 7:00 am - Linear,@((df.is_income_25K_to_60K) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Med_income_25k_to_60k_Departure_before_7_am +util_Med_income_25k_to_60k_Arrival_after_6_pm,Med income (25k to 60k) - Arrival after 6:00 pm - Linear,@((df.is_income_25K_to_60K) & (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Med_income_25k_to_60k_Arrival_after_6_pm +util_Medhigh_income_60k_to_120k_Departure_before_7_am,Med-high income (60k to 120k) - Departure before 7:00 am - Linear,@((df.is_income_60K_to_120K) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Medhigh_income_60k_to_120k_Departure_before_7_am +util_Age_16_to_18_yrs_Departure_Before_7_am,Age 16 to 18 yrs - Departure Before 7:00 am,@(((df.age>=16) & (df.age<=18)) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Age_16_to_18_yrs_Departure_Before_7_am +util_Age_16_to_18_yrs_Departure_After_7_am,Age 16 to 18 yrs - Departure After 7:30 am,@(((df.age>=16) & (df.age<=18)) & (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_Age_16_to_18_yrs_Departure_After_7_am +util_Age_19_to_24_yrs_Departure_After_7_am,Age 19 to 24 yrs - Departure After 7:30 am,@(((df.age>=19) & (df.age<=24)) & (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_Age_19_to_24_yrs_Departure_After_7_am +util_Age_25_to_40_yrs_Departure_Before_7_am,Age 25 to 40 yrs - Departure Before 7:00 am,@(((df.age>=25) & (df.age<=40)) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Age_25_to_40_yrs_Departure_Before_7_am +util_Age_65_plus_yrs_Departure_After_7_am,Age 65+ yrs - Departure After 7:30 am,@((df.age>=65) & (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_Age_65_plus_yrs_Departure_After_7_am +util_Age_19_to_24_yrs_Arrival_after_6_pm,Age 19 to 24 yrs - Arrival after 6:00 pm ,@(((df.age>=19) & (df.age<=24)) & (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Age_19_to_24_yrs_Arrival_after_6_pm +util_Age_25_to_40_yrs_Arrival_before_5_pm,Age 25 to 40 yrs - Arrival before 5:30 pm ,@(((df.age>=25) & (df.age<=40)) & (df.end < df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Age_25_to_40_yrs_Arrival_before_5_pm +util_Age_56_to_64_yrs_Arrival_after_6_pm,Age 56 to 64 yrs - Arrival after 6:00 pm ,@(((df.age>=56) & (df.age<65)) & (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Age_56_to_64_yrs_Arrival_after_6_pm +util_Age_65_plus_yrs_Arrival_before_5_pm,Age 65+ yrs - Arrival before 5:30 pm ,@((df.age>=65) & (df.end < df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Age_65_plus_yrs_Arrival_before_5_pm +util_Age_65_plus_yrs_Arrival_after_6_pm,Age 65+ yrs - Arrival after 6:00 pm ,@((df.age>=65) & (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Age_65_plus_yrs_Arrival_after_6_pm +util_Zero_auto_HH_Departure_before_7_am,Zero auto HH - Departure before 7:00 am - Linear,@((df.auto_ownership == 0) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Zero_auto_HH_Departure_before_7_am +util_Zero_auto_HH_Arrival_after_6_pm,Zero auto HH - Arrival after 6:00 pm - Linear,@((df.auto_ownership == 0) & (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Zero_auto_HH_Arrival_after_6_pm +util_Parttime_worker_Departure_before_7_am,Part-time worker - Departure before 7:00 am - Linear,@((df.ptype==2) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Parttime_worker_Departure_before_7_am +util_Parttime_worker_Departure_after_7_am,Part-time worker - Departure after 7:30 am - Linear,@((df.ptype==2) & (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_Parttime_worker_Departure_after_7_am +util_Parttime_worker_Arrival_before_5_pm,Part-time worker - Arrival before 5:30 pm - Linear,@((df.ptype==2) & (df.end < df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Parttime_worker_Arrival_before_5_pm +util_Parttime_worker_Arrival_after_6_pm,Part-time worker - Arrival after 6:00 pm - Linear,@((df.ptype==2) & (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Parttime_worker_Arrival_after_6_pm +util_University_student_Departure_after_7_am,University student - Departure after 7:30 am - Linear,@((df.ptype==3) & (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_University_student_Departure_after_7_am +util_University_student_Arrival_before_5_pm,University student - Arrival before 5:30 pm - Linear,@((df.ptype==3) & (df.end < df.arrivalRefBin)) * df.arrivalLinearShift1,coef_University_student_Arrival_before_5_pm +util_University_student_Arrival_after_6_pm,University student - Arrival after 6:00 pm - Linear,@((df.ptype==3) & (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_University_student_Arrival_after_6_pm +#util_Blue_collar_Departure_before_7_am,#Blue collar - Departure before 7:00 am - Linear,@((df.work_segment==5) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Blue_collar_Departure_before_7_am +#util_Blue_collar_Departure_after_7_am,#Blue collar - Departure after 7:30 am - Linear,@((df.work_segment==5)& (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_Blue_collar_Departure_after_7_am +#util_Blue_collar_Arrival_before_5_pm,#Blue collar - Arrival before 5:30 pm - Linear,@((df.work_segment==5)& (df.end < df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Blue_collar_Arrival_before_5_pm +#util_Service_Departure_before_7_am,#Service - Departure before 7:00 am - Linear,@((df.work_segment==2) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Service_Departure_before_7_am +#util_Service_Departure_after_7_am,#Service - Departure after 7:30 am - Linear,@((df.work_segment==2) & (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_Service_Departure_after_7_am +#util_Service_Arrival_before_5_pm,#Service - Arrival before 5:30 pm - Linear,@((df.work_segment==2) & (df.end < df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Service_Arrival_before_5_pm +#util_Health_Departure_before_7_am,#Health - Departure before 7:00 am - Linear,@((df.work_segment==3) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Health_Departure_before_7_am +#util_Health_Arrival_after_6_pm,#Health - Arrival after 6:00 pm - Linear,@((df.work_segment==3) & (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Health_Arrival_after_6_pm +#util_Retail_and_food_Departure_after_7_am,#Retail and food - Departure after 7:30 am - Linear,@((df.work_segment==4) & (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_Retail_and_food_Departure_after_7_am +#util_Retail_and_food_Arrival_before_5_pm,#Retail and food - Arrival before 5:30 pm - Linear,@((df.work_segment==4) & (df.end < df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Retail_and_food_Arrival_before_5_pm +#util_Retail_and_food_Arrival_after_6_pm,#Retail and food - Arrival after 6:00 pm - Linear,@((df.work_segment==4) & (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Retail_and_food_Arrival_after_6_pm +util_Time_SOV_freeflowto_destination_Departure_before_7_am,Time (SOV freeflow) to destination - Departure before 7:00 am - Linear,@(df.start < df.departureRefBin) * df.departureLinearShift1* (df.roundtrip_auto_time_to_work),coef_Time_SOV_freeflowto_destination_Departure_before_7_am +util_Time_SOV_freeflowto_destination_Departure_after_7_am,Time (SOV freeflow) to destination - Departure after 7:30 am - Linear,@(df.start > df.departureRefBin) * df.departureLinearShift1 * (df.roundtrip_auto_time_to_work),coef_Time_SOV_freeflowto_destination_Departure_after_7_am +util_Time_SOV_freeflowto_destination_Arrival_before_5_pm,Time (SOV freeflow) to destination - Arrival before 5:30 pm - Linear,@(df.end < df.arrivalRefBin) * df.arrivalLinearShift1 * (df.roundtrip_auto_time_to_work),coef_Time_SOV_freeflowto_destination_Arrival_before_5_pm +util_Time_SOV_freeflowto_destination_Arrival_after_6_pm,Time (SOV freeflow) to destination - Arrival after 6:00 pm - Linear,@(df.end > df.arrivalRefBin) * df.arrivalLinearShift1 * (df.roundtrip_auto_time_to_work),coef_Time_SOV_freeflowto_destination_Arrival_after_6_pm +util_Presence_of_NonWorking_Adult_in_the_HH_Departure_before_7_am,Presence of Non-Working Adult in the HH - Departure before 7:00 am - Linear,@((df.is_non_worker_in_HH) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Presence_of_NonWorking_Adult_in_the_HH_Departure_before_7_am +util_Presence_of_NonWorking_Adult_in_the_HH_Arrival_before_5_pm,Presence of Non-Working Adult in the HH - Arrival before 5:30 pm - Linear,@((df.is_non_worker_in_HH) & (df.end < df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Presence_of_NonWorking_Adult_in_the_HH_Arrival_before_5_pm +util_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_before_7_am,Presence of Pre-Driving Age Children in the HH - Departure before 7:30 am - Linear,@((df.is_pre_drive_child_in_HH) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_before_7_am +util_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_after_8_am,Presence of Pre-Driving Age Children in the HH - Departure after 8 am - Linear,@((df.is_pre_drive_child_in_HH) & (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_after_8_am +util_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_before_5_pm,Presence of Pre-Driving Age Children in the HH - Arrival before 5:30 pm - Linear,@((df.is_pre_drive_child_in_HH) & (df.end < df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_before_5_pm +util_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_after_6_pm,Presence of Pre-Driving Age Children in the HH - Arrival after 6:00 pm - Linear,@((df.is_pre_drive_child_in_HH)& (df.end > df.arrivalRefBin)) * df.arrivalLinearShift1,coef_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_after_6_pm +util_First_of_2_plus_mandatory_tour_Departure_before_7_am,First of 2+ mandatory tour - Departure before 7:00 am,@(((df.tour_count>1) & (df.tour_num == 1)) & (df.start < df.departureRefBin)) * df.departureLinearShift1,coef_First_of_2_plus_mandatory_tour_Departure_before_7_am +util_First_of_2_plus_mandatory_tour_Departure_after_7_am,First of 2+ mandatory tour - Departure after 7:30 am,@(((df.tour_count>1) & (df.tour_num == 1)) & (df.start > df.departureRefBin)) * df.departureLinearShift1,coef_First_of_2_plus_mandatory_tour_Departure_after_7_am +util_First_of_2_plus_mandatory_tour_Duration_lt_dur_ref,First of 2+ mandatory tour - Duration < 9.5 hours,@(((df.tour_count>1) & (df.tour_num == 1)) & (df.end < df.durationRefBin)) * df.durationShift,coef_First_of_2_plus_mandatory_tour_Duration_lt_dur_ref +util_First_of_2_plus_mandatory_tour_Duration_gt_dur_ref,First of 2+ mandatory tour - Duration > 9.5 hours,@(((df.tour_count>1) & (df.tour_num == 1)) & (df.end > df.durationRefBin)) * df.durationShift,coef_First_of_2_plus_mandatory_tour_Duration_gt_dur_ref +util_2nd_or_later_of_2_plus_mandatory_tour_Departure_before_1_pm,2nd or later of 2+ mandatory tour - Departure before 1:30 pm,@(((df.tour_count>1) & (df.tour_num > 1)) & (df.start<22)) * (((22-df.start)*(df.start<22)) + ((df.start-22)*(df.start>22))),coef_2nd_or_later_of_2_plus_mandatory_tour_Departure_before_1_pm +util_2nd_or_later_of_2_plus_mandatory_tour_Departure_after_2_pm,2nd or later of 2+ mandatory tour - Departure after 2:00 pm,@(((df.tour_count>1) & (df.tour_num > 1)) & (df.start>22)) * (((22-df.start)*(df.start<22)) + ((df.start-22)*(df.start>22))),coef_2nd_or_later_of_2_plus_mandatory_tour_Departure_after_2_pm +util_2nd_or_later_of_2_plus_mandatory_tour_Duration_lt_dur_ref,2nd or later of 2+ mandatory tour - Duration < 9.5 hours,@(((df.tour_count>1) & (df.tour_num > 1)) & (df.end < df.durationRefBin)) * df.durationShift,coef_2nd_or_later_of_2_plus_mandatory_tour_Duration_lt_dur_ref +util_2nd_or_later_of_2_plus_mandatory_tour_Duration_gt_dur_ref,2nd or later of 2+ mandatory tour - Duration > 9.5 hours,@(((df.tour_count>1) & (df.tour_num > 1)) & (df.end > df.durationRefBin)) * df.durationShift,coef_2nd_or_later_of_2_plus_mandatory_tour_Duration_gt_dur_ref #,#Departure Constants,,coef_Departure_Constants -util_Departure_Constant_Shift_for_every_30_minutes_before_6_am,Departure Constant: Shift for every 30 minutes before 6:00 am - Linear,"@(df.start<6) * ((np.minimum(6-df.start,48)*(df.start<6)) + (np.minimum(df.start-13,21)*(df.start>13)))",coef_Departure_Constant_Shift_for_every_30_minutes_before_6_am +util_Departure_Constant_Shift_for_every_30_minutes_before_6_am,Departure Constant: Shift for every 30 minutes before 6:00 am - Linear,@((df.start<7) * (7-df.start)),coef_Departure_Constant_Shift_for_every_30_minutes_before_6_am util_Departure_Constant_Before_06_AM,Departure Constant: Before 06:00 AM,start<7,coef_Departure_Constant_Before_06_AM util_Departure_Constant_06_AM_06_AM_7,Departure Constant: 06:00 AM - 06:30 AM (7) ,start==7,coef_Departure_Constant_06_AM_06_AM_7 util_Departure_Constant_06_AM_07_AM_8,Departure Constant: 06:30 AM - 07:00 AM (8) ,start==8,coef_Departure_Constant_06_AM_07_AM_8 @@ -69,9 +72,9 @@ util_Departure_Constant_07_AM_08_AM_10,Departure Constant: 07:30 AM - 08:00 AM ( util_Departure_Constant_08_AM_08_AM_11,Departure Constant: 08:00 AM - 08:30 AM (11) ,start==11,coef_Departure_Constant_08_AM_08_AM_11 util_Departure_Constant_08_AM_09_AM_12,Departure Constant: 08:30 AM - 09:00 AM (12) ,start==12,coef_Departure_Constant_08_AM_09_AM_12 util_Departure_Constant_After_09_AM,Departure Constant: After 09:00 AM,start>12,coef_Departure_Constant_After_09_AM -util_Departure_Constant_Shift_for_every_30_minutes_after_9_am_Square_Root,Departure Constant: Shift for every 30 minutes after 9:30 am - Square Root,"@(df.start>13) * (((np.minimum(6-df.start,48)*(df.start<6)) + (np.minimum(df.start-13,21)*(df.start>13))) ** 0.5)",coef_Departure_Constant_Shift_for_every_30_minutes_after_9_am_Square_Root +util_Departure_Constant_Shift_for_every_30_minutes_after_9_am_Square_Root,Departure Constant: Shift for every 30 minutes after 9:30 am - Square Root,"@((df.start>13) * (np.maximum(df.start-13,0) ** 0.5))",coef_Departure_Constant_Shift_for_every_30_minutes_after_9_am_Square_Root #,#Arrival Constants,,coef_Arrival_Constants -util_Arrival_Constant_Shift_for_every_30_minutes_before_3_pm,Arrival Constant: Shift for every 30 minutes before 3:00 pm - Linear,"@(df.end<25) * ((np.minimum(25-df.end, 15)*(df.end<25))+ (np.minimum(df.end-35,11)*(df.end>35)))",coef_Arrival_Constant_Shift_for_every_30_minutes_before_3_pm +util_Arrival_Constant_Shift_for_every_30_minutes_before_3_pm,Arrival Constant: Shift for every 30 minutes before 3:00 pm - Linear,@((df.end<25) * (25-df.end)),coef_Arrival_Constant_Shift_for_every_30_minutes_before_3_pm util_Arrival_Constant_Before_03_PM,Arrival Constant: Before 03:30 PM,end<26,coef_Arrival_Constant_Before_03_PM util_Arrival_Constant_03_PM_04_PM_26,Arrival Constant: 03:30 PM - 04:00 PM (26) ,end==26,coef_Arrival_Constant_03_PM_04_PM_26 util_Arrival_Constant_04_PM_04_PM_27,Arrival Constant: 04:00 PM - 04:30 PM (27) ,end==27,coef_Arrival_Constant_04_PM_04_PM_27 @@ -83,9 +86,9 @@ util_Arrival_Constant_06_PM_7_PM_32,Arrival Constant: 06:30 PM - 7:00 PM (32) ,e util_Arrival_Constant_7_PM_7_PM_33,Arrival Constant: 7:00 PM - 7:30 PM (33) ,end==33,coef_Arrival_Constant_7_PM_7_PM_33 util_Arrival_Constant_7_PM_8_PM_34,Arrival Constant: 7:30 PM - 8:00 PM (34) ,end==34,coef_Arrival_Constant_7_PM_8_PM_34 util_Arrival_Constant_After_08_PM,Arrival Constant: After 08:00 PM,end>34,coef_Arrival_Constant_After_08_PM -util_Arrival_Constant_Shift_for_every_30_minutes_after_6_pm_Square_root,Arrival Constant: Shift for every 30 minutes after 6:30 pm - Square root,"@(df.end>35) * (((np.minimum(25-df.end, 15)*(df.end<25))+ (np.minimum(df.end-35,11)*(df.end>35))) ** 0.5)",coef_Arrival_Constant_Shift_for_every_30_minutes_after_6_pm_Square_root +util_Arrival_Constant_Shift_for_every_30_minutes_after_830_pm_Square_root,Arrival Constant: Shift for every 30 minutes after 830 pm - Square root,"@((df.end>35) * (np.maximum(df.end-35,0) ** 0.5))",coef_Arrival_Constant_Shift_for_every_30_minutes_after_830_pm_Square_root #,#Duration Constants,,coef_Duration_Constants -util_Duration_Constant_Shift_for_every_30_minutes_less_than_8p5_hrs,Duration Constant: Shift for every 30 minutes less than 8.5 hrs - Linear,"@(df.duration<16) * ((np.minimum(16-df.duration,47)*(df.duration<16)) + (np.minimum(df.duration-25,10)*(df.duration>25)))",coef_Duration_Constant_Shift_for_every_30_minutes_less_than_8p5_hrs +util_Duration_Constant_Shift_for_every_30_minutes_less_than_8p5_hrs,Duration Constant: Shift for every 30 minutes less than 8.5 hrs - Linear,@((df.duration<17) * (17-df.duration)),coef_Duration_Constant_Shift_for_every_30_minutes_less_than_8p5_hrs util_Duration_Constant_Shorter_than_8p5_hrs,Duration Constant: Shorter than 8.5 hrs,duration<17,coef_Duration_Constant_Shorter_than_8p5_hrs util_Duration_Constant_8p5_hours,Duration Constant: 8.5 hours,duration==17,coef_Duration_Constant_8p5_hours util_Duration_Constant_9_hours,Duration Constant: 9 hours,duration==18,coef_Duration_Constant_9_hours @@ -96,5 +99,9 @@ util_Duration_Constant_11_hours,Duration Constant: 11 hours,duration==22,coef_Du util_Duration_Constant_11p5_hours,Duration Constant: 11.5 hours,duration==23,coef_Duration_Constant_11p5_hours util_Duration_Constant_12_hours,Duration Constant: 12 hours,duration==24,coef_Duration_Constant_12_hours util_Duration_Constant_Longer_than_12_hrs,Duration Constant: Longer than 12 hrs,duration>24,coef_Duration_Constant_Longer_than_12_hrs -util_Duration_Constant_Shift_for_every_30_minutes_more_than_10_hrs,Duration Constant: Shift for every 30 minutes more than 10 hrs - Linear,"@(df.duration>25) * ((np.minimum(16-df.duration,47)*(df.duration<16)) + (np.minimum(df.duration-25,10)*(df.duration>25)))",coef_Duration_Constant_Shift_for_every_30_minutes_more_than_10_hrs +util_Duration_Constant_Shift_for_every_30_minutes_more_than_12_hrs,Duration Constant: Shift for every 30 minutes more than 12 hrs - Linear,@((df.duration>24) * (df.duration-24)),coef_Duration_Constant_Shift_for_every_30_minutes_more_than_12_hrs util_Calibration_constant_Duration_0,Calibration constant: Duration = 0,duration == 0,coef_Calibration_constant_Duration_0 +#,,, +#,,, +util_Departure_Constant_EA,Departure Constant: Before 06:30 AM,start<8,0.25 +util_Departure_Constant_Before_AM,Departure Constant: AM period,start>7 & start <13,-0.12 diff --git a/activitysim/examples/production_semcog/configs/tour_scheduling_work_coeffs.csv b/activitysim/examples/production_semcog/configs/tour_scheduling_work_coeffs.csv new file mode 100644 index 000000000..e8d9607f9 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/tour_scheduling_work_coeffs.csv @@ -0,0 +1,98 @@ +coefficient_name,value,constrain +coef_Mode_Choice_Logsum,0.2,T +coef_Female_Departure_before_7_am,-0.21983073617010354,F +coef_Female_Arrival_after_6_pm,-0.028931718675078898,F +coef_Female_with_preschool_child_Departure_before_7_am,0.0,F +coef_Female_with_preschool_child_Departure_after_7_am,0.0,F +coef_Female_with_preschool_child_Arrival_after_6_pm,0.0,F +coef_Low_income_lt_25000_Departure_before_7_am,0.23142273676542863,F +coef_Low_income_lt_25000_Departure_after_7_am,0.06394624853227485,F +coef_Low_income_lt_25000_Arrival_after_6_pm,-0.2101481937242358,F +coef_Med_income_25k_to_60k_Departure_before_7_am,0.20582925253502693,F +coef_Med_income_25k_to_60k_Arrival_after_6_pm,0.030759330025131475,F +coef_Medhigh_income_60k_to_120k_Departure_before_7_am,0.12339331900370523,F +coef_Age_16_to_18_yrs_Departure_Before_7_am,0.0,F +coef_Age_16_to_18_yrs_Departure_After_7_am,0.1569218088558017,F +coef_Age_19_to_24_yrs_Departure_After_7_am,0.03280621940285348,F +coef_Age_25_to_40_yrs_Departure_Before_7_am,-0.14071003044101923,F +coef_Age_65_plus_yrs_Departure_After_7_am,0.0,F +coef_Age_19_to_24_yrs_Arrival_after_6_pm,0.03801692388513126,F +coef_Age_25_to_40_yrs_Arrival_before_5_pm,-0.028091109013424525,F +coef_Age_56_to_64_yrs_Arrival_after_6_pm,0.0,F +coef_Age_65_plus_yrs_Arrival_before_5_pm,0.0,F +coef_Age_65_plus_yrs_Arrival_after_6_pm,0.0,F +coef_Zero_auto_HH_Departure_before_7_am,0.0,F +coef_Zero_auto_HH_Arrival_after_6_pm,0.054809482440729494,F +coef_Parttime_worker_Departure_before_7_am,-0.465300506980724,F +coef_Parttime_worker_Departure_after_7_am,0.24035601017298427,F +coef_Parttime_worker_Arrival_before_5_pm,0.27263218681666973,F +coef_Parttime_worker_Arrival_after_6_pm,-0.2533496036708649,F +coef_University_student_Departure_after_7_am,0.10708190818422741,F +coef_University_student_Arrival_before_5_pm,0.0,F +coef_University_student_Arrival_after_6_pm,-0.0784130766004373,F +coef_Blue_collar_Departure_before_7_am,0.327242475,F +coef_Blue_collar_Departure_after_7_am,0.047214248,F +coef_Blue_collar_Arrival_before_5_pm,0.04197056,F +coef_Service_Departure_before_7_am,0.117783508,F +coef_Service_Departure_after_7_am,0.081611629,F +coef_Service_Arrival_before_5_pm,0.0,T +coef_Health_Departure_before_7_am,0.135275931,F +coef_Health_Arrival_after_6_pm,0.062010123,F +coef_Retail_and_food_Departure_after_7_am,0.076302969,F +coef_Retail_and_food_Arrival_before_5_pm,0.052905387,F +coef_Retail_and_food_Arrival_after_6_pm,0.0270691939999999,F +coef_Time_SOV_freeflowto_destination_Departure_before_7_am,0.006152588569993294,F +coef_Time_SOV_freeflowto_destination_Departure_after_7_am,-0.002638509520279399,F +coef_Time_SOV_freeflowto_destination_Arrival_before_5_pm,-0.003924739241949497,F +coef_Time_SOV_freeflowto_destination_Arrival_after_6_pm,0.0016423390591779922,F +coef_Presence_of_NonWorking_Adult_in_the_HH_Departure_before_7_am,0.0,F +coef_Presence_of_NonWorking_Adult_in_the_HH_Arrival_before_5_pm,0.0,F +coef_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_before_7_am,-0.08289214126546349,F +coef_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_after_8_am,0.0,F +coef_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_before_5_pm,0.0,F +coef_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_after_6_pm,-0.04292555821779037,F +coef_First_of_2_plus_mandatory_tour_Departure_before_7_am,-0.15631713590985458,F +coef_First_of_2_plus_mandatory_tour_Departure_after_7_am,-0.037321682863975456,F +coef_First_of_2_plus_mandatory_tour_Duration_lt_dur_ref,0.3054062365147087,F +coef_First_of_2_plus_mandatory_tour_Duration_gt_dur_ref,0.15794972916369113,F +coef_2nd_or_later_of_2_plus_mandatory_tour_Departure_before_1_pm,0.0,F +coef_2nd_or_later_of_2_plus_mandatory_tour_Departure_after_2_pm,-0.13397035652802908,F +coef_2nd_or_later_of_2_plus_mandatory_tour_Duration_lt_dur_ref,0.45835848769473103,F +coef_2nd_or_later_of_2_plus_mandatory_tour_Duration_gt_dur_ref,0.5272527491008135,F +coef_Departure_Constant_Shift_for_every_30_minutes_before_6_am,-0.7231020452773588,F +coef_Departure_Constant_Before_06_AM,-0.1915960040171813,F +coef_Departure_Constant_06_AM_06_AM_7,-0.5420940244335356,F +coef_Departure_Constant_06_AM_07_AM_8,-0.0814829941363625,F +coef_Departure_Constant_07_AM_07_AM_9,0.0,T +coef_Departure_Constant_07_AM_08_AM_10,-0.12487604386728021,F +coef_Departure_Constant_08_AM_08_AM_11,-0.4486786777966309,F +coef_Departure_Constant_08_AM_09_AM_12,-0.9838612097965408,F +coef_Departure_Constant_After_09_AM,-1.5618817419634867,F +coef_Departure_Constant_Shift_for_every_30_minutes_after_9_am_Square_Root,-0.5783447729979645,F +coef_Arrival_Constant_Shift_for_every_30_minutes_before_3_pm,-0.20009504631293196,F +coef_Arrival_Constant_Before_03_PM,-0.8629231486548913,F +coef_Arrival_Constant_03_PM_04_PM_26,-0.644880302920333,F +coef_Arrival_Constant_04_PM_04_PM_27,-0.3047263117628279,F +coef_Arrival_Constant_04_PM_05_PM_28,-0.1886361914686483,F +coef_Arrival_Constant_05_PM_05_PM_29,0.0,F +coef_Arrival_Constant_05_PM_06_PM_30,0.2500583541484266,T +coef_Arrival_Constant_06_PM_06_PM_31,0.23990107930944812,F +coef_Arrival_Constant_06_PM_7_PM_32,0.15526238473246975,F +coef_Arrival_Constant_7_PM_7_PM_33,0.0,F +coef_Arrival_Constant_7_PM_8_PM_34,-0.18208024865786762,F +coef_Arrival_Constant_After_08_PM,0.0,F +coef_Arrival_Constant_Shift_for_every_30_minutes_after_830_pm_Square_root,0.0,F +coef_Duration_Constant_Shift_for_every_30_minutes_less_than_8p5_hrs,-0.10663128725700759,F +coef_Duration_Constant_Shorter_than_8p5_hrs,0.0,F +coef_Duration_Constant_8p5_hours,-0.2403003279562287,F +coef_Duration_Constant_9_hours,0.0,F +coef_Duration_Constant_9p5_hours,0.0,F +coef_Duration_Constant_10_hours,0.0,F +coef_Duration_Constant_10p5_hours,-0.3088419298533547,T +coef_Duration_Constant_11_hours,-0.6583531336885191,F +coef_Duration_Constant_11p5_hours,-0.8734017033609268,F +coef_Duration_Constant_12_hours,-1.3551244638084843,F +coef_Duration_Constant_Longer_than_12_hrs,-1.0959910217157498,F +coef_Duration_Constant_Shift_for_every_30_minutes_more_than_12_hrs,-0.4918560543397093,F +coef_Calibration_constant_Duration_0,-1.2069106964427703,F +zero_coef,0.0,T diff --git a/activitysim/examples/production_semcog/configs/transit_pass_ownership.csv b/activitysim/examples/production_semcog/configs/transit_pass_ownership.csv new file mode 100644 index 000000000..1136ca1f9 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/transit_pass_ownership.csv @@ -0,0 +1,28 @@ +Label,Description,Expression,no_pass,pass +util_ft,Full-time worker,@df.pemploy==PEMPLOY_FULL,0,coef_ft_pass +util_pt,Part-time worker,@df.pemploy==PEMPLOY_PART,0,coef_pt_pass +util_un,University/College,@df.ptype==PTYPE_SCHOOL,0,coef_un_pass +util_nw,Non-working adult,@df.ptype==PTYPE_NONWORK,0,coef_nw_pass +util_rt,Retired,@df.ptype==PTYPE_RETIRED,0,coef_rt_pass +util_inc1,0-$9k,"@df.income.between(0, 9000)",0,coef_inc1_pass +util_inc2,$10-$24k,"@df.income.between(10000, 24000)",0,coef_inc2_pass +util_inc3,$25-$34k,"@df.income.between(25000,34000)",0,coef_inc3_pass +util_inc4,$35-$49k,"@df.income.between(35000,49000)",0,coef_inc4_pass +util_inc10,$250k+,@df.income >= 250000,0,coef_inc10_pass +util_na20,NAICS 20 (mining/utilities/construct),@df.industry_naics=='20',0,coef_na20_pas +util_na30,NAICS 30 (manufacturing,@df.industry_naics=='30',0,coef_na30_pas +util_na50,NAICS 50 (Info/Fin/insur/real estate/prof/sci/tech/manage/admin),@df.industry_naics=='50',0,coef_na50_pas +util_na70,NAICS 70 (Entertain/accom),@df.industry_naics=='70',0,coef_na70_pas +util_na80,NAICS 80 (Other services),@df.industry_naics=='80',0,coef_na80_pas +util_publ,NAICS 90 (Public admin),@df.industry_naics=='90',0,coef_publ_pas +#approximate measure for the time being,,,, +util_wrkamt,Auto minus transit time (work),@df.work_auto_savings * -1,0,coef_wrkamt_pas +util_subs,Subsidy offered,@df.transit_pass_subsidy,0,coef_subs_pas +utils_pass_asc,Constant,1,0,coef_pass_asc +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_na_ASC,ptype_na calibration constant,@(df.ptype == 4) | (df.ptype==5),0,coef_na_asc +util_da_ASC,ptype_da calibration constant,@df.ptype == 6,0,coef_da_asc +util_nd_ASC,ptype_nd calibration constant,@df.ptype == 7,0,coef_nd_asc +util_ps_ASC,ptype_ps calibration constant,@df.ptype == 8,0,coef_ps_asc diff --git a/activitysim/examples/prototype_semcog/configs/transit_pass_ownership.yaml b/activitysim/examples/production_semcog/configs/transit_pass_ownership.yaml similarity index 100% rename from activitysim/examples/prototype_semcog/configs/transit_pass_ownership.yaml rename to activitysim/examples/production_semcog/configs/transit_pass_ownership.yaml diff --git a/activitysim/examples/prototype_semcog/configs/transit_pass_ownership_coeffs.csv b/activitysim/examples/production_semcog/configs/transit_pass_ownership_coeffs.csv similarity index 65% rename from activitysim/examples/prototype_semcog/configs/transit_pass_ownership_coeffs.csv rename to activitysim/examples/production_semcog/configs/transit_pass_ownership_coeffs.csv index aa756b4c0..7b76a0762 100644 --- a/activitysim/examples/prototype_semcog/configs/transit_pass_ownership_coeffs.csv +++ b/activitysim/examples/production_semcog/configs/transit_pass_ownership_coeffs.csv @@ -1,4 +1,4 @@ -coefficient_name,coefficient_name,value,constrain +coefficient_name,coefficient_name.1,value,constrain coef_ft_pass,Full-time worker,2.034739841,F coef_pt_pass,Part-time worker,1.934451611,F coef_un_pass,University/College,2.38777737,F @@ -18,3 +18,10 @@ coef_na80_pas,NAICS 80 (Other services),-0.585251651,F coef_publ_pas,NAICS 90 (Public admin),0.30410587,F coef_subs_pas,Subsidy offered,1.967569275,F coef_pass_asc,Constant,-3.932862618,F +coef_ft_asc,ptype_ft calibration constant,-1.7556306647985378,F +coef_pt_asc,ptype_pt calibration constant,-0.9993175989158146,F +coef_un_asc,ptype_un calibration constant,-0.1879099307931272,F +coef_na_asc,ptype_na calibration constant,-0.8203511274990747,F +coef_da_asc,ptype_da calibration constant,1.0596420838216658,F +coef_nd_asc,ptype_nd calibration constant,-2.0998091820041402,F +coef_ps_asc,ptype_ps calibration constant,-2.0,F diff --git a/activitysim/examples/production_semcog/configs/transit_pass_subsidy.csv b/activitysim/examples/production_semcog/configs/transit_pass_subsidy.csv new file mode 100644 index 000000000..95d957491 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/transit_pass_subsidy.csv @@ -0,0 +1,17 @@ +Label,Description,Expression,no_subsidy,subsidy +util_ft,Full-time worker,@df.pemploy==PEMPLOY_FULL,0,coef_ft +util_pt,Part-time worker,@df.pemploy==PEMPLOY_PART,0,coef_pt +util_un,University/College,@df.ptype==PTYPE_SCHOOL,0,coef_un +util_na70,NAICS 70 (Entertain/accom),@df.industry_naics=='70',0,coef_na70 +util_na80,NAICS 80 (Other services),@df.industry_naics=='80',0,coef_na80 +util_publ,NAICS 90 (Public admin),@df.industry_naics=='90',0,coef_publ +util_tr_hh_emp,Household transit accessibility,@df.trPKHH,0,coef_tr_hh_emp +util_pkcost,Daily parking cost (dollars),"@np.minimum(np.where(df.parking_hourly.isna(), 999, df.parking_hourly*9), df.parking_daily)",0,coef_pkcost +utils_sub_asc,Constant,1,0,coef_sub_asc +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_na_ASC,ptype_na calibration constant,@(df.ptype == 4) | (df.ptype == 5),0,coef_na_asc +util_da_ASC,ptype_da calibration constant,@df.ptype == 6,0,coef_da_asc +util_nd_ASC,ptype_nd calibration constant,@df.ptype == 7,0,coef_nd_asc +util_ps_ASC,ptype_ps calibration constant,@df.ptype == 8,0,coef_ps_asc diff --git a/activitysim/examples/prototype_semcog/configs/transit_pass_subsidy.yaml b/activitysim/examples/production_semcog/configs/transit_pass_subsidy.yaml similarity index 100% rename from activitysim/examples/prototype_semcog/configs/transit_pass_subsidy.yaml rename to activitysim/examples/production_semcog/configs/transit_pass_subsidy.yaml diff --git a/activitysim/examples/production_semcog/configs/transit_pass_subsidy_coeffs.csv b/activitysim/examples/production_semcog/configs/transit_pass_subsidy_coeffs.csv new file mode 100644 index 000000000..0dc71de39 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/transit_pass_subsidy_coeffs.csv @@ -0,0 +1,17 @@ +coefficient_name,coefficient_name.1,value,constrain +coef_ft,Full-time worker,1.8826656640000001,F +coef_pt,Part-time worker,1.360746182,F +coef_un,University/College,2.026985147,F +coef_na70,NAICS 70 (Entertain/accom),-0.659568416,F +coef_na80,NAICS 80 (Other services),-0.35258885799999995,F +coef_publ,NAICS 90 (Public admin),0.8649915709999999,F +coef_tr_hh_emp,Transit accessibility to households,0.049608562,F +coef_pkcost,Daily parking cost (dollars),0.060145818,F +coef_sub_asc,Constant,-5.138015944,F +coef_ft_asc,ptype_ft calibration constant,-1.4480580144656137,F +coef_pt_asc,ptype_pt calibration constant,-0.5618957069861918,F +coef_un_asc,ptype_un calibration constant,0.9180815482670087,F +coef_na_asc,ptype_na calibration constant,1.800286399805092,F +coef_da_asc,ptype_da calibration constant,1.1347405644999717,F +coef_nd_asc,ptype_nd calibration constant,-1.4385176853101924,F +coef_ps_asc,ptype_ps calibration constant,-2.0,F diff --git a/activitysim/examples/production_semcog/configs/trip_destination.csv b/activitysim/examples/production_semcog/configs/trip_destination.csv new file mode 100644 index 000000000..02a99b737 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/trip_destination.csv @@ -0,0 +1,17 @@ +Label,Description,Expression,work,univ,school,escort,shopping,eatout,othmaint,social,othdiscr,atwork +util_size_term,size term,"@np.log1p(size_terms.get(df.dest_taz, df.purpose))",coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one +util_no_attractions,no attractions,"@size_terms.get(df.dest_taz, df.purpose) == 0",coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE +#util_stop_zone_CDB_are_type,#stop zone CBD area type,"@reindex(land_use.area_type, df.dest_taz) < setting('cbd_threshold')",,,,,,,,,, +util_distance_inbound,distance (calibration adjustment individual - inbound),@(~df.is_joint & ~df.outbound) * (od_skims['DIST'] + dp_skims['DIST']),coef_util_distance_work_outbound,coef_util_distance_univ,coef_util_distance_school,coef_util_distance_escort,coef_util_distance_shopping,coef_util_distance_eatout,coef_util_distance_othmaint,coef_util_distance_social,coef_util_distance_othdiscr,coef_util_distance_atwork +util_distance_outbound,distance (calibration adjustment individual - outbound),@(~df.is_joint & df.outbound) * (od_skims['DIST'] + dp_skims['DIST']),coef_util_distance_work_inbound,coef_util_distance_univ,coef_util_distance_school,coef_util_distance_escort,coef_util_distance_shopping,coef_util_distance_eatout,coef_util_distance_othmaint,coef_util_distance_social,coef_util_distance_othdiscr,coef_util_distance_atwork +util_distance_joint,distance (calibration adjustment joint),@df.is_joint * (od_skims['DIST'] + dp_skims['DIST']),,,,coef_distance_joint,coef_distance_joint,coef_distance_joint,coef_distance_joint,coef_distance_joint,coef_distance_joint, +util_prox_home_outbound,stop proximity to home (outbound),@df.outbound * od_skims['DIST'],coef_prox_home_outbound_work,,,,,,,,, +util_prox_home_inbound,stop proximity to home (inbound),@~df.outbound * dp_skims['DIST'],coef_prox_home_inbound_work,,,,,,,,, +util_prox_dest_outbound,stop proximity to main destination (outbound),@df.outbound * dp_skims['DIST'],coef_prox_dest_outbound_work,,,,,,,,, +util_prox_dest_inbound,stop proximity to main destination (inbound),@~df.outbound * od_skims['DIST'],0,,,,,,,,, +#,,,,,,,,,,,, +util_sample_of_alternatives_correction_factor,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_mode_choice_logsum_os,Mode choice logsum from origin to stop,od_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum +util_stop_not_accessible_by_this_tour_mode,Can't access stop zone by this tour mode,(od_logsum < -100),coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE +util_mode_choice_logsum_sd,Mode choice logsum from stop to destination,dp_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum,coef_mode_choice_logsum +util_dest_not_accessible_by_this_tour_mode,Can't access destination zone by this tour mode,(dp_logsum < -100),coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE,coef_UNAVAILABLE diff --git a/activitysim/examples/prototype_semcog/configs/trip_destination.yaml b/activitysim/examples/production_semcog/configs/trip_destination.yaml old mode 100755 new mode 100644 similarity index 64% rename from activitysim/examples/prototype_semcog/configs/trip_destination.yaml rename to activitysim/examples/production_semcog/configs/trip_destination.yaml index e754e188b..a80ea1d7e --- a/activitysim/examples/prototype_semcog/configs/trip_destination.yaml +++ b/activitysim/examples/production_semcog/configs/trip_destination.yaml @@ -1,8 +1,8 @@ -SAMPLE_SIZE: 30 +SAMPLE_SPEC: trip_destination_sample.csv +SPEC: trip_destination.csv +COEFFICIENTS: trip_destination_coefficients.csv -DESTINATION_SAMPLE_SPEC: trip_destination_sample.csv -DESTINATION_SPEC: trip_destination.csv -COEFFICIENTS: _dummy_coefficients.csv +SAMPLE_SIZE: 30 LOGSUM_SETTINGS: trip_mode_choice.yaml @@ -15,8 +15,12 @@ DEST_CHOICE_SAMPLE_TABLE_NAME: trip_destination_sample # model-specific logsum-related settings TRIP_ORIGIN: origin ALT_DEST_COL_NAME: dest_taz +# PRIMARY_DEST: destination +# Fix to make sure the return leg sees the right distances PRIMARY_DEST: tour_leg_dest # must be created in preprocessor +# tour_mode is already in trips table, so we don't need it from tours +# (it is assigned in trip_destination_annotate_trips_preprocessor ) REDUNDANT_TOURS_MERGED_CHOOSER_COLUMNS: - tour_mode @@ -34,3 +38,6 @@ preprocessor: # drop failed trips and cleanup failed trip leg_mates for consistency # (i.e. adjust trip_count, trip_num, first for missing failed trips) CLEANUP: False + +# this setting is used by testing code to force failed trip_destination +# fail_some_trips_for_testing: False diff --git a/activitysim/examples/prototype_semcog/configs/trip_destination_annotate_trips_preprocessor.csv b/activitysim/examples/production_semcog/configs/trip_destination_annotate_trips_preprocessor.csv old mode 100755 new mode 100644 similarity index 72% rename from activitysim/examples/prototype_semcog/configs/trip_destination_annotate_trips_preprocessor.csv rename to activitysim/examples/production_semcog/configs/trip_destination_annotate_trips_preprocessor.csv index 9f2d502d3..fa2cc514f --- a/activitysim/examples/prototype_semcog/configs/trip_destination_annotate_trips_preprocessor.csv +++ b/activitysim/examples/production_semcog/configs/trip_destination_annotate_trips_preprocessor.csv @@ -7,7 +7,4 @@ Description,Target,Expression #,,not needed as school is not chosen as an intermediate trip destination #,_grade_school,"(df.primary_purpose == 'school') & reindex(persons.is_gradeschool, df.person_id)" #,size_segment,"df.primary_purpose.where(df.primary_purpose != 'school', np.where(_grade_school,'gradeschool', 'highschool'))" -,purpose_index_num,"size_terms.get_cols(df.purpose)" -,tour_mode_is_walk,"reindex(tours.tour_mode, df.tour_id)=='WALK'" -,tour_mode_is_bike,"reindex(tours.tour_mode, df.tour_id)=='BIKE'" -,tour_leg_dest,"np.where(df.outbound,reindex(tours.destination, df.tour_id), reindex(tours.origin, df.tour_id)).astype(int)" +,tour_leg_dest,"np.where(df.outbound,reindex(tours.destination, df.tour_id), reindex(tours.origin, df.tour_id))" diff --git a/activitysim/examples/production_semcog/configs/trip_destination_coefficients.csv b/activitysim/examples/production_semcog/configs/trip_destination_coefficients.csv new file mode 100644 index 000000000..c6fd18589 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/trip_destination_coefficients.csv @@ -0,0 +1,19 @@ +coefficient_name,value,constrain +coef_UNAVAILABLE,-999.0,T +coef_one,1,T +coef_mode_choice_logsum,1.821,F +coef_distance_joint,-0.1238,F +coef_util_distance_work_outbound,-0.04972591574229,F +coef_util_distance_work_inbound,0.147813278663948,F +coef_util_distance_univ,-0.0613,F +coef_util_distance_school,-0.1056,F +coef_util_distance_escort,-0.1491,F +coef_util_distance_shopping,-0.1192,F +coef_util_distance_eatout,-0.1029,F +coef_util_distance_othmaint,-0.0962,F +coef_util_distance_social,-0.1329,F +coef_util_distance_othdiscr,-0.126172224,F +coef_util_distance_atwork,-0.122334597,F +coef_prox_home_outbound_work,-0.3800,F +coef_prox_home_inbound_work,-0.1500,F +coef_prox_dest_outbound_work,-0.26,F diff --git a/activitysim/examples/prototype_semcog/configs/trip_destination_sample.csv b/activitysim/examples/production_semcog/configs/trip_destination_sample.csv old mode 100755 new mode 100644 similarity index 75% rename from activitysim/examples/prototype_semcog/configs/trip_destination_sample.csv rename to activitysim/examples/production_semcog/configs/trip_destination_sample.csv index 4a2f5de66..6a0a53480 --- a/activitysim/examples/prototype_semcog/configs/trip_destination_sample.csv +++ b/activitysim/examples/production_semcog/configs/trip_destination_sample.csv @@ -1,13 +1,13 @@ Description,Expression,work,univ,school,escort,shopping,eatout,othmaint,social,othdiscr,atwork ,_od_DIST@od_skims['DIST'],1,1,1,1,1,1,1,1,1,1 ,_dp_DIST@dp_skims['DIST'],1,1,1,1,1,1,1,1,1,1 -Not available if walk tour not within walking distance,@(df.tour_mode_is_walk) & (od_skims['DISTWALK'] > max_walk_distance),-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Not available if walk tour not within walking distance,@(df.tour_mode_is_walk) & (dp_skims['DISTWALK'] > max_walk_distance),-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Not available if bike tour not within biking distance,@(df.tour_mode_is_bike) & (od_skims['DISTBIKE'] > max_bike_distance),-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Not available if bike tour not within biking distance,@(df.tour_mode_is_bike) & (dp_skims['DISTBIKE'] > max_bike_distance),-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 +Not available if walk tour not within walking distance,@(df.tour_mode=='WALK') & (od_skims['DISTWALK'] > max_walk_distance),-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 +Not available if walk tour not within walking distance,@(df.tour_mode=='WALK') & (dp_skims['DISTWALK'] > max_walk_distance),-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 +Not available if bike tour not within biking distance,@(df.tour_mode=='BIKE') & (od_skims['DISTBIKE'] > max_bike_distance),-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 +Not available if bike tour not within biking distance,@(df.tour_mode=='BIKE') & (dp_skims['DISTBIKE'] > max_bike_distance),-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 #If transit tour is not in walk sub-zone it must be walkable,,,,,,,,,,, -size term,"@np.log1p(size_terms.get(df.dest_taz, df.purpose)) # sharrow: np.log1p(size_terms['sizearray'])",1,1,1,1,1,1,1,1,1,1 -no attractions,"@size_terms.get(df.dest_taz, df.purpose) == 0 # sharrow: size_terms['sizearray'] == 0",-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 +size term,"@np.log1p(size_terms.get(df.dest_taz, df.purpose))",1,1,1,1,1,1,1,1,1,1 +no attractions,"@size_terms.get(df.dest_taz, df.purpose) == 0",-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 #stop zone CBD area type,"@reindex(land_use.AreaType, df.dest_taz) < setting('cbd_threshold')",,,,,,,,,, distance (calibration adjustment individual - inbound),@(~df.is_joint & ~df.outbound) * (_od_DIST + _dp_DIST),-0.049725916,-0.0613,-0.1056,-0.1491,-0.1192,-0.1029,-0.0962,-0.1329,-0.126172224,-0.122334597 distance (calibration adjustment individual - outbound),@(~df.is_joint & df.outbound) * (_od_DIST + _dp_DIST),0.147813279,-0.0613,-0.1056,-0.1491,-0.1192,-0.1029,-0.0962,-0.1329,-0.126172224,-0.122334597 diff --git a/activitysim/examples/production_semcog/configs/trip_mode_choice.csv b/activitysim/examples/production_semcog/configs/trip_mode_choice.csv new file mode 100644 index 000000000..d3f994cc0 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/trip_mode_choice.csv @@ -0,0 +1,373 @@ +Label,Description,Expression,DRIVEALONE,SHARED2,SHARED3,WALK,BIKE,WALK_LOC,WALK_PRM,WALK_MIX,PNR_LOC,PNR_PRM,PNR_MIX,KNR_LOC,KNR_PRM,KNR_MIX,SCHOOLBUS,TAXI,TNC_SINGLE,TNC_SHARED +#Drive_alone_no_toll,#Drive alone no toll,,,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Unavailable,DRIVEALONE - Unavailable,sov_available == False,coef_unavailable,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Unavailable_for_persons_less_than_16,DRIVEALONE - Unavailable for persons less than 16,age < 16,coef_unavailable,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Unavailable_for_joint_tours,DRIVEALONE - Unavailable for joint tours,is_joint == True,coef_unavailable,,,,,,,,,,,,,,,,, +#util_DRIVEALONE_Unavailable_if_didn't_drive_to_work,DRIVEALONE - Unavailable if didn't drive to work,is_atwork_subtour & ~work_tour_is_SOV,coef_unavailable,,,,,,,,,,,,,,,,, +util_DRIVEALONE_In-vehicle_time,DRIVEALONE - In-vehicle time,@odt_skims['SOV_TIME'],coef_ivt,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Terminal_time,DRIVEALONE - Terminal time,@coef_walktimeshort_multiplier * df.total_terminal_time,coef_ivt,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Operating_cost_,DRIVEALONE - Operating cost ,@ivt_cost_multiplier * df.ivot * costPerMile * odt_skims['SOV_DIST'],coef_ivt,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Parking_cost_,DRIVEALONE - Parking cost ,@ivt_cost_multiplier * df.ivot * df.total_parking_cost,coef_ivt,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Person_is_between_16_and_19_years_old,DRIVEALONE - Person is between 16 and 19 years old,@(df.age >= 16) & (df.age <= 19),coef_age1619_da,,,,,,,,,,,,,,,,, +#Shared_ride_2,#Shared ride 2,,,,,,,,,,,,,,,,,,, +util_SHARED2_Unavailable,SHARED2 - Unavailable,hov2_available == False,,coef_unavailable,,,,,,,,,,,,,,,, +util_SHARED2_Unavailable_based_on_party_size,SHARED2 - Unavailable based on party size,is_joint & (number_of_participants > 2),,coef_unavailable,,,,,,,,,,,,,,,, +util_SHARED2_In-vehicle_time,SHARED2 - In-vehicle time,@odt_skims['HOV2_TIME'],,coef_ivt,,,,,,,,,,,,,,,, +util_SHARED2_Terminal_time,SHARED2 - Terminal time,@coef_walktimeshort_multiplier * df.total_terminal_time,,coef_ivt,,,,,,,,,,,,,,,, +util_SHARED2_Operating_cost,SHARED2 - Operating cost,@ivt_cost_multiplier * df.ivot * costPerMile * odt_skims['HOV2_DIST'],,coef_ivt,,,,,,,,,,,,,,,, +util_SHARED2_Parking_cost,SHARED2 - Parking cost,@ivt_cost_multiplier * df.ivot * df.total_parking_cost / costShareSr2,,coef_ivt,,,,,,,,,,,,,,,, +util_SHARED2_One_person_household,SHARED2 - One person household,@(df.hhsize == 1),,coef_hhsize1_sr,,,,,,,,,,,,,,,, +util_SHARED2_Two_person_household,SHARED2 - Two person household,@(df.hhsize == 2),,coef_hhsize2_sr,,,,,,,,,,,,,,,, +util_SHARED2_Person_is_16_years_old_or_older,SHARED2 - Person is 16 years old or older,@(df.age >= 16),,coef_age1619_da,,,,,,,,,,,,,,,, +#Shared_ride_3+,#Shared ride 3+,,,,,,,,,,,,,,,,,,, +util_SHARED3_Unavailable,SHARED3 - Unavailable,hov3_available == False,,,coef_unavailable,,,,,,,,,,,,,,, +util_SHARED3_Unavailable_based_joint_tour_mode,SHARED3 - Unavailable based joint tour mode,@df.is_joint & df.i_tour_mode.isin(I_SR2_MODES),,,coef_unavailable,,,,,,,,,,,,,,, +util_SHARED3_Unavailable_if_tour_mode_is_shared_2,SHARED3 - Unavailable if tour mode is shared 2,@df.i_tour_mode.isin(I_SR2_MODES),,,coef_unavailable,,,,,,,,,,,,,,, +util_SHARED3_In-vehicle_time,SHARED3 - In-vehicle time,@odt_skims['HOV3_TIME'],,,coef_ivt,,,,,,,,,,,,,,, +util_SHARED3_Terminal_time,SHARED3 - Terminal time,@coef_walktimeshort_multiplier * df.total_terminal_time,,,coef_ivt,,,,,,,,,,,,,,, +util_SHARED3_Operating_cost,SHARED3 - Operating cost,@ivt_cost_multiplier * df.ivot * costPerMile * odt_skims['HOV3_DIST'],,,coef_ivt,,,,,,,,,,,,,,, +util_SHARED3_Parking_cost,SHARED3 - Parking cost,@ivt_cost_multiplier * df.ivot * df.total_parking_cost / costShareSr3,,,coef_ivt,,,,,,,,,,,,,,, +util_SHARED3_One_person_household,SHARED3 - One person household,@(df.hhsize == 1),,,coef_hhsize1_sr,,,,,,,,,,,,,,, +util_SHARED3_Two_person_household,SHARED3 - Two person household,@(df.hhsize == 2),,,coef_hhsize2_sr,,,,,,,,,,,,,,, +util_SHARED3_Person_is_16_years_old_or_older,SHARED3 - Person is 16 years old or older,@(df.age >= 16),,,coef_age16p_sr,,,,,,,,,,,,,,, +#Walk,#Walk,,,,,,,,,,,,,,,,,,, +util_WALK_Time_up_to_2_miles,WALK - Time up to 2 miles,@coef_walktimeshort_multiplier * od_skims['DISTWALK'].clip(upper=walkThresh) * 60/walkSpeed,,,,coef_ivt,,,,,,,,,,,,,, +util_WALK_Time_beyond_2_of_a_miles,WALK - Time beyond 2 of a miles,@walktimelong_multiplier * (od_skims['DISTWALK'] - walkThresh).clip(lower=0) * 60/walkSpeed,,,,coef_ivt,,,,,,,,,,,,,, +util_WALK_Destination_zone_densityIndex,WALK - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,coef_ivt,,,,,,,,,,,,,, +#Bike,#Bike,,,,,,,,,,,,,,,,,,, +util_BIKE_Unavailable_if_tour_mode_is_not_bike,BIKE - Unavailable if tour mode is not bike,~tour_mode_is_bike,,,,,coef_unavailable,,,,,,,,,,,,, +#util_BIKE_Unavailable_if_didn't_bike_to_work,BIKE - Unavailable if didn't bike to work,is_atwork_subtour & ~work_tour_is_bike,,,,,coef_unavailable,,,,,,,,,,,,, +util_BIKE_Time_up_to_6_miles,BIKE - Time up to 6 miles,@coef_biketimeshort_multiplier * od_skims['DISTBIKE'].clip(upper=bikeThresh)*60/bikeSpeed,,,,,coef_ivt,,,,,,,,,,,,, +util_BIKE_Time_beyond_6_of_a_miles,BIKE - Time beyond 6 of a miles,@biketimelong_multiplier * (od_skims['DISTBIKE']-bikeThresh).clip(lower=0)*60/bikeSpeed,,,,,coef_ivt,,,,,,,,,,,,, +util_BIKE_Destination_zone_densityIndex,BIKE - Destination zone densityIndex,@density_index_multiplier*df.density_index,,,,,coef_ivt,,,,,,,,,,,,, +#Walk_to_Local,#Walk to Local,,,,,,,,,,,,,,,,,,, +util_WALK_LOC_Unavailable,WALK_LOC - Unavailable,walk_local_available == False,,,,,,coef_unavailable,,,,,,,,,,,, +util_WALK_LOC_In-vehicle_time,WALK_LOC - In-vehicle time,@odt_skims['WLK_LOC_IVT'],,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Short_iwait_time,WALK_LOC - Short iwait time,@coef_short_iwait_multiplier * (odt_skims['WLK_LOC_IWAIT']).clip(upper=waitThresh),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Long_iwait_time,WALK_LOC - Long iwait time,@coef_long_iwait_multiplier * (odt_skims['WLK_LOC_IWAIT']-waitThresh).clip(0),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_transfer_wait_time,WALK_LOC - transfer wait time,@coef_xwait_multiplier * odt_skims['WLK_LOC_XWAIT'],,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_number_of_transfers,WALK_LOC - number of transfers,@xfers_wlk_multiplier * (odt_skims['WLK_LOC_NT']).clip(0),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Walk_access_time,WALK_LOC - Walk access time,@coef_wacc_multiplier * (df.origin_local_time),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Walk_egress_time,WALK_LOC - Walk egress time,@coef_wegr_multiplier * (df.dest_local_time),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Walk_other_time,WALK_LOC - Walk other time,@coef_waux_multiplier * odt_skims['WLK_LOC_WAUX'],,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Fare,WALK_LOC - Fare,@ivt_cost_multiplier * df.ivot * df.WLKLOC_fare_discount * odt_skims['WLK_LOC_FARE'],,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Destination_zone_densityIndex,WALK_LOC - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Person_is_less_than_10_years_old,WALK_LOC - Person is less than 10 years old,@(df.age <= 10),,,,,,coef_age010_trn,,,,,,,,,,,, +#Walk_to_Premium,#Walk to Premium,,,,,,,,,,,,,,,,,,, +util_WALK_PRM_Unavailable,WALK_PRM - Unavailable,walk_premium_available == False,,,,,,,coef_unavailable,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time,WALK_PRM - In-vehicle time,@odt_skims['WLK_PRM_IVT'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time_on_PMov,WALK_PRM - In-vehicle time on PMov,@(coef_ivt_pmov_multiplier - 1) * odt_skims['WLK_PRM_IVTT_PMov'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time_on_StCar,WALK_PRM - In-vehicle time on StCar,@(coef_ivt_stcar_multiplier - 1) * odt_skims['WLK_PRM_IVTT_StCar'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time_on_BRT,WALK_PRM - In-vehicle time on BRT,@(coef_ivt_brt_multiplier - 1) * odt_skims['WLK_PRM_IVTT_Brt'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time_on_URB,WALK_PRM - In-vehicle time on URB,@(coef_ivt_urb_multiplier - 1) * odt_skims['WLK_PRM_IVTT_UrbRail'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time_on_COM,WALK_PRM - In-vehicle time on COM,@(coef_ivt_com_multiplier - 1) * odt_skims['WLK_PRM_IVTT_ComRail'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Short_iwait_time,WALK_PRM - Short iwait time,@coef_short_iwait_multiplier * (odt_skims['WLK_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Long_iwait_time,WALK_PRM - Long iwait time,@coef_long_iwait_multiplier * (odt_skims['WLK_PRM_IWAIT']-waitThresh).clip(0),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_transfer_wait_time,WALK_PRM - transfer wait time,@coef_xwait_multiplier * odt_skims['WLK_PRM_XWAIT'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_number_of_transfers,WALK_PRM - number of transfers,@xfers_wlk_multiplier * (odt_skims['WLK_PRM_NT']).clip(0),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Walk_access_time,WALK_PRM - Walk access time,@coef_wacc_multiplier * (df.origin_prm_time),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Walk_egress_time,WALK_PRM - Walk egress time,@coef_wegr_multiplier * (df.dest_prm_time),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Walk_otherLight_rail/Ferry_time,WALK_PRM - Walk otherLight rail/Ferry time,@coef_waux_multiplier * odt_skims['WLK_PRM_WAUX'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Fare,WALK_PRM - Fare,@ivt_cost_multiplier * df.ivot * df.WLKPRM_fare_discount * odt_skims['WLK_PRM_FARE'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Destination_zone_densityIndex,WALK_PRM - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Person_is_less_than_10_years_old,WALK_PRM - Person is less than 10 years old,@(df.age <= 10),,,,,,,coef_age010_trn,,,,,,,,,,, +#Walk_to_Mix,#Walk to Mix,,,,,,,,,,,,,,,,,,, +util_WALK_MIX_Unavailable,WALK_MIX - Unavailable,walk_mix_available == False,,,,,,,,coef_unavailable,,,,,,,,,, +util_WALK_MIX_In-vehicle_time,WALK_MIX - In-vehicle time,@odt_skims['WLK_MIX_IVT'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_In-vehicle_time_on_PMov,WALK_MIX - In-vehicle time on PMov,@(coef_ivt_pmov_multiplier - 1) * odt_skims['WLK_MIX_IVTT_PMov'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_In-vehicle_time_on_StCar,WALK_MIX - In-vehicle time on StCar,@(coef_ivt_stcar_multiplier - 1) * odt_skims['WLK_MIX_IVTT_StCar'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_In-vehicle_time_on_BRT,WALK_MIX - In-vehicle time on BRT,@(coef_ivt_brt_multiplier - 1) * odt_skims['WLK_MIX_IVTT_Brt'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_In-vehicle_time_on_URB,WALK_MIX - In-vehicle time on URB,@(coef_ivt_urb_multiplier - 1) * odt_skims['WLK_MIX_IVTT_UrbRail'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_In-vehicle_time_on_COM,WALK_MIX - In-vehicle time on COM,@(coef_ivt_com_multiplier - 1) * odt_skims['WLK_MIX_IVTT_ComRail'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Short_iwait_time,WALK_MIX - Short iwait time,@coef_short_iwait_multiplier * (odt_skims['WLK_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Long_iwait_time,WALK_MIX - Long iwait time,@coef_long_iwait_multiplier * (odt_skims['WLK_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_transfer_wait_time,WALK_MIX - transfer wait time,@coef_xwait_multiplier * odt_skims['WLK_MIX_XWAIT'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_number_of_transfers,WALK_MIX - number of transfers,@xfers_wlk_multiplier * (odt_skims['WLK_MIX_NT']).clip(0),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Walk_access_time,WALK_MIX - Walk access time,@coef_wacc_multiplier * (df.origin_mix_time),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Walk_egress_time,WALK_MIX - Walk egress time,@coef_wegr_multiplier * (df.dest_mix_time),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Walk_other_time,WALK_MIX - Walk other time,@coef_waux_multiplier * odt_skims['WLK_MIX_WAUX'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Fare,WALK_MIX - Fare,@ivt_cost_multiplier * df.ivot * df.WLKMIX_fare_discount * odt_skims['WLK_MIX_FARE'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Destination_zone_densityIndex,WALK_MIX - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Person_is_less_than_10_years_old,WALK_MIX - Person is less than 10 years old,@(df.age <= 10),,,,,,,,coef_age010_trn,,,,,,,,,, +#PNR_to_Local,#PNR to Local,,,,,,,,,,,,,,,,,,, +util_PNR_LOC_Unavailable_for_zero_auto_households,PNR_LOC - Unavailable for zero auto households,auto_ownership == 0,,,,,,,,,coef_unavailable,,,,,,,,, +util_PNR_LOC_Unavailable_for_persons_less_than_16,PNR_LOC - Unavailable for persons less than 16,age < 16,,,,,,,,,coef_unavailable,,,,,,,,, +util_PNR_LOC_Destination_zone_densityIndex,PNR_LOC - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_Person_is_less_than_10_years_old,PNR_LOC - Person is less than 10 years old,@(df.age < 10),,,,,,,,,coef_age010_trn,,,,,,,,, +util_PNR_LOC_outbound_Unavailable,PNR_LOC outbound - Unavailable,outbound & ~pnr_local_available_outbound,,,,,,,,,coef_unavailable,,,,,,,,, +util_PNR_LOC_outbound_In-vehicle_time,PNR_LOC outbound - In-vehicle time,@df.outbound * odt_skims['PNR_LOC_IVT'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Short_iwait_time,PNR_LOC outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['PNR_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Long_iwait_time,PNR_LOC outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['PNR_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_transfer_wait_time,PNR_LOC outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['PNR_LOC_XWAIT'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_number_of_transfers,PNR_LOC outbound - number of transfers,@df.outbound * xfers_wlk_multiplier * (odt_skims['PNR_LOC_NT']).clip(0),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Drive_time,PNR_LOC outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['PNR_LOC_DTIME'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Walk_egress_time,PNR_LOC outbound - Walk egress time,@df.outbound * coef_wegr_multiplier * (df.dest_local_time),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Walk_other_time,PNR_LOC outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['PNR_LOC_WAUX'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Fare_and_operating_cost,PNR_LOC outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (df.PNRLOC_fare_discount * odt_skims['PNR_LOC_FARE'] + costPerMile*odt_skims['PNR_LOC_DDIST']),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_LOC outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['PNR_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Unavailable,PNR_LOC inbound - Unavailable,inbound & ~pnr_local_available_inbound,,,,,,,,,coef_unavailable,,,,,,,,, +util_PNR_LOC_inbound_In-vehicle_time,PNR_LOC inbound - In-vehicle time,@df.inbound * odt_skims['PNRE_LOC_IVT'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Short_iwait_time,PNR_LOC inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['PNRE_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Long_iwait_time,PNR_LOC inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['PNRE_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_transfer_wait_time,PNR_LOC inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['PNRE_LOC_XWAIT'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_number_of_transfers,PNR_LOC inbound - number of transfers,@df.inbound * xfers_wlk_multiplier * (odt_skims['PNRE_LOC_NT']).clip(0),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Drive_time,PNR_LOC inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['PNRE_LOC_DTIME'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Walk_access_time,PNR_LOC inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_local_time),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Walk_other_time,PNR_LOC inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['PNRE_LOC_WAUX'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Fare_and_operating_cost,PNR_LOC inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (df.PNRELOC_fare_discount * odt_skims['PNRE_LOC_FARE'] + costPerMile*odt_skims['PNRE_LOC_DDIST']),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_LOC inbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['PNRE_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,coef_ivt,,,,,,,,, +#Drive_to_Premium,#Drive to Premium,,,,,,,,,,,,,,,,,,, +util_PNR_PRM_Unavailable_for_zero_auto_households,PNR_PRM - Unavailable for zero auto households,auto_ownership == 0,,,,,,,,,,coef_unavailable,,,,,,,, +util_PNR_PRM_Unavailable_for_persons_less_than_16,PNR_PRM - Unavailable for persons less than 16,age < 16,,,,,,,,,,coef_unavailable,,,,,,,, +util_PNR_PRM_Destination_zone_densityIndex,PNR_PRM - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_Person_is_less_than_10_years_old,PNR_PRM - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,coef_age010_trn,,,,,,,, +util_PNR_PRM_outbound_Unavailable,PNR_PRM outbound - Unavailable,outbound & ~pnr_premium_available_outbound,,,,,,,,,,coef_unavailable,,,,,,,, +util_PNR_PRM_outbound_In-vehicle_time,PNR_PRM outbound - In-vehicle time,@df.outbound * odt_skims['PNR_PRM_IVT'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_PMov,PNR_PRM - In-vehicle time on PMov,@df.outbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['PNR_PRM_IVTT_PMov'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_StCar,PNR_PRM - In-vehicle time on StCar,@df.outbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['PNR_PRM_IVTT_StCar'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_BRT,PNR_PRM - In-vehicle time on BRT,@df.outbound * (coef_ivt_brt_multiplier - 1) * odt_skims['PNR_PRM_IVTT_Brt'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_URB,PNR_PRM - In-vehicle time on URB,@df.outbound * (coef_ivt_urb_multiplier - 1) * odt_skims['PNR_PRM_IVTT_UrbRail'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_COM,PNR_PRM - In-vehicle time on COM,@df.outbound * (coef_ivt_com_multiplier - 1) * odt_skims['PNR_PRM_IVTT_ComRail'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Short_iwait_time,PNR_PRM outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['PNR_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Long_iwait_time,PNR_PRM outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['PNR_PRM_IWAIT']-waitThresh).clip(0) ,,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_transfer_wait_time,PNR_PRM outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['PNR_PRM_XWAIT'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_number_of_transfers,PNR_PRM outbound - number of transfers,@df.outbound * xfers_drv_multiplier * (odt_skims['PNR_PRM_NT']).clip(0),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Drive_time,PNR_PRM outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['PNR_PRM_DTIME'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Walk_egress_time,PNR_PRM outbound - Walk egress time,@df.outbound * coef_wegr_multiplier * (df.dest_prm_time),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Walk_other_time,PNR_PRM outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['PNR_PRM_WAUX'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Fare_and_operating_cost,PNR_PRM outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (df.PNRPRM_fare_discount * odt_skims['PNR_PRM_FARE'] + costPerMile * odt_skims['PNR_PRM_DDIST']),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_PRM outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['PNR_PRM_DDIST']) / od_skims['DIST'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Unavailable,PNR_PRM inbound - Unavailable,inbound & ~pnr_premium_available_inbound,,,,,,,,,,coef_unavailable,,,,,,,, +util_PNR_PRM_inbound_In-vehicle_time,PNR_PRM inbound - In-vehicle time,@df.inbound * odt_skims['PNRE_PRM_IVT'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_PMov,PNR_PRM - In-vehicle time on PMov,@df.inbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['PNRE_PRM_IVTT_PMov'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_StCar,PNR_PRM - In-vehicle time on StCar,@df.inbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['PNRE_PRM_IVTT_StCar'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_BRT,PNR_PRM - In-vehicle time on BRT,@df.inbound * (coef_ivt_brt_multiplier - 1) * odt_skims['PNRE_PRM_IVTT_Brt'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_URB,PNR_PRM - In-vehicle time on URB,@df.inbound * (coef_ivt_urb_multiplier - 1) * odt_skims['PNRE_PRM_IVTT_UrbRail'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_COM,PNR_PRM - In-vehicle time on COM,@df.inbound * (coef_ivt_com_multiplier - 1) * odt_skims['PNRE_PRM_IVTT_ComRail'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Short_iwait_time,PNR_PRM inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['PNRE_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Long_iwait_time,PNR_PRM inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['PNRE_PRM_IWAIT']-waitThresh).clip(0),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_transfer_wait_time,PNR_PRM inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['PNRE_PRM_XWAIT'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_number_of_transfers,PNR_PRM inbound - number of transfers,@df.inbound * xfers_drv_multiplier * (odt_skims['PNRE_PRM_NT']).clip(0),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Drive_time,PNR_PRM inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['PNRE_PRM_DTIME'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Walk_access_time,PNR_PRM inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_prm_time),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Walk_other_time,PNR_PRM inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['PNRE_PRM_WAUX'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Fare_and_operating_cost,PNR_PRM inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (df.PNREPRM_fare_discount * odt_skims['PNRE_PRM_FARE'] + costPerMile * odt_skims['PNRE_PRM_DDIST']),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_PRM inbound - Ratio of drive access distance to OD distance,@df.inbound * dacc_ratio_multiplier * (odt_skims['PNRE_PRM_DDIST'])/ od_skims['DIST'],,,,,,,,,,coef_ivt,,,,,,,, +#PNR_to_Mix,#PNR to Mix,,,,,,,,,,,,,,,,,,, +util_PNR_MIX_Unavailable_for_zero_auto_households,PNR_MIX - Unavailable for zero auto households,auto_ownership == 0,,,,,,,,,,,coef_unavailable,,,,,,, +util_PNR_MIX_Unavailable_for_persons_less_than_16,PNR_MIX - Unavailable for persons less than 16,age < 16,,,,,,,,,,,coef_unavailable,,,,,,, +util_PNR_MIX_Destination_zone_densityIndex,PNR_MIX - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_Person_is_less_than_10_years_old,PNR_MIX - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,coef_age010_trn,,,,,,, +util_PNR_MIX_outbound_Unavailable,PNR_MIX outbound - Unavailable,outbound & ~pnr_mix_available_outbound,,,,,,,,,,,coef_unavailable,,,,,,, +util_PNR_MIX_outbound_In-vehicle_time,PNR_MIX outbound - In-vehicle time,@df.outbound * odt_skims['PNR_MIX_IVT'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_PMov,PNR_MIX - In-vehicle time on PMov,@df.outbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['PNR_MIX_IVTT_PMov'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_StCar,PNR_MIX - In-vehicle time on StCar,@df.outbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['PNR_MIX_IVTT_StCar'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_BRT,PNR_MIX - In-vehicle time on BRT,@df.outbound * (coef_ivt_brt_multiplier - 1) * odt_skims['PNR_MIX_IVTT_Brt'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_URB,PNR_MIX - In-vehicle time on URB,@df.outbound * (coef_ivt_urb_multiplier - 1) * odt_skims['PNR_MIX_IVTT_UrbRail'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_COM,PNR_MIX - In-vehicle time on COM,@df.outbound * (coef_ivt_com_multiplier - 1) * odt_skims['PNR_MIX_IVTT_ComRail'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Short_iwait_time,PNR_MIX outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['PNR_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Long_iwait_time,PNR_MIX outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['PNR_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_transfer_wait_time,PNR_MIX outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['PNR_MIX_XWAIT'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_number_of_transfers,PNR_MIX outbound - number of transfers,@df.outbound * xfers_drv_multiplier * (odt_skims['PNR_MIX_NT']).clip(0),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Drive_time,PNR_MIX outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['PNR_MIX_DTIME'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Walk_egress_ime,PNR_MIX outbound - Walk egress ime,@df.outbound * coef_wegr_multiplier * (df.dest_mix_time),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Walk_other_time,PNR_MIX outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['PNR_MIX_WAUX'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Fare_and_operating_cost,PNR_MIX outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (df.PNRMIX_fare_discount * odt_skims['PNR_MIX_FARE'] + costPerMile * odt_skims['PNR_MIX_DDIST']),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_MIX outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['PNR_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Unavailable,PNR_MIX inbound - Unavailable,inbound & ~pnr_mix_available_inbound,,,,,,,,,,,coef_unavailable,,,,,,, +util_PNR_MIX_inbound_In-vehicle_time,PNR_MIX inbound - In-vehicle time,@df.inbound * odt_skims['PNRE_MIX_IVT'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_PMov,PNR_MIX - In-vehicle time on PMov,@df.inbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['PNRE_MIX_IVTT_PMov'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_StCar,PNR_MIX - In-vehicle time on StCar,@df.inbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['PNRE_MIX_IVTT_StCar'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_BRT,PNR_MIX - In-vehicle time on BRT,@df.inbound * (coef_ivt_brt_multiplier - 1) * odt_skims['PNRE_MIX_IVTT_Brt'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_URB,PNR_MIX - In-vehicle time on URB,@df.inbound * (coef_ivt_urb_multiplier - 1) * odt_skims['PNRE_MIX_IVTT_UrbRail'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_COM,PNR_MIX - In-vehicle time on COM,@df.inbound * (coef_ivt_com_multiplier - 1) * odt_skims['PNRE_MIX_IVTT_ComRail'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Short_iwait_time,PNR_MIX inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['PNRE_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Long_iwait_time,PNR_MIX inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['PNRE_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_transfer_wait_time,PNR_MIX inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['PNRE_MIX_XWAIT'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_number_of_transfers,PNR_MIX inbound - number of transfers,@df.inbound * xfers_drv_multiplier * (odt_skims['PNRE_MIX_NT']).clip(0),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Drive_time,PNR_MIX inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['PNRE_MIX_DTIME'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Walk_access_time,PNR_MIX inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_mix_time),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Walk_other_time,PNR_MIX inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['PNRE_MIX_WAUX'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Fare_and_operating_cost,PNR_MIX inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (df.PNREMIX_fare_discount * odt_skims['PNRE_MIX_FARE'] + costPerMile * odt_skims['PNRE_MIX_DDIST']),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_MIX inbound - Ratio of drive access distance to OD distance,@df.inbound * dacc_ratio_multiplier * (odt_skims['PNRE_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,coef_ivt,,,,,,, +#KNR_to_Local,#KNR to Local,,,,,,,,,,,,,,,,,,, +util_KNR_LOC_Unavailable_for_persons_less_than_16,KNR_LOC - Unavailable for persons less than 16,age < 16,,,,,,,,,,,,coef_unavailable,,,,,, +util_KNR_LOC_Destination_zone_densityIndex,KNR_LOC - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_Person_is_less_than_10_years_old,KNR_LOC - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,,coef_age010_trn,,,,,, +util_KNR_LOC_outbound_Unavailable,KNR_LOC outbound - Unavailable,outbound & ~knr_local_available_outbound,,,,,,,,,,,,coef_unavailable,,,,,, +util_KNR_LOC_outbound_In-vehicle_time,KNR_LOC outbound - In-vehicle time,@df.outbound * odt_skims['KNR_LOC_IVT'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Short_iwait_time,KNR_LOC outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['KNR_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Long_iwait_time,KNR_LOC outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['KNR_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_transfer_wait_time,KNR_LOC outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['KNR_LOC_XWAIT'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_number_of_transfers,KNR_LOC outbound - number of transfers,@df.outbound * xfers_wlk_multiplier * (odt_skims['KNR_LOC_NT']).clip(0),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Drive_time,KNR_LOC outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['KNR_LOC_DTIME'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Walk_egress_time,KNR_LOC outbound - Walk egress time,@df.outbound * coef_wegr_multiplier * (df.dest_local_time),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Walk_other_time,KNR_LOC outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['KNR_LOC_WAUX'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Fare_and_operating_cost,KNR_LOC outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (df.KNRLOC_fare_discount * odt_skims['KNR_LOC_FARE'] + costPerMile*odt_skims['KNR_LOC_DDIST']),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_LOC outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['KNR_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Unavailable,KNR_LOC inbound - Unavailable,inbound & ~knr_local_available_inbound,,,,,,,,,,,,coef_unavailable,,,,,, +util_KNR_LOC_inbound_In-vehicle_time,KNR_LOC inbound - In-vehicle time,@df.inbound * odt_skims['KNRE_LOC_IVT'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Short_iwait_time,KNR_LOC inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['KNRE_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Long_iwait_time,KNR_LOC inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['KNRE_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_transfer_wait_time,KNR_LOC inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['KNRE_LOC_XWAIT'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_number_of_transfers,KNR_LOC inbound - number of transfers,@df.inbound * xfers_wlk_multiplier * (odt_skims['KNRE_LOC_NT']).clip(0),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Drive_time,KNR_LOC inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['KNRE_LOC_DTIME'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Walk_access_time,KNR_LOC inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_local_time),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Walk_other_time,KNR_LOC inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['KNRE_LOC_WAUX'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Fare_and_operating_cost,KNR_LOC inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (df.KNRELOC_fare_discount * odt_skims['KNRE_LOC_FARE'] + costPerMile*odt_skims['KNRE_LOC_DDIST']),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_LOC inbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['KNRE_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,,,,coef_ivt,,,,,, +#Drive_to_Premium,#Drive to Premium,,,,,,,,,,,,,,,,,,, +util_KNR_PRM_Unavailable_for_persons_less_than_16,KNR_PRM - Unavailable for persons less than 16,age < 16,,,,,,,,,,,,,coef_unavailable,,,,, +util_KNR_PRM_Destination_zone_densityIndex,KNR_PRM - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_Person_is_less_than_10_years_old,KNR_PRM - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,,,coef_age010_trn,,,,, +util_KNR_PRM_outbound_Unavailable,KNR_PRM outbound - Unavailable,outbound & ~knr_premium_available_outbound,,,,,,,,,,,,,coef_unavailable,,,,, +util_KNR_PRM_outbound_In-vehicle_time,KNR_PRM outbound - In-vehicle time,@df.outbound * odt_skims['KNR_PRM_IVT'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_PMov,KNR_PRM - In-vehicle time on PMov,@df.outbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['KNR_PRM_IVTT_PMov'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_StCar,KNR_PRM - In-vehicle time on StCar,@df.outbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['KNR_PRM_IVTT_StCar'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_BRT,KNR_PRM - In-vehicle time on BRT,@df.outbound * (coef_ivt_brt_multiplier - 1) * odt_skims['KNR_PRM_IVTT_Brt'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_URB,KNR_PRM - In-vehicle time on URB,@df.outbound * (coef_ivt_urb_multiplier - 1) * odt_skims['KNR_PRM_IVTT_UrbRail'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_COM,KNR_PRM - In-vehicle time on COM,@df.outbound * (coef_ivt_com_multiplier - 1) * odt_skims['KNR_PRM_IVTT_ComRail'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Short_iwait_time,KNR_PRM outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['KNR_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Long_iwait_time,KNR_PRM outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['KNR_PRM_IWAIT']-waitThresh).clip(0) ,,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_transfer_wait_time,KNR_PRM outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['KNR_PRM_XWAIT'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_number_of_transfers,KNR_PRM outbound - number of transfers,@df.outbound * xfers_drv_multiplier * (odt_skims['KNR_PRM_NT']).clip(0),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Drive_time,KNR_PRM outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['KNR_PRM_DTIME'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Walk_egress_time,KNR_PRM outbound - Walk egress time,@df.outbound * coef_wegr_multiplier * (df.dest_prm_time),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Walk_other_time,KNR_PRM outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['KNR_PRM_WAUX'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Fare_and_operating_cost,KNR_PRM outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (df.KNRPRM_fare_discount * odt_skims['KNR_PRM_FARE'] + costPerMile * odt_skims['KNR_PRM_DDIST']),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_PRM outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['KNR_PRM_DDIST']) / od_skims['DIST'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Unavailable,KNR_PRM inbound - Unavailable,inbound & ~knr_premium_available_inbound,,,,,,,,,,,,,coef_unavailable,,,,, +util_KNR_PRM_inbound_In-vehicle_time,KNR_PRM inbound - In-vehicle time,@df.inbound * odt_skims['KNRE_PRM_IVT'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_PMov,KNR_PRM - In-vehicle time on PMov,@df.inbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['KNRE_PRM_IVTT_PMov'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_StCar,KNR_PRM - In-vehicle time on StCar,@df.inbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['KNRE_PRM_IVTT_StCar'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_BRT,KNR_PRM - In-vehicle time on BRT,@df.inbound * (coef_ivt_brt_multiplier - 1) * odt_skims['KNRE_PRM_IVTT_Brt'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_URB,KNR_PRM - In-vehicle time on URB,@df.inbound * (coef_ivt_urb_multiplier - 1) * odt_skims['KNRE_PRM_IVTT_UrbRail'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_COM,KNR_PRM - In-vehicle time on COM,@df.inbound * (coef_ivt_com_multiplier - 1) * odt_skims['KNRE_PRM_IVTT_ComRail'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Short_iwait_time,KNR_PRM inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['KNRE_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Long_iwait_time,KNR_PRM inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['KNRE_PRM_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_transfer_wait_time,KNR_PRM inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['KNRE_PRM_XWAIT'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_number_of_transfers,KNR_PRM inbound - number of transfers,@df.inbound * xfers_drv_multiplier * (odt_skims['KNRE_PRM_NT']).clip(0),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Drive_time,KNR_PRM inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['KNRE_PRM_DTIME'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Walk_access_time,KNR_PRM inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_prm_time),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Walk_other_time,KNR_PRM inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['KNRE_PRM_WAUX'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Fare_and_operating_cost,KNR_PRM inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (df.KNREPRM_fare_discount * odt_skims['KNRE_PRM_FARE'] + costPerMile * odt_skims['KNRE_PRM_DDIST']),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_PRM inbound - Ratio of drive access distance to OD distance,@df.inbound * dacc_ratio_multiplier * (odt_skims['KNRE_PRM_DDIST'])/ od_skims['DIST'],,,,,,,,,,,,,coef_ivt,,,,, +#KNR_to_Mix,#KNR to Mix,,,,,,,,,,,,,,,,,,, +util_KNR_MIX_Unavailable_for_persons_less_than_16,KNR_MIX - Unavailable for persons less than 16,age < 16,,,,,,,,,,,,,,coef_unavailable,,,, +util_KNR_MIX_Destination_zone_densityIndex,KNR_MIX - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_Person_is_less_than_10_years_old,KNR_MIX - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,,,,coef_age010_trn,,,, +util_KNR_MIX_outbound_Unavailable,KNR_MIX outbound - Unavailable,outbound & ~knr_mix_available_outbound,,,,,,,,,,,,,,coef_unavailable,,,, +util_KNR_MIX_outbound_In-vehicle_time,KNR_MIX outbound - In-vehicle time,@df.outbound * odt_skims['KNR_MIX_IVT'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_PMov,KNR_MIX - In-vehicle time on PMov,@df.outbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['KNR_MIX_IVTT_PMov'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_StCar,KNR_MIX - In-vehicle time on StCar,@df.outbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['KNR_MIX_IVTT_StCar'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_BRT,KNR_MIX - In-vehicle time on BRT,@df.outbound * (coef_ivt_brt_multiplier - 1) * odt_skims['KNR_MIX_IVTT_Brt'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_URB,KNR_MIX - In-vehicle time on URB,@df.outbound * (coef_ivt_urb_multiplier - 1) * odt_skims['KNR_MIX_IVTT_UrbRail'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_COM,KNR_MIX - In-vehicle time on COM,@df.outbound * (coef_ivt_com_multiplier - 1) * odt_skims['KNR_MIX_IVTT_ComRail'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Short_iwait_time,KNR_MIX outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['KNR_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Long_iwait_time,KNR_MIX outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['KNR_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_transfer_wait_time,KNR_MIX outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['KNR_MIX_XWAIT'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_number_of_transfers,KNR_MIX outbound - number of transfers,@df.outbound * xfers_drv_multiplier * (odt_skims['KNR_MIX_NT']).clip(0),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Drive_time,KNR_MIX outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['KNR_MIX_DTIME'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Walk_egress_ime,KNR_MIX outbound - Walk egress ime,@df.outbound * coef_wegr_multiplier * (df.dest_mix_time),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Walk_other_time,KNR_MIX outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['KNR_MIX_WAUX'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Fare_and_operating_cost,KNR_MIX outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (df.KNRMIX_fare_discount * odt_skims['KNR_MIX_FARE'] + costPerMile * odt_skims['KNR_MIX_DDIST']),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_MIX outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['KNR_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Unavailable,KNR_MIX inbound - Unavailable,inbound & ~knr_mix_available_inbound,,,,,,,,,,,,,,coef_unavailable,,,, +util_KNR_MIX_inbound_In-vehicle_time,KNR_MIX inbound - In-vehicle time,@df.inbound * odt_skims['KNRE_MIX_IVT'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_PMov,KNR_MIX - In-vehicle time on PMov,@df.inbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['KNRE_MIX_IVTT_PMov'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_StCar,KNR_MIX - In-vehicle time on StCar,@df.inbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['KNRE_MIX_IVTT_StCar'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_BRT,KNR_MIX - In-vehicle time on BRT,@df.inbound * (coef_ivt_brt_multiplier - 1) * odt_skims['KNRE_MIX_IVTT_Brt'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_URB,KNR_MIX - In-vehicle time on URB,@df.inbound * (coef_ivt_urb_multiplier - 1) * odt_skims['KNRE_MIX_IVTT_UrbRail'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_COM,KNR_MIX - In-vehicle time on COM,@df.inbound * (coef_ivt_com_multiplier - 1) * odt_skims['KNRE_MIX_IVTT_ComRail'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Short_iwait_time,KNR_MIX inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['KNRE_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Long_iwait_time,KNR_MIX inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['KNRE_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_transfer_wait_time,KNR_MIX inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['KNRE_MIX_XWAIT'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_number_of_transfers,KNR_MIX inbound - number of transfers,@df.inbound * xfers_drv_multiplier * (odt_skims['KNRE_MIX_NT']).clip(0),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Drive_time,KNR_MIX inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['KNRE_MIX_DTIME'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Walk_access_time,KNR_MIX inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_mix_time),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Walk_other_time,KNR_MIX inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['KNRE_MIX_WAUX'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Fare_and_operating_cost,KNR_MIX inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (df.KNREMIX_fare_discount * odt_skims['KNRE_MIX_FARE'] + costPerMile * odt_skims['KNRE_MIX_DDIST']),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_MIX inbound - Ratio of drive access distance to OD distance,@df.inbound * dacc_ratio_multiplier * (odt_skims['KNRE_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,,,,coef_ivt,,,, +#Taxi,#Taxi,,,,,,,,,,,,,,,,,,, +util_Taxi_In-vehicle_time,Taxi - In-vehicle time,@odt_skims['HOV2_TIME'],,,,,,,,,,,,,,,,coef_ivt,, +util_Taxi_Wait_time,Taxi - Wait time,@ridehail_wait_time_multiplier * df.origTaxiWaitTime,,,,,,,,,,,,,,,,coef_ivt,, +util_Taxi_Fare,Taxi - Fare,@ivt_cost_multiplier * df.ivot * (Taxi_baseFare + odt_skims['HOV2_DIST'] * Taxi_costPerMile + odt_skims['HOV2_TIME'] * Taxi_costPerMinute)*100,,,,,,,,,,,,,,,,coef_ivt,, +util_TNC_Single_In-vehicle_time,TNC Single - In-vehicle time,@odt_skims['HOV2_TIME'] ,,,,,,,,,,,,,,,,,coef_ivt, +util_TNC_Single_Wait_time,TNC Single - Wait time,@ridehail_wait_time_multiplier * df.origSingleTNCWaitTime,,,,,,,,,,,,,,,,,coef_ivt, +util_TNC_Single_Cost,TNC Single - Cost,"@ivt_cost_multiplier * df.ivot * np.maximum(TNC_single_baseFare + odt_skims['HOV2_DIST'] * TNC_single_costPerMile + odt_skims['HOV2_TIME'] * TNC_single_costPerMinute, TNC_single_costMinimum) * 100",,,,,,,,,,,,,,,,,coef_ivt, +util_TNC_Shared_In-vehicle_time,TNC Shared - In-vehicle time,@odt_skims['HOV2_TIME'] * TNC_shared_IVTFactor,,,,,,,,,,,,,,,,,,coef_ivt +util_TNC_Shared_Wait_time,TNC Shared - Wait time,@ridehail_wait_time_multiplier * df.origSharedTNCWaitTime,,,,,,,,,,,,,,,,,,coef_ivt +util_TNC_Shared_Cost,TNC Shared - Cost,"@ivt_cost_multiplier * df.ivot * np.maximum(TNC_shared_baseFare + odt_skims['HOV2_DIST'] * TNC_shared_costPerMile + odt_skims['HOV2_TIME']* TNC_shared_costPerMinute, TNC_shared_costMinimum) * 100",,,,,,,,,,,,,,,,,,coef_ivt +#,#,,,,,,,,,,,,,,,,,,, +util_SOV_tour_mode_availability,SOV tour mode availability,tour_mode_is_SOV,,coef_unavailable,coef_unavailable,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable +util_sr2_tour_mode_availability,SR2 tour mode availability,tour_mode_is_sr2,,,coef_unavailable,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable +util_sr3p_tour_mode_availability,SR3+ tour mode availability,tour_mode_is_sr3p,,,,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable +util_Walk_tour_mode_availability,Walk tour mode availability,tour_mode_is_walk,coef_unavailable,coef_unavailable,coef_unavailable,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable +util_Bike_tour_mode_availability,Bike tour mode availability,tour_mode_is_bike,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable +util_Walk_to_Transit_tour_mode_availability,Walk to Transit tour mode availability,tour_mode_is_walk_transit,coef_unavailable,,,,coef_unavailable,,,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,, +util_drive_to_Transit_tour_mode_availability,drive Transit tour mode availability,tour_mode_is_drive_transit,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,,,,,,coef_unavailable,,, +#util_PNR_to_Transit_tour_mode_availability,PNR Transit tour mode availability,tour_mode_is_pnr_transit,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,, +#util_KNR_to_Transit_tour_mode_availability,KNR Transit tour mode availability,tour_mode_is_knr_transit,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable +util_School_bus_tour_mode_availability,School bus tour mode availability,tour_mode_is_school_bus,coef_unavailable,,,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,coef_unavailable,coef_unavailable,coef_unavailable +util_Ride_Hail_tour_mode_availability,Ride Hail tour mode availability,tour_mode_is_ride_hail,coef_unavailable,,,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,, +#indiv_tour_ASCs,#indiv tour ASCs,,,,,,,,,,,,,,,,,,, +util_Drive_Alone_tour_mode_ASC_walk,Drive Alone tour mode ASC -- walk,@(df.is_indiv & df.i_tour_mode.isin(I_SOV_MODES)),,,,sov_ASC_walk,,,,,,,,,,,,,, +util_Drive_Alone_tour_mode_ASC_ride_hail,Drive Alone tour mode ASC -- ride hail,@(df.is_indiv & df.i_tour_mode.isin(I_SOV_MODES)),,,,,,,,,,,,,,,,sov_ASC_taxi,sov_ASC_tnc_single,sov_ASC_tnc_shared +util_Shared_Ride_2_tour_mode_ASC_drive_alone,Shared Ride 2 tour mode ASC -- drive alone,@(df.is_indiv & df.i_tour_mode.isin(I_SR2_MODES)),sr2_ASC_sov,,,,,,,,,,,,,,,,, +util_Shared_Ride_2_tour_mode_ASC_walk,Shared Ride 2 tour mode ASC -- walk,@(df.is_indiv & df.i_tour_mode.isin(I_SR2_MODES)),,,,sr2_ASC_walk,,,,,,,,,,,,,, +util_Shared_Ride_2_tour_mode_ASC_ride_hail,Shared Ride 2 tour mode ASC -- ride hail,@(df.is_indiv & df.i_tour_mode.isin(I_SR2_MODES)),,,,,,,,,,,,,,,,sr2_ASC_taxi,sr2_ASC_tnc_single,sr2_ASC_tnc_shared +util_Shared_Ride_3+_tour_mode_ASC_drive_alone,Shared Ride 3+ tour mode ASC -- drive alone,@(df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),sr3p_ASC_sov,,,,,,,,,,,,,,,,, +util_Shared_Ride_3+_tour_mode_ASC_shared_ride_2,Shared Ride 3+ tour mode ASC -- shared ride 2,@(df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),,sr3p_ASC_sr2,,,,,,,,,,,,,,,, +util_Shared_Ride_3+_tour_mode_ASC_walk,Shared Ride 3+ tour mode ASC -- walk,@(df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),,,,sr3p_ASC_walk,,,,,,,,,,,,,, +util_Shared_Ride_3+_tour_mode_ASC_ride_hail,Shared Ride 3+ tour mode ASC -- ride hail,@(df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),,,,,,,,,,,,,,,,sr3p_ASC_taxi,sr3p_ASC_tnc_single,sr3p_ASC_tnc_shared +#util_Walk_tour_mode_ASC_ride_hail,Walk tour mode ASC -- ride hail,@df.is_indiv & (df.i_tour_mode == I_WALK_MODE),,,,,,,,,,,,,,,,walk_ASC_taxi,walk_ASC_tnc_single,walk_ASC_tnc_shared +util_Bike_tour_mode_ASC_walk,Bike tour mode ASC -- walk,@df.is_indiv & (df.i_tour_mode == I_BIKE_MODE),,,,bike_ASC_walk,,,,,,,,,,,,,, +#util_Bike_tour_mode_ASC_ride_hail,Bike tour mode ASC -- ride hail,@df.is_indiv & (df.i_tour_mode == I_BIKE_MODE),,,,,,,,,,,,,,,,bike_ASC_taxi,bike_ASC_tnc_single,bike_ASC_tnc_shared +util_Walk-transit_tour_mode_ASC_shared_ride_2,Walk-transit tour mode ASC -- shared ride 2,@(df.is_indiv & df.tour_mode_is_walk_transit),,walk_transit_ASC_sr2,,,,,,,,,,,,,,,, +util_Walk-transit_tour_mode_ASC_shared_ride_3+,Walk-transit tour mode ASC -- shared ride 3+,@(df.is_indiv & df.tour_mode_is_walk_transit),,,walk_transit_ASC_sr3p,,,,,,,,,,,,,,, +util_Walk-transit_tour_mode_ASC_walk,Walk-transit tour mode ASC -- walk,@(df.is_indiv & df.tour_mode_is_walk_transit),,,,walk_transit_ASC_walk,,,,,,,,,,,,,, +util_Walk-transit_tour_mode_ASC_ride_hail,Walk-transit tour mode ASC -- ride hail,@(df.is_indiv & df.tour_mode_is_walk_transit),,,,,,,,,,,,,,,,walk_transit_ASC_taxi,walk_transit_ASC_tnc_single,walk_transit_ASC_tnc_shared +util_Drive_to_Transit_tour_mode_ASC_ride_hail,Drive to Transit tour mode ASC -- ride hail,@(df.is_indiv & df.tour_mode_is_pnr_transit),,,,,,,,,,,,,,,,pnr_ASC_taxi,pnr_ASC_tnc_single,pnr_ASC_tnc_shared +util_Drive_to_Transit_tour_mode_ASC_ride_hail,Drive to Transit tour mode ASC -- ride hail,@(df.is_indiv & df.tour_mode_is_knr_transit),,,,,,,,,,,,,,,,knr_ASC_taxi,knr_ASC_tnc_single,knr_ASC_tnc_shared +util_Ride_Hail_tour_mode_ASC_ride_hail,Ride Hail tour mode ASC -- shared 2,@(df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,ride_hail_ASC_sr2,,,,,,,,,,,,,,,, +util_Ride_Hail_tour_mode_ASC_ride_hail,Ride Hail tour mode ASC -- shared 3+,@(df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,ride_hail_ASC_sr3p,,,,,,,,,,,,,,, +util_Ride_Hail_tour_mode_ASC_ride_hail,Ride Hail tour mode ASC -- walk,@(df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,ride_hail_ASC_walk,,,,,,,,,,,,,, +util_Ride_Hail_tour_mode_ASC_ride_hail,Ride Hail tour mode ASC -- walk-transit,@(df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,ride_hail_ASC_walk_transit,ride_hail_ASC_walk_transit,ride_hail_ASC_walk_transit,,,,,,,,, +util_Ride_Hail_tour_mode_ASC_ride_hail,Ride Hail tour mode ASC -- ride hail,@(df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,,,,,,,,,,ride_hail_ASC_taxi,,ride_hail_ASC_tnc_shared +util_Shared_Ride_2_tour_mode_ASC_walk,joint - sr2 tour mode ASC -- walk,@(df.is_joint & df.i_tour_mode.isin(I_SR2_MODES)),,,,joint_sr2_ASC_walk,,,,,,,,,,,,,, +util_Shared_Ride_3+_tour_mode_ASC_walk,joint - sr3p tour mode ASC,@(df.is_joint & df.i_tour_mode.isin(I_SR3P_MODES)),,joint_sr3p_ASC_sr2,,joint_sr3p_ASC_walk,,,,,,,,,,,,,, +util_joint_Walk-transit_tour_mode_ASC_shared_ride_2,joint - Walk-transit tour mode ASC -- shared ride 2,@(df.is_joint & df.tour_mode_is_walk_transit),,joint_walk_transit_ASC_sr2,,,,,,,,,,,,,,,, +util_joint_Walk-transit_tour_mode_ASC_shared_ride_3+,joint - Walk-transit tour mode ASC -- shared ride 3+,@(df.is_joint & df.tour_mode_is_walk_transit),,,joint_walk_transit_ASC_sr3p,,,,,,,,,,,,,,, +util_joint_Walk-transit_tour_mode_ASC_walk,joint - Walk-transit tour mode ASC -- walk,@(df.is_joint & df.tour_mode_is_walk_transit),,,,joint_walk_transit_ASC_walk,,,,,,,,,,,,,, +util_joint_Walk_to_Transit_tour_mode_ASC_ride_hail,joint - Walk to Transit tour mode ASC -- ride hail,@(df.is_joint & df.tour_mode_is_walk_transit),,,,,,,,,,,,,,,,joint_walk_transit_ASC_taxi,joint_walk_transit_ASC_tnc_single,joint_walk_transit_ASC_tnc_shared +util_joint_PNR_to_Transit_tour_mode_ASC_ride_hail,joint - PNR to Transit tour mode ASC -- ride hail,@(df.is_joint & df.tour_mode_is_pnr_transit),,,,,,,,,,,,,,,,joint_pnr_ASC_taxi,joint_pnr_ASC_tnc_single,joint_pnr_ASC_tnc_shared +util_joint_KNR_to_Transit_tour_mode_ASC_ride_hail,joint - KNR to Transit tour mode ASC -- ride hail,@(df.is_joint & df.tour_mode_is_knr_transit),,,,,,,,,,,,,,,,joint_knr_ASC_taxi,joint_knr_ASC_tnc_single,joint_knr_ASC_tnc_shared +util_joint_Ride_Hail_tour_mode_ASC_ride_hail,joint - Ride Hail tour mode ASC -- shared 2,@(df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,joint_ride_hail_ASC_sr2,,,,,,,,,,,,,,,, +util_joint_Ride_Hail_tour_mode_ASC_ride_hail,joint - Ride Hail tour mode ASC -- shared 3+,@ (df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,joint_ride_hail_ASC_sr3p,,,,,,,,,,,,,,, +util_joint_Ride_Hail_tour_mode_ASC_ride_hail,joint - Ride Hail tour mode ASC -- walk,@(df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,joint_ride_hail_ASC_walk,,,,,,,,,,,,,, +util_joint_Ride_Hail_tour_mode_ASC_ride_hail,joint - Ride Hail tour mode ASC -- taxi,@(df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,,,,,,,,,,joint_ride_hail_ASC_taxi,,joint_ride_hail_ASC_tnc_shared +util_Walk_not_available_for_long_distances,Walk not available for long distances,@df.tour_mode_is_walk & (od_skims['DISTWALK'] > 3),,,,coef_unavailable,,,,,,,,,,,,,, +util_Bike_not_available_for_long_distances,Bike not available for long distances,@df.tour_mode_is_walk & (od_skims['DISTBIKE'] > 8),,,,,coef_unavailable,,,,,,,,,,,,, +#School_Bus,#School Bus,,,,,,,,,,,,,,,,,,, +util_School_Bus_Unavailable_if_primary_purpose_NOT_school,School Bus Unavailable if primary purpose NOT school,~is_school,,,,,,,,,,,,,,,coef_unavailable,,, +util_School_Bus_Unavailable_Tour_Mode_=_SOV,School Bus Unavailable - Tour Mode = SOV,tour_mode_is_SOV,,,,,,,,,,,,,,,coef_unavailable,,, +util_School_Bus_Unavailable_Tour_Mode_=_Transit,School Bus Unavailable - Tour Mode = Transit,tour_mode_is_drive_transit,,,,,,,,,,,,,,,coef_unavailable,,, +util_School_Bus_In-vehicle_time_(20_miles_per_hour),School Bus - In-vehicle time (20 miles per hour),@odt_skims['HOV3_DIST']*3,,,,,,,,,,,,,,,coef_ivt,,, +util_School_Bus_Walk_Time,School Bus - Walk Time,@coef_wacc_multiplier*10,,,,,,,,,,,,,,,coef_ivt,,, +util_School_Bus_Wait_Time,School Bus - Wait Time,@coef_short_iwait_multiplier*10,,,,,,,,,,,,,,,coef_ivt,,, +util_School_Bus_tour_mode_ASC_shared_ride_2,School Bus tour mode ASC -- shared ride 2,@df.i_tour_mode.isin(I_SCHOOLBUS_MODE),,schoolbus_ASC_sr2,,,,,,,,,,,,,,,, +util_School_Bus_tour_mode_ASC_shared_ride_3+,School Bus tour mode ASC -- shared ride 3+,@df.i_tour_mode.isin(I_SCHOOLBUS_MODE),,,schoolbus_ASC_sr3p,,,,,,,,,,,,,,, +util_School_Bus_tour_mode_ASC_walk,School Bus tour mode ASC -- walk,@df.i_tour_mode.isin(I_SCHOOLBUS_MODE),,,,schoolbus_ASC_walk,,,,,,,,,,,,,, +util_Origin_density_index,Origin density index,@(origin_density_applied*df.origin_density_index).clip(origin_density_index_max) if origin_density_applied else 0,,,,,,,coef_ivt,coef_ivt,coef_ivt,coef_ivt,coef_ivt,coef_ivt,coef_ivt,,,,coef_ivt,coef_ivt +util_TNC_shared_adjustment,TNC shared adjustment,@adjust_tnc_shared,,,,,,,,,,,,,,,,,,coef_ivt +util_umt_unavailable_wlk,UMT unavailable for non affiliates WALK,@((odt_skims['WLK_LOC_IVTT_UMT'] + dot_skims['WLK_LOC_IVTT_UMT'])>0) & (df.umich_affiliate_trip==False),,,,,,coef_unavailable,,,,,,,,,,,, +util_umt_unavailable_pnr,UMT unavailable for non affiliates PNR,@((odt_skims['PNR_LOC_IVTT_UMT'] + dot_skims['PNRE_LOC_IVTT_UMT'])>0) & (df.umich_affiliate_trip==False),,,,,,,,,coef_unavailable,,,,,,,,, +util_umt_unavailable_knr,UMT unavailable for non affiliates KNR,@((odt_skims['KNR_LOC_IVTT_UMT'] + dot_skims['KNRE_LOC_IVTT_UMT'])>0) & (df.umich_affiliate_trip==False),,,,,,,,,,,,coef_unavailable,,,,,, +#,,,,,,,,,,,,,,,,,,,, +util_walk_DPM_asc,,PMOV_transit,,,,,,,0.55,,,0.55,,,0.55,,,,, +#util_walk_DPMwTransfer_asc,,PMOV_transit_wTransfer,,,,,,,,0.05,,,0.075,,,0.05,,,, +util_walk_StCar_asc,,StCar_transit,,,,,,,0.45,,,0.45,,,0.45,,,,, +#util_walk_StcarwTransfer_asc,,StCar_transit_wTransfer,,,,,,,,0.05,,,0.05,,,0.05,,,, +util_AATA_transit,,AATA_transit,,,,,,-0.2,,,-0.2,,,-0.2,,,,,, +util_district1_15_cte,districts15_cte,districts15_cte,,,,,,coef_transit_district15,,,coef_transit_district15,,,coef_transit_district15,,,,,, +util_districts1_2_cte,,districts1_2_cte,,,,,,1,,,1,,,1,,,,,, diff --git a/activitysim/examples/prototype_semcog/configs/trip_mode_choice.yaml b/activitysim/examples/production_semcog/configs/trip_mode_choice.yaml old mode 100755 new mode 100644 similarity index 80% rename from activitysim/examples/prototype_semcog/configs/trip_mode_choice.yaml rename to activitysim/examples/production_semcog/configs/trip_mode_choice.yaml index c5f224994..c25a88c43 --- a/activitysim/examples/prototype_semcog/configs/trip_mode_choice.yaml +++ b/activitysim/examples/production_semcog/configs/trip_mode_choice.yaml @@ -1,6 +1,8 @@ +# trip_mode_choice.yaml + SPEC: trip_mode_choice.csv -#COEFFICIENTS: trip_mode_choice_coeffs.csv -LEGACY_COEFFICIENTS: trip_mode_choice_coeffs.csv +COEFFICIENTS: trip_mode_choice_coefficients.csv +COEFFICIENT_TEMPLATE: trip_mode_choice_coefficients_template.csv LOGIT_TYPE: NL @@ -54,16 +56,16 @@ NESTS: CONSTANTS: orig_col_name: origin dest_col_name: destination - costPerMile: 18.29 - costShareSr2: 1.75 - costShareSr3: 2.50 - waitThresh: 10.00 - walkThresh: 1.00 - shortWalk: 0.333 - longWalk: 0.667 - walkSpeed: 3.00 - bikeThresh: 6.00 - bikeSpeed: 12.00 + # costPerMile: 18.29 + # costShareSr2: 1.75 + # costShareSr3: 2.50 + # waitThresh: 10.00 + # walkThresh: 1.00 + # shortWalk: 0.333 + # longWalk: 0.667 + # walkSpeed: 3.00 + # bikeThresh: 6.00 + # bikeSpeed: 12.00 # maxCbdAreaTypeThresh: 2 # indivTour: 1.00000 # upperEA: 5 @@ -152,6 +154,19 @@ CONSTANTS: 5: 0 min_waitTime: 0 max_waitTime: 50 + ivt_cost_multiplier: 0.6 + ridehail_wait_time_multiplier: 1.5 + walktimelong_multiplier: 5 + biketimelong_multiplier: 5 + xfers_wlk_multiplier: 5 + xfers_drv_multiplier: 15 + dacc_ratio_multiplier: 0 + density_index_multiplier: -5 + origin_density_index_multiplier: -15 + origin_density_index_max: -15 + ivt_com_multiplier: 0.80 + ivt_exp_multiplier: -0.0175 + ivt_hvy_multiplier: 0.80 # so far, we can use the same spec as for non-joint tours preprocessor: @@ -160,6 +175,7 @@ preprocessor: TABLES: - land_use - tours + - persons # - SPEC: trip_mode_choice_annotate_trips_preprocessor2 # DF: df @@ -179,6 +195,10 @@ TOURS_MERGED_CHOOSER_COLUMNS: - value_of_time - tour_type - free_parking_at_work + - ptype + - transit_pass_ownership + - transit_pass_subsidy + MODE_CHOICE_LOGSUM_COLUMN_NAME: mode_choice_logsum diff --git a/activitysim/examples/production_semcog/configs/trip_mode_choice_.csv b/activitysim/examples/production_semcog/configs/trip_mode_choice_.csv new file mode 100644 index 000000000..601ac7d2d --- /dev/null +++ b/activitysim/examples/production_semcog/configs/trip_mode_choice_.csv @@ -0,0 +1,379 @@ +Label,Description,Expression,DRIVEALONE,SHARED2,SHARED3,WALK,BIKE,WALK_LOC,WALK_PRM,WALK_MIX,PNR_LOC,PNR_PRM,PNR_MIX,KNR_LOC,KNR_PRM,KNR_MIX,SCHOOLBUS,TAXI,TNC_SINGLE,TNC_SHARED +#Drive_alone_no_toll,#Drive alone no toll,,,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Unavailable,DRIVEALONE - Unavailable,sov_available == False,coef_unavailable,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Unavailable_for_persons_less_than_16,DRIVEALONE - Unavailable for persons less than 16,age < 16,coef_unavailable,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Unavailable_for_joint_tours,DRIVEALONE - Unavailable for joint tours,is_joint == True,coef_unavailable,,,,,,,,,,,,,,,,, +#util_DRIVEALONE_Unavailable_if_didn't_drive_to_work,DRIVEALONE - Unavailable if didn't drive to work,is_atwork_subtour & ~work_tour_is_SOV,coef_unavailable,,,,,,,,,,,,,,,,, +util_DRIVEALONE_In-vehicle_time,DRIVEALONE - In-vehicle time,@odt_skims['SOV_TIME'],coef_ivt,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Terminal_time,DRIVEALONE - Terminal time,@coef_walktimeshort_multiplier * df.total_terminal_time,coef_ivt,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Operating_cost_,DRIVEALONE - Operating cost ,@ivt_cost_multiplier * df.ivot * costPerMile * odt_skims['SOV_DIST'],coef_ivt,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Parking_cost_,DRIVEALONE - Parking cost ,@ivt_cost_multiplier * df.ivot * df.total_parking_cost,coef_ivt,,,,,,,,,,,,,,,,, +util_DRIVEALONE_Person_is_between_16_and_19_years_old,DRIVEALONE - Person is between 16 and 19 years old,@(df.age >= 16) & (df.age <= 19),coef_age1619_da,,,,,,,,,,,,,,,,, +#Shared_ride_2,#Shared ride 2,,,,,,,,,,,,,,,,,,, +util_SHARED2_Unavailable,SHARED2 - Unavailable,hov2_available == False,,coef_unavailable,,,,,,,,,,,,,,,, +util_SHARED2_Unavailable_based_on_party_size,SHARED2 - Unavailable based on party size,is_joint & (number_of_participants > 2),,coef_unavailable,,,,,,,,,,,,,,,, +util_SHARED2_In-vehicle_time,SHARED2 - In-vehicle time,@odt_skims['HOV2_TIME'],,coef_ivt,,,,,,,,,,,,,,,, +util_SHARED2_Terminal_time,SHARED2 - Terminal time,@coef_walktimeshort_multiplier * df.total_terminal_time,,coef_ivt,,,,,,,,,,,,,,,, +util_SHARED2_Operating_cost,SHARED2 - Operating cost,@ivt_cost_multiplier * df.ivot * costPerMile * odt_skims['HOV2_DIST'],,coef_ivt,,,,,,,,,,,,,,,, +util_SHARED2_Parking_cost,SHARED2 - Parking cost,@ivt_cost_multiplier * df.ivot * df.total_parking_cost / costShareSr2,,coef_ivt,,,,,,,,,,,,,,,, +util_SHARED2_One_person_household,SHARED2 - One person household,@(df.hhsize == 1),,coef_hhsize1_sr,,,,,,,,,,,,,,,, +util_SHARED2_Two_person_household,SHARED2 - Two person household,@(df.hhsize == 2),,coef_hhsize2_sr,,,,,,,,,,,,,,,, +util_SHARED2_Person_is_16_years_old_or_older,SHARED2 - Person is 16 years old or older,@(df.age >= 16),,coef_age1619_da,,,,,,,,,,,,,,,, +#Shared_ride_3+,#Shared ride 3+,,,,,,,,,,,,,,,,,,, +util_SHARED3_Unavailable,SHARED3 - Unavailable,hov3_available == False,,,coef_unavailable,,,,,,,,,,,,,,, +util_SHARED3_Unavailable_based_joint_tour_mode,SHARED3 - Unavailable based joint tour mode,@df.is_joint & df.i_tour_mode.isin(I_SR2_MODES),,,coef_unavailable,,,,,,,,,,,,,,, +util_SHARED3_Unavailable_if_tour_mode_is_shared_2,SHARED3 - Unavailable if tour mode is shared 2,@df.i_tour_mode.isin(I_SR2_MODES),,,coef_unavailable,,,,,,,,,,,,,,, +util_SHARED3_In-vehicle_time,SHARED3 - In-vehicle time,@odt_skims['HOV3_TIME'],,,coef_ivt,,,,,,,,,,,,,,, +util_SHARED3_Terminal_time,SHARED3 - Terminal time,@coef_walktimeshort_multiplier * df.total_terminal_time,,,coef_ivt,,,,,,,,,,,,,,, +util_SHARED3_Operating_cost,SHARED3 - Operating cost,@ivt_cost_multiplier * df.ivot * costPerMile * odt_skims['HOV3_DIST'],,,coef_ivt,,,,,,,,,,,,,,, +util_SHARED3_Parking_cost,SHARED3 - Parking cost,@ivt_cost_multiplier * df.ivot * df.total_parking_cost / costShareSr3,,,coef_ivt,,,,,,,,,,,,,,, +util_SHARED3_One_person_household,SHARED3 - One person household,@(df.hhsize == 1),,,coef_hhsize1_sr,,,,,,,,,,,,,,, +util_SHARED3_Two_person_household,SHARED3 - Two person household,@(df.hhsize == 2),,,coef_hhsize2_sr,,,,,,,,,,,,,,, +util_SHARED3_Person_is_16_years_old_or_older,SHARED3 - Person is 16 years old or older,@(df.age >= 16),,,coef_age16p_sr,,,,,,,,,,,,,,, +#Walk,#Walk,,,,,,,,,,,,,,,,,,, +util_WALK_Time_up_to_2_miles,WALK - Time up to 2 miles,@coef_walktimeshort_multiplier * od_skims['DISTWALK'].clip(upper=walkThresh) * 60/walkSpeed,,,,coef_ivt,,,,,,,,,,,,,, +util_WALK_Time_beyond_2_of_a_miles,WALK - Time beyond 2 of a miles,@walktimelong_multiplier * (od_skims['DISTWALK'] - walkThresh).clip(lower=0) * 60/walkSpeed,,,,coef_ivt,,,,,,,,,,,,,, +util_WALK_Destination_zone_densityIndex,WALK - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,coef_ivt,,,,,,,,,,,,,, +util_WALK_Topology,WALK - Topology,@topology_walk_multiplier * df.trip_topology,,,,coef_ivt,,,,,,,,,,,,,, +#Bike,#Bike,,,,,,,,,,,,,,,,,,, +util_BIKE_Unavailable_if_tour_mode_is_not_bike,BIKE - Unavailable if tour mode is not bike,~tour_mode_is_bike,,,,,coef_unavailable,,,,,,,,,,,,, +#util_BIKE_Unavailable_if_didn't_bike_to_work,BIKE - Unavailable if didn't bike to work,is_atwork_subtour & ~work_tour_is_bike,,,,,coef_unavailable,,,,,,,,,,,,, +util_BIKE_Time_up_to_6_miles,BIKE - Time up to 6 miles,@coef_biketimeshort_multiplier * od_skims['DISTBIKE'].clip(upper=bikeThresh)*60/bikeSpeed,,,,,coef_ivt,,,,,,,,,,,,, +util_BIKE_Time_beyond_6_of_a_miles,BIKE - Time beyond 6 of a miles,@biketimelong_multiplier * (od_skims['DISTBIKE']-bikeThresh).clip(lower=0)*60/bikeSpeed,,,,,coef_ivt,,,,,,,,,,,,, +util_BIKE_Destination_zone_densityIndex,BIKE - Destination zone densityIndex,@density_index_multiplier*df.density_index,,,,,coef_ivt,,,,,,,,,,,,, +util_BIKE_Topology,BIKE - Topology,@topology_bike_multiplier * df.trip_topology,,,,,coef_ivt,,,,,,,,,,,,, +#Walk_to_Local,#Walk to Local,,,,,,,,,,,,,,,,,,, +util_WALK_LOC_Unavailable,WALK_LOC - Unavailable,walk_local_available == False,,,,,,coef_unavailable,,,,,,,,,,,, +util_WALK_LOC_In-vehicle_time,WALK_LOC - In-vehicle time,@odt_skims['WLK_LOC_IVT'],,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Short_iwait_time,WALK_LOC - Short iwait time,@coef_short_iwait_multiplier * (odt_skims['WLK_LOC_IWAIT']).clip(upper=waitThresh),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Long_iwait_time,WALK_LOC - Long iwait time,@coef_long_iwait_multiplier * (odt_skims['WLK_LOC_IWAIT']-waitThresh).clip(0),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_transfer_wait_time,WALK_LOC - transfer wait time,@coef_xwait_multiplier * odt_skims['WLK_LOC_XWAIT'],,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_number_of_transfers,WALK_LOC - number of transfers,@xfers_wlk_multiplier * (odt_skims['WLK_LOC_NT']).clip(0),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Walk_access_time,WALK_LOC - Walk access time,@coef_wacc_multiplier * (df.origin_local_time),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Walk_egress_time,WALK_LOC - Walk egress time,@coef_wegr_multiplier * (df.dest_local_time),,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Walk_other_time,WALK_LOC - Walk other time,@coef_waux_multiplier * odt_skims['WLK_LOC_WAUX'],,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Fare,WALK_LOC - Fare,@ivt_cost_multiplier * df.ivot * odt_skims['WLK_LOC_FARE'],,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Destination_zone_densityIndex,WALK_LOC - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Topology,WALK_LOC - Topology,@topology_trn_multiplier * df.trip_topology,,,,,,coef_ivt,,,,,,,,,,,, +util_WALK_LOC_Person_is_less_than_10_years_old,WALK_LOC - Person is less than 10 years old,@(df.age <= 10),,,,,,coef_age010_trn,,,,,,,,,,,, +#Walk_to_Premium,#Walk to Premium,,,,,,,,,,,,,,,,,,, +util_WALK_PRM_Unavailable,WALK_PRM - Unavailable,walk_premium_available == False,,,,,,,coef_unavailable,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time,WALK_PRM - In-vehicle time,@odt_skims['WLK_PRM_IVT'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time_on_PMov,WALK_PRM - In-vehicle time on PMov,@(coef_ivt_pmov_multiplier - 1) * odt_skims['WLK_PRM_IVTT_PMov'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time_on_StCar,WALK_PRM - In-vehicle time on StCar,@(coef_ivt_stcar_multiplier - 1) * odt_skims['WLK_PRM_IVTT_StCar'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time_on_BRT,WALK_PRM - In-vehicle time on BRT,@(coef_ivt_brt_multiplier - 1) * odt_skims['WLK_PRM_IVTT_Brt'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time_on_URB,WALK_PRM - In-vehicle time on URB,@(coef_ivt_urb_multiplier - 1) * odt_skims['WLK_PRM_IVTT_UrbRail'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_In-vehicle_time_on_COM,WALK_PRM - In-vehicle time on COM,@(coef_ivt_com_multiplier - 1) * odt_skims['WLK_PRM_IVTT_ComRail'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Short_iwait_time,WALK_PRM - Short iwait time,@coef_short_iwait_multiplier * (odt_skims['WLK_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Long_iwait_time,WALK_PRM - Long iwait time,@coef_long_iwait_multiplier * (odt_skims['WLK_PRM_IWAIT']-waitThresh).clip(0),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_transfer_wait_time,WALK_PRM - transfer wait time,@coef_xwait_multiplier * odt_skims['WLK_PRM_XWAIT'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_number_of_transfers,WALK_PRM - number of transfers,@xfers_wlk_multiplier * (odt_skims['WLK_PRM_NT']).clip(0),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Walk_access_time,WALK_PRM - Walk access time,@coef_wacc_multiplier * (df.origin_prm_time),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Walk_egress_time,WALK_PRM - Walk egress time,@coef_wegr_multiplier * (df.dest_prm_time),,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Walk_otherLight_rail/Ferry_time,WALK_PRM - Walk otherLight rail/Ferry time,@coef_waux_multiplier * odt_skims['WLK_PRM_WAUX'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Fare,WALK_PRM - Fare,@ivt_cost_multiplier * df.ivot * odt_skims['WLK_PRM_FARE'],,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Destination_zone_densityIndex,WALK_PRM - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Topology,WALK_PRM - Topology,@topology_trn_multiplier * df.trip_topology,,,,,,,coef_ivt,,,,,,,,,,, +util_WALK_PRM_Person_is_less_than_10_years_old,WALK_PRM - Person is less than 10 years old,@(df.age <= 10),,,,,,,coef_age010_trn,,,,,,,,,,, +#Walk_to_Mix,#Walk to Mix,,,,,,,,,,,,,,,,,,, +util_WALK_MIX_Unavailable,WALK_MIX - Unavailable,walk_mix_available == False,,,,,,,,coef_unavailable,,,,,,,,,, +util_WALK_MIX_In-vehicle_time,WALK_MIX - In-vehicle time,@odt_skims['WLK_MIX_IVT'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_In-vehicle_time_on_Bus,WALK_MIX - In-vehicle time on Bus,@odt_skims['WLK_MIX_IVTT_Bus'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_In-vehicle_time_on_PMov,WALK_MIX - In-vehicle time on PMov,@(coef_ivt_pmov_multiplier - 1) * odt_skims['WLK_MIX_IVTT_PMov'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_In-vehicle_time_on_StCar,WALK_MIX - In-vehicle time on StCar,@(coef_ivt_stcar_multiplier - 1) * odt_skims['WLK_MIX_IVTT_StCar'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_In-vehicle_time_on_BRT,WALK_MIX - In-vehicle time on BRT,@(coef_ivt_brt_multiplier - 1) * odt_skims['WLK_MIX_IVTT_Brt'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_In-vehicle_time_on_URB,WALK_MIX - In-vehicle time on URB,@(coef_ivt_urb_multiplier - 1) * odt_skims['WLK_MIX_IVTT_UrbRail'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_In-vehicle_time_on_COM,WALK_MIX - In-vehicle time on COM,@(coef_ivt_com_multiplier - 1) * odt_skims['WLK_MIX_IVTT_ComRail'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Short_iwait_time,WALK_MIX - Short iwait time,@coef_short_iwait_multiplier * (odt_skims['WLK_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Long_iwait_time,WALK_MIX - Long iwait time,@coef_long_iwait_multiplier * (odt_skims['WLK_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_transfer_wait_time,WALK_MIX - transfer wait time,@coef_xwait_multiplier * odt_skims['WLK_MIX_XWAIT'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_number_of_transfers,WALK_MIX - number of transfers,@xfers_wlk_multiplier * (odt_skims['WLK_MIX_NT']).clip(0),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Walk_access_time,WALK_MIX - Walk access time,@coef_wacc_multiplier * (df.origin_mix_time),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Walk_egress_time,WALK_MIX - Walk egress time,@coef_wegr_multiplier * (df.dest_mix_time),,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Walk_other_time,WALK_MIX - Walk other time,@coef_waux_multiplier * odt_skims['WLK_MIX_WAUX'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Fare,WALK_MIX - Fare,@ivt_cost_multiplier * df.ivot * odt_skims['WLK_MIX_FARE'],,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Destination_zone_densityIndex,WALK_MIX - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Topology,WALK_MIX - Topology,@topology_trn_multiplier * df.trip_topology,,,,,,,,coef_ivt,,,,,,,,,, +util_WALK_MIX_Person_is_less_than_10_years_old,WALK_MIX - Person is less than 10 years old,@(df.age <= 10),,,,,,,,coef_age010_trn,,,,,,,,,, +#PNR_to_Local,#PNR to Local,,,,,,,,,,,,,,,,,,, +util_PNR_LOC_Unavailable_for_zero_auto_households,PNR_LOC - Unavailable for zero auto households,auto_ownership == 0,,,,,,,,,coef_unavailable,,,,,,,,, +util_PNR_LOC_Unavailable_for_persons_less_than_16,PNR_LOC - Unavailable for persons less than 16,age < 16,,,,,,,,,coef_unavailable,,,,,,,,, +util_PNR_LOC_Destination_zone_densityIndex,PNR_LOC - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_Topology,PNR_LOC - Topology,@topology_trn_multiplier * df.trip_topology,,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_Person_is_less_than_10_years_old,PNR_LOC - Person is less than 10 years old,@(df.age < 10),,,,,,,,,coef_age010_trn,,,,,,,,, +util_PNR_LOC_outbound_Unavailable,PNR_LOC outbound - Unavailable,outbound & ~pnr_local_available_outbound,,,,,,,,,coef_unavailable,,,,,,,,, +util_PNR_LOC_outbound_In-vehicle_time,PNR_LOC outbound - In-vehicle time,@df.outbound * odt_skims['PNR_LOC_IVT'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Short_iwait_time,PNR_LOC outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['PNR_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Long_iwait_time,PNR_LOC outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['PNR_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_transfer_wait_time,PNR_LOC outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['PNR_LOC_XWAIT'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_number_of_transfers,PNR_LOC outbound - number of transfers,@df.outbound * xfers_wlk_multiplier * (odt_skims['PNR_LOC_NT']).clip(0),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Drive_time,PNR_LOC outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['PNR_LOC_DTIME'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Walk_egress_time,PNR_LOC outbound - Walk egress time,@df.outbound * coef_wegr_multiplier * (df.dest_local_time),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Walk_other_time,PNR_LOC outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['PNR_LOC_WAUX'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Fare_and_operating_cost,PNR_LOC outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (odt_skims['PNR_LOC_FARE'] + costPerMile*odt_skims['PNR_LOC_DDIST']),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_outbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_LOC outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['PNR_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Unavailable,PNR_LOC inbound - Unavailable,inbound & ~pnr_local_available_inbound,,,,,,,,,coef_unavailable,,,,,,,,, +util_PNR_LOC_inbound_In-vehicle_time,PNR_LOC inbound - In-vehicle time,@df.inbound * odt_skims['PNRE_LOC_IVT'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Short_iwait_time,PNR_LOC inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['PNRE_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Long_iwait_time,PNR_LOC inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['PNRE_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_transfer_wait_time,PNR_LOC inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['PNRE_LOC_XWAIT'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_number_of_transfers,PNR_LOC inbound - number of transfers,@df.inbound * xfers_wlk_multiplier * (odt_skims['PNRE_LOC_NT']).clip(0),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Drive_time,PNR_LOC inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['PNRE_LOC_DTIME'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Walk_access_time,PNR_LOC inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_local_time),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Walk_other_time,PNR_LOC inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['PNRE_LOC_WAUX'],,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Fare_and_operating_cost,PNR_LOC inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (odt_skims['PNRE_LOC_FARE'] + costPerMile*odt_skims['PNRE_LOC_DDIST']),,,,,,,,,coef_ivt,,,,,,,,, +util_PNR_LOC_inbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_LOC inbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['PNRE_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,coef_ivt,,,,,,,,, +#Drive_to_Premium,#Drive to Premium,,,,,,,,,,,,,,,,,,, +util_PNR_PRM_Unavailable_for_zero_auto_households,PNR_PRM - Unavailable for zero auto households,auto_ownership == 0,,,,,,,,,,coef_unavailable,,,,,,,, +util_PNR_PRM_Unavailable_for_persons_less_than_16,PNR_PRM - Unavailable for persons less than 16,age < 16,,,,,,,,,,coef_unavailable,,,,,,,, +util_PNR_PRM_Destination_zone_densityIndex,PNR_PRM - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_Topology,PNR_PRM - Topology,@topology_trn_multiplier * df.trip_topology,,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_Person_is_less_than_10_years_old,PNR_PRM - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,coef_age010_trn,,,,,,,, +util_PNR_PRM_outbound_Unavailable,PNR_PRM outbound - Unavailable,outbound & ~pnr_premium_available_outbound,,,,,,,,,,coef_unavailable,,,,,,,, +util_PNR_PRM_outbound_In-vehicle_time,PNR_PRM outbound - In-vehicle time,@df.outbound * odt_skims['PNR_PRM_IVT'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_PMov,PNR_PRM - In-vehicle time on PMov,@df.outbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['PNR_PRM_IVTT_PMov'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_StCar,PNR_PRM - In-vehicle time on StCar,@df.outbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['PNR_PRM_IVTT_StCar'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_BRT,PNR_PRM - In-vehicle time on BRT,@df.outbound * (coef_ivt_brt_multiplier - 1) * odt_skims['PNR_PRM_IVTT_Brt'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_URB,PNR_PRM - In-vehicle time on URB,@df.outbound * (coef_ivt_urb_multiplier - 1) * odt_skims['PNR_PRM_IVTT_UrbRail'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_COM,PNR_PRM - In-vehicle time on COM,@df.outbound * (coef_ivt_com_multiplier - 1) * odt_skims['PNR_PRM_IVTT_ComRail'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Short_iwait_time,PNR_PRM outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['PNR_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Long_iwait_time,PNR_PRM outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['PNR_PRM_IWAIT']-waitThresh).clip(0) ,,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_transfer_wait_time,PNR_PRM outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['PNR_PRM_XWAIT'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_number_of_transfers,PNR_PRM outbound - number of transfers,@df.outbound * xfers_drv_multiplier * (odt_skims['PNR_PRM_NT']).clip(0),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Drive_time,PNR_PRM outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['PNR_PRM_DTIME'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Walk_egress_time,PNR_PRM outbound - Walk egress time,@df.outbound * coef_wegr_multiplier * (df.dest_prm_time),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Walk_other_time,PNR_PRM outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['PNR_PRM_WAUX'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Fare_and_operating_cost,PNR_PRM outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (odt_skims['PNR_PRM_FARE'] + costPerMile * odt_skims['PNR_PRM_DDIST']),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_outbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_PRM outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['PNR_PRM_DDIST']) / od_skims['DIST'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Unavailable,PNR_PRM inbound - Unavailable,inbound & ~pnr_premium_available_inbound,,,,,,,,,,coef_unavailable,,,,,,,, +util_PNR_PRM_inbound_In-vehicle_time,PNR_PRM inbound - In-vehicle time,@df.inbound * odt_skims['PNRE_PRM_IVT'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_PMov,PNR_PRM - In-vehicle time on PMov,@df.inbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['PNRE_PRM_IVTT_PMov'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_StCar,PNR_PRM - In-vehicle time on StCar,@df.inbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['PNRE_PRM_IVTT_StCar'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_BRT,PNR_PRM - In-vehicle time on BRT,@df.inbound * (coef_ivt_brt_multiplier - 1) * odt_skims['PNRE_PRM_IVTT_Brt'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_URB,PNR_PRM - In-vehicle time on URB,@df.inbound * (coef_ivt_urb_multiplier - 1) * odt_skims['PNRE_PRM_IVTT_UrbRail'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_In-vehicle_time_on_COM,PNR_PRM - In-vehicle time on COM,@df.inbound * (coef_ivt_com_multiplier - 1) * odt_skims['PNRE_PRM_IVTT_ComRail'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Short_iwait_time,PNR_PRM inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['PNRE_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Long_iwait_time,PNR_PRM inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['PNRE_PRM_IWAIT']-waitThresh).clip(0),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_transfer_wait_time,PNR_PRM inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['PNRE_PRM_XWAIT'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_number_of_transfers,PNR_PRM inbound - number of transfers,@df.inbound * xfers_drv_multiplier * (odt_skims['PNRE_PRM_NT']).clip(0),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Drive_time,PNR_PRM inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['PNRE_PRM_DTIME'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Walk_access_time,PNR_PRM inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_prm_time),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Walk_other_time,PNR_PRM inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['PNRE_PRM_WAUX'],,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Fare_and_operating_cost,PNR_PRM inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (odt_skims['PNRE_PRM_FARE'] + costPerMile * odt_skims['PNRE_PRM_DDIST']),,,,,,,,,,coef_ivt,,,,,,,, +util_PNR_PRM_inbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_PRM inbound - Ratio of drive access distance to OD distance,@df.inbound * dacc_ratio_multiplier * (odt_skims['PNRE_PRM_DDIST'])/ od_skims['DIST'],,,,,,,,,,coef_ivt,,,,,,,, +#PNR_to_Mix,#PNR to Mix,,,,,,,,,,,,,,,,,,, +util_PNR_MIX_Unavailable_for_zero_auto_households,PNR_MIX - Unavailable for zero auto households,auto_ownership == 0,,,,,,,,,,,coef_unavailable,,,,,,, +util_PNR_MIX_Unavailable_for_persons_less_than_16,PNR_MIX - Unavailable for persons less than 16,age < 16,,,,,,,,,,,coef_unavailable,,,,,,, +util_PNR_MIX_Destination_zone_densityIndex,PNR_MIX - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_Topology,PNR_MIX - Topology,@topology_trn_multiplier * df.trip_topology,,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_Person_is_less_than_10_years_old,PNR_MIX - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,coef_age010_trn,,,,,,, +util_PNR_MIX_outbound_Unavailable,PNR_MIX outbound - Unavailable,outbound & ~pnr_mix_available_outbound,,,,,,,,,,,coef_unavailable,,,,,,, +util_PNR_MIX_outbound_In-vehicle_time,PNR_MIX outbound - In-vehicle time,@df.outbound * odt_skims['PNR_MIX_IVT'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_Bus,PNR_MIX - In-vehicle time on Bus,@df.outbound * odt_skims['PNR_MIX_IVTT_Bus'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_PMov,PNR_MIX - In-vehicle time on PMov,@df.outbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['PNR_MIX_IVTT_PMov'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_StCar,PNR_MIX - In-vehicle time on StCar,@df.outbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['PNR_MIX_IVTT_StCar'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_BRT,PNR_MIX - In-vehicle time on BRT,@df.outbound * (coef_ivt_brt_multiplier - 1) * odt_skims['PNR_MIX_IVTT_Brt'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_URB,PNR_MIX - In-vehicle time on URB,@df.outbound * (coef_ivt_urb_multiplier - 1) * odt_skims['PNR_MIX_IVTT_UrbRail'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_COM,PNR_MIX - In-vehicle time on COM,@df.outbound * (coef_ivt_com_multiplier - 1) * odt_skims['PNR_MIX_IVTT_ComRail'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Short_iwait_time,PNR_MIX outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['PNR_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Long_iwait_time,PNR_MIX outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['PNR_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_transfer_wait_time,PNR_MIX outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['PNR_MIX_XWAIT'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_number_of_transfers,PNR_MIX outbound - number of transfers,@df.outbound * xfers_drv_multiplier * (odt_skims['PNR_MIX_NT']).clip(0),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Drive_time,PNR_MIX outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['PNR_MIX_DTIME'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Walk_egress_ime,PNR_MIX outbound - Walk egress ime,@df.outbound * coef_wegr_multiplier * (df.dest_mix_time),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Walk_other_time,PNR_MIX outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['PNR_MIX_WAUX'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Fare_and_operating_cost,PNR_MIX outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (odt_skims['PNR_MIX_FARE'] + costPerMile * odt_skims['PNR_MIX_DDIST']),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_outbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_MIX outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['PNR_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Unavailable,PNR_MIX inbound - Unavailable,inbound & ~pnr_mix_available_inbound,,,,,,,,,,,coef_unavailable,,,,,,, +util_PNR_MIX_inbound_In-vehicle_time,PNR_MIX inbound - In-vehicle time,@df.inbound * odt_skims['PNRE_MIX_IVT'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_Bus,PNR_MIX - In-vehicle time on Bus,@df.inbound * odt_skims['PNRE_MIX_IVTT_Bus'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_PMov,PNR_MIX - In-vehicle time on PMov,@df.inbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['PNRE_MIX_IVTT_PMov'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_StCar,PNR_MIX - In-vehicle time on StCar,@df.inbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['PNRE_MIX_IVTT_StCar'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_BRT,PNR_MIX - In-vehicle time on BRT,@df.inbound * (coef_ivt_brt_multiplier - 1) * odt_skims['PNRE_MIX_IVTT_Brt'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_URB,PNR_MIX - In-vehicle time on URB,@df.inbound * (coef_ivt_urb_multiplier - 1) * odt_skims['PNRE_MIX_IVTT_UrbRail'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_In-vehicle_time_on_COM,PNR_MIX - In-vehicle time on COM,@df.inbound * (coef_ivt_com_multiplier - 1) * odt_skims['PNRE_MIX_IVTT_ComRail'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Short_iwait_time,PNR_MIX inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['PNRE_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Long_iwait_time,PNR_MIX inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['PNRE_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_transfer_wait_time,PNR_MIX inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['PNRE_MIX_XWAIT'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_number_of_transfers,PNR_MIX inbound - number of transfers,@df.inbound * xfers_drv_multiplier * (odt_skims['PNRE_MIX_NT']).clip(0),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Drive_time,PNR_MIX inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['PNRE_MIX_DTIME'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Walk_access_time,PNR_MIX inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_mix_time),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Walk_other_time,PNR_MIX inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['PNRE_MIX_WAUX'],,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Fare_and_operating_cost,PNR_MIX inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (odt_skims['PNRE_MIX_FARE'] + costPerMile * odt_skims['PNRE_MIX_DDIST']),,,,,,,,,,,coef_ivt,,,,,,, +util_PNR_MIX_inbound_Ratio_of_drive_access_distance_to_OD_distance,PNR_MIX inbound - Ratio of drive access distance to OD distance,@df.inbound * dacc_ratio_multiplier * (odt_skims['PNRE_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,coef_ivt,,,,,,, +#KNR_to_Local,#KNR to Local,,,,,,,,,,,,,,,,,,, +util_KNR_LOC_Unavailable_for_persons_less_than_16,KNR_LOC - Unavailable for persons less than 16,age < 16,,,,,,,,,,,,coef_unavailable,,,,,, +util_KNR_LOC_Destination_zone_densityIndex,KNR_LOC - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_Topology,KNR_LOC - Topology,@topology_trn_multiplier * df.trip_topology,,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_Person_is_less_than_10_years_old,KNR_LOC - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,,coef_age010_trn,,,,,, +util_KNR_LOC_outbound_Unavailable,KNR_LOC outbound - Unavailable,outbound & ~knr_local_available_outbound,,,,,,,,,,,,coef_unavailable,,,,,, +util_KNR_LOC_outbound_In-vehicle_time,KNR_LOC outbound - In-vehicle time,@df.outbound * odt_skims['KNR_LOC_IVT'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Short_iwait_time,KNR_LOC outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['KNR_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Long_iwait_time,KNR_LOC outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['KNR_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_transfer_wait_time,KNR_LOC outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['KNR_LOC_XWAIT'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_number_of_transfers,KNR_LOC outbound - number of transfers,@df.outbound * xfers_wlk_multiplier * (odt_skims['KNR_LOC_NT']).clip(0),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Drive_time,KNR_LOC outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['KNR_LOC_DTIME'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Walk_egress_time,KNR_LOC outbound - Walk egress time,@df.outbound * coef_wegr_multiplier * (df.dest_local_time),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Walk_other_time,KNR_LOC outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['KNR_LOC_WAUX'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Fare_and_operating_cost,KNR_LOC outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (odt_skims['KNR_LOC_FARE'] + costPerMile*odt_skims['KNR_LOC_DDIST']),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_outbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_LOC outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['KNR_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Unavailable,KNR_LOC inbound - Unavailable,inbound & ~knr_local_available_inbound,,,,,,,,,,,,coef_unavailable,,,,,, +util_KNR_LOC_inbound_In-vehicle_time,KNR_LOC inbound - In-vehicle time,@df.inbound * odt_skims['KNRE_LOC_IVT'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Short_iwait_time,KNR_LOC inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['KNRE_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Long_iwait_time,KNR_LOC inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['KNRE_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_transfer_wait_time,KNR_LOC inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['KNRE_LOC_XWAIT'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_number_of_transfers,KNR_LOC inbound - number of transfers,@df.inbound * xfers_wlk_multiplier * (odt_skims['KNRE_LOC_NT']).clip(0),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Drive_time,KNR_LOC inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['KNRE_LOC_DTIME'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Walk_access_time,KNR_LOC inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_local_time),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Walk_other_time,KNR_LOC inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['KNRE_LOC_WAUX'],,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Fare_and_operating_cost,KNR_LOC inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (odt_skims['KNRE_LOC_FARE'] + costPerMile*odt_skims['KNRE_LOC_DDIST']),,,,,,,,,,,,coef_ivt,,,,,, +util_KNR_LOC_inbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_LOC inbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['KNRE_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,,,,coef_ivt,,,,,, +#Drive_to_Premium,#Drive to Premium,,,,,,,,,,,,,,,,,,, +util_KNR_PRM_Unavailable_for_persons_less_than_16,KNR_PRM - Unavailable for persons less than 16,age < 16,,,,,,,,,,,,,coef_unavailable,,,,, +util_KNR_PRM_Destination_zone_densityIndex,KNR_PRM - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_Topology,KNR_PRM - Topology,@topology_trn_multiplier * df.trip_topology,,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_Person_is_less_than_10_years_old,KNR_PRM - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,,,coef_age010_trn,,,,, +util_KNR_PRM_outbound_Unavailable,KNR_PRM outbound - Unavailable,outbound & ~knr_premium_available_outbound,,,,,,,,,,,,,coef_unavailable,,,,, +util_KNR_PRM_outbound_In-vehicle_time,KNR_PRM outbound - In-vehicle time,@df.outbound * odt_skims['KNR_PRM_IVT'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_PMov,KNR_PRM - In-vehicle time on PMov,@df.outbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['KNR_PRM_IVTT_PMov'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_StCar,KNR_PRM - In-vehicle time on StCar,@df.outbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['KNR_PRM_IVTT_StCar'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_BRT,KNR_PRM - In-vehicle time on BRT,@df.outbound * (coef_ivt_brt_multiplier - 1) * odt_skims['KNR_PRM_IVTT_Brt'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_URB,KNR_PRM - In-vehicle time on URB,@df.outbound * (coef_ivt_urb_multiplier - 1) * odt_skims['KNR_PRM_IVTT_UrbRail'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_COM,KNR_PRM - In-vehicle time on COM,@df.outbound * (coef_ivt_com_multiplier - 1) * odt_skims['KNR_PRM_IVTT_ComRail'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Short_iwait_time,KNR_PRM outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['KNR_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Long_iwait_time,KNR_PRM outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['KNR_PRM_IWAIT']-waitThresh).clip(0) ,,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_transfer_wait_time,KNR_PRM outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['KNR_PRM_XWAIT'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_number_of_transfers,KNR_PRM outbound - number of transfers,@df.outbound * xfers_drv_multiplier * (odt_skims['KNR_PRM_NT']).clip(0),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Drive_time,KNR_PRM outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['KNR_PRM_DTIME'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Walk_egress_time,KNR_PRM outbound - Walk egress time,@df.outbound * coef_wegr_multiplier * (df.dest_prm_time),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Walk_other_time,KNR_PRM outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['KNR_PRM_WAUX'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Fare_and_operating_cost,KNR_PRM outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (odt_skims['KNR_PRM_FARE'] + costPerMile * odt_skims['KNR_PRM_DDIST']),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_outbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_PRM outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['KNR_PRM_DDIST']) / od_skims['DIST'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Unavailable,KNR_PRM inbound - Unavailable,inbound & ~knr_premium_available_inbound,,,,,,,,,,,,,coef_unavailable,,,,, +util_KNR_PRM_inbound_In-vehicle_time,KNR_PRM inbound - In-vehicle time,@df.inbound * odt_skims['KNRE_PRM_IVT'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_PMov,KNR_PRM - In-vehicle time on PMov,@df.inbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['KNRE_PRM_IVTT_PMov'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_StCar,KNR_PRM - In-vehicle time on StCar,@df.inbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['KNRE_PRM_IVTT_StCar'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_BRT,KNR_PRM - In-vehicle time on BRT,@df.inbound * (coef_ivt_brt_multiplier - 1) * odt_skims['KNRE_PRM_IVTT_Brt'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_URB,KNR_PRM - In-vehicle time on URB,@df.inbound * (coef_ivt_urb_multiplier - 1) * odt_skims['KNRE_PRM_IVTT_UrbRail'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_In-vehicle_time_on_COM,KNR_PRM - In-vehicle time on COM,@df.inbound * (coef_ivt_com_multiplier - 1) * odt_skims['KNRE_PRM_IVTT_ComRail'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Short_iwait_time,KNR_PRM inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['KNRE_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Long_iwait_time,KNR_PRM inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['KNRE_PRM_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_transfer_wait_time,KNR_PRM inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['KNRE_PRM_XWAIT'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_number_of_transfers,KNR_PRM inbound - number of transfers,@df.inbound * xfers_drv_multiplier * (odt_skims['KNRE_PRM_NT']).clip(0),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Drive_time,KNR_PRM inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['KNRE_PRM_DTIME'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Walk_access_time,KNR_PRM inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_prm_time),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Walk_other_time,KNR_PRM inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['KNRE_PRM_WAUX'],,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Fare_and_operating_cost,KNR_PRM inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (odt_skims['KNRE_PRM_FARE'] + costPerMile * odt_skims['KNRE_PRM_DDIST']),,,,,,,,,,,,,coef_ivt,,,,, +util_KNR_PRM_inbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_PRM inbound - Ratio of drive access distance to OD distance,@df.inbound * dacc_ratio_multiplier * (odt_skims['KNRE_PRM_DDIST'])/ od_skims['DIST'],,,,,,,,,,,,,coef_ivt,,,,, +#KNR_to_Mix,#KNR to Mix,,,,,,,,,,,,,,,,,,, +util_KNR_MIX_Unavailable_for_persons_less_than_16,KNR_MIX - Unavailable for persons less than 16,age < 16,,,,,,,,,,,,,,coef_unavailable,,,, +util_KNR_MIX_Destination_zone_densityIndex,KNR_MIX - Destination zone densityIndex,@density_index_multiplier * df.density_index,,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_Topology,KNR_MIX - Topology,@topology_trn_multiplier * df.trip_topology,,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_Person_is_less_than_10_years_old,KNR_MIX - Person is less than 10 years old,@(df.age < 10),,,,,,,,,,,,,,coef_age010_trn,,,, +util_KNR_MIX_outbound_Unavailable,KNR_MIX outbound - Unavailable,outbound & ~knr_mix_available_outbound,,,,,,,,,,,,,,coef_unavailable,,,, +util_KNR_MIX_outbound_In-vehicle_time,KNR_MIX outbound - In-vehicle time,@df.outbound * odt_skims['KNR_MIX_IVT'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_Bus,KNR_MIX - In-vehicle time on Bus,@df.outbound * odt_skims['KNR_MIX_IVTT_Bus'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_PMov,KNR_MIX - In-vehicle time on PMov,@df.outbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['KNR_MIX_IVTT_PMov'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_StCar,KNR_MIX - In-vehicle time on StCar,@df.outbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['KNR_MIX_IVTT_StCar'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_BRT,KNR_MIX - In-vehicle time on BRT,@df.outbound * (coef_ivt_brt_multiplier - 1) * odt_skims['KNR_MIX_IVTT_Brt'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_URB,KNR_MIX - In-vehicle time on URB,@df.outbound * (coef_ivt_urb_multiplier - 1) * odt_skims['KNR_MIX_IVTT_UrbRail'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_COM,KNR_MIX - In-vehicle time on COM,@df.outbound * (coef_ivt_com_multiplier - 1) * odt_skims['KNR_MIX_IVTT_ComRail'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Short_iwait_time,KNR_MIX outbound - Short iwait time,@df.outbound * coef_short_iwait_multiplier * (odt_skims['KNR_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Long_iwait_time,KNR_MIX outbound - Long iwait time,@df.outbound * coef_long_iwait_multiplier * (odt_skims['KNR_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_transfer_wait_time,KNR_MIX outbound - transfer wait time,@df.outbound * coef_xwait_multiplier * odt_skims['KNR_MIX_XWAIT'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_number_of_transfers,KNR_MIX outbound - number of transfers,@df.outbound * xfers_drv_multiplier * (odt_skims['KNR_MIX_NT']).clip(0),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Drive_time,KNR_MIX outbound - Drive time,@df.outbound * coef_dtim_multiplier * odt_skims['KNR_MIX_DTIME'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Walk_egress_ime,KNR_MIX outbound - Walk egress ime,@df.outbound * coef_wegr_multiplier * (df.dest_mix_time),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Walk_other_time,KNR_MIX outbound - Walk other time,@df.outbound * coef_waux_multiplier * odt_skims['KNR_MIX_WAUX'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Fare_and_operating_cost,KNR_MIX outbound - Fare and operating cost,@df.outbound * ivt_cost_multiplier * df.ivot * (odt_skims['KNR_MIX_FARE'] + costPerMile * odt_skims['KNR_MIX_DDIST']),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_outbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_MIX outbound - Ratio of drive access distance to OD distance,@df.outbound * dacc_ratio_multiplier * (odt_skims['KNR_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Unavailable,KNR_MIX inbound - Unavailable,inbound & ~knr_mix_available_inbound,,,,,,,,,,,,,,coef_unavailable,,,, +util_KNR_MIX_inbound_In-vehicle_time,KNR_MIX inbound - In-vehicle time,@df.inbound * odt_skims['KNRE_MIX_IVT'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_Bus,KNR_MIX - In-vehicle time on Bus,@df.inbound * odt_skims['KNRE_MIX_IVTT_Bus'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_PMov,KNR_MIX - In-vehicle time on PMov,@df.inbound * (coef_ivt_pmov_multiplier - 1) * odt_skims['KNRE_MIX_IVTT_PMov'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_StCar,KNR_MIX - In-vehicle time on StCar,@df.inbound * (coef_ivt_stcar_multiplier - 1) * odt_skims['KNRE_MIX_IVTT_StCar'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_BRT,KNR_MIX - In-vehicle time on BRT,@df.inbound * (coef_ivt_brt_multiplier - 1) * odt_skims['KNRE_MIX_IVTT_Brt'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_URB,KNR_MIX - In-vehicle time on URB,@df.inbound * (coef_ivt_urb_multiplier - 1) * odt_skims['KNRE_MIX_IVTT_UrbRail'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_In-vehicle_time_on_COM,KNR_MIX - In-vehicle time on COM,@df.inbound * (coef_ivt_com_multiplier - 1) * odt_skims['KNRE_MIX_IVTT_ComRail'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Short_iwait_time,KNR_MIX inbound - Short iwait time,@df.inbound * coef_short_iwait_multiplier * (odt_skims['KNRE_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Long_iwait_time,KNR_MIX inbound - Long iwait time,@df.inbound * coef_long_iwait_multiplier * (odt_skims['KNRE_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_transfer_wait_time,KNR_MIX inbound - transfer wait time,@df.inbound * coef_xwait_multiplier * odt_skims['KNRE_MIX_XWAIT'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_number_of_transfers,KNR_MIX inbound - number of transfers,@df.inbound * xfers_drv_multiplier * (odt_skims['KNRE_MIX_NT']).clip(0),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Drive_time,KNR_MIX inbound - Drive time,@df.inbound * coef_dtim_multiplier * odt_skims['KNRE_MIX_DTIME'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Walk_access_time,KNR_MIX inbound - Walk access time,@df.inbound * coef_wacc_multiplier * (df.origin_mix_time),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Walk_other_time,KNR_MIX inbound - Walk other time,@df.inbound * coef_waux_multiplier * odt_skims['KNRE_MIX_WAUX'],,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Fare_and_operating_cost,KNR_MIX inbound - Fare and operating cost,@df.inbound * ivt_cost_multiplier * df.ivot * (odt_skims['KNRE_MIX_FARE'] + costPerMile * odt_skims['KNRE_MIX_DDIST']),,,,,,,,,,,,,,coef_ivt,,,, +util_KNR_MIX_inbound_Ratio_of_drive_access_distance_to_OD_distance,KNR_MIX inbound - Ratio of drive access distance to OD distance,@df.inbound * dacc_ratio_multiplier * (odt_skims['KNRE_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,,,,coef_ivt,,,, +#Taxi,#Taxi,,,,,,,,,,,,,,,,,,, +util_Taxi_In-vehicle_time,Taxi - In-vehicle time,@odt_skims['HOV2_TIME'],,,,,,,,,,,,,,,,coef_ivt,, +util_Taxi_Wait_time,Taxi - Wait time,@ridehail_wait_time_multiplier * df.origTaxiWaitTime,,,,,,,,,,,,,,,,coef_ivt,, +util_Taxi_Fare,Taxi - Fare,@ivt_cost_multiplier * df.ivot * (Taxi_baseFare + odt_skims['HOV2_DIST'] * Taxi_costPerMile + odt_skims['HOV2_TIME'] * Taxi_costPerMinute)*100,,,,,,,,,,,,,,,,coef_ivt,, +util_TNC_Single_In-vehicle_time,TNC Single - In-vehicle time,@odt_skims['HOV2_TIME'] ,,,,,,,,,,,,,,,,,coef_ivt, +util_TNC_Single_Wait_time,TNC Single - Wait time,@ridehail_wait_time_multiplier * df.origSingleTNCWaitTime,,,,,,,,,,,,,,,,,coef_ivt, +util_TNC_Single_Cost,TNC Single - Cost,"@ivt_cost_multiplier * df.ivot * np.maximum(TNC_single_baseFare + odt_skims['HOV2_DIST'] * TNC_single_costPerMile + odt_skims['HOV2_TIME'] * TNC_single_costPerMinute, TNC_single_costMinimum) * 100",,,,,,,,,,,,,,,,,coef_ivt, +util_TNC_Shared_In-vehicle_time,TNC Shared - In-vehicle time,@odt_skims['HOV2_TIME'] * TNC_shared_IVTFactor,,,,,,,,,,,,,,,,,,coef_ivt +util_TNC_Shared_Wait_time,TNC Shared - Wait time,@ridehail_wait_time_multiplier * df.origSharedTNCWaitTime,,,,,,,,,,,,,,,,,,coef_ivt +util_TNC_Shared_Cost,TNC Shared - Cost,"@ivt_cost_multiplier * df.ivot * np.maximum(TNC_shared_baseFare + odt_skims['HOV2_DIST'] * TNC_shared_costPerMile + odt_skims['HOV2_TIME']* TNC_shared_costPerMinute, TNC_shared_costMinimum) * 100",,,,,,,,,,,,,,,,,,coef_ivt +#,#,,,,,,,,,,,,,,,,,,, +util_SOV_tour_mode_availability,SOV tour mode availability,tour_mode_is_SOV,,coef_unavailable,coef_unavailable,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable +util_sr2_tour_mode_availability,SR2 tour mode availability,tour_mode_is_sr2,,,coef_unavailable,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable +util_sr3p_tour_mode_availability,SR3+ tour mode availability,tour_mode_is_sr3p,,,,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable +util_Walk_tour_mode_availability,Walk tour mode availability,tour_mode_is_walk,coef_unavailable,coef_unavailable,coef_unavailable,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable +util_Bike_tour_mode_availability,Bike tour mode availability,tour_mode_is_bike,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable +util_Walk_to_Transit_tour_mode_availability,Walk to Transit tour mode availability,tour_mode_is_walk_transit,coef_unavailable,,,,coef_unavailable,,,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,, +util_Drive_to_Transit_tour_mode_availability,Drive to Transit tour mode availability,tour_mode_is_drive_transit,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,,,,,,coef_unavailable,,, +util_School_bus_tour_mode_availability,School bus tour mode availability,tour_mode_is_school_bus,coef_unavailable,,,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,coef_unavailable,coef_unavailable,coef_unavailable +util_Ride_Hail_tour_mode_availability,Ride Hail tour mode availability,tour_mode_is_ride_hail,coef_unavailable,,,,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,coef_unavailable,,, +#indiv_tour_ASCs,#indiv tour ASCs,,,,,,,,,,,,,,,,,,, +util_Drive_Alone_tour_mode_ASC_walk,Drive Alone tour mode ASC -- walk,@(df.is_indiv & df.i_tour_mode.isin(I_SOV_MODES)),,,,sov_ASC_walk,,,,,,,,,,,,,, +util_Drive_Alone_tour_mode_ASC_ride_hail,Drive Alone tour mode ASC -- ride hail,@(df.is_indiv & df.i_tour_mode.isin(I_SOV_MODES)),,,,,,,,,,,,,,,,sov_ASC_taxi,sov_ASC_tnc_single,sov_ASC_tnc_shared +util_Shared_Ride_2_tour_mode_ASC_drive_alone,Shared Ride 2 tour mode ASC -- drive alone,@(df.is_indiv & df.i_tour_mode.isin(I_SR2_MODES)),sr2_ASC_sov,,,,,,,,,,,,,,,,, +util_Shared_Ride_2_tour_mode_ASC_walk,Shared Ride 2 tour mode ASC -- walk,@(df.is_indiv & df.i_tour_mode.isin(I_SR2_MODES)),,,,sr2_ASC_walk,,,,,,,,,,,,,, +util_Shared_Ride_2_tour_mode_ASC_ride_hail,Shared Ride 2 tour mode ASC -- ride hail,@(df.is_indiv & df.i_tour_mode.isin(I_SR2_MODES)),,,,,,,,,,,,,,,,sr2_ASC_taxi,sr2_ASC_tnc_single,sr2_ASC_tnc_shared +util_Shared_Ride_3+_tour_mode_ASC_drive_alone,Shared Ride 3+ tour mode ASC -- drive alone,@(df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),sr3p_ASC_sov,,,,,,,,,,,,,,,,, +util_Shared_Ride_3+_tour_mode_ASC_shared_ride_2,Shared Ride 3+ tour mode ASC -- shared ride 2,@(df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),,sr3p_ASC_sr2,,,,,,,,,,,,,,,, +util_Shared_Ride_3+_tour_mode_ASC_walk,Shared Ride 3+ tour mode ASC -- walk,@(df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),,,,sr3p_ASC_walk,,,,,,,,,,,,,, +util_Shared_Ride_3+_tour_mode_ASC_ride_hail,Shared Ride 3+ tour mode ASC -- ride hail,@(df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),,,,,,,,,,,,,,,,sr3p_ASC_taxi,sr3p_ASC_tnc_single,sr3p_ASC_tnc_shared +#util_Walk_tour_mode_ASC_ride_hail,Walk tour mode ASC -- ride hail,@df.is_indiv & (df.i_tour_mode == I_WALK_MODE),,,,,,,,,,,,,,,,walk_ASC_taxi,walk_ASC_tnc_single,walk_ASC_tnc_shared +util_Bike_tour_mode_ASC_walk,Bike tour mode ASC -- walk,@df.is_indiv & (df.i_tour_mode == I_BIKE_MODE),,,,bike_ASC_walk,,,,,,,,,,,,,, +#util_Bike_tour_mode_ASC_ride_hail,Bike tour mode ASC -- ride hail,@df.is_indiv & (df.i_tour_mode == I_BIKE_MODE),,,,,,,,,,,,,,,,bike_ASC_taxi,bike_ASC_tnc_single,bike_ASC_tnc_shared +util_Walk-transit_tour_mode_ASC_shared_ride_2,Walk-transit tour mode ASC -- shared ride 2,@(df.is_indiv & df.tour_mode_is_walk_transit),,walk_transit_ASC_sr2,,,,,,,,,,,,,,,, +util_Walk-transit_tour_mode_ASC_shared_ride_3+,Walk-transit tour mode ASC -- shared ride 3+,@(df.is_indiv & df.tour_mode_is_walk_transit),,,walk_transit_ASC_sr3p,,,,,,,,,,,,,,, +util_Walk-transit_tour_mode_ASC_walk,Walk-transit tour mode ASC -- walk,@(df.is_indiv & df.tour_mode_is_walk_transit),,,,walk_transit_ASC_walk,,,,,,,,,,,,,, +util_Walk-transit_tour_mode_ASC_ride_hail,Walk-transit tour mode ASC -- ride hail,@(df.is_indiv & df.tour_mode_is_walk_transit),,,,,,,,,,,,,,,,walk_transit_ASC_taxi,walk_transit_ASC_tnc_single,walk_transit_ASC_tnc_shared +util_Drive_to_Transit_tour_mode_ASC_ride_hail,Drive to Transit tour mode ASC -- ride hail,@(df.is_indiv & df.tour_mode_is_pnr_transit),,,,,,,,,,,,,,,,pnr_ASC_taxi,pnr_ASC_tnc_single,pnr_ASC_tnc_shared +util_Drive_to_Transit_tour_mode_ASC_ride_hail,Drive to Transit tour mode ASC -- ride hail,@(df.is_indiv & df.tour_mode_is_knr_transit),,,,,,,,,,,,,,,,knr_ASC_taxi,knr_ASC_tnc_single,knr_ASC_tnc_shared +util_Ride_Hail_tour_mode_ASC_ride_hail,Ride Hail tour mode ASC -- shared 2,@(df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,ride_hail_ASC_sr2,,,,,,,,,,,,,,,, +util_Ride_Hail_tour_mode_ASC_ride_hail,Ride Hail tour mode ASC -- shared 3+,@(df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,ride_hail_ASC_sr3p,,,,,,,,,,,,,,, +util_Ride_Hail_tour_mode_ASC_ride_hail,Ride Hail tour mode ASC -- walk,@(df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,ride_hail_ASC_walk,,,,,,,,,,,,,, +util_Ride_Hail_tour_mode_ASC_ride_hail,Ride Hail tour mode ASC -- walk-transit,@(df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,ride_hail_ASC_walk_transit,ride_hail_ASC_walk_transit,ride_hail_ASC_walk_transit,,,,,,,,, +util_Ride_Hail_tour_mode_ASC_ride_hail,Ride Hail tour mode ASC -- ride hail,@(df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,,,,,,,,,,ride_hail_ASC_taxi,,ride_hail_ASC_tnc_shared +util_Shared_Ride_2_tour_mode_ASC_walk,joint - sr2 tour mode ASC -- walk,@(df.is_joint & df.i_tour_mode.isin(I_SR2_MODES)),,,,joint_sr2_ASC_walk,,,,,,,,,,,,,, +util_Shared_Ride_3+_tour_mode_ASC_walk,joint - sr3p tour mode ASC,@(df.is_joint & df.i_tour_mode.isin(I_SR3P_MODES)),,joint_sr3p_ASC_sr2,,joint_sr3p_ASC_walk,,,,,,,,,,,,,, +util_joint_Walk-transit_tour_mode_ASC_shared_ride_2,joint - Walk-transit tour mode ASC -- shared ride 2,@(df.is_joint & df.tour_mode_is_walk_transit),,joint_walk_transit_ASC_sr2,,,,,,,,,,,,,,,, +util_joint_Walk-transit_tour_mode_ASC_shared_ride_3+,joint - Walk-transit tour mode ASC -- shared ride 3+,@(df.is_joint & df.tour_mode_is_walk_transit),,,joint_walk_transit_ASC_sr3p,,,,,,,,,,,,,,, +util_joint_Walk-transit_tour_mode_ASC_walk,joint - Walk-transit tour mode ASC -- walk,@(df.is_joint & df.tour_mode_is_walk_transit),,,,joint_walk_transit_ASC_walk,,,,,,,,,,,,,, +util_joint_Walk_to_Transit_tour_mode_ASC_ride_hail,joint - Walk to Transit tour mode ASC -- ride hail,@(df.is_joint & df.tour_mode_is_walk_transit),,,,,,,,,,,,,,,,joint_walk_transit_ASC_taxi,joint_walk_transit_ASC_tnc_single,joint_walk_transit_ASC_tnc_shared +util_joint_PNR_to_Transit_tour_mode_ASC_ride_hail,joint - PNR to Transit tour mode ASC -- ride hail,@(df.is_joint & df.tour_mode_is_pnr_transit),,,,,,,,,,,,,,,,joint_pnr_ASC_taxi,joint_pnr_ASC_tnc_single,joint_pnr_ASC_tnc_shared +util_joint_KNR_to_Transit_tour_mode_ASC_ride_hail,joint - KNR to Transit tour mode ASC -- ride hail,@(df.is_joint & df.tour_mode_is_knr_transit),,,,,,,,,,,,,,,,joint_knr_ASC_taxi,joint_knr_ASC_tnc_single,joint_knr_ASC_tnc_shared +util_joint_Ride_Hail_tour_mode_ASC_ride_hail,joint - Ride Hail tour mode ASC -- shared 2,@(df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,joint_ride_hail_ASC_sr2,,,,,,,,,,,,,,,, +util_joint_Ride_Hail_tour_mode_ASC_ride_hail,joint - Ride Hail tour mode ASC -- shared 3+,@ (df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,joint_ride_hail_ASC_sr3p,,,,,,,,,,,,,,, +util_joint_Ride_Hail_tour_mode_ASC_ride_hail,joint - Ride Hail tour mode ASC -- walk,@(df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,joint_ride_hail_ASC_walk,,,,,,,,,,,,,, +util_joint_Ride_Hail_tour_mode_ASC_ride_hail,joint - Ride Hail tour mode ASC -- taxi,@(df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,,,,,,,,,,joint_ride_hail_ASC_taxi,,joint_ride_hail_ASC_tnc_shared +util_Walk_not_available_for_long_distances,Walk not available for long distances,@df.tour_mode_is_walk & (od_skims['DISTWALK'] > 3),,,,coef_unavailable,,,,,,,,,,,,,, +util_Bike_not_available_for_long_distances,Bike not available for long distances,@df.tour_mode_is_walk & (od_skims['DISTBIKE'] > 8),,,,,coef_unavailable,,,,,,,,,,,,, +#School_Bus,#School Bus,,,,,,,,,,,,,,,,,,, +util_School_Bus_Unavailable_if_primary_purpose_NOT_school,School Bus Unavailable if primary purpose NOT school,~is_school,,,,,,,,,,,,,,,coef_unavailable,,, +util_School_Bus_Unavailable_Tour_Mode_=_SOV,School Bus Unavailable - Tour Mode = SOV,tour_mode_is_SOV,,,,,,,,,,,,,,,coef_unavailable,,, +util_School_Bus_Unavailable_Tour_Mode_=_Transit,School Bus Unavailable - Tour Mode = Transit,tour_mode_is_drive_transit,,,,,,,,,,,,,,,coef_unavailable,,, +util_School_Bus_In-vehicle_time_(20_miles_per_hour),School Bus - In-vehicle time (20 miles per hour),@odt_skims['HOV3_DIST']*3,,,,,,,,,,,,,,,coef_ivt,,, +util_School_Bus_Walk_Time,School Bus - Walk Time,@coef_wacc_multiplier*10,,,,,,,,,,,,,,,coef_ivt,,, +util_School_Bus_Wait_Time,School Bus - Wait Time,@coef_short_iwait_multiplier*10,,,,,,,,,,,,,,,coef_ivt,,, +util_School_Bus_tour_mode_ASC_shared_ride_2,School Bus tour mode ASC -- shared ride 2,@df.i_tour_mode.isin(I_SCHOOLBUS_MODE),,schoolbus_ASC_sr2,,,,,,,,,,,,,,,, +util_School_Bus_tour_mode_ASC_shared_ride_3+,School Bus tour mode ASC -- shared ride 3+,@df.i_tour_mode.isin(I_SCHOOLBUS_MODE),,,schoolbus_ASC_sr3p,,,,,,,,,,,,,,, +util_School_Bus_tour_mode_ASC_walk,School Bus tour mode ASC -- walk,@df.i_tour_mode.isin(I_SCHOOLBUS_MODE),,,,schoolbus_ASC_walk,,,,,,,,,,,,,, +util_Origin_density_index,Origin density index,@(origin_density_applied*df.origin_density_index).clip(origin_density_index_max) if origin_density_applied else 0,,,,,,,coef_ivt,coef_ivt,coef_ivt,coef_ivt,coef_ivt,coef_ivt,coef_ivt,,,,coef_ivt,coef_ivt +util_TNC_shared_adjustment,TNC shared adjustment,@adjust_tnc_shared,,,,,,,,,,,,,,,,,,coef_ivt +util_umt_unavailable_wlk,UMT unavailable for non affiliates WALK,@((odt_skims['WLK_LOC_IVTT_UMT'] + dot_skims['WLK_LOC_IVTT_UMT'])>0) & (df.umich_affiliate_trip==False),,,,,,coef_unavailable,,,,,,,,,,,, +util_umt_unavailable_pnr,UMT unavailable for non affiliates PNR,@((odt_skims['PNR_LOC_IVTT_UMT'] + dot_skims['PNRE_LOC_IVTT_UMT'])>0) & (df.umich_affiliate_trip==False),,,,,,,,,coef_unavailable,,,,,,,,, +util_umt_unavailable_knr,UMT unavailable for non affiliates KNR,@((odt_skims['KNR_LOC_IVTT_UMT'] + dot_skims['KNRE_LOC_IVTT_UMT'])>0) & (df.umich_affiliate_trip==False),,,,,,,,,,,,coef_unavailable,,,,,, diff --git a/activitysim/examples/production_semcog/configs/trip_mode_choice_annotate_trips_preprocessor.csv b/activitysim/examples/production_semcog/configs/trip_mode_choice_annotate_trips_preprocessor.csv new file mode 100644 index 000000000..cdf1a56b5 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/trip_mode_choice_annotate_trips_preprocessor.csv @@ -0,0 +1,230 @@ +Description,Target,Expression +,is_joint,(df.number_of_participants > 1) +,is_indiv,(df.number_of_participants == 1) +,is_atwork_subtour,~df.parent_tour_id.isnull() +,is_school,"(df.primary_purpose=='school') & (df.purpose.isin(['school', 'Home']))" +,c_cost,(0.60 * coef_ivt) / df.value_of_time +,ivot,1.0/ df.value_of_time +#,, +#atwork subtours,, +#FIXME tripModeChoice uec wrongly conflates these with tour_mode_is_bike?,, +,parent_tour_mode,"reindex(tours.tour_mode, df.parent_tour_id).fillna('')" +,work_tour_is_SOV,parent_tour_mode.isin(['DRIVEALONE']) +,work_tour_is_bike,parent_tour_mode=='BIKE' +#,, +,i_tour_mode,df.tour_mode.map(I_MODE_MAP) +,tour_mode_is_SOV,"i_tour_mode.isin(I_SOV_MODES) & (df.get('parked_at_university', default = False)==False)" +,tour_mode_is_sr2,"i_tour_mode.isin(I_SR2_MODES) & (df.get('parked_at_university', default = False)==False)" +,tour_mode_is_sr3p,"i_tour_mode.isin(I_SR3P_MODES) & (df.get('parked_at_university', default = False)==False)" +,tour_mode_is_walk,i_tour_mode.isin([I_WALK_MODE]) +,tour_mode_is_bike,i_tour_mode.isin([I_BIKE_MODE]) +,tour_mode_is_walk_transit,"i_tour_mode.isin(I_WALK_TRANSIT_MODES) | (df.get('parked_at_university', default = False)==True)" +#,tour_mode_is_walk_transit,i_tour_mode.isin(I_WALK_TRANSIT_MODES) +,tour_mode_is_knr_transit,i_tour_mode.isin(I_KNR_TRANSIT_MODES) +,tour_mode_is_pnr_transit,i_tour_mode.isin(I_PNR_TRANSIT_MODES) +,tour_mode_is_drive_transit,i_tour_mode.isin(I_DRIVE_TRANSIT_MODES) +,tour_mode_not_drive_transit,~tour_mode_is_drive_transit +,tour_mode_is_pnr_transit,i_tour_mode.isin(I_PNR_TRANSIT_MODES) +,tour_mode_is_knr_transit,i_tour_mode.isin(I_KNR_TRANSIT_MODES) +,tour_mode_is_school_bus,i_tour_mode.isin(I_SCHOOLBUS_MODE) +,tour_mode_is_ride_hail,i_tour_mode.isin(I_RIDE_HAIL_MODES) +#,, +,inbound,~df.outbound +,first_trip,df.trip_num == 1 +,last_trip,df.trip_num == df.trip_count +origin terminal time not counted at home,_origin_terminal_time,"np.where(df.outbound & first_trip, 0, reindex(land_use.TERMINAL, df[ORIGIN]))" +dest terminal time not counted at home,_dest_terminal_time,"np.where(inbound & last_trip, 0, reindex(land_use.TERMINAL, df[DESTINATION]))" +,total_terminal_time,_origin_terminal_time + _dest_terminal_time +#,, +,free_parking_available,(df.tour_type == 'work') & df.free_parking_at_work +,tour_duration,"reindex(tours.duration, df.tour_id)" +,_dest_daily_parking_cost,"reindex(land_use.parking_daily, df[dest_col_name])" +,_dest_hourly_parking_cost_temp,"reindex(land_use.parking_hourly, df[dest_col_name])" +,_dest_hourly_parking_cost,"np.where(_dest_hourly_parking_cost_temp.isna(), 999, _dest_hourly_parking_cost_temp)" +,tour_parking_cost,"np.where(df.tour_type == 'work', ~free_parking_available * np.minimum(_dest_hourly_parking_cost * tour_duration/2*100, _dest_daily_parking_cost*100), np.where(_dest_hourly_parking_cost!=999, _dest_hourly_parking_cost * tour_duration/2 * 100,0))" +trip parking cost is tour's divided by two,total_parking_cost,tour_parking_cost/2 +#,, +#,dest_hourly_parking_cost,"reindex(land_use.parking_hourly, df[DESTINATION])" +#,origin_hourly_parking_cost,"reindex(land_use.parking_hourly, df[ORIGIN])" +"#np.where(first_trip, np.where(inbound,df.duration/2 * ~free_parking_available,0), 1)",origin_duration,"np.where(first_trip, np.where(inbound,df.duration/2,0), 1)" +"#np.where(last_trip, np.where(inbound, df.duration/2 * ~free_parking_available, 0), 1)",dest_duration,"np.where(last_trip, np.where(inbound, df.duration/2, 0), 1)" +#,origin_parking_cost,origin_duration*origin_hourly_parking_cost +#,dest_parking_cost,dest_duration*dest_hourly_parking_cost +#,total_parking_cost,(origin_parking_cost + dest_parking_cost) / 2.0 +,density_index,"np.where(df.outbound, reindex(land_use.density_index, df[DESTINATION]), reindex(land_use.density_index, df[ORIGIN]))" +,origin_density_index,"np.where(df.outbound, reindex(land_use.density_index, df[ORIGIN]), reindex(land_use.density_index, df[DESTINATION]))" +# FIXME no transit subzones so all zones short walk to transit,, +,_walk_transit_origin,True +,_walk_transit_destination,True +,walk_transit_available,_walk_transit_origin & _walk_transit_destination & (tour_mode_not_drive_transit) +,pnr_transit_available,tour_mode_is_pnr_transit +,knr_transit_available,tour_mode_is_knr_transit +,origin_walk_time,shortWalk*60/walkSpeed +,destination_walk_time,shortWalk*60/walkSpeed +# RIDEHAIL,, +,origin_density_measure,"(reindex(land_use.tot_pop, df[orig_col_name]) + reindex(land_use.tot_emp, df[orig_col_name])) / (reindex(land_use.tot_acres, df[orig_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)" +,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()})" +# ,, Note that the mean and standard deviation are not the values for the distribution itself +,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)" +,origin_zone_singleTNC_wait_time_mean,"origin_density.map({k: v for k, v in TNC_single_waitTime_mean.items()})" +,origin_zone_singleTNC_wait_time_sd,"origin_density.map({k: v for k, v in TNC_single_waitTime_sd.items()})" +,origSingleTNCWaitTime,"rng.lognormal_for_df(df, mu=origin_zone_singleTNC_wait_time_mean, sigma=origin_zone_singleTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)" +,origin_zone_sharedTNC_wait_time_mean,"origin_density.map({k: v for k, v in TNC_shared_waitTime_mean.items()})" +,origin_zone_sharedTNC_wait_time_sd,"origin_density.map({k: v for k, v in TNC_shared_waitTime_sd.items()})" +,origSharedTNCWaitTime,"rng.lognormal_for_df(df, mu=origin_zone_sharedTNC_wait_time_mean, sigma=origin_zone_sharedTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)" +#,, +,sov_available,(odt_skims['SOV_TIME']>0) & tour_mode_not_drive_transit +,hov2_available,(odt_skims['HOV2_TIME']>0) & tour_mode_not_drive_transit +,hov3_available,(odt_skims['HOV3_TIME']>0) & tour_mode_not_drive_transit +#,od_dist_walk,od_skims['DISTWALK'] +#,do_dist_walk,od_skims.reverse('DISTWALK') +#,max_dist_walk,od_skims.max('DISTWALK') +#,dist_bike,od_skims['DISTBIKE'] +#,dist_only,od_skims['DIST'] +,umich_affiliate_trip,"reindex(persons.umich_worker, df.person_id) | reindex(persons.umich_student, df.person_id)" +#,, +,origin,df.origin if 'origin' in df.columns else df.home_zone_id +,destination,df.destination if 'destination' in df.columns else df.alt_dest +#access egress distances,, +,origin_local_dist,"reindex(land_use.AE_LOCAL, origin)" +,origin_prm_dist,"reindex(land_use.AE_PRM, origin)" +,origin_mix_dist,"np.minimum(origin_local_dist, origin_prm_dist)" +,dest_local_dist,"reindex(land_use.AE_LOCAL, destination)" +,dest_prm_dist,"reindex(land_use.AE_PRM, destination)" +,dest_mix_dist,"np.minimum(dest_local_dist, dest_prm_dist)" +#transit availability,, +,walk_local_available,walk_transit_available & (odt_skims['WLK_LOC_IVT']>0) & (origin_local_dist < max_local_walk_dist) & (dest_local_dist < max_local_walk_dist) +,walk_premium_available,walk_transit_available & (odt_skims['WLK_PRM_IVT']>0) & (origin_prm_dist < max_prm_walk_dist) & (dest_prm_dist < max_prm_walk_dist) +,walk_mix_available,walk_transit_available & (odt_skims['WLK_MIX_IVT']>0) & (origin_mix_dist < max_mix_walk_dist) & (dest_mix_dist < max_mix_walk_dist) +,pnr_local_available_outbound,pnr_transit_available & df.outbound & (odt_skims['PNR_LOC_IVT']>0) & (dest_local_dist < max_local_walk_dist) +,pnr_local_available_inbound,pnr_transit_available & ~df.outbound & (odt_skims['PNRE_LOC_IVT']>0) & (origin_local_dist < max_local_walk_dist) +,pnr_premium_available_outbound,pnr_transit_available & df.outbound & (odt_skims['PNR_PRM_IVT']>0) & (dest_prm_dist < max_prm_walk_dist) +,pnr_premium_available_inbound,pnr_transit_available & ~df.outbound & (odt_skims['PNRE_PRM_IVT']>0) & (origin_prm_dist < max_prm_walk_dist) +,pnr_mix_available_outbound,pnr_transit_available & df.outbound & (odt_skims['PNR_MIX_IVT']>0) & (dest_mix_dist < max_mix_walk_dist) +,pnr_mix_available_inbound,pnr_transit_available & ~df.outbound & (odt_skims['PNRE_MIX_IVT']>0) & (origin_mix_dist < max_mix_walk_dist) +,knr_local_available_outbound,knr_transit_available & df.outbound & (odt_skims['KNR_LOC_IVT']>0) & (dest_local_dist < max_local_walk_dist) +,knr_local_available_inbound,knr_transit_available & ~df.outbound & (odt_skims['KNRE_LOC_IVT']>0) & (origin_local_dist < max_local_walk_dist) +,knr_premium_available_outbound,knr_transit_available & df.outbound & (odt_skims['KNR_PRM_IVT']>0) & (dest_prm_dist < max_prm_walk_dist) +,knr_premium_available_inbound,knr_transit_available & ~df.outbound & (odt_skims['KNRE_PRM_IVT']>0) & (origin_prm_dist < max_prm_walk_dist) +,knr_mix_available_outbound,knr_transit_available & df.outbound & (odt_skims['KNR_MIX_IVT']>0) & (dest_mix_dist < max_mix_walk_dist) +,knr_mix_available_inbound,knr_transit_available & ~df.outbound & (odt_skims['KNRE_MIX_IVT']>0) & (origin_mix_dist < max_mix_walk_dist) +#access egress times,, +,origin_local_time,origin_local_dist * 60/walk_speed +,origin_prm_time,origin_prm_dist * 60/walk_speed +,origin_mix_time,origin_mix_dist * 60/walk_speed +,dest_local_time,dest_local_dist * 60/walk_speed +,dest_prm_time,dest_prm_dist * 60/walk_speed +,dest_mix_time,dest_mix_dist * 60/walk_speed +#,transit fare discount calculations, +,ptype,df.ptype +,transit_pass_ownership,df.transit_pass_ownership +,transit_pass_subsidy,df.transit_pass_subsidy +cash discounts for seniors and students and preKs,transit_cash_discount_factor,"np.where((df.age>64) | (ptype>5), cash_discount_factor, 1)" +100% subsidy if own subsidy,transit_subsidy_factor,"np.where(transit_pass_subsidy, 1, 0)" +,pass_discount_factor_ddot,"ptype.map({k: v for k, v in transit_pass_discount_factor_ddot.items()})" +,pass_discount_factor_smart,"ptype.map({k: v for k, v in transit_pass_discount_factor_smart.items()})" +,pass_discount_factor_aata,"ptype.map({k: v for k, v in transit_pass_discount_factor_aata.items()})" +,pass_discount_factor_um,"ptype.map({k: v for k, v in transit_pass_discount_factor_um.items()})" +,pass_discount_factor_other,"ptype.map({k: v for k, v in transit_pass_discount_factor_other.items()})" +#,pass discount differs by ptype and agency, +,WLKLOC_pass_discount_DDOT,"np.where((odt_skims['WLK_LOC_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,PNRLOC_pass_discount_DDOT,"np.where((odt_skims['PNR_LOC_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,PNRELOC_pass_discount_DDOT,"np.where((odt_skims['PNRE_LOC_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,KNRLOC_pass_discount_DDOT,"np.where((odt_skims['KNR_LOC_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,KNRELOC_pass_discount_DDOT,"np.where((odt_skims['KNRE_LOC_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,WLKLOC_pass_discount_SMART,"np.where((odt_skims['WLK_LOC_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,PNRLOC_pass_discount_SMART,"np.where((odt_skims['PNR_LOC_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,PNRELOC_pass_discount_SMART,"np.where((odt_skims['PNRE_LOC_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,KNRLOC_pass_discount_SMART,"np.where((odt_skims['KNR_LOC_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,KNRELOC_pass_discount_SMART,"np.where((odt_skims['KNRE_LOC_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,WLKLOC_pass_discount_AATA,"np.where((odt_skims['WLK_LOC_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,PNRLOC_pass_discount_AATA,"np.where((odt_skims['PNR_LOC_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,PNRELOC_pass_discount_AATA,"np.where((odt_skims['PNRE_LOC_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,KNRLOC_pass_discount_AATA,"np.where((odt_skims['KNR_LOC_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,KNRELOC_pass_discount_AATA,"np.where((odt_skims['KNRE_LOC_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,WLKLOC_pass_discount_UM,"np.where((odt_skims['WLK_LOC_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,PNRLOC_pass_discount_UM,"np.where((odt_skims['PNR_LOC_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,PNRELOC_pass_discount_UM,"np.where((odt_skims['PNRE_LOC_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,KNRLOC_pass_discount_UM,"np.where((odt_skims['KNR_LOC_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,KNRELOC_pass_discount_UM,"np.where((odt_skims['KNRE_LOC_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,WLKLOC_pass_discount_OTHER,"np.where((odt_skims['WLK_LOC_IVTT_BWAT']>0) | (odt_skims['WLK_LOC_IVTT_LET']>0), pass_discount_factor_other, 1)" +,PNRLOC_pass_discount_OTHER,"np.where((odt_skims['PNR_LOC_IVTT_BWAT']>0) | (odt_skims['PNR_LOC_IVTT_LET']>0), pass_discount_factor_other, 1)" +,PNRELOC_pass_discount_OTHER,"np.where((odt_skims['PNRE_LOC_IVTT_BWAT']>0) | (odt_skims['PNRE_LOC_IVTT_LET']>0), pass_discount_factor_other, 1)" +,KNRLOC_pass_discount_OTHER,"np.where((odt_skims['KNR_LOC_IVTT_BWAT']>0) | (odt_skims['KNR_LOC_IVTT_LET']>0), pass_discount_factor_other, 1)" +,KNRELOC_pass_discount_OTHER,"np.where((odt_skims['KNRE_LOC_IVTT_BWAT']>0) | (odt_skims['KNRE_LOC_IVTT_LET']>0), pass_discount_factor_other, 1)" +,WLKPRM_pass_discount_OTHER,"np.where((odt_skims['WLK_PRM_IVTT_PMov']>0) | (odt_skims['WLK_PRM_IVTT_StCar']>0), pass_discount_factor_other, 1)" +,PNRPRM_pass_discount_OTHER,"np.where((odt_skims['PNR_PRM_IVTT_PMov']>0) | (odt_skims['PNR_PRM_IVTT_LET']>0), pass_discount_factor_other, 1)" +,PNREPRM_pass_discount_OTHER,"np.where((odt_skims['PNRE_PRM_IVTT_PMov']>0) | (odt_skims['PNRE_PRM_IVTT_LET']>0), pass_discount_factor_other, 1)" +,KNRPRM_pass_discount_OTHER,"np.where((odt_skims['KNR_PRM_IVTT_PMov']>0) | (odt_skims['KNR_PRM_IVTT_StCar']>0), pass_discount_factor_other, 1)" +,KNREPRM_pass_discount_OTHER,"np.where((odt_skims['KNRE_PRM_IVTT_PMov']>0) | (odt_skims['KNRE_PRM_IVTT_StCar']>0), pass_discount_factor_other, 1)" +,WLKMIX_pass_discount_DDOT,"np.where((odt_skims['WLK_MIX_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,PNRMIX_pass_discount_DDOT,"np.where((odt_skims['PNR_MIX_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,PNREMIX_pass_discount_DDOT,"np.where((odt_skims['PNRE_MIX_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,KNRMIX_pass_discount_DDOT,"np.where((odt_skims['KNR_MIX_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,KNREMIX_pass_discount_DDOT,"np.where((odt_skims['KNRE_MIX_IVTT_DDOT']>0), pass_discount_factor_ddot, 1)" +,WLKMIX_pass_discount_SMART,"np.where((odt_skims['WLK_MIX_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,PNRMIX_pass_discount_SMART,"np.where((odt_skims['PNR_MIX_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,PNREMIX_pass_discount_SMART,"np.where((odt_skims['PNRE_MIX_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,KNRMIX_pass_discount_SMART,"np.where((odt_skims['KNR_MIX_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,KNREMIX_pass_discount_SMART,"np.where((odt_skims['KNRE_MIX_IVTT_SMART']>0), pass_discount_factor_smart, 1)" +,WLKMIX_pass_discount_AATA,"np.where((odt_skims['WLK_MIX_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,PNRMIX_pass_discount_AATA,"np.where((odt_skims['PNR_MIX_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,PNREMIX_pass_discount_AATA,"np.where((odt_skims['PNRE_MIX_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,KNRMIX_pass_discount_AATA,"np.where((odt_skims['KNR_MIX_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,KNREMIX_pass_discount_AATA,"np.where((odt_skims['KNRE_MIX_IVTT_AAATA']>0), pass_discount_factor_aata, 1)" +,WLKMIX_pass_discount_UM,"np.where((odt_skims['WLK_MIX_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,PNRMIX_pass_discount_UM,"np.where((odt_skims['PNR_MIX_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,PNREMIX_pass_discount_UM,"np.where((odt_skims['PNRE_MIX_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,KNRMIX_pass_discount_UM,"np.where((odt_skims['KNR_MIX_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,KNREMIX_pass_discount_UM,"np.where((odt_skims['KNRE_MIX_IVTT_UMT']>0), pass_discount_factor_um, 1)" +,WLKMIX_pass_discount_OTHER,"np.where((odt_skims['WLK_MIX_IVTT_BWAT']>0) | (odt_skims['WLK_MIX_IVTT_LET']>0) | (odt_skims['WLK_MIX_IVTT_PMov']>0) | (odt_skims['WLK_MIX_IVTT_StCar']>0), pass_discount_factor_other, 1)" +,PNRMIX_pass_discount_OTHER,"np.where((odt_skims['PNR_MIX_IVTT_BWAT']>0) | (odt_skims['PNR_MIX_IVTT_LET']>0) | (odt_skims['WLK_MIX_IVTT_PMov']>0) | (odt_skims['WLK_MIX_IVTT_StCar']>0), pass_discount_factor_other, 1)" +,PNREMIX_pass_discount_OTHER,"np.where((odt_skims['PNRE_MIX_IVTT_BWAT']>0) | (odt_skims['PNRE_MIX_IVTT_LET']>0) | (odt_skims['WLK_MIX_IVTT_PMov']>0) | (odt_skims['WLK_MIX_IVTT_StCar']>0), pass_discount_factor_other, 1)" +,KNRMIX_pass_discount_OTHER,"np.where((odt_skims['KNR_MIX_IVTT_BWAT']>0) | (odt_skims['KNR_MIX_IVTT_LET']>0) | (odt_skims['WLK_MIX_IVTT_PMov']>0) | (odt_skims['WLK_MIX_IVTT_StCar']>0), pass_discount_factor_other, 1)" +,KNREMIX_pass_discount_OTHER,"np.where((odt_skims['KNRE_MIX_IVTT_BWAT']>0) | (odt_skims['KNRE_MIX_IVTT_LET']>0) | (odt_skims['WLK_MIX_IVTT_PMov']>0) | (odt_skims['WLK_MIX_IVTT_StCar']>0), pass_discount_factor_other, 1)" +#,Use the defined hierarchy to pick the pass discount for each transit alternative, +,WLKLOC_pass_discount,"np.where(WLKLOC_pass_discount_DDOT<1, WLKLOC_pass_discount_DDOT, np.where(WLKLOC_pass_discount_SMART<1, WLKLOC_pass_discount_SMART, np.where(WLKLOC_pass_discount_AATA<1, WLKLOC_pass_discount_AATA, WLKLOC_pass_discount_OTHER)))" +,WLKPRM_pass_discount,WLKPRM_pass_discount_OTHER +,WLKMIX_pass_discount,"np.where(WLKMIX_pass_discount_DDOT<1, WLKMIX_pass_discount_DDOT, np.where(WLKMIX_pass_discount_SMART<1, WLKMIX_pass_discount_SMART, np.where(WLKMIX_pass_discount_AATA<1, WLKMIX_pass_discount_AATA, WLKMIX_pass_discount_OTHER)))" +,PNRLOC_pass_discount,"np.where(PNRLOC_pass_discount_DDOT<1, PNRLOC_pass_discount_DDOT, np.where(PNRLOC_pass_discount_SMART<1, PNRLOC_pass_discount_SMART, np.where(PNRLOC_pass_discount_AATA<1, PNRLOC_pass_discount_AATA, PNRLOC_pass_discount_OTHER)))" +,PNRPRM_pass_discount,PNRPRM_pass_discount_OTHER +,PNRMIX_pass_discount,"np.where(PNRMIX_pass_discount_DDOT<1, PNRMIX_pass_discount_DDOT, np.where(PNRMIX_pass_discount_SMART<1, PNRMIX_pass_discount_SMART, np.where(PNRMIX_pass_discount_AATA<1, PNRMIX_pass_discount_AATA, PNRMIX_pass_discount_OTHER)))" +,PNRELOC_pass_discount,"np.where(PNRELOC_pass_discount_DDOT<1, PNRELOC_pass_discount_DDOT, np.where(PNRELOC_pass_discount_SMART<1, PNRELOC_pass_discount_SMART, np.where(PNRELOC_pass_discount_AATA<1, PNRELOC_pass_discount_AATA, PNRELOC_pass_discount_OTHER)))" +,PNREPRM_pass_discount,PNREPRM_pass_discount_OTHER +,PNREMIX_pass_discount,"np.where(PNREMIX_pass_discount_DDOT<1, PNREMIX_pass_discount_DDOT, np.where(PNREMIX_pass_discount_SMART<1, PNREMIX_pass_discount_SMART, np.where(PNREMIX_pass_discount_AATA<1, PNREMIX_pass_discount_AATA, PNREMIX_pass_discount_OTHER)))" +,KNRLOC_pass_discount,"np.where(KNRLOC_pass_discount_DDOT<1, KNRLOC_pass_discount_DDOT, np.where(KNRLOC_pass_discount_SMART<1, KNRLOC_pass_discount_SMART, np.where(KNRLOC_pass_discount_AATA<1, KNRLOC_pass_discount_AATA, KNRLOC_pass_discount_OTHER)))" +,KNRPRM_pass_discount,KNRPRM_pass_discount_OTHER +,KNRMIX_pass_discount,"np.where(KNRMIX_pass_discount_DDOT<1, KNRMIX_pass_discount_DDOT, np.where(KNRMIX_pass_discount_SMART<1, KNRMIX_pass_discount_SMART, np.where(KNRMIX_pass_discount_AATA<1, KNRMIX_pass_discount_AATA, KNRMIX_pass_discount_OTHER)))" +,KNRELOC_pass_discount,"np.where(KNRELOC_pass_discount_DDOT<1, KNRELOC_pass_discount_DDOT, np.where(KNRELOC_pass_discount_SMART<1, KNRELOC_pass_discount_SMART, np.where(KNRELOC_pass_discount_AATA<1, KNRELOC_pass_discount_AATA, KNRELOC_pass_discount_OTHER)))" +,KNREPRM_pass_discount,KNREPRM_pass_discount_OTHER +,KNREMIX_pass_discount,"np.where(KNREMIX_pass_discount_DDOT<1, KNREMIX_pass_discount_DDOT, np.where(KNREMIX_pass_discount_SMART<1, KNREMIX_pass_discount_SMART, np.where(KNREMIX_pass_discount_AATA<1, KNREMIX_pass_discount_AATA, KNREMIX_pass_discount_OTHER)))" +#,"Now compute the fare discounts using cash, subsidy, and pass discounts", +,WLKLOC_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), WLKLOC_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), WLKLOC_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,WLKPRM_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), WLKPRM_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), WLKPRM_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,WLKMIX_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), WLKMIX_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), WLKMIX_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,PNRLOC_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), PNRLOC_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), PNRLOC_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,PNRPRM_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), PNRPRM_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), PNRPRM_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,PNRMIX_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), PNRMIX_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), PNRMIX_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,PNRELOC_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), PNRELOC_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), PNRELOC_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,PNREPRM_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), PNREPRM_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), PNREPRM_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,PNREMIX_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), PNREMIX_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), PNREMIX_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,KNRLOC_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), KNRLOC_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), KNRLOC_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,KNRPRM_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), KNRPRM_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), KNRPRM_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,KNRMIX_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), KNRMIX_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), KNRMIX_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,KNRELOC_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), KNRELOC_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), KNRELOC_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,KNREPRM_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), KNREPRM_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), KNREPRM_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +,KNREMIX_fare_discount,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), transit_cash_discount_factor, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), KNREMIX_pass_discount, np.where((transit_pass_ownership == True) & (transit_pass_subsidy == True), KNREMIX_pass_discount * (1-transit_subsidy_factor), np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), transit_cash_discount_factor * (1-transit_subsidy_factor), 1))))" +#,, +,PMOV_transit,"np.where(((odt_skims['WLK_PRM_IVTT_PMov']>0)) | ((odt_skims['PNR_PRM_IVTT_PMov']>0)) | ((odt_skims['KNR_PRM_IVTT_PMov']>0)) & ((odt_skims['WLK_PRM_NT']==0)&(odt_skims['PNR_PRM_NT']==0)&(odt_skims['KNR_PRM_NT']==0)&(odt_skims['PNRE_PRM_NT']==0)&(odt_skims['KNRE_PRM_NT']==0)),1,0)" +,PMOV_transit_wTransfer,"np.where(((odt_skims['WLK_PRM_IVTT_PMov']>0)) | ((odt_skims['PNR_PRM_IVTT_PMov']>0)) | ((odt_skims['KNR_PRM_IVTT_PMov']>0)) & ((odt_skims['WLK_PRM_NT']>0)|(odt_skims['PNR_PRM_NT']>0)|(odt_skims['KNR_PRM_NT']>0)|(odt_skims['PNRE_PRM_NT']>0)|(odt_skims['KNRE_PRM_NT']>0)),1,0)" +,StCar_transit,"np.where((((odt_skims['WLK_PRM_IVTT_StCar']>0)) | ((odt_skims['PNR_PRM_IVTT_StCar']>0)) | ((odt_skims['KNR_PRM_IVTT_StCar']>0))) & ((odt_skims['WLK_PRM_NT']==0)&(odt_skims['PNR_PRM_NT']==0)&(odt_skims['KNR_PRM_NT']==0)&(odt_skims['PNRE_PRM_NT']==0)&(odt_skims['KNRE_PRM_NT']==0)),1,0)" +,StCar_transit_wTransfer,"np.where((((odt_skims['WLK_PRM_IVTT_StCar']>0)) | ((odt_skims['PNR_PRM_IVTT_StCar']>0)) | ((odt_skims['KNR_PRM_IVTT_StCar']>0))) & ((odt_skims['WLK_PRM_NT']>0)|(odt_skims['PNR_PRM_NT']>0)|(odt_skims['KNR_PRM_NT']>0)|(odt_skims['PNRE_PRM_NT']>0)|(odt_skims['KNRE_PRM_NT']>0)),1,0)" +,AATA_transit,"np.where(((odt_skims['WLK_LOC_IVTT_AAATA']>0)) | ((odt_skims['PNR_LOC_IVTT_AAATA']>0)) | ((odt_skims['KNR_LOC_IVTT_AAATA']>0)),1,0)" +#,, +,orig_district,"reindex(land_use.DISTRICT20, df[orig_col_name])" +,dest_district,"reindex(land_use.DISTRICT20, df[dest_col_name])" +,districts1_2_cte,"np.where((orig_district.isin([1,2])) & (dest_district.isin([1,2])), -0.2,0)" +,districts8_13_cte,"np.where((orig_district.isin([8,9,10,13])) & (dest_district.isin([8,9,10,13])), -2,0)" +,districts15_cte,"np.where((orig_district==15) & (dest_district==15), 2,0)" diff --git a/activitysim/examples/production_semcog/configs/trip_mode_choice_coefficients.csv b/activitysim/examples/production_semcog/configs/trip_mode_choice_coefficients.csv new file mode 100644 index 000000000..ae9acaa7e --- /dev/null +++ b/activitysim/examples/production_semcog/configs/trip_mode_choice_coefficients.csv @@ -0,0 +1,447 @@ +coefficient_name,value,constrain +coef_unavailable,-999,T +coef_one,1,T +coef_nest_root,1,T +coef_nest_AUTO,0.72,T +coef_nest_NONMOTORIZED,0.72,T +coef_nest_TRANSIT,0.72,T +coef_nest_WALKACCESS,0.5,T +coef_nest_PNRACCESS,0.5,T +coef_nest_KNRACCESS,0.5,T +coef_nest_RIDEHAIL,0.36,T +coef_ivt_othmaint_social,-0.02,F +coef_ivt_work,-0.02,F +coef_ivt_univ_school,-0.03,F +coef_ivt_escort_shopping_eatout_othdiscr_atwork,-0.03,F +coef_age1619_da,0,F +coef_age010_trn,0,F +coef_age16p_sr,0,F +coef_hhsize1_sr,-0.73,F +coef_hhsize2_sr,0,F +coef_walktimeshort_atwork,1.35,F +coef_walktimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2,T +coef_biketimeshort_atwork,2.7,F +coef_biketimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,4,T +coef_dtim_atwork,1.35,F +coef_dtim_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2,T +coef_ivt_pmov_multiplier,1,T +coef_ivt_stcar_multiplier,0.9,T +coef_ivt_brt_multiplier,0.9,T +coef_ivt_urb_multiplier,0.8,T +coef_ivt_com_multiplier,0.7,T +coef_long_iwait_atwork,0.67,F +coef_long_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,1,T +coef_short_iwait_atwork,1.35,F +coef_short_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2,T +coef_wacc_atwork,1.35,F +coef_wacc_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2,T +coef_waux_atwork,1.35,F +coef_waux_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2,T +coef_wegr_atwork,1.35,F +coef_wegr_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2,T +coef_xwait_atwork,1.35,F +coef_xwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2,T +coef_bike_ASC_walk_atwork,0,F +coef_bike_ASC_walk_eatout,0,F +coef_bike_ASC_walk_escort,0,F +coef_bike_ASC_walk_othdiscr,0,F +coef_bike_ASC_walk_othmaint,0,F +coef_bike_ASC_walk_school,0,F +coef_bike_ASC_walk_shopping,0,F +coef_bike_ASC_walk_social,0,F +coef_bike_ASC_walk_univ,0,F +coef_bike_ASC_walk_work,0,F +coef_joint_sr2_ASC_walk,-2.471792438,F +coef_joint_sr3p_ASC_sr2,9.839224393,F +coef_joint_sr3p_ASC_walk,-1.071636758,F +coef_joint_walk_transit_ASC_sr2,-0.852339913,F +coef_joint_walk_transit_ASC_sr3p,1.144241245,F +coef_joint_walk_transit_ASC_walk,6.075155959,F +coef_joint_walk_transit_ASC_taxi,-6,F +coef_joint_walk_transit_ASC_tnc_single,-6,F +coef_joint_walk_transit_ASC_tnc_shared,-6,F +coef_joint_pnr_ASC_taxi,-6,F +coef_joint_pnr_ASC_tnc_single,-6,F +coef_joint_pnr_ASC_tnc_shared,-6,F +coef_joint_knr_ASC_taxi,-2,F +coef_joint_knr_ASC_tnc_single,-2,F +coef_joint_knr_ASC_tnc_shared,-2,F +coef_schoolbus_ASC_sr2_atwork,0,F +coef_schoolbus_ASC_sr2_eatout,0,F +coef_schoolbus_ASC_sr2_escort,0,F +coef_schoolbus_ASC_sr2_othdiscr,0,F +coef_schoolbus_ASC_sr2_othmaint,0,F +coef_schoolbus_ASC_sr2_school,-10.06373283,F +coef_schoolbus_ASC_sr2_shopping,0,F +coef_schoolbus_ASC_sr2_social,0,F +coef_schoolbus_ASC_sr2_univ,0,F +coef_schoolbus_ASC_sr2_work,0,F +coef_schoolbus_ASC_sr3p_atwork,0,F +coef_schoolbus_ASC_sr3p_eatout,0,F +coef_schoolbus_ASC_sr3p_escort,0,F +coef_schoolbus_ASC_sr3p_othdiscr,0,F +coef_schoolbus_ASC_sr3p_othmaint,0,F +coef_schoolbus_ASC_sr3p_school,-9.988929352,F +coef_schoolbus_ASC_sr3p_shopping,0,F +coef_schoolbus_ASC_sr3p_social,0,F +coef_schoolbus_ASC_sr3p_univ,0,F +coef_schoolbus_ASC_sr3p_work,0,F +coef_schoolbus_ASC_walk_atwork,0,F +coef_schoolbus_ASC_walk_eatout,0,F +coef_schoolbus_ASC_walk_escort,0,F +coef_schoolbus_ASC_walk_othdiscr,0,F +coef_schoolbus_ASC_walk_othmaint,0,F +coef_schoolbus_ASC_walk_school,-9.259293862,F +coef_schoolbus_ASC_walk_shopping,0,F +coef_schoolbus_ASC_walk_social,0,F +coef_schoolbus_ASC_walk_univ,0,F +coef_schoolbus_ASC_walk_work,0,F +coef_sov_ASC_walk_atwork,-2.46867203,F +coef_sov_ASC_walk_eatout,-0.938373445,F +coef_sov_ASC_walk_escort,-0.297751799,F +coef_sov_ASC_walk_othdiscr,-1.148373445,F +coef_sov_ASC_walk_othmaint,-1.597751799,F +coef_sov_ASC_walk_school,-9,F +coef_sov_ASC_walk_shopping,-1.767751799,F +coef_sov_ASC_walk_social,-1.398373445,F +coef_sov_ASC_walk_univ,-1.011502455,F +coef_sov_ASC_walk_work,-1.802520239,F +coef_sov_ASC_taxi_atwork,-7,F +coef_sov_ASC_taxi_eatout,0,F +coef_sov_ASC_taxi_escort,0,F +coef_sov_ASC_taxi_othdiscr,0,F +coef_sov_ASC_taxi_othmaint,0,F +coef_sov_ASC_taxi_school,-5.65,F +coef_sov_ASC_taxi_shopping,0,F +coef_sov_ASC_taxi_social,0,F +coef_sov_ASC_taxi_univ,-6.65,F +coef_sov_ASC_taxi_work,-7,F +coef_sov_ASC_tnc_single_atwork,-7,F +coef_sov_ASC_tnc_single_eatout,0,F +coef_sov_ASC_tnc_single_escort,0,F +coef_sov_ASC_tnc_single_othdiscr,0,F +coef_sov_ASC_tnc_single_othmaint,0,F +coef_sov_ASC_tnc_single_school,-5.65,F +coef_sov_ASC_tnc_single_shopping,0,F +coef_sov_ASC_tnc_single_social,0,F +coef_sov_ASC_tnc_single_univ,-6.65,F +coef_sov_ASC_tnc_single_work,-7,F +coef_sov_ASC_tnc_shared_atwork,-7,F +coef_sov_ASC_tnc_shared_eatout,0,F +coef_sov_ASC_tnc_shared_escort,0,F +coef_sov_ASC_tnc_shared_othdiscr,0,F +coef_sov_ASC_tnc_shared_othmaint,0,F +coef_sov_ASC_tnc_shared_school,-5.65,F +coef_sov_ASC_tnc_shared_shopping,0,F +coef_sov_ASC_tnc_shared_social,0,F +coef_sov_ASC_tnc_shared_univ,-6.65,F +coef_sov_ASC_tnc_shared_work,-7,F +coef_sr2_ASC_sov_atwork,-1.620744866,F +coef_sr2_ASC_sov_eatout,-0.791850445,F +coef_sr2_ASC_sov_escort,-0.5220431,F +coef_sr2_ASC_sov_othdiscr,-0.791850445,F +coef_sr2_ASC_sov_othmaint,-0.5220431,F +coef_sr2_ASC_sov_school,0.072153131,F +coef_sr2_ASC_sov_shopping,-0.5220431,F +coef_sr2_ASC_sov_social,-0.791850445,F +coef_sr2_ASC_sov_univ,-1.031443997,F +coef_sr2_ASC_sov_work,-0.508671077,F +coef_sr2_ASC_walk_atwork,-3.825642366,F +coef_sr2_ASC_walk_eatout,-0.433293836,F +coef_sr2_ASC_walk_escort,-3.403290336,F +coef_sr2_ASC_walk_othdiscr,-0.383293836,F +coef_sr2_ASC_walk_othmaint,-1.943290336,F +coef_sr2_ASC_walk_school,-0.354193147,F +coef_sr2_ASC_walk_shopping,-1.463290336,F +coef_sr2_ASC_walk_social,-1.153293836,F +coef_sr2_ASC_walk_univ,-0.380972958,F +coef_sr2_ASC_walk_work,-0.736462014,F +coef_sr2_ASC_taxi_atwork,0,F +coef_sr2_ASC_taxi_eatout,0,F +coef_sr2_ASC_taxi_escort,0,F +coef_sr2_ASC_taxi_othdiscr,0,F +coef_sr2_ASC_taxi_othmaint,0,F +coef_sr2_ASC_taxi_school,0,F +coef_sr2_ASC_taxi_shopping,0,F +coef_sr2_ASC_taxi_social,0,F +coef_sr2_ASC_taxi_univ,0,F +coef_sr2_ASC_taxi_work,0,F +coef_sr2_ASC_tnc_single_atwork,0,F +coef_sr2_ASC_tnc_single_eatout,0,F +coef_sr2_ASC_tnc_single_escort,0,F +coef_sr2_ASC_tnc_single_othdiscr,0,F +coef_sr2_ASC_tnc_single_othmaint,0,F +coef_sr2_ASC_tnc_single_school,0,F +coef_sr2_ASC_tnc_single_shopping,0,F +coef_sr2_ASC_tnc_single_social,0,F +coef_sr2_ASC_tnc_single_univ,0,F +coef_sr2_ASC_tnc_single_work,0,F +coef_sr2_ASC_tnc_shared_atwork,0,F +coef_sr2_ASC_tnc_shared_eatout,0,F +coef_sr2_ASC_tnc_shared_escort,0,F +coef_sr2_ASC_tnc_shared_othdiscr,0,F +coef_sr2_ASC_tnc_shared_othmaint,0,F +coef_sr2_ASC_tnc_shared_school,0,F +coef_sr2_ASC_tnc_shared_shopping,0,F +coef_sr2_ASC_tnc_shared_social,0,F +coef_sr2_ASC_tnc_shared_univ,0,F +coef_sr2_ASC_tnc_shared_work,0,F +coef_sr3p_ASC_sov_atwork,-1.744080912,F +coef_sr3p_ASC_sov_eatout,-1.468882814,F +coef_sr3p_ASC_sov_escort,-1.10860006,F +coef_sr3p_ASC_sov_othdiscr,-1.468882814,F +coef_sr3p_ASC_sov_othmaint,-1.10860006,F +coef_sr3p_ASC_sov_school,-1.825714468,F +coef_sr3p_ASC_sov_shopping,-1.10860006,F +coef_sr3p_ASC_sov_social,-1.468882814,F +coef_sr3p_ASC_sov_univ,-1.142813652,F +coef_sr3p_ASC_sov_work,-0.256157751,F +coef_sr3p_ASC_sr2_atwork,-0.64725158,F +coef_sr3p_ASC_sr2_eatout,-0.724454156,F +coef_sr3p_ASC_sr2_escort,-0.65216434,F +coef_sr3p_ASC_sr2_othdiscr,-1.014454156,F +coef_sr3p_ASC_sr2_othmaint,-0.67216434,F +coef_sr3p_ASC_sr2_school,-1.093790496,F +coef_sr3p_ASC_sr2_shopping,-0.46216434,F +coef_sr3p_ASC_sr2_social,-0.564454156,F +coef_sr3p_ASC_sr2_univ,-0.811403038,F +coef_sr3p_ASC_sr2_work,-0.343730774,F +coef_sr3p_ASC_walk_atwork,-3.158756084,F +coef_sr3p_ASC_walk_eatout,0.051857124,F +coef_sr3p_ASC_walk_escort,-2.142113481,F +coef_sr3p_ASC_walk_othdiscr,-0.428142876,F +coef_sr3p_ASC_walk_othmaint,-1.092113481,F +coef_sr3p_ASC_walk_school,-0.828569173,F +coef_sr3p_ASC_walk_shopping,-1.642113481,F +coef_sr3p_ASC_walk_social,-0.218142876,F +coef_sr3p_ASC_walk_univ,-0.631705608,F +coef_sr3p_ASC_walk_work,-1.048894984,F +coef_sr3p_ASC_taxi_atwork,0,F +coef_sr3p_ASC_taxi_eatout,0,F +coef_sr3p_ASC_taxi_escort,0,F +coef_sr3p_ASC_taxi_othdiscr,0,F +coef_sr3p_ASC_taxi_othmaint,0,F +coef_sr3p_ASC_taxi_school,0,F +coef_sr3p_ASC_taxi_shopping,0,F +coef_sr3p_ASC_taxi_social,0,F +coef_sr3p_ASC_taxi_univ,0,F +coef_sr3p_ASC_taxi_work,0,F +coef_sr3p_ASC_tnc_single_atwork,0,F +coef_sr3p_ASC_tnc_single_eatout,0,F +coef_sr3p_ASC_tnc_single_escort,0,F +coef_sr3p_ASC_tnc_single_othdiscr,0,F +coef_sr3p_ASC_tnc_single_othmaint,0,F +coef_sr3p_ASC_tnc_single_school,0,F +coef_sr3p_ASC_tnc_single_shopping,0,F +coef_sr3p_ASC_tnc_single_social,0,F +coef_sr3p_ASC_tnc_single_univ,0,F +coef_sr3p_ASC_tnc_single_work,0,F +coef_sr3p_ASC_tnc_shared_atwork,0,F +coef_sr3p_ASC_tnc_shared_eatout,0,F +coef_sr3p_ASC_tnc_shared_escort,0,F +coef_sr3p_ASC_tnc_shared_othdiscr,0,F +coef_sr3p_ASC_tnc_shared_othmaint,0,F +coef_sr3p_ASC_tnc_shared_school,0,F +coef_sr3p_ASC_tnc_shared_shopping,0,F +coef_sr3p_ASC_tnc_shared_social,0,F +coef_sr3p_ASC_tnc_shared_univ,0,F +coef_sr3p_ASC_tnc_shared_work,0,F +coef_walk_transit_ASC_sr2_atwork,-52,F +coef_walk_transit_ASC_sr2_eatout,-3.277280992,F +coef_walk_transit_ASC_sr2_escort,-2.816907177,F +coef_walk_transit_ASC_sr2_othdiscr,-3.277280992,F +coef_walk_transit_ASC_sr2_othmaint,-2.816907177,F +coef_walk_transit_ASC_sr2_school,-1.067460714,F +coef_walk_transit_ASC_sr2_shopping,-2.816907177,F +coef_walk_transit_ASC_sr2_social,-3.277280992,F +coef_walk_transit_ASC_sr2_univ,-1.692048933,F +coef_walk_transit_ASC_sr2_work,-2.263503048,F +coef_walk_transit_ASC_sr3p_atwork,6.5,F +coef_walk_transit_ASC_sr3p_eatout,-3.71975504,F +coef_walk_transit_ASC_sr3p_escort,-4.011357479,F +coef_walk_transit_ASC_sr3p_othdiscr,-3.71975504,F +coef_walk_transit_ASC_sr3p_othmaint,-4.011357479,F +coef_walk_transit_ASC_sr3p_school,-2.036881943,F +coef_walk_transit_ASC_sr3p_shopping,-4.011357479,F +coef_walk_transit_ASC_sr3p_social,-3.71975504,F +coef_walk_transit_ASC_sr3p_univ,-3.155976407,F +coef_walk_transit_ASC_sr3p_work,-2.311033195,F +coef_walk_transit_ASC_walk_atwork,10,F +coef_walk_transit_ASC_walk_eatout,5.487490973,F +coef_walk_transit_ASC_walk_escort,4.450183717,F +coef_walk_transit_ASC_walk_othdiscr,6.5,F +coef_walk_transit_ASC_walk_othmaint,5.5,F +coef_walk_transit_ASC_walk_school,1.206168225,F +coef_walk_transit_ASC_walk_shopping,4.250183717,F +coef_walk_transit_ASC_walk_social,5.856148939,F +coef_walk_transit_ASC_walk_univ,3,F +coef_walk_transit_ASC_walk_work,3.8,F +coef_walk_transit_ASC_taxi_atwork,-36,F +coef_walk_transit_ASC_taxi_eatout,-6,F +coef_walk_transit_ASC_taxi_escort,-8,F +coef_walk_transit_ASC_taxi_othdiscr,-6,F +coef_walk_transit_ASC_taxi_othmaint,-8,F +coef_walk_transit_ASC_taxi_school,-6,F +coef_walk_transit_ASC_taxi_shopping,-8,F +coef_walk_transit_ASC_taxi_social,-6,F +coef_walk_transit_ASC_taxi_univ,-8,F +coef_walk_transit_ASC_taxi_work,-6,F +coef_walk_transit_ASC_tnc_single_atwork,-35.55708184,F +coef_walk_transit_ASC_tnc_single_eatout,-3.539109366,F +coef_walk_transit_ASC_tnc_single_escort,-3.728652264,F +coef_walk_transit_ASC_tnc_single_othdiscr,-3.539109366,F +coef_walk_transit_ASC_tnc_single_othmaint,-3.728652264,F +coef_walk_transit_ASC_tnc_single_school,-6,F +coef_walk_transit_ASC_tnc_single_shopping,-3.728652264,F +coef_walk_transit_ASC_tnc_single_social,-3.539109366,F +coef_walk_transit_ASC_tnc_single_univ,-4.77105815,F +coef_walk_transit_ASC_tnc_single_work,-1.89748304,F +coef_walk_transit_ASC_tnc_shared_atwork,-36,F +coef_walk_transit_ASC_tnc_shared_eatout,-6,F +coef_walk_transit_ASC_tnc_shared_escort,-3.308554217,F +coef_walk_transit_ASC_tnc_shared_othdiscr,-6,F +coef_walk_transit_ASC_tnc_shared_othmaint,-3.308554217,F +coef_walk_transit_ASC_tnc_shared_school,-6,F +coef_walk_transit_ASC_tnc_shared_shopping,-3.308554217,F +coef_walk_transit_ASC_tnc_shared_social,-6,F +coef_walk_transit_ASC_tnc_shared_univ,-8,F +coef_walk_transit_ASC_tnc_shared_work,-1.242981701,F +coef_pnr_ASC_taxi_atwork,0,F +coef_pnr_ASC_taxi_eatout,-4,F +coef_pnr_ASC_taxi_escort,-4,F +coef_pnr_ASC_taxi_othdiscr,-4,F +coef_pnr_ASC_taxi_othmaint,-4,F +coef_pnr_ASC_taxi_school,-4,F +coef_pnr_ASC_taxi_shopping,-4,F +coef_pnr_ASC_taxi_social,-4,F +coef_pnr_ASC_taxi_univ,-4,F +coef_pnr_ASC_taxi_work,-38,F +coef_pnr_ASC_tnc_single_atwork,0,F +coef_pnr_ASC_tnc_single_eatout,-6,F +coef_pnr_ASC_tnc_single_escort,-4,F +coef_pnr_ASC_tnc_single_othdiscr,-6,F +coef_pnr_ASC_tnc_single_othmaint,-4,F +coef_pnr_ASC_tnc_single_school,-12,F +coef_pnr_ASC_tnc_single_shopping,-4,F +coef_pnr_ASC_tnc_single_social,-6,F +coef_pnr_ASC_tnc_single_univ,-0.8,F +coef_pnr_ASC_tnc_single_work,-38,F +coef_pnr_ASC_tnc_shared_atwork,0,F +coef_pnr_ASC_tnc_shared_eatout,-6,F +coef_pnr_ASC_tnc_shared_escort,-1.903945917,F +coef_pnr_ASC_tnc_shared_othdiscr,-6,F +coef_pnr_ASC_tnc_shared_othmaint,-1.903945917,F +coef_pnr_ASC_tnc_shared_school,-14,F +coef_pnr_ASC_tnc_shared_shopping,-1.903945917,F +coef_pnr_ASC_tnc_shared_social,-6,F +coef_pnr_ASC_tnc_shared_univ,0.1,F +coef_pnr_ASC_tnc_shared_work,-40,F +coef_knr_ASC_taxi_atwork,-4,F +coef_knr_ASC_taxi_eatout,-2,F +coef_knr_ASC_taxi_escort,-4,F +coef_knr_ASC_taxi_othdiscr,-2,F +coef_knr_ASC_taxi_othmaint,-4,F +coef_knr_ASC_taxi_school,-2,F +coef_knr_ASC_taxi_shopping,-4,F +coef_knr_ASC_taxi_social,-2,F +coef_knr_ASC_taxi_univ,-4,F +coef_knr_ASC_taxi_work,-6,F +coef_knr_ASC_tnc_single_atwork,-6,F +coef_knr_ASC_tnc_single_eatout,-0.685991857,F +coef_knr_ASC_tnc_single_escort,-4,F +coef_knr_ASC_tnc_single_othdiscr,-0.685991857,F +coef_knr_ASC_tnc_single_othmaint,-4,F +coef_knr_ASC_tnc_single_school,-4,F +coef_knr_ASC_tnc_single_shopping,-4,F +coef_knr_ASC_tnc_single_social,-0.685991857,F +coef_knr_ASC_tnc_single_univ,-4,F +coef_knr_ASC_tnc_single_work,-6,F +coef_knr_ASC_tnc_shared_atwork,-6,F +coef_knr_ASC_tnc_shared_eatout,-2,F +coef_knr_ASC_tnc_shared_escort,-6,F +coef_knr_ASC_tnc_shared_othdiscr,-2,F +coef_knr_ASC_tnc_shared_othmaint,-6,F +coef_knr_ASC_tnc_shared_school,-4,F +coef_knr_ASC_tnc_shared_shopping,-6,F +coef_knr_ASC_tnc_shared_social,-2,F +coef_knr_ASC_tnc_shared_univ,-4,F +coef_knr_ASC_tnc_shared_work,-4,F +coef_ride_hail_ASC_sr2_atwork,-5.087151438,F +coef_ride_hail_ASC_sr2_eatout,-3.008963528,F +coef_ride_hail_ASC_sr2_escort,-6.158806545,F +coef_ride_hail_ASC_sr2_othdiscr,-3.008963528,F +coef_ride_hail_ASC_sr2_othmaint,-6.158806545,F +coef_ride_hail_ASC_sr2_school,-2,F +coef_ride_hail_ASC_sr2_shopping,-6.158806545,F +coef_ride_hail_ASC_sr2_social,-3.008963528,F +coef_ride_hail_ASC_sr2_univ,-8,F +coef_ride_hail_ASC_sr2_work,-2.501911301,F +coef_ride_hail_ASC_sr3p_atwork,-3.170206298,F +coef_ride_hail_ASC_sr3p_eatout,-2.44111868,F +coef_ride_hail_ASC_sr3p_escort,-8.08074379,F +coef_ride_hail_ASC_sr3p_othdiscr,-2.44111868,F +coef_ride_hail_ASC_sr3p_othmaint,-8.08074379,F +coef_ride_hail_ASC_sr3p_school,-2,F +coef_ride_hail_ASC_sr3p_shopping,-8.08074379,F +coef_ride_hail_ASC_sr3p_social,-2.44111868,F +coef_ride_hail_ASC_sr3p_univ,-8,F +coef_ride_hail_ASC_sr3p_work,-4.179706499,F +coef_ride_hail_ASC_walk_atwork,-2.651229293,F +coef_ride_hail_ASC_walk_eatout,1.713164329,F +coef_ride_hail_ASC_walk_escort,-1.500683557,F +coef_ride_hail_ASC_walk_othdiscr,1.713164329,F +coef_ride_hail_ASC_walk_othmaint,-1.500683557,F +coef_ride_hail_ASC_walk_school,0,F +coef_ride_hail_ASC_walk_shopping,-1.500683557,F +coef_ride_hail_ASC_walk_social,1.713164329,F +coef_ride_hail_ASC_walk_univ,1.951866303,F +coef_ride_hail_ASC_walk_work,1.870011335,F +coef_ride_hail_ASC_walk_transit_atwork,0,F +coef_ride_hail_ASC_walk_transit_eatout,0,F +coef_ride_hail_ASC_walk_transit_escort,0,F +coef_ride_hail_ASC_walk_transit_othdiscr,0,F +coef_ride_hail_ASC_walk_transit_othmaint,0,F +coef_ride_hail_ASC_walk_transit_school,0,F +coef_ride_hail_ASC_walk_transit_shopping,0,F +coef_ride_hail_ASC_walk_transit_social,0,F +coef_ride_hail_ASC_walk_transit_univ,0,F +coef_ride_hail_ASC_walk_transit_work,0,F +coef_ride_hail_ASC_taxi_atwork,-1.966237689,F +coef_ride_hail_ASC_taxi_eatout,-1.523627128,F +coef_ride_hail_ASC_taxi_escort,-2.351382979,F +coef_ride_hail_ASC_taxi_othdiscr,-1.523627128,F +coef_ride_hail_ASC_taxi_othmaint,-2.351382979,F +coef_ride_hail_ASC_taxi_school,-2,F +coef_ride_hail_ASC_taxi_shopping,-2.351382979,F +coef_ride_hail_ASC_taxi_social,-1.523627128,F +coef_ride_hail_ASC_taxi_univ,-2,F +coef_ride_hail_ASC_taxi_work,-1.058587162,F +coef_ride_hail_ASC_tnc_shared_atwork,-0.311353966,F +coef_ride_hail_ASC_tnc_shared_eatout,0.914610974,F +coef_ride_hail_ASC_tnc_shared_escort,-0.578043138,F +coef_ride_hail_ASC_tnc_shared_othdiscr,0.914610974,F +coef_ride_hail_ASC_tnc_shared_othmaint,-0.578043138,F +coef_ride_hail_ASC_tnc_shared_school,0,F +coef_ride_hail_ASC_tnc_shared_shopping,-0.578043138,F +coef_ride_hail_ASC_tnc_shared_social,0.914610974,F +coef_ride_hail_ASC_tnc_shared_univ,0.411988198,F +coef_ride_hail_ASC_tnc_shared_work,-0.709248249,F +coef_joint_ride_hail_ASC_sr2,9.986518294,F +coef_joint_ride_hail_ASC_sr3p,-2.332036095,F +coef_joint_ride_hail_ASC_walk,3.000998785,F +coef_joint_ride_hail_ASC_taxi,-4,F +coef_joint_ride_hail_ASC_tnc_shared,-2.05508206,F +walk_express_penalty,10,T +adjust_tnc_shared,30,T +coef_origin_density_applied_work_univ_school,0,T +coef_origin_density_applied_escort_shopping_eatout_othmaint_social_othdiscr_atwork,1,T +coef_transit_district15_univ,1,T +coef_transit_district15_work,0,T +coef_transit_district15_school,0,T +coef_transit_district15_escort,0,T +coef_transit_district15_shopping,0,T +coef_transit_district15_eatout,0,T +coef_transit_district15_othmaint,0,T +coef_transit_district15_social,0,T +coef_transit_district15_othdiscr,0,T +coef_transit_district15_atwork,0,T diff --git a/activitysim/examples/production_semcog/configs/trip_mode_choice_coefficients_.csv b/activitysim/examples/production_semcog/configs/trip_mode_choice_coefficients_.csv new file mode 100644 index 000000000..2220b02a8 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/trip_mode_choice_coefficients_.csv @@ -0,0 +1,437 @@ +coefficient_name,value,constrain +coef_unavailable,-999.0,T +coef_one,1.0,T +coef_nest_root,1.0,T +coef_nest_AUTO,0.72,T +coef_nest_NONMOTORIZED,0.72,T +coef_nest_TRANSIT,0.72,T +coef_nest_WALKACCESS,0.5,T +coef_nest_PNRACCESS,0.5,T +coef_nest_KNRACCESS,0.5,T +coef_nest_RIDEHAIL,0.36,T +coef_ivt_othmaint_social,-0.02,F +coef_ivt_work,-0.02,F +coef_ivt_univ_school,-0.03,F +coef_ivt_escort_shopping_eatout_othdiscr_atwork,-0.03,F +coef_age1619_da,0.0,F +coef_age010_trn,0.0,F +coef_age16p_sr,0.0,F +coef_hhsize1_sr,-0.73,F +coef_hhsize2_sr,0.0,F +coef_walktimeshort_atwork,1.35,F +coef_walktimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2.0,T +coef_biketimeshort_atwork,2.7,F +coef_biketimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,4.0,T +coef_dtim_atwork,1.35,F +coef_dtim_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2.0,T +coef_ivt_pmov_multiplier,1.0,T +coef_ivt_stcar_multiplier,0.9,T +coef_ivt_brt_multiplier,0.9,T +coef_ivt_urb_multiplier,0.8,T +coef_ivt_com_multiplier,0.7,T +coef_long_iwait_atwork,0.67,F +coef_long_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,1.0,T +coef_short_iwait_atwork,1.35,F +coef_short_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2.0,T +coef_wacc_atwork,1.35,F +coef_wacc_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2.0,T +coef_waux_atwork,1.35,F +coef_waux_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2.0,T +coef_wegr_atwork,1.35,F +coef_wegr_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2.0,T +coef_xwait_atwork,1.35,F +coef_xwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,2.0,T +coef_bike_ASC_walk_atwork,0.0,F +coef_bike_ASC_walk_eatout,0.0,F +coef_bike_ASC_walk_escort,0.0,F +coef_bike_ASC_walk_othdiscr,0.0,F +coef_bike_ASC_walk_othmaint,0.0,F +coef_bike_ASC_walk_school,0.0,F +coef_bike_ASC_walk_shopping,0.0,F +coef_bike_ASC_walk_social,0.0,F +coef_bike_ASC_walk_univ,0.0,F +coef_bike_ASC_walk_work,0.0,F +coef_joint_sr2_ASC_walk,-2.4718066098180653,F +coef_joint_sr3p_ASC_sr2,6.071516809140375,F +coef_joint_sr3p_ASC_walk,-1.146278445,F +coef_joint_walk_transit_ASC_sr2,-0.4809089948207574,F +coef_joint_walk_transit_ASC_sr3p,1.5970226263331693,F +coef_joint_walk_transit_ASC_walk,6.680994689701683,F +coef_joint_walk_transit_ASC_taxi,-6.0,F +coef_joint_walk_transit_ASC_tnc_single,-6.0,F +coef_joint_walk_transit_ASC_tnc_shared,-6.0,F +coef_joint_pnr_ASC_taxi,-6.0,F +coef_joint_pnr_ASC_tnc_single,-6.0,F +coef_joint_pnr_ASC_tnc_shared,-6.0,F +coef_joint_knr_ASC_taxi,-2.0,F +coef_joint_knr_ASC_tnc_single,-2.0,F +coef_joint_knr_ASC_tnc_shared,-2.0,F +coef_schoolbus_ASC_sr2_atwork,0.0,F +coef_schoolbus_ASC_sr2_eatout,0.0,F +coef_schoolbus_ASC_sr2_escort,0.0,F +coef_schoolbus_ASC_sr2_othdiscr,0.0,F +coef_schoolbus_ASC_sr2_othmaint,0.0,F +coef_schoolbus_ASC_sr2_school,-8.870848980688523,F +coef_schoolbus_ASC_sr2_shopping,0.0,F +coef_schoolbus_ASC_sr2_social,0.0,F +coef_schoolbus_ASC_sr2_univ,0.0,F +coef_schoolbus_ASC_sr2_work,0.0,F +coef_schoolbus_ASC_sr3p_atwork,0.0,F +coef_schoolbus_ASC_sr3p_eatout,0.0,F +coef_schoolbus_ASC_sr3p_escort,0.0,F +coef_schoolbus_ASC_sr3p_othdiscr,0.0,F +coef_schoolbus_ASC_sr3p_othmaint,0.0,F +coef_schoolbus_ASC_sr3p_school,-8.793453560431455,F +coef_schoolbus_ASC_sr3p_shopping,0.0,F +coef_schoolbus_ASC_sr3p_social,0.0,F +coef_schoolbus_ASC_sr3p_univ,0.0,F +coef_schoolbus_ASC_sr3p_work,0.0,F +coef_schoolbus_ASC_walk_atwork,0.0,F +coef_schoolbus_ASC_walk_eatout,0.0,F +coef_schoolbus_ASC_walk_escort,0.0,F +coef_schoolbus_ASC_walk_othdiscr,0.0,F +coef_schoolbus_ASC_walk_othmaint,0.0,F +coef_schoolbus_ASC_walk_school,-7.98773432802811,F +coef_schoolbus_ASC_walk_shopping,0.0,F +coef_schoolbus_ASC_walk_social,0.0,F +coef_schoolbus_ASC_walk_univ,0.0,F +coef_schoolbus_ASC_walk_work,0.0,F +coef_sov_ASC_walk_atwork,-2.4561938411017716,F +coef_sov_ASC_walk_eatout,-0.943603919,F +coef_sov_ASC_walk_escort,-0.307249092,F +coef_sov_ASC_walk_othdiscr,-1.153603919,F +coef_sov_ASC_walk_othmaint,-1.607249092,F +coef_sov_ASC_walk_school,-9.0,F +coef_sov_ASC_walk_shopping,-1.777249092,F +coef_sov_ASC_walk_social,-1.403603919,F +coef_sov_ASC_walk_univ,-1.0456165393073815,F +coef_sov_ASC_walk_work,-1.8119810474039342,F +coef_sov_ASC_taxi_atwork,-7.0,F +coef_sov_ASC_taxi_eatout,0.0,F +coef_sov_ASC_taxi_escort,0.0,F +coef_sov_ASC_taxi_othdiscr,0.0,F +coef_sov_ASC_taxi_othmaint,0.0,F +coef_sov_ASC_taxi_school,-5.65,F +coef_sov_ASC_taxi_shopping,0.0,F +coef_sov_ASC_taxi_social,0.0,F +coef_sov_ASC_taxi_univ,-6.65,F +coef_sov_ASC_taxi_work,-7.0,F +coef_sov_ASC_tnc_single_atwork,-7.0,F +coef_sov_ASC_tnc_single_eatout,0.0,F +coef_sov_ASC_tnc_single_escort,0.0,F +coef_sov_ASC_tnc_single_othdiscr,0.0,F +coef_sov_ASC_tnc_single_othmaint,0.0,F +coef_sov_ASC_tnc_single_school,-5.65,F +coef_sov_ASC_tnc_single_shopping,0.0,F +coef_sov_ASC_tnc_single_social,0.0,F +coef_sov_ASC_tnc_single_univ,-6.65,F +coef_sov_ASC_tnc_single_work,-7.0,F +coef_sov_ASC_tnc_shared_atwork,-7.0,F +coef_sov_ASC_tnc_shared_eatout,0.0,F +coef_sov_ASC_tnc_shared_escort,0.0,F +coef_sov_ASC_tnc_shared_othdiscr,0.0,F +coef_sov_ASC_tnc_shared_othmaint,0.0,F +coef_sov_ASC_tnc_shared_school,-5.65,F +coef_sov_ASC_tnc_shared_shopping,0.0,F +coef_sov_ASC_tnc_shared_social,0.0,F +coef_sov_ASC_tnc_shared_univ,-6.65,F +coef_sov_ASC_tnc_shared_work,-7.0,F +coef_sr2_ASC_sov_atwork,-1.6354716768872632,F +coef_sr2_ASC_sov_eatout,-0.7911641055933043,F +coef_sr2_ASC_sov_escort,-0.511497347719579,F +coef_sr2_ASC_sov_othdiscr,-0.7911641055933043,F +coef_sr2_ASC_sov_othmaint,-0.511497347719579,F +coef_sr2_ASC_sov_school,0.05091266147739875,F +coef_sr2_ASC_sov_shopping,-0.511497347719579,F +coef_sr2_ASC_sov_social,-0.7911641055933043,F +coef_sr2_ASC_sov_univ,-1.0193647729228377,F +coef_sr2_ASC_sov_work,-0.505150185,F +coef_sr2_ASC_walk_atwork,-4.147994410593764,F +coef_sr2_ASC_walk_eatout,-0.44971948,F +coef_sr2_ASC_walk_escort,-3.3641230274416705,F +coef_sr2_ASC_walk_othdiscr,-0.39971948,F +coef_sr2_ASC_walk_othmaint,-1.904123027441671,F +coef_sr2_ASC_walk_school,-0.3402487620181724,F +coef_sr2_ASC_walk_shopping,-1.4241230274416707,F +coef_sr2_ASC_walk_social,-1.16971948,F +coef_sr2_ASC_walk_univ,-0.1767642334449623,F +coef_sr2_ASC_walk_work,-0.71543715,F +coef_sr2_ASC_taxi_atwork,0.0,F +coef_sr2_ASC_taxi_eatout,0.0,F +coef_sr2_ASC_taxi_escort,0.0,F +coef_sr2_ASC_taxi_othdiscr,0.0,F +coef_sr2_ASC_taxi_othmaint,0.0,F +coef_sr2_ASC_taxi_school,0.0,F +coef_sr2_ASC_taxi_shopping,0.0,F +coef_sr2_ASC_taxi_social,0.0,F +coef_sr2_ASC_taxi_univ,0.0,F +coef_sr2_ASC_taxi_work,0.0,F +coef_sr2_ASC_tnc_single_atwork,0.0,F +coef_sr2_ASC_tnc_single_eatout,0.0,F +coef_sr2_ASC_tnc_single_escort,0.0,F +coef_sr2_ASC_tnc_single_othdiscr,0.0,F +coef_sr2_ASC_tnc_single_othmaint,0.0,F +coef_sr2_ASC_tnc_single_school,0.0,F +coef_sr2_ASC_tnc_single_shopping,0.0,F +coef_sr2_ASC_tnc_single_social,0.0,F +coef_sr2_ASC_tnc_single_univ,0.0,F +coef_sr2_ASC_tnc_single_work,0.0,F +coef_sr2_ASC_tnc_shared_atwork,0.0,F +coef_sr2_ASC_tnc_shared_eatout,0.0,F +coef_sr2_ASC_tnc_shared_escort,0.0,F +coef_sr2_ASC_tnc_shared_othdiscr,0.0,F +coef_sr2_ASC_tnc_shared_othmaint,0.0,F +coef_sr2_ASC_tnc_shared_school,0.0,F +coef_sr2_ASC_tnc_shared_shopping,0.0,F +coef_sr2_ASC_tnc_shared_social,0.0,F +coef_sr2_ASC_tnc_shared_univ,0.0,F +coef_sr2_ASC_tnc_shared_work,0.0,F +coef_sr3p_ASC_sov_atwork,-1.7323098448413663,F +coef_sr3p_ASC_sov_eatout,-1.4759569469999998,F +coef_sr3p_ASC_sov_escort,-1.1080696848858578,F +coef_sr3p_ASC_sov_othdiscr,-1.4759569469999998,F +coef_sr3p_ASC_sov_othmaint,-1.1080696848858578,F +coef_sr3p_ASC_sov_school,-1.832414661,F +coef_sr3p_ASC_sov_shopping,-1.1080696848858578,F +coef_sr3p_ASC_sov_social,-1.4759569469999998,F +coef_sr3p_ASC_sov_univ,-1.158705551593187,F +coef_sr3p_ASC_sov_work,-0.2592363978200444,F +coef_sr3p_ASC_sr2_atwork,-0.6488919856009046,F +coef_sr3p_ASC_sr2_eatout,-0.724799547843461,F +coef_sr3p_ASC_sr2_escort,-0.6506202677776334,F +coef_sr3p_ASC_sr2_othdiscr,-1.0147995478434608,F +coef_sr3p_ASC_sr2_othmaint,-0.6706202677776334,F +coef_sr3p_ASC_sr2_school,-1.094024963,F +coef_sr3p_ASC_sr2_shopping,-0.46062026777763343,F +coef_sr3p_ASC_sr2_social,-0.564799547843461,F +coef_sr3p_ASC_sr2_univ,-0.7916773814959738,F +coef_sr3p_ASC_sr2_work,-0.34403688400801846,F +coef_sr3p_ASC_walk_atwork,-3.3513939359485425,F +coef_sr3p_ASC_walk_eatout,0.012300988999999998,F +coef_sr3p_ASC_walk_escort,-2.12241919,F +coef_sr3p_ASC_walk_othdiscr,-0.467699011,F +coef_sr3p_ASC_walk_othmaint,-1.07241919,F +coef_sr3p_ASC_walk_school,-0.8186915641890801,F +coef_sr3p_ASC_walk_shopping,-1.62241919,F +coef_sr3p_ASC_walk_social,-0.25769901100000003,F +coef_sr3p_ASC_walk_univ,-0.5738777678640601,F +coef_sr3p_ASC_walk_work,-1.0513663652532266,F +coef_sr3p_ASC_taxi_atwork,0.0,F +coef_sr3p_ASC_taxi_eatout,0.0,F +coef_sr3p_ASC_taxi_escort,0.0,F +coef_sr3p_ASC_taxi_othdiscr,0.0,F +coef_sr3p_ASC_taxi_othmaint,0.0,F +coef_sr3p_ASC_taxi_school,0.0,F +coef_sr3p_ASC_taxi_shopping,0.0,F +coef_sr3p_ASC_taxi_social,0.0,F +coef_sr3p_ASC_taxi_univ,0.0,F +coef_sr3p_ASC_taxi_work,0.0,F +coef_sr3p_ASC_tnc_single_atwork,0.0,F +coef_sr3p_ASC_tnc_single_eatout,0.0,F +coef_sr3p_ASC_tnc_single_escort,0.0,F +coef_sr3p_ASC_tnc_single_othdiscr,0.0,F +coef_sr3p_ASC_tnc_single_othmaint,0.0,F +coef_sr3p_ASC_tnc_single_school,0.0,F +coef_sr3p_ASC_tnc_single_shopping,0.0,F +coef_sr3p_ASC_tnc_single_social,0.0,F +coef_sr3p_ASC_tnc_single_univ,0.0,F +coef_sr3p_ASC_tnc_single_work,0.0,F +coef_sr3p_ASC_tnc_shared_atwork,0.0,F +coef_sr3p_ASC_tnc_shared_eatout,0.0,F +coef_sr3p_ASC_tnc_shared_escort,0.0,F +coef_sr3p_ASC_tnc_shared_othdiscr,0.0,F +coef_sr3p_ASC_tnc_shared_othmaint,0.0,F +coef_sr3p_ASC_tnc_shared_school,0.0,F +coef_sr3p_ASC_tnc_shared_shopping,0.0,F +coef_sr3p_ASC_tnc_shared_social,0.0,F +coef_sr3p_ASC_tnc_shared_univ,0.0,F +coef_sr3p_ASC_tnc_shared_work,0.0,F +coef_walk_transit_ASC_sr2_atwork,-38.0,F +coef_walk_transit_ASC_sr2_eatout,-2.69150151820353,F +coef_walk_transit_ASC_sr2_escort,-2.2831062557576907,F +coef_walk_transit_ASC_sr2_othdiscr,-2.69150151820353,F +coef_walk_transit_ASC_sr2_othmaint,-2.2831062557576907,F +coef_walk_transit_ASC_sr2_school,-0.560423807853411,F +coef_walk_transit_ASC_sr2_shopping,-2.2831062557576907,F +coef_walk_transit_ASC_sr2_social,-2.69150151820353,F +coef_walk_transit_ASC_sr2_univ,-1.712143171121282,F +coef_walk_transit_ASC_sr2_work,-2.0169880749952127,F +coef_walk_transit_ASC_sr3p_atwork,5.943781468568362,F +coef_walk_transit_ASC_sr3p_eatout,-3.2919601040677207,F +coef_walk_transit_ASC_sr3p_escort,-3.486763969245068,F +coef_walk_transit_ASC_sr3p_othdiscr,-3.2919601040677207,F +coef_walk_transit_ASC_sr3p_othmaint,-3.486763969245068,F +coef_walk_transit_ASC_sr3p_school,-1.5182111238163243,F +coef_walk_transit_ASC_sr3p_shopping,-3.486763969245068,F +coef_walk_transit_ASC_sr3p_social,-3.2919601040677207,F +coef_walk_transit_ASC_sr3p_univ,-3.1941596022459335,F +coef_walk_transit_ASC_sr3p_work,-2.0849977660366132,F +coef_walk_transit_ASC_walk_atwork,9.903123590796667,F +coef_walk_transit_ASC_walk_eatout,6.453777205471383,F +coef_walk_transit_ASC_walk_escort,5.149096783652612,F +coef_walk_transit_ASC_walk_othdiscr,6.453777205471383,F +coef_walk_transit_ASC_walk_othmaint,5.149096783652612,F +coef_walk_transit_ASC_walk_school,1.9267509510461833,F +coef_walk_transit_ASC_walk_shopping,5.149096783652612,F +coef_walk_transit_ASC_walk_social,6.453777205471383,F +coef_walk_transit_ASC_walk_univ,2.5555595204205757,F +coef_walk_transit_ASC_walk_work,2.472534326341435,F +coef_walk_transit_ASC_taxi_atwork,-26.0,F +coef_walk_transit_ASC_taxi_eatout,-6.0,F +coef_walk_transit_ASC_taxi_escort,-6.0,F +coef_walk_transit_ASC_taxi_othdiscr,-6.0,F +coef_walk_transit_ASC_taxi_othmaint,-6.0,F +coef_walk_transit_ASC_taxi_school,-6.0,F +coef_walk_transit_ASC_taxi_shopping,-6.0,F +coef_walk_transit_ASC_taxi_social,-6.0,F +coef_walk_transit_ASC_taxi_univ,-8.0,F +coef_walk_transit_ASC_taxi_work,-6.0,F +coef_walk_transit_ASC_tnc_single_atwork,-26.18169468050849,F +coef_walk_transit_ASC_tnc_single_eatout,-2.9088288021266377,F +coef_walk_transit_ASC_tnc_single_escort,-3.013007945719428,F +coef_walk_transit_ASC_tnc_single_othdiscr,-2.9088288021266377,F +coef_walk_transit_ASC_tnc_single_othmaint,-3.013007945719428,F +coef_walk_transit_ASC_tnc_single_school,-6.0,F +coef_walk_transit_ASC_tnc_single_shopping,-3.013007945719428,F +coef_walk_transit_ASC_tnc_single_social,-2.9088288021266377,F +coef_walk_transit_ASC_tnc_single_univ,-4.7194566242421185,F +coef_walk_transit_ASC_tnc_single_work,-1.6131819481180394,F +coef_walk_transit_ASC_tnc_shared_atwork,-24.0,F +coef_walk_transit_ASC_tnc_shared_eatout,-6.0,F +coef_walk_transit_ASC_tnc_shared_escort,-2.4508351572397338,F +coef_walk_transit_ASC_tnc_shared_othdiscr,-6.0,F +coef_walk_transit_ASC_tnc_shared_othmaint,-2.4508351572397338,F +coef_walk_transit_ASC_tnc_shared_school,-6.0,F +coef_walk_transit_ASC_tnc_shared_shopping,-2.4508351572397338,F +coef_walk_transit_ASC_tnc_shared_social,-6.0,F +coef_walk_transit_ASC_tnc_shared_univ,-8.0,F +coef_walk_transit_ASC_tnc_shared_work,-1.901181988033481,F +coef_pnr_ASC_taxi_atwork,0.0,F +coef_pnr_ASC_taxi_eatout,-4.0,F +coef_pnr_ASC_taxi_escort,-4.0,F +coef_pnr_ASC_taxi_othdiscr,-4.0,F +coef_pnr_ASC_taxi_othmaint,-4.0,F +coef_pnr_ASC_taxi_school,-2.0,F +coef_pnr_ASC_taxi_shopping,-4.0,F +coef_pnr_ASC_taxi_social,-4.0,F +coef_pnr_ASC_taxi_univ,-4.0,F +coef_pnr_ASC_taxi_work,-18.0,F +coef_pnr_ASC_tnc_single_atwork,0.0,F +coef_pnr_ASC_tnc_single_eatout,-6.0,F +coef_pnr_ASC_tnc_single_escort,-4.0,F +coef_pnr_ASC_tnc_single_othdiscr,-6.0,F +coef_pnr_ASC_tnc_single_othmaint,-4.0,F +coef_pnr_ASC_tnc_single_school,-2.0,F +coef_pnr_ASC_tnc_single_shopping,-4.0,F +coef_pnr_ASC_tnc_single_social,-6.0,F +coef_pnr_ASC_tnc_single_univ,-1.3402368194425927,F +coef_pnr_ASC_tnc_single_work,-18.0,F +coef_pnr_ASC_tnc_shared_atwork,0.0,F +coef_pnr_ASC_tnc_shared_eatout,-6.0,F +coef_pnr_ASC_tnc_shared_escort,-1.8515688444695777,F +coef_pnr_ASC_tnc_shared_othdiscr,-6.0,F +coef_pnr_ASC_tnc_shared_othmaint,-1.8515688444695777,F +coef_pnr_ASC_tnc_shared_school,-2.0,F +coef_pnr_ASC_tnc_shared_shopping,-1.8515688444695777,F +coef_pnr_ASC_tnc_shared_social,-6.0,F +coef_pnr_ASC_tnc_shared_univ,-0.9555320109705572,F +coef_pnr_ASC_tnc_shared_work,-20.0,F +coef_knr_ASC_taxi_atwork,-4.0,F +coef_knr_ASC_taxi_eatout,-2.0,F +coef_knr_ASC_taxi_escort,-4.0,F +coef_knr_ASC_taxi_othdiscr,-2.0,F +coef_knr_ASC_taxi_othmaint,-4.0,F +coef_knr_ASC_taxi_school,-2.0,F +coef_knr_ASC_taxi_shopping,-4.0,F +coef_knr_ASC_taxi_social,-2.0,F +coef_knr_ASC_taxi_univ,-4.0,F +coef_knr_ASC_taxi_work,-6.0,F +coef_knr_ASC_tnc_single_atwork,-6.0,F +coef_knr_ASC_tnc_single_eatout,0.4833518998809241,F +coef_knr_ASC_tnc_single_escort,-4.0,F +coef_knr_ASC_tnc_single_othdiscr,0.4833518998809241,F +coef_knr_ASC_tnc_single_othmaint,-4.0,F +coef_knr_ASC_tnc_single_school,-4.0,F +coef_knr_ASC_tnc_single_shopping,-4.0,F +coef_knr_ASC_tnc_single_social,0.4833518998809241,F +coef_knr_ASC_tnc_single_univ,-4.0,F +coef_knr_ASC_tnc_single_work,-6.0,F +coef_knr_ASC_tnc_shared_atwork,-6.0,F +coef_knr_ASC_tnc_shared_eatout,-2.0,F +coef_knr_ASC_tnc_shared_escort,-6.0,F +coef_knr_ASC_tnc_shared_othdiscr,-2.0,F +coef_knr_ASC_tnc_shared_othmaint,-6.0,F +coef_knr_ASC_tnc_shared_school,-4.0,F +coef_knr_ASC_tnc_shared_shopping,-6.0,F +coef_knr_ASC_tnc_shared_social,-2.0,F +coef_knr_ASC_tnc_shared_univ,-4.0,F +coef_knr_ASC_tnc_shared_work,-4.0,F +coef_ride_hail_ASC_sr2_atwork,-5.454019246971898,F +coef_ride_hail_ASC_sr2_eatout,-2.7940550122485104,F +coef_ride_hail_ASC_sr2_escort,-6.155332876194065,F +coef_ride_hail_ASC_sr2_othdiscr,-2.7940550122485104,F +coef_ride_hail_ASC_sr2_othmaint,-6.155332876194065,F +coef_ride_hail_ASC_sr2_school,-2.0,F +coef_ride_hail_ASC_sr2_shopping,-6.155332876194065,F +coef_ride_hail_ASC_sr2_social,-2.7940550122485104,F +coef_ride_hail_ASC_sr2_univ,-8.0,F +coef_ride_hail_ASC_sr2_work,-2.3519779180292857,F +coef_ride_hail_ASC_sr3p_atwork,-4.187228123359013,F +coef_ride_hail_ASC_sr3p_eatout,-2.2736279720757144,F +coef_ride_hail_ASC_sr3p_escort,-7.88411520414933,F +coef_ride_hail_ASC_sr3p_othdiscr,-2.2736279720757144,F +coef_ride_hail_ASC_sr3p_othmaint,-7.88411520414933,F +coef_ride_hail_ASC_sr3p_school,-2.0,F +coef_ride_hail_ASC_sr3p_shopping,-7.88411520414933,F +coef_ride_hail_ASC_sr3p_social,-2.2736279720757144,F +coef_ride_hail_ASC_sr3p_univ,-8.0,F +coef_ride_hail_ASC_sr3p_work,-4.015431891692123,F +coef_ride_hail_ASC_walk_atwork,-4.532888086258602,F +coef_ride_hail_ASC_walk_eatout,2.043672436692793,F +coef_ride_hail_ASC_walk_escort,-1.805366437835127,F +coef_ride_hail_ASC_walk_othdiscr,2.043672436692793,F +coef_ride_hail_ASC_walk_othmaint,-1.805366437835127,F +coef_ride_hail_ASC_walk_school,0.0,F +coef_ride_hail_ASC_walk_shopping,-1.805366437835127,F +coef_ride_hail_ASC_walk_social,2.043672436692793,F +coef_ride_hail_ASC_walk_univ,-0.42711895617043627,F +coef_ride_hail_ASC_walk_work,1.9169188200900251,F +coef_ride_hail_ASC_walk_transit_atwork,0.0,F +coef_ride_hail_ASC_walk_transit_eatout,0.0,F +coef_ride_hail_ASC_walk_transit_escort,0.0,F +coef_ride_hail_ASC_walk_transit_othdiscr,0.0,F +coef_ride_hail_ASC_walk_transit_othmaint,0.0,F +coef_ride_hail_ASC_walk_transit_school,0.0,F +coef_ride_hail_ASC_walk_transit_shopping,0.0,F +coef_ride_hail_ASC_walk_transit_social,0.0,F +coef_ride_hail_ASC_walk_transit_univ,0.0,F +coef_ride_hail_ASC_walk_transit_work,0.0,F +coef_ride_hail_ASC_taxi_atwork,-2.822046100103776,F +coef_ride_hail_ASC_taxi_eatout,-0.52939679648215,F +coef_ride_hail_ASC_taxi_escort,-2.440694838009208,F +coef_ride_hail_ASC_taxi_othdiscr,-0.52939679648215,F +coef_ride_hail_ASC_taxi_othmaint,-2.440694838009208,F +coef_ride_hail_ASC_taxi_school,-2.0,F +coef_ride_hail_ASC_taxi_shopping,-2.440694838009208,F +coef_ride_hail_ASC_taxi_social,-0.52939679648215,F +coef_ride_hail_ASC_taxi_univ,-2.0,F +coef_ride_hail_ASC_taxi_work,-1.5897539437496788,F +coef_ride_hail_ASC_tnc_shared_atwork,-0.273876953345801,F +coef_ride_hail_ASC_tnc_shared_eatout,0.5581894414791493,F +coef_ride_hail_ASC_tnc_shared_escort,-0.8150333821508897,F +coef_ride_hail_ASC_tnc_shared_othdiscr,0.5581894414791493,F +coef_ride_hail_ASC_tnc_shared_othmaint,-0.8150333821508897,F +coef_ride_hail_ASC_tnc_shared_school,0.0,F +coef_ride_hail_ASC_tnc_shared_shopping,-0.8150333821508897,F +coef_ride_hail_ASC_tnc_shared_social,0.5581894414791493,F +coef_ride_hail_ASC_tnc_shared_univ,0.5873113718080742,F +coef_ride_hail_ASC_tnc_shared_work,-0.8398801540853604,F +coef_joint_ride_hail_ASC_sr2,8.9718118272908,F +coef_joint_ride_hail_ASC_sr3p,-2.357988990538013,F +coef_joint_ride_hail_ASC_walk,3.3078622620547504,F +coef_joint_ride_hail_ASC_taxi,-4.0,F +coef_joint_ride_hail_ASC_tnc_shared,-1.615763246732392,F +walk_express_penalty,10.0,T +adjust_tnc_shared,30.0,T +coef_origin_density_applied_work_univ_school,0.0,T +coef_origin_density_applied_escort_shopping_eatout_othmaint_social_othdiscr_atwork,1.0,T diff --git a/activitysim/examples/production_semcog/configs/trip_mode_choice_coefficients_template.csv b/activitysim/examples/production_semcog/configs/trip_mode_choice_coefficients_template.csv new file mode 100644 index 000000000..04576537d --- /dev/null +++ b/activitysim/examples/production_semcog/configs/trip_mode_choice_coefficients_template.csv @@ -0,0 +1,99 @@ +coefficient_name,work,univ,school,escort,shopping,eatout,othmaint,social,othdiscr,atwork +#same for all segments,,,,,,,,,, +coef_unavailable,,,,,,,,,, +coef_one,,,,,,,,,, +coef_nest_root,,,,,,,,,, +coef_nest_AUTO,,,,,,,,,, +coef_nest_NONMOTORIZED,,,,,,,,,, +coef_nest_TRANSIT,,,,,,,,,, +coef_nest_WALKACCESS,,,,,,,,,, +coef_nest_PNRACCESS,,,,,,,,,, +coef_nest_KNRACCESS,,,,,,,,,, +coef_nest_RIDEHAIL,,,,,,,,,, +#,,,,,,,,,, +coef_ivt,coef_ivt_work,coef_ivt_univ_school,coef_ivt_univ_school,coef_ivt_escort_shopping_eatout_othdiscr_atwork,coef_ivt_escort_shopping_eatout_othdiscr_atwork,coef_ivt_escort_shopping_eatout_othdiscr_atwork,coef_ivt_othmaint_social,coef_ivt_othmaint_social,coef_ivt_escort_shopping_eatout_othdiscr_atwork,coef_ivt_escort_shopping_eatout_othdiscr_atwork +coef_age1619_da,,,,,,,,,, +coef_age010_trn,,,,,,,,,, +coef_age16p_sr,,,,,,,,,, +coef_hhsize1_sr,,,,,,,,,, +coef_hhsize2_sr,,,,,,,,,, +#multipliers that differ by purpose and were apparently estimated only for atwork,,,,,,,,,, +coef_ivt_pmov_multiplier,coef_ivt_pmov_multiplier,coef_ivt_pmov_multiplier,coef_ivt_pmov_multiplier,coef_ivt_pmov_multiplier,coef_ivt_pmov_multiplier,coef_ivt_pmov_multiplier,coef_ivt_pmov_multiplier,coef_ivt_pmov_multiplier,coef_ivt_pmov_multiplier,coef_ivt_pmov_multiplier +coef_ivt_stcar_multiplier,coef_ivt_stcar_multiplier,coef_ivt_stcar_multiplier,coef_ivt_stcar_multiplier,coef_ivt_stcar_multiplier,coef_ivt_stcar_multiplier,coef_ivt_stcar_multiplier,coef_ivt_stcar_multiplier,coef_ivt_stcar_multiplier,coef_ivt_stcar_multiplier,coef_ivt_stcar_multiplier +coef_ivt_brt_multiplier,coef_ivt_brt_multiplier,coef_ivt_brt_multiplier,coef_ivt_brt_multiplier,coef_ivt_brt_multiplier,coef_ivt_brt_multiplier,coef_ivt_brt_multiplier,coef_ivt_brt_multiplier,coef_ivt_brt_multiplier,coef_ivt_brt_multiplier,coef_ivt_brt_multiplier +coef_ivt_urb_multiplier,coef_ivt_urb_multiplier,coef_ivt_urb_multiplier,coef_ivt_urb_multiplier,coef_ivt_urb_multiplier,coef_ivt_urb_multiplier,coef_ivt_urb_multiplier,coef_ivt_urb_multiplier,coef_ivt_urb_multiplier,coef_ivt_urb_multiplier,coef_ivt_urb_multiplier +coef_ivt_com_multiplier,coef_ivt_com_multiplier,coef_ivt_com_multiplier,coef_ivt_com_multiplier,coef_ivt_com_multiplier,coef_ivt_com_multiplier,coef_ivt_com_multiplier,coef_ivt_com_multiplier,coef_ivt_com_multiplier,coef_ivt_com_multiplier,coef_ivt_com_multiplier +coef_short_iwait_multiplier,coef_short_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_short_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_short_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_short_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_short_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_short_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_short_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_short_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_short_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_short_iwait_atwork +coef_long_iwait_multiplier,coef_long_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_long_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_long_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_long_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_long_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_long_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_long_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_long_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_long_iwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_long_iwait_atwork +coef_wacc_multiplier,coef_wacc_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wacc_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wacc_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wacc_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wacc_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wacc_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wacc_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wacc_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wacc_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wacc_atwork +coef_wegr_multiplier,coef_wegr_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wegr_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wegr_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wegr_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wegr_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wegr_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wegr_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wegr_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wegr_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_wegr_atwork +coef_waux_multiplier,coef_waux_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_waux_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_waux_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_waux_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_waux_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_waux_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_waux_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_waux_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_waux_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_waux_atwork +coef_dtim_multiplier,coef_dtim_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_dtim_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_dtim_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_dtim_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_dtim_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_dtim_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_dtim_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_dtim_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_dtim_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_dtim_atwork +coef_xwait_multiplier,coef_xwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_xwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_xwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_xwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_xwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_xwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_xwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_xwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_xwait_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_xwait_atwork +coef_walktimeshort_multiplier,coef_walktimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_walktimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_walktimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_walktimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_walktimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_walktimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_walktimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_walktimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_walktimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_walktimeshort_atwork +coef_biketimeshort_multiplier,coef_biketimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_biketimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_biketimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_biketimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_biketimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_biketimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_biketimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_biketimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_biketimeshort_work_univ_school_escort_shopping_eatout_othmaint_social_othdiscr,coef_biketimeshort_atwork +#ASCs,,,,,,,,,, +sov_ASC_walk,coef_sov_ASC_walk_work,coef_sov_ASC_walk_univ,coef_sov_ASC_walk_school,coef_sov_ASC_walk_escort,coef_sov_ASC_walk_shopping,coef_sov_ASC_walk_eatout,coef_sov_ASC_walk_othmaint,coef_sov_ASC_walk_social,coef_sov_ASC_walk_othdiscr,coef_sov_ASC_walk_atwork +sov_ASC_taxi,coef_sov_ASC_taxi_work,coef_sov_ASC_taxi_univ,coef_sov_ASC_taxi_school,coef_sov_ASC_taxi_escort,coef_sov_ASC_taxi_shopping,coef_sov_ASC_taxi_eatout,coef_sov_ASC_taxi_othmaint,coef_sov_ASC_taxi_social,coef_sov_ASC_taxi_othdiscr,coef_sov_ASC_taxi_atwork +sov_ASC_tnc_single,coef_sov_ASC_tnc_single_work,coef_sov_ASC_tnc_single_univ,coef_sov_ASC_tnc_single_school,coef_sov_ASC_tnc_single_escort,coef_sov_ASC_tnc_single_shopping,coef_sov_ASC_tnc_single_eatout,coef_sov_ASC_tnc_single_othmaint,coef_sov_ASC_tnc_single_social,coef_sov_ASC_tnc_single_othdiscr,coef_sov_ASC_tnc_single_atwork +sov_ASC_tnc_shared,coef_sov_ASC_tnc_shared_work,coef_sov_ASC_tnc_shared_univ,coef_sov_ASC_tnc_shared_school,coef_sov_ASC_tnc_shared_escort,coef_sov_ASC_tnc_shared_shopping,coef_sov_ASC_tnc_shared_eatout,coef_sov_ASC_tnc_shared_othmaint,coef_sov_ASC_tnc_shared_social,coef_sov_ASC_tnc_shared_othdiscr,coef_sov_ASC_tnc_shared_atwork +sr2_ASC_sov,coef_sr2_ASC_sov_work,coef_sr2_ASC_sov_univ,coef_sr2_ASC_sov_school,coef_sr2_ASC_sov_escort,coef_sr2_ASC_sov_shopping,coef_sr2_ASC_sov_eatout,coef_sr2_ASC_sov_othmaint,coef_sr2_ASC_sov_social,coef_sr2_ASC_sov_othdiscr,coef_sr2_ASC_sov_atwork +sr2_ASC_walk,coef_sr2_ASC_walk_work,coef_sr2_ASC_walk_univ,coef_sr2_ASC_walk_school,coef_sr2_ASC_walk_escort,coef_sr2_ASC_walk_shopping,coef_sr2_ASC_walk_eatout,coef_sr2_ASC_walk_othmaint,coef_sr2_ASC_walk_social,coef_sr2_ASC_walk_othdiscr,coef_sr2_ASC_walk_atwork +sr2_ASC_taxi,coef_sr2_ASC_taxi_work,coef_sr2_ASC_taxi_univ,coef_sr2_ASC_taxi_school,coef_sr2_ASC_taxi_escort,coef_sr2_ASC_taxi_shopping,coef_sr2_ASC_taxi_eatout,coef_sr2_ASC_taxi_othmaint,coef_sr2_ASC_taxi_social,coef_sr2_ASC_taxi_othdiscr,coef_sr2_ASC_taxi_atwork +sr2_ASC_tnc_single,coef_sr2_ASC_tnc_single_work,coef_sr2_ASC_tnc_single_univ,coef_sr2_ASC_tnc_single_school,coef_sr2_ASC_tnc_single_escort,coef_sr2_ASC_tnc_single_shopping,coef_sr2_ASC_tnc_single_eatout,coef_sr2_ASC_tnc_single_othmaint,coef_sr2_ASC_tnc_single_social,coef_sr2_ASC_tnc_single_othdiscr,coef_sr2_ASC_tnc_single_atwork +sr2_ASC_tnc_shared,coef_sr2_ASC_tnc_shared_work,coef_sr2_ASC_tnc_shared_univ,coef_sr2_ASC_tnc_shared_school,coef_sr2_ASC_tnc_shared_escort,coef_sr2_ASC_tnc_shared_shopping,coef_sr2_ASC_tnc_shared_eatout,coef_sr2_ASC_tnc_shared_othmaint,coef_sr2_ASC_tnc_shared_social,coef_sr2_ASC_tnc_shared_othdiscr,coef_sov_ASC_tnc_shared_atwork +sr3p_ASC_sov,coef_sr3p_ASC_sov_work,coef_sr3p_ASC_sov_univ,coef_sr3p_ASC_sov_school,coef_sr3p_ASC_sov_escort,coef_sr3p_ASC_sov_shopping,coef_sr3p_ASC_sov_eatout,coef_sr3p_ASC_sov_othmaint,coef_sr3p_ASC_sov_social,coef_sr3p_ASC_sov_othdiscr,coef_sr3p_ASC_sov_atwork +sr3p_ASC_sr2,coef_sr3p_ASC_sr2_work,coef_sr3p_ASC_sr2_univ,coef_sr3p_ASC_sr2_school,coef_sr3p_ASC_sr2_escort,coef_sr3p_ASC_sr2_shopping,coef_sr3p_ASC_sr2_eatout,coef_sr3p_ASC_sr2_othmaint,coef_sr3p_ASC_sr2_social,coef_sr3p_ASC_sr2_othdiscr,coef_sr3p_ASC_sr2_atwork +sr3p_ASC_walk,coef_sr3p_ASC_walk_work,coef_sr3p_ASC_walk_univ,coef_sr3p_ASC_walk_school,coef_sr3p_ASC_walk_escort,coef_sr3p_ASC_walk_shopping,coef_sr3p_ASC_walk_eatout,coef_sr3p_ASC_walk_othmaint,coef_sr3p_ASC_walk_social,coef_sr3p_ASC_walk_othdiscr,coef_sr3p_ASC_walk_atwork +sr3p_ASC_taxi,coef_sr3p_ASC_taxi_work,coef_sr3p_ASC_taxi_univ,coef_sr3p_ASC_taxi_school,coef_sr3p_ASC_taxi_escort,coef_sr3p_ASC_taxi_shopping,coef_sr3p_ASC_taxi_eatout,coef_sr3p_ASC_taxi_othmaint,coef_sr3p_ASC_taxi_social,coef_sr3p_ASC_taxi_othdiscr,coef_sr3p_ASC_taxi_atwork +sr3p_ASC_tnc_single,coef_sr3p_ASC_tnc_single_work,coef_sr3p_ASC_tnc_single_univ,coef_sr3p_ASC_tnc_single_school,coef_sr3p_ASC_tnc_single_escort,coef_sr3p_ASC_tnc_single_shopping,coef_sr3p_ASC_tnc_single_eatout,coef_sr3p_ASC_tnc_single_othmaint,coef_sr3p_ASC_tnc_single_social,coef_sr3p_ASC_tnc_single_othdiscr,coef_sr3p_ASC_tnc_single_atwork +sr3p_ASC_tnc_shared,coef_sr3p_ASC_tnc_shared_work,coef_sr3p_ASC_tnc_shared_univ,coef_sr3p_ASC_tnc_shared_school,coef_sr3p_ASC_tnc_shared_escort,coef_sr3p_ASC_tnc_shared_shopping,coef_sr3p_ASC_tnc_shared_eatout,coef_sr3p_ASC_tnc_shared_othmaint,coef_sr3p_ASC_tnc_shared_social,coef_sr3p_ASC_tnc_shared_othdiscr,coef_sov_ASC_tnc_shared_atwork +#walk_ASC_rh,coef_walk_ASC_rh_work,coef_walk_ASC_rh_univ,coef_walk_ASC_rh_school,coef_walk_ASC_rh_escort,coef_walk_ASC_rh_shopping,coef_walk_ASC_rh_eatout,coef_walk_ASC_rh_othmaint,coef_walk_ASC_rh_social,coef_walk_ASC_rh_othdiscr,coef_walk_ASC_rh_atwork +bike_ASC_walk,coef_bike_ASC_walk_work,coef_bike_ASC_walk_univ,coef_bike_ASC_walk_school,coef_bike_ASC_walk_escort,coef_bike_ASC_walk_shopping,coef_bike_ASC_walk_eatout,coef_bike_ASC_walk_othmaint,coef_bike_ASC_walk_social,coef_bike_ASC_walk_othdiscr,coef_bike_ASC_walk_atwork +#bike_ASC_rh,coef_bike_ASC_rh_work,coef_bike_ASC_rh_univ,coef_bike_ASC_rh_school,coef_bike_ASC_rh_escort,coef_bike_ASC_rh_shopping,coef_bike_ASC_rh_eatout,coef_bike_ASC_rh_othmaint,coef_bike_ASC_rh_social,coef_bike_ASC_rh_othdiscr,coef_bike_ASC_rh_atwork +walk_transit_ASC_sr2,coef_walk_transit_ASC_sr2_work,coef_walk_transit_ASC_sr2_univ,coef_walk_transit_ASC_sr2_school,coef_walk_transit_ASC_sr2_escort,coef_walk_transit_ASC_sr2_shopping,coef_walk_transit_ASC_sr2_eatout,coef_walk_transit_ASC_sr2_othmaint,coef_walk_transit_ASC_sr2_social,coef_walk_transit_ASC_sr2_othdiscr,coef_walk_transit_ASC_sr2_atwork +walk_transit_ASC_sr3p,coef_walk_transit_ASC_sr3p_work,coef_walk_transit_ASC_sr3p_univ,coef_walk_transit_ASC_sr3p_school,coef_walk_transit_ASC_sr3p_escort,coef_walk_transit_ASC_sr3p_shopping,coef_walk_transit_ASC_sr3p_eatout,coef_walk_transit_ASC_sr3p_othmaint,coef_walk_transit_ASC_sr3p_social,coef_walk_transit_ASC_sr3p_othdiscr,coef_walk_transit_ASC_sr3p_atwork +walk_transit_ASC_walk,coef_walk_transit_ASC_walk_work,coef_walk_transit_ASC_walk_univ,coef_walk_transit_ASC_walk_school,coef_walk_transit_ASC_walk_escort,coef_walk_transit_ASC_walk_shopping,coef_walk_transit_ASC_walk_eatout,coef_walk_transit_ASC_walk_othmaint,coef_walk_transit_ASC_walk_social,coef_walk_transit_ASC_walk_othdiscr,coef_walk_transit_ASC_walk_atwork +walk_transit_ASC_taxi,coef_walk_transit_ASC_taxi_work,coef_walk_transit_ASC_taxi_univ,coef_walk_transit_ASC_taxi_school,coef_walk_transit_ASC_taxi_escort,coef_walk_transit_ASC_taxi_shopping,coef_walk_transit_ASC_taxi_eatout,coef_walk_transit_ASC_taxi_othmaint,coef_walk_transit_ASC_taxi_social,coef_walk_transit_ASC_taxi_othdiscr,coef_walk_transit_ASC_taxi_atwork +walk_transit_ASC_tnc_single,coef_walk_transit_ASC_tnc_single_work,coef_walk_transit_ASC_tnc_single_univ,coef_walk_transit_ASC_tnc_single_school,coef_walk_transit_ASC_tnc_single_escort,coef_walk_transit_ASC_tnc_single_shopping,coef_walk_transit_ASC_tnc_single_eatout,coef_walk_transit_ASC_tnc_single_othmaint,coef_walk_transit_ASC_tnc_single_social,coef_walk_transit_ASC_tnc_single_othdiscr,coef_walk_transit_ASC_tnc_single_atwork +walk_transit_ASC_tnc_shared,coef_walk_transit_ASC_tnc_shared_work,coef_walk_transit_ASC_tnc_shared_univ,coef_walk_transit_ASC_tnc_shared_school,coef_walk_transit_ASC_tnc_shared_escort,coef_walk_transit_ASC_tnc_shared_shopping,coef_walk_transit_ASC_tnc_shared_eatout,coef_walk_transit_ASC_tnc_shared_othmaint,coef_walk_transit_ASC_tnc_shared_social,coef_walk_transit_ASC_tnc_shared_othdiscr,coef_walk_transit_ASC_tnc_shared_atwork +pnr_ASC_taxi,coef_pnr_ASC_taxi_work,coef_pnr_ASC_taxi_univ,coef_pnr_ASC_taxi_school,coef_pnr_ASC_taxi_escort,coef_pnr_ASC_taxi_shopping,coef_pnr_ASC_taxi_eatout,coef_pnr_ASC_taxi_othmaint,coef_pnr_ASC_taxi_social,coef_pnr_ASC_taxi_othdiscr,coef_pnr_ASC_taxi_atwork +pnr_ASC_tnc_single,coef_pnr_ASC_tnc_single_work,coef_pnr_ASC_tnc_single_univ,coef_pnr_ASC_tnc_single_school,coef_pnr_ASC_tnc_single_escort,coef_pnr_ASC_tnc_single_shopping,coef_pnr_ASC_tnc_single_eatout,coef_pnr_ASC_tnc_single_othmaint,coef_pnr_ASC_tnc_single_social,coef_pnr_ASC_tnc_single_othdiscr,coef_pnr_ASC_tnc_single_atwork +pnr_ASC_tnc_shared,coef_pnr_ASC_tnc_shared_work,coef_pnr_ASC_tnc_shared_univ,coef_pnr_ASC_tnc_shared_school,coef_pnr_ASC_tnc_shared_escort,coef_pnr_ASC_tnc_shared_shopping,coef_pnr_ASC_tnc_shared_eatout,coef_pnr_ASC_tnc_shared_othmaint,coef_pnr_ASC_tnc_shared_social,coef_pnr_ASC_tnc_shared_othdiscr,coef_pnr_ASC_tnc_shared_atwork +knr_ASC_taxi,coef_knr_ASC_taxi_work,coef_knr_ASC_taxi_univ,coef_knr_ASC_taxi_school,coef_knr_ASC_taxi_escort,coef_knr_ASC_taxi_shopping,coef_knr_ASC_taxi_eatout,coef_knr_ASC_taxi_othmaint,coef_knr_ASC_taxi_social,coef_knr_ASC_taxi_othdiscr,coef_knr_ASC_taxi_atwork +knr_ASC_tnc_single,coef_knr_ASC_tnc_single_work,coef_knr_ASC_tnc_single_univ,coef_knr_ASC_tnc_single_school,coef_knr_ASC_tnc_single_escort,coef_knr_ASC_tnc_single_shopping,coef_knr_ASC_tnc_single_eatout,coef_knr_ASC_tnc_single_othmaint,coef_knr_ASC_tnc_single_social,coef_knr_ASC_tnc_single_othdiscr,coef_knr_ASC_tnc_single_atwork +knr_ASC_tnc_shared,coef_knr_ASC_tnc_shared_work,coef_knr_ASC_tnc_shared_univ,coef_knr_ASC_tnc_shared_school,coef_knr_ASC_tnc_shared_escort,coef_knr_ASC_tnc_shared_shopping,coef_knr_ASC_tnc_shared_eatout,coef_knr_ASC_tnc_shared_othmaint,coef_knr_ASC_tnc_shared_social,coef_knr_ASC_tnc_shared_othdiscr,coef_knr_ASC_tnc_shared_atwork +schoolbus_ASC_sr2,coef_schoolbus_ASC_sr2_work,coef_schoolbus_ASC_sr2_univ,coef_schoolbus_ASC_sr2_school,coef_schoolbus_ASC_sr2_escort,coef_schoolbus_ASC_sr2_shopping,coef_schoolbus_ASC_sr2_eatout,coef_schoolbus_ASC_sr2_othmaint,coef_schoolbus_ASC_sr2_social,coef_schoolbus_ASC_sr2_othdiscr,coef_schoolbus_ASC_sr2_atwork +schoolbus_ASC_sr3p,coef_schoolbus_ASC_sr3p_work,coef_schoolbus_ASC_sr3p_univ,coef_schoolbus_ASC_sr3p_school,coef_schoolbus_ASC_sr3p_escort,coef_schoolbus_ASC_sr3p_shopping,coef_schoolbus_ASC_sr3p_eatout,coef_schoolbus_ASC_sr3p_othmaint,coef_schoolbus_ASC_sr3p_social,coef_schoolbus_ASC_sr3p_othdiscr,coef_schoolbus_ASC_sr3p_atwork +schoolbus_ASC_walk,coef_schoolbus_ASC_walk_work,coef_schoolbus_ASC_walk_univ,coef_schoolbus_ASC_walk_school,coef_schoolbus_ASC_walk_escort,coef_schoolbus_ASC_walk_shopping,coef_schoolbus_ASC_walk_eatout,coef_schoolbus_ASC_walk_othmaint,coef_schoolbus_ASC_walk_social,coef_schoolbus_ASC_walk_othdiscr,coef_schoolbus_ASC_walk_atwork +#,,,,,,,,,, +ride_hail_ASC_sr2,coef_ride_hail_ASC_sr2_work,coef_ride_hail_ASC_sr2_univ,coef_ride_hail_ASC_sr2_school,coef_ride_hail_ASC_sr2_escort,coef_ride_hail_ASC_sr2_shopping,coef_ride_hail_ASC_sr2_eatout,coef_ride_hail_ASC_sr2_othmaint,coef_ride_hail_ASC_sr2_social,coef_ride_hail_ASC_sr2_othdiscr,coef_ride_hail_ASC_sr2_atwork +ride_hail_ASC_sr3p,coef_ride_hail_ASC_sr3p_work,coef_ride_hail_ASC_sr3p_univ,coef_ride_hail_ASC_sr3p_school,coef_ride_hail_ASC_sr3p_escort,coef_ride_hail_ASC_sr3p_shopping,coef_ride_hail_ASC_sr3p_eatout,coef_ride_hail_ASC_sr3p_othmaint,coef_ride_hail_ASC_sr3p_social,coef_ride_hail_ASC_sr3p_othdiscr,coef_ride_hail_ASC_sr3p_atwork +ride_hail_ASC_walk,coef_ride_hail_ASC_walk_work,coef_ride_hail_ASC_walk_univ,coef_ride_hail_ASC_walk_school,coef_ride_hail_ASC_walk_escort,coef_ride_hail_ASC_walk_shopping,coef_ride_hail_ASC_walk_eatout,coef_ride_hail_ASC_walk_othmaint,coef_ride_hail_ASC_walk_social,coef_ride_hail_ASC_walk_othdiscr,coef_ride_hail_ASC_walk_atwork +ride_hail_ASC_walk_transit,coef_ride_hail_ASC_walk_transit_work,coef_ride_hail_ASC_walk_transit_univ,coef_ride_hail_ASC_walk_transit_school,coef_ride_hail_ASC_walk_transit_escort,coef_ride_hail_ASC_walk_transit_shopping,coef_ride_hail_ASC_walk_transit_eatout,coef_ride_hail_ASC_walk_transit_othmaint,coef_ride_hail_ASC_walk_transit_social,coef_ride_hail_ASC_walk_transit_othdiscr,coef_ride_hail_ASC_walk_transit_atwork +ride_hail_ASC_taxi,coef_ride_hail_ASC_taxi_work,coef_ride_hail_ASC_taxi_univ,coef_ride_hail_ASC_taxi_school,coef_ride_hail_ASC_taxi_escort,coef_ride_hail_ASC_taxi_shopping,coef_ride_hail_ASC_taxi_eatout,coef_ride_hail_ASC_taxi_othmaint,coef_ride_hail_ASC_taxi_social,coef_ride_hail_ASC_taxi_othdiscr,coef_ride_hail_ASC_taxi_atwork +ride_hail_ASC_tnc_shared,coef_ride_hail_ASC_tnc_shared_work,coef_ride_hail_ASC_tnc_shared_univ,coef_ride_hail_ASC_tnc_shared_school,coef_ride_hail_ASC_tnc_shared_escort,coef_ride_hail_ASC_tnc_shared_shopping,coef_ride_hail_ASC_tnc_shared_eatout,coef_ride_hail_ASC_tnc_shared_othmaint,coef_ride_hail_ASC_tnc_shared_social,coef_ride_hail_ASC_tnc_shared_othdiscr,coef_ride_hail_ASC_tnc_shared_atwork +joint_sr3p_ASC_sr2,coef_joint_sr3p_ASC_sr2,coef_joint_sr3p_ASC_sr2,coef_joint_sr3p_ASC_sr2,coef_joint_sr3p_ASC_sr2,coef_joint_sr3p_ASC_sr2,coef_joint_sr3p_ASC_sr2,coef_joint_sr3p_ASC_sr2,coef_joint_sr3p_ASC_sr2,coef_joint_sr3p_ASC_sr2,coef_joint_sr3p_ASC_sr2 +joint_sr3p_ASC_walk,coef_joint_sr3p_ASC_walk,coef_joint_sr3p_ASC_walk,coef_joint_sr3p_ASC_walk,coef_joint_sr3p_ASC_walk,coef_joint_sr3p_ASC_walk,coef_joint_sr3p_ASC_walk,coef_joint_sr3p_ASC_walk,coef_joint_sr3p_ASC_walk,coef_joint_sr3p_ASC_walk,coef_joint_sr3p_ASC_walk +joint_sr2_ASC_walk,coef_joint_sr2_ASC_walk,coef_joint_sr2_ASC_walk,coef_joint_sr2_ASC_walk,coef_joint_sr2_ASC_walk,coef_joint_sr2_ASC_walk,coef_joint_sr2_ASC_walk,coef_joint_sr2_ASC_walk,coef_joint_sr2_ASC_walk,coef_joint_sr2_ASC_walk,coef_joint_sr2_ASC_walk +joint_walk_transit_ASC_sr2,coef_joint_walk_transit_ASC_sr2,coef_joint_walk_transit_ASC_sr2,coef_joint_walk_transit_ASC_sr2,coef_joint_walk_transit_ASC_sr2,coef_joint_walk_transit_ASC_sr2,coef_joint_walk_transit_ASC_sr2,coef_joint_walk_transit_ASC_sr2,coef_joint_walk_transit_ASC_sr2,coef_joint_walk_transit_ASC_sr2,coef_joint_walk_transit_ASC_sr2 +joint_walk_transit_ASC_sr3p,coef_joint_walk_transit_ASC_sr3p,coef_joint_walk_transit_ASC_sr3p,coef_joint_walk_transit_ASC_sr3p,coef_joint_walk_transit_ASC_sr3p,coef_joint_walk_transit_ASC_sr3p,coef_joint_walk_transit_ASC_sr3p,coef_joint_walk_transit_ASC_sr3p,coef_joint_walk_transit_ASC_sr3p,coef_joint_walk_transit_ASC_sr3p,coef_joint_walk_transit_ASC_sr3p +joint_walk_transit_ASC_walk,coef_joint_walk_transit_ASC_walk,coef_joint_walk_transit_ASC_walk,coef_joint_walk_transit_ASC_walk,coef_joint_walk_transit_ASC_walk,coef_joint_walk_transit_ASC_walk,coef_joint_walk_transit_ASC_walk,coef_joint_walk_transit_ASC_walk,coef_joint_walk_transit_ASC_walk,coef_joint_walk_transit_ASC_walk,coef_joint_walk_transit_ASC_walk +joint_walk_transit_ASC_taxi,coef_joint_walk_transit_ASC_taxi,coef_joint_walk_transit_ASC_taxi,coef_joint_walk_transit_ASC_taxi,coef_joint_walk_transit_ASC_taxi,coef_joint_walk_transit_ASC_taxi,coef_joint_walk_transit_ASC_taxi,coef_joint_walk_transit_ASC_taxi,coef_joint_walk_transit_ASC_taxi,coef_joint_walk_transit_ASC_taxi,coef_joint_walk_transit_ASC_taxi +joint_walk_transit_ASC_tnc_single,coef_joint_walk_transit_ASC_tnc_single,coef_joint_walk_transit_ASC_tnc_single,coef_joint_walk_transit_ASC_tnc_single,coef_joint_walk_transit_ASC_tnc_single,coef_joint_walk_transit_ASC_tnc_single,coef_joint_walk_transit_ASC_tnc_single,coef_joint_walk_transit_ASC_tnc_single,coef_joint_walk_transit_ASC_tnc_single,coef_joint_walk_transit_ASC_tnc_single,coef_joint_walk_transit_ASC_tnc_single +joint_walk_transit_ASC_tnc_shared,coef_joint_walk_transit_ASC_tnc_shared,coef_joint_walk_transit_ASC_tnc_shared,coef_joint_walk_transit_ASC_tnc_shared,coef_joint_walk_transit_ASC_tnc_shared,coef_joint_walk_transit_ASC_tnc_shared,coef_joint_walk_transit_ASC_tnc_shared,coef_joint_walk_transit_ASC_tnc_shared,coef_joint_walk_transit_ASC_tnc_shared,coef_joint_walk_transit_ASC_tnc_shared,coef_joint_walk_transit_ASC_tnc_shared +joint_pnr_ASC_taxi,coef_joint_pnr_ASC_taxi,coef_joint_pnr_ASC_taxi,coef_joint_pnr_ASC_taxi,coef_joint_pnr_ASC_taxi,coef_joint_pnr_ASC_taxi,coef_joint_pnr_ASC_taxi,coef_joint_pnr_ASC_taxi,coef_joint_pnr_ASC_taxi,coef_joint_pnr_ASC_taxi,coef_joint_pnr_ASC_taxi +joint_pnr_ASC_tnc_single,coef_joint_pnr_ASC_tnc_single,coef_joint_pnr_ASC_tnc_single,coef_joint_pnr_ASC_tnc_single,coef_joint_pnr_ASC_tnc_single,coef_joint_pnr_ASC_tnc_single,coef_joint_pnr_ASC_tnc_single,coef_joint_pnr_ASC_tnc_single,coef_joint_pnr_ASC_tnc_single,coef_joint_pnr_ASC_tnc_single,coef_joint_pnr_ASC_tnc_single +joint_pnr_ASC_tnc_shared,coef_joint_pnr_ASC_tnc_shared,coef_joint_pnr_ASC_tnc_shared,coef_joint_pnr_ASC_tnc_shared,coef_joint_pnr_ASC_tnc_shared,coef_joint_pnr_ASC_tnc_shared,coef_joint_pnr_ASC_tnc_shared,coef_joint_pnr_ASC_tnc_shared,coef_joint_pnr_ASC_tnc_shared,coef_joint_pnr_ASC_tnc_shared,coef_joint_pnr_ASC_tnc_shared +joint_knr_ASC_taxi,coef_joint_knr_ASC_taxi,coef_joint_knr_ASC_taxi,coef_joint_knr_ASC_taxi,coef_joint_knr_ASC_taxi,coef_joint_knr_ASC_taxi,coef_joint_knr_ASC_taxi,coef_joint_knr_ASC_taxi,coef_joint_knr_ASC_taxi,coef_joint_knr_ASC_taxi,coef_joint_knr_ASC_taxi +joint_knr_ASC_tnc_single,coef_joint_knr_ASC_tnc_single,coef_joint_knr_ASC_tnc_single,coef_joint_knr_ASC_tnc_single,coef_joint_knr_ASC_tnc_single,coef_joint_knr_ASC_tnc_single,coef_joint_knr_ASC_tnc_single,coef_joint_knr_ASC_tnc_single,coef_joint_knr_ASC_tnc_single,coef_joint_knr_ASC_tnc_single,coef_joint_knr_ASC_tnc_single +joint_knr_ASC_tnc_shared,coef_joint_knr_ASC_tnc_shared,coef_joint_knr_ASC_tnc_shared,coef_joint_knr_ASC_tnc_shared,coef_joint_knr_ASC_tnc_shared,coef_joint_knr_ASC_tnc_shared,coef_joint_knr_ASC_tnc_shared,coef_joint_knr_ASC_tnc_shared,coef_joint_knr_ASC_tnc_shared,coef_joint_knr_ASC_tnc_shared,coef_joint_knr_ASC_tnc_shared +joint_ride_hail_ASC_sr2,coef_joint_ride_hail_ASC_sr2,coef_joint_ride_hail_ASC_sr2,coef_joint_ride_hail_ASC_sr2,coef_joint_ride_hail_ASC_sr2,coef_joint_ride_hail_ASC_sr2,coef_joint_ride_hail_ASC_sr2,coef_joint_ride_hail_ASC_sr2,coef_joint_ride_hail_ASC_sr2,coef_joint_ride_hail_ASC_sr2,coef_joint_ride_hail_ASC_sr2 +joint_ride_hail_ASC_sr3p,coef_joint_ride_hail_ASC_sr3p,coef_joint_ride_hail_ASC_sr3p,coef_joint_ride_hail_ASC_sr3p,coef_joint_ride_hail_ASC_sr3p,coef_joint_ride_hail_ASC_sr3p,coef_joint_ride_hail_ASC_sr3p,coef_joint_ride_hail_ASC_sr3p,coef_joint_ride_hail_ASC_sr3p,coef_joint_ride_hail_ASC_sr3p,coef_joint_ride_hail_ASC_sr3p +joint_ride_hail_ASC_walk,coef_joint_ride_hail_ASC_walk,coef_joint_ride_hail_ASC_walk,coef_joint_ride_hail_ASC_walk,coef_joint_ride_hail_ASC_walk,coef_joint_ride_hail_ASC_walk,coef_joint_ride_hail_ASC_walk,coef_joint_ride_hail_ASC_walk,coef_joint_ride_hail_ASC_walk,coef_joint_ride_hail_ASC_walk,coef_joint_ride_hail_ASC_walk +joint_ride_hail_ASC_taxi,coef_joint_ride_hail_ASC_taxi,coef_joint_ride_hail_ASC_taxi,coef_joint_ride_hail_ASC_taxi,coef_joint_ride_hail_ASC_taxi,coef_joint_ride_hail_ASC_taxi,coef_joint_ride_hail_ASC_taxi,coef_joint_ride_hail_ASC_taxi,coef_joint_ride_hail_ASC_taxi,coef_joint_ride_hail_ASC_taxi,coef_joint_ride_hail_ASC_taxi +joint_ride_hail_ASC_tnc_shared,coef_joint_ride_hail_ASC_tnc_shared,coef_joint_ride_hail_ASC_tnc_shared,coef_joint_ride_hail_ASC_tnc_shared,coef_joint_ride_hail_ASC_tnc_shared,coef_joint_ride_hail_ASC_tnc_shared,coef_joint_ride_hail_ASC_tnc_shared,coef_joint_ride_hail_ASC_tnc_shared,coef_joint_ride_hail_ASC_tnc_shared,coef_joint_ride_hail_ASC_tnc_shared,coef_joint_ride_hail_ASC_tnc_shared +walk_express_penalty,walk_express_penalty,walk_express_penalty,walk_express_penalty,walk_express_penalty,walk_express_penalty,walk_express_penalty,walk_express_penalty,walk_express_penalty,walk_express_penalty,walk_express_penalty +adjust_tnc_shared,adjust_tnc_shared,adjust_tnc_shared,adjust_tnc_shared,adjust_tnc_shared,adjust_tnc_shared,adjust_tnc_shared,adjust_tnc_shared,adjust_tnc_shared,adjust_tnc_shared,adjust_tnc_shared +origin_density_applied,coef_origin_density_applied_work_univ_school,coef_origin_density_applied_work_univ_school,coef_origin_density_applied_work_univ_school,coef_origin_density_applied_escort_shopping_eatout_othmaint_social_othdiscr_atwork,coef_origin_density_applied_escort_shopping_eatout_othmaint_social_othdiscr_atwork,coef_origin_density_applied_escort_shopping_eatout_othmaint_social_othdiscr_atwork,coef_origin_density_applied_escort_shopping_eatout_othmaint_social_othdiscr_atwork,coef_origin_density_applied_escort_shopping_eatout_othmaint_social_othdiscr_atwork,coef_origin_density_applied_escort_shopping_eatout_othmaint_social_othdiscr_atwork,coef_origin_density_applied_escort_shopping_eatout_othmaint_social_othdiscr_atwork +coef_transit_district15,coef_transit_district15_work,coef_transit_district15_univ,coef_transit_district15_school,coef_transit_district15_escort,coef_transit_district15_shopping,coef_transit_district15_eatout,coef_transit_district15_othmaint,coef_transit_district15_social,coef_transit_district15_othdiscr,coef_transit_district15_atwork diff --git a/activitysim/examples/prototype_semcog/configs/trip_mode_choice_coeffs.csv b/activitysim/examples/production_semcog/configs/trip_mode_choice_coeffs.csv old mode 100755 new mode 100644 similarity index 54% rename from activitysim/examples/prototype_semcog/configs/trip_mode_choice_coeffs.csv rename to activitysim/examples/production_semcog/configs/trip_mode_choice_coeffs.csv index 441bd0e4f..dc506f6ee --- a/activitysim/examples/prototype_semcog/configs/trip_mode_choice_coeffs.csv +++ b/activitysim/examples/production_semcog/configs/trip_mode_choice_coeffs.csv @@ -1,4 +1,4 @@ -coefficient_name,work,univ,school,escort,shopping,eatout,othmaint,social,othdiscr,atwork +Expression,work,univ,school,escort,shopping,eatout,othmaint,social,othdiscr,atwork c_ivt,-0.022,-0.0271,-0.0271,-0.0279,-0.0279,-0.0279,-0.0175,-0.0175,-0.0279,-0.0279 c_ivt_pmov,1.0 * c_ivt,1.0 * c_ivt,1.0 * c_ivt,1.0 * c_ivt,1.0 * c_ivt,1.0 * c_ivt,1.0 * c_ivt,1.0 * c_ivt,1.0 * c_ivt,1.0 * c_ivt c_ivt_stcar,0.90 * c_ivt,0.90 * c_ivt,0.90 * c_ivt,0.90 * c_ivt,0.90 * c_ivt,0.90 * c_ivt,0.90 * c_ivt,0.90 * c_ivt,0.90 * c_ivt,0.90 * c_ivt @@ -35,71 +35,41 @@ c_hhsize1_sr,-0.7346,-0.7346,-0.7346,-0.7346,-0.7346,-0.7346,-0.7346,-0.7346,-0. c_hhsize2_sr,0,0,0,0,0,0,0,0,0,0 #free_parking_allowed,1,0,0,0,0,0,0,0,0,0 #indiv tour ASCs,,,,,,,,,, -sov_ASC_sr2,-999,-999,-999,0,-999,-999,-999,-999,-999,-999 -sov_ASC_sr3p,-999,-999,-999,0,-999,-999,-999,-999,-999,-999 -sov_ASC_walk,-1.579278297,-0.329078195,-3,-0.407754765,-1.884354765,-1.129357279,-1.707054765,-1.592757279,-1.335757279,-3.034080783 -sov_ASC_rh,-7,-6.649,-5.6549,0,0,0,0,0,0,-7 +sov_ASC_sr2,-999.0,-999.0,-999.0,0.0,-999.0,-999.0,-999.0,-999.0,-999.0,-999.0 +sov_ASC_sr3p,-999.0,-999.0,-999.0,0.0,-999.0,-999.0,-999.0,-999.0,-999.0,-999.0 +sov_ASC_walk,-1.5792782968324877,-0.3290781949740797,-3.0,-0.40775476464362187,-1.8843547646436225,-1.1293572790428554,-1.7070547646436218,-1.5927572790428557,-1.3357572790428551,-3.0340807834553853 #sr2_ASC_sr2 - reference mode,0,0,0,0,0,0,0,0,0,0 -sr2_ASC_sov,-0.51299105,-1.058942553,-0.293588173,-0.536498222,-0.536498222,-0.849808648,-0.536498222,-0.849808648,-0.849808648,-0.601604001 -sr2_ASC_walk,-0.407385039,0.166984338,-0.173411375,-3.466936859,-1.525836859,-0.739819085,-2.013036859,-1.460119085,-0.693719085,-4.398412986 -sr2_ASC_rh,-7,-6.6897,-7,-7,-7,-7,-7,-7,-7,-7 -sr3p_ASC_sov,-0.229516694,-1.142035901,-1.860536359,-1.111545636,-1.111545636,-1.592880167,-1.111545636,-1.592880167,-1.592880167,-0.915383849 -sr3p_ASC_sr2,-0.333410245,-0.795945688,-1.095643656,-0.656228794,-0.466128794,-0.748226556,-0.683828794,-0.586026556,-1.044626556,-0.75108718 +sr2_ASC_sov,-0.512991050041268,-1.0589425529617411,-0.29358817312793983,-0.5364982216218682,-0.5364982216218682,-0.8498086476948487,-0.5364982216218682,-0.8498086476948487,-0.8498086476948487,-0.6016040006708439 +sr2_ASC_walk,-0.4073850393790288,0.16698433841804375,-0.17341137513290372,-3.4669368585615485,-1.5258368585615474,-0.7398190846487671,-2.013036858561549,-1.4601190846487668,-0.6937190846487672,-4.398412985525359 +sr3p_ASC_sov,-0.2295166944873816,-1.1420359009435297,-1.8605363586423205,-1.1115456358815738,-1.1115456358815738,-1.5928801670390054,-1.1115456358815738,-1.5928801670390054,-1.5928801670390054,-0.9153838488093408 +sr3p_ASC_sr2,-0.3334102448344269,-0.7959456883669828,-1.09564365603906,-0.6562287939398239,-0.4661287939398242,-0.7482265559118922,-0.6838287939398241,-0.5860265559118925,-1.0446265559118924,-0.7510871801661652 #sr3p_ASC_sr3p - reference mode,0,0,0,0,0,0,0,0,0,0 -sr3p_ASC_walk,-0.72844504,0.021931966,-0.70641187,-2.362025557,-1.862425557,-0.146994878,-1.312325557,-0.416994878,-0.630794878,-3.892581674 -sr3p_ASC_rh,-71.9177,-7,-6.6714,-7,-7,-7,-7,-7,-7,-6.026 -walk_ASC_rh,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7 +sr3p_ASC_walk,-0.7284450401939693,0.02193196588591275,-0.7064118703304251,-2.3620255572649405,-1.86242555726494,-0.1469948782710122,-1.31232555726494,-0.41699487827101217,-0.6307948782710123,-3.8925816735328977 bike_ASC_walk,-2.8333,-2.49405068,-3.238666604,-15.5203,-3.0245,-3.699,-2.5706,-14.2384,-2.3577,-5.0532 -bike_ASC_rh,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7 #walktransit_ASC_walktransit - reference mode,0,0,0,0,0,0,0,0,0,0 -walktransit_ASC_sr2,-3.705971533,-4.132166342,-3.186743446,-3.139673944,-3.139673944,-3.696770924,-3.139673944,-3.696770924,-3.696770924,-4 -walktransit_ASC_sr3p,-3.578423306,-5.496253927,-3.595736858,-6.198039835,-6.198039835,-3.455537128,-6.198039835,-3.455537128,-3.455537128,-1.156825048 -walktransit_ASC_walk,2.289791885,0.742780398,-0.458321333,1.976505237,1.976505237,2.544557044,1.976505237,2.544557044,2.544557044,1.038327796 -walk_transit_ASC_rh,-3.7408,-4.2691,-7,-3.1136,-3.1136,-4.7508,-3.1136,-4.7508,-4.7508,-3.8506 -drive_transit_ASC_rh,0.6674,-0.6328,-0.1272,0.687,0.687,3.5701,0.687,3.5701,3.5701,-6.952 -ride_hail_ASC_sr2,-3.9085,-2.5785,-3.0613,-3.3353,-3.3353,-3.301,-3.3353,-3.301,-3.301,-4.2636 -ride_hail_ASC_sr3p,-10.8661,-3.1888,-4.0886,-7,-7,-4.0649,-7,-4.0649,-4.0649,-7 -ride_hail_ASC_walk,1.497,-10.8471,-1.2386,-7,-7,-1.3318,-7,-1.3318,-1.3318,-1.6755 -ride_hail_ASC_walk_transit,-10.8661,-7,-7,-7,-7,-7,-7,-7,-7,-7 -drive_transit_ASC_rh,-4.25,-4.25,-4.25,-4.25,-4.25,-4.25,-4.25,-4.25,-4.25,-4.25 -ride_hail_ASC_sr2,-6.108,-4.3372,-1.5869,-5.6483,-5.6483,-5.9692,-5.6483,-5.9692,-5.9692,-5.2763 -ride_hail_ASC_sr3p,-7,-4.922,-2.5362,-7,-7,-6.7199,-7,-6.7199,-6.7199,-7 -ride_hail_ASC_walk,0.2858,-7,0.245,-7,-7,-3.3603,-7,-3.3603,-3.3603,-2.6103 -ride_hail_ASC_walk_transit,0,0,0,0,0,0,0,0,0,0 -ride_hail_ASC_taxi,-2.385,-1.5994,-0.5869,-3.6629,-3.6629,-2.5543,-3.6629,-2.5543,-2.5543,-1.7764 -ride_hail_ASC_tnc_single,0.735,0.1081,0.3201,0.7879,0.7879,0.8274,0.7879,0.8274,0.8274,1.2143 -ride_hail_ASC_tnc_shared,0,0,0,0,0,0,0,0,0,0 +walktransit_ASC_sr2,-3.7059715334404735,-4.132166342200151,-3.1867434459698383,-3.1396739442261423,-3.1396739442261423,-3.6967709236305577,-3.1396739442261423,-3.6967709236305577,-3.6967709236305577,-4.0 +walktransit_ASC_sr3p,-3.578423306067476,-5.496253926895809,-3.595736857701258,-6.1980398352928665,-6.1980398352928665,-3.4555371281684337,-6.1980398352928665,-3.4555371281684337,-3.4555371281684337,-1.1568250478408622 +walktransit_ASC_walk,2.2897918854586368,0.7427803982258763,-0.4583213330652848,1.976505237003828,1.976505237003828,2.544557043538197,1.976505237003828,2.544557043538197,2.544557043538197,1.0383277958420796 #pnr_ASC_pnr - reference mode,0,0,0,0,0,0,0,0,0,0 #knr_ASC_knr - reference mode,0,0,0,0,0,0,0,0,0,0 #joint tour ASCs,,,,,,,,,, -joint_auto_ASC_rh,0,0,0,0,-7,-7,-7,-7,-7,0 -joint_auto_ASC_rh,0,0,0,0,-7,-7,-7,-7,-7,0 -joint_walk_ASC_rh,0,0,0,0,-3.0362,-3.0362,-3.0362,-3.0362,-3.0362,0 #joint_sr2_ASC_sr2 - reference mode,0,0,0,0,0,0,0,0,0,0 -joint_sr2_ASC_walk,0,0,0,-2.620466384,-2.620466384,-2.620466384,-2.620466384,-2.620466384,-2.620466384,0 +joint_sr2_ASC_walk,0.0,0.0,0.0,-2.620466384339975,-2.620466384339975,-2.620466384339975,-2.620466384339975,-2.620466384339975,-2.620466384339975,0.0 #joint_sr3p_ASC_sr3p - reference mode,0,0,0,0,0,0,0,0,0,0 -joint_sr3p_ASC_sr2,0,0,0,1.576317444,1.576317444,1.576317444,1.576317444,1.576317444,1.576317444,0 -joint_sr3p_ASC_walk,0,0,0,-1.238904557,-1.238904557,-1.238904557,-1.238904557,-1.238904557,-1.238904557,0 -joint_bike_ASC_walk,0,0,0,-3,-3,-3,-3,-3,-3,0 -joint_bike_ASC_rh,0,0,0,0,-12.3057,-12.3057,-12.3057,-12.3057,-12.3057,0 +joint_sr3p_ASC_sr2,0.0,0.0,0.0,1.5763174440858891,1.5763174440858891,1.5763174440858891,1.5763174440858891,1.5763174440858891,1.5763174440858891,0.0 +joint_sr3p_ASC_walk,0.0,0.0,0.0,-1.238904557023363,-1.238904557023363,-1.238904557023363,-1.238904557023363,-1.238904557023363,-1.238904557023363,0.0 +joint_bike_ASC_walk,0.0,0.0,0.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,0.0 #joint_walktransit_ASC_walktransit - reference mode,0,0,0,0,0,0,0,0,0,0 -joint_walktransit_ASC_sr2,0,0,0,-2.312902942,-2.312902942,-2.312902942,-2.312902942,-2.312902942,-2.312902942,0 -joint_walktransit_ASC_sr3p,0,0,0,-3.877768519,-3.877768519,-3.877768519,-3.877768519,-3.877768519,-3.877768519,0 -joint_walktransit_ASC_walk,0,0,0,1.576823424,1.576823424,1.576823424,1.576823424,1.576823424,1.576823424,0 -joint_walk_transit_ASC_rh,0,0,0,0,1.2266,1.2266,1.2266,1.2266,1.2266,0 -joint_drive_transit_ASC_rh,0,0,0,0,4.6138,4.6138,4.6138,4.6138,4.6138,0 -joint_ride_hail_ASC_taxi,0,0,0,0,-7,-7,-7,-7,-7,0 -joint_ride_hail_ASC_tnc_single,0,0,0,0,-4.7339,-4.7339,-4.7339,-4.7339,-4.7339,0 -joint_ride_hail_ASC_tnc_shared,0,0,0,0,0,0,0,0,0,0 +joint_walktransit_ASC_sr2,0.0,0.0,0.0,-2.3129029415955698,-2.3129029415955698,-2.3129029415955698,-2.3129029415955698,-2.3129029415955698,-2.3129029415955698,0.0 +joint_walktransit_ASC_sr3p,0.0,0.0,0.0,-3.8777685193067013,-3.8777685193067013,-3.8777685193067013,-3.8777685193067013,-3.8777685193067013,-3.8777685193067013,0.0 +joint_walktransit_ASC_walk,0.0,0.0,0.0,1.5768234235430478,1.5768234235430478,1.5768234235430478,1.5768234235430478,1.5768234235430478,1.5768234235430478,0.0 #joint_pnr_ASC_pnr - reference mode,0,0,0,0,0,0,0,0,0,0 #joint_knr_ASC_knr - reference mode,0,0,0,0,0,0,0,0,0,0 #,,,,,,,,,, -schoolbus_ASC_sr2,0,0,-3.289069276,0,0,0,0,0,0,0 -schoolbus_ASC_sr3p,0,0,-3.217740129,0,0,0,0,0,0,0 -schoolbus_ASC_walk,0,0,-2.277998613,0,0,0,0,0,0,0 +schoolbus_ASC_sr2,0.0,0.0,-3.2890692762180707,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +schoolbus_ASC_sr3p,0.0,0.0,-3.217740128665061,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +schoolbus_ASC_walk,0.0,0.0,-2.277998613273528,0.0,0.0,0.0,0.0,0.0,0.0,0.0 #c_walk_express_penalty,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt local_ASC,0,0,0,0,0,0,0,0,0,0 premium_ASC,0,0,0,0,0,0,0,0,0,0 mix_ASC,0,0,0,0,0,0,0,0,0,0 -c_walk_express_penalty,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt,10.00 * c_ivt -adjust_tnc_shared,30 * c_ivt,30 * c_ivt,30 * c_ivt,30 * c_ivt,30 * c_ivt,30 * c_ivt,30 * c_ivt,30 * c_ivt,30 * c_ivt,30 * c_ivt diff --git a/activitysim/examples/prototype_semcog/configs/trip_purpose.yaml b/activitysim/examples/production_semcog/configs/trip_purpose.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/trip_purpose.yaml rename to activitysim/examples/production_semcog/configs/trip_purpose.yaml diff --git a/activitysim/examples/prototype_semcog/configs/trip_purpose_and_destination.yaml b/activitysim/examples/production_semcog/configs/trip_purpose_and_destination.yaml old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/trip_purpose_and_destination.yaml rename to activitysim/examples/production_semcog/configs/trip_purpose_and_destination.yaml diff --git a/activitysim/examples/prototype_semcog/configs/trip_purpose_annotate_trips_preprocessor.csv b/activitysim/examples/production_semcog/configs/trip_purpose_annotate_trips_preprocessor.csv old mode 100755 new mode 100644 similarity index 100% rename from activitysim/examples/prototype_semcog/configs/trip_purpose_annotate_trips_preprocessor.csv rename to activitysim/examples/production_semcog/configs/trip_purpose_annotate_trips_preprocessor.csv diff --git a/activitysim/examples/prototype_semcog/configs/trip_purpose_probs.csv b/activitysim/examples/production_semcog/configs/trip_purpose_probs.csv old mode 100755 new mode 100644 similarity index 79% rename from activitysim/examples/prototype_semcog/configs/trip_purpose_probs.csv rename to activitysim/examples/production_semcog/configs/trip_purpose_probs.csv index 3cd1aaa27..ad92cf215 --- a/activitysim/examples/prototype_semcog/configs/trip_purpose_probs.csv +++ b/activitysim/examples/production_semcog/configs/trip_purpose_probs.csv @@ -1,17 +1,17 @@ primary_purpose,outbound,depart_range_start,depart_range_end,person_type,work,univ,school,escort,shopping,othmaint,eatout,social,othdiscr -work,TRUE,1,18,PTYPE_FULL,0.198,0.004,0,0.466,0.083,0.086,0.093,0.004,0.066 -work,TRUE,1,18,PTYPE_PART,0.094,0,0,0.657,0.076,0.07,0.067,0.009,0.027 +work,TRUE,1,18,PTYPE_FULL,0.02,0.004,0,0.566,0.083,0.164,0.093,0.004,0.066 +work,TRUE,1,18,PTYPE_PART,0.024,0,0,0.657,0.076,0.14,0.067,0.009,0.027 work,TRUE,1,18,PTYPE_UNIVERSITY,0.067,0.081,0,0.433,0.005,0.038,0.153,0.108,0.115 -work,TRUE,19,48,PTYPE_FULL,0.278,0.008,0,0.172,0.18,0.193,0.107,0.016,0.046 -work,TRUE,19,48,PTYPE_PART,0.442,0,0,0.089,0.105,0.175,0.102,0.03,0.057 +work,TRUE,19,48,PTYPE_FULL,0.0204,0.008,0,0.272,0.18,0.3506,0.107,0.016,0.046 +work,TRUE,19,48,PTYPE_PART,0.05,0,0,0.289,0.105,0.367,0.102,0.03,0.057 work,TRUE,19,48,PTYPE_UNIVERSITY,0.049,0.086,0,0.392,0.159,0.157,0.069,0.073,0.015 work,TRUE,1,48,PTYPE_DRIVING,0,0,0,0,0.2,0.2,0.2,0.2,0.2 univ,TRUE,1,48,PTYPE_FULL,0.526,0.178,0,0.016,0.16,0.035,0.028,0.057,0 -univ,TRUE,1,48,PTYPE_PART,0.059,0.941,0,0,0,0,0,0,0 -univ,TRUE,1,48,PTYPE_UNIVERSITY,0.109,0.034,0,0.382,0.136,0.147,0.094,0.048,0.05 -school,TRUE,1,48,PTYPE_DRIVING,0,0,0,0.548,0.015,0.1,0.206,0.073,0.058 -school,TRUE,1,48,PTYPE_SCHOOL,0,0,0,0.53,0.025,0.084,0.112,0.048,0.201 -school,TRUE,1,48,PTYPE_PRESCHOOL,0,0,0,0.772,0.007,0.086,0.023,0.071,0.041 +univ,TRUE,1,48,PTYPE_PART,0.059,0.131,0,0.4,0.2,0.21,0,0,0 +univ,TRUE,1,48,PTYPE_UNIVERSITY,0.166729,0.139607,0,0.118491,0.118491,0.118491,0.11273,0.11273,0.11273 +school,TRUE,1,48,PTYPE_DRIVING,0,0,0,0.508,0.055,0.1,0.206,0.073,0.058 +school,TRUE,1,48,PTYPE_SCHOOL,0,0,0,0.43,0.125,0.084,0.112,0.048,0.101 +school,TRUE,1,48,PTYPE_PRESCHOOL,0,0,0,0.722,0.057,0.086,0.023,0.071,0.041 escort,TRUE,1,48,PTYPE_FULL,0,0,0,0.55,0.153,0.084,0.104,0.049,0.06 escort,TRUE,1,48,PTYPE_PART,0,0,0,0.449,0.194,0.07,0.167,0.059,0.061 escort,TRUE,1,48,PTYPE_UNIVERSITY,0,0,0,0.509,0.193,0.158,0.048,0.058,0.034 @@ -60,24 +60,23 @@ othdiscr,TRUE,1,48,PTYPE_RETIRED,0,0,0,0.225,0.056,0.389,0.16,0.091,0.079 othdiscr,TRUE,1,48,PTYPE_DRIVING,0,0,0,0.311,0.126,0.051,0.018,0.142,0.352 othdiscr,TRUE,1,48,PTYPE_SCHOOL,0,0,0,0.222,0.112,0.172,0.173,0.141,0.18 othdiscr,TRUE,1,48,PTYPE_PRESCHOOL,0,0,0,0.271,0.108,0.393,0.146,0.043,0.039 -atwork,TRUE,1,48,PTYPE_FULL,0.206,0,0,0.122,0.166,0.247,0.241,0.004,0.014 -atwork,TRUE,1,48,PTYPE_PART,0.206,0,0,0.122,0.166,0.247,0.241,0.004,0.014 -atwork,TRUE,1,48,PTYPE_UNIVERSITY,0.206,0,0,0.122,0.166,0.247,0.241,0.004,0.014 -atwork,TRUE,1,48,PTYPE_DRIVING,0.206,0,0,0.122,0.166,0.247,0.241,0.004,0.014 -#,,,,,,,,,,,,, -work,FALSE,1,30,PTYPE_FULL,0.175,0,0,0.14,0.27,0.162,0.134,0.05,0.069 -work,FALSE,1,30,PTYPE_PART,0.097,0,0,0.252,0.211,0.192,0.159,0.089,0 -work,FALSE,1,30,PTYPE_UNIVERSITY,0.134,0,0,0.329,0.114,0.212,0.169,0.042,0 -work,FALSE,31,48,PTYPE_FULL,0.151,0.011,0,0.201,0.28,0.127,0.103,0.035,0.092 -work,FALSE,31,48,PTYPE_PART,0.11,0,0,0.243,0.281,0.13,0.119,0.036,0.081 -work,FALSE,31,48,PTYPE_UNIVERSITY,0.058,0.127,0,0.224,0.269,0.079,0.072,0.108,0.063 +atwork,TRUE,1,48,PTYPE_FULL,0,0,0,0.172,0.166,0.403,0.241,0.004,0.014 +atwork,TRUE,1,48,PTYPE_PART,0,0,0,0.172,0.166,0.403,0.241,0.004,0.014 +atwork,TRUE,1,48,PTYPE_UNIVERSITY,0,0,0,0.172,0.166,0.403,0.241,0.004,0.014 +atwork,TRUE,1,48,PTYPE_DRIVING,0,0,0,0.172,0.166,0.403,0.241,0.004,0.014 +work,FALSE,1,30,PTYPE_FULL,0.02,0,0,0.24,0.27,0.217,0.134,0.05,0.069 +work,FALSE,1,30,PTYPE_PART,0.03,0,0,0.252,0.211,0.192,0.226,0.089,0 +work,FALSE,1,30,PTYPE_UNIVERSITY,0.02,0,0,0.329,0.114,0.212,0.283,0.042,0 +work,FALSE,31,48,PTYPE_FULL,0.02,0.011,0,0.301,0.28,0.127,0.134,0.035,0.092 +work,FALSE,31,48,PTYPE_PART,0.02,0,0,0.243,0.281,0.22,0.119,0.036,0.081 +work,FALSE,31,48,PTYPE_UNIVERSITY,0.03,0.127,0,0.224,0.269,0.107,0.072,0.108,0.063 work,FALSE,1,48,PTYPE_DRIVING,0,0,0,0,0.2,0.2,0.2,0.2,0.2 univ,FALSE,1,48,PTYPE_FULL,0.352,0.032,0,0.032,0.146,0.114,0.177,0.028,0.119 univ,FALSE,1,48,PTYPE_PART,0,0,0,0.822,0.178,0,0,0,0 -univ,FALSE,1,48,PTYPE_UNIVERSITY,0.054,0.025,0,0.194,0.209,0.179,0.159,0.067,0.113 -school,FALSE,1,48,PTYPE_DRIVING,0,0,0,0.301,0.117,0.098,0.169,0.186,0.129 -school,FALSE,1,48,PTYPE_SCHOOL,0,0,0,0.166,0.158,0.147,0.122,0.133,0.274 -school,FALSE,1,48,PTYPE_PRESCHOOL,0,0,0,0.38,0.148,0.089,0.146,0.102,0.135 +univ,FALSE,1,48,PTYPE_UNIVERSITY,0.044243,0.388076,0,0.068781,0.068781,0.068781,0.120446,0.120446,0.120446 +school,FALSE,1,48,PTYPE_DRIVING,0,0,0,0.301,0.183,0.098,0.169,0.086,0.129 +school,FALSE,1,48,PTYPE_SCHOOL,0,0,0,0.166,0.064,0.147,0.122,0.103,0.124 +school,FALSE,1,48,PTYPE_PRESCHOOL,0,0,0,0.38,0.456,0.089,0.146,0.102,0.105 escort,FALSE,1,48,PTYPE_FULL,0,0,0,0.343,0.235,0.114,0.222,0.039,0.047 escort,FALSE,1,48,PTYPE_PART,0,0,0,0.24,0.298,0.128,0.157,0.045,0.132 escort,FALSE,1,48,PTYPE_UNIVERSITY,0,0,0,0.195,0.319,0.287,0.02,0.027,0.152 @@ -126,7 +125,7 @@ othdiscr,FALSE,1,48,PTYPE_RETIRED,0,0,0,0.111,0.284,0.186,0.197,0.111,0.111 othdiscr,FALSE,1,48,PTYPE_DRIVING,0,0,0,0.277,0.304,0.057,0.205,0.157,0 othdiscr,FALSE,1,48,PTYPE_SCHOOL,0,0,0,0.114,0.204,0.148,0.291,0.089,0.154 othdiscr,FALSE,1,48,PTYPE_PRESCHOOL,0,0,0,0.335,0.133,0.111,0.282,0.052,0.087 -atwork,FALSE,1,48,PTYPE_FULL,0.189,0,0,0.067,0.163,0.149,0.395,0.019,0.018 -atwork,FALSE,1,48,PTYPE_PART,0.189,0,0,0.067,0.163,0.149,0.395,0.019,0.018 -atwork,FALSE,1,48,PTYPE_UNIVERSITY,0.189,0,0,0.067,0.163,0.149,0.395,0.019,0.018 -atwork,FALSE,1,48,PTYPE_DRIVING,0.189,0,0,0.067,0.163,0.149,0.395,0.019,0.018 +atwork,FALSE,1,48,PTYPE_FULL,0,0,0,0.117,0.163,0.288,0.395,0.019,0.018 +atwork,FALSE,1,48,PTYPE_PART,0,0,0,0.117,0.163,0.288,0.395,0.019,0.018 +atwork,FALSE,1,48,PTYPE_UNIVERSITY,0,0,0,0.117,0.163,0.288,0.395,0.019,0.018 +atwork,FALSE,1,48,PTYPE_DRIVING,0,0,0,0.117,0.163,0.288,0.395,0.019,0.018 diff --git a/activitysim/examples/prototype_semcog/configs/trip_scheduling.yaml b/activitysim/examples/production_semcog/configs/trip_scheduling.yaml old mode 100755 new mode 100644 similarity index 91% rename from activitysim/examples/prototype_semcog/configs/trip_scheduling.yaml rename to activitysim/examples/production_semcog/configs/trip_scheduling.yaml index a006e7436..3582e2546 --- a/activitysim/examples/prototype_semcog/configs/trip_scheduling.yaml +++ b/activitysim/examples/production_semcog/configs/trip_scheduling.yaml @@ -3,7 +3,7 @@ # e.g. depart_alt_base = 5 means first column (column 0) represents period 5 DEPART_ALT_BASE: 1 -MAX_ITERATIONS: 100 +MAX_ITERATIONS: 50 #FAILFIX: drop_and_cleanup FAILFIX: choose_most_initial diff --git a/activitysim/examples/prototype_semcog/configs/trip_scheduling_probs.csv b/activitysim/examples/production_semcog/configs/trip_scheduling_probs.csv old mode 100755 new mode 100644 similarity index 87% rename from activitysim/examples/prototype_semcog/configs/trip_scheduling_probs.csv rename to activitysim/examples/production_semcog/configs/trip_scheduling_probs.csv index 5566771bb..56db1fde2 --- a/activitysim/examples/prototype_semcog/configs/trip_scheduling_probs.csv +++ b/activitysim/examples/production_semcog/configs/trip_scheduling_probs.csv @@ -1,196 +1,196 @@ primary_purpose,outbound,tour_hour,trip_num,HR1,HR2,HR3,HR4,HR5,HR6,HR7,HR8,HR9,HR10,HR11,HR12,HR13,HR14,HR15,HR16,HR17,HR18,HR19,HR20,HR21,HR22,HR23,HR24,HR25,HR26,HR27,HR28,HR29,HR30,HR31,HR32,HR33,HR34,HR35,HR36,HR37,HR38,HR39,HR40,HR41,HR42,HR43,HR44,HR45,HR46,HR47,HR48 -work,TRUE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,2,2,0.0,0.19616890254702915,0.1912603437640753,0.1863517849811215,0.4262189687077741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,3,2,0.0,0.0,0.13526428093370998,0.2025527289681607,0.2116401961671019,0.22072766336604313,0.22981513056498432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,4,2,0.0,0.0,0.0,0.10624548634172579,0.06858020640766692,0.07494014307275387,0.09267525115710235,0.10606474404897116,0.1918236992709937,0.15106126653267485,0.110298833794356,0.06953640105603714,0.028773968317718293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,4,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22716729050184845,0.19906390795361323,0.17096052540537807,0.14285714285714285,0.11475376030890767,0.08665037776067248,0.05854699521243728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,4,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,5,2,0.0,0.0,0.0,0.0,0.15999026397867083,0.41410713463674304,0.055832578055926896,0.040168515066300294,0.20015956850202415,0.006335879498063484,0.01480562976546793,0.01453216844249737,0.014258707119526811,0.01398524579655625,0.013711784473585691,0.013438323150615133,0.013164861827644574,0.012891400504674013,0.012617939181703454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,5,3,0.0,0.0,0.0,0.0,0.0,0.2960318381636424,0.18770660336620018,0.07938136856875798,0.17208718615671914,0.2647930037446804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,5,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,6,2,0.0,0.0,0.0,0.0,0.0,0.12224120087303571,0.22809729698794834,0.09608214694650757,0.03337112634266549,0.1442975739035269,0.12097020302377237,0.09764283214401782,0.07431546126426329,0.050988090384508744,0.027660719504754207,0.004333348624999673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,6,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15489803953021786,0.20501318275937805,0.1288769479209746,0.08542197111921263,0.04196699431745064,0.04004799367837136,0.03812899303929208,0.0362099924002128,0.03429099176113352,0.032658235486101396,0.03102547921106928,0.029392722936037164,0.027759966661005046,0.026127210385972932,0.024494454110940818,0.022861697835908697,0.021228941560876582,0.019596185285844465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,6,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.28222820679134347,0.40956635054617785,0.10518629545193542,0.07616442898471769,0.028688160397088297,0.01349977346443764,0.0030076309291625003,0.005086428049296891,0.007165225169431283,0.005651107496144739,0.0041369898228581945,0.0026228721495716494,0.001108754476285105,0.002827557866912015,0.004546361257538925,0.0062651646481658345,0.007983968038792744,0.009702771429419655,0.011421574820046564,0.013140378210673475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5662020326570962,0.0829252513512282,0.02270136213085974,0.10027915560668658,0.07166261551311282,0.02396825718723803,0.0807950970910796,0.01253457465595145,0.010951826691084117,0.009369078726216782,0.007786330761349448,0.006203582796482115,0.0046208348316147795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02479370179648419,0.023911175228094435,0.02302864865970468,0.022146122091314925,0.021263595522925165,0.02038106895453541,0.1256207894903588,0.2308605100261822,0.18815803082302965,0.14545555161987705,0.1027530724167245,0.06005059321357193,0.011577140157197177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.32491993258718205,0.546118224059595,0.04248271653008232,0.018161788542545295,0.006166107347180939,0.005272527272679438,0.011031180666506293,0.008344611890977113,0.01719708341660369,0.005387532849848245,0.0046137333596562415,0.003839933869464238,0.0030661343792722337,0.0021548758692263607,0.0012436173591804877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020134085800894805,0.5003069846643431,0.24658385431747623,0.04223591056508909,0.0036251975049575625,0.002183345739664828,0.062132308004915975,0.01113260029288944,0.007017755676667859,0.0029029110604462797,0.02491296268540767,0.013511740308610111,0.0179567123205959,0.021106781126212292,0.02425684993182869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22868690065941794,0.2809551284043939,0.2038706596380529,0.044818807125476944,0.02656440961123354,0.008310012096990137,0.007598018781998798,0.006886025467007459,0.0061740321520161205,0.005462038837024782,0.004750045522033443,0.006015643699641722,0.04004330870782533,0.07407097371600894,0.04328832309896232,0.012505672481915696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.31451698368414766,0.5667783167860904,0.05318638817697626,0.02427536894218004,0.0033156505909809914,0.0059471857919482065,0.003074530287229302,0.002413031647709681,0.0010433570648508415,0.006944525596215978,0.001968495501046467,0.002834713893690317,0.003700932286334167,0.004567150678978017,0.005433369071621867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04369972760806578,0.46341105781145997,0.30629255403700983,0.012157012617118294,0.028527239297515855,0.01998701265434361,0.022452536388923097,0.02134912141214318,0.02024570643536326,0.019142291458583347,0.01803887648180343,0.020035723462607083,0.004661140335063202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12959034266384364,0.07573706793565689,0.12630694517834132,0.10193091533770805,0.07755488549707479,0.017581890436769703,0.044120691116528304,0.03572820372887919,0.027335716341230085,0.01894322895358098,0.01055074156593187,0.12317159750192305,0.0968270943747169,0.07048259124751073,0.044138088120304564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4750999982096916,0.4103592448802625,0.02381310899274124,0.03648546055115258,0.01537590150263418,0.0034289390696665024,0.0029670326385365445,0.003541137291142498,0.011730627409526895,0.006095101328719276,0.0004595752479116555,0.008642018004098922,0.0020018548739154924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15937985982818456,0.23870718007387448,0.22728211149370622,0.07919844716191997,0.02485252722919029,0.01955147336963145,0.0679261116589369,0.03934329427210768,0.01076047688527845,0.024479920865903157,0.03819936484652786,0.0344531307014842,0.021340119210377123,0.008227107719270035,0.004841994134292561,0.0014568805493150876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,10,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005850328977818126,0.1545224666433375,0.08579589007631072,0.017838139114488984,0.007614551106324986,0.007782446397270154,0.09946505490142857,0.09377151199306068,0.0880779690846928,0.08238442617632491,0.07669088326795703,0.07099734035958916,0.06530379745122127,0.059610254542853375,0.0539167116344855,0.028098313302440583,0.002279914970395667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4074839999598577,0.3559059547661157,0.05021913673368889,0.05857166553991151,0.030867719870309857,0.028607767917931955,0.026347815965554047,0.006305288151960561,0.020837274289821066,0.002875486226642621,0.004133836931347089,0.0032647075234941455,0.0023955781156412025,0.0015264487077882593,0.0006573192999353159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04051504492356487,0.24730720105216822,0.13848438181527783,0.09566599274143622,0.06263137297549652,0.029596753209556802,0.05092330054790429,0.11700388805324703,0.07015018673236098,0.023296485411474922,0.11280131539827719,0.011624077139235103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011593929151261746,0.05363928948706408,0.1349853685209247,0.08299369070289228,0.08382768462405608,0.08466167854521989,0.08549567246638369,0.0863296663875475,0.0871636603087113,0.04795868846816313,0.04536520903840091,0.04277172960863868,0.04692148691944203,0.05107124423024537,0.05522100154104872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4365426782423622,0.43198365617750745,0.0261794753500277,0.03053589079964702,0.0246919917303142,0.005368379473014184,0.0047543889154337705,0.018124120356938188,0.009229863487035226,0.0021321137586057656,0.0031112502876045017,0.004090386816603238,0.00244873047383656,0.0008070741310698816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6350864078584526,0.06123308478513485,0.08951660307227781,0.027687941139672278,0.07912295782804951,0.04368810079609289,0.008253243764136253,0.0029601920790755,0.016106790541441693,0.018323399796897625,0.01211489271188888,0.005906385626880135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7147058727714188,0.056965180889923306,0.005170576210528221,0.048087891309270506,0.0454281635371025,0.0427684357649345,0.0033718414594285768,0.005511096739478344,0.00765035201952811,0.009789607299577879,0.011928862579627645,0.01406811785967741,0.01620737313972718,0.018346628419776943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3762305344545604,0.33324298417856335,0.15739062137317655,0.05872112724331652,0.013811929193242374,0.02373725792786794,0.00829742824508428,0.007436159989002097,0.006574891732919913,0.005713623476837729,0.004852355220755546,0.0039910869646733625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15570646394633422,0.10437483057986263,0.0337043599014564,0.03022449068562711,0.026744621469797825,0.019586353448754364,0.012428085427710902,0.02722501254411536,0.018112042099388766,0.050200944059389324,0.08228984601938989,0.11437874797939043,0.14646764993939101,0.17855655189939157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04321997325525679,0.12699411958746928,0.21076826591968179,0.15396932547469278,0.0971703850297038,0.1550161052542998,0.21286182547889576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5024139839481606,0.24865344765417427,0.1185268863165446,0.02660733345094947,0.01209748815123635,0.029592001110509893,0.0017001502343640493,0.0040472192639807725,0.006394288293597495,0.008741357323214217,0.01557360896492558,0.01087236255393574,0.014779872734406854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1705879967803675,0.3311993121952588,0.0043678755041653234,0.12178159189018452,0.040311326159123126,0.041336176898960866,0.042361027638798614,0.03940114862066425,0.0364412696025299,0.03348139058439553,0.03052151156626118,0.027561632548126817,0.02460175352999246,0.021641874511858103,0.018681995493723746,0.015722116475589392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05243658878277345,0.09362853643979367,0.13482048409681388,0.12182110318285562,0.10472017968183722,0.11208941859069495,0.11945865749955266,0.12682789640841038,0.13419713531726812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15654342339667437,0.2473267590311209,0.21600406985829462,0.06772267306305987,0.04001271600482761,0.012302758946595351,0.014420843403720827,0.02599167935552765,0.03756251530733447,0.0491333512591413,0.06070418721094812,0.07227502316275494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05431814543810985,0.05431814543810985,0.2488565365085628,0.10659057348406278,0.10659057348406278,0.4293260256470919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4795115535415878,0.2436440562850386,0.27684439017337364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4036976191207649,0.20319357819155595,0.23064224448695722,0.15514027573351888,0.007326282467203054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11000502582816188,0.6193293805842582,0.1552334920992382,0.11543210148834174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3604788608023161,0.3164095124760744,0.1969515415552321,0.1261600851663773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04195484755554874,0.13877630966777013,0.043666793275896655,0.06596246345697832,0.07718687798509487,0.08841129251321142,0.09963570704132796,0.11086012156944453,0.12208453609756108,0.13330895062567763,0.07048701694572214,0.007665083265766651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05021301189410546,0.86544036333383,0.034133612877959185,0.05021301189410546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5050652876859107,0.08545987282590052,0.3420104369105114,0.038518447293482146,0.028945955284195295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06206457656430337,0.5167116081987501,0.054241874415559325,0.0736617037903961,0.12232731360712903,0.17099292342386196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5414937161641273,0.3012575085103076,0.061021300856487735,0.09622747446907734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2646825179338819,0.21166926155288057,0.4453083134781877,0.016469525009917125,0.06187038202513268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0210605378318601,0.33333333333333337,0.6456061288348065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5262214262206814,0.10032909163133896,0.09064426187469456,0.12490459445334283,0.08876906819666179,0.05263354193998076,0.016498015683299727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18771665489316094,0.17276348421448828,0.15781031353581557,0.14285714285714288,0.12790397217847016,0.11295080149979747,0.09799763082112478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25951400059931257,0.3333333333333333,0.4071526660673541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1651659688066774,0.16011972026041038,0.2643207459282033,0.3685217715959963,0.041871793408712686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34936859839914003,0.3273001937917093,0.05831523682414128,0.10777706926971689,0.1572389017152925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19705932668122764,0.18861750179351924,0.14277961210699544,0.06949633986095198,0.15718118647275253,0.24486603308455307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18801206096342368,0.5561703368333095,0.07081643293710171,0.0794576332101128,0.1055435360560522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37671455123512704,0.3333333333333333,0.2899521154315396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28451263879992567,0.2635245218466358,0.24253640489334585,0.20942643446009263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6466593492894579,0.12743786391330073,0.22590278679724132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07916386599146687,0.6851444586560649,0.056660282210146094,0.09805653755865254,0.08097485558366967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28648967910010703,0.5188360103192766,0.19467431058061632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.43666788521441774,0.09850889544568947,0.46482321933989285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5439546968334651,0.33333333333333326,0.1227119698332015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2797158552265875,0.7202841447734125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21793494413140552,0.20326295336507316,0.19809849376645677,0.19293403416784044,0.18776957456922405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -work,TRUE,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -work,TRUE,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -work,TRUE,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -work,TRUE,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -work,TRUE,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -work,TRUE,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -work,TRUE,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -work,TRUE,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -work,TRUE,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -work,TRUE,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -work,TRUE,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -work,TRUE,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -work,TRUE,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -work,TRUE,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -work,TRUE,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -work,TRUE,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -work,TRUE,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -work,TRUE,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -work,TRUE,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -work,TRUE,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -work,TRUE,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -work,TRUE,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -work,TRUE,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -work,TRUE,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -work,TRUE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -work,TRUE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -work,TRUE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +work,True,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,2,2,0.0,0.19616890254702915,0.1912603437640753,0.1863517849811215,0.4262189687077741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,3,2,0.0,0.0,0.13526428093370998,0.2025527289681607,0.2116401961671019,0.22072766336604313,0.22981513056498432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,4,2,0.0,0.0,0.0,0.10624548634172579,0.06858020640766692,0.07494014307275387,0.09267525115710235,0.10606474404897116,0.1918236992709937,0.15106126653267485,0.110298833794356,0.06953640105603714,0.028773968317718293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,4,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22716729050184845,0.19906390795361323,0.17096052540537807,0.14285714285714285,0.11475376030890767,0.08665037776067248,0.05854699521243728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,4,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,5,2,0.0,0.0,0.0,0.0,0.15999026397867083,0.41410713463674304,0.055832578055926896,0.040168515066300294,0.20015956850202415,0.006335879498063484,0.01480562976546793,0.01453216844249737,0.014258707119526811,0.01398524579655625,0.013711784473585691,0.013438323150615133,0.013164861827644574,0.012891400504674013,0.012617939181703454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,5,3,0.0,0.0,0.0,0.0,0.0,0.2960318381636424,0.18770660336620018,0.07938136856875798,0.17208718615671914,0.2647930037446804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,5,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,6,2,0.0,0.0,0.0,0.0,0.0,0.12224120087303571,0.22809729698794834,0.09608214694650757,0.03337112634266549,0.1442975739035269,0.12097020302377237,0.09764283214401782,0.07431546126426329,0.050988090384508744,0.027660719504754207,0.004333348624999673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,6,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15489803953021786,0.20501318275937805,0.1288769479209746,0.08542197111921263,0.04196699431745064,0.04004799367837136,0.03812899303929208,0.0362099924002128,0.03429099176113352,0.032658235486101396,0.03102547921106928,0.029392722936037164,0.027759966661005046,0.026127210385972932,0.024494454110940818,0.022861697835908697,0.021228941560876582,0.019596185285844465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,6,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.28222820679134347,0.40956635054617785,0.10518629545193542,0.07616442898471769,0.028688160397088297,0.01349977346443764,0.0030076309291625003,0.005086428049296891,0.007165225169431283,0.005651107496144739,0.0041369898228581945,0.0026228721495716494,0.001108754476285105,0.002827557866912015,0.004546361257538925,0.0062651646481658345,0.007983968038792744,0.009702771429419655,0.011421574820046564,0.013140378210673475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5662020326570962,0.0829252513512282,0.02270136213085974,0.10027915560668658,0.07166261551311282,0.02396825718723803,0.0807950970910796,0.01253457465595145,0.010951826691084117,0.009369078726216782,0.007786330761349448,0.006203582796482115,0.0046208348316147795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02479370179648419,0.023911175228094435,0.02302864865970468,0.022146122091314925,0.021263595522925165,0.02038106895453541,0.1256207894903588,0.2308605100261822,0.18815803082302965,0.14545555161987705,0.1027530724167245,0.06005059321357193,0.011577140157197177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.32491993258718205,0.546118224059595,0.04248271653008232,0.018161788542545295,0.006166107347180939,0.005272527272679438,0.011031180666506293,0.008344611890977113,0.01719708341660369,0.005387532849848245,0.0046137333596562415,0.003839933869464238,0.0030661343792722337,0.0021548758692263607,0.0012436173591804877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020134085800894805,0.5003069846643431,0.24658385431747623,0.04223591056508909,0.0036251975049575625,0.002183345739664828,0.062132308004915975,0.01113260029288944,0.007017755676667859,0.0029029110604462797,0.02491296268540767,0.013511740308610111,0.0179567123205959,0.021106781126212292,0.02425684993182869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22868690065941794,0.2809551284043939,0.2038706596380529,0.044818807125476944,0.02656440961123354,0.008310012096990137,0.007598018781998798,0.006886025467007459,0.0061740321520161205,0.005462038837024782,0.004750045522033443,0.006015643699641722,0.04004330870782533,0.07407097371600894,0.04328832309896232,0.012505672481915696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.31451698368414766,0.5667783167860904,0.05318638817697626,0.02427536894218004,0.0033156505909809914,0.0059471857919482065,0.003074530287229302,0.002413031647709681,0.0010433570648508415,0.006944525596215978,0.001968495501046467,0.002834713893690317,0.003700932286334167,0.004567150678978017,0.005433369071621867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04369972760806578,0.46341105781145997,0.30629255403700983,0.012157012617118294,0.028527239297515855,0.01998701265434361,0.022452536388923097,0.02134912141214318,0.02024570643536326,0.019142291458583347,0.01803887648180343,0.020035723462607083,0.004661140335063202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12959034266384364,0.07573706793565689,0.12630694517834132,0.10193091533770805,0.07755488549707479,0.017581890436769703,0.044120691116528304,0.03572820372887919,0.027335716341230085,0.01894322895358098,0.01055074156593187,0.12317159750192305,0.0968270943747169,0.07048259124751073,0.044138088120304564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4750999982096916,0.4103592448802625,0.02381310899274124,0.03648546055115258,0.01537590150263418,0.0034289390696665024,0.0029670326385365445,0.003541137291142498,0.011730627409526895,0.006095101328719276,0.0004595752479116555,0.008642018004098922,0.0020018548739154924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15937985982818456,0.23870718007387448,0.22728211149370622,0.07919844716191997,0.02485252722919029,0.01955147336963145,0.0679261116589369,0.03934329427210768,0.01076047688527845,0.024479920865903157,0.03819936484652786,0.0344531307014842,0.021340119210377123,0.008227107719270035,0.004841994134292561,0.0014568805493150876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,10,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005850328977818126,0.1545224666433375,0.08579589007631072,0.017838139114488984,0.007614551106324986,0.007782446397270154,0.09946505490142857,0.09377151199306068,0.0880779690846928,0.08238442617632491,0.07669088326795703,0.07099734035958916,0.06530379745122127,0.059610254542853375,0.0539167116344855,0.028098313302440583,0.002279914970395667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4074839999598577,0.3559059547661157,0.05021913673368889,0.05857166553991151,0.030867719870309857,0.028607767917931955,0.026347815965554047,0.006305288151960561,0.020837274289821066,0.002875486226642621,0.004133836931347089,0.0032647075234941455,0.0023955781156412025,0.0015264487077882593,0.0006573192999353159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04051504492356487,0.24730720105216822,0.13848438181527783,0.09566599274143622,0.06263137297549652,0.029596753209556802,0.05092330054790429,0.11700388805324703,0.07015018673236098,0.023296485411474922,0.11280131539827719,0.011624077139235103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011593929151261746,0.05363928948706408,0.1349853685209247,0.08299369070289228,0.08382768462405608,0.08466167854521989,0.08549567246638369,0.0863296663875475,0.0871636603087113,0.04795868846816313,0.04536520903840091,0.04277172960863868,0.04692148691944203,0.05107124423024537,0.05522100154104872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4365426782423622,0.43198365617750745,0.0261794753500277,0.03053589079964702,0.0246919917303142,0.005368379473014184,0.0047543889154337705,0.018124120356938188,0.009229863487035226,0.0021321137586057656,0.0031112502876045017,0.004090386816603238,0.00244873047383656,0.0008070741310698816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6350864078584526,0.06123308478513485,0.08951660307227781,0.027687941139672278,0.07912295782804951,0.04368810079609289,0.008253243764136253,0.0029601920790755,0.016106790541441693,0.018323399796897625,0.01211489271188888,0.005906385626880135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7147058727714188,0.056965180889923306,0.005170576210528221,0.048087891309270506,0.0454281635371025,0.0427684357649345,0.0033718414594285768,0.005511096739478344,0.00765035201952811,0.009789607299577879,0.011928862579627645,0.01406811785967741,0.01620737313972718,0.018346628419776943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3762305344545604,0.33324298417856335,0.15739062137317655,0.05872112724331652,0.013811929193242374,0.02373725792786794,0.00829742824508428,0.007436159989002097,0.006574891732919913,0.005713623476837729,0.004852355220755546,0.0039910869646733625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15570646394633422,0.10437483057986263,0.0337043599014564,0.03022449068562711,0.026744621469797825,0.019586353448754364,0.012428085427710902,0.02722501254411536,0.018112042099388766,0.050200944059389324,0.08228984601938989,0.11437874797939043,0.14646764993939101,0.17855655189939157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04321997325525679,0.12699411958746928,0.21076826591968179,0.15396932547469278,0.0971703850297038,0.1550161052542998,0.21286182547889576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5024139839481606,0.24865344765417427,0.1185268863165446,0.02660733345094947,0.01209748815123635,0.029592001110509893,0.0017001502343640493,0.0040472192639807725,0.006394288293597495,0.008741357323214217,0.01557360896492558,0.01087236255393574,0.014779872734406854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1705879967803675,0.3311993121952588,0.0043678755041653234,0.12178159189018452,0.040311326159123126,0.041336176898960866,0.042361027638798614,0.03940114862066425,0.0364412696025299,0.03348139058439553,0.03052151156626118,0.027561632548126817,0.02460175352999246,0.021641874511858103,0.018681995493723746,0.015722116475589392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05243658878277345,0.09362853643979367,0.13482048409681388,0.12182110318285562,0.10472017968183722,0.11208941859069495,0.11945865749955266,0.12682789640841038,0.13419713531726812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15654342339667437,0.2473267590311209,0.21600406985829462,0.06772267306305987,0.04001271600482761,0.012302758946595351,0.014420843403720827,0.02599167935552765,0.03756251530733447,0.0491333512591413,0.06070418721094812,0.07227502316275494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05431814543810985,0.05431814543810985,0.2488565365085628,0.10659057348406278,0.10659057348406278,0.4293260256470919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4795115535415878,0.2436440562850386,0.27684439017337364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4036976191207649,0.20319357819155595,0.23064224448695722,0.15514027573351888,0.007326282467203054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11000502582816188,0.6193293805842582,0.1552334920992382,0.11543210148834174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3604788608023161,0.3164095124760744,0.1969515415552321,0.1261600851663773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04195484755554874,0.13877630966777013,0.043666793275896655,0.06596246345697832,0.07718687798509487,0.08841129251321142,0.09963570704132796,0.11086012156944453,0.12208453609756108,0.13330895062567763,0.07048701694572214,0.007665083265766651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05021301189410546,0.86544036333383,0.034133612877959185,0.05021301189410546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5050652876859107,0.08545987282590052,0.3420104369105114,0.038518447293482146,0.028945955284195295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06206457656430337,0.5167116081987501,0.054241874415559325,0.0736617037903961,0.12232731360712903,0.17099292342386196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5414937161641273,0.3012575085103076,0.061021300856487735,0.09622747446907734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2646825179338819,0.21166926155288057,0.4453083134781877,0.016469525009917125,0.06187038202513268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0210605378318601,0.33333333333333337,0.6456061288348065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5262214262206814,0.10032909163133896,0.09064426187469456,0.12490459445334283,0.08876906819666179,0.05263354193998076,0.016498015683299727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18771665489316094,0.17276348421448828,0.15781031353581557,0.14285714285714288,0.12790397217847016,0.11295080149979747,0.09799763082112478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25951400059931257,0.3333333333333333,0.4071526660673541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1651659688066774,0.16011972026041038,0.2643207459282033,0.3685217715959963,0.041871793408712686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34936859839914003,0.3273001937917093,0.05831523682414128,0.10777706926971689,0.1572389017152925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19705932668122764,0.18861750179351924,0.14277961210699544,0.06949633986095198,0.15718118647275253,0.24486603308455307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18801206096342368,0.5561703368333095,0.07081643293710171,0.0794576332101128,0.1055435360560522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37671455123512704,0.3333333333333333,0.2899521154315396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28451263879992567,0.2635245218466358,0.24253640489334585,0.20942643446009263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6466593492894579,0.12743786391330073,0.22590278679724132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07916386599146687,0.6851444586560649,0.056660282210146094,0.09805653755865254,0.08097485558366967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28648967910010703,0.5188360103192766,0.19467431058061632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.43666788521441774,0.09850889544568947,0.46482321933989285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5439546968334651,0.33333333333333326,0.1227119698332015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2797158552265875,0.7202841447734125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21793494413140552,0.20326295336507316,0.19809849376645677,0.19293403416784044,0.18776957456922405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +work,True,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +work,True,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +work,True,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +work,True,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +work,True,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +work,True,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +work,True,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +work,True,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +work,True,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +work,True,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +work,True,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +work,True,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +work,True,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +work,True,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +work,True,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +work,True,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +work,True,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +work,True,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +work,True,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +work,True,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +work,True,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +work,True,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +work,True,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +work,True,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +work,True,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +work,True,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +work,True,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +work,True,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +work,True,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +work,True,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +work,True,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 work,FALSE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 work,FALSE,1,2,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 work,FALSE,1,3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -383,198 +383,198 @@ work,FALSE,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, work,FALSE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03797020998506186,0.17932340332835398,0.32067659667164605,0.46202979001493816,0.0,0.0,0.0,0.0 work,FALSE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9240595800298763,0.07594041997012373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 work,FALSE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,2,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,3,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,4,2,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,4,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,5,2,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,6,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,6,4,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15502667853478982,0.08229770024011315,0.38343262055066557,0.24166005430098364,0.09988748805130171,0.03769545832214605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,7,3,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1599771418839416,0.05651240524084194,0.04984623141905139,0.043180057597260825,0.036513883775470275,0.0439521559772963,0.05139042817912234,0.08554919887387943,0.11970796956863654,0.15386674026339364,0.007835239521885206,0.19166854769922065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14060494044759383,0.12799680610148337,0.11538867175537293,0.10278053740926246,0.090172403063152,0.07756426871704154,0.06495613437093108,0.05234800002482062,0.039739865678710164,0.027131731332599714,0.032410702909463046,0.03768967448632638,0.04296864606318971,0.048247617640053045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23190342098994285,0.3190471228269991,0.1778770842389997,0.09794738063319183,0.01801767702738397,0.01673590724697389,0.0066008676678141745,0.0066008676678141745,0.007398748385313031,0.008196629102811886,0.008994509820310742,0.009792390537809599,0.010590271255308453,0.011388151972807308,0.012186032690306164,0.012983913407805022,0.013781794125303875,0.014579674842802733,0.015377555560301586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45563284813293653,0.19731649745908547,0.14132693984933212,0.08533738223957878,0.029347824629825423,0.0107517248991238,0.0107517248991238,0.0107517248991238,0.012329368238661318,0.013907011578198838,0.015484654917736356,0.017062298257273876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23179663986069146,0.19650524812618217,0.1612138563916729,0.1259224646571636,0.09063107292265431,0.05533968118814501,0.02004828945363573,0.021268376129080814,0.022488462804525898,0.02370854947997098,0.024928636155416063,0.026148722830861146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0958862499094396,0.21232735302755326,0.14452318954831656,0.07671902606907983,0.008914862589843107,0.02083060430390109,0.032746346017959074,0.04466208773201706,0.035082532293705525,0.025502976855394,0.025480998097239856,0.04584826005761073,0.041822508346042814,0.0377967566344749,0.03377100492290699,0.029745253211339077,0.02571950149977116,0.021693749788203247,0.017667998076635334,0.01364224636506742,0.009616494653499508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17134858620412058,0.15377183807692774,0.1361950899497349,0.11861834182254205,0.10104159369534921,0.16710391666730154,0.10634151675044184,0.04557911683358214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,10,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.115278984508389,0.11805641750599215,0.12083385050359528,0.12361128350119843,0.1263887164988016,0.12916614949640473,0.1319435824940079,0.13472101549161103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45170523659549144,0.12834803883767854,0.015602922711769577,0.016164830905666887,0.004831642155812036,0.053990901307187825,0.1747598202770351,0.0900348203992964,0.005309820521557702,0.006614251148184289,0.007918681774810876,0.009223112401437463,0.01052754302806405,0.011831973654690638,0.013136404281317224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14491086491577065,0.08249733149608272,0.020083798076394783,0.04118720719232239,0.03489365663401108,0.3784050094193583,0.22148908267732795,0.06457315593529762,0.011959893653434613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.032191566925804674,0.026607580690927377,0.021023594456050086,0.07679273179946554,0.07816468103824913,0.0795366302770327,0.08090857951581629,0.08228052875459987,0.08365247799338346,0.08502442723216704,0.08639637647095062,0.08776832570973422,0.0891402749485178,0.09051222418730138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34390307043754836,0.29057986432904376,0.10069634173356881,0.10335263258675495,0.06338394756684611,0.029569439604088973,0.024593134136668297,0.01961682866924762,0.014640523201826945,0.00966421773440627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15652265479694477,0.14751618199781769,0.13850970919869063,0.12950323639956354,0.12049676360043647,0.1114902908013094,0.10248381800218231,0.09347734520305524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05562845797308542,0.03790308806291099,0.053028685207970015,0.07607312884655684,0.04248738471923295,0.04262662422892532,0.04276586373861769,0.1606174636101008,0.2784690634815839,0.16295643453753336,0.047443805593482866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15218217203974144,0.1364139887223987,0.12064580540505603,0.10487762208771333,0.08910943877037063,0.16196013724836353,0.23481083572635641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08519795484956813,0.4190098041126643,0.2805161533158058,0.21527608772196175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22023580411077429,0.3333333333333333,0.44643086255589237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09438677319033184,0.11054356307926884,0.12670035296820586,0.14285714285714285,0.15901393274607986,0.1751707226350169,0.19132751252395389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009508251214248881,0.17782889666540147,0.09263401371478211,0.12231508620860024,0.07160198415249852,0.04091425666276812,0.010226529173037718,0.02816480343335406,0.0461030776936704,0.06773215672436611,0.08936123575506183,0.11099031478575752,0.1326193938164532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14791654459063172,0.1386033892218408,0.12929023385304986,0.11915614797453906,0.10902206209602824,0.09888797621751744,0.08875389033900663,0.07861980446049581,0.0897499512468904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17421369945534756,0.1601526424681054,0.14609158548086326,0.1320305284936211,0.11796947150637892,0.10390841451913677,0.08984735753189461,0.07578630054465245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5382006173453733,0.42446418641574857,0.037335196238878085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09767373690998632,0.1292202595148205,0.11978213966803847,0.11034401982125645,0.10090589997447441,0.09146778012769237,0.08202966028091034,0.0725915404341283,0.06315342058734628,0.05371530074056424,0.04427718089378221,0.03483906104700016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34004170026991576,0.2800139000899719,0.2199860999100281,0.15995829973008424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07474574898992196,0.08645150733340892,0.09054013747255885,0.0946287676117088,0.09871739775085873,0.10280602789000867,0.10689465802915861,0.11098328816830855,0.11507191830745848,0.11916054844660842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8908104065284771,0.10918959347152296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29435014885100735,0.24327675597727105,0.1922033631035348,0.14112997022979853,0.09005657735606228,0.03898318448232598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.034515456831482105,0.38099204569554584,0.20993088972922877,0.038869733762911765,0.04183965106063932,0.044809568358366865,0.04777948565609442,0.050749402953821965,0.067087722968577,0.08342604298333202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16202831047267066,0.14780446655995472,0.13358062264723874,0.1193567787345228,0.10513293482180686,0.09090909090909091,0.07668524699637495,0.062461403083658995,0.04823755917094305,0.0340137152582271,0.019789871345511155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36615638276085066,0.3333333333333333,0.3005102839058161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5028022091097478,0.3333333333333333,0.16386445755691892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.49069843650135225,0.1832043680086809,0.1459517165860016,0.10869906516332227,0.07144641374064295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0940478256743711,0.19801594189145702,0.30198405810854295,0.40595217432562886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221818376004649,0.07032861211082453,0.6164723627300361,0.09138064915449043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10438685467882357,0.1703394766006171,0.23629209852241065,0.19067341613326125,0.14505473374411187,0.09943605135496247,0.05381736896581309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15320414381038053,0.21773471460346017,0.28226528539653983,0.34679585618961944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7626621877866382,0.178503744240893,0.05883406797246877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12708351247500596,0.8729164875249941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11188399304957727,0.7561656197815159,0.13195038716890686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9071348966177851,0.09286510338221489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1545227412234772,0.14501419619621114,0.7004630625803117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11306065571896186,0.2043535519063206,0.29564644809367935,0.38693934428103804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13118039701317155,0.8688196029868285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4249722436561218,0.14758358749369008,0.13129456938123285,0.11500555126877565,0.09871653315631843,0.0824275150438612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4996034447783298,0.5003965552216701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -univ,TRUE,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -univ,TRUE,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -univ,TRUE,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -univ,TRUE,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -univ,TRUE,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -univ,TRUE,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -univ,TRUE,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -univ,TRUE,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -univ,TRUE,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -univ,TRUE,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -univ,TRUE,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -univ,TRUE,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -univ,TRUE,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -univ,TRUE,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -univ,TRUE,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -univ,TRUE,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -univ,TRUE,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -univ,TRUE,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -univ,TRUE,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -univ,TRUE,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -univ,TRUE,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -univ,TRUE,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -univ,TRUE,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -univ,TRUE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -univ,TRUE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -univ,TRUE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +univ,True,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,2,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,3,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,4,2,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,4,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,5,2,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,6,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,6,4,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15502667853478982,0.08229770024011315,0.38343262055066557,0.24166005430098364,0.09988748805130171,0.03769545832214605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,7,3,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1599771418839416,0.05651240524084194,0.04984623141905139,0.043180057597260825,0.036513883775470275,0.0439521559772963,0.05139042817912234,0.08554919887387943,0.11970796956863654,0.15386674026339364,0.007835239521885206,0.19166854769922065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14060494044759383,0.12799680610148337,0.11538867175537293,0.10278053740926246,0.090172403063152,0.07756426871704154,0.06495613437093108,0.05234800002482062,0.039739865678710164,0.027131731332599714,0.032410702909463046,0.03768967448632638,0.04296864606318971,0.048247617640053045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23190342098994285,0.3190471228269991,0.1778770842389997,0.09794738063319183,0.01801767702738397,0.01673590724697389,0.0066008676678141745,0.0066008676678141745,0.007398748385313031,0.008196629102811886,0.008994509820310742,0.009792390537809599,0.010590271255308453,0.011388151972807308,0.012186032690306164,0.012983913407805022,0.013781794125303875,0.014579674842802733,0.015377555560301586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45563284813293653,0.19731649745908547,0.14132693984933212,0.08533738223957878,0.029347824629825423,0.0107517248991238,0.0107517248991238,0.0107517248991238,0.012329368238661318,0.013907011578198838,0.015484654917736356,0.017062298257273876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23179663986069146,0.19650524812618217,0.1612138563916729,0.1259224646571636,0.09063107292265431,0.05533968118814501,0.02004828945363573,0.021268376129080814,0.022488462804525898,0.02370854947997098,0.024928636155416063,0.026148722830861146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0958862499094396,0.21232735302755326,0.14452318954831656,0.07671902606907983,0.008914862589843107,0.02083060430390109,0.032746346017959074,0.04466208773201706,0.035082532293705525,0.025502976855394,0.025480998097239856,0.04584826005761073,0.041822508346042814,0.0377967566344749,0.03377100492290699,0.029745253211339077,0.02571950149977116,0.021693749788203247,0.017667998076635334,0.01364224636506742,0.009616494653499508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17134858620412058,0.15377183807692774,0.1361950899497349,0.11861834182254205,0.10104159369534921,0.16710391666730154,0.10634151675044184,0.04557911683358214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,10,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.115278984508389,0.11805641750599215,0.12083385050359528,0.12361128350119843,0.1263887164988016,0.12916614949640473,0.1319435824940079,0.13472101549161103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45170523659549144,0.12834803883767854,0.015602922711769577,0.016164830905666887,0.004831642155812036,0.053990901307187825,0.1747598202770351,0.0900348203992964,0.005309820521557702,0.006614251148184289,0.007918681774810876,0.009223112401437463,0.01052754302806405,0.011831973654690638,0.013136404281317224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14491086491577065,0.08249733149608272,0.020083798076394783,0.04118720719232239,0.03489365663401108,0.3784050094193583,0.22148908267732795,0.06457315593529762,0.011959893653434613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.032191566925804674,0.026607580690927377,0.021023594456050086,0.07679273179946554,0.07816468103824913,0.0795366302770327,0.08090857951581629,0.08228052875459987,0.08365247799338346,0.08502442723216704,0.08639637647095062,0.08776832570973422,0.0891402749485178,0.09051222418730138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34390307043754836,0.29057986432904376,0.10069634173356881,0.10335263258675495,0.06338394756684611,0.029569439604088973,0.024593134136668297,0.01961682866924762,0.014640523201826945,0.00966421773440627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15652265479694477,0.14751618199781769,0.13850970919869063,0.12950323639956354,0.12049676360043647,0.1114902908013094,0.10248381800218231,0.09347734520305524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05562845797308542,0.03790308806291099,0.053028685207970015,0.07607312884655684,0.04248738471923295,0.04262662422892532,0.04276586373861769,0.1606174636101008,0.2784690634815839,0.16295643453753336,0.047443805593482866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15218217203974144,0.1364139887223987,0.12064580540505603,0.10487762208771333,0.08910943877037063,0.16196013724836353,0.23481083572635641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08519795484956813,0.4190098041126643,0.2805161533158058,0.21527608772196175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22023580411077429,0.3333333333333333,0.44643086255589237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09438677319033184,0.11054356307926884,0.12670035296820586,0.14285714285714285,0.15901393274607986,0.1751707226350169,0.19132751252395389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009508251214248881,0.17782889666540147,0.09263401371478211,0.12231508620860024,0.07160198415249852,0.04091425666276812,0.010226529173037718,0.02816480343335406,0.0461030776936704,0.06773215672436611,0.08936123575506183,0.11099031478575752,0.1326193938164532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14791654459063172,0.1386033892218408,0.12929023385304986,0.11915614797453906,0.10902206209602824,0.09888797621751744,0.08875389033900663,0.07861980446049581,0.0897499512468904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17421369945534756,0.1601526424681054,0.14609158548086326,0.1320305284936211,0.11796947150637892,0.10390841451913677,0.08984735753189461,0.07578630054465245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5382006173453733,0.42446418641574857,0.037335196238878085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09767373690998632,0.1292202595148205,0.11978213966803847,0.11034401982125645,0.10090589997447441,0.09146778012769237,0.08202966028091034,0.0725915404341283,0.06315342058734628,0.05371530074056424,0.04427718089378221,0.03483906104700016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34004170026991576,0.2800139000899719,0.2199860999100281,0.15995829973008424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07474574898992196,0.08645150733340892,0.09054013747255885,0.0946287676117088,0.09871739775085873,0.10280602789000867,0.10689465802915861,0.11098328816830855,0.11507191830745848,0.11916054844660842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8908104065284771,0.10918959347152296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29435014885100735,0.24327675597727105,0.1922033631035348,0.14112997022979853,0.09005657735606228,0.03898318448232598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.034515456831482105,0.38099204569554584,0.20993088972922877,0.038869733762911765,0.04183965106063932,0.044809568358366865,0.04777948565609442,0.050749402953821965,0.067087722968577,0.08342604298333202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16202831047267066,0.14780446655995472,0.13358062264723874,0.1193567787345228,0.10513293482180686,0.09090909090909091,0.07668524699637495,0.062461403083658995,0.04823755917094305,0.0340137152582271,0.019789871345511155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36615638276085066,0.3333333333333333,0.3005102839058161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5028022091097478,0.3333333333333333,0.16386445755691892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.49069843650135225,0.1832043680086809,0.1459517165860016,0.10869906516332227,0.07144641374064295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0940478256743711,0.19801594189145702,0.30198405810854295,0.40595217432562886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221818376004649,0.07032861211082453,0.6164723627300361,0.09138064915449043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10438685467882357,0.1703394766006171,0.23629209852241065,0.19067341613326125,0.14505473374411187,0.09943605135496247,0.05381736896581309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15320414381038053,0.21773471460346017,0.28226528539653983,0.34679585618961944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7626621877866382,0.178503744240893,0.05883406797246877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12708351247500596,0.8729164875249941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11188399304957727,0.7561656197815159,0.13195038716890686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9071348966177851,0.09286510338221489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1545227412234772,0.14501419619621114,0.7004630625803117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11306065571896186,0.2043535519063206,0.29564644809367935,0.38693934428103804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13118039701317155,0.8688196029868285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4249722436561218,0.14758358749369008,0.13129456938123285,0.11500555126877565,0.09871653315631843,0.0824275150438612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4996034447783298,0.5003965552216701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +univ,True,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +univ,True,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +univ,True,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +univ,True,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +univ,True,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +univ,True,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +univ,True,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +univ,True,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +univ,True,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +univ,True,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +univ,True,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +univ,True,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +univ,True,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +univ,True,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +univ,True,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +univ,True,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +univ,True,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +univ,True,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +univ,True,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +univ,True,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +univ,True,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +univ,True,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +univ,True,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +univ,True,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +univ,True,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +univ,True,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +univ,True,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +univ,True,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +univ,True,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +univ,True,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 univ,FALSE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 univ,FALSE,1,2,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 univ,FALSE,1,3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -767,198 +767,198 @@ univ,FALSE,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, univ,FALSE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 univ,FALSE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 univ,FALSE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -social,TRUE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,3,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,4,2,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,5,2,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,6,2,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,6,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10773437734708079,0.3333333333333333,0.5589322893195859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,8,3,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.628851611647239,0.3333333333333333,0.03781505501942765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1043475180589962,0.03895350092025114,0.020976320884544222,0.037279864182773,0.05358340748100179,0.05353285208803425,0.05348229669506672,0.05343174130209917,0.053381185909131636,0.0533306305161641,0.05328007512319657,0.053229519730229026,0.05317896433726149,0.05312840894429395,0.053077853551326416,0.05302729815835888,0.05297674276539134,0.05292618737242381,0.052875631979456265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,10,4,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11583073498209223,0.47108700863073383,0.2947230883393026,0.11835916804787142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3591518872697915,0.10406339953722134,0.21361603757673617,0.323168675616251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17545608657933953,0.1719403186142704,0.16842455064920123,0.1649087826841321,0.16139301471906295,0.15787724675399378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18304058611725627,0.7896162659106728,0.027343147972070922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7979268938725499,0.17686822091580928,0.016672535291724706,0.008532349919916166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.578400829767911,0.016583780995750717,0.01866538798796587,0.020746994980181028,0.02282860197239618,0.02491020896461134,0.02699181595682649,0.02907342294904165,0.0311550299412568,0.03323663693347196,0.03531824392568711,0.03739985091790226,0.039481457910117417,0.04156306490233257,0.04364467189454773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4074190265461011,0.2825435576838615,0.037569731178967204,0.10494188703877066,0.09082256153035674,0.0767032360219428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21918121202374222,0.3333333333333333,0.4474854546429244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0835052208118133,0.7260538578814516,0.0817271132468386,0.06348030710224503,0.04523350095765147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11978634238911937,0.497748780267061,0.28140237708283344,0.06505597389860593,0.03600652636238037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3479019435812659,0.5365056179805612,0.11559243843817298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4025890224893994,0.5974109775106007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3732048100795164,0.6267951899204836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.40041609771957165,0.5639904037549157,0.03559349852551277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08876722289284689,0.11493197746117091,0.4235005781232469,0.3728002215227354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4357760007824008,0.5642239992175991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6044652184600203,0.22126586349977154,0.17426891804020825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4759479948850025,0.3333333333333333,0.19071867178166416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24450545806824858,0.6744581106411094,0.08103643129064204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6099288212053448,0.3333333333333333,0.05673784546132194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22745745074077123,0.6075168367061072,0.16502571255312157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3863561922535266,0.33333333333333337,0.28031047441314016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4657517134643485,0.5342482865356515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08655819849535898,0.913441801504641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6470247634388553,0.3333333333333333,0.01964190322781141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2741313965619882,0.6629550534179607,0.06291355002005124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5684543941451579,0.3333333333333333,0.09821227252150881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059490242194113245,0.7523045456318833,0.018748487732635807,0.019289288359865844,0.019830088987095883,0.020370889614325916,0.020911690241555952,0.021452490868785992,0.02199329149601603,0.022534092123246065,0.023074892750476104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5916618406801583,0.3333333333333333,0.07500482598650836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4953837534336802,0.5046162465663198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9293033744726057,0.024492150868995113,0.04620447465839927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37496020061561375,0.3041351651079224,0.20555168826670514,0.10696821142548794,0.008384734584270711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16245811480449981,0.18122905740224993,0.2,0.21877094259775012,0.23754188519550024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5446212875832988,0.3062100647062189,0.06779884182913909,0.04972288257016076,0.031646923311182434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7905944124476788,0.20940558755232105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16247713465884725,0.44340912594980314,0.33940130234258037,0.05471243704876923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23630387073488623,0.27007687850461326,0.49361925076050056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12058062880239849,0.3333333333333333,0.5460860378642681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.44901921097453,0.5509807890254701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45011990866566315,0.5498800913343369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2861015293666299,0.7138984706333701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3304658479880228,0.31321548194082977,0.27538008277374987,0.08093858729739767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11179115666214716,0.4950397283895725,0.09109148299379365,0.3020776319544868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20158579682928846,0.3590451735645154,0.4393690296061961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5380915555873338,0.06557133332834955,0.3963371110843167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47442340161838786,0.29428379713008035,0.23129280125153176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.48739732089270765,0.1758121605432735,0.3367905185640188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -social,TRUE,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15611813456398502,0.16033754740505768,0.16455696024613034,0.16877637308720297,0.17299578592827566,0.17721519876934833,0.0,0.0,0.0,0.0 -social,TRUE,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -social,TRUE,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -social,TRUE,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -social,TRUE,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -social,TRUE,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -social,TRUE,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -social,TRUE,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -social,TRUE,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -social,TRUE,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -social,TRUE,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -social,TRUE,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -social,TRUE,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -social,TRUE,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -social,TRUE,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -social,TRUE,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -social,TRUE,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -social,TRUE,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -social,TRUE,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -social,TRUE,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -social,TRUE,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -social,TRUE,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -social,TRUE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -social,TRUE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -social,TRUE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +social,True,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,3,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,4,2,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,5,2,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,6,2,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,6,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10773437734708079,0.3333333333333333,0.5589322893195859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,8,3,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.628851611647239,0.3333333333333333,0.03781505501942765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1043475180589962,0.03895350092025114,0.020976320884544222,0.037279864182773,0.05358340748100179,0.05353285208803425,0.05348229669506672,0.05343174130209917,0.053381185909131636,0.0533306305161641,0.05328007512319657,0.053229519730229026,0.05317896433726149,0.05312840894429395,0.053077853551326416,0.05302729815835888,0.05297674276539134,0.05292618737242381,0.052875631979456265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,10,4,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11583073498209223,0.47108700863073383,0.2947230883393026,0.11835916804787142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3591518872697915,0.10406339953722134,0.21361603757673617,0.323168675616251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17545608657933953,0.1719403186142704,0.16842455064920123,0.1649087826841321,0.16139301471906295,0.15787724675399378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18304058611725627,0.7896162659106728,0.027343147972070922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7979268938725499,0.17686822091580928,0.016672535291724706,0.008532349919916166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.578400829767911,0.016583780995750717,0.01866538798796587,0.020746994980181028,0.02282860197239618,0.02491020896461134,0.02699181595682649,0.02907342294904165,0.0311550299412568,0.03323663693347196,0.03531824392568711,0.03739985091790226,0.039481457910117417,0.04156306490233257,0.04364467189454773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4074190265461011,0.2825435576838615,0.037569731178967204,0.10494188703877066,0.09082256153035674,0.0767032360219428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21918121202374222,0.3333333333333333,0.4474854546429244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0835052208118133,0.7260538578814516,0.0817271132468386,0.06348030710224503,0.04523350095765147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11978634238911937,0.497748780267061,0.28140237708283344,0.06505597389860593,0.03600652636238037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3479019435812659,0.5365056179805612,0.11559243843817298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4025890224893994,0.5974109775106007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3732048100795164,0.6267951899204836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.40041609771957165,0.5639904037549157,0.03559349852551277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08876722289284689,0.11493197746117091,0.4235005781232469,0.3728002215227354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4357760007824008,0.5642239992175991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6044652184600203,0.22126586349977154,0.17426891804020825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4759479948850025,0.3333333333333333,0.19071867178166416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24450545806824858,0.6744581106411094,0.08103643129064204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6099288212053448,0.3333333333333333,0.05673784546132194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22745745074077123,0.6075168367061072,0.16502571255312157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3863561922535266,0.33333333333333337,0.28031047441314016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4657517134643485,0.5342482865356515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08655819849535898,0.913441801504641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6470247634388553,0.3333333333333333,0.01964190322781141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2741313965619882,0.6629550534179607,0.06291355002005124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5684543941451579,0.3333333333333333,0.09821227252150881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059490242194113245,0.7523045456318833,0.018748487732635807,0.019289288359865844,0.019830088987095883,0.020370889614325916,0.020911690241555952,0.021452490868785992,0.02199329149601603,0.022534092123246065,0.023074892750476104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5916618406801583,0.3333333333333333,0.07500482598650836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4953837534336802,0.5046162465663198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9293033744726057,0.024492150868995113,0.04620447465839927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37496020061561375,0.3041351651079224,0.20555168826670514,0.10696821142548794,0.008384734584270711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16245811480449981,0.18122905740224993,0.2,0.21877094259775012,0.23754188519550024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5446212875832988,0.3062100647062189,0.06779884182913909,0.04972288257016076,0.031646923311182434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7905944124476788,0.20940558755232105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16247713465884725,0.44340912594980314,0.33940130234258037,0.05471243704876923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23630387073488623,0.27007687850461326,0.49361925076050056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12058062880239849,0.3333333333333333,0.5460860378642681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.44901921097453,0.5509807890254701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45011990866566315,0.5498800913343369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2861015293666299,0.7138984706333701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3304658479880228,0.31321548194082977,0.27538008277374987,0.08093858729739767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11179115666214716,0.4950397283895725,0.09109148299379365,0.3020776319544868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20158579682928846,0.3590451735645154,0.4393690296061961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5380915555873338,0.06557133332834955,0.3963371110843167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47442340161838786,0.29428379713008035,0.23129280125153176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.48739732089270765,0.1758121605432735,0.3367905185640188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +social,True,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15611813456398502,0.16033754740505768,0.16455696024613034,0.16877637308720297,0.17299578592827566,0.17721519876934833,0.0,0.0,0.0,0.0 +social,True,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +social,True,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +social,True,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +social,True,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +social,True,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +social,True,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +social,True,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +social,True,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +social,True,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +social,True,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +social,True,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +social,True,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +social,True,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +social,True,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +social,True,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +social,True,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +social,True,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +social,True,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +social,True,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +social,True,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +social,True,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +social,True,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +social,True,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +social,True,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +social,True,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +social,True,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +social,True,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +social,True,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 social,FALSE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 social,FALSE,1,2,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 social,FALSE,1,3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -1151,198 +1151,198 @@ social,FALSE,48,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. social,FALSE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 social,FALSE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 social,FALSE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -shopping,TRUE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,3,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,4,2,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,5,2,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,6,2,0.0,0.0,0.0,0.0,0.0,0.150403881206086,0.13920301871584467,0.12800215622560335,0.116801293735362,0.10560043124512067,0.09439956875487934,0.083198706264638,0.07199784377439666,0.06079698128415534,0.04959611879391402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,6,4,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.16274824640801225,0.3954265556377904,0.32371480710179723,0.11811039085240024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38631117774054635,0.3333333333333333,0.2803554889261204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,7,4,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07694488210314931,0.05634409511359545,0.020581922303440955,0.034276600515400595,0.04797127872736024,0.06166595693931987,0.07132858428655181,0.08099121163378377,0.09065383898101571,0.10031646632824766,0.1099790936754796,0.11964172102271155,0.1293043483699435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04252631196074424,0.037787864596371075,0.03304941723199792,0.02831096986762476,0.023572522503251595,0.03740808275460151,0.05124364300595142,0.06507920325730132,0.07891476350865123,0.09275032376000115,0.10658588401135105,0.12042144426270097,0.1342570045140509,0.1480925647654008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03432246399091716,0.041422566146277116,0.04852266830163708,0.05562277045699704,0.062722872612357,0.06982297476771696,0.07692307692307691,0.08402317907843689,0.09112328123379684,0.0982233833891568,0.10532348554451676,0.11242358769987675,0.11952368985523668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03163149035767946,0.7336582146363957,0.04149566391389355,0.008367510573865238,0.008370521988462594,0.008373533403059947,0.008376544817657304,0.00837955623225466,0.008382567646852015,0.008385579061449369,0.008388590476046724,0.00839160189064408,0.008394613305241435,0.008397624719838789,0.008400636134436144,0.0084036475490335,0.008406658963630855,0.00840967037822821,0.008412681792825566,0.008415693207422921,0.008418704622020275,0.00842171603661763,0.008424727451214985,0.00842773886581234,0.008430750280409694,0.00843376169500705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3584276149805107,0.5746022084217608,0.06697017659772854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2769319994273193,0.5247471656585653,0.07037387702908193,0.06610694497137183,0.06184001291366173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5840061241399904,0.16551893268325588,0.12573829891963995,0.08595766515602404,0.03877897910108965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,10,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5131529302511231,0.16021850155676395,0.13454734547706748,0.10887618939737101,0.08320503331767454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39765070595462165,0.2718128514043629,0.10891618442611753,0.03117493441014261,0.07483898292171563,0.016248054129721308,0.016337099938054194,0.01642614574638708,0.01651519155471997,0.016604237363052856,0.016693283171385742,0.01678232897971863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.31671996634042715,0.2712249114592134,0.11092511767903535,0.0029872944722497343,0.09605504274112239,0.06251951953734715,0.028983996333571894,0.021586881047261773,0.014189765760951652,0.006792650474641531,0.014732134263017112,0.022671618051392697,0.030611101839768277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6750059373381477,0.14171535721764264,0.07646207320753734,0.011208789197432043,0.005486747956245354,0.017763556491955153,0.03004036502766496,0.042317173563374756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25398030532205795,0.47591795935000547,0.051988681186635945,0.0526042184850986,0.06016251459203544,0.027272426285347547,0.039531160697498464,0.03337256922344192,0.0023917480457681956,0.0027784168121103843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17605117824729205,0.2627376504488624,0.15737408686932056,0.09179723531618784,0.07480779794548098,0.0578183605747741,0.07000548332202242,0.08219260606927073,0.027215601206788852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09957205930488305,0.15146355378856777,0.20335504827225248,0.03101745370329497,0.022788955438228477,0.09229791940346486,0.0834914756272168,0.07468503185096874,0.06587858807472068,0.05707214429847262,0.048265700522224564,0.0394592567459765,0.03065281296972844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3765606606115084,0.24256149494938542,0.19268691190095835,0.1277898001494551,0.012675163163914567,0.025810584432584816,0.0020523461936597376,0.0032177115760491995,0.004383076958438661,0.005548442340828123,0.006713807723217585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.44125399033863555,0.1657803511262183,0.110196840415569,0.05065160971568236,0.016007726530262202,0.03411140853218436,0.03208348758990428,0.030055566647624203,0.02802764570534412,0.02599972476306404,0.02397180382078396,0.02194388287850388,0.0199159619362238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6874408863298752,0.14363028720742976,0.09337432100651057,0.019270178244459625,0.006043919517886841,0.017463391404770465,0.032777016289067575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20123386433698306,0.41694459434544195,0.222049271458417,0.054570757121050556,0.04326260554644107,0.031954453971831595,0.020646302397222115,0.009338150822612636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.040184023369467456,0.29519354240947654,0.23659064418872017,0.13799301670109257,0.247827321465703,0.02710134104573147,0.015110110819808812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06906720986185674,0.19529983229522488,0.16232428023188786,0.17565561394387372,0.07697767998084638,0.1541505588084708,0.15737918739065415,0.009145637487185566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19509639957965566,0.26843972788265097,0.1474323658120797,0.08365952460352594,0.0368457639525357,0.010166231931104342,0.01301528042069351,0.015864328910282676,0.018713377399871847,0.021562425889461015,0.024411474379050183,0.02726052286863935,0.030109571358228514,0.032958619847817686,0.03580766833740685,0.038656716826996014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00413697235256592,0.2129074075089102,0.3505475141658882,0.1734480355562692,0.08719976554605254,0.03241928801831168,0.016891722780181067,0.1224492940718214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15110721547057004,0.02011440520279088,0.17242830407278825,0.05007707393687179,0.03218344624252011,0.12903532767598347,0.10217160474355866,0.07530788181113386,0.04844415887870907,0.021580435946284265,0.19755014601878967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5148069288627971,0.3699963501505638,0.0269804642359594,0.05275491714480944,0.006820785024369538,0.005753345380444774,0.005361377533700237,0.0049694096869557,0.004577441840211163,0.004185473993466626,0.0037935061467220888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09916834008449046,0.22595293139818784,0.2312190170753813,0.3022895362199151,0.07002517506475135,0.03951700658822908,0.009008838111706793,0.010609331189681635,0.012209824267656476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17833885962554083,0.05573674004633103,0.03388618894421373,0.09023453526411779,0.2597895707396951,0.13534327268629362,0.1103335705131022,0.07788966228666873,0.04544575406023527,0.013001845833801809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25721391131960825,0.40663051804361644,0.21604187462041352,0.09197086390127322,0.006123558377448522,0.008261833966299436,0.01040010955515035,0.0033573302161903633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03818108084164346,0.2931290015346646,0.29837952919227306,0.17343326860020553,0.042483097152339055,0.12268192053287214,0.004912190297769613,0.005388658173868488,0.005865126049967363,0.015546127624396661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1217493722020698,0.1104898364826285,0.6179637073205415,0.14331926618554516,0.0064778178092151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3743657522191308,0.4189194215468449,0.13455849500942896,0.004841138145622488,0.024220914739303746,0.039024759773419175,0.004069518566249893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.024335610567412472,0.26340073451250356,0.35368400219049645,0.10860352584619243,0.0765000829741015,0.06818936385260069,0.059878644731099884,0.02458787971666413,0.020820155608928796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1649615756365934,0.23346671208625974,0.021600129231412083,0.028431363425443272,0.03526259761947447,0.05981020997558021,0.08435782233168596,0.1089054346877917,0.09832007651152237,0.08773471833525305,0.07714936015898372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28384048996359845,0.3455479918887933,0.10105268195888228,0.08887213770158188,0.046978568869155954,0.03371343092415334,0.033522498577715804,0.033331566231278274,0.03314063388484074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.040218490033236944,0.08142619398399818,0.30682536491265516,0.08171756545399071,0.28292269415695515,0.14800786659322826,0.013093039029501402,0.014177983820823054,0.015262928612144703,0.016347873403466353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14163544352043841,0.059032165046534794,0.16807345801036183,0.22634179522641276,0.28461013244246364,0.03175499024202576,0.030636164372973344,0.029517338503920926,0.028398512634868516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41580653155786884,0.2890129533225023,0.08811885302758045,0.0336115026925943,0.020944619862016595,0.08829736605480784,0.05083517984581254,0.01337299363681724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033258283121155906,0.2789924182216784,0.35526100524276233,0.01838682017741379,0.04192490358652489,0.02218638132037245,0.05774696451670831,0.09330754771304418,0.12886813090938007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020276352266408093,0.04794074657001455,0.05308812619317532,0.004670048813377961,0.10578733406369216,0.20690461931400633,0.1821009205703131,0.15729722182661984,0.13249352308292658,0.10768982433923334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23383362793256315,0.6037495761292824,0.13054847567170508,0.007447226877364822,0.024421093389084495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11115504744665063,0.05604337791480533,0.17501934022603396,0.06130066135993834,0.04302939279939729,0.2059588781920656,0.15832465712135024,0.11069043605063487,0.0630562149799195,0.015421993909204132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4690016523162357,0.2511306980562124,0.097247074284706,0.0753965836457811,0.060873525114281964,0.04635046658278284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2411125922722293,0.5319251620679214,0.15219921237213554,0.024898582082027637,0.024921011095904548,0.02494344010978146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018489398529716462,0.19059640976937356,0.7517272838780154,0.039186907822894676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07222469507842451,0.6381724480864713,0.12961516907357803,0.15998768776152605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11911120275370167,0.4092687145261195,0.38472864264143375,0.046079064184898974,0.009263183561949013,0.013604125297948714,0.01794506703394842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18711704820264483,0.06897036480620744,0.042984444198252356,0.24797086233038254,0.45295728046251277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6792883041002407,0.11719814014579573,0.09251799603189179,0.06783785191798786,0.04315770780408393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07608173414075778,0.6798841594461215,0.2358505717719442,0.008183534641176602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1592702731891413,0.21159677894062362,0.10278020649570413,0.09456107009039574,0.08634193368508736,0.07812279727977894,0.06990366087447056,0.06168452446916217,0.05346538806385378,0.045246251658545386,0.037027115253237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6618426962940714,0.3381573037059285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3718972097888553,0.5482256846048164,0.07987710560632832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35693708738656393,0.41589423101678114,0.047723254952431654,0.09026791243450871,0.08917751420971458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29014394592641685,0.4819124463975033,0.17387456098725104,0.054069046688828726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36146772354278855,0.23318168170854678,0.09706628634977127,0.2111434788067763,0.09714082959211719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3115573662053272,0.6884426337946729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2749564462065743,0.5665536755410131,0.1584898782524127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1799920589596595,0.02624140234320781,0.7390721227453014,0.054694415951831284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01641610143686886,0.10599880101203837,0.854111731232548,0.023473366318544783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.49830421331784797,0.33276807110594936,0.16723192889405067,0.0016957866821520568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02105799892322043,0.5113008250606348,0.36856643791075927,0.0394803613182033,0.03302491270179521,0.02656946408538712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21949374401370517,0.14408645906446294,0.30661122095241067,0.20827370647110888,0.10993619198980709,0.011598677508505335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009037959404088853,0.271749470725214,0.19050180033011793,0.23973752329023237,0.28897324625034687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15999944930590265,0.4027759327744486,0.14168813321180607,0.1145665283978679,0.08744492358392975,0.06032331876999158,0.03320171395605341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19202846653546007,0.32984920355848935,0.47812232990605064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.665510849832503,0.3333333333333333,0.001155816834163738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03958189022438406,0.9123003018214122,0.021877662142565684,0.026240145811638093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6020406151640877,0.39795938483591226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19398945751121544,0.3433509041479743,0.2686701808295949,0.19398945751121544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23014035279808706,0.5889232238222634,0.18093642337964969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.49624452987746465,0.5037554701225354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29644889899668186,0.3653696178208869,0.3381814831824313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13716895449859648,0.1818610953324464,0.6809699501689572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10891470941158064,0.2815722865795636,0.591913118072,0.01759988593685584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3816801130761051,0.3333333333333333,0.2849865535905615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38168011307610517,0.33333333333333337,0.2849865535905615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5687854952460929,0.43121450475390705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5688053460394663,0.43119465396053375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -shopping,TRUE,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -shopping,TRUE,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -shopping,TRUE,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -shopping,TRUE,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -shopping,TRUE,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -shopping,TRUE,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -shopping,TRUE,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -shopping,TRUE,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -shopping,TRUE,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -shopping,TRUE,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -shopping,TRUE,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -shopping,TRUE,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -shopping,TRUE,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -shopping,TRUE,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -shopping,TRUE,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -shopping,TRUE,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -shopping,TRUE,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -shopping,TRUE,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -shopping,TRUE,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -shopping,TRUE,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -shopping,TRUE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -shopping,TRUE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -shopping,TRUE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +shopping,True,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,3,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,4,2,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,5,2,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,6,2,0.0,0.0,0.0,0.0,0.0,0.150403881206086,0.13920301871584467,0.12800215622560335,0.116801293735362,0.10560043124512067,0.09439956875487934,0.083198706264638,0.07199784377439666,0.06079698128415534,0.04959611879391402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,6,4,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.16274824640801225,0.3954265556377904,0.32371480710179723,0.11811039085240024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38631117774054635,0.3333333333333333,0.2803554889261204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,7,4,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07694488210314931,0.05634409511359545,0.020581922303440955,0.034276600515400595,0.04797127872736024,0.06166595693931987,0.07132858428655181,0.08099121163378377,0.09065383898101571,0.10031646632824766,0.1099790936754796,0.11964172102271155,0.1293043483699435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04252631196074424,0.037787864596371075,0.03304941723199792,0.02831096986762476,0.023572522503251595,0.03740808275460151,0.05124364300595142,0.06507920325730132,0.07891476350865123,0.09275032376000115,0.10658588401135105,0.12042144426270097,0.1342570045140509,0.1480925647654008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03432246399091716,0.041422566146277116,0.04852266830163708,0.05562277045699704,0.062722872612357,0.06982297476771696,0.07692307692307691,0.08402317907843689,0.09112328123379684,0.0982233833891568,0.10532348554451676,0.11242358769987675,0.11952368985523668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03163149035767946,0.7336582146363957,0.04149566391389355,0.008367510573865238,0.008370521988462594,0.008373533403059947,0.008376544817657304,0.00837955623225466,0.008382567646852015,0.008385579061449369,0.008388590476046724,0.00839160189064408,0.008394613305241435,0.008397624719838789,0.008400636134436144,0.0084036475490335,0.008406658963630855,0.00840967037822821,0.008412681792825566,0.008415693207422921,0.008418704622020275,0.00842171603661763,0.008424727451214985,0.00842773886581234,0.008430750280409694,0.00843376169500705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3584276149805107,0.5746022084217608,0.06697017659772854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2769319994273193,0.5247471656585653,0.07037387702908193,0.06610694497137183,0.06184001291366173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5840061241399904,0.16551893268325588,0.12573829891963995,0.08595766515602404,0.03877897910108965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,10,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5131529302511231,0.16021850155676395,0.13454734547706748,0.10887618939737101,0.08320503331767454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39765070595462165,0.2718128514043629,0.10891618442611753,0.03117493441014261,0.07483898292171563,0.016248054129721308,0.016337099938054194,0.01642614574638708,0.01651519155471997,0.016604237363052856,0.016693283171385742,0.01678232897971863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.31671996634042715,0.2712249114592134,0.11092511767903535,0.0029872944722497343,0.09605504274112239,0.06251951953734715,0.028983996333571894,0.021586881047261773,0.014189765760951652,0.006792650474641531,0.014732134263017112,0.022671618051392697,0.030611101839768277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6750059373381477,0.14171535721764264,0.07646207320753734,0.011208789197432043,0.005486747956245354,0.017763556491955153,0.03004036502766496,0.042317173563374756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25398030532205795,0.47591795935000547,0.051988681186635945,0.0526042184850986,0.06016251459203544,0.027272426285347547,0.039531160697498464,0.03337256922344192,0.0023917480457681956,0.0027784168121103843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17605117824729205,0.2627376504488624,0.15737408686932056,0.09179723531618784,0.07480779794548098,0.0578183605747741,0.07000548332202242,0.08219260606927073,0.027215601206788852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09957205930488305,0.15146355378856777,0.20335504827225248,0.03101745370329497,0.022788955438228477,0.09229791940346486,0.0834914756272168,0.07468503185096874,0.06587858807472068,0.05707214429847262,0.048265700522224564,0.0394592567459765,0.03065281296972844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3765606606115084,0.24256149494938542,0.19268691190095835,0.1277898001494551,0.012675163163914567,0.025810584432584816,0.0020523461936597376,0.0032177115760491995,0.004383076958438661,0.005548442340828123,0.006713807723217585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.44125399033863555,0.1657803511262183,0.110196840415569,0.05065160971568236,0.016007726530262202,0.03411140853218436,0.03208348758990428,0.030055566647624203,0.02802764570534412,0.02599972476306404,0.02397180382078396,0.02194388287850388,0.0199159619362238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6874408863298752,0.14363028720742976,0.09337432100651057,0.019270178244459625,0.006043919517886841,0.017463391404770465,0.032777016289067575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20123386433698306,0.41694459434544195,0.222049271458417,0.054570757121050556,0.04326260554644107,0.031954453971831595,0.020646302397222115,0.009338150822612636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.040184023369467456,0.29519354240947654,0.23659064418872017,0.13799301670109257,0.247827321465703,0.02710134104573147,0.015110110819808812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06906720986185674,0.19529983229522488,0.16232428023188786,0.17565561394387372,0.07697767998084638,0.1541505588084708,0.15737918739065415,0.009145637487185566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19509639957965566,0.26843972788265097,0.1474323658120797,0.08365952460352594,0.0368457639525357,0.010166231931104342,0.01301528042069351,0.015864328910282676,0.018713377399871847,0.021562425889461015,0.024411474379050183,0.02726052286863935,0.030109571358228514,0.032958619847817686,0.03580766833740685,0.038656716826996014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00413697235256592,0.2129074075089102,0.3505475141658882,0.1734480355562692,0.08719976554605254,0.03241928801831168,0.016891722780181067,0.1224492940718214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15110721547057004,0.02011440520279088,0.17242830407278825,0.05007707393687179,0.03218344624252011,0.12903532767598347,0.10217160474355866,0.07530788181113386,0.04844415887870907,0.021580435946284265,0.19755014601878967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5148069288627971,0.3699963501505638,0.0269804642359594,0.05275491714480944,0.006820785024369538,0.005753345380444774,0.005361377533700237,0.0049694096869557,0.004577441840211163,0.004185473993466626,0.0037935061467220888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09916834008449046,0.22595293139818784,0.2312190170753813,0.3022895362199151,0.07002517506475135,0.03951700658822908,0.009008838111706793,0.010609331189681635,0.012209824267656476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17833885962554083,0.05573674004633103,0.03388618894421373,0.09023453526411779,0.2597895707396951,0.13534327268629362,0.1103335705131022,0.07788966228666873,0.04544575406023527,0.013001845833801809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25721391131960825,0.40663051804361644,0.21604187462041352,0.09197086390127322,0.006123558377448522,0.008261833966299436,0.01040010955515035,0.0033573302161903633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03818108084164346,0.2931290015346646,0.29837952919227306,0.17343326860020553,0.042483097152339055,0.12268192053287214,0.004912190297769613,0.005388658173868488,0.005865126049967363,0.015546127624396661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1217493722020698,0.1104898364826285,0.6179637073205415,0.14331926618554516,0.0064778178092151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3743657522191308,0.4189194215468449,0.13455849500942896,0.004841138145622488,0.024220914739303746,0.039024759773419175,0.004069518566249893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.024335610567412472,0.26340073451250356,0.35368400219049645,0.10860352584619243,0.0765000829741015,0.06818936385260069,0.059878644731099884,0.02458787971666413,0.020820155608928796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1649615756365934,0.23346671208625974,0.021600129231412083,0.028431363425443272,0.03526259761947447,0.05981020997558021,0.08435782233168596,0.1089054346877917,0.09832007651152237,0.08773471833525305,0.07714936015898372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28384048996359845,0.3455479918887933,0.10105268195888228,0.08887213770158188,0.046978568869155954,0.03371343092415334,0.033522498577715804,0.033331566231278274,0.03314063388484074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.040218490033236944,0.08142619398399818,0.30682536491265516,0.08171756545399071,0.28292269415695515,0.14800786659322826,0.013093039029501402,0.014177983820823054,0.015262928612144703,0.016347873403466353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14163544352043841,0.059032165046534794,0.16807345801036183,0.22634179522641276,0.28461013244246364,0.03175499024202576,0.030636164372973344,0.029517338503920926,0.028398512634868516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41580653155786884,0.2890129533225023,0.08811885302758045,0.0336115026925943,0.020944619862016595,0.08829736605480784,0.05083517984581254,0.01337299363681724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0033258283121155906,0.2789924182216784,0.35526100524276233,0.01838682017741379,0.04192490358652489,0.02218638132037245,0.05774696451670831,0.09330754771304418,0.12886813090938007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0020276352266408093,0.04794074657001455,0.05308812619317532,0.004670048813377961,0.10578733406369216,0.20690461931400633,0.1821009205703131,0.15729722182661984,0.13249352308292658,0.10768982433923334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23383362793256315,0.6037495761292824,0.13054847567170508,0.007447226877364822,0.024421093389084495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11115504744665063,0.05604337791480533,0.17501934022603396,0.06130066135993834,0.04302939279939729,0.2059588781920656,0.15832465712135024,0.11069043605063487,0.0630562149799195,0.015421993909204132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4690016523162357,0.2511306980562124,0.097247074284706,0.0753965836457811,0.060873525114281964,0.04635046658278284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2411125922722293,0.5319251620679214,0.15219921237213554,0.024898582082027637,0.024921011095904548,0.02494344010978146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018489398529716462,0.19059640976937356,0.7517272838780154,0.039186907822894676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07222469507842451,0.6381724480864713,0.12961516907357803,0.15998768776152605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11911120275370167,0.4092687145261195,0.38472864264143375,0.046079064184898974,0.009263183561949013,0.013604125297948714,0.01794506703394842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18711704820264483,0.06897036480620744,0.042984444198252356,0.24797086233038254,0.45295728046251277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6792883041002407,0.11719814014579573,0.09251799603189179,0.06783785191798786,0.04315770780408393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07608173414075778,0.6798841594461215,0.2358505717719442,0.008183534641176602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1592702731891413,0.21159677894062362,0.10278020649570413,0.09456107009039574,0.08634193368508736,0.07812279727977894,0.06990366087447056,0.06168452446916217,0.05346538806385378,0.045246251658545386,0.037027115253237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6618426962940714,0.3381573037059285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3718972097888553,0.5482256846048164,0.07987710560632832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35693708738656393,0.41589423101678114,0.047723254952431654,0.09026791243450871,0.08917751420971458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29014394592641685,0.4819124463975033,0.17387456098725104,0.054069046688828726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36146772354278855,0.23318168170854678,0.09706628634977127,0.2111434788067763,0.09714082959211719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3115573662053272,0.6884426337946729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2749564462065743,0.5665536755410131,0.1584898782524127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1799920589596595,0.02624140234320781,0.7390721227453014,0.054694415951831284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01641610143686886,0.10599880101203837,0.854111731232548,0.023473366318544783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.49830421331784797,0.33276807110594936,0.16723192889405067,0.0016957866821520568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02105799892322043,0.5113008250606348,0.36856643791075927,0.0394803613182033,0.03302491270179521,0.02656946408538712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21949374401370517,0.14408645906446294,0.30661122095241067,0.20827370647110888,0.10993619198980709,0.011598677508505335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009037959404088853,0.271749470725214,0.19050180033011793,0.23973752329023237,0.28897324625034687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15999944930590265,0.4027759327744486,0.14168813321180607,0.1145665283978679,0.08744492358392975,0.06032331876999158,0.03320171395605341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19202846653546007,0.32984920355848935,0.47812232990605064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.665510849832503,0.3333333333333333,0.001155816834163738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03958189022438406,0.9123003018214122,0.021877662142565684,0.026240145811638093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6020406151640877,0.39795938483591226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19398945751121544,0.3433509041479743,0.2686701808295949,0.19398945751121544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23014035279808706,0.5889232238222634,0.18093642337964969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.49624452987746465,0.5037554701225354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29644889899668186,0.3653696178208869,0.3381814831824313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13716895449859648,0.1818610953324464,0.6809699501689572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10891470941158064,0.2815722865795636,0.591913118072,0.01759988593685584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3816801130761051,0.3333333333333333,0.2849865535905615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38168011307610517,0.33333333333333337,0.2849865535905615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5687854952460929,0.43121450475390705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5688053460394663,0.43119465396053375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +shopping,True,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +shopping,True,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +shopping,True,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +shopping,True,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +shopping,True,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +shopping,True,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +shopping,True,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +shopping,True,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +shopping,True,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +shopping,True,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +shopping,True,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +shopping,True,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +shopping,True,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +shopping,True,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +shopping,True,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +shopping,True,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +shopping,True,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +shopping,True,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +shopping,True,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +shopping,True,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +shopping,True,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +shopping,True,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +shopping,True,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 shopping,FALSE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 shopping,FALSE,1,2,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 shopping,FALSE,1,3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -1535,198 +1535,198 @@ shopping,FALSE,48,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, shopping,FALSE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 shopping,FALSE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 shopping,FALSE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -school,TRUE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,3,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,4,2,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,5,2,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,6,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2818511858080679,0.7181488141919321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,6,4,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.11058352584059877,0.07958612567288173,0.1013923635778153,0.015972693107552973,0.5950849235820954,0.027694633396076765,0.02925807386295882,0.040427660960020186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12826790763475898,0.21099654839198428,0.19267148343251625,0.17434641847304821,0.15602135351358018,0.13769628855411215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33151546871631776,0.22940509438578208,0.021822585925921408,0.051219193135622475,0.076322488183034,0.05174536267245475,0.02716823716187549,0.014608619484500622,0.03350144031046892,0.06159421912494342,0.015589196063039247,0.015206954084839457,0.014824712106639664,0.014442470128439872,0.01406022815024008,0.013677986172040288,0.013295744193840496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.016197193016760467,0.2233583459659262,0.10540652143843719,0.06060634436194851,0.04983680824416763,0.1386599846989618,0.10058016017195391,0.06250033564494603,0.02442051111793814,0.07287817331296938,0.06069835699414982,0.04851854067533026,0.03633872435651069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02609989708865102,0.07543354176379541,0.12476718643893978,0.17410083111408417,0.22343447578922856,0.19986618119817656,0.17629788660712453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45525364083906916,0.3610457454267236,0.015997040182738707,0.03808760807989651,0.021747351223511707,0.005407094367126908,0.008030458534126221,0.010653822701125531,0.013277186868124843,0.022578448784974156,0.01824707272282162,0.013915696660669089,0.009584320598516556,0.005252944536364024,0.0009215684742114916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2566616801270992,0.2379890001995515,0.0022951041584293487,0.023682801166938897,0.04507049817544844,0.066458195183958,0.08784589219246754,0.10923358920097709,0.009901255012145442,0.05833871243306912,0.10252327214991559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4128675406454507,0.003452103691048744,0.030260091001391987,0.05706807831173522,0.08387606562207846,0.1106840529324217,0.13749204024276496,0.16430002755310819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5366031264884923,0.2795309076545796,0.04444471947666817,0.01836968968895909,0.014934238796906507,0.011498787904853924,0.008063337012801342,0.008973225454169335,0.009883113895537327,0.009830151622618438,0.009777189349699553,0.009724227076780665,0.009671264803861778,0.00961830253094289,0.009565340258024005,0.009512377985105118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.026140454662651302,0.37960304048473104,0.5079553959328509,0.025426271242503733,0.060874837677263184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,10,4,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4819337114284658,0.3132897364349169,0.05945565177025674,0.033283942379280784,0.007112232988304835,0.007254897612874508,0.0073975622374441805,0.007540226862013853,0.007682891486583526,0.008442495286361177,0.00920209908613883,0.009961702885916484,0.010721306685694135,0.011480910485471786,0.01224051428524944,0.013000118085027091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2503982860233734,0.14447405182640438,0.13183032595536306,0.1447980523434914,0.15776577873161973,0.17073350511974808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5542229460813417,0.32220543898528964,0.030690291488154515,0.0240357438624788,0.021306004275760806,0.018576264689042808,0.015846525102324812,0.013116785515606818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03194679263553198,0.06033430915696272,0.08872182567839347,0.1171093421998242,0.14549685872125492,0.17388437524268566,0.14142334991948025,0.1089623245962748,0.0765012992730694,0.04404027394986399,0.011579248626658583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22365185364165507,0.18408400309729422,0.16220694494893287,0.14032988680057149,0.11845282865221013,0.09657577050384876,0.07469871235548739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29985108678332073,0.24992554339166037,0.2,0.15007445660833965,0.10014891321667926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23356354207201832,0.3333333333333333,0.43310312459464834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6068215335998088,0.3931784664001911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5527822792497566,0.4472177207502433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6119782310047526,0.1314216469106583,0.25660012208458916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6251890696747548,0.2737103054665126,0.10110062485873252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4013101721747066,0.0896402988474801,0.5090495289778133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -school,TRUE,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -school,TRUE,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -school,TRUE,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -school,TRUE,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -school,TRUE,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -school,TRUE,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -school,TRUE,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -school,TRUE,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -school,TRUE,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -school,TRUE,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -school,TRUE,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -school,TRUE,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -school,TRUE,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -school,TRUE,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -school,TRUE,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -school,TRUE,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -school,TRUE,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -school,TRUE,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -school,TRUE,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -school,TRUE,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -school,TRUE,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -school,TRUE,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -school,TRUE,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -school,TRUE,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -school,TRUE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -school,TRUE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -school,TRUE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +school,True,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,3,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,4,2,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,5,2,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,6,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2818511858080679,0.7181488141919321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,6,4,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.11058352584059877,0.07958612567288173,0.1013923635778153,0.015972693107552973,0.5950849235820954,0.027694633396076765,0.02925807386295882,0.040427660960020186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12826790763475898,0.21099654839198428,0.19267148343251625,0.17434641847304821,0.15602135351358018,0.13769628855411215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33151546871631776,0.22940509438578208,0.021822585925921408,0.051219193135622475,0.076322488183034,0.05174536267245475,0.02716823716187549,0.014608619484500622,0.03350144031046892,0.06159421912494342,0.015589196063039247,0.015206954084839457,0.014824712106639664,0.014442470128439872,0.01406022815024008,0.013677986172040288,0.013295744193840496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.016197193016760467,0.2233583459659262,0.10540652143843719,0.06060634436194851,0.04983680824416763,0.1386599846989618,0.10058016017195391,0.06250033564494603,0.02442051111793814,0.07287817331296938,0.06069835699414982,0.04851854067533026,0.03633872435651069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02609989708865102,0.07543354176379541,0.12476718643893978,0.17410083111408417,0.22343447578922856,0.19986618119817656,0.17629788660712453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45525364083906916,0.3610457454267236,0.015997040182738707,0.03808760807989651,0.021747351223511707,0.005407094367126908,0.008030458534126221,0.010653822701125531,0.013277186868124843,0.022578448784974156,0.01824707272282162,0.013915696660669089,0.009584320598516556,0.005252944536364024,0.0009215684742114916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2566616801270992,0.2379890001995515,0.0022951041584293487,0.023682801166938897,0.04507049817544844,0.066458195183958,0.08784589219246754,0.10923358920097709,0.009901255012145442,0.05833871243306912,0.10252327214991559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4128675406454507,0.003452103691048744,0.030260091001391987,0.05706807831173522,0.08387606562207846,0.1106840529324217,0.13749204024276496,0.16430002755310819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5366031264884923,0.2795309076545796,0.04444471947666817,0.01836968968895909,0.014934238796906507,0.011498787904853924,0.008063337012801342,0.008973225454169335,0.009883113895537327,0.009830151622618438,0.009777189349699553,0.009724227076780665,0.009671264803861778,0.00961830253094289,0.009565340258024005,0.009512377985105118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.026140454662651302,0.37960304048473104,0.5079553959328509,0.025426271242503733,0.060874837677263184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,10,4,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4819337114284658,0.3132897364349169,0.05945565177025674,0.033283942379280784,0.007112232988304835,0.007254897612874508,0.0073975622374441805,0.007540226862013853,0.007682891486583526,0.008442495286361177,0.00920209908613883,0.009961702885916484,0.010721306685694135,0.011480910485471786,0.01224051428524944,0.013000118085027091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2503982860233734,0.14447405182640438,0.13183032595536306,0.1447980523434914,0.15776577873161973,0.17073350511974808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5542229460813417,0.32220543898528964,0.030690291488154515,0.0240357438624788,0.021306004275760806,0.018576264689042808,0.015846525102324812,0.013116785515606818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03194679263553198,0.06033430915696272,0.08872182567839347,0.1171093421998242,0.14549685872125492,0.17388437524268566,0.14142334991948025,0.1089623245962748,0.0765012992730694,0.04404027394986399,0.011579248626658583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22365185364165507,0.18408400309729422,0.16220694494893287,0.14032988680057149,0.11845282865221013,0.09657577050384876,0.07469871235548739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29985108678332073,0.24992554339166037,0.2,0.15007445660833965,0.10014891321667926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23356354207201832,0.3333333333333333,0.43310312459464834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6068215335998088,0.3931784664001911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5527822792497566,0.4472177207502433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6119782310047526,0.1314216469106583,0.25660012208458916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6251890696747548,0.2737103054665126,0.10110062485873252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4013101721747066,0.0896402988474801,0.5090495289778133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +school,True,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +school,True,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +school,True,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +school,True,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +school,True,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +school,True,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +school,True,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +school,True,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +school,True,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +school,True,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +school,True,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +school,True,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +school,True,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +school,True,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +school,True,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +school,True,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +school,True,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +school,True,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +school,True,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +school,True,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +school,True,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +school,True,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +school,True,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +school,True,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +school,True,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +school,True,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +school,True,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +school,True,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +school,True,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +school,True,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +school,True,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 school,FALSE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 school,FALSE,1,2,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 school,FALSE,1,3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -1919,198 +1919,198 @@ school,FALSE,48,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. school,FALSE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 school,FALSE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 school,FALSE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othmaint,TRUE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,2,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,2,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,2,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,3,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,4,2,0.0,0.0,0.0,0.0,0.08251411197460912,0.19417137065820306,0.305828629341797,0.4174858880253909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,4,3,0.0,0.0,0.0,0.0,0.0,0.4553276068862396,0.5446723931137604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,4,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,5,2,0.0,0.0,0.0,0.0,0.10340357292994391,0.5192398186617763,0.2988654756900187,0.07849113271826108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,5,3,0.0,0.0,0.0,0.0,0.0,0.21642572510150793,0.3333333333333333,0.4502409415651587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,5,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3246385876522619,0.675361412347738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,6,2,0.0,0.0,0.0,0.0,0.0,0.0877158767547373,0.06295614058088753,0.010014429412199804,0.025579690837062623,0.03723284808514445,0.006445926628235455,0.028184087025615985,0.049167664426746444,0.07015124182787688,0.09113481922900735,0.0839974595876953,0.07686009994638326,0.06972274030507122,0.0625853806637592,0.05544802102244716,0.04831066138113512,0.04117330173982308,0.034035942098511046,0.026898582457199015,0.01976122281588697,0.012623863174574933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,6,3,0.0,0.0,0.0,0.0,0.0,0.0,0.17944605609475578,0.30268233348736534,0.14059820873437814,0.17262387013929298,0.2046495315442078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,6,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23864642010493725,0.21932321005246863,0.2,0.1806767899475314,0.16135357989506277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.24691334280879146,0.31682806348063924,0.0333056810660552,0.20625653872670474,0.019825531189556087,0.01980264567573657,0.04204032075867305,0.024614917646595107,0.09041295864724855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05234272743082279,0.15023213223044377,0.09316096501912792,0.03608979780781204,0.059485093657714504,0.0419428920035115,0.15467290957241514,0.06729410192515205,0.13697867238709013,0.10312278752119677,0.06926690265530343,0.03541101778941009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03844497301085298,0.04917418774463303,0.0599034024784131,0.07063261721219316,0.08136183194597323,0.12202661747476223,0.16269140300355125,0.13919133851509286,0.11569127402663447,0.09219120953817606,0.06869114504971767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.187460055666847,0.19505678721262326,0.10500221544710032,0.03846243014494431,0.04341858207750715,0.005525496224083488,0.07324714598242765,0.07913101631390328,0.0850148866453789,0.09089875697685453,0.09678262730833015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1588087904074573,0.12051459784232706,0.2273519238396892,0.1444127145237128,0.07515744544325392,0.06221516858372633,0.049272891724198756,0.05168085713470515,0.05408882254521156,0.056496787955717956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07564663355228222,0.06092909433733657,0.15644049212024144,0.17045619420538505,0.18447189629052863,0.11650499335914645,0.04853809042776427,0.01946967225231578,0.03765865836865781,0.05584764448499985,0.07403663060134187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.26272100339229687,0.2839091795655378,0.09011756775921716,0.05275368611237646,0.1063459575598336,0.024751375240267423,0.03351459455848556,0.042277813876703686,0.03309760591849404,0.07051121601678746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05650902447927385,0.11746368150398533,0.2129700594262251,0.11749488780127951,0.11997232907628545,0.1224497703512914,0.017685001908120352,0.04416385955589572,0.040410976650566616,0.05704313458414847,0.05029346974902557,0.04354380491390267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05597386975639376,0.03216210422910778,0.03326445798232534,0.03436681173554291,0.21574864223204052,0.16071757738622405,0.10568651254040756,0.05065544769459107,0.1161680457524106,0.07013089642878773,0.024093747105164855,0.041708544754056234,0.059323342402947614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22557719074563945,0.21108084358544132,0.19229939008034075,0.18871502991848363,0.07007094583577944,0.005541899759262995,0.03757872594577759,0.03333648173868321,0.021709225460276003,0.010081969181868796,0.0040082977484469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.054688839629106964,0.007997498095042476,0.2698290627361823,0.1818753926975084,0.09392172265883454,0.00596805262016064,0.01488130979750696,0.19359606558809547,0.12361270725521924,0.05362934892234301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,10,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5435245978379936,0.18343629155182314,0.13722466421094212,0.09101303687006111,0.04480140952918009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2068115931992799,0.2983812727193874,0.10765904413996653,0.07808046738782638,0.16526542446580228,0.051389301229914974,0.032466268831899465,0.013543236433883946,0.009992639009652821,0.009089142845260972,0.008185646680869123,0.007282150516477271,0.006378654352085421,0.005475158187693571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05593721764628834,0.09462720271813119,0.11935975714324189,0.22285832337300254,0.14741097793007757,0.06817084927407586,0.010401454362311019,0.01919085402992932,0.027980253697547613,0.00747952624336653,0.04471490486055312,0.04003148859975324,0.035348072338953346,0.03066465607815346,0.025981239817353573,0.02129782355655369,0.016614407295753805,0.011930991034953913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08618001856989686,0.0628520301817701,0.039524041793643334,0.013220890870046834,0.049131906211347054,0.03149052104775539,0.17916986588782852,0.13162885647982356,0.08408784707181863,0.03654683766381368,0.02844187365389837,0.02737037143238013,0.02629886921086189,0.02522736698934365,0.024155864767825407,0.023084362546307167,0.022012860324788927,0.020941358103270684,0.019869855881752444,0.018798353660234204,0.01772685143871596,0.01665534921719772,0.015583846995679483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1754752079209222,0.4111965047562206,0.0941254192591993,0.021699020559910406,0.04591201592943075,0.01147556018734366,0.044024341537435,0.03983354421753481,0.03532215621452717,0.03081076821151952,0.02629938020851188,0.021787992205504234,0.01727660420249659,0.01276521619948895,0.008253828196481306,0.0037424401934736604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0689509429777137,0.1475963413302792,0.20539443491313217,0.31573029454373214,0.09115742080267829,0.023098179077228456,0.05682249261729345,0.09124989373794257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16697594103813845,0.009971398203320067,0.3805968678228374,0.11617943158917109,0.0985541043460853,0.0809287771029995,0.09607934974699192,0.03872323480924616,0.011990895341209914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35116033959684684,0.39971431656642376,0.11558974088210872,0.06650607280309401,0.018686594235887297,0.012410729238593458,0.006134864241299618,0.005577962563147893,0.0050210608849961666,0.0044641592068444405,0.0039072575286927145,0.004911386593585914,0.005915515658479113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45562893493592116,0.263249799777858,0.04914049916699397,0.09428391744417226,0.008094907288224384,0.023559869807296418,0.021878100889951433,0.02019633197260645,0.018514563055261467,0.016832794137916482,0.015151025220571497,0.013469256303226514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07949547737776456,0.16603668071243527,0.2814316139135398,0.05842672991828158,0.07670488250396185,0.09466987718098374,0.11263487185800566,0.13059986653502756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2076755278432567,0.2895227384186399,0.06825098293528709,0.06559470960953107,0.0694965768875938,0.0958129535795121,0.008618382073380094,0.003655186238238315,0.030043351082637337,0.05643151592703636,0.04569877053099937,0.03496602513496238,0.024233279738925383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03254041192066724,0.09775852015118007,0.2867204742956459,0.015675972907500238,0.20910599334298802,0.017951357159450305,0.11628209094748643,0.04110323174887287,0.02205006074613802,0.009131882685749515,0.15168000409432136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.145893813986235,0.11752124273663088,0.08914867148702676,0.26969667718357676,0.057982940273714714,0.08046864619471326,0.1029543521157118,0.13633365602239086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23642025195353736,0.5459299550998712,0.08105964528610135,0.03726710423069601,0.04564684526542535,0.019706926458661782,0.016402484985127568,0.00917825271691755,0.00838853400366181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01034558626505543,0.25967490272113175,0.17914794773788417,0.08350274146677045,0.08301477859025679,0.04290050694733451,0.002786235304412239,0.04358161264712252,0.0843769899898328,0.03894875295901966,0.03741383166409176,0.03587891036916386,0.03434398907423597,0.032809067779308074,0.03127414648438017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1941636098361409,0.008758743236944868,0.12538335848255405,0.10701613062213305,0.08864890276171203,0.07028167490129102,0.08274376295669701,0.09520585101210301,0.10766793906750899,0.120130027122915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09167178175891046,0.5547572746363142,0.1901165812675589,0.05326554063840934,0.009036368763930734,0.09865172323446947,0.0025007297004070368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.038111475977021234,0.12749177549108606,0.14995693927014705,0.040766561001864474,0.04380571936558279,0.016650990316383275,0.03331740482935586,0.049983819342328435,0.06665023385530103,0.0833166483682736,0.09998306288124618,0.11664947739421877,0.13331589190719134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08534363871396966,0.24445735716565187,0.4035710756173341,0.07574664661197159,0.11139078180030662,0.02540500031782112,0.054085499772944946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28073309695581167,0.5154605676399941,0.07214150768072228,0.012188881017817772,0.1010210984724866,0.0020654248487539393,0.0037642829884459226,0.005463141128137907,0.00716199926782989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4281209309614634,0.3038920833054325,0.10998761039772927,0.05853769416306649,0.0070877779284037245,0.013490057081432706,0.01989233623446169,0.02629461538749067,0.032696894540519654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17357879502256712,0.1552149216277041,0.13685104823284105,0.11848717483797802,0.10012330144311499,0.08175942804825195,0.07245418990770544,0.06314895176715896,0.05384371362661245,0.044538475486065945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20759390248879178,0.5451283045310695,0.1383195618531615,0.04735579322666318,0.018638550132154846,0.02070581129965195,0.014321295922719727,0.007936780545787503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0502800245946755,0.03729884730090046,0.36473618550924525,0.31214275640589906,0.051857732773215204,0.02310316895462508,0.08510067784086082,0.05352709482047984,0.021953511800098857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07449467125553492,0.3357915128663388,0.26044628930761593,0.185101065748893,0.10975584219017014,0.03441061863144726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41292805286783046,0.2883207933586006,0.1394209464348691,0.03678570070677184,0.12254450663192802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5650891290379553,0.1680862990862289,0.06844461456240081,0.04934233898960453,0.04951077254877066,0.049679206107936795,0.049847639667102935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04202532850614832,0.06710439217869378,0.04701174280228375,0.2156526020865768,0.18564879701947104,0.15564499195236525,0.12564118688525944,0.09563738181815368,0.06563357675104789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6655689976108264,0.3333333333333333,0.0010976690558402089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24048775012208126,0.19868534560292045,0.32142217912627313,0.019286749825987992,0.041086604942411016,0.03787287831030912,0.03465915167820721,0.031445425046105306,0.028231698414003407,0.025017971781901502,0.0218042451497996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20605185536129925,0.13995053856438128,0.13774683200431623,0.39430603549907717,0.02038015861883152,0.10156457995209457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08234654046879847,0.24897887434197769,0.016627738190819065,0.3784647826535078,0.05899340726427828,0.029821156423959962,0.045705161654756445,0.061589166885552944,0.07747317211634944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29555053939590253,0.30661361722785074,0.16842038511733182,0.031379495848086525,0.012920169455161,0.012754663063484923,0.03510418651377288,0.057453709964060844,0.07980323341434879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.026236180264828626,0.2405639084320377,0.46880177694438085,0.13493672991075512,0.12946140444799772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3282014888950339,0.26544525775989064,0.20268902662474733,0.13545108444835846,0.06821314227196956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6242561295769649,0.3386326749624276,0.03711119546060755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6443690301958319,0.2564870766943367,0.09914389310983153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6049757983243805,0.3950242016756194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34206961345516007,0.6079768647260113,0.016262403728876523,0.01374638821276361,0.011230372696650698,0.008714357180537783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08500120429632037,0.4967342120248824,0.12293676754319306,0.058199532464718214,0.052862917649602825,0.04752630283448742,0.042189688019372035,0.03685307320425664,0.031516458389141244,0.026179843574025856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46735992257116626,0.3224533075237221,0.17754669247627794,0.032640077428833764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20336542853984085,0.48125346435882244,0.30214524893126743,0.013235858170069314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09762898763661358,0.2573208645634319,0.058377147604443076,0.32754057834984396,0.17383987633807269,0.020139174326301374,0.020928482360032898,0.021717790393764418,0.02250709842749594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2300959773070196,0.05610542447287373,0.24763388900513775,0.4391623535374018,0.02700235567756713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12269581584813527,0.8028988217095129,0.07440536244235182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.30786343014085943,0.4994055966797014,0.19273097317943919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5183664267478437,0.3333333333333333,0.14830023991882302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18458183718451315,0.7401956636967079,0.003873625768166768,0.06575286642247533,0.0055960069281368804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5986174073171815,0.2408599972550717,0.13379419756093952,0.02672839786680728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46774765170619126,0.4717712243218646,0.024116179076441015,0.03636494489550314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3078014498690916,0.4156185183325294,0.23073285004363617,0.045847181754743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5230777651168956,0.4769222348831044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3754118044721874,0.3922179532369998,0.23237024229081282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18810628625653603,0.2508150865840604,0.5610786271594036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20957460739832354,0.1653116053561075,0.12104860331389151,0.5040651839316774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37618202633165476,0.2838209451675753,0.33999702850077007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16456196408726353,0.6773385670796749,0.15809946883306167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2257488755088557,0.36793545936773947,0.40631566512340483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3016429969694315,0.5513081139465085,0.14704888908406016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6704840630725919,0.2281824613032204,0.022440790863974245,0.0788926847602134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4281567758547282,0.5718432241452718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7454454860547013,0.2545545139452987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.478698357591346,0.521301642408654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othmaint,TRUE,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othmaint,TRUE,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -othmaint,TRUE,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -othmaint,TRUE,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -othmaint,TRUE,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -othmaint,TRUE,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -othmaint,TRUE,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -othmaint,TRUE,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -othmaint,TRUE,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -othmaint,TRUE,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -othmaint,TRUE,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -othmaint,TRUE,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -othmaint,TRUE,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -othmaint,TRUE,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -othmaint,TRUE,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -othmaint,TRUE,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othmaint,TRUE,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othmaint,TRUE,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othmaint,TRUE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -othmaint,TRUE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othmaint,TRUE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othmaint,True,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,2,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,2,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,2,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,3,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,4,2,0.0,0.0,0.0,0.0,0.08251411197460912,0.19417137065820306,0.305828629341797,0.4174858880253909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,4,3,0.0,0.0,0.0,0.0,0.0,0.4553276068862396,0.5446723931137604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,4,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,5,2,0.0,0.0,0.0,0.0,0.10340357292994391,0.5192398186617763,0.2988654756900187,0.07849113271826108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,5,3,0.0,0.0,0.0,0.0,0.0,0.21642572510150793,0.3333333333333333,0.4502409415651587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,5,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3246385876522619,0.675361412347738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,6,2,0.0,0.0,0.0,0.0,0.0,0.0877158767547373,0.06295614058088753,0.010014429412199804,0.025579690837062623,0.03723284808514445,0.006445926628235455,0.028184087025615985,0.049167664426746444,0.07015124182787688,0.09113481922900735,0.0839974595876953,0.07686009994638326,0.06972274030507122,0.0625853806637592,0.05544802102244716,0.04831066138113512,0.04117330173982308,0.034035942098511046,0.026898582457199015,0.01976122281588697,0.012623863174574933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,6,3,0.0,0.0,0.0,0.0,0.0,0.0,0.17944605609475578,0.30268233348736534,0.14059820873437814,0.17262387013929298,0.2046495315442078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,6,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23864642010493725,0.21932321005246863,0.2,0.1806767899475314,0.16135357989506277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.24691334280879146,0.31682806348063924,0.0333056810660552,0.20625653872670474,0.019825531189556087,0.01980264567573657,0.04204032075867305,0.024614917646595107,0.09041295864724855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05234272743082279,0.15023213223044377,0.09316096501912792,0.03608979780781204,0.059485093657714504,0.0419428920035115,0.15467290957241514,0.06729410192515205,0.13697867238709013,0.10312278752119677,0.06926690265530343,0.03541101778941009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03844497301085298,0.04917418774463303,0.0599034024784131,0.07063261721219316,0.08136183194597323,0.12202661747476223,0.16269140300355125,0.13919133851509286,0.11569127402663447,0.09219120953817606,0.06869114504971767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.187460055666847,0.19505678721262326,0.10500221544710032,0.03846243014494431,0.04341858207750715,0.005525496224083488,0.07324714598242765,0.07913101631390328,0.0850148866453789,0.09089875697685453,0.09678262730833015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1588087904074573,0.12051459784232706,0.2273519238396892,0.1444127145237128,0.07515744544325392,0.06221516858372633,0.049272891724198756,0.05168085713470515,0.05408882254521156,0.056496787955717956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07564663355228222,0.06092909433733657,0.15644049212024144,0.17045619420538505,0.18447189629052863,0.11650499335914645,0.04853809042776427,0.01946967225231578,0.03765865836865781,0.05584764448499985,0.07403663060134187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.26272100339229687,0.2839091795655378,0.09011756775921716,0.05275368611237646,0.1063459575598336,0.024751375240267423,0.03351459455848556,0.042277813876703686,0.03309760591849404,0.07051121601678746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05650902447927385,0.11746368150398533,0.2129700594262251,0.11749488780127951,0.11997232907628545,0.1224497703512914,0.017685001908120352,0.04416385955589572,0.040410976650566616,0.05704313458414847,0.05029346974902557,0.04354380491390267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05597386975639376,0.03216210422910778,0.03326445798232534,0.03436681173554291,0.21574864223204052,0.16071757738622405,0.10568651254040756,0.05065544769459107,0.1161680457524106,0.07013089642878773,0.024093747105164855,0.041708544754056234,0.059323342402947614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22557719074563945,0.21108084358544132,0.19229939008034075,0.18871502991848363,0.07007094583577944,0.005541899759262995,0.03757872594577759,0.03333648173868321,0.021709225460276003,0.010081969181868796,0.0040082977484469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.054688839629106964,0.007997498095042476,0.2698290627361823,0.1818753926975084,0.09392172265883454,0.00596805262016064,0.01488130979750696,0.19359606558809547,0.12361270725521924,0.05362934892234301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,10,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5435245978379936,0.18343629155182314,0.13722466421094212,0.09101303687006111,0.04480140952918009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2068115931992799,0.2983812727193874,0.10765904413996653,0.07808046738782638,0.16526542446580228,0.051389301229914974,0.032466268831899465,0.013543236433883946,0.009992639009652821,0.009089142845260972,0.008185646680869123,0.007282150516477271,0.006378654352085421,0.005475158187693571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05593721764628834,0.09462720271813119,0.11935975714324189,0.22285832337300254,0.14741097793007757,0.06817084927407586,0.010401454362311019,0.01919085402992932,0.027980253697547613,0.00747952624336653,0.04471490486055312,0.04003148859975324,0.035348072338953346,0.03066465607815346,0.025981239817353573,0.02129782355655369,0.016614407295753805,0.011930991034953913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08618001856989686,0.0628520301817701,0.039524041793643334,0.013220890870046834,0.049131906211347054,0.03149052104775539,0.17916986588782852,0.13162885647982356,0.08408784707181863,0.03654683766381368,0.02844187365389837,0.02737037143238013,0.02629886921086189,0.02522736698934365,0.024155864767825407,0.023084362546307167,0.022012860324788927,0.020941358103270684,0.019869855881752444,0.018798353660234204,0.01772685143871596,0.01665534921719772,0.015583846995679483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1754752079209222,0.4111965047562206,0.0941254192591993,0.021699020559910406,0.04591201592943075,0.01147556018734366,0.044024341537435,0.03983354421753481,0.03532215621452717,0.03081076821151952,0.02629938020851188,0.021787992205504234,0.01727660420249659,0.01276521619948895,0.008253828196481306,0.0037424401934736604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0689509429777137,0.1475963413302792,0.20539443491313217,0.31573029454373214,0.09115742080267829,0.023098179077228456,0.05682249261729345,0.09124989373794257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16697594103813845,0.009971398203320067,0.3805968678228374,0.11617943158917109,0.0985541043460853,0.0809287771029995,0.09607934974699192,0.03872323480924616,0.011990895341209914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35116033959684684,0.39971431656642376,0.11558974088210872,0.06650607280309401,0.018686594235887297,0.012410729238593458,0.006134864241299618,0.005577962563147893,0.0050210608849961666,0.0044641592068444405,0.0039072575286927145,0.004911386593585914,0.005915515658479113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45562893493592116,0.263249799777858,0.04914049916699397,0.09428391744417226,0.008094907288224384,0.023559869807296418,0.021878100889951433,0.02019633197260645,0.018514563055261467,0.016832794137916482,0.015151025220571497,0.013469256303226514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07949547737776456,0.16603668071243527,0.2814316139135398,0.05842672991828158,0.07670488250396185,0.09466987718098374,0.11263487185800566,0.13059986653502756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2076755278432567,0.2895227384186399,0.06825098293528709,0.06559470960953107,0.0694965768875938,0.0958129535795121,0.008618382073380094,0.003655186238238315,0.030043351082637337,0.05643151592703636,0.04569877053099937,0.03496602513496238,0.024233279738925383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03254041192066724,0.09775852015118007,0.2867204742956459,0.015675972907500238,0.20910599334298802,0.017951357159450305,0.11628209094748643,0.04110323174887287,0.02205006074613802,0.009131882685749515,0.15168000409432136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.145893813986235,0.11752124273663088,0.08914867148702676,0.26969667718357676,0.057982940273714714,0.08046864619471326,0.1029543521157118,0.13633365602239086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23642025195353736,0.5459299550998712,0.08105964528610135,0.03726710423069601,0.04564684526542535,0.019706926458661782,0.016402484985127568,0.00917825271691755,0.00838853400366181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01034558626505543,0.25967490272113175,0.17914794773788417,0.08350274146677045,0.08301477859025679,0.04290050694733451,0.002786235304412239,0.04358161264712252,0.0843769899898328,0.03894875295901966,0.03741383166409176,0.03587891036916386,0.03434398907423597,0.032809067779308074,0.03127414648438017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1941636098361409,0.008758743236944868,0.12538335848255405,0.10701613062213305,0.08864890276171203,0.07028167490129102,0.08274376295669701,0.09520585101210301,0.10766793906750899,0.120130027122915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09167178175891046,0.5547572746363142,0.1901165812675589,0.05326554063840934,0.009036368763930734,0.09865172323446947,0.0025007297004070368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.038111475977021234,0.12749177549108606,0.14995693927014705,0.040766561001864474,0.04380571936558279,0.016650990316383275,0.03331740482935586,0.049983819342328435,0.06665023385530103,0.0833166483682736,0.09998306288124618,0.11664947739421877,0.13331589190719134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08534363871396966,0.24445735716565187,0.4035710756173341,0.07574664661197159,0.11139078180030662,0.02540500031782112,0.054085499772944946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28073309695581167,0.5154605676399941,0.07214150768072228,0.012188881017817772,0.1010210984724866,0.0020654248487539393,0.0037642829884459226,0.005463141128137907,0.00716199926782989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4281209309614634,0.3038920833054325,0.10998761039772927,0.05853769416306649,0.0070877779284037245,0.013490057081432706,0.01989233623446169,0.02629461538749067,0.032696894540519654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17357879502256712,0.1552149216277041,0.13685104823284105,0.11848717483797802,0.10012330144311499,0.08175942804825195,0.07245418990770544,0.06314895176715896,0.05384371362661245,0.044538475486065945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20759390248879178,0.5451283045310695,0.1383195618531615,0.04735579322666318,0.018638550132154846,0.02070581129965195,0.014321295922719727,0.007936780545787503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0502800245946755,0.03729884730090046,0.36473618550924525,0.31214275640589906,0.051857732773215204,0.02310316895462508,0.08510067784086082,0.05352709482047984,0.021953511800098857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07449467125553492,0.3357915128663388,0.26044628930761593,0.185101065748893,0.10975584219017014,0.03441061863144726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41292805286783046,0.2883207933586006,0.1394209464348691,0.03678570070677184,0.12254450663192802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5650891290379553,0.1680862990862289,0.06844461456240081,0.04934233898960453,0.04951077254877066,0.049679206107936795,0.049847639667102935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04202532850614832,0.06710439217869378,0.04701174280228375,0.2156526020865768,0.18564879701947104,0.15564499195236525,0.12564118688525944,0.09563738181815368,0.06563357675104789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6655689976108264,0.3333333333333333,0.0010976690558402089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24048775012208126,0.19868534560292045,0.32142217912627313,0.019286749825987992,0.041086604942411016,0.03787287831030912,0.03465915167820721,0.031445425046105306,0.028231698414003407,0.025017971781901502,0.0218042451497996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20605185536129925,0.13995053856438128,0.13774683200431623,0.39430603549907717,0.02038015861883152,0.10156457995209457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08234654046879847,0.24897887434197769,0.016627738190819065,0.3784647826535078,0.05899340726427828,0.029821156423959962,0.045705161654756445,0.061589166885552944,0.07747317211634944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29555053939590253,0.30661361722785074,0.16842038511733182,0.031379495848086525,0.012920169455161,0.012754663063484923,0.03510418651377288,0.057453709964060844,0.07980323341434879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.026236180264828626,0.2405639084320377,0.46880177694438085,0.13493672991075512,0.12946140444799772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3282014888950339,0.26544525775989064,0.20268902662474733,0.13545108444835846,0.06821314227196956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6242561295769649,0.3386326749624276,0.03711119546060755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6443690301958319,0.2564870766943367,0.09914389310983153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6049757983243805,0.3950242016756194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34206961345516007,0.6079768647260113,0.016262403728876523,0.01374638821276361,0.011230372696650698,0.008714357180537783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08500120429632037,0.4967342120248824,0.12293676754319306,0.058199532464718214,0.052862917649602825,0.04752630283448742,0.042189688019372035,0.03685307320425664,0.031516458389141244,0.026179843574025856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46735992257116626,0.3224533075237221,0.17754669247627794,0.032640077428833764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20336542853984085,0.48125346435882244,0.30214524893126743,0.013235858170069314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09762898763661358,0.2573208645634319,0.058377147604443076,0.32754057834984396,0.17383987633807269,0.020139174326301374,0.020928482360032898,0.021717790393764418,0.02250709842749594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2300959773070196,0.05610542447287373,0.24763388900513775,0.4391623535374018,0.02700235567756713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12269581584813527,0.8028988217095129,0.07440536244235182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.30786343014085943,0.4994055966797014,0.19273097317943919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5183664267478437,0.3333333333333333,0.14830023991882302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18458183718451315,0.7401956636967079,0.003873625768166768,0.06575286642247533,0.0055960069281368804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5986174073171815,0.2408599972550717,0.13379419756093952,0.02672839786680728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46774765170619126,0.4717712243218646,0.024116179076441015,0.03636494489550314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3078014498690916,0.4156185183325294,0.23073285004363617,0.045847181754743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5230777651168956,0.4769222348831044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3754118044721874,0.3922179532369998,0.23237024229081282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18810628625653603,0.2508150865840604,0.5610786271594036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20957460739832354,0.1653116053561075,0.12104860331389151,0.5040651839316774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37618202633165476,0.2838209451675753,0.33999702850077007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16456196408726353,0.6773385670796749,0.15809946883306167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2257488755088557,0.36793545936773947,0.40631566512340483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3016429969694315,0.5513081139465085,0.14704888908406016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6704840630725919,0.2281824613032204,0.022440790863974245,0.0788926847602134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4281567758547282,0.5718432241452718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7454454860547013,0.2545545139452987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.478698357591346,0.521301642408654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othmaint,True,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othmaint,True,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +othmaint,True,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +othmaint,True,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +othmaint,True,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +othmaint,True,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +othmaint,True,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +othmaint,True,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +othmaint,True,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +othmaint,True,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +othmaint,True,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +othmaint,True,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +othmaint,True,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +othmaint,True,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +othmaint,True,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +othmaint,True,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +othmaint,True,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +othmaint,True,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +othmaint,True,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +othmaint,True,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othmaint,True,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othmaint,True,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othmaint,True,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +othmaint,True,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othmaint,True,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 othmaint,FALSE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 othmaint,FALSE,1,2,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 othmaint,FALSE,1,3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -2303,198 +2303,198 @@ othmaint,FALSE,48,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, othmaint,FALSE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.025763405017451835,0.03525248420676535,0.04474156339607886,0.05423064258539238,0.06371972177470589,0.052531853116484756,0.041343984458263636,0.030156115800042498,0.030006367851650603,0.029856619903258712,0.029706871954866817,0.029557124006474922,0.02940737605808303,0.02925762810969114,0.02910788016129924,0.02895813221290735,0.028808384264515458,0.028658636316123563,0.02850888836773167,0.028359140419339776,0.02820939247094788,0.02805964452255599,0.027909896574164098,0.0277601486257722,0.02761040067738031,0.027460652728988413,0.027310904780596522,0.02716115683220463,0.027011408883812732,0.02686166093542084,0.02671191298702895,0.0 othmaint,FALSE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 othmaint,FALSE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,3,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,4,2,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,5,2,0.0,0.0,0.0,0.0,0.031751934515880424,0.9682480654841197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,6,2,0.0,0.0,0.0,0.0,0.0,0.17032285402499478,0.04225409142521806,0.08066426458679786,0.11907443774837764,0.15748461090995744,0.19589478407153724,0.234304957233117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,6,3,0.0,0.0,0.0,0.0,0.0,0.13685299190411948,0.08540190088181362,0.033950809859507755,0.05966935453557978,0.08538789921165181,0.11110644388772384,0.13682498856379585,0.1625435332398679,0.1882620779159399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,6,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.07074790344729151,0.2538234476135568,0.005517578147069041,0.11673633040516744,0.11470253629590597,0.11266874218664451,0.11063494807738303,0.10860115396812156,0.1065673598588601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41817903563032727,0.43067963959304234,0.15114132477663056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.032479835173468585,0.2546435906993765,0.02208892009478977,0.0417981365196412,0.006389356527158556,0.10506284484967657,0.03657515312505515,0.01258780552034809,0.07903041759520642,0.07210386784871942,0.06517731810223241,0.058250768355745414,0.05132421860925841,0.04439766886277141,0.03747111911628442,0.03054456936979741,0.023618019623310407,0.016691469876823403,0.009764920130336406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018631844329463267,0.07158854411581861,0.12454524390217395,0.17750194368852928,0.23045864347488462,0.20257747465467163,0.17469630583445867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22186922170014417,0.2674877941232583,0.05028850396060141,0.010820086524444597,0.06316034100665982,0.05038362367343527,0.03760690634021071,0.024830189006986154,0.0120534716737616,0.01979290492253837,0.019846649768660154,0.01990039461478194,0.019954139460903724,0.020007884307025506,0.02006162915314729,0.020115373999269073,0.020169118845390858,0.020222863691512643,0.020276608537634425,0.02033035338375621,0.020384098229877995,0.02043784307599978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.26053064594775455,0.03164182752219579,0.06276568386345904,0.0030518761385755857,0.1852037335852751,0.022378395723772922,0.020721170014529906,0.04618078417380475,0.03192319078976239,0.01766559740572003,0.03656908497096439,0.05547257253620874,0.04967212359244144,0.04387167464867414,0.038071225704906834,0.03227077676113954,0.026470327817372238,0.020669878873604934,0.01486942992983764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1699466281817992,0.09561685481654109,0.02128708145128296,0.0020531537217789975,0.008554124569485608,0.015055095417192218,0.013940194622316509,0.12459605751740957,0.10121408909567703,0.07783212067394447,0.05445015225221193,0.03106818383047938,0.03231839642050648,0.033568609010533594,0.03481882160056069,0.0360690341905878,0.037319246780614906,0.03223230824354843,0.027145369706481955,0.022058431169415475,0.016971492632348997,0.011884554095282522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15280096603779877,0.5304792914538425,0.17179768464697703,0.03801378461401535,0.012936682175015196,0.0041984634640748275,0.020336441002556816,0.036474418541038806,0.023145562201906476,0.009816705862774146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21091190522658154,0.5137696488718677,0.1305689690977883,0.1342152408675754,0.010534235936186926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,10,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8885812312979011,0.014215801975455388,0.07071862064874675,0.026484346077896802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.392392980733672,0.28193173429248936,0.20215283505538378,0.009751512228118186,0.004499464601265974,0.00890130302376533,0.10037017006530542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2311167071751989,0.13219350665526272,0.06281045369463786,0.05137712431434401,0.03994379493405016,0.02270234397780812,0.033753608180655835,0.04480487238350355,0.05585613658635127,0.12709919622817958,0.1983422558700079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09147359527580143,0.15864935481512324,0.14442132962553506,0.09717861897808054,0.04993590833062599,0.055845299459976135,0.06966360580862178,0.08348191215726744,0.09730021850591308,0.08311679184965609,0.06893336519339911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35376119268330397,0.46781355837285404,0.05760693117238653,0.036786395524606094,0.015965859876825646,0.013629576111869721,0.028189735050720484,0.0103202555016127,0.008748917069144525,0.00717757863667635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03265357241376605,0.3523731920988302,0.43334416166143624,0.015134359903382256,0.020924230612982878,0.07716864866120912,0.04285591595526289,0.008543183249316652,0.017002735443813543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03461003564584761,0.32719238750687024,0.039545583347533234,0.03023747512929959,0.35540321809784553,0.18947150612348307,0.023539794149120663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1468424431970819,0.30102139869084416,0.05043381973386156,0.037328829861095154,0.03305200727033197,0.0287751846795688,0.18417451128267595,0.09774313070180977,0.011311750120943605,0.014828961711414873,0.01834617330188614,0.021863384892357413,0.025380596482828678,0.028897808073299946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04676972916634739,0.01984257379908864,0.0021161722590718646,0.010169089024701174,0.004889469257949018,0.11142468231435515,0.2179598953707613,0.18200133013234646,0.14604276489393164,0.11008419965551682,0.07412563441710199,0.038167069178687146,0.0022085039402723237,0.034198886589869075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3610447828187589,0.25711100840111484,0.15317723398347083,0.11469977945784465,0.07622232493221846,0.037744870406592274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24096591472033757,0.2030864086036905,0.2513618744190085,0.11292555261109775,0.06369513129245304,0.12796511835341268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16471364513644454,0.15333008439252818,0.0689270740804195,0.11134847131838053,0.02418425160317105,0.10478294075928535,0.15916549115635203,0.21354804155341872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07877267611187957,0.08215999949370306,0.08554732287552655,0.08838996216750354,0.09123260145948053,0.09407524075145753,0.09691788004343452,0.06991159609644547,0.04290531214945643,0.01589902820246739,0.05031424420934123,0.08472946021621508,0.11914467622308893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5539474933722065,0.3283369235017958,0.03360432052223066,0.03741593155066581,0.04669533105310132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20696139950651768,0.15076693438704375,0.09457246926756982,0.059479953195273896,0.14411162870531566,0.2287433042153574,0.0367033916370657,0.07866091908585611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05990671690733508,0.09949316127391641,0.13907960564049773,0.17866605000707908,0.15396766441613083,0.12926927882518258,0.10457089323423434,0.0798725076432861,0.05517412205233785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4745592657481185,0.1442153121823844,0.12445833346562375,0.08029960757823362,0.036140881690843486,0.0414582074012211,0.046775533111598724,0.05209285882197634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23867932273087733,0.18394037005964692,0.4188819367497591,0.15849837045971676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1217355481684114,0.09790604370323067,0.07407653923804994,0.05024703477286921,0.037112850774833096,0.08415990879916042,0.13120696682348773,0.17825402484781508,0.2253010828721424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.32655510993838555,0.13223982602719694,0.09676794900861556,0.03256450781808162,0.042873344022806896,0.053182180227532155,0.06349101643225744,0.0737998526369827,0.08410868884170798,0.09441752504643323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02928864731963616,0.23318426615876073,0.056312633779267665,0.0630941022875264,0.06987557079578514,0.07665703930404388,0.08343850781230261,0.0632941653507843,0.04314982288926601,0.023005480427747707,0.05461936752635376,0.08623325462495982,0.11784714172356588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08153723831780572,0.06452685058769903,0.060514644379194515,0.07372245709565663,0.08693026981211875,0.10013808252858086,0.11334589524504297,0.12655370796150509,0.1397615206779672,0.1529693333944293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25605333050653545,0.3096363841537036,0.05745638207052895,0.14477009511325364,0.23208380815597834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12030502492376005,0.16015251246188003,0.19999999999999998,0.23984748753811994,0.2796949750762399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1115366342244243,0.19151064070200266,0.014424282814649077,0.023939575345901,0.033454867877152926,0.041420650166283185,0.05191239294148335,0.06240413571668351,0.07289587849188368,0.08338762126708384,0.093879364042284,0.10437110681748417,0.11486284959268432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41773532603100155,0.5822646739689985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11084175410240663,0.4581920416789278,0.03163604302430618,0.017541690270097197,0.0034473375158882084,0.003792186966715026,0.004137036417541844,0.004481885868368661,0.004826735319195479,0.005171584770022296,0.014354619320482992,0.11864390135551026,0.2229331833905375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8874172670208454,0.029870531788149825,0.037527577659718224,0.045184623531286626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8274937967934014,0.031194078966259607,0.033908702801621005,0.03662332663698241,0.039337950472343806,0.023593364933911853,0.007848779395479899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.044104181821633726,0.1494521482738447,0.3355123284107949,0.11018834288303837,0.02864181389501367,0.03627278062575618,0.043903747356498685,0.05153471408724119,0.05916568081798369,0.0667966475487262,0.07442761427946872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08349999930517689,0.9165000006948231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5022987838453455,0.47188216158747404,0.005164491269901776,0.004079528892264171,0.0029945665146265676,0.004150719059117393,0.009429748831270447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028378166247076946,0.49590834638908493,0.24621688771267444,0.044987133471350894,0.06602576252140809,0.0527601652037715,0.03949456788613492,0.026228970568498332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4503892359801097,0.14852527094368909,0.12575588016753947,0.10298648939138987,0.08021709861524023,0.057447707839090624,0.03467831706294102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17132802870965688,0.5274287926040496,0.00440829809124006,0.188378363470496,0.09741388632600224,0.006449409181508498,0.004593221617046794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07493352058679062,0.3170881254293178,0.11956419262890343,0.3006641455824013,0.15517412153398524,0.009684097485569157,0.02289179675303245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.229569522947386,0.12837647958081924,0.17697226213200282,0.2255680446831864,0.15270297078436076,0.07983789688553516,0.006972822986709557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013605074510886783,0.6912107682153137,0.07777490734486782,0.08221178280598065,0.06363880259014883,0.045065822374317006,0.026492842158485182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7921939809975214,0.021087899938542085,0.025305052294872774,0.16141306676906378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18184512599527042,0.8181548740047296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29412023963323425,0.27514033514908887,0.05665743518614721,0.04016954265217699,0.2764559173131364,0.024894578097848452,0.01915217668873875,0.013409775279629044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05872394224128767,0.0717592631132457,0.1839040815603308,0.04917758457172034,0.08915452406951771,0.21214504283780514,0.3351355616060926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7405065559914191,0.25949344400858093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06449424612739452,0.2428271228429911,0.4215191296818575,0.23089287700987146,0.040266624337885415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010680701291189462,0.07196947911114145,0.019081013129575202,0.7503564231024947,0.013335840199462408,0.06215884418389441,0.04485884772204558,0.027558851260196745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07729014132367676,0.17685648158402553,0.2764228218443743,0.21644983679684104,0.1564768517493078,0.09650386670177458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.027159482546833227,0.7039667001621386,0.09125226712592198,0.15410614388371346,0.023515406281392703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4458323436956409,0.09223650345251738,0.17731030037699444,0.24472863536046915,0.039892217114378174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09433449612027744,0.23828399749287407,0.36807010657858036,0.08725287479230098,0.027707587794067165,0.05413390900613083,0.0805602302181945,0.04965679799757463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8258880238367611,0.08677919994857687,0.08733277621466205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2005187878431594,0.31303024589453443,0.1797329288927901,0.25324631137828635,0.018472041773142194,0.03499968421808735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03147824563814513,0.15420581852718007,0.3958729267627987,0.4184430090718761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38466171011585437,0.5047421515469533,0.07208141729517625,0.02685779045608156,0.011656930585934434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4729820592396845,0.3975281066771094,0.1294898340832061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21323051322341724,0.6470505390228997,0.07675889314379175,0.06296005460989129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.48560273386253044,0.39923461877870803,0.11516264735876154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09369766030835883,0.24853964891516003,0.6577626907764811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1329958583288804,0.33333333333333337,0.5336708083377864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6776398562148526,0.2794665704471812,0.02141943450027553,0.014297857779322054,0.007176281058368575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06819196057430808,0.2950602206137999,0.1455250256452413,0.4912227931666508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othdiscr,TRUE,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.036662143392077684,0.9633378566079224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othdiscr,TRUE,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -othdiscr,TRUE,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -othdiscr,TRUE,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -othdiscr,TRUE,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -othdiscr,TRUE,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -othdiscr,TRUE,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -othdiscr,TRUE,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -othdiscr,TRUE,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -othdiscr,TRUE,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -othdiscr,TRUE,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -othdiscr,TRUE,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -othdiscr,TRUE,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -othdiscr,TRUE,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -othdiscr,TRUE,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -othdiscr,TRUE,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othdiscr,TRUE,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othdiscr,TRUE,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othdiscr,TRUE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -othdiscr,TRUE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -othdiscr,TRUE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othdiscr,True,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,3,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,4,2,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,5,2,0.0,0.0,0.0,0.0,0.031751934515880424,0.9682480654841197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,6,2,0.0,0.0,0.0,0.0,0.0,0.17032285402499478,0.04225409142521806,0.08066426458679786,0.11907443774837764,0.15748461090995744,0.19589478407153724,0.234304957233117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,6,3,0.0,0.0,0.0,0.0,0.0,0.13685299190411948,0.08540190088181362,0.033950809859507755,0.05966935453557978,0.08538789921165181,0.11110644388772384,0.13682498856379585,0.1625435332398679,0.1882620779159399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,6,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.07074790344729151,0.2538234476135568,0.005517578147069041,0.11673633040516744,0.11470253629590597,0.11266874218664451,0.11063494807738303,0.10860115396812156,0.1065673598588601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41817903563032727,0.43067963959304234,0.15114132477663056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.032479835173468585,0.2546435906993765,0.02208892009478977,0.0417981365196412,0.006389356527158556,0.10506284484967657,0.03657515312505515,0.01258780552034809,0.07903041759520642,0.07210386784871942,0.06517731810223241,0.058250768355745414,0.05132421860925841,0.04439766886277141,0.03747111911628442,0.03054456936979741,0.023618019623310407,0.016691469876823403,0.009764920130336406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018631844329463267,0.07158854411581861,0.12454524390217395,0.17750194368852928,0.23045864347488462,0.20257747465467163,0.17469630583445867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22186922170014417,0.2674877941232583,0.05028850396060141,0.010820086524444597,0.06316034100665982,0.05038362367343527,0.03760690634021071,0.024830189006986154,0.0120534716737616,0.01979290492253837,0.019846649768660154,0.01990039461478194,0.019954139460903724,0.020007884307025506,0.02006162915314729,0.020115373999269073,0.020169118845390858,0.020222863691512643,0.020276608537634425,0.02033035338375621,0.020384098229877995,0.02043784307599978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.26053064594775455,0.03164182752219579,0.06276568386345904,0.0030518761385755857,0.1852037335852751,0.022378395723772922,0.020721170014529906,0.04618078417380475,0.03192319078976239,0.01766559740572003,0.03656908497096439,0.05547257253620874,0.04967212359244144,0.04387167464867414,0.038071225704906834,0.03227077676113954,0.026470327817372238,0.020669878873604934,0.01486942992983764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1699466281817992,0.09561685481654109,0.02128708145128296,0.0020531537217789975,0.008554124569485608,0.015055095417192218,0.013940194622316509,0.12459605751740957,0.10121408909567703,0.07783212067394447,0.05445015225221193,0.03106818383047938,0.03231839642050648,0.033568609010533594,0.03481882160056069,0.0360690341905878,0.037319246780614906,0.03223230824354843,0.027145369706481955,0.022058431169415475,0.016971492632348997,0.011884554095282522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15280096603779877,0.5304792914538425,0.17179768464697703,0.03801378461401535,0.012936682175015196,0.0041984634640748275,0.020336441002556816,0.036474418541038806,0.023145562201906476,0.009816705862774146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21091190522658154,0.5137696488718677,0.1305689690977883,0.1342152408675754,0.010534235936186926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,10,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8885812312979011,0.014215801975455388,0.07071862064874675,0.026484346077896802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.392392980733672,0.28193173429248936,0.20215283505538378,0.009751512228118186,0.004499464601265974,0.00890130302376533,0.10037017006530542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2311167071751989,0.13219350665526272,0.06281045369463786,0.05137712431434401,0.03994379493405016,0.02270234397780812,0.033753608180655835,0.04480487238350355,0.05585613658635127,0.12709919622817958,0.1983422558700079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09147359527580143,0.15864935481512324,0.14442132962553506,0.09717861897808054,0.04993590833062599,0.055845299459976135,0.06966360580862178,0.08348191215726744,0.09730021850591308,0.08311679184965609,0.06893336519339911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35376119268330397,0.46781355837285404,0.05760693117238653,0.036786395524606094,0.015965859876825646,0.013629576111869721,0.028189735050720484,0.0103202555016127,0.008748917069144525,0.00717757863667635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03265357241376605,0.3523731920988302,0.43334416166143624,0.015134359903382256,0.020924230612982878,0.07716864866120912,0.04285591595526289,0.008543183249316652,0.017002735443813543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03461003564584761,0.32719238750687024,0.039545583347533234,0.03023747512929959,0.35540321809784553,0.18947150612348307,0.023539794149120663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1468424431970819,0.30102139869084416,0.05043381973386156,0.037328829861095154,0.03305200727033197,0.0287751846795688,0.18417451128267595,0.09774313070180977,0.011311750120943605,0.014828961711414873,0.01834617330188614,0.021863384892357413,0.025380596482828678,0.028897808073299946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04676972916634739,0.01984257379908864,0.0021161722590718646,0.010169089024701174,0.004889469257949018,0.11142468231435515,0.2179598953707613,0.18200133013234646,0.14604276489393164,0.11008419965551682,0.07412563441710199,0.038167069178687146,0.0022085039402723237,0.034198886589869075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3610447828187589,0.25711100840111484,0.15317723398347083,0.11469977945784465,0.07622232493221846,0.037744870406592274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24096591472033757,0.2030864086036905,0.2513618744190085,0.11292555261109775,0.06369513129245304,0.12796511835341268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16471364513644454,0.15333008439252818,0.0689270740804195,0.11134847131838053,0.02418425160317105,0.10478294075928535,0.15916549115635203,0.21354804155341872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07877267611187957,0.08215999949370306,0.08554732287552655,0.08838996216750354,0.09123260145948053,0.09407524075145753,0.09691788004343452,0.06991159609644547,0.04290531214945643,0.01589902820246739,0.05031424420934123,0.08472946021621508,0.11914467622308893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5539474933722065,0.3283369235017958,0.03360432052223066,0.03741593155066581,0.04669533105310132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20696139950651768,0.15076693438704375,0.09457246926756982,0.059479953195273896,0.14411162870531566,0.2287433042153574,0.0367033916370657,0.07866091908585611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05990671690733508,0.09949316127391641,0.13907960564049773,0.17866605000707908,0.15396766441613083,0.12926927882518258,0.10457089323423434,0.0798725076432861,0.05517412205233785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4745592657481185,0.1442153121823844,0.12445833346562375,0.08029960757823362,0.036140881690843486,0.0414582074012211,0.046775533111598724,0.05209285882197634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23867932273087733,0.18394037005964692,0.4188819367497591,0.15849837045971676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1217355481684114,0.09790604370323067,0.07407653923804994,0.05024703477286921,0.037112850774833096,0.08415990879916042,0.13120696682348773,0.17825402484781508,0.2253010828721424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.32655510993838555,0.13223982602719694,0.09676794900861556,0.03256450781808162,0.042873344022806896,0.053182180227532155,0.06349101643225744,0.0737998526369827,0.08410868884170798,0.09441752504643323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02928864731963616,0.23318426615876073,0.056312633779267665,0.0630941022875264,0.06987557079578514,0.07665703930404388,0.08343850781230261,0.0632941653507843,0.04314982288926601,0.023005480427747707,0.05461936752635376,0.08623325462495982,0.11784714172356588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08153723831780572,0.06452685058769903,0.060514644379194515,0.07372245709565663,0.08693026981211875,0.10013808252858086,0.11334589524504297,0.12655370796150509,0.1397615206779672,0.1529693333944293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25605333050653545,0.3096363841537036,0.05745638207052895,0.14477009511325364,0.23208380815597834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12030502492376005,0.16015251246188003,0.19999999999999998,0.23984748753811994,0.2796949750762399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1115366342244243,0.19151064070200266,0.014424282814649077,0.023939575345901,0.033454867877152926,0.041420650166283185,0.05191239294148335,0.06240413571668351,0.07289587849188368,0.08338762126708384,0.093879364042284,0.10437110681748417,0.11486284959268432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41773532603100155,0.5822646739689985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11084175410240663,0.4581920416789278,0.03163604302430618,0.017541690270097197,0.0034473375158882084,0.003792186966715026,0.004137036417541844,0.004481885868368661,0.004826735319195479,0.005171584770022296,0.014354619320482992,0.11864390135551026,0.2229331833905375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8874172670208454,0.029870531788149825,0.037527577659718224,0.045184623531286626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8274937967934014,0.031194078966259607,0.033908702801621005,0.03662332663698241,0.039337950472343806,0.023593364933911853,0.007848779395479899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.044104181821633726,0.1494521482738447,0.3355123284107949,0.11018834288303837,0.02864181389501367,0.03627278062575618,0.043903747356498685,0.05153471408724119,0.05916568081798369,0.0667966475487262,0.07442761427946872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08349999930517689,0.9165000006948231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5022987838453455,0.47188216158747404,0.005164491269901776,0.004079528892264171,0.0029945665146265676,0.004150719059117393,0.009429748831270447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028378166247076946,0.49590834638908493,0.24621688771267444,0.044987133471350894,0.06602576252140809,0.0527601652037715,0.03949456788613492,0.026228970568498332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4503892359801097,0.14852527094368909,0.12575588016753947,0.10298648939138987,0.08021709861524023,0.057447707839090624,0.03467831706294102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17132802870965688,0.5274287926040496,0.00440829809124006,0.188378363470496,0.09741388632600224,0.006449409181508498,0.004593221617046794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07493352058679062,0.3170881254293178,0.11956419262890343,0.3006641455824013,0.15517412153398524,0.009684097485569157,0.02289179675303245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.229569522947386,0.12837647958081924,0.17697226213200282,0.2255680446831864,0.15270297078436076,0.07983789688553516,0.006972822986709557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013605074510886783,0.6912107682153137,0.07777490734486782,0.08221178280598065,0.06363880259014883,0.045065822374317006,0.026492842158485182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7921939809975214,0.021087899938542085,0.025305052294872774,0.16141306676906378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18184512599527042,0.8181548740047296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29412023963323425,0.27514033514908887,0.05665743518614721,0.04016954265217699,0.2764559173131364,0.024894578097848452,0.01915217668873875,0.013409775279629044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05872394224128767,0.0717592631132457,0.1839040815603308,0.04917758457172034,0.08915452406951771,0.21214504283780514,0.3351355616060926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7405065559914191,0.25949344400858093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06449424612739452,0.2428271228429911,0.4215191296818575,0.23089287700987146,0.040266624337885415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010680701291189462,0.07196947911114145,0.019081013129575202,0.7503564231024947,0.013335840199462408,0.06215884418389441,0.04485884772204558,0.027558851260196745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07729014132367676,0.17685648158402553,0.2764228218443743,0.21644983679684104,0.1564768517493078,0.09650386670177458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.027159482546833227,0.7039667001621386,0.09125226712592198,0.15410614388371346,0.023515406281392703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4458323436956409,0.09223650345251738,0.17731030037699444,0.24472863536046915,0.039892217114378174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09433449612027744,0.23828399749287407,0.36807010657858036,0.08725287479230098,0.027707587794067165,0.05413390900613083,0.0805602302181945,0.04965679799757463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8258880238367611,0.08677919994857687,0.08733277621466205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2005187878431594,0.31303024589453443,0.1797329288927901,0.25324631137828635,0.018472041773142194,0.03499968421808735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03147824563814513,0.15420581852718007,0.3958729267627987,0.4184430090718761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38466171011585437,0.5047421515469533,0.07208141729517625,0.02685779045608156,0.011656930585934434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4729820592396845,0.3975281066771094,0.1294898340832061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21323051322341724,0.6470505390228997,0.07675889314379175,0.06296005460989129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.48560273386253044,0.39923461877870803,0.11516264735876154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09369766030835883,0.24853964891516003,0.6577626907764811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1329958583288804,0.33333333333333337,0.5336708083377864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6776398562148526,0.2794665704471812,0.02141943450027553,0.014297857779322054,0.007176281058368575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06819196057430808,0.2950602206137999,0.1455250256452413,0.4912227931666508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othdiscr,True,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.036662143392077684,0.9633378566079224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othdiscr,True,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +othdiscr,True,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +othdiscr,True,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +othdiscr,True,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +othdiscr,True,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +othdiscr,True,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +othdiscr,True,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +othdiscr,True,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +othdiscr,True,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +othdiscr,True,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +othdiscr,True,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +othdiscr,True,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +othdiscr,True,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +othdiscr,True,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +othdiscr,True,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +othdiscr,True,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +othdiscr,True,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +othdiscr,True,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +othdiscr,True,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othdiscr,True,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othdiscr,True,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othdiscr,True,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +othdiscr,True,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +othdiscr,True,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 othdiscr,FALSE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 othdiscr,FALSE,1,2,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 othdiscr,FALSE,1,3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -2687,198 +2687,198 @@ othdiscr,FALSE,48,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, othdiscr,FALSE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020062497231694107,0.022643436228195472,0.02522437522469684,0.02780531422119821,0.030386253217699576,0.03296719221420095,0.03554813121070231,0.07738960750390905,0.11923108379711578,0.1610725600903225,0.20291403638352926,0.24475551267673598,0.0 othdiscr,FALSE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.042273360795097144,0.09203068314372496,0.1417880054923528,0.19154532784098058,0.2413026501896084,0.2910599725382362,0.0,0.0 othdiscr,FALSE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05072803295411658,0.12536401647705828,0.2,0.2746359835229417,0.3492719670458834,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,3,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,4,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,5,2,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,5,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,5,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,6,2,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,6,4,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.2391074819346591,0.7608925180653409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022696037085701275,0.03987469551110099,0.057053353936500704,0.07423201236190043,0.09141067078730014,0.10858932921269986,0.12576798763809957,0.1429466460634993,0.160125304488899,0.17730396291429873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.40573490040182114,0.06367912175800636,0.04681615280055952,0.029953183843112685,0.01309021488566585,0.040728829493016934,0.04000126089293558,0.03927369229285425,0.038546123692772896,0.03781855509269156,0.03709098649261021,0.03636341789252887,0.03563584929244752,0.03490828069236618,0.034180712092284835,0.033453143492203484,0.03272557489212214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37121001770095396,0.06798297427766632,0.09164370178987213,0.11530442930207795,0.13896515681428376,0.16262588432648958,0.0522678357886562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19959617197993199,0.18642436985462588,0.17325256772931974,0.1600807656040136,0.1469089634787075,0.13373716135340136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47819956748842973,0.4095801147616705,0.024763927696504564,0.03740677258329997,0.05004961747009537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04098152986877689,0.07494006753156555,0.1088986051943542,0.14285714285714285,0.1768156805199315,0.21077421818272016,0.2447327558455088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.727030364510662,0.24616329927006456,0.026806336219273346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.748713988740167,0.22450830866681512,0.026777702593017892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,10,4,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5017917620722333,0.49093641101635993,0.007271826911406825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2581835515547519,0.6294495852544237,0.055981358787002104,0.037455621063608106,0.018929883340214105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0537867739804686,0.07415854621530851,0.09453031845014842,0.11490209068498831,0.13527386291982824,0.15564563515466814,0.12854394160941807,0.10144224806416803,0.07434055451891795,0.04723886097366789,0.02013716742841783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18760094669476285,0.145095133193891,0.13265363275653777,0.12021213231918451,0.10777063188183127,0.09532913144447802,0.08288763100712478,0.07044613056977152,0.05800463013241827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11282643708475494,0.1392097235973147,0.12715307106265938,0.10962721079225404,0.09210135052184872,0.0745754902514434,0.05704962998103807,0.039523769710632733,0.021997909440227413,0.0226191143868003,0.023240319333373182,0.02386152427994607,0.024482729226518958,0.02510393417309184,0.025725139119664727,0.02634634406623761,0.026967549012810496,0.027588753959383386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.033289710995513457,0.07650553695258067,0.08098675738544021,0.08546797781829978,0.08994919825115932,0.09443041868401889,0.09891163911687845,0.103392859549738,0.10787407998259756,0.11235530041545712,0.11683652084831667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07646590395562888,0.16036128121344093,0.14592468580020213,0.1314880903869633,0.11705149497372451,0.10261489956048568,0.08817830414724688,0.07374170873400808,0.05930511332076926,0.04486851790753046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3228763788288926,0.6771236211711074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02123903643701842,0.12415609656113177,0.22881617038702542,0.19426336003233857,0.15971054967765175,0.1251577393229649,0.09060492896827807,0.05605211861359123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.147682157166426,0.11420006537660514,0.14925950525205275,0.10710036728921152,0.19301028106703602,0.2887476238486687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23028053482060978,0.2151402674103049,0.19999999999999998,0.18485973258969507,0.16971946517939016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20997787779634955,0.11137158471601832,0.6786505374876322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36301576134782004,0.6369842386521799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24201050756521336,0.3333333333333333,0.42465615910145327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18154023775541336,0.690278378295781,0.12170737211093945,0.006474011837866245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28870746822808246,0.29914628368235774,0.30958509913663307,0.05524605568140827,0.03418704965097558,0.013128043620542899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08384128522626726,0.03380473162769757,0.1281381182926675,0.22247150495763743,0.3168048916226074,0.17724811996524342,0.037691348307879506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.030519865353159144,0.04883390618458373,0.09455451887077178,0.40629186795479594,0.27311257425017954,0.13993328054556317,0.006753986840946776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06233811124076329,0.04796457989032244,0.0335910485398816,0.5393298865396629,0.2853687534430109,0.03140762034635889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.470684394230403,0.3235614647434677,0.17643853525653236,0.029315605769596995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6670032640253715,0.28683030929669123,0.046166426677937335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2093924219194103,0.18721399556532115,0.165035569211232,0.14285714285714285,0.12067871650305372,0.09850029014896457,0.07632186379487542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4168505683421995,0.06382943457692267,0.11846805013527428,0.1731066656936259,0.22774528125197752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.502447386195227,0.2875787837087834,0.16585087126825768,0.04412295882773192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0630023942882305,0.3397940588767672,0.25870023779066315,0.17760641670455904,0.11283443634811303,0.04806245599166703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12560993068803886,0.14275476926063188,0.15989960783322488,0.16388569048794663,0.14991784553233295,0.13595000057671927,0.12198215562110559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25003132023583635,0.5362903946357147,0.1172175969489665,0.07122609504281636,0.02523459313666624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02446208671855894,0.3333333333333333,0.6422045799481078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21438391240532625,0.7549633831268727,0.01946892967386199,0.011183774793939042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34537929121534533,0.6306705203403534,0.02395018844430129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9275756687493233,0.07242433125067678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24626498820715811,0.5875075907073781,0.07796380190012697,0.055409140361821284,0.03285447882351561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.49488868532476943,0.17458362683218098,0.12744343270080508,0.0803032385694292,0.03316304443805331,0.08961797213476193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36496155111662887,0.2824807755583144,0.19999999999999996,0.1175192244416855,0.03503844888337105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7566234191098833,0.21291012065547055,0.03046646023464622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08738614969569475,0.08892377706296906,0.11591179132204966,0.0881452695756699,0.06037874782929012,0.03261222608291035,0.0048457043365305735,0.009887486509277696,0.014929268682024821,0.019971050854771945,0.025012833027519065,0.03005461520026619,0.03509639737301331,0.04013817954576043,0.04517996171850756,0.05022174389125469,0.05526352606400181,0.06030530823674893,0.06534709040949604,0.07038887258224318,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9404273924038685,0.05957260759613155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1831099788864871,0.6474888950395127,0.1694011260740003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1078813556421454,0.7350209243987343,0.1570977199591203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18673324352106085,0.707408175496916,0.037893909927191424,0.06796467105483166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.078615484866157,0.12998792130249248,0.060637533353902144,0.7307590604774484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13023089022400866,0.8053988566875924,0.016127893204456404,0.016083707754592842,0.013401629232188027,0.010719550709783211,0.008037472187378398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004256896296630929,0.009246887493529287,0.21591695644910233,0.18934039000932226,0.16276382356954225,0.13618725712976223,0.1096106906899822,0.08303412425020218,0.05645755781042213,0.029880991370642086,0.003304424930862062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.016228927127358597,0.3333333333333333,0.6504377395393081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.533792440291268,0.46620755970873196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07397406559413638,0.7370597675968947,0.1889661668089689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.472492983314563,0.3333333333333333,0.19417368335210364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.48969361016894036,0.5047835007226725,0.00552288910838719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02996762765509789,0.8643501983316954,0.10568217401320677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0736396890781448,0.11085048011355354,0.14806127114896228,0.18527206218437106,0.22248285321977979,0.25969364425518854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34034639266622857,0.5076849639231412,0.14544698296631678,0.006521660444313618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08204004332566066,0.13393813841044885,0.1077569558080398,0.09979458698332919,0.09183221815861856,0.08386984933390794,0.07590748050919731,0.06794511168448669,0.05998274285977606,0.05202037403506544,0.04405800521035481,0.036095636385644184,0.02813326756093356,0.020170898736222933,0.012208529911512316,0.0042461610868016865,0.0,0.0 -escort,TRUE,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8554336219416518,0.09936064473481036,0.045205733323537806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41341231380068333,0.3333333333333333,0.25325435286598336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6778293554590633,0.07184337821668807,0.23798913284659004,0.012338133477658615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9347912310139336,0.06520876898606645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09986570485572936,0.4954036482009389,0.25660684396522115,0.017810039729503405,0.030623980406186246,0.043437921082869084,0.05625186175955192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6949781808030299,0.3050218191969701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6942022520613688,0.3057977479386312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -escort,TRUE,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -escort,TRUE,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -escort,TRUE,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -escort,TRUE,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -escort,TRUE,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -escort,TRUE,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -escort,TRUE,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -escort,TRUE,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -escort,TRUE,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -escort,TRUE,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -escort,TRUE,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -escort,TRUE,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -escort,TRUE,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -escort,TRUE,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -escort,TRUE,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -escort,TRUE,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -escort,TRUE,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -escort,TRUE,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -escort,TRUE,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -escort,TRUE,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -escort,TRUE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -escort,TRUE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -escort,TRUE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +escort,True,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,3,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,4,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,5,2,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,5,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,5,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,6,2,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,6,4,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.2391074819346591,0.7608925180653409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022696037085701275,0.03987469551110099,0.057053353936500704,0.07423201236190043,0.09141067078730014,0.10858932921269986,0.12576798763809957,0.1429466460634993,0.160125304488899,0.17730396291429873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.40573490040182114,0.06367912175800636,0.04681615280055952,0.029953183843112685,0.01309021488566585,0.040728829493016934,0.04000126089293558,0.03927369229285425,0.038546123692772896,0.03781855509269156,0.03709098649261021,0.03636341789252887,0.03563584929244752,0.03490828069236618,0.034180712092284835,0.033453143492203484,0.03272557489212214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,8,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37121001770095396,0.06798297427766632,0.09164370178987213,0.11530442930207795,0.13896515681428376,0.16262588432648958,0.0522678357886562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19959617197993199,0.18642436985462588,0.17325256772931974,0.1600807656040136,0.1469089634787075,0.13373716135340136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47819956748842973,0.4095801147616705,0.024763927696504564,0.03740677258329997,0.05004961747009537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04098152986877689,0.07494006753156555,0.1088986051943542,0.14285714285714285,0.1768156805199315,0.21077421818272016,0.2447327558455088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.727030364510662,0.24616329927006456,0.026806336219273346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,10,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.748713988740167,0.22450830866681512,0.026777702593017892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,10,4,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5017917620722333,0.49093641101635993,0.007271826911406825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2581835515547519,0.6294495852544237,0.055981358787002104,0.037455621063608106,0.018929883340214105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0537867739804686,0.07415854621530851,0.09453031845014842,0.11490209068498831,0.13527386291982824,0.15564563515466814,0.12854394160941807,0.10144224806416803,0.07434055451891795,0.04723886097366789,0.02013716742841783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18760094669476285,0.145095133193891,0.13265363275653777,0.12021213231918451,0.10777063188183127,0.09532913144447802,0.08288763100712478,0.07044613056977152,0.05800463013241827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11282643708475494,0.1392097235973147,0.12715307106265938,0.10962721079225404,0.09210135052184872,0.0745754902514434,0.05704962998103807,0.039523769710632733,0.021997909440227413,0.0226191143868003,0.023240319333373182,0.02386152427994607,0.024482729226518958,0.02510393417309184,0.025725139119664727,0.02634634406623761,0.026967549012810496,0.027588753959383386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.033289710995513457,0.07650553695258067,0.08098675738544021,0.08546797781829978,0.08994919825115932,0.09443041868401889,0.09891163911687845,0.103392859549738,0.10787407998259756,0.11235530041545712,0.11683652084831667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07646590395562888,0.16036128121344093,0.14592468580020213,0.1314880903869633,0.11705149497372451,0.10261489956048568,0.08817830414724688,0.07374170873400808,0.05930511332076926,0.04486851790753046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3228763788288926,0.6771236211711074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02123903643701842,0.12415609656113177,0.22881617038702542,0.19426336003233857,0.15971054967765175,0.1251577393229649,0.09060492896827807,0.05605211861359123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.147682157166426,0.11420006537660514,0.14925950525205275,0.10710036728921152,0.19301028106703602,0.2887476238486687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23028053482060978,0.2151402674103049,0.19999999999999998,0.18485973258969507,0.16971946517939016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20997787779634955,0.11137158471601832,0.6786505374876322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36301576134782004,0.6369842386521799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24201050756521336,0.3333333333333333,0.42465615910145327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18154023775541336,0.690278378295781,0.12170737211093945,0.006474011837866245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28870746822808246,0.29914628368235774,0.30958509913663307,0.05524605568140827,0.03418704965097558,0.013128043620542899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08384128522626726,0.03380473162769757,0.1281381182926675,0.22247150495763743,0.3168048916226074,0.17724811996524342,0.037691348307879506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.030519865353159144,0.04883390618458373,0.09455451887077178,0.40629186795479594,0.27311257425017954,0.13993328054556317,0.006753986840946776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06233811124076329,0.04796457989032244,0.0335910485398816,0.5393298865396629,0.2853687534430109,0.03140762034635889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.470684394230403,0.3235614647434677,0.17643853525653236,0.029315605769596995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6670032640253715,0.28683030929669123,0.046166426677937335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2093924219194103,0.18721399556532115,0.165035569211232,0.14285714285714285,0.12067871650305372,0.09850029014896457,0.07632186379487542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4168505683421995,0.06382943457692267,0.11846805013527428,0.1731066656936259,0.22774528125197752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.502447386195227,0.2875787837087834,0.16585087126825768,0.04412295882773192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0630023942882305,0.3397940588767672,0.25870023779066315,0.17760641670455904,0.11283443634811303,0.04806245599166703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12560993068803886,0.14275476926063188,0.15989960783322488,0.16388569048794663,0.14991784553233295,0.13595000057671927,0.12198215562110559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25003132023583635,0.5362903946357147,0.1172175969489665,0.07122609504281636,0.02523459313666624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02446208671855894,0.3333333333333333,0.6422045799481078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21438391240532625,0.7549633831268727,0.01946892967386199,0.011183774793939042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34537929121534533,0.6306705203403534,0.02395018844430129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9275756687493233,0.07242433125067678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24626498820715811,0.5875075907073781,0.07796380190012697,0.055409140361821284,0.03285447882351561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.49488868532476943,0.17458362683218098,0.12744343270080508,0.0803032385694292,0.03316304443805331,0.08961797213476193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36496155111662887,0.2824807755583144,0.19999999999999996,0.1175192244416855,0.03503844888337105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7566234191098833,0.21291012065547055,0.03046646023464622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08738614969569475,0.08892377706296906,0.11591179132204966,0.0881452695756699,0.06037874782929012,0.03261222608291035,0.0048457043365305735,0.009887486509277696,0.014929268682024821,0.019971050854771945,0.025012833027519065,0.03005461520026619,0.03509639737301331,0.04013817954576043,0.04517996171850756,0.05022174389125469,0.05526352606400181,0.06030530823674893,0.06534709040949604,0.07038887258224318,0.0,0.0,0.0,0.0,0.0 +escort,True,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9404273924038685,0.05957260759613155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1831099788864871,0.6474888950395127,0.1694011260740003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1078813556421454,0.7350209243987343,0.1570977199591203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18673324352106085,0.707408175496916,0.037893909927191424,0.06796467105483166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.078615484866157,0.12998792130249248,0.060637533353902144,0.7307590604774484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13023089022400866,0.8053988566875924,0.016127893204456404,0.016083707754592842,0.013401629232188027,0.010719550709783211,0.008037472187378398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004256896296630929,0.009246887493529287,0.21591695644910233,0.18934039000932226,0.16276382356954225,0.13618725712976223,0.1096106906899822,0.08303412425020218,0.05645755781042213,0.029880991370642086,0.003304424930862062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.016228927127358597,0.3333333333333333,0.6504377395393081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.533792440291268,0.46620755970873196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07397406559413638,0.7370597675968947,0.1889661668089689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.472492983314563,0.3333333333333333,0.19417368335210364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.48969361016894036,0.5047835007226725,0.00552288910838719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02996762765509789,0.8643501983316954,0.10568217401320677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0736396890781448,0.11085048011355354,0.14806127114896228,0.18527206218437106,0.22248285321977979,0.25969364425518854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34034639266622857,0.5076849639231412,0.14544698296631678,0.006521660444313618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08204004332566066,0.13393813841044885,0.1077569558080398,0.09979458698332919,0.09183221815861856,0.08386984933390794,0.07590748050919731,0.06794511168448669,0.05998274285977606,0.05202037403506544,0.04405800521035481,0.036095636385644184,0.02813326756093356,0.020170898736222933,0.012208529911512316,0.0042461610868016865,0.0,0.0 +escort,True,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8554336219416518,0.09936064473481036,0.045205733323537806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41341231380068333,0.3333333333333333,0.25325435286598336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6778293554590633,0.07184337821668807,0.23798913284659004,0.012338133477658615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9347912310139336,0.06520876898606645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09986570485572936,0.4954036482009389,0.25660684396522115,0.017810039729503405,0.030623980406186246,0.043437921082869084,0.05625186175955192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6949781808030299,0.3050218191969701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6942022520613688,0.3057977479386312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +escort,True,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +escort,True,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +escort,True,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +escort,True,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +escort,True,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +escort,True,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +escort,True,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +escort,True,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +escort,True,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +escort,True,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +escort,True,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +escort,True,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +escort,True,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +escort,True,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +escort,True,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +escort,True,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +escort,True,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +escort,True,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +escort,True,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +escort,True,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +escort,True,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +escort,True,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +escort,True,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +escort,True,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +escort,True,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +escort,True,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +escort,True,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 escort,FALSE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 escort,FALSE,1,2,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 escort,FALSE,1,3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -3071,198 +3071,198 @@ escort,FALSE,48,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. escort,FALSE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 escort,FALSE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 escort,FALSE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -eatout,TRUE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,3,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,4,2,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,5,2,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,6,2,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,6,4,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,8,3,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36933425542088005,0.20708519386913854,0.24664266332227985,0.17693788738770164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5837165990782975,0.41628340092170246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38158727332376935,0.6184127266762306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,10,3,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,10,4,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14490308299613947,0.08921513391743634,0.08488639811699404,0.08055766231655177,0.07622892651610948,0.07190019071566718,0.06757145491522489,0.06324271911478262,0.05891398331434032,0.05458524751389804,0.05025651171345575,0.04592777591301346,0.04159904011257117,0.03727030431212889,0.0329415685116866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7507908424706561,0.24920915752934397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.486215512467996,0.13496814819387107,0.20275500101461852,0.1760613383235145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1683439243691213,0.16767302128813943,0.1670021182071576,0.16633121512617574,0.16566031204519385,0.16498940896421202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.239503466106993,0.12048354455243869,0.008948492763579199,0.05282295598580827,0.039207004923959204,0.03933379122671558,0.03946057752947194,0.03958736383222831,0.03971415013498468,0.0465071859508853,0.05330022176678592,0.06009325758268654,0.06688629339858716,0.07367932921448779,0.0804723650303884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6828966084883409,0.09190988168489461,0.10570113050388635,0.1194923793228781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7302921605005464,0.09828876762997898,0.08990261316648454,0.0815164587029901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28159651067677754,0.6552261313187637,0.06317735800445874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20356417760227466,0.28048110729291925,0.5159547151048061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.26343756729534806,0.3629777176312307,0.3735847150734212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05364274506427843,0.1284070980078373,0.49331454956535453,0.32463560736252983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0660088797757428,0.27633006271450533,0.5076135512571754,0.15004750625257643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04434899579688712,0.1440001739074229,0.24365135201795865,0.5679994782777312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5025180074198632,0.4974819925801369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19324397442862065,0.06445845672769122,0.7422975688436881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1925933922114275,0.8074066077885725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4781848348726602,0.22894437372088516,0.18991347556351484,0.09762359713548481,0.0053337187074548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4374122930572926,0.28579802397168913,0.2767896829710182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7482724439661744,0.14778625642459883,0.035130445182156696,0.03464709986974225,0.034163754557327806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18485779014831172,0.5221964695794302,0.14142407158183384,0.15152166869042424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.30537599453718456,0.6946240054628154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012605899951150069,0.07798162207313039,0.07581235663045341,0.07364309118777644,0.07147382574509949,0.06930456030242252,0.06713529485974554,0.06496602941706857,0.0627967639743916,0.06062749853171463,0.05845823308903767,0.0562889676463607,0.05411970220368373,0.05195043676100676,0.04978117131832979,0.047611905875652824,0.045442640432975856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07863201855677415,0.3525646464069151,0.19036643247828275,0.02816821854965042,0.3502686840083776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4630078972130973,0.3210026324043658,0.17899736759563423,0.03699210278690268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.30757156385524426,0.2512096049798132,0.1948476461043822,0.13848568722895116,0.08212372835352011,0.025761769478089044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9448034456688379,0.055196554331162134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08863601140482968,0.1283919695598594,0.1289929315444382,0.12959389352901696,0.13019485551359578,0.13079581749817457,0.13139677948275333,0.13199774146733212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4833560156695956,0.16379152263356667,0.09217408796228241,0.07553254704423444,0.05889100612618649,0.04224946520813853,0.025607924290090574,0.05839743106590535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.052298480938573755,0.24586403403044463,0.2114080419445987,0.17695204985875282,0.16347648102879428,0.15000091219883577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09125122765331217,0.1456256138266561,0.2,0.25437438617334396,0.30874877234668785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34174498795013974,0.3142874368916538,0.21447164763886128,0.11465585838606883,0.014840069133276373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4356060266796111,0.46216592961035213,0.10222804371003684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.376768966722188,0.3333333333333333,0.2898976999444786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.32660983964827733,0.6733901603517227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18266165889551625,0.4983601194265326,0.03703136051470433,0.043484031087352666,0.049936701660001005,0.056389372232649344,0.06284204280529768,0.06929471337794602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11013923938840275,0.26372098981628567,0.043099714676742285,0.5830400561185692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29755725186828413,0.4153734726634413,0.10510899114288569,0.06927170572995192,0.033434420317018154,0.07925415827841875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35954564905753444,0.10374241016991992,0.2134847836474885,0.32322715712505706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13207549512954342,0.5043408941892334,0.28930816829015216,0.07427544239107094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.40041245909827383,0.3333333333333333,0.2662542075683928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13975856883376786,0.8602414311662322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.61671959560437,0.3067551662107007,0.0765252381849293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8524131008313693,0.045110102503264256,0.0633752116957841,0.039101584969582236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13119071852553715,0.8325953527875343,0.03621392868692866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7709277039705876,0.22907229602941231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7709277039705876,0.22907229602941231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.26945856072822494,0.7305414392717751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -eatout,TRUE,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 -eatout,TRUE,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -eatout,TRUE,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -eatout,TRUE,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -eatout,TRUE,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 -eatout,TRUE,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -eatout,TRUE,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -eatout,TRUE,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -eatout,TRUE,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 -eatout,TRUE,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -eatout,TRUE,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -eatout,TRUE,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -eatout,TRUE,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 -eatout,TRUE,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -eatout,TRUE,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -eatout,TRUE,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -eatout,TRUE,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 -eatout,TRUE,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -eatout,TRUE,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -eatout,TRUE,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -eatout,TRUE,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -eatout,TRUE,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 -eatout,TRUE,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 -eatout,TRUE,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +eatout,True,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,1,2,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,1,3,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,1,4,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,2,1,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,2,2,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,2,3,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,2,4,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,3,1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,3,2,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,3,3,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,3,4,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,4,1,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,4,2,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,4,3,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,4,4,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,5,1,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,5,2,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,5,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,5,4,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,6,1,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,6,2,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,6,3,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,6,4,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,7,1,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,7,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,7,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,7,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,8,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,8,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,8,3,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,8,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,9,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,9,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36933425542088005,0.20708519386913854,0.24664266332227985,0.17693788738770164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,9,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5837165990782975,0.41628340092170246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,9,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,10,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,10,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38158727332376935,0.6184127266762306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,10,3,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,10,4,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,11,1,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,11,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14490308299613947,0.08921513391743634,0.08488639811699404,0.08055766231655177,0.07622892651610948,0.07190019071566718,0.06757145491522489,0.06324271911478262,0.05891398331434032,0.05458524751389804,0.05025651171345575,0.04592777591301346,0.04159904011257117,0.03727030431212889,0.0329415685116866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,11,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7507908424706561,0.24920915752934397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,11,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,12,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,12,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.486215512467996,0.13496814819387107,0.20275500101461852,0.1760613383235145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,12,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1683439243691213,0.16767302128813943,0.1670021182071576,0.16633121512617574,0.16566031204519385,0.16498940896421202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,12,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,13,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,13,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.239503466106993,0.12048354455243869,0.008948492763579199,0.05282295598580827,0.039207004923959204,0.03933379122671558,0.03946057752947194,0.03958736383222831,0.03971415013498468,0.0465071859508853,0.05330022176678592,0.06009325758268654,0.06688629339858716,0.07367932921448779,0.0804723650303884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,13,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6828966084883409,0.09190988168489461,0.10570113050388635,0.1194923793228781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,13,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7302921605005464,0.09828876762997898,0.08990261316648454,0.0815164587029901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,14,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,14,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28159651067677754,0.6552261313187637,0.06317735800445874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,14,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20356417760227466,0.28048110729291925,0.5159547151048061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,14,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.26343756729534806,0.3629777176312307,0.3735847150734212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,15,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,15,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05364274506427843,0.1284070980078373,0.49331454956535453,0.32463560736252983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,15,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0660088797757428,0.27633006271450533,0.5076135512571754,0.15004750625257643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,15,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04434899579688712,0.1440001739074229,0.24365135201795865,0.5679994782777312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,16,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,16,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5025180074198632,0.4974819925801369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,16,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19324397442862065,0.06445845672769122,0.7422975688436881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,16,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1925933922114275,0.8074066077885725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,17,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,17,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4781848348726602,0.22894437372088516,0.18991347556351484,0.09762359713548481,0.0053337187074548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,17,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4374122930572926,0.28579802397168913,0.2767896829710182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,17,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,18,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,18,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7482724439661744,0.14778625642459883,0.035130445182156696,0.03464709986974225,0.034163754557327806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,18,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18485779014831172,0.5221964695794302,0.14142407158183384,0.15152166869042424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,18,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,19,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,19,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.30537599453718456,0.6946240054628154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,19,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,19,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,20,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,20,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012605899951150069,0.07798162207313039,0.07581235663045341,0.07364309118777644,0.07147382574509949,0.06930456030242252,0.06713529485974554,0.06496602941706857,0.0627967639743916,0.06062749853171463,0.05845823308903767,0.0562889676463607,0.05411970220368373,0.05195043676100676,0.04978117131832979,0.047611905875652824,0.045442640432975856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,20,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,20,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,21,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,21,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07863201855677415,0.3525646464069151,0.19036643247828275,0.02816821854965042,0.3502686840083776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,21,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4630078972130973,0.3210026324043658,0.17899736759563423,0.03699210278690268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,21,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.30757156385524426,0.2512096049798132,0.1948476461043822,0.13848568722895116,0.08212372835352011,0.025761769478089044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,22,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,22,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9448034456688379,0.055196554331162134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,22,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,22,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,23,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,23,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08863601140482968,0.1283919695598594,0.1289929315444382,0.12959389352901696,0.13019485551359578,0.13079581749817457,0.13139677948275333,0.13199774146733212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,23,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,23,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,24,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,24,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4833560156695956,0.16379152263356667,0.09217408796228241,0.07553254704423444,0.05889100612618649,0.04224946520813853,0.025607924290090574,0.05839743106590535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,24,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.052298480938573755,0.24586403403044463,0.2114080419445987,0.17695204985875282,0.16347648102879428,0.15000091219883577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,24,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09125122765331217,0.1456256138266561,0.2,0.25437438617334396,0.30874877234668785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,25,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,25,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34174498795013974,0.3142874368916538,0.21447164763886128,0.11465585838606883,0.014840069133276373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,25,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4356060266796111,0.46216592961035213,0.10222804371003684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,25,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,26,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,26,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.376768966722188,0.3333333333333333,0.2898976999444786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,26,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.32660983964827733,0.6733901603517227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,26,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,27,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,27,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18266165889551625,0.4983601194265326,0.03703136051470433,0.043484031087352666,0.049936701660001005,0.056389372232649344,0.06284204280529768,0.06929471337794602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,27,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11013923938840275,0.26372098981628567,0.043099714676742285,0.5830400561185692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,27,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,28,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,28,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29755725186828413,0.4153734726634413,0.10510899114288569,0.06927170572995192,0.033434420317018154,0.07925415827841875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,28,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35954564905753444,0.10374241016991992,0.2134847836474885,0.32322715712505706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,28,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,29,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,29,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13207549512954342,0.5043408941892334,0.28930816829015216,0.07427544239107094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,29,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.40041245909827383,0.3333333333333333,0.2662542075683928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,29,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,30,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,30,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13975856883376786,0.8602414311662322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,30,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,30,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,31,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,31,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.61671959560437,0.3067551662107007,0.0765252381849293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,31,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,31,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,32,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,32,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8524131008313693,0.045110102503264256,0.0633752116957841,0.039101584969582236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,32,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,32,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,33,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,33,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13119071852553715,0.8325953527875343,0.03621392868692866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,33,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7709277039705876,0.22907229602941231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,33,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7709277039705876,0.22907229602941231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,34,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.26945856072822494,0.7305414392717751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,34,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,34,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,35,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,35,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +eatout,True,35,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,35,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,36,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,36,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,36,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,36,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,37,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,37,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,37,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,37,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,38,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,38,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,38,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,38,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,39,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,39,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,39,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,39,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,40,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,40,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,40,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,40,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,41,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,41,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,41,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,41,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,42,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,42,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,42,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,42,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,43,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0 +eatout,True,43,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +eatout,True,43,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +eatout,True,43,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +eatout,True,44,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0 +eatout,True,44,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +eatout,True,44,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +eatout,True,44,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +eatout,True,45,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0 +eatout,True,45,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +eatout,True,45,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +eatout,True,45,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +eatout,True,46,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0 +eatout,True,46,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +eatout,True,46,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +eatout,True,46,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +eatout,True,47,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0 +eatout,True,47,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +eatout,True,47,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +eatout,True,47,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +eatout,True,48,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +eatout,True,48,2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0 +eatout,True,48,3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 +eatout,True,48,4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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 eatout,FALSE,1,1,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 eatout,FALSE,1,2,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 eatout,FALSE,1,3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/activitysim/examples/production_semcog/configs/university_location_zone_override.yaml b/activitysim/examples/production_semcog/configs/university_location_zone_override.yaml new file mode 100644 index 000000000..3a5abb4dc --- /dev/null +++ b/activitysim/examples/production_semcog/configs/university_location_zone_override.yaml @@ -0,0 +1,20 @@ +# These same settings also apply to trip_destination_univ_zone_override + +# if you want to save the original school zone, specify a column name for the persons table +# this column name is used to select major university students in downstream models (stop_freq) +ORIGINAL_ZONE_COL_NAME: original_school_zone_id + +LANDUSE_UNIV_ENROL_COL_NAME: Univ_Enrollment +# Colunn in the landuse file containing the university codes +LANDUSE_UNIV_CODE_COL_NAME: University_Name +# Specify which university codes should be resampled +UNIV_CODES_TO_OVERRIDE: + - University of Michigan + +# trip_destination_univ_zone_override specific option +# trip purpose to re-sample +TRIP_UNIVERSITY_PURPOSE: univ +# dictionary to map tour modes for tours that had a zone re-sampled +# e.g. walk tours -> walk-transit tours to allow for use of transit +# if left blank, no override occurs +TOUR_MODE_OVERRIDE_DICT: {'WALK': 'WALK_LOC'} diff --git a/activitysim/examples/prototype_semcog/configs/work_from_home.csv b/activitysim/examples/production_semcog/configs/work_from_home.csv old mode 100755 new mode 100644 similarity index 76% rename from activitysim/examples/prototype_semcog/configs/work_from_home.csv rename to activitysim/examples/production_semcog/configs/work_from_home.csv index b5afec73f..10204ffb9 --- a/activitysim/examples/prototype_semcog/configs/work_from_home.csv +++ b/activitysim/examples/production_semcog/configs/work_from_home.csv @@ -2,9 +2,9 @@ Label,Description,Expression,work_at_home,work_away_from_home util_work_from_home_constant,Constant for Working from home,1,coef_work_from_home_constant,0 util_full_time_worker,Full time worker (1 if true),@df.pemploy==PEMPLOY_FULL,coef_full_time_worker,0 util_female_worker,Female Worker,@df.sex==2,coef_female_worker,0 -util_female_worker_preschool_child,Female worker with a Preschool Child in Household,female_worker_with_preschool_child,coef_female_worker_preschool_child,0 -util_access_to_workplaces,Accessibility to workplaces of the home mgra,@df.auPkTotal,coef_access_to_workplaces,0 -util_non_working_adult_in_hh,Presence of Non Working Adult in the Household,nonworking_adult_in_hh,coef_non_working_adult_in_hh,0 +util_female_worker_preschool_child,Female worker with a Preschool Child in Household,"@df.sex==2 & other_than(df.household_id, df.ptype == PTYPE_SCHOOL)",coef_female_worker_preschool_child,0 +util_access_to_workplaces,Accessibility to workplaces of the home mgra,@df.workplace_location_logsum,coef_access_to_workplaces,0 +util_non_working_adult_in_hh,Presence of Non Working Adult in the Household,"@other_than(df.household_id, df.ptype == PTYPE_NONWORK)",coef_non_working_adult_in_hh,0 util_education_ba_plus,Education Level Bachelors or higher degree,0,coef_education_ba_plus,0 util_low_income,Household income Less than 30K,@df.income < 30000,coef_low_income,0 util_age_lt_35,Age Group - Less than 35 years,@df.age < 35,coef_age_lt_35,0 @@ -13,3 +13,4 @@ util_age_45_to_55,Age Group - 45 yrs to 55 yrs,"@df.age.between(45, 55)",coef_ag util_age_55_to_65,Age Group - 55 yrs to 65 yrs,"@df.age.between(55, 65)",coef_age_55_to_65,0 util_age_65_plus,Age Group - Older than 65yrs,@df.age > 65,coef_age_65_plus,0 util_calibration,ABM2 calibration - work from home,1,coef_calibration,0 +util_calibration_temp,Phase2 calibration temp,1,coef_calibration_p2,0 diff --git a/activitysim/examples/production_semcog/configs/work_from_home.yaml b/activitysim/examples/production_semcog/configs/work_from_home.yaml new file mode 100644 index 000000000..c4f265ced --- /dev/null +++ b/activitysim/examples/production_semcog/configs/work_from_home.yaml @@ -0,0 +1,12 @@ + +# borrowed from free parking model + +SPEC: work_from_home.csv +COEFFICIENTS: work_from_home_coeffs.csv + +#LOGIT_TYPE: NL +LOGIT_TYPE: MNL + +WORK_FROM_HOME_ALT: 0 + +DEST_CHOICE_COLUMN_NAME: workplace_zone_id diff --git a/activitysim/examples/prototype_semcog/configs/work_from_home_coeffs.csv b/activitysim/examples/production_semcog/configs/work_from_home_coeffs.csv old mode 100755 new mode 100644 similarity index 94% rename from activitysim/examples/prototype_semcog/configs/work_from_home_coeffs.csv rename to activitysim/examples/production_semcog/configs/work_from_home_coeffs.csv index a3868e981..d51fd1770 --- a/activitysim/examples/prototype_semcog/configs/work_from_home_coeffs.csv +++ b/activitysim/examples/production_semcog/configs/work_from_home_coeffs.csv @@ -13,3 +13,4 @@ coef_age_45_to_55,0.21438,F coef_age_55_to_65,0.451657,F coef_age_65_plus,0.583518,F coef_calibration,-0.0162,T +coef_calibration_p2,-0.6284,T diff --git a/activitysim/examples/production_semcog/configs/workplace_location.csv b/activitysim/examples/production_semcog/configs/workplace_location.csv new file mode 100644 index 000000000..9879c9032 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/workplace_location.csv @@ -0,0 +1,84 @@ +Label,Description,Expression,coefficient +local_dist,,_DIST@skims['DIST'],1 +dest_county,,_COUNTY@skims['COUNTY'],1 +util_dist,Distance,@_DIST,coef_dist +util_dist_squared,"Distance squared, capped at 20 miles","@(_DIST).clip(0,20)**2",coef_dist_squared +util_dist_cubed,"Distance cubed, capped at 20 miles","@(_DIST).clip(0,20)**3",coef_dist_cubed +util_dist_logged,Distance logged,@(_DIST).apply(np.log1p),coef_dist_logged +util_dist_low,"Distance,low income",@(df['income_segment']==WORK_LOW_SEGMENT_ID) * _DIST,coef_dist_low_inc +util_dist_med,"Distance,med income",@(df['income_segment']==WORK_MED_SEGMENT_ID) * _DIST,coef_dist_med_inc +util_dist_high,"Distance,high income",@(df['income_segment']==WORK_HIGH_SEGMENT_ID) * _DIST,coef_dist_high_inc +util_dist_part_time,"Distance,part_time",@(df['pemploy']==2) * _DIST,coef_dist_part_time +util_dist_student,"Distance,student",@(df['is_student']==True) * _DIST,coef_dist_student +util_size_variable,Size variable,@(df['size_term'] * df['shadow_price_size_term_adjustment']).apply(np.log1p),1 +util_utility_adjustment,utility adjustment,@df['shadow_price_utility_adjustment'],1 +util_no_attractions,No attractions,@df['size_term']==0,-999 +util_mode_logsum,Mode choice logsum,mode_choice_logsum,coef_mode_logsum +util_sample_of_corrections_factor,Sample of alternatives correction factor,"@np.minimum(np.log(df.pick_count/df.prob), 60)",1 +#,,, +util_dist_calib,Distance,@_DIST * -0.28,coef_dist +#,,, +util_Detroit_Detroit_ASC,Detroit_Detroit calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==1), 1, 0)",coef_Detroit_Detroit_asc +util_Detroit_Wayne_ASC,Detroit_Wayne calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==2), 1, 0)",coef_Detroit_Wayne_asc +util_Detroit_Oakland_ASC,Detroit_Oakland calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==3), 1, 0)",coef_Detroit_Oakland_asc +util_Detroit_Macomb_ASC,Detroit_Macomb calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==4), 1, 0)",coef_Detroit_Macomb_asc +util_Wayne_Detroit_ASC,Wayne_Detroit calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==1), 1, 0)",coef_Wayne_Detroit_asc +util_Wayne_Wayne_ASC,Wayne_Wayne calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==2), 1, 0)",coef_Wayne_Wayne_asc +util_Wayne_Oakland_ASC,Wayne_Oakland calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==3), 1, 0)",coef_Wayne_Oakland_asc +util_Wayne_Macomb_ASC,Wayne_Macomb calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==4), 1, 0)",coef_Wayne_Macomb_asc +util_Oakland_Detroit_ASC,Oakland_Detroit calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==1), 1, 0)",coef_Oakland_Detroit_asc +util_Oakland_Wayne_ASC,Oakland_Wayne calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==2), 1, 0)",coef_Oakland_Wayne_asc +util_Oakland_Oakland_ASC,Oakland_Oakland calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==3), 1, 0)",coef_Oakland_Oakland_asc +util_Oakland_Macomb_ASC,Oakland_Macomb calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==4), 1, 0)",coef_Oakland_Macomb_asc +util_Macomb_Detroit_ASC,Macomb_Detroit calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==1), 1, 0)",coef_Macomb_Detroit_asc +util_Macomb_Oakland_ASC,Macomb_Oakland calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==3), 1, 0)",coef_Macomb_Oakland_asc +util_Macomb_Macomb_ASC,Macomb_Macomb calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==4), 1, 0)",coef_Macomb_Macomb_asc +util_Washtenaw_Washtenaw_ASC,Washtenaw_Washtenaw calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==5), 1, 0)",coef_Washtenaw_Washtenaw_asc +util_StClair_Macomb_ASC,StClair_Macomb calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==4), 1, 0)",coef_StClair_Macomb_asc +util_Livingston_Oakland_ASC,Livingston_Oakland calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==3), 1, 0)",coef_Livingston_Oakland_asc +util_Livingston_Livingston_ASC,Livingston_Livingston calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==8), 1, 0)",coef_Livingston_Livingston_asc +util_Detroit_Washtenaw_ASC,Detroit_Washtenaw calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==5), 1, 0)",coef_Detroit_Washtenaw_asc +util_Detroit_Monroe_ASC,Detroit_Monroe calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==6), 1, 0)",coef_Detroit_Monroe_asc +util_Detroit_StClair_ASC,Detroit_StClair calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==7), 1, 0)",coef_Detroit_StClair_asc +util_Detroit_Livingston_ASC,Detroit_Livingston calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==8), 1, 0)",coef_Detroit_Livingston_asc +util_Wayne_Washtenaw_ASC,Wayne_Washtenaw calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==5), 1, 0)",coef_Wayne_Washtenaw_asc +util_Wayne_Monroe_ASC,Wayne_Monroe calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==6), 1, 0)",coef_Wayne_Monroe_asc +util_Wayne_StClair_ASC,Wayne_StClair calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==7), 1, 0)",coef_Wayne_StClair_asc +util_Wayne_Livingston_ASC,Wayne_Livingston calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==8), 1, 0)",coef_Wayne_Livingston_asc +util_Oakland_Washtenaw_ASC,Oakland_Washtenaw calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==5), 1, 0)",coef_Oakland_Washtenaw_asc +util_Oakland_Monroe_ASC,Oakland_Monroe calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==6), 1, 0)",coef_Oakland_Monroe_asc +util_Oakland_StClair_ASC,Oakland_StClair calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==7), 1, 0)",coef_Oakland_StClair_asc +util_Oakland_Livingston_ASC,Oakland_Livingston calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==8), 1, 0)",coef_Oakland_Livingston_asc +util_Macomb_Wayne_ASC,Macomb_Wayne calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==2), 1, 0)",coef_Macomb_Wayne_asc +util_Macomb_Washtenaw_ASC,Macomb_Washtenaw calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==5), 1, 0)",coef_Macomb_Washtenaw_asc +util_Macomb_Monroe_ASC,Macomb_Monroe calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==6), 1, 0)",coef_Macomb_Monroe_asc +util_Macomb_StClair_ASC,Macomb_StClair calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==7), 1, 0)",coef_Macomb_StClair_asc +util_Macomb_Livingston_ASC,Macomb_Livingston calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==8), 1, 0)",coef_Macomb_Livingston_asc +util_Washtenaw_Detroit_ASC,Washtenaw_Detroit calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==1), 1, 0)",coef_Washtenaw_Detroit_asc +util_Washtenaw_Wayne_ASC,Washtenaw_Wayne calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==2), 1, 0)",coef_Washtenaw_Wayne_asc +util_Washtenaw_Oakland_ASC,Washtenaw_Oakland calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==3), 1, 0)",coef_Washtenaw_Oakland_asc +util_Washtenaw_Macomb_ASC,Washtenaw_Macomb calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==4), 1, 0)",coef_Washtenaw_Macomb_asc +util_Washtenaw_Monroe_ASC,Washtenaw_Monroe calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==6), 1, 0)",coef_Washtenaw_Monroe_asc +util_Washtenaw_StClair_ASC,Washtenaw_StClair calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==7), 1, 0)",coef_Washtenaw_StClair_asc +util_Washtenaw_Livingston_ASC,Washtenaw_Livingston calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==8), 1, 0)",coef_Washtenaw_Livingston_asc +util_Monroe_Detroit_ASC,Monroe_Detroit calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==1), 1, 0)",coef_Monroe_Detroit_asc +util_Monroe_Wayne_ASC,Monroe_Wayne calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==2), 1, 0)",coef_Monroe_Wayne_asc +util_Monroe_Oakland_ASC,Monroe_Oakland calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==3), 1, 0)",coef_Monroe_Oakland_asc +util_Monroe_Macomb_ASC,Monroe_Macomb calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==4), 1, 0)",coef_Monroe_Macomb_asc +util_Monroe_Washtenaw_ASC,Monroe_Washtenaw calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==5), 1, 0)",coef_Monroe_Washtenaw_asc +util_Monroe_Monroe_ASC,Monroe_Monroe calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==6), 1, 0)",coef_Monroe_Monroe_asc +util_Monroe_StClair_ASC,Monroe_StClair calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==7), 1, 0)",coef_Monroe_StClair_asc +util_Monroe_Livingston_ASC,Monroe_Livingston calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==8), 1, 0)",coef_Monroe_Livingston_asc +util_StClair_Detroit_ASC,StClair_Detroit calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==1), 1, 0)",coef_StClair_Detroit_asc +util_StClair_Wayne_ASC,StClair_Wayne calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==2), 1, 0)",coef_StClair_Wayne_asc +util_StClair_Oakland_ASC,StClair_Oakland calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==3), 1, 0)",coef_StClair_Oakland_asc +util_StClair_Washtenaw_ASC,StClair_Washtenaw calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==5), 1, 0)",coef_StClair_Washtenaw_asc +util_StClair_Monroe_ASC,StClair_Monroe calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==6), 1, 0)",coef_StClair_Monroe_asc +util_StClair_StClair_ASC,StClair_StClair calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==7), 1, 0)",coef_StClair_StClair_asc +util_StClair_Livingston_ASC,StClair_Livingston calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==8), 1, 0)",coef_StClair_Livingston_asc +util_Livingston_Detroit_ASC,Livingston_Detroit calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==1), 1, 0)",coef_Livingston_Detroit_asc +util_Livingston_Wayne_ASC,Livingston_Wayne calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==2), 1, 0)",coef_Livingston_Wayne_asc +util_Livingston_Macomb_ASC,Livingston_Macomb calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==4), 1, 0)",coef_Livingston_Macomb_asc +util_Livingston_Washtenaw_ASC,Livingston_Washtenaw calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==5), 1, 0)",coef_Livingston_Washtenaw_asc +util_Livingston_Monroe_ASC,Livingston_Monroe calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==6), 1, 0)",coef_Livingston_Monroe_asc +util_Livingston_StClair_ASC,Livingston_StClair calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==7), 1, 0)",coef_Livingston_StClair_asc diff --git a/activitysim/examples/prototype_semcog/configs/workplace_location.yaml b/activitysim/examples/production_semcog/configs/workplace_location.yaml old mode 100755 new mode 100644 similarity index 97% rename from activitysim/examples/prototype_semcog/configs/workplace_location.yaml rename to activitysim/examples/production_semcog/configs/workplace_location.yaml index 80a350a6b..c7c209c74 --- a/activitysim/examples/prototype_semcog/configs/workplace_location.yaml +++ b/activitysim/examples/production_semcog/configs/workplace_location.yaml @@ -5,6 +5,7 @@ SIMULATE_CHOOSER_COLUMNS: - home_zone_id - is_student - pemploy + - home_county SAMPLE_SPEC: workplace_location_sample.csv SPEC: workplace_location.csv @@ -52,7 +53,7 @@ MODEL_SELECTOR: workplace CHOOSER_SEGMENT_COLUMN_NAME: income_segment # boolean column to filter choosers (True means keep) -CHOOSER_FILTER_COLUMN_NAME: is_out_of_home_worker +CHOOSER_FILTER_COLUMN_NAME: is_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 diff --git a/activitysim/examples/production_semcog/configs/workplace_location_coeffs.csv b/activitysim/examples/production_semcog/configs/workplace_location_coeffs.csv new file mode 100644 index 000000000..c9eceefb6 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/workplace_location_coeffs.csv @@ -0,0 +1,75 @@ +coefficient_name,value,constrain +coef_dist,-0.063338148,F +coef_dist_squared,0.001294031,F +coef_dist_cubed,-6.7e-05,F +coef_dist_logged,-0.47960366200000004,F +coef_dist_low_inc,-0.029396589,F +coef_dist_med_inc,-0.024858401000000002,F +coef_dist_high_inc,-0.013891636,F +coef_dist_part_time,-0.047762375999999995,F +coef_dist_student,-0.024044614,F +coef_mode_logsum,0.25,F +coef_Detroit_Detroit_asc,0.3614225021297297,F +coef_Detroit_Wayne_asc,-0.2716253801228931,F +coef_Detroit_Oakland_asc,-0.3415685018386156,F +coef_Detroit_Macomb_asc,-0.1978777638628789,F +coef_Wayne_Detroit_asc,-0.4851973885927375,F +coef_Wayne_Wayne_asc,0.168202664367836,F +coef_Wayne_Oakland_asc,-0.3865026146052553,F +coef_Wayne_Macomb_asc,-0.5717983734454497,F +coef_Oakland_Detroit_asc,-0.5611718256326389,F +coef_Oakland_Wayne_asc,0.1458903328023177,F +coef_Oakland_Oakland_asc,0.1407403155126548,F +coef_Oakland_Macomb_asc,-0.805369764039235,F +coef_Macomb_Detroit_asc,-0.5970868806566709,F +coef_Macomb_Oakland_asc,0.2856124690018894,F +coef_Macomb_Macomb_asc,-0.1343878584047892,F +coef_Washtenaw_Washtenaw_asc,0.1308598189297761,F +coef_StClair_Macomb_asc,0.6602057427329894,F +coef_Livingston_Oakland_asc,-0.3235102805765905,F +coef_Livingston_Livingston_asc,0.1133241576595546,F +coef_Detroit_Washtenaw_asc,0.0,F +coef_Detroit_Monroe_asc,0.0,F +coef_Detroit_StClair_asc,0.0,F +coef_Detroit_Livingston_asc,0.0,F +coef_Wayne_Washtenaw_asc,0.0,F +coef_Wayne_Monroe_asc,0.0,F +coef_Wayne_StClair_asc,0.0,F +coef_Wayne_Livingston_asc,0.0,F +coef_Oakland_Washtenaw_asc,0.0,F +coef_Oakland_Monroe_asc,0.0,F +coef_Oakland_StClair_asc,0.0,F +coef_Oakland_Livingston_asc,0.0,F +coef_Macomb_Wayne_asc,0.0,F +coef_Macomb_Washtenaw_asc,0.0,F +coef_Macomb_Monroe_asc,0.0,F +coef_Macomb_StClair_asc,0.0,F +coef_Macomb_Livingston_asc,0.0,F +coef_Washtenaw_Detroit_asc,0.0,F +coef_Washtenaw_Wayne_asc,0.0,F +coef_Washtenaw_Oakland_asc,0.0,F +coef_Washtenaw_Macomb_asc,0.0,F +coef_Washtenaw_Monroe_asc,0.0,F +coef_Washtenaw_StClair_asc,0.0,F +coef_Washtenaw_Livingston_asc,0.0,F +coef_Monroe_Detroit_asc,0.0,F +coef_Monroe_Wayne_asc,0.0,F +coef_Monroe_Oakland_asc,0.0,F +coef_Monroe_Macomb_asc,0.0,F +coef_Monroe_Washtenaw_asc,0.0,F +coef_Monroe_Monroe_asc,0.0,F +coef_Monroe_StClair_asc,0.0,F +coef_Monroe_Livingston_asc,0.0,F +coef_StClair_Detroit_asc,0.0,F +coef_StClair_Wayne_asc,0.0,F +coef_StClair_Oakland_asc,0.0,F +coef_StClair_Washtenaw_asc,0.0,F +coef_StClair_Monroe_asc,0.0,F +coef_StClair_StClair_asc,0.0,F +coef_StClair_Livingston_asc,0.0,F +coef_Livingston_Detroit_asc,0.0,F +coef_Livingston_Wayne_asc,0.0,F +coef_Livingston_Macomb_asc,0.0,F +coef_Livingston_Washtenaw_asc,0.0,F +coef_Livingston_Monroe_asc,0.0,F +coef_Livingston_StClair_asc,0.0,F diff --git a/activitysim/examples/production_semcog/configs/workplace_location_sample.csv b/activitysim/examples/production_semcog/configs/workplace_location_sample.csv new file mode 100644 index 000000000..1e0b08ff8 --- /dev/null +++ b/activitysim/examples/production_semcog/configs/workplace_location_sample.csv @@ -0,0 +1,82 @@ +Label,Description,Expression,coefficient +local_dist,,_DIST@skims['DIST'],1 +dest_county,,_COUNTY@skims['COUNTY'],1 +util_dist,Distance,@_DIST,coef_dist +util_dist_squared,"Distance squared, capped at 20 miles","@(_DIST).clip(0,20)**2",coef_dist_squared +util_dist_cubed,"Distance cubed, capped at 20 miles","@(_DIST).clip(0,20)**3",coef_dist_cubed +util_dist_logged,Distance logged,@(_DIST).apply(np.log1p),coef_dist_logged +util_dist_low,"Distance,low income",@(df['income_segment']==WORK_LOW_SEGMENT_ID) * _DIST,coef_dist_low_inc +util_dist_med,"Distance,med income",@(df['income_segment']==WORK_MED_SEGMENT_ID) * _DIST,coef_dist_med_inc +util_dist_high,"Distance,high income",@(df['income_segment']==WORK_HIGH_SEGMENT_ID) * _DIST,coef_dist_high_inc +util_dist_part_time,"Distance,part_time",@(df['pemploy']==2) * _DIST,coef_dist_part_time +util_dist_student,"Distance,student",@(df['is_student']==True) * _DIST,coef_dist_student +util_size_variable,Size variable,@(df['size_term'] * df['shadow_price_size_term_adjustment']).apply(np.log1p),1 +util_utility_adjustment,utility adjustment,@df['shadow_price_utility_adjustment'],1 +util_no_attractions,No attractions,@df['size_term']==0,-999 +#,,, +util_dist_calib,Distance,@_DIST * -0.28,coef_dist +#,,, +util_Detroit_Detroit_ASC,Detroit_Detroit calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==1), 1, 0)",coef_Detroit_Detroit_asc +util_Detroit_Wayne_ASC,Detroit_Wayne calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==2), 1, 0)",coef_Detroit_Wayne_asc +util_Detroit_Oakland_ASC,Detroit_Oakland calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==3), 1, 0)",coef_Detroit_Oakland_asc +util_Detroit_Macomb_ASC,Detroit_Macomb calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==4), 1, 0)",coef_Detroit_Macomb_asc +util_Wayne_Detroit_ASC,Wayne_Detroit calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==1), 1, 0)",coef_Wayne_Detroit_asc +util_Wayne_Wayne_ASC,Wayne_Wayne calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==2), 1, 0)",coef_Wayne_Wayne_asc +util_Wayne_Oakland_ASC,Wayne_Oakland calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==3), 1, 0)",coef_Wayne_Oakland_asc +util_Wayne_Macomb_ASC,Wayne_Macomb calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==4), 1, 0)",coef_Wayne_Macomb_asc +util_Oakland_Detroit_ASC,Oakland_Detroit calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==1), 1, 0)",coef_Oakland_Detroit_asc +util_Oakland_Wayne_ASC,Oakland_Wayne calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==2), 1, 0)",coef_Oakland_Wayne_asc +util_Oakland_Oakland_ASC,Oakland_Oakland calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==3), 1, 0)",coef_Oakland_Oakland_asc +util_Oakland_Macomb_ASC,Oakland_Macomb calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==4), 1, 0)",coef_Oakland_Macomb_asc +util_Macomb_Detroit_ASC,Macomb_Detroit calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==1), 1, 0)",coef_Macomb_Detroit_asc +util_Macomb_Oakland_ASC,Macomb_Oakland calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==3), 1, 0)",coef_Macomb_Oakland_asc +util_Macomb_Macomb_ASC,Macomb_Macomb calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==4), 1, 0)",coef_Macomb_Macomb_asc +util_Washtenaw_Washtenaw_ASC,Washtenaw_Washtenaw calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==5), 1, 0)",coef_Washtenaw_Washtenaw_asc +util_StClair_Macomb_ASC,StClair_Macomb calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==4), 1, 0)",coef_StClair_Macomb_asc +util_Livingston_Oakland_ASC,Livingston_Oakland calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==3), 1, 0)",coef_Livingston_Oakland_asc +util_Livingston_Livingston_ASC,Livingston_Livingston calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==8), 1, 0)",coef_Livingston_Livingston_asc +util_Detroit_Washtenaw_ASC,Detroit_Washtenaw calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==5), 1, 0)",coef_Detroit_Washtenaw_asc +util_Detroit_Monroe_ASC,Detroit_Monroe calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==6), 1, 0)",coef_Detroit_Monroe_asc +util_Detroit_StClair_ASC,Detroit_StClair calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==7), 1, 0)",coef_Detroit_StClair_asc +util_Detroit_Livingston_ASC,Detroit_Livingston calibration constant,"@np.where((df['home_county']==1) & (_COUNTY==8), 1, 0)",coef_Detroit_Livingston_asc +util_Wayne_Washtenaw_ASC,Wayne_Washtenaw calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==5), 1, 0)",coef_Wayne_Washtenaw_asc +util_Wayne_Monroe_ASC,Wayne_Monroe calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==6), 1, 0)",coef_Wayne_Monroe_asc +util_Wayne_StClair_ASC,Wayne_StClair calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==7), 1, 0)",coef_Wayne_StClair_asc +util_Wayne_Livingston_ASC,Wayne_Livingston calibration constant,"@np.where((df['home_county']==2) & (_COUNTY==8), 1, 0)",coef_Wayne_Livingston_asc +util_Oakland_Washtenaw_ASC,Oakland_Washtenaw calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==5), 1, 0)",coef_Oakland_Washtenaw_asc +util_Oakland_Monroe_ASC,Oakland_Monroe calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==6), 1, 0)",coef_Oakland_Monroe_asc +util_Oakland_StClair_ASC,Oakland_StClair calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==7), 1, 0)",coef_Oakland_StClair_asc +util_Oakland_Livingston_ASC,Oakland_Livingston calibration constant,"@np.where((df['home_county']==3) & (_COUNTY==8), 1, 0)",coef_Oakland_Livingston_asc +util_Macomb_Wayne_ASC,Macomb_Wayne calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==2), 1, 0)",coef_Macomb_Wayne_asc +util_Macomb_Washtenaw_ASC,Macomb_Washtenaw calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==5), 1, 0)",coef_Macomb_Washtenaw_asc +util_Macomb_Monroe_ASC,Macomb_Monroe calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==6), 1, 0)",coef_Macomb_Monroe_asc +util_Macomb_StClair_ASC,Macomb_StClair calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==7), 1, 0)",coef_Macomb_StClair_asc +util_Macomb_Livingston_ASC,Macomb_Livingston calibration constant,"@np.where((df['home_county']==4) & (_COUNTY==8), 1, 0)",coef_Macomb_Livingston_asc +util_Washtenaw_Detroit_ASC,Washtenaw_Detroit calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==1), 1, 0)",coef_Washtenaw_Detroit_asc +util_Washtenaw_Wayne_ASC,Washtenaw_Wayne calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==2), 1, 0)",coef_Washtenaw_Wayne_asc +util_Washtenaw_Oakland_ASC,Washtenaw_Oakland calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==3), 1, 0)",coef_Washtenaw_Oakland_asc +util_Washtenaw_Macomb_ASC,Washtenaw_Macomb calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==4), 1, 0)",coef_Washtenaw_Macomb_asc +util_Washtenaw_Monroe_ASC,Washtenaw_Monroe calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==6), 1, 0)",coef_Washtenaw_Monroe_asc +util_Washtenaw_StClair_ASC,Washtenaw_StClair calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==7), 1, 0)",coef_Washtenaw_StClair_asc +util_Washtenaw_Livingston_ASC,Washtenaw_Livingston calibration constant,"@np.where((df['home_county']==5) & (_COUNTY==8), 1, 0)",coef_Washtenaw_Livingston_asc +util_Monroe_Detroit_ASC,Monroe_Detroit calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==1), 1, 0)",coef_Monroe_Detroit_asc +util_Monroe_Wayne_ASC,Monroe_Wayne calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==2), 1, 0)",coef_Monroe_Wayne_asc +util_Monroe_Oakland_ASC,Monroe_Oakland calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==3), 1, 0)",coef_Monroe_Oakland_asc +util_Monroe_Macomb_ASC,Monroe_Macomb calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==4), 1, 0)",coef_Monroe_Macomb_asc +util_Monroe_Washtenaw_ASC,Monroe_Washtenaw calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==5), 1, 0)",coef_Monroe_Washtenaw_asc +util_Monroe_Monroe_ASC,Monroe_Monroe calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==6), 1, 0)",coef_Monroe_Monroe_asc +util_Monroe_StClair_ASC,Monroe_StClair calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==7), 1, 0)",coef_Monroe_StClair_asc +util_Monroe_Livingston_ASC,Monroe_Livingston calibration constant,"@np.where((df['home_county']==6) & (_COUNTY==8), 1, 0)",coef_Monroe_Livingston_asc +util_StClair_Detroit_ASC,StClair_Detroit calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==1), 1, 0)",coef_StClair_Detroit_asc +util_StClair_Wayne_ASC,StClair_Wayne calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==2), 1, 0)",coef_StClair_Wayne_asc +util_StClair_Oakland_ASC,StClair_Oakland calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==3), 1, 0)",coef_StClair_Oakland_asc +util_StClair_Washtenaw_ASC,StClair_Washtenaw calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==5), 1, 0)",coef_StClair_Washtenaw_asc +util_StClair_Monroe_ASC,StClair_Monroe calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==6), 1, 0)",coef_StClair_Monroe_asc +util_StClair_StClair_ASC,StClair_StClair calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==7), 1, 0)",coef_StClair_StClair_asc +util_StClair_Livingston_ASC,StClair_Livingston calibration constant,"@np.where((df['home_county']==7) & (_COUNTY==8), 1, 0)",coef_StClair_Livingston_asc +util_Livingston_Detroit_ASC,Livingston_Detroit calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==1), 1, 0)",coef_Livingston_Detroit_asc +util_Livingston_Wayne_ASC,Livingston_Wayne calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==2), 1, 0)",coef_Livingston_Wayne_asc +util_Livingston_Macomb_ASC,Livingston_Macomb calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==4), 1, 0)",coef_Livingston_Macomb_asc +util_Livingston_Washtenaw_ASC,Livingston_Washtenaw calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==5), 1, 0)",coef_Livingston_Washtenaw_asc +util_Livingston_Monroe_ASC,Livingston_Monroe calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==6), 1, 0)",coef_Livingston_Monroe_asc +util_Livingston_StClair_ASC,Livingston_StClair calibration constant,"@np.where((df['home_county']==8) & (_COUNTY==7), 1, 0)",coef_Livingston_StClair_asc diff --git a/activitysim/examples/prototype_semcog/configs/write_trip_matrices.yaml b/activitysim/examples/production_semcog/configs/write_trip_matrices.yaml old mode 100755 new mode 100644 similarity index 88% rename from activitysim/examples/prototype_semcog/configs/write_trip_matrices.yaml rename to activitysim/examples/production_semcog/configs/write_trip_matrices.yaml index 1ee28c0f8..137c42c95 --- a/activitysim/examples/prototype_semcog/configs/write_trip_matrices.yaml +++ b/activitysim/examples/production_semcog/configs/write_trip_matrices.yaml @@ -11,7 +11,7 @@ preprocessor: HH_EXPANSION_WEIGHT_COL: sample_rate # added when households read in # save preprocessed trips table to pipeline if desired -SAVE_TRIPS_TABLE: False +SAVE_TRIPS_TABLE: True MATRICES: - file_name: trips_ea.omx @@ -58,6 +58,12 @@ MATRICES: data_field: KNRE_MIX_EA - name: SCHOOLBUS data_field: SCHOOLBUS_EA + - name: TAXI + data_field: TAXI_EA + - name: TNC_SINGLE + data_field: TNC_SINGLE_EA + - name: TNC_SHARED + data_field: TNC_SHARED_EA - file_name: trips_am.omx tables: - name: DRIVEALONE @@ -102,6 +108,12 @@ MATRICES: data_field: KNRE_MIX_AM - name: SCHOOLBUS data_field: SCHOOLBUS_AM + - name: TAXI + data_field: TAXI_AM + - name: TNC_SINGLE + data_field: TNC_SINGLE_AM + - name: TNC_SHARED + data_field: TNC_SHARED_AM - file_name: trips_md.omx tables: - name: DRIVEALONE @@ -146,6 +158,12 @@ MATRICES: data_field: KNRE_MIX_MD - name: SCHOOLBUS data_field: SCHOOLBUS_MD + - name: TAXI + data_field: TAXI_MD + - name: TNC_SINGLE + data_field: TNC_SINGLE_MD + - name: TNC_SHARED + data_field: TNC_SHARED_MD - file_name: trips_pm.omx tables: - name: DRIVEALONE @@ -190,6 +208,12 @@ MATRICES: data_field: KNRE_MIX_PM - name: SCHOOLBUS data_field: SCHOOLBUS_PM + - name: TAXI + data_field: TAXI_PM + - name: TNC_SINGLE + data_field: TNC_SINGLE_PM + - name: TNC_SHARED + data_field: TNC_SHARED_PM - file_name: trips_ev.omx tables: - name: DRIVEALONE @@ -234,6 +258,12 @@ MATRICES: data_field: KNRE_MIX_EV - name: SCHOOLBUS data_field: SCHOOLBUS_EV + - name: TAXI + data_field: TAXI_EV + - name: TNC_SINGLE + data_field: TNC_SINGLE_EV + - name: TNC_SHARED + data_field: TNC_SHARED_EV CONSTANTS: time_periods: diff --git a/activitysim/examples/prototype_semcog/configs/write_trip_matrices_annotate_trips_preprocessor.csv b/activitysim/examples/production_semcog/configs/write_trip_matrices_annotate_trips_preprocessor.csv old mode 100755 new mode 100644 similarity index 79% rename from activitysim/examples/prototype_semcog/configs/write_trip_matrices_annotate_trips_preprocessor.csv rename to activitysim/examples/production_semcog/configs/write_trip_matrices_annotate_trips_preprocessor.csv index d7b80f3a1..121c3202d --- a/activitysim/examples/prototype_semcog/configs/write_trip_matrices_annotate_trips_preprocessor.csv +++ b/activitysim/examples/production_semcog/configs/write_trip_matrices_annotate_trips_preprocessor.csv @@ -10,8 +10,8 @@ Description,Target,Expression ,is_ev,"trips.depart.between(time_periods['EV']['first_hour'], time_periods['EV']['last_hour'])" # ea trips,, ,DRIVEALONE_EA,((trips.trip_mode == 'DRIVEALONE') & is_ea) * tour_participants -,SHARED2_EA,((trips.trip_mode == 'SHARED2') & is_ea) * tour_participants / OCC_SHARED2 -,SHARED3_EA,((trips.trip_mode == 'SHARED3') & is_ea) * tour_participants / OCC_SHARED3 +,SHARED2_EA,"((trips.trip_mode.isin(['SHARED2', 'TAXI', 'TNC_SINGLE'])) & is_ea) * tour_participants / OCC_SHARED2" +,SHARED3_EA,"((trips.trip_mode.isin(['SHARED3', 'TNC_SHARED'])) & is_ea) * tour_participants / OCC_SHARED3" ,WALK_EA,((trips.trip_mode == 'WALK') & is_ea) * tour_participants ,BIKE_EA,((trips.trip_mode == 'BIKE') & is_ea) * tour_participants ,WALK_LOC_EA,((trips.trip_mode == 'WALK_LOC') & is_ea) * tour_participants @@ -30,10 +30,13 @@ Description,Target,Expression ,KNRE_PRM_EA,((trips.trip_mode == 'KNR_PRM') & is_ea & ~trips.outbound) * tour_participants ,KNRE_MIX_EA,((trips.trip_mode == 'KNR_MIX') & is_ea & ~trips.outbound) * tour_participants ,SCHOOLBUS_EA,((trips.trip_mode == 'SCHOOLBUS') & is_ea) * tour_participants +,TAXI_EA,((trips.trip_mode == 'TAXI') & is_ea) * tour_participants +,TNC_SINGLE_EA,((trips.trip_mode == 'TNC_SINGLE') & is_ea) * tour_participants +,TNC_SHARED_EA,((trips.trip_mode == 'TNC_SHARED') & is_ea) * tour_participants # am trips,, ,DRIVEALONE_AM,((trips.trip_mode == 'DRIVEALONE') & is_am) * tour_participants -,SHARED2_AM,((trips.trip_mode == 'SHARED2') & is_am) * tour_participants / OCC_SHARED2 -,SHARED3_AM,((trips.trip_mode == 'SHARED3') & is_am) * tour_participants / OCC_SHARED3 +,SHARED2_AM,"((trips.trip_mode.isin(['SHARED2', 'TAXI', 'TNC_SINGLE'])) & is_am) * tour_participants / OCC_SHARED2" +,SHARED3_AM,"((trips.trip_mode.isin(['SHARED3', 'TNC_SHARED'])) & is_am) * tour_participants / OCC_SHARED3" ,WALK_AM,((trips.trip_mode == 'WALK') & is_am) * tour_participants ,BIKE_AM,((trips.trip_mode == 'BIKE') & is_am) * tour_participants ,WALK_LOC_AM,((trips.trip_mode == 'WALK_LOC') & is_am) * tour_participants @@ -52,10 +55,13 @@ Description,Target,Expression ,KNRE_PRM_AM,((trips.trip_mode == 'KNR_PRM') & is_am & ~trips.outbound) * tour_participants ,KNRE_MIX_AM,((trips.trip_mode == 'KNR_MIX') & is_am & ~trips.outbound) * tour_participants ,SCHOOLBUS_AM,((trips.trip_mode == 'SCHOOLBUS') & is_am) * tour_participants +,TAXI_AM,((trips.trip_mode == 'TAXI') & is_am) * tour_participants +,TNC_SINGLE_AM,((trips.trip_mode == 'TNC_SINGLE') & is_am) * tour_participants +,TNC_SHARED_AM,((trips.trip_mode == 'TNC_SHARED') & is_am) * tour_participants # md trips,, ,DRIVEALONE_MD,((trips.trip_mode == 'DRIVEALONE') & is_md) * tour_participants -,SHARED2_MD,((trips.trip_mode == 'SHARED2') & is_md) * tour_participants / OCC_SHARED2 -,SHARED3_MD,((trips.trip_mode == 'SHARED3') & is_md) * tour_participants / OCC_SHARED3 +,SHARED2_MD,"((trips.trip_mode.isin(['SHARED2', 'TAXI', 'TNC_SINGLE'])) & is_md) * tour_participants / OCC_SHARED2" +,SHARED3_MD,"((trips.trip_mode.isin(['SHARED3', 'TNC_SHARED'])) & is_md) * tour_participants / OCC_SHARED3" ,WALK_MD,((trips.trip_mode == 'WALK') & is_md) * tour_participants ,BIKE_MD,((trips.trip_mode == 'BIKE') & is_md) * tour_participants ,WALK_LOC_MD,((trips.trip_mode == 'WALK_LOC') & is_md) * tour_participants @@ -74,10 +80,13 @@ Description,Target,Expression ,KNRE_PRM_MD,((trips.trip_mode == 'KNR_PRM') & is_md & ~trips.outbound) * tour_participants ,KNRE_MIX_MD,((trips.trip_mode == 'KNR_MIX') & is_md & ~trips.outbound) * tour_participants ,SCHOOLBUS_MD,((trips.trip_mode == 'SCHOOLBUS') & is_md) * tour_participants +,TAXI_MD,((trips.trip_mode == 'TAXI') & is_md) * tour_participants +,TNC_SINGLE_MD,((trips.trip_mode == 'TNC_SINGLE') & is_md) * tour_participants +,TNC_SHARED_MD,((trips.trip_mode == 'TNC_SHARED') & is_md) * tour_participants # pm trips,, ,DRIVEALONE_PM,((trips.trip_mode == 'DRIVEALONE') & is_pm) * tour_participants -,SHARED2_PM,((trips.trip_mode == 'SHARED2') & is_pm) * tour_participants / OCC_SHARED2 -,SHARED3_PM,((trips.trip_mode == 'SHARED3') & is_pm) * tour_participants / OCC_SHARED3 +,SHARED2_PM,"((trips.trip_mode.isin(['SHARED2', 'TAXI', 'TNC_SINGLE'])) & is_pm) * tour_participants / OCC_SHARED2" +,SHARED3_PM,"((trips.trip_mode.isin(['SHARED3', 'TNC_SHARED'])) & is_pm) * tour_participants / OCC_SHARED3" ,WALK_PM,((trips.trip_mode == 'WALK') & is_pm) * tour_participants ,BIKE_PM,((trips.trip_mode == 'BIKE') & is_pm) * tour_participants ,WALK_LOC_PM,((trips.trip_mode == 'WALK_LOC') & is_pm) * tour_participants @@ -96,10 +105,13 @@ Description,Target,Expression ,KNRE_PRM_PM,((trips.trip_mode == 'KNR_PRM') & is_pm & ~trips.outbound) * tour_participants ,KNRE_MIX_PM,((trips.trip_mode == 'KNR_MIX') & is_pm & ~trips.outbound) * tour_participants ,SCHOOLBUS_PM,((trips.trip_mode == 'SCHOOLBUS') & is_pm) * tour_participants +,TAXI_PM,((trips.trip_mode == 'TAXI') & is_pm) * tour_participants +,TNC_SINGLE_PM,((trips.trip_mode == 'TNC_SINGLE') & is_pm) * tour_participants +,TNC_SHARED_PM,((trips.trip_mode == 'TNC_SHARED') & is_pm) * tour_participants # ev trips,, ,DRIVEALONE_EV,((trips.trip_mode == 'DRIVEALONE') & is_ev) * tour_participants -,SHARED2_EV,((trips.trip_mode == 'SHARED2') & is_ev) * tour_participants / OCC_SHARED2 -,SHARED3_EV,((trips.trip_mode == 'SHARED3') & is_ev) * tour_participants / OCC_SHARED3 +,SHARED2_EV,"((trips.trip_mode.isin(['SHARED2', 'TAXI', 'TNC_SINGLE'])) & is_ev) * tour_participants / OCC_SHARED2" +,SHARED3_EV,"((trips.trip_mode.isin(['SHARED3', 'TNC_SHARED'])) & is_ev) * tour_participants / OCC_SHARED3" ,WALK_EV,((trips.trip_mode == 'WALK') & is_ev) * tour_participants ,BIKE_EV,((trips.trip_mode == 'BIKE') & is_ev) * tour_participants ,WALK_LOC_EV,((trips.trip_mode == 'WALK_LOC') & is_ev) * tour_participants @@ -118,3 +130,6 @@ Description,Target,Expression ,KNRE_PRM_EV,((trips.trip_mode == 'KNR_PRM') & is_ev & ~trips.outbound) * tour_participants ,KNRE_MIX_EV,((trips.trip_mode == 'KNR_MIX') & is_ev & ~trips.outbound) * tour_participants ,SCHOOLBUS_EV,((trips.trip_mode == 'SCHOOLBUS') & is_ev) * tour_participants +,TAXI_EV,((trips.trip_mode == 'TAXI') & is_ev) * tour_participants +,TNC_SINGLE_EV,((trips.trip_mode == 'TNC_SINGLE') & is_ev) * tour_participants +,TNC_SHARED_EV,((trips.trip_mode == 'TNC_SHARED') & is_ev) * tour_participants diff --git a/activitysim/examples/prototype_semcog/configs_mp/logging.yaml b/activitysim/examples/production_semcog/configs_mp/logging.yaml old mode 100755 new mode 100644 similarity index 66% rename from activitysim/examples/prototype_semcog/configs_mp/logging.yaml rename to activitysim/examples/production_semcog/configs_mp/logging.yaml index e932009c5..d6bc76441 --- a/activitysim/examples/prototype_semcog/configs_mp/logging.yaml +++ b/activitysim/examples/production_semcog/configs_mp/logging.yaml @@ -15,7 +15,7 @@ logging: loggers: activitysim: - level: DEBUG + level: INFO handlers: [console, logfile] propagate: false @@ -28,7 +28,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET @@ -37,21 +38,20 @@ logging: class: logging.StreamHandler stream: ext://sys.stdout formatter: simpleFormatter - #level: NOTSET - level: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [WARNING, NOTSET] + level: + if_sub_task: WARNING + if_not_sub_task: NOTSET formatters: simpleFormatter: class: logging.Formatter - #format: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' - format: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [ - '%(processName)-10s %(levelname)s - %(name)s - %(message)s', - '%(levelname)s - %(name)s - %(message)s'] + format: + if_sub_task: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' + if_not_sub_task: '%(levelname)s - %(name)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' - diff --git a/activitysim/examples/prototype_semcog/configs_mp/settings.yaml b/activitysim/examples/production_semcog/configs_mp/settings.yaml old mode 100755 new mode 100644 similarity index 77% rename from activitysim/examples/prototype_semcog/configs_mp/settings.yaml rename to activitysim/examples/production_semcog/configs_mp/settings.yaml index f25ab6798..718a4675b --- a/activitysim/examples/prototype_semcog/configs_mp/settings.yaml +++ b/activitysim/examples/production_semcog/configs_mp/settings.yaml @@ -1,38 +1,40 @@ +# Configs File with Sample Rate set by Model Runner inherit_settings: True - # raise error if any sub-process fails without waiting for others to complete fail_fast: True - # - ------------------------- dev config multiprocess: True strict: False +mem_tick: 30 use_shadow_pricing: True - - ## - example sample -households_sample_size: 0 +households_sample_size: 20 chunk_size: 0 -num_processes: 24 - +num_processes: 2 +chunk_method: hybrid_uss +chunk_training_mode: disabled # - tracing -trace_hh_id: +trace_hh_id: trace_od: #trace_hh_id: 1482966 #trace_od: [5, 11] - # to resume after last successful checkpoint, specify resume_after: _ resume_after: models: ### mp_initialize step + - input_checker - initialize_landuse - initialize_households + ### mp_accessibility step - compute_accessibility - - work_from_home - - add_size_tables ### mp_households step - school_location + - university_location_zone_override - workplace_location + - work_from_home + - transit_pass_subsidy + - transit_pass_ownership - auto_ownership_simulate - free_parking - telecommute_frequency @@ -56,16 +58,27 @@ models: - trip_purpose - trip_destination - trip_purpose_and_destination + - trip_destination_univ_zone_override + - parking_location_choice_at_university - trip_scheduling + - stop_frequency_university_parking - trip_mode_choice ### mp_summarize step - write_data_dictionary - write_tables - write_trip_matrices + multiprocess_steps: - name: mp_initialize - begin: initialize_landuse + begin: input_checker + - name: mp_accessibility + begin: compute_accessibility + # num_processes: 10 + slice: + tables: + - accessibility + exclude: True - name: mp_households begin: school_location slice: @@ -75,7 +88,6 @@ multiprocess_steps: - name: mp_summarize begin: write_data_dictionary - output_tables: action: include prefix: final_ @@ -90,7 +102,6 @@ output_tables: - school_shadow_prices - workplace_shadow_prices - joint_tour_participants - # read cached skims (using numpy memmap) from output directory (memmap is faster than omx ) #read_skim_cache: True # write memmapped cached skims to output directory after reading from omx, for use in subsequent runs diff --git a/activitysim/examples/prototype_semcog/configs_mp/shadow_pricing.yaml b/activitysim/examples/production_semcog/configs_mp/shadow_pricing.yaml old mode 100755 new mode 100644 similarity index 55% rename from activitysim/examples/prototype_semcog/configs_mp/shadow_pricing.yaml rename to activitysim/examples/production_semcog/configs_mp/shadow_pricing.yaml index fda98f4d4..9d37d47d0 --- a/activitysim/examples/prototype_semcog/configs_mp/shadow_pricing.yaml +++ b/activitysim/examples/production_semcog/configs_mp/shadow_pricing.yaml @@ -1,4 +1,3 @@ - inherit_settings: True shadow_pricing_models: @@ -9,6 +8,9 @@ shadow_pricing_models: # (ignored if global use_shadow_pricing switch is False) LOAD_SAVED_SHADOW_PRICES: False +# write out choices by iteration to trace folder +WRITE_ITERATION_CHOICES: False + # number of shadow price iterations for cold start MAX_ITERATIONS: 10 @@ -18,6 +20,9 @@ MAX_ITERATIONS_SAVED: 1 # ignore criteria for zones smaller than size_threshold SIZE_THRESHOLD: 10 +# ignore criteria for zones smaller than target_threshold (total employmnet or enrollment) +TARGET_THRESHOLD: 20 + # zone passes if modeled is within percent_tolerance of predicted_size PERCENT_TOLERANCE: 5 @@ -25,13 +30,29 @@ PERCENT_TOLERANCE: 5 FAIL_THRESHOLD: 1 # CTRAMP or daysim -SHADOW_PRICE_METHOD: ctramp +# SHADOW_PRICE_METHOD: ctramp #SHADOW_PRICE_METHOD: daysim +SHADOW_PRICE_METHOD: simulation # ctramp-style shadow_pricing_method parameters DAMPING_FACTOR: 1 +# apply different targets for each segment specified in destination_size_terms.csv +school_segmentation_targets: + # format is segment: land_use_column + university: Univ_Enrollment + highschool: G9_12 + gradeschool: K_8 + + +# if target names are the same, they will be combined together +workplace_segmentation_targets: + # ideally, need to use employment with removed external workers + work_low: tot_emp + work_med: tot_emp + work_high: tot_emp + work_veryhigh: tot_emp # daysim-style shadow_pricing_method parameters # FIXME should these be the same as PERCENT_TOLERANCE and FAIL_THRESHOLD above? DAYSIM_ABSOLUTE_TOLERANCE: 50 -DAYSIM_PERCENT_TOLERANCE: 10 +DAYSIM_PERCENT_TOLERANCE: 10 \ No newline at end of file diff --git a/activitysim/examples/production_semcog/data/Network.csv b/activitysim/examples/production_semcog/data/Network.csv new file mode 100644 index 000000000..f9ef6cf83 --- /dev/null +++ b/activitysim/examples/production_semcog/data/Network.csv @@ -0,0 +1,9226 @@ +ID,Dir,Length,AB_LANES,BA_LANES,CENT_LANE,MODE_ID,NFC,NFC_FLAG,AREA_TYPE,COUNTY,FENAME,FETYPE,PR,BMP,EMP,TransitOnly,Walktime,Alpha,Beta,AB_TIME,BA_TIME,AB_DrvTime,BA_DrvTime,AB_FFS,BA_FFS,AB_DYCap,BA_DYCap,AB_AMCap,BA_AMCap,AB_MDCap,BA_MDCap,AB_PMCap,BA_PMCap,AB_EVCap,BA_EVCap,AB_NTCap,BA_NTCap,AB_AM_IVTT_1,BA_AM_IVTT_1,AB_AM_IVTT_2,BA_AM_IVTT_2,AB_AM_IVTT_3,BA_AM_IVTT_3,AB_MD_IVTT_1,BA_MD_IVTT_1,AB_MD_IVTT_2,BA_MD_IVTT_2,AB_MD_IVTT_3,BA_MD_IVTT_3,AB_PM_IVTT_1,BA_PM_IVTT_1,AB_PM_IVTT_2,BA_PM_IVTT_2,AB_PM_IVTT_3,BA_PM_IVTT_3,AB_EV_IVTT_1,BA_EV_IVTT_1,AB_EV_IVTT_2,BA_EV_IVTT_2,AB_EV_IVTT_3,BA_EV_IVTT_3,AB_NT_IVTT_1,BA_NT_IVTT_1,AB_NT_IVTT_2,BA_NT_IVTT_2,AB_NT_IVTT_3,BA_NT_IVTT_3,AB_AM_HwyT,BA_AM_HwyT,AB_MD_HwyT,BA_MD_HwyT,AB_PM_HwyT,BA_PM_HwyT,AB_EV_HwyT,BA_EV_HwyT,AB_NT_HwyT,BA_NT_HwyT,AB_AM_HwyC,BA_AM_HwyC,AB_MD_HwyC,BA_MD_HwyC,AB_PM_HwyC,BA_PM_HwyC,AB_EV_HwyC,BA_EV_HwyC,AB_NT_HwyC,BA_NT_HwyC,AB_AM_HwyS,BA_AM_HwyS,AB_MD_HwyS,BA_MD_HwyS,AB_PM_HwyS,BA_PM_HwyS,AB_EV_HwyS,BA_EV_HwyS,AB_NT_HwyS,BA_NT_HwyS,AB_AMFB,AB_MDFB,AB_PMFB,AB_EVFB,AB_NTFB,BA_AMFB,BA_MDFB,BA_PMFB,BA_EVFB,BA_NTFB,AB_EACap,BA_EACap,AB_EA_IVTT_1,BA_EA_IVTT_1,AB_EA_IVTT_2,BA_EA_IVTT_2,AB_EA_IVTT_3,BA_EA_IVTT_3,AB_EA_HwyT,BA_EA_HwyT,AB_EA_HwyC,BA_EA_HwyC,AB_EA_HwyS,BA_EA_HwyS,AB_EAFB,BA_EAFB +5439,0,0.504171,1,1,0,2,4,,5,8,M 36,,932308,9.288,9.791,0,10.803658,3,4,0.756256,0.756256,0.756256,0.756256,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.956193,0.862178,0.756256,0.756256,0.956193,0.862178,0.831098,0.812566,0.756256,0.756256,0.831098,0.812566,0.886685,0.980271,0.756256,0.756256,0.886685,0.980271,0.756256,0.756256,0.756256,0.756256,0.756256,0.756256,,,,,,,0.956193,0.862178,0.831098,0.812566,0.886685,0.980271,0.756256,0.756256,0.756256,0.756256,0.377609,0.349404,0.34008,0.33452,0.356756,0.384832,0.317628,0.317628,0.168897,0.168897,31.636133,35.085829,36.397944,37.228066,34.116104,30.859073,40,40,40,40,,,,,,,,,,,3096,3096,0.756256,0.756256,0.756256,0.756256,0.756256,0.756256,0.756256,0.756256,0.317628,0.317628,40,40,, +7044,0,2.780595,1,1,0,2,5,,5,8,Chilson,Rd,933603,1.514,4.294,0,59.584175,3.7,5,5.56119,5.56119,5.56119,5.56119,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.565107,5.56119,5.56119,5.56119,5.565107,5.56119,5.561192,5.561192,5.56119,5.56119,5.561192,5.561192,5.561272,5.565567,5.56119,5.56119,5.561272,5.565567,5.56119,5.56119,5.56119,5.56119,5.56119,5.56119,,,,,,,5.565107,5.56119,5.561192,5.561192,5.561272,5.565567,5.56119,5.56119,5.56119,5.56119,2.170039,2.168864,2.168865,2.168865,2.168889,2.170177,2.168864,2.168864,1.140044,1.140044,29.978884,29.999997,29.999988,29.999985,29.999555,29.976404,30,30,30,30,,,,,,,,,,,2580,2580,5.56119,5.56119,5.56119,5.56119,5.56119,5.56119,5.56119,5.56119,2.168864,2.168864,30,30,, +7052,0,1.131603,1,1,0,2,5,,5,8,Golf Club,Rd,933602,0.811,1.942,0,24.248641,3.7,5,2.263206,2.263206,2.263206,2.263206,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.300279,2.270913,2.263206,2.263206,2.300279,2.270913,2.264568,2.264005,2.263206,2.263206,2.264568,2.264005,2.281115,2.30263,2.263206,2.263206,2.281115,2.30263,2.263206,2.263206,2.263206,2.263206,2.263206,2.263206,,,,,,,2.300279,2.270913,2.264568,2.264005,2.281115,2.30263,2.263206,2.263206,2.263206,2.263206,0.893772,0.884962,0.883059,0.88289,0.888023,0.894478,0.882651,0.882651,0.463957,0.463957,29.516506,29.898197,29.981964,29.989414,29.764477,29.486369,30,30,30,30,,,,,,,,,,,2580,2580,2.263206,2.263206,2.263206,2.263206,2.263206,2.263206,2.263206,2.263206,0.882651,0.882651,30,30,, +7092,0,1.249086,1,1,0,2,3,,5,8,Highland,Rd,933209,5.027,6.275,0,26.766121,1.7,4,1.498903,1.498903,1.498903,1.498903,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.035606,2.620478,1.498903,1.498903,2.035606,2.620478,1.894741,1.920698,1.498903,1.498903,1.894741,1.920698,2.468912,2.373632,1.498903,1.498903,2.468912,2.373632,1.498903,1.498903,1.498903,1.498903,1.498903,1.498903,,,,,,,2.035606,2.620478,1.894741,1.920698,2.468912,2.373632,1.498903,1.498903,1.498903,1.498903,0.835517,1.010979,0.793258,0.801045,0.965509,0.936925,0.674506,0.674506,0.362235,0.362235,36.817115,28.599796,39.554299,39.019745,30.355531,31.574037,50,50,50,50,,,,,,,,,,,3096,3096,1.498903,1.498903,1.498903,1.498903,1.498903,1.498903,1.498903,1.498903,0.674506,0.674506,50,50,, +7160,0,0.237102,2,2,1,2,3,,4,8,Grand River,Rd,932910,14.843,15.08,0,5.080747,3.7,5,0.355652,0.355652,0.355652,0.355652,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.396732,0.362265,0.355652,0.355652,0.396732,0.362265,0.365309,0.364483,0.355652,0.355652,0.365309,0.364483,0.391756,0.442494,0.355652,0.355652,0.391756,0.442494,0.355652,0.355652,0.355652,0.355652,0.355652,0.355652,,,,,,,0.396732,0.362265,0.365309,0.364483,0.391756,0.442494,0.355652,0.355652,0.355652,0.355652,0.161698,0.151358,0.152271,0.152023,0.160205,0.175426,0.149374,0.149374,0.079429,0.079429,35.85823,39.2698,38.942597,39.030877,36.313639,32.149829,40,40,40,40,,,,,,,,,,,7946,7946,0.355652,0.355652,0.355652,0.355652,0.355652,0.355652,0.355652,0.355652,0.149374,0.149374,40,40,, +7273,0,2.361953,1,1,0,2,6,GRV,5,8,Cohoctah,Rd,941605,0,2.361,0,50.613269,5.55,5,5.668686,5.668686,5.668686,5.668686,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,5.669272,5.669212,5.668686,5.668686,5.669272,5.669212,5.668815,5.668813,5.668686,5.668686,5.668815,5.668813,5.668982,5.669086,5.668686,5.668686,5.668982,5.669086,5.668686,5.668686,5.668686,5.668686,5.668686,5.668686,,,,,,,5.669272,5.669212,5.668815,5.668813,5.668982,5.669086,5.668686,5.668686,5.668686,5.668686,2.125933,2.125915,2.125796,2.125795,2.125846,2.125877,2.125757,2.125757,1.110118,1.110118,24.997417,24.997679,24.999429,24.999441,24.998695,24.998237,25,25,25,25,,,,,,,,,,,2236,2236,5.668686,5.668686,5.668686,5.668686,5.668686,5.668686,5.668686,5.668686,2.125757,2.125757,25,25,, +7461,0,1.126379,1,1,0,2,4,,5,8,Coon Lake,Rd,935710,12.715,13.841,0,24.136691,3,4,1.689568,1.689568,1.689568,1.689568,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.768738,1.69012,1.689568,1.689568,1.768738,1.69012,1.689798,1.689956,1.689568,1.689568,1.689798,1.689956,1.69282,1.782179,1.689568,1.689568,1.69282,1.782179,1.689568,1.689568,1.689568,1.689568,1.689568,1.689568,,,,,,,1.768738,1.69012,1.689798,1.689956,1.69282,1.782179,1.689568,1.689568,1.689568,1.689568,0.73337,0.709784,0.709688,0.709735,0.710594,0.737402,0.709619,0.709619,0.377337,0.377337,38.209582,39.986934,39.994562,39.990836,39.923176,37.9214,40,40,40,40,,,,,,,,,,,3096,3096,1.689568,1.689568,1.689568,1.689568,1.689568,1.689568,1.689568,1.689568,0.709619,0.709619,40,40,, +40452,1,2.564832,3,0,0,1,1,,4,8,E I 96,,935105,12.602,15.166,0,,0.8,7.5,2.198428,,2.198428,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.205009,,2.198428,,2.205009,,2.198541,,2.198428,,2.198541,,2.199147,,2.198428,,2.199147,,2.198428,,2.198428,,2.198428,,,,,,,,2.205009,,2.198541,,2.199147,,2.198428,,2.198428,,1.123172,,1.121232,,1.121414,,1.121198,,0.611896,,69.791086,,69.996408,,69.977123,,70,,70,,,,,,,,,,,,22704,,2.198428,,2.198428,,2.198428,,2.198428,,1.121198,,70,,, +40453,-1,3.036386,0,3,0,1,1,,4,8,W I 96,,935207,12.178,15.213,0,,0.8,7.5,,2.602617,,2.602617,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.602846,,2.602617,,2.602846,,2.602702,,2.602617,,2.602702,,2.608006,,2.602617,,2.608006,,2.602617,,2.602617,,2.602617,,,,,,,,2.602846,,2.602702,,2.608006,,2.602617,,2.602617,,1.327403,,1.32736,,1.328951,,1.327334,,0.724395,,69.993832,,69.997707,,69.855342,,70,,70,,,,,,,,,,,,22704,,2.602617,,2.602617,,2.602617,,2.602617,,1.327334,,70,, +7760,0,1.594588,1,1,0,2,6,,5,8,Swarthout,Rd,944806,0,1.594,0,34.169736,5.8,6,3.189175,3.189175,3.189175,3.189175,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.193419,3.189587,3.189175,3.189175,3.193419,3.189587,3.189256,3.189257,3.189175,3.189175,3.189256,3.189257,3.190923,3.195381,3.189175,3.189175,3.190923,3.195381,3.189175,3.189175,3.189175,3.189175,3.189175,3.189175,,,,,,,3.193419,3.189587,3.189256,3.189257,3.190923,3.195381,3.189175,3.189175,3.189175,3.189175,1.245051,1.243902,1.243803,1.243803,1.244303,1.24564,1.243778,1.243778,0.653781,0.653781,29.960137,29.996131,29.999241,29.999229,29.983571,29.941735,30,30,30,30,,,,,,,,,,,2236,2236,3.189175,3.189175,3.189175,3.189175,3.189175,3.189175,3.189175,3.189175,1.243778,1.243778,30,30,, +8014,0,0.998241,1,1,0,2,5,,5,8,Faussett,Rd,934509,2.179,3.177,0,21.390883,3.7,5,1.996482,1.996482,1.996482,1.996482,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.996512,1.996612,1.996482,1.996482,1.996512,1.996612,1.996483,1.996482,1.996482,1.996482,1.996483,1.996482,1.996507,1.996496,1.996482,1.996482,1.996507,1.996496,1.996482,1.996482,1.996482,1.996482,1.996482,1.996482,,,,,,,1.996512,1.996612,1.996483,1.996482,1.996507,1.996496,1.996482,1.996482,1.996482,1.996482,0.778637,0.778667,0.778628,0.778628,0.778635,0.778632,0.778628,0.778628,0.409279,0.409279,29.999549,29.998055,29.999998,29.999999,29.999635,29.999788,30,30,30,30,,,,,,,,,,,2580,2580,1.996482,1.996482,1.996482,1.996482,1.996482,1.996482,1.996482,1.996482,0.778628,0.778628,30,30,, +8052,0,1.00383,1,1,0,2,6,GRV,5,8,Clyde,Rd,939905,0.986,1.989,0,21.510647,5.55,5,2.409192,2.409192,2.409192,2.409192,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.411614,2.417957,2.409192,2.409192,2.411614,2.417957,2.409281,2.409336,2.409192,2.409192,2.409281,2.409336,2.413322,2.410911,2.409192,2.409192,2.413322,2.410911,2.409192,2.409192,2.409192,2.409192,2.409192,2.409192,,,,,,,2.411614,2.417957,2.409281,2.409336,2.413322,2.410911,2.409192,2.409192,2.409192,2.409192,0.904174,0.906077,0.903474,0.90349,0.904686,0.903963,0.903447,0.903447,0.4718,0.4718,24.974893,24.909378,24.999081,24.998511,24.957219,24.982183,25,25,25,25,,,,,,,,,,,2236,2236,2.409192,2.409192,2.409192,2.409192,2.409192,2.409192,2.409192,2.409192,0.903447,0.903447,25,25,, +9524,0,1.620616,1,1,0,2,4,,4,5,Baker,Rd,1426608,0.777,2.397,0,34.72749,4.5,4.5,2.558868,2.558868,2.558868,2.558868,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.00758,4.366477,2.558868,2.558868,3.00758,4.366477,2.87377,2.866699,2.558868,2.558868,2.87377,2.866699,4.180157,3.501241,2.558868,2.558868,4.180157,3.501241,2.558868,2.558868,2.558868,2.558868,2.558868,2.558868,,,,,,,3.00758,4.366477,2.87377,2.866699,4.180157,3.501241,2.558868,2.558868,2.558868,2.558868,1.193985,1.601654,1.153842,1.151721,1.545758,1.342083,1.059371,1.059371,0.562098,0.562098,32.330633,22.268975,33.836031,33.919489,23.261558,27.772144,38,38,38,38,,,,,,,,,,,3096,3096,2.558868,2.558868,2.558868,2.558868,2.558868,2.558868,2.558868,2.558868,1.059371,1.059371,38,38,, +9556,1,4.558211,2,0,0,1,1,,5,5,E I 94,,1426109,8.368,12.924,0,,1.02,7,3.907038,,3.907038,,70,,44000,,9988,,22000,,14194,,15136,,15118,,4.491764,,3.907038,,4.491764,,3.999598,,3.907038,,3.999598,,4.342814,,3.907038,,4.342814,,3.907038,,3.907038,,3.907038,,,,,,,,4.491764,,3.999598,,4.342814,,3.907038,,3.907038,,2.168007,,2.020357,,2.123322,,1.992589,,1.087459,,60.887585,,68.380029,,62.97591,,70,,70,,,,,,,,,,,,15136,,3.907038,,3.907038,,3.907038,,3.907038,,1.992589,,70,,, +9651,0,0.818111,1,1,0,2,4,,4,5,Jackson,Rd,1426508,13.096,13.914,0,17.530944,4.5,4.5,1.291754,1.291754,1.291754,1.291754,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.971197,1.292339,1.291754,1.291754,1.971197,1.292339,1.294329,1.293899,1.291754,1.291754,1.294329,1.293899,1.30527,1.656104,1.291754,1.291754,1.30527,1.656104,1.291754,1.291754,1.291754,1.291754,1.291754,1.291754,,,,,,,1.971197,1.292339,1.294329,1.293899,1.30527,1.656104,1.291754,1.291754,1.291754,1.291754,0.738619,0.534962,0.535559,0.53543,0.538841,0.644091,0.534786,0.534786,0.283755,0.283755,24.901945,37.982782,37.924405,37.936997,37.606498,29.63983,38,38,38,38,,,,,,,,,,,3096,3096,1.291754,1.291754,1.291754,1.291754,1.291754,1.291754,1.291754,1.291754,0.534786,0.534786,38,38,, +9695,0,1.002933,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,7.105,8.107,0,21.491417,3.7,5,2.005866,2.005866,2.005866,2.005866,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.012079,2.005867,2.005866,2.005866,2.012079,2.005867,2.005871,2.005867,2.005866,2.005866,2.005871,2.005867,2.005885,2.008589,2.005866,2.005866,2.005885,2.008589,2.005866,2.005866,2.005866,2.005866,2.005866,2.005866,,,,,,,2.012079,2.005867,2.005871,2.005867,2.005885,2.008589,2.005866,2.005866,2.005866,2.005866,0.784151,0.782288,0.782289,0.782288,0.782293,0.783105,0.782288,0.782288,0.411202,0.411202,29.907365,29.999985,29.999921,29.999973,29.999707,29.959316,30,30,30,30,,,,,,,,,,,2580,2580,2.005866,2.005866,2.005866,2.005866,2.005866,2.005866,2.005866,2.005866,0.782288,0.782288,30,30,, +10004,0,1.022865,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,9.532,10.554,0,21.918539,3,4,1.534298,1.534298,1.534298,1.534298,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.61136,1.535687,1.534298,1.534298,1.61136,1.535687,1.536629,1.535501,1.534298,1.534298,1.536629,1.535501,1.548476,1.608604,1.534298,1.534298,1.548476,1.608604,1.534298,1.534298,1.534298,1.534298,1.534298,1.534298,,,,,,,1.61136,1.535687,1.536629,1.535501,1.548476,1.608604,1.534298,1.534298,1.534298,1.534298,0.667524,0.644822,0.645104,0.644766,0.648659,0.666697,0.644405,0.644405,0.34266,0.34266,38.087035,39.96381,39.93932,39.968645,39.633752,38.152286,40,40,40,40,,,,,,,,,,,3096,3096,1.534298,1.534298,1.534298,1.534298,1.534298,1.534298,1.534298,1.534298,0.644405,0.644405,40,40,, +10064,0,1.108566,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,0,1.115,0,23.754994,5.55,5,3.325699,3.325699,3.325699,3.325699,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.326342,3.3263,3.325699,3.325699,3.326342,3.3263,3.325708,3.325708,3.325699,3.325699,3.325708,3.325708,3.325789,3.325792,3.325699,3.325699,3.325789,3.325792,3.325699,3.325699,3.325699,3.325699,3.325699,3.325699,,,,,,,3.326342,3.3263,3.325708,3.325708,3.325789,3.325792,3.325699,3.325699,3.325699,3.325699,1.197444,1.197432,1.197254,1.197254,1.197279,1.19728,1.197252,1.197252,0.620797,0.620797,19.996137,19.996389,19.999947,19.999946,19.999457,19.999441,20,20,20,20,,,,,,,,,,,2236,2236,3.325699,3.325699,3.325699,3.325699,3.325699,3.325699,3.325699,3.325699,1.197252,1.197252,20,20,, +10136,0,1.321996,1,1,0,2,3,,5,5,Michigan,Ave,1427301,4.261,5.582,0,28.328485,1.7,4,1.586395,1.586395,1.586395,1.586395,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.483666,2.384701,1.586395,1.586395,2.483666,2.384701,2.269978,2.285563,1.586395,1.586395,2.269978,2.285563,2.817445,2.906256,1.586395,1.586395,2.817445,2.906256,1.586395,1.586395,1.586395,1.586395,1.586395,1.586395,,,,,,,2.483666,2.384701,2.269978,2.285563,2.817445,2.906256,1.586395,1.586395,1.586395,1.586395,0.983059,0.95337,0.918953,0.923628,1.083193,1.109836,0.713878,0.713878,0.383379,0.383379,31.936564,33.26193,34.942957,34.704697,28.153078,27.29276,50,50,50,50,,,,,,,,,,,3096,3096,1.586395,1.586395,1.586395,1.586395,1.586395,1.586395,1.586395,1.586395,0.713878,0.713878,50,50,, +10398,-1,4.851275,0,2,0,1,1,,5,5,W I 94,,1426110,8.315,13.164,0,,1.02,7,,4.158236,,4.158236,,70,,44000,,9988,,22000,,14194,,15136,,15118,,4.293258,,4.158236,,4.293258,,4.233532,,4.158236,,4.233532,,5.009941,,4.158236,,5.009941,,4.158236,,4.158236,,4.158236,,,,,,,,4.293258,,4.233532,,5.009941,,4.158236,,4.158236,,2.161207,,2.143289,,2.376212,,2.1207,,1.157376,,67.798514,,68.755012,,58.099787,,70,,70,,,,,,,,,,,,15136,,4.158236,,4.158236,,4.158236,,4.158236,,2.1207,,70,, +10757,0,1.437476,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,0.08,1.517,0,30.803061,3.7,5,2.874952,2.874952,2.874952,2.874952,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.881205,2.874963,2.874952,2.874952,2.881205,2.874963,2.875003,2.874982,2.874952,2.874952,2.875003,2.874982,2.875293,2.879426,2.874952,2.874952,2.875293,2.879426,2.874952,2.874952,2.874952,2.874952,2.874952,2.874952,,,,,,,2.881205,2.874963,2.875003,2.874982,2.875293,2.879426,2.874952,2.874952,2.874952,2.874952,1.123107,1.121235,1.121247,1.12124,1.121333,1.122574,1.121231,1.121231,0.589365,0.589365,29.934893,29.999884,29.999468,29.999686,29.99645,29.953387,30,30,30,30,,,,,,,,,,,2580,2580,2.874952,2.874952,2.874952,2.874952,2.874952,2.874952,2.874952,2.874952,1.121231,1.121231,30,30,, +10991,0,1.987447,1,1,0,2,6,GRV,5,5,Saline Waterworks,Rd,1432706,2.01,3.997,0,42.588151,5.55,5,4.769873,4.769873,4.769873,4.769873,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,,,,,,,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,1.788702,1.788702,1.788702,1.788702,1.788702,1.788702,1.788702,1.788702,0.9341,0.9341,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,4.769873,1.788702,1.788702,25,25,, +11092,0,0.316447,1,1,0,2,4,,4,5,Main,St,1446002,0.812,1.128,0,6.781009,4.5,4.5,0.499653,0.499653,0.499653,0.499653,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.702165,0.522284,0.499653,0.499653,0.702165,0.522284,0.538235,0.528679,0.499653,0.499653,0.538235,0.528679,0.610748,0.677959,0.499653,0.499653,0.610748,0.677959,0.499653,0.499653,0.499653,0.499653,0.499653,0.499653,,,,,,,0.702165,0.522284,0.538235,0.528679,0.610748,0.677959,0.499653,0.499653,0.499653,0.499653,0.26761,0.213646,0.218431,0.215564,0.240185,0.260348,0.206856,0.206856,0.109757,0.109757,27.040404,36.353436,35.2761,35.913739,31.087827,28.005843,38,38,38,38,,,,,,,,,,,3096,3096,0.499653,0.499653,0.499653,0.499653,0.499653,0.499653,0.499653,0.499653,0.206856,0.206856,38,38,, +11128,0,0.925921,1,1,0,2,5,,5,5,Huron River,Dr,1445801,4.452,5.377,0,19.841172,3.7,5,1.851843,1.851843,1.851843,1.851843,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.921015,1.851843,1.851843,1.851843,1.921015,1.851843,1.851844,1.851843,1.851843,1.851843,1.851844,1.851843,1.851846,1.867934,1.851843,1.851843,1.851846,1.867934,1.851843,1.851843,1.851843,1.851843,1.851843,1.851843,,,,,,,1.921015,1.851843,1.851844,1.851843,1.851846,1.867934,1.851843,1.851843,1.851843,1.851843,0.74297,0.722219,0.722219,0.722219,0.72222,0.727046,0.722219,0.722219,0.379628,0.379628,28.919752,29.999997,29.999984,29.999991,29.999952,29.741574,30,30,30,30,,,,,,,,,,,2580,2580,1.851843,1.851843,1.851843,1.851843,1.851843,1.851843,1.851843,1.851843,0.722219,0.722219,30,30,, +11359,0,0.323063,1,1,0,2,5,,4,5,Central,St,4605379,0,0.323,0,6.922768,5.8,4.5,0.717917,0.717917,0.717917,0.717917,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.718908,0.761805,0.717917,0.717917,0.718908,0.761805,0.718662,0.71915,0.717917,0.717917,0.718662,0.71915,0.73793,0.723898,0.717917,0.717917,0.73793,0.723898,0.717917,0.717917,0.717917,0.717917,0.717917,0.717917,,,,,,,0.718908,0.761805,0.718662,0.71915,0.73793,0.723898,0.717917,0.717917,0.717917,0.717917,0.273824,0.286693,0.27375,0.273896,0.27953,0.275321,0.273526,0.273526,0.143224,0.143224,26.962751,25.444519,26.971988,26.953682,26.267743,26.776919,27,27,27,27,,,,,,,,,,,2580,2580,0.717917,0.717917,0.717917,0.717917,0.717917,0.717917,0.717917,0.717917,0.273526,0.273526,27,27,, +19920,0,0.824344,1,1,0,2,5,,5,8,Shehan,Rd,4103148,0,0.824,0,17.664524,3.7,5,1.648689,1.648689,1.648689,1.648689,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.649069,1.65169,1.648689,1.648689,1.649069,1.65169,1.648737,1.64874,1.648689,1.648689,1.648737,1.64874,1.651262,1.649669,1.648689,1.648689,1.651262,1.649669,1.648689,1.648689,1.648689,1.648689,1.648689,1.648689,,,,,,,1.649069,1.65169,1.648737,1.64874,1.651262,1.649669,1.648689,1.648689,1.648689,1.648689,0.643103,0.643889,0.643003,0.643004,0.643761,0.643283,0.642989,0.642989,0.337981,0.337981,29.993087,29.94549,29.99913,29.999075,29.953255,29.982177,30,30,30,30,,,,,,,,,,,2580,2580,1.648689,1.648689,1.648689,1.648689,1.648689,1.648689,1.648689,1.648689,0.642989,0.642989,30,30,, +21855,0,1.434777,1,1,0,2,5,,5,5,Austin,Rd,4604910,7.18,8.614,0,30.745217,3.7,5,2.869554,2.869554,2.869554,2.869554,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.879618,2.869995,2.869554,2.869554,2.879618,2.869995,2.869748,2.869692,2.869554,2.869554,2.869748,2.869692,2.870695,2.883822,2.869554,2.869554,2.870695,2.883822,2.869554,2.869554,2.869554,2.869554,2.869554,2.869554,,,,,,,2.879618,2.869995,2.869748,2.869692,2.870695,2.883822,2.869554,2.869554,2.869554,2.869554,1.122145,1.119258,1.119184,1.119167,1.119468,1.123406,1.119126,1.119126,0.588258,0.588258,29.895151,29.995383,29.997969,29.998551,29.98807,29.851569,30,30,30,30,,,,,,,,,,,2580,2580,2.869554,2.869554,2.869554,2.869554,2.869554,2.869554,2.869554,2.869554,1.119126,1.119126,30,30,, +24594,0,0.588089,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.601901,0.15,4,2.352355,2.352355,2.352355,2.352355,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,,,,,,,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,0.811562,0.811562,0.811562,0.811562,0.811562,0.811562,0.811562,0.811562,0.417543,0.417543,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,2.352355,0.811562,0.811562,15,15,, +24603,0,1.216451,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.066801,0.15,4,4.865803,4.865803,4.865803,4.865803,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,,,,,,,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,1.678702,1.678702,1.678702,1.678702,1.678702,1.678702,1.678702,1.678702,0.86368,0.86368,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,4.865803,1.678702,1.678702,15,15,, +24604,0,1.669329,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.771344,0.15,4,6.677318,6.677318,6.677318,6.677318,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,,,,,,,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,2.303675,2.303675,2.303675,2.303675,2.303675,2.303675,2.303675,2.303675,1.185224,1.185224,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,6.677318,2.303675,2.303675,15,15,, +24608,0,1.330765,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.516396,0.15,4,5.323061,5.323061,5.323061,5.323061,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,,,,,,,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,1.836456,1.836456,1.836456,1.836456,1.836456,1.836456,1.836456,1.836456,0.944843,0.944843,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,5.323061,1.836456,1.836456,15,15,, +24613,0,1.505446,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.259564,0.15,4,6.021785,6.021785,6.021785,6.021785,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,,,,,,,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,2.077516,2.077516,2.077516,2.077516,2.077516,2.077516,2.077516,2.077516,1.068867,1.068867,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,6.021785,2.077516,2.077516,15,15,, +24614,0,0.329505,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.060816,0.15,4,1.318019,1.318019,1.318019,1.318019,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,,,,,,,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,0.454717,0.454717,0.454717,0.454717,0.454717,0.454717,0.454717,0.454717,0.233948,0.233948,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,1.318019,0.454717,0.454717,15,15,, +24616,0,0.951103,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.380772,0.15,4,3.804411,3.804411,3.804411,3.804411,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,,,,,,,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,1.312522,1.312522,1.312522,1.312522,1.312522,1.312522,1.312522,1.312522,0.675283,0.675283,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,3.804411,1.312522,1.312522,15,15,, +24626,0,1.023795,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,21.938459,0.15,4,4.095179,4.095179,4.095179,4.095179,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,,,,,,,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,1.412837,1.412837,1.412837,1.412837,1.412837,1.412837,1.412837,1.412837,0.726894,0.726894,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,4.095179,1.412837,1.412837,15,15,, +24629,0,1.588811,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,34.045948,0.15,4,6.355244,6.355244,6.355244,6.355244,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,,,,,,,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,2.192559,2.192559,2.192559,2.192559,2.192559,2.192559,2.192559,2.192559,1.128056,1.128056,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,6.355244,2.192559,2.192559,15,15,, +24631,0,1.060343,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.721639,0.15,4,4.241373,4.241373,4.241373,4.241373,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,,,,,,,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,1.463274,1.463274,1.463274,1.463274,1.463274,1.463274,1.463274,1.463274,0.752844,0.752844,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,4.241373,1.463274,1.463274,15,15,, +24638,0,0.298511,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.396667,0.15,4,1.194045,1.194045,1.194045,1.194045,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,,,,,,,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,0.411945,0.411945,0.411945,0.411945,0.411945,0.411945,0.411945,0.411945,0.211943,0.211943,15,14.999999,15,15,14.999998,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,1.194045,0.411945,0.411945,15,15,, +24645,0,1.39543,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.902076,0.15,4,5.581721,5.581721,5.581721,5.581721,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,,,,,,,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,1.925694,1.925694,1.925694,1.925694,1.925694,1.925694,1.925694,1.925694,0.990755,0.990755,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,5.581721,1.925694,1.925694,15,15,, +24647,0,1.775936,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.055769,0.15,4,7.103744,7.103744,7.103744,7.103744,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,,,,,,,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,2.450792,2.450792,2.450792,2.450792,2.450792,2.450792,2.450792,2.450792,1.260914,1.260914,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,7.103744,2.450792,2.450792,15,15,, +24649,0,0.757875,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.240188,0.15,4,3.031502,3.031502,3.031502,3.031502,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,,,,,,,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,1.045868,1.045868,1.045868,1.045868,1.045868,1.045868,1.045868,1.045868,0.538092,0.538092,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,3.031502,1.045868,1.045868,15,15,, +24650,0,1.307831,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.024943,0.15,4,5.231323,5.231323,5.231323,5.231323,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,,,,,,,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,1.804806,1.804806,1.804806,1.804806,1.804806,1.804806,1.804806,1.804806,0.92856,0.92856,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,5.231323,1.804806,1.804806,15,15,, +24651,0,0.469697,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.064942,0.15,4,1.878789,1.878789,1.878789,1.878789,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,,,,,,,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,0.648182,0.648182,0.648182,0.648182,0.648182,0.648182,0.648182,0.648182,0.333485,0.333485,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,1.878789,0.648182,0.648182,15,15,, +27060,0,0.628688,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,13.471895,0.15,4,2.514754,2.514754,2.514754,2.514754,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,,,,,,,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,0.86759,0.86759,0.86759,0.86759,0.86759,0.86759,0.86759,0.86759,0.446369,0.446369,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,2.514754,0.86759,0.86759,15,15,, +29636,0,0.845217,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.111784,0.15,4,3.380866,3.380866,3.380866,3.380866,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,,,,,,,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,1.166399,1.166399,1.166399,1.166399,1.166399,1.166399,1.166399,1.166399,0.600104,0.600104,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,3.380866,1.166399,1.166399,15,15,, +29986,0,1.851808,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.681604,0.15,4,7.407233,7.407233,7.407233,7.407233,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,,,,,,,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,2.555495,2.555495,2.555495,2.555495,2.555495,2.555495,2.555495,2.555495,1.314784,1.314784,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,7.407233,2.555495,2.555495,15,15,, +30115,0,0.83924,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.983725,0.15,4,3.356962,3.356962,3.356962,3.356962,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,,,,,,,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,1.158152,1.158152,1.158152,1.158152,1.158152,1.158152,1.158152,1.158152,0.595861,0.595861,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,3.356962,1.158152,1.158152,15,15,, +6190,0,2.324564,1,1,0,2,4,,5,8,M 36,,932308,3.703,6.027,0,49.812096,3,4,3.486847,3.486847,3.486847,3.486847,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.908937,3.4945,3.486847,3.486847,3.908937,3.4945,3.527631,3.515251,3.486847,3.486847,3.527631,3.515251,3.555791,3.842657,3.486847,3.486847,3.555791,3.842657,3.486847,3.486847,3.486847,3.486847,3.486847,3.486847,,,,,,,3.908937,3.4945,3.527631,3.515251,3.555791,3.842657,3.486847,3.486847,3.486847,3.486847,1.591103,1.466772,1.476711,1.472997,1.485159,1.571219,1.464476,1.464476,0.778729,0.778729,35.680768,39.912391,39.537541,39.676791,39.22443,36.296206,40,40,40,40,,,,,,,,,,,3096,3096,3.486847,3.486847,3.486847,3.486847,3.486847,3.486847,3.486847,3.486847,1.464476,1.464476,40,40,, +6910,0,0.901069,1,1,0,2,4,,5,8,M 36,,932308,0.859,1.76,0,19.308629,3,4,1.351604,1.351604,1.351604,1.351604,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.354569,1.352222,1.351604,1.351604,1.354569,1.352222,1.353107,1.352687,1.351604,1.351604,1.353107,1.352687,1.354545,1.355425,1.351604,1.351604,1.354545,1.355425,1.351604,1.351604,1.351604,1.351604,1.351604,1.351604,,,,,,,1.354569,1.352222,1.353107,1.352687,1.354545,1.355425,1.351604,1.351604,1.351604,1.351604,0.568563,0.567859,0.568124,0.567999,0.568556,0.56882,0.567674,0.567674,0.301858,0.301858,39.912452,39.981711,39.955581,39.967981,39.913162,39.887253,40,40,40,40,,,,,,,,,,,3096,3096,1.351604,1.351604,1.351604,1.351604,1.351604,1.351604,1.351604,1.351604,0.567674,0.567674,40,40,, +7217,0,1.87192,1,1,0,2,6,,5,8,Farley,Rd,932707,0,1.871,0,40.112579,5.8,6,3.743841,3.743841,3.743841,3.743841,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,,,,,,,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,1.460098,1.460098,1.460098,1.460098,1.460098,1.460098,1.460098,1.460098,0.767487,0.767487,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,3.743841,1.460098,1.460098,30,30,, +7218,0,1.101658,1,1,0,2,4,,5,8,Pinckney,Rd,932701,0.123,1.225,0,23.606967,3,4,1.652488,1.652488,1.652488,1.652488,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.741534,1.761765,1.652488,1.652488,1.741534,1.761765,1.669007,1.670434,1.652488,1.652488,1.669007,1.670434,1.827251,1.806393,1.652488,1.652488,1.827251,1.806393,1.652488,1.652488,1.652488,1.652488,1.652488,1.652488,,,,,,,1.741534,1.761765,1.669007,1.670434,1.827251,1.806393,1.652488,1.652488,1.652488,1.652488,0.720759,0.726828,0.699001,0.699429,0.746474,0.740216,0.694045,0.694045,0.369056,0.369056,37.954754,37.518904,39.604099,39.57025,36.174292,36.591993,40,40,40,40,,,,,,,,,,,3096,3096,1.652488,1.652488,1.652488,1.652488,1.652488,1.652488,1.652488,1.652488,0.694045,0.694045,40,40,, +19927,0,0.25015,1,1,0,2,4,,5,8,M 36,,4103111,9.134,9.384,0,5.360365,3,4,0.375226,0.375226,0.375226,0.375226,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.377831,0.376258,0.375226,0.375226,0.377831,0.376258,0.375695,0.37568,0.375226,0.375226,0.375695,0.37568,0.377187,0.378566,0.375226,0.375226,0.377187,0.378566,0.375226,0.375226,0.375226,0.375226,0.375226,0.375226,,,,,,,0.377831,0.376258,0.375695,0.37568,0.377187,0.378566,0.375226,0.375226,0.375226,0.375226,0.158376,0.157905,0.157735,0.157731,0.158183,0.158597,0.157595,0.157595,0.0838,0.0838,39.724154,39.89021,39.950045,39.95164,39.792038,39.647039,40,40,40,40,,,,,,,,,,,3096,3096,0.375226,0.375226,0.375226,0.375226,0.375226,0.375226,0.375226,0.375226,0.157595,0.157595,40,40,, +24662,0,1.841747,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.466003,0.15,4,7.366987,7.366987,7.366987,7.366987,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,,,,,,,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,2.541611,2.541611,2.541611,2.541611,2.541611,2.541611,2.541611,2.541611,1.30764,1.30764,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,7.366987,2.541611,2.541611,15,15,, +30149,0,1.718795,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.83132,0.15,4,6.87518,6.87518,6.87518,6.87518,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,,,,,,,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,2.371937,2.371937,2.371937,2.371937,2.371937,2.371937,2.371937,2.371937,1.220344,1.220344,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,6.87518,2.371937,2.371937,15,15,, +5692,0,0.158879,1,1,0,2,6,,5,5,Prospect Hill,Rd,915607,2.414,2.573,0,3.404552,5.8,6,0.317758,0.317758,0.317758,0.317758,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,,,,,,,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.123926,0.123926,0.123926,0.123926,0.123926,0.123926,0.123926,0.123926,0.06514,0.06514,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.317758,0.123926,0.123926,30,30,, +9710,0,1.84027,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,8.682,10.521,0,39.434361,3.7,5,3.68054,3.68054,3.68054,3.68054,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.739145,3.680569,3.68054,3.68054,3.739145,3.680569,3.68066,3.680617,3.68054,3.68054,3.68066,3.680617,3.683038,3.741359,3.68054,3.68054,3.683038,3.741359,3.68054,3.68054,3.68054,3.68054,3.68054,3.68054,,,,,,,3.739145,3.680569,3.68066,3.680617,3.683038,3.741359,3.68054,3.68054,3.68054,3.68054,1.452992,1.435419,1.435447,1.435434,1.43616,1.453656,1.435411,1.435411,0.754511,0.754511,29.529803,29.999764,29.999024,29.999375,29.979653,29.512327,30,30,30,30,,,,,,,,,,,2580,2580,3.68054,3.68054,3.68054,3.68054,3.68054,3.68054,3.68054,3.68054,1.435411,1.435411,30,30,, +9712,0,1.079227,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,7.603,8.682,0,23.126287,3.7,5,2.158453,2.158453,2.158453,2.158453,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.15946,2.158456,2.158453,2.158453,2.15946,2.158456,2.158455,2.158455,2.158453,2.158453,2.158455,2.158455,2.158515,2.159235,2.158453,2.158453,2.158515,2.159235,2.158453,2.158453,2.158453,2.158453,2.158453,2.158453,,,,,,,2.15946,2.158456,2.158455,2.158455,2.158515,2.159235,2.158453,2.158453,2.158453,2.158453,0.842099,0.841798,0.841797,0.841797,0.841815,0.842031,0.841797,0.841797,0.442483,0.442483,29.986022,29.999958,29.999973,29.999975,29.999139,29.989142,30,30,30,30,,,,,,,,,,,2580,2580,2.158453,2.158453,2.158453,2.158453,2.158453,2.158453,2.158453,2.158453,0.841797,0.841797,30,30,, +9717,0,1.629142,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,4.936,6.565,0,34.910189,3.7,5,3.258284,3.258284,3.258284,3.258284,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.258851,3.258285,3.258284,3.258284,3.258851,3.258285,3.258285,3.258285,3.258284,3.258284,3.258285,3.258285,3.258301,3.258816,3.258284,3.258284,3.258301,3.258816,3.258284,3.258284,3.258284,3.258284,3.258284,3.258284,,,,,,,3.258851,3.258285,3.258285,3.258285,3.258301,3.258816,3.258284,3.258284,3.258284,3.258284,1.270901,1.270731,1.270731,1.270731,1.270736,1.270891,1.270731,1.270731,0.667948,0.667948,29.994781,29.999997,29.999998,29.999998,29.999846,29.995101,30,30,30,30,,,,,,,,,,,2580,2580,3.258284,3.258284,3.258284,3.258284,3.258284,3.258284,3.258284,3.258284,1.270731,1.270731,30,30,, +9872,0,3.463036,1,1,0,2,4,,5,5,M 52,,1425710,9.381,12.843,0,74.20791,3,4,5.194554,5.194554,5.194554,5.194554,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,5.714998,5.297971,5.194554,5.194554,5.714998,5.297971,5.287755,5.252453,5.194554,5.194554,5.287755,5.252453,5.540333,5.720752,5.194554,5.194554,5.540333,5.720752,5.194554,5.194554,5.194554,5.194554,5.194554,5.194554,,,,,,,5.714998,5.297971,5.287755,5.252453,5.540333,5.720752,5.194554,5.194554,5.194554,5.194554,2.337846,2.212738,2.209673,2.199082,2.285446,2.339572,2.181713,2.181713,1.160117,1.160117,36.357345,39.219193,39.294965,39.559067,37.503551,36.320777,40,40,40,40,,,,,,,,,,,3096,3096,5.194554,5.194554,5.194554,5.194554,5.194554,5.194554,5.194554,5.194554,2.181713,2.181713,40,40,, +10919,0,1.110642,1,1,0,2,5,GRV,5,5,Parker,Rd,1447909,0,1.11,0,23.799478,5.55,5,3.331927,3.331927,3.331927,3.331927,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.331928,3.331927,3.331927,3.331927,3.331928,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,,,,,,,3.331928,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,1.199494,1.199494,1.199494,1.199494,1.199494,1.199494,1.199494,1.199494,0.62196,0.62196,19.999993,20,20,20,20,19.999998,20,20,20,20,,,,,,,,,,,2236,2236,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,3.331927,1.199494,1.199494,20,20,, +10937,0,1.017733,1,1,0,2,6,GRV,5,5,Jacob,Rd,1447706,1.228,2.245,0,21.808574,5.55,5,2.44256,2.44256,2.44256,2.44256,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,,,,,,,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,0.91596,0.91596,0.91596,0.91596,0.91596,0.91596,0.91596,0.91596,0.478335,0.478335,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,2.44256,0.91596,0.91596,25,25,, +11097,0,0.447432,1,1,0,2,6,,5,5,Reno,Rd,1447905,0,0.447,0,9.587822,5.8,6,0.894863,0.894863,0.894863,0.894863,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,,,,,,,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.348997,0.348997,0.348997,0.348997,0.348997,0.348997,0.348997,0.348997,0.183447,0.183447,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.894863,0.348997,0.348997,30,30,, +24675,0,1.708557,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.611928,0.15,4,6.834227,6.834227,6.834227,6.834227,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,,,,,,,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,2.357808,2.357808,2.357808,2.357808,2.357808,2.357808,2.357808,2.357808,1.213075,1.213075,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,6.834227,2.357808,2.357808,15,15,, +24679,0,0.400856,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.589772,0.15,4,1.603424,1.603424,1.603424,1.603424,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,,,,,,,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,0.553181,0.553181,0.553181,0.553181,0.553181,0.553181,0.553181,0.553181,0.284608,0.284608,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,1.603424,0.553181,0.553181,15,15,, +24681,0,1.051095,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.523467,0.15,4,4.204381,4.204381,4.204381,4.204381,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,,,,,,,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,1.450511,1.450511,1.450511,1.450511,1.450511,1.450511,1.450511,1.450511,0.746278,0.746278,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,4.204381,1.450511,1.450511,15,15,, +24682,0,2.335182,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,50.039613,0.15,4,9.340728,9.340728,9.340728,9.340728,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,,,,,,,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,3.222551,3.222551,3.222551,3.222551,3.222551,3.222551,3.222551,3.222551,1.657979,1.657979,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,9.340728,3.222551,3.222551,15,15,, +24684,0,2.40297,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,51.492211,0.15,4,9.611879,9.611879,9.611879,9.611879,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,,,,,,,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,3.316098,3.316098,3.316098,3.316098,3.316098,3.316098,3.316098,3.316098,1.706109,1.706109,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,9.611879,3.316098,3.316098,15,15,, +34047,0,0.943738,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.774951,3.774951,3.774951,3.774951,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,,,,,,,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,1.302358,1.302358,1.302358,1.302358,1.302358,1.302358,1.302358,1.302358,0.670054,0.670054,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,3.774951,1.302358,1.302358,15,15,, +34048,0,1.05608,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.22432,4.22432,4.22432,4.22432,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,,,,,,,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,1.45739,1.45739,1.45739,1.45739,1.45739,1.45739,1.45739,1.45739,0.749817,0.749817,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,4.22432,1.45739,1.45739,15,15,, +34049,0,1.147408,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.589632,4.589632,4.589632,4.589632,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,,,,,,,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,1.583423,1.583423,1.583423,1.583423,1.583423,1.583423,1.583423,1.583423,0.81466,0.81466,15,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,4.589632,1.583423,1.583423,15,15,, +34050,1,1.274682,2,0,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.098728,,5.098728,,15,,100000,,22700,,50000,,32260,,34400,,34360,,5.100488,,5.098728,,5.100488,,5.100072,,5.098728,,5.100072,,5.102113,,5.098728,,5.102113,,5.098728,,5.098728,,5.098728,,,,,,,,5.100488,,5.100072,,5.102113,,5.098728,,5.098728,,1.759589,,1.759464,,1.760077,,1.759061,,0.905024,,14.994824,,14.996047,,14.99005,,15,,15,,,,,,,,,,,,34400,,5.098728,,5.098728,,5.098728,,5.098728,,1.759061,,15,,, +34051,-1,1.279914,0,2,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,,5.119656,,5.119656,,15,,100000,,22700,,50000,,32260,,34400,,34360,,5.121316,,5.119656,,5.121316,,5.121028,,5.119656,,5.121028,,5.123154,,5.119656,,5.123154,,5.119656,,5.119656,,5.119656,,,,,,,,5.121316,,5.121028,,5.123154,,5.119656,,5.119656,,1.766779,,1.766693,,1.767331,,1.766281,,0.908739,,14.995139,,14.995981,,14.989759,,15,,15,,,,,,,,,,,,34400,,5.119656,,5.119656,,5.119656,,5.119656,,1.766281,,15,, +34054,0,0.859072,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.436288,3.436288,3.436288,3.436288,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,,,,,,,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,1.185519,1.185519,1.185519,1.185519,1.185519,1.185519,1.185519,1.185519,0.609941,0.609941,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,3.436288,1.185519,1.185519,15,15,, +34097,0,1.011921,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.047684,4.047684,4.047684,4.047684,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,,,,,,,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,1.396451,1.396451,1.396451,1.396451,1.396451,1.396451,1.396451,1.396451,0.718464,0.718464,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,4.047684,1.396451,1.396451,15,15,, +34098,0,1.063139,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.252554,4.252554,4.252554,4.252554,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,,,,,,,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,1.467131,1.467131,1.467131,1.467131,1.467131,1.467131,1.467131,1.467131,0.754828,0.754828,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,4.252554,1.467131,1.467131,15,15,, +9719,0,1.673395,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,3.264,4.936,0,35.858465,3.7,5,3.34679,3.34679,3.34679,3.34679,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.347801,3.346791,3.34679,3.34679,3.347801,3.346791,3.346792,3.346792,3.34679,3.34679,3.346792,3.346792,3.346826,3.347624,3.34679,3.34679,3.346826,3.347624,3.34679,3.34679,3.34679,3.34679,3.34679,3.34679,,,,,,,3.347801,3.346791,3.346792,3.346792,3.346826,3.347624,3.34679,3.34679,3.34679,3.34679,1.305551,1.305249,1.305249,1.305249,1.305259,1.305498,1.305248,1.305248,0.686092,0.686092,29.990942,29.999988,29.999982,29.999987,29.999677,29.992526,30,30,30,30,,,,,,,,,,,2580,2580,3.34679,3.34679,3.34679,3.34679,3.34679,3.34679,3.34679,3.34679,1.305248,1.305248,30,30,, +9931,0,1.451434,1,1,0,2,4,,5,5,M 52,,1425710,3.765,5.216,0,31.10215,3,4,2.17715,2.17715,2.17715,2.17715,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.225546,2.180797,2.17715,2.17715,2.225546,2.180797,2.180071,2.179885,2.17715,2.17715,2.180071,2.179885,2.203847,2.240954,2.17715,2.17715,2.203847,2.240954,2.17715,2.17715,2.17715,2.17715,2.17715,2.17715,,,,,,,2.225546,2.180797,2.180071,2.179885,2.203847,2.240954,2.17715,2.17715,2.17715,2.17715,0.928922,0.915497,0.915279,0.915223,0.922412,0.933544,0.914403,0.914403,0.48623,0.48623,39.130178,39.933116,39.946422,39.949827,39.515455,38.861132,40,40,40,40,,,,,,,,,,,3096,3096,2.17715,2.17715,2.17715,2.17715,2.17715,2.17715,2.17715,2.17715,0.914403,0.914403,40,40,, +9938,0,3.568208,1,1,0,2,4,,5,5,M 52,,1425710,0,3.567,0,76.4616,3,4,5.352312,5.352312,5.352312,5.352312,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,5.360722,5.358045,5.352312,5.352312,5.360722,5.358045,5.355107,5.354718,5.352312,5.352312,5.355107,5.354718,5.384055,5.376533,5.352312,5.352312,5.384055,5.376533,5.352312,5.352312,5.352312,5.352312,5.352312,5.352312,,,,,,,5.360722,5.358045,5.355107,5.354718,5.384055,5.376533,5.352312,5.352312,5.352312,5.352312,2.250494,2.249691,2.24881,2.248693,2.257494,2.255237,2.247971,2.247971,1.19535,1.19535,39.93725,39.957198,39.979121,39.982025,39.764172,39.819799,40,40,40,40,,,,,,,,,,,3096,3096,5.352312,5.352312,5.352312,5.352312,5.352312,5.352312,5.352312,5.352312,2.247971,2.247971,40,40,, +11002,0,1.258925,1,1,0,2,6,GRV,5,5,Logan,Rd,1432503,0.702,1.96,0,26.976969,5.55,5,3.02142,3.02142,3.02142,3.02142,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.021421,3.021422,3.02142,3.02142,3.021421,3.021422,3.021422,3.021423,3.02142,3.02142,3.021422,3.021423,3.021431,3.021423,3.02142,3.02142,3.021431,3.021423,3.02142,3.02142,3.02142,3.02142,3.02142,3.02142,,,,,,,3.021421,3.021422,3.021422,3.021423,3.021431,3.021423,3.02142,3.02142,3.02142,3.02142,1.133033,1.133033,1.133033,1.133033,1.133036,1.133034,1.133033,1.133033,0.591695,0.591695,24.999999,24.999991,24.999986,24.999982,24.999913,24.999976,25,25,25,25,,,,,,,,,,,2236,2236,3.02142,3.02142,3.02142,3.02142,3.02142,3.02142,3.02142,3.02142,1.133033,1.133033,25,25,, +11015,0,2.496174,1,1,0,2,6,GRV,5,5,Ely,Rd,1432210,0,2.495,0,53.489445,5.55,5,5.990818,5.990818,5.990818,5.990818,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,,,,,,,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,2.246557,2.246557,2.246557,2.246557,2.246557,2.246557,2.246557,2.246557,1.173202,1.173202,25,24.999998,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,5.990818,2.246557,2.246557,25,25,, +11068,0,0.541218,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,0,0.541,0,11.597524,5.55,5,1.298923,1.298923,1.298923,1.298923,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,,,,,,,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,0.487096,0.487096,0.487096,0.487096,0.487096,0.487096,0.487096,0.487096,0.254372,0.254372,24.999997,24.999998,24.999999,24.999999,24.999998,24.999998,25,25,25,25,,,,,,,,,,,2236,2236,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,1.298923,0.487096,0.487096,25,25,, +21524,0,1.579614,1,1,0,2,5,,5,5,Austin,Rd,4604910,0,1.579,0,33.848865,3.7,5,3.159227,3.159227,3.159227,3.159227,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.165227,3.159521,3.159227,3.159227,3.165227,3.159521,3.15929,3.159266,3.159227,3.159227,3.15929,3.159266,3.160025,3.171532,3.159227,3.159227,3.160025,3.171532,3.159227,3.159227,3.159227,3.159227,3.159227,3.159227,,,,,,,3.165227,3.159521,3.15929,3.159266,3.160025,3.171532,3.159227,3.159227,3.159227,3.159227,1.233898,1.232187,1.232118,1.23211,1.232338,1.23579,1.232099,1.232099,0.647642,0.647642,29.94314,29.997216,29.999402,29.999638,29.992425,29.883609,30,30,30,30,,,,,,,,,,,2580,2580,3.159227,3.159227,3.159227,3.159227,3.159227,3.159227,3.159227,3.159227,1.232099,1.232099,30,30,, +24566,0,0.609804,1,1,0,2,3,,5,5,US 12,,0,0,0,0,13.067237,1.7,4,0.731765,0.731765,0.731765,0.731765,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.745294,0.743627,0.731765,0.731765,0.745294,0.743627,0.738046,0.737838,0.731765,0.731765,0.738046,0.737838,0.751089,0.751032,0.731765,0.731765,0.751089,0.751032,0.731765,0.731765,0.731765,0.731765,0.731765,0.731765,,,,,,,0.745294,0.743627,0.738046,0.737838,0.751089,0.751032,0.731765,0.731765,0.731765,0.731765,0.333353,0.332853,0.331178,0.331116,0.335091,0.335074,0.329294,0.329294,0.176843,0.176843,49.092387,49.20246,49.574532,49.588485,48.713644,48.71733,50,50,50,50,,,,,,,,,,,3096,3096,0.731765,0.731765,0.731765,0.731765,0.731765,0.731765,0.731765,0.731765,0.329294,0.329294,50,50,, +24570,0,0.840364,2,2,0,2,3,,5,5,US 12,,0,0,0,0,18.007807,1.7,4,1.008437,1.008437,1.008437,1.008437,50,50,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,1.055736,1.057244,1.008437,1.008437,1.055736,1.057244,1.039947,1.040797,1.008437,1.008437,1.039947,1.040797,1.068842,1.070102,1.008437,1.008437,1.068842,1.070102,1.008437,1.008437,1.008437,1.008437,1.008437,1.008437,,,,,,,1.055736,1.057244,1.039947,1.040797,1.068842,1.070102,1.008437,1.008437,1.008437,1.008437,0.467986,0.468439,0.46325,0.463505,0.471918,0.472296,0.453797,0.453797,0.243706,0.243706,47.759901,47.691807,48.485007,48.445433,47.174305,47.118753,50,50,50,50,,,,,,,,,,,6192,6192,1.008437,1.008437,1.008437,1.008437,1.008437,1.008437,1.008437,1.008437,0.453797,0.453797,50,50,, +24571,0,0.456018,1,1,0,2,5,,5,5,Clinton,Rd,0,0,0,0,9.771806,3.7,5,0.912035,0.912035,0.912035,0.912035,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,0.912036,0.912035,0.912035,0.912035,0.912036,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,,,,,,,0.912035,0.912035,0.912035,0.912035,0.912035,0.912036,0.912035,0.912035,0.912035,0.912035,0.355694,0.355694,0.355694,0.355694,0.355694,0.355694,0.355694,0.355694,0.186967,0.186967,29.999998,30,30,30,29.999992,29.999979,30,30,30,30,,,,,,,,,,,2580,2580,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,0.912035,0.355694,0.355694,30,30,, +24688,0,3.194112,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,68.445264,0.15,4,12.776449,12.776449,12.776449,12.776449,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,,,,,,,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,4.407875,4.407875,4.407875,4.407875,4.407875,4.407875,4.407875,4.407875,2.26782,2.26782,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,12.776449,4.407875,4.407875,15,15,, +24689,0,1.773893,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,38.012003,0.15,4,7.095574,7.095574,7.095574,7.095574,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,,,,,,,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,2.447973,2.447973,2.447973,2.447973,2.447973,2.447973,2.447973,2.447973,1.259464,1.259464,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,7.095574,2.447973,2.447973,15,15,, +19953,0,0.262867,1,1,0,2,3,,5,5,US 12,,3460109,1.126,1.389,0,5.632859,1.7,4,0.31544,0.31544,0.31544,0.31544,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.31698,0.316977,0.31544,0.31544,0.31698,0.316977,0.316197,0.316192,0.31544,0.31544,0.316197,0.316192,0.318144,0.318135,0.31544,0.31544,0.318144,0.318135,0.31544,0.31544,0.31544,0.31544,0.31544,0.31544,,,,,,,0.31698,0.316977,0.316197,0.316192,0.318144,0.318135,0.31544,0.31544,0.31544,0.31544,0.14241,0.142409,0.142175,0.142174,0.142759,0.142756,0.141948,0.141948,0.076231,0.076231,49.757148,49.75755,49.880293,49.88104,49.575031,49.576502,50,50,50,50,,,,,,,,,,,3096,3096,0.31544,0.31544,0.31544,0.31544,0.31544,0.31544,0.31544,0.31544,0.141948,0.141948,50,50,, +34095,0,1.466755,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.867019,5.867019,5.867019,5.867019,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,,,,,,,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,2.024122,2.024122,2.024121,2.024121,2.024122,2.024122,2.024121,2.024121,1.041396,1.041396,15,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,5.867019,2.024121,2.024121,15,15,, +19951,0,1.879828,1,1,0,2,3,,5,5,US 12,,3460109,2.24,4.119,0,40.282023,1.7,4,2.255793,2.255793,2.255793,2.255793,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.299576,2.294242,2.255793,2.255793,2.299576,2.294242,2.276186,2.27552,2.255793,2.255793,2.276186,2.27552,2.318766,2.318583,2.255793,2.255793,2.318766,2.318583,2.255793,2.255793,2.255793,2.255793,2.255793,2.255793,,,,,,,2.299576,2.294242,2.276186,2.27552,2.318766,2.318583,2.255793,2.255793,2.255793,2.255793,1.028242,1.026642,1.021225,1.021025,1.033999,1.033944,1.015107,1.015107,0.54515,0.54515,49.048036,49.162067,49.55204,49.566537,48.642114,48.645946,50,50,50,50,,,,,,,,,,,3096,3096,2.255793,2.255793,2.255793,2.255793,2.255793,2.255793,2.255793,2.255793,1.015107,1.015107,50,50,, +24558,0,0.091608,1,1,0,2,3,,5,5,US 12,,3460109,2.148,2.24,0,1.963022,1.7,4,0.109929,0.109929,0.109929,0.109929,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.111684,0.11172,0.109929,0.109929,0.111684,0.11172,0.110796,0.110797,0.109929,0.109929,0.110796,0.110797,0.112928,0.112896,0.109929,0.109929,0.112928,0.112896,0.109929,0.109929,0.109929,0.109929,0.109929,0.109929,,,,,,,0.111684,0.11172,0.110796,0.110797,0.112928,0.112896,0.109929,0.109929,0.109929,0.109929,0.049995,0.050005,0.049728,0.049729,0.050368,0.050358,0.049468,0.049468,0.026566,0.026566,49.214502,49.198761,49.609007,49.608315,48.672345,48.686138,50,50,50,50,,,,,,,,,,,3096,3096,0.109929,0.109929,0.109929,0.109929,0.109929,0.109929,0.109929,0.109929,0.049468,0.049468,50,50,, +34094,0,0.867386,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.469545,3.469545,3.469545,3.469545,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,,,,,,,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,1.196993,1.196993,1.196993,1.196993,1.196993,1.196993,1.196993,1.196993,0.615844,0.615844,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,3.469545,1.196993,1.196993,15,15,, +24559,0,0.551187,1,1,0,2,3,,5,5,US 12,,3460109,1.597,2.148,0,11.811155,1.7,4,0.661425,0.661425,0.661425,0.661425,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.665674,0.665736,0.661425,0.661425,0.665674,0.665736,0.663506,0.663507,0.661425,0.661425,0.663506,0.663507,0.668562,0.668438,0.661425,0.661425,0.668562,0.668438,0.661425,0.661425,0.661425,0.661425,0.661425,0.661425,,,,,,,0.665674,0.665736,0.663506,0.663507,0.668562,0.668438,0.661425,0.661425,0.661425,0.661425,0.298916,0.298935,0.298266,0.298266,0.299782,0.299745,0.297641,0.297641,0.159844,0.159844,49.680834,49.676166,49.843131,49.843091,49.46619,49.475422,50,50,50,50,,,,,,,,,,,3096,3096,0.661425,0.661425,0.661425,0.661425,0.661425,0.661425,0.661425,0.661425,0.297641,0.297641,50,50,, +24572,0,0.180297,1,1,0,2,3,,5,5,US 12,,0,0,0,0,3.863507,1.7,4,0.216356,0.216356,0.216356,0.216356,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.217746,0.217767,0.216356,0.216356,0.217746,0.217767,0.217037,0.217037,0.216356,0.216356,0.217037,0.217037,0.218691,0.21865,0.216356,0.216356,0.218691,0.21865,0.216356,0.216356,0.216356,0.216356,0.216356,0.216356,,,,,,,0.217746,0.217767,0.217037,0.217037,0.218691,0.21865,0.216356,0.216356,0.216356,0.216356,0.097777,0.097783,0.097565,0.097565,0.098061,0.098049,0.09736,0.09736,0.052286,0.052286,49.680834,49.676166,49.843131,49.843091,49.46619,49.475422,50,50,50,50,,,,,,,,,,,3096,3096,0.216356,0.216356,0.216356,0.216356,0.216356,0.216356,0.216356,0.216356,0.09736,0.09736,50,50,, +19952,0,0.0279,1,1,0,2,3,,5,5,US 12,,3460109,1.389,1.417,0,0.597852,1.7,4,0.03348,0.03348,0.03348,0.03348,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.033695,0.033698,0.03348,0.03348,0.033695,0.033698,0.033585,0.033585,0.03348,0.03348,0.033585,0.033585,0.033841,0.033835,0.03348,0.03348,0.033841,0.033835,0.03348,0.03348,0.03348,0.03348,0.03348,0.03348,,,,,,,0.033695,0.033698,0.033585,0.033585,0.033841,0.033835,0.03348,0.03348,0.03348,0.03348,0.01513,0.015131,0.015097,0.015097,0.015174,0.015172,0.015066,0.015066,0.008091,0.008091,49.680834,49.676166,49.843131,49.843091,49.46619,49.475422,50,50,50,50,,,,,,,,,,,3096,3096,0.03348,0.03348,0.03348,0.03348,0.03348,0.03348,0.03348,0.03348,0.015066,0.015066,50,50,, +19950,0,0.1564,1,1,0,2,3,,5,5,US 12,,3460109,4.119,4.275,0,3.351429,1.7,4,0.18768,0.18768,0.18768,0.18768,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.19115,0.190722,0.18768,0.18768,0.19115,0.190722,0.189291,0.189238,0.18768,0.18768,0.189291,0.189238,0.192636,0.192621,0.18768,0.18768,0.192636,0.192621,0.18768,0.18768,0.18768,0.18768,0.18768,0.18768,,,,,,,0.19115,0.190722,0.189291,0.189238,0.192636,0.192621,0.18768,0.18768,0.18768,0.18768,0.085497,0.085369,0.084939,0.084923,0.085943,0.085938,0.084456,0.084456,0.045356,0.045356,49.092387,49.20246,49.574532,49.588485,48.713644,48.71733,50,50,50,50,,,,,,,,,,,3096,3096,0.18768,0.18768,0.18768,0.18768,0.18768,0.18768,0.18768,0.18768,0.084456,0.084456,50,50,, +9722,0,1.685035,1,1,0,2,6,,5,5,Pleasant Lake,Rd,1426007,0.035,1.72,0,36.107885,5.8,6,3.370069,3.370069,3.370069,3.370069,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.370071,3.370069,3.370069,3.370069,3.370071,3.370069,3.370069,3.370069,3.370069,3.370069,3.370069,3.370069,3.37007,3.37007,3.370069,3.370069,3.37007,3.37007,3.370069,3.370069,3.370069,3.370069,3.370069,3.370069,,,,,,,3.370071,3.370069,3.370069,3.370069,3.37007,3.37007,3.370069,3.370069,3.370069,3.370069,1.314327,1.314327,1.314327,1.314327,1.314327,1.314327,1.314327,1.314327,0.690864,0.690864,29.999989,29.999999,29.999999,29.999999,29.999995,29.99999,30,30,30,30,,,,,,,,,,,2236,2236,3.370069,3.370069,3.370069,3.370069,3.370069,3.370069,3.370069,3.370069,1.314327,1.314327,30,30,, +11038,0,1.232959,1,1,0,2,6,,5,5,Sharon Hollow,Rd,1432205,4.129,5.361,0,26.420556,5.8,6,2.465919,2.465919,2.465919,2.465919,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.468068,2.465921,2.465919,2.465919,2.468068,2.465921,2.465926,2.465923,2.465919,2.465919,2.465926,2.465923,2.465971,2.468367,2.465919,2.465919,2.465971,2.468367,2.465919,2.465919,2.465919,2.465919,2.465919,2.465919,,,,,,,2.468068,2.465921,2.465926,2.465923,2.465971,2.468367,2.465919,2.465919,2.465919,2.465919,0.962353,0.961709,0.96171,0.961709,0.961724,0.962443,0.961708,0.961708,0.505513,0.505513,29.973874,29.99997,29.99991,29.999951,29.999366,29.970239,30,30,30,30,,,,,,,,,,,2236,2236,2.465919,2.465919,2.465919,2.465919,2.465919,2.465919,2.465919,2.465919,0.961708,0.961708,30,30,, +19971,0,1.527581,1,1,0,2,5,,5,5,Austin,Rd,3380142,2.912,4.439,0,32.733888,3.7,5,3.055163,3.055163,3.055163,3.055163,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.089038,3.057076,3.055163,3.055163,3.089038,3.057076,3.057083,3.056653,3.055163,3.055163,3.057083,3.056653,3.062667,3.103643,3.055163,3.055163,3.062667,3.103643,3.055163,3.055163,3.055163,3.055163,3.055163,3.055163,,,,,,,3.089038,3.057076,3.057083,3.056653,3.062667,3.103643,3.055163,3.055163,3.055163,3.055163,1.201676,1.192087,1.19209,1.191961,1.193765,1.206057,1.191514,1.191514,0.626308,0.626308,29.671009,29.98123,29.981153,29.985377,29.926492,29.531391,30,30,30,30,,,,,,,,,,,2580,2580,3.055163,3.055163,3.055163,3.055163,3.055163,3.055163,3.055163,3.055163,1.191514,1.191514,30,30,, +24686,0,2.167252,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,46.441116,0.15,4,8.669008,8.669008,8.669008,8.669008,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,,,,,,,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,2.990808,2.990808,2.990808,2.990808,2.990808,2.990808,2.990808,2.990808,1.538749,1.538749,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,8.669008,2.990808,2.990808,15,15,, +24687,0,2.005218,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,42.968953,0.15,4,8.020871,8.020871,8.020871,8.020871,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,,,,,,,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,2.767201,2.767201,2.767201,2.767201,2.767201,2.767201,2.767201,2.767201,1.423705,1.423705,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,8.020871,2.767201,2.767201,15,15,, +5694,0,1.376043,1,1,0,2,6,,5,5,Watkins,Rd,916203,1.083,2.459,0,29.486635,5.8,6,2.752086,2.752086,2.752086,2.752086,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,,,,,,,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,1.073314,1.073314,1.073314,1.073314,1.073314,1.073314,1.073314,1.073314,0.564178,0.564178,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,2.752086,1.073314,1.073314,30,30,, +11067,0,0.652203,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,2.173,2.825,0,13.975787,5.55,5,1.565288,1.565288,1.565288,1.565288,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,,,,,,,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,0.586983,0.586983,0.586983,0.586983,0.586983,0.586983,0.586983,0.586983,0.306536,0.306536,25,24.999998,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,1.565288,0.586983,0.586983,25,25,, +11080,0,1.510036,1,1,0,2,6,,5,5,Herman,Rd,1432203,0.863,2.372,0,32.357924,5.8,6,3.020073,3.020073,3.020073,3.020073,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.020073,3.020073,3.020073,3.020073,3.020073,3.020073,3.020073,3.020073,3.020073,3.020073,3.020073,3.020073,3.020074,3.020074,3.020073,3.020073,3.020074,3.020074,3.020073,3.020073,3.020073,3.020073,3.020073,3.020073,,,,,,,3.020073,3.020073,3.020073,3.020073,3.020074,3.020074,3.020073,3.020073,3.020073,3.020073,1.177829,1.177829,1.177828,1.177828,1.177829,1.177829,1.177828,1.177828,0.619115,0.619115,29.999996,29.999997,29.999999,29.999999,29.99999,29.999988,30,30,30,30,,,,,,,,,,,2236,2236,3.020073,3.020073,3.020073,3.020073,3.020073,3.020073,3.020073,3.020073,1.177828,1.177828,30,30,, +11115,0,1.185219,1,1,0,2,6,GRV,5,5,Wellwood,Rd,1432107,0,1.185,0,25.397543,5.55,5,2.844525,2.844525,2.844525,2.844525,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,,,,,,,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,1.066697,1.066697,1.066697,1.066697,1.066697,1.066697,1.066697,1.066697,0.557053,0.557053,24.999999,24.999998,24.999999,24.999999,24.999999,24.999999,25,25,25,25,,,,,,,,,,,2236,2236,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,2.844525,1.066697,1.066697,25,25,, +24598,0,1.627566,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,34.876422,0.15,4,6.510265,6.510265,6.510265,6.510265,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,,,,,,,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,2.246042,2.246042,2.246042,2.246042,2.246042,2.246042,2.246042,2.246042,1.155572,1.155572,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,6.510265,2.246042,2.246042,15,15,, +24691,0,0.934469,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.024334,0.15,4,3.737876,3.737876,3.737876,3.737876,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,,,,,,,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,1.289567,1.289567,1.289567,1.289567,1.289567,1.289567,1.289567,1.289567,0.663473,0.663473,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,3.737876,1.289567,1.289567,15,15,, +24692,0,1.961016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,42.02178,0.15,4,7.844066,7.844066,7.844066,7.844066,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,,,,,,,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,2.706203,2.706203,2.706203,2.706203,2.706203,2.706203,2.706203,2.706203,1.392322,1.392322,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,7.844066,2.706203,2.706203,15,15,, +5693,0,1.083415,1,1,0,2,6,,5,5,Watkins,Rd,916203,0,1.083,0,23.216034,5.8,6,2.16683,2.16683,2.16683,2.16683,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,,,,,,,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,0.845064,0.845064,0.845064,0.845064,0.845064,0.845064,0.845064,0.845064,0.4442,0.4442,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,2.16683,0.845064,0.845064,30,30,, +34096,0,0.724908,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.899631,2.899631,2.899631,2.899631,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,,,,,,,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,1.000373,1.000373,1.000373,1.000373,1.000373,1.000373,1.000373,1.000373,0.514685,0.514685,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,2.899631,1.000373,1.000373,15,15,, +11083,0,0.862809,1,1,0,2,6,,5,5,Herman,Rd,1432203,0,0.863,0,18.488755,5.8,6,1.725617,1.725617,1.725617,1.725617,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.725617,1.725617,1.725617,1.725617,1.725617,1.725617,1.725617,1.725617,1.725617,1.725617,1.725617,1.725617,1.725618,1.725618,1.725617,1.725617,1.725618,1.725618,1.725617,1.725617,1.725617,1.725617,1.725617,1.725617,,,,,,,1.725617,1.725617,1.725617,1.725617,1.725618,1.725618,1.725617,1.725617,1.725617,1.725617,0.672991,0.672991,0.672991,0.672991,0.672991,0.672991,0.672991,0.672991,0.353752,0.353752,29.999996,29.999997,29.999998,29.999998,29.999988,29.999986,30,30,30,30,,,,,,,,,,,2236,2236,1.725617,1.725617,1.725617,1.725617,1.725617,1.725617,1.725617,1.725617,0.672991,0.672991,30,30,, +11098,0,1.275977,1,1,0,2,6,GRV,5,5,Wellwood,Rd,1432107,1.185,2.46,0,27.34236,5.55,5,3.062344,3.062344,3.062344,3.062344,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.062345,3.062345,3.062344,3.062344,3.062345,3.062345,3.062344,3.062344,3.062344,3.062344,3.062344,3.062344,3.062345,3.062344,3.062344,3.062344,3.062345,3.062344,3.062344,3.062344,3.062344,3.062344,3.062344,3.062344,,,,,,,3.062345,3.062345,3.062344,3.062344,3.062345,3.062344,3.062344,3.062344,3.062344,3.062344,1.148379,1.148379,1.148379,1.148379,1.148379,1.148379,1.148379,1.148379,0.599709,0.599709,24.999998,24.999997,24.999999,24.999999,24.999998,24.999998,25,25,25,25,,,,,,,,,,,2236,2236,3.062344,3.062344,3.062344,3.062344,3.062344,3.062344,3.062344,3.062344,1.148379,1.148379,25,25,, +11062,0,1.243263,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,2.825,4.068,0,26.641353,5.55,5,2.983832,2.983832,2.983832,2.983832,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.986959,2.983832,2.983832,2.983832,2.986959,2.983832,2.983836,2.983833,2.983832,2.983832,2.983836,2.983833,2.98385,2.986535,2.983832,2.983832,2.98385,2.986535,2.983832,2.983832,2.983832,2.983832,2.983832,2.983832,,,,,,,2.986959,2.983832,2.983836,2.983833,2.98385,2.986535,2.983832,2.983832,2.983832,2.983832,1.119875,1.118937,1.118938,1.118937,1.118942,1.119748,1.118937,1.118937,0.584334,0.584334,24.973825,24.999998,24.999963,24.999985,24.999842,24.977372,25,25,25,25,,,,,,,,,,,2236,2236,2.983832,2.983832,2.983832,2.983832,2.983832,2.983832,2.983832,2.983832,1.118937,1.118937,25,25,, +24690,0,0.982495,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.05347,0.15,4,3.929981,3.929981,3.929981,3.929981,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,,,,,,,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,1.355843,1.355843,1.355843,1.355843,1.355843,1.355843,1.355843,1.355843,0.697572,0.697572,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,3.929981,1.355843,1.355843,15,15,, +11057,0,0.061112,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,4.068,4.129,0,1.309534,5.55,5,0.146668,0.146668,0.146668,0.146668,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.146816,0.146668,0.146668,0.146668,0.146816,0.146668,0.146668,0.146668,0.146668,0.146668,0.146668,0.146668,0.146669,0.146794,0.146668,0.146668,0.146669,0.146794,0.146668,0.146668,0.146668,0.146668,0.146668,0.146668,,,,,,,0.146816,0.146668,0.146668,0.146668,0.146669,0.146794,0.146668,0.146668,0.146668,0.146668,0.055045,0.055,0.055,0.055,0.055001,0.055038,0.055,0.055,0.028722,0.028722,24.974788,24.999998,24.999967,24.999988,24.999861,24.97844,25,25,25,25,,,,,,,,,,,2236,2236,0.146668,0.146668,0.146668,0.146668,0.146668,0.146668,0.146668,0.146668,0.055,0.055,25,25,, +21472,0,0.082362,1,1,0,2,6,,5,5,Herman,Rd,4603916,0,0.082,0,1.764892,5.8,6,0.164723,0.164723,0.164723,0.164723,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,,,,,,,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.064242,0.064242,0.064242,0.064242,0.064242,0.064242,0.064242,0.064242,0.033768,0.033768,29.999997,29.999998,29.999999,29.999999,29.999991,29.99999,30,30,30,30,,,,,,,,,,,2236,2236,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.164723,0.064242,0.064242,30,30,, +11070,0,0.046656,1,1,0,2,6,GRV,5,5,Herman/Sharon Hollow Cutoff,,1432203,2.372,2.419,0,0.999771,5.55,5,0.111974,0.111974,0.111974,0.111974,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,,,,,,,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.04199,0.04199,0.04199,0.04199,0.04199,0.04199,0.04199,0.04199,0.021928,0.021928,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.111974,0.04199,0.04199,25,25,, +9730,0,2.143771,1,1,0,2,6,,5,5,Sharon Valley,Rd,1426005,0,2.143,0,45.937949,5.8,6,4.287542,4.287542,4.287542,4.287542,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,,,,,,,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,1.672141,1.672141,1.672141,1.672141,1.672141,1.672141,1.672141,1.672141,0.878946,0.878946,29.999998,29.999998,29.999999,29.999999,29.999996,29.999996,30,30,30,30,,,,,,,,,,,2236,2236,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,4.287542,1.672141,1.672141,30,30,, +10944,0,1.016416,1,1,0,2,6,GRV,5,5,Below,Rd,1447705,0,1.016,0,21.780344,5.55,5,2.439399,2.439399,2.439399,2.439399,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,,,,,,,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,0.914774,0.914774,0.914774,0.914774,0.914774,0.914774,0.914774,0.914774,0.477716,0.477716,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,2.439399,0.914774,0.914774,25,25,, +11123,0,0.939881,1,1,0,2,6,,5,5,Sharon Hollow,Rd,1447607,0,0.94,0,20.140299,5.8,6,1.879761,1.879761,1.879761,1.879761,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.879762,1.879762,1.879761,1.879761,1.879762,1.879762,1.879761,1.879761,1.879761,1.879761,1.879761,1.879761,1.879763,1.879762,1.879761,1.879761,1.879763,1.879762,1.879761,1.879761,1.879761,1.879761,1.879761,1.879761,,,,,,,1.879762,1.879762,1.879761,1.879761,1.879763,1.879762,1.879761,1.879761,1.879761,1.879761,0.733107,0.733107,0.733107,0.733107,0.733107,0.733107,0.733107,0.733107,0.385351,0.385351,29.999988,29.999985,29.999997,29.999997,29.999969,29.999988,30,30,30,30,,,,,,,,,,,2236,2236,1.879761,1.879761,1.879761,1.879761,1.879761,1.879761,1.879761,1.879761,0.733107,0.733107,30,30,, +19972,0,2.27855,1,1,0,2,5,,5,5,Austin,Rd,3380142,0.634,2.912,0,48.826064,3.7,5,4.557099,4.557099,4.557099,4.557099,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.557259,4.557265,4.557099,4.557099,4.557259,4.557265,4.557179,4.557176,4.557099,4.557099,4.557179,4.557176,4.557411,4.557395,4.557099,4.557099,4.557411,4.557395,4.557099,4.557099,4.557099,4.557099,4.557099,4.557099,,,,,,,4.557259,4.557265,4.557179,4.557176,4.557411,4.557395,4.557099,4.557099,4.557099,4.557099,1.777317,1.777318,1.777293,1.777292,1.777362,1.777357,1.777269,1.777269,0.934205,0.934205,29.99895,29.998912,29.999474,29.999494,29.997946,29.998055,30,30,30,30,,,,,,,,,,,2580,2580,4.557099,4.557099,4.557099,4.557099,4.557099,4.557099,4.557099,4.557099,1.777269,1.777269,30,30,, +11037,0,1.581507,1,1,0,2,6,,5,5,Sharon Hollow,Rd,1432205,5.361,6.942,0,33.889445,5.8,6,3.163015,3.163015,3.163015,3.163015,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,,,,,,,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,1.233576,1.233576,1.233576,1.233576,1.233576,1.233576,1.233576,1.233576,0.648418,0.648418,29.999999,29.999999,30,30,29.999999,30,30,30,30,30,,,,,,,,,,,2236,2236,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,3.163015,1.233576,1.233576,30,30,, +9729,0,0.061059,1,1,0,2,6,,5,5,Sharon Valley,Rd,1426005,2.143,2.204,0,1.308415,5.8,6,0.122119,0.122119,0.122119,0.122119,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,,,,,,,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.047626,0.047626,0.047626,0.047626,0.047626,0.047626,0.047626,0.047626,0.025034,0.025034,29.999999,29.999999,30,30,30,29.999999,30,30,30,30,,,,,,,,,,,2236,2236,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.122119,0.047626,0.047626,30,30,, +10936,0,0.979673,1,1,0,2,6,GRV,5,5,Easudes,Rd,1447709,1.099,2.078,0,20.992995,5.55,5,2.351215,2.351215,2.351215,2.351215,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,,,,,,,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,0.881706,0.881706,0.881706,0.881706,0.881706,0.881706,0.881706,0.881706,0.460446,0.460446,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,2.351215,0.881706,0.881706,25,25,, +11110,0,1.228064,1,1,0,2,6,GRV,5,5,Jacob,Rd,1447706,0,1.228,0,26.315666,5.55,5,2.947355,2.947355,2.947355,2.947355,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,,,,,,,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,1.105258,1.105258,1.105258,1.105258,1.105258,1.105258,1.105258,1.105258,0.57719,0.57719,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,2.947355,1.105258,1.105258,25,25,, +11120,0,0.135926,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,5498382,0,0.136,0,2.912705,5.55,5,0.326223,0.326223,0.326223,0.326223,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,,,,,,,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.122334,0.122334,0.122334,0.122334,0.122334,0.122334,0.122334,0.122334,0.063885,0.063885,24.999999,24.999981,24.999998,24.999997,24.999975,24.999998,25,25,25,25,,,,,,,,,,,2236,2236,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.326223,0.122334,0.122334,25,25,, +9727,0,0.035235,1,1,0,2,6,GRV,5,5,Pleasant Lake,Rd,1426007,0,0.035,0,0.755029,5.55,5,0.084563,0.084563,0.084563,0.084563,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,,,,,,,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.031711,0.031711,0.031711,0.031711,0.031711,0.031711,0.031711,0.031711,0.01656,0.01656,24.999981,24.999999,24.999997,24.999998,24.999998,24.999975,25,25,25,25,,,,,,,,,,,2236,2236,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.084563,0.031711,0.031711,25,25,, +40031,-1,0.035432,0,1,0,2,3,,4,3,Orchard lake / W 14 MIle cutof,Rd,5500010,0,0.036,0,0.759255,3.7,5,,0.053148,,0.053148,,40,,11000,,2497,,5500,,3549,,3784,,3780,,0.053149,,0.053148,,0.053149,,0.05315,,0.053148,,0.05315,,0.053149,,0.053148,,0.053149,,0.053148,,0.053148,,0.053148,,,,,,,,0.053149,,0.05315,,0.053149,,0.053148,,0.053148,,0.022322,,0.022323,,0.022322,,0.022322,,0.01187,,39.999094,,39.99852,,39.99948,,40,,40,,,,,,,,,,,,3784,,0.053148,,0.053148,,0.053148,,0.053148,,0.022322,,40,, +21876,0,0.073745,1,1,0,2,6,,5,5,Sharon Hollow/Pleasant Lake Cu,,4600923,0,0.074,0,1.580253,5.8,6,0.14749,0.14749,0.14749,0.14749,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,,,,,,,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.057521,0.057521,0.057521,0.057521,0.057521,0.057521,0.057521,0.057521,0.030236,0.030236,29.999988,29.999985,29.999997,29.999997,29.999969,29.999988,30,30,30,30,,,,,,,,,,,2236,2236,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.14749,0.057521,0.057521,30,30,, +9720,0,1.544554,1,1,0,2,6,,5,5,Pleasant Lake,Rd,1426007,1.72,3.264,0,33.097575,5.8,6,3.089107,3.089107,3.089107,3.089107,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.089109,3.089107,3.089107,3.089107,3.089109,3.089107,3.089107,3.089107,3.089107,3.089107,3.089107,3.089107,3.089107,3.089109,3.089107,3.089107,3.089107,3.089109,3.089107,3.089107,3.089107,3.089107,3.089107,3.089107,,,,,,,3.089109,3.089107,3.089107,3.089107,3.089107,3.089109,3.089107,3.089107,3.089107,3.089107,1.204752,1.204752,1.204752,1.204752,1.204752,1.204752,1.204752,1.204752,0.633267,0.633267,29.999981,29.999999,29.999999,29.999999,29.999997,29.999979,30,30,30,30,,,,,,,,,,,2236,2236,3.089107,3.089107,3.089107,3.089107,3.089107,3.089107,3.089107,3.089107,1.204752,1.204752,30,30,, +19970,0,0.653389,1,1,0,2,5,,5,5,Austin,Rd,3380142,4.439,5.092,0,14.001197,3.7,5,1.306778,1.306778,1.306778,1.306778,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.360226,1.308164,1.306778,1.306778,1.360226,1.308164,1.309038,1.308367,1.306778,1.306778,1.309038,1.308367,1.314867,1.367098,1.306778,1.306778,1.314867,1.367098,1.306778,1.306778,1.306778,1.306778,1.306778,1.306778,,,,,,,1.360226,1.308164,1.309038,1.308367,1.314867,1.367098,1.306778,1.306778,1.306778,1.306778,0.525678,0.510059,0.510321,0.51012,0.51207,0.527739,0.509644,0.509644,0.26789,0.26789,28.821215,29.96823,29.948219,29.963573,29.815459,28.676334,30,30,30,30,,,,,,,,,,,2580,2580,1.306778,1.306778,1.306778,1.306778,1.306778,1.306778,1.306778,1.306778,0.509644,0.509644,30,30,, +24548,0,1.517003,1,1,0,2,4,,5,5,M 52,,1425710,6.836,8.352,0,32.507203,3,4,2.275504,2.275504,2.275504,2.275504,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.740402,2.345996,2.275504,2.275504,2.740402,2.345996,2.32939,2.308544,2.275504,2.275504,2.32939,2.308544,2.558957,2.782857,2.275504,2.275504,2.558957,2.782857,2.275504,2.275504,2.275504,2.275504,2.275504,2.275504,,,,,,,2.740402,2.345996,2.32939,2.308544,2.558957,2.782857,2.275504,2.275504,2.275504,2.275504,1.095181,0.976859,0.971877,0.965624,1.040747,1.107918,0.955712,0.955712,0.508196,0.508196,33.214166,38.798097,39.074681,39.427523,35.569252,32.707456,40,40,40,40,,,,,,,,,,,3096,3096,2.275504,2.275504,2.275504,2.275504,2.275504,2.275504,2.275504,2.275504,0.955712,0.955712,40,40,, +24685,0,1.173216,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.14035,0.15,4,4.692865,4.692865,4.692865,4.692865,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,,,,,,,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,1.619039,1.619039,1.619039,1.619039,1.619039,1.619039,1.619039,1.619039,0.832984,0.832984,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,4.692865,1.619039,1.619039,15,15,, +9731,0,0.415581,1,1,0,2,5,,5,5,Hibbard,St,1425809,0.164,0.579,0,8.905303,3.7,5,0.831162,0.831162,0.831162,0.831162,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,,,,,,,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.324153,0.324153,0.324153,0.324153,0.324153,0.324153,0.324153,0.324153,0.170388,0.170388,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.831162,0.324153,0.324153,30,30,, +9880,0,0.486017,1,1,0,2,4,,5,5,Ann Arbor,St,1425710,6.266,6.752,0,10.41465,3,4,0.729025,0.729025,0.729025,0.729025,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.869742,0.755535,0.729025,0.729025,0.869742,0.755535,0.749645,0.742178,0.729025,0.729025,0.749645,0.742178,0.836029,0.901222,0.729025,0.729025,0.836029,0.901222,0.729025,0.729025,0.729025,0.729025,0.729025,0.729025,,,,,,,0.869742,0.755535,0.749645,0.742178,0.836029,0.901222,0.729025,0.729025,0.729025,0.729025,0.348406,0.314144,0.312377,0.310136,0.338292,0.35785,0.306191,0.306191,0.162816,0.162816,33.528358,38.596525,38.899756,39.291138,34.880397,32.357216,40,40,40,40,,,,,,,,,,,3096,3096,0.729025,0.729025,0.729025,0.729025,0.729025,0.729025,0.729025,0.729025,0.306191,0.306191,40,40,, +9907,0,0.367643,1,1,0,2,4,,5,5,Riverside,Dr,1425710,5.899,6.266,0,7.878058,3,4,0.551464,0.551464,0.551464,0.551464,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.552757,0.552492,0.551464,0.551464,0.552757,0.552492,0.551902,0.551839,0.551464,0.551464,0.551902,0.551839,0.55796,0.55444,0.551464,0.551464,0.55796,0.55444,0.551464,0.551464,0.551464,0.551464,0.551464,0.551464,,,,,,,0.552757,0.552492,0.551902,0.551839,0.55796,0.55444,0.551464,0.551464,0.551464,0.551464,0.232003,0.231923,0.231746,0.231727,0.233564,0.232508,0.231615,0.231615,0.12316,0.12316,39.906421,39.925597,39.968243,39.972819,39.534274,39.785292,40,40,40,40,,,,,,,,,,,3096,3096,0.551464,0.551464,0.551464,0.551464,0.551464,0.551464,0.551464,0.551464,0.231615,0.231615,40,40,, +11003,0,0.409649,1,1,0,2,6,,5,5,Adrian,Rd,1432503,0.292,0.702,0,8.778198,5.8,6,0.819298,0.819298,0.819298,0.819298,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,,,,,,,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.319526,0.319526,0.319526,0.319526,0.319526,0.319526,0.319526,0.319526,0.167956,0.167956,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.819298,0.319526,0.319526,30,30,, +24591,0,0.791395,1,1,0,2,5,,5,5,Dutch,Dr,4605721,0,0.791,0,16.958463,3.7,5,1.58279,1.58279,1.58279,1.58279,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,,,,,,,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,0.617288,0.617288,0.617288,0.617288,0.617288,0.617288,0.617288,0.617288,0.324472,0.324472,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,1.58279,0.617288,0.617288,30,30,, +24694,0,0.184011,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,3.9431,0.15,4,0.736045,0.736045,0.736045,0.736045,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,,,,,,,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.253936,0.253936,0.253936,0.253936,0.253936,0.253936,0.253936,0.253936,0.130648,0.130648,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.736045,0.253936,0.253936,15,15,, +24696,0,0.396229,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.49063,0.15,4,1.584918,1.584918,1.584918,1.584918,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,,,,,,,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,0.546797,0.546797,0.546797,0.546797,0.546797,0.546797,0.546797,0.546797,0.281323,0.281323,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,1.584918,0.546797,0.546797,15,15,, +24701,0,0.422974,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.063728,0.15,4,1.691896,1.691896,1.691896,1.691896,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,,,,,,,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,0.583704,0.583704,0.583704,0.583704,0.583704,0.583704,0.583704,0.583704,0.300312,0.300312,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,1.691896,0.583704,0.583704,15,15,, +30082,0,0.536662,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.499898,0.15,4,2.146648,2.146648,2.146648,2.146648,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,,,,,,,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,0.740593,0.740593,0.740593,0.740593,0.740593,0.740593,0.740593,0.740593,0.38103,0.38103,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,2.146648,0.740593,0.740593,15,15,, +11004,0,0.292299,1,1,0,2,6,,5,5,Adrian,Rd,1432503,0,0.292,0,6.263545,5.8,6,0.584598,0.584598,0.584598,0.584598,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.584598,0.584602,0.584598,0.584598,0.584598,0.584602,0.584598,0.584598,0.584598,0.584598,0.584598,0.584598,0.584609,0.584601,0.584598,0.584598,0.584609,0.584601,0.584598,0.584598,0.584598,0.584598,0.584598,0.584598,,,,,,,0.584598,0.584602,0.584598,0.584598,0.584609,0.584601,0.584598,0.584598,0.584598,0.584598,0.227993,0.227995,0.227993,0.227993,0.227996,0.227994,0.227993,0.227993,0.119842,0.119842,29.999984,29.999746,29.999985,29.999973,29.999408,29.999838,30,30,30,30,,,,,,,,,,,2236,2236,0.584598,0.584598,0.584598,0.584598,0.584598,0.584598,0.584598,0.584598,0.227993,0.227993,30,30,, +19968,0,0.199803,1,1,0,2,5,,5,5,Main,St,3380142,5.419,5.619,0,4.281483,3.7,5,0.399605,0.399605,0.399605,0.399605,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.412265,0.399947,0.399605,0.399605,0.412265,0.399947,0.400069,0.39991,0.399605,0.399605,0.400069,0.39991,0.401202,0.413776,0.399605,0.399605,0.401202,0.413776,0.399605,0.399605,0.399605,0.399605,0.399605,0.399605,,,,,,,0.412265,0.399947,0.400069,0.39991,0.401202,0.413776,0.399605,0.399605,0.399605,0.399605,0.159644,0.155948,0.155985,0.155937,0.156325,0.160097,0.155846,0.155846,0.081919,0.081919,29.078746,29.974386,29.965223,29.977126,29.880557,28.972573,30,30,30,30,,,,,,,,,,,2580,2580,0.399605,0.399605,0.399605,0.399605,0.399605,0.399605,0.399605,0.399605,0.155846,0.155846,30,30,, +19969,0,0.327356,1,1,0,2,5,,5,5,Main,St,3380142,5.092,5.419,0,7.014762,3.7,5,0.654711,0.654711,0.654711,0.654711,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.675453,0.655271,0.654711,0.654711,0.675453,0.655271,0.655471,0.655211,0.654711,0.654711,0.655471,0.655211,0.657328,0.677929,0.654711,0.654711,0.657328,0.677929,0.654711,0.654711,0.654711,0.654711,0.654711,0.654711,,,,,,,0.675453,0.655271,0.655471,0.655211,0.657328,0.677929,0.654711,0.654711,0.654711,0.654711,0.26156,0.255505,0.255565,0.255487,0.256122,0.262303,0.255337,0.255337,0.134216,0.134216,29.078746,29.974386,29.965223,29.977126,29.880557,28.972573,30,30,30,30,,,,,,,,,,,2580,2580,0.654711,0.654711,0.654711,0.654711,0.654711,0.654711,0.654711,0.654711,0.255337,0.255337,30,30,, +24697,0,0.444453,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.523983,0.15,4,1.77781,1.77781,1.77781,1.77781,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,,,,,,,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,0.613344,0.613344,0.613344,0.613344,0.613344,0.613344,0.613344,0.613344,0.315561,0.315561,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,1.77781,0.613344,0.613344,15,15,, +19967,0,0.081067,1,1,0,2,5,,5,5,Main,St,3380142,5.619,5.7,0,1.737153,3.7,5,0.162134,0.162134,0.162134,0.162134,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.173567,0.162445,0.162134,0.162134,0.173567,0.162445,0.162585,0.162413,0.162134,0.162134,0.162585,0.162413,0.163741,0.175343,0.162134,0.162134,0.163741,0.175343,0.162134,0.162134,0.162134,0.162134,0.162134,0.162134,,,,,,,0.173567,0.162445,0.162585,0.162413,0.163741,0.175343,0.162134,0.162134,0.162134,0.162134,0.066662,0.063326,0.063368,0.063316,0.063714,0.067195,0.063232,0.063232,0.033238,0.033238,28.023941,29.942616,29.916881,29.948462,29.705694,27.740019,30,30,30,30,,,,,,,,,,,2580,2580,0.162134,0.162134,0.162134,0.162134,0.162134,0.162134,0.162134,0.162134,0.063232,0.063232,30,30,, +24547,0,0.084229,1,1,0,2,4,,5,5,Ann Arbor,St,1425710,6.752,6.836,0,1.804912,3,4,0.126344,0.126344,0.126344,0.126344,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.152157,0.130258,0.126344,0.126344,0.152157,0.130258,0.129336,0.128178,0.126344,0.126344,0.129336,0.128178,0.142082,0.154514,0.126344,0.126344,0.142082,0.154514,0.126344,0.126344,0.126344,0.126344,0.126344,0.126344,,,,,,,0.152157,0.130258,0.129336,0.128178,0.142082,0.154514,0.126344,0.126344,0.126344,0.126344,0.060808,0.054239,0.053962,0.053615,0.057786,0.061515,0.053064,0.053064,0.028217,0.028217,33.214166,38.798097,39.074681,39.427523,35.569252,32.707456,40,40,40,40,,,,,,,,,,,3096,3096,0.126344,0.126344,0.126344,0.126344,0.126344,0.126344,0.126344,0.126344,0.053064,0.053064,40,40,, +9732,0,0.16379,1,1,0,2,5,,5,5,Hibbard,St,1425809,0,0.164,0,3.509781,3.7,5,0.32758,0.32758,0.32758,0.32758,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.327632,0.327581,0.32758,0.32758,0.327632,0.327581,0.32758,0.327581,0.32758,0.32758,0.32758,0.327581,0.327587,0.327604,0.32758,0.32758,0.327587,0.327604,0.32758,0.32758,0.32758,0.32758,0.32758,0.32758,,,,,,,0.327632,0.327581,0.32758,0.327581,0.327587,0.327604,0.32758,0.32758,0.32758,0.32758,0.127772,0.127757,0.127756,0.127756,0.127758,0.127763,0.127756,0.127756,0.067154,0.067154,29.995216,29.999857,29.999962,29.99991,29.999359,29.997743,30,30,30,30,,,,,,,,,,,2580,2580,0.32758,0.32758,0.32758,0.32758,0.32758,0.32758,0.32758,0.32758,0.127756,0.127756,30,30,, +9924,0,0.391688,1,1,0,2,4,,5,5,City,Rd,1425710,5.507,5.899,0,8.393325,3,4,0.587533,0.587533,0.587533,0.587533,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.589549,0.589535,0.587533,0.587533,0.589549,0.589535,0.588154,0.588094,0.587533,0.587533,0.588154,0.588094,0.597257,0.591934,0.587533,0.587533,0.597257,0.591934,0.587533,0.587533,0.587533,0.587533,0.587533,0.587533,,,,,,,0.589549,0.589535,0.588154,0.588094,0.597257,0.591934,0.587533,0.587533,0.587533,0.587533,0.247369,0.247365,0.24695,0.246932,0.249681,0.248084,0.246764,0.246764,0.131216,0.131216,39.863203,39.864125,39.957774,39.961822,39.348721,39.702565,40,40,40,40,,,,,,,,,,,3096,3096,0.587533,0.587533,0.587533,0.587533,0.587533,0.587533,0.587533,0.587533,0.246764,0.246764,40,40,, +24693,0,0.259882,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,5.56889,0.15,4,1.039526,1.039526,1.039526,1.039526,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,,,,,,,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,0.358637,0.358637,0.358637,0.358637,0.358637,0.358637,0.358637,0.358637,0.184516,0.184516,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,1.039526,0.358637,0.358637,15,15,, +24695,0,0.217852,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,4.668267,0.15,4,0.87141,0.87141,0.87141,0.87141,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,,,,,,,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.300636,0.300636,0.300636,0.300636,0.300636,0.300636,0.300636,0.300636,0.154675,0.154675,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.87141,0.300636,0.300636,15,15,, +24699,0,0.285309,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.113768,0.15,4,1.141237,1.141237,1.141237,1.141237,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,,,,,,,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,0.393727,0.393727,0.393727,0.393727,0.393727,0.393727,0.393727,0.393727,0.20257,0.20257,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,1.141237,0.393727,0.393727,15,15,, +24700,0,0.375863,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.054216,0.15,4,1.503454,1.503454,1.503454,1.503454,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,,,,,,,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,0.518691,0.518691,0.518691,0.518691,0.518691,0.518691,0.518691,0.518691,0.266863,0.266863,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,1.503454,0.518691,0.518691,15,15,, +9927,0,0.291335,1,1,0,2,4,,5,5,City,Rd,1425710,5.216,5.507,0,6.242893,3,4,0.437002,0.437002,0.437002,0.437002,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.447006,0.441274,0.437002,0.437002,0.447006,0.441274,0.43836,0.438506,0.437002,0.437002,0.43836,0.438506,0.456063,0.450685,0.437002,0.437002,0.456063,0.450685,0.437002,0.437002,0.437002,0.437002,0.437002,0.437002,,,,,,,0.447006,0.441274,0.43836,0.438506,0.456063,0.450685,0.437002,0.437002,0.437002,0.437002,0.186542,0.184823,0.183948,0.183992,0.189259,0.187646,0.183541,0.183541,0.097597,0.097597,39.104857,39.612761,39.876167,39.862851,38.328252,38.785626,40,40,40,40,,,,,,,,,,,3096,3096,0.437002,0.437002,0.437002,0.437002,0.437002,0.437002,0.437002,0.437002,0.183541,0.183541,40,40,, +9878,0,1.028947,1,1,0,2,4,,5,5,M 52,,1425710,8.352,9.381,0,22.048864,3,4,1.54342,1.54342,1.54342,1.54342,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.825777,1.572496,1.54342,1.54342,1.825777,1.572496,1.570278,1.559391,1.54342,1.54342,1.570278,1.559391,1.677678,1.830289,1.54342,1.54342,1.677678,1.830289,1.54342,1.54342,1.54342,1.54342,1.54342,1.54342,,,,,,,1.825777,1.572496,1.570278,1.559391,1.677678,1.830289,1.54342,1.54342,1.54342,1.54342,0.732943,0.656959,0.656294,0.653028,0.688514,0.734297,0.648237,0.648237,0.344697,0.344697,33.814004,39.260406,39.315864,39.590334,36.798968,33.730636,40,40,40,40,,,,,,,,,,,3096,3096,1.54342,1.54342,1.54342,1.54342,1.54342,1.54342,1.54342,1.54342,0.648237,0.648237,40,40,, +24683,0,1.955897,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,41.912086,0.15,4,7.823589,7.823589,7.823589,7.823589,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,,,,,,,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,2.699138,2.699138,2.699138,2.699138,2.699138,2.699138,2.699138,2.699138,1.388687,1.388687,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,7.823589,2.699138,2.699138,15,15,, +24569,0,0.78264,1,1,0,2,3,,5,5,US 12,,0,0,0,0,16.770847,1.7,4,0.939167,0.939167,0.939167,0.939167,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.127911,1.124201,0.939167,0.939167,1.127911,1.124201,1.062765,1.067716,0.939167,0.939167,1.062765,1.067716,1.126067,1.141889,0.939167,0.939167,1.126067,1.141889,0.939167,0.939167,0.939167,0.939167,0.939167,0.939167,,,,,,,1.127911,1.124201,1.062765,1.067716,1.126067,1.141889,0.939167,0.939167,0.939167,0.939167,0.479248,0.478135,0.459704,0.46119,0.478695,0.483442,0.422625,0.422625,0.226965,0.226965,41.633059,41.770447,44.185111,43.980196,41.701228,41.12342,50,50,50,50,,,,,,,,,,,3096,3096,0.939167,0.939167,0.939167,0.939167,0.939167,0.939167,0.939167,0.939167,0.422625,0.422625,50,50,, +24568,0,1.366761,1,1,0,2,3,,5,5,US 12,,0,0,0,0,29.287743,1.7,4,1.640114,1.640114,1.640114,1.640114,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.820709,1.820741,1.640114,1.640114,1.820709,1.820741,1.74583,1.74809,1.640114,1.640114,1.74583,1.74809,1.805998,1.824279,1.640114,1.640114,1.805998,1.824279,1.640114,1.640114,1.640114,1.640114,1.640114,1.640114,,,,,,,1.820709,1.820741,1.74583,1.74809,1.805998,1.824279,1.640114,1.640114,1.640114,1.640114,0.79223,0.792239,0.769766,0.770444,0.787816,0.793301,0.738051,0.738051,0.396361,0.396361,45.040509,45.039734,46.972314,46.911594,45.407399,44.95238,50,50,50,50,,,,,,,,,,,3096,3096,1.640114,1.640114,1.640114,1.640114,1.640114,1.640114,1.640114,1.640114,0.738051,0.738051,50,50,, +34093,0,0.764269,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.057075,3.057075,3.057075,3.057075,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,,,,,,,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,1.054691,1.054691,1.054691,1.054691,1.054691,1.054691,1.054691,1.054691,0.542631,0.542631,14.999999,14.999999,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,3.057075,1.054691,1.054691,15,15,, +24567,0,0.133286,1,1,0,2,4,,5,5,M 52,,0,0,0,0,2.856129,3,4,0.199929,0.199929,0.199929,0.199929,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.200243,0.200143,0.199929,0.199929,0.200243,0.200143,0.200033,0.200019,0.199929,0.199929,0.200033,0.200019,0.201115,0.200834,0.199929,0.199929,0.201115,0.200834,0.199929,0.199929,0.199929,0.199929,0.199929,0.199929,,,,,,,0.200243,0.200143,0.200033,0.200019,0.201115,0.200834,0.199929,0.199929,0.199929,0.199929,0.084064,0.084034,0.084002,0.083997,0.084326,0.084242,0.08397,0.08397,0.044651,0.044651,39.93725,39.957198,39.979121,39.982025,39.764172,39.819799,40,40,40,40,,,,,,,,,,,3096,3096,0.199929,0.199929,0.199929,0.199929,0.199929,0.199929,0.199929,0.199929,0.08397,0.08397,40,40,, +34092,0,0.707902,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.831609,2.831609,2.831609,2.831609,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,,,,,,,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,0.976905,0.976905,0.976905,0.976905,0.976905,0.976905,0.976905,0.976905,0.502611,0.502611,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,2.831609,0.976905,0.976905,15,15,, +34091,0,0.800525,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.202098,3.202098,3.202098,3.202098,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.202098,3.202098,3.202098,3.202098,3.202098,3.202098,3.202098,3.202098,3.202098,3.202098,3.202098,3.202098,3.202099,3.202099,3.202098,3.202098,3.202099,3.202099,3.202098,3.202098,3.202098,3.202098,3.202098,3.202098,,,,,,,3.202098,3.202098,3.202098,3.202098,3.202099,3.202099,3.202098,3.202098,3.202098,3.202098,1.104724,1.104724,1.104724,1.104724,1.104724,1.104724,1.104724,1.104724,0.568372,0.568372,14.999998,14.999998,14.999999,14.999999,14.999998,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,3.202098,3.202098,3.202098,3.202098,3.202098,3.202098,3.202098,3.202098,1.104724,1.104724,15,15,, +10410,0,0.590269,1,1,0,2,3,,5,5,Michigan,Ave,1427301,0,0.59,0,12.648625,1.7,4,0.708323,0.708323,0.708323,0.708323,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.239887,1.256827,0.708323,0.708323,1.239887,1.256827,1.062446,1.071993,0.708323,0.708323,1.062446,1.071993,1.387636,1.401808,0.708323,0.708323,1.387636,1.401808,0.708323,0.708323,0.708323,0.708323,0.708323,0.708323,,,,,,,1.239887,1.256827,1.062446,1.071993,1.387636,1.401808,0.708323,0.708323,0.708323,0.708323,0.478214,0.483296,0.424982,0.427846,0.522539,0.526791,0.318745,0.318745,0.171178,0.171178,28.564024,28.179024,33.334529,33.037656,25.522642,25.264618,50,50,50,50,,,,,,,,,,,3096,3096,0.708323,0.708323,0.708323,0.708323,0.708323,0.708323,0.708323,0.708323,0.318745,0.318745,50,50,, +10996,0,2.420233,1,1,0,2,6,GRV,5,5,Kaiser,Rd,1432606,3.397,5.816,0,51.862141,5.55,5,5.80856,5.80856,5.80856,5.80856,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,,,,,,,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,2.17821,2.17821,2.17821,2.17821,2.17821,2.17821,2.17821,2.17821,1.13751,1.13751,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,5.80856,2.17821,2.17821,25,25,, +11000,0,0.904337,1,1,0,2,6,GRV,5,5,Braun,Rd,1432604,0,0.904,0,19.378643,5.55,5,2.170408,2.170408,2.170408,2.170408,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,,,,,,,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,0.813903,0.813903,0.813903,0.813903,0.813903,0.813903,0.813903,0.813903,0.425038,0.425038,25,24.999999,25,25,24.999999,25,25,25,25,25,,,,,,,,,,,2236,2236,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,2.170408,0.813903,0.813903,25,25,, +19954,0,1.479402,1,1,0,2,5,,5,5,Clinton,Rd,3460105,3.687,5.166,0,31.701468,3.7,5,2.958804,2.958804,2.958804,2.958804,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,2.958806,2.958804,2.958804,2.958804,2.958806,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,,,,,,,2.958804,2.958804,2.958804,2.958804,2.958804,2.958806,2.958804,2.958804,2.958804,2.958804,1.153934,1.153933,1.153933,1.153933,1.153934,1.153934,1.153933,1.153933,0.606555,0.606555,29.999994,30,30,30,29.999996,29.999976,30,30,30,30,,,,,,,,,,,2580,2580,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,2.958804,1.153933,1.153933,30,30,, +21799,0,1.960633,1,1,0,2,5,,5,5,Austin,Rd,4604910,3.237,5.197,0,42.013563,3.7,5,3.921266,3.921266,3.921266,3.921266,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.956634,3.921797,3.921266,3.921266,3.956634,3.921797,3.921514,3.921408,3.921266,3.921266,3.921514,3.921408,3.925327,3.997375,3.921266,3.921266,3.925327,3.997375,3.921266,3.921266,3.921266,3.921266,3.921266,3.921266,,,,,,,3.956634,3.921797,3.921514,3.921408,3.925327,3.997375,3.921266,3.921266,3.921266,3.921266,1.539904,1.529453,1.529368,1.529336,1.530512,1.552127,1.529294,1.529294,0.803859,0.803859,29.731835,29.995937,29.998102,29.998909,29.968959,29.428804,30,30,30,30,,,,,,,,,,,2580,2580,3.921266,3.921266,3.921266,3.921266,3.921266,3.921266,3.921266,3.921266,1.529294,1.529294,30,30,, +24704,0,1.780442,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,38.152334,0.15,4,7.121769,7.121769,7.121769,7.121769,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,,,,,,,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,2.45701,2.45701,2.45701,2.45701,2.45701,2.45701,2.45701,2.45701,1.264114,1.264114,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,7.121769,2.45701,2.45701,15,15,, +24706,0,1.451312,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.099547,0.15,4,5.805249,5.805249,5.805249,5.805249,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,,,,,,,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,2.002811,2.002811,2.002811,2.002811,2.002811,2.002811,2.002811,2.002811,1.030432,1.030432,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,5.805249,2.002811,2.002811,15,15,, +24710,0,1.830908,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.233744,0.15,4,7.323632,7.323632,7.323632,7.323632,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,,,,,,,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,2.526653,2.526653,2.526653,2.526653,2.526653,2.526653,2.526653,2.526653,1.299945,1.299945,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,7.323632,2.526653,2.526653,15,15,, +24711,0,0.874833,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.746411,0.15,4,3.49933,3.49933,3.49933,3.49933,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,,,,,,,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,1.207269,1.207269,1.207269,1.207269,1.207269,1.207269,1.207269,1.207269,0.621131,0.621131,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,3.49933,1.207269,1.207269,15,15,, +19956,0,1.510986,1,1,0,2,5,,5,5,Clinton,Rd,3460105,1.874,3.384,0,32.378263,3.7,5,3.021971,3.021971,3.021971,3.021971,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.021971,3.021971,3.021971,3.021971,3.021971,3.021971,3.021971,3.021971,3.021971,3.021971,3.021971,3.021971,3.021972,3.021973,3.021971,3.021971,3.021972,3.021973,3.021971,3.021971,3.021971,3.021971,3.021971,3.021971,,,,,,,3.021971,3.021971,3.021971,3.021971,3.021972,3.021973,3.021971,3.021971,3.021971,3.021971,1.178569,1.178569,1.178569,1.178569,1.178569,1.178569,1.178569,1.178569,0.619504,0.619504,29.999998,30,30,30,29.999992,29.999979,30,30,30,30,,,,,,,,,,,2580,2580,3.021971,3.021971,3.021971,3.021971,3.021971,3.021971,3.021971,3.021971,1.178569,1.178569,30,30,, +24707,0,1.028679,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.043114,0.15,4,4.114715,4.114715,4.114715,4.114715,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,,,,,,,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,1.419577,1.419577,1.419577,1.419577,1.419577,1.419577,1.419577,1.419577,0.730362,0.730362,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,4.114715,1.419577,1.419577,15,15,, +29979,0,1.372868,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.418609,0.15,4,5.491474,5.491474,5.491474,5.491474,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,,,,,,,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,1.894558,1.894558,1.894558,1.894558,1.894558,1.894558,1.894558,1.894558,0.974737,0.974737,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,5.491474,1.894558,1.894558,15,15,, +9934,0,0.198256,1,1,0,2,4,,5,5,M 52,,1425710,3.567,3.765,0,4.248334,3,4,0.297383,0.297383,0.297383,0.297383,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.304045,0.298014,0.297383,0.297383,0.304045,0.298014,0.297956,0.297914,0.297383,0.297383,0.297956,0.297914,0.30231,0.308981,0.297383,0.297383,0.30231,0.308981,0.297383,0.297383,0.297383,0.297383,0.297383,0.297383,,,,,,,0.304045,0.298014,0.297956,0.297914,0.30231,0.308981,0.297383,0.297383,0.297383,0.297383,0.126899,0.12509,0.125073,0.12506,0.126379,0.12838,0.124901,0.124901,0.066416,0.066416,39.123658,39.915335,39.923074,39.92878,39.348123,38.498579,40,40,40,40,,,,,,,,,,,3096,3096,0.297383,0.297383,0.297383,0.297383,0.297383,0.297383,0.297383,0.297383,0.124901,0.124901,40,40,, +19957,0,1.659541,1,1,0,2,5,,5,5,Clinton,Rd,3460105,0.215,1.874,0,35.561593,3.7,5,3.319082,3.319082,3.319082,3.319082,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.319082,3.319082,3.319082,3.319082,3.319082,3.319082,3.319082,3.319082,3.319082,3.319082,3.319082,3.319082,3.319083,3.319084,3.319082,3.319082,3.319083,3.319084,3.319082,3.319082,3.319082,3.319082,3.319082,3.319082,,,,,,,3.319082,3.319082,3.319082,3.319082,3.319083,3.319084,3.319082,3.319082,3.319082,3.319082,1.294442,1.294442,1.294442,1.294442,1.294442,1.294443,1.294442,1.294442,0.680412,0.680412,29.999998,30,30,30,29.999992,29.999979,30,30,30,30,,,,,,,,,,,2580,2580,3.319082,3.319082,3.319082,3.319082,3.319082,3.319082,3.319082,3.319082,1.294442,1.294442,30,30,, +19955,0,0.302819,1,1,0,2,5,,5,5,Clinton,Rd,3460105,3.384,3.687,0,6.488987,3.7,5,0.605639,0.605639,0.605639,0.605639,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,0.60564,0.605639,0.605639,0.605639,0.60564,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,,,,,,,0.605639,0.605639,0.605639,0.605639,0.605639,0.60564,0.605639,0.605639,0.605639,0.605639,0.236199,0.236199,0.236199,0.236199,0.236199,0.236199,0.236199,0.236199,0.124156,0.124156,29.999992,30,30,30,29.999988,29.999957,30,30,30,30,,,,,,,,,,,2580,2580,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,0.605639,0.236199,0.236199,30,30,, +10870,0,1.947888,1,1,0,2,6,GRV,5,5,Ernest,Rd,1433008,0,1.947,0,41.740447,5.55,5,4.67493,4.67493,4.67493,4.67493,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,,,,,,,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,1.753099,1.753099,1.753099,1.753099,1.753099,1.753099,1.753099,1.753099,0.915507,0.915507,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,4.67493,1.753099,1.753099,25,25,, +22067,0,1.448326,1,1,0,2,5,,5,5,Austin,Rd,4604910,1.789,3.237,0,31.035565,3.7,5,2.896653,2.896653,2.896653,2.896653,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.922893,2.897035,2.896653,2.896653,2.922893,2.897035,2.89684,2.896763,2.896653,2.896653,2.89684,2.896763,2.899582,2.953734,2.896653,2.896653,2.899582,2.953734,2.896653,2.896653,2.896653,2.896653,2.896653,2.896653,,,,,,,2.922893,2.897035,2.89684,2.896763,2.899582,2.953734,2.896653,2.896653,2.896653,2.896653,1.137567,1.129809,1.129751,1.129728,1.130573,1.146819,1.129695,1.129695,0.593814,0.593814,29.730671,29.996046,29.998058,29.998859,29.96969,29.420247,30,30,30,30,,,,,,,,,,,2580,2580,2.896653,2.896653,2.896653,2.896653,2.896653,2.896653,2.896653,2.896653,1.129695,1.129695,30,30,, +21309,0,0.21018,1,1,0,2,5,,5,5,Austin,Rd,4604910,1.579,1.789,0,4.503861,3.7,5,0.42036,0.42036,0.42036,0.42036,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.423123,0.42042,0.42036,0.42036,0.423123,0.42042,0.420386,0.420374,0.42036,0.42036,0.420386,0.420374,0.420603,0.425271,0.42036,0.42036,0.420603,0.425271,0.42036,0.42036,0.42036,0.42036,0.42036,0.42036,,,,,,,0.423123,0.42042,0.420386,0.420374,0.420603,0.425271,0.42036,0.42036,0.42036,0.42036,0.164769,0.163958,0.163948,0.163945,0.164013,0.165414,0.163941,0.163941,0.086174,0.086174,29.804154,29.995774,29.998154,29.999004,29.982673,29.653588,30,30,30,30,,,,,,,,,,,2580,2580,0.42036,0.42036,0.42036,0.42036,0.42036,0.42036,0.42036,0.42036,0.163941,0.163941,30,30,, +10844,0,1.639628,1,1,0,2,6,GRV,5,5,Ernest,Rd,1433008,1.947,3.586,0,35.134887,5.55,5,3.935107,3.935107,3.935107,3.935107,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,,,,,,,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,1.475665,1.475665,1.475665,1.475665,1.475665,1.475665,1.475665,1.475665,0.770625,0.770625,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,3.935107,1.475665,1.475665,25,25,, +9571,0,1.09711,1,1,0,2,6,GRV,5,5,McCollum,Rd,1427304,0,1.097,0,23.509503,5.55,5,2.633064,2.633064,2.633064,2.633064,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.633064,2.633073,2.633064,2.633064,2.633064,2.633073,2.633064,2.633065,2.633064,2.633064,2.633064,2.633065,2.633067,2.633065,2.633064,2.633064,2.633067,2.633065,2.633064,2.633064,2.633064,2.633064,2.633064,2.633064,,,,,,,2.633064,2.633073,2.633064,2.633065,2.633067,2.633065,2.633064,2.633064,2.633064,2.633064,0.987399,0.987402,0.987399,0.987399,0.9874,0.987399,0.987399,0.987399,0.515642,0.515642,25,24.999918,24.999999,24.999999,24.999975,24.999996,25,25,25,25,,,,,,,,,,,2236,2236,2.633064,2.633064,2.633064,2.633064,2.633064,2.633064,2.633064,2.633064,0.987399,0.987399,25,25,, +10142,0,1.927055,1,1,0,2,3,,5,5,Michigan,Ave,1427301,0.59,2.516,0,41.294036,1.7,4,2.312466,2.312466,2.312466,2.312466,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,4.022078,4.071803,2.312466,2.312466,4.022078,4.071803,3.444047,3.483348,2.312466,2.312466,3.444047,3.483348,4.492657,4.545915,2.312466,2.312466,4.492657,4.545915,2.312466,2.312466,2.312466,2.312466,2.312466,2.312466,,,,,,,4.022078,4.071803,3.444047,3.483348,4.492657,4.545915,2.312466,2.312466,2.312466,2.312466,1.553493,1.568411,1.380084,1.391874,1.694667,1.710644,1.04061,1.04061,0.558846,0.558846,28.747156,28.396092,33.571928,33.193148,25.736063,25.434549,50,50,50,50,,,,,,,,,,,3096,3096,2.312466,2.312466,2.312466,2.312466,2.312466,2.312466,2.312466,2.312466,1.04061,1.04061,50,50,, +10408,0,1.745121,1,1,0,2,3,,5,5,Michigan,Ave,1427301,2.516,4.261,0,37.39545,1.7,4,2.094145,2.094145,2.094145,2.094145,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.971771,3.776241,2.094145,2.094145,3.971771,3.776241,3.21397,3.2391,2.094145,2.094145,3.21397,3.2391,4.273826,4.423513,2.094145,2.094145,4.273826,4.423513,2.094145,2.094145,2.094145,2.094145,2.094145,2.094145,,,,,,,3.971771,3.776241,3.21397,3.2391,4.273826,4.423513,2.094145,2.094145,2.094145,2.094145,1.505653,1.446994,1.278313,1.285852,1.596269,1.641176,0.942365,0.942365,0.506085,0.506085,26.362865,27.727905,32.578788,32.326038,24.499657,23.670613,50,50,50,50,,,,,,,,,,,3096,3096,2.094145,2.094145,2.094145,2.094145,2.094145,2.094145,2.094145,2.094145,0.942365,0.942365,50,50,, +10999,0,1.794109,1,1,0,2,6,GRV,5,5,Braun,Rd,1432604,0.904,2.697,0,38.44519,5.55,5,4.305861,4.305861,4.305861,4.305861,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,,,,,,,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,1.614698,1.614698,1.614698,1.614698,1.614698,1.614698,1.614698,1.614698,0.843231,0.843231,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,4.305861,1.614698,1.614698,25,25,, +24702,0,0.945904,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.269363,0.15,4,3.783614,3.783614,3.783614,3.783614,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,,,,,,,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,1.305347,1.305347,1.305347,1.305347,1.305347,1.305347,1.305347,1.305347,0.671592,0.671592,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,3.783614,1.305347,1.305347,15,15,, +24703,0,1.850065,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.644247,0.15,4,7.400259,7.400259,7.400259,7.400259,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,,,,,,,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,2.55309,2.55309,2.55309,2.55309,2.55309,2.55309,2.55309,2.55309,1.313546,1.313546,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,7.400259,2.55309,2.55309,15,15,, +24705,0,1.558554,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,33.397582,0.15,4,6.234215,6.234215,6.234215,6.234215,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,,,,,,,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,2.150804,2.150804,2.150804,2.150804,2.150804,2.150804,2.150804,2.150804,1.106573,1.106573,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,6.234215,2.150804,2.150804,15,15,, +10342,0,1.002757,1,1,0,2,6,GRV,5,5,McCollum,Rd,1427304,1.097,2.099,0,21.487652,5.55,5,2.406617,2.406617,2.406617,2.406617,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,,,,,,,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,0.902481,0.902481,0.902481,0.902481,0.902481,0.902481,0.902481,0.902481,0.471296,0.471296,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,2.406617,0.902481,0.902481,25,25,, +9559,0,1.008822,1,1,0,2,6,GRV,5,5,McCollum,Rd,1427304,2.099,3.108,0,21.617624,5.55,5,2.421174,2.421174,2.421174,2.421174,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,,,,,,,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,0.90794,0.90794,0.90794,0.90794,0.90794,0.90794,0.90794,0.90794,0.474147,0.474147,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,2.421174,0.90794,0.90794,25,25,, +10842,0,1.05046,1,1,0,2,6,,5,5,Schneider,Rd,1433009,0,1.05,0,22.509864,5.8,6,2.100921,2.100921,2.100921,2.100921,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.101204,2.100921,2.100921,2.100921,2.101204,2.100921,2.100921,2.100921,2.100921,2.100921,2.100921,2.100921,2.100931,2.101517,2.100921,2.100921,2.100931,2.101517,2.100921,2.100921,2.100921,2.100921,2.100921,2.100921,,,,,,,2.101204,2.100921,2.100921,2.100921,2.100931,2.101517,2.100921,2.100921,2.100921,2.100921,0.819444,0.819359,0.819359,0.819359,0.819362,0.819538,0.819359,0.819359,0.430689,0.430689,29.995958,30,29.999999,30,29.999859,29.991482,30,30,30,30,,,,,,,,,,,2236,2236,2.100921,2.100921,2.100921,2.100921,2.100921,2.100921,2.100921,2.100921,0.819359,0.819359,30,30,, +10994,0,2.01074,1,1,0,2,6,GRV,5,5,Saline Waterworks,Rd,1432706,0,2.01,0,43.087287,5.55,5,4.825776,4.825776,4.825776,4.825776,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,,,,,,,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,1.809666,1.809666,1.809666,1.809666,1.809666,1.809666,1.809666,1.809666,0.945048,0.945048,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,4.825776,1.809666,1.809666,25,25,, +11379,0,1.022038,1,1,0,2,5,GRV,5,5,Parker,Rd,1444406,0,1.022,0,21.900814,5.55,5,3.066114,3.066114,3.066114,3.066114,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,,,,,,,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,1.103801,1.103801,1.103801,1.103801,1.103801,1.103801,1.103801,1.103801,0.572341,0.572341,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,3.066114,1.103801,1.103801,20,20,, +21356,0,1.46991,1,1,0,2,5,,5,5,Austin,Rd,4604910,5.473,6.943,0,31.498072,3.7,5,2.93982,2.93982,2.93982,2.93982,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.950535,2.940251,2.93982,2.93982,2.950535,2.940251,2.940033,2.939964,2.93982,2.93982,2.940033,2.939964,2.940927,2.953962,2.93982,2.93982,2.940927,2.953962,2.93982,2.93982,2.93982,2.93982,2.93982,2.93982,,,,,,,2.950535,2.940251,2.940033,2.939964,2.940927,2.953962,2.93982,2.93982,2.93982,2.93982,1.149744,1.146659,1.146594,1.146573,1.146862,1.150772,1.14653,1.14653,0.602663,0.602663,29.89105,29.995598,29.997828,29.998531,29.988703,29.856381,30,30,30,30,,,,,,,,,,,2580,2580,2.93982,2.93982,2.93982,2.93982,2.93982,2.93982,2.93982,2.93982,1.14653,1.14653,30,30,, +24708,0,1.061766,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.752134,0.15,4,4.247065,4.247065,4.247065,4.247065,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,,,,,,,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,1.465237,1.465237,1.465237,1.465237,1.465237,1.465237,1.465237,1.465237,0.753854,0.753854,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,4.247065,1.465237,1.465237,15,15,, +21575,0,0.276809,1,1,0,2,5,,5,5,Austin,Rd,4604910,5.197,5.473,0,5.93162,3.7,5,0.553618,0.553618,0.553618,0.553618,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.55458,0.553831,0.553618,0.553618,0.55458,0.553831,0.553644,0.553637,0.553618,0.553618,0.553644,0.553637,0.553988,0.555681,0.553618,0.553618,0.553988,0.555681,0.553618,0.553618,0.553618,0.553618,0.553618,0.553618,,,,,,,0.55458,0.553831,0.553644,0.553637,0.553988,0.555681,0.553618,0.553618,0.553618,0.553618,0.2162,0.215975,0.215919,0.215917,0.216022,0.21653,0.215911,0.215911,0.113492,0.113492,29.947927,29.98846,29.998603,29.998975,29.97993,29.888598,30,30,30,30,,,,,,,,,,,2580,2580,0.553618,0.553618,0.553618,0.553618,0.553618,0.553618,0.553618,0.553618,0.215911,0.215911,30,30,, +10841,0,2.03161,1,1,0,2,6,,5,5,Schneider,Rd,1433009,1.05,3.081,0,43.534495,5.8,6,4.06322,4.06322,4.06322,4.06322,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.063669,4.06322,4.06322,4.06322,4.063669,4.06322,4.06322,4.06322,4.06322,4.06322,4.06322,4.06322,4.063234,4.064188,4.06322,4.06322,4.063234,4.064188,4.06322,4.06322,4.06322,4.06322,4.06322,4.06322,,,,,,,4.063669,4.06322,4.06322,4.06322,4.063234,4.064188,4.06322,4.06322,4.06322,4.06322,1.584791,1.584656,1.584656,1.584656,1.58466,1.584946,1.584656,1.584656,0.83296,0.83296,29.996681,30,29.999999,30,29.999896,29.99285,30,30,30,30,,,,,,,,,,,2236,2236,4.06322,4.06322,4.06322,4.06322,4.06322,4.06322,4.06322,4.06322,1.584656,1.584656,30,30,, +22121,0,0.23741,1,1,0,2,5,,5,5,Austin,Rd,4604910,6.943,7.18,0,5.08735,3.7,5,0.474819,0.474819,0.474819,0.474819,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.476865,0.474891,0.474819,0.474819,0.476865,0.474891,0.474857,0.474845,0.474819,0.474819,0.474857,0.474845,0.475015,0.47758,0.474819,0.474819,0.475015,0.47758,0.474819,0.474819,0.474819,0.474819,0.474819,0.474819,,,,,,,0.476865,0.474891,0.474857,0.474845,0.475015,0.47758,0.474819,0.474819,0.474819,0.474819,0.185793,0.185201,0.185191,0.185187,0.185238,0.186008,0.18518,0.18518,0.097338,0.097338,29.871281,29.995482,29.997644,29.998387,29.987665,29.826582,30,30,30,30,,,,,,,,,,,2580,2580,0.474819,0.474819,0.474819,0.474819,0.474819,0.474819,0.474819,0.474819,0.18518,0.18518,30,30,, +11377,0,0.50034,1,1,0,2,5,GRV,5,5,Parker,Rd,1444406,1.531,2.031,0,10.721575,5.55,5,1.50102,1.50102,1.50102,1.50102,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.501021,1.50102,1.50102,1.50102,1.501021,1.50102,1.50102,1.50102,1.50102,1.50102,1.50102,1.50102,1.501021,1.501021,1.50102,1.50102,1.501021,1.501021,1.50102,1.50102,1.50102,1.50102,1.50102,1.50102,,,,,,,1.501021,1.50102,1.50102,1.50102,1.501021,1.501021,1.50102,1.50102,1.50102,1.50102,0.540368,0.540367,0.540367,0.540367,0.540367,0.540367,0.540367,0.540367,0.28019,0.28019,19.999993,20,20,20,20,19.999998,20,20,20,20,,,,,,,,,,,2236,2236,1.50102,1.50102,1.50102,1.50102,1.50102,1.50102,1.50102,1.50102,0.540367,0.540367,20,20,, +11154,0,0.509632,1,1,0,2,5,GRV,5,5,Parker,Rd,1444406,1.022,1.531,0,10.920675,5.55,5,1.528895,1.528895,1.528895,1.528895,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,,,,,,,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,0.550402,0.550402,0.550402,0.550402,0.550402,0.550402,0.550402,0.550402,0.285394,0.285394,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,1.528895,0.550402,0.550402,20,20,, +10921,0,0.164077,1,1,0,2,5,GRV,5,5,Weber,Rd,1447906,0.919,1.083,0,3.515943,5.55,5,0.492232,0.492232,0.492232,0.492232,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,,,,,,,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.177204,0.177204,0.177204,0.177204,0.177204,0.177204,0.177204,0.177204,0.091883,0.091883,20,19.999993,20,20,19.999998,20,20,20,20,20,,,,,,,,,,,2236,2236,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.492232,0.177204,0.177204,20,20,, +6823,0,1.109876,1,1,0,2,5,,5,8,Patterson Lake,Rd,932401,0.043,1.152,0,23.783055,3.7,5,2.219752,2.219752,2.219752,2.219752,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,,,,,,,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,0.865703,0.865703,0.865703,0.865703,0.865703,0.865703,0.865703,0.865703,0.455049,0.455049,29.999999,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,2.219752,0.865703,0.865703,30,30,, +9523,0,0.7191,1,1,0,2,4,,4,5,Baker,Rd,1426608,2.397,3.116,0,15.409281,4.5,4.5,1.135421,1.135421,1.135421,1.135421,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.137146,1.260052,1.135421,1.135421,1.137146,1.260052,1.139937,1.142573,1.135421,1.135421,1.139937,1.142573,1.21222,1.142922,1.135421,1.135421,1.21222,1.142922,1.135421,1.135421,1.135421,1.135421,1.135421,1.135421,,,,,,,1.137146,1.260052,1.139937,1.142573,1.21222,1.142922,1.135421,1.135421,1.135421,1.135421,0.470582,0.507453,0.471419,0.47221,0.493104,0.472315,0.470064,0.470064,0.249414,0.249414,37.942356,34.241441,37.84945,37.762121,35.59254,37.750579,38,38,38,38,,,,,,,,,,,3096,3096,1.135421,1.135421,1.135421,1.135421,1.135421,1.135421,1.135421,1.135421,0.470064,0.470064,38,38,, +9542,0,0.814681,1,1,0,2,7,GRV,5,5,Dancer,Rd,1426604,4.018,4.832,0,17.457451,5.55,5,2.444043,2.444043,2.444043,2.444043,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,,,,,,,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,0.879856,0.879856,0.879856,0.879856,0.879856,0.879856,0.879856,0.879856,0.456221,0.456221,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,2.444043,0.879856,0.879856,20,20,, +9572,1,2.018787,2,0,0,1,1,,5,5,E I 94,,1426109,5.878,7.896,0,,1.02,7,1.730389,,1.730389,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.825793,,1.730389,,1.825793,,1.746042,,1.730389,,1.746042,,1.82502,,1.730389,,1.82502,,1.730389,,1.730389,,1.730389,,,,,,,,1.825793,,1.746042,,1.82502,,1.730389,,1.730389,,0.91112,,0.887194,,0.910888,,0.882498,,0.481625,,66.34226,,69.372452,,66.370379,,70,,70,,,,,,,,,,,,15136,,1.730389,,1.730389,,1.730389,,1.730389,,0.882498,,70,,, +9692,0,0.295339,1,1,0,2,4,,4,5,Old US 12,,1426508,6.731,7.027,0,6.328703,4.5,4.5,0.466326,0.466326,0.466326,0.466326,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.597067,0.561878,0.466326,0.466326,0.597067,0.561878,0.544286,0.55167,0.466326,0.466326,0.544286,0.55167,0.674874,0.668672,0.466326,0.466326,0.674874,0.668672,0.466326,0.466326,0.466326,0.466326,0.466326,0.466326,,,,,,,0.597067,0.561878,0.544286,0.55167,0.674874,0.668672,0.466326,0.466326,0.466326,0.466326,0.232281,0.221724,0.216447,0.218662,0.255623,0.253763,0.193059,0.193059,0.102436,0.102436,29.679009,31.537761,32.557114,32.121303,26.25732,26.500857,38,38,38,38,,,,,,,,,,,3096,3096,0.466326,0.466326,0.466326,0.466326,0.466326,0.466326,0.466326,0.466326,0.193059,0.193059,38,38,, +9701,0,2.779808,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,0,2.779,0,59.567315,3.7,5,5.559616,5.559616,5.559616,5.559616,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.559616,5.559617,5.559616,5.559616,5.559616,5.559617,5.559616,5.559616,5.559616,5.559616,5.559616,5.559616,5.559617,5.559617,5.559616,5.559616,5.559617,5.559617,5.559616,5.559616,5.559616,5.559616,5.559616,5.559616,,,,,,,5.559616,5.559617,5.559616,5.559616,5.559617,5.559617,5.559616,5.559616,5.559616,5.559616,2.16825,2.16825,2.16825,2.16825,2.168251,2.16825,2.16825,2.16825,1.139721,1.139721,30,29.999997,30,30,29.999994,29.999997,30,30,30,30,,,,,,,,,,,2580,2580,5.559616,5.559616,5.559616,5.559616,5.559616,5.559616,5.559616,5.559616,2.16825,2.16825,30,30,, +10069,0,1.366733,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,2.219,3.585,0,29.28714,3.7,5,2.733466,2.733466,2.733466,2.733466,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.73358,2.73349,2.733466,2.733466,2.73358,2.73349,2.73348,2.733479,2.733466,2.733466,2.73348,2.733479,2.733596,2.733654,2.733466,2.733466,2.733596,2.733654,2.733466,2.733466,2.733466,2.733466,2.733466,2.733466,,,,,,,2.73358,2.73349,2.73348,2.733479,2.733596,2.733654,2.733466,2.733466,2.733466,2.733466,1.066086,1.066059,1.066056,1.066056,1.066091,1.066108,1.066052,1.066052,0.560361,0.560361,29.998753,29.999737,29.99985,29.999863,29.998574,29.997938,30,30,30,30,,,,,,,,,,,2580,2580,2.733466,2.733466,2.733466,2.733466,2.733466,2.733466,2.733466,2.733466,1.066052,1.066052,30,30,, +10110,0,0.097643,1,1,0,2,5,,4,5,Middle,St,1426303,0.886,0.983,0,2.092347,5.8,4.5,0.216984,0.216984,0.216984,0.216984,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.217641,0.229701,0.216984,0.216984,0.217641,0.229701,0.217834,0.218011,0.216984,0.216984,0.217834,0.218011,0.22806,0.218927,0.216984,0.216984,0.22806,0.218927,0.216984,0.216984,0.216984,0.216984,0.216984,0.216984,,,,,,,0.217641,0.229701,0.217834,0.218011,0.22806,0.218927,0.216984,0.216984,0.216984,0.216984,0.082868,0.086486,0.082926,0.082979,0.085994,0.083254,0.082671,0.082671,0.043288,0.043288,26.918458,25.505195,26.894628,26.872865,25.688681,26.760355,27,27,27,27,,,,,,,,,,,2580,2580,0.216984,0.216984,0.216984,0.216984,0.216984,0.216984,0.216984,0.216984,0.082671,0.082671,27,27,, +10400,-1,2.528029,0,2,0,1,1,,5,5,W I 94,,1426110,5.42,7.947,0,,1.02,7,,2.166882,,2.166882,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.199193,,2.166882,,2.199193,,2.184338,,2.166882,,2.184338,,2.369816,,2.166882,,2.369816,,2.166882,,2.166882,,2.166882,,,,,,,,2.199193,,2.184338,,2.369816,,2.166882,,2.166882,,1.114803,,1.110347,,1.16599,,1.10511,,0.603116,,68.971567,,69.44062,,64.00571,,70,,70,,,,,,,,,,,,15136,,2.166882,,2.166882,,2.166882,,2.166882,,1.10511,,70,, +11016,0,0.570817,1,1,0,2,4,,4,5,Dexter Chelsea,Rd,1452809,6.459,7.029,0,12.231794,4.5,4.5,0.90129,0.90129,0.90129,0.90129,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.902732,0.996841,0.90129,0.90129,0.902732,0.996841,0.901416,0.901384,0.90129,0.90129,0.901416,0.901384,0.9629,0.904139,0.90129,0.90129,0.9629,0.904139,0.90129,0.90129,0.90129,0.90129,0.90129,0.90129,,,,,,,0.902732,0.996841,0.901416,0.901384,0.9629,0.904139,0.90129,0.90129,0.90129,0.90129,0.373567,0.401799,0.373172,0.373162,0.391617,0.373989,0.373134,0.373134,0.197983,0.197983,37.939287,34.357546,37.994701,37.996035,35.568618,37.880266,38,38,38,38,,,,,,,,,,,3096,3096,0.90129,0.90129,0.90129,0.90129,0.90129,0.90129,0.90129,0.90129,0.373134,0.373134,38,38,, +11046,0,2.209093,1,1,0,2,6,GRV,5,5,Lima Center,Rd,1453510,0,2.208,0,47.337699,5.55,5,5.301822,5.301822,5.301822,5.301822,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,5.301829,5.30277,5.301822,5.301822,5.301829,5.30277,5.301837,5.301845,5.301822,5.301822,5.301837,5.301845,5.303253,5.301966,5.301822,5.301822,5.303253,5.301966,5.301822,5.301822,5.301822,5.301822,5.301822,5.301822,,,,,,,5.301829,5.30277,5.301837,5.301845,5.303253,5.301966,5.301822,5.301822,5.301822,5.301822,1.988185,1.988468,1.988188,1.98819,1.988612,1.988227,1.988183,1.988183,1.038274,1.038274,24.999968,24.995531,24.999929,24.999891,24.993258,24.999321,25,25,25,25,,,,,,,,,,,2236,2236,5.301822,5.301822,5.301822,5.301822,5.301822,5.301822,5.301822,5.301822,1.988183,1.988183,25,25,, +11228,0,2.064413,1,1,0,2,6,GRV,5,5,Bush,Rd,1452510,1.767,3.831,0,44.237413,5.55,5,4.95459,4.95459,4.95459,4.95459,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.954593,4.954597,4.95459,4.95459,4.954593,4.954597,4.954591,4.95459,4.95459,4.95459,4.954591,4.95459,4.954608,4.954604,4.95459,4.95459,4.954608,4.954604,4.95459,4.95459,4.95459,4.95459,4.95459,4.95459,,,,,,,4.954593,4.954597,4.954591,4.95459,4.954608,4.954604,4.95459,4.95459,4.95459,4.95459,1.857972,1.857973,1.857972,1.857971,1.857977,1.857975,1.857971,1.857971,0.970274,0.970274,24.999988,24.999964,24.999997,25,24.999908,24.999931,25,25,25,25,,,,,,,,,,,2236,2236,4.95459,4.95459,4.95459,4.95459,4.95459,4.95459,4.95459,4.95459,1.857971,1.857971,25,25,, +11479,0,0.247761,1,1,0,2,5,,5,5,Island Lake,Rd,1451905,1.407,1.655,0,5.309157,3.7,5,0.495521,0.495521,0.495521,0.495521,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.495546,0.506517,0.495521,0.495521,0.495546,0.506517,0.495531,0.495537,0.495521,0.495521,0.495531,0.495537,0.499967,0.49564,0.495521,0.495521,0.499967,0.49564,0.495521,0.495521,0.495521,0.495521,0.495521,0.495521,,,,,,,0.495546,0.506517,0.495531,0.495537,0.499967,0.49564,0.495521,0.495521,0.495521,0.495521,0.193261,0.196552,0.193256,0.193258,0.194587,0.193289,0.193253,0.193253,0.101582,0.101582,29.99849,29.348745,29.999395,29.999048,29.733266,29.992795,30,30,30,30,,,,,,,,,,,2580,2580,0.495521,0.495521,0.495521,0.495521,0.495521,0.495521,0.495521,0.495521,0.193253,0.193253,30,30,, +19766,0,0.068715,1,1,0,2,5,,5,8,Patterson Lake,Rd,4104154,0,0.069,0,1.472472,3.7,5,0.137431,0.137431,0.137431,0.137431,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,,,,,,,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.053598,0.053598,0.053598,0.053598,0.053598,0.053598,0.053598,0.053598,0.028173,0.028173,29.999999,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.137431,0.053598,0.053598,30,30,, +21504,0,2.75499,1,1,0,2,5,,5,5,Hadley,Rd,4600021,0,2.754,0,59.035507,3.7,5,5.509981,5.509981,5.509981,5.509981,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.509982,5.541603,5.509981,5.509981,5.509982,5.541603,5.509982,5.509983,5.509981,5.509981,5.509982,5.509983,5.53183,5.509991,5.509981,5.509981,5.53183,5.509991,5.509981,5.509981,5.509981,5.509981,5.509981,5.509981,,,,,,,5.509982,5.541603,5.509982,5.509983,5.53183,5.509991,5.509981,5.509981,5.509981,5.509981,2.148893,2.158379,2.148893,2.148893,2.155447,2.148896,2.148892,2.148892,1.129546,1.129546,29.999992,29.828808,29.999992,29.999985,29.881505,29.999945,30,30,30,30,,,,,,,,,,,2580,2580,5.509981,5.509981,5.509981,5.509981,5.509981,5.509981,5.509981,5.509981,2.148892,2.148892,30,30,, +24663,0,1.434852,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.746836,0.15,4,5.739409,5.739409,5.739409,5.739409,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,,,,,,,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,1.980096,1.980096,1.980096,1.980096,1.980096,1.980096,1.980096,1.980096,1.018745,1.018745,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,5.739409,1.980096,1.980096,15,15,, +24727,0,0.388384,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.322506,0.15,4,1.553534,1.553534,1.553534,1.553534,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,,,,,,,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,0.535969,0.535969,0.535969,0.535969,0.535969,0.535969,0.535969,0.535969,0.275752,0.275752,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,1.553534,0.535969,0.535969,15,15,, +24735,0,0.534289,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.449055,0.15,4,2.137157,2.137157,2.137157,2.137157,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,,,,,,,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,0.737319,0.737319,0.737319,0.737319,0.737319,0.737319,0.737319,0.737319,0.379345,0.379345,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,2.137157,0.737319,0.737319,15,15,, +24741,0,0.502752,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.773265,0.15,4,2.011009,2.011009,2.011009,2.011009,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,,,,,,,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,0.693798,0.693798,0.693798,0.693798,0.693798,0.693798,0.693798,0.693798,0.356954,0.356954,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,2.011009,0.693798,0.693798,15,15,, +9590,1,0.725149,2,0,0,1,1,,5,5,E I 94,,1426109,2.199,2.924,0,,1.02,7,0.621557,,0.621557,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.631706,,0.621557,,0.631706,,0.62571,,0.621557,,0.62571,,0.641173,,0.621557,,0.641173,,0.621557,,0.621557,,0.621557,,,,,,,,0.631706,,0.62571,,0.641173,,0.621557,,0.621557,,0.320039,,0.31824,,0.322879,,0.316994,,0.173,,68.875353,,69.535369,,67.858328,,70,,70,,,,,,,,,,,,15136,,0.621557,,0.621557,,0.621557,,0.621557,,0.316994,,70,,, +9704,0,0.97234,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,1426009,2.311,3.283,0,20.835856,5.55,5,2.333616,2.333616,2.333616,2.333616,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.334564,2.333621,2.333616,2.333616,2.334564,2.333621,2.333657,2.333632,2.333616,2.333616,2.333657,2.333632,2.3337,2.334571,2.333616,2.333616,2.3337,2.334571,2.333616,2.333616,2.333616,2.333616,2.333616,2.333616,,,,,,,2.334564,2.333621,2.333657,2.333632,2.3337,2.334571,2.333616,2.333616,2.333616,2.333616,0.87539,0.875108,0.875118,0.875111,0.875131,0.875392,0.875106,0.875106,0.457,0.457,24.989851,24.99994,24.999559,24.999826,24.999102,24.989775,25,25,25,25,,,,,,,,,,,2236,2236,2.333616,2.333616,2.333616,2.333616,2.333616,2.333616,2.333616,2.333616,0.875106,0.875106,25,25,, +9784,0,1.459411,1,1,0,2,5,,5,5,Old US 12,,1426508,0,1.459,0,31.273091,3.7,5,2.918822,2.918822,2.918822,2.918822,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.934225,2.934004,2.918822,2.918822,2.934225,2.934004,2.925561,2.925162,2.918822,2.918822,2.925561,2.925162,2.94992,2.949136,2.918822,2.918822,2.94992,2.949136,2.918822,2.918822,2.918822,2.918822,2.918822,2.918822,,,,,,,2.934225,2.934004,2.925561,2.925162,2.94992,2.949136,2.918822,2.918822,2.918822,2.918822,1.142961,1.142895,1.140362,1.140243,1.14767,1.147435,1.138341,1.138341,0.598358,0.598358,29.842516,29.844765,29.93089,29.934974,29.683742,29.691626,30,30,30,30,,,,,,,,,,,2580,2580,2.918822,2.918822,2.918822,2.918822,2.918822,2.918822,2.918822,2.918822,1.138341,1.138341,30,30,, +9799,0,1.734016,1,1,0,2,5,,5,5,Old US 12,,1426508,1.459,3.192,0,37.157479,3.7,5,3.468031,3.468031,3.468031,3.468031,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.484288,3.484887,3.468031,3.468031,3.484288,3.484887,3.474715,3.474779,3.468031,3.468031,3.474715,3.474779,3.501178,3.50178,3.468031,3.468031,3.501178,3.50178,3.468031,3.468031,3.468031,3.468031,3.468031,3.468031,,,,,,,3.484288,3.484887,3.474715,3.474779,3.501178,3.50178,3.468031,3.468031,3.468031,3.468031,1.357409,1.357589,1.354537,1.354556,1.362476,1.362657,1.352532,1.352532,0.710946,0.710946,29.860029,29.854893,29.942295,29.941747,29.71598,29.710873,30,30,30,30,,,,,,,,,,,2580,2580,3.468031,3.468031,3.468031,3.468031,3.468031,3.468031,3.468031,3.468031,1.352532,1.352532,30,30,, +9822,0,0.877678,1,1,0,2,4,,5,5,M 52,,1425710,14.824,15.701,0,18.80739,3,4,1.316517,1.316517,1.316517,1.316517,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.651865,1.367312,1.316517,1.316517,1.651865,1.367312,1.388737,1.356078,1.316517,1.316517,1.388737,1.356078,1.540767,1.647045,1.316517,1.316517,1.540767,1.647045,1.316517,1.316517,1.316517,1.316517,1.316517,1.316517,,,,,,,1.651865,1.367312,1.388737,1.356078,1.540767,1.647045,1.316517,1.316517,1.316517,1.316517,0.653542,0.568176,0.574603,0.564805,0.620212,0.652096,0.552937,0.552937,0.294022,0.294022,31.879541,38.514027,37.919856,38.833095,34.178241,31.972825,40,40,40,40,,,,,,,,,,,3096,3096,1.316517,1.316517,1.316517,1.316517,1.316517,1.316517,1.316517,1.316517,0.552937,0.552937,40,40,, +10411,-1,0.911762,0,2,0,1,1,,5,5,W I 94,,1426110,2.161,3.073,0,,1.02,7,,0.78151,,0.78151,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.787933,,0.78151,,0.787933,,0.7867,,0.78151,,0.7867,,0.815252,,0.78151,,0.815252,,0.78151,,0.78151,,0.78151,,,,,,,,0.787933,,0.7867,,0.815252,,0.78151,,0.78151,,0.400497,,0.400127,,0.408693,,0.39857,,0.21752,,69.429355,,69.538193,,67.102831,,70,,70,,,,,,,,,,,,15136,,0.78151,,0.78151,,0.78151,,0.78151,,0.39857,,70,, +11114,0,2.213844,1,1,0,2,6,,5,5,Sylvan,Rd,1447702,4.686,6.899,0,47.43951,5.8,6,4.427688,4.427688,4.427688,4.427688,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.427939,4.427688,4.427688,4.427688,4.427939,4.427688,4.427688,4.427688,4.427688,4.427688,4.427688,4.427688,4.427688,4.4278,4.427688,4.427688,4.427688,4.4278,4.427688,4.427688,4.427688,4.427688,4.427688,4.427688,,,,,,,4.427939,4.427688,4.427688,4.427688,4.427688,4.4278,4.427688,4.427688,4.427688,4.427688,1.726874,1.726798,1.726798,1.726798,1.726798,1.726832,1.726798,1.726798,0.907676,0.907676,29.998295,30,30,30,30,29.999242,30,30,30,30,,,,,,,,,,,2236,2236,4.427688,4.427688,4.427688,4.427688,4.427688,4.427688,4.427688,4.427688,1.726798,1.726798,30,30,, +11143,0,1.251642,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1436509,2.042,3.293,0,26.820905,3.7,5,2.503284,2.503284,2.503284,2.503284,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.503285,2.503284,2.503284,2.503284,2.503285,2.503284,2.503284,2.503284,2.503284,2.503284,2.503284,2.503284,2.503285,2.503285,2.503284,2.503284,2.503285,2.503285,2.503284,2.503284,2.503284,2.503284,2.503284,2.503284,,,,,,,2.503285,2.503284,2.503284,2.503284,2.503285,2.503285,2.503284,2.503284,2.503284,2.503284,0.976281,0.976281,0.976281,0.976281,0.976281,0.976281,0.976281,0.976281,0.513173,0.513173,29.999999,30,30,30,29.999999,29.999999,30,30,30,30,,,,,,,,,,,2580,2580,2.503284,2.503284,2.503284,2.503284,2.503284,2.503284,2.503284,2.503284,0.976281,0.976281,30,30,, +24724,0,0.664088,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.230452,0.15,4,2.656351,2.656351,2.656351,2.656351,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,,,,,,,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,0.916441,0.916441,0.916441,0.916441,0.916441,0.916441,0.916441,0.916441,0.471502,0.471502,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,2.656351,0.916441,0.916441,15,15,, +24737,0,1.042775,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.345172,0.15,4,4.171099,4.171099,4.171099,4.171099,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,,,,,,,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,1.439029,1.439029,1.439029,1.439029,1.439029,1.439029,1.439029,1.439029,0.74037,0.74037,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,4.171099,1.439029,1.439029,15,15,, +24751,0,1.544797,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,33.102792,0.15,4,6.179188,6.179188,6.179188,6.179188,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,,,,,,,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,2.13182,2.13182,2.13182,2.13182,2.13182,2.13182,2.13182,2.13182,1.096806,1.096806,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,6.179188,2.13182,2.13182,15,15,, +9706,0,1.821271,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,1426009,0.392,2.212,0,39.027245,5.55,5,4.371051,4.371051,4.371051,4.371051,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.371052,4.371052,4.371051,4.371051,4.371052,4.371052,4.371051,4.371051,4.371051,4.371051,4.371051,4.371051,4.371052,4.371052,4.371051,4.371051,4.371052,4.371052,4.371051,4.371051,4.371051,4.371051,4.371051,4.371051,,,,,,,4.371052,4.371052,4.371051,4.371051,4.371052,4.371052,4.371051,4.371051,4.371051,4.371051,1.639144,1.639144,1.639144,1.639144,1.639144,1.639144,1.639144,1.639144,0.855998,0.855998,24.999999,24.999999,25,25,24.999998,24.999998,25,25,25,25,,,,,,,,,,,2236,2236,4.371051,4.371051,4.371051,4.371051,4.371051,4.371051,4.371051,4.371051,1.639144,1.639144,25,25,, +11109,0,1.946875,1,1,0,2,6,GRV,5,5,Struthers,Rd,1447706,2.245,4.191,0,41.718742,5.55,5,4.672499,4.672499,4.672499,4.672499,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,,,,,,,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,1.752187,1.752187,1.752187,1.752187,1.752187,1.752187,1.752187,1.752187,0.915031,0.915031,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,4.672499,1.752187,1.752187,25,25,, +34099,0,0.85475,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.419001,3.419001,3.419001,3.419001,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,,,,,,,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,1.179555,1.179555,1.179555,1.179555,1.179555,1.179555,1.179555,1.179555,0.606873,0.606873,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,3.419001,1.179555,1.179555,15,15,, +9707,0,0.391944,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,1426009,0,0.392,0,8.398802,5.55,5,0.940666,0.940666,0.940666,0.940666,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,,,,,,,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.35275,0.35275,0.35275,0.35275,0.35275,0.35275,0.35275,0.35275,0.184214,0.184214,25,24.999999,25,25,24.999999,24.999999,25,25,25,25,,,,,,,,,,,2236,2236,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.940666,0.35275,0.35275,25,25,, +24672,0,1.919888,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,41.14045,0.15,4,7.679551,7.679551,7.679551,7.679551,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,,,,,,,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,2.649445,2.649445,2.649445,2.649445,2.649445,2.649445,2.649445,2.649445,1.36312,1.36312,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,7.679551,2.649445,2.649445,15,15,, +24673,0,0.874952,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.748964,0.15,4,3.499807,3.499807,3.499807,3.499807,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,,,,,,,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,1.207433,1.207433,1.207433,1.207433,1.207433,1.207433,1.207433,1.207433,0.621216,0.621216,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,3.499807,1.207433,1.207433,15,15,, +21534,0,0.07215,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,4603820,0,0.072,0,1.546073,5.55,5,0.17316,0.17316,0.17316,0.17316,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,,,,,,,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.064935,0.064935,0.064935,0.064935,0.064935,0.064935,0.064935,0.064935,0.033911,0.033911,24.999999,24.999999,25,25,24.999998,24.999998,25,25,25,25,,,,,,,,,,,2236,2236,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.17316,0.064935,0.064935,25,25,, +9597,1,1.626236,2,0,0,1,1,,5,5,E I 94,,1426109,0,1.626,0,,1.02,7,1.393916,,1.393916,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.404682,,1.393916,,1.404682,,1.400634,,1.393916,,1.400634,,1.427735,,1.393916,,1.427735,,1.393916,,1.393916,,1.393916,,,,,,,,1.404682,,1.400634,,1.427735,,1.393916,,1.393916,,0.714127,,0.712913,,0.721043,,0.710897,,0.387973,,69.463521,,69.66428,,68.341893,,70,,70,,,,,,,,,,,,15136,,1.393916,,1.393916,,1.393916,,1.393916,,0.710897,,70,,, +10433,-1,1.67739,0,2,0,1,1,,5,5,W I 94,,1426110,0,1.677,0,,1.02,7,,1.437763,,1.437763,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.447711,,1.437763,,1.447711,,1.444894,,1.437763,,1.444894,,1.474452,,1.437763,,1.474452,,1.437763,,1.437763,,1.437763,,,,,,,,1.447711,,1.444894,,1.474452,,1.437763,,1.437763,,0.736244,,0.735398,,0.744266,,0.733259,,0.400177,,69.518973,,69.654543,,68.258191,,70,,70,,,,,,,,,,,,15136,,1.437763,,1.437763,,1.437763,,1.437763,,0.733259,,70,, +11158,0,0.904605,1,1,0,2,6,,5,5,Cavanaugh Lake,Rd,1436509,0,0.904,0,19.384392,5.8,6,1.80921,1.80921,1.80921,1.80921,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.809211,1.80921,1.80921,1.80921,1.809211,1.80921,1.809211,1.809211,1.80921,1.80921,1.809211,1.809211,1.809211,1.809211,1.80921,1.80921,1.809211,1.809211,1.80921,1.80921,1.80921,1.80921,1.80921,1.80921,,,,,,,1.809211,1.80921,1.809211,1.809211,1.809211,1.809211,1.80921,1.80921,1.80921,1.80921,0.705592,0.705592,0.705592,0.705592,0.705592,0.705592,0.705592,0.705592,0.370888,0.370888,29.999981,29.999995,29.999989,29.999983,29.99999,29.999984,30,30,30,30,,,,,,,,,,,2236,2236,1.80921,1.80921,1.80921,1.80921,1.80921,1.80921,1.80921,1.80921,0.705592,0.705592,30,30,, +22027,0,0.762693,1,1,0,2,5,,5,5,Kalmbach,Rd,4603246,0.53,1.292,0,16.343422,3.7,5,1.525386,1.525386,1.525386,1.525386,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.525387,1.525387,1.525386,1.525386,1.525387,1.525387,1.525388,1.525387,1.525386,1.525386,1.525388,1.525387,1.525387,1.525387,1.525386,1.525386,1.525387,1.525387,1.525386,1.525386,1.525386,1.525386,1.525386,1.525386,,,,,,,1.525387,1.525387,1.525388,1.525387,1.525387,1.525387,1.525386,1.525386,1.525386,1.525386,0.594901,0.594901,0.594901,0.594901,0.594901,0.594901,0.594901,0.594901,0.312704,0.312704,29.999992,29.999975,29.999971,29.999986,29.999977,29.999988,30,30,30,30,,,,,,,,,,,2580,2580,1.525386,1.525386,1.525386,1.525386,1.525386,1.525386,1.525386,1.525386,0.594901,0.594901,30,30,, +24713,0,1.180196,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.289918,0.15,4,4.720785,4.720785,4.720785,4.720785,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,,,,,,,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,1.628671,1.628671,1.628671,1.628671,1.628671,1.628671,1.628671,1.628671,0.837939,0.837939,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,4.720785,1.628671,1.628671,15,15,, +34100,0,0.792576,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.170305,3.170305,3.170305,3.170305,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,,,,,,,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,1.093755,1.093755,1.093755,1.093755,1.093755,1.093755,1.093755,1.093755,0.562729,0.562729,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,3.170305,1.093755,1.093755,15,15,, +9596,1,0.573628,2,0,0,1,1,,5,5,E I 94,,1426109,1.626,2.199,0,,1.02,7,0.491681,,0.491681,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.495188,,0.491681,,0.495188,,0.493884,,0.491681,,0.493884,,0.502692,,0.491681,,0.502692,,0.491681,,0.491681,,0.491681,,,,,,,,0.495188,,0.493884,,0.502692,,0.491681,,0.491681,,0.251809,,0.251418,,0.25406,,0.250757,,0.136851,,69.504287,,69.687708,,68.466787,,70,,70,,,,,,,,,,,,15136,,0.491681,,0.491681,,0.491681,,0.491681,,0.250757,,70,,, +9796,1,0.335771,1,0,0,1,1,ROF,5,5,E I 94/Kalmbach,RAMP,1426503,0,0.336,0,,2.24,5,0.503656,,0.503656,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.503656,,0.503656,,0.503656,,0.503656,,0.503656,,0.503656,,0.503656,,0.503656,,0.503656,,0.503656,,0.503656,,0.503656,,,,,,,,0.503656,,0.503656,,0.503656,,0.503656,,0.503656,,0.211536,,0.211536,,0.211536,,0.211536,,0.112483,,40,,40,,40,,40,,40,,,,,,,,,,,,5160,,0.503656,,0.503656,,0.503656,,0.503656,,0.211536,,40,,, +10839,0,0.674602,1,1,0,2,7,GRV,5,5,Garvey,Rd,1450909,0,0.674,0,14.455762,5.55,5,2.023807,2.023807,2.023807,2.023807,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.140976,2.024026,2.023807,2.023807,2.140976,2.024026,2.025257,2.024494,2.023807,2.023807,2.025257,2.024494,2.027024,2.081682,2.023807,2.023807,2.027024,2.081682,2.023807,2.023807,2.023807,2.023807,2.023807,2.023807,,,,,,,2.140976,2.024026,2.025257,2.024494,2.027024,2.081682,2.023807,2.023807,2.023807,2.023807,0.763721,0.728636,0.729006,0.728776,0.729536,0.745933,0.72857,0.72857,0.377777,0.377777,18.905462,19.997836,19.985676,19.993213,19.968257,19.443955,20,20,20,20,,,,,,,,,,,2236,2236,2.023807,2.023807,2.023807,2.023807,2.023807,2.023807,2.023807,2.023807,0.72857,0.72857,20,20,, +24712,0,0.749854,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.068294,0.15,4,2.999415,2.999415,2.999415,2.999415,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,,,,,,,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,1.034798,1.034798,1.034798,1.034798,1.034798,1.034798,1.034798,1.034798,0.532396,0.532396,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,2.999415,1.034798,1.034798,15,15,, +11050,0,0.784257,1,1,0,2,7,GRV,5,5,Hoppe,Rd,1450810,0,0.784,0,16.805516,5.55,5,2.352772,2.352772,2.352772,2.352772,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,,,,,,,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,0.846998,0.846998,0.846998,0.846998,0.846998,0.846998,0.846998,0.846998,0.439184,0.439184,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,2.352772,0.846998,0.846998,20,20,, +9611,1,0.281595,1,0,0,1,1,ROF,5,5,W I 94/Kalmbach,RAMP,1427003,0,0.282,0,,2.24,5,0.422392,,0.422392,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.422392,,0.422392,,0.422392,,0.422394,,0.422392,,0.422394,,0.422476,,0.422392,,0.422476,,0.422392,,0.422392,,0.422392,,,,,,,,0.422392,,0.422394,,0.422476,,0.422392,,0.422392,,0.177405,,0.177405,,0.17743,,0.177405,,0.094334,,39.999967,,39.999823,,39.992097,,40,,40,,,,,,,,,,,,5160,,0.422392,,0.422392,,0.422392,,0.422392,,0.177405,,40,,, +9790,1,0.238255,1,0,0,1,1,RON,5,5,Kalmbach/E I 94,RAMP,1426505,0,0.238,0,,1.09,4,0.317673,,0.317673,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.318048,,0.317673,,0.318048,,0.317687,,0.317673,,0.317687,,0.317692,,0.317673,,0.317692,,0.317673,,0.317673,,0.317673,,,,,,,,0.318048,,0.317687,,0.317692,,0.317673,,0.317673,,0.1383,,0.138192,,0.138193,,0.138188,,0.073859,,44.94702,,44.998057,,44.99739,,45,,45,,,,,,,,,,,,5160,,0.317673,,0.317673,,0.317673,,0.317673,,0.138188,,45,,, +10427,-1,0.484651,0,2,0,1,1,,5,5,W I 94,,1426110,1.677,2.161,0,,1.02,7,,0.415415,,0.415415,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.418073,,0.415415,,0.418073,,0.417334,,0.415415,,0.417334,,0.42521,,0.415415,,0.42521,,0.415415,,0.415415,,0.415415,,,,,,,,0.418073,,0.417334,,0.42521,,0.415415,,0.415415,,0.212659,,0.212437,,0.2148,,0.211862,,0.115624,,69.55502,,69.678207,,68.387484,,70,,70,,,,,,,,,,,,15136,,0.415415,,0.415415,,0.415415,,0.415415,,0.211862,,70,, +21478,0,0.347701,1,1,0,2,7,GRV,5,5,Kalmbach,Rd,4603246,0,0.348,0,7.450728,5.55,5,1.043102,1.043102,1.043102,1.043102,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.103493,1.043215,1.043102,1.043102,1.103493,1.043215,1.043849,1.043456,1.043102,1.043102,1.043849,1.043456,1.04476,1.072932,1.043102,1.043102,1.04476,1.072932,1.043102,1.043102,1.043102,1.043102,1.043102,1.043102,,,,,,,1.103493,1.043215,1.043849,1.043456,1.04476,1.072932,1.043102,1.043102,1.043102,1.043102,0.393634,0.375551,0.375741,0.375623,0.376014,0.384466,0.375517,0.375517,0.194712,0.194712,18.905462,19.997836,19.985676,19.993213,19.968257,19.443955,20,20,20,20,,,,,,,,,,,2236,2236,1.043102,1.043102,1.043102,1.043102,1.043102,1.043102,1.043102,1.043102,0.375517,0.375517,20,20,, +10180,1,0.244312,1,0,0,1,1,RON,5,5,Kalmbach/W I 94,RAMP,1427002,0,0.244,0,,1.09,4,0.325749,,0.325749,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.325749,,0.325749,,0.325749,,0.325749,,0.325749,,0.325749,,0.325749,,0.325749,,0.325749,,0.325749,,0.325749,,0.325749,,,,,,,,0.325749,,0.325749,,0.325749,,0.325749,,0.325749,,0.141701,,0.141701,,0.141701,,0.141701,,0.075737,,44.999997,,44.999998,,44.999993,,45,,45,,,,,,,,,,,,5160,,0.325749,,0.325749,,0.325749,,0.325749,,0.141701,,45,,, +21268,0,0.181964,1,1,0,2,5,,5,5,Kalmbach,Rd,4603246,0.348,0.53,0,3.899236,3.7,5,0.363929,0.363929,0.363929,0.363929,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.363929,0.363954,0.363929,0.363929,0.363929,0.363954,0.363929,0.363997,0.363929,0.363929,0.363929,0.363997,0.363929,0.367384,0.363929,0.363929,0.363929,0.367384,0.363929,0.363929,0.363929,0.363929,0.363929,0.363929,,,,,,,0.363929,0.363954,0.363929,0.363997,0.363929,0.367384,0.363929,0.363929,0.363929,0.363929,0.141932,0.14194,0.141932,0.141953,0.141932,0.142969,0.141932,0.141932,0.074605,0.074605,29.999996,29.997933,29.999998,29.994358,29.99999,29.717824,30,30,30,30,,,,,,,,,,,2580,2580,0.363929,0.363929,0.363929,0.363929,0.363929,0.363929,0.363929,0.363929,0.141932,0.141932,30,30,, +11146,0,1.100111,1,1,0,2,6,,5,5,Cavanaugh Lake,Rd,1436509,0.904,2.004,0,23.573807,5.8,6,2.200222,2.200222,2.200222,2.200222,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.200226,2.200223,2.200222,2.200222,2.200226,2.200223,2.200223,2.200224,2.200222,2.200222,2.200223,2.200224,2.200225,2.200226,2.200222,2.200222,2.200225,2.200226,2.200222,2.200222,2.200222,2.200222,2.200222,2.200222,,,,,,,2.200226,2.200223,2.200223,2.200224,2.200225,2.200226,2.200222,2.200222,2.200222,2.200222,0.858088,0.858087,0.858087,0.858087,0.858087,0.858088,0.858087,0.858087,0.451046,0.451046,29.999942,29.999987,29.999983,29.999973,29.999965,29.999952,30,30,30,30,,,,,,,,,,,2236,2236,2.200222,2.200222,2.200222,2.200222,2.200222,2.200222,2.200222,2.200222,0.858087,0.858087,30,30,, +21470,0,0.029755,1,1,0,2,5,,5,5,Kalmbach/Cavanaugh Lake,,4604626,0,0.03,0,0.637601,3.7,5,0.059509,0.059509,0.059509,0.059509,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,,,,,,,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.023209,0.023209,0.023209,0.023209,0.023209,0.023209,0.023209,0.023209,0.012199,0.012199,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.059509,0.023209,0.023209,30,30,, +21748,0,0.033211,1,1,0,2,6,,5,5,Kalmbach,Rd,4603246,1.292,1.325,0,0.711658,5.8,6,0.066421,0.066421,0.066421,0.066421,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,,,,,,,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.025904,0.025904,0.025904,0.025904,0.025904,0.025904,0.025904,0.025904,0.013616,0.013616,29.999999,29.999996,29.999995,29.999998,29.999996,29.999998,30,30,30,30,,,,,,,,,,,2236,2236,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.066421,0.025904,0.025904,30,30,, +11144,0,0.037861,1,1,0,2,6,,5,5,Cavanaugh Lake,Rd,1436509,2.004,2.042,0,0.811312,5.8,6,0.075722,0.075722,0.075722,0.075722,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,,,,,,,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.029532,0.029532,0.029532,0.029532,0.029532,0.029532,0.029532,0.029532,0.015523,0.015523,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.075722,0.029532,0.029532,30,30,, +9702,0,0.583977,1,1,0,2,6,,5,5,Grass Lake,Rd,1426009,4.643,5.227,0,12.513786,5.8,6,1.167953,1.167953,1.167953,1.167953,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.168179,1.16796,1.167953,1.167953,1.168179,1.16796,1.167998,1.167966,1.167953,1.167953,1.167998,1.167966,1.168035,1.168069,1.167953,1.167953,1.168035,1.168069,1.167953,1.167953,1.167953,1.167953,1.167953,1.167953,,,,,,,1.168179,1.16796,1.167998,1.167966,1.168035,1.168069,1.167953,1.167953,1.167953,1.167953,0.455569,0.455504,0.455515,0.455506,0.455526,0.455536,0.455502,0.455502,0.23943,0.23943,29.994213,29.999828,29.998841,29.999679,29.997913,29.997043,30,30,30,30,,,,,,,,,,,2236,2236,1.167953,1.167953,1.167953,1.167953,1.167953,1.167953,1.167953,1.167953,0.455502,0.455502,30,30,, +9703,0,1.361362,1,1,0,2,6,,5,5,Grass Lake,Rd,1426009,3.283,4.643,0,29.172042,5.8,6,2.722724,2.722724,2.722724,2.722724,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.722724,2.722725,2.722724,2.722724,2.722724,2.722725,2.722726,2.722725,2.722724,2.722724,2.722726,2.722725,2.722731,2.722724,2.722724,2.722724,2.722731,2.722724,2.722724,2.722724,2.722724,2.722724,2.722724,2.722724,,,,,,,2.722724,2.722725,2.722726,2.722725,2.722731,2.722724,2.722724,2.722724,2.722724,2.722724,1.061862,1.061863,1.061863,1.061863,1.061864,1.061862,1.061862,1.061862,0.558158,0.558158,30,29.999984,29.999978,29.999994,29.999922,30,30,30,30,30,,,,,,,,,,,2236,2236,2.722724,2.722724,2.722724,2.722724,2.722724,2.722724,2.722724,2.722724,1.061862,1.061862,30,30,, +10949,0,1.564852,1,1,0,2,6,GRV,5,5,Sylvan,Rd,1447702,3.122,4.686,0,33.53254,5.55,5,3.755645,3.755645,3.755645,3.755645,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.756924,3.755645,3.755645,3.755645,3.756924,3.755645,3.755645,3.755645,3.755645,3.755645,3.755645,3.755645,3.755645,3.756275,3.755645,3.755645,3.755645,3.756275,3.755645,3.755645,3.755645,3.755645,3.755645,3.755645,,,,,,,3.756924,3.755645,3.755645,3.755645,3.755645,3.756275,3.755645,3.755645,3.755645,3.755645,1.408751,1.408367,1.408367,1.408367,1.408367,1.408556,1.408367,1.408367,0.73548,0.73548,24.991484,25,25,25,25,24.995807,25,25,25,25,,,,,,,,,,,2236,2236,3.755645,3.755645,3.755645,3.755645,3.755645,3.755645,3.755645,3.755645,1.408367,1.408367,25,25,, +9867,0,1.318022,1,1,0,2,4,,5,5,M 52,,1425710,12.843,14.16,0,28.243319,3,4,1.977032,1.977032,1.977032,1.977032,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.493269,2.059719,1.977032,1.977032,2.493269,2.059719,2.095594,2.043795,1.977032,1.977032,2.095594,2.043795,2.326877,2.489128,1.977032,1.977032,2.326877,2.489128,1.977032,1.977032,1.977032,1.977032,1.977032,1.977032,,,,,,,2.493269,2.059719,2.095594,2.043795,2.326877,2.489128,1.977032,1.977032,1.977032,1.977032,0.985225,0.85516,0.865922,0.850382,0.935307,0.983982,0.830354,0.830354,0.441537,0.441537,31.71791,38.394208,37.736937,38.693357,33.986017,31.770684,40,40,40,40,,,,,,,,,,,3096,3096,1.977032,1.977032,1.977032,1.977032,1.977032,1.977032,1.977032,1.977032,0.830354,0.830354,40,40,, +9846,0,0.508827,1,1,0,2,4,,5,5,M 52,,1425710,14.16,14.669,0,10.903429,3,4,0.76324,0.76324,0.76324,0.76324,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.978452,0.795541,0.76324,0.76324,0.978452,0.795541,0.810202,0.788998,0.76324,0.76324,0.810202,0.788998,0.906944,0.976857,0.76324,0.76324,0.906944,0.976857,0.76324,0.76324,0.76324,0.76324,0.76324,0.76324,,,,,,,0.978452,0.795541,0.810202,0.788998,0.906944,0.976857,0.76324,0.76324,0.76324,0.76324,0.385124,0.330251,0.334649,0.328288,0.363672,0.384646,0.320561,0.320561,0.170457,0.170457,31.201955,38.375882,37.681488,38.694141,33.662057,31.252881,40,40,40,40,,,,,,,,,,,3096,3096,0.76324,0.76324,0.76324,0.76324,0.76324,0.76324,0.76324,0.76324,0.320561,0.320561,40,40,, +9845,0,0.155109,1,1,0,2,4,,5,5,M 52,,1425710,14.669,14.824,0,3.323754,3,4,0.232663,0.232663,0.232663,0.232663,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.297879,0.242372,0.232663,0.232663,0.297879,0.242372,0.246772,0.240459,0.232663,0.232663,0.246772,0.240459,0.275876,0.296654,0.232663,0.232663,0.275876,0.296654,0.232663,0.232663,0.232663,0.232663,0.232663,0.232663,,,,,,,0.297879,0.242372,0.246772,0.240459,0.275876,0.296654,0.232663,0.232663,0.232663,0.232663,0.117283,0.100631,0.101951,0.100057,0.110682,0.116916,0.097718,0.097718,0.051961,0.051961,31.242539,38.39756,37.712933,38.703061,33.73435,31.371639,40,40,40,40,,,,,,,,,,,3096,3096,0.232663,0.232663,0.232663,0.232663,0.232663,0.232663,0.232663,0.232663,0.097718,0.097718,40,40,, +9575,1,1.920738,2,0,0,1,1,,5,5,E I 94,,1426109,3.611,5.531,0,,1.02,7,1.646346,,1.646346,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.696235,,1.646346,,1.696235,,1.661744,,1.646346,,1.661744,,1.712248,,1.646346,,1.712248,,1.646346,,1.646346,,1.646346,,,,,,,,1.696235,,1.661744,,1.712248,,1.646346,,1.646346,,0.854603,,0.844256,,0.859407,,0.839637,,0.458233,,67.941192,,69.35139,,67.305831,,70,,70,,,,,,,,,,,,15136,,1.646346,,1.646346,,1.646346,,1.646346,,0.839637,,70,,, +9697,0,2.392452,1,1,0,2,5,,5,5,Old US 12,,1426508,3.761,6.153,0,51.266823,3.7,5,4.784904,4.784904,4.784904,4.784904,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.786637,4.784931,4.784904,4.784904,4.786637,4.784931,4.784919,4.784904,4.784904,4.784904,4.784919,4.784904,4.786979,4.789556,4.784904,4.784904,4.786979,4.789556,4.784904,4.784904,4.784904,4.784904,4.784904,4.784904,,,,,,,4.786637,4.784931,4.784919,4.784904,4.786979,4.789556,4.784904,4.784904,4.784904,4.784904,1.866632,1.866121,1.866117,1.866112,1.866735,1.867508,1.866112,1.866112,0.980905,0.980905,29.989134,29.999829,29.999903,30,29.986991,29.970858,30,30,30,30,,,,,,,,,,,2580,2580,4.784904,4.784904,4.784904,4.784904,4.784904,4.784904,4.784904,4.784904,1.866112,1.866112,30,30,, +9788,0,0.497092,1,1,0,2,4,,5,5,Main,St,1425710,17.132,17.629,0,10.651972,3,4,0.745638,0.745638,0.745638,0.745638,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.769903,0.759695,0.745638,0.745638,0.769903,0.759695,0.756467,0.760098,0.745638,0.745638,0.756467,0.760098,0.763583,0.773973,0.745638,0.745638,0.763583,0.773973,0.745638,0.745638,0.745638,0.745638,0.745638,0.745638,,,,,,,0.769903,0.759695,0.756467,0.760098,0.763583,0.773973,0.745638,0.745638,0.745638,0.745638,0.320447,0.317385,0.316417,0.317506,0.318551,0.321668,0.313168,0.313168,0.166526,0.166526,38.739336,39.259865,39.427411,39.239068,39.059966,38.535616,40,40,40,40,,,,,,,,,,,3096,3096,0.745638,0.745638,0.745638,0.745638,0.745638,0.745638,0.745638,0.745638,0.313168,0.313168,40,40,, +10402,-1,1.623258,0,2,0,1,1,,5,5,W I 94,,1426110,3.503,5.125,0,,1.02,7,,1.391364,,1.391364,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.40817,,1.391364,,1.40817,,1.40651,,1.391364,,1.40651,,1.489085,,1.391364,,1.489085,,1.391364,,1.391364,,1.391364,,,,,,,,1.40817,,1.40651,,1.489085,,1.391364,,1.391364,,0.714637,,0.714139,,0.738912,,0.709596,,0.387263,,69.164579,,69.246189,,65.406263,,70,,70,,,,,,,,,,,,15136,,1.391364,,1.391364,,1.391364,,1.391364,,0.709596,,70,, +10846,0,1.076308,1,1,0,2,6,,5,5,Pierce,Rd,1450902,0,1.076,0,23.063738,5.8,6,2.152616,2.152616,2.152616,2.152616,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.152616,2.152992,2.152616,2.152616,2.152616,2.152992,2.152616,2.152616,2.152616,2.152616,2.152616,2.152616,2.15285,2.152617,2.152616,2.152616,2.15285,2.152617,2.152616,2.152616,2.152616,2.152616,2.152616,2.152616,,,,,,,2.152616,2.152992,2.152616,2.152616,2.15285,2.152617,2.152616,2.152616,2.152616,2.152616,0.83952,0.839633,0.83952,0.83952,0.83959,0.839521,0.83952,0.83952,0.441286,0.441286,29.999997,29.994748,29.999999,30,29.996738,29.999978,30,30,30,30,,,,,,,,,,,2236,2236,2.152616,2.152616,2.152616,2.152616,2.152616,2.152616,2.152616,2.152616,0.83952,0.83952,30,30,, +11211,0,1.064281,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1452508,0.966,2.03,0,22.806019,3.7,5,2.128562,2.128562,2.128562,2.128562,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.128577,2.128562,2.128562,2.128562,2.128577,2.128562,2.128562,2.128562,2.128562,2.128562,2.128562,2.128562,2.128562,2.128564,2.128562,2.128562,2.128562,2.128564,2.128562,2.128562,2.128562,2.128562,2.128562,2.128562,,,,,,,2.128577,2.128562,2.128562,2.128562,2.128562,2.128564,2.128562,2.128562,2.128562,2.128562,0.830144,0.830139,0.830139,0.830139,0.830139,0.83014,0.830139,0.830139,0.436355,0.436355,29.99978,30,29.999993,29.999999,29.999995,29.999965,30,30,30,30,,,,,,,,,,,2580,2580,2.128562,2.128562,2.128562,2.128562,2.128562,2.128562,2.128562,2.128562,0.830139,0.830139,30,30,, +11266,0,0.996146,1,1,0,2,6,,5,5,Bush,Rd,1452510,0,0.996,0,21.345985,5.8,6,1.992292,1.992292,1.992292,1.992292,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,,,,,,,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,0.776994,0.776994,0.776994,0.776994,0.776994,0.776994,0.776994,0.776994,0.40842,0.40842,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,1.992292,0.776994,0.776994,30,30,, +24721,0,0.814095,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.444896,0.15,4,3.256381,3.256381,3.256381,3.256381,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,,,,,,,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,1.123451,1.123451,1.123451,1.123451,1.123451,1.123451,1.123451,1.123451,0.578008,0.578008,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,3.256381,1.123451,1.123451,15,15,, +24722,0,0.600015,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.857459,0.15,4,2.400059,2.400059,2.400059,2.400059,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,,,,,,,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,0.82802,0.82802,0.82802,0.82802,0.82802,0.82802,0.82802,0.82802,0.42601,0.42601,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,2.400059,0.82802,0.82802,15,15,, +24726,0,0.399374,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.558013,0.15,4,1.597496,1.597496,1.597496,1.597496,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,,,,,,,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,0.551136,0.551136,0.551136,0.551136,0.551136,0.551136,0.551136,0.551136,0.283556,0.283556,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,1.597496,0.551136,0.551136,15,15,, +24736,0,1.279994,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,27.428443,0.15,4,5.119976,5.119976,5.119976,5.119976,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,,,,,,,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,1.766392,1.766392,1.766392,1.766392,1.766392,1.766392,1.766392,1.766392,0.908796,0.908796,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,5.119976,1.766392,1.766392,15,15,, +24739,0,0.30546,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.545573,0.15,4,1.22184,1.22184,1.22184,1.22184,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,,,,,,,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,0.421535,0.421535,0.421535,0.421535,0.421535,0.421535,0.421535,0.421535,0.216877,0.216877,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,1.22184,0.421535,0.421535,15,15,, +9578,1,0.687819,2,0,0,1,1,,5,5,E I 94,,1426109,2.924,3.611,0,,1.02,7,0.589559,,0.589559,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.596327,,0.589559,,0.596327,,0.592882,,0.589559,,0.592882,,0.602253,,0.589559,,0.602253,,0.589559,,0.589559,,0.589559,,,,,,,,0.596327,,0.592882,,0.602253,,0.589559,,0.589559,,0.302706,,0.301672,,0.304483,,0.300675,,0.164094,,69.205551,,69.607649,,68.524649,,70,,70,,,,,,,,,,,,15136,,0.589559,,0.589559,,0.589559,,0.589559,,0.300675,,70,,, +9584,1,0.373705,1,0,0,1,1,RON,5,5,Jackson/E I 94,RAMP,1426509,0,0.374,0,,1.09,4,0.498273,,0.498273,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.499788,,0.498273,,0.499788,,0.498338,,0.498273,,0.498338,,0.498599,,0.498273,,0.498599,,0.498273,,0.498273,,0.498273,,,,,,,,0.499788,,0.498338,,0.498599,,0.498273,,0.498273,,0.217203,,0.216768,,0.216847,,0.216749,,0.115848,,44.86355,,44.994103,,44.97053,,45,,45,,,,,,,,,,,,5160,,0.498273,,0.498273,,0.498273,,0.498273,,0.216749,,45,,, +10337,1,0.200254,1,0,0,1,1,ROF,5,5,W I 94/Jackson,RAMP,1427006,0,0.2,0,,2.24,5,0.300381,,0.300381,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.300404,,0.300381,,0.300404,,0.300393,,0.300381,,0.300393,,0.300863,,0.300381,,0.300863,,0.300381,,0.300381,,0.300381,,,,,,,,0.300404,,0.300393,,0.300863,,0.300381,,0.300381,,0.126167,,0.126164,,0.126305,,0.12616,,0.067085,,39.996923,,39.998358,,39.935847,,40,,40,,,,,,,,,,,,5160,,0.300381,,0.300381,,0.300381,,0.300381,,0.12616,,40,,, +10404,-1,0.430269,0,2,0,1,1,,5,5,W I 94,,1426110,3.073,3.503,0,,1.02,7,,0.368802,,0.368802,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.371245,,0.368802,,0.371245,,0.371152,,0.368802,,0.371152,,0.379606,,0.368802,,0.379606,,0.368802,,0.368802,,0.368802,,,,,,,,0.371245,,0.371152,,0.379606,,0.368802,,0.368802,,0.188822,,0.188794,,0.19133,,0.188089,,0.10265,,69.539327,,69.556618,,68.00773,,70,,70,,,,,,,,,,,,15136,,0.368802,,0.368802,,0.368802,,0.368802,,0.188089,,70,, +9767,0,0.265353,1,1,0,2,5,,5,5,Old US 12,,1426508,3.192,3.457,0,5.686146,3.7,5,0.530707,0.530707,0.530707,0.530707,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.543348,0.532663,0.530707,0.530707,0.543348,0.532663,0.531744,0.531757,0.530707,0.530707,0.531744,0.531757,0.536111,0.551296,0.530707,0.530707,0.536111,0.551296,0.530707,0.530707,0.530707,0.530707,0.530707,0.530707,,,,,,,0.543348,0.532663,0.531744,0.531757,0.536111,0.551296,0.530707,0.530707,0.530707,0.530707,0.210768,0.207562,0.207287,0.207291,0.208597,0.213152,0.206976,0.206976,0.108795,0.108795,29.302038,29.889859,29.9415,29.940754,29.697597,28.879615,30,30,30,30,,,,,,,,,,,2580,2580,0.530707,0.530707,0.530707,0.530707,0.530707,0.530707,0.530707,0.530707,0.206976,0.206976,30,30,, +9786,1,0.341135,1,0,0,1,1,ROF,5,5,E I 94/Jackson,RAMP,1426507,0,0.341,0,,2.24,5,0.511702,,0.511702,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.511706,,0.511702,,0.511706,,0.511702,,0.511702,,0.511702,,0.511711,,0.511702,,0.511711,,0.511702,,0.511702,,0.511702,,,,,,,,0.511706,,0.511702,,0.511711,,0.511702,,0.511702,,0.214916,,0.214915,,0.214918,,0.214915,,0.11428,,39.999711,,39.999996,,39.999309,,40,,40,,,,,,,,,,,,5160,,0.511702,,0.511702,,0.511702,,0.511702,,0.214915,,40,,, +9676,1,0.198207,1,0,0,1,1,RON,5,5,Jackson/W I 94,RAMP,1427005,0.063,0.261,0,,1.09,4,0.264276,,0.264276,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.264277,,0.264276,,0.264277,,0.264276,,0.264276,,0.264276,,0.264305,,0.264276,,0.264305,,0.264276,,0.264276,,0.264276,,,,,,,,0.264277,,0.264276,,0.264305,,0.264276,,0.264276,,0.11496,,0.11496,,0.114969,,0.11496,,0.061444,,44.999804,,45,,44.99497,,45,,45,,,,,,,,,,,,5160,,0.264276,,0.264276,,0.264276,,0.264276,,0.11496,,45,,, +9734,0,0.177203,1,1,0,2,5,,5,5,Old US 12,,1426508,3.51,3.687,0,3.797207,3.7,5,0.354406,0.354406,0.354406,0.354406,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.354703,0.363886,0.354406,0.354406,0.354703,0.363886,0.35441,0.355099,0.354406,0.354406,0.35441,0.355099,0.35483,0.371152,0.354406,0.354406,0.35483,0.371152,0.354406,0.354406,0.354406,0.354406,0.354406,0.354406,,,,,,,0.354703,0.363886,0.35441,0.355099,0.35483,0.371152,0.354406,0.354406,0.354406,0.354406,0.138307,0.141062,0.13822,0.138426,0.138346,0.143242,0.138218,0.138218,0.072653,0.072653,29.974899,29.218463,29.99964,29.941427,29.964134,28.646413,30,30,30,30,,,,,,,,,,,2580,2580,0.354406,0.354406,0.354406,0.354406,0.354406,0.354406,0.354406,0.354406,0.138218,0.138218,30,30,, +9638,0,0.052419,1,1,0,2,5,,5,5,Old US 12,,1426508,3.457,3.51,0,1.123263,3.7,5,0.104838,0.104838,0.104838,0.104838,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.11939,0.105184,0.104838,0.104838,0.11939,0.105184,0.10556,0.105022,0.104838,0.104838,0.10556,0.105022,0.115069,0.108242,0.104838,0.104838,0.115069,0.108242,0.104838,0.104838,0.104838,0.104838,0.104838,0.104838,,,,,,,0.11939,0.105184,0.10556,0.105022,0.115069,0.108242,0.104838,0.104838,0.104838,0.104838,0.045252,0.040991,0.041103,0.040942,0.043956,0.041908,0.040887,0.040887,0.021492,0.021492,26.343461,29.901226,29.79479,29.947528,27.332522,29.056469,30,30,30,30,,,,,,,,,,,2580,2580,0.104838,0.104838,0.104838,0.104838,0.104838,0.104838,0.104838,0.104838,0.040887,0.040887,30,30,, +9705,0,0.011957,1,1,0,2,5,,5,5,Old US 12,,1426508,3.749,3.761,0,0.256213,3.7,5,0.023913,0.023913,0.023913,0.023913,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.023929,0.025597,0.023913,0.023913,0.023929,0.025597,0.023913,0.023975,0.023913,0.023913,0.023913,0.023975,0.023937,0.031544,0.023913,0.023913,0.023937,0.031544,0.023913,0.023913,0.023913,0.023913,0.023913,0.023913,,,,,,,0.023929,0.025597,0.023913,0.023975,0.023937,0.031544,0.023913,0.023913,0.023913,0.023913,0.009331,0.009831,0.009326,0.009345,0.009333,0.011615,0.009326,0.009326,0.004902,0.004902,29.980751,28.026195,29.999726,29.92303,29.969759,22.742427,30,30,30,30,,,,,,,,,,,2580,2580,0.023913,0.023913,0.023913,0.023913,0.023913,0.023913,0.023913,0.023913,0.009326,0.009326,30,30,, +9728,0,0.062332,1,1,0,2,5,,5,5,Old US 12,,1426508,3.687,3.749,0,1.335678,3.7,5,0.124663,0.124663,0.124663,0.124663,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.124743,0.127998,0.124663,0.124663,0.124743,0.127998,0.124664,0.124907,0.124663,0.124663,0.124664,0.124907,0.124789,0.130554,0.124663,0.124663,0.124789,0.130554,0.124663,0.124663,0.124663,0.124663,0.124663,0.124663,,,,,,,0.124743,0.127998,0.124664,0.124907,0.124789,0.130554,0.124663,0.124663,0.124663,0.124663,0.048643,0.049619,0.048619,0.048692,0.048656,0.050386,0.048619,0.048619,0.025556,0.025556,29.980751,29.218463,29.999726,29.941427,29.969759,28.646413,30,30,30,30,,,,,,,,,,,2580,2580,0.124663,0.124663,0.124663,0.124663,0.124663,0.124663,0.124663,0.124663,0.048619,0.048619,30,30,, +10294,1,0.062805,1,0,0,1,1,RON,5,5,Jackson/W I 94,RAMP,1427005,0,0.063,0,,1.09,4,0.08374,,0.08374,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.083741,,0.08374,,0.083741,,0.08374,,0.08374,,0.08374,,0.083749,,0.08374,,0.083749,,0.08374,,0.08374,,0.08374,,,,,,,,0.083741,,0.08374,,0.083749,,0.08374,,0.08374,,0.036427,,0.036427,,0.03643,,0.036427,,0.01947,,44.999876,,45,,44.99561,,45,,45,,,,,,,,,,,,5160,,0.08374,,0.08374,,0.08374,,0.08374,,0.036427,,45,,, +21684,1,0.027262,1,0,0,1,1,RON,5,5,Jackson/W I 94,RAMP,4604623,0,0.027,0,,1.09,4,0.036349,,0.036349,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.036349,,0.036349,,0.036349,,0.036349,,0.036349,,0.036349,,0.036349,,0.036349,,0.036349,,0.036349,,0.036349,,0.036349,,,,,,,,0.036349,,0.036349,,0.036349,,0.036349,,0.036349,,0.015812,,0.015812,,0.015812,,0.015812,,0.008451,,45,,45,,45,,45,,45,,,,,,,,,,,,5160,,0.036349,,0.036349,,0.036349,,0.036349,,0.015812,,45,,, +11048,0,1.266825,1,1,0,2,6,,5,5,Pierce,Rd,1450902,1.076,2.342,0,27.146257,5.8,6,2.533651,2.533651,2.533651,2.533651,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,2.533652,2.533651,2.533651,2.533651,2.533652,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,,,,,,,2.533651,2.533651,2.533651,2.533651,2.533652,2.533651,2.533651,2.533651,2.533651,2.533651,0.988124,0.988124,0.988124,0.988124,0.988124,0.988124,0.988124,0.988124,0.519398,0.519398,30,29.999997,30,30,29.999986,29.999996,30,30,30,30,,,,,,,,,,,2236,2236,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,2.533651,0.988124,0.988124,30,30,, +11053,0,0.771992,1,1,0,2,6,,5,5,Bush,Rd,1452510,0.996,1.767,0,16.542684,5.8,6,1.543984,1.543984,1.543984,1.543984,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,,,,,,,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,0.602154,0.602154,0.602154,0.602154,0.602154,0.602154,0.602154,0.602154,0.316517,0.316517,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,1.543984,0.602154,0.602154,30,30,, +11126,0,0.722033,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1436509,3.293,4.015,0,15.472132,3.7,5,1.444066,1.444066,1.444066,1.444066,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.444066,1.44425,1.444066,1.444066,1.444066,1.44425,1.444066,1.444066,1.444066,1.444066,1.444066,1.444066,1.444155,1.444066,1.444066,1.444066,1.444155,1.444066,1.444066,1.444066,1.444066,1.444066,1.444066,1.444066,,,,,,,1.444066,1.44425,1.444066,1.444066,1.444155,1.444066,1.444066,1.444066,1.444066,1.444066,0.563186,0.563241,0.563186,0.563186,0.563212,0.563186,0.563186,0.563186,0.296033,0.296033,29.999991,29.996182,29.999998,29.999998,29.998154,29.999989,30,30,30,30,,,,,,,,,,,2580,2580,1.444066,1.444066,1.444066,1.444066,1.444066,1.444066,1.444066,1.444066,0.563186,0.563186,30,30,, +11371,0,0.069409,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1452508,0.896,0.966,0,1.487341,3.7,5,0.138818,0.138818,0.138818,0.138818,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.138819,0.138836,0.138818,0.138818,0.138819,0.138836,0.138818,0.138818,0.138818,0.138818,0.138818,0.138818,0.138827,0.138819,0.138818,0.138818,0.138827,0.138819,0.138818,0.138818,0.138818,0.138818,0.138818,0.138818,,,,,,,0.138819,0.138836,0.138818,0.138818,0.138827,0.138819,0.138818,0.138818,0.138818,0.138818,0.054139,0.054145,0.054139,0.054139,0.054142,0.054139,0.054139,0.054139,0.028458,0.028458,29.999991,29.996182,29.999998,29.999998,29.998154,29.999989,30,30,30,30,,,,,,,,,,,2580,2580,0.138818,0.138818,0.138818,0.138818,0.138818,0.138818,0.138818,0.138818,0.054139,0.054139,30,30,, +9802,0,0.905252,1,1,0,2,4,,5,5,M 52,,1425710,15.701,16.606,0,19.39825,3,4,1.357878,1.357878,1.357878,1.357878,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.91317,1.528569,1.357878,1.357878,1.91317,1.528569,1.509385,1.449255,1.357878,1.357878,1.509385,1.449255,1.906244,1.958931,1.357878,1.357878,1.906244,1.958931,1.357878,1.357878,1.357878,1.357878,1.357878,1.357878,,,,,,,1.91317,1.528569,1.509385,1.449255,1.906244,1.958931,1.357878,1.357878,1.357878,1.357878,0.736896,0.621516,0.615761,0.597722,0.734819,0.750624,0.570309,0.570309,0.303259,0.303259,28.390103,35.533306,35.984923,37.477933,28.493253,27.726915,40,40,40,40,,,,,,,,,,,3096,3096,1.357878,1.357878,1.357878,1.357878,1.357878,1.357878,1.357878,1.357878,0.570309,0.570309,40,40,, +29977,0,0.758564,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.254934,0.15,4,3.034254,3.034254,3.034254,3.034254,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,,,,,,,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,1.046818,1.046818,1.046818,1.046818,1.046818,1.046818,1.046818,1.046818,0.53858,0.53858,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,3.034254,1.046818,1.046818,15,15,, +9573,1,0.346292,2,0,0,1,1,,5,5,E I 94,,1426109,5.531,5.878,0,,1.02,7,0.296821,,0.296821,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.300486,,0.296821,,0.300486,,0.297832,,0.296821,,0.297832,,0.301602,,0.296821,,0.301602,,0.296821,,0.296821,,0.296821,,,,,,,,0.300486,,0.297832,,0.301602,,0.296821,,0.296821,,0.152478,,0.151682,,0.152813,,0.151379,,0.082615,,69.146341,,69.762526,,68.890559,,70,,70,,,,,,,,,,,,15136,,0.296821,,0.296821,,0.296821,,0.296821,,0.151379,,70,,, +9603,1,0.310352,1,0,0,1,1,ROF,5,5,E I 94/M 52,RAMP,1426108,0,0.31,0,,2.24,5,0.465527,,0.465527,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.465992,,0.465527,,0.465992,,0.465876,,0.465527,,0.465876,,0.466132,,0.465527,,0.466132,,0.465527,,0.465527,,0.465527,,,,,,,,0.465992,,0.465876,,0.466132,,0.465527,,0.465527,,0.195661,,0.195626,,0.195703,,0.195521,,0.103968,,39.960113,,39.970076,,39.948088,,40,,40,,,,,,,,,,,,5160,,0.465527,,0.465527,,0.465527,,0.465527,,0.195521,,40,,, +9616,1,0.473974,1,0,0,1,1,RON,5,5,M 52/E I 94,RAMP,1426107,0,0.474,0,,1.09,4,0.631965,,0.631965,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.645177,,0.631965,,0.645177,,0.632953,,0.631965,,0.632953,,0.638283,,0.631965,,0.638283,,0.631965,,0.631965,,0.631965,,,,,,,,0.645177,,0.632953,,0.638283,,0.631965,,0.631965,,0.278868,,0.275201,,0.2768,,0.274905,,0.146932,,44.078506,,44.929736,,44.554587,,45,,45,,,,,,,,,,,,5160,,0.631965,,0.631965,,0.631965,,0.631965,,0.274905,,45,,, +9792,0,0.202713,1,1,0,2,4,,5,5,Main,St,1425710,16.858,17.061,0,4.343857,3,4,0.30407,0.30407,0.30407,0.30407,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.469932,0.502166,0.30407,0.30407,0.469932,0.502166,0.352164,0.372201,0.30407,0.30407,0.352164,0.372201,0.49208,0.508665,0.30407,0.30407,0.49208,0.508665,0.30407,0.30407,0.30407,0.30407,0.30407,0.30407,,,,,,,0.469932,0.502166,0.352164,0.372201,0.49208,0.508665,0.30407,0.30407,0.30407,0.30407,0.177468,0.187138,0.142138,0.148149,0.184112,0.189088,0.127709,0.127709,0.067909,0.067909,25.882015,24.220697,34.537277,32.678,24.71711,23.91122,40,40,40,40,,,,,,,,,,,3096,3096,0.30407,0.30407,0.30407,0.30407,0.30407,0.30407,0.30407,0.30407,0.127709,0.127709,40,40,, +9797,0,0.231726,1,1,0,2,4,,5,5,Main,St,1425710,16.617,16.848,0,4.965547,3,4,0.347588,0.347588,0.347588,0.347588,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.423517,0.510149,0.347588,0.347588,0.423517,0.510149,0.397455,0.375261,0.347588,0.347588,0.397455,0.375261,0.445889,0.610341,0.347588,0.347588,0.445889,0.610341,0.347588,0.347588,0.347588,0.347588,0.347588,0.347588,,,,,,,0.423517,0.510149,0.397455,0.375261,0.445889,0.610341,0.347588,0.347588,0.347588,0.347588,0.168766,0.194755,0.160947,0.154289,0.175477,0.224813,0.145987,0.145987,0.077628,0.077628,32.828754,27.253858,34.981366,37.050301,31.181594,22.779947,40,40,40,40,,,,,,,,,,,3096,3096,0.347588,0.347588,0.347588,0.347588,0.347588,0.347588,0.347588,0.347588,0.145987,0.145987,40,40,, +10167,1,0.418063,1,0,0,1,1,RON,5,5,M 52/W I 94,RAMP,1426202,0,0.418,0,,1.09,4,0.557417,,0.557417,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.558653,,0.557417,,0.558653,,0.559091,,0.557417,,0.559091,,0.559582,,0.557417,,0.559582,,0.557417,,0.557417,,0.557417,,,,,,,,0.558653,,0.559091,,0.559582,,0.557417,,0.557417,,0.242847,,0.242979,,0.243126,,0.242477,,0.1296,,44.90048,,44.865263,,44.825947,,45,,45,,,,,,,,,,,,5160,,0.557417,,0.557417,,0.557417,,0.557417,,0.242477,,45,,, +40029,1,0.069633,3,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,4.993,5.062,0,1.492127,3.7,5,0.092843,,0.092843,,45,,33000,,7491,,16500,,10646,,11352,,11339,,0.093447,,0.092843,,0.093447,,0.093117,,0.092843,,0.093117,,0.094269,,0.092843,,0.094269,,0.092843,,0.092843,,0.092843,,,,,,,,0.093447,,0.093117,,0.094269,,0.092843,,0.092843,,0.040568,,0.040469,,0.040815,,0.040387,,0.021586,,44.70951,,44.86795,,44.319494,,45,,45,,,,,,,,,,,,11352,,0.092843,,0.092843,,0.092843,,0.092843,,0.040387,,45,,, +10177,1,0.298735,1,0,0,1,1,ROF,5,5,W I 94/M 52,RAMP,1426201,0,0.299,0,,2.24,5,0.448102,,0.448102,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.449293,,0.448102,,0.449293,,0.448224,,0.448102,,0.448224,,0.45193,,0.448102,,0.45193,,0.448102,,0.448102,,0.448102,,,,,,,,0.449293,,0.448224,,0.45193,,0.448102,,0.448102,,0.18856,,0.188239,,0.189351,,0.188203,,0.100076,,39.894023,,39.989197,,39.661206,,40,,40,,,,,,,,,,,,5160,,0.448102,,0.448102,,0.448102,,0.448102,,0.188203,,40,,, +24740,0,0.284636,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.09934,0.15,4,1.138543,1.138543,1.138543,1.138543,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,,,,,,,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,0.392798,0.392798,0.392798,0.392798,0.392798,0.392798,0.392798,0.392798,0.202091,0.202091,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,1.138543,0.392798,0.392798,15,15,, +10401,-1,0.294756,0,2,0,1,1,,5,5,W I 94,,1426110,5.125,5.42,0,,1.02,7,,0.252648,,0.252648,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.253741,,0.252648,,0.253741,,0.253534,,0.252648,,0.253534,,0.259781,,0.252648,,0.259781,,0.252648,,0.252648,,0.252648,,,,,,,,0.253741,,0.253534,,0.259781,,0.252648,,0.252648,,0.129178,,0.129116,,0.13099,,0.12885,,0.07032,,69.698481,,69.755365,,68.077838,,70,,70,,,,,,,,,,,,15136,,0.252648,,0.252648,,0.252648,,0.252648,,0.12885,,70,, +40030,-1,0.034538,0,2,0,2,3,,4,3,Orchard Lake,Rd,5499978,0.062,0.097,0,0.740101,3.7,5,,0.051807,,0.051807,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.054157,,0.051807,,0.054157,,0.05232,,0.051807,,0.05232,,0.053558,,0.051807,,0.053558,,0.051807,,0.051807,,0.051807,,,,,,,,0.054157,,0.05232,,0.053558,,0.051807,,0.051807,,0.022464,,0.021913,,0.022284,,0.021759,,0.01157,,38.264157,,39.607557,,38.692621,,40,,40,,,,,,,,,,,,7568,,0.051807,,0.051807,,0.051807,,0.051807,,0.021759,,40,, +40022,1,0.006358,3,0,0,2,3,,4,3,Orchard Lake,Rd,634003,4.937,4.943,0,0.136236,3.7,5,0.009537,,0.009537,,40,,33000,,7491,,16500,,10646,,11352,,11339,,0.010371,,0.009537,,0.010371,,0.009797,,0.009537,,0.009797,,0.011022,,0.009537,,0.011022,,0.009537,,0.009537,,0.009537,,,,,,,,0.010371,,0.009797,,0.011022,,0.009537,,0.009537,,0.004256,,0.004083,,0.004451,,0.004005,,0.00213,,36.782995,,38.938496,,34.609174,,40,,40,,,,,,,,,,,,11352,,0.009537,,0.009537,,0.009537,,0.009537,,0.004005,,40,,, +39957,1,0.155169,3,0,0,2,5,,3,1,Riverbank,Rd,5494511,0,0.155,0,3.325045,8,4.5,0.372405,,0.372405,,25,,21000,,4767,,10500,,6775,,7224,,7216,,0.372405,,0.372405,,0.372405,,0.372405,,0.372405,,0.372405,,0.372405,,0.372405,,0.372405,,0.372405,,0.372405,,0.372405,,,,,,,,0.372405,,0.372405,,0.372405,,0.372405,,0.372405,,0.139652,,0.139652,,0.139652,,0.139652,,0.072929,,25,,25,,25,,25,,25,,,,,,,,,,,,7224,,0.372405,,0.372405,,0.372405,,0.372405,,0.139652,,25,,, +40028,1,0.0189,2,0,0,2,3,,4,3,Orchard Lake,Rd,634003,4.974,4.993,0,0.405005,3.7,5,0.02835,,0.02835,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.029857,,0.02835,,0.029857,,0.029073,,0.02835,,0.029073,,0.036187,,0.02835,,0.036187,,0.02835,,0.02835,,0.02835,,,,,,,,0.029857,,0.029073,,0.036187,,0.02835,,0.02835,,0.012359,,0.012124,,0.014258,,0.011907,,0.006332,,37.981355,,39.005198,,31.337742,,40,,40,,,,,,,,,,,,7568,,0.02835,,0.02835,,0.02835,,0.02835,,0.011907,,40,,, +9801,0,0.010532,1,1,0,2,4,,5,5,M 52,,1425710,16.606,16.617,0,0.225688,3,4,0.015798,0.015798,0.015798,0.015798,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.015956,0.027528,0.015798,0.015798,0.015956,0.027528,0.015862,0.017988,0.015798,0.015798,0.015862,0.017988,0.015995,0.033688,0.015798,0.015798,0.015995,0.033688,0.015798,0.015798,0.015798,0.015798,0.015798,0.015798,,,,,,,0.015956,0.027528,0.015862,0.017988,0.015995,0.033688,0.015798,0.015798,0.015798,0.015798,0.006683,0.010154,0.006654,0.007292,0.006694,0.012002,0.006635,0.006635,0.003528,0.003528,39.603967,22.955632,39.839546,35.130055,39.507212,18.758052,40,40,40,40,,,,,,,,,,,3096,3096,0.015798,0.015798,0.015798,0.015798,0.015798,0.015798,0.015798,0.015798,0.006635,0.006635,40,40,, +39944,-1,0.050994,0,2,0,2,5,,1,1,S I 375 Service Drive,,5491063,0,0.051,0,1.092729,8.5,4.5,,0.152982,,0.152982,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.152982,,0.152982,,0.152982,,0.152982,,0.152982,,0.152982,,0.152982,,0.152982,,0.152982,,0.152982,,0.152982,,0.152982,,,,,,,,0.152982,,0.152982,,0.152982,,0.152982,,0.152982,,0.055074,,0.055074,,0.055074,,0.055074,,0.028557,,20,,20,,20,,20,,20,,,,,,,,,,,,4128,,0.152982,,0.152982,,0.152982,,0.152982,,0.055074,,20,, +9794,0,0.009861,1,1,0,2,4,,5,5,Main,St,1425710,16.848,16.858,0,0.21131,3,4,0.014792,0.014792,0.014792,0.014792,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.02616,0.015789,0.014792,0.014792,0.02616,0.015789,0.018527,0.014863,0.014792,0.014792,0.018527,0.014863,0.029076,0.01554,0.014792,0.014792,0.029076,0.01554,0.014792,0.014792,0.014792,0.014792,0.014792,0.014792,,,,,,,0.02616,0.015789,0.018527,0.014863,0.029076,0.01554,0.014792,0.014792,0.014792,0.014792,0.009623,0.006512,0.007333,0.006234,0.010498,0.006437,0.006213,0.006213,0.003303,0.003303,22.616957,37.473854,31.935704,39.80747,20.349014,38.073122,40,40,40,40,,,,,,,,,,,3096,3096,0.014792,0.014792,0.014792,0.014792,0.014792,0.014792,0.014792,0.014792,0.006213,0.006213,40,40,, +9789,0,0.071138,1,1,0,2,4,,5,5,Main,St,1425710,17.061,17.132,0,1.524387,3,4,0.106707,0.106707,0.106707,0.106707,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.136623,0.155005,0.106707,0.106707,0.136623,0.155005,0.116414,0.121222,0.106707,0.106707,0.116414,0.121222,0.146284,0.14535,0.106707,0.106707,0.146284,0.14535,0.106707,0.106707,0.106707,0.106707,0.106707,0.106707,,,,,,,0.136623,0.155005,0.116414,0.121222,0.146284,0.14535,0.106707,0.106707,0.106707,0.106707,0.053792,0.059306,0.047729,0.049171,0.05669,0.05641,0.044817,0.044817,0.023831,0.023831,31.241311,27.536498,36.66478,35.21049,29.178076,29.365502,40,40,40,40,,,,,,,,,,,3096,3096,0.106707,0.106707,0.106707,0.106707,0.106707,0.106707,0.106707,0.106707,0.044817,0.044817,40,40,, +24725,0,0.308619,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.613271,0.15,4,1.234477,1.234477,1.234477,1.234477,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,,,,,,,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,0.425895,0.425895,0.425895,0.425895,0.425895,0.425895,0.425895,0.425895,0.21912,0.21912,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,1.234477,0.425895,0.425895,15,15,, +9774,0,0.140256,1,1,0,2,4,,5,5,Main,St,1425710,18.419,18.559,0,3.005477,3,4,0.210383,0.210383,0.210383,0.210383,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.221686,0.336709,0.210383,0.210383,0.221686,0.336709,0.224391,0.231413,0.210383,0.210383,0.224391,0.231413,0.334267,0.248231,0.210383,0.210383,0.334267,0.248231,0.210383,0.210383,0.210383,0.210383,0.210383,0.210383,,,,,,,0.221686,0.336709,0.224391,0.231413,0.334267,0.248231,0.210383,0.210383,0.210383,0.210383,0.091752,0.126259,0.092563,0.09467,0.125526,0.099715,0.088361,0.088361,0.046986,0.046986,37.960653,24.992925,37.502999,36.364974,25.175461,33.901281,40,40,40,40,,,,,,,,,,,3096,3096,0.210383,0.210383,0.210383,0.210383,0.210383,0.210383,0.210383,0.210383,0.088361,0.088361,40,40,, +10145,0,0.262935,1,1,0,2,5,,4,5,Middle,St,1426303,0,0.263,0,5.634327,5.8,4.5,0.584301,0.584301,0.584301,0.584301,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.584326,0.584301,0.584301,0.584301,0.584326,0.584301,0.584302,0.584301,0.584301,0.584301,0.584302,0.584301,0.584301,0.584305,0.584301,0.584301,0.584301,0.584305,0.584301,0.584301,0.584301,0.584301,0.584301,0.584301,,,,,,,0.584326,0.584301,0.584302,0.584301,0.584301,0.584305,0.584301,0.584301,0.584301,0.584301,0.222626,0.222619,0.222619,0.222619,0.222619,0.22262,0.222619,0.222619,0.116568,0.116568,26.998846,26.999997,26.99995,26.999991,26.999961,26.999782,27,27,27,27,,,,,,,,,,,2580,2580,0.584301,0.584301,0.584301,0.584301,0.584301,0.584301,0.584301,0.584301,0.222619,0.222619,27,27,, +11504,0,0.324407,1,1,0,2,6,,5,5,Sibley,Rd,1452509,0.759,1.084,0,6.951588,5.8,6,0.648815,0.648815,0.648815,0.648815,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.648817,0.648816,0.648815,0.648815,0.648817,0.648816,0.648818,0.648819,0.648815,0.648815,0.648818,0.648819,0.648828,0.648822,0.648815,0.648815,0.648828,0.648822,0.648815,0.648815,0.648815,0.648815,0.648815,0.648815,,,,,,,0.648817,0.648816,0.648818,0.648819,0.648828,0.648822,0.648815,0.648815,0.648815,0.648815,0.253038,0.253038,0.253039,0.253039,0.253042,0.25304,0.253038,0.253038,0.133007,0.133007,29.99992,29.999954,29.99984,29.999828,29.999402,29.999677,30,30,30,30,,,,,,,,,,,2236,2236,0.648815,0.648815,0.648815,0.648815,0.648815,0.648815,0.648815,0.648815,0.253038,0.253038,30,30,, +24743,0,0.461962,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.899194,0.15,4,1.847849,1.847849,1.847849,1.847849,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,,,,,,,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,0.637508,0.637508,0.637508,0.637508,0.637508,0.637508,0.637508,0.637508,0.327993,0.327993,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,1.847849,0.637508,0.637508,15,15,, +24744,0,0.371058,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.951251,0.15,4,1.484233,1.484233,1.484233,1.484233,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,,,,,,,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,0.512061,0.512061,0.512061,0.512061,0.512061,0.512061,0.512061,0.512061,0.263451,0.263451,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,1.484233,0.512061,0.512061,15,15,, +29978,0,0.631518,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.532522,0.15,4,2.526071,2.526071,2.526071,2.526071,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,,,,,,,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,0.871494,0.871494,0.871494,0.871494,0.871494,0.871494,0.871494,0.871494,0.448378,0.448378,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,2.526071,0.871494,0.871494,15,15,, +11026,0,0.073895,1,1,0,2,5,,4,5,Cleveland,St,1452602,0,0.074,0,1.583475,5.8,4.5,0.164212,0.164212,0.164212,0.164212,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.164212,0.164219,0.164212,0.164212,0.164212,0.164219,0.164212,0.164212,0.164212,0.164212,0.164212,0.164212,0.164214,0.164212,0.164212,0.164212,0.164214,0.164212,0.164212,0.164212,0.164212,0.164212,0.164212,0.164212,,,,,,,0.164212,0.164219,0.164212,0.164212,0.164214,0.164212,0.164212,0.164212,0.164212,0.164212,0.062565,0.062567,0.062565,0.062565,0.062565,0.062565,0.062565,0.062565,0.03276,0.03276,26.999997,26.998846,26.999991,26.99995,26.999782,26.999961,27,27,27,27,,,,,,,,,,,2580,2580,0.164212,0.164212,0.164212,0.164212,0.164212,0.164212,0.164212,0.164212,0.062565,0.062565,27,27,, +9696,0,0.254633,1,1,0,2,5,,4,5,Old US 12,,1426508,6.153,6.407,0,5.456416,5.8,4.5,0.565851,0.565851,0.565851,0.565851,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.565877,0.565851,0.565851,0.565851,0.565877,0.565851,0.565851,0.565851,0.565851,0.565851,0.565851,0.565851,0.565853,0.565886,0.565851,0.565851,0.565853,0.565886,0.565851,0.565851,0.565851,0.565851,0.565851,0.565851,,,,,,,0.565877,0.565851,0.565851,0.565851,0.565853,0.565886,0.565851,0.565851,0.565851,0.565851,0.215597,0.215589,0.215589,0.215589,0.21559,0.2156,0.215589,0.215589,0.112887,0.112887,26.998761,27,26.999998,27,26.999883,26.998291,27,27,27,27,,,,,,,,,,,2580,2580,0.565851,0.565851,0.565851,0.565851,0.565851,0.565851,0.565851,0.565851,0.215589,0.215589,27,27,, +9783,0,0.584652,1,1,0,2,4,,4,5,Main,St,1425710,17.629,18.213,0,12.528256,4.5,4.5,0.923135,0.923135,0.923135,0.923135,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.194044,1.38501,0.923135,0.923135,1.194044,1.38501,1.113676,1.133945,0.923135,0.923135,1.113676,1.133945,1.373407,1.324167,0.923135,0.923135,1.373407,1.324167,0.923135,0.923135,0.923135,0.923135,0.923135,0.923135,,,,,,,1.194044,1.38501,1.113676,1.133945,1.373407,1.324167,0.923135,0.923135,0.923135,0.923135,0.463451,0.52074,0.43934,0.445421,0.517259,0.502487,0.382178,0.382178,0.202782,0.202782,29.378404,25.327704,31.49849,30.935472,25.541682,26.491467,38,38,38,38,,,,,,,,,,,3096,3096,0.923135,0.923135,0.923135,0.923135,0.923135,0.923135,0.923135,0.923135,0.382178,0.382178,38,38,, +10129,0,0.316494,1,1,0,2,5,,4,5,Middle,St,1426303,0.429,0.745,0,6.782008,5.8,4.5,0.703319,0.703319,0.703319,0.703319,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.70332,0.704566,0.703319,0.703319,0.70332,0.704566,0.704133,0.703853,0.703319,0.703319,0.704133,0.703853,0.703937,0.703322,0.703319,0.703319,0.703937,0.703322,0.703319,0.703319,0.703319,0.703319,0.703319,0.703319,,,,,,,0.70332,0.704566,0.704133,0.703853,0.703937,0.703322,0.703319,0.703319,0.703319,0.703319,0.267965,0.268339,0.268209,0.268125,0.26815,0.267966,0.267965,0.267965,0.140312,0.140312,26.999988,26.952208,26.968793,26.979535,26.976315,26.999885,27,27,27,27,,,,,,,,,,,2580,2580,0.703319,0.703319,0.703319,0.703319,0.703319,0.703319,0.703319,0.703319,0.267965,0.267965,27,27,, +10149,0,0.412901,1,1,0,2,6,,4,5,Wilkinson,St,1426205,0.184,0.597,0,8.847888,6.55,4.5,0.917559,0.917559,0.917559,0.917559,27,27,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.91797,0.923167,0.917559,0.917559,0.91797,0.923167,0.917617,0.9176,0.917559,0.917559,0.917617,0.9176,0.925296,0.920529,0.917559,0.917559,0.925296,0.920529,0.917559,0.917559,0.917559,0.917559,0.917559,0.917559,,,,,,,0.91797,0.923167,0.917617,0.9176,0.925296,0.920529,0.917559,0.917559,0.917559,0.917559,0.349713,0.351272,0.349607,0.349602,0.351911,0.350481,0.34959,0.34959,0.183053,0.183053,26.987893,26.83597,26.998288,26.998799,26.774224,26.912878,27,27,27,27,,,,,,,,,,,2236,2236,0.917559,0.917559,0.917559,0.917559,0.917559,0.917559,0.917559,0.917559,0.34959,0.34959,27,27,, +24742,0,0.150192,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.218395,0.15,4,0.600767,0.600767,0.600767,0.600767,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,,,,,,,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.207265,0.207265,0.207265,0.207265,0.207265,0.207265,0.207265,0.207265,0.106636,0.106636,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.600767,0.207265,0.207265,15,15,, +30118,0,0.477002,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.221473,0.15,4,1.908008,1.908008,1.908008,1.908008,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,,,,,,,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,0.658263,0.658263,0.658263,0.658263,0.658263,0.658263,0.658263,0.658263,0.338671,0.338671,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,1.908008,0.658263,0.658263,15,15,, +30119,0,0.395511,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.475245,0.15,4,1.582046,1.582046,1.582046,1.582046,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,,,,,,,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,0.545806,0.545806,0.545806,0.545806,0.545806,0.545806,0.545806,0.545806,0.280813,0.280813,14.999999,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,1.582046,0.545806,0.545806,15,15,, +10155,0,0.1845,1,1,0,2,6,,4,5,Wilkinson,St,1426205,0,0.184,0,3.953563,6.55,4.5,0.409999,0.409999,0.409999,0.409999,27,27,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.411511,0.41079,0.409999,0.409999,0.411511,0.41079,0.410037,0.41,0.409999,0.409999,0.410037,0.41,0.418722,0.417678,0.409999,0.409999,0.418722,0.417678,0.409999,0.409999,0.409999,0.409999,0.409999,0.409999,,,,,,,0.411511,0.41079,0.410037,0.41,0.418722,0.417678,0.409999,0.409999,0.409999,0.409999,0.156663,0.156447,0.156221,0.15621,0.158827,0.158513,0.15621,0.15621,0.081795,0.081795,26.900782,26.948014,26.997493,26.99997,26.437535,26.503624,27,27,27,27,,,,,,,,,,,2236,2236,0.409999,0.409999,0.409999,0.409999,0.409999,0.409999,0.409999,0.409999,0.15621,0.15621,27,27,, +10140,0,0.165756,1,1,0,2,5,,4,5,Middle,St,1426303,0.263,0.429,0,3.551913,5.8,4.5,0.368347,0.368347,0.368347,0.368347,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.36844,0.368608,0.368347,0.368347,0.36844,0.368608,0.368354,0.368348,0.368347,0.368347,0.368354,0.368348,0.369134,0.368774,0.368347,0.368347,0.369134,0.368774,0.368347,0.368347,0.368347,0.368347,0.368347,0.368347,,,,,,,0.36844,0.368608,0.368354,0.368348,0.369134,0.368774,0.368347,0.368347,0.368347,0.368347,0.140368,0.140418,0.140342,0.140341,0.140576,0.140468,0.14034,0.14034,0.073485,0.073485,26.993168,26.980878,26.999445,26.999861,26.94242,26.968731,27,27,27,27,,,,,,,,,,,2580,2580,0.368347,0.368347,0.368347,0.368347,0.368347,0.368347,0.368347,0.368347,0.14034,0.14034,27,27,, +24746,0,0.25929,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,5.556208,0.15,4,1.037159,1.037159,1.037159,1.037159,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,,,,,,,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,0.35782,0.35782,0.35782,0.35782,0.35782,0.35782,0.35782,0.35782,0.184096,0.184096,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,1.037159,0.35782,0.35782,15,15,, +9694,0,0.168286,1,1,0,2,5,,4,5,Old US 12,,1426508,6.407,6.575,0,3.606131,5.8,4.5,0.373969,0.373969,0.373969,0.373969,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.373998,0.374337,0.373969,0.373969,0.373998,0.374337,0.375425,0.375024,0.373969,0.373969,0.375425,0.375024,0.378397,0.375852,0.373969,0.373969,0.378397,0.375852,0.373969,0.373969,0.373969,0.373969,0.373969,0.373969,,,,,,,0.373998,0.374337,0.375425,0.375024,0.378397,0.375852,0.373969,0.373969,0.373969,0.373969,0.142491,0.142593,0.142919,0.142799,0.143811,0.143047,0.142482,0.142482,0.074607,0.074607,26.997899,26.973485,26.89529,26.924048,26.684042,26.86473,27,27,27,27,,,,,,,,,,,2580,2580,0.373969,0.373969,0.373969,0.373969,0.373969,0.373969,0.373969,0.373969,0.142482,0.142482,27,27,, +9693,0,0.155888,1,1,0,2,4,,4,5,Old US 12,,1426508,6.575,6.731,0,3.340462,4.5,4.5,0.246139,0.246139,0.246139,0.246139,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.337283,0.302757,0.246139,0.246139,0.337283,0.302757,0.304463,0.302948,0.246139,0.246139,0.304463,0.302948,0.377027,0.392136,0.246139,0.246139,0.377027,0.392136,0.246139,0.246139,0.246139,0.246139,0.246139,0.246139,,,,,,,0.337283,0.302757,0.304463,0.302948,0.377027,0.392136,0.246139,0.246139,0.246139,0.246139,0.129245,0.118887,0.119399,0.118944,0.141168,0.145701,0.101902,0.101902,0.054069,0.054069,27.73132,30.893775,30.720655,30.874276,24.808053,23.852178,38,38,38,38,,,,,,,,,,,3096,3096,0.246139,0.246139,0.246139,0.246139,0.246139,0.246139,0.246139,0.246139,0.101902,0.101902,38,38,, +9780,0,0.20603,1,1,0,2,4,,4,5,Main,St,1425710,18.213,18.419,0,4.414927,4.5,4.5,0.32531,0.32531,0.32531,0.32531,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.42254,0.69051,0.32531,0.32531,0.42254,0.69051,0.409871,0.453012,0.32531,0.32531,0.409871,0.453012,0.697031,0.529304,0.32531,0.32531,0.697031,0.529304,0.32531,0.32531,0.32531,0.32531,0.32531,0.32531,,,,,,,0.42254,0.69051,0.409871,0.453012,0.697031,0.529304,0.32531,0.32531,0.32531,0.32531,0.163848,0.244238,0.160047,0.172989,0.246195,0.195876,0.134678,0.134678,0.07146,0.07146,29.255881,17.902412,30.160209,27.288024,17.734935,23.354829,38,38,38,38,,,,,,,,,,,3096,3096,0.32531,0.32531,0.32531,0.32531,0.32531,0.32531,0.32531,0.32531,0.134678,0.134678,38,38,, +10127,0,0.14066,1,1,0,2,5,,4,5,Middle,St,1426303,0.745,0.886,0,3.014139,5.8,4.5,0.312577,0.312577,0.312577,0.312577,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.315338,0.31535,0.312577,0.312577,0.315338,0.31535,0.317534,0.317377,0.312577,0.312577,0.317534,0.317377,0.326057,0.325376,0.312577,0.312577,0.326057,0.325376,0.312577,0.312577,0.312577,0.312577,0.312577,0.312577,,,,,,,0.315338,0.31535,0.317534,0.317377,0.326057,0.325376,0.312577,0.312577,0.312577,0.312577,0.11992,0.119924,0.120579,0.120532,0.123136,0.122932,0.119092,0.119092,0.062359,0.062359,26.763658,26.762636,26.578499,26.591676,25.883762,25.937965,27,27,27,27,,,,,,,,,,,2580,2580,0.312577,0.312577,0.312577,0.312577,0.312577,0.312577,0.312577,0.312577,0.119092,0.119092,27,27,, +11150,0,0.445575,1,1,0,2,5,,5,5,Sibley,Rd,1452509,1.259,1.705,0,9.548038,3.7,5,0.89115,0.89115,0.89115,0.89115,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.891337,0.891151,0.89115,0.89115,0.891337,0.891151,0.891156,0.891156,0.89115,0.89115,0.891156,0.891156,0.891157,0.891154,0.89115,0.89115,0.891157,0.891154,0.89115,0.89115,0.89115,0.89115,0.89115,0.89115,,,,,,,0.891337,0.891151,0.891156,0.891156,0.891157,0.891154,0.89115,0.89115,0.89115,0.89115,0.347605,0.347549,0.34755,0.34755,0.347551,0.34755,0.347549,0.347549,0.182686,0.182686,29.993717,29.999977,29.999809,29.999814,29.999757,29.999883,30,30,30,30,,,,,,,,,,,2580,2580,0.89115,0.89115,0.89115,0.89115,0.89115,0.89115,0.89115,0.89115,0.347549,0.347549,30,30,, +11367,0,0.176009,1,1,0,2,6,,5,5,Sibley,Rd,1452509,1.084,1.259,0,3.771619,5.8,6,0.352018,0.352018,0.352018,0.352018,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.35202,0.352045,0.352018,0.352018,0.35202,0.352045,0.352024,0.352025,0.352018,0.352018,0.352024,0.352025,0.352096,0.352028,0.352018,0.352018,0.352096,0.352028,0.352018,0.352018,0.352018,0.352018,0.352018,0.352018,,,,,,,0.35202,0.352045,0.352024,0.352025,0.352096,0.352028,0.352018,0.352018,0.352018,0.352018,0.137288,0.137295,0.137289,0.137289,0.13731,0.13729,0.137287,0.137287,0.072164,0.072164,29.999835,29.99771,29.9995,29.999411,29.993355,29.999133,30,30,30,30,,,,,,,,,,,2236,2236,0.352018,0.352018,0.352018,0.352018,0.352018,0.352018,0.352018,0.352018,0.137287,0.137287,30,30,, +9770,0,0.237258,1,1,0,2,4,,5,5,Main,St,1425710,18.824,19.061,0,5.08409,3,4,0.355886,0.355886,0.355886,0.355886,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.371814,0.586893,0.355886,0.355886,0.371814,0.586893,0.372528,0.381604,0.355886,0.355886,0.372528,0.381604,0.61034,0.408049,0.355886,0.355886,0.61034,0.408049,0.355886,0.355886,0.355886,0.355886,0.355886,0.355886,,,,,,,0.371814,0.586893,0.372528,0.381604,0.61034,0.408049,0.355886,0.355886,0.355886,0.355886,0.154251,0.218774,0.154465,0.157187,0.225808,0.165121,0.149472,0.149472,0.079481,0.079481,38.2865,24.255632,38.213156,37.304276,23.323823,34.886604,40,40,40,40,,,,,,,,,,,3096,3096,0.355886,0.355886,0.355886,0.355886,0.355886,0.355886,0.355886,0.355886,0.149472,0.149472,40,40,, +9771,0,0.147294,1,1,0,2,4,,5,5,Main,St,1425710,18.559,18.707,0,3.156305,3,4,0.220941,0.220941,0.220941,0.220941,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.232811,0.353606,0.220941,0.220941,0.232811,0.353606,0.235652,0.243027,0.220941,0.220941,0.235652,0.243027,0.351042,0.260688,0.220941,0.220941,0.351042,0.260688,0.220941,0.220941,0.220941,0.220941,0.220941,0.220941,,,,,,,0.232811,0.353606,0.235652,0.243027,0.351042,0.260688,0.220941,0.220941,0.220941,0.220941,0.096356,0.132595,0.097209,0.099421,0.131826,0.104719,0.092795,0.092795,0.049344,0.049344,37.960653,24.992925,37.502999,36.364974,25.175461,33.901281,40,40,40,40,,,,,,,,,,,3096,3096,0.220941,0.220941,0.220941,0.220941,0.220941,0.220941,0.220941,0.220941,0.092795,0.092795,40,40,, +5713,0,2.05806,1,1,0,2,4,,5,8,M 36,,932408,0,2.057,0,44.101294,3,4,3.087091,3.087091,3.087091,3.087091,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.093862,3.088503,3.087091,3.087091,3.093862,3.088503,3.090523,3.089564,3.087091,3.087091,3.090523,3.089564,3.093807,3.095817,3.087091,3.087091,3.093807,3.095817,3.087091,3.087091,3.087091,3.087091,3.087091,3.087091,,,,,,,3.093862,3.088503,3.090523,3.089564,3.093807,3.095817,3.087091,3.087091,3.087091,3.087091,1.29861,1.297002,1.297608,1.29732,1.298593,1.299196,1.296578,1.296578,0.68945,0.68945,39.912452,39.981711,39.955581,39.967981,39.913162,39.887253,40,40,40,40,,,,,,,,,,,3096,3096,3.087091,3.087091,3.087091,3.087091,3.087091,3.087091,3.087091,3.087091,1.296578,1.296578,40,40,, +5919,0,1.602479,1,1,0,2,5,,5,8,Williamsville,Rd,932302,0,1.602,0,34.338833,3.7,5,3.204958,3.204958,3.204958,3.204958,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.205211,3.206123,3.204958,3.204958,3.205211,3.206123,3.205288,3.205273,3.204958,3.204958,3.205288,3.205273,3.206901,3.205344,3.204958,3.204958,3.206901,3.205344,3.204958,3.204958,3.204958,3.204958,3.204958,3.204958,,,,,,,3.205211,3.206123,3.205288,3.205273,3.206901,3.205344,3.204958,3.204958,3.204958,3.204958,1.25001,1.250283,1.250033,1.250028,1.250516,1.250049,1.249934,1.249934,0.657016,0.657016,29.997626,29.989097,29.996905,29.997051,29.981825,29.996388,30,30,30,30,,,,,,,,,,,2580,2580,3.204958,3.204958,3.204958,3.204958,3.204958,3.204958,3.204958,3.204958,1.249934,1.249934,30,30,, +6597,0,0.990251,1,1,0,2,5,,5,8,Unadilla,Rd,932304,0,0.99,0,21.219657,3.7,5,1.980501,1.980501,1.980501,1.980501,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.980907,1.986125,1.980501,1.980501,1.980907,1.986125,1.980533,1.980526,1.980501,1.980501,1.980533,1.980526,1.989248,1.98088,1.980501,1.980501,1.989248,1.98088,1.980501,1.980501,1.980501,1.980501,1.980501,1.980501,,,,,,,1.980907,1.986125,1.980533,1.980526,1.989248,1.98088,1.980501,1.980501,1.980501,1.980501,0.772517,0.774083,0.772405,0.772403,0.77502,0.772509,0.772396,0.772396,0.406003,0.406003,29.993853,29.91505,29.999524,29.999627,29.868084,29.994268,30,30,30,30,,,,,,,,,,,2580,2580,1.980501,1.980501,1.980501,1.980501,1.980501,1.980501,1.980501,1.980501,0.772396,0.772396,30,30,, +7446,0,0.505372,1,1,0,2,6,GRV,5,8,Roepke,Rd,935903,0,0.505,0,10.829404,5.55,5,1.212893,1.212893,1.212893,1.212893,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.2158,1.220211,1.212893,1.212893,1.2158,1.220211,1.21486,1.215287,1.212893,1.212893,1.21486,1.215287,1.222456,1.22141,1.212893,1.212893,1.222456,1.22141,1.212893,1.212893,1.212893,1.212893,1.212893,1.212893,,,,,,,1.2158,1.220211,1.21486,1.215287,1.222456,1.22141,1.212893,1.212893,1.212893,1.212893,0.455707,0.45703,0.455425,0.455553,0.457704,0.45739,0.454835,0.454835,0.237525,0.237525,24.940237,24.850081,24.959527,24.950754,24.804432,24.825681,25,25,25,25,,,,,,,,,,,2236,2236,1.212893,1.212893,1.212893,1.212893,1.212893,1.212893,1.212893,1.212893,0.454835,0.454835,25,25,, +9741,0,3.119299,1,1,0,2,4,,5,5,M 52,,1425710,24.148,27.266,0,66.84212,3,4,4.678948,4.678948,4.678948,4.678948,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,4.712473,4.711928,4.678948,4.678948,4.712473,4.711928,4.693878,4.693944,4.678948,4.678948,4.693878,4.693944,4.726438,4.726336,4.678948,4.678948,4.726438,4.726336,4.678948,4.678948,4.678948,4.678948,4.678948,4.678948,,,,,,,4.712473,4.711928,4.693878,4.693944,4.726438,4.726336,4.678948,4.678948,4.678948,4.678948,1.975216,1.975052,1.969637,1.969657,1.979405,1.979375,1.965158,1.965158,1.044965,1.044965,39.715438,39.720036,39.872773,39.872211,39.598097,39.598951,40,40,40,40,,,,,,,,,,,3096,3096,4.678948,4.678948,4.678948,4.678948,4.678948,4.678948,4.678948,4.678948,1.965158,1.965158,40,40,, +9748,0,3.272879,1,1,0,2,4,,5,5,M 52,,1425710,20.764,24.036,0,70.133119,3,4,4.909318,4.909318,4.909318,4.909318,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,5.035963,6.335718,4.909318,4.909318,5.035963,6.335718,5.059377,5.114068,4.909318,4.909318,5.059377,5.114068,6.210378,5.32236,4.909318,4.909318,6.210378,5.32236,4.909318,4.909318,4.909318,4.909318,4.909318,4.909318,,,,,,,5.035963,6.335718,5.059377,5.114068,6.210378,5.32236,4.909318,4.909318,4.909318,4.909318,2.099907,2.489834,2.106931,2.123339,2.452232,2.185826,2.061914,2.061914,1.096414,1.096414,38.994081,30.994548,38.813623,38.39854,31.620094,36.895801,40,40,40,40,,,,,,,,,,,3096,3096,4.909318,4.909318,4.909318,4.909318,4.909318,4.909318,4.909318,4.909318,2.061914,2.061914,40,40,, +9817,0,1.642565,1,1,0,2,6,GRV,5,5,Roepke,Rd,1426410,0,1.642,0,35.197811,5.55,5,3.942155,3.942155,3.942155,3.942155,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.953156,4.07176,3.942155,3.942155,3.953156,4.07176,3.954436,3.960692,3.942155,3.942155,3.954436,3.960692,4.076166,3.986202,3.942155,3.942155,4.076166,3.986202,3.942155,3.942155,3.942155,3.942155,3.942155,3.942155,,,,,,,3.953156,4.07176,3.954436,3.960692,4.076166,3.986202,3.942155,3.942155,3.942155,3.942155,1.481608,1.51719,1.481992,1.483869,1.518511,1.491522,1.478308,1.478308,0.772005,0.772005,24.930429,24.204244,24.922361,24.88299,24.17808,24.723751,25,25,25,25,,,,,,,,,,,2236,2236,3.942155,3.942155,3.942155,3.942155,3.942155,3.942155,3.942155,3.942155,1.478308,1.478308,25,25,, +10096,0,2.219474,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,0,2.219,0,47.560164,3.7,5,4.438949,4.438949,4.438949,4.438949,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.439133,4.438988,4.438949,4.438949,4.439133,4.438988,4.438971,4.438969,4.438949,4.438949,4.438971,4.438969,4.43916,4.439254,4.438949,4.438949,4.43916,4.439254,4.438949,4.438949,4.438949,4.438949,4.438949,4.438949,,,,,,,4.439133,4.438988,4.438971,4.438969,4.43916,4.439254,4.438949,4.438949,4.438949,4.438949,1.731245,1.731202,1.731197,1.731196,1.731253,1.731282,1.73119,1.73119,0.909984,0.909984,29.998753,29.999737,29.99985,29.999863,29.998574,29.997938,30,30,30,30,,,,,,,,,,,2580,2580,4.438949,4.438949,4.438949,4.438949,4.438949,4.438949,4.438949,4.438949,1.73119,1.73119,30,30,, +19964,0,2.67045,1,1,0,2,5,,5,5,Waterloo,Rd,3380147,2.387,5.057,0,57.223933,3.7,5,5.3409,5.3409,5.3409,5.3409,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,5.340901,5.3409,5.3409,5.3409,5.340901,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,,,,,,,5.3409,5.3409,5.340901,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,2.082951,2.082951,2.082951,2.082951,2.082951,2.082951,2.082951,2.082951,1.094885,1.094885,30,30,29.999998,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,5.3409,2.082951,2.082951,30,30,, +24658,0,0.90136,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.314864,0.15,4,3.605441,3.605441,3.605441,3.605441,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,,,,,,,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,1.243877,1.243877,1.243877,1.243877,1.243877,1.243877,1.243877,1.243877,0.639966,0.639966,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,3.605441,1.243877,1.243877,15,15,, +24665,0,2.115555,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,45.333317,0.15,4,8.462219,8.462219,8.462219,8.462219,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,,,,,,,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,2.919466,2.919466,2.919466,2.919466,2.919466,2.919466,2.919466,2.919466,1.502044,1.502044,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,8.462219,2.919466,2.919466,15,15,, +24716,0,1.244477,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.667357,0.15,4,4.977907,4.977907,4.977907,4.977907,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,,,,,,,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,1.717378,1.717378,1.717378,1.717378,1.717378,1.717378,1.717378,1.717378,0.883578,0.883578,14.999999,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,4.977907,1.717378,1.717378,15,15,, +24717,0,2.067956,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,44.313337,0.15,4,8.271823,8.271823,8.271823,8.271823,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,,,,,,,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,2.853779,2.853779,2.853779,2.853779,2.853779,2.853779,2.853779,2.853779,1.468249,1.468249,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,8.271823,2.853779,2.853779,15,15,, +24719,0,0.929466,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.917129,0.15,4,3.717864,3.717864,3.717864,3.717864,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,,,,,,,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,1.282663,1.282663,1.282663,1.282663,1.282663,1.282663,1.282663,1.282663,0.659921,0.659921,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,3.717864,1.282663,1.282663,15,15,, +19965,0,1.505734,1,1,0,2,5,,5,5,Waterloo,Rd,3380147,0.882,2.387,0,32.265733,3.7,5,3.011468,3.011468,3.011468,3.011468,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.011474,3.011471,3.011468,3.011468,3.011474,3.011471,3.011469,3.011469,3.011468,3.011468,3.011469,3.011469,3.011479,3.011479,3.011468,3.011468,3.011479,3.011479,3.011468,3.011468,3.011468,3.011468,3.011468,3.011468,,,,,,,3.011474,3.011471,3.011469,3.011469,3.011479,3.011479,3.011468,3.011468,3.011468,3.011468,1.174474,1.174473,1.174473,1.174473,1.174476,1.174476,1.174473,1.174473,0.617351,0.617351,29.999945,29.999974,29.999991,29.999992,29.99989,29.999892,30,30,30,30,,,,,,,,,,,2580,2580,3.011468,3.011468,3.011468,3.011468,3.011468,3.011468,3.011468,3.011468,1.174473,1.174473,30,30,, +34052,0,0.944089,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.776356,3.776356,3.776356,3.776356,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,,,,,,,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,1.302843,1.302843,1.302843,1.302843,1.302843,1.302843,1.302843,1.302843,0.670303,0.670303,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,3.776356,1.302843,1.302843,15,15,, +19966,0,0.709814,1,1,0,2,5,,5,5,Waterloo,Rd,3380147,0.173,0.882,0,15.210295,3.7,5,1.419628,1.419628,1.419628,1.419628,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.419628,1.419628,1.419628,1.419628,1.419628,1.419628,1.419628,1.419628,1.419628,1.419628,1.419628,1.419628,1.419629,1.419629,1.419628,1.419628,1.419629,1.419629,1.419628,1.419628,1.419628,1.419628,1.419628,1.419628,,,,,,,1.419628,1.419628,1.419628,1.419628,1.419629,1.419629,1.419628,1.419628,1.419628,1.419628,0.553655,0.553655,0.553655,0.553655,0.553655,0.553655,0.553655,0.553655,0.291024,0.291024,29.999985,29.999984,29.999994,29.999994,29.999968,29.999968,30,30,30,30,,,,,,,,,,,2580,2580,1.419628,1.419628,1.419628,1.419628,1.419628,1.419628,1.419628,1.419628,0.553655,0.553655,30,30,, +9745,0,0.111672,1,1,0,2,4,,5,5,M 52,,1425710,24.036,24.148,0,2.392972,3,4,0.167508,0.167508,0.167508,0.167508,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.173076,0.18381,0.167508,0.167508,0.173076,0.18381,0.172167,0.173072,0.167508,0.167508,0.172167,0.173072,0.190699,0.181895,0.167508,0.167508,0.190699,0.181895,0.167508,0.167508,0.167508,0.167508,0.167508,0.167508,,,,,,,0.173076,0.18381,0.172167,0.173072,0.190699,0.181895,0.167508,0.167508,0.167508,0.167508,0.072024,0.075244,0.071751,0.072022,0.077311,0.07467,0.070353,0.070353,0.03741,0.03741,38.713159,36.452351,38.917539,38.714151,35.135539,36.836106,40,40,40,40,,,,,,,,,,,3096,3096,0.167508,0.167508,0.167508,0.167508,0.167508,0.167508,0.167508,0.167508,0.070353,0.070353,40,40,, +6187,0,1.794507,1,1,0,2,4,,5,8,M 106,,932205,0,1.794,0,38.453725,3,4,2.691761,2.691761,2.691761,2.691761,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.69206,2.69213,2.691761,2.691761,2.69206,2.69213,2.691949,2.691968,2.691761,2.691761,2.691949,2.691968,2.692201,2.692221,2.691761,2.691761,2.692201,2.692221,2.691761,2.691761,2.691761,2.691761,2.691761,2.691761,,,,,,,2.69206,2.69213,2.691949,2.691968,2.692201,2.692221,2.691761,2.691761,2.691761,2.691761,1.130629,1.13065,1.130596,1.130602,1.130672,1.130678,1.13054,1.13054,0.60116,0.60116,39.995552,39.994517,39.9972,39.996925,39.993456,39.993156,40,40,40,40,,,,,,,,,,,3096,3096,2.691761,2.691761,2.691761,2.691761,2.691761,2.691761,2.691761,2.691761,1.13054,1.13054,40,40,, +34053,0,0.868719,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.474876,3.474876,3.474876,3.474876,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.474876,3.474876,3.474876,3.474876,3.474876,3.474876,3.474876,3.474876,3.474876,3.474876,3.474876,3.474876,3.474877,3.474877,3.474876,3.474876,3.474877,3.474877,3.474876,3.474876,3.474876,3.474876,3.474876,3.474876,,,,,,,3.474876,3.474876,3.474876,3.474876,3.474877,3.474877,3.474876,3.474876,3.474876,3.474876,1.198832,1.198832,1.198832,1.198832,1.198832,1.198832,1.198832,1.198832,0.616791,0.616791,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.474876,3.474876,3.474876,3.474876,3.474876,3.474876,3.474876,3.474876,1.198832,1.198832,15,15,, +9816,0,1.20987,1,1,0,2,6,GRV,5,5,Roepke,Rd,1426410,1.642,2.851,0,25.925778,5.55,5,2.903687,2.903687,2.903687,2.903687,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.910645,2.921205,2.903687,2.903687,2.910645,2.921205,2.908396,2.909418,2.903687,2.903687,2.908396,2.909418,2.926581,2.924076,2.903687,2.903687,2.926581,2.924076,2.903687,2.903687,2.903687,2.903687,2.903687,2.903687,,,,,,,2.910645,2.921205,2.908396,2.909418,2.926581,2.924076,2.903687,2.903687,2.903687,2.903687,1.09097,1.094138,1.090295,1.090602,1.095751,1.094999,1.088883,1.088883,0.568639,0.568639,24.940237,24.850081,24.959527,24.950754,24.804432,24.825681,25,25,25,25,,,,,,,,,,,2236,2236,2.903687,2.903687,2.903687,2.903687,2.903687,2.903687,2.903687,2.903687,1.088883,1.088883,25,25,, +6189,0,0.502622,1,1,0,2,4,,5,8,Doyle,Rd,932208,1.916,2.419,0,10.770472,3,4,0.753933,0.753933,0.753933,0.753933,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.754502,0.754121,0.753933,0.753933,0.754502,0.754121,0.754212,0.754241,0.753933,0.753933,0.754212,0.754241,0.754209,0.754971,0.753933,0.753933,0.754209,0.754971,0.753933,0.753933,0.753933,0.753933,0.753933,0.753933,,,,,,,0.754502,0.754121,0.754212,0.754241,0.754209,0.754971,0.753933,0.753933,0.753933,0.753933,0.316823,0.316708,0.316736,0.316744,0.316735,0.316963,0.316652,0.316652,0.168378,0.168378,39.969828,39.990007,39.985196,39.983662,39.985363,39.94502,40,40,40,40,,,,,,,,,,,3096,3096,0.753933,0.753933,0.753933,0.753933,0.753933,0.753933,0.753933,0.753933,0.316652,0.316652,40,40,, +6907,0,1.005642,1,1,0,2,4,,5,8,M 106,,932303,0.658,1.663,0,21.549478,3,4,1.508463,1.508463,1.508463,1.508463,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.509532,1.5088,1.508463,1.508463,1.509532,1.5088,1.508969,1.509035,1.508463,1.508463,1.508969,1.509035,1.508974,1.510444,1.508463,1.508463,1.508974,1.510444,1.508463,1.508463,1.508463,1.508463,1.508463,1.508463,,,,,,,1.509532,1.5088,1.508969,1.509035,1.508974,1.510444,1.508463,1.508463,1.508463,1.508463,0.633875,0.633656,0.633706,0.633726,0.633708,0.634149,0.633555,0.633555,0.33689,0.33689,39.971682,39.991072,39.986607,39.984851,39.986456,39.947555,40,40,40,40,,,,,,,,,,,3096,3096,1.508463,1.508463,1.508463,1.508463,1.508463,1.508463,1.508463,1.508463,0.633555,0.633555,40,40,, +6188,0,0.491333,1,1,0,2,4,,5,8,Doyle,Rd,932208,1.425,1.916,0,10.528568,3,4,0.737,0.737,0.737,0.737,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.737082,0.737101,0.737,0.737,0.737082,0.737101,0.737051,0.737056,0.737,0.737,0.737051,0.737056,0.73712,0.737126,0.737,0.737,0.73712,0.737126,0.737,0.737,0.737,0.737,0.737,0.737,,,,,,,0.737082,0.737101,0.737051,0.737056,0.73712,0.737126,0.737,0.737,0.737,0.737,0.309564,0.30957,0.309555,0.309557,0.309576,0.309578,0.30954,0.30954,0.164597,0.164597,39.995552,39.994517,39.9972,39.996925,39.993456,39.993156,40,40,40,40,,,,,,,,,,,3096,3096,0.737,0.737,0.737,0.737,0.737,0.737,0.737,0.737,0.30954,0.30954,40,40,, +6908,0,0.116319,1,1,0,2,4,,5,8,M 106,,932303,1.663,1.779,0,2.492552,3,4,0.174479,0.174479,0.174479,0.174479,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.176211,0.178179,0.174479,0.174479,0.176211,0.178179,0.174933,0.174931,0.174479,0.174479,0.174933,0.174931,0.179853,0.176823,0.174479,0.174479,0.179853,0.176823,0.174479,0.174479,0.174479,0.174479,0.174479,0.174479,,,,,,,0.176211,0.178179,0.174933,0.174931,0.179853,0.176823,0.174479,0.174479,0.174479,0.174479,0.073801,0.074391,0.073417,0.073417,0.074893,0.073984,0.073281,0.073281,0.038967,0.038967,39.606766,39.169257,39.896182,39.89647,38.804651,39.469621,40,40,40,40,,,,,,,,,,,3096,3096,0.174479,0.174479,0.174479,0.174479,0.174479,0.174479,0.174479,0.174479,0.073281,0.073281,40,40,, +19926,0,0.273748,1,1,0,2,4,,5,8,Gregory,Rd,4103111,9.384,9.658,0,5.866026,3,4,0.410622,0.410622,0.410622,0.410622,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.420982,0.412569,0.410622,0.410622,0.420982,0.412569,0.411958,0.411668,0.410622,0.410622,0.411958,0.411668,0.415096,0.422939,0.410622,0.410622,0.415096,0.422939,0.410622,0.410622,0.410622,0.410622,0.410622,0.410622,,,,,,,0.420982,0.412569,0.411958,0.411668,0.415096,0.422939,0.410622,0.410622,0.410622,0.410622,0.175569,0.173045,0.172862,0.172775,0.173803,0.176156,0.172461,0.172461,0.091706,0.091706,39.01558,39.811185,39.870243,39.89839,39.568843,38.835129,40,40,40,40,,,,,,,,,,,3096,3096,0.410622,0.410622,0.410622,0.410622,0.410622,0.410622,0.410622,0.410622,0.172461,0.172461,40,40,, +22054,0,0.095879,1,1,0,2,5,,5,5,Werkner,Rd,4603042,0,0.096,0,2.05455,3.7,5,0.191758,0.191758,0.191758,0.191758,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.191768,0.196013,0.191758,0.191758,0.191768,0.196013,0.191762,0.191764,0.191758,0.191758,0.191762,0.191764,0.193478,0.191804,0.191758,0.191758,0.193478,0.191804,0.191758,0.191758,0.191758,0.191758,0.191758,0.191758,,,,,,,0.191768,0.196013,0.191762,0.191764,0.193478,0.191804,0.191758,0.191758,0.191758,0.191758,0.074789,0.076062,0.074787,0.074787,0.075302,0.074799,0.074786,0.074786,0.03931,0.03931,29.99849,29.348745,29.999395,29.999048,29.733266,29.992795,30,30,30,30,,,,,,,,,,,2580,2580,0.191758,0.191758,0.191758,0.191758,0.191758,0.191758,0.191758,0.191758,0.074786,0.074786,30,30,, +10099,0,1.501108,1,1,0,2,5,,5,5,Werkner,Rd,1426404,1.627,3.127,0,32.166591,3.7,5,3.002215,3.002215,3.002215,3.002215,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.002366,3.068835,3.002215,3.002215,3.002366,3.068835,3.002276,3.00231,3.002215,3.002215,3.002276,3.00231,3.029148,3.002936,3.002215,3.002215,3.029148,3.002936,3.002215,3.002215,3.002215,3.002215,3.002215,3.002215,,,,,,,3.002366,3.068835,3.002276,3.00231,3.029148,3.002936,3.002215,3.002215,3.002215,3.002215,1.170909,1.19085,1.170882,1.170892,1.178944,1.17108,1.170864,1.170864,0.615454,0.615454,29.99849,29.348745,29.999395,29.999048,29.733266,29.992795,30,30,30,30,,,,,,,,,,,2580,2580,3.002215,3.002215,3.002215,3.002215,3.002215,3.002215,3.002215,3.002215,1.170864,1.170864,30,30,, +19963,0,0.865832,1,1,0,2,5,GRV,5,5,Waterloo,Rd,3380147,5.057,5.922,0,18.553551,5.55,5,2.597497,2.597497,2.597497,2.597497,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,,,,,,,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,0.935099,0.935099,0.935099,0.935099,0.935099,0.935099,0.935099,0.935099,0.484866,0.484866,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,2.597497,0.935099,0.935099,20,20,, +6909,0,1.140046,1,1,0,2,5,,5,8,Unadilla,Rd,932307,0,1.14,0,24.429547,3.7,5,2.280091,2.280091,2.280091,2.280091,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.280091,2.281462,2.280091,2.280091,2.280091,2.281462,2.280091,2.280091,2.280091,2.280091,2.280091,2.280091,2.281072,2.280091,2.280091,2.280091,2.281072,2.280091,2.280091,2.280091,2.280091,2.280091,2.280091,2.280091,,,,,,,2.280091,2.281462,2.280091,2.280091,2.281072,2.280091,2.280091,2.280091,2.280091,2.280091,0.889236,0.889647,0.889236,0.889236,0.88953,0.889236,0.889236,0.889236,0.467419,0.467419,30,29.981972,30,30,29.987103,30,30,30,30,30,,,,,,,,,,,2580,2580,2.280091,2.280091,2.280091,2.280091,2.280091,2.280091,2.280091,2.280091,0.889236,0.889236,30,30,, +19764,0,2.209504,1,1,0,2,5,,5,8,Doyle,Rd,4104180,1.729,3.938,0,47.346512,3.7,5,4.419008,4.419008,4.419008,4.419008,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.41901,4.419008,4.419008,4.419008,4.41901,4.419008,4.419008,4.419008,4.419008,4.419008,4.419008,4.419008,4.419008,4.419009,4.419008,4.419008,4.419008,4.419009,4.419008,4.419008,4.419008,4.419008,4.419008,4.419008,,,,,,,4.41901,4.419008,4.419008,4.419008,4.419008,4.419009,4.419008,4.419008,4.419008,4.419008,1.723414,1.723413,1.723413,1.723413,1.723413,1.723413,1.723413,1.723413,0.905897,0.905897,29.999988,30,30,29.999999,29.999999,29.999995,30,30,30,30,,,,,,,,,,,2580,2580,4.419008,4.419008,4.419008,4.419008,4.419008,4.419008,4.419008,4.419008,1.723413,1.723413,30,30,, +21778,0,0.710749,1,1,0,2,5,,5,5,Hadley,Rd,4600021,2.754,3.464,0,15.230329,3.7,5,1.421497,1.421497,1.421497,1.421497,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.421498,1.424442,1.421497,1.421497,1.421498,1.424442,1.421497,1.421498,1.421497,1.421497,1.421497,1.421498,1.423982,1.421499,1.421497,1.421497,1.423982,1.421499,1.421497,1.421497,1.421497,1.421497,1.421497,1.421497,,,,,,,1.421498,1.424442,1.421497,1.421498,1.423982,1.421499,1.421497,1.421497,1.421497,1.421497,0.554384,0.555267,0.554384,0.554384,0.555129,0.554384,0.554384,0.554384,0.291407,0.291407,29.99999,29.937974,29.999997,29.999996,29.947649,29.999974,30,30,30,30,,,,,,,,,,,2580,2580,1.421497,1.421497,1.421497,1.421497,1.421497,1.421497,1.421497,1.421497,0.554384,0.554384,30,30,, +24659,0,0.65135,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.957507,0.15,4,2.605401,2.605401,2.605401,2.605401,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,,,,,,,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,0.898863,0.898863,0.898863,0.898863,0.898863,0.898863,0.898863,0.898863,0.462459,0.462459,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,2.605401,0.898863,0.898863,15,15,, +24660,0,1.350512,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.939541,0.15,4,5.402048,5.402048,5.402048,5.402048,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,,,,,,,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,1.863706,1.863706,1.863706,1.863706,1.863706,1.863706,1.863706,1.863706,0.958863,0.958863,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,5.402048,1.863706,1.863706,15,15,, +24718,0,1.197273,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.655848,0.15,4,4.789092,4.789092,4.789092,4.789092,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,,,,,,,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,1.652237,1.652237,1.652237,1.652237,1.652237,1.652237,1.652237,1.652237,0.850064,0.850064,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,4.789092,1.652237,1.652237,15,15,, +5711,0,0.97358,1,1,0,2,5,,5,8,Williamsville,Rd,932302,1.926,2.9,0,20.862434,3.7,5,1.94716,1.94716,1.94716,1.94716,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.947163,1.947161,1.94716,1.94716,1.947163,1.947161,1.947161,1.947161,1.94716,1.94716,1.947161,1.947161,1.947161,1.947163,1.94716,1.94716,1.947161,1.947163,1.94716,1.94716,1.94716,1.94716,1.94716,1.94716,,,,,,,1.947163,1.947161,1.947161,1.947161,1.947161,1.947163,1.94716,1.94716,1.94716,1.94716,0.759393,0.759393,0.759393,0.759393,0.759393,0.759393,0.759393,0.759393,0.399168,0.399168,29.999969,29.999999,29.999999,29.999999,29.999996,29.999954,30,30,30,30,,,,,,,,,,,2580,2580,1.94716,1.94716,1.94716,1.94716,1.94716,1.94716,1.94716,1.94716,0.759393,0.759393,30,30,, +5920,0,0.324557,1,1,0,2,5,,5,8,Williamsville,Rd,932302,1.602,1.926,0,6.954798,3.7,5,0.649114,0.649114,0.649114,0.649114,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.649115,0.649177,0.649114,0.649114,0.649115,0.649177,0.649116,0.649118,0.649114,0.649114,0.649116,0.649118,0.649204,0.649121,0.649114,0.649114,0.649204,0.649121,0.649114,0.649114,0.649114,0.649114,0.649114,0.649114,,,,,,,0.649115,0.649177,0.649116,0.649118,0.649204,0.649121,0.649114,0.649114,0.649114,0.649114,0.253155,0.253174,0.253155,0.253156,0.253181,0.253157,0.253155,0.253155,0.133068,0.133068,29.999985,29.997089,29.99991,29.999859,29.995874,29.999712,30,30,30,30,,,,,,,,,,,2580,2580,0.649114,0.649114,0.649114,0.649114,0.649114,0.649114,0.649114,0.649114,0.253155,0.253155,30,30,, +19873,0,0.350085,1,1,0,2,5,,5,8,Hadley,Rd,4104126,0.387,0.737,0,7.501817,3.7,5,0.70017,0.70017,0.70017,0.70017,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.70017,0.70162,0.70017,0.70017,0.70017,0.70162,0.70017,0.70017,0.70017,0.70017,0.70017,0.70017,0.701394,0.70017,0.70017,0.70017,0.701394,0.70017,0.70017,0.70017,0.70017,0.70017,0.70017,0.70017,,,,,,,0.70017,0.70162,0.70017,0.70017,0.701394,0.70017,0.70017,0.70017,0.70017,0.70017,0.273066,0.273501,0.273066,0.273066,0.273433,0.273066,0.273066,0.273066,0.143535,0.143535,29.99999,29.937974,29.999997,29.999996,29.947649,29.999974,30,30,30,30,,,,,,,,,,,2580,2580,0.70017,0.70017,0.70017,0.70017,0.70017,0.70017,0.70017,0.70017,0.273066,0.273066,30,30,, +19874,0,0.386926,1,1,0,2,5,,5,5,Hadley,Rd,4104126,0,0.387,0,8.291271,3.7,5,0.773852,0.773852,0.773852,0.773852,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.773852,0.775455,0.773852,0.773852,0.773852,0.775455,0.773852,0.773852,0.773852,0.773852,0.773852,0.773852,0.775205,0.773853,0.773852,0.773852,0.775205,0.773853,0.773852,0.773852,0.773852,0.773852,0.773852,0.773852,,,,,,,0.773852,0.775455,0.773852,0.773852,0.775205,0.773853,0.773852,0.773852,0.773852,0.773852,0.301802,0.302283,0.301802,0.301802,0.302208,0.301802,0.301802,0.301802,0.15864,0.15864,29.99999,29.937974,29.999997,29.999996,29.947649,29.999974,30,30,30,30,,,,,,,,,,,2580,2580,0.773852,0.773852,0.773852,0.773852,0.773852,0.773852,0.773852,0.773852,0.301802,0.301802,30,30,, +5437,0,0.110778,1,1,0,2,5,,5,8,Kaiser,Rd,932302,2.9,3.01,0,2.373817,3.7,5,0.221556,0.221556,0.221556,0.221556,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.222015,0.221556,0.221556,0.221556,0.222015,0.221556,0.221556,0.221556,0.221556,0.221556,0.221556,0.221556,0.221556,0.221944,0.221556,0.221556,0.221556,0.221944,0.221556,0.221556,0.221556,0.221556,0.221556,0.221556,,,,,,,0.222015,0.221556,0.221556,0.221556,0.221556,0.221944,0.221556,0.221556,0.221556,0.221556,0.086545,0.086407,0.086407,0.086407,0.086407,0.086523,0.086407,0.086407,0.045419,0.045419,29.937974,29.99999,29.999996,29.999997,29.999974,29.947649,30,30,30,30,,,,,,,,,,,2580,2580,0.221556,0.221556,0.221556,0.221556,0.221556,0.221556,0.221556,0.221556,0.086407,0.086407,30,30,, +19765,0,0.81142,1,1,0,2,5,,5,8,Doyle,Rd,4104180,0.918,1.729,0,17.387568,3.7,5,1.62284,1.62284,1.62284,1.62284,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.624664,1.62284,1.62284,1.62284,1.624664,1.62284,1.62284,1.62284,1.62284,1.62284,1.62284,1.62284,1.62284,1.623908,1.62284,1.62284,1.62284,1.623908,1.62284,1.62284,1.62284,1.62284,1.62284,1.62284,,,,,,,1.624664,1.62284,1.62284,1.62284,1.62284,1.623908,1.62284,1.62284,1.62284,1.62284,0.633455,0.632907,0.632907,0.632907,0.632907,0.633228,0.632907,0.632907,0.332682,0.332682,29.966312,30,30,30,30,29.98027,30,30,30,30,,,,,,,,,,,2580,2580,1.62284,1.62284,1.62284,1.62284,1.62284,1.62284,1.62284,1.62284,0.632907,0.632907,30,30,, +24657,0,0.513259,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.998413,0.15,4,2.053037,2.053037,2.053037,2.053037,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,,,,,,,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,0.708298,0.708298,0.708298,0.708298,0.708298,0.708298,0.708298,0.708298,0.364414,0.364414,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,2.053037,0.708298,0.708298,15,15,, +9686,0,1.818306,1,1,0,2,4,,5,5,Jackson,Rd,1426508,9.193,11.011,0,38.96371,3,4,2.72746,2.72746,2.72746,2.72746,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.727738,2.728589,2.72746,2.72746,2.727738,2.728589,2.727461,2.727491,2.72746,2.72746,2.727461,2.727491,2.730511,2.728475,2.72746,2.72746,2.730511,2.728475,2.72746,2.72746,2.72746,2.72746,2.72746,2.72746,,,,,,,2.727738,2.728589,2.727461,2.727491,2.730511,2.728475,2.72746,2.72746,2.72746,2.72746,1.145616,1.145872,1.145533,1.145543,1.146448,1.145838,1.145533,1.145533,0.609133,0.609133,39.995923,39.98345,39.999984,39.999538,39.955307,39.985111,40,40,40,40,,,,,,,,,,,3096,3096,2.72746,2.72746,2.72746,2.72746,2.72746,2.72746,2.72746,2.72746,1.145533,1.145533,40,40,, +9698,0,3.577427,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,3.529,7.105,0,76.659143,3.7,5,7.154853,7.154853,7.154853,7.154853,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,7.154862,7.154853,7.154853,7.154853,7.154862,7.154853,7.154853,7.154853,7.154853,7.154853,7.154853,7.154853,7.154853,7.154862,7.154853,7.154853,7.154853,7.154862,7.154853,7.154853,7.154853,7.154853,7.154853,7.154853,,,,,,,7.154862,7.154853,7.154853,7.154853,7.154853,7.154862,7.154853,7.154853,7.154853,7.154853,2.790395,2.790393,2.790393,2.790393,2.790393,2.790395,2.790393,2.790393,1.466745,1.466745,29.999963,30,30,30,30,29.999965,30,30,30,30,,,,,,,,,,,2580,2580,7.154853,7.154853,7.154853,7.154853,7.154853,7.154853,7.154853,7.154853,2.790393,2.790393,30,30,, +11017,0,1.005882,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,3.106,4.112,0,21.554622,3.7,5,2.011765,2.011765,2.011765,2.011765,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.012031,2.011833,2.011765,2.011765,2.012031,2.011833,2.011775,2.011777,2.011765,2.011765,2.011775,2.011777,2.011956,2.012283,2.011765,2.011765,2.011956,2.012283,2.011765,2.011765,2.011765,2.011765,2.011765,2.011765,,,,,,,2.012031,2.011833,2.011775,2.011777,2.011956,2.012283,2.011765,2.011765,2.011765,2.011765,0.784668,0.784609,0.784591,0.784592,0.784646,0.784744,0.784588,0.784588,0.412412,0.412412,29.996028,29.998978,29.999844,29.999813,29.997142,29.992271,30,30,30,30,,,,,,,,,,,2580,2580,2.011765,2.011765,2.011765,2.011765,2.011765,2.011765,2.011765,2.011765,0.784588,0.784588,30,30,, +11100,0,0.995733,1,1,0,2,5,,4,5,Parker,Rd,1447903,4.441,5.436,0,21.337136,5.8,4.5,2.21274,2.21274,2.21274,2.21274,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.213193,2.212772,2.21274,2.21274,2.213193,2.212772,2.212747,2.212755,2.21274,2.21274,2.212747,2.212755,2.21314,2.213871,2.21274,2.21274,2.21314,2.213871,2.21274,2.21274,2.21274,2.21274,2.21274,2.21274,,,,,,,2.213193,2.212772,2.212747,2.212755,2.21314,2.213871,2.21274,2.21274,2.21274,2.21274,0.84319,0.843063,0.843056,0.843058,0.843174,0.843393,0.843054,0.843054,0.441442,0.441442,26.994474,26.999613,26.999913,26.999816,26.995121,26.986203,27,27,27,27,,,,,,,,,,,2580,2580,2.21274,2.21274,2.21274,2.21274,2.21274,2.21274,2.21274,2.21274,0.843054,0.843054,27,27,, +21262,0,1.580942,1,1,0,2,5,GRV,5,5,Fletcher,Rd,4604001,0,1.58,0,33.877337,5.55,5,4.742827,4.742827,4.742827,4.742827,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.742828,4.742827,4.742827,4.742827,4.742828,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,,,,,,,4.742828,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,1.707418,1.707418,1.707418,1.707418,1.707418,1.707418,1.707418,1.707418,0.885328,0.885328,19.999998,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,4.742827,1.707418,1.707418,20,20,, +24677,0,1.186097,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.416355,0.15,4,4.744386,4.744386,4.744386,4.744386,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,,,,,,,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,1.636813,1.636813,1.636813,1.636813,1.636813,1.636813,1.636813,1.636813,0.842129,0.842129,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,4.744386,1.636813,1.636813,15,15,, +24731,0,0.598151,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.817521,0.15,4,2.392604,2.392604,2.392604,2.392604,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,,,,,,,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,0.825448,0.825448,0.825448,0.825448,0.825448,0.825448,0.825448,0.825448,0.424687,0.424687,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,2.392604,0.825448,0.825448,15,15,, +24732,0,1.462128,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.331313,0.15,4,5.848512,5.848512,5.848512,5.848512,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,,,,,,,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,2.017737,2.017737,2.017737,2.017737,2.017737,2.017737,2.017737,2.017737,1.038111,1.038111,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,5.848512,2.017737,2.017737,15,15,, +24747,0,1.882205,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.332959,0.15,4,7.528819,7.528819,7.528819,7.528819,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,,,,,,,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,2.597443,2.597443,2.597443,2.597443,2.597443,2.597443,2.597443,2.597443,1.336365,1.336365,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,7.528819,2.597443,2.597443,15,15,, +24750,0,1.090488,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.367607,0.15,4,4.361953,4.361953,4.361953,4.361953,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,,,,,,,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,1.504874,1.504874,1.504874,1.504874,1.504874,1.504874,1.504874,1.504874,0.774247,0.774247,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,4.361953,1.504874,1.504874,15,15,, +25834,0,3.18074,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,68.158707,0.15,4,12.722959,12.722959,12.722959,12.722959,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,,,,,,,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,4.389421,4.389421,4.389421,4.389421,4.389421,4.389421,4.389421,4.389421,2.258325,2.258325,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,12.722959,4.389421,4.389421,15,15,, +11020,0,2.582447,1,1,0,2,5,,5,5,Fletcher,Rd,1436603,1.139,3.72,0,55.338141,3.7,5,5.164893,5.164893,5.164893,5.164893,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.164941,5.164893,5.164893,5.164893,5.164941,5.164893,5.164894,5.164894,5.164893,5.164893,5.164894,5.164894,5.164897,5.164933,5.164893,5.164893,5.164897,5.164933,5.164893,5.164893,5.164893,5.164893,5.164893,5.164893,,,,,,,5.164941,5.164893,5.164894,5.164894,5.164897,5.164933,5.164893,5.164893,5.164893,5.164893,2.014323,2.014308,2.014309,2.014308,2.014309,2.01432,2.014308,2.014308,1.058803,1.058803,29.999724,29.999998,29.999996,29.999997,29.999977,29.999767,30,30,30,30,,,,,,,,,,,2580,2580,5.164893,5.164893,5.164893,5.164893,5.164893,5.164893,5.164893,5.164893,2.014308,2.014308,30,30,, +24680,0,1.233381,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.429599,0.15,4,4.933525,4.933525,4.933525,4.933525,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,,,,,,,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,1.702066,1.702066,1.702066,1.702066,1.702066,1.702066,1.702066,1.702066,0.875701,0.875701,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,4.933525,1.702066,1.702066,15,15,, +9715,0,0.505964,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,6.565,7.071,0,10.842092,3.7,5,1.011929,1.011929,1.011929,1.011929,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.012417,1.01193,1.011929,1.011929,1.012417,1.01193,1.01193,1.01193,1.011929,1.011929,1.01193,1.01193,1.01196,1.012312,1.011929,1.011929,1.01196,1.012312,1.011929,1.011929,1.011929,1.011929,1.011929,1.011929,,,,,,,1.012417,1.01193,1.01193,1.01193,1.01196,1.012312,1.011929,1.011929,1.011929,1.011929,0.394799,0.394653,0.394652,0.394652,0.394662,0.394767,0.394652,0.394652,0.207445,0.207445,29.98552,29.999954,29.999969,29.999972,29.999058,29.988648,30,30,30,30,,,,,,,,,,,2580,2580,1.011929,1.011929,1.011929,1.011929,1.011929,1.011929,1.011929,1.011929,0.394652,0.394652,30,30,, +11025,0,1.139241,1,1,0,2,5,,5,5,Fletcher,Rd,1436603,0,1.139,0,24.412302,3.7,5,2.278481,2.278481,2.278481,2.278481,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.278482,2.278482,2.278481,2.278481,2.278482,2.278482,2.278482,2.278482,2.278481,2.278481,2.278482,2.278482,2.278482,2.278482,2.278481,2.278481,2.278482,2.278482,2.278481,2.278481,2.278481,2.278481,2.278481,2.278481,,,,,,,2.278482,2.278482,2.278482,2.278482,2.278482,2.278482,2.278481,2.278481,2.278481,2.278481,0.888608,0.888608,0.888608,0.888608,0.888608,0.888608,0.888608,0.888608,0.467089,0.467089,29.999997,29.999991,30,30,29.999993,29.999988,30,30,30,30,,,,,,,,,,,2580,2580,2.278481,2.278481,2.278481,2.278481,2.278481,2.278481,2.278481,2.278481,0.888608,0.888608,30,30,, +9713,0,0.532515,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,7.071,7.603,0,11.411044,3.7,5,1.065031,1.065031,1.065031,1.065031,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.065527,1.065032,1.065031,1.065031,1.065527,1.065032,1.065032,1.065032,1.065031,1.065031,1.065032,1.065032,1.065061,1.065416,1.065031,1.065031,1.065061,1.065416,1.065031,1.065031,1.065031,1.065031,1.065031,1.065031,,,,,,,1.065527,1.065032,1.065032,1.065032,1.065061,1.065416,1.065031,1.065031,1.065031,1.065031,0.415511,0.415362,0.415362,0.415362,0.415371,0.415478,0.415362,0.415362,0.218331,0.218331,29.986022,29.999958,29.999973,29.999975,29.999139,29.989142,30,30,30,30,,,,,,,,,,,2580,2580,1.065031,1.065031,1.065031,1.065031,1.065031,1.065031,1.065031,1.065031,0.415362,0.415362,30,30,, +9699,0,0.743375,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,2.786,3.529,0,15.929471,3.7,5,1.486751,1.486751,1.486751,1.486751,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,1.486752,1.486751,1.486751,1.486751,1.486752,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,,,,,,,1.486751,1.486751,1.486751,1.486751,1.486751,1.486752,1.486751,1.486751,1.486751,1.486751,0.579833,0.579833,0.579833,0.579833,0.579833,0.579833,0.579833,0.579833,0.304784,0.304784,29.999988,30,30,30,29.999997,29.999968,30,30,30,30,,,,,,,,,,,2580,2580,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,1.486751,0.579833,0.579833,30,30,, +9700,0,0.006923,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,2.779,2.786,0,0.148348,3.7,5,0.013846,0.013846,0.013846,0.013846,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,,,,,,,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.0054,0.0054,0.0054,0.0054,0.0054,0.0054,0.0054,0.0054,0.002838,0.002838,29.999885,29.999998,29.999996,29.999996,29.999988,29.999881,30,30,30,30,,,,,,,,,,,2580,2580,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.013846,0.0054,0.0054,30,30,, +9583,0,0.753823,1,1,0,2,5,,4,5,Freer,Rd,1426510,1.58,2.333,0,16.153341,5.8,4.5,1.675161,1.675161,1.675161,1.675161,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.691937,1.716367,1.675161,1.675161,1.691937,1.716367,1.675971,1.676156,1.675161,1.675161,1.675971,1.676156,1.713558,1.716102,1.675161,1.675161,1.713558,1.716102,1.675161,1.675161,1.675161,1.675161,1.675161,1.675161,,,,,,,1.691937,1.716367,1.675971,1.676156,1.713558,1.716102,1.675161,1.675161,1.675161,1.675161,0.643269,0.650598,0.638479,0.638535,0.649755,0.650519,0.638236,0.638236,0.334195,0.334195,26.732287,26.351802,26.986962,26.98397,26.395,26.355872,27,27,27,27,,,,,,,,,,,2580,2580,1.675161,1.675161,1.675161,1.675161,1.675161,1.675161,1.675161,1.675161,0.638236,0.638236,27,27,, +9690,0,1.517386,1,1,0,2,4,,5,5,Old US 12,,1426508,7.416,8.933,0,32.515421,3,4,2.276079,2.276079,2.276079,2.276079,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.4006,2.8783,2.276079,2.276079,3.4006,2.8783,2.575692,2.482896,2.276079,2.276079,2.575692,2.482896,3.27513,3.306785,2.276079,2.276079,3.27513,3.306785,2.276079,2.276079,2.276079,2.276079,2.276079,2.276079,,,,,,,3.4006,2.8783,2.575692,2.482896,3.27513,3.306785,2.276079,2.276079,2.276079,2.276079,1.29331,1.136619,1.045837,1.017998,1.255668,1.265165,0.955953,0.955953,0.508324,0.508324,26.772681,31.630888,35.347078,36.668135,27.798343,27.532233,40,40,40,40,,,,,,,,,,,3096,3096,2.276079,2.276079,2.276079,2.276079,2.276079,2.276079,2.276079,2.276079,0.955953,0.955953,40,40,, +9691,0,0.389918,1,1,0,2,4,,4,5,Old US 12,,1426508,7.027,7.416,0,8.355387,4.5,4.5,0.61566,0.61566,0.61566,0.61566,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.657816,0.6394,0.61566,0.61566,0.657816,0.6394,0.640266,0.630835,0.61566,0.61566,0.640266,0.630835,0.655522,0.659509,0.61566,0.61566,0.655522,0.659509,0.61566,0.61566,0.61566,0.61566,0.61566,0.61566,,,,,,,0.657816,0.6394,0.640266,0.630835,0.655522,0.659509,0.61566,0.61566,0.61566,0.61566,0.26753,0.262005,0.262265,0.259436,0.266842,0.268038,0.254883,0.254883,0.13524,0.13524,35.564763,36.589137,36.539612,37.085874,35.689226,35.473488,38,38,38,38,,,,,,,,,,,3096,3096,0.61566,0.61566,0.61566,0.61566,0.61566,0.61566,0.61566,0.61566,0.254883,0.254883,38,38,, +10843,0,0.740721,1,1,0,2,5,GRV,5,5,Fletcher,Rd,1450905,0,0.74,0,15.872598,5.55,5,2.222164,2.222164,2.222164,2.222164,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.222168,2.222179,2.222164,2.222164,2.222168,2.222179,2.222165,2.222166,2.222164,2.222164,2.222165,2.222166,2.222174,2.222173,2.222164,2.222164,2.222174,2.222173,2.222164,2.222164,2.222164,2.222164,2.222164,2.222164,,,,,,,2.222168,2.222179,2.222165,2.222166,2.222174,2.222173,2.222164,2.222164,2.222164,2.222164,0.79998,0.799984,0.799979,0.79998,0.799982,0.799982,0.799979,0.799979,0.414804,0.414804,19.99996,19.99986,19.999984,19.999978,19.999907,19.999916,20,20,20,20,,,,,,,,,,,2236,2236,2.222164,2.222164,2.222164,2.222164,2.222164,2.222164,2.222164,2.222164,0.799979,0.799979,20,20,, +11219,0,1.481481,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,0.635,2.116,0,31.746023,3.7,5,2.962962,2.962962,2.962962,2.962962,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.963219,2.966944,2.962962,2.962962,2.963219,2.966944,2.963124,2.963218,2.962962,2.962962,2.963124,2.963218,2.97488,2.965927,2.962962,2.962962,2.97488,2.965927,2.962962,2.962962,2.962962,2.962962,2.962962,2.962962,,,,,,,2.963219,2.966944,2.963124,2.963218,2.97488,2.965927,2.962962,2.962962,2.962962,2.962962,1.155632,1.15675,1.155604,1.155632,1.159131,1.156445,1.155555,1.155555,0.607407,0.607407,29.997401,29.959742,29.998359,29.997406,29.879817,29.970009,30,30,30,30,,,,,,,,,,,2580,2580,2.962962,2.962962,2.962962,2.962962,2.962962,2.962962,2.962962,2.962962,1.155555,1.155555,30,30,, +24752,0,0.341966,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.327847,0.15,4,1.367865,1.367865,1.367865,1.367865,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,,,,,,,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,0.471913,0.471913,0.471913,0.471913,0.471913,0.471913,0.471913,0.471913,0.242796,0.242796,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,1.367865,0.471913,0.471913,15,15,, +9582,0,0.536433,1,1,0,2,5,,4,5,Freer,Rd,1426510,2.333,2.87,0,11.494987,5.8,4.5,1.192073,1.192073,1.192073,1.192073,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.192075,1.197529,1.192073,1.192073,1.192075,1.197529,1.192075,1.19208,1.192073,1.192073,1.192075,1.19208,1.198576,1.192562,1.192073,1.192073,1.198576,1.192562,1.192073,1.192073,1.192073,1.192073,1.192073,1.192073,,,,,,,1.192075,1.197529,1.192075,1.19208,1.198576,1.192562,1.192073,1.192073,1.192073,1.192073,0.45418,0.455817,0.45418,0.454182,0.456131,0.454326,0.45418,0.45418,0.237819,0.237819,26.999946,26.876972,26.999953,26.999842,26.853493,26.988933,27,27,27,27,,,,,,,,,,,2580,2580,1.192073,1.192073,1.192073,1.192073,1.192073,1.192073,1.192073,1.192073,0.45418,0.45418,27,27,, +11044,0,0.075588,1,1,0,2,5,,4,5,McKinley,St,1451005,0,0.076,0,1.619733,5.8,4.5,0.167972,0.167972,0.167972,0.167972,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.168481,0.177817,0.167972,0.167972,0.168481,0.177817,0.16863,0.168767,0.167972,0.167972,0.16863,0.168767,0.176547,0.169477,0.167972,0.167972,0.176547,0.169477,0.167972,0.167972,0.167972,0.167972,0.167972,0.167972,,,,,,,0.168481,0.177817,0.16863,0.168767,0.176547,0.169477,0.167972,0.167972,0.167972,0.167972,0.06415,0.066951,0.064195,0.064236,0.06657,0.064449,0.063997,0.063997,0.03351,0.03351,26.918458,25.505195,26.894628,26.872865,25.688681,26.760355,27,27,27,27,,,,,,,,,,,2580,2580,0.167972,0.167972,0.167972,0.167972,0.167972,0.167972,0.167972,0.167972,0.063997,0.063997,27,27,, +24734,0,0.262753,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.630431,0.15,4,1.051014,1.051014,1.051014,1.051014,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,,,,,,,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,0.3626,0.3626,0.3626,0.3626,0.3626,0.3626,0.3626,0.3626,0.186555,0.186555,15,14.999999,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,1.051014,0.3626,0.3626,15,15,, +24745,0,0.582546,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.483136,0.15,4,2.330185,2.330185,2.330185,2.330185,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,,,,,,,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,0.803914,0.803914,0.803914,0.803914,0.803914,0.803914,0.803914,0.803914,0.413608,0.413608,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,2.330185,0.803914,0.803914,15,15,, +11271,0,0.540177,1,1,0,2,5,,4,5,Railroad,St,1452809,0.095,0.635,0,11.575224,5.8,4.5,1.200394,1.200394,1.200394,1.200394,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.20399,1.200666,1.200394,1.200394,1.20399,1.200666,1.200457,1.200455,1.200394,1.200394,1.200457,1.200455,1.204837,1.209011,1.200394,1.200394,1.204837,1.209011,1.200394,1.200394,1.200394,1.200394,1.200394,1.200394,,,,,,,1.20399,1.200666,1.200457,1.200455,1.204837,1.209011,1.200394,1.200394,1.200394,1.200394,0.458429,0.457432,0.457369,0.457368,0.458683,0.459935,0.45735,0.45735,0.239479,0.239479,26.919339,26.993865,26.998573,26.998624,26.900432,26.807553,27,27,27,27,,,,,,,,,,,2580,2580,1.200394,1.200394,1.200394,1.200394,1.200394,1.200394,1.200394,1.200394,0.45735,0.45735,27,27,, +24729,0,0.340977,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.306645,0.15,4,1.363907,1.363907,1.363907,1.363907,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,,,,,,,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,0.470548,0.470548,0.470548,0.470548,0.470548,0.470548,0.470548,0.470548,0.242094,0.242094,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,1.363907,0.470548,0.470548,15,15,, +22021,0,1.264318,1,1,0,2,5,GRV,5,5,Fletcher,Rd,4604001,1.58,2.844,0,27.092531,5.55,5,3.792954,3.792954,3.792954,3.792954,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.793949,3.793001,3.792954,3.792954,3.793949,3.793001,3.793024,3.79303,3.792954,3.792954,3.793024,3.79303,3.793275,3.794357,3.792954,3.792954,3.793275,3.794357,3.792954,3.792954,3.792954,3.792954,3.792954,3.792954,,,,,,,3.793949,3.793001,3.793024,3.79303,3.793275,3.794357,3.792954,3.792954,3.792954,3.792954,1.365762,1.365478,1.365484,1.365486,1.36556,1.365884,1.365464,1.365464,0.708018,0.708018,19.994754,19.999752,19.999634,19.999599,19.99831,19.992605,20,20,20,20,,,,,,,,,,,2236,2236,3.792954,3.792954,3.792954,3.792954,3.792954,3.792954,3.792954,3.792954,1.365464,1.365464,20,20,, +24748,0,0.929387,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.915438,0.15,4,3.717548,3.717548,3.717548,3.717548,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,,,,,,,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,1.282554,1.282554,1.282554,1.282554,1.282554,1.282554,1.282554,1.282554,0.659865,0.659865,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,3.717548,1.282554,1.282554,15,15,, +9557,1,0.472167,2,0,0,1,1,,5,5,E I 94,,1426109,7.896,8.368,0,,1.02,7,0.404715,,0.404715,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.421348,,0.404715,,0.421348,,0.407652,,0.404715,,0.407652,,0.418066,,0.404715,,0.418066,,0.404715,,0.404715,,0.404715,,,,,,,,0.421348,,0.407652,,0.418066,,0.404715,,0.404715,,0.211395,,0.207286,,0.21041,,0.206405,,0.112646,,67.236689,,69.495713,,67.764555,,70,,70,,,,,,,,,,,,15136,,0.404715,,0.404715,,0.404715,,0.404715,,0.206405,,70,,, +9689,0,0.044088,1,1,0,2,4,,5,5,Old US 12,,1426508,8.933,8.977,0,0.944751,3,4,0.066133,0.066133,0.066133,0.066133,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.09925,0.111201,0.066133,0.066133,0.09925,0.111201,0.074898,0.07905,0.066133,0.066133,0.074898,0.07905,0.09534,0.143264,0.066133,0.066133,0.09534,0.143264,0.066133,0.066133,0.066133,0.066133,0.066133,0.066133,,,,,,,0.09925,0.111201,0.074898,0.07905,0.09534,0.143264,0.066133,0.066133,0.066133,0.066133,0.037711,0.041296,0.030405,0.031651,0.036538,0.050915,0.027776,0.027776,0.01477,0.01477,26.652832,23.788474,35.318556,33.46387,27.746118,18.464503,40,40,40,40,,,,,,,,,,,3096,3096,0.066133,0.066133,0.066133,0.066133,0.066133,0.066133,0.066133,0.066133,0.027776,0.027776,40,40,, +10399,-1,0.367991,0,2,0,1,1,,5,5,W I 94,,1426110,7.947,8.315,0,,1.02,7,,0.315421,,0.315421,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.318527,,0.315421,,0.318527,,0.317381,,0.315421,,0.317381,,0.336463,,0.315421,,0.336463,,0.315421,,0.315421,,0.315421,,,,,,,,0.318527,,0.317381,,0.336463,,0.315421,,0.315421,,0.161797,,0.161453,,0.167177,,0.160865,,0.087792,,69.317399,,69.567809,,65.622345,,70,,70,,,,,,,,,,,,15136,,0.315421,,0.315421,,0.315421,,0.315421,,0.160865,,70,, +21742,0,0.236574,1,1,0,2,5,,5,5,Fletcher,Rd,4604001,2.844,3.081,0,5.069437,3.7,5,0.473147,0.473147,0.473147,0.473147,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.474336,0.473147,0.473147,0.473147,0.474336,0.473147,0.473183,0.473147,0.473147,0.473147,0.473183,0.473147,0.4765,0.473148,0.473147,0.473147,0.4765,0.473148,0.473147,0.473147,0.473147,0.473147,0.473147,0.473147,,,,,,,0.474336,0.473147,0.473183,0.473147,0.4765,0.473148,0.473147,0.473147,0.473147,0.473147,0.184884,0.184527,0.184538,0.184527,0.185533,0.184528,0.184527,0.184527,0.096995,0.096995,29.924839,30,29.997732,29.999999,29.788914,29.999967,30,30,30,30,,,,,,,,,,,2580,2580,0.473147,0.473147,0.473147,0.473147,0.473147,0.473147,0.473147,0.473147,0.184527,0.184527,30,30,, +9574,1,0.214604,1,0,0,1,1,ROF,5,5,E I 94/Fletcher,RAMP,1426601,0,0.215,0,,2.24,5,0.321907,,0.321907,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.321909,,0.321907,,0.321909,,0.321907,,0.321907,,0.321907,,0.321938,,0.321907,,0.321938,,0.321907,,0.321907,,0.321907,,,,,,,,0.321909,,0.321907,,0.321938,,0.321907,,0.321907,,0.135201,,0.135201,,0.13521,,0.135201,,0.071892,,39.999716,,39.999981,,39.996051,,40,,40,,,,,,,,,,,,5160,,0.321907,,0.321907,,0.321907,,0.321907,,0.135201,,40,,, +21198,1,0.151213,1,0,0,1,1,RON,5,5,Fletcher/W I 94,RAMP,4600081,0,0.151,0,,1.09,4,0.201618,,0.201618,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.201634,,0.201618,,0.201634,,0.20162,,0.201618,,0.20162,,0.201639,,0.201618,,0.201639,,0.201618,,0.201618,,0.201618,,,,,,,,0.201634,,0.20162,,0.201639,,0.201618,,0.201618,,0.087709,,0.087704,,0.08771,,0.087704,,0.046876,,44.99644,,44.999598,,44.995354,,45,,45,,,,,,,,,,,,5160,,0.201618,,0.201618,,0.201618,,0.201618,,0.087704,,45,,, +9558,1,0.112866,1,0,0,1,1,RON,5,5,Fletcher/E I 94,RAMP,1426603,0,0.113,0,,1.09,4,0.150488,,0.150488,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.153765,,0.150488,,0.153765,,0.151316,,0.150488,,0.151316,,0.15272,,0.150488,,0.15272,,0.150488,,0.150488,,0.150488,,,,,,,,0.153765,,0.151316,,0.15272,,0.150488,,0.150488,,0.066445,,0.065711,,0.066132,,0.065462,,0.034989,,44.04117,,44.753924,,44.342494,,45,,45,,,,,,,,,,,,5160,,0.150488,,0.150488,,0.150488,,0.150488,,0.065462,,45,,, +10298,1,0.266265,1,0,0,1,1,ROF,5,5,W I 94/Fletcher,RAMP,1427008,0,0.266,0,,2.24,5,0.399397,,0.399397,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.400962,,0.399397,,0.400962,,0.400021,,0.399397,,0.400021,,0.40379,,0.399397,,0.40379,,0.399397,,0.399397,,0.399397,,,,,,,,0.400962,,0.400021,,0.40379,,0.399397,,0.399397,,0.168216,,0.167934,,0.169065,,0.167747,,0.089199,,39.843837,,39.937619,,39.564792,,40,,40,,,,,,,,,,,,5160,,0.399397,,0.399397,,0.399397,,0.399397,,0.167747,,40,,, +9688,0,0.185295,1,1,0,2,4,,5,5,Old US 12,,1426508,8.977,9.162,0,3.970602,3,4,0.277942,0.277942,0.277942,0.277942,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.422201,0.280192,0.277942,0.277942,0.422201,0.280192,0.317922,0.278146,0.277942,0.277942,0.317922,0.278146,0.406781,0.279951,0.277942,0.277942,0.406781,0.279951,0.277942,0.277942,0.277942,0.277942,0.277942,0.277942,,,,,,,0.422201,0.280192,0.317922,0.278146,0.406781,0.279951,0.277942,0.277942,0.277942,0.277942,0.160013,0.117411,0.12873,0.116797,0.155387,0.117338,0.116736,0.116736,0.062074,0.062074,26.332709,39.678856,34.969842,39.970651,27.330882,39.712957,40,40,40,40,,,,,,,,,,,3096,3096,0.277942,0.277942,0.277942,0.277942,0.277942,0.277942,0.277942,0.277942,0.116736,0.116736,40,40,, +9687,0,0.030914,1,1,0,2,4,,5,5,Old US 12,,1426508,9.162,9.193,0,0.662436,3,4,0.04637,0.04637,0.04637,0.04637,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.046371,0.046853,0.04637,0.04637,0.046371,0.046853,0.046371,0.046412,0.04637,0.04637,0.046371,0.046412,0.046373,0.046737,0.04637,0.04637,0.046373,0.046737,0.04637,0.04637,0.04637,0.04637,0.04637,0.04637,,,,,,,0.046371,0.046853,0.046371,0.046412,0.046373,0.046737,0.04637,0.04637,0.04637,0.04637,0.019476,0.01962,0.019476,0.019488,0.019476,0.019586,0.019476,0.019476,0.010356,0.010356,39.999856,39.588238,39.999896,39.96383,39.998143,39.686212,40,40,40,40,,,,,,,,,,,3096,3096,0.04637,0.04637,0.04637,0.04637,0.04637,0.04637,0.04637,0.04637,0.019476,0.019476,40,40,, +11018,0,0.802863,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,2.116,2.919,0,17.204214,3.7,5,1.605727,1.605727,1.605727,1.605727,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.606017,1.609574,1.605727,1.605727,1.606017,1.609574,1.605899,1.605994,1.605727,1.605727,1.605899,1.605994,1.615822,1.608504,1.605727,1.605727,1.615822,1.608504,1.605727,1.605727,1.605727,1.605727,1.605727,1.605727,,,,,,,1.606017,1.609574,1.605899,1.605994,1.615822,1.608504,1.605727,1.605727,1.605727,1.605727,0.62632,0.627388,0.626285,0.626314,0.629262,0.627067,0.626233,0.626233,0.329174,0.329174,29.994576,29.928293,29.996777,29.995005,29.812573,29.948196,30,30,30,30,,,,,,,,,,,2580,2580,1.605727,1.605727,1.605727,1.605727,1.605727,1.605727,1.605727,1.605727,0.626233,0.626233,30,30,, +11045,0,0.870103,1,1,0,2,5,GRV,5,5,Fletcher,Rd,1450905,0.74,1.61,0,18.645063,5.55,5,2.610309,2.610309,2.610309,2.610309,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,,,,,,,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,0.939711,0.939711,0.939711,0.939711,0.939711,0.939711,0.939711,0.939711,0.487258,0.487258,19.999999,19.999998,20,20,19.999998,19.999999,20,20,20,20,,,,,,,,,,,2236,2236,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,2.610309,0.939711,0.939711,20,20,, +11216,0,0.187612,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,2.919,3.106,0,4.020265,3.7,5,0.375225,0.375225,0.375225,0.375225,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.375282,0.375356,0.375225,0.375225,0.375282,0.375356,0.375236,0.375241,0.375225,0.375225,0.375236,0.375241,0.375709,0.375515,0.375225,0.375225,0.375709,0.375515,0.375225,0.375225,0.375225,0.375225,0.375225,0.375225,,,,,,,0.375282,0.375356,0.375236,0.375241,0.375709,0.375515,0.375225,0.375225,0.375225,0.375225,0.146355,0.146377,0.146341,0.146342,0.146483,0.146425,0.146338,0.146338,0.076921,0.076921,29.995457,29.989475,29.999112,29.998734,29.961342,29.976796,30,30,30,30,,,,,,,,,,,2580,2580,0.375225,0.375225,0.375225,0.375225,0.375225,0.375225,0.375225,0.375225,0.146338,0.146338,30,30,, +11104,0,0.962481,1,1,0,2,5,,5,5,Parker,Rd,1447903,1.554,2.516,0,20.624596,3.7,5,1.924962,1.924962,1.924962,1.924962,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.932853,1.924964,1.924962,1.924962,1.932853,1.924964,1.92497,1.924967,1.924962,1.924962,1.92497,1.924967,1.925176,1.93213,1.924962,1.924962,1.925176,1.93213,1.924962,1.924962,1.924962,1.924962,1.924962,1.924962,,,,,,,1.932853,1.924964,1.92497,1.924967,1.925176,1.93213,1.924962,1.924962,1.924962,1.924962,0.753102,0.750736,0.750738,0.750737,0.750799,0.752886,0.750735,0.750735,0.394617,0.394617,29.877529,29.999977,29.999881,29.999928,29.996677,29.888706,30,30,30,30,,,,,,,,,,,2580,2580,1.924962,1.924962,1.924962,1.924962,1.924962,1.924962,1.924962,1.924962,0.750735,0.750735,30,30,, +24676,0,2.18609,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,46.844796,0.15,4,8.744362,8.744362,8.744362,8.744362,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,,,,,,,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,3.016805,3.016805,3.016805,3.016805,3.016805,3.016805,3.016805,3.016805,1.552124,1.552124,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,8.744362,3.016805,3.016805,15,15,, +11106,0,1.014927,1,1,0,2,5,,5,5,Parker,Rd,1447903,0.498,1.513,0,21.748441,3.7,5,2.029855,2.029855,2.029855,2.029855,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.030336,2.029855,2.029855,2.029855,2.030336,2.029855,2.029855,2.029855,2.029855,2.029855,2.029855,2.029855,2.02987,2.030582,2.029855,2.029855,2.02987,2.030582,2.029855,2.029855,2.029855,2.029855,2.029855,2.029855,,,,,,,2.030336,2.029855,2.029855,2.029855,2.02987,2.030582,2.029855,2.029855,2.029855,2.029855,0.791788,0.791643,0.791643,0.791643,0.791648,0.791862,0.791643,0.791643,0.41612,0.41612,29.99289,30,30,30,29.999773,29.98925,30,30,30,30,,,,,,,,,,,2580,2580,2.029855,2.029855,2.029855,2.029855,2.029855,2.029855,2.029855,2.029855,0.791643,0.791643,30,30,, +10758,0,0.080353,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,0,0.08,0,1.721848,3.7,5,0.160706,0.160706,0.160706,0.160706,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,,,,,,,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.062675,0.062675,0.062675,0.062675,0.062675,0.062675,0.062675,0.062675,0.032945,0.032945,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.160706,0.062675,0.062675,30,30,, +21319,0,0.113724,1,1,0,2,5,,5,5,Pleasant Lake,Rd,4603833,0,0.114,0,2.436948,3.7,5,0.227448,0.227448,0.227448,0.227448,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.227921,0.227449,0.227448,0.227448,0.227921,0.227449,0.227452,0.227451,0.227448,0.227448,0.227452,0.227451,0.22747,0.227769,0.227448,0.227448,0.22747,0.227769,0.227448,0.227448,0.227448,0.227448,0.227448,0.227448,,,,,,,0.227921,0.227449,0.227452,0.227451,0.22747,0.227769,0.227448,0.227448,0.227448,0.227448,0.088847,0.088705,0.088706,0.088706,0.088711,0.088801,0.088705,0.088705,0.046627,0.046627,29.937823,29.999924,29.999528,29.999724,29.997134,29.95777,30,30,30,30,,,,,,,,,,,2580,2580,0.227448,0.227448,0.227448,0.227448,0.227448,0.227448,0.227448,0.227448,0.088705,0.088705,30,30,, +9708,0,0.279432,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,10.521,10.8,0,5.987829,3.7,5,0.558864,0.558864,0.558864,0.558864,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.572,0.55887,0.558864,0.558864,0.572,0.55887,0.558888,0.558878,0.558864,0.558864,0.558888,0.558878,0.55937,0.571245,0.558864,0.558864,0.55937,0.571245,0.558864,0.558864,0.558864,0.558864,0.558864,0.558864,,,,,,,0.572,0.55887,0.558888,0.558878,0.55937,0.571245,0.558864,0.558864,0.558864,0.558864,0.221898,0.217959,0.217964,0.217961,0.218109,0.221671,0.217957,0.217957,0.114567,0.114567,29.311045,29.999685,29.998692,29.999236,29.97284,29.349766,30,30,30,30,,,,,,,,,,,2580,2580,0.558864,0.558864,0.558864,0.558864,0.558864,0.558864,0.558864,0.558864,0.217957,0.217957,30,30,, +11107,0,0.221653,1,1,0,2,5,,5,5,Parker,Rd,1447903,0.218,0.44,0,4.74971,3.7,5,0.443306,0.443306,0.443306,0.443306,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.453726,0.443311,0.443306,0.443306,0.453726,0.443311,0.443326,0.443318,0.443306,0.443306,0.443326,0.443318,0.443708,0.453128,0.443306,0.443306,0.443708,0.453128,0.443306,0.443306,0.443306,0.443306,0.443306,0.443306,,,,,,,0.453726,0.443311,0.443326,0.443318,0.443708,0.453128,0.443306,0.443306,0.443306,0.443306,0.176015,0.172891,0.172895,0.172893,0.17301,0.175836,0.172889,0.172889,0.090878,0.090878,29.311045,29.999685,29.998692,29.999236,29.97284,29.349766,30,30,30,30,,,,,,,,,,,2580,2580,0.443306,0.443306,0.443306,0.443306,0.443306,0.443306,0.443306,0.443306,0.172889,0.172889,30,30,, +10935,0,0.058632,1,1,0,2,5,,5,5,Parker,Rd,1447903,0.44,0.498,0,1.256405,3.7,5,0.117264,0.117264,0.117264,0.117264,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.117288,0.117264,0.117264,0.117264,0.117288,0.117264,0.117264,0.117264,0.117264,0.117264,0.117264,0.117264,0.117265,0.1173,0.117264,0.117264,0.117265,0.1173,0.117264,0.117264,0.117264,0.117264,0.117264,0.117264,,,,,,,0.117288,0.117264,0.117264,0.117264,0.117265,0.1173,0.117264,0.117264,0.117264,0.117264,0.04574,0.045733,0.045733,0.045733,0.045733,0.045744,0.045733,0.045733,0.024039,0.024039,29.994077,30,30,30,29.99983,29.990938,30,30,30,30,,,,,,,,,,,2580,2580,0.117264,0.117264,0.117264,0.117264,0.117264,0.117264,0.117264,0.117264,0.045733,0.045733,30,30,, +10934,0,0.040885,1,1,0,2,5,,5,5,Parker,Rd,1447903,1.513,1.554,0,0.876112,3.7,5,0.08177,0.08177,0.08177,0.08177,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.08179,0.08177,0.08177,0.08177,0.08179,0.08177,0.08177,0.08177,0.08177,0.08177,0.08177,0.08177,0.081771,0.0818,0.08177,0.08177,0.081771,0.0818,0.08177,0.08177,0.08177,0.08177,0.08177,0.08177,,,,,,,0.08179,0.08177,0.08177,0.08177,0.081771,0.0818,0.08177,0.08177,0.08177,0.08177,0.031896,0.03189,0.03189,0.03189,0.031891,0.031899,0.03189,0.03189,0.016763,0.016763,29.99289,30,30,30,29.999773,29.98925,30,30,30,30,,,,,,,,,,,2580,2580,0.08177,0.08177,0.08177,0.08177,0.08177,0.08177,0.08177,0.08177,0.03189,0.03189,30,30,, +11102,0,1.011304,1,1,0,2,5,,5,5,Parker,Rd,1447903,3.41,4.421,0,21.670793,3.7,5,2.022607,2.022607,2.022607,2.022607,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.022648,2.022608,2.022607,2.022607,2.022648,2.022608,2.022608,2.022608,2.022607,2.022607,2.022608,2.022608,2.022647,2.022752,2.022607,2.022607,2.022647,2.022752,2.022607,2.022607,2.022607,2.022607,2.022607,2.022607,,,,,,,2.022648,2.022608,2.022608,2.022608,2.022647,2.022752,2.022607,2.022607,2.022607,2.022607,0.788829,0.788817,0.788817,0.788817,0.788829,0.78886,0.788817,0.788817,0.414635,0.414635,29.99939,29.999985,29.999995,29.999986,29.999419,29.997853,30,30,30,30,,,,,,,,,,,2580,2580,2.022607,2.022607,2.022607,2.022607,2.022607,2.022607,2.022607,2.022607,0.788817,0.788817,30,30,, +10932,0,0.894458,1,1,0,2,5,,5,5,Parker,Rd,1447903,2.516,3.41,0,19.166952,3.7,5,1.788916,1.788916,1.788916,1.788916,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.795686,1.788916,1.788916,1.788916,1.795686,1.788916,1.78892,1.788918,1.788916,1.788916,1.78892,1.788918,1.789073,1.794767,1.788916,1.788916,1.789073,1.794767,1.788916,1.788916,1.788916,1.788916,1.788916,1.788916,,,,,,,1.795686,1.788916,1.78892,1.788918,1.789073,1.794767,1.788916,1.788916,1.788916,1.788916,0.699708,0.697677,0.697679,0.697678,0.697724,0.699433,0.697677,0.697677,0.366728,0.366728,29.886883,29.999984,29.999918,29.999952,29.997357,29.902189,30,30,30,30,,,,,,,,,,,2580,2580,1.788916,1.788916,1.788916,1.788916,1.788916,1.788916,1.788916,1.788916,0.697677,0.697677,30,30,, +10929,0,0.020155,1,1,0,2,5,,4,5,Parker,Rd,1447903,4.421,4.441,0,0.43189,5.8,4.5,0.044789,0.044789,0.044789,0.044789,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.044793,0.044789,0.044789,0.044789,0.044793,0.044789,0.044789,0.044789,0.044789,0.044789,0.044789,0.044789,0.044793,0.044804,0.044789,0.044789,0.044793,0.044804,0.044789,0.044789,0.044789,0.044789,0.044789,0.044789,,,,,,,0.044793,0.044789,0.044789,0.044789,0.044793,0.044804,0.044789,0.044789,0.044789,0.044789,0.017066,0.017065,0.017064,0.017065,0.017066,0.017069,0.017064,0.017064,0.008935,0.008935,26.997111,26.999896,26.999964,26.999905,26.997233,26.991036,27,27,27,27,,,,,,,,,,,2580,2580,0.044789,0.044789,0.044789,0.044789,0.044789,0.044789,0.044789,0.044789,0.017064,0.017064,27,27,, +9549,0,0.987816,1,1,0,2,5,GRV,5,5,Dancer,Rd,1426604,2.024,3.012,0,21.167492,5.55,5,2.963449,2.963449,2.963449,2.963449,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.963546,3.004226,2.963449,2.963449,2.963546,3.004226,2.963982,2.964078,2.963449,2.963449,2.963982,2.964078,2.979774,2.96581,2.963449,2.963449,2.979774,2.96581,2.963449,2.963449,2.963449,2.963449,2.963449,2.963449,,,,,,,2.963546,3.004226,2.963982,2.964078,2.979774,2.96581,2.963449,2.963449,2.963449,2.963449,1.066871,1.079075,1.067001,1.06703,1.071739,1.06755,1.066842,1.066842,0.553177,0.553177,19.999343,19.728536,19.996405,19.995755,19.890424,19.984077,20,20,20,20,,,,,,,,,,,2236,2236,2.963449,2.963449,2.963449,2.963449,2.963449,2.963449,2.963449,2.963449,1.066842,1.066842,20,20,, +9684,0,2.085783,1,1,0,2,4,,5,5,Jackson,Rd,1426508,11.011,13.096,0,44.69536,3,4,3.128675,3.128675,3.128675,3.128675,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.890728,3.164204,3.128675,3.128675,3.890728,3.164204,3.146418,3.149413,3.128675,3.128675,3.146418,3.149413,3.35288,3.788282,3.128675,3.128675,3.35288,3.788282,3.128675,3.128675,3.128675,3.128675,3.128675,3.128675,,,,,,,3.890728,3.164204,3.146418,3.149413,3.35288,3.788282,3.128675,3.128675,3.128675,3.128675,1.542659,1.324702,1.319367,1.320265,1.381305,1.511926,1.314044,1.314044,0.698737,0.698737,32.165446,39.550869,39.774435,39.73661,37.325227,33.035293,40,40,40,40,,,,,,,,,,,3096,3096,3.128675,3.128675,3.128675,3.128675,3.128675,3.128675,3.128675,3.128675,1.314044,1.314044,40,40,, +11099,0,1.444767,1,1,0,2,4,,4,5,Parker,Rd,1447903,6.032,7.476,0,30.959303,4.5,4.5,2.281212,2.281212,2.281212,2.281212,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.281495,2.319106,2.281212,2.281212,2.281495,2.319106,2.281215,2.281213,2.281212,2.281212,2.281215,2.281213,2.300316,2.28159,2.281212,2.281212,2.300316,2.28159,2.281212,2.281212,2.281212,2.281212,2.281212,2.281212,,,,,,,2.281495,2.319106,2.281215,2.281213,2.300316,2.28159,2.281212,2.281212,2.281212,2.281212,0.944507,0.95579,0.944423,0.944422,0.950153,0.944535,0.944422,0.944422,0.501106,0.501106,37.995286,37.379075,37.999947,37.999979,37.684411,37.993704,38,38,38,38,,,,,,,,,,,3096,3096,2.281212,2.281212,2.281212,2.281212,2.281212,2.281212,2.281212,2.281212,0.944422,0.944422,38,38,, +11214,0,2.347649,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,4.112,6.459,0,50.306771,3.7,5,4.695299,4.695299,4.695299,4.695299,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.69592,4.695459,4.695299,4.695299,4.69592,4.695459,4.695323,4.695328,4.695299,4.695299,4.695323,4.695328,4.695746,4.696509,4.695299,4.695299,4.695746,4.696509,4.695299,4.695299,4.695299,4.695299,4.695299,4.695299,,,,,,,4.69592,4.695459,4.695323,4.695328,4.695746,4.696509,4.695299,4.695299,4.695299,4.695299,1.831353,1.831214,1.831174,1.831175,1.831301,1.831529,1.831166,1.831166,0.962536,0.962536,29.996028,29.998978,29.999844,29.999813,29.997142,29.992271,30,30,30,30,,,,,,,,,,,2580,2580,4.695299,4.695299,4.695299,4.695299,4.695299,4.695299,4.695299,4.695299,1.831166,1.831166,30,30,, +9548,0,1.006676,1,1,0,2,5,GRV,5,5,Dancer,Rd,1426604,3.012,4.018,0,21.571633,5.55,5,3.020029,3.020029,3.020029,3.020029,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,,,,,,,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,1.08721,1.08721,1.08721,1.08721,1.08721,1.08721,1.08721,1.08721,0.563739,0.563739,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,3.020029,1.08721,1.08721,20,20,, +24730,0,0.861322,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.456904,0.15,4,3.445289,3.445289,3.445289,3.445289,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,,,,,,,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,1.188625,1.188625,1.188625,1.188625,1.188625,1.188625,1.188625,1.188625,0.611539,0.611539,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,3.445289,1.188625,1.188625,15,15,, +10927,0,0.595922,1,1,0,2,5,,4,5,Parker,Rd,1447903,5.436,6.032,0,12.769763,5.8,4.5,1.324272,1.324272,1.324272,1.324272,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.326382,1.325535,1.324272,1.324272,1.326382,1.325535,1.324472,1.324318,1.324272,1.324272,1.324472,1.324318,1.327751,1.329586,1.324272,1.324272,1.327751,1.329586,1.324272,1.324272,1.324272,1.324272,1.324272,1.324272,,,,,,,1.326382,1.325535,1.324472,1.324318,1.327751,1.329586,1.324272,1.324272,1.324272,1.324272,0.505181,0.504926,0.504608,0.504561,0.505591,0.506142,0.504548,0.504548,0.264192,0.264192,26.95705,26.974273,26.995913,26.999056,26.92925,26.892079,27,27,27,27,,,,,,,,,,,2580,2580,1.324272,1.324272,1.324272,1.324272,1.324272,1.324272,1.324272,1.324272,0.504548,0.504548,27,27,, +10925,0,1.517113,1,1,0,2,4,,4,5,Parker,Rd,1447903,7.476,8.993,0,32.509556,4.5,4.5,2.395441,2.395441,2.395441,2.395441,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.395545,2.512488,2.395441,2.395441,2.395545,2.512488,2.395455,2.395447,2.395441,2.395441,2.395455,2.395447,2.449851,2.395668,2.395441,2.395441,2.449851,2.395668,2.395441,2.395441,2.395441,2.395441,2.395441,2.395441,,,,,,,2.395545,2.512488,2.395455,2.395447,2.449851,2.395668,2.395441,2.395441,2.395441,2.395441,0.991744,1.026827,0.991717,0.991714,1.008036,0.991781,0.991713,0.991713,0.526199,0.526199,37.998343,36.229727,37.999778,37.999904,37.156032,37.9964,38,38,38,38,,,,,,,,,,,3096,3096,2.395441,2.395441,2.395441,2.395441,2.395441,2.395441,2.395441,2.395441,0.991713,0.991713,38,38,, +24733,0,0.440558,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.440522,0.15,4,1.762231,1.762231,1.762231,1.762231,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,,,,,,,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,0.60797,0.60797,0.60797,0.60797,0.60797,0.60797,0.60797,0.60797,0.312796,0.312796,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,1.762231,0.60797,0.60797,15,15,, +5714,0,0.649297,1,1,0,2,6,,4,8,Unadilla,St,932504,0,0.649,0,13.913499,6.55,4.5,1.442881,1.442881,1.442881,1.442881,27,27,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.442937,1.442881,1.442881,1.442881,1.442937,1.442881,1.442881,1.442881,1.442881,1.442881,1.442881,1.442881,1.442882,1.442931,1.442881,1.442881,1.442882,1.442931,1.442881,1.442881,1.442881,1.442881,1.442881,1.442881,,,,,,,1.442937,1.442881,1.442881,1.442881,1.442882,1.442931,1.442881,1.442881,1.442881,1.442881,0.549754,0.549738,0.549738,0.549738,0.549738,0.549753,0.549738,0.549738,0.287855,0.287855,26.998964,27,27,27,26.999997,26.99908,27,27,27,27,,,,,,,,,,,2236,2236,1.442881,1.442881,1.442881,1.442881,1.442881,1.442881,1.442881,1.442881,0.549738,0.549738,27,27,, +5921,0,0.446166,1,1,1,2,4,,4,8,Main,St,932308,6.027,6.473,0,9.560692,4.5,4.5,0.704472,0.704472,0.704472,0.704472,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.737363,0.705085,0.704472,0.704472,0.737363,0.705085,0.708496,0.70715,0.704472,0.704472,0.708496,0.70715,0.710288,0.731324,0.704472,0.704472,0.710288,0.731324,0.704472,0.704472,0.704472,0.704472,0.704472,0.704472,,,,,,,0.737363,0.705085,0.708496,0.70715,0.710288,0.731324,0.704472,0.704472,0.704472,0.704472,0.301519,0.291835,0.292859,0.292455,0.293396,0.299707,0.291651,0.291651,0.154749,0.154749,36.304981,37.966965,37.784193,37.856076,37.688865,36.604753,38,38,38,38,,,,,,,,,,,3406,3406,0.704472,0.704472,0.704472,0.704472,0.704472,0.704472,0.704472,0.704472,0.291651,0.291651,38,38,, +6493,0,2.388112,1,1,0,2,5,,5,8,Patterson Lake,Rd,932401,1.964,4.352,0,51.17383,3.7,5,4.776224,4.776224,4.776224,4.776224,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.821859,4.776291,4.776224,4.776224,4.821859,4.776291,4.777183,4.776718,4.776224,4.776224,4.777183,4.776718,4.778014,4.817971,4.776224,4.776224,4.778014,4.817971,4.776224,4.776224,4.776224,4.776224,4.776224,4.776224,,,,,,,4.821859,4.776291,4.777183,4.776718,4.778014,4.817971,4.776224,4.776224,4.776224,4.776224,1.876418,1.862747,1.863015,1.862876,1.863264,1.875251,1.862727,1.862727,0.979126,0.979126,29.716076,29.999581,29.993981,29.996896,29.988765,29.740057,30,30,30,30,,,,,,,,,,,2580,2580,4.776224,4.776224,4.776224,4.776224,4.776224,4.776224,4.776224,4.776224,1.862727,1.862727,30,30,, +10044,0,0.969371,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,6.505,7.474,0,20.772246,3.7,5,1.938743,1.938743,1.938743,1.938743,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.06868,1.939714,1.938743,1.938743,2.06868,1.939714,1.940475,1.939605,1.938743,1.938743,1.940475,1.939605,1.943724,2.05767,1.938743,1.938743,1.943724,2.05767,1.938743,1.938743,1.938743,1.938743,1.938743,1.938743,,,,,,,2.06868,1.939714,1.940475,1.939605,1.943724,2.05767,1.938743,1.938743,1.938743,1.938743,0.795091,0.756401,0.756629,0.756368,0.757604,0.791788,0.75611,0.75611,0.397442,0.397442,28.115654,29.984984,29.973217,29.986665,29.923121,28.266086,30,30,30,30,,,,,,,,,,,2580,2580,1.938743,1.938743,1.938743,1.938743,1.938743,1.938743,1.938743,1.938743,0.75611,0.75611,30,30,, +10713,0,1.610175,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,2.926,4.536,0,34.503755,3.7,5,3.220351,3.220351,3.220351,3.220351,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.226681,3.50373,3.220351,3.220351,3.226681,3.50373,3.222026,3.223151,3.220351,3.220351,3.222026,3.223151,3.449209,3.241477,3.220351,3.220351,3.449209,3.241477,3.220351,3.220351,3.220351,3.220351,3.220351,3.220351,,,,,,,3.226681,3.50373,3.222026,3.223151,3.449209,3.241477,3.220351,3.220351,3.220351,3.220351,1.257836,1.340951,1.256439,1.256777,1.324594,1.262275,1.255937,1.255937,0.660172,0.660172,29.941142,27.573616,29.9844,29.973934,28.009471,29.804477,30,30,30,30,,,,,,,,,,,2580,2580,3.220351,3.220351,3.220351,3.220351,3.220351,3.220351,3.220351,3.220351,1.255937,1.255937,30,30,, +11005,0,0.937562,1,1,0,2,5,,5,5,Island Lake,Rd,1453208,1.097,2.034,0,20.090617,3.7,5,1.875124,1.875124,1.875124,1.875124,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.875125,1.87522,1.875124,1.875124,1.875125,1.87522,1.875126,1.875127,1.875124,1.875124,1.875126,1.875127,1.875268,1.875141,1.875124,1.875124,1.875268,1.875141,1.875124,1.875124,1.875124,1.875124,1.875124,1.875124,,,,,,,1.875125,1.87522,1.875126,1.875127,1.875268,1.875141,1.875124,1.875124,1.875124,1.875124,0.731299,0.731327,0.731299,0.731299,0.731342,0.731303,0.731298,0.731298,0.3844,0.3844,29.999987,29.998475,29.999972,29.999957,29.997692,29.999734,30,30,30,30,,,,,,,,,,,2580,2580,1.875124,1.875124,1.875124,1.875124,1.875124,1.875124,1.875124,1.875124,0.731298,0.731298,30,30,, +11108,0,1.571653,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,3.577,5.148,0,33.678276,3,4,2.357479,2.357479,2.357479,2.357479,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.458502,5.103202,2.357479,2.357479,2.458502,5.103202,2.434469,2.448025,2.357479,2.357479,2.434469,2.448025,4.101175,2.668817,2.357479,2.357479,4.101175,2.668817,2.357479,2.357479,2.357479,2.357479,2.357479,2.357479,,,,,,,2.458502,5.103202,2.434469,2.448025,4.101175,2.668817,2.357479,2.357479,2.357479,2.357479,1.020448,1.813858,1.013238,1.017305,1.51325,1.083542,0.990141,0.990141,0.526504,0.526504,38.356356,18.478432,38.734999,38.520516,22.993206,35.333704,40,40,40,40,,,,,,,,,,,3096,3096,2.357479,2.357479,2.357479,2.357479,2.357479,2.357479,2.357479,2.357479,0.990141,0.990141,40,40,, +11421,0,2.312564,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,0.615,2.926,0,49.554941,3.7,5,4.625128,4.625128,4.625128,4.625128,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.625208,4.625317,4.625128,4.625128,4.625208,4.625317,4.625168,4.625154,4.625128,4.625128,4.625168,4.625154,4.625479,4.625274,4.625128,4.625128,4.625479,4.625274,4.625128,4.625128,4.625128,4.625128,4.625128,4.625128,,,,,,,4.625208,4.625317,4.625168,4.625154,4.625479,4.625274,4.625128,4.625128,4.625128,4.625128,1.803824,1.803856,1.803812,1.803808,1.803905,1.803844,1.8038,1.8038,0.948151,0.948151,29.999481,29.998775,29.999742,29.999827,29.997723,29.999054,30,30,30,30,,,,,,,,,,,2580,2580,4.625128,4.625128,4.625128,4.625128,4.625128,4.625128,4.625128,4.625128,1.8038,1.8038,30,30,, +11424,0,2.260696,1,1,0,2,5,,5,5,Hankerd,Rd,1451910,0.427,2.687,0,48.443484,3.7,5,4.521392,4.521392,4.521392,4.521392,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.521392,4.521393,4.521392,4.521392,4.521392,4.521393,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,,,,,,,4.521392,4.521393,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,1.763343,1.763343,1.763343,1.763343,1.763343,1.763343,1.763343,1.763343,0.926885,0.926885,30,29.999993,30,30,29.999999,30,30,30,30,30,,,,,,,,,,,2580,2580,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,4.521392,1.763343,1.763343,30,30,, +19869,0,0.248405,1,1,0,2,5,GRV,5,5,Dexter Town Hall,Rd,4104130,0,0.248,0,5.322957,5.55,5,0.745214,0.745214,0.745214,0.745214,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.776347,0.766398,0.745214,0.745214,0.776347,0.766398,0.749011,0.749603,0.745214,0.745214,0.749011,0.749603,0.801247,0.78484,0.745214,0.745214,0.801247,0.78484,0.745214,0.745214,0.745214,0.745214,0.745214,0.745214,,,,,,,0.776347,0.766398,0.749011,0.749603,0.801247,0.78484,0.745214,0.745214,0.745214,0.745214,0.277617,0.274632,0.269416,0.269594,0.285087,0.280165,0.268277,0.268277,0.139107,0.139107,19.197952,19.447171,19.898604,19.88289,18.60135,18.990217,20,20,20,20,,,,,,,,,,,2236,2236,0.745214,0.745214,0.745214,0.745214,0.745214,0.745214,0.745214,0.745214,0.268277,0.268277,20,20,, +24632,0,2.300856,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,49.30406,0.15,4,9.203424,9.203424,9.203424,9.203424,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,,,,,,,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,3.175181,3.175181,3.175181,3.175181,3.175181,3.175181,3.175181,3.175181,1.633608,1.633608,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,9.203424,3.175181,3.175181,15,15,, +24754,0,2.492948,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,53.420305,0.15,4,9.97179,9.97179,9.97179,9.97179,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,,,,,,,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,3.440268,3.440268,3.440268,3.440268,3.440268,3.440268,3.440268,3.440268,1.769993,1.769993,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,9.97179,3.440268,3.440268,15,15,, +24755,0,2.161225,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,46.311971,0.15,4,8.644901,8.644901,8.644901,8.644901,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,,,,,,,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,2.982491,2.982491,2.982491,2.982491,2.982491,2.982491,2.982491,2.982491,1.53447,1.53447,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,8.644901,2.982491,2.982491,15,15,, +24756,0,0.665385,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.258249,0.15,4,2.66154,2.66154,2.66154,2.66154,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.661543,2.66154,2.66154,2.66154,2.661543,2.66154,2.66154,2.66154,2.66154,2.66154,2.66154,2.66154,2.66154,2.661543,2.66154,2.66154,2.66154,2.661543,2.66154,2.66154,2.66154,2.66154,2.66154,2.66154,,,,,,,2.661543,2.66154,2.66154,2.66154,2.66154,2.661543,2.66154,2.66154,2.66154,2.66154,0.918232,0.918231,0.918231,0.918231,0.918231,0.918232,0.918231,0.918231,0.472423,0.472423,14.999981,15,14.999999,15,14.999998,14.999983,15,15,15,15,,,,,,,,,,,34400,34400,2.66154,2.66154,2.66154,2.66154,2.66154,2.66154,2.66154,2.66154,0.918231,0.918231,15,15,, +29637,0,1.695492,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.331967,0.15,4,6.781967,6.781967,6.781967,6.781967,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,,,,,,,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,2.339779,2.339779,2.339779,2.339779,2.339779,2.339779,2.339779,2.339779,1.203799,1.203799,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,6.781967,2.339779,2.339779,15,15,, +10046,0,1.555319,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,4.95,6.505,0,33.328271,3.7,5,3.110639,3.110639,3.110639,3.110639,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.13443,3.121108,3.110639,3.110639,3.13443,3.121108,3.111059,3.11105,3.110639,3.110639,3.111059,3.11105,3.124518,3.145979,3.110639,3.110639,3.124518,3.145979,3.110639,3.110639,3.110639,3.110639,3.110639,3.110639,,,,,,,3.13443,3.121108,3.111059,3.11105,3.124518,3.145979,3.110639,3.110639,3.110639,3.110639,1.220287,1.21629,1.213275,1.213273,1.217313,1.223751,1.213149,1.213149,0.637681,0.637681,29.772288,29.899366,29.99595,29.996031,29.866737,29.662999,30,30,30,30,,,,,,,,,,,2580,2580,3.110639,3.110639,3.110639,3.110639,3.110639,3.110639,3.110639,3.110639,1.213149,1.213149,30,30,, +11060,0,1.012014,1,1,0,2,5,,5,5,Stofer,Rd,1453802,0.062,1.073,0,21.686015,3.7,5,2.024028,2.024028,2.024028,2.024028,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.024188,2.08154,2.024028,2.024028,2.024188,2.08154,2.024087,2.024124,2.024028,2.024028,2.024087,2.024124,2.047876,2.024636,2.024028,2.024028,2.047876,2.024636,2.024028,2.024028,2.024028,2.024028,2.024028,2.024028,,,,,,,2.024188,2.08154,2.024087,2.024124,2.047876,2.024636,2.024028,2.024028,2.024028,2.024028,0.789419,0.806624,0.789389,0.7894,0.796525,0.789553,0.789371,0.789371,0.414926,0.414926,29.997628,29.171117,29.999128,29.99858,29.650648,29.990988,30,30,30,30,,,,,,,,,,,2580,2580,2.024028,2.024028,2.024028,2.024028,2.024028,2.024028,2.024028,2.024028,0.789371,0.789371,30,30,, +11195,0,1.097211,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1453208,0,1.097,0,23.511657,5.55,5,3.291632,3.291632,3.291632,3.291632,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,,,,,,,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,1.184987,1.184987,1.184987,1.184987,1.184987,1.184987,1.184987,1.184987,0.614438,0.614438,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,3.291632,1.184987,1.184987,20,20,, +24620,0,1.370546,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.368832,0.15,4,5.482182,5.482182,5.482182,5.482182,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,,,,,,,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,1.891353,1.891353,1.891353,1.891353,1.891353,1.891353,1.891353,1.891353,0.973087,0.973087,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,5.482182,1.891353,1.891353,15,15,, +11475,0,1.623304,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1451905,1.715,3.338,0,34.785081,5.55,5,4.869911,4.869911,4.869911,4.869911,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.869913,4.869912,4.869911,4.869911,4.869913,4.869912,4.869912,4.869912,4.869911,4.869911,4.869912,4.869912,4.869912,4.869915,4.869911,4.869911,4.869912,4.869915,4.869911,4.869911,4.869911,4.869911,4.869911,4.869911,,,,,,,4.869913,4.869912,4.869912,4.869912,4.869912,4.869915,4.869911,4.869911,4.869911,4.869911,1.753169,1.753168,1.753168,1.753168,1.753168,1.753169,1.753168,1.753168,0.90905,0.90905,19.999992,19.999998,19.999999,19.999999,19.999997,19.999987,20,20,20,20,,,,,,,,,,,2236,2236,4.869911,4.869911,4.869911,4.869911,4.869911,4.869911,4.869911,4.869911,1.753168,1.753168,20,20,, +10771,0,0.060703,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1451905,1.655,1.715,0,1.300789,5.55,5,0.18211,0.18211,0.18211,0.18211,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,,,,,,,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.06556,0.06556,0.06556,0.06556,0.06556,0.06556,0.06556,0.06556,0.033994,0.033994,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.18211,0.06556,0.06556,20,20,, +11233,0,0.061706,1,1,0,2,5,GRV,5,5,Stofer,Rd,1453802,0,0.062,0,1.322276,5.55,5,0.185119,0.185119,0.185119,0.185119,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,,,,,,,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.066643,0.066643,0.066643,0.066643,0.066643,0.066643,0.066643,0.066643,0.034555,0.034555,20,19.999997,20,20,19.999998,20,20,20,20,20,,,,,,,,,,,2236,2236,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.185119,0.066643,0.066643,20,20,, +21965,0,0.081803,1,1,0,2,5,,5,5,Island Lake,Rd,4600501,0,0.082,0,1.752916,3.7,5,0.163606,0.163606,0.163606,0.163606,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.163612,0.166807,0.163606,0.163606,0.163612,0.166807,0.163608,0.163609,0.163606,0.163606,0.163608,0.163609,0.164881,0.163632,0.163606,0.163606,0.164881,0.163632,0.163606,0.163606,0.163606,0.163606,0.163606,0.163606,,,,,,,0.163612,0.166807,0.163608,0.163609,0.164881,0.163632,0.163606,0.163606,0.163606,0.163606,0.063808,0.064766,0.063807,0.063807,0.064189,0.063814,0.063806,0.063806,0.033539,0.033539,29.99881,29.424287,29.999618,29.999353,29.76801,29.995076,30,30,30,30,,,,,,,,,,,2580,2580,0.163606,0.163606,0.163606,0.163606,0.163606,0.163606,0.163606,0.163606,0.063806,0.063806,30,30,, +10737,0,0.182091,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1451909,0,0.182,0,3.90196,5.55,5,0.546274,0.546274,0.546274,0.546274,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,,,,,,,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.196659,0.196659,0.196659,0.196659,0.196659,0.196659,0.196659,0.196659,0.101971,0.101971,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.546274,0.196659,0.196659,20,20,, +10058,0,1.36571,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,3.585,4.95,0,29.265207,3.7,5,2.731419,2.731419,2.731419,2.731419,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.764807,2.763113,2.731419,2.731419,2.764807,2.763113,2.733062,2.73322,2.731419,2.731419,2.733062,2.73322,2.773117,2.808103,2.731419,2.731419,2.773117,2.808103,2.731419,2.731419,2.731419,2.731419,2.731419,2.731419,,,,,,,2.764807,2.763113,2.733062,2.73322,2.773117,2.808103,2.731419,2.731419,2.731419,2.731419,1.07527,1.074762,1.065746,1.065794,1.077763,1.088259,1.065254,1.065254,0.559941,0.559941,29.637723,29.655889,29.981964,29.980234,29.548906,29.180761,30,30,30,30,,,,,,,,,,,2580,2580,2.731419,2.731419,2.731419,2.731419,2.731419,2.731419,2.731419,2.731419,1.065254,1.065254,30,30,, +10720,0,0.427093,1,1,0,2,5,,5,5,Hankerd,Rd,1451910,0,0.427,0,9.152002,3.7,5,0.854187,0.854187,0.854187,0.854187,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.854187,0.8542,0.854187,0.854187,0.854187,0.8542,0.854188,0.854188,0.854187,0.854187,0.854188,0.854188,0.854197,0.854192,0.854187,0.854187,0.854197,0.854192,0.854187,0.854187,0.854187,0.854187,0.854187,0.854187,,,,,,,0.854187,0.8542,0.854188,0.854188,0.854197,0.854192,0.854187,0.854187,0.854187,0.854187,0.333133,0.333137,0.333133,0.333133,0.333136,0.333134,0.333133,0.333133,0.175108,0.175108,29.999984,29.999543,29.999971,29.999958,29.999647,29.999825,30,30,30,30,,,,,,,,,,,2580,2580,0.854187,0.854187,0.854187,0.854187,0.854187,0.854187,0.854187,0.854187,0.333133,0.333133,30,30,, +6824,0,0.812551,1,1,0,2,5,,5,8,Patterson Lake,Rd,932401,1.152,1.964,0,17.411817,3.7,5,1.625103,1.625103,1.625103,1.625103,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.625103,1.625104,1.625103,1.625103,1.625103,1.625104,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,,,,,,,1.625103,1.625104,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,0.63379,0.63379,0.63379,0.63379,0.63379,0.63379,0.63379,0.63379,0.333146,0.333146,29.999992,29.999987,30,29.999999,29.999992,29.99999,30,30,30,30,,,,,,,,,,,2580,2580,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,1.625103,0.63379,0.63379,30,30,, +19870,0,0.753011,1,1,0,2,5,,5,8,Glen Brook,Rd,4104128,0.225,0.977,0,16.135955,3.7,5,1.506022,1.506022,1.506022,1.506022,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.506022,1.506023,1.506022,1.506022,1.506022,1.506023,1.506022,1.506022,1.506022,1.506022,1.506022,1.506022,1.506023,1.506022,1.506022,1.506022,1.506023,1.506022,1.506022,1.506022,1.506022,1.506022,1.506022,1.506022,,,,,,,1.506022,1.506023,1.506022,1.506022,1.506023,1.506022,1.506022,1.506022,1.506022,1.506022,0.587349,0.587349,0.587349,0.587349,0.587349,0.587349,0.587349,0.587349,0.308735,0.308735,30,29.999993,30,30,29.999999,30,30,30,30,30,,,,,,,,,,,2580,2580,1.506022,1.506022,1.506022,1.506022,1.506022,1.506022,1.506022,1.506022,0.587349,0.587349,30,30,, +19871,0,0.224746,1,1,0,2,5,,5,5,Glenbrook,Rd,4104128,0,0.225,0,4.815994,3.7,5,0.449493,0.449493,0.449493,0.449493,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,,,,,,,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.175302,0.175302,0.175302,0.175302,0.175302,0.175302,0.175302,0.175302,0.092146,0.092146,30,29.999993,30,30,29.999999,30,30,30,30,30,,,,,,,,,,,2580,2580,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.449493,0.175302,0.175302,30,30,, +24664,0,0.712899,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.276401,0.15,4,2.851595,2.851595,2.851595,2.851595,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,,,,,,,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,0.9838,0.9838,0.9838,0.9838,0.9838,0.9838,0.9838,0.9838,0.506158,0.506158,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,2.851595,0.9838,0.9838,15,15,, +11418,0,0.558022,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,4.536,5.094,0,11.957625,3.7,5,1.116045,1.116045,1.116045,1.116045,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.131247,1.126389,1.116045,1.116045,1.131247,1.126389,1.117899,1.118188,1.116045,1.116045,1.117899,1.118188,1.143377,1.135374,1.116045,1.116045,1.143377,1.135374,1.116045,1.116045,1.116045,1.116045,1.116045,1.116045,,,,,,,1.131247,1.126389,1.117899,1.118188,1.143377,1.135374,1.116045,1.116045,1.116045,1.116045,0.439818,0.438361,0.435814,0.4359,0.443457,0.441056,0.435258,0.435258,0.228789,0.228789,29.596858,29.724504,29.950253,29.942513,29.282863,29.489276,30,30,30,30,,,,,,,,,,,2580,2580,1.116045,1.116045,1.116045,1.116045,1.116045,1.116045,1.116045,1.116045,0.435258,0.435258,30,30,, +24757,0,0.53354,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.432991,0.15,4,2.134158,2.134158,2.134158,2.134158,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.134159,2.134158,2.134158,2.134158,2.134159,2.134158,2.134158,2.134158,2.134158,2.134158,2.134158,2.134158,2.134158,2.134159,2.134158,2.134158,2.134158,2.134159,2.134158,2.134158,2.134158,2.134158,2.134158,2.134158,,,,,,,2.134159,2.134158,2.134158,2.134158,2.134158,2.134159,2.134158,2.134158,2.134158,2.134158,0.736285,0.736285,0.736285,0.736285,0.736285,0.736285,0.736285,0.736285,0.378813,0.378813,14.999997,15,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.134158,2.134158,2.134158,2.134158,2.134158,2.134158,2.134158,2.134158,0.736285,0.736285,15,15,, +10033,0,1.333514,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,7.474,8.807,0,28.57531,3,4,2.000272,2.000272,2.000272,2.000272,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.11733,2.002601,2.000272,2.000272,2.11733,2.002601,2.003968,2.002387,2.000272,2.000272,2.003968,2.002387,2.008889,2.109348,2.000272,2.000272,2.008889,2.109348,2.000272,2.000272,2.000272,2.000272,2.000272,2.000272,,,,,,,2.11733,2.002601,2.003968,2.002387,2.008889,2.109348,2.000272,2.000272,2.000272,2.000272,0.875232,0.840813,0.841223,0.840749,0.842699,0.872837,0.840114,0.840114,0.446727,0.446727,37.788559,39.953483,39.92621,39.957745,39.82842,37.931558,40,40,40,40,,,,,,,,,,,3096,3096,2.000272,2.000272,2.000272,2.000272,2.000272,2.000272,2.000272,2.000272,0.840114,0.840114,40,40,, +11131,0,1.16458,1,1,0,2,5,,5,5,Huron River,Dr,1445801,2.039,3.203,0,24.955283,3.7,5,2.32916,2.32916,2.32916,2.32916,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.366364,2.32916,2.32916,2.32916,2.366364,2.32916,2.32916,2.32916,2.32916,2.32916,2.32916,2.32916,2.329161,2.338264,2.32916,2.32916,2.329161,2.338264,2.32916,2.32916,2.32916,2.32916,2.32916,2.32916,,,,,,,2.366364,2.32916,2.32916,2.32916,2.329161,2.338264,2.32916,2.32916,2.32916,2.32916,0.919534,0.908372,0.908372,0.908372,0.908373,0.911104,0.908372,0.908372,0.477478,0.477478,29.528332,29.999992,29.999998,29.999999,29.999981,29.883187,30,30,30,30,,,,,,,,,,,2580,2580,2.32916,2.32916,2.32916,2.32916,2.32916,2.32916,2.32916,2.32916,0.908372,0.908372,30,30,, +11151,0,2.475127,1,1,0,2,5,,5,5,Island Lake,Rd,1453208,2.034,4.508,0,53.038435,3.7,5,4.950254,4.950254,4.950254,4.950254,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.793478,4.950915,4.950254,4.950254,5.793478,4.950915,4.955696,4.953059,4.950254,4.950254,4.955696,4.953059,4.966078,5.55005,4.950254,4.950254,4.966078,5.55005,4.950254,4.950254,4.950254,4.950254,4.950254,4.950254,,,,,,,5.793478,4.950915,4.955696,4.953059,4.966078,5.55005,4.950254,4.950254,4.950254,4.950254,2.183566,1.930797,1.932232,1.93144,1.935346,2.110538,1.930599,1.930599,1.014802,1.014802,25.633585,29.995995,29.967056,29.983013,29.90441,26.757891,30,30,30,30,,,,,,,,,,,2580,2580,4.950254,4.950254,4.950254,4.950254,4.950254,4.950254,4.950254,4.950254,1.930599,1.930599,30,30,, +11314,0,1.801934,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,1.775,3.577,0,38.612869,3,4,2.702901,2.702901,2.702901,2.702901,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.784729,3.280128,2.702901,2.702901,2.784729,3.280128,2.743901,2.747896,2.702901,2.702901,2.743901,2.747896,3.219929,2.870269,2.702901,2.702901,3.219929,2.870269,2.702901,2.702901,2.702901,2.702901,2.702901,2.702901,,,,,,,2.784729,3.280128,2.743901,2.747896,3.219929,2.870269,2.702901,2.702901,2.702901,2.702901,1.159767,1.308386,1.147519,1.148717,1.290327,1.185429,1.135218,1.135218,0.603648,0.603648,38.824611,32.960923,39.402303,39.345017,33.577144,37.667559,40,40,40,40,,,,,,,,,,,3096,3096,2.702901,2.702901,2.702901,2.702901,2.702901,2.702901,2.702901,2.702901,1.135218,1.135218,40,40,, +10719,0,0.61486,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,0,0.615,0,13.175565,3.7,5,1.229719,1.229719,1.229719,1.229719,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.230368,1.744978,1.229719,1.229719,1.230368,1.744978,1.232084,1.234087,1.229719,1.229719,1.232084,1.234087,1.648144,1.244765,1.229719,1.229719,1.648144,1.244765,1.229719,1.229719,1.229719,1.229719,1.229719,1.229719,,,,,,,1.230368,1.744978,1.232084,1.234087,1.648144,1.244765,1.229719,1.229719,1.229719,1.229719,0.479785,0.634168,0.4803,0.480901,0.605118,0.484104,0.479591,0.479591,0.252092,0.252092,29.984197,21.141578,29.942427,29.893834,22.383716,29.637386,30,30,30,30,,,,,,,,,,,2580,2580,1.229719,1.229719,1.229719,1.229719,1.229719,1.229719,1.229719,1.229719,0.479591,0.479591,30,30,, +11316,0,1.489333,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,0,1.489,0,31.914284,3,4,2.234,2.234,2.234,2.234,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.26283,2.710905,2.234,2.234,2.26283,2.710905,2.267888,2.27119,2.234,2.234,2.267888,2.27119,2.661334,2.304771,2.234,2.234,2.661334,2.304771,2.234,2.234,2.234,2.234,2.234,2.234,,,,,,,2.26283,2.710905,2.267888,2.27119,2.661334,2.304771,2.234,2.234,2.234,2.234,0.946929,1.081351,0.948446,0.949437,1.06648,0.959511,0.93828,0.93828,0.498927,0.498927,39.490377,32.963165,39.402303,39.345017,33.577144,38.771742,40,40,40,40,,,,,,,,,,,3096,3096,2.234,2.234,2.234,2.234,2.234,2.234,2.234,2.234,0.93828,0.93828,40,40,, +24617,0,1.073627,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.006285,0.15,4,4.294507,4.294507,4.294507,4.294507,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,,,,,,,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,1.481605,1.481605,1.481605,1.481605,1.481605,1.481605,1.481605,1.481605,0.762275,0.762275,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,4.294507,1.481605,1.481605,15,15,, +24618,0,0.29016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.217705,0.15,4,1.160638,1.160638,1.160638,1.160638,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,,,,,,,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,0.40042,0.40042,0.40042,0.40042,0.40042,0.40042,0.40042,0.40042,0.206013,0.206013,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,1.160638,0.40042,0.40042,15,15,, +11112,0,0.28664,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,1.489,1.775,0,6.14228,3,4,0.42996,0.42996,0.42996,0.42996,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.4357,0.523929,0.42996,0.42996,0.4357,0.523929,0.436581,0.437339,0.42996,0.42996,0.436581,0.437339,0.513846,0.444029,0.42996,0.42996,0.513846,0.444029,0.42996,0.42996,0.42996,0.42996,0.42996,0.42996,,,,,,,0.4357,0.523929,0.436581,0.437339,0.513846,0.444029,0.42996,0.42996,0.42996,0.42996,0.182305,0.208774,0.182569,0.182797,0.205749,0.184804,0.180583,0.180583,0.096024,0.096024,39.473008,32.825807,39.393359,39.32504,33.469928,38.732592,40,40,40,40,,,,,,,,,,,3096,3096,0.42996,0.42996,0.42996,0.42996,0.42996,0.42996,0.42996,0.42996,0.180583,0.180583,40,40,, +11103,0,0.186497,1,1,0,2,4,,4,5,Island Lake,Rd,1446002,0.239,0.426,0,3.996355,4.5,4.5,0.294468,0.294468,0.294468,0.294468,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.433076,0.308477,0.294468,0.294468,1.433076,0.308477,0.326462,0.318572,0.294468,0.294468,0.326462,0.318572,0.366737,1.2195,0.294468,0.294468,0.366737,1.2195,0.294468,0.294468,0.294468,0.294468,0.294468,0.294468,,,,,,,1.433076,0.308477,0.326462,0.318572,0.366737,1.2195,0.294468,0.294468,0.294468,0.294468,0.463492,0.126113,0.131508,0.129141,0.143591,0.399419,0.12191,0.12191,0.064685,0.064685,7.808235,36.274305,34.275963,35.124864,30.511761,9.175725,38,38,38,38,,,,,,,,,,,3096,3096,0.294468,0.294468,0.294468,0.294468,0.294468,0.294468,0.294468,0.294468,0.12191,0.12191,38,38,, +11310,0,0.239147,1,1,0,2,5,,5,5,Island Lake,Rd,1446002,0,0.239,0,5.124587,3.7,5,0.478295,0.478295,0.478295,0.478295,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.559767,0.478359,0.478295,0.478295,0.559767,0.478359,0.478821,0.478566,0.478295,0.478295,0.478821,0.478566,0.479824,0.536247,0.478295,0.478295,0.479824,0.536247,0.478295,0.478295,0.478295,0.478295,0.478295,0.478295,,,,,,,0.559767,0.478359,0.478821,0.478566,0.479824,0.536247,0.478295,0.478295,0.478295,0.478295,0.210977,0.186554,0.186693,0.186616,0.186994,0.203921,0.186535,0.186535,0.09805,0.09805,25.633585,29.995995,29.967056,29.983013,29.90441,26.757891,30,30,30,30,,,,,,,,,,,2580,2580,0.478295,0.478295,0.478295,0.478295,0.478295,0.478295,0.478295,0.478295,0.186535,0.186535,30,30,, +11093,0,0.158653,1,1,0,2,4,,4,5,Main,St,1446002,0.556,0.715,0,3.399704,4.5,4.5,0.250505,0.250505,0.250505,0.250505,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.710005,0.298858,0.250505,0.250505,0.710005,0.298858,0.290772,0.279703,0.250505,0.250505,0.290772,0.279703,0.445404,0.797627,0.250505,0.250505,0.445404,0.797627,0.250505,0.250505,0.250505,0.250505,0.250505,0.250505,,,,,,,0.710005,0.298858,0.290772,0.279703,0.445404,0.797627,0.250505,0.250505,0.250505,0.250505,0.241559,0.118215,0.115789,0.112468,0.162179,0.267846,0.103709,0.103709,0.055027,0.055027,13.407193,31.851798,32.737536,34.03316,21.37201,11.934369,38,38,38,38,,,,,,,,,,,3096,3096,0.250505,0.250505,0.250505,0.250505,0.250505,0.250505,0.250505,0.250505,0.103709,0.103709,38,38,, +11306,0,0.130935,1,1,0,2,4,,4,5,Island Lake,Rd,1446002,0.426,0.556,0,2.80574,4.5,4.5,0.206739,0.206739,0.206739,0.206739,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.944981,0.216574,0.206739,0.206739,0.944981,0.216574,0.229201,0.223661,0.206739,0.206739,0.229201,0.223661,0.257477,0.76769,0.206739,0.206739,0.257477,0.76769,0.206739,0.206739,0.206739,0.206739,0.206739,0.206739,,,,,,,0.944981,0.216574,0.229201,0.223661,0.257477,0.76769,0.206739,0.206739,0.206739,0.206739,0.307063,0.08854,0.092328,0.090667,0.100811,0.253875,0.08559,0.08559,0.045414,0.045414,8.313468,36.274305,34.275963,35.124864,30.511761,10.233392,38,38,38,38,,,,,,,,,,,3096,3096,0.206739,0.206739,0.206739,0.206739,0.206739,0.206739,0.206739,0.206739,0.08559,0.08559,38,38,, +11305,0,0.053899,1,1,0,2,4,,4,5,Main,St,1446002,0.758,0.812,0,1.154988,4.5,4.5,0.085104,0.085104,0.085104,0.085104,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.417243,0.098434,0.085104,0.085104,0.417243,0.098434,0.116496,0.106401,0.085104,0.085104,0.116496,0.106401,0.161148,0.340407,0.085104,0.085104,0.161148,0.340407,0.085104,0.085104,0.085104,0.085104,0.085104,0.085104,,,,,,,0.417243,0.098434,0.116496,0.106401,0.161148,0.340407,0.085104,0.085104,0.085104,0.085104,0.134875,0.039232,0.044651,0.041622,0.058046,0.111824,0.035233,0.035233,0.018695,0.018695,7.750806,32.854274,27.760393,30.394247,20.068275,9.500304,38,38,38,38,,,,,,,,,,,3096,3096,0.085104,0.085104,0.085104,0.085104,0.085104,0.085104,0.085104,0.085104,0.035233,0.035233,38,38,, +11339,0,1.249209,1,1,0,2,5,,5,5,Huron River,Dr,1445801,3.203,4.452,0,26.768773,3.7,5,2.498419,2.498419,2.498419,2.498419,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.530831,2.498419,2.498419,2.498419,2.530831,2.498419,2.498419,2.498419,2.498419,2.498419,2.498419,2.498419,2.498419,2.50478,2.498419,2.498419,2.498419,2.50478,2.498419,2.498419,2.498419,2.498419,2.498419,2.498419,,,,,,,2.530831,2.498419,2.498419,2.498419,2.498419,2.50478,2.498419,2.498419,2.498419,2.498419,0.984107,0.974383,0.974383,0.974383,0.974383,0.976292,0.974383,0.974383,0.512176,0.512176,29.615791,30,30,30,29.999999,29.923809,30,30,30,30,,,,,,,,,,,2580,2580,2.498419,2.498419,2.498419,2.498419,2.498419,2.498419,2.498419,2.498419,0.974383,0.974383,30,30,, +10032,0,0.725386,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,8.807,9.532,0,15.543987,3,4,1.088079,1.088079,1.088079,1.088079,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.615629,1.090043,1.088079,1.088079,1.615629,1.090043,1.090685,1.08935,1.088079,1.088079,1.090685,1.08935,1.103782,1.406829,1.088079,1.088079,1.103782,1.406829,1.088079,1.088079,1.088079,1.088079,1.088079,1.088079,,,,,,,1.615629,1.090043,1.090685,1.08935,1.103782,1.406829,1.088079,1.088079,1.088079,1.088079,0.615258,0.457583,0.457775,0.457375,0.461704,0.552618,0.456993,0.456993,0.243004,0.243004,26.938833,39.927921,39.904437,39.953332,39.430941,30.937062,40,40,40,40,,,,,,,,,,,3096,3096,1.088079,1.088079,1.088079,1.088079,1.088079,1.088079,1.088079,1.088079,0.456993,0.456993,40,40,, +6082,0,0.59369,1,1,0,2,4,,5,8,M 36,,932308,7.639,8.233,0,12.721931,3,4,0.890535,0.890535,0.890535,0.890535,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.040472,0.959091,0.890535,0.890535,1.040472,0.959091,0.943943,0.932225,0.890535,0.890535,0.943943,0.932225,1.023345,1.093337,0.890535,0.890535,1.023345,1.093337,0.890535,0.890535,0.890535,0.890535,0.890535,0.890535,,,,,,,1.040472,0.959091,0.943943,0.932225,1.023345,1.093337,0.890535,0.890535,0.890535,0.890535,0.419006,0.394592,0.390047,0.386532,0.413868,0.434865,0.374025,0.374025,0.198886,0.198886,34.235828,37.140793,37.736814,38.211164,34.808811,32.58043,40,40,40,40,,,,,,,,,,,3096,3096,0.890535,0.890535,0.890535,0.890535,0.890535,0.890535,0.890535,0.890535,0.374025,0.374025,40,40,, +7216,0,0.882953,1,1,0,2,5,,5,8,McGregor,Rd,932708,0,0.883,0,18.920424,3.7,5,1.765906,1.765906,1.765906,1.765906,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.767244,1.779797,1.765906,1.765906,1.767244,1.779797,1.766312,1.766249,1.765906,1.765906,1.766312,1.766249,1.778055,1.769087,1.765906,1.765906,1.778055,1.769087,1.765906,1.765906,1.765906,1.765906,1.765906,1.765906,,,,,,,1.767244,1.779797,1.766312,1.766249,1.778055,1.769087,1.765906,1.765906,1.765906,1.765906,0.689105,0.692871,0.688825,0.688806,0.692348,0.689658,0.688703,0.688703,0.362011,0.362011,29.977287,29.765858,29.993109,29.994185,29.795029,29.946067,30,30,30,30,,,,,,,,,,,2580,2580,1.765906,1.765906,1.765906,1.765906,1.765906,1.765906,1.765906,1.765906,0.688703,0.688703,30,30,, +7221,0,1.103113,1,1,0,2,4,,5,8,Dexter Pinckney,Rd,932607,0,1.103,0,23.638139,3,4,1.65467,1.65467,1.65467,1.65467,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.664438,2.122846,1.65467,1.65467,1.664438,2.122846,1.665772,1.669748,1.65467,1.65467,1.665772,1.669748,1.928019,1.69509,1.65467,1.65467,1.928019,1.69509,1.65467,1.65467,1.65467,1.65467,1.65467,1.65467,,,,,,,1.664438,2.122846,1.665772,1.669748,1.928019,1.69509,1.65467,1.65467,1.65467,1.65467,0.697892,0.835414,0.698292,0.699485,0.776966,0.707087,0.694961,0.694961,0.369543,0.369543,39.765245,31.178334,39.733409,39.638801,34.328902,39.046187,40,40,40,40,,,,,,,,,,,3096,3096,1.65467,1.65467,1.65467,1.65467,1.65467,1.65467,1.65467,1.65467,0.694961,0.694961,40,40,, +11105,0,1.331849,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,5.327,6.659,0,28.539613,3,4,1.997773,1.997773,1.997773,1.997773,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.009567,2.563027,1.997773,1.997773,2.009567,2.563027,2.011177,2.015977,1.997773,1.997773,2.011177,2.015977,2.327803,2.046574,1.997773,1.997773,2.327803,2.046574,1.997773,1.997773,1.997773,1.997773,1.997773,1.997773,,,,,,,2.009567,2.563027,2.011177,2.015977,2.327803,2.046574,1.997773,1.997773,1.997773,1.997773,0.842603,1.008641,0.843086,0.844526,0.938074,0.853705,0.839065,0.839065,0.446169,0.446169,39.765245,31.178334,39.733409,39.638801,34.328902,39.046187,40,40,40,40,,,,,,,,,,,3096,3096,1.997773,1.997773,1.997773,1.997773,1.997773,1.997773,1.997773,1.997773,0.839065,0.839065,40,40,, +19867,0,0.772699,1,1,0,2,5,GRV,5,8,Toma,Rd,4104131,0.353,1.125,0,16.557842,5.55,5,2.318098,2.318098,2.318098,2.318098,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.414943,2.383995,2.318098,2.318098,2.414943,2.383995,2.32991,2.331751,2.318098,2.318098,2.32991,2.331751,2.492398,2.44136,2.318098,2.318098,2.492398,2.44136,2.318098,2.318098,2.318098,2.318098,2.318098,2.318098,,,,,,,2.414943,2.383995,2.32991,2.331751,2.492398,2.44136,2.318098,2.318098,2.318098,2.318098,0.863569,0.854284,0.838059,0.838611,0.886805,0.871494,0.834515,0.834515,0.432712,0.432712,19.197952,19.447171,19.898604,19.88289,18.60135,18.990217,20,20,20,20,,,,,,,,,,,2236,2236,2.318098,2.318098,2.318098,2.318098,2.318098,2.318098,2.318098,2.318098,0.834515,0.834515,20,20,, +29638,0,1.222887,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.204717,0.15,4,4.891547,4.891547,4.891547,4.891547,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,,,,,,,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,1.687584,1.687584,1.687584,1.687584,1.687584,1.687584,1.687584,1.687584,0.86825,0.86825,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,4.891547,1.687584,1.687584,15,15,, +19868,0,0.213569,1,1,0,2,5,GRV,5,8,Dexter Town Hall,Rd,4104130,0.248,0.462,0,4.576486,5.55,5,0.640708,0.640708,0.640708,0.640708,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.667475,0.658922,0.640708,0.640708,0.667475,0.658922,0.643973,0.644482,0.640708,0.640708,0.643973,0.644482,0.688883,0.674777,0.640708,0.640708,0.688883,0.674777,0.640708,0.640708,0.640708,0.640708,0.640708,0.640708,,,,,,,0.667475,0.658922,0.643973,0.644482,0.688883,0.674777,0.640708,0.640708,0.640708,0.640708,0.238685,0.236119,0.231634,0.231787,0.245107,0.240876,0.230655,0.230655,0.119599,0.119599,19.197952,19.447171,19.898604,19.88289,18.60135,18.990217,20,20,20,20,,,,,,,,,,,2236,2236,0.640708,0.640708,0.640708,0.640708,0.640708,0.640708,0.640708,0.640708,0.230655,0.230655,20,20,, +8129,0,0.246725,1,1,0,2,5,GRV,5,8,Tiplady,Rd,939305,1.721,1.967,0,5.286967,5.55,5,0.740175,0.740175,0.740175,0.740175,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.771098,0.761216,0.740175,0.740175,0.771098,0.761216,0.743947,0.744535,0.740175,0.740175,0.743947,0.744535,0.79583,0.779533,0.740175,0.740175,0.79583,0.779533,0.740175,0.740175,0.740175,0.740175,0.740175,0.740175,,,,,,,0.771098,0.761216,0.743947,0.744535,0.79583,0.779533,0.740175,0.740175,0.740175,0.740175,0.27574,0.272775,0.267595,0.267771,0.283159,0.278271,0.266463,0.266463,0.138166,0.138166,19.197952,19.447171,19.898604,19.88289,18.60135,18.990217,20,20,20,20,,,,,,,,,,,2236,2236,0.740175,0.740175,0.740175,0.740175,0.740175,0.740175,0.740175,0.740175,0.266463,0.266463,20,20,, +6598,0,0.651925,1,1,1,2,4,,4,8,M 36,,932308,6.965,7.617,0,13.969825,4.5,4.5,1.029355,1.029355,1.029355,1.029355,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,1.147537,1.043797,1.029355,1.029355,1.147537,1.043797,1.04859,1.044646,1.029355,1.029355,1.04859,1.044646,1.104028,1.195093,1.029355,1.029355,1.104028,1.195093,1.029355,1.029355,1.029355,1.029355,1.029355,1.029355,,,,,,,1.147537,1.043797,1.04859,1.044646,1.104028,1.195093,1.029355,1.029355,1.029355,1.029355,0.461608,0.430486,0.431924,0.43074,0.448555,0.475874,0.426153,0.426153,0.226115,0.226115,34.086499,37.474256,37.302946,37.443777,35.429813,32.730097,38,38,38,38,,,,,,,,,,,3406,3406,1.029355,1.029355,1.029355,1.029355,1.029355,1.029355,1.029355,1.029355,0.426153,0.426153,38,38,, +7220,0,1.255227,1,1,0,2,4,,5,8,Dexter Pinckney,Rd,932607,1.103,2.358,0,26.897721,3,4,1.88284,1.88284,1.88284,1.88284,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.947231,2.377172,1.88284,1.88284,1.947231,2.377172,1.928644,1.923201,1.88284,1.88284,1.928644,1.923201,2.412868,2.046608,1.88284,1.88284,2.412868,2.046608,1.88284,1.88284,1.88284,1.88284,1.88284,1.88284,,,,,,,1.947231,2.377172,1.928644,1.923201,2.412868,2.046608,1.88284,1.88284,1.88284,1.88284,0.81011,0.939092,0.804534,0.802901,0.949801,0.839923,0.790793,0.790793,0.420501,0.420501,38.677295,31.682029,39.050034,39.160552,31.213315,36.799244,40,40,40,40,,,,,,,,,,,3096,3096,1.88284,1.88284,1.88284,1.88284,1.88284,1.88284,1.88284,1.88284,0.790793,0.790793,40,40,, +19866,0,1.005361,1,1,0,2,5,,4,8,Howell,St,4104131,1.125,2.13,0,21.543459,5.8,4.5,2.234137,2.234137,2.234137,2.234137,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.268827,2.266961,2.234137,2.234137,2.268827,2.266961,2.241894,2.242693,2.234137,2.234137,2.241894,2.242693,2.320366,2.319261,2.234137,2.234137,2.320366,2.319261,2.234137,2.234137,2.234137,2.234137,2.234137,2.234137,,,,,,,2.268827,2.266961,2.241894,2.242693,2.320366,2.319261,2.234137,2.234137,2.234137,2.234137,0.861613,0.861053,0.853533,0.853773,0.877075,0.876743,0.851206,0.851206,0.44571,0.44571,26.587167,26.609059,26.906573,26.896987,25.996628,26.009011,27,27,27,27,,,,,,,,,,,2580,2580,2.234137,2.234137,2.234137,2.234137,2.234137,2.234137,2.234137,2.234137,0.851206,0.851206,27,27,, +24759,0,1.333785,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.581103,0.15,4,5.335139,5.335139,5.335139,5.335139,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,,,,,,,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,1.840623,1.840623,1.840623,1.840623,1.840623,1.840623,1.840623,1.840623,0.946987,0.946987,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,5.335139,1.840623,1.840623,15,15,, +24765,0,0.582925,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.491243,0.15,4,2.331699,2.331699,2.331699,2.331699,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,,,,,,,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,0.804436,0.804436,0.804436,0.804436,0.804436,0.804436,0.804436,0.804436,0.413877,0.413877,15,14.999999,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,2.331699,0.804436,0.804436,15,15,, +6311,0,0.499259,1,1,0,2,5,,5,8,Darwin,Rd,932401,4.352,4.851,0,10.698399,3.7,5,0.998517,0.998517,0.998517,0.998517,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.04153,0.999014,0.998517,0.998517,1.04153,0.999014,0.998794,0.998678,0.998517,0.998517,0.998794,0.998678,1.000209,1.013129,0.998517,0.998517,1.000209,1.013129,0.998517,0.998517,0.998517,0.998517,0.998517,0.998517,,,,,,,1.04153,0.999014,0.998794,0.998678,1.000209,1.013129,0.998517,0.998517,0.998517,0.998517,0.402326,0.389571,0.389505,0.38947,0.389929,0.393805,0.389422,0.389422,0.204696,0.204696,28.761072,29.985094,29.991685,29.995158,29.949245,29.567342,30,30,30,30,,,,,,,,,,,2580,2580,0.998517,0.998517,0.998517,0.998517,0.998517,0.998517,0.998517,0.998517,0.389422,0.389422,30,30,, +5438,0,0.183905,1,1,1,2,4,,4,8,Main,St,932308,6.534,6.718,0,3.940816,4.5,4.5,0.290376,0.290376,0.290376,0.290376,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.341152,0.295568,0.290376,0.290376,0.341152,0.295568,0.295912,0.294636,0.290376,0.290376,0.295912,0.294636,0.312979,0.34366,0.290376,0.290376,0.312979,0.34366,0.290376,0.290376,0.290376,0.290376,0.290376,0.290376,,,,,,,0.341152,0.295568,0.295912,0.294636,0.312979,0.34366,0.290376,0.290376,0.290376,0.290376,0.135449,0.121773,0.121876,0.121494,0.126997,0.136201,0.120216,0.120216,0.063786,0.063786,32.344173,37.332528,37.289069,37.450589,35.255655,32.108125,38,38,38,38,,,,,,,,,,,3406,3406,0.290376,0.290376,0.290376,0.290376,0.290376,0.290376,0.290376,0.290376,0.120216,0.120216,38,38,, +24761,0,0.228033,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,4.886415,0.15,4,0.912131,0.912131,0.912131,0.912131,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,,,,,,,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.314685,0.314685,0.314685,0.314685,0.314685,0.314685,0.314685,0.314685,0.161903,0.161903,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.912131,0.314685,0.314685,15,15,, +24762,0,0.160517,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,3.439656,0.15,4,0.642069,0.642069,0.642069,0.642069,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,,,,,,,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.221514,0.221514,0.221514,0.221514,0.221514,0.221514,0.221514,0.221514,0.113967,0.113967,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.642069,0.221514,0.221514,15,15,, +19865,0,0.249397,1,1,0,2,5,,4,8,Howell,St,4104131,2.13,2.38,0,5.34423,5.8,4.5,0.554216,0.554216,0.554216,0.554216,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.555011,0.554616,0.554216,0.554216,0.555011,0.554616,0.554243,0.554257,0.554216,0.554216,0.554243,0.554257,0.554828,0.555037,0.554216,0.554216,0.554828,0.555037,0.554216,0.554216,0.554216,0.554216,0.554216,0.554216,,,,,,,0.555011,0.554616,0.554243,0.554257,0.554828,0.555037,0.554216,0.554216,0.554216,0.554216,0.211395,0.211276,0.211164,0.211169,0.21134,0.211402,0.211156,0.211156,0.110566,0.110566,26.961326,26.980532,26.998723,26.998027,26.970227,26.960106,27,27,27,27,,,,,,,,,,,2580,2580,0.554216,0.554216,0.554216,0.554216,0.554216,0.554216,0.554216,0.554216,0.211156,0.211156,27,27,, +5712,0,0.061493,1,1,1,2,4,,4,8,Main,St,932308,6.473,6.534,0,1.317712,4.5,4.5,0.097095,0.097095,0.097095,0.097095,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.111045,0.097745,0.097095,0.097095,0.111045,0.097745,0.098368,0.0981,0.097095,0.097095,0.098368,0.0981,0.100611,0.109097,0.097095,0.097095,0.100611,0.109097,0.097095,0.097095,0.097095,0.097095,0.097095,0.097095,,,,,,,0.111045,0.097745,0.098368,0.0981,0.100611,0.109097,0.097095,0.097095,0.097095,0.097095,0.044382,0.040392,0.040579,0.040499,0.041252,0.043798,0.040197,0.040197,0.021328,0.021328,33.226127,37.746929,37.508145,37.610437,36.672007,33.81953,38,38,38,38,,,,,,,,,,,3406,3406,0.097095,0.097095,0.097095,0.097095,0.097095,0.097095,0.097095,0.097095,0.040197,0.040197,38,38,, +6912,0,0.247313,1,1,1,2,4,,4,8,Main,St,932308,6.718,6.965,0,5.299571,4.5,4.5,0.390495,0.390495,0.390495,0.390495,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.443396,0.391848,0.390495,0.390495,0.443396,0.391848,0.392972,0.3921,0.390495,0.390495,0.392972,0.3921,0.396562,0.423284,0.390495,0.390495,0.396562,0.423284,0.390495,0.390495,0.390495,0.390495,0.390495,0.390495,,,,,,,0.443396,0.391848,0.392972,0.3921,0.396562,0.423284,0.390495,0.390495,0.390495,0.390495,0.177535,0.162071,0.162408,0.162146,0.163485,0.171502,0.161665,0.161665,0.085779,0.085779,33.466265,37.868761,37.760488,37.844452,37.418599,35.056369,38,38,38,38,,,,,,,,,,,3406,3406,0.390495,0.390495,0.390495,0.390495,0.390495,0.390495,0.390495,0.390495,0.161665,0.161665,38,38,, +24763,0,0.38352,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.218285,0.15,4,1.53408,1.53408,1.53408,1.53408,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,,,,,,,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,0.529258,0.529258,0.529258,0.529258,0.529258,0.529258,0.529258,0.529258,0.272299,0.272299,14.999998,15,14.999999,14.999999,14.999998,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,1.53408,0.529258,0.529258,15,15,, +7219,0,0.123439,1,1,0,2,4,,4,8,Pearl,St,932701,0,0.123,0,2.645111,4.5,4.5,0.194903,0.194903,0.194903,0.194903,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.199848,0.206904,0.194903,0.194903,0.199848,0.206904,0.196335,0.196475,0.194903,0.194903,0.196335,0.196475,0.212521,0.205071,0.194903,0.194903,0.212521,0.205071,0.194903,0.194903,0.194903,0.194903,0.194903,0.194903,,,,,,,0.199848,0.206904,0.196335,0.196475,0.212521,0.205071,0.194903,0.194903,0.194903,0.194903,0.082173,0.08429,0.08112,0.081162,0.085975,0.08374,0.08069,0.08069,0.042814,0.042814,37.059677,35.79592,37.722744,37.695861,34.849719,36.115755,38,38,38,38,,,,,,,,,,,3096,3096,0.194903,0.194903,0.194903,0.194903,0.194903,0.194903,0.194903,0.194903,0.08069,0.08069,38,38,, +6398,0,0.022447,1,1,0,2,4,,5,8,M 36,,932308,7.617,7.639,0,0.481011,3,4,0.033671,0.033671,0.033671,0.033671,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.03934,0.034546,0.033671,0.033671,0.03934,0.034546,0.0348,0.034592,0.033671,0.033671,0.0348,0.034592,0.037446,0.041339,0.033671,0.033671,0.037446,0.041339,0.033671,0.033671,0.033671,0.033671,0.033671,0.033671,,,,,,,0.03934,0.034546,0.0348,0.034592,0.037446,0.041339,0.033671,0.033671,0.033671,0.033671,0.015842,0.014404,0.014481,0.014418,0.015274,0.016442,0.014142,0.014142,0.00752,0.00752,34.235828,38.986858,38.70173,38.934894,35.967738,32.58043,40,40,40,40,,,,,,,,,,,3096,3096,0.033671,0.033671,0.033671,0.033671,0.033671,0.033671,0.033671,0.033671,0.014142,0.014142,40,40,, +11113,0,1.113554,1,1,0,2,5,,5,5,McGregor,Rd,1445904,0,1.113,0,23.861879,3.7,5,2.227109,2.227109,2.227109,2.227109,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.228796,2.244627,2.227109,2.227109,2.228796,2.244627,2.22762,2.22754,2.227109,2.227109,2.22762,2.22754,2.24243,2.23112,2.227109,2.227109,2.24243,2.23112,2.227109,2.227109,2.227109,2.227109,2.227109,2.227109,,,,,,,2.228796,2.244627,2.22762,2.22754,2.24243,2.23112,2.227109,2.227109,2.227109,2.227109,0.869079,0.873828,0.868726,0.868702,0.873169,0.869776,0.868572,0.868572,0.456557,0.456557,29.977287,29.765858,29.993109,29.994185,29.795029,29.946067,30,30,30,30,,,,,,,,,,,2580,2580,2.227109,2.227109,2.227109,2.227109,2.227109,2.227109,2.227109,2.227109,0.868572,0.868572,30,30,, +11312,0,0.179881,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,5.148,5.327,0,3.854594,3,4,0.269822,0.269822,0.269822,0.269822,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.283891,0.597497,0.269822,0.269822,0.283891,0.597497,0.280328,0.282083,0.269822,0.269822,0.280328,0.282083,0.489136,0.313406,0.269822,0.269822,0.489136,0.313406,0.269822,0.269822,0.269822,0.269822,0.269822,0.269822,,,,,,,0.283891,0.597497,0.280328,0.282083,0.489136,0.313406,0.269822,0.269822,0.269822,0.269822,0.117546,0.211628,0.116477,0.117003,0.179119,0.1264,0.113325,0.113325,0.06026,0.06026,38.017611,18.063458,38.50079,38.261339,22.065167,34.437304,40,40,40,40,,,,,,,,,,,3096,3096,0.269822,0.269822,0.269822,0.269822,0.269822,0.269822,0.269822,0.269822,0.113325,0.113325,40,40,, +5922,0,0.549801,1,1,0,2,4,,5,8,M 36,,932308,8.233,8.782,0,11.781441,3,4,0.824701,0.824701,0.824701,0.824701,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.985555,0.89623,0.824701,0.824701,0.985555,0.89623,0.87933,0.866813,0.824701,0.824701,0.87933,0.866813,0.970952,1.037111,0.824701,0.824701,0.970952,1.037111,0.824701,0.824701,0.824701,0.824701,0.824701,0.824701,,,,,,,0.985555,0.89623,0.87933,0.866813,0.970952,1.037111,0.824701,0.824701,0.824701,0.824701,0.394631,0.367833,0.362763,0.359008,0.39025,0.410097,0.346374,0.346374,0.184183,0.184183,33.471516,36.807561,37.514984,38.056707,33.974937,31.807612,40,40,40,40,,,,,,,,,,,3096,3096,0.824701,0.824701,0.824701,0.824701,0.824701,0.824701,0.824701,0.824701,0.346374,0.346374,40,40,, +7214,0,1.234504,1,1,0,2,5,,5,8,McGregor,Rd,932708,1.375,2.61,0,26.453647,3.7,5,2.469007,2.469007,2.469007,2.469007,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.469942,2.469027,2.469007,2.469007,2.469942,2.469027,2.46901,2.469008,2.469007,2.469007,2.46901,2.469008,2.469521,2.470011,2.469007,2.469007,2.469521,2.470011,2.469007,2.469007,2.469007,2.469007,2.469007,2.469007,,,,,,,2.469942,2.469027,2.46901,2.469008,2.469521,2.470011,2.469007,2.469007,2.469007,2.469007,0.963193,0.962919,0.962913,0.962913,0.963067,0.963214,0.962913,0.962913,0.506146,0.506146,29.988645,29.999752,29.999969,29.999984,29.993753,29.987809,30,30,30,30,,,,,,,,,,,2580,2580,2.469007,2.469007,2.469007,2.469007,2.469007,2.469007,2.469007,2.469007,0.962913,0.962913,30,30,, +7215,0,0.492968,1,1,0,2,5,,5,8,McGregor,Rd,932708,0.883,1.375,0,10.563593,3.7,5,0.985935,0.985935,0.985935,0.985935,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.985936,0.985943,0.985935,0.985935,0.985936,0.985943,0.985936,0.985936,0.985935,0.985935,0.985936,0.985936,0.985943,0.985936,0.985935,0.985935,0.985943,0.985936,0.985935,0.985935,0.985935,0.985935,0.985935,0.985935,,,,,,,0.985936,0.985943,0.985936,0.985936,0.985943,0.985936,0.985935,0.985935,0.985935,0.985935,0.384515,0.384517,0.384515,0.384515,0.384517,0.384515,0.384515,0.384515,0.202117,0.202117,29.99999,29.999752,29.999969,29.999984,29.99977,29.999983,30,30,30,30,,,,,,,,,,,2580,2580,0.985935,0.985935,0.985935,0.985935,0.985935,0.985935,0.985935,0.985935,0.384515,0.384515,30,30,, +5598,0,0.505316,1,1,0,2,4,,5,8,M 36,,932308,8.782,9.288,0,10.828208,3,4,0.757975,0.757975,0.757975,0.757975,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.133977,0.872892,0.757975,0.757975,1.133977,0.872892,0.832986,0.814412,0.757975,0.757975,0.832986,0.814412,1.074595,1.232641,0.757975,0.757975,1.074595,1.232641,0.757975,0.757975,0.757975,0.757975,0.757975,0.757975,,,,,,,1.133977,0.872892,0.832986,0.814412,1.074595,1.232641,0.757975,0.757975,0.757975,0.757975,0.43115,0.352825,0.340853,0.335281,0.413336,0.460749,0.318349,0.318349,0.169281,0.169281,26.73686,34.733946,36.397944,37.228066,28.214325,24.596758,40,40,40,40,,,,,,,,,,,3096,3096,0.757975,0.757975,0.757975,0.757975,0.757975,0.757975,0.757975,0.757975,0.318349,0.318349,40,40,, +7115,0,1.005038,1,1,0,2,6,GRV,5,8,Nicholson,Rd,933006,8.944,9.948,0,21.536539,5.55,5,2.412092,2.412092,2.412092,2.412092,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,,,,,,,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,0.904535,0.904535,0.904535,0.904535,0.904535,0.904535,0.904535,0.904535,0.472368,0.472368,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,2.412092,0.904535,0.904535,25,25,, +7190,0,0.857225,1,1,0,2,4,,5,8,Grand River,Ave,932910,0,0.857,0,18.369105,3,4,1.285837,1.285837,1.285837,1.285837,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.301853,1.303553,1.285837,1.285837,1.301853,1.303553,1.294026,1.295056,1.285837,1.285837,1.294026,1.295056,1.302254,1.30202,1.285837,1.285837,1.302254,1.30202,1.285837,1.285837,1.285837,1.285837,1.285837,1.285837,,,,,,,1.301853,1.303553,1.294026,1.295056,1.302254,1.30202,1.285837,1.285837,1.285837,1.285837,0.544856,0.545366,0.542508,0.542817,0.544977,0.544906,0.540052,0.540052,0.28717,0.28717,39.507914,39.456384,39.746867,39.715263,39.495743,39.502844,40,40,40,40,,,,,,,,,,,3096,3096,1.285837,1.285837,1.285837,1.285837,1.285837,1.285837,1.285837,1.285837,0.540052,0.540052,40,40,, +7618,-1,3.634811,0,2,0,1,1,,5,8,W I 96,,935207,0,3.633,0,,1.02,7,,3.115552,,3.115552,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.147325,,3.115552,,3.147325,,3.135048,,3.115552,,3.135048,,3.222204,,3.115552,,3.222204,,3.115552,,3.115552,,3.115552,,,,,,,,3.147325,,3.135048,,3.222204,,3.115552,,3.115552,,1.598463,,1.59478,,1.620927,,1.588932,,0.867162,,69.293346,,69.564694,,67.683079,,70,,70,,,,,,,,,,,,15136,,3.115552,,3.115552,,3.115552,,3.115552,,1.588932,,70,, +7787,1,3.942959,2,0,0,1,1,,5,8,E I 96,,935105,0,3.941,0,,1.02,7,3.379679,,3.379679,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.416834,,3.379679,,3.416834,,3.401056,,3.379679,,3.401056,,3.490226,,3.379679,,3.490226,,3.379679,,3.379679,,3.379679,,,,,,,,3.416834,,3.401056,,3.490226,,3.379679,,3.379679,,1.734783,,1.730049,,1.7568,,1.723636,,0.940677,,69.238818,,69.560019,,67.782876,,70,,70,,,,,,,,,,,,15136,,3.379679,,3.379679,,3.379679,,3.379679,,1.723636,,70,,, +7806,0,1.508548,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,7.944,9.452,0,32.326019,3.7,5,3.017095,3.017095,3.017095,3.017095,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.017322,3.030768,3.017095,3.017095,3.017322,3.030768,3.017363,3.017406,3.017095,3.017095,3.017363,3.017406,3.028749,3.017793,3.017095,3.017095,3.028749,3.017793,3.017095,3.017095,3.017095,3.017095,3.017095,3.017095,,,,,,,3.017322,3.030768,3.017363,3.017406,3.028749,3.017793,3.017095,3.017095,3.017095,3.017095,1.176735,1.180769,1.176747,1.17676,1.180163,1.176876,1.176667,1.176667,0.618504,0.618504,29.997743,29.86466,29.99734,29.996905,29.884567,29.993066,30,30,30,30,,,,,,,,,,,2580,2580,3.017095,3.017095,3.017095,3.017095,3.017095,3.017095,3.017095,3.017095,1.176667,1.176667,30,30,, +7826,0,0.899719,1,1,0,2,6,GRV,5,8,Bell Oak,Rd,943609,0,0.899,0,19.279698,5.55,5,2.159326,2.159326,2.159326,2.159326,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,,,,,,,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,0.809747,0.809747,0.809747,0.809747,0.809747,0.809747,0.809747,0.809747,0.422868,0.422868,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,2.159326,0.809747,0.809747,25,25,, +7920,0,1.505011,1,1,0,2,6,GRV,5,8,Antcliff,Rd,940003,1.004,2.508,0,32.250235,5.55,5,3.612026,3.612026,3.612026,3.612026,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,,,,,,,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,1.35451,1.35451,1.35451,1.35451,1.35451,1.35451,1.35451,1.35451,0.707355,0.707355,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,3.612026,1.35451,1.35451,25,25,, +8099,0,0.855347,1,1,0,2,6,GRV,5,8,Chase Lake,Rd,943607,0,0.855,0,18.328873,5.55,5,2.052834,2.052834,2.052834,2.052834,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,,,,,,,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,0.769813,0.769813,0.769813,0.769813,0.769813,0.769813,0.769813,0.769813,0.402013,0.402013,24.999998,24.999998,24.999999,24.999999,24.999998,24.999998,25,25,25,25,,,,,,,,,,,2236,2236,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,2.052834,0.769813,0.769813,25,25,, +19936,0,1.255767,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,2.251,3.507,0,26.909295,3.7,5,2.511534,2.511534,2.511534,2.511534,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.511537,2.511538,2.511534,2.511534,2.511537,2.511538,2.511536,2.511536,2.511534,2.511534,2.511536,2.511536,2.511543,2.511543,2.511534,2.511534,2.511543,2.511543,2.511534,2.511534,2.511534,2.511534,2.511534,2.511534,,,,,,,2.511537,2.511538,2.511536,2.511536,2.511543,2.511543,2.511534,2.511534,2.511534,2.511534,0.979499,0.979499,0.979499,0.979499,0.979501,0.979501,0.979498,0.979498,0.514865,0.514865,29.999962,29.999959,29.999977,29.999979,29.999893,29.999896,30,30,30,30,,,,,,,,,,,2580,2580,2.511534,2.511534,2.511534,2.511534,2.511534,2.511534,2.511534,2.511534,0.979498,0.979498,30,30,, +24768,0,2.306333,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,49.421413,0.15,4,9.22533,9.22533,9.22533,9.22533,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,,,,,,,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,3.182739,3.182739,3.182739,3.182739,3.182739,3.182739,3.182739,3.182739,1.637496,1.637496,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,9.22533,3.182739,3.182739,15,15,, +24769,0,0.841738,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.037232,0.15,4,3.36695,3.36695,3.36695,3.36695,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,,,,,,,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,1.161598,1.161598,1.161598,1.161598,1.161598,1.161598,1.161598,1.161598,0.597634,0.597634,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,3.36695,1.161598,1.161598,15,15,, +24771,0,2.036913,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,43.648139,0.15,4,8.147653,8.147653,8.147653,8.147653,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,,,,,,,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,2.81094,2.81094,2.81094,2.81094,2.81094,2.81094,2.81094,2.81094,1.446208,1.446208,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,8.147653,2.81094,2.81094,15,15,, +24777,0,0.941366,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.172128,0.15,4,3.765464,3.765464,3.765464,3.765464,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,,,,,,,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,1.299085,1.299085,1.299085,1.299085,1.299085,1.299085,1.299085,1.299085,0.66837,0.66837,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,3.765464,1.299085,1.299085,15,15,, +24784,0,1.935098,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,41.466392,0.15,4,7.740393,7.740393,7.740393,7.740393,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,,,,,,,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,2.670436,2.670436,2.670436,2.670436,2.670436,2.670436,2.670436,2.670436,1.37392,1.37392,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,7.740393,2.670436,2.670436,15,15,, +24788,0,1.761242,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,37.74089,0.15,4,7.044966,7.044966,7.044966,7.044966,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,,,,,,,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,2.430513,2.430513,2.430513,2.430513,2.430513,2.430513,2.430513,2.430513,1.250482,1.250482,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,7.044966,2.430513,2.430513,15,15,, +34055,0,0.753274,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.013095,3.013095,3.013095,3.013095,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,,,,,,,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,1.039518,1.039518,1.039518,1.039518,1.039518,1.039518,1.039518,1.039518,0.534824,0.534824,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,3.013095,1.039518,1.039518,15,15,, +34056,0,0.821062,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.284249,3.284249,3.284249,3.284249,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,,,,,,,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,1.133066,1.133066,1.133066,1.133066,1.133066,1.133066,1.133066,1.133066,0.582954,0.582954,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,3.284249,1.133066,1.133066,15,15,, +34101,0,0.870127,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.480509,3.480509,3.480509,3.480509,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,,,,,,,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,1.200776,1.200776,1.200776,1.200776,1.200776,1.200776,1.200776,1.200776,0.61779,0.61779,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,3.480509,1.200776,1.200776,15,15,, +34102,0,0.956628,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.82651,3.82651,3.82651,3.82651,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,,,,,,,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,1.320146,1.320146,1.320146,1.320146,1.320146,1.320146,1.320146,1.320146,0.679206,0.679206,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,3.82651,1.320146,1.320146,15,15,, +34057,-1,0.717233,0,2,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,,2.868931,,2.868931,,15,,100000,,22700,,50000,,32260,,34400,,34360,,2.870092,,2.868931,,2.870092,,2.869809,,2.868931,,2.869809,,2.871249,,2.868931,,2.871249,,2.868931,,2.868931,,2.868931,,,,,,,,2.870092,,2.869809,,2.871249,,2.868931,,2.868931,,0.990129,,0.990045,,0.990477,,0.989781,,0.509235,,14.993934,,14.995411,,14.987888,,15,,15,,,,,,,,,,,,34400,,2.868931,,2.868931,,2.868931,,2.868931,,0.989781,,15,, +34058,1,0.71763,2,0,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.870519,,2.870519,,15,,100000,,22700,,50000,,32260,,34400,,34360,,2.871731,,2.870519,,2.871731,,2.871403,,2.870519,,2.871403,,2.872779,,2.870519,,2.872779,,2.870519,,2.870519,,2.870519,,,,,,,,2.871731,,2.871403,,2.872779,,2.870519,,2.870519,,0.990693,,0.990594,,0.991007,,0.990329,,0.509517,,14.993668,,14.995382,,14.988199,,15,,15,,,,,,,,,,,,34400,,2.870519,,2.870519,,2.870519,,2.870519,,0.990329,,15,,, +266,0,0.738011,1,1,0,2,6,,5,8,Herrington,Rd,355904,0.02,0.757,0,15.814529,5.8,6,1.476023,1.476023,1.476023,1.476023,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,,,,,,,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,0.575649,0.575649,0.575649,0.575649,0.575649,0.575649,0.575649,0.575649,0.302585,0.302585,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,1.476023,0.575649,0.575649,30,30,, +34103,0,0.868489,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.473956,3.473956,3.473956,3.473956,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,,,,,,,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,1.198515,1.198515,1.198515,1.198515,1.198515,1.198515,1.198515,1.198515,0.616627,0.616627,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,3.473956,1.198515,1.198515,15,15,, +34059,0,0.744386,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.977545,2.977545,2.977545,2.977545,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,,,,,,,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,1.027253,1.027253,1.027253,1.027253,1.027253,1.027253,1.027253,1.027253,0.528514,0.528514,14.999999,14.999999,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,2.977545,1.027253,1.027253,15,15,, +34104,0,0.887872,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.55149,3.55149,3.55149,3.55149,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,,,,,,,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,1.225264,1.225264,1.225264,1.225264,1.225264,1.225264,1.225264,1.225264,0.630389,0.630389,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,3.55149,1.225264,1.225264,15,15,, +5715,0,1.76962,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,0,1.769,0,37.920438,5.55,5,4.247089,4.247089,4.247089,4.247089,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.247089,4.247165,4.247089,4.247089,4.247089,4.247165,4.247089,4.247089,4.247089,4.247089,4.247089,4.247089,4.247128,4.247091,4.247089,4.247089,4.247128,4.247091,4.247089,4.247089,4.247089,4.247089,4.247089,4.247089,,,,,,,4.247089,4.247165,4.247089,4.247089,4.247128,4.247091,4.247089,4.247089,4.247089,4.247089,1.592658,1.592681,1.592658,1.592658,1.59267,1.592659,1.592658,1.592658,0.831722,0.831722,24.999998,24.99955,24.999999,24.999999,24.999773,24.999987,25,25,25,25,,,,,,,,,,,2236,2236,4.247089,4.247089,4.247089,4.247089,4.247089,4.247089,4.247089,4.247089,1.592658,1.592658,25,25,, +6911,0,0.933866,1,1,0,2,4,,5,8,M 36,,932308,1.76,2.694,0,20.011415,3,4,1.400799,1.400799,1.400799,1.400799,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.419495,1.402117,1.400799,1.400799,1.419495,1.402117,1.40589,1.404293,1.400799,1.400799,1.40589,1.404293,1.409654,1.423559,1.400799,1.400799,1.409654,1.423559,1.400799,1.400799,1.400799,1.400799,1.400799,1.400799,,,,,,,1.419495,1.402117,1.40589,1.404293,1.409654,1.423559,1.400799,1.400799,1.400799,1.400799,0.593944,0.588731,0.589863,0.589384,0.590992,0.595164,0.588336,0.588336,0.312845,0.312845,39.473161,39.96241,39.855162,39.900486,39.748729,39.360481,40,40,40,40,,,,,,,,,,,3096,3096,1.400799,1.400799,1.400799,1.400799,1.400799,1.400799,1.400799,1.400799,0.588336,0.588336,40,40,, +7043,0,0.44004,1,1,0,2,5,,4,8,Chilson,Rd,933603,4.294,4.734,0,9.429435,5.8,4.5,0.977867,0.977867,0.977867,0.977867,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.985103,0.980821,0.977867,0.977867,0.985103,0.980821,0.978582,0.978879,0.977867,0.977867,0.978582,0.978879,0.987382,0.993029,0.977867,0.977867,0.987382,0.993029,0.977867,0.977867,0.977867,0.977867,0.977867,0.977867,,,,,,,0.985103,0.980821,0.978582,0.978879,0.987382,0.993029,0.977867,0.977867,0.977867,0.977867,0.374738,0.373454,0.372782,0.372871,0.375422,0.377116,0.372567,0.372567,0.195085,0.195085,26.801669,26.918687,26.980284,26.972102,26.739817,26.587763,27,27,27,27,,,,,,,,,,,2580,2580,0.977867,0.977867,0.977867,0.977867,0.977867,0.977867,0.977867,0.977867,0.372567,0.372567,27,27,, +7161,0,0.967405,2,2,1,2,3,,4,8,Grand River,Rd,932910,13.876,14.843,0,20.730109,3.7,5,1.451108,1.451108,1.451108,1.451108,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.561666,1.4644,1.451108,1.451108,1.561666,1.4644,1.473884,1.469203,1.451108,1.451108,1.473884,1.469203,1.525231,1.626911,1.451108,1.451108,1.525231,1.626911,1.451108,1.451108,1.451108,1.451108,1.451108,1.451108,,,,,,,1.561666,1.4644,1.473884,1.469203,1.525231,1.626911,1.451108,1.451108,1.451108,1.451108,0.642633,0.613453,0.616298,0.614894,0.631702,0.662206,0.609465,0.609465,0.324081,0.324081,37.168203,39.636918,39.381876,39.507329,38.056076,35.677609,40,40,40,40,,,,,,,,,,,7946,7946,1.451108,1.451108,1.451108,1.451108,1.451108,1.451108,1.451108,1.451108,0.609465,0.609465,40,40,, +7179,0,1.582752,1,1,0,2,4,,5,8,Grand River,Ave,932910,5.932,7.514,0,33.916122,3,4,2.374129,2.374129,2.374129,2.374129,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.113927,2.418061,2.374129,2.374129,3.113927,2.418061,2.529657,2.485615,2.374129,2.374129,2.529657,2.485615,2.561619,3.277608,2.374129,2.374129,2.561619,3.277608,2.374129,2.374129,2.374129,2.374129,2.374129,2.374129,,,,,,,3.113927,2.418061,2.529657,2.485615,2.561619,3.277608,2.374129,2.374129,2.374129,2.374129,1.219074,1.010314,1.043792,1.03058,1.053381,1.268178,0.997134,0.997134,0.530222,0.530222,30.496905,39.273266,37.540722,38.205897,37.072309,28.973917,40,40,40,40,,,,,,,,,,,3096,3096,2.374129,2.374129,2.374129,2.374129,2.374129,2.374129,2.374129,2.374129,0.997134,0.997134,40,40,, +7225,0,0.311938,1,1,0,2,5,,5,8,Burkhart,Rd,932601,9.825,10.137,0,6.68438,3.7,5,0.623875,0.623875,0.623875,0.623875,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.715122,0.624206,0.623875,0.623875,0.715122,0.624206,0.62601,0.625091,0.623875,0.623875,0.62601,0.625091,0.630156,0.720822,0.623875,0.623875,0.630156,0.720822,0.623875,0.623875,0.623875,0.623875,0.623875,0.623875,,,,,,,0.715122,0.624206,0.62601,0.625091,0.630156,0.720822,0.623875,0.623875,0.623875,0.623875,0.270685,0.24341,0.243952,0.243676,0.245196,0.272395,0.243311,0.243311,0.127894,0.127894,26.172135,29.98413,29.897722,29.941679,29.700985,25.965178,30,30,30,30,,,,,,,,,,,2580,2580,0.623875,0.623875,0.623875,0.623875,0.623875,0.623875,0.623875,0.623875,0.243311,0.243311,30,30,, +7228,0,1.703228,1,1,0,2,5,GRV,5,8,Norton,Rd,932601,7.306,9.009,0,36.497738,5.55,5,5.109683,5.109683,5.109683,5.109683,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,,,,,,,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,1.839486,1.839486,1.839486,1.839486,1.839486,1.839486,1.839486,1.839486,0.953808,0.953808,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,5.109683,1.839486,1.839486,20,20,, +7365,0,1.671458,1,1,0,2,5,,5,8,Bull Run,Rd,943306,5.064,6.735,0,35.816952,3.7,5,3.342916,3.342916,3.342916,3.342916,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.343843,3.343007,3.342916,3.342916,3.343843,3.343007,3.342959,3.342953,3.342916,3.342916,3.342959,3.342953,3.343137,3.343817,3.342916,3.342916,3.343137,3.343817,3.342916,3.342916,3.342916,3.342916,3.342916,3.342916,,,,,,,3.343843,3.343007,3.342959,3.342953,3.343137,3.343817,3.342916,3.342916,3.342916,3.342916,1.304015,1.303764,1.30375,1.303748,1.303804,1.304007,1.303737,1.303737,0.685298,0.685298,29.991679,29.999183,29.999612,29.999667,29.99801,29.991917,30,30,30,30,,,,,,,,,,,2580,2580,3.342916,3.342916,3.342916,3.342916,3.342916,3.342916,3.342916,3.342916,1.303737,1.303737,30,30,, +7475,0,1.437763,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,6.276,7.713,0,30.809199,3.7,5,2.875525,2.875525,2.875525,2.875525,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.875805,2.875526,2.875525,2.875525,2.875805,2.875526,2.875527,2.875526,2.875525,2.875525,2.875527,2.875526,2.875533,2.875824,2.875525,2.875525,2.875533,2.875824,2.875525,2.875525,2.875525,2.875525,2.875525,2.875525,,,,,,,2.875805,2.875526,2.875527,2.875526,2.875533,2.875824,2.875525,2.875525,2.875525,2.875525,1.121539,1.121455,1.121455,1.121455,1.121457,1.121545,1.121455,1.121455,0.589483,0.589483,29.99708,29.999993,29.999983,29.999993,29.999919,29.99688,30,30,30,30,,,,,,,,,,,2580,2580,2.875525,2.875525,2.875525,2.875525,2.875525,2.875525,2.875525,2.875525,1.121455,1.121455,30,30,, +7582,-1,2.953743,0,3,0,1,1,,4,8,W I 96,,935207,9.068,12.02,0,,0.8,7.5,,2.53178,,2.53178,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.53193,,2.53178,,2.53193,,2.531846,,2.53178,,2.531846,,2.534477,,2.53178,,2.534477,,2.53178,,2.53178,,2.53178,,,,,,,,2.53193,,2.531846,,2.534477,,2.53178,,2.53178,,1.291253,,1.291228,,1.292017,,1.291208,,0.704679,,69.995861,,69.998169,,69.925503,,70,,70,,,,,,,,,,,,22704,,2.53178,,2.53178,,2.53178,,2.53178,,1.291208,,70,, +7608,-1,4.577377,0,2,0,1,1,,5,8,W I 96,,935207,3.884,8.46,0,,1.02,7,,3.923466,,3.923466,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.956329,,3.923466,,3.956329,,3.942971,,3.923466,,3.942971,,4.150651,,3.923466,,4.150651,,3.923466,,3.923466,,3.923466,,,,,,,,3.956329,,3.942971,,4.150651,,3.923466,,3.923466,,2.010827,,2.006819,,2.069123,,2.000968,,1.092031,,69.418557,,69.653731,,66.168573,,70,,70,,,,,,,,,,,,15136,,3.923466,,3.923466,,3.923466,,3.923466,,2.000968,,70,, +7775,1,2.891966,3,0,0,1,1,,5,8,E I 96,,935105,9.116,12.007,0,,1.02,7,2.478828,,2.478828,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.484983,,2.478828,,2.484983,,2.479058,,2.478828,,2.479058,,2.480424,,2.478828,,2.480424,,2.478828,,2.478828,,2.478828,,,,,,,,2.484983,,2.479058,,2.480424,,2.478828,,2.478828,,1.266049,,1.264271,,1.264681,,1.264202,,0.689941,,69.826614,,69.993512,,69.954972,,70,,70,,,,,,,,,,,,22704,,2.478828,,2.478828,,2.478828,,2.478828,,1.264202,,70,,, +7783,1,4.595169,2,0,0,1,1,,5,8,E I 96,,935105,4.204,8.797,0,,1.02,7,3.938716,,3.938716,,70,,44000,,9988,,22000,,14194,,15136,,15118,,4.052608,,3.938716,,4.052608,,3.959325,,3.938716,,3.959325,,4.055817,,3.938716,,4.055817,,3.938716,,3.938716,,3.938716,,,,,,,,4.052608,,3.959325,,4.055817,,3.938716,,3.938716,,2.042913,,2.014928,,2.043875,,2.008745,,1.096276,,68.032771,,69.635642,,67.978947,,70,,70,,,,,,,,,,,,15136,,3.938716,,3.938716,,3.938716,,3.938716,,2.008745,,70,,, +7794,0,0.866719,1,1,0,2,5,,5,8,Norton,Rd,4104400,1.553,2.42,0,18.572542,3.7,5,1.733437,1.733437,1.733437,1.733437,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.733437,1.73368,1.733437,1.733437,1.733437,1.73368,1.733437,1.733437,1.733437,1.733437,1.733437,1.733437,1.733442,1.733437,1.733437,1.733437,1.733442,1.733437,1.733437,1.733437,1.733437,1.733437,1.733437,1.733437,,,,,,,1.733437,1.73368,1.733437,1.733437,1.733442,1.733437,1.733437,1.733437,1.733437,1.733437,0.676041,0.676113,0.676041,0.676041,0.676042,0.676041,0.676041,0.676041,0.355355,0.355355,30,29.995793,30,30,29.999911,29.999999,30,30,30,30,,,,,,,,,,,2580,2580,1.733437,1.733437,1.733437,1.733437,1.733437,1.733437,1.733437,1.733437,0.676041,0.676041,30,30,, +7795,0,0.665887,1,1,0,2,5,,5,8,Elliot,Rd,935007,1.504,2.17,0,14.269001,3.7,5,1.331773,1.331773,1.331773,1.331773,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.331786,1.331775,1.331773,1.331773,1.331786,1.331775,1.331774,1.331774,1.331773,1.331773,1.331774,1.331774,1.331789,1.331784,1.331773,1.331773,1.331789,1.331784,1.331773,1.331773,1.331773,1.331773,1.331773,1.331773,,,,,,,1.331786,1.331775,1.331774,1.331774,1.331789,1.331784,1.331773,1.331773,1.331773,1.331773,0.519395,0.519392,0.519392,0.519392,0.519396,0.519395,0.519392,0.519392,0.273014,0.273014,29.999719,29.99996,29.999985,29.99999,29.999645,29.999761,30,30,30,30,,,,,,,,,,,2580,2580,1.331773,1.331773,1.331773,1.331773,1.331773,1.331773,1.331773,1.331773,0.519392,0.519392,30,30,, +7830,0,1.005265,1,1,0,2,6,GRV,5,8,Chase Lake,Rd,943607,4.862,5.867,0,21.541403,5.55,5,2.412637,2.412637,2.412637,2.412637,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.413099,2.412638,2.412637,2.412637,2.413099,2.412638,2.412639,2.412638,2.412637,2.412637,2.412639,2.412638,2.412642,2.41284,2.412637,2.412637,2.412642,2.41284,2.412637,2.412637,2.412637,2.412637,2.412637,2.412637,,,,,,,2.413099,2.412638,2.412639,2.412638,2.412642,2.41284,2.412637,2.412637,2.412637,2.412637,0.904877,0.904739,0.90474,0.904739,0.90474,0.9048,0.904739,0.904739,0.472475,0.472475,24.995219,24.999991,24.999979,24.999993,24.99995,24.997896,25,25,25,25,,,,,,,,,,,2236,2236,2.412637,2.412637,2.412637,2.412637,2.412637,2.412637,2.412637,2.412637,0.904739,0.904739,25,25,, +37035,0,1.046489,1,1,0,2,4,,5,8,Mason,Rd,4104403,1.779,2.825,0,22.424759,3,4,1.569733,1.569733,1.569733,1.569733,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.570272,1.57021,1.569733,1.569733,1.570272,1.57021,1.570023,1.570015,1.569733,1.569733,1.570023,1.570015,1.570501,1.570584,1.569733,1.569733,1.570501,1.570584,1.569733,1.569733,1.569733,1.569733,1.569733,1.569733,,,,,,,1.570272,1.57021,1.570023,1.570015,1.570501,1.570584,1.569733,1.569733,1.569733,1.569733,0.65945,0.659431,0.659375,0.659373,0.659518,0.659543,0.659288,0.659288,0.350574,0.350574,39.986269,39.987846,39.992604,39.992807,39.980442,39.978321,40,40,40,40,,,,,,,,,,,3096,3096,1.569733,1.569733,1.569733,1.569733,1.569733,1.569733,1.569733,1.569733,0.659288,0.659288,40,40,, +8012,0,1.553336,1,1,0,2,7,GRV,5,8,Schafer,Rd,945306,0.47,2.023,0,33.285769,5.55,5,4.660008,4.660008,4.660008,4.660008,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,,,,,,,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,1.677603,1.677603,1.677603,1.677603,1.677603,1.677603,1.677603,1.677603,0.869868,0.869868,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,4.660008,1.677603,1.677603,20,20,, +8032,0,0.169166,1,1,1,2,4,,3,8,Michigan,Ave,944110,8.936,9.105,0,3.624982,6,4.5,0.307574,0.307574,0.307574,0.307574,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.671737,0.548873,0.307574,0.307574,0.671737,0.548873,0.427443,0.373738,0.307574,0.307574,0.427443,0.373738,0.769185,0.61595,0.307574,0.307574,0.769185,0.61595,0.307574,0.307574,0.307574,0.307574,0.307574,0.307574,,,,,,,0.671737,0.548873,0.427443,0.373738,0.769185,0.61595,0.307574,0.307574,0.307574,0.307574,0.231971,0.195112,0.158683,0.142571,0.261205,0.215235,0.122722,0.122722,0.064744,0.064744,15.110013,18.492358,23.74574,27.157932,13.195717,16.478536,33,33,33,33,,,,,,,,,,,2838,2838,0.307574,0.307574,0.307574,0.307574,0.307574,0.307574,0.307574,0.307574,0.122722,0.122722,33,33,, +8113,0,1.018624,1,1,0,2,6,GRV,5,8,Marr,Rd,939610,0,1.018,0,21.827656,5.55,5,2.444697,2.444697,2.444697,2.444697,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.445219,2.446683,2.444697,2.444697,2.445219,2.446683,2.44471,2.44471,2.444697,2.444697,2.44471,2.44471,2.445317,2.445143,2.444697,2.444697,2.445317,2.445143,2.444697,2.444697,2.444697,2.444697,2.444697,2.444697,,,,,,,2.445219,2.446683,2.44471,2.44471,2.445317,2.445143,2.444697,2.444697,2.444697,2.444697,0.916918,0.917357,0.916765,0.916765,0.916947,0.916895,0.916762,0.916762,0.478753,0.478753,24.994665,24.979707,24.999872,24.999874,24.993669,24.995441,25,25,25,25,,,,,,,,,,,2236,2236,2.444697,2.444697,2.444697,2.444697,2.444697,2.444697,2.444697,2.444697,0.916762,0.916762,25,25,, +19933,0,0.643803,1,1,0,2,5,,5,8,Gregory,Rd,4103111,0,0.644,0,13.795786,3.7,5,1.287607,1.287607,1.287607,1.287607,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.287615,1.301484,1.287607,1.287607,1.287615,1.301484,1.287646,1.28771,1.287607,1.287607,1.287646,1.28771,1.294967,1.287729,1.287607,1.287607,1.294967,1.287729,1.287607,1.287607,1.287607,1.287607,1.287607,1.287607,,,,,,,1.287615,1.301484,1.287646,1.28771,1.294967,1.287729,1.287607,1.287607,1.287607,1.287607,0.502169,0.50633,0.502178,0.502198,0.504375,0.502203,0.502167,0.502167,0.263959,0.263959,29.999806,29.680127,29.999089,29.997599,29.829488,29.997145,30,30,30,30,,,,,,,,,,,2580,2580,1.287607,1.287607,1.287607,1.287607,1.287607,1.287607,1.287607,1.287607,0.502167,0.502167,30,30,, +24625,0,0.917717,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.66536,0.15,4,3.670867,3.670867,3.670867,3.670867,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,,,,,,,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,1.266449,1.266449,1.266449,1.266449,1.266449,1.266449,1.266449,1.266449,0.651579,0.651579,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,3.670867,1.266449,1.266449,15,15,, +24666,0,1.225782,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.266758,0.15,4,4.903128,4.903128,4.903128,4.903128,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,,,,,,,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,1.691579,1.691579,1.691579,1.691579,1.691579,1.691579,1.691579,1.691579,0.870305,0.870305,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,4.903128,1.691579,1.691579,15,15,, +24798,0,1.074493,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.024841,0.15,4,4.29797,4.29797,4.29797,4.29797,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,,,,,,,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,1.4828,1.4828,1.4828,1.4828,1.4828,1.4828,1.4828,1.4828,0.76289,0.76289,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,4.29797,1.4828,1.4828,15,15,, +24801,0,1.070415,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.937472,0.15,4,4.281662,4.281662,4.281662,4.281662,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,,,,,,,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,1.477173,1.477173,1.477173,1.477173,1.477173,1.477173,1.477173,1.477173,0.759995,0.759995,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,4.281662,1.477173,1.477173,15,15,, +24803,0,1.153009,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.707342,0.15,4,4.612037,4.612037,4.612037,4.612037,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,,,,,,,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,1.591153,1.591153,1.591153,1.591153,1.591153,1.591153,1.591153,1.591153,0.818637,0.818637,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,4.612037,1.591153,1.591153,15,15,, +24805,0,1.414396,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.308489,0.15,4,5.657585,5.657585,5.657585,5.657585,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,,,,,,,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,1.951867,1.951867,1.951867,1.951867,1.951867,1.951867,1.951867,1.951867,1.004221,1.004221,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,5.657585,1.951867,1.951867,15,15,, +24809,0,0.833812,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.8674,0.15,4,3.335248,3.335248,3.335248,3.335248,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,,,,,,,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,1.150661,1.150661,1.150661,1.150661,1.150661,1.150661,1.150661,1.150661,0.592007,0.592007,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,3.335248,1.150661,1.150661,15,15,, +24813,0,0.239159,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.124838,0.15,4,1.434955,1.434955,1.434955,1.434955,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,,,,,,,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,0.473535,0.473535,0.473535,0.473535,0.473535,0.473535,0.473535,0.473535,0.241551,0.241551,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,1.434955,0.473535,0.473535,10,10,, +29471,0,1.779554,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.133303,0.15,4,7.118217,7.118217,7.118217,7.118217,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,,,,,,,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,2.455785,2.455785,2.455785,2.455785,2.455785,2.455785,2.455785,2.455785,1.263483,1.263483,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,7.118217,2.455785,2.455785,15,15,, +6741,0,1.504644,1,1,0,2,5,,5,8,Bradley,Rd,932405,2.016,3.52,0,32.242375,3.7,5,3.009288,3.009288,3.009288,3.009288,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.00931,3.009298,3.009288,3.009288,3.00931,3.009298,3.00929,3.009289,3.009288,3.009288,3.00929,3.009289,3.009324,3.009311,3.009288,3.009288,3.009324,3.009311,3.009288,3.009288,3.009288,3.009288,3.009288,3.009288,,,,,,,3.00931,3.009298,3.00929,3.009289,3.009324,3.009311,3.009288,3.009288,3.009288,3.009288,1.173629,1.173625,1.173623,1.173623,1.173633,1.173629,1.173622,1.173622,0.616904,0.616904,29.999782,29.999903,29.999986,29.99999,29.999647,29.99977,30,30,30,30,,,,,,,,,,,2580,2580,3.009288,3.009288,3.009288,3.009288,3.009288,3.009288,3.009288,3.009288,1.173622,1.173622,30,30,, +7232,0,1.736268,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,2.715,4.451,0,37.205746,5.55,5,4.167044,4.167044,4.167044,4.167044,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.167067,4.167074,4.167044,4.167044,4.167067,4.167074,4.167044,4.167044,4.167044,4.167044,4.167044,4.167044,4.167087,4.167079,4.167044,4.167044,4.167087,4.167079,4.167044,4.167044,4.167044,4.167044,4.167044,4.167044,,,,,,,4.167067,4.167074,4.167044,4.167044,4.167087,4.167079,4.167044,4.167044,4.167044,4.167044,1.562648,1.56265,1.562642,1.562641,1.562654,1.562652,1.562641,1.562641,0.816046,0.816046,24.999862,24.999818,24.999996,24.999999,24.999741,24.999786,25,25,25,25,,,,,,,,,,,2236,2236,4.167044,4.167044,4.167044,4.167044,4.167044,4.167044,4.167044,4.167044,1.562641,1.562641,25,25,, +7369,0,1.518819,1,1,0,2,5,,5,8,Bull Run,Rd,943306,1.511,3.029,0,32.546126,3.7,5,3.037638,3.037638,3.037638,3.037638,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.039278,3.037826,3.037638,3.037638,3.039278,3.037826,3.037712,3.037696,3.037638,3.037638,3.037712,3.037696,3.038095,3.03951,3.037638,3.037638,3.038095,3.03951,3.037638,3.037638,3.037638,3.037638,3.037638,3.037638,,,,,,,3.039278,3.037826,3.037712,3.037696,3.038095,3.03951,3.037638,3.037638,3.037638,3.037638,1.185171,1.184735,1.184701,1.184696,1.184816,1.18524,1.184679,1.184679,0.622716,0.622716,29.983815,29.998148,29.99927,29.999428,29.995492,29.981531,30,30,30,30,,,,,,,,,,,2580,2580,3.037638,3.037638,3.037638,3.037638,3.037638,3.037638,3.037638,3.037638,1.184679,1.184679,30,30,, +7450,0,0.873528,1,1,0,2,7,GRV,5,8,Iosco,Rd,935803,2.769,3.642,0,18.718466,5.55,5,2.620585,2.620585,2.620585,2.620585,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,,,,,,,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,0.943411,0.943411,0.943411,0.943411,0.943411,0.943411,0.943411,0.943411,0.489176,0.489176,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,2.620585,0.943411,0.943411,20,20,, +7457,0,0.669074,1,1,0,2,5,,5,8,Wasson,Rd,935801,1.067,1.735,0,14.337291,3.7,5,1.338147,1.338147,1.338147,1.338147,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.338214,1.338179,1.338147,1.338147,1.338214,1.338179,1.338154,1.338153,1.338147,1.338147,1.338154,1.338153,1.338196,1.338259,1.338147,1.338147,1.338196,1.338259,1.338147,1.338147,1.338147,1.338147,1.338147,1.338147,,,,,,,1.338214,1.338179,1.338154,1.338153,1.338196,1.338259,1.338147,1.338147,1.338147,1.338147,0.521897,0.521887,0.521879,0.521879,0.521892,0.521911,0.521877,0.521877,0.27432,0.27432,29.998513,29.99928,29.999857,29.999868,29.998899,29.997486,30,30,30,30,,,,,,,,,,,2580,2580,1.338147,1.338147,1.338147,1.338147,1.338147,1.338147,1.338147,1.338147,0.521877,0.521877,30,30,, +24669,0,2.134153,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,45.731853,0.15,4,8.536613,8.536613,8.536613,8.536613,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,,,,,,,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,2.945131,2.945131,2.945131,2.945131,2.945131,2.945131,2.945131,2.945131,1.515249,1.515249,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,8.536613,2.945131,2.945131,15,15,, +24671,0,1.061826,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.753424,0.15,4,4.247306,4.247306,4.247306,4.247306,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,,,,,,,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,1.465321,1.465321,1.465321,1.465321,1.465321,1.465321,1.465321,1.465321,0.753897,0.753897,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,4.247306,1.465321,1.465321,15,15,, +24793,0,1.947178,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,41.725248,0.15,4,7.788713,7.788713,7.788713,7.788713,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,,,,,,,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,2.687106,2.687106,2.687106,2.687106,2.687106,2.687106,2.687106,2.687106,1.382497,1.382497,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,7.788713,2.687106,2.687106,15,15,, +24819,0,1.61976,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.709136,0.15,4,6.479039,6.479039,6.479039,6.479039,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,,,,,,,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,2.235268,2.235268,2.235268,2.235268,2.235268,2.235268,2.235268,2.235268,1.150029,1.150029,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,6.479039,2.235268,2.235268,15,15,, +27105,0,1.578868,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.832889,0.15,4,6.315473,6.315473,6.315473,6.315473,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,,,,,,,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,2.178838,2.178838,2.178838,2.178838,2.178838,2.178838,2.178838,2.178838,1.120996,1.120996,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,6.315473,2.178838,2.178838,15,15,, +5147,0,1.93283,1,1,0,2,5,,5,8,Bradley,Rd,932405,0.084,2.016,0,41.417793,3.7,5,3.865661,3.865661,3.865661,3.865661,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.865747,3.866352,3.865661,3.865661,3.865747,3.866352,3.865676,3.865678,3.865661,3.865661,3.865676,3.865678,3.866763,3.865873,3.865661,3.865661,3.866763,3.865873,3.865661,3.865661,3.865661,3.865661,3.865661,3.865661,,,,,,,3.865747,3.866352,3.865676,3.865678,3.866763,3.865873,3.865661,3.865661,3.865661,3.865661,1.507634,1.507815,1.507612,1.507613,1.507938,1.507671,1.507608,1.507608,0.79246,0.79246,29.999331,29.994639,29.999879,29.999863,29.991445,29.998352,30,30,30,30,,,,,,,,,,,2580,2580,3.865661,3.865661,3.865661,3.865661,3.865661,3.865661,3.865661,3.865661,1.507608,1.507608,30,30,, +5992,0,1.154985,1,1,0,2,4,,5,8,M 36,,932403,0,1.155,0,24.74968,3,4,1.732478,1.732478,1.732478,1.732478,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.732493,1.732499,1.732478,1.732478,1.732493,1.732499,1.732491,1.732491,1.732478,1.732478,1.732491,1.732491,1.732518,1.732512,1.732478,1.732478,1.732518,1.732512,1.732478,1.732478,1.732478,1.732478,1.732478,1.732478,,,,,,,1.732493,1.732499,1.732491,1.732491,1.732518,1.732512,1.732478,1.732478,1.732478,1.732478,0.727645,0.727647,0.727645,0.727645,0.727653,0.727651,0.727641,0.727641,0.38692,0.38692,39.999641,39.999505,39.999694,39.999695,39.999074,39.9992,40,40,40,40,,,,,,,,,,,3096,3096,1.732478,1.732478,1.732478,1.732478,1.732478,1.732478,1.732478,1.732478,0.727641,0.727641,40,40,, +5993,0,0.519479,1,1,0,2,4,,5,8,M 36,,932403,1.155,1.674,0,11.131699,3,4,0.779219,0.779219,0.779219,0.779219,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.779262,0.779238,0.779219,0.779219,0.779262,0.779238,0.779237,0.779235,0.779219,0.779219,0.779237,0.779235,0.779273,0.779299,0.779219,0.779219,0.779273,0.779299,0.779219,0.779219,0.779219,0.779219,0.779219,0.779219,,,,,,,0.779262,0.779238,0.779237,0.779235,0.779273,0.779299,0.779219,0.779219,0.779219,0.779219,0.327285,0.327278,0.327277,0.327277,0.327288,0.327296,0.327272,0.327272,0.174026,0.174026,39.997797,39.999002,39.99905,39.999162,39.997222,39.995867,40,40,40,40,,,,,,,,,,,3096,3096,0.779219,0.779219,0.779219,0.779219,0.779219,0.779219,0.779219,0.779219,0.327272,0.327272,40,40,, +19931,0,1.487608,1,1,0,2,5,,5,8,Gregory,Rd,4103111,6.628,8.115,0,31.877318,3.7,5,2.975216,2.975216,2.975216,2.975216,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.975288,2.975364,2.975216,2.975216,2.975288,2.975364,2.97523,2.975231,2.975216,2.975216,2.97523,2.975231,2.975466,2.975326,2.975216,2.975216,2.975466,2.975326,2.975216,2.975216,2.975216,2.975216,2.975216,2.975216,,,,,,,2.975288,2.975364,2.97523,2.975231,2.975466,2.975326,2.975216,2.975216,2.975216,2.975216,1.160356,1.160379,1.160338,1.160339,1.160409,1.160367,1.160334,1.160334,0.609919,0.609919,29.99928,29.998513,29.999868,29.999857,29.997486,29.998899,30,30,30,30,,,,,,,,,,,2580,2580,2.975216,2.975216,2.975216,2.975216,2.975216,2.975216,2.975216,2.975216,1.160334,1.160334,30,30,, +19974,0,1.730153,1,1,0,2,7,,5,8,Dexter,Trl,3330056,2.095,3.824,0,37.074699,5.8,6,4.152366,4.152366,4.152366,4.152366,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,,,,,,,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,1.557137,1.557137,1.557137,1.557137,1.557137,1.557137,1.557137,1.557137,0.813172,0.813172,25,25,25,25,24.999999,24.999999,25,25,25,25,,,,,,,,,,,2064,2064,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,4.152366,1.557137,1.557137,25,25,, +24642,0,0.78125,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.741066,0.15,4,3.124999,3.124999,3.124999,3.124999,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,,,,,,,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,1.078125,1.078125,1.078125,1.078125,1.078125,1.078125,1.078125,1.078125,0.554687,0.554687,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,3.124999,1.078125,1.078125,15,15,, +24816,0,1.350949,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.948903,0.15,4,5.403795,5.403795,5.403795,5.403795,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,,,,,,,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,1.864309,1.864309,1.864309,1.864309,1.864309,1.864309,1.864309,1.864309,0.959174,0.959174,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,5.403795,1.864309,1.864309,15,15,, +19975,0,1.100673,1,1,0,2,7,,5,8,Dexter,Trl,3330056,0.995,2.095,0,23.585852,5.8,6,2.641615,2.641615,2.641615,2.641615,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,,,,,,,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,0.990606,0.990606,0.990606,0.990606,0.990606,0.990606,0.990606,0.990606,0.517316,0.517316,25,25,25,25,24.999999,24.999999,25,25,25,25,,,,,,,,,,,2064,2064,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,2.641615,0.990606,0.990606,25,25,, +5514,0,1.353676,1,1,0,2,4,,5,8,M 36,,932403,1.812,3.165,0,29.007347,3,4,2.030514,2.030514,2.030514,2.030514,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.031557,2.030615,2.030514,2.030514,2.031557,2.030615,2.0306,2.030585,2.030514,2.030514,2.0306,2.030585,2.030737,2.031786,2.030514,2.030514,2.030737,2.031786,2.030514,2.030514,2.030514,2.030514,2.030514,2.030514,,,,,,,2.031557,2.030615,2.0306,2.030585,2.030737,2.031786,2.030514,2.030514,2.030514,2.030514,0.853129,0.852846,0.852842,0.852837,0.852883,0.853198,0.852816,0.852816,0.453482,0.453482,39.979471,39.99802,39.998306,39.998614,39.995614,39.974961,40,40,40,40,,,,,,,,,,,3096,3096,2.030514,2.030514,2.030514,2.030514,2.030514,2.030514,2.030514,2.030514,0.852816,0.852816,40,40,, +5146,0,0.083506,1,1,0,2,5,,5,8,Bradley,Rd,932405,0,0.084,0,1.789409,3.7,5,0.167012,0.167012,0.167012,0.167012,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.167012,0.16702,0.167012,0.167012,0.167012,0.16702,0.167012,0.167012,0.167012,0.167012,0.167012,0.167012,0.16702,0.167012,0.167012,0.167012,0.16702,0.167012,0.167012,0.167012,0.167012,0.167012,0.167012,0.167012,,,,,,,0.167012,0.16702,0.167012,0.167012,0.16702,0.167012,0.167012,0.167012,0.167012,0.167012,0.065135,0.065137,0.065135,0.065135,0.065137,0.065135,0.065134,0.065134,0.034237,0.034237,29.999986,29.998404,29.999994,29.99999,29.998446,29.999951,30,30,30,30,,,,,,,,,,,2580,2580,0.167012,0.167012,0.167012,0.167012,0.167012,0.167012,0.167012,0.167012,0.065134,0.065134,30,30,, +5823,0,0.138191,1,1,0,2,4,,5,8,M 36,,932403,1.674,1.812,0,2.961231,3,4,0.207286,0.207286,0.207286,0.207286,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.207286,0.207287,0.207286,0.207286,0.207286,0.207287,0.207287,0.207287,0.207286,0.207286,0.207287,0.207287,0.207287,0.207287,0.207286,0.207286,0.207287,0.207287,0.207286,0.207286,0.207286,0.207286,0.207286,0.207286,,,,,,,0.207286,0.207287,0.207287,0.207287,0.207287,0.207287,0.207286,0.207286,0.207286,0.207286,0.08706,0.08706,0.08706,0.08706,0.08706,0.08706,0.08706,0.08706,0.046294,0.046294,39.999955,39.999914,39.999918,39.999913,39.999856,39.999889,40,40,40,40,,,,,,,,,,,3096,3096,0.207286,0.207286,0.207286,0.207286,0.207286,0.207286,0.207286,0.207286,0.08706,0.08706,40,40,, +19507,0,0.111345,1,1,0,2,7,,5,8,Plainfield,Rd,1903110,0,0.111,0,2.385974,5.8,6,0.267229,0.267229,0.267229,0.267229,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,,,,,,,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.100211,0.100211,0.100211,0.100211,0.100211,0.100211,0.100211,0.100211,0.052332,0.052332,24.999992,25,25,25,24.999996,24.999985,25,25,25,25,,,,,,,,,,,2064,2064,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.267229,0.100211,0.100211,25,25,, +19929,0,0.950465,1,1,0,2,4,,5,8,M 36,,4103111,8.142,9.092,0,20.367097,3,4,1.425697,1.425697,1.425697,1.425697,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.433075,1.428395,1.425697,1.425697,1.433075,1.428395,1.426883,1.426841,1.425697,1.425697,1.426883,1.426841,1.430991,1.435123,1.425697,1.425697,1.430991,1.435123,1.425697,1.425697,1.425697,1.425697,1.425697,1.425697,,,,,,,1.433075,1.428395,1.426883,1.426841,1.430991,1.435123,1.425697,1.425697,1.425697,1.425697,0.601006,0.599602,0.599149,0.599136,0.600381,0.601621,0.598793,0.598793,0.318406,0.318406,39.79406,39.924444,39.966737,39.967916,39.852004,39.737271,40,40,40,40,,,,,,,,,,,3096,3096,1.425697,1.425697,1.425697,1.425697,1.425697,1.425697,1.425697,1.425697,0.598793,0.598793,40,40,, +19928,0,0.042292,1,1,0,2,4,,5,8,M 36,,4103111,9.092,9.134,0,0.90625,3,4,0.063438,0.063438,0.063438,0.063438,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.063742,0.063546,0.063438,0.063438,0.063742,0.063546,0.063486,0.063484,0.063438,0.063438,0.063486,0.063484,0.06365,0.063824,0.063438,0.063438,0.06365,0.063824,0.063438,0.063438,0.063438,0.063438,0.063438,0.063438,,,,,,,0.063742,0.063546,0.063486,0.063484,0.06365,0.063824,0.063438,0.063438,0.063438,0.063438,0.026735,0.026676,0.026658,0.026658,0.026707,0.02676,0.026644,0.026644,0.014168,0.014168,39.808701,39.931554,39.969346,39.970412,39.86653,39.757834,40,40,40,40,,,,,,,,,,,3096,3096,0.063438,0.063438,0.063438,0.063438,0.063438,0.063438,0.063438,0.063438,0.026644,0.026644,40,40,, +19949,0,0.037765,1,1,0,2,7,,5,8,Dexter,Trl,4102084,0,0.038,0,0.80925,5.8,6,0.090636,0.090636,0.090636,0.090636,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,,,,,,,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.033989,0.033989,0.033989,0.033989,0.033989,0.033989,0.033989,0.033989,0.01775,0.01775,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.090636,0.033989,0.033989,25,25,, +19973,0,0.036356,1,1,0,2,9,,5,8,Dexter,Trl,3330056,3.824,3.861,0,0.77905,5.8,6,0.062324,0.062324,0.062324,0.062324,35,35,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,,,,,,,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.025241,0.025241,0.025241,0.025241,0.025241,0.025241,0.025241,0.025241,0.013348,0.013348,35,35,35,35,35,35,35,35,35,35,,,,,,,,,,,2064,2064,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.062324,0.025241,0.025241,35,35,, +5994,0,0.116859,1,1,0,2,4,,5,8,Spears,Rd,932407,0.72,0.837,0,2.504124,3,4,0.175289,0.175289,0.175289,0.175289,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.175379,0.175297,0.175289,0.175289,0.175379,0.175297,0.175296,0.175295,0.175289,0.175289,0.175296,0.175295,0.175308,0.175399,0.175289,0.175289,0.175308,0.175399,0.175289,0.175289,0.175289,0.175289,0.175289,0.175289,,,,,,,0.175379,0.175297,0.175296,0.175295,0.175308,0.175399,0.175289,0.175289,0.175289,0.175289,0.073648,0.073624,0.073623,0.073623,0.073627,0.073654,0.073621,0.073621,0.039148,0.039148,39.979471,39.99802,39.998306,39.998614,39.995614,39.974961,40,40,40,40,,,,,,,,,,,3096,3096,0.175289,0.175289,0.175289,0.175289,0.175289,0.175289,0.175289,0.175289,0.073621,0.073621,40,40,, +5995,0,0.038998,1,1,0,2,4,,5,8,M 36,,932407,0.837,0.876,0,0.835678,3,4,0.058497,0.058497,0.058497,0.058497,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.058525,0.0585,0.058497,0.058497,0.058525,0.0585,0.0585,0.058499,0.058497,0.058497,0.0585,0.058499,0.058503,0.058532,0.058497,0.058497,0.058503,0.058532,0.058497,0.058497,0.058497,0.058497,0.058497,0.058497,,,,,,,0.058525,0.0585,0.0585,0.058499,0.058503,0.058532,0.058497,0.058497,0.058497,0.058497,0.024577,0.02457,0.02457,0.024569,0.024571,0.024579,0.024569,0.024569,0.013064,0.013064,39.980982,39.998244,39.998505,39.998739,39.996021,39.976721,40,40,40,40,,,,,,,,,,,3096,3096,0.058497,0.058497,0.058497,0.058497,0.058497,0.058497,0.058497,0.058497,0.024569,0.024569,40,40,, +19506,0,0.027455,1,1,0,2,7,,5,8,Spears,Rd,1903201,0,0.027,0,0.588323,5.8,6,0.065892,0.065892,0.065892,0.065892,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,,,,,,,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.02471,0.02471,0.02471,0.02471,0.02471,0.02471,0.02471,0.02471,0.012904,0.012904,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.065892,0.02471,0.02471,25,25,, +19930,0,0.026466,1,1,0,2,5,,5,8,Gregory,Rd,4103111,8.115,8.142,0,0.567131,3.7,5,0.052932,0.052932,0.052932,0.052932,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.052935,0.052936,0.052932,0.052932,0.052935,0.052936,0.052933,0.052933,0.052932,0.052932,0.052933,0.052933,0.052941,0.052937,0.052932,0.052932,0.052941,0.052937,0.052932,0.052932,0.052932,0.052932,0.052932,0.052932,,,,,,,0.052935,0.052936,0.052933,0.052933,0.052941,0.052937,0.052932,0.052932,0.052932,0.052932,0.020644,0.020645,0.020644,0.020644,0.020646,0.020645,0.020644,0.020644,0.010851,0.010851,29.998223,29.997677,29.999547,29.999503,29.995209,29.997426,30,30,30,30,,,,,,,,,,,2580,2580,0.052932,0.052932,0.052932,0.052932,0.052932,0.052932,0.052932,0.052932,0.020644,0.020644,30,30,, +19768,0,0.058619,1,1,0,2,5,,5,8,Gregory,Rd,4104150,0,0.059,0,1.256122,3.7,5,0.117238,0.117238,0.117238,0.117238,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.117244,0.117241,0.117238,0.117238,0.117244,0.117241,0.117239,0.117239,0.117238,0.117238,0.117239,0.117239,0.117242,0.117248,0.117238,0.117238,0.117242,0.117248,0.117238,0.117238,0.117238,0.117238,0.117238,0.117238,,,,,,,0.117244,0.117241,0.117239,0.117239,0.117242,0.117248,0.117238,0.117238,0.117238,0.117238,0.045725,0.045724,0.045723,0.045723,0.045724,0.045726,0.045723,0.045723,0.024034,0.024034,29.998513,29.99928,29.999857,29.999868,29.998899,29.997486,30,30,30,30,,,,,,,,,,,2580,2580,0.117238,0.117238,0.117238,0.117238,0.117238,0.117238,0.117238,0.117238,0.045723,0.045723,30,30,, +265,0,0.983833,1,1,0,2,6,GRV,5,8,Kane,Rd,359501,4.369,5.353,0,21.082132,5.55,5,2.361199,2.361199,2.361199,2.361199,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,,,,,,,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,0.88545,0.88545,0.88545,0.88545,0.88545,0.88545,0.88545,0.88545,0.462401,0.462401,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,2.361199,0.88545,0.88545,25,25,, +6494,0,1.488171,1,1,0,2,5,,5,8,Bradley,Rd,932405,3.52,5.007,0,31.889371,3.7,5,2.976341,2.976341,2.976341,2.976341,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.986321,2.976432,2.976341,2.976341,2.986321,2.976432,2.976519,2.976423,2.976341,2.976341,2.976519,2.976423,2.977233,2.984365,2.976341,2.976341,2.977233,2.984365,2.976341,2.976341,2.976341,2.976341,2.976341,2.976341,,,,,,,2.986321,2.976432,2.976519,2.976423,2.977233,2.984365,2.976341,2.976341,2.976341,2.976341,1.163767,1.1608,1.160827,1.160797,1.161041,1.16318,1.160773,1.160773,0.61015,0.61015,29.899743,29.999086,29.998204,29.999181,29.99101,29.919343,30,30,30,30,,,,,,,,,,,2580,2580,2.976341,2.976341,2.976341,2.976341,2.976341,2.976341,2.976341,2.976341,1.160773,1.160773,30,30,, +7454,0,0.241277,1,1,0,2,5,,5,8,Iosco,Rd,935803,1.272,1.513,0,5.170219,3.7,5,0.482554,0.482554,0.482554,0.482554,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.482554,0.482555,0.482554,0.482554,0.482554,0.482555,0.482554,0.482554,0.482554,0.482554,0.482554,0.482554,0.482556,0.482559,0.482554,0.482554,0.482556,0.482559,0.482554,0.482554,0.482554,0.482554,0.482554,0.482554,,,,,,,0.482554,0.482555,0.482554,0.482554,0.482556,0.482559,0.482554,0.482554,0.482554,0.482554,0.188196,0.188196,0.188196,0.188196,0.188197,0.188197,0.188196,0.188196,0.098924,0.098924,29.999966,29.999903,29.999994,29.999992,29.999876,29.999698,30,30,30,30,,,,,,,,,,,2580,2580,0.482554,0.482554,0.482554,0.482554,0.482554,0.482554,0.482554,0.482554,0.188196,0.188196,30,30,, +24791,0,0.635249,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.612482,0.15,4,2.540997,2.540997,2.540997,2.540997,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,,,,,,,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,0.876644,0.876644,0.876644,0.876644,0.876644,0.876644,0.876644,0.876644,0.451027,0.451027,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,2.540997,0.876644,0.876644,15,15,, +24792,0,0.745157,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.967646,0.15,4,2.980627,2.980627,2.980627,2.980627,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,,,,,,,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,1.028316,1.028316,1.028316,1.028316,1.028316,1.028316,1.028316,1.028316,0.529061,0.529061,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,2.980627,1.028316,1.028316,15,15,, +7456,0,1.272532,1,1,0,2,6,GRV,5,8,Iosco,Rd,935803,0,1.272,0,27.268543,5.55,5,3.054077,3.054077,3.054077,3.054077,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,,,,,,,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,1.145279,1.145279,1.145279,1.145279,1.145279,1.145279,1.145279,1.145279,0.59809,0.59809,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,3.054077,1.145279,1.145279,25,25,, +7796,0,1.004016,1,1,0,2,5,,5,8,Elliot,Rd,935007,0.5,1.504,0,21.514619,3.7,5,2.008031,2.008031,2.008031,2.008031,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.008036,2.008032,2.008031,2.008031,2.008036,2.008032,2.008031,2.008031,2.008031,2.008031,2.008031,2.008031,2.008041,2.008036,2.008031,2.008031,2.008041,2.008036,2.008031,2.008031,2.008031,2.008031,2.008031,2.008031,,,,,,,2.008036,2.008032,2.008031,2.008031,2.008041,2.008036,2.008031,2.008031,2.008031,2.008031,0.783134,0.783132,0.783132,0.783132,0.783135,0.783134,0.783132,0.783132,0.411646,0.411646,29.999923,29.999988,29.999995,29.999997,29.999851,29.999927,30,30,30,30,,,,,,,,,,,2580,2580,2.008031,2.008031,2.008031,2.008031,2.008031,2.008031,2.008031,2.008031,0.783132,0.783132,30,30,, +7798,0,0.500507,1,1,0,2,5,,5,8,Elliot,Rd,935007,0,0.5,0,10.725158,3.7,5,1.001015,1.001015,1.001015,1.001015,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.001019,1.001016,1.001015,1.001015,1.001019,1.001016,1.001015,1.001015,1.001015,1.001015,1.001015,1.001015,1.001027,1.00102,1.001015,1.001015,1.001027,1.00102,1.001015,1.001015,1.001015,1.001015,1.001015,1.001015,,,,,,,1.001019,1.001016,1.001015,1.001015,1.001027,1.00102,1.001015,1.001015,1.001015,1.001015,0.390397,0.390396,0.390396,0.390396,0.3904,0.390397,0.390396,0.390396,0.205208,0.205208,29.999874,29.999953,29.999987,29.999992,29.999617,29.999828,30,30,30,30,,,,,,,,,,,2580,2580,1.001015,1.001015,1.001015,1.001015,1.001015,1.001015,1.001015,1.001015,0.390396,0.390396,30,30,, +29470,0,0.601217,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.883226,0.15,4,2.404869,2.404869,2.404869,2.404869,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,,,,,,,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,0.82968,0.82968,0.82968,0.82968,0.82968,0.82968,0.82968,0.82968,0.426864,0.426864,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,2.404869,0.82968,0.82968,15,15,, +7451,0,1.233331,1,1,0,2,5,,5,8,Iosco,Rd,935803,1.536,2.769,0,26.428523,3.7,5,2.466662,2.466662,2.466662,2.466662,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.468688,2.466664,2.466662,2.466662,2.468688,2.466664,2.466682,2.466669,2.466662,2.466662,2.466682,2.466669,2.466686,2.468078,2.466662,2.466662,2.466686,2.468078,2.466662,2.466662,2.466662,2.466662,2.466662,2.466662,,,,,,,2.468688,2.466664,2.466682,2.466669,2.466686,2.468078,2.466662,2.466662,2.466662,2.466662,0.962606,0.961999,0.962004,0.962,0.962005,0.962423,0.961998,0.961998,0.505666,0.505666,29.975383,29.999973,29.999762,29.999911,29.999707,29.982788,30,30,30,30,,,,,,,,,,,2580,2580,2.466662,2.466662,2.466662,2.466662,2.466662,2.466662,2.466662,2.466662,0.961998,0.961998,30,30,, +19932,0,1.502919,1,1,0,2,5,,5,8,Gregory,Rd,4103111,0.644,2.146,0,32.205411,3.7,5,3.005838,3.005838,3.005838,3.005838,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.005841,3.008109,3.005838,3.005838,3.005841,3.008109,3.005845,3.005858,3.005838,3.005838,3.005845,3.005858,3.007373,3.005862,3.005838,3.005838,3.007373,3.005862,3.005838,3.005838,3.005838,3.005838,3.005838,3.005838,,,,,,,3.005841,3.008109,3.005845,3.005858,3.007373,3.005862,3.005838,3.005838,3.005838,3.005838,1.172278,1.172958,1.172279,1.172283,1.172737,1.172284,1.172277,1.172277,0.616197,0.616197,29.999979,29.977357,29.999933,29.999804,29.984692,29.99976,30,30,30,30,,,,,,,,,,,2580,2580,3.005838,3.005838,3.005838,3.005838,3.005838,3.005838,3.005838,3.005838,1.172277,1.172277,30,30,, +24653,0,1.101883,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.61177,0.15,4,4.40753,4.40753,4.40753,4.40753,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,,,,,,,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,1.520598,1.520598,1.520598,1.520598,1.520598,1.520598,1.520598,1.520598,0.782337,0.782337,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,4.40753,1.520598,1.520598,15,15,, +7452,0,0.022756,1,1,0,2,5,,5,8,Iosco,Rd,935803,1.513,1.536,0,0.487621,3.7,5,0.045511,0.045511,0.045511,0.045511,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,,,,,,,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.017749,0.017749,0.017749,0.017749,0.017749,0.017749,0.017749,0.017749,0.00933,0.00933,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.045511,0.017749,0.017749,30,30,, +20320,0,0.021059,1,1,0,2,5,,5,8,Bradley/Iosco Cutoff,,4104264,0,0.021,0,0.45126,3.7,5,0.042118,0.042118,0.042118,0.042118,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.042152,0.042118,0.042118,0.042118,0.042152,0.042118,0.042118,0.042118,0.042118,0.042118,0.042118,0.042118,0.042118,0.042141,0.042118,0.042118,0.042118,0.042141,0.042118,0.042118,0.042118,0.042118,0.042118,0.042118,,,,,,,0.042152,0.042118,0.042118,0.042118,0.042118,0.042141,0.042118,0.042118,0.042118,0.042118,0.016436,0.016426,0.016426,0.016426,0.016426,0.016433,0.016426,0.016426,0.008634,0.008634,29.975743,29.999974,29.999771,29.999914,29.999719,29.983339,30,30,30,30,,,,,,,,,,,2580,2580,0.042118,0.042118,0.042118,0.042118,0.042118,0.042118,0.042118,0.042118,0.016426,0.016426,30,30,, +6191,0,0.018042,1,1,0,2,5,,5,8,Bradley,Rd,932405,5.007,5.025,0,0.38661,3.7,5,0.036084,0.036084,0.036084,0.036084,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,,,,,,,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.014073,0.014073,0.014073,0.014073,0.014073,0.014073,0.014073,0.014073,0.007397,0.007397,29.999907,29.999968,29.999992,29.999995,29.999719,29.999882,30,30,30,30,,,,,,,,,,,2580,2580,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.036084,0.014073,0.014073,30,30,, +7233,0,0.946333,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,1.769,2.715,0,20.278567,5.55,5,2.271199,2.271199,2.271199,2.271199,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.271221,2.271302,2.271199,2.271199,2.271221,2.271302,2.271201,2.2712,2.271199,2.271199,2.271201,2.2712,2.271294,2.271236,2.271199,2.271199,2.271294,2.271236,2.271199,2.271199,2.271199,2.271199,2.271199,2.271199,,,,,,,2.271221,2.271302,2.271201,2.2712,2.271294,2.271236,2.271199,2.271199,2.271199,2.271199,0.851706,0.851731,0.8517,0.8517,0.851728,0.851711,0.8517,0.8517,0.444777,0.444777,24.99976,24.998873,24.999984,24.999992,24.998957,24.999598,25,25,25,25,,,,,,,,,,,2236,2236,2.271199,2.271199,2.271199,2.271199,2.271199,2.271199,2.271199,2.271199,0.8517,0.8517,25,25,, +24601,0,1.401348,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.028875,0.15,4,5.60539,5.60539,5.60539,5.60539,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,,,,,,,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,1.93386,1.93386,1.93386,1.93386,1.93386,1.93386,1.93386,1.93386,0.994957,0.994957,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,5.60539,1.93386,1.93386,15,15,, +24817,0,1.168607,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.041589,0.15,4,4.67443,4.67443,4.67443,4.67443,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,,,,,,,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,1.612678,1.612678,1.612678,1.612678,1.612678,1.612678,1.612678,1.612678,0.829711,0.829711,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,4.67443,1.612678,1.612678,15,15,, +26025,0,1.826462,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.138475,0.15,4,7.305849,7.305849,7.305849,7.305849,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,,,,,,,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,2.520518,2.520518,2.520518,2.520518,2.520518,2.520518,2.520518,2.520518,1.296788,1.296788,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,7.305849,2.520518,2.520518,15,15,, +8117,0,1.289899,1,1,0,2,5,,5,8,Bull Run,Rd,943306,0,1.289,0,27.640698,3.7,5,2.579798,2.579798,2.579798,2.579798,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.580607,2.579955,2.579798,2.579798,2.580607,2.579955,2.579853,2.579847,2.579798,2.579798,2.579853,2.579847,2.580179,2.58094,2.579798,2.579798,2.580179,2.58094,2.579798,2.579798,2.579798,2.579798,2.579798,2.579798,,,,,,,2.580607,2.579955,2.579853,2.579847,2.580179,2.58094,2.579798,2.579798,2.579798,2.579798,1.006364,1.006168,1.006138,1.006136,1.006236,1.006464,1.006121,1.006121,0.528859,0.528859,29.990597,29.998175,29.999365,29.999437,29.995574,29.986733,30,30,30,30,,,,,,,,,,,2580,2580,2.579798,2.579798,2.579798,2.579798,2.579798,2.579798,2.579798,2.579798,1.006121,1.006121,30,30,, +7850,0,0.221476,1,1,0,2,5,,5,8,Bull Run,Rd,943306,1.289,1.511,0,4.745916,3.7,5,0.442952,0.442952,0.442952,0.442952,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.443119,0.442977,0.442952,0.442952,0.443119,0.442977,0.442965,0.442963,0.442952,0.442952,0.442965,0.442963,0.44303,0.443191,0.442952,0.442952,0.44303,0.443191,0.442952,0.442952,0.442952,0.442952,0.442952,0.442952,,,,,,,0.443119,0.442977,0.442965,0.442963,0.44303,0.443191,0.442952,0.442952,0.442952,0.442952,0.172802,0.172759,0.172755,0.172755,0.172775,0.172823,0.172751,0.172751,0.090805,0.090805,29.988681,29.998309,29.999162,29.999268,29.994737,29.983822,30,30,30,30,,,,,,,,,,,2580,2580,0.442952,0.442952,0.442952,0.442952,0.442952,0.442952,0.442952,0.442952,0.172751,0.172751,30,30,, +24815,0,1.982206,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,42.475853,0.15,4,7.928826,7.928826,7.928826,7.928826,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,,,,,,,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,2.735445,2.735445,2.735445,2.735445,2.735445,2.735445,2.735445,2.735445,1.407367,1.407367,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,7.928826,2.735445,2.735445,15,15,, +7230,0,1.527166,1,1,0,2,5,GRV,5,8,Pingree,Rd,932601,5.277,6.804,0,32.724988,5.55,5,4.581498,4.581498,4.581498,4.581498,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,,,,,,,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,1.649339,1.649339,1.649339,1.649339,1.649339,1.649339,1.649339,1.649339,0.855213,0.855213,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,4.581498,1.649339,1.649339,20,20,, +7480,0,2.148542,1,1,0,2,6,GRV,5,8,Coon Lake,Rd,935710,3.776,5.924,0,46.040189,5.55,5,5.156501,5.156501,5.156501,5.156501,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,5.156502,5.156501,5.156501,5.156501,5.156502,5.156501,5.156501,5.156501,5.156501,5.156501,5.156501,5.156501,5.156501,5.156503,5.156501,5.156501,5.156501,5.156503,5.156501,5.156501,5.156501,5.156501,5.156501,5.156501,,,,,,,5.156502,5.156501,5.156501,5.156501,5.156501,5.156503,5.156501,5.156501,5.156501,5.156501,1.933688,1.933688,1.933688,1.933688,1.933688,1.933689,1.933688,1.933688,1.009815,1.009815,24.999994,24.999999,25,25,24.999999,24.999989,25,25,25,25,,,,,,,,,,,2236,2236,5.156501,5.156501,5.156501,5.156501,5.156501,5.156501,5.156501,5.156501,1.933688,1.933688,25,25,, +8102,0,0.505619,1,1,0,2,5,,5,8,Bull Run,Rd,943306,4.056,4.561,0,10.834695,3.7,5,1.011238,1.011238,1.011238,1.011238,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.011555,1.011279,1.011238,1.011238,1.011555,1.011279,1.011257,1.011254,1.011238,1.011238,1.011257,1.011254,1.011344,1.011573,1.011238,1.011238,1.011344,1.011573,1.011238,1.011238,1.011238,1.011238,1.011238,1.011238,,,,,,,1.011555,1.011279,1.011257,1.011254,1.011344,1.011573,1.011238,1.011238,1.011238,1.011238,0.394478,0.394395,0.394389,0.394388,0.394415,0.394483,0.394383,0.394383,0.207304,0.207304,29.990605,29.998791,29.99944,29.999539,29.996874,29.990057,30,30,30,30,,,,,,,,,,,2580,2580,1.011238,1.011238,1.011238,1.011238,1.011238,1.011238,1.011238,1.011238,0.394383,0.394383,30,30,, +29469,0,1.363851,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.225388,0.15,4,5.455406,5.455406,5.455406,5.455406,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,,,,,,,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,1.882115,1.882115,1.882115,1.882115,1.882115,1.882115,1.882115,1.882115,0.968335,0.968335,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,5.455406,1.882115,1.882115,15,15,, +29472,0,1.626831,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.860663,0.15,4,6.507324,6.507324,6.507324,6.507324,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,,,,,,,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,2.245027,2.245027,2.245027,2.245027,2.245027,2.245027,2.245027,2.245027,1.15505,1.15505,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,6.507324,2.245027,2.245027,15,15,, +29473,0,2.194829,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,47.03206,0.15,4,8.779318,8.779318,8.779318,8.779318,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,,,,,,,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,3.028865,3.028865,3.028865,3.028865,3.028865,3.028865,3.028865,3.028865,1.558329,1.558329,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,8.779318,3.028865,3.028865,15,15,, +8105,0,1.026899,1,1,0,2,5,,5,8,Bull Run,Rd,943306,3.029,4.056,0,22.004983,3.7,5,2.053798,2.053798,2.053798,2.053798,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.054513,2.053896,2.053798,2.053798,2.054513,2.053896,2.053836,2.053831,2.053798,2.053798,2.053836,2.053831,2.054035,2.054515,2.053798,2.053798,2.054035,2.054515,2.053798,2.053798,2.053798,2.053798,2.053798,2.053798,,,,,,,2.054513,2.053896,2.053836,2.053831,2.054035,2.054515,2.053798,2.053798,2.053798,2.053798,0.801196,0.801011,0.800993,0.800991,0.801052,0.801196,0.800981,0.800981,0.421029,0.421029,29.989568,29.99857,29.999455,29.99953,29.996543,29.989535,30,30,30,30,,,,,,,,,,,2580,2580,2.053798,2.053798,2.053798,2.053798,2.053798,2.053798,2.053798,2.053798,0.800981,0.800981,30,30,, +7842,0,0.503725,1,1,0,2,5,,5,8,Bull Run,Rd,943306,4.561,5.064,0,10.794098,3.7,5,1.007449,1.007449,1.007449,1.007449,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.007743,1.007484,1.007449,1.007449,1.007743,1.007484,1.007465,1.007462,1.007449,1.007449,1.007465,1.007462,1.007538,1.007752,1.007449,1.007449,1.007538,1.007752,1.007449,1.007449,1.007449,1.007449,1.007449,1.007449,,,,,,,1.007743,1.007484,1.007465,1.007462,1.007538,1.007752,1.007449,1.007449,1.007449,1.007449,0.392993,0.392916,0.39291,0.392909,0.392932,0.392996,0.392905,0.392905,0.206527,0.206527,29.991267,29.998964,29.999541,29.999611,29.997351,29.990988,30,30,30,30,,,,,,,,,,,2580,2580,1.007449,1.007449,1.007449,1.007449,1.007449,1.007449,1.007449,1.007449,0.392905,0.392905,30,30,, +7231,0,0.827177,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,4.451,5.277,0,17.725216,5.55,5,1.985224,1.985224,1.985224,1.985224,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.985232,1.985225,1.985224,1.985224,1.985232,1.985225,1.985224,1.985224,1.985224,1.985224,1.985224,1.985224,1.985227,1.98523,1.985224,1.985224,1.985227,1.98523,1.985224,1.985224,1.985224,1.985224,1.985224,1.985224,,,,,,,1.985232,1.985225,1.985224,1.985224,1.985227,1.98523,1.985224,1.985224,1.985224,1.985224,0.744461,0.744459,0.744459,0.744459,0.74446,0.744461,0.744459,0.744459,0.388773,0.388773,24.999899,24.999993,24.999998,24.999999,24.999969,24.999927,25,25,25,25,,,,,,,,,,,2236,2236,1.985224,1.985224,1.985224,1.985224,1.985224,1.985224,1.985224,1.985224,0.744459,0.744459,25,25,, +7476,0,0.35216,1,1,0,2,6,GRV,5,8,Coon Lake,Rd,935710,5.924,6.276,0,7.546284,5.55,5,0.845184,0.845184,0.845184,0.845184,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.845322,0.845185,0.845184,0.845184,0.845322,0.845185,0.845185,0.845184,0.845184,0.845184,0.845185,0.845184,0.84519,0.845368,0.845184,0.845184,0.84519,0.845368,0.845184,0.845184,0.845184,0.845184,0.845184,0.845184,,,,,,,0.845322,0.845185,0.845185,0.845184,0.84519,0.845368,0.845184,0.845184,0.845184,0.845184,0.316985,0.316944,0.316944,0.316944,0.316946,0.316999,0.316944,0.316944,0.165515,0.165515,24.995909,24.999954,24.999968,24.999983,24.999816,24.994546,25,25,25,25,,,,,,,,,,,2236,2236,0.845184,0.845184,0.845184,0.845184,0.845184,0.845184,0.845184,0.845184,0.316944,0.316944,25,25,, +7229,0,0.50222,1,1,0,2,5,GRV,5,8,Pingree,Rd,932601,6.804,7.306,0,10.761851,5.55,5,1.506659,1.506659,1.506659,1.506659,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,,,,,,,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,0.542397,0.542397,0.542397,0.542397,0.542397,0.542397,0.542397,0.542397,0.281243,0.281243,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,1.506659,0.542397,0.542397,20,20,, +7113,0,0.782585,1,1,0,2,6,,5,8,Cemetary,Rd,933202,0.941,1.724,0,16.769687,5.8,6,1.565171,1.565171,1.565171,1.565171,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.565171,1.56518,1.565171,1.565171,1.565171,1.56518,1.565171,1.565171,1.565171,1.565171,1.565171,1.565171,1.565179,1.565171,1.565171,1.565171,1.565179,1.565171,1.565171,1.565171,1.565171,1.565171,1.565171,1.565171,,,,,,,1.565171,1.56518,1.565171,1.565171,1.565179,1.565171,1.565171,1.565171,1.565171,1.565171,0.610417,0.610419,0.610417,0.610417,0.610419,0.610417,0.610417,0.610417,0.32086,0.32086,30,29.999832,30,30,29.999839,29.999994,30,30,30,30,,,,,,,,,,,2236,2236,1.565171,1.565171,1.565171,1.565171,1.565171,1.565171,1.565171,1.565171,0.610417,0.610417,30,30,, +7120,0,0.724972,1,1,0,2,6,,5,8,Nicholson,Rd,933006,3.734,4.459,0,15.53512,5.8,6,1.449944,1.449944,1.449944,1.449944,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.449946,1.449969,1.449944,1.449944,1.449946,1.449969,1.449944,1.449944,1.449944,1.449944,1.449944,1.449944,1.449953,1.451206,1.449944,1.449944,1.449953,1.451206,1.449944,1.449944,1.449944,1.449944,1.449944,1.449944,,,,,,,1.449946,1.449969,1.449944,1.449944,1.449953,1.451206,1.449944,1.449944,1.449944,1.449944,0.565479,0.565486,0.565478,0.565478,0.565481,0.565857,0.565478,0.565478,0.297239,0.297239,29.999976,29.999499,30,30,29.999817,29.973927,30,30,30,30,,,,,,,,,,,2236,2236,1.449944,1.449944,1.449944,1.449944,1.449944,1.449944,1.449944,1.449944,0.565478,0.565478,30,30,, +7187,0,0.618595,1,1,0,2,4,,4,8,Grand River,Ave,932910,2.936,3.554,0,13.255617,4.5,4.5,0.97673,0.97673,0.97673,0.97673,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.286819,1.015724,0.97673,0.97673,1.286819,1.015724,1.03442,1.021493,0.97673,0.97673,1.03442,1.021493,1.011752,1.290215,0.97673,0.97673,1.011752,1.290215,0.97673,0.97673,0.97673,0.97673,0.97673,0.97673,,,,,,,1.286819,1.015724,1.03442,1.021493,1.011752,1.290215,0.97673,0.97673,0.97673,0.97673,0.497393,0.416064,0.421673,0.417795,0.414873,0.498412,0.404366,0.404366,0.214555,0.214555,28.843011,36.541147,35.88073,36.33477,36.684602,28.767095,38,38,38,38,,,,,,,,,,,3096,3096,0.97673,0.97673,0.97673,0.97673,0.97673,0.97673,0.97673,0.97673,0.404366,0.404366,38,38,, +7188,0,1.028234,1,1,0,2,4,,5,8,Grand River,Ave,932910,1.908,2.936,0,22.033593,3,4,1.542352,1.542352,1.542352,1.542352,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.600298,1.568181,1.542352,1.542352,1.600298,1.568181,1.560819,1.55948,1.542352,1.542352,1.560819,1.55948,1.550342,1.609186,1.542352,1.542352,1.550342,1.609186,1.542352,1.542352,1.542352,1.542352,1.542352,1.542352,,,,,,,1.600298,1.568181,1.560819,1.55948,1.550342,1.609186,1.542352,1.542352,1.542352,1.542352,0.665172,0.655536,0.653328,0.652926,0.650185,0.667838,0.647788,0.647788,0.344459,0.344459,38.551599,39.341162,39.526715,39.560653,39.793829,38.338669,40,40,40,40,,,,,,,,,,,3096,3096,1.542352,1.542352,1.542352,1.542352,1.542352,1.542352,1.542352,1.542352,0.647788,0.647788,40,40,, +7447,0,0.995356,1,1,0,2,6,,5,8,Van Buren,Rd,935807,2.204,3.199,0,21.32906,5.8,6,1.990712,1.990712,1.990712,1.990712,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.106661,1.990902,1.990712,1.990712,3.106661,1.990902,1.991409,1.991126,1.990712,1.990712,1.991409,1.991126,2.05056,2.489181,1.990712,1.990712,2.05056,2.489181,1.990712,1.990712,1.990712,1.990712,1.990712,1.990712,,,,,,,3.106661,1.990902,1.991409,1.991126,2.05056,2.489181,1.990712,1.990712,1.990712,1.990712,1.111162,0.776435,0.776587,0.776502,0.794332,0.925919,0.776378,0.776378,0.408096,0.408096,19.22365,29.997148,29.98951,29.993768,29.12442,23.992372,30,30,30,30,,,,,,,,,,,2236,2236,1.990712,1.990712,1.990712,1.990712,1.990712,1.990712,1.990712,1.990712,0.776378,0.776378,30,30,, +7836,0,0.262312,1,1,1,2,5,,4,8,Grand,Ave,935004,4.233,4.496,0,5.620977,5.8,4.5,0.582916,0.582916,0.582916,0.582916,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.828363,0.739611,0.582916,0.582916,0.828363,0.739611,0.620724,0.637167,0.582916,0.582916,0.620724,0.637167,0.818605,0.881673,0.582916,0.582916,0.818605,0.881673,0.582916,0.582916,0.582916,0.582916,0.582916,0.582916,,,,,,,0.828363,0.739611,0.620724,0.637167,0.818605,0.881673,0.582916,0.582916,0.582916,0.582916,0.295725,0.269099,0.233433,0.238366,0.292798,0.311718,0.222091,0.222091,0.116292,0.116292,18.9998,21.279762,25.355456,24.701112,19.226299,17.850982,27,27,27,27,,,,,,,,,,,2838,2838,0.582916,0.582916,0.582916,0.582916,0.582916,0.582916,0.582916,0.582916,0.222091,0.222091,27,27,, +37040,0,1.716043,1,1,0,2,4,,5,8,Mason,Rd,4104403,4.778,6.493,0,36.772358,3,4,2.574065,2.574065,2.574065,2.574065,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.090364,2.581103,2.574065,2.574065,3.090364,2.581103,2.590885,2.585551,2.574065,2.574065,2.590885,2.585551,2.62426,2.945204,2.574065,2.574065,2.62426,2.945204,2.574065,2.574065,2.574065,2.574065,2.574065,2.574065,,,,,,,3.090364,2.581103,2.590885,2.585551,2.62426,2.945204,2.574065,2.574065,2.574065,2.574065,1.235997,1.083219,1.086153,1.084553,1.096166,1.192449,1.081107,1.081107,0.574875,0.574875,33.317306,39.890936,39.740318,39.822299,39.234904,34.959416,40,40,40,40,,,,,,,,,,,3096,3096,2.574065,2.574065,2.574065,2.574065,2.574065,2.574065,2.574065,2.574065,1.081107,1.081107,40,40,, +8076,0,0.334787,1,1,0,2,6,,5,8,Owosso,Rd,943904,0,0.335,0,7.174002,5.8,6,0.669573,0.669573,0.669573,0.669573,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.669616,0.674297,0.669573,0.669573,0.669616,0.674297,0.669606,0.669638,0.669573,0.669573,0.669606,0.669638,0.673687,0.669888,0.669573,0.669573,0.673687,0.669888,0.669573,0.669573,0.669573,0.669573,0.669573,0.669573,,,,,,,0.669616,0.674297,0.669606,0.669638,0.673687,0.669888,0.669573,0.669573,0.669573,0.669573,0.261146,0.262551,0.261144,0.261153,0.262368,0.261228,0.261134,0.261134,0.137263,0.137263,29.998085,29.789865,29.998528,29.997116,29.816827,29.985894,30,30,30,30,,,,,,,,,,,2236,2236,0.669573,0.669573,0.669573,0.669573,0.669573,0.669573,0.669573,0.669573,0.261134,0.261134,30,30,, +8098,0,1.007011,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,2.853,3.86,0,21.578808,5.8,6,2.014022,2.014022,2.014022,2.014022,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.015369,2.014023,2.014022,2.014022,2.015369,2.014023,2.014024,2.014023,2.014022,2.014022,2.014024,2.014023,2.014028,2.014457,2.014022,2.014022,2.014028,2.014457,2.014022,2.014022,2.014022,2.014022,2.014022,2.014022,,,,,,,2.015369,2.014023,2.014024,2.014023,2.014028,2.014457,2.014022,2.014022,2.014022,2.014022,0.785873,0.785469,0.785469,0.785469,0.78547,0.785599,0.785469,0.785469,0.412875,0.412875,29.979955,29.99999,29.99997,29.999985,29.999907,29.993519,30,30,30,30,,,,,,,,,,,2236,2236,2.014022,2.014022,2.014022,2.014022,2.014022,2.014022,2.014022,2.014022,0.785469,0.785469,30,30,, +24774,0,1.690717,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.22966,0.15,4,6.76287,6.76287,6.76287,6.76287,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,,,,,,,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,2.33319,2.33319,2.33319,2.33319,2.33319,2.33319,2.33319,2.33319,1.200409,1.200409,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,6.76287,2.33319,2.33319,15,15,, +24786,0,1.007335,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.585749,0.15,4,4.02934,4.02934,4.02934,4.02934,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,,,,,,,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,1.390122,1.390122,1.390122,1.390122,1.390122,1.390122,1.390122,1.390122,0.715208,0.715208,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,4.02934,1.390122,1.390122,15,15,, +24825,0,0.421466,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.031408,0.15,4,1.685863,1.685863,1.685863,1.685863,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,,,,,,,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,0.581623,0.581623,0.581623,0.581623,0.581623,0.581623,0.581623,0.581623,0.299241,0.299241,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,1.685863,0.581623,0.581623,15,15,, +24827,0,0.508136,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.888634,0.15,4,2.032545,2.032545,2.032545,2.032545,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,,,,,,,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,0.701228,0.701228,0.701228,0.701228,0.701228,0.701228,0.701228,0.701228,0.360777,0.360777,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,2.032545,0.701228,0.701228,15,15,, +24856,0,1.191737,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.537225,0.15,4,4.766949,4.766949,4.766949,4.766949,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,,,,,,,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,1.644597,1.644597,1.644597,1.644597,1.644597,1.644597,1.644597,1.644597,0.846133,0.846133,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,4.766949,1.644597,1.644597,15,15,, +26560,0,1.043732,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.365684,0.15,4,4.174928,4.174928,4.174928,4.174928,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,,,,,,,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,1.44035,1.44035,1.44035,1.44035,1.44035,1.44035,1.44035,1.44035,0.74105,0.74105,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,4.174928,1.44035,1.44035,15,15,, +7122,0,2.014549,1,1,0,2,6,,5,8,Nicholson,Rd,933006,1.006,3.02,0,43.168897,5.8,6,4.029097,4.029097,4.029097,4.029097,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.029098,4.029097,4.029097,4.029097,4.029098,4.029097,4.029097,4.029097,4.029097,4.029097,4.029097,4.029097,4.029103,4.029099,4.029097,4.029097,4.029103,4.029099,4.029097,4.029097,4.029097,4.029097,4.029097,4.029097,,,,,,,4.029098,4.029097,4.029097,4.029097,4.029103,4.029099,4.029097,4.029097,4.029097,4.029097,1.571348,1.571348,1.571348,1.571348,1.57135,1.571348,1.571348,1.571348,0.825965,0.825965,29.999993,29.999999,30,30,29.999959,29.999988,30,30,30,30,,,,,,,,,,,2236,2236,4.029097,4.029097,4.029097,4.029097,4.029097,4.029097,4.029097,4.029097,1.571348,1.571348,30,30,, +37042,0,2.004076,1,1,0,2,4,,5,8,Mason,Rd,4104403,7.736,9.739,0,42.944486,3,4,3.006114,3.006114,3.006114,3.006114,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.019471,3.006362,3.006114,3.006114,3.019471,3.006362,3.006918,3.006879,3.006114,3.006114,3.006918,3.006879,3.009064,3.029034,3.006114,3.006114,3.009064,3.029034,3.006114,3.006114,3.006114,3.006114,3.006114,3.006114,,,,,,,3.019471,3.006362,3.006918,3.006879,3.009064,3.029034,3.006114,3.006114,3.006114,3.006114,1.266575,1.262642,1.262809,1.262798,1.263453,1.269444,1.262568,1.262568,0.671365,0.671365,39.823058,39.9967,39.989298,39.989818,39.960783,39.697332,40,40,40,40,,,,,,,,,,,3096,3096,3.006114,3.006114,3.006114,3.006114,3.006114,3.006114,3.006114,3.006114,1.262568,1.262568,40,40,, +24840,0,1.36749,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.303348,0.15,4,5.469958,5.469958,5.469958,5.469958,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.469959,5.469958,5.469958,5.469958,5.469959,5.469958,5.469958,5.469958,5.469958,5.469958,5.469958,5.469958,5.469958,5.469959,5.469958,5.469958,5.469958,5.469959,5.469958,5.469958,5.469958,5.469958,5.469958,5.469958,,,,,,,5.469959,5.469958,5.469958,5.469958,5.469958,5.469959,5.469958,5.469958,5.469958,5.469958,1.887136,1.887136,1.887136,1.887136,1.887136,1.887136,1.887136,1.887136,0.970918,0.970918,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,5.469958,5.469958,5.469958,5.469958,5.469958,5.469958,5.469958,5.469958,1.887136,1.887136,15,15,, +37043,0,1.030433,1,1,0,2,7,,4,8,Culver,Rd,4105156,0,1.03,0,22.080716,6.55,4.5,2.47304,2.47304,2.47304,2.47304,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.527756,2.578186,2.47304,2.47304,2.527756,2.578186,2.501906,2.503925,2.47304,2.47304,2.501906,2.503925,2.628397,2.573589,2.47304,2.47304,2.628397,2.573589,2.47304,2.47304,2.47304,2.47304,2.47304,2.47304,,,,,,,2.527756,2.578186,2.501906,2.503925,2.628397,2.573589,2.47304,2.47304,2.47304,2.47304,0.943805,0.958934,0.93605,0.936655,0.973997,0.957555,0.92739,0.92739,0.484304,0.484304,24.458849,23.980425,24.711557,24.691639,23.522325,24.023263,25,25,25,25,,,,,,,,,,,2064,2064,2.47304,2.47304,2.47304,2.47304,2.47304,2.47304,2.47304,2.47304,0.92739,0.92739,25,25,, +37041,0,1.242661,1,1,0,2,4,,5,8,Mason,Rd,4104403,6.493,7.736,0,26.628453,3,4,1.863992,1.863992,1.863992,1.863992,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.220517,1.868338,1.863992,1.863992,2.220517,1.868338,1.87535,1.871604,1.863992,1.863992,1.87535,1.871604,1.897241,2.120095,1.863992,1.863992,1.897241,2.120095,1.863992,1.863992,1.863992,1.863992,1.863992,1.863992,,,,,,,2.220517,1.868338,1.87535,1.871604,1.897241,2.120095,1.863992,1.863992,1.863992,1.863992,0.889834,0.784181,0.786284,0.78516,0.792851,0.859708,0.782877,0.782877,0.416291,0.416291,33.577622,39.906938,39.757738,39.837313,39.298989,35.16807,40,40,40,40,,,,,,,,,,,3096,3096,1.863992,1.863992,1.863992,1.863992,1.863992,1.863992,1.863992,1.863992,0.782877,0.782877,40,40,, +24775,0,0.863253,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.498287,0.15,4,3.453014,3.453014,3.453014,3.453014,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,,,,,,,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,1.19129,1.19129,1.19129,1.19129,1.19129,1.19129,1.19129,1.19129,0.61291,0.61291,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,3.453014,1.19129,1.19129,15,15,, +7123,0,1.006257,1,1,0,2,6,,5,8,Nicholson,Rd,933006,0,1.006,0,21.562649,5.8,6,2.012514,2.012514,2.012514,2.012514,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.012517,2.012514,2.012514,2.012514,2.012517,2.012514,2.012514,2.012514,2.012514,2.012514,2.012514,2.012514,2.012527,2.01252,2.012514,2.012514,2.012527,2.01252,2.012514,2.012514,2.012514,2.012514,2.012514,2.012514,,,,,,,2.012517,2.012514,2.012514,2.012514,2.012527,2.01252,2.012514,2.012514,2.012514,2.012514,0.784881,0.784881,0.78488,0.78488,0.784884,0.784882,0.78488,0.78488,0.412565,0.412565,29.999949,29.999992,29.999998,29.999999,29.999802,29.999909,30,30,30,30,,,,,,,,,,,2236,2236,2.012514,2.012514,2.012514,2.012514,2.012514,2.012514,2.012514,2.012514,0.78488,0.78488,30,30,, +7121,0,0.714972,1,1,0,2,6,,5,8,Nicholson,Rd,933006,3.02,3.734,0,15.32082,5.8,6,1.429943,1.429943,1.429943,1.429943,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.429962,1.438084,1.429943,1.429943,1.429962,1.438084,1.429944,1.429944,1.429943,1.429943,1.429944,1.429944,1.433836,1.435424,1.429943,1.429943,1.433836,1.435424,1.429943,1.429943,1.429943,1.429943,1.429943,1.429943,,,,,,,1.429962,1.438084,1.429944,1.429944,1.433836,1.435424,1.429943,1.429943,1.429943,1.429943,0.557683,0.56012,0.557678,0.557678,0.558846,0.559322,0.557678,0.557678,0.293138,0.293138,29.999613,29.830168,29.999988,29.999992,29.918543,29.885461,30,30,30,30,,,,,,,,,,,2236,2236,1.429943,1.429943,1.429943,1.429943,1.429943,1.429943,1.429943,1.429943,0.557678,0.557678,30,30,, +7448,0,1.011093,1,1,0,2,6,,5,8,Van Buren,Rd,935807,1.193,2.204,0,21.666282,5.8,6,2.022186,2.022186,2.022186,2.022186,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.02712,2.022187,2.022186,2.022186,2.02712,2.022187,2.022186,2.022186,2.022186,2.022186,2.022186,2.022186,2.023968,2.022938,2.022186,2.022186,2.023968,2.022938,2.022186,2.022186,2.022186,2.022186,2.022186,2.022186,,,,,,,2.02712,2.022187,2.022186,2.022186,2.023968,2.022938,2.022186,2.022186,2.022186,2.022186,0.790133,0.788653,0.788653,0.788653,0.789187,0.788878,0.788653,0.788653,0.414548,0.414548,29.92699,29.999995,30,29.999999,29.973592,29.98885,30,30,30,30,,,,,,,,,,,2236,2236,2.022186,2.022186,2.022186,2.022186,2.022186,2.022186,2.022186,2.022186,0.788653,0.788653,30,30,, +7116,0,1.004719,1,1,0,2,6,GRV,5,8,Nicholson,Rd,933006,7.939,8.944,0,21.529696,5.55,5,2.411326,2.411326,2.411326,2.411326,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.411326,2.411501,2.411326,2.411326,2.411326,2.411501,2.411326,2.411327,2.411326,2.411326,2.411326,2.411327,2.411373,2.41133,2.411326,2.411326,2.411373,2.41133,2.411326,2.411326,2.411326,2.411326,2.411326,2.411326,,,,,,,2.411326,2.411501,2.411326,2.411327,2.411373,2.41133,2.411326,2.411326,2.411326,2.411326,0.904247,0.9043,0.904247,0.904247,0.904261,0.904248,0.904247,0.904247,0.472218,0.472218,24.999996,24.998186,24.999998,24.999991,24.999517,24.999957,25,25,25,25,,,,,,,,,,,2236,2236,2.411326,2.411326,2.411326,2.411326,2.411326,2.411326,2.411326,2.411326,0.904247,0.904247,25,25,, +7118,0,0.269627,1,1,0,2,6,,5,8,Nicholson,Rd,933006,5.536,5.806,0,5.777725,5.8,6,0.539254,0.539254,0.539254,0.539254,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.539255,0.539688,0.539254,0.539254,0.539255,0.539688,0.539255,0.539256,0.539254,0.539254,0.539255,0.539256,0.53944,0.539265,0.539254,0.539254,0.53944,0.539265,0.539254,0.539254,0.539254,0.539254,0.539254,0.539254,,,,,,,0.539255,0.539688,0.539255,0.539256,0.53944,0.539265,0.539254,0.539254,0.539254,0.539254,0.210309,0.210439,0.210309,0.21031,0.210365,0.210312,0.210309,0.210309,0.110547,0.110547,29.999956,29.975877,29.999952,29.999902,29.989686,29.999395,30,30,30,30,,,,,,,,,,,2236,2236,0.539254,0.539254,0.539254,0.539254,0.539254,0.539254,0.539254,0.539254,0.210309,0.210309,30,30,, +7189,0,1.0512,1,1,0,2,4,,5,8,Grand River,Ave,932910,0.857,1.908,0,22.525705,3,4,1.576799,1.576799,1.576799,1.576799,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.594574,1.595984,1.576799,1.576799,1.594574,1.595984,1.585475,1.586376,1.576799,1.576799,1.585475,1.586376,1.595056,1.594541,1.576799,1.576799,1.595056,1.594541,1.576799,1.576799,1.576799,1.576799,1.576799,1.576799,,,,,,,1.594574,1.595984,1.585475,1.586376,1.595056,1.594541,1.576799,1.576799,1.576799,1.576799,0.667588,0.668011,0.664859,0.665129,0.667733,0.667578,0.662256,0.662256,0.352152,0.352152,39.554129,39.51918,39.781114,39.758529,39.542157,39.554928,40,40,40,40,,,,,,,,,,,3096,3096,1.576799,1.576799,1.576799,1.576799,1.576799,1.576799,1.576799,1.576799,0.662256,0.662256,40,40,, +7838,0,0.998112,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,0.855,1.853,0,21.38811,5.8,6,1.996224,1.996224,1.996224,1.996224,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.996351,1.996224,1.996224,1.996224,1.996351,1.996224,1.996224,1.996224,1.996224,1.996224,1.996224,1.996224,1.996225,1.996279,1.996224,1.996224,1.996225,1.996279,1.996224,1.996224,1.996224,1.996224,1.996224,1.996224,,,,,,,1.996351,1.996224,1.996224,1.996224,1.996225,1.996279,1.996224,1.996224,1.996224,1.996224,0.778565,0.778527,0.778527,0.778527,0.778528,0.778544,0.778527,0.778527,0.409226,0.409226,29.998089,29.999997,29.999992,29.999996,29.999981,29.999163,30,30,30,30,,,,,,,,,,,2236,2236,1.996224,1.996224,1.996224,1.996224,1.996224,1.996224,1.996224,1.996224,0.778527,0.778527,30,30,, +24779,0,1.051276,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.52734,0.15,4,4.205103,4.205103,4.205103,4.205103,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,,,,,,,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,1.450761,1.450761,1.450761,1.450761,1.450761,1.450761,1.450761,1.450761,0.746406,0.746406,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,4.205103,1.450761,1.450761,15,15,, +26578,0,0.934634,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.027875,0.15,4,3.738537,3.738537,3.738537,3.738537,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,,,,,,,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,1.289795,1.289795,1.289795,1.289795,1.289795,1.289795,1.289795,1.289795,0.66359,0.66359,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,3.738537,1.289795,1.289795,15,15,, +8086,0,1.003632,1,1,0,2,6,GRV,5,8,Bell Oak,Rd,943609,0.899,1.903,0,21.506394,5.55,5,2.408716,2.408716,2.408716,2.408716,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.408886,2.408716,2.408716,2.408716,2.408886,2.408716,2.408717,2.408716,2.408716,2.408716,2.408717,2.408716,2.408719,2.408754,2.408716,2.408716,2.408719,2.408754,2.408716,2.408716,2.408716,2.408716,2.408716,2.408716,,,,,,,2.408886,2.408716,2.408717,2.408716,2.408719,2.408754,2.408716,2.408716,2.408716,2.408716,0.903319,0.903269,0.903269,0.903269,0.903269,0.90328,0.903269,0.903269,0.471707,0.471707,24.998238,24.999997,24.999992,24.999998,24.999967,24.999611,25,25,25,25,,,,,,,,,,,2236,2236,2.408716,2.408716,2.408716,2.408716,2.408716,2.408716,2.408716,2.408716,0.903269,0.903269,25,25,, +24780,0,1.505117,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.252516,0.15,4,6.02047,6.02047,6.02047,6.02047,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,,,,,,,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,2.077062,2.077062,2.077062,2.077062,2.077062,2.077062,2.077062,2.077062,1.068633,1.068633,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,6.02047,2.077062,2.077062,15,15,, +24781,0,0.514385,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.022526,0.15,4,2.057538,2.057538,2.057538,2.057538,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,,,,,,,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,0.709851,0.709851,0.709851,0.709851,0.709851,0.709851,0.709851,0.709851,0.365213,0.365213,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,2.057538,0.709851,0.709851,15,15,, +7119,0,1.077686,1,1,0,2,6,,5,8,Nicholson,Rd,933006,4.459,5.536,0,23.093278,5.8,6,2.155373,2.155373,2.155373,2.155373,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.155374,2.156394,2.155373,2.155373,2.155374,2.156394,2.155374,2.155375,2.155373,2.155373,2.155374,2.155375,2.155713,2.155387,2.155373,2.155373,2.155713,2.155387,2.155373,2.155373,2.155373,2.155373,2.155373,2.155373,,,,,,,2.155374,2.156394,2.155374,2.155375,2.155713,2.155387,2.155373,2.155373,2.155373,2.155373,0.840596,0.840902,0.840596,0.840596,0.840697,0.8406,0.840595,0.840595,0.441851,0.441851,29.99998,29.985796,29.999987,29.999966,29.995262,29.999793,30,30,30,30,,,,,,,,,,,2236,2236,2.155373,2.155373,2.155373,2.155373,2.155373,2.155373,2.155373,2.155373,0.840595,0.840595,30,30,, +24776,0,0.771412,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.53025,0.15,4,3.085647,3.085647,3.085647,3.085647,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,,,,,,,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,1.064548,1.064548,1.064548,1.064548,1.064548,1.064548,1.064548,1.064548,0.547702,0.547702,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,3.085647,1.064548,1.064548,15,15,, +7117,0,1.006987,1,1,0,2,6,GRV,5,8,Nicholson,Rd,933006,6.933,7.939,0,21.578287,5.55,5,2.416768,2.416768,2.416768,2.416768,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.416768,2.416918,2.416768,2.416768,2.416768,2.416918,2.416768,2.416769,2.416768,2.416768,2.416768,2.416769,2.4168,2.416771,2.416768,2.416768,2.4168,2.416771,2.416768,2.416768,2.416768,2.416768,2.416768,2.416768,,,,,,,2.416768,2.416918,2.416768,2.416769,2.4168,2.416771,2.416768,2.416768,2.416768,2.416768,0.906288,0.906333,0.906288,0.906288,0.906298,0.906289,0.906288,0.906288,0.473284,0.473284,24.999998,24.998447,24.999999,24.999994,24.999667,24.999972,25,25,25,25,,,,,,,,,,,2236,2236,2.416768,2.416768,2.416768,2.416768,2.416768,2.416768,2.416768,2.416768,0.906288,0.906288,25,25,, +7360,0,1.000884,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,1.853,2.853,0,21.447518,5.8,6,2.001768,2.001768,2.001768,2.001768,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.001769,2.001768,2.001768,2.001768,2.001769,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,,,,,,,2.001769,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,0.78069,0.78069,0.78069,0.78069,0.78069,0.78069,0.78069,0.78069,0.410363,0.410363,29.999996,30,30,30,30,29.999998,30,30,30,30,,,,,,,,,,,2236,2236,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,2.001768,0.78069,0.78069,30,30,, +24602,0,0.992421,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.266171,0.15,4,3.969685,3.969685,3.969685,3.969685,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,,,,,,,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,1.369541,1.369541,1.369541,1.369541,1.369541,1.369541,1.369541,1.369541,0.704619,0.704619,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,3.969685,1.369541,1.369541,15,15,, +24787,0,1.006015,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.557471,0.15,4,4.024061,4.024061,4.024061,4.024061,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,,,,,,,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,1.388301,1.388301,1.388301,1.388301,1.388301,1.388301,1.388301,1.388301,0.714271,0.714271,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,4.024061,1.388301,1.388301,15,15,, +7181,0,0.483628,1,1,0,2,4,,5,8,Grand River,Ave,932910,4.933,5.416,0,10.363462,3,4,0.725442,0.725442,0.725442,0.725442,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.867157,0.797637,0.725442,0.725442,0.867157,0.797637,0.776046,0.770029,0.725442,0.725442,0.776046,0.770029,0.855853,0.928134,0.725442,0.725442,0.855853,0.928134,0.725442,0.725442,0.725442,0.725442,0.725442,0.725442,,,,,,,0.867157,0.797637,0.776046,0.770029,0.855853,0.928134,0.725442,0.725442,0.725442,0.725442,0.3472,0.326344,0.319867,0.318062,0.343809,0.365493,0.304686,0.304686,0.162015,0.162015,33.46303,36.379577,37.391702,37.683884,33.905016,31.264537,40,40,40,40,,,,,,,,,,,3096,3096,0.725442,0.725442,0.725442,0.725442,0.725442,0.725442,0.725442,0.725442,0.304686,0.304686,40,40,, +7887,0,1.507656,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,1.001,2.508,0,32.306921,3.7,5,3.015313,3.015313,3.015313,3.015313,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.016531,3.015581,3.015313,3.015313,3.016531,3.015581,3.015571,3.015524,3.015313,3.015313,3.015571,3.015524,3.015689,3.017278,3.015313,3.015313,3.015689,3.017278,3.015313,3.015313,3.015313,3.015313,3.015313,3.015313,,,,,,,3.016531,3.015581,3.015571,3.015524,3.015689,3.017278,3.015313,3.015313,3.015313,3.015313,1.176337,1.176053,1.176049,1.176035,1.176085,1.176561,1.175972,1.175972,0.618139,0.618139,29.987883,29.997327,29.99743,29.997903,29.996254,29.980464,30,30,30,30,,,,,,,,,,,2580,2580,3.015313,3.015313,3.015313,3.015313,3.015313,3.015313,3.015313,3.015313,1.175972,1.175972,30,30,, +37036,0,0.740089,1,1,0,2,4,,5,8,Mason,Rd,4104403,2.825,3.565,0,15.859042,3,4,1.110133,1.110133,1.110133,1.110133,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.167793,1.112269,1.110133,1.110133,1.167793,1.112269,1.114106,1.112792,1.110133,1.110133,1.114106,1.112792,1.117079,1.156976,1.110133,1.110133,1.117079,1.156976,1.110133,1.110133,1.110133,1.110133,1.110133,1.110133,,,,,,,1.167793,1.112269,1.114106,1.112792,1.117079,1.156976,1.110133,1.110133,1.110133,1.110133,0.483554,0.466897,0.467448,0.467054,0.46834,0.480309,0.466256,0.466256,0.24793,0.24793,38.024999,39.923177,39.857367,39.904411,39.751271,38.380518,40,40,40,40,,,,,,,,,,,3096,3096,1.110133,1.110133,1.110133,1.110133,1.110133,1.110133,1.110133,1.110133,0.466256,0.466256,40,40,, +27693,0,1.360076,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.14449,0.15,4,5.440305,5.440305,5.440305,5.440305,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,,,,,,,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,1.876905,1.876905,1.876905,1.876905,1.876905,1.876905,1.876905,1.876905,0.965654,0.965654,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,5.440305,1.876905,1.876905,15,15,, +37038,0,0.779573,1,1,0,2,4,,5,8,Mason,Rd,4104403,3.771,4.551,0,16.705135,3,4,1.169359,1.169359,1.169359,1.169359,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.254857,1.172825,1.169359,1.169359,1.254857,1.172825,1.173704,1.172507,1.169359,1.169359,1.173704,1.172507,1.185062,1.240994,1.169359,1.169359,1.185062,1.240994,1.169359,1.169359,1.169359,1.169359,1.169359,1.169359,,,,,,,1.254857,1.172825,1.173704,1.172507,1.185062,1.240994,1.169359,1.169359,1.169359,1.169359,0.51678,0.492171,0.492434,0.492075,0.495842,0.512621,0.491131,0.491131,0.261157,0.261157,37.274665,39.881811,39.851926,39.892609,39.469979,37.691067,40,40,40,40,,,,,,,,,,,3096,3096,1.169359,1.169359,1.169359,1.169359,1.169359,1.169359,1.169359,1.169359,0.491131,0.491131,40,40,, +24829,0,1.585735,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.98004,0.15,4,6.342941,6.342941,6.342941,6.342941,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,,,,,,,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,2.188315,2.188315,2.188315,2.188315,2.188315,2.188315,2.188315,2.188315,1.125872,1.125872,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,6.342941,2.188315,2.188315,15,15,, +7889,0,1.001503,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,0,1.001,0,21.460771,3.7,5,2.003005,2.003005,2.003005,2.003005,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.003951,2.003259,2.003005,2.003005,2.003951,2.003259,2.00321,2.003162,2.003005,2.003005,2.00321,2.003162,2.00333,2.004582,2.003005,2.003005,2.00333,2.004582,2.003005,2.003005,2.003005,2.003005,2.003005,2.003005,,,,,,,2.003951,2.003259,2.00321,2.003162,2.00333,2.004582,2.003005,2.003005,2.003005,2.003005,0.781456,0.781248,0.781233,0.781219,0.781269,0.781645,0.781172,0.781172,0.410616,0.410616,29.985844,29.996201,29.996935,29.997646,29.995137,29.976399,30,30,30,30,,,,,,,,,,,2580,2580,2.003005,2.003005,2.003005,2.003005,2.003005,2.003005,2.003005,2.003005,0.781172,0.781172,30,30,, +37039,0,0.227387,1,1,0,2,4,,5,8,Mason,Rd,4104403,4.551,4.778,0,4.872586,3,4,0.341081,0.341081,0.341081,0.341081,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.407317,0.341914,0.341081,0.341081,0.407317,0.341914,0.343104,0.342437,0.341081,0.341081,0.343104,0.342437,0.346807,0.387233,0.341081,0.341081,0.346807,0.387233,0.341081,0.341081,0.341081,0.341081,0.341081,0.341081,,,,,,,0.407317,0.341914,0.343104,0.342437,0.346807,0.387233,0.341081,0.341081,0.341081,0.341081,0.163125,0.143504,0.143861,0.143661,0.144972,0.1571,0.143254,0.143254,0.076175,0.076175,33.495393,39.902535,39.764195,39.841632,39.339553,35.232601,40,40,40,40,,,,,,,,,,,3096,3096,0.341081,0.341081,0.341081,0.341081,0.341081,0.341081,0.341081,0.341081,0.143254,0.143254,40,40,, +37037,0,0.206692,1,1,0,2,4,,5,8,Mason,Rd,4104403,3.565,3.771,0,4.429109,3,4,0.310038,0.310038,0.310038,0.310038,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.359351,0.312637,0.310038,0.310038,0.359351,0.312637,0.31352,0.312533,0.310038,0.310038,0.31352,0.312533,0.31753,0.351895,0.310038,0.310038,0.31753,0.351895,0.310038,0.310038,0.310038,0.310038,0.310038,0.310038,,,,,,,0.359351,0.312637,0.31352,0.312533,0.31753,0.351895,0.310038,0.310038,0.310038,0.310038,0.14501,0.130996,0.131261,0.130964,0.132463,0.142773,0.130216,0.130216,0.069242,0.069242,34.510825,39.667376,39.55569,39.680613,39.056183,35.242105,40,40,40,40,,,,,,,,,,,3096,3096,0.310038,0.310038,0.310038,0.310038,0.310038,0.310038,0.310038,0.310038,0.130216,0.130216,40,40,, +7183,0,0.567777,1,1,1,2,4,,4,8,Grand River,Ave,932910,4.132,4.699,0,12.166656,4.5,4.5,0.89649,0.89649,0.89649,0.89649,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.957506,0.940548,0.89649,0.89649,0.957506,0.940548,0.934664,0.929597,0.89649,0.89649,0.934664,0.929597,0.971526,0.994034,0.89649,0.89649,0.971526,0.994034,0.89649,0.89649,0.89649,0.89649,0.89649,0.89649,,,,,,,0.957506,0.940548,0.934664,0.929597,0.971526,0.994034,0.89649,0.89649,0.89649,0.89649,0.389452,0.384364,0.382599,0.381079,0.393658,0.40041,0.371147,0.371147,0.196929,0.196929,35.578511,36.219979,36.448015,36.646685,35.065097,34.271103,38,38,38,38,,,,,,,,,,,3406,3406,0.89649,0.89649,0.89649,0.89649,0.89649,0.89649,0.89649,0.89649,0.371147,0.371147,38,38,, +7506,1,0.168835,1,0,0,1,1,ROF,4,8,W I 96/Fowlerville,RAMP,935209,0,0.169,0,,2.24,5,0.253253,,0.253253,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.253748,,0.253253,,0.253748,,0.253461,,0.253253,,0.253461,,0.265371,,0.253253,,0.265371,,0.253253,,0.253253,,0.253253,,,,,,,,0.253748,,0.253461,,0.265371,,0.253253,,0.253253,,0.106515,,0.106429,,0.110002,,0.106366,,0.05656,,39.92199,,39.967146,,38.173422,,40,,40,,,,,,,,,,,,5160,,0.253253,,0.253253,,0.253253,,0.253253,,0.106366,,40,,, +7507,1,0.306569,1,0,0,1,1,RON,4,8,Fowlerville/W I 96,RAMP,935208,0,0.307,0,,1.09,4,0.408759,,0.408759,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.411763,,0.408759,,0.411763,,0.410538,,0.408759,,0.410538,,0.41358,,0.408759,,0.41358,,0.408759,,0.408759,,0.408759,,,,,,,,0.411763,,0.410538,,0.41358,,0.408759,,0.408759,,0.178711,,0.178344,,0.179257,,0.17781,,0.095036,,44.671725,,44.804996,,44.47545,,45,,45,,,,,,,,,,,,5160,,0.408759,,0.408759,,0.408759,,0.408759,,0.17781,,45,,, +7871,0,0.200851,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,3.151,3.352,0,4.303949,3.7,5,0.401702,0.401702,0.401702,0.401702,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.695501,0.575141,0.401702,0.401702,0.695501,0.575141,0.540291,0.460989,0.401702,0.401702,0.540291,0.460989,0.673401,1.258205,0.401702,0.401702,0.673401,1.258205,0.401702,0.401702,0.401702,0.401702,0.401702,0.401702,,,,,,,0.695501,0.575141,0.540291,0.460989,0.673401,1.258205,0.401702,0.401702,0.401702,0.401702,0.244804,0.208695,0.19824,0.17445,0.238173,0.413615,0.156664,0.156664,0.082349,0.082349,17.327148,20.953239,22.304754,26.141763,17.895817,9.577977,30,30,30,30,,,,,,,,,,,2580,2580,0.401702,0.401702,0.401702,0.401702,0.401702,0.401702,0.401702,0.401702,0.156664,0.156664,30,30,, +7613,-1,0.250961,0,2,0,1,1,,4,8,W I 96,,935207,3.633,3.884,0,,0.8,7.5,,0.21511,,0.21511,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.215368,,0.21511,,0.215368,,0.215279,,0.21511,,0.215279,,0.216146,,0.21511,,0.216146,,0.21511,,0.21511,,0.21511,,,,,,,,0.215368,,0.215279,,0.216146,,0.21511,,0.21511,,0.109783,,0.109757,,0.110017,,0.109706,,0.059872,,69.916064,,69.944856,,69.664327,,70,,70,,,,,,,,,,,,15136,,0.21511,,0.21511,,0.21511,,0.21511,,0.109706,,70,, +7885,0,0.507683,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,2.508,3.016,0,10.878916,3.7,5,1.015365,1.015365,1.015365,1.015365,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.018016,1.015713,1.015365,1.015365,1.018016,1.015713,1.015696,1.015628,1.015365,1.015365,1.015696,1.015628,1.015938,1.019188,1.015365,1.015365,1.015938,1.019188,1.015365,1.015365,1.015365,1.015365,1.015365,1.015365,,,,,,,1.018016,1.015713,1.015696,1.015628,1.015938,1.019188,1.015365,1.015365,1.015365,1.015365,0.396788,0.396097,0.396092,0.396071,0.396164,0.397139,0.395993,0.395993,0.20815,0.20815,29.921887,29.989739,29.990228,29.992258,29.983081,29.887473,30,30,30,30,,,,,,,,,,,2580,2580,1.015365,1.015365,1.015365,1.015365,1.015365,1.015365,1.015365,1.015365,0.395993,0.395993,30,30,, +7673,1,0.323909,1,0,0,1,1,RON,4,8,Fowlerville/E I 96,RAMP,935107,0,0.324,0,,1.09,4,0.431878,,0.431878,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.458322,,0.431878,,0.458322,,0.432821,,0.431878,,0.432821,,0.434693,,0.431878,,0.434693,,0.431878,,0.431878,,0.431878,,,,,,,,0.458322,,0.432821,,0.434693,,0.431878,,0.431878,,0.1958,,0.18815,,0.188712,,0.187867,,0.100412,,42.403625,,44.901968,,44.708591,,45,,45,,,,,,,,,,,,5160,,0.431878,,0.431878,,0.431878,,0.431878,,0.187867,,45,,, +7785,1,0.262347,2,0,0,1,1,,4,8,E I 96,,935105,3.941,4.204,0,,0.8,7.5,0.224869,,0.224869,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.22522,,0.224869,,0.22522,,0.225051,,0.224869,,0.225051,,0.226,,0.224869,,0.226,,0.224869,,0.224869,,0.224869,,,,,,,,0.22522,,0.225051,,0.226,,0.224869,,0.224869,,0.114788,,0.114738,,0.115022,,0.114683,,0.062589,,69.891097,,69.943399,,69.64983,,70,,70,,,,,,,,,,,,15136,,0.224869,,0.224869,,0.224869,,0.224869,,0.114683,,70,,, +7881,0,0.123909,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,3.016,3.14,0,2.655188,3.7,5,0.247818,0.247818,0.247818,0.247818,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.571276,0.249531,0.247818,0.247818,0.571276,0.249531,0.250808,0.249932,0.247818,0.247818,0.250808,0.249932,0.282428,0.467762,0.247818,0.247818,0.282428,0.467762,0.247818,0.247818,0.247818,0.247818,0.247818,0.247818,,,,,,,0.571276,0.249531,0.250808,0.249932,0.282428,0.467762,0.247818,0.247818,0.247818,0.247818,0.193686,0.097163,0.097546,0.097283,0.107032,0.162632,0.096649,0.096649,0.050803,0.050803,13.013894,29.793976,29.642277,29.746159,26.323665,15.893825,30,30,30,30,,,,,,,,,,,2580,2580,0.247818,0.247818,0.247818,0.247818,0.247818,0.247818,0.247818,0.247818,0.096649,0.096649,30,30,, +7675,1,0.162786,1,0,0,1,1,ROF,4,8,E I 96/Fowlerville,RAMP,935106,0,0.163,0,,2.24,5,0.244179,,0.244179,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.244821,,0.244179,,0.244821,,0.244708,,0.244179,,0.244708,,0.245562,,0.244179,,0.245562,,0.244179,,0.244179,,0.244179,,,,,,,,0.244821,,0.244708,,0.245562,,0.244179,,0.244179,,0.102748,,0.102714,,0.10297,,0.102555,,0.054533,,39.895192,,39.913578,,39.77473,,40,,40,,,,,,,,,,,,5160,,0.244179,,0.244179,,0.244179,,0.244179,,0.102555,,40,,, +7874,0,0.011326,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,3.14,3.151,0,0.242696,3.7,5,0.022652,0.022652,0.022652,0.022652,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.023082,0.049193,0.022652,0.022652,0.023082,0.049193,0.022714,0.031541,0.022652,0.022652,0.022714,0.031541,0.022775,0.134579,0.022652,0.022652,0.022775,0.134579,0.022652,0.022652,0.022652,0.022652,0.022652,0.022652,,,,,,,0.023082,0.049193,0.022714,0.031541,0.022775,0.134579,0.022652,0.022652,0.022652,0.022652,0.008963,0.016797,0.008853,0.011501,0.008871,0.042412,0.008834,0.008834,0.004644,0.004644,29.440808,13.813852,29.917868,21.544855,29.838195,5.049458,30,30,30,30,,,,,,,,,,,2580,2580,0.022652,0.022652,0.022652,0.022652,0.022652,0.022652,0.022652,0.022652,0.008834,0.008834,30,30,, +7185,0,0.206534,1,1,1,2,4,,4,8,Grand River,Ave,932910,3.735,3.941,0,4.425731,4.5,4.5,0.326107,0.326107,0.326107,0.326107,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.333423,0.327362,0.326107,0.326107,0.333423,0.327362,0.327836,0.327982,0.326107,0.326107,0.327836,0.327982,0.32775,0.334687,0.326107,0.326107,0.32775,0.334687,0.326107,0.326107,0.326107,0.326107,0.326107,0.326107,,,,,,,0.333423,0.327362,0.327836,0.327982,0.32775,0.334687,0.326107,0.326107,0.326107,0.326107,0.137203,0.135385,0.135527,0.135571,0.135501,0.137582,0.135008,0.135008,0.071635,0.071635,37.166108,37.854242,37.799586,37.782675,37.809476,37.025833,38,38,38,38,,,,,,,,,,,3406,3406,0.326107,0.326107,0.326107,0.326107,0.326107,0.326107,0.326107,0.326107,0.135008,0.135008,38,38,, +7840,0,0.538638,1,1,1,2,5,,4,8,Grand,Ave,935004,3.518,4.057,0,11.542236,5.8,4.5,1.196973,1.196973,1.196973,1.196973,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.399521,1.578865,1.196973,1.196973,1.399521,1.578865,1.297029,1.319779,1.196973,1.196973,1.297029,1.319779,1.531518,1.320156,1.196973,1.196973,1.531518,1.320156,1.196973,1.196973,1.196973,1.196973,1.196973,1.196973,,,,,,,1.399521,1.578865,1.297029,1.319779,1.531518,1.320156,1.196973,1.196973,1.196973,1.196973,0.516811,0.570614,0.486064,0.492888,0.55641,0.493002,0.456047,0.456047,0.238796,0.238796,23.092369,20.469295,24.917145,24.48764,21.102112,24.48064,27,27,27,27,,,,,,,,,,,2838,2838,1.196973,1.196973,1.196973,1.196973,1.196973,1.196973,1.196973,1.196973,0.456047,0.456047,27,27,, +8115,0,0.126506,1,1,1,2,7,,4,8,Frank,St,939502,0.078,0.204,0,2.710846,6.55,4.5,0.303615,0.303615,0.303615,0.303615,25,25,6600,6600,1498,1498,3300,3300,2129,2129,2270,2270,2268,2268,0.335839,0.322662,0.303615,0.303615,0.335839,0.322662,0.309874,0.309202,0.303615,0.303615,0.309874,0.309202,0.328379,0.364036,0.303615,0.303615,0.328379,0.364036,0.303615,0.303615,0.303615,0.303615,0.303615,0.303615,,,,,,,0.335839,0.322662,0.309874,0.309202,0.328379,0.364036,0.303615,0.303615,0.303615,0.303615,0.123523,0.11957,0.115733,0.115532,0.121285,0.131982,0.113856,0.113856,0.059458,0.059458,22.601212,23.52423,24.495005,24.548236,23.114687,20.850573,25,25,25,25,,,,,,,,,,,2270,2270,0.303615,0.303615,0.303615,0.303615,0.303615,0.303615,0.303615,0.303615,0.113856,0.113856,25,25,, +24821,0,0.27553,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,5.904213,0.15,4,1.10212,1.10212,1.10212,1.10212,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,,,,,,,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,0.380231,0.380231,0.380231,0.380231,0.380231,0.380231,0.380231,0.380231,0.195626,0.195626,15,14.999999,14.999999,14.999999,14.999995,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,1.10212,0.380231,0.380231,15,15,, +24822,0,0.291582,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,6.24818,0.15,4,1.166327,1.166327,1.166327,1.166327,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.166327,1.166327,1.166327,1.166327,1.166327,1.166327,1.166327,1.166327,1.166327,1.166327,1.166327,1.166327,1.166328,1.166328,1.166327,1.166327,1.166328,1.166328,1.166327,1.166327,1.166327,1.166327,1.166327,1.166327,,,,,,,1.166327,1.166327,1.166327,1.166327,1.166328,1.166328,1.166327,1.166327,1.166327,1.166327,0.402383,0.402383,0.402383,0.402383,0.402383,0.402383,0.402383,0.402383,0.207023,0.207023,14.999996,14.999993,14.999997,14.999997,14.999988,14.999989,15,15,15,15,,,,,,,,,,,34400,34400,1.166327,1.166327,1.166327,1.166327,1.166327,1.166327,1.166327,1.166327,0.402383,0.402383,15,15,, +7114,0,0.172819,1,1,1,2,7,,4,8,Veterans,Dr,933101,0,0.173,0,3.703261,6.55,4.5,0.414765,0.414765,0.414765,0.414765,25,25,6600,6600,1498,1498,3300,3300,2129,2129,2270,2270,2268,2268,0.415585,0.425902,0.414765,0.414765,0.415585,0.425902,0.41531,0.416149,0.414765,0.414765,0.41531,0.416149,0.466177,0.422122,0.414765,0.414765,0.466177,0.422122,0.414765,0.414765,0.414765,0.414765,0.414765,0.414765,,,,,,,0.415585,0.425902,0.41531,0.416149,0.466177,0.422122,0.414765,0.414765,0.414765,0.414765,0.155783,0.158878,0.155701,0.155952,0.17096,0.157744,0.155537,0.155537,0.081225,0.081225,24.950658,24.346302,24.967181,24.916899,22.242919,24.564274,25,25,25,25,,,,,,,,,,,2270,2270,0.414765,0.414765,0.414765,0.414765,0.414765,0.414765,0.414765,0.414765,0.155537,0.155537,25,25,, +7186,0,0.180759,1,1,1,2,4,,4,8,Grand River,Ave,932910,3.554,3.735,0,3.873401,4.5,4.5,0.285409,0.285409,0.285409,0.285409,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.344452,0.292833,0.285409,0.285409,0.344452,0.292833,0.296387,0.293927,0.285409,0.285409,0.296387,0.293927,0.292067,0.345004,0.285409,0.285409,0.292067,0.345004,0.285409,0.285409,0.285409,0.285409,0.285409,0.285409,,,,,,,0.344452,0.292833,0.296387,0.293927,0.292067,0.345004,0.285409,0.285409,0.285409,0.285409,0.135872,0.120387,0.121453,0.120715,0.120157,0.136038,0.118159,0.118159,0.062695,0.062695,31.486303,37.036497,36.592495,36.898724,37.133743,31.43593,38,38,38,38,,,,,,,,,,,3406,3406,0.285409,0.285409,0.285409,0.285409,0.285409,0.285409,0.285409,0.285409,0.118159,0.118159,38,38,, +8116,0,0.077869,1,1,1,2,7,,4,8,Frank,St,939502,0,0.078,0,1.668617,6.55,4.5,0.186885,0.186885,0.186885,0.186885,25,25,6600,6600,1498,1498,3300,3300,2129,2129,2270,2270,2268,2268,0.191903,0.187255,0.186885,0.186885,0.191903,0.187255,0.187508,0.187131,0.186885,0.186885,0.187508,0.187131,0.1902,0.21005,0.186885,0.186885,0.1902,0.21005,0.186885,0.186885,0.186885,0.186885,0.186885,0.186885,,,,,,,0.191903,0.187255,0.187508,0.187131,0.1902,0.21005,0.186885,0.186885,0.186885,0.186885,0.071587,0.070193,0.070269,0.070156,0.071076,0.077031,0.070082,0.070082,0.036598,0.036598,24.346302,24.950658,24.916899,24.967181,24.564274,22.242919,25,25,25,25,,,,,,,,,,,2270,2270,0.186885,0.186885,0.186885,0.186885,0.186885,0.186885,0.186885,0.186885,0.070082,0.070082,25,25,, +7858,0,0.154057,1,1,1,2,5,,4,8,Grand,Ave,935004,3.364,3.518,0,3.30123,5.8,4.5,0.34235,0.34235,0.34235,0.34235,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.848689,1.848689,0.34235,0.34235,1.848689,1.848689,1.121403,1.099908,0.34235,0.34235,1.121403,1.099908,1.848689,1.848689,0.34235,0.34235,1.848689,1.848689,0.34235,0.34235,0.34235,0.34235,0.34235,0.34235,,,,,,,1.848689,1.848689,1.121403,1.099908,1.848689,1.848689,0.34235,0.34235,0.34235,0.34235,0.582337,0.582337,0.364151,0.357703,0.582337,0.582337,0.130435,0.130435,0.068299,0.068299,5,5,8.24275,8.403836,5,5,27,27,27,27,,,,,,,,,,,2838,2838,0.34235,0.34235,0.34235,0.34235,0.34235,0.34235,0.34235,0.34235,0.130435,0.130435,27,27,, +7869,0,0.012573,1,1,1,2,5,,4,8,Fowlerville,Rd,935004,3.352,3.364,0,0.269431,5.8,4.5,0.027941,0.027941,0.027941,0.027941,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.150881,0.039247,0.027941,0.027941,0.150881,0.039247,0.126435,0.031696,0.027941,0.027941,0.126435,0.031696,0.150881,0.03663,0.027941,0.027941,0.150881,0.03663,0.027941,0.027941,0.027941,0.027941,0.027941,0.027941,,,,,,,0.150881,0.039247,0.126435,0.031696,0.150881,0.03663,0.027941,0.027941,0.027941,0.027941,0.047528,0.014037,0.040194,0.011772,0.047528,0.013252,0.010646,0.010646,0.005574,0.005574,5,19.221954,5.966772,23.80135,5,20.595251,27,27,27,27,,,,,,,,,,,2838,2838,0.027941,0.027941,0.027941,0.027941,0.027941,0.027941,0.027941,0.027941,0.010646,0.010646,27,27,, +7184,0,0.19075,1,1,1,2,4,,4,8,Grand River,Ave,932910,3.941,4.132,0,4.087496,4.5,4.5,0.301184,0.301184,0.301184,0.301184,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.321683,0.315986,0.301184,0.301184,0.321683,0.315986,0.314009,0.312306,0.301184,0.301184,0.314009,0.312306,0.321589,0.333954,0.301184,0.301184,0.321589,0.333954,0.301184,0.301184,0.301184,0.301184,0.301184,0.301184,,,,,,,0.321683,0.315986,0.314009,0.312306,0.321589,0.333954,0.301184,0.301184,0.301184,0.301184,0.13084,0.129131,0.128538,0.128027,0.130812,0.134521,0.12469,0.12469,0.06616,0.06616,35.578511,36.219979,36.448015,36.646685,35.588882,34.271103,38,38,38,38,,,,,,,,,,,3406,3406,0.301184,0.301184,0.301184,0.301184,0.301184,0.301184,0.301184,0.301184,0.12469,0.12469,38,38,, +7837,0,0.17671,1,1,1,2,5,,4,8,Grand,Ave,935004,4.057,4.233,0,3.786636,5.8,4.5,0.392688,0.392688,0.392688,0.392688,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.580293,0.635207,0.392688,0.392688,0.580293,0.635207,0.544719,0.561114,0.392688,0.392688,0.544719,0.561114,0.715511,0.643561,0.392688,0.392688,0.715511,0.643561,0.392688,0.392688,0.392688,0.392688,0.392688,0.392688,,,,,,,0.580293,0.635207,0.544719,0.561114,0.715511,0.643561,0.392688,0.392688,0.392688,0.392688,0.205896,0.22237,0.195223,0.200142,0.246461,0.224876,0.149614,0.149614,0.078341,0.078341,18.271088,16.691545,19.464325,18.895586,14.818186,16.474876,27,27,27,27,,,,,,,,,,,2838,2838,0.392688,0.392688,0.392688,0.392688,0.392688,0.392688,0.392688,0.392688,0.149614,0.149614,27,27,, +7182,0,0.233583,1,1,0,2,4,,5,8,Grand River,Ave,932910,4.699,4.933,0,5.005341,3,4,0.350374,0.350374,0.350374,0.350374,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.387436,0.378122,0.350374,0.350374,0.387436,0.378122,0.374815,0.371908,0.350374,0.350374,0.374815,0.371908,0.394979,0.406694,0.350374,0.350374,0.394979,0.406694,0.350374,0.350374,0.350374,0.350374,0.350374,0.350374,,,,,,,0.387436,0.378122,0.374815,0.371908,0.394979,0.406694,0.350374,0.350374,0.350374,0.350374,0.158276,0.155481,0.154489,0.153617,0.160539,0.164053,0.147157,0.147157,0.07825,0.07825,36.173591,37.064681,37.391702,37.683884,35.482758,34.460704,40,40,40,40,,,,,,,,,,,3096,3096,0.350374,0.350374,0.350374,0.350374,0.350374,0.350374,0.350374,0.350374,0.147157,0.147157,40,40,, +7180,0,0.516236,1,1,0,2,4,,5,8,Grand River,Ave,932910,5.416,5.932,0,11.062201,3,4,0.774354,0.774354,0.774354,0.774354,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.023574,0.84203,0.774354,0.774354,1.023574,0.84203,0.835757,0.825258,0.774354,0.774354,0.835757,0.825258,0.905084,1.076851,0.774354,0.774354,0.905084,1.076851,0.774354,0.774354,0.774354,0.774354,0.774354,0.774354,,,,,,,1.023574,0.84203,0.835757,0.825258,0.905084,1.076851,0.774354,0.774354,0.774354,0.774354,0.399995,0.345531,0.34365,0.3405,0.364448,0.415978,0.325229,0.325229,0.172939,0.172939,30.260797,36.785123,37.061214,37.53272,34.222407,28.763643,40,40,40,40,,,,,,,,,,,3096,3096,0.774354,0.774354,0.774354,0.774354,0.774354,0.774354,0.774354,0.774354,0.325229,0.325229,40,40,, +7812,0,1.909899,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,5.03,6.939,0,40.926397,3.7,5,3.819797,3.819797,3.819797,3.819797,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.821372,4.135781,3.819797,3.819797,3.821372,4.135781,3.82224,3.822907,3.819797,3.819797,3.82224,3.822907,4.012967,3.826893,3.819797,3.819797,4.012967,3.826893,3.819797,3.819797,3.819797,3.819797,3.819797,3.819797,,,,,,,3.821372,4.135781,3.82224,3.822907,4.012967,3.826893,3.819797,3.819797,3.819797,3.819797,1.490193,1.584516,1.490454,1.490654,1.547672,1.49185,1.489721,1.489721,0.783058,0.783058,29.987637,27.707926,29.980826,29.975596,28.555906,29.94437,30,30,30,30,,,,,,,,,,,2580,2580,3.819797,3.819797,3.819797,3.819797,3.819797,3.819797,3.819797,3.819797,1.489721,1.489721,30,30,, +24828,0,0.808483,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.324626,0.15,4,3.23393,3.23393,3.23393,3.23393,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,,,,,,,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,1.115706,1.115706,1.115706,1.115706,1.115706,1.115706,1.115706,1.115706,0.574023,0.574023,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,3.23393,1.115706,1.115706,15,15,, +8084,0,0.99815,1,1,0,2,6,,5,8,Sharpe,Rd,943709,0,0.998,0,21.388919,5.8,6,1.996299,1.996299,1.996299,1.996299,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.996333,1.996301,1.996299,1.996299,1.996333,1.996301,1.996299,1.996299,1.996299,1.996299,1.996299,1.996299,1.996306,1.996345,1.996299,1.996299,1.996306,1.996345,1.996299,1.996299,1.996299,1.996299,1.996299,1.996299,,,,,,,1.996333,1.996301,1.996299,1.996299,1.996306,1.996345,1.996299,1.996299,1.996299,1.996299,0.778567,0.778557,0.778557,0.778557,0.778559,0.778571,0.778557,0.778557,0.409241,0.409241,29.999493,29.999972,30,30,29.999896,29.999306,30,30,30,30,,,,,,,,,,,2236,2236,1.996299,1.996299,1.996299,1.996299,1.996299,1.996299,1.996299,1.996299,0.778557,0.778557,30,30,, +7831,0,0.226254,1,1,0,2,5,,4,8,Grand,Ave,935004,4.804,5.03,0,4.848296,5.8,4.5,0.502786,0.502786,0.502786,0.502786,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.503207,0.553248,0.502786,0.502786,0.503207,0.553248,0.504139,0.50444,0.502786,0.502786,0.504139,0.50444,0.529909,0.504031,0.502786,0.502786,0.529909,0.504031,0.502786,0.502786,0.502786,0.502786,0.502786,0.502786,,,,,,,0.503207,0.553248,0.504139,0.50444,0.529909,0.504031,0.502786,0.502786,0.502786,0.502786,0.191688,0.2067,0.191967,0.192058,0.199698,0.191935,0.191562,0.191562,0.100306,0.100306,26.977432,24.537326,26.927548,26.911486,25.618035,26.933301,27,27,27,27,,,,,,,,,,,2580,2580,0.502786,0.502786,0.502786,0.502786,0.502786,0.502786,0.502786,0.502786,0.191562,0.191562,27,27,, +7835,0,0.308269,1,1,1,2,5,,4,8,Grand,Ave,935004,4.496,4.804,0,6.605769,5.8,4.5,0.685043,0.685043,0.685043,0.685043,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.685416,0.729849,0.685043,0.685043,0.685416,0.729849,0.686243,0.68651,0.685043,0.685043,0.686243,0.68651,0.709149,0.686149,0.685043,0.685043,0.709149,0.686149,0.685043,0.685043,0.685043,0.685043,0.685043,0.685043,,,,,,,0.685416,0.729849,0.686243,0.68651,0.709149,0.686149,0.685043,0.685043,0.685043,0.685043,0.261113,0.274443,0.261361,0.261441,0.268233,0.261333,0.261001,0.261001,0.136666,0.136666,26.985288,25.342423,26.952773,26.942291,26.08217,26.956453,27,27,27,27,,,,,,,,,,,2838,2838,0.685043,0.685043,0.685043,0.685043,0.685043,0.685043,0.685043,0.685043,0.261001,0.261001,27,27,, +24826,0,0.097096,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,2.080629,0.15,4,0.388384,0.388384,0.388384,0.388384,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,,,,,,,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.133992,0.133993,0.133992,0.133992,0.133993,0.133993,0.133992,0.133992,0.068938,0.068938,14.999998,14.999982,14.999999,14.999999,14.999987,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.388384,0.133992,0.133992,15,15,, +27182,0,0.428839,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,9.189398,0.15,4,1.715354,1.715354,1.715354,1.715354,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,,,,,,,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,0.591797,0.591797,0.591797,0.591797,0.591797,0.591797,0.591797,0.591797,0.304475,0.304475,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,1.715354,0.591797,0.591797,15,15,, +7810,0,1.005585,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,6.939,7.944,0,21.548246,3.7,5,2.01117,2.01117,2.01117,2.01117,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.011289,2.019319,2.01117,2.01117,2.011289,2.019319,2.011309,2.011323,2.01117,2.01117,2.011309,2.011323,2.017493,2.011508,2.01117,2.01117,2.017493,2.011508,2.01117,2.01117,2.01117,2.01117,2.01117,2.01117,,,,,,,2.011289,2.019319,2.011309,2.011323,2.017493,2.011508,2.01117,2.01117,2.01117,2.01117,0.784392,0.786801,0.784398,0.784402,0.786253,0.784458,0.784356,0.784356,0.41229,0.41229,29.998223,29.878924,29.997926,29.997712,29.905967,29.994956,30,30,30,30,,,,,,,,,,,2580,2580,2.01117,2.01117,2.01117,2.01117,2.01117,2.01117,2.01117,2.01117,0.784356,0.784356,30,30,, +8093,0,1.002817,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,3.86,4.862,0,21.488936,5.8,6,2.005634,2.005634,2.005634,2.005634,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.005634,2.005638,2.005634,2.005634,2.005634,2.005638,2.005634,2.005634,2.005634,2.005634,2.005634,2.005634,2.005637,2.005635,2.005634,2.005634,2.005637,2.005635,2.005634,2.005634,2.005634,2.005634,2.005634,2.005634,,,,,,,2.005634,2.005638,2.005634,2.005634,2.005637,2.005635,2.005634,2.005634,2.005634,2.005634,0.782197,0.782198,0.782197,0.782197,0.782198,0.782197,0.782197,0.782197,0.411155,0.411155,29.999994,29.999945,30,30,29.999952,29.999991,30,30,30,30,,,,,,,,,,,2236,2236,2.005634,2.005634,2.005634,2.005634,2.005634,2.005634,2.005634,2.005634,0.782197,0.782197,30,30,, +24790,0,1.038089,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.244755,0.15,4,4.152354,4.152354,4.152354,4.152354,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,,,,,,,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,1.432562,1.432562,1.432562,1.432562,1.432562,1.432562,1.432562,1.432562,0.737043,0.737043,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,4.152354,1.432562,1.432562,15,15,, +24789,0,0.755188,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.182597,0.15,4,3.020751,3.020751,3.020751,3.020751,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,,,,,,,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,1.042159,1.042159,1.042159,1.042159,1.042159,1.042159,1.042159,1.042159,0.536183,0.536183,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,3.020751,1.042159,1.042159,15,15,, +7316,0,1.002991,1,1,0,2,4,,5,8,Pinckney,Rd,944110,3.848,4.85,0,21.492669,3,4,1.504487,1.504487,1.504487,1.504487,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.432312,1.647862,1.504487,1.504487,2.432312,1.647862,1.575917,1.568419,1.504487,1.504487,1.575917,1.568419,1.894757,2.485145,1.504487,1.504487,1.894757,2.485145,1.504487,1.504487,1.504487,1.504487,1.504487,1.504487,,,,,,,2.432312,1.647862,1.575917,1.568419,1.894757,2.485145,1.504487,1.504487,1.504487,1.504487,0.910232,0.674897,0.653314,0.651064,0.748965,0.926082,0.631884,0.631884,0.336002,0.336002,24.741677,36.519718,38.186949,38.369502,31.761053,24.215681,40,40,40,40,,,,,,,,,,,3096,3096,1.504487,1.504487,1.504487,1.504487,1.504487,1.504487,1.504487,1.504487,0.631884,0.631884,40,40,, +7330,0,1.006939,1,1,0,2,7,GRV,5,8,Schafer,Rd,944107,0,1.007,0,21.577265,5.55,5,3.020817,3.020817,3.020817,3.020817,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,,,,,,,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,1.087494,1.087494,1.087494,1.087494,1.087494,1.087494,1.087494,1.087494,0.563886,0.563886,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,3.020817,1.087494,1.087494,20,20,, +7471,0,0.679561,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,9.661,10.34,0,14.562026,3.7,5,1.359122,1.359122,1.359122,1.359122,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.363088,1.359128,1.359122,1.359122,1.363088,1.359128,1.359138,1.359131,1.359122,1.359122,1.359138,1.359131,1.359182,1.362372,1.359122,1.359122,1.359182,1.362372,1.359122,1.359122,1.359122,1.359122,1.359122,1.359122,,,,,,,1.363088,1.359128,1.359138,1.359131,1.359182,1.362372,1.359122,1.359122,1.359122,1.359122,0.531247,0.530059,0.530063,0.53006,0.530076,0.531032,0.530058,0.530058,0.27862,0.27862,29.912718,29.999881,29.999645,29.999813,29.998689,29.928451,30,30,30,30,,,,,,,,,,,2580,2580,1.359122,1.359122,1.359122,1.359122,1.359122,1.359122,1.359122,1.359122,0.530058,0.530058,30,30,, +24661,0,1.662223,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,35.619054,0.15,4,6.64889,6.64889,6.64889,6.64889,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,,,,,,,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,2.293867,2.293867,2.293867,2.293867,2.293867,2.293867,2.293867,2.293867,1.180178,1.180178,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,6.64889,2.293867,2.293867,15,15,, +24799,0,1.321819,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.324697,0.15,4,5.287277,5.287277,5.287277,5.287277,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,,,,,,,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,1.82411,1.82411,1.82411,1.82411,1.82411,1.82411,1.82411,1.82411,0.938492,0.938492,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,5.287277,1.82411,1.82411,15,15,, +24804,0,0.920989,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.735472,0.15,4,3.683955,3.683955,3.683955,3.683955,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,,,,,,,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,1.270964,1.270964,1.270964,1.270964,1.270964,1.270964,1.270964,1.270964,0.653902,0.653902,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,3.683955,1.270964,1.270964,15,15,, +24831,0,0.982286,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.048992,0.15,4,3.929145,3.929145,3.929145,3.929145,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,,,,,,,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,1.355555,1.355555,1.355555,1.355555,1.355555,1.355555,1.355555,1.355555,0.697423,0.697423,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,3.929145,1.355555,1.355555,15,15,, +24832,0,1.103176,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.639488,0.15,4,4.412704,4.412704,4.412704,4.412704,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,,,,,,,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,1.522383,1.522383,1.522383,1.522383,1.522383,1.522383,1.522383,1.522383,0.783255,0.783255,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,4.412704,1.522383,1.522383,15,15,, +24833,0,1.43756,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.804859,0.15,4,5.75024,5.75024,5.75024,5.75024,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,,,,,,,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,1.983833,1.983833,1.983833,1.983833,1.983833,1.983833,1.983833,1.983833,1.020668,1.020668,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,5.75024,1.983833,1.983833,15,15,, +6397,0,0.254984,1,1,0,2,4,,5,8,M 36,,932308,3.448,3.703,0,5.463939,3,4,0.382476,0.382476,0.382476,0.382476,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.392096,0.382916,0.382476,0.382476,0.392096,0.382916,0.384166,0.383699,0.382476,0.382476,0.384166,0.383699,0.385625,0.392733,0.382476,0.382476,0.385625,0.392733,0.382476,0.382476,0.382476,0.382476,0.382476,0.382476,,,,,,,0.392096,0.382916,0.384166,0.383699,0.385625,0.392733,0.382476,0.382476,0.382476,0.382476,0.163526,0.160772,0.161147,0.161007,0.161585,0.163717,0.16064,0.16064,0.08542,0.08542,39.018623,39.953972,39.823961,39.872464,39.673287,38.95528,40,40,40,40,,,,,,,,,,,3096,3096,0.382476,0.382476,0.382476,0.382476,0.382476,0.382476,0.382476,0.382476,0.16064,0.16064,40,40,, +24668,0,1.310904,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.090803,0.15,4,5.243617,5.243617,5.243617,5.243617,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,,,,,,,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,1.809048,1.809048,1.809048,1.809048,1.809048,1.809048,1.809048,1.809048,0.930742,0.930742,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,5.243617,1.809048,1.809048,15,15,, +6740,0,0.754771,1,1,0,2,4,,5,8,M 36,,932308,2.694,3.448,0,16.173664,3,4,1.132156,1.132156,1.132156,1.132156,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.161399,1.133481,1.132156,1.132156,1.161399,1.133481,1.137188,1.135848,1.132156,1.132156,1.137188,1.135848,1.141483,1.162585,1.132156,1.132156,1.141483,1.162585,1.132156,1.132156,1.132156,1.132156,1.132156,1.132156,,,,,,,1.161399,1.133481,1.137188,1.135848,1.141483,1.162585,1.132156,1.132156,1.132156,1.132156,0.484278,0.475903,0.477015,0.476613,0.478304,0.484634,0.475506,0.475506,0.252848,0.252848,38.992861,39.953245,39.823029,39.869998,39.673192,38.953077,40,40,40,40,,,,,,,,,,,3096,3096,1.132156,1.132156,1.132156,1.132156,1.132156,1.132156,1.132156,1.132156,0.475506,0.475506,40,40,, +7333,0,0.044894,1,1,0,2,7,GRV,5,8,Cedar Lake,Rd,944106,1.985,2.03,0,0.962019,5.55,5,0.134683,0.134683,0.134683,0.134683,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,,,,,,,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.048486,0.048486,0.048486,0.048486,0.048486,0.048486,0.048486,0.048486,0.025141,0.025141,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.134683,0.048486,0.048486,20,20,, +7297,0,0.609118,1,1,0,2,7,GRV,5,8,Sexton,Rd,944207,0,0.609,0,13.052523,5.55,5,1.827353,1.827353,1.827353,1.827353,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,,,,,,,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,0.657847,0.657847,0.657847,0.657847,0.657847,0.657847,0.657847,0.657847,0.341106,0.341106,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,1.827353,0.657847,0.657847,20,20,, +7474,0,1.353363,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,7.713,9.066,0,29.000629,3.7,5,2.706725,2.706725,2.706725,2.706725,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.714526,2.706735,2.706725,2.706725,2.714526,2.706735,2.706759,2.706739,2.706725,2.706725,2.706759,2.706739,2.706829,2.712539,2.706725,2.706725,2.706829,2.712539,2.706725,2.706725,2.706725,2.706725,2.706725,2.706725,,,,,,,2.714526,2.706735,2.706759,2.706739,2.706829,2.712539,2.706725,2.706725,2.706725,2.706725,1.057963,1.055626,1.055633,1.055627,1.055654,1.057367,1.055623,1.055623,0.554879,0.554879,29.913792,29.999892,29.999629,29.999846,29.998855,29.935697,30,30,30,30,,,,,,,,,,,2580,2580,2.706725,2.706725,2.706725,2.706725,2.706725,2.706725,2.706725,2.706725,1.055623,1.055623,30,30,, +7792,0,0.726188,1,1,0,2,5,,5,8,County Farm,Rd,935101,0.021,0.747,0,15.561174,3.7,5,1.452376,1.452376,1.452376,1.452376,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,,,,,,,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,0.566427,0.566427,0.566427,0.566427,0.566427,0.566427,0.566427,0.566427,0.297737,0.297737,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,1.452376,0.566427,0.566427,30,30,, +37033,0,1.344656,1,1,0,2,4,,5,8,Mason,Rd,4104403,0,1.344,0,28.814047,3,4,2.016983,2.016983,2.016983,2.016983,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.017963,2.018039,2.016983,2.016983,2.017963,2.018039,2.017545,2.017553,2.016983,2.016983,2.017545,2.017553,2.018725,2.018674,2.016983,2.016983,2.018725,2.018674,2.016983,2.016983,2.016983,2.016983,2.016983,2.016983,,,,,,,2.017963,2.018039,2.017545,2.017553,2.018725,2.018674,2.016983,2.016983,2.016983,2.016983,0.847427,0.84745,0.847302,0.847304,0.847656,0.84764,0.847133,0.847133,0.45046,0.45046,39.980587,39.979076,39.988853,39.988707,39.965483,39.9665,40,40,40,40,,,,,,,,,,,3096,3096,2.016983,2.016983,2.016983,2.016983,2.016983,2.016983,2.016983,2.016983,0.847133,0.847133,40,40,, +8062,0,1.124648,1,1,0,2,7,,5,8,Cedar Lake,Rd,944106,5.037,6.161,0,24.099597,5.8,6,2.699155,2.699155,2.699155,2.699155,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.701257,2.699204,2.699155,2.699155,2.701257,2.699204,2.699192,2.699179,2.699155,2.699155,2.699192,2.699179,2.69995,2.70228,2.699155,2.699155,2.69995,2.70228,2.699155,2.699155,2.699155,2.699155,2.699155,2.699155,,,,,,,2.701257,2.699204,2.699192,2.699179,2.69995,2.70228,2.699155,2.699155,2.699155,2.699155,1.012814,1.012198,1.012194,1.01219,1.012422,1.013121,1.012183,1.012183,0.528584,0.528584,24.980547,24.999547,24.999654,24.999775,24.992641,24.971091,25,25,25,25,,,,,,,,,,,2064,2064,2.699155,2.699155,2.699155,2.699155,2.699155,2.699155,2.699155,2.699155,1.012183,1.012183,25,25,, +8069,0,0.855365,1,1,0,2,7,,5,8,Jewell,Rd,944104,1.241,2.096,0,18.329244,5.8,6,2.052875,2.052875,2.052875,2.052875,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.053382,2.052875,2.052875,2.052875,2.053382,2.052875,2.052875,2.052875,2.052875,2.052875,2.052875,2.052875,2.052876,2.052889,2.052875,2.052875,2.052876,2.052889,2.052875,2.052875,2.052875,2.052875,2.052875,2.052875,,,,,,,2.053382,2.052875,2.052875,2.052875,2.052876,2.052889,2.052875,2.052875,2.052875,2.052875,0.76998,0.769828,0.769828,0.769828,0.769828,0.769832,0.769828,0.769828,0.402021,0.402021,24.99383,25,25,25,24.999998,24.999828,25,25,25,25,,,,,,,,,,,2064,2064,2.052875,2.052875,2.052875,2.052875,2.052875,2.052875,2.052875,2.052875,0.769828,0.769828,25,25,, +24800,0,1.525842,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.696616,0.15,4,6.103368,6.103368,6.103368,6.103368,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,,,,,,,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,2.105662,2.105662,2.105662,2.105662,2.105662,2.105662,2.105662,2.105662,1.083348,1.083348,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,6.103368,2.105662,2.105662,15,15,, +8066,0,0.372817,1,1,0,2,7,,5,8,Cedar Lake,Rd,944106,4.664,5.037,0,7.988941,5.8,6,0.894761,0.894761,0.894761,0.894761,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.895458,0.894778,0.894761,0.894761,0.895458,0.894778,0.894774,0.894769,0.894761,0.894761,0.894774,0.894769,0.895025,0.895797,0.894761,0.894761,0.895025,0.895797,0.894761,0.894761,0.894761,0.894761,0.894761,0.894761,,,,,,,0.895458,0.894778,0.894774,0.894769,0.895025,0.895797,0.894761,0.894761,0.894761,0.894761,0.335745,0.33554,0.335539,0.335538,0.335615,0.335846,0.335536,0.335536,0.175224,0.175224,24.980547,24.999547,24.999654,24.999775,24.992641,24.971091,25,25,25,25,,,,,,,,,,,2064,2064,0.894761,0.894761,0.894761,0.894761,0.894761,0.894761,0.894761,0.894761,0.335536,0.335536,25,25,, +7227,0,0.2916,1,1,0,2,5,,5,8,Norton,Rd,932601,9.009,9.3,0,6.248565,3.7,5,0.583199,0.583199,0.583199,0.583199,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.628192,0.58336,0.583199,0.583199,0.628192,0.58336,0.58402,0.583684,0.583199,0.583199,0.58402,0.583684,0.585711,0.623694,0.583199,0.583199,0.585711,0.623694,0.583199,0.583199,0.583199,0.583199,0.583199,0.583199,,,,,,,0.628192,0.58336,0.58402,0.583684,0.585711,0.623694,0.583199,0.583199,0.583199,0.583199,0.240945,0.227496,0.227694,0.227593,0.228201,0.239596,0.227448,0.227448,0.119556,0.119556,27.851352,29.991746,29.95786,29.975088,29.871335,28.052204,30,30,30,30,,,,,,,,,,,2580,2580,0.583199,0.583199,0.583199,0.583199,0.583199,0.583199,0.583199,0.583199,0.227448,0.227448,30,30,, +7801,0,1.647592,1,1,0,2,7,,5,8,Cedar Lake,Rd,944106,6.161,7.808,0,35.305539,5.8,6,3.95422,3.95422,3.95422,3.95422,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.954225,3.95422,3.95422,3.95422,3.954225,3.95422,3.954221,3.954221,3.95422,3.95422,3.954221,3.954221,3.954221,3.95424,3.95422,3.95422,3.954221,3.95424,3.95422,3.95422,3.95422,3.95422,3.95422,3.95422,,,,,,,3.954225,3.95422,3.954221,3.954221,3.954221,3.95424,3.95422,3.95422,3.95422,3.95422,1.482834,1.482833,1.482833,1.482833,1.482833,1.482839,1.482833,1.482833,0.774368,0.774368,24.999968,25,24.999998,24.999999,24.999994,24.999876,25,25,25,25,,,,,,,,,,,2064,2064,3.95422,3.95422,3.95422,3.95422,3.95422,3.95422,3.95422,3.95422,1.482833,1.482833,25,25,, +24802,0,1.188082,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.458892,0.15,4,4.752326,4.752326,4.752326,4.752326,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.752328,4.752326,4.752326,4.752326,4.752328,4.752326,4.752327,4.752327,4.752326,4.752326,4.752327,4.752327,4.752327,4.752327,4.752326,4.752326,4.752327,4.752327,4.752326,4.752326,4.752326,4.752326,4.752326,4.752326,,,,,,,4.752328,4.752326,4.752327,4.752327,4.752327,4.752327,4.752326,4.752326,4.752326,4.752326,1.639553,1.639553,1.639553,1.639553,1.639553,1.639553,1.639553,1.639553,0.843538,0.843538,14.999997,15,15,15,15,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,4.752326,4.752326,4.752326,4.752326,4.752326,4.752326,4.752326,4.752326,1.639553,1.639553,15,15,, +24667,0,0.421082,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,9.023186,0.15,4,1.684328,1.684328,1.684328,1.684328,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,,,,,,,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,0.581093,0.581093,0.581093,0.581093,0.581093,0.581093,0.581093,0.581093,0.298968,0.298968,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,1.684328,0.581093,0.581093,15,15,, +7226,0,0.524977,1,1,0,2,5,,5,8,Norton,Rd,932601,9.3,9.825,0,11.249501,3.7,5,1.049953,1.049953,1.049953,1.049953,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.202482,1.050484,1.049953,1.049953,1.202482,1.050484,1.053496,1.051999,1.049953,1.049953,1.053496,1.051999,1.060283,1.211571,1.049953,1.049953,1.060283,1.211571,1.049953,1.049953,1.049953,1.049953,1.049953,1.049953,,,,,,,1.202482,1.050484,1.053496,1.051999,1.060283,1.211571,1.049953,1.049953,1.049953,1.049953,0.45524,0.409641,0.410545,0.410095,0.412581,0.457967,0.409482,0.409482,0.21524,0.21524,26.194662,29.984858,29.899113,29.941679,29.707731,25.998159,30,30,30,30,,,,,,,,,,,2580,2580,1.049953,1.049953,1.049953,1.049953,1.049953,1.049953,1.049953,1.049953,0.409482,0.409482,30,30,, +7473,0,0.595297,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,9.066,9.661,0,12.756355,3.7,5,1.190593,1.190593,1.190593,1.190593,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.194024,1.190598,1.190593,1.190593,1.194024,1.190598,1.190608,1.190599,1.190593,1.190593,1.190608,1.190599,1.190639,1.193175,1.190593,1.190593,1.190639,1.193175,1.190593,1.190593,1.190593,1.190593,1.190593,1.190593,,,,,,,1.194024,1.190598,1.190608,1.190599,1.190639,1.193175,1.190593,1.190593,1.190593,1.190593,0.465361,0.464333,0.464336,0.464333,0.464345,0.465106,0.464331,0.464331,0.244072,0.244072,29.913792,29.999888,29.999629,29.999846,29.99884,29.93508,30,30,30,30,,,,,,,,,,,2580,2580,1.190593,1.190593,1.190593,1.190593,1.190593,1.190593,1.190593,1.190593,0.464331,0.464331,30,30,, +8031,0,0.219352,1,1,0,2,5,,5,8,Sexton,Rd,944207,0.609,0.828,0,4.700394,3.7,5,0.438703,0.438703,0.438703,0.438703,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,,,,,,,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.171094,0.171094,0.171094,0.171094,0.171094,0.171094,0.171094,0.171094,0.089934,0.089934,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.438703,0.171094,0.171094,30,30,, +8101,0,1.502914,1,1,0,2,5,,5,8,County Farm,Rd,943510,0,1.502,0,32.205304,3.7,5,3.005828,3.005828,3.005828,3.005828,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,,,,,,,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,1.172273,1.172273,1.172273,1.172273,1.172273,1.172273,1.172273,1.172273,0.616195,0.616195,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,3.005828,1.172273,1.172273,30,30,, +19939,0,0.033835,1,1,0,2,5,,5,8,County Farm,Rd,4103025,0,0.034,0,0.725025,3.7,5,0.067669,0.067669,0.067669,0.067669,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,,,,,,,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.026391,0.026391,0.026391,0.026391,0.026391,0.026391,0.026391,0.026391,0.013872,0.013872,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.067669,0.026391,0.026391,30,30,, +7789,0,1.062724,1,1,0,2,5,,5,8,County Farm,Rd,935101,0.747,1.81,0,22.772649,3.7,5,2.125447,2.125447,2.125447,2.125447,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.125754,2.125447,2.125447,2.125447,2.125754,2.125447,2.125447,2.125447,2.125447,2.125447,2.125447,2.125447,2.125447,2.125454,2.125447,2.125447,2.125447,2.125454,2.125447,2.125447,2.125447,2.125447,2.125447,2.125447,,,,,,,2.125754,2.125447,2.125447,2.125447,2.125447,2.125454,2.125447,2.125447,2.125447,2.125447,0.829016,0.828924,0.828924,0.828924,0.828924,0.828926,0.828924,0.828924,0.435717,0.435717,29.995678,30,30,30,29.999999,29.999904,30,30,30,30,,,,,,,,,,,2580,2580,2.125447,2.125447,2.125447,2.125447,2.125447,2.125447,2.125447,2.125447,0.828924,0.828924,30,30,, +7807,0,0.965344,1,1,0,2,7,,5,8,Jewell,Rd,944104,2.096,3.061,0,20.685951,5.8,6,2.316826,2.316826,2.316826,2.316826,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.317278,2.316826,2.316826,2.316826,2.317278,2.316826,2.316826,2.316826,2.316826,2.316826,2.316826,2.316826,2.316827,2.316836,2.316826,2.316826,2.316827,2.316836,2.316826,2.316826,2.316826,2.316826,2.316826,2.316826,,,,,,,2.317278,2.316826,2.316826,2.316826,2.316827,2.316836,2.316826,2.316826,2.316826,2.316826,0.868945,0.86881,0.86881,0.86881,0.86881,0.868813,0.86881,0.86881,0.453712,0.453712,24.995125,25,25,25,24.999999,24.999896,25,25,25,25,,,,,,,,,,,2064,2064,2.316826,2.316826,2.316826,2.316826,2.316826,2.316826,2.316826,2.316826,0.86881,0.86881,25,25,, +7891,0,0.209971,1,1,0,2,5,,5,8,County Farm,Rd,4104400,2.42,2.63,0,4.499372,3.7,5,0.419941,0.419941,0.419941,0.419941,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.419941,0.420002,0.419941,0.419941,0.419941,0.420002,0.419941,0.419941,0.419941,0.419941,0.419941,0.419941,0.419943,0.419941,0.419941,0.419941,0.419943,0.419941,0.419941,0.419941,0.419941,0.419941,0.419941,0.419941,,,,,,,0.419941,0.420002,0.419941,0.419941,0.419943,0.419941,0.419941,0.419941,0.419941,0.419941,0.163777,0.163795,0.163777,0.163777,0.163778,0.163777,0.163777,0.163777,0.086088,0.086088,30,29.995678,30,30,29.999904,29.999999,30,30,30,30,,,,,,,,,,,2580,2580,0.419941,0.419941,0.419941,0.419941,0.419941,0.419941,0.419941,0.419941,0.163777,0.163777,30,30,, +7317,0,1.415211,1,1,0,2,4,,5,8,Pinckney,Rd,944110,1.418,2.833,0,30.325957,3,4,2.122817,2.122817,2.122817,2.122817,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.405745,2.387927,2.122817,2.122817,2.405745,2.387927,2.160774,2.158499,2.122817,2.122817,2.160774,2.158499,2.541009,2.536268,2.122817,2.122817,2.541009,2.536268,2.122817,2.122817,2.122817,2.122817,2.122817,2.122817,,,,,,,2.405745,2.387927,2.160774,2.158499,2.541009,2.536268,2.122817,2.122817,2.122817,2.122817,0.976462,0.971116,0.90297,0.902288,1.017041,1.015618,0.891583,0.891583,0.474096,0.474096,35.295793,35.559162,39.29734,39.338754,33.416911,33.479381,40,40,40,40,,,,,,,,,,,3096,3096,2.122817,2.122817,2.122817,2.122817,2.122817,2.122817,2.122817,2.122817,0.891583,0.891583,40,40,, +7756,0,0.849727,1,1,0,2,6,,5,8,Swarthout,Rd,945302,0,0.849,0,18.208444,5.8,6,1.699455,1.699455,1.699455,1.699455,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.703504,1.699843,1.699455,1.699455,1.703504,1.699843,1.699532,1.699526,1.699455,1.699455,1.699532,1.699526,1.701451,1.704884,1.699455,1.699455,1.701451,1.704884,1.699455,1.699455,1.699455,1.699455,1.699455,1.699455,,,,,,,1.703504,1.699843,1.699532,1.699526,1.701451,1.704884,1.699455,1.699455,1.699455,1.699455,0.664002,0.662904,0.662811,0.662809,0.663386,0.664416,0.662787,0.662787,0.348388,0.348388,29.928684,29.993147,29.998637,29.99875,29.964798,29.904457,30,30,30,30,,,,,,,,,,,2236,2236,1.699455,1.699455,1.699455,1.699455,1.699455,1.699455,1.699455,1.699455,0.662787,0.662787,30,30,, +24760,0,1.533358,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.857668,0.15,4,6.133431,6.133431,6.133431,6.133431,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,,,,,,,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,2.116034,2.116034,2.116034,2.116034,2.116034,2.116034,2.116034,2.116034,1.088684,1.088684,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,6.133431,2.116034,2.116034,15,15,, +7326,0,0.769087,1,1,0,2,4,,5,8,Pinckney,Rd,944110,0,0.769,0,16.480442,3,4,1.153631,1.153631,1.153631,1.153631,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.215796,1.22992,1.153631,1.153631,1.215796,1.22992,1.165163,1.16616,1.153631,1.153631,1.165163,1.16616,1.275636,1.261075,1.153631,1.153631,1.275636,1.261075,1.153631,1.153631,1.153631,1.153631,1.153631,1.153631,,,,,,,1.215796,1.22992,1.165163,1.16616,1.275636,1.261075,1.153631,1.153631,1.153631,1.153631,0.503175,0.507412,0.487985,0.488284,0.521127,0.516758,0.484525,0.484525,0.257644,0.257644,37.954754,37.518904,39.604099,39.57025,36.174292,36.591993,40,40,40,40,,,,,,,,,,,3096,3096,1.153631,1.153631,1.153631,1.153631,1.153631,1.153631,1.153631,1.153631,0.484525,0.484525,40,40,, +8059,0,0.649902,1,1,0,2,4,,5,8,Pinckney,Rd,944110,0.769,1.418,0,13.926465,3,4,0.974853,0.974853,0.974853,0.974853,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.074335,1.023072,0.974853,0.974853,1.074335,1.023072,0.986316,0.985303,0.974853,0.974853,0.986316,0.985303,1.067895,1.097635,0.974853,0.974853,1.067895,1.097635,0.974853,0.974853,0.974853,0.974853,0.974853,0.974853,,,,,,,1.074335,1.023072,0.986316,0.985303,1.067895,1.097635,0.974853,0.974853,0.974853,0.974853,0.439283,0.423904,0.412877,0.412573,0.437351,0.446273,0.409438,0.409438,0.217717,0.217717,36.296049,38.114713,39.535092,39.575748,36.514919,35.525552,40,40,40,40,,,,,,,,,,,3096,3096,0.974853,0.974853,0.974853,0.974853,0.974853,0.974853,0.974853,0.974853,0.409438,0.409438,40,40,, +24670,0,0.478475,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.253042,0.15,4,1.913901,1.913901,1.913901,1.913901,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,,,,,,,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,0.660296,0.660296,0.660296,0.660296,0.660296,0.660296,0.660296,0.660296,0.339717,0.339717,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,1.913901,0.660296,0.660296,15,15,, +8049,0,1.014778,1,1,0,2,4,,5,8,Pinckney,Rd,944110,2.833,3.848,0,21.745243,3,4,1.522167,1.522167,1.522167,1.522167,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.725041,1.709393,1.522167,1.522167,1.725041,1.709393,1.549256,1.547496,1.522167,1.522167,1.549256,1.547496,1.818121,1.816192,1.522167,1.522167,1.818121,1.816192,1.522167,1.522167,1.522167,1.522167,1.522167,1.522167,,,,,,,1.725041,1.709393,1.549256,1.547496,1.818121,1.816192,1.522167,1.522167,1.522167,1.522167,0.700172,0.695478,0.647437,0.646909,0.728096,0.727518,0.63931,0.63931,0.339951,0.339951,35.295793,35.618892,39.300596,39.3453,33.488792,33.524366,40,40,40,40,,,,,,,,,,,3096,3096,1.522167,1.522167,1.522167,1.522167,1.522167,1.522167,1.522167,1.522167,0.63931,0.63931,40,40,, +8061,0,0.689272,1,1,0,2,7,,5,8,Schafer,Rd,944107,2.339,3.028,0,14.770105,5.8,6,1.654252,1.654252,1.654252,1.654252,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,,,,,,,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,0.620344,0.620344,0.620344,0.620344,0.620344,0.620344,0.620344,0.620344,0.323958,0.323958,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,1.654252,0.620344,0.620344,25,25,, +24830,0,0.487239,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.440838,0.15,4,1.948956,1.948956,1.948956,1.948956,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.948957,1.948956,1.948956,1.948956,1.948957,1.948956,1.948956,1.948956,1.948956,1.948956,1.948956,1.948956,1.948957,1.948957,1.948956,1.948956,1.948957,1.948957,1.948956,1.948956,1.948956,1.948956,1.948956,1.948956,,,,,,,1.948957,1.948956,1.948956,1.948956,1.948957,1.948957,1.948956,1.948956,1.948956,1.948956,0.67239,0.67239,0.67239,0.67239,0.67239,0.67239,0.67239,0.67239,0.34594,0.34594,14.999995,15,15,15,14.999999,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,1.948956,1.948956,1.948956,1.948956,1.948956,1.948956,1.948956,1.948956,0.67239,0.67239,15,15,, +7464,0,0.937249,1,1,0,2,4,,5,8,Coon Lake,Rd,935710,11.026,11.963,0,20.08391,3,4,1.405874,1.405874,1.405874,1.405874,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.474938,1.406538,1.405874,1.405874,1.474938,1.406538,1.406187,1.406326,1.405874,1.405874,1.406187,1.406326,1.409416,1.494744,1.405874,1.405874,1.409416,1.494744,1.405874,1.405874,1.405874,1.405874,1.405874,1.405874,,,,,,,1.474938,1.406538,1.406187,1.406326,1.409416,1.494744,1.405874,1.405874,1.405874,1.405874,0.611186,0.590666,0.590561,0.590603,0.59153,0.617128,0.590467,0.590467,0.313978,0.313978,38.12698,39.981116,39.99109,39.987132,39.899468,37.621781,40,40,40,40,,,,,,,,,,,3096,3096,1.405874,1.405874,1.405874,1.405874,1.405874,1.405874,1.405874,1.405874,0.590467,0.590467,40,40,, +8041,0,0.502404,1,1,0,2,4,,5,8,Pinckney,Rd,944110,6.35,6.852,0,10.765798,3,4,0.753606,0.753606,0.753606,0.753606,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.057786,0.790906,0.753606,0.753606,1.057786,0.790906,0.797022,0.78355,0.753606,0.753606,0.797022,0.78355,0.881543,1.018435,0.753606,0.753606,0.881543,1.018435,0.753606,0.753606,0.753606,0.753606,0.753606,0.753606,,,,,,,1.057786,0.790906,0.797022,0.78355,0.881543,1.018435,0.753606,0.753606,0.753606,0.753606,0.407769,0.327704,0.329539,0.325498,0.354896,0.395963,0.316514,0.316514,0.168305,0.168305,28.497477,38.113568,37.821086,38.471354,34.194855,29.598595,40,40,40,40,,,,,,,,,,,3096,3096,0.753606,0.753606,0.753606,0.753606,0.753606,0.753606,0.753606,0.753606,0.316514,0.316514,40,40,, +7466,0,0.68672,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,10.34,11.026,0,14.715424,3.7,5,1.37344,1.37344,1.37344,1.37344,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.375825,1.373441,1.37344,1.37344,1.375825,1.373441,1.373443,1.373441,1.37344,1.37344,1.373443,1.373441,1.373449,1.374815,1.37344,1.37344,1.373449,1.374815,1.37344,1.37344,1.37344,1.37344,1.37344,1.37344,,,,,,,1.375825,1.373441,1.373443,1.373441,1.373449,1.374815,1.37344,1.37344,1.37344,1.37344,0.536357,0.535642,0.535642,0.535642,0.535644,0.536054,0.535641,0.535641,0.281555,0.281555,29.947974,29.999965,29.999934,29.999969,29.999792,29.969996,30,30,30,30,,,,,,,,,,,2580,2580,1.37344,1.37344,1.37344,1.37344,1.37344,1.37344,1.37344,1.37344,0.535641,0.535641,30,30,, +8048,0,1.500558,1,1,0,2,4,,5,8,Pinckney,Rd,944110,4.85,6.35,0,32.154807,3,4,2.250836,2.250836,2.250836,2.250836,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.612306,2.338234,2.250836,2.250836,2.612306,2.338234,2.316037,2.297467,2.250836,2.250836,2.316037,2.297467,2.47779,2.551833,2.250836,2.250836,2.47779,2.551833,2.250836,2.250836,2.250836,2.250836,2.250836,2.250836,,,,,,,2.612306,2.338234,2.316037,2.297467,2.47779,2.551833,2.250836,2.250836,2.250836,2.250836,1.053792,0.971571,0.964912,0.959341,1.013437,1.03565,0.945351,0.945351,0.502687,0.502687,34.465124,38.504899,38.873924,39.188134,36.336194,35.281872,40,40,40,40,,,,,,,,,,,3096,3096,2.250836,2.250836,2.250836,2.250836,2.250836,2.250836,2.250836,2.250836,0.945351,0.945351,40,40,, +24834,0,0.988176,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.175193,0.15,4,3.952703,3.952703,3.952703,3.952703,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,,,,,,,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,1.363682,1.363682,1.363682,1.363682,1.363682,1.363682,1.363682,1.363682,0.701605,0.701605,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,3.952703,1.363682,1.363682,15,15,, +6998,1,0.195793,1,0,0,1,1,RON,3,8,Pinckney/W I 96,RAMP,934110,0,0.196,0,,1.09,4,0.293689,,0.293689,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.293928,,0.293689,,0.293928,,0.29381,,0.293689,,0.29381,,0.294387,,0.293689,,0.294387,,0.293689,,0.293689,,0.293689,,,,,,,,0.293928,,0.29381,,0.294387,,0.293689,,0.293689,,0.123421,,0.123386,,0.123559,,0.12335,,0.065591,,39.967529,,39.983606,,39.905246,,40,,40,,,,,,,,,,,,5074,,0.293689,,0.293689,,0.293689,,0.293689,,0.12335,,40,,, +6999,1,0.264661,1,0,0,1,1,ROF,5,8,E I 96/Pinckney,RAMP,934109,0,0.265,0,,2.24,5,0.396991,,0.396991,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.397319,,0.396991,,0.397319,,0.397096,,0.396991,,0.397096,,0.397603,,0.396991,,0.397603,,0.396991,,0.396991,,0.396991,,,,,,,,0.397319,,0.397096,,0.397603,,0.396991,,0.396991,,0.166835,,0.166768,,0.16692,,0.166736,,0.088661,,39.966978,,39.989391,,39.938401,,40,,40,,,,,,,,,,,,5160,,0.396991,,0.396991,,0.396991,,0.396991,,0.166736,,40,,, +7308,0,0.745645,1,1,0,2,4,,5,8,Pinckney,Rd,944110,7.099,7.844,0,15.978108,3,4,1.118468,1.118468,1.118468,1.118468,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.840201,1.156367,1.118468,1.118468,1.840201,1.156367,1.191874,1.157861,1.118468,1.118468,1.191874,1.157861,1.292304,1.59707,1.118468,1.118468,1.292304,1.59707,1.118468,1.118468,1.118468,1.118468,1.118468,1.118468,,,,,,,1.840201,1.156367,1.191874,1.157861,1.292304,1.59707,1.118468,1.118468,1.118468,1.118468,0.686276,0.481126,0.491778,0.481574,0.521907,0.613337,0.469756,0.469756,0.249791,0.249791,24.31186,38.689032,37.536441,38.639091,34.619323,28.012988,40,40,40,40,,,,,,,,,,,3096,3096,1.118468,1.118468,1.118468,1.118468,1.118468,1.118468,1.118468,1.118468,0.469756,0.469756,40,40,, +7504,1,0.158932,1,0,0,1,1,ROF,3,8,W I 96/Pinckney,RAMP,935210,0,0.159,0,,2.24,5,0.272455,,0.272455,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.272883,,0.272455,,0.272883,,0.272551,,0.272455,,0.272551,,0.27779,,0.272455,,0.27779,,0.272455,,0.272455,,0.272455,,,,,,,,0.272883,,0.272551,,0.27779,,0.272455,,0.272455,,0.110473,,0.110373,,0.111945,,0.110344,,0.058351,,34.945072,,34.987632,,34.3278,,35,,35,,,,,,,,,,,,5074,,0.272455,,0.272455,,0.272455,,0.272455,,0.110344,,35,,, +7555,-1,0.157834,0,3,0,1,1,,5,8,W I 96,,935207,12.02,12.178,0,,1.02,7,,0.135287,,0.135287,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.135294,,0.135287,,0.135294,,0.13529,,0.135287,,0.13529,,0.135406,,0.135287,,0.135406,,0.135287,,0.135287,,0.135287,,,,,,,,0.135294,,0.13529,,0.135406,,0.135287,,0.135287,,0.068998,,0.068997,,0.069032,,0.068996,,0.037655,,69.996284,,69.998151,,69.93804,,70,,70,,,,,,,,,,,,22704,,0.135287,,0.135287,,0.135287,,0.135287,,0.068996,,70,, +7763,1,0.595028,3,0,0,1,1,,5,8,E I 96,,935105,12.007,12.602,0,,1.02,7,0.510024,,0.510024,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.510582,,0.510024,,0.510582,,0.51004,,0.510024,,0.51004,,0.510128,,0.510024,,0.510128,,0.510024,,0.510024,,0.510024,,,,,,,,0.510582,,0.51004,,0.510128,,0.510024,,0.510024,,0.26028,,0.260117,,0.260143,,0.260112,,0.141957,,69.923493,,69.997757,,69.985771,,70,,70,,,,,,,,,,,,22704,,0.510024,,0.510024,,0.510024,,0.510024,,0.260112,,70,,, +24811,0,1.015258,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.755525,0.15,4,4.061031,4.061031,4.061031,4.061031,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,,,,,,,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,1.401056,1.401056,1.401056,1.401056,1.401056,1.401056,1.401056,1.401056,0.720833,0.720833,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,4.061031,1.401056,1.401056,15,15,, +24814,0,0.196754,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.216149,0.15,4,1.180522,1.180522,1.180522,1.180522,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,,,,,,,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,0.389572,0.389572,0.389572,0.389572,0.389572,0.389572,0.389572,0.389572,0.198721,0.198721,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,1.180522,0.389572,0.389572,10,10,, +29474,0,0.716125,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.345535,0.15,4,2.8645,2.8645,2.8645,2.8645,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,,,,,,,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,0.988252,0.988252,0.988252,0.988252,0.988252,0.988252,0.988252,0.988252,0.508449,0.508449,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,2.8645,0.988252,0.988252,15,15,, +30148,0,0.692089,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.830469,0.15,4,2.768354,2.768354,2.768354,2.768354,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,,,,,,,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,0.955082,0.955082,0.955082,0.955082,0.955082,0.955082,0.955082,0.955082,0.491383,0.491383,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,2.768354,0.955082,0.955082,15,15,, +7784,0,0.246543,1,1,0,2,4,,5,8,Pinckney,Rd,944110,6.852,7.099,0,5.283066,3,4,0.369815,0.369815,0.369815,0.369815,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.475904,0.385902,0.369815,0.369815,0.475904,0.385902,0.386692,0.381138,0.369815,0.369815,0.386692,0.381138,0.420702,0.454573,0.369815,0.369815,0.420702,0.454573,0.369815,0.369815,0.369815,0.369815,0.369815,0.369815,,,,,,,0.475904,0.385902,0.386692,0.381138,0.420702,0.454573,0.369815,0.369815,0.369815,0.369815,0.187149,0.160148,0.160385,0.158719,0.170588,0.18075,0.155322,0.155322,0.082592,0.082592,31.083146,38.332459,38.254148,38.811645,35.161707,32.541687,40,40,40,40,,,,,,,,,,,3096,3096,0.369815,0.369815,0.369815,0.369815,0.369815,0.369815,0.369815,0.369815,0.155322,0.155322,40,40,, +7780,0,0.218309,1,1,0,2,4,,5,8,Pinckney,Rd,944110,8.36,8.578,0,4.678045,3,4,0.327463,0.327463,0.327463,0.327463,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.481753,0.528451,0.327463,0.327463,0.481753,0.528451,0.368787,0.372808,0.327463,0.327463,0.368787,0.372808,0.529849,0.742987,0.327463,0.327463,0.529849,0.742987,0.327463,0.327463,0.327463,0.327463,0.327463,0.327463,,,,,,,0.481753,0.528451,0.368787,0.372808,0.529849,0.742987,0.327463,0.327463,0.327463,0.327463,0.183822,0.197831,0.149932,0.151138,0.19825,0.262192,0.137535,0.137535,0.073133,0.073133,27.189277,24.786625,35.517875,35.13482,24.721258,17.629553,40,40,40,40,,,,,,,,,,,3096,3096,0.327463,0.327463,0.327463,0.327463,0.327463,0.327463,0.327463,0.327463,0.137535,0.137535,40,40,, +7672,1,0.353442,1,0,0,1,1,RON,4,8,Pinckney/E I 96,RAMP,935109,0,0.353,0,,1.09,4,0.471256,,0.471256,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.489141,,0.471256,,0.489141,,0.472336,,0.471256,,0.472336,,0.473328,,0.471256,,0.473328,,0.471256,,0.471256,,0.471256,,,,,,,,0.489141,,0.472336,,0.473328,,0.471256,,0.471256,,0.210362,,0.20532,,0.205618,,0.204996,,0.109567,,43.354579,,44.89712,,44.802965,,45,,45,,,,,,,,,,,,5160,,0.471256,,0.471256,,0.471256,,0.471256,,0.204996,,45,,, +8040,0,0.455917,1,1,0,2,4,,5,8,Pinckney,Rd,944110,7.844,8.3,0,9.769642,3,4,0.683875,0.683875,0.683875,0.683875,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.852714,0.8517,0.683875,0.683875,1.852714,0.8517,0.833024,0.765236,0.683875,0.683875,0.833024,0.765236,1.201865,1.567373,0.683875,0.683875,1.201865,1.567373,0.683875,0.683875,0.683875,0.683875,0.683875,0.683875,,,,,,,1.852714,0.8517,0.833024,0.765236,1.201865,1.567373,0.683875,0.683875,0.683875,0.683875,0.637879,0.337575,0.331972,0.311636,0.442625,0.552277,0.287227,0.287227,0.152732,0.152732,14.764828,32.118108,32.838204,35.747142,22.760457,17.452773,40,40,40,40,,,,,,,,,,,3096,3096,0.683875,0.683875,0.683875,0.683875,0.683875,0.683875,0.683875,0.683875,0.287227,0.287227,40,40,, +8037,0,0.060275,1,1,0,2,4,,5,8,Pinckney,Rd,944110,8.3,8.36,0,1.291606,3,4,0.090412,0.090412,0.090412,0.090412,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.104736,0.242499,0.090412,0.090412,0.104736,0.242499,0.093477,0.127946,0.090412,0.090412,0.093477,0.127946,0.108442,0.394617,0.090412,0.090412,0.108442,0.394617,0.090412,0.090412,0.090412,0.090412,0.090412,0.090412,,,,,,,0.104736,0.242499,0.093477,0.127946,0.108442,0.394617,0.090412,0.090412,0.090412,0.090412,0.04227,0.083599,0.038893,0.049233,0.043382,0.129235,0.037973,0.037973,0.020192,0.020192,34.52956,14.91345,38.68847,28.265755,33.349699,9.164568,40,40,40,40,,,,,,,,,,,3096,3096,0.090412,0.090412,0.090412,0.090412,0.090412,0.090412,0.090412,0.090412,0.037973,0.037973,40,40,, +7773,0,0.277963,2,2,1,2,4,,3,8,Michigan,Ave,944110,8.588,8.866,0,5.956357,6,4.5,0.505388,0.505388,0.505388,0.505388,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.557254,0.537937,0.505388,0.505388,0.557254,0.537937,0.514798,0.511416,0.505388,0.505388,0.514798,0.511416,0.595503,0.541251,0.505388,0.505388,0.595503,0.541251,0.505388,0.505388,0.505388,0.505388,0.505388,0.505388,,,,,,,0.557254,0.537937,0.514798,0.511416,0.595503,0.541251,0.505388,0.505388,0.505388,0.505388,0.21721,0.211414,0.204473,0.203458,0.228684,0.212409,0.20165,0.20165,0.106384,0.106384,29.928517,31.003263,32.396804,32.611016,28.00623,30.813431,33,33,33,33,,,,,,,,,,,5418,5418,0.505388,0.505388,0.505388,0.505388,0.505388,0.505388,0.505388,0.505388,0.20165,0.20165,33,33,, +8035,0,0.010184,2,2,1,2,4,,3,8,Michigan,Ave,944110,8.578,8.588,0,0.218223,6,4.5,0.018516,0.018516,0.018516,0.018516,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.023902,0.019137,0.018516,0.018516,0.023902,0.019137,0.019647,0.018603,0.018516,0.018516,0.019647,0.018603,0.028557,0.019002,0.018516,0.018516,0.028557,0.019002,0.018516,0.018516,0.018516,0.018516,0.018516,0.018516,,,,,,,0.023902,0.019137,0.019647,0.018603,0.028557,0.019002,0.018516,0.018516,0.018516,0.018516,0.009004,0.007574,0.007727,0.007414,0.0104,0.007534,0.007388,0.007388,0.003898,0.003898,25.563448,31.928718,31.09935,32.84474,21.396659,32.155583,33,33,33,33,,,,,,,,,,,5418,5418,0.018516,0.018516,0.018516,0.018516,0.018516,0.018516,0.018516,0.018516,0.007388,0.007388,33,33,, +7298,0,0.069376,1,1,1,2,4,,3,8,Michigan,Ave,944110,8.866,8.936,0,1.486625,6,4.5,0.126138,0.126138,0.126138,0.126138,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.275483,0.225096,0.126138,0.126138,0.275483,0.225096,0.175297,0.153272,0.126138,0.126138,0.175297,0.153272,0.315447,0.252604,0.126138,0.126138,0.315447,0.252604,0.126138,0.126138,0.126138,0.126138,0.126138,0.126138,,,,,,,0.275483,0.225096,0.175297,0.153272,0.315447,0.252604,0.126138,0.126138,0.126138,0.126138,0.095132,0.080016,0.065077,0.058469,0.107122,0.088269,0.050329,0.050329,0.026552,0.026552,15.110013,18.492358,23.74574,27.157932,13.195717,16.478536,33,33,33,33,,,,,,,,,,,2838,2838,0.126138,0.126138,0.126138,0.126138,0.126138,0.126138,0.126138,0.126138,0.050329,0.050329,33,33,, +7463,0,0.751577,1,1,0,2,4,,5,8,Coon Lake,Rd,935710,11.963,12.715,0,16.10523,3,4,1.127366,1.127366,1.127366,1.127366,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.186305,1.127899,1.127366,1.127366,1.186305,1.127899,1.127617,1.127729,1.127366,1.127366,1.127617,1.127729,1.130207,1.200729,1.127366,1.127366,1.130207,1.200729,1.127366,1.127366,1.127366,1.127366,1.127366,1.127366,,,,,,,1.186305,1.127899,1.127617,1.127729,1.130207,1.200729,1.127366,1.127366,1.127366,1.127366,0.491175,0.473653,0.473569,0.473603,0.474346,0.495503,0.473494,0.473494,0.251778,0.251778,38.012685,39.981116,39.99109,39.987132,39.899468,37.556057,40,40,40,40,,,,,,,,,,,3096,3096,1.127366,1.127366,1.127366,1.127366,1.127366,1.127366,1.127366,1.127366,0.473494,0.473494,40,40,, +24652,0,1.354573,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.026575,0.15,4,5.418294,5.418294,5.418294,5.418294,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,,,,,,,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,1.869311,1.869311,1.869311,1.869311,1.869311,1.869311,1.869311,1.869311,0.961747,0.961747,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,5.418294,1.869311,1.869311,15,15,, +24810,0,0.314368,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,6.736448,0.15,4,1.25747,1.25747,1.25747,1.25747,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,,,,,,,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,0.433827,0.433827,0.433827,0.433827,0.433827,0.433827,0.433827,0.433827,0.223201,0.223201,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,1.25747,0.433827,0.433827,15,15,, +24627,0,0.291773,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,6.252279,0.15,4,1.167092,1.167092,1.167092,1.167092,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.167092,1.167092,1.167092,1.167092,1.167092,1.167092,1.167093,1.167093,1.167092,1.167092,1.167093,1.167093,1.167094,1.167095,1.167092,1.167092,1.167094,1.167095,1.167092,1.167092,1.167092,1.167092,1.167092,1.167092,,,,,,,1.167092,1.167092,1.167093,1.167093,1.167094,1.167095,1.167092,1.167092,1.167092,1.167092,0.402647,0.402647,0.402647,0.402647,0.402647,0.402648,0.402647,0.402647,0.207159,0.207159,14.999996,14.999995,14.99999,14.999988,14.999973,14.999967,15,15,15,15,,,,,,,,,,,34400,34400,1.167092,1.167092,1.167092,1.167092,1.167092,1.167092,1.167092,1.167092,0.402647,0.402647,15,15,, +6993,0,0.621412,1,1,1,2,4,,3,8,McPherson Park,Dr,934203,0.374,0.995,0,13.315975,6,4.5,1.12984,1.12984,1.12984,1.12984,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.130027,1.129843,1.12984,1.12984,1.130027,1.129843,1.129846,1.129852,1.12984,1.12984,1.129846,1.129852,1.129848,1.1301,1.12984,1.12984,1.129848,1.1301,1.12984,1.12984,1.12984,1.12984,1.12984,1.12984,,,,,,,1.130027,1.129843,1.129846,1.129852,1.129848,1.1301,1.12984,1.12984,1.12984,1.12984,0.450862,0.450807,0.450808,0.45081,0.450809,0.450884,0.450806,0.450806,0.237831,0.237831,32.994545,32.999929,32.999834,32.999651,32.999768,32.992418,33,33,33,33,,,,,,,,,,,2838,2838,1.12984,1.12984,1.12984,1.12984,1.12984,1.12984,1.12984,1.12984,0.450806,0.450806,33,33,, +7066,0,0.020148,1,1,1,2,5,,3,8,Byron,Rd,933401,0.874,0.894,0,0.431736,8,4.5,0.048354,0.048354,0.048354,0.048354,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.048354,0.048762,0.048354,0.048354,0.048354,0.048762,0.048354,0.048355,0.048354,0.048354,0.048354,0.048355,0.048471,0.048356,0.048354,0.048354,0.048471,0.048356,0.048354,0.048354,0.048354,0.048354,0.048354,0.048354,,,,,,,0.048354,0.048762,0.048354,0.048355,0.048471,0.048356,0.048354,0.048354,0.048354,0.048354,0.018133,0.018255,0.018133,0.018133,0.018168,0.018133,0.018133,0.018133,0.009469,0.009469,24.999998,24.79084,24.999994,24.99947,24.939684,24.999256,25,25,25,25,,,,,,,,,,,2649,2649,0.048354,0.048354,0.048354,0.048354,0.048354,0.048354,0.048354,0.048354,0.018133,0.018133,25,25,, +7097,1,0.643219,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,2.146,2.789,0,13.783274,5,5,0.964829,,0.964829,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.975198,,0.964829,,0.975198,,0.981224,,0.964829,,0.981224,,1.056214,,0.964829,,1.056214,,0.964829,,0.964829,,0.964829,,,,,,,,0.975198,,0.981224,,1.056214,,0.964829,,0.964829,,0.408339,,0.410147,,0.432644,,0.405228,,0.215479,,39.574703,,39.331662,,36.539154,,40,,40,,,,,,,,,,,,6880,,0.964829,,0.964829,,0.964829,,0.964829,,0.405228,,40,,, +7108,0,1.514329,1,1,0,2,5,,5,8,Burkhart,Rd,933208,1.898,3.412,0,32.449909,3.7,5,3.028658,3.028658,3.028658,3.028658,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.028659,3.034849,3.028658,3.028658,3.028659,3.034849,3.028662,3.028664,3.028658,3.028658,3.028662,3.028664,3.030098,3.028668,3.028658,3.028658,3.030098,3.028668,3.028658,3.028658,3.028658,3.028658,3.028658,3.028658,,,,,,,3.028659,3.034849,3.028662,3.028664,3.030098,3.028668,3.028658,3.028658,3.028658,3.028658,1.181177,1.183034,1.181178,1.181178,1.181609,1.18118,1.181177,1.181177,0.620875,0.620875,29.999993,29.938806,29.999963,29.999946,29.985746,29.999907,30,30,30,30,,,,,,,,,,,2580,2580,3.028658,3.028658,3.028658,3.028658,3.028658,3.028658,3.028658,3.028658,1.181177,1.181177,30,30,, +7173,0,0.634252,1,1,1,2,3,,3,8,Grand River,Ave,932910,11.234,11.868,0,13.591117,5,5,1.087289,1.087289,1.087289,1.087289,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,1.08744,1.087324,1.087289,1.087289,1.08744,1.087324,1.087368,1.087315,1.087289,1.087289,1.087368,1.087315,1.087627,1.087503,1.087289,1.087289,1.087627,1.087503,1.087289,1.087289,1.087289,1.087289,1.087289,1.087289,,,,,,,1.08744,1.087324,1.087368,1.087315,1.087627,1.087503,1.087289,1.087289,1.087289,1.087289,0.440397,0.440363,0.440376,0.44036,0.440453,0.440416,0.440352,0.440352,0.232861,0.232861,34.995152,34.998889,34.997462,34.999186,34.989143,34.993126,35,35,35,35,,,,,,,,,,,4162,4162,1.087289,1.087289,1.087289,1.087289,1.087289,1.087289,1.087289,1.087289,0.440352,0.440352,35,35,, +7923,0,0.250762,1,1,0,2,4,,3,8,Mason,Rd,4104400,1.303,1.553,0,5.373461,6,4.5,0.45593,0.45593,0.45593,0.45593,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.456002,0.485583,0.45593,0.45593,0.456002,0.485583,0.456216,0.456236,0.45593,0.45593,0.456216,0.456236,0.474477,0.457247,0.45593,0.45593,0.474477,0.457247,0.45593,0.45593,0.45593,0.45593,0.45593,0.45593,,,,,,,0.456002,0.485583,0.456216,0.456236,0.474477,0.457247,0.45593,0.45593,0.45593,0.45593,0.181938,0.190812,0.182002,0.182008,0.18748,0.182311,0.181916,0.181916,0.095973,0.095973,32.994764,30.984811,32.979342,32.977884,31.710077,32.904953,33,33,33,33,,,,,,,,,,,2580,2580,0.45593,0.45593,0.45593,0.45593,0.45593,0.45593,0.45593,0.45593,0.181916,0.181916,33,33,, +7969,0,1.100518,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,2.636,3.736,0,23.582536,5.55,5,2.641244,2.641244,2.641244,2.641244,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.641409,2.64183,2.641244,2.641244,2.641409,2.64183,2.641245,2.641247,2.641244,2.641244,2.641245,2.641247,2.641442,2.641288,2.641244,2.641244,2.641442,2.641288,2.641244,2.641244,2.641244,2.641244,2.641244,2.641244,,,,,,,2.641409,2.64183,2.641245,2.641247,2.641442,2.641288,2.641244,2.641244,2.641244,2.641244,0.990516,0.990642,0.990467,0.990467,0.990526,0.99048,0.990467,0.990467,0.517244,0.517244,24.998434,24.994459,24.999987,24.999976,24.998124,24.999588,25,25,25,25,,,,,,,,,,,2236,2236,2.641244,2.641244,2.641244,2.641244,2.641244,2.641244,2.641244,2.641244,0.990467,0.990467,25,25,, +7975,0,0.675601,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,1.464,2.139,0,14.477162,5.55,5,1.621442,1.621442,1.621442,1.621442,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.621836,1.623187,1.621442,1.621442,1.621836,1.623187,1.621451,1.621458,1.621442,1.621442,1.621451,1.621458,1.622042,1.621631,1.621442,1.621442,1.622042,1.621631,1.621442,1.621442,1.621442,1.621442,1.621442,1.621442,,,,,,,1.621836,1.623187,1.621451,1.621458,1.622042,1.621631,1.621442,1.621442,1.621442,1.621442,0.608159,0.608564,0.608043,0.608045,0.608221,0.608098,0.608041,0.608041,0.317532,0.317532,24.993936,24.973121,24.999863,24.999762,24.990756,24.997083,25,25,25,25,,,,,,,,,,,2236,2236,1.621442,1.621442,1.621442,1.621442,1.621442,1.621442,1.621442,1.621442,0.608041,0.608041,25,25,, +37047,0,0.54689,1,1,0,2,4,,3,8,Michigan,Ave,4104401,0.557,1.104,0,11.719078,6,4.5,0.994346,0.994346,0.994346,0.994346,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.031355,1.252923,0.994346,0.994346,1.031355,1.252923,1.033798,1.041021,0.994346,0.994346,1.033798,1.041021,1.305921,1.134124,0.994346,0.994346,1.305921,1.134124,0.994346,0.994346,0.994346,0.994346,0.994346,0.994346,,,,,,,1.031355,1.252923,1.033798,1.041021,1.305921,1.134124,0.994346,0.994346,0.994346,0.994346,0.407847,0.474317,0.40858,0.410747,0.490217,0.438677,0.396744,0.396744,0.20931,0.20931,31.815831,26.189484,31.740662,31.520421,25.126646,28.93284,33,33,33,33,,,,,,,,,,,2580,2580,0.994346,0.994346,0.994346,0.994346,0.994346,0.994346,0.994346,0.994346,0.396744,0.396744,33,33,, +8072,0,1.003763,1,1,0,2,5,,5,8,Chase Lake,Rd,939803,1.791,2.794,0,21.509206,3.7,5,2.007526,2.007526,2.007526,2.007526,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.007541,2.007531,2.007526,2.007526,2.007541,2.007531,2.007527,2.007526,2.007526,2.007526,2.007527,2.007526,2.007537,2.007554,2.007526,2.007526,2.007537,2.007554,2.007526,2.007526,2.007526,2.007526,2.007526,2.007526,,,,,,,2.007541,2.007531,2.007527,2.007526,2.007537,2.007554,2.007526,2.007526,2.007526,2.007526,0.78294,0.782937,0.782935,0.782935,0.782938,0.782944,0.782935,0.782935,0.411543,0.411543,29.999772,29.99993,29.999983,29.999994,29.999838,29.999579,30,30,30,30,,,,,,,,,,,2580,2580,2.007526,2.007526,2.007526,2.007526,2.007526,2.007526,2.007526,2.007526,0.782935,0.782935,30,30,, +8110,0,1.030819,1,1,0,2,5,,5,8,Byron,Rd,939703,0.03,1.061,0,22.088975,3.7,5,2.061638,2.061638,2.061638,2.061638,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,,,,,,,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,0.804039,0.804039,0.804039,0.804039,0.804039,0.804039,0.804039,0.804039,0.422636,0.422636,29.999999,29.999997,30,30,29.999997,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,2.061638,0.804039,0.804039,30,30,, +24609,0,0.93394,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.012992,0.15,4,3.735759,3.735759,3.735759,3.735759,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,,,,,,,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,1.288837,1.288837,1.288837,1.288837,1.288837,1.288837,1.288837,1.288837,0.663097,0.663097,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,3.735759,1.288837,1.288837,15,15,, +24795,0,0.81957,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.562223,0.15,4,3.278282,3.278282,3.278282,3.278282,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,,,,,,,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,1.131007,1.131007,1.131007,1.131007,1.131007,1.131007,1.131007,1.131007,0.581895,0.581895,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,3.278282,1.131007,1.131007,15,15,, +24836,0,1.081174,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.168012,0.15,4,4.324696,4.324696,4.324696,4.324696,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,,,,,,,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,1.49202,1.49202,1.49202,1.49202,1.49202,1.49202,1.49202,1.49202,0.767633,0.767633,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,4.324696,1.49202,1.49202,15,15,, +24838,0,1.180566,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.297837,0.15,4,4.722263,4.722263,4.722263,4.722263,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,,,,,,,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,1.629181,1.629181,1.629181,1.629181,1.629181,1.629181,1.629181,1.629181,0.838202,0.838202,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,4.722263,1.629181,1.629181,15,15,, +24839,0,0.602854,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.91829,0.15,4,2.411414,2.411414,2.411414,2.411414,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,,,,,,,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,0.831938,0.831938,0.831938,0.831938,0.831938,0.831938,0.831938,0.831938,0.428026,0.428026,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,2.411414,0.831938,0.831938,15,15,, +24847,0,0.35322,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,7.569009,0.15,4,2.119323,2.119323,2.119323,2.119323,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,2.119324,2.119323,2.119323,2.119323,2.119324,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,,,,,,,2.119323,2.119323,2.119323,2.119323,2.119324,2.119323,2.119323,2.119323,2.119323,2.119323,0.699376,0.699377,0.699376,0.699376,0.699377,0.699376,0.699376,0.699376,0.356753,0.356753,10,9.999999,10,10,9.999994,10,10,10,10,10,,,,,,,,,,,34400,34400,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,2.119323,0.699376,0.699376,10,10,, +24848,0,0.462153,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,9.903274,0.15,4,2.772917,2.772917,2.772917,2.772917,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,,,,,,,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,0.915063,0.915063,0.915063,0.915063,0.915063,0.915063,0.915063,0.915063,0.466774,0.466774,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,2.772917,0.915063,0.915063,10,10,, +24850,0,0.544685,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,11.671811,0.15,4,3.268107,3.268107,3.268107,3.268107,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,,,,,,,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,1.078475,1.078475,1.078475,1.078475,1.078475,1.078475,1.078475,1.078475,0.550131,0.550131,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,3.268107,1.078475,1.078475,10,10,, +24852,0,0.345524,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,7.404082,0.15,4,2.073143,2.073143,2.073143,2.073143,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,2.073144,2.073143,2.073143,2.073143,2.073144,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,,,,,,,2.073143,2.073143,2.073143,2.073143,2.073144,2.073143,2.073143,2.073143,2.073143,2.073143,0.684137,0.684137,0.684137,0.684137,0.684138,0.684137,0.684137,0.684137,0.348979,0.348979,9.999999,9.999999,9.999999,9.999999,9.999995,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,2.073143,0.684137,0.684137,10,10,, +27052,0,1.189409,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.487326,0.15,4,4.757634,4.757634,4.757634,4.757634,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,,,,,,,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,1.641384,1.641384,1.641384,1.641384,1.641384,1.641384,1.641384,1.641384,0.84448,0.84448,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,4.757634,1.641384,1.641384,15,15,, +7102,0,0.263324,2,2,1,2,3,,4,8,Highland,Rd,933209,0.269,0.532,0,5.642647,3.7,5,0.394985,0.394985,0.394985,0.394985,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.42262,0.403663,0.394985,0.394985,0.42262,0.403663,0.402393,0.401883,0.394985,0.394985,0.402393,0.401883,0.410166,0.436235,0.394985,0.394985,0.410166,0.436235,0.394985,0.394985,0.394985,0.394985,0.394985,0.394985,,,,,,,0.42262,0.403663,0.402393,0.401883,0.410166,0.436235,0.394985,0.394985,0.394985,0.394985,0.174184,0.168497,0.168116,0.167963,0.170448,0.178269,0.165894,0.165894,0.088213,0.088213,37.384411,39.140068,39.263643,39.313461,38.519596,36.217629,40,40,40,40,,,,,,,,,,,7946,7946,0.394985,0.394985,0.394985,0.394985,0.394985,0.394985,0.394985,0.394985,0.165894,0.165894,40,40,, +7110,0,0.714865,1,1,1,2,4,,4,8,Burkhart,Rd,933208,0.392,1.106,0,15.318533,4.5,4.5,1.128734,1.128734,1.128734,1.128734,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,1.138756,1.191592,1.128734,1.128734,1.138756,1.191592,1.131668,1.134997,1.128734,1.128734,1.131668,1.134997,1.17312,1.169887,1.128734,1.128734,1.17312,1.169887,1.128734,1.128734,1.128734,1.128734,1.128734,1.128734,,,,,,,1.138756,1.191592,1.131668,1.134997,1.17312,1.169887,1.128734,1.128734,1.128734,1.128734,0.470302,0.486153,0.468176,0.469175,0.480612,0.479642,0.467296,0.467296,0.247945,0.247945,37.665582,35.995458,37.901487,37.790328,36.562231,36.663264,38,38,38,38,,,,,,,,,,,3406,3406,1.128734,1.128734,1.128734,1.128734,1.128734,1.128734,1.128734,1.128734,0.467296,0.467296,38,38,, +7177,0,1.057946,2,2,1,2,4,,4,8,Grand River,Rd,932910,8.803,9.861,0,22.670278,4.5,4.5,1.670442,1.670442,1.670442,1.670442,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,1.676534,1.671368,1.670442,1.670442,1.676534,1.671368,1.671609,1.672807,1.670442,1.670442,1.671609,1.672807,1.675744,1.693047,1.670442,1.670442,1.675744,1.693047,1.670442,1.670442,1.670442,1.670442,1.670442,1.670442,,,,,,,1.676534,1.671368,1.671609,1.672807,1.675744,1.693047,1.670442,1.670442,1.670442,1.670442,0.693391,0.691841,0.691913,0.692272,0.693153,0.698344,0.691563,0.691563,0.36694,0.36694,37.861909,37.978925,37.973459,37.946273,37.879764,37.492631,38,38,38,38,,,,,,,,,,,6502,6502,1.670442,1.670442,1.670442,1.670442,1.670442,1.670442,1.670442,1.670442,0.691563,0.691563,38,38,, +37034,0,0.434941,1,1,0,2,4,,5,8,Mason,Rd,4104403,1.344,1.779,0,9.320174,3,4,0.652412,0.652412,0.652412,0.652412,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.653441,0.653026,0.652412,0.652412,0.653441,0.653026,0.65276,0.652731,0.652412,0.652412,0.65276,0.652731,0.65429,0.654045,0.652412,0.652412,0.65429,0.654045,0.652412,0.652412,0.652412,0.652412,0.652412,0.652412,,,,,,,0.653441,0.653026,0.65276,0.652731,0.65429,0.654045,0.652412,0.652412,0.652412,0.652412,0.274322,0.274197,0.274118,0.274109,0.274576,0.274503,0.274013,0.274013,0.145705,0.145705,39.937024,39.962377,39.978679,39.980443,39.885215,39.900127,40,40,40,40,,,,,,,,,,,3096,3096,0.652412,0.652412,0.652412,0.652412,0.652412,0.652412,0.652412,0.652412,0.274013,0.274013,40,40,, +24778,0,1.584532,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.954265,0.15,4,6.33813,6.33813,6.33813,6.33813,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,,,,,,,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,2.186655,2.186655,2.186655,2.186655,2.186655,2.186655,2.186655,2.186655,1.125018,1.125018,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,6.33813,2.186655,2.186655,15,15,, +24837,0,1.241128,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.595607,0.15,4,4.964513,4.964513,4.964513,4.964513,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,,,,,,,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,1.712757,1.712757,1.712757,1.712757,1.712757,1.712757,1.712757,1.712757,0.881201,0.881201,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,4.964513,1.712757,1.712757,15,15,, +27181,0,2.355288,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,50.470463,0.15,4,9.421153,9.421153,9.421153,9.421153,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,,,,,,,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,3.250298,3.250298,3.250298,3.250298,3.250298,3.250298,3.250298,3.250298,1.672255,1.672255,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,9.421153,3.250298,3.250298,15,15,, +6997,1,0.317137,1,0,0,1,1,ROF,4,8,W I 96/Highland,RAMP,934201,0,0.317,0,,2.24,5,0.475706,,0.475706,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.476576,,0.475706,,0.476576,,0.475926,,0.475706,,0.475926,,0.493452,,0.475706,,0.493452,,0.475706,,0.475706,,0.475706,,,,,,,,0.476576,,0.475926,,0.493452,,0.475706,,0.475706,,0.200058,,0.199862,,0.20512,,0.199796,,0.106241,,39.926946,,39.98154,,38.561432,,40,,40,,,,,,,,,,,,5160,,0.475706,,0.475706,,0.475706,,0.475706,,0.199796,,40,,, +7000,0,0.071178,1,1,0,2,3,,5,8,Highland,Rd,934108,0.34,0.411,0,1.525249,1.7,4,0.085414,0.085414,0.085414,0.085414,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.320618,0.107986,0.085414,0.085414,0.320618,0.107986,0.177009,0.093265,0.085414,0.085414,0.177009,0.093265,0.284427,0.263259,0.085414,0.085414,0.284427,0.263259,0.085414,0.085414,0.085414,0.085414,0.085414,0.085414,,,,,,,0.320618,0.107986,0.177009,0.093265,0.284427,0.263259,0.085414,0.085414,0.085414,0.085414,0.108997,0.045208,0.065915,0.040792,0.09814,0.09179,0.038436,0.038436,0.020642,0.020642,13.320215,39.548681,24.126985,45.790768,15.0151,16.222411,50,50,50,50,,,,,,,,,,,3096,3096,0.085414,0.085414,0.085414,0.085414,0.085414,0.085414,0.085414,0.085414,0.038436,0.038436,50,50,, +7002,1,0.223503,1,0,0,1,1,ROF,4,8,E I 96/W Highland,RAMP,934108,0,0.223,0,,2.24,5,0.335254,,0.335254,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.34355,,0.335254,,0.34355,,0.343114,,0.335254,,0.343114,,0.360215,,0.335254,,0.360215,,0.335254,,0.335254,,0.335254,,,,,,,,0.34355,,0.343114,,0.360215,,0.335254,,0.335254,,0.143295,,0.143165,,0.148295,,0.140807,,0.074873,,39.034074,,39.083708,,37.228161,,40,,40,,,,,,,,,,,,5160,,0.335254,,0.335254,,0.335254,,0.335254,,0.140807,,40,,, +7584,-1,0.608152,0,3,0,1,1,,4,8,W I 96,,935207,8.46,9.068,0,,0.8,7.5,,0.521274,,0.521274,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.52128,,0.521274,,0.52128,,0.521277,,0.521274,,0.521277,,0.521343,,0.521274,,0.521343,,0.521274,,0.521274,,0.521274,,,,,,,,0.52128,,0.521277,,0.521343,,0.521274,,0.521274,,0.265851,,0.265851,,0.26587,,0.265849,,0.145088,,69.999186,,69.999526,,69.990689,,70,,70,,,,,,,,,,,,22704,,0.521274,,0.521274,,0.521274,,0.521274,,0.265849,,70,, +7781,1,0.319167,3,0,0,1,1,,4,8,E I 96,,935105,8.797,9.116,0,,0.8,7.5,0.273572,,0.273572,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.273604,,0.273572,,0.273604,,0.273575,,0.273572,,0.273575,,0.273591,,0.273572,,0.273591,,0.273572,,0.273572,,0.273572,,,,,,,,0.273604,,0.273575,,0.273591,,0.273572,,0.273572,,0.139531,,0.139523,,0.139527,,0.139522,,0.076144,,69.991745,,69.999285,,69.995157,,70,,70,,,,,,,,,,,,22704,,0.273572,,0.273572,,0.273572,,0.273572,,0.139522,,70,,, +24807,0,0.756064,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.201366,0.15,4,3.024255,3.024255,3.024255,3.024255,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,,,,,,,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,1.043368,1.043368,1.043368,1.043368,1.043368,1.043368,1.043368,1.043368,0.536805,0.536805,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,3.024255,1.043368,1.043368,15,15,, +7001,1,0.11677,1,0,0,2,3,DIV,5,8,E I 96/W Highland,RAMP,934108,0.223,0.34,0,2.502204,1.7,4,0.127385,,0.127385,,55,,12000,,2724,,6000,,3871,,4128,,4123,,0.238374,,0.127385,,0.238374,,0.170607,,0.127385,,0.170607,,0.221263,,0.127385,,0.221263,,0.127385,,0.127385,,0.127385,,,,,,,,0.238374,,0.170607,,0.221263,,0.127385,,0.127385,,0.092531,,0.072201,,0.087398,,0.059234,,0.031952,,29.391556,,41.066104,,31.664395,,55,,55,,,,,,,,,,,,4128,,0.127385,,0.127385,,0.127385,,0.127385,,0.059234,,55,,, +7004,1,0.129456,1,0,0,2,3,DIV,5,8,Highland/E I 96,RAMP,934107,0,0.129,0,2.774066,1.7,4,0.141225,,0.141225,,55,,12000,,2724,,6000,,3871,,4128,,4123,,0.153034,,0.141225,,0.153034,,0.145333,,0.141225,,0.145333,,0.234233,,0.141225,,0.234233,,0.141225,,0.141225,,0.141225,,,,,,,,0.153034,,0.145333,,0.234233,,0.141225,,0.141225,,0.069212,,0.066902,,0.093572,,0.06567,,0.035424,,50.756035,,53.445533,,33.160892,,55,,55,,,,,,,,,,,,4128,,0.141225,,0.141225,,0.141225,,0.141225,,0.06567,,55,,, +7223,0,0.047404,1,1,0,2,4,,5,8,I 96,Ramp,932601,10.999,11.046,0,1.015805,3,4,0.071106,0.071106,0.071106,0.071106,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.252348,0.072709,0.071106,0.071106,0.252348,0.072709,0.077718,0.075187,0.071106,0.071106,0.077718,0.075187,0.085062,0.191307,0.071106,0.071106,0.085062,0.191307,0.071106,0.071106,0.071106,0.071106,0.071106,0.071106,,,,,,,0.252348,0.072709,0.077718,0.075187,0.085062,0.191307,0.071106,0.071106,0.071106,0.071106,0.084237,0.030345,0.031848,0.031089,0.034051,0.065925,0.029865,0.029865,0.01588,0.01588,11.27117,39.118313,36.597014,37.829272,33.437516,14.867506,40,40,40,40,,,,,,,,,,,3096,3096,0.071106,0.071106,0.071106,0.071106,0.071106,0.071106,0.071106,0.071106,0.029865,0.029865,40,40,, +7224,0,0.862656,1,1,0,2,4,,5,8,Burkhart,Rd,932601,10.137,10.999,0,18.485489,3,4,1.293984,1.293984,1.293984,1.293984,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.443876,1.305047,1.293984,1.293984,2.443876,1.305047,1.332773,1.316251,1.293984,1.293984,1.332773,1.316251,1.384386,2.085207,1.293984,1.293984,1.384386,2.085207,1.293984,1.293984,1.293984,1.293984,1.293984,1.293984,,,,,,,2.443876,1.305047,1.332773,1.316251,1.384386,2.085207,1.293984,1.293984,1.293984,1.293984,0.888441,0.546792,0.55511,0.550154,0.570594,0.78084,0.543473,0.543473,0.28899,0.28899,21.179212,39.660926,38.835846,39.323318,37.387966,24.822168,40,40,40,40,,,,,,,,,,,3096,3096,1.293984,1.293984,1.293984,1.293984,1.293984,1.293984,1.293984,1.293984,0.543473,0.543473,40,40,, +7003,1,0.332802,1,0,0,1,1,RON,4,8,Highland/E I 96,RAMP,934107,0.129,0.462,0,,1.09,4,0.443736,,0.443736,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.475286,,0.443736,,0.475286,,0.444302,,0.443736,,0.444302,,0.446377,,0.443736,,0.446377,,0.443736,,0.443736,,0.443736,,,,,,,,0.475286,,0.444302,,0.446377,,0.443736,,0.443736,,0.20249,,0.193195,,0.193818,,0.193025,,0.103169,,42.012835,,44.942638,,44.733705,,45,,45,,,,,,,,,,,,5160,,0.443736,,0.443736,,0.443736,,0.443736,,0.193025,,45,,, +7222,0,0.01452,1,1,0,2,4,,5,8,I 96,Ramp,932601,11.046,11.061,0,0.311139,3,4,0.02178,0.02178,0.02178,0.02178,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.025677,0.02178,0.02178,0.02178,0.025677,0.02178,0.022123,0.02178,0.02178,0.02178,0.022123,0.02178,0.022409,0.021782,0.02178,0.02178,0.022409,0.021782,0.02178,0.02178,0.02178,0.02178,0.02178,0.02178,,,,,,,0.025677,0.02178,0.022123,0.02178,0.022409,0.021782,0.02178,0.02178,0.02178,0.02178,0.010317,0.009148,0.009251,0.009148,0.009336,0.009148,0.009147,0.009147,0.004864,0.004864,33.928418,39.999593,39.378854,39.99938,38.877318,39.996198,40,40,40,40,,,,,,,,,,,3096,3096,0.02178,0.02178,0.02178,0.02178,0.02178,0.02178,0.02178,0.02178,0.009147,0.009147,40,40,, +6995,1,0.20492,1,0,0,1,1,RON,4,8,W Highland/W I 96,RAMP,934202,0.106,0.311,0,,1.09,4,0.273226,,0.273226,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.289124,,0.273226,,0.289124,,0.284807,,0.273226,,0.284807,,0.304214,,0.273226,,0.304214,,0.273226,,0.273226,,0.273226,,,,,,,,0.289124,,0.284807,,0.304214,,0.273226,,0.273226,,0.123623,,0.122328,,0.12815,,0.118853,,0.063525,,42.525587,,43.170209,,40.416181,,45,,45,,,,,,,,,,,,5160,,0.273226,,0.273226,,0.273226,,0.273226,,0.118853,,45,,, +7111,0,0.391897,1,1,1,2,4,,4,8,Burkhart,Rd,933208,0,0.392,0,8.397785,4.5,4.5,0.618784,0.618784,0.618784,0.618784,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.624278,0.653243,0.618784,0.618784,0.624278,0.653243,0.620392,0.622217,0.618784,0.618784,0.620392,0.622217,0.656665,0.641345,0.618784,0.618784,0.656665,0.641345,0.618784,0.618784,0.618784,0.618784,0.618784,0.618784,,,,,,,0.624278,0.653243,0.620392,0.622217,0.656665,0.641345,0.618784,0.618784,0.618784,0.618784,0.257825,0.266514,0.256659,0.257207,0.267541,0.262945,0.256177,0.256177,0.135926,0.135926,37.665582,35.995458,37.901487,37.790328,35.807931,36.663264,38,38,38,38,,,,,,,,,,,3406,3406,0.618784,0.618784,0.618784,0.618784,0.618784,0.618784,0.618784,0.618784,0.256177,0.256177,38,38,, +7103,0,0.110864,2,2,1,2,3,,4,8,Highland,Rd,933209,0.158,0.269,0,2.375652,3.7,5,0.166296,0.166296,0.166296,0.166296,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.191766,0.183589,0.166296,0.166296,0.191766,0.183589,0.172846,0.173707,0.166296,0.166296,0.172846,0.173707,0.195061,0.219462,0.166296,0.166296,0.195061,0.219462,0.166296,0.166296,0.166296,0.166296,0.166296,0.166296,,,,,,,0.191766,0.183589,0.172846,0.173707,0.195061,0.219462,0.166296,0.166296,0.166296,0.166296,0.077485,0.075032,0.071809,0.072068,0.078474,0.085794,0.069844,0.069844,0.037139,0.037139,34.687147,36.232084,38.484026,38.293297,34.10119,30.309715,40,40,40,40,,,,,,,,,,,7946,7946,0.166296,0.166296,0.166296,0.166296,0.166296,0.166296,0.166296,0.166296,0.069844,0.069844,40,40,, +7104,0,0.052316,1,1,0,2,3,,4,8,Highland,Rd,933209,0.081,0.134,0,1.121062,3.7,5,0.078474,0.078474,0.078474,0.078474,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.224996,0.082427,0.078474,0.078474,0.224996,0.082427,0.123724,0.079202,0.078474,0.078474,0.123724,0.079202,0.196197,0.094832,0.078474,0.078474,0.196197,0.094832,0.078474,0.078474,0.078474,0.078474,0.078474,0.078474,,,,,,,0.224996,0.082427,0.123724,0.079202,0.196197,0.094832,0.078474,0.078474,0.078474,0.078474,0.076916,0.034145,0.046534,0.033177,0.068276,0.037867,0.032959,0.032959,0.017526,0.017526,13.951251,38.081818,25.370801,39.632571,15.999052,33.100257,40,40,40,40,,,,,,,,,,,3784,3784,0.078474,0.078474,0.078474,0.078474,0.078474,0.078474,0.078474,0.078474,0.032959,0.032959,40,40,, +19503,1,0.066782,1,0,0,1,1,RON,4,8,E Highland/W I 96,RAMP,1903301,0,0.067,0,,1.09,4,0.089042,,0.089042,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.089042,,0.089042,,0.089042,,0.089042,,0.089042,,0.089042,,0.089042,,0.089042,,0.089042,,0.089042,,0.089042,,0.089042,,,,,,,,0.089042,,0.089042,,0.089042,,0.089042,,0.089042,,0.038733,,0.038733,,0.038733,,0.038733,,0.020702,,44.999905,,44.999965,,44.99991,,45,,45,,,,,,,,,,,,5160,,0.089042,,0.089042,,0.089042,,0.089042,,0.038733,,45,,, +7105,0,0.081439,1,1,0,2,3,,4,8,Highland,Rd,933209,0,0.081,0,1.745117,3.7,5,0.122158,0.122158,0.122158,0.122158,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.424994,0.138334,0.122158,0.122158,0.424994,0.138334,0.215321,0.126479,0.122158,0.122158,0.215321,0.126479,0.367606,0.335418,0.122158,0.122158,0.367606,0.335418,0.122158,0.122158,0.122158,0.122158,0.122158,0.122158,,,,,,,0.424994,0.138334,0.215321,0.126479,0.367606,0.335418,0.122158,0.122158,0.122158,0.122158,0.142157,0.056159,0.079255,0.052603,0.124941,0.115285,0.051306,0.051306,0.027282,0.027282,11.497413,35.322726,22.69323,38.633423,13.292301,14.567857,40,40,40,40,,,,,,,,,,,3784,3784,0.122158,0.122158,0.122158,0.122158,0.122158,0.122158,0.122158,0.122158,0.051306,0.051306,40,40,, +6996,1,0.106022,1,0,0,1,1,RON,4,8,W Highland/W I 96,RAMP,934202,0,0.106,0,,1.09,4,0.141362,,0.141362,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.147316,,0.141362,,0.147316,,0.145932,,0.141362,,0.145932,,0.153622,,0.141362,,0.153622,,0.141362,,0.141362,,0.141362,,,,,,,,0.147316,,0.145932,,0.153622,,0.141362,,0.141362,,0.063279,,0.062863,,0.06517,,0.061493,,0.032867,,43.181293,,43.590876,,41.408801,,45,,45,,,,,,,,,,,,5160,,0.141362,,0.141362,,0.141362,,0.141362,,0.061493,,45,,, +7178,0,1.289301,1,1,0,2,4,,5,8,Grand River,Ave,932910,7.514,8.803,0,27.627877,3,4,1.933951,1.933951,1.933951,1.933951,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.527373,2.259553,1.933951,1.933951,2.527373,2.259553,2.203019,2.251131,1.933951,1.933951,2.203019,2.251131,2.925626,3.119604,1.933951,1.933951,2.925626,3.119604,1.933951,1.933951,1.933951,1.933951,1.933951,1.933951,,,,,,,2.527373,2.259553,2.203019,2.251131,2.925626,3.119604,1.933951,1.933951,1.933951,1.933951,0.990286,0.90994,0.89298,0.907414,1.109762,1.167955,0.81226,0.81226,0.431916,0.431916,30.608083,34.236003,35.11456,34.364077,26.441535,24.797393,40,40,40,40,,,,,,,,,,,3096,3096,1.933951,1.933951,1.933951,1.933951,1.933951,1.933951,1.933951,1.933951,0.81226,0.81226,40,40,, +24796,0,1.075282,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.041754,0.15,4,4.301127,4.301127,4.301127,4.301127,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,,,,,,,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,1.483889,1.483889,1.483889,1.483889,1.483889,1.483889,1.483889,1.483889,0.76345,0.76345,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,4.301127,1.483889,1.483889,15,15,, +29841,0,0.758795,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.259893,0.15,4,3.03518,3.03518,3.03518,3.03518,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,,,,,,,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,1.047137,1.047137,1.047137,1.047137,1.047137,1.047137,1.047137,1.047137,0.538744,0.538744,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,3.03518,1.047137,1.047137,15,15,, +24797,0,0.362756,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,7.773348,0.15,4,1.451025,1.451025,1.451025,1.451025,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.451025,1.451026,1.451025,1.451025,1.451025,1.451026,1.451026,1.451026,1.451025,1.451025,1.451026,1.451026,1.451028,1.451026,1.451025,1.451025,1.451028,1.451026,1.451025,1.451025,1.451025,1.451025,1.451025,1.451025,,,,,,,1.451025,1.451026,1.451026,1.451026,1.451028,1.451026,1.451025,1.451025,1.451025,1.451025,0.500604,0.500604,0.500604,0.500604,0.500605,0.500604,0.500604,0.500604,0.257557,0.257557,15,14.999992,14.999993,14.999989,14.999964,14.999989,15,15,15,15,,,,,,,,,,,34400,34400,1.451025,1.451025,1.451025,1.451025,1.451025,1.451025,1.451025,1.451025,0.500604,0.500604,15,15,, +7109,0,0.79239,1,1,0,2,5,,5,8,Burkhart,Rd,933208,1.106,1.898,0,16.979777,3.7,5,1.584779,1.584779,1.584779,1.584779,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.584895,1.622136,1.584779,1.584779,1.584895,1.622136,1.584991,1.585071,1.584779,1.584779,1.584991,1.585071,1.638572,1.588383,1.584779,1.584779,1.638572,1.588383,1.584779,1.584779,1.584779,1.584779,1.584779,1.584779,,,,,,,1.584895,1.622136,1.584991,1.585071,1.638572,1.588383,1.584779,1.584779,1.584779,1.584779,0.618099,0.629271,0.618127,0.618152,0.634202,0.619145,0.618064,0.618064,0.32488,0.32488,29.997803,29.309122,29.995996,29.994471,29.015132,29.931932,30,30,30,30,,,,,,,,,,,2580,2580,1.584779,1.584779,1.584779,1.584779,1.584779,1.584779,1.584779,1.584779,0.618064,0.618064,30,30,, +6991,0,0.568434,1,1,1,2,4,,3,8,Highlander,Way,934203,1.319,1.887,0,12.180739,6,4.5,1.033517,1.033517,1.033517,1.033517,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.033655,1.033517,1.033517,1.033517,1.033655,1.033517,1.033559,1.033517,1.033517,1.033517,1.033559,1.033517,1.033818,1.033517,1.033517,1.033517,1.033818,1.033517,1.033517,1.033517,1.033517,1.033517,1.033517,1.033517,,,,,,,1.033655,1.033517,1.033559,1.033517,1.033818,1.033517,1.033517,1.033517,1.033517,1.033517,0.412415,0.412373,0.412386,0.412373,0.412464,0.412373,0.412373,0.412373,0.217555,0.217555,32.995603,32.999996,32.998661,32.999999,32.990403,33,33,33,33,33,,,,,,,,,,,2838,2838,1.033517,1.033517,1.033517,1.033517,1.033517,1.033517,1.033517,1.033517,0.412373,0.412373,33,33,, +7099,1,0.62303,2,0,0,2,3,DIV,4,8,Highland,Rd,933209,1.149,1.772,0,13.350634,3.7,5,0.830706,,0.830706,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.855141,,0.830706,,0.855141,,0.840023,,0.830706,,0.840023,,0.853763,,0.830706,,0.853763,,0.830706,,0.830706,,0.830706,,,,,,,,0.855141,,0.840023,,0.853763,,0.830706,,0.830706,,0.368688,,0.364152,,0.368274,,0.361357,,0.193139,,43.714177,,44.50089,,43.784742,,45,,45,,,,,,,,,,,,7568,,0.830706,,0.830706,,0.830706,,0.830706,,0.361357,,45,,, +7174,0,0.542518,2,2,1,2,3,,4,8,Grand River,Ave,932910,10.692,11.234,0,11.625377,3.7,5,0.813776,0.813776,0.813776,0.813776,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.814314,0.813883,0.813776,0.813776,0.814314,0.813883,0.813973,0.813906,0.813776,0.813776,0.813973,0.813906,0.81461,0.814645,0.813776,0.813776,0.81461,0.814645,0.813776,0.813776,0.813776,0.813776,0.813776,0.813776,,,,,,,0.814314,0.813883,0.813973,0.813906,0.81461,0.814645,0.813776,0.813776,0.813776,0.813776,0.341947,0.341818,0.341845,0.341825,0.342036,0.342047,0.341786,0.341786,0.181743,0.181743,39.973608,39.994773,39.990344,39.993641,39.959065,39.957327,40,40,40,40,,,,,,,,,,,7946,7946,0.813776,0.813776,0.813776,0.813776,0.813776,0.813776,0.813776,0.813776,0.341786,0.341786,40,40,, +7176,0,0.695261,2,2,0,2,3,,4,8,Grand River,Ave,932910,9.898,10.593,0,14.898453,3.7,5,1.042892,1.042892,1.042892,1.042892,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,1.043159,1.042916,1.042892,1.042892,1.043159,1.042916,1.042928,1.042929,1.042892,1.042892,1.042928,1.042929,1.04305,1.04327,1.042892,1.042892,1.04305,1.04327,1.042892,1.042892,1.042892,1.042892,1.042892,1.042892,,,,,,,1.043159,1.042916,1.042928,1.042929,1.04305,1.04327,1.042892,1.042892,1.042892,1.042892,0.438095,0.438022,0.438026,0.438026,0.438062,0.438128,0.438015,0.438015,0.232912,0.232912,39.989737,39.999082,39.99859,39.998578,39.993938,39.985505,40,40,40,40,,,,,,,,,,,7568,7568,1.042892,1.042892,1.042892,1.042892,1.042892,1.042892,1.042892,1.042892,0.438015,0.438015,40,40,, +24845,0,0.610655,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,13.085463,0.15,4,2.44262,2.44262,2.44262,2.44262,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,,,,,,,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,0.842704,0.842704,0.842704,0.842704,0.842704,0.842704,0.842704,0.842704,0.433565,0.433565,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,2.44262,0.842704,0.842704,15,15,, +7100,1,0.145211,2,0,0,2,3,DIV,4,8,Highland,Rd,933209,1.004,1.149,0,3.111657,3.7,5,0.193614,,0.193614,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.199309,,0.193614,,0.199309,,0.195786,,0.193614,,0.195786,,0.198988,,0.193614,,0.198988,,0.193614,,0.193614,,0.193614,,,,,,,,0.199309,,0.195786,,0.198988,,0.193614,,0.193614,,0.085931,,0.084874,,0.085834,,0.084222,,0.045015,,43.714177,,44.50089,,43.784742,,45,,45,,,,,,,,,,,,7568,,0.193614,,0.193614,,0.193614,,0.193614,,0.084222,,45,,, +24844,0,0.468302,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,10.035042,0.15,4,1.873208,1.873208,1.873208,1.873208,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,,,,,,,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,0.646257,0.646257,0.646257,0.646257,0.646257,0.646257,0.646257,0.646257,0.332494,0.332494,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,1.873208,0.646257,0.646257,15,15,, +7101,1,0.204448,2,0,0,2,3,DIV,4,8,Highland,Rd,933209,0.8,1.004,0,4.381033,3.7,5,0.272598,,0.272598,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.293432,,0.272598,,0.293432,,0.282745,,0.272598,,0.282745,,0.311494,,0.272598,,0.311494,,0.272598,,0.272598,,0.272598,,,,,,,,0.293432,,0.282745,,0.311494,,0.272598,,0.272598,,0.12483,,0.121624,,0.130249,,0.11858,,0.063379,,41.804837,,43.385026,,39.380792,,45,,45,,,,,,,,,,,,7568,,0.272598,,0.272598,,0.272598,,0.272598,,0.11858,,45,,, +24843,0,0.361118,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,7.738243,0.15,4,1.444472,1.444472,1.444472,1.444472,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.444472,1.444473,1.444472,1.444472,1.444472,1.444473,1.444472,1.444472,1.444472,1.444472,1.444472,1.444472,1.444474,1.444472,1.444472,1.444472,1.444474,1.444472,1.444472,1.444472,1.444472,1.444472,1.444472,1.444472,,,,,,,1.444472,1.444473,1.444472,1.444472,1.444474,1.444472,1.444472,1.444472,1.444472,1.444472,0.498343,0.498343,0.498343,0.498343,0.498343,0.498343,0.498343,0.498343,0.256394,0.256394,14.999997,14.999995,14.999997,14.999999,14.999979,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,1.444472,1.444472,1.444472,1.444472,1.444472,1.444472,1.444472,1.444472,0.498343,0.498343,15,15,, +6992,0,0.323832,1,1,1,2,4,,3,8,Highlander,Way,934203,0.995,1.319,0,6.939258,6,4.5,0.588786,0.588786,0.588786,0.588786,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.706253,0.650379,0.588786,0.588786,0.706253,0.650379,0.648353,0.618363,0.588786,0.588786,0.648353,0.618363,0.860904,0.751411,0.588786,0.588786,0.860904,0.751411,0.588786,0.588786,0.588786,0.588786,0.588786,0.588786,,,,,,,0.706253,0.650379,0.648353,0.618363,0.860904,0.751411,0.588786,0.588786,0.588786,0.588786,0.270166,0.253403,0.252796,0.243799,0.316561,0.283713,0.234925,0.234925,0.123939,0.123939,27.511285,29.874786,29.968107,31.421533,22.569214,25.857917,33,33,33,33,,,,,,,,,,,2838,2838,0.588786,0.588786,0.588786,0.588786,0.588786,0.588786,0.588786,0.588786,0.234925,0.234925,33,33,, +7098,1,0.374242,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,1.772,2.146,0,8.019465,5,5,0.561363,,0.561363,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.597299,,0.561363,,0.597299,,0.575065,,0.561363,,0.575065,,0.595267,,0.561363,,0.595267,,0.561363,,0.561363,,0.561363,,,,,,,,0.597299,,0.575065,,0.595267,,0.561363,,0.561363,,0.246553,,0.239883,,0.245944,,0.235772,,0.125371,,37.593408,,39.046884,,37.721717,,40,,40,,,,,,,,,,,,6880,,0.561363,,0.561363,,0.561363,,0.561363,,0.235772,,40,,, +7071,0,0.447729,1,1,0,2,7,,4,8,Crestwood,Ln,933304,0,0.448,0,9.594183,6.55,4.5,1.074549,1.074549,1.074549,1.074549,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,,,,,,,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,0.402956,0.402956,0.402956,0.402956,0.402956,0.402956,0.402956,0.402956,0.210432,0.210432,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,1.074549,0.402956,0.402956,25,25,, +7175,0,0.098819,2,2,0,2,3,,4,8,Grand River,Ave,932910,10.593,10.692,0,2.117546,3.7,5,0.148228,0.148228,0.148228,0.148228,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.148353,0.148253,0.148228,0.148228,0.148353,0.148253,0.148274,0.148258,0.148228,0.148228,0.148274,0.148258,0.148422,0.14843,0.148228,0.148228,0.148422,0.14843,0.148228,0.148228,0.148228,0.148228,0.148228,0.148228,,,,,,,0.148353,0.148253,0.148274,0.148258,0.148422,0.14843,0.148228,0.148228,0.148228,0.148228,0.062293,0.062263,0.06227,0.062265,0.062314,0.062316,0.062256,0.062256,0.033104,0.033104,39.966313,39.993327,39.987677,39.991884,39.947764,39.945548,40,40,40,40,,,,,,,,,,,7568,7568,0.148228,0.148228,0.148228,0.148228,0.148228,0.148228,0.148228,0.148228,0.062256,0.062256,40,40,, +24835,0,0.935005,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.035811,0.15,4,3.740018,3.740018,3.740018,3.740018,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,,,,,,,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,1.290306,1.290306,1.290306,1.290306,1.290306,1.290306,1.290306,1.290306,0.663853,0.663853,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,3.740018,1.290306,1.290306,15,15,, +7966,0,0.065192,1,1,0,2,5,,5,8,Barron,Rd,934602,0.246,0.311,0,1.396965,3.7,5,0.130383,0.130383,0.130383,0.130383,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.130385,0.130384,0.130383,0.130383,0.130385,0.130384,0.130384,0.130384,0.130383,0.130383,0.130384,0.130384,0.130385,0.130387,0.130383,0.130383,0.130385,0.130387,0.130383,0.130383,0.130383,0.130383,0.130383,0.130383,,,,,,,0.130385,0.130384,0.130384,0.130384,0.130385,0.130387,0.130383,0.130383,0.130383,0.130383,0.05085,0.05085,0.05085,0.05085,0.05085,0.050851,0.05085,0.05085,0.026729,0.026729,29.99962,29.999952,29.999822,29.999911,29.999676,29.999174,30,30,30,30,,,,,,,,,,,2580,2580,0.130383,0.130383,0.130383,0.130383,0.130383,0.130383,0.130383,0.130383,0.05085,0.05085,30,30,, +19940,0,0.040819,1,1,0,2,5,,5,8,Byron,Rd,4103021,0,0.041,0,0.874688,3.7,5,0.081638,0.081638,0.081638,0.081638,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.081638,0.081639,0.081638,0.081638,0.081638,0.081639,0.081638,0.081638,0.081638,0.081638,0.081638,0.081638,0.08164,0.081638,0.081638,0.081638,0.08164,0.081638,0.081638,0.081638,0.081638,0.081638,0.081638,0.081638,,,,,,,0.081638,0.081639,0.081638,0.081638,0.08164,0.081638,0.081638,0.081638,0.081638,0.081638,0.031839,0.031839,0.031839,0.031839,0.031839,0.031839,0.031839,0.031839,0.016736,0.016736,29.999952,29.99962,29.999911,29.999822,29.999174,29.999676,30,30,30,30,,,,,,,,,,,2580,2580,0.081638,0.081638,0.081638,0.081638,0.081638,0.081638,0.081638,0.081638,0.031839,0.031839,30,30,, +7107,0,0.957662,1,1,0,2,5,,5,8,Burkhart,Rd,933208,3.412,4.37,0,20.521326,3.7,5,1.915324,1.915324,1.915324,1.915324,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.915324,1.919773,1.915324,1.915324,1.915324,1.919773,1.915328,1.91533,1.915324,1.915324,1.915328,1.91533,1.916576,1.915336,1.915324,1.915324,1.916576,1.915336,1.915324,1.915324,1.915324,1.915324,1.915324,1.915324,,,,,,,1.915324,1.919773,1.915328,1.91533,1.916576,1.915336,1.915324,1.915324,1.915324,1.915324,0.746976,0.748311,0.746977,0.746978,0.747352,0.74698,0.746976,0.746976,0.392641,0.392641,29.999991,29.930476,29.999935,29.999904,29.980395,29.999802,30,30,30,30,,,,,,,,,,,2580,2580,1.915324,1.915324,1.915324,1.915324,1.915324,1.915324,1.915324,1.915324,0.746976,0.746976,30,30,, +8073,0,1.296047,1,1,0,2,5,,5,8,Chase Lake,Rd,939803,0.495,1.791,0,27.772435,3.7,5,2.592094,2.592094,2.592094,2.592094,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.59214,2.592101,2.592094,2.592094,2.59214,2.592101,2.592098,2.592095,2.592094,2.592094,2.592098,2.592095,2.592117,2.592165,2.592094,2.592094,2.592117,2.592165,2.592094,2.592094,2.592094,2.592094,2.592094,2.592094,,,,,,,2.59214,2.592101,2.592098,2.592095,2.592117,2.592165,2.592094,2.592094,2.592094,2.592094,1.01093,1.010919,1.010918,1.010917,1.010924,1.010938,1.010917,1.010917,0.531379,0.531379,29.999469,29.99992,29.999958,29.999988,29.999733,29.999176,30,30,30,30,,,,,,,,,,,2580,2580,2.592094,2.592094,2.592094,2.592094,2.592094,2.592094,2.592094,2.592094,1.010917,1.010917,30,30,, +8109,0,1.466642,1,1,0,2,5,,5,8,Byron,Rd,939703,1.061,2.527,0,31.428041,3.7,5,2.933284,2.933284,2.933284,2.933284,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,,,,,,,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,1.143981,1.143981,1.143981,1.143981,1.143981,1.143981,1.143981,1.143981,0.601323,0.601323,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,2.933284,1.143981,1.143981,30,30,, +19942,0,0.072924,1,1,0,2,6,GRV,5,8,Marr,Rd,4103019,0,0.073,0,1.562649,5.55,5,0.175017,0.175017,0.175017,0.175017,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.175028,0.175107,0.175017,0.175017,0.175028,0.175107,0.175017,0.175017,0.175017,0.175017,0.175017,0.175017,0.175038,0.175021,0.175017,0.175017,0.175038,0.175021,0.175017,0.175017,0.175017,0.175017,0.175017,0.175017,,,,,,,0.175028,0.175107,0.175017,0.175017,0.175038,0.175021,0.175017,0.175017,0.175017,0.175017,0.065635,0.065658,0.065631,0.065631,0.065638,0.065633,0.065631,0.065631,0.034274,0.034274,24.998332,24.987115,24.999971,24.999952,24.997025,24.999398,25,25,25,25,,,,,,,,,,,2236,2236,0.175017,0.175017,0.175017,0.175017,0.175017,0.175017,0.175017,0.175017,0.065631,0.065631,25,25,, +8112,0,1.001237,1,1,0,2,6,GRV,5,8,Marr,Rd,939610,1.018,2.019,0,21.455079,5.55,5,2.402969,2.402969,2.402969,2.402969,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.403508,2.40545,2.402969,2.402969,2.403508,2.40545,2.402987,2.402989,2.402969,2.402969,2.402987,2.402989,2.403853,2.403209,2.402969,2.402969,2.403853,2.403209,2.402969,2.402969,2.402969,2.402969,2.402969,2.402969,,,,,,,2.403508,2.40545,2.402987,2.402989,2.403853,2.403209,2.402969,2.402969,2.402969,2.402969,0.901275,0.901858,0.901119,0.901119,0.901379,0.901185,0.901113,0.901113,0.470581,0.470581,24.994389,24.97421,24.999815,24.999787,24.990806,24.997503,25,25,25,25,,,,,,,,,,,2236,2236,2.402969,2.402969,2.402969,2.402969,2.402969,2.402969,2.402969,2.402969,0.901113,0.901113,25,25,, +8111,0,0.462659,1,1,0,2,6,GRV,5,8,Marr,Rd,939610,2.019,2.482,0,9.914113,5.55,5,1.110381,1.110381,1.110381,1.110381,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.110673,1.111526,1.110381,1.110381,1.110673,1.111526,1.110391,1.110392,1.110381,1.110381,1.110391,1.110392,1.110851,1.110521,1.110381,1.110381,1.110851,1.110521,1.110381,1.110381,1.110381,1.110381,1.110381,1.110381,,,,,,,1.110673,1.111526,1.110391,1.110392,1.110851,1.110521,1.110381,1.110381,1.110381,1.110381,0.41648,0.416736,0.416396,0.416396,0.416534,0.416435,0.416393,0.416393,0.21745,0.21745,24.993427,24.974237,24.999768,24.999745,24.989412,24.996836,25,25,25,25,,,,,,,,,,,2236,2236,1.110381,1.110381,1.110381,1.110381,1.110381,1.110381,1.110381,1.110381,0.416393,0.416393,25,25,, +19941,0,0.054772,1,1,0,2,6,GRV,5,8,Marr,Rd,4103020,0,0.055,0,1.173694,5.55,5,0.131454,0.131454,0.131454,0.131454,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.131488,0.131589,0.131454,0.131454,0.131488,0.131589,0.131455,0.131455,0.131454,0.131454,0.131455,0.131455,0.131509,0.13147,0.131454,0.131454,0.131509,0.13147,0.131454,0.131454,0.131454,0.131454,0.131454,0.131454,,,,,,,0.131488,0.131589,0.131455,0.131455,0.131509,0.13147,0.131454,0.131454,0.131454,0.131454,0.049306,0.049336,0.049295,0.049296,0.049312,0.0493,0.049295,0.049295,0.025743,0.025743,24.993427,24.974237,24.999768,24.999745,24.989412,24.996836,25,25,25,25,,,,,,,,,,,2236,2236,0.131454,0.131454,0.131454,0.131454,0.131454,0.131454,0.131454,0.131454,0.049295,0.049295,25,25,, +7112,0,0.039845,1,1,0,2,6,GRV,5,8,Crandall,Rd,933206,1.549,1.589,0,0.853822,5.55,5,0.095628,0.095628,0.095628,0.095628,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.095634,0.095677,0.095628,0.095628,0.095634,0.095677,0.095628,0.095628,0.095628,0.095628,0.095628,0.095628,0.095639,0.09563,0.095628,0.095628,0.095639,0.09563,0.095628,0.095628,0.095628,0.095628,0.095628,0.095628,,,,,,,0.095634,0.095677,0.095628,0.095628,0.095639,0.09563,0.095628,0.095628,0.095628,0.095628,0.035862,0.035875,0.035861,0.035861,0.035864,0.035861,0.035861,0.035861,0.018727,0.018727,24.998332,24.987115,24.999971,24.999952,24.997025,24.999398,25,25,25,25,,,,,,,,,,,2236,2236,0.095628,0.095628,0.095628,0.095628,0.095628,0.095628,0.095628,0.095628,0.035861,0.035861,25,25,, +7928,0,1.004237,1,1,0,2,6,GRV,5,8,Antcliff,Rd,940003,0,1.004,0,21.519358,5.55,5,2.410168,2.410168,2.410168,2.410168,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.410197,2.466403,2.410168,2.410168,2.410197,2.466403,2.410253,2.410344,2.410168,2.410168,2.410253,2.410344,2.436475,2.410886,2.410168,2.410168,2.436475,2.410886,2.410168,2.410168,2.410168,2.410168,2.410168,2.410168,,,,,,,2.410197,2.466403,2.410253,2.410344,2.436475,2.410886,2.410168,2.410168,2.410168,2.410168,0.903822,0.920684,0.903839,0.903866,0.911705,0.904028,0.903813,0.903813,0.471991,0.471991,24.999695,24.429986,24.999114,24.998172,24.730072,24.992558,25,25,25,25,,,,,,,,,,,2236,2236,2.410168,2.410168,2.410168,2.410168,2.410168,2.410168,2.410168,2.410168,0.903813,0.903813,25,25,, +8089,0,0.994515,1,1,0,2,6,GRV,5,8,Chase Lake,Rd,943607,6.864,7.858,0,21.311034,5.55,5,2.386836,2.386836,2.386836,2.386836,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,,,,,,,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,0.895063,0.895064,0.895063,0.895063,0.895064,0.895063,0.895063,0.895063,0.467422,0.467422,24.999999,24.999996,24.999999,25,24.999998,24.999999,25,25,25,25,,,,,,,,,,,2236,2236,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,2.386836,0.895063,0.895063,25,25,, +7106,0,0.466036,1,1,0,2,5,GRV,5,8,Burkhart,Rd,933208,5.852,6.318,0,9.986484,5.55,5,1.398108,1.398108,1.398108,1.398108,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.398117,1.415328,1.398108,1.398108,1.398117,1.415328,1.39815,1.398151,1.398108,1.398108,1.39815,1.398151,1.403312,1.398213,1.398108,1.398108,1.403312,1.398213,1.398108,1.398108,1.398108,1.398108,1.398108,1.398108,,,,,,,1.398117,1.415328,1.39815,1.398151,1.403312,1.398213,1.398108,1.398108,1.398108,1.398108,0.503322,0.508485,0.503331,0.503332,0.50488,0.50335,0.503319,0.503319,0.26098,0.26098,19.99987,19.756664,19.999398,19.999376,19.925827,19.998499,20,20,20,20,,,,,,,,,,,2236,2236,1.398108,1.398108,1.398108,1.398108,1.398108,1.398108,1.398108,1.398108,0.503319,0.503319,20,20,, +8108,0,0.218653,1,1,0,2,5,GRV,5,8,Chase Lake,Rd,939803,0.276,0.495,0,4.685417,5.55,5,0.655958,0.655958,0.655958,0.655958,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.655963,0.664038,0.655958,0.655958,0.655963,0.664038,0.655978,0.655979,0.655958,0.655958,0.655978,0.655979,0.6584,0.656008,0.655958,0.655958,0.6584,0.656008,0.655958,0.655958,0.655958,0.655958,0.655958,0.655958,,,,,,,0.655963,0.664038,0.655978,0.655979,0.6584,0.656008,0.655958,0.655958,0.655958,0.655958,0.236146,0.238569,0.236151,0.236151,0.236878,0.23616,0.236145,0.236145,0.122446,0.122446,19.99987,19.756664,19.999398,19.999376,19.925827,19.998499,20,20,20,20,,,,,,,,,,,2236,2236,0.655958,0.655958,0.655958,0.655958,0.655958,0.655958,0.655958,0.655958,0.236145,0.236145,20,20,, +19944,0,0.050198,1,1,0,2,5,GRV,5,8,Burkhart/Chase Lake Cutoff,,4103009,0,0.05,0,1.075669,5.55,5,0.150594,0.150594,0.150594,0.150594,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.150595,0.152448,0.150594,0.150594,0.150595,0.152448,0.150598,0.150598,0.150594,0.150594,0.150598,0.150598,0.151154,0.150605,0.150594,0.150594,0.151154,0.150605,0.150594,0.150594,0.150594,0.150594,0.150594,0.150594,,,,,,,0.150595,0.152448,0.150598,0.150598,0.151154,0.150605,0.150594,0.150594,0.150594,0.150594,0.054214,0.05477,0.054215,0.054215,0.054382,0.054217,0.054214,0.054214,0.028111,0.028111,19.99987,19.756664,19.999398,19.999376,19.925827,19.998499,20,20,20,20,,,,,,,,,,,2236,2236,0.150594,0.150594,0.150594,0.150594,0.150594,0.150594,0.150594,0.150594,0.054214,0.054214,20,20,, +7983,0,1.414842,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,0.049,1.464,0,30.318048,5.55,5,3.395621,3.395621,3.395621,3.395621,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.395848,3.397372,3.395621,3.395621,3.395848,3.397372,3.395625,3.395628,3.395621,3.395621,3.395625,3.395628,3.396026,3.395703,3.395621,3.395621,3.396026,3.395703,3.395621,3.395621,3.395621,3.395621,3.395621,3.395621,,,,,,,3.395848,3.397372,3.395625,3.395628,3.396026,3.395703,3.395621,3.395621,3.395621,3.395621,1.273426,1.273883,1.273359,1.27336,1.273479,1.273383,1.273358,1.273358,0.664976,0.664976,24.998332,24.987115,24.999971,24.999952,24.997025,24.999398,25,25,25,25,,,,,,,,,,,2236,2236,3.395621,3.395621,3.395621,3.395621,3.395621,3.395621,3.395621,3.395621,1.273358,1.273358,25,25,, +7094,0,0.508333,1,1,0,2,3,,3,8,Highland,Rd,933209,3.628,4.136,0,10.892847,5,5,0.871428,0.871428,0.871428,0.871428,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.097899,1.677012,0.871428,0.871428,1.097899,1.677012,1.066331,1.080897,0.871428,0.871428,1.066331,1.080897,1.65513,1.312623,0.871428,0.871428,1.65513,1.312623,0.871428,0.871428,0.871428,0.871428,0.871428,0.871428,,,,,,,1.097899,1.677012,1.066331,1.080897,1.65513,1.312623,0.871428,0.871428,0.871428,0.871428,0.42087,0.594604,0.411399,0.415769,0.588039,0.485287,0.352928,0.352928,0.186631,0.186631,27.780294,18.187087,28.602717,28.217279,18.427542,23.235892,35,35,35,35,,,,,,,,,,,3784,3784,0.871428,0.871428,0.871428,0.871428,0.871428,0.871428,0.871428,0.871428,0.352928,0.352928,35,35,, +7165,0,0.425339,2,2,1,2,3,,3,8,Grand River,Rd,932910,12.771,13.197,0,9.114406,5,5,0.729152,0.729152,0.729152,0.729152,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.767883,0.781921,0.729152,0.729152,0.767883,0.781921,0.743122,0.740629,0.729152,0.729152,0.743122,0.740629,0.834633,0.807541,0.729152,0.729152,0.834633,0.807541,0.729152,0.729152,0.729152,0.729152,0.729152,0.729152,,,,,,,0.767883,0.781921,0.743122,0.740629,0.834633,0.807541,0.729152,0.729152,0.729152,0.729152,0.306926,0.311137,0.299498,0.29875,0.326951,0.318823,0.295307,0.295307,0.15616,0.15616,33.234668,32.638015,34.342048,34.457629,30.576706,31.602528,35,35,35,35,,,,,,,,,,,7946,7946,0.729152,0.729152,0.729152,0.729152,0.729152,0.729152,0.729152,0.729152,0.295307,0.295307,35,35,, +7941,0,0.452037,1,1,0,2,5,,3,8,Sibley,St,934805,0.798,1.25,0,9.686505,8,4.5,1.084889,1.084889,1.084889,1.084889,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,,,,,,,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,0.406833,0.406833,0.406833,0.406833,0.406833,0.406833,0.406833,0.406833,0.212457,0.212457,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,1.084889,0.406833,0.406833,25,25,, +7948,0,0.613391,1,1,0,2,5,,3,8,Clinton,St,934804,0.471,1.084,0,13.144091,8,4.5,1.472138,1.472138,1.472138,1.472138,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,,,,,,,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,0.552052,0.552052,0.552052,0.552052,0.552052,0.552052,0.552052,0.552052,0.288294,0.288294,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,1.472138,0.552052,0.552052,25,25,, +37048,0,0.133958,1,1,0,2,4,,3,8,Michigan,Ave,4104401,0.423,0.557,0,2.870537,6,4.5,0.243561,0.243561,0.243561,0.243561,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.352162,0.416723,0.243561,0.243561,0.352162,0.416723,0.368315,0.366913,0.243561,0.243561,0.368315,0.366913,0.434473,0.388814,0.243561,0.243561,0.434473,0.388814,0.243561,0.243561,0.243561,0.243561,0.243561,0.243561,,,,,,,0.352162,0.416723,0.368315,0.366913,0.434473,0.388814,0.243561,0.243561,0.243561,0.243561,0.129761,0.14913,0.134607,0.134186,0.154454,0.140757,0.097181,0.097181,0.05127,0.05127,22.823289,19.287384,21.822391,21.905741,18.499421,20.671848,33,33,33,33,,,,,,,,,,,2580,2580,0.243561,0.243561,0.243561,0.243561,0.243561,0.243561,0.243561,0.243561,0.097181,0.097181,33,33,, +8161,0,0.183558,1,1,0,2,5,,3,8,North,St,939001,0.101,0.285,0,3.933394,8,4.5,0.44054,0.44054,0.44054,0.44054,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,0.440542,0.44054,0.44054,0.44054,0.440542,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,,,,,,,0.44054,0.44054,0.44054,0.44054,0.44054,0.440542,0.44054,0.44054,0.44054,0.44054,0.165203,0.165203,0.165203,0.165203,0.165203,0.165203,0.165203,0.165203,0.086272,0.086272,25,25,25,25,24.999999,24.999891,25,25,25,25,,,,,,,,,,,2408,2408,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,0.44054,0.165203,0.165203,25,25,, +24738,0,2.336584,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,50.069659,0.15,4,9.346336,9.346336,9.346336,9.346336,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,,,,,,,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,3.224486,3.224486,3.224486,3.224486,3.224486,3.224486,3.224486,3.224486,1.658975,1.658975,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,9.346336,3.224486,3.224486,15,15,, +24857,0,0.396449,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,8.495329,0.15,4,2.378692,2.378692,2.378692,2.378692,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,,,,,,,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,0.784968,0.784968,0.784968,0.784968,0.784968,0.784968,0.784968,0.784968,0.400413,0.400413,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,2.378692,0.784968,0.784968,10,10,, +26522,0,0.727819,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,15.596122,0.15,4,4.366914,4.366914,4.366914,4.366914,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,,,,,,,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,1.441082,1.441082,1.441082,1.441082,1.441082,1.441082,1.441082,1.441082,0.735097,0.735097,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,4.366914,1.441082,1.441082,10,10,, +7065,0,0.283289,1,1,0,2,5,,3,8,Walnut,St,933407,0,0.283,0,6.070484,8,4.5,0.679894,0.679894,0.679894,0.679894,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.679941,0.679894,0.679894,0.679894,0.679941,0.679894,0.679894,0.679894,0.679894,0.679894,0.679894,0.679894,0.679896,0.679899,0.679894,0.679894,0.679896,0.679899,0.679894,0.679894,0.679894,0.679894,0.679894,0.679894,,,,,,,0.679941,0.679894,0.679894,0.679894,0.679896,0.679899,0.679894,0.679894,0.679894,0.679894,0.254974,0.25496,0.25496,0.25496,0.254961,0.254962,0.25496,0.25496,0.133146,0.133146,24.99827,24.999999,25,25,24.999945,24.999827,25,25,25,25,,,,,,,,,,,2408,2408,0.679894,0.679894,0.679894,0.679894,0.679894,0.679894,0.679894,0.679894,0.25496,0.25496,25,25,, +7068,0,0.328834,1,1,0,2,5,,3,8,Byron,Rd,933401,0.059,0.387,0,7.046436,8,4.5,0.789201,0.789201,0.789201,0.789201,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.930377,0.908111,0.789201,0.789201,0.930377,0.908111,0.827713,0.833563,0.789201,0.789201,0.827713,0.833563,0.927082,0.948386,0.789201,0.789201,0.927082,0.948386,0.789201,0.789201,0.789201,0.789201,0.789201,0.789201,,,,,,,0.930377,0.908111,0.827713,0.833563,0.927082,0.948386,0.789201,0.789201,0.789201,0.789201,0.338303,0.331623,0.307504,0.309259,0.337315,0.343706,0.29595,0.29595,0.154552,0.154552,21.20648,21.726452,23.836785,23.669514,21.281846,20.803779,25,25,25,25,,,,,,,,,,,2408,2408,0.789201,0.789201,0.789201,0.789201,0.789201,0.789201,0.789201,0.789201,0.29595,0.29595,25,25,, +7096,1,0.492738,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,2.789,3.282,0,10.558674,5,5,0.739107,,0.739107,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.749409,,0.739107,,0.749409,,0.754132,,0.739107,,0.754132,,0.805959,,0.739107,,0.805959,,0.739107,,0.739107,,0.739107,,,,,,,,0.749409,,0.754132,,0.805959,,0.739107,,0.739107,,0.313516,,0.314933,,0.330481,,0.310425,,0.165067,,39.450125,,39.203052,,36.682112,,40,,40,,,,,,,,,,,,6880,,0.739107,,0.739107,,0.739107,,0.739107,,0.310425,,40,,, +7169,0,0.230283,1,1,1,2,3,,3,8,Grand River,Ave,932910,12.121,12.351,0,4.93464,5,5,0.394771,0.394771,0.394771,0.394771,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.412392,0.538344,0.394771,0.394771,0.412392,0.538344,0.412666,0.416067,0.394771,0.394771,0.412666,0.416067,0.583098,0.481922,0.394771,0.394771,0.583098,0.481922,0.394771,0.394771,0.394771,0.394771,0.394771,0.394771,,,,,,,0.412392,0.538344,0.412666,0.416067,0.583098,0.481922,0.394771,0.394771,0.394771,0.394771,0.165168,0.202954,0.165251,0.166271,0.21638,0.186028,0.159882,0.159882,0.084547,0.084547,33.504548,25.665744,33.482253,33.208562,23.695849,28.670594,35,35,35,35,,,,,,,,,,,4162,4162,0.394771,0.394771,0.394771,0.394771,0.394771,0.394771,0.394771,0.394771,0.159882,0.159882,35,35,, +7935,0,0.10134,1,1,1,2,4,,3,8,Mason,Rd,4104400,0.527,0.628,0,2.171569,6,4.5,0.184254,0.184254,0.184254,0.184254,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.204087,0.235658,0.184254,0.184254,0.204087,0.235658,0.191354,0.189392,0.184254,0.184254,0.191354,0.189392,0.246604,0.234917,0.184254,0.184254,0.246604,0.234917,0.184254,0.184254,0.184254,0.184254,0.184254,0.184254,,,,,,,0.204087,0.235658,0.191354,0.189392,0.246604,0.234917,0.184254,0.184254,0.184254,0.184254,0.079467,0.088939,0.075647,0.075059,0.092222,0.088716,0.073517,0.073517,0.038786,0.038786,29.793074,25.801761,31.775642,32.104804,24.65652,25.883205,33,33,33,33,,,,,,,,,,,2838,2838,0.184254,0.184254,0.184254,0.184254,0.184254,0.184254,0.184254,0.184254,0.073517,0.073517,33,33,, +7947,0,0.345866,1,1,0,2,5,,3,8,Sibley,St,934805,0.161,0.507,0,7.411405,8,4.5,0.830077,0.830077,0.830077,0.830077,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,,,,,,,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.311279,0.311279,0.311279,0.311279,0.311279,0.311279,0.311279,0.311279,0.162557,0.162557,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.830077,0.311279,0.311279,25,25,, +7952,0,0.221943,1,1,0,2,5,,3,8,Clinton,St,934804,0,0.222,0,4.75592,8,4.5,0.532663,0.532663,0.532663,0.532663,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,,,,,,,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.199749,0.199749,0.199749,0.199749,0.199749,0.199749,0.199749,0.199749,0.104313,0.104313,25,25,25,25,25,24.999993,25,25,25,25,,,,,,,,,,,2408,2408,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.532663,0.199749,0.199749,25,25,, +37050,0,0.06448,1,1,1,2,4,,3,8,Michigan,Ave,4104401,0,0.065,0,1.381707,6,4.5,0.117236,0.117236,0.117236,0.117236,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.169028,0.169985,0.117236,0.117236,0.169028,0.169985,0.158201,0.158905,0.117236,0.117236,0.158201,0.158905,0.177385,0.164588,0.117236,0.117236,0.177385,0.164588,0.117236,0.117236,0.117236,0.117236,0.117236,0.117236,,,,,,,0.169028,0.169985,0.158201,0.158905,0.177385,0.164588,0.117236,0.117236,0.117236,0.117236,0.062315,0.062602,0.059067,0.059278,0.064822,0.060983,0.046777,0.046777,0.024678,0.024678,22.888423,22.759502,24.454874,24.346493,21.81002,23.505823,33,33,33,33,,,,,,,,,,,2838,2838,0.117236,0.117236,0.117236,0.117236,0.117236,0.117236,0.117236,0.117236,0.046777,0.046777,33,33,, +24806,0,0.580212,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,12.433122,0.15,4,3.481274,3.481274,3.481274,3.481274,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,,,,,,,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,1.14882,1.14882,1.14882,1.14882,1.14882,1.148821,1.14882,1.14882,0.586014,0.586014,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,3.481274,1.14882,1.14882,10,10,, +24842,0,0.666527,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,14.282727,0.15,4,3.999164,3.999164,3.999164,3.999164,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,,,,,,,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,1.319724,1.319724,1.319724,1.319724,1.319724,1.319724,1.319724,1.319724,0.673193,0.673193,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,3.999164,1.319724,1.319724,10,10,, +24846,0,0.387454,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,8.302577,0.15,4,2.324722,2.324722,2.324722,2.324722,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,,,,,,,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,0.767158,0.767158,0.767158,0.767158,0.767158,0.767158,0.767158,0.767158,0.391328,0.391328,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,2.324722,0.767158,0.767158,10,10,, +24853,0,0.763291,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,16.356227,0.15,4,4.579744,4.579744,4.579744,4.579744,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,,,,,,,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,1.511315,1.511315,1.511315,1.511315,1.511315,1.511315,1.511315,1.511315,0.770923,0.770923,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,4.579744,1.511315,1.511315,10,10,, +6994,0,0.37435,1,1,1,2,4,,3,8,McPherson Park,Dr,934203,0,0.374,0,8.021792,6,4.5,0.680637,0.680637,0.680637,0.680637,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.003156,0.699879,0.680637,0.680637,1.003156,0.699879,0.697909,0.696606,0.680637,0.680637,0.697909,0.696606,0.744966,0.906099,0.680637,0.680637,0.744966,0.906099,0.680637,0.680637,0.680637,0.680637,0.680637,0.680637,,,,,,,1.003156,0.699879,0.697909,0.696606,0.744966,0.906099,0.680637,0.680637,0.680637,0.680637,0.36833,0.277347,0.276756,0.276365,0.290873,0.339213,0.271574,0.271574,0.143274,0.143274,22.390346,32.092697,32.183309,32.243494,30.150387,24.788715,33,33,33,33,,,,,,,,,,,2838,2838,0.680637,0.680637,0.680637,0.680637,0.680637,0.680637,0.680637,0.680637,0.271574,0.271574,33,33,, +7924,0,0.336322,1,1,0,2,4,,3,8,Mason,Rd,4104400,0.966,1.303,0,7.206898,6,4.5,0.611494,0.611494,0.611494,0.611494,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.612936,0.938849,0.611494,0.611494,0.612936,0.938849,0.618848,0.61815,0.611494,0.611494,0.618848,0.61815,0.874792,0.633623,0.611494,0.611494,0.874792,0.633623,0.611494,0.611494,0.611494,0.611494,0.611494,0.611494,,,,,,,0.612936,0.938849,0.618848,0.61815,0.874792,0.633623,0.611494,0.611494,0.611494,0.611494,0.244419,0.342193,0.246192,0.245983,0.322976,0.250625,0.243986,0.243986,0.12872,0.12872,32.922388,21.493683,32.607872,32.644682,23.067553,31.847517,33,33,33,33,,,,,,,,,,,2580,2580,0.611494,0.611494,0.611494,0.611494,0.611494,0.611494,0.611494,0.611494,0.243986,0.243986,33,33,, +24851,0,0.475796,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,10.195636,0.15,4,2.854778,2.854778,2.854778,2.854778,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.854778,2.854779,2.854778,2.854778,2.854778,2.854779,2.854778,2.854778,2.854778,2.854778,2.854778,2.854778,2.854779,2.854778,2.854778,2.854778,2.854779,2.854778,2.854778,2.854778,2.854778,2.854778,2.854778,2.854778,,,,,,,2.854778,2.854779,2.854778,2.854778,2.854779,2.854778,2.854778,2.854778,2.854778,2.854778,0.942077,0.942077,0.942077,0.942077,0.942077,0.942077,0.942077,0.942077,0.480554,0.480554,10,9.999998,10,9.999999,9.999998,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.854778,2.854778,2.854778,2.854778,2.854778,2.854778,2.854778,2.854778,0.942077,0.942077,10,10,, +24854,0,0.255465,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.474241,0.15,4,1.532788,1.532788,1.532788,1.532788,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,,,,,,,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,0.50582,0.50582,0.50582,0.50582,0.50582,0.50582,0.50582,0.50582,0.258019,0.258019,10,9.999997,10,10,9.999998,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,1.532788,0.50582,0.50582,10,10,, +7925,0,0.170282,1,1,1,2,4,,3,8,Mason,Rd,4104400,0.796,0.966,0,3.648895,6,4.5,0.309603,0.309603,0.309603,0.309603,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.364499,0.451534,0.309603,0.309603,0.364499,0.451534,0.33108,0.328564,0.309603,0.309603,0.33108,0.328564,0.502828,0.406024,0.309603,0.309603,0.502828,0.406024,0.309603,0.309603,0.309603,0.309603,0.309603,0.309603,,,,,,,0.364499,0.451534,0.33108,0.328564,0.502828,0.406024,0.309603,0.309603,0.309603,0.309603,0.14,0.166111,0.129975,0.12922,0.181499,0.152458,0.123532,0.123532,0.065171,0.065171,28.030006,22.627113,30.859346,31.095666,20.318879,25.163289,33,33,33,33,,,,,,,,,,,2838,2838,0.309603,0.309603,0.309603,0.309603,0.309603,0.309603,0.309603,0.309603,0.123532,0.123532,33,33,, +7934,0,0.168493,1,1,1,2,4,,3,8,Mason,Rd,4104400,0.628,0.796,0,3.610568,6,4.5,0.306351,0.306351,0.306351,0.306351,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.344265,0.452011,0.306351,0.306351,0.344265,0.452011,0.318511,0.315375,0.306351,0.306351,0.318511,0.315375,0.448265,0.415202,0.306351,0.306351,0.448265,0.415202,0.306351,0.306351,0.306351,0.306351,0.306351,0.306351,,,,,,,0.344265,0.452011,0.318511,0.315375,0.448265,0.415202,0.306351,0.306351,0.306351,0.306351,0.133608,0.165932,0.125882,0.124941,0.164808,0.154889,0.122234,0.122234,0.064487,0.064487,29.365718,22.365797,31.7402,32.055822,22.552717,24.348606,33,33,33,33,,,,,,,,,,,2838,2838,0.306351,0.306351,0.306351,0.306351,0.306351,0.306351,0.306351,0.306351,0.122234,0.122234,33,33,, +7172,0,0.156661,1,1,1,2,3,,3,8,Grand River,Ave,932910,11.868,12.025,0,3.357014,5,5,0.268561,0.268561,0.268561,0.268561,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.268988,0.269386,0.268561,0.268561,0.268988,0.269386,0.268581,0.268567,0.268561,0.268561,0.268581,0.268567,0.26977,0.269091,0.268561,0.268561,0.26977,0.269091,0.268561,0.268561,0.268561,0.268561,0.268561,0.268561,,,,,,,0.268988,0.269386,0.268581,0.268567,0.26977,0.269091,0.268561,0.268561,0.268561,0.268561,0.108895,0.109015,0.108773,0.108769,0.10913,0.108926,0.108767,0.108767,0.057517,0.057517,34.944495,34.892831,34.997462,34.999186,34.843136,34.931039,35,35,35,35,,,,,,,,,,,4162,4162,0.268561,0.268561,0.268561,0.268561,0.268561,0.268561,0.268561,0.268561,0.108767,0.108767,35,35,, +7069,0,0.058684,1,1,0,2,5,,3,8,Byron,Rd,933401,0,0.059,0,1.257525,8,4.5,0.140843,0.140843,0.140843,0.140843,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.164917,0.162064,0.140843,0.140843,0.164917,0.162064,0.147716,0.14876,0.140843,0.140843,0.147716,0.14876,0.160199,0.169091,0.140843,0.140843,0.160199,0.169091,0.140843,0.140843,0.140843,0.140843,0.140843,0.140843,,,,,,,0.164917,0.162064,0.147716,0.14876,0.160199,0.169091,0.140843,0.140843,0.140843,0.140843,0.060038,0.059182,0.054878,0.055191,0.058623,0.06129,0.052816,0.052816,0.027582,0.027582,21.350594,21.726452,23.836785,23.669514,21.979315,20.823579,25,25,25,25,,,,,,,,,,,2408,2408,0.140843,0.140843,0.140843,0.140843,0.140843,0.140843,0.140843,0.140843,0.052816,0.052816,25,25,, +7070,0,0.142063,1,1,0,2,5,,3,8,George,St,933310,0.252,0.394,0,3.0442,8,4.5,0.34095,0.34095,0.34095,0.34095,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,,,,,,,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.127856,0.127856,0.127856,0.127856,0.127856,0.127856,0.127856,0.127856,0.066769,0.066769,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.34095,0.127856,0.127856,25,25,, +7170,0,0.029661,1,1,1,2,3,,3,8,Grand River,Ave,932910,12.091,12.121,0,0.635594,5,5,0.050848,0.050848,0.050848,0.050848,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.051541,0.059039,0.050848,0.050848,0.051541,0.059039,0.051198,0.051349,0.050848,0.050848,0.051198,0.051349,0.059844,0.055228,0.050848,0.050848,0.059844,0.055228,0.050848,0.050848,0.050848,0.050848,0.050848,0.050848,,,,,,,0.051541,0.059039,0.051198,0.051349,0.059844,0.055228,0.050848,0.050848,0.050848,0.050848,0.020801,0.023051,0.020699,0.020744,0.023292,0.021907,0.020593,0.020593,0.01089,0.01089,34.529218,30.143946,34.760092,34.658512,29.738428,32.224222,35,35,35,35,,,,,,,,,,,4162,4162,0.050848,0.050848,0.050848,0.050848,0.050848,0.050848,0.050848,0.050848,0.020593,0.020593,35,35,, +7171,0,0.066483,1,1,1,2,3,,3,8,Grand River,Ave,932910,12.025,12.091,0,1.424641,5,5,0.113971,0.113971,0.113971,0.113971,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.115525,0.132332,0.113971,0.113971,0.115525,0.132332,0.114758,0.115094,0.113971,0.113971,0.114758,0.115094,0.134136,0.123789,0.113971,0.113971,0.134136,0.123789,0.113971,0.113971,0.113971,0.113971,0.113971,0.113971,,,,,,,0.115525,0.132332,0.114758,0.115094,0.134136,0.123789,0.113971,0.113971,0.113971,0.113971,0.046625,0.051666,0.046394,0.046495,0.052208,0.049104,0.046158,0.046158,0.024409,0.024409,34.529218,30.143946,34.760092,34.658512,29.738428,32.224222,35,35,35,35,,,,,,,,,,,4162,4162,0.113971,0.113971,0.113971,0.113971,0.113971,0.113971,0.113971,0.113971,0.046158,0.046158,35,35,, +24849,0,0.555026,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,11.893418,0.15,4,3.330157,3.330157,3.330157,3.330157,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.330157,3.330158,3.330157,3.330157,3.330157,3.330158,3.330157,3.330157,3.330157,3.330157,3.330157,3.330157,3.330158,3.330157,3.330157,3.330157,3.330158,3.330157,3.330157,3.330157,3.330157,3.330157,3.330157,3.330157,,,,,,,3.330157,3.330158,3.330157,3.330157,3.330158,3.330157,3.330157,3.330157,3.330157,3.330157,1.098952,1.098952,1.098952,1.098952,1.098952,1.098952,1.098952,1.098952,0.560576,0.560576,10,9.999998,10,10,9.999998,10,10,10,10,10,,,,,,,,,,,34400,34400,3.330157,3.330157,3.330157,3.330157,3.330157,3.330157,3.330157,3.330157,1.098952,1.098952,10,10,, +7067,0,0.486307,1,1,1,2,5,,3,8,Byron,Rd,933401,0.387,0.874,0,10.420855,8,4.5,1.167136,1.167136,1.167136,1.167136,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,1.167136,1.171032,1.167136,1.167136,1.167136,1.171032,1.167136,1.167137,1.167136,1.167136,1.167136,1.167137,1.167726,1.167136,1.167136,1.167136,1.167726,1.167136,1.167136,1.167136,1.167136,1.167136,1.167136,1.167136,,,,,,,1.167136,1.171032,1.167136,1.167137,1.167726,1.167136,1.167136,1.167136,1.167136,1.167136,0.437676,0.438845,0.437676,0.437676,0.437853,0.437676,0.437676,0.437676,0.228564,0.228564,24.999998,24.916816,24.999994,24.999982,24.987371,24.999989,25,25,25,25,,,,,,,,,,,2649,2649,1.167136,1.167136,1.167136,1.167136,1.167136,1.167136,1.167136,1.167136,0.437676,0.437676,25,25,, +7064,0,0.216696,1,1,0,2,5,,3,8,Walnut,St,933407,0.283,0.5,0,4.643487,8,4.5,0.520071,0.520071,0.520071,0.520071,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.520107,0.520071,0.520071,0.520071,0.520107,0.520071,0.520071,0.520071,0.520071,0.520071,0.520071,0.520071,0.520072,0.520074,0.520071,0.520071,0.520072,0.520074,0.520071,0.520071,0.520071,0.520071,0.520071,0.520071,,,,,,,0.520107,0.520071,0.520071,0.520071,0.520072,0.520074,0.520071,0.520071,0.520071,0.520071,0.195037,0.195026,0.195026,0.195026,0.195027,0.195028,0.195026,0.195026,0.101847,0.101847,24.99827,24.999999,25,25,24.999945,24.999827,25,25,25,25,,,,,,,,,,,2408,2408,0.520071,0.520071,0.520071,0.520071,0.520071,0.520071,0.520071,0.520071,0.195026,0.195026,25,25,, +7166,0,0.232628,2,2,1,2,3,,3,8,Grand River,Rd,932910,12.539,12.771,0,4.984884,5,5,0.398791,0.398791,0.398791,0.398791,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.428864,0.423926,0.398791,0.398791,0.428864,0.423926,0.405809,0.404647,0.398791,0.398791,0.405809,0.404647,0.445567,0.441222,0.398791,0.398791,0.445567,0.441222,0.398791,0.398791,0.398791,0.398791,0.398791,0.398791,,,,,,,0.428864,0.423926,0.405809,0.404647,0.445567,0.441222,0.398791,0.398791,0.398791,0.398791,0.170532,0.169051,0.163616,0.163267,0.175543,0.17424,0.16151,0.16151,0.085408,0.085408,32.545699,32.924784,34.394663,34.493474,31.325624,31.634139,35,35,35,35,,,,,,,,,,,7946,7946,0.398791,0.398791,0.398791,0.398791,0.398791,0.398791,0.398791,0.398791,0.16151,0.16151,35,35,, +7937,0,0.133833,1,1,0,2,5,,3,8,Livingston,Ave,934808,0.25,0.384,0,2.867841,8,4.5,0.321198,0.321198,0.321198,0.321198,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,,,,,,,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.120449,0.120449,0.120449,0.120449,0.120449,0.120449,0.120449,0.120449,0.062901,0.062901,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.321198,0.120449,0.120449,25,25,, +7942,0,0.228887,1,1,0,2,5,,3,8,Sibley,St,934805,0.569,0.798,0,4.90473,8,4.5,0.54933,0.54933,0.54933,0.54933,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,,,,,,,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.205999,0.205999,0.205999,0.205999,0.205999,0.205999,0.205999,0.205999,0.107577,0.107577,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.54933,0.205999,0.205999,25,25,, +7944,0,0.062309,1,1,0,2,5,,3,8,Sibley,St,934805,0.507,0.569,0,1.335185,8,4.5,0.149541,0.149541,0.149541,0.149541,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,,,,,,,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.056078,0.056078,0.056078,0.056078,0.056078,0.056078,0.056078,0.056078,0.029285,0.029285,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.149541,0.056078,0.056078,25,25,, +8023,0,0.066569,1,1,1,2,4,,3,8,Michigan,Ave,4104400,0,0.067,0,1.426469,6,4.5,0.121034,0.121034,0.121034,0.121034,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.125133,0.139282,0.121034,0.121034,0.125133,0.139282,0.123314,0.124792,0.121034,0.121034,0.123314,0.124792,0.131909,0.140988,0.121034,0.121034,0.131909,0.140988,0.121034,0.121034,0.121034,0.121034,0.121034,0.121034,,,,,,,0.125133,0.139282,0.123314,0.124792,0.131909,0.140988,0.121034,0.121034,0.121034,0.121034,0.049522,0.053767,0.048977,0.04942,0.051555,0.054279,0.048292,0.048292,0.025478,0.025478,31.918993,28.676424,32.389659,32.0062,30.279274,28.32938,33,33,33,33,,,,,,,,,,,2838,2838,0.121034,0.121034,0.121034,0.121034,0.121034,0.121034,0.121034,0.121034,0.048292,0.048292,33,33,, +37051,0,1.425289,1,1,0,2,7,,5,8,Norton,Rd,4104404,0,1.425,0,30.541905,5.8,6,3.420693,3.420693,3.420693,3.420693,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,,,,,,,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,1.28276,1.28276,1.28276,1.28276,1.28276,1.28276,1.28276,1.28276,0.669886,0.669886,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,3.420693,1.28276,1.28276,25,25,, +8148,0,0.392965,1,1,0,2,5,,3,8,Roosevelt,St,939101,0,0.393,0,8.42068,8,4.5,0.943116,0.943116,0.943116,0.943116,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,0.94312,0.943116,0.943116,0.943116,0.94312,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,,,,,,,0.943116,0.943116,0.943116,0.943116,0.94312,0.943116,0.943116,0.943116,0.943116,0.943116,0.353669,0.353669,0.353669,0.353669,0.35367,0.353669,0.353669,0.353669,0.184694,0.184694,25,25,25,25,24.999891,24.999999,25,25,25,25,,,,,,,,,,,2408,2408,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,0.943116,0.353669,0.353669,25,25,, +24812,0,0.170702,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,3.657909,0.15,4,1.024214,1.024214,1.024214,1.024214,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.024214,1.024214,1.024214,1.024214,1.024214,1.024214,1.024214,1.024214,1.024214,1.024214,1.024214,1.024214,1.024215,1.024215,1.024214,1.024214,1.024215,1.024215,1.024214,1.024214,1.024214,1.024214,1.024214,1.024214,,,,,,,1.024214,1.024214,1.024214,1.024214,1.024215,1.024215,1.024214,1.024214,1.024214,1.024214,0.337991,0.337991,0.337991,0.337991,0.337991,0.337991,0.337991,0.337991,0.172409,0.172409,9.999999,9.999999,10,10,9.999998,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.024214,1.024214,1.024214,1.024214,1.024214,1.024214,1.024214,1.024214,0.337991,0.337991,10,10,, +7896,0,0.186345,1,1,0,2,5,,3,8,Marion,St,934902,0,0.186,0,3.993104,8,4.5,0.447228,0.447228,0.447228,0.447228,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.495993,0.477498,0.447228,0.447228,0.495993,0.477498,0.466411,0.462756,0.447228,0.447228,0.466411,0.462756,0.54599,0.555385,0.447228,0.447228,0.54599,0.555385,0.447228,0.447228,0.447228,0.447228,0.447228,0.447228,,,,,,,0.495993,0.477498,0.466411,0.462756,0.54599,0.555385,0.447228,0.447228,0.447228,0.447228,0.18234,0.176792,0.173465,0.172369,0.197339,0.200158,0.16771,0.16771,0.087582,0.087582,22.542026,23.415151,23.971764,24.161108,20.477816,20.131423,25,25,25,25,,,,,,,,,,,2408,2408,0.447228,0.447228,0.447228,0.447228,0.447228,0.447228,0.447228,0.447228,0.16771,0.16771,25,25,, +8022,0,0.460126,1,1,0,2,4,,3,8,Michigan,Ave,4104400,0.067,0.527,0,9.859833,6,4.5,0.836592,0.836592,0.836592,0.836592,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.880068,1.030139,0.836592,0.836592,0.880068,1.030139,0.860799,0.87648,0.836592,0.836592,0.860799,0.87648,0.951827,1.028181,0.836592,0.836592,0.951827,1.028181,0.836592,0.836592,0.836592,0.836592,0.836592,0.836592,,,,,,,0.880068,1.030139,0.860799,0.87648,0.951827,1.028181,0.836592,0.836592,0.836592,0.836592,0.346843,0.391864,0.341062,0.345767,0.368371,0.391277,0.3338,0.3338,0.176103,0.176103,31.369785,26.799823,32.071976,31.498181,29.004772,26.850845,33,33,33,33,,,,,,,,,,,2580,2580,0.836592,0.836592,0.836592,0.836592,0.836592,0.836592,0.836592,0.836592,0.3338,0.3338,33,33,, +8074,0,0.122701,1,1,0,2,5,,3,8,Dearborn,St,938708,0.168,0.291,0,2.629309,8,4.5,0.294483,0.294483,0.294483,0.294483,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,,,,,,,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.110431,0.110431,0.110431,0.110431,0.110431,0.110431,0.110431,0.110431,0.057669,0.057669,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.294483,0.110431,0.110431,25,25,, +7063,0,0.066063,1,1,0,2,5,,3,8,Walnut,St,933407,0.5,0.566,0,1.415626,8,4.5,0.15855,0.15855,0.15855,0.15855,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.158561,0.15855,0.15855,0.15855,0.158561,0.15855,0.15855,0.15855,0.15855,0.15855,0.15855,0.15855,0.15855,0.158551,0.15855,0.15855,0.15855,0.158551,0.15855,0.15855,0.15855,0.15855,0.15855,0.15855,,,,,,,0.158561,0.15855,0.15855,0.15855,0.15855,0.158551,0.15855,0.15855,0.15855,0.15855,0.05946,0.059456,0.059456,0.059456,0.059456,0.059457,0.059456,0.059456,0.031049,0.031049,24.99827,24.999999,25,25,24.999945,24.999827,25,25,25,25,,,,,,,,,,,2408,2408,0.15855,0.15855,0.15855,0.15855,0.15855,0.15855,0.15855,0.15855,0.059456,0.059456,25,25,, +7168,0,0.128122,2,2,1,2,3,,3,8,Grand River,Ave,932910,12.351,12.479,0,2.745477,5,5,0.219638,0.219638,0.219638,0.219638,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.220025,0.222789,0.219638,0.219638,0.220025,0.222789,0.220031,0.220105,0.219638,0.219638,0.220031,0.220105,0.223768,0.221549,0.219638,0.219638,0.223768,0.221549,0.219638,0.219638,0.219638,0.219638,0.219638,0.219638,,,,,,,0.220025,0.222789,0.220031,0.220105,0.223768,0.221549,0.219638,0.219638,0.219638,0.219638,0.089069,0.089899,0.089071,0.089094,0.090192,0.089527,0.088953,0.088953,0.047039,0.047039,34.938489,34.50502,34.937548,34.925704,34.354089,34.698102,35,35,35,35,,,,,,,,,,,7946,7946,0.219638,0.219638,0.219638,0.219638,0.219638,0.219638,0.219638,0.219638,0.088953,0.088953,35,35,, +7950,0,0.187537,1,1,0,2,5,,3,8,Clinton,St,934804,0.222,0.409,0,4.018646,8,4.5,0.450088,0.450088,0.450088,0.450088,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.460239,0.45014,0.450088,0.450088,0.460239,0.45014,0.450104,0.450092,0.450088,0.450088,0.450104,0.450092,0.454843,0.506107,0.450088,0.450088,0.454843,0.506107,0.450088,0.450088,0.450088,0.450088,0.450088,0.450088,,,,,,,0.460239,0.45014,0.450104,0.450092,0.454843,0.506107,0.450088,0.450088,0.450088,0.450088,0.171828,0.168799,0.168788,0.168784,0.17021,0.185589,0.168783,0.168783,0.088142,0.088142,24.448622,24.997133,24.999139,24.999825,24.73867,22.232882,25,25,25,25,,,,,,,,,,,2408,2408,0.450088,0.450088,0.450088,0.450088,0.450088,0.450088,0.450088,0.450088,0.168783,0.168783,25,25,, +7949,0,0.061752,1,1,0,2,5,,3,8,Clinton,St,934804,0.409,0.471,0,1.323267,8,4.5,0.148206,0.148206,0.148206,0.148206,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,,,,,,,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.055577,0.055577,0.055577,0.055577,0.055577,0.055577,0.055577,0.055577,0.029024,0.029024,25,25,25,25,25,24.999993,25,25,25,25,,,,,,,,,,,2408,2408,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.148206,0.055577,0.055577,25,25,, +37053,1,0.012364,1,0,0,2,5,,3,3,Taft,Rd,656608,0.4,0.413,0,0.264949,8,4.5,0.029674,,0.029674,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.05417,,0.029674,,0.05417,,0.033399,,0.029674,,0.033399,,0.051359,,0.029674,,0.051359,,0.029674,,0.029674,,0.029674,,,,,,,,0.05417,,0.033399,,0.051359,,0.029674,,0.029674,,0.018477,,0.012245,,0.017633,,0.011128,,0.005811,,13.694957,,22.212145,,14.444437,,25,,25,,,,,,,,,,,,2408,,0.029674,,0.029674,,0.029674,,0.029674,,0.011128,,25,,, +7062,0,0.066117,1,1,0,2,5,,3,8,Walnut,St,933407,0.566,0.632,0,1.416792,8,4.5,0.158681,0.158681,0.158681,0.158681,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.158695,0.162259,0.158681,0.158681,0.158695,0.162259,0.158682,0.158686,0.158681,0.158681,0.158682,0.158686,0.173919,0.160339,0.158681,0.158681,0.173919,0.160339,0.158681,0.158681,0.158681,0.158681,0.158681,0.158681,,,,,,,0.158695,0.162259,0.158682,0.158686,0.173919,0.160339,0.158681,0.158681,0.158681,0.158681,0.05951,0.060579,0.059506,0.059507,0.064077,0.060003,0.059505,0.059505,0.031075,0.031075,24.997741,24.448622,24.999825,24.999139,22.809594,24.741486,25,25,25,25,,,,,,,,,,,2408,2408,0.158681,0.158681,0.158681,0.158681,0.158681,0.158681,0.158681,0.158681,0.059505,0.059505,25,25,, +7167,0,0.059938,2,2,1,2,3,,3,8,Grand River,Ave,932910,12.479,12.539,0,1.284384,5,5,0.102751,0.102751,0.102751,0.102751,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.103791,0.104457,0.102751,0.102751,0.103791,0.104457,0.103035,0.103041,0.102751,0.102751,0.103035,0.103041,0.106986,0.107011,0.102751,0.102751,0.106986,0.107011,0.102751,0.102751,0.102751,0.102751,0.102751,0.102751,,,,,,,0.103791,0.104457,0.103035,0.103041,0.106986,0.107011,0.102751,0.102751,0.102751,0.102751,0.041926,0.042126,0.041699,0.041701,0.042885,0.042892,0.041614,0.041614,0.022006,0.022006,34.649208,34.428446,34.903392,34.901485,33.61447,33.606645,35,35,35,35,,,,,,,,,,,7946,7946,0.102751,0.102751,0.102751,0.102751,0.102751,0.102751,0.102751,0.102751,0.041614,0.041614,35,35,, +7061,0,0.231393,1,1,0,2,5,,3,8,Fowler,St,4104608,0.186,0.417,0,4.958432,8,4.5,0.555344,0.555344,0.555344,0.555344,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.583373,0.689637,0.555344,0.555344,0.583373,0.689637,0.59785,0.595805,0.555344,0.555344,0.59785,0.595805,0.859267,0.712579,0.555344,0.555344,0.859267,0.712579,0.555344,0.555344,0.555344,0.555344,0.555344,0.555344,,,,,,,0.583373,0.689637,0.59785,0.595805,0.859267,0.712579,0.555344,0.555344,0.555344,0.555344,0.216663,0.248542,0.221006,0.220392,0.299431,0.255425,0.208254,0.208254,0.108755,0.108755,23.79886,20.131752,23.222565,23.302286,16.157502,19.483596,25,25,25,25,,,,,,,,,,,2408,2408,0.555344,0.555344,0.555344,0.555344,0.555344,0.555344,0.555344,0.555344,0.208254,0.208254,25,25,, +24808,0,0.125275,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,2.684475,0.15,4,0.751653,0.751653,0.751653,0.751653,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,,,,,,,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.248045,0.248045,0.248045,0.248045,0.248046,0.248045,0.248045,0.248045,0.126528,0.126528,10,9.999998,9.999999,9.999999,9.999997,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.751653,0.248045,0.248045,10,10,, +7060,0,0.066196,1,1,0,2,5,,3,8,Fowler,St,4104608,0.417,0.483,0,1.418477,8,4.5,0.158869,0.158869,0.158869,0.158869,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.166888,0.197287,0.158869,0.158869,0.166888,0.197287,0.171029,0.170444,0.158869,0.158869,0.171029,0.170444,0.237948,0.20385,0.158869,0.158869,0.237948,0.20385,0.158869,0.158869,0.158869,0.158869,0.158869,0.158869,,,,,,,0.166888,0.197287,0.171029,0.170444,0.237948,0.20385,0.158869,0.158869,0.158869,0.158869,0.061982,0.071101,0.063224,0.063048,0.0833,0.07307,0.059576,0.059576,0.031112,0.031112,23.79886,20.131752,23.222565,23.302286,16.691583,19.483596,25,25,25,25,,,,,,,,,,,2408,2408,0.158869,0.158869,0.158869,0.158869,0.158869,0.158869,0.158869,0.158869,0.059576,0.059576,25,25,, +7954,0,0.117281,1,1,0,2,5,,3,8,Madison,St,934708,0.188,0.305,0,2.513168,8,4.5,0.281475,0.281475,0.281475,0.281475,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,0.281476,0.281475,0.281475,0.281475,0.281476,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,,,,,,,0.281475,0.281475,0.281475,0.281475,0.281475,0.281476,0.281475,0.281475,0.281475,0.281475,0.105553,0.105553,0.105553,0.105553,0.105553,0.105553,0.105553,0.105553,0.055122,0.055122,25,25,25,25,24.999999,24.999891,25,25,25,25,,,,,,,,,,,2408,2408,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,0.281475,0.105553,0.105553,25,25,, +24855,0,0.165955,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,3.556169,0.15,4,0.995727,0.995727,0.995727,0.995727,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,,,,,,,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.32859,0.32859,0.32859,0.32859,0.32859,0.32859,0.32859,0.32859,0.167614,0.167614,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.995727,0.32859,0.32859,10,10,, +7958,0,0.187512,1,1,0,2,5,,3,8,Madison,St,934708,0,0.188,0,4.018124,8,4.5,0.45003,0.45003,0.45003,0.45003,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.468998,0.457448,0.45003,0.45003,0.468998,0.457448,0.464918,0.465831,0.45003,0.45003,0.464918,0.465831,0.514963,0.536121,0.45003,0.45003,0.514963,0.536121,0.45003,0.45003,0.45003,0.45003,0.45003,0.45003,,,,,,,0.468998,0.457448,0.464918,0.465831,0.514963,0.536121,0.45003,0.45003,0.45003,0.45003,0.174452,0.170987,0.173228,0.173502,0.188241,0.194589,0.168761,0.168761,0.088131,0.088131,23.988915,24.594593,24.199418,24.151984,21.847685,20.985455,25,25,25,25,,,,,,,,,,,2408,2408,0.45003,0.45003,0.45003,0.45003,0.45003,0.45003,0.45003,0.45003,0.168761,0.168761,25,25,, +7095,1,0.229991,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,3.282,3.512,0,4.928384,5,5,0.344987,,0.344987,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.349131,,0.344987,,0.349131,,0.351101,,0.344987,,0.351101,,0.378974,,0.344987,,0.378974,,0.344987,,0.344987,,0.344987,,,,,,,,0.349131,,0.351101,,0.378974,,0.344987,,0.344987,,0.146138,,0.146729,,0.155091,,0.144894,,0.077047,,39.525161,,39.303418,,36.412745,,40,,40,,,,,,,,,,,,6880,,0.344987,,0.344987,,0.344987,,0.344987,,0.144894,,40,,, +24859,0,0.402811,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,8.631658,0.15,4,2.416864,2.416864,2.416864,2.416864,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,,,,,,,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,0.797565,0.797565,0.797565,0.797565,0.797565,0.797565,0.797565,0.797565,0.406839,0.406839,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,2.416864,0.797565,0.797565,10,10,, +24858,0,0.28459,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,6.098359,0.15,4,1.70754,1.70754,1.70754,1.70754,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,,,,,,,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,0.563488,0.563488,0.563488,0.563488,0.563488,0.563488,0.563488,0.563488,0.287436,0.287436,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,1.70754,0.563488,0.563488,10,10,, +37049,0,0.359059,1,1,0,2,4,,3,8,Michigan,Ave,4104401,0.065,0.423,0,7.694125,6,4.5,0.652835,0.652835,0.652835,0.652835,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.095383,1.116946,0.652835,0.652835,1.095383,1.116946,1.003121,1.009143,0.652835,0.652835,1.003121,1.009143,1.168186,1.123331,0.652835,0.652835,1.168186,1.123331,0.652835,0.652835,0.652835,0.652835,0.652835,0.652835,,,,,,,1.095383,1.116946,1.003121,1.009143,1.168186,1.123331,0.652835,0.652835,0.652835,0.652835,0.393246,0.399714,0.365567,0.367374,0.415087,0.40163,0.260481,0.260481,0.137422,0.137422,19.667597,19.287907,21.476513,21.348355,18.441877,19.178272,33,33,33,33,,,,,,,,,,,2580,2580,0.652835,0.652835,0.652835,0.652835,0.652835,0.652835,0.652835,0.652835,0.260481,0.260481,33,33,, +24841,0,0.690636,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.799344,0.15,4,2.762544,2.762544,2.762544,2.762544,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,,,,,,,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,0.953078,0.953078,0.953078,0.953078,0.953078,0.953078,0.953078,0.953078,0.490352,0.490352,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,2.762544,0.953078,0.953078,15,15,, +7054,0,0.391472,1,1,0,2,5,,5,8,Golf Club,Rd,933602,0,0.391,0,8.388676,3.7,5,0.782943,0.782943,0.782943,0.782943,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.783161,1.196471,0.782943,0.782943,0.783161,1.196471,0.786084,0.786894,0.782943,0.782943,0.786084,0.786894,1.033138,0.798272,0.782943,0.782943,1.033138,0.798272,0.782943,0.782943,0.782943,0.782943,0.782943,0.782943,,,,,,,0.783161,1.196471,0.786084,0.786894,1.033138,0.798272,0.782943,0.782943,0.782943,0.782943,0.305413,0.429406,0.30629,0.306533,0.380406,0.309947,0.305348,0.305348,0.160503,0.160503,29.991633,19.631316,29.880135,29.849361,22.734893,29.423915,30,30,30,30,,,,,,,,,,,2580,2580,0.782943,0.782943,0.782943,0.782943,0.782943,0.782943,0.782943,0.782943,0.305348,0.305348,30,30,, +7093,0,0.890798,1,1,0,2,3,,5,8,Highland,Rd,933209,4.136,5.027,0,19.088525,1.7,4,1.068957,1.068957,1.068957,1.068957,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.566059,2.481954,1.068957,1.068957,1.566059,2.481954,1.517854,1.552905,1.068957,1.068957,1.517854,1.552905,2.535,1.968862,1.068957,1.068957,2.535,1.968862,1.068957,1.068957,1.068957,1.068957,1.068957,1.068957,,,,,,,1.566059,2.481954,1.517854,1.552905,2.535,1.968862,1.068957,1.068957,1.068957,1.068957,0.630161,0.90493,0.6157,0.626215,0.920844,0.751002,0.481031,0.481031,0.258331,0.258331,34.128902,21.534596,35.212777,34.417986,21.08397,27.146579,50,50,50,50,,,,,,,,,,,3096,3096,1.068957,1.068957,1.068957,1.068957,1.068957,1.068957,1.068957,1.068957,0.481031,0.481031,50,50,, +24606,0,0.721634,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.46358,0.15,4,2.886535,2.886535,2.886535,2.886535,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,,,,,,,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,0.995855,0.995855,0.995855,0.995855,0.995855,0.995855,0.995855,0.995855,0.51236,0.51236,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,2.886535,0.995855,0.995855,15,15,, +7055,0,0.364907,1,1,0,2,5,,3,8,Catrell,Dr,933508,0,0.365,0,7.819427,8,4.5,0.875776,0.875776,0.875776,0.875776,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,,,,,,,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.328416,0.328416,0.328416,0.328416,0.328416,0.328416,0.328416,0.328416,0.171506,0.171506,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.875776,0.328416,0.328416,25,25,, +7056,0,0.068682,1,1,0,2,5,,3,8,National,St,933507,0.574,0.643,0,1.471763,8,4.5,0.164837,0.164837,0.164837,0.164837,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.165524,0.165532,0.164837,0.164837,0.165524,0.165532,0.165465,0.165578,0.164837,0.164837,0.165465,0.165578,0.167653,0.167601,0.164837,0.164837,0.167653,0.167601,0.164837,0.164837,0.164837,0.164837,0.164837,0.164837,,,,,,,0.165524,0.165532,0.165465,0.165578,0.167653,0.167601,0.164837,0.164837,0.164837,0.164837,0.06202,0.062022,0.062002,0.062036,0.062659,0.062643,0.061814,0.061814,0.032281,0.032281,24.896272,24.895087,24.905117,24.888225,24.580163,24.587772,25,25,25,25,,,,,,,,,,,2408,2408,0.164837,0.164837,0.164837,0.164837,0.164837,0.164837,0.164837,0.164837,0.061814,0.061814,25,25,, +7163,0,0.361167,2,2,1,2,3,,4,8,Grand River,Rd,932910,13.407,13.768,0,7.739294,3.7,5,0.541751,0.541751,0.541751,0.541751,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.583121,0.596124,0.541751,0.541751,0.583121,0.596124,0.558935,0.555897,0.541751,0.541751,0.558935,0.555897,0.658187,0.644806,0.541751,0.541751,0.658187,0.644806,0.541751,0.541751,0.541751,0.541751,0.541751,0.541751,,,,,,,0.583121,0.596124,0.558935,0.555897,0.658187,0.644806,0.541751,0.541751,0.541751,0.541751,0.239946,0.243847,0.232691,0.231779,0.262466,0.258452,0.227535,0.227535,0.120991,0.120991,37.16216,36.351563,38.770221,38.982051,32.923836,33.607064,40,40,40,40,,,,,,,,,,,7946,7946,0.541751,0.541751,0.541751,0.541751,0.541751,0.541751,0.541751,0.541751,0.227535,0.227535,40,40,, +7059,0,0.046464,1,1,0,2,5,,3,8,National,St,933507,0.332,0.379,0,0.995654,8,4.5,0.111513,0.111513,0.111513,0.111513,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,,,,,,,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.041817,0.041817,0.041817,0.041817,0.041817,0.041817,0.041817,0.041817,0.021838,0.021838,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.111513,0.041817,0.041817,25,25,, +7164,0,0.210643,2,2,1,2,3,,3,8,Grand River,Rd,932910,13.197,13.407,0,4.513789,5,5,0.361103,0.361103,0.361103,0.361103,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.398367,0.410079,0.361103,0.361103,0.398367,0.410079,0.376582,0.373846,0.361103,0.361103,0.376582,0.373846,0.472901,0.454914,0.361103,0.361103,0.472901,0.454914,0.361103,0.361103,0.361103,0.361103,0.361103,0.361103,,,,,,,0.398367,0.410079,0.376582,0.373846,0.472901,0.454914,0.361103,0.361103,0.361103,0.361103,0.157426,0.16094,0.15089,0.15007,0.179786,0.17439,0.146247,0.146247,0.077336,0.077336,31.726056,30.819929,33.561409,33.807011,26.725694,27.782398,35,35,35,35,,,,,,,,,,,7946,7946,0.361103,0.361103,0.361103,0.361103,0.361103,0.361103,0.361103,0.361103,0.146247,0.146247,35,35,, +7058,0,0.113833,1,1,0,2,5,,3,8,National,St,933507,0.379,0.492,0,2.439275,8,4.5,0.273199,0.273199,0.273199,0.273199,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.274422,0.274408,0.273199,0.273199,0.274422,0.274408,0.27424,0.274426,0.273199,0.273199,0.27424,0.274426,0.28226,0.278946,0.273199,0.273199,0.28226,0.278946,0.273199,0.273199,0.273199,0.273199,0.273199,0.273199,,,,,,,0.274422,0.274408,0.27424,0.274426,0.28226,0.278946,0.273199,0.273199,0.273199,0.273199,0.102816,0.102812,0.102762,0.102818,0.105168,0.104174,0.10245,0.10245,0.053501,0.053501,24.888576,24.889815,24.905117,24.888225,24.197432,24.484938,25,25,25,25,,,,,,,,,,,2408,2408,0.273199,0.273199,0.273199,0.273199,0.273199,0.273199,0.273199,0.273199,0.10245,0.10245,25,25,, +7057,0,0.081938,1,1,0,2,5,,3,8,National,St,933507,0.492,0.574,0,1.755808,8,4.5,0.196651,0.196651,0.196651,0.196651,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.197531,0.197521,0.196651,0.196651,0.197531,0.197521,0.1974,0.197534,0.196651,0.196651,0.1974,0.197534,0.203173,0.200787,0.196651,0.196651,0.203173,0.200787,0.196651,0.196651,0.196651,0.196651,0.196651,0.196651,,,,,,,0.197531,0.197521,0.1974,0.197534,0.203173,0.200787,0.196651,0.196651,0.196651,0.196651,0.074008,0.074005,0.073969,0.074009,0.075701,0.074985,0.073744,0.073744,0.038511,0.038511,24.888576,24.889815,24.905117,24.888225,24.197432,24.484938,25,25,25,25,,,,,,,,,,,2408,2408,0.196651,0.196651,0.196651,0.196651,0.196651,0.196651,0.196651,0.196651,0.073744,0.073744,25,25,, +8155,0,0.183008,1,1,0,2,5,,3,8,Sutton,St,939009,0,0.183,0,3.921595,8,4.5,0.439219,0.439219,0.439219,0.439219,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,,,,,,,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.164707,0.164707,0.164707,0.164707,0.164707,0.164707,0.164707,0.164707,0.086014,0.086014,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.439219,0.164707,0.164707,25,25,, +7162,0,0.10791,2,2,1,2,3,,4,8,Grand River,Rd,932910,13.768,13.876,0,2.31235,3.7,5,0.161864,0.161864,0.161864,0.161864,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.179999,0.16507,0.161864,0.161864,0.179999,0.16507,0.165431,0.164597,0.161864,0.161864,0.165431,0.164597,0.177241,0.192622,0.161864,0.161864,0.177241,0.192622,0.161864,0.161864,0.161864,0.161864,0.161864,0.161864,,,,,,,0.179999,0.16507,0.165431,0.164597,0.177241,0.192622,0.161864,0.161864,0.161864,0.161864,0.073423,0.068945,0.069053,0.068803,0.072596,0.07721,0.067983,0.067983,0.03615,0.03615,35.97012,39.223165,39.137715,39.336031,36.529719,33.612806,40,40,40,40,,,,,,,,,,,7946,7946,0.161864,0.161864,0.161864,0.161864,0.161864,0.161864,0.161864,0.161864,0.067983,0.067983,40,40,, +24607,0,0.544866,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.675706,0.15,4,2.179465,2.179465,2.179465,2.179465,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.179469,2.179465,2.179465,2.179465,2.179469,2.179465,2.179465,2.179465,2.179465,2.179465,2.179465,2.179465,2.179465,2.179468,2.179465,2.179465,2.179465,2.179468,2.179465,2.179465,2.179465,2.179465,2.179465,2.179465,,,,,,,2.179469,2.179465,2.179465,2.179465,2.179465,2.179468,2.179465,2.179465,2.179465,2.179465,0.751916,0.751915,0.751915,0.751915,0.751916,0.751916,0.751915,0.751915,0.386855,0.386855,14.999976,15,14.999999,14.999999,14.999998,14.99998,15,15,15,15,,,,,,,,,,,34400,34400,2.179465,2.179465,2.179465,2.179465,2.179465,2.179465,2.179465,2.179465,0.751915,0.751915,15,15,, +7053,0,0.419835,1,1,0,2,5,,5,8,Golf Club,Rd,933602,0.391,0.811,0,8.996455,3.7,5,0.839669,0.839669,0.839669,0.839669,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.840181,1.495497,0.839669,0.839669,0.840181,1.495497,0.847868,0.849891,0.839669,0.839669,0.847868,0.849891,1.353354,0.875892,0.839669,0.839669,1.353354,0.875892,0.839669,0.839669,0.839669,0.839669,0.839669,0.839669,,,,,,,0.840181,1.495497,0.847868,0.849891,1.353354,0.875892,0.839669,0.839669,0.839669,0.839669,0.327624,0.524219,0.329931,0.330537,0.481577,0.338338,0.327471,0.327471,0.172132,0.172132,29.981737,16.843945,29.709896,29.639195,18.613067,28.759333,30,30,30,30,,,,,,,,,,,2580,2580,0.839669,0.839669,0.839669,0.839669,0.839669,0.839669,0.839669,0.839669,0.327471,0.327471,30,30,, +8016,0,2.179787,1,1,0,2,5,,5,8,Faussett,Rd,934509,0,2.179,0,46.709715,3.7,5,4.359573,4.359573,4.359573,4.359573,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.35981,4.360785,4.359573,4.359573,4.35981,4.360785,4.35958,4.359577,4.359573,4.359573,4.35958,4.359577,4.359969,4.359739,4.359573,4.359573,4.359969,4.359739,4.359573,4.359573,4.359573,4.359573,4.359573,4.359573,,,,,,,4.35981,4.360785,4.35958,4.359577,4.359969,4.359739,4.359573,4.359573,4.359573,4.359573,1.700305,1.700597,1.700236,1.700235,1.700352,1.700283,1.700234,1.700234,0.893713,0.893713,29.998373,29.991663,29.999952,29.999973,29.997279,29.998863,30,30,30,30,,,,,,,,,,,2580,2580,4.359573,4.359573,4.359573,4.359573,4.359573,4.359573,4.359573,4.359573,1.700234,1.700234,30,30,, +37045,0,1.006972,1,1,0,2,5,,5,8,Oak Grove,Rd,4104402,2.078,3.085,0,21.577968,3.7,5,2.013944,2.013944,2.013944,2.013944,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.014028,2.040972,2.013944,2.013944,2.014028,2.040972,2.014057,2.014098,2.013944,2.013944,2.014057,2.014098,2.026255,2.014618,2.013944,2.013944,2.026255,2.014618,2.013944,2.013944,2.013944,2.013944,2.013944,2.013944,,,,,,,2.014028,2.040972,2.014057,2.014098,2.026255,2.014618,2.013944,2.013944,2.013944,2.013944,0.785463,0.793546,0.785472,0.785484,0.789132,0.78564,0.785438,0.785438,0.412858,0.412858,29.998737,29.602715,29.998305,29.997705,29.817717,29.98996,30,30,30,30,,,,,,,,,,,2580,2580,2.013944,2.013944,2.013944,2.013944,2.013944,2.013944,2.013944,2.013944,0.785438,0.785438,30,30,, +7971,0,0.497197,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,2.139,2.636,0,10.654214,5.55,5,1.193272,1.193272,1.193272,1.193272,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.193425,1.194007,1.193272,1.193272,1.193425,1.194007,1.193275,1.193278,1.193272,1.193272,1.193275,1.193278,1.193505,1.193319,1.193272,1.193272,1.193505,1.193319,1.193272,1.193272,1.193272,1.193272,1.193272,1.193272,,,,,,,1.193425,1.194007,1.193275,1.193278,1.193505,1.193319,1.193272,1.193272,1.193272,1.193272,0.447523,0.447698,0.447478,0.447479,0.447547,0.447491,0.447477,0.447477,0.233682,0.233682,24.996791,24.984601,24.999942,24.999878,24.995117,24.999026,25,25,25,25,,,,,,,,,,,2236,2236,1.193272,1.193272,1.193272,1.193272,1.193272,1.193272,1.193272,1.193272,0.447477,0.447477,25,25,, +19937,0,0.752478,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,1.499,2.251,0,16.124531,3.7,5,1.504956,1.504956,1.504956,1.504956,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.505046,1.515908,1.504956,1.504956,1.505046,1.515908,1.505159,1.505215,1.504956,1.504956,1.505159,1.505215,1.513667,1.505984,1.504956,1.504956,1.513667,1.505984,1.504956,1.504956,1.504956,1.504956,1.504956,1.504956,,,,,,,1.505046,1.515908,1.505159,1.505215,1.513667,1.505984,1.504956,1.504956,1.504956,1.504956,0.58696,0.590218,0.586994,0.587011,0.589546,0.587241,0.586933,0.586933,0.308516,0.308516,29.99821,29.783263,29.995958,29.994845,29.827367,29.979529,30,30,30,30,,,,,,,,,,,2580,2580,1.504956,1.504956,1.504956,1.504956,1.504956,1.504956,1.504956,1.504956,0.586933,0.586933,30,30,, +7986,0,0.39666,1,1,0,2,5,,5,8,Oak Grove,Rd,934510,0.101,0.498,0,8.499864,3.7,5,0.793321,0.793321,0.793321,0.793321,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.802457,0.793401,0.793321,0.793321,0.802457,0.793401,0.793477,0.793409,0.793321,0.793321,0.793477,0.793409,0.794062,0.800527,0.793321,0.793321,0.794062,0.800527,0.793321,0.793321,0.793321,0.793321,0.793321,0.793321,,,,,,,0.802457,0.793401,0.793477,0.793409,0.794062,0.800527,0.793321,0.793321,0.793321,0.793321,0.312136,0.309419,0.309442,0.309421,0.309618,0.311557,0.309395,0.309395,0.162631,0.162631,29.658437,29.996963,29.994103,29.996673,29.971985,29.729943,30,30,30,30,,,,,,,,,,,2580,2580,0.793321,0.793321,0.793321,0.793321,0.793321,0.793321,0.793321,0.793321,0.309395,0.309395,30,30,, +19938,0,0.651913,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,0.848,1.499,0,13.969559,3.7,5,1.303825,1.303825,1.303825,1.303825,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.303958,1.318841,1.303825,1.303825,1.303958,1.318841,1.30397,1.304082,1.303825,1.303825,1.30397,1.304082,1.315669,1.305044,1.303825,1.303825,1.315669,1.305044,1.303825,1.303825,1.303825,1.303825,1.303825,1.303825,,,,,,,1.303958,1.318841,1.30397,1.304082,1.315669,1.305044,1.303825,1.303825,1.303825,1.303825,0.508532,0.512997,0.508535,0.508569,0.512045,0.508858,0.508492,0.508492,0.267284,0.267284,29.996963,29.658437,29.996673,29.994103,29.729943,29.971985,30,30,30,30,,,,,,,,,,,2580,2580,1.303825,1.303825,1.303825,1.303825,1.303825,1.303825,1.303825,1.303825,0.508492,0.508492,30,30,, +19943,0,0.15094,1,1,0,2,5,,5,8,Oak Grove,Rd,4103011,0,0.151,0,3.234422,3.7,5,0.301879,0.301879,0.301879,0.301879,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.305356,0.30191,0.301879,0.301879,0.305356,0.30191,0.301939,0.301913,0.301879,0.301879,0.301939,0.301913,0.302162,0.304622,0.301879,0.301879,0.302162,0.304622,0.301879,0.301879,0.301879,0.301879,0.301879,0.301879,,,,,,,0.305356,0.30191,0.301939,0.301913,0.302162,0.304622,0.301879,0.301879,0.301879,0.301879,0.118776,0.117742,0.117751,0.117743,0.117818,0.118556,0.117733,0.117733,0.061885,0.061885,29.658437,29.996963,29.994103,29.996673,29.971985,29.729943,30,30,30,30,,,,,,,,,,,2580,2580,0.301879,0.301879,0.301879,0.301879,0.301879,0.301879,0.301879,0.301879,0.117733,0.117733,30,30,, +8083,0,0.109411,1,1,0,2,5,,5,8,Sanford,Rd,934507,0.377,0.487,0,2.344526,3.7,5,0.218822,0.218822,0.218822,0.218822,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.218883,0.218834,0.218822,0.218822,0.218883,0.218834,0.218823,0.218823,0.218822,0.218822,0.218823,0.218823,0.218831,0.218842,0.218822,0.218822,0.218831,0.218842,0.218822,0.218822,0.218822,0.218822,0.218822,0.218822,,,,,,,0.218883,0.218834,0.218823,0.218823,0.218831,0.218842,0.218822,0.218822,0.218822,0.218822,0.085359,0.085344,0.085341,0.085341,0.085343,0.085347,0.085341,0.085341,0.044859,0.044859,29.991663,29.998373,29.999973,29.999952,29.998863,29.997279,30,30,30,30,,,,,,,,,,,2580,2580,0.218822,0.218822,0.218822,0.218822,0.218822,0.218822,0.218822,0.218822,0.085341,0.085341,30,30,, +26558,0,0.928104,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.887951,0.15,4,3.712418,3.712418,3.712418,3.712418,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,,,,,,,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,1.280784,1.280784,1.280784,1.280784,1.280784,1.280784,1.280784,1.280784,0.658954,0.658954,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,3.712418,1.280784,1.280784,15,15,, +8053,0,0.985939,1,1,0,2,6,GRV,5,8,Clyde,Rd,939905,0,0.986,0,21.127271,5.55,5,2.366254,2.366254,2.366254,2.366254,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.367265,2.368965,2.366254,2.366254,2.367265,2.368965,2.366276,2.366291,2.366254,2.366254,2.366276,2.366291,2.367663,2.366881,2.366254,2.366254,2.367663,2.366881,2.366254,2.366254,2.366254,2.366254,2.366254,2.366254,,,,,,,2.367265,2.368965,2.366276,2.366291,2.367663,2.366881,2.366254,2.366254,2.366254,2.366254,0.887649,0.888159,0.887352,0.887356,0.887768,0.887533,0.887345,0.887345,0.463391,0.463391,24.989327,24.971394,24.999774,24.999612,24.98513,24.99338,25,25,25,25,,,,,,,,,,,2236,2236,2.366254,2.366254,2.366254,2.366254,2.366254,2.366254,2.366254,2.366254,0.887345,0.887345,25,25,, +7964,0,0.613639,1,1,0,2,6,GRV,5,8,Fisher,Rd,934608,2.543,3.156,0,13.149401,5.55,5,1.472733,1.472733,1.472733,1.472733,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.473362,1.47442,1.472733,1.472733,1.473362,1.47442,1.472746,1.472756,1.472733,1.472733,1.472746,1.472756,1.473609,1.473123,1.472733,1.472733,1.473609,1.473123,1.472733,1.472733,1.472733,1.472733,1.472733,1.472733,,,,,,,1.473362,1.47442,1.472746,1.472756,1.473609,1.473123,1.472733,1.472733,1.472733,1.472733,0.552464,0.552781,0.552279,0.552282,0.552538,0.552392,0.552275,0.552275,0.28841,0.28841,24.989327,24.971394,24.999774,24.999612,24.98513,24.99338,25,25,25,25,,,,,,,,,,,2236,2236,1.472733,1.472733,1.472733,1.472733,1.472733,1.472733,1.472733,1.472733,0.552275,0.552275,25,25,, +8063,0,1.242607,1,1,0,2,5,,5,8,Gannon,Rd,939806,1.004,2.246,0,26.627298,3.7,5,2.485214,2.485214,2.485214,2.485214,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.485215,2.485216,2.485214,2.485214,2.485215,2.485216,2.485215,2.485215,2.485214,2.485214,2.485215,2.485215,2.485215,2.485215,2.485214,2.485214,2.485215,2.485215,2.485214,2.485214,2.485214,2.485214,2.485214,2.485214,,,,,,,2.485215,2.485216,2.485215,2.485215,2.485215,2.485215,2.485214,2.485214,2.485214,2.485214,0.969234,0.969234,0.969234,0.969234,0.969234,0.969234,0.969234,0.969234,0.509469,0.509469,29.999988,29.999987,30,30,29.999997,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,2.485214,2.485214,2.485214,2.485214,2.485214,2.485214,2.485214,2.485214,0.969234,0.969234,30,30,, +24767,0,0.866354,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.564724,0.15,4,3.465415,3.465415,3.465415,3.465415,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,,,,,,,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,1.195568,1.195568,1.195568,1.195568,1.195568,1.195568,1.195568,1.195568,0.615111,0.615111,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,3.465415,1.195568,1.195568,15,15,, +7343,0,0.462738,1,1,0,2,5,,5,8,Mohrle,Rd,943701,3.462,3.924,0,9.915805,3.7,5,0.925475,0.925475,0.925475,0.925475,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.92558,0.925502,0.925475,0.925475,0.92558,0.925502,0.925492,0.925493,0.925475,0.925475,0.925492,0.925493,0.925515,0.925628,0.925475,0.925475,0.925515,0.925628,0.925475,0.925475,0.925475,0.925475,0.925475,0.925475,,,,,,,0.92558,0.925502,0.925492,0.925493,0.925515,0.925628,0.925475,0.925475,0.925475,0.925475,0.360967,0.360943,0.36094,0.360941,0.360947,0.360981,0.360935,0.360935,0.189722,0.189722,29.996609,29.99914,29.999467,29.999414,29.998715,29.995042,30,30,30,30,,,,,,,,,,,2580,2580,0.925475,0.925475,0.925475,0.925475,0.925475,0.925475,0.925475,0.925475,0.360935,0.360935,30,30,, +24860,0,1.426011,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.557375,0.15,4,5.704043,5.704043,5.704043,5.704043,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,,,,,,,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,1.967895,1.967895,1.967895,1.967895,1.967895,1.967895,1.967895,1.967895,1.012468,1.012468,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,5.704043,1.967895,1.967895,15,15,, +7320,0,1.470618,1,1,0,2,5,,5,8,Fowlerville,Rd,938006,0.036,1.506,0,31.513235,3.7,5,2.941235,2.941235,2.941235,2.941235,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.941326,2.941575,2.941235,2.941235,2.941326,2.941575,2.941294,2.94129,2.941235,2.941235,2.941294,2.94129,2.94178,2.941376,2.941235,2.941235,2.94178,2.941376,2.941235,2.941235,2.941235,2.941235,2.941235,2.941235,,,,,,,2.941326,2.941575,2.941294,2.94129,2.94178,2.941376,2.941235,2.941235,2.941235,2.941235,1.147109,1.147184,1.147099,1.147098,1.147245,1.147124,1.147082,1.147082,0.602953,0.602953,29.999075,29.996532,29.999402,29.999446,29.99445,29.998566,30,30,30,30,,,,,,,,,,,2580,2580,2.941235,2.941235,2.941235,2.941235,2.941235,2.941235,2.941235,2.941235,1.147082,1.147082,30,30,, +7822,0,0.751834,1,1,0,2,6,GRV,5,8,Mohrle,Rd,943701,1.916,2.668,0,16.110725,5.55,5,1.804401,1.804401,1.804401,1.804401,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,,,,,,,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,0.67665,0.67665,0.67665,0.67665,0.67665,0.67665,0.67665,0.67665,0.353362,0.353362,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,1.804401,0.67665,0.67665,25,25,, +24783,0,1.953494,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,41.86058,0.15,4,7.813975,7.813975,7.813975,7.813975,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,,,,,,,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,2.695821,2.695821,2.695821,2.695821,2.695821,2.695821,2.695821,2.695821,1.386981,1.386981,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,7.813975,2.695821,2.695821,15,15,, +8085,0,0.753962,1,1,0,2,6,GRV,5,8,Mohrle,Rd,943701,2.668,3.421,0,16.156331,5.55,5,1.809509,1.809509,1.809509,1.809509,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,,,,,,,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,0.678566,0.678566,0.678566,0.678566,0.678566,0.678566,0.678566,0.678566,0.354362,0.354362,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,1.809509,0.678566,0.678566,25,25,, +7820,0,0.040296,1,1,0,2,6,GRV,5,8,Mohrle,Rd,943701,3.421,3.462,0,0.863481,5.55,5,0.09671,0.09671,0.09671,0.09671,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,,,,,,,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.036266,0.036266,0.036266,0.036266,0.036266,0.036266,0.036266,0.036266,0.018939,0.018939,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.09671,0.036266,0.036266,25,25,, +20912,0,0.058763,1,1,0,2,5,,5,8,Fowlerville,Rd,4104263,0,0.059,0,1.259203,3.7,5,0.117526,0.117526,0.117526,0.117526,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.117538,0.117529,0.117526,0.117526,0.117538,0.117529,0.117528,0.117528,0.117526,0.117526,0.117528,0.117528,0.117531,0.117545,0.117526,0.117526,0.117531,0.117545,0.117526,0.117526,0.117526,0.117526,0.117526,0.117526,,,,,,,0.117538,0.117529,0.117528,0.117528,0.117531,0.117545,0.117526,0.117526,0.117526,0.117526,0.045839,0.045836,0.045836,0.045836,0.045836,0.045841,0.045835,0.045835,0.024093,0.024093,29.996777,29.999186,29.999491,29.999449,29.99874,29.995179,30,30,30,30,,,,,,,,,,,2580,2580,0.117526,0.117526,0.117526,0.117526,0.117526,0.117526,0.117526,0.117526,0.045835,0.045835,30,30,, +7325,0,0.035938,1,1,0,2,6,GRV,5,8,Fowlerville/Mohrle Cutoff,,938006,0,0.036,0,0.770099,5.55,5,0.086251,0.086251,0.086251,0.086251,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,,,,,,,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.032344,0.032344,0.032344,0.032344,0.032344,0.032344,0.032344,0.032344,0.016891,0.016891,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.086251,0.032344,0.032344,25,25,, +34060,0,0.659775,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.6391,2.6391,2.6391,2.6391,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,,,,,,,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,0.910489,0.910489,0.910489,0.910489,0.910489,0.910489,0.910489,0.910489,0.46844,0.46844,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,2.6391,0.910489,0.910489,15,15,, +7318,0,0.849899,1,1,0,2,5,,5,8,Fowlerville,Rd,938006,1.506,2.356,0,18.212121,3.7,5,1.699798,1.699798,1.699798,1.699798,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.699844,1.699846,1.699798,1.699798,1.699844,1.699846,1.699813,1.699812,1.699798,1.699798,1.699813,1.699812,1.699848,1.699849,1.699798,1.699798,1.699848,1.699849,1.699798,1.699798,1.699798,1.699798,1.699798,1.699798,,,,,,,1.699844,1.699846,1.699813,1.699812,1.699848,1.699849,1.699798,1.699798,1.699798,1.699798,0.662935,0.662935,0.662926,0.662925,0.662936,0.662936,0.662921,0.662921,0.348459,0.348459,29.99919,29.99916,29.99974,29.999753,29.999114,29.999107,30,30,30,30,,,,,,,,,,,2580,2580,1.699798,1.699798,1.699798,1.699798,1.699798,1.699798,1.699798,1.699798,0.662921,0.662921,30,30,, +7340,0,1.975193,1,1,0,2,5,,5,8,Hayner,Rd,943801,1.004,2.979,0,42.325557,3.7,5,3.950385,3.950385,3.950385,3.950385,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.950403,3.950417,3.950385,3.950385,3.950403,3.950417,3.950387,3.950387,3.950385,3.950385,3.950387,3.950387,3.950414,3.950399,3.950385,3.950385,3.950414,3.950399,3.950385,3.950385,3.950385,3.950385,3.950385,3.950385,,,,,,,3.950403,3.950417,3.950387,3.950387,3.950414,3.950399,3.950385,3.950385,3.950385,3.950385,1.540655,1.54066,1.540651,1.540651,1.540659,1.540654,1.54065,1.54065,0.809829,0.809829,29.999869,29.999762,29.999986,29.999985,29.999779,29.999895,30,30,30,30,,,,,,,,,,,2580,2580,3.950385,3.950385,3.950385,3.950385,3.950385,3.950385,3.950385,3.950385,1.54065,1.54065,30,30,, +7818,0,0.503033,1,1,0,2,5,,5,8,Hayner,Rd,943801,0.501,1.004,0,10.779287,3.7,5,1.006067,1.006067,1.006067,1.006067,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.00607,1.006073,1.006067,1.006067,1.00607,1.006073,1.006067,1.006067,1.006067,1.006067,1.006067,1.006067,1.006073,1.00607,1.006067,1.006067,1.006073,1.00607,1.006067,1.006067,1.006067,1.006067,1.006067,1.006067,,,,,,,1.00607,1.006073,1.006067,1.006067,1.006073,1.00607,1.006067,1.006067,1.006067,1.006067,0.392367,0.392368,0.392366,0.392366,0.392368,0.392367,0.392366,0.392366,0.206244,0.206244,29.999899,29.999802,29.999991,29.99999,29.99982,29.999912,30,30,30,30,,,,,,,,,,,2580,2580,1.006067,1.006067,1.006067,1.006067,1.006067,1.006067,1.006067,1.006067,0.392366,0.392366,30,30,, +24861,0,1.507313,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.299575,0.15,4,6.029254,6.029254,6.029254,6.029254,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,,,,,,,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,2.080093,2.080093,2.080093,2.080093,2.080093,2.080093,2.080093,2.080093,1.070193,1.070193,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,6.029254,2.080093,2.080093,15,15,, +7800,0,0.50762,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,9.452,9.96,0,10.877571,3.7,5,1.01524,1.01524,1.01524,1.01524,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.015269,1.015355,1.01524,1.01524,1.015269,1.015355,1.01526,1.015258,1.01524,1.01524,1.01526,1.015258,1.015408,1.015283,1.01524,1.01524,1.015408,1.015283,1.01524,1.01524,1.01524,1.01524,1.01524,1.01524,,,,,,,1.015269,1.015355,1.01526,1.015258,1.015408,1.015283,1.01524,1.01524,1.01524,1.01524,0.395952,0.395978,0.39595,0.395949,0.395994,0.395957,0.395944,0.395944,0.208124,0.208124,29.99914,29.996609,29.999414,29.999467,29.995042,29.998715,30,30,30,30,,,,,,,,,,,2580,2580,1.01524,1.01524,1.01524,1.01524,1.01524,1.01524,1.01524,1.01524,0.395944,0.395944,30,30,, +8082,0,0.501613,1,1,0,2,5,,5,8,Hayner,Rd,943801,0,0.501,0,10.74884,3.7,5,1.003225,1.003225,1.003225,1.003225,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.003235,1.004214,1.003225,1.003225,1.003235,1.004214,1.003229,1.00323,1.003225,1.003225,1.003229,1.00323,1.003574,1.003237,1.003225,1.003225,1.003574,1.003237,1.003225,1.003225,1.003225,1.003225,1.003225,1.003225,,,,,,,1.003235,1.004214,1.003229,1.00323,1.003574,1.003237,1.003225,1.003225,1.003225,1.003225,0.391261,0.391554,0.391259,0.391259,0.391363,0.391261,0.391258,0.391258,0.205661,0.205661,29.99971,29.970462,29.999895,29.999843,29.989564,29.99965,30,30,30,30,,,,,,,,,,,2580,2580,1.003225,1.003225,1.003225,1.003225,1.003225,1.003225,1.003225,1.003225,0.391258,0.391258,30,30,, +19934,0,0.445298,1,1,0,2,5,,5,8,Fleming,Rd,4103109,3.568,4.013,0,9.542097,3.7,5,0.890596,0.890596,0.890596,0.890596,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,,,,,,,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.347332,0.347332,0.347332,0.347332,0.347332,0.347332,0.347332,0.347332,0.182572,0.182572,29.999988,29.999987,30,30,29.999997,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.890596,0.347332,0.347332,30,30,, +19767,0,0.085508,1,1,0,2,5,,5,8,Hayner,Rd,4104152,0,0.086,0,1.832315,3.7,5,0.171016,0.171016,0.171016,0.171016,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,,,,,,,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.066696,0.066696,0.066696,0.066696,0.066696,0.066696,0.066696,0.066696,0.035058,0.035058,29.999988,29.999987,30,30,29.999997,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.171016,0.066696,0.066696,30,30,, +8056,0,2.233944,1,1,0,2,5,,5,8,Cohoctah,Rd,939901,0,2.233,0,47.870222,3.7,5,4.467887,4.467887,4.467887,4.467887,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.467891,4.467893,4.467887,4.467887,4.467891,4.467893,4.467888,4.467888,4.467887,4.467887,4.467888,4.467888,4.46789,4.467889,4.467887,4.467887,4.46789,4.467889,4.467887,4.467887,4.467887,4.467887,4.467887,4.467887,,,,,,,4.467891,4.467893,4.467888,4.467888,4.46789,4.467889,4.467887,4.467887,4.467887,4.467887,1.742477,1.742478,1.742476,1.742476,1.742477,1.742477,1.742476,1.742476,0.915917,0.915917,29.999976,29.999965,29.999996,29.999995,29.999984,29.999989,30,30,30,30,,,,,,,,,,,2580,2580,4.467887,4.467887,4.467887,4.467887,4.467887,4.467887,4.467887,4.467887,1.742476,1.742476,30,30,, +7918,0,0.970187,1,1,0,2,5,,5,8,Antcliff,Rd,940003,2.508,3.478,0,20.789722,3.7,5,1.940374,1.940374,1.940374,1.940374,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.940376,1.940376,1.940374,1.940374,1.940376,1.940376,1.940374,1.940374,1.940374,1.940374,1.940374,1.940374,1.940375,1.940375,1.940374,1.940374,1.940375,1.940375,1.940374,1.940374,1.940374,1.940374,1.940374,1.940374,,,,,,,1.940376,1.940376,1.940374,1.940374,1.940375,1.940375,1.940374,1.940374,1.940374,1.940374,0.756746,0.756747,0.756746,0.756746,0.756746,0.756746,0.756746,0.756746,0.397777,0.397777,29.999976,29.999965,29.999996,29.999995,29.999984,29.999989,30,30,30,30,,,,,,,,,,,2580,2580,1.940374,1.940374,1.940374,1.940374,1.940374,1.940374,1.940374,1.940374,0.756746,0.756746,30,30,, +24766,0,0.9568,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.502862,0.15,4,3.827201,3.827201,3.827201,3.827201,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,,,,,,,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,1.320384,1.320384,1.320384,1.320384,1.320384,1.320384,1.320384,1.320384,0.679328,0.679328,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,3.827201,1.320384,1.320384,15,15,, +7301,0,1.071096,1,1,0,2,6,GRV,5,8,Cohoctah,Rd,941804,0,1.071,0,22.952051,5.55,5,2.57063,2.57063,2.57063,2.57063,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.570726,2.570739,2.57063,2.57063,2.570726,2.570739,2.570648,2.570652,2.57063,2.57063,2.570648,2.570652,2.570693,2.570685,2.57063,2.57063,2.570693,2.570685,2.57063,2.57063,2.57063,2.57063,2.57063,2.57063,,,,,,,2.570726,2.570739,2.570648,2.570652,2.570693,2.570685,2.57063,2.57063,2.57063,2.57063,0.964015,0.964019,0.963992,0.963993,0.964005,0.964003,0.963986,0.963986,0.503415,0.503415,24.999068,24.99894,24.999817,24.999787,24.99938,24.999463,25,25,25,25,,,,,,,,,,,2236,2236,2.57063,2.57063,2.57063,2.57063,2.57063,2.57063,2.57063,2.57063,0.963986,0.963986,25,25,, +7305,0,0.111474,1,1,0,2,6,GRV,5,8,Latson,Rd,938109,5.112,5.223,0,2.388723,5.55,5,0.267537,0.267537,0.267537,0.267537,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.267548,0.267547,0.267537,0.267537,0.267548,0.267547,0.267539,0.267539,0.267537,0.267537,0.267539,0.267539,0.267543,0.267544,0.267537,0.267537,0.267543,0.267544,0.267537,0.267537,0.267537,0.267537,0.267537,0.267537,,,,,,,0.267548,0.267547,0.267539,0.267539,0.267543,0.267544,0.267537,0.267537,0.267537,0.267537,0.10033,0.100329,0.100327,0.100327,0.100328,0.100328,0.100326,0.100326,0.052393,0.052393,24.99894,24.999068,24.999787,24.999817,24.999463,24.99938,25,25,25,25,,,,,,,,,,,2236,2236,0.267537,0.267537,0.267537,0.267537,0.267537,0.267537,0.267537,0.267537,0.100326,0.100326,25,25,, +7314,0,1.408351,1,1,0,2,5,,5,8,Oak Grove,Rd,938107,2.492,3.899,0,30.178959,3.7,5,2.816703,2.816703,2.816703,2.816703,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.816779,2.816775,2.816703,2.816703,2.816779,2.816775,2.816726,2.816726,2.816703,2.816703,2.816726,2.816726,2.816778,2.81678,2.816703,2.816703,2.816778,2.81678,2.816703,2.816703,2.816703,2.816703,2.816703,2.816703,,,,,,,2.816779,2.816775,2.816726,2.816726,2.816778,2.81678,2.816703,2.816703,2.816703,2.816703,1.098537,1.098536,1.098521,1.098521,1.098537,1.098537,1.098514,1.098514,0.577424,0.577424,29.999192,29.999234,29.999751,29.999757,29.999203,29.99918,30,30,30,30,,,,,,,,,,,2580,2580,2.816703,2.816703,2.816703,2.816703,2.816703,2.816703,2.816703,2.816703,1.098514,1.098514,30,30,, +8054,0,1.779584,1,1,0,2,6,,5,8,Cohoctah,Rd,939901,2.742,4.52,0,38.133941,5.8,6,3.559168,3.559168,3.559168,3.559168,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.559181,3.559183,3.559168,3.559168,3.559181,3.559183,3.55917,3.55917,3.559168,3.559168,3.55917,3.55917,3.559176,3.559174,3.559168,3.559168,3.559176,3.559174,3.559168,3.559168,3.559168,3.559168,3.559168,3.559168,,,,,,,3.559181,3.559183,3.55917,3.55917,3.559176,3.559174,3.559168,3.559168,3.559168,3.559168,1.388079,1.38808,1.388076,1.388076,1.388078,1.388077,1.388075,1.388075,0.729629,0.729629,29.999892,29.999874,29.999985,29.999982,29.999934,29.999944,30,30,30,30,,,,,,,,,,,2236,2236,3.559168,3.559168,3.559168,3.559168,3.559168,3.559168,3.559168,3.559168,1.388075,1.388075,30,30,, +19935,0,1.505022,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,3.507,5.011,0,32.250462,3.7,5,3.010043,3.010043,3.010043,3.010043,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.010054,3.010052,3.010043,3.010043,3.010054,3.010052,3.010049,3.01005,3.010043,3.010043,3.010049,3.01005,3.010071,3.010074,3.010043,3.010043,3.010071,3.010074,3.010043,3.010043,3.010043,3.010043,3.010043,3.010043,,,,,,,3.010054,3.010052,3.010049,3.01005,3.010071,3.010074,3.010043,3.010043,3.010043,3.010043,1.17392,1.17392,1.173919,1.173919,1.173925,1.173926,1.173917,1.173917,0.617059,0.617059,29.999888,29.999909,29.99994,29.999936,29.999718,29.999695,30,30,30,30,,,,,,,,,,,2580,2580,3.010043,3.010043,3.010043,3.010043,3.010043,3.010043,3.010043,3.010043,1.173917,1.173917,30,30,, +8055,0,0.508533,1,1,0,2,5,,5,8,Cohoctah,Rd,939901,2.233,2.742,0,10.897142,3.7,5,1.017067,1.017067,1.017067,1.017067,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.01712,1.017123,1.017067,1.017067,1.01712,1.017123,1.017086,1.017088,1.017067,1.017067,1.017086,1.017088,1.017151,1.017145,1.017067,1.017067,1.017151,1.017145,1.017067,1.017067,1.017067,1.017067,1.017067,1.017067,,,,,,,1.01712,1.017123,1.017086,1.017088,1.017151,1.017145,1.017067,1.017067,1.017067,1.017067,0.396672,0.396673,0.396662,0.396662,0.396681,0.39668,0.396656,0.396656,0.208499,0.208499,29.99842,29.998337,29.999421,29.999372,29.997525,29.997685,30,30,30,30,,,,,,,,,,,2580,2580,1.017067,1.017067,1.017067,1.017067,1.017067,1.017067,1.017067,1.017067,0.396656,0.396656,30,30,, +34061,0,0.908819,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.635274,3.635274,3.635274,3.635274,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,,,,,,,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,1.25417,1.25417,1.25417,1.25417,1.25417,1.25417,1.25417,1.25417,0.645261,0.645261,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,3.635274,1.25417,1.25417,15,15,, +8531,0,0.787827,1,1,0,2,5,,5,6,Lewis,Ave,1226808,14.248,15.035,0,16.882006,3.7,5,1.575654,1.575654,1.575654,1.575654,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.575743,1.575656,1.575654,1.575654,1.575743,1.575656,1.575656,1.575655,1.575654,1.575654,1.575656,1.575655,1.575661,1.575759,1.575654,1.575654,1.575661,1.575759,1.575654,1.575654,1.575654,1.575654,1.575654,1.575654,,,,,,,1.575743,1.575656,1.575656,1.575655,1.575661,1.575759,1.575654,1.575654,1.575654,1.575654,0.614532,0.614506,0.614506,0.614505,0.614507,0.614537,0.614505,0.614505,0.323009,0.323009,29.99831,29.999954,29.999967,29.999976,29.999866,29.997991,30,30,30,30,,,,,,,,,,,2580,2580,1.575654,1.575654,1.575654,1.575654,1.575654,1.575654,1.575654,1.575654,0.614505,0.614505,30,30,, +8569,0,1.524236,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,0,1.524,0,32.662202,3.7,5,3.048472,3.048472,3.048472,3.048472,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.048479,3.048489,3.048472,3.048472,3.048479,3.048489,3.048478,3.048476,3.048472,3.048472,3.048478,3.048476,3.048725,3.048646,3.048472,3.048472,3.048725,3.048646,3.048472,3.048472,3.048472,3.048472,3.048472,3.048472,,,,,,,3.048479,3.048489,3.048478,3.048476,3.048725,3.048646,3.048472,3.048472,3.048472,3.048472,1.188906,1.188909,1.188906,1.188905,1.18898,1.188956,1.188904,1.188904,0.624937,0.624937,29.999928,29.999837,29.999939,29.999965,29.997512,29.998287,30,30,30,30,,,,,,,,,,,2580,2580,3.048472,3.048472,3.048472,3.048472,3.048472,3.048472,3.048472,3.048472,1.188904,1.188904,30,30,, +8907,1,1.166968,2,0,0,1,2,,4,6,N US 23,,1223505,15.315,16.481,0,,0.8,7.5,1.000258,,1.000258,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.015188,,1.000258,,1.015188,,1.000642,,1.000258,,1.000642,,1.001055,,1.000258,,1.001055,,1.000258,,1.000258,,1.000258,,,,,,,,1.015188,,1.000642,,1.001055,,1.000258,,1.000258,,0.514611,,0.510247,,0.510371,,0.510132,,0.278405,,68.970541,,69.973121,,69.944293,,70,,70,,,,,,,,,,,,15136,,1.000258,,1.000258,,1.000258,,1.000258,,0.510132,,70,,, +8932,-1,2.144963,0,2,0,1,2,,5,6,S US 23,,1223504,14.433,16.577,0,,1.02,7,,1.838539,,1.838539,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.840069,,1.838539,,1.840069,,1.839896,,1.838539,,1.839896,,1.866106,,1.838539,,1.866106,,1.838539,,1.838539,,1.838539,,,,,,,,1.840069,,1.839896,,1.866106,,1.838539,,1.838539,,0.938114,,0.938062,,0.945925,,0.937655,,0.511727,,69.94182,,69.948378,,68.965924,,70,,70,,,,,,,,,,,,15136,,1.838539,,1.838539,,1.838539,,1.838539,,0.937655,,70,, +8976,0,2.342182,1,1,0,2,4,,5,6,Custer,Rd,1223803,11.162,13.504,0,50.189623,3,4,3.513274,3.513274,3.513274,3.513274,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.62252,3.631389,3.513274,3.513274,3.62252,3.631389,3.520425,3.519174,3.513274,3.513274,3.520425,3.519174,3.648769,3.662599,3.513274,3.513274,3.648769,3.662599,3.513274,3.513274,3.513274,3.513274,3.513274,3.513274,,,,,,,3.62252,3.631389,3.520425,3.519174,3.648769,3.662599,3.513274,3.513274,3.513274,3.513274,1.508349,1.511009,1.47772,1.477345,1.516224,1.520373,1.475575,1.475575,0.784631,0.784631,38.793695,38.698952,39.918745,39.932934,38.514613,38.369184,40,40,40,40,,,,,,,,,,,3096,3096,3.513274,3.513274,3.513274,3.513274,3.513274,3.513274,3.513274,3.513274,1.475575,1.475575,40,40,, +9072,0,3.136635,1,1,0,2,5,,5,6,Custer,Rd,1226001,13.898,17.034,0,67.213614,3.7,5,6.273271,6.273271,6.273271,6.273271,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,6.295593,6.273599,6.273271,6.273271,6.295593,6.273599,6.277554,6.275189,6.273271,6.273271,6.277554,6.275189,6.286251,6.314543,6.273271,6.273271,6.286251,6.314543,6.273271,6.273271,6.273271,6.273271,6.273271,6.273271,,,,,,,6.295593,6.273599,6.277554,6.275189,6.286251,6.314543,6.273271,6.273271,6.273271,6.273271,2.453272,2.446674,2.447861,2.447151,2.45047,2.458957,2.446576,2.446576,1.28602,1.28602,29.893628,29.998432,29.979528,29.990827,29.938053,29.803919,30,30,30,30,,,,,,,,,,,2580,2580,6.273271,6.273271,6.273271,6.273271,6.273271,6.273271,6.273271,6.273271,2.446576,2.446576,30,30,, +9203,0,0.655533,1,1,0,2,5,,5,6,Lloyd,Rd,1225909,0.712,1.367,0,14.047131,3.7,5,1.311066,1.311066,1.311066,1.311066,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.311212,1.311083,1.311066,1.311066,1.311212,1.311083,1.311142,1.311066,1.311066,1.311066,1.311142,1.311066,1.31167,1.311176,1.311066,1.311066,1.31167,1.311176,1.311066,1.311066,1.311066,1.311066,1.311066,1.311066,,,,,,,1.311212,1.311083,1.311142,1.311066,1.31167,1.311176,1.311066,1.311066,1.311066,1.311066,0.51136,0.511321,0.511338,0.511316,0.511497,0.511349,0.511316,0.511316,0.268768,0.268768,29.996644,29.999592,29.998259,30,29.986171,29.997479,30,30,30,30,,,,,,,,,,,2580,2580,1.311066,1.311066,1.311066,1.311066,1.311066,1.311066,1.311066,1.311066,0.511316,0.511316,30,30,, +9382,0,0.449979,2,2,0,2,4,,3,6,Monroe,St,1227004,16.666,17.116,0,9.642405,6,4.5,0.818143,0.818143,0.818143,0.818143,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.838202,0.826115,0.818143,0.818143,0.838202,0.826115,0.819957,0.821345,0.818143,0.818143,0.819957,0.821345,0.834834,0.863027,0.818143,0.818143,0.834834,0.863027,0.818143,0.818143,0.818143,0.818143,0.818143,0.818143,,,,,,,0.838202,0.826115,0.819957,0.821345,0.834834,0.863027,0.818143,0.818143,0.818143,0.818143,0.332457,0.328831,0.326983,0.3274,0.331447,0.339904,0.326439,0.326439,0.172219,0.172219,32.210281,32.681569,32.927029,32.871371,32.340229,31.283765,33,33,33,33,,,,,,,,,,,5160,5160,0.818143,0.818143,0.818143,0.818143,0.818143,0.818143,0.818143,0.818143,0.326439,0.326439,33,33,, +9425,1,2.111128,3,0,0,1,1,,5,6,N I 75,,1226910,15.63,17.74,0,,1.02,7,1.809538,,1.809538,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.832422,,1.809538,,1.832422,,1.810508,,1.809538,,1.810508,,1.812489,,1.809538,,1.812489,,1.809538,,1.809538,,1.809538,,,,,,,,1.832422,,1.810508,,1.812489,,1.809538,,1.809538,,0.92973,,0.923155,,0.92375,,0.922864,,0.503655,,69.125806,,69.96249,,69.886038,,70,,70,,,,,,,,,,,,22704,,1.809538,,1.809538,,1.809538,,1.809538,,0.922864,,70,,, +9451,-1,2.193367,0,3,0,1,1,,5,6,S I 75,,1226909,15.54,17.733,0,,1.02,7,,1.880029,,1.880029,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.881691,,1.880029,,1.881691,,1.880909,,1.880029,,1.880909,,1.900068,,1.880029,,1.900068,,1.880029,,1.880029,,1.880029,,,,,,,,1.881691,,1.880909,,1.900068,,1.880029,,1.880029,,0.959313,,0.959079,,0.964827,,0.958815,,0.523275,,69.938182,,69.967256,,69.261739,,70,,70,,,,,,,,,,,,22704,,1.880029,,1.880029,,1.880029,,1.880029,,0.958815,,70,, +10160,0,0.40311,2,2,0,2,4,,4,6,Stewart,Rd,1237610,8.3,8.703,0,8.638063,4.5,4.5,0.636489,0.636489,0.636489,0.636489,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.637416,0.636599,0.636489,0.636489,0.637416,0.636599,0.638521,0.637912,0.636489,0.636489,0.638521,0.637912,0.641045,0.644121,0.636489,0.636489,0.641045,0.644121,0.636489,0.636489,0.636489,0.636489,0.636489,0.636489,,,,,,,0.637416,0.636599,0.638521,0.637912,0.641045,0.644121,0.636489,0.636489,0.636489,0.636489,0.263785,0.263539,0.264116,0.263933,0.264873,0.265796,0.263506,0.263506,0.139815,0.139815,37.94473,37.993438,37.87905,37.915207,37.729925,37.54977,38,38,38,38,,,,,,,,,,,6192,6192,0.636489,0.636489,0.636489,0.636489,0.636489,0.636489,0.636489,0.636489,0.263506,0.263506,38,38,, +10417,0,1.007303,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,1.893,2.9,0,21.585064,3.7,5,2.014606,2.014606,2.014606,2.014606,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,,,,,,,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,0.785696,0.785696,0.785696,0.785696,0.785696,0.785696,0.785696,0.785696,0.412994,0.412994,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,2.014606,0.785696,0.785696,30,30,, +10428,0,0.986887,1,1,0,2,7,,5,6,Dixon,Rd,1234503,4.731,5.717,0,21.147574,5.8,6,2.368528,2.368528,2.368528,2.368528,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.368963,2.368543,2.368528,2.368528,2.368963,2.368543,2.368538,2.368539,2.368528,2.368528,2.368538,2.368539,2.368557,2.375787,2.368528,2.368528,2.368557,2.375787,2.368528,2.368528,2.368528,2.368528,2.368528,2.368528,,,,,,,2.368963,2.368543,2.368538,2.368539,2.368557,2.375787,2.368528,2.368528,2.368528,2.368528,0.888329,0.888202,0.888201,0.888201,0.888207,0.890376,0.888198,0.888198,0.463837,0.463837,24.995408,24.99985,24.999896,24.999886,24.999696,24.923618,25,25,25,25,,,,,,,,,,,2064,2064,2.368528,2.368528,2.368528,2.368528,2.368528,2.368528,2.368528,2.368528,0.888198,0.888198,25,25,, +20236,0,0.584081,1,1,0,2,5,,5,6,Vivian,Rd,4301667,0.128,0.712,0,12.516032,3.7,5,1.168163,1.168163,1.168163,1.168163,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.168165,1.168163,1.168163,1.168163,1.168165,1.168163,1.168163,1.168163,1.168163,1.168163,1.168163,1.168163,1.168163,1.168328,1.168163,1.168163,1.168163,1.168328,1.168163,1.168163,1.168163,1.168163,1.168163,1.168163,,,,,,,1.168165,1.168163,1.168163,1.168163,1.168163,1.168328,1.168163,1.168163,1.168163,1.168163,0.455584,0.455584,0.455584,0.455584,0.455584,0.455633,0.455584,0.455584,0.239473,0.239473,29.99994,29.999998,29.999994,29.999995,29.99999,29.995769,30,30,30,30,,,,,,,,,,,2580,2580,1.168163,1.168163,1.168163,1.168163,1.168163,1.168163,1.168163,1.168163,0.455584,0.455584,30,30,, +20334,0,0.337228,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,3.987,4.324,0,7.226311,4.5,4.5,0.532465,0.532465,0.532465,0.532465,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.533424,0.534376,0.532465,0.532465,0.533424,0.534376,0.532983,0.533086,0.532465,0.532465,0.532983,0.533086,0.536038,0.536804,0.532465,0.532465,0.536038,0.536804,0.532465,0.532465,0.532465,0.532465,0.532465,0.532465,,,,,,,0.533424,0.534376,0.532983,0.533086,0.536038,0.536804,0.532465,0.532465,0.532465,0.532465,0.220728,0.221014,0.220596,0.220627,0.221512,0.221742,0.220441,0.220441,0.116965,0.116965,37.931703,37.864079,37.963099,37.95575,37.746728,37.69283,38,38,38,38,,,,,,,,,,,3406,3406,0.532465,0.532465,0.532465,0.532465,0.532465,0.532465,0.532465,0.532465,0.220441,0.220441,38,38,, +20523,0,0.537128,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,16.164,16.701,0,11.509877,5,5,0.92079,0.92079,0.92079,0.92079,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.962151,0.926728,0.92079,0.92079,0.962151,0.926728,0.927456,0.925373,0.92079,0.92079,0.927456,0.925373,0.957952,0.999923,0.92079,0.92079,0.957952,0.999923,0.92079,0.92079,0.92079,0.92079,0.92079,0.92079,,,,,,,0.962151,0.926728,0.927456,0.925373,0.957952,0.999923,0.92079,0.92079,0.92079,0.92079,0.385328,0.374701,0.37492,0.374295,0.384068,0.39666,0.37292,0.37292,0.197203,0.197203,33.495419,34.775758,34.748431,34.82668,33.642261,32.230153,35,35,35,35,,,,,,,,,,,7946,7946,0.92079,0.92079,0.92079,0.92079,0.92079,0.92079,0.92079,0.92079,0.37292,0.37292,35,35,, +20873,0,1.798344,1,1,0,2,7,,5,6,Hurd,Rd,4301449,0.934,2.731,0,38.535936,5.8,6,4.316025,4.316025,4.316025,4.316025,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,,,,,,,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,1.618509,1.618509,1.618509,1.618509,1.618509,1.618509,1.618509,1.618509,0.845222,0.845222,25,24.999998,25,25,24.999999,24.999999,25,25,25,25,,,,,,,,,,,2064,2064,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,4.316025,1.618509,1.618509,25,25,, +31022,0,0.573031,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.27924,0.15,4,2.292125,2.292125,2.292125,2.292125,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,,,,,,,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,0.790783,0.790783,0.790783,0.790783,0.790783,0.790783,0.790783,0.790783,0.406852,0.406852,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,2.292125,0.790783,0.790783,15,15,, +31023,0,0.807536,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,17.304338,0.15,4,3.230143,3.230143,3.230143,3.230143,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,,,,,,,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,1.114399,1.114399,1.114399,1.114399,1.114399,1.114399,1.114399,1.114399,0.57335,0.57335,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,3.230143,1.114399,1.114399,15,15,, +31031,0,1.639395,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.129885,0.15,4,6.557579,6.557579,6.557579,6.557579,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,,,,,,,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,2.262365,2.262365,2.262365,2.262365,2.262365,2.262365,2.262365,2.262365,1.16397,1.16397,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,6.557579,2.262365,2.262365,15,15,, +31037,0,0.486284,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,10.420362,0.15,4,2.917701,2.917701,2.917701,2.917701,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,,,,,,,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,0.962841,0.962841,0.962841,0.962841,0.962841,0.962841,0.962841,0.962841,0.491146,0.491146,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,2.917701,0.962841,0.962841,10,10,, +31039,0,1.180717,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,25.301073,0.15,4,4.722867,4.722867,4.722867,4.722867,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,,,,,,,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,1.629389,1.629389,1.629389,1.629389,1.629389,1.629389,1.629389,1.629389,0.838309,0.838309,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,4.722867,1.629389,1.629389,15,15,, +33995,0,0.689784,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.781077,0.15,4,2.759134,2.759134,2.759134,2.759134,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.759135,2.759134,2.759134,2.759134,2.759135,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,,,,,,,2.759135,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,0.951901,0.951901,0.951901,0.951901,0.951901,0.951901,0.951901,0.951901,0.489746,0.489746,14.999998,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,2.759134,0.951901,0.951901,15,15,, +34000,0,1.13996,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.427705,0.15,4,4.559838,4.559838,4.559838,4.559838,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,,,,,,,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,1.573144,1.573144,1.573144,1.573144,1.573144,1.573144,1.573144,1.573144,0.809371,0.809371,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,4.559838,1.573144,1.573144,15,15,, +34012,0,1.964809,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,42.103059,0.15,4,7.859238,7.859238,7.859238,7.859238,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,,,,,,,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,2.711437,2.711437,2.711437,2.711437,2.711437,2.711437,2.711437,2.711437,1.395015,1.395015,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,7.859238,2.711437,2.711437,15,15,, +8514,1,0.415666,1,0,0,1,1,RON,4,6,Dixie/S I 75,RAMP,1225601,0,0.416,0,,1.09,4,0.554222,,0.554222,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.554548,,0.554222,,0.554548,,0.55444,,0.554222,,0.55444,,0.555463,,0.554222,,0.555463,,0.554222,,0.554222,,0.554222,,,,,,,,0.554548,,0.55444,,0.555463,,0.554222,,0.554222,,0.241184,,0.241152,,0.241459,,0.241086,,0.128857,,44.973494,,44.982258,,44.89942,,45,,45,,,,,,,,,,,,5160,,0.554222,,0.554222,,0.554222,,0.554222,,0.241086,,45,,, +8709,1,0.405661,1,0,0,1,1,ROF,4,6,S I 75/Dixie,RAMP,1225510,0,0.406,0,,2.24,5,0.608492,,0.608492,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.61258,,0.608492,,0.61258,,0.608731,,0.608492,,0.608731,,0.627288,,0.608492,,0.627288,,0.608492,,0.608492,,0.608492,,,,,,,,0.61258,,0.608731,,0.627288,,0.608492,,0.608492,,0.256793,,0.255638,,0.261205,,0.255567,,0.135896,,39.733057,,39.984284,,38.801443,,40,,40,,,,,,,,,,,,5160,,0.608492,,0.608492,,0.608492,,0.608492,,0.255567,,40,,, +8751,0,0.610916,1,1,0,2,5,,5,6,Front,St,1223803,21.602,22.212,0,13.091063,3.7,5,1.221833,1.221833,1.221833,1.221833,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.222398,1.221839,1.221833,1.221833,1.222398,1.221839,1.221883,1.221868,1.221833,1.221833,1.221883,1.221868,1.221888,1.222368,1.221833,1.221833,1.221888,1.222368,1.221833,1.221833,1.221833,1.221833,1.221833,1.221833,,,,,,,1.222398,1.221839,1.221883,1.221868,1.221888,1.222368,1.221833,1.221833,1.221833,1.221833,0.476684,0.476517,0.47653,0.476525,0.476531,0.476675,0.476515,0.476515,0.250476,0.250476,29.986133,29.999834,29.99876,29.999121,29.998641,29.986853,30,30,30,30,,,,,,,,,,,2580,2580,1.221833,1.221833,1.221833,1.221833,1.221833,1.221833,1.221833,1.221833,0.476515,0.476515,30,30,, +9133,0,0.372904,2,2,0,2,5,,5,6,Elm,Ave,1226001,22.851,23.224,0,7.990792,3.7,5,0.745807,0.745807,0.745807,0.745807,30,30,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,,,,,,,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.290865,0.290865,0.290865,0.290865,0.290865,0.290865,0.290865,0.290865,0.15289,0.15289,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,5160,5160,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.745807,0.290865,0.290865,30,30,, +9427,1,1.252029,3,0,0,1,1,,4,6,N I 75,,1226910,13.673,14.924,0,,0.8,7.5,1.073168,,1.073168,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.07588,,1.073168,,1.07588,,1.073383,,1.073168,,1.073383,,1.073738,,1.073168,,1.073738,,1.073168,,1.073168,,1.073168,,,,,,,,1.07588,,1.073383,,1.073738,,1.073168,,1.073168,,0.548129,,0.54738,,0.547487,,0.547316,,0.298698,,69.823537,,69.985946,,69.962819,,70,,70,,,,,,,,,,,,22704,,1.073168,,1.073168,,1.073168,,1.073168,,0.547316,,70,,, +9452,-1,0.777442,0,3,0,1,1,,5,6,S I 75,,1226909,14.763,15.54,0,,1.02,7,,0.666379,,0.666379,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.666508,,0.666379,,0.666508,,0.666505,,0.666379,,0.666505,,0.668073,,0.666379,,0.668073,,0.666379,,0.666379,,0.666379,,,,,,,,0.666508,,0.666505,,0.668073,,0.666379,,0.666379,,0.339892,,0.339891,,0.340362,,0.339853,,0.185475,,69.986415,,69.986706,,69.822419,,70,,70,,,,,,,,,,,,22704,,0.666379,,0.666379,,0.666379,,0.666379,,0.339853,,70,, +19885,0,0.213794,2,2,1,2,4,,5,6,Dixie,Hwy,4301655,1.624,1.838,0,4.581293,3,4,0.320691,0.320691,0.320691,0.320691,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.406158,0.327379,0.320691,0.320691,0.406158,0.327379,0.326827,0.324414,0.320691,0.320691,0.326827,0.324414,0.345898,0.333758,0.320691,0.320691,0.345898,0.333758,0.320691,0.320691,0.320691,0.320691,0.320691,0.320691,,,,,,,0.406158,0.327379,0.326827,0.324414,0.345898,0.333758,0.320691,0.320691,0.320691,0.320691,0.16033,0.136697,0.136531,0.135807,0.142252,0.13861,0.13469,0.13469,0.071621,0.071621,31.582858,39.182809,39.249013,39.540861,37.084991,38.433882,40,40,40,40,,,,,,,,,,,6502,6502,0.320691,0.320691,0.320691,0.320691,0.320691,0.320691,0.320691,0.320691,0.13469,0.13469,40,40,, +20469,0,1.472382,1,1,0,2,5,,5,6,Sandy Creek,Rd,4300066,0.6,2.072,0,31.551049,3.7,5,2.944765,2.944765,2.944765,2.944765,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.944776,2.944846,2.944765,2.944765,2.944776,2.944846,2.94483,2.944903,2.944765,2.944765,2.94483,2.944903,2.94666,2.945628,2.944765,2.944765,2.94666,2.945628,2.944765,2.944765,2.944765,2.944765,2.944765,2.944765,,,,,,,2.944776,2.944846,2.94483,2.944903,2.94666,2.945628,2.944765,2.944765,2.944765,2.944765,1.148462,1.148483,1.148478,1.1485,1.149027,1.148717,1.148458,1.148458,0.603677,0.603677,29.999886,29.999166,29.999337,29.998589,29.980705,29.991208,30,30,30,30,,,,,,,,,,,2580,2580,2.944765,2.944765,2.944765,2.944765,2.944765,2.944765,2.944765,2.944765,1.148458,1.148458,30,30,, +31044,0,1.080695,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,23.157753,0.15,4,4.322781,4.322781,4.322781,4.322781,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,,,,,,,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,1.491359,1.491359,1.491359,1.491359,1.491359,1.491359,1.491359,1.491359,0.767294,0.767294,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,4.322781,1.491359,1.491359,15,15,, +8651,0,2.022525,1,1,0,2,4,,5,6,Samaria,Rd,1226710,3.043,5.065,0,43.339828,3,4,3.033788,3.033788,3.033788,3.033788,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.385657,3.285215,3.033788,3.033788,3.385657,3.285215,3.211952,3.207105,3.033788,3.033788,3.211952,3.207105,3.582621,3.601239,3.033788,3.033788,3.582621,3.601239,3.033788,3.033788,3.033788,3.033788,3.033788,3.033788,,,,,,,3.385657,3.285215,3.211952,3.207105,3.582621,3.601239,3.033788,3.033788,3.033788,3.033788,1.379752,1.349619,1.32764,1.326186,1.438841,1.444426,1.274191,1.274191,0.677546,0.677546,35.842823,36.938679,37.781234,37.838337,33.87227,33.697155,40,40,40,40,,,,,,,,,,,3096,3096,3.033788,3.033788,3.033788,3.033788,3.033788,3.033788,3.033788,3.033788,1.274191,1.274191,40,40,, +8813,0,1.752283,1,1,0,2,4,,5,6,Ida West,Rd,1223706,3.544,5.295,0,37.548926,3,4,2.628425,2.628425,2.628425,2.628425,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.910418,3.269519,2.628425,2.628425,2.910418,3.269519,2.685791,2.694321,2.628425,2.628425,2.685791,2.694321,3.444565,3.078244,2.628425,2.628425,3.444565,3.078244,2.628425,2.628425,2.628425,2.628425,2.628425,2.628425,,,,,,,2.910418,3.269519,2.685791,2.694321,3.444565,3.078244,2.628425,2.628425,2.628425,2.628425,1.188536,1.296267,1.121148,1.123707,1.348781,1.238884,1.103938,1.103938,0.587015,0.587015,36.124363,32.15672,39.145633,39.021702,30.522572,34.154855,40,40,40,40,,,,,,,,,,,3096,3096,2.628425,2.628425,2.628425,2.628425,2.628425,2.628425,2.628425,2.628425,1.103938,1.103938,40,40,, +8823,0,1.231433,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,7.219,8.45,0,26.387841,3.7,5,2.462865,2.462865,2.462865,2.462865,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.466776,2.469061,2.462865,2.462865,2.466776,2.469061,2.462958,2.463055,2.462865,2.462865,2.462958,2.463055,2.492034,2.483513,2.462865,2.462865,2.492034,2.483513,2.462865,2.462865,2.462865,2.462865,2.462865,2.462865,,,,,,,2.466776,2.469061,2.462958,2.463055,2.492034,2.483513,2.462865,2.462865,2.462865,2.462865,0.961691,0.962376,0.960545,0.960574,0.969268,0.966712,0.960517,0.960517,0.504887,0.504887,29.952438,29.924718,29.998866,29.997691,29.648854,29.750579,30,30,30,30,,,,,,,,,,,2580,2580,2.462865,2.462865,2.462865,2.462865,2.462865,2.462865,2.462865,2.462865,0.960517,0.960517,30,30,, +8833,0,0.558621,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,11.869,12.428,0,11.970455,4.5,4.5,0.882034,0.882034,0.882034,0.882034,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.208446,1.496797,0.882034,0.882034,1.208446,1.496797,1.182205,1.184583,0.882034,0.882034,1.182205,1.184583,1.718711,1.495362,0.882034,0.882034,1.718711,1.495362,0.882034,0.882034,0.882034,0.882034,0.882034,0.882034,,,,,,,1.208446,1.496797,1.182205,1.184583,1.718711,1.495362,0.882034,0.882034,0.882034,0.882034,0.463086,0.549591,0.455213,0.455927,0.616165,0.54916,0.365162,0.365162,0.193753,0.193753,27.735855,22.392671,28.351486,28.294581,19.501405,22.414161,38,38,38,38,,,,,,,,,,,3096,3096,0.882034,0.882034,0.882034,0.882034,0.882034,0.882034,0.882034,0.882034,0.365162,0.365162,38,38,, +8859,0,0.526635,1,1,0,2,4,,4,6,Sterns,Rd,1223310,7.158,7.685,0,11.285032,4.5,4.5,0.831529,0.831529,0.831529,0.831529,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.079343,1.157336,0.831529,0.831529,1.079343,1.157336,1.061768,1.056113,0.831529,0.831529,1.061768,1.056113,1.313217,1.246482,0.831529,0.831529,1.313217,1.246482,0.831529,0.831529,0.831529,0.831529,0.831529,0.831529,,,,,,,1.079343,1.157336,1.061768,1.056113,1.313217,1.246482,0.831529,0.831529,0.831529,0.831529,0.418597,0.441995,0.413325,0.411628,0.488759,0.468739,0.344253,0.344253,0.182659,0.182659,29.275311,27.30243,29.759871,29.919229,24.061589,25.349814,38,38,38,38,,,,,,,,,,,3096,3096,0.831529,0.831529,0.831529,0.831529,0.831529,0.831529,0.831529,0.831529,0.344253,0.344253,38,38,, +9250,0,0.47534,1,1,0,2,4,,4,6,Smith,Rd,1232401,2.127,2.602,0,10.185848,4.5,4.5,0.750536,0.750536,0.750536,0.750536,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.887166,0.906443,0.750536,0.750536,0.887166,0.906443,0.851311,0.850564,0.750536,0.750536,0.851311,0.850564,1.080493,1.060282,0.750536,0.750536,1.080493,1.060282,0.750536,0.750536,0.750536,0.750536,0.750536,0.750536,,,,,,,0.887166,0.906443,0.851311,0.850564,1.080493,1.060282,0.750536,0.750536,0.750536,0.750536,0.351711,0.357494,0.340954,0.34073,0.409709,0.403646,0.310722,0.310722,0.164868,0.164868,32.147721,31.464043,33.501722,33.53112,26.395692,26.898857,38,38,38,38,,,,,,,,,,,3096,3096,0.750536,0.750536,0.750536,0.750536,0.750536,0.750536,0.750536,0.750536,0.310722,0.310722,38,38,, +9265,0,1.023674,1,1,0,2,5,,5,6,Temperance,Rd,1232206,3.513,4.536,0,21.935874,3.7,5,2.047348,2.047348,2.047348,2.047348,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.452505,2.198371,2.047348,2.047348,2.452505,2.198371,2.082005,2.085714,2.047348,2.047348,2.082005,2.085714,2.381401,2.473563,2.047348,2.047348,2.381401,2.473563,2.047348,2.047348,2.047348,2.047348,2.047348,2.047348,,,,,,,2.452505,2.198371,2.082005,2.085714,2.381401,2.473563,2.047348,2.047348,2.047348,2.047348,0.920013,0.843773,0.808863,0.809975,0.898682,0.92633,0.798466,0.798466,0.419706,0.419706,25.043968,27.939067,29.500621,29.448168,25.791728,24.830756,30,30,30,30,,,,,,,,,,,2580,2580,2.047348,2.047348,2.047348,2.047348,2.047348,2.047348,2.047348,2.047348,0.798466,0.798466,30,30,, +31058,0,1.961633,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,42.034984,0.15,4,7.84653,7.84653,7.84653,7.84653,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,,,,,,,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,2.707053,2.707053,2.707053,2.707053,2.707053,2.707053,2.707053,2.707053,1.392759,1.392759,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,7.84653,2.707053,2.707053,15,15,, +31087,0,0.516285,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.063258,0.15,4,2.065141,2.065141,2.065141,2.065141,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,,,,,,,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,0.712474,0.712474,0.712474,0.712474,0.712474,0.712474,0.712474,0.712474,0.366563,0.366563,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,2.065141,0.712474,0.712474,15,15,, +31130,0,0.499429,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.70205,0.15,4,1.997716,1.997716,1.997716,1.997716,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,,,,,,,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,0.689212,0.689212,0.689212,0.689212,0.689212,0.689212,0.689212,0.689212,0.354595,0.354595,15,14.999999,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,1.997716,0.689212,0.689212,15,15,, +34010,0,0.619119,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,13.266834,0.15,4,2.476476,2.476476,2.476476,2.476476,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,,,,,,,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,0.854384,0.854384,0.854384,0.854384,0.854384,0.854384,0.854384,0.854384,0.439574,0.439574,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,2.476476,0.854384,0.854384,15,15,, +8434,0,1.090868,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,7.683,8.774,0,23.375735,3.7,5,2.181735,2.181735,2.181735,2.181735,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.26236,3.093333,2.181735,2.181735,2.26236,3.093333,2.258591,2.279587,2.181735,2.181735,2.258591,2.279587,3.075139,2.367867,2.181735,2.181735,3.075139,2.367867,2.181735,2.181735,2.181735,2.181735,2.181735,2.181735,,,,,,,2.26236,3.093333,2.258591,2.279587,3.075139,2.367867,2.181735,2.181735,2.181735,2.181735,0.875064,1.124356,0.873934,0.880232,1.118898,0.906716,0.850877,0.850877,0.447256,0.447256,28.930873,21.159076,28.979149,28.712244,21.284258,27.641784,30,30,30,30,,,,,,,,,,,2580,2580,2.181735,2.181735,2.181735,2.181735,2.181735,2.181735,2.181735,2.181735,0.850877,0.850877,30,30,, +8443,0,1.668185,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,0,1.668,0,35.746816,3,4,2.502277,2.502277,2.502277,2.502277,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.502583,2.502561,2.502277,2.502277,2.502583,2.502561,2.50231,2.502308,2.502277,2.502277,2.50231,2.502308,2.502312,2.502309,2.502277,2.502277,2.502312,2.502309,2.502277,2.502277,2.502277,2.502277,2.502277,2.502277,,,,,,,2.502583,2.502561,2.50231,2.502308,2.502312,2.502309,2.502277,2.502277,2.502277,2.502277,1.051048,1.051042,1.050966,1.050966,1.050967,1.050966,1.050956,1.050956,0.558842,0.558842,39.995111,39.995456,39.999482,39.999501,39.999448,39.999484,40,40,40,40,,,,,,,,,,,3096,3096,2.502277,2.502277,2.502277,2.502277,2.502277,2.502277,2.502277,2.502277,1.050956,1.050956,40,40,, +8555,0,0.969018,1,1,0,2,5,,5,6,Yankee,Rd,1223403,0,0.969,0,20.76467,3.7,5,1.938036,1.938036,1.938036,1.938036,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.939215,1.938103,1.938036,1.938036,1.939215,1.938103,1.938959,1.939545,1.938036,1.938036,1.938959,1.939545,1.938103,1.938246,1.938036,1.938036,1.938103,1.938246,1.938036,1.938036,1.938036,1.938036,1.938036,1.938036,,,,,,,1.939215,1.938103,1.938959,1.939545,1.938103,1.938246,1.938036,1.938036,1.938036,1.938036,0.756188,0.755854,0.756111,0.756287,0.755854,0.755897,0.755834,0.755834,0.397297,0.397297,29.981757,29.998962,29.985721,29.976664,29.998954,29.996745,30,30,30,30,,,,,,,,,,,2580,2580,1.938036,1.938036,1.938036,1.938036,1.938036,1.938036,1.938036,1.938036,0.755834,0.755834,30,30,, +8828,0,2.01455,1,1,0,2,6,,5,6,Ida Center,Rd,1223704,0,2.014,0,43.168928,5.8,6,4.0291,4.0291,4.0291,4.0291,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,,,,,,,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,1.571349,1.571349,1.571349,1.571349,1.571349,1.571349,1.571349,1.571349,0.825965,0.825965,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,4.0291,1.571349,1.571349,30,30,, +9089,0,0.893566,1,1,0,2,6,,5,6,Ottawa Lake,Rd,1223306,0,0.893,0,19.147847,5.8,6,1.787132,1.787132,1.787132,1.787132,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,,,,,,,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,0.696982,0.696982,0.696982,0.696982,0.696982,0.696982,0.696982,0.696982,0.366362,0.366362,29.999998,30,29.999998,29.999999,29.999999,30,30,30,30,30,,,,,,,,,,,2236,2236,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,1.787132,0.696982,0.696982,30,30,, +9093,0,1.022014,1,1,0,2,6,,5,6,Secor,Rd,1223604,5.451,6.472,0,21.900311,5.8,6,2.044029,2.044029,2.044029,2.044029,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.044541,2.044041,2.044029,2.044029,2.044541,2.044041,2.044052,2.044061,2.044029,2.044029,2.044052,2.044061,2.044074,2.045959,2.044029,2.044029,2.044074,2.045959,2.044029,2.044029,2.044029,2.044029,2.044029,2.044029,,,,,,,2.044541,2.044041,2.044052,2.044061,2.044074,2.045959,2.044029,2.044029,2.044029,2.044029,0.797325,0.797175,0.797178,0.797181,0.797185,0.79775,0.797171,0.797171,0.419026,0.419026,29.992492,29.999831,29.999659,29.999523,29.999345,29.971705,30,30,30,30,,,,,,,,,,,2236,2236,2.044029,2.044029,2.044029,2.044029,2.044029,2.044029,2.044029,2.044029,0.797171,0.797171,30,30,, +9135,0,1.749184,1,1,0,2,3,,5,6,US 223,,1223208,0.343,2.092,0,37.482517,1.7,4,2.099021,2.099021,2.099021,2.099021,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.150333,2.156099,2.099021,2.099021,2.150333,2.156099,2.109838,2.110554,2.099021,2.099021,2.109838,2.110554,2.112579,2.112263,2.099021,2.099021,2.112579,2.112263,2.099021,2.099021,2.099021,2.099021,2.099021,2.099021,,,,,,,2.150333,2.156099,2.109838,2.110554,2.112579,2.112263,2.099021,2.099021,2.099021,2.099021,0.959953,0.961683,0.947804,0.948019,0.948627,0.948532,0.944559,0.944559,0.507263,0.507263,48.806877,48.676355,49.743663,49.726782,49.67911,49.686548,50,50,50,50,,,,,,,,,,,3096,3096,2.099021,2.099021,2.099021,2.099021,2.099021,2.099021,2.099021,2.099021,0.944559,0.944559,50,50,, +9136,1,3.144687,2,0,0,1,2,,5,6,N US 23,,1223505,5.358,8.501,0,,1.02,7,2.695446,,2.695446,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.702519,,2.695446,,2.702519,,2.696221,,2.695446,,2.696221,,2.697997,,2.695446,,2.697997,,2.695446,,2.695446,,2.695446,,,,,,,,2.702519,,2.696221,,2.697997,,2.695446,,2.695446,,1.376799,,1.37491,,1.375443,,1.374677,,0.750232,,69.816786,,69.979878,,69.933801,,70,,70,,,,,,,,,,,,15136,,2.695446,,2.695446,,2.695446,,2.695446,,1.374677,,70,,, +9151,-1,3.313147,0,2,0,1,2,,5,6,S US 23,,1223504,5.329,8.641,0,,1.02,7,,2.83984,,2.83984,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.841541,,2.83984,,2.841541,,2.840466,,2.83984,,2.840466,,2.846852,,2.83984,,2.846852,,2.83984,,2.83984,,2.83984,,,,,,,,2.841541,,2.840466,,2.846852,,2.83984,,2.83984,,1.448829,,1.448506,,1.450422,,1.448318,,0.790422,,69.958103,,69.984571,,69.827592,,70,,70,,,,,,,,,,,,15136,,2.83984,,2.83984,,2.83984,,2.83984,,1.448318,,70,, +9176,0,1.691573,1,1,0,2,6,,5,6,Syl Petersburg,Rd,1223410,3.486,5.177,0,36.247996,5.8,6,3.383146,3.383146,3.383146,3.383146,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.383173,3.383389,3.383146,3.383146,3.383173,3.383389,3.38318,3.383185,3.383146,3.383146,3.38318,3.383185,3.383593,3.383303,3.383146,3.383146,3.383593,3.383303,3.383146,3.383146,3.383146,3.383146,3.383146,3.383146,,,,,,,3.383173,3.383389,3.38318,3.383185,3.383593,3.383303,3.383146,3.383146,3.383146,3.383146,1.319435,1.3195,1.319437,1.319439,1.319561,1.319474,1.319427,1.319427,0.693545,0.693545,29.999759,29.997848,29.999698,29.999655,29.996036,29.99861,30,30,30,30,,,,,,,,,,,2236,2236,3.383146,3.383146,3.383146,3.383146,3.383146,3.383146,3.383146,3.383146,1.319427,1.319427,30,30,, +9232,0,2.009815,1,1,0,2,4,,5,6,Deerfield,Rd,1233410,0,2.009,0,43.067459,3,4,3.014722,3.014722,3.014722,3.014722,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.017602,3.01667,3.014722,3.014722,3.017602,3.01667,3.01669,3.01717,3.014722,3.014722,3.01669,3.01717,3.017083,3.018511,3.014722,3.014722,3.017083,3.018511,3.014722,3.014722,3.014722,3.014722,3.014722,3.014722,,,,,,,3.017602,3.01667,3.01669,3.01717,3.017083,3.018511,3.014722,3.014722,3.014722,3.014722,1.267047,1.266768,1.266774,1.266918,1.266892,1.26732,1.266183,1.266183,0.673288,0.673288,39.961819,39.97417,39.973906,39.967548,39.968702,39.949797,40,40,40,40,,,,,,,,,,,3096,3096,3.014722,3.014722,3.014722,3.014722,3.014722,3.014722,3.014722,3.014722,1.266183,1.266183,40,40,, +24560,0,1.618033,1,1,0,2,6,,5,6,County Line,Hwy,947305,1.68,3.297,0,34.672134,5.8,6,3.236066,3.236066,3.236066,3.236066,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,,,,,,,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,1.262066,1.262066,1.262066,1.262066,1.262066,1.262066,1.262066,1.262066,0.663394,0.663394,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,3.236066,1.262066,1.262066,30,30,, +31074,0,3.047337,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,65.30007,0.15,4,12.189346,12.189346,12.189346,12.189346,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,,,,,,,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,4.205324,4.205324,4.205324,4.205324,4.205324,4.205324,4.205324,4.205324,2.163609,2.163609,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,12.189346,4.205324,4.205324,15,15,, +34009,0,1.484242,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,31.805185,0.15,4,5.936968,5.936968,5.936968,5.936968,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,,,,,,,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,2.048254,2.048254,2.048254,2.048254,2.048254,2.048254,2.048254,2.048254,1.053812,1.053812,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,5.936968,2.048254,2.048254,15,15,, +34042,0,1.99833,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,7.993319,7.993319,7.993319,7.993319,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.99332,7.99332,7.993319,7.993319,7.99332,7.99332,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,,,,,,,7.99332,7.99332,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,2.757695,2.757695,2.757695,2.757695,2.757695,2.757695,2.757695,2.757695,1.418814,1.418814,14.999997,14.999996,14.999999,14.999999,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,7.993319,2.757695,2.757695,15,15,, +34041,0,1.671745,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,6.686982,6.686982,6.686982,6.686982,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,,,,,,,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,2.307009,2.307009,2.307009,2.307009,2.307009,2.307009,2.307009,2.307009,1.186939,1.186939,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,6.686982,2.307009,2.307009,15,15,, +34085,0,1.551726,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,6.206904,6.206904,6.206904,6.206904,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,,,,,,,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,2.141382,2.141382,2.141382,2.141382,2.141382,2.141382,2.141382,2.141382,1.101726,1.101726,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,6.206904,2.141382,2.141382,15,15,, +8954,0,0.343417,1,1,0,2,3,,5,6,US 223,,1223208,0,0.343,0,7.358939,1.7,4,0.412101,0.412101,0.412101,0.412101,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.431193,0.432721,0.412101,0.412101,0.431193,0.432721,0.415457,0.415632,0.412101,0.412101,0.415457,0.415632,0.415835,0.415712,0.412101,0.412101,0.415835,0.415712,0.412101,0.412101,0.412101,0.412101,0.412101,0.412101,,,,,,,0.431193,0.432721,0.415457,0.415632,0.415835,0.415712,0.412101,0.412101,0.412101,0.412101,0.191173,0.191631,0.186452,0.186505,0.186566,0.186529,0.185445,0.185445,0.099591,0.099591,47.78605,47.6174,49.596048,49.57515,49.551001,49.565634,50,50,50,50,,,,,,,,,,,3096,3096,0.412101,0.412101,0.412101,0.412101,0.412101,0.412101,0.412101,0.412101,0.185445,0.185445,50,50,, +7999,0,0.994044,1,1,0,2,6,,5,6,County Line,Rd,947305,6.32,7.314,0,21.300949,5.8,6,1.988089,1.988089,1.988089,1.988089,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,,,,,,,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,0.775355,0.775355,0.775355,0.775355,0.775355,0.775355,0.775355,0.775355,0.407558,0.407558,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,1.988089,0.775355,0.775355,30,30,, +24561,0,1.77812,1,1,0,2,6,,5,6,County Line,Hwy,947305,3.297,5.075,0,38.102567,5.8,6,3.55624,3.55624,3.55624,3.55624,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,,,,,,,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,1.386933,1.386933,1.386933,1.386933,1.386933,1.386933,1.386933,1.386933,0.729029,0.729029,29.999999,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,3.55624,1.386933,1.386933,30,30,, +34083,0,1.712441,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,6.849764,6.849764,6.849764,6.849764,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,,,,,,,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,2.363169,2.363169,2.363169,2.363169,2.363169,2.363169,2.363169,2.363169,1.215833,1.215833,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,6.849764,2.363169,2.363169,15,15,, +7265,0,1.246154,1,1,0,2,6,,5,6,County Line,Rd,947305,5.075,6.32,0,26.703301,5.8,6,2.492308,2.492308,2.492308,2.492308,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,,,,,,,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,0.972,0.972,0.972,0.972,0.972,0.972,0.972,0.972,0.510923,0.510923,29.999999,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,2.492308,0.972,0.972,30,30,, +34043,0,0.715111,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.860444,2.860444,2.860444,2.860444,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,,,,,,,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,0.986853,0.986853,0.986853,0.986853,0.986853,0.986853,0.986853,0.986853,0.507729,0.507729,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,2.860444,0.986853,0.986853,15,15,, +34086,0,0.858511,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.434046,3.434046,3.434046,3.434046,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,,,,,,,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,1.184746,1.184746,1.184746,1.184746,1.184746,1.184746,1.184746,1.184746,0.609543,0.609543,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,3.434046,1.184746,1.184746,15,15,, +8490,0,0.595057,1,1,0,2,5,,5,6,Whiteford Center,Rd,1223508,4.068,4.663,0,12.751214,3.7,5,1.190113,1.190113,1.190113,1.190113,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.248214,1.340864,1.190113,1.190113,1.248214,1.340864,1.21954,1.242474,1.190113,1.190113,1.21954,1.242474,1.562691,1.383486,1.190113,1.190113,1.562691,1.383486,1.190113,1.190113,1.190113,1.190113,1.190113,1.190113,,,,,,,1.248214,1.340864,1.21954,1.242474,1.562691,1.383486,1.190113,1.190113,1.190113,1.190113,0.481575,0.509369,0.472972,0.479853,0.575917,0.522156,0.464144,0.464144,0.243973,0.243973,28.603579,26.627162,29.276125,28.735721,22.847389,25.806842,30,30,30,30,,,,,,,,,,,2580,2580,1.190113,1.190113,1.190113,1.190113,1.190113,1.190113,1.190113,1.190113,0.464144,0.464144,30,30,, +40509,-1,0.038649,0,1,0,2,3,,5,6,US 223,,5493543,0,0.039,0,0.828184,1.7,4,,0.046378,,0.046378,,50,,9000,,2043,,4500,,2903,,3096,,3092,,0.048693,,0.046378,,0.048693,,0.046998,,0.046378,,0.046998,,0.04816,,0.046378,,0.04816,,0.046378,,0.046378,,0.046378,,,,,,,,0.048693,,0.046998,,0.04816,,0.046378,,0.046378,,0.021565,,0.021056,,0.021405,,0.02087,,0.011208,,47.622899,,49.34109,,48.149819,,50,,50,,,,,,,,,,,,3096,,0.046378,,0.046378,,0.046378,,0.046378,,0.02087,,50,, +8681,0,1.36158,1,1,0,2,5,,5,6,Clark,Rd,1223309,0,1.361,0,29.176709,3.7,5,2.72316,2.72316,2.72316,2.72316,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.723161,2.723163,2.72316,2.72316,2.723161,2.723163,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,,,,,,,2.723161,2.723163,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,1.062033,1.062033,1.062032,1.062032,1.062032,1.062032,1.062032,1.062032,0.558248,0.558248,29.999986,29.999964,29.999993,29.999994,29.999996,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,2.72316,1.062032,1.062032,30,30,, +8707,1,0.197691,1,0,0,1,2,ROF,5,6,N US 23/Sterns,RAMP,1223906,0,0.198,0,,2.24,5,0.296537,,0.296537,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.297915,,0.296537,,0.297915,,0.297811,,0.296537,,0.297811,,0.300345,,0.296537,,0.300345,,0.296537,,0.296537,,0.296537,,,,,,,,0.297915,,0.297811,,0.300345,,0.296537,,0.296537,,0.124959,,0.124928,,0.125688,,0.124545,,0.066226,,39.814954,,39.828863,,39.492769,,40,,40,,,,,,,,,,,,5160,,0.296537,,0.296537,,0.296537,,0.296537,,0.124545,,40,,, +8871,1,0.145896,1,0,0,1,2,RON,5,6,Sterns/S US 23,RAMP,1223605,0,0.146,0,,1.09,4,0.194528,,0.194528,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.196768,,0.194528,,0.196768,,0.196131,,0.194528,,0.196131,,0.197616,,0.194528,,0.197616,,0.194528,,0.194528,,0.194528,,,,,,,,0.196768,,0.196131,,0.197616,,0.194528,,0.194528,,0.085292,,0.085101,,0.085546,,0.08462,,0.045228,,44.487805,,44.632339,,44.296936,,45,,45,,,,,,,,,,,,5160,,0.194528,,0.194528,,0.194528,,0.194528,,0.08462,,45,,, +8899,0,1.400873,1,1,0,2,4,,5,6,Sterns,Rd,1223310,3.669,5.07,0,30.018711,3,4,2.10131,2.10131,2.10131,2.10131,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.386549,4.515004,2.10131,2.10131,3.386549,4.515004,3.259623,3.309438,2.10131,2.10131,3.259623,3.309438,5.918488,4.837173,2.10131,2.10131,5.918488,4.837173,2.10131,2.10131,2.10131,2.10131,2.10131,2.10131,,,,,,,3.386549,4.515004,3.259623,3.309438,5.918488,4.837173,2.10131,2.10131,2.10131,2.10131,1.268122,1.606658,1.230044,1.244988,2.027704,1.703309,0.88255,0.88255,0.469293,0.469293,24.819484,18.616239,25.785921,25.397787,14.201666,17.376347,40,40,40,40,,,,,,,,,,,3096,3096,2.10131,2.10131,2.10131,2.10131,2.10131,2.10131,2.10131,2.10131,0.88255,0.88255,40,40,, +8917,1,0.350196,2,0,0,1,2,,5,6,N US 23,,1223505,1.288,1.638,0,,1.02,7,0.300168,,0.300168,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.300573,,0.300168,,0.300573,,0.300299,,0.300168,,0.300299,,0.300637,,0.300168,,0.300637,,0.300168,,0.300168,,0.300168,,,,,,,,0.300573,,0.300299,,0.300637,,0.300168,,0.300168,,0.153207,,0.153125,,0.153226,,0.153085,,0.083547,,69.905633,,69.9693,,69.890802,,70,,70,,,,,,,,,,,,15136,,0.300168,,0.300168,,0.300168,,0.300168,,0.153085,,70,,, +8945,-1,0.33956,0,2,0,1,2,,5,6,S US 23,,1223504,1.338,1.677,0,,1.02,7,,0.291051,,0.291051,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.291417,,0.291051,,0.291417,,0.291155,,0.291051,,0.291155,,0.291483,,0.291051,,0.291483,,0.291051,,0.291051,,0.291051,,,,,,,,0.291417,,0.291155,,0.291483,,0.291051,,0.291051,,0.148546,,0.148467,,0.148566,,0.148436,,0.081009,,69.912295,,69.975087,,69.896391,,70,,70,,,,,,,,,,,,15136,,0.291051,,0.291051,,0.291051,,0.291051,,0.148436,,70,, +9067,0,1.073647,1,1,0,2,5,,5,6,Sterns,Rd,1223310,2.013,3.086,0,23.006719,3.7,5,2.147294,2.147294,2.147294,2.147294,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,,,,,,,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,0.837445,0.837445,0.837445,0.837445,0.837445,0.837445,0.837445,0.837445,0.440195,0.440195,30,30,29.999999,29.999999,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,2.147294,0.837445,0.837445,30,30,, +9082,0,0.964715,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.633,2.597,0,20.672467,3.7,5,1.92943,1.92943,1.92943,1.92943,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.618149,3.654278,1.92943,1.92943,2.618149,3.654278,2.159159,2.240174,1.92943,1.92943,2.159159,2.240174,5.583463,4.187271,1.92943,1.92943,5.583463,4.187271,1.92943,1.92943,1.92943,1.92943,1.92943,1.92943,,,,,,,2.618149,3.654278,2.159159,2.240174,5.583463,4.187271,1.92943,1.92943,1.92943,1.92943,0.959093,1.269932,0.821396,0.845701,1.848687,1.42983,0.752478,0.752478,0.395533,0.395533,22.108336,15.839765,26.808085,25.838571,10.366848,13.823539,30,30,30,30,,,,,,,,,,,2580,2580,1.92943,1.92943,1.92943,1.92943,1.92943,1.92943,1.92943,1.92943,0.752478,0.752478,30,30,, +9103,0,0.708858,1,1,0,2,4,,4,6,Secor,Rd,1223604,0.737,1.445,0,15.189822,4.5,4.5,1.11925,1.11925,1.11925,1.11925,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.305419,1.351418,1.11925,1.11925,1.305419,1.351418,1.246642,1.270855,1.11925,1.11925,1.246642,1.270855,1.699057,1.758546,1.11925,1.11925,1.699057,1.758546,1.11925,1.11925,1.11925,1.11925,1.11925,1.11925,,,,,,,1.305419,1.351418,1.246642,1.270855,1.699057,1.758546,1.11925,1.11925,1.11925,1.11925,0.51922,0.53302,0.501587,0.508851,0.637312,0.655158,0.46337,0.46337,0.245862,0.245862,32.580717,31.471761,34.116857,33.466838,25.032416,24.18561,38,38,38,38,,,,,,,,,,,3096,3096,1.11925,1.11925,1.11925,1.11925,1.11925,1.11925,1.11925,1.11925,0.46337,0.46337,38,38,, +40513,1,0.263233,1,0,0,1,2,ROF,5,6,S US 23/US 223,RAMP,1223502,0,0.263,0,,2.24,5,0.394849,,0.394849,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.394851,,0.394849,,0.394851,,0.39485,,0.394849,,0.39485,,0.394892,,0.394849,,0.394892,,0.394849,,0.394849,,0.394849,,,,,,,,0.394851,,0.39485,,0.394892,,0.394849,,0.394849,,0.165837,,0.165837,,0.16585,,0.165837,,0.088183,,39.999858,,39.999951,,39.99565,,40,,40,,,,,,,,,,,,5160,,0.394849,,0.394849,,0.394849,,0.394849,,0.165837,,40,,, +9126,0,1.070647,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,2.854,3.924,0,22.942436,3,4,1.605971,1.605971,1.605971,1.605971,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.606044,1.606012,1.605971,1.605971,1.606044,1.606012,1.605984,1.60598,1.605971,1.605971,1.605984,1.60598,1.605977,1.605975,1.605971,1.605971,1.605977,1.605975,1.605971,1.605971,1.605971,1.605971,1.605971,1.605971,,,,,,,1.606044,1.606012,1.605984,1.60598,1.605977,1.605975,1.605971,1.605971,1.605971,1.605971,0.67453,0.67452,0.674512,0.674511,0.67451,0.674509,0.674508,0.674508,0.358667,0.358667,39.998171,39.99896,39.999655,39.999756,39.999828,39.999893,40,40,40,40,,,,,,,,,,,3096,3096,1.605971,1.605971,1.605971,1.605971,1.605971,1.605971,1.605971,1.605971,0.674508,0.674508,40,40,, +40510,1,0.017789,1,0,0,1,2,ROF,5,6,S US 23/US 223,RAMP,1223502,0.263,0.281,0,,2.24,5,0.026683,,0.026683,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.026709,,0.026683,,0.026709,,0.026699,,0.026683,,0.026699,,0.026732,,0.026683,,0.026732,,0.026683,,0.026683,,0.026683,,,,,,,,0.026709,,0.026699,,0.026732,,0.026683,,0.026683,,0.011215,,0.011212,,0.011222,,0.011207,,0.005959,,39.961317,,39.975464,,39.925677,,40,,40,,,,,,,,,,,,5160,,0.026683,,0.026683,,0.026683,,0.026683,,0.011207,,40,,, +9140,1,1.28886,2,0,0,1,2,,5,6,N US 23,,1223505,0,1.288,0,,1.02,7,1.104737,,1.104737,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.112066,,1.104737,,1.112066,,1.107701,,1.104737,,1.107701,,1.115954,,1.104737,,1.115954,,1.104737,,1.104737,,1.104737,,,,,,,,1.112066,,1.107701,,1.115954,,1.104737,,1.104737,,0.565615,,0.564305,,0.566781,,0.563416,,0.307485,,69.538672,,69.812697,,69.296427,,70,,70,,,,,,,,,,,,15136,,1.104737,,1.104737,,1.104737,,1.104737,,0.563416,,70,,, +40511,1,0.047547,1,0,0,2,3,,5,6,US 223,,1223208,3.943,3.99,0,1.018866,1.7,4,0.057056,,0.057056,,50,,9000,,2043,,4500,,2903,,3096,,3092,,0.057641,,0.057056,,0.057641,,0.057201,,0.057056,,0.057201,,0.060066,,0.057056,,0.060066,,0.057056,,0.057056,,0.057056,,,,,,,,0.057641,,0.057201,,0.060066,,0.057056,,0.057056,,0.025851,,0.025719,,0.026578,,0.025675,,0.013789,,49.493371,,49.873381,,47.495218,,50,,50,,,,,,,,,,,,3096,,0.057056,,0.057056,,0.057056,,0.057056,,0.025675,,50,,, +9169,-1,1.33852,0,2,0,1,2,,5,6,S US 23,,1223504,0,1.338,0,,1.02,7,,1.147303,,1.147303,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.155614,,1.147303,,1.155614,,1.150057,,1.147303,,1.150057,,1.158042,,1.147303,,1.158042,,1.147303,,1.147303,,1.147303,,,,,,,,1.155614,,1.150057,,1.158042,,1.147303,,1.147303,,0.587618,,0.585951,,0.588346,,0.585124,,0.319333,,69.496577,,69.832377,,69.350826,,70,,70,,,,,,,,,,,,15136,,1.147303,,1.147303,,1.147303,,1.147303,,0.585124,,70,, +40507,0,0.78518,1,1,0,2,3,,5,6,US 223,,1223208,3.122,3.907,0,16.825284,1.7,4,0.942216,0.942216,0.942216,0.942216,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.014964,0.989247,0.942216,0.942216,1.014964,0.989247,0.954684,0.954798,0.942216,0.942216,0.954684,0.954798,0.980376,0.978421,0.942216,0.942216,0.980376,0.978421,0.942216,0.942216,0.942216,0.942216,0.942216,0.942216,,,,,,,1.014964,0.989247,0.954684,0.954798,0.980376,0.978421,0.942216,0.942216,0.942216,0.942216,0.445822,0.438106,0.427738,0.427772,0.435445,0.434859,0.423997,0.423997,0.227702,0.227702,46.416232,47.622899,49.346981,49.34109,48.053798,48.149819,50,50,50,50,,,,,,,,,,,3096,3096,0.942216,0.942216,0.942216,0.942216,0.942216,0.942216,0.942216,0.942216,0.423997,0.423997,50,50,, +9266,0,0.986687,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1232105,0,0.986,0,21.143284,3.7,5,1.973373,1.973373,1.973373,1.973373,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.06346,2.122303,1.973373,1.973373,2.06346,2.122303,2.091945,2.116861,1.973373,1.973373,2.091945,2.116861,2.172521,2.179937,1.973373,1.973373,2.172521,2.179937,1.973373,1.973373,1.973373,1.973373,1.973373,1.973373,,,,,,,2.06346,2.122303,2.091945,2.116861,2.172521,2.179937,1.973373,1.973373,1.973373,1.973373,0.796642,0.814294,0.805187,0.812662,0.82936,0.831585,0.769616,0.769616,0.404542,0.404542,28.690256,27.89479,28.2996,27.966496,27.249998,27.157299,30,30,30,30,,,,,,,,,,,2580,2580,1.973373,1.973373,1.973373,1.973373,1.973373,1.973373,1.973373,1.973373,0.769616,0.769616,30,30,, +20777,0,1.51703,1,1,0,2,5,,5,6,Whiteford,Rd,4301685,0,1.516,0,32.507783,3.7,5,3.03406,3.03406,3.03406,3.03406,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.044084,3.044888,3.03406,3.03406,3.044084,3.044888,3.03956,3.039448,3.03406,3.03406,3.03956,3.039448,3.058669,3.057856,3.03406,3.03406,3.058669,3.057856,3.03406,3.03406,3.03406,3.03406,3.03406,3.03406,,,,,,,3.044084,3.044888,3.03956,3.039448,3.058669,3.057856,3.03406,3.03406,3.03406,3.03406,1.186291,1.186532,1.184934,1.1849,1.190666,1.190422,1.183283,1.183283,0.621982,0.621982,29.901208,29.893315,29.945709,29.946819,29.758625,29.766544,30,30,30,30,,,,,,,,,,,2580,2580,3.03406,3.03406,3.03406,3.03406,3.03406,3.03406,3.03406,3.03406,1.183283,1.183283,30,30,, +31084,0,0.734969,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,15.74934,0.15,4,2.939877,2.939877,2.939877,2.939877,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,,,,,,,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,1.014257,1.014257,1.014257,1.014257,1.014257,1.014257,1.014257,1.014257,0.521828,0.521828,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,2.939877,1.014257,1.014257,15,15,, +8678,0,0.749268,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,4.408,5.157,0,16.055753,3,4,1.123903,1.123903,1.123903,1.123903,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.123924,1.123916,1.123903,1.123903,1.123924,1.123916,1.123906,1.123905,1.123903,1.123903,1.123906,1.123905,1.123904,1.123904,1.123903,1.123903,1.123904,1.123904,1.123903,1.123903,1.123903,1.123903,1.123903,1.123903,,,,,,,1.123924,1.123916,1.123906,1.123905,1.123904,1.123904,1.123903,1.123903,1.123903,1.123903,0.472045,0.472043,0.47204,0.47204,0.472039,0.472039,0.472039,0.472039,0.251005,0.251005,39.999259,39.999521,39.999893,39.999926,39.999958,39.999959,40,40,40,40,,,,,,,,,,,3096,3096,1.123903,1.123903,1.123903,1.123903,1.123903,1.123903,1.123903,1.123903,0.472039,0.472039,40,40,, +9182,0,1.478452,1,1,0,2,5,,5,6,Yankee,Rd,1223403,0.969,2.447,0,31.681111,3.7,5,2.956904,2.956904,2.956904,2.956904,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.957255,2.957253,2.956904,2.956904,2.957255,2.957253,2.957057,2.957058,2.956904,2.956904,2.957057,2.957058,2.957693,2.957692,2.956904,2.956904,2.957693,2.957692,2.956904,2.956904,2.956904,2.956904,2.956904,2.956904,,,,,,,2.957255,2.957253,2.957057,2.957058,2.957693,2.957692,2.956904,2.956904,2.956904,2.956904,1.153298,1.153297,1.153239,1.153239,1.153429,1.153429,1.153192,1.153192,0.606165,0.606165,29.99644,29.996452,29.998441,29.998434,29.991997,29.992004,30,30,30,30,,,,,,,,,,,2580,2580,2.956904,2.956904,2.956904,2.956904,2.956904,2.956904,2.956904,2.956904,1.153192,1.153192,30,30,, +34039,0,1.148907,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.595627,4.595627,4.595627,4.595627,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.595627,4.595628,4.595627,4.595627,4.595627,4.595628,4.595628,4.595628,4.595627,4.595627,4.595628,4.595628,4.595628,4.595628,4.595627,4.595627,4.595628,4.595628,4.595627,4.595627,4.595627,4.595627,4.595627,4.595627,,,,,,,4.595627,4.595628,4.595628,4.595628,4.595628,4.595628,4.595627,4.595627,4.595627,4.595627,1.585491,1.585492,1.585492,1.585492,1.585492,1.585492,1.585491,1.585491,0.815724,0.815724,15,14.999999,14.999999,14.999999,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,4.595627,4.595627,4.595627,4.595627,4.595627,4.595627,4.595627,4.595627,1.585491,1.585491,15,15,, +34040,0,1.193599,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.774397,4.774397,4.774397,4.774397,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,,,,,,,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,1.647167,1.647167,1.647167,1.647167,1.647167,1.647167,1.647167,1.647167,0.847455,0.847455,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,4.774397,1.647167,1.647167,15,15,, +34084,0,0.994038,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.976152,3.976152,3.976152,3.976152,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,,,,,,,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,1.371772,1.371772,1.371772,1.371772,1.371772,1.371772,1.371772,1.371772,0.705767,0.705767,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,3.976152,1.371772,1.371772,15,15,, +9268,0,0.483625,1,1,0,2,5,,5,6,Clark,Rd,1232018,0.5,0.984,0,10.363402,3.7,5,0.967251,0.967251,0.967251,0.967251,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.971234,0.967786,0.967251,0.967251,0.971234,0.967786,0.969729,0.970856,0.967251,0.967251,0.969729,0.970856,0.967857,0.968507,0.967251,0.967251,0.967857,0.968507,0.967251,0.967251,0.967251,0.967251,0.967251,0.967251,,,,,,,0.971234,0.967786,0.969729,0.970856,0.967857,0.968507,0.967251,0.967251,0.967251,0.967251,0.378423,0.377388,0.377971,0.378309,0.37741,0.377605,0.377228,0.377228,0.198286,0.198286,29.876969,29.983411,29.923323,29.888603,29.98122,29.961086,30,30,30,30,,,,,,,,,,,2580,2580,0.967251,0.967251,0.967251,0.967251,0.967251,0.967251,0.967251,0.967251,0.377228,0.377228,30,30,, +9269,0,0.500621,1,1,0,2,5,,5,6,Clark,Rd,1232018,0,0.5,0,10.727588,3.7,5,1.001242,1.001242,1.001242,1.001242,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.001243,1.001242,1.001242,1.001242,1.001243,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,,,,,,,1.001243,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,0.390485,0.390484,0.390484,0.390484,0.390484,0.390484,0.390484,0.390484,0.205255,0.205255,29.999964,29.999986,29.999994,29.999993,29.999998,29.999996,30,30,30,30,,,,,,,,,,,2580,2580,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,1.001242,0.390484,0.390484,30,30,, +9184,0,0.122922,1,1,0,2,5,,5,6,Lynch,Rd,1223402,0.965,1.088,0,2.634036,3.7,5,0.245843,0.245843,0.245843,0.245843,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.245843,0.245844,0.245843,0.245843,0.245843,0.245844,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,,,,,,,0.245843,0.245844,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.095879,0.095879,0.095879,0.095879,0.095879,0.095879,0.095879,0.095879,0.050398,0.050398,29.999986,29.999964,29.999993,29.999994,29.999996,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.245843,0.095879,0.095879,30,30,, +8776,0,0.294876,1,1,0,2,5,,5,6,Sterns,Rd,1223310,1.718,2.013,0,6.318775,3.7,5,0.589752,0.589752,0.589752,0.589752,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,,,,,,,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.230003,0.230003,0.230003,0.230003,0.230003,0.230003,0.230003,0.230003,0.120899,0.120899,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.589752,0.230003,0.230003,30,30,, +9004,0,0.483327,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,3.924,4.408,0,10.357016,3,4,0.724991,0.724991,0.724991,0.724991,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.725001,0.725,0.724991,0.724991,0.725001,0.725,0.724992,0.724992,0.724991,0.724991,0.724992,0.724992,0.724992,0.724992,0.724991,0.724991,0.724992,0.724992,0.724991,0.724991,0.724991,0.724991,0.724991,0.724991,,,,,,,0.725001,0.725,0.724992,0.724992,0.724992,0.724992,0.724991,0.724991,0.724991,0.724991,0.304499,0.304499,0.304497,0.304497,0.304497,0.304496,0.304496,0.304496,0.161915,0.161915,39.999476,39.999521,39.999953,39.999956,39.999958,39.999959,40,40,40,40,,,,,,,,,,,3096,3096,0.724991,0.724991,0.724991,0.724991,0.724991,0.724991,0.724991,0.724991,0.304496,0.304496,40,40,, +8966,0,0.387454,1,1,0,2,5,,5,6,Head O Lake,Rd,1223401,0,0.387,0,8.302576,3.7,5,0.774907,0.774907,0.774907,0.774907,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,,,,,,,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.302214,0.302214,0.302214,0.302214,0.302214,0.302214,0.302214,0.302214,0.158856,0.158856,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.774907,0.302214,0.302214,30,30,, +8553,0,0.8343,1,1,0,2,7,,5,6,Yankee,Rd,1223403,2.447,3.281,0,17.877858,5.8,6,2.00232,2.00232,2.00232,2.00232,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.0025,2.002461,2.00232,2.00232,2.0025,2.002461,2.002373,2.002365,2.00232,2.00232,2.002373,2.002365,2.002794,2.002794,2.00232,2.00232,2.002794,2.002794,2.00232,2.00232,2.00232,2.00232,2.00232,2.00232,,,,,,,2.0025,2.002461,2.002373,2.002365,2.002794,2.002794,2.00232,2.00232,2.00232,2.00232,0.750924,0.750912,0.750886,0.750884,0.751012,0.751012,0.75087,0.75087,0.392121,0.392121,24.997756,24.998244,24.999343,24.999439,24.99408,24.994085,25,25,25,25,,,,,,,,,,,2064,2064,2.00232,2.00232,2.00232,2.00232,2.00232,2.00232,2.00232,2.00232,0.75087,0.75087,25,25,, +8815,0,0.583657,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,5.157,5.74,0,12.506935,3,4,0.875485,0.875485,0.875485,0.875485,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.875497,0.875496,0.875485,0.875485,0.875497,0.875496,0.875486,0.875486,0.875485,0.875485,0.875486,0.875486,0.875486,0.875486,0.875485,0.875485,0.875486,0.875486,0.875485,0.875485,0.875485,0.875485,0.875485,0.875485,,,,,,,0.875497,0.875496,0.875486,0.875486,0.875486,0.875486,0.875485,0.875485,0.875485,0.875485,0.367707,0.367707,0.367704,0.367704,0.367704,0.367704,0.367704,0.367704,0.195525,0.195525,39.999476,39.999521,39.999953,39.999956,39.999958,39.999959,40,40,40,40,,,,,,,,,,,3096,3096,0.875485,0.875485,0.875485,0.875485,0.875485,0.875485,0.875485,0.875485,0.367704,0.367704,40,40,, +9267,0,0.502001,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1232104,0,0.502,0,10.757155,3.7,5,1.004001,1.004001,1.004001,1.004001,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.011482,1.020367,1.004001,1.004001,1.011482,1.020367,1.019849,1.025086,1.004001,1.004001,1.019849,1.025086,1.020418,1.021309,1.004001,1.004001,1.020418,1.021309,1.004001,1.004001,1.004001,1.004001,1.004001,1.004001,,,,,,,1.011482,1.020367,1.019849,1.025086,1.020418,1.021309,1.004001,1.004001,1.004001,1.004001,0.393805,0.39647,0.396315,0.397886,0.396485,0.396753,0.39156,0.39156,0.20582,0.20582,29.778114,29.518823,29.533832,29.382943,29.51735,29.491588,30,30,30,30,,,,,,,,,,,2580,2580,1.004001,1.004001,1.004001,1.004001,1.004001,1.004001,1.004001,1.004001,0.39156,0.39156,30,30,, +9179,0,0.047031,1,1,0,2,5,,5,6,Yankee,Rd,1223403,3.281,3.328,0,1.007799,3.7,5,0.094061,0.094061,0.094061,0.094061,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.098355,0.10116,0.094061,0.094061,0.098355,0.10116,0.099713,0.100901,0.094061,0.094061,0.099713,0.100901,0.103554,0.103907,0.094061,0.094061,0.103554,0.103907,0.094061,0.094061,0.094061,0.094061,0.094061,0.094061,,,,,,,0.098355,0.10116,0.099713,0.100901,0.103554,0.103907,0.094061,0.094061,0.094061,0.094061,0.037972,0.038814,0.038379,0.038736,0.039532,0.039638,0.036684,0.036684,0.019283,0.019283,28.690256,27.89479,28.2996,27.966496,27.249998,27.157299,30,30,30,30,,,,,,,,,,,2580,2580,0.094061,0.094061,0.094061,0.094061,0.094061,0.094061,0.094061,0.094061,0.036684,0.036684,30,30,, +8465,0,1.055562,1,1,0,2,6,,5,6,Consear,Rd,1223608,0,1.055,0,22.619181,5.8,6,2.111124,2.111124,2.111124,2.111124,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.432039,2.44912,2.111124,2.111124,2.432039,2.44912,2.189164,2.181612,2.111124,2.111124,2.189164,2.181612,2.498328,2.61748,2.111124,2.111124,2.498328,2.61748,2.111124,2.111124,2.111124,2.111124,2.111124,2.111124,,,,,,,2.432039,2.44912,2.189164,2.181612,2.498328,2.61748,2.111124,2.111124,2.111124,2.111124,0.919613,0.924737,0.84675,0.844485,0.939499,0.975245,0.823338,0.823338,0.43278,0.43278,26.0414,25.859776,28.930546,29.030693,25.350439,24.196445,30,30,30,30,,,,,,,,,,,2236,2236,2.111124,2.111124,2.111124,2.111124,2.111124,2.111124,2.111124,2.111124,0.823338,0.823338,30,30,, +8509,1,1.689522,2,0,0,1,2,,5,6,N US 23,,1223505,3.129,4.818,0,,1.02,7,1.448161,,1.448161,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.454899,,1.448161,,1.454899,,1.449816,,1.448161,,1.449816,,1.452011,,1.448161,,1.452011,,1.448161,,1.448161,,1.448161,,,,,,,,1.454899,,1.449816,,1.452011,,1.448161,,1.448161,,0.740584,,0.739059,,0.739717,,0.738562,,0.403072,,69.675832,,69.920097,,69.814418,,70,,70,,,,,,,,,,,,15136,,1.448161,,1.448161,,1.448161,,1.448161,,0.738562,,70,,, +8529,-1,1.700263,0,2,0,1,2,,5,6,S US 23,,1223504,3.19,4.89,0,,1.02,7,,1.457368,,1.457368,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.461525,,1.457368,,1.461525,,1.458702,,1.457368,,1.458702,,1.463207,,1.457368,,1.463207,,1.457368,,1.457368,,1.457368,,,,,,,,1.461525,,1.458702,,1.463207,,1.457368,,1.457368,,0.744505,,0.743658,,0.745009,,0.743258,,0.405634,,69.800931,,69.935979,,69.720681,,70,,70,,,,,,,,,,,,15136,,1.457368,,1.457368,,1.457368,,1.457368,,0.743258,,70,, +9059,0,1.030924,1,1,0,2,3,,5,6,US 223,,1223208,2.092,3.122,0,22.091223,1.7,4,1.237108,1.237108,1.237108,1.237108,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.267351,1.270749,1.237108,1.237108,1.267351,1.270749,1.243483,1.243906,1.237108,1.237108,1.243483,1.243906,1.245099,1.244913,1.237108,1.237108,1.245099,1.244913,1.237108,1.237108,1.237108,1.237108,1.237108,1.237108,,,,,,,1.267351,1.270749,1.243483,1.243906,1.245099,1.244913,1.237108,1.237108,1.237108,1.237108,0.565771,0.566791,0.558611,0.558738,0.559096,0.55904,0.556699,0.556699,0.298968,0.298968,48.806877,48.676355,49.743663,49.726782,49.67911,49.686548,50,50,50,50,,,,,,,,,,,3096,3096,1.237108,1.237108,1.237108,1.237108,1.237108,1.237108,1.237108,1.237108,0.556699,0.556699,50,50,, +9177,0,1.109803,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1223410,1.494,2.604,0,23.781495,3.7,5,2.219606,2.219606,2.219606,2.219606,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,,,,,,,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,0.865646,0.865646,0.865646,0.865646,0.865646,0.865646,0.865646,0.865646,0.455019,0.455019,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,2.219606,0.865646,0.865646,30,30,, +31069,0,1.526079,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,32.701684,0.15,4,6.104314,6.104314,6.104314,6.104314,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,,,,,,,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,2.105988,2.105988,2.105988,2.105988,2.105988,2.105988,2.105988,2.105988,1.083516,1.083516,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,6.104314,2.105988,2.105988,15,15,, +31080,0,1.352414,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,28.980293,0.15,4,5.409655,5.409655,5.409655,5.409655,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,,,,,,,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,1.866331,1.866331,1.866331,1.866331,1.866331,1.866331,1.866331,1.866331,0.960214,0.960214,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,5.409655,1.866331,1.866331,15,15,, +8556,0,0.491208,1,1,0,2,6,,5,6,Head O Lake,Rd,1223401,1.404,1.895,0,10.52588,5.8,6,0.982415,0.982415,0.982415,0.982415,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.982416,0.982416,0.982415,0.982415,0.982416,0.982416,0.982416,0.982416,0.982415,0.982415,0.982416,0.982416,0.982416,0.982416,0.982415,0.982415,0.982416,0.982416,0.982415,0.982415,0.982415,0.982415,0.982415,0.982415,,,,,,,0.982416,0.982416,0.982416,0.982416,0.982416,0.982416,0.982415,0.982415,0.982415,0.982415,0.383142,0.383142,0.383142,0.383142,0.383142,0.383142,0.383142,0.383142,0.201395,0.201395,29.999999,29.999997,29.999997,29.999998,29.999996,29.999997,30,30,30,30,,,,,,,,,,,2236,2236,0.982415,0.982415,0.982415,0.982415,0.982415,0.982415,0.982415,0.982415,0.383142,0.383142,30,30,, +8977,0,0.303958,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,2.386,2.69,0,6.513393,3,4,0.455937,0.455937,0.455937,0.455937,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.455978,0.455962,0.455937,0.455937,0.455978,0.455962,0.455943,0.455942,0.455937,0.455937,0.455943,0.455942,0.455939,0.455938,0.455937,0.455937,0.455939,0.455938,0.455937,0.455937,0.455937,0.455937,0.455937,0.455937,,,,,,,0.455978,0.455962,0.455943,0.455942,0.455939,0.455938,0.455937,0.455937,0.455937,0.455937,0.191506,0.191501,0.191496,0.191495,0.191494,0.191494,0.191494,0.191494,0.101826,0.101826,39.996408,39.99781,39.999476,39.99963,39.999871,39.999924,40,40,40,40,,,,,,,,,,,3096,3096,0.455937,0.455937,0.455937,0.455937,0.455937,0.455937,0.455937,0.455937,0.191494,0.191494,40,40,, +9180,0,1.03965,1,1,0,2,6,,5,6,Beck,Rd,1223308,0,1.039,0,22.278208,5.8,6,2.079299,2.079299,2.079299,2.079299,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.0793,2.0793,2.079299,2.079299,2.0793,2.0793,2.0793,2.0793,2.079299,2.079299,2.0793,2.0793,2.0793,2.0793,2.079299,2.079299,2.0793,2.0793,2.079299,2.079299,2.079299,2.079299,2.079299,2.079299,,,,,,,2.0793,2.0793,2.0793,2.0793,2.0793,2.0793,2.079299,2.079299,2.079299,2.079299,0.810927,0.810927,0.810927,0.810927,0.810927,0.810927,0.810927,0.810927,0.426256,0.426256,29.999999,29.999997,29.999997,29.999998,29.999996,29.999997,30,30,30,30,,,,,,,,,,,2236,2236,2.079299,2.079299,2.079299,2.079299,2.079299,2.079299,2.079299,2.079299,0.810927,0.810927,30,30,, +31071,0,1.097894,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,23.526291,0.15,4,4.391574,4.391574,4.391574,4.391574,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,,,,,,,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,1.515093,1.515093,1.515093,1.515093,1.515093,1.515093,1.515093,1.515093,0.779504,0.779504,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,4.391574,1.515093,1.515093,15,15,, +8424,0,0.164017,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,2.69,2.854,0,3.514655,3,4,0.246026,0.246026,0.246026,0.246026,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.246114,0.246072,0.246026,0.246026,0.246114,0.246072,0.246044,0.246041,0.246026,0.246026,0.246044,0.246041,0.246035,0.246034,0.246026,0.246026,0.246035,0.246034,0.246026,0.246026,0.246026,0.246026,0.246026,0.246026,,,,,,,0.246114,0.246072,0.246044,0.246041,0.246035,0.246034,0.246026,0.246026,0.246026,0.246026,0.103357,0.103345,0.103336,0.103335,0.103334,0.103333,0.103331,0.103331,0.054946,0.054946,39.985696,39.992421,39.997093,39.997492,39.998544,39.998714,40,40,40,40,,,,,,,,,,,3096,3096,0.246026,0.246026,0.246026,0.246026,0.246026,0.246026,0.246026,0.246026,0.103331,0.103331,40,40,, +8441,0,0.719187,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,1.668,2.386,0,15.411144,3,4,1.07878,1.07878,1.07878,1.07878,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.07885,1.078846,1.07878,1.07878,1.07885,1.078846,1.078785,1.078785,1.07878,1.07878,1.078785,1.078785,1.078783,1.078783,1.07878,1.07878,1.078783,1.078783,1.07878,1.07878,1.07878,1.07878,1.07878,1.07878,,,,,,,1.07885,1.078846,1.078785,1.078785,1.078783,1.078783,1.07878,1.07878,1.07878,1.07878,0.453109,0.453107,0.453089,0.453089,0.453089,0.453089,0.453088,0.453088,0.240928,0.240928,39.99742,39.997563,39.9998,39.999801,39.999885,39.999889,40,40,40,40,,,,,,,,,,,3096,3096,1.07878,1.07878,1.07878,1.07878,1.07878,1.07878,1.07878,1.07878,0.453088,0.453088,40,40,, +31072,0,0.474532,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.168544,0.15,4,1.898128,1.898128,1.898128,1.898128,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.898129,1.898129,1.898128,1.898128,1.898129,1.898129,1.898128,1.898128,1.898128,1.898128,1.898128,1.898128,1.898129,1.898129,1.898128,1.898128,1.898129,1.898129,1.898128,1.898128,1.898128,1.898128,1.898128,1.898128,,,,,,,1.898129,1.898129,1.898128,1.898128,1.898129,1.898129,1.898128,1.898128,1.898128,1.898128,0.654854,0.654854,0.654854,0.654854,0.654854,0.654854,0.654854,0.654854,0.336918,0.336918,14.999995,14.999995,14.999998,14.999998,14.999995,14.999994,15,15,15,15,,,,,,,,,,,34400,34400,1.898128,1.898128,1.898128,1.898128,1.898128,1.898128,1.898128,1.898128,0.654854,0.654854,15,15,, +8551,0,1.494757,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1223410,0,1.494,0,32.030498,3.7,5,2.989513,2.989513,2.989513,2.989513,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,,,,,,,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,1.16591,1.16591,1.16591,1.16591,1.16591,1.16591,1.16591,1.16591,0.61285,0.61285,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,2.989513,1.16591,1.16591,30,30,, +9139,1,1.152438,2,0,0,1,2,,5,6,N US 23,,1223505,1.638,2.79,0,,1.02,7,0.987804,,0.987804,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.992523,,0.987804,,0.992523,,0.989353,,0.987804,,0.989353,,0.993315,,0.987804,,0.993315,,0.987804,,0.987804,,0.987804,,,,,,,,0.992523,,0.989353,,0.993315,,0.987804,,0.987804,,0.505196,,0.504245,,0.505433,,0.50378,,0.274939,,69.667166,,69.890372,,69.611591,,70,,70,,,,,,,,,,,,15136,,0.987804,,0.987804,,0.987804,,0.987804,,0.50378,,70,,, +9168,-1,1.153603,0,2,0,1,2,,5,6,S US 23,,1223504,1.677,2.831,0,,1.02,7,,0.988803,,0.988803,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.992832,,0.988803,,0.992832,,0.990211,,0.988803,,0.990211,,0.995031,,0.988803,,0.995031,,0.988803,,0.988803,,0.988803,,,,,,,,0.992832,,0.990211,,0.995031,,0.988803,,0.988803,,0.505498,,0.504712,,0.506158,,0.504289,,0.275217,,69.71589,,69.90041,,69.561804,,70,,70,,,,,,,,,,,,15136,,0.988803,,0.988803,,0.988803,,0.988803,,0.504289,,70,, +8648,0,0.218982,1,1,0,2,5,,5,6,Sterns,Rd,1223310,3.336,3.555,0,4.692466,3.7,5,0.437963,0.437963,0.437963,0.437963,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.463291,0.477372,0.437963,0.437963,0.463291,0.477372,0.472158,0.478579,0.437963,0.437963,0.472158,0.478579,0.488031,0.487641,0.437963,0.437963,0.488031,0.487641,0.437963,0.437963,0.437963,0.437963,0.437963,0.437963,,,,,,,0.463291,0.477372,0.472158,0.478579,0.488031,0.487641,0.437963,0.437963,0.437963,0.437963,0.178404,0.182628,0.181064,0.18299,0.185826,0.185709,0.170806,0.170806,0.089783,0.089783,28.359909,27.523411,27.82732,27.454016,26.922297,26.943833,30,30,30,30,,,,,,,,,,,2580,2580,0.437963,0.437963,0.437963,0.437963,0.437963,0.437963,0.437963,0.437963,0.170806,0.170806,30,30,, +8699,0,0.249942,1,1,0,2,5,,5,6,Sterns,Rd,1223310,3.086,3.336,0,5.35591,3.7,5,0.499885,0.499885,0.499885,0.499885,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,,,,,,,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.194955,0.194955,0.194955,0.194955,0.194955,0.194955,0.194955,0.194955,0.102476,0.102476,30,30,29.999999,29.999999,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.499885,0.194955,0.194955,30,30,, +8880,1,0.16538,1,0,0,1,2,RON,5,6,Sterns/N US 23,RAMP,1223907,0,0.165,0,,1.09,4,0.220506,,0.220506,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.221125,,0.220506,,0.221125,,0.220843,,0.220506,,0.220843,,0.2212,,0.220506,,0.2212,,0.220506,,0.220506,,0.220506,,,,,,,,0.221125,,0.220843,,0.2212,,0.220506,,0.220506,,0.096106,,0.096021,,0.096128,,0.09592,,0.051268,,44.874187,,44.931375,,44.858961,,45,,45,,,,,,,,,,,,5160,,0.220506,,0.220506,,0.220506,,0.220506,,0.09592,,45,,, +9097,0,0.114808,1,1,0,2,4,,5,6,Sterns,Rd,1223310,3.555,3.669,0,2.46018,3,4,0.172213,0.172213,0.172213,0.172213,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.189076,0.263769,0.172213,0.172213,0.189076,0.263769,0.191319,0.239124,0.172213,0.172213,0.191319,0.239124,0.225662,0.29919,0.172213,0.172213,0.225662,0.29919,0.172213,0.172213,0.172213,0.172213,0.172213,0.172213,,,,,,,0.189076,0.263769,0.191319,0.239124,0.225662,0.29919,0.172213,0.172213,0.172213,0.172213,0.077388,0.099796,0.078061,0.092403,0.088364,0.110423,0.072329,0.072329,0.038461,0.038461,36.432456,26.115659,36.005286,28.807234,30.5258,23.023804,40,40,40,40,,,,,,,,,,,3096,3096,0.172213,0.172213,0.172213,0.172213,0.172213,0.172213,0.172213,0.172213,0.072329,0.072329,40,40,, +9088,1,0.21001,1,0,0,1,2,ROF,5,6,S US 23/Sterns,RAMP,1223606,0,0.21,0,,2.24,5,0.315015,,0.315015,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.315279,,0.315015,,0.315279,,0.315277,,0.315015,,0.315277,,0.315934,,0.315015,,0.315934,,0.315015,,0.315015,,0.315015,,,,,,,,0.315279,,0.315277,,0.315934,,0.315015,,0.315015,,0.132386,,0.132385,,0.132582,,0.132306,,0.070353,,39.966428,,39.966697,,39.883646,,40,,40,,,,,,,,,,,,5160,,0.315015,,0.315015,,0.315015,,0.315015,,0.132306,,40,,, +8462,1,0.237587,1,0,0,1,2,ROF,5,6,S US 23/Consear,RAMP,1223609,0,0.238,0,,2.24,5,0.356381,,0.356381,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.356411,,0.356381,,0.356411,,0.356385,,0.356381,,0.356385,,0.356569,,0.356381,,0.356569,,0.356381,,0.356381,,0.356381,,,,,,,,0.356411,,0.356385,,0.356569,,0.356381,,0.356381,,0.149689,,0.149681,,0.149736,,0.14968,,0.079592,,39.996704,,39.999529,,39.978953,,40,,40,,,,,,,,,,,,5160,,0.356381,,0.356381,,0.356381,,0.356381,,0.14968,,40,,, +8877,1,0.155278,1,0,0,1,2,RON,5,6,Consear/N US 23,RAMP,1223909,0,0.155,0,,1.09,4,0.207037,,0.207037,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.207547,,0.207037,,0.207547,,0.207077,,0.207037,,0.207077,,0.207097,,0.207037,,0.207097,,0.207037,,0.207037,,0.207037,,,,,,,,0.207547,,0.207077,,0.207097,,0.207037,,0.207037,,0.090214,,0.090073,,0.090079,,0.090061,,0.048136,,44.889444,,44.991496,,44.987063,,45,,45,,,,,,,,,,,,5160,,0.207037,,0.207037,,0.207037,,0.207037,,0.090061,,45,,, +8915,1,0.339143,2,0,0,1,2,,5,6,N US 23,,1223505,2.79,3.129,0,,1.02,7,0.290694,,0.290694,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.291091,,0.290694,,0.291091,,0.290849,,0.290694,,0.290849,,0.291059,,0.290694,,0.291059,,0.290694,,0.290694,,0.290694,,,,,,,,0.291091,,0.290849,,0.291059,,0.290694,,0.290694,,0.148373,,0.1483,,0.148363,,0.148254,,0.08091,,69.904451,,69.962718,,69.91225,,70,,70,,,,,,,,,,,,15136,,0.290694,,0.290694,,0.290694,,0.290694,,0.148254,,70,,, +8944,-1,0.359748,0,2,0,1,2,,5,6,S US 23,,1223504,2.831,3.19,0,,1.02,7,,0.308355,,0.308355,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.308768,,0.308355,,0.308768,,0.308511,,0.308355,,0.308511,,0.30878,,0.308355,,0.30878,,0.308355,,0.308355,,0.308355,,,,,,,,0.308768,,0.308511,,0.30878,,0.308355,,0.308355,,0.157385,,0.157308,,0.157389,,0.157261,,0.085826,,69.906454,,69.964725,,69.903697,,70,,70,,,,,,,,,,,,15136,,0.308355,,0.308355,,0.308355,,0.308355,,0.157261,,70,, +9087,0,0.41808,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.055,1.473,0,8.958856,3.7,5,0.83616,0.83616,0.83616,0.83616,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.90892,0.912133,0.83616,0.83616,0.90892,0.912133,0.858551,0.85673,0.83616,0.83616,0.858551,0.85673,0.921157,0.942452,0.83616,0.83616,0.921157,0.942452,0.83616,0.83616,0.83616,0.83616,0.83616,0.83616,,,,,,,0.90892,0.912133,0.858551,0.85673,0.921157,0.942452,0.83616,0.83616,0.83616,0.83616,0.34793,0.348894,0.33282,0.332273,0.351602,0.35799,0.326102,0.326102,0.171413,0.171413,27.598478,27.501255,29.217613,29.279707,27.231831,26.616519,30,30,30,30,,,,,,,,,,,2580,2580,0.83616,0.83616,0.83616,0.83616,0.83616,0.83616,0.83616,0.83616,0.326102,0.326102,30,30,, +8704,1,0.197769,1,0,0,1,2,ROF,5,6,N US 23/Consear,RAMP,1223908,0,0.198,0,,2.24,5,0.296654,,0.296654,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.297022,,0.296654,,0.297022,,0.296738,,0.296654,,0.296738,,0.297565,,0.296654,,0.297565,,0.296654,,0.296654,,0.296654,,,,,,,,0.297022,,0.296738,,0.297565,,0.296654,,0.296654,,0.124705,,0.12462,,0.124868,,0.124595,,0.066253,,39.950455,,39.988644,,39.877568,,40,,40,,,,,,,,,,,,5160,,0.296654,,0.296654,,0.296654,,0.296654,,0.124595,,40,,, +8865,1,0.15509,1,0,0,1,2,RON,5,6,Consear/S US 23,RAMP,1223607,0,0.155,0,,1.09,4,0.206786,,0.206786,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.207119,,0.206786,,0.207119,,0.206927,,0.206786,,0.206927,,0.20811,,0.206786,,0.20811,,0.206786,,0.206786,,0.206786,,,,,,,,0.207119,,0.206927,,0.20811,,0.206786,,0.206786,,0.090052,,0.089994,,0.090349,,0.089952,,0.048078,,44.927711,,44.969318,,44.713801,,45,,45,,,,,,,,,,,,5160,,0.206786,,0.206786,,0.206786,,0.206786,,0.089952,,45,,, +8863,0,0.110741,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.522,1.633,0,2.37303,3.7,5,0.221483,0.221483,0.221483,0.221483,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.23956,0.286772,0.221483,0.221483,0.23956,0.286772,0.226272,0.245049,0.221483,0.221483,0.226272,0.245049,0.272375,0.448316,0.221483,0.221483,0.272375,0.448316,0.221483,0.221483,0.221483,0.221483,0.221483,0.221483,,,,,,,0.23956,0.286772,0.226272,0.245049,0.272375,0.448316,0.221483,0.221483,0.221483,0.221483,0.091802,0.105965,0.087815,0.093448,0.101646,0.154428,0.086378,0.086378,0.045404,0.045404,27.73615,23.169937,29.364973,27.114904,24.394618,14.820993,30,30,30,30,,,,,,,,,,,2580,2580,0.221483,0.221483,0.221483,0.221483,0.221483,0.221483,0.221483,0.221483,0.086378,0.086378,30,30,, +9085,0,0.04886,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.473,1.522,0,1.04699,3.7,5,0.097719,0.097719,0.097719,0.097719,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.129415,0.099882,0.097719,0.097719,0.129415,0.099882,0.10794,0.09872,0.097719,0.097719,0.10794,0.09872,0.18426,0.101312,0.097719,0.097719,0.18426,0.101312,0.097719,0.097719,0.097719,0.097719,0.097719,0.097719,,,,,,,0.129415,0.099882,0.10794,0.09872,0.18426,0.101312,0.097719,0.097719,0.097719,0.097719,0.047619,0.038759,0.041177,0.038411,0.064073,0.039188,0.03811,0.03811,0.020032,0.020032,22.652431,29.3505,27.159192,29.69584,15.910003,28.936222,30,30,30,30,,,,,,,,,,,2580,2580,0.097719,0.097719,0.097719,0.097719,0.097719,0.097719,0.097719,0.097719,0.03811,0.03811,30,30,, +8550,0,0.882956,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1223410,2.604,3.486,0,18.920488,3.7,5,1.765912,1.765912,1.765912,1.765912,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.765916,1.765912,1.765912,1.765912,1.765916,1.765912,1.765912,1.765912,1.765912,1.765912,1.765912,1.765912,1.766029,1.76594,1.765912,1.765912,1.766029,1.76594,1.765912,1.765912,1.765912,1.765912,1.765912,1.765912,,,,,,,1.765916,1.765912,1.765912,1.765912,1.766029,1.76594,1.765912,1.765912,1.765912,1.765912,0.688707,0.688706,0.688706,0.688706,0.688741,0.688714,0.688706,0.688706,0.362012,0.362012,29.999935,29.999998,30,30,29.998015,29.999521,30,30,30,30,,,,,,,,,,,2580,2580,1.765912,1.765912,1.765912,1.765912,1.765912,1.765912,1.765912,1.765912,0.688706,0.688706,30,30,, +40524,1,0.539683,2,0,0,1,2,,5,6,N US 23,,1223505,4.818,5.358,0,,1.02,7,0.462585,,0.462585,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.463049,,0.462585,,0.463049,,0.462671,,0.462585,,0.462671,,0.46285,,0.462585,,0.46285,,0.462585,,0.462585,,0.462585,,,,,,,,0.463049,,0.462671,,0.46285,,0.462585,,0.462585,,0.236058,,0.235944,,0.235998,,0.235918,,0.128753,,69.929896,,69.986972,,69.959915,,70,,70,,,,,,,,,,,,15136,,0.462585,,0.462585,,0.462585,,0.462585,,0.235918,,70,,, +40512,-1,0.044515,0,1,0,2,3,,5,6,US 223,,5493543,0.039,0.083,0,0.953896,1.7,4,,0.053418,,0.053418,,50,,9000,,2043,,4500,,2903,,3096,,3092,,0.069899,,0.053418,,0.069899,,0.060449,,0.053418,,0.060449,,0.062516,,0.053418,,0.062516,,0.053418,,0.053418,,0.053418,,,,,,,,0.069899,,0.060449,,0.062516,,0.053418,,0.053418,,0.028982,,0.026147,,0.026767,,0.024038,,0.012909,,38.211113,,44.184384,,42.723786,,50,,50,,,,,,,,,,,,3096,,0.053418,,0.053418,,0.053418,,0.053418,,0.024038,,50,, +34034,0,1.230496,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.921985,4.921985,4.921985,4.921985,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,,,,,,,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,1.698085,1.698085,1.698085,1.698085,1.698085,1.698085,1.698085,1.698085,0.873652,0.873652,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,4.921985,1.698085,1.698085,15,15,, +34035,0,1.315217,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.26087,5.26087,5.26087,5.26087,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,,,,,,,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,1.815,1.815,1.815,1.815,1.815,1.815,1.815,1.815,0.933804,0.933804,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,5.26087,1.815,1.815,15,15,, +34036,0,1.303967,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.215866,5.215866,5.215866,5.215866,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,,,,,,,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,1.799474,1.799474,1.799474,1.799474,1.799474,1.799474,1.799474,1.799474,0.925816,0.925816,15,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,5.215866,1.799474,1.799474,15,15,, +34037,1,1.179177,2,0,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.716709,,4.716709,,15,,100000,,22700,,50000,,32260,,34400,,34360,,4.718202,,4.716709,,4.718202,,4.717599,,4.716709,,4.717599,,4.718612,,4.716709,,4.718612,,4.716709,,4.716709,,4.716709,,,,,,,,4.718202,,4.717599,,4.718612,,4.716709,,4.716709,,1.627712,,1.627532,,1.627836,,1.627265,,0.837216,,14.995255,,14.997171,,14.99395,,15,,15,,,,,,,,,,,,34400,,4.716709,,4.716709,,4.716709,,4.716709,,1.627265,,15,,, +34038,-1,1.178843,0,2,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,,4.715374,,4.715374,,15,,100000,,22700,,50000,,32260,,34400,,34360,,4.716943,,4.715374,,4.716943,,4.716208,,4.715374,,4.716208,,4.71719,,4.715374,,4.71719,,4.715374,,4.715374,,4.715374,,,,,,,,4.716943,,4.716208,,4.71719,,4.715374,,4.715374,,1.627275,,1.627054,,1.627349,,1.626804,,0.836979,,14.99501,,14.997345,,14.994224,,15,,15,,,,,,,,,,,,34400,,4.715374,,4.715374,,4.715374,,4.715374,,1.626804,,15,, +34082,0,1.220677,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.882709,4.882709,4.882709,4.882709,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.882712,4.882713,4.882709,4.882709,4.882712,4.882713,4.882711,4.882712,4.882709,4.882709,4.882711,4.882712,4.882717,4.882715,4.882709,4.882709,4.882717,4.882715,4.882709,4.882709,4.882709,4.882709,4.882709,4.882709,,,,,,,4.882712,4.882713,4.882711,4.882712,4.882717,4.882715,4.882709,4.882709,4.882709,4.882709,1.684535,1.684536,1.684535,1.684535,1.684537,1.684536,1.684534,1.684534,0.866681,0.866681,14.99999,14.999985,14.999992,14.999991,14.999975,14.99998,15,15,15,15,,,,,,,,,,,34400,34400,4.882709,4.882709,4.882709,4.882709,4.882709,4.882709,4.882709,4.882709,1.684534,1.684534,15,15,, +20716,0,0.018047,1,1,0,2,5,,5,6,Whiteford,Rd,4302329,0,0.018,0,0.386726,3.7,5,0.036094,0.036094,0.036094,0.036094,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.036223,0.036214,0.036094,0.036094,0.036223,0.036214,0.036158,0.03616,0.036094,0.036094,0.036158,0.03616,0.036377,0.036387,0.036094,0.036094,0.036377,0.036387,0.036094,0.036094,0.036094,0.036094,0.036094,0.036094,,,,,,,0.036223,0.036214,0.036158,0.03616,0.036377,0.036387,0.036094,0.036094,0.036094,0.036094,0.014115,0.014113,0.014096,0.014096,0.014162,0.014165,0.014077,0.014077,0.007399,0.007399,29.893315,29.901208,29.946819,29.945709,29.766544,29.758625,30,30,30,30,,,,,,,,,,,2580,2580,0.036094,0.036094,0.036094,0.036094,0.036094,0.036094,0.036094,0.036094,0.014077,0.014077,30,30,, +8484,0,0.45385,1,1,0,2,4,,4,6,Secor,Rd,1223604,0,0.454,0,9.725355,4.5,4.5,0.716605,0.716605,0.716605,0.716605,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.8756,0.956037,0.716605,0.716605,0.8756,0.956037,0.835576,0.862611,0.716605,0.716605,0.835576,0.862611,1.161723,1.062583,0.716605,0.716605,1.161723,1.062583,0.716605,0.716605,0.716605,0.716605,0.716605,0.716605,,,,,,,0.8756,0.956037,0.835576,0.862611,1.161723,1.062583,0.716605,0.716605,0.716605,0.716605,0.344373,0.368504,0.332366,0.340476,0.43021,0.400468,0.296675,0.296675,0.157414,0.157414,31.099814,28.483205,32.589482,31.568112,23.44018,25.627164,38,38,38,38,,,,,,,,,,,3096,3096,0.716605,0.716605,0.716605,0.716605,0.716605,0.716605,0.716605,0.716605,0.296675,0.296675,38,38,, +8887,0,0.599579,1,1,0,2,5,,4,6,Whiteford Center,Rd,1223508,5.42,6.019,0,12.848131,5.8,4.5,1.332399,1.332399,1.332399,1.332399,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.340793,1.350793,1.332399,1.332399,1.340793,1.350793,1.335857,1.342438,1.332399,1.332399,1.335857,1.342438,1.37052,1.359693,1.332399,1.332399,1.37052,1.359693,1.332399,1.332399,1.332399,1.332399,1.332399,1.332399,,,,,,,1.340793,1.350793,1.335857,1.342438,1.37052,1.359693,1.332399,1.332399,1.332399,1.332399,0.510162,0.513162,0.508682,0.510656,0.51908,0.515832,0.507644,0.507644,0.265814,0.265814,26.830973,26.63234,26.930094,26.798087,26.248989,26.458001,27,27,27,27,,,,,,,,,,,2580,2580,1.332399,1.332399,1.332399,1.332399,1.332399,1.332399,1.332399,1.332399,0.507644,0.507644,27,27,, +9105,0,0.25371,1,1,0,2,5,,4,6,Whiteford Center,Rd,1223508,5.166,5.42,0,5.436643,5.8,4.5,0.5638,0.5638,0.5638,0.5638,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.564683,0.566762,0.5638,0.5638,0.564683,0.566762,0.564072,0.5649,0.5638,0.5638,0.564072,0.5649,0.569852,0.567328,0.5638,0.5638,0.569852,0.567328,0.5638,0.5638,0.5638,0.5638,0.5638,0.5638,,,,,,,0.564683,0.566762,0.564072,0.5649,0.569852,0.567328,0.5638,0.5638,0.5638,0.5638,0.215073,0.215696,0.214889,0.215138,0.216623,0.215866,0.214808,0.214808,0.112478,0.112478,26.9578,26.858886,26.986982,26.947421,26.71325,26.832099,27,27,27,27,,,,,,,,,,,2580,2580,0.5638,0.5638,0.5638,0.5638,0.5638,0.5638,0.5638,0.5638,0.214808,0.214808,27,27,, +9251,0,0.589706,1,1,0,2,7,,4,6,Cloverlane,Rd,1232316,0,0.59,0,12.636558,6.55,4.5,1.415295,1.415295,1.415295,1.415295,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.415504,1.415424,1.415295,1.415295,1.415504,1.415424,1.41549,1.415559,1.415295,1.415295,1.41549,1.415559,1.4156,1.415622,1.415295,1.415295,1.4156,1.415622,1.415295,1.415295,1.415295,1.415295,1.415295,1.415295,,,,,,,1.415504,1.415424,1.41549,1.415559,1.4156,1.415622,1.415295,1.415295,1.415295,1.415295,0.530798,0.530774,0.530794,0.530815,0.530827,0.530834,0.530735,0.530735,0.277162,0.277162,24.996302,24.997711,24.996553,24.995321,24.994607,24.994211,25,25,25,25,,,,,,,,,,,2064,2064,1.415295,1.415295,1.415295,1.415295,1.415295,1.415295,1.415295,1.415295,0.530735,0.530735,25,25,, +31085,0,0.614607,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,13.170149,0.15,4,2.458428,2.458428,2.458428,2.458428,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,,,,,,,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,0.848158,0.848158,0.848158,0.848158,0.848158,0.848158,0.848158,0.848158,0.436371,0.436371,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,2.458428,0.848158,0.848158,15,15,, +9110,0,0.50347,1,1,0,2,5,,4,6,Whiteford Center,Rd,1223508,4.663,5.166,0,10.788633,5.8,4.5,1.118821,1.118821,1.118821,1.118821,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.127155,1.136734,1.118821,1.118821,1.127155,1.136734,1.122546,1.129512,1.118821,1.118821,1.122546,1.129512,1.156443,1.144213,1.118821,1.118821,1.156443,1.144213,1.118821,1.118821,1.118821,1.118821,1.118821,1.118821,,,,,,,1.127155,1.136734,1.122546,1.129512,1.156443,1.144213,1.118821,1.118821,1.118821,1.118821,0.428771,0.431645,0.427388,0.429478,0.437558,0.433888,0.426271,0.426271,0.223205,0.223205,26.800375,26.574531,26.910406,26.744439,26.121618,26.400833,27,27,27,27,,,,,,,,,,,2580,2580,1.118821,1.118821,1.118821,1.118821,1.118821,1.118821,1.118821,1.118821,0.426271,0.426271,27,27,, +9104,0,0.283105,1,1,0,2,4,,4,6,Secor,Rd,1223604,0.454,0.737,0,6.066535,4.5,4.5,0.447008,0.447008,0.447008,0.447008,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.450069,0.452629,0.447008,0.447008,0.450069,0.452629,0.451476,0.453589,0.447008,0.447008,0.451476,0.453589,0.463411,0.458396,0.447008,0.447008,0.463411,0.458396,0.447008,0.447008,0.447008,0.447008,0.447008,0.447008,,,,,,,0.450069,0.452629,0.451476,0.453589,0.463411,0.458396,0.447008,0.447008,0.447008,0.447008,0.18598,0.186748,0.186402,0.187036,0.189982,0.188478,0.185061,0.185061,0.098193,0.098193,37.741534,37.528054,37.623898,37.448615,36.654923,37.055916,38,38,38,38,,,,,,,,,,,3096,3096,0.447008,0.447008,0.447008,0.447008,0.447008,0.447008,0.447008,0.447008,0.185061,0.185061,38,38,, +31082,0,0.545757,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.694798,0.15,4,2.183029,2.183029,2.183029,2.183029,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,2.18303,2.183029,2.183029,2.183029,2.18303,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,,,,,,,2.183029,2.183029,2.183029,2.183029,2.183029,2.18303,2.183029,2.183029,2.183029,2.183029,0.753145,0.753145,0.753145,0.753145,0.753145,0.753145,0.753145,0.753145,0.387488,0.387488,14.999999,14.999999,14.999999,14.999999,14.999996,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,2.183029,0.753145,0.753145,15,15,, +31083,0,0.27256,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.84057,0.15,4,1.09024,1.09024,1.09024,1.09024,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,,,,,,,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,0.376133,0.376133,0.376133,0.376133,0.376133,0.376133,0.376133,0.376133,0.193518,0.193518,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,1.09024,0.376133,0.376133,15,15,, +8182,0,0.42492,1,1,0,2,4,,5,6,Sterns,Rd,1223310,5.278,5.703,0,9.105421,3,4,0.637379,0.637379,0.637379,0.637379,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.658491,1.64778,0.637379,0.637379,1.658491,1.64778,1.382763,1.414342,0.637379,0.637379,1.382763,1.414342,2.223393,2.168116,0.637379,0.637379,2.223393,2.168116,0.637379,0.637379,0.637379,0.637379,0.637379,0.637379,,,,,,,1.658491,1.64778,1.382763,1.414342,2.223393,2.168116,0.637379,0.637379,0.637379,0.637379,0.574033,0.570819,0.491315,0.500788,0.743504,0.72692,0.267699,0.267699,0.142348,0.142348,15.372515,15.472444,18.437847,18.026175,11.466787,11.759141,40,40,40,40,,,,,,,,,,,3096,3096,0.637379,0.637379,0.637379,0.637379,0.637379,0.637379,0.637379,0.637379,0.267699,0.267699,40,40,, +8463,0,1.615133,1,1,0,2,5,,5,6,Consear,Rd,1223608,2.783,4.397,0,34.609991,3.7,5,3.230266,3.230266,3.230266,3.230266,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.431937,3.48906,3.230266,3.230266,3.431937,3.48906,3.284348,3.270588,3.230266,3.230266,3.284348,3.270588,4.048656,4.078005,3.230266,3.230266,4.048656,4.078005,3.230266,3.230266,3.230266,3.230266,3.230266,3.230266,,,,,,,3.431937,3.48906,3.284348,3.270588,4.048656,4.078005,3.230266,3.230266,3.230266,3.230266,1.320305,1.337442,1.276028,1.2719,1.505321,1.514125,1.259804,1.259804,0.662205,0.662205,28.237111,27.774808,29.506005,29.630137,23.93584,23.763576,30,30,30,30,,,,,,,,,,,2580,2580,3.230266,3.230266,3.230266,3.230266,3.230266,3.230266,3.230266,3.230266,1.259804,1.259804,30,30,, +8549,0,0.968187,1,1,0,2,4,,5,6,Saint Anthony,Rd,1223208,5.095,6.063,0,20.746865,3,4,1.452281,1.452281,1.452281,1.452281,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.797321,1.944408,1.452281,1.452281,1.797321,1.944408,1.680023,1.6717,1.452281,1.452281,1.680023,1.6717,2.073648,1.881234,1.452281,1.452281,2.073648,1.881234,1.452281,1.452281,1.452281,1.452281,1.452281,1.452281,,,,,,,1.797321,1.944408,1.680023,1.6717,2.073648,1.881234,1.452281,1.452281,1.452281,1.452281,0.71347,0.757596,0.678281,0.675784,0.796368,0.738644,0.609958,0.609958,0.324343,0.324343,32.321001,29.876045,34.577628,34.749782,28.014029,30.879324,40,40,40,40,,,,,,,,,,,3096,3096,1.452281,1.452281,1.452281,1.452281,1.452281,1.452281,1.452281,1.452281,0.609958,0.609958,40,40,, +9055,0,1.532181,1,1,0,2,4,,5,6,Summerfield,Rd,1223702,8.774,10.305,0,32.832448,3,4,2.298271,2.298271,2.298271,2.298271,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.567537,3.112949,2.298271,2.298271,2.567537,3.112949,2.454414,2.450685,2.298271,2.298271,2.454414,2.450685,3.208333,2.756067,2.298271,2.298271,3.208333,2.756067,2.298271,2.298271,2.298271,2.298271,2.298271,2.298271,,,,,,,2.567537,3.112949,2.454414,2.450685,3.208333,2.756067,2.298271,2.298271,2.298271,2.298271,1.046054,1.209677,1.012117,1.010998,1.238292,1.102613,0.965274,0.965274,0.513281,0.513281,35.80507,29.531756,37.455319,37.512306,28.653779,33.355808,40,40,40,40,,,,,,,,,,,3096,3096,2.298271,2.298271,2.298271,2.298271,2.298271,2.298271,2.298271,2.298271,0.965274,0.965274,40,40,, +9098,0,1.322995,1,1,0,2,5,,5,6,Secor,Rd,1223604,3.446,4.769,0,28.349902,3.7,5,2.645991,2.645991,2.645991,2.645991,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.709025,2.875688,2.645991,2.645991,2.709025,2.875688,2.677227,2.677774,2.645991,2.645991,2.677227,2.677774,3.119505,3.170154,2.645991,2.645991,3.119505,3.170154,2.645991,2.645991,2.645991,2.645991,2.645991,2.645991,,,,,,,2.709025,2.875688,2.677227,2.677774,3.119505,3.170154,2.645991,2.645991,2.645991,2.645991,1.050847,1.100846,1.041307,1.041472,1.173991,1.189185,1.031936,1.031936,0.542428,0.542428,29.301953,27.603729,29.649974,29.643918,25.446253,25.039704,30,30,30,30,,,,,,,,,,,2580,2580,2.645991,2.645991,2.645991,2.645991,2.645991,2.645991,2.645991,2.645991,1.031936,1.031936,30,30,, +9111,0,1.527,1,1,0,2,6,,5,6,Whiteford Center,Rd,1223508,2.542,4.068,0,32.721435,5.8,6,3.054001,3.054001,3.054001,3.054001,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.056785,3.089233,3.054001,3.054001,3.056785,3.089233,3.0552,3.059246,3.054001,3.054001,3.0552,3.059246,3.143584,3.073538,3.054001,3.054001,3.143584,3.073538,3.054001,3.054001,3.054001,3.054001,3.054001,3.054001,,,,,,,3.056785,3.089233,3.0552,3.059246,3.143584,3.073538,3.054001,3.054001,3.054001,3.054001,1.191895,1.20163,1.19142,1.192634,1.217935,1.196921,1.19106,1.19106,0.62607,0.62607,29.972675,29.657853,29.988219,29.948562,29.145081,29.809304,30,30,30,30,,,,,,,,,,,2236,2236,3.054001,3.054001,3.054001,3.054001,3.054001,3.054001,3.054001,3.054001,1.19106,1.19106,30,30,, +31065,0,1.590129,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,34.074186,0.15,4,6.360515,6.360515,6.360515,6.360515,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,,,,,,,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,2.194378,2.194378,2.194378,2.194378,2.194378,2.194378,2.194378,2.194378,1.128991,1.128991,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,6.360515,2.194378,2.194378,15,15,, +31081,0,1.662535,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.625754,0.15,4,6.650141,6.650141,6.650141,6.650141,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,,,,,,,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,2.294299,2.294299,2.294299,2.294299,2.294299,2.294299,2.294299,2.294299,1.1804,1.1804,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,6.650141,2.294299,2.294299,15,15,, +8491,0,0.312919,1,1,0,2,6,,5,6,Whiteford Center,Rd,1223508,2.229,2.542,0,6.705403,5.8,6,0.625838,0.625838,0.625838,0.625838,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.626586,0.634028,0.625838,0.625838,0.626586,0.634028,0.626119,0.627026,0.625838,0.625838,0.626119,0.627026,0.666717,0.635734,0.625838,0.625838,0.666717,0.635734,0.625838,0.625838,0.625838,0.625838,0.625838,0.625838,,,,,,,0.626586,0.634028,0.626119,0.627026,0.666717,0.635734,0.625838,0.625838,0.625838,0.625838,0.244301,0.246534,0.244161,0.244433,0.25634,0.247046,0.244077,0.244077,0.128297,0.128297,29.964169,29.612471,29.986499,29.943138,28.160582,29.533001,30,30,30,30,,,,,,,,,,,2236,2236,0.625838,0.625838,0.625838,0.625838,0.625838,0.625838,0.625838,0.625838,0.244077,0.244077,30,30,, +8861,0,0.185654,1,1,0,2,5,,5,6,Consear,Rd,1223608,2.597,2.783,0,3.978297,3.7,5,0.371308,0.371308,0.371308,0.371308,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.399959,0.407865,0.371308,0.371308,0.399959,0.407865,0.378874,0.377202,0.371308,0.371308,0.378874,0.377202,0.496059,0.502318,0.371308,0.371308,0.496059,0.502318,0.371308,0.371308,0.371308,0.371308,0.371308,0.371308,,,,,,,0.399959,0.407865,0.378874,0.377202,0.496059,0.502318,0.371308,0.371308,0.371308,0.371308,0.153405,0.155777,0.14708,0.146578,0.182236,0.184113,0.14481,0.14481,0.076118,0.076118,27.85094,27.311104,29.400916,29.531178,22.455438,22.175644,30,30,30,30,,,,,,,,,,,2580,2580,0.371308,0.371308,0.371308,0.371308,0.371308,0.371308,0.371308,0.371308,0.14481,0.14481,30,30,, +31086,0,1.213111,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,25.995234,0.15,4,4.852444,4.852444,4.852444,4.852444,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,,,,,,,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,1.674093,1.674093,1.674093,1.674093,1.674093,1.674093,1.674093,1.674093,0.861309,0.861309,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,4.852444,1.674093,1.674093,15,15,, +8967,0,0.208589,1,1,0,2,4,,5,6,Sterns,Rd,1223310,5.07,5.278,0,4.469772,3,4,0.312884,0.312884,0.312884,0.312884,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.695197,0.684904,0.312884,0.312884,0.695197,0.684904,0.573541,0.586694,0.312884,0.312884,0.573541,0.586694,0.935472,0.916961,0.312884,0.312884,0.935472,0.916961,0.312884,0.312884,0.312884,0.312884,0.312884,0.312884,,,,,,,0.695197,0.684904,0.573541,0.586694,0.935472,0.916961,0.312884,0.312884,0.312884,0.312884,0.246105,0.243017,0.209608,0.213554,0.318188,0.312634,0.131411,0.131411,0.069877,0.069877,18.002606,18.273176,21.821213,21.332028,13.378657,13.648742,40,40,40,40,,,,,,,,,,,3096,3096,0.312884,0.312884,0.312884,0.312884,0.312884,0.312884,0.312884,0.312884,0.131411,0.131411,40,40,, +31088,0,0.20462,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.384711,0.15,4,0.818479,0.818479,0.818479,0.818479,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.81848,0.818479,0.818479,0.818479,0.81848,0.818479,0.818479,0.818479,0.818479,0.818479,0.818479,0.818479,0.818479,0.81848,0.818479,0.818479,0.818479,0.81848,0.818479,0.818479,0.818479,0.818479,0.818479,0.818479,,,,,,,0.81848,0.818479,0.818479,0.818479,0.818479,0.81848,0.818479,0.818479,0.818479,0.818479,0.282375,0.282375,0.282375,0.282375,0.282375,0.282375,0.282375,0.282375,0.14528,0.14528,14.999998,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,0.818479,0.818479,0.818479,0.818479,0.818479,0.818479,0.818479,0.818479,0.282375,0.282375,15,15,, +40514,1,0.20136,1,0,0,1,2,RON,5,6,US 223/S US 23,RAMP,1223503,0,0.201,0,,1.09,4,0.26848,,0.26848,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.271635,,0.26848,,0.271635,,0.269701,,0.26848,,0.269701,,0.269243,,0.26848,,0.269243,,0.26848,,0.26848,,0.26848,,,,,,,,0.271635,,0.269701,,0.269243,,0.26848,,0.26848,,0.117735,,0.117155,,0.117018,,0.116789,,0.062422,,44.477304,,44.796253,,44.872449,,45,,45,,,,,,,,,,,,5160,,0.26848,,0.26848,,0.26848,,0.26848,,0.116789,,45,,, +31079,0,0.3577,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,7.665004,0.15,4,1.430801,1.430801,1.430801,1.430801,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,,,,,,,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,0.493626,0.493626,0.493626,0.493626,0.493626,0.493626,0.493626,0.493626,0.253967,0.253967,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,1.430801,0.493626,0.493626,15,15,, +40508,1,0.035505,1,0,0,2,3,,5,6,US 223,,1223208,3.907,3.943,0,0.76082,1.7,4,0.042606,,0.042606,,50,,9000,,2043,,4500,,2903,,3096,,3092,,0.045896,,0.042606,,0.045896,,0.04317,,0.042606,,0.04317,,0.044331,,0.042606,,0.044331,,0.042606,,0.042606,,0.042606,,,,,,,,0.045896,,0.04317,,0.044331,,0.042606,,0.042606,,0.02016,,0.019342,,0.01969,,0.019173,,0.010296,,46.416232,,49.346981,,48.053798,,50,,50,,,,,,,,,,,,3096,,0.042606,,0.042606,,0.042606,,0.042606,,0.019173,,50,,, +8835,0,0.165998,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,10.856,11.022,0,3.557095,4.5,4.5,0.262102,0.262102,0.262102,0.262102,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.475568,0.565858,0.262102,0.262102,0.475568,0.565858,0.3601,0.344461,0.262102,0.262102,0.3601,0.344461,0.771634,0.672776,0.262102,0.262102,0.771634,0.672776,0.262102,0.262102,0.262102,0.262102,0.262102,0.262102,,,,,,,0.475568,0.565858,0.3601,0.344461,0.771634,0.672776,0.262102,0.262102,0.262102,0.262102,0.17255,0.199637,0.13791,0.133218,0.26137,0.231712,0.10851,0.10851,0.057575,0.057575,20.943094,17.601359,27.658585,28.914335,12.907501,14.804141,38,38,38,38,,,,,,,,,,,3096,3096,0.262102,0.262102,0.262102,0.262102,0.262102,0.262102,0.262102,0.262102,0.10851,0.10851,38,38,, +8854,0,0.818537,1,1,0,2,4,,4,6,Sterns,Rd,1223310,5.703,6.521,0,17.540082,4.5,4.5,1.292427,1.292427,1.292427,1.292427,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.694021,2.804834,1.292427,1.292427,2.694021,2.804834,2.31656,2.39683,1.292427,1.292427,2.31656,2.39683,3.567288,3.408106,1.292427,1.292427,3.567288,3.408106,1.292427,1.292427,1.292427,1.292427,1.292427,1.292427,,,,,,,2.694021,2.804834,2.31656,2.39683,3.567288,3.408106,1.292427,1.292427,1.292427,1.292427,0.955543,0.988787,0.842305,0.866386,1.217523,1.169769,0.535065,0.535065,0.283903,0.283903,18.230086,17.50985,21.2005,20.490492,13.767386,14.410417,38,38,38,38,,,,,,,,,,,3096,3096,1.292427,1.292427,1.292427,1.292427,1.292427,1.292427,1.292427,1.292427,0.535065,0.535065,38,38,, +8876,0,0.198424,1,1,0,2,5,,4,6,Secor,Rd,1223604,2.252,2.45,0,4.251949,5.8,4.5,0.440943,0.440943,0.440943,0.440943,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.476874,0.46048,0.440943,0.440943,0.476874,0.46048,0.458904,0.462529,0.440943,0.440943,0.458904,0.462529,0.483618,0.509934,0.440943,0.440943,0.483618,0.509934,0.440943,0.440943,0.440943,0.440943,0.440943,0.440943,,,,,,,0.476874,0.46048,0.458904,0.462529,0.483618,0.509934,0.440943,0.440943,0.440943,0.440943,0.178778,0.17386,0.173388,0.174475,0.180802,0.188697,0.167999,0.167999,0.087968,0.087968,24.96564,25.854437,25.943228,25.739907,24.617493,23.347054,27,27,27,27,,,,,,,,,,,2580,2580,0.440943,0.440943,0.440943,0.440943,0.440943,0.440943,0.440943,0.440943,0.167999,0.167999,27,27,, +9043,0,0.525313,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,11.022,11.547,0,11.256708,4.5,4.5,0.829442,0.829442,0.829442,0.829442,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.032797,1.10165,0.829442,0.829442,1.032797,1.10165,0.939348,0.923138,0.829442,0.829442,0.939348,0.923138,1.133457,1.054118,0.829442,0.829442,1.133457,1.054118,0.829442,0.829442,0.829442,0.829442,0.829442,0.829442,,,,,,,1.032797,1.10165,0.939348,0.923138,1.133457,1.054118,0.829442,0.829442,0.829442,0.829442,0.404395,0.425051,0.376361,0.371498,0.434593,0.410792,0.343389,0.343389,0.182201,0.182201,30.517888,28.610519,33.553875,34.143081,27.807663,29.900623,38,38,38,38,,,,,,,,,,,3096,3096,0.829442,0.829442,0.829442,0.829442,0.829442,0.829442,0.829442,0.829442,0.343389,0.343389,38,38,, +9078,0,0.722395,1,1,0,2,5,,4,6,Consear,Rd,1223608,4.397,5.119,0,15.479884,5.8,4.5,1.605321,1.605321,1.605321,1.605321,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.607425,1.635874,1.605321,1.605321,1.607425,1.635874,1.605871,1.605962,1.605321,1.605321,1.605871,1.605962,1.692997,1.641489,1.605321,1.605321,1.692997,1.641489,1.605321,1.605321,1.605321,1.605321,1.605321,1.605321,,,,,,,1.607425,1.635874,1.605871,1.605962,1.692997,1.641489,1.605321,1.605321,1.605321,1.605321,0.612258,0.620793,0.611792,0.61182,0.63793,0.622478,0.611627,0.611627,0.320262,0.320262,26.964666,26.495737,26.990763,26.989231,25.601748,26.405097,27,27,27,27,,,,,,,,,,,2580,2580,1.605321,1.605321,1.605321,1.605321,1.605321,1.605321,1.605321,1.605321,0.611627,0.611627,27,27,, +31090,0,0.629247,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,13.483868,0.15,4,2.516989,2.516989,2.516989,2.516989,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,,,,,,,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,0.868361,0.868361,0.868361,0.868361,0.868361,0.868361,0.868361,0.868361,0.446766,0.446766,15,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,2.516989,0.868361,0.868361,15,15,, +9046,0,0.550609,1,1,0,2,4,,5,6,Summerfield,Rd,1223702,10.305,10.856,0,11.798772,3,4,0.825914,0.825914,0.825914,0.825914,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.922678,1.118679,0.825914,0.825914,0.922678,1.118679,0.882026,0.880686,0.825914,0.825914,0.882026,0.880686,1.152956,0.990484,0.825914,0.825914,1.152956,0.990484,0.825914,0.825914,0.825914,0.825914,0.825914,0.825914,,,,,,,0.922678,1.118679,0.882026,0.880686,1.152956,0.990484,0.825914,0.825914,0.825914,0.825914,0.375913,0.434713,0.363717,0.363315,0.444997,0.396255,0.346884,0.346884,0.184454,0.184454,35.80507,29.531756,37.455319,37.512306,28.653779,33.353958,40,40,40,40,,,,,,,,,,,3096,3096,0.825914,0.825914,0.825914,0.825914,0.825914,0.825914,0.825914,0.825914,0.346884,0.346884,40,40,, +8451,0,0.133092,1,1,0,2,4,,4,6,Sterns,Rd,1223310,6.521,6.654,0,2.851965,4.5,4.5,0.210145,0.210145,0.210145,0.210145,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.420209,0.430029,0.210145,0.210145,0.420209,0.430029,0.379906,0.388953,0.210145,0.210145,0.379906,0.388953,0.439942,0.431546,0.210145,0.210145,0.439942,0.431546,0.210145,0.210145,0.210145,0.210145,0.210145,0.210145,,,,,,,0.420209,0.430029,0.379906,0.388953,0.439942,0.431546,0.210145,0.210145,0.210145,0.210145,0.150019,0.152965,0.137928,0.140642,0.155939,0.15342,0.087,0.087,0.046162,0.046162,19.003628,18.569696,21.019671,20.530752,18.15127,18.504415,38,38,38,38,,,,,,,,,,,3096,3096,0.210145,0.210145,0.210145,0.210145,0.210145,0.210145,0.210145,0.210145,0.087,0.087,38,38,, +8883,0,0.730195,1,1,0,2,4,,4,6,Secor,Rd,1223604,1.445,2.175,0,15.647025,4.5,4.5,1.152939,1.152939,1.152939,1.152939,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.170856,1.175544,1.152939,1.152939,1.170856,1.175544,1.158708,1.162689,1.152939,1.152939,1.158708,1.162689,1.20346,1.217931,1.152939,1.152939,1.20346,1.217931,1.152939,1.152939,1.152939,1.152939,1.152939,1.152939,,,,,,,1.170856,1.175544,1.158708,1.162689,1.20346,1.217931,1.152939,1.152939,1.152939,1.152939,0.482692,0.484098,0.479047,0.480242,0.492473,0.496814,0.477317,0.477317,0.253262,0.253262,37.41849,37.269283,37.810807,37.681336,36.404772,35.972196,38,38,38,38,,,,,,,,,,,3096,3096,1.152939,1.152939,1.152939,1.152939,1.152939,1.152939,1.152939,1.152939,0.477317,0.477317,38,38,, +31091,0,0.753072,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.137253,0.15,4,3.012287,3.012287,3.012287,3.012287,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,,,,,,,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,1.039239,1.039239,1.039239,1.039239,1.039239,1.039239,1.039239,1.039239,0.534681,0.534681,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,3.012287,1.039239,1.039239,15,15,, +31092,0,0.255163,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.467785,0.15,4,1.020653,1.020653,1.020653,1.020653,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.020656,1.020656,1.020653,1.020653,1.020656,1.020656,1.020656,1.020656,1.020653,1.020653,1.020656,1.020656,1.020658,1.020658,1.020653,1.020653,1.020658,1.020658,1.020653,1.020653,1.020653,1.020653,1.020653,1.020653,,,,,,,1.020656,1.020656,1.020656,1.020656,1.020658,1.020658,1.020653,1.020653,1.020653,1.020653,0.352126,0.352126,0.352126,0.352126,0.352127,0.352127,0.352125,0.352125,0.181166,0.181166,14.999964,14.999955,14.999956,14.999956,14.999926,14.999926,15,15,15,15,,,,,,,,,,,34400,34400,1.020653,1.020653,1.020653,1.020653,1.020653,1.020653,1.020653,1.020653,0.352125,0.352125,15,15,, +9101,0,0.076904,1,1,0,2,4,,4,6,Secor,Rd,1223604,2.175,2.252,0,1.647935,4.5,4.5,0.121427,0.121427,0.121427,0.121427,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.123314,0.123808,0.121427,0.121427,0.123314,0.123808,0.122034,0.122454,0.121427,0.121427,0.122034,0.122454,0.126748,0.128272,0.121427,0.121427,0.126748,0.128272,0.121427,0.121427,0.121427,0.121427,0.121427,0.121427,,,,,,,0.123314,0.123808,0.122034,0.122454,0.126748,0.128272,0.121427,0.121427,0.121427,0.121427,0.050837,0.050985,0.050453,0.050579,0.051867,0.052324,0.050271,0.050271,0.026673,0.026673,37.41849,37.269283,37.810807,37.681336,36.404772,35.972196,38,38,38,38,,,,,,,,,,,3096,3096,0.121427,0.121427,0.121427,0.121427,0.121427,0.121427,0.121427,0.121427,0.050271,0.050271,38,38,, +9099,0,0.352278,1,1,0,2,5,,5,6,Secor,Rd,1223604,2.947,3.299,0,7.548813,3.7,5,0.704556,0.704556,0.704556,0.704556,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.775331,0.841081,0.704556,0.704556,0.775331,0.841081,0.743821,0.749383,0.704556,0.704556,0.743821,0.749383,1.023963,1.025572,0.704556,0.704556,1.023963,1.025572,0.704556,0.704556,0.704556,0.704556,0.704556,0.704556,,,,,,,0.775331,0.841081,0.743821,0.749383,1.023963,1.025572,0.704556,0.704556,0.704556,0.704556,0.296009,0.315734,0.286556,0.288225,0.370599,0.371082,0.274777,0.274777,0.144434,0.144434,27.261493,25.13038,28.416337,28.205437,20.642021,20.609639,30,30,30,30,,,,,,,,,,,2580,2580,0.704556,0.704556,0.704556,0.704556,0.704556,0.704556,0.704556,0.704556,0.274777,0.274777,30,30,, +8476,0,0.09647,1,1,0,2,5,,4,6,Secor,Rd,1223604,2.851,2.947,0,2.067223,5.8,4.5,0.214379,0.214379,0.214379,0.214379,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.271188,0.247309,0.214379,0.214379,0.271188,0.247309,0.226038,0.227209,0.214379,0.214379,0.226038,0.227209,0.276235,0.319337,0.214379,0.214379,0.276235,0.319337,0.214379,0.214379,0.214379,0.214379,0.214379,0.214379,,,,,,,0.271188,0.247309,0.226038,0.227209,0.276235,0.319337,0.214379,0.214379,0.214379,0.214379,0.098721,0.091557,0.085176,0.085527,0.100235,0.113166,0.081678,0.081678,0.042769,0.042769,21.343922,23.404826,25.607289,25.475326,20.953961,18.12573,27,27,27,27,,,,,,,,,,,2580,2580,0.214379,0.214379,0.214379,0.214379,0.214379,0.214379,0.214379,0.214379,0.081678,0.081678,27,27,, +8475,0,0.146958,1,1,0,2,5,,5,6,Secor,Rd,1223604,3.299,3.446,0,3.149105,3.7,5,0.293916,0.293916,0.293916,0.293916,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.356827,0.361331,0.293916,0.293916,0.356827,0.361331,0.316675,0.318742,0.293916,0.293916,0.316675,0.318742,0.467853,0.520982,0.293916,0.293916,0.467853,0.520982,0.293916,0.293916,0.293916,0.293916,0.293916,0.293916,,,,,,,0.356827,0.361331,0.316675,0.318742,0.467853,0.520982,0.293916,0.293916,0.293916,0.293916,0.133501,0.134852,0.121455,0.122075,0.166808,0.182747,0.114627,0.114627,0.060253,0.060253,24.71083,24.402801,27.843988,27.66339,18.84672,16.924745,30,30,30,30,,,,,,,,,,,2580,2580,0.293916,0.293916,0.293916,0.293916,0.293916,0.293916,0.293916,0.293916,0.114627,0.114627,30,30,, +8561,0,0.697408,1,1,0,2,4,,5,6,Saint Anthony,Rd,1223208,6.063,6.76,0,14.944464,3,4,1.046112,1.046112,1.046112,1.046112,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.14166,1.298133,1.046112,1.046112,1.14166,1.298133,1.142603,1.156337,1.046112,1.046112,1.142603,1.156337,1.400325,1.207006,1.046112,1.046112,1.400325,1.207006,1.046112,1.046112,1.046112,1.046112,1.046112,1.046112,,,,,,,1.14166,1.298133,1.142603,1.156337,1.400325,1.207006,1.046112,1.046112,1.046112,1.046112,0.468031,0.514973,0.468314,0.472434,0.545631,0.487635,0.439367,0.439367,0.233632,0.233632,36.652335,32.234369,36.622082,36.187126,29.881993,34.668011,40,40,40,40,,,,,,,,,,,3096,3096,1.046112,1.046112,1.046112,1.046112,1.046112,1.046112,1.046112,1.046112,0.439367,0.439367,40,40,, +8872,0,0.501584,1,1,0,2,4,,5,6,Secor,Rd,1223604,4.949,5.451,0,10.748219,3,4,0.752375,0.752375,0.752375,0.752375,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.953259,0.84254,0.752375,0.752375,0.953259,0.84254,0.834902,0.836474,0.752375,0.752375,0.834902,0.836474,0.978346,1.143865,0.752375,0.752375,0.978346,1.143865,0.752375,0.752375,0.752375,0.752375,0.752375,0.752375,,,,,,,0.953259,0.84254,0.834902,0.836474,0.978346,1.143865,0.752375,0.752375,0.752375,0.752375,0.376263,0.343047,0.340756,0.341227,0.383789,0.433445,0.315998,0.315998,0.16803,0.16803,31.570672,35.719395,36.046151,35.978423,30.761116,26.309938,40,40,40,40,,,,,,,,,,,3096,3096,0.752375,0.752375,0.752375,0.752375,0.752375,0.752375,0.752375,0.752375,0.315998,0.315998,40,40,, +9191,0,0.422692,1,1,0,2,4,,5,6,Saint Anthony,Rd,1223208,6.76,7.183,0,9.057682,3,4,0.634038,0.634038,0.634038,0.634038,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.663783,0.678135,0.634038,0.634038,0.663783,0.678135,0.661986,0.663955,0.634038,0.634038,0.661986,0.663955,0.697125,0.672395,0.634038,0.634038,0.697125,0.672395,0.634038,0.634038,0.634038,0.634038,0.634038,0.634038,,,,,,,0.663783,0.678135,0.661986,0.663955,0.697125,0.672395,0.634038,0.634038,0.634038,0.634038,0.275219,0.279525,0.27468,0.275271,0.285222,0.277803,0.266296,0.266296,0.141602,0.141602,38.207532,37.39892,38.311234,38.197633,36.380127,37.718188,40,40,40,40,,,,,,,,,,,3096,3096,0.634038,0.634038,0.634038,0.634038,0.634038,0.634038,0.634038,0.634038,0.266296,0.266296,40,40,, +31066,0,0.360691,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,7.729092,0.15,4,1.442764,1.442764,1.442764,1.442764,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,,,,,,,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,0.497754,0.497754,0.497754,0.497754,0.497754,0.497754,0.497754,0.497754,0.256091,0.256091,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,1.442764,0.497754,0.497754,15,15,, +9095,0,0.180779,1,1,0,2,5,,5,6,Secor,Rd,1223604,4.769,4.949,0,3.873838,3.7,5,0.361558,0.361558,0.361558,0.361558,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.372982,0.362295,0.361558,0.361558,0.372982,0.362295,0.361816,0.361785,0.361558,0.361558,0.361816,0.361785,0.36452,0.387284,0.361558,0.361558,0.36452,0.387284,0.361558,0.361558,0.361558,0.361558,0.361558,0.361558,,,,,,,0.372982,0.362295,0.361816,0.361785,0.36452,0.387284,0.361558,0.361558,0.361558,0.361558,0.144435,0.141229,0.141085,0.141076,0.141896,0.148725,0.141008,0.141008,0.074119,0.074119,29.081168,29.939009,29.978599,29.981234,29.756214,28.007222,30,30,30,30,,,,,,,,,,,2580,2580,0.361558,0.361558,0.361558,0.361558,0.361558,0.361558,0.361558,0.361558,0.141008,0.141008,30,30,, +31068,0,0.100625,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,2.156253,0.15,4,0.402501,0.402501,0.402501,0.402501,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,,,,,,,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.138863,0.138863,0.138863,0.138863,0.138863,0.138863,0.138863,0.138863,0.071444,0.071444,14.999996,15,15,15,14.999999,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.402501,0.138863,0.138863,15,15,, +8507,1,4.164953,2,0,0,1,2,,5,6,N US 23,,1223505,8.832,12.995,0,,1.02,7,3.56996,,3.56996,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.607514,,3.56996,,3.607514,,3.572828,,3.56996,,3.572828,,3.576174,,3.56996,,3.576174,,3.56996,,3.56996,,3.56996,,,,,,,,3.607514,,3.572828,,3.576174,,3.56996,,3.56996,,1.831946,,1.82154,,1.822544,,1.820679,,0.993639,,69.2713,,69.943804,,69.878354,,70,,70,,,,,,,,,,,,15136,,3.56996,,3.56996,,3.56996,,3.56996,,1.820679,,70,,, +8526,-1,4.11025,0,2,0,1,2,,5,6,S US 23,,1223504,8.961,13.07,0,,1.02,7,,3.523072,,3.523072,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.526772,,3.523072,,3.526772,,3.525059,,3.523072,,3.525059,,3.552773,,3.523072,,3.552773,,3.523072,,3.523072,,3.523072,,,,,,,,3.526772,,3.525059,,3.552773,,3.523072,,3.523072,,1.797877,,1.797363,,1.805677,,1.796767,,0.980588,,69.926551,,69.960541,,69.414803,,70,,70,,,,,,,,,,,,15136,,3.523072,,3.523072,,3.523072,,3.523072,,1.796767,,70,, +8825,0,1.181509,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,3.058,4.239,0,25.31804,3.7,5,2.363017,2.363017,2.363017,2.363017,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.363018,2.363017,2.363017,2.363017,2.363018,2.363017,2.363017,2.363017,2.363017,2.363017,2.363017,2.363017,2.363017,2.363018,2.363017,2.363017,2.363017,2.363018,2.363017,2.363017,2.363017,2.363017,2.363017,2.363017,,,,,,,2.363018,2.363017,2.363017,2.363017,2.363017,2.363018,2.363017,2.363017,2.363017,2.363017,0.921577,0.921577,0.921577,0.921577,0.921577,0.921577,0.921577,0.921577,0.484419,0.484419,29.999989,30,30,30,30,29.999985,30,30,30,30,,,,,,,,,,,2580,2580,2.363017,2.363017,2.363017,2.363017,2.363017,2.363017,2.363017,2.363017,0.921577,0.921577,30,30,, +9018,0,0.839432,1,1,0,2,4,,5,6,Ida West,Rd,1223706,0,0.839,0,17.987838,3,4,1.259149,1.259149,1.259149,1.259149,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.29601,1.263882,1.259149,1.259149,1.29601,1.263882,1.265803,1.264967,1.259149,1.259149,1.265803,1.264967,1.273224,1.294799,1.259149,1.259149,1.273224,1.294799,1.259149,1.259149,1.259149,1.259149,1.259149,1.259149,,,,,,,1.29601,1.263882,1.265803,1.264967,1.273224,1.294799,1.259149,1.259149,1.259149,1.259149,0.539901,0.530262,0.530839,0.530588,0.533065,0.539538,0.528842,0.528842,0.28121,0.28121,38.862327,39.850198,39.789711,39.81603,39.557819,38.898645,40,40,40,40,,,,,,,,,,,3096,3096,1.259149,1.259149,1.259149,1.259149,1.259149,1.259149,1.259149,1.259149,0.528842,0.528842,40,40,, +9064,0,1.014898,1,1,0,2,6,,5,6,Summerfield,Rd,1223702,2.923,3.937,0,21.747813,5.8,6,2.029796,2.029796,2.029796,2.029796,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.029828,2.031118,2.029796,2.029796,2.029828,2.031118,2.029813,2.029816,2.029796,2.029796,2.029813,2.029816,2.030924,2.029873,2.029796,2.029796,2.030924,2.029873,2.029796,2.029796,2.029796,2.029796,2.029796,2.029796,,,,,,,2.029828,2.031118,2.029813,2.029816,2.030924,2.029873,2.029796,2.029796,2.029796,2.029796,0.79163,0.792017,0.791626,0.791627,0.791959,0.791644,0.79162,0.79162,0.416108,0.416108,29.999527,29.980478,29.999742,29.999696,29.983341,29.998861,30,30,30,30,,,,,,,,,,,2236,2236,2.029796,2.029796,2.029796,2.029796,2.029796,2.029796,2.029796,2.029796,0.79162,0.79162,30,30,, +9205,0,1.174133,1,1,0,2,5,,5,6,Teal,Rd,1233710,1.802,2.975,0,25.159994,3.7,5,2.348266,2.348266,2.348266,2.348266,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.348316,2.34829,2.348266,2.348266,2.348316,2.34829,2.348279,2.348283,2.348266,2.348266,2.348279,2.348283,2.348369,2.348336,2.348266,2.348266,2.348369,2.348336,2.348266,2.348266,2.348266,2.348266,2.348266,2.348266,,,,,,,2.348316,2.34829,2.348279,2.348283,2.348369,2.348336,2.348266,2.348266,2.348266,2.348266,0.915839,0.915831,0.915828,0.915829,0.915855,0.915845,0.915824,0.915824,0.481395,0.481395,29.99936,29.999693,29.999832,29.999786,29.998684,29.999104,30,30,30,30,,,,,,,,,,,2580,2580,2.348266,2.348266,2.348266,2.348266,2.348266,2.348266,2.348266,2.348266,0.915824,0.915824,30,30,, +9235,0,1.826022,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1233205,3.028,4.853,0,39.129049,3.7,5,3.652045,3.652045,3.652045,3.652045,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,,,,,,,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,1.424297,1.424297,1.424297,1.424297,1.424297,1.424297,1.424297,1.424297,0.748669,0.748669,29.999999,30,30,30,29.999999,29.999997,30,30,30,30,,,,,,,,,,,2580,2580,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,3.652045,1.424297,1.424297,30,30,, +25900,0,1.564354,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,33.521865,0.15,4,6.257415,6.257415,6.257415,6.257415,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,,,,,,,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,2.158808,2.158808,2.158808,2.158808,2.158808,2.158808,2.158808,2.158808,1.110691,1.110691,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,6.257415,2.158808,2.158808,15,15,, +31078,0,2.061293,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,44.170567,0.15,4,8.245173,8.245173,8.245173,8.245173,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,,,,,,,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,2.844585,2.844585,2.844585,2.844585,2.844585,2.844585,2.844585,2.844585,1.463518,1.463518,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,8.245173,2.844585,2.844585,15,15,, +31093,0,2.004842,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,42.960906,0.15,4,8.019369,8.019369,8.019369,8.019369,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,,,,,,,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,2.766682,2.766682,2.766682,2.766682,2.766682,2.766682,2.766682,2.766682,1.423438,1.423438,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,8.019369,2.766682,2.766682,15,15,, +31095,0,1.367299,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,29.299271,0.15,4,5.469197,5.469197,5.469197,5.469197,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,,,,,,,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,1.886873,1.886873,1.886873,1.886873,1.886873,1.886873,1.886873,1.886873,0.970783,0.970783,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,5.469197,1.886873,1.886873,15,15,, +34008,0,2.085588,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,44.691181,0.15,4,8.342354,8.342354,8.342354,8.342354,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,,,,,,,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,2.878112,2.878112,2.878112,2.878112,2.878112,2.878112,2.878112,2.878112,1.480768,1.480768,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,8.342354,2.878112,2.878112,15,15,, +9035,0,1.044899,1,1,0,2,6,,5,6,Ida Center,Rd,1223704,2.014,3.058,0,22.3907,5.8,6,2.089799,2.089799,2.089799,2.089799,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,,,,,,,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,0.815021,0.815021,0.815021,0.815021,0.815021,0.815021,0.815021,0.815021,0.428409,0.428409,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,2.089799,0.815021,0.815021,30,30,, +9236,0,1.717081,1,1,0,2,6,,5,6,Syl Petersburg,Rd,1233205,1.312,3.028,0,36.794594,5.8,6,3.434162,3.434162,3.434162,3.434162,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.434165,3.434162,3.434162,3.434162,3.434165,3.434162,3.434162,3.434162,3.434162,3.434162,3.434162,3.434162,3.434163,3.434169,3.434162,3.434162,3.434163,3.434169,3.434162,3.434162,3.434162,3.434162,3.434162,3.434162,,,,,,,3.434165,3.434162,3.434162,3.434162,3.434163,3.434169,3.434162,3.434162,3.434162,3.434162,1.339324,1.339323,1.339323,1.339323,1.339323,1.339325,1.339323,1.339323,0.704003,0.704003,29.999975,29.999999,30,30,29.999996,29.999943,30,30,30,30,,,,,,,,,,,2236,2236,3.434162,3.434162,3.434162,3.434162,3.434162,3.434162,3.434162,3.434162,1.339323,1.339323,30,30,, +9237,0,1.085835,1,1,0,2,6,,5,6,Syl Petersburg,Rd,1233205,0.226,1.312,0,23.267882,5.8,6,2.171669,2.171669,2.171669,2.171669,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.171686,2.171825,2.171669,2.171669,2.171686,2.171825,2.171691,2.171694,2.171669,2.171669,2.171691,2.171694,2.171956,2.17177,2.171669,2.171669,2.171956,2.17177,2.171669,2.171669,2.171669,2.171669,2.171669,2.171669,,,,,,,2.171686,2.171825,2.171691,2.171694,2.171956,2.17177,2.171669,2.171669,2.171669,2.171669,0.846956,0.846998,0.846957,0.846958,0.847037,0.846981,0.846951,0.846951,0.445192,0.445192,29.999759,29.997848,29.999698,29.999655,29.996036,29.99861,30,30,30,30,,,,,,,,,,,2236,2236,2.171669,2.171669,2.171669,2.171669,2.171669,2.171669,2.171669,2.171669,0.846951,0.846951,30,30,, +20285,0,0.246608,1,1,0,2,6,,5,6,Sylvania Petersburg/Goetz Cut,,4302049,0,0.247,0,5.28446,5.8,6,0.493216,0.493216,0.493216,0.493216,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.49322,0.493252,0.493216,0.493216,0.49322,0.493252,0.493221,0.493222,0.493216,0.493216,0.493221,0.493222,0.493281,0.493239,0.493216,0.493216,0.493281,0.493239,0.493216,0.493216,0.493216,0.493216,0.493216,0.493216,,,,,,,0.49322,0.493252,0.493221,0.493222,0.493281,0.493239,0.493216,0.493216,0.493216,0.493216,0.192356,0.192365,0.192356,0.192356,0.192374,0.192361,0.192354,0.192354,0.101109,0.101109,29.999759,29.997848,29.999698,29.999655,29.996036,29.99861,30,30,30,30,,,,,,,,,,,2236,2236,0.493216,0.493216,0.493216,0.493216,0.493216,0.493216,0.493216,0.493216,0.192354,0.192354,30,30,, +31075,0,0.192847,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.132429,0.15,4,0.771387,0.771387,0.771387,0.771387,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,,,,,,,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.266128,0.266128,0.266128,0.266128,0.266128,0.266128,0.266128,0.266128,0.136921,0.136921,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.771387,0.266128,0.266128,15,15,, +9224,0,0.912218,1,1,0,2,4,,5,6,Deerfield,Rd,1233410,2.009,2.921,0,19.54752,3,4,1.368326,1.368326,1.368326,1.368326,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.37967,1.371078,1.368326,1.368326,1.37967,1.371078,1.371624,1.372037,1.368326,1.368326,1.371624,1.372037,1.373383,1.380014,1.368326,1.368326,1.373383,1.380014,1.368326,1.368326,1.368326,1.368326,1.368326,1.368326,,,,,,,1.37967,1.371078,1.371624,1.372037,1.373383,1.380014,1.368326,1.368326,1.368326,1.368326,0.5781,0.575523,0.575686,0.57581,0.576214,0.578203,0.574697,0.574697,0.305593,0.305593,39.671117,39.919729,39.903841,39.891813,39.852722,39.661227,40,40,40,40,,,,,,,,,,,3096,3096,1.368326,1.368326,1.368326,1.368326,1.368326,1.368326,1.368326,1.368326,0.574697,0.574697,40,40,, +10426,0,1.893616,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,0,1.893,0,40.577485,3.7,5,3.787232,3.787232,3.787232,3.787232,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,,,,,,,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,1.47702,1.47702,1.47702,1.47702,1.47702,1.47702,1.47702,1.47702,0.776383,0.776383,30,30,30,30,30,29.999999,30,30,30,30,,,,,,,,,,,2580,2580,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,3.787232,1.47702,1.47702,30,30,, +31076,0,0.715171,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,15.32509,0.15,4,2.860683,2.860683,2.860683,2.860683,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,,,,,,,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,0.986936,0.986936,0.986936,0.986936,0.986936,0.986936,0.986936,0.986936,0.507771,0.507771,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,2.860683,0.986936,0.986936,15,15,, +9206,0,1.031342,1,1,0,2,5,,5,6,Teal,Rd,1233710,0.771,1.802,0,22.100194,3.7,5,2.062685,2.062685,2.062685,2.062685,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.062719,2.062697,2.062685,2.062685,2.062719,2.062697,2.062693,2.062696,2.062685,2.062685,2.062693,2.062696,2.062735,2.062727,2.062685,2.062685,2.062735,2.062727,2.062685,2.062685,2.062685,2.062685,2.062685,2.062685,,,,,,,2.062719,2.062697,2.062693,2.062696,2.062735,2.062727,2.062685,2.062685,2.062685,2.062685,0.804457,0.804451,0.80445,0.80445,0.804462,0.80446,0.804447,0.804447,0.42285,0.42285,29.999497,29.999825,29.999877,29.999834,29.999272,29.99939,30,30,30,30,,,,,,,,,,,2580,2580,2.062685,2.062685,2.062685,2.062685,2.062685,2.062685,2.062685,2.062685,0.804447,0.804447,30,30,, +9207,0,0.185061,1,1,0,2,5,,5,6,Teal,Rd,1233710,0.586,0.771,0,3.965585,3.7,5,0.370121,0.370121,0.370121,0.370121,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.370136,0.370131,0.370121,0.370121,0.370136,0.370131,0.370125,0.370127,0.370121,0.370121,0.370125,0.370127,0.370158,0.370147,0.370121,0.370121,0.370158,0.370147,0.370121,0.370121,0.370121,0.370121,0.370121,0.370121,,,,,,,0.370136,0.370131,0.370125,0.370127,0.370158,0.370147,0.370121,0.370121,0.370121,0.370121,0.144352,0.14435,0.144349,0.144349,0.144358,0.144355,0.144347,0.144347,0.075875,0.075875,29.998765,29.999233,29.999669,29.999513,29.997009,29.997873,30,30,30,30,,,,,,,,,,,2580,2580,0.370121,0.370121,0.370121,0.370121,0.370121,0.370121,0.370121,0.370121,0.144347,0.144347,30,30,, +10441,0,0.640145,1,1,0,2,4,,5,6,Ida West,Rd,1234503,0.458,1.098,0,13.717399,3,4,0.960218,0.960218,0.960218,0.960218,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.988328,0.963828,0.960218,0.960218,0.988328,0.963828,0.965293,0.964655,0.960218,0.960218,0.965293,0.964655,0.970951,0.987405,0.960218,0.960218,0.970951,0.987405,0.960218,0.960218,0.960218,0.960218,0.960218,0.960218,,,,,,,0.988328,0.963828,0.965293,0.964655,0.970951,0.987405,0.960218,0.960218,0.960218,0.960218,0.411724,0.404374,0.404814,0.404623,0.406512,0.411448,0.403292,0.403292,0.214449,0.214449,38.862327,39.850198,39.789711,39.81603,39.557819,38.898645,40,40,40,40,,,,,,,,,,,3096,3096,0.960218,0.960218,0.960218,0.960218,0.960218,0.960218,0.960218,0.960218,0.403292,0.403292,40,40,, +9208,0,0.391004,1,1,0,2,5,,4,6,Saline,St,1233710,0.195,0.586,0,8.378661,5.8,4.5,0.868898,0.868898,0.868898,0.868898,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.869074,0.869012,0.868898,0.868898,0.869074,0.869012,0.868952,0.868974,0.868898,0.868898,0.868952,0.868974,0.869287,0.869184,0.868898,0.868898,0.869287,0.869184,0.868898,0.868898,0.868898,0.868898,0.868898,0.868898,,,,,,,0.869074,0.869012,0.868952,0.868974,0.869287,0.869184,0.868898,0.868898,0.868898,0.868898,0.331103,0.331084,0.331066,0.331073,0.331167,0.331136,0.33105,0.33105,0.173345,0.173345,26.994548,26.996449,26.998333,26.997641,26.98792,26.991109,27,27,27,27,,,,,,,,,,,2580,2580,0.868898,0.868898,0.868898,0.868898,0.868898,0.868898,0.868898,0.868898,0.33105,0.33105,27,27,, +9212,0,0.182488,1,1,0,2,4,,4,6,Center,St,1233709,0.12,0.303,0,3.910465,4.5,4.5,0.28814,0.28814,0.28814,0.28814,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.288682,0.288268,0.28814,0.28814,0.288682,0.288268,0.288311,0.288318,0.28814,0.28814,0.288311,0.288318,0.288376,0.288692,0.28814,0.28814,0.288376,0.288692,0.28814,0.28814,0.28814,0.28814,0.28814,0.28814,,,,,,,0.288682,0.288268,0.288311,0.288318,0.288376,0.288692,0.28814,0.28814,0.28814,0.28814,0.119453,0.119328,0.119341,0.119343,0.119361,0.119455,0.11929,0.11929,0.063295,0.063295,37.92854,37.98308,37.977455,37.97642,37.968885,37.927306,38,38,38,38,,,,,,,,,,,3096,3096,0.28814,0.28814,0.28814,0.28814,0.28814,0.28814,0.28814,0.28814,0.11929,0.11929,38,38,, +10215,0,0.329136,1,1,0,2,4,,4,6,Division,St,1234503,0.129,0.458,0,7.052911,4.5,4.5,0.519688,0.519688,0.519688,0.519688,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.533417,0.521008,0.519688,0.519688,0.533417,0.521008,0.521662,0.521357,0.519688,0.519688,0.521662,0.521357,0.524311,0.533723,0.519688,0.519688,0.524311,0.533723,0.519688,0.519688,0.519688,0.519688,0.519688,0.519688,,,,,,,0.533417,0.521008,0.521662,0.521357,0.524311,0.533723,0.519688,0.519688,0.519688,0.519688,0.219269,0.215547,0.215743,0.215652,0.216538,0.219361,0.215151,0.215151,0.114158,0.114158,37.022004,37.903754,37.856235,37.87835,37.664944,37.000722,38,38,38,38,,,,,,,,,,,3096,3096,0.519688,0.519688,0.519688,0.519688,0.519688,0.519688,0.519688,0.519688,0.215151,0.215151,38,38,, +31099,0,0.087509,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,1.8752,0.15,4,0.350037,0.350037,0.350037,0.350037,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,,,,,,,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.120763,0.120763,0.120763,0.120763,0.120763,0.120763,0.120763,0.120763,0.062132,0.062132,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.350037,0.120763,0.120763,15,15,, +9209,0,0.130581,1,1,0,2,5,,4,6,Saline,St,1233710,0.064,0.195,0,2.798164,5.8,4.5,0.29018,0.29018,0.29018,0.29018,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.290189,0.290181,0.29018,0.29018,0.290189,0.290181,0.290181,0.290182,0.29018,0.29018,0.290181,0.290182,0.290184,0.290191,0.29018,0.29018,0.290184,0.290191,0.29018,0.29018,0.29018,0.29018,0.29018,0.29018,,,,,,,0.290189,0.290181,0.290181,0.290182,0.290184,0.290191,0.29018,0.29018,0.29018,0.29018,0.110561,0.110559,0.110559,0.110559,0.11056,0.110562,0.110559,0.110559,0.057891,0.057891,26.999134,26.999874,26.999909,26.999856,26.99965,26.998935,27,27,27,27,,,,,,,,,,,2580,2580,0.29018,0.29018,0.29018,0.29018,0.29018,0.29018,0.29018,0.29018,0.110559,0.110559,27,27,, +9210,0,0.064295,1,1,0,2,4,,4,6,Saline,St,1233710,0,0.064,0,1.377741,4.5,4.5,0.101518,0.101518,0.101518,0.101518,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.102122,0.101641,0.101518,0.101518,0.102122,0.101641,0.101668,0.10169,0.101518,0.101518,0.101668,0.10169,0.101761,0.102143,0.101518,0.101518,0.101761,0.102143,0.101518,0.101518,0.101518,0.101518,0.101518,0.101518,,,,,,,0.102122,0.101641,0.101668,0.10169,0.101761,0.102143,0.101518,0.101518,0.101518,0.101518,0.04221,0.042065,0.042074,0.04208,0.042101,0.042216,0.042028,0.042028,0.0223,0.0223,37.775071,37.95408,37.943725,37.935738,37.909044,37.76743,38,38,38,38,,,,,,,,,,,3096,3096,0.101518,0.101518,0.101518,0.101518,0.101518,0.101518,0.101518,0.101518,0.042028,0.042028,38,38,, +31098,0,0.351489,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,7.531909,0.15,4,1.405956,1.405956,1.405956,1.405956,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,,,,,,,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,0.485055,0.485055,0.485055,0.485055,0.485055,0.485055,0.485055,0.485055,0.249557,0.249557,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,1.405956,0.485055,0.485055,15,15,, +31097,0,0.159444,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.416663,0.15,4,0.637777,0.637777,0.637777,0.637777,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,,,,,,,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.220033,0.220033,0.220033,0.220033,0.220033,0.220033,0.220033,0.220033,0.113205,0.113205,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.637777,0.220033,0.220033,15,15,, +9211,0,0.057924,1,1,0,2,4,,4,6,Center,St,1233709,0.303,0.361,0,1.241234,4.5,4.5,0.091459,0.091459,0.091459,0.091459,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.093875,0.091692,0.091459,0.091459,0.093875,0.091692,0.091807,0.091753,0.091459,0.091459,0.091807,0.091753,0.092273,0.093929,0.091459,0.091459,0.092273,0.093929,0.091459,0.091459,0.091459,0.091459,0.091459,0.091459,,,,,,,0.093875,0.091692,0.091807,0.091753,0.092273,0.093929,0.091459,0.091459,0.091459,0.091459,0.038589,0.037934,0.037968,0.037952,0.038108,0.038605,0.037864,0.037864,0.020091,0.020091,37.022004,37.903754,37.856235,37.87835,37.664944,37.000722,38,38,38,38,,,,,,,,,,,3096,3096,0.091459,0.091459,0.091459,0.091459,0.091459,0.091459,0.091459,0.091459,0.037864,0.037864,38,38,, +8701,1,0.187648,1,0,0,1,2,ROF,5,6,N US 23/Summerfield,RAMP,1224002,0,0.188,0,,2.24,5,0.281472,,0.281472,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.281475,,0.281472,,0.281475,,0.281473,,0.281472,,0.281473,,0.281489,,0.281472,,0.281489,,0.281472,,0.281472,,0.281472,,,,,,,,0.281475,,0.281473,,0.281489,,0.281472,,0.281472,,0.118219,,0.118218,,0.118223,,0.118218,,0.062862,,39.999597,,39.999968,,39.997687,,40,,40,,,,,,,,,,,,5160,,0.281472,,0.281472,,0.281472,,0.281472,,0.118218,,40,,, +8842,0,2.283892,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,5.4,7.683,0,48.940536,3.7,5,4.567783,4.567783,4.567783,4.567783,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.736584,6.476346,4.567783,4.567783,4.736584,6.476346,4.728693,4.77265,4.567783,4.567783,4.728693,4.77265,6.438256,4.957477,4.567783,4.567783,6.438256,4.957477,4.567783,4.567783,4.567783,4.567783,4.567783,4.567783,,,,,,,4.736584,6.476346,4.728693,4.77265,6.438256,4.957477,4.567783,4.567783,4.567783,4.567783,1.832076,2.354004,1.829708,1.842896,2.342577,1.898344,1.781436,1.781436,0.936396,0.936396,28.930873,21.159076,28.979149,28.712244,21.284258,27.641784,30,30,30,30,,,,,,,,,,,2580,2580,4.567783,4.567783,4.567783,4.567783,4.567783,4.567783,4.567783,4.567783,1.781436,1.781436,30,30,, +8914,1,0.330602,2,0,0,1,2,,5,6,N US 23,,1223505,8.501,8.832,0,,1.02,7,0.283374,,0.283374,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.283827,,0.283374,,0.283827,,0.283428,,0.283374,,0.283428,,0.283491,,0.283374,,0.283491,,0.283374,,0.283374,,0.283374,,,,,,,,0.283827,,0.283428,,0.283491,,0.283374,,0.283374,,0.144657,,0.144537,,0.144556,,0.144521,,0.078872,,69.888077,,69.986589,,69.971104,,70,,70,,,,,,,,,,,,15136,,0.283374,,0.283374,,0.283374,,0.283374,,0.144521,,70,,, +9026,0,2.146563,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,5.073,7.219,0,45.997769,3.7,5,4.293125,4.293125,4.293125,4.293125,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.294542,4.311348,4.293125,4.293125,4.294542,4.311348,4.293178,4.293246,4.293125,4.293125,4.293178,4.293246,4.337722,4.299497,4.293125,4.293125,4.337722,4.299497,4.293125,4.293125,4.293125,4.293125,4.293125,4.293125,,,,,,,4.294542,4.311348,4.293178,4.293246,4.337722,4.299497,4.293125,4.293125,4.293125,4.293125,1.674744,1.679786,1.674335,1.674355,1.687698,1.67623,1.674319,1.674319,0.880091,0.880091,29.990105,29.873199,29.999633,29.999156,29.691562,29.955543,30,30,30,30,,,,,,,,,,,2580,2580,4.293125,4.293125,4.293125,4.293125,4.293125,4.293125,4.293125,4.293125,1.674319,1.674319,30,30,, +9233,0,1.749466,1,1,0,2,6,,5,6,Secor,Rd,1233210,1.239,2.988,0,37.488556,5.8,6,3.498932,3.498932,3.498932,3.498932,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.499022,3.498932,3.498932,3.498932,3.499022,3.498932,3.498932,3.498932,3.498932,3.498932,3.498932,3.498932,3.498932,3.499102,3.498932,3.498932,3.498932,3.499102,3.498932,3.498932,3.498932,3.498932,3.498932,3.498932,,,,,,,3.499022,3.498932,3.498932,3.498932,3.498932,3.499102,3.498932,3.498932,3.498932,3.498932,1.364611,1.364583,1.364584,1.364584,1.364584,1.364634,1.364583,1.364583,0.717281,0.717281,29.999226,30,29.999998,29.999998,29.999997,29.998542,30,30,30,30,,,,,,,,,,,2236,2236,3.498932,3.498932,3.498932,3.498932,3.498932,3.498932,3.498932,3.498932,1.364583,1.364583,30,30,, +8824,0,0.388722,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,4.685,5.073,0,8.32975,3.7,5,0.777443,0.777443,0.777443,0.777443,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.777444,0.777444,0.777443,0.777443,0.777444,0.777444,0.777443,0.777443,0.777443,0.777443,0.777443,0.777443,0.777444,0.777444,0.777443,0.777443,0.777444,0.777444,0.777443,0.777443,0.777443,0.777443,0.777443,0.777443,,,,,,,0.777444,0.777444,0.777443,0.777443,0.777444,0.777444,0.777443,0.777443,0.777443,0.777443,0.303203,0.303203,0.303203,0.303203,0.303203,0.303203,0.303203,0.303203,0.159376,0.159376,29.999983,29.999992,30,30,29.999974,29.999961,30,30,30,30,,,,,,,,,,,2580,2580,0.777443,0.777443,0.777443,0.777443,0.777443,0.777443,0.777443,0.777443,0.303203,0.303203,30,30,, +8846,0,0.885235,1,1,0,2,6,,5,6,Summerfield,Rd,1223702,3.937,4.822,0,18.969329,5.8,6,1.770471,1.770471,1.770471,1.770471,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.771124,1.770772,1.770471,1.770471,1.771124,1.770772,1.770511,1.770494,1.770471,1.770471,1.770511,1.770494,1.771912,1.77448,1.770471,1.770471,1.771912,1.77448,1.770471,1.770471,1.770471,1.770471,1.770471,1.770471,,,,,,,1.771124,1.770772,1.770511,1.770494,1.771912,1.77448,1.770471,1.770471,1.770471,1.770471,0.690679,0.690574,0.690496,0.690491,0.690916,0.691687,0.690484,0.690484,0.362947,0.362947,29.988943,29.994891,29.999325,29.999609,29.975595,29.93221,30,30,30,30,,,,,,,,,,,2236,2236,1.770471,1.770471,1.770471,1.770471,1.770471,1.770471,1.770471,1.770471,0.690484,0.690484,30,30,, +10444,0,1.270492,1,1,0,2,5,,5,6,Teal,Rd,1233710,2.975,4.245,0,27.224823,3.7,5,2.540983,2.540983,2.540983,2.540983,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.541004,2.540985,2.540983,2.540983,2.541004,2.540985,2.54099,2.54099,2.540983,2.540983,2.54099,2.54099,2.54099,2.540997,2.540983,2.540983,2.54099,2.540997,2.540983,2.540983,2.540983,2.540983,2.540983,2.540983,,,,,,,2.541004,2.540985,2.54099,2.54099,2.54099,2.540997,2.540983,2.540983,2.540983,2.540983,0.99099,0.990984,0.990986,0.990986,0.990986,0.990988,0.990984,0.990984,0.520902,0.520902,29.99976,29.99998,29.999918,29.999921,29.999923,29.999837,30,30,30,30,,,,,,,,,,,2580,2580,2.540983,2.540983,2.540983,2.540983,2.540983,2.540983,2.540983,2.540983,0.990984,0.990984,30,30,, +9033,0,0.445462,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,4.239,4.685,0,9.545619,3.7,5,0.890924,0.890924,0.890924,0.890924,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.890925,0.890925,0.890924,0.890924,0.890925,0.890925,0.890924,0.890924,0.890924,0.890924,0.890924,0.890924,0.890925,0.890926,0.890924,0.890924,0.890925,0.890926,0.890924,0.890924,0.890924,0.890924,0.890924,0.890924,,,,,,,0.890925,0.890925,0.890924,0.890924,0.890925,0.890926,0.890924,0.890924,0.890924,0.890924,0.347461,0.347461,0.347461,0.347461,0.347461,0.347461,0.347461,0.347461,0.18264,0.18264,29.999983,29.999992,30,30,29.999974,29.999961,30,30,30,30,,,,,,,,,,,2580,2580,0.890924,0.890924,0.890924,0.890924,0.890924,0.890924,0.890924,0.890924,0.347461,0.347461,30,30,, +8435,0,0.128859,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,4.822,4.951,0,2.761255,3.7,5,0.257717,0.257717,0.257717,0.257717,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.25859,0.258001,0.257717,0.257717,0.25859,0.258001,0.257845,0.257812,0.257717,0.257717,0.257845,0.257812,0.25877,0.260129,0.257717,0.257717,0.25877,0.260129,0.257717,0.257717,0.257717,0.257717,0.257717,0.257717,,,,,,,0.25859,0.258001,0.257845,0.257812,0.25877,0.260129,0.257717,0.257717,0.257717,0.257717,0.100772,0.100595,0.100548,0.100538,0.100826,0.101233,0.10051,0.10051,0.052832,0.052832,29.898739,29.967,29.985113,29.989004,29.877938,29.721829,30,30,30,30,,,,,,,,,,,2580,2580,0.257717,0.257717,0.257717,0.257717,0.257717,0.257717,0.257717,0.257717,0.10051,0.10051,30,30,, +9062,0,0.335857,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,4.951,5.287,0,7.196942,3.7,5,0.671715,0.671715,0.671715,0.671715,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.684106,0.672862,0.671715,0.671715,0.684106,0.672862,0.672533,0.672245,0.671715,0.671715,0.672533,0.672245,0.676374,0.694264,0.671715,0.671715,0.676374,0.694264,0.671715,0.671715,0.671715,0.671715,0.671715,0.671715,,,,,,,0.684106,0.672862,0.672533,0.672245,0.676374,0.694264,0.671715,0.671715,0.671715,0.671715,0.265686,0.262313,0.262214,0.262128,0.263367,0.268734,0.261969,0.261969,0.137701,0.137701,29.456619,29.948838,29.963509,29.97634,29.793332,29.025613,30,30,30,30,,,,,,,,,,,2580,2580,0.671715,0.671715,0.671715,0.671715,0.671715,0.671715,0.671715,0.671715,0.261969,0.261969,30,30,, +8875,1,0.15291,1,0,0,1,2,RON,5,6,Summerfield/N US 23,RAMP,1224003,0,0.153,0,,1.09,4,0.203881,,0.203881,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.207605,,0.203881,,0.207605,,0.204206,,0.203881,,0.204206,,0.204394,,0.203881,,0.204394,,0.203881,,0.203881,,0.203881,,,,,,,,0.207605,,0.204206,,0.204394,,0.203881,,0.203881,,0.089805,,0.088786,,0.088842,,0.088688,,0.047402,,44.192655,,44.928198,,44.886923,,45,,45,,,,,,,,,,,,5160,,0.203881,,0.203881,,0.203881,,0.203881,,0.088688,,45,,, +8935,-1,0.319885,0,2,0,1,2,,5,6,S US 23,,1223504,8.641,8.961,0,,1.02,7,,0.274187,,0.274187,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.274274,,0.274187,,0.274274,,0.274225,,0.274187,,0.274225,,0.274543,,0.274187,,0.274543,,0.274187,,0.274187,,0.274187,,,,,,,,0.274274,,0.274225,,0.274543,,0.274187,,0.274187,,0.139861,,0.139847,,0.139942,,0.139835,,0.076315,,69.977817,,69.990344,,69.909069,,70,,70,,,,,,,,,,,,15136,,0.274187,,0.274187,,0.274187,,0.274187,,0.139835,,70,, +9037,1,0.167862,1,0,0,1,2,ROF,5,6,S US 23/Summerfield,RAMP,1223703,0,0.168,0,,2.24,5,0.251793,,0.251793,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.25188,,0.251793,,0.25188,,0.251909,,0.251793,,0.251909,,0.254608,,0.251793,,0.254608,,0.251793,,0.251793,,0.251793,,,,,,,,0.25188,,0.251909,,0.254608,,0.251793,,0.251793,,0.105779,,0.105788,,0.106598,,0.105753,,0.056234,,39.986233,,39.981582,,39.557815,,40,,40,,,,,,,,,,,,5160,,0.251793,,0.251793,,0.251793,,0.251793,,0.105753,,40,,, +9061,0,0.1138,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,5.287,5.4,0,2.438582,3.7,5,0.227601,0.227601,0.227601,0.227601,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.253291,0.227852,0.227601,0.227601,0.253291,0.227852,0.239591,0.227684,0.227601,0.227601,0.239591,0.227684,0.343438,0.229731,0.227601,0.227601,0.343438,0.229731,0.227601,0.227601,0.227601,0.227601,0.227601,0.227601,,,,,,,0.253291,0.227852,0.239591,0.227684,0.343438,0.229731,0.227601,0.227601,0.227601,0.227601,0.096471,0.08884,0.092361,0.088789,0.123515,0.089403,0.088764,0.088764,0.046658,0.046658,26.957229,29.967,28.498668,29.989004,19.881403,29.721829,30,30,30,30,,,,,,,,,,,2580,2580,0.227601,0.227601,0.227601,0.227601,0.227601,0.227601,0.227601,0.227601,0.088764,0.088764,30,30,, +9077,1,0.161982,1,0,0,1,2,RON,5,6,Summerfield/S US 23,RAMP,1223701,0,0.162,0,,1.09,4,0.215976,,0.215976,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.215991,,0.215976,,0.215991,,0.215979,,0.215976,,0.215979,,0.216009,,0.215976,,0.216009,,0.215976,,0.215976,,0.215976,,,,,,,,0.215991,,0.215979,,0.216009,,0.215976,,0.215976,,0.093954,,0.093951,,0.09396,,0.09395,,0.050215,,44.997054,,44.999486,,44.993192,,45,,45,,,,,,,,,,,,5160,,0.215976,,0.215976,,0.215976,,0.215976,,0.09395,,45,,, +9234,0,1.23973,1,1,0,2,6,,5,6,Secor,Rd,1233210,0,1.239,0,26.565633,5.8,6,2.479459,2.479459,2.479459,2.479459,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.48008,2.479473,2.479459,2.479459,2.48008,2.479473,2.479487,2.479498,2.479459,2.479459,2.479487,2.479498,2.479513,2.4818,2.479459,2.479459,2.479513,2.4818,2.479459,2.479459,2.479459,2.479459,2.479459,2.479459,,,,,,,2.48008,2.479473,2.479487,2.479498,2.479513,2.4818,2.479459,2.479459,2.479459,2.479459,0.967175,0.966993,0.966997,0.967001,0.967005,0.967691,0.966989,0.966989,0.508289,0.508289,29.992492,29.999831,29.999659,29.999523,29.999345,29.971705,30,30,30,30,,,,,,,,,,,2236,2236,2.479459,2.479459,2.479459,2.479459,2.479459,2.479459,2.479459,2.479459,0.966989,0.966989,30,30,, +9270,0,0.025994,1,1,0,2,6,,5,6,Rauch,Rd,1232010,7.158,7.184,0,0.557004,5.8,6,0.051987,0.051987,0.051987,0.051987,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.052,0.051987,0.051987,0.051987,0.052,0.051987,0.051988,0.051988,0.051987,0.051987,0.051988,0.051988,0.051988,0.052036,0.051987,0.051987,0.051988,0.052036,0.051987,0.051987,0.051987,0.051987,0.051987,0.051987,,,,,,,0.052,0.051987,0.051988,0.051988,0.051988,0.052036,0.051987,0.051987,0.051987,0.051987,0.020279,0.020275,0.020275,0.020275,0.020275,0.02029,0.020275,0.020275,0.010657,0.010657,29.992492,29.999831,29.999659,29.999523,29.999345,29.971705,30,30,30,30,,,,,,,,,,,2236,2236,0.051987,0.051987,0.051987,0.051987,0.051987,0.051987,0.051987,0.051987,0.020275,0.020275,30,30,, +8447,0,0.878863,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,0.036,0.915,0,18.832772,3.7,5,1.757725,1.757725,1.757725,1.757725,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,,,,,,,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,0.685513,0.685513,0.685513,0.685513,0.685513,0.685513,0.685513,0.685513,0.360334,0.360334,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,1.757725,0.685513,0.685513,30,30,, +8873,1,0.149526,1,0,0,1,2,RON,5,6,Ida West/N US 23,RAMP,1224005,0,0.15,0,,1.09,4,0.199368,,0.199368,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.206159,,0.199368,,0.206159,,0.199524,,0.199368,,0.199524,,0.19979,,0.199368,,0.19979,,0.199368,,0.199368,,0.199368,,,,,,,,0.206159,,0.199524,,0.19979,,0.199368,,0.199368,,0.088762,,0.086772,,0.086852,,0.086725,,0.046353,,43.517727,,44.964932,,44.904999,,45,,45,,,,,,,,,,,,5160,,0.199368,,0.199368,,0.199368,,0.199368,,0.086725,,45,,, +9008,1,0.148995,1,0,0,1,2,ROF,5,6,S US 23/Ida West,RAMP,1223707,0,0.149,0,,2.24,5,0.223492,,0.223492,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.223513,,0.223492,,0.223513,,0.223526,,0.223492,,0.223526,,0.227521,,0.223492,,0.227521,,0.223492,,0.223492,,0.223492,,,,,,,,0.223513,,0.223526,,0.227521,,0.223492,,0.223492,,0.093873,,0.093877,,0.095075,,0.093867,,0.049913,,39.996335,,39.993937,,39.291638,,40,,40,,,,,,,,,,,,5160,,0.223492,,0.223492,,0.223492,,0.223492,,0.093867,,40,,, +9013,0,1.746737,1,1,0,2,4,,5,6,Ida West,Rd,1223706,1.798,3.544,0,37.430068,3,4,2.620105,2.620105,2.620105,2.620105,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.870067,3.264453,2.620105,2.620105,2.870067,3.264453,2.678554,2.685563,2.620105,2.620105,2.678554,2.685563,3.447649,3.024425,2.620105,2.620105,3.447649,3.024425,2.620105,2.620105,2.620105,2.620105,2.620105,2.620105,,,,,,,2.870067,3.264453,2.678554,2.685563,3.447649,3.024425,2.620105,2.620105,2.620105,2.620105,1.175433,1.293748,1.117979,1.120081,1.348707,1.22174,1.100444,1.100444,0.585157,0.585157,36.516285,32.104673,39.127151,39.025042,30.398744,34.6526,40,40,40,40,,,,,,,,,,,3096,3096,2.620105,2.620105,2.620105,2.620105,2.620105,2.620105,2.620105,2.620105,1.100444,1.100444,40,40,, +9132,1,0.320355,2,0,0,1,2,,5,6,N US 23,,1223505,12.995,13.315,0,,1.02,7,0.27459,,0.27459,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.275928,,0.27459,,0.275928,,0.274695,,0.27459,,0.274695,,0.274788,,0.27459,,0.274788,,0.27459,,0.27459,,0.27459,,,,,,,,0.275928,,0.274695,,0.274788,,0.27459,,0.27459,,0.140442,,0.140073,,0.1401,,0.140041,,0.076428,,69.660747,,69.973304,,69.949748,,70,,70,,,,,,,,,,,,15136,,0.27459,,0.27459,,0.27459,,0.27459,,0.140041,,70,,, +9150,-1,0.290077,0,2,0,1,2,,5,6,S US 23,,1223504,13.07,13.36,0,,1.02,7,,0.248637,,0.248637,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.248773,,0.248637,,0.248773,,0.248703,,0.248637,,0.248703,,0.249631,,0.248637,,0.249631,,0.248637,,0.248637,,0.248637,,,,,,,,0.248773,,0.248703,,0.249631,,0.248637,,0.248637,,0.126846,,0.126825,,0.127103,,0.126805,,0.069204,,69.96182,,69.981561,,69.721351,,70,,70,,,,,,,,,,,,15136,,0.248637,,0.248637,,0.248637,,0.248637,,0.126805,,70,, +10430,0,1.139465,1,1,0,2,7,,5,6,Dixon,Rd,1234503,3.592,4.731,0,24.417114,5.8,6,2.734717,2.734717,2.734717,2.734717,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.734717,2.734718,2.734717,2.734717,2.734717,2.734718,2.734717,2.734717,2.734717,2.734717,2.734717,2.734717,2.734717,2.734745,2.734717,2.734717,2.734717,2.734745,2.734717,2.734717,2.734717,2.734717,2.734717,2.734717,,,,,,,2.734717,2.734718,2.734717,2.734717,2.734717,2.734745,2.734717,2.734717,2.734717,2.734717,1.025519,1.025519,1.025519,1.025519,1.025519,1.025527,1.025519,1.025519,0.535549,0.535549,25,24.999986,25,25,25,24.999744,25,25,25,25,,,,,,,,,,,2064,2064,2.734717,2.734717,2.734717,2.734717,2.734717,2.734717,2.734717,2.734717,1.025519,1.025519,25,25,, +31032,0,1.423596,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,30.505619,0.15,4,5.694382,5.694382,5.694382,5.694382,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,,,,,,,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,1.964562,1.964562,1.964562,1.964562,1.964562,1.964562,1.964562,1.964562,1.010753,1.010753,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,5.694382,1.964562,1.964562,15,15,, +8819,0,0.419339,1,1,0,2,4,,5,6,Ida West,Rd,1223706,0.839,1.258,0,8.985834,3,4,0.629008,0.629008,0.629008,0.629008,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.702778,0.634988,0.629008,0.629008,0.702778,0.634988,0.637851,0.63598,0.629008,0.629008,0.637851,0.63598,0.650061,0.703447,0.629008,0.629008,0.650061,0.703447,0.629008,0.629008,0.629008,0.629008,0.629008,0.629008,,,,,,,0.702778,0.634988,0.637851,0.63598,0.650061,0.703447,0.629008,0.629008,0.629008,0.629008,0.286314,0.265977,0.266836,0.266275,0.270499,0.286515,0.264184,0.264184,0.140479,0.140479,35.801258,39.623345,39.445451,39.561494,38.704588,35.767215,40,40,40,40,,,,,,,,,,,3096,3096,0.629008,0.629008,0.629008,0.629008,0.629008,0.629008,0.629008,0.629008,0.264184,0.264184,40,40,, +9069,0,2.008468,1,1,0,2,6,,5,6,Summerfield,Rd,1223702,0.915,2.923,0,43.038603,5.8,6,4.016936,4.016936,4.016936,4.016936,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.016936,4.016955,4.016936,4.016936,4.016936,4.016955,4.016936,4.016936,4.016936,4.016936,4.016936,4.016936,4.01694,4.016936,4.016936,4.016936,4.01694,4.016936,4.016936,4.016936,4.016936,4.016936,4.016936,4.016936,,,,,,,4.016936,4.016955,4.016936,4.016936,4.01694,4.016936,4.016936,4.016936,4.016936,4.016936,1.566605,1.566611,1.566605,1.566605,1.566606,1.566605,1.566605,1.566605,0.823472,0.823472,30,29.999861,30,30,29.999969,30,30,30,30,30,,,,,,,,,,,2236,2236,4.016936,4.016936,4.016936,4.016936,4.016936,4.016936,4.016936,4.016936,1.566605,1.566605,30,30,, +31096,0,1.090162,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,23.360618,0.15,4,4.360649,4.360649,4.360649,4.360649,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,,,,,,,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,1.504424,1.504424,1.504424,1.504424,1.504424,1.504424,1.504424,1.504424,0.774015,0.774015,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,4.360649,1.504424,1.504424,15,15,, +31094,0,1.025076,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.965918,0.15,4,4.100305,4.100305,4.100305,4.100305,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,,,,,,,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,1.414605,1.414605,1.414605,1.414605,1.414605,1.414605,1.414605,1.414605,0.727804,0.727804,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,4.100305,1.414605,1.414605,15,15,, +9016,0,0.429143,1,1,0,2,4,,5,6,Ida West,Rd,1223706,1.258,1.687,0,9.195911,3,4,0.643714,0.643714,0.643714,0.643714,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.778104,0.651034,0.643714,0.643714,0.778104,0.651034,0.6551,0.652885,0.643714,0.643714,0.6551,0.652885,0.665429,0.766529,0.643714,0.643714,0.665429,0.766529,0.643714,0.643714,0.643714,0.643714,0.643714,0.643714,,,,,,,0.778104,0.651034,0.6551,0.652885,0.665429,0.766529,0.643714,0.643714,0.643714,0.643714,0.310677,0.272556,0.273776,0.273111,0.276874,0.307204,0.27036,0.27036,0.143763,0.143763,33.091387,39.55021,39.304738,39.438103,38.694653,33.591118,40,40,40,40,,,,,,,,,,,3096,3096,0.643714,0.643714,0.643714,0.643714,0.643714,0.643714,0.643714,0.643714,0.27036,0.27036,40,40,, +8700,1,0.185639,1,0,0,1,2,ROF,5,6,N US 23/Ida West,RAMP,1224004,0,0.186,0,,2.24,5,0.278458,,0.278458,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.278522,,0.278458,,0.278522,,0.278467,,0.278458,,0.278467,,0.278492,,0.278458,,0.278492,,0.278458,,0.278458,,0.278458,,,,,,,,0.278522,,0.278467,,0.278492,,0.278458,,0.278458,,0.116971,,0.116955,,0.116963,,0.116952,,0.062189,,39.990901,,39.998763,,39.995152,,40,,40,,,,,,,,,,,,5160,,0.278458,,0.278458,,0.278458,,0.278458,,0.116952,,40,,, +8816,0,0.110431,1,1,0,2,4,,5,6,Ida West,Rd,1223706,1.687,1.798,0,2.366389,3,4,0.165647,0.165647,0.165647,0.165647,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.218016,0.16749,0.165647,0.165647,0.218016,0.16749,0.171196,0.16726,0.165647,0.165647,0.171196,0.16726,0.219555,0.174399,0.165647,0.165647,0.219555,0.174399,0.165647,0.165647,0.165647,0.165647,0.165647,0.165647,,,,,,,0.218016,0.16749,0.171196,0.16726,0.219555,0.174399,0.165647,0.165647,0.165647,0.165647,0.085282,0.070125,0.071236,0.070056,0.085744,0.072197,0.069572,0.069572,0.036995,0.036995,30.391824,39.559808,38.703507,39.614282,30.17866,37.992612,40,40,40,40,,,,,,,,,,,3096,3096,0.165647,0.165647,0.165647,0.165647,0.165647,0.165647,0.165647,0.165647,0.069572,0.069572,40,40,, +8820,1,0.157887,1,0,0,1,2,RON,5,6,Ida West/S US 23,RAMP,1223705,0,0.158,0,,1.09,4,0.210516,,0.210516,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.210537,,0.210516,,0.210537,,0.210542,,0.210516,,0.210542,,0.210631,,0.210516,,0.210631,,0.210516,,0.210516,,0.210516,,,,,,,,0.210537,,0.210542,,0.210631,,0.210516,,0.210516,,0.091581,,0.091582,,0.091609,,0.091574,,0.048945,,44.995467,,44.99437,,44.975489,,45,,45,,,,,,,,,,,,5160,,0.210516,,0.210516,,0.210516,,0.210516,,0.091574,,45,,, +9127,1,2.000411,2,0,0,1,2,,5,6,N US 23,,1223505,13.315,15.315,0,,1.02,7,1.714638,,1.714638,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.769206,,1.714638,,1.769206,,1.716627,,1.714638,,1.716627,,1.719099,,1.714638,,1.719099,,1.714638,,1.714638,,1.714638,,,,,,,,1.769206,,1.716627,,1.719099,,1.714638,,1.714638,,0.890836,,0.875062,,0.875804,,0.874465,,0.477241,,67.840985,,69.918912,,69.818356,,70,,70,,,,,,,,,,,,15136,,1.714638,,1.714638,,1.714638,,1.714638,,0.874465,,70,,, +9149,-1,1.073457,0,2,0,1,2,,5,6,S US 23,,1223504,13.36,14.433,0,,1.02,7,,0.920106,,0.920106,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.921306,,0.920106,,0.921306,,0.920802,,0.920106,,0.920802,,0.941594,,0.920106,,0.941594,,0.920106,,0.920106,,0.920106,,,,,,,,0.921306,,0.920802,,0.941594,,0.920106,,0.920106,,0.469614,,0.469463,,0.4757,,0.469254,,0.256096,,69.908817,,69.947071,,68.402539,,70,,70,,,,,,,,,,,,15136,,0.920106,,0.920106,,0.920106,,0.920106,,0.469254,,70,, +10440,0,0.280988,1,1,0,2,5,,5,6,Dixon,Rd,1234503,2.764,3.044,0,6.021163,3.7,5,0.561975,0.561975,0.561975,0.561975,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,,,,,,,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.21917,0.21917,0.21917,0.21917,0.21917,0.21917,0.21917,0.21917,0.115205,0.115205,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.561975,0.21917,0.21917,30,30,, +20648,0,0.085466,1,1,0,2,5,,5,6,Summerfield,Rd,4302181,0,0.085,0,1.831409,3.7,5,0.170931,0.170931,0.170931,0.170931,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,,,,,,,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.066663,0.066663,0.066663,0.066663,0.066663,0.066663,0.066663,0.066663,0.035041,0.035041,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.170931,0.066663,0.066663,30,30,, +8567,0,0.711827,1,1,0,2,5,,5,6,Lloyd,Rd,1225909,0,0.712,0,15.253433,3.7,5,1.423654,1.423654,1.423654,1.423654,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.423654,1.423673,1.423654,1.423654,1.423654,1.423673,1.423654,1.423654,1.423654,1.423654,1.423654,1.423654,1.423654,1.423773,1.423654,1.423654,1.423654,1.423773,1.423654,1.423654,1.423654,1.423654,1.423654,1.423654,,,,,,,1.423654,1.423673,1.423654,1.423654,1.423654,1.423773,1.423654,1.423654,1.423654,1.423654,0.555225,0.555231,0.555225,0.555225,0.555225,0.555261,0.555225,0.555225,0.291849,0.291849,30,29.999592,30,30,30,29.997479,30,30,30,30,,,,,,,,,,,2580,2580,1.423654,1.423654,1.423654,1.423654,1.423654,1.423654,1.423654,1.423654,0.555225,0.555225,30,30,, +10438,0,0.264664,1,1,0,2,5,,5,6,Dixon,Rd,1234503,3.044,3.309,0,5.671378,3.7,5,0.529329,0.529329,0.529329,0.529329,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,,,,,,,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.206438,0.206438,0.206438,0.206438,0.206438,0.206438,0.206438,0.206438,0.108512,0.108512,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.529329,0.206438,0.206438,30,30,, +10431,0,0.282985,1,1,0,2,5,,5,6,Dixon,Rd,1234503,3.309,3.592,0,6.063957,3.7,5,0.565969,0.565969,0.565969,0.565969,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.565969,0.566066,0.565969,0.565969,0.565969,0.566066,0.565969,0.565969,0.565969,0.565969,0.565969,0.565969,0.565969,0.566742,0.565969,0.565969,0.565969,0.566742,0.565969,0.565969,0.565969,0.565969,0.565969,0.565969,,,,,,,0.565969,0.566066,0.565969,0.565969,0.565969,0.566742,0.565969,0.565969,0.565969,0.565969,0.220728,0.220757,0.220728,0.220728,0.220728,0.22096,0.220728,0.220728,0.116024,0.116024,30,29.994883,30,30,30,29.959073,30,30,30,30,,,,,,,,,,,2580,2580,0.565969,0.565969,0.565969,0.565969,0.565969,0.565969,0.565969,0.565969,0.220728,0.220728,30,30,, +8810,1,0.129603,2,0,0,1,2,RON,5,6,Dixon/S US 23,RAMP,1223708,0,0.13,0,,1.09,4,0.172804,,0.172804,,45,,30000,,6810,,15000,,9678,,10320,,10308,,0.172805,,0.172804,,0.172805,,0.172804,,0.172804,,0.172804,,0.172806,,0.172804,,0.172806,,0.172804,,0.172804,,0.172804,,,,,,,,0.172805,,0.172804,,0.172806,,0.172804,,0.172804,,0.07517,,0.07517,,0.07517,,0.07517,,0.040177,,44.999924,,45,,44.999629,,45,,45,,,,,,,,,,,,10320,,0.172804,,0.172804,,0.172804,,0.172804,,0.07517,,45,,, +8697,1,0.11095,1,0,0,1,2,ROF,4,6,N US 23/Lloyd,RAMP,1224007,0,0.111,0,,2.24,5,0.166424,,0.166424,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.166425,,0.166424,,0.166425,,0.166424,,0.166424,,0.166424,,0.166426,,0.166424,,0.166426,,0.166424,,0.166424,,0.166424,,,,,,,,0.166425,,0.166424,,0.166426,,0.166424,,0.166424,,0.069898,,0.069898,,0.069899,,0.069898,,0.037168,,39.999915,,39.999956,,39.999651,,40,,40,,,,,,,,,,,,5160,,0.166424,,0.166424,,0.166424,,0.166424,,0.069898,,40,,, +31033,0,1.128393,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.179851,0.15,4,4.513572,4.513572,4.513572,4.513572,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,,,,,,,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,1.557182,1.557182,1.557182,1.557182,1.557182,1.557182,1.557182,1.557182,0.801159,0.801159,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,4.513572,1.557182,1.557182,15,15,, +8513,0,0.572522,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,9.688,10.26,0,12.268322,3,4,0.858783,0.858783,0.858783,0.858783,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.34181,1.063187,0.858783,0.858783,1.34181,1.063187,0.956979,0.956367,0.858783,0.858783,0.956979,0.956367,1.181004,1.512721,0.858783,0.858783,1.181004,1.512721,0.858783,0.858783,0.858783,0.858783,0.858783,0.858783,,,,,,,1.34181,1.063187,0.956979,0.956367,1.181004,1.512721,0.858783,0.858783,0.858783,0.858783,0.505597,0.42201,0.390148,0.389964,0.457355,0.55687,0.360689,0.360689,0.191795,0.191795,25.600721,32.309738,35.89557,35.918516,29.086513,22.708289,40,40,40,40,,,,,,,,,,,3096,3096,0.858783,0.858783,0.858783,0.858783,0.858783,0.858783,0.858783,0.858783,0.360689,0.360689,40,40,, +8703,1,0.418011,1,0,0,1,1,ROF,5,6,S I 75/Luna Pier,RAMP,1226908,0,0.418,0,,2.24,5,0.627017,,0.627017,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.627223,,0.627017,,0.627223,,0.627228,,0.627017,,0.627228,,0.640109,,0.627017,,0.640109,,0.627017,,0.627017,,0.627017,,,,,,,,0.627223,,0.627228,,0.640109,,0.627017,,0.627017,,0.263409,,0.263411,,0.267275,,0.263347,,0.140034,,39.98681,,39.986484,,39.181887,,40,,40,,,,,,,,,,,,5160,,0.627017,,0.627017,,0.627017,,0.627017,,0.263347,,40,,, +8787,0,1.303926,1,1,0,2,4,,5,6,Custer,Rd,1223803,13.504,14.807,0,27.941266,3,4,1.955889,1.955889,1.955889,1.955889,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.245572,2.021645,1.955889,1.955889,2.245572,2.021645,1.960055,1.959173,1.955889,1.955889,1.960055,1.959173,2.065186,2.294156,1.955889,1.955889,2.065186,2.294156,1.955889,1.955889,1.955889,1.955889,1.955889,1.955889,,,,,,,2.245572,2.021645,1.960055,1.959173,2.065186,2.294156,1.955889,1.955889,1.955889,1.955889,0.908378,0.8412,0.822723,0.822459,0.854263,0.922953,0.821473,0.821473,0.436815,0.436815,34.839924,38.698952,39.914976,39.932934,37.883044,34.102107,40,40,40,40,,,,,,,,,,,3096,3096,1.955889,1.955889,1.955889,1.955889,1.955889,1.955889,1.955889,1.955889,0.821473,0.821473,40,40,, +8821,0,2.073182,1,1,0,2,5,,5,6,Yargerville,Rd,1223704,14.024,16.096,0,44.425326,3.7,5,4.146364,4.146364,4.146364,4.146364,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.222525,4.146531,4.146364,4.146364,4.222525,4.146531,4.146623,4.146488,4.146364,4.146364,4.146623,4.146488,4.153218,4.231519,4.146364,4.146364,4.153218,4.231519,4.146364,4.146364,4.146364,4.146364,4.146364,4.146364,,,,,,,4.222525,4.146531,4.146623,4.146488,4.153218,4.231519,4.146364,4.146364,4.146364,4.146364,1.63993,1.617132,1.61716,1.617119,1.619138,1.642628,1.617082,1.617082,0.850005,0.850005,29.458892,29.998793,29.998123,29.999102,29.950487,29.396282,30,30,30,30,,,,,,,,,,,2580,2580,4.146364,4.146364,4.146364,4.146364,4.146364,4.146364,4.146364,4.146364,1.617082,1.617082,30,30,, +8879,0,0.536793,1,1,0,2,5,,5,6,Strasburg,Rd,1226809,9.575,10.112,0,11.502703,3.7,5,1.073586,1.073586,1.073586,1.073586,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,,,,,,,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,0.418698,0.418698,0.418698,0.418698,0.418698,0.418698,0.418698,0.418698,0.220085,0.220085,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,1.073586,0.418698,0.418698,30,30,, +8900,0,0.535747,1,1,0,2,5,,5,6,Lewis,Ave,1226808,5.421,5.956,0,11.480297,3.7,5,1.071494,1.071494,1.071494,1.071494,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.084315,1.073484,1.071494,1.071494,1.084315,1.073484,1.072233,1.072282,1.071494,1.071494,1.072233,1.072282,1.076145,1.100875,1.071494,1.071494,1.076145,1.100875,1.071494,1.071494,1.071494,1.071494,1.071494,1.071494,,,,,,,1.084315,1.073484,1.072233,1.072282,1.076145,1.100875,1.071494,1.071494,1.071494,1.071494,0.421729,0.41848,0.418105,0.418119,0.419278,0.426697,0.417883,0.417883,0.219656,0.219656,29.645278,29.944394,29.979319,29.977969,29.870352,29.199355,30,30,30,30,,,,,,,,,,,2580,2580,1.071494,1.071494,1.071494,1.071494,1.071494,1.071494,1.071494,1.071494,0.417883,0.417883,30,30,, +9145,0,3.021956,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,1.069,4.09,0,64.756194,5.8,6,6.043911,6.043911,6.043911,6.043911,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,6.044227,6.044378,6.043911,6.043911,6.044227,6.044378,6.043912,6.043912,6.043911,6.043911,6.043912,6.043912,6.046196,6.046388,6.043911,6.043911,6.046196,6.046388,6.043911,6.043911,6.043911,6.043911,6.043911,6.043911,,,,,,,6.044227,6.044378,6.043912,6.043912,6.046196,6.046388,6.043911,6.043911,6.043911,6.043911,2.35722,2.357266,2.357126,2.357126,2.357811,2.357868,2.357125,2.357125,1.239002,1.239002,29.998435,29.997683,29.999997,29.999999,29.988664,29.987713,30,30,30,30,,,,,,,,,,,2236,2236,6.043911,6.043911,6.043911,6.043911,6.043911,6.043911,6.043911,6.043911,2.357125,2.357125,30,30,, +9194,0,0.737393,1,1,0,2,4,,5,6,Sterns,Rd,1223310,13.448,14.185,0,15.801269,3,4,1.106089,1.106089,1.106089,1.106089,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.784043,1.72043,1.106089,1.106089,2.784043,1.72043,1.581884,1.537236,1.106089,1.106089,1.581884,1.537236,2.082325,2.880614,1.106089,1.106089,2.082325,2.880614,1.106089,1.106089,1.106089,1.106089,1.106089,1.106089,,,,,,,2.784043,1.72043,1.581884,1.537236,2.082325,2.880614,1.106089,1.106089,1.106089,1.106089,0.967943,0.64886,0.607296,0.593901,0.757428,0.996915,0.464557,0.464557,0.247027,0.247027,15.891837,25.716565,27.968894,28.781236,21.247186,15.35907,40,40,40,40,,,,,,,,,,,3096,3096,1.106089,1.106089,1.106089,1.106089,1.106089,1.106089,1.106089,1.106089,0.464557,0.464557,40,40,, +9256,0,0.277353,1,1,0,2,6,,5,6,Erie,Rd,1232207,10.118,10.395,0,5.943269,5.8,6,0.554705,0.554705,0.554705,0.554705,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.961658,0.821729,0.554705,0.554705,1.961658,0.821729,0.630276,0.632862,0.554705,0.554705,0.630276,0.632862,1.091557,2.161095,0.554705,0.554705,1.091557,2.161095,0.554705,0.554705,0.554705,0.554705,0.554705,0.554705,,,,,,,1.961658,0.821729,0.630276,0.632862,1.091557,2.161095,0.554705,0.554705,0.554705,0.554705,0.638421,0.296442,0.239006,0.239782,0.377391,0.698252,0.216335,0.216335,0.113715,0.113715,8.483206,20.251399,26.402972,26.295084,15.245337,7.700335,30,30,30,30,,,,,,,,,,,2236,2236,0.554705,0.554705,0.554705,0.554705,0.554705,0.554705,0.554705,0.554705,0.216335,0.216335,30,30,, +9405,0,0.527454,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.876,6.404,0,11.302585,3,4,0.791181,0.791181,0.791181,0.791181,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.79268,0.791516,0.791181,0.791181,0.79268,0.791516,0.79151,0.791337,0.791181,0.791181,0.79151,0.791337,0.792453,0.79326,0.791181,0.791181,0.792453,0.79326,0.791181,0.791181,0.791181,0.791181,0.791181,0.791181,,,,,,,0.79268,0.791516,0.79151,0.791337,0.792453,0.79326,0.791181,0.791181,0.791181,0.791181,0.332746,0.332397,0.332395,0.332343,0.332678,0.33292,0.332296,0.332296,0.176697,0.176697,39.924347,39.983044,39.983373,39.992107,39.935773,39.895145,40,40,40,40,,,,,,,,,,,3096,3096,0.791181,0.791181,0.791181,0.791181,0.791181,0.791181,0.791181,0.791181,0.332296,0.332296,40,40,, +9409,0,0.648319,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,4.716,5.364,0,13.892555,3,4,0.972479,0.972479,0.972479,0.972479,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.977727,0.972488,0.972479,0.972479,0.977727,0.972488,0.972484,0.97248,0.972479,0.972479,0.972484,0.97248,0.972683,0.979616,0.972479,0.972479,0.972683,0.979616,0.972479,0.972479,0.972479,0.972479,0.972479,0.972479,,,,,,,0.977727,0.972488,0.972484,0.97248,0.972683,0.979616,0.972479,0.972479,0.972479,0.972479,0.410016,0.408444,0.408443,0.408441,0.408502,0.410582,0.408441,0.408441,0.217187,0.217187,39.785279,39.999631,39.999771,39.99995,39.991594,39.708591,40,40,40,40,,,,,,,,,,,3096,3096,0.972479,0.972479,0.972479,0.972479,0.972479,0.972479,0.972479,0.972479,0.408441,0.408441,40,40,, +9415,1,0.310255,1,0,0,1,1,RON,5,6,Luna Pier/N I 75,RAMP,1227002,0,0.31,0,,1.09,4,0.413673,,0.413673,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.422462,,0.413673,,0.422462,,0.414205,,0.413673,,0.414205,,0.414635,,0.413673,,0.414635,,0.413673,,0.413673,,0.413673,,,,,,,,0.422462,,0.414205,,0.414635,,0.413673,,0.413673,,0.182585,,0.180107,,0.180236,,0.179948,,0.096179,,44.063825,,44.942204,,44.89563,,45,,45,,,,,,,,,,,,5160,,0.413673,,0.413673,,0.413673,,0.413673,,0.179948,,45,,, +9437,1,0.643394,3,0,0,1,1,,5,6,N I 75,,1226910,5.491,6.134,0,,1.02,7,0.551481,,0.551481,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.552667,,0.551481,,0.552667,,0.551992,,0.551481,,0.551992,,0.552578,,0.551481,,0.552578,,0.551481,,0.551481,,0.551481,,,,,,,,0.552667,,0.551992,,0.552578,,0.551481,,0.551481,,0.281611,,0.281409,,0.281584,,0.281255,,0.153495,,69.84981,,69.935177,,69.86104,,70,,70,,,,,,,,,,,,22704,,0.551481,,0.551481,,0.551481,,0.551481,,0.281255,,70,,, +9462,-1,0.613225,0,3,0,1,1,,5,6,S I 75,,1226909,5.484,6.097,0,,1.02,7,,0.525621,,0.525621,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.526076,,0.525621,,0.526076,,0.526105,,0.525621,,0.526105,,0.527534,,0.525621,,0.527534,,0.525621,,0.525621,,0.525621,,,,,,,,0.526076,,0.526105,,0.527534,,0.525621,,0.525621,,0.268203,,0.268212,,0.268641,,0.268067,,0.146298,,69.939522,,69.935655,,69.746195,,70,,70,,,,,,,,,,,,22704,,0.525621,,0.525621,,0.525621,,0.525621,,0.268067,,70,, +9941,0,0.898451,1,1,0,2,5,,5,6,Harold,Dr,1240702,0.708,1.606,0,19.252531,3.7,5,1.796903,1.796903,1.796903,1.796903,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,,,,,,,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,0.700792,0.700792,0.700792,0.700792,0.700792,0.700792,0.700792,0.700792,0.368365,0.368365,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,1.796903,0.700792,0.700792,30,30,, +10367,0,1.408938,1,1,0,2,4,,5,6,Dunbar,Rd,1234601,8.296,9.704,0,30.191535,3,4,2.113407,2.113407,2.113407,2.113407,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.911998,2.177154,2.113407,2.113407,2.911998,2.177154,2.240689,2.209443,2.113407,2.113407,2.240689,2.209443,2.387677,2.872284,2.113407,2.113407,2.387677,2.872284,2.113407,2.113407,2.113407,2.113407,2.113407,2.113407,,,,,,,2.911998,2.177154,2.240689,2.209443,2.387677,2.872284,2.113407,2.113407,2.113407,2.113407,1.127208,0.906755,0.925816,0.916442,0.969912,1.115294,0.887631,0.887631,0.471994,0.471994,29.030344,38.828815,37.727807,38.261366,35.405248,29.431731,40,40,40,40,,,,,,,,,,,3096,3096,2.113407,2.113407,2.113407,2.113407,2.113407,2.113407,2.113407,2.113407,0.887631,0.887631,40,40,, +20329,1,1.865267,2,0,0,2,3,DIV,5,6,Telegraph,Rd,4300001,6.863,8.727,0,39.970003,1.7,4,2.034837,,2.034837,,55,,24000,,5448,,12000,,7742,,8256,,8246,,2.047768,,2.034837,,2.047768,,2.038721,,2.034837,,2.038721,,2.044818,,2.034837,,2.044818,,2.034837,,2.034837,,2.034837,,,,,,,,2.047768,,2.038721,,2.044818,,2.034837,,2.034837,,0.950079,,0.947364,,0.949194,,0.946199,,0.510405,,54.652672,,54.895213,,54.731517,,55,,55,,,,,,,,,,,,8256,,2.034837,,2.034837,,2.034837,,2.034837,,0.946199,,55,,, +20522,0,0.7552,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,6.108,6.863,0,16.182856,1.7,4,0.90624,0.90624,0.90624,0.90624,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.197477,0.994221,0.90624,0.90624,1.197477,0.994221,0.993717,0.962739,0.90624,0.90624,0.993717,0.962739,1.131118,1.172022,0.90624,0.90624,1.131118,1.172022,0.90624,0.90624,0.90624,0.90624,0.90624,0.90624,,,,,,,1.197477,0.994221,0.993717,0.962739,1.131118,1.172022,0.90624,0.90624,0.90624,0.90624,0.495179,0.434202,0.434051,0.424758,0.475271,0.487542,0.407808,0.407808,0.219008,0.219008,37.839564,45.575389,45.598508,47.065728,40.059475,38.661402,50,50,50,50,,,,,,,,,,,3096,3096,0.90624,0.90624,0.90624,0.90624,0.90624,0.90624,0.90624,0.90624,0.407808,0.407808,50,50,, +20705,-1,1.898098,0,2,0,2,3,DIV,5,6,Telegraph,Rd,4300061,0,1.897,0,40.673526,1.7,4,,2.070652,,2.070652,,55,,24000,,5448,,12000,,7742,,8256,,8246,,2.074628,,2.070652,,2.074628,,2.073205,,2.070652,,2.073205,,2.082657,,2.070652,,2.082657,,2.070652,,2.070652,,2.070652,,,,,,,,2.074628,,2.073205,,2.082657,,2.070652,,2.070652,,0.964046,,0.963619,,0.966455,,0.962853,,0.519389,,54.89461,,54.932275,,54.682964,,55,,55,,,,,,,,,,,,8256,,2.070652,,2.070652,,2.070652,,2.070652,,0.962853,,55,, +31109,0,1.277972,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.385119,0.15,4,5.111889,5.111889,5.111889,5.111889,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,,,,,,,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,1.763602,1.763602,1.763602,1.763602,1.763602,1.763602,1.763602,1.763602,0.90736,0.90736,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,5.111889,1.763602,1.763602,15,15,, +31115,0,0.993909,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.298051,0.15,4,3.975636,3.975636,3.975636,3.975636,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,,,,,,,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,1.371595,1.371595,1.371595,1.371595,1.371595,1.371595,1.371595,1.371595,0.705675,0.705675,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,3.975636,1.371595,1.371595,15,15,, +31122,0,0.507127,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.866999,0.15,4,2.028507,2.028507,2.028507,2.028507,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,,,,,,,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,0.699835,0.699835,0.699835,0.699835,0.699835,0.699835,0.699835,0.699835,0.36006,0.36006,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,2.028507,0.699835,0.699835,15,15,, +34028,0,1.596503,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,6.386014,6.386014,6.386014,6.386014,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,,,,,,,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,2.203175,2.203175,2.203175,2.203175,2.203175,2.203175,2.203175,2.203175,1.133517,1.133517,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,6.386014,2.203175,2.203175,15,15,, +8466,0,0.409956,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0.893,1.303,0,8.784766,4.5,4.5,0.647299,0.647299,0.647299,0.647299,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.672709,0.663118,0.647299,0.647299,0.672709,0.663118,0.653982,0.655012,0.647299,0.647299,0.653982,0.655012,0.698641,0.729258,0.647299,0.647299,0.698641,0.729258,0.647299,0.647299,0.647299,0.647299,0.647299,0.647299,,,,,,,0.672709,0.663118,0.653982,0.655012,0.698641,0.729258,0.647299,0.647299,0.647299,0.647299,0.275605,0.272727,0.269987,0.270296,0.283384,0.292569,0.267982,0.267982,0.14219,0.14219,36.564624,37.093474,37.611628,37.552507,35.207403,33.729285,38,38,38,38,,,,,,,,,,,3096,3096,0.647299,0.647299,0.647299,0.647299,0.647299,0.647299,0.647299,0.647299,0.267982,0.267982,38,38,, +8563,0,0.997306,1,1,0,2,4,,5,6,Samaria,Rd,1226710,6.066,7.063,0,21.370832,3,4,1.495958,1.495958,1.495958,1.495958,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.026075,1.66689,1.495958,1.495958,2.026075,1.66689,1.641192,1.626912,1.495958,1.495958,1.641192,1.626912,1.91104,2.190718,1.495958,1.495958,1.91104,2.190718,1.495958,1.495958,1.495958,1.495958,1.495958,1.495958,,,,,,,2.026075,1.66689,1.641192,1.626912,1.91104,2.190718,1.495958,1.495958,1.495958,1.495958,0.787338,0.679582,0.671872,0.667589,0.752827,0.83673,0.628302,0.628302,0.334097,0.334097,29.534109,35.898198,36.460297,36.780313,31.311915,27.314485,40,40,40,40,,,,,,,,,,,3096,3096,1.495958,1.495958,1.495958,1.495958,1.495958,1.495958,1.495958,1.495958,0.628302,0.628302,40,40,, +8831,0,0.592202,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,12.99,13.582,0,12.690043,4.5,4.5,0.935056,0.935056,0.935056,0.935056,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.175387,1.316245,0.935056,0.935056,1.175387,1.316245,1.104774,1.127063,0.935056,0.935056,1.104774,1.127063,1.33653,1.264479,0.935056,0.935056,1.33653,1.264479,0.935056,0.935056,0.935056,0.935056,0.935056,0.935056,,,,,,,1.175387,1.316245,1.104774,1.127063,1.33653,1.264479,0.935056,0.935056,0.935056,0.935056,0.459212,0.50147,0.438029,0.444715,0.507555,0.48594,0.387113,0.387113,0.205401,0.205401,30.230149,26.995057,32.162336,31.526281,26.585348,28.100213,38,38,38,38,,,,,,,,,,,3096,3096,0.935056,0.935056,0.935056,0.935056,0.935056,0.935056,0.935056,0.935056,0.387113,0.387113,38,38,, +8848,0,0.529613,2,2,1,2,4,,4,6,Lewis,Ave,1226808,0.905,1.435,0,11.348849,4.5,4.5,0.836231,0.836231,0.836231,0.836231,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.837451,0.837267,0.836231,0.836231,0.837451,0.837267,0.83706,0.837046,0.836231,0.836231,0.83706,0.837046,0.842077,0.843808,0.836231,0.836231,0.842077,0.843808,0.836231,0.836231,0.836231,0.836231,0.836231,0.836231,,,,,,,0.837451,0.837267,0.83706,0.837046,0.842077,0.843808,0.836231,0.836231,0.836231,0.836231,0.346566,0.34651,0.346448,0.346444,0.347954,0.348473,0.3462,0.3462,0.183692,0.183692,37.944642,37.952989,37.962362,37.963015,37.736176,37.658769,38,38,38,38,,,,,,,,,,,6502,6502,0.836231,0.836231,0.836231,0.836231,0.836231,0.836231,0.836231,0.836231,0.3462,0.3462,38,38,, +8971,0,1.002375,1,1,0,2,4,,4,6,Sterns,Rd,1223310,10.151,11.153,0,21.479462,4.5,4.5,1.582697,1.582697,1.582697,1.582697,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,6.073545,4.052136,1.582697,1.582697,6.073545,4.052136,3.264499,3.220493,1.582697,1.582697,3.264499,3.220493,5.745625,7.30804,1.582697,1.582697,5.745625,7.30804,1.582697,1.582697,1.582697,1.582697,1.582697,1.582697,,,,,,,6.073545,4.052136,3.264499,3.220493,5.745625,7.30804,1.582697,1.582697,1.582697,1.582697,2.002491,1.396068,1.159777,1.146576,1.904115,2.37284,0.655237,0.655237,0.347666,0.347666,9.90237,14.84217,18.423195,18.674931,10.467529,8.229633,38,38,38,38,,,,,,,,,,,3096,3096,1.582697,1.582697,1.582697,1.582697,1.582697,1.582697,1.582697,1.582697,0.655237,0.655237,38,38,, +9242,0,0.936053,1,1,0,2,4,,4,6,Smith,Rd,1232401,5.119,6.055,0,20.058281,4.5,4.5,1.477979,1.477979,1.477979,1.477979,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,7.852909,5.25396,1.477979,1.477979,7.852909,5.25396,4.457835,4.304565,1.477979,1.477979,4.457835,4.304565,7.216227,9.503339,1.477979,1.477979,7.216227,9.503339,1.477979,1.477979,1.477979,1.477979,1.477979,1.477979,,,,,,,7.852909,5.25396,4.457835,4.304565,7.216227,9.503339,1.477979,1.477979,1.477979,1.477979,2.524362,1.744678,1.50584,1.459859,2.333358,3.019491,0.611883,0.611883,0.324663,0.324663,7.151896,10.689687,12.598758,13.047356,7.782902,5.909837,38,38,38,38,,,,,,,,,,,3096,3096,1.477979,1.477979,1.477979,1.477979,1.477979,1.477979,1.477979,1.477979,0.611883,0.611883,38,38,, +9260,0,1.007852,1,1,0,2,5,,5,6,Temperance,Rd,1232206,6.51,7.517,0,21.596828,3.7,5,2.015704,2.015704,2.015704,2.015704,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.745978,2.07592,2.015704,2.015704,2.745978,2.07592,2.02493,2.021038,2.015704,2.015704,2.02493,2.021038,2.249749,2.971881,2.015704,2.015704,2.249749,2.971881,2.015704,2.015704,2.015704,2.015704,2.015704,2.015704,,,,,,,2.745978,2.07592,2.02493,2.021038,2.249749,2.971881,2.015704,2.015704,2.015704,2.015704,1.005207,0.804189,0.788892,0.787725,0.856338,1.072978,0.786125,0.786125,0.413219,0.413219,22.021706,29.129798,29.863313,29.920829,26.879054,20.347757,30,30,30,30,,,,,,,,,,,2580,2580,2.015704,2.015704,2.015704,2.015704,2.015704,2.015704,2.015704,2.015704,0.786125,0.786125,30,30,, +9413,0,1.104889,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,0.331,1.435,0,23.676186,3,4,1.657333,1.657333,1.657333,1.657333,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.818115,1.683007,1.657333,1.657333,1.818115,1.683007,1.661192,1.659575,1.657333,1.657333,1.661192,1.659575,1.768639,1.944607,1.657333,1.657333,1.768639,1.944607,1.657333,1.657333,1.657333,1.657333,1.657333,1.657333,,,,,,,1.818115,1.683007,1.661192,1.659575,1.768639,1.944607,1.657333,1.657333,1.657333,1.657333,0.744314,0.703782,0.697237,0.696752,0.729472,0.782262,0.69608,0.69608,0.370138,0.370138,36.462672,39.389813,39.907088,39.945966,37.482676,34.090862,40,40,40,40,,,,,,,,,,,3096,3096,1.657333,1.657333,1.657333,1.657333,1.657333,1.657333,1.657333,1.657333,0.69608,0.69608,40,40,, +19880,0,0.832184,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,0.819,1.651,0,17.832522,3.7,5,1.248277,1.248277,1.248277,1.248277,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.391886,1.498352,1.248277,1.248277,1.391886,1.498352,1.486205,1.482099,1.248277,1.248277,1.486205,1.482099,1.487022,1.459328,1.248277,1.248277,1.487022,1.459328,1.248277,1.248277,1.248277,1.248277,1.248277,1.248277,,,,,,,1.391886,1.498352,1.486205,1.482099,1.487022,1.459328,1.248277,1.248277,1.248277,1.248277,0.567359,0.599299,0.595655,0.594423,0.5959,0.587592,0.524276,0.524276,0.278782,0.278782,35.872953,33.323979,33.596347,33.689422,33.57788,34.215105,40,40,40,40,,,,,,,,,,,3784,3784,1.248277,1.248277,1.248277,1.248277,1.248277,1.248277,1.248277,1.248277,0.524276,0.524276,40,40,, +20872,0,0.66172,1,1,0,2,4,,4,6,Jackman,Rd,4300008,0.327,0.988,0,14.179718,4.5,4.5,1.044821,1.044821,1.044821,1.044821,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.227921,1.124313,1.044821,1.044821,1.227921,1.124313,1.077852,1.087103,1.044821,1.044821,1.077852,1.087103,1.208675,1.382875,1.044821,1.044821,1.208675,1.382875,1.044821,1.044821,1.044821,1.044821,1.044821,1.044821,,,,,,,1.227921,1.124313,1.077852,1.087103,1.208675,1.382875,1.044821,1.044821,1.044821,1.044821,0.487486,0.456404,0.442465,0.445241,0.481712,0.533972,0.432556,0.432556,0.229512,0.229512,32.333685,35.313301,36.835491,36.522021,32.848542,28.71062,38,38,38,38,,,,,,,,,,,3096,3096,1.044821,1.044821,1.044821,1.044821,1.044821,1.044821,1.044821,1.044821,0.432556,0.432556,38,38,, +31053,0,0.71783,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,15.382063,0.15,4,2.871318,2.871318,2.871318,2.871318,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,,,,,,,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,0.990605,0.990605,0.990605,0.990605,0.990605,0.990605,0.990605,0.990605,0.509659,0.509659,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,2.871318,0.990605,0.990605,15,15,, +31054,0,0.716118,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,15.345393,0.15,4,2.864473,2.864473,2.864473,2.864473,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,,,,,,,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,0.988243,0.988243,0.988243,0.988243,0.988243,0.988243,0.988243,0.988243,0.508444,0.508444,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,2.864473,0.988243,0.988243,15,15,, +31056,0,0.720629,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,15.442047,0.15,4,2.882515,2.882515,2.882515,2.882515,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,,,,,,,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,0.994468,0.994468,0.994468,0.994468,0.994468,0.994468,0.994468,0.994468,0.511646,0.511646,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,2.882515,0.994468,0.994468,15,15,, +31124,0,0.718373,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,15.393699,0.15,4,2.873491,2.873491,2.873491,2.873491,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.873491,2.873491,2.873491,2.873491,2.873491,2.873491,2.873491,2.873491,2.873491,2.873491,2.873491,2.873491,2.873492,2.873492,2.873491,2.873491,2.873492,2.873492,2.873491,2.873491,2.873491,2.873491,2.873491,2.873491,,,,,,,2.873491,2.873491,2.873491,2.873491,2.873492,2.873492,2.873491,2.873491,2.873491,2.873491,0.991354,0.991354,0.991354,0.991354,0.991355,0.991355,0.991354,0.991354,0.510045,0.510045,14.999998,14.999996,14.999999,14.999998,14.999992,14.999994,15,15,15,15,,,,,,,,,,,34400,34400,2.873491,2.873491,2.873491,2.873491,2.873491,2.873491,2.873491,2.873491,0.991354,0.991354,15,15,, +31132,0,1.009493,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.632003,0.15,4,4.037974,4.037974,4.037974,4.037974,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.037975,4.037974,4.037974,4.037974,4.037975,4.037974,4.037974,4.037974,4.037974,4.037974,4.037974,4.037974,4.037975,4.037976,4.037974,4.037974,4.037975,4.037976,4.037974,4.037974,4.037974,4.037974,4.037974,4.037974,,,,,,,4.037975,4.037974,4.037974,4.037974,4.037975,4.037976,4.037974,4.037974,4.037974,4.037974,1.393101,1.393101,1.393101,1.393101,1.393101,1.393102,1.393101,1.393101,0.71674,0.71674,14.999998,14.999999,14.999999,14.999999,14.999996,14.999992,15,15,15,15,,,,,,,,,,,34400,34400,4.037974,4.037974,4.037974,4.037974,4.037974,4.037974,4.037974,4.037974,1.393101,1.393101,15,15,, +31137,0,1.022914,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.919582,0.15,4,4.091655,4.091655,4.091655,4.091655,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,,,,,,,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,1.411621,1.411621,1.411621,1.411621,1.411621,1.411621,1.411621,1.411621,0.726269,0.726269,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,4.091655,1.411621,1.411621,15,15,, +34004,0,0.777965,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.670674,0.15,4,3.111859,3.111859,3.111859,3.111859,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,,,,,,,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,1.073591,1.073591,1.073591,1.073591,1.073591,1.073591,1.073591,1.073591,0.552355,0.552355,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,3.111859,1.073591,1.073591,15,15,, +9247,0,0.492168,1,1,0,2,4,,4,6,Smith,Rd,1232401,3.624,4.116,0,10.546459,4.5,4.5,0.777108,0.777108,0.777108,0.777108,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.093421,2.171774,0.777108,0.777108,2.093421,2.171774,1.820449,1.776949,0.777108,0.777108,1.820449,1.776949,2.623541,2.552885,0.777108,0.777108,2.623541,2.552885,0.777108,0.777108,0.777108,0.777108,0.777108,0.777108,,,,,,,2.093421,2.171774,1.820449,1.776949,2.623541,2.552885,0.777108,0.777108,0.777108,0.777108,0.716616,0.740123,0.634725,0.621675,0.875653,0.854456,0.321723,0.321723,0.170705,0.170705,14.10614,13.597217,16.221323,16.618424,11.255813,11.567337,38,38,38,38,,,,,,,,,,,3096,3096,0.777108,0.777108,0.777108,0.777108,0.777108,0.777108,0.777108,0.777108,0.321723,0.321723,38,38,, +31128,0,0.499401,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.701449,0.15,4,1.997604,1.997604,1.997604,1.997604,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,,,,,,,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,0.689173,0.689173,0.689173,0.689173,0.689173,0.689173,0.689173,0.689173,0.354575,0.354575,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,1.997604,0.689173,0.689173,15,15,, +34031,0,1.335442,2,2,1,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.341766,5.341766,5.341766,5.341766,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.341774,5.341775,5.341766,5.341766,5.341774,5.341775,5.341771,5.341771,5.341766,5.341766,5.341771,5.341771,5.341783,5.341782,5.341766,5.341766,5.341783,5.341782,5.341766,5.341766,5.341766,5.341766,5.341766,5.341766,,,,,,,5.341774,5.341775,5.341771,5.341771,5.341783,5.341782,5.341766,5.341766,5.341766,5.341766,1.842912,1.842912,1.842911,1.842911,1.842914,1.842914,1.842909,1.842909,0.948164,0.948164,14.999979,14.999975,14.999986,14.999986,14.999953,14.999957,15,15,15,15,,,,,,,,,,,34400,34400,5.341766,5.341766,5.341766,5.341766,5.341766,5.341766,5.341766,5.341766,1.842909,1.842909,15,15,, +34032,0,1.228174,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.912696,4.912696,4.912696,4.912696,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.912697,4.912697,4.912696,4.912696,4.912697,4.912697,4.912696,4.912697,4.912696,4.912696,4.912696,4.912697,4.912697,4.912697,4.912696,4.912696,4.912697,4.912697,4.912696,4.912696,4.912696,4.912696,4.912696,4.912696,,,,,,,4.912697,4.912697,4.912696,4.912697,4.912697,4.912697,4.912696,4.912696,4.912696,4.912696,1.69488,1.69488,1.69488,1.69488,1.694881,1.69488,1.69488,1.69488,0.872004,0.872004,14.999998,14.999997,14.999998,14.999997,14.999996,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,4.912696,4.912696,4.912696,4.912696,4.912696,4.912696,4.912696,4.912696,1.69488,1.69488,15,15,, +34033,0,1.198888,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.795553,4.795553,4.795553,4.795553,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.795554,4.795554,4.795553,4.795553,4.795554,4.795554,4.795554,4.795554,4.795553,4.795553,4.795554,4.795554,4.795554,4.795554,4.795553,4.795553,4.795554,4.795554,4.795553,4.795553,4.795553,4.795553,4.795553,4.795553,,,,,,,4.795554,4.795554,4.795554,4.795554,4.795554,4.795554,4.795553,4.795553,4.795553,4.795553,1.654466,1.654466,1.654466,1.654466,1.654466,1.654466,1.654466,1.654466,0.851211,0.851211,14.999999,14.999998,14.999999,14.999999,14.999997,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,4.795553,4.795553,4.795553,4.795553,4.795553,4.795553,4.795553,4.795553,1.654466,1.654466,15,15,, +8689,0,0.44594,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0,0.446,0,9.555858,4.5,4.5,0.704116,0.704116,0.704116,0.704116,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.718712,0.724742,0.704116,0.704116,0.718712,0.724742,0.718224,0.717275,0.704116,0.704116,0.718224,0.717275,0.745161,0.736106,0.704116,0.704116,0.745161,0.736106,0.704116,0.704116,0.704116,0.704116,0.704116,0.704116,,,,,,,0.718712,0.724742,0.718224,0.717275,0.745161,0.736106,0.704116,0.704116,0.704116,0.704116,0.295883,0.297692,0.295736,0.295452,0.303817,0.301101,0.291504,0.291504,0.154671,0.154671,37.228267,36.918539,37.253555,37.302836,35.90689,36.348573,38,38,38,38,,,,,,,,,,,3096,3096,0.704116,0.704116,0.704116,0.704116,0.704116,0.704116,0.704116,0.704116,0.291504,0.291504,38,38,, +9249,0,0.521747,1,1,0,2,4,,4,6,Smith,Rd,1232401,2.602,3.124,0,11.180282,4.5,4.5,0.82381,0.82381,0.82381,0.82381,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.12213,1.136435,0.82381,0.82381,1.12213,1.136435,1.041302,1.037229,0.82381,0.82381,1.041302,1.037229,1.384869,1.351705,0.82381,0.82381,1.384869,1.351705,0.82381,0.82381,0.82381,0.82381,0.82381,0.82381,,,,,,,1.12213,1.136435,1.041302,1.037229,1.384869,1.351705,0.82381,0.82381,0.82381,0.82381,0.430553,0.434845,0.406305,0.405083,0.509375,0.499426,0.341057,0.341057,0.180964,0.180964,27.897647,27.546497,30.063127,30.181164,22.604871,23.159492,38,38,38,38,,,,,,,,,,,3096,3096,0.82381,0.82381,0.82381,0.82381,0.82381,0.82381,0.82381,0.82381,0.341057,0.341057,38,38,, +31051,0,0.495924,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.626953,0.15,4,1.983698,1.983698,1.983698,1.983698,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,,,,,,,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,0.684376,0.684376,0.684376,0.684376,0.684376,0.684376,0.684376,0.684376,0.352106,0.352106,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,1.983698,0.684376,0.684376,15,15,, +31052,0,0.270944,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.805949,0.15,4,1.083777,1.083777,1.083777,1.083777,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,,,,,,,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,0.373903,0.373903,0.373903,0.373903,0.373903,0.373903,0.373903,0.373903,0.19237,0.19237,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,1.083777,0.373903,0.373903,15,15,, +8497,0,0.296329,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0.446,0.742,0,6.349917,4.5,4.5,0.467889,0.467889,0.467889,0.467889,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.47738,0.476247,0.467889,0.467889,0.47738,0.476247,0.472196,0.47288,0.467889,0.467889,0.472196,0.47288,0.503787,0.502859,0.467889,0.467889,0.503787,0.502859,0.467889,0.467889,0.467889,0.467889,0.467889,0.467889,,,,,,,0.47738,0.476247,0.472196,0.47288,0.503787,0.502859,0.467889,0.467889,0.467889,0.467889,0.196553,0.196213,0.194998,0.195203,0.204475,0.204197,0.193706,0.193706,0.10278,0.10278,37.244457,37.333066,37.653376,37.59893,35.292221,35.357374,38,38,38,38,,,,,,,,,,,3096,3096,0.467889,0.467889,0.467889,0.467889,0.467889,0.467889,0.467889,0.467889,0.193706,0.193706,38,38,, +9039,0,0.586904,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,13.582,14.169,0,12.576508,4.5,4.5,0.92669,0.92669,0.92669,0.92669,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.045572,1.191134,0.92669,0.92669,1.045572,1.191134,1.021952,1.035743,0.92669,0.92669,1.021952,1.035743,1.226296,1.108086,0.92669,0.92669,1.226296,1.108086,0.92669,0.92669,0.92669,0.92669,0.92669,0.92669,,,,,,,1.045572,1.191134,1.021952,1.035743,1.226296,1.108086,0.92669,0.92669,0.92669,0.92669,0.419314,0.462983,0.412228,0.416366,0.473531,0.438069,0.38365,0.38365,0.203563,0.203563,33.679394,29.563619,34.457813,33.999,28.71593,31.779309,38,38,38,38,,,,,,,,,,,3096,3096,0.92669,0.92669,0.92669,0.92669,0.92669,0.92669,0.92669,0.92669,0.38365,0.38365,38,38,, +9248,0,0.500617,1,1,0,2,4,,4,6,Smith,Rd,1232401,3.124,3.624,0,10.727501,4.5,4.5,0.790447,0.790447,0.790447,0.790447,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.95113,1.0145,0.790447,0.790447,0.95113,1.0145,0.974229,0.951093,0.790447,0.790447,0.974229,0.951093,1.186378,1.113832,0.790447,0.790447,1.186378,1.113832,0.790447,0.790447,0.790447,0.790447,0.790447,0.790447,,,,,,,0.95113,1.0145,0.974229,0.951093,1.186378,1.113832,0.790447,0.790447,0.790447,0.790447,0.37545,0.394461,0.38238,0.375439,0.446024,0.424261,0.327245,0.327245,0.173635,0.173635,31.580325,29.607699,30.831558,31.58156,25.318251,26.967273,38,38,38,38,,,,,,,,,,,3096,3096,0.790447,0.790447,0.790447,0.790447,0.790447,0.790447,0.790447,0.790447,0.327245,0.327245,38,38,, +31129,0,0.185867,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.98287,0.15,4,0.743469,0.743469,0.743469,0.743469,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,,,,,,,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.256497,0.256497,0.256497,0.256497,0.256497,0.256497,0.256497,0.256497,0.131966,0.131966,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.743469,0.256497,0.256497,15,15,, +8657,0,0.150788,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0.742,0.893,0,3.231179,4.5,4.5,0.238087,0.238087,0.238087,0.238087,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.27161,0.27039,0.238087,0.238087,0.27161,0.27039,0.25103,0.252309,0.238087,0.238087,0.25103,0.252309,0.330307,0.33874,0.238087,0.238087,0.330307,0.33874,0.238087,0.238087,0.238087,0.238087,0.238087,0.238087,,,,,,,0.27161,0.27039,0.25103,0.252309,0.330307,0.33874,0.238087,0.238087,0.238087,0.238087,0.108625,0.108259,0.102451,0.102835,0.126234,0.128764,0.098568,0.098568,0.0523,0.0523,33.309855,33.460131,36.040699,35.857985,27.390551,26.708705,38,38,38,38,,,,,,,,,,,3096,3096,0.238087,0.238087,0.238087,0.238087,0.238087,0.238087,0.238087,0.238087,0.098568,0.098568,38,38,, +8829,0,0.111506,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,14.169,14.28,0,2.389404,4.5,4.5,0.176061,0.176061,0.176061,0.176061,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.18783,0.184484,0.176061,0.176061,0.18783,0.184484,0.183578,0.184376,0.176061,0.176061,0.183578,0.184376,0.186313,0.188899,0.176061,0.176061,0.186313,0.188899,0.176061,0.176061,0.176061,0.176061,0.176061,0.176061,,,,,,,0.18783,0.184484,0.183578,0.184376,0.186313,0.188899,0.176061,0.176061,0.176061,0.176061,0.07642,0.075416,0.075144,0.075384,0.075965,0.076741,0.072889,0.072889,0.038675,0.038675,35.619019,36.26513,36.44403,36.286388,35.909099,35.41742,38,38,38,38,,,,,,,,,,,3096,3096,0.176061,0.176061,0.176061,0.176061,0.176061,0.176061,0.176061,0.176061,0.072889,0.072889,38,38,, +8442,0,0.440447,2,2,1,2,4,,4,6,Lewis,Ave,1226808,0,0.44,0,9.438151,4.5,4.5,0.695443,0.695443,0.695443,0.695443,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.70771,0.710345,0.695443,0.695443,0.70771,0.710345,0.703527,0.703423,0.695443,0.695443,0.703527,0.703423,0.72589,0.723371,0.695443,0.695443,0.72589,0.723371,0.695443,0.695443,0.695443,0.695443,0.695443,0.695443,,,,,,,0.70771,0.710345,0.703527,0.703423,0.72589,0.723371,0.695443,0.695443,0.695443,0.695443,0.291593,0.292384,0.290339,0.290307,0.297048,0.296292,0.287913,0.287913,0.152766,0.152766,37.341318,37.202795,37.563337,37.568907,36.40609,36.532889,38,38,38,38,,,,,,,,,,,6502,6502,0.695443,0.695443,0.695443,0.695443,0.695443,0.695443,0.695443,0.695443,0.287913,0.287913,38,38,, +9243,0,0.421142,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.698,5.119,0,9.02448,4.5,4.5,0.664962,0.664962,0.664962,0.664962,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.803046,1.440269,0.664962,0.664962,1.803046,1.440269,1.329641,1.332584,0.664962,0.664962,1.329641,1.332584,1.792785,1.848105,0.664962,0.664962,1.792785,1.848105,0.664962,0.664962,0.664962,0.664962,0.664962,0.664962,,,,,,,1.803046,1.440269,1.329641,1.332584,1.792785,1.848105,0.664962,0.664962,0.664962,0.664962,0.616719,0.507886,0.474698,0.475581,0.613641,0.630237,0.275294,0.275294,0.14607,0.14607,14.014368,17.544327,19.004041,18.962066,14.094573,13.672679,38,38,38,38,,,,,,,,,,,3096,3096,0.664962,0.664962,0.664962,0.664962,0.664962,0.664962,0.664962,0.664962,0.275294,0.275294,38,38,, +20528,0,0.405328,1,1,0,2,4,,4,6,Jackman,Rd,4301658,0.04,0.445,0,8.685603,4.5,4.5,0.639992,0.639992,0.639992,0.639992,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.678637,0.661297,0.639992,0.639992,0.678637,0.661297,0.669613,0.660104,0.639992,0.639992,0.669613,0.660104,0.691855,0.694893,0.639992,0.639992,0.691855,0.694893,0.639992,0.639992,0.639992,0.639992,0.639992,0.639992,,,,,,,0.678637,0.661297,0.669613,0.660104,0.691855,0.694893,0.639992,0.639992,0.639992,0.639992,0.27655,0.271348,0.273843,0.27099,0.280516,0.281427,0.264957,0.264957,0.140585,0.140585,35.83607,36.775724,36.319024,36.842223,35.15141,34.997737,38,38,38,38,,,,,,,,,,,3096,3096,0.639992,0.639992,0.639992,0.639992,0.639992,0.639992,0.639992,0.639992,0.264957,0.264957,38,38,, +31126,0,0.524483,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.238913,0.15,4,2.09793,2.09793,2.09793,2.09793,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,2.097931,2.09793,2.09793,2.09793,2.097931,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,,,,,,,2.09793,2.09793,2.09793,2.09793,2.09793,2.097931,2.09793,2.09793,2.09793,2.09793,0.723786,0.723786,0.723786,0.723786,0.723786,0.723786,0.723786,0.723786,0.372383,0.372383,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,2.09793,0.723786,0.723786,15,15,, +9244,0,0.534861,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.164,4.698,0,11.461304,4.5,4.5,0.844517,0.844517,0.844517,0.844517,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.801718,1.501247,0.844517,0.844517,1.801718,1.501247,1.442782,1.434315,0.844517,0.844517,1.442782,1.434315,1.712496,1.972205,0.844517,0.844517,1.712496,1.972205,0.844517,0.844517,0.844517,0.844517,0.844517,0.844517,,,,,,,1.801718,1.501247,1.442782,1.434315,1.712496,1.972205,0.844517,0.844517,0.844517,0.844517,0.63679,0.546649,0.529109,0.526569,0.610024,0.687936,0.34963,0.34963,0.185512,0.185512,17.811699,21.376661,22.242903,22.374198,18.739689,16.271968,38,38,38,38,,,,,,,,,,,3096,3096,0.844517,0.844517,0.844517,0.844517,0.844517,0.844517,0.844517,0.844517,0.34963,0.34963,38,38,, +20177,0,0.326995,1,1,0,2,4,,4,6,Jackman,Rd,4300008,0,0.327,0,7.007043,4.5,4.5,0.516308,0.516308,0.516308,0.516308,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.518678,0.532898,0.516308,0.516308,0.518678,0.532898,0.520067,0.522153,0.516308,0.516308,0.520067,0.522153,0.542259,0.528691,0.516308,0.516308,0.542259,0.528691,0.516308,0.516308,0.516308,0.516308,0.516308,0.516308,,,,,,,0.518678,0.532898,0.520067,0.522153,0.542259,0.528691,0.516308,0.516308,0.516308,0.516308,0.214463,0.218729,0.214879,0.215505,0.221537,0.217467,0.213752,0.213752,0.113416,0.113416,37.82639,36.816994,37.725365,37.574662,36.181439,37.109974,38,38,38,38,,,,,,,,,,,3096,3096,0.516308,0.516308,0.516308,0.516308,0.516308,0.516308,0.516308,0.516308,0.213752,0.213752,38,38,, +31127,0,0.284438,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.095106,0.15,4,1.137753,1.137753,1.137753,1.137753,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,,,,,,,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,0.392525,0.392525,0.392525,0.392525,0.392525,0.392525,0.392525,0.392525,0.201951,0.201951,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,1.137753,0.392525,0.392525,15,15,, +34007,0,0.505206,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.82584,0.15,4,2.020823,2.020823,2.020823,2.020823,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.020824,2.020824,2.020823,2.020823,2.020824,2.020824,2.020824,2.020824,2.020823,2.020823,2.020824,2.020824,2.020824,2.020824,2.020823,2.020823,2.020824,2.020824,2.020823,2.020823,2.020823,2.020823,2.020823,2.020823,,,,,,,2.020824,2.020824,2.020824,2.020824,2.020824,2.020824,2.020823,2.020823,2.020823,2.020823,0.697184,0.697184,0.697184,0.697184,0.697184,0.697184,0.697184,0.697184,0.358696,0.358696,14.999998,14.999999,14.999999,14.999999,14.999997,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,2.020823,2.020823,2.020823,2.020823,2.020823,2.020823,2.020823,2.020823,0.697184,0.697184,15,15,, +9245,0,0.036658,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.127,4.164,0,0.785539,4.5,4.5,0.057882,0.057882,0.057882,0.057882,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.083666,0.119495,0.057882,0.057882,0.083666,0.119495,0.069642,0.110022,0.057882,0.057882,0.069642,0.110022,0.074708,0.177776,0.057882,0.057882,0.074708,0.177776,0.057882,0.057882,0.057882,0.057882,0.057882,0.057882,,,,,,,0.083666,0.119495,0.069642,0.110022,0.074708,0.177776,0.057882,0.057882,0.057882,0.057882,0.031698,0.042447,0.027491,0.039605,0.029011,0.059931,0.023963,0.023963,0.012715,0.012715,26.289049,18.40675,31.582969,19.991621,29.441418,12.372374,38,38,38,38,,,,,,,,,,,3096,3096,0.057882,0.057882,0.057882,0.057882,0.057882,0.057882,0.057882,0.057882,0.023963,0.023963,38,38,, +20474,-1,0.056235,0,1,0,2,4,,4,6,Smith/Jackman Cutoff,,4302030,0,0.056,0,1.205042,4.5,4.5,,0.088793,,0.088793,,38,,9000,,2043,,4500,,2903,,3096,,3092,,0.089377,,0.088793,,0.089377,,0.089318,,0.088793,,0.089318,,0.089563,,0.088793,,0.089563,,0.088793,,0.088793,,0.088793,,,,,,,,0.089377,,0.089318,,0.089563,,0.088793,,0.088793,,0.036935,,0.036918,,0.036991,,0.03676,,0.019505,,37.751622,,37.776383,,37.673235,,38,,38,,,,,,,,,,,,3096,,0.088793,,0.088793,,0.088793,,0.088793,,0.03676,,38,, +20776,0,0.040237,1,1,0,2,4,,4,6,Jackman,Rd,4301658,0,0.04,0,0.862222,4.5,4.5,0.063532,0.063532,0.063532,0.063532,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.063587,0.065647,0.063532,0.063532,0.063587,0.065647,0.063564,0.065529,0.063532,0.063532,0.063564,0.065529,0.063608,0.068982,0.063532,0.063532,0.063608,0.068982,0.063532,0.063532,0.063532,0.063532,0.063532,0.063532,,,,,,,0.063587,0.065647,0.063564,0.065529,0.063608,0.068982,0.063532,0.063532,0.063532,0.063532,0.026319,0.026937,0.026312,0.026901,0.026325,0.027937,0.026302,0.026302,0.013956,0.013956,37.967266,36.775724,37.980722,36.842223,37.954844,34.997737,38,38,38,38,,,,,,,,,,,3096,3096,0.063532,0.063532,0.063532,0.063532,0.063532,0.063532,0.063532,0.063532,0.026302,0.026302,38,38,, +9246,0,0.01066,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.116,4.127,0,0.228426,4.5,4.5,0.016831,0.016831,0.016831,0.016831,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.050036,0.034748,0.016831,0.016831,0.050036,0.034748,0.035364,0.031993,0.016831,0.016831,0.035364,0.031993,0.043546,0.051695,0.016831,0.016831,0.043546,0.051695,0.016831,0.016831,0.016831,0.016831,0.016831,0.016831,,,,,,,0.050036,0.034748,0.035364,0.031993,0.043546,0.051695,0.016831,0.016831,0.016831,0.016831,0.016929,0.012343,0.012528,0.011517,0.014982,0.017427,0.006968,0.006968,0.003697,0.003697,12.782746,18.40675,18.08606,19.991621,14.68786,12.372374,38,38,38,38,,,,,,,,,,,3096,3096,0.016831,0.016831,0.016831,0.016831,0.016831,0.016831,0.016831,0.016831,0.006968,0.006968,38,38,, +9066,0,0.464924,2,2,1,2,4,,4,6,Lewis,Ave,1226808,0.44,0.905,0,9.962662,4.5,4.5,0.734091,0.734091,0.734091,0.734091,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.734144,0.734322,0.734091,0.734091,0.734144,0.734322,0.734205,0.734227,0.734091,0.734091,0.734205,0.734227,0.735985,0.734779,0.734091,0.734091,0.735985,0.734779,0.734091,0.734091,0.734091,0.734091,0.734091,0.734091,,,,,,,0.734144,0.734322,0.734205,0.734227,0.735985,0.734779,0.734091,0.734091,0.734091,0.734091,0.303929,0.303983,0.303948,0.303955,0.304482,0.30412,0.303914,0.303914,0.161255,0.161255,37.997267,37.988063,37.994112,37.992934,37.902219,37.964407,38,38,38,38,,,,,,,,,,,6502,6502,0.734091,0.734091,0.734091,0.734091,0.734091,0.734091,0.734091,0.734091,0.303914,0.303914,38,38,, +8453,0,0.500806,1,1,0,2,4,,4,6,Lewis,Ave,1226808,2.927,3.428,0,10.731566,4.5,4.5,0.790747,0.790747,0.790747,0.790747,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.033727,0.840718,0.790747,0.790747,1.033727,0.840718,0.809326,0.805311,0.790747,0.790747,0.809326,0.805311,0.908246,1.187059,0.790747,0.790747,0.908246,1.187059,0.790747,0.790747,0.790747,0.790747,0.790747,0.790747,,,,,,,1.033727,0.840718,0.809326,0.805311,0.908246,1.187059,0.790747,0.790747,0.790747,0.790747,0.400263,0.342361,0.332943,0.331738,0.362619,0.446263,0.327369,0.327369,0.173701,0.173701,29.06801,35.741327,37.127649,37.312781,33.083977,25.313296,38,38,38,38,,,,,,,,,,,3096,3096,0.790747,0.790747,0.790747,0.790747,0.790747,0.790747,0.790747,0.790747,0.327369,0.327369,38,38,, +9197,0,0.544906,1,1,0,2,4,,4,6,Sterns,Rd,1223310,8.633,9.178,0,11.676558,4.5,4.5,0.860378,0.860378,0.860378,0.860378,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.463375,1.420598,0.860378,0.860378,1.463375,1.420598,1.338372,1.307354,0.860378,0.860378,1.338372,1.307354,1.621978,1.578387,0.860378,0.860378,1.621978,1.578387,0.860378,0.860378,0.860378,0.860378,0.860378,0.860378,,,,,,,1.463375,1.420598,1.338372,1.307354,1.621978,1.578387,0.860378,0.860378,0.860378,0.860378,0.537096,0.524263,0.499595,0.490289,0.584676,0.571599,0.356196,0.356196,0.188996,0.188996,22.34175,23.014502,24.428462,25.008043,20.157098,20.713778,38,38,38,38,,,,,,,,,,,3096,3096,0.860378,0.860378,0.860378,0.860378,0.860378,0.860378,0.860378,0.860378,0.356196,0.356196,38,38,, +9261,0,0.539322,1,1,0,2,5,,4,6,Temperance,Rd,1232206,5.97,6.51,0,11.556895,5.8,4.5,1.198493,1.198493,1.198493,1.198493,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.255911,1.23408,1.198493,1.198493,1.255911,1.23408,1.207223,1.204595,1.198493,1.198493,1.207223,1.204595,1.308081,1.349013,1.198493,1.198493,1.308081,1.349013,1.198493,1.198493,1.198493,1.198493,1.198493,1.198493,,,,,,,1.255911,1.23408,1.207223,1.204595,1.308081,1.349013,1.198493,1.198493,1.198493,1.198493,0.473851,0.467302,0.459245,0.458456,0.489502,0.501782,0.456626,0.456626,0.239099,0.239099,25.765601,26.221402,26.804751,26.863235,24.738003,23.987387,27,27,27,27,,,,,,,,,,,2580,2580,1.198493,1.198493,1.198493,1.198493,1.198493,1.198493,1.198493,1.198493,0.456626,0.456626,27,27,, +9264,0,0.21332,1,1,0,2,5,,5,6,Temperance,Rd,1232206,5.185,5.398,0,4.571137,3.7,5,0.426639,0.426639,0.426639,0.426639,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.513207,0.608329,0.426639,0.426639,0.513207,0.608329,0.4431,0.438691,0.426639,0.426639,0.4431,0.438691,0.790732,0.66195,0.426639,0.426639,0.790732,0.66195,0.426639,0.426639,0.426639,0.426639,0.426639,0.426639,,,,,,,0.513207,0.608329,0.4431,0.438691,0.790732,0.66195,0.426639,0.426639,0.426639,0.426639,0.19236,0.220896,0.171328,0.170005,0.275617,0.236982,0.166389,0.166389,0.087461,0.087461,24.939605,21.039907,28.885524,29.175831,16.186492,19.335584,30,30,30,30,,,,,,,,,,,2580,2580,0.426639,0.426639,0.426639,0.426639,0.426639,0.426639,0.426639,0.426639,0.166389,0.166389,30,30,, +31134,0,0.514659,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.028409,0.15,4,2.058636,2.058636,2.058636,2.058636,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,,,,,,,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,0.71023,0.71023,0.71023,0.71023,0.71023,0.71023,0.71023,0.71023,0.365408,0.365408,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,2.058636,0.71023,0.71023,15,15,, +31141,0,0.517839,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.096548,0.15,4,2.071356,2.071356,2.071356,2.071356,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,,,,,,,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,0.714618,0.714618,0.714618,0.714618,0.714618,0.714618,0.714618,0.714618,0.367666,0.367666,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,2.071356,0.714618,0.714618,15,15,, +31146,0,0.520849,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.161048,0.15,4,2.083396,2.083396,2.083396,2.083396,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,,,,,,,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,0.718772,0.718772,0.718772,0.718772,0.718772,0.718772,0.718772,0.718772,0.369803,0.369803,15,14.999997,15,15,14.999998,15,15,15,15,15,,,,,,,,,,,34400,34400,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,2.083396,0.718772,0.718772,15,15,, +9166,0,0.226113,1,1,0,2,4,,4,6,Sterns,Rd,1223310,7.928,8.154,0,4.845288,4.5,4.5,0.357021,0.357021,0.357021,0.357021,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.529401,0.494247,0.357021,0.357021,0.529401,0.494247,0.481778,0.476669,0.357021,0.357021,0.481778,0.476669,0.636839,0.662128,0.357021,0.357021,0.636839,0.662128,0.357021,0.357021,0.357021,0.357021,0.357021,0.357021,,,,,,,0.529401,0.494247,0.481778,0.476669,0.636839,0.662128,0.357021,0.357021,0.357021,0.357021,0.199521,0.188974,0.185234,0.183701,0.231752,0.239339,0.147807,0.147807,0.078426,0.078426,25.626726,27.449454,28.15987,28.461673,21.303357,20.489715,38,38,38,38,,,,,,,,,,,3096,3096,0.357021,0.357021,0.357021,0.357021,0.357021,0.357021,0.357021,0.357021,0.147807,0.147807,38,38,, +9040,0,0.562471,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,12.428,12.99,0,12.05294,4.5,4.5,0.888111,0.888111,0.888111,0.888111,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.3328,1.299767,0.888111,0.888111,1.3328,1.299767,1.149377,1.167891,0.888111,0.888111,1.149377,1.167891,1.517352,1.577415,0.888111,0.888111,1.517352,1.577415,0.888111,0.888111,0.888111,0.888111,0.888111,0.888111,,,,,,,1.3328,1.299767,1.149377,1.167891,1.517352,1.577415,0.888111,0.888111,0.888111,0.888111,0.501085,0.491175,0.446058,0.451612,0.55645,0.574469,0.367678,0.367678,0.195088,0.195088,25.321296,25.964843,29.362192,28.896724,22.241539,21.39464,38,38,38,38,,,,,,,,,,,3096,3096,0.888111,0.888111,0.888111,0.888111,0.888111,0.888111,0.888111,0.888111,0.367678,0.367678,38,38,, +31055,0,0.124536,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.668623,0.15,4,0.498143,0.498143,0.498143,0.498143,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,,,,,,,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.171859,0.171859,0.171859,0.171859,0.171859,0.171859,0.171859,0.171859,0.08842,0.08842,14.999997,14.999999,14.999998,14.999998,14.999994,14.999991,15,15,15,15,,,,,,,,,,,34400,34400,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.171859,0.171859,15,15,, +9152,0,0.243529,1,1,0,2,4,,4,6,Sterns,Rd,1223310,7.685,7.928,0,5.218483,4.5,4.5,0.38452,0.38452,0.38452,0.38452,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.518627,0.563446,0.38452,0.38452,0.518627,0.563446,0.51404,0.514058,0.38452,0.38452,0.51404,0.514058,0.660704,0.61547,0.38452,0.38452,0.660704,0.61547,0.38452,0.38452,0.38452,0.38452,0.38452,0.38452,,,,,,,0.518627,0.563446,0.51404,0.514058,0.660704,0.61547,0.38452,0.38452,0.38452,0.38452,0.199423,0.212869,0.198047,0.198053,0.242046,0.228476,0.159191,0.159191,0.084466,0.084466,28.173935,25.932854,28.425299,28.424305,22.115441,23.74082,38,38,38,38,,,,,,,,,,,3096,3096,0.38452,0.38452,0.38452,0.38452,0.38452,0.38452,0.38452,0.38452,0.159191,0.159191,38,38,, +8183,0,0.479222,1,1,0,2,4,,4,6,Sterns,Rd,1223310,8.154,8.633,0,10.269036,4.5,4.5,0.756666,0.756666,0.756666,0.756666,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.81899,1.734208,0.756666,0.756666,1.81899,1.734208,1.476506,1.454143,0.756666,0.756666,1.476506,1.454143,2.18044,2.12004,0.756666,0.756666,2.18044,2.12004,0.756666,0.756666,0.756666,0.756666,0.756666,0.756666,,,,,,,1.81899,1.734208,1.476506,1.454143,2.18044,2.12004,0.756666,0.756666,0.756666,0.756666,0.631957,0.606522,0.529212,0.522503,0.740392,0.722272,0.31326,0.31326,0.166214,0.166214,15.80729,16.58008,19.473881,19.773363,13.186925,13.562621,38,38,38,38,,,,,,,,,,,3096,3096,0.756666,0.756666,0.756666,0.756666,0.756666,0.756666,0.756666,0.756666,0.31326,0.31326,38,38,, +31135,0,0.499152,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.69611,0.15,4,1.996607,1.996607,1.996607,1.996607,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,,,,,,,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,0.688829,0.688829,0.688829,0.688829,0.688829,0.688829,0.688829,0.688829,0.354398,0.354398,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,1.996607,0.688829,0.688829,15,15,, +8642,0,0.135599,1,1,0,2,4,,4,6,Douglas,Rd,1226801,1.303,1.438,0,2.905683,4.5,4.5,0.214103,0.214103,0.214103,0.214103,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.222508,0.219335,0.214103,0.214103,0.222508,0.219335,0.216314,0.216654,0.214103,0.214103,0.216314,0.216654,0.231085,0.241215,0.214103,0.214103,0.231085,0.241215,0.214103,0.214103,0.214103,0.214103,0.214103,0.214103,,,,,,,0.222508,0.219335,0.216314,0.216654,0.231085,0.241215,0.214103,0.214103,0.214103,0.214103,0.09116,0.090208,0.089302,0.089404,0.093733,0.096772,0.088639,0.088639,0.047031,0.047031,36.564624,37.093474,37.611628,37.552507,35.207403,33.728953,38,38,38,38,,,,,,,,,,,3096,3096,0.214103,0.214103,0.214103,0.214103,0.214103,0.214103,0.214103,0.214103,0.088639,0.088639,38,38,, +31145,0,0.522958,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.206237,0.15,4,2.091831,2.091831,2.091831,2.091831,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,,,,,,,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,0.721682,0.721682,0.721682,0.721682,0.721682,0.721682,0.721682,0.721682,0.3713,0.3713,15,14.999998,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,2.091831,0.721682,0.721682,15,15,, +8733,0,0.466287,2,2,1,2,4,,4,6,Lewis,Ave,1226808,1.965,2.431,0,9.991859,4.5,4.5,0.736242,0.736242,0.736242,0.736242,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.740107,0.73816,0.736242,0.736242,0.740107,0.73816,0.73744,0.737234,0.736242,0.736242,0.73744,0.737234,0.74285,0.748791,0.736242,0.736242,0.74285,0.748791,0.736242,0.736242,0.736242,0.736242,0.736242,0.736242,,,,,,,0.740107,0.73816,0.73744,0.737234,0.74285,0.748791,0.736242,0.736242,0.736242,0.736242,0.305964,0.30538,0.305164,0.305102,0.306787,0.308569,0.304804,0.304804,0.161728,0.161728,37.801587,37.90125,37.938263,37.948893,37.661983,37.36319,38,38,38,38,,,,,,,,,,,6502,6502,0.736242,0.736242,0.736242,0.736242,0.736242,0.736242,0.736242,0.736242,0.304804,0.304804,38,38,, +9196,0,0.534647,1,1,0,2,4,,4,6,Sterns,Rd,1223310,9.617,10.151,0,11.456721,4.5,4.5,0.844179,0.844179,0.844179,0.844179,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.720748,1.465403,0.844179,0.844179,1.720748,1.465403,1.259178,1.240053,0.844179,0.844179,1.259178,1.240053,1.590245,1.842804,0.844179,0.844179,1.590245,1.842804,0.844179,0.844179,0.844179,0.844179,0.844179,0.844179,,,,,,,1.720748,1.465403,1.259178,1.240053,1.590245,1.842804,0.844179,0.844179,0.844179,0.844179,0.612461,0.535857,0.47399,0.468252,0.57331,0.649078,0.34949,0.34949,0.185438,0.185438,18.642366,21.890788,25.476001,25.868902,20.172253,17.40761,38,38,38,38,,,,,,,,,,,3096,3096,0.844179,0.844179,0.844179,0.844179,0.844179,0.844179,0.844179,0.844179,0.34949,0.34949,38,38,, +20419,0,0.434547,1,1,0,2,5,,4,6,Jackman,Rd,4300008,1.548,1.982,0,9.311723,5.8,4.5,0.96566,0.96566,0.96566,0.96566,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.083617,0.978749,0.96566,0.96566,1.083617,0.978749,0.969792,0.969338,0.96566,0.96566,0.969792,0.969338,1.003613,1.112791,0.96566,0.96566,1.003613,1.112791,0.96566,0.96566,0.96566,0.96566,0.96566,0.96566,,,,,,,1.083617,0.978749,0.969792,0.969338,1.003613,1.112791,0.96566,0.96566,0.96566,0.96566,0.403304,0.371843,0.369156,0.36902,0.379302,0.412056,0.367917,0.367917,0.192649,0.192649,24.060921,26.638934,26.884962,26.897557,25.978961,23.43012,27,27,27,27,,,,,,,,,,,2580,2580,0.96566,0.96566,0.96566,0.96566,0.96566,0.96566,0.96566,0.96566,0.367917,0.367917,27,27,, +31143,0,0.488084,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.458949,0.15,4,1.952337,1.952337,1.952337,1.952337,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,,,,,,,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,0.673556,0.673556,0.673556,0.673556,0.673556,0.673556,0.673556,0.673556,0.34654,0.34654,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,1.952337,0.673556,0.673556,15,15,, +31147,0,0.487032,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.436399,0.15,4,1.948128,1.948128,1.948128,1.948128,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,,,,,,,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,0.672104,0.672104,0.672104,0.672104,0.672104,0.672104,0.672104,0.672104,0.345793,0.345793,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,1.948128,0.672104,0.672104,15,15,, +8973,0,0.439023,1,1,0,2,4,,4,6,Sterns,Rd,1223310,9.178,9.617,0,9.407637,4.5,4.5,0.693194,0.693194,0.693194,0.693194,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.412985,1.264866,0.693194,0.693194,1.412985,1.264866,1.163362,1.148757,0.693194,0.693194,1.163362,1.148757,1.305823,1.513211,0.693194,0.693194,1.305823,1.513211,0.693194,0.693194,0.693194,0.693194,0.693194,0.693194,,,,,,,1.412985,1.264866,1.163362,1.148757,1.305823,1.513211,0.693194,0.693194,0.693194,0.693194,0.50292,0.458484,0.428033,0.423651,0.470771,0.532987,0.286982,0.286982,0.152272,0.152272,18.642366,20.825443,22.642458,22.930345,20.172253,17.40761,38,38,38,38,,,,,,,,,,,3096,3096,0.693194,0.693194,0.693194,0.693194,0.693194,0.693194,0.693194,0.693194,0.286982,0.286982,38,38,, +20637,0,0.559428,1,1,0,2,5,,4,6,Jackman,Rd,4300008,0.988,1.548,0,11.98775,5.8,4.5,1.243174,1.243174,1.243174,1.243174,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.26624,1.249686,1.243174,1.243174,1.26624,1.249686,1.243806,1.244288,1.243174,1.243174,1.243806,1.244288,1.265595,1.280122,1.243174,1.243174,1.265595,1.280122,1.243174,1.243174,1.243174,1.243174,1.243174,1.243174,,,,,,,1.26624,1.249686,1.243806,1.244288,1.265595,1.280122,1.243174,1.243174,1.243174,1.243174,0.480569,0.475603,0.473839,0.473984,0.480375,0.484734,0.473649,0.473649,0.248013,0.248013,26.508157,26.8593,26.986279,26.975823,26.521685,26.220711,27,27,27,27,,,,,,,,,,,2580,2580,1.243174,1.243174,1.243174,1.243174,1.243174,1.243174,1.243174,1.243174,0.473649,0.473649,27,27,, +31136,0,0.491473,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.531554,0.15,4,1.96589,1.96589,1.96589,1.96589,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,,,,,,,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,0.678232,0.678232,0.678232,0.678232,0.678232,0.678232,0.678232,0.678232,0.348945,0.348945,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,1.96589,0.678232,0.678232,15,15,, +31148,0,0.499986,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.713996,0.15,4,1.999946,1.999946,1.999946,1.999946,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,,,,,,,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,0.689981,0.689981,0.689981,0.689981,0.689981,0.689981,0.689981,0.689981,0.35499,0.35499,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,1.999946,0.689981,0.689981,15,15,, +9262,0,0.435927,1,1,0,2,5,,4,6,Temperance,Rd,1232206,5.535,5.97,0,9.341295,5.8,4.5,0.968727,0.968727,0.968727,0.968727,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.152759,1.199388,0.968727,0.968727,1.152759,1.199388,1.018197,1.002724,0.968727,0.968727,1.018197,1.002724,1.583631,1.539489,0.968727,0.968727,1.583631,1.539489,0.968727,0.968727,0.968727,0.968727,0.968727,0.968727,,,,,,,1.152759,1.199388,1.018197,1.002724,1.583631,1.539489,0.968727,0.968727,0.968727,0.968727,0.424295,0.438283,0.383926,0.379284,0.553556,0.540313,0.369085,0.369085,0.193261,0.193261,22.68958,21.807469,25.688171,26.084569,16.516234,16.989813,27,27,27,27,,,,,,,,,,,2580,2580,0.968727,0.968727,0.968727,0.968727,0.968727,0.968727,0.968727,0.968727,0.369085,0.369085,27,27,, +20232,0,0.631782,1,1,0,2,5,,4,6,Jackman,Rd,4300008,2.35,2.981,0,13.538187,5.8,4.5,1.40396,1.40396,1.40396,1.40396,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.403962,1.403983,1.40396,1.40396,1.403962,1.403983,1.403963,1.403963,1.40396,1.40396,1.403963,1.403963,1.404303,1.404244,1.40396,1.40396,1.404303,1.404244,1.40396,1.40396,1.40396,1.40396,1.40396,1.40396,,,,,,,1.403962,1.403983,1.403963,1.403963,1.404303,1.404244,1.40396,1.40396,1.40396,1.40396,0.534909,0.534916,0.53491,0.53491,0.535012,0.534994,0.534909,0.534909,0.28009,0.28009,26.999965,26.999569,26.999953,26.999949,26.993414,26.994543,27,27,27,27,,,,,,,,,,,2580,2580,1.40396,1.40396,1.40396,1.40396,1.40396,1.40396,1.40396,1.40396,0.534909,0.534909,27,27,, +9263,0,0.136753,1,1,0,2,5,,5,6,Temperance,Rd,1232206,5.398,5.535,0,2.930416,3.7,5,0.273505,0.273505,0.273505,0.273505,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.309244,0.308967,0.273505,0.273505,0.309244,0.308967,0.282078,0.27934,0.273505,0.273505,0.282078,0.27934,0.360594,0.356627,0.273505,0.273505,0.360594,0.356627,0.273505,0.273505,0.273505,0.273505,0.273505,0.273505,,,,,,,0.309244,0.308967,0.282078,0.27934,0.360594,0.356627,0.273505,0.273505,0.273505,0.273505,0.117389,0.117306,0.109239,0.108417,0.132794,0.131604,0.106667,0.106667,0.056069,0.056069,26.532972,26.556783,29.088238,29.373429,22.754602,23.007688,30,30,30,30,,,,,,,,,,,2580,2580,0.273505,0.273505,0.273505,0.273505,0.273505,0.273505,0.273505,0.273505,0.106667,0.106667,30,30,, +31144,0,0.50172,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.751134,0.15,4,2.006878,2.006878,2.006878,2.006878,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,,,,,,,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,0.692373,0.692373,0.692373,0.692373,0.692373,0.692373,0.692373,0.692373,0.356221,0.356221,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,2.006878,0.692373,0.692373,15,15,, +8924,0,0.530426,2,2,1,2,4,,4,6,Lewis,Ave,1226808,1.435,1.965,0,11.366281,4.5,4.5,0.837515,0.837515,0.837515,0.837515,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.838623,0.839474,0.837515,0.837515,0.838623,0.839474,0.838394,0.838354,0.837515,0.837515,0.838394,0.838354,0.842844,0.843411,0.837515,0.837515,0.842844,0.843411,0.837515,0.837515,0.837515,0.837515,0.837515,0.837515,,,,,,,0.838623,0.839474,0.838394,0.838354,0.842844,0.843411,0.837515,0.837515,0.837515,0.837515,0.347064,0.347319,0.346995,0.346983,0.34833,0.3485,0.346731,0.346731,0.183974,0.183974,37.949819,37.911321,37.960162,37.961973,37.759743,37.734386,38,38,38,38,,,,,,,,,,,6502,6502,0.837515,0.837515,0.837515,0.837515,0.837515,0.837515,0.837515,0.837515,0.346731,0.346731,38,38,, +9185,0,0.413229,1,1,0,2,4,,4,6,Lewis,Ave,1226808,2.514,2.927,0,8.854909,4.5,4.5,0.652467,0.652467,0.652467,0.652467,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.844903,0.712907,0.652467,0.652467,0.844903,0.712907,0.681714,0.677537,0.652467,0.652467,0.681714,0.677537,0.803904,1.04827,0.652467,0.652467,0.803904,1.04827,0.652467,0.652467,0.652467,0.652467,0.652467,0.652467,,,,,,,0.844903,0.712907,0.681714,0.677537,0.803904,1.04827,0.652467,0.652467,0.652467,0.652467,0.327852,0.288253,0.278895,0.277642,0.315552,0.388862,0.270121,0.270121,0.143325,0.143325,29.345086,34.778355,36.369722,36.593954,30.841682,23.652052,38,38,38,38,,,,,,,,,,,3096,3096,0.652467,0.652467,0.652467,0.652467,0.652467,0.652467,0.652467,0.652467,0.270121,0.270121,38,38,, +8558,0,0.083417,1,1,0,2,4,,4,6,Lewis,Ave,1226808,2.431,2.514,0,1.787497,4.5,4.5,0.13171,0.13171,0.13171,0.13171,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.247495,0.216962,0.13171,0.13171,0.247495,0.216962,0.171292,0.16443,0.13171,0.13171,0.171292,0.16443,0.331576,0.382182,0.13171,0.13171,0.331576,0.382182,0.13171,0.13171,0.13171,0.13171,0.13171,0.13171,,,,,,,0.247495,0.216962,0.171292,0.16443,0.331576,0.382182,0.13171,0.13171,0.13171,0.13171,0.089263,0.080104,0.066403,0.064344,0.114488,0.12967,0.054528,0.054528,0.028932,0.028932,20.222619,23.068524,29.219103,30.438386,15.094557,13.095828,38,38,38,38,,,,,,,,,,,3096,3096,0.13171,0.13171,0.13171,0.13171,0.13171,0.13171,0.13171,0.13171,0.054528,0.054528,38,38,, +8735,0,1.001374,1,1,0,2,4,,5,6,Samaria,Rd,1226710,5.065,6.066,0,21.458012,3,4,1.502061,1.502061,1.502061,1.502061,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.770126,1.593056,1.502061,1.502061,1.770126,1.593056,1.590414,1.583871,1.502061,1.502061,1.590414,1.583871,1.734612,1.869739,1.502061,1.502061,1.734612,1.869739,1.502061,1.502061,1.502061,1.502061,1.502061,1.502061,,,,,,,1.770126,1.593056,1.590414,1.583871,1.734612,1.869739,1.502061,1.502061,1.502061,1.502061,0.711285,0.658164,0.657371,0.655409,0.700631,0.741169,0.630866,0.630866,0.33546,0.33546,33.942462,37.715214,37.777867,37.933909,34.637385,32.134135,40,40,40,40,,,,,,,,,,,3096,3096,1.502061,1.502061,1.502061,1.502061,1.502061,1.502061,1.502061,1.502061,0.630866,0.630866,40,40,, +8743,0,0.760867,1,1,0,2,4,,5,6,Lewis,Ave,1226808,3.977,4.737,0,16.304295,3,4,1.141301,1.141301,1.141301,1.141301,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.223341,1.190344,1.141301,1.141301,1.223341,1.190344,1.150241,1.149019,1.141301,1.141301,1.150241,1.149019,1.263483,1.37675,1.141301,1.141301,1.263483,1.37675,1.141301,1.141301,1.141301,1.141301,1.141301,1.141301,,,,,,,1.223341,1.190344,1.150241,1.149019,1.263483,1.37675,1.141301,1.141301,1.141301,1.141301,0.503958,0.494059,0.482028,0.481662,0.516001,0.549981,0.479346,0.479346,0.25489,0.25489,37.31751,38.351959,39.689095,39.731317,36.13189,33.15928,40,40,40,40,,,,,,,,,,,3096,3096,1.141301,1.141301,1.141301,1.141301,1.141301,1.141301,1.141301,1.141301,0.479346,0.479346,40,40,, +31139,0,1.01141,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.673066,0.15,4,4.045639,4.045639,4.045639,4.045639,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,,,,,,,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,1.395745,1.395745,1.395745,1.395745,1.395745,1.395745,1.395745,1.395745,0.718101,0.718101,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,4.045639,1.395745,1.395745,15,15,, +31140,0,0.990977,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.235219,0.15,4,3.963907,3.963907,3.963907,3.963907,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,,,,,,,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,1.367548,1.367548,1.367548,1.367548,1.367548,1.367548,1.367548,1.367548,0.703594,0.703594,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,3.963907,1.367548,1.367548,15,15,, +31138,0,0.498184,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.675366,0.15,4,1.992735,1.992735,1.992735,1.992735,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,,,,,,,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,0.687494,0.687494,0.687494,0.687494,0.687494,0.687494,0.687494,0.687494,0.35371,0.35371,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,1.992735,0.687494,0.687494,15,15,, +9075,0,0.549111,1,1,0,2,4,,5,6,Lewis,Ave,1226808,3.428,3.977,0,11.766654,3,4,0.823666,0.823666,0.823666,0.823666,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.858637,0.8645,0.823666,0.823666,0.858637,0.8645,0.827428,0.826843,0.823666,0.823666,0.827428,0.826843,0.9263,0.960859,0.823666,0.823666,0.9263,0.960859,0.823666,0.823666,0.823666,0.823666,0.823666,0.823666,,,,,,,0.858637,0.8645,0.827428,0.826843,0.9263,0.960859,0.823666,0.823666,0.823666,0.823666,0.356431,0.35819,0.347068,0.346893,0.37673,0.387098,0.34594,0.34594,0.183952,0.183952,38.370845,38.11064,39.818139,39.846275,35.568006,34.288717,40,40,40,40,,,,,,,,,,,3096,3096,0.823666,0.823666,0.823666,0.823666,0.823666,0.823666,0.823666,0.823666,0.34594,0.34594,40,40,, +8575,0,0.68364,1,1,0,2,4,,5,6,Lewis,Ave,1226808,4.737,5.421,0,14.649425,3,4,1.02546,1.02546,1.02546,1.02546,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.057354,1.031346,1.02546,1.02546,1.057354,1.031346,1.026495,1.026442,1.02546,1.02546,1.026495,1.026442,1.045456,1.102865,1.02546,1.02546,1.045456,1.102865,1.02546,1.02546,1.02546,1.02546,1.02546,1.02546,,,,,,,1.057354,1.031346,1.026495,1.026442,1.045456,1.102865,1.02546,1.02546,1.02546,1.02546,0.440261,0.432459,0.431004,0.430988,0.436692,0.453915,0.430693,0.430693,0.229019,0.229019,38.793446,39.771715,39.95964,39.961741,39.23491,37.192565,40,40,40,40,,,,,,,,,,,3096,3096,1.02546,1.02546,1.02546,1.02546,1.02546,1.02546,1.02546,1.02546,0.430693,0.430693,40,40,, +34029,0,1.405816,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.623263,5.623263,5.623263,5.623263,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.623264,5.623264,5.623263,5.623263,5.623264,5.623264,5.623263,5.623263,5.623263,5.623263,5.623263,5.623263,5.623264,5.623264,5.623263,5.623263,5.623264,5.623264,5.623263,5.623263,5.623263,5.623263,5.623263,5.623263,,,,,,,5.623264,5.623264,5.623263,5.623263,5.623264,5.623264,5.623263,5.623263,5.623263,5.623263,1.940026,1.940026,1.940026,1.940026,1.940026,1.940026,1.940026,1.940026,0.998129,0.998129,15,14.999999,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,5.623263,5.623263,5.623263,5.623263,5.623263,5.623263,5.623263,5.623263,1.940026,1.940026,15,15,, +34030,0,1.304565,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.218259,5.218259,5.218259,5.218259,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.218264,5.218264,5.218259,5.218259,5.218264,5.218264,5.218262,5.218262,5.218259,5.218259,5.218262,5.218262,5.218266,5.218266,5.218259,5.218259,5.218266,5.218266,5.218259,5.218259,5.218259,5.218259,5.218259,5.218259,,,,,,,5.218264,5.218264,5.218262,5.218262,5.218266,5.218266,5.218259,5.218259,5.218259,5.218259,1.800301,1.800301,1.8003,1.8003,1.800301,1.800301,1.800299,1.800299,0.926241,0.926241,14.999987,14.999985,14.999992,14.999992,14.999981,14.999981,15,15,15,15,,,,,,,,,,,34400,34400,5.218259,5.218259,5.218259,5.218259,5.218259,5.218259,5.218259,5.218259,1.800299,1.800299,15,15,, +9240,0,0.975547,1,1,0,2,5,,4,6,La Voy,Rd,1232401,6.116,7.091,0,20.90458,5.8,4.5,2.167882,2.167882,2.167882,2.167882,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.735955,2.227249,2.167882,2.167882,2.735955,2.227249,2.172196,2.169867,2.167882,2.167882,2.172196,2.169867,2.364781,2.881726,2.167882,2.167882,2.364781,2.881726,2.167882,2.167882,2.167882,2.167882,2.167882,2.167882,,,,,,,2.735955,2.227249,2.172196,2.169867,2.364781,2.881726,2.167882,2.167882,2.167882,2.167882,0.996385,0.843773,0.827257,0.826558,0.885033,1.040116,0.825963,0.825963,0.432493,0.432493,21.393929,26.280325,26.946382,26.975308,24.751899,20.311725,27,27,27,27,,,,,,,,,,,2580,2580,2.167882,2.167882,2.167882,2.167882,2.167882,2.167882,2.167882,2.167882,0.825963,0.825963,27,27,, +20229,0,0.391632,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,0.428,0.819,0,8.392124,3.7,5,0.587449,0.587449,0.587449,0.587449,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.590552,0.59927,0.587449,0.587449,0.590552,0.59927,0.606499,0.605596,0.587449,0.587449,0.606499,0.605596,0.593045,0.590753,0.587449,0.587449,0.593045,0.590753,0.587449,0.587449,0.587449,0.587449,0.587449,0.587449,,,,,,,0.590552,0.59927,0.606499,0.605596,0.593045,0.590753,0.587449,0.587449,0.587449,0.587449,0.24766,0.250275,0.252444,0.252173,0.248407,0.24772,0.246728,0.246728,0.131197,0.131197,39.789782,39.210938,38.743573,38.801372,39.622532,39.776235,40,40,40,40,,,,,,,,,,,3784,3784,0.587449,0.587449,0.587449,0.587449,0.587449,0.587449,0.587449,0.587449,0.246728,0.246728,40,40,, +31125,0,0.279335,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.985749,0.15,4,1.11734,1.11734,1.11734,1.11734,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.11734,1.11734,1.11734,1.11734,1.11734,1.11734,1.11734,1.11734,1.11734,1.11734,1.11734,1.11734,1.117341,1.117341,1.11734,1.11734,1.117341,1.117341,1.11734,1.11734,1.11734,1.11734,1.11734,1.11734,,,,,,,1.11734,1.11734,1.11734,1.11734,1.117341,1.117341,1.11734,1.11734,1.11734,1.11734,0.385482,0.385482,0.385482,0.385482,0.385482,0.385482,0.385482,0.385482,0.198328,0.198328,14.999996,14.999995,14.999994,14.999995,14.999989,14.999989,15,15,15,15,,,,,,,,,,,34400,34400,1.11734,1.11734,1.11734,1.11734,1.11734,1.11734,1.11734,1.11734,0.385482,0.385482,15,15,, +20416,0,0.427862,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,0,0.428,0,9.168463,3.7,5,0.641792,0.641792,0.641792,0.641792,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.684657,0.690434,0.641792,0.641792,0.684657,0.690434,0.665453,0.66301,0.641792,0.641792,0.665453,0.66301,0.710593,0.707711,0.641792,0.641792,0.710593,0.707711,0.641792,0.641792,0.641792,0.641792,0.641792,0.641792,,,,,,,0.684657,0.690434,0.665453,0.66301,0.710593,0.707711,0.641792,0.641792,0.641792,0.641792,0.282412,0.284145,0.276651,0.275918,0.290193,0.289328,0.269553,0.269553,0.143334,0.143334,37.495682,37.181958,38.577787,38.719907,36.127164,36.274284,40,40,40,40,,,,,,,,,,,3784,3784,0.641792,0.641792,0.641792,0.641792,0.641792,0.641792,0.641792,0.641792,0.269553,0.269553,40,40,, +9241,0,0.060637,1,1,0,2,4,,4,6,Smith,Rd,1232401,6.055,6.116,0,1.299369,4.5,4.5,0.095743,0.095743,0.095743,0.095743,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.251863,0.193895,0.095743,0.095743,0.251863,0.193895,0.164368,0.157015,0.095743,0.095743,0.164368,0.157015,0.201499,0.262285,0.095743,0.095743,0.201499,0.262285,0.095743,0.095743,0.095743,0.095743,0.095743,0.095743,,,,,,,0.251863,0.193895,0.164368,0.157015,0.201499,0.262285,0.095743,0.095743,0.095743,0.095743,0.086473,0.069083,0.060225,0.058019,0.071364,0.0896,0.039638,0.039638,0.021032,0.021032,14.445305,18.763938,22.134662,23.171267,18.055868,13.871302,38,38,38,38,,,,,,,,,,,3096,3096,0.095743,0.095743,0.095743,0.095743,0.095743,0.095743,0.095743,0.095743,0.039638,0.039638,38,38,, +31123,0,0.255047,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.46529,0.15,4,1.020187,1.020187,1.020187,1.020187,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.020188,1.020188,1.020187,1.020187,1.020188,1.020188,1.020188,1.020188,1.020187,1.020187,1.020188,1.020188,1.020188,1.020188,1.020187,1.020187,1.020188,1.020188,1.020187,1.020187,1.020187,1.020187,1.020187,1.020187,,,,,,,1.020188,1.020188,1.020188,1.020188,1.020188,1.020188,1.020187,1.020187,1.020187,1.020187,0.351965,0.351965,0.351965,0.351965,0.351965,0.351965,0.351965,0.351965,0.181083,0.181083,14.999999,14.999999,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,1.020187,1.020187,1.020187,1.020187,1.020187,1.020187,1.020187,1.020187,0.351965,0.351965,15,15,, +9414,0,0.27388,1,1,0,2,4,,4,6,Dixie,Hwy,1227004,0.057,0.331,0,5.86886,4.5,4.5,0.432442,0.432442,0.432442,0.432442,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.435394,0.435953,0.432442,0.432442,0.435394,0.435953,0.433769,0.433807,0.432442,0.432442,0.433769,0.433807,0.436652,0.436211,0.432442,0.432442,0.436652,0.436211,0.432442,0.432442,0.432442,0.432442,0.432442,0.432442,,,,,,,0.435394,0.435953,0.433769,0.433807,0.436652,0.436211,0.432442,0.432442,0.432442,0.432442,0.179917,0.180084,0.179429,0.179441,0.180294,0.180162,0.179031,0.179031,0.094993,0.094993,37.742389,37.694004,37.883773,37.880453,37.633665,37.671723,38,38,38,38,,,,,,,,,,,3096,3096,0.432442,0.432442,0.432442,0.432442,0.432442,0.432442,0.432442,0.432442,0.179031,0.179031,38,38,, +8732,0,2.013543,1,1,0,2,4,,5,6,Lakeside,Rd,1226710,7.063,9.075,0,43.147348,3,4,3.020314,3.020314,3.020314,3.020314,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,5.241522,3.314705,3.020314,3.020314,5.241522,3.314705,3.396407,3.340793,3.020314,3.020314,3.396407,3.340793,3.880177,5.448527,3.020314,3.020314,3.880177,5.448527,3.020314,3.020314,3.020314,3.020314,3.020314,3.020314,,,,,,,5.241522,3.314705,3.396407,3.340793,3.880177,5.448527,3.020314,3.020314,3.020314,3.020314,1.934894,1.356849,1.38136,1.364676,1.526491,1.996996,1.268532,1.268532,0.674537,0.674537,23.04914,36.447455,35.570702,36.162847,31.135843,22.173436,40,40,40,40,,,,,,,,,,,3096,3096,3.020314,3.020314,3.020314,3.020314,3.020314,3.020314,3.020314,3.020314,1.268532,1.268532,40,40,, +8969,0,0.633538,1,1,0,2,4,,4,6,Sterns,Rd,1223310,11.938,12.571,0,13.575816,4.5,4.5,1.000323,1.000323,1.000323,1.000323,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.66645,1.839024,1.000323,1.000323,2.66645,1.839024,1.651707,1.656545,1.000323,1.000323,1.651707,1.656545,2.133031,2.823794,1.000323,1.000323,2.133031,2.823794,1.000323,1.000323,1.000323,1.000323,1.000323,1.000323,,,,,,,2.66645,1.839024,1.651707,1.656545,2.133031,2.823794,1.000323,1.000323,1.000323,1.000323,0.913972,0.665744,0.609549,0.611,0.753946,0.961175,0.414134,0.414134,0.219738,0.219738,14.255765,20.66981,23.013938,22.946725,17.820785,13.461425,38,38,38,38,,,,,,,,,,,3096,3096,1.000323,1.000323,1.000323,1.000323,1.000323,1.000323,1.000323,1.000323,0.414134,0.414134,38,38,, +9259,0,1.710684,1,1,0,2,5,,5,6,Temperance,Rd,1232206,7.517,9.227,0,36.657513,3.7,5,3.421368,3.421368,3.421368,3.421368,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.825673,3.693523,3.421368,3.421368,5.825673,3.693523,3.501798,3.475114,3.421368,3.421368,3.501798,3.475114,4.655631,6.133762,3.421368,3.421368,4.655631,6.133762,3.421368,3.421368,3.421368,3.421368,3.421368,3.421368,,,,,,,5.825673,3.693523,3.501798,3.475114,4.655631,6.133762,3.421368,3.421368,3.421368,3.421368,2.055625,1.41598,1.358462,1.350457,1.704613,2.148052,1.334333,1.334333,0.70138,0.70138,17.618745,27.789468,29.310956,29.536024,22.046641,16.733782,30,30,30,30,,,,,,,,,,,2580,2580,3.421368,3.421368,3.421368,3.421368,3.421368,3.421368,3.421368,3.421368,1.334333,1.334333,30,30,, +9411,0,1.530566,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,2.103,3.633,0,32.797832,3,4,2.295848,2.295848,2.295848,2.295848,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.495613,2.304875,2.295848,2.295848,2.495613,2.304875,2.296473,2.296046,2.295848,2.295848,2.296473,2.296046,2.340264,2.555074,2.295848,2.295848,2.340264,2.555074,2.295848,2.295848,2.295848,2.295848,2.295848,2.295848,,,,,,,2.495613,2.304875,2.296473,2.296046,2.340264,2.555074,2.295848,2.295848,2.295848,2.295848,1.024186,0.966964,0.964444,0.964316,0.977581,1.042024,0.964256,0.964256,0.512739,0.512739,36.798151,39.843344,39.989121,39.996548,39.24085,35.941795,40,40,40,40,,,,,,,,,,,3096,3096,2.295848,2.295848,2.295848,2.295848,2.295848,2.295848,2.295848,2.295848,0.964256,0.964256,40,40,, +20466,0,0.544706,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,3.3,3.845,0,11.67228,1.7,4,0.653648,0.653648,0.653648,0.653648,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.743106,0.783646,0.653648,0.653648,0.743106,0.783646,0.755873,0.767306,0.653648,0.653648,0.755873,0.767306,0.800124,0.82434,0.653648,0.653648,0.800124,0.82434,0.653648,0.653648,0.653648,0.653648,0.653648,0.653648,,,,,,,0.743106,0.783646,0.755873,0.767306,0.800124,0.82434,0.653648,0.653648,0.653648,0.653648,0.320979,0.333141,0.324809,0.328239,0.338084,0.345349,0.294141,0.294141,0.157965,0.157965,43.980792,41.705551,43.237929,42.593684,40.846664,39.646719,50,50,50,50,,,,,,,,,,,3096,3096,0.653648,0.653648,0.653648,0.653648,0.653648,0.653648,0.653648,0.653648,0.294141,0.294141,50,50,, +20702,0,1.649881,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,1.651,3.3,0,35.354596,1.7,4,1.979857,1.979857,1.979857,1.979857,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.16964,2.202992,1.979857,1.979857,2.16964,2.202992,2.215653,2.233422,1.979857,1.979857,2.215653,2.233422,2.192581,2.26607,1.979857,1.979857,2.192581,2.26607,1.979857,1.979857,1.979857,1.979857,1.979857,1.979857,,,,,,,2.16964,2.202992,2.215653,2.233422,2.192581,2.26607,1.979857,1.979857,1.979857,1.979857,0.947871,0.957876,0.961674,0.967005,0.954753,0.976799,0.890936,0.890936,0.478466,0.478466,45.626404,44.935641,44.678874,44.323399,45.14902,43.68483,50,50,50,50,,,,,,,,,,,3096,3096,1.979857,1.979857,1.979857,1.979857,1.979857,1.979857,1.979857,1.979857,0.890936,0.890936,50,50,, +31103,0,1.376516,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,29.496763,0.15,4,5.506063,5.506063,5.506063,5.506063,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,,,,,,,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,1.899592,1.899592,1.899592,1.899592,1.899592,1.899592,1.899592,1.899592,0.977326,0.977326,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,5.506063,1.899592,1.899592,15,15,, +31131,0,1.016112,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.773838,0.15,4,4.06445,4.06445,4.06445,4.06445,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,,,,,,,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,1.402235,1.402235,1.402235,1.402235,1.402235,1.402235,1.402235,1.402235,0.72144,0.72144,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,4.06445,1.402235,1.402235,15,15,, +9195,0,0.785067,1,1,0,2,4,,4,6,Sterns,Rd,1223310,11.153,11.938,0,16.822874,4.5,4.5,1.23958,1.23958,1.23958,1.23958,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.407394,1.592582,1.23958,1.23958,2.407394,1.592582,1.516384,1.548975,1.23958,1.23958,1.516384,1.548975,1.735761,2.521937,1.23958,1.23958,1.735761,2.521937,1.23958,1.23958,1.23958,1.23958,1.23958,1.23958,,,,,,,2.407394,1.592582,1.516384,1.548975,1.735761,2.521937,1.23958,1.23958,1.23958,1.23958,0.86353,0.619087,0.596227,0.606004,0.66204,0.897893,0.513186,0.513186,0.272294,0.272294,19.566403,29.577156,31.063412,30.409826,27.137404,18.677726,38,38,38,38,,,,,,,,,,,3096,3096,1.23958,1.23958,1.23958,1.23958,1.23958,1.23958,1.23958,1.23958,0.513186,0.513186,38,38,, +31133,0,0.983647,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.078151,0.15,4,3.934588,3.934588,3.934588,3.934588,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,,,,,,,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,1.357433,1.357433,1.357433,1.357433,1.357433,1.357433,1.357433,1.357433,0.698389,0.698389,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,3.934588,1.357433,1.357433,15,15,, +31120,0,1.489656,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,31.921199,0.15,4,5.958624,5.958624,5.958624,5.958624,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,,,,,,,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,2.055725,2.055725,2.055725,2.055725,2.055725,2.055725,2.055725,2.055725,1.057656,1.057656,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,5.958624,2.055725,2.055725,15,15,, +31119,0,0.514531,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.025671,0.15,4,2.058125,2.058125,2.058125,2.058125,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,,,,,,,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,0.710053,0.710053,0.710053,0.710053,0.710053,0.710053,0.710053,0.710053,0.365317,0.365317,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,2.058125,0.710053,0.710053,15,15,, +8564,0,0.877267,1,1,0,2,4,,5,6,Sterns,Rd,1223310,12.571,13.448,0,18.798568,3,4,1.3159,1.3159,1.3159,1.3159,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.484575,1.875462,1.3159,1.3159,2.484575,1.875462,1.735345,1.70403,1.3159,1.3159,1.735345,1.70403,2.177575,2.467146,1.3159,1.3159,2.177575,2.467146,1.3159,1.3159,1.3159,1.3159,1.3159,1.3159,,,,,,,2.484575,1.875462,1.735345,1.70403,2.177575,2.467146,1.3159,1.3159,1.3159,1.3159,0.903281,0.720547,0.678512,0.669117,0.81118,0.898052,0.552678,0.552678,0.293884,0.293884,21.185108,28.065608,30.331713,30.889127,24.171839,21.334769,40,40,40,40,,,,,,,,,,,3096,3096,1.3159,1.3159,1.3159,1.3159,1.3159,1.3159,1.3159,1.3159,0.552678,0.552678,40,40,, +31104,0,0.502493,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.767715,0.15,4,2.009974,2.009974,2.009974,2.009974,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,,,,,,,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,0.693441,0.693441,0.693441,0.693441,0.693441,0.693441,0.693441,0.693441,0.35677,0.35677,14.999999,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,2.009974,0.693441,0.693441,15,15,, +34006,0,1.121261,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.027011,0.15,4,4.485042,4.485042,4.485042,4.485042,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,,,,,,,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,1.54734,1.54734,1.54734,1.54734,1.54734,1.54734,1.54734,1.54734,0.796095,0.796095,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,4.485042,1.54734,1.54734,15,15,, +9412,0,0.667356,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,1.435,2.103,0,14.300482,3,4,1.001034,1.001034,1.001034,1.001034,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.155403,1.03698,1.001034,1.001034,1.155403,1.03698,1.009239,1.008002,1.001034,1.001034,1.009239,1.008002,1.090255,1.274692,1.001034,1.001034,1.090255,1.274692,1.001034,1.001034,1.001034,1.001034,1.001034,1.001034,,,,,,,1.155403,1.03698,1.009239,1.008002,1.090255,1.274692,1.001034,1.001034,1.001034,1.001034,0.466745,0.431218,0.422896,0.422525,0.447201,0.502532,0.420434,0.420434,0.223564,0.223564,34.655754,38.61342,39.674799,39.723468,36.726593,31.412568,40,40,40,40,,,,,,,,,,,3096,3096,1.001034,1.001034,1.001034,1.001034,1.001034,1.001034,1.001034,1.001034,0.420434,0.420434,40,40,, +31105,0,0.656485,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,14.067535,0.15,4,2.62594,2.62594,2.62594,2.62594,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,,,,,,,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,0.905949,0.905949,0.905949,0.905949,0.905949,0.905949,0.905949,0.905949,0.466104,0.466104,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,2.62594,0.905949,0.905949,15,15,, +8515,0,1.06916,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,0,1.069,0,22.910569,5.8,6,2.13832,2.13832,2.13832,2.13832,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,,,,,,,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,0.833945,0.833945,0.833945,0.833945,0.833945,0.833945,0.833945,0.833945,0.438356,0.438356,30,30,30,30,29.999997,29.999992,30,30,30,30,,,,,,,,,,,2236,2236,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,2.13832,0.833945,0.833945,30,30,, +8560,0,0.320216,1,1,0,2,4,,5,6,Lakeside,Rd,1226710,9.075,9.395,0,6.861781,3,4,0.480325,0.480325,0.480325,0.480325,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.945636,0.550379,0.480325,0.480325,0.945636,0.550379,0.538339,0.532673,0.480325,0.480325,0.538339,0.532673,0.667269,0.987417,0.480325,0.480325,0.667269,0.987417,0.480325,0.480325,0.480325,0.480325,0.480325,0.480325,,,,,,,0.945636,0.550379,0.538339,0.532673,0.667269,0.987417,0.480325,0.480325,0.480325,0.480325,0.34133,0.222753,0.219141,0.217441,0.25782,0.353864,0.201736,0.201736,0.107273,0.107273,20.317528,34.908638,35.689406,36.069018,28.793463,19.457828,40,40,40,40,,,,,,,,,,,3096,3096,0.480325,0.480325,0.480325,0.480325,0.480325,0.480325,0.480325,0.480325,0.201736,0.201736,40,40,, +9258,0,0.137554,1,1,0,2,6,,5,6,Erie,Rd,1232207,9.401,9.538,0,2.947592,5.8,6,0.275109,0.275109,0.275109,0.275109,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,,,,,,,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.107292,0.107292,0.107292,0.107292,0.107292,0.107292,0.107292,0.107292,0.056397,0.056397,30,30,30,30,29.999992,29.999997,30,30,30,30,,,,,,,,,,,2236,2236,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.275109,0.107292,0.107292,30,30,, +20080,0,0.903206,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,4.941,5.844,0,19.354419,1.7,4,1.083847,1.083847,1.083847,1.083847,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.306541,1.221354,1.083847,1.083847,1.306541,1.221354,1.206473,1.183933,1.083847,1.083847,1.206473,1.183933,1.291373,1.327894,1.083847,1.083847,1.291373,1.327894,1.083847,1.083847,1.083847,1.083847,1.083847,1.083847,,,,,,,1.306541,1.221354,1.206473,1.183933,1.291373,1.327894,1.083847,1.083847,1.083847,1.083847,0.554539,0.528983,0.524519,0.517757,0.549989,0.560945,0.487731,0.487731,0.26193,0.26193,41.477746,44.370731,44.918007,45.773193,41.964935,40.810754,50,50,50,50,,,,,,,,,,,3096,3096,1.083847,1.083847,1.083847,1.083847,1.083847,1.083847,1.083847,1.083847,0.487731,0.487731,50,50,, +20277,0,1.096881,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,3.845,4.941,0,23.504601,1.7,4,1.316258,1.316258,1.316258,1.316258,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.613754,2.471142,1.316258,1.316258,3.613754,2.471142,2.189461,2.15174,1.316258,1.316258,2.189461,2.15174,2.92004,3.862767,1.316258,1.316258,2.92004,3.862767,1.316258,1.316258,1.316258,1.316258,1.316258,1.316258,,,,,,,3.613754,2.471142,2.189461,2.15174,2.92004,3.862767,1.316258,1.316258,1.316258,1.316258,1.281565,0.938781,0.854277,0.842961,1.073451,1.356269,0.592316,0.592316,0.318096,0.318096,18.211776,26.632582,30.058947,30.585885,22.538351,17.037757,50,50,50,50,,,,,,,,,,,3096,3096,1.316258,1.316258,1.316258,1.316258,1.316258,1.316258,1.316258,1.316258,0.592316,0.592316,50,50,, +31114,0,0.333767,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,7.152151,0.15,4,1.335068,1.335068,1.335068,1.335068,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,,,,,,,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,0.460598,0.460599,0.460598,0.460598,0.460599,0.460598,0.460598,0.460598,0.236975,0.236975,15,14.999999,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,1.335068,0.460598,0.460598,15,15,, +31117,0,0.417884,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.954659,0.15,4,1.671536,1.671536,1.671536,1.671536,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,,,,,,,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,0.57668,0.57668,0.57668,0.57668,0.57668,0.57668,0.57668,0.57668,0.296698,0.296698,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,1.671536,0.57668,0.57668,15,15,, +9257,0,0.579644,1,1,0,2,6,,5,6,Erie,Rd,1232207,9.538,10.118,0,12.420934,5.8,6,1.159287,1.159287,1.159287,1.159287,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.61686,1.276112,1.159287,1.159287,1.61686,1.276112,1.227852,1.248069,1.159287,1.159287,1.227852,1.248069,1.368197,1.784947,1.159287,1.159287,1.368197,1.784947,1.159287,1.159287,1.159287,1.159287,1.159287,1.159287,,,,,,,1.61686,1.276112,1.227852,1.248069,1.368197,1.784947,1.159287,1.159287,1.159287,1.159287,0.589394,0.487169,0.472691,0.478756,0.514795,0.63982,0.452122,0.452122,0.237654,0.237654,21.509979,27.25358,28.32476,27.865944,25.419299,19.484401,30,30,30,30,,,,,,,,,,,2236,2236,1.159287,1.159287,1.159287,1.159287,1.159287,1.159287,1.159287,1.159287,0.452122,0.452122,30,30,, +9410,0,1.083437,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,3.633,4.716,0,23.216504,3,4,1.625155,1.625155,1.625155,1.625155,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.766562,1.631545,1.625155,1.625155,1.766562,1.631545,1.625597,1.625296,1.625155,1.625155,1.625597,1.625296,1.656595,1.808652,1.625155,1.625155,1.656595,1.808652,1.625155,1.625155,1.625155,1.625155,1.625155,1.625155,,,,,,,1.766562,1.631545,1.625597,1.625296,1.656595,1.808652,1.625155,1.625155,1.625155,1.625155,0.724987,0.684482,0.682698,0.682607,0.691997,0.737614,0.682565,0.682565,0.362951,0.362951,36.798151,39.843344,39.989121,39.996548,39.24085,35.941795,40,40,40,40,,,,,,,,,,,3096,3096,1.625155,1.625155,1.625155,1.625155,1.625155,1.625155,1.625155,1.625155,0.682565,0.682565,40,40,, +8708,0,0.292737,1,1,0,2,4,,5,6,Lakeside,Rd,1226710,9.395,9.688,0,6.272941,3,4,0.439106,0.439106,0.439106,0.439106,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.63744,0.532143,0.439106,0.439106,0.63744,0.532143,0.522314,0.509245,0.439106,0.439106,0.522314,0.509245,0.593589,0.66565,0.439106,0.439106,0.593589,0.66565,0.439106,0.439106,0.439106,0.439106,0.439106,0.439106,,,,,,,0.63744,0.532143,0.522314,0.509245,0.593589,0.66565,0.439106,0.439106,0.439106,0.439106,0.243925,0.212336,0.209387,0.205466,0.230769,0.252388,0.184424,0.184424,0.098067,0.098067,27.554319,33.0066,33.62771,34.490731,29.589884,26.386572,40,40,40,40,,,,,,,,,,,3096,3096,0.439106,0.439106,0.439106,0.439106,0.439106,0.439106,0.439106,0.439106,0.184424,0.184424,40,40,, +20770,0,0.263943,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,5.844,6.108,0,5.655928,1.7,4,0.316732,0.316732,0.316732,0.316732,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.417336,0.342347,0.316732,0.316732,0.417336,0.342347,0.330077,0.326448,0.316732,0.316732,0.330077,0.326448,0.379691,0.423601,0.316732,0.316732,0.379691,0.423601,0.316732,0.316732,0.316732,0.316732,0.316732,0.316732,,,,,,,0.417336,0.342347,0.330077,0.326448,0.379691,0.423601,0.316732,0.316732,0.316732,0.316732,0.172711,0.150214,0.146533,0.145444,0.161417,0.17459,0.142529,0.142529,0.076544,0.076544,37.946837,46.258885,47.978451,48.511787,41.709188,37.38569,50,50,50,50,,,,,,,,,,,3096,3096,0.316732,0.316732,0.316732,0.316732,0.316732,0.316732,0.316732,0.316732,0.142529,0.142529,50,50,, +8749,0,0.977077,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,5.093,6.07,0,20.937361,5.8,6,1.954154,1.954154,1.954154,1.954154,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.954253,1.954154,1.954154,1.954154,1.954253,1.954154,1.954154,1.954154,1.954154,1.954154,1.954154,1.954154,1.954154,1.954325,1.954154,1.954154,1.954154,1.954325,1.954154,1.954154,1.954154,1.954154,1.954154,1.954154,,,,,,,1.954253,1.954154,1.954154,1.954154,1.954154,1.954325,1.954154,1.954154,1.954154,1.954154,0.76215,0.76212,0.76212,0.76212,0.76212,0.762171,0.76212,0.76212,0.400601,0.400601,29.998473,30,30,30,29.999996,29.997363,30,30,30,30,,,,,,,,,,,2236,2236,1.954154,1.954154,1.954154,1.954154,1.954154,1.954154,1.954154,1.954154,0.76212,0.76212,30,30,, +8811,0,1.039848,1,1,0,2,4,,5,6,Ida East,Rd,1223706,6.296,7.335,0,22.282454,3,4,1.559772,1.559772,1.559772,1.559772,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.786543,1.676255,1.559772,1.559772,1.786543,1.676255,1.592151,1.589012,1.559772,1.559772,1.592151,1.589012,1.73302,1.764404,1.559772,1.559772,1.73302,1.764404,1.559772,1.559772,1.559772,1.559772,1.559772,1.559772,,,,,,,1.786543,1.676255,1.592151,1.589012,1.73302,1.764404,1.559772,1.559772,1.559772,1.559772,0.723136,0.690049,0.664818,0.663876,0.707079,0.716494,0.655104,0.655104,0.348349,0.348349,34.922681,37.220401,39.186517,39.263947,36.001232,35.360871,40,40,40,40,,,,,,,,,,,3096,3096,1.559772,1.559772,1.559772,1.559772,1.559772,1.559772,1.559772,1.559772,0.655104,0.655104,40,40,, +8822,0,3.035163,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,10.204,13.238,0,65.0392,3.7,5,6.070325,6.070325,6.070325,6.070325,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,6.316913,6.078525,6.070325,6.070325,6.316913,6.078525,6.070365,6.07037,6.070325,6.070325,6.070365,6.07037,6.12751,6.585925,6.070325,6.070325,6.12751,6.585925,6.070325,6.070325,6.070325,6.070325,6.070325,6.070325,,,,,,,6.316913,6.078525,6.070365,6.07037,6.12751,6.585925,6.070325,6.070325,6.070325,6.070325,2.441403,2.369887,2.367439,2.36744,2.384582,2.522107,2.367427,2.367427,1.244417,1.244417,28.828915,29.95953,29.999804,29.999781,29.720028,27.651355,30,30,30,30,,,,,,,,,,,2580,2580,6.070325,6.070325,6.070325,6.070325,6.070325,6.070325,6.070325,6.070325,2.367427,2.367427,30,30,, +8853,0,1.528041,1,1,0,2,5,,5,6,Lewis,Ave,1226808,9.421,10.948,0,32.743738,3.7,5,3.056082,3.056082,3.056082,3.056082,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.092524,3.058153,3.056082,3.056082,3.092524,3.058153,3.056368,3.056323,3.056082,3.056082,3.056368,3.056323,3.065639,3.121487,3.056082,3.056082,3.065639,3.121487,3.056082,3.056082,3.056082,3.056082,3.056082,3.056082,,,,,,,3.092524,3.058153,3.056368,3.056323,3.065639,3.121487,3.056082,3.056082,3.056082,3.056082,1.202805,1.192493,1.191958,1.191944,1.194739,1.211493,1.191872,1.191872,0.626497,0.626497,29.646481,29.979691,29.997195,29.997632,29.906479,29.371408,30,30,30,30,,,,,,,,,,,2580,2580,3.056082,3.056082,3.056082,3.056082,3.056082,3.056082,3.056082,3.056082,1.191872,1.191872,30,30,, +10395,0,1.24293,1,1,0,2,5,,5,6,Dunbar,Rd,1234601,4.716,5.958,0,26.634205,3.7,5,2.485859,2.485859,2.485859,2.485859,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,2.485861,2.485859,2.485859,2.485859,2.485861,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,,,,,,,2.485859,2.485859,2.485859,2.485859,2.485861,2.485859,2.485859,2.485859,2.485859,2.485859,0.969485,0.969485,0.969485,0.969485,0.969486,0.969485,0.969485,0.969485,0.509601,0.509601,30,29.999997,30,30,29.999972,29.999999,30,30,30,30,,,,,,,,,,,2580,2580,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,2.485859,0.969485,0.969485,30,30,, +31028,0,1.921955,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,41.18476,0.15,4,7.687822,7.687822,7.687822,7.687822,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,,,,,,,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,2.652299,2.652299,2.652299,2.652299,2.652299,2.652299,2.652299,2.652299,1.364588,1.364588,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,7.687822,2.652299,2.652299,15,15,, +31062,0,1.703662,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.507041,0.15,4,6.814648,6.814648,6.814648,6.814648,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,,,,,,,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,2.351053,2.351053,2.351053,2.351053,2.351053,2.351053,2.351053,2.351053,1.2096,1.2096,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,6.814648,2.351053,2.351053,15,15,, +31108,0,0.891998,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,19.114241,0.15,4,3.567992,3.567992,3.567992,3.567992,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,,,,,,,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,1.230957,1.230957,1.230957,1.230957,1.230957,1.230957,1.230957,1.230957,0.633319,0.633319,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,3.567992,1.230957,1.230957,15,15,, +9025,0,1.754319,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,8.45,10.204,0,37.592559,3.7,5,3.508639,3.508639,3.508639,3.508639,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.508792,3.508641,3.508639,3.508639,3.508792,3.508641,3.508639,3.508639,3.508639,3.508639,3.508639,3.508639,3.508983,3.510267,3.508639,3.508639,3.508983,3.510267,3.508639,3.508639,3.508639,3.508639,3.508639,3.508639,,,,,,,3.508792,3.508641,3.508639,3.508639,3.508983,3.510267,3.508639,3.508639,3.508639,3.508639,1.368415,1.36837,1.368369,1.368369,1.368472,1.368857,1.368369,1.368369,0.719271,0.719271,29.998687,29.999981,30,30,29.997059,29.986089,30,30,30,30,,,,,,,,,,,2580,2580,3.508639,3.508639,3.508639,3.508639,3.508639,3.508639,3.508639,3.508639,1.368369,1.368369,30,30,, +9073,0,1.703342,1,1,0,2,5,,5,6,Lewis,Ave,1226808,7.718,9.421,0,36.500193,3.7,5,3.406685,3.406685,3.406685,3.406685,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.57166,3.407374,3.406685,3.406685,3.57166,3.407374,3.407469,3.407259,3.406685,3.406685,3.407469,3.407259,3.409541,3.57854,3.406685,3.406685,3.409541,3.57854,3.406685,3.406685,3.406685,3.406685,3.406685,3.406685,,,,,,,3.57166,3.407374,3.407469,3.407259,3.409541,3.57854,3.406685,3.406685,3.406685,3.406685,1.378099,1.328814,1.328842,1.328779,1.329464,1.380164,1.328607,1.328607,0.69837,0.69837,28.6143,29.993929,29.993098,29.994942,29.974868,28.559282,30,30,30,30,,,,,,,,,,,2580,2580,3.406685,3.406685,3.406685,3.406685,3.406685,3.406685,3.406685,3.406685,1.328607,1.328607,30,30,, +31057,0,1.646608,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.284467,0.15,4,6.586434,6.586434,6.586434,6.586434,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,,,,,,,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,2.27232,2.27232,2.27232,2.27232,2.27232,2.27232,2.27232,2.27232,1.169092,1.169092,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,6.586434,2.27232,2.27232,15,15,, +31059,0,1.061666,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,22.749989,0.15,4,4.246665,4.246665,4.246665,4.246665,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,,,,,,,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,1.465099,1.465099,1.465099,1.465099,1.465099,1.465099,1.465099,1.465099,0.753783,0.753783,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,4.246665,1.465099,1.465099,15,15,, +8715,0,1.762517,1,1,0,2,5,,5,6,Lewis,Ave,1226808,5.956,7.718,0,37.768226,3.7,5,3.525034,3.525034,3.525034,3.525034,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.572603,3.532009,3.525034,3.525034,3.572603,3.532009,3.527778,3.527982,3.525034,3.525034,3.527778,3.527982,3.542886,3.636724,3.525034,3.525034,3.542886,3.636724,3.525034,3.525034,3.525034,3.525034,3.525034,3.525034,,,,,,,3.572603,3.532009,3.527778,3.527982,3.542886,3.636724,3.525034,3.525034,3.525034,3.525034,1.389034,1.376856,1.375586,1.375648,1.380119,1.40827,1.374763,1.374763,0.722632,0.722632,29.600552,29.940762,29.976672,29.974934,29.848841,29.078656,30,30,30,30,,,,,,,,,,,2580,2580,3.525034,3.525034,3.525034,3.525034,3.525034,3.525034,3.525034,3.525034,1.374763,1.374763,30,30,, +31121,0,1.002777,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.488068,0.15,4,4.011106,4.011106,4.011106,4.011106,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,,,,,,,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,1.383832,1.383832,1.383832,1.383832,1.383832,1.383832,1.383832,1.383832,0.711971,0.711971,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,4.011106,1.383832,1.383832,15,15,, +9010,0,1.000974,1,1,0,2,4,,5,6,Ida West,Rd,1223706,5.295,6.296,0,21.449447,3,4,1.501461,1.501461,1.501461,1.501461,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.581273,1.628077,1.501461,1.501461,1.581273,1.628077,1.51562,1.516147,1.501461,1.501461,1.51562,1.516147,1.658979,1.599358,1.501461,1.501461,1.658979,1.599358,1.501461,1.501461,1.501461,1.501461,1.501461,1.501461,,,,,,,1.581273,1.628077,1.51562,1.516147,1.658979,1.599358,1.501461,1.501461,1.501461,1.501461,0.654557,0.668598,0.634861,0.635019,0.677869,0.659983,0.630614,0.630614,0.335326,0.335326,37.981078,36.889192,39.62633,39.612551,36.202067,37.5516,40,40,40,40,,,,,,,,,,,3096,3096,1.501461,1.501461,1.501461,1.501461,1.501461,1.501461,1.501461,1.501461,0.630614,0.630614,40,40,, +9174,0,1.565812,1,1,0,2,5,,5,6,Lewis,Ave,1226808,10.948,12.513,0,33.553114,3.7,5,3.131624,3.131624,3.131624,3.131624,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.221239,3.134914,3.131624,3.131624,3.221239,3.134914,3.132028,3.131839,3.131624,3.131624,3.132028,3.131839,3.144633,3.20107,3.131624,3.131624,3.144633,3.20107,3.131624,3.131624,3.131624,3.131624,3.131624,3.131624,,,,,,,3.221239,3.134914,3.132028,3.131839,3.144633,3.20107,3.131624,3.131624,3.131624,3.131624,1.248218,1.22232,1.221455,1.221398,1.225236,1.242167,1.221333,1.221333,0.641983,0.641983,29.165394,29.968519,29.996127,29.997938,29.875889,29.349159,30,30,30,30,,,,,,,,,,,2580,2580,3.131624,3.131624,3.131624,3.131624,3.131624,3.131624,3.131624,3.131624,1.221333,1.221333,30,30,, +31060,0,1.036275,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,22.205891,0.15,4,4.1451,4.1451,4.1451,4.1451,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,,,,,,,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,1.430059,1.430059,1.430059,1.430059,1.430059,1.430059,1.430059,1.430059,0.735755,0.735755,14.999999,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,4.1451,1.430059,1.430059,15,15,, +31061,0,1.551619,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,33.248987,0.15,4,6.206478,6.206478,6.206478,6.206478,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,,,,,,,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,2.141235,2.141235,2.141235,2.141235,2.141235,2.141235,2.141235,2.141235,1.10165,1.10165,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,6.206478,2.141235,2.141235,15,15,, +37046,0,2.079047,1,1,0,2,4,,5,8,Oak Grove,Rd,4104402,0,2.078,0,44.551011,3,4,3.118571,3.118571,3.118571,3.118571,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.133401,3.906263,3.118571,3.118571,3.133401,3.906263,3.151293,3.169111,3.118571,3.118571,3.151293,3.169111,3.647499,3.215413,3.118571,3.118571,3.647499,3.215413,3.118571,3.118571,3.118571,3.118571,3.118571,3.118571,,,,,,,3.133401,3.906263,3.151293,3.169111,3.647499,3.215413,3.118571,3.118571,3.118571,3.118571,1.314249,1.546107,1.319616,1.324962,1.468478,1.338852,1.3098,1.3098,0.696481,0.696481,39.810679,31.934056,39.584654,39.362088,34.199549,38.795273,40,40,40,40,,,,,,,,,,,3096,3096,3.118571,3.118571,3.118571,3.118571,3.118571,3.118571,3.118571,3.118571,1.3098,1.3098,40,40,, +37029,1,0.022326,2,0,0,2,3,,3,5,Packard,St,1430704,2.852,2.874,0,0.478415,5,5,0.038273,,0.038273,,35,,22000,,4994,,11000,,7097,,7568,,7559,,0.038282,,0.038273,,0.038282,,0.038289,,0.038273,,0.038289,,0.038418,,0.038273,,0.038418,,0.038273,,0.038273,,0.038273,,,,,,,,0.038282,,0.038289,,0.038418,,0.038273,,0.038273,,0.015503,,0.015505,,0.015544,,0.015501,,0.008197,,34.992425,,34.985385,,34.867728,,35,,35,,,,,,,,,,,,7568,,0.038273,,0.038273,,0.038273,,0.038273,,0.015501,,35,,, +9170,0,0.698883,1,1,0,2,5,,5,6,Lewis,Ave,1226808,13.549,14.248,0,14.97606,3.7,5,1.397766,1.397766,1.397766,1.397766,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.397844,1.397768,1.397766,1.397766,1.397844,1.397768,1.397767,1.397767,1.397766,1.397766,1.397767,1.397767,1.397772,1.397859,1.397766,1.397766,1.397772,1.397859,1.397766,1.397766,1.397766,1.397766,1.397766,1.397766,,,,,,,1.397844,1.397768,1.397767,1.397767,1.397772,1.397859,1.397766,1.397766,1.397766,1.397766,0.545152,0.545129,0.545129,0.545129,0.54513,0.545157,0.545129,0.545129,0.286542,0.286542,29.99831,29.999954,29.999967,29.999976,29.999866,29.997991,30,30,30,30,,,,,,,,,,,2580,2580,1.397766,1.397766,1.397766,1.397766,1.397766,1.397766,1.397766,1.397766,0.545129,0.545129,30,30,, +8544,0,1.036095,1,1,0,2,5,,5,6,Lewis,Ave,1226808,12.513,13.549,0,22.202029,3.7,5,2.072189,2.072189,2.072189,2.072189,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.072212,2.07219,2.072189,2.072189,2.072212,2.07219,2.07219,2.07219,2.072189,2.072189,2.07219,2.07219,2.07219,2.072198,2.072189,2.072189,2.07219,2.072198,2.072189,2.072189,2.072189,2.072189,2.072189,2.072189,,,,,,,2.072212,2.07219,2.07219,2.07219,2.07219,2.072198,2.072189,2.072189,2.072189,2.072189,0.808161,0.808154,0.808154,0.808154,0.808154,0.808156,0.808154,0.808154,0.424799,0.424799,29.999672,29.999994,29.999992,29.999995,29.999984,29.999873,30,30,30,30,,,,,,,,,,,2580,2580,2.072189,2.072189,2.072189,2.072189,2.072189,2.072189,2.072189,2.072189,0.808154,0.808154,30,30,, +8939,0,1.003948,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,4.09,5.093,0,21.513168,5.8,6,2.007896,2.007896,2.007896,2.007896,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.008436,2.008059,2.007896,2.007896,2.008436,2.008059,2.007896,2.007896,2.007896,2.007896,2.007896,2.007896,2.009082,2.009451,2.007896,2.007896,2.009082,2.009451,2.007896,2.007896,2.007896,2.007896,2.007896,2.007896,,,,,,,2.008436,2.008059,2.007896,2.007896,2.009082,2.009451,2.007896,2.007896,2.007896,2.007896,0.783241,0.783128,0.78308,0.783079,0.783435,0.783546,0.783079,0.783079,0.411619,0.411619,29.991932,29.997563,29.999989,29.999996,29.982286,29.976773,30,30,30,30,,,,,,,,,,,2236,2236,2.007896,2.007896,2.007896,2.007896,2.007896,2.007896,2.007896,2.007896,0.783079,0.783079,30,30,, +9023,0,0.786553,1,1,0,2,5,,5,6,Yargerville,Rd,1223704,13.238,14.024,0,16.854699,3.7,5,1.573105,1.573105,1.573105,1.573105,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.57815,1.573206,1.573105,1.573105,1.57815,1.573206,1.57311,1.573108,1.573105,1.573105,1.57311,1.573108,1.573868,1.579102,1.573105,1.573105,1.573868,1.579102,1.573105,1.573105,1.573105,1.573105,1.573105,1.573105,,,,,,,1.57815,1.573206,1.57311,1.573108,1.573868,1.579102,1.573105,1.573105,1.573105,1.573105,0.615024,0.613541,0.613513,0.613512,0.61374,0.61531,0.613511,0.613511,0.322487,0.322487,29.904104,29.998071,29.999906,29.999941,29.98546,29.886075,30,30,30,30,,,,,,,,,,,2580,2580,1.573105,1.573105,1.573105,1.573105,1.573105,1.573105,1.573105,1.573105,0.613511,0.613511,30,30,, +31110,0,0.77063,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,16.513492,0.15,4,3.082519,3.082519,3.082519,3.082519,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,,,,,,,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,1.063469,1.063469,1.063469,1.063469,1.063469,1.063469,1.063469,1.063469,0.547147,0.547147,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,3.082519,1.063469,1.063469,15,15,, +31111,0,1.409538,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,30.204376,0.15,4,5.63815,5.63815,5.63815,5.63815,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,,,,,,,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,1.945162,1.945162,1.945162,1.945162,1.945162,1.945162,1.945162,1.945162,1.000772,1.000772,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,5.63815,1.945162,1.945162,15,15,, +9036,0,2.342227,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,6.07,8.411,0,50.190583,5.8,6,4.684454,4.684454,4.684454,4.684454,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.685932,4.684455,4.684454,4.684454,4.685932,4.684455,4.684455,4.684455,4.684454,4.684454,4.684455,4.684455,4.684461,4.686471,4.684454,4.684454,4.684461,4.686471,4.684454,4.684454,4.684454,4.684454,4.684454,4.684454,,,,,,,4.685932,4.684455,4.684455,4.684455,4.684461,4.686471,4.684454,4.684454,4.684454,4.684454,1.82738,1.826937,1.826937,1.826937,1.826939,1.827542,1.826937,1.826937,0.960313,0.960313,29.990542,29.999999,29.999997,29.999998,29.999959,29.987092,30,30,30,30,,,,,,,,,,,2236,2236,4.684454,4.684454,4.684454,4.684454,4.684454,4.684454,4.684454,4.684454,1.826937,1.826937,30,30,, +10369,0,1.816787,1,1,0,2,4,,5,6,Dunbar,Rd,1234601,6.479,8.296,0,38.931145,3,4,2.72518,2.72518,2.72518,2.72518,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.334204,2.84284,2.72518,2.72518,3.334204,2.84284,2.891706,2.854784,2.72518,2.72518,2.891706,2.854784,3.089952,3.282559,2.72518,2.72518,3.089952,3.282559,2.72518,2.72518,2.72518,2.72518,2.72518,2.72518,,,,,,,3.334204,2.84284,2.891706,2.854784,3.089952,3.282559,2.72518,2.72518,2.72518,2.72518,1.327283,1.179874,1.194534,1.183457,1.254007,1.311789,1.144576,1.144576,0.608624,0.608624,32.693617,38.344476,37.696499,38.184042,35.277964,33.207997,40,40,40,40,,,,,,,,,,,3096,3096,2.72518,2.72518,2.72518,2.72518,2.72518,2.72518,2.72518,2.72518,1.144576,1.144576,40,40,, +31027,0,1.521551,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,32.604665,0.15,4,6.086204,6.086204,6.086204,6.086204,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,,,,,,,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,2.09974,2.09974,2.09974,2.09974,2.09974,2.09974,2.09974,2.09974,1.080301,1.080301,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,6.086204,2.09974,2.09974,15,15,, +31030,0,1.983113,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,42.495272,0.15,4,7.932451,7.932451,7.932451,7.932451,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,,,,,,,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,2.736696,2.736696,2.736696,2.736696,2.736696,2.736696,2.736696,2.736696,1.40801,1.40801,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,7.932451,2.736696,2.736696,15,15,, +10375,0,0.521408,1,1,0,2,4,,5,6,Dunbar,Rd,1234601,5.958,6.479,0,11.17303,3,4,0.782112,0.782112,0.782112,0.782112,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.910671,0.856932,0.782112,0.782112,0.910671,0.856932,0.800893,0.798938,0.782112,0.782112,0.800893,0.798938,0.905115,0.902598,0.782112,0.782112,0.905115,0.902598,0.782112,0.782112,0.782112,0.782112,0.782112,0.782112,,,,,,,0.910671,0.856932,0.800893,0.798938,0.905115,0.902598,0.782112,0.782112,0.782112,0.782112,0.367055,0.350933,0.334122,0.333535,0.365388,0.364633,0.328487,0.328487,0.174672,0.174672,34.353233,36.507531,39.061979,39.157568,34.564106,34.660467,40,40,40,40,,,,,,,,,,,3096,3096,0.782112,0.782112,0.782112,0.782112,0.782112,0.782112,0.782112,0.782112,0.328487,0.328487,40,40,, +8905,0,0.773613,1,1,0,2,4,,5,6,Geiger,Rd,1226007,11.991,12.764,0,16.577413,3,4,1.160419,1.160419,1.160419,1.160419,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.329129,1.247078,1.160419,1.160419,1.329129,1.247078,1.184508,1.182172,1.160419,1.160419,1.184508,1.182172,1.28931,1.312659,1.160419,1.160419,1.28931,1.312659,1.160419,1.160419,1.160419,1.160419,1.160419,1.160419,,,,,,,1.329129,1.247078,1.184508,1.182172,1.28931,1.312659,1.160419,1.160419,1.160419,1.160419,0.537989,0.513374,0.494603,0.493902,0.526043,0.533048,0.487376,0.487376,0.25916,0.25916,34.922681,37.220401,39.186517,39.263947,36.001232,35.360871,40,40,40,40,,,,,,,,,,,3096,3096,1.160419,1.160419,1.160419,1.160419,1.160419,1.160419,1.160419,1.160419,0.487376,0.487376,40,40,, +20237,0,0.064536,1,1,0,2,4,,5,6,Ida East,Rd,4301906,0,0.065,0,1.382911,3,4,0.096804,0.096804,0.096804,0.096804,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.110878,0.104033,0.096804,0.096804,0.110878,0.104033,0.098813,0.098618,0.096804,0.096804,0.098813,0.098618,0.107556,0.109504,0.096804,0.096804,0.107556,0.109504,0.096804,0.096804,0.096804,0.096804,0.096804,0.096804,,,,,,,0.110878,0.104033,0.098813,0.098618,0.107556,0.109504,0.096804,0.096804,0.096804,0.096804,0.04488,0.042826,0.04126,0.041202,0.043883,0.044468,0.040658,0.040658,0.02162,0.02162,34.922681,37.220401,39.186517,39.263947,36.001232,35.360871,40,40,40,40,,,,,,,,,,,3096,3096,0.096804,0.096804,0.096804,0.096804,0.096804,0.096804,0.096804,0.096804,0.040658,0.040658,40,40,, +40089,1,0.03627,1,0,0,2,7,,2,5,Ann,St,4604073,0.462,0.499,0,0.777219,8.5,4.5,0.108811,,0.108811,,20,,5000,,1135,,2500,,1613,,1720,,1718,,0.370347,,0.108811,,0.370347,,0.110526,,0.108811,,0.110526,,0.112747,,0.108811,,0.112747,,0.108811,,0.108811,,0.108811,,,,,,,,0.370347,,0.110526,,0.112747,,0.108811,,0.108811,,0.117633,,0.039686,,0.040353,,0.039172,,0.020311,,5.876149,,19.689603,,19.301821,,20,,20,,,,,,,,,,,,1720,,0.108811,,0.108811,,0.108811,,0.108811,,0.039172,,20,,, +39895,0,1.009589,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.634044,0.15,4,4.038355,4.038355,4.038355,4.038355,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,,,,,,,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,1.393232,1.393232,1.393232,1.393232,1.393232,1.393232,1.393232,1.393232,0.716808,0.716808,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,4.038355,1.393232,1.393232,15,15,, +40090,-1,0.03791,0,1,0,2,7,,2,5,Ann,St,4606154,0,0.038,0,0.812358,8.5,4.5,,0.11373,,0.11373,,20,,5000,,1135,,2500,,1613,,1720,,1718,,0.11878,,0.11373,,0.11878,,0.178729,,0.11373,,0.178729,,0.45492,,0.11373,,0.45492,,0.11373,,0.11373,,0.11373,,,,,,,,0.11878,,0.178729,,0.45492,,0.11373,,0.11373,,0.042458,,0.060443,,0.1433,,0.040943,,0.02123,,19.149748,,12.726535,,5,,20,,20,,,,,,,,,,,,1720,,0.11373,,0.11373,,0.11373,,0.11373,,0.040943,,20,, +31029,0,0.361081,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,7.737456,0.15,4,1.444325,1.444325,1.444325,1.444325,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,,,,,,,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,0.498292,0.498292,0.498292,0.498292,0.498292,0.498292,0.498292,0.498292,0.256368,0.256368,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,1.444325,0.498292,0.498292,15,15,, +31106,0,0.801316,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,17.171054,0.15,4,3.205263,3.205263,3.205263,3.205263,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,,,,,,,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,1.105816,1.105816,1.105816,1.105816,1.105816,1.105816,1.105816,1.105816,0.568934,0.568934,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,3.205263,1.105816,1.105816,15,15,, +8827,0,1.164612,1,1,0,2,5,,5,6,Strasburg,Rd,1226809,8.411,9.575,0,24.95597,3.7,5,2.329224,2.329224,2.329224,2.329224,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,,,,,,,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,0.908397,0.908397,0.908397,0.908397,0.908397,0.908397,0.908397,0.908397,0.477491,0.477491,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,2.329224,0.908397,0.908397,30,30,, +9239,0,1.289201,1,1,0,2,7,,5,6,Suder,Rd,1232902,0,1.289,0,27.625731,5.8,6,3.094082,3.094082,3.094082,3.094082,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.094087,3.094088,3.094082,3.094082,3.094087,3.094088,3.094084,3.094083,3.094082,3.094082,3.094084,3.094083,3.09409,3.09409,3.094082,3.094082,3.09409,3.09409,3.094082,3.094082,3.094082,3.094082,3.094082,3.094082,,,,,,,3.094087,3.094088,3.094084,3.094083,3.09409,3.09409,3.094082,3.094082,3.094082,3.094082,1.160282,1.160283,1.160281,1.160281,1.160283,1.160283,1.160281,1.160281,0.605924,0.605924,24.999956,24.999951,24.999985,24.999987,24.999936,24.999938,25,25,25,25,,,,,,,,,,,2064,2064,3.094082,3.094082,3.094082,3.094082,3.094082,3.094082,3.094082,3.094082,1.160281,1.160281,25,25,, +9350,0,1.181336,2,2,1,2,4,,5,6,Summit,St,1227803,0,1.181,0,25.314344,3,4,1.772004,1.772004,1.772004,1.772004,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,1.772123,1.772123,1.772004,1.772004,1.772123,1.772123,1.772055,1.772055,1.772004,1.772004,1.772055,1.772055,1.772176,1.772174,1.772004,1.772004,1.772176,1.772174,1.772004,1.772004,1.772004,1.772004,1.772004,1.772004,,,,,,,1.772123,1.772123,1.772055,1.772055,1.772176,1.772174,1.772004,1.772004,1.772004,1.772004,0.744277,0.744277,0.744257,0.744257,0.744293,0.744293,0.744242,0.744242,0.395748,0.395748,39.997318,39.997317,39.998841,39.998846,39.996129,39.996155,40,40,40,40,,,,,,,,,,,6502,6502,1.772004,1.772004,1.772004,1.772004,1.772004,1.772004,1.772004,1.772004,0.744242,0.744242,40,40,, +9442,1,1.778544,3,0,0,1,1,,5,6,N I 75,,1226910,0,1.778,0,,1.02,7,1.524467,,1.524467,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.525271,,1.524467,,1.525271,,1.525653,,1.524467,,1.525653,,1.527199,,1.524467,,1.527199,,1.524467,,1.524467,,1.524467,,,,,,,,1.525271,,1.525653,,1.527199,,1.524467,,1.524467,,0.777719,,0.777834,,0.778298,,0.777478,,0.42431,,69.963095,,69.945568,,69.874777,,70,,70,,,,,,,,,,,,22704,,1.524467,,1.524467,,1.524467,,1.524467,,0.777478,,70,,, +9467,-1,2.098507,0,3,0,1,1,,5,6,S I 75,,1226909,0,2.098,0,,1.02,7,,1.79872,,1.79872,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.799983,,1.79872,,1.799983,,1.800132,,1.79872,,1.800132,,1.801787,,1.79872,,1.801787,,1.79872,,1.79872,,1.79872,,,,,,,,1.799983,,1.800132,,1.801787,,1.79872,,1.79872,,0.917726,,0.917771,,0.918267,,0.917347,,0.500644,,69.950893,,69.945097,,69.880864,,70,,70,,,,,,,,,,,,22704,,1.79872,,1.79872,,1.79872,,1.79872,,0.917347,,70,, +34025,0,1.674445,2,2,1,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,6.697779,6.697779,6.697779,6.697779,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,,,,,,,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,2.310734,2.310734,2.310734,2.310734,2.310734,2.310734,2.310734,2.310734,1.188856,1.188856,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,6.697779,2.310734,2.310734,15,15,, +34026,1,1.594325,3,0,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,6.3773,,6.3773,,15,,100000,,22700,,50000,,32260,,34400,,34360,,6.379704,,6.3773,,6.379704,,6.380303,,6.3773,,6.380303,,6.382137,,6.3773,,6.382137,,6.3773,,6.3773,,6.3773,,,,,,,,6.379704,,6.380303,,6.382137,,6.3773,,6.3773,,2.20089,,2.201069,,2.201619,,2.200169,,1.131971,,14.994347,,14.992941,,14.988633,,15,,15,,,,,,,,,,,,34400,,6.3773,,6.3773,,6.3773,,6.3773,,2.200169,,15,,, +34027,-1,1.595469,0,3,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,,6.381877,,6.381877,,15,,100000,,22700,,50000,,32260,,34400,,34360,,6.38471,,6.381877,,6.38471,,6.384896,,6.381877,,6.384896,,6.386581,,6.381877,,6.386581,,6.381877,,6.381877,,6.381877,,,,,,,,6.38471,,6.384896,,6.386581,,6.381877,,6.381877,,2.202597,,2.202653,,2.203159,,2.201748,,1.132783,,14.993345,,14.992906,,14.988953,,15,,15,,,,,,,,,,,,34400,,6.381877,,6.381877,,6.381877,,6.381877,,2.201748,,15,, +8511,0,0.981526,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,11.1,12.081,0,21.032691,3,4,1.472288,1.472288,1.472288,1.472288,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.88205,1.522189,1.472288,1.472288,1.88205,1.522189,1.499836,1.501589,1.472288,1.472288,1.499836,1.501589,1.557713,1.977395,1.472288,1.472288,1.557713,1.977395,1.472288,1.472288,1.472288,1.472288,1.472288,1.472288,,,,,,,1.88205,1.522189,1.499836,1.501589,1.557713,1.977395,1.472288,1.472288,1.472288,1.472288,0.74129,0.633331,0.626625,0.627151,0.643989,0.769893,0.618361,0.618361,0.328811,0.328811,31.291165,38.688718,39.265325,39.219474,37.806407,29.782383,40,40,40,40,,,,,,,,,,,3096,3096,1.472288,1.472288,1.472288,1.472288,1.472288,1.472288,1.472288,1.472288,0.618361,0.618361,40,40,, +9238,0,2.018038,1,1,0,2,7,,5,6,Suder,Rd,1232902,1.289,3.306,0,43.243667,5.8,6,4.843291,4.843291,4.843291,4.843291,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,4.843539,4.843291,4.843291,4.843291,4.843539,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,,,,,,,4.843291,4.843291,4.843291,4.843291,4.843291,4.843539,4.843291,4.843291,4.843291,4.843291,1.816234,1.816234,1.816234,1.816234,1.816234,1.816308,1.816234,1.816234,0.948478,0.948478,25,25,25,25,25,24.99872,25,25,25,25,,,,,,,,,,,2064,2064,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,4.843291,1.816234,1.816234,25,25,, +9253,0,0.225274,1,1,0,2,5,,5,6,Erie,Rd,1232207,11.798,12.024,0,4.827292,3.7,5,0.450547,0.450547,0.450547,0.450547,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.468842,0.450547,0.450547,0.450547,0.468842,0.450547,0.450548,0.450547,0.450547,0.450547,0.450548,0.450547,0.450614,0.450547,0.450547,0.450547,0.450614,0.450547,0.450547,0.450547,0.450547,0.450547,0.450547,0.450547,,,,,,,0.468842,0.450547,0.450548,0.450547,0.450614,0.450547,0.450547,0.450547,0.450547,0.450547,0.181202,0.175713,0.175714,0.175713,0.175733,0.175713,0.175713,0.175713,0.092362,0.092362,28.82939,30,29.999949,30,29.995571,30,30,30,30,30,,,,,,,,,,,2580,2580,0.450547,0.450547,0.450547,0.450547,0.450547,0.450547,0.450547,0.450547,0.175713,0.175713,30,30,, +9313,1,0.395925,1,0,0,1,1,ROF,5,6,S I 75/Erie,RAMP,1228201,0,0.396,0,,2.24,5,0.593887,,0.593887,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.593887,,0.593887,,0.593887,,0.593887,,0.593887,,0.593887,,0.594371,,0.593887,,0.594371,,0.593887,,0.593887,,0.593887,,,,,,,,0.593887,,0.593887,,0.594371,,0.593887,,0.593887,,0.249433,,0.249433,,0.249578,,0.249433,,0.132635,,39.999975,,39.999997,,39.967446,,40,,40,,,,,,,,,,,,5160,,0.593887,,0.593887,,0.593887,,0.593887,,0.249433,,40,,, +9346,1,0.443601,1,0,0,1,1,ROF,5,6,N I 75/Erie,RAMP,1227804,0,0.444,0,,2.24,5,0.665401,,0.665401,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.665401,,0.665401,,0.665401,,0.665401,,0.665401,,0.665401,,0.665401,,0.665401,,0.665401,,0.665401,,0.665401,,0.665401,,,,,,,,0.665401,,0.665401,,0.665401,,0.665401,,0.665401,,0.279468,,0.279468,,0.279468,,0.279468,,0.148606,,40,,40,,40,,40,,40,,,,,,,,,,,,5160,,0.665401,,0.665401,,0.665401,,0.665401,,0.279468,,40,,, +9368,1,0.710237,2,0,0,2,4,DIV,5,6,Summit,St,1227206,0.62,1.33,0,15.219356,3,4,0.946982,,0.946982,,45,,20000,,4540,,10000,,6452,,6880,,6872,,0.966298,,0.946982,,0.966298,,0.957141,,0.946982,,0.957141,,0.984165,,0.946982,,0.984165,,0.946982,,0.946982,,0.946982,,,,,,,,0.966298,,0.957141,,0.984165,,0.946982,,0.946982,,0.417732,,0.414985,,0.423092,,0.411937,,0.220173,,44.100468,,44.522367,,43.299858,,45,,45,,,,,,,,,,,,6880,,0.946982,,0.946982,,0.946982,,0.946982,,0.411937,,45,,, +9373,-1,0.709309,0,2,0,2,4,DIV,5,6,Summit,St,1227205,0.371,1.08,0,15.199481,3,4,,0.945745,,0.945745,,45,,20000,,4540,,10000,,6452,,6880,,6872,,0.961217,,0.945745,,0.961217,,0.956628,,0.945745,,0.956628,,0.98138,,0.945745,,0.98138,,0.945745,,0.945745,,0.945745,,,,,,,,0.961217,,0.956628,,0.98138,,0.945745,,0.945745,,0.416041,,0.414664,,0.42209,,0.411399,,0.219886,,44.275677,,44.488076,,43.366037,,45,,45,,,,,,,,,,,,6880,,0.945745,,0.945745,,0.945745,,0.945745,,0.411399,,45,, +9439,1,0.550254,3,0,0,1,1,,5,6,N I 75,,1226910,4.26,4.81,0,,1.02,7,0.471646,,0.471646,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.472088,,0.471646,,0.472088,,0.472077,,0.471646,,0.472077,,0.472472,,0.471646,,0.472472,,0.471646,,0.471646,,0.471646,,,,,,,,0.472088,,0.472077,,0.472472,,0.471646,,0.471646,,0.240672,,0.240669,,0.240787,,0.24054,,0.131275,,69.934473,,69.936134,,69.877666,,70,,70,,,,,,,,,,,,22704,,0.471646,,0.471646,,0.471646,,0.471646,,0.24054,,70,,, +9440,1,2.072892,3,0,0,1,1,,5,6,N I 75,,1226910,2.188,4.26,0,,1.02,7,1.776765,,1.776765,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.77843,,1.776765,,1.77843,,1.778387,,1.776765,,1.778387,,1.779875,,1.776765,,1.779875,,1.776765,,1.776765,,1.776765,,,,,,,,1.77843,,1.778387,,1.779875,,1.776765,,1.776765,,0.906649,,0.906637,,0.907083,,0.90615,,0.494533,,69.934473,,69.936134,,69.877666,,70,,70,,,,,,,,,,,,22704,,1.776765,,1.776765,,1.776765,,1.776765,,0.90615,,70,,, +9464,-1,0.609857,0,3,0,1,1,,5,6,S I 75,,1226909,4.294,4.904,0,,1.02,7,,0.522734,,0.522734,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.523137,,0.522734,,0.523137,,0.523192,,0.522734,,0.523192,,0.523731,,0.522734,,0.523731,,0.522734,,0.522734,,0.522734,,,,,,,,0.523137,,0.523192,,0.523731,,0.522734,,0.522734,,0.266715,,0.266732,,0.266894,,0.266594,,0.145494,,69.946061,,69.938713,,69.866765,,70,,70,,,,,,,,,,,,22704,,0.522734,,0.522734,,0.522734,,0.522734,,0.266594,,70,, +9465,-1,1.911307,0,3,0,1,1,,5,6,S I 75,,1226909,2.384,4.294,0,,1.02,7,,1.638263,,1.638263,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.639526,,1.638263,,1.639526,,1.639699,,1.638263,,1.639699,,1.641387,,1.638263,,1.641387,,1.638263,,1.638263,,1.638263,,,,,,,,1.639526,,1.639699,,1.641387,,1.638263,,1.638263,,0.835893,,0.835945,,0.836451,,0.835514,,0.455983,,69.946061,,69.938713,,69.866765,,70,,70,,,,,,,,,,,,22704,,1.638263,,1.638263,,1.638263,,1.638263,,0.835514,,70,, +31149,0,2.018692,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,43.257676,0.15,4,8.074766,8.074766,8.074766,8.074766,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,,,,,,,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,2.785794,2.785794,2.785794,2.785794,2.785794,2.785794,2.785794,2.785794,1.433271,1.433271,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,8.074766,2.785794,2.785794,15,15,, +9441,1,0.410434,3,0,0,1,1,,5,6,N I 75,,1226910,1.778,2.188,0,,1.02,7,0.351801,,0.351801,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.353171,,0.351801,,0.353171,,0.352979,,0.351801,,0.352979,,0.35479,,0.351801,,0.35479,,0.351801,,0.351801,,0.351801,,,,,,,,0.353171,,0.352979,,0.35479,,0.351801,,0.351801,,0.17983,,0.179772,,0.180315,,0.179418,,0.097918,,69.7284,,69.766365,,69.410314,,70,,70,,,,,,,,,,,,22704,,0.351801,,0.351801,,0.351801,,0.351801,,0.179418,,70,,, +9466,-1,0.285963,0,3,0,1,1,,5,6,S I 75,,1226909,2.098,2.384,0,,1.02,7,,0.245111,,0.245111,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.245924,,0.245111,,0.245924,,0.245909,,0.245111,,0.245909,,0.247258,,0.245111,,0.247258,,0.245111,,0.245111,,0.245111,,,,,,,,0.245924,,0.245909,,0.247258,,0.245111,,0.245111,,0.125251,,0.125246,,0.125651,,0.125007,,0.068223,,69.768596,,69.77301,,69.392298,,70,,70,,,,,,,,,,,,22704,,0.245111,,0.245111,,0.245111,,0.245111,,0.125007,,70,, +31101,0,0.852717,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,18.272498,0.15,4,3.410866,3.410866,3.410866,3.410866,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,,,,,,,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,1.176749,1.176749,1.176749,1.176749,1.176749,1.176749,1.176749,1.176749,0.605429,0.605429,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,3.410866,1.176749,1.176749,15,15,, +31150,0,1.274665,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.314245,0.15,4,5.098659,5.098659,5.098659,5.098659,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,,,,,,,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,1.759037,1.759037,1.759037,1.759037,1.759037,1.759037,1.759037,1.759037,0.905012,0.905012,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,5.098659,1.759037,1.759037,15,15,, +33815,0,0.862061,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,18.472734,0.15,4,3.448244,3.448244,3.448244,3.448244,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,,,,,,,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,1.189644,1.189644,1.189644,1.189644,1.189644,1.189644,1.189644,1.189644,0.612063,0.612063,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,3.448244,1.189644,1.189644,15,15,, +9190,0,0.493914,1,1,0,2,4,,5,6,Sterns,Rd,1223310,14.185,14.679,0,10.583875,3,4,0.740871,0.740871,0.740871,0.740871,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.808365,1.179487,0.740871,0.740871,1.808365,1.179487,1.0732,1.040099,0.740871,0.740871,1.0732,1.040099,1.431261,1.544348,0.740871,0.740871,1.431261,1.544348,0.740871,0.740871,0.740871,0.740871,0.740871,0.740871,,,,,,,1.808365,1.179487,1.0732,1.040099,1.431261,1.544348,0.740871,0.740871,0.740871,0.740871,0.631414,0.442751,0.410865,0.400934,0.518283,0.552209,0.311166,0.311166,0.165461,0.165461,16.387653,25.125206,27.61353,28.492333,20.705414,19.189233,40,40,40,40,,,,,,,,,,,3096,3096,0.740871,0.740871,0.740871,0.740871,0.740871,0.740871,0.740871,0.740871,0.311166,0.311166,40,40,, +9347,1,0.32356,1,0,0,1,1,RON,5,6,Summit/N I 75,RAMP,1227803,1.394,1.717,0,,1.09,4,0.431414,,0.431414,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.459297,,0.431414,,0.459297,,0.439831,,0.431414,,0.439831,,0.449454,,0.431414,,0.449454,,0.431414,,0.431414,,0.431414,,,,,,,,0.459297,,0.439831,,0.449454,,0.431414,,0.431414,,0.19603,,0.19019,,0.193077,,0.187665,,0.100304,,42.268068,,44.138755,,43.193767,,45,,45,,,,,,,,,,,,5160,,0.431414,,0.431414,,0.431414,,0.431414,,0.187665,,45,,, +40119,0,0.500053,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.715426,0.15,4,2.000213,2.000213,2.000213,2.000213,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,,,,,,,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,0.690073,0.690073,0.690073,0.690073,0.690073,0.690073,0.690073,0.690073,0.355038,0.355038,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,2.000213,0.690073,0.690073,15,15,, +9348,0,0.146308,2,2,1,2,4,,5,6,Summit,St,1227803,1.247,1.394,0,3.135167,3,4,0.219462,0.219462,0.219462,0.219462,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.234955,0.225272,0.219462,0.219462,0.234955,0.225272,0.224138,0.223649,0.219462,0.219462,0.224138,0.223649,0.229484,0.23166,0.219462,0.219462,0.229484,0.23166,0.219462,0.219462,0.219462,0.219462,0.219462,0.219462,,,,,,,0.234955,0.225272,0.224138,0.223649,0.229484,0.23166,0.219462,0.219462,0.219462,0.219462,0.096822,0.093917,0.093577,0.09343,0.095181,0.095833,0.092174,0.092174,0.049013,0.049013,37.362302,38.96832,39.165507,39.251171,38.253085,37.893815,40,40,40,40,,,,,,,,,,,6502,6502,0.219462,0.219462,0.219462,0.219462,0.219462,0.219462,0.219462,0.219462,0.092174,0.092174,40,40,, +9349,0,0.066406,2,2,1,2,4,,5,6,Summit,St,1227803,1.181,1.247,0,1.422978,3,4,0.099608,0.099608,0.099608,0.099608,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.107974,0.103152,0.099608,0.099608,0.107974,0.103152,0.102393,0.102126,0.099608,0.099608,0.102393,0.102126,0.105951,0.106905,0.099608,0.099608,0.105951,0.106905,0.099608,0.099608,0.099608,0.099608,0.099608,0.099608,,,,,,,0.107974,0.103152,0.102393,0.102126,0.105951,0.106905,0.099608,0.099608,0.099608,0.099608,0.044345,0.042899,0.042671,0.042591,0.043738,0.044025,0.041836,0.041836,0.022246,0.022246,36.901008,38.625718,38.91211,39.013862,37.605489,37.269762,40,40,40,40,,,,,,,,,,,6502,6502,0.099608,0.099608,0.099608,0.099608,0.099608,0.099608,0.099608,0.099608,0.041836,0.041836,40,40,, +9369,1,0.620405,2,0,0,1,1,ROF,5,6,N I 75/Summit,RAMP,1227206,0,0.62,0,,2.24,5,0.930608,,0.930608,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.931034,,0.930608,,0.931034,,0.93086,,0.930608,,0.93086,,0.93179,,0.930608,,0.93179,,0.930608,,0.930608,,0.930608,,,,,,,,0.931034,,0.93086,,0.93179,,0.930608,,0.930608,,0.390983,,0.390931,,0.39121,,0.390855,,0.207836,,39.981673,,39.98916,,39.949254,,40,,40,,,,,,,,,,,,10320,,0.930608,,0.930608,,0.930608,,0.930608,,0.390855,,40,,, +9374,-1,0.371105,0,2,0,1,1,RON,5,6,Summit/S I 75,RAMP,1227205,0,0.371,0,,1.09,4,,0.494807,,0.494807,,45,,30000,,6810,,15000,,9678,,10320,,10308,,0.495406,,0.494807,,0.495406,,0.49521,,0.494807,,0.49521,,0.496029,,0.494807,,0.496029,,0.494807,,0.494807,,0.494807,,,,,,,,0.495406,,0.49521,,0.496029,,0.494807,,0.494807,,0.215421,,0.215362,,0.215608,,0.215241,,0.115043,,44.94556,,44.963333,,44.889118,,45,,45,,,,,,,,,,,,10320,,0.494807,,0.494807,,0.494807,,0.494807,,0.215241,,45,, +8705,0,0.840105,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,10.26,11.1,0,18.002255,3,4,1.260158,1.260158,1.260158,1.260158,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.582228,1.315586,1.260158,1.260158,1.582228,1.315586,1.284106,1.287417,1.260158,1.260158,1.284106,1.287417,1.35622,1.695751,1.260158,1.260158,1.35622,1.695751,1.260158,1.260158,1.260158,1.260158,1.260158,1.260158,,,,,,,1.582228,1.315586,1.284106,1.287417,1.35622,1.695751,1.260158,1.260158,1.260158,1.260158,0.625887,0.545895,0.536451,0.537444,0.558085,0.659944,0.529266,0.529266,0.281435,0.281435,31.857814,38.314713,39.254027,39.15306,37.166767,29.725076,40,40,40,40,,,,,,,,,,,3096,3096,1.260158,1.260158,1.260158,1.260158,1.260158,1.260158,1.260158,1.260158,0.529266,0.529266,40,40,, +9254,0,1.394732,1,1,0,2,6,,5,6,Erie,Rd,1232207,10.404,11.798,0,29.887109,5.8,6,2.789464,2.789464,2.789464,2.789464,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.927156,2.789477,2.789464,2.789464,2.927156,2.789477,2.789464,2.789464,2.789464,2.789464,2.789464,2.789464,2.78947,2.864072,2.789464,2.789464,2.78947,2.864072,2.789464,2.789464,2.789464,2.789464,2.789464,2.789464,,,,,,,2.927156,2.789477,2.789464,2.789464,2.78947,2.864072,2.789464,2.789464,2.789464,2.789464,1.129199,1.087895,1.087891,1.087891,1.087893,1.110273,1.087891,1.087891,0.57184,0.57184,28.588806,29.999858,29.999999,29.999996,29.999926,29.218508,30,30,30,30,,,,,,,,,,,2236,2236,2.789464,2.789464,2.789464,2.789464,2.789464,2.789464,2.789464,2.789464,1.087891,1.087891,30,30,, +9366,1,0.65779,2,0,0,2,4,DIV,5,6,Summit,St,1227206,2.335,2.992,0,14.095505,3,4,0.877054,,0.877054,,45,,20000,,4540,,10000,,6452,,6880,,6872,,0.877374,,0.877054,,0.877374,,0.877201,,0.877054,,0.877201,,0.878164,,0.877054,,0.878164,,0.877054,,0.877054,,0.877054,,,,,,,,0.877374,,0.877201,,0.878164,,0.877054,,0.877054,,0.381614,,0.381562,,0.381852,,0.381518,,0.203915,,44.983591,,44.99245,,44.943084,,45,,45,,,,,,,,,,,,6880,,0.877054,,0.877054,,0.877054,,0.877054,,0.381518,,45,,, +9371,-1,0.591632,0,2,0,2,4,DIV,5,6,Summit,St,1227205,2.084,2.676,0,12.67783,3,4,,0.788843,,0.788843,,45,,20000,,4540,,10000,,6452,,6880,,6872,,0.789465,,0.788843,,0.789465,,0.788984,,0.788843,,0.788984,,0.789404,,0.788843,,0.789404,,0.788843,,0.788843,,0.788843,,,,,,,,0.789465,,0.788984,,0.789404,,0.788843,,0.788843,,0.343333,,0.343189,,0.343315,,0.343147,,0.183406,,44.964543,,44.991927,,44.968009,,45,,45,,,,,,,,,,,,6880,,0.788843,,0.788843,,0.788843,,0.788843,,0.343147,,45,, +9367,1,1.004791,2,0,0,2,4,DIV,5,6,Summit,St,1227206,1.33,2.335,0,21.531234,3,4,1.339721,,1.339721,,45,,20000,,4540,,10000,,6452,,6880,,6872,,1.367484,,1.339721,,1.367484,,1.353925,,1.339721,,1.353925,,1.372375,,1.339721,,1.372375,,1.339721,,1.339721,,1.339721,,,,,,,,1.367484,,1.353925,,1.372375,,1.339721,,1.339721,,0.591108,,0.58704,,0.592575,,0.582779,,0.311485,,44.086401,,44.527901,,43.929294,,45,,45,,,,,,,,,,,,6880,,1.339721,,1.339721,,1.339721,,1.339721,,0.582779,,45,,, +9372,-1,1.004485,0,2,0,2,4,DIV,5,6,Summit,St,1227205,1.08,2.084,0,21.524669,3,4,,1.339313,,1.339313,,45,,20000,,4540,,10000,,6452,,6880,,6872,,1.358733,,1.339313,,1.358733,,1.354547,,1.339313,,1.354547,,1.391175,,1.339313,,1.391175,,1.339313,,1.339313,,1.339313,,,,,,,,1.358733,,1.354547,,1.391175,,1.339313,,1.339313,,0.588427,,0.587171,,0.59816,,0.582601,,0.31139,,44.356802,,44.4939,,43.322436,,45,,45,,,,,,,,,,,,6880,,1.339313,,1.339313,,1.339313,,1.339313,,0.582601,,45,, +9376,0,0.008008,1,1,0,2,7,,5,6,Temperance,Rd,1227110,0.714,0.722,0,0.171603,5.8,6,0.01922,0.01922,0.01922,0.01922,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,,,,,,,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.007207,0.007207,0.007207,0.007207,0.007207,0.007208,0.007207,0.007207,0.003764,0.003764,25,25,25,25,25,24.999091,25,25,25,25,,,,,,,,,,,2064,2064,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.01922,0.007207,0.007207,25,25,, +9377,0,0.012501,1,1,0,2,7,,5,6,Temperance,Rd,1227110,0.701,0.714,0,0.267889,5.8,6,0.030004,0.030004,0.030004,0.030004,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,0.030005,0.030004,0.030004,0.030004,0.030005,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,,,,,,,0.030004,0.030004,0.030004,0.030004,0.030004,0.030005,0.030004,0.030004,0.030004,0.030004,0.011251,0.011251,0.011251,0.011251,0.011251,0.011252,0.011251,0.011251,0.005876,0.005876,25,25,25,25,25,24.99872,25,25,25,25,,,,,,,,,,,2064,2064,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,0.030004,0.011251,0.011251,25,25,, +9255,0,0.009142,1,1,0,2,6,,5,6,Erie,Rd,1232207,10.395,10.404,0,0.195909,5.8,6,0.018285,0.018285,0.018285,0.018285,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.019187,0.027087,0.018285,0.018285,0.019187,0.027087,0.018285,0.020861,0.018285,0.018285,0.018285,0.020861,0.018285,0.071237,0.018285,0.018285,0.018285,0.071237,0.018285,0.018285,0.018285,0.018285,0.018285,0.018285,,,,,,,0.019187,0.027087,0.018285,0.020861,0.018285,0.071237,0.018285,0.018285,0.018285,0.018285,0.007402,0.009772,0.007131,0.007904,0.007131,0.023017,0.007131,0.007131,0.003748,0.003748,28.588806,20.251399,29.999999,26.295084,29.999926,7.700335,30,30,30,30,,,,,,,,,,,2236,2236,0.018285,0.018285,0.018285,0.018285,0.018285,0.018285,0.018285,0.018285,0.007131,0.007131,30,30,, +9406,0,0.443463,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.433,5.876,0,9.502781,3,4,0.665195,0.665195,0.665195,0.665195,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.716972,0.678708,0.665195,0.665195,0.716972,0.678708,0.670716,0.669944,0.665195,0.665195,0.670716,0.669944,0.715668,0.777376,0.665195,0.665195,0.715668,0.777376,0.665195,0.665195,0.665195,0.665195,0.665195,0.665195,,,,,,,0.716972,0.678708,0.670716,0.669944,0.715668,0.777376,0.665195,0.665195,0.665195,0.665195,0.294915,0.283436,0.281038,0.280807,0.294524,0.313036,0.279382,0.279382,0.14856,0.14856,37.111349,39.203575,39.670738,39.716434,37.178953,34.227692,40,40,40,40,,,,,,,,,,,3096,3096,0.665195,0.665195,0.665195,0.665195,0.665195,0.665195,0.665195,0.665195,0.279382,0.279382,40,40,, +9370,-1,0.051348,0,2,0,2,4,DIV,5,6,Summit,St,1227205,2.676,2.727,0,1.10032,3,4,,0.068464,,0.068464,,45,,20000,,4540,,10000,,6452,,6880,,6872,,0.068495,,0.068464,,0.068495,,0.068477,,0.068464,,0.068477,,0.068513,,0.068464,,0.068513,,0.068464,,0.068464,,0.068464,,,,,,,,0.068495,,0.068477,,0.068513,,0.068464,,0.068464,,0.029791,,0.029786,,0.029797,,0.029782,,0.015918,,44.980064,,44.991927,,44.968009,,45,,45,,,,,,,,,,,,6880,,0.068464,,0.068464,,0.068464,,0.068464,,0.029782,,45,, +9375,1,0.022506,1,0,0,2,4,,5,6,Dixie/Summit Cutoff,,1227204,0,0.023,0,0.482261,3,4,0.033758,,0.033758,,40,,9000,,2043,,4500,,2903,,3096,,3092,,0.033759,,0.033758,,0.033759,,0.033758,,0.033758,,0.033758,,0.033758,,0.033758,,0.033758,,0.033758,,0.033758,,0.033758,,,,,,,,0.033759,,0.033758,,0.033758,,0.033758,,0.033758,,0.014179,,0.014178,,0.014178,,0.014178,,0.007539,,39.999751,,40,,40,,40,,40,,,,,,,,,,,,3096,,0.033758,,0.033758,,0.033758,,0.033758,,0.014178,,40,,, +9408,0,0.053024,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.364,5.417,0,1.136218,3,4,0.079535,0.079535,0.079535,0.079535,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.079725,0.079536,0.079535,0.079535,0.079725,0.079536,0.079536,0.079535,0.079535,0.079535,0.079536,0.079535,0.079552,0.080119,0.079535,0.079535,0.079552,0.080119,0.079535,0.079535,0.079535,0.079535,0.079535,0.079535,,,,,,,0.079725,0.079536,0.079536,0.079535,0.079552,0.080119,0.079535,0.079535,0.079535,0.079535,0.033462,0.033405,0.033405,0.033405,0.03341,0.03358,0.033405,0.033405,0.017763,0.017763,39.904657,39.999631,39.999771,39.99995,39.991594,39.708591,40,40,40,40,,,,,,,,,,,3096,3096,0.079535,0.079535,0.079535,0.079535,0.079535,0.079535,0.079535,0.079535,0.033405,0.033405,40,40,, +9407,0,0.016224,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.417,5.433,0,0.347664,3,4,0.024336,0.024336,0.024336,0.024336,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.024395,0.024831,0.024336,0.024336,0.024395,0.024831,0.024337,0.02451,0.024336,0.024336,0.024337,0.02451,0.024342,0.028834,0.024336,0.024336,0.024342,0.028834,0.024336,0.024336,0.024336,0.024336,0.024336,0.024336,,,,,,,0.024395,0.024831,0.024337,0.02451,0.024342,0.028834,0.024336,0.024336,0.024336,0.024336,0.010239,0.01037,0.010221,0.010273,0.010223,0.011571,0.010221,0.010221,0.005435,0.005435,39.904657,39.203575,39.999771,39.716434,39.991594,33.760688,40,40,40,40,,,,,,,,,,,3096,3096,0.024336,0.024336,0.024336,0.024336,0.024336,0.024336,0.024336,0.024336,0.010221,0.010221,40,40,, +9314,1,0.274186,1,0,0,1,1,RON,5,6,Erie/S I 75,RAMP,1228110,0,0.274,0,,1.09,4,0.365581,,0.365581,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.365581,,0.365581,,0.365581,,0.365581,,0.365581,,0.365581,,0.365581,,0.365581,,0.365581,,0.365581,,0.365581,,0.365581,,,,,,,,0.365581,,0.365581,,0.365581,,0.365581,,0.365581,,0.159028,,0.159028,,0.159028,,0.159028,,0.084998,,45,,45,,45,,45,,45,,,,,,,,,,,,5160,,0.365581,,0.365581,,0.365581,,0.365581,,0.159028,,45,,, +31112,0,0.25558,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,5.476712,0.15,4,1.02232,1.02232,1.02232,1.02232,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,,,,,,,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,0.3527,0.3527,0.3527,0.3527,0.3527,0.3527,0.3527,0.3527,0.181462,0.181462,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,1.02232,0.3527,0.3527,15,15,, +9345,1,0.172112,1,0,0,1,1,RON,5,6,Eire/N I 75,RAMP,1227805,0,0.172,0,,1.09,4,0.229482,,0.229482,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.230188,,0.229482,,0.230188,,0.229482,,0.229482,,0.229482,,0.229485,,0.229482,,0.229485,,0.229482,,0.229482,,0.229482,,,,,,,,0.230188,,0.229482,,0.229485,,0.229482,,0.229482,,0.100036,,0.099825,,0.099826,,0.099825,,0.053355,,44.862075,,44.999936,,44.999486,,45,,45,,,,,,,,,,,,5160,,0.229482,,0.229482,,0.229482,,0.229482,,0.099825,,45,,, +9956,0,0.161205,1,1,0,2,5,,5,6,Harold,Dr,1240702,0.547,0.708,0,3.454385,3.7,5,0.322409,0.322409,0.322409,0.322409,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.322448,0.323661,0.322409,0.322409,0.322448,0.323661,0.322481,0.32252,0.322409,0.322409,0.322481,0.32252,0.324248,0.322659,0.322409,0.322409,0.324248,0.322659,0.322409,0.322409,0.322409,0.322409,0.322409,0.322409,,,,,,,0.322448,0.323661,0.322481,0.32252,0.324248,0.322659,0.322409,0.322409,0.322409,0.322409,0.125751,0.126115,0.125761,0.125773,0.126291,0.125815,0.12574,0.12574,0.066094,0.066094,29.996381,29.884009,29.993324,29.989718,29.829877,29.976739,30,30,30,30,,,,,,,,,,,2580,2580,0.322409,0.322409,0.322409,0.322409,0.322409,0.322409,0.322409,0.322409,0.12574,0.12574,30,30,, +20529,0,0.692321,1,1,0,2,5,,5,6,Erie,Rd,4301690,0,0.692,0,14.835445,3.7,5,1.384642,1.384642,1.384642,1.384642,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,,,,,,,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,0.54001,0.54001,0.54001,0.54001,0.54001,0.54001,0.54001,0.54001,0.283852,0.283852,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,1.384642,0.54001,0.54001,30,30,, +31102,0,0.81536,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,17.472007,0.15,4,3.261441,3.261441,3.261441,3.261441,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,,,,,,,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,1.125197,1.125197,1.125197,1.125197,1.125197,1.125197,1.125197,1.125197,0.578906,0.578906,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,3.261441,1.125197,1.125197,15,15,, +9252,0,0.144804,1,1,0,2,5,,5,6,Erie,Rd,1232207,12.024,12.168,0,3.102945,3.7,5,0.289608,0.289608,0.289608,0.289608,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.289608,0.28961,0.289608,0.289608,0.289608,0.28961,0.289608,0.289608,0.289608,0.289608,0.289608,0.289608,0.289609,0.289608,0.289608,0.289608,0.289609,0.289608,0.289608,0.289608,0.289608,0.289608,0.289608,0.289608,,,,,,,0.289608,0.28961,0.289608,0.289608,0.289609,0.289608,0.289608,0.289608,0.289608,0.289608,0.112947,0.112948,0.112947,0.112947,0.112947,0.112947,0.112947,0.112947,0.05937,0.05937,30,29.999824,30,29.999997,29.999935,29.99999,30,30,30,30,,,,,,,,,,,2580,2580,0.289608,0.289608,0.289608,0.289608,0.289608,0.289608,0.289608,0.289608,0.112947,0.112947,30,30,, +8690,0,0.251563,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,12.081,12.333,0,5.390639,3,4,0.377345,0.377345,0.377345,0.377345,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.504116,0.377484,0.377345,0.377345,0.504116,0.377484,0.389368,0.377378,0.377345,0.377345,0.389368,0.377378,0.43692,0.377407,0.377345,0.377345,0.43692,0.377407,0.377345,0.377345,0.377345,0.377345,0.377345,0.377345,,,,,,,0.504116,0.377484,0.389368,0.377378,0.43692,0.377407,0.377345,0.377345,0.377345,0.377345,0.196516,0.158527,0.162092,0.158495,0.176357,0.158503,0.158485,0.158485,0.084274,0.084274,29.941112,39.985207,38.764851,39.99651,34.545904,39.993402,40,40,40,40,,,,,,,,,,,3096,3096,0.377345,0.377345,0.377345,0.377345,0.377345,0.377345,0.377345,0.377345,0.158485,0.158485,40,40,, +9416,1,0.388394,1,0,0,1,1,ROF,5,6,N I 75/Luna Pier,RAMP,1227001,0,0.388,0,,2.24,5,0.58259,,0.58259,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.58259,,0.58259,,0.58259,,0.58259,,0.58259,,0.58259,,0.58259,,0.58259,,0.58259,,0.58259,,0.58259,,0.58259,,,,,,,,0.58259,,0.58259,,0.58259,,0.58259,,0.58259,,0.244688,,0.244688,,0.244688,,0.244688,,0.130112,,39.999999,,39.999998,,39.999999,,40,,40,,,,,,,,,,,,5160,,0.58259,,0.58259,,0.58259,,0.58259,,0.244688,,40,,, +9438,1,0.680968,3,0,0,1,1,,5,6,N I 75,,1226910,4.81,5.491,0,,1.02,7,0.583687,,0.583687,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.585074,,0.583687,,0.585074,,0.584303,,0.583687,,0.584303,,0.584962,,0.583687,,0.584962,,0.583687,,0.583687,,0.583687,,,,,,,,0.585074,,0.584303,,0.584962,,0.583687,,0.583687,,0.298097,,0.297865,,0.298063,,0.29768,,0.16246,,69.834021,,69.926189,,69.847439,,70,,70,,,,,,,,,,,,22704,,0.583687,,0.583687,,0.583687,,0.583687,,0.29768,,70,,, +9463,-1,0.580324,0,3,0,1,1,,5,6,S I 75,,1226909,4.904,5.484,0,,1.02,7,,0.497421,,0.497421,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.497896,,0.497421,,0.497896,,0.497922,,0.497421,,0.497922,,0.499445,,0.497421,,0.499445,,0.497421,,0.497421,,0.497421,,,,,,,,0.497896,,0.497922,,0.499445,,0.497421,,0.497421,,0.253827,,0.253835,,0.254292,,0.253685,,0.138449,,69.933209,,69.929603,,69.716233,,70,,70,,,,,,,,,,,,22704,,0.497421,,0.497421,,0.497421,,0.497421,,0.253685,,70,, +20188,1,0.255967,1,0,0,1,1,RON,5,6,Luna Pier/S I 75,RAMP,4302174,0,0.256,0,,1.09,4,0.34129,,0.34129,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.34129,,0.34129,,0.34129,,0.34129,,0.34129,,0.34129,,0.34129,,0.34129,,0.34129,,0.34129,,0.34129,,0.34129,,,,,,,,0.34129,,0.34129,,0.34129,,0.34129,,0.34129,,0.148461,,0.148461,,0.148461,,0.148461,,0.07935,,44.999986,,44.999991,,44.99995,,45,,45,,,,,,,,,,,,5160,,0.34129,,0.34129,,0.34129,,0.34129,,0.148461,,45,,, +8500,0,0.224618,1,1,0,2,5,,5,6,Luna Pier,Rd,1226710,12.333,12.557,0,4.813237,3.7,5,0.449235,0.449235,0.449235,0.449235,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.44929,0.450979,0.449235,0.449235,0.44929,0.450979,0.449335,0.449389,0.449235,0.449235,0.449335,0.449389,0.451798,0.449584,0.449235,0.449235,0.451798,0.449584,0.449235,0.449235,0.449235,0.449235,0.449235,0.449235,,,,,,,0.44929,0.450979,0.449335,0.449389,0.451798,0.449584,0.449235,0.449235,0.449235,0.449235,0.175218,0.175725,0.175232,0.175248,0.17597,0.175306,0.175202,0.175202,0.092093,0.092093,29.996381,29.884009,29.993324,29.989718,29.829877,29.976739,30,30,30,30,,,,,,,,,,,2580,2580,0.449235,0.449235,0.449235,0.449235,0.449235,0.449235,0.449235,0.449235,0.175202,0.175202,30,30,, +31100,0,0.321179,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,6.88241,0.15,4,1.284716,1.284716,1.284716,1.284716,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.284717,1.284716,1.284716,1.284716,1.284717,1.284716,1.284716,1.284716,1.284716,1.284716,1.284716,1.284716,1.284716,1.284717,1.284716,1.284716,1.284716,1.284717,1.284716,1.284716,1.284716,1.284716,1.284716,1.284716,,,,,,,1.284717,1.284716,1.284716,1.284716,1.284716,1.284717,1.284716,1.284716,1.284716,1.284716,0.443227,0.443227,0.443227,0.443227,0.443227,0.443227,0.443227,0.443227,0.228037,0.228037,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.284716,1.284716,1.284716,1.284716,1.284716,1.284716,1.284716,1.284716,0.443227,0.443227,15,15,, +8639,0,0.17267,1,1,0,2,6,,4,6,Patterson,Dr,1224601,0.291,0.463,0,3.700066,6.55,4.5,0.38371,0.38371,0.38371,0.38371,27,27,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.390676,0.3979,0.38371,0.38371,0.390676,0.3979,0.384583,0.383843,0.38371,0.38371,0.384583,0.383843,0.408841,0.403771,0.38371,0.38371,0.408841,0.403771,0.38371,0.38371,0.38371,0.38371,0.38371,0.38371,,,,,,,0.390676,0.3979,0.384583,0.383843,0.408841,0.403771,0.38371,0.38371,0.38371,0.38371,0.148283,0.150451,0.146455,0.146233,0.153733,0.152212,0.146194,0.146194,0.07655,0.07655,26.518591,26.037144,26.938762,26.990678,25.340345,25.658574,27,27,27,27,,,,,,,,,,,2236,2236,0.38371,0.38371,0.38371,0.38371,0.38371,0.38371,0.38371,0.38371,0.146194,0.146194,27,27,, +8772,0,0.17051,1,1,0,2,4,,4,6,Custer,Rd,1223803,18.124,18.295,0,3.653788,4.5,4.5,0.269226,0.269226,0.269226,0.269226,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.408692,0.342214,0.269226,0.269226,0.408692,0.342214,0.278656,0.286003,0.269226,0.269226,0.278656,0.286003,0.38864,0.494637,0.269226,0.269226,0.38864,0.494637,0.269226,0.269226,0.269226,0.269226,0.269226,0.269226,,,,,,,0.408692,0.342214,0.278656,0.286003,0.38864,0.494637,0.269226,0.269226,0.269226,0.269226,0.153299,0.133356,0.114289,0.116493,0.147284,0.179083,0.11146,0.11146,0.05914,0.05914,25.032563,29.895356,36.714129,35.771001,26.324124,20.683053,38,38,38,38,,,,,,,,,,,3096,3096,0.269226,0.269226,0.269226,0.269226,0.269226,0.269226,0.269226,0.269226,0.11146,0.11146,38,38,, +9052,0,0.627848,1,1,1,2,4,,3,6,Custer,Rd,1226001,18.942,19.57,0,13.453885,6,4.5,1.141542,1.141542,1.141542,1.141542,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.451449,1.167991,1.141542,1.141542,1.451449,1.167991,1.242192,1.229045,1.141542,1.141542,1.242192,1.229045,1.435492,1.876829,1.141542,1.141542,1.435492,1.876829,1.141542,1.141542,1.141542,1.141542,1.141542,1.141542,,,,,,,1.451449,1.167991,1.242192,1.229045,1.435492,1.876829,1.141542,1.141542,1.141542,1.141542,0.548447,0.46341,0.48567,0.481726,0.54366,0.676061,0.455475,0.455475,0.240295,0.240295,25.953978,32.252718,30.326143,30.65053,26.242486,20.071561,33,33,33,33,,,,,,,,,,,2838,2838,1.141542,1.141542,1.141542,1.141542,1.141542,1.141542,1.141542,1.141542,0.455475,0.455475,33,33,, +9289,0,0.155623,1,1,0,2,5,,4,6,7th,St,4302993,0.617,0.773,0,3.334769,5.8,4.5,0.345828,0.345828,0.345828,0.345828,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.385512,0.385318,0.345828,0.345828,0.385512,0.385318,0.36608,0.365878,0.345828,0.345828,0.36608,0.365878,0.400368,0.408038,0.345828,0.345828,0.400368,0.408038,0.345828,0.345828,0.345828,0.345828,0.345828,0.345828,,,,,,,0.385512,0.385318,0.36608,0.365878,0.400368,0.408038,0.345828,0.345828,0.345828,0.345828,0.143666,0.143607,0.137836,0.137775,0.148123,0.150423,0.13176,0.13176,0.068993,0.068993,24.220659,24.232878,25.506352,25.520402,23.321902,22.883553,27,27,27,27,,,,,,,,,,,2580,2580,0.345828,0.345828,0.345828,0.345828,0.345828,0.345828,0.345828,0.345828,0.13176,0.13176,27,27,, +9310,1,0.394834,1,0,0,1,1,RON,4,6,Laplaisance/S I 75,RAMP,1228206,0,0.395,0,,1.09,4,0.526445,,0.526445,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.528428,,0.526445,,0.528428,,0.528673,,0.526445,,0.528673,,0.530975,,0.526445,,0.530975,,0.526445,,0.526445,,0.526445,,,,,,,,0.528428,,0.528673,,0.530975,,0.526445,,0.526445,,0.229599,,0.229672,,0.230362,,0.229004,,0.122398,,44.831099,,44.810339,,44.616115,,45,,45,,,,,,,,,,,,5160,,0.526445,,0.526445,,0.526445,,0.526445,,0.229004,,45,,, +9363,0,0.560152,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,1.667,2.227,0,12.003247,3.7,5,1.120303,1.120303,1.120303,1.120303,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.131417,1.120381,1.120303,1.120303,1.131417,1.120381,1.12096,1.120487,1.120303,1.120303,1.12096,1.120487,1.120894,1.124721,1.120303,1.120303,1.120894,1.124721,1.120303,1.120303,1.120303,1.120303,1.120303,1.120303,,,,,,,1.131417,1.120381,1.12096,1.120487,1.120894,1.124721,1.120303,1.120303,1.120303,1.120303,0.440252,0.436942,0.437115,0.436973,0.437096,0.438244,0.436918,0.436918,0.229662,0.229662,29.70532,29.997918,29.982416,29.995077,29.984178,29.882158,30,30,30,30,,,,,,,,,,,2580,2580,1.120303,1.120303,1.120303,1.120303,1.120303,1.120303,1.120303,1.120303,0.436918,0.436918,30,30,, +9399,0,0.744345,1,1,0,2,4,,4,6,Dixie,Hwy,1227004,11.288,12.032,0,15.95025,4.5,4.5,1.175282,1.175282,1.175282,1.175282,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.327459,1.176114,1.175282,1.175282,1.327459,1.176114,1.178717,1.176357,1.175282,1.175282,1.178717,1.176357,1.212532,1.375272,1.175282,1.175282,1.212532,1.375272,1.175282,1.175282,1.175282,1.175282,1.175282,1.175282,,,,,,,1.327459,1.176114,1.178717,1.176357,1.212532,1.375272,1.175282,1.175282,1.175282,1.175282,0.53222,0.486816,0.487597,0.486889,0.497742,0.546564,0.486567,0.486567,0.25817,0.25817,33.643747,37.973105,37.889236,37.965256,36.832608,32.474079,38,38,38,38,,,,,,,,,,,3096,3096,1.175282,1.175282,1.175282,1.175282,1.175282,1.175282,1.175282,1.175282,0.486567,0.486567,38,38,, +9400,0,0.975821,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,10.313,11.288,0,20.91045,3,4,1.463732,1.463732,1.463732,1.463732,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.754197,1.468337,1.463732,1.463732,1.754197,1.468337,1.4759,1.467294,1.463732,1.463732,1.4759,1.467294,1.556519,1.795583,1.463732,1.463732,1.556519,1.795583,1.463732,1.463732,1.463732,1.463732,1.463732,1.463732,,,,,,,1.754197,1.468337,1.4759,1.467294,1.556519,1.795583,1.463732,1.463732,1.463732,1.463732,0.701907,0.616149,0.618418,0.615836,0.642604,0.714323,0.614767,0.614767,0.3269,0.3269,33.376683,39.874541,39.670211,39.902883,37.615507,32.607379,40,40,40,40,,,,,,,,,,,3096,3096,1.463732,1.463732,1.463732,1.463732,1.463732,1.463732,1.463732,1.463732,0.614767,0.614767,40,40,, +9432,1,0.299406,3,0,0,1,1,,4,6,N I 75,,1226910,11.237,11.536,0,,0.8,7.5,0.256634,,0.256634,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.257839,,0.256634,,0.257839,,0.256749,,0.256634,,0.256749,,0.256955,,0.256634,,0.256955,,0.256634,,0.256634,,0.256634,,,,,,,,0.257839,,0.256749,,0.256955,,0.256634,,0.256634,,0.131245,,0.130918,,0.13098,,0.130883,,0.07143,,69.672802,,69.968622,,69.912339,,70,,70,,,,,,,,,,,,22704,,0.256634,,0.256634,,0.256634,,0.256634,,0.130883,,70,,, +9436,1,2.045278,3,0,0,1,1,,5,6,N I 75,,1226910,6.134,8.179,0,,1.02,7,1.753095,,1.753095,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.766984,,1.753095,,1.766984,,1.756567,,1.753095,,1.756567,,1.760761,,1.753095,,1.760761,,1.753095,,1.753095,,1.753095,,,,,,,,1.766984,,1.756567,,1.760761,,1.753095,,1.753095,,0.898245,,0.89512,,0.896378,,0.894078,,0.487945,,69.449785,,69.861649,,69.695254,,70,,70,,,,,,,,,,,,22704,,1.753095,,1.753095,,1.753095,,1.753095,,0.894078,,70,,, +9458,-1,0.782315,0,3,0,1,1,,4,6,S I 75,,1226909,11.124,11.906,0,,0.8,7.5,,0.670556,,0.670556,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.670722,,0.670556,,0.670722,,0.670739,,0.670556,,0.670739,,0.672581,,0.670556,,0.672581,,0.670556,,0.670556,,0.670556,,,,,,,,0.670722,,0.670739,,0.672581,,0.670556,,0.670556,,0.342033,,0.342038,,0.342591,,0.341983,,0.186638,,69.982617,,69.98088,,69.789154,,70,,70,,,,,,,,,,,,22704,,0.670556,,0.670556,,0.670556,,0.670556,,0.341983,,70,, +9461,-1,2.124131,0,3,0,1,1,,5,6,S I 75,,1226909,6.097,8.22,0,,1.02,7,,1.820684,,1.820684,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.823889,,1.820684,,1.823889,,1.824085,,1.820684,,1.824085,,1.844365,,1.820684,,1.844365,,1.820684,,1.820684,,1.820684,,,,,,,,1.823889,,1.824085,,1.844365,,1.820684,,1.820684,,0.92951,,0.929569,,0.935653,,0.928549,,0.506757,,69.876981,,69.869473,,69.101237,,70,,70,,,,,,,,,,,,22704,,1.820684,,1.820684,,1.820684,,1.820684,,0.928549,,70,, +10020,0,0.235985,1,1,0,2,4,,4,6,Laplaisance,Rd,1238308,1.866,2.102,0,5.056825,4.5,4.5,0.372608,0.372608,0.372608,0.372608,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.427963,0.39889,0.372608,0.372608,0.427963,0.39889,0.412457,0.372809,0.372608,0.372608,0.412457,0.372809,0.42177,0.374079,0.372608,0.372608,0.42177,0.374079,0.372608,0.372608,0.372608,0.372608,0.372608,0.372608,,,,,,,0.427963,0.39889,0.412457,0.372809,0.42177,0.374079,0.372608,0.372608,0.372608,0.372608,0.170866,0.162144,0.166214,0.15432,0.169008,0.154701,0.15426,0.15426,0.08185,0.08185,33.08492,35.496247,34.328717,37.979533,33.570725,37.850614,38,38,38,38,,,,,,,,,,,3096,3096,0.372608,0.372608,0.372608,0.372608,0.372608,0.372608,0.372608,0.372608,0.15426,0.15426,38,38,, +10054,0,0.977555,1,1,0,2,7,,5,6,Laplaisance,Rd,1238206,0.209,1.186,0,20.947604,5.8,6,2.346132,2.346132,2.346132,2.346132,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.346133,2.346134,2.346132,2.346132,2.346133,2.346134,2.346132,2.346139,2.346132,2.346132,2.346132,2.346139,2.346136,2.346154,2.346132,2.346132,2.346136,2.346154,2.346132,2.346132,2.346132,2.346132,2.346132,2.346132,,,,,,,2.346133,2.346134,2.346132,2.346139,2.346136,2.346154,2.346132,2.346132,2.346132,2.346132,0.8798,0.8798,0.8798,0.879802,0.879801,0.879806,0.879799,0.879799,0.459451,0.459451,24.999988,24.999976,24.999991,24.999922,24.999958,24.999766,25,25,25,25,,,,,,,,,,,2064,2064,2.346132,2.346132,2.346132,2.346132,2.346132,2.346132,2.346132,2.346132,0.879799,0.879799,25,25,, +10320,0,0.838607,1,1,0,2,5,,4,6,Albain,Rd,1234708,1.051,1.89,0,17.970154,5.8,4.5,1.863572,1.863572,1.863572,1.863572,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.942772,1.865,1.863572,1.863572,1.942772,1.865,1.864082,1.864169,1.863572,1.863572,1.864082,1.864169,1.869832,2.002737,1.863572,1.863572,1.869832,2.002737,1.863572,1.863572,1.863572,1.863572,1.863572,1.863572,,,,,,,1.942772,1.865,1.864082,1.864169,1.869832,2.002737,1.863572,1.863572,1.863572,1.863572,0.733781,0.710449,0.710174,0.7102,0.711899,0.75177,0.710021,0.710021,0.371783,0.371783,25.899293,26.979315,26.9926,26.991344,26.909594,25.123832,27,27,27,27,,,,,,,,,,,2580,2580,1.863572,1.863572,1.863572,1.863572,1.863572,1.863572,1.863572,1.863572,0.710021,0.710021,27,27,, +10331,0,0.798228,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,11.517,12.315,0,17.104885,4.5,4.5,1.26036,1.26036,1.26036,1.26036,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.373665,1.317879,1.26036,1.26036,1.373665,1.317879,1.288642,1.293469,1.26036,1.26036,1.288642,1.293469,1.397292,1.46066,1.26036,1.26036,1.397292,1.46066,1.26036,1.26036,1.26036,1.26036,1.26036,1.26036,,,,,,,1.373665,1.317879,1.288642,1.293469,1.397292,1.46066,1.26036,1.26036,1.26036,1.26036,0.55578,0.539045,0.530274,0.531722,0.562869,0.581879,0.521789,0.521789,0.276859,0.276859,34.86562,36.341487,37.166008,37.027316,34.27607,32.789073,38,38,38,38,,,,,,,,,,,3096,3096,1.26036,1.26036,1.26036,1.26036,1.26036,1.26036,1.26036,1.26036,0.521789,0.521789,38,38,, +19636,1,0.251853,1,0,0,1,1,RON,4,6,Laplaisance/N I 75,RAMP,1843903,0,0.252,0,,1.09,4,0.335804,,0.335804,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.335804,,0.335804,,0.335804,,0.335804,,0.335804,,0.335804,,0.335804,,0.335804,,0.335804,,0.335804,,0.335804,,0.335804,,,,,,,,0.335804,,0.335804,,0.335804,,0.335804,,0.335804,,0.146075,,0.146075,,0.146075,,0.146075,,0.078074,,45,,45,,45,,45,,45,,,,,,,,,,,,5160,,0.335804,,0.335804,,0.335804,,0.335804,,0.146075,,45,,, +20333,0,0.284061,1,1,0,2,5,,4,6,Albain,Rd,4301495,12.727,13.011,0,6.087028,5.8,4.5,0.631247,0.631247,0.631247,0.631247,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.636993,0.631629,0.631247,0.631247,0.636993,0.631629,0.631502,0.631586,0.631247,0.631247,0.631502,0.631586,0.632852,0.65367,0.631247,0.631247,0.632852,0.65367,0.631247,0.631247,0.631247,0.631247,0.631247,0.631247,,,,,,,0.636993,0.631629,0.631502,0.631586,0.632852,0.65367,0.631247,0.631247,0.631247,0.631247,0.242229,0.24062,0.240582,0.240607,0.240987,0.247232,0.240505,0.240505,0.125934,0.125934,26.756441,26.983688,26.989104,26.985511,26.931558,26.073824,27,27,27,27,,,,,,,,,,,2580,2580,0.631247,0.631247,0.631247,0.631247,0.631247,0.631247,0.631247,0.631247,0.240505,0.240505,27,27,, +20377,0,1.476314,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,10.883,12.359,0,31.635299,3.7,5,2.214471,2.214471,2.214471,2.214471,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,2.882251,2.28113,2.214471,2.214471,2.882251,2.28113,2.342006,2.311703,2.214471,2.214471,2.342006,2.311703,2.459891,2.914064,2.214471,2.214471,2.459891,2.914064,2.214471,2.214471,2.214471,2.214471,2.214471,2.214471,,,,,,,2.882251,2.28113,2.342006,2.311703,2.459891,2.914064,2.214471,2.214471,2.214471,2.214471,1.130412,0.950075,0.968338,0.959247,1.003704,1.139956,0.930078,0.930078,0.494565,0.494565,30.732516,38.831129,37.821781,38.317568,36.009254,30.397013,40,40,40,40,,,,,,,,,,,3784,3784,2.214471,2.214471,2.214471,2.214471,2.214471,2.214471,2.214471,2.214471,0.930078,0.930078,40,40,, +20774,0,0.340272,1,1,0,2,5,,4,6,Albain,Rd,4301495,11.483,11.823,0,7.29155,5.8,4.5,0.756161,0.756161,0.756161,0.756161,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.75693,0.757112,0.756161,0.756161,0.75693,0.757112,0.756268,0.756403,0.756161,0.756161,0.756268,0.756403,0.759485,0.760872,0.756161,0.756161,0.759485,0.760872,0.756161,0.756161,0.756161,0.756161,0.756161,0.756161,,,,,,,0.75693,0.757112,0.756268,0.756403,0.759485,0.760872,0.756161,0.756161,0.756161,0.756161,0.288328,0.288383,0.288129,0.28817,0.289094,0.289511,0.288097,0.288097,0.150854,0.150854,26.972552,26.966085,26.996163,26.991338,26.881827,26.832808,27,27,27,27,,,,,,,,,,,2580,2580,0.756161,0.756161,0.756161,0.756161,0.756161,0.756161,0.756161,0.756161,0.288097,0.288097,27,27,, +20870,0,1.269631,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,12.383,13.651,0,27.206387,3.7,5,1.904447,1.904447,1.904447,1.904447,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,2.574263,1.978891,1.904447,1.904447,2.574263,1.978891,2.030418,1.980397,1.904447,1.904447,2.030418,1.980397,2.286457,2.648418,1.904447,1.904447,2.286457,2.648418,1.904447,1.904447,1.904447,1.904447,1.904447,1.904447,,,,,,,2.574263,1.978891,2.030418,1.980397,2.286457,2.648418,1.904447,1.904447,1.904447,1.904447,1.000812,0.822201,0.837659,0.822653,0.914471,1.023059,0.799868,0.799868,0.425327,0.425327,29.592118,38.495242,37.518321,38.465967,33.316996,28.763545,40,40,40,40,,,,,,,,,,,3784,3784,1.904447,1.904447,1.904447,1.904447,1.904447,1.904447,1.904447,1.904447,0.799868,0.799868,40,40,, +31042,0,1.326579,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,28.426685,0.15,4,5.306314,5.306314,5.306314,5.306314,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,,,,,,,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,1.830678,1.830678,1.830678,1.830678,1.830678,1.830678,1.830678,1.830678,0.941871,0.941871,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,5.306314,1.830678,1.830678,15,15,, +31152,0,1.443412,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,30.930253,0.15,4,5.773647,5.773647,5.773647,5.773647,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,,,,,,,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,1.991908,1.991908,1.991908,1.991908,1.991908,1.991908,1.991908,1.991908,1.024822,1.024822,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,5.773647,1.991908,1.991908,15,15,, +31158,0,0.449221,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,9.626161,0.15,4,1.796883,1.796883,1.796883,1.796883,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.796884,1.796884,1.796883,1.796883,1.796884,1.796884,1.796884,1.796884,1.796883,1.796883,1.796884,1.796884,1.796884,1.796884,1.796883,1.796883,1.796884,1.796884,1.796883,1.796883,1.796883,1.796883,1.796883,1.796883,,,,,,,1.796884,1.796884,1.796884,1.796884,1.796884,1.796884,1.796883,1.796883,1.796883,1.796883,0.619925,0.619925,0.619925,0.619925,0.619925,0.619925,0.619925,0.619925,0.318947,0.318947,15,14.999999,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.796883,1.796883,1.796883,1.796883,1.796883,1.796883,1.796883,1.796883,0.619925,0.619925,15,15,, +31165,0,0.592551,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.697531,0.15,4,2.370206,2.370206,2.370206,2.370206,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,,,,,,,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,0.817721,0.817721,0.817721,0.817721,0.817721,0.817721,0.817721,0.817721,0.420712,0.420712,15,14.999998,15,15,14.999998,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,2.370206,0.817721,0.817721,15,15,, +31167,0,0.316055,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.772612,0.15,4,1.264221,1.264221,1.264221,1.264221,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,,,,,,,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,0.436156,0.436156,0.436156,0.436156,0.436156,0.436156,0.436156,0.436156,0.224399,0.224399,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,1.264221,0.436156,0.436156,15,15,, +34002,0,1.065541,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,22.833014,0.15,4,4.262163,4.262163,4.262163,4.262163,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,,,,,,,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,1.470446,1.470446,1.470446,1.470446,1.470446,1.470446,1.470446,1.470446,0.756534,0.756534,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,4.262163,1.470446,1.470446,15,15,, +9403,0,1.736896,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,8.303,10.039,0,37.219198,3,4,2.605344,2.605344,2.605344,2.605344,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.607905,2.605729,2.605344,2.605344,2.607905,2.605729,2.605752,2.605627,2.605344,2.605344,2.605752,2.605627,2.606658,2.60801,2.605344,2.605344,2.606658,2.60801,2.605344,2.605344,2.605344,2.605344,2.605344,2.605344,,,,,,,2.607905,2.605729,2.605752,2.605627,2.606658,2.60801,2.605344,2.605344,2.605344,2.605344,1.095013,1.09436,1.094367,1.094329,1.094639,1.095044,1.094244,1.094244,0.58186,0.58186,39.960717,39.994086,39.993732,39.995661,39.979827,39.959109,40,40,40,40,,,,,,,,,,,3096,3096,2.605344,2.605344,2.605344,2.605344,2.605344,2.605344,2.605344,2.605344,1.094244,1.094244,40,40,, +20127,0,0.434298,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,8.727,9.162,0,9.306388,1.7,4,0.521158,0.521158,0.521158,0.521158,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.688641,0.571753,0.521158,0.521158,0.688641,0.571753,0.571464,0.553649,0.521158,0.521158,0.571464,0.553649,0.65048,0.674003,0.521158,0.521158,0.65048,0.674003,0.521158,0.521158,0.521158,0.521158,0.521158,0.521158,,,,,,,0.688641,0.571753,0.571464,0.553649,0.65048,0.674003,0.521158,0.521158,0.521158,0.521158,0.284766,0.2497,0.249613,0.244268,0.273318,0.280374,0.234521,0.234521,0.125946,0.125946,37.839564,45.575389,45.598508,47.065728,40.059475,38.661402,50,50,50,50,,,,,,,,,,,3096,3096,0.521158,0.521158,0.521158,0.521158,0.521158,0.521158,0.521158,0.521158,0.234521,0.234521,50,50,, +20822,0,1.600812,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,9.162,10.762,0,34.303106,1.7,4,1.920974,1.920974,1.920974,1.920974,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.311144,2.094762,1.920974,1.920974,3.311144,2.094762,2.227729,2.117265,1.920974,1.920974,2.227729,2.117265,2.563616,3.270194,1.920974,1.920974,2.563616,3.270194,1.920974,1.920974,1.920974,1.920974,1.920974,1.920974,,,,,,,3.311144,2.094762,2.227729,2.117265,2.563616,3.270194,1.920974,1.920974,1.920974,1.920974,1.281489,0.916575,0.956465,0.923325,1.057231,1.269204,0.864438,0.864438,0.464235,0.464235,29.007706,45.85185,43.115065,45.364521,37.466096,29.370949,50,50,50,50,,,,,,,,,,,3096,3096,1.920974,1.920974,1.920974,1.920974,1.920974,1.920974,1.920974,1.920974,0.864438,0.864438,50,50,, +31154,0,1.718815,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.831744,0.15,4,6.875259,6.875259,6.875259,6.875259,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,,,,,,,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,2.371964,2.371964,2.371964,2.371964,2.371964,2.371964,2.371964,2.371964,1.220358,1.220358,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,6.875259,2.371964,2.371964,15,15,, +9404,0,1.900417,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,6.404,8.303,0,40.723221,3,4,2.850625,2.850625,2.850625,2.850625,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.856027,2.851851,2.850625,2.850625,2.856027,2.851851,2.851811,2.851188,2.850625,2.850625,2.851811,2.851188,2.855585,2.858118,2.850625,2.850625,2.855585,2.858118,2.850625,2.850625,2.850625,2.850625,2.850625,2.850625,,,,,,,2.856027,2.851851,2.851811,2.851188,2.855585,2.858118,2.850625,2.850625,2.850625,2.850625,1.198883,1.19763,1.197618,1.197431,1.198751,1.19951,1.197263,1.197263,0.63664,0.63664,39.924347,39.982815,39.983373,39.992107,39.930522,39.895145,40,40,40,40,,,,,,,,,,,3096,3096,2.850625,2.850625,2.850625,2.850625,2.850625,2.850625,2.850625,2.850625,1.197263,1.197263,40,40,, +9360,0,1.656705,1,1,0,2,7,,5,6,Laplaisance,Rd,1227304,0,1.656,0,35.500817,5.8,6,3.976091,3.976091,3.976091,3.976091,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,,,,,,,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,1.491034,1.491034,1.491034,1.491034,1.491034,1.491034,1.491034,1.491034,0.778651,0.778651,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,3.976091,1.491034,1.491034,25,25,, +9365,0,1.456076,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,0,1.456,0,31.201629,3.7,5,2.912152,2.912152,2.912152,2.912152,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.912179,2.91225,2.912152,2.912152,2.912179,2.91225,2.912155,2.912162,2.912152,2.912152,2.912155,2.912162,2.91227,2.912216,2.912152,2.912152,2.91227,2.912216,2.912152,2.912152,2.912152,2.912152,2.912152,2.912152,,,,,,,2.912179,2.91225,2.912155,2.912162,2.91227,2.912216,2.912152,2.912152,2.912152,2.912152,1.135747,1.135769,1.13574,1.135742,1.135775,1.135759,1.135739,1.135739,0.596991,0.596991,29.999724,29.998996,29.999966,29.999898,29.99878,29.99934,30,30,30,30,,,,,,,,,,,2580,2580,2.912152,2.912152,2.912152,2.912152,2.912152,2.912152,2.912152,2.912152,1.135739,1.135739,30,30,, +8893,0,0.231226,1,1,0,2,7,,5,6,Otter Creek,Rd,1226306,1.741,1.972,0,4.954844,5.8,6,0.554943,0.554943,0.554943,0.554943,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.55496,0.554943,0.554943,0.554943,0.55496,0.554943,0.554943,0.554943,0.554943,0.554943,0.554943,0.554943,0.554944,0.554968,0.554943,0.554943,0.554944,0.554968,0.554943,0.554943,0.554943,0.554943,0.554943,0.554943,,,,,,,0.55496,0.554943,0.554943,0.554943,0.554944,0.554968,0.554943,0.554943,0.554943,0.554943,0.208109,0.208103,0.208103,0.208103,0.208104,0.208111,0.208103,0.208103,0.108676,0.108676,24.999227,25,25,25,24.999956,24.998847,25,25,25,25,,,,,,,,,,,2064,2064,0.554943,0.554943,0.554943,0.554943,0.554943,0.554943,0.554943,0.554943,0.208103,0.208103,25,25,, +20582,0,0.121079,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,10.762,10.883,0,2.594552,1.7,4,0.145295,0.145295,0.145295,0.145295,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.212384,0.150492,0.145295,0.145295,0.212384,0.150492,0.16502,0.161172,0.145295,0.145295,0.16502,0.161172,0.16445,0.20754,0.145295,0.145295,0.16445,0.20754,0.145295,0.145295,0.145295,0.145295,0.145295,0.145295,,,,,,,0.212384,0.150492,0.16502,0.161172,0.16445,0.20754,0.145295,0.145295,0.145295,0.145295,0.08551,0.066942,0.0713,0.070146,0.071129,0.084056,0.065383,0.065383,0.035113,0.035113,34.20567,48.273229,44.023335,45.074494,44.175962,35.004102,50,50,50,50,,,,,,,,,,,3096,3096,0.145295,0.145295,0.145295,0.145295,0.145295,0.145295,0.145295,0.145295,0.065383,0.065383,50,50,, +9020,0,0.243598,1,1,0,2,5,,5,6,Otter Creek,Rd,1223704,16.096,16.34,0,5.219948,3.7,5,0.487195,0.487195,0.487195,0.487195,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.564355,0.491907,0.487195,0.487195,0.564355,0.491907,0.496126,0.491171,0.487195,0.487195,0.496126,0.491171,0.514963,0.555733,0.487195,0.487195,0.514963,0.555733,0.487195,0.487195,0.487195,0.487195,0.487195,0.487195,,,,,,,0.564355,0.491907,0.496126,0.491171,0.514963,0.555733,0.487195,0.487195,0.487195,0.487195,0.213154,0.19142,0.192685,0.191199,0.198337,0.210567,0.190006,0.190006,0.099875,0.099875,25.898347,29.712633,29.459959,29.757135,28.382316,26.300154,30,30,30,30,,,,,,,,,,,2580,2580,0.487195,0.487195,0.487195,0.487195,0.487195,0.487195,0.487195,0.487195,0.190006,0.190006,30,30,, +9402,0,0.178107,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,10.039,10.217,0,3.816568,3,4,0.26716,0.26716,0.26716,0.26716,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.268912,0.267533,0.26716,0.26716,0.268912,0.267533,0.26744,0.267321,0.26716,0.26716,0.26744,0.267321,0.268183,0.269066,0.26716,0.26716,0.268183,0.269066,0.26716,0.26716,0.26716,0.26716,0.26716,0.26716,,,,,,,0.268912,0.267533,0.26744,0.267321,0.268183,0.269066,0.26716,0.26716,0.26716,0.26716,0.112733,0.112319,0.112291,0.112256,0.112514,0.112779,0.112207,0.112207,0.059666,0.059666,39.739297,39.944234,39.958072,39.975819,39.847457,39.716559,40,40,40,40,,,,,,,,,,,3096,3096,0.26716,0.26716,0.26716,0.26716,0.26716,0.26716,0.26716,0.26716,0.112207,0.112207,40,40,, +9401,0,0.095242,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,10.217,10.313,0,2.040896,3,4,0.142863,0.142863,0.142863,0.142863,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.175541,0.145008,0.142863,0.142863,0.175541,0.145008,0.14405,0.14321,0.142863,0.142863,0.14405,0.14321,0.161995,0.185972,0.142863,0.142863,0.161995,0.185972,0.142863,0.142863,0.142863,0.142863,0.142863,0.142863,,,,,,,0.175541,0.145008,0.14405,0.14321,0.161995,0.185972,0.142863,0.142863,0.142863,0.142863,0.069806,0.060646,0.060359,0.060107,0.065742,0.072935,0.060002,0.060002,0.031906,0.031906,32.553717,39.408141,39.670211,39.902883,35.27579,30.727804,40,40,40,40,,,,,,,,,,,3096,3096,0.142863,0.142863,0.142863,0.142863,0.142863,0.142863,0.142863,0.142863,0.060002,0.060002,40,40,, +31153,0,0.464735,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,9.958612,0.15,4,1.858941,1.858941,1.858941,1.858941,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,,,,,,,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,0.641335,0.641335,0.641335,0.641335,0.641335,0.641335,0.641335,0.641335,0.329962,0.329962,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,1.858941,0.641335,0.641335,15,15,, +9364,0,0.211205,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,1.456,1.667,0,4.525812,3.7,5,0.422409,0.422409,0.422409,0.422409,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.424116,0.422412,0.422409,0.422409,0.424116,0.422412,0.422443,0.422424,0.422409,0.422409,0.422443,0.422424,0.422425,0.422999,0.422409,0.422409,0.422425,0.422999,0.422409,0.422409,0.422409,0.422409,0.422409,0.422409,,,,,,,0.424116,0.422412,0.422443,0.422424,0.422425,0.422999,0.422409,0.422409,0.422409,0.422409,0.165252,0.16474,0.16475,0.164744,0.164744,0.164917,0.16474,0.16474,0.086594,0.086594,29.879293,29.999822,29.997604,29.998921,29.998841,29.958146,30,30,30,30,,,,,,,,,,,2580,2580,0.422409,0.422409,0.422409,0.422409,0.422409,0.422409,0.422409,0.422409,0.16474,0.16474,30,30,, +10063,0,0.179947,1,1,0,2,7,,5,6,Knab,Rd,1238206,0,0.18,0,3.85601,5.8,6,0.431873,0.431873,0.431873,0.431873,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.431873,0.431874,0.431873,0.431873,0.431873,0.431874,0.431873,0.431874,0.431873,0.431873,0.431873,0.431874,0.431874,0.431877,0.431873,0.431873,0.431874,0.431877,0.431873,0.431873,0.431873,0.431873,0.431873,0.431873,,,,,,,0.431873,0.431874,0.431873,0.431874,0.431874,0.431877,0.431873,0.431873,0.431873,0.431873,0.161952,0.161953,0.161952,0.161953,0.161953,0.161954,0.161952,0.161952,0.084575,0.084575,24.999988,24.999976,24.999991,24.999922,24.999958,24.999766,25,25,25,25,,,,,,,,,,,2064,2064,0.431873,0.431873,0.431873,0.431873,0.431873,0.431873,0.431873,0.431873,0.161952,0.161952,25,25,, +10060,0,0.028881,1,1,0,2,7,,5,6,Laplaisance,Rd,1238206,0.18,0.209,0,0.618887,5.8,6,0.069315,0.069315,0.069315,0.069315,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.069315,0.069315,0.069315,0.069315,0.069315,0.069315,0.069315,0.069316,0.069315,0.069315,0.069315,0.069316,0.069315,0.069316,0.069315,0.069315,0.069315,0.069316,0.069315,0.069315,0.069315,0.069315,0.069315,0.069315,,,,,,,0.069315,0.069315,0.069315,0.069316,0.069315,0.069316,0.069315,0.069315,0.069315,0.069315,0.025993,0.025993,0.025993,0.025993,0.025993,0.025993,0.025993,0.025993,0.013574,0.013574,24.999988,24.999976,24.999991,24.999922,24.999958,24.999766,25,25,25,25,,,,,,,,,,,2064,2064,0.069315,0.069315,0.069315,0.069315,0.069315,0.069315,0.069315,0.069315,0.025993,0.025993,25,25,, +20883,0,0.041739,1,1,0,2,7,,5,6,Laplaisance Cutoff,,4302178,0,0.042,0,0.894397,5.8,6,0.100172,0.100172,0.100172,0.100172,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,,,,,,,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.037565,0.037565,0.037565,0.037565,0.037565,0.037565,0.037565,0.037565,0.019617,0.019617,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.100172,0.037565,0.037565,25,25,, +9359,0,0.031886,1,1,0,2,7,,5,6,Laplaisance,Rd,1227304,1.656,1.688,0,0.683277,5.8,6,0.076527,0.076527,0.076527,0.076527,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,,,,,,,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.028698,0.028698,0.028698,0.028698,0.028698,0.028698,0.028698,0.028698,0.014987,0.014987,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.076527,0.028698,0.028698,25,25,, +8786,0,0.459969,1,1,0,2,5,,4,6,Herr,Rd,1224507,0,0.46,0,9.856482,5.8,4.5,1.022154,1.022154,1.022154,1.022154,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.023051,1.02354,1.022154,1.022154,1.023051,1.02354,1.022182,1.022168,1.022154,1.022154,1.022182,1.022168,1.030246,1.025682,1.022154,1.022154,1.030246,1.025682,1.022154,1.022154,1.022154,1.022154,1.022154,1.022154,,,,,,,1.023051,1.02354,1.022182,1.022168,1.030246,1.025682,1.022154,1.022154,1.022154,1.022154,0.38971,0.389857,0.389449,0.389445,0.391868,0.390499,0.389441,0.389441,0.20392,0.20392,26.97633,26.963423,26.999249,26.99963,26.787915,26.907129,27,27,27,27,,,,,,,,,,,2580,2580,1.022154,1.022154,1.022154,1.022154,1.022154,1.022154,1.022154,1.022154,0.389441,0.389441,27,27,, +8960,1,0.907149,2,0,0,2,4,DIV,4,6,Custer,Rd,1223803,16.208,17.115,0,19.438914,4.5,4.5,1.26579,,1.26579,,43,,20000,,4540,,10000,,6452,,6880,,6872,,1.284936,,1.26579,,1.284936,,1.266037,,1.26579,,1.266037,,1.268715,,1.26579,,1.268715,,1.26579,,1.26579,,1.26579,,,,,,,,1.284936,,1.266037,,1.268715,,1.26579,,1.26579,,0.548768,,0.543098,,0.543901,,0.543024,,0.289655,,42.359286,,42.991587,,42.900845,,43,,43,,,,,,,,,,,,6880,,1.26579,,1.26579,,1.26579,,1.26579,,0.543024,,43,,, +9054,0,0.652509,2,2,0,2,4,,4,6,Custer,Rd,1226001,17.272,17.924,0,13.982344,4.5,4.5,1.030278,1.030278,1.030278,1.030278,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,1.030701,1.030557,1.030278,1.030278,1.030701,1.030557,1.030469,1.030394,1.030278,1.030278,1.030469,1.030394,1.031501,1.031258,1.030278,1.030278,1.031501,1.031258,1.030278,1.030278,1.030278,1.030278,1.030278,1.030278,,,,,,,1.030701,1.030557,1.030469,1.030394,1.031501,1.031258,1.030278,1.030278,1.030278,1.030278,0.426662,0.426619,0.426592,0.42657,0.426902,0.426829,0.426535,0.426535,0.226318,0.226318,37.984389,37.989723,37.99295,37.995723,37.95496,37.963904,38,38,38,38,,,,,,,,,,,6192,6192,1.030278,1.030278,1.030278,1.030278,1.030278,1.030278,1.030278,1.030278,0.426535,0.426535,38,38,, +9283,0,1.700732,1,1,0,2,4,,4,6,Raisinville,Rd,1229704,0,1.7,0,36.444249,4.5,4.5,2.685366,2.685366,2.685366,2.685366,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.686557,2.685403,2.685366,2.685366,2.686557,2.685403,2.685608,2.68555,2.685366,2.685366,2.685608,2.68555,2.685657,2.68644,2.685366,2.685366,2.685657,2.68644,2.685366,2.685366,2.685366,2.685366,2.685366,2.685366,,,,,,,2.686557,2.685403,2.685608,2.68555,2.685657,2.68644,2.685366,2.685366,2.685366,2.685366,1.112099,1.111753,1.111814,1.111797,1.111829,1.112064,1.111741,1.111741,0.589885,0.589885,37.983156,37.999468,37.996569,37.997396,37.995873,37.98481,38,38,38,38,,,,,,,,,,,3096,3096,2.685366,2.685366,2.685366,2.685366,2.685366,2.685366,2.685366,2.685366,1.111741,1.111741,38,38,, +10366,0,0.818131,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,9.704,10.522,0,17.531383,4.5,4.5,1.291786,1.291786,1.291786,1.291786,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.559225,1.315484,1.291786,1.291786,1.559225,1.315484,1.320033,1.312556,1.291786,1.291786,1.320033,1.312556,1.397506,1.575024,1.291786,1.291786,1.397506,1.575024,1.291786,1.291786,1.291786,1.291786,1.291786,1.291786,,,,,,,1.559225,1.315484,1.320033,1.312556,1.397506,1.575024,1.291786,1.291786,1.291786,1.291786,0.615031,0.541909,0.543273,0.54103,0.566515,0.619771,0.534799,0.534799,0.283762,0.283762,31.482227,37.315434,37.186865,37.398684,35.125349,31.166434,38,38,38,38,,,,,,,,,,,3096,3096,1.291786,1.291786,1.291786,1.291786,1.291786,1.291786,1.291786,1.291786,0.534799,0.534799,38,38,, +20825,-1,0.906203,0,2,0,2,4,DIV,4,6,Custer,Rd,4300467,0.371,1.277,0,19.418631,4.5,4.5,,1.264469,,1.264469,,43,,20000,,4540,,10000,,6452,,6880,,6872,,1.26518,,1.264469,,1.26518,,1.264677,,1.264469,,1.264677,,1.286461,,1.264469,,1.286461,,1.264469,,1.264469,,1.264469,,,,,,,,1.26518,,1.264677,,1.286461,,1.264469,,1.264469,,0.542671,,0.54252,,0.549055,,0.542457,,0.289353,,42.975831,,42.992938,,42.264911,,43,,43,,,,,,,,,,,,6880,,1.264469,,1.264469,,1.264469,,1.264469,,0.542457,,43,, +31164,0,0.68832,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.749713,0.15,4,2.75328,2.75328,2.75328,2.75328,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,,,,,,,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,0.949881,0.949881,0.949881,0.949881,0.949881,0.949881,0.949881,0.949881,0.488707,0.488707,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,2.75328,0.949881,0.949881,15,15,, +31173,0,0.695104,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.895076,0.15,4,2.780414,2.780414,2.780414,2.780414,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,,,,,,,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,0.959243,0.959243,0.959243,0.959243,0.959243,0.959243,0.959243,0.959243,0.493524,0.493524,15,14.999999,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,2.780414,0.959243,0.959243,15,15,, +8962,0,1.03313,1,1,0,2,4,,5,6,Custer,Rd,1223803,14.807,15.84,0,22.138501,3,4,1.549695,1.549695,1.549695,1.549695,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.790159,1.601702,1.549695,1.549695,1.790159,1.601702,1.55285,1.552221,1.549695,1.549695,1.55285,1.552221,1.622555,1.806748,1.549695,1.549695,1.622555,1.806748,1.549695,1.549695,1.549695,1.549695,1.549695,1.549695,,,,,,,1.790159,1.601702,1.55285,1.552221,1.622555,1.806748,1.549695,1.549695,1.549695,1.549695,0.723011,0.666474,0.651818,0.65163,0.67273,0.727988,0.650872,0.650872,0.346099,0.346099,34.626978,38.701202,39.918729,39.934905,38.203814,34.309045,40,40,40,40,,,,,,,,,,,3096,3096,1.549695,1.549695,1.549695,1.549695,1.549695,1.549695,1.549695,1.549695,0.650872,0.650872,40,40,, +8780,1,0.367938,2,0,0,2,4,DIV,5,6,Custer,Rd,1223803,15.84,16.208,0,7.884375,3,4,0.490583,,0.490583,,45,,20000,,4540,,10000,,6452,,6880,,6872,,0.493705,,0.490583,,0.493705,,0.490624,,0.490583,,0.490624,,0.491529,,0.490583,,0.491529,,0.490583,,0.490583,,0.490583,,,,,,,,0.493705,,0.490624,,0.491529,,0.490583,,0.490583,,0.21434,,0.213416,,0.213687,,0.213404,,0.114061,,44.715481,,44.996243,,44.913457,,45,,45,,,,,,,,,,,,6880,,0.490583,,0.490583,,0.490583,,0.490583,,0.213404,,45,,, +9281,0,0.187363,1,1,0,2,4,,4,6,Raisinville,Rd,1229704,1.716,1.903,0,4.014923,4.5,4.5,0.295836,0.295836,0.295836,0.295836,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.298962,0.310103,0.295836,0.295836,0.298962,0.310103,0.297557,0.297394,0.295836,0.295836,0.297557,0.297394,0.330645,0.311762,0.295836,0.295836,0.330645,0.311762,0.295836,0.295836,0.295836,0.295836,0.295836,0.295836,,,,,,,0.298962,0.310103,0.297557,0.297394,0.330645,0.311762,0.295836,0.295836,0.295836,0.295836,0.123414,0.126756,0.122992,0.122943,0.132919,0.127254,0.122476,0.122476,0.064985,0.064985,37.602736,36.251796,37.780256,37.801031,33.999567,36.058818,38,38,38,38,,,,,,,,,,,3096,3096,0.295836,0.295836,0.295836,0.295836,0.295836,0.295836,0.295836,0.295836,0.122476,0.122476,38,38,, +20130,-1,0.370787,0,2,0,2,4,DIV,5,6,Custer,Rd,4300467,0,0.371,0,7.94544,3,4,,0.494383,,0.494383,,45,,20000,,4540,,10000,,6452,,6880,,6872,,0.495063,,0.494383,,0.495063,,0.494416,,0.494383,,0.494416,,0.497744,,0.494383,,0.497744,,0.494383,,0.494383,,0.494383,,,,,,,,0.495063,,0.494416,,0.497744,,0.494383,,0.494383,,0.215261,,0.215066,,0.216065,,0.215057,,0.114944,,44.938158,,44.996992,,44.696151,,45,,45,,,,,,,,,,,,6880,,0.494383,,0.494383,,0.494383,,0.494383,,0.215057,,45,, +9282,0,0.015924,1,1,0,2,4,,4,6,Raisinville,Rd,1229704,1.7,1.716,0,0.341231,4.5,4.5,0.025143,0.025143,0.025143,0.025143,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.025208,0.025462,0.025143,0.025143,0.025208,0.025462,0.025152,0.025212,0.025143,0.025143,0.025152,0.025212,0.025209,0.025522,0.025143,0.025143,0.025209,0.025522,0.025143,0.025143,0.025143,0.025143,0.025143,0.025143,,,,,,,0.025208,0.025462,0.025152,0.025212,0.025209,0.025522,0.025143,0.025143,0.025143,0.025143,0.010429,0.010505,0.010412,0.01043,0.010429,0.010523,0.010409,0.010409,0.005523,0.005523,37.902355,37.524182,37.987369,37.897261,37.900558,37.435578,38,38,38,38,,,,,,,,,,,3096,3096,0.025143,0.025143,0.025143,0.025143,0.025143,0.025143,0.025143,0.025143,0.010409,0.010409,38,38,, +8433,0,0.238574,2,2,0,2,5,,5,6,Custer,Rd,1226001,17.034,17.272,0,5.112303,3.7,5,0.477148,0.477148,0.477148,0.477148,30,30,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.47732,0.477155,0.477148,0.477148,0.47732,0.477155,0.477182,0.477169,0.477148,0.477148,0.477182,0.477169,0.477367,0.477695,0.477148,0.477148,0.477367,0.477695,0.477148,0.477148,0.477148,0.477148,0.477148,0.477148,,,,,,,0.47732,0.477155,0.477182,0.477169,0.477367,0.477695,0.477148,0.477148,0.477148,0.477148,0.186139,0.18609,0.186098,0.186094,0.186153,0.186252,0.186088,0.186088,0.097815,0.097815,29.989199,29.999602,29.99787,29.998679,29.986283,29.965662,30,30,30,30,,,,,,,,,,,5160,5160,0.477148,0.477148,0.477148,0.477148,0.477148,0.477148,0.477148,0.477148,0.186088,0.186088,30,30,, +10355,0,0.22889,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,11.288,11.517,0,4.904791,4.5,4.5,0.361406,0.361406,0.361406,0.361406,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.393896,0.377899,0.361406,0.361406,0.393896,0.377899,0.369516,0.3709,0.361406,0.361406,0.369516,0.3709,0.400671,0.418841,0.361406,0.361406,0.400671,0.418841,0.361406,0.361406,0.361406,0.361406,0.361406,0.361406,,,,,,,0.393896,0.377899,0.369516,0.3709,0.400671,0.418841,0.361406,0.361406,0.361406,0.361406,0.159369,0.15457,0.152055,0.15247,0.161401,0.166853,0.149622,0.149622,0.079389,0.079389,34.86562,36.341487,37.166008,37.027316,34.27607,32.789073,38,38,38,38,,,,,,,,,,,3096,3096,0.361406,0.361406,0.361406,0.361406,0.361406,0.361406,0.361406,0.361406,0.149622,0.149622,38,38,, +31162,0,1.184429,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,25.380625,0.15,4,4.737717,4.737717,4.737717,4.737717,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,,,,,,,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,1.634512,1.634512,1.634512,1.634512,1.634512,1.634512,1.634512,1.634512,0.840945,0.840945,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,4.737717,1.634512,1.634512,15,15,, +10362,0,0.766822,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,10.522,11.288,0,16.431892,4.5,4.5,1.210771,1.210771,1.210771,1.210771,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.329994,1.281697,1.210771,1.210771,1.329994,1.281697,1.267549,1.269696,1.210771,1.210771,1.267549,1.269696,1.337913,1.346197,1.210771,1.210771,1.337913,1.346197,1.210771,1.210771,1.210771,1.210771,1.210771,1.210771,,,,,,,1.329994,1.281697,1.267549,1.269696,1.337913,1.346197,1.210771,1.210771,1.210771,1.210771,0.537026,0.522537,0.518292,0.518937,0.539402,0.541887,0.501259,0.501259,0.265966,0.265966,34.593613,35.897171,36.297854,36.236458,34.388862,34.177247,38,38,38,38,,,,,,,,,,,3096,3096,1.210771,1.210771,1.210771,1.210771,1.210771,1.210771,1.210771,1.210771,0.501259,0.501259,38,38,, +31161,0,1.019359,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.843415,0.15,4,4.077437,4.077437,4.077437,4.077437,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,,,,,,,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,1.406716,1.406716,1.406716,1.406716,1.406716,1.406716,1.406716,1.406716,0.723745,0.723745,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,4.077437,1.406716,1.406716,15,15,, +20084,0,0.246425,1,1,0,2,5,,4,6,Albain,Rd,4301495,11.236,11.483,0,5.280546,5.8,4.5,0.547612,0.547612,0.547612,0.547612,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.631565,0.563786,0.547612,0.547612,0.631565,0.563786,0.566825,0.572658,0.547612,0.547612,0.566825,0.572658,0.581917,0.695248,0.547612,0.547612,0.581917,0.695248,0.547612,0.547612,0.547612,0.547612,0.547612,0.547612,,,,,,,0.631565,0.563786,0.566825,0.572658,0.581917,0.695248,0.547612,0.547612,0.547612,0.547612,0.233826,0.213492,0.214404,0.216154,0.218932,0.252931,0.20864,0.20864,0.109249,0.109249,23.410945,26.225431,26.084823,25.819139,25.4083,21.266552,27,27,27,27,,,,,,,,,,,2580,2580,0.547612,0.547612,0.547612,0.547612,0.547612,0.547612,0.547612,0.547612,0.20864,0.20864,27,27,, +31159,0,0.324042,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.943765,0.15,4,1.29617,1.29617,1.29617,1.29617,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,,,,,,,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,0.447178,0.447179,0.447178,0.447178,0.447179,0.447179,0.447178,0.447178,0.23007,0.23007,15,14.999998,15,15,14.999997,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,1.29617,0.447178,0.447178,15,15,, +20175,0,0.023617,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,12.359,12.383,0,0.506082,3.7,5,0.035426,0.035426,0.035426,0.035426,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.049865,0.040077,0.035426,0.035426,0.049865,0.040077,0.0392,0.037999,0.035426,0.035426,0.0392,0.037999,0.050957,0.053494,0.035426,0.035426,0.050957,0.053494,0.035426,0.035426,0.035426,0.035426,0.035426,0.035426,,,,,,,0.049865,0.040077,0.0392,0.037999,0.050957,0.053494,0.035426,0.035426,0.035426,0.035426,0.019211,0.016274,0.016011,0.015651,0.019538,0.020299,0.014879,0.014879,0.007912,0.007912,28.417107,35.357905,36.148528,37.290934,27.808097,26.489539,40,40,40,40,,,,,,,,,,,3784,3784,0.035426,0.035426,0.035426,0.035426,0.035426,0.035426,0.035426,0.035426,0.014879,0.014879,40,40,, +8432,0,1.018418,2,2,0,2,4,,4,6,Custer,Rd,1226001,17.924,18.942,0,21.823234,4.5,4.5,1.608028,1.608028,1.608028,1.608028,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,1.611035,1.608583,1.608028,1.608028,1.611035,1.608583,1.60953,1.609564,1.608028,1.608028,1.60953,1.609564,1.614009,1.617202,1.608028,1.608028,1.614009,1.617202,1.608028,1.608028,1.608028,1.608028,1.608028,1.608028,,,,,,,1.611035,1.608583,1.60953,1.609564,1.614009,1.617202,1.608028,1.608028,1.608028,1.608028,0.666626,0.66589,0.666174,0.666184,0.667518,0.668476,0.665724,0.665724,0.35323,0.35323,37.929068,37.986876,37.964524,37.963737,37.859188,37.784425,38,38,38,38,,,,,,,,,,,6192,6192,1.608028,1.608028,1.608028,1.608028,1.608028,1.608028,1.608028,1.608028,0.665724,0.665724,38,38,, +8778,1,0.6174,2,0,0,2,4,DIV,4,6,Custer,Rd,1223803,17.115,17.732,0,13.229991,4.5,4.5,0.861488,,0.861488,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.878578,,0.861488,,0.878578,,0.862244,,0.861488,,0.862244,,0.874947,,0.861488,,0.874947,,0.861488,,0.861488,,0.861488,,,,,,,,0.878578,,0.862244,,0.874947,,0.861488,,0.861488,,0.374705,,0.369805,,0.373616,,0.369578,,0.197137,,42.163565,,42.962289,,42.338535,,43,,43,,,,,,,,,,,,6880,,0.861488,,0.861488,,0.861488,,0.861488,,0.369578,,43,,, +20585,-1,0.619281,0,2,0,2,4,DIV,4,6,Custer,Rd,4300467,1.277,1.896,0,13.270303,4.5,4.5,,0.864113,,0.864113,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.871939,,0.864113,,0.871939,,0.86549,,0.864113,,0.86549,,0.892345,,0.864113,,0.892345,,0.864113,,0.864113,,0.864113,,,,,,,,0.871939,,0.86549,,0.892345,,0.864113,,0.864113,,0.373052,,0.371117,,0.379174,,0.370704,,0.197738,,42.61407,,42.93159,,41.639569,,43,,43,,,,,,,,,,,,6880,,0.864113,,0.864113,,0.864113,,0.864113,,0.370704,,43,, +31043,0,0.7807,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.729293,0.15,4,3.122801,3.122801,3.122801,3.122801,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,,,,,,,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,1.077366,1.077366,1.077366,1.077366,1.077366,1.077366,1.077366,1.077366,0.554297,0.554297,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,3.122801,1.077366,1.077366,15,15,, +31174,0,0.807408,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,17.301598,0.15,4,3.229632,3.229632,3.229632,3.229632,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,,,,,,,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,1.114223,1.114223,1.114223,1.114223,1.114223,1.114223,1.114223,1.114223,0.57326,0.57326,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,3.229632,1.114223,1.114223,15,15,, +33597,0,0.883129,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,18.924199,0.15,4,3.532517,3.532517,3.532517,3.532517,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.532518,3.532518,3.532517,3.532517,3.532518,3.532518,3.532518,3.532518,3.532517,3.532517,3.532518,3.532518,3.532519,3.53252,3.532517,3.532517,3.532519,3.53252,3.532517,3.532517,3.532517,3.532517,3.532517,3.532517,,,,,,,3.532518,3.532518,3.532518,3.532518,3.532519,3.53252,3.532517,3.532517,3.532517,3.532517,1.218719,1.218719,1.218719,1.218719,1.218719,1.218719,1.218718,1.218718,0.627022,0.627022,14.999996,14.999999,14.999998,14.999998,14.999991,14.999986,15,15,15,15,,,,,,,,,,,34400,34400,3.532517,3.532517,3.532517,3.532517,3.532517,3.532517,3.532517,3.532517,1.218718,1.218718,15,15,, +31172,0,0.570953,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.234704,0.15,4,2.283811,2.283811,2.283811,2.283811,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,,,,,,,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,0.787915,0.787915,0.787915,0.787915,0.787915,0.787915,0.787915,0.787915,0.405377,0.405377,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,2.283811,0.787915,0.787915,15,15,, +34005,0,0.604139,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.945836,0.15,4,2.416556,2.416556,2.416556,2.416556,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,,,,,,,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,0.833712,0.833712,0.833712,0.833712,0.833712,0.833712,0.833712,0.833712,0.428939,0.428939,15,14.999999,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,2.416556,0.833712,0.833712,15,15,, +8643,0,0.596291,1,1,0,2,5,,4,6,Herr,Rd,1224507,0.46,1.056,0,12.777668,5.8,4.5,1.325092,1.325092,1.325092,1.325092,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.325094,1.325122,1.325092,1.325092,1.325094,1.325122,1.325092,1.325092,1.325092,1.325092,1.325092,1.325092,1.32515,1.325099,1.325092,1.325092,1.32515,1.325099,1.325092,1.325092,1.325092,1.325092,1.325092,1.325092,,,,,,,1.325094,1.325122,1.325092,1.325092,1.32515,1.325099,1.325092,1.325092,1.325092,1.325092,0.50486,0.504869,0.50486,0.50486,0.504877,0.504862,0.50486,0.50486,0.264356,0.264356,26.999958,26.999386,27,27,26.998812,26.999841,27,27,27,27,,,,,,,,,,,2580,2580,1.325092,1.325092,1.325092,1.325092,1.325092,1.325092,1.325092,1.325092,0.50486,0.50486,27,27,, +8783,0,0.290865,1,1,0,2,6,,4,6,Patterson,Dr,1224601,0,0.291,0,6.232823,6.55,4.5,0.646367,0.646367,0.646367,0.646367,27,27,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.658101,0.67027,0.646367,0.646367,0.658101,0.67027,0.647836,0.64659,0.646367,0.646367,0.647836,0.64659,0.6887,0.680159,0.646367,0.646367,0.6887,0.680159,0.646367,0.646367,0.646367,0.646367,0.646367,0.646367,,,,,,,0.658101,0.67027,0.647836,0.64659,0.6887,0.680159,0.646367,0.646367,0.646367,0.646367,0.249786,0.253437,0.246707,0.246333,0.258966,0.256403,0.246266,0.246266,0.12895,0.12895,26.518591,26.037144,26.938762,26.990678,25.340345,25.658574,27,27,27,27,,,,,,,,,,,2236,2236,0.646367,0.646367,0.646367,0.646367,0.646367,0.646367,0.646367,0.646367,0.246266,0.246266,27,27,, +8953,1,0.392562,2,0,0,2,4,DIV,4,6,Custer,Rd,1223803,17.732,18.124,0,8.412033,4.5,4.5,0.54776,,0.54776,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.555566,,0.54776,,0.555566,,0.548288,,0.54776,,0.548288,,0.554439,,0.54776,,0.554439,,0.54776,,0.54776,,0.54776,,,,,,,,0.555566,,0.548288,,0.554439,,0.54776,,0.54776,,0.237331,,0.235147,,0.236993,,0.234989,,0.125346,,42.395872,,42.958612,,42.482003,,43,,43,,,,,,,,,,,,6880,,0.54776,,0.54776,,0.54776,,0.54776,,0.234989,,43,,, +31073,0,0.520289,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.149053,0.15,4,2.081156,2.081156,2.081156,2.081156,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,,,,,,,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,0.717999,0.717999,0.717999,0.717999,0.717999,0.717999,0.717999,0.717999,0.369405,0.369405,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,2.081156,0.717999,0.717999,15,15,, +31163,0,0.111974,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.399432,0.15,4,0.447894,0.447894,0.447894,0.447894,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.447895,0.447895,0.447894,0.447894,0.447895,0.447895,0.447894,0.447894,0.447894,0.447894,0.447894,0.447894,0.447895,0.447895,0.447894,0.447894,0.447895,0.447895,0.447894,0.447894,0.447894,0.447894,0.447894,0.447894,,,,,,,0.447895,0.447895,0.447894,0.447894,0.447895,0.447895,0.447894,0.447894,0.447894,0.447894,0.154524,0.154524,0.154524,0.154523,0.154524,0.154524,0.154523,0.154523,0.079501,0.079501,14.999979,14.999966,14.999991,14.999994,14.999953,14.999959,15,15,15,15,,,,,,,,,,,34400,34400,0.447894,0.447894,0.447894,0.447894,0.447894,0.447894,0.447894,0.447894,0.154523,0.154523,15,15,, +9341,1,0.2262,1,0,0,1,1,RON,4,6,Laplaisance/N I 75,RAMP,1227904,0,0.226,0,,1.09,4,0.301599,,0.301599,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.302622,,0.301599,,0.302622,,0.301612,,0.301599,,0.301612,,0.301674,,0.301599,,0.301674,,0.301599,,0.301599,,0.301599,,,,,,,,0.302622,,0.301612,,0.301674,,0.301599,,0.301599,,0.131502,,0.131199,,0.131218,,0.131196,,0.070122,,44.847974,,44.99816,,44.98892,,45,,45,,,,,,,,,,,,5160,,0.301599,,0.301599,,0.301599,,0.301599,,0.131196,,45,,, +9342,1,0.326237,1,0,0,1,1,ROF,5,6,N I 75/Laplaisance,RAMP,1227903,0,0.326,0,,2.24,5,0.489356,,0.489356,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.49127,,0.489356,,0.49127,,0.490627,,0.489356,,0.490627,,0.490919,,0.489356,,0.490919,,0.489356,,0.489356,,0.489356,,,,,,,,0.49127,,0.490627,,0.490919,,0.489356,,0.489356,,0.206104,,0.205911,,0.205998,,0.20553,,0.10929,,39.844212,,39.896401,,39.872668,,40,,40,,,,,,,,,,,,5160,,0.489356,,0.489356,,0.489356,,0.489356,,0.20553,,40,,, +9434,1,2.317952,3,0,0,1,1,,5,6,N I 75,,1226910,8.609,10.926,0,,1.02,7,1.986816,,1.986816,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.00608,,1.986816,,2.00608,,1.990732,,1.986816,,1.990732,,1.995138,,1.986816,,1.995138,,1.986816,,1.986816,,1.986816,,,,,,,,2.00608,,1.990732,,1.995138,,1.986816,,1.986816,,1.019055,,1.014451,,1.015773,,1.013276,,0.552997,,69.327792,,69.862277,,69.708013,,70,,70,,,,,,,,,,,,22704,,1.986816,,1.986816,,1.986816,,1.986816,,1.013276,,70,,, +9459,-1,2.545368,0,3,0,1,1,,5,6,S I 75,,1226909,8.58,11.124,0,,1.02,7,,2.181744,,2.181744,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.185126,,2.181744,,2.185126,,2.185501,,2.181744,,2.185501,,2.212725,,2.181744,,2.212725,,2.181744,,2.181744,,2.181744,,,,,,,,2.185126,,2.185501,,2.212725,,2.181744,,2.181744,,1.113704,,1.113817,,1.121984,,1.11269,,0.607252,,69.891656,,69.879677,,69.0199,,70,,70,,,,,,,,,,,,22704,,2.181744,,2.181744,,2.181744,,2.181744,,1.11269,,70,, +10043,0,1.349647,1,1,0,2,5,,5,6,Laplaisance,Rd,1238308,0,1.349,0,28.921016,3.7,5,2.699295,2.699295,2.699295,2.699295,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,,,,,,,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,1.052725,1.052725,1.052725,1.052725,1.052725,1.052725,1.052725,1.052725,0.553355,0.553355,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,2.699295,1.052725,1.052725,30,30,, +9361,0,0.732589,1,1,0,2,6,,5,6,Otter Creek,Rd,1227303,2.477,3.209,0,15.698327,5.8,6,1.465177,1.465177,1.465177,1.465177,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,,,,,,,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,0.571419,0.571419,0.571419,0.571419,0.571419,0.571419,0.571419,0.571419,0.300361,0.300361,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,1.465177,0.571419,0.571419,30,30,, +9343,1,0.31743,1,0,0,1,1,RON,5,6,Otter Creek/N I 75,RAMP,1227810,0,0.317,0,,1.09,4,0.42324,,0.42324,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.423286,,0.42324,,0.423286,,0.42324,,0.42324,,0.42324,,0.42324,,0.42324,,0.42324,,0.42324,,0.42324,,0.42324,,,,,,,,0.423286,,0.42324,,0.42324,,0.42324,,0.42324,,0.184123,,0.184109,,0.184109,,0.184109,,0.098403,,44.995021,,44.999946,,44.999951,,45,,45,,,,,,,,,,,,5160,,0.42324,,0.42324,,0.42324,,0.42324,,0.184109,,45,,, +9344,1,0.505454,1,0,0,1,1,ROF,5,6,N I 75/Otter Creek,RAMP,1227809,0,0.505,0,,2.24,5,0.758181,,0.758181,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.758181,,0.758181,,0.758181,,0.758181,,0.758181,,0.758181,,0.758181,,0.758181,,0.758181,,0.758181,,0.758181,,0.758181,,,,,,,,0.758181,,0.758181,,0.758181,,0.758181,,0.758181,,0.318436,,0.318436,,0.318436,,0.318436,,0.169327,,39.999995,,39.999996,,39.999985,,40,,40,,,,,,,,,,,,5160,,0.758181,,0.758181,,0.758181,,0.758181,,0.318436,,40,,, +9362,0,0.250442,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,2.227,2.477,0,5.36662,3.7,5,0.500885,0.500885,0.500885,0.500885,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.501488,0.500888,0.500885,0.500885,0.501488,0.500888,0.500887,0.500887,0.500885,0.500885,0.500887,0.500887,0.500886,0.500894,0.500885,0.500885,0.500886,0.500894,0.500885,0.500885,0.500885,0.500885,0.500885,0.500885,,,,,,,0.501488,0.500888,0.500887,0.500887,0.500886,0.500894,0.500885,0.500885,0.500885,0.500885,0.195526,0.195346,0.195346,0.195346,0.195346,0.195348,0.195345,0.195345,0.102681,0.102681,29.963903,29.999785,29.999873,29.999849,29.999889,29.999421,30,30,30,30,,,,,,,,,,,2580,2580,0.500885,0.500885,0.500885,0.500885,0.500885,0.500885,0.500885,0.500885,0.195345,0.195345,30,30,, +9312,1,0.459093,1,0,0,1,1,RON,5,6,Otter Creek/S I 75,RAMP,1228204,0,0.459,0,,1.09,4,0.612124,,0.612124,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.612129,,0.612124,,0.612129,,0.61213,,0.612124,,0.61213,,0.612129,,0.612124,,0.612129,,0.612124,,0.612124,,0.612124,,,,,,,,0.612129,,0.61213,,0.612129,,0.612124,,0.612124,,0.266275,,0.266276,,0.266276,,0.266274,,0.142319,,44.999623,,44.999567,,44.999597,,45,,45,,,,,,,,,,,,5160,,0.612124,,0.612124,,0.612124,,0.612124,,0.266274,,45,,, +9435,1,0.430418,3,0,0,1,1,,5,6,N I 75,,1226910,8.179,8.609,0,,1.02,7,0.36893,,0.36893,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.371534,,0.36893,,0.371534,,0.369571,,0.36893,,0.369571,,0.370313,,0.36893,,0.370313,,0.36893,,0.36893,,0.36893,,,,,,,,0.371534,,0.369571,,0.370313,,0.36893,,0.36893,,0.188935,,0.188346,,0.188569,,0.188154,,0.102686,,69.509448,,69.878668,,69.738562,,70,,70,,,,,,,,,,,,22704,,0.36893,,0.36893,,0.36893,,0.36893,,0.188154,,70,,, +9460,-1,0.359935,0,3,0,1,1,,5,6,S I 75,,1226909,8.22,8.58,0,,1.02,7,,0.308516,,0.308516,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.308956,,0.308516,,0.308956,,0.30898,,0.308516,,0.30898,,0.311933,,0.308516,,0.311933,,0.308516,,0.308516,,0.308516,,,,,,,,0.308956,,0.30898,,0.311933,,0.308516,,0.308516,,0.157475,,0.157482,,0.158368,,0.157343,,0.08587,,69.900348,,69.894863,,69.23316,,70,,70,,,,,,,,,,,,22704,,0.308516,,0.308516,,0.308516,,0.308516,,0.157343,,70,, +9311,1,0.277456,1,0,0,1,1,ROF,5,6,S I 75/Otter Creek,RAMP,1228205,0,0.277,0,,2.24,5,0.416184,,0.416184,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.416184,,0.416184,,0.416184,,0.416184,,0.416184,,0.416184,,0.416188,,0.416184,,0.416188,,0.416184,,0.416184,,0.416184,,,,,,,,0.416184,,0.416184,,0.416188,,0.416184,,0.416184,,0.174797,,0.174797,,0.174798,,0.174797,,0.092948,,40,,39.999996,,39.99964,,40,,40,,,,,,,,,,,,5160,,0.416184,,0.416184,,0.416184,,0.416184,,0.174797,,40,,, +9358,0,1.068399,1,1,0,2,7,,5,6,Laplaisance,Rd,1227305,1.477,2.545,0,22.894266,5.8,6,2.564158,2.564158,2.564158,2.564158,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,,,,,,,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,0.961559,0.961559,0.961559,0.961559,0.961559,0.961559,0.961559,0.961559,0.502148,0.502148,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,2.564158,0.961559,0.961559,25,25,, +31160,0,0.575738,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.337251,0.15,4,2.302953,2.302953,2.302953,2.302953,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,,,,,,,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,0.794519,0.794519,0.794519,0.794519,0.794519,0.794519,0.794519,0.794519,0.408774,0.408774,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,2.302953,0.794519,0.794519,15,15,, +31151,0,0.48613,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.417077,0.15,4,1.944521,1.944521,1.944521,1.944521,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,,,,,,,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,0.67086,0.67086,0.67086,0.67086,0.67086,0.67086,0.67086,0.67086,0.345152,0.345152,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,1.944521,0.67086,0.67086,15,15,, +9433,1,0.310814,3,0,0,1,1,,5,6,N I 75,,1226910,10.926,11.237,0,,1.02,7,0.266412,,0.266412,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.267434,,0.266412,,0.267434,,0.26659,,0.266412,,0.26659,,0.266818,,0.266412,,0.266818,,0.266412,,0.266412,,0.266412,,,,,,,,0.267434,,0.26659,,0.266818,,0.266412,,0.266412,,0.136177,,0.135923,,0.135992,,0.13587,,0.074151,,69.732578,,69.953398,,69.893371,,70,,70,,,,,,,,,,,,22704,,0.266412,,0.266412,,0.266412,,0.266412,,0.13587,,70,,, +10036,0,0.414563,1,1,0,2,5,,5,6,Laplaisance,Rd,1238308,1.349,1.764,0,8.883487,3.7,5,0.829125,0.829125,0.829125,0.829125,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,,,,,,,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.323359,0.323359,0.323359,0.323359,0.323359,0.323359,0.323359,0.323359,0.169971,0.169971,30,30,30,30,29.999999,30,30,30,30,30,,,,,,,,,,,2580,2580,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.829125,0.323359,0.323359,30,30,, +10034,0,0.089376,1,1,1,2,4,,5,6,Laplaisance,Rd,1238308,1.764,1.853,0,1.91519,3,4,0.134063,0.134063,0.134063,0.134063,40,40,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.147318,0.134063,0.134063,0.134063,0.147318,0.134063,0.143955,0.134063,0.134063,0.134063,0.143955,0.134063,0.145974,0.134063,0.134063,0.134063,0.145974,0.134063,0.134063,0.134063,0.134063,0.134063,0.134063,0.134063,,,,,,,0.147318,0.134063,0.143955,0.134063,0.145974,0.134063,0.134063,0.134063,0.134063,0.134063,0.060283,0.056307,0.059274,0.056307,0.05988,0.056307,0.056307,0.056307,0.029941,0.029941,36.401059,40,37.25152,40,36.736093,40,40,40,40,40,,,,,,,,,,,3406,3406,0.134063,0.134063,0.134063,0.134063,0.134063,0.134063,0.134063,0.134063,0.056307,0.056307,40,40,, +10031,0,0.012842,1,1,1,2,4,,5,6,Laplaisance,Rd,1238308,1.853,1.866,0,0.275196,3,4,0.019264,0.019264,0.019264,0.019264,40,40,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.021168,0.020246,0.019264,0.019264,0.021168,0.020246,0.020685,0.019277,0.019264,0.019264,0.020685,0.019277,0.020975,0.019339,0.019264,0.019264,0.020975,0.019339,0.019264,0.019264,0.019264,0.019264,0.019264,0.019264,,,,,,,0.021168,0.020246,0.020685,0.019277,0.020975,0.019339,0.019264,0.019264,0.019264,0.019264,0.008662,0.008385,0.008517,0.008095,0.008604,0.008113,0.008091,0.008091,0.004302,0.004302,36.401059,38.059236,37.25152,39.973247,36.736093,39.843607,40,40,40,40,,,,,,,,,,,3406,3406,0.019264,0.019264,0.019264,0.019264,0.019264,0.019264,0.019264,0.019264,0.008091,0.008091,40,40,, +8608,0,0.140288,1,1,0,2,4,,4,6,Winchester,St,1224908,0.526,0.666,0,3.006182,4.5,4.5,0.221508,0.221508,0.221508,0.221508,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.284809,0.222932,0.221508,0.221508,0.284809,0.222932,0.223971,0.221971,0.221508,0.221508,0.223971,0.221971,0.256113,0.23883,0.221508,0.221508,0.256113,0.23883,0.221508,0.221508,0.221508,0.221508,0.221508,0.221508,,,,,,,0.284809,0.222932,0.223971,0.221971,0.256113,0.23883,0.221508,0.221508,0.221508,0.221508,0.110695,0.092131,0.092443,0.091843,0.102086,0.096901,0.091704,0.091704,0.048658,0.048658,29.554182,37.757306,37.582179,37.920811,32.86558,35.243876,38,38,38,38,,,,,,,,,,,3096,3096,0.221508,0.221508,0.221508,0.221508,0.221508,0.221508,0.221508,0.221508,0.091704,0.091704,38,38,, +8611,0,0.124311,1,1,0,2,4,,3,6,Scott,St,1224901,0.438,0.562,0,2.663809,6,4.5,0.22602,0.22602,0.22602,0.22602,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.301982,0.226148,0.22602,0.22602,0.301982,0.226148,0.276575,0.226172,0.22602,0.22602,0.276575,0.226172,0.361859,0.226874,0.22602,0.22602,0.361859,0.226874,0.22602,0.22602,0.22602,0.22602,0.22602,0.22602,,,,,,,0.301982,0.226148,0.276575,0.226172,0.361859,0.226874,0.22602,0.22602,0.22602,0.22602,0.112971,0.090221,0.105349,0.090227,0.130934,0.090438,0.090182,0.090182,0.047577,0.047577,24.699034,32.981297,26.967923,32.977909,20.61208,32.875749,33,33,33,33,,,,,,,,,,,2580,2580,0.22602,0.22602,0.22602,0.22602,0.22602,0.22602,0.22602,0.22602,0.090182,0.090182,33,33,, +8613,0,0.210878,1,1,0,2,4,,3,6,Scott,St,1224901,0.088,0.299,0,4.518817,6,4.5,0.383415,0.383415,0.383415,0.383415,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.534111,0.454083,0.383415,0.383415,0.534111,0.454083,0.468704,0.443979,0.383415,0.383415,0.468704,0.443979,0.507455,0.54088,0.383415,0.383415,0.507455,0.54088,0.383415,0.383415,0.383415,0.383415,0.383415,0.383415,,,,,,,0.534111,0.454083,0.468704,0.443979,0.507455,0.54088,0.383415,0.383415,0.383415,0.383415,0.198191,0.174183,0.178569,0.171152,0.190195,0.200222,0.152982,0.152982,0.080709,0.080709,23.689256,27.864249,26.995053,28.498377,24.933618,23.392794,33,33,33,33,,,,,,,,,,,2580,2580,0.383415,0.383415,0.383415,0.383415,0.383415,0.383415,0.383415,0.383415,0.152982,0.152982,33,33,, +8621,0,0.138267,1,1,0,2,4,,3,6,1st,St,1224806,0.385,0.523,0,2.962864,6,4.5,0.251395,0.251395,0.251395,0.251395,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.465477,0.328449,0.251395,0.251395,0.465477,0.328449,0.399374,0.367027,0.251395,0.251395,0.399374,0.367027,0.49686,0.52854,0.251395,0.251395,0.49686,0.52854,0.251395,0.251395,0.251395,0.251395,0.251395,0.251395,,,,,,,0.465477,0.328449,0.399374,0.367027,0.49686,0.52854,0.251395,0.251395,0.251395,0.251395,0.164531,0.123423,0.1447,0.134996,0.173946,0.18345,0.100306,0.100306,0.052919,0.052919,17.822618,25.258163,20.772534,22.603321,16.6969,15.696104,33,33,33,33,,,,,,,,,,,2580,2580,0.251395,0.251395,0.251395,0.251395,0.251395,0.251395,0.251395,0.251395,0.100306,0.100306,33,33,, +8623,0,0.293114,1,1,0,2,5,,3,6,3rd,St,1224710,0.974,1.267,0,6.28101,8,4.5,0.703473,0.703473,0.703473,0.703473,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.705046,0.703473,0.703473,0.703473,0.705046,0.703473,0.703473,0.703473,0.703473,0.703473,0.703473,0.703473,0.705754,0.707858,0.703473,0.703473,0.705754,0.707858,0.703473,0.703473,0.703473,0.703473,0.703473,0.703473,,,,,,,0.705046,0.703473,0.703473,0.703473,0.705754,0.707858,0.703473,0.703473,0.703473,0.703473,0.264274,0.263802,0.263802,0.263802,0.264487,0.265118,0.263802,0.263802,0.137763,0.137763,24.944235,25,25,25,24.91919,24.845141,25,25,25,25,,,,,,,,,,,2408,2408,0.703473,0.703473,0.703473,0.703473,0.703473,0.703473,0.703473,0.703473,0.263802,0.263802,25,25,, +8712,0,0.172939,1,1,0,2,5,,3,6,Noble,St,1225503,0.207,0.38,0,3.705826,8,4.5,0.415052,0.415052,0.415052,0.415052,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.426427,0.415296,0.415052,0.415052,0.426427,0.415296,0.418148,0.415369,0.415052,0.415052,0.418148,0.415369,0.452189,0.41654,0.415052,0.415052,0.452189,0.41654,0.415052,0.415052,0.415052,0.415052,0.415052,0.415052,,,,,,,0.426427,0.415296,0.418148,0.415369,0.452189,0.41654,0.415052,0.415052,0.415052,0.415052,0.159057,0.155718,0.156573,0.15574,0.166785,0.156091,0.155645,0.155645,0.081281,0.081281,24.33315,24.985337,24.814933,24.980932,22.946874,24.910748,25,25,25,25,,,,,,,,,,,2408,2408,0.415052,0.415052,0.415052,0.415052,0.415052,0.415052,0.415052,0.415052,0.155645,0.155645,25,25,, +8723,0,0.751547,1,1,0,2,5,,4,6,Detroit,St,1225408,0,0.751,0,16.104586,5.8,4.5,1.670105,1.670105,1.670105,1.670105,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.670804,1.670469,1.670105,1.670105,1.670804,1.670469,1.670385,1.67043,1.670105,1.670105,1.670385,1.67043,1.671106,1.671123,1.670105,1.670105,1.671106,1.671123,1.670105,1.670105,1.670105,1.670105,1.670105,1.670105,,,,,,,1.670804,1.670469,1.670385,1.67043,1.671106,1.671123,1.670105,1.670105,1.670105,1.670105,0.63652,0.636419,0.636394,0.636407,0.63661,0.636615,0.63631,0.63631,0.333186,0.333186,26.988712,26.994119,26.995471,26.994757,26.983823,26.983552,27,27,27,27,,,,,,,,,,,2580,2580,1.670105,1.670105,1.670105,1.670105,1.670105,1.670105,1.670105,1.670105,0.63631,0.63631,27,27,, +8762,-1,0.160023,0,2,0,2,4,,3,6,Front,St,1223803,19.829,19.989,0,3.429062,6,4.5,,0.290951,,0.290951,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.308106,,0.290951,,0.308106,,0.300933,,0.290951,,0.300933,,0.335421,,0.290951,,0.335421,,0.290951,,0.290951,,0.290951,,,,,,,,0.308106,,0.300933,,0.335421,,0.290951,,0.290951,,0.121236,,0.119084,,0.12943,,0.116089,,0.061245,,31.162536,,31.905337,,28.624829,,33,,33,,,,,,,,,,,,5160,,0.290951,,0.290951,,0.290951,,0.290951,,0.116089,,33,, +8765,0,0.443023,1,1,0,2,4,,3,6,1st,St,1224806,0.523,0.966,0,9.49335,6,4.5,0.805496,0.805496,0.805496,0.805496,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.925758,0.941976,0.805496,0.805496,0.925758,0.941976,0.874668,0.862,0.805496,0.805496,0.874668,0.862,0.964208,0.889103,0.805496,0.805496,0.964208,0.889103,0.805496,0.805496,0.805496,0.805496,0.805496,0.805496,,,,,,,0.925758,0.941976,0.874668,0.862,0.964208,0.889103,0.805496,0.805496,0.805496,0.805496,0.357472,0.362337,0.342145,0.338344,0.369007,0.346475,0.321393,0.321393,0.169557,0.169557,28.713096,28.218735,30.390242,30.836873,27.568086,29.896858,33,33,33,33,,,,,,,,,,,2580,2580,0.805496,0.805496,0.805496,0.805496,0.805496,0.805496,0.805496,0.805496,0.321393,0.321393,33,33,, +8769,0,0.211704,1,1,0,2,5,,3,6,3rd,St,1224710,0.763,0.974,0,4.536507,8,4.5,0.508089,0.508089,0.508089,0.508089,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.509025,0.508089,0.508089,0.508089,0.509025,0.508089,0.508089,0.508089,0.508089,0.508089,0.508089,0.508089,0.509736,0.509739,0.508089,0.508089,0.509736,0.509739,0.508089,0.508089,0.508089,0.508089,0.508089,0.508089,,,,,,,0.509025,0.508089,0.508089,0.508089,0.509736,0.509739,0.508089,0.508089,0.508089,0.508089,0.190814,0.190533,0.190533,0.190533,0.191028,0.191028,0.190533,0.190533,0.099501,0.099501,24.954025,25,25,25,24.91919,24.919082,25,25,25,25,,,,,,,,,,,2408,2408,0.508089,0.508089,0.508089,0.508089,0.508089,0.508089,0.508089,0.508089,0.190533,0.190533,25,25,, +8940,0,0.184032,1,1,0,2,4,,4,6,Elm,Ave,1226001,21.974,22.158,0,3.943542,4.5,4.5,0.290577,0.290577,0.290577,0.290577,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.290869,0.290578,0.290577,0.290577,0.290869,0.290578,0.290804,0.290585,0.290577,0.290577,0.290804,0.290585,0.293614,0.29059,0.290577,0.290577,0.293614,0.29059,0.290577,0.290577,0.290577,0.290577,0.290577,0.290577,,,,,,,0.290869,0.290578,0.290804,0.290585,0.293614,0.29059,0.290577,0.290577,0.290577,0.290577,0.120386,0.120299,0.120367,0.120301,0.12121,0.120303,0.120299,0.120299,0.06383,0.06383,37.961862,37.999834,37.970355,37.998915,37.606865,37.998233,38,38,38,38,,,,,,,,,,,3096,3096,0.290577,0.290577,0.290577,0.290577,0.290577,0.290577,0.290577,0.290577,0.120299,0.120299,38,38,, +8961,0,0.16534,1,1,0,2,4,,3,6,Elm,Ave,1226001,20.888,21.053,0,3.54301,6,4.5,0.300619,0.300619,0.300619,0.300619,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.458074,0.331248,0.300619,0.300619,0.458074,0.331248,0.399454,0.328917,0.300619,0.300619,0.399454,0.328917,0.467548,0.363169,0.300619,0.300619,0.467548,0.363169,0.300619,0.300619,0.300619,0.300619,0.300619,0.300619,,,,,,,0.458074,0.331248,0.399454,0.328917,0.467548,0.363169,0.300619,0.300619,0.300619,0.300619,0.167184,0.129136,0.149598,0.128436,0.170026,0.138712,0.119947,0.119947,0.06328,0.06328,21.656811,29.948648,24.834953,30.160895,21.21797,27.316254,33,33,33,33,,,,,,,,,,,2580,2580,0.300619,0.300619,0.300619,0.300619,0.300619,0.300619,0.300619,0.300619,0.119947,0.119947,33,33,, +9291,0,0.498257,1,1,0,2,5,,3,6,Kentucky,Ave,1229306,1.596,2.094,0,10.676927,8,4.5,1.195816,1.195816,1.195816,1.195816,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.210683,1.195827,1.195816,1.195816,1.210683,1.195827,1.196113,1.195842,1.195816,1.195816,1.196113,1.195842,1.200752,1.204291,1.195816,1.195816,1.200752,1.204291,1.195816,1.195816,1.195816,1.195816,1.195816,1.195816,,,,,,,1.210683,1.195827,1.196113,1.195842,1.200752,1.204291,1.195816,1.195816,1.195816,1.195816,0.452891,0.448434,0.44852,0.448439,0.449912,0.450973,0.448431,0.448431,0.234181,0.234181,24.69299,24.999763,24.993788,24.999457,24.897232,24.824065,25,25,25,25,,,,,,,,,,,2408,2408,1.195816,1.195816,1.195816,1.195816,1.195816,1.195816,1.195816,1.195816,0.448431,0.448431,25,25,, +9309,1,0.452408,1,0,0,1,1,ROF,4,6,S I 75/Laplaisance,RAMP,1228207,0,0.452,0,,2.24,5,0.678612,,0.678612,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.678639,,0.678612,,0.678639,,0.678624,,0.678612,,0.678624,,0.681256,,0.678612,,0.681256,,0.678612,,0.678612,,0.678612,,,,,,,,0.678639,,0.678624,,0.681256,,0.678612,,0.678612,,0.285025,,0.285021,,0.28581,,0.285017,,0.151557,,39.998364,,39.999265,,39.844767,,40,,40,,,,,,,,,,,,5160,,0.678612,,0.678612,,0.678612,,0.678612,,0.285017,,40,,, +9352,1,0.34499,2,0,0,2,5,,3,6,8th,St,1227505,0.249,0.594,0,7.392648,8,4.5,0.827977,,0.827977,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.828207,,0.827977,,0.828207,,0.828145,,0.827977,,0.828145,,0.829084,,0.827977,,0.829084,,0.827977,,0.827977,,0.827977,,,,,,,,0.828207,,0.828145,,0.829084,,0.827977,,0.827977,,0.31056,,0.310542,,0.310824,,0.310491,,0.162145,,24.99304,,24.994907,,24.966594,,25,,25,,,,,,,,,,,,4816,,0.827977,,0.827977,,0.827977,,0.827977,,0.310491,,25,,, +9385,0,0.237575,2,2,0,2,4,,3,6,Monroe,St,1227004,15.158,15.396,0,5.090894,6,4.5,0.431955,0.431955,0.431955,0.431955,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.475014,0.441017,0.431955,0.431955,0.475014,0.441017,0.458738,0.451447,0.431955,0.431955,0.458738,0.451447,0.490012,0.553664,0.431955,0.431955,0.490012,0.553664,0.431955,0.431955,0.431955,0.431955,0.431955,0.431955,,,,,,,0.475014,0.441017,0.458738,0.451447,0.490012,0.553664,0.431955,0.431955,0.431955,0.431955,0.185268,0.175069,0.180385,0.178198,0.189767,0.208863,0.17235,0.17235,0.090926,0.090926,30.008566,32.321911,31.073285,31.57513,29.090116,25.745753,33,33,33,33,,,,,,,,,,,5160,5160,0.431955,0.431955,0.431955,0.431955,0.431955,0.431955,0.431955,0.431955,0.17235,0.17235,33,33,, +9392,0,0.086757,2,2,0,2,4,,3,6,Monroe,St,1227004,14.21,14.297,0,1.85908,6,4.5,0.15774,0.15774,0.15774,0.15774,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.180057,0.159867,0.15774,0.15774,0.180057,0.159867,0.168028,0.160431,0.15774,0.15774,0.168028,0.160431,0.189508,0.168446,0.15774,0.15774,0.189508,0.168446,0.15774,0.15774,0.15774,0.15774,0.15774,0.15774,,,,,,,0.180057,0.159867,0.168028,0.160431,0.189508,0.168446,0.15774,0.15774,0.15774,0.15774,0.069633,0.063576,0.066025,0.063745,0.072469,0.06615,0.062938,0.062938,0.033204,0.033204,28.909818,32.560956,30.979513,32.446543,27.468111,30.902681,33,33,33,33,,,,,,,,,,,5160,5160,0.15774,0.15774,0.15774,0.15774,0.15774,0.15774,0.15774,0.15774,0.062938,0.062938,33,33,, +9453,-1,1.088934,0,3,0,1,1,,4,6,S I 75,,1226909,13.675,14.763,0,,0.8,7.5,,0.933372,,0.933372,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.93355,,0.933372,,0.93355,,0.933534,,0.933372,,0.933534,,0.936098,,0.933372,,0.936098,,0.933372,,0.933372,,0.933372,,,,,,,,0.93355,,0.933534,,0.936098,,0.933372,,0.933372,,0.476073,,0.476068,,0.476837,,0.47602,,0.259789,,69.986676,,69.987906,,69.796196,,70,,70,,,,,,,,,,,,22704,,0.933372,,0.933372,,0.933372,,0.933372,,0.47602,,70,, +10156,0,0.101421,2,2,0,2,4,,3,6,Stewart,Rd,1237610,8.942,9.044,0,2.1733,6,4.5,0.184401,0.184401,0.184401,0.184401,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.184474,0.184422,0.184401,0.184401,0.184474,0.184422,0.184502,0.184512,0.184401,0.184401,0.184502,0.184512,0.185004,0.185187,0.184401,0.184401,0.185004,0.185187,0.184401,0.184401,0.184401,0.184401,0.184401,0.184401,,,,,,,0.184474,0.184422,0.184502,0.184512,0.185004,0.185187,0.184401,0.184401,0.184401,0.184401,0.073598,0.073582,0.073606,0.073609,0.073757,0.073812,0.073576,0.073576,0.038816,0.038816,32.987054,32.996341,32.982042,32.980153,32.892403,32.859961,33,33,33,33,,,,,,,,,,,5160,5160,0.184401,0.184401,0.184401,0.184401,0.184401,0.184401,0.184401,0.184401,0.073576,0.073576,33,33,, +20417,0,0.586512,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,14.037,14.623,0,12.568105,5,5,1.005448,1.005448,1.005448,1.005448,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.010726,1.006641,1.005448,1.005448,1.010726,1.006641,1.008624,1.008237,1.005448,1.005448,1.008624,1.008237,1.015207,1.017486,1.005448,1.005448,1.015207,1.017486,1.005448,1.005448,1.005448,1.005448,1.005448,1.005448,,,,,,,1.010726,1.006641,1.008624,1.008237,1.015207,1.017486,1.005448,1.005448,1.005448,1.005448,0.40879,0.407564,0.408159,0.408043,0.410134,0.410818,0.407207,0.407207,0.215334,0.215334,34.817242,34.958539,34.88979,34.903203,34.663574,34.585914,35,35,35,35,,,,,,,,,,,7946,7946,1.005448,1.005448,1.005448,1.005448,1.005448,1.005448,1.005448,1.005448,0.407207,0.407207,35,35,, +31036,0,0.441137,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.452942,0.15,4,2.646824,2.646824,2.646824,2.646824,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,,,,,,,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,0.873452,0.873452,0.873452,0.873452,0.873452,0.873452,0.873452,0.873452,0.445549,0.445549,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,2.646824,0.873452,0.873452,10,10,, +31182,0,0.357211,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,7.654519,0.15,4,2.143265,2.143265,2.143265,2.143265,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,,,,,,,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,0.707278,0.707278,0.707278,0.707278,0.707278,0.707278,0.707278,0.707278,0.360783,0.360783,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,2.143265,0.707278,0.707278,10,10,, +31185,0,0.337481,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,7.231733,0.15,4,2.024885,2.024885,2.024885,2.024885,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,,,,,,,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,0.668212,0.668212,0.668212,0.668212,0.668212,0.668212,0.668212,0.668212,0.340856,0.340856,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,2.024885,0.668212,0.668212,10,10,, +31189,0,0.703116,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,15.06678,0.15,4,4.218699,4.218699,4.218699,4.218699,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,,,,,,,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,1.392171,1.392171,1.392171,1.392171,1.392171,1.392171,1.392171,1.392171,0.710148,0.710148,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,4.218699,1.392171,1.392171,10,10,, +31190,0,0.388556,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,8.326199,0.15,4,2.331336,2.331336,2.331336,2.331336,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.331336,2.331336,2.331336,2.331336,2.331336,2.331336,2.331336,2.331336,2.331336,2.331336,2.331336,2.331336,2.331337,2.331337,2.331336,2.331336,2.331337,2.331337,2.331336,2.331336,2.331336,2.331336,2.331336,2.331336,,,,,,,2.331336,2.331336,2.331336,2.331336,2.331337,2.331337,2.331336,2.331336,2.331336,2.331336,0.769341,0.769341,0.769341,0.769341,0.769341,0.769341,0.769341,0.769341,0.392442,0.392442,9.999998,9.999999,9.999999,9.999999,9.999996,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,2.331336,2.331336,2.331336,2.331336,2.331336,2.331336,2.331336,2.331336,0.769341,0.769341,10,10,, +9357,0,0.482217,1,1,1,2,4,,4,6,Dunbar,Rd,1227408,0,0.482,0,10.333227,4.5,4.5,0.761396,0.761396,0.761396,0.761396,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.83849,0.795169,0.761396,0.761396,0.83849,0.795169,0.823163,0.814635,0.761396,0.761396,0.823163,0.814635,0.998608,1.018169,0.761396,0.761396,0.998608,1.018169,0.761396,0.761396,0.761396,0.761396,0.761396,0.761396,,,,,,,0.83849,0.795169,0.823163,0.814635,0.998608,1.018169,0.761396,0.761396,0.761396,0.761396,0.338346,0.32535,0.333748,0.33119,0.386381,0.39225,0.315218,0.315218,0.167253,0.167253,34.506107,36.386043,35.148626,35.516571,28.97337,28.416728,38,38,38,38,,,,,,,,,,,3406,3406,0.761396,0.761396,0.761396,0.761396,0.761396,0.761396,0.761396,0.761396,0.315218,0.315218,38,38,, +9395,0,0.357364,2,2,0,2,4,,3,6,Dixie,Hwy,1227004,13.392,13.749,0,7.657804,6,4.5,0.649753,0.649753,0.649753,0.649753,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.670798,0.657005,0.649753,0.649753,0.670798,0.657005,0.655379,0.655369,0.649753,0.649753,0.655379,0.655369,0.665504,0.676005,0.649753,0.649753,0.665504,0.676005,0.649753,0.649753,0.649753,0.649753,0.649753,0.649753,,,,,,,0.670798,0.657005,0.655379,0.655369,0.665504,0.676005,0.649753,0.649753,0.649753,0.649753,0.265565,0.261427,0.260939,0.260936,0.263977,0.267127,0.259251,0.259251,0.136773,0.136773,31.964712,32.635732,32.716728,32.717199,32.218962,31.718485,33,33,33,33,,,,,,,,,,,5160,5160,0.649753,0.649753,0.649753,0.649753,0.649753,0.649753,0.649753,0.649753,0.259251,0.259251,33,33,, +9397,0,0.441761,2,2,0,2,4,,4,6,Dixie,Hwy,1227004,12.558,12.999,0,9.466318,4.5,4.5,0.697518,0.697518,0.697518,0.697518,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.70981,0.699663,0.697518,0.697518,0.70981,0.699663,0.700517,0.699845,0.697518,0.697518,0.700517,0.699845,0.711779,0.715169,0.697518,0.697518,0.711779,0.715169,0.697518,0.697518,0.697518,0.697518,0.697518,0.697518,,,,,,,0.70981,0.699663,0.700517,0.699845,0.711779,0.715169,0.697518,0.697518,0.697518,0.697518,0.29246,0.289416,0.289672,0.289471,0.293051,0.294068,0.288773,0.288773,0.153221,0.153221,37.34195,37.883507,37.837345,37.873638,37.238657,37.062116,38,38,38,38,,,,,,,,,,,6192,6192,0.697518,0.697518,0.697518,0.697518,0.697518,0.697518,0.697518,0.697518,0.288773,0.288773,38,38,, +10005,0,0.774771,1,1,0,2,4,,4,6,Laplaisance,Rd,1238308,2.317,3.092,0,16.60223,4.5,4.5,1.223322,1.223322,1.223322,1.223322,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.294856,1.250992,1.223322,1.223322,1.294856,1.250992,1.265572,1.251257,1.223322,1.223322,1.265572,1.251257,1.281747,1.275431,1.223322,1.223322,1.281747,1.275431,1.223322,1.223322,1.223322,1.223322,1.223322,1.223322,,,,,,,1.294856,1.250992,1.265572,1.251257,1.281747,1.275431,1.223322,1.223322,1.223322,1.223322,0.527916,0.514756,0.51913,0.514836,0.523983,0.522088,0.506455,0.506455,0.268723,0.268723,35.900703,37.159501,36.731403,37.151643,36.267883,36.447479,38,38,38,38,,,,,,,,,,,3096,3096,1.223322,1.223322,1.223322,1.223322,1.223322,1.223322,1.223322,1.223322,0.506455,0.506455,38,38,, +20526,0,0.904864,1,1,0,2,5,,4,6,Albain,Rd,4301495,11.823,12.727,0,19.389942,5.8,4.5,2.010809,2.010809,2.010809,2.010809,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.023418,2.011299,2.010809,2.010809,2.023418,2.011299,2.010947,2.011006,2.010809,2.010809,2.010947,2.011006,2.012258,2.051969,2.010809,2.010809,2.012258,2.051969,2.010809,2.010809,2.010809,2.010809,2.010809,2.010809,,,,,,,2.023418,2.011299,2.010947,2.011006,2.012258,2.051969,2.010809,2.010809,2.010809,2.010809,0.769901,0.766265,0.76616,0.766177,0.766553,0.778466,0.766118,0.766118,0.401156,0.401156,26.831744,26.993423,26.99814,26.997352,26.980558,26.458415,27,27,27,27,,,,,,,,,,,2580,2580,2.010809,2.010809,2.010809,2.010809,2.010809,2.010809,2.010809,2.010809,0.766118,0.766118,27,27,, +31155,0,0.77077,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.516503,0.15,4,3.083081,3.083081,3.083081,3.083081,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,,,,,,,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,1.063663,1.063663,1.063663,1.063663,1.063663,1.063663,1.063663,1.063663,0.547247,0.547247,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,3.083081,1.063663,1.063663,15,15,, +31156,0,0.453259,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,9.712687,0.15,4,1.813035,1.813035,1.813035,1.813035,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.813035,1.813035,1.813035,1.813035,1.813035,1.813035,1.813036,1.813036,1.813035,1.813035,1.813036,1.813036,1.813036,1.813037,1.813035,1.813035,1.813036,1.813037,1.813035,1.813035,1.813035,1.813035,1.813035,1.813035,,,,,,,1.813035,1.813035,1.813036,1.813036,1.813036,1.813037,1.813035,1.813035,1.813035,1.813035,0.625497,0.625497,0.625497,0.625497,0.625498,0.625498,0.625497,0.625497,0.321814,0.321814,14.999997,14.999998,14.999993,14.999994,14.999987,14.999985,15,15,15,15,,,,,,,,,,,34400,34400,1.813035,1.813035,1.813035,1.813035,1.813035,1.813035,1.813035,1.813035,0.625497,0.625497,15,15,, +31187,0,0.431913,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.255271,0.15,4,2.591476,2.591476,2.591476,2.591476,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,,,,,,,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,0.855187,0.855187,0.855187,0.855187,0.855187,0.855187,0.855187,0.855187,0.436232,0.436232,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,2.591476,0.855187,0.855187,10,10,, +9398,0,0.525742,2,2,0,2,4,,4,6,Dixie,Hwy,1227004,12.032,12.558,0,11.265909,4.5,4.5,0.83012,0.83012,0.83012,0.83012,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.83187,0.830154,0.83012,0.83012,0.83187,0.830154,0.830257,0.83018,0.83012,0.83012,0.830257,0.83018,0.830842,0.831381,0.83012,0.83012,0.830842,0.831381,0.83012,0.83012,0.83012,0.83012,0.83012,0.83012,,,,,,,0.83187,0.830154,0.830257,0.83018,0.830842,0.831381,0.83012,0.83012,0.83012,0.83012,0.344195,0.34368,0.343711,0.343688,0.343886,0.344048,0.34367,0.34367,0.18235,0.18235,37.920024,37.998415,37.99371,37.997224,37.966954,37.942347,38,38,38,38,,,,,,,,,,,6192,6192,0.83012,0.83012,0.83012,0.83012,0.83012,0.83012,0.83012,0.83012,0.34367,0.34367,38,38,, +10330,0,0.532502,1,1,0,2,4,,3,6,Dunbar,Rd,1234601,12.315,12.847,0,11.410765,6,4.5,0.968186,0.968186,0.968186,0.968186,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.049891,1.030388,0.968186,0.968186,1.049891,1.030388,1.004664,0.991686,0.968186,0.968186,1.004664,0.991686,1.045426,1.100577,0.968186,0.968186,1.045426,1.100577,0.968186,0.968186,0.968186,0.968186,0.968186,0.968186,,,,,,,1.049891,1.030388,1.004664,0.991686,1.045426,1.100577,0.968186,0.968186,0.968186,0.968186,0.410818,0.404967,0.397249,0.393356,0.409478,0.426024,0.386306,0.386306,0.203803,0.203803,30.431857,31.00788,31.801833,32.217992,30.561832,29.030345,33,33,33,33,,,,,,,,,,,2580,2580,0.968186,0.968186,0.968186,0.968186,0.968186,0.968186,0.968186,0.968186,0.386306,0.386306,33,33,, +31186,0,0.41217,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,8.832205,0.15,4,2.473017,2.473017,2.473017,2.473017,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,,,,,,,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,0.816096,0.816096,0.816096,0.816096,0.816096,0.816096,0.816096,0.816096,0.416291,0.416291,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,2.473017,0.816096,0.816096,10,10,, +34003,0,0.428922,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.191192,0.15,4,2.573534,2.573534,2.573534,2.573534,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,,,,,,,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,0.849266,0.849266,0.849266,0.849266,0.849266,0.849266,0.849266,0.849266,0.433212,0.433212,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,2.573534,0.849266,0.849266,10,10,, +20635,0,0.385807,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,13.651,14.037,0,8.267292,5,5,0.661383,0.661383,0.661383,0.661383,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.684338,0.664542,0.661383,0.661383,0.684338,0.664542,0.668976,0.668188,0.661383,0.661383,0.668976,0.668188,0.684412,0.69851,0.661383,0.661383,0.684412,0.69851,0.661383,0.661383,0.661383,0.661383,0.661383,0.661383,,,,,,,0.684338,0.664542,0.668976,0.668188,0.684412,0.69851,0.661383,0.661383,0.661383,0.661383,0.274747,0.268808,0.270138,0.269902,0.274769,0.278998,0.26786,0.26786,0.141646,0.141646,33.826021,34.833655,34.602785,34.643557,33.82234,33.139729,35,35,35,35,,,,,,,,,,,7946,7946,0.661383,0.661383,0.661383,0.661383,0.661383,0.661383,0.661383,0.661383,0.26786,0.26786,35,35,, +9396,0,0.392528,2,2,0,2,4,,4,6,Dixie,Hwy,1227004,12.999,13.392,0,8.411306,4.5,4.5,0.61978,0.61978,0.61978,0.61978,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.625426,0.620571,0.61978,0.61978,0.625426,0.620571,0.620435,0.620446,0.61978,0.61978,0.620435,0.620446,0.622819,0.625267,0.61978,0.61978,0.622819,0.625267,0.61978,0.61978,0.61978,0.61978,0.61978,0.61978,,,,,,,0.625426,0.620571,0.620435,0.620446,0.622819,0.625267,0.61978,0.61978,0.61978,0.61978,0.258283,0.256826,0.256785,0.256789,0.257501,0.258235,0.256589,0.256589,0.136145,0.136145,37.657012,37.951566,37.959936,37.959241,37.814609,37.666575,38,38,38,38,,,,,,,,,,,6192,6192,0.61978,0.61978,0.61978,0.61978,0.61978,0.61978,0.61978,0.61978,0.256589,0.256589,38,38,, +10329,0,0.272995,1,1,0,2,4,,3,6,Dunbar,Rd,1234601,12.847,13.12,0,5.849891,6,4.5,0.496354,0.496354,0.496354,0.496354,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.622821,0.608257,0.496354,0.496354,0.622821,0.608257,0.615385,0.595777,0.496354,0.496354,0.615385,0.595777,0.757721,0.777778,0.496354,0.496354,0.757721,0.777778,0.496354,0.496354,0.496354,0.496354,0.496354,0.496354,,,,,,,0.622821,0.608257,0.615385,0.595777,0.757721,0.777778,0.496354,0.496354,0.496354,0.496354,0.235985,0.231616,0.233755,0.227872,0.276455,0.282472,0.198045,0.198045,0.104483,0.104483,26.299211,26.928912,26.617,27.492991,21.617054,21.059616,33,33,33,33,,,,,,,,,,,2580,2580,0.496354,0.496354,0.496354,0.496354,0.496354,0.496354,0.496354,0.496354,0.198045,0.198045,33,33,, +31077,0,0.941771,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,20.180817,0.15,4,3.767086,3.767086,3.767086,3.767086,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,,,,,,,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,1.299645,1.299645,1.299645,1.299645,1.299645,1.299645,1.299645,1.299645,0.668658,0.668658,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,3.767086,1.299645,1.299645,15,15,, +31157,0,0.6112,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,13.097141,0.15,4,2.4448,2.4448,2.4448,2.4448,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,,,,,,,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,0.843456,0.843456,0.843456,0.843456,0.843456,0.843456,0.843456,0.843456,0.433952,0.433952,14.999999,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,2.4448,0.843456,0.843456,15,15,, +10010,0,0.16483,1,1,1,2,4,,4,6,Laplaisance,Rd,1238308,2.153,2.317,0,3.532081,4.5,4.5,0.260259,0.260259,0.260259,0.260259,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.343083,0.331344,0.260259,0.260259,0.343083,0.331344,0.317635,0.300701,0.260259,0.260259,0.317635,0.300701,0.410362,0.360214,0.260259,0.260259,0.410362,0.360214,0.260259,0.260259,0.260259,0.260259,0.260259,0.260259,,,,,,,0.343083,0.331344,0.317635,0.300701,0.410362,0.360214,0.260259,0.260259,0.260259,0.260259,0.132594,0.129073,0.12496,0.11988,0.152778,0.137734,0.107747,0.107747,0.05717,0.05717,28.826312,29.847595,31.135843,32.889236,24.100266,27.455403,38,38,38,38,,,,,,,,,,,3406,3406,0.260259,0.260259,0.260259,0.260259,0.260259,0.260259,0.260259,0.260259,0.107747,0.107747,38,38,, +10012,0,0.050968,1,1,1,2,4,,4,6,Laplaisance,Rd,1238308,2.102,2.153,0,1.092171,4.5,4.5,0.080476,0.080476,0.080476,0.080476,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.113682,0.162823,0.080476,0.080476,0.113682,0.162823,0.101794,0.095319,0.080476,0.080476,0.101794,0.095319,0.235705,0.125833,0.080476,0.080476,0.235705,0.125833,0.080476,0.080476,0.080476,0.080476,0.080476,0.080476,,,,,,,0.113682,0.162823,0.101794,0.095319,0.235705,0.125833,0.080476,0.080476,0.080476,0.080476,0.043279,0.058021,0.039713,0.03777,0.079886,0.046924,0.033317,0.033317,0.017678,0.017678,26.900272,18.78166,30.041726,32.08261,12.974191,24.302581,38,38,38,38,,,,,,,,,,,3406,3406,0.080476,0.080476,0.080476,0.080476,0.080476,0.080476,0.080476,0.080476,0.033317,0.033317,38,38,, +9354,0,0.444582,1,1,0,2,4,,3,6,Jones,Ave,1227504,0,0.444,0,9.526749,6,4.5,0.80833,0.80833,0.80833,0.80833,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.813489,0.812657,0.80833,0.80833,0.813489,0.812657,0.809015,0.809209,0.80833,0.80833,0.809015,0.809209,0.815984,0.829154,0.80833,0.80833,0.815984,0.829154,0.80833,0.80833,0.80833,0.80833,0.80833,0.80833,,,,,,,0.813489,0.812657,0.809015,0.809209,0.815984,0.829154,0.80833,0.80833,0.80833,0.80833,0.324071,0.323822,0.322729,0.322787,0.32482,0.328771,0.322524,0.322524,0.170154,0.170154,32.790717,32.824296,32.972066,32.964181,32.690448,32.171232,33,33,33,33,,,,,,,,,,,2580,2580,0.80833,0.80833,0.80833,0.80833,0.80833,0.80833,0.80833,0.80833,0.322524,0.322524,33,33,, +9356,0,0.242424,1,1,1,2,4,,4,6,Dunbar,Rd,1227408,0.482,0.724,0,5.194809,4.5,4.5,0.382775,0.382775,0.382775,0.382775,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.395388,0.384238,0.382775,0.382775,0.395388,0.384238,0.386466,0.384994,0.382775,0.382775,0.386466,0.384994,0.398319,0.404853,0.382775,0.382775,0.398319,0.404853,0.382775,0.382775,0.382775,0.382775,0.382775,0.382775,,,,,,,0.395388,0.384238,0.386466,0.384994,0.398319,0.404853,0.382775,0.382775,0.382775,0.382775,0.162253,0.158908,0.159576,0.159135,0.163132,0.165092,0.158469,0.158469,0.084083,0.084083,36.78778,37.855344,37.63715,37.780971,36.517126,35.927784,38,38,38,38,,,,,,,,,,,3406,3406,0.382775,0.382775,0.382775,0.382775,0.382775,0.382775,0.382775,0.382775,0.158469,0.158469,38,38,, +9999,0,0.469463,1,1,0,2,4,,3,6,Laplaisance,Rd,1238308,3.334,3.803,0,10.059915,6,4.5,0.853569,0.853569,0.853569,0.853569,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.954628,0.893176,0.853569,0.853569,0.954628,0.893176,0.943562,0.915226,0.853569,0.853569,0.943562,0.915226,0.958721,0.963847,0.853569,0.853569,0.958721,0.963847,0.853569,0.853569,0.853569,0.853569,0.853569,0.853569,,,,,,,0.954628,0.893176,0.943562,0.915226,0.958721,0.963847,0.853569,0.853569,0.853569,0.853569,0.370892,0.352456,0.367572,0.359071,0.37212,0.373657,0.340574,0.340574,0.179676,0.179676,29.506538,31.536627,29.852597,30.776848,29.380551,29.224308,33,33,33,33,,,,,,,,,,,2580,2580,0.853569,0.853569,0.853569,0.853569,0.853569,0.853569,0.853569,0.853569,0.340574,0.340574,33,33,, +9394,0,0.327867,2,2,0,2,4,,3,6,Dixie,Hwy,1227004,13.749,14.077,0,7.025729,6,4.5,0.596122,0.596122,0.596122,0.596122,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.666814,0.621279,0.596122,0.596122,0.666814,0.621279,0.629516,0.62891,0.596122,0.596122,0.629516,0.62891,0.669041,0.733762,0.596122,0.596122,0.669041,0.733762,0.596122,0.596122,0.596122,0.596122,0.596122,0.596122,,,,,,,0.666814,0.621279,0.629516,0.62891,0.669041,0.733762,0.596122,0.596122,0.596122,0.596122,0.25906,0.2454,0.247871,0.247689,0.259728,0.279145,0.237853,0.237853,0.125484,0.125484,29.501522,31.663797,31.249473,31.27959,29.403351,26.809851,33,33,33,33,,,,,,,,,,,5160,5160,0.596122,0.596122,0.596122,0.596122,0.596122,0.596122,0.596122,0.596122,0.237853,0.237853,33,33,, +9393,0,0.133741,2,2,0,2,4,,3,6,Monroe,St,1227004,14.077,14.21,0,2.865876,6,4.5,0.243165,0.243165,0.243165,0.243165,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.277568,0.25667,0.243165,0.243165,0.277568,0.25667,0.259025,0.257998,0.243165,0.243165,0.259025,0.257998,0.292137,0.310289,0.243165,0.243165,0.292137,0.310289,0.243165,0.243165,0.243165,0.243165,0.243165,0.243165,,,,,,,0.277568,0.25667,0.259025,0.257998,0.292137,0.310289,0.243165,0.243165,0.243165,0.243165,0.107344,0.101074,0.101781,0.101473,0.111714,0.11716,0.097023,0.097023,0.051186,0.051186,28.909818,31.263688,30.979513,31.102741,27.468111,25.861194,33,33,33,33,,,,,,,,,,,5160,5160,0.243165,0.243165,0.243165,0.243165,0.243165,0.243165,0.243165,0.243165,0.097023,0.097023,33,33,, +9292,0,0.213895,1,1,0,2,7,,4,6,Hull,Rd,1229306,1.382,1.596,0,4.58347,6.55,4.5,0.513349,0.513349,0.513349,0.513349,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.567639,0.514552,0.513349,0.513349,0.567639,0.514552,0.522878,0.517166,0.513349,0.513349,0.522878,0.517166,0.558548,0.59753,0.513349,0.513349,0.558548,0.59753,0.513349,0.513349,0.513349,0.513349,0.513349,0.513349,,,,,,,0.567639,0.514552,0.522878,0.517166,0.558548,0.59753,0.513349,0.513349,0.513349,0.513349,0.208793,0.192867,0.195365,0.193651,0.206066,0.21776,0.192506,0.192506,0.100531,0.100531,22.608926,24.941525,24.544372,24.815467,22.976911,21.47796,25,25,25,25,,,,,,,,,,,2064,2064,0.513349,0.513349,0.513349,0.513349,0.513349,0.513349,0.513349,0.513349,0.192506,0.192506,25,25,, +9355,0,0.148313,1,1,0,2,4,,4,6,Dunbar,Rd,1227408,0.724,0.873,0,3.178129,4.5,4.5,0.234178,0.234178,0.234178,0.234178,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.234215,0.234238,0.234178,0.234178,0.234215,0.234238,0.234211,0.234216,0.234178,0.234178,0.234211,0.234216,0.234288,0.234265,0.234178,0.234178,0.234288,0.234265,0.234178,0.234178,0.234178,0.234178,0.234178,0.234178,,,,,,,0.234215,0.234238,0.234211,0.234216,0.234288,0.234265,0.234178,0.234178,0.234178,0.234178,0.096961,0.096968,0.09696,0.096961,0.096983,0.096976,0.09695,0.09695,0.051441,0.051441,37.994006,37.990177,37.994673,37.993831,37.982075,37.985801,38,38,38,38,,,,,,,,,,,3096,3096,0.234178,0.234178,0.234178,0.234178,0.234178,0.234178,0.234178,0.234178,0.09695,0.09695,38,38,, +10003,0,0.242403,1,1,0,2,4,,4,6,Laplaisance,Rd,1238308,3.092,3.334,0,5.194346,4.5,4.5,0.382741,0.382741,0.382741,0.382741,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.387244,0.384153,0.382741,0.382741,0.387244,0.384153,0.385331,0.384257,0.382741,0.382741,0.385331,0.384257,0.385553,0.384814,0.382741,0.382741,0.385553,0.384814,0.382741,0.382741,0.382741,0.382741,0.382741,0.382741,,,,,,,0.387244,0.384153,0.385331,0.384257,0.385553,0.384814,0.382741,0.382741,0.382741,0.382741,0.159806,0.158878,0.159232,0.15891,0.159298,0.159077,0.158455,0.158455,0.084075,0.084075,37.558182,37.860383,37.744613,37.850072,37.722918,37.795314,38,38,38,38,,,,,,,,,,,3096,3096,0.382741,0.382741,0.382741,0.382741,0.382741,0.382741,0.382741,0.382741,0.158455,0.158455,38,38,, +9998,0,0.206349,1,1,0,2,4,,3,6,Laplaisance,Rd,1238308,3.803,4.01,0,4.421766,6,4.5,0.37518,0.37518,0.37518,0.37518,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.410817,0.394735,0.37518,0.37518,0.410817,0.394735,0.403606,0.404026,0.37518,0.37518,0.403606,0.404026,0.405599,0.413525,0.37518,0.37518,0.405599,0.413525,0.37518,0.37518,0.37518,0.37518,0.37518,0.37518,,,,,,,0.410817,0.394735,0.403606,0.404026,0.405599,0.413525,0.37518,0.37518,0.37518,0.37518,0.160388,0.155563,0.158225,0.158351,0.158822,0.1612,0.149697,0.149697,0.078975,0.078975,30.137366,31.365174,30.675818,30.643931,30.525118,29.939984,33,33,33,33,,,,,,,,,,,2580,2580,0.37518,0.37518,0.37518,0.37518,0.37518,0.37518,0.37518,0.37518,0.149697,0.149697,33,33,, +33997,0,0.159235,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.412183,0.15,4,0.955411,0.955411,0.955411,0.955411,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,,,,,,,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.315286,0.315286,0.315286,0.315286,0.315286,0.315286,0.315286,0.315286,0.160828,0.160828,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.955411,0.315286,0.315286,10,10,, +9994,0,0.154685,1,1,0,2,4,,3,6,Laplaisance,Rd,1238308,4.01,4.164,0,3.314687,6,4.5,0.281246,0.281246,0.281246,0.281246,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.391786,0.333084,0.281246,0.281246,0.391786,0.333084,0.343808,0.325672,0.281246,0.281246,0.343808,0.325672,0.372233,0.396751,0.281246,0.281246,0.372233,0.396751,0.281246,0.281246,0.281246,0.281246,0.281246,0.281246,,,,,,,0.391786,0.333084,0.343808,0.325672,0.372233,0.396751,0.281246,0.281246,0.281246,0.281246,0.145379,0.127768,0.130986,0.125545,0.139513,0.146869,0.112217,0.112217,0.059202,0.059202,23.689256,27.864249,26.995053,28.498377,24.933618,23.392794,33,33,33,33,,,,,,,,,,,2580,2580,0.281246,0.281246,0.281246,0.281246,0.281246,0.281246,0.281246,0.281246,0.112217,0.112217,33,33,, +31184,0,0.232576,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,4.98377,0.15,4,1.395456,1.395456,1.395456,1.395456,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,,,,,,,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,0.4605,0.4605,0.4605,0.4605,0.4605,0.4605,0.4605,0.4605,0.234902,0.234902,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,1.395456,0.4605,0.4605,10,10,, +31183,0,0.076956,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,1.649047,0.15,4,0.461733,0.461733,0.461733,0.461733,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,,,,,,,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.152372,0.152372,0.152372,0.152372,0.152372,0.152372,0.152372,0.152372,0.077725,0.077725,9.999997,9.999998,9.999999,9.999999,9.999996,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.461733,0.152372,0.152372,10,10,, +8635,0,0.358945,1,1,0,2,7,,3,6,Roessler,St,1224708,0.788,1.147,0,7.691682,7,4.5,1.076835,1.076835,1.076835,1.076835,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,1.203736,1.113657,1.076835,1.076835,1.203736,1.113657,1.108664,1.107001,1.076835,1.076835,1.108664,1.107001,1.211946,1.272909,1.076835,1.076835,1.211946,1.272909,1.076835,1.076835,1.076835,1.076835,1.076835,1.076835,,,,,,,1.203736,1.113657,1.108664,1.107001,1.211946,1.272909,1.076835,1.076835,1.076835,1.076835,0.425731,0.398707,0.397209,0.396711,0.428194,0.446483,0.387661,0.387661,0.201009,0.201009,17.891554,19.338725,19.425826,19.454998,17.770359,16.919283,20,20,20,20,,,,,,,,,,,1892,1892,1.076835,1.076835,1.076835,1.076835,1.076835,1.076835,1.076835,1.076835,0.387661,0.387661,20,20,, +8782,0,0.07388,1,1,0,2,5,,3,6,Kaye Lani,Ave,1224706,0,0.074,0,1.583151,8,4.5,0.177313,0.177313,0.177313,0.177313,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.185429,0.18595,0.177313,0.177313,0.185429,0.18595,0.183881,0.184714,0.177313,0.177313,0.183881,0.184714,0.194552,0.199414,0.177313,0.177313,0.194552,0.199414,0.177313,0.177313,0.177313,0.177313,0.177313,0.177313,,,,,,,0.185429,0.18595,0.183881,0.184714,0.194552,0.199414,0.177313,0.177313,0.177313,0.177313,0.068927,0.069084,0.068463,0.068713,0.071664,0.073123,0.066492,0.066492,0.034724,0.034724,23.905787,23.838735,24.107059,23.998301,22.784762,22.229273,25,25,25,25,,,,,,,,,,,2408,2408,0.177313,0.177313,0.177313,0.177313,0.177313,0.177313,0.177313,0.177313,0.066492,0.066492,25,25,, +8950,0,0.177947,1,1,0,2,4,,3,6,Front,St,1223803,18.814,18.991,0,3.81314,6,4.5,0.323539,0.323539,0.323539,0.323539,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.423165,0.377835,0.323539,0.323539,0.423165,0.377835,0.365655,0.367953,0.323539,0.323539,0.365655,0.367953,0.454071,0.50018,0.323539,0.323539,0.454071,0.50018,0.323539,0.323539,0.323539,0.323539,0.323539,0.323539,,,,,,,0.423165,0.377835,0.365655,0.367953,0.454071,0.50018,0.323539,0.323539,0.323539,0.323539,0.15898,0.145381,0.141727,0.142416,0.168252,0.182084,0.129092,0.129092,0.068105,0.068105,25.230781,28.25784,29.199097,29.016752,23.513496,21.345895,33,33,33,33,,,,,,,,,,,2580,2580,0.323539,0.323539,0.323539,0.323539,0.323539,0.323539,0.323539,0.323539,0.129092,0.129092,33,33,, +9183,0,0.29022,1,1,1,2,4,,3,6,Elm,Ave,1226001,19.927,20.217,0,6.218997,6,4.5,0.527672,0.527672,0.527672,0.527672,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.632301,0.564614,0.527672,0.527672,0.632301,0.564614,0.552639,0.556379,0.527672,0.527672,0.552639,0.556379,0.651098,0.740936,0.527672,0.527672,0.651098,0.740936,0.527672,0.527672,0.527672,0.527672,0.527672,0.527672,,,,,,,0.632301,0.564614,0.552639,0.556379,0.651098,0.740936,0.527672,0.527672,0.527672,0.527672,0.24193,0.221624,0.218031,0.219153,0.247569,0.27452,0.210541,0.210541,0.111075,0.111075,27.539398,30.840881,31.509181,31.297368,26.744351,23.501615,33,33,33,33,,,,,,,,,,,2838,2838,0.527672,0.527672,0.527672,0.527672,0.527672,0.527672,0.527672,0.527672,0.210541,0.210541,33,33,, +9285,-1,0.199887,0,2,0,2,5,,3,6,7th,St,4302993,1.534,1.734,0,4.283297,8,4.5,,0.479729,,0.479729,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.479874,,0.479729,,0.479874,,0.479782,,0.479729,,0.479782,,0.480382,,0.479729,,0.480382,,0.479729,,0.479729,,0.479729,,,,,,,,0.479874,,0.479782,,0.480382,,0.479729,,0.479729,,0.179942,,0.179914,,0.180094,,0.179898,,0.093947,,24.992458,,24.997268,,24.966029,,25,,25,,,,,,,,,,,,4816,,0.479729,,0.479729,,0.479729,,0.479729,,0.179898,,25,, +9353,1,0.249236,2,0,0,2,5,,3,6,8th,St,1227505,0,0.249,0,5.340766,8,4.5,0.598166,,0.598166,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.598167,,0.598166,,0.598167,,0.598166,,0.598166,,0.598166,,0.598167,,0.598166,,0.598167,,0.598166,,0.598166,,0.598166,,,,,,,,0.598167,,0.598166,,0.598167,,0.598166,,0.598166,,0.224313,,0.224312,,0.224313,,0.224312,,0.117141,,24.999947,,25,,24.999932,,25,,25,,,,,,,,,,,,4816,,0.598166,,0.598166,,0.598166,,0.598166,,0.224312,,25,,, +20278,0,0.270758,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,15.627,15.897,0,5.801961,5,5,0.464157,0.464157,0.464157,0.464157,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.47944,0.466163,0.464157,0.464157,0.47944,0.466163,0.466108,0.465487,0.464157,0.464157,0.466108,0.465487,0.476199,0.489906,0.464157,0.464157,0.476199,0.489906,0.464157,0.464157,0.464157,0.464157,0.464157,0.464157,,,,,,,0.47944,0.466163,0.466108,0.465487,0.476199,0.489906,0.464157,0.464157,0.464157,0.464157,0.192568,0.188585,0.188569,0.188383,0.191596,0.195708,0.187984,0.187984,0.099407,0.099407,33.884328,34.84937,34.853469,34.899997,34.114897,33.160445,35,35,35,35,,,,,,,,,,,7946,7946,0.464157,0.464157,0.464157,0.464157,0.464157,0.464157,0.464157,0.464157,0.187984,0.187984,35,35,, +20467,0,0.319058,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,15.308,15.627,0,6.836963,5,5,0.546957,0.546957,0.546957,0.546957,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.597047,0.560124,0.546957,0.546957,0.597047,0.560124,0.562145,0.558254,0.546957,0.546957,0.562145,0.558254,0.622383,0.661622,0.546957,0.546957,0.622383,0.661622,0.546957,0.546957,0.546957,0.546957,0.546957,0.546957,,,,,,,0.597047,0.560124,0.562145,0.558254,0.622383,0.661622,0.546957,0.546957,0.546957,0.546957,0.236545,0.225468,0.226074,0.224907,0.244145,0.255917,0.221518,0.221518,0.11714,0.11714,32.063612,34.177226,34.054351,34.291736,30.758384,28.934168,35,35,35,35,,,,,,,,,,,7946,7946,0.546957,0.546957,0.546957,0.546957,0.546957,0.546957,0.546957,0.546957,0.221518,0.221518,35,35,, +25908,0,0.218974,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,4.692302,0.15,4,1.313845,1.313845,1.313845,1.313845,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,,,,,,,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,0.433569,0.433569,0.433569,0.433569,0.433569,0.433569,0.433569,0.433569,0.221164,0.221164,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,1.313845,0.433569,0.433569,10,10,, +31169,0,0.404605,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,8.670098,0.15,4,2.427628,2.427628,2.427628,2.427628,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,,,,,,,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,0.801117,0.801117,0.801117,0.801117,0.801117,0.801117,0.801117,0.801117,0.408651,0.408651,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,2.427628,0.801117,0.801117,10,10,, +31170,0,0.405504,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,8.689363,0.15,4,2.433022,2.433022,2.433022,2.433022,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,,,,,,,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,0.802897,0.802897,0.802897,0.802897,0.802897,0.802897,0.802897,0.802897,0.409559,0.409559,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,2.433022,0.802897,0.802897,10,10,, +31188,0,0.50844,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,10.89515,0.15,4,3.050642,3.050642,3.050642,3.050642,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,,,,,,,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,1.006712,1.006712,1.006712,1.006712,1.006712,1.006712,1.006712,1.006712,0.513525,0.513525,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,3.050642,1.006712,1.006712,10,10,, +33999,0,0.25867,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,5.542933,0.15,4,1.552021,1.552021,1.552021,1.552021,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,,,,,,,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,0.512167,0.512167,0.512167,0.512167,0.512167,0.512167,0.512167,0.512167,0.261257,0.261257,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,1.552021,0.512167,0.512167,10,10,, +34001,0,0.495071,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,10.608667,0.15,4,2.970427,2.970427,2.970427,2.970427,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,,,,,,,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,0.980241,0.980241,0.980241,0.980241,0.980241,0.980241,0.980241,0.980241,0.500022,0.500022,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,2.970427,0.980241,0.980241,10,10,, +8426,0,0.232463,1,1,1,2,4,,3,6,Custer,Rd,1226001,19.57,19.802,0,4.98135,6,4.5,0.42266,0.42266,0.42266,0.42266,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.476187,0.427215,0.42266,0.42266,0.476187,0.427215,0.442144,0.438883,0.42266,0.42266,0.442144,0.438883,0.472985,0.555991,0.42266,0.42266,0.472985,0.555991,0.42266,0.42266,0.42266,0.42266,0.42266,0.42266,,,,,,,0.476187,0.427215,0.442144,0.438883,0.472985,0.555991,0.42266,0.42266,0.42266,0.42266,0.184699,0.170008,0.174486,0.173508,0.183739,0.208641,0.168641,0.168641,0.08897,0.08897,29.290579,32.648131,31.54581,31.780157,29.488866,25.08635,33,33,33,33,,,,,,,,,,,2838,2838,0.42266,0.42266,0.42266,0.42266,0.42266,0.42266,0.42266,0.42266,0.168641,0.168641,33,33,, +8771,0,0.25601,2,2,0,2,4,,4,6,Custer,Rd,1223803,18.558,18.814,0,5.485935,4.5,4.5,0.404227,0.404227,0.404227,0.404227,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.426336,0.413343,0.404227,0.404227,0.426336,0.413343,0.406537,0.406336,0.404227,0.404227,0.406537,0.406336,0.425307,0.445809,0.404227,0.404227,0.425307,0.445809,0.404227,0.404227,0.404227,0.404227,0.404227,0.404227,,,,,,,0.426336,0.413343,0.406537,0.406336,0.425307,0.445809,0.404227,0.404227,0.404227,0.404227,0.173983,0.170085,0.168043,0.167983,0.173674,0.179825,0.16735,0.16735,0.088795,0.088795,36.029347,37.161896,37.784057,37.80272,36.116557,34.455587,38,38,38,38,,,,,,,,,,,6192,6192,0.404227,0.404227,0.404227,0.404227,0.404227,0.404227,0.404227,0.404227,0.16735,0.16735,38,38,, +9288,0,0.440526,1,1,0,2,5,,4,6,7th,St,4302993,0.773,1.213,0,9.439842,5.8,4.5,0.978947,0.978947,0.978947,0.978947,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.0659,1.066498,0.978947,0.978947,1.0659,1.066498,1.024938,1.023047,0.978947,0.978947,1.024938,1.023047,1.09693,1.102864,0.978947,0.978947,1.09693,1.102864,0.978947,0.978947,0.978947,0.978947,0.978947,0.978947,,,,,,,1.0659,1.066498,1.024938,1.023047,1.09693,1.102864,0.978947,0.978947,0.978947,0.978947,0.399065,0.399244,0.386776,0.386209,0.408374,0.410154,0.372979,0.372979,0.1953,0.1953,24.797413,24.783504,25.78845,25.83612,24.095939,23.966283,27,27,27,27,,,,,,,,,,,2580,2580,0.978947,0.978947,0.978947,0.978947,0.978947,0.978947,0.978947,0.978947,0.372979,0.372979,27,27,, +20230,0,0.209844,2,2,0,2,3,,3,6,Telegraph,Rd,4300001,14.623,14.833,0,4.496655,5,5,0.359732,0.359732,0.359732,0.359732,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.363324,0.361181,0.359732,0.359732,0.363324,0.361181,0.362141,0.361696,0.359732,0.359732,0.362141,0.361696,0.367269,0.366291,0.359732,0.359732,0.367269,0.366291,0.359732,0.359732,0.359732,0.359732,0.359732,0.359732,,,,,,,0.363324,0.361181,0.362141,0.361696,0.367269,0.366291,0.359732,0.359732,0.359732,0.359732,0.146769,0.146126,0.146414,0.146281,0.147953,0.147659,0.145692,0.145692,0.077043,0.077043,34.654038,34.85958,34.767257,34.809997,34.28179,34.373321,35,35,35,35,,,,,,,,,,,7568,7568,0.359732,0.359732,0.359732,0.359732,0.359732,0.359732,0.359732,0.359732,0.145692,0.145692,35,35,, +30330,0,0.378473,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,8.110141,0.15,4,1.513893,1.513893,1.513893,1.513893,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,,,,,,,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,0.522293,0.522293,0.522293,0.522293,0.522293,0.522293,0.522293,0.522293,0.268716,0.268716,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,1.513893,0.522293,0.522293,15,15,, +31168,0,0.243252,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.212544,0.15,4,0.973008,0.973008,0.973008,0.973008,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,,,,,,,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.335688,0.335688,0.335688,0.335688,0.335688,0.335688,0.335688,0.335688,0.172709,0.172709,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.973008,0.335688,0.335688,15,15,, +8952,0,0.263179,2,2,0,2,4,,4,6,Custer,Rd,1223803,18.295,18.558,0,5.639546,4.5,4.5,0.415545,0.415545,0.415545,0.415545,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.426064,0.422838,0.415545,0.415545,0.426064,0.422838,0.416442,0.416491,0.415545,0.415545,0.416442,0.416491,0.428706,0.437216,0.415545,0.415545,0.428706,0.437216,0.415545,0.415545,0.415545,0.415545,0.415545,0.415545,,,,,,,0.426064,0.422838,0.416442,0.416491,0.428706,0.437216,0.415545,0.415545,0.415545,0.415545,0.175192,0.174223,0.172305,0.172319,0.175984,0.178537,0.172036,0.172036,0.091281,0.091281,37.061826,37.344653,37.918202,37.913745,36.83349,36.116536,38,38,38,38,,,,,,,,,,,6192,6192,0.415545,0.415545,0.415545,0.415545,0.415545,0.415545,0.415545,0.415545,0.172036,0.172036,38,38,, +31166,0,0.089398,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,1.915677,0.15,4,0.357593,0.357593,0.357593,0.357593,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,,,,,,,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.12337,0.12337,0.12337,0.12337,0.12337,0.12337,0.12337,0.12337,0.063473,0.063473,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.357593,0.12337,0.12337,15,15,, +8637,-1,0.087269,0,2,0,2,5,,3,6,Roessler,St,1224708,0.148,0.235,0,1.870055,8,4.5,,0.209446,,0.209446,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.209447,,0.209446,,0.209447,,0.209446,,0.209446,,0.209446,,0.209447,,0.209446,,0.209447,,0.209446,,0.209446,,0.209446,,,,,,,,0.209447,,0.209446,,0.209447,,0.209446,,0.209446,,0.078542,,0.078542,,0.078542,,0.078542,,0.041017,,24.999947,,25,,24.999932,,25,,25,,,,,,,,,,,,4816,,0.209446,,0.209446,,0.209446,,0.209446,,0.078542,,25,, +9287,0,0.154502,1,1,0,2,5,,3,6,7th,St,4302993,1.213,1.367,0,3.310763,8,4.5,0.370805,0.370805,0.370805,0.370805,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.430245,0.398925,0.370805,0.370805,0.430245,0.398925,0.385116,0.387498,0.370805,0.370805,0.385116,0.387498,0.440026,0.511899,0.370805,0.370805,0.440026,0.511899,0.370805,0.370805,0.370805,0.370805,0.370805,0.370805,,,,,,,0.430245,0.398925,0.385116,0.387498,0.440026,0.511899,0.370805,0.370805,0.370805,0.370805,0.156884,0.147488,0.143345,0.14406,0.159818,0.18138,0.139052,0.139052,0.072616,0.072616,21.546192,23.237807,24.071002,23.923076,21.067239,18.109304,25,25,25,25,,,,,,,,,,,2408,2408,0.370805,0.370805,0.370805,0.370805,0.370805,0.370805,0.370805,0.370805,0.139052,0.139052,25,25,, +9286,0,0.066782,1,1,0,2,5,,3,6,7th,St,4302993,1.467,1.534,0,1.431042,8,4.5,0.160277,0.160277,0.160277,0.160277,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.160284,0.161371,0.160277,0.160277,0.160284,0.161371,0.160277,0.160673,0.160277,0.160277,0.160277,0.160673,0.160287,0.165211,0.160277,0.160277,0.160287,0.165211,0.160277,0.160277,0.160277,0.160277,0.160277,0.160277,,,,,,,0.160284,0.161371,0.160277,0.160673,0.160287,0.165211,0.160277,0.160277,0.160277,0.160277,0.060106,0.060432,0.060104,0.060223,0.060107,0.061584,0.060104,0.060104,0.031388,0.031388,24.998798,24.830458,24.999996,24.938318,24.998457,24.253272,25,25,25,25,,,,,,,,,,,2408,2408,0.160277,0.160277,0.160277,0.160277,0.160277,0.160277,0.160277,0.160277,0.060104,0.060104,25,25,, +19533,0,0.1642,1,1,0,2,5,,3,6,Kaye Lani,Ave,1878407,0,0.164,0,3.518581,8,4.5,0.394081,0.394081,0.394081,0.394081,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.422163,0.394648,0.394081,0.394081,0.422163,0.394648,0.405358,0.394705,0.394081,0.394081,0.405358,0.394705,0.426154,0.397376,0.394081,0.394081,0.426154,0.397376,0.394081,0.394081,0.394081,0.394081,0.394081,0.394081,,,,,,,0.422163,0.394648,0.405358,0.394705,0.426154,0.397376,0.394081,0.394081,0.394081,0.394081,0.156205,0.14795,0.151163,0.147968,0.157402,0.148769,0.14778,0.14778,0.077174,0.077174,23.337035,24.964088,24.304527,24.960498,23.118447,24.792739,25,25,25,25,,,,,,,,,,,2408,2408,0.394081,0.394081,0.394081,0.394081,0.394081,0.394081,0.394081,0.394081,0.14778,0.14778,25,25,, +8557,0,0.122629,1,1,0,2,4,,3,6,Custer,Dr,1225207,0,0.123,0,2.62776,6,4.5,0.222961,0.222961,0.222961,0.222961,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.224067,0.222994,0.222961,0.222961,0.224067,0.222994,0.223554,0.223387,0.222961,0.222961,0.223554,0.223387,0.224523,0.2304,0.222961,0.222961,0.224523,0.2304,0.222961,0.222961,0.222961,0.222961,0.222961,0.222961,,,,,,,0.224067,0.222994,0.223554,0.223387,0.224523,0.2304,0.222961,0.222961,0.222961,0.222961,0.089293,0.088971,0.089139,0.089089,0.08943,0.091193,0.088962,0.088962,0.046933,0.046933,32.837129,32.995224,32.912561,32.937151,32.770423,31.934577,33,33,33,33,,,,,,,,,,,2580,2580,0.222961,0.222961,0.222961,0.222961,0.222961,0.222961,0.222961,0.222961,0.088962,0.088962,33,33,, +9049,0,0.124535,1,1,1,2,4,,3,6,Elm,Ave,1226001,19.802,19.927,0,2.668617,6,4.5,0.226428,0.226428,0.226428,0.226428,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.228495,0.226782,0.226428,0.226428,0.228495,0.226782,0.226968,0.226942,0.226428,0.226428,0.226968,0.226942,0.227794,0.228354,0.226428,0.226428,0.227794,0.228354,0.226428,0.226428,0.226428,0.226428,0.226428,0.226428,,,,,,,0.228495,0.226782,0.226968,0.226942,0.227794,0.228354,0.226428,0.226428,0.226428,0.226428,0.090965,0.090451,0.090507,0.090499,0.090755,0.090922,0.090345,0.090345,0.047663,0.047663,32.701475,32.948503,32.921476,32.925275,32.802104,32.721741,33,33,33,33,,,,,,,,,,,2838,2838,0.226428,0.226428,0.226428,0.226428,0.226428,0.226428,0.226428,0.226428,0.090345,0.090345,33,33,, +20703,0,0.392486,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,14.916,15.308,0,8.410416,5,5,0.672833,0.672833,0.672833,0.672833,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.710172,0.686088,0.672833,0.672833,0.710172,0.686088,0.68131,0.679793,0.672833,0.672833,0.68131,0.679793,0.726761,0.747105,0.672833,0.672833,0.726761,0.747105,0.672833,0.672833,0.672833,0.672833,0.672833,0.672833,,,,,,,0.710172,0.686088,0.68131,0.679793,0.726761,0.747105,0.672833,0.672833,0.672833,0.672833,0.283699,0.276474,0.27504,0.274585,0.288676,0.294779,0.272497,0.272497,0.144098,0.144098,33.159798,34.323811,34.564545,34.641653,32.402916,31.520573,35,35,35,35,,,,,,,,,,,7946,7946,0.672833,0.672833,0.672833,0.672833,0.672833,0.672833,0.672833,0.672833,0.272497,0.272497,35,35,, +19881,0,0.082438,2,2,0,2,3,,3,6,Telegraph,Rd,4300001,14.833,14.916,0,1.76653,5,5,0.141322,0.141322,0.141322,0.141322,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.142415,0.141747,0.141322,0.141322,0.142415,0.141747,0.141995,0.141908,0.141322,0.141322,0.141995,0.141908,0.14343,0.143231,0.141322,0.141322,0.14343,0.143231,0.141322,0.141322,0.141322,0.141322,0.141322,0.141322,,,,,,,0.142415,0.141747,0.141995,0.141908,0.14343,0.143231,0.141322,0.141322,0.141322,0.141322,0.057563,0.057363,0.057437,0.057411,0.057868,0.057808,0.057236,0.057236,0.030267,0.030267,34.731478,34.8952,34.834246,34.855672,34.485817,34.533659,35,35,35,35,,,,,,,,,,,7568,7568,0.141322,0.141322,0.141322,0.141322,0.141322,0.141322,0.141322,0.141322,0.057236,0.057236,35,35,, +8552,0,0.057778,1,1,0,2,4,,3,6,Bentley,Dr,1225208,0,0.058,0,1.238098,6,4.5,0.105051,0.105051,0.105051,0.105051,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.105953,0.106406,0.105051,0.105051,0.105953,0.106406,0.105461,0.105345,0.105051,0.105051,0.105461,0.105345,0.110489,0.107743,0.105051,0.105051,0.110489,0.107743,0.105051,0.105051,0.105051,0.105051,0.105051,0.105051,,,,,,,0.105953,0.106406,0.105461,0.105345,0.110489,0.107743,0.105051,0.105051,0.105051,0.105051,0.042186,0.042322,0.042038,0.042004,0.043547,0.042723,0.041915,0.041915,0.022113,0.022113,32.718999,32.579635,32.871533,32.907738,31.375785,32.175271,33,33,33,33,,,,,,,,,,,2580,2580,0.105051,0.105051,0.105051,0.105051,0.105051,0.105051,0.105051,0.105051,0.041915,0.041915,33,33,, +8727,0,0.056226,1,1,0,2,4,,3,6,Custer,Dr,1225207,0.123,0.179,0,1.204851,6,4.5,0.10223,0.10223,0.10223,0.10223,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.103549,0.103108,0.10223,0.10223,0.103549,0.103108,0.102516,0.102629,0.10223,0.10223,0.102516,0.102629,0.10485,0.107522,0.10223,0.10223,0.10485,0.107522,0.10223,0.10223,0.10223,0.10223,0.10223,0.10223,,,,,,,0.103549,0.103108,0.102516,0.102629,0.10485,0.107522,0.10223,0.10223,0.10223,0.10223,0.041185,0.041053,0.040876,0.04091,0.041576,0.042377,0.04079,0.04079,0.021519,0.021519,32.579635,32.718999,32.907738,32.871533,32.175271,31.375785,33,33,33,33,,,,,,,,,,,2580,2580,0.10223,0.10223,0.10223,0.10223,0.10223,0.10223,0.10223,0.10223,0.04079,0.04079,33,33,, +31171,0,0.265452,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,5.688249,0.15,4,1.59271,1.59271,1.59271,1.59271,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.59271,1.59271,1.59271,1.59271,1.59271,1.59271,1.59271,1.59271,1.59271,1.59271,1.59271,1.59271,1.592711,1.592711,1.59271,1.59271,1.592711,1.592711,1.59271,1.59271,1.59271,1.59271,1.59271,1.59271,,,,,,,1.59271,1.59271,1.59271,1.59271,1.592711,1.592711,1.59271,1.59271,1.59271,1.59271,0.525594,0.525594,0.525594,0.525594,0.525595,0.525595,0.525594,0.525594,0.268106,0.268106,9.999996,9.999998,9.999999,9.999999,9.999993,9.99999,10,10,10,10,,,,,,,,,,,34400,34400,1.59271,1.59271,1.59271,1.59271,1.59271,1.59271,1.59271,1.59271,0.525594,0.525594,10,10,, +8764,0,0.402917,1,1,0,2,4,,3,6,Front,St,1223803,19.242,19.644,0,8.633927,6,4.5,0.732576,0.732576,0.732576,0.732576,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.801891,0.787423,0.732576,0.732576,0.801891,0.787423,0.743516,0.752755,0.732576,0.732576,0.743516,0.752755,0.803241,0.89721,0.732576,0.732576,0.803241,0.89721,0.732576,0.732576,0.732576,0.732576,0.732576,0.732576,,,,,,,0.801891,0.787423,0.743516,0.752755,0.803241,0.89721,0.732576,0.732576,0.732576,0.732576,0.313092,0.308752,0.29558,0.298351,0.313497,0.341688,0.292298,0.292298,0.154207,0.154207,30.14747,30.701405,32.514404,32.115357,30.096807,26.944647,33,33,33,33,,,,,,,,,,,2580,2580,0.732576,0.732576,0.732576,0.732576,0.732576,0.732576,0.732576,0.732576,0.292298,0.292298,33,33,, +8767,0,0.075607,1,1,0,2,4,,3,6,Front,St,1223803,19.123,19.199,0,1.620148,6,4.5,0.137467,0.137467,0.137467,0.137467,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.186307,0.165724,0.137467,0.137467,0.186307,0.165724,0.153154,0.15543,0.137467,0.137467,0.153154,0.15543,0.187179,0.216445,0.137467,0.137467,0.187179,0.216445,0.137467,0.137467,0.137467,0.137467,0.137467,0.137467,,,,,,,0.186307,0.165724,0.153154,0.15543,0.187179,0.216445,0.137467,0.137467,0.137467,0.137467,0.069501,0.063326,0.059555,0.060238,0.069763,0.078543,0.054849,0.054849,0.028937,0.028937,24.349186,27.373339,29.619936,29.186131,24.235642,20.958705,33,33,33,33,,,,,,,,,,,2580,2580,0.137467,0.137467,0.137467,0.137467,0.137467,0.137467,0.137467,0.137467,0.054849,0.054849,33,33,, +8773,0,0.344368,1,1,0,2,5,,3,6,3rd,St,1224710,0.206,0.55,0,7.379313,8,4.5,0.826483,0.826483,0.826483,0.826483,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.924823,0.834809,0.826483,0.826483,0.924823,0.834809,0.847127,0.842952,0.826483,0.826483,0.847127,0.842952,0.865135,1.058843,0.826483,0.826483,0.865135,1.058843,0.826483,0.826483,0.826483,0.826483,0.826483,0.826483,,,,,,,0.924823,0.834809,0.847127,0.842952,0.865135,1.058843,0.826483,0.826483,0.826483,0.826483,0.339433,0.312429,0.316124,0.314872,0.321527,0.379639,0.309931,0.309931,0.161853,0.161853,22.341663,24.750658,24.390777,24.511563,23.883051,19.513824,25,25,25,25,,,,,,,,,,,2408,2408,0.826483,0.826483,0.826483,0.826483,0.826483,0.826483,0.826483,0.826483,0.309931,0.309931,25,25,, +8779,0,0.290713,2,2,0,2,5,,3,6,Roessler,St,1224708,0.498,0.788,0,6.229573,8,4.5,0.697712,0.697712,0.697712,0.697712,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.697843,0.697732,0.697712,0.697712,0.697843,0.697732,0.697843,0.697809,0.697712,0.697712,0.697843,0.697809,0.697829,0.697773,0.697712,0.697712,0.697829,0.697773,0.697712,0.697712,0.697712,0.697712,0.697712,0.697712,,,,,,,0.697843,0.697732,0.697843,0.697809,0.697829,0.697773,0.697712,0.697712,0.697712,0.697712,0.261681,0.261648,0.261681,0.261671,0.261677,0.26166,0.261642,0.261642,0.136635,0.136635,24.995299,24.999295,24.995318,24.996533,24.995834,24.997836,25,25,25,25,,,,,,,,,,,4816,4816,0.697712,0.697712,0.697712,0.697712,0.697712,0.697712,0.697712,0.697712,0.261642,0.261642,25,25,, +9181,0,0.378458,1,1,0,2,4,,3,6,Elm,Ave,1226001,20.51,20.888,0,8.109817,6,4.5,0.688106,0.688106,0.688106,0.688106,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.72243,0.696094,0.688106,0.688106,0.72243,0.696094,0.700187,0.700819,0.688106,0.688106,0.700187,0.700819,0.720949,0.730625,0.688106,0.688106,0.720949,0.730625,0.688106,0.688106,0.688106,0.688106,0.688106,0.688106,,,,,,,0.72243,0.696094,0.700187,0.700819,0.720949,0.730625,0.688106,0.688106,0.688106,0.688106,0.284852,0.276951,0.278179,0.278368,0.284407,0.28731,0.274554,0.274554,0.144846,0.144846,31.432077,32.621318,32.430615,32.401368,31.496661,31.079549,33,33,33,33,,,,,,,,,,,2580,2580,0.688106,0.688106,0.688106,0.688106,0.688106,0.688106,0.688106,0.688106,0.274554,0.274554,33,33,, +9284,-1,0.394192,0,2,0,2,5,,3,6,7th,St,4302993,1.734,2.128,0,8.446968,8,4.5,,0.94606,,0.94606,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.94634,,0.94606,,0.94634,,0.946345,,0.94606,,0.946345,,0.947675,,0.94606,,0.947675,,0.94606,,0.94606,,0.94606,,,,,,,,0.94634,,0.946345,,0.947675,,0.94606,,0.94606,,0.354857,,0.354858,,0.355257,,0.354773,,0.18527,,24.992609,,24.992472,,24.957416,,25,,25,,,,,,,,,,,,4816,,0.94606,,0.94606,,0.94606,,0.94606,,0.354773,,25,, +9386,0,0.242602,2,2,0,2,4,,3,6,Monroe,St,1227004,14.916,15.158,0,5.198617,6,4.5,0.441095,0.441095,0.441095,0.441095,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.476618,0.442598,0.441095,0.441095,0.476618,0.442598,0.455265,0.446151,0.441095,0.441095,0.455265,0.446151,0.472538,0.468595,0.441095,0.441095,0.472538,0.468595,0.441095,0.441095,0.441095,0.441095,0.441095,0.441095,,,,,,,0.476618,0.442598,0.455265,0.446151,0.472538,0.468595,0.441095,0.441095,0.441095,0.441095,0.186654,0.176448,0.180248,0.177514,0.18543,0.184247,0.175997,0.175997,0.09285,0.09285,30.540435,32.887928,31.972883,32.626001,30.80414,31.063357,33,33,33,33,,,,,,,,,,,5160,5160,0.441095,0.441095,0.441095,0.441095,0.441095,0.441095,0.441095,0.441095,0.175997,0.175997,33,33,, +31193,0,0.440864,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.447079,0.15,4,2.645182,2.645182,2.645182,2.645182,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,,,,,,,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,0.87291,0.87291,0.87291,0.87291,0.87291,0.87291,0.87291,0.87291,0.445272,0.445272,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,2.645182,0.87291,0.87291,10,10,, +8632,0,0.205974,1,1,0,2,5,,3,6,3rd,St,1224710,0,0.206,0,4.41373,8,4.5,0.494338,0.494338,0.494338,0.494338,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.49437,0.494434,0.494338,0.494338,0.49437,0.494434,0.494483,0.494407,0.494338,0.494338,0.494483,0.494407,0.494494,0.494484,0.494338,0.494338,0.494494,0.494484,0.494338,0.494338,0.494338,0.494338,0.494338,0.494338,,,,,,,0.49437,0.494434,0.494483,0.494407,0.494494,0.494484,0.494338,0.494338,0.494338,0.494338,0.185386,0.185406,0.18542,0.185398,0.185424,0.18542,0.185377,0.185377,0.096808,0.096808,24.99838,24.995111,24.992676,24.996481,24.992095,24.992621,25,25,25,25,,,,,,,,,,,2408,2408,0.494338,0.494338,0.494338,0.494338,0.494338,0.494338,0.494338,0.494338,0.185377,0.185377,25,25,, +26329,0,0.266256,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,5.705476,0.15,4,1.597533,1.597533,1.597533,1.597533,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,,,,,,,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,0.527186,0.527186,0.527186,0.527186,0.527186,0.527186,0.527186,0.527186,0.268918,0.268918,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,1.597533,0.527186,0.527186,10,10,, +31191,0,0.151765,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.252116,0.15,4,0.910592,0.910592,0.910592,0.910592,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.910593,0.910592,0.910592,0.910592,0.910593,0.910592,0.910592,0.910592,0.910592,0.910592,0.910592,0.910592,0.910592,0.910593,0.910592,0.910592,0.910592,0.910593,0.910592,0.910592,0.910592,0.910592,0.910592,0.910592,,,,,,,0.910593,0.910592,0.910592,0.910592,0.910592,0.910593,0.910592,0.910592,0.910592,0.910592,0.300496,0.300496,0.300496,0.300496,0.300496,0.300496,0.300496,0.300496,0.153283,0.153283,9.999999,10,10,10,9.999999,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,0.910592,0.910592,0.910592,0.910592,0.910592,0.910592,0.910592,0.910592,0.300496,0.300496,10,10,, +31192,0,0.166533,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.568557,0.15,4,0.999196,0.999196,0.999196,0.999196,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,,,,,,,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.329735,0.329735,0.329735,0.329735,0.329735,0.329735,0.329735,0.329735,0.168198,0.168198,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.999196,0.329735,0.329735,10,10,, +8948,0,0.042834,1,1,0,2,4,,3,6,Front,St,1223803,19.199,19.242,0,0.91787,6,4.5,0.07788,0.07788,0.07788,0.07788,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.09301,0.092868,0.07788,0.07788,0.09301,0.092868,0.082605,0.084192,0.07788,0.07788,0.082605,0.084192,0.098057,0.11769,0.07788,0.07788,0.098057,0.11769,0.07788,0.07788,0.07788,0.07788,0.07788,0.07788,,,,,,,0.09301,0.092868,0.082605,0.084192,0.098057,0.11769,0.07788,0.07788,0.07788,0.07788,0.035613,0.03557,0.032492,0.032968,0.037127,0.043017,0.031074,0.031074,0.016394,0.016394,27.631961,27.674113,31.112287,30.525701,26.209549,21.837336,33,33,33,33,,,,,,,,,,,2580,2580,0.07788,0.07788,0.07788,0.07788,0.07788,0.07788,0.07788,0.07788,0.031074,0.031074,33,33,, +8963,0,0.292624,1,1,0,2,4,,3,6,Elm,Ave,1226001,20.217,20.51,0,6.270518,6,4.5,0.532044,0.532044,0.532044,0.532044,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.558584,0.53822,0.532044,0.532044,0.558584,0.53822,0.541385,0.541874,0.532044,0.532044,0.541385,0.541874,0.557438,0.56492,0.532044,0.532044,0.557438,0.56492,0.532044,0.532044,0.532044,0.532044,0.532044,0.532044,,,,,,,0.558584,0.53822,0.541385,0.541874,0.557438,0.56492,0.532044,0.532044,0.532044,0.532044,0.220248,0.214138,0.215088,0.215234,0.219904,0.222148,0.212286,0.212286,0.111995,0.111995,31.432077,32.621318,32.430615,32.401368,31.496661,31.079549,33,33,33,33,,,,,,,,,,,2580,2580,0.532044,0.532044,0.532044,0.532044,0.532044,0.532044,0.532044,0.532044,0.212286,0.212286,33,33,, +8622,1,0.171767,2,0,0,2,4,,3,6,1st,St,1224806,0,0.172,0,3.680732,6,4.5,0.312305,,0.312305,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.313612,,0.312305,,0.313612,,0.312511,,0.312305,,0.312511,,0.313637,,0.312305,,0.313637,,0.312305,,0.312305,,0.312305,,,,,,,,0.313612,,0.312511,,0.313637,,0.312305,,0.312305,,0.125002,,0.124671,,0.125009,,0.12461,,0.06574,,32.8624,,32.978233,,32.859787,,33,,33,,,,,,,,,,,,5160,,0.312305,,0.312305,,0.312305,,0.312305,,0.12461,,33,,, +8630,0,0.212588,1,1,0,2,5,,3,6,3rd,St,1224710,0.55,0.763,0,4.555455,8,4.5,0.510211,0.510211,0.510211,0.510211,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.510435,0.519083,0.510211,0.510211,0.510435,0.519083,0.510231,0.543056,0.510211,0.510211,0.510231,0.543056,0.511043,0.62862,0.510211,0.510211,0.511043,0.62862,0.510211,0.510211,0.510211,0.510211,0.510211,0.510211,,,,,,,0.510435,0.519083,0.510231,0.543056,0.511043,0.62862,0.510211,0.510211,0.510211,0.510211,0.191396,0.193991,0.191335,0.201183,0.191579,0.226852,0.191329,0.191329,0.099916,0.099916,24.989013,24.572703,24.999008,23.487962,24.959315,20.290908,25,25,25,25,,,,,,,,,,,2408,2408,0.510211,0.510211,0.510211,0.510211,0.510211,0.510211,0.510211,0.510211,0.191329,0.191329,25,25,, +8766,1,0.213056,2,0,0,2,4,,3,6,1st,St,1224806,0.172,0.385,0,4.565482,6,4.5,0.387374,,0.387374,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.410155,,0.387374,,0.410155,,0.397925,,0.387374,,0.397925,,0.407914,,0.387374,,0.407914,,0.387374,,0.387374,,0.387374,,,,,,,,0.410155,,0.397925,,0.407914,,0.387374,,0.387374,,0.161396,,0.157728,,0.160724,,0.154562,,0.081542,,31.167149,,32.125022,,31.338344,,33,,33,,,,,,,,,,,,5160,,0.387374,,0.387374,,0.387374,,0.387374,,0.154562,,33,,, +8946,-1,0.184245,0,2,0,2,4,,3,6,Front,St,1223803,19.644,19.829,0,3.948109,6,4.5,,0.334991,,0.334991,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.336101,,0.334991,,0.336101,,0.335399,,0.334991,,0.335399,,0.338321,,0.334991,,0.338321,,0.334991,,0.334991,,0.334991,,,,,,,,0.336101,,0.335399,,0.338321,,0.334991,,0.334991,,0.133994,,0.133784,,0.134661,,0.133661,,0.070516,,32.891027,,32.959876,,32.675172,,33,,33,,,,,,,,,,,,5160,,0.334991,,0.334991,,0.334991,,0.334991,,0.133661,,33,, +9389,0,0.140119,2,2,0,2,4,,3,6,Monroe,St,1227004,14.576,14.716,0,3.002543,6,4.5,0.254761,0.254761,0.254761,0.254761,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.326123,0.259875,0.254761,0.254761,0.326123,0.259875,0.292077,0.262138,0.254761,0.254761,0.292077,0.262138,0.310693,0.297701,0.254761,0.254761,0.310693,0.297701,0.254761,0.254761,0.254761,0.254761,0.254761,0.254761,,,,,,,0.326123,0.259875,0.292077,0.262138,0.310693,0.297701,0.254761,0.254761,0.254761,0.254761,0.123058,0.103184,0.112844,0.103863,0.118429,0.114532,0.10165,0.10165,0.053627,0.053627,25.778961,32.350612,28.783923,32.071382,27.059235,28.240157,33,33,33,33,,,,,,,,,,,5160,5160,0.254761,0.254761,0.254761,0.254761,0.254761,0.254761,0.254761,0.254761,0.10165,0.10165,33,33,, +9390,0,0.141253,2,2,0,2,4,,3,6,Monroe,St,1227004,14.435,14.576,0,3.026858,6,4.5,0.256824,0.256824,0.256824,0.256824,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.268552,0.260287,0.256824,0.256824,0.268552,0.260287,0.261015,0.261205,0.256824,0.256824,0.261015,0.261205,0.267844,0.275534,0.256824,0.256824,0.267844,0.275534,0.256824,0.256824,0.256824,0.256824,0.256824,0.256824,,,,,,,0.268552,0.260287,0.261015,0.261205,0.267844,0.275534,0.256824,0.256824,0.256824,0.256824,0.105991,0.103512,0.10373,0.103787,0.105779,0.108086,0.102473,0.102473,0.054062,0.054062,31.558882,32.560956,32.470199,32.446543,31.642262,30.75919,33,33,33,33,,,,,,,,,,,5160,5160,0.256824,0.256824,0.256824,0.256824,0.256824,0.256824,0.256824,0.256824,0.102473,0.102473,33,33,, +9391,0,0.138158,2,2,0,2,4,,3,6,Monroe,St,1227004,14.297,14.435,0,2.960526,6,4.5,0.251196,0.251196,0.251196,0.251196,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.262667,0.254583,0.251196,0.251196,0.262667,0.254583,0.255295,0.255481,0.251196,0.251196,0.255295,0.255481,0.261975,0.269496,0.251196,0.251196,0.261975,0.269496,0.251196,0.251196,0.251196,0.251196,0.251196,0.251196,,,,,,,0.262667,0.254583,0.255295,0.255481,0.261975,0.269496,0.251196,0.251196,0.251196,0.251196,0.103668,0.101243,0.101457,0.101513,0.103461,0.105717,0.100227,0.100227,0.052877,0.052877,31.558882,32.560956,32.470199,32.446543,31.642262,30.75919,33,33,33,33,,,,,,,,,,,5160,5160,0.251196,0.251196,0.251196,0.251196,0.251196,0.251196,0.251196,0.251196,0.100227,0.100227,33,33,, +8758,0,0.139104,1,1,0,2,4,,3,6,Scott,St,1224901,0.299,0.438,0,2.980791,6,4.5,0.252916,0.252916,0.252916,0.252916,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.261392,0.319967,0.252916,0.252916,0.261392,0.319967,0.260191,0.338138,0.252916,0.252916,0.260191,0.338138,0.255175,0.353795,0.252916,0.252916,0.255175,0.353795,0.252916,0.252916,0.252916,0.252916,0.252916,0.252916,,,,,,,0.261392,0.319967,0.260191,0.338138,0.255175,0.353795,0.252916,0.252916,0.252916,0.252916,0.103456,0.121029,0.103096,0.12648,0.101591,0.131177,0.100913,0.100913,0.053239,0.053239,31.929882,26.084569,32.077296,24.682829,32.707794,23.590563,33,33,33,33,,,,,,,,,,,2580,2580,0.252916,0.252916,0.252916,0.252916,0.252916,0.252916,0.252916,0.252916,0.100913,0.100913,33,33,, +9387,0,0.139633,2,2,0,2,4,,3,6,Monroe,St,1227004,14.776,14.916,0,2.992127,6,4.5,0.253877,0.253877,0.253877,0.253877,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.321185,0.257765,0.253877,0.253877,0.321185,0.257765,0.287346,0.260522,0.253877,0.253877,0.287346,0.260522,0.320638,0.284687,0.253877,0.253877,0.320638,0.284687,0.253877,0.253877,0.253877,0.253877,0.253877,0.253877,,,,,,,0.321185,0.257765,0.287346,0.260522,0.320638,0.284687,0.253877,0.253877,0.253877,0.253877,0.121489,0.102463,0.111338,0.10329,0.121325,0.11054,0.101297,0.101297,0.053441,0.053441,26.084486,32.50225,29.156331,32.158366,26.129023,29.428627,33,33,33,33,,,,,,,,,,,5160,5160,0.253877,0.253877,0.253877,0.253877,0.253877,0.253877,0.253877,0.253877,0.101297,0.101297,33,33,, +9388,0,0.059617,2,2,0,2,4,,3,6,Monroe,St,1227004,14.716,14.776,0,1.277515,6,4.5,0.108395,0.108395,0.108395,0.108395,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.137133,0.123675,0.108395,0.108395,0.137133,0.123675,0.122685,0.129156,0.108395,0.108395,0.122685,0.129156,0.136899,0.184968,0.108395,0.108395,0.136899,0.184968,0.108395,0.108395,0.108395,0.108395,0.108395,0.108395,,,,,,,0.137133,0.123675,0.122685,0.129156,0.136899,0.184968,0.108395,0.108395,0.108395,0.108395,0.051871,0.047834,0.047537,0.049478,0.051801,0.066222,0.04325,0.04325,0.022817,0.022817,26.084486,28.922847,29.156331,27.695405,26.129023,19.338659,33,33,33,33,,,,,,,,,,,5160,5160,0.108395,0.108395,0.108395,0.108395,0.108395,0.108395,0.108395,0.108395,0.04325,0.04325,33,33,, +9271,0,0.657085,1,1,0,2,7,,3,6,Roessler,St,1230604,0,0.657,0,14.08039,7,4.5,1.971255,1.971255,1.971255,1.971255,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,1.971256,1.97126,1.971255,1.971255,1.971256,1.97126,1.971267,1.971278,1.971255,1.971255,1.971267,1.971278,1.971293,1.971274,1.971255,1.971255,1.971293,1.971274,1.971255,1.971255,1.971255,1.971255,1.971255,1.971255,,,,,,,1.971256,1.97126,1.971267,1.971278,1.971293,1.971274,1.971255,1.971255,1.971255,1.971255,0.709652,0.709653,0.709655,0.709659,0.709663,0.709657,0.709652,0.709652,0.367968,0.367968,19.999987,19.999951,19.99988,19.999761,19.999608,19.999805,20,20,20,20,,,,,,,,,,,1892,1892,1.971255,1.971255,1.971255,1.971255,1.971255,1.971255,1.971255,1.971255,0.709652,0.709652,20,20,, +20081,0,0.200494,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,15.897,16.098,0,4.296307,5,5,0.343705,0.343705,0.343705,0.343705,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.355021,0.34519,0.343705,0.343705,0.355021,0.34519,0.34515,0.344689,0.343705,0.343705,0.34515,0.344689,0.352622,0.362771,0.343705,0.343705,0.352622,0.362771,0.343705,0.343705,0.343705,0.343705,0.343705,0.343705,,,,,,,0.355021,0.34519,0.34515,0.344689,0.352622,0.362771,0.343705,0.343705,0.343705,0.343705,0.142595,0.139646,0.139634,0.139496,0.141876,0.14492,0.1392,0.1392,0.07361,0.07361,33.884328,34.84937,34.853469,34.899997,34.114897,33.160445,35,35,35,35,,,,,,,,,,,7946,7946,0.343705,0.343705,0.343705,0.343705,0.343705,0.343705,0.343705,0.343705,0.1392,0.1392,35,35,, +31019,0,0.286396,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.137053,0.15,4,1.718375,1.718375,1.718375,1.718375,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,,,,,,,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,0.567064,0.567064,0.567064,0.567064,0.567064,0.567064,0.567064,0.567064,0.28926,0.28926,10,9.999999,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,1.718375,0.567064,0.567064,10,10,, +33998,0,0.325842,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.982319,0.15,4,1.955049,1.955049,1.955049,1.955049,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,,,,,,,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,0.645166,0.645166,0.645166,0.645166,0.645166,0.645166,0.645166,0.645166,0.3291,0.3291,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,1.955049,0.645166,0.645166,10,10,, +8775,0,0.219305,1,1,0,2,7,,3,6,Roessler,St,1224708,1.147,1.367,0,4.699398,7,4.5,0.657916,0.657916,0.657916,0.657916,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.657916,0.657917,0.657916,0.657916,0.657916,0.657917,0.65792,0.657924,0.657916,0.657916,0.65792,0.657924,0.657929,0.657922,0.657916,0.657916,0.657929,0.657922,0.657916,0.657916,0.657916,0.657916,0.657916,0.657916,,,,,,,0.657916,0.657917,0.65792,0.657924,0.657929,0.657922,0.657916,0.657916,0.657916,0.657916,0.23685,0.23685,0.236851,0.236852,0.236854,0.236852,0.23685,0.23685,0.122811,0.122811,19.999987,19.999951,19.99988,19.999761,19.999608,19.999805,20,20,20,20,,,,,,,,,,,1892,1892,0.657916,0.657916,0.657916,0.657916,0.657916,0.657916,0.657916,0.657916,0.23685,0.23685,20,20,, +20771,0,0.066289,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,16.098,16.164,0,1.420476,5,5,0.113638,0.113638,0.113638,0.113638,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.11738,0.114129,0.113638,0.113638,0.11738,0.114129,0.114116,0.113964,0.113638,0.113638,0.114116,0.113964,0.116586,0.119942,0.113638,0.113638,0.116586,0.119942,0.113638,0.113638,0.113638,0.113638,0.113638,0.113638,,,,,,,0.11738,0.114129,0.114116,0.113964,0.116586,0.119942,0.113638,0.113638,0.113638,0.113638,0.047146,0.046171,0.046167,0.046121,0.046908,0.047915,0.046023,0.046023,0.024337,0.024337,33.884328,34.84937,34.853469,34.899997,34.114897,33.160445,35,35,35,35,,,,,,,,,,,7946,7946,0.113638,0.113638,0.113638,0.113638,0.113638,0.113638,0.113638,0.113638,0.046023,0.046023,35,35,, +10159,0,0.239916,2,2,0,2,4,,3,6,Stewart,Rd,1237610,8.703,8.942,0,5.141049,6,4.5,0.43621,0.43621,0.43621,0.43621,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.437618,0.436367,0.43621,0.43621,0.437618,0.436367,0.439109,0.438297,0.43621,0.43621,0.439109,0.438297,0.443236,0.447831,0.43621,0.43621,0.443236,0.447831,0.43621,0.43621,0.43621,0.43621,0.43621,0.43621,,,,,,,0.437618,0.436367,0.439109,0.438297,0.443236,0.447831,0.43621,0.43621,0.43621,0.43621,0.17447,0.174095,0.174917,0.174674,0.176156,0.177534,0.174048,0.174048,0.091822,0.091822,32.893856,32.988177,32.782165,32.84289,32.476878,32.143665,33,33,33,33,,,,,,,,,,,5160,5160,0.43621,0.43621,0.43621,0.43621,0.43621,0.43621,0.43621,0.43621,0.174048,0.174048,33,33,, +8606,0,0.13779,1,1,0,2,4,,4,6,Front,St,1225004,0,0.138,0,2.952644,4.5,4.5,0.217563,0.217563,0.217563,0.217563,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.217807,0.217956,0.217563,0.217563,0.217807,0.217956,0.217646,0.217823,0.217563,0.217563,0.217646,0.217823,0.21811,0.220695,0.217563,0.217563,0.21811,0.220695,0.217563,0.217563,0.217563,0.217563,0.217563,0.217563,,,,,,,0.217807,0.217956,0.217646,0.217823,0.21811,0.220695,0.217563,0.217563,0.217563,0.217563,0.090144,0.090189,0.090096,0.090149,0.090235,0.091011,0.090071,0.090071,0.047791,0.047791,37.957443,37.93159,37.985516,37.954617,37.90467,37.460804,38,38,38,38,,,,,,,,,,,3096,3096,0.217563,0.217563,0.217563,0.217563,0.217563,0.217563,0.217563,0.217563,0.090071,0.090071,38,38,, +9431,1,1.723872,3,0,0,1,1,,4,6,N I 75,,1226910,11.536,13.259,0,,0.8,7.5,1.477604,,1.477604,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.484543,,1.477604,,1.484543,,1.478267,,1.477604,,1.478267,,1.479457,,1.477604,,1.479457,,1.477604,,1.477604,,1.477604,,,,,,,,1.484543,,1.478267,,1.479457,,1.477604,,1.477604,,0.75566,,0.753777,,0.754134,,0.753578,,0.411267,,69.672802,,69.968622,,69.912339,,70,,70,,,,,,,,,,,,22704,,1.477604,,1.477604,,1.477604,,1.477604,,0.753578,,70,,, +9457,-1,1.348281,0,3,0,1,1,,4,6,S I 75,,1226909,11.906,13.254,0,,0.8,7.5,,1.155669,,1.155669,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.156164,,1.155669,,1.156164,,1.156169,,1.155669,,1.156169,,1.164646,,1.155669,,1.164646,,1.155669,,1.155669,,1.155669,,,,,,,,1.156164,,1.156169,,1.164646,,1.155669,,1.155669,,0.58954,,0.589541,,0.592084,,0.589391,,0.321661,,69.97005,,69.969703,,69.460475,,70,,70,,,,,,,,,,,,22704,,1.155669,,1.155669,,1.155669,,1.155669,,0.589391,,70,, +8756,0,0.138653,1,1,0,2,5,,4,6,Winchester,St,1224908,0.387,0.526,0,2.971136,5.8,4.5,0.308118,0.308118,0.308118,0.308118,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.322653,0.308118,0.308118,0.308118,0.322653,0.308118,0.308125,0.308118,0.308118,0.308118,0.308125,0.308118,0.316301,0.323743,0.308118,0.308118,0.316301,0.323743,0.308118,0.308118,0.308118,0.308118,0.308118,0.308118,,,,,,,0.322653,0.308118,0.308125,0.308118,0.316301,0.323743,0.308118,0.308118,0.308118,0.308118,0.121753,0.117393,0.117395,0.117393,0.119848,0.12208,0.117393,0.117393,0.061469,0.061469,25.783663,26.999975,26.999364,26.999984,26.301429,25.696883,27,27,27,27,,,,,,,,,,,2580,2580,0.308118,0.308118,0.308118,0.308118,0.308118,0.308118,0.308118,0.308118,0.117393,0.117393,27,27,, +31176,0,0.527673,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.307276,0.15,4,2.110692,2.110692,2.110692,2.110692,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,,,,,,,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,0.728189,0.728189,0.728189,0.728189,0.728189,0.728189,0.728189,0.728189,0.374648,0.374648,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,2.110692,0.728189,0.728189,15,15,, +9290,0,0.36965,1,1,0,2,5,,3,6,Kentucky,Ave,1229306,2.094,2.463,0,7.921063,8,4.5,0.887159,0.887159,0.887159,0.887159,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.892909,0.887159,0.887159,0.887159,0.892909,0.887159,0.887198,0.88716,0.887159,0.887159,0.887198,0.88716,0.88845,0.889604,0.887159,0.887159,0.88845,0.889604,0.887159,0.887159,0.887159,0.887159,0.887159,0.887159,,,,,,,0.892909,0.887159,0.887198,0.88716,0.88845,0.889604,0.887159,0.887159,0.887159,0.887159,0.33441,0.332685,0.332696,0.332685,0.333072,0.333418,0.332685,0.332685,0.173735,0.173735,24.839022,24.999992,24.998892,24.999974,24.963672,24.931279,25,25,25,25,,,,,,,,,,,2408,2408,0.887159,0.887159,0.887159,0.887159,0.887159,0.887159,0.887159,0.887159,0.332685,0.332685,25,25,, +8768,0,0.076775,1,1,0,2,5,,4,6,3rd,St,1224710,1.267,1.344,0,1.645177,5.8,4.5,0.170611,0.170611,0.170611,0.170611,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.178659,0.170611,0.170611,0.170611,0.178659,0.170611,0.170615,0.170611,0.170611,0.170611,0.170615,0.170611,0.175142,0.179263,0.170611,0.170611,0.175142,0.179263,0.170611,0.170611,0.170611,0.170611,0.170611,0.170611,,,,,,,0.178659,0.170611,0.170615,0.170611,0.175142,0.179263,0.170611,0.170611,0.170611,0.170611,0.067417,0.065003,0.065004,0.065003,0.066362,0.067598,0.065003,0.065003,0.034037,0.034037,25.783663,26.999975,26.999364,26.999984,26.301429,25.696883,27,27,27,27,,,,,,,,,,,2580,2580,0.170611,0.170611,0.170611,0.170611,0.170611,0.170611,0.170611,0.170611,0.065003,0.065003,27,27,, +8620,0,0.295166,1,1,0,2,4,,4,6,1st,St,1224806,0.966,1.261,0,6.324989,4.5,4.5,0.466052,0.466052,0.466052,0.466052,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.466499,0.467987,0.466052,0.466052,0.466499,0.467987,0.466772,0.46784,0.466052,0.466052,0.466772,0.46784,0.468425,0.472457,0.466052,0.466052,0.468425,0.472457,0.466052,0.466052,0.466052,0.466052,0.466052,0.466052,,,,,,,0.466499,0.467987,0.466772,0.46784,0.468425,0.472457,0.466052,0.466052,0.466052,0.466052,0.19308,0.193526,0.193161,0.193482,0.193657,0.194867,0.192945,0.192945,0.102376,0.102376,37.963537,37.842877,37.941402,37.85479,37.807503,37.484846,38,38,38,38,,,,,,,,,,,3096,3096,0.466052,0.466052,0.466052,0.466052,0.466052,0.466052,0.466052,0.466052,0.192945,0.192945,38,38,, +31175,0,0.269906,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.7837,0.15,4,1.079624,1.079624,1.079624,1.079624,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,,,,,,,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,0.37247,0.37247,0.37247,0.37247,0.37247,0.37247,0.37247,0.37247,0.191633,0.191633,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,1.079624,0.37247,0.37247,15,15,, +8543,1,0.14816,1,0,0,1,1,RON,4,6,S I 75/Elm,RAMP,1225409,0.051,0.199,0,,1.09,4,0.197547,,0.197547,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.197637,,0.197547,,0.197637,,0.197624,,0.197547,,0.197624,,0.198072,,0.197547,,0.198072,,0.197547,,0.197547,,0.197547,,,,,,,,0.197637,,0.197624,,0.198072,,0.197547,,0.197547,,0.08596,,0.085956,,0.08609,,0.085933,,0.04593,,44.979375,,44.982428,,44.880766,,45,,45,,,,,,,,,,,,5160,,0.197547,,0.197547,,0.197547,,0.197547,,0.085933,,45,,, +8579,1,0.290975,1,0,0,1,1,RON,4,6,Front/S I 75,RAMP,1225006,0,0.291,0,,1.09,4,0.387967,,0.387967,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.387977,,0.387967,,0.387977,,0.38798,,0.387967,,0.38798,,0.38804,,0.387967,,0.38804,,0.387967,,0.387967,,0.387967,,,,,,,,0.387977,,0.38798,,0.38804,,0.387967,,0.387967,,0.168769,,0.16877,,0.168788,,0.168766,,0.090202,,44.998853,,44.998543,,44.991537,,45,,45,,,,,,,,,,,,5160,,0.387967,,0.387967,,0.387967,,0.387967,,0.168766,,45,,, +8720,1,0.133613,1,0,0,1,1,ROF,4,6,S I 75/Elm,RAMP,1225410,0,0.134,0,,2.24,5,0.200419,,0.200419,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.200419,,0.200419,,0.200419,,0.200419,,0.200419,,0.200419,,0.200419,,0.200419,,0.200419,,0.200419,,0.200419,,0.200419,,,,,,,,0.200419,,0.200419,,0.200419,,0.200419,,0.200419,,0.084176,,0.084176,,0.084176,,0.084176,,0.04476,,40,,40,,40,,40,,40,,,,,,,,,,,,5160,,0.200419,,0.200419,,0.200419,,0.200419,,0.084176,,40,,, +8746,1,0.314487,1,0,0,1,1,ROF,4,6,S I 75/Front,RAMP,1225005,0,0.314,0,,2.24,5,0.47173,,0.47173,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.47173,,0.47173,,0.47173,,0.47173,,0.47173,,0.47173,,0.47173,,0.47173,,0.47173,,0.47173,,0.47173,,0.47173,,,,,,,,0.47173,,0.47173,,0.47173,,0.47173,,0.47173,,0.198127,,0.198127,,0.198127,,0.198127,,0.105353,,39.999989,,40,,39.999985,,40,,40,,,,,,,,,,,,5160,,0.47173,,0.47173,,0.47173,,0.47173,,0.198127,,40,,, +8942,0,0.124501,1,1,0,2,4,,5,6,Front,St,1223803,21.477,21.602,0,2.667889,3,4,0.186752,0.186752,0.186752,0.186752,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.186903,0.187527,0.186752,0.186752,0.186903,0.187527,0.18676,0.18738,0.186752,0.186752,0.18676,0.18738,0.186768,0.190219,0.186752,0.186752,0.186768,0.190219,0.186752,0.186752,0.186752,0.186752,0.186752,0.186752,,,,,,,0.186903,0.187527,0.18676,0.18738,0.186768,0.190219,0.186752,0.186752,0.186752,0.186752,0.078481,0.078668,0.078438,0.078624,0.078441,0.079476,0.078436,0.078436,0.041708,0.041708,39.967712,39.83476,39.998389,39.865922,39.996603,39.270966,40,40,40,40,,,,,,,,,,,3096,3096,0.186752,0.186752,0.186752,0.186752,0.186752,0.186752,0.186752,0.186752,0.078436,0.078436,40,40,, +9141,0,0.328211,2,2,0,2,4,,4,6,Elm,Ave,1226001,22.459,22.787,0,7.033084,4.5,4.5,0.518227,0.518227,0.518227,0.518227,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.518227,0.51825,0.518227,0.518227,0.518227,0.51825,0.518227,0.518256,0.518227,0.518227,0.518227,0.518256,0.518227,0.518299,0.518227,0.518227,0.518227,0.518299,0.518227,0.518227,0.518227,0.518227,0.518227,0.518227,,,,,,,0.518227,0.51825,0.518227,0.518256,0.518227,0.518299,0.518227,0.518227,0.518227,0.518227,0.214546,0.214553,0.214546,0.214555,0.214546,0.214568,0.214546,0.214546,0.113837,0.113837,38,37.998304,38,37.997901,38,37.994755,38,38,38,38,,,,,,,,,,,6192,6192,0.518227,0.518227,0.518227,0.518227,0.518227,0.518227,0.518227,0.518227,0.214546,0.214546,38,38,, +9429,1,0.251083,3,0,0,1,1,,4,6,N I 75,,1226910,13.351,13.602,0,,0.8,7.5,0.215214,,0.215214,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.215962,,0.215214,,0.215962,,0.215281,,0.215214,,0.215281,,0.215397,,0.215214,,0.215397,,0.215214,,0.215214,,0.215214,,,,,,,,0.215962,,0.215281,,0.215397,,0.215214,,0.215214,,0.109983,,0.109779,,0.109814,,0.109759,,0.059901,,69.757775,,69.978198,,69.940709,,70,,70,,,,,,,,,,,,22704,,0.215214,,0.215214,,0.215214,,0.215214,,0.109759,,70,,, +9455,-1,0.246101,0,3,0,1,1,,4,6,S I 75,,1226909,13.358,13.604,0,,0.8,7.5,,0.210943,,0.210943,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.211023,,0.210943,,0.211023,,0.211015,,0.210943,,0.211015,,0.212249,,0.210943,,0.212249,,0.210943,,0.210943,,0.210943,,,,,,,,0.211023,,0.211015,,0.212249,,0.210943,,0.210943,,0.107605,,0.107603,,0.107973,,0.107581,,0.058713,,69.973771,,69.976284,,69.569376,,70,,70,,,,,,,,,,,,22704,,0.210943,,0.210943,,0.210943,,0.210943,,0.107581,,70,, +8578,1,0.257464,1,0,0,1,1,RON,4,6,Front/N I 75,RAMP,1225010,0,0.257,0,,1.09,4,0.343286,,0.343286,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.343286,,0.343286,,0.343286,,0.343286,,0.343286,,0.343286,,0.343287,,0.343286,,0.343287,,0.343286,,0.343286,,0.343286,,,,,,,,0.343286,,0.343286,,0.343287,,0.343286,,0.343286,,0.149329,,0.149329,,0.14933,,0.149329,,0.079814,,44.999946,,44.999994,,44.999771,,45,,45,,,,,,,,,,,,5160,,0.343286,,0.343286,,0.343286,,0.343286,,0.149329,,45,,, +8745,1,0.229725,1,0,0,1,1,ROF,4,6,N I 75/Front,RAMP,1225009,0,0.23,0,,2.24,5,0.344587,,0.344587,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.344606,,0.344587,,0.344606,,0.344593,,0.344587,,0.344593,,0.34463,,0.344587,,0.34463,,0.344587,,0.344587,,0.344587,,,,,,,,0.344606,,0.344593,,0.34463,,0.344587,,0.344587,,0.144732,,0.144728,,0.144739,,0.144727,,0.076958,,39.997783,,39.999296,,39.994993,,40,,40,,,,,,,,,,,,5160,,0.344587,,0.344587,,0.344587,,0.344587,,0.144727,,40,,, +9430,1,0.092083,3,0,0,1,1,,4,6,N I 75,,1226910,13.259,13.351,0,,0.8,7.5,0.078928,,0.078928,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.079172,,0.078928,,0.079172,,0.07895,,0.078928,,0.07895,,0.078983,,0.078928,,0.078983,,0.078928,,0.078928,,0.078928,,,,,,,,0.079172,,0.07895,,0.078983,,0.078928,,0.078928,,0.040327,,0.04026,,0.04027,,0.040253,,0.021968,,69.783966,,69.980073,,69.951459,,70,,70,,,,,,,,,,,,22704,,0.078928,,0.078928,,0.078928,,0.078928,,0.040253,,70,,, +9456,-1,0.103705,0,3,0,1,1,,4,6,S I 75,,1226909,13.254,13.358,0,,0.8,7.5,,0.08889,,0.08889,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.088917,,0.08889,,0.088917,,0.088917,,0.08889,,0.088917,,0.089366,,0.08889,,0.089366,,0.08889,,0.08889,,0.08889,,,,,,,,0.088917,,0.088917,,0.089366,,0.08889,,0.08889,,0.045342,,0.045342,,0.045477,,0.045334,,0.024741,,69.978484,,69.978672,,69.626987,,70,,70,,,,,,,,,,,,22704,,0.08889,,0.08889,,0.08889,,0.08889,,0.045334,,70,, +8752,0,0.423532,1,1,0,2,4,,4,6,Front,St,1223803,21.054,21.477,0,9.07568,4.5,4.5,0.668734,0.668734,0.668734,0.668734,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.669484,0.66994,0.668734,0.668734,0.669484,0.66994,0.668989,0.669534,0.668734,0.668734,0.668989,0.669534,0.670416,0.67836,0.668734,0.668734,0.670416,0.67836,0.668734,0.668734,0.668734,0.668734,0.668734,0.668734,,,,,,,0.669484,0.66994,0.668989,0.669534,0.670416,0.67836,0.668734,0.668734,0.668734,0.668734,0.277081,0.277218,0.276932,0.277096,0.277361,0.279744,0.276856,0.276856,0.146899,0.146899,37.957443,37.93159,37.985516,37.954617,37.90467,37.460804,38,38,38,38,,,,,,,,,,,3096,3096,0.668734,0.668734,0.668734,0.668734,0.668734,0.668734,0.668734,0.668734,0.276856,0.276856,38,38,, +8923,0,0.050175,2,2,0,2,4,,4,6,Elm,Ave,1226001,22.409,22.459,0,1.075181,4.5,4.5,0.079224,0.079224,0.079224,0.079224,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.079224,0.079227,0.079224,0.079224,0.079224,0.079227,0.079224,0.079227,0.079224,0.079224,0.079224,0.079227,0.079224,0.079232,0.079224,0.079224,0.079224,0.079232,0.079224,0.079224,0.079224,0.079224,0.079224,0.079224,,,,,,,0.079224,0.079227,0.079224,0.079227,0.079224,0.079232,0.079224,0.079224,0.079224,0.079224,0.032799,0.0328,0.032799,0.0328,0.032799,0.032801,0.032799,0.032799,0.017403,0.017403,38,37.998678,38,37.998442,38,37.996059,38,38,38,38,,,,,,,,,,,6192,6192,0.079224,0.079224,0.079224,0.079224,0.079224,0.079224,0.079224,0.079224,0.032799,0.032799,38,38,, +9144,0,0.251248,2,2,0,2,4,,4,6,Elm,Ave,1226001,22.158,22.409,0,5.383896,4.5,4.5,0.396708,0.396708,0.396708,0.396708,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.396839,0.396722,0.396708,0.396708,0.396839,0.396722,0.396815,0.396724,0.396708,0.396708,0.396815,0.396724,0.397593,0.396749,0.396708,0.396708,0.397593,0.396749,0.396708,0.396708,0.396708,0.396708,0.396708,0.396708,,,,,,,0.396839,0.396722,0.396815,0.396724,0.397593,0.396749,0.396708,0.396708,0.396708,0.396708,0.164276,0.164241,0.164269,0.164242,0.164502,0.16425,0.164237,0.164237,0.087144,0.087144,37.987489,37.998678,37.989785,37.998442,37.915468,37.996059,38,38,38,38,,,,,,,,,,,6192,6192,0.396708,0.396708,0.396708,0.396708,0.396708,0.396708,0.396708,0.396708,0.164237,0.164237,38,38,, +20589,0,0.030266,1,1,0,1,4,,4,6,S I 75/Elm Ramp Service Drive,,4301749,0,0.03,0,,4.5,4.5,0.047788,0.047788,0.047788,0.047788,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,,,,,,,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.019784,0.019784,0.019784,0.019784,0.019784,0.019784,0.019784,0.019784,0.010497,0.010497,38,38,38,38,38,38,38,38,38,38,,,,,,,,,,,3096,3096,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.047788,0.019784,0.019784,38,38,, +8539,1,0.054388,1,0,0,1,1,ROF,4,6,S I 75/Elm,RAMP,1225410,0.134,0.188,0,,2.24,5,0.081582,,0.081582,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.081582,,0.081582,,0.081582,,0.081582,,0.081582,,0.081582,,0.081582,,0.081582,,0.081582,,0.081582,,0.081582,,0.081582,,,,,,,,0.081582,,0.081582,,0.081582,,0.081582,,0.081582,,0.034265,,0.034265,,0.034265,,0.034265,,0.01822,,40,,40,,40,,40,,40,,,,,,,,,,,,5160,,0.081582,,0.081582,,0.081582,,0.081582,,0.034265,,40,,, +8722,1,0.050689,1,0,0,1,1,RON,4,6,S I 75/Elm,RAMP,1225409,0,0.051,0,,1.09,4,0.067585,,0.067585,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.067612,,0.067585,,0.067612,,0.067607,,0.067585,,0.067607,,0.067742,,0.067585,,0.067742,,0.067585,,0.067585,,0.067585,,,,,,,,0.067612,,0.067607,,0.067742,,0.067585,,0.067585,,0.029408,,0.029406,,0.029447,,0.0294,,0.015714,,44.982103,,44.985402,,44.895721,,45,,45,,,,,,,,,,,,5160,,0.067585,,0.067585,,0.067585,,0.067585,,0.0294,,45,,, +20384,-1,0.004665,0,1,0,1,4,,4,6,S I 75/Elm Ramp Service Drive,,4301749,0.03,0.035,0,,4.5,4.5,,0.007366,,0.007366,,38,,9000,,2043,,4500,,2903,,3096,,3092,,0.007366,,0.007366,,0.007366,,0.007366,,0.007366,,0.007366,,0.007366,,0.007366,,0.007366,,0.007366,,0.007366,,0.007366,,,,,,,,0.007366,,0.007366,,0.007366,,0.007366,,0.007366,,0.003049,,0.003049,,0.003049,,0.003049,,0.001618,,38,,38,,38,,38,,38,,,,,,,,,,,,3096,,0.007366,,0.007366,,0.007366,,0.007366,,0.003049,,38,, +8535,1,0.063438,1,0,0,1,1,ROF,4,6,N I 75/Elm,RAMP,1225501,0.182,0.246,0,,2.24,5,0.095157,,0.095157,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.095157,,0.095157,,0.095157,,0.095157,,0.095157,,0.095157,,0.095157,,0.095157,,0.095157,,0.095157,,0.095157,,0.095157,,,,,,,,0.095157,,0.095157,,0.095157,,0.095157,,0.095157,,0.039966,,0.039966,,0.039966,,0.039966,,0.021252,,40,,40,,40,,40,,40,,,,,,,,,,,,5160,,0.095157,,0.095157,,0.095157,,0.095157,,0.039966,,40,,, +8717,1,0.068961,1,0,0,1,1,RON,4,6,Elm/N I 75,RAMP,1225502,0,0.069,0,,1.09,4,0.091948,,0.091948,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.091948,,0.091948,,0.091948,,0.091948,,0.091948,,0.091948,,0.091948,,0.091948,,0.091948,,0.091948,,0.091948,,0.091948,,,,,,,,0.091948,,0.091948,,0.091948,,0.091948,,0.091948,,0.039997,,0.039997,,0.039997,,0.039997,,0.021378,,45,,45,,45,,45,,45,,,,,,,,,,,,5160,,0.091948,,0.091948,,0.091948,,0.091948,,0.039997,,45,,, +8918,0,0.063622,2,2,0,2,4,,5,6,Elm,Ave,1226001,22.787,22.851,0,1.363332,3,4,0.095433,0.095433,0.095433,0.095433,40,40,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,,,,,,,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.040082,0.040082,0.040082,0.040082,0.040082,0.040082,0.040082,0.040082,0.021313,0.021313,39.999998,40,39.999999,39.999999,40,39.999998,40,40,40,40,,,,,,,,,,,6192,6192,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.095433,0.040082,0.040082,40,40,, +8534,1,0.170833,1,0,0,1,1,RON,4,6,Elm/N I 75,RAMP,1225502,0.069,0.24,0,,1.09,4,0.227777,,0.227777,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.227777,,0.227777,,0.227777,,0.227777,,0.227777,,0.227777,,0.227777,,0.227777,,0.227777,,0.227777,,0.227777,,0.227777,,,,,,,,0.227777,,0.227777,,0.227777,,0.227777,,0.227777,,0.099083,,0.099083,,0.099083,,0.099083,,0.052958,,45,,45,,45,,45,,45,,,,,,,,,,,,5160,,0.227777,,0.227777,,0.227777,,0.227777,,0.099083,,45,,, +8718,1,0.18236,1,0,0,1,1,ROF,4,6,N I 75/Elm,RAMP,1225501,0,0.182,0,,2.24,5,0.273539,,0.273539,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.273543,,0.273539,,0.273543,,0.273543,,0.273539,,0.273543,,0.27355,,0.273539,,0.27355,,0.273539,,0.273539,,0.273539,,,,,,,,0.273543,,0.273543,,0.27355,,0.273539,,0.273539,,0.114888,,0.114888,,0.11489,,0.114887,,0.06109,,39.999421,,39.999446,,39.998385,,40,,40,,,,,,,,,,,,5160,,0.273539,,0.273539,,0.273539,,0.273539,,0.114887,,40,,, +9428,1,0.070356,3,0,0,1,1,,4,6,N I 75,,1226910,13.602,13.673,0,,0.8,7.5,0.060305,,0.060305,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.060455,,0.060305,,0.060455,,0.060317,,0.060305,,0.060317,,0.060336,,0.060305,,0.060336,,0.060305,,0.060305,,0.060305,,,,,,,,0.060455,,0.060317,,0.060336,,0.060305,,0.060305,,0.030801,,0.030759,,0.030765,,0.030755,,0.016785,,69.825654,,69.98616,,69.963806,,70,,70,,,,,,,,,,,,22704,,0.060305,,0.060305,,0.060305,,0.060305,,0.030755,,70,,, +9454,-1,0.070628,0,3,0,1,1,,4,6,S I 75,,1226909,13.604,13.675,0,,0.8,7.5,,0.060538,,0.060538,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.060549,,0.060538,,0.060549,,0.060548,,0.060538,,0.060548,,0.060713,,0.060538,,0.060713,,0.060538,,0.060538,,0.060538,,,,,,,,0.060549,,0.060548,,0.060713,,0.060538,,0.060538,,0.030878,,0.030877,,0.030927,,0.030874,,0.01685,,69.987116,,69.988121,,69.798267,,70,,70,,,,,,,,,,,,22704,,0.060538,,0.060538,,0.060538,,0.060538,,0.030874,,70,, +20134,0,0.023391,1,1,0,1,4,,5,6,N I 75/Elm Ramp Service Drive,,4301741,0,0.023,0,,3,4,0.035087,0.035087,0.035087,0.035087,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.035087,0.035128,0.035087,0.035087,0.035087,0.035128,0.035087,0.03513,0.035087,0.035087,0.035087,0.03513,0.035087,0.035189,0.035087,0.035087,0.035087,0.035189,0.035087,0.035087,0.035087,0.035087,0.035087,0.035087,,,,,,,0.035087,0.035128,0.035087,0.03513,0.035087,0.035189,0.035087,0.035087,0.035087,0.035087,0.014737,0.014749,0.014737,0.014749,0.014737,0.014767,0.014737,0.014737,0.007836,0.007836,40,39.953404,40,39.951133,40,39.88384,40,40,40,40,,,,,,,,,,,3096,3096,0.035087,0.035087,0.035087,0.035087,0.035087,0.035087,0.035087,0.035087,0.014737,0.014737,40,40,, +20829,1,0.006477,1,0,0,1,4,,5,6,N I 75/Elm Ramp Service Drive,,4301741,0.023,0.03,0,,3,4,0.009715,,0.009715,,40,,9000,,2043,,4500,,2903,,3096,,3092,,0.009715,,0.009715,,0.009715,,0.009715,,0.009715,,0.009715,,0.009715,,0.009715,,0.009715,,0.009715,,0.009715,,0.009715,,,,,,,,0.009715,,0.009715,,0.009715,,0.009715,,0.009715,,0.00408,,0.00408,,0.00408,,0.00408,,0.00217,,40,,40,,40,,40,,40,,,,,,,,,,,,3096,,0.009715,,0.009715,,0.009715,,0.009715,,0.00408,,40,,, +8520,0,0.550988,1,1,0,2,5,,4,6,Noble,St,1225503,0.599,1.15,0,11.80688,5.8,4.5,1.224417,1.224417,1.224417,1.224417,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.310788,1.252162,1.224417,1.224417,1.310788,1.252162,1.242501,1.238125,1.224417,1.224417,1.242501,1.238125,1.306019,1.38981,1.224417,1.224417,1.306019,1.38981,1.224417,1.224417,1.224417,1.224417,1.224417,1.224417,,,,,,,1.310788,1.252162,1.242501,1.238125,1.306019,1.38981,1.224417,1.224417,1.224417,1.224417,0.492414,0.474826,0.471928,0.470615,0.490984,0.516121,0.466503,0.466503,0.244271,0.244271,25.220909,26.401756,26.607029,26.701061,25.312997,23.786894,27,27,27,27,,,,,,,,,,,2580,2580,1.224417,1.224417,1.224417,1.224417,1.224417,1.224417,1.224417,1.224417,0.466503,0.466503,27,27,, +8546,0,0.497763,1,1,0,2,5,,3,6,Riverview,St,1225309,1.173,1.67,0,10.666354,8,4.5,1.194632,1.194632,1.194632,1.194632,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.194636,1.194632,1.194632,1.194632,1.194636,1.194632,1.194632,1.194632,1.194632,1.194632,1.194632,1.194632,1.194633,1.19466,1.194632,1.194632,1.194633,1.19466,1.194632,1.194632,1.194632,1.194632,1.194632,1.194632,,,,,,,1.194636,1.194632,1.194632,1.194632,1.194633,1.19466,1.194632,1.194632,1.194632,1.194632,0.447988,0.447987,0.447987,0.447987,0.447987,0.447996,0.447987,0.447987,0.233949,0.233949,24.999907,24.999995,24.999991,24.999984,24.999976,24.999397,25,25,25,25,,,,,,,,,,,2408,2408,1.194632,1.194632,1.194632,1.194632,1.194632,1.194632,1.194632,1.194632,0.447987,0.447987,25,25,, +8724,0,0.576851,1,1,0,2,5,,3,6,Riverview,St,1225309,0.596,1.173,0,12.361088,8,4.5,1.384442,1.384442,1.384442,1.384442,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.384447,1.384442,1.384442,1.384442,1.384447,1.384442,1.384442,1.384443,1.384442,1.384442,1.384442,1.384443,1.384443,1.384475,1.384442,1.384442,1.384443,1.384475,1.384442,1.384442,1.384442,1.384442,1.384442,1.384442,,,,,,,1.384447,1.384442,1.384442,1.384443,1.384443,1.384475,1.384442,1.384442,1.384442,1.384442,0.519167,0.519166,0.519166,0.519166,0.519166,0.519176,0.519166,0.519166,0.27112,0.27112,24.999907,24.999995,24.999991,24.999984,24.999976,24.999397,25,25,25,25,,,,,,,,,,,2408,2408,1.384442,1.384442,1.384442,1.384442,1.384442,1.384442,1.384442,1.384442,0.519166,0.519166,25,25,, +8759,0,0.838435,1,1,0,2,4,,3,6,Macomb,St,1224810,1.1,1.938,0,17.966462,6,4.5,1.524427,1.524427,1.524427,1.524427,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.530975,1.537645,1.524427,1.524427,1.530975,1.537645,1.531617,1.557461,1.524427,1.524427,1.531617,1.557461,1.544508,1.621174,1.524427,1.524427,1.544508,1.621174,1.524427,1.524427,1.524427,1.524427,1.524427,1.524427,,,,,,,1.530975,1.537645,1.531617,1.557461,1.544508,1.621174,1.524427,1.524427,1.524427,1.524427,0.610211,0.612212,0.610403,0.618157,0.614271,0.637271,0.608246,0.608246,0.320892,0.320892,32.858863,32.716323,32.845088,32.300058,32.570944,31.030654,33,33,33,33,,,,,,,,,,,2580,2580,1.524427,1.524427,1.524427,1.524427,1.524427,1.524427,1.524427,1.524427,0.608246,0.608246,33,33,, +9163,0,0.192506,1,1,0,2,4,,4,6,Elm,Ave,1226001,21.781,21.974,0,4.125136,4.5,4.5,0.303957,0.303957,0.303957,0.303957,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.304263,0.303959,0.303957,0.303957,0.304263,0.303959,0.304195,0.303966,0.303957,0.303957,0.304195,0.303966,0.307135,0.303974,0.303957,0.303957,0.307135,0.303974,0.303957,0.303957,0.303957,0.303957,0.303957,0.303957,,,,,,,0.304263,0.303959,0.304195,0.303966,0.307135,0.303974,0.303957,0.303957,0.303957,0.303957,0.12593,0.125839,0.12591,0.125841,0.126792,0.125843,0.125838,0.125838,0.066769,0.066769,37.961862,37.999834,37.970355,37.998915,37.606865,37.997931,38,38,38,38,,,,,,,,,,,3096,3096,0.303957,0.303957,0.303957,0.303957,0.303957,0.303957,0.303957,0.303957,0.125838,0.125838,38,38,, +9384,0,0.751137,2,2,0,2,4,,3,6,Monroe,St,1227004,15.396,16.147,0,16.095791,6,4.5,1.365703,1.365703,1.365703,1.365703,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,1.450897,1.37565,1.365703,1.365703,1.450897,1.37565,1.393549,1.383711,1.365703,1.365703,1.393549,1.383711,1.438202,1.549845,1.365703,1.365703,1.438202,1.549845,1.365703,1.365703,1.365703,1.365703,1.365703,1.365703,,,,,,,1.450897,1.37565,1.393549,1.383711,1.438202,1.549845,1.365703,1.365703,1.365703,1.365703,0.570474,0.5479,0.553269,0.550318,0.566665,0.600158,0.544916,0.544916,0.287481,0.287481,31.06232,32.761385,32.340603,32.570534,31.336491,29.079182,33,33,33,33,,,,,,,,,,,5160,5160,1.365703,1.365703,1.365703,1.365703,1.365703,1.365703,1.365703,1.365703,0.544916,0.544916,33,33,, +10147,0,0.307604,1,1,0,2,5,,3,6,Cole,Rd,1237610,9.618,9.926,0,6.591516,8,4.5,0.73825,0.73825,0.73825,0.73825,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.738664,0.739412,0.73825,0.73825,0.738664,0.739412,0.740752,0.741464,0.73825,0.73825,0.740752,0.741464,0.754389,0.750832,0.73825,0.73825,0.754389,0.750832,0.73825,0.73825,0.73825,0.73825,0.73825,0.73825,,,,,,,0.738664,0.739412,0.740752,0.741464,0.754389,0.750832,0.73825,0.73825,0.73825,0.73825,0.276968,0.277192,0.277594,0.277808,0.281686,0.280618,0.276844,0.276844,0.144574,0.144574,24.985979,24.960697,24.915562,24.891616,24.465146,24.581049,25,25,25,25,,,,,,,,,,,2408,2408,0.73825,0.73825,0.73825,0.73825,0.73825,0.73825,0.73825,0.73825,0.276844,0.276844,25,25,, +20179,0,0.233966,2,2,0,2,4,,4,6,Dixie,Hwy,4301655,0.211,0.445,0,5.013556,4.5,4.5,0.36942,0.36942,0.36942,0.36942,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.407875,0.381566,0.36942,0.36942,0.407875,0.381566,0.372908,0.37293,0.36942,0.36942,0.372908,0.37293,0.387823,0.413894,0.36942,0.36942,0.387823,0.413894,0.36942,0.36942,0.36942,0.36942,0.36942,0.36942,,,,,,,0.407875,0.381566,0.372908,0.37293,0.387823,0.413894,0.36942,0.36942,0.36942,0.36942,0.164476,0.156584,0.153986,0.153993,0.158461,0.166282,0.15294,0.15294,0.081149,0.081149,34.41727,36.790396,37.644576,37.642365,36.196855,33.916803,38,38,38,38,,,,,,,,,,,6192,6192,0.36942,0.36942,0.36942,0.36942,0.36942,0.36942,0.36942,0.36942,0.15294,0.15294,38,38,, +30327,0,0.697081,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.937453,0.15,4,2.788325,2.788325,2.788325,2.788325,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,,,,,,,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,0.961972,0.961972,0.961972,0.961972,0.961972,0.961972,0.961972,0.961972,0.494928,0.494928,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,2.788325,0.961972,0.961972,15,15,, +31021,0,0.652458,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,13.981244,0.15,4,2.609832,2.609832,2.609832,2.609832,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,,,,,,,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,0.900392,0.900392,0.900392,0.900392,0.900392,0.900392,0.900392,0.900392,0.463245,0.463245,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,2.609832,0.900392,0.900392,15,15,, +31024,0,0.532927,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,11.419873,0.15,4,3.197564,3.197564,3.197564,3.197564,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,,,,,,,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,1.055196,1.055196,1.055196,1.055196,1.055196,1.055196,1.055196,1.055196,0.538257,0.538257,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,3.197564,1.055196,1.055196,10,10,, +33596,0,0.56739,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,12.158354,0.15,4,3.404339,3.404339,3.404339,3.404339,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,,,,,,,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,1.123432,1.123432,1.123432,1.123432,1.123432,1.123432,1.123432,1.123432,0.573064,0.573064,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,3.404339,1.123432,1.123432,10,10,, +8548,0,0.359203,1,1,0,2,5,,3,6,Riverview,St,1225309,0.237,0.596,0,7.697201,8,4.5,0.862087,0.862087,0.862087,0.862087,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.871644,0.911691,0.862087,0.862087,0.871644,0.911691,0.865338,0.86921,0.862087,0.862087,0.865338,0.86921,0.886187,0.89581,0.862087,0.862087,0.886187,0.89581,0.862087,0.862087,0.862087,0.862087,0.862087,0.862087,,,,,,,0.871644,0.911691,0.865338,0.86921,0.886187,0.89581,0.862087,0.862087,0.862087,0.862087,0.32615,0.338164,0.324258,0.32542,0.330513,0.3334,0.323282,0.323282,0.168825,0.168825,24.725887,23.639779,24.906053,24.795104,24.320107,24.058851,25,25,25,25,,,,,,,,,,,2408,2408,0.862087,0.862087,0.862087,0.862087,0.862087,0.862087,0.862087,0.862087,0.323282,0.323282,25,25,, +8618,0,0.238941,2,2,0,2,4,,3,6,Macomb,St,1224810,0.511,0.75,0,5.120157,6,4.5,0.434438,0.434438,0.434438,0.434438,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.436165,0.440781,0.434438,0.434438,0.436165,0.440781,0.436134,0.440618,0.434438,0.434438,0.436134,0.440618,0.439973,0.473561,0.434438,0.434438,0.439973,0.473561,0.434438,0.434438,0.434438,0.434438,0.434438,0.434438,,,,,,,0.436165,0.440781,0.436134,0.440618,0.439973,0.473561,0.434438,0.434438,0.434438,0.434438,0.173859,0.175244,0.17385,0.175195,0.175001,0.185078,0.173341,0.173341,0.091449,0.091449,32.869326,32.525099,32.871634,32.537104,32.584802,30.273678,33,33,33,33,,,,,,,,,,,5160,5160,0.434438,0.434438,0.434438,0.434438,0.434438,0.434438,0.434438,0.434438,0.173341,0.173341,33,33,, +8726,0,0.23722,1,1,0,2,5,,3,6,Riverview,St,1225309,0,0.237,0,5.083288,8,4.5,0.569328,0.569328,0.569328,0.569328,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.569328,0.569328,0.569328,0.569328,0.569328,0.569328,0.569328,0.569329,0.569328,0.569328,0.569328,0.569329,0.569328,0.569329,0.569328,0.569328,0.569328,0.569329,0.569328,0.569328,0.569328,0.569328,0.569328,0.569328,,,,,,,0.569328,0.569328,0.569328,0.569329,0.569328,0.569329,0.569328,0.569328,0.569328,0.569328,0.213498,0.213498,0.213498,0.213498,0.213498,0.213498,0.213498,0.213498,0.111493,0.111493,25,25,25,24.999951,25,24.99996,25,25,25,25,,,,,,,,,,,2408,2408,0.569328,0.569328,0.569328,0.569328,0.569328,0.569328,0.569328,0.569328,0.213498,0.213498,25,25,, +8955,0,0.511458,1,1,0,2,4,,3,6,Elm,Ave,1226001,21.27,21.781,0,10.959824,6,4.5,0.929924,0.929924,0.929924,0.929924,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.120175,1.130863,0.929924,0.929924,1.120175,1.130863,1.031822,1.040773,0.929924,0.929924,1.031822,1.040773,1.153386,1.297877,0.929924,0.929924,1.153386,1.297877,0.929924,0.929924,0.929924,0.929924,0.929924,0.929924,,,,,,,1.120175,1.130863,1.031822,1.040773,1.153386,1.297877,0.929924,0.929924,0.929924,0.929924,0.428115,0.431321,0.401609,0.404294,0.438078,0.481426,0.37104,0.37104,0.195749,0.195749,27.395278,27.136356,29.741089,29.485301,26.606443,23.644379,33,33,33,33,,,,,,,,,,,2580,2580,0.929924,0.929924,0.929924,0.929924,0.929924,0.929924,0.929924,0.929924,0.37104,0.37104,33,33,, +31179,0,0.089946,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,1.927414,0.15,4,0.539676,0.539676,0.539676,0.539676,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,,,,,,,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.178093,0.178093,0.178093,0.178093,0.178093,0.178093,0.178093,0.178093,0.090845,0.090845,9.999999,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.539676,0.178093,0.178093,10,10,, +9175,0,0.217099,1,1,0,2,4,,3,6,Elm,Ave,1226001,21.053,21.27,0,4.652127,6,4.5,0.394726,0.394726,0.394726,0.394726,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.474455,0.480019,0.394726,0.394726,0.474455,0.480019,0.424851,0.436286,0.394726,0.394726,0.424851,0.436286,0.465854,0.549596,0.394726,0.394726,0.465854,0.549596,0.394726,0.394726,0.394726,0.394726,0.394726,0.394726,,,,,,,0.474455,0.480019,0.424851,0.436286,0.465854,0.549596,0.394726,0.394726,0.394726,0.394726,0.181414,0.183083,0.166533,0.169964,0.178834,0.203957,0.157496,0.157496,0.08309,0.08309,27.45455,27.136356,30.660061,29.856438,27.961442,23.700976,33,33,33,33,,,,,,,,,,,2580,2580,0.394726,0.394726,0.394726,0.394726,0.394726,0.394726,0.394726,0.394726,0.157496,0.157496,33,33,, +31181,0,0.132906,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,2.847984,0.15,4,0.797435,0.797435,0.797435,0.797435,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,,,,,,,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.263154,0.263154,0.263154,0.263154,0.263154,0.263154,0.263154,0.263154,0.134235,0.134235,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.797435,0.263154,0.263154,10,10,, +31180,0,0.031452,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,0.673967,0.15,4,0.188711,0.188711,0.188711,0.188711,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,,,,,,,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.062275,0.062275,0.062275,0.062275,0.062275,0.062275,0.062275,0.062275,0.031766,0.031766,9.999997,9.999992,9.999995,9.999994,9.99998,9.999987,10,10,10,10,,,,,,,,,,,34400,34400,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.188711,0.062275,0.062275,10,10,, +8763,0,0.119288,2,2,0,2,4,,3,6,Macomb,St,1224810,0.392,0.511,0,2.556172,6,4.5,0.216887,0.216887,0.216887,0.216887,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.218413,0.233886,0.216887,0.216887,0.218413,0.233886,0.217946,0.228241,0.216887,0.216887,0.217946,0.228241,0.219897,0.274023,0.216887,0.216887,0.219897,0.274023,0.216887,0.216887,0.216887,0.216887,0.216887,0.216887,,,,,,,0.218413,0.233886,0.217946,0.228241,0.219897,0.274023,0.216887,0.216887,0.216887,0.216887,0.086996,0.091638,0.086856,0.089944,0.087441,0.103679,0.086538,0.086538,0.045655,0.045655,32.769561,30.601554,32.839701,31.358494,32.548279,26.119297,33,33,33,33,,,,,,,,,,,5160,5160,0.216887,0.216887,0.216887,0.216887,0.216887,0.216887,0.216887,0.216887,0.086538,0.086538,33,33,, +8943,0,0.059861,1,1,0,2,4,,3,6,Front,St,1223803,19.989,20.048,0,1.282726,6,4.5,0.108837,0.108837,0.108837,0.108837,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.108899,0.145416,0.108837,0.108837,0.108899,0.145416,0.10891,0.133182,0.108837,0.108837,0.10891,0.133182,0.109249,0.174249,0.108837,0.108837,0.109249,0.174249,0.108837,0.108837,0.108837,0.108837,0.108837,0.108837,,,,,,,0.108899,0.145416,0.10891,0.133182,0.109249,0.174249,0.108837,0.108837,0.108837,0.108837,0.043445,0.0544,0.043448,0.050729,0.043549,0.06305,0.043426,0.043426,0.02291,0.02291,32.981297,24.699034,32.977909,26.967923,32.875749,20.61208,33,33,33,33,,,,,,,,,,,2580,2580,0.108837,0.108837,0.108837,0.108837,0.108837,0.108837,0.108837,0.108837,0.043426,0.043426,33,33,, +8525,0,0.092582,1,1,0,2,5,,3,6,Noble,St,1225503,0.38,0.473,0,1.9839,8,4.5,0.222197,0.222197,0.222197,0.222197,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.222208,0.222218,0.222197,0.222197,0.222208,0.222218,0.222256,0.222246,0.222197,0.222197,0.222256,0.222246,0.22234,0.223016,0.222197,0.222197,0.22234,0.223016,0.222197,0.222197,0.222197,0.222197,0.222197,0.222197,,,,,,,0.222208,0.222218,0.222256,0.222246,0.22234,0.223016,0.222197,0.222197,0.222197,0.222197,0.083327,0.08333,0.083342,0.083339,0.083367,0.08357,0.083324,0.083324,0.043514,0.043514,24.998752,24.997561,24.993353,24.99447,24.983854,24.908177,25,25,25,25,,,,,,,,,,,2408,2408,0.222197,0.222197,0.222197,0.222197,0.222197,0.222197,0.222197,0.222197,0.083324,0.083324,25,25,, +8761,0,0.238583,2,2,0,2,4,,3,6,Macomb,St,1224810,0.75,0.989,0,5.112503,6,4.5,0.433788,0.433788,0.433788,0.433788,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.439762,0.438336,0.433788,0.433788,0.439762,0.438336,0.437397,0.43979,0.433788,0.433788,0.437397,0.43979,0.449604,0.455551,0.433788,0.433788,0.449604,0.455551,0.433788,0.433788,0.433788,0.433788,0.433788,0.433788,,,,,,,0.439762,0.438336,0.437397,0.43979,0.449604,0.455551,0.433788,0.433788,0.433788,0.433788,0.174874,0.174446,0.174164,0.174882,0.177826,0.17961,0.173081,0.173081,0.091312,0.091312,32.551709,32.657603,32.727743,32.549631,31.839134,31.423499,33,33,33,33,,,,,,,,,,,5160,5160,0.433788,0.433788,0.433788,0.433788,0.433788,0.433788,0.433788,0.433788,0.173081,0.173081,33,33,, +31178,0,0.376941,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,8.077306,0.15,4,2.261646,2.261646,2.261646,2.261646,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,,,,,,,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,0.746343,0.746343,0.746343,0.746343,0.746343,0.746343,0.746343,0.746343,0.38071,0.38071,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,2.261646,0.746343,0.746343,10,10,, +8711,0,0.126314,1,1,0,2,5,,3,6,Noble,St,1225503,0.473,0.599,0,2.706718,8,4.5,0.303152,0.303152,0.303152,0.303152,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.303168,0.303182,0.303152,0.303152,0.303168,0.303182,0.303233,0.303219,0.303152,0.303152,0.303233,0.303219,0.303348,0.30427,0.303152,0.303152,0.303348,0.30427,0.303152,0.303152,0.303152,0.303152,0.303152,0.303152,,,,,,,0.303168,0.303182,0.303233,0.303219,0.303348,0.30427,0.303152,0.303152,0.303152,0.303152,0.113687,0.113691,0.113706,0.113702,0.113741,0.114017,0.113682,0.113682,0.059367,0.059367,24.998752,24.997561,24.993353,24.99447,24.983854,24.908177,25,25,25,25,,,,,,,,,,,2408,2408,0.303152,0.303152,0.303152,0.303152,0.303152,0.303152,0.303152,0.303152,0.113682,0.113682,25,25,, +8615,0,0.111588,1,1,0,2,4,,3,6,Macomb,St,1224810,0.989,1.1,0,2.391168,6,4.5,0.202887,0.202887,0.202887,0.202887,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.266027,0.250955,0.202887,0.202887,0.266027,0.250955,0.241077,0.266407,0.202887,0.202887,0.241077,0.266407,0.370114,0.432991,0.202887,0.202887,0.370114,0.432991,0.202887,0.202887,0.202887,0.202887,0.202887,0.202887,,,,,,,0.266027,0.250955,0.241077,0.266407,0.370114,0.432991,0.202887,0.202887,0.202887,0.202887,0.099894,0.095372,0.092409,0.100008,0.13112,0.149983,0.080952,0.080952,0.042708,0.042708,25.167675,26.679117,27.772307,25.131721,18.089754,15.462824,33,33,33,33,,,,,,,,,,,2580,2580,0.202887,0.202887,0.202887,0.202887,0.202887,0.202887,0.202887,0.202887,0.080952,0.080952,33,33,, +31177,0,0.130835,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,2.803618,0.15,4,0.785013,0.785013,0.785013,0.785013,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.785013,0.785013,0.785013,0.785013,0.785013,0.785013,0.785013,0.785013,0.785013,0.785013,0.785013,0.785013,0.785014,0.785014,0.785013,0.785013,0.785014,0.785014,0.785013,0.785013,0.785013,0.785013,0.785013,0.785013,,,,,,,0.785013,0.785013,0.785013,0.785013,0.785014,0.785014,0.785013,0.785013,0.785013,0.785013,0.259054,0.259054,0.259054,0.259054,0.259055,0.259055,0.259054,0.259054,0.132144,0.132144,9.999997,9.999995,9.999997,9.999997,9.999988,9.999983,10,10,10,10,,,,,,,,,,,34400,34400,0.785013,0.785013,0.785013,0.785013,0.785013,0.785013,0.785013,0.785013,0.259054,0.259054,10,10,, +20381,0,0.211121,2,2,0,2,4,,4,6,Winchester,St,4301655,0,0.211,0,4.524031,4.5,4.5,0.33335,0.33335,0.33335,0.33335,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.33756,0.333444,0.33335,0.33335,0.33756,0.333444,0.333513,0.33338,0.33335,0.33335,0.333513,0.33338,0.335649,0.334501,0.33335,0.33335,0.335649,0.334501,0.33335,0.33335,0.33335,0.33335,0.33335,0.33335,,,,,,,0.33756,0.333444,0.333513,0.33338,0.335649,0.334501,0.33335,0.33335,0.33335,0.33335,0.13927,0.138035,0.138056,0.138016,0.138697,0.138352,0.138007,0.138007,0.073226,0.073226,37.526063,37.989208,37.981339,37.996493,37.739639,37.869223,38,38,38,38,,,,,,,,,,,6192,6192,0.33335,0.33335,0.33335,0.33335,0.33335,0.33335,0.33335,0.33335,0.138007,0.138007,38,38,, +8754,0,0.038705,2,2,0,2,4,,4,6,Winchester,St,1224908,0.666,0.705,0,0.829403,4.5,4.5,0.061114,0.061114,0.061114,0.061114,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.061886,0.061131,0.061114,0.061114,0.061886,0.061131,0.061144,0.06112,0.061114,0.061114,0.061144,0.06112,0.061536,0.061325,0.061114,0.061114,0.061536,0.061325,0.061114,0.061114,0.061114,0.061114,0.061114,0.061114,,,,,,,0.061886,0.061131,0.061144,0.06112,0.061536,0.061325,0.061114,0.061114,0.061114,0.061114,0.025533,0.025306,0.02531,0.025303,0.025428,0.025364,0.025301,0.025301,0.013425,0.013425,37.526063,37.989208,37.981339,37.996493,37.739639,37.869223,38,38,38,38,,,,,,,,,,,6192,6192,0.061114,0.061114,0.061114,0.061114,0.061114,0.061114,0.061114,0.061114,0.025301,0.025301,38,38,, +9383,0,0.519907,2,2,0,2,4,,3,6,Monroe,St,1227004,16.147,16.666,0,11.140871,6,4.5,0.945286,0.945286,0.945286,0.945286,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.991815,0.949025,0.945286,0.945286,0.991815,0.949025,0.953282,0.955626,0.945286,0.945286,0.953282,0.955626,0.969293,1.083045,0.945286,0.945286,0.969293,1.083045,0.945286,0.945286,0.945286,0.945286,0.945286,0.945286,,,,,,,0.991815,0.949025,0.953282,0.955626,0.969293,1.083045,0.945286,0.945286,0.945286,0.945286,0.391128,0.378291,0.379568,0.380271,0.384371,0.418497,0.377169,0.377169,0.198983,0.198983,31.451883,32.869982,32.723214,32.642941,32.182679,28.80252,33,33,33,33,,,,,,,,,,,5160,5160,0.945286,0.945286,0.945286,0.945286,0.945286,0.945286,0.945286,0.945286,0.377169,0.377169,33,33,, +10148,0,0.375368,2,2,0,2,4,,3,6,Cole,Rd,1237610,9.243,9.618,0,8.043608,6,4.5,0.682488,0.682488,0.682488,0.682488,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.68369,0.682989,0.682488,0.682488,0.68369,0.682989,0.684835,0.683354,0.682488,0.682488,0.684835,0.683354,0.695554,0.688115,0.682488,0.682488,0.695554,0.688115,0.682488,0.682488,0.682488,0.682488,0.682488,0.682488,,,,,,,0.68369,0.682989,0.684835,0.683354,0.695554,0.688115,0.682488,0.682488,0.682488,0.682488,0.272673,0.272463,0.273017,0.272572,0.276233,0.274001,0.272313,0.272313,0.143664,0.143664,32.941998,32.975771,32.886909,32.958193,32.380069,32.730122,33,33,33,33,,,,,,,,,,,5160,5160,0.682488,0.682488,0.682488,0.682488,0.682488,0.682488,0.682488,0.682488,0.272313,0.272313,33,33,, +31038,0,0.32438,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.950996,0.15,4,1.946279,1.946279,1.946279,1.946279,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.946279,1.946279,1.946279,1.946279,1.946279,1.946279,1.946279,1.946279,1.946279,1.946279,1.946279,1.946279,1.946281,1.94628,1.946279,1.946279,1.946281,1.94628,1.946279,1.946279,1.946279,1.946279,1.946279,1.946279,,,,,,,1.946279,1.946279,1.946279,1.946279,1.946281,1.94628,1.946279,1.946279,1.946279,1.946279,0.642272,0.642272,0.642272,0.642272,0.642273,0.642272,0.642272,0.642272,0.327624,0.327624,10,9.999998,9.999997,9.999997,9.999989,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,1.946279,1.946279,1.946279,1.946279,1.946279,1.946279,1.946279,1.946279,0.642272,0.642272,10,10,, +10150,0,0.199195,2,2,0,2,4,,3,6,Stewart,Rd,1237610,9.044,9.243,0,4.268458,6,4.5,0.362172,0.362172,0.362172,0.362172,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.362284,0.362188,0.362172,0.362172,0.362284,0.362188,0.362257,0.362264,0.362172,0.362172,0.362257,0.362264,0.362801,0.363054,0.362172,0.362172,0.362801,0.363054,0.362172,0.362172,0.362172,0.362172,0.362172,0.362172,,,,,,,0.362284,0.362188,0.362257,0.362264,0.362801,0.363054,0.362172,0.362172,0.362172,0.362172,0.14454,0.144512,0.144532,0.144534,0.144695,0.144771,0.144507,0.144507,0.076237,0.076237,32.98977,32.998515,32.992277,32.991615,32.942814,32.919883,33,33,33,33,,,,,,,,,,,5160,5160,0.362172,0.362172,0.362172,0.362172,0.362172,0.362172,0.362172,0.362172,0.144507,0.144507,33,33,, +31025,0,0.242659,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,5.199841,0.15,4,1.455955,1.455955,1.455955,1.455955,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,,,,,,,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,0.480465,0.480465,0.480465,0.480465,0.480465,0.480465,0.480465,0.480465,0.245086,0.245086,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,1.455955,0.480465,0.480465,10,10,, +31026,0,0.312924,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.705511,0.15,4,1.877543,1.877543,1.877543,1.877543,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,,,,,,,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,0.619589,0.619589,0.619589,0.619589,0.619589,0.619589,0.619589,0.619589,0.316053,0.316053,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,1.877543,0.619589,0.619589,10,10,, +8545,0,0.415401,1,1,0,2,5,,4,6,Detroit,St,1225408,0.751,1.167,0,8.901446,5.8,4.5,0.923113,0.923113,0.923113,0.923113,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.927997,0.923192,0.923113,0.923113,0.927997,0.923192,0.923113,0.923113,0.923113,0.923113,0.923113,0.923113,0.923205,0.930947,0.923113,0.923113,0.923205,0.930947,0.923113,0.923113,0.923113,0.923113,0.923113,0.923113,,,,,,,0.927997,0.923192,0.923113,0.923113,0.923205,0.930947,0.923113,0.923113,0.923113,0.923113,0.353171,0.35173,0.351706,0.351706,0.351734,0.354056,0.351706,0.351706,0.184161,0.184161,26.857892,26.997691,27,27,26.997321,26.772796,27,27,27,27,,,,,,,,,,,2580,2580,0.923113,0.923113,0.923113,0.923113,0.923113,0.923113,0.923113,0.923113,0.351706,0.351706,27,27,, +20639,0,0.359207,2,2,0,2,4,,4,6,Dixie,Hwy,4301655,0.987,1.346,0,7.697295,4.5,4.5,0.567169,0.567169,0.567169,0.567169,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.616189,0.587529,0.567169,0.567169,0.616189,0.587529,0.573796,0.573651,0.567169,0.567169,0.573796,0.573651,0.588885,0.605516,0.567169,0.567169,0.588885,0.605516,0.567169,0.567169,0.567169,0.567169,0.567169,0.567169,,,,,,,0.616189,0.587529,0.573796,0.573651,0.588885,0.605516,0.567169,0.567169,0.567169,0.567169,0.249514,0.240916,0.236796,0.236753,0.241323,0.246312,0.234808,0.234808,0.124588,0.124588,34.976961,36.68318,37.561112,37.570616,36.598724,35.59348,38,38,38,38,,,,,,,,,,,6192,6192,0.567169,0.567169,0.567169,0.567169,0.567169,0.567169,0.567169,0.567169,0.234808,0.234808,38,38,, +20874,0,0.542477,2,2,0,2,4,,4,6,Dixie,Hwy,4301655,0.445,0.987,0,11.62451,4.5,4.5,0.856543,0.856543,0.856543,0.856543,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,1.091566,0.922058,0.856543,0.856543,1.091566,0.922058,0.882732,0.880574,0.856543,0.856543,0.882732,0.880574,0.963434,1.132772,0.856543,0.856543,0.963434,1.132772,0.856543,0.856543,0.856543,0.856543,0.856543,0.856543,,,,,,,1.091566,0.922058,0.882732,0.880574,0.963434,1.132772,0.856543,0.856543,0.856543,0.856543,0.425116,0.374263,0.362465,0.361818,0.386676,0.437478,0.354609,0.354609,0.188154,0.188154,29.818292,35.299986,36.872612,36.962982,33.783966,28.733605,38,38,38,38,,,,,,,,,,,6192,6192,0.856543,0.856543,0.856543,0.856543,0.856543,0.856543,0.856543,0.856543,0.354609,0.354609,38,38,, +31049,0,0.615487,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,13.188998,0.15,4,2.461946,2.461946,2.461946,2.461946,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,,,,,,,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,0.849371,0.849371,0.849371,0.849371,0.849371,0.849371,0.849371,0.849371,0.436995,0.436995,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,2.461946,0.849371,0.849371,15,15,, +31048,0,0.249518,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.346806,0.15,4,0.998071,0.998071,0.998071,0.998071,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,,,,,,,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.344334,0.344334,0.344334,0.344334,0.344334,0.344334,0.344334,0.344334,0.177158,0.177158,15,14.999998,14.999997,14.999997,14.999995,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.998071,0.344334,0.344334,15,15,, +31050,0,0.170305,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.649394,0.15,4,0.68122,0.68122,0.68122,0.68122,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,,,,,,,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.235021,0.235021,0.235021,0.235021,0.235021,0.235021,0.235021,0.235021,0.120917,0.120917,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.68122,0.235021,0.235021,15,15,, +20421,0,0.22607,2,2,1,2,4,,4,6,Dixie,Hwy,4301655,1.346,1.572,0,4.844352,4.5,4.5,0.356952,0.356952,0.356952,0.356952,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.41342,0.372095,0.356952,0.356952,0.41342,0.372095,0.359746,0.359866,0.356952,0.356952,0.359746,0.359866,0.372133,0.406232,0.356952,0.356952,0.372133,0.406232,0.356952,0.356952,0.356952,0.356952,0.356952,0.356952,,,,,,,0.41342,0.372095,0.359746,0.359866,0.372133,0.406232,0.356952,0.356952,0.356952,0.356952,0.164718,0.152321,0.148616,0.148652,0.152333,0.162562,0.147778,0.147778,0.078411,0.078411,32.809726,36.453565,37.704911,37.692354,36.449816,33.390205,38,38,38,38,,,,,,,,,,,6502,6502,0.356952,0.356952,0.356952,0.356952,0.356952,0.356952,0.356952,0.356952,0.147778,0.147778,38,38,, +20234,0,0.051781,2,2,1,2,4,,5,6,Dixie,Hwy,4301655,1.572,1.624,0,1.10959,3,4,0.077671,0.077671,0.077671,0.077671,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.0921,0.08199,0.077671,0.077671,0.0921,0.08199,0.078863,0.07883,0.077671,0.077671,0.078863,0.07883,0.082411,0.090528,0.077671,0.077671,0.082411,0.090528,0.077671,0.077671,0.077671,0.077671,0.077671,0.077671,,,,,,,0.0921,0.08199,0.078863,0.07883,0.082411,0.090528,0.077671,0.077671,0.077671,0.077671,0.036951,0.033917,0.032979,0.032969,0.034044,0.036479,0.032622,0.032622,0.017347,0.017347,33.733497,37.893163,39.395694,39.412233,37.699523,34.319083,40,40,40,40,,,,,,,,,,,6502,6502,0.077671,0.077671,0.077671,0.077671,0.077671,0.077671,0.077671,0.077671,0.032622,0.032622,40,40,, +10117,0,0.182954,1,1,0,2,5,,5,6,Cole,Rd,1237610,10.24,10.423,0,3.920448,3.7,5,0.365909,0.365909,0.365909,0.365909,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.365939,0.366033,0.365909,0.365909,0.365939,0.366033,0.366131,0.366232,0.365909,0.365909,0.366131,0.366232,0.368198,0.367223,0.365909,0.365909,0.368198,0.367223,0.365909,0.365909,0.365909,0.365909,0.365909,0.365909,,,,,,,0.365939,0.366033,0.366131,0.366232,0.368198,0.367223,0.365909,0.365909,0.365909,0.365909,0.142713,0.142742,0.142771,0.142801,0.143391,0.143099,0.142704,0.142704,0.075011,0.075011,29.997494,29.989827,29.981792,29.973535,29.813465,29.892631,30,30,30,30,,,,,,,,,,,2580,2580,0.365909,0.365909,0.365909,0.365909,0.365909,0.365909,0.365909,0.365909,0.142704,0.142704,30,30,, +10138,0,0.314993,1,1,0,2,5,,3,6,Cole,Rd,1237610,9.926,10.24,0,6.749857,8,4.5,0.755984,0.755984,0.755984,0.755984,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.757504,0.758093,0.755984,0.755984,0.757504,0.758093,0.760432,0.761928,0.755984,0.755984,0.760432,0.761928,0.782197,0.789018,0.755984,0.755984,0.782197,0.789018,0.755984,0.755984,0.755984,0.755984,0.755984,0.755984,,,,,,,0.757504,0.758093,0.760432,0.761928,0.782197,0.789018,0.755984,0.755984,0.755984,0.755984,0.28395,0.284127,0.284828,0.285277,0.291358,0.293404,0.283494,0.283494,0.148047,0.148047,24.949838,24.930448,24.853765,24.804956,24.162205,23.953327,25,25,25,25,,,,,,,,,,,2408,2408,0.755984,0.755984,0.755984,0.755984,0.755984,0.755984,0.755984,0.755984,0.283494,0.283494,25,25,, +20423,0,0.127784,1,1,0,2,5,,3,6,Vivian,Rd,4301667,0,0.128,0,2.738228,8,4.5,0.306682,0.306682,0.306682,0.306682,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.306689,0.306682,0.306682,0.306682,0.306689,0.306682,0.306683,0.306682,0.306682,0.306682,0.306683,0.306682,0.306683,0.306727,0.306682,0.306682,0.306683,0.306727,0.306682,0.306682,0.306682,0.306682,0.306682,0.306682,,,,,,,0.306689,0.306682,0.306683,0.306682,0.306683,0.306727,0.306682,0.306682,0.306682,0.306682,0.115008,0.115006,0.115006,0.115006,0.115006,0.115019,0.115006,0.115006,0.060058,0.060058,24.999421,24.999972,24.99992,24.99993,24.999875,24.996259,25,25,25,25,,,,,,,,,,,2408,2408,0.306682,0.306682,0.306682,0.306682,0.306682,0.306682,0.306682,0.306682,0.115006,0.115006,25,25,, +10114,0,0.18513,1,1,0,2,5,,5,6,Cole,Rd,1237610,10.423,10.608,0,3.967065,3.7,5,0.370259,0.370259,0.370259,0.370259,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.370261,0.37027,0.370259,0.370259,0.370261,0.37027,0.370268,0.370277,0.370259,0.370259,0.370268,0.370277,0.370498,0.370368,0.370259,0.370259,0.370498,0.370368,0.370259,0.370259,0.370259,0.370259,0.370259,0.370259,,,,,,,0.370261,0.37027,0.370268,0.370277,0.370498,0.370368,0.370259,0.370259,0.370259,0.370259,0.144402,0.144404,0.144404,0.144406,0.144473,0.144434,0.144401,0.144401,0.075903,0.075903,29.999886,29.999166,29.999337,29.998589,29.980705,29.991208,30,30,30,30,,,,,,,,,,,2580,2580,0.370259,0.370259,0.370259,0.370259,0.370259,0.370259,0.370259,0.370259,0.144401,0.144401,30,30,, +31020,0,0.30876,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,6.616289,0.15,4,1.235041,1.235041,1.235041,1.235041,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,,,,,,,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,0.426089,0.426089,0.426089,0.426089,0.426089,0.426089,0.426089,0.426089,0.21922,0.21922,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,1.235041,0.426089,0.426089,15,15,, +20775,0,0.569383,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,3.418,3.987,0,12.201069,4.5,4.5,0.899026,0.899026,0.899026,0.899026,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.902654,0.904541,0.899026,0.899026,0.902654,0.904541,0.901158,0.901279,0.899026,0.899026,0.901158,0.901279,0.910807,0.913515,0.899026,0.899026,0.910807,0.913515,0.899026,0.899026,0.899026,0.899026,0.899026,0.899026,,,,,,,0.902654,0.904541,0.901158,0.901279,0.910807,0.913515,0.899026,0.899026,0.899026,0.899026,0.373285,0.373851,0.372836,0.372873,0.375731,0.376543,0.372197,0.372197,0.197486,0.197486,37.847284,37.768307,37.910105,37.905021,37.508481,37.39731,38,38,38,38,,,,,,,,,,,3406,3406,0.899026,0.899026,0.899026,0.899026,0.899026,0.899026,0.899026,0.899026,0.372197,0.372197,38,38,, +30332,0,0.382315,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,8.192468,0.15,4,1.529261,1.529261,1.529261,1.529261,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,,,,,,,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,0.527595,0.527595,0.527595,0.527595,0.527595,0.527595,0.527595,0.527595,0.271444,0.271444,14.999998,15,15,15,14.999999,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,1.529261,0.527595,0.527595,15,15,, +8941,0,0.528178,1,1,0,2,5,,5,6,Front,St,1223803,22.212,22.74,0,11.318103,3.7,5,1.056356,1.056356,1.056356,1.056356,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,,,,,,,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,0.411979,0.411979,0.411979,0.411979,0.411979,0.411979,0.411979,0.411979,0.216553,0.216553,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,1.056356,0.411979,0.411979,30,30,, +8750,0,0.065011,1,1,0,2,5,,5,6,Front,St,1223803,22.74,22.805,0,1.393084,3.7,5,0.130021,0.130021,0.130021,0.130021,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,,,,,,,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.050708,0.050708,0.050708,0.050708,0.050708,0.050708,0.050708,0.050708,0.026654,0.026654,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.130021,0.050708,0.050708,30,30,, +31045,0,0.357755,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,7.666174,0.15,4,1.431019,1.431019,1.431019,1.431019,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,,,,,,,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,0.493702,0.493702,0.493702,0.493702,0.493702,0.493702,0.493702,0.493702,0.254006,0.254006,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,1.431019,0.493702,0.493702,15,15,, +31047,0,0.518023,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.100484,0.15,4,2.07209,2.07209,2.07209,2.07209,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,,,,,,,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,0.714871,0.714871,0.714871,0.714871,0.714871,0.714871,0.714871,0.714871,0.367796,0.367796,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,2.07209,0.714871,0.714871,15,15,, +31046,0,0.122029,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,2.614898,0.15,4,0.488114,0.488114,0.488114,0.488114,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,,,,,,,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.168399,0.168399,0.168399,0.168399,0.168399,0.168399,0.168399,0.168399,0.08664,0.08664,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.488114,0.168399,0.168399,15,15,, +8911,0,0.075443,2,2,0,2,5,,5,6,Elm,Ave,1226001,23.224,23.299,0,1.616639,3.7,5,0.150886,0.150886,0.150886,0.150886,30,30,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,,,,,,,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.058846,0.058846,0.058846,0.058846,0.058846,0.058846,0.058846,0.058846,0.030932,0.030932,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,5160,5160,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.150886,0.058846,0.058846,30,30,, +8695,1,0.378968,1,0,0,1,1,ROF,4,6,N I 75/Dixie,RAMP,1225605,0,0.379,0,,2.24,5,0.568452,,0.568452,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.568723,,0.568452,,0.568723,,0.568512,,0.568452,,0.568512,,0.56882,,0.568452,,0.56882,,0.568452,,0.568452,,0.568452,,,,,,,,0.568723,,0.568512,,0.56882,,0.568452,,0.568452,,0.238831,,0.238768,,0.23886,,0.23875,,0.126954,,39.980978,,39.995808,,39.974157,,40,,40,,,,,,,,,,,,5160,,0.568452,,0.568452,,0.568452,,0.568452,,0.23875,,40,,, +9426,1,0.705532,3,0,0,1,1,,5,6,N I 75,,1226910,14.924,15.63,0,,1.02,7,0.604742,,0.604742,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.606217,,0.604742,,0.606217,,0.604877,,0.604742,,0.604877,,0.605019,,0.604742,,0.605019,,0.604742,,0.604742,,0.604742,,,,,,,,0.606217,,0.604877,,0.605019,,0.604742,,0.604742,,0.308861,,0.308459,,0.308501,,0.308418,,0.16832,,69.829626,,69.984331,,69.967967,,70,,70,,,,,,,,,,,,22704,,0.604742,,0.604742,,0.604742,,0.604742,,0.308418,,70,,, +20471,0,0.553081,1,1,1,2,4,,5,6,Dixie,Hwy,4301655,2.172,2.725,0,11.851733,3,4,0.829621,0.829621,0.829621,0.829621,40,40,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.852728,0.944093,0.829621,0.829621,0.852728,0.944093,0.863187,0.863885,0.829621,0.829621,0.863187,0.863885,0.979124,0.915068,0.829621,0.829621,0.979124,0.915068,0.829621,0.829621,0.829621,0.829621,0.829621,0.829621,,,,,,,0.852728,0.944093,0.863187,0.863885,0.979124,0.915068,0.829621,0.829621,0.829621,0.829621,0.355373,0.382782,0.358511,0.35872,0.393292,0.374075,0.348441,0.348441,0.185282,0.185282,38.916113,35.149991,38.444587,38.413507,33.892373,36.264896,40,40,40,40,,,,,,,,,,,3406,3406,0.829621,0.829621,0.829621,0.829621,0.829621,0.829621,0.829621,0.829621,0.348441,0.348441,40,40,, +31014,0,0.501481,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.746015,0.15,4,2.005923,2.005923,2.005923,2.005923,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.005923,2.005924,2.005923,2.005923,2.005923,2.005924,2.005923,2.005923,2.005923,2.005923,2.005923,2.005923,2.005924,2.005923,2.005923,2.005923,2.005924,2.005923,2.005923,2.005923,2.005923,2.005923,2.005923,2.005923,,,,,,,2.005923,2.005924,2.005923,2.005923,2.005924,2.005923,2.005923,2.005923,2.005923,2.005923,0.692043,0.692044,0.692043,0.692043,0.692044,0.692044,0.692043,0.692043,0.356051,0.356051,14.999999,14.999993,14.999998,14.999998,14.99999,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,2.005923,2.005923,2.005923,2.005923,2.005923,2.005923,2.005923,2.005923,0.692043,0.692043,15,15,, +20707,0,0.33415,1,1,1,2,4,,5,6,Dixie,Hwy,4301655,1.838,2.172,0,7.160363,3,4,0.501225,0.501225,0.501225,0.501225,40,40,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.740214,0.705537,0.501225,0.501225,0.740214,0.705537,0.606821,0.603775,0.501225,0.501225,0.606821,0.603775,0.873284,0.935561,0.501225,0.501225,0.873284,0.935561,0.501225,0.501225,0.501225,0.501225,0.501225,0.501225,,,,,,,0.740214,0.705537,0.606821,0.603775,0.873284,0.935561,0.501225,0.501225,0.501225,0.501225,0.282211,0.271808,0.242193,0.241279,0.322132,0.340815,0.210515,0.210515,0.11194,0.11194,27.085431,28.416663,33.039415,33.20612,22.958183,21.429944,40,40,40,40,,,,,,,,,,,3406,3406,0.501225,0.501225,0.501225,0.501225,0.501225,0.501225,0.501225,0.501225,0.210515,0.210515,40,40,, +8506,1,0.366338,1,0,0,1,1,RON,4,6,Dixie/N I 75,RAMP,1225606,0,0.366,0,,1.09,4,0.48845,,0.48845,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.519719,,0.48845,,0.519719,,0.488955,,0.48845,,0.488955,,0.492271,,0.48845,,0.492271,,0.48845,,0.48845,,0.48845,,,,,,,,0.519719,,0.488955,,0.492271,,0.48845,,0.48845,,0.221856,,0.212627,,0.213622,,0.212476,,0.113565,,42.292596,,44.953547,,44.650704,,45,,45,,,,,,,,,,,,5160,,0.48845,,0.48845,,0.48845,,0.48845,,0.212476,,45,,, +20085,0,0.600578,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,2.817,3.418,0,12.869519,4.5,4.5,0.94828,0.94828,0.94828,0.94828,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.983922,1.204513,0.94828,0.94828,0.983922,1.204513,1.001839,1.010156,0.94828,0.94828,1.001839,1.010156,1.372434,1.167306,0.94828,0.94828,1.372434,1.167306,0.94828,0.94828,0.94828,0.94828,0.94828,0.94828,,,,,,,0.983922,1.204513,1.001839,1.010156,1.372434,1.167306,0.94828,0.94828,0.94828,0.94828,0.403281,0.469458,0.408656,0.411151,0.519834,0.458296,0.392588,0.392588,0.208306,0.208306,36.623481,29.916372,35.968506,35.67235,26.256014,30.869932,38,38,38,38,,,,,,,,,,,3406,3406,0.94828,0.94828,0.94828,0.94828,0.94828,0.94828,0.94828,0.94828,0.392588,0.392588,38,38,, +20282,0,0.092556,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,2.725,2.817,0,1.983337,4.5,4.5,0.146141,0.146141,0.146141,0.146141,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.151347,0.180042,0.146141,0.146141,0.151347,0.180042,0.153546,0.154784,0.146141,0.146141,0.153546,0.154784,0.205347,0.175604,0.146141,0.146141,0.205347,0.175604,0.146141,0.146141,0.146141,0.146141,0.146141,0.146141,,,,,,,0.151347,0.180042,0.153546,0.154784,0.205347,0.175604,0.146141,0.146141,0.146141,0.146141,0.062064,0.070673,0.062724,0.063095,0.078264,0.069341,0.060502,0.060502,0.032102,0.032102,36.692681,30.844735,36.167288,35.877999,27.043721,31.624301,38,38,38,38,,,,,,,,,,,3406,3406,0.146141,0.146141,0.146141,0.146141,0.146141,0.146141,0.146141,0.146141,0.060502,0.060502,38,38,, +40091,-1,0.027892,0,1,0,2,7,,2,5,Observatory,St,4606155,0,0.028,0,0.597689,8.5,4.5,,0.083676,,0.083676,,20,,5000,,1135,,2500,,1613,,1720,,1718,,0.290118,,0.083676,,0.290118,,0.084597,,0.083676,,0.084597,,0.085297,,0.083676,,0.085297,,0.083676,,0.083676,,0.083676,,,,,,,,0.290118,,0.084597,,0.085297,,0.083676,,0.083676,,0.092056,,0.0304,,0.03061,,0.030124,,0.01562,,5.768436,,19.782405,,19.620096,,20,,20,,,,,,,,,,,,1720,,0.083676,,0.083676,,0.083676,,0.083676,,0.030124,,20,, +3970,0,1.150552,1,1,0,2,4,,4,4,River,Rd,800901,0.885,2.035,0,24.654681,4.5,4.5,1.816661,1.816661,1.816661,1.816661,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.819921,2.078727,1.816661,1.816661,1.819921,2.078727,1.823829,1.819782,1.816661,1.816661,1.823829,1.819782,2.064676,1.824662,1.816661,1.816661,2.064676,1.824662,1.816661,1.816661,1.816661,1.816661,1.816661,1.816661,,,,,,,1.819921,2.078727,1.823829,1.819782,2.064676,1.824662,1.816661,1.816661,1.816661,1.816661,0.753076,0.830718,0.754248,0.753034,0.826502,0.754498,0.752098,0.752098,0.39906,0.39906,37.931931,33.209314,37.850645,37.934832,33.435324,37.833357,38,38,38,38,,,,,,,,,,,3096,3096,1.816661,1.816661,1.816661,1.816661,1.816661,1.816661,1.816661,1.816661,0.752098,0.752098,38,38,, +4241,1,1.676085,3,0,0,1,1,,4,4,E I 94,,798501,15.682,17.358,0,,0.8,7.5,1.436644,,1.436644,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.43675,,1.436644,,1.43675,,1.4368,,1.436644,,1.4368,,1.701597,,1.436644,,1.701597,,1.436644,,1.436644,,1.436644,,,,,,,,1.43675,,1.4368,,1.701597,,1.436644,,1.436644,,0.73272,,0.732735,,0.812174,,0.732688,,0.399866,,69.994818,,69.992425,,59.100403,,70,,70,,,,,,,,,,,,22704,,1.436644,,1.436644,,1.436644,,1.436644,,0.732688,,70,,, +4535,1,0.63625,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,1.329,1.965,0,13.633933,3.7,5,0.848334,,0.848334,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.306849,,0.848334,,1.306849,,0.889321,,0.848334,,0.889321,,0.909145,,0.848334,,0.909145,,0.848334,,0.848334,,0.848334,,,,,,,,1.306849,,0.889321,,0.909145,,0.848334,,0.848334,,0.50658,,0.381321,,0.387269,,0.369025,,0.197238,,29.211498,,42.925998,,41.990009,,45,,45,,,,,,,,,,,,7568,,0.848334,,0.848334,,0.848334,,0.848334,,0.369025,,45,,, +4986,-1,1.637718,0,3,0,1,1,,4,4,W I 94,,798502,15.848,17.486,0,,0.8,7.5,,1.403758,,1.403758,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.545032,,1.403758,,2.545032,,1.40479,,1.403758,,1.40479,,1.406756,,1.403758,,1.406756,,1.403758,,1.403758,,1.403758,,,,,,,,2.545032,,1.40479,,1.406756,,1.403758,,1.403758,,1.058299,,0.716226,,0.716816,,0.715917,,0.390713,,38.609765,,69.948608,,69.85081,,70,,70,,,,,,,,,,,,22704,,1.403758,,1.403758,,1.403758,,1.403758,,0.715917,,70,, +5496,0,2.70427,1,1,0,2,5,,5,4,School Section,Rd,822609,0,2.704,0,57.948635,3.7,5,5.408539,5.408539,5.408539,5.408539,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.40854,5.460203,5.408539,5.408539,5.40854,5.460203,5.408542,5.408543,5.408539,5.408539,5.408542,5.408543,5.427054,5.408826,5.408539,5.408539,5.427054,5.408826,5.408539,5.408539,5.408539,5.408539,5.408539,5.408539,,,,,,,5.40854,5.460203,5.408542,5.408543,5.427054,5.408826,5.408539,5.408539,5.408539,5.408539,2.109331,2.12483,2.109331,2.109331,2.114885,2.109416,2.10933,2.10933,1.108751,1.108751,29.999994,29.716142,29.999985,29.999979,29.897652,29.998412,30,30,30,30,,,,,,,,,,,2580,2580,5.408539,5.408539,5.408539,5.408539,5.408539,5.408539,5.408539,5.408539,2.10933,2.10933,30,30,, +5526,0,1.563449,1,1,0,2,5,,5,4,New Haven,Rd,814905,5.569,7.133,0,33.502484,3.7,5,3.126899,3.126899,3.126899,3.126899,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.184836,3.128201,3.126899,3.126899,3.184836,3.128201,3.127199,3.127282,3.126899,3.126899,3.127199,3.127282,3.133669,3.180303,3.126899,3.126899,3.133669,3.180303,3.126899,3.126899,3.126899,3.126899,3.126899,3.126899,,,,,,,3.184836,3.128201,3.127199,3.127282,3.133669,3.180303,3.126899,3.126899,3.126899,3.126899,1.236872,1.219881,1.219581,1.219606,1.221522,1.235512,1.21949,1.21949,0.641014,0.641014,29.454253,29.987505,29.997118,29.996319,29.935179,29.496232,30,30,30,30,,,,,,,,,,,2580,2580,3.126899,3.126899,3.126899,3.126899,3.126899,3.126899,3.126899,3.126899,1.21949,1.21949,30,30,, +5559,1,0.822,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,12.482,13.304,0,17.61429,3.7,5,1.096,,1.096,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.105389,,1.096,,1.105389,,1.121377,,1.096,,1.121377,,1.557161,,1.096,,1.557161,,1.096,,1.096,,1.096,,,,,,,,1.105389,,1.121377,,1.557161,,1.096,,1.096,,0.479577,,0.484373,,0.615108,,0.47676,,0.25482,,44.617771,,43.981647,,31.67304,,45,,45,,,,,,,,,,,,7568,,1.096,,1.096,,1.096,,1.096,,0.47676,,45,,, +5621,0,1.414017,1,1,0,2,5,,5,4,Ridge,St,817602,5.61,7.024,0,30.300361,3.7,5,2.828034,2.828034,2.828034,2.828034,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.828041,2.828108,2.828034,2.828034,2.828041,2.828108,2.828035,2.828036,2.828034,2.828034,2.828035,2.828036,2.828189,2.828047,2.828034,2.828034,2.828189,2.828047,2.828034,2.828034,2.828034,2.828034,2.828034,2.828034,,,,,,,2.828041,2.828108,2.828035,2.828036,2.828189,2.828047,2.828034,2.828034,2.828034,2.828034,1.102935,1.102955,1.102934,1.102934,1.10298,1.102937,1.102933,1.102933,0.579747,0.579747,29.999926,29.999217,29.999985,29.99998,29.998352,29.999857,30,30,30,30,,,,,,,,,,,2580,2580,2.828034,2.828034,2.828034,2.828034,2.828034,2.828034,2.828034,2.828034,1.102933,1.102933,30,30,, +6072,0,0.058066,2,2,1,2,3,,4,4,Gratiot,Ave,832010,5.052,5.11,0,1.244268,3.7,5,0.087099,0.087099,0.087099,0.087099,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.087503,0.111254,0.087099,0.087099,0.087503,0.111254,0.087296,0.087135,0.087099,0.087099,0.087296,0.087135,0.102803,0.087766,0.087099,0.087099,0.102803,0.087766,0.087099,0.087099,0.087099,0.087099,0.087099,0.087099,,,,,,,0.087503,0.111254,0.087296,0.087135,0.102803,0.087766,0.087099,0.087099,0.087099,0.087099,0.036703,0.043828,0.036641,0.036592,0.041293,0.036782,0.036581,0.036581,0.019452,0.019452,39.81541,31.315232,39.909764,39.983403,33.889642,39.696023,40,40,40,40,,,,,,,,,,,7946,7946,0.087099,0.087099,0.087099,0.087099,0.087099,0.087099,0.087099,0.087099,0.036581,0.036581,40,40,, +6238,0,0.270366,2,2,1,2,3,,4,4,23 Mile,Rd,807106,13.191,13.461,0,5.793548,3.7,5,0.405548,0.405548,0.405548,0.405548,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.439654,0.495794,0.405548,0.405548,0.439654,0.495794,0.409886,0.410207,0.405548,0.405548,0.409886,0.410207,0.593239,0.448697,0.405548,0.405548,0.593239,0.448697,0.405548,0.405548,0.405548,0.405548,0.405548,0.405548,,,,,,,0.439654,0.495794,0.409886,0.410207,0.593239,0.448697,0.405548,0.405548,0.405548,0.405548,0.180562,0.197404,0.171632,0.171728,0.226637,0.183275,0.17033,0.17033,0.090572,0.090572,36.897027,32.719085,39.57668,39.54573,27.344698,36.153428,40,40,40,40,,,,,,,,,,,7946,7946,0.405548,0.405548,0.405548,0.405548,0.405548,0.405548,0.405548,0.405548,0.17033,0.17033,40,40,, +6344,-1,0.488525,0,2,0,2,4,DIV,4,4,William P Rosso,Hwy,807801,12.534,13.022,0,10.468399,4.5,4.5,,0.681663,,0.681663,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.71442,,0.681663,,0.71442,,0.682795,,0.681663,,0.682795,,0.685319,,0.681663,,0.685319,,0.681663,,0.681663,,0.681663,,,,,,,,0.71442,,0.682795,,0.685319,,0.681663,,0.681663,,0.302261,,0.292773,,0.29353,,0.292433,,0.155987,,41.028402,,42.928736,,42.770643,,43,,43,,,,,,,,,,,,6880,,0.681663,,0.681663,,0.681663,,0.681663,,0.292433,,43,, +6473,0,1.597652,1,1,0,2,5,,5,7,Bordman,Rd,824010,3.994,5.591,0,34.235402,3.7,5,3.195304,3.195304,3.195304,3.195304,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,,,,,,,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,1.246169,1.246169,1.246169,1.246169,1.246169,1.246169,1.246169,1.246169,0.655037,0.655037,29.999999,30,30,30,29.999999,29.999999,30,30,30,30,,,,,,,,,,,2580,2580,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,3.195304,1.246169,1.246169,30,30,, +6567,0,1.699491,1,1,0,2,4,,5,4,26 Mile,Rd,816702,11.571,13.271,0,36.417665,3,4,2.549237,2.549237,2.549237,2.549237,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.629258,3.257644,2.549237,2.549237,2.629258,3.257644,2.563036,2.568419,2.549237,2.549237,2.563036,2.568419,3.08249,2.678289,2.549237,2.549237,3.08249,2.678289,2.549237,2.549237,2.549237,2.549237,2.549237,2.549237,,,,,,,2.629258,3.257644,2.563036,2.568419,3.08249,2.678289,2.549237,2.549237,2.549237,2.549237,1.094686,1.283201,1.074819,1.076434,1.230655,1.109395,1.070679,1.070679,0.569329,0.569329,38.782599,31.301601,39.784645,39.701258,33.080226,38.072616,40,40,40,40,,,,,,,,,,,3096,3096,2.549237,2.549237,2.549237,2.549237,2.549237,2.549237,2.549237,2.549237,1.070679,1.070679,40,40,, +6785,0,2.430794,1,1,0,2,4,,5,4,Division,Rd,815804,11.061,13.492,0,52.088443,3,4,3.646191,3.646191,3.646191,3.646191,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.671092,4.410527,3.646191,3.646191,3.671092,4.410527,3.657958,3.662573,3.646191,3.646191,3.657958,3.662573,4.098192,3.681323,3.646191,3.646191,4.098192,3.681323,3.646191,3.646191,3.646191,3.646191,3.646191,3.646191,,,,,,,3.671092,4.410527,3.657958,3.662573,4.098192,3.681323,3.646191,3.646191,3.646191,3.646191,1.538871,1.760701,1.53493,1.536315,1.667,1.54194,1.5314,1.5314,0.814316,0.814316,39.728677,33.068076,39.871332,39.821093,35.58829,39.618267,40,40,40,40,,,,,,,,,,,3096,3096,3.646191,3.646191,3.646191,3.646191,3.646191,3.646191,3.646191,3.646191,1.5314,1.5314,40,40,, +6805,0,1.452606,1,1,0,2,4,,4,4,River,Rd,831807,1.525,2.977,0,31.127281,4.5,4.5,2.293589,2.293589,2.293589,2.293589,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.294336,2.296657,2.293589,2.293589,2.294336,2.296657,2.293595,2.293591,2.293589,2.293589,2.293595,2.293591,2.30071,2.296889,2.293589,2.293589,2.30071,2.296889,2.293589,2.293589,2.293589,2.293589,2.293589,2.293589,,,,,,,2.294336,2.296657,2.293595,2.293591,2.30071,2.296889,2.293589,2.293589,2.293589,2.293589,0.94977,0.950466,0.949548,0.949546,0.951682,0.950536,0.949546,0.949546,0.503825,0.503825,37.987634,37.949243,37.999901,37.999971,37.882392,37.945411,38,38,38,38,,,,,,,,,,,3096,3096,2.293589,2.293589,2.293589,2.293589,2.293589,2.293589,2.293589,2.293589,0.949546,0.949546,38,38,, +6932,0,0.092904,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.217,10.31,0,1.990791,4.5,4.5,0.14669,0.14669,0.14669,0.14669,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.148489,0.188091,0.14669,0.14669,0.148489,0.188091,0.14857,0.149065,0.14669,0.14669,0.14857,0.149065,0.199296,0.153741,0.14669,0.14669,0.199296,0.153741,0.14669,0.14669,0.14669,0.14669,0.14669,0.14669,,,,,,,0.148489,0.188091,0.14857,0.149065,0.199296,0.153741,0.14669,0.14669,0.14669,0.14669,0.061269,0.07315,0.061294,0.061442,0.076512,0.062845,0.06073,0.06073,0.032223,0.032223,37.539589,29.635783,37.519005,37.394602,27.969458,36.257197,38,38,38,38,,,,,,,,,,,6502,6502,0.14669,0.14669,0.14669,0.14669,0.14669,0.14669,0.14669,0.14669,0.06073,0.06073,38,38,, +7376,-1,2.519588,0,2,0,1,1,,5,7,W I 69,,962902,0,2.519,0,,1.02,7,,2.159647,,2.159647,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.159648,,2.159647,,2.159648,,2.159647,,2.159647,,2.159647,,2.159648,,2.159647,,2.159648,,2.159647,,2.159647,,2.159647,,,,,,,,2.159648,,2.159647,,2.159648,,2.159647,,2.159647,,1.10142,,1.10142,,1.10142,,1.10142,,0.601102,,69.999968,,69.999991,,69.999979,,70,,70,,,,,,,,,,,,15136,,2.159647,,2.159647,,2.159647,,2.159647,,1.10142,,70,, +7455,0,0.954554,1,1,0,2,5,,5,7,Lapeer,Rd,962901,12.652,13.606,0,20.454719,3.7,5,1.909107,1.909107,1.909107,1.909107,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.909203,1.909107,1.909107,1.909107,1.909203,1.909107,1.909115,1.909109,1.909107,1.909107,1.909115,1.909109,1.909128,1.909165,1.909107,1.909107,1.909128,1.909165,1.909107,1.909107,1.909107,1.909107,1.909107,1.909107,,,,,,,1.909203,1.909107,1.909115,1.909109,1.909128,1.909165,1.909107,1.909107,1.909107,1.909107,0.74458,0.744552,0.744554,0.744552,0.744558,0.744569,0.744552,0.744552,0.391367,0.391367,29.998497,30,29.999872,29.999976,29.999668,29.999096,30,30,30,30,,,,,,,,,,,2580,2580,1.909107,1.909107,1.909107,1.909107,1.909107,1.909107,1.909107,1.909107,0.744552,0.744552,30,30,, +7462,0,0.580709,1,1,0,2,5,,5,7,Brandon,Rd,962901,5.888,6.468,0,12.443754,3.7,5,1.161417,1.161417,1.161417,1.161417,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.187713,1.161431,1.161417,1.161417,1.187713,1.161431,1.161554,1.161461,1.161417,1.161417,1.161554,1.161461,1.161581,1.177388,1.161417,1.161417,1.161581,1.177388,1.161417,1.161417,1.161417,1.161417,1.161417,1.161417,,,,,,,1.187713,1.161431,1.161554,1.161461,1.161581,1.177388,1.161417,1.161417,1.161417,1.161417,0.460842,0.452957,0.452994,0.452966,0.453002,0.457744,0.452953,0.452953,0.23809,0.23809,29.335789,29.999631,29.99647,29.998864,29.99577,29.593053,30,30,30,30,,,,,,,,,,,2580,2580,1.161417,1.161417,1.161417,1.161417,1.161417,1.161417,1.161417,1.161417,0.452953,0.452953,30,30,, +7509,1,2.560774,2,0,0,1,1,,5,7,E I 69,,962706,0,2.56,0,,1.02,7,2.194949,,2.194949,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.19495,,2.194949,,2.19495,,2.194949,,2.194949,,2.194949,,2.19495,,2.194949,,2.19495,,2.194949,,2.194949,,2.194949,,,,,,,,2.19495,,2.194949,,2.19495,,2.194949,,2.194949,,1.119424,,1.119424,,1.119424,,1.119424,,0.610927,,69.999972,,69.999991,,69.999977,,70,,70,,,,,,,,,,,,15136,,2.194949,,2.194949,,2.194949,,2.194949,,1.119424,,70,,, +7518,0,0.334945,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,0.689,1.024,0,7.177384,5,5,0.574191,0.574191,0.574191,0.574191,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.574297,0.575289,0.574191,0.574191,0.574297,0.575289,0.574474,0.57462,0.574191,0.574191,0.574474,0.57462,0.575496,0.57482,0.574191,0.574191,0.575496,0.57482,0.574191,0.574191,0.574191,0.574191,0.574191,0.574191,,,,,,,0.574297,0.575289,0.574474,0.57462,0.575496,0.57482,0.574191,0.574191,0.574191,0.574191,0.232579,0.232877,0.232632,0.232676,0.232939,0.232736,0.232547,0.232547,0.122973,0.122973,34.993515,34.933177,34.982741,34.973854,34.92064,34.961713,35,35,35,35,,,,,,,,,,,7946,7946,0.574191,0.574191,0.574191,0.574191,0.574191,0.574191,0.574191,0.574191,0.232547,0.232547,35,35,, +7581,-1,0.921036,0,2,0,1,1,,5,7,W I 69,,962902,7.053,7.974,0,,1.02,7,,0.789459,,0.789459,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.789459,,0.789459,,0.789459,,0.789459,,0.789459,,0.789459,,0.789459,,0.789459,,0.789459,,0.789459,,0.789459,,0.789459,,,,,,,,0.789459,,0.789459,,0.789459,,0.789459,,0.789459,,0.402624,,0.402624,,0.402624,,0.402624,,0.219733,,69.999998,,69.999999,,69.999999,,70,,70,,,,,,,,,,,,15136,,0.789459,,0.789459,,0.789459,,0.789459,,0.402624,,70,, +7636,0,0.883724,1,1,0,2,5,,5,7,Lapeer,Rd,962901,10.079,10.963,0,18.936936,3.7,5,1.767447,1.767447,1.767447,1.767447,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,,,,,,,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,0.689304,0.689304,0.689304,0.689304,0.689304,0.689304,0.689304,0.689304,0.362327,0.362327,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,1.767447,0.689304,0.689304,30,30,, +40423,1,0.317341,1,0,0,1,1,ROF,3,7,E I 94/Water,RAMP,4506254,0.152,0.469,0,,2.24,5,0.544012,,0.544012,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.544031,,0.544012,,0.544031,,0.544013,,0.544012,,0.544013,,0.544028,,0.544012,,0.544028,,0.544012,,0.544012,,0.544012,,,,,,,,0.544031,,0.544013,,0.544028,,0.544012,,0.544012,,0.22033,,0.220325,,0.22033,,0.220325,,0.116509,,34.998829,,34.99995,,34.999015,,35,,35,,,,,,,,,,,,5074,,0.544012,,0.544012,,0.544012,,0.544012,,0.220325,,35,,, +7670,1,0.881159,2,0,0,1,1,,5,7,E I 69,,962706,7.076,7.957,0,,1.02,7,0.755279,,0.755279,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.755279,,0.755279,,0.755279,,0.755279,,0.755279,,0.755279,,0.755279,,0.755279,,0.755279,,0.755279,,0.755279,,0.755279,,,,,,,,0.755279,,0.755279,,0.755279,,0.755279,,0.755279,,0.385192,,0.385192,,0.385192,,0.385192,,0.210219,,69.999996,,69.999999,,69.999999,,70,,70,,,,,,,,,,,,15136,,0.755279,,0.755279,,0.755279,,0.755279,,0.385192,,70,,, +7695,0,0.238855,2,2,0,2,4,,3,7,10th,Ave,963204,2.467,2.705,0,5.118328,6,4.5,0.434282,0.434282,0.434282,0.434282,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.43703,0.434794,0.434282,0.434282,0.43703,0.434794,0.436707,0.434679,0.434282,0.434282,0.436707,0.434679,0.439334,0.435679,0.434282,0.434282,0.439334,0.435679,0.434282,0.434282,0.434282,0.434282,0.434282,0.434282,,,,,,,0.43703,0.434794,0.436707,0.434679,0.439334,0.435679,0.434282,0.434282,0.434282,0.434282,0.174103,0.173432,0.174006,0.173398,0.174794,0.173698,0.173279,0.173279,0.091416,0.091416,32.792549,32.961197,32.816796,32.969893,32.620519,32.89419,33,33,33,33,,,,,,,,,,,5160,5160,0.434282,0.434282,0.434282,0.434282,0.434282,0.434282,0.434282,0.434282,0.173279,0.173279,33,33,, +7708,0,0.503458,1,1,0,2,4,,5,7,Main,St,961905,5.163,5.667,0,10.788389,3,4,0.755187,0.755187,0.755187,0.755187,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.763595,0.929805,0.755187,0.755187,0.763595,0.929805,0.759065,0.760323,0.755187,0.755187,0.759065,0.760323,0.896755,0.772361,0.755187,0.755187,0.896755,0.772361,0.755187,0.755187,0.755187,0.755187,0.755187,0.755187,,,,,,,0.763595,0.929805,0.759065,0.760323,0.896755,0.772361,0.755187,0.755187,0.755187,0.755187,0.319701,0.369564,0.318342,0.318719,0.359649,0.322331,0.317179,0.317179,0.168658,0.168658,39.559551,32.487991,39.795645,39.729827,33.685321,39.110596,40,40,40,40,,,,,,,,,,,3096,3096,0.755187,0.755187,0.755187,0.755187,0.755187,0.755187,0.755187,0.755187,0.317179,0.317179,40,40,, +7722,0,0.974773,1,1,0,2,5,,5,7,Bryce,Rd,962608,6.034,7.009,0,20.887982,3.7,5,1.949545,1.949545,1.949545,1.949545,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.949545,1.949766,1.949545,1.949545,1.949545,1.949766,1.949545,1.949545,1.949545,1.949545,1.949545,1.949545,1.949638,1.949547,1.949545,1.949545,1.949638,1.949547,1.949545,1.949545,1.949545,1.949545,1.949545,1.949545,,,,,,,1.949545,1.949766,1.949545,1.949545,1.949638,1.949547,1.949545,1.949545,1.949545,1.949545,0.760323,0.760389,0.760323,0.760323,0.76035,0.760323,0.760323,0.760323,0.399657,0.399657,29.999999,29.996607,29.999993,29.999993,29.998576,29.999962,30,30,30,30,,,,,,,,,,,2580,2580,1.949545,1.949545,1.949545,1.949545,1.949545,1.949545,1.949545,1.949545,0.760323,0.760323,30,30,, +7834,0,1.028804,1,1,0,2,5,,4,7,Michigan,Rd,963906,5.836,6.865,0,22.045796,5.8,4.5,2.286231,2.286231,2.286231,2.286231,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,,,,,,,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,0.871054,0.871054,0.871054,0.871054,0.871054,0.871054,0.871054,0.871054,0.456103,0.456103,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,2.286231,0.871054,0.871054,27,27,, +40420,1,0.262911,1,0,0,1,1,RON,3,7,Lapeer Connector/Water,RAMP,4506256,0,0.263,0,,1.09,4,0.394366,,0.394366,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.394529,,0.394366,,0.394529,,0.394909,,0.394366,,0.394909,,0.396421,,0.394366,,0.396421,,0.394366,,0.394366,,0.394366,,,,,,,,0.394529,,0.394909,,0.396421,,0.394366,,0.394366,,0.165683,,0.165797,,0.16625,,0.165634,,0.088075,,39.983559,,39.945047,,39.792728,,40,,40,,,,,,,,,,,,5074,,0.394366,,0.394366,,0.394366,,0.394366,,0.165634,,40,,, +40432,1,0.433257,2,0,0,1,1,FCD,4,7,E I 94/Pine Grove,RAMP,4506262,0,0.433,0,,0.8,7.5,0.399929,,0.399929,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.399929,,0.399929,,0.399929,,0.399929,,0.399929,,0.399929,,0.39993,,0.399929,,0.39993,,0.399929,,0.399929,,0.399929,,,,,,,,0.399929,,0.399929,,0.39993,,0.399929,,0.399929,,0.197965,,0.197965,,0.197965,,0.197965,,0.107648,,64.999975,,64.999999,,64.999934,,65,,65,,,,,,,,,,,,14448,,0.399929,,0.399929,,0.399929,,0.399929,,0.197965,,65,,, +40425,-1,0.866634,0,2,0,1,1,,4,7,W I 94,,967804,23.592,24.458,0,,0.8,7.5,,0.74283,,0.74283,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.742842,,0.74283,,0.742842,,0.74283,,0.74283,,0.74283,,0.742831,,0.74283,,0.742831,,0.74283,,0.74283,,0.74283,,,,,,,,0.742842,,0.74283,,0.742831,,0.74283,,0.74283,,0.378847,,0.378843,,0.378844,,0.378843,,0.206754,,69.998839,,69.999957,,69.999824,,70,,70,,,,,,,,,,,,15136,,0.74283,,0.74283,,0.74283,,0.74283,,0.378843,,70,, +40428,-1,0.18804,0,1,0,1,2,,4,7,I 94/Lapeer Connector,,4506261,0.688,0.876,0,,0.8,7.5,,0.161177,,0.161177,,70,,22000,,4994,,11000,,7097,,7568,,7559,,0.161177,,0.161177,,0.161177,,0.161177,,0.161177,,0.161177,,0.161178,,0.161177,,0.161178,,0.161177,,0.161177,,0.161177,,,,,,,,0.161177,,0.161177,,0.161178,,0.161177,,0.161177,,0.0822,,0.0822,,0.0822,,0.0822,,0.044861,,69.999858,,69.999958,,69.99981,,70,,70,,,,,,,,,,,,7568,,0.161177,,0.161177,,0.161177,,0.161177,,0.0822,,70,, +40424,1,0.492362,3,0,0,1,1,,4,7,E I 94,,967606,23.562,24.055,0,,0.8,7.5,0.422024,,0.422024,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.422025,,0.422024,,0.422025,,0.422024,,0.422024,,0.422024,,0.422025,,0.422024,,0.422025,,0.422024,,0.422024,,0.422024,,,,,,,,0.422025,,0.422024,,0.422025,,0.422024,,0.422024,,0.215232,,0.215232,,0.215232,,0.215232,,0.117463,,69.999975,,69.999998,,69.999977,,70,,70,,,,,,,,,,,,22704,,0.422024,,0.422024,,0.422024,,0.422024,,0.215232,,70,,, +8417,0,0.318781,1,1,0,2,4,,3,7,Stone,St,964308,0.771,1.089,0,6.831026,6,4.5,0.579602,0.579602,0.579602,0.579602,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.580485,0.582209,0.579602,0.579602,0.580485,0.582209,0.583348,0.581413,0.579602,0.579602,0.583348,0.581413,0.606303,0.585306,0.579602,0.579602,0.606303,0.585306,0.579602,0.579602,0.579602,0.579602,0.579602,0.579602,,,,,,,0.580485,0.582209,0.583348,0.581413,0.606303,0.585306,0.579602,0.579602,0.579602,0.579602,0.231526,0.232043,0.232385,0.231804,0.239271,0.232972,0.231261,0.231261,0.122006,0.122006,32.949834,32.852236,32.788097,32.897246,31.546738,32.678404,33,33,33,33,,,,,,,,,,,2580,2580,0.579602,0.579602,0.579602,0.579602,0.579602,0.579602,0.579602,0.579602,0.231261,0.231261,33,33,, +8454,0,3.85105,1,1,0,2,5,,5,7,Yale,Rd,972601,3.308,7.158,0,82.522493,3.7,5,7.702099,7.702099,7.702099,7.702099,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,7.703075,7.702154,7.702099,7.702099,7.703075,7.702154,7.702135,7.702129,7.702099,7.702099,7.702135,7.702129,7.702244,7.702576,7.702099,7.702099,7.702244,7.702576,7.702099,7.702099,7.702099,7.702099,7.702099,7.702099,,,,,,,7.703075,7.702154,7.702135,7.702129,7.702244,7.702576,7.702099,7.702099,7.702099,7.702099,3.004111,3.003835,3.00383,3.003828,3.003862,3.003962,3.003819,3.003819,1.57893,1.57893,29.996202,29.999788,29.99986,29.999884,29.999436,29.998142,30,30,30,30,,,,,,,,,,,2580,2580,7.702099,7.702099,7.702099,7.702099,7.702099,7.702099,7.702099,7.702099,3.003819,3.003819,30,30,, +8488,0,2.005275,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,7.423,9.428,0,42.970169,5.55,5,6.015824,6.015824,6.015824,6.015824,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,,,,,,,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,2.165696,2.165696,2.165696,2.165696,2.165696,2.165696,2.165696,2.165696,1.122954,1.122954,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,6.015824,2.165696,2.165696,20,20,, +8533,0,1.462268,1,1,0,2,6,GRV,5,7,Foley,Rd,972503,4.46,5.922,0,31.334319,5.55,5,3.509444,3.509444,3.509444,3.509444,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,,,,,,,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,1.316041,1.316041,1.316041,1.316041,1.316041,1.316041,1.316041,1.316041,0.687266,0.687266,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,3.509444,1.316041,1.316041,25,25,, +8589,0,2.00652,1,1,0,2,6,GRV,5,7,Cribbins,Rd,976907,0,2.006,0,42.996853,5.55,5,4.815648,4.815648,4.815648,4.815648,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,,,,,,,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,1.805868,1.805868,1.805868,1.805868,1.805868,1.805868,1.805868,1.805868,0.943064,0.943064,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,4.815648,1.805868,1.805868,25,25,, +8624,0,0.720747,1,1,0,2,7,,5,7,Atkins,Rd,970404,0,0.721,0,15.444589,5.8,6,1.729794,1.729794,1.729794,1.729794,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.729794,1.729794,1.729794,1.729794,1.729794,1.729794,1.729794,1.729794,1.729794,1.729794,1.729794,1.729794,1.729797,1.729795,1.729794,1.729794,1.729797,1.729795,1.729794,1.729794,1.729794,1.729794,1.729794,1.729794,,,,,,,1.729794,1.729794,1.729794,1.729794,1.729797,1.729795,1.729794,1.729794,1.729794,1.729794,0.648673,0.648673,0.648673,0.648673,0.648674,0.648673,0.648673,0.648673,0.338751,0.338751,24.999998,24.999996,24.999994,24.999997,24.99995,24.99999,25,25,25,25,,,,,,,,,,,2064,2064,1.729794,1.729794,1.729794,1.729794,1.729794,1.729794,1.729794,1.729794,0.648673,0.648673,25,25,, +8797,0,0.257013,2,2,0,2,4,,5,7,Wadhams,Rd,969901,15.082,15.339,0,5.507417,3,4,0.385519,0.385519,0.385519,0.385519,40,40,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.38632,0.40197,0.385519,0.385519,0.38632,0.40197,0.386392,0.386095,0.385519,0.385519,0.386392,0.386095,0.41194,0.387614,0.385519,0.385519,0.41194,0.387614,0.385519,0.385519,0.385519,0.385519,0.385519,0.385519,,,,,,,0.38632,0.40197,0.386392,0.386095,0.41194,0.387614,0.385519,0.385519,0.385519,0.385519,0.162158,0.166853,0.16218,0.162091,0.169844,0.162546,0.161918,0.161918,0.086099,0.086099,39.917059,38.362944,39.909608,39.940396,37.434503,39.783832,40,40,40,40,,,,,,,,,,,6192,6192,0.385519,0.385519,0.385519,0.385519,0.385519,0.385519,0.385519,0.385519,0.161918,0.161918,40,40,, +9107,0,0.874338,1,1,0,2,5,,4,7,Range,Rd,968407,10.267,11.141,0,18.735806,5.8,4.5,1.942972,1.942972,1.942972,1.942972,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.942985,1.947455,1.942972,1.942972,1.942985,1.947455,1.943068,1.943083,1.942972,1.942972,1.943068,1.943083,1.94622,1.94309,1.942972,1.942972,1.94622,1.94309,1.942972,1.942972,1.942972,1.942972,1.942972,1.942972,,,,,,,1.942985,1.947455,1.943068,1.943083,1.94622,1.94309,1.942972,1.942972,1.942972,1.942972,0.740276,0.741617,0.740301,0.740306,0.741247,0.740308,0.740273,0.740273,0.387623,0.387623,26.999827,26.937859,26.998666,26.998463,26.954953,26.998365,27,27,27,27,,,,,,,,,,,2580,2580,1.942972,1.942972,1.942972,1.942972,1.942972,1.942972,1.942972,1.942972,0.740273,0.740273,27,27,, +9113,0,1.99821,1,1,0,2,6,GRV,5,7,Sheridan,Rd,973005,0,1.998,0,42.818792,5.55,5,4.795705,4.795705,4.795705,4.795705,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,,,,,,,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,1.798389,1.798389,1.798389,1.798389,1.798389,1.798389,1.798389,1.798389,0.939159,0.939159,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,4.795705,1.798389,1.798389,25,25,, +9114,0,2.001559,1,1,0,2,5,,5,7,Breen,Rd,973003,0,2.001,0,42.890561,3.7,5,4.003119,4.003119,4.003119,4.003119,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.003119,4.004377,4.003119,4.003119,4.003119,4.004377,4.003119,4.003119,4.003119,4.003119,4.003119,4.003119,4.003831,4.003119,4.003119,4.003119,4.003831,4.003119,4.003119,4.003119,4.003119,4.003119,4.003119,4.003119,,,,,,,4.003119,4.004377,4.003119,4.003119,4.003831,4.003119,4.003119,4.003119,4.003119,4.003119,1.561216,1.561594,1.561216,1.561216,1.56143,1.561216,1.561216,1.561216,0.820639,0.820639,30,29.990572,30,30,29.994663,30,30,30,30,30,,,,,,,,,,,2580,2580,4.003119,4.003119,4.003119,4.003119,4.003119,4.003119,4.003119,4.003119,1.561216,1.561216,30,30,, +9129,0,2.898219,1,1,0,2,5,,5,7,Belle River,Rd,972801,2.772,5.67,0,62.10469,3.7,5,5.796438,5.796438,5.796438,5.796438,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.796444,5.796438,5.796438,5.796438,5.796444,5.796438,5.796438,5.796438,5.796438,5.796438,5.796438,5.796438,5.796438,5.796441,5.796438,5.796438,5.796438,5.796441,5.796438,5.796438,5.796438,5.796438,5.796438,5.796438,,,,,,,5.796444,5.796438,5.796438,5.796438,5.796438,5.796441,5.796438,5.796438,5.796438,5.796438,2.260613,2.260611,2.260611,2.260611,2.260611,2.260612,2.260611,2.260611,1.18827,1.18827,29.999967,30,30,30,30,29.999984,30,30,30,30,,,,,,,,,,,2580,2580,5.796438,5.796438,5.796438,5.796438,5.796438,5.796438,5.796438,5.796438,2.260611,2.260611,30,30,, +9164,0,1.738344,1,1,0,2,6,GRV,5,7,Burt,Rd,972704,7.249,8.987,0,37.25022,5.55,5,4.172025,4.172025,4.172025,4.172025,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,,,,,,,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,1.564509,1.564509,1.564509,1.564509,1.564509,1.564509,1.564509,1.564509,0.817021,0.817021,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,4.172025,1.564509,1.564509,25,25,, +9199,0,1.944013,1,1,0,2,6,GRV,5,7,Masters,Rd,972701,3.322,5.266,0,41.657411,5.55,5,4.66563,4.66563,4.66563,4.66563,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.665632,4.675481,4.66563,4.66563,4.665632,4.675481,4.665637,4.665646,4.66563,4.66563,4.665637,4.665646,4.671363,4.665759,4.66563,4.66563,4.671363,4.665759,4.66563,4.66563,4.66563,4.66563,4.66563,4.66563,,,,,,,4.665632,4.675481,4.665637,4.665646,4.671363,4.665759,4.66563,4.66563,4.66563,4.66563,1.749612,1.752567,1.749613,1.749616,1.751331,1.74965,1.749611,1.749611,0.913686,0.913686,24.999988,24.947326,24.999962,24.999917,24.969318,24.999309,25,25,25,25,,,,,,,,,,,2236,2236,4.66563,4.66563,4.66563,4.66563,4.66563,4.66563,4.66563,4.66563,1.749611,1.749611,25,25,, +19611,1,0.626485,1,0,0,1,1,ROF,5,7,W I 69/Riley Center,RAMP,1847308,0,0.626,0,,2.24,5,0.939727,,0.939727,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.939728,,0.939727,,0.939728,,0.939727,,0.939727,,0.939727,,0.939727,,0.939727,,0.939727,,0.939727,,0.939727,,0.939727,,,,,,,,0.939728,,0.939727,,0.939727,,0.939727,,0.939727,,0.394686,,0.394686,,0.394686,,0.394686,,0.209872,,39.999991,,40,,40,,40,,40,,,,,,,,,,,,5160,,0.939727,,0.939727,,0.939727,,0.939727,,0.394686,,40,,, +19614,1,0.399824,1,0,0,1,1,RON,5,7,Riley Center/E I 69,RAMP,1847306,0,0.4,0,,1.09,4,0.533098,,0.533098,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.533098,,0.533098,,0.533098,,0.533098,,0.533098,,0.533098,,0.533099,,0.533098,,0.533099,,0.533098,,0.533098,,0.533098,,,,,,,,0.533098,,0.533098,,0.533099,,0.533098,,0.533098,,0.231898,,0.231898,,0.231898,,0.231898,,0.123945,,44.999996,,45,,44.999931,,45,,45,,,,,,,,,,,,5160,,0.533098,,0.533098,,0.533098,,0.533098,,0.231898,,45,,, +20560,0,1.396131,1,1,0,2,5,,4,7,Capac,Rd,4210003,7.259,8.655,0,29.917096,5.8,4.5,3.102514,3.102514,3.102514,3.102514,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.524781,5.613654,3.102514,3.102514,3.524781,5.613654,3.266512,3.372756,3.102514,3.102514,3.266512,3.372756,5.706598,4.031237,3.102514,3.102514,5.706598,4.031237,3.102514,3.102514,3.102514,3.102514,3.102514,3.102514,,,,,,,3.524781,5.613654,3.266512,3.372756,5.706598,4.031237,3.102514,3.102514,3.102514,3.102514,1.308738,1.9354,1.231257,1.263131,1.963283,1.460675,1.182058,1.182058,0.618951,0.618951,23.765411,14.922164,25.644442,24.83662,14.679126,20.779693,27,27,27,27,,,,,,,,,,,2580,2580,3.102514,3.102514,3.102514,3.102514,3.102514,3.102514,3.102514,3.102514,1.182058,1.182058,27,27,, +20616,1,0.50315,2,0,0,2,4,DIV,4,4,William P Rosso,Hwy,4205105,0.163,0.666,0,10.78178,4.5,4.5,0.702069,,0.702069,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.702553,,0.702069,,0.702553,,0.702541,,0.702069,,0.702541,,0.723186,,0.702069,,0.723186,,0.702069,,0.702069,,0.702069,,,,,,,,0.702553,,0.702541,,0.723186,,0.702069,,0.702069,,0.301333,,0.301329,,0.307523,,0.301188,,0.160657,,42.970374,,42.971119,,41.744412,,43,,43,,,,,,,,,,,,6880,,0.702069,,0.702069,,0.702069,,0.702069,,0.301188,,43,,, +39862,-1,0.507413,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,2.613,3.121,0,10.87313,3.7,5,,0.67655,,0.67655,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.17376,,0.67655,,1.17376,,0.785966,,0.67655,,0.785966,,0.929459,,0.67655,,0.929459,,0.67655,,0.67655,,0.67655,,,,,,,,1.17376,,0.785966,,0.929459,,0.67655,,0.67655,,0.443462,,0.327124,,0.370172,,0.294299,,0.157298,,25.937819,,38.735461,,32.755346,,45,,45,,,,,,,,,,,,7568,,0.67655,,0.67655,,0.67655,,0.67655,,0.294299,,45,, +21209,0,0.476711,1,1,0,2,5,,3,7,12th,Ave,4502623,0.02,0.497,0,10.215244,8,4.5,1.144107,1.144107,1.144107,1.144107,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.14426,1.144502,1.144107,1.144107,1.14426,1.144502,1.144403,1.144556,1.144107,1.144107,1.144403,1.144556,1.147786,1.145612,1.144107,1.144107,1.147786,1.145612,1.144107,1.144107,1.144107,1.144107,1.144107,1.144107,,,,,,,1.14426,1.144502,1.144403,1.144556,1.147786,1.145612,1.144107,1.144107,1.144107,1.144107,0.429086,0.429159,0.429129,0.429175,0.430144,0.429492,0.42904,0.42904,0.224054,0.224054,24.996673,24.991387,24.993541,24.990197,24.919879,24.967159,25,25,25,25,,,,,,,,,,,2408,2408,1.144107,1.144107,1.144107,1.144107,1.144107,1.144107,1.144107,1.144107,0.42904,0.42904,25,25,, +21886,0,0.093328,1,1,0,2,5,,5,7,Taylor,Dr,4502796,1.977,2.07,0,1.999896,3.7,5,0.186657,0.186657,0.186657,0.186657,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.186657,0.187208,0.186657,0.186657,0.186657,0.187208,0.186666,0.186663,0.186657,0.186657,0.186666,0.186663,0.187123,0.186663,0.186657,0.186657,0.187123,0.186663,0.186657,0.186657,0.186657,0.186657,0.186657,0.186657,,,,,,,0.186657,0.187208,0.186666,0.186663,0.187123,0.186663,0.186657,0.186657,0.186657,0.186657,0.072796,0.072962,0.072799,0.072798,0.072936,0.072798,0.072796,0.072796,0.038265,0.038265,29.999963,29.911678,29.998613,29.99896,29.925267,29.998962,30,30,30,30,,,,,,,,,,,2580,2580,0.186657,0.186657,0.186657,0.186657,0.186657,0.186657,0.186657,0.186657,0.072796,0.072796,30,30,, +24219,0,1.423643,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,9.298,10.721,0,30.506641,4.5,4.5,2.247858,2.247858,2.247858,2.247858,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.247858,2.255335,2.247858,2.247858,2.247858,2.255335,2.247858,2.247865,2.247858,2.247858,2.247858,2.247865,2.249666,2.247938,2.247858,2.247858,2.249666,2.247938,2.247858,2.247858,2.247858,2.247858,2.247858,2.247858,,,,,,,2.247858,2.255335,2.247858,2.247865,2.249666,2.247938,2.247858,2.247858,2.247858,2.247858,0.930613,0.932856,0.930613,0.930615,0.931156,0.930637,0.930613,0.930613,0.493779,0.493779,37.999993,37.874024,37.999996,37.999872,37.969455,37.998639,38,38,38,38,,,,,,,,,,,3096,3096,2.247858,2.247858,2.247858,2.247858,2.247858,2.247858,2.247858,2.247858,0.930613,0.930613,38,38,, +25913,0,2.491761,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,53.394873,0.15,4,9.967043,9.967043,9.967043,9.967043,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,,,,,,,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,3.43863,3.43863,3.43863,3.43863,3.43863,3.43863,3.43863,3.43863,1.76915,1.76915,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,9.967043,3.43863,3.43863,15,15,, +25915,0,0.264133,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,5.659997,0.15,4,1.584799,1.584799,1.584799,1.584799,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,,,,,,,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,0.522984,0.522984,0.522984,0.522984,0.522984,0.522984,0.522984,0.522984,0.266775,0.266775,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,1.584799,0.522984,0.522984,10,10,, +25926,0,1.138337,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,24.392939,0.15,4,4.553349,4.553349,4.553349,4.553349,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,,,,,,,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,1.570905,1.570905,1.570905,1.570905,1.570905,1.570905,1.570905,1.570905,0.808219,0.808219,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,4.553349,1.570905,1.570905,15,15,, +25933,0,3.947806,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,84.595845,0.15,4,15.791224,15.791224,15.791224,15.791224,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,,,,,,,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,5.447972,5.447972,5.447972,5.447972,5.447972,5.447972,5.447972,5.447972,2.802942,2.802942,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,15.791224,5.447972,5.447972,15,15,, +25944,0,1.673987,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,35.871153,0.15,4,6.695949,6.695949,6.695949,6.695949,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,,,,,,,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,2.310102,2.310102,2.310102,2.310102,2.310102,2.310102,2.310102,2.310102,1.188531,1.188531,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,6.695949,2.310102,2.310102,15,15,, +25947,0,0.425912,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,9.126677,0.15,4,1.703646,1.703646,1.703646,1.703646,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,,,,,,,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,0.587758,0.587758,0.587758,0.587758,0.587758,0.587758,0.587758,0.587758,0.302397,0.302397,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,1.703646,0.587758,0.587758,15,15,, +25962,0,1.16202,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,24.900436,0.15,4,4.648081,4.648081,4.648081,4.648081,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,,,,,,,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,1.603588,1.603588,1.603588,1.603588,1.603588,1.603588,1.603588,1.603588,0.825034,0.825034,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,4.648081,1.603588,1.603588,15,15,, +25965,0,0.433723,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.294071,0.15,4,1.734893,1.734893,1.734893,1.734893,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.734894,1.734893,1.734893,1.734893,1.734894,1.734893,1.734894,1.734894,1.734893,1.734893,1.734894,1.734894,1.734894,1.734898,1.734893,1.734893,1.734894,1.734898,1.734893,1.734893,1.734893,1.734893,1.734893,1.734893,,,,,,,1.734894,1.734893,1.734894,1.734894,1.734894,1.734898,1.734893,1.734893,1.734893,1.734893,0.598538,0.598538,0.598538,0.598538,0.598538,0.59854,0.598538,0.598538,0.307944,0.307944,14.999995,14.999999,14.999995,14.999995,14.99999,14.999956,15,15,15,15,,,,,,,,,,,34400,34400,1.734893,1.734893,1.734893,1.734893,1.734893,1.734893,1.734893,1.734893,0.598538,0.598538,15,15,, +26073,0,0.489657,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,10.492655,0.15,4,1.958629,1.958629,1.958629,1.958629,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,,,,,,,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,0.675727,0.675727,0.675727,0.675727,0.675727,0.675727,0.675727,0.675727,0.347657,0.347657,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,1.958629,0.675727,0.675727,15,15,, +26077,0,0.532132,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.40282,0.15,4,2.128526,2.128526,2.128526,2.128526,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,,,,,,,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,0.734342,0.734342,0.734342,0.734342,0.734342,0.734342,0.734342,0.734342,0.377813,0.377813,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,2.128526,0.734342,0.734342,15,15,, +26080,0,0.3837,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.222134,0.15,4,1.534798,1.534798,1.534798,1.534798,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,,,,,,,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,0.529505,0.529505,0.529505,0.529505,0.529505,0.529505,0.529505,0.529505,0.272427,0.272427,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,1.534798,0.529505,0.529505,15,15,, +26457,0,2.585455,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,55.402606,0.15,4,10.34182,10.34182,10.34182,10.34182,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,,,,,,,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,3.567928,3.567928,3.567928,3.567928,3.567928,3.567928,3.567928,3.567928,1.835673,1.835673,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,10.34182,3.567928,3.567928,15,15,, +26947,0,0.818162,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,17.532033,0.15,4,3.272646,3.272646,3.272646,3.272646,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,,,,,,,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,1.129063,1.129063,1.129063,1.129063,1.129063,1.129063,1.129063,1.129063,0.580895,0.580895,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,3.272646,1.129063,1.129063,15,15,, +29127,0,2.573853,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,55.153983,0.15,4,10.29541,10.29541,10.29541,10.29541,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,,,,,,,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,3.551917,3.551917,3.551917,3.551917,3.551917,3.551917,3.551917,3.551917,1.827435,1.827435,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,10.29541,3.551917,3.551917,15,15,, +29171,0,1.255165,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,26.896398,0.15,4,5.020661,5.020661,5.020661,5.020661,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,,,,,,,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,1.732128,1.732128,1.732128,1.732128,1.732128,1.732128,1.732128,1.732128,0.891167,0.891167,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,5.020661,1.732128,1.732128,15,15,, +29384,0,0.692139,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,14.831549,0.15,4,2.768556,2.768556,2.768556,2.768556,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,,,,,,,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,0.955152,0.955152,0.955152,0.955152,0.955152,0.955152,0.955152,0.955152,0.491419,0.491419,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,2.768556,0.955152,0.955152,15,15,, +29499,0,1.159806,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,24.852983,0.15,4,4.639224,4.639224,4.639224,4.639224,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,,,,,,,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,1.600532,1.600532,1.600532,1.600532,1.600532,1.600532,1.600532,1.600532,0.823462,0.823462,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,4.639224,1.600532,1.600532,15,15,, +98,0,0.151208,2,2,0,2,4,,4,3,13 Mile,Rd,607408,13.954,14.105,0,3.240165,4.5,4.5,0.238749,0.238749,0.238749,0.238749,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.367217,0.445625,0.238749,0.238749,0.367217,0.445625,0.29322,0.292175,0.238749,0.238749,0.29322,0.292175,0.596957,0.53043,0.238749,0.238749,0.596957,0.53043,0.238749,0.238749,0.238749,0.238749,0.238749,0.238749,,,,,,,0.367217,0.445625,0.29322,0.292175,0.596957,0.53043,0.238749,0.238749,0.238749,0.238749,0.137383,0.160905,0.115183,0.11487,0.206304,0.186346,0.098842,0.098842,0.052445,0.052445,24.705982,20.358966,30.940803,31.051489,15.197856,17.103991,38,38,38,38,,,,,,,,,,,6192,6192,0.238749,0.238749,0.238749,0.238749,0.238749,0.238749,0.238749,0.238749,0.098842,0.098842,38,38,, +194,-1,2.347348,0,2,0,1,1,,3,3,W I 96,,639107,0,2.347,0,,0.58,7,,2.166783,,2.166783,,65,,44000,,9988,,22000,,14194,,15136,,15118,,2.173927,,2.166783,,2.173927,,2.167245,,2.166783,,2.167245,,2.178729,,2.166783,,2.178729,,2.166783,,2.166783,,2.166783,,,,,,,,2.173927,,2.167245,,2.178729,,2.166783,,2.166783,,1.074701,,1.072696,,1.076141,,1.072558,,0.583226,,64.786411,,64.986157,,64.643617,,65,,65,,,,,,,,,,,,15136,,2.166783,,2.166783,,2.166783,,2.166783,,1.072558,,65,, +311,0,0.496184,2,2,0,2,3,,3,3,Haggerty,Rd,639005,1.542,2.038,0,10.63252,5,5,0.850602,0.850602,0.850602,0.850602,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,1.068048,0.909984,0.850602,0.850602,1.068048,0.909984,0.939948,0.902806,0.850602,0.850602,0.939948,0.902806,1.076853,1.094015,0.850602,0.850602,1.076853,1.094015,0.850602,0.850602,0.850602,0.850602,0.850602,0.850602,,,,,,,1.068048,0.909984,0.939948,0.902806,1.076853,1.094015,0.850602,0.850602,0.850602,0.850602,0.409727,0.362308,0.371298,0.360155,0.412369,0.417518,0.344494,0.344494,0.182171,0.182171,27.874279,32.716028,31.673084,32.976149,27.646353,27.212667,35,35,35,35,,,,,,,,,,,7568,7568,0.850602,0.850602,0.850602,0.850602,0.850602,0.850602,0.850602,0.850602,0.344494,0.344494,35,35,, +312,1,2.079632,4,0,0,1,1,,3,3,E I 96,,639202,1.583,3.662,0,,0.58,7,1.91966,,1.91966,,65,,88000,,19976,,44000,,28389,,30272,,30237,,2.139552,,1.91966,,2.139552,,1.968601,,1.91966,,1.968601,,2.406016,,1.91966,,2.406016,,1.91966,,1.91966,,1.91966,,,,,,,,2.139552,,1.968601,,2.406016,,1.91966,,1.91966,,1.016199,,0.964914,,1.096139,,0.950232,,0.516708,,58.31963,,63.384059,,51.860783,,65,,65,,,,,,,,,,,,30272,,1.91966,,1.91966,,1.91966,,1.91966,,0.950232,,65,,, +352,1,0.384891,1,0,0,1,1,ROF,4,3,E I 696/Orchard Lake,RAMP,640906,0,0.385,0,,2.24,5,0.577336,,0.577336,,40,,15000,,3405,,7500,,4839,,5160,,5154,,1.803633,,0.577336,,1.803633,,1.022002,,0.577336,,1.022002,,1.903486,,0.577336,,1.903486,,0.577336,,0.577336,,0.577336,,,,,,,,1.803633,,1.022002,,1.903486,,0.577336,,0.577336,,0.61037,,0.375881,,0.640326,,0.242481,,0.128938,,12.803853,,22.596277,,12.132185,,40,,40,,,,,,,,,,,,5160,,0.577336,,0.577336,,0.577336,,0.577336,,0.242481,,40,,, +407,0,0.185241,1,1,0,2,5,,3,3,Shiawassee,,633209,1.098,1.283,0,3.969451,8,4.5,0.444579,0.444579,0.444579,0.444579,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.445618,0.445249,0.444579,0.444579,0.445618,0.445249,0.444582,0.444588,0.444579,0.444579,0.444582,0.444588,0.447694,0.445465,0.444579,0.444579,0.447694,0.445465,0.444579,0.444579,0.444579,0.444579,0.444579,0.444579,,,,,,,0.445618,0.445249,0.444582,0.444588,0.447694,0.445465,0.444579,0.444579,0.444579,0.444579,0.167029,0.166918,0.166718,0.16672,0.167652,0.166983,0.166717,0.166717,0.087063,0.087063,24.941698,24.962331,24.999802,24.999469,24.826013,24.950249,25,25,25,25,,,,,,,,,,,2408,2408,0.444579,0.444579,0.444579,0.444579,0.444579,0.444579,0.444579,0.444579,0.166717,0.166717,25,25,, +414,0,0.246832,1,1,0,2,5,,4,3,Lone Pine,Rd,640302,0,0.247,0,5.289249,5.8,4.5,0.548515,0.548515,0.548515,0.548515,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.07718,1.299067,0.548515,0.548515,1.07718,1.299067,0.63445,0.636221,0.548515,0.548515,0.63445,0.636221,1.667745,1.496832,0.548515,0.548515,1.667745,1.496832,0.548515,0.548515,0.548515,0.548515,0.548515,0.548515,,,,,,,1.07718,1.299067,0.63445,0.636221,1.667745,1.496832,0.548515,0.548515,0.548515,0.548515,0.367584,0.43415,0.234765,0.235296,0.544753,0.493479,0.208984,0.208984,0.109429,0.109429,13.74877,11.40041,23.34291,23.277926,8.880191,9.894165,27,27,27,27,,,,,,,,,,,2580,2580,0.548515,0.548515,0.548515,0.548515,0.548515,0.548515,0.548515,0.548515,0.208984,0.208984,27,27,, +451,0,0.315335,1,1,0,2,3,,4,3,Orchard Lake,Rd,634003,8.485,8.8,0,6.757179,3.7,5,0.473003,0.473003,0.473003,0.473003,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,3.78402,3.78402,0.473003,0.473003,3.78402,3.78402,1.797361,1.89365,0.473003,0.473003,1.797361,1.89365,3.78402,3.78402,0.473003,0.473003,3.78402,3.78402,0.473003,0.473003,0.473003,0.473003,0.473003,0.473003,,,,,,,3.78402,3.78402,1.797361,1.89365,3.78402,3.78402,0.473003,0.473003,0.473003,0.473003,1.191966,1.191966,0.595969,0.624855,1.191966,1.191966,0.198661,0.198661,0.105637,0.105637,5,5,10.526598,9.99134,5,5,40,40,40,40,,,,,,,,,,,3784,3784,0.473003,0.473003,0.473003,0.473003,0.473003,0.473003,0.473003,0.473003,0.198661,0.198661,40,40,, +452,0,0.234389,1,1,0,2,4,,3,3,Halsted,Rd,639203,0.132,0.366,0,5.022623,6,4.5,0.426162,0.426162,0.426162,0.426162,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.442939,0.427686,0.426162,0.426162,1.442939,0.427686,1.157509,0.42644,0.426162,0.426162,1.157509,0.42644,2.061908,0.426687,0.426162,0.426162,2.061908,0.426687,0.426162,0.426162,0.426162,0.426162,0.426162,0.426162,,,,,,,1.442939,0.427686,1.157509,0.42644,2.061908,0.426687,0.426162,0.426162,0.426162,0.426162,0.475072,0.170496,0.389443,0.170122,0.660762,0.170196,0.170039,0.170039,0.089707,0.089707,9.746321,32.882393,12.149669,32.978524,6.820551,32.959377,33,33,33,33,,,,,,,,,,,2580,2580,0.426162,0.426162,0.426162,0.426162,0.426162,0.426162,0.426162,0.426162,0.170039,0.170039,33,33,, +460,0,1.627014,1,1,0,2,4,,5,3,Seymour Lake,Rd,627107,2.573,4.199,0,34.864581,3,4,2.440521,2.440521,2.440521,2.440521,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.672674,3.16041,2.440521,2.440521,2.672674,3.16041,2.576617,2.573616,2.440521,2.440521,2.576617,2.573616,3.233639,2.79315,2.440521,2.440521,3.233639,2.79315,2.440521,2.440521,2.440521,2.440521,2.440521,2.440521,,,,,,,2.672674,3.16041,2.576617,2.573616,3.233639,2.79315,2.440521,2.440521,2.440521,2.440521,1.094665,1.240986,1.065848,1.064947,1.262954,1.130807,1.025019,1.025019,0.54505,0.54505,36.525524,30.888657,37.887208,37.931393,30.189158,34.950087,40,40,40,40,,,,,,,,,,,3096,3096,2.440521,2.440521,2.440521,2.440521,2.440521,2.440521,2.440521,2.440521,1.025019,1.025019,40,40,, +632,0,0.205238,1,1,0,2,5,,3,3,Gill,Rd,632807,0.524,0.729,0,4.397955,8,4.5,0.492571,0.492571,0.492571,0.492571,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.495062,0.492577,0.492571,0.492571,0.495062,0.492577,0.492798,0.492575,0.492571,0.492571,0.492798,0.492575,0.493009,0.493253,0.492571,0.492571,0.493009,0.493253,0.492571,0.492571,0.492571,0.492571,0.492571,0.492571,,,,,,,0.495062,0.492577,0.492798,0.492575,0.493009,0.493253,0.492571,0.492571,0.492571,0.492571,0.185461,0.184716,0.184782,0.184715,0.184846,0.184919,0.184714,0.184714,0.096462,0.096462,24.874218,24.999691,24.988494,24.999783,24.977776,24.965442,25,25,25,25,,,,,,,,,,,2408,2408,0.492571,0.492571,0.492571,0.492571,0.492571,0.492571,0.492571,0.492571,0.184714,0.184714,25,25,, +651,0,0.202325,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,1.431,1.633,0,4.335545,6,4.5,0.367864,0.367864,0.367864,0.367864,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.855377,0.647777,0.367864,0.367864,0.855377,0.647777,0.679433,0.623196,0.367864,0.367864,0.679433,0.623196,0.995371,1.031975,0.367864,0.367864,0.995371,1.031975,0.367864,0.367864,0.367864,0.367864,0.367864,0.367864,,,,,,,0.855377,0.647777,0.679433,0.623196,0.995371,1.031975,0.367864,0.367864,0.367864,0.367864,0.293032,0.230752,0.240249,0.223377,0.33503,0.346011,0.146778,0.146778,0.077435,0.077435,14.192023,18.740286,17.867138,19.479471,12.195979,11.763395,33,33,33,33,,,,,,,,,,,5418,5418,0.367864,0.367864,0.367864,0.367864,0.367864,0.367864,0.367864,0.367864,0.146778,0.146778,33,33,, +737,0,0.30756,3,3,1,2,3,,3,3,Southfield,Rd,611304,4.192,4.5,0,6.590561,5,5,0.527245,0.527245,0.527245,0.527245,35,35,34100,34100,7741,7741,17050,17050,11001,11001,11730,11730,11717,11717,0.694706,1.09508,0.527245,0.527245,0.694706,1.09508,0.697626,0.732529,0.527245,0.527245,0.697626,0.732529,1.210809,0.983396,0.527245,0.527245,1.210809,0.983396,0.527245,0.527245,0.527245,0.527245,0.527245,0.527245,,,,,,,0.694706,1.09508,0.697626,0.732529,1.210809,0.983396,0.527245,0.527245,0.527245,0.527245,0.263773,0.383885,0.264649,0.275119,0.418604,0.350379,0.213534,0.213534,0.112918,0.112918,26.563121,16.851341,26.451945,25.191592,15.240691,18.765156,35,35,35,35,,,,,,,,,,,11730,11730,0.527245,0.527245,0.527245,0.527245,0.527245,0.527245,0.527245,0.527245,0.213534,0.213534,35,35,, +849,0,0.237924,1,1,0,2,4,,3,3,10 Mile,Rd,633409,0.664,0.902,0,5.098373,6,4.5,0.432589,0.432589,0.432589,0.432589,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.603457,0.605468,0.432589,0.432589,0.603457,0.605468,0.519264,0.515335,0.432589,0.432589,0.519264,0.515335,0.645539,0.649598,0.432589,0.432589,0.645539,0.649598,0.432589,0.432589,0.432589,0.432589,0.432589,0.432589,,,,,,,0.603457,0.605468,0.519264,0.515335,0.645539,0.649598,0.432589,0.432589,0.432589,0.432589,0.223864,0.224467,0.198606,0.197427,0.236488,0.237706,0.172603,0.172603,0.09106,0.09106,23.656095,23.577532,27.491676,27.701304,22.113999,21.97582,33,33,33,33,,,,,,,,,,,2580,2580,0.432589,0.432589,0.432589,0.432589,0.432589,0.432589,0.432589,0.432589,0.172603,0.172603,33,33,, +860,0,0.290545,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0.671,0.961,0,6.225954,5,5,0.498076,0.498076,0.498076,0.498076,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.619929,0.510951,0.498076,0.498076,0.619929,0.510951,0.516573,0.508735,0.498076,0.498076,0.516573,0.508735,0.564936,0.617421,0.498076,0.498076,0.564936,0.617421,0.498076,0.498076,0.498076,0.498076,0.498076,0.498076,,,,,,,0.619929,0.510951,0.516573,0.508735,0.564936,0.617421,0.498076,0.498076,0.498076,0.498076,0.238277,0.205583,0.20727,0.204919,0.221779,0.237524,0.201721,0.201721,0.106671,0.106671,28.120426,34.118063,33.746759,34.266697,30.857791,28.234639,35,35,35,35,,,,,,,,,,,7946,7946,0.498076,0.498076,0.498076,0.498076,0.498076,0.498076,0.498076,0.498076,0.201721,0.201721,35,35,, +865,0,0.199324,1,1,0,2,4,,4,3,Farmington,Rd,634005,0,0.199,0,4.271232,4.5,4.5,0.314722,0.314722,0.314722,0.314722,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.619682,0.424273,0.314722,0.314722,0.619682,0.424273,0.426423,0.407954,0.314722,0.314722,0.426423,0.407954,0.531428,0.62504,0.314722,0.314722,0.531428,0.62504,0.314722,0.314722,0.314722,0.314722,0.314722,0.314722,,,,,,,0.619682,0.424273,0.426423,0.407954,0.531428,0.62504,0.314722,0.314722,0.314722,0.314722,0.221783,0.16316,0.163805,0.158264,0.195307,0.22339,0.130295,0.130295,0.069134,0.069134,19.299332,28.188083,28.046008,29.315715,22.504355,19.133902,38,38,38,38,,,,,,,,,,,3096,3096,0.314722,0.314722,0.314722,0.314722,0.314722,0.314722,0.314722,0.314722,0.130295,0.130295,38,38,, +871,0,0.368601,1,1,0,2,4,,4,3,Inkster,Rd,636410,1.648,2.016,0,7.898584,4.5,4.5,0.582001,0.582001,0.582001,0.582001,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.968141,0.715612,0.582001,0.582001,0.968141,0.715612,0.726964,0.711968,0.582001,0.582001,0.726964,0.711968,0.843351,1.018151,0.582001,0.582001,0.843351,1.018151,0.582001,0.582001,0.582001,0.582001,0.582001,0.582001,,,,,,,0.968141,0.715612,0.726964,0.711968,0.843351,1.018151,0.582001,0.582001,0.582001,0.582001,0.356791,0.281032,0.284437,0.279938,0.319353,0.371793,0.240948,0.240948,0.127846,0.127846,22.843805,30.905083,30.422473,31.063259,26.223992,21.721764,38,38,38,38,,,,,,,,,,,3096,3096,0.582001,0.582001,0.582001,0.582001,0.582001,0.582001,0.582001,0.582001,0.240948,0.240948,38,38,, +951,-1,0.428009,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.309,11.737,0,9.171616,5,5,,0.642013,,0.642013,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.891782,,0.642013,,0.891782,,0.719042,,0.642013,,0.719042,,0.900659,,0.642013,,0.900659,,0.642013,,0.642013,,0.642013,,,,,,,,0.891782,,0.719042,,0.900659,,0.642013,,0.642013,,0.344576,,0.292754,,0.347239,,0.269646,,0.143383,,28.796866,,35.714934,,28.513035,,40,,40,,,,,,,,,,,,13760,,0.642013,,0.642013,,0.642013,,0.642013,,0.269646,,40,, +971,0,0.524298,2,2,1,2,3,,3,3,Novi,Rd,621910,2.487,3.011,0,11.234968,5,5,0.898797,0.898797,0.898797,0.898797,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.967334,1.31178,0.898797,0.898797,0.967334,1.31178,0.937679,1.014581,0.898797,0.898797,0.937679,1.014581,1.151443,1.207824,0.898797,0.898797,1.151443,1.207824,0.898797,0.898797,0.898797,0.898797,0.898797,0.898797,,,,,,,0.967334,1.31178,0.937679,1.014581,1.151443,1.207824,0.898797,0.898797,0.898797,0.898797,0.384574,0.487908,0.375677,0.398748,0.439806,0.456721,0.364013,0.364013,0.192492,0.192492,32.520211,23.98109,33.548706,31.005804,27.320433,26.045103,35,35,35,35,,,,,,,,,,,7946,7946,0.898797,0.898797,0.898797,0.898797,0.898797,0.898797,0.898797,0.898797,0.364013,0.364013,35,35,, +1183,0,0.983078,1,1,0,2,4,,5,3,Clarkston,Rd,627307,3.083,4.066,0,21.065956,3,4,1.474617,1.474617,1.474617,1.474617,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.515193,1.488961,1.474617,1.474617,1.515193,1.488961,1.480501,1.478584,1.474617,1.474617,1.480501,1.478584,1.503493,1.494277,1.474617,1.474617,1.503493,1.494277,1.474617,1.474617,1.474617,1.474617,1.474617,1.474617,,,,,,,1.515193,1.488961,1.480501,1.478584,1.503493,1.494277,1.474617,1.474617,1.474617,1.474617,0.631512,0.623642,0.621104,0.620529,0.628002,0.625237,0.619339,0.619339,0.329331,0.329331,38.928821,39.614662,39.84102,39.892687,39.23176,39.47373,40,40,40,40,,,,,,,,,,,3096,3096,1.474617,1.474617,1.474617,1.474617,1.474617,1.474617,1.474617,1.474617,0.619339,0.619339,40,40,, +1200,0,0.517852,1,1,1,2,4,,3,3,Hilton,,642306,0.972,1.49,0,11.096819,6,4.5,0.941548,0.941548,0.941548,0.941548,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.265554,1.378835,0.941548,0.941548,1.265554,1.378835,1.210528,1.220228,0.941548,0.941548,1.210528,1.220228,1.484208,1.710889,0.941548,0.941548,1.484208,1.710889,0.941548,0.941548,0.941548,0.941548,0.941548,0.941548,,,,,,,1.265554,1.378835,1.210528,1.220228,1.484208,1.710889,0.941548,0.941548,0.941548,0.941548,0.472879,0.506864,0.456372,0.459282,0.538476,0.60648,0.375678,0.375678,0.198196,0.198196,24.551375,22.534305,25.667379,25.463345,20.934453,18.160793,33,33,33,33,,,,,,,,,,,2838,2838,0.941548,0.941548,0.941548,0.941548,0.941548,0.941548,0.941548,0.941548,0.375678,0.375678,33,33,, +1214,0,0.499937,1,1,0,2,4,,4,3,Cass Elizabeth,Rd,630806,1.609,2.109,0,10.712943,4.5,4.5,0.789375,0.789375,0.789375,0.789375,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.661848,0.802336,0.789375,0.789375,2.661848,0.802336,0.849806,0.818277,0.789375,0.789375,0.849806,0.818277,0.991691,2.4004,0.789375,0.789375,0.991691,2.4004,0.789375,0.789375,0.789375,0.789375,0.789375,0.789375,,,,,,,2.661848,0.802336,0.849806,0.818277,0.991691,2.4004,0.789375,0.789375,0.789375,0.789375,0.888543,0.330689,0.34493,0.335472,0.387496,0.810109,0.326801,0.326801,0.173399,0.173399,11.268954,37.386157,35.297757,36.657792,30.247575,12.496349,38,38,38,38,,,,,,,,,,,3096,3096,0.789375,0.789375,0.789375,0.789375,0.789375,0.789375,0.789375,0.789375,0.326801,0.326801,38,38,, +1270,0,1.006444,1,1,0,2,5,,5,3,Waldon,Rd,627303,2.014,3.021,0,21.566664,3.7,5,2.012889,2.012889,2.012889,2.012889,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.08077,3.956429,2.012889,2.012889,2.08077,3.956429,2.044736,2.207134,2.012889,2.012889,2.044736,2.207134,3.411995,2.846407,2.012889,2.012889,3.411995,2.846407,2.012889,2.012889,2.012889,2.012889,2.012889,2.012889,,,,,,,2.08077,3.956429,2.044736,2.207134,3.411995,2.846407,2.012889,2.012889,2.012889,2.012889,0.805391,1.368089,0.794581,0.8433,1.204758,1.035082,0.785027,0.785027,0.412642,0.412642,29.02131,15.262919,29.532737,27.359766,17.698344,21.215045,30,30,30,30,,,,,,,,,,,2580,2580,2.012889,2.012889,2.012889,2.012889,2.012889,2.012889,2.012889,2.012889,0.785027,0.785027,30,30,, +1365,-1,3.928684,0,3,0,1,1,,4,3,S I 75,,646106,25.692,29.619,0,,0.8,7.5,,3.367444,,3.367444,,70,,66000,,14982,,33000,,21292,,22704,,22678,,4.35972,,3.367444,,4.35972,,3.371744,,3.367444,,3.371744,,3.400347,,3.367444,,3.400347,,3.367444,,3.367444,,3.367444,,,,,,,,4.35972,,3.371744,,3.400347,,3.367444,,3.367444,,2.015079,,1.718686,,1.727267,,1.717396,,0.937272,,54.067932,,69.910732,,69.322642,,70,,70,,,,,,,,,,,,22704,,3.367444,,3.367444,,3.367444,,3.367444,,1.717396,,70,, +1367,0,0.455246,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,7.632,8.087,0,9.755275,3.7,5,0.682869,0.682869,0.682869,0.682869,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.933791,1.577226,0.682869,0.682869,0.933791,1.577226,0.804414,0.821281,0.682869,0.682869,0.804414,0.821281,1.581935,1.150363,0.682869,0.682869,1.581935,1.150363,0.682869,0.682869,0.682869,0.682869,0.682869,0.682869,,,,,,,0.933791,1.577226,0.804414,0.821281,1.581935,1.150363,0.682869,0.682869,0.682869,0.682869,0.362082,0.555112,0.323269,0.328329,0.556525,0.427053,0.286805,0.286805,0.152507,0.152507,29.251477,17.318233,33.956091,33.258728,17.266682,23.744484,40,40,40,40,,,,,,,,,,,7946,7946,0.682869,0.682869,0.682869,0.682869,0.682869,0.682869,0.682869,0.682869,0.286805,0.286805,40,40,, +1482,-1,0.577041,0,4,0,1,1,,3,3,S I 75,,646106,1.539,2.116,0,,0.58,7,,0.532654,,0.532654,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.648204,,0.532654,,0.648204,,0.558717,,0.532654,,0.558717,,0.75125,,0.532654,,0.75125,,0.532654,,0.532654,,0.532654,,,,,,,,0.648204,,0.558717,,0.75125,,0.532654,,0.532654,,0.298329,,0.271483,,0.329243,,0.263664,,0.143373,,53.412953,,61.967796,,46.08647,,65,,65,,,,,,,,,,,,30272,,0.532654,,0.532654,,0.532654,,0.532654,,0.263664,,65,, +1491,1,0.337969,1,0,0,1,1,RON,4,3,S Orchard Lake/W I 696,RAMP,640907,0,0.338,0,,1.09,4,0.450626,,0.450626,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.681655,,0.450626,,0.681655,,0.650951,,0.450626,,0.650951,,1.153633,,0.450626,,1.153633,,0.450626,,0.450626,,0.450626,,,,,,,,0.681655,,0.650951,,1.153633,,0.450626,,0.450626,,0.265331,,0.25612,,0.406925,,0.196022,,0.104771,,29.748444,,31.151593,,17.577648,,45,,45,,,,,,,,,,,,5160,,0.450626,,0.450626,,0.450626,,0.450626,,0.196022,,45,,, +1502,0,0.615602,1,1,0,2,5,,3,3,Freedom,Rd,633606,2.681,3.296,0,13.191473,8,4.5,1.477445,1.477445,1.477445,1.477445,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.481488,1.478171,1.477445,1.477445,1.481488,1.478171,1.478735,1.478538,1.477445,1.477445,1.478735,1.478538,1.486762,1.487516,1.477445,1.477445,1.486762,1.487516,1.477445,1.477445,1.477445,1.477445,1.477445,1.477445,,,,,,,1.481488,1.478171,1.478735,1.478538,1.486762,1.487516,1.477445,1.477445,1.477445,1.477445,0.555255,0.55426,0.554429,0.55437,0.556837,0.557063,0.554042,0.554042,0.289333,0.289333,24.931781,24.987724,24.978191,24.98152,24.843338,24.830744,25,25,25,25,,,,,,,,,,,2408,2408,1.477445,1.477445,1.477445,1.477445,1.477445,1.477445,1.477445,1.477445,0.554042,0.554042,25,25,, +1516,0,0.491229,1,1,0,2,4,,4,3,11 Mile,Rd,634509,0.501,0.992,0,10.526345,4.5,4.5,0.775625,0.775625,0.775625,0.775625,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.972621,1.011925,0.775625,0.775625,0.972621,1.011925,0.872409,0.879341,0.775625,0.775625,0.872409,0.879341,1.188605,1.031047,0.775625,0.775625,1.188605,1.031047,0.775625,0.775625,0.775625,0.775625,0.775625,0.775625,,,,,,,0.972621,1.011925,0.872409,0.879341,1.188605,1.031047,0.775625,0.775625,0.775625,0.775625,0.380208,0.391999,0.350144,0.352224,0.445003,0.397735,0.321109,0.321109,0.170379,0.170379,30.30343,29.126418,33.784334,33.518018,24.796936,28.58624,38,38,38,38,,,,,,,,,,,3096,3096,0.775625,0.775625,0.775625,0.775625,0.775625,0.775625,0.775625,0.775625,0.321109,0.321109,38,38,, +1626,0,0.694786,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,4.174,4.869,0,14.88827,3.7,5,1.042179,1.042179,1.042179,1.042179,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,2.373894,1.167297,1.042179,1.042179,2.373894,1.167297,1.227013,1.175346,1.042179,1.042179,1.227013,1.175346,1.514466,2.333449,1.042179,1.042179,1.514466,2.333449,1.042179,1.042179,1.042179,1.042179,1.042179,1.042179,,,,,,,2.373894,1.167297,1.227013,1.175346,1.514466,2.333449,1.042179,1.042179,1.042179,1.042179,0.83723,0.475251,0.493165,0.477665,0.579401,0.825096,0.437715,0.437715,0.232753,0.232753,17.560662,35.712545,33.974497,35.467995,27.525983,17.865041,40,40,40,40,,,,,,,,,,,7946,7946,1.042179,1.042179,1.042179,1.042179,1.042179,1.042179,1.042179,1.042179,0.437715,0.437715,40,40,, +1640,0,0.306043,1,1,0,2,5,,3,3,Power,Rd,634001,0,0.306,0,6.55806,8,4.5,0.734503,0.734503,0.734503,0.734503,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.097006,0.794304,0.734503,0.734503,1.097006,0.794304,0.827184,0.787097,0.734503,0.734503,0.827184,0.787097,0.935111,1.100676,0.734503,0.734503,0.935111,1.100676,0.734503,0.734503,0.734503,0.734503,0.734503,0.734503,,,,,,,1.097006,0.794304,0.827184,0.787097,0.935111,1.100676,0.734503,0.734503,0.734503,0.734503,0.384189,0.293379,0.303243,0.291217,0.335621,0.38529,0.275439,0.275439,0.14384,0.14384,16.738807,23.117809,22.198882,23.329491,19.636784,16.682994,25,25,25,25,,,,,,,,,,,2408,2408,0.734503,0.734503,0.734503,0.734503,0.734503,0.734503,0.734503,0.734503,0.275439,0.275439,25,25,, +1671,0,0.431637,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,1.576,2.008,0,9.249354,6,4.5,0.784794,0.784794,0.784794,0.784794,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.305811,0.933102,0.784794,0.784794,1.305811,0.933102,1.005397,0.981915,0.784794,0.784794,1.005397,0.981915,1.156382,1.252082,0.784794,0.784794,1.156382,1.252082,0.784794,0.784794,0.784794,0.784794,0.784794,0.784794,,,,,,,1.305811,0.933102,1.005397,0.981915,1.156382,1.252082,0.784794,0.784794,0.784794,0.784794,0.469438,0.357625,0.379314,0.372269,0.424609,0.453319,0.313133,0.313133,0.165199,0.165199,19.833036,27.754954,25.759165,26.375197,22.395887,20.684101,33,33,33,33,,,,,,,,,,,2580,2580,0.784794,0.784794,0.784794,0.784794,0.784794,0.784794,0.784794,0.784794,0.313133,0.313133,33,33,, +1717,1,0.541862,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.184,11.726,0,11.611324,5,5,0.812793,,0.812793,,40,,40000,,9080,,20000,,12904,,13760,,13744,,1.014402,,0.812793,,1.014402,,0.973631,,0.812793,,0.973631,,1.569619,,0.812793,,1.569619,,0.812793,,0.812793,,0.812793,,,,,,,,1.014402,,0.973631,,1.569619,,0.812793,,0.812793,,0.401856,,0.389624,,0.568421,,0.341373,,0.181524,,32.050131,,33.392237,,20.713115,,40,,40,,,,,,,,,,,,13760,,0.812793,,0.812793,,0.812793,,0.812793,,0.341373,,40,,, +1941,1,0.128476,3,0,0,2,5,,3,3,Halsted,Rd,633802,0,0.128,0,2.753059,8,4.5,0.308343,,0.308343,,25,,21000,,4767,,10500,,6775,,7224,,7216,,0.374122,,0.308343,,0.374122,,0.328063,,0.308343,,0.328063,,0.386205,,0.308343,,0.386205,,0.308343,,0.308343,,0.308343,,,,,,,,0.374122,,0.328063,,0.386205,,0.308343,,0.308343,,0.135362,,0.121544,,0.138987,,0.115628,,0.060384,,20.60444,,23.497244,,19.959762,,25,,25,,,,,,,,,,,,7224,,0.308343,,0.308343,,0.308343,,0.308343,,0.115628,,25,,, +2018,1,0.463984,3,0,0,1,1,RFF,3,3,W I 96/E I 696,RAMP,634208,0,0.464,0,,0.58,7,0.506164,,0.506164,,55,,57000,,12939,,28500,,18388,,19608,,19585,,0.678018,,0.506164,,0.678018,,0.528138,,0.506164,,0.528138,,0.672212,,0.506164,,0.672212,,0.506164,,0.506164,,0.506164,,,,,,,,0.678018,,0.528138,,0.672212,,0.506164,,0.506164,,0.286922,,0.241959,,0.285181,,0.235366,,0.126963,,41.05944,,52.71163,,41.414035,,55,,55,,,,,,,,,,,,19608,,0.506164,,0.506164,,0.506164,,0.506164,,0.235366,,55,,, +2054,0,0.182802,1,1,0,2,4,,3,3,Drake,Rd,633804,0.819,1.002,0,3.917194,6,4.5,0.332368,0.332368,0.332368,0.332368,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.651478,0.429279,0.332368,0.332368,0.651478,0.429279,0.386556,0.412407,0.332368,0.332368,0.386556,0.412407,0.509468,0.860795,0.332368,0.332368,0.509468,0.860795,0.332368,0.332368,0.332368,0.332368,0.332368,0.332368,,,,,,,0.651478,0.429279,0.386556,0.412407,0.509468,0.860795,0.332368,0.332368,0.332368,0.332368,0.228348,0.161688,0.148871,0.156626,0.185745,0.291143,0.132615,0.132615,0.069963,0.069963,16.835781,25.55016,28.374028,26.595461,21.528635,12.741881,33,33,33,33,,,,,,,,,,,2580,2580,0.332368,0.332368,0.332368,0.332368,0.332368,0.332368,0.332368,0.332368,0.132615,0.132615,33,33,, +40010,-1,0.022116,0,2,0,2,3,,4,3,14 Mile,Rd,5499977,0.098,0.12,0,0.47392,3.7,5,,0.033174,,0.033174,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.034063,,0.033174,,0.034063,,0.033284,,0.033174,,0.033284,,0.033618,,0.033174,,0.033618,,0.033174,,0.033174,,0.033174,,,,,,,,0.034063,,0.033284,,0.033618,,0.033174,,0.033174,,0.0142,,0.013966,,0.014066,,0.013933,,0.007409,,38.956925,,39.868061,,39.472716,,40,,40,,,,,,,,,,,,7568,,0.033174,,0.033174,,0.033174,,0.033174,,0.013933,,40,, +2091,0,0.257981,1,1,1,2,4,,4,3,Walnut Lake,Rd,622906,3.942,4.2,0,5.528156,4.5,4.5,0.407338,0.407338,0.407338,0.407338,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,1.751881,0.984402,0.407338,0.407338,1.751881,0.984402,0.74458,0.755469,0.407338,0.407338,0.74458,0.755469,1.166909,1.93062,0.407338,0.407338,1.166909,1.93062,0.407338,0.407338,0.407338,0.407338,0.407338,0.407338,,,,,,,1.751881,0.984402,0.74458,0.755469,1.166909,1.93062,0.407338,0.407338,0.407338,0.407338,0.572001,0.341757,0.26981,0.273077,0.396509,0.625623,0.168638,0.168638,0.089479,0.089479,8.835552,15.724099,20.788683,20.489056,13.264817,8.017547,38,38,38,38,,,,,,,,,,,3406,3406,0.407338,0.407338,0.407338,0.407338,0.407338,0.407338,0.407338,0.407338,0.168638,0.168638,38,38,, +2103,0,0.180217,1,1,1,2,5,,3,3,Shiawassee,,633209,0.204,0.384,0,3.861785,8,4.5,0.43252,0.43252,0.43252,0.43252,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.503537,0.442161,0.43252,0.43252,0.503537,0.442161,0.433226,0.434018,0.43252,0.43252,0.433226,0.434018,0.459127,0.522284,0.43252,0.43252,0.459127,0.522284,0.43252,0.43252,0.43252,0.43252,0.43252,0.43252,,,,,,,0.503537,0.442161,0.433226,0.434018,0.459127,0.522284,0.43252,0.43252,0.43252,0.43252,0.1835,0.165087,0.162407,0.162644,0.170177,0.189124,0.162195,0.162195,0.084702,0.084702,21.474088,24.454916,24.959261,24.913734,23.55124,20.703281,25,25,25,25,,,,,,,,,,,2649,2649,0.43252,0.43252,0.43252,0.43252,0.43252,0.43252,0.43252,0.43252,0.162195,0.162195,25,25,, +2137,0,0.395285,1,1,0,2,5,,3,3,Folsom,,634102,0.455,0.85,0,8.470403,8,4.5,0.948685,0.948685,0.948685,0.948685,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.966543,0.949963,0.948685,0.948685,0.966543,0.949963,0.952605,0.950589,0.948685,0.948685,0.952605,0.950589,0.991603,0.956786,0.948685,0.948685,0.991603,0.956786,0.948685,0.948685,0.948685,0.948685,0.948685,0.948685,,,,,,,0.966543,0.949963,0.952605,0.950589,0.991603,0.956786,0.948685,0.948685,0.948685,0.948685,0.361114,0.35614,0.356933,0.356328,0.368632,0.358187,0.355757,0.355757,0.185784,0.185784,24.53811,24.966368,24.897135,24.949939,23.917961,24.788338,25,25,25,25,,,,,,,,,,,2408,2408,0.948685,0.948685,0.948685,0.948685,0.948685,0.948685,0.948685,0.948685,0.355757,0.355757,25,25,, +2227,0,0.198571,3,3,1,2,3,,3,3,Greenfield,Rd,648307,1.506,1.704,0,4.255088,5,5,0.340407,0.340407,0.340407,0.340407,35,35,34100,34100,7741,7741,17050,17050,11001,11001,11730,11730,11717,11717,0.508659,0.548107,0.340407,0.340407,0.508659,0.548107,0.41266,0.457854,0.340407,0.340407,0.41266,0.457854,0.549437,0.710953,0.340407,0.340407,0.549437,0.710953,0.340407,0.340407,0.340407,0.340407,0.340407,0.340407,,,,,,,0.508659,0.548107,0.41266,0.457854,0.549437,0.710953,0.340407,0.340407,0.340407,0.340407,0.18834,0.200175,0.159541,0.173099,0.200574,0.249029,0.137865,0.137865,0.072904,0.072904,23.422859,21.737066,28.871827,26.021953,21.684472,16.758141,35,35,35,35,,,,,,,,,,,11730,11730,0.340407,0.340407,0.340407,0.340407,0.340407,0.340407,0.340407,0.340407,0.137865,0.137865,35,35,, +2243,0,0.206755,1,1,0,2,7,,3,3,Scotia,,648205,0.637,0.844,0,4.430466,7,4.5,0.620265,0.620265,0.620265,0.620265,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.817264,1.17705,0.620265,0.620265,0.817264,1.17705,0.810654,0.919998,0.620265,0.620265,0.810654,0.919998,1.113542,1.156931,0.620265,0.620265,1.113542,1.156931,0.620265,0.620265,0.620265,0.620265,0.620265,0.620265,,,,,,,0.817264,1.17705,0.810654,0.919998,1.113542,1.156931,0.620265,0.620265,0.620265,0.620265,0.282395,0.390331,0.280412,0.313215,0.371278,0.384295,0.223295,0.223295,0.115783,0.115783,15.179067,10.539316,15.302827,13.484058,11.140407,10.722599,20,20,20,20,,,,,,,,,,,1892,1892,0.620265,0.620265,0.620265,0.620265,0.620265,0.620265,0.620265,0.620265,0.223295,0.223295,20,20,, +2266,1,3.892313,3,0,0,1,1,,4,3,N I 75,,647308,25.603,29.494,0,,0.8,7.5,3.336268,,3.336268,,70,,66000,,14982,,33000,,21292,,22704,,22678,,3.338168,,3.336268,,3.338168,,3.337628,,3.336268,,3.337628,,3.982396,,3.336268,,3.982396,,3.336268,,3.336268,,3.336268,,,,,,,,3.338168,,3.337628,,3.982396,,3.336268,,3.336268,,1.702067,,1.701905,,1.895335,,1.701497,,0.928595,,69.960163,,69.971492,,58.642777,,70,,70,,,,,,,,,,,,22704,,3.336268,,3.336268,,3.336268,,3.336268,,1.701497,,70,,, +2301,1,0.566625,4,0,0,1,1,,3,3,N I 75,,647308,1.514,2.08,0,,0.58,7,0.523038,,0.523038,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.634114,,0.523038,,0.634114,,0.541204,,0.523038,,0.541204,,0.632204,,0.523038,,0.632204,,0.523038,,0.523038,,0.523038,,,,,,,,0.634114,,0.541204,,0.632204,,0.523038,,0.523038,,0.292227,,0.264354,,0.291654,,0.258904,,0.140784,,53.614174,,62.818271,,53.776167,,65,,65,,,,,,,,,,,,30272,,0.523038,,0.523038,,0.523038,,0.523038,,0.258904,,65,,, +2322,1,0.416248,2,0,0,2,5,,3,3,Chrysler,Dr,646902,1.398,1.814,0,8.919608,8,4.5,0.998996,,0.998996,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.999009,,0.998996,,0.999009,,0.998996,,0.998996,,0.998996,,1.001595,,0.998996,,1.001595,,0.998996,,0.998996,,0.998996,,,,,,,,0.999009,,0.998996,,1.001595,,0.998996,,0.998996,,0.374628,,0.374624,,0.375403,,0.374624,,0.195637,,24.999667,,25,,24.935125,,25,,25,,,,,,,,,,,,4816,,0.998996,,0.998996,,0.998996,,0.998996,,0.374624,,25,,, +2379,0,0.167524,2,2,0,2,4,,3,3,John R,Rd,646806,1.336,1.503,0,3.589797,6,4.5,0.304589,0.304589,0.304589,0.304589,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.424343,0.403456,0.304589,0.304589,0.424343,0.403456,0.361806,0.345256,0.304589,0.304589,0.361806,0.345256,0.492325,0.443542,0.304589,0.304589,0.492325,0.443542,0.304589,0.304589,0.304589,0.304589,0.304589,0.304589,,,,,,,0.424343,0.403456,0.361806,0.345256,0.492325,0.443542,0.304589,0.304589,0.304589,0.304589,0.157457,0.151191,0.138696,0.133731,0.177852,0.163217,0.121531,0.121531,0.064116,0.064116,23.687039,24.913309,27.781309,29.112943,20.416255,22.661723,33,33,33,33,,,,,,,,,,,5160,5160,0.304589,0.304589,0.304589,0.304589,0.304589,0.304589,0.304589,0.304589,0.121531,0.121531,33,33,, +2402,-1,0.428505,0,3,0,2,5,,3,3,Chrysler,Dr,646702,1.395,1.824,0,9.182248,8,4.5,,1.028412,,1.028412,,25,,21000,,4767,,10500,,6775,,7224,,7216,,1.028525,,1.028412,,1.028525,,1.028493,,1.028412,,1.028493,,1.029046,,1.028412,,1.029046,,1.028412,,1.028412,,1.028412,,,,,,,,1.028525,,1.028493,,1.029046,,1.028412,,1.028412,,0.385688,,0.385679,,0.385845,,0.385654,,0.201397,,24.997251,,24.998014,,24.984588,,25,,25,,,,,,,,,,,,7224,,1.028412,,1.028412,,1.028412,,1.028412,,0.385654,,25,, +2456,1,1.413584,2,0,0,1,2,,3,3,E M 5,,657303,16.492,17.905,0,,0.58,7,1.304847,,1.304847,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.312344,,1.304847,,1.312344,,1.305254,,1.304847,,1.305254,,1.309852,,1.304847,,1.309852,,1.304847,,1.304847,,1.304847,,,,,,,,1.312344,,1.305254,,1.309852,,1.304847,,1.304847,,0.648148,,0.646021,,0.647401,,0.645899,,0.351221,,64.628682,,64.97972,,64.751621,,65,,65,,,,,,,,,,,,15136,,1.304847,,1.304847,,1.304847,,1.304847,,0.645899,,65,,, +2618,0,0.429235,1,1,1,2,4,,4,3,Lafayette,St,656507,2.058,2.487,0,9.197882,4.5,4.5,0.677739,0.677739,0.677739,0.677739,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.993034,1.114675,0.677739,0.677739,0.993034,1.114675,0.838916,0.842561,0.677739,0.677739,0.838916,0.842561,1.193963,1.112365,0.677739,0.677739,1.193963,1.112365,0.677739,0.677739,0.677739,0.677739,0.677739,0.677739,,,,,,,0.993034,1.114675,0.838916,0.842561,1.193963,1.112365,0.677739,0.677739,0.677739,0.677739,0.375172,0.411665,0.328937,0.33003,0.435451,0.410972,0.280584,0.280584,0.148877,0.148877,25.934743,23.10456,30.699217,30.566434,21.570237,23.152532,38,38,38,38,,,,,,,,,,,3406,3406,0.677739,0.677739,0.677739,0.677739,0.677739,0.677739,0.677739,0.677739,0.280584,0.280584,38,38,, +2688,0,0.996429,1,1,0,2,5,,5,3,Oak Hill,Rd,651801,8.361,9.358,0,21.352058,3.7,5,1.992859,1.992859,1.992859,1.992859,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.992873,1.994582,1.992859,1.992859,1.992873,1.994582,1.992859,1.992859,1.992859,1.992859,1.992859,1.992859,1.99417,1.99291,1.992859,1.992859,1.99417,1.99291,1.992859,1.992859,1.992859,1.992859,1.992859,1.992859,,,,,,,1.992873,1.994582,1.992859,1.992859,1.99417,1.99291,1.992859,1.992859,1.992859,1.992859,0.777219,0.777732,0.777215,0.777215,0.777608,0.77723,0.777215,0.777215,0.408536,0.408536,29.999789,29.974084,30,30,29.980276,29.999223,30,30,30,30,,,,,,,,,,,2580,2580,1.992859,1.992859,1.992859,1.992859,1.992859,1.992859,1.992859,1.992859,0.777215,0.777215,30,30,, +2735,1,0.562431,2,0,0,1,2,,3,3,E M 5,,657303,13.622,14.184,0,,0.58,7,0.519167,,0.519167,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.523496,,0.519167,,0.523496,,0.519296,,0.519167,,0.519296,,0.522325,,0.519167,,0.522325,,0.519167,,0.519167,,0.519167,,,,,,,,0.523496,,0.519296,,0.522325,,0.519167,,0.519167,,0.258286,,0.257026,,0.257935,,0.256988,,0.139742,,64.46251,,64.983805,,64.607002,,65,,65,,,,,,,,,,,,15136,,0.519167,,0.519167,,0.519167,,0.519167,,0.256988,,65,,, +2785,0,0.633083,1,1,0,2,3,,5,3,Milford,Rd,656804,0,0.633,0,13.566061,1.7,4,0.759699,0.759699,0.759699,0.759699,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.771186,0.872323,0.759699,0.759699,0.771186,0.872323,0.764634,0.763489,0.759699,0.759699,0.764634,0.763489,0.915833,0.800587,0.759699,0.759699,0.915833,0.800587,0.759699,0.759699,0.759699,0.759699,0.759699,0.759699,,,,,,,0.771186,0.872323,0.764634,0.763489,0.915833,0.800587,0.759699,0.759699,0.759699,0.759699,0.345311,0.375652,0.343345,0.343002,0.388705,0.354131,0.341865,0.341865,0.183594,0.183594,49.255284,43.544634,49.677349,49.751837,41.475891,47.446379,50,50,50,50,,,,,,,,,,,3096,3096,0.759699,0.759699,0.759699,0.759699,0.759699,0.759699,0.759699,0.759699,0.341865,0.341865,50,50,, +2834,0,0.560576,1,1,0,2,5,,4,3,Martindale,Rd,656802,0,0.56,0,12.012343,5.8,4.5,1.245724,1.245724,1.245724,1.245724,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.249458,1.286014,1.245724,1.245724,1.249458,1.286014,1.246039,1.246067,1.245724,1.245724,1.246039,1.246067,1.293259,1.262974,1.245724,1.245724,1.293259,1.262974,1.245724,1.245724,1.245724,1.245724,1.245724,1.245724,,,,,,,1.249458,1.286014,1.246039,1.246067,1.293259,1.262974,1.245724,1.245724,1.245724,1.245724,0.475741,0.486708,0.474715,0.474724,0.488881,0.479796,0.474621,0.474621,0.248522,0.248522,26.919331,26.154128,26.993187,26.992587,26.007593,26.631248,27,27,27,27,,,,,,,,,,,2580,2580,1.245724,1.245724,1.245724,1.245724,1.245724,1.245724,1.245724,1.245724,0.474621,0.474621,27,27,, +2896,-1,3.867858,0,2,0,1,2,,3,3,W M 5,,657304,14.133,18,0,,0.58,7,,3.570331,,3.570331,,65,,44000,,9988,,22000,,14194,,15136,,15118,,3.583085,,3.570331,,3.583085,,3.571283,,3.570331,,3.571283,,3.591455,,3.570331,,3.591455,,3.570331,,3.570331,,3.570331,,,,,,,,3.583085,,3.571283,,3.591455,,3.570331,,3.570331,,1.77114,,1.7676,,1.773651,,1.767314,,0.961014,,64.768635,,64.982663,,64.617682,,65,,65,,,,,,,,,,,,15136,,3.570331,,3.570331,,3.570331,,3.570331,,1.767314,,65,, +3216,0,0.248418,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.997,2.246,0,5.323243,6,4.5,0.451669,0.451669,0.451669,0.451669,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.73677,0.514698,0.451669,0.451669,0.73677,0.514698,0.541087,0.504373,0.451669,0.451669,0.541087,0.504373,0.69763,0.656638,0.451669,0.451669,0.69763,0.656638,0.451669,0.451669,0.451669,0.451669,0.451669,0.451669,,,,,,,0.73677,0.514698,0.541087,0.504373,0.69763,0.656638,0.451669,0.451669,0.451669,0.451669,0.265746,0.199124,0.207041,0.196027,0.254004,0.241707,0.180216,0.180216,0.095076,0.095076,20.230311,28.95891,27.546529,29.551712,21.365319,22.699097,33,33,33,33,,,,,,,,,,,2580,2580,0.451669,0.451669,0.451669,0.451669,0.451669,0.451669,0.451669,0.451669,0.180216,0.180216,33,33,, +3227,0,0.186274,1,1,1,2,4,,3,3,Evergreen,Rd,666003,1.509,1.695,0,3.991579,6,4.5,0.338679,0.338679,0.338679,0.338679,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.615655,0.340116,0.338679,0.338679,0.615655,0.340116,0.456644,0.379619,0.338679,0.338679,0.456644,0.379619,0.438,0.703737,0.338679,0.338679,0.438,0.703737,0.338679,0.338679,0.338679,0.338679,0.338679,0.338679,,,,,,,0.615655,0.340116,0.456644,0.379619,0.438,0.703737,0.338679,0.338679,0.338679,0.338679,0.218226,0.135564,0.170523,0.147415,0.164929,0.24465,0.135133,0.135133,0.071292,0.071292,18.153712,32.860581,24.475119,29.441183,25.516974,15.881543,33,33,33,33,,,,,,,,,,,2838,2838,0.338679,0.338679,0.338679,0.338679,0.338679,0.338679,0.338679,0.338679,0.135133,0.135133,33,33,, +3311,0,0.467013,1,1,0,2,5,,4,3,Taft,Rd,656608,1.998,2.465,0,10.007425,5.8,4.5,1.037807,1.037807,1.037807,1.037807,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.149693,1.159805,1.037807,1.037807,1.149693,1.159805,1.071709,1.063172,1.037807,1.037807,1.071709,1.063172,1.274026,1.251208,1.037807,1.037807,1.274026,1.251208,1.037807,1.037807,1.037807,1.037807,1.037807,1.037807,,,,,,,1.149693,1.159805,1.071709,1.063172,1.274026,1.251208,1.037807,1.037807,1.037807,1.037807,0.42897,0.432004,0.405575,0.403014,0.46627,0.459425,0.395404,0.395404,0.207043,0.207043,24.37241,24.159912,26.145906,26.35583,21.993885,22.394991,27,27,27,27,,,,,,,,,,,2580,2580,1.037807,1.037807,1.037807,1.037807,1.037807,1.037807,1.037807,1.037807,0.395404,0.395404,27,27,, +3324,0,0.65931,1,1,0,2,4,,4,3,Maybee,Rd,653405,2.216,2.875,0,14.128074,4.5,4.5,1.041016,1.041016,1.041016,1.041016,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.071234,1.659612,1.041016,1.041016,1.071234,1.659612,1.047782,1.07012,1.041016,1.041016,1.047782,1.07012,1.618864,1.240128,1.041016,1.041016,1.618864,1.240128,1.041016,1.041016,1.041016,1.041016,1.041016,1.041016,,,,,,,1.071234,1.659612,1.047782,1.07012,1.618864,1.240128,1.041016,1.041016,1.041016,1.041016,0.440046,0.616559,0.433011,0.439712,0.604335,0.490714,0.430981,0.430981,0.228677,0.228677,36.928072,23.836059,37.7546,36.9665,24.436029,31.898798,38,38,38,38,,,,,,,,,,,3096,3096,1.041016,1.041016,1.041016,1.041016,1.041016,1.041016,1.041016,1.041016,0.430981,0.430981,38,38,, +3339,0,0.442166,1,1,0,2,4,,4,3,Beck,Rd,656605,2.004,2.446,0,9.474987,4.5,4.5,0.698157,0.698157,0.698157,0.698157,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.257863,0.924938,0.698157,0.698157,1.257863,0.924938,0.938588,0.892929,0.698157,0.698157,0.938588,0.892929,1.182784,1.350317,0.698157,0.698157,1.182784,1.350317,0.698157,0.698157,0.698157,0.698157,0.698157,0.698157,,,,,,,1.257863,0.924938,0.938588,0.892929,1.182784,1.350317,0.698157,0.698157,0.698157,0.698157,0.456949,0.357071,0.361166,0.347469,0.434425,0.484685,0.289037,0.289037,0.153362,0.153362,21.091306,28.682968,28.265833,29.711174,22.4301,19.647213,38,38,38,38,,,,,,,,,,,3096,3096,0.698157,0.698157,0.698157,0.698157,0.698157,0.698157,0.698157,0.698157,0.289037,0.289037,38,38,, +3417,0,0.580011,1,1,0,2,3,,3,3,10 Mile,Rd,656510,10.82,11.4,0,12.428812,5,5,0.994305,0.994305,0.994305,0.994305,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.583842,1.204202,0.994305,0.994305,1.583842,1.204202,1.096508,1.151067,0.994305,0.994305,1.096508,1.151067,1.322012,1.914263,0.994305,0.994305,1.322012,1.914263,0.994305,0.994305,0.994305,0.994305,0.994305,0.994305,,,,,,,1.583842,1.204202,1.096508,1.151067,1.322012,1.914263,0.994305,0.994305,0.994305,0.994305,0.579555,0.465663,0.433355,0.449722,0.501006,0.678681,0.402694,0.402694,0.212947,0.212947,21.972309,28.899367,31.737716,30.233413,26.324015,18.179669,35,35,35,35,,,,,,,,,,,3784,3784,0.994305,0.994305,0.994305,0.994305,0.994305,0.994305,0.994305,0.994305,0.402694,0.402694,35,35,, +3443,0,0.581993,2,2,1,2,3,,4,3,Highland,Rd,648906,16.996,17.578,0,12.471286,3.7,5,0.87299,0.87299,0.87299,0.87299,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.768588,1.075162,0.87299,0.87299,1.768588,1.075162,1.015102,0.996911,0.87299,0.87299,1.015102,0.996911,1.292285,1.770571,0.87299,0.87299,1.292285,1.770571,0.87299,0.87299,0.87299,0.87299,0.87299,0.87299,,,,,,,1.768588,1.075162,1.015102,0.996911,1.292285,1.770571,0.87299,0.87299,0.87299,0.87299,0.635335,0.427307,0.409289,0.403832,0.492444,0.63593,0.366656,0.366656,0.194968,0.194968,19.744339,32.478446,34.40009,35.027803,27.021597,19.722222,40,40,40,40,,,,,,,,,,,7946,7946,0.87299,0.87299,0.87299,0.87299,0.87299,0.87299,0.87299,0.87299,0.366656,0.366656,40,40,, +3456,0,0.188281,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,7.875,8.063,0,4.034588,3.7,5,0.282421,0.282421,0.282421,0.282421,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.511281,0.473875,0.282421,0.282421,0.511281,0.473875,0.392642,0.373184,0.282421,0.282421,0.392642,0.373184,0.68222,0.536766,0.282421,0.282421,0.68222,0.536766,0.282421,0.282421,0.282421,0.282421,0.282421,0.282421,,,,,,,0.511281,0.473875,0.392642,0.373184,0.68222,0.536766,0.282421,0.282421,0.282421,0.282421,0.187275,0.176053,0.151683,0.145846,0.238557,0.19492,0.118617,0.118617,0.063074,0.063074,22.095183,23.8393,28.771351,30.27152,16.558949,21.046111,40,40,40,40,,,,,,,,,,,7946,7946,0.282421,0.282421,0.282421,0.282421,0.282421,0.282421,0.282421,0.282421,0.118617,0.118617,40,40,, +3507,-1,0.23632,0,2,0,1,2,,3,3,W M 5,,657304,13.897,14.133,0,,0.58,7,,0.218142,,0.218142,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.218177,,0.218142,,0.218177,,0.218144,,0.218142,,0.218144,,0.218221,,0.218142,,0.218221,,0.218142,,0.218142,,0.218142,,,,,,,,0.218177,,0.218144,,0.218221,,0.218142,,0.218142,,0.107991,,0.107981,,0.108004,,0.10798,,0.058717,,64.989623,,64.999445,,64.976276,,65,,65,,,,,,,,,,,,15136,,0.218142,,0.218142,,0.218142,,0.218142,,0.10798,,65,, +3656,1,0.098364,1,0,0,1,2,ROF,3,3,N M 10/10 Mile,RAMP,687802,0,0.098,0,,2.24,5,0.168623,,0.168623,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.20757,,0.168623,,0.20757,,0.25834,,0.168623,,0.25834,,0.272619,,0.168623,,0.272619,,0.168623,,0.168623,,0.168623,,,,,,,,0.20757,,0.25834,,0.272619,,0.168623,,0.168623,,0.079977,,0.095207,,0.099491,,0.068292,,0.036114,,28.432835,,22.845152,,21.648566,,35,,35,,,,,,,,,,,,5074,,0.168623,,0.168623,,0.168623,,0.168623,,0.068292,,35,,, +3710,0,0.595215,2,2,1,2,4,,3,3,Lahser,Rd,685510,1.423,2.018,0,12.754618,6,4.5,1.08221,1.08221,1.08221,1.08221,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.158008,1.08462,1.08221,1.08221,1.158008,1.08462,1.102658,1.088223,1.08221,1.08221,1.102658,1.088223,1.102373,1.156159,1.08221,1.08221,1.102373,1.156159,1.08221,1.08221,1.08221,1.08221,1.08221,1.08221,,,,,,,1.158008,1.08462,1.102658,1.088223,1.102373,1.156159,1.08221,1.08221,1.08221,1.08221,0.454541,0.432525,0.437936,0.433606,0.437851,0.453986,0.431802,0.431802,0.227805,0.227805,30.839956,32.926669,32.388052,32.817673,32.396423,30.889298,33,33,33,33,,,,,,,,,,,5418,5418,1.08221,1.08221,1.08221,1.08221,1.08221,1.08221,1.08221,1.08221,0.431802,0.431802,33,33,, +3718,0,0.393409,1,1,0,2,5,,4,3,Beech,Rd,684801,1.622,2.016,0,8.430194,5.8,4.5,0.874242,0.874242,0.874242,0.874242,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.08707,0.880136,0.874242,0.874242,1.08707,0.880136,0.887429,0.880655,0.874242,0.874242,0.887429,0.880655,0.91508,1.127061,0.874242,0.874242,0.91508,1.127061,0.874242,0.874242,0.874242,0.874242,0.874242,0.874242,,,,,,,1.08707,0.880136,0.887429,0.880655,0.91508,1.127061,0.874242,0.874242,0.874242,0.874242,0.396934,0.334854,0.337042,0.33501,0.345338,0.408932,0.333086,0.333086,0.174411,0.174411,21.713921,26.819193,26.598794,26.803408,25.795064,20.943454,27,27,27,27,,,,,,,,,,,2580,2580,0.874242,0.874242,0.874242,0.874242,0.874242,0.874242,0.874242,0.874242,0.333086,0.333086,27,27,, +3821,0,0.25896,2,2,1,2,3,,4,3,Maple,Rd,683906,6.027,6.285,0,5.549136,3.7,5,0.38844,0.38844,0.38844,0.38844,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.448278,0.413352,0.38844,0.38844,0.448278,0.413352,0.40632,0.405604,0.38844,0.38844,0.40632,0.405604,0.444073,0.478067,0.38844,0.38844,0.444073,0.478067,0.38844,0.38844,0.38844,0.38844,0.38844,0.38844,,,,,,,0.448278,0.413352,0.40632,0.405604,0.444073,0.478067,0.38844,0.38844,0.38844,0.38844,0.181096,0.170618,0.168509,0.168294,0.179835,0.190033,0.163145,0.163145,0.086751,0.086751,34.660581,37.589201,38.239791,38.30722,34.988802,32.500819,40,40,40,40,,,,,,,,,,,7946,7946,0.38844,0.38844,0.38844,0.38844,0.38844,0.38844,0.38844,0.38844,0.163145,0.163145,40,40,, +3888,-1,0.429984,0,3,0,1,1,,3,4,W I 94,,798502,0.983,1.413,0,,0.58,7,,0.396908,,0.396908,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.444185,,0.396908,,0.444185,,0.398956,,0.396908,,0.398956,,0.416592,,0.396908,,0.416592,,0.396908,,0.396908,,0.396908,,,,,,,,0.444185,,0.398956,,0.416592,,0.396908,,0.396908,,0.210653,,0.197084,,0.202375,,0.196469,,0.106834,,58.081728,,64.666394,,61.928746,,65,,65,,,,,,,,,,,,22704,,0.396908,,0.396908,,0.396908,,0.396908,,0.196469,,65,, +3940,1,0.981491,3,0,0,1,2,,3,3,S M 10,,710010,6.952,7.934,0,,0.58,7,0.905992,,0.905992,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.914594,,0.905992,,0.914594,,0.913,,0.905992,,0.913,,1.018056,,0.905992,,1.018056,,0.905992,,0.905992,,0.905992,,,,,,,,0.914594,,0.913,,1.018056,,0.905992,,0.905992,,0.451047,,0.450568,,0.482085,,0.448466,,0.243863,,64.388647,,64.501076,,57.84504,,65,,65,,,,,,,,,,,,22704,,0.905992,,0.905992,,0.905992,,0.905992,,0.448466,,65,,, +3993,1,0.778964,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,1.018,1.797,0,16.692094,5,5,1.168447,,1.168447,,40,,30000,,6810,,15000,,9678,,10320,,10308,,1.504793,,1.168447,,1.504793,,1.303612,,1.168447,,1.303612,,1.679154,,1.168447,,1.679154,,1.168447,,1.168447,,1.168447,,,,,,,,1.504793,,1.303612,,1.679154,,1.168447,,1.168447,,0.591651,,0.531297,,0.64396,,0.490748,,0.260953,,31.059337,,35.852588,,27.834182,,40,,40,,,,,,,,,,,,10320,,1.168447,,1.168447,,1.168447,,1.168447,,0.490748,,40,,, +4053,-1,0.961201,0,3,0,1,2,,3,3,N M 10,,710102,6.934,7.895,0,,0.58,7,,0.887263,,0.887263,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.977156,,0.887263,,0.977156,,0.893529,,0.887263,,0.893529,,0.902444,,0.887263,,0.902444,,0.887263,,0.887263,,0.887263,,,,,,,,0.977156,,0.893529,,0.902444,,0.887263,,0.887263,,0.466163,,0.441075,,0.443749,,0.439195,,0.238821,,59.02034,,64.544121,,63.90655,,65,,65,,,,,,,,,,,,22704,,0.887263,,0.887263,,0.887263,,0.887263,,0.439195,,65,, +4077,0,0.353298,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,8.51,8.863,0,7.570662,4.5,4.5,0.557838,0.557838,0.557838,0.557838,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.251213,0.757743,0.557838,0.557838,1.251213,0.757743,0.790839,0.750255,0.557838,0.557838,0.790839,0.750255,0.956913,1.347227,0.557838,0.557838,0.956913,1.347227,0.557838,0.557838,0.557838,0.557838,0.557838,0.557838,,,,,,,1.251213,0.757743,0.790839,0.750255,0.956913,1.347227,0.557838,0.557838,0.557838,0.557838,0.438957,0.290917,0.300845,0.28867,0.350667,0.467762,0.230945,0.230945,0.122538,0.122538,16.941848,27.974982,26.80426,28.254195,22.152334,15.734439,38,38,38,38,,,,,,,,,,,3096,3096,0.557838,0.557838,0.557838,0.557838,0.557838,0.557838,0.557838,0.557838,0.230945,0.230945,38,38,, +4104,-1,0.653784,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,1.388,2.041,0,14.009663,5,5,,0.980676,,0.980676,,40,,40000,,9080,,20000,,12904,,13760,,13744,,1.019258,,0.980676,,1.019258,,1.048136,,0.980676,,1.048136,,1.397198,,0.980676,,1.397198,,0.980676,,0.980676,,0.980676,,,,,,,,1.019258,,1.048136,,1.397198,,0.980676,,0.980676,,0.423459,,0.432122,,0.536841,,0.411884,,0.219018,,38.485879,,37.425548,,28.075514,,40,,40,,,,,,,,,,,,13760,,0.980676,,0.980676,,0.980676,,0.980676,,0.411884,,40,, +4154,0,0.221001,2,2,1,2,3,,3,4,Harper,Ave,798408,1.121,1.342,0,4.73573,5,5,0.378858,0.378858,0.378858,0.378858,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.386515,0.474901,0.378858,0.378858,0.386515,0.474901,0.384567,0.392252,0.378858,0.378858,0.384567,0.392252,0.480484,0.440517,0.378858,0.378858,0.480484,0.440517,0.378858,0.378858,0.378858,0.378858,0.378858,0.378858,,,,,,,0.386515,0.474901,0.384567,0.392252,0.480484,0.440517,0.378858,0.378858,0.378858,0.378858,0.155734,0.18225,0.15515,0.157456,0.183925,0.171935,0.153438,0.153438,0.081139,0.081139,34.306717,27.921719,34.480437,33.804891,27.597261,30.101128,35,35,35,35,,,,,,,,,,,7946,7946,0.378858,0.378858,0.378858,0.378858,0.378858,0.378858,0.378858,0.378858,0.153438,0.153438,35,35,, +4212,1,0.238504,1,0,0,1,1,ROF,3,4,W I 94/9 Mile,RAMP,801501,0,0.239,0,,2.24,5,0.408863,,0.408863,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.464285,,0.408863,,0.464285,,0.479265,,0.408863,,0.479265,,0.677301,,0.408863,,0.677301,,0.408863,,0.408863,,0.408863,,,,,,,,0.464285,,0.479265,,0.677301,,0.408863,,0.408863,,0.182216,,0.18671,,0.246121,,0.16559,,0.087565,,30.822082,,29.85868,,21.128302,,35,,35,,,,,,,,,,,,5074,,0.408863,,0.408863,,0.408863,,0.408863,,0.16559,,35,,, +4315,0,0.387178,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,1.002,1.389,0,8.296674,6,4.5,0.70396,0.70396,0.70396,0.70396,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.899487,0.804659,0.70396,0.70396,0.899487,0.804659,0.765699,0.770768,0.70396,0.70396,0.765699,0.770768,0.898518,1.014612,0.70396,0.70396,0.898518,1.014612,0.70396,0.70396,0.70396,0.70396,0.70396,0.70396,,,,,,,0.899487,0.804659,0.765699,0.770768,0.898518,1.014612,0.70396,0.70396,0.70396,0.70396,0.339538,0.31109,0.299402,0.300922,0.339248,0.374076,0.28088,0.28088,0.148184,0.148184,25.826597,28.870235,30.339196,30.139676,25.854441,22.896133,33,33,33,33,,,,,,,,,,,5160,5160,0.70396,0.70396,0.70396,0.70396,0.70396,0.70396,0.70396,0.70396,0.28088,0.28088,33,33,, +4337,1,0.439628,3,0,0,1,1,,3,4,E I 94,,798501,0.982,1.421,0,,0.58,7,0.405811,,0.405811,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.421018,,0.405811,,0.421018,,0.408225,,0.405811,,0.408225,,0.473069,,0.405811,,0.473069,,0.405811,,0.405811,,0.405811,,,,,,,,0.421018,,0.408225,,0.473069,,0.405811,,0.405811,,0.205438,,0.201601,,0.221054,,0.200876,,0.109231,,62.652187,,64.615525,,55.758593,,65,,65,,,,,,,,,,,,22704,,0.405811,,0.405811,,0.405811,,0.405811,,0.200876,,65,,, +4473,1,0.319508,4,0,0,1,1,,4,3,E I 696,,710701,4.251,4.57,0,,0.8,7.5,0.273864,,0.273864,,70,,88000,,19976,,44000,,28389,,30272,,30237,,0.303062,,0.273864,,0.303062,,0.274866,,0.273864,,0.274866,,0.285182,,0.273864,,0.285182,,0.273864,,0.273864,,0.273864,,,,,,,,0.303062,,0.274866,,0.285182,,0.273864,,0.273864,,0.14843,,0.139971,,0.143066,,0.139671,,0.076226,,63.255929,,69.744927,,67.221949,,70,,70,,,,,,,,,,,,30272,,0.273864,,0.273864,,0.273864,,0.273864,,0.139671,,70,,, +4497,1,0.266948,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.779,3.046,0,5.720311,8,4.5,0.640675,,0.640675,,25,,21000,,4767,,10500,,6775,,7224,,7216,,0.640709,,0.640675,,0.640709,,0.640679,,0.640675,,0.640679,,0.640675,,0.640675,,0.640675,,0.640675,,0.640675,,0.640675,,,,,,,,0.640709,,0.640679,,0.640675,,0.640675,,0.640675,,0.240263,,0.240254,,0.240253,,0.240253,,0.125465,,24.998659,,24.999854,,24.999999,,25,,25,,,,,,,,,,,,7224,,0.640675,,0.640675,,0.640675,,0.640675,,0.240253,,25,,, +4570,1,0.218743,1,0,0,1,1,RON,3,4,9 Mile/E I 94,RAMP,800909,0,0.219,0,,1.09,4,0.328115,,0.328115,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.475778,,0.328115,,0.475778,,0.384081,,0.328115,,0.384081,,0.383722,,0.328115,,0.383722,,0.328115,,0.328115,,0.328115,,,,,,,,0.475778,,0.384081,,0.383722,,0.328115,,0.328115,,0.182107,,0.154598,,0.15449,,0.137808,,0.073279,,27.585538,,34.171383,,34.20342,,40,,40,,,,,,,,,,,,5074,,0.328115,,0.328115,,0.328115,,0.328115,,0.137808,,40,,, +4764,-1,0.320381,0,4,0,1,1,,4,3,W I 696,,710702,4.315,4.635,0,,0.8,7.5,,0.274613,,0.274613,,70,,88000,,19976,,44000,,28389,,30272,,30237,,0.288335,,0.274613,,0.288335,,0.276192,,0.274613,,0.276192,,0.306425,,0.274613,,0.306425,,0.274613,,0.274613,,0.274613,,,,,,,,0.288335,,0.276192,,0.306425,,0.274613,,0.274613,,0.144169,,0.140526,,0.149596,,0.140052,,0.076434,,66.668469,,69.599677,,62.732699,,70,,70,,,,,,,,,,,,30272,,0.274613,,0.274613,,0.274613,,0.274613,,0.140052,,70,, +4772,0,0.248344,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.272,1.521,0,5.32166,5,5,0.425733,0.425733,0.425733,0.425733,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.51807,0.478284,0.425733,0.425733,0.51807,0.478284,0.435542,0.441551,0.425733,0.425733,0.435542,0.441551,0.514265,0.606831,0.425733,0.425733,0.514265,0.606831,0.425733,0.425733,0.425733,0.425733,0.425733,0.425733,,,,,,,0.51807,0.478284,0.435542,0.441551,0.514265,0.606831,0.425733,0.425733,0.425733,0.425733,0.200123,0.188187,0.175365,0.177167,0.198981,0.226751,0.172422,0.172422,0.091178,0.091178,28.761831,31.15439,34.211727,33.746165,28.974664,24.554838,35,35,35,35,,,,,,,,,,,7568,7568,0.425733,0.425733,0.425733,0.425733,0.425733,0.425733,0.425733,0.425733,0.172422,0.172422,35,35,, +4773,0,0.65105,2,2,1,2,3,,4,3,Walton,Blvd,696509,0.629,1.28,0,13.951072,3.7,5,0.976575,0.976575,0.976575,0.976575,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.135944,1.024363,0.976575,0.976575,1.135944,1.024363,0.990843,0.992309,0.976575,0.976575,0.990843,0.992309,1.102022,1.261797,0.976575,0.976575,1.102022,1.261797,0.976575,0.976575,0.976575,0.976575,0.976575,0.976575,,,,,,,1.135944,1.024363,0.990843,0.992309,1.102022,1.261797,0.976575,0.976575,0.976575,0.976575,0.457972,0.424498,0.414442,0.414882,0.447796,0.495728,0.410162,0.410162,0.218102,0.218102,34.388144,38.133941,39.423994,39.365756,35.44665,30.958229,40,40,40,40,,,,,,,,,,,7946,7946,0.976575,0.976575,0.976575,0.976575,0.976575,0.976575,0.976575,0.976575,0.410162,0.410162,40,40,, +4827,1,0.119623,1,0,0,1,2,RON,3,3,10 Mile/S M 10,RAMP,710509,0,0.12,0,,1.09,4,0.179435,,0.179435,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.19205,,0.179435,,0.19205,,0.208864,,0.179435,,0.208864,,0.32095,,0.179435,,0.32095,,0.179435,,0.179435,,0.179435,,,,,,,,0.19205,,0.208864,,0.32095,,0.179435,,0.179435,,0.079147,,0.084191,,0.117817,,0.075363,,0.040074,,37.372494,,34.364029,,22.362964,,40,,40,,,,,,,,,,,,5074,,0.179435,,0.179435,,0.179435,,0.179435,,0.075363,,40,,, +4871,0,0.24938,1,1,0,2,4,,3,4,Hoover,Rd,798909,1.293,1.543,0,5.343863,6,4.5,0.453419,0.453419,0.453419,0.453419,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.584442,0.48917,0.453419,0.453419,0.584442,0.48917,0.508112,0.495508,0.453419,0.453419,0.508112,0.495508,0.624172,0.601812,0.453419,0.453419,0.624172,0.601812,0.453419,0.453419,0.453419,0.453419,0.453419,0.453419,,,,,,,0.584442,0.48917,0.508112,0.495508,0.624172,0.601812,0.453419,0.453419,0.453419,0.453419,0.220221,0.191639,0.197322,0.193541,0.23214,0.225432,0.180914,0.180914,0.095445,0.095445,25.601877,30.588171,29.447848,30.196909,23.972255,24.862957,33,33,33,33,,,,,,,,,,,2580,2580,0.453419,0.453419,0.453419,0.453419,0.453419,0.453419,0.453419,0.453419,0.180914,0.180914,33,33,, +4909,0,0.242467,2,2,1,2,4,,3,4,Ryan,Rd,799302,1.283,1.526,0,5.195712,6,4.5,0.440848,0.440848,0.440848,0.440848,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.51847,0.494691,0.440848,0.440848,0.51847,0.494691,0.449203,0.448851,0.440848,0.440848,0.449203,0.448851,0.516781,0.557553,0.440848,0.440848,0.516781,0.557553,0.440848,0.440848,0.440848,0.440848,0.440848,0.440848,,,,,,,0.51847,0.494691,0.449203,0.448851,0.516781,0.557553,0.440848,0.440848,0.440848,0.440848,0.199185,0.192051,0.178405,0.178299,0.198678,0.21091,0.175898,0.175898,0.092799,0.092799,28.059483,29.408222,32.386239,32.411645,28.15115,26.092554,33,33,33,33,,,,,,,,,,,5418,5418,0.440848,0.440848,0.440848,0.440848,0.440848,0.440848,0.440848,0.440848,0.175898,0.175898,33,33,, +5024,1,0.806493,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,1.236,2.042,0,17.281999,5,5,1.20974,,1.20974,,40,,40000,,9080,,20000,,12904,,13760,,13744,,1.686958,,1.20974,,1.686958,,1.343309,,1.20974,,1.343309,,1.447393,,1.20974,,1.447393,,1.20974,,1.20974,,1.20974,,,,,,,,1.686958,,1.343309,,1.447393,,1.20974,,1.20974,,0.651256,,0.548162,,0.579387,,0.508091,,0.270175,,28.684525,,36.022673,,33.432248,,40,,40,,,,,,,,,,,,13760,,1.20974,,1.20974,,1.20974,,1.20974,,0.508091,,40,,, +5029,0,0.83398,2,2,1,2,3,,4,3,Dixie,Hwy,689103,6.205,7.038,0,17.871004,3.7,5,1.25097,1.25097,1.25097,1.25097,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,2.118611,1.480403,1.25097,1.25097,2.118611,1.480403,1.457421,1.415963,1.25097,1.25097,1.457421,1.415963,1.729571,2.098506,1.25097,1.25097,1.729571,2.098506,1.25097,1.25097,1.25097,1.25097,1.25097,1.25097,,,,,,,2.118611,1.480403,1.457421,1.415963,1.729571,2.098506,1.25097,1.25097,1.25097,1.25097,0.7857,0.594237,0.587343,0.574905,0.668988,0.779668,0.525408,0.525408,0.279383,0.279383,23.618683,33.800814,34.333818,35.339058,28.931345,23.844972,40,40,40,40,,,,,,,,,,,7946,7946,1.25097,1.25097,1.25097,1.25097,1.25097,1.25097,1.25097,1.25097,0.525408,0.525408,40,40,, +5064,0,0.33062,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,1.196,1.526,0,7.084724,5,5,0.566778,0.566778,0.566778,0.566778,35,35,34100,34100,7741,7741,17050,17050,11001,11001,11730,11730,11717,11717,0.648324,0.692967,0.566778,0.566778,0.648324,0.692967,0.594124,0.590522,0.566778,0.566778,0.594124,0.590522,0.86459,0.705405,0.566778,0.566778,0.86459,0.705405,0.566778,0.566778,0.566778,0.566778,0.566778,0.566778,,,,,,,0.648324,0.692967,0.594124,0.590522,0.86459,0.705405,0.566778,0.566778,0.566778,0.566778,0.254009,0.267402,0.237749,0.236668,0.318889,0.271133,0.229545,0.229545,0.121385,0.121385,30.597704,28.626493,33.389056,33.59269,22.944083,28.121739,35,35,35,35,,,,,,,,,,,11730,11730,0.566778,0.566778,0.566778,0.566778,0.566778,0.566778,0.566778,0.566778,0.229545,0.229545,35,35,, +5310,0,0.44343,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,1.169,1.612,0,9.502078,5,5,0.760166,0.760166,0.760166,0.760166,35,35,34100,34100,7741,7741,17050,17050,11001,11001,11730,11730,11717,11717,0.790609,0.831108,0.760166,0.760166,0.790609,0.831108,0.765782,0.7648,0.760166,0.760166,0.765782,0.7648,0.879738,0.804613,0.760166,0.760166,0.879738,0.804613,0.760166,0.760166,0.760166,0.760166,0.760166,0.760166,,,,,,,0.790609,0.831108,0.765782,0.7648,0.879738,0.804613,0.760166,0.760166,0.760166,0.760166,0.317,0.32915,0.309552,0.309257,0.343739,0.321201,0.307867,0.307867,0.162802,0.162802,33.652315,32.012468,34.743349,34.787941,30.242894,33.066592,35,35,35,35,,,,,,,,,,,11730,11730,0.760166,0.760166,0.760166,0.760166,0.760166,0.760166,0.760166,0.760166,0.307867,0.307867,35,35,, +5696,0,0.661843,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,0.16,0.821,0,14.182344,3.7,5,1.323685,1.323685,1.323685,1.323685,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.406482,1.376298,1.323685,1.323685,1.406482,1.376298,1.331865,1.330641,1.323685,1.323685,1.331865,1.330641,1.464636,1.488652,1.323685,1.323685,1.464636,1.488652,1.323685,1.323685,1.323685,1.323685,1.323685,1.323685,,,,,,,1.406482,1.376298,1.331865,1.330641,1.464636,1.488652,1.323685,1.323685,1.323685,1.323685,0.541076,0.532021,0.518691,0.518324,0.558523,0.565727,0.516237,0.516237,0.271356,0.271356,28.233957,28.853169,29.815762,29.843186,27.112914,26.675517,30,30,30,30,,,,,,,,,,,2580,2580,1.323685,1.323685,1.323685,1.323685,1.323685,1.323685,1.323685,1.323685,0.516237,0.516237,30,30,, +5701,1,0.20225,1,0,0,1,2,ROF,4,8,S US 23/Silver Lake,RAMP,932007,0,0.202,0,,2.24,5,0.303376,,0.303376,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.30354,,0.303376,,0.30354,,0.303624,,0.303376,,0.303624,,0.309405,,0.303376,,0.309405,,0.303376,,0.303376,,0.303376,,,,,,,,0.30354,,0.303624,,0.309405,,0.303376,,0.303376,,0.127467,,0.127492,,0.129227,,0.127418,,0.067754,,39.978325,,39.967333,,39.220513,,40,,40,,,,,,,,,,,,5160,,0.303376,,0.303376,,0.303376,,0.303376,,0.127418,,40,,, +5858,0,0.381141,2,2,0,2,5,,3,4,Greater Mack,Ave,809106,1.142,1.523,0,8.167309,8,4.5,0.914739,0.914739,0.914739,0.914739,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.918972,0.929208,0.914739,0.914739,0.918972,0.929208,0.919198,0.919693,0.914739,0.914739,0.919198,0.919693,0.946542,0.940493,0.914739,0.914739,0.946542,0.940493,0.914739,0.914739,0.914739,0.914739,0.914739,0.914739,,,,,,,0.918972,0.929208,0.919198,0.919693,0.946542,0.940493,0.914739,0.914739,0.914739,0.914739,0.344297,0.347368,0.344365,0.344513,0.352568,0.350753,0.343027,0.343027,0.179136,0.179136,24.88482,24.610717,24.878702,24.865321,24.160008,24.3154,25,25,25,25,,,,,,,,,,,4816,4816,0.914739,0.914739,0.914739,0.914739,0.914739,0.914739,0.914739,0.914739,0.343027,0.343027,25,25,, +5911,1,0.187769,1,0,0,1,2,RON,5,8,Silver Lake/N US 23,RAMP,931609,0,0.188,0,,1.09,4,0.250358,,0.250358,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.254969,,0.250358,,0.254969,,0.250923,,0.250358,,0.250923,,0.250965,,0.250358,,0.250965,,0.250358,,0.250358,,0.250358,,,,,,,,0.254969,,0.250923,,0.250965,,0.250358,,0.250358,,0.110289,,0.109075,,0.109088,,0.108906,,0.058208,,44.186176,,44.898641,,44.891167,,45,,45,,,,,,,,,,,,5160,,0.250358,,0.250358,,0.250358,,0.250358,,0.108906,,45,,, +5918,0,1.162424,1,1,0,2,4,,5,8,Whitmore Lake,Rd,932204,2.989,4.151,0,24.909085,3,4,1.743636,1.743636,1.743636,1.743636,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.743738,1.744593,1.743636,1.743636,1.743738,1.744593,1.743645,1.743646,1.743636,1.743636,1.743645,1.743646,1.747813,1.743676,1.743636,1.743636,1.747813,1.743676,1.743636,1.743636,1.743636,1.743636,1.743636,1.743636,,,,,,,1.743738,1.744593,1.743645,1.743646,1.747813,1.743676,1.743636,1.743636,1.743636,1.743636,0.732358,0.732614,0.73233,0.73233,0.73358,0.732339,0.732327,0.732327,0.389412,0.389412,39.997664,39.978058,39.999794,39.99978,39.904396,39.999073,40,40,40,40,,,,,,,,,,,3096,3096,1.743636,1.743636,1.743636,1.743636,1.743636,1.743636,1.743636,1.743636,0.732327,0.732327,40,40,, +6179,1,0.4207,2,0,0,1,2,,5,8,N US 23,,931510,2.616,3.036,0,,1.02,7,0.3606,,0.3606,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.368626,,0.3606,,0.368626,,0.361066,,0.3606,,0.361066,,0.407961,,0.3606,,0.407961,,0.3606,,0.3606,,0.3606,,,,,,,,0.368626,,0.361066,,0.407961,,0.3606,,0.3606,,0.186314,,0.184046,,0.198114,,0.183906,,0.100367,,68.475816,,69.909571,,61.873517,,70,,70,,,,,,,,,,,,15136,,0.3606,,0.3606,,0.3606,,0.3606,,0.183906,,70,,, +6306,0,2.072463,1,1,0,2,6,,5,8,Fieldcrest,Dr,4105311,1.762,3.833,0,44.409922,5.8,6,4.144926,4.144926,4.144926,4.144926,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,,,,,,,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,1.616521,1.616521,1.616521,1.616521,1.616521,1.616521,1.616521,1.616521,0.84971,0.84971,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,4.144926,1.616521,1.616521,30,30,, +6339,0,0.282662,1,1,0,2,4,,3,4,Hayes,Ave,808510,0,0.283,0,6.057047,6,4.5,0.513931,0.513931,0.513931,0.513931,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.578228,0.588859,0.513931,0.513931,0.578228,0.588859,0.560729,0.558457,0.513931,0.513931,0.560729,0.558457,0.660412,0.613408,0.513931,0.513931,0.660412,0.613408,0.513931,0.513931,0.513931,0.513931,0.513931,0.513931,,,,,,,0.578228,0.588859,0.560729,0.558457,0.660412,0.613408,0.513931,0.513931,0.513931,0.513931,0.224347,0.227537,0.219098,0.218416,0.249003,0.234902,0.205059,0.205059,0.108183,0.108183,29.330552,28.801007,30.245853,30.368927,25.680519,27.648364,33,33,33,33,,,,,,,,,,,2580,2580,0.513931,0.513931,0.513931,0.513931,0.513931,0.513931,0.513931,0.513931,0.205059,0.205059,33,33,, +6489,-1,0.391801,0,2,0,1,2,,5,8,S US 23,,932002,2.647,3.038,0,,1.02,7,,0.335829,,0.335829,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.419183,,0.335829,,0.419183,,0.336352,,0.335829,,0.336352,,0.34348,,0.335829,,0.34348,,0.335829,,0.335829,,0.335829,,,,,,,,0.419183,,0.336352,,0.34348,,0.335829,,0.335829,,0.196279,,0.17143,,0.173568,,0.171273,,0.093472,,56.080682,,69.891097,,68.44073,,70,,70,,,,,,,,,,,,15136,,0.335829,,0.335829,,0.335829,,0.335829,,0.171273,,70,, +6552,1,0.322449,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,1.145,1.467,0,6.90963,5,5,0.483674,,0.483674,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.501126,,0.483674,,0.501126,,0.490121,,0.483674,,0.490121,,0.562358,,0.483674,,0.562358,,0.483674,,0.483674,,0.483674,,,,,,,,0.501126,,0.490121,,0.562358,,0.483674,,0.483674,,0.208379,,0.205077,,0.226748,,0.203143,,0.108021,,38.60702,,39.473866,,34.403305,,40,,40,,,,,,,,,,,,10320,,0.483674,,0.483674,,0.483674,,0.483674,,0.203143,,40,,, +6781,0,0.612301,2,2,0,2,5,,3,4,Sherwood,Ave,804507,1.187,1.799,0,13.120727,8,4.5,1.469521,1.469521,1.469521,1.469521,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,1.469702,1.46959,1.469521,1.469521,1.469702,1.46959,1.469526,1.469528,1.469521,1.469521,1.469526,1.469528,1.481327,1.472584,1.469521,1.469521,1.481327,1.472584,1.469521,1.469521,1.469521,1.469521,1.469521,1.469521,,,,,,,1.469702,1.46959,1.469526,1.469528,1.481327,1.472584,1.469521,1.469521,1.469521,1.469521,0.551125,0.551091,0.551072,0.551073,0.554612,0.551989,0.551071,0.551071,0.287781,0.287781,24.996926,24.998833,24.999919,24.999884,24.800758,24.948008,25,25,25,25,,,,,,,,,,,4816,4816,1.469521,1.469521,1.469521,1.469521,1.469521,1.469521,1.469521,1.469521,0.551071,0.551071,25,25,, +6920,1,0.503122,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,11.35,11.853,0,10.781177,5,5,0.754682,,0.754682,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.905477,,0.754682,,0.905477,,0.823817,,0.754682,,0.823817,,1.059276,,0.754682,,1.059276,,0.754682,,0.754682,,0.754682,,,,,,,,0.905477,,0.823817,,1.059276,,0.754682,,0.754682,,0.362205,,0.337707,,0.408345,,0.316967,,0.168546,,33.338562,,36.643225,,28.498035,,40,,40,,,,,,,,,,,,10320,,0.754682,,0.754682,,0.754682,,0.754682,,0.316967,,40,,, +7207,0,0.575306,1,1,0,2,4,,5,8,Chilson,Rd,932808,0,0.575,0,12.327979,3,4,0.862959,0.862959,0.862959,0.862959,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.881005,0.89127,0.862959,0.862959,0.881005,0.89127,0.864632,0.864064,0.862959,0.862959,0.864632,0.864064,0.898583,0.899219,0.862959,0.862959,0.898583,0.899219,0.862959,0.862959,0.862959,0.862959,0.862959,0.862959,,,,,,,0.881005,0.89127,0.864632,0.864064,0.898583,0.899219,0.862959,0.862959,0.862959,0.862959,0.367857,0.370936,0.362945,0.362774,0.37313,0.373321,0.362443,0.362443,0.192727,0.192727,39.180624,38.729403,39.922577,39.948819,38.414196,38.387029,40,40,40,40,,,,,,,,,,,3096,3096,0.862959,0.862959,0.862959,0.862959,0.862959,0.862959,0.862959,0.862959,0.362443,0.362443,40,40,, +7210,0,0.733222,1,1,0,2,4,,5,8,Pettysville,Rd,932802,0,0.733,0,15.711905,3,4,1.099833,1.099833,1.099833,1.099833,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.355738,1.379619,1.099833,1.099833,1.355738,1.379619,1.188254,1.189484,1.099833,1.099833,1.188254,1.189484,1.35958,1.413736,1.099833,1.099833,1.35958,1.413736,1.099833,1.099833,1.099833,1.099833,1.099833,1.099833,,,,,,,1.355738,1.379619,1.188254,1.189484,1.35958,1.413736,1.099833,1.099833,1.099833,1.099833,0.538702,0.545866,0.488456,0.488825,0.539854,0.556101,0.46193,0.46193,0.245629,0.245629,32.449721,31.888036,37.023507,36.985234,32.358024,31.118501,40,40,40,40,,,,,,,,,,,3096,3096,1.099833,1.099833,1.099833,1.099833,1.099833,1.099833,1.099833,1.099833,0.46193,0.46193,40,40,, +7396,0,0.201112,1,1,0,2,5,,5,8,Rushton,Rd,942101,2.468,2.669,0,4.309553,3.7,5,0.402225,0.402225,0.402225,0.402225,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.402339,0.402267,0.402225,0.402225,0.402339,0.402267,0.402228,0.402227,0.402225,0.402225,0.402228,0.402227,0.402409,0.402399,0.402225,0.402225,0.402409,0.402399,0.402225,0.402225,0.402225,0.402225,0.402225,0.402225,,,,,,,0.402339,0.402267,0.402228,0.402227,0.402409,0.402399,0.402225,0.402225,0.402225,0.402225,0.156902,0.15688,0.156869,0.156868,0.156923,0.15692,0.156868,0.156868,0.082456,0.082456,29.991512,29.996876,29.999781,29.999828,29.986264,29.987057,30,30,30,30,,,,,,,,,,,2580,2580,0.402225,0.402225,0.402225,0.402225,0.402225,0.402225,0.402225,0.402225,0.156868,0.156868,30,30,, +7412,0,0.696881,1,1,0,2,5,,5,8,Silverside,Dr,942404,0.538,1.235,0,14.933169,3.7,5,1.393762,1.393762,1.393762,1.393762,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.39633,1.394977,1.393762,1.393762,1.39633,1.394977,1.393958,1.393923,1.393762,1.393762,1.393958,1.393923,1.398107,1.401213,1.393762,1.393762,1.398107,1.401213,1.393762,1.393762,1.393762,1.393762,1.393762,1.393762,,,,,,,1.39633,1.394977,1.393958,1.393923,1.398107,1.401213,1.393762,1.393762,1.393762,1.393762,0.544337,0.543932,0.543626,0.543615,0.544871,0.545803,0.543567,0.543567,0.285721,0.285721,29.944847,29.973884,29.995788,29.996548,29.906779,29.840486,30,30,30,30,,,,,,,,,,,2580,2580,1.393762,1.393762,1.393762,1.393762,1.393762,1.393762,1.393762,1.393762,0.543567,0.543567,30,30,, +7438,0,0.248432,1,1,0,2,5,,5,8,Rickett,Rd,940304,0,0.248,0,5.323542,3.7,5,0.496864,0.496864,0.496864,0.496864,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.497026,0.496932,0.496864,0.496864,0.497026,0.496932,0.496865,0.496865,0.496864,0.496864,0.496865,0.496865,0.497023,0.497154,0.496864,0.496864,0.497023,0.497154,0.496864,0.496864,0.496864,0.496864,0.496864,0.496864,,,,,,,0.497026,0.496932,0.496865,0.496865,0.497023,0.497154,0.496864,0.496864,0.496864,0.496864,0.193825,0.193797,0.193777,0.193777,0.193825,0.193864,0.193777,0.193777,0.101857,0.101857,29.990234,29.995868,29.999939,29.999911,29.990398,29.982469,30,30,30,30,,,,,,,,,,,2580,2580,0.496864,0.496864,0.496864,0.496864,0.496864,0.496864,0.496864,0.496864,0.193777,0.193777,30,30,, +7658,0,0.737201,1,1,0,2,6,,5,8,Marshall,Rd,942010,2.012,2.749,0,15.797161,5.8,6,1.474402,1.474402,1.474402,1.474402,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,,,,,,,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,0.575017,0.575017,0.575017,0.575017,0.575017,0.575017,0.575017,0.575017,0.302252,0.302252,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,1.474402,0.575017,0.575017,30,30,, +7873,0,0.97053,1,1,0,2,5,,5,8,Winans Lake,Rd,940105,0.621,1.591,0,20.797064,3.7,5,1.941059,1.941059,1.941059,1.941059,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.97237,1.941061,1.941059,1.941059,1.97237,1.941061,1.941064,1.94106,1.941059,1.941059,1.941064,1.94106,1.941173,1.968093,1.941059,1.941059,1.941173,1.968093,1.941059,1.941059,1.941059,1.941059,1.941059,1.941059,,,,,,,1.97237,1.941061,1.941064,1.94106,1.941173,1.968093,1.941059,1.941059,1.941059,1.941059,0.766406,0.757014,0.757014,0.757013,0.757047,0.765123,0.757013,0.757013,0.397917,0.397917,29.523762,29.999978,29.999935,29.999993,29.99824,29.58792,30,30,30,30,,,,,,,,,,,2580,2580,1.941059,1.941059,1.941059,1.941059,1.941059,1.941059,1.941059,1.941059,0.757013,0.757013,30,30,, +7888,0,1.111605,1,1,0,2,5,,5,8,Doane,Rd,942306,0,1.111,0,23.820116,3.7,5,2.223211,2.223211,2.223211,2.223211,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.223303,2.223383,2.223211,2.223211,2.223303,2.223383,2.223212,2.223212,2.223211,2.223211,2.223212,2.223212,2.223681,2.223382,2.223211,2.223211,2.223681,2.223382,2.223211,2.223211,2.223211,2.223211,2.223211,2.223211,,,,,,,2.223303,2.223383,2.223212,2.223212,2.223681,2.223382,2.223211,2.223211,2.223211,2.223211,0.86708,0.867104,0.867053,0.867053,0.867193,0.867104,0.867052,0.867052,0.455758,0.455758,29.998754,29.997677,29.99998,29.999982,29.99366,29.997691,30,30,30,30,,,,,,,,,,,2580,2580,2.223211,2.223211,2.223211,2.223211,2.223211,2.223211,2.223211,2.223211,0.867052,0.867052,30,30,, +7912,0,1.094403,1,1,0,2,5,,5,8,Hamburg,Rd,940101,0,1.094,0,23.451499,3.7,5,2.188807,2.188807,2.188807,2.188807,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.18926,2.509907,2.188807,2.188807,2.18926,2.509907,2.190964,2.190404,2.188807,2.188807,2.190964,2.190404,2.425168,2.192415,2.188807,2.188807,2.425168,2.192415,2.188807,2.188807,2.188807,2.188807,2.188807,2.188807,,,,,,,2.18926,2.509907,2.190964,2.190404,2.425168,2.192415,2.188807,2.188807,2.188807,2.188807,0.853771,0.949965,0.854282,0.854114,0.924543,0.854717,0.853635,0.853635,0.448705,0.448705,29.993788,26.162001,29.970454,29.978121,27.07614,29.950621,30,30,30,30,,,,,,,,,,,2580,2580,2.188807,2.188807,2.188807,2.188807,2.188807,2.188807,2.188807,2.188807,0.853635,0.853635,30,30,, +8675,0,0.354836,1,1,0,2,4,,4,6,Nadeau,Rd,1225701,0,0.355,0,7.603639,4.5,4.5,0.560268,0.560268,0.560268,0.560268,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.646305,0.585651,0.560268,0.560268,0.646305,0.585651,0.566941,0.565727,0.560268,0.560268,0.566941,0.565727,0.613047,0.625134,0.560268,0.560268,0.613047,0.625134,0.560268,0.560268,0.560268,0.560268,0.560268,0.560268,,,,,,,0.646305,0.585651,0.566941,0.565727,0.613047,0.625134,0.560268,0.560268,0.560268,0.560268,0.257762,0.239566,0.233953,0.233589,0.247785,0.251411,0.231951,0.231951,0.123072,0.123072,32.941413,36.35301,37.552761,37.633306,34.728451,34.056975,38,38,38,38,,,,,,,,,,,3096,3096,0.560268,0.560268,0.560268,0.560268,0.560268,0.560268,0.560268,0.560268,0.231951,0.231951,38,38,, +8866,0,0.321275,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,0.853,1.174,0,6.884472,3.7,5,0.642551,0.642551,0.642551,0.642551,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.835103,0.643564,0.642551,0.642551,0.835103,0.643564,0.643573,0.643297,0.642551,0.642551,0.643573,0.643297,0.6817,0.663464,0.642551,0.642551,0.6817,0.663464,0.642551,0.642551,0.642551,0.642551,0.642551,0.642551,,,,,,,0.835103,0.643564,0.643573,0.643297,0.6817,0.663464,0.642551,0.642551,0.642551,0.642551,0.30836,0.250899,0.250902,0.250819,0.262339,0.256869,0.250595,0.250595,0.131723,0.131723,23.08282,29.952783,29.952328,29.965179,28.277153,29.054342,30,30,30,30,,,,,,,,,,,2580,2580,0.642551,0.642551,0.642551,0.642551,0.642551,0.642551,0.642551,0.642551,0.250595,0.250595,30,30,, +9295,1,0.391021,1,0,0,1,1,RON,5,6,Carleton Rockwood/S I 275,RAMP,1228306,0,0.391,0,,1.09,4,0.521361,,0.521361,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.521365,,0.521361,,0.521365,,0.52137,,0.521361,,0.52137,,0.521429,,0.521361,,0.521429,,0.521361,,0.521361,,0.521361,,,,,,,,0.521365,,0.52137,,0.521429,,0.521361,,0.521361,,0.226793,,0.226795,,0.226812,,0.226792,,0.121216,,44.999604,,44.999163,,44.994106,,45,,45,,,,,,,,,,,,5160,,0.521361,,0.521361,,0.521361,,0.521361,,0.226792,,45,,, +9303,0,0.634697,1,1,0,2,5,,5,6,Newport,Rd,1228304,1.056,1.69,0,13.60064,3.7,5,1.269393,1.269393,1.269393,1.269393,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.269429,1.269516,1.269393,1.269393,1.269429,1.269516,1.269397,1.269394,1.269393,1.269393,1.269397,1.269394,1.269568,1.269469,1.269393,1.269393,1.269568,1.269469,1.269393,1.269393,1.269393,1.269393,1.269393,1.269393,,,,,,,1.269429,1.269516,1.269397,1.269394,1.269568,1.269469,1.269393,1.269393,1.269393,1.269393,0.495074,0.4951,0.495064,0.495064,0.495116,0.495086,0.495063,0.495063,0.260226,0.260226,29.999156,29.997094,29.999907,29.99997,29.99586,29.998206,30,30,30,30,,,,,,,,,,,2580,2580,1.269393,1.269393,1.269393,1.269393,1.269393,1.269393,1.269393,1.269393,0.495063,0.495063,30,30,, +9316,0,1.65749,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,2.363,4.02,0,35.517651,3,4,2.486236,2.486236,2.486236,2.486236,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.893135,3.631524,2.486236,2.486236,2.893135,3.631524,2.539027,2.56054,2.486236,2.486236,2.539027,2.56054,3.310717,3.166312,2.486236,2.486236,3.310717,3.166312,2.486236,2.486236,2.486236,2.486236,2.486236,2.486236,,,,,,,2.893135,3.631524,2.539027,2.56054,3.310717,3.166312,2.486236,2.486236,2.486236,2.486236,1.166289,1.387806,1.060056,1.06651,1.291563,1.248242,1.044219,1.044219,0.555259,0.555259,34.374275,27.385035,39.168323,38.839244,30.038637,31.408599,40,40,40,40,,,,,,,,,,,3096,3096,2.486236,2.486236,2.486236,2.486236,2.486236,2.486236,2.486236,2.486236,1.044219,1.044219,40,40,, +9325,1,0.394013,1,0,0,1,1,RON,5,6,Carleton Rockwood/N I 275,RAMP,1228105,0,0.394,0,,1.09,4,0.525351,,0.525351,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.527248,,0.525351,,0.527248,,0.525358,,0.525351,,0.525358,,0.525486,,0.525351,,0.525486,,0.525351,,0.525351,,0.525351,,,,,,,,0.527248,,0.525358,,0.525486,,0.525351,,0.525351,,0.229097,,0.22853,,0.228568,,0.228528,,0.122144,,44.838101,,44.999381,,44.988416,,45,,45,,,,,,,,,,,,5160,,0.525351,,0.525351,,0.525351,,0.525351,,0.228528,,45,,, +9334,1,0.720813,3,0,0,1,1,,5,6,N I 275,,1228001,5.85,6.571,0,,1.02,7,0.617839,,0.617839,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.617957,,0.617839,,0.617957,,0.61784,,0.617839,,0.61784,,0.617842,,0.617839,,0.617842,,0.617839,,0.617839,,0.617839,,,,,,,,0.617957,,0.61784,,0.617842,,0.617839,,0.617839,,0.315133,,0.315098,,0.315099,,0.315098,,0.171965,,69.98671,,69.999944,,69.99969,,70,,70,,,,,,,,,,,,22704,,0.617839,,0.617839,,0.617839,,0.617839,,0.315098,,70,,, +11282,1,0.800599,3,0,0,1,1,,4,2,E I 94,,1576405,9.371,10.171,0,,0.8,7.5,0.686228,,0.686228,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.011065,,0.686228,,1.011065,,0.688621,,0.686228,,0.688621,,0.7577,,0.686228,,0.7577,,0.686228,,0.686228,,0.686228,,,,,,,,1.011065,,0.688621,,0.7577,,0.686228,,0.686228,,0.447427,,0.350694,,0.371418,,0.349976,,0.191,,47.510268,,69.756721,,63.397038,,70,,70,,,,,,,,,,,,22704,,0.686228,,0.686228,,0.686228,,0.686228,,0.349976,,70,,, +12530,1,0.972531,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.936,2.908,0,20.839944,3.7,5,1.296708,,1.296708,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.395947,,1.296708,,1.395947,,1.33275,,1.296708,,1.33275,,1.713713,,1.296708,,1.713713,,1.296708,,1.296708,,1.296708,,,,,,,,1.395947,,1.33275,,1.713713,,1.296708,,1.296708,,0.59384,,0.57488,,0.68917,,0.564068,,0.301485,,41.800913,,43.783051,,34.049946,,45,,45,,,,,,,,,,,,7568,,1.296708,,1.296708,,1.296708,,1.296708,,0.564068,,45,,, +13938,-1,0.860795,0,3,0,1,1,,4,2,W I 94,,1588802,9.425,10.285,0,,0.8,7.5,,0.737824,,0.737824,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.777674,,0.737824,,0.777674,,0.73945,,0.737824,,0.73945,,0.925161,,0.737824,,0.925161,,0.737824,,0.737824,,0.737824,,,,,,,,0.777674,,0.73945,,0.925161,,0.737824,,0.737824,,0.388245,,0.376778,,0.432492,,0.37629,,0.205361,,66.413052,,69.846139,,55.82561,,70,,70,,,,,,,,,,,,22704,,0.737824,,0.737824,,0.737824,,0.737824,,0.37629,,70,, +14570,0,0.245636,2,2,1,2,3,,3,2,Ford,Rd,1595510,9.291,9.537,0,5.263634,5,5,0.421091,0.421091,0.421091,0.421091,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.547716,0.466428,0.421091,0.421091,0.547716,0.466428,0.463385,0.451603,0.421091,0.421091,0.463385,0.451603,0.601806,0.693264,0.421091,0.421091,0.601806,0.693264,0.421091,0.421091,0.421091,0.421091,0.421091,0.421091,,,,,,,0.547716,0.466428,0.463385,0.451603,0.601806,0.693264,0.421091,0.421091,0.421091,0.421091,0.208529,0.184143,0.18323,0.179695,0.224756,0.252194,0.170542,0.170542,0.090184,0.090184,26.908434,31.597961,31.805435,32.635231,24.489918,21.259118,35,35,35,35,,,,,,,,,,,7946,7946,0.421091,0.421091,0.421091,0.421091,0.421091,0.421091,0.421091,0.421091,0.170542,0.170542,35,35,, +15799,1,0.378145,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,9.883,10.261,0,8.103114,5,5,0.567218,,0.567218,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.613358,,0.567218,,0.613358,,0.572446,,0.567218,,0.572446,,0.631703,,0.567218,,0.631703,,0.567218,,0.567218,,0.567218,,,,,,,,0.613358,,0.572446,,0.631703,,0.567218,,0.567218,,0.252074,,0.2398,,0.257577,,0.238232,,0.126679,,36.991002,,39.634661,,35.916741,,40,,40,,,,,,,,,,,,13760,,0.567218,,0.567218,,0.567218,,0.567218,,0.238232,,40,,, +16069,1,0.300249,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,5.443,5.743,0,6.433897,6,4.5,0.545906,,0.545906,,33,,22500,,5108,,11250,,7259,,7740,,7731,,0.552143,,0.545906,,0.552143,,0.546646,,0.545906,,0.546646,,0.564845,,0.545906,,0.564845,,0.545906,,0.545906,,0.545906,,,,,,,,0.552143,,0.546646,,0.564845,,0.545906,,0.545906,,0.219688,,0.218039,,0.223498,,0.217817,,0.114913,,32.627238,,32.955329,,31.893538,,33,,33,,,,,,,,,,,,7740,,0.545906,,0.545906,,0.545906,,0.545906,,0.217817,,33,,, +16087,0,0.572659,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,3.312,3.884,0,12.27127,6,4.5,1.041199,1.041199,1.041199,1.041199,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.052551,1.291306,1.041199,1.041199,1.052551,1.291306,1.083921,1.097798,1.041199,1.041199,1.083921,1.097798,1.331392,1.121952,1.041199,1.041199,1.331392,1.121952,1.041199,1.041199,1.041199,1.041199,1.041199,1.041199,,,,,,,1.052551,1.291306,1.083921,1.097798,1.331392,1.121952,1.041199,1.041199,1.041199,1.041199,0.418844,0.490471,0.428255,0.432418,0.502496,0.439664,0.415438,0.415438,0.219172,0.219172,32.644068,26.608371,31.699313,31.298619,25.807249,30.624813,33,33,33,33,,,,,,,,,,,2580,2580,1.041199,1.041199,1.041199,1.041199,1.041199,1.041199,1.041199,1.041199,0.415438,0.415438,33,33,, +16123,0,0.224776,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,9.278,9.502,0,4.816637,6,4.5,0.408684,0.408684,0.408684,0.408684,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.422162,0.413757,0.408684,0.408684,0.422162,0.413757,0.412613,0.411628,0.408684,0.408684,0.412613,0.411628,0.422777,0.42566,0.408684,0.408684,0.422777,0.42566,0.408684,0.408684,0.408684,0.408684,0.408684,0.408684,,,,,,,0.422162,0.413757,0.412613,0.411628,0.422777,0.42566,0.408684,0.408684,0.408684,0.408684,0.167108,0.164587,0.164244,0.163948,0.167293,0.168158,0.163065,0.163065,0.086028,0.086028,31.946446,32.595394,32.685768,32.763995,31.899971,31.683926,33,33,33,33,,,,,,,,,,,5418,5418,0.408684,0.408684,0.408684,0.408684,0.408684,0.408684,0.408684,0.408684,0.163065,0.163065,33,33,, +16130,1,0.477066,4,0,0,1,1,,3,2,E I 96,,1606201,4.11,4.587,0,,0.58,7,0.440369,,0.440369,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.526858,,0.440369,,0.526858,,0.445506,,0.440369,,0.445506,,0.53286,,0.440369,,0.53286,,0.440369,,0.440369,,0.440369,,,,,,,,0.526858,,0.445506,,0.53286,,0.440369,,0.440369,,0.243929,,0.219524,,0.24573,,0.217983,,0.118533,,54.329606,,64.25053,,53.717617,,65,,65,,,,,,,,,,,,30272,,0.440369,,0.440369,,0.440369,,0.440369,,0.217983,,65,,, +16248,0,0.424688,1,1,0,2,4,,3,2,Palmer,Rd,1607406,6.29,6.715,0,9.100454,6,4.5,0.77216,0.77216,0.77216,0.77216,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.828003,0.817385,0.77216,0.77216,0.828003,0.817385,0.817467,0.797449,0.77216,0.77216,0.817467,0.797449,0.8688,0.899751,0.77216,0.77216,0.8688,0.899751,0.77216,0.77216,0.77216,0.77216,0.77216,0.77216,,,,,,,0.828003,0.817385,0.817467,0.797449,0.8688,0.899751,0.77216,0.77216,0.77216,0.77216,0.324845,0.321659,0.321684,0.315678,0.337084,0.346369,0.308092,0.308092,0.16254,0.16254,30.774352,31.174118,31.171024,31.953483,29.329261,28.320346,33,33,33,33,,,,,,,,,,,2580,2580,0.77216,0.77216,0.77216,0.77216,0.77216,0.77216,0.77216,0.77216,0.308092,0.308092,33,33,, +16392,0,0.574862,1,1,0,2,4,,5,2,Sibley,Rd,1607308,1.995,2.57,0,12.318465,3,4,0.862293,0.862293,0.862293,0.862293,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.012921,1.056251,0.862293,0.862293,1.012921,1.056251,0.878942,0.881336,0.862293,0.862293,0.878942,0.881336,1.06511,1.028602,0.862293,0.862293,1.06511,1.028602,0.862293,0.862293,0.862293,0.862293,0.862293,0.862293,,,,,,,1.012921,1.056251,0.878942,0.881336,1.06511,1.028602,0.862293,0.862293,0.862293,0.862293,0.407351,0.42035,0.367158,0.367876,0.423008,0.412056,0.362163,0.362163,0.192579,0.192579,34.051729,32.654828,39.242314,39.135722,32.383221,33.53261,40,40,40,40,,,,,,,,,,,3096,3096,0.862293,0.862293,0.862293,0.862293,0.862293,0.862293,0.862293,0.862293,0.362163,0.362163,40,40,, +16430,0,1.99413,1,1,0,2,5,,5,2,King,Rd,1607306,2.358,4.352,0,42.731347,3.7,5,3.988259,3.988259,3.988259,3.988259,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.988736,3.988494,3.988259,3.988259,3.988736,3.988494,3.988259,3.988259,3.988259,3.988259,3.988259,3.988259,3.989029,3.98854,3.988259,3.988259,3.989029,3.98854,3.988259,3.988259,3.988259,3.988259,3.988259,3.988259,,,,,,,3.988736,3.988494,3.988259,3.988259,3.989029,3.98854,3.988259,3.988259,3.988259,3.988259,1.555564,1.555492,1.555421,1.555421,1.555652,1.555505,1.555421,1.555421,0.817593,0.817593,29.996412,29.99823,30,30,29.994211,29.997889,30,30,30,30,,,,,,,,,,,2580,2580,3.988259,3.988259,3.988259,3.988259,3.988259,3.988259,3.988259,3.988259,1.555421,1.555421,30,30,, +16594,-1,0.483268,0,4,0,1,1,,3,2,W I 96,,1606503,3.872,4.355,0,,0.58,7,,0.446094,,0.446094,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.503241,,0.446094,,0.503241,,0.450122,,0.446094,,0.450122,,0.527428,,0.446094,,0.527428,,0.446094,,0.446094,,0.446094,,,,,,,,0.503241,,0.450122,,0.527428,,0.446094,,0.446094,,0.23796,,0.222025,,0.245217,,0.220816,,0.120074,,57.61877,,64.418345,,54.976407,,65,,65,,,,,,,,,,,,30272,,0.446094,,0.446094,,0.446094,,0.446094,,0.220816,,65,, +16908,0,1.040821,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,5.926,6.967,0,22.303299,4.5,4.5,1.643401,1.643401,1.643401,1.643401,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.854089,1.659232,1.643401,1.643401,1.854089,1.659232,1.662038,1.663791,1.643401,1.643401,1.662038,1.663791,1.685216,1.75961,1.643401,1.643401,1.685216,1.75961,1.643401,1.643401,1.643401,1.643401,1.643401,1.643401,,,,,,,1.854089,1.659232,1.662038,1.663791,1.685216,1.75961,1.643401,1.643401,1.643401,1.643401,0.743575,0.685117,0.685959,0.686485,0.692912,0.715231,0.680368,0.680368,0.361,0.361,33.681891,37.637433,37.573902,37.534312,37.057114,35.490379,38,38,38,38,,,,,,,,,,,3096,3096,1.643401,1.643401,1.643401,1.643401,1.643401,1.643401,1.643401,1.643401,0.680368,0.680368,38,38,, +16917,0,0.507517,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,9.836,10.343,0,10.875357,5,5,0.870029,0.870029,0.870029,0.870029,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.884211,0.902085,0.870029,0.870029,0.884211,0.902085,0.885069,0.889017,0.870029,0.870029,0.885069,0.889017,0.960874,0.951535,0.870029,0.870029,0.960874,0.951535,0.870029,0.870029,0.870029,0.870029,0.870029,0.870029,,,,,,,0.884211,0.902085,0.885069,0.889017,0.960874,0.951535,0.870029,0.870029,0.870029,0.870029,0.356616,0.361978,0.356874,0.358058,0.379615,0.376814,0.352362,0.352362,0.186331,0.186331,34.438617,33.756256,34.40522,34.252444,31.690948,32.001961,35,35,35,35,,,,,,,,,,,7568,7568,0.870029,0.870029,0.870029,0.870029,0.870029,0.870029,0.870029,0.870029,0.352362,0.352362,35,35,, +17478,0,0.509748,1,1,0,2,5,,3,2,Chicago,Rd,1696207,1.01,1.52,0,10.923179,8,4.5,1.223396,1.223396,1.223396,1.223396,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.276812,1.245644,1.223396,1.223396,1.276812,1.245644,1.253114,1.247823,1.223396,1.223396,1.253114,1.247823,1.330254,1.354606,1.223396,1.223396,1.330254,1.354606,1.223396,1.223396,1.223396,1.223396,1.223396,1.223396,,,,,,,1.276812,1.245644,1.253114,1.247823,1.330254,1.354606,1.223396,1.223396,1.223396,1.223396,0.474798,0.465448,0.467689,0.466102,0.490831,0.498137,0.458774,0.458774,0.239582,0.239582,23.954118,24.553481,24.407115,24.510611,22.991782,22.578441,25,25,25,25,,,,,,,,,,,2408,2408,1.223396,1.223396,1.223396,1.223396,1.223396,1.223396,1.223396,1.223396,0.458774,0.458774,25,25,, +17524,0,1.000976,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,2.662,3.663,0,21.449495,4.5,4.5,1.580489,1.580489,1.580489,1.580489,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.619953,1.673572,1.580489,1.580489,1.619953,1.673572,1.580501,1.580544,1.580489,1.580489,1.580501,1.580544,1.667227,1.639044,1.580489,1.580489,1.667227,1.639044,1.580489,1.580489,1.580489,1.580489,1.580489,1.580489,,,,,,,1.619953,1.673572,1.580501,1.580544,1.667227,1.639044,1.580489,1.580489,1.580489,1.580489,0.666162,0.682247,0.654326,0.654339,0.680344,0.671889,0.654322,0.654322,0.347181,0.347181,37.074277,35.886473,37.999722,37.998679,36.02305,36.642449,38,38,38,38,,,,,,,,,,,3096,3096,1.580489,1.580489,1.580489,1.580489,1.580489,1.580489,1.580489,1.580489,0.654322,0.654322,38,38,, +17695,1,0.247362,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,2.486,2.733,0,5.300604,8,4.5,0.593668,,0.593668,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.593679,,0.593668,,0.593679,,0.593673,,0.593668,,0.593673,,0.59372,,0.593668,,0.59372,,0.593668,,0.593668,,0.593668,,,,,,,,0.593679,,0.593673,,0.59372,,0.593668,,0.593668,,0.222629,,0.222627,,0.222641,,0.222625,,0.11626,,24.999507,,24.999782,,24.99778,,25,,25,,,,,,,,,,,,2408,,0.593668,,0.593668,,0.593668,,0.593668,,0.222625,,25,,, +17888,0,0.506216,1,1,0,2,5,,5,2,West,Rd,1674210,0,0.506,0,10.847493,3.7,5,1.012433,1.012433,1.012433,1.012433,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.012491,1.012922,1.012433,1.012433,1.012491,1.012922,1.012436,1.012443,1.012433,1.012433,1.012436,1.012443,1.012706,1.012547,1.012433,1.012433,1.012706,1.012547,1.012433,1.012433,1.012433,1.012433,1.012433,1.012433,,,,,,,1.012491,1.012922,1.012436,1.012443,1.012706,1.012547,1.012433,1.012433,1.012433,1.012433,0.394866,0.394995,0.39485,0.394852,0.394931,0.394883,0.394849,0.394849,0.207549,0.207549,29.998275,29.985517,29.999898,29.999681,29.991909,29.996616,30,30,30,30,,,,,,,,,,,2580,2580,1.012433,1.012433,1.012433,1.012433,1.012433,1.012433,1.012433,1.012433,0.394849,0.394849,30,30,, +17976,0,0.499717,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,9.542,10.041,0,10.708222,5,5,0.856658,0.856658,0.856658,0.856658,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.870874,0.879014,0.856658,0.856658,0.870874,0.879014,0.860106,0.861863,0.856658,0.856658,0.860106,0.861863,0.90252,0.905634,0.856658,0.856658,0.90252,0.905634,0.856658,0.856658,0.856658,0.856658,0.856658,0.856658,,,,,,,0.870874,0.879014,0.860106,0.861863,0.90252,0.905634,0.856658,0.856658,0.856658,0.856658,0.351211,0.353653,0.347981,0.348508,0.360705,0.361639,0.346946,0.346946,0.183468,0.183468,34.428662,34.109839,34.85968,34.788606,33.221454,33.107213,35,35,35,35,,,,,,,,,,,7946,7946,0.856658,0.856658,0.856658,0.856658,0.856658,0.856658,0.856658,0.856658,0.346946,0.346946,35,35,, +17985,0,0.451595,2,2,0,2,4,,3,2,Van Born,Rd,1670203,3.283,3.734,0,9.677026,6,4.5,0.821081,0.821081,0.821081,0.821081,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.98084,0.883728,0.821081,0.821081,0.98084,0.883728,0.834422,0.83792,0.821081,0.821081,0.834422,0.83792,0.979277,1.08494,0.821081,0.821081,0.979277,1.08494,0.821081,0.821081,0.821081,0.821081,0.821081,0.821081,,,,,,,0.98084,0.883728,0.834422,0.83792,0.979277,1.08494,0.821081,0.821081,0.821081,0.821081,0.375539,0.346405,0.331614,0.332663,0.37507,0.406769,0.327611,0.327611,0.172838,0.172838,27.624958,30.660663,32.472387,32.336835,27.669063,24.97436,33,33,33,33,,,,,,,,,,,5160,5160,0.821081,0.821081,0.821081,0.821081,0.821081,0.821081,0.821081,0.821081,0.327611,0.327611,33,33,, +17996,0,0.252287,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,2.109,2.361,0,5.406148,8,4.5,0.605489,0.605489,0.605489,0.605489,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.612619,0.782833,0.605489,0.605489,0.612619,0.782833,0.617022,0.6169,0.605489,0.605489,0.617022,0.6169,0.771002,0.639235,0.605489,0.605489,0.771002,0.639235,0.605489,0.605489,0.605489,0.605489,0.605489,0.605489,,,,,,,0.612619,0.782833,0.617022,0.6169,0.771002,0.639235,0.605489,0.605489,0.605489,0.605489,0.229197,0.280261,0.230518,0.230482,0.276712,0.237182,0.227058,0.227058,0.118575,0.118575,24.709027,19.336461,24.532705,24.53754,19.633172,23.680198,25,25,25,25,,,,,,,,,,,2408,2408,0.605489,0.605489,0.605489,0.605489,0.605489,0.605489,0.605489,0.605489,0.227058,0.227058,25,25,, +18300,0,0.499374,1,1,0,2,4,,3,2,Joy,Rd,1677810,0.041,0.54,0,10.700868,6,4.5,0.907952,0.907952,0.907952,0.907952,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.915829,1.072269,0.907952,0.907952,0.915829,1.072269,0.916043,0.919302,0.907952,0.907952,0.916043,0.919302,1.106839,0.937617,0.907952,0.907952,1.106839,0.937617,0.907952,0.907952,0.907952,0.907952,0.907952,0.907952,,,,,,,0.915829,1.072269,0.916043,0.919302,1.106839,0.937617,0.907952,0.907952,0.907952,0.907952,0.364636,0.411568,0.3647,0.365678,0.421939,0.371172,0.362273,0.362273,0.191124,0.191124,32.716179,27.943013,32.708539,32.592575,27.070258,31.955929,33,33,33,33,,,,,,,,,,,2580,2580,0.907952,0.907952,0.907952,0.907952,0.907952,0.907952,0.907952,0.907952,0.362273,0.362273,33,33,, +18304,0,0.252486,1,1,0,2,5,,3,2,Avondale,Ave,1686907,1.953,2.205,0,5.410423,8,4.5,0.605967,0.605967,0.605967,0.605967,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.605968,0.605968,0.605967,0.605967,0.605968,0.605968,0.605968,0.605968,0.605967,0.605967,0.605968,0.605968,0.605971,0.605973,0.605967,0.605967,0.605971,0.605973,0.605967,0.605967,0.605967,0.605967,0.605967,0.605967,,,,,,,0.605968,0.605968,0.605968,0.605968,0.605971,0.605973,0.605967,0.605967,0.605967,0.605967,0.227238,0.227238,0.227238,0.227238,0.227239,0.227239,0.227238,0.227238,0.118669,0.118669,24.999961,24.999984,24.999978,24.99998,24.999841,24.999775,25,25,25,25,,,,,,,,,,,2408,2408,0.605967,0.605967,0.605967,0.605967,0.605967,0.605967,0.605967,0.605967,0.227238,0.227238,25,25,, +18375,0,0.559825,1,1,0,2,5,,3,2,Cowan,Rd,1669808,1.028,1.587,0,11.996258,8,4.5,1.343581,1.343581,1.343581,1.343581,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.448491,1.371353,1.343581,1.343581,1.448491,1.371353,1.372218,1.371156,1.343581,1.343581,1.372218,1.371156,1.446571,1.571216,1.343581,1.343581,1.446571,1.571216,1.343581,1.343581,1.343581,1.343581,1.343581,1.343581,,,,,,,1.448491,1.371353,1.372218,1.371156,1.446571,1.571216,1.343581,1.343581,1.343581,1.343581,0.535316,0.512175,0.512434,0.512115,0.53474,0.572133,0.503843,0.503843,0.263118,0.263118,23.189323,24.493706,24.478262,24.497226,23.220093,21.378049,25,25,25,25,,,,,,,,,,,2408,2408,1.343581,1.343581,1.343581,1.343581,1.343581,1.343581,1.343581,1.343581,0.503843,0.503843,25,25,, +18415,0,0.196433,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,0.746,0.942,0,4.209275,8,4.5,0.471439,0.471439,0.471439,0.471439,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,,,,,,,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.17679,0.17679,0.17679,0.17679,0.17679,0.17679,0.17679,0.17679,0.092323,0.092323,24.999999,24.999998,24.999996,24.999998,24.999996,24.999987,25,25,25,25,,,,,,,,,,,2408,2408,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.471439,0.17679,0.17679,25,25,, +18564,0,0.490335,1,1,0,2,5,,5,2,Huron River,Dr,1670406,10.779,11.27,0,10.50717,3.7,5,0.980669,0.980669,0.980669,0.980669,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.983996,0.980672,0.980669,0.980669,0.983996,0.980672,0.980669,0.980669,0.980669,0.980669,0.980669,0.980669,0.980691,0.98182,0.980669,0.980669,0.980691,0.98182,0.980669,0.980669,0.980669,0.980669,0.980669,0.980669,,,,,,,0.983996,0.980672,0.980669,0.980669,0.980691,0.98182,0.980669,0.980669,0.980669,0.980669,0.383459,0.382462,0.382461,0.382461,0.382467,0.382806,0.382461,0.382461,0.201037,0.201037,29.898558,29.999919,30,30,29.999343,29.964847,30,30,30,30,,,,,,,,,,,2580,2580,0.980669,0.980669,0.980669,0.980669,0.980669,0.980669,0.980669,0.980669,0.382461,0.382461,30,30,, +18756,0,1.364395,1,1,0,2,5,,4,2,Beverly,Rd,1664409,1.078,2.442,0,29.237039,5.8,4.5,3.031989,3.031989,3.031989,3.031989,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.031989,3.031989,3.031989,3.031989,3.031989,3.031989,3.031989,3.031989,3.031989,3.031989,3.031989,3.031989,3.03199,3.03199,3.031989,3.031989,3.03199,3.03199,3.031989,3.031989,3.031989,3.031989,3.031989,3.031989,,,,,,,3.031989,3.031989,3.031989,3.031989,3.03199,3.03199,3.031989,3.031989,3.031989,3.031989,1.155188,1.155188,1.155188,1.155188,1.155188,1.155188,1.155188,1.155188,0.604882,0.604882,27,27,27,27,26.999991,26.999989,27,27,27,27,,,,,,,,,,,2580,2580,3.031989,3.031989,3.031989,3.031989,3.031989,3.031989,3.031989,3.031989,1.155188,1.155188,27,27,, +18769,0,0.491355,1,1,0,2,4,,4,2,Wick,Rd,1682705,2.525,3.016,0,10.529042,4.5,4.5,0.775824,0.775824,0.775824,0.775824,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,,,,,,,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.321191,0.321191,0.321191,0.321191,0.321191,0.321191,0.321191,0.321191,0.170423,0.170423,38,38,38,38,38,37.999999,38,38,38,38,,,,,,,,,,,3096,3096,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.775824,0.321191,0.321191,38,38,, +19060,0,0.947545,1,1,0,2,5,,5,2,Willow,Rd,1670406,8.518,9.466,0,20.304538,3.7,5,1.89509,1.89509,1.89509,1.89509,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.900365,1.895542,1.89509,1.89509,1.900365,1.895542,1.895102,1.895099,1.89509,1.89509,1.895102,1.895099,1.896088,1.897165,1.89509,1.89509,1.896088,1.897165,1.89509,1.89509,1.89509,1.89509,1.89509,1.89509,,,,,,,1.900365,1.895542,1.895102,1.895099,1.896088,1.897165,1.89509,1.89509,1.89509,1.89509,0.740668,0.739221,0.739089,0.739088,0.739385,0.739708,0.739085,0.739085,0.388493,0.388493,29.916724,29.992851,29.999821,29.999866,29.984213,29.96719,30,30,30,30,,,,,,,,,,,2580,2580,1.89509,1.89509,1.89509,1.89509,1.89509,1.89509,1.89509,1.89509,0.739085,0.739085,30,30,, +19063,0,1.352539,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,7.093,8.445,0,28.982975,5,5,2.318638,2.318638,2.318638,2.318638,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,2.399777,2.75687,2.318638,2.318638,2.399777,2.75687,2.347953,2.344237,2.318638,2.318638,2.347953,2.344237,3.086727,2.647773,2.318638,2.318638,3.086727,2.647773,2.318638,2.318638,2.318638,2.318638,2.318638,2.318638,,,,,,,2.399777,2.75687,2.347953,2.344237,3.086727,2.647773,2.318638,2.318638,2.318638,2.318638,0.96339,1.070518,0.947843,0.946728,1.169475,1.037789,0.939048,0.939048,0.496575,0.496575,33.816611,29.436398,34.563013,34.617808,26.290735,30.649273,35,35,35,35,,,,,,,,,,,3784,3784,2.318638,2.318638,2.318638,2.318638,2.318638,2.318638,2.318638,2.318638,0.939048,0.939048,35,35,, +19205,0,0.625568,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,3.349,3.974,0,13.405033,5,5,1.072403,1.072403,1.072403,1.072403,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.081829,1.083385,1.072403,1.072403,1.081829,1.083385,1.074943,1.075713,1.072403,1.072403,1.074943,1.075713,1.092863,1.091263,1.072403,1.072403,1.092863,1.091263,1.072403,1.072403,1.072403,1.072403,1.072403,1.072403,,,,,,,1.081829,1.083385,1.074943,1.075713,1.092863,1.091263,1.072403,1.072403,1.072403,1.072403,0.437151,0.437618,0.435085,0.435316,0.440461,0.439981,0.434323,0.434323,0.229673,0.229673,34.695031,34.645194,34.917298,34.892294,34.344739,34.395103,35,35,35,35,,,,,,,,,,,7946,7946,1.072403,1.072403,1.072403,1.072403,1.072403,1.072403,1.072403,1.072403,0.434323,0.434323,35,35,, +19774,0,0.378136,2,2,1,2,4,,3,3,Grand River,,4104142,17.215,17.593,0,8.102918,6,4.5,0.68752,0.68752,0.68752,0.68752,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.82103,0.721867,0.68752,0.68752,0.82103,0.721867,0.732661,0.712273,0.68752,0.68752,0.732661,0.712273,0.842397,0.81581,0.68752,0.68752,0.842397,0.81581,0.68752,0.68752,0.68752,0.68752,0.68752,0.68752,,,,,,,0.82103,0.721867,0.732661,0.712273,0.842397,0.81581,0.68752,0.68752,0.68752,0.68752,0.314374,0.284624,0.287863,0.281746,0.320784,0.312807,0.274321,0.274321,0.144723,0.144723,27.633789,31.42987,30.966822,31.853198,26.932865,27.810619,33,33,33,33,,,,,,,,,,,5418,5418,0.68752,0.68752,0.68752,0.68752,0.68752,0.68752,0.68752,0.68752,0.274321,0.274321,33,33,, +19778,0,0.238007,1,1,1,2,4,,3,3,Grand River,,4104142,16.187,16.425,0,5.100144,6,4.5,0.432739,0.432739,0.432739,0.432739,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.624771,0.472292,0.432739,0.432739,0.624771,0.472292,0.466957,0.480573,0.432739,0.432739,0.466957,0.480573,0.527978,0.624902,0.432739,0.432739,0.527978,0.624902,0.432739,0.432739,0.432739,0.432739,0.432739,0.432739,,,,,,,0.624771,0.472292,0.466957,0.480573,0.527978,0.624902,0.432739,0.432739,0.432739,0.432739,0.230273,0.184529,0.182928,0.187013,0.201235,0.230312,0.172663,0.172663,0.091092,0.091092,22.857007,30.236412,30.581832,29.715356,27.047351,22.852227,33,33,33,33,,,,,,,,,,,2838,2838,0.432739,0.432739,0.432739,0.432739,0.432739,0.432739,0.432739,0.432739,0.172663,0.172663,33,33,, +19824,0,1.169724,1,1,0,2,3,,4,3,Commerce,Rd,4104140,16.431,17.6,0,25.065514,3.7,5,1.754586,1.754586,1.754586,1.754586,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,3.479735,2.284612,1.754586,1.754586,3.479735,2.284612,1.958058,1.927226,1.754586,1.754586,1.958058,1.927226,2.606926,3.276102,1.754586,1.754586,2.606926,3.276102,1.754586,1.754586,1.754586,1.754586,1.754586,1.754586,,,,,,,3.479735,2.284612,1.958058,1.927226,2.606926,3.276102,1.754586,1.754586,1.754586,1.754586,1.254471,0.895934,0.797968,0.788718,0.992628,1.193381,0.736926,0.736926,0.391858,0.391858,20.169191,30.72007,35.843397,36.416827,26.921916,21.422852,40,40,40,40,,,,,,,,,,,3784,3784,1.754586,1.754586,1.754586,1.754586,1.754586,1.754586,1.754586,1.754586,0.736926,0.736926,40,40,, +20181,-1,0.738915,0,3,0,1,1,,5,6,S I 275,,4301662,5.373,6.111,0,,1.02,7,,0.633355,,0.633355,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.633356,,0.633355,,0.633356,,0.633356,,0.633355,,0.633356,,0.633412,,0.633355,,0.633412,,0.633355,,0.633355,,0.633355,,,,,,,,0.633356,,0.633356,,0.633412,,0.633355,,0.633355,,0.323012,,0.323011,,0.323028,,0.323011,,0.176284,,69.99989,,69.999967,,69.993755,,70,,70,,,,,,,,,,,,22704,,0.633355,,0.633355,,0.633355,,0.633355,,0.323011,,70,, +20311,-1,0.329641,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,1.109,1.439,0,7.063728,5,5,,0.494461,,0.494461,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.547693,,0.494461,,0.547693,,0.503121,,0.494461,,0.503121,,0.546656,,0.494461,,0.546656,,0.494461,,0.494461,,0.494461,,,,,,,,0.547693,,0.503121,,0.546656,,0.494461,,0.494461,,0.223643,,0.210272,,0.223332,,0.207674,,0.11043,,36.112245,,39.311515,,36.180782,,40,,40,,,,,,,,,,,,10320,,0.494461,,0.494461,,0.494461,,0.494461,,0.207674,,40,, +20404,-1,0.239192,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.802,2.041,0,5.125548,8,4.5,,0.574061,,0.574061,,25,,21000,,4767,,10500,,6775,,7224,,7216,,0.577963,,0.574061,,0.577963,,0.574063,,0.574061,,0.574063,,0.574068,,0.574061,,0.574068,,0.574061,,0.574061,,0.574061,,,,,,,,0.577963,,0.574063,,0.574068,,0.574061,,0.574061,,0.216443,,0.215274,,0.215275,,0.215273,,0.11242,,24.831246,,24.99993,,24.999708,,25,,25,,,,,,,,,,,,7224,,0.574061,,0.574061,,0.574061,,0.574061,,0.215273,,25,, +20408,1,0.341884,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,1.276,1.618,0,7.326081,6,4.5,0.621607,,0.621607,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.652362,,0.621607,,0.652362,,0.652563,,0.621607,,0.652563,,0.754329,,0.621607,,0.754329,,0.621607,,0.621607,,0.621607,,,,,,,,0.652362,,0.652563,,0.754329,,0.621607,,0.621607,,0.257248,,0.257308,,0.287838,,0.248021,,0.130848,,31.444258,,31.434564,,27.193746,,33,,33,,,,,,,,,,,,5160,,0.621607,,0.621607,,0.621607,,0.621607,,0.248021,,33,,, +20496,1,0.342389,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,0.695,1.038,0,7.336904,6,4.5,0.622525,,0.622525,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.684808,,0.622525,,0.684808,,0.657574,,0.622525,,0.657574,,0.722462,,0.622525,,0.722462,,0.622525,,0.622525,,0.622525,,,,,,,,0.684808,,0.657574,,0.722462,,0.622525,,0.622525,,0.267072,,0.258902,,0.278369,,0.248388,,0.131042,,29.998673,,31.241091,,28.435178,,33,,33,,,,,,,,,,,,5160,,0.622525,,0.622525,,0.622525,,0.622525,,0.248388,,33,,, +20709,0,0.689003,1,1,0,2,5,,4,6,Vivian,Rd,4301667,0.756,1.444,0,14.764349,5.8,4.5,1.531118,1.531118,1.531118,1.531118,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,1.531136,1.531118,1.531118,1.531118,1.531136,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,,,,,,,1.531118,1.531118,1.531118,1.531118,1.531118,1.531136,1.531118,1.531118,1.531118,1.531118,0.583356,0.583356,0.583356,0.583356,0.583356,0.583361,0.583356,0.583356,0.305458,0.305458,26.999999,27,27,27,27,26.99968,27,27,27,27,,,,,,,,,,,2580,2580,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,1.531118,0.583356,0.583356,27,27,, +20871,0,1.396389,2,2,1,2,3,,5,6,Telegraph,Rd,4300001,20.172,21.568,0,29.922632,1.7,4,1.675667,1.675667,1.675667,1.675667,50,50,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,1.79874,1.686226,1.675667,1.675667,1.79874,1.686226,1.677804,1.678773,1.675667,1.675667,1.677804,1.678773,1.690016,1.795407,1.675667,1.675667,1.690016,1.795407,1.675667,1.675667,1.675667,1.675667,1.675667,1.675667,,,,,,,1.79874,1.686226,1.677804,1.678773,1.690016,1.795407,1.675667,1.675667,1.675667,1.675667,0.790972,0.757218,0.754691,0.754982,0.758355,0.789972,0.75405,0.75405,0.404953,0.404953,46.578929,49.686929,49.936337,49.907499,49.575493,46.665386,50,50,50,50,,,,,,,,,,,6502,6502,1.675667,1.675667,1.675667,1.675667,1.675667,1.675667,1.675667,1.675667,0.75405,0.75405,50,50,, +20916,0,0.368767,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,5.394,5.763,0,7.902156,5,5,0.632172,0.632172,0.632172,0.632172,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.669718,0.65244,0.632172,0.632172,0.669718,0.65244,0.639861,0.640564,0.632172,0.632172,0.639861,0.640564,0.669901,0.685988,0.632172,0.632172,0.669901,0.685988,0.632172,0.632172,0.632172,0.632172,0.632172,0.632172,,,,,,,0.669718,0.65244,0.639861,0.640564,0.669901,0.685988,0.632172,0.632172,0.632172,0.632172,0.267293,0.26211,0.258336,0.258547,0.267348,0.272175,0.25603,0.25603,0.13539,0.13539,33.037854,33.912752,34.579468,34.541506,33.028818,32.254247,35,35,35,35,,,,,,,,,,,7946,7946,0.632172,0.632172,0.632172,0.632172,0.632172,0.632172,0.632172,0.632172,0.25603,0.25603,35,35,, +21020,0,0.488611,1,1,0,2,5,,3,3,Berg,Rd,4410215,1.583,2.072,0,10.470245,8,4.5,1.172667,1.172667,1.172667,1.172667,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.349275,1.20885,1.172667,1.172667,1.349275,1.20885,1.215312,1.211147,1.172667,1.172667,1.215312,1.211147,1.213448,1.384864,1.172667,1.172667,1.213448,1.384864,1.172667,1.172667,1.172667,1.172667,1.172667,1.172667,,,,,,,1.349275,1.20885,1.215312,1.211147,1.213448,1.384864,1.172667,1.172667,1.172667,1.172667,0.492733,0.450605,0.452544,0.451294,0.451984,0.503409,0.43975,0.43975,0.229647,0.229647,21.727726,24.251719,24.122774,24.205712,24.15982,21.169361,25,25,25,25,,,,,,,,,,,2408,2408,1.172667,1.172667,1.172667,1.172667,1.172667,1.172667,1.172667,1.172667,0.43975,0.43975,25,25,, +21038,0,1.255422,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,4.371,5.627,0,26.901905,3,4,1.883133,1.883133,1.883133,1.883133,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.902885,1.931592,1.883133,1.883133,1.902885,1.931592,1.890831,1.890067,1.883133,1.883133,1.890831,1.890067,1.939602,1.909903,1.883133,1.883133,1.939602,1.909903,1.883133,1.883133,1.883133,1.883133,1.883133,1.883133,,,,,,,1.902885,1.931592,1.890831,1.890067,1.939602,1.909903,1.883133,1.883133,1.883133,1.883133,0.796842,0.805453,0.793225,0.792996,0.807857,0.798947,0.790916,0.790916,0.420566,0.420566,39.584797,38.996512,39.83716,39.853256,38.835455,39.439357,40,40,40,40,,,,,,,,,,,3096,3096,1.883133,1.883133,1.883133,1.883133,1.883133,1.883133,1.883133,1.883133,0.790916,0.790916,40,40,, +21899,0,0.505191,1,1,0,2,4,,4,3,Wixom,Rd,4413401,0,0.505,0,10.825513,4.5,4.5,0.797669,0.797669,0.797669,0.797669,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.850112,0.882811,0.797669,0.797669,0.850112,0.882811,0.813602,0.823041,0.797669,0.797669,0.813602,0.823041,0.884957,0.893717,0.797669,0.797669,0.884957,0.893717,0.797669,0.797669,0.797669,0.797669,0.797669,0.797669,,,,,,,0.850112,0.882811,0.813602,0.823041,0.884957,0.893717,0.797669,0.797669,0.797669,0.797669,0.345968,0.355778,0.335015,0.337847,0.356422,0.359049,0.330235,0.330235,0.175221,0.175221,35.655823,34.335134,37.255839,36.828572,34.251862,33.916137,38,38,38,38,,,,,,,,,,,3096,3096,0.797669,0.797669,0.797669,0.797669,0.797669,0.797669,0.797669,0.797669,0.330235,0.330235,38,38,, +22098,0,0.256118,1,1,1,2,5,,3,3,Ridge,Rd,4412705,1.476,1.732,0,5.488238,8,4.5,0.614683,0.614683,0.614683,0.614683,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,1.066193,1.137563,0.614683,0.614683,1.066193,1.137563,0.821858,0.744415,0.614683,0.614683,0.821858,0.744415,1.533839,1.012624,0.614683,0.614683,1.533839,1.012624,0.614683,0.614683,0.614683,0.614683,0.614683,0.614683,,,,,,,1.066193,1.137563,0.821858,0.744415,1.533839,1.012624,0.614683,0.614683,0.614683,0.614683,0.365959,0.38737,0.292659,0.269426,0.506253,0.349888,0.230506,0.230506,0.120375,0.120375,14.413026,13.508758,18.697955,20.643143,10.018695,15.175497,25,25,25,25,,,,,,,,,,,2649,2649,0.614683,0.614683,0.614683,0.614683,0.614683,0.614683,0.614683,0.614683,0.230506,0.230506,25,25,, +22240,-1,0.759418,0,2,0,2,3,DIV,4,2,Eureka,Rd,4703131,0.955,1.714,0,16.273242,3.7,5,,1.012557,,1.012557,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.475885,,1.012557,,1.475885,,1.086404,,1.012557,,1.086404,,1.202831,,1.012557,,1.202831,,1.012557,,1.012557,,1.012557,,,,,,,,1.475885,,1.086404,,1.202831,,1.012557,,1.012557,,0.579461,,0.462616,,0.497545,,0.440462,,0.23542,,30.873052,,41.941208,,37.881515,,45,,45,,,,,,,,,,,,7568,,1.012557,,1.012557,,1.012557,,1.012557,,0.440462,,45,, +22480,-1,0.299971,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0.699,0.999,0,6.427943,6,4.5,,0.545401,,0.545401,,33,,22500,,5108,,11250,,7259,,7740,,7731,,0.548599,,0.545401,,0.548599,,0.545768,,0.545401,,0.545768,,0.564643,,0.545401,,0.564643,,0.545401,,0.545401,,0.545401,,,,,,,,0.548599,,0.545768,,0.564643,,0.545401,,0.545401,,0.218574,,0.217725,,0.223388,,0.217615,,0.114807,,32.80767,,32.977845,,31.87544,,33,,33,,,,,,,,,,,,7740,,0.545401,,0.545401,,0.545401,,0.545401,,0.217615,,33,, +22519,-1,0.957039,0,2,0,2,5,DIV,4,2,Smith,Rd,4706175,0.016,0.973,0,20.507986,5.8,4.5,,1.794449,,1.794449,,32,,17000,,3859,,8500,,5484,,5848,,5841,,1.894835,,1.794449,,1.894835,,1.989333,,1.794449,,1.989333,,2.069424,,1.794449,,2.069424,,1.794449,,1.794449,,1.794449,,,,,,,,1.894835,,1.989333,,2.069424,,1.794449,,1.794449,,0.740717,,0.769067,,0.793094,,0.710602,,0.374442,,30.304684,,28.865131,,27.747998,,32,,32,,,,,,,,,,,,5848,,1.794449,,1.794449,,1.794449,,1.794449,,0.710602,,32,, +23077,-1,0.422893,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,4.474,4.897,0,9.06199,8,4.5,,1.014943,,1.014943,,25,,14000,,3178,,7000,,4516,,4816,,4810,,1.017451,,1.014943,,1.017451,,1.015709,,1.014943,,1.015709,,1.015473,,1.014943,,1.015473,,1.014943,,1.014943,,1.014943,,,,,,,,1.017451,,1.015709,,1.015473,,1.014943,,1.014943,,0.381356,,0.380833,,0.380763,,0.380604,,0.19876,,24.938372,,24.981144,,24.986944,,25,,25,,,,,,,,,,,,4816,,1.014943,,1.014943,,1.014943,,1.014943,,0.380604,,25,, +23242,-1,0.385575,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,9.851,10.236,0,8.262311,5,5,,0.578362,,0.578362,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.629416,,0.578362,,0.629416,,0.590399,,0.578362,,0.590399,,0.68477,,0.578362,,0.68477,,0.578362,,0.578362,,0.578362,,,,,,,,0.629416,,0.590399,,0.68477,,0.578362,,0.578362,,0.258228,,0.246523,,0.274834,,0.242912,,0.129167,,36.755468,,39.18445,,33.784316,,40,,40,,,,,,,,,,,,13760,,0.578362,,0.578362,,0.578362,,0.578362,,0.242912,,40,, +23567,1,0.956884,2,0,0,2,5,DIV,4,2,Smith,Rd,4706176,0.019,0.976,0,20.504663,5.8,4.5,1.794158,,1.794158,,32,,17000,,3859,,8500,,5484,,5848,,5841,,1.803774,,1.794158,,1.803774,,1.914355,,1.794158,,1.914355,,1.957729,,1.794158,,1.957729,,1.794158,,1.794158,,1.794158,,,,,,,,1.803774,,1.914355,,1.957729,,1.794158,,1.794158,,0.713371,,0.746546,,0.759558,,0.710487,,0.374381,,31.829413,,29.990812,,29.326353,,32,,32,,,,,,,,,,,,5848,,1.794158,,1.794158,,1.794158,,1.794158,,0.710487,,32,,, +23621,1,0.40726,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,4.455,4.862,0,8.727002,8,4.5,0.977424,,0.977424,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.977441,,0.977424,,0.977441,,0.978843,,0.977424,,0.978843,,0.980621,,0.977424,,0.980621,,0.977424,,0.977424,,0.977424,,,,,,,,0.977441,,0.978843,,0.980621,,0.977424,,0.977424,,0.366539,,0.36696,,0.367493,,0.366534,,0.191412,,24.99957,,24.963766,,24.918497,,25,,25,,,,,,,,,,,,4816,,0.977424,,0.977424,,0.977424,,0.977424,,0.366534,,25,,, +24038,0,0.41238,2,2,1,2,3,,3,2,Warren,Rd,4710470,9.537,9.949,0,8.836717,5,5,0.706937,0.706937,0.706937,0.706937,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.780382,0.727564,0.706937,0.706937,0.780382,0.727564,0.733519,0.732803,0.706937,0.706937,0.733519,0.732803,0.791592,0.882772,0.706937,0.706937,0.791592,0.882772,0.706937,0.706937,0.706937,0.706937,0.706937,0.706937,,,,,,,0.780382,0.727564,0.733519,0.732803,0.791592,0.882772,0.706937,0.706937,0.706937,0.706937,0.308343,0.292498,0.294284,0.294069,0.311706,0.33906,0.28631,0.28631,0.151402,0.151402,31.706006,34.007755,33.731653,33.764603,31.257009,28.028529,35,35,35,35,,,,,,,,,,,7946,7946,0.706937,0.706937,0.706937,0.706937,0.706937,0.706937,0.706937,0.706937,0.28631,0.28631,35,35,, +24073,-1,0.781255,0,2,0,2,3,DIV,4,2,John Dingell,Dr,4711337,0.791,1.572,0,16.741186,3.7,5,,1.041674,,1.041674,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.083997,,1.041674,,1.083997,,1.060256,,1.041674,,1.060256,,1.161626,,1.041674,,1.161626,,1.041674,,1.041674,,1.041674,,,,,,,,1.083997,,1.060256,,1.161626,,1.041674,,1.041674,,0.465825,,0.458703,,0.489114,,0.453128,,0.242189,,43.243043,,44.21131,,40.353213,,45,,45,,,,,,,,,,,,7568,,1.041674,,1.041674,,1.041674,,1.041674,,0.453128,,45,, +24099,1,0.805548,2,0,0,2,3,DIV,4,2,John Dingell,Dr,4711336,0.146,0.951,0,17.261739,3.7,5,1.074064,,1.074064,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.369095,,1.074064,,1.369095,,1.12102,,1.074064,,1.12102,,1.153997,,1.074064,,1.153997,,1.074064,,1.074064,,1.074064,,,,,,,,1.369095,,1.12102,,1.153997,,1.074064,,1.074064,,0.555727,,0.481305,,0.491198,,0.467218,,0.24972,,35.302794,,43.115078,,41.883027,,45,,45,,,,,,,,,,,,7568,,1.074064,,1.074064,,1.074064,,1.074064,,0.467218,,45,,, +24161,0,0.335221,2,2,1,2,3,,3,4,Jefferson,Ave,4718263,1.376,1.711,0,7.183297,5,5,0.574664,0.574664,0.574664,0.574664,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.578076,0.577316,0.574664,0.574664,0.578076,0.577316,0.575007,0.574966,0.574664,0.574664,0.575007,0.574966,0.611147,0.600378,0.574664,0.574664,0.611147,0.600378,0.574664,0.574664,0.574664,0.574664,0.574664,0.574664,,,,,,,0.578076,0.577316,0.575007,0.574966,0.611147,0.600378,0.574664,0.574664,0.574664,0.574664,0.233762,0.233534,0.232842,0.232829,0.243684,0.240453,0.232739,0.232739,0.123074,0.123074,34.793424,34.839219,34.97911,34.981614,32.910637,33.50095,35,35,35,35,,,,,,,,,,,7946,7946,0.574664,0.574664,0.574664,0.574664,0.574664,0.574664,0.574664,0.574664,0.232739,0.232739,35,35,, +24246,-1,0.247226,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711017,0.503,0.75,0,5.297691,8,4.5,,0.593341,,0.593341,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.593345,,0.593341,,0.593345,,0.593342,,0.593341,,0.593342,,0.593531,,0.593341,,0.593531,,0.593341,,0.593341,,0.593341,,,,,,,,0.593345,,0.593342,,0.593531,,0.593341,,0.593341,,0.222504,,0.222503,,0.22256,,0.222503,,0.116196,,24.999863,,24.999955,,24.992018,,25,,25,,,,,,,,,,,,2408,,0.593341,,0.593341,,0.593341,,0.593341,,0.222503,,25,, +24484,0,1.661376,1,1,0,2,4,,4,2,I 94 South Service Drive,,4711342,0,1.661,0,35.600919,4.5,4.5,2.623226,2.623226,2.623226,2.623226,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.624798,2.62323,2.623226,2.623226,2.624798,2.62323,2.623226,2.623226,2.623226,2.623226,2.623226,2.623226,2.623226,2.624709,2.623226,2.623226,2.623226,2.624709,2.623226,2.623226,2.623226,2.623226,2.623226,2.623226,,,,,,,2.624798,2.62323,2.623226,2.623226,2.623226,2.624709,2.623226,2.623226,2.623226,2.623226,1.086487,1.086017,1.086015,1.086015,1.086015,1.08646,1.086015,1.086015,0.576235,0.576235,37.977234,37.999943,38,37.999997,38,37.97853,38,38,38,38,,,,,,,,,,,3096,3096,2.623226,2.623226,2.623226,2.623226,2.623226,2.623226,2.623226,2.623226,1.086015,1.086015,38,38,, +24866,0,0.22606,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.844135,0.15,4,1.356358,1.356358,1.356358,1.356358,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,,,,,,,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,0.447598,0.447598,0.447598,0.447598,0.447598,0.447598,0.447598,0.447598,0.22832,0.22832,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,1.356358,0.447598,0.447598,10,10,, +24869,0,0.279081,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.980308,0.15,4,1.674486,1.674486,1.674486,1.674486,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,,,,,,,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,0.552581,0.55258,0.55258,0.55258,0.55258,0.552581,0.55258,0.55258,0.281872,0.281872,9.999998,9.999999,10,10,9.999999,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,1.674486,0.55258,0.55258,10,10,, +24872,0,0.512079,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.97312,0.15,4,3.072474,3.072474,3.072474,3.072474,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.072474,3.072476,3.072474,3.072474,3.072474,3.072476,3.072475,3.072479,3.072474,3.072474,3.072475,3.072479,3.072476,3.072478,3.072474,3.072474,3.072476,3.072478,3.072474,3.072474,3.072474,3.072474,3.072474,3.072474,,,,,,,3.072474,3.072476,3.072475,3.072479,3.072476,3.072478,3.072474,3.072474,3.072474,3.072474,1.013916,1.013917,1.013917,1.013918,1.013917,1.013917,1.013916,1.013916,0.5172,0.5172,10,9.999992,9.999997,9.999983,9.999993,9.999987,10,10,10,10,,,,,,,,,,,34400,34400,3.072474,3.072474,3.072474,3.072474,3.072474,3.072474,3.072474,3.072474,1.013916,1.013916,10,10,, +24881,0,0.502425,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.766253,0.15,4,2.009701,2.009701,2.009701,2.009701,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,,,,,,,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,0.693347,0.693347,0.693347,0.693347,0.693347,0.693347,0.693347,0.693347,0.356722,0.356722,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,2.009701,0.693347,0.693347,15,15,, +24884,0,0.520506,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.153703,0.15,4,2.082025,2.082025,2.082025,2.082025,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,,,,,,,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,0.718298,0.718298,0.718298,0.718298,0.718299,0.718298,0.718298,0.718298,0.369559,0.369559,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,2.082025,0.718298,0.718298,15,15,, +25129,0,0.796245,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,17.062394,0.15,4,3.18498,3.18498,3.18498,3.18498,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,,,,,,,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,1.098818,1.098818,1.098818,1.098818,1.098818,1.098818,1.098818,1.098818,0.565334,0.565334,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,3.18498,1.098818,1.098818,15,15,, +25142,0,0.268888,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.761882,0.15,4,1.613327,1.613327,1.613327,1.613327,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,,,,,,,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,0.532398,0.532398,0.532398,0.532398,0.532398,0.532398,0.532398,0.532398,0.271577,0.271577,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,1.613327,0.532398,0.532398,10,10,, +25143,0,0.475537,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.190072,0.15,4,2.85322,2.85322,2.85322,2.85322,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,,,,,,,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,0.941563,0.941563,0.941563,0.941563,0.941563,0.941563,0.941563,0.941563,0.480292,0.480292,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,2.85322,0.941563,0.941563,10,10,, +25148,0,0.894496,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.167764,0.15,4,3.577983,3.577983,3.577983,3.577983,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,,,,,,,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,1.234404,1.234404,1.234404,1.234404,1.234404,1.234404,1.234404,1.234404,0.635092,0.635092,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,3.577983,1.234404,1.234404,15,15,, +25157,0,0.352608,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.555877,0.15,4,1.41043,1.41043,1.41043,1.41043,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,1.410431,1.41043,1.41043,1.41043,1.410431,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,,,,,,,1.41043,1.41043,1.41043,1.41043,1.41043,1.410431,1.41043,1.41043,1.41043,1.41043,0.486599,0.486598,0.486598,0.486598,0.486599,0.486599,0.486598,0.486598,0.250351,0.250351,15,15,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,1.41043,0.486598,0.486598,15,15,, +25254,0,0.48836,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.464851,0.15,4,2.930158,2.930158,2.930158,2.930158,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,,,,,,,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,0.966952,0.966952,0.966952,0.966952,0.966952,0.966952,0.966952,0.966952,0.493243,0.493243,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,2.930158,0.966952,0.966952,10,10,, +25258,0,0.269351,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.771798,0.15,4,1.616103,1.616103,1.616103,1.616103,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,,,,,,,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,0.533314,0.533314,0.533314,0.533314,0.533314,0.533314,0.533314,0.533314,0.272044,0.272044,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,1.616103,0.533314,0.533314,10,10,, +25262,0,0.505174,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.825155,0.15,4,2.020696,2.020696,2.020696,2.020696,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,,,,,,,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,0.69714,0.69714,0.69714,0.69714,0.69714,0.69714,0.69714,0.69714,0.358673,0.358673,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,2.020696,0.69714,0.69714,15,15,, +25276,0,0.24735,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.300357,0.15,4,1.4841,1.4841,1.4841,1.4841,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,,,,,,,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,0.489753,0.489753,0.489753,0.489753,0.489753,0.489753,0.489753,0.489753,0.249823,0.249823,10,10,10,10,9.999999,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,1.4841,0.489753,0.489753,10,10,, +25431,0,0.855923,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,18.341199,0.15,4,5.135536,5.135536,5.135536,5.135536,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,,,,,,,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,1.694727,1.694727,1.694727,1.694727,1.694727,1.694727,1.694727,1.694727,0.864482,0.864482,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,5.135536,1.694727,1.694727,10,10,, +25434,0,0.284276,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.09162,0.15,4,1.705654,1.705654,1.705654,1.705654,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,,,,,,,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,0.562866,0.562866,0.562866,0.562866,0.562866,0.562866,0.562866,0.562866,0.287118,0.287118,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,1.705654,0.562866,0.562866,10,10,, +25474,0,0.577425,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.373388,0.15,4,2.309699,2.309699,2.309699,2.309699,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,,,,,,,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,0.796846,0.796846,0.796846,0.796846,0.796846,0.796846,0.796846,0.796846,0.409972,0.409972,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,2.309699,0.796846,0.796846,15,15,, +25627,0,0.447781,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.595305,0.15,4,2.686685,2.686685,2.686685,2.686685,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.686685,2.686686,2.686685,2.686685,2.686685,2.686686,2.686685,2.686686,2.686685,2.686685,2.686685,2.686686,2.686685,2.686686,2.686685,2.686685,2.686685,2.686686,2.686685,2.686685,2.686685,2.686685,2.686685,2.686685,,,,,,,2.686685,2.686686,2.686685,2.686686,2.686685,2.686686,2.686685,2.686685,2.686685,2.686685,0.886606,0.886606,0.886606,0.886606,0.886606,0.886606,0.886606,0.886606,0.452259,0.452259,10,9.999999,10,9.999999,10,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,2.686685,2.686685,2.686685,2.686685,2.686685,2.686685,2.686685,2.686685,0.886606,0.886606,10,10,, +25784,0,0.49537,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.615063,0.15,4,2.972218,2.972218,2.972218,2.972218,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,,,,,,,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,0.980832,0.980832,0.980832,0.980832,0.980832,0.980832,0.980832,0.980832,0.500323,0.500323,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,2.972218,0.980832,0.980832,10,10,, +25976,0,1.400846,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,30.018139,0.15,4,5.603386,5.603386,5.603386,5.603386,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,,,,,,,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,1.933168,1.933168,1.933168,1.933168,1.933168,1.933168,1.933168,1.933168,0.994601,0.994601,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,5.603386,1.933168,1.933168,15,15,, +25980,0,1.014759,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.744845,0.15,4,4.059038,4.059038,4.059038,4.059038,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,,,,,,,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,1.400368,1.400368,1.400368,1.400368,1.400368,1.400368,1.400368,1.400368,0.720479,0.720479,15,14.999999,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,4.059038,1.400368,1.400368,15,15,, +25983,0,0.981849,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.039622,0.15,4,3.927396,3.927396,3.927396,3.927396,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,,,,,,,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,1.354952,1.354952,1.354952,1.354952,1.354952,1.354952,1.354952,1.354952,0.697113,0.697113,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,3.927396,1.354952,1.354952,15,15,, +25987,0,0.514608,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.027319,0.15,4,2.058433,2.058433,2.058433,2.058433,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,,,,,,,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,0.710159,0.710159,0.710159,0.710159,0.710159,0.710159,0.710159,0.710159,0.365372,0.365372,15,14.999997,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,2.058433,0.710159,0.710159,15,15,, +25995,0,0.252097,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.402083,0.15,4,1.512583,1.512583,1.512583,1.512583,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,,,,,,,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,0.499152,0.499153,0.499152,0.499152,0.499152,0.499152,0.499152,0.499152,0.254618,0.254618,10,9.999998,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,1.512583,0.499152,0.499152,10,10,, +25998,0,0.509938,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.927243,0.15,4,2.039752,2.039752,2.039752,2.039752,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,,,,,,,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,0.703714,0.703714,0.703714,0.703714,0.703714,0.703714,0.703714,0.703714,0.362056,0.362056,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,2.039752,0.703714,0.703714,15,15,, +25999,0,0.499191,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.696959,0.15,4,1.996766,1.996766,1.996766,1.996766,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.996766,1.996767,1.996766,1.996766,1.996766,1.996767,1.996767,1.996768,1.996766,1.996766,1.996767,1.996768,1.996768,1.996767,1.996766,1.996766,1.996768,1.996767,1.996766,1.996766,1.996766,1.996766,1.996766,1.996766,,,,,,,1.996766,1.996767,1.996767,1.996768,1.996768,1.996767,1.996766,1.996766,1.996766,1.996766,0.688884,0.688884,0.688885,0.688885,0.688885,0.688885,0.688884,0.688884,0.354426,0.354426,14.999996,14.999992,14.999991,14.999982,14.999985,14.999986,15,15,15,15,,,,,,,,,,,34400,34400,1.996766,1.996766,1.996766,1.996766,1.996766,1.996766,1.996766,1.996766,0.688884,0.688884,15,15,, +26001,0,0.463393,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.929849,0.15,4,1.853572,1.853572,1.853572,1.853572,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.853573,1.853572,1.853572,1.853572,1.853573,1.853572,1.853572,1.853572,1.853572,1.853572,1.853572,1.853572,1.853573,1.853573,1.853572,1.853572,1.853573,1.853573,1.853572,1.853572,1.853572,1.853572,1.853572,1.853572,,,,,,,1.853573,1.853572,1.853572,1.853572,1.853573,1.853573,1.853572,1.853572,1.853572,1.853572,0.639483,0.639482,0.639482,0.639482,0.639483,0.639483,0.639482,0.639482,0.329009,0.329009,14.99999,14.999997,14.999996,14.999996,14.999987,14.999987,15,15,15,15,,,,,,,,,,,34400,34400,1.853572,1.853572,1.853572,1.853572,1.853572,1.853572,1.853572,1.853572,0.639482,0.639482,15,15,, +26009,0,0.248936,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.334332,0.15,4,1.493613,1.493613,1.493613,1.493613,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,,,,,,,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,0.492892,0.492892,0.492892,0.492892,0.492892,0.492892,0.492892,0.492892,0.251425,0.251425,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,1.493613,0.492892,0.492892,10,10,, +26082,0,0.980217,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.004646,0.15,4,3.920867,3.920867,3.920867,3.920867,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,,,,,,,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,1.352699,1.352699,1.352699,1.352699,1.352699,1.352699,1.352699,1.352699,0.695954,0.695954,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,3.920867,1.352699,1.352699,15,15,, +26090,0,1.151845,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.682403,0.15,4,4.607382,4.607382,4.607382,4.607382,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,,,,,,,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,1.589547,1.589547,1.589547,1.589547,1.589547,1.589547,1.589547,1.589547,0.81781,0.81781,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,4.607382,1.589547,1.589547,15,15,, +26114,0,0.597507,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.803729,0.15,4,2.390029,2.390029,2.390029,2.390029,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,,,,,,,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,0.82456,0.82456,0.82456,0.82456,0.82456,0.82456,0.82456,0.82456,0.42423,0.42423,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,2.390029,0.82456,0.82456,15,15,, +26120,0,0.365312,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.828115,0.15,4,2.191872,2.191872,2.191872,2.191872,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,,,,,,,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,0.723318,0.723318,0.723318,0.723318,0.723318,0.723318,0.723318,0.723318,0.368965,0.368965,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,2.191872,0.723318,0.723318,10,10,, +26122,0,1.514904,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.462226,0.15,4,6.059616,6.059616,6.059616,6.059616,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,,,,,,,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,2.090567,2.090567,2.090567,2.090567,2.090567,2.090567,2.090567,2.090567,1.075582,1.075582,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,6.059616,2.090567,2.090567,15,15,, +26126,0,0.401535,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.604331,0.15,4,1.606142,1.606142,1.606142,1.606142,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,,,,,,,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,0.554119,0.554119,0.554119,0.554119,0.554119,0.554119,0.554119,0.554119,0.28509,0.28509,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,1.606142,0.554119,0.554119,15,15,, +26134,0,0.24646,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.281296,0.15,4,1.478763,1.478763,1.478763,1.478763,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,,,,,,,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,0.487992,0.487992,0.487992,0.487992,0.487992,0.487992,0.487992,0.487992,0.248925,0.248925,9.999999,10,10,10,9.999999,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,1.478763,0.487992,0.487992,10,10,, +26142,0,0.826646,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.713845,0.15,4,3.306584,3.306584,3.306584,3.306584,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.306585,3.306584,3.306584,3.306584,3.306585,3.306584,3.306584,3.306584,3.306584,3.306584,3.306584,3.306584,3.306585,3.306585,3.306584,3.306584,3.306585,3.306585,3.306584,3.306584,3.306584,3.306584,3.306584,3.306584,,,,,,,3.306585,3.306584,3.306584,3.306584,3.306585,3.306585,3.306584,3.306584,3.306584,3.306584,1.140772,1.140772,1.140772,1.140772,1.140772,1.140772,1.140772,1.140772,0.586919,0.586919,14.999996,15,15,15,14.999999,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,3.306584,3.306584,3.306584,3.306584,3.306584,3.306584,3.306584,3.306584,1.140772,1.140772,15,15,, +26150,0,0.219137,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.695793,0.15,4,1.314822,1.314822,1.314822,1.314822,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,,,,,,,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,0.433891,0.433891,0.433891,0.433891,0.433891,0.433891,0.433891,0.433891,0.221328,0.221328,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,1.314822,0.433891,0.433891,10,10,, +26157,0,0.276993,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.935568,0.15,4,1.107973,1.107973,1.107973,1.107973,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,,,,,,,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,0.382251,0.382251,0.382251,0.382251,0.382251,0.382251,0.382251,0.382251,0.196665,0.196665,14.999998,14.999999,14.999994,14.999997,14.999994,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,1.107973,0.382251,0.382251,15,15,, +26161,0,0.250508,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.368029,0.15,4,1.503048,1.503048,1.503048,1.503048,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.503049,1.503049,1.503048,1.503048,1.503049,1.503049,1.503049,1.503049,1.503048,1.503048,1.503049,1.503049,1.50305,1.50305,1.503048,1.503048,1.50305,1.50305,1.503048,1.503048,1.503048,1.503048,1.503048,1.503048,,,,,,,1.503049,1.503049,1.503049,1.503049,1.50305,1.50305,1.503048,1.503048,1.503048,1.503048,0.496006,0.496006,0.496006,0.496006,0.496006,0.496007,0.496006,0.496006,0.253013,0.253013,9.999995,9.999996,9.999998,9.999998,9.999991,9.999986,10,10,10,10,,,,,,,,,,,34400,34400,1.503048,1.503048,1.503048,1.503048,1.503048,1.503048,1.503048,1.503048,0.496006,0.496006,10,10,, +26169,0,0.464988,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.964025,0.15,4,2.789927,2.789927,2.789927,2.789927,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,2.789928,2.789927,2.789927,2.789927,2.789928,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,,,,,,,2.789927,2.789927,2.789927,2.789927,2.789928,2.789927,2.789927,2.789927,2.789927,2.789927,0.920676,0.920676,0.920676,0.920676,0.920676,0.920676,0.920676,0.920676,0.469638,0.469638,9.999999,10,9.999999,10,9.999997,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,2.789927,0.920676,0.920676,10,10,, +26171,0,0.446978,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.578097,0.15,4,2.681867,2.681867,2.681867,2.681867,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,,,,,,,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,0.885016,0.885016,0.885016,0.885016,0.885016,0.885016,0.885016,0.885016,0.451448,0.451448,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,2.681867,0.885016,0.885016,10,10,, +26179,0,0.483883,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.368926,0.15,4,2.903299,2.903299,2.903299,2.903299,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,,,,,,,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,0.958089,0.958089,0.958089,0.958089,0.958089,0.958089,0.958089,0.958089,0.488722,0.488722,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,2.903299,0.958089,0.958089,10,10,, +26181,0,0.297314,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.371015,0.15,4,1.783884,1.783884,1.783884,1.783884,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,,,,,,,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,0.588682,0.588682,0.588682,0.588682,0.588682,0.588682,0.588682,0.588682,0.300287,0.300287,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,1.783884,0.588682,0.588682,10,10,, +26184,0,0.437513,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.375271,0.15,4,2.625076,2.625076,2.625076,2.625076,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,,,,,,,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,0.866275,0.866275,0.866275,0.866275,0.866275,0.866275,0.866275,0.866275,0.441888,0.441888,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,2.625076,0.866275,0.866275,10,10,, +26189,0,0.742202,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.904337,0.15,4,4.453214,4.453214,4.453214,4.453214,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,,,,,,,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,1.469561,1.469561,1.469561,1.469561,1.469561,1.469561,1.469561,1.469561,0.749624,0.749624,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,4.453214,1.469561,1.469561,10,10,, +26191,0,0.211948,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.54174,0.15,4,1.271687,1.271687,1.271687,1.271687,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,,,,,,,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,0.419657,0.419657,0.419657,0.419657,0.419657,0.419657,0.419657,0.419657,0.214067,0.214067,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,1.271687,0.419657,0.419657,10,10,, +26195,0,0.230141,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.931601,0.15,4,1.380848,1.380848,1.380848,1.380848,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,1.380849,1.380848,1.380848,1.380848,1.380849,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,,,,,,,1.380848,1.380848,1.380848,1.380848,1.380848,1.380849,1.380848,1.380848,1.380848,1.380848,0.45568,0.45568,0.45568,0.45568,0.45568,0.45568,0.45568,0.45568,0.232443,0.232443,9.999999,10,10,10,9.999998,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,1.380848,0.45568,0.45568,10,10,, +26207,0,0.328756,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.044762,0.15,4,1.972533,1.972533,1.972533,1.972533,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,,,,,,,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,0.650936,0.650936,0.650936,0.650936,0.650936,0.650936,0.650936,0.650936,0.332043,0.332043,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,1.972533,0.650936,0.650936,10,10,, +26209,0,0.419515,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.989609,0.15,4,2.51709,2.51709,2.51709,2.51709,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.517091,2.517091,2.51709,2.51709,2.517091,2.517091,2.517091,2.517091,2.51709,2.51709,2.517091,2.517091,2.517091,2.517091,2.51709,2.51709,2.517091,2.517091,2.51709,2.51709,2.51709,2.51709,2.51709,2.51709,,,,,,,2.517091,2.517091,2.517091,2.517091,2.517091,2.517091,2.51709,2.51709,2.51709,2.51709,0.83064,0.83064,0.83064,0.83064,0.83064,0.83064,0.83064,0.83064,0.42371,0.42371,9.999998,10,9.999999,9.999999,9.999999,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,2.51709,2.51709,2.51709,2.51709,2.51709,2.51709,2.51709,2.51709,0.83064,0.83064,10,10,, +26212,0,0.501857,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.754079,0.15,4,2.007428,2.007428,2.007428,2.007428,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,,,,,,,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,0.692563,0.692563,0.692563,0.692563,0.692563,0.692563,0.692563,0.692563,0.356319,0.356319,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,2.007428,0.692563,0.692563,15,15,, +26216,0,0.248339,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.321545,0.15,4,1.490033,1.490033,1.490033,1.490033,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,,,,,,,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,0.491711,0.491711,0.491711,0.491711,0.491711,0.491711,0.491711,0.491711,0.250822,0.250822,10,9.999999,9.999999,9.999999,9.999998,10,10,10,10,10,,,,,,,,,,,34400,34400,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,1.490033,0.491711,0.491711,10,10,, +26220,0,0.275248,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.898182,0.15,4,1.651491,1.651491,1.651491,1.651491,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,,,,,,,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,0.544992,0.544992,0.544992,0.544992,0.544992,0.544992,0.544992,0.544992,0.278001,0.278001,10,9.999998,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,1.651491,0.544992,0.544992,10,10,, +26221,0,0.552549,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.84034,0.15,4,3.315295,3.315295,3.315295,3.315295,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.315295,3.315296,3.315295,3.315295,3.315295,3.315296,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,,,,,,,3.315295,3.315296,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,1.094047,1.094048,1.094047,1.094047,1.094048,1.094047,1.094047,1.094047,0.558075,0.558075,10,9.999998,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,3.315295,1.094047,1.094047,10,10,, +26228,0,0.5375,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.517858,0.15,4,2.15,2.15,2.15,2.15,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.15,2.15,2.15,2.15,2.15,2.15,2.15,2.15,2.15,2.15,2.15,2.15,2.150001,2.15,2.15,2.15,2.150001,2.15,2.15,2.15,2.15,2.15,2.15,2.15,,,,,,,2.15,2.15,2.15,2.15,2.150001,2.15,2.15,2.15,2.15,2.15,0.74175,0.74175,0.74175,0.74175,0.74175,0.74175,0.74175,0.74175,0.381625,0.381625,14.999999,14.999999,14.999998,14.999998,14.999996,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.15,2.15,2.15,2.15,2.15,2.15,2.15,2.15,0.74175,0.74175,15,15,, +26232,0,0.502209,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.761627,0.15,4,2.008837,2.008837,2.008837,2.008837,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,,,,,,,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,0.693049,0.693049,0.693049,0.693049,0.693049,0.693049,0.693049,0.693049,0.356569,0.356569,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,2.008837,0.693049,0.693049,15,15,, +26823,0,0.477344,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.228801,0.15,4,2.864064,2.864064,2.864064,2.864064,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,,,,,,,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,0.945141,0.945141,0.945141,0.945141,0.945141,0.945141,0.945141,0.945141,0.482117,0.482117,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,2.864064,0.945141,0.945141,10,10,, +27139,0,1.039639,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.277973,0.15,4,4.158555,4.158555,4.158555,4.158555,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,,,,,,,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,1.434701,1.434702,1.434701,1.434701,1.434702,1.434701,1.434701,1.434701,0.738144,0.738144,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,4.158555,1.434701,1.434701,15,15,, +27278,0,0.698767,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.973589,0.15,4,2.79507,2.79507,2.79507,2.79507,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,,,,,,,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,0.964299,0.964299,0.964299,0.964299,0.964299,0.964299,0.964299,0.964299,0.496125,0.496125,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,2.79507,0.964299,0.964299,15,15,, +27344,0,1.200825,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.731964,0.15,4,4.8033,4.8033,4.8033,4.8033,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,,,,,,,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,1.657138,1.657138,1.657138,1.657138,1.657138,1.657138,1.657138,1.657138,0.852586,0.852586,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,4.8033,1.657138,1.657138,15,15,, +27413,0,0.531821,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.396157,0.15,4,3.190924,3.190924,3.190924,3.190924,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,,,,,,,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,1.053005,1.053005,1.053005,1.053005,1.053005,1.053005,1.053005,1.053005,0.537139,0.537139,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,3.190924,1.053005,1.053005,10,10,, +27504,0,0.553624,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.863376,0.15,4,3.321745,3.321745,3.321745,3.321745,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,,,,,,,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,1.096176,1.096176,1.096176,1.096176,1.096176,1.096176,1.096176,1.096176,0.55916,0.55916,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,3.321745,1.096176,1.096176,10,10,, +28060,0,0.494223,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.590493,0.15,4,2.965338,2.965338,2.965338,2.965338,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,,,,,,,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,0.978562,0.978562,0.978562,0.978562,0.978562,0.978562,0.978562,0.978562,0.499165,0.499165,9.999999,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,2.965338,0.978562,0.978562,10,10,, +28577,0,1.672071,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.830087,0.15,4,6.688283,6.688283,6.688283,6.688283,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.688301,6.688283,6.688283,6.688283,6.688301,6.688283,6.688283,6.688283,6.688283,6.688283,6.688283,6.688283,6.688284,6.688298,6.688283,6.688283,6.688284,6.688298,6.688283,6.688283,6.688283,6.688283,6.688283,6.688283,,,,,,,6.688301,6.688283,6.688283,6.688283,6.688284,6.688298,6.688283,6.688283,6.688283,6.688283,2.307463,2.307458,2.307458,2.307458,2.307458,2.307462,2.307458,2.307458,1.18717,1.18717,14.99996,14.999999,14.999999,14.999999,14.999998,14.999967,15,15,15,15,,,,,,,,,,,34400,34400,6.688283,6.688283,6.688283,6.688283,6.688283,6.688283,6.688283,6.688283,2.307458,2.307458,15,15,, +28882,0,0.44768,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.593148,0.15,4,2.686081,2.686081,2.686081,2.686081,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,,,,,,,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,0.886407,0.886407,0.886407,0.886407,0.886407,0.886407,0.886407,0.886407,0.452157,0.452157,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,2.686081,0.886407,0.886407,10,10,, +29661,0,0.436917,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.362517,0.15,4,1.74767,1.74767,1.74767,1.74767,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,,,,,,,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,0.602946,0.602946,0.602946,0.602946,0.602946,0.602946,0.602946,0.602946,0.310211,0.310211,15,15,14.999999,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,1.74767,0.602946,0.602946,15,15,, +29667,0,0.345529,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.404195,0.15,4,2.073174,2.073174,2.073174,2.073174,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,,,,,,,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,0.684148,0.684148,0.684148,0.684148,0.684148,0.684148,0.684148,0.684148,0.348984,0.348984,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,2.073174,0.684148,0.684148,10,10,, +29698,0,0.291215,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.24033,0.15,4,1.747293,1.747293,1.747293,1.747293,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,,,,,,,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,0.576607,0.576607,0.576607,0.576607,0.576607,0.576607,0.576607,0.576607,0.294128,0.294128,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,1.747293,0.576607,0.576607,10,10,, +29782,0,1.126363,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.136356,0.15,4,4.505453,4.505453,4.505453,4.505453,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,,,,,,,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,1.554381,1.554381,1.554381,1.554381,1.554381,1.554381,1.554381,1.554381,0.799718,0.799718,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,4.505453,1.554381,1.554381,15,15,, +29918,0,0.580609,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.441612,0.15,4,3.483651,3.483651,3.483651,3.483651,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,,,,,,,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,1.149605,1.149605,1.149605,1.149605,1.149605,1.149605,1.149605,1.149605,0.586415,0.586415,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,3.483651,1.149605,1.149605,10,10,, +29921,0,0.313097,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.70922,0.15,4,1.878581,1.878581,1.878581,1.878581,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,,,,,,,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,0.619932,0.619932,0.619932,0.619932,0.619932,0.619932,0.619932,0.619932,0.316228,0.316228,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,1.878581,0.619932,0.619932,10,10,, +30276,0,0.629412,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.487394,0.15,4,3.77647,3.77647,3.77647,3.77647,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,,,,,,,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,1.246235,1.246235,1.246235,1.246235,1.246235,1.246235,1.246235,1.246235,0.635706,0.635706,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,3.77647,1.246235,1.246235,10,10,, +31070,0,0.231412,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.958823,0.15,4,0.925647,0.925647,0.925647,0.925647,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.925647,0.925654,0.925647,0.925647,0.925647,0.925654,0.925648,0.92565,0.925647,0.925647,0.925648,0.92565,0.925665,0.925651,0.925647,0.925647,0.925665,0.925651,0.925647,0.925647,0.925647,0.925647,0.925647,0.925647,,,,,,,0.925647,0.925654,0.925648,0.92565,0.925665,0.925651,0.925647,0.925647,0.925647,0.925647,0.319348,0.31935,0.319349,0.319349,0.319354,0.319349,0.319348,0.319348,0.164302,0.164302,14.999998,14.999891,14.999981,14.999954,14.999702,14.999934,15,15,15,15,,,,,,,,,,,34400,34400,0.925647,0.925647,0.925647,0.925647,0.925647,0.925647,0.925647,0.925647,0.319348,0.319348,15,15,, +31204,0,0.490095,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.502043,0.15,4,2.940572,2.940572,2.940572,2.940572,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,,,,,,,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,0.970389,0.970389,0.970389,0.970389,0.970389,0.970389,0.970389,0.970389,0.494996,0.494996,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,2.940572,0.970389,0.970389,10,10,, +31207,0,0.654402,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.022899,0.15,4,3.926412,3.926412,3.926412,3.926412,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,,,,,,,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,1.295716,1.295716,1.295716,1.295716,1.295716,1.295716,1.295716,1.295716,0.660946,0.660946,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,3.926412,1.295716,1.295716,10,10,, +31209,0,0.37664,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.070868,0.15,4,2.259843,2.259843,2.259843,2.259843,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,,,,,,,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,0.745748,0.745748,0.745748,0.745748,0.745748,0.745748,0.745748,0.745748,0.380407,0.380407,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,2.259843,0.745748,0.745748,10,10,, +31211,0,0.276816,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.931777,0.15,4,1.660897,1.660897,1.660897,1.660897,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.660898,1.660897,1.660897,1.660897,1.660898,1.660897,1.660897,1.660897,1.660897,1.660897,1.660897,1.660897,1.660898,1.660897,1.660897,1.660897,1.660898,1.660897,1.660897,1.660897,1.660897,1.660897,1.660897,1.660897,,,,,,,1.660898,1.660897,1.660897,1.660897,1.660898,1.660897,1.660897,1.660897,1.660897,1.660897,0.548096,0.548096,0.548096,0.548096,0.548096,0.548096,0.548096,0.548096,0.279584,0.279584,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.660897,1.660897,1.660897,1.660897,1.660897,1.660897,1.660897,1.660897,0.548096,0.548096,10,10,, +31212,0,0.292019,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.257551,0.15,4,1.752114,1.752114,1.752114,1.752114,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,,,,,,,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,0.578198,0.578198,0.578198,0.578198,0.578198,0.578198,0.578198,0.578198,0.294939,0.294939,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,1.752114,0.578198,0.578198,10,10,, +31214,0,0.268484,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.753232,0.15,4,1.610905,1.610905,1.610905,1.610905,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,,,,,,,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,0.531599,0.531599,0.531599,0.531599,0.531599,0.531599,0.531599,0.531599,0.271169,0.271169,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,1.610905,0.531599,0.531599,10,10,, +31215,0,0.274754,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.887595,0.15,4,1.648527,1.648527,1.648527,1.648527,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,,,,,,,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,0.544014,0.544014,0.544014,0.544014,0.544014,0.544014,0.544014,0.544014,0.277502,0.277502,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,1.648527,0.544014,0.544014,10,10,, +31275,0,0.940652,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,20.156834,0.15,4,3.762609,3.762609,3.762609,3.762609,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,,,,,,,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,1.2981,1.2981,1.2981,1.2981,1.2981,1.2981,1.2981,1.2981,0.667863,0.667863,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,3.762609,1.2981,1.2981,15,15,, +31277,0,0.425119,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,9.109692,0.15,4,1.700476,1.700476,1.700476,1.700476,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,,,,,,,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,0.586664,0.586664,0.586664,0.586664,0.586664,0.586664,0.586664,0.586664,0.301834,0.301834,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,1.700476,0.586664,0.586664,15,15,, +31296,0,0.611388,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,13.101178,0.15,4,2.445553,2.445553,2.445553,2.445553,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,,,,,,,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,0.843716,0.843716,0.843716,0.843716,0.843716,0.843716,0.843716,0.843716,0.434086,0.434086,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,2.445553,0.843716,0.843716,15,15,, +31302,0,0.744149,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.946053,0.15,4,4.464895,4.464895,4.464895,4.464895,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,,,,,,,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,1.473415,1.473415,1.473415,1.473415,1.473415,1.473415,1.473415,1.473415,0.751591,0.751591,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,4.464895,1.473415,1.473415,10,10,, +31303,0,0.188138,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.03152,0.15,4,1.128826,1.128826,1.128826,1.128826,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,,,,,,,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,0.372512,0.372512,0.372512,0.372512,0.372512,0.372512,0.372512,0.372512,0.190019,0.190019,9.999999,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,1.128826,0.372512,0.372512,10,10,, +31308,0,0.514307,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.020866,0.15,4,3.085842,3.085842,3.085842,3.085842,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,,,,,,,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,1.018328,1.018328,1.018328,1.018328,1.018328,1.018328,1.018328,1.018328,0.51945,0.51945,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,3.085842,1.018328,1.018328,10,10,, +31311,0,0.250576,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.369492,0.15,4,1.503458,1.503458,1.503458,1.503458,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,,,,,,,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,0.496141,0.496141,0.496141,0.496141,0.496141,0.496141,0.496141,0.496141,0.253082,0.253082,9.999999,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,1.503458,0.496141,0.496141,10,10,, +31315,0,0.528525,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.32553,0.15,4,3.171149,3.171149,3.171149,3.171149,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,,,,,,,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,1.046479,1.046479,1.046479,1.046479,1.046479,1.046479,1.046479,1.046479,0.53381,0.53381,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,3.171149,1.046479,1.046479,10,10,, +31327,0,0.50486,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.81843,0.15,4,3.02916,3.02916,3.02916,3.02916,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,,,,,,,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,0.999623,0.999623,0.999623,0.999623,0.999623,0.999623,0.999623,0.999623,0.509909,0.509909,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,3.02916,0.999623,0.999623,10,10,, +31328,0,0.503745,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.794539,0.15,4,3.022471,3.022471,3.022471,3.022471,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,,,,,,,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,0.997415,0.997415,0.997415,0.997415,0.997415,0.997415,0.997415,0.997415,0.508783,0.508783,10,9.999999,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,3.022471,0.997415,0.997415,10,10,, +31331,0,0.19337,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.143643,0.15,4,1.16022,1.16022,1.16022,1.16022,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,,,,,,,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,0.382873,0.382873,0.382873,0.382873,0.382873,0.382873,0.382873,0.382873,0.195304,0.195304,9.999998,9.999998,9.999998,9.999998,9.999995,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,1.16022,0.382873,0.382873,10,10,, +31335,0,0.498832,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.689252,0.15,4,2.992991,2.992991,2.992991,2.992991,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.992992,2.992991,2.992991,2.992991,2.992992,2.992991,2.992991,2.992991,2.992991,2.992991,2.992991,2.992991,2.992992,2.992992,2.992991,2.992991,2.992992,2.992992,2.992991,2.992991,2.992991,2.992991,2.992991,2.992991,,,,,,,2.992992,2.992991,2.992991,2.992991,2.992992,2.992992,2.992991,2.992991,2.992991,2.992991,0.987687,0.987687,0.987687,0.987687,0.987687,0.987687,0.987687,0.987687,0.50382,0.50382,9.999996,9.999998,9.999999,9.999999,9.999995,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,2.992991,2.992991,2.992991,2.992991,2.992991,2.992991,2.992991,2.992991,0.987687,0.987687,10,10,, +31341,0,0.50181,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.753072,0.15,4,3.01086,3.01086,3.01086,3.01086,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,,,,,,,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,0.993584,0.993584,0.993584,0.993584,0.993584,0.993584,0.993584,0.993584,0.506828,0.506828,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,3.01086,0.993584,0.993584,10,10,, +31342,0,0.501076,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.737349,0.15,4,3.006458,3.006458,3.006458,3.006458,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,,,,,,,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,0.992131,0.992131,0.992131,0.992131,0.992131,0.992131,0.992131,0.992131,0.506087,0.506087,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,3.006458,0.992131,0.992131,10,10,, +31493,0,0.365975,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.842328,0.15,4,2.195852,2.195852,2.195852,2.195852,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,,,,,,,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,0.724631,0.724631,0.724631,0.724631,0.724631,0.724631,0.724631,0.724631,0.369635,0.369635,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,2.195852,0.724631,0.724631,10,10,, +31556,0,0.580823,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.446197,0.15,4,3.484935,3.484935,3.484935,3.484935,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,,,,,,,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,1.150029,1.150029,1.150029,1.150029,1.150029,1.150029,1.150029,1.150029,0.586631,0.586631,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,3.484935,1.150029,1.150029,10,10,, +31557,0,0.597305,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.799399,0.15,4,3.583832,3.583832,3.583832,3.583832,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,,,,,,,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,1.182664,1.182664,1.182664,1.182664,1.182664,1.182664,1.182664,1.182664,0.603278,0.603278,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,3.583832,1.182664,1.182664,10,10,, +31811,0,0.508082,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.887467,0.15,4,3.048491,3.048491,3.048491,3.048491,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,,,,,,,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,1.006002,1.006002,1.006002,1.006002,1.006002,1.006002,1.006002,1.006002,0.513163,0.513163,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,3.048491,1.006002,1.006002,10,10,, +32478,0,0.711455,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.245454,0.15,4,4.268727,4.268727,4.268727,4.268727,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,,,,,,,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,1.40868,1.40868,1.40868,1.40868,1.40868,1.40868,1.40868,1.40868,0.718569,0.718569,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,4.268727,1.40868,1.40868,10,10,, +33789,0,0.283479,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.074555,0.15,4,1.700875,1.700875,1.700875,1.700875,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,1.700876,1.700875,1.700875,1.700875,1.700876,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,,,,,,,1.700875,1.700875,1.700875,1.700875,1.700875,1.700876,1.700875,1.700875,1.700875,1.700875,0.561289,0.561289,0.561289,0.561289,0.561289,0.561289,0.561289,0.561289,0.286314,0.286314,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,1.700875,0.561289,0.561289,10,10,, +33942,0,0.719456,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.416922,0.15,4,2.877825,2.877825,2.877825,2.877825,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,2.877826,2.877825,2.877825,2.877825,2.877826,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,,,,,,,2.877825,2.877825,2.877825,2.877825,2.877825,2.877826,2.877825,2.877825,2.877825,2.877825,0.99285,0.99285,0.99285,0.99285,0.99285,0.99285,0.99285,0.99285,0.510814,0.510814,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,2.877825,0.99285,0.99285,15,15,, +2567,0,0.798635,1,1,0,2,4,,5,5,8 Mile,Rd,656509,2.037,2.835,0,17.113615,3,4,1.197953,1.197953,1.197953,1.197953,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.543377,1.210847,1.197953,1.197953,1.543377,1.210847,1.210021,1.20692,1.197953,1.197953,1.210021,1.20692,1.254428,1.393552,1.197953,1.197953,1.254428,1.393552,1.197953,1.197953,1.197953,1.197953,1.197953,1.197953,,,,,,,1.543377,1.210847,1.210021,1.20692,1.254428,1.393552,1.197953,1.197953,1.197953,1.197953,0.606767,0.507008,0.506761,0.50583,0.520083,0.56182,0.50314,0.50314,0.267543,0.267543,31.047589,39.574065,39.601067,39.702828,38.199171,34.385597,40,40,40,40,,,,,,,,,,,3096,3096,1.197953,1.197953,1.197953,1.197953,1.197953,1.197953,1.197953,1.197953,0.50314,0.50314,40,40,, +3492,0,0.433744,1,1,0,2,4,,5,3,10 Mile,Rd,656510,1.789,2.222,0,9.294516,3,4,0.650616,0.650616,0.650616,0.650616,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.085998,0.984049,0.650616,0.650616,1.085998,0.984049,0.840577,0.810311,0.650616,0.650616,0.840577,0.810311,1.095085,1.167093,0.650616,0.650616,1.095085,1.167093,0.650616,0.650616,0.650616,0.650616,0.650616,0.650616,,,,,,,1.085998,0.984049,0.840577,0.810311,1.095085,1.167093,0.650616,0.650616,0.650616,0.650616,0.403873,0.373289,0.330247,0.321167,0.4066,0.428202,0.273259,0.273259,0.145304,0.145304,23.963808,26.446501,30.960443,32.116869,23.764945,22.298698,40,40,40,40,,,,,,,,,,,3096,3096,0.650616,0.650616,0.650616,0.650616,0.650616,0.650616,0.650616,0.650616,0.273259,0.273259,40,40,, +8505,0,2.655759,1,1,0,2,5,,5,6,Plank,Rd,1226001,2.226,4.881,0,56.909123,3.7,5,5.311518,5.311518,5.311518,5.311518,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.311521,5.334928,5.311518,5.311518,5.311521,5.334928,5.311594,5.311731,5.311518,5.311518,5.311594,5.311731,5.323213,5.311942,5.311518,5.311518,5.323213,5.311942,5.311518,5.311518,5.311518,5.311518,5.311518,5.311518,,,,,,,5.311521,5.334928,5.311594,5.311731,5.323213,5.311942,5.311518,5.311518,5.311518,5.311518,2.071493,2.078515,2.071515,2.071556,2.075,2.071619,2.071492,2.071492,1.088861,1.088861,29.999987,29.868357,29.999573,29.998798,29.934094,29.997607,30,30,30,30,,,,,,,,,,,2580,2580,5.311518,5.311518,5.311518,5.311518,5.311518,5.311518,5.311518,5.311518,2.071492,2.071492,30,30,, +8710,0,1.507788,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,2.774,4.281,0,32.309739,3,4,2.261682,2.261682,2.261682,2.261682,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.265647,2.29994,2.261682,2.261682,2.265647,2.29994,2.262965,2.26248,2.261682,2.261682,2.262965,2.26248,2.282366,2.271647,2.261682,2.261682,2.282366,2.271647,2.261682,2.261682,2.261682,2.261682,2.261682,2.261682,,,,,,,2.265647,2.29994,2.262965,2.26248,2.282366,2.271647,2.261682,2.261682,2.261682,2.261682,0.951096,0.961384,0.950291,0.950146,0.956112,0.952896,0.949906,0.949906,0.505109,0.505109,39.929998,39.334623,39.97731,39.985888,39.637486,39.824523,40,40,40,40,,,,,,,,,,,3096,3096,2.261682,2.261682,2.261682,2.261682,2.261682,2.261682,2.261682,2.261682,0.949906,0.949906,40,40,, +8978,0,1.034757,1,1,0,2,4,,5,6,Custer,Rd,1223803,7.677,8.711,0,22.17337,3,4,1.552136,1.552136,1.552136,1.552136,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.579131,1.645336,1.552136,1.552136,1.579131,1.645336,1.5561,1.555953,1.552136,1.552136,1.5561,1.555953,1.653494,1.620541,1.552136,1.552136,1.653494,1.620541,1.552136,1.552136,1.552136,1.552136,1.552136,1.552136,,,,,,,1.579131,1.645336,1.5561,1.555953,1.653494,1.620541,1.552136,1.552136,1.552136,1.552136,0.659995,0.679857,0.653086,0.653042,0.682305,0.672418,0.651897,0.651897,0.346644,0.346644,39.316214,37.734207,39.898093,39.901867,37.548026,38.31156,40,40,40,40,,,,,,,,,,,3096,3096,1.552136,1.552136,1.552136,1.552136,1.552136,1.552136,1.552136,1.552136,0.651897,0.651897,40,40,, +9475,1,1.176343,3,0,0,1,1,,4,5,E I 94,,1426109,27.666,28.841,0,,0.8,7.5,1.008294,,1.008294,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.040796,,1.008294,,1.040796,,1.009472,,1.008294,,1.009472,,1.149781,,1.008294,,1.149781,,1.008294,,1.008294,,1.008294,,,,,,,,1.040796,,1.009472,,1.149781,,1.008294,,1.008294,,0.523981,,0.514583,,0.556676,,0.51423,,0.280642,,67.814062,,69.918316,,61.3861,,70,,70,,,,,,,,,,,,22704,,1.008294,,1.008294,,1.008294,,1.008294,,0.51423,,70,,, +9534,0,1.667373,1,1,0,2,4,,5,5,Willis,Rd,1427410,6.553,8.219,0,35.729415,3,4,2.501059,2.501059,2.501059,2.501059,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.614231,2.789675,2.501059,2.501059,2.614231,2.789675,2.528528,2.561802,2.501059,2.501059,2.528528,2.561802,2.787427,2.765606,2.501059,2.501059,2.787427,2.765606,2.501059,2.501059,2.501059,2.501059,2.501059,2.501059,,,,,,,2.614231,2.789675,2.528528,2.561802,2.787427,2.765606,2.501059,2.501059,2.501059,2.501059,1.084396,1.13703,1.058686,1.068668,1.136355,1.129809,1.050445,1.050445,0.55857,0.55857,38.268371,35.861652,39.56545,39.051556,35.890581,36.173753,40,40,40,40,,,,,,,,,,,3096,3096,2.501059,2.501059,2.501059,2.501059,2.501059,2.501059,2.501059,2.501059,1.050445,1.050445,40,40,, +9581,0,0.227553,1,1,0,2,3,,4,5,Michigan,Ave,1427301,16.678,16.905,0,4.876128,3.7,5,0.341329,0.341329,0.341329,0.341329,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.283597,0.389874,0.341329,0.341329,1.283597,0.389874,0.838039,0.371599,0.341329,0.341329,0.838039,0.371599,1.345664,0.376352,0.341329,0.341329,1.345664,0.376352,0.341329,0.341329,0.341329,0.341329,0.341329,0.341329,,,,,,,1.283597,0.389874,0.838039,0.371599,1.345664,0.376352,0.341329,0.341329,0.341329,0.341329,0.426039,0.157922,0.292371,0.152439,0.444659,0.153865,0.143358,0.143358,0.07623,0.07623,10.636639,35.019426,16.291787,36.741598,10.146036,36.277655,40,40,40,40,,,,,,,,,,,3784,3784,0.341329,0.341329,0.341329,0.341329,0.341329,0.341329,0.341329,0.341329,0.143358,0.143358,40,40,, +9591,-1,0.122781,0,4,0,2,3,,2,5,Cross,St,1428902,1.876,1.999,0,2.631023,6,5,,0.245562,,0.245562,,30,,32000,,7264,,16000,,10323,,11008,,10995,,0.286588,,0.245562,,0.286588,,0.247339,,0.245562,,0.247339,,0.257214,,0.245562,,0.257214,,0.245562,,0.245562,,0.245562,,,,,,,,0.286588,,0.247339,,0.257214,,0.245562,,0.245562,,0.108077,,0.096302,,0.099265,,0.095769,,0.05034,,25.705432,,29.784464,,28.640983,,30,,30,,,,,,,,,,,,11008,,0.245562,,0.245562,,0.245562,,0.245562,,0.095769,,30,, +9646,0,0.073554,1,1,0,2,5,,3,5,Congress,St,1428004,0.586,0.659,0,1.576154,8,4.5,0.176529,0.176529,0.176529,0.176529,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.188147,0.184618,0.176529,0.176529,0.188147,0.184618,0.177791,0.177225,0.176529,0.176529,0.177791,0.177225,0.20133,0.187284,0.176529,0.176529,0.20133,0.187284,0.176529,0.176529,0.176529,0.176529,0.176529,0.176529,,,,,,,0.188147,0.184618,0.177791,0.177225,0.20133,0.187284,0.176529,0.176529,0.176529,0.176529,0.069684,0.068625,0.066577,0.066407,0.073639,0.069425,0.066198,0.066198,0.03457,0.03457,23.456348,23.904699,24.822582,24.901789,21.92043,23.564399,25,25,25,25,,,,,,,,,,,2408,2408,0.176529,0.176529,0.176529,0.176529,0.176529,0.176529,0.176529,0.176529,0.066198,0.066198,25,25,, +9772,0,0.070688,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.166,1.236,0,1.514738,5,5,0.121179,0.121179,0.121179,0.121179,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.121264,0.122207,0.121179,0.121179,0.121264,0.122207,0.121221,0.121279,0.121179,0.121179,0.121221,0.121279,0.121457,0.12169,0.121179,0.121179,0.121457,0.12169,0.121179,0.121179,0.121179,0.121179,0.121179,0.121179,,,,,,,0.121264,0.122207,0.121221,0.121279,0.121457,0.12169,0.121179,0.121179,0.121179,0.121179,0.049103,0.049386,0.04909,0.049108,0.049161,0.049231,0.049078,0.049078,0.025953,0.025953,34.975574,34.705536,34.987781,34.971117,34.919964,34.852918,35,35,35,35,,,,,,,,,,,7568,7568,0.121179,0.121179,0.121179,0.121179,0.121179,0.121179,0.121179,0.121179,0.049078,0.049078,35,35,, +9868,1,0.154158,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.531,6.686,0,3.303384,6,5,0.308316,,0.308316,,30,,32000,,7264,,16000,,10323,,11008,,10995,,0.320271,,0.308316,,0.320271,,0.322088,,0.308316,,0.322088,,0.407822,,0.308316,,0.407822,,0.308316,,0.308316,,0.308316,,,,,,,,0.320271,,0.322088,,0.407822,,0.308316,,0.308316,,0.12383,,0.124375,,0.150095,,0.120243,,0.063205,,28.880179,,28.717222,,22.680163,,30,,30,,,,,,,,,,,,11008,,0.308316,,0.308316,,0.308316,,0.308316,,0.120243,,30,,, +9898,0,1.001532,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,24.006,25.007,0,21.461409,3,4,1.502299,1.502299,1.502299,1.502299,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.980627,1.655514,1.502299,1.502299,1.980627,1.655514,1.502707,1.502954,1.502299,1.502299,1.502707,1.502954,1.571059,1.749922,1.502299,1.502299,1.571059,1.749922,1.502299,1.502299,1.502299,1.502299,1.502299,1.502299,,,,,,,1.980627,1.655514,1.502707,1.502954,1.571059,1.749922,1.502299,1.502299,1.502299,1.502299,0.774464,0.67693,0.631088,0.631162,0.651594,0.705252,0.630965,0.630965,0.335513,0.335513,30.33986,36.298053,39.989127,39.982553,38.249316,34.339793,40,40,40,40,,,,,,,,,,,3096,3096,1.502299,1.502299,1.502299,1.502299,1.502299,1.502299,1.502299,1.502299,0.630965,0.630965,40,40,, +9973,1,0.37037,1,0,0,1,2,ROF,4,5,S US 23/Michigan,RAMP,1427606,0,0.37,0,,2.24,5,0.555555,,0.555555,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.57354,,0.555555,,0.57354,,0.572109,,0.555555,,0.572109,,0.638311,,0.555555,,0.638311,,0.555555,,0.555555,,0.555555,,,,,,,,0.57354,,0.572109,,0.638311,,0.555555,,0.555555,,0.238729,,0.238299,,0.25816,,0.233333,,0.124074,,38.74571,,38.842588,,34.814053,,40,,40,,,,,,,,,,,,5160,,0.555555,,0.555555,,0.555555,,0.555555,,0.233333,,40,,, +10212,1,0.368607,1,0,0,1,2,ROF,4,5,N US 23/Michigan,RAMP,1427607,0,0.368,0,,2.24,5,0.552911,,0.552911,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.553737,,0.552911,,0.553737,,0.553218,,0.552911,,0.553218,,0.553669,,0.552911,,0.553669,,0.552911,,0.552911,,0.552911,,,,,,,,0.553737,,0.553218,,0.553669,,0.552911,,0.552911,,0.23247,,0.232315,,0.23245,,0.232223,,0.123483,,39.940346,,39.97779,,39.945225,,40,,40,,,,,,,,,,,,5160,,0.552911,,0.552911,,0.552911,,0.552911,,0.232223,,40,,, +10213,0,0.236324,1,1,0,2,5,,3,5,Harriet,St,1428508,0,0.236,0,5.064079,8,4.5,0.567177,0.567177,0.567177,0.567177,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.567338,0.56722,0.567177,0.567177,0.567338,0.56722,0.567185,0.567177,0.567177,0.567177,0.567185,0.567177,0.569038,0.567179,0.567177,0.567177,0.569038,0.567179,0.567177,0.567177,0.567177,0.567177,0.567177,0.567177,,,,,,,0.567338,0.56722,0.567185,0.567177,0.569038,0.567179,0.567177,0.567177,0.567177,0.567177,0.21274,0.212704,0.212694,0.212691,0.21325,0.212692,0.212691,0.212691,0.111072,0.111072,24.992893,24.998109,24.999646,24.999994,24.918246,24.999886,25,25,25,25,,,,,,,,,,,2408,2408,0.567177,0.567177,0.567177,0.567177,0.567177,0.567177,0.567177,0.567177,0.212691,0.212691,25,25,, +10214,-1,1.144662,0,3,0,1,1,,3,5,W I 94,,1426110,27.687,28.831,0,,0.58,7,,1.056611,,1.056611,,65,,66000,,14982,,33000,,21292,,22704,,22678,,1.293542,,1.056611,,1.293542,,1.059109,,1.056611,,1.059109,,1.114213,,1.056611,,1.114213,,1.056611,,1.056611,,1.056611,,,,,,,,1.293542,,1.059109,,1.114213,,1.056611,,1.056611,,0.594102,,0.523772,,0.540303,,0.523022,,0.284404,,53.094309,,64.846686,,61.639642,,65,,65,,,,,,,,,,,,22704,,1.056611,,1.056611,,1.056611,,1.056611,,0.523022,,65,, +10300,0,0.44404,1,1,0,2,4,,4,5,State,Rd,1427508,1.195,1.638,0,9.515137,4.5,4.5,0.701115,0.701115,0.701115,0.701115,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.516646,0.87275,0.701115,0.701115,1.516646,0.87275,0.956713,0.916815,0.701115,0.701115,0.956713,0.916815,1.198724,1.43981,0.701115,0.701115,1.198724,1.43981,0.701115,0.701115,0.701115,0.701115,0.701115,0.701115,,,,,,,1.516646,0.87275,0.956713,0.916815,1.198724,1.43981,0.701115,0.701115,0.701115,0.701115,0.534921,0.341752,0.366941,0.354972,0.439544,0.51187,0.290262,0.290262,0.154012,0.154012,17.56665,30.526944,27.847838,29.059732,22.225611,18.504101,38,38,38,38,,,,,,,,,,,3096,3096,0.701115,0.701115,0.701115,0.701115,0.701115,0.701115,0.701115,0.701115,0.290262,0.290262,38,38,, +10309,0,1.468952,1,1,0,2,5,,5,6,Bigelow,Rd,1235101,0.802,2.27,0,31.477552,3.7,5,2.937905,2.937905,2.937905,2.937905,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.937906,2.937905,2.937905,2.937905,2.937906,2.937905,2.937905,2.937905,2.937905,2.937905,2.937905,2.937905,2.937905,2.937906,2.937905,2.937905,2.937905,2.937906,2.937905,2.937905,2.937905,2.937905,2.937905,2.937905,,,,,,,2.937906,2.937905,2.937905,2.937905,2.937905,2.937906,2.937905,2.937905,2.937905,2.937905,1.145783,1.145783,1.145783,1.145783,1.145783,1.145783,1.145783,1.145783,0.60227,0.60227,29.999988,29.999998,30,30,29.999993,29.999992,30,30,30,30,,,,,,,,,,,2580,2580,2.937905,2.937905,2.937905,2.937905,2.937905,2.937905,2.937905,2.937905,1.145783,1.145783,30,30,, +10315,0,3.121423,1,1,0,2,5,,5,6,Ostrander,Rd,1234904,0.201,3.321,0,66.887636,3.7,5,6.242846,6.242846,6.242846,6.242846,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,6.242846,6.24285,6.242846,6.242846,6.242846,6.24285,6.242846,6.242846,6.242846,6.242846,6.242846,6.242846,6.242849,6.242847,6.242846,6.242846,6.242849,6.242847,6.242846,6.242846,6.242846,6.242846,6.242846,6.242846,,,,,,,6.242846,6.24285,6.242846,6.242846,6.242849,6.242847,6.242846,6.242846,6.242846,6.242846,2.43471,2.434711,2.43471,2.43471,2.434711,2.43471,2.43471,2.43471,1.279783,1.279783,30,29.999982,30,29.999999,29.999983,29.999997,30,30,30,30,,,,,,,,,,,2580,2580,6.242846,6.242846,6.242846,6.242846,6.242846,6.242846,6.242846,6.242846,2.43471,2.43471,30,30,, +10461,0,0.455543,1,1,0,2,4,,4,5,Stony Creek,Rd,1431208,10.914,11.369,0,9.761641,4.5,4.5,0.719279,0.719279,0.719279,0.719279,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.782781,0.72346,0.719279,0.719279,0.782781,0.72346,0.722216,0.722523,0.719279,0.719279,0.722216,0.722523,0.732402,0.774276,0.719279,0.719279,0.732402,0.774276,0.719279,0.719279,0.719279,0.719279,0.719279,0.719279,,,,,,,0.782781,0.72346,0.722216,0.722523,0.732402,0.774276,0.719279,0.719279,0.719279,0.719279,0.316832,0.299036,0.298662,0.298755,0.301718,0.314281,0.297781,0.297781,0.158002,0.158002,34.917307,37.780393,37.845476,37.829403,37.319102,35.300835,38,38,38,38,,,,,,,,,,,3096,3096,0.719279,0.719279,0.719279,0.719279,0.719279,0.719279,0.719279,0.719279,0.297781,0.297781,38,38,, +10463,0,0.837051,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,9.907,10.744,0,17.936799,5.8,4.5,1.860112,1.860112,1.860112,1.860112,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.873145,1.930624,1.860112,1.860112,1.873145,1.930624,1.861978,1.864451,1.860112,1.860112,1.861978,1.864451,1.912082,1.895546,1.860112,1.860112,1.912082,1.895546,1.860112,1.860112,1.860112,1.860112,1.860112,1.860112,,,,,,,1.873145,1.930624,1.861978,1.864451,1.912082,1.895546,1.860112,1.860112,1.860112,1.860112,0.712613,0.729856,0.709262,0.710004,0.724294,0.719333,0.708703,0.708703,0.371092,0.371092,26.812143,26.013886,26.972953,26.937177,26.266158,26.495289,27,27,27,27,,,,,,,,,,,2580,2580,1.860112,1.860112,1.860112,1.860112,1.860112,1.860112,1.860112,1.860112,0.708703,0.708703,27,27,, +10478,0,1.007252,1,1,0,2,5,,5,5,Willow,Rd,1431207,4.131,5.137,0,21.583961,3.7,5,2.014503,2.014503,2.014503,2.014503,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.014503,2.01451,2.014503,2.014503,2.014503,2.01451,2.014503,2.014503,2.014503,2.014503,2.014503,2.014503,2.014507,2.014503,2.014503,2.014503,2.014507,2.014503,2.014503,2.014503,2.014503,2.014503,2.014503,2.014503,,,,,,,2.014503,2.01451,2.014503,2.014503,2.014507,2.014503,2.014503,2.014503,2.014503,2.014503,0.785656,0.785658,0.785656,0.785656,0.785657,0.785656,0.785656,0.785656,0.412973,0.412973,30,29.9999,30,30,29.999945,30,30,30,30,30,,,,,,,,,,,2580,2580,2.014503,2.014503,2.014503,2.014503,2.014503,2.014503,2.014503,2.014503,0.785656,0.785656,30,30,, +10499,1,0.599797,2,0,0,1,2,,4,5,N US 23,,1431202,8.259,8.858,0,,0.8,7.5,0.514112,,0.514112,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.563666,,0.514112,,0.563666,,0.514894,,0.514112,,0.514894,,0.519626,,0.514112,,0.519626,,0.514112,,0.514112,,0.514112,,,,,,,,0.563666,,0.514894,,0.519626,,0.514112,,0.514112,,0.277063,,0.262432,,0.263851,,0.262197,,0.143094,,63.846018,,69.893666,,69.257123,,70,,70,,,,,,,,,,,,15136,,0.514112,,0.514112,,0.514112,,0.514112,,0.262197,,70,,, +10786,0,0.509577,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,8.65,9.16,0,10.919498,3,4,0.764365,0.764365,0.764365,0.764365,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.291011,1.003322,0.764365,0.764365,1.291011,1.003322,0.94259,0.922864,0.764365,0.764365,0.94259,0.922864,1.244281,1.272322,0.764365,0.764365,1.244281,1.272322,0.764365,0.764365,0.764365,0.764365,0.764365,0.764365,,,,,,,1.291011,1.003322,0.94259,0.922864,1.244281,1.272322,0.764365,0.764365,0.764365,0.764365,0.479027,0.392721,0.374501,0.368583,0.465008,0.47342,0.321033,0.321033,0.170708,0.170708,23.682676,30.473346,32.436798,33.13012,24.572102,24.030546,40,40,40,40,,,,,,,,,,,3096,3096,0.764365,0.764365,0.764365,0.764365,0.764365,0.764365,0.764365,0.764365,0.321033,0.321033,40,40,, +10834,0,0.531108,1,1,1,2,5,,4,5,Lohr,Rd,1436708,0,0.531,0,11.380894,5.8,4.5,1.180241,1.180241,1.180241,1.180241,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.188712,1.181541,1.180241,1.180241,1.188712,1.181541,1.181911,1.181194,1.180241,1.180241,1.181911,1.181194,1.206649,1.207581,1.180241,1.180241,1.206649,1.207581,1.180241,1.180241,1.180241,1.180241,1.180241,1.180241,,,,,,,1.188712,1.181541,1.181911,1.181194,1.206649,1.207581,1.180241,1.180241,1.180241,1.180241,0.452213,0.450062,0.450173,0.449958,0.457594,0.457874,0.449672,0.449672,0.235458,0.235458,26.807578,26.970283,26.961841,26.978211,26.409087,26.388707,27,27,27,27,,,,,,,,,,,2838,2838,1.180241,1.180241,1.180241,1.180241,1.180241,1.180241,1.180241,1.180241,0.449672,0.449672,27,27,, +10838,0,1.799294,1,1,0,2,7,,5,5,7 Mile,Rd,1451104,0.048,1.847,0,38.55631,5.8,6,4.318307,4.318307,4.318307,4.318307,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.324037,4.318307,4.318307,4.318307,4.324037,4.318307,4.318307,4.318307,4.318307,4.318307,4.318307,4.318307,4.318307,4.319233,4.318307,4.318307,4.318307,4.319233,4.318307,4.318307,4.318307,4.318307,4.318307,4.318307,,,,,,,4.324037,4.318307,4.318307,4.318307,4.318307,4.319233,4.318307,4.318307,4.318307,4.318307,1.621084,1.619365,1.619365,1.619365,1.619365,1.619643,1.619365,1.619365,0.845668,0.845668,24.966871,25,25,25,25,24.994636,25,25,25,25,,,,,,,,,,,2064,2064,4.318307,4.318307,4.318307,4.318307,4.318307,4.318307,4.318307,4.318307,1.619365,1.619365,25,25,, +10854,0,0.950882,1,1,0,2,5,,4,5,Munger,Rd,1438404,2.029,2.98,0,20.376037,5.8,4.5,2.11307,2.11307,2.11307,2.11307,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.113281,2.11307,2.11307,2.11307,2.113281,2.11307,2.11307,2.11307,2.11307,2.11307,2.11307,2.11307,2.113077,2.124242,2.11307,2.11307,2.113077,2.124242,2.11307,2.11307,2.11307,2.11307,2.11307,2.11307,,,,,,,2.113281,2.11307,2.11307,2.11307,2.113077,2.124242,2.11307,2.11307,2.11307,2.11307,0.805143,0.80508,0.80508,0.80508,0.805082,0.808431,0.80508,0.80508,0.421558,0.421558,26.997309,27,27,27,26.999913,26.858008,27,27,27,27,,,,,,,,,,,2580,2580,2.11307,2.11307,2.11307,2.11307,2.11307,2.11307,2.11307,2.11307,0.80508,0.80508,27,27,, +10887,0,0.234155,1,1,0,2,4,,4,5,Bridge,Rd,1438202,0,0.234,0,5.017606,4.5,4.5,0.369718,0.369718,0.369718,0.369718,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.490652,0.369984,0.369718,0.369718,0.490652,0.369984,0.369842,0.369849,0.369718,0.369718,0.369842,0.369849,0.376645,0.490542,0.369718,0.369718,0.376645,0.490542,0.369718,0.369718,0.369718,0.369718,0.369718,0.369718,,,,,,,0.490652,0.369984,0.369842,0.369849,0.376645,0.490542,0.369718,0.369718,0.369718,0.369718,0.189344,0.153143,0.1531,0.153102,0.155141,0.189311,0.153063,0.153063,0.081215,0.081215,28.633927,37.972718,37.987303,37.986619,37.301207,28.640337,38,38,38,38,,,,,,,,,,,3096,3096,0.369718,0.369718,0.369718,0.369718,0.369718,0.369718,0.369718,0.369718,0.153063,0.153063,38,38,, +10974,0,1.014815,1,1,0,2,5,,5,5,Angle,Rd,1447103,0,1.014,0,21.746027,3.7,5,2.029629,2.029629,2.029629,2.029629,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.401889,2.034203,2.029629,2.029629,2.401889,2.034203,2.029673,2.029718,2.029629,2.029629,2.029673,2.029718,2.040935,2.193214,2.029629,2.029629,2.040935,2.193214,2.029629,2.029629,2.029629,2.029629,2.029629,2.029629,,,,,,,2.401889,2.034203,2.029673,2.029718,2.040935,2.193214,2.029629,2.029629,2.029629,2.029629,0.903233,0.792928,0.791568,0.791582,0.794947,0.840631,0.791555,0.791555,0.416074,0.416074,25.350411,29.93254,29.999358,29.998687,29.833819,27.762392,30,30,30,30,,,,,,,,,,,2580,2580,2.029629,2.029629,2.029629,2.029629,2.029629,2.029629,2.029629,2.029629,0.791555,0.791555,30,30,, +11007,0,0.502165,1,1,0,2,5,,4,5,Huron River,Dr,1438110,2.228,2.73,0,10.760678,5.8,4.5,1.115922,1.115922,1.115922,1.115922,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.115923,1.115923,1.115922,1.115922,1.115923,1.115923,1.115922,1.115923,1.115922,1.115922,1.115922,1.115923,1.115927,1.115929,1.115922,1.115922,1.115927,1.115929,1.115922,1.115922,1.115922,1.115922,1.115922,1.115922,,,,,,,1.115923,1.115923,1.115922,1.115923,1.115927,1.115929,1.115922,1.115922,1.115922,1.115922,0.425167,0.425167,0.425166,0.425167,0.425168,0.425168,0.425166,0.425166,0.222626,0.222626,26.999984,26.999972,26.999993,26.999981,26.99989,26.999832,27,27,27,27,,,,,,,,,,,2580,2580,1.115922,1.115922,1.115922,1.115922,1.115922,1.115922,1.115922,1.115922,0.425166,0.425166,27,27,, +11009,0,0.682528,1,1,0,2,4,,4,5,Textile,Rd,1438102,2.449,3.132,0,14.6256,4.5,4.5,1.077676,1.077676,1.077676,1.077676,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.078217,1.646284,1.077676,1.077676,1.078217,1.646284,1.079394,1.086323,1.077676,1.077676,1.079394,1.086323,1.469019,1.140555,1.077676,1.077676,1.469019,1.140555,1.077676,1.077676,1.077676,1.077676,1.077676,1.077676,,,,,,,1.078217,1.646284,1.079394,1.086323,1.469019,1.140555,1.077676,1.077676,1.077676,1.077676,0.44632,0.61674,0.446673,0.448752,0.563561,0.465021,0.446158,0.446158,0.236729,0.236729,37.980911,24.875227,37.939498,37.697527,27.876881,35.90506,38,38,38,38,,,,,,,,,,,3096,3096,1.077676,1.077676,1.077676,1.077676,1.077676,1.077676,1.077676,1.077676,0.446158,0.446158,38,38,, +37295,1,0.088532,2,0,0,2,4,,4,5,Geddes,Rd,1448104,5.429,5.517,0,1.897116,4.5,4.5,0.139787,,0.139787,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.139863,,0.139787,,0.139863,,0.139834,,0.139787,,0.139834,,0.142093,,0.139787,,0.142093,,0.139787,,0.139787,,0.139787,,,,,,,,0.139863,,0.139834,,0.142093,,0.139787,,0.139787,,0.057895,,0.057886,,0.058564,,0.057872,,0.030707,,37.979429,,37.987453,,37.383455,,38,,38,,,,,,,,,,,,6192,,0.139787,,0.139787,,0.139787,,0.139787,,0.057872,,38,,, +11183,0,0.864732,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,4.935,5.799,0,18.529973,3.7,5,1.729464,1.729464,1.729464,1.729464,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.729465,1.729464,1.729464,1.729464,1.729465,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,,,,,,,1.729465,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,0.674491,0.674491,0.674491,0.674491,0.674491,0.674491,0.674491,0.674491,0.35454,0.35454,29.999983,30,30,30,30,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,1.729464,0.674491,0.674491,30,30,, +11234,0,1.575376,1,1,0,2,5,,5,5,Ford,Rd,1431906,0,1.575,0,33.758055,3.7,5,3.150752,3.150752,3.150752,3.150752,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.150758,3.200646,3.150752,3.150752,3.150758,3.200646,3.150752,3.150752,3.150752,3.150752,3.150752,3.150752,3.153333,3.150788,3.150752,3.150752,3.153333,3.150788,3.150752,3.150752,3.150752,3.150752,3.150752,3.150752,,,,,,,3.150758,3.200646,3.150752,3.150752,3.153333,3.150788,3.150752,3.150752,3.150752,3.150752,1.228795,1.243761,1.228793,1.228793,1.229568,1.228804,1.228793,1.228793,0.645904,0.645904,29.999938,29.53234,30,30,29.97544,29.999652,30,30,30,30,,,,,,,,,,,2580,2580,3.150752,3.150752,3.150752,3.150752,3.150752,3.150752,3.150752,3.150752,1.228793,1.228793,30,30,, +11242,0,0.525875,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,2.166,2.692,0,11.268758,3,4,0.788813,0.788813,0.788813,0.788813,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.8946,0.956412,0.788813,0.788813,0.8946,0.956412,0.789651,0.791551,0.788813,0.788813,0.789651,0.791551,0.891461,0.8766,0.788813,0.788813,0.891461,0.8766,0.788813,0.788813,0.788813,0.788813,0.788813,0.788813,,,,,,,0.8946,0.956412,0.789651,0.791551,0.891461,0.8766,0.788813,0.788813,0.788813,0.788813,0.363038,0.381581,0.331553,0.332123,0.362096,0.357637,0.331301,0.331301,0.176168,0.176168,35.269977,32.99053,39.957549,39.861657,35.394172,35.994219,40,40,40,40,,,,,,,,,,,3096,3096,0.788813,0.788813,0.788813,0.788813,0.788813,0.788813,0.788813,0.788813,0.331301,0.331301,40,40,, +11264,0,0.350881,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.148,8.499,0,7.518878,4.5,4.5,0.554023,0.554023,0.554023,0.554023,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.704491,0.564239,0.554023,0.554023,0.704491,0.564239,0.562796,0.558941,0.554023,0.554023,0.562796,0.558941,0.58063,0.69858,0.554023,0.554023,0.58063,0.69858,0.554023,0.554023,0.554023,0.554023,0.554023,0.554023,,,,,,,0.704491,0.564239,0.562796,0.558941,0.58063,0.69858,0.554023,0.554023,0.554023,0.554023,0.274506,0.23243,0.231997,0.230841,0.237347,0.272732,0.229365,0.229365,0.1217,0.1217,29.883806,37.311974,37.407624,37.665623,36.258672,30.136666,38,38,38,38,,,,,,,,,,,6502,6502,0.554023,0.554023,0.554023,0.554023,0.554023,0.554023,0.554023,0.554023,0.229365,0.229365,38,38,, +11280,0,0.323772,1,1,0,2,5,,5,5,Cherry Hill,Rd,1436303,0.639,0.963,0,6.937961,3.7,5,0.647543,0.647543,0.647543,0.647543,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,,,,,,,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.252542,0.252542,0.252542,0.252542,0.252542,0.252542,0.252542,0.252542,0.132746,0.132746,30,30,30,30,29.999999,30,30,30,30,30,,,,,,,,,,,2580,2580,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.647543,0.252542,0.252542,30,30,, +11332,0,0.776182,1,1,0,2,5,GRV,4,5,Merritt,Rd,1438204,2.468,3.244,0,16.632465,6.55,4.5,3.104727,3.104727,3.104727,3.104727,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.104741,3.113266,3.104727,3.104727,3.104741,3.113266,3.104729,3.104728,3.104727,3.104727,3.104729,3.104728,3.110044,3.10477,3.104727,3.104727,3.110044,3.10477,3.104727,3.104727,3.104727,3.104727,3.104727,3.104727,,,,,,,3.104741,3.113266,3.104729,3.104728,3.110044,3.10477,3.104727,3.104727,3.104727,3.104727,1.071135,1.073693,1.071131,1.071131,1.072726,1.071144,1.071131,1.071131,0.551089,0.551089,14.999929,14.958855,14.999989,14.999993,14.974357,14.999791,15,15,15,15,,,,,,,,,,,2064,2064,3.104727,3.104727,3.104727,3.104727,3.104727,3.104727,3.104727,3.104727,1.071131,1.071131,15,15,, +11363,0,0.386953,2,2,1,2,4,,4,5,Carpenter,Rd,1431609,8.081,8.468,0,8.291848,4.5,4.5,0.610978,0.610978,0.610978,0.610978,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.715441,0.612487,0.610978,0.610978,0.715441,0.612487,0.612523,0.611393,0.610978,0.610978,0.612523,0.611393,0.625213,0.639462,0.610978,0.610978,0.625213,0.639462,0.610978,0.610978,0.610978,0.610978,0.610978,0.610978,,,,,,,0.715441,0.612487,0.612523,0.611393,0.625213,0.639462,0.610978,0.610978,0.610978,0.610978,0.284284,0.253398,0.253409,0.253069,0.257215,0.26149,0.252945,0.252945,0.134212,0.134212,32.451572,37.906409,37.904148,37.974224,37.134824,36.307348,38,38,38,38,,,,,,,,,,,6502,6502,0.610978,0.610978,0.610978,0.610978,0.610978,0.610978,0.610978,0.610978,0.252945,0.252945,38,38,, +11458,-1,0.589553,0,2,0,1,2,,4,5,S US 23,,1431603,8.221,8.81,0,,0.8,7.5,,0.505331,,0.505331,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.507311,,0.505331,,0.507311,,0.505919,,0.505331,,0.505919,,0.541673,,0.505331,,0.541673,,0.505331,,0.505331,,0.505331,,,,,,,,0.507311,,0.505919,,0.541673,,0.505331,,0.505331,,0.258313,,0.257895,,0.268622,,0.257719,,0.14065,,69.726805,,69.918668,,65.30352,,70,,70,,,,,,,,,,,,15136,,0.505331,,0.505331,,0.505331,,0.505331,,0.257719,,70,, +11471,-1,0.573814,0,2,0,2,3,DIV,5,5,W M 153,,1431602,1.01,1.584,0,12.296009,1.7,4,,0.625979,,0.625979,,55,,24000,,5448,,12000,,7742,,8256,,8246,,0.633739,,0.625979,,0.633739,,0.627659,,0.625979,,0.627659,,0.629659,,0.625979,,0.629659,,0.625979,,0.625979,,0.625979,,,,,,,,0.633739,,0.627659,,0.629659,,0.625979,,0.625979,,0.293408,,0.291584,,0.292184,,0.29108,,0.157016,,54.326517,,54.852795,,54.678495,,55,,55,,,,,,,,,,,,8256,,0.625979,,0.625979,,0.625979,,0.625979,,0.29108,,55,, +11487,1,0.559442,2,0,0,2,3,DIV,5,5,E M 153,,1431510,0.837,1.396,0,11.988032,1.7,4,0.6103,,0.6103,,55,,24000,,5448,,12000,,7742,,8256,,8246,,0.613662,,0.6103,,0.613662,,0.61179,,0.6103,,0.61179,,0.622448,,0.6103,,0.622448,,0.6103,,0.6103,,0.6103,,,,,,,,0.613662,,0.61179,,0.622448,,0.6103,,0.6103,,0.284798,,0.284236,,0.287434,,0.283789,,0.153084,,54.698689,,54.866073,,53.926535,,55,,55,,,,,,,,,,,,8256,,0.6103,,0.6103,,0.6103,,0.6103,,0.283789,,55,,, +40102,-1,0.039624,0,1,0,2,4,,4,5,Stony Creek,Rd,4606156,0,0.04,0,0.84908,4.5,4.5,,0.062564,,0.062564,,38,,9000,,2043,,4500,,2903,,3096,,3092,,0.062927,,0.062564,,0.062927,,0.062846,,0.062564,,0.062846,,0.067348,,0.062564,,0.067348,,0.062564,,0.062564,,0.062564,,,,,,,,0.062927,,0.062846,,0.067348,,0.062564,,0.062564,,0.026011,,0.025986,,0.027337,,0.025901,,0.013743,,37.780393,,37.829403,,35.300835,,38,,38,,,,,,,,,,,,3096,,0.062564,,0.062564,,0.062564,,0.062564,,0.025901,,38,, +11559,-1,4.081074,0,2,0,1,2,,5,5,W M 14,,1431410,5.756,9.836,0,,1.02,7,,3.498063,,3.498063,,70,,44000,,9988,,22000,,14194,,15136,,15118,,4.091129,,3.498063,,4.091129,,3.53333,,3.498063,,3.53333,,4.093699,,3.498063,,4.093699,,3.498063,,3.498063,,3.498063,,,,,,,,4.091129,,3.53333,,4.093699,,3.498063,,3.498063,,1.961932,,1.794592,,1.962703,,1.784012,,0.973628,,59.852534,,69.301313,,59.814956,,70,,70,,,,,,,,,,,,15136,,3.498063,,3.498063,,3.498063,,3.498063,,1.784012,,70,, +11590,1,3.566244,2,0,0,1,2,,5,5,E M 14,,1431408,6.058,9.623,0,,1.02,7,3.05678,,3.05678,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.936077,,3.05678,,3.936077,,3.08643,,3.05678,,3.08643,,3.459495,,3.05678,,3.459495,,3.05678,,3.05678,,3.05678,,,,,,,,3.936077,,3.08643,,3.459495,,3.05678,,3.05678,,1.822747,,1.567853,,1.679772,,1.558958,,0.850804,,54.362401,,69.327545,,61.851407,,70,,70,,,,,,,,,,,,15136,,3.05678,,3.05678,,3.05678,,3.05678,,1.558958,,70,,, +16698,-1,1.906644,0,3,0,1,1,,4,2,S I 275,,1607610,7.348,9.254,0,,0.8,7.5,,1.634267,,1.634267,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.637214,,1.634267,,1.637214,,1.634451,,1.634267,,1.634451,,1.665562,,1.634267,,1.665562,,1.634267,,1.634267,,1.634267,,,,,,,,1.637214,,1.634451,,1.665562,,1.634267,,1.634267,,0.83436,,0.833531,,0.842864,,0.833476,,0.454871,,69.873981,,69.992117,,68.684742,,70,,70,,,,,,,,,,,,22704,,1.634267,,1.634267,,1.634267,,1.634267,,0.833476,,70,, +16770,1,1.587923,3,0,0,1,1,,4,2,N I 275,,1607208,7.303,8.89,0,,0.8,7.5,1.361077,,1.361077,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.409782,,1.361077,,1.409782,,1.361268,,1.361077,,1.361268,,1.365516,,1.361077,,1.365516,,1.361077,,1.361077,,1.361077,,,,,,,,1.409782,,1.361268,,1.365516,,1.361077,,1.361077,,0.708761,,0.694206,,0.695481,,0.694149,,0.378833,,67.581622,,69.990175,,69.772434,,70,,70,,,,,,,,,,,,22704,,1.361077,,1.361077,,1.361077,,1.361077,,0.694149,,70,,, +17276,0,0.765289,1,1,0,2,5,,4,2,Hannan,Rd,1710309,2.726,3.491,0,16.39906,5.8,4.5,1.700643,1.700643,1.700643,1.700643,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.702723,1.700928,1.700643,1.700643,1.702723,1.700928,1.700985,1.700748,1.700643,1.700643,1.700985,1.700748,1.701627,1.701447,1.700643,1.700643,1.701627,1.701447,1.700643,1.700643,1.700643,1.700643,1.700643,1.700643,,,,,,,1.702723,1.700928,1.700985,1.700748,1.701627,1.701447,1.700643,1.700643,1.700643,1.700643,0.648569,0.648031,0.648048,0.647976,0.64824,0.648186,0.647945,0.647945,0.339278,0.339278,26.967029,26.995477,26.994581,26.998343,26.984393,26.987251,27,27,27,27,,,,,,,,,,,2580,2580,1.700643,1.700643,1.700643,1.700643,1.700643,1.700643,1.700643,1.700643,0.647945,0.647945,27,27,, +17818,0,0.378191,1,1,0,2,4,,4,2,Huron River,Dr,1673810,7.684,8.062,0,8.104103,4.5,4.5,0.597144,0.597144,0.597144,0.597144,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.62212,0.598072,0.597144,0.597144,0.62212,0.598072,0.597976,0.597367,0.597144,0.597144,0.597976,0.597367,0.600665,0.61987,0.597144,0.597144,0.600665,0.61987,0.597144,0.597144,0.597144,0.597144,0.597144,0.597144,,,,,,,0.62212,0.598072,0.597976,0.597367,0.600665,0.61987,0.597144,0.597144,0.597144,0.597144,0.25471,0.247496,0.247467,0.247285,0.248274,0.254035,0.247218,0.247218,0.131173,0.131173,36.474481,37.941036,37.947179,37.985836,37.777253,36.606849,38,38,38,38,,,,,,,,,,,3096,3096,0.597144,0.597144,0.597144,0.597144,0.597144,0.597144,0.597144,0.597144,0.247218,0.247218,38,38,, +18511,0,0.81397,1,1,0,2,4,,4,2,Haggerty,Rd,1670810,3.569,4.383,0,17.442216,4.5,4.5,1.285216,1.285216,1.285216,1.285216,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.562167,1.292599,1.285216,1.285216,1.562167,1.292599,1.301051,1.294456,1.285216,1.285216,1.301051,1.294456,1.342299,1.500239,1.285216,1.285216,1.342299,1.500239,1.285216,1.285216,1.285216,1.285216,1.285216,1.285216,,,,,,,1.562167,1.292599,1.301051,1.294456,1.342299,1.500239,1.285216,1.285216,1.285216,1.285216,0.615165,0.534294,0.53683,0.534852,0.549204,0.596586,0.532079,0.532079,0.282319,0.282319,31.263124,37.782938,37.537505,37.728735,36.38399,32.553626,38,38,38,38,,,,,,,,,,,3096,3096,1.285216,1.285216,1.285216,1.285216,1.285216,1.285216,1.285216,1.285216,0.532079,0.532079,38,38,, +19181,0,0.516247,1,1,0,2,5,,4,2,High,St,1675906,0,0.516,0,11.062439,5.8,4.5,1.147216,1.147216,1.147216,1.147216,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.164643,1.147336,1.147216,1.147216,1.164643,1.147336,1.147825,1.147497,1.147216,1.147216,1.147825,1.147497,1.148474,1.153191,1.147216,1.147216,1.148474,1.153191,1.147216,1.147216,1.147216,1.147216,1.147216,1.147216,,,,,,,1.164643,1.147336,1.147825,1.147497,1.148474,1.153191,1.147216,1.147216,1.147216,1.147216,0.442317,0.437125,0.437272,0.437173,0.437467,0.438882,0.437089,0.437089,0.22887,0.22887,26.595997,26.997184,26.985679,26.993394,26.970426,26.860092,27,27,27,27,,,,,,,,,,,2580,2580,1.147216,1.147216,1.147216,1.147216,1.147216,1.147216,1.147216,1.147216,0.437089,0.437089,27,27,, +20643,0,1.016355,1,1,0,2,5,,4,5,Platt,Rd,4302160,8.119,9.135,0,21.779031,5.8,4.5,2.258566,2.258566,2.258566,2.258566,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.882917,2.273206,2.258566,2.258566,2.882917,2.273206,2.282363,2.263386,2.258566,2.258566,2.282363,2.263386,2.495215,2.608721,2.258566,2.258566,2.495215,2.608721,2.258566,2.258566,2.258566,2.258566,2.258566,2.258566,,,,,,,2.882917,2.273206,2.282363,2.263386,2.495215,2.608721,2.258566,2.258566,2.258566,2.258566,1.047819,0.864906,0.867653,0.86196,0.931508,0.96556,0.860514,0.860514,0.450584,0.450584,21.152633,26.826118,26.718493,26.942501,24.439288,23.37593,27,27,27,27,,,,,,,,,,,2580,2580,2.258566,2.258566,2.258566,2.258566,2.258566,2.258566,2.258566,2.258566,0.860514,0.860514,27,27,, +20728,0,0.81776,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,3.176,3.994,0,17.523426,5.55,5,2.45328,2.45328,2.45328,2.45328,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.453281,2.459587,2.45328,2.45328,2.453281,2.459587,2.45328,2.45328,2.45328,2.45328,2.45328,2.45328,2.453364,2.453281,2.45328,2.45328,2.453364,2.453281,2.45328,2.45328,2.45328,2.45328,2.45328,2.45328,,,,,,,2.453281,2.459587,2.45328,2.45328,2.453364,2.453281,2.45328,2.45328,2.45328,2.45328,0.883181,0.885073,0.883181,0.883181,0.883206,0.883181,0.883181,0.883181,0.457946,0.457946,19.999992,19.948713,20,20,19.999315,19.999989,20,20,20,20,,,,,,,,,,,2236,2236,2.45328,2.45328,2.45328,2.45328,2.45328,2.45328,2.45328,2.45328,0.883181,0.883181,20,20,, +21856,0,1.174712,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,6.566,7.741,0,25.172396,6.55,4.5,4.698847,4.698847,4.698847,4.698847,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.698847,4.698928,4.698847,4.698847,4.698847,4.698928,4.698847,4.698847,4.698847,4.698847,4.698847,4.698847,4.698851,4.698847,4.698847,4.698847,4.698851,4.698847,4.698847,4.698847,4.698847,4.698847,4.698847,4.698847,,,,,,,4.698847,4.698928,4.698847,4.698847,4.698851,4.698847,4.698847,4.698847,4.698847,4.698847,1.621102,1.621126,1.621102,1.621102,1.621103,1.621102,1.621102,1.621102,0.834045,0.834045,15,14.999743,15,15,14.999988,15,15,15,15,15,,,,,,,,,,,2064,2064,4.698847,4.698847,4.698847,4.698847,4.698847,4.698847,4.698847,4.698847,1.621102,1.621102,15,15,, +21866,0,0.386984,2,2,0,2,4,,3,5,Huron River,Dr,4603250,1.67,2.057,0,8.292508,6,4.5,0.703607,0.703607,0.703607,0.703607,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.703832,0.707031,0.703607,0.703607,0.703832,0.707031,0.704562,0.705013,0.703607,0.703607,0.704562,0.705013,0.71697,0.706355,0.703607,0.703607,0.71697,0.706355,0.703607,0.703607,0.703607,0.703607,0.703607,0.703607,,,,,,,0.703832,0.707031,0.704562,0.705013,0.71697,0.706355,0.703607,0.703607,0.703607,0.703607,0.280807,0.281766,0.281026,0.281161,0.284748,0.281563,0.280739,0.280739,0.148109,0.148109,32.98944,32.840176,32.955257,32.934159,32.38493,32.871626,33,33,33,33,,,,,,,,,,,5160,5160,0.703607,0.703607,0.703607,0.703607,0.703607,0.703607,0.703607,0.703607,0.280739,0.280739,33,33,, +21990,0,0.390084,1,1,0,2,5,,4,5,Tuttle Hill,Rd,4603029,1.674,2.064,0,8.35894,5.8,4.5,0.866853,0.866853,0.866853,0.866853,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.867066,0.866853,0.866853,0.866853,0.867066,0.866853,0.866854,0.866854,0.866853,0.866853,0.866854,0.866854,0.866862,0.867019,0.866853,0.866853,0.866862,0.867019,0.866853,0.866853,0.866853,0.866853,0.866853,0.866853,,,,,,,0.867066,0.866853,0.866854,0.866854,0.866862,0.867019,0.866853,0.866853,0.866853,0.866853,0.330335,0.330271,0.330271,0.330271,0.330274,0.330321,0.330271,0.330271,0.172937,0.172937,26.993357,26.999992,26.999981,26.999986,26.999718,26.99482,27,27,27,27,,,,,,,,,,,2580,2580,0.866853,0.866853,0.866853,0.866853,0.866853,0.866853,0.866853,0.866853,0.330271,0.330271,27,27,, +22052,0,0.578768,1,1,0,2,4,,4,5,Maple,Rd,4603041,0,0.579,0,12.402168,4.5,4.5,0.913844,0.913844,0.913844,0.913844,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.244224,1.111192,0.913844,0.913844,1.244224,1.111192,1.030479,1.018955,0.913844,0.913844,1.030479,1.018955,1.281404,1.267291,0.913844,0.913844,1.281404,1.267291,0.913844,0.913844,0.913844,0.913844,0.913844,0.913844,,,,,,,1.244224,1.111192,1.030479,1.018955,1.281404,1.267291,0.913844,0.913844,0.913844,0.913844,0.477445,0.437536,0.413322,0.409865,0.488599,0.484365,0.378331,0.378331,0.200741,0.200741,27.909822,31.251186,33.698945,34.080068,27.100024,27.401814,38,38,38,38,,,,,,,,,,,3096,3096,0.913844,0.913844,0.913844,0.913844,0.913844,0.913844,0.913844,0.913844,0.378331,0.378331,38,38,, +22984,0,0.351294,1,1,0,2,4,,4,2,Main,St,4705581,0.21,0.561,0,7.527727,4.5,4.5,0.554675,0.554675,0.554675,0.554675,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.588004,0.861164,0.554675,0.554675,0.588004,0.861164,0.611299,0.631323,0.554675,0.554675,0.611299,0.631323,0.782609,0.743377,0.554675,0.554675,0.782609,0.743377,0.554675,0.554675,0.554675,0.554675,0.554675,0.554675,,,,,,,0.588004,0.861164,0.611299,0.631323,0.782609,0.743377,0.554675,0.554675,0.554675,0.554675,0.239634,0.321582,0.246622,0.25263,0.298016,0.286246,0.229635,0.229635,0.121844,0.121844,35.846077,24.475742,34.480102,33.386438,26.932527,28.353895,38,38,38,38,,,,,,,,,,,3096,3096,0.554675,0.554675,0.554675,0.554675,0.554675,0.554675,0.554675,0.554675,0.229635,0.229635,38,38,, +23568,0,0.56502,1,1,0,2,4,,4,2,Huron River,Dr,4705582,0.024,0.588,0,12.107575,4.5,4.5,0.892137,0.892137,0.892137,0.892137,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.922903,0.914209,0.892137,0.892137,0.922903,0.914209,0.896651,0.897515,0.892137,0.892137,0.896651,0.897515,0.922324,0.972184,0.892137,0.892137,0.922324,0.972184,0.892137,0.892137,0.892137,0.892137,0.892137,0.892137,,,,,,,0.922903,0.914209,0.896651,0.897515,0.922324,0.972184,0.892137,0.892137,0.892137,0.892137,0.378575,0.375966,0.370699,0.370958,0.378401,0.393359,0.369345,0.369345,0.195973,0.195973,36.733221,37.082569,37.808681,37.772291,36.75627,34.871202,38,38,38,38,,,,,,,,,,,3096,3096,0.892137,0.892137,0.892137,0.892137,0.892137,0.892137,0.892137,0.892137,0.369345,0.369345,38,38,, +24499,0,1.111779,1,1,0,2,3,,4,2,Wayne,Rd,4719470,0,1.111,0,23.823828,3.7,5,1.667668,1.667668,1.667668,1.667668,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.919778,1.688306,1.667668,1.667668,1.919778,1.688306,1.671782,1.674206,1.667668,1.667668,1.671782,1.674206,1.713521,1.82024,1.667668,1.667668,1.713521,1.82024,1.667668,1.667668,1.667668,1.667668,1.667668,1.667668,,,,,,,1.919778,1.688306,1.671782,1.674206,1.713521,1.82024,1.667668,1.667668,1.667668,1.667668,0.776053,0.706612,0.701655,0.702382,0.714176,0.746192,0.700421,0.700421,0.372446,0.372446,34.747107,39.511033,39.901565,39.843802,38.92962,36.647213,40,40,40,40,,,,,,,,,,,3784,3784,1.667668,1.667668,1.667668,1.667668,1.667668,1.667668,1.667668,1.667668,0.700421,0.700421,40,40,, +25020,0,1.037543,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.233063,0.15,4,4.150172,4.150172,4.150172,4.150172,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,,,,,,,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,1.431809,1.431809,1.431809,1.431809,1.431809,1.431809,1.431809,1.431809,0.736655,0.736655,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,4.150172,1.431809,1.431809,15,15,, +25465,0,0.645594,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.834147,0.15,4,2.582374,2.582374,2.582374,2.582374,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,,,,,,,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,0.890919,0.890919,0.890919,0.890919,0.890919,0.890919,0.890919,0.890919,0.458371,0.458371,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,2.582374,0.890919,0.890919,15,15,, +25466,0,0.619378,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.27239,0.15,4,2.477513,2.477513,2.477513,2.477513,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,,,,,,,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,0.854742,0.854742,0.854742,0.854742,0.854742,0.854742,0.854742,0.854742,0.439759,0.439759,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,2.477513,0.854742,0.854742,15,15,, +25469,0,0.742852,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.918249,0.15,4,2.971406,2.971406,2.971406,2.971406,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,,,,,,,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,1.025135,1.025135,1.025135,1.025135,1.025135,1.025135,1.025135,1.025135,0.527425,0.527425,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,2.971406,1.025135,1.025135,15,15,, +25471,0,0.997296,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.370627,0.15,4,3.989184,3.989184,3.989184,3.989184,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,,,,,,,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,1.376268,1.376268,1.376268,1.376268,1.376268,1.376268,1.376268,1.376268,0.70808,0.70808,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,3.989184,1.376268,1.376268,15,15,, +25478,0,1.179249,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.269628,0.15,4,4.716997,4.716997,4.716997,4.716997,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,,,,,,,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,1.627364,1.627364,1.627364,1.627364,1.627364,1.627364,1.627364,1.627364,0.837267,0.837267,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,4.716997,1.627364,1.627364,15,15,, +25480,0,0.528613,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.327427,0.15,4,2.114453,2.114453,2.114453,2.114453,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,,,,,,,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,0.729486,0.729486,0.729486,0.729486,0.729486,0.729486,0.729486,0.729486,0.375315,0.375315,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,2.114453,0.729486,0.729486,15,15,, +25483,0,1.020245,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.862397,0.15,4,4.080981,4.080981,4.080981,4.080981,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,,,,,,,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,1.407938,1.407938,1.407938,1.407938,1.407938,1.407938,1.407938,1.407938,0.724374,0.724374,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,4.080981,1.407938,1.407938,15,15,, +26237,0,2.110651,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,45.228236,0.15,4,8.442604,8.442604,8.442604,8.442604,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,,,,,,,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,2.912698,2.912698,2.912698,2.912698,2.912698,2.912698,2.912698,2.912698,1.498562,1.498562,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,8.442604,2.912698,2.912698,15,15,, +26238,0,1.053969,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.585053,0.15,4,4.215877,4.215877,4.215877,4.215877,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.215877,4.21588,4.215877,4.215877,4.215877,4.21588,4.215877,4.215877,4.215877,4.215877,4.215877,4.215877,4.215881,4.215878,4.215877,4.215877,4.215881,4.215878,4.215877,4.215877,4.215877,4.215877,4.215877,4.215877,,,,,,,4.215877,4.21588,4.215877,4.215877,4.215881,4.215878,4.215877,4.215877,4.215877,4.215877,1.454478,1.454478,1.454477,1.454477,1.454479,1.454478,1.454477,1.454477,0.748318,0.748318,14.999997,14.999987,14.999999,15,14.999983,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,4.215877,4.215877,4.215877,4.215877,4.215877,4.215877,4.215877,4.215877,1.454477,1.454477,15,15,, +26240,0,1.478037,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.672232,0.15,4,5.91215,5.91215,5.91215,5.91215,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,,,,,,,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,2.039692,2.039692,2.039692,2.039692,2.039692,2.039692,2.039692,2.039692,1.049407,1.049407,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,5.91215,2.039692,2.039692,15,15,, +26243,0,0.449122,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.624046,0.15,4,1.796489,1.796489,1.796489,1.796489,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,,,,,,,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,0.619789,0.619789,0.619789,0.619789,0.619789,0.619789,0.619789,0.619789,0.318877,0.318877,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,1.796489,0.619789,0.619789,15,15,, +26249,0,0.908756,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,19.473348,0.15,4,3.635025,3.635025,3.635025,3.635025,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,,,,,,,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,1.254084,1.254084,1.254084,1.254084,1.254084,1.254084,1.254084,1.254084,0.645217,0.645217,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,3.635025,1.254084,1.254084,15,15,, +26250,0,0.880946,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.877419,0.15,4,3.523785,3.523785,3.523785,3.523785,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,,,,,,,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,1.215706,1.215706,1.215706,1.215706,1.215706,1.215706,1.215706,1.215706,0.625472,0.625472,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,3.523785,1.215706,1.215706,15,15,, +26251,0,0.221358,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.743376,0.15,4,0.88543,0.88543,0.88543,0.88543,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,,,,,,,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.305473,0.305473,0.305473,0.305473,0.305473,0.305473,0.305473,0.305473,0.157164,0.157164,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.88543,0.305473,0.305473,15,15,, +26252,0,0.571184,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.239657,0.15,4,2.284736,2.284736,2.284736,2.284736,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,,,,,,,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,0.788234,0.788234,0.788234,0.788234,0.788234,0.788234,0.788234,0.788234,0.405541,0.405541,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,2.284736,0.788234,0.788234,15,15,, +26254,0,0.860255,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.434043,0.15,4,3.441021,3.441021,3.441021,3.441021,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,,,,,,,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,1.187152,1.187152,1.187152,1.187152,1.187152,1.187152,1.187152,1.187152,0.610781,0.610781,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,3.441021,1.187152,1.187152,15,15,, +26257,0,0.574846,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.318133,0.15,4,2.299385,2.299385,2.299385,2.299385,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,,,,,,,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,0.793288,0.793288,0.793288,0.793288,0.793288,0.793288,0.793288,0.793288,0.408141,0.408141,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,2.299385,0.793288,0.793288,15,15,, +26264,0,0.281034,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.022151,0.15,4,1.124135,1.124135,1.124135,1.124135,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,,,,,,,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,0.387827,0.387827,0.387827,0.387827,0.387827,0.387827,0.387827,0.387827,0.199534,0.199534,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,1.124135,0.387827,0.387827,15,15,, +26265,0,0.246571,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.283662,0.15,4,0.986284,0.986284,0.986284,0.986284,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,,,,,,,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.340268,0.340268,0.340268,0.340268,0.340268,0.340268,0.340268,0.340268,0.175065,0.175065,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.986284,0.340268,0.340268,15,15,, +26268,0,0.36573,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.837062,0.15,4,1.462918,1.462918,1.462918,1.462918,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,,,,,,,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,0.504707,0.504707,0.504707,0.504707,0.504707,0.504707,0.504707,0.504707,0.259668,0.259668,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,1.462918,0.504707,0.504707,15,15,, +26269,0,1.095272,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.470108,0.15,4,4.381087,4.381087,4.381087,4.381087,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,,,,,,,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,1.511475,1.511475,1.511475,1.511475,1.511475,1.511475,1.511475,1.511475,0.777643,0.777643,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,4.381087,1.511475,1.511475,15,15,, +26272,0,0.305592,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.548404,0.15,4,1.222369,1.222369,1.222369,1.222369,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,,,,,,,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,0.421717,0.421717,0.421717,0.421717,0.421717,0.421717,0.421717,0.421717,0.21697,0.21697,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,1.222369,0.421717,0.421717,15,15,, +26275,0,0.249372,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.343688,0.15,4,1.496233,1.496233,1.496233,1.496233,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,,,,,,,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,0.493757,0.493757,0.493757,0.493757,0.493757,0.493757,0.493757,0.493757,0.251866,0.251866,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,1.496233,0.493757,0.493757,10,10,, +26279,0,1.568753,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,33.616141,0.15,4,6.275013,6.275013,6.275013,6.275013,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,,,,,,,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,2.164879,2.164879,2.164879,2.164879,2.164879,2.164879,2.164879,2.164879,1.113815,1.113815,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,6.275013,2.164879,2.164879,15,15,, +26287,0,0.147536,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.161486,0.15,4,0.885216,0.885216,0.885216,0.885216,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,,,,,,,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.292121,0.292121,0.292121,0.292121,0.292121,0.292121,0.292121,0.292121,0.149011,0.149011,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.885216,0.292121,0.292121,10,10,, +26292,0,0.326401,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.994317,0.15,4,1.958409,1.958409,1.958409,1.958409,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.958409,1.958419,1.958409,1.958409,1.958409,1.958419,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,,,,,,,1.958409,1.958419,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,0.646275,0.646278,0.646275,0.646275,0.646275,0.646275,0.646275,0.646275,0.329665,0.329665,10,9.999946,10,9.999997,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,1.958409,0.646275,0.646275,10,10,, +26303,0,1.513644,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.435226,0.15,4,6.054575,6.054575,6.054575,6.054575,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,,,,,,,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,2.088829,2.088829,2.088829,2.088829,2.088829,2.088829,2.088829,2.088829,1.074687,1.074687,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,6.054575,2.088829,2.088829,15,15,, +26308,0,0.23252,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.982566,0.15,4,1.395119,1.395119,1.395119,1.395119,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,,,,,,,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,0.460389,0.460389,0.460389,0.460389,0.460389,0.460389,0.460389,0.460389,0.234845,0.234845,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,1.395119,0.460389,0.460389,10,10,, +26332,0,2.102644,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,45.056651,0.15,4,8.410575,8.410575,8.410575,8.410575,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,,,,,,,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,2.901648,2.901648,2.901648,2.901648,2.901648,2.901648,2.901648,2.901648,1.492877,1.492877,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,8.410575,2.901648,2.901648,15,15,, +26349,0,1.520472,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.581552,0.15,4,6.08189,6.08189,6.08189,6.08189,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,,,,,,,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,2.098252,2.098252,2.098252,2.098252,2.098252,2.098252,2.098252,2.098252,1.079535,1.079535,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,6.08189,2.098252,2.098252,15,15,, +26775,0,0.37664,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.070857,0.15,4,2.25984,2.25984,2.25984,2.25984,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,2.259841,2.25984,2.25984,2.25984,2.259841,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,,,,,,,2.25984,2.25984,2.25984,2.25984,2.259841,2.25984,2.25984,2.25984,2.25984,2.25984,0.745747,0.745747,0.745747,0.745747,0.745748,0.745747,0.745747,0.745747,0.380406,0.380406,10,10,10,10,9.999995,10,10,10,10,10,,,,,,,,,,,34400,34400,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,2.25984,0.745747,0.745747,10,10,, +26841,0,1.005957,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.556211,0.15,4,4.023826,4.023826,4.023826,4.023826,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,,,,,,,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,1.38822,1.38822,1.38822,1.38822,1.38822,1.38822,1.38822,1.38822,0.714229,0.714229,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,4.023826,1.38822,1.38822,15,15,, +29511,0,1.47199,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.542645,0.15,4,5.88796,5.88796,5.88796,5.88796,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,,,,,,,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,2.031346,2.031346,2.031346,2.031346,2.031346,2.031346,2.031346,2.031346,1.045113,1.045113,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,5.88796,2.031346,2.031346,15,15,, +30039,0,0.250908,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.3766,0.15,4,1.505448,1.505448,1.505448,1.505448,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,,,,,,,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,0.496798,0.496798,0.496798,0.496798,0.496798,0.496798,0.496798,0.496798,0.253417,0.253417,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,1.505448,0.496798,0.496798,10,10,, +30078,0,0.24954,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.347278,0.15,4,1.497238,1.497238,1.497238,1.497238,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,,,,,,,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,0.494088,0.494088,0.494088,0.494088,0.494088,0.494088,0.494088,0.494088,0.252035,0.252035,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,1.497238,0.494088,0.494088,10,10,, +30081,0,0.213996,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.585621,0.15,4,1.283974,1.283974,1.283974,1.283974,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,,,,,,,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,0.423711,0.423711,0.423711,0.423711,0.423711,0.423711,0.423711,0.423711,0.216136,0.216136,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,1.283974,0.423711,0.423711,10,10,, +30103,0,2.024102,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,43.373614,0.15,4,8.096408,8.096408,8.096408,8.096408,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,,,,,,,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,2.793261,2.793261,2.793261,2.793261,2.793261,2.793261,2.793261,2.793261,1.437112,1.437112,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,8.096408,2.793261,2.793261,15,15,, +31142,0,0.816004,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.485796,0.15,4,3.264015,3.264015,3.264015,3.264015,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,,,,,,,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,1.126085,1.126085,1.126085,1.126085,1.126085,1.126085,1.126085,1.126085,0.579363,0.579363,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,3.264015,1.126085,1.126085,15,15,, +31349,0,1.492712,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,31.986696,0.15,4,5.97085,5.97085,5.97085,5.97085,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,,,,,,,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,2.059943,2.059943,2.059943,2.059943,2.059943,2.059943,2.059943,2.059943,1.059826,1.059826,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,5.97085,2.059943,2.059943,15,15,, +31350,0,2.049907,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,43.926578,0.15,4,8.199628,8.199628,8.199628,8.199628,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,,,,,,,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,2.828872,2.828872,2.828872,2.828872,2.828872,2.828872,2.828872,2.828872,1.455434,1.455434,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,8.199628,2.828872,2.828872,15,15,, +31355,0,0.396933,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.505698,0.15,4,1.58773,1.58773,1.58773,1.58773,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,,,,,,,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,0.547767,0.547767,0.547767,0.547767,0.547767,0.547767,0.547767,0.547767,0.281822,0.281822,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,1.58773,0.547767,0.547767,15,15,, +31361,0,0.744834,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.960734,0.15,4,2.979337,2.979337,2.979337,2.979337,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,,,,,,,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,1.027871,1.027871,1.027871,1.027871,1.027871,1.027871,1.027871,1.027871,0.528832,0.528832,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,2.979337,1.027871,1.027871,15,15,, +31370,0,0.524867,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.247153,0.15,4,2.099468,2.099468,2.099468,2.099468,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,,,,,,,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,0.724317,0.724317,0.724317,0.724317,0.724317,0.724317,0.724317,0.724317,0.372656,0.372656,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,2.099468,0.724317,0.724317,15,15,, +31373,0,0.2831,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.066438,0.15,4,1.132402,1.132402,1.132402,1.132402,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,,,,,,,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,0.390679,0.390679,0.390679,0.390679,0.390679,0.390679,0.390679,0.390679,0.201001,0.201001,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,1.132402,0.390679,0.390679,15,15,, +32432,0,0.340788,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.302598,0.15,4,1.363152,1.363152,1.363152,1.363152,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,,,,,,,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,0.470287,0.470287,0.470287,0.470287,0.470287,0.470287,0.470287,0.470287,0.241959,0.241959,15,14.999996,15,15,14.999997,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,1.363152,0.470287,0.470287,15,15,, +33601,0,2.933542,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,62.861615,0.15,4,11.734168,11.734168,11.734168,11.734168,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,,,,,,,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,4.048288,4.048288,4.048288,4.048288,4.048288,4.048288,4.048288,4.048288,2.082815,2.082815,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,11.734168,4.048288,4.048288,15,15,, +7989,0,2.771955,1,1,0,2,6,GRV,5,6,County Line,Hwy,950002,6.522,9.293,0,59.399036,5.55,5,6.652692,6.652692,6.652692,6.652692,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,6.653395,6.652702,6.652692,6.652692,6.653395,6.652702,6.652694,6.652692,6.652692,6.652692,6.652694,6.652692,6.652706,6.652703,6.652692,6.652692,6.652706,6.652703,6.652692,6.652692,6.652692,6.652692,6.652692,6.652692,,,,,,,6.653395,6.652702,6.652694,6.652692,6.652706,6.652703,6.652692,6.652692,6.652692,6.652692,2.49497,2.494762,2.49476,2.49476,2.494764,2.494763,2.49476,2.49476,1.302819,1.302819,24.99736,24.999963,24.999991,24.999999,24.999947,24.999959,25,25,25,25,,,,,,,,,,,2236,2236,6.652692,6.652692,6.652692,6.652692,6.652692,6.652692,6.652692,6.652692,2.49476,2.49476,25,25,, +8747,0,2.00889,1,1,0,2,7,,5,6,Milwaukee,Rd,1223805,0,2.008,0,43.047646,5.8,6,4.821336,4.821336,4.821336,4.821336,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,,,,,,,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,1.808001,1.808001,1.808001,1.808001,1.808001,1.808001,1.808001,1.808001,0.944178,0.944178,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,4.821336,1.808001,1.808001,25,25,, +8809,0,1.419082,1,1,0,2,4,,5,6,Tecumseh,St,1223803,0,1.419,0,30.408891,3,4,2.128622,2.128622,2.128622,2.128622,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.147103,2.16356,2.128622,2.128622,2.147103,2.16356,2.13886,2.140599,2.128622,2.128622,2.13886,2.140599,2.152888,2.153442,2.128622,2.128622,2.152888,2.153442,2.128622,2.128622,2.128622,2.128622,2.128622,2.128622,,,,,,,2.147103,2.16356,2.13886,2.140599,2.152888,2.153442,2.128622,2.128622,2.128622,2.128622,0.899566,0.904503,0.897093,0.897614,0.901301,0.901467,0.894021,0.894021,0.475392,0.475392,39.655715,39.35407,39.808547,39.776198,39.549146,39.538973,40,40,40,40,,,,,,,,,,,3096,3096,2.128622,2.128622,2.128622,2.128622,2.128622,2.128622,2.128622,2.128622,0.894021,0.894021,40,40,, +8902,1,2.957789,2,0,0,1,2,,5,6,N US 23,,1223505,22.197,25.153,0,,1.02,7,2.535248,,2.535248,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.705507,,2.535248,,2.705507,,2.539212,,2.535248,,2.539212,,2.545271,,2.535248,,2.545271,,2.535248,,2.535248,,2.535248,,,,,,,,2.705507,,2.539212,,2.545271,,2.535248,,2.535248,,1.344054,,1.294166,,1.295983,,1.292977,,0.705644,,65.594877,,69.89072,,69.724346,,70,,70,,,,,,,,,,,,15136,,2.535248,,2.535248,,2.535248,,2.535248,,1.292977,,70,,, +8925,-1,2.795994,0,2,0,1,2,,5,6,S US 23,,1223504,22.163,24.958,0,,1.02,7,,2.396566,,2.396566,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.40199,,2.396566,,2.40199,,2.399061,,2.396566,,2.399061,,2.484288,,2.396566,,2.484288,,2.396566,,2.396566,,2.396566,,,,,,,,2.40199,,2.399061,,2.484288,,2.396566,,2.396566,,1.223876,,1.222997,,1.248565,,1.222249,,0.667044,,69.841929,,69.927188,,67.528236,,70,,70,,,,,,,,,,,,15136,,2.396566,,2.396566,,2.396566,,2.396566,,1.222249,,70,, +8928,0,1.997279,1,1,0,2,7,,5,6,Cone,Rd,1223807,0,1.997,0,42.798842,5.8,6,4.79347,4.79347,4.79347,4.79347,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,,,,,,,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,1.797551,1.797551,1.797551,1.797551,1.797551,1.797551,1.797551,1.797551,0.938721,0.938721,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,4.79347,1.797551,1.797551,25,25,, +9167,0,1.463509,1,1,0,2,5,,5,6,Plank,Rd,1226001,0.763,2.226,0,31.360899,3.7,5,2.927017,2.927017,2.927017,2.927017,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.927019,2.939918,2.927017,2.927017,2.927019,2.939918,2.927059,2.927135,2.927017,2.927017,2.927059,2.927135,2.933462,2.927251,2.927017,2.927017,2.933462,2.927251,2.927017,2.927017,2.927017,2.927017,2.927017,2.927017,,,,,,,2.927019,2.939918,2.927059,2.927135,2.933462,2.927251,2.927017,2.927017,2.927017,2.927017,1.141537,1.145407,1.141549,1.141572,1.14347,1.141607,1.141537,1.141537,0.600039,0.600039,29.999987,29.868357,29.999573,29.998798,29.934094,29.997607,30,30,30,30,,,,,,,,,,,2580,2580,2.927017,2.927017,2.927017,2.927017,2.927017,2.927017,2.927017,2.927017,1.141537,1.141537,30,30,, +9221,0,1.05664,1,1,0,2,6,,5,6,Brewer,Rd,1233507,0,1.056,0,22.642289,5.8,6,2.11328,2.11328,2.11328,2.11328,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,,,,,,,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,0.824179,0.824179,0.824179,0.824179,0.824179,0.824179,0.824179,0.824179,0.433222,0.433222,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,2.11328,0.824179,0.824179,30,30,, +9986,0,3.013315,1,1,0,2,5,,5,6,Wabash,Rd,1239109,0,3.012,0,64.57104,3.7,5,6.02663,6.02663,6.02663,6.02663,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,6.026631,6.02663,6.02663,6.02663,6.026631,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,,,,,,,6.026631,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,2.350386,2.350386,2.350386,2.350386,2.350386,2.350386,2.350386,2.350386,1.235459,1.235459,29.999999,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,6.02663,2.350386,2.350386,30,30,, +10322,0,1.959258,1,1,0,2,4,,5,5,Willis,Rd,1427410,0.221,2.179,0,41.984099,3,4,2.938887,2.938887,2.938887,2.938887,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.050983,3.060823,2.938887,2.938887,3.050983,3.060823,2.94595,2.948161,2.938887,2.938887,2.94595,2.948161,3.220529,3.162227,2.938887,2.938887,3.220529,3.162227,2.938887,2.938887,2.938887,2.938887,2.938887,2.938887,,,,,,,3.050983,3.060823,2.94595,2.948161,3.220529,3.162227,2.938887,2.938887,2.938887,2.938887,1.267961,1.270913,1.236452,1.237115,1.318825,1.301335,1.234333,1.234333,0.656351,0.656351,38.530355,38.406491,39.904094,39.874168,36.501918,37.174897,40,40,40,40,,,,,,,,,,,3096,3096,2.938887,2.938887,2.938887,2.938887,2.938887,2.938887,2.938887,2.938887,1.234333,1.234333,40,40,, +10374,0,0.717582,1,1,0,2,3,,4,5,Michigan,Ave,1427301,12.55,13.267,0,15.376767,3.7,5,1.076374,1.076374,1.076374,1.076374,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.929133,1.584655,1.076374,1.076374,1.929133,1.584655,1.501523,1.498142,1.076374,1.076374,1.501523,1.498142,1.748846,1.931386,1.076374,1.076374,1.748846,1.931386,1.076374,1.076374,1.076374,1.076374,1.076374,1.076374,,,,,,,1.929133,1.584655,1.501523,1.498142,1.748846,1.931386,1.076374,1.076374,1.076374,1.076374,0.707905,0.604561,0.579622,0.578607,0.653819,0.708581,0.452077,0.452077,0.24039,0.24039,22.318286,27.169927,28.674181,28.738906,24.619061,22.292257,40,40,40,40,,,,,,,,,,,3784,3784,1.076374,1.076374,1.076374,1.076374,1.076374,1.076374,1.076374,1.076374,0.452077,0.452077,40,40,, +10831,0,1.650955,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,2.434,4.085,0,35.377614,3.7,5,3.301911,3.301911,3.301911,3.301911,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.330323,3.302062,3.301911,3.301911,3.330323,3.302062,3.301991,3.301946,3.301911,3.301911,3.301991,3.301946,3.302682,3.317013,3.301911,3.301911,3.302682,3.317013,3.301911,3.301911,3.301911,3.301911,3.301911,3.301911,,,,,,,3.330323,3.302062,3.301991,3.301946,3.302682,3.317013,3.301911,3.301911,3.301911,3.301911,1.296269,1.287791,1.287769,1.287756,1.287977,1.292276,1.287745,1.287745,0.676892,0.676892,29.74406,29.998621,29.999272,29.999679,29.992992,29.863413,30,30,30,30,,,,,,,,,,,2580,2580,3.301911,3.301911,3.301911,3.301911,3.301911,3.301911,3.301911,3.301911,1.287745,1.287745,30,30,, +10905,0,0.973961,1,1,0,2,5,GRV,5,5,Mooreville,Rd,1432907,3.172,4.145,0,20.870595,5.55,5,2.921883,2.921883,2.921883,2.921883,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.923018,2.922787,2.921883,2.921883,2.923018,2.922787,2.921899,2.921897,2.921883,2.921883,2.921899,2.921897,2.922138,2.922133,2.921883,2.921883,2.922138,2.922133,2.921883,2.921883,2.921883,2.921883,2.921883,2.921883,,,,,,,2.923018,2.922787,2.921899,2.921897,2.922138,2.922133,2.921883,2.921883,2.921883,2.921883,1.052218,1.052149,1.051883,1.051882,1.051954,1.051953,1.051878,1.051878,0.545418,0.545418,19.992237,19.993818,19.999891,19.999905,19.998257,19.99829,20,20,20,20,,,,,,,,,,,2236,2236,2.921883,2.921883,2.921883,2.921883,2.921883,2.921883,2.921883,2.921883,1.051878,1.051878,20,20,, +10917,0,0.292152,1,1,0,2,4,,4,5,Textile,Rd,1432903,6.014,6.306,0,6.260395,4.5,4.5,0.461292,0.461292,0.461292,0.461292,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.463882,0.461788,0.461292,0.461292,0.463882,0.461788,0.461598,0.461691,0.461292,0.461292,0.461598,0.461691,0.461883,0.465072,0.461292,0.461292,0.461883,0.465072,0.461292,0.461292,0.461292,0.461292,0.461292,0.461292,,,,,,,0.463882,0.461788,0.461598,0.461691,0.461883,0.465072,0.461292,0.461292,0.461292,0.461292,0.191752,0.191124,0.191067,0.191095,0.191152,0.192109,0.190975,0.190975,0.101331,0.101331,37.787835,37.959185,37.974856,37.967175,37.951432,37.69113,38,38,38,38,,,,,,,,,,,3096,3096,0.461292,0.461292,0.461292,0.461292,0.461292,0.461292,0.461292,0.461292,0.190975,0.190975,38,38,, +10931,0,1.395816,1,1,0,2,5,,5,5,Ridge,Rd,1432807,0,1.395,0,29.91035,3.7,5,2.791633,2.791633,2.791633,2.791633,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.921597,2.837688,2.791633,2.791633,2.921597,2.837688,2.827481,2.820336,2.791633,2.791633,2.827481,2.820336,2.908946,2.907161,2.791633,2.791633,2.908946,2.907161,2.791633,2.791633,2.791633,2.791633,2.791633,2.791633,,,,,,,2.921597,2.837688,2.827481,2.820336,2.908946,2.907161,2.791633,2.791633,2.791633,2.791633,1.127726,1.102553,1.099491,1.097348,1.123931,1.123395,1.088737,1.088737,0.572285,0.572285,28.665483,29.513108,29.619646,29.694682,28.790146,28.807821,30,30,30,30,,,,,,,,,,,2580,2580,2.791633,2.791633,2.791633,2.791633,2.791633,2.791633,2.791633,2.791633,1.088737,1.088737,30,30,, +20706,0,3.008981,1,1,0,2,5,,5,6,Dennison,Rd,4301492,8.52,11.528,0,64.478164,3.7,5,6.017962,6.017962,6.017962,6.017962,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,,,,,,,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,2.347005,2.347005,2.347005,2.347005,2.347005,2.347005,2.347005,2.347005,1.233682,1.233682,29.999998,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,6.017962,2.347005,2.347005,30,30,, +21258,0,0.568783,1,1,0,2,4,,5,5,Bemis,Rd,4604906,0.758,1.327,0,12.188199,3,4,0.853174,0.853174,0.853174,0.853174,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.88637,1.068438,0.853174,0.853174,0.88637,1.068438,0.865748,0.865625,0.853174,0.853174,0.865748,0.865625,1.127463,0.950112,0.853174,0.853174,1.127463,0.950112,0.853174,0.853174,0.853174,0.853174,0.853174,0.853174,,,,,,,0.88637,1.068438,0.865748,0.865625,1.127463,0.950112,0.853174,0.853174,0.853174,0.853174,0.368292,0.422912,0.362105,0.362068,0.44062,0.387415,0.358333,0.358333,0.190542,0.190542,38.501936,31.940979,39.419055,39.424646,30.268817,35.918866,40,40,40,40,,,,,,,,,,,3096,3096,0.853174,0.853174,0.853174,0.853174,0.853174,0.853174,0.853174,0.853174,0.358333,0.358333,40,40,, +25484,0,1.700822,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.446186,0.15,4,6.803288,6.803288,6.803288,6.803288,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,,,,,,,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,2.347134,2.347134,2.347134,2.347134,2.347134,2.347134,2.347134,2.347134,1.207584,1.207584,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,6.803288,2.347134,2.347134,15,15,, +25489,0,0.757068,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.22288,0.15,4,3.028271,3.028271,3.028271,3.028271,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,,,,,,,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,1.044753,1.044753,1.044753,1.044753,1.044753,1.044753,1.044753,1.044753,0.537518,0.537518,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,3.028271,1.044753,1.044753,15,15,, +25490,0,0.80001,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.143076,0.15,4,3.200041,3.200041,3.200041,3.200041,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,,,,,,,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,1.104014,1.104014,1.104014,1.104014,1.104014,1.104014,1.104014,1.104014,0.568007,0.568007,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,3.200041,1.104014,1.104014,15,15,, +30664,0,2.969204,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,63.625809,0.15,4,11.876818,11.876818,11.876818,11.876818,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,,,,,,,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,4.097502,4.097502,4.097502,4.097502,4.097502,4.097502,4.097502,4.097502,2.108135,2.108135,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,11.876818,4.097502,4.097502,15,15,, +30665,0,2.610366,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,55.936422,0.15,4,10.441465,10.441465,10.441465,10.441465,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,,,,,,,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,3.602306,3.602306,3.602306,3.602306,3.602306,3.602306,3.602306,3.602306,1.85336,1.85336,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,10.441465,3.602306,3.602306,15,15,, +31379,0,2.76002,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,59.143281,0.15,4,11.040079,11.040079,11.040079,11.040079,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,,,,,,,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,3.808827,3.808827,3.808827,3.808827,3.808827,3.808827,3.808827,3.808827,1.959614,1.959614,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,11.040079,3.808827,3.808827,15,15,, +34045,0,1.833227,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,7.332906,7.332906,7.332906,7.332906,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.332907,7.332907,7.332906,7.332906,7.332907,7.332907,7.332907,7.332906,7.332906,7.332906,7.332907,7.332906,7.332907,7.332907,7.332906,7.332906,7.332907,7.332907,7.332906,7.332906,7.332906,7.332906,7.332906,7.332906,,,,,,,7.332907,7.332907,7.332907,7.332906,7.332907,7.332907,7.332906,7.332906,7.332906,7.332906,2.529853,2.529853,2.529853,2.529853,2.529853,2.529853,2.529853,2.529853,1.301591,1.301591,14.999999,14.999999,14.999999,14.999999,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,7.332906,7.332906,7.332906,7.332906,7.332906,7.332906,7.332906,7.332906,2.529853,2.529853,15,15,, +34046,0,1.316796,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.267182,5.267182,5.267182,5.267182,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,,,,,,,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,1.817178,1.817178,1.817178,1.817178,1.817178,1.817178,1.817178,1.817178,0.934925,0.934925,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,5.267182,1.817178,1.817178,15,15,, +34089,0,1.235217,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.940869,4.940869,4.940869,4.940869,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,,,,,,,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,1.7046,1.7046,1.7046,1.7046,1.7046,1.7046,1.7046,1.7046,0.877004,0.877004,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,4.940869,1.7046,1.7046,15,15,, +34090,0,1.469399,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.877595,5.877595,5.877595,5.877595,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,,,,,,,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,2.02777,2.02777,2.02777,2.02777,2.02777,2.02777,2.02777,2.02777,1.043273,1.043273,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,5.877595,2.02777,2.02777,15,15,, +7993,0,1.124949,1,1,0,2,6,,5,6,County Line,Hwy,950002,3.39,4.515,0,24.106039,5.8,6,2.249897,2.249897,2.249897,2.249897,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.249925,2.249897,2.249897,2.249897,2.249925,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,,,,,,,2.249925,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,0.877468,0.87746,0.87746,0.87746,0.87746,0.87746,0.87746,0.87746,0.461229,0.461229,29.999625,29.999997,29.999999,30,29.999997,29.999997,30,30,30,30,,,,,,,,,,,2236,2236,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,2.249897,0.87746,0.87746,30,30,, +7995,0,2.219478,1,1,0,2,5,,5,6,County Line,Hwy,950002,0,2.219,0,47.560241,3.7,5,4.438956,4.438956,4.438956,4.438956,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,,,,,,,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,1.731193,1.731193,1.731193,1.731193,1.731193,1.731193,1.731193,1.731193,0.909986,0.909986,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,4.438956,1.731193,1.731193,30,30,, +34044,0,1.406335,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.625342,5.625342,5.625342,5.625342,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,,,,,,,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,1.940743,1.940743,1.940743,1.940743,1.940743,1.940743,1.940743,1.940743,0.998498,0.998498,14.999999,14.999999,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,5.625342,1.940743,1.940743,15,15,, +34087,0,1.0549,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.219599,4.219599,4.219599,4.219599,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,,,,,,,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,1.455762,1.455762,1.455762,1.455762,1.455762,1.455762,1.455762,1.455762,0.748979,0.748979,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,4.219599,1.455762,1.455762,15,15,, +7742,0,1.171771,1,1,0,2,6,,5,6,County Line,Hwy,950002,2.219,3.39,0,25.109369,5.8,6,2.343541,2.343541,2.343541,2.343541,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.34357,2.343541,2.343541,2.343541,2.34357,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,,,,,,,2.34357,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,0.91399,0.913981,0.913981,0.913981,0.913981,0.913981,0.913981,0.913981,0.480426,0.480426,29.999625,29.999997,29.999999,30,29.999997,29.999997,30,30,30,30,,,,,,,,,,,2236,2236,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,2.343541,0.913981,0.913981,30,30,, +34088,0,1.346401,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.385603,5.385603,5.385603,5.385603,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,,,,,,,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,1.858033,1.858033,1.858033,1.858033,1.858033,1.858033,1.858033,1.858033,0.955945,0.955945,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,5.385603,1.858033,1.858033,15,15,, +7740,0,1.506364,1,1,0,2,6,,5,6,County Line,Hwy,950002,4.515,6.02,0,32.279236,5.8,6,3.012729,3.012729,3.012729,3.012729,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.01278,3.012729,3.012729,3.012729,3.01278,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,,,,,,,3.01278,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,1.17498,1.174964,1.174964,1.174964,1.174964,1.174964,1.174964,1.174964,0.617609,0.617609,29.999487,29.999995,29.999999,30,29.999992,29.999994,30,30,30,30,,,,,,,,,,,2236,2236,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,3.012729,1.174964,1.174964,30,30,, +7250,0,0.502271,1,1,0,2,6,GRV,5,6,County Line,Hwy,950002,6.02,6.522,0,10.762949,5.55,5,1.20545,1.20545,1.20545,1.20545,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.205578,1.205452,1.20545,1.20545,1.205578,1.205452,1.205451,1.20545,1.20545,1.20545,1.205451,1.20545,1.205453,1.205452,1.20545,1.20545,1.205453,1.205452,1.20545,1.20545,1.20545,1.20545,1.20545,1.20545,,,,,,,1.205578,1.205452,1.205451,1.20545,1.205453,1.205452,1.20545,1.20545,1.20545,1.20545,0.452082,0.452044,0.452044,0.452044,0.452045,0.452044,0.452044,0.452044,0.236067,0.236067,24.99736,24.999963,24.999991,24.999999,24.999947,24.999959,25,25,25,25,,,,,,,,,,,2236,2236,1.20545,1.20545,1.20545,1.20545,1.20545,1.20545,1.20545,1.20545,0.452044,0.452044,25,25,, +9618,0,1.471069,1,1,1,2,3,,5,5,Michigan,Ave,1427301,6.204,7.674,0,31.522912,1.7,4,1.765283,1.765283,1.765283,1.765283,50,50,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,2.447602,2.372649,1.765283,1.765283,2.447602,2.372649,2.285067,2.296916,1.765283,1.765283,2.285067,2.296916,2.700101,2.767542,1.765283,1.765283,2.700101,2.767542,1.765283,1.765283,1.765283,1.765283,1.765283,1.765283,,,,,,,2.447602,2.372649,2.285067,2.296916,2.700101,2.767542,1.765283,1.765283,1.765283,1.765283,0.999073,0.976587,0.950313,0.953867,1.074823,1.095055,0.794377,0.794377,0.42661,0.42661,36.061474,37.200672,38.626502,38.427248,32.689199,31.892621,50,50,50,50,,,,,,,,,,,3406,3406,1.765283,1.765283,1.765283,1.765283,1.765283,1.765283,1.765283,1.765283,0.794377,0.794377,50,50,, +10326,0,1.625103,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,3.006,4.631,0,34.823646,5.55,5,4.87531,4.87531,4.87531,4.87531,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.876315,4.876231,4.87531,4.87531,4.876315,4.876231,4.875325,4.875323,4.87531,4.87531,4.875325,4.875323,4.875452,4.875447,4.87531,4.87531,4.875452,4.875447,4.87531,4.87531,4.87531,4.87531,4.87531,4.87531,,,,,,,4.876315,4.876231,4.875325,4.875323,4.875452,4.875447,4.87531,4.87531,4.87531,4.87531,1.755413,1.755388,1.755116,1.755116,1.755154,1.755153,1.755112,1.755112,0.910058,0.910058,19.99588,19.996223,19.999942,19.999947,19.999417,19.999439,20,20,20,20,,,,,,,,,,,2236,2236,4.87531,4.87531,4.87531,4.87531,4.87531,4.87531,4.87531,4.87531,1.755112,1.755112,20,20,, +10328,0,1.159346,1,1,0,2,5,,5,5,Arkona,Rd,1427305,4.451,5.61,0,24.843128,3.7,5,2.318692,2.318692,2.318692,2.318692,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.318797,2.318786,2.318692,2.318692,2.318797,2.318786,2.318725,2.318725,2.318692,2.318692,2.318725,2.318725,2.318828,2.318836,2.318692,2.318692,2.318828,2.318836,2.318692,2.318692,2.318692,2.318692,2.318692,2.318692,,,,,,,2.318797,2.318786,2.318725,2.318725,2.318828,2.318836,2.318692,2.318692,2.318692,2.318692,0.904321,0.904318,0.9043,0.9043,0.904331,0.904333,0.90429,0.90429,0.475332,0.475332,29.998637,29.99878,29.999568,29.999577,29.998238,29.998133,30,30,30,30,,,,,,,,,,,2580,2580,2.318692,2.318692,2.318692,2.318692,2.318692,2.318692,2.318692,2.318692,0.90429,0.90429,30,30,, +10394,0,2.014877,1,1,0,2,3,,5,5,Michigan,Ave,1427301,7.674,9.688,0,43.175927,1.7,4,2.417852,2.417852,2.417852,2.417852,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.785398,3.635172,2.417852,2.417852,3.785398,3.635172,3.460191,3.483952,2.417852,2.417852,3.460191,3.483952,4.294117,4.429475,2.417852,2.417852,4.294117,4.429475,2.417852,2.417852,2.417852,2.417852,2.417852,2.417852,,,,,,,3.785398,3.635172,3.460191,3.483952,4.294117,4.429475,2.417852,2.417852,2.417852,2.417852,1.498297,1.453229,1.400735,1.407863,1.650913,1.69152,1.088033,1.088033,0.584314,0.584314,31.936564,33.256359,34.938126,34.699849,28.153078,27.29276,50,50,50,50,,,,,,,,,,,3096,3096,2.417852,2.417852,2.417852,2.417852,2.417852,2.417852,2.417852,2.417852,1.088033,1.088033,50,50,, +10908,0,3.172847,1,1,0,2,5,GRV,5,5,Mooreville,Rd,1432907,0,3.172,0,67.989574,5.55,5,9.51854,9.51854,9.51854,9.51854,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,,,,,,,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,3.426675,3.426675,3.426675,3.426675,3.426675,3.426675,3.426675,3.426675,1.776794,1.776794,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,9.51854,3.426675,3.426675,20,20,, +10955,0,0.909752,1,1,0,2,5,,5,5,Macon,Rd,1432708,5.029,5.939,0,19.494696,3.7,5,1.819505,1.819505,1.819505,1.819505,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.83577,1.819653,1.819505,1.819505,1.83577,1.819653,1.819813,1.819758,1.819505,1.819505,1.819813,1.819758,1.820272,1.849386,1.819505,1.819505,1.820272,1.849386,1.819505,1.819505,1.819505,1.819505,1.819505,1.819505,,,,,,,1.83577,1.819653,1.819813,1.819758,1.820272,1.849386,1.819505,1.819505,1.819505,1.819505,0.714486,0.709651,0.709699,0.709683,0.709837,0.718571,0.709607,0.709607,0.372999,0.372999,29.734203,29.997555,29.994929,29.995822,29.987367,29.515283,30,30,30,30,,,,,,,,,,,2580,2580,1.819505,1.819505,1.819505,1.819505,1.819505,1.819505,1.819505,1.819505,0.709607,0.709607,30,30,, +10972,0,1.214781,1,1,0,2,6,GRV,5,5,Macon,Rd,1432708,2.409,3.623,0,26.031025,5.55,5,2.915475,2.915475,2.915475,2.915475,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,,,,,,,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,1.093303,1.093303,1.093303,1.093303,1.093303,1.093303,1.093303,1.093303,0.570947,0.570947,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,2.915475,1.093303,1.093303,25,25,, +10990,0,1.501672,1,1,0,2,6,GRV,5,5,Saline Waterworks,Rd,1432706,3.997,5.498,0,32.178686,5.55,5,3.604013,3.604013,3.604013,3.604013,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.606277,3.604016,3.604013,3.604013,3.606277,3.604016,3.604032,3.604027,3.604013,3.604013,3.604032,3.604027,3.604057,3.605227,3.604013,3.604013,3.604057,3.605227,3.604013,3.604013,3.604013,3.604013,3.604013,3.604013,,,,,,,3.606277,3.604016,3.604032,3.604027,3.604057,3.605227,3.604013,3.604013,3.604013,3.604013,1.352184,1.351506,1.351511,1.351509,1.351518,1.351869,1.351505,1.351505,0.705786,0.705786,24.984305,24.999977,24.999864,24.999904,24.999693,24.991577,25,25,25,25,,,,,,,,,,,2236,2236,3.604013,3.604013,3.604013,3.604013,3.604013,3.604013,3.604013,3.604013,1.351505,1.351505,25,25,, +21613,0,3.417028,1,1,0,2,5,,5,5,Austin,Rd,4604910,8.614,12.03,0,73.222033,3.7,5,6.834056,6.834056,6.834056,6.834056,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,6.857593,6.83497,6.834056,6.834056,6.857593,6.83497,6.834498,6.834349,6.834056,6.834056,6.834498,6.834349,6.836414,6.865697,6.834056,6.834056,6.836414,6.865697,6.834056,6.834056,6.834056,6.834056,6.834056,6.834056,,,,,,,6.857593,6.83497,6.834498,6.834349,6.836414,6.865697,6.834056,6.834056,6.834056,6.834056,2.672343,2.665556,2.665414,2.66537,2.665989,2.674774,2.665282,2.665282,1.400982,1.400982,29.897035,29.995991,29.998063,29.998714,29.989655,29.861746,30,30,30,30,,,,,,,,,,,2580,2580,6.834056,6.834056,6.834056,6.834056,6.834056,6.834056,6.834056,6.834056,2.665282,2.665282,30,30,, +24597,0,1.361039,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.165122,0.15,4,5.444156,5.444156,5.444156,5.444156,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,,,,,,,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,1.878234,1.878234,1.878234,1.878234,1.878234,1.878234,1.878234,1.878234,0.966338,0.966338,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,5.444156,1.878234,1.878234,15,15,, +25494,0,0.600611,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.87023,0.15,4,2.402443,2.402443,2.402443,2.402443,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,,,,,,,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,0.828843,0.828843,0.828843,0.828843,0.828843,0.828843,0.828843,0.828843,0.426434,0.426434,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,2.402443,0.828843,0.828843,15,15,, +29988,0,3.208306,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,68.749416,0.15,4,12.833224,12.833224,12.833224,12.833224,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,,,,,,,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,4.427462,4.427462,4.427462,4.427462,4.427462,4.427462,4.427462,4.427462,2.277897,2.277897,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,12.833224,4.427462,4.427462,15,15,, +10324,0,1.005904,1,1,0,2,6,GRV,5,5,Case,Rd,1427308,0,1.005,0,21.555093,5.55,5,2.41417,2.41417,2.41417,2.41417,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,,,,,,,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,0.905314,0.905314,0.905314,0.905314,0.905314,0.905314,0.905314,0.905314,0.472775,0.472775,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,2.41417,0.905314,0.905314,25,25,, +10327,0,1.400289,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,1.607,3.006,0,30.006184,5.55,5,4.200866,4.200866,4.200866,4.200866,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.20166,4.201592,4.200866,4.200866,4.20166,4.201592,4.200877,4.200876,4.200866,4.200866,4.200877,4.200876,4.200979,4.200975,4.200866,4.200866,4.200979,4.200975,4.200866,4.200866,4.200866,4.200866,4.200866,4.200866,,,,,,,4.20166,4.201592,4.200877,4.200876,4.200979,4.200975,4.200866,4.200866,4.200866,4.200866,1.51255,1.512529,1.512315,1.512315,1.512346,1.512344,1.512312,1.512312,0.784162,0.784162,19.996217,19.996545,19.999948,19.999953,19.99946,19.999481,20,20,20,20,,,,,,,,,,,2236,2236,4.200866,4.200866,4.200866,4.200866,4.200866,4.200866,4.200866,4.200866,1.512312,1.512312,20,20,, +10973,0,2.409851,1,1,0,2,6,GRV,5,5,Macon,Rd,1432708,0,2.409,0,51.639656,5.55,5,5.783641,5.783641,5.783641,5.783641,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,,,,,,,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,2.168866,2.168866,2.168866,2.168866,2.168866,2.168866,2.168866,2.168866,1.13263,1.13263,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,5.783641,2.168866,2.168866,25,25,, +24599,0,0.919067,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.694292,0.15,4,3.676268,3.676268,3.676268,3.676268,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,,,,,,,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,1.268312,1.268312,1.268312,1.268312,1.268312,1.268312,1.268312,1.268312,0.652538,0.652538,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,3.676268,1.268312,1.268312,15,15,, +24600,0,1.307633,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.020711,0.15,4,5.230533,5.230533,5.230533,5.230533,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,,,,,,,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,1.804534,1.804534,1.804534,1.804534,1.804534,1.804534,1.804534,1.804534,0.92842,0.92842,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,5.230533,1.804534,1.804534,15,15,, +10333,0,0.253133,1,1,0,2,6,GRV,5,5,Arkona,Rd,1427305,1.899,2.152,0,5.42428,5.55,5,0.607519,0.607519,0.607519,0.607519,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,,,,,,,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.22782,0.22782,0.22782,0.22782,0.22782,0.22782,0.22782,0.22782,0.118973,0.118973,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.607519,0.22782,0.22782,25,25,, +10928,0,1.013558,1,1,0,2,6,GRV,5,5,Lindsley,Rd,1432808,0,1.013,0,21.719098,5.55,5,2.432539,2.432539,2.432539,2.432539,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,,,,,,,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,0.912202,0.912202,0.912202,0.912202,0.912202,0.912202,0.912202,0.912202,0.476372,0.476372,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,2.432539,0.912202,0.912202,25,25,, +10052,0,0.882711,1,1,0,2,6,GRV,5,5,Case,Rd,1427308,1.005,1.881,0,18.915239,5.55,5,2.118507,2.118507,2.118507,2.118507,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,,,,,,,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,0.79444,0.79444,0.79444,0.79444,0.79444,0.79444,0.79444,0.79444,0.414874,0.414874,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,2.118507,0.79444,0.79444,25,25,, +10407,0,0.533998,1,1,0,2,3,,5,5,Michigan,Ave,1427301,5.582,6.116,0,11.442806,1.7,4,0.640797,0.640797,0.640797,0.640797,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.003234,0.96342,0.640797,0.640797,1.003234,0.96342,0.917046,0.923343,0.640797,0.640797,0.917046,0.923343,1.138059,1.173932,0.640797,0.640797,1.138059,1.173932,0.640797,0.640797,0.640797,0.640797,0.640797,0.640797,,,,,,,1.003234,0.96342,0.917046,0.923343,1.138059,1.173932,0.640797,0.640797,0.640797,0.640797,0.39709,0.385146,0.371233,0.373122,0.437537,0.448299,0.288359,0.288359,0.154859,0.154859,31.936564,33.256359,34.938126,34.699849,28.153078,27.29276,50,50,50,50,,,,,,,,,,,3096,3096,0.640797,0.640797,0.640797,0.640797,0.640797,0.640797,0.640797,0.640797,0.288359,0.288359,50,50,, +9553,0,0.49866,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,1.115,1.607,0,10.685564,5.55,5,1.495979,1.495979,1.495979,1.495979,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.49626,1.496243,1.495979,1.495979,1.49626,1.496243,1.495983,1.495983,1.495979,1.495979,1.495983,1.495983,1.49602,1.49602,1.495979,1.495979,1.49602,1.49602,1.495979,1.495979,1.495979,1.495979,1.495979,1.495979,,,,,,,1.49626,1.496243,1.495983,1.495983,1.49602,1.49602,1.495979,1.495979,1.495979,1.495979,0.538637,0.538632,0.538554,0.538554,0.538565,0.538565,0.538552,0.538552,0.279249,0.279249,19.996245,19.996468,19.999946,19.999947,19.999456,19.999452,20,20,20,20,,,,,,,,,,,2236,2236,1.495979,1.495979,1.495979,1.495979,1.495979,1.495979,1.495979,1.495979,0.538552,0.538552,20,20,, +10135,0,0.087954,1,1,0,2,3,,5,5,Michigan,Ave,1427301,6.116,6.204,0,1.884739,1.7,4,0.105545,0.105545,0.105545,0.105545,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.165242,0.158685,0.105545,0.105545,0.165242,0.158685,0.151046,0.152083,0.105545,0.105545,0.151046,0.152083,0.187449,0.193358,0.105545,0.105545,0.187449,0.193358,0.105545,0.105545,0.105545,0.105545,0.105545,0.105545,,,,,,,0.165242,0.158685,0.151046,0.152083,0.187449,0.193358,0.105545,0.105545,0.105545,0.105545,0.065404,0.063437,0.061146,0.061457,0.072067,0.073839,0.047495,0.047495,0.025507,0.025507,31.936564,33.256359,34.938126,34.699849,28.153078,27.29276,50,50,50,50,,,,,,,,,,,3096,3096,0.105545,0.105545,0.105545,0.105545,0.105545,0.105545,0.105545,0.105545,0.047495,0.047495,50,50,, +10909,0,0.973505,1,1,0,2,5,,5,5,Goodrich,Rd,1432905,0,0.973,0,20.860818,3.7,5,1.94701,1.94701,1.94701,1.94701,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.947098,1.947089,1.94701,1.94701,1.947098,1.947089,1.947038,1.947037,1.94701,1.94701,1.947038,1.947037,1.947124,1.947131,1.94701,1.94701,1.947124,1.947131,1.94701,1.94701,1.94701,1.94701,1.94701,1.94701,,,,,,,1.947098,1.947089,1.947038,1.947037,1.947124,1.947131,1.94701,1.94701,1.94701,1.94701,0.75936,0.759358,0.759342,0.759342,0.759368,0.75937,0.759334,0.759334,0.399137,0.399137,29.998637,29.99878,29.999568,29.999577,29.998238,29.998133,30,30,30,30,,,,,,,,,,,2580,2580,1.94701,1.94701,1.94701,1.94701,1.94701,1.94701,1.94701,1.94701,0.759334,0.759334,30,30,, +7987,0,0.417101,1,1,0,2,5,,5,5,Hack,Rd,960602,4.033,4.45,0,8.937877,3.7,5,0.834202,0.834202,0.834202,0.834202,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.83424,0.834236,0.834202,0.834202,0.83424,0.834236,0.834214,0.834214,0.834202,0.834202,0.834214,0.834214,0.834251,0.834254,0.834202,0.834202,0.834251,0.834254,0.834202,0.834202,0.834202,0.834202,0.834202,0.834202,,,,,,,0.83424,0.834236,0.834214,0.834214,0.834251,0.834254,0.834202,0.834202,0.834202,0.834202,0.32535,0.325349,0.325342,0.325342,0.325353,0.325354,0.325339,0.325339,0.171011,0.171011,29.998637,29.99878,29.999568,29.999577,29.998238,29.998133,30,30,30,30,,,,,,,,,,,2580,2580,0.834202,0.834202,0.834202,0.834202,0.834202,0.834202,0.834202,0.834202,0.325339,0.325339,30,30,, +21622,0,0.07771,1,1,0,2,5,,5,5,Goodrich,Rd,4603884,0,0.078,0,1.665221,3.7,5,0.155421,0.155421,0.155421,0.155421,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.155428,0.155427,0.155421,0.155421,0.155428,0.155427,0.155423,0.155423,0.155421,0.155421,0.155423,0.155423,0.15543,0.15543,0.155421,0.155421,0.15543,0.15543,0.155421,0.155421,0.155421,0.155421,0.155421,0.155421,,,,,,,0.155428,0.155427,0.155423,0.155423,0.15543,0.15543,0.155421,0.155421,0.155421,0.155421,0.060616,0.060616,0.060615,0.060615,0.060617,0.060617,0.060614,0.060614,0.031861,0.031861,29.998637,29.99878,29.999568,29.999577,29.998238,29.998133,30,30,30,30,,,,,,,,,,,2580,2580,0.155421,0.155421,0.155421,0.155421,0.155421,0.155421,0.155421,0.155421,0.060614,0.060614,30,30,, +24605,0,0.680383,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.579636,0.15,4,2.721532,2.721532,2.721532,2.721532,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,,,,,,,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,0.938929,0.938929,0.938929,0.938929,0.938929,0.938929,0.938929,0.938929,0.483072,0.483072,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,2.721532,0.938929,0.938929,15,15,, +10059,0,1.26803,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,4.631,5.898,0,27.172078,5.55,5,3.804091,3.804091,3.804091,3.804091,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.805785,3.805437,3.804091,3.804091,3.805785,3.805437,3.804118,3.804114,3.804091,3.804091,3.804118,3.804114,3.8045,3.804491,3.804091,3.804091,3.8045,3.804491,3.804091,3.804091,3.804091,3.804091,3.804091,3.804091,,,,,,,3.805785,3.805437,3.804118,3.804114,3.8045,3.804491,3.804091,3.804091,3.804091,3.804091,1.369981,1.369877,1.369481,1.36948,1.369596,1.369593,1.369473,1.369473,0.710097,0.710097,19.991099,19.992924,19.999857,19.999879,19.997847,19.997896,20,20,20,20,,,,,,,,,,,2236,2236,3.804091,3.804091,3.804091,3.804091,3.804091,3.804091,3.804091,3.804091,1.369473,1.369473,20,20,, +10941,0,1.034156,1,1,0,2,5,,5,5,Jordan,Rd,5498055,0,1.034,0,22.160495,3.7,5,2.068313,2.068313,2.068313,2.068313,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.068407,2.068397,2.068313,2.068313,2.068407,2.068397,2.068343,2.068342,2.068313,2.068313,2.068343,2.068342,2.068434,2.068442,2.068313,2.068313,2.068434,2.068442,2.068313,2.068313,2.068313,2.068313,2.068313,2.068313,,,,,,,2.068407,2.068397,2.068343,2.068342,2.068434,2.068442,2.068313,2.068313,2.068313,2.068313,0.80667,0.806667,0.806651,0.806651,0.806678,0.806681,0.806642,0.806642,0.424004,0.424004,29.998637,29.99878,29.999568,29.999577,29.998238,29.998133,30,30,30,30,,,,,,,,,,,2580,2580,2.068313,2.068313,2.068313,2.068313,2.068313,2.068313,2.068313,2.068313,0.806642,0.806642,30,30,, +10940,0,1.919556,1,1,0,2,5,,5,5,Jordan,Rd,5498055,1.034,2.953,0,41.133351,3.7,5,3.839113,3.839113,3.839113,3.839113,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.839172,3.839178,3.839113,3.839113,3.839172,3.839178,3.83914,3.839142,3.839113,3.839113,3.83914,3.839142,3.839328,3.83934,3.839113,3.839113,3.839328,3.83934,3.839113,3.839113,3.839113,3.839113,3.839113,3.839113,,,,,,,3.839172,3.839178,3.83914,3.839142,3.839328,3.83934,3.839113,3.839113,3.839113,3.839113,1.497272,1.497274,1.497262,1.497263,1.497318,1.497322,1.497254,1.497254,0.787018,0.787018,29.999535,29.999486,29.999784,29.999775,29.99832,29.998227,30,30,30,30,,,,,,,,,,,2580,2580,3.839113,3.839113,3.839113,3.839113,3.839113,3.839113,3.839113,3.839113,1.497254,1.497254,30,30,, +10959,0,0.30956,1,1,0,2,5,GRV,5,5,Macon,Rd,1432708,4.72,5.029,0,6.633436,5.55,5,0.928681,0.928681,0.928681,0.928681,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.93501,0.928682,0.928681,0.928681,0.93501,0.928682,0.928697,0.928691,0.928681,0.928681,0.928697,0.928691,0.928717,0.940121,0.928681,0.928681,0.928717,0.940121,0.928681,0.928681,0.928681,0.928681,0.928681,0.928681,,,,,,,0.93501,0.928682,0.928697,0.928691,0.928717,0.940121,0.928681,0.928681,0.928681,0.928681,0.336224,0.334326,0.33433,0.334328,0.334336,0.337757,0.334325,0.334325,0.173354,0.173354,19.864627,19.999968,19.999665,19.999784,19.999222,19.756621,20,20,20,20,,,,,,,,,,,2236,2236,0.928681,0.928681,0.928681,0.928681,0.928681,0.928681,0.928681,0.928681,0.334325,0.334325,20,20,, +10971,0,1.096966,1,1,0,2,6,GRV,5,5,Macon,Rd,1432708,3.623,4.72,0,23.506423,5.55,5,2.632719,2.632719,2.632719,2.632719,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.634413,2.632723,2.632719,2.632719,2.634413,2.632723,2.63276,2.632745,2.632719,2.632719,2.63276,2.632745,2.632767,2.633643,2.632719,2.632719,2.632767,2.633643,2.632719,2.632719,2.632719,2.632719,2.632719,2.632719,,,,,,,2.634413,2.632723,2.63276,2.632745,2.632767,2.633643,2.632719,2.632719,2.632719,2.632719,0.987778,0.987271,0.987282,0.987278,0.987284,0.987547,0.98727,0.98727,0.515574,0.515574,24.983926,24.999969,24.999614,24.999755,24.999551,24.991236,25,25,25,25,,,,,,,,,,,2236,2236,2.632719,2.632719,2.632719,2.632719,2.632719,2.632719,2.632719,2.632719,0.98727,0.98727,25,25,, +39932,1,0.162902,2,0,0,1,3,,3,1,DIBC Customs Plaza,,4718954,0,0.163,0,,5,5,0.27926,,0.27926,,35,,22000,,4994,,11000,,7097,,7568,,7559,,0.28556,,0.27926,,0.28556,,0.283632,,0.27926,,0.283632,,0.286468,,0.27926,,0.286468,,0.27926,,0.27926,,0.27926,,,,,,,,0.28556,,0.283632,,0.286468,,0.27926,,0.27926,,0.11499,,0.114412,,0.115263,,0.1131,,0.059808,,34.227934,,34.460527,,34.119347,,35,,35,,,,,,,,,,,,7568,,0.27926,,0.27926,,0.27926,,0.27926,,0.1131,,35,,, +39933,1,0.691296,2,0,0,1,3,,3,1,DIBC Truck Inspection,,4718955,0,0.691,0,,5,5,1.185079,,1.185079,,35,,22000,,4994,,11000,,7097,,7568,,7559,,1.185079,,1.185079,,1.185079,,1.185079,,1.185079,,1.185079,,1.185079,,1.185079,,1.185079,,1.185079,,1.185079,,1.185079,,,,,,,,1.185079,,1.185079,,1.185079,,1.185079,,1.185079,,0.479957,,0.479957,,0.479957,,0.479957,,0.253804,,35,,35,,35,,35,,35,,,,,,,,,,,,7568,,1.185079,,1.185079,,1.185079,,1.185079,,0.479957,,35,,, +40024,1,0.030145,2,0,0,2,3,,4,3,Orchard Lake,Rd,634003,4.943,4.974,0,0.645974,3.7,5,0.045218,,0.045218,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.048097,,0.045218,,0.048097,,0.046093,,0.045218,,0.046093,,0.053396,,0.045218,,0.053396,,0.045218,,0.045218,,0.045218,,,,,,,,0.048097,,0.046093,,0.053396,,0.045218,,0.045218,,0.019855,,0.019254,,0.021445,,0.018992,,0.010099,,37.605702,,39.240716,,33.874071,,40,,40,,,,,,,,,,,,7568,,0.045218,,0.045218,,0.045218,,0.045218,,0.018992,,40,,, +10317,0,0.543057,1,1,0,2,5,,5,6,Ridge,Hwy,1234805,0,0.543,0,11.63693,3.7,5,1.086113,1.086113,1.086113,1.086113,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.136677,1.104032,1.086113,1.086113,1.136677,1.104032,1.100061,1.097281,1.086113,1.086113,1.100061,1.097281,1.131755,1.131061,1.086113,1.086113,1.131755,1.131061,1.086113,1.086113,1.086113,1.086113,1.086113,1.086113,,,,,,,1.136677,1.104032,1.100061,1.097281,1.131755,1.131061,1.086113,1.086113,1.086113,1.086113,0.438753,0.42896,0.427768,0.426934,0.437277,0.437069,0.423584,0.423584,0.222653,0.222653,28.665483,29.513108,29.619646,29.694682,28.790146,28.807821,30,30,30,30,,,,,,,,,,,2580,2580,1.086113,1.086113,1.086113,1.086113,1.086113,1.086113,1.086113,1.086113,0.423584,0.423584,30,30,, +21529,0,0.819891,1,1,0,2,5,GRV,5,5,Willow,Rd,4604005,0,0.82,0,17.569083,5.55,5,2.459672,2.459672,2.459672,2.459672,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.460627,2.460432,2.459672,2.459672,2.460627,2.460432,2.459685,2.459683,2.459672,2.459672,2.459685,2.459683,2.459886,2.459882,2.459672,2.459672,2.459886,2.459882,2.459672,2.459672,2.459672,2.459672,2.459672,2.459672,,,,,,,2.460627,2.460432,2.459685,2.459683,2.459886,2.459882,2.459672,2.459672,2.459672,2.459672,0.885768,0.88571,0.885486,0.885485,0.885546,0.885545,0.885482,0.885482,0.459139,0.459139,19.992237,19.993818,19.999891,19.999905,19.998257,19.99829,20,20,20,20,,,,,,,,,,,2236,2236,2.459672,2.459672,2.459672,2.459672,2.459672,2.459672,2.459672,2.459672,0.885482,0.885482,20,20,, +10933,0,0.027687,1,1,0,2,5,GRV,5,5,Maple,Rd,1432804,2.005,2.033,0,0.5933,5.55,5,0.083062,0.083062,0.083062,0.083062,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.083088,0.083094,0.083062,0.083062,0.083088,0.083094,0.083062,0.083063,0.083062,0.083062,0.083062,0.083063,0.083069,0.083069,0.083062,0.083062,0.083069,0.083069,0.083062,0.083062,0.083062,0.083062,0.083062,0.083062,,,,,,,0.083088,0.083094,0.083062,0.083063,0.083069,0.083069,0.083062,0.083062,0.083062,0.083062,0.02991,0.029912,0.029902,0.029902,0.029904,0.029905,0.029902,0.029902,0.015505,0.015505,19.993818,19.992237,19.999905,19.999891,19.99829,19.998257,20,20,20,20,,,,,,,,,,,2236,2236,0.083062,0.083062,0.083062,0.083062,0.083062,0.083062,0.083062,0.083062,0.029902,0.029902,20,20,, +9606,0,0.476486,1,1,1,2,3,,4,5,Michigan,Ave,1427301,10.327,10.803,0,10.21041,3.7,5,0.714729,0.714729,0.714729,0.714729,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,1.687257,1.068547,0.714729,0.714729,1.687257,1.068547,1.069155,1.043931,0.714729,0.714729,1.069155,1.043931,1.458273,1.809384,0.714729,0.714729,1.458273,1.809384,0.714729,0.714729,0.714729,0.714729,0.714729,0.714729,,,,,,,1.687257,1.068547,1.069155,1.043931,1.458273,1.809384,0.714729,0.714729,0.714729,0.714729,0.591945,0.406331,0.406514,0.398947,0.523249,0.628583,0.300186,0.300186,0.159623,0.159623,16.944153,26.755167,26.73994,27.38605,19.6048,15.800486,40,40,40,40,,,,,,,,,,,4162,4162,0.714729,0.714729,0.714729,0.714729,0.714729,0.714729,0.714729,0.714729,0.300186,0.300186,40,40,, +10378,0,0.352535,2,2,1,2,3,,4,5,Michigan,Ave,1427301,11.749,12.101,0,7.554313,3.7,5,0.528802,0.528802,0.528802,0.528802,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.541288,0.5296,0.528802,0.528802,0.541288,0.5296,0.531899,0.531164,0.528802,0.528802,0.531899,0.531164,0.531331,0.541676,0.528802,0.528802,0.531331,0.541676,0.528802,0.528802,0.528802,0.528802,0.528802,0.528802,,,,,,,0.541288,0.5296,0.531899,0.531164,0.531331,0.541676,0.528802,0.528802,0.528802,0.528802,0.225843,0.222336,0.223026,0.222805,0.222856,0.225959,0.222097,0.222097,0.118099,0.118099,39.077309,39.939737,39.767072,39.822136,39.80959,39.049331,40,40,40,40,,,,,,,,,,,7946,7946,0.528802,0.528802,0.528802,0.528802,0.528802,0.528802,0.528802,0.528802,0.222097,0.222097,40,40,, +10795,0,0.223154,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,7.179,7.402,0,4.781881,4.5,4.5,0.352349,0.352349,0.352349,0.352349,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.428264,0.424224,0.352349,0.352349,0.428264,0.424224,0.391134,0.38965,0.352349,0.352349,0.391134,0.38965,0.453073,0.458273,0.352349,0.352349,0.453073,0.458273,0.352349,0.352349,0.352349,0.352349,0.352349,0.352349,,,,,,,0.428264,0.424224,0.391134,0.38965,0.453073,0.458273,0.352349,0.352349,0.352349,0.352349,0.168647,0.167435,0.157508,0.157063,0.17609,0.17765,0.145873,0.145873,0.077399,0.077399,31.264044,31.561793,34.231913,34.362251,29.552113,29.216801,38,38,38,38,,,,,,,,,,,3096,3096,0.352349,0.352349,0.352349,0.352349,0.352349,0.352349,0.352349,0.352349,0.145873,0.145873,38,38,, +10800,0,0.412703,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,6.625,7.037,0,8.843642,4.5,4.5,0.651637,0.651637,0.651637,0.651637,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.739473,0.726256,0.651637,0.651637,0.739473,0.726256,0.697526,0.69766,0.651637,0.651637,0.697526,0.69766,0.765635,0.79249,0.651637,0.651637,0.765635,0.79249,0.651637,0.651637,0.651637,0.651637,0.651637,0.651637,,,,,,,0.739473,0.726256,0.697526,0.69766,0.765635,0.79249,0.651637,0.651637,0.651637,0.651637,0.296128,0.292163,0.283545,0.283585,0.303977,0.312034,0.269778,0.269778,0.143143,0.143143,33.486286,34.095691,35.500015,35.493233,32.342024,31.246072,38,38,38,38,,,,,,,,,,,3096,3096,0.651637,0.651637,0.651637,0.651637,0.651637,0.651637,0.651637,0.651637,0.269778,0.269778,38,38,, +10926,0,0.527062,1,1,0,2,4,,5,5,Textile,Rd,1432903,4.008,4.535,0,11.294192,3,4,0.790593,0.790593,0.790593,0.790593,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.790866,0.790608,0.790593,0.790593,0.790866,0.790608,0.7906,0.790601,0.790593,0.790593,0.7906,0.790601,0.790623,0.791016,0.790593,0.790593,0.790623,0.791016,0.790593,0.790593,0.790593,0.790593,0.790593,0.790593,,,,,,,0.790866,0.790608,0.7906,0.790601,0.790623,0.791016,0.790593,0.790593,0.790593,0.790593,0.332131,0.332054,0.332051,0.332051,0.332058,0.332176,0.332049,0.332049,0.176566,0.176566,39.986227,39.999262,39.999646,39.99964,39.998507,39.978623,40,40,40,40,,,,,,,,,,,3096,3096,0.790593,0.790593,0.790593,0.790593,0.790593,0.790593,0.790593,0.790593,0.332049,0.332049,40,40,, +10952,0,1.156132,1,1,0,2,5,,5,5,Macon,Rd,1432708,5.939,7.094,0,24.774254,3.7,5,2.312264,2.312264,2.312264,2.312264,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.332933,2.312452,2.312264,2.312264,2.332933,2.312452,2.312655,2.312586,2.312264,2.312264,2.312655,2.312586,2.313238,2.350237,2.312264,2.312264,2.313238,2.350237,2.312264,2.312264,2.312264,2.312264,2.312264,2.312264,,,,,,,2.332933,2.312452,2.312655,2.312586,2.313238,2.350237,2.312264,2.312264,2.312264,2.312264,0.907984,0.901839,0.9019,0.901879,0.902075,0.913175,0.901783,0.901783,0.474014,0.474014,29.734203,29.997555,29.994929,29.995822,29.987367,29.515283,30,30,30,30,,,,,,,,,,,2580,2580,2.312264,2.312264,2.312264,2.312264,2.312264,2.312264,2.312264,2.312264,0.901783,0.901783,30,30,, +10976,0,0.411976,1,1,0,2,5,,5,5,Saline Waterworks,Rd,1432706,7.109,7.521,0,8.828066,3.7,5,0.823953,0.823953,0.823953,0.823953,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.824265,0.823959,0.823953,0.823953,0.824265,0.823959,0.823954,0.823954,0.823953,0.823953,0.823954,0.823954,0.824003,0.824221,0.823953,0.823953,0.824003,0.824221,0.823953,0.823953,0.823953,0.823953,0.823953,0.823953,,,,,,,0.824265,0.823959,0.823954,0.823954,0.824003,0.824221,0.823953,0.823953,0.823953,0.823953,0.321435,0.321343,0.321342,0.321342,0.321357,0.321422,0.321342,0.321342,0.16891,0.16891,29.98864,29.999793,29.999975,29.999973,29.998188,29.990238,30,30,30,30,,,,,,,,,,,2580,2580,0.823953,0.823953,0.823953,0.823953,0.823953,0.823953,0.823953,0.823953,0.321342,0.321342,30,30,, +19244,0,0.176522,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0,0.176,0,3.782604,5.8,4.5,0.39227,0.39227,0.39227,0.39227,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.392866,0.392378,0.39227,0.39227,0.392866,0.392378,0.392319,0.392329,0.39227,0.39227,0.392319,0.392329,0.392429,0.393074,0.39227,0.39227,0.392429,0.393074,0.39227,0.39227,0.39227,0.39227,0.39227,0.39227,,,,,,,0.392866,0.392378,0.392319,0.392329,0.392429,0.393074,0.39227,0.39227,0.39227,0.39227,0.149634,0.149487,0.14947,0.149473,0.149503,0.149696,0.149455,0.149455,0.078258,0.078258,26.959052,26.99259,26.996628,26.995912,26.989036,26.944781,27,27,27,27,,,,,,,,,,,2580,2580,0.39227,0.39227,0.39227,0.39227,0.39227,0.39227,0.39227,0.39227,0.149455,0.149455,27,27,, +21207,0,0.450608,1,1,1,2,4,,4,5,Maple,St,4600080,0.156,0.607,0,9.655888,4.5,4.5,0.711486,0.711486,0.711486,0.711486,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.821948,0.72043,0.711486,0.711486,0.821948,0.72043,0.732652,0.726697,0.711486,0.711486,0.732652,0.726697,0.752959,0.815433,0.711486,0.711486,0.752959,0.815433,0.711486,0.711486,0.711486,0.711486,0.711486,0.711486,,,,,,,0.821948,0.72043,0.732652,0.726697,0.752959,0.815433,0.711486,0.711486,0.711486,0.711486,0.327694,0.297239,0.300905,0.299118,0.306997,0.325739,0.294555,0.294555,0.15629,0.15629,32.893192,37.52825,36.902205,37.204646,35.907001,33.155993,38,38,38,38,,,,,,,,,,,3406,3406,0.711486,0.711486,0.711486,0.711486,0.711486,0.711486,0.711486,0.711486,0.294555,0.294555,38,38,, +21864,0,0.336838,1,1,0,2,5,,5,5,Industrial,Dr,4603881,0.135,0.472,0,7.21795,3.7,5,0.673675,0.673675,0.673675,0.673675,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.675443,0.673738,0.673675,0.673675,0.675443,0.673738,0.674126,0.674286,0.673675,0.673675,0.674126,0.674286,0.674246,0.676266,0.673675,0.673675,0.674246,0.676266,0.673675,0.673675,0.673675,0.673675,0.673675,0.673675,,,,,,,0.675443,0.673738,0.674126,0.674286,0.674246,0.676266,0.673675,0.673675,0.673675,0.673675,0.263264,0.262752,0.262869,0.262916,0.262905,0.263511,0.262733,0.262733,0.138103,0.138103,29.921486,29.997206,29.979949,29.972846,29.974614,29.885054,30,30,30,30,,,,,,,,,,,2580,2580,0.673675,0.673675,0.673675,0.673675,0.673675,0.673675,0.673675,0.673675,0.262733,0.262733,30,30,, +25485,0,0.890139,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,19.074413,0.15,4,3.560557,3.560557,3.560557,3.560557,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,,,,,,,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,1.228392,1.228392,1.228392,1.228392,1.228392,1.228392,1.228392,1.228392,0.631999,0.631999,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,3.560557,1.228392,1.228392,15,15,, +25488,0,0.161019,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,3.450399,0.15,4,0.644074,0.644074,0.644074,0.644074,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.644074,0.644075,0.644074,0.644074,0.644074,0.644075,0.644075,0.644075,0.644074,0.644074,0.644075,0.644075,0.644075,0.644075,0.644074,0.644074,0.644075,0.644075,0.644074,0.644074,0.644074,0.644074,0.644074,0.644074,,,,,,,0.644074,0.644075,0.644075,0.644075,0.644075,0.644075,0.644074,0.644074,0.644074,0.644074,0.222206,0.222206,0.222206,0.222206,0.222206,0.222206,0.222206,0.222206,0.114323,0.114323,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.644074,0.644074,0.644074,0.644074,0.644074,0.644074,0.644074,0.644074,0.222206,0.222206,15,15,, +26310,0,0.569619,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.206123,0.15,4,2.278476,2.278476,2.278476,2.278476,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,,,,,,,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,0.786074,0.786074,0.786074,0.786074,0.786074,0.786074,0.786074,0.786074,0.40443,0.40443,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,2.278476,0.786074,0.786074,15,15,, +26315,0,0.306711,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.572383,0.15,4,1.226845,1.226845,1.226845,1.226845,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,,,,,,,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,0.423261,0.423262,0.423261,0.423261,0.423262,0.423261,0.423261,0.423261,0.217765,0.217765,14.999999,14.999995,15,15,14.999993,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,1.226845,0.423261,0.423261,15,15,, +26316,0,0.467914,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.02673,0.15,4,1.871656,1.871656,1.871656,1.871656,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,,,,,,,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,0.645721,0.645721,0.645721,0.645721,0.645721,0.645721,0.645721,0.645721,0.332219,0.332219,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,1.871656,0.645721,0.645721,15,15,, +26317,0,0.401899,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.61212,0.15,4,1.607596,1.607596,1.607596,1.607596,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,,,,,,,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,0.554621,0.554621,0.554621,0.554621,0.554621,0.554621,0.554621,0.554621,0.285348,0.285348,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,1.607596,0.554621,0.554621,15,15,, +26323,0,0.299089,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.409061,0.15,4,1.196358,1.196358,1.196358,1.196358,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,,,,,,,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,0.412743,0.412743,0.412743,0.412743,0.412743,0.412743,0.412743,0.412743,0.212354,0.212354,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,1.196358,0.412743,0.412743,15,15,, +10383,0,0.500863,1,1,0,2,3,,5,5,Michigan,Ave,1427301,9.688,10.189,0,10.732787,1.7,4,0.601036,0.601036,0.601036,0.601036,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.425587,1.074374,0.601036,0.601036,1.425587,1.074374,1.126402,1.109344,0.601036,0.601036,1.126402,1.109344,1.474591,1.522677,0.601036,0.601036,1.474591,1.522677,0.601036,0.601036,0.601036,0.601036,0.601036,0.601036,,,,,,,1.425587,1.074374,1.126402,1.109344,1.474591,1.522677,0.601036,0.601036,0.601036,0.601036,0.517831,0.412468,0.428076,0.422959,0.532533,0.546958,0.270466,0.270466,0.14525,0.14525,21.080301,27.971448,26.679468,27.0897,20.379755,19.736165,50,50,50,50,,,,,,,,,,,3096,3096,0.601036,0.601036,0.601036,0.601036,0.601036,0.601036,0.601036,0.601036,0.270466,0.270466,50,50,, +25492,0,1.006243,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.56234,0.15,4,4.02497,4.02497,4.02497,4.02497,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,,,,,,,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,1.388615,1.388615,1.388615,1.388615,1.388615,1.388615,1.388615,1.388615,0.714432,0.714432,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,4.02497,1.388615,1.388615,15,15,, +10118,0,0.137335,1,1,1,2,3,,4,5,Michigan,Ave,1427301,10.189,10.327,0,2.942898,3.7,5,0.206003,0.206003,0.206003,0.206003,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.503701,0.312397,0.206003,0.206003,0.503701,0.312397,0.313529,0.306553,0.206003,0.206003,0.313529,0.306553,0.433261,0.543424,0.206003,0.206003,0.433261,0.543424,0.206003,0.206003,0.206003,0.206003,0.206003,0.206003,,,,,,,0.503701,0.312397,0.313529,0.306553,0.433261,0.543424,0.206003,0.206003,0.206003,0.206003,0.175831,0.118439,0.118779,0.116686,0.154699,0.187747,0.086521,0.086521,0.046007,0.046007,16.359133,26.377098,26.281866,26.87993,19.018832,15.163336,40,40,40,40,,,,,,,,,,,4162,4162,0.206003,0.206003,0.206003,0.206003,0.206003,0.206003,0.206003,0.206003,0.086521,0.086521,40,40,, +25496,0,0.554117,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.873941,0.15,4,2.216469,2.216469,2.216469,2.216469,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,,,,,,,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,0.764682,0.764682,0.764682,0.764682,0.764682,0.764682,0.764682,0.764682,0.393423,0.393423,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,2.216469,0.764682,0.764682,15,15,, +21416,0,0.110688,1,1,0,2,5,,4,5,Austin,Rd,4604910,12.03,12.141,0,2.371894,5.8,4.5,0.245974,0.245974,0.245974,0.245974,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.248803,0.24625,0.245974,0.245974,0.248803,0.24625,0.246112,0.246084,0.245974,0.245974,0.246112,0.246084,0.246677,0.250091,0.245974,0.245974,0.246677,0.250091,0.245974,0.245974,0.245974,0.245974,0.245974,0.245974,,,,,,,0.248803,0.24625,0.246112,0.246084,0.246677,0.250091,0.245974,0.245974,0.245974,0.245974,0.094565,0.093799,0.093757,0.093749,0.093927,0.094951,0.093716,0.093716,0.049072,0.049072,26.693061,26.969735,26.984908,26.987917,26.923092,26.555494,27,27,27,27,,,,,,,,,,,2580,2580,0.245974,0.245974,0.245974,0.245974,0.245974,0.245974,0.245974,0.245974,0.093716,0.093716,27,27,, +10788,0,0.225435,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,7.902,8.127,0,4.830759,3,4,0.338153,0.338153,0.338153,0.338153,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.430963,0.403994,0.338153,0.338153,0.430963,0.403994,0.375975,0.374211,0.338153,0.338153,0.375975,0.374211,0.449345,0.446573,0.338153,0.338153,0.449345,0.446573,0.338153,0.338153,0.338153,0.338153,0.338153,0.338153,,,,,,,0.430963,0.403994,0.375975,0.374211,0.449345,0.446573,0.338153,0.338153,0.338153,0.338153,0.169867,0.161777,0.153371,0.152842,0.175382,0.17455,0.142024,0.142024,0.075521,0.075521,31.385844,33.480973,35.976162,36.145704,30.101859,30.288705,40,40,40,40,,,,,,,,,,,3096,3096,0.338153,0.338153,0.338153,0.338153,0.338153,0.338153,0.338153,0.338153,0.142024,0.142024,40,40,, +10982,0,0.519532,1,1,0,2,5,GRV,5,5,Saline Waterworks,Rd,1432706,6.506,7.026,0,11.132823,5.55,5,1.558595,1.558595,1.558595,1.558595,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.559462,1.558604,1.558595,1.558595,1.559462,1.558604,1.5586,1.558601,1.558595,1.558595,1.5586,1.558601,1.558635,1.559151,1.558595,1.558595,1.558635,1.559151,1.558595,1.558595,1.558595,1.558595,1.558595,1.558595,,,,,,,1.559462,1.558604,1.5586,1.558601,1.558635,1.559151,1.558595,1.558595,1.558595,1.558595,0.561354,0.561097,0.561096,0.561096,0.561106,0.561261,0.561094,0.561094,0.290938,0.290938,19.988878,19.999892,19.999939,19.99993,19.999491,19.992865,20,20,20,20,,,,,,,,,,,2236,2236,1.558595,1.558595,1.558595,1.558595,1.558595,1.558595,1.558595,1.558595,0.561094,0.561094,20,20,, +11095,0,0.845796,1,1,0,2,7,,5,5,Weber,Rd,1447906,5.334,6.179,0,18.124192,5.8,6,2.02991,2.02991,2.02991,2.02991,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.036107,2.029914,2.02991,2.02991,2.036107,2.029914,2.029971,2.02994,2.02991,2.02991,2.029971,2.02994,2.030011,2.032604,2.02991,2.02991,2.030011,2.032604,2.02991,2.02991,2.02991,2.02991,2.02991,2.02991,,,,,,,2.036107,2.029914,2.029971,2.02994,2.030011,2.032604,2.02991,2.02991,2.02991,2.02991,0.763075,0.761217,0.761235,0.761225,0.761247,0.762024,0.761216,0.761216,0.397524,0.397524,24.923905,24.999944,24.999242,24.99963,24.99875,24.966862,25,25,25,25,,,,,,,,,,,2064,2064,2.02991,2.02991,2.02991,2.02991,2.02991,2.02991,2.02991,2.02991,0.761216,0.761216,25,25,, +11156,0,0.438293,1,1,0,2,7,GRV,5,5,Noble,Rd,1444402,0.566,1.004,0,9.392001,5.55,5,1.31488,1.31488,1.31488,1.31488,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.323925,1.314902,1.31488,1.31488,1.323925,1.314902,1.315074,1.314987,1.31488,1.31488,1.315074,1.314987,1.315175,1.319409,1.31488,1.31488,1.315175,1.319409,1.31488,1.31488,1.31488,1.31488,1.31488,1.31488,,,,,,,1.323925,1.314902,1.315074,1.314987,1.315175,1.319409,1.31488,1.31488,1.31488,1.31488,0.47607,0.473363,0.473415,0.473389,0.473445,0.474716,0.473357,0.473357,0.245444,0.245444,19.863366,19.999665,19.997049,19.998375,19.99552,19.931349,20,20,20,20,,,,,,,,,,,2236,2236,1.31488,1.31488,1.31488,1.31488,1.31488,1.31488,1.31488,1.31488,0.473357,0.473357,20,20,, +24674,0,0.490485,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.510397,0.15,4,1.961941,1.961941,1.961941,1.961941,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,,,,,,,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,0.67687,0.67687,0.67687,0.67687,0.67687,0.67687,0.67687,0.67687,0.348244,0.348244,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,1.961941,0.67687,0.67687,15,15,, +26339,0,0.464778,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.959532,0.15,4,1.859113,1.859113,1.859113,1.859113,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,,,,,,,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,0.641394,0.641394,0.641394,0.641394,0.641394,0.641394,0.641394,0.641394,0.329992,0.329992,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,1.859113,0.641394,0.641394,15,15,, +11383,0,0.565872,1,1,0,2,7,GRV,5,5,Noble,Rd,1444402,0,0.566,0,12.125821,5.55,5,1.697615,1.697615,1.697615,1.697615,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.697627,1.697615,1.697615,1.697615,1.697627,1.697615,1.697615,1.697615,1.697615,1.697615,1.697615,1.697615,1.697615,1.69762,1.697615,1.697615,1.697615,1.69762,1.697615,1.697615,1.697615,1.697615,1.697615,1.697615,,,,,,,1.697627,1.697615,1.697615,1.697615,1.697615,1.69762,1.697615,1.697615,1.697615,1.697615,0.611145,0.611141,0.611141,0.611141,0.611141,0.611143,0.611141,0.611141,0.316888,0.316888,19.999858,20,19.999996,19.999998,19.999996,19.999941,20,20,20,20,,,,,,,,,,,2236,2236,1.697615,1.697615,1.697615,1.697615,1.697615,1.697615,1.697615,1.697615,0.611141,0.611141,20,20,, +25495,0,0.570643,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.228064,0.15,4,2.282572,2.282572,2.282572,2.282572,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,,,,,,,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,0.787487,0.787487,0.787487,0.787487,0.787487,0.787487,0.787487,0.787487,0.405157,0.405157,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,2.282572,0.787487,0.787487,15,15,, +10985,0,0.25549,1,1,0,2,5,GRV,5,5,Saline Waterworks,Rd,1432706,6.251,6.506,0,5.474779,5.55,5,0.766469,0.766469,0.766469,0.766469,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.766504,0.766469,0.766469,0.766469,0.766504,0.766469,0.766469,0.766469,0.766469,0.766469,0.766469,0.766469,0.76647,0.766491,0.766469,0.766469,0.76647,0.766491,0.766469,0.766469,0.766469,0.766469,0.766469,0.766469,,,,,,,0.766504,0.766469,0.766469,0.766469,0.76647,0.766491,0.766469,0.766469,0.766469,0.766469,0.275939,0.275929,0.275929,0.275929,0.275929,0.275935,0.275929,0.275929,0.143074,0.143074,19.999088,19.999998,19.999997,19.999997,19.999985,19.999423,20,20,20,20,,,,,,,,,,,2236,2236,0.766469,0.766469,0.766469,0.766469,0.766469,0.766469,0.766469,0.766469,0.275929,0.275929,20,20,, +24678,0,0.054727,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.172723,0.15,4,0.218908,0.218908,0.218908,0.218908,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,,,,,,,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.075523,0.075523,0.075523,0.075523,0.075523,0.075523,0.075523,0.075523,0.038856,0.038856,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.218908,0.075523,0.075523,15,15,, +26319,0,0.298407,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.394427,0.15,4,1.193626,1.193626,1.193626,1.193626,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,,,,,,,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,0.411801,0.411801,0.411801,0.411801,0.411801,0.411801,0.411801,0.411801,0.211869,0.211869,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,1.193626,0.411801,0.411801,15,15,, +10794,0,0.500179,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,7.402,7.902,0,10.718124,3,4,0.750269,0.750269,0.750269,0.750269,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.989767,0.926001,0.750269,0.750269,0.989767,0.926001,0.851531,0.846249,0.750269,0.750269,0.851531,0.846249,1.045818,1.037374,0.750269,0.750269,1.045818,1.037374,0.750269,0.750269,0.750269,0.750269,0.750269,0.750269,,,,,,,0.989767,0.926001,0.851531,0.846249,1.045818,1.037374,0.750269,0.750269,0.750269,0.750269,0.386962,0.367833,0.345491,0.343907,0.403778,0.401244,0.315113,0.315113,0.16756,0.16756,30.321026,32.408976,35.2433,35.46324,28.695966,28.929531,40,40,40,40,,,,,,,,,,,3096,3096,0.750269,0.750269,0.750269,0.750269,0.750269,0.750269,0.750269,0.750269,0.315113,0.315113,40,40,, +26318,0,0.341223,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.311924,0.15,4,1.364892,1.364892,1.364892,1.364892,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,,,,,,,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,0.470888,0.470888,0.470888,0.470888,0.470888,0.470888,0.470888,0.470888,0.242268,0.242268,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,1.364892,0.470888,0.470888,15,15,, +10787,0,0.523416,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,8.127,8.65,0,11.216048,3,4,0.785123,0.785123,0.785123,0.785123,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.44037,0.998195,0.785123,0.785123,1.44037,0.998195,0.955623,0.936622,0.785123,0.785123,0.955623,0.936622,1.2202,1.423063,0.785123,0.785123,1.2202,1.423063,0.785123,0.785123,0.785123,0.785123,0.785123,0.785123,,,,,,,1.44037,0.998195,0.955623,0.936622,1.2202,1.423063,0.785123,0.785123,0.785123,0.785123,0.526326,0.393673,0.380902,0.375201,0.460275,0.521134,0.329752,0.329752,0.175344,0.175344,21.803387,31.461717,32.863296,33.530008,25.737532,22.068548,40,40,40,40,,,,,,,,,,,3096,3096,0.785123,0.785123,0.785123,0.785123,0.785123,0.785123,0.785123,0.785123,0.329752,0.329752,40,40,, +10823,0,0.337838,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.365,5.703,0,7.239387,3,4,0.506757,0.506757,0.506757,0.506757,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.512199,0.506839,0.506757,0.506757,0.512199,0.506839,0.506805,0.506782,0.506757,0.506757,0.506805,0.506782,0.507043,0.51,0.506757,0.506757,0.507043,0.51,0.506757,0.506757,0.506757,0.506757,0.506757,0.506757,,,,,,,0.512199,0.506839,0.506805,0.506782,0.507043,0.51,0.506757,0.506757,0.506757,0.506757,0.214471,0.212862,0.212852,0.212845,0.212924,0.213811,0.212838,0.212838,0.113176,0.113176,39.575016,39.993554,39.996192,39.998059,39.97746,39.745692,40,40,40,40,,,,,,,,,,,3096,3096,0.506757,0.506757,0.506757,0.506757,0.506757,0.506757,0.506757,0.506757,0.212838,0.212838,40,40,, +10827,0,1.280934,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,4.085,5.365,0,27.44858,3.7,5,2.561867,2.561867,2.561867,2.561867,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.582489,2.561976,2.561867,2.561867,2.582489,2.561976,2.561924,2.561892,2.561867,2.561867,2.561924,2.561892,2.562386,2.572659,2.561867,2.561867,2.562386,2.572659,2.561867,2.561867,2.561867,2.561867,2.561867,2.561867,,,,,,,2.582489,2.561976,2.561924,2.561892,2.562386,2.572659,2.561867,2.561867,2.561867,2.561867,1.005315,0.999161,0.999145,0.999136,0.999284,1.002366,0.999128,0.999128,0.525183,0.525183,29.760449,29.998732,29.999342,29.999717,29.993934,29.874153,30,30,30,30,,,,,,,,,,,2580,2580,2.561867,2.561867,2.561867,2.561867,2.561867,2.561867,2.561867,2.561867,0.999128,0.999128,30,30,, +21468,0,0.758459,1,1,0,2,4,,5,5,Bemis,Rd,4604906,0,0.758,0,16.252695,3,4,1.137689,1.137689,1.137689,1.137689,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.154662,1.156614,1.137689,1.137689,1.154662,1.156614,1.13851,1.138711,1.137689,1.137689,1.13851,1.138711,1.172935,1.159752,1.137689,1.137689,1.172935,1.159752,1.137689,1.137689,1.137689,1.137689,1.137689,1.137689,,,,,,,1.154662,1.156614,1.13851,1.138711,1.172935,1.159752,1.137689,1.137689,1.137689,1.137689,0.482921,0.483507,0.478076,0.478136,0.488403,0.484448,0.477829,0.477829,0.254084,0.254084,39.411989,39.345493,39.971149,39.964076,38.79801,39.239045,40,40,40,40,,,,,,,,,,,3096,3096,1.137689,1.137689,1.137689,1.137689,1.137689,1.137689,1.137689,1.137689,0.477829,0.477829,40,40,, +10115,0,0.151026,2,2,1,2,3,,4,5,Michigan,Ave,1427301,11.123,11.274,0,3.236269,3.7,5,0.226539,0.226539,0.226539,0.226539,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.258461,0.228841,0.226539,0.226539,0.258461,0.228841,0.232045,0.231091,0.226539,0.226539,0.232045,0.231091,0.232526,0.254296,0.226539,0.226539,0.232526,0.254296,0.226539,0.226539,0.226539,0.226539,0.226539,0.226539,,,,,,,0.258461,0.228841,0.232045,0.231091,0.232526,0.254296,0.226539,0.226539,0.226539,0.226539,0.104723,0.095837,0.096798,0.096512,0.096943,0.103473,0.095146,0.095146,0.050594,0.050594,35.059698,39.597552,39.050862,39.212071,38.970029,35.63388,40,40,40,40,,,,,,,,,,,7946,7946,0.226539,0.226539,0.226539,0.226539,0.226539,0.226539,0.226539,0.226539,0.095146,0.095146,40,40,, +10793,0,0.313173,1,1,0,2,5,,4,5,Clark,St,1439406,0,0.313,0,6.710854,5.8,4.5,0.69594,0.69594,0.69594,0.69594,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.702701,0.707383,0.69594,0.69594,0.702701,0.707383,0.696283,0.696153,0.69594,0.69594,0.696283,0.696153,0.743184,0.712985,0.69594,0.69594,0.743184,0.712985,0.69594,0.69594,0.69594,0.69594,0.69594,0.69594,,,,,,,0.702701,0.707383,0.696283,0.696153,0.743184,0.712985,0.69594,0.69594,0.69594,0.69594,0.267181,0.268586,0.265256,0.265217,0.279326,0.270267,0.265153,0.265153,0.13884,0.13884,26.740248,26.563243,26.986706,26.991763,25.28362,26.35455,27,27,27,27,,,,,,,,,,,2580,2580,0.69594,0.69594,0.69594,0.69594,0.69594,0.69594,0.69594,0.69594,0.265153,0.265153,27,27,, +10816,0,0.283861,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.991,6.275,0,6.082745,3,4,0.425792,0.425792,0.425792,0.425792,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.506794,0.438397,0.425792,0.425792,0.506794,0.438397,0.428886,0.428051,0.425792,0.425792,0.428886,0.428051,0.465883,0.550139,0.425792,0.425792,0.465883,0.550139,0.425792,0.425792,0.425792,0.425792,0.425792,0.425792,,,,,,,0.506794,0.438397,0.428886,0.428051,0.465883,0.550139,0.425792,0.425792,0.425792,0.425792,0.203133,0.182614,0.179761,0.17951,0.19086,0.216137,0.178833,0.178833,0.095094,0.095094,33.606755,38.849878,39.711432,39.788936,36.557831,30.958856,40,40,40,40,,,,,,,,,,,3096,3096,0.425792,0.425792,0.425792,0.425792,0.425792,0.425792,0.425792,0.425792,0.178833,0.178833,40,40,, +10833,0,0.448778,1,1,0,2,5,,5,5,Old Creek,Dr,1439007,0.263,0.712,0,9.616675,3.7,5,0.897556,0.897556,0.897556,0.897556,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.899302,0.897619,0.897556,0.897556,0.899302,0.897619,0.89772,0.897659,0.897556,0.897556,0.89772,0.897659,0.898133,0.899501,0.897556,0.897556,0.898133,0.899501,0.897556,0.897556,0.897556,0.897556,0.897556,0.897556,,,,,,,0.899302,0.897619,0.89772,0.897659,0.898133,0.899501,0.897556,0.897556,0.897556,0.897556,0.350571,0.350066,0.350096,0.350078,0.35022,0.35063,0.350047,0.350047,0.183999,0.183999,29.941772,29.99792,29.994518,29.996567,29.98074,29.935145,30,30,30,30,,,,,,,,,,,2580,2580,0.897556,0.897556,0.897556,0.897556,0.897556,0.897556,0.897556,0.897556,0.350047,0.350047,30,30,, +10942,0,0.081277,1,1,0,2,5,,5,5,Monroe,St,1432708,7.094,7.176,0,1.741646,3.7,5,0.162554,0.162554,0.162554,0.162554,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.182746,0.162832,0.162554,0.162554,0.182746,0.162832,0.163209,0.163032,0.162554,0.162554,0.163209,0.163032,0.16397,0.19204,0.162554,0.162554,0.16397,0.19204,0.162554,0.162554,0.162554,0.162554,0.162554,0.162554,,,,,,,0.182746,0.162832,0.163209,0.163032,0.16397,0.19204,0.162554,0.162554,0.162554,0.162554,0.069454,0.063479,0.063593,0.06354,0.063821,0.072242,0.063396,0.063396,0.033324,0.033324,26.685192,29.948716,29.879545,29.911896,29.740888,25.393732,30,30,30,30,,,,,,,,,,,2580,2580,0.162554,0.162554,0.162554,0.162554,0.162554,0.162554,0.162554,0.162554,0.063396,0.063396,30,30,, +30107,0,0.353216,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.568905,0.15,4,1.412862,1.412862,1.412862,1.412862,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,,,,,,,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,0.487437,0.487437,0.487437,0.487437,0.487437,0.487437,0.487437,0.487437,0.250783,0.250783,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,1.412862,0.487437,0.487437,15,15,, +30108,0,0.404166,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.660705,0.15,4,1.616665,1.616665,1.616665,1.616665,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,,,,,,,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,0.557749,0.557749,0.557749,0.557749,0.557749,0.557749,0.557749,0.557749,0.286958,0.286958,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,1.616665,0.557749,0.557749,15,15,, +26311,0,0.259761,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,5.566309,0.15,4,1.039044,1.039044,1.039044,1.039044,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,,,,,,,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,0.35847,0.35847,0.35847,0.35847,0.35847,0.35847,0.35847,0.35847,0.18443,0.18443,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,1.039044,0.35847,0.35847,15,15,, +10381,0,0.224359,2,2,1,2,3,,4,5,Michigan,Ave,1427301,10.899,11.123,0,4.807701,3.7,5,0.336539,0.336539,0.336539,0.336539,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.496864,0.3711,0.336539,0.336539,0.496864,0.3711,0.370187,0.367526,0.336539,0.336539,0.370187,0.367526,0.421819,0.54,0.336539,0.336539,0.421819,0.54,0.336539,0.336539,0.336539,0.336539,0.336539,0.336539,,,,,,,0.496864,0.3711,0.370187,0.367526,0.421819,0.54,0.336539,0.336539,0.336539,0.336539,0.189444,0.151715,0.151441,0.150642,0.16693,0.202385,0.141346,0.141346,0.07516,0.07516,27.093074,36.274728,36.364225,36.627519,31.913108,24.928798,40,40,40,40,,,,,,,,,,,7946,7946,0.336539,0.336539,0.336539,0.336539,0.336539,0.336539,0.336539,0.336539,0.141346,0.141346,40,40,, +10812,0,0.349904,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,6.275,6.625,0,7.49794,4.5,4.5,0.55248,0.55248,0.55248,0.55248,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.668386,0.60008,0.55248,0.55248,0.668386,0.60008,0.578913,0.57824,0.55248,0.55248,0.578913,0.57824,0.617567,0.689255,0.55248,0.55248,0.617567,0.689255,0.55248,0.55248,0.55248,0.55248,0.55248,0.55248,,,,,,,0.668386,0.60008,0.578913,0.57824,0.617567,0.689255,0.55248,0.55248,0.55248,0.55248,0.263499,0.243007,0.236657,0.236455,0.248253,0.269759,0.228727,0.228727,0.121361,0.121361,31.410329,34.985716,36.264934,36.307121,33.995089,30.459323,38,38,38,38,,,,,,,,,,,3096,3096,0.55248,0.55248,0.55248,0.55248,0.55248,0.55248,0.55248,0.55248,0.228727,0.228727,38,38,, +21785,0,0.209604,1,1,0,2,5,,4,5,Bennett,St,4603052,0.303,0.513,0,4.491505,5.8,4.5,0.465786,0.465786,0.465786,0.465786,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.480147,0.46622,0.465786,0.465786,0.480147,0.46622,0.466609,0.466438,0.465786,0.465786,0.466609,0.466438,0.467587,0.480088,0.465786,0.465786,0.467587,0.480088,0.465786,0.465786,0.465786,0.465786,0.465786,0.465786,,,,,,,0.480147,0.46622,0.466609,0.466438,0.467587,0.480088,0.465786,0.465786,0.465786,0.465786,0.181773,0.177595,0.177711,0.17766,0.178005,0.181755,0.177464,0.177464,0.092924,0.092924,26.192426,26.974833,26.952366,26.962248,26.895961,26.195668,27,27,27,27,,,,,,,,,,,2580,2580,0.465786,0.465786,0.465786,0.465786,0.465786,0.465786,0.465786,0.465786,0.177464,0.177464,27,27,, +10382,0,0.096005,2,2,1,2,3,,4,5,Michigan,Ave,1427301,10.803,10.899,0,2.05724,3.7,5,0.144007,0.144007,0.144007,0.144007,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.161898,0.151539,0.144007,0.144007,0.161898,0.151539,0.150318,0.150099,0.144007,0.144007,0.150318,0.150099,0.160536,0.166187,0.144007,0.144007,0.160536,0.166187,0.144007,0.144007,0.144007,0.144007,0.144007,0.144007,,,,,,,0.161898,0.151539,0.150318,0.150099,0.160536,0.166187,0.144007,0.144007,0.144007,0.144007,0.06585,0.062743,0.062376,0.062311,0.065442,0.067137,0.060483,0.060483,0.032162,0.032162,35.579532,38.011785,38.320636,38.376375,35.881454,34.66129,40,40,40,40,,,,,,,,,,,7946,7946,0.144007,0.144007,0.144007,0.144007,0.144007,0.144007,0.144007,0.144007,0.060483,0.060483,40,40,, +10305,0,0.059116,1,1,0,2,5,,4,5,Harris,St,1427502,0.611,0.67,0,1.266782,5.8,4.5,0.13137,0.13137,0.13137,0.13137,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.13542,0.131493,0.13137,0.13137,0.13542,0.131493,0.131602,0.131554,0.13137,0.13137,0.131602,0.131554,0.131878,0.135404,0.13137,0.13137,0.131878,0.135404,0.13137,0.13137,0.13137,0.13137,0.13137,0.13137,,,,,,,0.13542,0.131493,0.131602,0.131554,0.131878,0.135404,0.13137,0.13137,0.13137,0.13137,0.051267,0.050089,0.050122,0.050107,0.050204,0.051262,0.050052,0.050052,0.026208,0.026208,26.192426,26.974833,26.952366,26.962248,26.895961,26.195668,27,27,27,27,,,,,,,,,,,2580,2580,0.13137,0.13137,0.13137,0.13137,0.13137,0.13137,0.13137,0.13137,0.050052,0.050052,27,27,, +9545,0,0.220582,1,1,0,2,4,,5,5,Willis,Rd,1427410,0,0.221,0,4.726753,3,4,0.330873,0.330873,0.330873,0.330873,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.336179,0.337038,0.330873,0.330873,0.336179,0.337038,0.331321,0.331344,0.330873,0.330873,0.331321,0.331344,0.346378,0.343208,0.330873,0.330873,0.346378,0.343208,0.330873,0.330873,0.330873,0.330873,0.330873,0.330873,,,,,,,0.336179,0.337038,0.331321,0.331344,0.346378,0.343208,0.330873,0.330873,0.330873,0.330873,0.140558,0.140816,0.139101,0.139108,0.143618,0.142667,0.138967,0.138967,0.073895,0.073895,39.368619,39.268258,39.945871,39.94306,38.209418,38.562369,40,40,40,40,,,,,,,,,,,3096,3096,0.330873,0.330873,0.330873,0.330873,0.330873,0.330873,0.330873,0.330873,0.138967,0.138967,40,40,, +10817,0,0.256451,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.735,5.991,0,5.495381,3,4,0.384677,0.384677,0.384677,0.384677,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.432252,0.389128,0.384677,0.384677,0.432252,0.389128,0.385814,0.385513,0.384677,0.384677,0.385814,0.385513,0.401294,0.450997,0.384677,0.384677,0.401294,0.450997,0.384677,0.384677,0.384677,0.384677,0.384677,0.384677,,,,,,,0.432252,0.389128,0.385814,0.385513,0.401294,0.450997,0.384677,0.384677,0.384677,0.384677,0.175837,0.1629,0.161905,0.161815,0.166549,0.18146,0.161564,0.161564,0.085911,0.085911,35.597411,39.542399,39.882126,39.913232,38.34363,34.117899,40,40,40,40,,,,,,,,,,,3096,3096,0.384677,0.384677,0.384677,0.384677,0.384677,0.384677,0.384677,0.384677,0.161564,0.161564,40,40,, +11308,0,0.263516,1,1,0,2,5,,5,5,Old Creek,Dr,1439007,0,0.263,0,5.646773,3.7,5,0.527032,0.527032,0.527032,0.527032,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.52706,0.527065,0.527032,0.527032,0.52706,0.527065,0.527034,0.527033,0.527032,0.527032,0.527034,0.527033,0.527078,0.527089,0.527032,0.527032,0.527078,0.527089,0.527032,0.527032,0.527032,0.527032,0.527032,0.527032,,,,,,,0.52706,0.527065,0.527034,0.527033,0.527078,0.527089,0.527032,0.527032,0.527032,0.527032,0.205551,0.205552,0.205543,0.205543,0.205556,0.20556,0.205543,0.205543,0.108042,0.108042,29.998426,29.998123,29.999901,29.999966,29.997378,29.996778,30,30,30,30,,,,,,,,,,,2580,2580,0.527032,0.527032,0.527032,0.527032,0.527032,0.527032,0.527032,0.527032,0.205543,0.205543,30,30,, +26325,0,0.223221,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,4.783303,0.15,4,0.892883,0.892883,0.892883,0.892883,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,,,,,,,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.308045,0.308045,0.308045,0.308045,0.308045,0.308045,0.308045,0.308045,0.158487,0.158487,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.892883,0.308045,0.308045,15,15,, +10821,0,0.031997,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.703,5.735,0,0.685651,3,4,0.047996,0.047996,0.047996,0.047996,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.057712,0.049928,0.047996,0.047996,0.057712,0.049928,0.048294,0.048225,0.047996,0.047996,0.048294,0.048225,0.052937,0.060968,0.047996,0.047996,0.052937,0.060968,0.047996,0.047996,0.047996,0.047996,0.047996,0.047996,,,,,,,0.057712,0.049928,0.048294,0.048225,0.052937,0.060968,0.047996,0.047996,0.047996,0.047996,0.023073,0.020738,0.020248,0.020227,0.021641,0.02405,0.020158,0.020158,0.010719,0.010719,33.265635,38.45206,39.75275,39.809356,36.266314,31.488838,40,40,40,40,,,,,,,,,,,3096,3096,0.047996,0.047996,0.047996,0.047996,0.047996,0.047996,0.047996,0.047996,0.020158,0.020158,40,40,, +26324,0,0.054547,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.168873,0.15,4,0.21819,0.21819,0.21819,0.21819,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,,,,,,,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.075275,0.075275,0.075275,0.075275,0.075275,0.075275,0.075275,0.075275,0.038729,0.038729,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.21819,0.075275,0.075275,15,15,, +9602,0,0.286431,2,2,0,2,3,,4,5,Michigan,Ave,1427301,11.274,11.56,0,6.137797,3.7,5,0.429646,0.429646,0.429646,0.429646,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.506936,0.43522,0.429646,0.429646,0.506936,0.43522,0.442973,0.440664,0.429646,0.429646,0.442973,0.440664,0.44414,0.49684,0.429646,0.429646,0.44414,0.49684,0.429646,0.429646,0.429646,0.429646,0.429646,0.429646,,,,,,,0.506936,0.43522,0.442973,0.440664,0.44414,0.49684,0.429646,0.429646,0.429646,0.429646,0.203638,0.182124,0.18445,0.183757,0.184799,0.20061,0.180451,0.180451,0.095954,0.095954,33.901358,39.487642,38.796523,38.999824,38.694625,34.590258,40,40,40,40,,,,,,,,,,,7568,7568,0.429646,0.429646,0.429646,0.429646,0.429646,0.429646,0.429646,0.429646,0.180451,0.180451,40,40,, +10380,0,0.18863,2,2,1,2,3,,4,5,Michigan,Ave,1427301,11.56,11.749,0,4.042068,3.7,5,0.282945,0.282945,0.282945,0.282945,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.289626,0.283372,0.282945,0.282945,0.289626,0.283372,0.284602,0.284209,0.282945,0.282945,0.284602,0.284209,0.284298,0.289833,0.282945,0.282945,0.284298,0.289833,0.282945,0.282945,0.282945,0.282945,0.282945,0.282945,,,,,,,0.289626,0.283372,0.284602,0.284209,0.284298,0.289833,0.282945,0.282945,0.282945,0.282945,0.120841,0.118965,0.119334,0.119216,0.119243,0.120903,0.118837,0.118837,0.063191,0.063191,39.077309,39.939737,39.767072,39.822136,39.80959,39.049331,40,40,40,40,,,,,,,,,,,7946,7946,0.282945,0.282945,0.282945,0.282945,0.282945,0.282945,0.282945,0.282945,0.118837,0.118837,40,40,, +11548,0,0.077878,1,1,0,2,4,,5,5,Old Creek,Dr,1439007,0.712,0.79,0,1.668807,3,4,0.116817,0.116817,0.116817,0.116817,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.126878,0.120254,0.116817,0.116817,0.126878,0.120254,0.117585,0.117367,0.116817,0.116817,0.117585,0.117367,0.123583,0.131009,0.116817,0.116817,0.123583,0.131009,0.116817,0.116817,0.116817,0.116817,0.116817,0.116817,,,,,,,0.126878,0.120254,0.117585,0.117367,0.123583,0.131009,0.116817,0.116817,0.116817,0.116817,0.052081,0.050094,0.049293,0.049228,0.051093,0.053321,0.049063,0.049063,0.026089,0.026089,36.827963,38.856471,39.738742,39.812351,37.809997,35.666762,40,40,40,40,,,,,,,,,,,3096,3096,0.116817,0.116817,0.116817,0.116817,0.116817,0.116817,0.116817,0.116817,0.049063,0.049063,40,40,, +21440,0,0.15613,1,1,0,2,4,,4,5,Maple,St,4600080,0,0.156,0,3.345649,4.5,4.5,0.246522,0.246522,0.246522,0.246522,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.457225,0.275129,0.246522,0.246522,0.457225,0.275129,0.260828,0.258451,0.246522,0.246522,0.260828,0.258451,0.333458,0.508533,0.246522,0.246522,0.333458,0.508533,0.246522,0.246522,0.246522,0.246522,0.246522,0.246522,,,,,,,0.457225,0.275129,0.260828,0.258451,0.333458,0.508533,0.246522,0.246522,0.246522,0.246522,0.165271,0.110642,0.106352,0.105639,0.128141,0.180663,0.10206,0.10206,0.054153,0.054153,20.488408,34.048873,35.915659,36.246009,28.092961,18.421246,38,38,38,38,,,,,,,,,,,3096,3096,0.246522,0.246522,0.246522,0.246522,0.246522,0.246522,0.246522,0.246522,0.10206,0.10206,38,38,, +21682,0,0.111404,1,1,0,2,4,,5,5,Bemis,Rd,4604905,0,0.111,0,2.387222,3,4,0.167106,0.167106,0.167106,0.167106,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.169599,0.169885,0.167106,0.167106,0.169599,0.169885,0.167226,0.167256,0.167106,0.167106,0.167226,0.167256,0.172283,0.170346,0.167106,0.167106,0.172283,0.170346,0.167106,0.167106,0.167106,0.167106,0.167106,0.167106,,,,,,,0.169599,0.169885,0.167226,0.167256,0.172283,0.170346,0.167106,0.167106,0.167106,0.167106,0.070932,0.071018,0.070221,0.070229,0.071737,0.071157,0.070184,0.070184,0.03732,0.03732,39.411989,39.345493,39.971149,39.964076,38.79801,39.239045,40,40,40,40,,,,,,,,,,,3096,3096,0.167106,0.167106,0.167106,0.167106,0.167106,0.167106,0.167106,0.167106,0.070184,0.070184,40,40,, +22130,0,0.135034,1,1,0,2,5,,5,5,Industrial,Dr,4603881,0,0.135,0,2.89359,3.7,5,0.270068,0.270068,0.270068,0.270068,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.273352,0.270073,0.270068,0.270068,0.273352,0.270073,0.27017,0.270203,0.270068,0.270068,0.27017,0.270203,0.27031,0.27266,0.270068,0.270068,0.27031,0.27266,0.270068,0.270068,0.270068,0.270068,0.270068,0.270068,,,,,,,0.273352,0.270073,0.27017,0.270203,0.27031,0.27266,0.270068,0.270068,0.270068,0.270068,0.106312,0.105328,0.105357,0.105367,0.105399,0.106104,0.105327,0.105327,0.055364,0.055364,29.63958,29.99947,29.988712,29.985046,29.973218,29.714816,30,30,30,30,,,,,,,,,,,2580,2580,0.270068,0.270068,0.270068,0.270068,0.270068,0.270068,0.270068,0.270068,0.105327,0.105327,30,30,, +10922,0,0.236611,1,1,0,2,4,,4,5,Textile,Rd,1432903,5.281,5.517,0,5.07024,4.5,4.5,0.373597,0.373597,0.373597,0.373597,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.389908,0.374855,0.373597,0.373597,0.389908,0.374855,0.375593,0.375562,0.373597,0.373597,0.375593,0.375562,0.378104,0.394953,0.373597,0.373597,0.378104,0.394953,0.373597,0.373597,0.373597,0.373597,0.373597,0.373597,,,,,,,0.389908,0.374855,0.375593,0.375562,0.378104,0.394953,0.373597,0.373597,0.373597,0.373597,0.159562,0.155046,0.155268,0.155259,0.156021,0.161076,0.154669,0.154669,0.082067,0.082067,36.410334,37.872457,37.797981,37.801121,37.547,35.945213,38,38,38,38,,,,,,,,,,,3096,3096,0.373597,0.373597,0.373597,0.373597,0.373597,0.373597,0.373597,0.373597,0.154669,0.154669,38,38,, +19241,0,0.650801,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0.809,1.46,0,13.945737,5.8,4.5,1.446225,1.446225,1.446225,1.446225,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.558718,1.44678,1.446225,1.446225,1.558718,1.44678,1.458912,1.454628,1.446225,1.446225,1.458912,1.454628,1.455321,1.573557,1.446225,1.446225,1.455321,1.573557,1.446225,1.446225,1.446225,1.446225,1.446225,1.446225,,,,,,,1.558718,1.44678,1.458912,1.454628,1.455321,1.573557,1.446225,1.446225,1.446225,1.446225,0.584759,0.551178,0.554818,0.553532,0.553741,0.589211,0.551012,0.551012,0.288522,0.288522,25.051405,26.989637,26.765201,26.844027,26.831231,24.815155,27,27,27,27,,,,,,,,,,,2580,2580,1.446225,1.446225,1.446225,1.446225,1.446225,1.446225,1.446225,1.446225,0.551012,0.551012,27,27,, +21205,0,0.616851,1,1,0,2,4,,4,5,Maple,St,4600080,1.238,1.854,0,13.21823,4.5,4.5,0.973975,0.973975,0.973975,0.973975,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.94582,1.404192,0.973975,0.973975,1.94582,1.404192,1.327352,1.302848,0.973975,0.973975,1.327352,1.302848,1.809633,1.959893,0.973975,0.973975,1.809633,1.959893,0.973975,0.973975,0.973975,0.973975,0.973975,0.973975,,,,,,,1.94582,1.404192,1.327352,1.302848,1.809633,1.959893,0.973975,0.973975,0.973975,0.973975,0.694779,0.532291,0.509239,0.501887,0.653923,0.699001,0.403226,0.403226,0.21395,0.21395,19.0208,26.357544,27.883371,28.407803,20.452235,18.884213,38,38,38,38,,,,,,,,,,,3096,3096,0.973975,0.973975,0.973975,0.973975,0.973975,0.973975,0.973975,0.973975,0.403226,0.403226,38,38,, +25493,0,0.568494,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.182025,0.15,4,2.273978,2.273978,2.273978,2.273978,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,,,,,,,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,0.784522,0.784522,0.784522,0.784522,0.784522,0.784522,0.784522,0.784522,0.403631,0.403631,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,2.273978,0.784522,0.784522,15,15,, +26326,0,0.531619,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.391827,0.15,4,2.126474,2.126474,2.126474,2.126474,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,,,,,,,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,0.733634,0.733634,0.733634,0.733634,0.733634,0.733634,0.733634,0.733634,0.377449,0.377449,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,2.126474,0.733634,0.733634,15,15,, +19243,0,0.263071,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0.176,0.439,0,5.637231,5.8,4.5,0.584602,0.584602,0.584602,0.584602,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.584804,0.584602,0.584602,0.584602,0.584804,0.584602,0.584608,0.584611,0.584602,0.584602,0.584608,0.584611,0.584604,0.584768,0.584602,0.584602,0.584604,0.584768,0.584602,0.584602,0.584602,0.584602,0.584602,0.584602,,,,,,,0.584804,0.584602,0.584608,0.584611,0.584604,0.584768,0.584602,0.584602,0.584602,0.584602,0.222794,0.222733,0.222735,0.222736,0.222734,0.222783,0.222733,0.222733,0.116628,0.116628,26.990643,26.999984,26.999726,26.999566,26.999898,26.992317,27,27,27,27,,,,,,,,,,,2580,2580,0.584602,0.584602,0.584602,0.584602,0.584602,0.584602,0.584602,0.584602,0.222733,0.222733,27,27,, +21439,0,0.314433,1,1,1,2,4,,4,5,Maple,St,4600080,0.607,0.921,0,6.737858,4.5,4.5,0.496474,0.496474,0.496474,0.496474,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.580018,0.51517,0.496474,0.496474,0.580018,0.51517,0.522811,0.515539,0.496474,0.496474,0.522811,0.515539,0.545288,0.580888,0.496474,0.496474,0.545288,0.580888,0.496474,0.496474,0.496474,0.496474,0.496474,0.496474,,,,,,,0.580018,0.51517,0.522811,0.515539,0.545288,0.580888,0.496474,0.496474,0.496474,0.496474,0.230604,0.211149,0.213441,0.21126,0.220184,0.230865,0.20554,0.20554,0.109059,0.109059,32.52656,36.620922,36.085684,36.594735,34.598242,32.477845,38,38,38,38,,,,,,,,,,,3406,3406,0.496474,0.496474,0.496474,0.496474,0.496474,0.496474,0.496474,0.496474,0.20554,0.20554,38,38,, +24709,0,0.528231,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.319227,0.15,4,2.112922,2.112922,2.112922,2.112922,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,,,,,,,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,0.728958,0.728958,0.728958,0.728958,0.728958,0.728958,0.728958,0.728958,0.375044,0.375044,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,2.112922,0.728958,0.728958,15,15,, +26314,0,0.346076,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.415904,0.15,4,1.384302,1.384302,1.384302,1.384302,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,,,,,,,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,0.477584,0.477584,0.477584,0.477584,0.477584,0.477584,0.477584,0.477584,0.245714,0.245714,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,1.384302,0.477584,0.477584,15,15,, +26320,0,0.450426,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.651995,0.15,4,1.801706,1.801706,1.801706,1.801706,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,,,,,,,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,0.621588,0.621588,0.621588,0.621588,0.621588,0.621588,0.621588,0.621588,0.319803,0.319803,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,1.801706,0.621588,0.621588,15,15,, +24698,0,0.386381,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.279592,0.15,4,1.545524,1.545524,1.545524,1.545524,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,,,,,,,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,0.533206,0.533206,0.533206,0.533206,0.533206,0.533206,0.533206,0.533206,0.27433,0.27433,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,1.545524,0.533206,0.533206,15,15,, +10797,0,0.141541,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,7.037,7.179,0,3.033019,4.5,4.5,0.223486,0.223486,0.223486,0.223486,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.249861,0.233093,0.223486,0.223486,0.249861,0.233093,0.235539,0.235657,0.223486,0.223486,0.235539,0.235657,0.240098,0.254628,0.223486,0.223486,0.240098,0.254628,0.223486,0.223486,0.223486,0.223486,0.223486,0.223486,,,,,,,0.249861,0.233093,0.235539,0.235657,0.240098,0.254628,0.223486,0.223486,0.223486,0.223486,0.100436,0.095405,0.096139,0.096174,0.097507,0.101866,0.092523,0.092523,0.049092,0.049092,33.988665,36.433729,36.055375,36.037404,35.370847,33.352384,38,38,38,38,,,,,,,,,,,3096,3096,0.223486,0.223486,0.223486,0.223486,0.223486,0.223486,0.223486,0.223486,0.092523,0.092523,38,38,, +26322,0,0.382471,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.195814,0.15,4,1.529885,1.529885,1.529885,1.529885,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,,,,,,,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,0.52781,0.52781,0.52781,0.52781,0.52781,0.52781,0.52781,0.52781,0.271555,0.271555,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,1.529885,0.52781,0.52781,15,15,, +19242,0,0.370013,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0.439,0.809,0,7.928845,5.8,4.5,0.822251,0.822251,0.822251,0.822251,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.822536,0.822251,0.822251,0.822251,0.822536,0.822251,0.822259,0.822264,0.822251,0.822251,0.822259,0.822264,0.822254,0.822485,0.822251,0.822251,0.822254,0.822485,0.822251,0.822251,0.822251,0.822251,0.822251,0.822251,,,,,,,0.822536,0.822251,0.822259,0.822264,0.822254,0.822485,0.822251,0.822251,0.822251,0.822251,0.313363,0.313278,0.31328,0.313281,0.313278,0.313348,0.313277,0.313277,0.164039,0.164039,26.990643,26.999984,26.999726,26.999566,26.999898,26.992317,27,27,27,27,,,,,,,,,,,2580,2580,0.822251,0.822251,0.822251,0.822251,0.822251,0.822251,0.822251,0.822251,0.313277,0.313277,27,27,, +21203,0,0.316998,1,1,0,2,4,,4,5,Maple,St,4600080,0.921,1.238,0,6.792812,4.5,4.5,0.500523,0.500523,0.500523,0.500523,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.699379,0.697465,0.500523,0.500523,0.699379,0.697465,0.621053,0.614477,0.500523,0.500523,0.621053,0.614477,0.836002,0.775665,0.500523,0.500523,0.836002,0.775665,0.500523,0.500523,0.500523,0.500523,0.500523,0.500523,,,,,,,0.699379,0.697465,0.621053,0.614477,0.836002,0.775665,0.500523,0.500523,0.500523,0.500523,0.266873,0.266299,0.243375,0.241403,0.30786,0.289759,0.207217,0.207217,0.109948,0.109948,27.195371,27.27001,30.625215,30.952956,22.750988,24.520721,38,38,38,38,,,,,,,,,,,3096,3096,0.500523,0.500523,0.500523,0.500523,0.500523,0.500523,0.500523,0.500523,0.207217,0.207217,38,38,, +10923,0,0.745755,1,1,0,2,4,,4,5,Textile,Rd,1432903,4.535,5.281,0,15.980474,4.5,4.5,1.177509,1.177509,1.177509,1.177509,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.178679,1.17754,1.177509,1.177509,1.178679,1.17754,1.177524,1.177523,1.177509,1.177509,1.177524,1.177523,1.177609,1.178912,1.177509,1.177509,1.177609,1.178912,1.177509,1.177509,1.177509,1.177509,1.177509,1.177509,,,,,,,1.178679,1.17754,1.177524,1.177523,1.177609,1.178912,1.177509,1.177509,1.177509,1.177509,0.48784,0.487498,0.487493,0.487493,0.487519,0.48791,0.487489,0.487489,0.258659,0.258659,37.962269,37.998999,37.999492,37.999543,37.996774,37.954769,38,38,38,38,,,,,,,,,,,3096,3096,1.177509,1.177509,1.177509,1.177509,1.177509,1.177509,1.177509,1.177509,0.487489,0.487489,38,38,, +21966,0,0.180582,1,1,0,2,4,,4,5,Maple,St,4600080,1.854,2.035,0,3.869609,4.5,4.5,0.285129,0.285129,0.285129,0.285129,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.590505,0.409557,0.285129,0.285129,0.590505,0.409557,0.392139,0.384223,0.285129,0.285129,0.392139,0.384223,0.530554,0.590591,0.285129,0.285129,0.530554,0.590591,0.285129,0.285129,0.285129,0.285129,0.285129,0.285129,,,,,,,0.590505,0.409557,0.392139,0.384223,0.530554,0.590591,0.285129,0.285129,0.285129,0.285129,0.209656,0.155372,0.150146,0.147772,0.191671,0.209682,0.118043,0.118043,0.062633,0.062633,18.348547,26.455168,27.630271,28.199543,20.42186,18.34587,38,38,38,38,,,,,,,,,,,3096,3096,0.285129,0.285129,0.285129,0.285129,0.285129,0.285129,0.285129,0.285129,0.118043,0.118043,38,38,, +26328,0,0.307617,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.591798,0.15,4,1.230469,1.230469,1.230469,1.230469,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,,,,,,,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,0.424512,0.424512,0.424512,0.424512,0.424512,0.424512,0.424512,0.424512,0.218408,0.218408,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,1.230469,0.424512,0.424512,15,15,, +10108,0,0.448552,2,2,1,2,3,,4,5,Michigan,Ave,1427301,12.101,12.55,0,9.611838,3.7,5,0.672829,0.672829,0.672829,0.672829,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.683515,0.673529,0.672829,0.672829,0.683515,0.673529,0.675051,0.674563,0.672829,0.672829,0.675051,0.674563,0.67436,0.68169,0.672829,0.672829,0.67436,0.68169,0.672829,0.672829,0.672829,0.672829,0.672829,0.672829,,,,,,,0.683515,0.673529,0.675051,0.674563,0.67436,0.68169,0.672829,0.672829,0.672829,0.672829,0.285794,0.282798,0.283255,0.283108,0.283047,0.285247,0.282588,0.282588,0.150265,0.150265,39.374605,39.95842,39.868337,39.89714,39.909193,39.480019,40,40,40,40,,,,,,,,,,,7946,7946,0.672829,0.672829,0.672829,0.672829,0.672829,0.672829,0.672829,0.672829,0.282588,0.282588,40,40,, +19517,0,0.590554,1,1,0,2,5,,4,5,Industrial,Dr,1885501,0.439,1.029,0,12.654722,5.8,4.5,1.312342,1.312342,1.312342,1.312342,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.312342,1.312371,1.312342,1.312342,1.312342,1.312371,1.312343,1.312342,1.312342,1.312342,1.312343,1.312342,1.312411,1.312354,1.312342,1.312342,1.312411,1.312354,1.312342,1.312342,1.312342,1.312342,1.312342,1.312342,,,,,,,1.312342,1.312371,1.312343,1.312342,1.312411,1.312354,1.312342,1.312342,1.312342,1.312342,0.500002,0.500011,0.500002,0.500002,0.500023,0.500006,0.500002,0.500002,0.261812,0.261812,26.999985,26.999384,26.999976,26.999982,26.998572,26.999751,27,27,27,27,,,,,,,,,,,2580,2580,1.312342,1.312342,1.312342,1.312342,1.312342,1.312342,1.312342,1.312342,0.500002,0.500002,27,27,, +19518,0,0.439244,1,1,0,2,5,,4,5,Industrial,Dr,1885501,0,0.439,0,9.41237,5.8,4.5,0.976098,0.976098,0.976098,0.976098,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.664363,0.9788,0.976098,0.976098,1.664363,0.9788,1.068832,1.046449,0.976098,0.976098,1.068832,1.046449,1.012605,1.719137,0.976098,0.976098,1.012605,1.719137,0.976098,0.976098,0.976098,0.976098,0.976098,0.976098,,,,,,,1.664363,0.9788,1.068832,1.046449,1.012605,1.719137,0.976098,0.976098,0.976098,0.976098,0.578373,0.372704,0.399714,0.392999,0.382845,0.594805,0.371893,0.371893,0.194731,0.194731,15.834663,26.925468,24.657407,25.184822,26.026571,15.330153,27,27,27,27,,,,,,,,,,,2580,2580,0.976098,0.976098,0.976098,0.976098,0.976098,0.976098,0.976098,0.976098,0.371893,0.371893,27,27,, +26235,0,0.251445,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,5.388108,0.15,4,1.00578,1.00578,1.00578,1.00578,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,,,,,,,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,0.346994,0.346994,0.346994,0.346994,0.346994,0.346994,0.346994,0.346994,0.178526,0.178526,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,1.00578,0.346994,0.346994,15,15,, +26321,0,0.383164,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.210662,0.15,4,1.532657,1.532657,1.532657,1.532657,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.532657,1.532658,1.532657,1.532657,1.532657,1.532658,1.532657,1.532657,1.532657,1.532657,1.532657,1.532657,1.532658,1.532657,1.532657,1.532657,1.532658,1.532657,1.532657,1.532657,1.532657,1.532657,1.532657,1.532657,,,,,,,1.532657,1.532658,1.532657,1.532657,1.532658,1.532657,1.532657,1.532657,1.532657,1.532657,0.528767,0.528767,0.528767,0.528767,0.528767,0.528767,0.528767,0.528767,0.272047,0.272047,15,14.999992,14.999999,14.999999,14.999994,15,15,15,15,15,,,,,,,,,,,34400,34400,1.532657,1.532657,1.532657,1.532657,1.532657,1.532657,1.532657,1.532657,0.528767,0.528767,15,15,, +26312,0,0.283113,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.066712,0.15,4,1.132453,1.132453,1.132453,1.132453,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,,,,,,,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,0.390696,0.390696,0.390696,0.390696,0.390696,0.390696,0.390696,0.390696,0.20101,0.20101,15,14.999999,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,1.132453,0.390696,0.390696,15,15,, +10918,0,0.315715,1,1,0,2,4,,4,5,Textile,Rd,1432903,5.698,6.014,0,6.765317,4.5,4.5,0.498497,0.498497,0.498497,0.498497,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.558302,0.50324,0.498497,0.498497,0.558302,0.50324,0.504308,0.504022,0.498497,0.498497,0.504308,0.504022,0.513121,0.565228,0.498497,0.498497,0.513121,0.565228,0.498497,0.498497,0.498497,0.498497,0.498497,0.498497,,,,,,,0.558302,0.50324,0.504308,0.504022,0.513121,0.565228,0.498497,0.498497,0.498497,0.498497,0.224319,0.207801,0.208121,0.208035,0.210765,0.226397,0.206378,0.206378,0.109503,0.109503,33.929439,37.641876,37.562162,37.583473,36.917022,33.513699,38,38,38,38,,,,,,,,,,,3096,3096,0.498497,0.498497,0.498497,0.498497,0.498497,0.498497,0.498497,0.498497,0.206378,0.206378,38,38,, +10920,0,0.180797,1,1,0,2,4,,4,5,Textile,Rd,1432903,5.517,5.698,0,3.874227,4.5,4.5,0.285469,0.285469,0.285469,0.285469,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.302433,0.286746,0.285469,0.285469,0.302433,0.286746,0.287429,0.287361,0.285469,0.285469,0.287429,0.287361,0.290056,0.306839,0.285469,0.285469,0.290056,0.306839,0.285469,0.285469,0.285469,0.285469,0.285469,0.285469,,,,,,,0.302433,0.286746,0.287429,0.287361,0.290056,0.306839,0.285469,0.285469,0.285469,0.285469,0.123274,0.118567,0.118772,0.118752,0.11956,0.124595,0.118184,0.118184,0.062708,0.062708,35.86852,37.830762,37.740885,37.749814,37.399081,35.353492,38,38,38,38,,,,,,,,,,,3096,3096,0.285469,0.285469,0.285469,0.285469,0.285469,0.285469,0.285469,0.285469,0.118184,0.118184,38,38,, +8667,0,2.210682,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,1.449,3.659,0,47.371766,3.7,5,4.421365,4.421365,4.421365,4.421365,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.422541,4.425019,4.421365,4.421365,4.422541,4.425019,4.421365,4.421365,4.421365,4.421365,4.421365,4.421365,4.424699,4.421365,4.421365,4.421365,4.424699,4.421365,4.421365,4.421365,4.421365,4.421365,4.421365,4.421365,,,,,,,4.422541,4.425019,4.421365,4.421365,4.424699,4.421365,4.421365,4.421365,4.421365,4.421365,1.724685,1.725429,1.724332,1.724332,1.725332,1.724332,1.724332,1.724332,0.90638,0.90638,29.992024,29.975225,29.999998,30,29.977396,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,4.421365,4.421365,4.421365,4.421365,4.421365,4.421365,4.421365,4.421365,1.724332,1.724332,30,30,, +8919,0,1.510618,1,1,0,2,6,,5,6,Cone,Rd,1223807,3.027,4.537,0,32.370377,5.8,6,3.021235,3.021235,3.021235,3.021235,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.045544,3.021253,3.021235,3.021235,3.045544,3.021253,3.021529,3.021348,3.021235,3.021235,3.021529,3.021348,3.021552,3.033729,3.021235,3.021235,3.021552,3.033729,3.021235,3.021235,3.021235,3.021235,3.021235,3.021235,,,,,,,3.045544,3.021253,3.021529,3.021348,3.021552,3.033729,3.021235,3.021235,3.021235,3.021235,1.185574,1.178287,1.17837,1.178315,1.178377,1.18203,1.178282,1.178282,0.619353,0.619353,29.760544,29.99982,29.997079,29.998883,29.996852,29.876452,30,30,30,30,,,,,,,,,,,2236,2236,3.021235,3.021235,3.021235,3.021235,3.021235,3.021235,3.021235,3.021235,1.178282,1.178282,30,30,, +8933,0,3.038088,1,1,0,2,7,,5,6,Milwaukee,Rd,1223805,2.008,5.045,0,65.101887,5.8,6,7.291411,7.291411,7.291411,7.291411,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,,,,,,,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,2.734279,2.734279,2.734279,2.734279,2.734279,2.734279,2.734279,2.734279,1.427901,1.427901,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,7.291411,2.734279,2.734279,25,25,, +8991,0,1.82209,1,1,0,2,4,,5,6,Tecumseh,St,1223803,3.127,4.949,0,39.044779,3,4,2.733135,2.733135,2.733135,2.733135,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.78834,2.791186,2.733135,2.733135,2.78834,2.791186,2.754398,2.757533,2.733135,2.733135,2.754398,2.757533,2.778551,2.799993,2.733135,2.733135,2.778551,2.799993,2.733135,2.733135,2.733135,2.733135,2.733135,2.733135,,,,,,,2.78834,2.791186,2.754398,2.757533,2.778551,2.799993,2.733135,2.733135,2.733135,2.733135,1.164478,1.165332,1.154296,1.155236,1.161541,1.167974,1.147916,1.147916,0.6104,0.6104,39.208055,39.168078,39.691206,39.646084,39.346183,39.044879,40,40,40,40,,,,,,,,,,,3096,3096,2.733135,2.733135,2.733135,2.733135,2.733135,2.733135,2.733135,2.733135,1.147916,1.147916,40,40,, +9124,1,4.734787,2,0,0,1,2,,4,6,N US 23,,1223505,16.845,21.578,0,,0.8,7.5,4.058389,,4.058389,,70,,44000,,9988,,22000,,14194,,15136,,15118,,4.15239,,4.058389,,4.15239,,4.060815,,4.058389,,4.060815,,4.063404,,4.058389,,4.063404,,4.058389,,4.058389,,4.058389,,,,,,,,4.15239,,4.060815,,4.063404,,4.058389,,4.058389,,2.097979,,2.070506,,2.071283,,2.069779,,1.129585,,68.41536,,69.958182,,69.913605,,70,,70,,,,,,,,,,,,15136,,4.058389,,4.058389,,4.058389,,4.058389,,2.069779,,70,,, +9148,-1,4.613267,0,2,0,1,2,,4,6,S US 23,,1223504,16.921,21.533,0,,0.8,7.5,,3.954229,,3.954229,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.957036,,3.954229,,3.957036,,3.955925,,3.954229,,3.955925,,4.020132,,3.954229,,4.020132,,3.954229,,3.954229,,3.954229,,,,,,,,3.957036,,3.955925,,4.020132,,3.954229,,3.954229,,2.017499,,2.017166,,2.036428,,2.016657,,1.100594,,69.950346,,69.969989,,68.852485,,70,,70,,,,,,,,,,,,15136,,3.954229,,3.954229,,3.954229,,3.954229,,2.016657,,70,, +9218,0,1.261836,1,1,0,2,6,,5,6,Brewer,Rd,1233507,3.4,4.661,0,27.039336,5.8,6,2.523671,2.523671,2.523671,2.523671,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,,,,,,,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,0.984232,0.984232,0.984232,0.984232,0.984232,0.984232,0.984232,0.984232,0.517353,0.517353,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,2.523671,0.984232,0.984232,30,30,, +20420,0,2.005751,1,1,0,2,5,,5,6,Dennison,Rd,4301492,5.009,7.014,0,42.980381,3.7,5,4.011502,4.011502,4.011502,4.011502,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,,,,,,,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,1.564486,1.564486,1.564486,1.564486,1.564486,1.564486,1.564486,1.564486,0.822358,0.822358,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,4.011502,1.564486,1.564486,30,30,, +8803,0,1.026159,1,1,0,2,4,,5,6,Tecumseh,St,1223803,2.101,3.127,0,21.989112,3,4,1.539238,1.539238,1.539238,1.539238,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.552161,1.563791,1.539238,1.539238,1.552161,1.563791,1.546359,1.547599,1.539238,1.539238,1.546359,1.547599,1.55607,1.556291,1.539238,1.539238,1.55607,1.556291,1.539238,1.539238,1.539238,1.539238,1.539238,1.539238,,,,,,,1.552161,1.563791,1.546359,1.547599,1.55607,1.556291,1.539238,1.539238,1.539238,1.539238,0.650357,0.653846,0.648616,0.648988,0.65153,0.651596,0.64648,0.64648,0.343763,0.343763,39.666965,39.371969,39.815806,39.783893,39.567319,39.561706,40,40,40,40,,,,,,,,,,,3096,3096,1.539238,1.539238,1.539238,1.539238,1.539238,1.539238,1.539238,1.539238,0.64648,0.64648,40,40,, +9220,0,1.985496,1,1,0,2,6,,5,6,Brewer,Rd,1233507,1.056,3.041,0,42.546334,5.8,6,3.970991,3.970991,3.970991,3.970991,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,,,,,,,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,1.548687,1.548687,1.548687,1.548687,1.548687,1.548687,1.548687,1.548687,0.814053,0.814053,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,3.970991,1.548687,1.548687,30,30,, +20638,0,0.803115,1,1,0,2,5,,5,6,Dennison,Rd,4301492,4.206,5.009,0,17.209615,3.7,5,1.606231,1.606231,1.606231,1.606231,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,,,,,,,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,0.62643,0.62643,0.62643,0.62643,0.62643,0.62643,0.62643,0.62643,0.329277,0.329277,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,1.606231,0.62643,0.62643,30,30,, +30661,0,0.603889,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.940487,0.15,4,2.415558,2.415558,2.415558,2.415558,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,,,,,,,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,0.833367,0.833367,0.833367,0.833367,0.833367,0.833367,0.833367,0.833367,0.428761,0.428761,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,2.415558,0.833367,0.833367,15,15,, +30662,0,1.167003,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,25.007198,0.15,4,4.66801,4.66801,4.66801,4.66801,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,,,,,,,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,1.610464,1.610464,1.610464,1.610464,1.610464,1.610464,1.610464,1.610464,0.828572,0.828572,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,4.66801,1.610464,1.610464,15,15,, +31015,0,1.706648,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.571039,0.15,4,6.826594,6.826594,6.826594,6.826594,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,,,,,,,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,2.355175,2.355175,2.355175,2.355175,2.355175,2.355175,2.355175,2.355175,1.21172,1.21172,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,6.826594,2.355175,2.355175,15,15,, +8995,0,0.683133,1,1,0,2,4,,5,6,Tecumseh,St,1223803,1.419,2.101,0,14.638573,3,4,1.0247,1.0247,1.0247,1.0247,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.033701,1.041574,1.0247,1.0247,1.033701,1.041574,1.02964,1.03053,1.0247,1.0247,1.02964,1.03053,1.036445,1.036895,1.0247,1.0247,1.036445,1.036895,1.0247,1.0247,1.0247,1.0247,1.0247,1.0247,,,,,,,1.033701,1.041574,1.02964,1.03053,1.036445,1.036895,1.0247,1.0247,1.0247,1.0247,0.433074,0.435436,0.431856,0.432123,0.433897,0.434033,0.430374,0.430374,0.22885,0.22885,39.651714,39.351982,39.808089,39.773711,39.546741,39.529548,40,40,40,40,,,,,,,,,,,3096,3096,1.0247,1.0247,1.0247,1.0247,1.0247,1.0247,1.0247,1.0247,0.430374,0.430374,40,40,, +31017,0,1.699716,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.422483,0.15,4,6.798863,6.798863,6.798863,6.798863,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,,,,,,,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,2.345608,2.345608,2.345608,2.345608,2.345608,2.345608,2.345608,2.345608,1.206798,1.206798,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,6.798863,2.345608,2.345608,15,15,, +31016,0,0.444139,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,9.517264,0.15,4,1.776556,1.776556,1.776556,1.776556,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,,,,,,,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,0.612912,0.612912,0.612912,0.612912,0.612912,0.612912,0.612912,0.612912,0.315339,0.315339,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,1.776556,0.612912,0.612912,15,15,, +9219,0,0.359226,1,1,0,2,6,,5,6,Brewer,Rd,1233507,3.041,3.4,0,7.697697,5.8,6,0.718452,0.718452,0.718452,0.718452,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,,,,,,,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.280196,0.280196,0.280196,0.280196,0.280196,0.280196,0.280196,0.280196,0.147283,0.147283,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.718452,0.280196,0.280196,30,30,, +10405,0,0.624739,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,3.698,4.323,0,13.387272,3.7,5,1.249479,1.249479,1.249479,1.249479,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,,,,,,,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,0.487297,0.487297,0.487297,0.487297,0.487297,0.487297,0.487297,0.487297,0.256143,0.256143,29.999988,29.999999,29.999999,30,29.999999,29.999982,30,30,30,30,,,,,,,,,,,2580,2580,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,1.249479,0.487297,0.487297,30,30,, +10412,0,0.798803,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,2.9,3.698,0,17.117212,3.7,5,1.597606,1.597606,1.597606,1.597606,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,,,,,,,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,0.623067,0.623067,0.623067,0.623067,0.623067,0.623067,0.623067,0.623067,0.327509,0.327509,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,1.597606,0.623067,0.623067,30,30,, +8736,0,1.030986,1,1,0,2,6,,5,6,Cone,Rd,1223807,1.997,3.027,0,22.092548,5.8,6,2.061971,2.061971,2.061971,2.061971,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,,,,,,,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,0.804169,0.804169,0.804169,0.804169,0.804169,0.804169,0.804169,0.804169,0.422704,0.422704,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,2.061971,0.804169,0.804169,30,30,, +30663,0,1.727656,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,37.02119,0.15,4,6.910622,6.910622,6.910622,6.910622,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,,,,,,,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,2.384165,2.384165,2.384165,2.384165,2.384165,2.384165,2.384165,2.384165,1.226635,1.226635,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,6.910622,2.384165,2.384165,15,15,, +19884,0,1.004908,1,1,0,2,5,,5,6,Dennison,Rd,4301492,7.515,8.52,0,21.533737,3.7,5,2.009815,2.009815,2.009815,2.009815,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,,,,,,,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,0.783828,0.783828,0.783828,0.783828,0.783828,0.783828,0.783828,0.783828,0.412012,0.412012,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,2.009815,0.783828,0.783828,30,30,, +20233,0,0.501303,1,1,0,2,5,,5,6,Dennison,Rd,4301492,7.014,7.515,0,10.742211,3.7,5,1.002606,1.002606,1.002606,1.002606,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,,,,,,,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,0.391016,0.391016,0.391016,0.391016,0.391016,0.391016,0.391016,0.391016,0.205534,0.205534,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,1.002606,0.391016,0.391016,30,30,, +30666,0,0.41102,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.807562,0.15,4,1.644078,1.644078,1.644078,1.644078,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,,,,,,,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,0.567207,0.567207,0.567207,0.567207,0.567207,0.567207,0.567207,0.567207,0.291824,0.291824,14.999999,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,1.644078,0.567207,0.567207,15,15,, +8793,0,0.187217,1,1,1,2,4,,4,6,Monroe,St,1223803,5.994,6.181,0,4.011797,4.5,4.5,0.295606,0.295606,0.295606,0.295606,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.317436,0.440616,0.295606,0.295606,0.317436,0.440616,0.309693,0.309184,0.295606,0.295606,0.309693,0.309184,0.467981,0.350865,0.295606,0.295606,0.467981,0.350865,0.295606,0.295606,0.295606,0.295606,0.295606,0.295606,,,,,,,0.317436,0.440616,0.309693,0.309184,0.467981,0.350865,0.295606,0.295606,0.295606,0.295606,0.12893,0.165884,0.126607,0.126454,0.174093,0.138958,0.122381,0.122381,0.064935,0.064935,35.386756,25.493945,36.271451,36.331222,24.003202,32.015292,38,38,38,38,,,,,,,,,,,3406,3406,0.295606,0.295606,0.295606,0.295606,0.295606,0.295606,0.295606,0.295606,0.122381,0.122381,38,38,, +8814,0,0.407867,1,1,0,2,5,,5,6,Stowell,Rd,1224210,2.831,3.238,0,8.739999,3.7,5,0.815733,0.815733,0.815733,0.815733,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.815734,0.815733,0.815733,0.815733,0.815734,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,,,,,,,0.815734,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.318136,0.318136,0.318136,0.318136,0.318136,0.318136,0.318136,0.318136,0.167225,0.167225,29.999988,29.999998,30,30,29.999993,29.999992,30,30,30,30,,,,,,,,,,,2580,2580,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.815733,0.318136,0.318136,30,30,, +8817,0,0.412171,1,1,0,2,5,,4,6,Main,St,1224210,0.658,1.07,0,8.832238,5.8,4.5,0.915936,0.915936,0.915936,0.915936,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.915945,0.916017,0.915936,0.915936,0.915945,0.916017,0.915948,0.915956,0.915936,0.915936,0.915948,0.915956,0.916041,0.915985,0.915936,0.915936,0.916041,0.915985,0.915936,0.915936,0.915936,0.915936,0.915936,0.915936,,,,,,,0.915945,0.916017,0.915948,0.915956,0.916041,0.915985,0.915936,0.915936,0.915936,0.915936,0.348974,0.348996,0.348975,0.348977,0.349003,0.348986,0.348972,0.348972,0.182729,0.182729,26.999729,26.997605,26.999649,26.999418,26.996893,26.998556,27,27,27,27,,,,,,,,,,,2580,2580,0.915936,0.915936,0.915936,0.915936,0.915936,0.915936,0.915936,0.915936,0.348972,0.348972,27,27,, +8840,0,0.416469,1,1,1,2,5,,4,6,Ann Arbor,Rd,1224204,1.033,1.449,0,8.92434,5.8,4.5,0.925487,0.925487,0.925487,0.925487,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.92614,0.928963,0.925487,0.925487,0.92614,0.928963,0.925487,0.925487,0.925487,0.925487,0.925487,0.925487,0.928814,0.925487,0.925487,0.925487,0.928814,0.925487,0.925487,0.925487,0.925487,0.925487,0.925487,0.925487,,,,,,,0.92614,0.928963,0.925487,0.925487,0.928814,0.925487,0.925487,0.925487,0.925487,0.925487,0.352806,0.353653,0.352611,0.352611,0.353609,0.352611,0.352611,0.352611,0.184635,0.184635,26.98097,26.898976,26.999989,27,26.903293,26.999991,27,27,27,27,,,,,,,,,,,2838,2838,0.925487,0.925487,0.925487,0.925487,0.925487,0.925487,0.925487,0.925487,0.352611,0.352611,27,27,, +31347,0,2.25773,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,48.379919,0.15,4,9.030918,9.030918,9.030918,9.030918,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,,,,,,,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,3.115667,3.115667,3.115667,3.115667,3.115667,3.115667,3.115667,3.115667,1.602988,1.602988,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,9.030918,3.115667,3.115667,15,15,, +31348,0,0.169649,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,3.635346,0.15,4,0.678598,0.678598,0.678598,0.678598,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,,,,,,,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.234116,0.234116,0.234116,0.234116,0.234116,0.234116,0.234116,0.234116,0.120451,0.120451,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.678598,0.234116,0.234116,15,15,, +34011,0,0.37714,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,8.081567,0.15,4,1.508559,1.508559,1.508559,1.508559,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,,,,,,,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,0.520453,0.520453,0.520453,0.520453,0.520453,0.520453,0.520453,0.520453,0.267769,0.267769,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,1.508559,0.520453,0.520453,15,15,, +8501,1,0.364051,2,0,0,1,2,,4,6,N US 23,,1223505,16.481,16.845,0,,0.8,7.5,0.312044,,0.312044,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.313219,,0.312044,,0.313219,,0.312081,,0.312044,,0.312081,,0.312113,,0.312044,,0.312113,,0.312044,,0.312044,,0.312044,,,,,,,,0.313219,,0.312081,,0.312113,,0.312044,,0.312044,,0.159495,,0.159153,,0.159163,,0.159142,,0.086852,,69.737396,,69.991656,,69.98448,,70,,70,,,,,,,,,,,,15136,,0.312044,,0.312044,,0.312044,,0.312044,,0.159142,,70,,, +8522,-1,0.3442,0,2,0,1,2,,4,6,S US 23,,1223504,16.577,16.921,0,,0.8,7.5,,0.295029,,0.295029,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.295065,,0.295029,,0.295065,,0.29505,,0.295029,,0.29505,,0.295662,,0.295029,,0.295662,,0.295029,,0.295029,,0.295029,,,,,,,,0.295065,,0.29505,,0.295662,,0.295029,,0.295029,,0.150476,,0.150471,,0.150655,,0.150465,,0.082116,,69.99125,,69.994943,,69.850078,,70,,70,,,,,,,,,,,,15136,,0.295029,,0.295029,,0.295029,,0.295029,,0.150465,,70,, +8685,1,0.179537,1,0,0,1,2,RON,4,6,Tecumseh/N US 23,RAMP,1224009,0,0.18,0,,1.09,4,0.239383,,0.239383,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.245637,,0.239383,,0.245637,,0.239964,,0.239383,,0.239964,,0.240457,,0.239383,,0.240457,,0.239383,,0.239383,,0.239383,,,,,,,,0.245637,,0.239964,,0.240457,,0.239383,,0.239383,,0.106008,,0.104306,,0.104454,,0.104131,,0.055656,,43.854204,,44.890949,,44.798942,,45,,45,,,,,,,,,,,,5160,,0.239383,,0.239383,,0.239383,,0.239383,,0.104131,,45,,, +8841,0,0.662589,1,1,1,2,5,,4,6,Ann Arbor,Rd,1224204,0,0.662,0,14.198333,5.8,4.5,1.47242,1.47242,1.47242,1.47242,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.861273,1.482776,1.47242,1.47242,1.861273,1.482776,1.531675,1.522408,1.47242,1.47242,1.531675,1.522408,1.626008,1.867619,1.47242,1.47242,1.626008,1.867619,1.47242,1.47242,1.47242,1.47242,1.47242,1.47242,,,,,,,1.861273,1.482776,1.531675,1.522408,1.626008,1.867619,1.47242,1.47242,1.47242,1.47242,0.677648,0.564099,0.578768,0.575988,0.607069,0.679552,0.560992,0.560992,0.293748,0.293748,21.359213,26.811417,25.955463,26.113455,24.449647,21.286635,27,27,27,27,,,,,,,,,,,2838,2838,1.47242,1.47242,1.47242,1.47242,1.47242,1.47242,1.47242,1.47242,0.560992,0.560992,27,27,, +8936,1,0.186695,1,0,0,1,2,ROF,4,6,S US 23/Tecumseh,RAMP,1223804,0,0.187,0,,2.24,5,0.280042,,0.280042,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.280517,,0.280042,,0.280517,,0.280422,,0.280042,,0.280422,,0.288105,,0.280042,,0.288105,,0.280042,,0.280042,,0.280042,,,,,,,,0.280517,,0.280422,,0.288105,,0.280042,,0.280042,,0.11776,,0.117732,,0.120037,,0.117618,,0.062543,,39.932328,,39.94587,,38.88057,,40,,40,,,,,,,,,,,,5160,,0.280042,,0.280042,,0.280042,,0.280042,,0.117618,,40,,, +8990,0,0.105442,2,2,1,2,4,,4,6,Tecumseh,St,1223803,5.164,5.269,0,2.259462,4.5,4.5,0.166487,0.166487,0.166487,0.166487,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.169849,0.168639,0.166487,0.166487,0.169849,0.168639,0.169124,0.168663,0.166487,0.166487,0.169124,0.168663,0.189371,0.172713,0.166487,0.166487,0.189371,0.172713,0.166487,0.166487,0.166487,0.166487,0.166487,0.166487,,,,,,,0.169849,0.168639,0.169124,0.168663,0.189371,0.172713,0.166487,0.166487,0.166487,0.166487,0.069934,0.069571,0.069717,0.069579,0.075791,0.070793,0.068925,0.068925,0.036572,0.036572,37.247742,37.515013,37.407332,37.509587,33.407899,36.630189,38,38,38,38,,,,,,,,,,,6502,6502,0.166487,0.166487,0.166487,0.166487,0.166487,0.166487,0.166487,0.166487,0.068925,0.068925,38,38,, +9007,1,0.171494,1,0,0,1,2,RON,4,6,Tecumseh/S US 23,RAMP,1223802,0,0.171,0,,1.09,4,0.228659,,0.228659,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.228786,,0.228659,,0.228786,,0.229031,,0.228659,,0.229031,,0.230049,,0.228659,,0.230049,,0.228659,,0.228659,,0.228659,,,,,,,,0.228786,,0.229031,,0.230049,,0.228659,,0.228659,,0.099505,,0.099578,,0.099884,,0.099467,,0.053163,,44.974998,,44.926919,,44.728189,,45,,45,,,,,,,,,,,,5160,,0.228659,,0.228659,,0.228659,,0.228659,,0.099467,,45,,, +9217,0,0.803082,1,1,0,2,6,,5,6,Brewer,Rd,1233507,4.661,5.464,0,17.208898,5.8,6,1.606164,1.606164,1.606164,1.606164,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,,,,,,,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,0.626404,0.626404,0.626404,0.626404,0.626404,0.626404,0.626404,0.626404,0.329264,0.329264,29.999999,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,1.606164,0.626404,0.626404,30,30,, +31374,0,0.140362,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.007752,0.15,4,0.561447,0.561447,0.561447,0.561447,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.561447,0.561448,0.561447,0.561447,0.561447,0.561448,0.561447,0.561447,0.561447,0.561447,0.561447,0.561447,0.561448,0.561447,0.561447,0.561447,0.561448,0.561447,0.561447,0.561447,0.561447,0.561447,0.561447,0.561447,,,,,,,0.561447,0.561448,0.561447,0.561447,0.561448,0.561447,0.561447,0.561447,0.561447,0.561447,0.193699,0.1937,0.193699,0.193699,0.1937,0.193699,0.193699,0.193699,0.099657,0.099657,14.999998,14.99997,14.999998,14.999998,14.999971,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,0.561447,0.561447,0.561447,0.561447,0.561447,0.561447,0.561447,0.561447,0.193699,0.193699,15,15,, +31383,0,0.564874,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.104449,0.15,4,2.259497,2.259497,2.259497,2.259497,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,,,,,,,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,0.779527,0.779527,0.779527,0.779527,0.779527,0.779527,0.779527,0.779527,0.401061,0.401061,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,2.259497,0.779527,0.779527,15,15,, +8796,0,0.215424,2,2,1,2,4,,5,6,Tecumseh,St,1223803,4.949,5.164,0,4.616227,3,4,0.323136,0.323136,0.323136,0.323136,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.328555,0.332598,0.323136,0.323136,0.328555,0.332598,0.327424,0.328309,0.323136,0.323136,0.327424,0.328309,0.338638,0.338579,0.323136,0.323136,0.338638,0.338579,0.323136,0.323136,0.323136,0.323136,0.323136,0.323136,,,,,,,0.328555,0.332598,0.327424,0.328309,0.338638,0.338579,0.323136,0.323136,0.323136,0.323136,0.137343,0.138556,0.137003,0.137269,0.140368,0.14035,0.135717,0.135717,0.072167,0.072167,39.340296,38.862049,39.476157,39.369706,38.16892,38.17558,40,40,40,40,,,,,,,,,,,6502,6502,0.323136,0.323136,0.323136,0.323136,0.323136,0.323136,0.323136,0.323136,0.135717,0.135717,40,40,, +31376,0,0.070292,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,1.506247,0.15,4,0.281166,0.281166,0.281166,0.281166,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,,,,,,,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.097002,0.097002,0.097002,0.097002,0.097002,0.097002,0.097002,0.097002,0.049907,0.049907,14.999999,14.999997,14.999998,14.999998,14.99999,14.999992,15,15,15,15,,,,,,,,,,,34400,34400,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.281166,0.097002,0.097002,15,15,, +8661,0,0.555246,1,1,0,2,6,,4,6,Riley,St,1224210,0.103,0.658,0,11.898118,6.55,4.5,1.233879,1.233879,1.233879,1.233879,27,27,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.233883,1.233879,1.233879,1.233879,1.233883,1.233879,1.233879,1.233879,1.233879,1.233879,1.233879,1.233879,1.233879,1.233881,1.233879,1.233879,1.233879,1.233881,1.233879,1.233879,1.233879,1.233879,1.233879,1.233879,,,,,,,1.233883,1.233879,1.233879,1.233879,1.233879,1.233881,1.233879,1.233879,1.233879,1.233879,0.470109,0.470108,0.470108,0.470108,0.470108,0.470109,0.470108,0.470108,0.246159,0.246159,26.99991,26.999998,26.999996,26.999995,26.999989,26.99995,27,27,27,27,,,,,,,,,,,2236,2236,1.233879,1.233879,1.233879,1.233879,1.233879,1.233879,1.233879,1.233879,0.470108,0.470108,27,27,, +8989,0,0.484703,1,1,1,2,4,,4,6,Tecumseh,St,1223803,5.326,5.81,0,10.3865,4.5,4.5,0.765321,0.765321,0.765321,0.765321,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.79556,1.391984,0.765321,0.765321,0.79556,1.391984,0.792129,0.838471,0.765321,0.765321,0.792129,0.838471,1.308105,0.879789,0.765321,0.765321,1.308105,0.879789,0.765321,0.765321,0.765321,0.765321,0.765321,0.765321,,,,,,,0.79556,1.391984,0.792129,0.838471,1.308105,0.879789,0.765321,0.765321,0.765321,0.765321,0.325915,0.504842,0.324885,0.338788,0.479678,0.351183,0.316843,0.316843,0.168116,0.168116,36.555623,20.892622,36.713979,34.684791,22.232311,33.055888,38,38,38,38,,,,,,,,,,,3406,3406,0.765321,0.765321,0.765321,0.765321,0.765321,0.765321,0.765321,0.765321,0.316843,0.316843,38,38,, +8795,0,0.056247,2,2,1,2,4,,4,6,Tecumseh,St,1223803,5.269,5.326,0,1.205298,4.5,4.5,0.088811,0.088811,0.088811,0.088811,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.090845,0.093019,0.088811,0.088811,0.090845,0.093019,0.089728,0.090537,0.088811,0.088811,0.089728,0.090537,0.096337,0.092537,0.088811,0.088811,0.096337,0.092537,0.088811,0.088811,0.088811,0.088811,0.088811,0.088811,,,,,,,0.090845,0.093019,0.089728,0.090537,0.096337,0.092537,0.088811,0.088811,0.088811,0.088811,0.037378,0.03803,0.037043,0.037286,0.039026,0.037886,0.036768,0.036768,0.019509,0.019509,37.149276,36.281129,37.611882,37.275585,35.031445,36.469991,38,38,38,38,,,,,,,,,,,6502,6502,0.088811,0.088811,0.088811,0.088811,0.088811,0.088811,0.088811,0.088811,0.036768,0.036768,38,38,, +8852,1,0.198255,1,0,0,1,2,ROF,4,6,N US 23/Tecumseh,RAMP,1224008,0,0.198,0,,2.24,5,0.297383,,0.297383,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.298735,,0.297383,,0.298735,,0.297439,,0.297383,,0.297439,,0.29752,,0.297383,,0.29752,,0.297383,,0.297383,,0.297383,,,,,,,,0.298735,,0.297439,,0.29752,,0.297383,,0.297383,,0.125306,,0.124918,,0.124942,,0.124901,,0.066416,,39.818974,,39.992499,,39.98166,,40,,40,,,,,,,,,,,,5160,,0.297383,,0.297383,,0.297383,,0.297383,,0.124901,,40,,, +8566,0,0.329514,1,1,0,2,5,,4,6,Toledo,St,1225909,1.367,1.696,0,7.061007,5.8,4.5,0.732253,0.732253,0.732253,0.732253,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.732616,0.732307,0.732253,0.732253,0.732616,0.732307,0.732454,0.732253,0.732253,0.732253,0.732454,0.732253,0.732418,0.732534,0.732253,0.732253,0.732418,0.732534,0.732253,0.732253,0.732253,0.732253,0.732253,0.732253,,,,,,,0.732616,0.732307,0.732454,0.732253,0.732418,0.732534,0.732253,0.732253,0.732253,0.732253,0.279097,0.279005,0.279049,0.278988,0.279038,0.279073,0.278988,0.278988,0.146084,0.146084,26.9866,26.997988,26.992578,27,26.99392,26.989643,27,27,27,27,,,,,,,,,,,2580,2580,0.732253,0.732253,0.732253,0.732253,0.732253,0.732253,0.732253,0.732253,0.278988,0.278988,27,27,, +8794,0,0.071027,1,1,1,2,4,,4,6,Tecumseh,St,1223803,5.81,5.881,0,1.52201,4.5,4.5,0.112148,0.112148,0.112148,0.112148,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.116129,0.172315,0.112148,0.112148,0.116129,0.172315,0.115737,0.12207,0.112148,0.112148,0.115737,0.12207,0.178383,0.12869,0.112148,0.112148,0.178383,0.12869,0.112148,0.112148,0.112148,0.112148,0.112148,0.112148,,,,,,,0.116129,0.172315,0.115737,0.12207,0.178383,0.12869,0.112148,0.112148,0.112148,0.112148,0.047624,0.064479,0.047506,0.049406,0.0663,0.051392,0.046429,0.046429,0.024635,0.024635,36.69733,24.731564,36.821719,34.911492,23.890328,33.115435,38,38,38,38,,,,,,,,,,,3406,3406,0.112148,0.112148,0.112148,0.112148,0.112148,0.112148,0.112148,0.112148,0.046429,0.046429,38,38,, +8988,0,0.112901,1,1,1,2,4,,4,6,Tecumseh,St,1223803,5.881,5.994,0,2.419317,4.5,4.5,0.178265,0.178265,0.178265,0.178265,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.184052,0.245608,0.178265,0.178265,0.184052,0.245608,0.181967,0.188892,0.178265,0.178265,0.181967,0.188892,0.250396,0.19695,0.178265,0.178265,0.250396,0.19695,0.178265,0.178265,0.178265,0.178265,0.178265,0.178265,,,,,,,0.184052,0.245608,0.181967,0.188892,0.250396,0.19695,0.178265,0.178265,0.178265,0.178265,0.075538,0.094005,0.074912,0.07699,0.095441,0.079407,0.073802,0.073802,0.039159,0.039159,36.805391,27.58095,37.227044,35.862299,27.053517,34.394969,38,38,38,38,,,,,,,,,,,3406,3406,0.178265,0.178265,0.178265,0.178265,0.178265,0.178265,0.178265,0.178265,0.073802,0.073802,38,38,, +31381,0,1.044818,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,22.38895,0.15,4,4.179271,4.179271,4.179271,4.179271,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,,,,,,,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,1.441848,1.441848,1.441848,1.441848,1.441848,1.441848,1.441848,1.441848,0.741821,0.741821,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,4.179271,1.441848,1.441848,15,15,, +8669,0,0.370466,1,1,1,2,5,,4,6,Ann Arbor,Rd,1224204,0.662,1.033,0,7.938554,5.8,4.5,0.823257,0.823257,0.823257,0.823257,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.114006,0.830128,0.823257,0.823257,1.114006,0.830128,0.861542,0.857352,0.823257,0.823257,0.861542,0.857352,0.924026,1.105688,0.823257,0.823257,0.924026,1.105688,0.823257,0.823257,0.823257,0.823257,0.823257,0.823257,,,,,,,1.114006,0.830128,0.861542,0.857352,0.924026,1.105688,0.823257,0.823257,0.823257,0.823257,0.400886,0.315722,0.325146,0.32389,0.343892,0.39839,0.313661,0.313661,0.16424,0.16424,19.953169,26.776539,25.800195,25.926278,24.055545,20.103281,27,27,27,27,,,,,,,,,,,2838,2838,0.823257,0.823257,0.823257,0.823257,0.823257,0.823257,0.823257,0.823257,0.313661,0.313661,27,27,, +8655,0,1.761078,1,1,0,2,5,,4,6,Stowell,Rd,1224210,1.07,2.831,0,37.737386,5.8,4.5,3.913507,3.913507,3.913507,3.913507,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.913595,3.914426,3.913507,3.913507,3.913595,3.914426,3.913684,3.913765,3.913507,3.913507,3.913684,3.913765,3.914801,3.914145,3.913507,3.913507,3.914801,3.914145,3.913507,3.913507,3.913507,3.913507,3.913507,3.913507,,,,,,,3.913595,3.914426,3.913684,3.913765,3.914801,3.914145,3.913507,3.913507,3.913507,3.913507,1.491072,1.491322,1.491099,1.491123,1.491434,1.491238,1.491046,1.491046,0.780745,0.780745,26.999393,26.993661,26.998776,26.99822,26.991074,26.995596,27,27,27,27,,,,,,,,,,,2580,2580,3.913507,3.913507,3.913507,3.913507,3.913507,3.913507,3.913507,3.913507,1.491046,1.491046,27,27,, +8792,0,1.364685,1,1,0,2,4,,4,6,Custer,Rd,1223803,6.313,7.677,0,29.243249,4.5,4.5,2.154766,2.154766,2.154766,2.154766,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.205052,2.455985,2.154766,2.154766,2.205052,2.455985,2.168338,2.167681,2.154766,2.154766,2.168338,2.167681,2.554816,2.232623,2.154766,2.154766,2.554816,2.232623,2.154766,2.154766,2.154766,2.154766,2.154766,2.154766,,,,,,,2.205052,2.455985,2.168338,2.167681,2.554816,2.232623,2.154766,2.154766,2.154766,2.154766,0.907159,0.982439,0.896145,0.895947,1.012088,0.91543,0.892073,0.892073,0.47333,0.47333,37.133404,33.339418,37.762144,37.773597,32.04971,36.674841,38,38,38,38,,,,,,,,,,,3096,3096,2.154766,2.154766,2.154766,2.154766,2.154766,2.154766,2.154766,2.154766,0.892073,0.892073,38,38,, +31377,0,0.213023,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,4.564771,0.15,4,0.852091,0.852091,0.852091,0.852091,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,,,,,,,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.293971,0.293971,0.293971,0.293971,0.293971,0.293971,0.293971,0.293971,0.151246,0.151246,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.852091,0.293971,0.293971,15,15,, +8987,0,0.131596,1,1,1,2,4,,4,6,Monroe,St,1223803,6.181,6.313,0,2.819922,4.5,4.5,0.207784,0.207784,0.207784,0.207784,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.208899,0.219037,0.207784,0.207784,0.208899,0.219037,0.208147,0.208129,0.207784,0.207784,0.208147,0.208129,0.219838,0.209377,0.207784,0.207784,0.219838,0.209377,0.207784,0.207784,0.207784,0.207784,0.207784,0.207784,,,,,,,0.208899,0.219037,0.208147,0.208129,0.219838,0.209377,0.207784,0.207784,0.207784,0.207784,0.086357,0.089399,0.086131,0.086126,0.089639,0.0865,0.086022,0.086022,0.045643,0.045643,37.797153,36.047664,37.933697,37.936983,35.916299,37.71083,38,38,38,38,,,,,,,,,,,3406,3406,0.207784,0.207784,0.207784,0.207784,0.207784,0.207784,0.207784,0.207784,0.086022,0.086022,38,38,, +31378,0,0.043572,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,0.933686,0.15,4,0.174288,0.174288,0.174288,0.174288,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,,,,,,,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.060129,0.060129,0.060129,0.060129,0.060129,0.060129,0.060129,0.060129,0.030936,0.030936,14.999999,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.174288,0.060129,0.060129,15,15,, +31380,0,0.091711,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,1.965233,0.15,4,0.366843,0.366843,0.366843,0.366843,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,,,,,,,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.126561,0.126561,0.126561,0.126561,0.126561,0.126561,0.126561,0.126561,0.065115,0.065115,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.366843,0.126561,0.126561,15,15,, +8654,0,0.015592,1,1,0,2,7,,5,6,Dixon,Rd,1224309,3.624,3.64,0,0.33412,5.8,6,0.037421,0.037421,0.037421,0.037421,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.037428,0.037422,0.037421,0.037421,0.037428,0.037422,0.037422,0.037422,0.037421,0.037421,0.037422,0.037422,0.037422,0.037536,0.037421,0.037421,0.037422,0.037536,0.037421,0.037421,0.037421,0.037421,0.037421,0.037421,,,,,,,0.037428,0.037422,0.037422,0.037422,0.037422,0.037536,0.037421,0.037421,0.037421,0.037421,0.014035,0.014033,0.014033,0.014033,0.014033,0.014067,0.014033,0.014033,0.007328,0.007328,24.995408,24.99985,24.999896,24.999886,24.999696,24.923618,25,25,25,25,,,,,,,,,,,2064,2064,0.037421,0.037421,0.037421,0.037421,0.037421,0.037421,0.037421,0.037421,0.014033,0.014033,25,25,, +8663,0,0.909446,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,4.163,5.072,0,19.48813,3.7,5,1.818892,1.818892,1.818892,1.818892,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.819629,1.819996,1.818892,1.818892,1.819629,1.819996,1.818893,1.818892,1.818892,1.818892,1.818893,1.818892,1.820204,1.818893,1.818892,1.818892,1.820204,1.818893,1.818892,1.818892,1.818892,1.818892,1.818892,1.818892,,,,,,,1.819629,1.819996,1.818893,1.818892,1.820204,1.818893,1.818892,1.818892,1.818892,1.818892,0.709589,0.709699,0.709368,0.709368,0.709761,0.709368,0.709368,0.709368,0.372873,0.372873,29.987855,29.981803,29.99999,30,29.978386,29.99999,30,30,30,30,,,,,,,,,,,2580,2580,1.818892,1.818892,1.818892,1.818892,1.818892,1.818892,1.818892,1.818892,0.709368,0.709368,30,30,, +8836,0,0.503822,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,3.659,4.163,0,10.79619,3.7,5,1.007644,1.007644,1.007644,1.007644,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.007918,1.008494,1.007644,1.007644,1.007918,1.008494,1.007644,1.007644,1.007644,1.007644,1.007644,1.007644,1.008416,1.007644,1.007644,1.007644,1.008416,1.007644,1.007644,1.007644,1.007644,1.007644,1.007644,1.007644,,,,,,,1.007918,1.008494,1.007644,1.007644,1.008416,1.007644,1.007644,1.007644,1.007644,1.007644,0.393063,0.393236,0.392981,0.392981,0.393213,0.392981,0.392981,0.392981,0.206567,0.206567,29.991856,29.974727,29.999998,30,29.977048,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,1.007644,1.007644,1.007644,1.007644,1.007644,1.007644,1.007644,1.007644,0.392981,0.392981,30,30,, +8730,0,0.282585,1,1,0,2,5,,5,6,Cone,Rd,1223807,4.537,4.82,0,6.055387,3.7,5,0.565169,0.565169,0.565169,0.565169,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.567936,0.565179,0.565169,0.565169,0.567936,0.565179,0.565243,0.565218,0.565169,0.565169,0.565243,0.565218,0.565257,0.566915,0.565169,0.565169,0.565257,0.566915,0.565169,0.565169,0.565169,0.565169,0.565169,0.565169,,,,,,,0.567936,0.565179,0.565243,0.565218,0.565257,0.566915,0.565169,0.565169,0.565169,0.565169,0.221246,0.220419,0.220438,0.220431,0.220442,0.22094,0.220416,0.220416,0.11586,0.11586,29.853863,29.999509,29.996116,29.997444,29.995366,29.907625,30,30,30,30,,,,,,,,,,,2580,2580,0.565169,0.565169,0.565169,0.565169,0.565169,0.565169,0.565169,0.565169,0.220416,0.220416,30,30,, +8741,1,0.374711,1,0,0,1,2,RON,4,6,Cone/S US 23,RAMP,1223806,0,0.375,0,,1.09,4,0.499614,,0.499614,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.499614,,0.499614,,0.499614,,0.499614,,0.499614,,0.499614,,0.499614,,0.499614,,0.499614,,0.499614,,0.499614,,0.499614,,,,,,,,0.499614,,0.499614,,0.499614,,0.499614,,0.499614,,0.217332,,0.217332,,0.217332,,0.217332,,0.11616,,44.999982,,44.999986,,44.999977,,45,,45,,,,,,,,,,,,5160,,0.499614,,0.499614,,0.499614,,0.499614,,0.217332,,45,,, +8832,0,0.095384,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,5.072,5.167,0,2.043933,3.7,5,0.190767,0.190767,0.190767,0.190767,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.190914,0.190851,0.190767,0.190767,0.190914,0.190851,0.190768,0.190767,0.190767,0.190767,0.190768,0.190767,0.191152,0.190767,0.190767,0.190767,0.191152,0.190767,0.190767,0.190767,0.190767,0.190767,0.190767,0.190767,,,,,,,0.190914,0.190851,0.190768,0.190767,0.191152,0.190767,0.190767,0.190767,0.190767,0.190767,0.074443,0.074424,0.074399,0.074399,0.074515,0.074399,0.074399,0.074399,0.039107,0.039107,29.976871,29.986741,29.999926,30,29.939529,30,30,30,30,30,,,,,,,,,,,2580,2580,0.190767,0.190767,0.190767,0.190767,0.190767,0.190767,0.190767,0.190767,0.074399,0.074399,30,30,, +9121,1,0.618503,2,0,0,1,2,,5,6,N US 23,,1223505,21.578,22.197,0,,1.02,7,0.530145,,0.530145,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.548754,,0.530145,,0.548754,,0.530735,,0.530145,,0.530735,,0.531221,,0.530145,,0.531221,,0.530145,,0.530145,,0.530145,,,,,,,,0.548754,,0.530735,,0.531221,,0.530145,,0.530145,,0.275957,,0.270551,,0.270697,,0.270374,,0.147557,,67.626178,,69.922141,,69.85828,,70,,70,,,,,,,,,,,,15136,,0.530145,,0.530145,,0.530145,,0.530145,,0.270374,,70,,, +9146,-1,0.631068,0,2,0,1,2,,5,6,S US 23,,1223504,21.533,22.163,0,,1.02,7,,0.540916,,0.540916,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.541589,,0.540916,,0.541589,,0.541336,,0.540916,,0.541336,,0.554307,,0.540916,,0.554307,,0.540916,,0.540916,,0.540916,,,,,,,,0.541589,,0.541336,,0.554307,,0.540916,,0.540916,,0.276069,,0.275993,,0.279885,,0.275867,,0.150555,,69.913045,,69.945657,,68.308875,,70,,70,,,,,,,,,,,,15136,,0.540916,,0.540916,,0.540916,,0.540916,,0.275867,,70,, +8850,1,0.303254,1,0,0,1,2,ROF,4,6,N US 23/Ann Arbor,RAMP,1224010,0,0.303,0,,2.24,5,0.454882,,0.454882,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.454882,,0.454882,,0.454882,,0.454882,,0.454882,,0.454882,,0.454882,,0.454882,,0.454882,,0.454882,,0.454882,,0.454882,,,,,,,,0.454882,,0.454882,,0.454882,,0.454882,,0.454882,,0.19105,,0.19105,,0.19105,,0.19105,,0.10159,,40,,40,,39.999997,,40,,40,,,,,,,,,,,,5160,,0.454882,,0.454882,,0.454882,,0.454882,,0.19105,,40,,, +8677,1,0.276539,1,0,0,1,2,RON,5,6,Cone/N US 23,RAMP,1224101,0,0.276,0,,1.09,4,0.368718,,0.368718,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.369104,,0.368718,,0.369104,,0.368722,,0.368718,,0.368722,,0.368803,,0.368718,,0.368803,,0.368718,,0.368718,,0.368718,,,,,,,,0.369104,,0.368722,,0.368803,,0.368718,,0.368718,,0.160508,,0.160393,,0.160418,,0.160392,,0.085727,,44.95295,,44.999551,,44.989615,,45,,45,,,,,,,,,,,,5160,,0.368718,,0.368718,,0.368718,,0.368718,,0.160392,,45,,, +8728,1,0.312605,1,0,0,1,2,ROF,4,6,S US 23/Cone,RAMP,1223808,0,0.313,0,,2.24,5,0.468908,,0.468908,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.468919,,0.468908,,0.468919,,0.468908,,0.468908,,0.468908,,0.468918,,0.468908,,0.468918,,0.468908,,0.468908,,0.468908,,,,,,,,0.468919,,0.468908,,0.468918,,0.468908,,0.468908,,0.196945,,0.196941,,0.196944,,0.196941,,0.104723,,39.999084,,39.999984,,39.999145,,40,,40,,,,,,,,,,,,5160,,0.468908,,0.468908,,0.468908,,0.468908,,0.196941,,40,,, +8912,0,0.220561,1,1,0,2,5,,5,6,Cone,Rd,1223807,4.82,5.04,0,4.726299,3.7,5,0.441121,0.441121,0.441121,0.441121,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.45348,0.441122,0.441121,0.441121,0.45348,0.441122,0.441134,0.441121,0.441121,0.441121,0.441134,0.441121,0.441144,0.441124,0.441121,0.441121,0.441144,0.441124,0.441121,0.441121,0.441121,0.441121,0.441121,0.441121,,,,,,,0.45348,0.441122,0.441134,0.441121,0.441144,0.441124,0.441121,0.441121,0.441121,0.441121,0.175745,0.172037,0.172041,0.172037,0.172044,0.172038,0.172037,0.172037,0.09043,0.09043,29.18241,29.999982,29.999112,29.999987,29.998477,29.999815,30,30,30,30,,,,,,,,,,,2580,2580,0.441121,0.441121,0.441121,0.441121,0.441121,0.441121,0.441121,0.441121,0.172037,0.172037,30,30,, +9213,0,0.49848,1,1,0,2,5,,5,6,Redman,Rd,1233610,4.018,4.516,0,10.681716,3.7,5,0.99696,0.99696,0.99696,0.99696,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,,,,,,,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.388814,0.388814,0.388814,0.388814,0.388814,0.388814,0.388814,0.388814,0.204377,0.204377,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.99696,0.388814,0.388814,30,30,, +10321,0,0.562875,2,2,1,2,4,,5,5,Willis,Rd,1427410,4.261,4.823,0,12.061605,3,4,0.844312,0.844312,0.844312,0.844312,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.84954,0.878264,0.844312,0.844312,0.84954,0.878264,0.84495,0.848726,0.844312,0.844312,0.84495,0.848726,0.85858,0.900941,0.844312,0.844312,0.85858,0.900941,0.844312,0.844312,0.844312,0.844312,0.844312,0.844312,,,,,,,0.84954,0.878264,0.84495,0.848726,0.85858,0.900941,0.844312,0.844312,0.844312,0.844312,0.356179,0.364797,0.354802,0.355935,0.358891,0.3716,0.354611,0.354611,0.188563,0.188563,39.753863,38.45368,39.969834,39.791969,39.335298,37.485791,40,40,40,40,,,,,,,,,,,6502,6502,0.844312,0.844312,0.844312,0.844312,0.844312,0.844312,0.844312,0.844312,0.354611,0.354611,40,40,, +10359,0,0.278199,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.328,16.606,0,5.961416,3.7,5,0.417299,0.417299,0.417299,0.417299,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,1.332746,1.384921,0.417299,0.417299,1.332746,1.384921,0.801905,0.966684,0.417299,0.417299,0.801905,0.966684,1.447433,1.736163,0.417299,0.417299,1.447433,1.736163,0.417299,0.417299,0.417299,0.417299,0.417299,0.417299,,,,,,,1.332746,1.384921,0.801905,0.966684,1.447433,1.736163,0.417299,0.417299,0.417299,0.417299,0.4499,0.465552,0.290647,0.340081,0.484306,0.570925,0.175266,0.175266,0.093197,0.093197,12.524488,12.052649,20.81539,17.267246,11.532113,9.614287,40,40,40,40,,,,,,,,,,,4162,4162,0.417299,0.417299,0.417299,0.417299,0.417299,0.417299,0.417299,0.417299,0.175266,0.175266,40,40,, +10469,0,1.58461,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,5.064,6.648,0,33.955918,3.7,5,3.169219,3.169219,3.169219,3.169219,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.171026,3.16934,3.169219,3.169219,3.171026,3.16934,3.169223,3.169225,3.169219,3.169219,3.169223,3.169225,3.16945,3.169905,3.169219,3.169219,3.16945,3.169905,3.169219,3.169219,3.169219,3.169219,3.169219,3.169219,,,,,,,3.171026,3.16934,3.169223,3.169225,3.16945,3.169905,3.169219,3.169219,3.169219,3.169219,1.236537,1.236032,1.235997,1.235997,1.236065,1.236201,1.235995,1.235995,0.64969,0.64969,29.982907,29.998854,29.999958,29.999939,29.997816,29.993505,30,30,30,30,,,,,,,,,,,2580,2580,3.169219,3.169219,3.169219,3.169219,3.169219,3.169219,3.169219,3.169219,1.235995,1.235995,30,30,, +10470,0,1.160518,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,3.904,5.064,0,24.868249,3.7,5,2.321037,2.321037,2.321037,2.321037,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.347473,2.32104,2.321037,2.321037,2.347473,2.32104,2.325944,2.321038,2.321037,2.321037,2.325944,2.321038,2.340017,2.321175,2.321037,2.321037,2.340017,2.321175,2.321037,2.321037,2.321037,2.321037,2.321037,2.321037,,,,,,,2.347473,2.32104,2.325944,2.321038,2.340017,2.321175,2.321037,2.321037,2.321037,2.321037,0.913135,0.905205,0.906677,0.905205,0.910898,0.905246,0.905204,0.905204,0.475812,0.475812,29.662146,29.999954,29.9367,29.999985,29.756661,29.998214,30,30,30,30,,,,,,,,,,,2580,2580,2.321037,2.321037,2.321037,2.321037,2.321037,2.321037,2.321037,2.321037,0.905204,0.905204,30,30,, +10482,0,0.972666,1,1,0,2,5,,5,5,Willow,Rd,1431207,1.155,2.127,0,20.842837,3.7,5,1.945331,1.945331,1.945331,1.945331,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,,,,,,,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,0.758679,0.758679,0.758679,0.758679,0.758679,0.758679,0.758679,0.758679,0.398793,0.398793,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,1.945331,0.758679,0.758679,30,30,, +10503,1,3.159719,2,0,0,1,2,,5,5,N US 23,,1431202,1.642,4.8,0,,1.02,7,2.708331,,2.708331,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.058489,,2.708331,,3.058489,,2.717067,,2.708331,,2.717067,,2.733237,,2.708331,,2.733237,,2.708331,,2.708331,,2.708331,,,,,,,,3.058489,,2.717067,,2.733237,,2.708331,,2.708331,,1.486296,,1.383869,,1.38872,,1.381249,,0.753819,,61.985889,,69.774926,,69.362131,,70,,70,,,,,,,,,,,,15136,,2.708331,,2.708331,,2.708331,,2.708331,,1.381249,,70,,, +10705,0,1.994915,1,1,0,2,6,GRV,5,5,McCrone,Rd,1433205,0.818,2.812,0,42.748189,5.55,5,4.787797,4.787797,4.787797,4.787797,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,,,,,,,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,1.795424,1.795424,1.795424,1.795424,1.795424,1.795424,1.795424,1.795424,0.93761,0.93761,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,4.787797,1.795424,1.795424,25,25,, +10716,0,1.276389,1,1,0,2,5,,5,5,Moon,Rd,1433104,1.254,2.53,0,27.35119,3.7,5,2.552778,2.552778,2.552778,2.552778,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.553078,2.552784,2.552778,2.552778,2.553078,2.552784,2.552781,2.552779,2.552778,2.552778,2.552781,2.552779,2.5528,2.552818,2.552778,2.552778,2.5528,2.552818,2.552778,2.552778,2.552778,2.552778,2.552778,2.552778,,,,,,,2.553078,2.552784,2.552781,2.552779,2.5528,2.552818,2.552778,2.552778,2.552778,2.552778,0.995673,0.995585,0.995584,0.995584,0.99559,0.995596,0.995583,0.995583,0.523319,0.523319,29.99647,29.999929,29.999965,29.999981,29.999734,29.999522,30,30,30,30,,,,,,,,,,,2580,2580,2.552778,2.552778,2.552778,2.552778,2.552778,2.552778,2.552778,2.552778,0.995583,0.995583,30,30,, +10874,0,0.720938,1,1,0,2,4,,4,5,Main,St,1432907,6.854,7.575,0,15.448669,4.5,4.5,1.138323,1.138323,1.138323,1.138323,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.18789,1.226471,1.138323,1.138323,1.18789,1.226471,1.144883,1.144574,1.138323,1.138323,1.144883,1.144574,1.266437,1.214683,1.138323,1.138323,1.266437,1.214683,1.138323,1.138323,1.138323,1.138323,1.138323,1.138323,,,,,,,1.18789,1.226471,1.144883,1.144574,1.266437,1.214683,1.138323,1.138323,1.138323,1.138323,0.486136,0.49771,0.473234,0.473141,0.5097,0.494174,0.471266,0.471266,0.250052,0.250052,36.414364,35.268899,37.782266,37.792479,34.15588,35.611171,38,38,38,38,,,,,,,,,,,3096,3096,1.138323,1.138323,1.138323,1.138323,1.138323,1.138323,1.138323,1.138323,0.471266,0.471266,38,38,, +11384,0,0.574704,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,3.436,4.01,0,12.315075,3,4,0.862055,0.862055,0.862055,0.862055,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.914444,0.862061,0.862055,0.862055,0.914444,0.862061,0.865971,0.862065,0.862055,0.862055,0.865971,0.862065,0.871336,0.865975,0.862055,0.862055,0.871336,0.865975,0.862055,0.862055,0.862055,0.862055,0.862055,0.862055,,,,,,,0.914444,0.862061,0.865971,0.862065,0.871336,0.865975,0.862055,0.862055,0.862055,0.862055,0.37778,0.362065,0.363238,0.362066,0.364847,0.363239,0.362063,0.362063,0.192526,0.192526,37.708386,39.999729,39.819118,39.999568,39.573955,39.818932,40,40,40,40,,,,,,,,,,,3096,3096,0.862055,0.862055,0.862055,0.862055,0.862055,0.862055,0.862055,0.862055,0.362063,0.362063,40,40,, +11463,-1,3.458501,0,2,0,1,2,,5,5,S US 23,,1431603,1.407,4.864,0,,1.02,7,,2.96443,,2.96443,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.974344,,2.96443,,2.974344,,2.97057,,2.96443,,2.97057,,3.16064,,2.96443,,3.16064,,2.96443,,2.96443,,2.96443,,,,,,,,2.974344,,2.97057,,3.16064,,2.96443,,2.96443,,1.514834,,1.513701,,1.570722,,1.511859,,0.8251,,69.766656,,69.855298,,65.654445,,70,,70,,,,,,,,,,,,15136,,2.96443,,2.96443,,2.96443,,2.96443,,1.511859,,70,, +20337,0,1.23345,1,1,0,2,5,,5,5,Platt,Rd,4302160,2.838,4.071,0,26.431065,3.7,5,2.466899,2.466899,2.466899,2.466899,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.466901,2.467967,2.466899,2.466899,2.466901,2.467967,2.466899,2.467875,2.466899,2.466899,2.466899,2.467875,2.4669,2.478663,2.466899,2.466899,2.4669,2.478663,2.466899,2.466899,2.466899,2.466899,2.466899,2.466899,,,,,,,2.466901,2.467967,2.466899,2.467875,2.4669,2.478663,2.466899,2.466899,2.466899,2.466899,0.962091,0.962411,0.962091,0.962383,0.962091,0.96562,0.962091,0.962091,0.505714,0.505714,29.999981,29.987018,30,29.988138,29.999998,29.857624,30,30,30,30,,,,,,,,,,,2580,2580,2.466899,2.466899,2.466899,2.466899,2.466899,2.466899,2.466899,2.466899,0.962091,0.962091,30,30,, +21576,0,0.948512,1,1,0,2,4,,4,5,Bemis,Rd,4604906,3.811,4.759,0,20.325259,4.5,4.5,1.497651,1.497651,1.497651,1.497651,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.760295,1.634217,1.497651,1.497651,1.760295,1.634217,1.507095,1.502651,1.497651,1.497651,1.507095,1.502651,1.794791,1.73942,1.497651,1.497651,1.794791,1.73942,1.497651,1.497651,1.497651,1.497651,1.497651,1.497651,,,,,,,1.760295,1.634217,1.507095,1.502651,1.794791,1.73942,1.497651,1.497651,1.497651,1.497651,0.698821,0.660997,0.622861,0.621527,0.709169,0.692558,0.620027,0.620027,0.328984,0.328984,32.330213,34.824451,37.761881,37.873553,31.708835,32.718215,38,38,38,38,,,,,,,,,,,3096,3096,1.497651,1.497651,1.497651,1.497651,1.497651,1.497651,1.497651,1.497651,0.620027,0.620027,38,38,, +25486,0,2.267374,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,48.586581,0.15,4,9.069495,9.069495,9.069495,9.069495,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,,,,,,,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,3.128976,3.128976,3.128976,3.128976,3.128976,3.128976,3.128976,3.128976,1.609835,1.609835,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,9.069495,3.128976,3.128976,15,15,, +25704,0,1.142858,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.489805,0.15,4,4.57143,4.57143,4.57143,4.57143,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,,,,,,,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,1.577143,1.577143,1.577143,1.577143,1.577143,1.577143,1.577143,1.577143,0.811429,0.811429,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,4.57143,1.577143,1.577143,15,15,, +26331,0,1.507497,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.303511,0.15,4,6.029989,6.029989,6.029989,6.029989,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,,,,,,,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,2.080346,2.080346,2.080346,2.080346,2.080346,2.080346,2.080346,2.080346,1.070323,1.070323,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,6.029989,2.080346,2.080346,15,15,, +30106,0,1.177636,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.235053,0.15,4,4.710543,4.710543,4.710543,4.710543,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.710544,4.710543,4.710543,4.710543,4.710544,4.710543,4.710543,4.710543,4.710543,4.710543,4.710543,4.710543,4.710543,4.710544,4.710543,4.710543,4.710543,4.710544,4.710543,4.710543,4.710543,4.710543,4.710543,4.710543,,,,,,,4.710544,4.710543,4.710543,4.710543,4.710543,4.710544,4.710543,4.710543,4.710543,4.710543,1.625138,1.625137,1.625137,1.625137,1.625137,1.625137,1.625137,1.625137,0.836121,0.836121,14.999998,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,4.710543,4.710543,4.710543,4.710543,4.710543,4.710543,4.710543,4.710543,1.625137,1.625137,15,15,, +34013,0,0.510303,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.935055,0.15,4,2.04121,2.04121,2.04121,2.04121,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,,,,,,,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,0.704218,0.704218,0.704218,0.704218,0.704218,0.704218,0.704218,0.704218,0.362315,0.362315,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,2.04121,0.704218,0.704218,15,15,, +9215,0,1.030984,1,1,0,2,5,,5,6,Redman,Rd,1233610,1.961,2.992,0,22.092505,3.7,5,2.061967,2.061967,2.061967,2.061967,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,,,,,,,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,0.804167,0.804167,0.804167,0.804167,0.804167,0.804167,0.804167,0.804167,0.422703,0.422703,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,2.061967,0.804167,0.804167,30,30,, +10472,0,0.271599,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,2.226,2.497,0,5.819978,3.7,5,0.543198,0.543198,0.543198,0.543198,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.543545,0.543713,0.543198,0.543198,0.543545,0.543713,0.543675,0.543635,0.543198,0.543198,0.543675,0.543635,0.545031,0.544881,0.543198,0.543198,0.545031,0.544881,0.543198,0.543198,0.543198,0.543198,0.543198,0.543198,,,,,,,0.543545,0.543713,0.543675,0.543635,0.545031,0.544881,0.543198,0.543198,0.543198,0.543198,0.211951,0.212002,0.21199,0.211978,0.212397,0.212352,0.211847,0.211847,0.111356,0.111356,29.980842,29.971568,29.973655,29.975877,29.899112,29.907341,30,30,30,30,,,,,,,,,,,2580,2580,0.543198,0.543198,0.543198,0.543198,0.543198,0.543198,0.543198,0.543198,0.211847,0.211847,30,30,, +10473,0,0.821798,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,1.404,2.226,0,17.609959,3.7,5,1.643596,1.643596,1.643596,1.643596,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.667441,1.653937,1.643596,1.643596,1.667441,1.653937,1.651613,1.649392,1.643596,1.643596,1.651613,1.649392,1.678243,1.682602,1.643596,1.643596,1.678243,1.682602,1.643596,1.643596,1.643596,1.643596,1.643596,1.643596,,,,,,,1.667441,1.653937,1.651613,1.649392,1.678243,1.682602,1.643596,1.643596,1.643596,1.643596,0.648156,0.644105,0.643407,0.642741,0.651397,0.652704,0.641003,0.641003,0.336937,0.336937,29.570997,29.812426,29.85439,29.894582,29.380662,29.304543,30,30,30,30,,,,,,,,,,,2580,2580,1.643596,1.643596,1.643596,1.643596,1.643596,1.643596,1.643596,1.643596,0.641003,0.641003,30,30,, +10837,0,1.39321,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,0,1.393,0,29.854496,3.7,5,2.78642,2.78642,2.78642,2.78642,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.801235,2.786443,2.78642,2.78642,2.801235,2.786443,2.786432,2.786427,2.78642,2.78642,2.786432,2.786427,2.78659,2.792329,2.78642,2.78642,2.78659,2.792329,2.78642,2.78642,2.78642,2.78642,2.78642,2.78642,,,,,,,2.801235,2.786443,2.786432,2.786427,2.78659,2.792329,2.78642,2.78642,2.78642,2.78642,1.091148,1.086711,1.086707,1.086706,1.086755,1.088476,1.086704,1.086704,0.571216,0.571216,29.841337,29.999753,29.999871,29.999924,29.998163,29.936515,30,30,30,30,,,,,,,,,,,2580,2580,2.78642,2.78642,2.78642,2.78642,2.78642,2.78642,2.78642,2.78642,1.086704,1.086704,30,30,, +10893,0,1.012516,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,4.679,5.691,0,21.696767,3.7,5,2.025032,2.025032,2.025032,2.025032,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.025689,2.025104,2.025032,2.025032,2.025689,2.025104,2.025051,2.025049,2.025032,2.025032,2.025051,2.025049,2.025242,2.025225,2.025032,2.025032,2.025242,2.025225,2.025032,2.025032,2.025032,2.025032,2.025032,2.025032,,,,,,,2.025689,2.025104,2.025051,2.025049,2.025242,2.025225,2.025032,2.025032,2.025032,2.025032,0.78996,0.789784,0.789768,0.789767,0.789825,0.78982,0.789762,0.789762,0.415131,0.415131,29.990256,29.998921,29.999708,29.999747,29.99689,29.997132,30,30,30,30,,,,,,,,,,,2580,2580,2.025032,2.025032,2.025032,2.025032,2.025032,2.025032,2.025032,2.025032,0.789762,0.789762,30,30,, +20778,0,1.006063,1,1,0,2,5,,5,5,Platt,Rd,4302160,1.054,2.06,0,21.558495,3.7,5,2.012126,2.012126,2.012126,2.012126,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.012153,2.012127,2.012126,2.012126,2.012153,2.012127,2.012126,2.012126,2.012126,2.012126,2.012126,2.012126,2.012129,2.012133,2.012126,2.012126,2.012129,2.012133,2.012126,2.012126,2.012126,2.012126,2.012126,2.012126,,,,,,,2.012153,2.012127,2.012126,2.012126,2.012129,2.012133,2.012126,2.012126,2.012126,2.012126,0.784737,0.784729,0.784729,0.784729,0.78473,0.784731,0.784729,0.784729,0.412486,0.412486,29.999603,29.99999,29.999998,29.999999,29.999965,29.999895,30,30,30,30,,,,,,,,,,,2580,2580,2.012126,2.012126,2.012126,2.012126,2.012126,2.012126,2.012126,2.012126,0.784729,0.784729,30,30,, +25024,0,0.996938,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.362954,0.15,4,3.987751,3.987751,3.987751,3.987751,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.987753,3.987751,3.987751,3.987751,3.987753,3.987751,3.987752,3.987752,3.987751,3.987751,3.987752,3.987752,3.987752,3.987752,3.987751,3.987751,3.987752,3.987752,3.987751,3.987751,3.987751,3.987751,3.987751,3.987751,,,,,,,3.987753,3.987751,3.987752,3.987752,3.987752,3.987752,3.987751,3.987751,3.987751,3.987751,1.375775,1.375774,1.375774,1.375774,1.375774,1.375775,1.375774,1.375774,0.707826,0.707826,14.999996,15,15,15,15,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,3.987751,3.987751,3.987751,3.987751,3.987751,3.987751,3.987751,3.987751,1.375774,1.375774,15,15,, +26330,0,0.667511,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.303803,0.15,4,2.670043,2.670043,2.670043,2.670043,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,,,,,,,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,0.921165,0.921165,0.921165,0.921165,0.921165,0.921165,0.921165,0.921165,0.473933,0.473933,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,2.670043,0.921165,0.921165,15,15,, +30100,0,1.462213,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.333144,0.15,4,5.848854,5.848854,5.848854,5.848854,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,,,,,,,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,2.017854,2.017854,2.017854,2.017854,2.017854,2.017854,2.017854,2.017854,1.038172,1.038172,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,5.848854,2.017854,2.017854,15,15,, +10474,0,1.404926,1,1,0,2,5,,5,5,Dennison,Rd,1431208,0,1.404,0,30.105564,3.7,5,2.809853,2.809853,2.809853,2.809853,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,,,,,,,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,1.095843,1.095843,1.095843,1.095843,1.095843,1.095843,1.095843,1.095843,0.57602,0.57602,29.999999,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,2.809853,1.095843,1.095843,30,30,, +10895,0,0.533601,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,4.145,4.679,0,11.434297,3.7,5,1.067201,1.067201,1.067201,1.067201,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.151044,1.098043,1.067201,1.067201,1.151044,1.098043,1.085059,1.081375,1.067201,1.067201,1.085059,1.081375,1.16348,1.161655,1.067201,1.067201,1.16348,1.161655,1.067201,1.067201,1.067201,1.067201,1.067201,1.067201,,,,,,,1.151044,1.098043,1.085059,1.081375,1.16348,1.161655,1.067201,1.067201,1.067201,1.067201,0.441361,0.425461,0.421566,0.42046,0.445092,0.444545,0.416208,0.416208,0.218776,0.218776,27.814777,29.157359,29.506251,29.606792,27.517473,27.560698,30,30,30,30,,,,,,,,,,,2580,2580,1.067201,1.067201,1.067201,1.067201,1.067201,1.067201,1.067201,1.067201,0.416208,0.416208,30,30,, +10930,0,0.479421,1,1,0,2,5,,5,5,Ridge,Rd,1432807,1.395,1.875,0,10.273297,3.7,5,0.958841,0.958841,0.958841,0.958841,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.00245,0.974188,0.958841,0.958841,1.00245,0.974188,0.970923,0.968528,0.958841,0.958841,0.970923,0.968528,0.998511,0.997804,0.958841,0.958841,0.998511,0.997804,0.958841,0.958841,0.958841,0.958841,0.958841,0.958841,,,,,,,1.00245,0.974188,0.970923,0.968528,0.998511,0.997804,0.958841,0.958841,0.958841,0.958841,0.387031,0.378552,0.377573,0.376854,0.385849,0.385637,0.373948,0.373948,0.196562,0.196562,28.694922,29.527382,29.626689,29.699935,28.808139,28.828531,30,30,30,30,,,,,,,,,,,2580,2580,0.958841,0.958841,0.958841,0.958841,0.958841,0.958841,0.958841,0.958841,0.373948,0.373948,30,30,, +20281,0,0.514379,1,1,0,2,5,,5,6,Dennison,Rd,4301492,11.528,12.042,0,11.022411,3.7,5,1.028758,1.028758,1.028758,1.028758,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,,,,,,,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,0.401216,0.401216,0.401216,0.401216,0.401216,0.401216,0.401216,0.401216,0.210895,0.210895,29.999999,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,1.028758,0.401216,0.401216,30,30,, +39912,-1,0.265182,0,2,0,2,4,DIV,4,2,Ecorse,Rd,5495384,0,0.265,0,5.682476,4.5,4.5,,0.370022,,0.370022,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.372177,,0.370022,,0.372177,,0.370128,,0.370022,,0.370128,,0.372451,,0.370022,,0.372451,,0.370022,,0.370022,,0.370022,,,,,,,,0.372177,,0.370128,,0.372451,,0.370022,,0.370022,,0.159386,,0.158771,,0.159468,,0.158739,,0.084673,,42.750933,,42.987657,,42.719584,,43,,43,,,,,,,,,,,,6880,,0.370022,,0.370022,,0.370022,,0.370022,,0.158739,,43,, +39917,1,0.057805,1,0,0,1,2,RON,3,2,N M 39 Service/N M 39,RAMP,4719482,0,0.058,0,,1.09,4,0.086707,,0.086707,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.086707,,0.086707,,0.086707,,0.086708,,0.086707,,0.086708,,0.086716,,0.086707,,0.086716,,0.086707,,0.086707,,0.086707,,,,,,,,0.086707,,0.086708,,0.086716,,0.086707,,0.086707,,0.036417,,0.036417,,0.03642,,0.036417,,0.019365,,40,,39.999851,,39.996016,,40,,40,,,,,,,,,,,,5074,,0.086707,,0.086707,,0.086707,,0.086707,,0.036417,,40,,, +39914,0,0.071532,1,1,0,2,4,,4,2,Sheldon,Rd,5495478,0,0.072,0,1.53282,4.5,4.5,0.112945,0.112945,0.112945,0.112945,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.188705,0.133369,0.112945,0.112945,0.188705,0.133369,0.141041,0.135568,0.112945,0.112945,0.141041,0.135568,0.178957,0.218113,0.112945,0.112945,0.178957,0.218113,0.112945,0.112945,0.112945,0.112945,0.112945,0.112945,,,,,,,0.188705,0.133369,0.141041,0.135568,0.178957,0.218113,0.112945,0.112945,0.112945,0.112945,0.069487,0.052887,0.055188,0.053546,0.066563,0.07831,0.046759,0.046759,0.02481,0.02481,22.74394,32.180503,30.430116,31.658654,23.982785,19.677415,38,38,38,38,,,,,,,,,,,3096,3096,0.112945,0.112945,0.112945,0.112945,0.112945,0.112945,0.112945,0.112945,0.046759,0.046759,38,38,, +10832,0,1.042098,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,1.393,2.434,0,22.330675,3.7,5,2.084196,2.084196,2.084196,2.084196,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.189141,2.085059,2.084196,2.084196,2.189141,2.085059,2.084642,2.084406,2.084196,2.084196,2.084642,2.084406,2.088147,2.122754,2.084196,2.084196,2.088147,2.122754,2.084196,2.084196,2.084196,2.084196,2.084196,2.084196,,,,,,,2.189141,2.085059,2.084642,2.084406,2.088147,2.122754,2.084196,2.084196,2.084196,2.084196,0.84432,0.813095,0.81297,0.812899,0.814022,0.824404,0.812837,0.812837,0.42726,0.42726,28.56184,29.987594,29.99359,29.996985,29.943238,29.455086,30,30,30,30,,,,,,,,,,,2580,2580,2.084196,2.084196,2.084196,2.084196,2.084196,2.084196,2.084196,2.084196,0.812837,0.812837,30,30,, +9214,0,1.026736,1,1,0,2,5,,5,6,Redman,Rd,1233610,2.992,4.018,0,22.001476,3.7,5,2.053471,2.053471,2.053471,2.053471,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,,,,,,,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,0.800854,0.800854,0.800854,0.800854,0.800854,0.800854,0.800854,0.800854,0.420962,0.420962,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,2.053471,0.800854,0.800854,30,30,, +10875,0,0.202684,1,1,0,2,4,,4,5,Mooreville,Rd,1432907,6.652,6.854,0,4.343237,4.5,4.5,0.320028,0.320028,0.320028,0.320028,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.320763,0.326766,0.320028,0.320028,0.320763,0.326766,0.320094,0.320103,0.320028,0.320028,0.320094,0.320103,0.324997,0.320793,0.320028,0.320028,0.324997,0.320793,0.320028,0.320028,0.320028,0.320028,0.320028,0.320028,,,,,,,0.320763,0.326766,0.320094,0.320103,0.324997,0.320793,0.320028,0.320028,0.320028,0.320028,0.132712,0.134513,0.132511,0.132514,0.133982,0.132721,0.132492,0.132492,0.070299,0.070299,37.912976,37.216445,37.992214,37.991113,37.418979,37.909357,38,38,38,38,,,,,,,,,,,3096,3096,0.320028,0.320028,0.320028,0.320028,0.320028,0.320028,0.320028,0.320028,0.132492,0.132492,38,38,, +10876,0,0.506402,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,6.146,6.652,0,10.851479,3.7,5,1.012805,1.012805,1.012805,1.012805,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.01485,1.036806,1.012805,1.012805,1.01485,1.036806,1.012945,1.012967,1.012805,1.012805,1.012945,1.012967,1.029913,1.014945,1.012805,1.012805,1.029913,1.014945,1.012805,1.012805,1.012805,1.012805,1.012805,1.012805,,,,,,,1.01485,1.036806,1.012945,1.012967,1.029913,1.014945,1.012805,1.012805,1.012805,1.012805,0.395608,0.402194,0.395036,0.395042,0.400126,0.395636,0.394994,0.394994,0.207625,0.207625,29.93953,29.30551,29.995858,29.995203,29.50166,29.936745,30,30,30,30,,,,,,,,,,,2580,2580,1.012805,1.012805,1.012805,1.012805,1.012805,1.012805,1.012805,1.012805,0.394994,0.394994,30,30,, +20088,0,0.60243,1,1,0,2,5,,4,5,Platt,Rd,4302160,0.452,1.054,0,12.909211,5.8,4.5,1.338733,1.338733,1.338733,1.338733,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.338927,1.338789,1.338733,1.338733,1.338927,1.338789,1.33876,1.338758,1.338733,1.338733,1.33876,1.338758,1.338977,1.339048,1.338733,1.338733,1.338977,1.339048,1.338733,1.338733,1.338733,1.338733,1.338733,1.338733,,,,,,,1.338927,1.338789,1.33876,1.338758,1.338977,1.339048,1.338733,1.338733,1.338733,1.338733,0.510116,0.510074,0.510065,0.510065,0.510131,0.510152,0.510057,0.510057,0.267077,0.267077,26.996086,26.998864,26.999463,26.999506,26.995079,26.993654,27,27,27,27,,,,,,,,,,,2580,2580,1.338733,1.338733,1.338733,1.338733,1.338733,1.338733,1.338733,1.338733,0.510057,0.510057,27,27,, +10889,0,0.455098,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,5.691,6.146,0,9.752093,3.7,5,0.910195,0.910195,0.910195,0.910195,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.910438,0.91022,0.910195,0.910195,0.910438,0.91022,0.910202,0.910201,0.910195,0.910195,0.910202,0.910201,0.910265,0.91026,0.910195,0.910195,0.910265,0.91026,0.910195,0.910195,0.910195,0.910195,0.910195,0.910195,,,,,,,0.910438,0.91022,0.910202,0.910201,0.910265,0.91026,0.910195,0.910195,0.910195,0.910195,0.355049,0.354984,0.354978,0.354978,0.354997,0.354996,0.354976,0.354976,0.18659,0.18659,29.991993,29.999181,29.99979,29.999826,29.997709,29.997867,30,30,30,30,,,,,,,,,,,2580,2580,0.910195,0.910195,0.910195,0.910195,0.910195,0.910195,0.910195,0.910195,0.354976,0.354976,30,30,, +26335,0,0.255949,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.484622,0.15,4,1.023796,1.023796,1.023796,1.023796,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,,,,,,,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,0.35321,0.35321,0.35321,0.35321,0.35321,0.35321,0.35321,0.35321,0.181724,0.181724,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,1.023796,0.35321,0.35321,15,15,, +10471,0,1.406733,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,2.497,3.904,0,30.144284,3.7,5,2.813467,2.813467,2.813467,2.813467,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.83014,2.815291,2.813467,2.813467,2.83014,2.815291,2.818019,2.815305,2.813467,2.813467,2.818019,2.815305,2.828974,2.845737,2.813467,2.813467,2.828974,2.845737,2.813467,2.813467,2.813467,2.813467,2.813467,2.813467,,,,,,,2.83014,2.815291,2.818019,2.815305,2.828974,2.845737,2.813467,2.813467,2.813467,2.813467,1.102254,1.097799,1.098618,1.097803,1.101904,1.106933,1.097252,1.097252,0.576761,0.576761,29.823256,29.980558,29.951537,29.98041,29.835554,29.6598,30,30,30,30,,,,,,,,,,,2580,2580,2.813467,2.813467,2.813467,2.813467,2.813467,2.813467,2.813467,2.813467,1.097252,1.097252,30,30,, +10483,0,1.155557,1,1,0,2,5,GRV,5,5,Willow,Rd,1431207,0,1.155,0,24.761939,5.55,5,3.466671,3.466671,3.466671,3.466671,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,,,,,,,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,1.248002,1.248002,1.248002,1.248002,1.248002,1.248002,1.248002,1.248002,0.647112,0.647112,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,3.466671,1.248002,1.248002,20,20,, +20530,0,0.778289,1,1,0,2,5,,5,5,Platt,Rd,4302160,2.06,2.838,0,16.677618,3.7,5,1.556578,1.556578,1.556578,1.556578,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.5566,1.556578,1.556578,1.556578,1.5566,1.556578,1.556578,1.556578,1.556578,1.556578,1.556578,1.556578,1.556579,1.556582,1.556578,1.556578,1.556579,1.556582,1.556578,1.556578,1.556578,1.556578,1.556578,1.556578,,,,,,,1.5566,1.556578,1.556578,1.556578,1.556579,1.556582,1.556578,1.556578,1.556578,1.556578,0.607072,0.607065,0.607065,0.607065,0.607066,0.607067,0.607065,0.607065,0.319098,0.319098,29.999567,29.99999,29.999998,29.999999,29.999968,29.999919,30,30,30,30,,,,,,,,,,,2580,2580,1.556578,1.556578,1.556578,1.556578,1.556578,1.556578,1.556578,1.556578,0.607065,0.607065,30,30,, +9544,0,2.082537,1,1,0,2,4,,5,5,Willis,Rd,1427410,2.179,4.261,0,44.625791,3,4,3.123805,3.123805,3.123805,3.123805,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.348038,3.437092,3.123805,3.123805,3.348038,3.437092,3.149815,3.160188,3.123805,3.123805,3.149815,3.160188,3.679939,3.58496,3.123805,3.123805,3.679939,3.58496,3.123805,3.123805,3.123805,3.123805,3.123805,3.123805,,,,,,,3.348038,3.437092,3.149815,3.160188,3.679939,3.58496,3.123805,3.123805,3.123805,3.123805,1.379268,1.405984,1.319801,1.322913,1.478838,1.450345,1.311998,1.311998,0.69765,0.69765,37.321032,36.354051,39.669697,39.539482,33.954969,34.854568,40,40,40,40,,,,,,,,,,,3096,3096,3.123805,3.123805,3.123805,3.123805,3.123805,3.123805,3.123805,3.123805,1.311998,1.311998,40,40,, +9589,0,0.552047,1,1,0,2,3,,4,5,Michigan,Ave,1427301,14.284,14.836,0,11.829589,3.7,5,0.828071,0.828071,0.828071,0.828071,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.046678,1.052112,0.828071,0.828071,1.046678,1.052112,0.940441,0.946102,0.828071,0.828071,0.940441,0.946102,1.0313,1.116629,0.828071,0.828071,1.0313,1.116629,0.828071,0.828071,0.828071,0.828071,0.828071,0.828071,,,,,,,1.046678,1.052112,0.940441,0.946102,1.0313,1.116629,0.828071,0.828071,0.828071,0.828071,0.413372,0.415002,0.381501,0.383199,0.408759,0.434357,0.34779,0.34779,0.184936,0.184936,31.645694,31.482236,35.220543,35.009816,32.117572,29.663251,40,40,40,40,,,,,,,,,,,3784,3784,0.828071,0.828071,0.828071,0.828071,0.828071,0.828071,0.828071,0.828071,0.34779,0.34779,40,40,, +10712,0,0.8466,1,1,0,2,4,,4,5,Moon,Rd,1433104,4.561,5.407,0,18.141436,4.5,4.5,1.336737,1.336737,1.336737,1.336737,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.542347,1.337753,1.336737,1.336737,1.542347,1.337753,1.343115,1.342319,1.336737,1.336737,1.343115,1.342319,1.35694,1.469746,1.336737,1.336737,1.35694,1.469746,1.336737,1.336737,1.336737,1.336737,1.336737,1.336737,,,,,,,1.542347,1.337753,1.343115,1.342319,1.35694,1.469746,1.336737,1.336737,1.336737,1.336737,0.615092,0.553714,0.555322,0.555084,0.55947,0.593312,0.553409,0.553409,0.293637,0.293637,32.934241,37.97114,37.819576,37.841993,37.434229,34.561093,38,38,38,38,,,,,,,,,,,3096,3096,1.336737,1.336737,1.336737,1.336737,1.336737,1.336737,1.336737,1.336737,0.553409,0.553409,38,38,, +10913,0,0.118744,1,1,0,2,4,,4,5,Textile,Rd,1432903,7.274,7.392,0,2.544513,4.5,4.5,0.18749,0.18749,0.18749,0.18749,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.205855,0.212111,0.18749,0.18749,0.205855,0.212111,0.193124,0.194407,0.18749,0.18749,0.193124,0.194407,0.215407,0.216865,0.18749,0.18749,0.215407,0.216865,0.18749,0.18749,0.18749,0.18749,0.18749,0.18749,,,,,,,0.205855,0.212111,0.193124,0.194407,0.215407,0.216865,0.18749,0.18749,0.18749,0.18749,0.08313,0.085007,0.079311,0.079696,0.085996,0.086433,0.077621,0.077621,0.041185,0.041185,34.609955,33.589165,36.891569,36.648041,33.075253,32.852906,38,38,38,38,,,,,,,,,,,3096,3096,0.18749,0.18749,0.18749,0.18749,0.18749,0.18749,0.18749,0.18749,0.077621,0.077621,38,38,, +20590,0,1.022467,1,1,0,2,5,,4,5,Platt,Rd,4302160,6.083,7.105,0,21.909997,5.8,4.5,2.272148,2.272148,2.272148,2.272148,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.290746,2.272315,2.272148,2.272148,2.290746,2.272315,2.272174,2.272162,2.272148,2.272148,2.272174,2.272162,2.276024,2.275097,2.272148,2.272148,2.276024,2.275097,2.272148,2.272148,2.272148,2.272148,2.272148,2.272148,,,,,,,2.290746,2.272315,2.272174,2.272162,2.276024,2.275097,2.272148,2.272148,2.272148,2.272148,0.871268,0.865739,0.865696,0.865692,0.866851,0.866573,0.865688,0.865688,0.453293,0.453293,26.780797,26.998013,26.99969,26.999835,26.954016,26.965,27,27,27,27,,,,,,,,,,,2580,2580,2.272148,2.272148,2.272148,2.272148,2.272148,2.272148,2.272148,2.272148,0.865688,0.865688,27,27,, +21310,0,0.468518,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.271,2.739,0,10.039661,4.5,4.5,0.739764,0.739764,0.739764,0.739764,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.743998,0.762994,0.739764,0.739764,0.743998,0.762994,0.74037,0.740277,0.739764,0.739764,0.74037,0.740277,0.785739,0.753468,0.739764,0.739764,0.785739,0.753468,0.739764,0.739764,0.739764,0.739764,0.739764,0.739764,,,,,,,0.743998,0.762994,0.74037,0.740277,0.785739,0.753468,0.739764,0.739764,0.739764,0.739764,0.307533,0.313231,0.306444,0.306416,0.320055,0.310374,0.306263,0.306263,0.162502,0.162502,37.783751,36.843088,37.968914,37.973674,35.776568,37.308889,38,38,38,38,,,,,,,,,,,3096,3096,0.739764,0.739764,0.739764,0.739764,0.739764,0.739764,0.739764,0.739764,0.306263,0.306263,38,38,, +21599,0,0.322181,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,0,0.322,0,6.903883,6.55,4.5,0.966544,0.966544,0.966544,0.966544,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.966735,0.966558,0.966544,0.966544,0.966735,0.966558,0.966553,0.966551,0.966544,0.966544,0.966553,0.966551,0.966554,0.966563,0.966544,0.966544,0.966554,0.966563,0.966544,0.966544,0.966544,0.966544,0.966544,0.966544,,,,,,,0.966735,0.966558,0.966553,0.966551,0.966554,0.966563,0.966544,0.966544,0.966544,0.966544,0.348013,0.34796,0.347959,0.347958,0.347959,0.347962,0.347956,0.347956,0.180421,0.180421,19.99605,19.999696,19.999803,19.999838,19.999787,19.999595,20,20,20,20,,,,,,,,,,,2064,2064,0.966544,0.966544,0.966544,0.966544,0.966544,0.966544,0.966544,0.966544,0.347956,0.347956,20,20,, +21827,0,0.958048,1,1,0,2,7,,4,5,Fosdick,Rd,4600011,0,0.958,0,20.529589,6.55,4.5,2.299314,2.299314,2.299314,2.299314,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,,,,,,,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,0.862243,0.862243,0.862243,0.862243,0.862243,0.862243,0.862243,0.862243,0.450282,0.450282,25,25,25,25,25,24.999999,25,25,25,25,,,,,,,,,,,2064,2064,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,2.299314,0.862243,0.862243,25,25,, +25015,0,0.626597,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.427083,0.15,4,2.506389,2.506389,2.506389,2.506389,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,,,,,,,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,0.864704,0.864704,0.864704,0.864704,0.864704,0.864704,0.864704,0.864704,0.444884,0.444884,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,2.506389,0.864704,0.864704,15,15,, +25017,0,0.400492,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.581977,0.15,4,1.601969,1.601969,1.601969,1.601969,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,,,,,,,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,0.552679,0.552679,0.552679,0.552679,0.552679,0.552679,0.552679,0.552679,0.28435,0.28435,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,1.601969,0.552679,0.552679,15,15,, +26345,0,0.760211,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.290242,0.15,4,3.040845,3.040845,3.040845,3.040845,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,,,,,,,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,1.049092,1.049092,1.049092,1.049092,1.049092,1.049092,1.049092,1.049092,0.53975,0.53975,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,3.040845,1.049092,1.049092,15,15,, +30123,0,0.258711,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.543816,0.15,4,1.034846,1.034846,1.034846,1.034846,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,,,,,,,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,0.357022,0.357022,0.357022,0.357022,0.357022,0.357022,0.357022,0.357022,0.183685,0.183685,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,1.034846,0.357022,0.357022,15,15,, +10714,0,1.030111,1,1,0,2,5,,5,5,Moon,Rd,1433104,3.531,4.561,0,22.073811,3.7,5,2.060222,2.060222,2.060222,2.060222,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.092632,2.060997,2.060222,2.060222,2.092632,2.060997,2.061352,2.061371,2.060222,2.060222,2.061352,2.061371,2.06372,2.073185,2.060222,2.060222,2.06372,2.073185,2.060222,2.060222,2.060222,2.060222,2.060222,2.060222,,,,,,,2.092632,2.060997,2.061352,2.061371,2.06372,2.073185,2.060222,2.060222,2.060222,2.060222,0.81321,0.803719,0.803826,0.803831,0.804536,0.807375,0.803487,0.803487,0.422346,0.422346,29.535373,29.988728,29.983565,29.983287,29.949161,29.812431,30,30,30,30,,,,,,,,,,,2580,2580,2.060222,2.060222,2.060222,2.060222,2.060222,2.060222,2.060222,2.060222,0.803487,0.803487,30,30,, +22017,0,0.401237,1,1,0,2,4,,4,5,Bemis,Rd,4604906,1.327,1.728,0,8.597931,4.5,4.5,0.633532,0.633532,0.633532,0.633532,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.780786,0.702167,0.633532,0.633532,0.780786,0.702167,0.645438,0.643441,0.633532,0.633532,0.645438,0.643441,0.832565,0.852838,0.633532,0.633532,0.832565,0.852838,0.633532,0.633532,0.633532,0.633532,0.633532,0.633532,,,,,,,0.780786,0.702167,0.645438,0.643441,0.832565,0.852838,0.633532,0.633532,0.633532,0.633532,0.306458,0.282873,0.265854,0.265255,0.321992,0.328074,0.262282,0.262282,0.139166,0.139166,30.833295,34.285572,37.29901,37.414807,28.915727,28.228352,38,38,38,38,,,,,,,,,,,3096,3096,0.633532,0.633532,0.633532,0.633532,0.633532,0.633532,0.633532,0.633532,0.262282,0.262282,38,38,, +10715,0,1.001316,1,1,0,2,5,,5,5,Moon,Rd,1433104,2.53,3.531,0,21.456778,3.7,5,2.002633,2.002633,2.002633,2.002633,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.010787,2.002764,2.002633,2.002633,2.010787,2.002764,2.002782,2.002864,2.002633,2.002633,2.002782,2.002864,2.002979,2.005125,2.002633,2.002633,2.002979,2.005125,2.002633,2.002633,2.002633,2.002633,2.002633,2.002633,,,,,,,2.010787,2.002764,2.002782,2.002864,2.002979,2.005125,2.002633,2.002633,2.002633,2.002633,0.783473,0.781066,0.781072,0.781096,0.781131,0.781774,0.781027,0.781027,0.41054,0.41054,29.878345,29.998035,29.997757,29.996536,29.994812,29.962711,30,30,30,30,,,,,,,,,,,2580,2580,2.002633,2.002633,2.002633,2.002633,2.002633,2.002633,2.002633,2.002633,0.781027,0.781027,30,30,, +21738,0,0.506439,1,1,0,2,4,,4,5,Bemis,Rd,4604906,1.728,2.234,0,10.852274,4.5,4.5,0.799641,0.799641,0.799641,0.799641,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.803535,0.820534,0.799641,0.799641,0.803535,0.820534,0.800163,0.800085,0.799641,0.799641,0.800163,0.800085,0.838521,0.812249,0.799641,0.799641,0.838521,0.812249,0.799641,0.799641,0.799641,0.799641,0.799641,0.799641,,,,,,,0.803535,0.820534,0.800163,0.800085,0.838521,0.812249,0.799641,0.799641,0.799641,0.799641,0.332219,0.337319,0.331208,0.331184,0.342715,0.334834,0.331051,0.331051,0.175655,0.175655,37.815876,37.032445,37.975221,37.978945,36.238056,37.410163,38,38,38,38,,,,,,,,,,,3096,3096,0.799641,0.799641,0.799641,0.799641,0.799641,0.799641,0.799641,0.799641,0.331051,0.331051,38,38,, +21525,0,0.036613,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.234,2.271,0,0.784562,4.5,4.5,0.05781,0.05781,0.05781,0.05781,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.058169,0.059786,0.05781,0.05781,0.058169,0.059786,0.057865,0.057859,0.05781,0.05781,0.057865,0.057859,0.061637,0.059046,0.05781,0.05781,0.061637,0.059046,0.05781,0.05781,0.05781,0.05781,0.05781,0.05781,,,,,,,0.058169,0.059786,0.057865,0.057859,0.061637,0.059046,0.05781,0.05781,0.05781,0.05781,0.024041,0.024526,0.02395,0.023948,0.025081,0.024304,0.023933,0.023933,0.012699,0.012699,37.76507,36.743857,37.963619,37.967493,35.640747,37.204151,38,38,38,38,,,,,,,,,,,3096,3096,0.05781,0.05781,0.05781,0.05781,0.05781,0.05781,0.05781,0.05781,0.023933,0.023933,38,38,, +10037,0,0.577224,1,1,0,2,4,,4,5,State,Rd,1427508,0,0.577,0,12.36909,4.5,4.5,0.911407,0.911407,0.911407,0.911407,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.217602,0.929555,0.911407,0.911407,1.217602,0.929555,0.957455,0.951554,0.911407,0.911407,0.957455,0.951554,1.033448,1.174688,0.911407,0.911407,1.033448,1.174688,0.911407,0.911407,0.911407,0.911407,0.911407,0.911407,,,,,,,1.217602,0.929555,0.957455,0.951554,1.033448,1.174688,0.911407,0.911407,0.911407,0.911407,0.469181,0.382767,0.391137,0.389367,0.413935,0.456307,0.377322,0.377322,0.200206,0.200206,28.443986,37.258106,36.172405,36.396727,33.51251,29.483104,38,38,38,38,,,,,,,,,,,3096,3096,0.911407,0.911407,0.911407,0.911407,0.911407,0.911407,0.911407,0.911407,0.377322,0.377322,38,38,, +10098,0,0.285331,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.999,14.284,0,6.114228,3.7,5,0.427996,0.427996,0.427996,0.427996,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.554975,0.591261,0.427996,0.427996,0.554975,0.591261,0.499051,0.503614,0.427996,0.427996,0.499051,0.503614,0.583688,0.614888,0.427996,0.427996,0.583688,0.614888,0.427996,0.427996,0.427996,0.427996,0.427996,0.427996,,,,,,,0.554975,0.591261,0.499051,0.503614,0.583688,0.614888,0.427996,0.427996,0.427996,0.427996,0.217852,0.228738,0.201075,0.202444,0.226466,0.235826,0.179758,0.179758,0.095586,0.095586,30.847927,28.954773,34.304799,33.993975,29.330452,27.842194,40,40,40,40,,,,,,,,,,,3784,3784,0.427996,0.427996,0.427996,0.427996,0.427996,0.427996,0.427996,0.427996,0.179758,0.179758,40,40,, +10100,0,0.080395,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.639,13.719,0,1.722753,3.7,5,0.120593,0.120593,0.120593,0.120593,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.142765,0.141291,0.120593,0.120593,0.142765,0.141291,0.132718,0.133127,0.120593,0.120593,0.132718,0.133127,0.139034,0.14796,0.120593,0.120593,0.139034,0.14796,0.120593,0.120593,0.120593,0.120593,0.120593,0.120593,,,,,,,0.142765,0.141291,0.132718,0.133127,0.139034,0.14796,0.120593,0.120593,0.120593,0.120593,0.057301,0.056859,0.054286,0.054409,0.056181,0.058859,0.050649,0.050649,0.026932,0.026932,33.787778,34.140165,36.345628,36.23391,34.694564,32.601332,40,40,40,40,,,,,,,,,,,3784,3784,0.120593,0.120593,0.120593,0.120593,0.120593,0.120593,0.120593,0.120593,0.050649,0.050649,40,40,, +10914,0,0.486908,1,1,0,2,4,,4,5,Textile,Rd,1432903,6.787,7.274,0,10.433745,4.5,4.5,0.768802,0.768802,0.768802,0.768802,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.883704,1.125495,0.768802,0.768802,0.883704,1.125495,0.815612,0.824764,0.768802,0.768802,0.815612,0.824764,1.101218,0.991017,0.768802,0.768802,1.101218,0.991017,0.768802,0.768802,0.768802,0.768802,0.768802,0.768802,,,,,,,0.883704,1.125495,0.815612,0.824764,1.101218,0.991017,0.768802,0.768802,0.768802,0.768802,0.352755,0.425292,0.332327,0.335073,0.418009,0.384948,0.318284,0.318284,0.16888,0.16888,33.059149,25.957,35.819096,35.42163,26.529251,29.479308,38,38,38,38,,,,,,,,,,,3096,3096,0.768802,0.768802,0.768802,0.768802,0.768802,0.768802,0.768802,0.768802,0.318284,0.318284,38,38,, +19638,0,0.259682,1,1,0,2,7,,4,5,Old State,Rd,1842602,0,0.26,0,5.564606,6.55,4.5,0.623236,0.623236,0.623236,0.623236,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.62377,0.62324,0.623236,0.623236,0.62377,0.62324,0.623263,0.623245,0.623236,0.623236,0.623263,0.623245,0.623288,0.623645,0.623236,0.623236,0.623288,0.623645,0.623236,0.623236,0.623236,0.623236,0.623236,0.623236,,,,,,,0.62377,0.62324,0.623263,0.623245,0.623288,0.623645,0.623236,0.623236,0.623236,0.623236,0.233874,0.233715,0.233722,0.233716,0.233729,0.233836,0.233713,0.233713,0.12205,0.12205,24.978612,24.999833,24.998914,24.999643,24.997927,24.983609,25,25,25,25,,,,,,,,,,,2064,2064,0.623236,0.623236,0.623236,0.623236,0.623236,0.623236,0.623236,0.623236,0.233713,0.233713,25,25,, +21826,0,0.353888,1,1,0,2,7,,4,5,Fosdick,Rd,4600011,0.958,1.312,0,7.583311,6.55,4.5,0.849331,0.849331,0.849331,0.849331,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.849386,0.849331,0.849331,0.849331,0.849386,0.849331,0.849334,0.849333,0.849331,0.849331,0.849334,0.849333,0.849341,0.849426,0.849331,0.849331,0.849341,0.849426,0.849331,0.849331,0.849331,0.849331,0.849331,0.849331,,,,,,,0.849386,0.849331,0.849334,0.849333,0.849341,0.849426,0.849331,0.849331,0.849331,0.849331,0.318516,0.318499,0.3185,0.3185,0.318502,0.318528,0.318499,0.318499,0.166327,0.166327,24.998377,24.999989,24.999896,24.999926,24.999709,24.997197,25,25,25,25,,,,,,,,,,,2064,2064,0.849331,0.849331,0.849331,0.849331,0.849331,0.849331,0.849331,0.849331,0.318499,0.318499,25,25,, +25491,0,0.601947,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.898856,0.15,4,2.407786,2.407786,2.407786,2.407786,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,,,,,,,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,0.830686,0.830686,0.830686,0.830686,0.830686,0.830686,0.830686,0.830686,0.427382,0.427382,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,2.407786,0.830686,0.830686,15,15,, +26313,0,0.39161,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.391635,0.15,4,1.566439,1.566439,1.566439,1.566439,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,,,,,,,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,0.540421,0.540421,0.540421,0.540421,0.540421,0.540421,0.540421,0.540421,0.278043,0.278043,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,1.566439,0.540421,0.540421,15,15,, +25016,0,0.413171,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.853671,0.15,4,1.652685,1.652685,1.652685,1.652685,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,,,,,,,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,0.570176,0.570176,0.570176,0.570176,0.570176,0.570176,0.570176,0.570176,0.293352,0.293352,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,1.652685,0.570176,0.570176,15,15,, +25018,0,0.563785,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.081115,0.15,4,2.255141,2.255141,2.255141,2.255141,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,,,,,,,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,0.778024,0.778024,0.778024,0.778024,0.778024,0.778024,0.778024,0.778024,0.400288,0.400288,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,2.255141,0.778024,0.778024,15,15,, +10372,0,0.26544,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.374,13.639,0,5.687998,3.7,5,0.39816,0.39816,0.39816,0.39816,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.751842,0.87764,0.39816,0.39816,0.751842,0.87764,0.64108,0.634514,0.39816,0.39816,0.64108,0.634514,0.977855,0.901582,0.39816,0.39816,0.977855,0.901582,0.39816,0.39816,0.39816,0.39816,0.39816,0.39816,,,,,,,0.751842,0.87764,0.64108,0.634514,0.977855,0.901582,0.39816,0.39816,0.39816,0.39816,0.273332,0.311071,0.240103,0.238133,0.341136,0.318254,0.167227,0.167227,0.088922,0.088922,21.183163,18.146838,24.843064,25.100164,16.287072,17.66495,40,40,40,40,,,,,,,,,,,3784,3784,0.39816,0.39816,0.39816,0.39816,0.39816,0.39816,0.39816,0.39816,0.167227,0.167227,40,40,, +10709,0,0.146299,1,1,0,2,4,,4,5,Moon,Rd,1433104,5.407,5.554,0,3.134983,4.5,4.5,0.230999,0.230999,0.230999,0.230999,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.288774,0.231699,0.230999,0.230999,0.288774,0.231699,0.233331,0.233232,0.230999,0.230999,0.233331,0.233232,0.239077,0.279669,0.230999,0.230999,0.239077,0.279669,0.230999,0.230999,0.230999,0.230999,0.230999,0.230999,,,,,,,0.288774,0.231699,0.233331,0.233232,0.239077,0.279669,0.230999,0.230999,0.230999,0.230999,0.112966,0.095844,0.096333,0.096304,0.098057,0.110234,0.095633,0.095633,0.050743,0.050743,30.397308,37.88511,37.620246,37.636074,36.715956,31.386959,38,38,38,38,,,,,,,,,,,3096,3096,0.230999,0.230999,0.230999,0.230999,0.230999,0.230999,0.230999,0.230999,0.095633,0.095633,38,38,, +10104,0,0.106831,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.267,13.374,0,2.289226,3.7,5,0.160246,0.160246,0.160246,0.160246,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.290731,0.23685,0.160246,0.160246,0.290731,0.23685,0.223747,0.223557,0.160246,0.160246,0.223747,0.223557,0.262556,0.289909,0.160246,0.160246,0.262556,0.289909,0.160246,0.160246,0.160246,0.160246,0.160246,0.160246,,,,,,,0.290731,0.23685,0.223747,0.223557,0.262556,0.289909,0.160246,0.160246,0.160246,0.160246,0.106449,0.090285,0.086354,0.086297,0.097996,0.106202,0.067303,0.067303,0.035788,0.035788,22.047307,27.062815,28.647693,28.671977,24.413206,22.10982,40,40,40,40,,,,,,,,,,,3784,3784,0.160246,0.160246,0.160246,0.160246,0.160246,0.160246,0.160246,0.160246,0.067303,0.067303,40,40,, +10916,0,0.481329,1,1,0,2,4,,4,5,Textile,Rd,1432903,6.306,6.787,0,10.3142,4.5,4.5,0.759994,0.759994,0.759994,0.759994,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.764261,0.767735,0.759994,0.759994,0.764261,0.767735,0.760497,0.760651,0.759994,0.759994,0.760497,0.760651,0.763973,0.766222,0.759994,0.759994,0.763973,0.766222,0.759994,0.759994,0.759994,0.759994,0.759994,0.759994,,,,,,,0.764261,0.767735,0.760497,0.760651,0.763973,0.766222,0.759994,0.759994,0.759994,0.759994,0.315918,0.31696,0.314788,0.314835,0.315831,0.316506,0.314637,0.314637,0.166945,0.166945,37.787835,37.616829,37.974856,37.967175,37.802088,37.69113,38,38,38,38,,,,,,,,,,,3096,3096,0.759994,0.759994,0.759994,0.759994,0.759994,0.759994,0.759994,0.759994,0.314637,0.314637,38,38,, +26344,0,0.641705,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.750812,0.15,4,2.566818,2.566818,2.566818,2.566818,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.566818,2.566819,2.566818,2.566818,2.566818,2.566819,2.566818,2.566818,2.566818,2.566818,2.566818,2.566818,2.566819,2.566818,2.566818,2.566818,2.566819,2.566818,2.566818,2.566818,2.566818,2.566818,2.566818,2.566818,,,,,,,2.566818,2.566819,2.566818,2.566818,2.566819,2.566818,2.566818,2.566818,2.566818,2.566818,0.885552,0.885552,0.885552,0.885552,0.885552,0.885552,0.885552,0.885552,0.45561,0.45561,14.999999,14.999998,14.999999,14.999999,14.999997,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.566818,2.566818,2.566818,2.566818,2.566818,2.566818,2.566818,2.566818,0.885552,0.885552,15,15,, +25014,0,0.501685,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.750384,0.15,4,2.006738,2.006738,2.006738,2.006738,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,,,,,,,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,0.692325,0.692325,0.692325,0.692325,0.692325,0.692325,0.692325,0.692325,0.356196,0.356196,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,2.006738,0.692325,0.692325,15,15,, +10371,0,0.279641,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.719,13.999,0,5.992309,3.7,5,0.419462,0.419462,0.419462,0.419462,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.524285,0.508901,0.419462,0.419462,0.524285,0.508901,0.471668,0.470788,0.419462,0.419462,0.471668,0.470788,0.503675,0.548097,0.419462,0.419462,0.503675,0.548097,0.419462,0.419462,0.419462,0.419462,0.419462,0.419462,,,,,,,0.524285,0.508901,0.471668,0.470788,0.503675,0.548097,0.419462,0.419462,0.419462,0.419462,0.207621,0.203006,0.191836,0.191572,0.201438,0.214765,0.176174,0.176174,0.09368,0.09368,32.002542,32.969971,35.572605,35.639147,33.312117,30.612195,40,40,40,40,,,,,,,,,,,3784,3784,0.419462,0.419462,0.419462,0.419462,0.419462,0.419462,0.419462,0.419462,0.176174,0.176174,40,40,, +30122,0,0.34485,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.389635,0.15,4,1.379398,1.379398,1.379398,1.379398,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,,,,,,,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,0.475892,0.475892,0.475892,0.475892,0.475892,0.475892,0.475892,0.475892,0.244843,0.244843,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,1.379398,0.475892,0.475892,15,15,, +9531,0,0.617749,1,1,0,2,4,,4,5,State,Rd,1427508,0.577,1.195,0,13.237474,4.5,4.5,0.975393,0.975393,0.975393,0.975393,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.621075,1.005662,0.975393,0.975393,1.621075,1.005662,1.060057,1.04214,0.975393,0.975393,1.060057,1.04214,1.191865,1.521911,0.975393,0.975393,1.191865,1.521911,0.975393,0.975393,0.975393,0.975393,0.975393,0.975393,,,,,,,1.621075,1.005662,1.060057,1.04214,1.191865,1.521911,0.975393,0.975393,0.975393,0.975393,0.597517,0.412893,0.429212,0.423837,0.468754,0.567768,0.403813,0.403813,0.214261,0.214261,22.864408,36.856255,34.965035,35.56616,31.09827,24.354204,38,38,38,38,,,,,,,,,,,3096,3096,0.975393,0.975393,0.975393,0.975393,0.975393,0.975393,0.975393,0.975393,0.403813,0.403813,38,38,, +20135,0,1.008004,1,1,0,2,5,,5,5,Platt,Rd,4302160,4.071,5.078,0,21.600087,3.7,5,2.016008,2.016008,2.016008,2.016008,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.016008,2.016573,2.016008,2.016008,2.016008,2.016573,2.016008,2.016747,2.016008,2.016008,2.016008,2.016747,2.016008,2.02347,2.016008,2.016008,2.016008,2.02347,2.016008,2.016008,2.016008,2.016008,2.016008,2.016008,,,,,,,2.016008,2.016573,2.016008,2.016747,2.016008,2.02347,2.016008,2.016008,2.016008,2.016008,0.786243,0.786413,0.786243,0.786465,0.786243,0.788482,0.786243,0.786243,0.413282,0.413282,29.999997,29.991594,30,29.989011,30,29.889365,30,30,30,30,,,,,,,,,,,2580,2580,2.016008,2.016008,2.016008,2.016008,2.016008,2.016008,2.016008,2.016008,0.786243,0.786243,30,30,, +21800,0,1.038376,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.773,3.811,0,22.250909,4.5,4.5,1.639541,1.639541,1.639541,1.639541,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.023827,1.863778,1.639541,1.639541,2.023827,1.863778,1.660274,1.655483,1.639541,1.639541,1.660274,1.655483,2.065613,2.178367,1.639541,1.639541,2.065613,2.178367,1.639541,1.639541,1.639541,1.639541,1.639541,1.639541,,,,,,,2.023827,1.863778,1.660274,1.655483,2.065613,2.178367,1.639541,1.639541,1.639541,1.639541,0.794056,0.746041,0.68499,0.683553,0.806591,0.840418,0.67877,0.67877,0.360152,0.360152,30.784514,33.4281,37.525461,37.634053,30.161773,28.600568,38,38,38,38,,,,,,,,,,,3096,3096,1.639541,1.639541,1.639541,1.639541,1.639541,1.639541,1.639541,1.639541,0.67877,0.67877,38,38,, +22068,0,0.033789,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.739,2.773,0,0.724059,4.5,4.5,0.053352,0.053352,0.053352,0.053352,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.070261,0.061185,0.053352,0.053352,0.070261,0.061185,0.054101,0.053917,0.053352,0.053352,0.054101,0.053917,0.071043,0.076368,0.053352,0.053352,0.071043,0.076368,0.053352,0.053352,0.053352,0.053352,0.053352,0.053352,,,,,,,0.070261,0.061185,0.054101,0.053917,0.071043,0.076368,0.053352,0.053352,0.053352,0.053352,0.02716,0.024438,0.022312,0.022257,0.027395,0.028993,0.022088,0.022088,0.01172,0.01172,28.85467,33.134992,37.473755,37.601339,28.537085,26.547183,38,38,38,38,,,,,,,,,,,3096,3096,0.053352,0.053352,0.053352,0.053352,0.053352,0.053352,0.053352,0.053352,0.022088,0.022088,38,38,, +20830,0,1.00536,1,1,0,2,5,,5,5,Platt,Rd,4302160,5.078,6.083,0,21.543431,3.7,5,2.01072,2.01072,2.01072,2.01072,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.01579,2.010736,2.01072,2.01072,2.01579,2.010736,2.01074,2.010723,2.01072,2.01072,2.01074,2.010723,2.012363,2.01087,2.01072,2.01072,2.012363,2.01087,2.01072,2.01072,2.01072,2.01072,2.01072,2.01072,,,,,,,2.01579,2.010736,2.01074,2.010723,2.012363,2.01087,2.01072,2.01072,2.01072,2.01072,0.785702,0.784186,0.784187,0.784182,0.784674,0.784226,0.784181,0.784181,0.412198,0.412198,29.924547,29.99977,29.999701,29.999959,29.975516,29.997761,30,30,30,30,,,,,,,,,,,2580,2580,2.01072,2.01072,2.01072,2.01072,2.01072,2.01072,2.01072,2.01072,0.784181,0.784181,30,30,, +10097,0,0.460454,1,1,1,2,3,,4,5,Michigan,Ave,1427301,15.495,15.955,0,9.86687,3.7,5,0.690681,0.690681,0.690681,0.690681,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.87965,0.839945,0.690681,0.690681,0.87965,0.839945,0.743393,0.743764,0.690681,0.690681,0.743393,0.743764,0.819624,0.844512,0.690681,0.690681,0.819624,0.844512,0.690681,0.690681,0.690681,0.690681,0.690681,0.690681,,,,,,,0.87965,0.839945,0.743393,0.743764,0.819624,0.844512,0.690681,0.690681,0.690681,0.690681,0.346777,0.334865,0.3059,0.306011,0.328769,0.336235,0.290086,0.290086,0.154252,0.154252,31.407094,32.891712,37.1637,37.145151,33.707188,32.71383,40,40,40,40,,,,,,,,,,,4162,4162,0.690681,0.690681,0.690681,0.690681,0.690681,0.690681,0.690681,0.690681,0.290086,0.290086,40,40,, +10911,0,0.603658,1,1,0,2,4,,4,5,Textile,Rd,1432903,8.43,9.034,0,12.93552,4.5,4.5,0.953144,0.953144,0.953144,0.953144,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.045569,1.352308,0.953144,0.953144,1.045569,1.352308,1.006056,1.026402,0.953144,0.953144,1.006056,1.026402,1.221318,1.117518,0.953144,0.953144,1.221318,1.117518,0.953144,0.953144,0.953144,0.953144,0.953144,0.953144,,,,,,,1.045569,1.352308,1.006056,1.026402,1.221318,1.117518,0.953144,0.953144,0.953144,0.953144,0.422329,0.514351,0.410475,0.416579,0.475054,0.443914,0.394601,0.394601,0.209374,0.209374,34.640908,26.783445,36.001443,35.287775,29.656042,32.410631,38,38,38,38,,,,,,,,,,,3096,3096,0.953144,0.953144,0.953144,0.953144,0.953144,0.953144,0.953144,0.953144,0.394601,0.394601,38,38,, +20385,0,0.383536,1,1,0,2,5,,4,5,Platt,Rd,4302160,7.105,7.489,0,8.218633,5.8,4.5,0.852303,0.852303,0.852303,0.852303,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.879496,0.852313,0.852303,0.852303,0.879496,0.852313,0.852321,0.852305,0.852303,0.852303,0.852321,0.852305,0.853849,0.854744,0.852303,0.852303,0.853849,0.854744,0.852303,0.852303,0.852303,0.852303,0.852303,0.852303,,,,,,,0.879496,0.852313,0.852321,0.852305,0.853849,0.854744,0.852303,0.852303,0.852303,0.852303,0.332885,0.32473,0.324733,0.324728,0.325191,0.32546,0.324727,0.324727,0.170034,0.170034,26.165196,26.999683,26.999418,26.99992,26.951118,26.922875,27,27,27,27,,,,,,,,,,,2580,2580,0.852303,0.852303,0.852303,0.852303,0.852303,0.852303,0.852303,0.852303,0.324727,0.324727,27,27,, +21696,0,0.233327,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,1.173,1.407,0,4.99987,6.55,4.5,0.699982,0.699982,0.699982,0.699982,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.704698,0.7,0.699982,0.699982,0.704698,0.7,0.700047,0.70001,0.699982,0.699982,0.700047,0.70001,0.700092,0.70156,0.699982,0.699982,0.700092,0.70156,0.699982,0.699982,0.699982,0.699982,0.699982,0.699982,,,,,,,0.704698,0.7,0.700047,0.70001,0.700092,0.70156,0.699982,0.699982,0.699982,0.699982,0.253408,0.251999,0.252013,0.252002,0.252026,0.252467,0.251993,0.251993,0.130663,0.130663,19.866162,19.999474,19.998131,19.99919,19.996857,19.955002,20,20,20,20,,,,,,,,,,,2064,2064,0.699982,0.699982,0.699982,0.699982,0.699982,0.699982,0.699982,0.699982,0.251993,0.251993,20,20,, +26341,0,0.733705,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.722257,0.15,4,2.934821,2.934821,2.934821,2.934821,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,,,,,,,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,1.012513,1.012513,1.012513,1.012513,1.012513,1.012513,1.012513,1.012513,0.520931,0.520931,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,2.934821,1.012513,1.012513,15,15,, +26342,0,0.880086,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.858996,0.15,4,3.520346,3.520346,3.520346,3.520346,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,,,,,,,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,1.214519,1.214519,1.214519,1.214519,1.214519,1.214519,1.214519,1.214519,0.624861,0.624861,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,3.520346,1.214519,1.214519,15,15,, +29489,0,1.044452,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.381118,0.15,4,4.177809,4.177809,4.177809,4.177809,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,,,,,,,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,1.441344,1.441344,1.441344,1.441344,1.441344,1.441344,1.441344,1.441344,0.741561,0.741561,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,4.177809,1.441344,1.441344,15,15,, +21401,0,0.509083,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,0.322,0.831,0,10.908923,6.55,4.5,1.527249,1.527249,1.527249,1.527249,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.527259,1.527249,1.527249,1.527249,1.527259,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,,,,,,,1.527259,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,0.549813,0.54981,0.54981,0.54981,0.54981,0.54981,0.54981,0.54981,0.285087,0.285087,19.999879,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2064,2064,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,1.527249,0.54981,0.54981,20,20,, +26343,0,0.749836,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.067924,0.15,4,2.999346,2.999346,2.999346,2.999346,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,,,,,,,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,1.034774,1.034774,1.034774,1.034774,1.034774,1.034774,1.034774,1.034774,0.532384,0.532384,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,2.999346,1.034774,1.034774,15,15,, +30124,0,0.592704,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.7008,0.15,4,2.370816,2.370816,2.370816,2.370816,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,,,,,,,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,0.817932,0.817932,0.817932,0.817932,0.817932,0.817932,0.817932,0.817932,0.42082,0.42082,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,2.370816,0.817932,0.817932,15,15,, +21950,0,0.342503,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,0.831,1.173,0,7.339347,6.55,4.5,1.027509,1.027509,1.027509,1.027509,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.028108,1.02751,1.027509,1.027509,1.028108,1.02751,1.027512,1.027511,1.027509,1.027509,1.027512,1.027511,1.027514,1.027602,1.027509,1.027509,1.027514,1.027602,1.027509,1.027509,1.027509,1.027509,1.027509,1.027509,,,,,,,1.028108,1.02751,1.027512,1.027511,1.027514,1.027602,1.027509,1.027509,1.027509,1.027509,0.370083,0.369903,0.369904,0.369904,0.369905,0.369931,0.369903,0.369903,0.191802,0.191802,19.988335,19.999978,19.999931,19.999949,19.999903,19.998178,20,20,20,20,,,,,,,,,,,2064,2064,1.027509,1.027509,1.027509,1.027509,1.027509,1.027509,1.027509,1.027509,0.369903,0.369903,20,20,, +10370,0,0.272734,1,1,0,2,3,,4,5,Michigan,Ave,1427301,14.836,15.109,0,5.844305,3.7,5,0.409101,0.409101,0.409101,0.409101,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.572579,0.492379,0.409101,0.409101,0.572579,0.492379,0.467359,0.465895,0.409101,0.409101,0.467359,0.465895,0.491114,0.573944,0.409101,0.409101,0.491114,0.573944,0.409101,0.409101,0.409101,0.409101,0.409101,0.409101,,,,,,,0.572579,0.492379,0.467359,0.465895,0.491114,0.573944,0.409101,0.409101,0.409101,0.409101,0.220866,0.196806,0.1893,0.188861,0.196426,0.221275,0.171823,0.171823,0.091366,0.091366,28.579581,33.234697,35.01389,35.123925,33.320293,28.511604,40,40,40,40,,,,,,,,,,,3784,3784,0.409101,0.409101,0.409101,0.409101,0.409101,0.409101,0.409101,0.409101,0.171823,0.171823,40,40,, +10912,0,0.191666,1,1,0,2,4,,4,5,Textile,Rd,1432903,8.239,8.43,0,4.107122,4.5,4.5,0.30263,0.30263,0.30263,0.30263,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.335033,0.348283,0.30263,0.30263,0.335033,0.348283,0.315288,0.317895,0.30263,0.30263,0.315288,0.317895,0.349645,0.352823,0.30263,0.30263,0.349645,0.352823,0.30263,0.30263,0.30263,0.30263,0.30263,0.30263,,,,,,,0.335033,0.348283,0.315288,0.317895,0.349645,0.352823,0.30263,0.30263,0.30263,0.30263,0.13501,0.138985,0.129086,0.129868,0.139393,0.140347,0.125289,0.125289,0.066478,0.066478,34.32483,33.018935,36.474426,36.175247,32.890341,32.594052,38,38,38,38,,,,,,,,,,,3096,3096,0.30263,0.30263,0.30263,0.30263,0.30263,0.30263,0.30263,0.30263,0.125289,0.125289,38,38,, +25019,0,0.403415,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.644598,0.15,4,1.613658,1.613658,1.613658,1.613658,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,,,,,,,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,0.556712,0.556712,0.556712,0.556712,0.556712,0.556712,0.556712,0.556712,0.286424,0.286424,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,1.613658,0.556712,0.556712,15,15,, +25021,0,0.387845,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.310966,0.15,4,1.55138,1.55138,1.55138,1.55138,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,,,,,,,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,0.535226,0.535226,0.535226,0.535226,0.535226,0.535226,0.535226,0.535226,0.27537,0.27537,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,1.55138,0.535226,0.535226,15,15,, +10368,0,0.386205,1,1,0,2,3,,4,5,Michigan,Ave,1427301,15.109,15.495,0,8.275819,3.7,5,0.579307,0.579307,0.579307,0.579307,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.773578,0.781046,0.579307,0.579307,0.773578,0.781046,0.650512,0.651013,0.579307,0.579307,0.650512,0.651013,0.753285,0.786865,0.579307,0.579307,0.753285,0.786865,0.579307,0.579307,0.579307,0.579307,0.579307,0.579307,,,,,,,0.773578,0.781046,0.650512,0.651013,0.753285,0.786865,0.579307,0.579307,0.579307,0.579307,0.30159,0.303831,0.26467,0.264821,0.295502,0.305576,0.243309,0.243309,0.129379,0.129379,29.954695,29.668299,35.621648,35.59421,30.761647,29.448865,40,40,40,40,,,,,,,,,,,3784,3784,0.579307,0.579307,0.579307,0.579307,0.579307,0.579307,0.579307,0.579307,0.243309,0.243309,40,40,, +29490,0,0.372834,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.989309,0.15,4,1.491338,1.491338,1.491338,1.491338,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,,,,,,,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,0.514511,0.514511,0.514511,0.514511,0.514511,0.514511,0.514511,0.514511,0.264712,0.264712,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,1.491338,0.514511,0.514511,15,15,, +9587,0,0.18305,1,1,1,2,3,,4,5,Michigan,Ave,1427301,15.955,16.138,0,3.922495,3.7,5,0.274575,0.274575,0.274575,0.274575,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.310103,0.31992,0.274575,0.274575,0.310103,0.31992,0.291104,0.297394,0.274575,0.274575,0.291104,0.297394,0.300998,0.330085,0.274575,0.274575,0.300998,0.330085,0.274575,0.274575,0.274575,0.274575,0.274575,0.274575,,,,,,,0.310103,0.31992,0.291104,0.297394,0.300998,0.330085,0.274575,0.274575,0.274575,0.274575,0.12598,0.128925,0.12028,0.122167,0.123248,0.131974,0.115321,0.115321,0.061322,0.061322,35.417231,34.330461,37.72875,36.930802,36.488524,33.273241,40,40,40,40,,,,,,,,,,,4162,4162,0.274575,0.274575,0.274575,0.274575,0.274575,0.274575,0.274575,0.274575,0.115321,0.115321,40,40,, +10910,0,0.167333,1,1,0,2,4,,4,5,Textile,Rd,1432903,9.034,9.201,0,3.585715,4.5,4.5,0.264211,0.264211,0.264211,0.264211,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.276796,0.282768,0.264211,0.264211,0.276796,0.282768,0.272244,0.276544,0.264211,0.264211,0.272244,0.276544,0.296339,0.276075,0.264211,0.264211,0.296339,0.276075,0.264211,0.264211,0.264211,0.264211,0.264211,0.264211,,,,,,,0.276796,0.282768,0.272244,0.276544,0.296339,0.276075,0.264211,0.264211,0.264211,0.264211,0.113159,0.11495,0.111793,0.113083,0.119022,0.112942,0.109383,0.109383,0.058038,0.058038,36.272174,35.506162,36.878717,36.30522,33.880071,36.366969,38,38,38,38,,,,,,,,,,,3096,3096,0.264211,0.264211,0.264211,0.264211,0.264211,0.264211,0.264211,0.264211,0.109383,0.109383,38,38,, +20183,0,0.561783,1,1,0,2,5,,4,5,Platt,Rd,4302160,7.489,8.05,0,12.038207,5.8,4.5,1.248407,1.248407,1.248407,1.248407,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.506961,1.24888,1.248407,1.248407,1.506961,1.24888,1.250323,1.249402,1.248407,1.248407,1.250323,1.249402,1.269361,1.323808,1.248407,1.248407,1.269361,1.323808,1.248407,1.248407,1.248407,1.248407,1.248407,1.248407,,,,,,,1.506961,1.24888,1.250323,1.249402,1.269361,1.323808,1.248407,1.248407,1.248407,1.248407,0.553209,0.475785,0.476218,0.475942,0.481929,0.498263,0.475643,0.475643,0.249057,0.249057,22.367522,26.989759,26.958611,26.978493,26.554283,25.46213,27,27,27,27,,,,,,,,,,,2580,2580,1.248407,1.248407,1.248407,1.248407,1.248407,1.248407,1.248407,1.248407,0.475643,0.475643,27,27,, +20878,0,0.06902,1,1,0,2,5,,4,5,Platt,Rd,4302160,8.05,8.119,0,1.479002,5.8,4.5,0.153378,0.153378,0.153378,0.153378,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.227507,0.153473,0.153378,0.153378,0.227507,0.153473,0.153886,0.153448,0.153378,0.153378,0.153886,0.153448,0.162622,0.162314,0.153378,0.153378,0.162622,0.162314,0.153378,0.153378,0.153378,0.153378,0.153378,0.153378,,,,,,,0.227507,0.153473,0.153886,0.153448,0.162622,0.162314,0.153378,0.153378,0.153378,0.153378,0.080676,0.058465,0.058589,0.058458,0.06121,0.061118,0.058437,0.058437,0.030599,0.030599,18.202573,26.983347,26.910871,26.987722,25.465188,25.513539,27,27,27,27,,,,,,,,,,,2580,2580,0.153378,0.153378,0.153378,0.153378,0.153378,0.153378,0.153378,0.153378,0.058437,0.058437,27,27,, +10364,0,0.19029,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.138,16.328,0,4.077639,3.7,5,0.285435,0.285435,0.285435,0.285435,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.594398,0.706538,0.285435,0.285435,0.594398,0.706538,0.443343,0.515918,0.285435,0.285435,0.443343,0.515918,0.666026,0.692232,0.285435,0.285435,0.666026,0.692232,0.285435,0.285435,0.285435,0.285435,0.285435,0.285435,,,,,,,0.594398,0.706538,0.443343,0.515918,0.666026,0.692232,0.285435,0.285435,0.285435,0.285435,0.212571,0.246214,0.167255,0.189027,0.23406,0.241922,0.119883,0.119883,0.063747,0.063747,19.20834,16.159628,25.752932,22.130261,17.142572,16.493598,40,40,40,40,,,,,,,,,,,4162,4162,0.285435,0.285435,0.285435,0.285435,0.285435,0.285435,0.285435,0.285435,0.119883,0.119883,40,40,, +8719,0,1.254387,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,1.02,2.274,0,26.879717,3,4,1.88158,1.88158,1.88158,1.88158,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.884879,1.913409,1.88158,1.88158,1.884879,1.913409,1.882648,1.882244,1.88158,1.88158,1.882648,1.882244,1.898789,1.889871,1.88158,1.88158,1.898789,1.889871,1.88158,1.88158,1.88158,1.88158,1.88158,1.88158,,,,,,,1.884879,1.913409,1.882648,1.882244,1.898789,1.889871,1.88158,1.88158,1.88158,1.88158,0.791253,0.799812,0.790584,0.790463,0.795426,0.792751,0.790264,0.790264,0.42022,0.42022,39.929998,39.334623,39.97731,39.985888,39.637486,39.824523,40,40,40,40,,,,,,,,,,,3096,3096,1.88158,1.88158,1.88158,1.88158,1.88158,1.88158,1.88158,1.88158,0.790264,0.790264,40,40,, +10480,0,0.565384,1,1,0,2,5,,5,5,Willow,Rd,1431207,2.886,3.451,0,12.11537,3.7,5,1.130768,1.130768,1.130768,1.130768,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.130768,1.130773,1.130768,1.130768,1.130768,1.130773,1.130768,1.130768,1.130768,1.130768,1.130768,1.130768,1.130771,1.130768,1.130768,1.130768,1.130771,1.130768,1.130768,1.130768,1.130768,1.130768,1.130768,1.130768,,,,,,,1.130768,1.130773,1.130768,1.130768,1.130771,1.130768,1.130768,1.130768,1.130768,1.130768,0.440999,0.441001,0.440999,0.440999,0.441001,0.440999,0.440999,0.440999,0.231807,0.231807,30,29.999864,30,30,29.999907,30,30,30,30,30,,,,,,,,,,,2580,2580,1.130768,1.130768,1.130768,1.130768,1.130768,1.130768,1.130768,1.130768,0.440999,0.440999,30,30,, +10953,0,1.005313,1,1,0,2,6,GRV,5,5,Gooding,Rd,1447502,1.007,2.012,0,21.542427,5.55,5,2.412752,2.412752,2.412752,2.412752,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,,,,,,,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,0.904782,0.904782,0.904782,0.904782,0.904782,0.904782,0.904782,0.904782,0.472497,0.472497,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,2.412752,0.904782,0.904782,25,25,, +11387,0,0.782753,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,1.22,2.002,0,16.773281,3,4,1.17413,1.17413,1.17413,1.17413,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.183057,1.174332,1.17413,1.17413,1.183057,1.174332,1.174166,1.174168,1.17413,1.17413,1.174166,1.174168,1.174516,1.179241,1.17413,1.17413,1.174516,1.179241,1.17413,1.17413,1.17413,1.17413,1.17413,1.17413,,,,,,,1.183057,1.174332,1.174166,1.174168,1.174516,1.179241,1.17413,1.17413,1.17413,1.17413,0.495813,0.493195,0.493145,0.493146,0.49325,0.494668,0.493134,0.493134,0.262222,0.262222,39.698154,39.993092,39.998751,39.998704,39.986832,39.82661,40,40,40,40,,,,,,,,,,,3096,3096,1.17413,1.17413,1.17413,1.17413,1.17413,1.17413,1.17413,1.17413,0.493134,0.493134,40,40,, +8903,0,0.752476,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,0.268,1.02,0,16.124484,3,4,1.128714,1.128714,1.128714,1.128714,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.130529,1.144419,1.128714,1.128714,1.130529,1.144419,1.129261,1.129047,1.128714,1.128714,1.129261,1.129047,1.136449,1.133049,1.128714,1.128714,1.136449,1.133049,1.128714,1.128714,1.128714,1.128714,1.128714,1.128714,,,,,,,1.130529,1.144419,1.129261,1.129047,1.136449,1.133049,1.128714,1.128714,1.128714,1.128714,0.474604,0.478771,0.474224,0.47416,0.47638,0.47536,0.47406,0.47406,0.252079,0.252079,39.935785,39.451065,39.980625,39.988193,39.727741,39.846969,40,40,40,40,,,,,,,,,,,3096,3096,1.128714,1.128714,1.128714,1.128714,1.128714,1.128714,1.128714,1.128714,0.47406,0.47406,40,40,, +8904,1,0.251487,1,0,0,1,2,ROF,5,6,S US 23/Main,RAMP,1223902,0,0.251,0,,2.24,5,0.37723,,0.37723,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.37723,,0.37723,,0.37723,,0.37723,,0.37723,,0.37723,,0.377238,,0.37723,,0.377238,,0.37723,,0.37723,,0.37723,,,,,,,,0.37723,,0.37723,,0.377238,,0.37723,,0.37723,,0.158437,,0.158437,,0.158439,,0.158437,,0.084248,,40,,39.999999,,39.999084,,40,,40,,,,,,,,,,,,5160,,0.37723,,0.37723,,0.37723,,0.37723,,0.158437,,40,,, +9125,1,0.363193,1,0,0,1,2,RON,5,6,Main/S US 23,RAMP,1226002,0,0.363,0,,1.09,4,0.484257,,0.484257,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.484454,,0.484257,,0.484454,,0.4843,,0.484257,,0.4843,,0.485075,,0.484257,,0.485075,,0.484257,,0.484257,,0.484257,,,,,,,,0.484454,,0.4843,,0.485075,,0.484257,,0.484257,,0.210711,,0.210665,,0.210897,,0.210652,,0.11259,,44.981636,,44.996011,,44.924082,,45,,45,,,,,,,,,,,,5160,,0.484257,,0.484257,,0.484257,,0.484257,,0.210652,,45,,, +9202,0,0.284294,1,1,0,2,4,,5,6,Main,St,1226001,0,0.284,0,6.092004,3,4,0.42644,0.42644,0.42644,0.42644,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.429019,0.435405,0.42644,0.42644,0.429019,0.435405,0.426908,0.42677,0.42644,0.42644,0.426908,0.42677,0.436919,0.429347,0.42644,0.42644,0.436919,0.429347,0.42644,0.42644,0.42644,0.42644,0.42644,0.42644,,,,,,,0.429019,0.435405,0.426908,0.42677,0.436919,0.429347,0.42644,0.42644,0.42644,0.42644,0.179878,0.181794,0.179245,0.179204,0.182249,0.179977,0.179105,0.179105,0.095238,0.095238,39.759595,39.17644,39.95614,39.969082,39.040676,39.729224,40,40,40,40,,,,,,,,,,,3096,3096,0.42644,0.42644,0.42644,0.42644,0.42644,0.42644,0.42644,0.42644,0.179105,0.179105,40,40,, +10506,1,0.769196,2,0,0,1,2,,4,5,N US 23,,1431202,0,0.769,0,,0.8,7.5,0.659311,,0.659311,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.678968,,0.659311,,0.678968,,0.659645,,0.659311,,0.659645,,0.660064,,0.659311,,0.660064,,0.659311,,0.659311,,0.659311,,,,,,,,0.678968,,0.659645,,0.660064,,0.659311,,0.659311,,0.342146,,0.336349,,0.336474,,0.336249,,0.183508,,67.973414,,69.964632,,69.920192,,70,,70,,,,,,,,,,,,15136,,0.659311,,0.659311,,0.659311,,0.659311,,0.336249,,70,,, +11399,0,0.103962,1,1,0,2,4,,4,5,Dexter,St,1431609,0.358,0.462,0,2.227757,4.5,4.5,0.164151,0.164151,0.164151,0.164151,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.219141,0.174833,0.164151,0.164151,0.219141,0.174833,0.169042,0.168759,0.164151,0.164151,0.169042,0.168759,0.197805,0.202745,0.164151,0.164151,0.197805,0.202745,0.164151,0.164151,0.164151,0.164151,0.164151,0.164151,,,,,,,0.219141,0.174833,0.169042,0.168759,0.197805,0.202745,0.164151,0.164151,0.164151,0.164151,0.084455,0.071163,0.069426,0.069341,0.078055,0.079537,0.067958,0.067958,0.036058,0.036058,28.464397,35.678097,36.900403,36.962395,31.534664,30.766258,38,38,38,38,,,,,,,,,,,3096,3096,0.164151,0.164151,0.164151,0.164151,0.164151,0.164151,0.164151,0.164151,0.067958,0.067958,38,38,, +11465,-1,1.155017,0,2,0,1,2,,5,5,S US 23,,1431603,0.252,1.407,0,,1.02,7,,0.990015,,0.990015,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.990869,,0.990015,,0.990869,,0.990571,,0.990015,,0.990571,,1.007513,,0.990015,,1.007513,,0.990015,,0.990015,,0.990015,,,,,,,,0.990869,,0.990571,,1.007513,,0.990015,,0.990015,,0.505164,,0.505074,,0.510157,,0.504907,,0.275554,,69.939663,,69.960683,,68.784267,,70,,70,,,,,,,,,,,,15136,,0.990015,,0.990015,,0.990015,,0.990015,,0.504907,,70,, +11469,-1,0.252463,0,2,0,1,2,,4,5,S US 23,,1431603,0,0.252,0,,0.8,7.5,,0.216397,,0.216397,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.216505,,0.216397,,0.216505,,0.216463,,0.216397,,0.216463,,0.219634,,0.216397,,0.219634,,0.216397,,0.216397,,0.216397,,,,,,,,0.216505,,0.216463,,0.219634,,0.216397,,0.216397,,0.110395,,0.110382,,0.111333,,0.110362,,0.06023,,69.96504,,69.978518,,68.96833,,70,,70,,,,,,,,,,,,15136,,0.216397,,0.216397,,0.216397,,0.216397,,0.110362,,70,, +21829,1,0.26119,1,0,0,1,2,RON,4,5,Carpenter/S US 12,RAMP,4600009,0,0.261,0,,1.09,4,0.348253,,0.348253,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.348254,,0.348253,,0.348254,,0.348253,,0.348253,,0.348253,,0.348271,,0.348253,,0.348271,,0.348253,,0.348253,,0.348253,,,,,,,,0.348254,,0.348253,,0.348271,,0.348253,,0.348253,,0.15149,,0.15149,,0.151495,,0.15149,,0.080969,,44.999964,,44.999985,,44.997768,,45,,45,,,,,,,,,,,,5160,,0.348253,,0.348253,,0.348253,,0.348253,,0.15149,,45,,, +26337,0,0.336794,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.217024,0.15,4,1.347178,1.347178,1.347178,1.347178,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,,,,,,,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,0.464776,0.464776,0.464776,0.464776,0.464776,0.464776,0.464776,0.464776,0.239124,0.239124,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,1.347178,0.464776,0.464776,15,15,, +8721,0,0.060725,1,1,0,2,4,,4,6,County,St,1223905,0,0.061,0,1.30126,4.5,4.5,0.095882,0.095882,0.095882,0.095882,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.101485,0.102241,0.095882,0.095882,0.101485,0.102241,0.096845,0.096728,0.095882,0.095882,0.096845,0.096728,0.101033,0.102306,0.095882,0.095882,0.101033,0.102306,0.095882,0.095882,0.095882,0.095882,0.095882,0.095882,,,,,,,0.101485,0.102241,0.096845,0.096728,0.101033,0.102306,0.095882,0.095882,0.095882,0.095882,0.041376,0.041603,0.039984,0.039949,0.041241,0.041622,0.039695,0.039695,0.021062,0.021062,35.902194,35.636587,37.622196,37.667657,36.062624,35.614059,38,38,38,38,,,,,,,,,,,3096,3096,0.095882,0.095882,0.095882,0.095882,0.095882,0.095882,0.095882,0.095882,0.039695,0.039695,38,38,, +20531,0,0.19953,1,1,0,2,5,,5,6,Wabash,Rd,4302161,0,0.2,0,4.275652,3.7,5,0.399061,0.399061,0.399061,0.399061,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.429828,0.450404,0.399061,0.399061,0.429828,0.450404,0.405061,0.403221,0.399061,0.399061,0.405061,0.403221,0.49699,0.443531,0.399061,0.399061,0.49699,0.443531,0.399061,0.399061,0.399061,0.399061,0.399061,0.399061,,,,,,,0.429828,0.450404,0.405061,0.403221,0.49699,0.443531,0.399061,0.399061,0.399061,0.399061,0.164864,0.171037,0.157434,0.156882,0.185012,0.168975,0.155634,0.155634,0.081807,0.081807,27.852574,26.580185,29.555624,29.690457,24.088681,26.992105,30,30,30,30,,,,,,,,,,,2580,2580,0.399061,0.399061,0.399061,0.399061,0.399061,0.399061,0.399061,0.399061,0.155634,0.155634,30,30,, +26338,0,0.339947,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.284579,0.15,4,1.359788,1.359788,1.359788,1.359788,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,,,,,,,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,0.469127,0.469127,0.469127,0.469127,0.469127,0.469127,0.469127,0.469127,0.241362,0.241362,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,1.359788,0.469127,0.469127,15,15,, +9964,0,0.244126,1,1,0,2,5,,5,6,Wabash,Rd,1239109,3.012,3.256,0,5.231274,3.7,5,0.488252,0.488252,0.488252,0.488252,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,,,,,,,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.190418,0.190418,0.190418,0.190418,0.190418,0.190418,0.190418,0.190418,0.100092,0.100092,29.999999,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.488252,0.190418,0.190418,30,30,, +30667,0,0.176981,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,3.792449,0.15,4,0.707924,0.707924,0.707924,0.707924,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,,,,,,,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.244234,0.244234,0.244234,0.244234,0.244234,0.244234,0.244234,0.244234,0.125656,0.125656,14.999997,14.999994,14.999999,14.999999,14.999991,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.707924,0.244234,0.244234,15,15,, +9962,0,0.085779,1,1,0,2,5,,5,6,Wabash,Rd,1239109,3.256,3.342,0,1.838124,3.7,5,0.171558,0.171558,0.171558,0.171558,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.184785,0.193631,0.171558,0.171558,0.184785,0.193631,0.174138,0.173347,0.171558,0.171558,0.174138,0.173347,0.213658,0.190676,0.171558,0.171558,0.213658,0.190676,0.171558,0.171558,0.171558,0.171558,0.171558,0.171558,,,,,,,0.184785,0.193631,0.174138,0.173347,0.213658,0.190676,0.171558,0.171558,0.171558,0.171558,0.070876,0.07353,0.067682,0.067444,0.079538,0.072643,0.066908,0.066908,0.035169,0.035169,27.852574,26.580185,29.555624,29.690457,24.088681,26.992105,30,30,30,30,,,,,,,,,,,2580,2580,0.171558,0.171558,0.171558,0.171558,0.171558,0.171558,0.171558,0.171558,0.066908,0.066908,30,30,, +26340,0,0.171361,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.672028,0.15,4,0.685445,0.685445,0.685445,0.685445,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,,,,,,,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.236479,0.236479,0.236479,0.236479,0.236479,0.236479,0.236479,0.236479,0.121667,0.121667,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.685445,0.236479,0.236479,15,15,, +10872,0,0.099388,1,1,0,2,4,,4,5,Main,St,1432907,7.586,7.685,0,2.129738,4.5,4.5,0.156928,0.156928,0.156928,0.156928,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.22404,0.282309,0.156928,0.156928,0.22404,0.282309,0.167834,0.16568,0.156928,0.156928,0.167834,0.16568,0.27709,0.233819,0.156928,0.156928,0.27709,0.233819,0.156928,0.156928,0.156928,0.156928,0.156928,0.156928,,,,,,,0.22404,0.282309,0.167834,0.16568,0.27709,0.233819,0.156928,0.156928,0.156928,0.156928,0.085102,0.102582,0.06824,0.067594,0.101017,0.088036,0.064968,0.064968,0.034472,0.034472,26.616929,21.123227,35.530779,35.992672,21.521043,25.503748,38,38,38,38,,,,,,,,,,,3096,3096,0.156928,0.156928,0.156928,0.156928,0.156928,0.156928,0.156928,0.156928,0.064968,0.064968,38,38,, +20338,0,0.055758,1,1,0,2,5,,4,5,Wabash,St,4302161,0.2,0.255,0,1.194809,5.8,4.5,0.123906,0.123906,0.123906,0.123906,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.14596,0.158872,0.123906,0.123906,0.14596,0.158872,0.128971,0.127549,0.123906,0.123906,0.128971,0.127549,0.186427,0.154629,0.123906,0.123906,0.186427,0.154629,0.123906,0.123906,0.123906,0.123906,0.123906,0.123906,,,,,,,0.14596,0.158872,0.128971,0.127549,0.186427,0.154629,0.123906,0.123906,0.123906,0.123906,0.053824,0.057698,0.048728,0.048301,0.065964,0.056425,0.047208,0.047208,0.024719,0.024719,22.920411,21.057668,25.939743,26.228884,17.945199,21.635427,27,27,27,27,,,,,,,,,,,2580,2580,0.123906,0.123906,0.123906,0.123906,0.123906,0.123906,0.123906,0.123906,0.047208,0.047208,27,27,, +10873,0,0.010556,1,1,0,2,4,,4,5,Main,St,1432907,7.575,7.586,0,0.226206,4.5,4.5,0.016668,0.016668,0.016668,0.016668,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.017826,0.018585,0.016668,0.016668,0.017826,0.018585,0.016823,0.016825,0.016668,0.016668,0.016823,0.016825,0.018331,0.018457,0.016668,0.016668,0.018331,0.018457,0.016668,0.016668,0.016668,0.016668,0.016668,0.016668,,,,,,,0.017826,0.018585,0.016823,0.016825,0.018331,0.018457,0.016668,0.016668,0.016668,0.016668,0.007248,0.007476,0.006947,0.006948,0.007399,0.007437,0.0069,0.0069,0.003661,0.003661,35.530133,34.080282,37.648974,37.644772,34.553023,34.316268,38,38,38,38,,,,,,,,,,,3096,3096,0.016668,0.016668,0.016668,0.016668,0.016668,0.016668,0.016668,0.016668,0.0069,0.0069,38,38,, +11400,0,0.357963,1,1,0,2,4,,4,5,Dexter,St,1431609,0,0.358,0,7.670639,4.5,4.5,0.565205,0.565205,0.565205,0.565205,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.633623,0.584604,0.565205,0.565205,0.633623,0.584604,0.572252,0.572016,0.565205,0.565205,0.572252,0.572016,0.598456,0.612206,0.565205,0.565205,0.598456,0.612206,0.565205,0.565205,0.565205,0.565205,0.565205,0.565205,,,,,,,0.633623,0.584604,0.572252,0.572016,0.598456,0.612206,0.565205,0.565205,0.565205,0.565205,0.25452,0.239815,0.236109,0.236038,0.24397,0.248095,0.233995,0.233995,0.124157,0.124157,33.896775,36.739045,37.532061,37.547559,35.888684,35.082617,38,38,38,38,,,,,,,,,,,3096,3096,0.565205,0.565205,0.565205,0.565205,0.565205,0.565205,0.565205,0.565205,0.233995,0.233995,38,38,, +10485,1,0.565691,1,0,0,1,2,ROF,4,5,N US 23/Carpenter,RAMP,1431204,0,0.566,0,,2.24,5,0.848536,,0.848536,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.848541,,0.848536,,0.848541,,0.848536,,0.848536,,0.848536,,0.848536,,0.848536,,0.848536,,0.848536,,0.848536,,0.848536,,,,,,,,0.848541,,0.848536,,0.848536,,0.848536,,0.848536,,0.356387,,0.356385,,0.356385,,0.356385,,0.189506,,39.999783,,40,,40,,40,,40,,,,,,,,,,,,5160,,0.848536,,0.848536,,0.848536,,0.848536,,0.356385,,40,,, +10504,1,0.46593,2,0,0,1,2,,5,5,N US 23,,1431202,1.176,1.642,0,,1.02,7,0.399368,,0.399368,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.451002,,0.399368,,0.451002,,0.400657,,0.399368,,0.400657,,0.403041,,0.399368,,0.403041,,0.399368,,0.399368,,0.399368,,,,,,,,0.451002,,0.400657,,0.403041,,0.399368,,0.399368,,0.219168,,0.204064,,0.20478,,0.203678,,0.111158,,61.985889,,69.774926,,69.362131,,70,,70,,,,,,,,,,,,15136,,0.399368,,0.399368,,0.399368,,0.399368,,0.203678,,70,,, +10505,1,0.407275,2,0,0,1,2,,5,5,N US 23,,1431202,0.769,1.176,0,,1.02,7,0.349093,,0.349093,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.361528,,0.349093,,0.361528,,0.349437,,0.349093,,0.349437,,0.349819,,0.349093,,0.349819,,0.349093,,0.349093,,0.349093,,,,,,,,0.361528,,0.349437,,0.349819,,0.349093,,0.349093,,0.181768,,0.178141,,0.178255,,0.178037,,0.097164,,67.592299,,69.931088,,69.854682,,70,,70,,,,,,,,,,,,15136,,0.349093,,0.349093,,0.349093,,0.349093,,0.178037,,70,,, +11394,0,0.17965,1,1,0,2,4,,4,5,Dexter,St,1431609,0.871,1.05,0,3.849648,4.5,4.5,0.283658,0.283658,0.283658,0.283658,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.55882,0.325201,0.283658,0.283658,0.55882,0.325201,0.298974,0.304367,0.283658,0.283658,0.298974,0.304367,0.375091,0.663425,0.283658,0.283658,0.375091,0.663425,0.283658,0.283658,0.283658,0.283658,0.283658,0.283658,,,,,,,0.55882,0.325201,0.298974,0.304367,0.375091,0.663425,0.283658,0.283658,0.283658,0.283658,0.199983,0.129897,0.122029,0.123647,0.144864,0.231365,0.117435,0.117435,0.06231,0.06231,19.288877,33.145743,36.053345,35.414522,28.73709,16.247514,38,38,38,38,,,,,,,,,,,3096,3096,0.283658,0.283658,0.283658,0.283658,0.283658,0.283658,0.283658,0.283658,0.117435,0.117435,38,38,, +19612,1,0.39561,1,0,0,1,2,RON,4,5,Carpenter/N US 23,RAMP,1908710,0,0.396,0,,1.09,4,0.52748,,0.52748,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.52748,,0.52748,,0.52748,,0.52748,,0.52748,,0.52748,,0.52748,,0.52748,,0.52748,,0.52748,,0.52748,,0.52748,,,,,,,,0.52748,,0.52748,,0.52748,,0.52748,,0.52748,,0.229454,,0.229454,,0.229454,,0.229454,,0.122639,,45,,45,,45,,45,,45,,,,,,,,,,,,5160,,0.52748,,0.52748,,0.52748,,0.52748,,0.229454,,45,,, +25023,0,0.37692,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.076859,0.15,4,1.50768,1.50768,1.50768,1.50768,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,,,,,,,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,0.52015,0.52015,0.52015,0.52015,0.52015,0.52015,0.52015,0.52015,0.267613,0.267613,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,1.50768,0.52015,0.52015,15,15,, +29989,0,0.301796,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.467058,0.15,4,1.207184,1.207184,1.207184,1.207184,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,,,,,,,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,0.416479,0.416479,0.416479,0.416479,0.416479,0.416479,0.416479,0.416479,0.214275,0.214275,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,1.207184,0.416479,0.416479,15,15,, +11397,0,0.167763,1,1,1,2,4,,4,5,Dexter,St,1431609,0.703,0.871,0,3.594922,4.5,4.5,0.264889,0.264889,0.264889,0.264889,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.28422,0.268737,0.264889,0.264889,0.28422,0.268737,0.266104,0.266989,0.264889,0.264889,0.266104,0.266989,0.271851,0.296856,0.264889,0.264889,0.271851,0.296856,0.264889,0.264889,0.264889,0.264889,0.264889,0.264889,,,,,,,0.28422,0.268737,0.266104,0.266989,0.271851,0.296856,0.264889,0.264889,0.264889,0.264889,0.115463,0.110818,0.110029,0.110294,0.111753,0.119254,0.109664,0.109664,0.058187,0.058187,35.415435,37.455855,37.826483,37.701127,37.026767,33.907935,38,38,38,38,,,,,,,,,,,3406,3406,0.264889,0.264889,0.264889,0.264889,0.264889,0.264889,0.264889,0.264889,0.109664,0.109664,38,38,, +11398,0,0.241515,1,1,1,2,4,,4,5,Dexter,St,1431609,0.462,0.703,0,5.175322,4.5,4.5,0.38134,0.38134,0.38134,0.38134,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.464583,0.408775,0.38134,0.38134,0.464583,0.408775,0.38874,0.393022,0.38134,0.38134,0.38874,0.393022,0.432205,0.548639,0.38134,0.38134,0.432205,0.548639,0.38134,0.38134,0.38134,0.38134,0.38134,0.38134,,,,,,,0.464583,0.408775,0.38874,0.393022,0.432205,0.548639,0.38134,0.38134,0.38134,0.38134,0.182848,0.166105,0.160095,0.161379,0.173134,0.208064,0.157875,0.157875,0.083768,0.083768,31.19118,35.449546,37.276611,36.870435,33.527879,26.412457,38,38,38,38,,,,,,,,,,,3406,3406,0.38134,0.38134,0.38134,0.38134,0.38134,0.38134,0.38134,0.38134,0.157875,0.157875,38,38,, +11411,1,0.308403,1,0,0,1,2,ROF,4,5,S US 23/Carpenter,RAMP,1431605,0,0.308,0,,2.24,5,0.462604,,0.462604,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.463243,,0.462604,,0.463243,,0.462986,,0.462604,,0.462986,,0.467393,,0.462604,,0.467393,,0.462604,,0.462604,,0.462604,,,,,,,,0.463243,,0.462986,,0.467393,,0.462604,,0.462604,,0.194485,,0.194408,,0.19573,,0.194294,,0.103315,,39.944852,,39.96702,,39.590212,,40,,40,,,,,,,,,,,,5160,,0.462604,,0.462604,,0.462604,,0.462604,,0.194294,,40,,, +10484,1,0.256414,1,0,0,1,2,RON,5,5,Carpenter/N US 23,RAMP,1431205,0,0.256,0,,1.09,4,0.341886,,0.341886,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.348669,,0.341886,,0.348669,,0.342492,,0.341886,,0.342492,,0.344392,,0.341886,,0.344392,,0.341886,,0.341886,,0.341886,,,,,,,,0.348669,,0.342492,,0.344392,,0.341886,,0.341886,,0.150755,,0.148902,,0.149472,,0.14872,,0.079488,,44.124545,,44.920311,,44.672548,,45,,45,,,,,,,,,,,,5160,,0.341886,,0.341886,,0.341886,,0.341886,,0.14872,,45,,, +11392,0,0.108311,1,1,0,2,4,,5,5,Dexter,St,1431609,1.05,1.159,0,2.320949,3,4,0.162466,0.162466,0.162466,0.162466,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.287065,0.162495,0.162466,0.162466,0.287065,0.162495,0.172026,0.162472,0.162466,0.162466,0.172026,0.162472,0.20926,0.163174,0.162466,0.162466,0.20926,0.163174,0.162466,0.162466,0.162466,0.162466,0.162466,0.162466,,,,,,,0.287065,0.162495,0.172026,0.162472,0.20926,0.163174,0.162466,0.162466,0.162466,0.162466,0.105615,0.068244,0.071104,0.068237,0.082274,0.068448,0.068236,0.068236,0.036284,0.036284,22.638304,39.993092,37.777145,39.998704,31.055375,39.82661,40,40,40,40,,,,,,,,,,,3096,3096,0.162466,0.162466,0.162466,0.162466,0.162466,0.162466,0.162466,0.162466,0.068236,0.068236,40,40,, +11391,0,0.061053,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,1.159,1.22,0,1.308282,3,4,0.09158,0.09158,0.09158,0.09158,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.091606,0.091596,0.09158,0.09158,0.091606,0.091596,0.09158,0.091583,0.09158,0.09158,0.09158,0.091583,0.091591,0.091978,0.09158,0.09158,0.091591,0.091978,0.09158,0.09158,0.09158,0.09158,0.09158,0.09158,,,,,,,0.091606,0.091596,0.09158,0.091583,0.091591,0.091978,0.09158,0.09158,0.09158,0.09158,0.038471,0.038468,0.038464,0.038464,0.038467,0.038583,0.038463,0.038463,0.020453,0.020453,39.988532,39.993092,39.999709,39.998704,39.995255,39.82661,40,40,40,40,,,,,,,,,,,3096,3096,0.09158,0.09158,0.09158,0.09158,0.09158,0.09158,0.09158,0.09158,0.038463,0.038463,40,40,, +8499,1,0.270092,2,0,0,1,2,,5,6,N US 23,,1223505,25.153,25.423,0,,1.02,7,0.231508,,0.231508,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.23875,,0.231508,,0.23875,,0.231702,,0.231508,,0.231702,,0.231919,,0.231508,,0.231919,,0.231508,,0.231508,,0.231508,,,,,,,,0.23875,,0.231702,,0.231919,,0.231508,,0.231508,,0.120242,,0.118127,,0.118192,,0.118069,,0.064436,,67.876676,,69.94139,,69.875805,,70,,70,,,,,,,,,,,,15136,,0.231508,,0.231508,,0.231508,,0.231508,,0.118069,,70,,, +8673,1,0.412921,1,0,0,1,2,RON,5,6,Plank/N US 23,RAMP,1224103,0,0.413,0,,1.09,4,0.550561,,0.550561,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.550645,,0.550561,,0.550645,,0.550562,,0.550561,,0.550562,,0.550563,,0.550561,,0.550563,,0.550561,,0.550561,,0.550561,,,,,,,,0.550645,,0.550562,,0.550563,,0.550561,,0.550561,,0.239519,,0.239494,,0.239494,,0.239494,,0.128005,,44.993155,,44.999924,,44.999865,,45,,45,,,,,,,,,,,,5160,,0.550561,,0.550561,,0.550561,,0.550561,,0.239494,,45,,, +8921,-1,0.348637,0,2,0,1,2,,5,6,S US 23,,1223504,25.188,25.537,0,,1.02,7,,0.298832,,0.298832,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.299143,,0.298832,,0.299143,,0.299029,,0.298832,,0.299029,,0.306263,,0.298832,,0.306263,,0.298832,,0.298832,,0.298832,,,,,,,,0.299143,,0.299029,,0.306263,,0.298832,,0.298832,,0.152498,,0.152463,,0.154633,,0.152404,,0.083175,,69.927143,,69.953744,,68.301579,,70,,70,,,,,,,,,,,,15136,,0.298832,,0.298832,,0.298832,,0.298832,,0.152404,,70,, +26336,0,0.629806,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.495841,0.15,4,2.519224,2.519224,2.519224,2.519224,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,,,,,,,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,0.869132,0.869132,0.869132,0.869132,0.869132,0.869132,0.869132,0.869132,0.447162,0.447162,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,0.869132,0.869132,15,15,, +8540,0,0.012247,1,1,0,2,4,,5,6,Plank,Rd,1226001,0.751,0.763,0,0.262445,3,4,0.018371,0.018371,0.018371,0.018371,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.018372,0.018372,0.018371,0.018371,0.018372,0.018372,0.018372,0.018371,0.018371,0.018371,0.018372,0.018371,0.018441,0.018371,0.018371,0.018371,0.018441,0.018371,0.018371,0.018371,0.018371,0.018371,0.018371,0.018371,,,,,,,0.018372,0.018372,0.018372,0.018371,0.018441,0.018371,0.018371,0.018371,0.018371,0.018371,0.007716,0.007716,0.007716,0.007716,0.007737,0.007716,0.007716,0.007716,0.004103,0.004103,39.998533,39.998397,39.997304,39.999946,39.848278,39.999912,40,40,40,40,,,,,,,,,,,3096,3096,0.018371,0.018371,0.018371,0.018371,0.018371,0.018371,0.018371,0.018371,0.007716,0.007716,40,40,, +8847,1,0.244379,1,0,0,1,2,ROF,5,6,N US 23/Plank,RAMP,1224102,0,0.244,0,,2.24,5,0.366568,,0.366568,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.36687,,0.366568,,0.36687,,0.366576,,0.366568,,0.366576,,0.366617,,0.366568,,0.366617,,0.366568,,0.366568,,0.366568,,,,,,,,0.36687,,0.366576,,0.366617,,0.366568,,0.366568,,0.154049,,0.153961,,0.153973,,0.153958,,0.081867,,39.96709,,39.999144,,39.994604,,40,,40,,,,,,,,,,,,5160,,0.366568,,0.366568,,0.366568,,0.366568,,0.153958,,40,,, +9142,-1,0.230376,0,2,0,1,2,,5,6,S US 23,,1223504,24.958,25.188,0,,1.02,7,,0.197465,,0.197465,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.197657,,0.197465,,0.197657,,0.197574,,0.197465,,0.197574,,0.200692,,0.197465,,0.200692,,0.197465,,0.197465,,0.197465,,,,,,,,0.197657,,0.197574,,0.200692,,0.197465,,0.197465,,0.100765,,0.10074,,0.101675,,0.100707,,0.054961,,69.931917,,69.961358,,68.8745,,70,,70,,,,,,,,,,,,15136,,0.197465,,0.197465,,0.197465,,0.197465,,0.100707,,70,, +9186,0,0.230216,1,1,0,2,4,,5,6,Plank,Rd,1226001,0.521,0.751,0,4.933193,3,4,0.345324,0.345324,0.345324,0.345324,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.345336,0.372693,0.345324,0.345324,0.345336,0.372693,0.345347,0.346702,0.345324,0.345324,0.345347,0.346702,0.346638,0.350668,0.345324,0.345324,0.346638,0.350668,0.345324,0.345324,0.345324,0.345324,0.345324,0.345324,,,,,,,0.345336,0.372693,0.345347,0.346702,0.346638,0.350668,0.345324,0.345324,0.345324,0.345324,0.14504,0.153247,0.145043,0.145449,0.14543,0.146639,0.145036,0.145036,0.077122,0.077122,39.998533,37.062549,39.997304,39.841006,39.848278,39.390329,40,40,40,40,,,,,,,,,,,3096,3096,0.345324,0.345324,0.345324,0.345324,0.345324,0.345324,0.345324,0.345324,0.145036,0.145036,40,40,, +8559,0,0.012335,1,1,0,2,4,,5,6,Main,St,1226001,0.509,0.521,0,0.264327,3,4,0.018503,0.018503,0.018503,0.018503,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.018503,0.019969,0.018503,0.018503,0.018503,0.019969,0.018503,0.018577,0.018503,0.018503,0.018503,0.018577,0.018504,0.019028,0.018503,0.018503,0.018504,0.019028,0.018503,0.018503,0.018503,0.018503,0.018503,0.018503,,,,,,,0.018503,0.019969,0.018503,0.018577,0.018504,0.019028,0.018503,0.018503,0.018503,0.018503,0.007771,0.008211,0.007771,0.007793,0.007772,0.007929,0.007771,0.007771,0.004132,0.004132,39.999644,37.062549,39.99995,39.841006,39.997826,38.89517,40,40,40,40,,,,,,,,,,,3096,3096,0.018503,0.018503,0.018503,0.018503,0.018503,0.018503,0.018503,0.018503,0.007771,0.007771,40,40,, +9120,1,0.064537,2,0,0,1,2,,5,6,N US 23,,1223505,25.423,25.488,0,,1.02,7,0.055317,,0.055317,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.057936,,0.055317,,0.057936,,0.055375,,0.055317,,0.055375,,0.055442,,0.055317,,0.055442,,0.055317,,0.055317,,0.055317,,,,,,,,0.057936,,0.055375,,0.055442,,0.055317,,0.055317,,0.028997,,0.028229,,0.028249,,0.028212,,0.015397,,66.836317,,69.926349,,69.84268,,70,,70,,,,,,,,,,,,15136,,0.055317,,0.055317,,0.055317,,0.055317,,0.028212,,70,,, +10481,0,0.758995,1,1,0,2,5,,5,5,Willow,Rd,1431207,2.127,2.886,0,16.264172,3.7,5,1.517989,1.517989,1.517989,1.517989,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.517989,1.517993,1.517989,1.517989,1.517989,1.517993,1.517989,1.517989,1.517989,1.517989,1.517989,1.517989,1.517991,1.517989,1.517989,1.517989,1.517991,1.517989,1.517989,1.517989,1.517989,1.517989,1.517989,1.517989,,,,,,,1.517989,1.517993,1.517989,1.517989,1.517991,1.517989,1.517989,1.517989,1.517989,1.517989,0.592016,0.592017,0.592016,0.592016,0.592016,0.592016,0.592016,0.592016,0.311188,0.311188,30,29.999928,30,30,29.999967,30,30,30,30,30,,,,,,,,,,,2580,2580,1.517989,1.517989,1.517989,1.517989,1.517989,1.517989,1.517989,1.517989,0.592016,0.592016,30,30,, +11385,0,1.43398,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,2.002,3.436,0,30.72815,3,4,2.150971,2.150971,2.150971,2.150971,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.180062,2.151217,2.150971,2.150971,2.180062,2.151217,2.151023,2.151029,2.150971,2.150971,2.151023,2.151029,2.151492,2.167312,2.150971,2.150971,2.151492,2.167312,2.150971,2.150971,2.150971,2.150971,2.150971,2.150971,,,,,,,2.180062,2.151217,2.151023,2.151029,2.151492,2.167312,2.150971,2.150971,2.150971,2.150971,0.912135,0.903482,0.903423,0.903425,0.903564,0.90831,0.903408,0.903408,0.480383,0.480383,39.466223,39.995411,39.999031,39.998912,39.990305,39.698403,40,40,40,40,,,,,,,,,,,3096,3096,2.150971,2.150971,2.150971,2.150971,2.150971,2.150971,2.150971,2.150971,0.903408,0.903408,40,40,, +11124,0,1.007382,1,1,0,2,6,GRV,5,5,Gooding,Rd,1447502,0,1.007,0,21.58676,5.55,5,2.417717,2.417717,2.417717,2.417717,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,,,,,,,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,0.906644,0.906644,0.906644,0.906644,0.906644,0.906644,0.906644,0.906644,0.47347,0.47347,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2236,2236,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,2.417717,0.906644,0.906644,25,25,, +8885,0,0.500192,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,2.274,2.774,0,10.718391,3,4,0.750287,0.750287,0.750287,0.750287,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.751603,0.762979,0.750287,0.750287,0.751603,0.762979,0.750713,0.750552,0.750287,0.750287,0.750713,0.750552,0.757863,0.753593,0.750287,0.750287,0.757863,0.753593,0.750287,0.750287,0.750287,0.750287,0.750287,0.750287,,,,,,,0.751603,0.762979,0.750713,0.750552,0.757863,0.753593,0.750287,0.750287,0.750287,0.750287,0.315515,0.318928,0.315248,0.3152,0.317393,0.316112,0.315121,0.315121,0.167564,0.167564,39.929998,39.334623,39.97731,39.985888,39.600149,39.824523,40,40,40,40,,,,,,,,,,,3096,3096,0.750287,0.750287,0.750287,0.750287,0.750287,0.750287,0.750287,0.750287,0.315121,0.315121,40,40,, +10479,0,0.679475,1,1,0,2,5,,5,5,Willow,Rd,1431207,3.451,4.131,0,14.560183,3.7,5,1.35895,1.35895,1.35895,1.35895,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.35895,1.358955,1.35895,1.35895,1.35895,1.358955,1.35895,1.35895,1.35895,1.35895,1.35895,1.35895,1.358953,1.35895,1.35895,1.35895,1.358953,1.35895,1.35895,1.35895,1.35895,1.35895,1.35895,1.35895,,,,,,,1.35895,1.358955,1.35895,1.35895,1.358953,1.35895,1.35895,1.35895,1.35895,1.35895,0.529991,0.529992,0.529991,0.529991,0.529991,0.529991,0.529991,0.529991,0.278585,0.278585,30,29.9999,30,30,29.999945,30,30,30,30,30,,,,,,,,,,,2580,2580,1.35895,1.35895,1.35895,1.35895,1.35895,1.35895,1.35895,1.35895,0.529991,0.529991,30,30,, +10041,0,0.831796,1,1,0,2,4,,5,5,Willis,Rd,1427410,5.721,6.553,0,17.82421,3,4,1.247695,1.247695,1.247695,1.247695,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.29193,1.589727,1.247695,1.247695,1.29193,1.589727,1.264516,1.28103,1.247695,1.247695,1.264516,1.28103,1.474904,1.388674,1.247695,1.247695,1.474904,1.388674,1.247695,1.247695,1.247695,1.247695,1.247695,1.247695,,,,,,,1.29193,1.589727,1.264516,1.28103,1.474904,1.388674,1.247695,1.247695,1.247695,1.247695,0.537302,0.626642,0.529078,0.534032,0.592194,0.566326,0.524032,0.524032,0.278652,0.278652,38.63041,31.393931,39.467907,38.959121,33.837999,35.939161,40,40,40,40,,,,,,,,,,,3096,3096,1.247695,1.247695,1.247695,1.247695,1.247695,1.247695,1.247695,1.247695,0.524032,0.524032,40,40,, +10466,0,0.817536,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,8.423,9.241,0,17.51862,5.8,4.5,1.816746,1.816746,1.816746,1.816746,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.816963,1.817093,1.816746,1.816746,1.816963,1.817093,1.816754,1.816752,1.816746,1.816746,1.816754,1.816752,1.81734,1.817073,1.816746,1.816746,1.81734,1.817073,1.816746,1.816746,1.816746,1.816746,1.816746,1.816746,,,,,,,1.816963,1.817093,1.816754,1.816752,1.81734,1.817073,1.816746,1.816746,1.816746,1.816746,0.692245,0.692284,0.692183,0.692182,0.692359,0.692278,0.69218,0.69218,0.362441,0.362441,26.996779,26.994838,26.999872,26.999902,26.991165,26.99514,27,27,27,27,,,,,,,,,,,2580,2580,1.816746,1.816746,1.816746,1.816746,1.816746,1.816746,1.816746,1.816746,0.69218,0.69218,27,27,, +10500,1,2.820149,2,0,0,1,2,,4,5,N US 23,,1431202,5.44,8.259,0,,0.8,7.5,2.417271,,2.417271,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.908973,,2.417271,,2.908973,,2.42772,,2.417271,,2.42772,,2.485613,,2.417271,,2.485613,,2.417271,,2.417271,,2.417271,,,,,,,,2.908973,,2.42772,,2.485613,,2.417271,,2.417271,,1.380319,,1.235943,,1.253311,,1.232808,,0.672807,,58.167939,,69.698728,,68.075336,,70,,70,,,,,,,,,,,,15136,,2.417271,,2.417271,,2.417271,,2.417271,,1.232808,,70,,, +11334,0,0.508259,1,1,0,2,5,GRV,4,5,Merritt,Rd,1438204,0.735,1.243,0,10.891259,6.55,4.5,2.033035,2.033035,2.033035,2.033035,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.033162,2.041602,2.033035,2.033035,2.033162,2.041602,2.033049,2.033759,2.033035,2.033035,2.033049,2.033759,2.034589,2.039069,2.033035,2.033035,2.034589,2.039069,2.033035,2.033035,2.033035,2.033035,2.033035,2.033035,,,,,,,2.033162,2.041602,2.033049,2.033759,2.034589,2.039069,2.033035,2.033035,2.033035,2.033035,0.701435,0.703967,0.701401,0.701614,0.701863,0.703207,0.701397,0.701397,0.360864,0.360864,14.999066,14.937057,14.999897,14.994663,14.988547,14.955611,15,15,15,15,,,,,,,,,,,2064,2064,2.033035,2.033035,2.033035,2.033035,2.033035,2.033035,2.033035,2.033035,0.701397,0.701397,15,15,, +11372,0,1.017313,1,1,0,2,4,,4,5,Carpenter,Rd,1431609,6.038,7.055,0,21.799572,4.5,4.5,1.606284,1.606284,1.606284,1.606284,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.055329,1.691673,1.606284,1.606284,2.055329,1.691673,1.61071,1.61057,1.606284,1.606284,1.61071,1.61057,1.742613,2.020674,1.606284,1.606284,1.742613,2.020674,1.606284,1.606284,1.606284,1.606284,1.606284,1.606284,,,,,,,2.055329,1.691673,1.61071,1.61057,1.742613,2.020674,1.606284,1.606284,1.606284,1.606284,0.799715,0.690618,0.666329,0.666287,0.7059,0.789319,0.665002,0.665002,0.352847,0.352847,29.697826,36.081911,37.895593,37.898893,35.027178,30.207144,38,38,38,38,,,,,,,,,,,3096,3096,1.606284,1.606284,1.606284,1.606284,1.606284,1.606284,1.606284,1.606284,0.665002,0.665002,38,38,, +11459,-1,2.788194,0,2,0,1,2,,4,5,S US 23,,1431603,5.434,8.221,0,,0.8,7.5,,2.389881,,2.389881,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.406202,,2.389881,,2.406202,,2.39534,,2.389881,,2.39534,,2.72851,,2.389881,,2.72851,,2.389881,,2.389881,,2.389881,,,,,,,,2.406202,,2.39534,,2.72851,,2.389881,,2.389881,,1.223736,,1.220477,,1.320428,,1.218839,,0.665183,,69.525175,,69.840468,,61.312464,,70,,70,,,,,,,,,,,,15136,,2.389881,,2.389881,,2.389881,,2.389881,,1.218839,,70,, +11503,0,0.766341,1,1,0,2,4,,4,5,Textile,Rd,1438102,1.245,2.011,0,16.4216,4.5,4.5,1.210013,1.210013,1.210013,1.210013,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.211786,1.558044,1.210013,1.210013,1.211786,1.558044,1.210757,1.213472,1.210013,1.210013,1.210757,1.213472,1.427412,1.260521,1.210013,1.210013,1.427412,1.260521,1.210013,1.210013,1.210013,1.210013,1.210013,1.210013,,,,,,,1.211786,1.558044,1.210757,1.213472,1.427412,1.260521,1.210013,1.210013,1.210013,1.210013,0.501477,0.605355,0.501168,0.501983,0.566165,0.516098,0.500945,0.500945,0.265799,0.265799,37.944376,29.511667,37.976647,37.891684,32.212478,36.477366,38,38,38,38,,,,,,,,,,,3096,3096,1.210013,1.210013,1.210013,1.210013,1.210013,1.210013,1.210013,1.210013,0.500945,0.500945,38,38,, +22122,0,1.295887,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,5.271,6.566,0,27.768999,6.55,4.5,5.183547,5.183547,5.183547,5.183547,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,,,,,,,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,1.788324,1.788324,1.788324,1.788324,1.788324,1.788324,1.788324,1.788324,0.92008,0.92008,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,2064,2064,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,5.183547,1.788324,1.788324,15,15,, +25027,0,1.021133,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.881423,0.15,4,4.084532,4.084532,4.084532,4.084532,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,,,,,,,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,1.409164,1.409164,1.409164,1.409164,1.409164,1.409164,1.409164,1.409164,0.725004,0.725004,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,4.084532,1.409164,1.409164,15,15,, +10311,0,0.50741,1,1,0,2,4,,5,5,Willis,Rd,1427410,5.214,5.721,0,10.873065,3,4,0.761115,0.761115,0.761115,0.761115,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.788099,0.96976,0.761115,0.761115,0.788099,0.96976,0.771376,0.781449,0.761115,0.761115,0.771376,0.781449,0.899716,0.847114,0.761115,0.761115,0.899716,0.847114,0.761115,0.761115,0.761115,0.761115,0.761115,0.761115,,,,,,,0.788099,0.96976,0.771376,0.781449,0.899716,0.847114,0.761115,0.761115,0.761115,0.761115,0.327763,0.382262,0.322746,0.325769,0.361248,0.345468,0.319668,0.319668,0.169982,0.169982,38.63041,31.393931,39.467907,38.959121,33.837999,35.939161,40,40,40,40,,,,,,,,,,,3096,3096,0.761115,0.761115,0.761115,0.761115,0.761115,0.761115,0.761115,0.761115,0.319668,0.319668,40,40,, +10459,1,0.26209,1,0,0,1,2,RON,5,5,E Willis/N US 23,RAMP,1431210,0,0.262,0,,1.09,4,0.349453,,0.349453,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.34947,,0.349453,,0.34947,,0.349453,,0.349453,,0.349453,,0.349808,,0.349453,,0.349808,,0.349453,,0.349453,,0.349453,,,,,,,,0.34947,,0.349453,,0.349808,,0.349453,,0.349453,,0.152017,,0.152012,,0.152118,,0.152012,,0.081248,,44.997756,,44.999988,,44.954358,,45,,45,,,,,,,,,,,,5160,,0.349453,,0.349453,,0.349453,,0.349453,,0.152012,,45,,, +10460,1,0.369039,1,0,0,1,2,ROF,4,5,N US 23/Willis,RAMP,1431209,0,0.369,0,,2.24,5,0.553559,,0.553559,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.553959,,0.553559,,0.553959,,0.553656,,0.553559,,0.553656,,0.553905,,0.553559,,0.553905,,0.553559,,0.553559,,0.553559,,,,,,,,0.553959,,0.553656,,0.553905,,0.553559,,0.553559,,0.232615,,0.232524,,0.232598,,0.232495,,0.123628,,39.971099,,39.992983,,39.975003,,40,,40,,,,,,,,,,,,5160,,0.553559,,0.553559,,0.553559,,0.553559,,0.232495,,40,,, +10502,1,0.326,2,0,0,1,2,,5,5,N US 23,,1431202,4.8,5.126,0,,1.02,7,0.279428,,0.279428,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.297849,,0.279428,,0.297849,,0.279805,,0.279428,,0.279805,,0.280398,,0.279428,,0.280398,,0.279428,,0.279428,,0.279428,,,,,,,,0.297849,,0.279805,,0.280398,,0.279428,,0.279428,,0.148035,,0.142622,,0.142799,,0.142508,,0.077774,,65.670887,,69.905699,,69.757998,,70,,70,,,,,,,,,,,,15136,,0.279428,,0.279428,,0.279428,,0.279428,,0.142508,,70,,, +11375,0,0.258999,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,4.759,5.017,0,5.549982,3,4,0.388499,0.388499,0.388499,0.388499,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.5732,0.451161,0.388499,0.388499,0.5732,0.451161,0.471953,0.408785,0.388499,0.388499,0.471953,0.408785,0.722319,0.470623,0.388499,0.388499,0.722319,0.470623,0.388499,0.388499,0.388499,0.388499,0.388499,0.388499,,,,,,,0.5732,0.451161,0.471953,0.408785,0.722319,0.470623,0.388499,0.388499,0.388499,0.388499,0.21858,0.181968,0.188206,0.169255,0.263316,0.187807,0.163169,0.163169,0.086765,0.086765,27.110881,34.444335,32.926927,38.014944,21.513958,33.019961,40,40,40,40,,,,,,,,,,,3096,3096,0.388499,0.388499,0.388499,0.388499,0.388499,0.388499,0.388499,0.388499,0.163169,0.163169,40,40,, +11408,1,0.30336,1,0,0,1,2,RON,5,5,Willis/S US 23,RAMP,1431606,0,0.303,0,,1.09,4,0.40448,,0.40448,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.4048,,0.40448,,0.4048,,0.404748,,0.40448,,0.404748,,0.404943,,0.40448,,0.404943,,0.40448,,0.40448,,0.40448,,,,,,,,0.4048,,0.404748,,0.404943,,0.40448,,0.40448,,0.176045,,0.176029,,0.176088,,0.175949,,0.094042,,44.964374,,44.970141,,44.948567,,45,,45,,,,,,,,,,,,5160,,0.40448,,0.40448,,0.40448,,0.40448,,0.175949,,45,,, +11460,-1,0.56955,0,2,0,1,2,,5,5,S US 23,,1431603,4.864,5.434,0,,1.02,7,,0.488186,,0.488186,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.488818,,0.488186,,0.488818,,0.488568,,0.488186,,0.488568,,0.504794,,0.488186,,0.504794,,0.488186,,0.488186,,0.488186,,,,,,,,0.488818,,0.488568,,0.504794,,0.488186,,0.488186,,0.249165,,0.249089,,0.253957,,0.248975,,0.135878,,69.909447,,69.945274,,67.696986,,70,,70,,,,,,,,,,,,15136,,0.488186,,0.488186,,0.488186,,0.488186,,0.248975,,70,, +21357,0,0.512272,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,4.759,5.271,0,10.977251,6.55,4.5,2.049087,2.049087,2.049087,2.049087,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,,,,,,,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,0.706935,0.706935,0.706935,0.706935,0.706935,0.706935,0.706935,0.706935,0.363713,0.363713,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,2064,2064,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,2.049087,0.706935,0.706935,15,15,, +30101,0,0.631607,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.534433,0.15,4,2.526428,2.526428,2.526428,2.526428,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,,,,,,,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,0.871617,0.871617,0.871617,0.871617,0.871617,0.871617,0.871617,0.871617,0.448441,0.448441,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,2.526428,0.871617,0.871617,15,15,, +11382,0,0.748761,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,4.01,4.759,0,16.044876,3,4,1.123141,1.123141,1.123141,1.123141,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.191397,1.123149,1.123141,1.123141,1.191397,1.123149,1.128243,1.123153,1.123141,1.123141,1.128243,1.123153,1.135233,1.128249,1.123141,1.123141,1.135233,1.128249,1.123141,1.123141,1.123141,1.123141,1.123141,1.123141,,,,,,,1.191397,1.123149,1.128243,1.123153,1.135233,1.128249,1.123141,1.123141,1.123141,1.123141,0.492196,0.471722,0.47325,0.471723,0.475347,0.473252,0.471719,0.471719,0.250835,0.250835,37.708386,39.999729,39.819118,39.999568,39.573955,39.818932,40,40,40,40,,,,,,,,,,,3096,3096,1.123141,1.123141,1.123141,1.123141,1.123141,1.123141,1.123141,1.123141,0.471719,0.471719,40,40,, +26334,0,0.710419,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.223257,0.15,4,2.841675,2.841675,2.841675,2.841675,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,,,,,,,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,0.980378,0.980378,0.980378,0.980378,0.980378,0.980378,0.980378,0.980378,0.504397,0.504397,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,2.841675,0.980378,0.980378,15,15,, +26333,0,0.060197,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.28993,0.15,4,0.240787,0.240787,0.240787,0.240787,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,,,,,,,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.083072,0.083072,0.083072,0.083072,0.083072,0.083072,0.083072,0.083072,0.04274,0.04274,14.999995,14.99998,14.999996,14.999996,14.99997,14.999991,15,15,15,15,,,,,,,,,,,34400,34400,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.240787,0.083072,0.083072,15,15,, +10047,0,0.163174,1,1,0,2,4,,5,5,Willis,Rd,1427410,5.051,5.214,0,3.49658,3,4,0.244761,0.244761,0.244761,0.244761,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.302584,0.543752,0.244761,0.244761,0.302584,0.543752,0.266611,0.373359,0.244761,0.244761,0.266611,0.373359,0.328221,0.684115,0.244761,0.244761,0.328221,0.684115,0.244761,0.244761,0.244761,0.244761,0.244761,0.244761,,,,,,,0.302584,0.543752,0.266611,0.373359,0.328221,0.684115,0.244761,0.244761,0.244761,0.244761,0.120146,0.192497,0.109355,0.141379,0.127837,0.234606,0.102799,0.102799,0.054663,0.054663,32.356091,18.0053,36.721756,26.222525,29.8288,14.311085,40,40,40,40,,,,,,,,,,,3096,3096,0.244761,0.244761,0.244761,0.244761,0.244761,0.244761,0.244761,0.244761,0.102799,0.102799,40,40,, +11374,0,1.021016,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,5.017,6.038,0,21.878914,3,4,1.531524,1.531524,1.531524,1.531524,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.555384,1.535186,1.531524,1.531524,1.555384,1.535186,1.53197,1.532777,1.531524,1.531524,1.53197,1.532777,1.535902,1.576216,1.531524,1.531524,1.535902,1.576216,1.531524,1.531524,1.531524,1.531524,1.531524,1.531524,,,,,,,1.555384,1.535186,1.53197,1.532777,1.535902,1.576216,1.531524,1.531524,1.531524,1.531524,0.650398,0.644339,0.643374,0.643616,0.644554,0.656648,0.64324,0.64324,0.34204,0.34204,39.38639,39.90458,39.988345,39.967304,39.885975,38.865849,40,40,40,40,,,,,,,,,,,3096,3096,1.531524,1.531524,1.531524,1.531524,1.531524,1.531524,1.531524,1.531524,0.64324,0.64324,40,40,, +10048,0,0.114437,1,1,0,2,4,,5,5,Willis,Rd,1427410,4.854,4.968,0,2.452214,3,4,0.171655,0.171655,0.171655,0.171655,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.235289,0.189039,0.171655,0.171655,0.235289,0.189039,0.180415,0.176034,0.171655,0.171655,0.180415,0.176034,0.34544,0.188492,0.171655,0.171655,0.34544,0.188492,0.171655,0.171655,0.171655,0.171655,0.171655,0.171655,,,,,,,0.235289,0.189039,0.180415,0.176034,0.34544,0.188492,0.171655,0.171655,0.171655,0.171655,0.091185,0.07731,0.074723,0.073409,0.124231,0.077146,0.072095,0.072095,0.038336,0.038336,29.182024,36.321558,38.057895,39.004953,19.876659,36.426921,40,40,40,40,,,,,,,,,,,3096,3096,0.171655,0.171655,0.171655,0.171655,0.171655,0.171655,0.171655,0.171655,0.072095,0.072095,40,40,, +10458,1,0.314054,1,0,0,1,2,RON,4,5,W Willis/N US 23,RAMP,1431303,0,0.314,0,,1.09,4,0.418739,,0.418739,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.428067,,0.418739,,0.428067,,0.422543,,0.418739,,0.422543,,0.430582,,0.418739,,0.430582,,0.418739,,0.418739,,0.418739,,,,,,,,0.428067,,0.422543,,0.430582,,0.418739,,0.418739,,0.18495,,0.183293,,0.185704,,0.182151,,0.097357,,44.019372,,44.594886,,43.762265,,45,,45,,,,,,,,,,,,5160,,0.418739,,0.418739,,0.418739,,0.418739,,0.182151,,45,,, +10501,1,0.313565,2,0,0,1,2,,5,5,N US 23,,1431202,5.126,5.44,0,,1.02,7,0.26877,,0.26877,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.292316,,0.26877,,0.292316,,0.269185,,0.26877,,0.269185,,0.271021,,0.26877,,0.271021,,0.26877,,0.26877,,0.26877,,,,,,,,0.292316,,0.269185,,0.271021,,0.26877,,0.26877,,0.144137,,0.137197,,0.137748,,0.137073,,0.074808,,64.361421,,69.892055,,69.418734,,70,,70,,,,,,,,,,,,15136,,0.26877,,0.26877,,0.26877,,0.26877,,0.137073,,70,,, +11404,1,0.30062,1,0,0,1,2,ROF,4,5,S US 23/Willis,RAMP,1431607,0,0.301,0,,2.24,5,0.450931,,0.450931,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.464595,,0.450931,,0.464595,,0.453015,,0.450931,,0.453015,,0.490901,,0.450931,,0.490901,,0.450931,,0.450931,,0.450931,,,,,,,,0.464595,,0.453015,,0.490901,,0.450931,,0.450931,,0.19349,,0.190016,,0.201382,,0.189391,,0.100708,,38.823572,,39.815997,,36.743106,,40,,40,,,,,,,,,,,,5160,,0.450931,,0.450931,,0.450931,,0.450931,,0.189391,,40,,, +10318,0,0.030145,2,2,1,2,4,,5,5,Willis,Rd,1427410,4.823,4.854,0,0.645966,3,4,0.045218,0.045218,0.045218,0.045218,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.047757,0.04531,0.045218,0.045218,0.047757,0.04531,0.045792,0.045233,0.045218,0.045218,0.045792,0.045233,0.050947,0.045286,0.045218,0.045218,0.050947,0.045286,0.045218,0.045218,0.045218,0.045218,0.045218,0.045218,,,,,,,0.047757,0.04531,0.045792,0.045233,0.050947,0.045286,0.045218,0.045218,0.045218,0.045218,0.019753,0.019019,0.019164,0.018996,0.02071,0.019012,0.018991,0.018991,0.010099,0.010099,37.873465,39.918878,39.498575,39.986499,35.501575,39.939272,40,40,40,40,,,,,,,,,,,6502,6502,0.045218,0.045218,0.045218,0.045218,0.045218,0.045218,0.045218,0.045218,0.018991,0.018991,40,40,, +10316,0,0.082835,1,1,0,2,4,,5,5,Willis,Rd,1427410,4.968,5.051,0,1.775028,3,4,0.124252,0.124252,0.124252,0.124252,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.140343,0.136836,0.124252,0.124252,0.140343,0.136836,0.128366,0.127422,0.124252,0.124252,0.128366,0.127422,0.142593,0.13644,0.124252,0.124252,0.142593,0.13644,0.124252,0.124252,0.124252,0.124252,0.124252,0.124252,,,,,,,0.140343,0.136836,0.128366,0.127422,0.142593,0.13644,0.124252,0.124252,0.124252,0.124252,0.057013,0.055961,0.05342,0.053137,0.057688,0.055842,0.052186,0.052186,0.02775,0.02775,35.413841,36.321558,38.718133,39.004953,34.855011,36.426921,40,40,40,40,,,,,,,,,,,3096,3096,0.124252,0.124252,0.124252,0.124252,0.124252,0.124252,0.124252,0.124252,0.052186,0.052186,40,40,, +10726,0,0.482619,1,1,0,2,4,,4,5,Textile,Rd,1438102,0.24,0.723,0,10.341832,4.5,4.5,0.76203,0.76203,0.76203,0.76203,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.762951,1.065963,0.76203,0.76203,0.762951,1.065963,0.762305,0.763381,0.76203,0.76203,0.762305,0.763381,0.809554,0.787106,0.76203,0.76203,0.809554,0.787106,0.76203,0.76203,0.76203,0.76203,0.76203,0.76203,,,,,,,0.762951,1.065963,0.762305,0.763381,0.809554,0.787106,0.76203,0.76203,0.76203,0.76203,0.315757,0.40666,0.315563,0.315886,0.329737,0.323003,0.31548,0.31548,0.167393,0.167393,37.954136,27.16523,37.986298,37.93272,35.769261,36.789351,38,38,38,38,,,,,,,,,,,3096,3096,0.76203,0.76203,0.76203,0.76203,0.76203,0.76203,0.76203,0.76203,0.31548,0.31548,38,38,, +11368,0,1.026787,1,1,0,2,4,,4,5,Carpenter,Rd,1431609,7.055,8.081,0,22.002577,4.5,4.5,1.621243,1.621243,1.621243,1.621243,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.320219,1.735726,1.621243,1.621243,2.320219,1.735726,1.659641,1.639128,1.621243,1.621243,1.659641,1.639128,1.95413,2.162751,1.621243,1.621243,1.95413,2.162751,1.621243,1.621243,1.621243,1.621243,1.621243,1.621243,,,,,,,2.320219,1.735726,1.659641,1.639128,1.95413,2.162751,1.621243,1.621243,1.621243,1.621243,0.880887,0.705539,0.682714,0.67656,0.771061,0.833647,0.671194,0.671194,0.356133,0.356133,26.552324,35.49363,37.12081,37.585358,31.526678,28.485576,38,38,38,38,,,,,,,,,,,3096,3096,1.621243,1.621243,1.621243,1.621243,1.621243,1.621243,1.621243,1.621243,0.671194,0.671194,38,38,, +11585,0,0.504138,1,1,0,2,5,GRV,4,5,Merritt,Rd,1438204,0.231,0.735,0,10.802952,6.55,4.5,2.016551,2.016551,2.016551,2.016551,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.024718,2.037592,2.016551,2.016551,2.024718,2.037592,2.026397,2.054728,2.016551,2.016551,2.026397,2.054728,2.030425,2.080125,2.016551,2.016551,2.030425,2.080125,2.016551,2.016551,2.016551,2.016551,2.016551,2.016551,,,,,,,2.024718,2.037592,2.026397,2.054728,2.030425,2.080125,2.016551,2.016551,2.016551,2.016551,0.69816,0.702023,0.698664,0.707163,0.699872,0.714782,0.69571,0.69571,0.357938,0.357938,14.939495,14.845101,14.927114,14.7213,14.897502,14.54156,15,15,15,15,,,,,,,,,,,2064,2064,2.016551,2.016551,2.016551,2.016551,2.016551,2.016551,2.016551,2.016551,0.69571,0.69571,15,15,, +25025,0,1.024595,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.95561,0.15,4,4.098381,4.098381,4.098381,4.098381,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,,,,,,,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,1.413941,1.413941,1.413941,1.413941,1.413941,1.413941,1.413941,1.413941,0.727463,0.727463,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,4.098381,1.413941,1.413941,15,15,, +10216,1,0.283937,1,0,0,1,2,RON,4,5,Michigan/S US 23,RAMP,1427605,0,0.284,0,,1.09,4,0.378583,,0.378583,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.378646,,0.378583,,0.378646,,0.378657,,0.378583,,0.378657,,0.379261,,0.378583,,0.379261,,0.378583,,0.378583,,0.378583,,,,,,,,0.378646,,0.378657,,0.379261,,0.378583,,0.378583,,0.164702,,0.164706,,0.164887,,0.164684,,0.088021,,44.992557,,44.991251,,44.919571,,45,,45,,,,,,,,,,,,5160,,0.378583,,0.378583,,0.378583,,0.378583,,0.164684,,45,,, +10090,0,0.071752,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.606,16.678,0,1.537542,3.7,5,0.107628,0.107628,0.107628,0.107628,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.277182,0.487553,0.107628,0.107628,0.277182,0.487553,0.175421,0.344147,0.107628,0.107628,0.175421,0.344147,0.27243,0.856244,0.107628,0.107628,0.27243,0.856244,0.107628,0.107628,0.107628,0.107628,0.107628,0.107628,,,,,,,0.277182,0.487553,0.175421,0.344147,0.27243,0.856244,0.107628,0.107628,0.107628,0.107628,0.09607,0.159181,0.065542,0.11616,0.094644,0.269789,0.045204,0.045204,0.024037,0.024037,15.531737,8.830055,24.541593,12.509519,15.802634,5.027911,40,40,40,40,,,,,,,,,,,4162,4162,0.107628,0.107628,0.107628,0.107628,0.107628,0.107628,0.107628,0.107628,0.045204,0.045204,40,40,, +25026,0,0.14904,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.193718,0.15,4,0.596161,0.596161,0.596161,0.596161,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,,,,,,,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.205675,0.205675,0.205675,0.205675,0.205675,0.205675,0.205675,0.205675,0.105819,0.105819,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.596161,0.205675,0.205675,15,15,, +11547,0,0.522467,1,1,0,2,4,,4,5,Textile,Rd,1438102,0.723,1.245,0,11.195719,4.5,4.5,0.824948,0.824948,0.824948,0.824948,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.829617,1.036524,0.824948,0.824948,0.829617,1.036524,0.825525,0.827306,0.824948,0.824948,0.825525,0.827306,0.882532,0.886962,0.824948,0.824948,0.882532,0.886962,0.824948,0.824948,0.824948,0.824948,0.824948,0.824948,,,,,,,0.829617,1.036524,0.825525,0.827306,0.882532,0.886962,0.824948,0.824948,0.824948,0.824948,0.342929,0.405001,0.341702,0.342236,0.358804,0.360133,0.341528,0.341528,0.181214,0.181214,37.786143,30.243415,37.973424,37.891684,35.520529,35.343118,38,38,38,38,,,,,,,,,,,3096,3096,0.824948,0.824948,0.824948,0.824948,0.824948,0.824948,0.824948,0.824948,0.341528,0.341528,38,38,, +10468,0,0.559637,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,6.648,7.207,0,11.992222,3.7,5,1.119274,1.119274,1.119274,1.119274,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.119663,1.119277,1.119274,1.119274,1.119663,1.119277,1.119274,1.119274,1.119274,1.119274,1.119274,1.119274,1.119278,1.119288,1.119274,1.119274,1.119278,1.119288,1.119274,1.119274,1.119274,1.119274,1.119274,1.119274,,,,,,,1.119663,1.119277,1.119274,1.119274,1.119278,1.119288,1.119274,1.119274,1.119274,1.119274,0.436634,0.436518,0.436517,0.436517,0.436518,0.436521,0.436517,0.436517,0.229451,0.229451,29.989567,29.999919,30,30,29.999901,29.999614,30,30,30,30,,,,,,,,,,,2580,2580,1.119274,1.119274,1.119274,1.119274,1.119274,1.119274,1.119274,1.119274,0.436517,0.436517,30,30,, +26239,0,1.280782,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,27.445321,0.15,4,5.123127,5.123127,5.123127,5.123127,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,,,,,,,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,1.767479,1.767479,1.767479,1.767479,1.767479,1.767479,1.767479,1.767479,0.909355,0.909355,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,5.123127,1.767479,1.767479,15,15,, +10704,0,0.443387,1,1,0,2,6,GRV,5,5,McCrone,Rd,1433205,2.812,3.255,0,9.501155,5.55,5,1.064129,1.064129,1.064129,1.064129,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.064302,1.064175,1.064129,1.064129,1.064302,1.064175,1.06413,1.06413,1.064129,1.064129,1.06413,1.06413,1.064179,1.064158,1.064129,1.064129,1.064179,1.064158,1.064129,1.064129,1.064129,1.064129,1.064129,1.064129,,,,,,,1.064302,1.064175,1.06413,1.06413,1.064179,1.064158,1.064129,1.064129,1.064129,1.064129,0.3991,0.399062,0.399049,0.399049,0.399063,0.399057,0.399048,0.399048,0.208392,0.208392,24.995944,24.998934,24.999973,24.999973,24.998826,24.999316,25,25,25,25,,,,,,,,,,,2236,2236,1.064129,1.064129,1.064129,1.064129,1.064129,1.064129,1.064129,1.064129,0.399048,0.399048,25,25,, +10467,0,1.216805,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,7.207,8.423,0,26.074395,3.7,5,2.43361,2.43361,2.43361,2.43361,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.433666,2.434222,2.43361,2.43361,2.433666,2.434222,2.433612,2.433611,2.43361,2.43361,2.433612,2.433611,2.434042,2.433698,2.43361,2.43361,2.434042,2.433698,2.43361,2.43361,2.43361,2.43361,2.43361,2.43361,,,,,,,2.433666,2.434222,2.433612,2.433611,2.434042,2.433698,2.43361,2.43361,2.43361,2.43361,0.949125,0.949291,0.949108,0.949108,0.949238,0.949134,0.949108,0.949108,0.49889,0.49889,29.999312,29.992461,29.999981,29.999986,29.994673,29.998913,30,30,30,30,,,,,,,,,,,2580,2580,2.43361,2.43361,2.43361,2.43361,2.43361,2.43361,2.43361,2.43361,0.949108,0.949108,30,30,, +10464,0,0.36172,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,9.546,9.907,0,7.751141,5.8,4.5,0.803822,0.803822,0.803822,0.803822,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.803825,0.803831,0.803822,0.803822,0.803825,0.803831,0.803822,0.803823,0.803822,0.803822,0.803822,0.803823,0.803829,0.803826,0.803822,0.803822,0.803829,0.803826,0.803822,0.803822,0.803822,0.803822,0.803822,0.803822,,,,,,,0.803825,0.803831,0.803822,0.803823,0.803829,0.803826,0.803822,0.803822,0.803822,0.803822,0.306257,0.306259,0.306256,0.306256,0.306258,0.306258,0.306256,0.306256,0.160363,0.160363,26.999887,26.9997,26.999991,26.999983,26.999777,26.999855,27,27,27,27,,,,,,,,,,,2580,2580,0.803822,0.803822,0.803822,0.803822,0.803822,0.803822,0.803822,0.803822,0.306256,0.306256,27,27,, +11072,0,0.438667,1,1,0,2,4,,4,5,Textile,Rd,1438102,2.011,2.449,0,9.400001,4.5,4.5,0.692632,0.692632,0.692632,0.692632,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.693712,0.901304,0.692632,0.692632,0.693712,0.901304,0.693145,0.694985,0.692632,0.692632,0.693145,0.694985,0.827495,0.724584,0.692632,0.692632,0.827495,0.724584,0.692632,0.692632,0.692632,0.692632,0.692632,0.692632,,,,,,,0.693712,0.901304,0.693145,0.694985,0.827495,0.724584,0.692632,0.692632,0.692632,0.692632,0.287074,0.349351,0.286903,0.287455,0.327208,0.296335,0.28675,0.28675,0.152148,0.152148,37.940814,29.20215,37.971885,37.871337,31.806846,36.324293,38,38,38,38,,,,,,,,,,,3096,3096,0.692632,0.692632,0.692632,0.692632,0.692632,0.692632,0.692632,0.692632,0.28675,0.28675,38,38,, +11584,0,0.826466,1,1,0,2,5,,4,5,Merritt,Rd,1438204,1.642,2.468,0,17.709995,5.8,4.5,1.836592,1.836592,1.836592,1.836592,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.836592,1.836596,1.836592,1.836592,1.836592,1.836596,1.836592,1.836592,1.836592,1.836592,1.836592,1.836592,1.836596,1.836592,1.836592,1.836592,1.836596,1.836592,1.836592,1.836592,1.836592,1.836592,1.836592,1.836592,,,,,,,1.836592,1.836596,1.836592,1.836592,1.836596,1.836592,1.836592,1.836592,1.836592,1.836592,0.699742,0.699743,0.699742,0.699742,0.699743,0.699742,0.699742,0.699742,0.3664,0.3664,27,26.999947,27,26.999999,26.999947,26.999999,27,27,27,27,,,,,,,,,,,2580,2580,1.836592,1.836592,1.836592,1.836592,1.836592,1.836592,1.836592,1.836592,0.699742,0.699742,27,27,, +26247,0,0.597624,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.806218,0.15,4,2.390494,2.390494,2.390494,2.390494,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,,,,,,,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,0.82472,0.82472,0.82472,0.82472,0.82472,0.82472,0.82472,0.82472,0.424313,0.424313,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,2.390494,0.82472,0.82472,15,15,, +30104,0,0.507066,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.86569,0.15,4,2.028262,2.028262,2.028262,2.028262,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,,,,,,,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,0.69975,0.69975,0.69975,0.69975,0.69975,0.69975,0.69975,0.69975,0.360017,0.360017,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,2.028262,0.69975,0.69975,15,15,, +10465,0,0.305296,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,9.241,9.546,0,6.542065,5.8,4.5,0.678436,0.678436,0.678436,0.678436,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.678456,0.679444,0.678436,0.678436,0.678456,0.679444,0.678438,0.678437,0.678436,0.678436,0.678438,0.678437,0.679033,0.678472,0.678436,0.678436,0.679033,0.678472,0.678436,0.678436,0.678436,0.678436,0.678436,0.678436,,,,,,,0.678456,0.679444,0.678438,0.678437,0.679033,0.678472,0.678436,0.678436,0.678436,0.678436,0.25849,0.258786,0.258485,0.258485,0.258663,0.258495,0.258484,0.258484,0.135348,0.135348,26.999217,26.959967,26.999946,26.999957,26.976256,26.998598,27,27,27,27,,,,,,,,,,,2580,2580,0.678436,0.678436,0.678436,0.678436,0.678436,0.678436,0.678436,0.678436,0.258484,0.258484,27,27,, +26248,0,0.2882,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.175718,0.15,4,1.152801,1.152801,1.152801,1.152801,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,,,,,,,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,0.397716,0.397716,0.397716,0.397716,0.397716,0.397716,0.397716,0.397716,0.204622,0.204622,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,1.152801,0.397716,0.397716,15,15,, +5136,1,0.211219,1,0,0,1,2,ROF,5,8,N US 23/9 Mile,RAMP,931603,0,0.211,0,,2.24,5,0.316829,,0.316829,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.316933,,0.316829,,0.316933,,0.316859,,0.316829,,0.316859,,0.31805,,0.316829,,0.31805,,0.316829,,0.316829,,0.316829,,,,,,,,0.316933,,0.316859,,0.31805,,0.316829,,0.316829,,0.133099,,0.133077,,0.133435,,0.133068,,0.070758,,39.986839,,39.996154,,39.846366,,40,,40,,,,,,,,,,,,5160,,0.316829,,0.316829,,0.316829,,0.316829,,0.133068,,40,,, +5595,-1,0.931086,0,2,0,1,2,,5,8,S US 23,,932002,0.222,1.153,0,,1.02,7,,0.798074,,0.798074,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.358699,,0.798074,,1.358699,,0.800474,,0.798074,,0.800474,,0.832551,,0.798074,,0.832551,,0.798074,,0.798074,,0.798074,,,,,,,,1.358699,,0.800474,,0.832551,,0.798074,,0.798074,,0.575205,,0.407738,,0.417361,,0.407018,,0.222131,,41.11666,,69.790126,,67.101197,,70,,70,,,,,,,,,,,,15136,,0.798074,,0.798074,,0.798074,,0.798074,,0.407018,,70,, +5916,1,0.081643,1,0,0,1,2,RON,5,8,W M 36/S US 23,RAMP,932004,0,0.082,0,,1.09,4,0.108857,,0.108857,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.109476,,0.108857,,0.109476,,0.108886,,0.108857,,0.108886,,0.108971,,0.108857,,0.108971,,0.108857,,0.108857,,0.108857,,,,,,,,0.109476,,0.108886,,0.108971,,0.108857,,0.108857,,0.047539,,0.047361,,0.047387,,0.047353,,0.025309,,44.745435,,44.9881,,44.953086,,45,,45,,,,,,,,,,,,5160,,0.108857,,0.108857,,0.108857,,0.108857,,0.047353,,45,,, +5917,1,0.210955,1,0,0,1,2,RON,5,8,M 36/S US 23,RAMP,932004,0.082,0.293,0,,1.09,4,0.281273,,0.281273,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.285709,,0.281273,,0.285709,,0.281385,,0.281273,,0.281385,,0.28173,,0.281273,,0.28173,,0.281273,,0.281273,,0.281273,,,,,,,,0.285709,,0.281385,,0.28173,,0.281273,,0.281273,,0.123684,,0.122387,,0.122491,,0.122354,,0.065396,,44.301338,,44.982059,,44.92694,,45,,45,,,,,,,,,,,,5160,,0.281273,,0.281273,,0.281273,,0.281273,,0.122354,,45,,, +5985,0,0.069287,1,1,0,2,4,,5,8,M 36,,931604,2.034,2.103,0,1.484713,3,4,0.10393,0.10393,0.10393,0.10393,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.114125,0.104322,0.10393,0.10393,0.114125,0.104322,0.106641,0.104102,0.10393,0.10393,0.106641,0.104102,0.119147,0.109349,0.10393,0.10393,0.119147,0.109349,0.10393,0.10393,0.10393,0.10393,0.10393,0.10393,,,,,,,0.114125,0.104322,0.106641,0.104102,0.119147,0.109349,0.10393,0.10393,0.10393,0.10393,0.046709,0.043768,0.044464,0.043702,0.048216,0.045276,0.043651,0.043651,0.023211,0.023211,36.426742,39.849571,38.983238,39.933728,34.891184,38.017618,40,40,40,40,,,,,,,,,,,3096,3096,0.10393,0.10393,0.10393,0.10393,0.10393,0.10393,0.10393,0.10393,0.043651,0.043651,40,40,, +6180,1,0.242429,1,0,0,1,2,ROF,5,8,N US 23/Silver Lake,RAMP,931607,0,0.242,0,,2.24,5,0.363643,,0.363643,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.363676,,0.363643,,0.363676,,0.363649,,0.363643,,0.363649,,0.363753,,0.363643,,0.363753,,0.363643,,0.363643,,0.363643,,,,,,,,0.363676,,0.363649,,0.363753,,0.363643,,0.363643,,0.15274,,0.152732,,0.152763,,0.15273,,0.081214,,39.996381,,39.999283,,39.987861,,40,,40,,,,,,,,,,,,5160,,0.363643,,0.363643,,0.363643,,0.363643,,0.15273,,40,,, +6182,0,0.110204,1,1,0,2,4,,5,8,Silver Lake,Rd,931608,0.025,0.135,0,2.361504,3,4,0.165305,0.165305,0.165305,0.165305,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.291589,0.169191,0.165305,0.165305,0.291589,0.169191,0.180378,0.166345,0.165305,0.165305,0.180378,0.166345,0.208137,0.190333,0.165305,0.165305,0.208137,0.190333,0.165305,0.165305,0.165305,0.165305,0.165305,0.165305,,,,,,,0.291589,0.169191,0.180378,0.166345,0.208137,0.190333,0.165305,0.165305,0.165305,0.165305,0.107313,0.070594,0.07395,0.06974,0.082278,0.076936,0.069428,0.069428,0.036918,0.036918,22.676465,39.081238,36.657466,39.749927,31.768488,34.740312,40,40,40,40,,,,,,,,,,,3096,3096,0.165305,0.165305,0.165305,0.165305,0.165305,0.165305,0.165305,0.165305,0.069428,0.069428,40,40,, +6305,0,1.597396,1,1,0,2,7,,5,8,Fieldcrest,Dr,4105311,0.165,1.762,0,34.229904,5.8,6,3.833749,3.833749,3.833749,3.833749,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,,,,,,,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,1.437656,1.437656,1.437656,1.437656,1.437656,1.437656,1.437656,1.437656,0.750776,0.750776,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,3.833749,1.437656,1.437656,25,25,, +6389,1,1.180823,2,0,0,1,2,,5,8,N US 23,,931510,1.435,2.616,0,,1.02,7,1.012134,,1.012134,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.050207,,1.012134,,1.050207,,1.014445,,1.012134,,1.014445,,1.235498,,1.012134,,1.235498,,1.012134,,1.012134,,1.012134,,,,,,,,1.050207,,1.014445,,1.235498,,1.012134,,1.012134,,0.52761,,0.516881,,0.583197,,0.516188,,0.281711,,67.46231,,69.840549,,57.344797,,70,,70,,,,,,,,,,,,15136,,1.012134,,1.012134,,1.012134,,1.012134,,0.516188,,70,,, +6395,0,0.77198,1,1,0,2,5,,5,8,Whitmore Lake,Rd,932204,2.043,2.815,0,16.542433,3.7,5,1.54396,1.54396,1.54396,1.54396,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.543961,1.54396,1.54396,1.54396,1.543961,1.54396,1.54396,1.54396,1.54396,1.54396,1.54396,1.54396,1.54396,1.54397,1.54396,1.54396,1.54396,1.54397,1.54396,1.54396,1.54396,1.54396,1.54396,1.54396,,,,,,,1.543961,1.54396,1.54396,1.54396,1.54396,1.54397,1.54396,1.54396,1.54396,1.54396,0.602145,0.602145,0.602145,0.602145,0.602145,0.602148,0.602145,0.602145,0.316512,0.316512,29.999991,29.999999,30,30,30,29.999807,30,30,30,30,,,,,,,,,,,2580,2580,1.54396,1.54396,1.54396,1.54396,1.54396,1.54396,1.54396,1.54396,0.602145,0.602145,30,30,, +6819,-1,1.227564,0,2,0,1,2,,5,8,S US 23,,932002,1.42,2.647,0,,1.02,7,,1.052198,,1.052198,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.472978,,1.052198,,1.472978,,1.055001,,1.052198,,1.055001,,1.093745,,1.052198,,1.093745,,1.052198,,1.052198,,1.052198,,,,,,,,1.472978,,1.055001,,1.093745,,1.052198,,1.052198,,0.662855,,0.537462,,0.549085,,0.536621,,0.292862,,50.00335,,69.814018,,67.340963,,70,,70,,,,,,,,,,,,15136,,1.052198,,1.052198,,1.052198,,1.052198,,0.536621,,70,, +6893,1,0.144558,2,0,0,1,2,,5,8,N US 23,,931510,1.012,1.157,0,,1.02,7,0.123906,,0.123906,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.126566,,0.123906,,0.126566,,0.124059,,0.123906,,0.124059,,0.145214,,0.123906,,0.145214,,0.123906,,0.123906,,0.123906,,,,,,,,0.126566,,0.124059,,0.145214,,0.123906,,0.123906,,0.06399,,0.063238,,0.069584,,0.063192,,0.034487,,68.528845,,69.913994,,59.728929,,70,,70,,,,,,,,,,,,15136,,0.123906,,0.123906,,0.123906,,0.123906,,0.063192,,70,,, +6905,0,0.163728,1,1,0,2,4,,5,8,Whitmore Lake,Rd,932204,1.213,1.377,0,3.508465,3,4,0.245593,0.245593,0.245593,0.245593,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.2456,0.249773,0.245593,0.245593,0.2456,0.249773,0.245594,0.247641,0.245593,0.245593,0.245594,0.247641,0.245604,0.255396,0.245593,0.245593,0.245604,0.255396,0.245593,0.245593,0.245593,0.245593,0.245593,0.245593,,,,,,,0.2456,0.249773,0.245594,0.247641,0.245604,0.255396,0.245593,0.245593,0.245593,0.245593,0.103151,0.104403,0.103149,0.103764,0.103152,0.10609,0.103149,0.103149,0.054849,0.054849,39.998737,39.330565,39.999752,39.669058,39.998197,38.464519,40,40,40,40,,,,,,,,,,,3096,3096,0.245593,0.245593,0.245593,0.245593,0.245593,0.245593,0.245593,0.245593,0.103149,0.103149,40,40,, +9493,1,0.718402,2,0,0,1,1,,3,5,E I 94,,1426109,21.528,22.246,0,,0.58,7,0.66314,,0.66314,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.673922,,0.66314,,0.673922,,0.663432,,0.66314,,0.663432,,0.690989,,0.66314,,0.690989,,0.66314,,0.66314,,0.66314,,,,,,,,0.673922,,0.663432,,0.690989,,0.66314,,0.66314,,0.331489,,0.328342,,0.336609,,0.328254,,0.178495,,63.960087,,64.971435,,62.380288,,65,,65,,,,,,,,,,,,15136,,0.66314,,0.66314,,0.66314,,0.66314,,0.328254,,65,,, +9622,0,0.320899,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,14.07,14.391,0,6.876407,6,4.5,0.583453,0.583453,0.583453,0.583453,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.598676,0.585928,0.583453,0.583453,0.598676,0.585928,0.584506,0.586089,0.583453,0.583453,0.584506,0.586089,0.588439,0.621606,0.583453,0.583453,0.588439,0.621606,0.583453,0.583453,0.583453,0.583453,0.583453,0.583453,,,,,,,0.598676,0.585928,0.584506,0.586089,0.588439,0.621606,0.583453,0.583453,0.583453,0.583453,0.237365,0.23354,0.233114,0.233588,0.234293,0.244244,0.232798,0.232798,0.122817,0.122817,32.160852,32.860611,32.940528,32.851589,32.720386,30.974507,33,33,33,33,,,,,,,,,,,2580,2580,0.583453,0.583453,0.583453,0.583453,0.583453,0.583453,0.583453,0.583453,0.232798,0.232798,33,33,, +9926,-1,0.407285,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,0.275,0.682,0,8.727541,5,5,,0.610928,,0.610928,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.613049,,0.610928,,0.613049,,0.620696,,0.610928,,0.620696,,0.688727,,0.610928,,0.688727,,0.610928,,0.610928,,0.610928,,,,,,,,0.613049,,0.620696,,0.688727,,0.610928,,0.610928,,0.257226,,0.25952,,0.27993,,0.25659,,0.136441,,39.861597,,39.370509,,35.481554,,40,,40,,,,,,,,,,,,6880,,0.610928,,0.610928,,0.610928,,0.610928,,0.25659,,40,, +9935,0,1.216441,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,17.222,18.438,0,26.066586,3,4,1.824661,1.824661,1.824661,1.824661,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.381482,1.857101,1.824661,1.824661,2.381482,1.857101,1.824818,1.824838,1.824661,1.824661,1.824818,1.824838,1.877172,2.177083,1.824661,1.824661,1.877172,2.177083,1.824661,1.824661,1.824661,1.824661,1.824661,1.824661,,,,,,,2.381482,1.857101,1.824818,1.824838,1.877172,2.177083,1.824661,1.824661,1.824661,1.824661,0.933404,0.77609,0.766405,0.766411,0.782111,0.872084,0.766358,0.766358,0.407508,0.407508,30.647492,39.301276,39.996559,39.99612,38.881064,33.524876,40,40,40,40,,,,,,,,,,,3096,3096,1.824661,1.824661,1.824661,1.824661,1.824661,1.824661,1.824661,1.824661,0.766358,0.766358,40,40,, +10161,-1,1.620232,0,2,0,1,2,,3,5,W M 14,,1427103,2.049,3.668,0,,0.58,7,,1.495599,,1.495599,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.513243,,1.495599,,1.513243,,1.49683,,1.495599,,1.49683,,1.521663,,1.495599,,1.521663,,1.495599,,1.495599,,1.495599,,,,,,,,1.513243,,1.49683,,1.521663,,1.495599,,1.495599,,0.745615,,0.740691,,0.748141,,0.740322,,0.402565,,64.242117,,64.946553,,63.886668,,65,,65,,,,,,,,,,,,15136,,1.495599,,1.495599,,1.495599,,1.495599,,0.740322,,65,, +10292,0,0.183961,2,2,0,2,3,,3,5,Stadium,Blvd,1429506,1.685,1.869,0,3.942017,5,5,0.315361,0.315361,0.315361,0.315361,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.406315,0.321634,0.315361,0.315361,0.406315,0.321634,0.327417,0.322023,0.315361,0.315361,0.327417,0.322023,0.349318,0.402158,0.315361,0.315361,0.349318,0.402158,0.315361,0.315361,0.315361,0.315361,0.315361,0.315361,,,,,,,0.406315,0.321634,0.327417,0.322023,0.349318,0.402158,0.315361,0.315361,0.315361,0.315361,0.155008,0.129603,0.131338,0.12972,0.137908,0.15376,0.127721,0.127721,0.06754,0.06754,27.165226,34.317394,33.711231,34.275945,31.597724,27.446053,35,35,35,35,,,,,,,,,,,7568,7568,0.315361,0.315361,0.315361,0.315361,0.315361,0.315361,0.315361,0.315361,0.127721,0.127721,35,35,, +10345,-1,0.571192,0,2,0,1,1,,3,5,W I 94,,1426110,21.678,22.249,0,,0.58,7,,0.527254,,0.527254,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.547432,,0.527254,,0.547432,,0.527531,,0.527254,,0.527531,,0.538216,,0.527254,,0.538216,,0.527254,,0.527254,,0.527254,,,,,,,,0.547432,,0.527531,,0.538216,,0.527254,,0.527254,,0.267044,,0.261074,,0.26428,,0.260991,,0.141919,,62.604144,,64.965934,,63.676135,,65,,65,,,,,,,,,,,,15136,,0.527254,,0.527254,,0.527254,,0.527254,,0.260991,,65,, +10393,1,1.51984,2,0,0,1,2,,3,5,E M 14,,1426704,2.139,3.658,0,,0.58,7,1.402929,,1.402929,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.419506,,1.402929,,1.419506,,1.404846,,1.402929,,1.404846,,1.437845,,1.402929,,1.437845,,1.402929,,1.402929,,1.402929,,,,,,,,1.419506,,1.404846,,1.437845,,1.402929,,1.402929,,0.699423,,0.695025,,0.704925,,0.69445,,0.377622,,64.240923,,64.911297,,63.421575,,65,,65,,,,,,,,,,,,15136,,1.402929,,1.402929,,1.402929,,1.402929,,0.69445,,65,,, +10518,-1,3.87025,0,2,0,1,2,,5,5,S US 23,,1431105,0.475,4.343,0,,1.02,7,,3.317357,,3.317357,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.628916,,3.317357,,3.628916,,3.34984,,3.317357,,3.34984,,3.484787,,3.317357,,3.484787,,3.317357,,3.317357,,3.317357,,,,,,,,3.628916,,3.34984,,3.484787,,3.317357,,3.317357,,1.78532,,1.701597,,1.742081,,1.691852,,0.923331,,63.990178,,69.321218,,66.636788,,70,,70,,,,,,,,,,,,15136,,3.317357,,3.317357,,3.317357,,3.317357,,1.691852,,70,, +10531,1,3.55635,2,0,0,1,2,,5,5,N US 23,,1431003,0.752,4.307,0,,1.02,7,3.0483,,3.0483,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.121418,,3.0483,,3.121418,,3.065932,,3.0483,,3.065932,,3.133267,,3.0483,,3.133267,,3.0483,,3.0483,,3.0483,,,,,,,,3.121418,,3.065932,,3.133267,,3.0483,,3.0483,,1.576568,,1.559923,,1.580123,,1.554633,,0.848443,,68.360285,,69.597433,,68.101767,,70,,70,,,,,,,,,,,,15136,,3.0483,,3.0483,,3.0483,,3.0483,,1.554633,,70,,, +10548,0,0.1878,1,1,0,2,4,,2,5,Miller,Rd,1430906,4.888,5.076,0,4.024283,8,4.5,0.402428,0.402428,0.402428,0.402428,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.991917,0.423989,0.402428,0.402428,0.991917,0.423989,0.51575,0.500525,0.402428,0.402428,0.51575,0.500525,0.548134,0.999456,0.402428,0.402428,0.548134,0.999456,0.402428,0.402428,0.402428,0.402428,0.402428,0.402428,,,,,,,0.991917,0.423989,0.51575,0.500525,0.548134,0.999456,0.402428,0.402428,0.402428,0.402428,0.331379,0.161001,0.188529,0.183961,0.198244,0.333641,0.154532,0.154532,0.081022,0.081022,11.359809,26.576171,21.847781,22.512363,20.556991,11.274124,28,28,28,28,,,,,,,,,,,2408,2408,0.402428,0.402428,0.402428,0.402428,0.402428,0.402428,0.402428,0.402428,0.154532,0.154532,28,28,, +10580,0,0.346136,1,1,0,2,5,,3,5,Summit,St,1430803,0.127,0.473,0,7.417204,8,4.5,0.830727,0.830727,0.830727,0.830727,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.943263,0.836232,0.830727,0.830727,0.943263,0.836232,0.836659,0.834145,0.830727,0.830727,0.836659,0.834145,0.861681,0.985364,0.830727,0.830727,0.861681,0.985364,0.830727,0.830727,0.830727,0.830727,0.830727,0.830727,,,,,,,0.943263,0.836232,0.836659,0.834145,0.861681,0.985364,0.830727,0.830727,0.830727,0.830727,0.345283,0.313174,0.313302,0.312548,0.320809,0.357914,0.311523,0.311523,0.162684,0.162684,22.017373,24.835412,24.822736,24.897564,24.101924,21.076653,25,25,25,25,,,,,,,,,,,2408,2408,0.830727,0.830727,0.830727,0.830727,0.830727,0.830727,0.830727,0.830727,0.311523,0.311523,25,25,, +10638,0,0.189529,1,1,0,2,5,,2,5,Madison,St,1430701,0,0.189,0,4.061342,8.5,4.5,0.568588,0.568588,0.568588,0.568588,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.957049,0.569623,0.568588,0.568588,0.957049,0.569623,0.600685,0.611174,0.568588,0.568588,0.600685,0.611174,0.649793,0.97777,0.568588,0.568588,0.649793,0.97777,0.568588,0.568588,0.568588,0.568588,0.568588,0.568588,,,,,,,0.957049,0.569623,0.600685,0.611174,0.649793,0.97777,0.568588,0.568588,0.568588,0.568588,0.32123,0.205002,0.214321,0.217467,0.229053,0.327446,0.204692,0.204692,0.106136,0.106136,11.882107,19.963642,18.931309,18.606423,17.500575,11.630302,20,20,20,20,,,,,,,,,,,2064,2064,0.568588,0.568588,0.568588,0.568588,0.568588,0.568588,0.568588,0.568588,0.204692,0.204692,20,20,, +10644,0,0.184447,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,1.18,1.364,0,3.95243,8,4.5,0.442672,0.442672,0.442672,0.442672,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.655925,0.444772,0.442672,0.442672,0.655925,0.444772,0.477139,0.467885,0.442672,0.442672,0.477139,0.467885,0.508133,0.660395,0.442672,0.442672,0.508133,0.660395,0.442672,0.442672,0.442672,0.442672,0.442672,0.442672,,,,,,,0.655925,0.444772,0.477139,0.467885,0.508133,0.660395,0.442672,0.442672,0.442672,0.442672,0.229978,0.166632,0.176342,0.173566,0.18564,0.231319,0.166002,0.166002,0.08669,0.08669,16.872059,24.881989,23.194077,23.652842,21.779351,16.757856,25,25,25,25,,,,,,,,,,,2408,2408,0.442672,0.442672,0.442672,0.442672,0.442672,0.442672,0.442672,0.442672,0.166002,0.166002,25,25,, +10774,0,1.422593,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,2.982,4.404,0,30.484141,3,4,2.13389,2.13389,2.13389,2.13389,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.135187,2.242304,2.13389,2.13389,2.135187,2.242304,2.135241,2.137455,2.13389,2.13389,2.135241,2.137455,2.179413,2.143752,2.13389,2.13389,2.179413,2.143752,2.13389,2.13389,2.13389,2.13389,2.13389,2.13389,,,,,,,2.135187,2.242304,2.135241,2.137455,2.179413,2.143752,2.13389,2.13389,2.13389,2.13389,0.896623,0.928758,0.896639,0.897303,0.909891,0.899192,0.896234,0.896234,0.476569,0.476569,39.975696,38.066022,39.974688,39.933274,39.164494,39.815986,40,40,40,40,,,,,,,,,,,3096,3096,2.13389,2.13389,2.13389,2.13389,2.13389,2.13389,2.13389,2.13389,0.896234,0.896234,40,40,, +10840,0,0.408091,2,2,1,2,3,,3,5,Ann Arbor Saline,Rd,1436706,3.02,3.428,0,8.744801,5,5,0.699584,0.699584,0.699584,0.699584,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.944947,0.720612,0.699584,0.699584,0.944947,0.720612,0.734519,0.73328,0.699584,0.699584,0.734519,0.73328,0.77405,0.861065,0.699584,0.699584,0.77405,0.861065,0.699584,0.699584,0.699584,0.699584,0.699584,0.699584,,,,,,,0.944947,0.720612,0.734519,0.73328,0.77405,0.861065,0.699584,0.699584,0.699584,0.699584,0.35694,0.28964,0.293812,0.29344,0.305671,0.331776,0.283332,0.283332,0.149828,0.149828,25.911978,33.978664,33.335362,33.391688,31.632905,28.436236,35,35,35,35,,,,,,,,,,,7946,7946,0.699584,0.699584,0.699584,0.699584,0.699584,0.699584,0.699584,0.699584,0.283332,0.283332,35,35,, +10900,0,0.556199,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,9.393,9.949,0,11.91854,5.8,4.5,1.235997,1.235997,1.235997,1.235997,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.236039,1.255446,1.235997,1.235997,1.236039,1.255446,1.236176,1.236257,1.235997,1.235997,1.236176,1.236257,1.248998,1.236704,1.235997,1.235997,1.248998,1.236704,1.235997,1.235997,1.235997,1.235997,1.235997,1.235997,,,,,,,1.236039,1.255446,1.236176,1.236257,1.248998,1.236704,1.235997,1.235997,1.235997,1.235997,0.470928,0.47675,0.470969,0.470993,0.474815,0.471127,0.470915,0.470915,0.246581,0.246581,26.999068,26.581708,26.996086,26.994325,26.718945,26.984553,27,27,27,27,,,,,,,,,,,2580,2580,1.235997,1.235997,1.235997,1.235997,1.235997,1.235997,1.235997,1.235997,0.470915,0.470915,27,27,, +10924,0,0.976479,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,4.6,5.576,0,20.924547,3.7,5,1.952958,1.952958,1.952958,1.952958,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.960089,2.088846,1.952958,1.952958,1.960089,2.088846,1.954188,1.954971,1.952958,1.952958,1.954188,1.954971,1.989192,1.96832,1.952958,1.952958,1.989192,1.96832,1.952958,1.952958,1.952958,1.952958,1.952958,1.952958,,,,,,,1.960089,2.088846,1.954188,1.954971,1.989192,1.96832,1.952958,1.952958,1.952958,1.952958,0.763793,0.80242,0.762023,0.762257,0.772524,0.766262,0.761654,0.761654,0.400356,0.400356,29.890859,28.048371,29.981115,29.969112,29.453537,29.765852,30,30,30,30,,,,,,,,,,,2580,2580,1.952958,1.952958,1.952958,1.952958,1.952958,1.952958,1.952958,1.952958,0.761654,0.761654,30,30,, +11027,0,0.336274,1,1,0,2,5,,5,5,Shore,Dr,1446607,0,0.336,0,7.205862,3.7,5,0.672547,0.672547,0.672547,0.672547,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.673234,0.793895,0.672547,0.672547,0.673234,0.793895,0.675226,0.676679,0.672547,0.672547,0.675226,0.676679,0.735419,0.703184,0.672547,0.672547,0.735419,0.703184,0.672547,0.672547,0.672547,0.672547,0.672547,0.672547,,,,,,,0.673234,0.793895,0.675226,0.676679,0.735419,0.703184,0.672547,0.672547,0.672547,0.672547,0.2625,0.298698,0.263097,0.263533,0.281155,0.271484,0.262293,0.262293,0.137872,0.137872,29.969377,25.41445,29.880968,29.816811,27.435253,28.692952,30,30,30,30,,,,,,,,,,,2580,2580,0.672547,0.672547,0.672547,0.672547,0.672547,0.672547,0.672547,0.672547,0.262293,0.262293,30,30,, +11405,0,0.761483,1,1,0,2,5,,5,5,Nixon,Rd,1443105,2.033,2.794,0,16.317502,3.7,5,1.522967,1.522967,1.522967,1.522967,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.523513,1.784596,1.522967,1.522967,1.523513,1.784596,1.523123,1.523468,1.522967,1.522967,1.523123,1.523468,1.650318,1.527789,1.522967,1.522967,1.650318,1.527789,1.522967,1.522967,1.522967,1.522967,1.522967,1.522967,,,,,,,1.523513,1.784596,1.523123,1.523468,1.650318,1.527789,1.522967,1.522967,1.522967,1.522967,0.594121,0.672446,0.594004,0.594107,0.632162,0.595404,0.593957,0.593957,0.312208,0.312208,29.98925,25.601877,29.996927,29.990132,27.684967,29.905318,30,30,30,30,,,,,,,,,,,2580,2580,1.522967,1.522967,1.522967,1.522967,1.522967,1.522967,1.522967,1.522967,0.593957,0.593957,30,30,, +19633,0,0.482742,1,1,1,2,5,,3,5,Oakbrook,Dr,1908304,0.183,0.666,0,10.344476,8,4.5,1.158581,1.158581,1.158581,1.158581,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,,,,,,,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,0.434468,0.434468,0.434468,0.434468,0.434468,0.434468,0.434468,0.434468,0.226889,0.226889,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2649,2649,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,1.158581,0.434468,0.434468,25,25,, +20020,0,0.248233,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,0.693,0.941,0,5.319279,5.8,4.5,0.551629,0.551629,0.551629,0.551629,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.551863,0.566849,0.551629,0.551629,0.551863,0.566849,0.560804,0.566419,0.551629,0.551629,0.560804,0.566419,0.570307,0.556542,0.551629,0.551629,0.570307,0.556542,0.551629,0.551629,0.551629,0.551629,0.551629,0.551629,,,,,,,0.551863,0.566849,0.560804,0.566419,0.570307,0.556542,0.551629,0.551629,0.551629,0.551629,0.210241,0.214737,0.212923,0.214608,0.215774,0.211645,0.210171,0.210171,0.11005,0.11005,26.988559,26.275047,26.558246,26.294968,26.115708,26.761629,27,27,27,27,,,,,,,,,,,2838,2838,0.551629,0.551629,0.551629,0.551629,0.551629,0.551629,0.551629,0.551629,0.210171,0.210171,27,27,, +21314,0,1.211355,1,1,0,2,5,,4,5,Huron River,Dr,4604062,0,1.211,0,25.957601,5.8,4.5,2.691899,2.691899,2.691899,2.691899,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.744635,2.6919,2.691899,2.691899,2.744635,2.6919,2.6919,2.691899,2.691899,2.691899,2.6919,2.691899,2.691905,2.726302,2.691899,2.691899,2.691905,2.726302,2.691899,2.691899,2.691899,2.691899,2.691899,2.691899,,,,,,,2.744635,2.6919,2.6919,2.691899,2.691905,2.726302,2.691899,2.691899,2.691899,2.691899,1.041434,1.025614,1.025614,1.025614,1.025615,1.035935,1.025614,1.025614,0.537034,0.537034,26.481221,26.999998,26.999999,27,26.999943,26.659291,27,27,27,27,,,,,,,,,,,2580,2580,2.691899,2.691899,2.691899,2.691899,2.691899,2.691899,2.691899,2.691899,1.025614,1.025614,27,27,, +21421,0,1.155837,1,1,0,2,4,,4,5,Huron River,Dr,4604062,8.146,9.301,0,24.767929,4.5,4.5,1.825005,1.825005,1.825005,1.825005,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.831488,1.827673,1.825005,1.825005,1.831488,1.827673,1.825684,1.825277,1.825005,1.825005,1.825684,1.825277,1.855629,1.825196,1.825005,1.825005,1.855629,1.825196,1.825005,1.825005,1.825005,1.825005,1.825005,1.825005,,,,,,,1.831488,1.827673,1.825684,1.825277,1.855629,1.825196,1.825005,1.825005,1.825005,1.825005,0.757497,0.756353,0.755756,0.755634,0.764739,0.755609,0.755552,0.755552,0.400893,0.400893,37.865495,37.94453,37.985873,37.994349,37.372872,37.996033,38,38,38,38,,,,,,,,,,,3096,3096,1.825005,1.825005,1.825005,1.825005,1.825005,1.825005,1.825005,1.825005,0.755552,0.755552,38,38,, +21447,0,0.316103,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,6.98,7.296,0,6.773635,4.5,4.5,0.49911,0.49911,0.49911,0.49911,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.762513,0.502298,0.49911,0.49911,0.762513,0.502298,0.513947,0.509671,0.49911,0.49911,0.513947,0.509671,0.544703,0.720021,0.49911,0.49911,0.544703,0.720021,0.49911,0.49911,0.49911,0.49911,0.49911,0.49911,,,,,,,0.762513,0.502298,0.513947,0.509671,0.544703,0.720021,0.49911,0.49911,0.49911,0.49911,0.285653,0.207588,0.211083,0.2098,0.220309,0.272905,0.206632,0.206632,0.109638,0.109638,24.873236,37.758821,36.903005,37.212608,34.819315,26.341138,38,38,38,38,,,,,,,,,,,3096,3096,0.49911,0.49911,0.49911,0.49911,0.49911,0.49911,0.49911,0.49911,0.206632,0.206632,38,38,, +21600,0,1.662252,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,3.795,5.456,0,35.619677,3,4,2.493377,2.493377,2.493377,2.493377,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.493381,2.493398,2.493377,2.493377,2.493381,2.493398,2.493378,2.493378,2.493377,2.493377,2.493378,2.493378,2.493387,2.493382,2.493377,2.493377,2.493387,2.493382,2.493377,2.493377,2.493377,2.493377,2.493377,2.493377,,,,,,,2.493381,2.493398,2.493378,2.493378,2.493387,2.493382,2.493377,2.493377,2.493377,2.493377,1.04722,1.047225,1.047219,1.047219,1.047221,1.04722,1.047219,1.047219,0.556854,0.556854,39.99994,39.999668,39.999996,39.999996,39.999848,39.999934,40,40,40,40,,,,,,,,,,,3096,3096,2.493377,2.493377,2.493377,2.493377,2.493377,2.493377,2.493377,2.493377,1.047219,1.047219,40,40,, +21701,0,0.908518,1,1,0,2,5,GRV,5,5,Earhart,Rd,4600037,2.714,3.622,0,19.468248,5.55,5,2.725555,2.725555,2.725555,2.725555,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.725555,2.725561,2.725555,2.725555,2.725555,2.725561,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,,,,,,,2.725555,2.725561,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,0.9812,0.981202,0.9812,0.9812,0.9812,0.9812,0.9812,0.9812,0.50877,0.50877,20,19.999955,20,20,19.999999,20,20,20,20,20,,,,,,,,,,,2236,2236,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,2.725555,0.9812,0.9812,20,20,, +21869,0,0.03427,1,1,0,2,4,,2,5,Liberty,St,4603025,7.389,7.423,0,0.734348,8,4.5,0.073435,0.073435,0.073435,0.073435,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.199503,0.090202,0.073435,0.073435,0.199503,0.090202,0.104475,0.109846,0.073435,0.073435,0.104475,0.109846,0.105574,0.260046,0.073435,0.073435,0.105574,0.260046,0.073435,0.073435,0.073435,0.073435,0.073435,0.073435,,,,,,,0.199503,0.090202,0.104475,0.109846,0.105574,0.260046,0.073435,0.073435,0.073435,0.073435,0.06602,0.033229,0.037511,0.039122,0.037841,0.084182,0.028199,0.028199,0.014785,0.014785,10.306466,22.795224,19.680951,18.718666,19.476198,7.906957,28,28,28,28,,,,,,,,,,,2408,2408,0.073435,0.073435,0.073435,0.073435,0.073435,0.073435,0.073435,0.073435,0.028199,0.028199,28,28,, +22018,0,0.236587,2,2,0,2,3,,2,5,Huron,St,4604878,1.755,1.991,0,5.069727,6,5,0.473175,0.473175,0.473175,0.473175,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,1.641771,0.583772,0.473175,0.473175,1.641771,0.583772,0.769838,0.794464,0.473175,0.473175,0.769838,0.794464,0.907117,1.830403,0.473175,0.473175,0.907117,1.830403,0.473175,0.473175,0.473175,0.473175,0.473175,0.473175,,,,,,,1.641771,0.583772,0.769838,0.794464,0.907117,1.830403,0.473175,0.473175,0.473175,0.473175,0.535117,0.217717,0.273537,0.280925,0.314721,0.591707,0.184538,0.184538,0.097001,0.097001,8.646294,24.316411,18.43925,17.867691,15.648746,7.755251,30,30,30,30,,,,,,,,,,,5504,5504,0.473175,0.473175,0.473175,0.473175,0.473175,0.473175,0.473175,0.473175,0.184538,0.184538,30,30,, +22090,1,0.418259,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,0.275,0.693,0,8.962693,5,5,0.627389,,0.627389,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.645403,,0.627389,,0.645403,,0.632521,,0.627389,,0.632521,,0.637367,,0.627389,,0.637367,,0.627389,,0.627389,,0.627389,,,,,,,,0.645403,,0.632521,,0.637367,,0.627389,,0.627389,,0.268908,,0.265043,,0.266497,,0.263503,,0.140117,,38.88351,,39.675457,,39.373779,,40,,40,,,,,,,,,,,,6880,,0.627389,,0.627389,,0.627389,,0.627389,,0.263503,,40,,, +22103,0,0.953834,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,1.9,2.854,0,20.439304,3,4,1.430751,1.430751,1.430751,1.430751,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.430753,1.430889,1.430751,1.430751,1.430753,1.430889,1.430754,1.430755,1.430751,1.430751,1.430754,1.430755,1.43082,1.430763,1.430751,1.430751,1.43082,1.430763,1.430751,1.430751,1.430751,1.430751,1.430751,1.430751,,,,,,,1.430753,1.430889,1.430754,1.430755,1.43082,1.430763,1.430751,1.430751,1.430751,1.430751,0.600916,0.600957,0.600916,0.600917,0.600936,0.600919,0.600916,0.600916,0.319534,0.319534,39.999963,39.99614,39.99992,39.999906,39.998088,39.999667,40,40,40,40,,,,,,,,,,,3096,3096,1.430751,1.430751,1.430751,1.430751,1.430751,1.430751,1.430751,1.430751,0.600916,0.600916,40,40,, +25022,0,0.760837,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.303645,0.15,4,3.043347,3.043347,3.043347,3.043347,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,,,,,,,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,1.049955,1.049955,1.049955,1.049955,1.049955,1.049955,1.049955,1.049955,0.540194,0.540194,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,3.043347,1.049955,1.049955,15,15,, +25032,0,0.363663,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.79277,0.15,4,2.181976,2.181976,2.181976,2.181976,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,,,,,,,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,0.720052,0.720052,0.720052,0.720052,0.720052,0.720052,0.720052,0.720052,0.367299,0.367299,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,2.181976,0.720052,0.720052,10,10,, +25034,0,0.719475,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.417325,0.15,4,2.877901,2.877901,2.877901,2.877901,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,,,,,,,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,0.992876,0.992876,0.992876,0.992876,0.992876,0.992876,0.992876,0.992876,0.510827,0.510827,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,2.877901,0.992876,0.992876,15,15,, +25040,0,0.831125,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.809817,0.15,4,3.324499,3.324499,3.324499,3.324499,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,,,,,,,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,1.146952,1.146952,1.146952,1.146952,1.146952,1.146952,1.146952,1.146952,0.590099,0.590099,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,3.324499,1.146952,1.146952,15,15,, +25041,0,0.619043,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.265197,0.15,4,2.47617,2.47617,2.47617,2.47617,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,,,,,,,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,0.854279,0.854279,0.854279,0.854279,0.854279,0.854279,0.854279,0.854279,0.43952,0.43952,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,2.47617,0.854279,0.854279,15,15,, +25487,0,0.271939,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.827266,0.15,4,1.087756,1.087756,1.087756,1.087756,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.087757,1.087756,1.087756,1.087756,1.087757,1.087756,1.087756,1.087756,1.087756,1.087756,1.087756,1.087756,1.087756,1.087757,1.087756,1.087756,1.087756,1.087757,1.087756,1.087756,1.087756,1.087756,1.087756,1.087756,,,,,,,1.087757,1.087756,1.087756,1.087756,1.087756,1.087757,1.087756,1.087756,1.087756,1.087756,0.375276,0.375276,0.375276,0.375276,0.375276,0.375276,0.375276,0.375276,0.193077,0.193077,14.999993,14.999999,14.999998,14.999998,14.999998,14.999989,15,15,15,15,,,,,,,,,,,34400,34400,1.087756,1.087756,1.087756,1.087756,1.087756,1.087756,1.087756,1.087756,0.375276,0.375276,15,15,, +39093,0,1.245686,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.693278,0.15,4,4.982745,4.982745,4.982745,4.982745,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,,,,,,,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,1.719047,1.719047,1.719047,1.719047,1.719047,1.719047,1.719047,1.719047,0.884437,0.884437,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,4.982745,1.719047,1.719047,15,15,, +26360,0,0.852307,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.263712,0.15,4,3.409226,3.409226,3.409226,3.409226,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,,,,,,,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,1.176183,1.176183,1.176183,1.176183,1.176183,1.176183,1.176183,1.176183,0.605138,0.605138,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,3.409226,1.176183,1.176183,15,15,, +26362,0,0.18419,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.946921,0.15,4,1.105138,1.105138,1.105138,1.105138,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,,,,,,,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,0.364695,0.364695,0.364695,0.364695,0.364695,0.364695,0.364695,0.364695,0.186032,0.186032,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,1.105138,0.364695,0.364695,10,10,, +26364,0,0.300039,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.429408,0.15,4,1.800234,1.800234,1.800234,1.800234,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,,,,,,,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,0.594077,0.594077,0.594077,0.594077,0.594077,0.594077,0.594077,0.594077,0.303039,0.303039,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,1.800234,0.594077,0.594077,10,10,, +26374,0,0.494009,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.58591,0.15,4,1.976037,1.976037,1.976037,1.976037,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,,,,,,,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,0.681733,0.681733,0.681733,0.681733,0.681733,0.681733,0.681733,0.681733,0.350746,0.350746,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,1.976037,0.681733,0.681733,15,15,, +26382,0,1.453095,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.137744,0.15,4,5.812379,5.812379,5.812379,5.812379,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,,,,,,,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,2.005271,2.005271,2.005271,2.005271,2.005271,2.005271,2.005271,2.005271,1.031697,1.031697,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,5.812379,2.005271,2.005271,15,15,, +26387,0,0.206623,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.427625,0.15,4,1.239735,1.239735,1.239735,1.239735,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,,,,,,,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,0.409113,0.409113,0.409113,0.409113,0.409113,0.409113,0.409113,0.409113,0.208689,0.208689,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,1.239735,0.409113,0.409113,10,10,, +26390,0,0.428406,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.180136,0.15,4,2.570438,2.570438,2.570438,2.570438,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,,,,,,,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,0.848245,0.848245,0.848245,0.848245,0.848245,0.848245,0.848245,0.848245,0.43269,0.43269,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,2.570438,0.848245,0.848245,10,10,, +26395,0,0.162566,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.483554,0.15,4,0.975395,0.975395,0.975395,0.975395,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,,,,,,,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.32188,0.32188,0.32188,0.32188,0.32188,0.32188,0.32188,0.32188,0.164192,0.164192,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.975395,0.32188,0.32188,10,10,, +26397,0,0.158584,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.398233,0.15,4,0.951505,0.951505,0.951505,0.951505,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,,,,,,,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.313997,0.313997,0.313997,0.313997,0.313997,0.313997,0.313997,0.313997,0.16017,0.16017,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.951505,0.313997,0.313997,10,10,, +26406,0,0.127348,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.728886,0.15,4,0.764088,0.764088,0.764088,0.764088,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,,,,,,,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.252149,0.252149,0.252149,0.252149,0.252149,0.252149,0.252149,0.252149,0.128621,0.128621,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.764088,0.252149,0.252149,10,10,, +26975,0,0.201708,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.322319,0.15,4,1.210249,1.210249,1.210249,1.210249,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,,,,,,,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,0.399382,0.399382,0.399382,0.399382,0.399382,0.399382,0.399382,0.399382,0.203725,0.203725,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,1.210249,0.399382,0.399382,10,10,, +29944,0,0.20953,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.48992,0.15,4,1.257177,1.257177,1.257177,1.257177,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,,,,,,,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,0.414869,0.414869,0.414869,0.414869,0.414869,0.414869,0.414869,0.414869,0.211625,0.211625,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,1.257177,0.414869,0.414869,10,10,, +29960,0,0.361661,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.749877,0.15,4,2.169966,2.169966,2.169966,2.169966,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,,,,,,,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,0.716089,0.716089,0.716089,0.716089,0.716089,0.716089,0.716089,0.716089,0.365278,0.365278,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,2.169966,0.716089,0.716089,10,10,, +29980,0,0.680905,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.590829,0.15,4,2.723621,2.723621,2.723621,2.723621,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,,,,,,,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,0.939649,0.939649,0.939649,0.939649,0.939649,0.939649,0.939649,0.939649,0.483443,0.483443,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,2.723621,0.939649,0.939649,15,15,, +29994,0,0.283702,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.079335,0.15,4,1.702214,1.702214,1.702214,1.702214,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,,,,,,,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,0.561731,0.561731,0.561731,0.561731,0.561731,0.561731,0.561731,0.561731,0.286539,0.286539,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,1.702214,0.561731,0.561731,10,10,, +29997,0,0.896037,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.200789,0.15,4,3.584147,3.584147,3.584147,3.584147,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,,,,,,,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,1.236531,1.236531,1.236531,1.236531,1.236531,1.236531,1.236531,1.236531,0.636186,0.636186,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,3.584147,1.236531,1.236531,15,15,, +30006,0,1.09481,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.46022,0.15,4,4.379241,4.379241,4.379241,4.379241,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,,,,,,,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,1.510838,1.510838,1.510838,1.510838,1.510838,1.510838,1.510838,1.510838,0.777315,0.777315,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,4.379241,1.510838,1.510838,15,15,, +30008,0,0.970655,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.799756,0.15,4,3.882621,3.882621,3.882621,3.882621,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,,,,,,,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,1.339504,1.339504,1.339504,1.339504,1.339504,1.339504,1.339504,1.339504,0.689165,0.689165,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,3.882621,1.339504,1.339504,15,15,, +30048,0,0.162733,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.487142,0.15,4,0.9764,0.9764,0.9764,0.9764,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,,,,,,,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.322212,0.322212,0.322212,0.322212,0.322212,0.322212,0.322212,0.322212,0.164361,0.164361,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.9764,0.322212,0.322212,10,10,, +30051,0,0.164042,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.515191,0.15,4,0.984254,0.984254,0.984254,0.984254,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,,,,,,,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.324804,0.324804,0.324804,0.324804,0.324804,0.324804,0.324804,0.324804,0.165683,0.165683,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.984254,0.324804,0.324804,10,10,, +30097,0,0.232224,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,4.976223,0.15,4,1.393342,1.393342,1.393342,1.393342,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,,,,,,,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,0.459803,0.459803,0.459803,0.459803,0.459803,0.459803,0.459803,0.459803,0.234546,0.234546,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,1.393342,0.459803,0.459803,10,10,, +9498,1,2.797882,2,0,0,1,1,,3,5,E I 94,,1426109,18.05,20.847,0,,0.58,7,2.58266,,2.58266,,65,,44000,,9988,,22000,,14194,,15136,,15118,,2.636163,,2.58266,,2.636163,,2.584498,,2.58266,,2.584498,,2.629602,,2.58266,,2.629602,,2.58266,,2.58266,,2.58266,,,,,,,,2.636163,,2.584498,,2.629602,,2.58266,,2.58266,,1.294468,,1.278968,,1.292499,,1.278417,,0.695166,,63.680769,,64.953768,,63.839656,,65,,65,,,,,,,,,,,,15136,,2.58266,,2.58266,,2.58266,,2.58266,,1.278417,,65,,, +9541,1,1.047086,3,0,0,1,1,,4,5,E I 94,,1426109,15.761,16.808,0,,0.8,7.5,0.897502,,0.897502,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.984918,,0.897502,,0.984918,,0.901081,,0.897502,,0.901081,,0.937108,,0.897502,,0.937108,,0.897502,,0.897502,,0.897502,,,,,,,,0.984918,,0.901081,,0.937108,,0.897502,,0.897502,,0.483951,,0.4588,,0.469608,,0.457726,,0.249805,,63.787165,,69.721936,,67.041482,,70,,70,,,,,,,,,,,,22704,,0.897502,,0.897502,,0.897502,,0.897502,,0.457726,,70,,, +37307,-1,0.366638,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,2.935,3.301,0,7.856527,3.7,5,,0.488851,,0.488851,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.489721,,0.488851,,0.489721,,0.489879,,0.488851,,0.489879,,0.502052,,0.488851,,0.502052,,0.488851,,0.488851,,0.488851,,,,,,,,0.489721,,0.489879,,0.502052,,0.488851,,0.488851,,0.212911,,0.212959,,0.21661,,0.21265,,0.113658,,44.920048,,44.905527,,43.816744,,45,,45,,,,,,,,,,,,7568,,0.488851,,0.488851,,0.488851,,0.488851,,0.21265,,45,, +9664,0,0.271032,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,10.867,11.138,0,5.807838,4.5,4.5,0.427946,0.427946,0.427946,0.427946,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.431235,0.428004,0.427946,0.427946,0.431235,0.428004,0.427995,0.427978,0.427946,0.427946,0.427995,0.427978,0.428382,0.431177,0.427946,0.427946,0.428382,0.431177,0.427946,0.427946,0.427946,0.427946,0.427946,0.427946,,,,,,,0.431235,0.428004,0.427995,0.427978,0.428382,0.431177,0.427946,0.427946,0.427946,0.427946,0.178156,0.177187,0.177184,0.177179,0.1773,0.178139,0.17717,0.17717,0.094005,0.094005,37.710201,37.99481,37.995633,37.997177,37.96134,37.715211,38,38,38,38,,,,,,,,,,,3096,3096,0.427946,0.427946,0.427946,0.427946,0.427946,0.427946,0.427946,0.427946,0.17717,0.17717,38,38,, +9755,0,0.2965,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.373,0.669,0,6.353568,5,5,0.508285,0.508285,0.508285,0.508285,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.584574,0.517364,0.508285,0.508285,0.584574,0.517364,0.524457,0.519799,0.508285,0.508285,0.524457,0.519799,0.558025,0.622173,0.508285,0.508285,0.558025,0.622173,0.508285,0.508285,0.508285,0.508285,0.508285,0.508285,,,,,,,0.584574,0.517364,0.524457,0.519799,0.558025,0.622173,0.508285,0.508285,0.508285,0.508285,0.228742,0.208579,0.210707,0.20931,0.220777,0.240022,0.205856,0.205856,0.108858,0.108858,30.432406,34.38586,33.920795,34.224718,31.880299,28.593316,35,35,35,35,,,,,,,,,,,7946,7946,0.508285,0.508285,0.508285,0.508285,0.508285,0.508285,0.508285,0.508285,0.205856,0.205856,35,35,, +10079,0,0.244929,1,1,0,2,4,,3,5,7th,St,1430205,1.487,1.732,0,5.248471,6,4.5,0.445325,0.445325,0.445325,0.445325,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.831819,0.570149,0.445325,0.445325,0.831819,0.570149,0.563952,0.624626,0.445325,0.445325,0.563952,0.624626,0.731416,1.103084,0.445325,0.445325,0.731416,1.103084,0.445325,0.445325,0.445325,0.445325,0.445325,0.445325,,,,,,,0.831819,0.570149,0.563952,0.624626,0.731416,1.103084,0.445325,0.445325,0.445325,0.445325,0.293633,0.215132,0.213273,0.231475,0.263512,0.375012,0.177685,0.177685,0.093741,0.093741,17.666967,25.775215,26.058454,23.527231,20.092159,13.322392,33,33,33,33,,,,,,,,,,,2580,2580,0.445325,0.445325,0.445325,0.445325,0.445325,0.445325,0.445325,0.445325,0.177685,0.177685,33,33,, +10347,-1,2.20615,0,2,0,1,1,,3,5,W I 94,,1426110,18.468,20.673,0,,0.58,7,,2.036446,,2.036446,,65,,44000,,9988,,22000,,14194,,15136,,15118,,2.054443,,2.036446,,2.054443,,2.03845,,2.036446,,2.03845,,2.096894,,2.036446,,2.096894,,2.036446,,2.036446,,2.036446,,,,,,,,2.054443,,2.03845,,2.096894,,2.036446,,2.036446,,1.01344,,1.008642,,1.026175,,1.008041,,0.548143,,64.430587,,64.936085,,63.126209,,65,,65,,,,,,,,,,,,15136,,2.036446,,2.036446,,2.036446,,2.036446,,1.008041,,65,, +10358,-1,1.301777,0,3,0,1,1,,4,5,W I 94,,1426110,15.442,16.743,0,,0.8,7.5,,1.115809,,1.115809,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.129001,,1.115809,,1.129001,,1.119153,,1.115809,,1.119153,,1.202791,,1.115809,,1.202791,,1.115809,,1.115809,,1.115809,,,,,,,,1.129001,,1.119153,,1.202791,,1.115809,,1.115809,,0.57302,,0.570066,,0.595157,,0.569062,,0.310567,,69.18202,,69.790798,,64.937773,,70,,70,,,,,,,,,,,,22704,,1.115809,,1.115809,,1.115809,,1.115809,,0.569062,,70,, +10564,0,0.986009,1,1,0,2,4,,4,5,Miller,Rd,1430906,0.122,1.107,0,21.128771,4.5,4.5,1.556857,1.556857,1.556857,1.556857,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.591947,1.558622,1.556857,1.556857,1.591947,1.558622,1.559965,1.558627,1.556857,1.556857,1.559965,1.558627,1.560586,1.600306,1.556857,1.556857,1.560586,1.600306,1.556857,1.556857,1.556857,1.556857,1.556857,1.556857,,,,,,,1.591947,1.558622,1.559965,1.558627,1.560586,1.600306,1.556857,1.556857,1.556857,1.556857,0.655066,0.645068,0.645471,0.64507,0.645658,0.657573,0.644539,0.644539,0.34199,0.34199,37.162402,37.956951,37.924282,37.956832,37.90919,36.968289,38,38,38,38,,,,,,,,,,,3096,3096,1.556857,1.556857,1.556857,1.556857,1.556857,1.556857,1.556857,1.556857,0.644539,0.644539,38,38,, +10747,0,0.759855,1,1,0,2,4,,4,5,Wagner,Rd,1433102,13.022,13.781,0,16.28261,4.5,4.5,1.199771,1.199771,1.199771,1.199771,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.298909,1.257737,1.199771,1.199771,1.298909,1.257737,1.236452,1.219902,1.199771,1.199771,1.236452,1.219902,1.360496,1.332181,1.199771,1.199771,1.360496,1.332181,1.199771,1.199771,1.199771,1.199771,1.199771,1.199771,,,,,,,1.298909,1.257737,1.236452,1.219902,1.360496,1.332181,1.199771,1.199771,1.199771,1.199771,0.526447,0.514095,0.507709,0.502744,0.544923,0.536428,0.496705,0.496705,0.26355,0.26355,35.099681,36.248673,36.872695,37.372932,33.510796,34.223061,38,38,38,38,,,,,,,,,,,3096,3096,1.199771,1.199771,1.199771,1.199771,1.199771,1.199771,1.199771,1.199771,0.496705,0.496705,38,38,, +10755,0,1.436569,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,2.995,4.431,0,30.783618,3.7,5,2.873138,2.873138,2.873138,2.873138,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.884224,2.873166,2.873138,2.873138,2.884224,2.873166,2.87324,2.873202,2.873138,2.873138,2.87324,2.873202,2.873786,2.880016,2.873138,2.873138,2.873786,2.880016,2.873138,2.873138,2.873138,2.873138,2.873138,2.873138,,,,,,,2.884224,2.873166,2.87324,2.873202,2.873786,2.880016,2.873138,2.873138,2.873138,2.873138,1.12385,1.120532,1.120554,1.120543,1.120718,1.122587,1.120524,1.120524,0.588993,0.588993,29.884683,29.999705,29.998929,29.999326,29.993231,29.928347,30,30,30,30,,,,,,,,,,,2580,2580,2.873138,2.873138,2.873138,2.873138,2.873138,2.873138,2.873138,2.873138,1.120524,1.120524,30,30,, +10992,0,0.741696,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,4.946,5.688,0,15.893483,4.5,4.5,1.171099,1.171099,1.171099,1.171099,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.187102,1.173068,1.171099,1.171099,1.187102,1.173068,1.171338,1.17119,1.171099,1.171099,1.171338,1.17119,1.175454,1.183098,1.171099,1.171099,1.175454,1.183098,1.171099,1.171099,1.171099,1.171099,1.171099,1.171099,,,,,,,1.187102,1.173068,1.171338,1.17119,1.175454,1.183098,1.171099,1.171099,1.171099,1.171099,0.489636,0.485426,0.484907,0.484862,0.486141,0.488435,0.484835,0.484835,0.257251,0.257251,37.487735,37.936209,37.992246,37.997042,37.859205,37.614587,38,38,38,38,,,,,,,,,,,3096,3096,1.171099,1.171099,1.171099,1.171099,1.171099,1.171099,1.171099,1.171099,0.484835,0.484835,38,38,, +11286,0,0.65299,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,5.188,5.84,0,13.992635,4.5,4.5,1.031036,1.031036,1.031036,1.031036,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.142565,1.036111,1.031036,1.031036,1.142565,1.036111,1.042944,1.037133,1.031036,1.031036,1.042944,1.037133,1.079617,1.115891,1.031036,1.031036,1.079617,1.115891,1.031036,1.031036,1.031036,1.031036,1.031036,1.031036,,,,,,,1.142565,1.036111,1.042944,1.037133,1.079617,1.115891,1.031036,1.031036,1.031036,1.031036,0.460308,0.428371,0.430421,0.428678,0.441423,0.452305,0.426849,0.426849,0.226484,0.226484,34.29073,37.813874,37.566137,37.776618,36.290078,35.110397,38,38,38,38,,,,,,,,,,,3096,3096,1.031036,1.031036,1.031036,1.031036,1.031036,1.031036,1.031036,1.031036,0.426849,0.426849,38,38,, +11319,0,0.317977,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.923,1.241,0,6.8138,6,4.5,0.578141,0.578141,0.578141,0.578141,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.619639,0.579851,0.578141,0.578141,0.619639,0.579851,0.580647,0.58095,0.578141,0.578141,0.580647,0.58095,0.604942,0.640793,0.578141,0.578141,0.604942,0.640793,0.578141,0.578141,0.578141,0.578141,0.578141,0.578141,,,,,,,0.619639,0.579851,0.580647,0.58095,0.604942,0.640793,0.578141,0.578141,0.578141,0.578141,0.243128,0.231191,0.23143,0.231521,0.238718,0.249474,0.230678,0.230678,0.121699,0.121699,30.789912,32.902688,32.857554,32.840397,31.53798,29.773498,33,33,33,33,,,,,,,,,,,2580,2580,0.578141,0.578141,0.578141,0.578141,0.578141,0.578141,0.578141,0.578141,0.230678,0.230678,33,33,, +37308,0,0.272841,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.84659,0.15,4,1.091364,1.091364,1.091364,1.091364,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,,,,,,,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,0.37652,0.37652,0.37652,0.37652,0.37652,0.37652,0.37652,0.37652,0.193717,0.193717,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,1.091364,0.37652,0.37652,15,15,, +21580,0,0.674637,1,1,0,2,5,,4,5,Huron River,Dr,4604062,3.536,4.21,0,14.456504,5.8,4.5,1.499193,1.499193,1.499193,1.499193,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.499194,1.499193,1.499193,1.499193,1.499194,1.499193,1.499193,1.499193,1.499193,1.499193,1.499193,1.499193,1.499193,1.499194,1.499193,1.499193,1.499193,1.499194,1.499193,1.499193,1.499193,1.499193,1.499193,1.499193,,,,,,,1.499194,1.499193,1.499193,1.499193,1.499193,1.499194,1.499193,1.499193,1.499193,1.499193,0.571193,0.571193,0.571193,0.571193,0.571193,0.571193,0.571193,0.571193,0.299089,0.299089,26.999988,26.999999,27,27,26.999999,26.99999,27,27,27,27,,,,,,,,,,,2580,2580,1.499193,1.499193,1.499193,1.499193,1.499193,1.499193,1.499193,1.499193,0.571193,0.571193,27,27,, +21833,0,1.151525,1,1,0,2,4,,4,5,Liberty,Rd,4603025,3.921,5.072,0,24.675534,4.5,4.5,1.818197,1.818197,1.818197,1.818197,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.822843,1.818455,1.818197,1.818197,1.822843,1.818455,1.818289,1.818289,1.818197,1.818197,1.818289,1.818289,1.819802,1.826234,1.818197,1.818197,1.819802,1.826234,1.818197,1.818197,1.818197,1.818197,1.818197,1.818197,,,,,,,1.822843,1.818455,1.818289,1.818289,1.819802,1.826234,1.818197,1.818197,1.818197,1.818197,0.754127,0.752811,0.752761,0.752761,0.753215,0.755145,0.752734,0.752734,0.399397,0.399397,37.903158,37.994605,37.998087,37.998072,37.96649,37.832762,38,38,38,38,,,,,,,,,,,3096,3096,1.818197,1.818197,1.818197,1.818197,1.818197,1.818197,1.818197,1.818197,0.752734,0.752734,38,38,, +24612,0,1.000476,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.438774,0.15,4,4.001904,4.001904,4.001904,4.001904,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,,,,,,,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,1.380657,1.380657,1.380657,1.380657,1.380657,1.380657,1.380657,1.380657,0.710338,0.710338,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,4.001904,1.380657,1.380657,15,15,, +26016,0,0.783621,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.791881,0.15,4,3.134485,3.134485,3.134485,3.134485,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,,,,,,,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,1.081397,1.081397,1.081397,1.081397,1.081397,1.081397,1.081397,1.081397,0.556371,0.556371,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,3.134485,1.081397,1.081397,15,15,, +39911,1,0.282463,2,0,0,2,4,DIV,4,2,Ecorse,Rd,5495383,0,0.282,0,6.052774,4.5,4.5,0.394134,,0.394134,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.396995,,0.394134,,0.396995,,0.394265,,0.394134,,0.394265,,0.397108,,0.394134,,0.397108,,0.394134,,0.394134,,0.394134,,,,,,,,0.396995,,0.394265,,0.397108,,0.394134,,0.394134,,0.169942,,0.169123,,0.169976,,0.169084,,0.090191,,42.690163,,42.985708,,42.677981,,43,,43,,,,,,,,,,,,6880,,0.394134,,0.394134,,0.394134,,0.394134,,0.169084,,43,,, +26024,0,0.318487,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.824718,0.15,4,1.910921,1.910921,1.910921,1.910921,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,,,,,,,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,0.630604,0.630604,0.630604,0.630604,0.630604,0.630604,0.630604,0.630604,0.321672,0.321672,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,1.910921,0.630604,0.630604,10,10,, +26411,0,1.012775,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.702325,0.15,4,4.051101,4.051101,4.051101,4.051101,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,,,,,,,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,1.39763,1.39763,1.39763,1.39763,1.39763,1.39763,1.39763,1.39763,0.71907,0.71907,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,4.051101,1.39763,1.39763,15,15,, +26412,0,0.512363,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.979202,0.15,4,2.049451,2.049451,2.049451,2.049451,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,,,,,,,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,0.707061,0.707061,0.707061,0.707061,0.707061,0.707061,0.707061,0.707061,0.363778,0.363778,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,2.049451,0.707061,0.707061,15,15,, +26414,0,0.581848,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.468168,0.15,4,2.327391,2.327391,2.327391,2.327391,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,,,,,,,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,0.80295,0.80295,0.80295,0.80295,0.80295,0.80295,0.80295,0.80295,0.413112,0.413112,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,2.327391,0.80295,0.80295,15,15,, +26418,0,0.62564,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.406566,0.15,4,2.502559,2.502559,2.502559,2.502559,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,,,,,,,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,0.863383,0.863383,0.863383,0.863383,0.863383,0.863383,0.863383,0.863383,0.444204,0.444204,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,2.502559,0.863383,0.863383,15,15,, +26419,0,0.593935,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.727187,0.15,4,2.375741,2.375741,2.375741,2.375741,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,,,,,,,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,0.819631,0.819631,0.819631,0.819631,0.819631,0.819631,0.819631,0.819631,0.421694,0.421694,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,2.375741,0.819631,0.819631,15,15,, +26424,0,1.041454,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.316873,0.15,4,4.165816,4.165816,4.165816,4.165816,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,,,,,,,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,1.437207,1.437207,1.437207,1.437207,1.437207,1.437207,1.437207,1.437207,0.739432,0.739432,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,4.165816,1.437207,1.437207,15,15,, +26429,0,0.478284,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.248952,0.15,4,2.869707,2.869707,2.869707,2.869707,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,,,,,,,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,0.947003,0.947003,0.947003,0.947003,0.947003,0.947003,0.947003,0.947003,0.483067,0.483067,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,2.869707,0.947003,0.947003,10,10,, +29981,0,0.991967,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.256441,0.15,4,3.967869,3.967869,3.967869,3.967869,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,,,,,,,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,1.368915,1.368915,1.368915,1.368915,1.368915,1.368915,1.368915,1.368915,0.704297,0.704297,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,3.967869,1.368915,1.368915,15,15,, +29987,0,1.023574,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.933728,0.15,4,4.094296,4.094296,4.094296,4.094296,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,,,,,,,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,1.412532,1.412532,1.412532,1.412532,1.412532,1.412532,1.412532,1.412532,0.726738,0.726738,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,4.094296,1.412532,1.412532,15,15,, +30044,0,0.339648,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.278171,0.15,4,2.037888,2.037888,2.037888,2.037888,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,,,,,,,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,0.672503,0.672503,0.672503,0.672503,0.672503,0.672503,0.672503,0.672503,0.343044,0.343044,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,2.037888,0.672503,0.672503,10,10,, +9683,0,1.975252,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,8.14,10.115,0,42.326829,3.7,5,3.950504,3.950504,3.950504,3.950504,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.961738,3.950504,3.950504,3.950504,3.961738,3.950504,3.950508,3.950505,3.950504,3.950504,3.950508,3.950505,3.950523,3.955576,3.950504,3.950504,3.950523,3.955576,3.950504,3.950504,3.950504,3.950504,3.950504,3.950504,,,,,,,3.961738,3.950504,3.950508,3.950505,3.950523,3.955576,3.950504,3.950504,3.950504,3.950504,1.544067,1.540697,1.540698,1.540697,1.540702,1.542218,1.540697,1.540697,0.809853,0.809853,29.914931,29.999999,29.999969,29.999992,29.999854,29.961532,30,30,30,30,,,,,,,,,,,2580,2580,3.950504,3.950504,3.950504,3.950504,3.950504,3.950504,3.950504,3.950504,1.540697,1.540697,30,30,, +10756,0,1.478091,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,1.517,2.995,0,31.673376,3.7,5,2.956182,2.956182,2.956182,2.956182,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.966602,2.9562,2.956182,2.956182,2.966602,2.9562,2.956279,2.956244,2.956182,2.956182,2.956279,2.956244,2.956748,2.963109,2.956182,2.956182,2.956748,2.963109,2.956182,2.956182,2.956182,2.956182,2.956182,2.956182,,,,,,,2.966602,2.9562,2.956279,2.956244,2.956748,2.963109,2.956182,2.956182,2.956182,2.956182,1.156037,1.152916,1.15294,1.152929,1.153081,1.154989,1.152911,1.152911,0.606017,0.606017,29.894628,29.999814,29.999018,29.99937,29.99426,29.929863,30,30,30,30,,,,,,,,,,,2580,2580,2.956182,2.956182,2.956182,2.956182,2.956182,2.956182,2.956182,2.956182,1.152911,1.152911,30,30,, +11011,0,1.011902,1,1,0,2,5,GRV,5,5,Zeeb,Rd,1436703,2.017,3.028,0,21.683619,5.55,5,3.035707,3.035707,3.035707,3.035707,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,3.035708,3.035707,3.035707,3.035707,3.035708,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,,,,,,,3.035707,3.035707,3.035707,3.035707,3.035707,3.035708,3.035707,3.035707,3.035707,3.035707,1.092855,1.092854,1.092854,1.092854,1.092854,1.092855,1.092854,1.092854,0.566665,0.566665,19.999996,20,20,20,19.999999,19.999988,20,20,20,20,,,,,,,,,,,2236,2236,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,3.035707,1.092854,1.092854,20,20,, +24628,0,1.600846,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,34.303847,0.15,4,6.403385,6.403385,6.403385,6.403385,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,,,,,,,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,2.209168,2.209168,2.209168,2.209168,2.209168,2.209168,2.209168,2.209168,1.136601,1.136601,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,6.403385,2.209168,2.209168,15,15,, +24749,0,1.503018,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.207521,0.15,4,6.012071,6.012071,6.012071,6.012071,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,,,,,,,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,2.074164,2.074164,2.074164,2.074164,2.074164,2.074164,2.074164,2.074164,1.067143,1.067143,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,6.012071,2.074164,2.074164,15,15,, +29985,0,1.696508,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.353752,0.15,4,6.786034,6.786034,6.786034,6.786034,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,,,,,,,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,2.341182,2.341182,2.341182,2.341182,2.341182,2.341182,2.341182,2.341182,1.204521,1.204521,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,6.786034,2.341182,2.341182,15,15,, +24610,0,0.105034,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,2.250725,0.15,4,0.420135,0.420135,0.420135,0.420135,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,,,,,,,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.144947,0.144947,0.144947,0.144947,0.144947,0.144947,0.144947,0.144947,0.074574,0.074574,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.420135,0.144947,0.144947,15,15,, +24611,0,1.066692,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.85768,0.15,4,4.266767,4.266767,4.266767,4.266767,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,,,,,,,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,1.472035,1.472035,1.472035,1.472035,1.472035,1.472035,1.472035,1.472035,0.757351,0.757351,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,4.266767,1.472035,1.472035,15,15,, +24630,0,0.71373,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.294224,0.15,4,2.854922,2.854922,2.854922,2.854922,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,,,,,,,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,0.984948,0.984948,0.984948,0.984948,0.984948,0.984948,0.984948,0.984948,0.506749,0.506749,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,2.854922,0.984948,0.984948,15,15,, +9685,0,0.032789,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,8.107,8.14,0,0.702618,3.7,5,0.065578,0.065578,0.065578,0.065578,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.065822,0.065578,0.065578,0.065578,0.065822,0.065578,0.065578,0.065578,0.065578,0.065578,0.065578,0.065578,0.065579,0.065704,0.065578,0.065578,0.065579,0.065704,0.065578,0.065578,0.065578,0.065578,0.065578,0.065578,,,,,,,0.065822,0.065578,0.065578,0.065578,0.065579,0.065704,0.065578,0.065578,0.065578,0.065578,0.025649,0.025575,0.025575,0.025575,0.025576,0.025613,0.025575,0.025575,0.013443,0.013443,29.888648,29.999982,29.999883,29.999959,29.999552,29.942387,30,30,30,30,,,,,,,,,,,2580,2580,0.065578,0.065578,0.065578,0.065578,0.065578,0.065578,0.065578,0.065578,0.025575,0.025575,30,30,, +11012,0,1.002684,1,1,0,2,5,GRV,5,5,Zeeb,Rd,1436703,1.015,2.017,0,21.486096,5.55,5,3.008053,3.008053,3.008053,3.008053,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,3.008054,3.008053,3.008053,3.008053,3.008054,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,,,,,,,3.008053,3.008053,3.008053,3.008053,3.008053,3.008054,3.008053,3.008053,3.008053,3.008053,1.082899,1.082899,1.082899,1.082899,1.082899,1.082899,1.082899,1.082899,0.561503,0.561503,20,20,20,20,20,19.999999,20,20,20,20,,,,,,,,,,,2236,2236,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,3.008053,1.082899,1.082899,20,20,, +9679,0,0.7527,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,10.115,10.867,0,16.129281,4.5,4.5,1.188473,1.188473,1.188473,1.188473,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.193872,1.188531,1.188473,1.188473,1.193872,1.188531,1.188504,1.188497,1.188473,1.188473,1.188504,1.188497,1.188831,1.193178,1.188473,1.188473,1.188831,1.193178,1.188473,1.188473,1.188473,1.188473,1.188473,1.188473,,,,,,,1.193872,1.188531,1.188504,1.188497,1.188831,1.193178,1.188473,1.188473,1.188473,1.188473,0.493648,0.492045,0.492037,0.492035,0.492135,0.493439,0.492028,0.492028,0.261068,0.261068,37.82816,37.998144,37.99903,37.999251,37.988573,37.850174,38,38,38,38,,,,,,,,,,,3096,3096,1.188473,1.188473,1.188473,1.188473,1.188473,1.188473,1.188473,1.188473,0.492028,0.492028,38,38,, +11010,0,0.906368,1,1,0,2,5,,5,5,Zeeb,Rd,1436703,3.028,3.934,0,19.422172,3.7,5,1.812736,1.812736,1.812736,1.812736,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.814944,1.812741,1.812736,1.812736,1.814944,1.812741,1.812791,1.812759,1.812736,1.812736,1.812791,1.812759,1.812858,1.81452,1.812736,1.812736,1.812858,1.81452,1.812736,1.812736,1.812736,1.812736,1.812736,1.812736,,,,,,,1.814944,1.812741,1.812791,1.812759,1.812858,1.81452,1.812736,1.812736,1.812736,1.812736,0.707629,0.706969,0.706984,0.706974,0.707004,0.707502,0.706967,0.706967,0.371611,0.371611,29.963512,29.999917,29.999086,29.999626,29.997976,29.970504,30,30,30,30,,,,,,,,,,,2580,2580,1.812736,1.812736,1.812736,1.812736,1.812736,1.812736,1.812736,1.812736,0.706967,0.706967,30,30,, +21336,0,0.706239,1,1,0,2,4,,4,5,Liberty,Rd,4603025,3.02,3.726,0,15.133689,4.5,4.5,1.115114,1.115114,1.115114,1.115114,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.11771,1.115247,1.115114,1.115114,1.11771,1.115247,1.115151,1.115149,1.115114,1.115114,1.115151,1.115149,1.115717,1.118175,1.115114,1.115114,1.115717,1.118175,1.115114,1.115114,1.115114,1.115114,1.115114,1.115114,,,,,,,1.11771,1.115247,1.115151,1.115149,1.115717,1.118175,1.115114,1.115114,1.115114,1.115114,0.462436,0.461697,0.461668,0.461668,0.461838,0.462576,0.461657,0.461657,0.244953,0.244953,37.911737,37.995475,37.998721,37.998813,37.979445,37.895961,38,38,38,38,,,,,,,,,,,3096,3096,1.115114,1.115114,1.115114,1.115114,1.115114,1.115114,1.115114,1.115114,0.461657,0.461657,38,38,, +11001,0,0.567573,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,3.934,4.502,0,12.162286,4.5,4.5,0.896168,0.896168,0.896168,0.896168,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.903334,0.89623,0.896168,0.896168,0.903334,0.89623,0.896258,0.896201,0.896168,0.896168,0.896258,0.896201,0.896568,0.900431,0.896168,0.896168,0.896568,0.900431,0.896168,0.896168,0.896168,0.896168,0.896168,0.896168,,,,,,,0.903334,0.89623,0.896258,0.896201,0.896568,0.900431,0.896168,0.896168,0.896168,0.896168,0.373164,0.371032,0.371041,0.371023,0.371133,0.372292,0.371014,0.371014,0.196858,0.196858,37.698552,37.997383,37.996205,37.998626,37.983088,37.820133,38,38,38,38,,,,,,,,,,,3096,3096,0.896168,0.896168,0.896168,0.896168,0.896168,0.896168,0.896168,0.896168,0.371014,0.371014,38,38,, +10998,0,0.444492,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,4.502,4.946,0,9.524838,4.5,4.5,0.70183,0.70183,0.70183,0.70183,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.707442,0.701879,0.70183,0.70183,0.707442,0.701879,0.7019,0.701856,0.70183,0.70183,0.7019,0.701856,0.702143,0.705168,0.70183,0.70183,0.702143,0.705168,0.70183,0.70183,0.70183,0.70183,0.70183,0.70183,,,,,,,0.707442,0.701879,0.7019,0.701856,0.702143,0.705168,0.70183,0.70183,0.70183,0.70183,0.292241,0.290572,0.290579,0.290565,0.290651,0.291559,0.290558,0.290558,0.154169,0.154169,37.698552,37.997383,37.996205,37.998626,37.983088,37.820133,38,38,38,38,,,,,,,,,,,3096,3096,0.70183,0.70183,0.70183,0.70183,0.70183,0.70183,0.70183,0.70183,0.290558,0.290558,38,38,, +22100,0,0.195193,1,1,0,2,4,,4,5,Liberty,Rd,4603025,3.726,3.921,0,4.1827,4.5,4.5,0.308199,0.308199,0.308199,0.308199,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.308746,0.308249,0.308199,0.308199,0.308746,0.308249,0.308206,0.308206,0.308199,0.308199,0.308206,0.308206,0.308387,0.309061,0.308199,0.308199,0.308387,0.309061,0.308199,0.308199,0.308199,0.308199,0.308199,0.308199,,,,,,,0.308746,0.308249,0.308206,0.308206,0.308387,0.309061,0.308199,0.308199,0.308199,0.308199,0.127758,0.127609,0.127596,0.127597,0.127651,0.127853,0.127594,0.127594,0.067701,0.067701,37.932663,37.993837,37.999142,37.99912,37.976833,37.894041,38,38,38,38,,,,,,,,,,,3096,3096,0.308199,0.308199,0.308199,0.308199,0.308199,0.308199,0.308199,0.308199,0.127594,0.127594,38,38,, +9525,0,0.318788,1,1,0,2,4,,4,5,Baker,Rd,1426608,0.458,0.777,0,6.831171,4.5,4.5,0.503349,0.503349,0.503349,0.503349,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.842618,1.233397,0.503349,0.503349,0.842618,1.233397,0.668967,0.685182,0.503349,0.503349,0.668967,0.685182,1.278658,1.157361,0.503349,0.503349,1.278658,1.157361,0.503349,0.503349,0.503349,0.503349,0.503349,0.503349,,,,,,,0.842618,1.233397,0.668967,0.685182,1.278658,1.157361,0.503349,0.503349,0.503349,0.503349,0.310167,0.427401,0.258072,0.262936,0.440979,0.40459,0.208387,0.208387,0.110569,0.110569,22.69981,15.507802,28.59226,27.915623,14.958875,16.526634,38,38,38,38,,,,,,,,,,,3096,3096,0.503349,0.503349,0.503349,0.503349,0.503349,0.503349,0.503349,0.503349,0.208387,0.208387,38,38,, +9552,1,0.461284,3,0,0,1,1,,4,5,E I 94,,1426109,13.119,13.58,0,,0.8,7.5,0.395386,,0.395386,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.399333,,0.395386,,0.399333,,0.395683,,0.395386,,0.395683,,0.397749,,0.395386,,0.397749,,0.395386,,0.395386,,0.395386,,,,,,,,0.399333,,0.395683,,0.397749,,0.395386,,0.395386,,0.202831,,0.201736,,0.202356,,0.201647,,0.110049,,69.308049,,69.947521,,69.584189,,70,,70,,,,,,,,,,,,22704,,0.395386,,0.395386,,0.395386,,0.395386,,0.201647,,70,,, +9621,1,0.995725,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,15.219,16.214,0,21.336962,3.7,5,1.327633,,1.327633,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.32871,,1.327633,,1.32871,,1.328066,,1.327633,,1.328066,,1.330657,,1.327633,,1.330657,,1.327633,,1.327633,,1.327633,,,,,,,,1.32871,,1.328066,,1.330657,,1.327633,,1.327633,,0.577843,,0.57765,,0.578428,,0.57752,,0.308675,,44.963542,,44.985332,,44.897732,,45,,45,,,,,,,,,,,,7568,,1.327633,,1.327633,,1.327633,,1.327633,,0.57752,,45,,, +10361,-1,1.632779,0,3,0,1,1,,4,5,W I 94,,1426110,13.391,15.023,0,,0.8,7.5,,1.399525,,1.399525,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.403098,,1.399525,,1.403098,,1.400917,,1.399525,,1.400917,,1.434084,,1.399525,,1.434084,,1.399525,,1.399525,,1.399525,,,,,,,,1.403098,,1.400917,,1.434084,,1.399525,,1.399525,,0.71483,,0.714175,,0.724126,,0.713758,,0.389534,,69.821746,,69.930442,,68.313095,,70,,70,,,,,,,,,,,,22704,,1.399525,,1.399525,,1.399525,,1.399525,,0.713758,,70,, +10907,0,0.501525,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,6.956,7.458,0,10.74697,4.5,4.5,0.791882,0.791882,0.791882,0.791882,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.838427,1.008509,0.791882,0.791882,0.838427,1.008509,0.810676,0.808679,0.791882,0.791882,0.810676,0.808679,1.023735,0.886364,0.791882,0.791882,1.023735,0.886364,0.791882,0.791882,0.791882,0.791882,0.791882,0.791882,,,,,,,0.838427,1.008509,0.810676,0.808679,1.023735,0.886364,0.791882,0.791882,0.791882,0.791882,0.341803,0.392827,0.333477,0.332878,0.397395,0.356184,0.327839,0.327839,0.17395,0.17395,35.890451,29.837627,37.119035,37.210703,29.393848,33.949405,38,38,38,38,,,,,,,,,,,3096,3096,0.791882,0.791882,0.791882,0.791882,0.791882,0.791882,0.791882,0.791882,0.327839,0.327839,38,38,, +11091,0,1.455485,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,1.887,3.342,0,31.188967,4.5,4.5,2.298134,2.298134,2.298134,2.298134,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.486763,2.515882,2.298134,2.298134,3.486763,2.515882,2.571726,2.455814,2.298134,2.298134,2.571726,2.455814,3.05824,3.508575,2.298134,2.298134,3.05824,3.508575,2.298134,2.298134,2.298134,2.298134,2.298134,2.298134,,,,,,,3.486763,2.515882,2.571726,2.455814,3.05824,3.508575,2.298134,2.298134,2.298134,2.298134,1.308016,1.016752,1.033505,0.998732,1.179459,1.31456,0.951428,0.951428,0.504824,0.504824,25.045896,34.711129,33.957387,35.560142,28.555348,24.890194,38,38,38,38,,,,,,,,,,,3096,3096,2.298134,2.298134,2.298134,2.298134,2.298134,2.298134,2.298134,2.298134,0.951428,0.951428,38,38,, +11291,0,0.872779,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,3.999,4.872,0,18.702411,4.5,4.5,1.378072,1.378072,1.378072,1.378072,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.456557,1.381262,1.378072,1.378072,1.456557,1.381262,1.384526,1.380919,1.378072,1.378072,1.384526,1.380919,1.409291,1.4366,1.378072,1.378072,1.409291,1.4366,1.378072,1.378072,1.378072,1.378072,1.378072,1.378072,,,,,,,1.456557,1.381262,1.384526,1.380919,1.409291,1.4366,1.378072,1.378072,1.378072,1.378072,0.594067,0.571479,0.572458,0.571376,0.579888,0.58808,0.570522,0.570522,0.302717,0.302717,35.952415,37.912252,37.822876,37.921665,37.158213,36.45186,38,38,38,38,,,,,,,,,,,3096,3096,1.378072,1.378072,1.378072,1.378072,1.378072,1.378072,1.378072,1.378072,0.570522,0.570522,38,38,, +22072,0,1.270563,1,1,0,2,5,,4,5,Huron River,Dr,4604062,1.211,2.481,0,27.226342,5.8,4.5,2.823473,2.823473,2.823473,2.823473,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.872284,2.823473,2.823473,2.823473,2.872284,2.823473,2.823473,2.823473,2.823473,2.823473,2.823473,2.823473,2.823473,2.853014,2.823473,2.823473,2.823473,2.853014,2.823473,2.823473,2.823473,2.823473,2.823473,2.823473,,,,,,,2.872284,2.823473,2.823473,2.823473,2.823473,2.853014,2.823473,2.823473,2.823473,2.823473,1.090386,1.075743,1.075743,1.075743,1.075743,1.084605,1.075743,1.075743,0.563283,0.563283,26.541166,27,27,27,26.999994,26.720433,27,27,27,27,,,,,,,,,,,2580,2580,2.823473,2.823473,2.823473,2.823473,2.823473,2.823473,2.823473,2.823473,1.075743,1.075743,27,27,, +24633,0,0.737857,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.811216,0.15,4,2.951427,2.951427,2.951427,2.951427,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,,,,,,,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,1.018242,1.018242,1.018242,1.018242,1.018242,1.018242,1.018242,1.018242,0.523878,0.523878,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,2.951427,1.018242,1.018242,15,15,, +24635,0,1.155976,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.770913,0.15,4,4.623904,4.623904,4.623904,4.623904,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,,,,,,,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,1.595247,1.595247,1.595247,1.595247,1.595247,1.595247,1.595247,1.595247,0.820743,0.820743,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,4.623904,1.595247,1.595247,15,15,, +25036,0,0.455205,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.754391,0.15,4,1.82082,1.82082,1.82082,1.82082,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,,,,,,,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,0.628183,0.628183,0.628183,0.628183,0.628183,0.628183,0.628183,0.628183,0.323195,0.323195,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,1.82082,0.628183,0.628183,15,15,, +26416,0,0.914732,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,19.601389,0.15,4,3.658926,3.658926,3.658926,3.658926,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,,,,,,,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,1.262329,1.262329,1.262329,1.262329,1.262329,1.262329,1.262329,1.262329,0.649459,0.649459,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,3.658926,1.262329,1.262329,15,15,, +9631,1,0.82876,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,14.163,14.991,0,17.759141,3.7,5,1.105013,,1.105013,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.105138,,1.105013,,1.105138,,1.105063,,1.105013,,1.105063,,1.105093,,1.105013,,1.105093,,1.105013,,1.105013,,1.105013,,,,,,,,1.105138,,1.105063,,1.105093,,1.105013,,1.105013,,0.480718,,0.480696,,0.480705,,0.480681,,0.256916,,44.994937,,44.997984,,44.996737,,45,,45,,,,,,,,,,,,7568,,1.105013,,1.105013,,1.105013,,1.105013,,0.480681,,45,,, +30117,0,1.100774,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.588005,0.15,4,4.403094,4.403094,4.403094,4.403094,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.403095,4.403094,4.403094,4.403094,4.403095,4.403094,4.403094,4.403094,4.403094,4.403094,4.403094,4.403094,4.403095,4.403094,4.403094,4.403094,4.403095,4.403094,4.403094,4.403094,4.403094,4.403094,4.403094,4.403094,,,,,,,4.403095,4.403094,4.403094,4.403094,4.403095,4.403094,4.403094,4.403094,4.403094,4.403094,1.519068,1.519068,1.519068,1.519068,1.519068,1.519068,1.519068,1.519068,0.781549,0.781549,14.999998,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,4.403094,4.403094,4.403094,4.403094,4.403094,4.403094,4.403094,4.403094,1.519068,1.519068,15,15,, +9529,0,0.017951,2,2,1,2,3,,4,5,Baker,Rd,1426608,0,0.018,0,0.384673,3.7,5,0.026927,0.026927,0.026927,0.026927,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.026952,0.026927,0.026927,0.026927,0.026952,0.026927,0.026927,0.026927,0.026927,0.026927,0.026927,0.026927,0.026928,0.026928,0.026927,0.026927,0.026928,0.026928,0.026927,0.026927,0.026927,0.026927,0.026927,0.026927,,,,,,,0.026952,0.026927,0.026927,0.026927,0.026928,0.026928,0.026927,0.026927,0.026927,0.026927,0.011317,0.011309,0.011309,0.011309,0.01131,0.01131,0.011309,0.011309,0.006014,0.006014,39.963315,39.999864,39.999799,39.999532,39.998975,39.999335,40,40,40,40,,,,,,,,,,,7946,7946,0.026927,0.026927,0.026927,0.026927,0.026927,0.026927,0.026927,0.026927,0.011309,0.011309,40,40,, +10120,1,0.215526,1,0,0,1,1,RON,4,5,Baker/W I 94,RAMP,1427009,0,0.215,0,,1.09,4,0.287368,,0.287368,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.287384,,0.287368,,0.287384,,0.287431,,0.287368,,0.287431,,0.287464,,0.287368,,0.287464,,0.287368,,0.287368,,0.287368,,,,,,,,0.287384,,0.287431,,0.287464,,0.287368,,0.287368,,0.12501,,0.125024,,0.125034,,0.125005,,0.066813,,44.997573,,44.990176,,44.985017,,45,,45,,,,,,,,,,,,5160,,0.287368,,0.287368,,0.287368,,0.287368,,0.125005,,45,,, +10437,1,0.316417,1,0,0,1,1,ROF,4,5,W I 94/Baker,RAMP,1427010,0,0.316,0,,2.24,5,0.474625,,0.474625,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.47918,,0.474625,,0.47918,,0.476241,,0.474625,,0.476241,,0.537173,,0.474625,,0.537173,,0.474625,,0.474625,,0.474625,,,,,,,,0.47918,,0.476241,,0.537173,,0.474625,,0.474625,,0.200709,,0.199827,,0.218107,,0.199342,,0.106,,39.61978,,39.864286,,35.342415,,40,,40,,,,,,,,,,,,5160,,0.474625,,0.474625,,0.474625,,0.474625,,0.199342,,40,,, +9643,1,0.24937,2,0,0,2,4,DIV,4,5,Jackson,Rd,1426508,13.914,14.163,0,5.343635,4.5,4.5,0.347958,,0.347958,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.353499,,0.347958,,0.353499,,0.348007,,0.347958,,0.348007,,0.348147,,0.347958,,0.348147,,0.347958,,0.347958,,0.347958,,,,,,,,0.353499,,0.348007,,0.348147,,0.347958,,0.347958,,0.150936,,0.149289,,0.149331,,0.149274,,0.079624,,42.325974,,42.993874,,42.976592,,43,,43,,,,,,,,,,,,6880,,0.347958,,0.347958,,0.347958,,0.347958,,0.149274,,43,,, +9527,0,0.045559,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.227,0.273,0,0.976262,3.7,5,0.068338,0.068338,0.068338,0.068338,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.068828,0.06922,0.068338,0.068338,0.068828,0.06922,0.068373,0.068464,0.068338,0.068338,0.068373,0.068464,0.068393,0.070028,0.068338,0.068338,0.068393,0.070028,0.068338,0.068338,0.068338,0.068338,0.068338,0.068338,,,,,,,0.068828,0.06922,0.068373,0.068464,0.068393,0.070028,0.068338,0.068338,0.068338,0.068338,0.028849,0.028967,0.028712,0.02874,0.028718,0.029209,0.028702,0.028702,0.015262,0.015262,39.715601,39.490454,39.979909,39.926449,39.968109,39.034583,40,40,40,40,,,,,,,,,,,7946,7946,0.068338,0.068338,0.068338,0.068338,0.068338,0.068338,0.068338,0.068338,0.028702,0.028702,40,40,, +9538,1,0.27327,1,0,0,1,1,ROF,4,5,E I 94/Baker,RAMP,1426606,0,0.273,0,,2.24,5,0.409905,,0.409905,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.409994,,0.409905,,0.409994,,0.410011,,0.409905,,0.410011,,0.409934,,0.409905,,0.409934,,0.409905,,0.409905,,0.409905,,,,,,,,0.409994,,0.410011,,0.409934,,0.409905,,0.409905,,0.172187,,0.172192,,0.172169,,0.17216,,0.091545,,39.991299,,39.989587,,39.997148,,40,,40,,,,,,,,,,,,5160,,0.409905,,0.409905,,0.409905,,0.409905,,0.17216,,40,,, +9555,1,0.195392,3,0,0,1,1,,4,5,E I 94,,1426109,12.924,13.119,0,,0.8,7.5,0.167479,,0.167479,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.167952,,0.167479,,0.167952,,0.167533,,0.167479,,0.167533,,0.167858,,0.167479,,0.167858,,0.167479,,0.167479,,0.167479,,,,,,,,0.167952,,0.167533,,0.167858,,0.167479,,0.167479,,0.085556,,0.08543,,0.085528,,0.085414,,0.046615,,69.802961,,69.977594,,69.842021,,70,,70,,,,,,,,,,,,22704,,0.167479,,0.167479,,0.167479,,0.167479,,0.085414,,70,,, +9533,1,0.191832,1,0,0,1,1,RON,4,5,Baker/E I 94,RAMP,1426607,0,0.192,0,,1.09,4,0.255777,,0.255777,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.2616,,0.255777,,0.2616,,0.256113,,0.255777,,0.256113,,0.257448,,0.255777,,0.257448,,0.255777,,0.255777,,0.255777,,,,,,,,0.2616,,0.256113,,0.257448,,0.255777,,0.255777,,0.11301,,0.111364,,0.111764,,0.111263,,0.059468,,43.998266,,44.940866,,44.707865,,45,,45,,,,,,,,,,,,5160,,0.255777,,0.255777,,0.255777,,0.255777,,0.111263,,45,,, +9528,0,0.007524,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.22,0.227,0,0.16122,3.7,5,0.011285,0.011285,0.011285,0.011285,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.011366,0.011286,0.011285,0.011285,0.011366,0.011286,0.011291,0.011286,0.011285,0.011285,0.011291,0.011286,0.011294,0.011295,0.011285,0.011285,0.011294,0.011295,0.011285,0.011285,0.011285,0.011285,0.011285,0.011285,,,,,,,0.011366,0.011286,0.011291,0.011286,0.011294,0.011295,0.011285,0.011285,0.011285,0.011285,0.004764,0.00474,0.004742,0.00474,0.004743,0.004743,0.00474,0.00474,0.00252,0.00252,39.715601,39.999634,39.979909,39.998699,39.968109,39.96654,40,40,40,40,,,,,,,,,,,7946,7946,0.011285,0.011285,0.011285,0.011285,0.011285,0.011285,0.011285,0.011285,0.00474,0.00474,40,40,, +9526,0,0.009125,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.449,0.458,0,0.195542,3.7,5,0.013688,0.013688,0.013688,0.013688,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.013688,0.013986,0.013688,0.013688,0.013688,0.013986,0.013688,0.013767,0.013688,0.013688,0.013688,0.013767,0.013688,0.014375,0.013688,0.013688,0.013688,0.014375,0.013688,0.013688,0.013688,0.013688,0.013688,0.013688,,,,,,,0.013688,0.013986,0.013688,0.013767,0.013688,0.014375,0.013688,0.013688,0.013688,0.013688,0.005749,0.005838,0.005749,0.005773,0.005749,0.005955,0.005749,0.005749,0.003057,0.003057,39.999005,39.14846,39.998974,39.769155,39.999814,38.089072,40,40,40,40,,,,,,,,,,,7946,7946,0.013688,0.013688,0.013688,0.013688,0.013688,0.013688,0.013688,0.013688,0.005749,0.005749,40,40,, +10397,-1,0.226413,0,3,0,1,1,,4,5,W I 94,,1426110,13.164,13.391,0,,0.8,7.5,,0.194069,,0.194069,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.194198,,0.194069,,0.194198,,0.194125,,0.194069,,0.194125,,0.194926,,0.194069,,0.194926,,0.194069,,0.194069,,0.194069,,,,,,,,0.194198,,0.194125,,0.194926,,0.194069,,0.194069,,0.099014,,0.098992,,0.099232,,0.098975,,0.054016,,69.953538,,69.97969,,69.692168,,70,,70,,,,,,,,,,,,22704,,0.194069,,0.194069,,0.194069,,0.194069,,0.098975,,70,, +9625,1,0.227615,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,14.991,15.219,0,4.877461,3.7,5,0.303486,,0.303486,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.304735,,0.303486,,0.304735,,0.303608,,0.303486,,0.303608,,0.303997,,0.303486,,0.303997,,0.303486,,0.303486,,0.303486,,,,,,,,0.304735,,0.303608,,0.303997,,0.303486,,0.303486,,0.132391,,0.132053,,0.13217,,0.132017,,0.070561,,44.815626,,44.981948,,44.924431,,45,,45,,,,,,,,,,,,7568,,0.303486,,0.303486,,0.303486,,0.303486,,0.132017,,45,,, +26026,0,0.247251,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.298243,0.15,4,0.989005,0.989005,0.989005,0.989005,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,,,,,,,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.341207,0.341207,0.341207,0.341207,0.341207,0.341207,0.341207,0.341207,0.175548,0.175548,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.989005,0.341207,0.341207,15,15,, +24634,0,0.897816,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,19.238908,0.15,4,3.591263,3.591263,3.591263,3.591263,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,,,,,,,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,1.238986,1.238986,1.238986,1.238986,1.238986,1.238986,1.238986,1.238986,0.637449,0.637449,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,3.591263,1.238986,1.238986,15,15,, +11304,0,0.759234,1,1,0,2,4,,4,5,Main,St,1446002,1.128,1.887,0,16.269294,4.5,4.5,1.19879,1.19879,1.19879,1.19879,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.405224,1.222655,1.19879,1.19879,1.405224,1.222655,1.238408,1.22644,1.19879,1.19879,1.238408,1.22644,1.291494,1.374194,1.19879,1.19879,1.291494,1.374194,1.19879,1.19879,1.19879,1.19879,1.19879,1.19879,,,,,,,1.405224,1.222655,1.238408,1.22644,1.291494,1.374194,1.19879,1.19879,1.19879,1.19879,0.558229,0.503459,0.508184,0.504594,0.52411,0.54892,0.496299,0.496299,0.263334,0.263334,32.417615,37.258275,36.784355,37.143286,35.272345,33.149624,38,38,38,38,,,,,,,,,,,3096,3096,1.19879,1.19879,1.19879,1.19879,1.19879,1.19879,1.19879,1.19879,0.496299,0.496299,38,38,, +24639,0,0.533496,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.432061,0.15,4,2.133985,2.133985,2.133985,2.133985,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,,,,,,,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,0.736225,0.736225,0.736225,0.736225,0.736225,0.736225,0.736225,0.736225,0.378782,0.378782,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,2.133985,0.736225,0.736225,15,15,, +24636,0,0.426283,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.134634,0.15,4,1.705132,1.705132,1.705132,1.705132,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,,,,,,,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,0.58827,0.588271,0.58827,0.58827,0.588271,0.58827,0.58827,0.58827,0.302661,0.302661,15,14.999994,15,15,14.999993,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,1.705132,0.58827,0.58827,15,15,, +9550,1,0.481025,3,0,0,1,1,,4,5,E I 94,,1426109,15.28,15.761,0,,0.8,7.5,0.412307,,0.412307,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.42257,,0.412307,,0.42257,,0.412674,,0.412307,,0.412674,,0.415741,,0.412307,,0.415741,,0.412307,,0.412307,,0.412307,,,,,,,,0.42257,,0.412674,,0.415741,,0.412307,,0.412307,,0.213355,,0.210387,,0.211307,,0.210277,,0.114759,,68.300039,,69.937759,,69.421815,,70,,70,,,,,,,,,,,,22704,,0.412307,,0.412307,,0.412307,,0.412307,,0.210277,,70,,, +9604,1,0.848633,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,16.673,17.522,0,18.185003,3.7,5,1.131511,,1.131511,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.137029,,1.131511,,1.137029,,1.1327,,1.131511,,1.1327,,1.136791,,1.131511,,1.136791,,1.131511,,1.131511,,1.131511,,,,,,,,1.137029,,1.1327,,1.136791,,1.131511,,1.131511,,0.493863,,0.492564,,0.493791,,0.492207,,0.263076,,44.781623,,44.952759,,44.791011,,45,,45,,,,,,,,,,,,7568,,1.131511,,1.131511,,1.131511,,1.131511,,0.492207,,45,,, +9619,1,0.459473,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,16.214,16.673,0,9.845857,3.7,5,0.612631,,0.612631,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.616588,,0.612631,,0.616588,,0.613142,,0.612631,,0.613142,,0.614671,,0.612631,,0.614671,,0.612631,,0.612631,,0.612631,,,,,,,,0.616588,,0.613142,,0.614671,,0.612631,,0.612631,,0.267682,,0.266648,,0.267107,,0.266495,,0.142437,,44.711235,,44.962524,,44.850649,,45,,45,,,,,,,,,,,,7568,,0.612631,,0.612631,,0.612631,,0.612631,,0.266495,,45,,, +10360,-1,0.4196,0,3,0,1,1,,4,5,W I 94,,1426110,15.023,15.442,0,,0.8,7.5,,0.359657,,0.359657,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.360129,,0.359657,,0.360129,,0.359846,,0.359657,,0.359846,,0.364353,,0.359657,,0.364353,,0.359657,,0.359657,,0.359657,,,,,,,,0.360129,,0.359846,,0.364353,,0.359657,,0.359657,,0.183567,,0.183482,,0.184834,,0.183425,,0.100105,,69.90822,,69.963243,,69.097817,,70,,70,,,,,,,,,,,,22704,,0.359657,,0.359657,,0.359657,,0.359657,,0.183425,,70,, +10436,1,0.272605,1,0,0,1,1,ROF,4,5,W I 94/Zeeb,RAMP,1427102,0,0.273,0,,2.24,5,0.408908,,0.408908,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.505117,,0.408908,,0.505117,,0.422827,,0.408908,,0.422827,,0.545868,,0.408908,,0.545868,,0.408908,,0.408908,,0.408908,,,,,,,,0.505117,,0.422827,,0.545868,,0.408908,,0.408908,,0.200604,,0.175917,,0.212829,,0.171741,,0.091323,,32.381221,,38.683221,,29.963852,,40,,40,,,,,,,,,,,,5160,,0.408908,,0.408908,,0.408908,,0.408908,,0.171741,,40,,, +10988,0,0.572004,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,5.688,6.259,0,12.257234,4.5,4.5,0.903165,0.903165,0.903165,0.903165,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.918729,0.904017,0.903165,0.903165,0.918729,0.904017,0.90462,0.903864,0.903165,0.903165,0.90462,0.903864,0.908032,0.911166,0.903165,0.903165,0.908032,0.911166,0.903165,0.903165,0.903165,0.903165,0.903165,0.903165,,,,,,,0.918729,0.904017,0.90462,0.903864,0.908032,0.911166,0.903165,0.903165,0.903165,0.903165,0.378579,0.374166,0.374347,0.37412,0.37537,0.376311,0.37391,0.37391,0.198395,0.198395,37.356238,37.964171,37.938883,37.970617,37.796325,37.666285,38,38,38,38,,,,,,,,,,,6502,6502,0.903165,0.903165,0.903165,0.903165,0.903165,0.903165,0.903165,0.903165,0.37391,0.37391,38,38,, +21737,1,0.424915,1,0,0,1,1,RON,4,5,Zeeb/E I 94,RAMP,4604907,0,0.425,0,,1.09,4,0.566553,,0.566553,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.624176,,0.566553,,0.624176,,0.581338,,0.566553,,0.581338,,0.644502,,0.566553,,0.644502,,0.566553,,0.566553,,0.566553,,,,,,,,0.624176,,0.581338,,0.644502,,0.566553,,0.566553,,0.263738,,0.250886,,0.269835,,0.246451,,0.131724,,40.845673,,43.855589,,39.557523,,45,,45,,,,,,,,,,,,5160,,0.566553,,0.566553,,0.566553,,0.566553,,0.246451,,45,,, +26423,0,0.168678,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.614531,0.15,4,0.674712,0.674712,0.674712,0.674712,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,,,,,,,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.232776,0.232776,0.232776,0.232776,0.232776,0.232776,0.232776,0.232776,0.119761,0.119761,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.674712,0.232776,0.232776,15,15,, +29984,0,0.517149,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.08177,0.15,4,2.068597,2.068597,2.068597,2.068597,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,,,,,,,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,0.713666,0.713666,0.713666,0.713666,0.713666,0.713666,0.713666,0.713666,0.367176,0.367176,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,2.068597,0.713666,0.713666,15,15,, +30116,0,0.705991,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.128373,0.15,4,2.823963,2.823963,2.823963,2.823963,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,,,,,,,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,0.974267,0.974267,0.974267,0.974267,0.974267,0.974267,0.974267,0.974267,0.501253,0.501253,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,2.823963,0.974267,0.974267,15,15,, +26415,0,0.478441,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.252309,0.15,4,1.913764,1.913764,1.913764,1.913764,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.913766,1.913765,1.913764,1.913764,1.913766,1.913765,1.913765,1.913765,1.913764,1.913764,1.913765,1.913765,1.913765,1.913766,1.913764,1.913764,1.913765,1.913766,1.913764,1.913764,1.913764,1.913764,1.913764,1.913764,,,,,,,1.913766,1.913765,1.913765,1.913765,1.913765,1.913766,1.913764,1.913764,1.913764,1.913764,0.660249,0.660249,0.660249,0.660249,0.660249,0.660249,0.660249,0.660249,0.339693,0.339693,14.999989,14.999998,14.999998,14.999998,14.999991,14.999991,15,15,15,15,,,,,,,,,,,34400,34400,1.913764,1.913764,1.913764,1.913764,1.913764,1.913764,1.913764,1.913764,0.660249,0.660249,15,15,, +10915,0,0.372256,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,6.584,6.956,0,7.976919,4.5,4.5,0.587773,0.587773,0.587773,0.587773,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.630432,0.804988,0.587773,0.587773,0.630432,0.804988,0.605479,0.60419,0.587773,0.587773,0.605479,0.60419,0.833255,0.684672,0.587773,0.587773,0.833255,0.684672,0.587773,0.587773,0.587773,0.587773,0.587773,0.587773,,,,,,,0.630432,0.804988,0.605479,0.60419,0.833255,0.684672,0.587773,0.587773,0.587773,0.587773,0.256136,0.308503,0.24865,0.248263,0.316983,0.272408,0.243338,0.243338,0.129114,0.129114,35.428665,27.746214,36.888785,36.96747,26.804962,32.62202,38,38,38,38,,,,,,,,,,,3096,3096,0.587773,0.587773,0.587773,0.587773,0.587773,0.587773,0.587773,0.587773,0.243338,0.243338,38,38,, +9490,1,0.205787,2,0,0,1,1,RON,4,5,Zeeb/E I 94,RAMP,1426702,0,0.206,0,,1.09,4,0.274383,,0.274383,,45,,30000,,6810,,15000,,9678,,10320,,10308,,0.274408,,0.274383,,0.274408,,0.274383,,0.274383,,0.274383,,0.274388,,0.274383,,0.274388,,0.274383,,0.274383,,0.274383,,,,,,,,0.274408,,0.274383,,0.274388,,0.274383,,0.274383,,0.119364,,0.119357,,0.119358,,0.119357,,0.063794,,44.995831,,44.999922,,44.999207,,45,,45,,,,,,,,,,,,10320,,0.274383,,0.274383,,0.274383,,0.274383,,0.119357,,45,,, +9492,1,0.314971,1,0,0,1,1,ROF,4,5,E I 94/Zeeb,RAMP,1426701,0,0.315,0,,2.24,5,0.472457,,0.472457,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.472523,,0.472457,,0.472523,,0.472478,,0.472457,,0.472478,,0.472567,,0.472457,,0.472567,,0.472457,,0.472457,,0.472457,,,,,,,,0.472523,,0.472478,,0.472567,,0.472457,,0.472457,,0.198452,,0.198438,,0.198465,,0.198432,,0.105515,,39.994375,,39.998175,,39.990656,,40,,40,,,,,,,,,,,,5160,,0.472457,,0.472457,,0.472457,,0.472457,,0.198432,,40,,, +9551,1,0.202068,3,0,0,1,1,,4,5,E I 94,,1426109,15.078,15.28,0,,0.8,7.5,0.173201,,0.173201,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.175716,,0.173201,,0.175716,,0.173315,,0.173201,,0.173315,,0.17416,,0.173201,,0.17416,,0.173201,,0.173201,,0.173201,,,,,,,,0.175716,,0.173315,,0.17416,,0.173201,,0.173201,,0.089087,,0.088367,,0.08862,,0.088333,,0.048208,,68.998052,,69.954165,,69.614521,,70,,70,,,,,,,,,,,,22704,,0.173201,,0.173201,,0.173201,,0.173201,,0.088333,,70,,, +10165,1,0.207315,1,0,0,1,1,RON,4,5,Zeeb/W I 94,RAMP,1427101,0,0.207,0,,1.09,4,0.27642,,0.27642,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.276693,,0.27642,,0.276693,,0.276561,,0.27642,,0.276561,,0.277198,,0.27642,,0.277198,,0.27642,,0.27642,,0.27642,,,,,,,,0.276693,,0.276561,,0.277198,,0.27642,,0.27642,,0.120324,,0.120285,,0.120476,,0.120243,,0.064268,,44.955586,,44.97703,,44.873705,,45,,45,,,,,,,,,,,,5160,,0.27642,,0.27642,,0.27642,,0.27642,,0.120243,,45,,, +10945,0,0.164725,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.355,6.52,0,3.529816,4.5,4.5,0.260092,0.260092,0.260092,0.260092,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.26072,0.415654,0.260092,0.260092,0.26072,0.415654,0.260592,0.279594,0.260092,0.260092,0.260592,0.279594,0.263954,0.370977,0.260092,0.260092,0.263954,0.370977,0.260092,0.260092,0.260092,0.260092,0.260092,0.260092,,,,,,,0.26072,0.415654,0.260592,0.279594,0.263954,0.370977,0.260092,0.260092,0.260092,0.260092,0.107867,0.154347,0.107828,0.113529,0.108837,0.140943,0.107678,0.107678,0.057133,0.057133,37.908376,23.778166,37.926994,35.349456,37.443971,26.641791,38,38,38,38,,,,,,,,,,,6502,6502,0.260092,0.260092,0.260092,0.260092,0.260092,0.260092,0.260092,0.260092,0.107678,0.107678,38,38,, +10986,0,0.020571,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.259,6.28,0,0.440797,4.5,4.5,0.03248,0.03248,0.03248,0.03248,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.036163,0.03525,0.03248,0.03248,0.036163,0.03525,0.033091,0.033203,0.03248,0.03248,0.033091,0.033203,0.035827,0.037814,0.03248,0.03248,0.035827,0.037814,0.03248,0.03248,0.03248,0.03248,0.03248,0.03248,,,,,,,0.036163,0.03525,0.033091,0.033203,0.035827,0.037814,0.03248,0.03248,0.03248,0.03248,0.014551,0.014278,0.01363,0.013664,0.014451,0.015047,0.013447,0.013447,0.007135,0.007135,34.130113,35.013729,37.29859,37.171888,34.449354,32.639169,38,38,38,38,,,,,,,,,,,6502,6502,0.03248,0.03248,0.03248,0.03248,0.03248,0.03248,0.03248,0.03248,0.013447,0.013447,38,38,, +10970,0,0.010561,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.344,6.355,0,0.226314,4.5,4.5,0.016676,0.016676,0.016676,0.016676,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.016716,0.019599,0.016676,0.016676,0.016716,0.019599,0.016708,0.01731,0.016676,0.016676,0.016708,0.01731,0.016923,0.019751,0.016676,0.016676,0.016923,0.019751,0.016676,0.016676,0.016676,0.016676,0.016676,0.016676,,,,,,,0.016716,0.019599,0.016708,0.01731,0.016923,0.019751,0.016676,0.016676,0.016676,0.016676,0.006916,0.007781,0.006913,0.007094,0.006978,0.007826,0.006904,0.006904,0.003663,0.003663,37.908376,32.331603,37.926994,36.608481,37.443971,32.083258,38,38,38,38,,,,,,,,,,,6502,6502,0.016676,0.016676,0.016676,0.016676,0.016676,0.016676,0.016676,0.016676,0.006904,0.006904,38,38,, +10939,0,0.064746,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.52,6.584,0,1.387423,4.5,4.5,0.102231,0.102231,0.102231,0.102231,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.102234,0.173328,0.102231,0.102231,0.102234,0.173328,0.102236,0.111545,0.102231,0.102231,0.102236,0.111545,0.102277,0.15553,0.102231,0.102231,0.102277,0.15553,0.102231,0.102231,0.102231,0.102231,0.102231,0.102231,,,,,,,0.102234,0.173328,0.102236,0.111545,0.102277,0.15553,0.102231,0.102231,0.102231,0.102231,0.042325,0.063653,0.042325,0.045118,0.042337,0.058313,0.042324,0.042324,0.022457,0.022457,37.99879,22.412849,37.998081,34.827113,37.982952,24.977718,38,38,38,38,,,,,,,,,,,6502,6502,0.102231,0.102231,0.102231,0.102231,0.102231,0.102231,0.102231,0.102231,0.042324,0.042324,38,38,, +26425,0,0.309226,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.626275,0.15,4,1.236905,1.236905,1.236905,1.236905,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,,,,,,,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,0.426732,0.426732,0.426732,0.426732,0.426732,0.426732,0.426732,0.426732,0.219551,0.219551,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,1.236905,0.426732,0.426732,15,15,, +26427,0,0.247173,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.296565,0.15,4,0.988692,0.988692,0.988692,0.988692,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,,,,,,,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.341099,0.175493,0.175493,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.988692,0.341099,0.341099,15,15,, +11069,0,0.316123,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,4.872,5.188,0,6.774061,4.5,4.5,0.499141,0.499141,0.499141,0.499141,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.517811,0.49962,0.499141,0.499141,0.517811,0.49962,0.500253,0.499585,0.499141,0.499141,0.500253,0.499585,0.505668,0.51035,0.499141,0.499141,0.505668,0.51035,0.499141,0.499141,0.499141,0.499141,0.499141,0.499141,,,,,,,0.517811,0.49962,0.500253,0.499585,0.505668,0.51035,0.499141,0.499141,0.499141,0.499141,0.212245,0.206788,0.206978,0.206778,0.208602,0.210007,0.206645,0.206645,0.109645,0.109645,36.629939,37.96357,37.915558,37.966214,37.509536,37.16541,38,38,38,38,,,,,,,,,,,3096,3096,0.499141,0.499141,0.499141,0.499141,0.499141,0.499141,0.499141,0.499141,0.206645,0.206645,38,38,, +10903,0,0.898485,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,7.759,8.658,0,19.253255,5.8,4.5,1.996634,1.996634,1.996634,1.996634,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.996843,2.856946,1.996634,1.996634,1.996843,2.856946,1.997442,1.997887,1.996634,1.996634,1.997442,1.997887,2.500044,2.000997,1.996634,1.996634,2.500044,2.000997,1.996634,1.996634,1.996634,1.996634,1.996634,1.996634,,,,,,,1.996843,2.856946,1.997442,1.997887,2.500044,2.000997,1.996634,1.996634,1.996634,1.996634,0.76078,1.018811,0.76096,0.761093,0.911741,0.762027,0.760718,0.760718,0.398328,0.398328,26.997166,18.869488,26.989071,26.983071,21.563265,26.941124,27,27,27,27,,,,,,,,,,,2580,2580,1.996634,1.996634,1.996634,1.996634,1.996634,1.996634,1.996634,1.996634,0.760718,0.760718,27,27,, +21804,0,1.055214,1,1,0,2,5,,4,5,Huron River,Dr,4604062,2.481,3.536,0,22.611722,5.8,4.5,2.344919,2.344919,2.344919,2.344919,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.344939,2.344922,2.344919,2.344919,2.344939,2.344922,2.34492,2.34492,2.344919,2.344919,2.34492,2.34492,2.34493,2.344986,2.344919,2.344919,2.34493,2.344986,2.344919,2.344919,2.344919,2.344919,2.344919,2.344919,,,,,,,2.344939,2.344922,2.34492,2.34492,2.34493,2.344986,2.344919,2.344919,2.344919,2.344919,0.89342,0.893415,0.893415,0.893415,0.893417,0.893434,0.893414,0.893414,0.467811,0.467811,26.999768,26.999969,26.999987,26.999988,26.999879,26.999237,27,27,27,27,,,,,,,,,,,2580,2580,2.344919,2.344919,2.344919,2.344919,2.344919,2.344919,2.344919,2.344919,0.893414,0.893414,27,27,, +25035,0,0.43481,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.317352,0.15,4,1.739239,1.739239,1.739239,1.739239,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,,,,,,,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,0.600037,0.600037,0.600037,0.600037,0.600037,0.600037,0.600037,0.600037,0.308715,0.308715,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,1.739239,0.600037,0.600037,15,15,, +11298,0,0.481148,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,3.342,3.823,0,10.310312,4.5,4.5,0.759707,0.759707,0.759707,0.759707,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.22387,0.877266,0.759707,0.759707,1.22387,0.877266,0.901088,0.849292,0.759707,0.759707,0.901088,0.849292,1.106476,1.248799,0.759707,0.759707,1.106476,1.248799,0.759707,0.759707,0.759707,0.759707,0.759707,0.759707,,,,,,,1.22387,0.877266,0.901088,0.849292,1.106476,1.248799,0.759707,0.759707,0.759707,0.759707,0.453768,0.349786,0.356933,0.341394,0.418549,0.461246,0.314519,0.314519,0.166882,0.166882,23.588183,32.907786,32.037797,33.991678,26.090834,23.117311,38,38,38,38,,,,,,,,,,,3096,3096,0.759707,0.759707,0.759707,0.759707,0.759707,0.759707,0.759707,0.759707,0.314519,0.314519,38,38,, +10565,0,0.121521,1,1,0,2,4,,4,5,Miller,Rd,1430906,0,0.122,0,2.604011,4.5,4.5,0.191874,0.191874,0.191874,0.191874,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.192576,0.192053,0.191874,0.191874,0.192576,0.192053,0.192133,0.192009,0.191874,0.191874,0.192133,0.192009,0.192151,0.192974,0.191874,0.191874,0.192151,0.192974,0.191874,0.191874,0.191874,0.191874,0.191874,0.191874,,,,,,,0.192576,0.192053,0.192133,0.192009,0.192151,0.192974,0.191874,0.191874,0.191874,0.191874,0.079647,0.07949,0.079513,0.079476,0.079519,0.079766,0.079436,0.079436,0.042148,0.042148,37.861499,37.96471,37.948935,37.973411,37.945235,37.783505,38,38,38,38,,,,,,,,,,,3096,3096,0.191874,0.191874,0.191874,0.191874,0.191874,0.191874,0.191874,0.191874,0.079436,0.079436,38,38,, +10906,0,0.162667,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,7.458,7.62,0,3.485724,4.5,4.5,0.256843,0.256843,0.256843,0.256843,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.259268,0.297193,0.256843,0.256843,0.259268,0.297193,0.259112,0.259127,0.256843,0.256843,0.259112,0.259127,0.288315,0.26302,0.256843,0.256843,0.288315,0.26302,0.256843,0.256843,0.256843,0.256843,0.256843,0.256843,,,,,,,0.259268,0.297193,0.259112,0.259127,0.288315,0.26302,0.256843,0.256843,0.256843,0.256843,0.10706,0.118438,0.107014,0.107018,0.115775,0.108186,0.106333,0.106333,0.05642,0.05642,37.644578,32.840703,37.667273,37.665074,33.85196,37.107575,38,38,38,38,,,,,,,,,,,3096,3096,0.256843,0.256843,0.256843,0.256843,0.256843,0.256843,0.256843,0.256843,0.106333,0.106333,38,38,, +11088,0,0.17626,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,3.823,3.999,0,3.777009,4.5,4.5,0.278306,0.278306,0.278306,0.278306,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.308155,0.285854,0.278306,0.278306,0.308155,0.285854,0.286599,0.284089,0.278306,0.278306,0.286599,0.284089,0.307592,0.304056,0.278306,0.278306,0.307592,0.304056,0.278306,0.278306,0.278306,0.278306,0.278306,0.278306,,,,,,,0.308155,0.285854,0.286599,0.284089,0.307592,0.304056,0.278306,0.278306,0.278306,0.278306,0.124173,0.117483,0.117707,0.116954,0.124004,0.122944,0.115219,0.115219,0.061135,0.061135,34.319216,36.996602,36.900375,37.226398,34.382008,34.781778,38,38,38,38,,,,,,,,,,,3096,3096,0.278306,0.278306,0.278306,0.278306,0.278306,0.278306,0.278306,0.278306,0.115219,0.115219,38,38,, +10904,0,0.139126,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,7.62,7.759,0,2.98127,4.5,4.5,0.219673,0.219673,0.219673,0.219673,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.219681,0.231321,0.219673,0.219673,0.219681,0.231321,0.219694,0.219708,0.219673,0.219673,0.219694,0.219708,0.226623,0.219804,0.219673,0.219673,0.226623,0.219804,0.219673,0.219673,0.219673,0.219673,0.219673,0.219673,,,,,,,0.219681,0.231321,0.219694,0.219708,0.226623,0.219804,0.219673,0.219673,0.219673,0.219673,0.090947,0.094439,0.090951,0.090955,0.09303,0.090984,0.090944,0.090944,0.048255,0.048255,37.99859,36.086488,37.996314,37.993793,36.834566,37.977327,38,38,38,38,,,,,,,,,,,3096,3096,0.219673,0.219673,0.219673,0.219673,0.219673,0.219673,0.219673,0.219673,0.090944,0.090944,38,38,, +10901,0,0.516012,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,8.878,9.393,0,11.0574,5.8,4.5,1.146693,1.146693,1.146693,1.146693,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.14679,1.180715,1.146693,1.146693,1.14679,1.180715,1.147027,1.147217,1.146693,1.146693,1.147027,1.147217,1.166945,1.147965,1.146693,1.146693,1.166945,1.147965,1.146693,1.146693,1.146693,1.146693,1.146693,1.146693,,,,,,,1.14679,1.180715,1.147027,1.147217,1.166945,1.147965,1.146693,1.146693,1.146693,1.146693,0.436919,0.447097,0.43699,0.437047,0.442966,0.437272,0.43689,0.43689,0.228765,0.228765,26.997727,26.222013,26.992143,26.987668,26.531421,26.970091,27,27,27,27,,,,,,,,,,,2580,2580,1.146693,1.146693,1.146693,1.146693,1.146693,1.146693,1.146693,1.146693,0.43689,0.43689,27,27,, +25037,0,0.677045,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.508102,0.15,4,2.708179,2.708179,2.708179,2.708179,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,,,,,,,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,0.934322,0.934322,0.934322,0.934322,0.934322,0.934322,0.934322,0.934322,0.480702,0.480702,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,2.708179,0.934322,0.934322,15,15,, +26028,0,0.552613,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.841709,0.15,4,2.210452,2.210452,2.210452,2.210452,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,,,,,,,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,0.762606,0.762606,0.762606,0.762606,0.762606,0.762606,0.762606,0.762606,0.392355,0.392355,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,2.210452,0.762606,0.762606,15,15,, +10902,0,0.220086,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,8.658,8.878,0,4.716126,5.8,4.5,0.48908,0.48908,0.48908,0.48908,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.48914,0.714494,0.48908,0.48908,0.48914,0.714494,0.489306,0.489421,0.48908,0.48908,0.489306,0.489421,0.620557,0.490281,0.48908,0.48908,0.620557,0.490281,0.48908,0.48908,0.48908,0.48908,0.48908,0.48908,,,,,,,0.48914,0.714494,0.489306,0.489421,0.620557,0.490281,0.48908,0.48908,0.48908,0.48908,0.186357,0.253964,0.186407,0.186442,0.225783,0.1867,0.186339,0.186339,0.097571,0.097571,26.99668,18.481827,26.987531,26.98117,21.279503,26.933831,27,27,27,27,,,,,,,,,,,2580,2580,0.48908,0.48908,0.48908,0.48908,0.48908,0.48908,0.48908,0.48908,0.186339,0.186339,27,27,, +9662,0,0.603062,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,12.116,12.719,0,12.922767,4.5,4.5,0.952204,0.952204,0.952204,0.952204,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.003561,0.95265,0.952204,0.952204,1.003561,0.95265,0.952616,0.952701,0.952204,0.952204,0.952616,0.952701,0.954239,0.997852,0.952204,0.952204,0.954239,0.997852,0.952204,0.952204,0.952204,0.952204,0.952204,0.952204,,,,,,,1.003561,0.95265,0.952616,0.952701,0.954239,0.997852,0.952204,0.952204,0.952204,0.952204,0.40962,0.394346,0.394336,0.394362,0.394823,0.407907,0.394212,0.394212,0.209167,0.209167,36.05534,37.982191,37.983573,37.980172,37.918973,36.261639,38,38,38,38,,,,,,,,,,,3096,3096,0.952204,0.952204,0.952204,0.952204,0.952204,0.952204,0.952204,0.952204,0.394212,0.394212,38,38,, +10769,0,1.001238,1,1,0,2,4,,5,5,Wagner,Rd,1433102,10.68,11.68,0,21.455092,3,4,1.501856,1.501856,1.501856,1.501856,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.781639,1.595089,1.501856,1.501856,1.781639,1.595089,1.538287,1.530716,1.501856,1.501856,1.538287,1.530716,1.674514,1.799418,1.501856,1.501856,1.674514,1.799418,1.501856,1.501856,1.501856,1.501856,1.501856,1.501856,,,,,,,1.781639,1.595089,1.538287,1.530716,1.674514,1.799418,1.501856,1.501856,1.501856,1.501856,0.714715,0.65875,0.641709,0.639438,0.682577,0.720048,0.63078,0.63078,0.335415,0.335415,33.718527,37.662003,39.052709,39.24585,35.875635,33.385386,40,40,40,40,,,,,,,,,,,3096,3096,1.501856,1.501856,1.501856,1.501856,1.501856,1.501856,1.501856,1.501856,0.63078,0.63078,40,40,, +10806,0,0.410248,1,1,0,2,5,,4,5,Lohr,Rd,1436708,2.523,2.933,0,8.791031,5.8,4.5,0.911663,0.911663,0.911663,0.911663,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.918391,0.921648,0.911663,0.911663,0.918391,0.921648,0.916258,0.921132,0.911663,0.911663,0.916258,0.921132,0.925814,0.935558,0.911663,0.911663,0.925814,0.935558,0.911663,0.911663,0.911663,0.911663,0.911663,0.911663,,,,,,,0.918391,0.921648,0.916258,0.921132,0.925814,0.935558,0.911663,0.911663,0.911663,0.911663,0.349362,0.350339,0.348722,0.350184,0.351589,0.354512,0.347343,0.347343,0.181877,0.181877,26.802173,26.70747,26.864592,26.722427,26.587297,26.310386,27,27,27,27,,,,,,,,,,,2580,2580,0.911663,0.911663,0.911663,0.911663,0.911663,0.911663,0.911663,0.911663,0.347343,0.347343,27,27,, +10896,0,0.389708,1,1,0,2,4,,4,5,Ann Arbor Saline,Rd,1436706,1.63,2.02,0,8.350883,4.5,4.5,0.615328,0.615328,0.615328,0.615328,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.339537,0.834017,0.615328,0.615328,1.339537,0.834017,0.847062,0.832593,0.615328,0.615328,0.847062,0.832593,0.998208,1.152193,0.615328,0.615328,0.998208,1.152193,0.615328,0.615328,0.615328,0.615328,0.615328,0.615328,,,,,,,1.339537,0.834017,0.847062,0.832593,0.998208,1.152193,0.615328,0.615328,0.615328,0.615328,0.472009,0.320352,0.324266,0.319925,0.36961,0.415805,0.254746,0.254746,0.135167,0.135167,17.455634,28.035969,27.604217,28.083927,23.424447,20.293893,38,38,38,38,,,,,,,,,,,3096,3096,0.615328,0.615328,0.615328,0.615328,0.615328,0.615328,0.615328,0.615328,0.254746,0.254746,38,38,, +10899,0,0.890944,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1436706,0,0.891,0,19.091656,3,4,1.336416,1.336416,1.336416,1.336416,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.457596,1.344381,1.336416,1.336416,1.457596,1.344381,1.373136,1.371764,1.336416,1.336416,1.373136,1.371764,1.384112,1.417074,1.336416,1.336416,1.384112,1.417074,1.336416,1.336416,1.336416,1.336416,1.336416,1.336416,,,,,,,1.457596,1.344381,1.373136,1.371764,1.384112,1.417074,1.336416,1.336416,1.336416,1.336416,0.597649,0.563684,0.572311,0.571899,0.575603,0.585492,0.561295,0.561295,0.298466,0.298466,36.674527,39.763016,38.930343,38.969253,38.621613,37.723252,40,40,40,40,,,,,,,,,,,3096,3096,1.336416,1.336416,1.336416,1.336416,1.336416,1.336416,1.336416,1.336416,0.561295,0.561295,40,40,, +11101,0,0.609707,1,1,0,2,5,,5,5,Waters,Rd,1436510,11.579,12.189,0,13.06515,3.7,5,1.219414,1.219414,1.219414,1.219414,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.223112,1.219481,1.219414,1.219414,1.223112,1.219481,1.219508,1.219487,1.219414,1.219414,1.219508,1.219487,1.220584,1.223773,1.219414,1.219414,1.220584,1.223773,1.219414,1.219414,1.219414,1.219414,1.219414,1.219414,,,,,,,1.223112,1.219481,1.219508,1.219487,1.220584,1.223773,1.219414,1.219414,1.219414,1.219414,0.476681,0.475592,0.4756,0.475593,0.475923,0.476879,0.475571,0.475571,0.24998,0.24998,29.909307,29.99834,29.997677,29.998193,29.971236,29.893152,30,30,30,30,,,,,,,,,,,2580,2580,1.219414,1.219414,1.219414,1.219414,1.219414,1.219414,1.219414,1.219414,0.475571,0.475571,30,30,, +20018,0,0.240036,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,1.35,1.59,0,5.143625,5.8,4.5,0.533413,0.533413,0.533413,0.533413,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.539809,0.546794,0.533413,0.533413,0.539809,0.546794,0.550784,0.557151,0.533413,0.533413,0.550784,0.557151,0.628763,0.57371,0.533413,0.533413,0.628763,0.57371,0.533413,0.533413,0.533413,0.533413,0.533413,0.533413,,,,,,,0.539809,0.546794,0.550784,0.557151,0.628763,0.57371,0.533413,0.533413,0.533413,0.533413,0.205149,0.207245,0.208442,0.210352,0.231835,0.21532,0.20323,0.20323,0.106416,0.106416,26.680098,26.339273,26.148443,25.849618,22.905547,25.103516,27,27,27,27,,,,,,,,,,,2838,2838,0.533413,0.533413,0.533413,0.533413,0.533413,0.533413,0.533413,0.533413,0.20323,0.20323,27,27,, +26027,0,0.596254,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.776867,0.15,4,2.385015,2.385015,2.385015,2.385015,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,,,,,,,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,0.82283,0.82283,0.82283,0.82283,0.82283,0.82283,0.82283,0.82283,0.42334,0.42334,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,2.385015,0.82283,0.82283,15,15,, +26034,0,0.649075,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.908747,0.15,4,2.596299,2.596299,2.596299,2.596299,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,,,,,,,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,0.895723,0.895723,0.895723,0.895723,0.895723,0.895723,0.895723,0.895723,0.460843,0.460843,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,2.596299,0.895723,0.895723,15,15,, +26035,0,0.894225,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.16196,0.15,4,3.576899,3.576899,3.576899,3.576899,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,,,,,,,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,1.23403,1.23403,1.23403,1.23403,1.23403,1.23403,1.23403,1.23403,0.6349,0.6349,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,3.576899,1.23403,1.23403,15,15,, +26283,0,0.693484,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.860366,0.15,4,2.773935,2.773935,2.773935,2.773935,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,,,,,,,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,0.957008,0.957008,0.957008,0.957008,0.957008,0.957008,0.957008,0.957008,0.492373,0.492373,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,2.773935,0.957008,0.957008,15,15,, +26284,0,0.535774,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.480874,0.15,4,2.143096,2.143096,2.143096,2.143096,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,,,,,,,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,0.739368,0.739368,0.739368,0.739368,0.739368,0.739368,0.739368,0.739368,0.3804,0.3804,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,2.143096,0.739368,0.739368,15,15,, +29993,0,0.460769,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.87363,0.15,4,1.843078,1.843078,1.843078,1.843078,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,,,,,,,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,0.635862,0.635862,0.635862,0.635862,0.635862,0.635862,0.635862,0.635862,0.327146,0.327146,14.999999,15,14.999999,14.999999,14.999999,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,1.843078,0.635862,0.635862,15,15,, +30109,0,0.98386,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.082715,0.15,4,3.93544,3.93544,3.93544,3.93544,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,,,,,,,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,1.357727,1.357727,1.357727,1.357727,1.357727,1.357727,1.357727,1.357727,0.698541,0.698541,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,3.93544,1.357727,1.357727,15,15,, +10754,0,0.581424,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,4.431,5.012,0,12.459077,3.7,5,1.162847,1.162847,1.162847,1.162847,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.188716,1.162983,1.162847,1.162847,1.188716,1.162983,1.163313,1.163208,1.162847,1.162847,1.163313,1.163208,1.165118,1.181752,1.162847,1.162847,1.165118,1.181752,1.162847,1.162847,1.162847,1.162847,1.162847,1.162847,,,,,,,1.188716,1.162983,1.163313,1.163208,1.165118,1.181752,1.162847,1.162847,1.162847,1.162847,0.461271,0.453551,0.45365,0.453619,0.454192,0.459182,0.45351,0.45351,0.238384,0.238384,29.347135,29.996488,29.987982,29.99069,29.941524,29.520072,30,30,30,30,,,,,,,,,,,2580,2580,1.162847,1.162847,1.162847,1.162847,1.162847,1.162847,1.162847,1.162847,0.45351,0.45351,30,30,, +10779,0,0.604832,1,1,0,2,4,,5,5,Wagner,Rd,1433102,10.075,10.68,0,12.960677,3,4,0.907247,0.907247,0.907247,0.907247,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.08618,0.963568,0.907247,0.907247,1.08618,0.963568,0.929254,0.924681,0.907247,0.907247,0.929254,0.924681,1.011547,1.099251,0.907247,0.907247,1.011547,1.099251,0.907247,0.907247,0.907247,0.907247,0.907247,0.907247,,,,,,,1.08618,0.963568,0.929254,0.924681,1.011547,1.099251,0.907247,0.907247,0.907247,0.907247,0.434724,0.39794,0.387646,0.386274,0.412334,0.438645,0.381044,0.381044,0.202619,0.202619,33.410581,37.662003,39.052709,39.24585,35.875635,33.013301,40,40,40,40,,,,,,,,,,,3096,3096,0.907247,0.907247,0.907247,0.907247,0.907247,0.907247,0.907247,0.907247,0.381044,0.381044,40,40,, +26245,0,0.415309,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.899478,0.15,4,1.661236,1.661236,1.661236,1.661236,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,,,,,,,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,0.573126,0.573126,0.573126,0.573126,0.573126,0.573126,0.573126,0.573126,0.294869,0.294869,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,1.661236,0.573126,0.573126,15,15,, +10780,0,0.403874,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,9.671,10.075,0,8.654438,3,4,0.605811,0.605811,0.605811,0.605811,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.86978,0.811884,0.605811,0.605811,1.86978,0.811884,0.849074,0.818615,0.605811,0.605811,0.849074,0.818615,1.224819,1.711737,0.605811,0.605811,1.224819,1.711737,0.605811,0.605811,0.605811,0.605811,0.605811,0.605811,,,,,,,1.86978,0.811884,0.849074,0.818615,1.224819,1.711737,0.605811,0.605811,0.605811,0.605811,0.633631,0.316262,0.327419,0.318282,0.440143,0.586218,0.25444,0.25444,0.135298,0.135298,12.960044,29.847156,28.539831,29.601732,19.78449,14.15663,40,40,40,40,,,,,,,,,,,3096,3096,0.605811,0.605811,0.605811,0.605811,0.605811,0.605811,0.605811,0.605811,0.25444,0.25444,40,40,, +10783,0,0.511781,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,9.16,9.671,0,10.966734,3,4,0.767671,0.767671,0.767671,0.767671,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.218893,0.96863,0.767671,0.767671,1.218893,0.96863,0.920282,0.902929,0.767671,0.767671,0.920282,0.902929,1.150577,1.202896,0.767671,0.767671,1.150577,1.202896,0.767671,0.767671,0.767671,0.767671,0.767671,0.767671,,,,,,,1.218893,0.96863,0.920282,0.902929,1.150577,1.202896,0.767671,0.767671,0.767671,0.767671,0.457788,0.38271,0.368205,0.362999,0.437294,0.45299,0.322422,0.322422,0.171447,0.171447,25.192422,31.701325,33.366772,34.008057,26.688211,25.527429,40,40,40,40,,,,,,,,,,,3096,3096,0.767671,0.767671,0.767671,0.767671,0.767671,0.767671,0.767671,0.767671,0.322422,0.322422,40,40,, +9663,0,0.978557,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,11.138,12.116,0,20.969068,4.5,4.5,1.545089,1.545089,1.545089,1.545089,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.557204,1.545303,1.545089,1.545089,1.557204,1.545303,1.545452,1.545267,1.545089,1.545089,1.545452,1.545267,1.546957,1.558702,1.545089,1.545089,1.546957,1.558702,1.545089,1.545089,1.545089,1.545089,1.545089,1.545089,,,,,,,1.557204,1.545303,1.545452,1.545267,1.546957,1.558702,1.545089,1.545089,1.545089,1.545089,0.643301,0.639731,0.639776,0.63972,0.640227,0.643751,0.639667,0.639667,0.339405,0.339405,37.704376,37.994734,37.991085,37.995631,37.954117,37.66813,38,38,38,38,,,,,,,,,,,3096,3096,1.545089,1.545089,1.545089,1.545089,1.545089,1.545089,1.545089,1.545089,0.639667,0.639667,38,38,, +10766,0,0.912606,1,1,0,2,4,,5,5,Wagner,Rd,1433102,11.68,12.593,0,19.555843,3,4,1.368909,1.368909,1.368909,1.368909,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.670521,1.480563,1.368909,1.368909,1.670521,1.480563,1.408527,1.400165,1.368909,1.368909,1.408527,1.400165,1.650186,1.80194,1.368909,1.368909,1.650186,1.80194,1.368909,1.368909,1.368909,1.368909,1.368909,1.368909,,,,,,,1.670521,1.480563,1.408527,1.400165,1.650186,1.80194,1.368909,1.368909,1.368909,1.368909,0.665425,0.608438,0.586827,0.584319,0.659325,0.704851,0.574942,0.574942,0.305723,0.305723,32.778023,36.983466,38.874914,39.107081,33.181936,30.38745,40,40,40,40,,,,,,,,,,,3096,3096,1.368909,1.368909,1.368909,1.368909,1.368909,1.368909,1.368909,1.368909,0.574942,0.574942,40,40,, +26409,0,0.955866,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.48285,0.15,4,3.823465,3.823465,3.823465,3.823465,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,,,,,,,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,1.319096,1.319096,1.319096,1.319096,1.319096,1.319096,1.319096,1.319096,0.678665,0.678665,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,3.823465,1.319096,1.319096,15,15,, +26410,0,1.000785,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.445398,0.15,4,4.003141,4.003141,4.003141,4.003141,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,,,,,,,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,1.381084,1.381084,1.381084,1.381084,1.381084,1.381084,1.381084,1.381084,0.710558,0.710558,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,4.003141,1.381084,1.381084,15,15,, +26413,0,0.991426,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.244846,0.15,4,3.965705,3.965705,3.965705,3.965705,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,,,,,,,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,1.368168,1.368168,1.368168,1.368168,1.368168,1.368168,1.368168,1.368168,0.703913,0.703913,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,3.965705,1.368168,1.368168,15,15,, +11111,0,0.543959,1,1,0,2,5,,5,5,Waters,Rd,1436510,11.036,11.579,0,11.656265,3.7,5,1.087918,1.087918,1.087918,1.087918,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.087956,1.087947,1.087918,1.087918,1.087956,1.087947,1.087922,1.087923,1.087918,1.087918,1.087922,1.087923,1.088226,1.088153,1.087918,1.087918,1.088226,1.088153,1.087918,1.087918,1.087918,1.087918,1.087918,1.087918,,,,,,,1.087956,1.087947,1.087922,1.087923,1.088226,1.088153,1.087918,1.087918,1.087918,1.087918,0.4243,0.424297,0.424289,0.42429,0.42438,0.424358,0.424288,0.424288,0.223023,0.223023,29.998944,29.999209,29.999894,29.99985,29.991521,29.99353,30,30,30,30,,,,,,,,,,,2580,2580,1.087918,1.087918,1.087918,1.087918,1.087918,1.087918,1.087918,1.087918,0.424288,0.424288,30,30,, +26033,0,0.154185,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,3.303965,0.15,4,0.61674,0.61674,0.61674,0.61674,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,,,,,,,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.212775,0.212775,0.212775,0.212775,0.212775,0.212775,0.212775,0.212775,0.109471,0.109471,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.61674,0.212775,0.212775,15,15,, +26426,0,0.431006,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.235834,0.15,4,1.724022,1.724022,1.724022,1.724022,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,,,,,,,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,0.594788,0.594788,0.594788,0.594788,0.594788,0.594788,0.594788,0.594788,0.306014,0.306014,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,1.724022,0.594788,0.594788,15,15,, +10751,0,0.429303,1,1,0,2,4,,4,5,Wagner,Rd,1433102,12.593,13.022,0,9.199341,4.5,4.5,0.677846,0.677846,0.677846,0.677846,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.706209,0.701172,0.677846,0.677846,0.706209,0.701172,0.690474,0.68442,0.677846,0.677846,0.690474,0.68442,0.732768,0.714872,0.677846,0.677846,0.732768,0.714872,0.677846,0.677846,0.677846,0.677846,0.677846,0.677846,,,,,,,0.706209,0.701172,0.690474,0.68442,0.732768,0.714872,0.677846,0.677846,0.677846,0.677846,0.289137,0.287626,0.284417,0.282601,0.297105,0.291736,0.280628,0.280628,0.1489,0.1489,36.473854,36.735846,37.305041,37.634984,35.151875,36.031858,38,38,38,38,,,,,,,,,,,3096,3096,0.677846,0.677846,0.677846,0.677846,0.677846,0.677846,0.677846,0.677846,0.280628,0.280628,38,38,, +10819,0,0.572506,1,1,1,2,5,,4,5,Lohr,Rd,1436708,1.436,2.009,0,12.267988,5.8,4.5,1.272236,1.272236,1.272236,1.272236,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,2.36664,1.294362,1.272236,1.272236,2.36664,1.294362,1.332046,1.310115,1.272236,1.272236,1.332046,1.310115,1.610646,2.169148,1.272236,1.272236,1.610646,2.169148,1.272236,1.272236,1.272236,1.272236,1.272236,1.272236,,,,,,,2.36664,1.294362,1.332046,1.310115,1.610646,2.169148,1.272236,1.272236,1.272236,1.272236,0.813043,0.49136,0.502665,0.496086,0.586245,0.753796,0.484722,0.484722,0.253811,0.253811,14.514404,26.538463,25.787675,26.21936,21.327077,15.835879,27,27,27,27,,,,,,,,,,,2838,2838,1.272236,1.272236,1.272236,1.272236,1.272236,1.272236,1.272236,1.272236,0.484722,0.484722,27,27,, +21695,0,0.164365,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,6.287,6.451,0,3.522099,4.5,4.5,0.259523,0.259523,0.259523,0.259523,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.26668,0.259542,0.259523,0.259523,0.26668,0.259542,0.260203,0.260151,0.259523,0.259523,0.260203,0.260151,0.26069,0.267448,0.259523,0.259523,0.26069,0.267448,0.259523,0.259523,0.259523,0.259523,0.259523,0.259523,,,,,,,0.26668,0.259542,0.260203,0.260151,0.26069,0.267448,0.259523,0.259523,0.259523,0.259523,0.10959,0.107448,0.107647,0.107631,0.107793,0.10982,0.107443,0.107443,0.057009,0.057009,36.980241,37.997276,37.900688,37.908278,37.829864,36.874058,38,38,38,38,,,,,,,,,,,3096,3096,0.259523,0.259523,0.259523,0.259523,0.259523,0.259523,0.259523,0.259523,0.107443,0.107443,38,38,, +21723,0,0.846258,1,1,0,2,4,,4,5,Maple,Rd,4603041,1.234,2.08,0,18.134096,4.5,4.5,1.336197,1.336197,1.336197,1.336197,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.379799,1.57591,1.336197,1.336197,2.379799,1.57591,1.6297,1.599374,1.336197,1.336197,1.6297,1.599374,1.887183,2.235609,1.336197,1.336197,1.887183,2.235609,1.336197,1.336197,1.336197,1.336197,1.336197,1.336197,,,,,,,2.379799,1.57591,1.6297,1.599374,1.887183,2.235609,1.336197,1.336197,1.336197,1.336197,0.866266,0.6251,0.641236,0.632139,0.718481,0.823009,0.553185,0.553185,0.293518,0.293518,21.336029,32.219767,31.156325,31.747085,26.905422,22.712141,38,38,38,38,,,,,,,,,,,3096,3096,1.336197,1.336197,1.336197,1.336197,1.336197,1.336197,1.336197,1.336197,0.553185,0.553185,38,38,, +25013,0,1.032953,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.134705,0.15,4,4.131812,4.131812,4.131812,4.131812,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,,,,,,,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,1.425475,1.425475,1.425475,1.425475,1.425475,1.425475,1.425475,1.425475,0.733397,0.733397,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,4.131812,1.425475,1.425475,15,15,, +26031,0,0.659309,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.128057,0.15,4,2.637237,2.637237,2.637237,2.637237,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,,,,,,,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,0.909847,0.909847,0.909847,0.909847,0.909847,0.909847,0.909847,0.909847,0.46811,0.46811,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,2.637237,0.909847,0.909847,15,15,, +26261,0,0.518159,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.103403,0.15,4,2.072635,2.072635,2.072635,2.072635,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,,,,,,,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,0.715059,0.715059,0.715059,0.715059,0.715059,0.715059,0.715059,0.715059,0.367893,0.367893,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,2.072635,0.715059,0.715059,15,15,, +21991,0,0.24547,1,1,0,2,4,,4,5,Maple,Rd,4603041,0.988,1.234,0,5.260075,4.5,4.5,0.387584,0.387584,0.387584,0.387584,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.473775,0.417625,0.387584,0.387584,0.473775,0.417625,0.417859,0.416735,0.387584,0.387584,0.417859,0.416735,0.44426,0.457233,0.387584,0.387584,0.44426,0.457233,0.387584,0.387584,0.387584,0.387584,0.387584,0.387584,,,,,,,0.473775,0.417625,0.417859,0.416735,0.44426,0.457233,0.387584,0.387584,0.387584,0.387584,0.186317,0.169472,0.169542,0.169205,0.177463,0.181354,0.16046,0.16046,0.085139,0.085139,31.086916,35.266595,35.246808,35.34187,33.152216,32.211627,38,38,38,38,,,,,,,,,,,3096,3096,0.387584,0.387584,0.387584,0.387584,0.387584,0.387584,0.387584,0.387584,0.16046,0.16046,38,38,, +26262,0,0.500152,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.717539,0.15,4,2.000607,2.000607,2.000607,2.000607,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,,,,,,,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,0.69021,0.69021,0.69021,0.69021,0.69021,0.69021,0.69021,0.69021,0.355108,0.355108,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,2.000607,0.69021,0.69021,15,15,, +26273,0,0.639788,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.709738,0.15,4,2.559151,2.559151,2.559151,2.559151,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,,,,,,,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,0.882907,0.882907,0.882907,0.882907,0.882907,0.882907,0.882907,0.882907,0.454249,0.454249,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,2.559151,0.882907,0.882907,15,15,, +21783,0,0.409829,1,1,0,2,4,,4,5,Maple,Rd,4603041,0.579,0.988,0,8.782045,4.5,4.5,0.647098,0.647098,0.647098,0.647098,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.83498,0.741179,0.647098,0.647098,0.83498,0.741179,0.705882,0.701414,0.647098,0.647098,0.705882,0.701414,0.81569,0.826509,0.647098,0.647098,0.81569,0.826509,0.647098,0.647098,0.647098,0.647098,0.647098,0.647098,,,,,,,0.83498,0.741179,0.705882,0.701414,0.81569,0.826509,0.647098,0.647098,0.647098,0.647098,0.324263,0.296123,0.285534,0.284194,0.318476,0.321722,0.267899,0.267899,0.142146,0.142146,29.449476,33.176506,34.835482,35.057341,30.145916,29.751297,38,38,38,38,,,,,,,,,,,3096,3096,0.647098,0.647098,0.647098,0.647098,0.647098,0.647098,0.647098,0.647098,0.267899,0.267899,38,38,, +10898,0,0.468231,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1436706,0.891,1.359,0,10.033514,3,4,0.702346,0.702346,0.702346,0.702346,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.717415,0.704353,0.702346,0.702346,0.717415,0.704353,0.710497,0.709887,0.702346,0.702346,0.710497,0.709887,0.711183,0.71116,0.702346,0.702346,0.711183,0.71116,0.702346,0.702346,0.702346,0.702346,0.702346,0.702346,,,,,,,0.717415,0.704353,0.710497,0.709887,0.711183,0.71116,0.702346,0.702346,0.702346,0.702346,0.299506,0.295587,0.297431,0.297248,0.297636,0.29763,0.294985,0.294985,0.156857,0.156857,39.159798,39.886012,39.541088,39.575063,39.50298,39.504237,40,40,40,40,,,,,,,,,,,3096,3096,0.702346,0.702346,0.702346,0.702346,0.702346,0.702346,0.702346,0.702346,0.294985,0.294985,40,40,, +21485,0,0.325219,1,1,0,2,7,GRV,5,5,Ellsworth,Rd,4602939,5.663,5.988,0,6.968972,5.55,5,0.975656,0.975656,0.975656,0.975656,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.976911,0.975659,0.975656,0.975656,0.976911,0.975659,0.975686,0.975693,0.975656,0.975656,0.975686,0.975693,0.975783,0.977172,0.975656,0.975656,0.975783,0.977172,0.975656,0.975656,0.975656,0.975656,0.975656,0.975656,,,,,,,0.976911,0.975659,0.975686,0.975693,0.975783,0.977172,0.975656,0.975656,0.975656,0.975656,0.351613,0.351237,0.351245,0.351247,0.351274,0.351691,0.351236,0.351236,0.182122,0.182122,19.974313,19.999934,19.99938,19.999241,19.997397,19.96897,20,20,20,20,,,,,,,,,,,2236,2236,0.975656,0.975656,0.975656,0.975656,0.975656,0.975656,0.975656,0.975656,0.351236,0.351236,20,20,, +21510,0,0.165518,1,1,0,2,4,,4,5,Maple,Rd,4603041,2.08,2.245,0,3.546809,4.5,4.5,0.261344,0.261344,0.261344,0.261344,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.318994,0.286376,0.261344,0.261344,0.318994,0.286376,0.277014,0.276135,0.261344,0.261344,0.277014,0.276135,0.298028,0.320415,0.261344,0.261344,0.298028,0.320415,0.261344,0.261344,0.261344,0.261344,0.261344,0.261344,,,,,,,0.318994,0.286376,0.277014,0.276135,0.298028,0.320415,0.261344,0.261344,0.261344,0.261344,0.125491,0.115706,0.112897,0.112634,0.119201,0.125918,0.108196,0.108196,0.057409,0.057409,31.132421,34.67842,35.850366,35.964461,33.322621,30.994371,38,38,38,38,,,,,,,,,,,3096,3096,0.261344,0.261344,0.261344,0.261344,0.261344,0.261344,0.261344,0.261344,0.108196,0.108196,38,38,, +21947,0,0.299242,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,5.988,6.287,0,6.412321,4.5,4.5,0.472487,0.472487,0.472487,0.472487,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.48307,0.472595,0.472487,0.472487,0.48307,0.472595,0.473306,0.473211,0.472487,0.472487,0.473306,0.473211,0.477063,0.486277,0.472487,0.472487,0.477063,0.486277,0.472487,0.472487,0.472487,0.472487,0.472487,0.472487,,,,,,,0.48307,0.472595,0.473306,0.473211,0.477063,0.486277,0.472487,0.472487,0.472487,0.472487,0.198784,0.195642,0.195855,0.195827,0.196982,0.199747,0.19561,0.19561,0.10379,0.10379,37.167493,37.991322,37.934254,37.94185,37.635506,36.922342,38,38,38,38,,,,,,,,,,,3096,3096,0.472487,0.472487,0.472487,0.472487,0.472487,0.472487,0.472487,0.472487,0.19561,0.19561,38,38,, +10897,0,0.271787,1,1,0,2,4,,4,5,Ann Arbor Saline,Rd,1436706,1.359,1.63,0,5.824011,4.5,4.5,0.429138,0.429138,0.429138,0.429138,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.146449,0.624096,0.429138,0.429138,1.146449,0.624096,0.674847,0.658364,0.429138,0.429138,0.674847,0.658364,0.861921,1.020463,0.429138,0.429138,0.861921,1.020463,0.429138,0.429138,0.429138,0.429138,0.429138,0.429138,,,,,,,1.146449,0.624096,0.674847,0.658364,0.861921,1.020463,0.429138,0.429138,0.429138,0.429138,0.392857,0.23615,0.251376,0.246431,0.307498,0.35506,0.177663,0.177663,0.094267,0.094267,14.224116,26.129381,24.164354,24.769314,18.91964,15.980233,38,38,38,38,,,,,,,,,,,3096,3096,0.429138,0.429138,0.429138,0.429138,0.429138,0.429138,0.429138,0.429138,0.177663,0.177663,38,38,, +21295,0,0.175634,1,1,0,2,4,,4,5,Maple,Rd,4603041,2.245,2.421,0,3.763575,4.5,4.5,0.277316,0.277316,0.277316,0.277316,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.33849,0.303878,0.277316,0.277316,0.33849,0.303878,0.293944,0.293012,0.277316,0.277316,0.293944,0.293012,0.316242,0.339998,0.277316,0.277316,0.316242,0.339998,0.277316,0.277316,0.277316,0.277316,0.277316,0.277316,,,,,,,0.33849,0.303878,0.293944,0.293012,0.316242,0.339998,0.277316,0.277316,0.277316,0.277316,0.133161,0.122777,0.119797,0.119518,0.126487,0.133613,0.114809,0.114809,0.060917,0.060917,31.132421,34.67842,35.850366,35.964461,33.322621,30.994371,38,38,38,38,,,,,,,,,,,3096,3096,0.277316,0.277316,0.277316,0.277316,0.277316,0.277316,0.277316,0.277316,0.114809,0.114809,38,38,, +10824,0,0.905739,1,1,1,2,5,,4,5,Lohr,Rd,1436708,0.531,1.436,0,19.408699,5.8,4.5,2.012754,2.012754,2.012754,2.012754,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,2.014218,2.013025,2.012754,2.012754,2.014218,2.013025,2.012921,2.012853,2.012754,2.012754,2.012921,2.012853,2.022876,2.019289,2.012754,2.012754,2.022876,2.019289,2.012754,2.012754,2.012754,2.012754,2.012754,2.012754,,,,,,,2.014218,2.013025,2.012921,2.012853,2.022876,2.019289,2.012754,2.012754,2.012754,2.012754,0.767298,0.766941,0.766909,0.766889,0.769896,0.76882,0.766859,0.766859,0.401544,0.401544,26.980382,26.99636,26.997759,26.998666,26.864905,26.912624,27,27,27,27,,,,,,,,,,,2838,2838,2.012754,2.012754,2.012754,2.012754,2.012754,2.012754,2.012754,2.012754,0.766859,0.766859,27,27,, +26260,0,0.669333,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.342852,0.15,4,2.677332,2.677332,2.677332,2.677332,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.677334,2.677332,2.677332,2.677332,2.677334,2.677332,2.677333,2.677332,2.677332,2.677332,2.677333,2.677332,2.677333,2.677333,2.677332,2.677332,2.677333,2.677333,2.677332,2.677332,2.677332,2.677332,2.677332,2.677332,,,,,,,2.677334,2.677332,2.677333,2.677332,2.677333,2.677333,2.677332,2.677332,2.677332,2.677332,0.92368,0.92368,0.92368,0.92368,0.92368,0.92368,0.92368,0.92368,0.475227,0.475227,14.999991,15,14.999999,15,14.999999,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,2.677332,2.677332,2.677332,2.677332,2.677332,2.677332,2.677332,2.677332,0.92368,0.92368,15,15,, +10818,0,0.169584,1,1,0,2,5,,4,5,Lohr,Rd,1436708,2.009,2.178,0,3.633943,5.8,4.5,0.376853,0.376853,0.376853,0.376853,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.427388,0.380181,0.376853,0.376853,0.427388,0.380181,0.385293,0.384113,0.376853,0.376853,0.385293,0.384113,0.441645,0.465248,0.376853,0.376853,0.441645,0.465248,0.376853,0.376853,0.376853,0.376853,0.376853,0.376853,,,,,,,0.427388,0.380181,0.385293,0.384113,0.441645,0.465248,0.376853,0.376853,0.376853,0.376853,0.158742,0.144579,0.146113,0.145759,0.163019,0.1701,0.143581,0.143581,0.075182,0.075182,23.807503,26.763696,26.408564,26.489696,23.038939,21.870145,27,27,27,27,,,,,,,,,,,2580,2580,0.376853,0.376853,0.376853,0.376853,0.376853,0.376853,0.376853,0.376853,0.143581,0.143581,27,27,, +20019,0,0.409431,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,0.941,1.35,0,8.77353,5.8,4.5,0.909848,0.909848,0.909848,0.909848,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.910296,0.910034,0.909848,0.909848,0.910296,0.910034,0.910171,0.910055,0.909848,0.909848,0.910171,0.910055,0.913947,0.910627,0.909848,0.909848,0.913947,0.910627,0.909848,0.909848,0.909848,0.909848,0.909848,0.909848,,,,,,,0.910296,0.910034,0.910171,0.910055,0.913947,0.910627,0.909848,0.909848,0.909848,0.909848,0.346786,0.346708,0.346749,0.346714,0.347882,0.346886,0.346652,0.346652,0.181515,0.181515,26.98671,26.994464,26.99039,26.993858,26.878905,26.976879,27,27,27,27,,,,,,,,,,,2838,2838,0.909848,0.909848,0.909848,0.909848,0.909848,0.909848,0.909848,0.909848,0.346652,0.346652,27,27,, +21484,0,0.528378,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,6.451,6.98,0,11.322387,4.5,4.5,0.834281,0.834281,0.834281,0.834281,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.840903,0.834283,0.834281,0.834281,0.840903,0.834283,0.834482,0.83447,0.834281,0.834281,0.834482,0.83447,0.834582,0.838008,0.834281,0.834281,0.834582,0.838008,0.834281,0.834281,0.834281,0.834281,0.834281,0.834281,,,,,,,0.840903,0.834283,0.834482,0.83447,0.834582,0.838008,0.834281,0.834281,0.834281,0.834281,0.347379,0.345393,0.345453,0.345449,0.345483,0.34651,0.345392,0.345392,0.183264,0.183264,37.700763,37.99991,37.990863,37.991391,37.986314,37.831,38,38,38,38,,,,,,,,,,,3096,3096,0.834281,0.834281,0.834281,0.834281,0.834281,0.834281,0.834281,0.834281,0.345392,0.345392,38,38,, +26030,0,0.490341,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.507308,0.15,4,1.961364,1.961364,1.961364,1.961364,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,,,,,,,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,0.676671,0.676671,0.676671,0.676671,0.676671,0.676671,0.676671,0.676671,0.348142,0.348142,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,1.961364,0.676671,0.676671,15,15,, +26032,0,0.457477,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.803072,0.15,4,1.829907,1.829907,1.829907,1.829907,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,,,,,,,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,0.631318,0.631318,0.631318,0.631318,0.631318,0.631318,0.631318,0.631318,0.324808,0.324808,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,1.829907,0.631318,0.631318,15,15,, +26029,0,0.194391,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.165526,0.15,4,0.777565,0.777565,0.777565,0.777565,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,,,,,,,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.26826,0.26826,0.26826,0.26826,0.26826,0.26826,0.26826,0.26826,0.138018,0.138018,15,15,15,14.999999,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.777565,0.26826,0.26826,15,15,, +10810,0,0.34485,1,1,0,2,5,,4,5,Lohr,Rd,1436708,2.178,2.523,0,7.389633,5.8,4.5,0.766332,0.766332,0.766332,0.766332,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.814468,0.767491,0.766332,0.766332,0.814468,0.767491,0.770361,0.769629,0.766332,0.766332,0.770361,0.769629,0.796407,0.825912,0.766332,0.766332,0.796407,0.825912,0.766332,0.766332,0.766332,0.766332,0.766332,0.766332,,,,,,,0.814468,0.767491,0.770361,0.769629,0.796407,0.825912,0.766332,0.766332,0.766332,0.766332,0.306413,0.29232,0.293181,0.292962,0.300995,0.309847,0.291973,0.291973,0.152883,0.152883,25.40427,26.959239,26.85879,26.884355,25.9804,25.052267,27,27,27,27,,,,,,,,,,,2580,2580,0.766332,0.766332,0.766332,0.766332,0.766332,0.766332,0.766332,0.766332,0.291973,0.291973,27,27,, +9630,0,0.150382,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.445,13.595,0,3.222463,6,4.5,0.273421,0.273421,0.273421,0.273421,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.458251,0.276557,0.273421,0.273421,0.458251,0.276557,0.278259,0.278063,0.273421,0.273421,0.278259,0.278063,0.300879,0.529045,0.273421,0.273421,0.300879,0.529045,0.273421,0.273421,0.273421,0.273421,0.273421,0.273421,,,,,,,0.458251,0.276557,0.278259,0.278063,0.300879,0.529045,0.273421,0.273421,0.273421,0.273421,0.164544,0.110036,0.110547,0.110488,0.117332,0.185782,0.109095,0.109095,0.057555,0.057555,19.689865,32.625759,32.426199,32.449105,29.988445,17.055055,33,33,33,33,,,,,,,,,,,2580,2580,0.273421,0.273421,0.273421,0.273421,0.273421,0.273421,0.273421,0.273421,0.109095,0.109095,33,33,, +10284,0,0.198993,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.683,0.882,0,4.264129,5,5,0.34113,0.34113,0.34113,0.34113,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.369693,0.3443,0.34113,0.34113,0.369693,0.3443,0.346594,0.345599,0.34113,0.34113,0.346594,0.345599,0.357734,0.382907,0.34113,0.34113,0.357734,0.382907,0.34113,0.34113,0.34113,0.34113,0.34113,0.34113,,,,,,,0.369693,0.3443,0.346594,0.345599,0.357734,0.382907,0.34113,0.34113,0.34113,0.34113,0.146726,0.139109,0.139797,0.139498,0.143139,0.150691,0.138158,0.138158,0.073059,0.073059,32.295914,34.677766,34.448306,34.547434,33.375551,31.181319,35,35,35,35,,,,,,,,,,,7946,7946,0.34113,0.34113,0.34113,0.34113,0.34113,0.34113,0.34113,0.34113,0.138158,0.138158,35,35,, +10649,0,0.144916,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.364,0.509,0,3.105342,8,4.5,0.347798,0.347798,0.347798,0.347798,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.34783,0.347802,0.347798,0.347798,0.34783,0.347802,0.347804,0.347808,0.347798,0.347798,0.347804,0.347808,0.347843,0.347901,0.347798,0.347798,0.347843,0.347901,0.347798,0.347798,0.347798,0.347798,0.347798,0.347798,,,,,,,0.34783,0.347802,0.347804,0.347808,0.347843,0.347901,0.347798,0.347798,0.347798,0.347798,0.130434,0.130425,0.130426,0.130427,0.130438,0.130455,0.130424,0.130424,0.068111,0.068111,24.99774,24.99977,24.999581,24.999338,24.996765,24.992632,25,25,25,25,,,,,,,,,,,2408,2408,0.347798,0.347798,0.347798,0.347798,0.347798,0.347798,0.347798,0.347798,0.130424,0.130424,25,25,, +11096,0,0.245159,1,1,0,2,5,,4,5,Waters,Rd,1436510,12.189,12.434,0,5.253418,5.8,4.5,0.544799,0.544799,0.544799,0.544799,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.735897,0.659864,0.544799,0.544799,0.735897,0.659864,0.632073,0.69094,0.544799,0.544799,0.632073,0.69094,0.822693,1.020574,0.544799,0.544799,0.822693,1.020574,0.544799,0.544799,0.544799,0.544799,0.544799,0.544799,,,,,,,0.735897,0.659864,0.632073,0.69094,0.822693,1.020574,0.544799,0.544799,0.544799,0.544799,0.264898,0.242088,0.233751,0.251411,0.290937,0.350301,0.207568,0.207568,0.108687,0.108687,19.988632,22.291808,23.271943,21.289221,17.879776,14.413042,27,27,27,27,,,,,,,,,,,2580,2580,0.544799,0.544799,0.544799,0.544799,0.544799,0.544799,0.544799,0.544799,0.207568,0.207568,27,27,, +20015,0,0.722512,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,2.288,3.01,0,15.4824,5.8,4.5,1.605582,1.605582,1.605582,1.605582,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.883198,1.693412,1.605582,1.605582,1.883198,1.693412,1.668453,1.708077,1.605582,1.605582,1.668453,1.708077,2.155323,2.340271,1.605582,1.605582,2.155323,2.340271,1.605582,1.605582,1.605582,1.605582,1.605582,1.605582,,,,,,,1.883198,1.693412,1.668453,1.708077,2.155323,2.340271,1.605582,1.605582,1.605582,1.605582,0.695012,0.638076,0.630588,0.642475,0.776649,0.832133,0.611727,0.611727,0.320314,0.320314,23.019732,25.599636,25.98259,25.379837,20.113328,18.523805,27,27,27,27,,,,,,,,,,,2838,2838,1.605582,1.605582,1.605582,1.605582,1.605582,1.605582,1.605582,1.605582,0.611727,0.611727,27,27,, +20016,0,0.456941,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,1.831,2.288,0,9.791584,5.8,4.5,1.015424,1.015424,1.015424,1.015424,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.024615,1.032527,1.015424,1.015424,1.024615,1.032527,1.016502,1.022855,1.015424,1.015424,1.016502,1.022855,1.045637,1.048886,1.015424,1.015424,1.045637,1.048886,1.015424,1.015424,1.015424,1.015424,1.015424,1.015424,,,,,,,1.024615,1.032527,1.016502,1.022855,1.045637,1.048886,1.015424,1.015424,1.015424,1.015424,0.389634,0.392007,0.3872,0.389106,0.39594,0.396915,0.386876,0.386876,0.202577,0.202577,26.757785,26.552753,26.971357,26.803826,26.219842,26.138634,27,27,27,27,,,,,,,,,,,2838,2838,1.015424,1.015424,1.015424,1.015424,1.015424,1.015424,1.015424,1.015424,0.386876,0.386876,27,27,, +26021,0,0.129365,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.772109,0.15,4,0.776191,0.776191,0.776191,0.776191,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,,,,,,,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.256143,0.256143,0.256143,0.256143,0.256143,0.256143,0.256143,0.256143,0.130659,0.130659,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.776191,0.256143,0.256143,10,10,, +26038,0,0.347012,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.435976,0.15,4,2.082073,2.082073,2.082073,2.082073,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.082074,2.082073,2.082073,2.082073,2.082074,2.082073,2.082073,2.082073,2.082073,2.082073,2.082073,2.082073,2.082073,2.082074,2.082073,2.082073,2.082073,2.082074,2.082073,2.082073,2.082073,2.082073,2.082073,2.082073,,,,,,,2.082074,2.082073,2.082073,2.082073,2.082073,2.082074,2.082073,2.082073,2.082073,2.082073,0.687084,0.687084,0.687084,0.687084,0.687084,0.687084,0.687084,0.687084,0.350482,0.350482,9.999999,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.082073,2.082073,2.082073,2.082073,2.082073,2.082073,2.082073,2.082073,0.687084,0.687084,10,10,, +26599,0,0.316362,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.779182,0.15,4,1.898171,1.898171,1.898171,1.898171,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,,,,,,,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,0.626396,0.626396,0.626396,0.626396,0.626396,0.626396,0.626396,0.626396,0.319525,0.319525,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,1.898171,0.626396,0.626396,10,10,, +30058,0,0.432994,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.278441,0.15,4,2.597964,2.597964,2.597964,2.597964,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,,,,,,,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,0.857328,0.857328,0.857328,0.857328,0.857328,0.857328,0.857328,0.857328,0.437324,0.437324,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,2.597964,0.857328,0.857328,10,10,, +26036,0,0.313595,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.719893,0.15,4,1.25438,1.25438,1.25438,1.25438,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,,,,,,,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,0.432761,0.432761,0.432761,0.432761,0.432761,0.432761,0.432761,0.432761,0.222652,0.222652,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,1.25438,0.432761,0.432761,15,15,, +26037,0,0.186352,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.99325,0.15,4,0.745407,0.745407,0.745407,0.745407,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,,,,,,,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.257165,0.257165,0.257165,0.257165,0.257165,0.257165,0.257165,0.257165,0.13231,0.13231,14.999999,14.999998,14.999999,14.999998,14.999996,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.745407,0.257165,0.257165,15,15,, +9660,0,0.157213,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,13.088,13.245,0,3.368861,4.5,4.5,0.248232,0.248232,0.248232,0.248232,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.61656,0.256616,0.248232,0.248232,0.61656,0.256616,0.262188,0.267488,0.248232,0.248232,0.262188,0.267488,0.358582,0.876872,0.248232,0.248232,0.358582,0.876872,0.248232,0.248232,0.248232,0.248232,0.248232,0.248232,,,,,,,0.61656,0.256616,0.262188,0.267488,0.358582,0.876872,0.248232,0.248232,0.248232,0.248232,0.213266,0.105283,0.106955,0.108545,0.135873,0.29136,0.102768,0.102768,0.054528,0.054528,15.299096,36.758454,35.97722,35.264384,26.305888,10.75734,38,38,38,38,,,,,,,,,,,3096,3096,0.248232,0.248232,0.248232,0.248232,0.248232,0.248232,0.248232,0.248232,0.102768,0.102768,38,38,, +10651,0,0.227271,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0,0.227,0,4.870097,8,4.5,0.545451,0.545451,0.545451,0.545451,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.5455,0.545456,0.545451,0.545451,0.5455,0.545456,0.54546,0.545465,0.545451,0.545451,0.54546,0.545465,0.545521,0.545891,0.545451,0.545451,0.545521,0.545891,0.545451,0.545451,0.545451,0.545451,0.545451,0.545451,,,,,,,0.5455,0.545456,0.54546,0.545465,0.545521,0.545891,0.545451,0.545451,0.545451,0.545451,0.204559,0.204546,0.204547,0.204548,0.204565,0.204676,0.204544,0.204544,0.106817,0.106817,24.99774,24.99977,24.999581,24.999338,24.996765,24.979838,25,25,25,25,,,,,,,,,,,2408,2408,0.545451,0.545451,0.545451,0.545451,0.545451,0.545451,0.545451,0.545451,0.204544,0.204544,25,25,, +10777,0,0.21767,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.465,0.683,0,4.664354,6,4.5,0.395763,0.395763,0.395763,0.395763,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.417546,0.397808,0.395763,0.395763,0.417546,0.397808,0.397509,0.398974,0.395763,0.395763,0.397509,0.398974,0.415858,0.446885,0.395763,0.395763,0.415858,0.446885,0.395763,0.395763,0.395763,0.395763,0.395763,0.395763,,,,,,,0.417546,0.397808,0.397509,0.398974,0.415858,0.446885,0.395763,0.395763,0.395763,0.395763,0.164444,0.158523,0.158433,0.158873,0.163938,0.173246,0.15791,0.15791,0.083308,0.083308,31.278449,32.8304,32.855044,32.734452,31.405441,29.224919,33,33,33,33,,,,,,,,,,,2580,2580,0.395763,0.395763,0.395763,0.395763,0.395763,0.395763,0.395763,0.395763,0.15791,0.15791,33,33,, +11574,0,0.305553,1,1,0,2,4,,3,5,Maple,Rd,1452206,0,0.305,0,6.547567,6,4.5,0.555551,0.555551,0.555551,0.555551,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.627072,0.560937,0.555551,0.555551,0.627072,0.560937,0.559373,0.563397,0.555551,0.555551,0.559373,0.563397,0.601199,0.729518,0.555551,0.555551,0.601199,0.729518,0.555551,0.555551,0.555551,0.555551,0.555551,0.555551,,,,,,,0.627072,0.560937,0.559373,0.563397,0.601199,0.729518,0.555551,0.555551,0.555551,0.555551,0.243121,0.223281,0.222812,0.224019,0.235359,0.273855,0.221665,0.221665,0.116944,0.116944,29.23618,32.683178,32.774524,32.54043,30.494387,25.130533,33,33,33,33,,,,,,,,,,,2580,2580,0.555551,0.555551,0.555551,0.555551,0.555551,0.555551,0.555551,0.555551,0.221665,0.221665,33,33,, +24640,0,0.352998,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.564234,0.15,4,2.117985,2.117985,2.117985,2.117985,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,,,,,,,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,0.698935,0.698935,0.698935,0.698935,0.698935,0.698935,0.698935,0.698935,0.356528,0.356528,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,2.117985,0.698935,0.698935,10,10,, +24641,0,0.393668,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.435735,0.15,4,2.362006,2.362006,2.362006,2.362006,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,,,,,,,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,0.779462,0.779462,0.779462,0.779462,0.779462,0.779462,0.779462,0.779462,0.397604,0.397604,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,2.362006,0.779462,0.779462,10,10,, +26391,0,0.154986,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.321118,0.15,4,0.929913,0.929913,0.929913,0.929913,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,,,,,,,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.306871,0.306871,0.306871,0.306871,0.306871,0.306871,0.306871,0.306871,0.156535,0.156535,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.929913,0.306871,0.306871,10,10,, +30046,0,0.290117,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.216797,0.15,4,1.740703,1.740703,1.740703,1.740703,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,,,,,,,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,0.574432,0.574432,0.574432,0.574432,0.574432,0.574432,0.574432,0.574432,0.293018,0.293018,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,1.740703,0.574432,0.574432,10,10,, +9661,0,0.369151,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,12.719,13.088,0,7.910371,4.5,4.5,0.582869,0.582869,0.582869,0.582869,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.859079,0.588658,0.582869,0.582869,0.859079,0.588658,0.589266,0.58857,0.582869,0.582869,0.589266,0.58857,0.608011,0.8576,0.582869,0.582869,0.608011,0.8576,0.582869,0.582869,0.582869,0.582869,0.582869,0.582869,,,,,,,0.859079,0.588658,0.589266,0.58857,0.608011,0.8576,0.582869,0.582869,0.582869,0.582869,0.324171,0.243044,0.243227,0.243018,0.24885,0.323727,0.241308,0.241308,0.128037,0.128037,25.782317,37.626353,37.587504,37.631925,36.428702,25.826759,38,38,38,38,,,,,,,,,,,3096,3096,0.582869,0.582869,0.582869,0.582869,0.582869,0.582869,0.582869,0.582869,0.241308,0.241308,38,38,, +11422,0,0.159572,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.305,0.465,0,3.419407,6,4.5,0.290132,0.290132,0.290132,0.290132,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.310183,0.293814,0.290132,0.290132,0.310183,0.293814,0.292182,0.29434,0.290132,0.290132,0.292182,0.29434,0.315009,0.338997,0.290132,0.290132,0.315009,0.338997,0.290132,0.290132,0.290132,0.290132,0.290132,0.290132,,,,,,,0.310183,0.293814,0.292182,0.29434,0.315009,0.338997,0.290132,0.290132,0.290132,0.290132,0.121778,0.116867,0.116378,0.117025,0.123226,0.130422,0.115762,0.115762,0.061073,0.061073,30.866711,32.586447,32.768386,32.528177,30.393885,28.243104,33,33,33,33,,,,,,,,,,,2580,2580,0.290132,0.290132,0.290132,0.290132,0.290132,0.290132,0.290132,0.290132,0.115762,0.115762,33,33,, +11567,0,0.240188,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.683,0.923,0,5.146889,6,4.5,0.436706,0.436706,0.436706,0.436706,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.449237,0.43821,0.436706,0.436706,0.449237,0.43821,0.437635,0.438371,0.436706,0.436706,0.437635,0.438371,0.450942,0.46098,0.436706,0.436706,0.450942,0.46098,0.436706,0.436706,0.436706,0.436706,0.436706,0.436706,,,,,,,0.449237,0.43821,0.437635,0.438371,0.450942,0.46098,0.436706,0.436706,0.436706,0.436706,0.178005,0.174697,0.174524,0.174745,0.178517,0.181528,0.174246,0.174246,0.091927,0.091927,32.079481,32.886686,32.929959,32.874623,31.95816,31.262317,33,33,33,33,,,,,,,,,,,2580,2580,0.436706,0.436706,0.436706,0.436706,0.436706,0.436706,0.436706,0.436706,0.174246,0.174246,33,33,, +30045,0,0.214783,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.602493,0.15,4,1.288698,1.288698,1.288698,1.288698,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,,,,,,,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,0.42527,0.42527,0.42527,0.42527,0.42527,0.42527,0.42527,0.42527,0.216931,0.216931,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,1.288698,0.42527,0.42527,10,10,, +9658,0,0.199629,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.245,13.445,0,4.27777,6,4.5,0.362962,0.362962,0.362962,0.362962,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.549603,0.366025,0.362962,0.362962,0.549603,0.366025,0.370075,0.369533,0.362962,0.362962,0.370075,0.369533,0.409032,0.634464,0.362962,0.362962,0.409032,0.634464,0.362962,0.362962,0.362962,0.362962,0.362962,0.362962,,,,,,,0.549603,0.366025,0.370075,0.369533,0.409032,0.634464,0.362962,0.362962,0.362962,0.362962,0.200814,0.145741,0.146956,0.146793,0.158643,0.226273,0.144822,0.144822,0.076404,0.076404,21.793471,32.723835,32.365738,32.413187,29.28317,18.878536,33,33,33,33,,,,,,,,,,,2580,2580,0.362962,0.362962,0.362962,0.362962,0.362962,0.362962,0.362962,0.362962,0.144822,0.144822,33,33,, +26039,0,0.374682,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.0289,0.15,4,2.248092,2.248092,2.248092,2.248092,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,,,,,,,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,0.74187,0.74187,0.74187,0.74187,0.74187,0.74187,0.74187,0.74187,0.378429,0.378429,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,2.248092,0.74187,0.74187,10,10,, +10650,0,0.137197,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.227,0.364,0,2.939939,8,4.5,0.329273,0.329273,0.329273,0.329273,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.32932,0.329279,0.329273,0.329273,0.32932,0.329279,0.329283,0.329286,0.329273,0.329273,0.329283,0.329286,0.329332,0.329424,0.329273,0.329273,0.329332,0.329424,0.329273,0.329273,0.329273,0.329273,0.329273,0.329273,,,,,,,0.32932,0.329279,0.329283,0.329286,0.329332,0.329424,0.329273,0.329273,0.329273,0.329273,0.123492,0.123479,0.12348,0.123481,0.123495,0.123523,0.123477,0.123477,0.064483,0.064483,24.996436,24.999539,24.999281,24.998998,24.995502,24.988528,25,25,25,25,,,,,,,,,,,2408,2408,0.329273,0.329273,0.329273,0.329273,0.329273,0.329273,0.329273,0.329273,0.123477,0.123477,25,25,, +26012,0,0.167971,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.599372,0.15,4,1.007824,1.007824,1.007824,1.007824,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,,,,,,,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,0.332582,0.332582,0.332582,0.332582,0.332582,0.332582,0.332582,0.332582,0.16965,0.16965,10,10,10,9.999999,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,1.007824,0.332582,0.332582,10,10,, +26013,0,0.194805,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.174387,0.15,4,1.168828,1.168828,1.168828,1.168828,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,,,,,,,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,0.385713,0.385713,0.385713,0.385713,0.385713,0.385713,0.385713,0.385713,0.196753,0.196753,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,1.168828,0.385713,0.385713,10,10,, +9508,0,0.013533,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.669,0.683,0,0.289983,5,5,0.023199,0.023199,0.023199,0.023199,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.025751,0.023464,0.023199,0.023199,0.025751,0.023464,0.023651,0.02357,0.023199,0.023199,0.023651,0.02357,0.024626,0.026861,0.023199,0.023199,0.024626,0.026861,0.023199,0.023199,0.023199,0.023199,0.023199,0.023199,,,,,,,0.025751,0.023464,0.023651,0.02357,0.024626,0.026861,0.023199,0.023199,0.023199,0.023199,0.010161,0.009475,0.009531,0.009507,0.009824,0.010494,0.009395,0.009395,0.004968,0.004968,31.531514,34.603648,34.331258,34.44785,32.971871,30.228448,35,35,35,35,,,,,,,,,,,7946,7946,0.023199,0.023199,0.023199,0.023199,0.023199,0.023199,0.023199,0.023199,0.009395,0.009395,35,35,, +9494,1,0.36918,2,0,0,1,1,,3,5,E I 94,,1426109,21.159,21.528,0,,0.58,7,0.340782,,0.340782,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.34222,,0.340782,,0.34222,,0.340814,,0.340782,,0.340814,,0.344887,,0.340782,,0.344887,,0.340782,,0.340782,,0.340782,,,,,,,,0.34222,,0.340814,,0.344887,,0.340782,,0.340782,,0.169118,,0.168697,,0.169918,,0.168687,,0.091727,,64.726866,,64.993801,,64.226327,,65,,65,,,,,,,,,,,,15136,,0.340782,,0.340782,,0.340782,,0.340782,,0.168687,,65,,, +9495,1,0.312351,2,0,0,1,1,,3,5,E I 94,,1426109,20.847,21.159,0,,0.58,7,0.288324,,0.288324,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.288903,,0.288324,,0.288903,,0.288334,,0.288324,,0.288334,,0.288951,,0.288324,,0.288951,,0.288324,,0.288324,,0.288324,,,,,,,,0.288903,,0.288334,,0.288951,,0.288324,,0.288324,,0.142894,,0.142723,,0.142908,,0.14272,,0.077607,,64.869722,,64.99777,,64.859071,,65,,65,,,,,,,,,,,,15136,,0.288324,,0.288324,,0.288324,,0.288324,,0.14272,,65,,, +9644,1,0.49244,1,0,0,1,1,RON,3,5,Ann Arbor Saline/W I 94,RAMP,1427108,0,0.492,0,,1.09,4,0.73866,,0.73866,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.750411,,0.73866,,0.750411,,0.769834,,0.73866,,0.769834,,0.916706,,0.73866,,0.916706,,0.73866,,0.73866,,0.73866,,,,,,,,0.750411,,0.769834,,0.916706,,0.73866,,0.73866,,0.313763,,0.319589,,0.363651,,0.310237,,0.164967,,39.373602,,38.380231,,32.231054,,40,,40,,,,,,,,,,,,5074,,0.73866,,0.73866,,0.73866,,0.73866,,0.310237,,40,,, +9766,1,0.320184,1,0,0,1,1,RON,3,5,S Ann Arbor Saline/E I 94,RAMP,1426803,0,0.32,0,,1.09,4,0.480276,,0.480276,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.480531,,0.480276,,0.480531,,0.480373,,0.480276,,0.480373,,0.490329,,0.480276,,0.490329,,0.480276,,0.480276,,0.480276,,,,,,,,0.480531,,0.480373,,0.490329,,0.480276,,0.480276,,0.201793,,0.201745,,0.204732,,0.201716,,0.107262,,39.978752,,39.991904,,39.179881,,40,,40,,,,,,,,,,,,5074,,0.480276,,0.480276,,0.480276,,0.480276,,0.201716,,40,,, +9830,-1,0.274725,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,0,0.275,0,5.886956,5,5,,0.412087,,0.412087,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.41468,,0.412087,,0.41468,,0.425498,,0.412087,,0.425498,,0.550168,,0.412087,,0.550168,,0.412087,,0.412087,,0.412087,,,,,,,,0.41468,,0.425498,,0.550168,,0.412087,,0.412087,,0.173854,,0.1771,,0.214501,,0.173077,,0.092033,,39.749862,,38.739267,,29.960816,,40,,40,,,,,,,,,,,,6880,,0.412087,,0.412087,,0.412087,,0.412087,,0.173077,,40,, +9888,1,0.379886,1,0,0,1,1,RON,3,5,N Ann Arbor Saline/E I 94,RAMP,1426805,0,0.38,0,,1.09,4,0.569829,,0.569829,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.57585,,0.569829,,0.57585,,0.571029,,0.569829,,0.571029,,0.577651,,0.569829,,0.577651,,0.569829,,0.569829,,0.569829,,,,,,,,0.57585,,0.571029,,0.577651,,0.569829,,0.569829,,0.241135,,0.239688,,0.241675,,0.239328,,0.127262,,39.581769,,39.915998,,39.458371,,40,,40,,,,,,,,,,,,5074,,0.569829,,0.569829,,0.569829,,0.569829,,0.239328,,40,,, +9960,1,0.375054,1,0,0,1,1,ROF,3,5,E I 94/Ann Arbor Saline,RAMP,1426802,0,0.375,0,,2.24,5,0.642949,,0.642949,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.700626,,0.642949,,0.700626,,0.658165,,0.642949,,0.658165,,0.67817,,0.642949,,0.67817,,0.642949,,0.642949,,0.642949,,,,,,,,0.700626,,0.658165,,0.67817,,0.642949,,0.642949,,0.277697,,0.264959,,0.270961,,0.260394,,0.137698,,32.118758,,34.190854,,33.182257,,35,,35,,,,,,,,,,,,5074,,0.642949,,0.642949,,0.642949,,0.642949,,0.260394,,35,,, +10346,-1,1.005268,0,2,0,1,1,,3,5,W I 94,,1426110,20.673,21.678,0,,0.58,7,,0.92794,,0.92794,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.92949,,0.92794,,0.92949,,0.927976,,0.92794,,0.927976,,0.929269,,0.92794,,0.929269,,0.92794,,0.92794,,0.92794,,,,,,,,0.92949,,0.927976,,0.929269,,0.92794,,0.92794,,0.459795,,0.459341,,0.459729,,0.45933,,0.249771,,64.891622,,64.997477,,64.907047,,65,,65,,,,,,,,,,,,15136,,0.92794,,0.92794,,0.92794,,0.92794,,0.45933,,65,, +10421,1,0.582897,1,0,0,1,1,ROF,3,5,W I 94/Ann Arbor Saline,RAMP,1427109,0,0.583,0,,2.24,5,0.999252,,0.999252,,35,,14750,,3348,,7375,,4758,,5074,,5068,,1.462595,,0.999252,,1.462595,,1.009484,,0.999252,,1.009484,,1.157902,,0.999252,,1.157902,,0.999252,,0.999252,,0.999252,,,,,,,,1.462595,,1.009484,,1.157902,,0.999252,,0.999252,,0.5437,,0.407767,,0.452292,,0.404697,,0.214006,,23.912163,,34.645234,,30.20445,,35,,35,,,,,,,,,,,,5074,,0.999252,,0.999252,,0.999252,,0.999252,,0.404697,,35,,, +10857,0,0.146242,2,2,0,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.512,2.658,0,3.133762,5,5,0.250701,0.250701,0.250701,0.250701,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.518965,0.312594,0.250701,0.250701,0.518965,0.312594,0.380758,0.340807,0.250701,0.250701,0.380758,0.340807,0.489662,1.100203,0.250701,0.250701,0.489662,1.100203,0.250701,0.250701,0.250701,0.250701,0.250701,0.250701,,,,,,,0.518965,0.312594,0.380758,0.340807,0.489662,1.100203,0.250701,0.250701,0.250701,0.250701,0.182013,0.120102,0.140551,0.128566,0.173222,0.356385,0.101534,0.101534,0.053692,0.053692,16.907758,28.070029,23.044932,25.746356,17.919565,7.975373,35,35,35,35,,,,,,,,,,,7568,7568,0.250701,0.250701,0.250701,0.250701,0.250701,0.250701,0.250701,0.250701,0.101534,0.101534,35,35,, +11043,0,0.320184,1,1,0,2,5,,4,5,Lohr,Rd,1436510,12.718,13.038,0,6.861082,5.8,4.5,0.71152,0.71152,0.71152,0.71152,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.719313,0.716771,0.71152,0.71152,0.719313,0.716771,0.71891,0.715106,0.71152,0.71152,0.71891,0.715106,0.730169,0.722564,0.71152,0.71152,0.730169,0.722564,0.71152,0.71152,0.71152,0.71152,0.71152,0.71152,,,,,,,0.719313,0.716771,0.71891,0.715106,0.730169,0.722564,0.71152,0.71152,0.71152,0.71152,0.273427,0.272665,0.273306,0.272165,0.276684,0.274402,0.271089,0.271089,0.141948,0.141948,26.70747,26.802173,26.722427,26.864592,26.310386,26.587297,27,27,27,27,,,,,,,,,,,2580,2580,0.71152,0.71152,0.71152,0.71152,0.71152,0.71152,0.71152,0.71152,0.271089,0.271089,27,27,, +21398,1,0.275191,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,0,0.275,0,5.896939,5,5,0.412786,,0.412786,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.46809,,0.412786,,0.46809,,0.418285,,0.412786,,0.418285,,0.429336,,0.412786,,0.429336,,0.412786,,0.412786,,0.412786,,,,,,,,0.46809,,0.418285,,0.429336,,0.412786,,0.412786,,0.189961,,0.17502,,0.178335,,0.17337,,0.092189,,35.274044,,39.47411,,38.458072,,40,,40,,,,,,,,,,,,6880,,0.412786,,0.412786,,0.412786,,0.412786,,0.17337,,40,,, +30057,0,0.361427,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.74486,0.15,4,2.168561,2.168561,2.168561,2.168561,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,,,,,,,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,0.715625,0.715625,0.715625,0.715625,0.715625,0.715625,0.715625,0.715625,0.365041,0.365041,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,2.168561,0.715625,0.715625,10,10,, +10864,0,0.178585,2,2,1,2,4,,4,5,Ann Arbor Saline,Rd,1436706,2.218,2.397,0,3.82682,4.5,4.5,0.281976,0.281976,0.281976,0.281976,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.935103,0.52813,0.281976,0.281976,0.935103,0.52813,0.587784,0.601357,0.281976,0.281976,0.587784,0.601357,0.956113,1.196251,0.281976,0.281976,0.956113,1.196251,0.281976,0.281976,0.281976,0.281976,0.281976,0.281976,,,,,,,0.935103,0.52813,0.587784,0.601357,0.956113,1.196251,0.281976,0.281976,0.281976,0.281976,0.312676,0.190584,0.20848,0.212552,0.318979,0.391021,0.116738,0.116738,0.061941,0.061941,11.45873,20.288732,18.229651,17.818184,11.206936,8.957231,38,38,38,38,,,,,,,,,,,6502,6502,0.281976,0.281976,0.281976,0.281976,0.281976,0.281976,0.281976,0.281976,0.116738,0.116738,38,38,, +10894,0,0.19829,1,1,0,2,4,,4,5,Ann Arbor Saline,Rd,1436706,2.02,2.218,0,4.249081,4.5,4.5,0.31309,0.31309,0.31309,0.31309,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.722329,0.581983,0.31309,0.31309,0.722329,0.581983,0.593005,0.615624,0.31309,0.31309,0.593005,0.615624,0.683309,0.860865,0.31309,0.31309,0.683309,0.860865,0.31309,0.31309,0.31309,0.31309,0.31309,0.31309,,,,,,,0.722329,0.581983,0.593005,0.615624,0.683309,0.860865,0.31309,0.31309,0.31309,0.31309,0.252391,0.210287,0.213594,0.22038,0.240685,0.293952,0.129619,0.129619,0.068775,0.068775,16.470918,20.442917,20.062953,19.325797,17.411487,13.820321,38,38,38,38,,,,,,,,,,,3096,3096,0.31309,0.31309,0.31309,0.31309,0.31309,0.31309,0.31309,0.31309,0.129619,0.129619,38,38,, +11089,0,0.074215,1,1,0,2,5,,4,5,Lohr,Rd,1436510,12.644,12.718,0,1.590325,5.8,4.5,0.164923,0.164923,0.164923,0.164923,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.188371,0.266893,0.164923,0.164923,0.188371,0.266893,0.222628,0.207486,0.164923,0.164923,0.222628,0.207486,0.44595,0.299155,0.164923,0.164923,0.44595,0.299155,0.164923,0.164923,0.164923,0.164923,0.164923,0.164923,,,,,,,0.188371,0.266893,0.222628,0.207486,0.44595,0.299155,0.164923,0.164923,0.164923,0.164923,0.06987,0.093427,0.080147,0.075604,0.147144,0.103105,0.062836,0.062836,0.032902,0.032902,23.639012,16.684247,20.00155,21.461275,9.985229,14.884956,27,27,27,27,,,,,,,,,,,2580,2580,0.164923,0.164923,0.164923,0.164923,0.164923,0.164923,0.164923,0.164923,0.062836,0.062836,27,27,, +20017,0,0.241241,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,1.59,1.831,0,5.169443,5.8,4.5,0.53609,0.53609,0.53609,0.53609,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.540368,0.536931,0.53609,0.53609,0.540368,0.536931,0.537581,0.5376,0.53609,0.53609,0.537581,0.5376,0.565043,0.542663,0.53609,0.53609,0.565043,0.542663,0.53609,0.53609,0.53609,0.53609,0.53609,0.53609,,,,,,,0.540368,0.536931,0.537581,0.5376,0.565043,0.542663,0.53609,0.53609,0.53609,0.53609,0.205534,0.204503,0.204698,0.204703,0.212936,0.206222,0.20425,0.20425,0.10695,0.10695,26.786255,26.957741,26.925137,26.924204,25.616541,26.672992,27,27,27,27,,,,,,,,,,,2838,2838,0.53609,0.53609,0.53609,0.53609,0.53609,0.53609,0.53609,0.53609,0.20425,0.20425,27,27,, +11094,0,0.209983,1,1,0,2,5,,4,5,Waters,Rd,1436510,12.434,12.644,0,4.499628,5.8,4.5,0.466628,0.466628,0.466628,0.466628,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.866783,0.566972,0.466628,0.466628,0.866783,0.566972,0.584254,0.554023,0.466628,0.466628,0.584254,0.554023,0.85982,0.755653,0.466628,0.466628,0.85982,0.755653,0.466628,0.466628,0.466628,0.466628,0.466628,0.466628,,,,,,,0.866783,0.566972,0.584254,0.554023,0.85982,0.755653,0.466628,0.466628,0.466628,0.466628,0.297832,0.207888,0.213073,0.204004,0.295743,0.264493,0.177785,0.177785,0.093092,0.093092,14.535299,22.221487,21.564173,22.74087,14.653015,16.672934,27,27,27,27,,,,,,,,,,,2580,2580,0.466628,0.466628,0.466628,0.466628,0.466628,0.466628,0.466628,0.466628,0.177785,0.177785,27,27,, +10863,0,0.115478,2,2,0,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.397,2.512,0,2.474535,5,5,0.197963,0.197963,0.197963,0.197963,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.409794,0.215882,0.197963,0.197963,0.409794,0.215882,0.30066,0.232916,0.197963,0.197963,0.30066,0.232916,0.386656,0.337246,0.197963,0.197963,0.386656,0.337246,0.197963,0.197963,0.197963,0.197963,0.197963,0.197963,,,,,,,0.409794,0.215882,0.30066,0.232916,0.386656,0.337246,0.197963,0.197963,0.197963,0.197963,0.143724,0.085551,0.110984,0.090661,0.136783,0.12196,0.080175,0.080175,0.042397,0.042397,16.907758,32.094887,23.044932,29.747582,17.919565,20.544917,35,35,35,35,,,,,,,,,,,7568,7568,0.197963,0.197963,0.197963,0.197963,0.197963,0.197963,0.197963,0.197963,0.080175,0.080175,35,35,, +10845,0,0.289514,2,2,1,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.73,3.02,0,6.203861,5,5,0.496309,0.496309,0.496309,0.496309,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.670378,0.508855,0.496309,0.496309,0.670378,0.508855,0.527107,0.517108,0.496309,0.496309,0.527107,0.517108,0.559796,0.638176,0.496309,0.496309,0.559796,0.638176,0.496309,0.496309,0.496309,0.496309,0.496309,0.496309,,,,,,,0.670378,0.508855,0.527107,0.517108,0.559796,0.638176,0.496309,0.496309,0.496309,0.496309,0.253226,0.204769,0.210245,0.207245,0.220051,0.243565,0.201005,0.201005,0.106293,0.106293,25.911978,34.137063,32.955001,33.592242,31.030618,27.21947,35,35,35,35,,,,,,,,,,,7946,7946,0.496309,0.496309,0.496309,0.496309,0.496309,0.496309,0.496309,0.496309,0.201005,0.201005,35,35,, +19637,0,0.183233,1,1,1,2,5,,3,5,Oakbrook,Dr,1908304,0,0.183,0,3.926416,8,4.5,0.439759,0.439759,0.439759,0.439759,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.440189,0.439862,0.439759,0.439759,0.440189,0.439862,0.449644,0.441552,0.439759,0.439759,0.449644,0.441552,0.444873,0.447003,0.439759,0.439759,0.444873,0.447003,0.439759,0.439759,0.439759,0.439759,0.439759,0.439759,,,,,,,0.440189,0.439862,0.449644,0.441552,0.444873,0.447003,0.439759,0.439759,0.439759,0.439759,0.165039,0.16494,0.167875,0.165447,0.166444,0.167083,0.164909,0.164909,0.086119,0.086119,24.975557,24.994133,24.450398,24.898482,24.712614,24.594841,25,25,25,25,,,,,,,,,,,2649,2649,0.439759,0.439759,0.439759,0.439759,0.439759,0.439759,0.439759,0.439759,0.164909,0.164909,25,25,, +10852,0,0.071981,2,2,1,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.658,2.73,0,1.542456,5,5,0.123396,0.123396,0.123396,0.123396,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.676843,0.156364,0.123396,0.123396,0.676843,0.156364,0.193733,0.207164,0.123396,0.123396,0.193733,0.207164,0.305775,0.863775,0.123396,0.123396,0.305775,0.863775,0.123396,0.123396,0.123396,0.123396,0.123396,0.123396,,,,,,,0.676843,0.156364,0.193733,0.207164,0.305775,0.863775,0.123396,0.123396,0.123396,0.123396,0.216009,0.059866,0.071077,0.075106,0.104689,0.272089,0.049976,0.049976,0.026427,0.026427,6.380915,27.620571,22.292905,20.847609,14.124368,5,35,35,35,35,,,,,,,,,,,7946,7946,0.123396,0.123396,0.123396,0.123396,0.123396,0.123396,0.123396,0.123396,0.049976,0.049976,35,35,, +9518,0,0.2929,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.392,1.685,0,6.276431,5,5,0.502114,0.502114,0.502114,0.502114,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.871582,0.527161,0.502114,0.502114,0.871582,0.527161,0.612068,0.578189,0.502114,0.502114,0.612068,0.578189,0.670044,0.930322,0.502114,0.502114,0.670044,0.930322,0.502114,0.502114,0.502114,0.502114,0.502114,0.502114,,,,,,,0.871582,0.527161,0.612068,0.578189,0.670044,0.930322,0.502114,0.502114,0.502114,0.502114,0.314197,0.21087,0.236342,0.226179,0.253735,0.331819,0.203356,0.203356,0.107536,0.107536,20.163342,33.337093,28.712521,30.394943,26.228147,18.890239,35,35,35,35,,,,,,,,,,,4162,4162,0.502114,0.502114,0.502114,0.502114,0.502114,0.502114,0.502114,0.502114,0.203356,0.203356,35,35,, +9626,0,0.151678,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.919,14.07,0,3.250247,6,4.5,0.275778,0.275778,0.275778,0.275778,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.420307,0.278225,0.275778,0.275778,0.420307,0.278225,0.279505,0.279408,0.275778,0.275778,0.279505,0.279408,0.296286,0.482354,0.275778,0.275778,0.296286,0.482354,0.275778,0.275778,0.275778,0.275778,0.275778,0.275778,,,,,,,0.420307,0.278225,0.279505,0.279408,0.296286,0.482354,0.275778,0.275778,0.275778,0.275778,0.153394,0.11077,0.111154,0.111124,0.116188,0.172008,0.110036,0.110036,0.058051,0.058051,21.652473,32.709769,32.560024,32.571327,30.715894,18.867261,33,33,33,33,,,,,,,,,,,2580,2580,0.275778,0.275778,0.275778,0.275778,0.275778,0.275778,0.275778,0.275778,0.110036,0.110036,33,33,, +9761,0,0.574578,1,1,0,2,4,,3,5,7th,St,1430205,0.474,1.048,0,12.312392,6,4.5,1.044688,1.044688,1.044688,1.044688,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.306141,1.045613,1.044688,1.044688,1.306141,1.045613,1.058074,1.048803,1.044688,1.044688,1.058074,1.048803,1.088958,1.322248,1.044688,1.044688,1.088958,1.322248,1.044688,1.044688,1.044688,1.044688,1.044688,1.044688,,,,,,,1.306141,1.045613,1.058074,1.048803,1.088958,1.322248,1.044688,1.044688,1.044688,1.044688,0.495266,0.417108,0.420846,0.418065,0.430111,0.500098,0.41683,0.41683,0.219907,0.219907,26.394316,32.970809,32.582495,32.87051,31.658426,26.072792,33,33,33,33,,,,,,,,,,,2580,2580,1.044688,1.044688,1.044688,1.044688,1.044688,1.044688,1.044688,1.044688,0.41683,0.41683,33,33,, +10646,0,0.060828,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.874,0.935,0,1.303455,8,4.5,0.145987,0.145987,0.145987,0.145987,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.215637,0.147149,0.145987,0.145987,0.215637,0.147149,0.154276,0.156302,0.145987,0.145987,0.154276,0.156302,0.169032,0.275011,0.145987,0.145987,0.169032,0.275011,0.145987,0.145987,0.145987,0.145987,0.145987,0.145987,,,,,,,0.215637,0.147149,0.154276,0.156302,0.169032,0.275011,0.145987,0.145987,0.145987,0.145987,0.07564,0.055094,0.057232,0.05784,0.061659,0.093452,0.054745,0.054745,0.028589,0.028589,16.925111,24.802507,23.656842,23.350157,21.591565,13.270997,25,25,25,25,,,,,,,,,,,2408,2408,0.145987,0.145987,0.145987,0.145987,0.145987,0.145987,0.145987,0.145987,0.054745,0.054745,25,25,, +26431,0,0.248514,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.325289,0.15,4,1.491081,1.491081,1.491081,1.491081,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,,,,,,,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,0.492057,0.492057,0.492057,0.492057,0.492057,0.492057,0.492057,0.492057,0.250999,0.250999,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,1.491081,0.492057,0.492057,10,10,, +26432,0,0.261951,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.613227,0.15,4,1.571703,1.571703,1.571703,1.571703,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,,,,,,,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,0.518662,0.518662,0.518662,0.518662,0.518662,0.518662,0.518662,0.518662,0.26457,0.26457,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,1.571703,0.518662,0.518662,10,10,, +26434,0,0.277957,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.956228,0.15,4,1.667744,1.667744,1.667744,1.667744,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,,,,,,,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,0.550355,0.550355,0.550355,0.550355,0.550355,0.550355,0.550355,0.550355,0.280737,0.280737,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,1.667744,0.550355,0.550355,10,10,, +9627,0,0.324006,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.595,13.919,0,6.94299,6,4.5,0.589102,0.589102,0.589102,0.589102,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.7986,0.592331,0.589102,0.589102,0.7986,0.592331,0.594771,0.594831,0.589102,0.589102,0.594771,0.594831,0.624866,0.923655,0.589102,0.589102,0.624866,0.923655,0.589102,0.589102,0.589102,0.589102,0.589102,0.589102,,,,,,,0.7986,0.592331,0.594771,0.594831,0.624866,0.923655,0.589102,0.589102,0.589102,0.589102,0.297901,0.23602,0.236752,0.23677,0.245781,0.335418,0.235052,0.235052,0.124006,0.124006,24.343074,32.820107,32.685467,32.682175,31.111244,21.047223,33,33,33,33,,,,,,,,,,,2580,2580,0.589102,0.589102,0.589102,0.589102,0.589102,0.589102,0.589102,0.589102,0.235052,0.235052,33,33,, +9566,0,0.156194,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.179,1.335,0,3.347018,5,5,0.267761,0.267761,0.267761,0.267761,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.400266,0.27887,0.267761,0.267761,0.400266,0.27887,0.302933,0.291008,0.267761,0.267761,0.302933,0.291008,0.333015,0.406275,0.267761,0.267761,0.333015,0.406275,0.267761,0.267761,0.267761,0.267761,0.267761,0.267761,,,,,,,0.400266,0.27887,0.302933,0.291008,0.333015,0.406275,0.267761,0.267761,0.267761,0.267761,0.148195,0.111776,0.118995,0.115417,0.128019,0.149997,0.108443,0.108443,0.057346,0.057346,23.413559,33.605854,30.936412,32.204119,28.141838,23.067261,35,35,35,35,,,,,,,,,,,4162,4162,0.267761,0.267761,0.267761,0.267761,0.267761,0.267761,0.267761,0.267761,0.108443,0.108443,35,35,, +10023,0,0.218979,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,0.882,1.101,0,4.692397,5,5,0.375392,0.375392,0.375392,0.375392,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.557291,0.421091,0.375392,0.375392,0.557291,0.421091,0.414141,0.400786,0.375392,0.375392,0.414141,0.400786,0.492663,0.608295,0.375392,0.375392,0.492663,0.608295,0.375392,0.375392,0.375392,0.375392,0.375392,0.375392,,,,,,,0.557291,0.421091,0.414141,0.400786,0.492663,0.608295,0.375392,0.375392,0.375392,0.375392,0.206604,0.165744,0.163658,0.159652,0.187215,0.221904,0.152034,0.152034,0.080396,0.080396,23.57602,31.201568,31.725202,32.78237,26.668745,21.599259,35,35,35,35,,,,,,,,,,,4162,4162,0.375392,0.375392,0.375392,0.375392,0.375392,0.375392,0.375392,0.375392,0.152034,0.152034,35,35,, +10648,0,0.222708,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.509,0.732,0,4.772308,8,4.5,0.534498,0.534498,0.534498,0.534498,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.745903,0.539636,0.534498,0.534498,0.745903,0.539636,0.548516,0.556357,0.534498,0.534498,0.548516,0.556357,0.618974,0.834836,0.534498,0.534498,0.618974,0.834836,0.534498,0.534498,0.534498,0.534498,0.534498,0.534498,,,,,,,0.745903,0.539636,0.548516,0.556357,0.618974,0.834836,0.534498,0.534498,0.534498,0.534498,0.263858,0.201978,0.204642,0.206995,0.22578,0.290538,0.200437,0.200437,0.104673,0.104673,17.914488,24.761985,24.361115,24.017765,21.588084,16.006089,25,25,25,25,,,,,,,,,,,2408,2408,0.534498,0.534498,0.534498,0.534498,0.534498,0.534498,0.534498,0.534498,0.200437,0.200437,25,25,, +26435,0,0.144177,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.089509,0.15,4,0.865063,0.865063,0.865063,0.865063,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,,,,,,,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.285471,0.285471,0.285471,0.285471,0.285471,0.285471,0.285471,0.285471,0.145619,0.145619,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.865063,0.285471,0.285471,10,10,, +26437,0,0.234139,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.017264,0.15,4,1.404834,1.404834,1.404834,1.404834,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,,,,,,,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,0.463595,0.463595,0.463595,0.463595,0.463595,0.463595,0.463595,0.463595,0.23648,0.23648,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,1.404834,0.463595,0.463595,10,10,, +30043,0,0.271575,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.819466,0.15,4,1.62945,1.62945,1.62945,1.62945,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,,,,,,,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,0.537719,0.537719,0.537719,0.537719,0.537719,0.537719,0.537719,0.537719,0.274291,0.274291,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,1.62945,0.537719,0.537719,10,10,, +9809,0,0.077997,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.101,1.179,0,1.671364,5,5,0.133709,0.133709,0.133709,0.133709,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.202019,0.139347,0.133709,0.133709,0.202019,0.139347,0.151617,0.145523,0.133709,0.133709,0.151617,0.145523,0.166835,0.226299,0.133709,0.133709,0.166835,0.226299,0.133709,0.133709,0.133709,0.133709,0.133709,0.133709,,,,,,,0.202019,0.139347,0.151617,0.145523,0.166835,0.226299,0.133709,0.133709,0.133709,0.133709,0.074645,0.055843,0.059525,0.057696,0.06409,0.081929,0.054152,0.054152,0.028636,0.028636,23.16523,33.58401,30.865966,32.158654,28.050521,20.679839,35,35,35,35,,,,,,,,,,,4162,4162,0.133709,0.133709,0.133709,0.133709,0.133709,0.133709,0.133709,0.133709,0.054152,0.054152,35,35,, +26436,0,0.178334,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.821439,0.15,4,1.070003,1.070003,1.070003,1.070003,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,,,,,,,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,0.353101,0.353101,0.353101,0.353101,0.353101,0.353101,0.353101,0.353101,0.180117,0.180117,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,1.070003,0.353101,0.353101,10,10,, +9762,0,0.057032,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.335,1.392,0,1.222113,5,5,0.097769,0.097769,0.097769,0.097769,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.159544,0.103349,0.097769,0.097769,0.159544,0.103349,0.115916,0.110668,0.097769,0.097769,0.115916,0.110668,0.130928,0.173111,0.097769,0.097769,0.130928,0.173111,0.097769,0.097769,0.097769,0.097769,0.097769,0.097769,,,,,,,0.159544,0.103349,0.115916,0.110668,0.130928,0.173111,0.097769,0.097769,0.097769,0.097769,0.058129,0.04127,0.045041,0.043466,0.049544,0.062199,0.039596,0.039596,0.020939,0.020939,21.448119,33.110281,29.520605,30.920441,26.13587,19.767151,35,35,35,35,,,,,,,,,,,4162,4162,0.097769,0.097769,0.097769,0.097769,0.097769,0.097769,0.097769,0.097769,0.039596,0.039596,35,35,, +10647,0,0.142304,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.732,0.874,0,3.049369,8,4.5,0.341529,0.341529,0.341529,0.341529,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.504051,0.345959,0.341529,0.341529,0.504051,0.345959,0.355219,0.361403,0.341529,0.341529,0.355219,0.361403,0.411401,0.584027,0.341529,0.341529,0.411401,0.584027,0.341529,0.341529,0.341529,0.341529,0.341529,0.341529,,,,,,,0.504051,0.345959,0.355219,0.361403,0.411401,0.584027,0.341529,0.341529,0.341529,0.341529,0.17683,0.129402,0.132181,0.134036,0.149035,0.200823,0.128073,0.128073,0.066883,0.066883,16.939215,24.679925,24.036507,23.625212,20.754041,14.619573,25,25,25,25,,,,,,,,,,,2408,2408,0.341529,0.341529,0.341529,0.341529,0.341529,0.341529,0.341529,0.341529,0.128073,0.128073,25,25,, +9563,0,0.122605,1,1,0,2,4,,3,5,7th,St,1430205,1.228,1.35,0,2.627248,6,4.5,0.222918,0.222918,0.222918,0.222918,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.584855,0.327761,0.222918,0.222918,0.584855,0.327761,0.344104,0.347603,0.222918,0.222918,0.344104,0.347603,0.461077,0.714073,0.222918,0.222918,0.461077,0.714073,0.222918,0.222918,0.222918,0.222918,0.222918,0.222918,,,,,,,0.584855,0.327761,0.344104,0.347603,0.461077,0.714073,0.222918,0.222918,0.222918,0.222918,0.197526,0.120397,0.1253,0.12635,0.160392,0.236291,0.088944,0.088944,0.046924,0.046924,12.577973,22.444112,21.378134,21.162951,15.954581,10.301882,33,33,33,33,,,,,,,,,,,2580,2580,0.222918,0.222918,0.222918,0.222918,0.222918,0.222918,0.222918,0.222918,0.088944,0.088944,33,33,, +10645,0,0.244822,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.935,1.18,0,5.246176,8,4.5,0.587572,0.587572,0.587572,0.587572,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.100833,0.602439,0.587572,0.587572,1.100833,0.602439,0.659822,0.666906,0.587572,0.587572,0.659822,0.666906,0.77455,1.187695,0.587572,0.587572,0.77455,1.187695,0.587572,0.587572,0.587572,0.587572,0.587572,0.587572,,,,,,,1.100833,0.602439,0.659822,0.666906,0.77455,1.187695,0.587572,0.587572,0.587572,0.587572,0.374318,0.2248,0.242014,0.24414,0.276433,0.400376,0.220339,0.220339,0.115066,0.115066,13.343794,24.383046,22.262524,22.026046,18.96493,12.367901,25,25,25,25,,,,,,,,,,,2408,2408,0.587572,0.587572,0.587572,0.587572,0.587572,0.587572,0.587572,0.587572,0.220339,0.220339,25,25,, +9516,0,0.179843,1,1,0,2,4,,3,5,7th,St,1430205,1.048,1.228,0,3.853784,6,4.5,0.326988,0.326988,0.326988,0.326988,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.764831,0.513328,0.326988,0.326988,0.764831,0.513328,0.504749,0.509881,0.326988,0.326988,0.504749,0.509881,0.676332,0.902183,0.326988,0.326988,0.676332,0.902183,0.326988,0.326988,0.326988,0.326988,0.326988,0.326988,,,,,,,0.764831,0.513328,0.504749,0.509881,0.676332,0.902183,0.326988,0.326988,0.326988,0.326988,0.261821,0.18637,0.183797,0.185336,0.235271,0.303027,0.130468,0.130468,0.068831,0.068831,14.108471,21.020862,21.378134,21.162951,15.954581,11.960533,33,33,33,33,,,,,,,,,,,2580,2580,0.326988,0.326988,0.326988,0.326988,0.326988,0.326988,0.326988,0.326988,0.130468,0.130468,33,33,, +10336,0,0.136896,1,1,0,2,4,,3,5,7th,St,1430205,1.35,1.487,0,2.933476,6,4.5,0.248901,0.248901,0.248901,0.248901,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.501233,0.317061,0.248901,0.248901,0.501233,0.317061,0.330316,0.356814,0.248901,0.248901,0.330316,0.356814,0.39521,0.61763,0.248901,0.248901,0.39521,0.61763,0.248901,0.248901,0.248901,0.248901,0.248901,0.248901,,,,,,,0.501233,0.317061,0.330316,0.356814,0.39521,0.61763,0.248901,0.248901,0.248901,0.248901,0.175011,0.119759,0.123736,0.131685,0.143204,0.20993,0.099311,0.099311,0.052394,0.052394,16.387052,25.905876,24.866298,23.019645,20.783202,13.298796,33,33,33,33,,,,,,,,,,,2580,2580,0.248901,0.248901,0.248901,0.248901,0.248901,0.248901,0.248901,0.248901,0.099311,0.099311,33,33,, +9522,1,0.581178,2,0,0,1,1,,3,5,E I 94,,1426109,17.469,18.05,0,,0.58,7,0.536472,,0.536472,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.537157,,0.536472,,0.537157,,0.536485,,0.536472,,0.536485,,0.536687,,0.536472,,0.536687,,0.536472,,0.536472,,0.536472,,,,,,,,0.537157,,0.536485,,0.536687,,0.536472,,0.536472,,0.265759,,0.265558,,0.265618,,0.265554,,0.1444,,64.917165,,64.998433,,64.973959,,65,,65,,,,,,,,,,,,15136,,0.536472,,0.536472,,0.536472,,0.536472,,0.265554,,65,,, +10194,1,0.141507,1,0,0,1,1,RON,3,5,I 94 BL/E I 94,RAMP,1426707,0,0.142,0,,1.09,4,0.21226,,0.21226,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.244031,,0.21226,,0.244031,,0.220857,,0.21226,,0.220857,,0.29116,,0.21226,,0.29116,,0.21226,,0.21226,,0.21226,,,,,,,,0.244031,,0.220857,,0.29116,,0.21226,,0.21226,,0.09868,,0.091728,,0.112819,,0.089149,,0.047405,,34.792334,,38.443021,,29.160546,,40,,40,,,,,,,,,,,,5074,,0.21226,,0.21226,,0.21226,,0.21226,,0.089149,,40,,, +10350,1,1.000495,2,0,0,1,2,,3,5,E M 14,,1426704,1.139,2.139,0,,0.58,7,0.923534,,0.923534,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.923932,,0.923534,,0.923932,,0.923576,,0.923534,,0.923576,,0.923992,,0.923534,,0.923992,,0.923534,,0.923534,,0.923534,,,,,,,,0.923932,,0.923576,,0.923992,,0.923534,,0.923534,,0.457269,,0.457162,,0.457287,,0.457149,,0.248585,,64.97199,,64.997046,,64.967782,,65,,65,,,,,,,,,,,,15136,,0.923534,,0.923534,,0.923534,,0.923534,,0.457149,,65,,, +10354,-1,1.318762,0,2,0,1,1,,4,5,W I 94,,1426110,16.743,18.062,0,,0.8,7.5,,1.130367,,1.130367,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.134597,,1.130367,,1.134597,,1.132,,1.130367,,1.132,,1.16498,,1.130367,,1.16498,,1.130367,,1.130367,,1.130367,,,,,,,,1.134597,,1.132,,1.16498,,1.130367,,1.130367,,0.577756,,0.576977,,0.586871,,0.576487,,0.314619,,69.739022,,69.899045,,67.920228,,70,,70,,,,,,,,,,,,15136,,1.130367,,1.130367,,1.130367,,1.130367,,0.576487,,70,, +10435,-1,0.930263,0,2,0,1,2,,3,5,W M 14,,1427103,1.119,2.049,0,,0.58,7,,0.858705,,0.858705,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.858938,,0.858705,,0.858938,,0.858734,,0.858705,,0.858734,,0.859289,,0.858705,,0.859289,,0.858705,,0.858705,,0.858705,,,,,,,,0.858938,,0.858734,,0.859289,,0.858705,,0.858705,,0.425129,,0.425068,,0.425234,,0.425059,,0.231135,,64.982373,,64.997756,,64.955801,,65,,65,,,,,,,,,,,,15136,,0.858705,,0.858705,,0.858705,,0.858705,,0.425059,,65,, +10542,0,0.727933,1,1,0,2,5,,4,5,Newport,Rd,1430907,0.669,1.397,0,15.598562,5.8,4.5,1.617629,1.617629,1.617629,1.617629,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.621464,1.78192,1.617629,1.617629,1.621464,1.78192,1.618484,1.620785,1.617629,1.617629,1.618484,1.620785,1.6984,1.627188,1.617629,1.617629,1.6984,1.627188,1.617629,1.617629,1.617629,1.617629,1.617629,1.617629,,,,,,,1.621464,1.78192,1.618484,1.620785,1.6984,1.627188,1.617629,1.617629,1.617629,1.617629,0.617467,0.665604,0.616573,0.617263,0.640548,0.619184,0.616316,0.616316,0.322717,0.322717,26.936137,24.510619,26.985728,26.947417,25.715952,26.841373,27,27,27,27,,,,,,,,,,,2580,2580,1.617629,1.617629,1.617629,1.617629,1.617629,1.617629,1.617629,1.617629,0.616316,0.616316,27,27,, +10559,0,0.254839,1,1,0,2,4,,3,5,Miller,Rd,1430906,2.934,3.189,0,5.460844,6,4.5,0.463344,0.463344,0.463344,0.463344,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.134683,0.471399,0.463344,0.463344,1.134683,0.471399,0.518022,0.495964,0.463344,0.463344,0.518022,0.495964,0.753202,0.674328,0.463344,0.463344,0.753202,0.674328,0.463344,0.463344,0.463344,0.463344,0.463344,0.463344,,,,,,,1.134683,0.471399,0.518022,0.495964,0.753202,0.674328,0.463344,0.463344,0.463344,0.463344,0.386276,0.187291,0.201278,0.19466,0.271832,0.24817,0.184874,0.184874,0.097534,0.097534,13.475451,32.436164,29.516833,30.829589,20.300481,22.67496,33,33,33,33,,,,,,,,,,,2580,2580,0.463344,0.463344,0.463344,0.463344,0.463344,0.463344,0.463344,0.463344,0.184874,0.184874,33,33,, +10561,0,0.488559,1,1,0,2,4,,4,5,Miller,Rd,1430906,2.229,2.718,0,10.469113,4.5,4.5,0.771408,0.771408,0.771408,0.771408,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.887199,0.823431,0.771408,0.771408,0.887199,0.823431,0.791766,0.821917,0.771408,0.771408,0.791766,0.821917,0.810708,1.080535,0.771408,0.771408,0.810708,1.080535,0.771408,0.771408,0.771408,0.771408,0.771408,0.771408,,,,,,,0.887199,0.823431,0.791766,0.821917,0.810708,1.080535,0.771408,0.771408,0.771408,0.771408,0.3541,0.33497,0.32547,0.334516,0.331153,0.412101,0.319363,0.319363,0.169453,0.169453,33.040528,35.599246,37.02294,35.664791,36.157909,27.12871,38,38,38,38,,,,,,,,,,,3096,3096,0.771408,0.771408,0.771408,0.771408,0.771408,0.771408,0.771408,0.771408,0.319363,0.319363,38,38,, +10566,1,0.35179,1,0,0,1,2,ROF,3,5,E M 14/Miller,RAMP,1430901,0,0.352,0,,2.24,5,0.603069,,0.603069,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.604471,,0.603069,,0.604471,,0.603282,,0.603069,,0.603282,,0.60493,,0.603069,,0.60493,,0.603069,,0.603069,,0.603069,,,,,,,,0.604471,,0.603282,,0.60493,,0.603069,,0.603069,,0.244664,,0.244307,,0.244801,,0.244243,,0.129157,,34.918822,,34.98766,,34.892347,,35,,35,,,,,,,,,,,,5074,,0.603069,,0.603069,,0.603069,,0.603069,,0.244243,,35,,, +10724,0,0.387834,1,1,0,2,4,,4,5,Wagner,Rd,1433102,15.643,16.031,0,8.310723,4.5,4.5,0.612369,0.612369,0.612369,0.612369,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.614253,0.670815,0.612369,0.612369,0.614253,0.670815,0.613497,0.622276,0.612369,0.612369,0.613497,0.622276,0.646826,0.646422,0.612369,0.612369,0.646826,0.646422,0.612369,0.612369,0.612369,0.612369,0.612369,0.612369,,,,,,,0.614253,0.670815,0.613497,0.622276,0.646826,0.646422,0.612369,0.612369,0.612369,0.612369,0.254086,0.271054,0.253859,0.256493,0.263858,0.263737,0.253521,0.253521,0.134517,0.134517,37.883424,34.689205,37.930137,37.395034,35.975735,35.998191,38,38,38,38,,,,,,,,,,,3096,3096,0.612369,0.612369,0.612369,0.612369,0.612369,0.612369,0.612369,0.612369,0.253521,0.253521,38,38,, +11058,0,0.387591,1,1,0,2,4,,3,5,Dexter,Rd,1446002,6.996,7.384,0,8.305513,6,4.5,0.70471,0.70471,0.70471,0.70471,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.627788,0.733009,0.70471,0.70471,1.627788,0.733009,0.887713,0.784336,0.70471,0.70471,0.887713,0.784336,1.041006,1.510701,0.70471,0.70471,1.041006,1.510701,0.70471,0.70471,0.70471,0.70471,0.70471,0.70471,,,,,,,1.627788,0.733009,0.887713,0.784336,1.041006,1.510701,0.70471,0.70471,0.70471,0.70471,0.558103,0.289669,0.33608,0.305067,0.382068,0.522977,0.281179,0.281179,0.148341,0.148341,14.286526,31.725972,26.197035,29.649828,22.339383,15.393802,33,33,33,33,,,,,,,,,,,2580,2580,0.70471,0.70471,0.70471,0.70471,0.70471,0.70471,0.70471,0.70471,0.281179,0.281179,33,33,, +37353,-1,0.44018,0,1,0,1,2,ROF,3,5,W M 14/Miller/Maple,RAMP,1431903,0,0.44,0,,2.24,5,,0.754595,,0.754595,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.75672,,0.754595,,0.75672,,0.754825,,0.754595,,0.754825,,0.764004,,0.754595,,0.764004,,0.754595,,0.754595,,0.754595,,,,,,,,0.75672,,0.754825,,0.764004,,0.754595,,0.754595,,0.306249,,0.30568,,0.308434,,0.305611,,0.161609,,34.901699,,34.989335,,34.568945,,35,,35,,,,,,,,,,,,5074,,0.754595,,0.754595,,0.754595,,0.754595,,0.305611,,35,, +37347,1,0.316111,1,0,0,1,2,ROF,3,5,E M 14/Miller/Maple,RAMP,1446110,0,0.316,0,,2.24,5,0.541904,,0.541904,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.545326,,0.541904,,0.545326,,0.542106,,0.541904,,0.542106,,0.54318,,0.541904,,0.54318,,0.541904,,0.541904,,0.541904,,,,,,,,0.545326,,0.542106,,0.54318,,0.541904,,0.541904,,0.220498,,0.219532,,0.219854,,0.219471,,0.116058,,34.780395,,34.986968,,34.917797,,35,,35,,,,,,,,,,,,5074,,0.541904,,0.541904,,0.541904,,0.541904,,0.219471,,35,,, +21479,0,0.345122,1,1,0,2,4,,3,5,Liberty,Rd,4603025,5.637,5.982,0,7.395467,6,4.5,0.627494,0.627494,0.627494,0.627494,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.38388,0.699795,0.627494,0.627494,1.38388,0.699795,0.732803,0.742601,0.627494,0.627494,0.732803,0.742601,0.90855,1.647451,0.627494,0.627494,0.90855,1.647451,0.627494,0.627494,0.627494,0.627494,0.627494,0.627494,,,,,,,1.38388,0.699795,0.732803,0.742601,0.90855,1.647451,0.627494,0.627494,0.627494,0.627494,0.477286,0.272061,0.281963,0.284902,0.334687,0.556357,0.25037,0.25037,0.132088,0.132088,14.963228,29.590522,28.257661,27.884823,22.791599,12.569301,33,33,33,33,,,,,,,,,,,2580,2580,0.627494,0.627494,0.627494,0.627494,0.627494,0.627494,0.627494,0.627494,0.25037,0.25037,33,33,, +21802,0,0.228762,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.21,0.439,0,4.902048,5,5,0.392164,0.392164,0.392164,0.392164,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.668065,0.503439,0.392164,0.392164,0.668065,0.503439,0.486875,0.432766,0.392164,0.392164,0.486875,0.432766,0.524572,0.665779,0.392164,0.392164,0.524572,0.665779,0.392164,0.392164,0.392164,0.392164,0.392164,0.392164,,,,,,,0.668065,0.503439,0.486875,0.432766,0.524572,0.665779,0.392164,0.392164,0.392164,0.392164,0.241597,0.192209,0.18724,0.171007,0.198549,0.240911,0.158826,0.158826,0.083988,0.083988,20.545497,27.263927,28.191515,31.716287,26.1656,20.616058,35,35,35,35,,,,,,,,,,,7568,7568,0.392164,0.392164,0.392164,0.392164,0.392164,0.392164,0.392164,0.392164,0.158826,0.158826,35,35,, +21860,0,1.0704,1,1,0,2,5,,4,5,Huron River,Dr,4604062,5.644,6.714,0,22.937151,5.8,4.5,2.378667,2.378667,2.378667,2.378667,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.461502,2.37887,2.378667,2.378667,2.461502,2.37887,2.378953,2.37888,2.378667,2.378667,2.378953,2.37888,2.381232,2.399618,2.378667,2.378667,2.381232,2.399618,2.378667,2.378667,2.378667,2.378667,2.378667,2.378667,,,,,,,2.461502,2.37887,2.378953,2.37888,2.381232,2.399618,2.378667,2.378667,2.378667,2.378667,0.931123,0.906333,0.906358,0.906336,0.907042,0.912557,0.906272,0.906272,0.474544,0.474544,26.091397,26.997706,26.996761,26.997585,26.970926,26.76427,27,27,27,27,,,,,,,,,,,2580,2580,2.378667,2.378667,2.378667,2.378667,2.378667,2.378667,2.378667,2.378667,0.906272,0.906272,27,27,, +26015,0,0.701637,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.035087,0.15,4,2.80655,2.80655,2.80655,2.80655,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,,,,,,,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,0.96826,0.96826,0.96826,0.96826,0.96826,0.96826,0.96826,0.96826,0.498163,0.498163,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,2.80655,0.96826,0.96826,15,15,, +26288,0,0.457082,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.794611,0.15,4,1.828327,1.828327,1.828327,1.828327,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,,,,,,,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,0.630773,0.630773,0.630773,0.630773,0.630773,0.630773,0.630773,0.630773,0.324528,0.324528,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,1.828327,0.630773,0.630773,15,15,, +26445,0,0.396723,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.501215,0.15,4,2.38034,2.38034,2.38034,2.38034,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,,,,,,,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,0.785512,0.785512,0.785512,0.785512,0.785512,0.785512,0.785512,0.785512,0.400691,0.400691,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,2.38034,0.785512,0.785512,10,10,, +26449,0,0.473532,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.147117,0.15,4,1.894129,1.894129,1.894129,1.894129,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,,,,,,,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,0.653474,0.653474,0.653474,0.653474,0.653474,0.653474,0.653474,0.653474,0.336208,0.336208,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,1.894129,0.653474,0.653474,15,15,, +29983,0,0.4005,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.582145,0.15,4,2.403001,2.403001,2.403001,2.403001,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,,,,,,,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,0.79299,0.79299,0.79299,0.79299,0.79299,0.79299,0.79299,0.79299,0.404505,0.404505,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,2.403001,0.79299,0.79299,10,10,, +9472,1,1.138982,2,0,0,1,2,,4,5,E M 14,,1426704,0,1.139,0,,0.8,7.5,0.97627,,0.97627,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.977985,,0.97627,,0.977985,,0.976412,,0.97627,,0.976412,,0.978372,,0.97627,,0.978372,,0.97627,,0.97627,,0.97627,,,,,,,,0.977985,,0.976412,,0.978372,,0.97627,,0.97627,,0.498412,,0.49794,,0.498528,,0.497898,,0.271728,,69.877267,,69.989795,,69.849624,,70,,70,,,,,,,,,,,,15136,,0.97627,,0.97627,,0.97627,,0.97627,,0.497898,,70,,, +9537,1,0.66129,2,0,0,1,1,,4,5,E I 94,,1426109,16.808,17.469,0,,0.8,7.5,0.56682,,0.56682,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.595077,,0.56682,,0.595077,,0.567529,,0.56682,,0.567529,,0.573092,,0.56682,,0.573092,,0.56682,,0.56682,,0.56682,,,,,,,,0.595077,,0.567529,,0.573092,,0.56682,,0.56682,,0.297555,,0.289291,,0.29096,,0.289078,,0.157765,,66.676093,,69.912579,,69.233922,,70,,70,,,,,,,,,,,,15136,,0.56682,,0.56682,,0.56682,,0.56682,,0.289078,,70,,, +9598,1,0.715736,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,17.522,18.237,0,15.337205,3.7,5,0.954315,,0.954315,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.957249,,0.954315,,0.957249,,0.961704,,0.954315,,0.961704,,0.972938,,0.954315,,0.972938,,0.954315,,0.954315,,0.954315,,,,,,,,0.957249,,0.961704,,0.972938,,0.954315,,0.954315,,0.416007,,0.417344,,0.420714,,0.415127,,0.221878,,44.862054,,44.65425,,44.138675,,45,,45,,,,,,,,,,,,7568,,0.954315,,0.954315,,0.954315,,0.954315,,0.415127,,45,,, +10163,-1,1.119382,0,2,0,1,2,,3,5,W M 14,,1427103,0,1.119,0,,0.58,7,,1.033276,,1.033276,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.033804,,1.033276,,1.033804,,1.03336,,1.033276,,1.03336,,1.035603,,1.033276,,1.035603,,1.033276,,1.033276,,1.033276,,,,,,,,1.033804,,1.03336,,1.035603,,1.033276,,1.033276,,0.51163,,0.511497,,0.51217,,0.511472,,0.278123,,64.966771,,64.994729,,64.85392,,65,,65,,,,,,,,,,,,15136,,1.033276,,1.033276,,1.033276,,1.033276,,0.511472,,65,, +10731,0,0.419583,1,1,0,2,4,,3,5,Wagner,Rd,1433102,14.631,15.051,0,8.991056,6,4.5,0.762877,0.762877,0.762877,0.762877,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.821811,1.662601,0.762877,0.762877,0.821811,1.662601,0.798409,0.891085,0.762877,0.762877,0.798409,0.891085,1.606753,1.478376,0.762877,0.762877,1.606753,1.478376,0.762877,0.762877,0.762877,0.762877,0.762877,0.762877,,,,,,,0.821811,1.662601,0.798409,0.891085,1.606753,1.478376,0.762877,0.762877,0.762877,0.762877,0.322068,0.574305,0.315048,0.34285,0.557551,0.519038,0.304388,0.304388,0.160586,0.160586,30.633524,15.141908,31.531389,28.252019,15.668221,17.028787,33,33,33,33,,,,,,,,,,,2580,2580,0.762877,0.762877,0.762877,0.762877,0.762877,0.762877,0.762877,0.762877,0.304388,0.304388,33,33,, +11064,0,0.580921,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,5.84,6.421,0,12.448312,4.5,4.5,0.917244,0.917244,0.917244,0.917244,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.1081,0.940234,0.917244,0.917244,1.1081,0.940234,0.969761,0.948491,0.917244,0.917244,0.969761,0.948491,1.030226,1.070968,0.917244,0.917244,1.030226,1.070968,0.917244,0.917244,0.917244,0.917244,0.917244,0.917244,,,,,,,1.1081,0.940234,0.969761,0.948491,1.030226,1.070968,0.917244,0.917244,0.917244,0.917244,0.436996,0.386636,0.395494,0.389113,0.413634,0.425856,0.379739,0.379739,0.201488,0.201488,31.454994,37.070851,35.942129,36.748117,33.832637,32.545593,38,38,38,38,,,,,,,,,,,3096,3096,0.917244,0.917244,0.917244,0.917244,0.917244,0.917244,0.917244,0.917244,0.379739,0.379739,38,38,, +22073,-1,1.021214,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,3.301,4.322,0,21.883155,3.7,5,,1.361619,,1.361619,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.376637,,1.361619,,1.376637,,1.376034,,1.361619,,1.376034,,1.393356,,1.361619,,1.393356,,1.361619,,1.361619,,1.361619,,,,,,,,1.376637,,1.376034,,1.393356,,1.361619,,1.361619,,0.59681,,0.596629,,0.601825,,0.592304,,0.316576,,44.509064,,44.528586,,43.975006,,45,,45,,,,,,,,,,,,7568,,1.361619,,1.361619,,1.361619,,1.361619,,0.592304,,45,, +26014,0,0.647759,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.880554,0.15,4,2.591037,2.591037,2.591037,2.591037,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,,,,,,,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,0.893908,0.893908,0.893908,0.893908,0.893908,0.893908,0.893908,0.893908,0.459909,0.459909,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,2.591037,0.893908,0.893908,15,15,, +26420,0,0.985265,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.112813,0.15,4,3.941058,3.941058,3.941058,3.941058,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,,,,,,,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,1.359665,1.359665,1.359665,1.359665,1.359665,1.359665,1.359665,1.359665,0.699538,0.699538,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,3.941058,1.359665,1.359665,15,15,, +26421,0,0.230548,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.940306,0.15,4,0.92219,0.92219,0.92219,0.92219,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.92219,0.922191,0.92219,0.92219,0.92219,0.922191,0.92219,0.922191,0.92219,0.92219,0.92219,0.922191,0.922191,0.922191,0.92219,0.92219,0.922191,0.922191,0.92219,0.92219,0.92219,0.92219,0.92219,0.92219,,,,,,,0.92219,0.922191,0.92219,0.922191,0.922191,0.922191,0.92219,0.92219,0.92219,0.92219,0.318156,0.318156,0.318156,0.318156,0.318156,0.318156,0.318156,0.318156,0.163689,0.163689,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,0.92219,0.92219,0.92219,0.92219,0.92219,0.92219,0.92219,0.92219,0.318156,0.318156,15,15,, +26422,0,0.187098,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.009233,0.15,4,0.74839,0.74839,0.74839,0.74839,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,,,,,,,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.258195,0.258195,0.258195,0.258195,0.258195,0.258195,0.258195,0.258195,0.132839,0.132839,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.74839,0.258195,0.258195,15,15,, +26417,0,0.623367,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.357862,0.15,4,2.493468,2.493468,2.493468,2.493468,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,,,,,,,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,0.860246,0.860246,0.860246,0.860246,0.860246,0.860246,0.860246,0.860246,0.44259,0.44259,15,14.999999,15,14.999999,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,2.493468,0.860246,0.860246,15,15,, +29877,0,0.613861,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.154172,0.15,4,2.455446,2.455446,2.455446,2.455446,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,,,,,,,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,0.847129,0.847129,0.847129,0.847129,0.847129,0.847129,0.847129,0.847129,0.435842,0.435842,14.999999,14.999999,14.999998,15,14.999998,15,15,15,15,15,,,,,,,,,,,34400,34400,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,2.455446,0.847129,0.847129,15,15,, +26017,0,0.635106,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.609408,0.15,4,2.540423,2.540423,2.540423,2.540423,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,,,,,,,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,0.876446,0.876446,0.876446,0.876446,0.876446,0.876446,0.876446,0.876446,0.450925,0.450925,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,2.540423,0.876446,0.876446,15,15,, +9588,1,0.399998,2,0,0,2,3,DIV,3,5,Jackson,Ave,1426508,18.237,18.637,0,8.571389,5,5,0.599997,,0.599997,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.619568,,0.599997,,0.619568,,0.609676,,0.599997,,0.609676,,0.642478,,0.599997,,0.642478,,0.599997,,0.599997,,0.599997,,,,,,,,0.619568,,0.609676,,0.642478,,0.599997,,0.599997,,0.25787,,0.254903,,0.264743,,0.251999,,0.133999,,38.73646,,39.364958,,37.355194,,40,,40,,,,,,,,,,,,6880,,0.599997,,0.599997,,0.599997,,0.599997,,0.251999,,40,,, +10348,1,0.347089,2,0,0,1,1,ROF,3,5,E I 94/I 94 BL,RAMP,1426706,0,0.347,0,,2.24,5,0.59501,,0.59501,,35,,29500,,6697,,14750,,9517,,10148,,10136,,0.610055,,0.59501,,0.610055,,0.597194,,0.59501,,0.597194,,0.599172,,0.59501,,0.599172,,0.59501,,0.59501,,0.59501,,,,,,,,0.610055,,0.597194,,0.599172,,0.59501,,0.59501,,0.245492,,0.241634,,0.242228,,0.240979,,0.127431,,34.136838,,34.872004,,34.756864,,35,,35,,,,,,,,,,,,10148,,0.59501,,0.59501,,0.59501,,0.59501,,0.240979,,35,,, +10736,0,0.203851,1,1,1,2,4,,3,5,Wagner,Rd,1433102,14.175,14.379,0,4.368226,6,4.5,0.370637,0.370637,0.370637,0.370637,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.38176,0.388244,0.370637,0.370637,0.38176,0.388244,0.372051,0.372911,0.370637,0.370637,0.372051,0.372911,0.397748,0.40493,0.370637,0.370637,0.397748,0.40493,0.370637,0.370637,0.370637,0.370637,0.370637,0.370637,,,,,,,0.38176,0.388244,0.372051,0.372911,0.397748,0.40493,0.370637,0.370637,0.370637,0.370637,0.151221,0.153166,0.148308,0.148566,0.156018,0.158172,0.147884,0.147884,0.078019,0.078019,32.038578,31.503501,32.874653,32.798797,30.750708,30.205314,33,33,33,33,,,,,,,,,,,2838,2838,0.370637,0.370637,0.370637,0.370637,0.370637,0.370637,0.370637,0.370637,0.147884,0.147884,33,33,, +21805,-1,0.528134,0,2,0,2,3,DIV,3,5,Jackson,Ave,5490574,4.322,4.85,0,11.317159,5,5,,0.792201,,0.792201,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.804556,,0.792201,,0.804556,,0.799888,,0.792201,,0.799888,,0.844739,,0.792201,,0.844739,,0.792201,,0.792201,,0.792201,,,,,,,,0.804556,,0.799888,,0.844739,,0.792201,,0.792201,,0.336431,,0.335031,,0.348486,,0.332724,,0.176925,,39.385753,,39.615607,,37.512213,,40,,40,,,,,,,,,,,,6880,,0.792201,,0.792201,,0.792201,,0.792201,,0.332724,,40,, +21944,0,0.482633,1,1,0,2,4,,3,5,Liberty,Rd,4603025,5.072,5.554,0,10.342126,6,4.5,0.877514,0.877514,0.877514,0.877514,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.89997,0.882908,0.877514,0.877514,0.89997,0.882908,0.883072,0.88463,0.877514,0.877514,0.883072,0.88463,0.89295,0.919907,0.877514,0.877514,0.89295,0.919907,0.877514,0.877514,0.877514,0.877514,0.877514,0.877514,,,,,,,0.89997,0.882908,0.883072,0.88463,0.89295,0.919907,0.877514,0.877514,0.877514,0.877514,0.356865,0.351746,0.351796,0.352263,0.354759,0.362846,0.350128,0.350128,0.184717,0.184717,32.176577,32.798382,32.792282,32.734538,32.429526,31.479203,33,33,33,33,,,,,,,,,,,2580,2580,0.877514,0.877514,0.877514,0.877514,0.877514,0.877514,0.877514,0.877514,0.350128,0.350128,33,33,, +26438,0,0.346071,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.415801,0.15,4,2.076424,2.076424,2.076424,2.076424,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,,,,,,,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,0.68522,0.68522,0.68522,0.68522,0.68522,0.68522,0.68522,0.68522,0.349531,0.349531,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,2.076424,0.68522,0.68522,10,10,, +26439,0,0.428807,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.188717,0.15,4,2.572841,2.572841,2.572841,2.572841,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,,,,,,,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,0.849037,0.849037,0.849037,0.849037,0.849037,0.849037,0.849037,0.849037,0.433095,0.433095,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,2.572841,0.849037,0.849037,10,10,, +29878,0,0.371258,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.955525,0.15,4,2.227547,2.227547,2.227547,2.227547,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,,,,,,,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,0.735091,0.735091,0.735091,0.735091,0.735091,0.735091,0.735091,0.735091,0.37497,0.37497,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,2.227547,0.735091,0.735091,10,10,, +10745,0,0.394114,1,1,1,2,4,,3,5,Wagner,Rd,1433102,13.781,14.175,0,8.44531,6,4.5,0.716572,0.716572,0.716572,0.716572,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.825623,0.763686,0.716572,0.716572,0.825623,0.763686,0.737772,0.725148,0.716572,0.716572,0.737772,0.725148,0.883075,0.863599,0.716572,0.716572,0.883075,0.863599,0.716572,0.716572,0.716572,0.716572,0.716572,0.716572,,,,,,,0.825623,0.763686,0.737772,0.725148,0.883075,0.863599,0.716572,0.716572,0.716572,0.716572,0.318627,0.300047,0.292272,0.288485,0.335863,0.33002,0.285912,0.285912,0.150838,0.150838,28.641258,30.964108,32.051732,32.609701,26.77786,27.381774,33,33,33,33,,,,,,,,,,,2838,2838,0.716572,0.716572,0.716572,0.716572,0.716572,0.716572,0.716572,0.716572,0.285912,0.285912,33,33,, +10733,0,0.233949,1,1,1,2,4,,3,5,Wagner,Rd,1433102,14.379,14.613,0,5.013184,6,4.5,0.425361,0.425361,0.425361,0.425361,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.449784,0.443773,0.425361,0.425361,0.449784,0.443773,0.428939,0.427616,0.425361,0.425361,0.428939,0.427616,0.497712,0.459463,0.425361,0.425361,0.497712,0.459463,0.425361,0.425361,0.425361,0.425361,0.425361,0.425361,,,,,,,0.449784,0.443773,0.428939,0.427616,0.497712,0.459463,0.425361,0.425361,0.425361,0.425361,0.177046,0.175243,0.170792,0.170396,0.191424,0.17995,0.169719,0.169719,0.089538,0.089538,31.208099,31.630864,32.724763,32.825976,28.20286,30.550721,33,33,33,33,,,,,,,,,,,2838,2838,0.425361,0.425361,0.425361,0.425361,0.425361,0.425361,0.425361,0.425361,0.169719,0.169719,33,33,, +10732,0,0.01824,1,1,1,2,4,,3,5,Wagner,Rd,1433102,14.613,14.631,0,0.390859,6,4.5,0.033164,0.033164,0.033164,0.033164,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.03527,0.050694,0.033164,0.033164,0.03527,0.050694,0.034031,0.033708,0.033164,0.033164,0.034031,0.033708,0.042802,0.045715,0.033164,0.033164,0.042802,0.045715,0.033164,0.033164,0.033164,0.033164,0.033164,0.033164,,,,,,,0.03527,0.050694,0.034031,0.033708,0.042802,0.045715,0.033164,0.033164,0.033164,0.033164,0.013864,0.018492,0.013493,0.013396,0.016124,0.016998,0.013232,0.013232,0.006981,0.006981,31.029457,21.588275,32.158638,32.466808,25.569078,23.939786,33,33,33,33,,,,,,,,,,,2838,2838,0.033164,0.033164,0.033164,0.033164,0.033164,0.033164,0.033164,0.033164,0.013232,0.013232,33,33,, +26440,0,0.425385,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.115391,0.15,4,2.552309,2.552309,2.552309,2.552309,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,,,,,,,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,0.842262,0.842262,0.842262,0.842262,0.842262,0.842262,0.842262,0.842262,0.429639,0.429639,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,2.552309,0.842262,0.842262,10,10,, +21693,0,0.082607,1,1,0,2,4,,3,5,Liberty,Rd,4603025,5.554,5.637,0,1.77016,6,4.5,0.150195,0.150195,0.150195,0.150195,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.277634,0.160169,0.150195,0.150195,0.277634,0.160169,0.165398,0.167594,0.150195,0.150195,0.165398,0.167594,0.193826,0.325174,0.150195,0.150195,0.193826,0.325174,0.150195,0.150195,0.150195,0.150195,0.150195,0.150195,,,,,,,0.277634,0.160169,0.165398,0.167594,0.193826,0.325174,0.150195,0.150195,0.150195,0.150195,0.09816,0.06292,0.064489,0.065147,0.073017,0.112422,0.059928,0.059928,0.031616,0.031616,17.852444,30.945133,29.966757,29.574218,25.571654,15.242444,33,33,33,33,,,,,,,,,,,2580,2580,0.150195,0.150195,0.150195,0.150195,0.150195,0.150195,0.150195,0.150195,0.059928,0.059928,33,33,, +21312,1,0.103879,4,0,0,2,3,DIV,3,5,Jackson,Ave,4604878,0.088,0.192,0,2.225975,5,5,0.155818,,0.155818,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.176191,,0.155818,,0.176191,,0.163135,,0.155818,,0.163135,,0.176268,,0.155818,,0.176268,,0.155818,,0.155818,,0.155818,,,,,,,,0.176191,,0.163135,,0.176268,,0.155818,,0.155818,,0.071555,,0.067639,,0.071579,,0.065444,,0.034799,,35.374902,,38.20592,,35.359313,,40,,40,,,,,,,,,,,,13760,,0.155818,,0.155818,,0.155818,,0.155818,,0.065444,,40,,, +21527,1,0.088333,4,0,0,2,3,DIV,3,5,Jackson,Ave,4604878,0,0.088,0,1.892856,5,5,0.1325,,0.1325,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.15002,,0.1325,,0.15002,,0.136689,,0.1325,,0.136689,,0.144196,,0.1325,,0.144196,,0.1325,,0.1325,,0.1325,,,,,,,,0.15002,,0.136689,,0.144196,,0.1325,,0.1325,,0.060906,,0.056907,,0.059159,,0.05565,,0.029592,,35.328536,,38.774149,,36.755507,,40,,40,,,,,,,,,,,,13760,,0.1325,,0.1325,,0.1325,,0.1325,,0.05565,,40,,, +21581,-1,0.107677,0,2,0,2,3,DIV,3,5,Jackson,Ave,5490574,4.85,4.958,0,2.30737,5,5,,0.161516,,0.161516,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.169054,,0.161516,,0.169054,,0.167039,,0.161516,,0.167039,,0.18737,,0.161516,,0.18737,,0.161516,,0.161516,,0.161516,,,,,,,,0.169054,,0.167039,,0.18737,,0.161516,,0.161516,,0.070098,,0.069494,,0.075593,,0.067837,,0.036072,,38.216318,,38.677352,,34.48072,,40,,40,,,,,,,,,,,,6880,,0.161516,,0.161516,,0.161516,,0.161516,,0.067837,,40,, +26442,0,0.124292,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.66339,0.15,4,0.745749,0.745749,0.745749,0.745749,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,,,,,,,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.246097,0.246097,0.246097,0.246097,0.246097,0.246097,0.246097,0.246097,0.125534,0.125534,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.745749,0.246097,0.246097,10,10,, +26443,0,0.115797,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.481357,0.15,4,0.69478,0.69478,0.69478,0.69478,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,,,,,,,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.229277,0.229277,0.229277,0.229277,0.229277,0.229277,0.229277,0.229277,0.116955,0.116955,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.69478,0.229277,0.229277,10,10,, +22070,0,0.018378,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.192,0.21,0,0.393817,5,5,0.031505,0.031505,0.031505,0.031505,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.113351,0.032418,0.031505,0.031505,0.113351,0.032418,0.060901,0.032174,0.031505,0.031505,0.060901,0.032174,0.113675,0.034637,0.031505,0.031505,0.113675,0.034637,0.031505,0.031505,0.031505,0.031505,0.031505,0.031505,,,,,,,0.113351,0.032418,0.060901,0.032174,0.113675,0.034637,0.031505,0.031505,0.031505,0.031505,0.037313,0.013034,0.021578,0.01296,0.037411,0.013699,0.01276,0.01276,0.006747,0.006747,9.728062,34.014252,18.106249,34.272276,9.700364,31.835431,35,35,35,35,,,,,,,,,,,7568,7568,0.031505,0.031505,0.031505,0.031505,0.031505,0.031505,0.031505,0.031505,0.01276,0.01276,35,35,, +10727,0,0.592628,1,1,0,2,4,,4,5,Wagner,Rd,1433102,15.051,15.643,0,12.699177,4.5,4.5,0.935729,0.935729,0.935729,0.935729,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.936281,1.047554,0.935729,0.935729,0.936281,1.047554,0.936148,0.941663,0.935729,0.935729,0.936148,0.941663,1.004416,0.973473,0.935729,0.935729,1.004416,0.973473,0.935729,0.935729,0.935729,0.935729,0.935729,0.935729,,,,,,,0.936281,1.047554,0.936148,0.941663,1.004416,0.973473,0.935729,0.935729,0.935729,0.935729,0.387557,0.420939,0.387517,0.389172,0.407998,0.398715,0.387392,0.387392,0.205548,0.205548,37.977581,33.943559,37.983003,37.76052,35.401351,36.526639,38,38,38,38,,,,,,,,,,,3096,3096,0.935729,0.935729,0.935729,0.935729,0.935729,0.935729,0.935729,0.935729,0.387392,0.387392,38,38,, +11277,0,0.575297,1,1,0,2,4,,3,5,Dexter,Rd,1446002,6.421,6.996,0,12.327788,6,4.5,1.045994,1.045994,1.045994,1.045994,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.645013,1.078927,1.045994,1.045994,1.645013,1.078927,1.100296,1.068557,1.045994,1.045994,1.100296,1.068557,1.281329,1.491079,1.045994,1.045994,1.281329,1.491079,1.045994,1.045994,1.045994,1.045994,1.045994,1.045994,,,,,,,1.645013,1.078927,1.100296,1.068557,1.281329,1.491079,1.045994,1.045994,1.045994,1.045994,0.597057,0.427232,0.433642,0.42412,0.487952,0.550877,0.417352,0.417352,0.220182,0.220182,20.983298,31.992716,31.371376,32.303207,26.939069,23.149547,33,33,33,33,,,,,,,,,,,2580,2580,1.045994,1.045994,1.045994,1.045994,1.045994,1.045994,1.045994,1.045994,0.417352,0.417352,33,33,, +26446,0,0.214316,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.592491,0.15,4,1.285897,1.285897,1.285897,1.285897,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.285898,1.285898,1.285897,1.285897,1.285898,1.285898,1.285898,1.285898,1.285897,1.285897,1.285898,1.285898,1.285898,1.285898,1.285897,1.285897,1.285898,1.285898,1.285897,1.285897,1.285897,1.285897,1.285897,1.285897,,,,,,,1.285898,1.285898,1.285898,1.285898,1.285898,1.285898,1.285897,1.285897,1.285897,1.285897,0.424346,0.424346,0.424346,0.424346,0.424346,0.424346,0.424346,0.424346,0.216459,0.216459,9.999999,10,10,10,9.999999,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.285897,1.285897,1.285897,1.285897,1.285897,1.285897,1.285897,1.285897,0.424346,0.424346,10,10,, +10560,0,0.216625,1,1,0,2,4,,4,5,Miller,Rd,1430906,2.718,2.934,0,4.641963,4.5,4.5,0.342039,0.342039,0.342039,0.342039,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.435417,0.377263,0.342039,0.342039,0.435417,0.377263,0.359266,0.383936,0.342039,0.342039,0.359266,0.383936,0.375626,0.528609,0.342039,0.342039,0.375626,0.528609,0.342039,0.342039,0.342039,0.342039,0.342039,0.342039,,,,,,,0.435417,0.377263,0.359266,0.383936,0.375626,0.528609,0.342039,0.342039,0.342039,0.342039,0.169618,0.152171,0.146772,0.154173,0.15168,0.197575,0.141604,0.141604,0.075135,0.075135,29.85068,34.452105,36.177966,33.853249,34.602247,24.588096,38,38,38,38,,,,,,,,,,,3096,3096,0.342039,0.342039,0.342039,0.342039,0.342039,0.342039,0.342039,0.342039,0.141604,0.141604,38,38,, +10567,1,0.294244,1,0,0,1,2,RON,3,5,Miller/W M 14,RAMP,1430810,0,0.294,0,,1.09,4,0.441367,,0.441367,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.441405,,0.441367,,0.441405,,0.441408,,0.441367,,0.441408,,0.442342,,0.441367,,0.442342,,0.441367,,0.441367,,0.441367,,,,,,,,0.441405,,0.441408,,0.442342,,0.441367,,0.441367,,0.185386,,0.185387,,0.185666,,0.185374,,0.098572,,39.996507,,39.99623,,39.911844,,40,,40,,,,,,,,,,,,5074,,0.441367,,0.441367,,0.441367,,0.441367,,0.185374,,40,,, +10562,0,0.653815,1,1,0,2,4,,4,5,Miller,Rd,1430906,1.576,2.229,0,14.010314,4.5,4.5,1.032339,1.032339,1.032339,1.032339,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.143212,1.034415,1.032339,1.032339,1.143212,1.034415,1.037582,1.036082,1.032339,1.032339,1.037582,1.036082,1.04031,1.119036,1.032339,1.032339,1.04031,1.119036,1.032339,1.032339,1.032339,1.032339,1.032339,1.032339,,,,,,,1.143212,1.034415,1.037582,1.036082,1.04031,1.119036,1.032339,1.032339,1.032339,1.032339,0.46065,0.428011,0.428961,0.428511,0.42978,0.453397,0.427388,0.427388,0.22677,0.22677,34.314628,37.923725,37.807965,37.862702,37.708845,35.055953,38,38,38,38,,,,,,,,,,,3096,3096,1.032339,1.032339,1.032339,1.032339,1.032339,1.032339,1.032339,1.032339,0.427388,0.427388,38,38,, +21361,0,0.697248,1,1,0,2,5,,4,5,Huron River,Dr,4604062,4.21,4.907,0,14.941022,5.8,4.5,1.549439,1.549439,1.549439,1.549439,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.552839,1.549458,1.549439,1.549439,1.552839,1.549458,1.549523,1.549485,1.549439,1.549439,1.549523,1.549485,1.549546,1.551459,1.549439,1.549439,1.549546,1.551459,1.549439,1.549439,1.549439,1.549439,1.549439,1.549439,,,,,,,1.552839,1.549458,1.549523,1.549485,1.549546,1.551459,1.549439,1.549439,1.549439,1.549439,0.591356,0.590342,0.590361,0.59035,0.590368,0.590942,0.590336,0.590336,0.309113,0.309113,26.940884,26.999675,26.99855,26.999195,26.998149,26.964849,27,27,27,27,,,,,,,,,,,2580,2580,1.549439,1.549439,1.549439,1.549439,1.549439,1.549439,1.549439,1.549439,0.590336,0.590336,27,27,, +22126,0,0.73747,1,1,0,2,5,,4,5,Huron River,Dr,4604062,4.907,5.644,0,15.802931,5.8,4.5,1.638822,1.638822,1.638822,1.638822,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.067847,1.651726,1.638822,1.638822,2.067847,1.651726,1.667195,1.660638,1.638822,1.638822,1.667195,1.660638,1.699423,1.918258,1.638822,1.638822,1.699423,1.918258,1.638822,1.638822,1.638822,1.638822,1.638822,1.638822,,,,,,,2.067847,1.651726,1.667195,1.660638,1.699423,1.918258,1.638822,1.638822,1.638822,1.638822,0.753099,0.628263,0.632903,0.630936,0.642572,0.708222,0.624391,0.624391,0.326945,0.326945,21.398204,26.789064,26.540503,26.645309,26.037191,23.066874,27,27,27,27,,,,,,,,,,,2580,2580,1.638822,1.638822,1.638822,1.638822,1.638822,1.638822,1.638822,1.638822,0.624391,0.624391,27,27,, +29982,0,1.152083,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.687494,0.15,4,4.608332,4.608332,4.608332,4.608332,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,,,,,,,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,1.589875,1.589875,1.589875,1.589875,1.589875,1.589875,1.589875,1.589875,0.817979,0.817979,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,4.608332,1.589875,1.589875,15,15,, +10563,0,0.468767,1,1,0,2,4,,4,5,Miller,Rd,1430906,1.107,1.576,0,10.045013,4.5,4.5,0.740159,0.740159,0.740159,0.740159,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.747978,0.74033,0.740159,0.740159,0.747978,0.74033,0.740585,0.740374,0.740159,0.740159,0.740585,0.740374,0.740506,0.748024,0.740159,0.740159,0.740506,0.748024,0.740159,0.740159,0.740159,0.740159,0.740159,0.740159,,,,,,,0.747978,0.74033,0.740585,0.740374,0.740506,0.748024,0.740159,0.740159,0.740159,0.740159,0.308772,0.306477,0.306554,0.30649,0.30653,0.308785,0.306426,0.306426,0.162588,0.162588,37.602749,37.991202,37.978113,37.98894,37.982204,37.600465,38,38,38,38,,,,,,,,,,,3096,3096,0.740159,0.740159,0.740159,0.740159,0.740159,0.740159,0.740159,0.740159,0.306426,0.306426,38,38,, +26018,0,0.731174,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.668015,0.15,4,2.924696,2.924696,2.924696,2.924696,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,,,,,,,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,1.00902,1.00902,1.00902,1.00902,1.00902,1.00902,1.00902,1.00902,0.519134,0.519134,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,2.924696,1.00902,1.00902,15,15,, +26019,0,0.654766,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.030698,0.15,4,2.619064,2.619064,2.619064,2.619064,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,,,,,,,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,0.903577,0.903577,0.903577,0.903577,0.903577,0.903577,0.903577,0.903577,0.464884,0.464884,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,2.619064,0.903577,0.903577,15,15,, +10717,0,0.737248,1,1,0,2,5,,4,5,Wagner,Rd,1433102,16.26,16.997,0,15.798178,5.8,4.5,1.63833,1.63833,1.63833,1.63833,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.64282,1.64826,1.63833,1.63833,1.64282,1.64826,1.641951,1.642969,1.63833,1.63833,1.641951,1.642969,1.648833,1.642248,1.63833,1.63833,1.648833,1.642248,1.63833,1.63833,1.63833,1.63833,1.63833,1.63833,,,,,,,1.64282,1.64826,1.641951,1.642969,1.648833,1.642248,1.63833,1.63833,1.63833,1.63833,0.625551,0.627183,0.62529,0.625595,0.627355,0.625379,0.624204,0.624204,0.326847,0.326847,26.926191,26.837325,26.940448,26.923764,26.828002,26.935578,27,27,27,27,,,,,,,,,,,2580,2580,1.63833,1.63833,1.63833,1.63833,1.63833,1.63833,1.63833,1.63833,0.624204,0.624204,27,27,, +26693,0,0.510515,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.939599,0.15,4,2.042058,2.042058,2.042058,2.042058,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,,,,,,,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,0.70451,0.70451,0.70451,0.70451,0.70451,0.70451,0.70451,0.70451,0.362465,0.362465,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,2.042058,0.70451,0.70451,15,15,, +10723,0,0.229049,1,1,0,2,5,,4,5,Wagner,Rd,1433102,16.031,16.26,0,4.908197,5.8,4.5,0.508998,0.508998,0.508998,0.508998,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.511571,0.516593,0.508998,0.508998,0.511571,0.516593,0.510796,0.512219,0.508998,0.508998,0.510796,0.512219,0.518586,0.512579,0.508998,0.508998,0.518586,0.512579,0.508998,0.508998,0.508998,0.508998,0.508998,0.508998,,,,,,,0.511571,0.516593,0.510796,0.512219,0.518586,0.512579,0.508998,0.508998,0.508998,0.508998,0.1947,0.196207,0.194468,0.194895,0.196805,0.195003,0.193928,0.193928,0.101545,0.101545,26.864198,26.603038,26.904994,26.830211,26.500822,26.81138,27,27,27,27,,,,,,,,,,,2580,2580,0.508998,0.508998,0.508998,0.508998,0.508998,0.508998,0.508998,0.508998,0.193928,0.193928,27,27,, +29505,0,0.42977,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.209365,0.15,4,1.719081,1.719081,1.719081,1.719081,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.719082,1.719081,1.719081,1.719081,1.719082,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,,,,,,,1.719082,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,0.593083,0.593083,0.593083,0.593083,0.593083,0.593083,0.593083,0.593083,0.305137,0.305137,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,1.719081,0.593083,0.593083,15,15,, +10552,0,0.180879,1,1,0,2,4,,3,5,Miller,Rd,1430906,4.486,4.667,0,3.875974,6,4.5,0.32887,0.32887,0.32887,0.32887,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.690499,0.392864,0.32887,0.32887,0.690499,0.392864,0.466719,0.406824,0.32887,0.32887,0.466719,0.406824,0.570356,0.701003,0.32887,0.32887,0.570356,0.701003,0.32887,0.32887,0.32887,0.32887,0.32887,0.32887,,,,,,,0.690499,0.392864,0.466719,0.406824,0.570356,0.701003,0.32887,0.32887,0.32887,0.32887,0.239708,0.150417,0.172574,0.154605,0.203665,0.242859,0.131219,0.131219,0.069227,0.069227,15.717232,27.624639,23.253245,26.676725,19.027977,15.481712,33,33,33,33,,,,,,,,,,,2580,2580,0.32887,0.32887,0.32887,0.32887,0.32887,0.32887,0.32887,0.32887,0.131219,0.131219,33,33,, +10554,0,0.343367,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.996,4.339,0,7.357868,6,4.5,0.624304,0.624304,0.624304,0.624304,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.252366,0.671922,0.624304,0.624304,1.252366,0.671922,0.747525,0.725678,0.624304,0.624304,0.747525,0.725678,0.891107,1.308148,0.624304,0.624304,0.891107,1.308148,0.624304,0.624304,0.624304,0.624304,0.624304,0.624304,,,,,,,1.252366,0.671922,0.747525,0.725678,0.891107,1.308148,0.624304,0.624304,0.624304,0.624304,0.437516,0.263383,0.286064,0.27951,0.329138,0.454251,0.249097,0.249097,0.131416,0.131416,16.450484,30.661357,27.560306,28.390039,23.11958,15.749002,33,33,33,33,,,,,,,,,,,2580,2580,0.624304,0.624304,0.624304,0.624304,0.624304,0.624304,0.624304,0.624304,0.249097,0.249097,33,33,, +11033,0,0.200834,1,1,0,2,7,,3,5,Brooks,St,1446307,0,0.201,0,4.303589,7,4.5,0.602503,0.602503,0.602503,0.602503,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.670466,0.928894,0.602503,0.602503,0.670466,0.928894,0.625773,0.624199,0.602503,0.602503,0.625773,0.624199,0.946871,0.735414,0.602503,0.602503,0.946871,0.735414,0.602503,0.602503,0.602503,0.602503,0.602503,0.602503,,,,,,,0.670466,0.928894,0.625773,0.624199,0.946871,0.735414,0.602503,0.602503,0.602503,0.602503,0.23729,0.314818,0.223882,0.22341,0.320211,0.256774,0.216901,0.216901,0.112467,0.112467,17.972649,12.972472,19.256268,19.304832,12.726178,16.385398,20,20,20,20,,,,,,,,,,,1892,1892,0.602503,0.602503,0.602503,0.602503,0.602503,0.602503,0.602503,0.602503,0.216901,0.216901,20,20,, +11049,0,0.344183,1,1,0,2,4,,3,5,Dexter,Ave,1446002,7.939,8.283,0,7.375357,6,4.5,0.625788,0.625788,0.625788,0.625788,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.459842,0.634252,0.625788,0.625788,1.459842,0.634252,0.731328,0.709396,0.625788,0.625788,0.731328,0.709396,0.852627,1.345891,0.625788,0.625788,0.852627,1.345891,0.625788,0.625788,0.625788,0.625788,0.625788,0.625788,,,,,,,1.459842,0.634252,0.731328,0.709396,0.852627,1.345891,0.625788,0.625788,0.625788,0.625788,0.499906,0.252229,0.281351,0.274772,0.317741,0.46572,0.249689,0.249689,0.131728,0.131728,14.146054,32.559621,28.237685,29.11069,24.220443,15.343733,33,33,33,33,,,,,,,,,,,2580,2580,0.625788,0.625788,0.625788,0.625788,0.625788,0.625788,0.625788,0.625788,0.249689,0.249689,33,33,, +11528,0,0.195518,2,2,1,2,4,,3,5,Maple,Rd,1452206,2.077,2.273,0,4.189667,6,4.5,0.355487,0.355487,0.355487,0.355487,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.440841,0.504876,0.355487,0.355487,0.440841,0.504876,0.383814,0.370424,0.355487,0.355487,0.383814,0.370424,0.6886,0.457249,0.355487,0.355487,0.6886,0.457249,0.355487,0.355487,0.355487,0.355487,0.355487,0.355487,,,,,,,0.440841,0.504876,0.383814,0.370424,0.6886,0.457249,0.355487,0.355487,0.355487,0.355487,0.167445,0.186656,0.150338,0.14632,0.241773,0.172368,0.141839,0.141839,0.07483,0.07483,26.610672,23.235552,30.564425,31.669311,17.036116,25.655727,33,33,33,33,,,,,,,,,,,5418,5418,0.355487,0.355487,0.355487,0.355487,0.355487,0.355487,0.355487,0.355487,0.141839,0.141839,33,33,, +21322,0,0.079044,1,1,0,2,4,,3,5,Liberty,St,4603025,6.5,6.579,0,1.693801,6,4.5,0.143716,0.143716,0.143716,0.143716,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.299491,0.157334,0.143716,0.143716,0.299491,0.157334,0.178395,0.177777,0.143716,0.143716,0.178395,0.177777,0.192259,0.334235,0.143716,0.143716,0.192259,0.334235,0.143716,0.143716,0.143716,0.143716,0.143716,0.143716,,,,,,,0.299491,0.157334,0.178395,0.177777,0.192259,0.334235,0.143716,0.143716,0.143716,0.143716,0.104075,0.061428,0.067746,0.067561,0.071906,0.114498,0.057343,0.057343,0.030252,0.030252,15.835692,30.143813,26.58512,26.677559,24.668048,14.189561,33,33,33,33,,,,,,,,,,,2580,2580,0.143716,0.143716,0.143716,0.143716,0.143716,0.143716,0.143716,0.143716,0.057343,0.057343,33,33,, +21419,0,0.304391,1,1,1,2,3,,3,5,Jackson,Ave,4604878,0.986,1.29,0,6.522663,5,5,0.521813,0.521813,0.521813,0.521813,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,1.150353,0.743502,0.521813,0.521813,1.150353,0.743502,0.701659,0.762526,0.521813,0.521813,0.701659,0.762526,0.853399,1.398275,0.521813,0.521813,0.853399,1.398275,0.521813,0.521813,0.521813,0.521813,0.521813,0.521813,,,,,,,1.150353,0.743502,0.701659,0.762526,0.853399,1.398275,0.521813,0.521813,0.521813,0.521813,0.399896,0.277841,0.265288,0.283548,0.31081,0.474273,0.211334,0.211334,0.111755,0.111755,15.87639,24.564107,26.028969,23.95126,21.400848,13.061424,35,35,35,35,,,,,,,,,,,4162,4162,0.521813,0.521813,0.521813,0.521813,0.521813,0.521813,0.521813,0.521813,0.211334,0.211334,35,35,, +26463,0,0.371983,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.971064,0.15,4,2.231898,2.231898,2.231898,2.231898,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,,,,,,,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,0.736526,0.736526,0.736526,0.736526,0.736526,0.736526,0.736526,0.736526,0.375703,0.375703,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,2.231898,0.736526,0.736526,10,10,, +26464,0,0.362272,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.762978,0.15,4,2.173634,2.173634,2.173634,2.173634,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,,,,,,,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,0.717299,0.717299,0.717299,0.717299,0.717299,0.717299,0.717299,0.717299,0.365895,0.365895,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,2.173634,0.717299,0.717299,10,10,, +29961,0,0.37874,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.115847,0.15,4,2.272437,2.272437,2.272437,2.272437,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,,,,,,,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,0.749904,0.749904,0.749904,0.749904,0.749904,0.749904,0.749904,0.749904,0.382527,0.382527,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,2.272437,0.749904,0.749904,10,10,, +30025,0,0.370405,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.937256,0.15,4,2.222432,2.222432,2.222432,2.222432,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,,,,,,,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,0.733402,0.733402,0.733402,0.733402,0.733402,0.733402,0.733402,0.733402,0.374109,0.374109,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,2.222432,0.733402,0.733402,10,10,, +30061,0,0.370712,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.943831,0.15,4,2.224273,2.224273,2.224273,2.224273,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,,,,,,,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,0.73401,0.73401,0.73401,0.73401,0.73401,0.73401,0.73401,0.73401,0.374419,0.374419,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,2.224273,0.73401,0.73401,10,10,, +9889,0,0.121601,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0,0.122,0,2.605742,5,5,0.208459,0.208459,0.208459,0.208459,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.238263,0.210099,0.208459,0.208459,0.238263,0.210099,0.2109,0.210329,0.208459,0.208459,0.2109,0.210329,0.221359,0.24101,0.208459,0.208459,0.221359,0.24101,0.208459,0.208459,0.208459,0.208459,0.208459,0.208459,,,,,,,0.238263,0.210099,0.2109,0.210329,0.221359,0.24101,0.208459,0.208459,0.208459,0.208459,0.093367,0.084918,0.085158,0.084987,0.088296,0.094191,0.084426,0.084426,0.044645,0.044645,30.621893,34.726871,34.594987,34.688875,32.960442,30.272869,35,35,35,35,,,,,,,,,,,7946,7946,0.208459,0.208459,0.208459,0.208459,0.208459,0.208459,0.208459,0.208459,0.084426,0.084426,35,35,, +10349,-1,0.406288,0,2,0,1,1,,3,5,W I 94,,1426110,18.062,18.468,0,,0.58,7,,0.375035,,0.375035,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.375087,,0.375035,,0.375087,,0.375042,,0.375035,,0.375042,,0.375251,,0.375035,,0.375251,,0.375035,,0.375035,,0.375035,,,,,,,,0.375087,,0.375042,,0.375251,,0.375035,,0.375035,,0.185658,,0.185645,,0.185707,,0.185643,,0.100947,,64.991053,,64.998851,,64.962707,,65,,65,,,,,,,,,,,,15136,,0.375035,,0.375035,,0.375035,,0.375035,,0.185643,,65,, +10423,1,0.218862,1,0,0,1,1,ROF,3,5,W I 94/I 94 BL,RAMP,1427106,0,0.219,0,,2.24,5,0.375192,,0.375192,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.556065,,0.375192,,0.556065,,0.40837,,0.375192,,0.40837,,0.72803,,0.375192,,0.72803,,0.375192,,0.375192,,0.375192,,,,,,,,0.556065,,0.40837,,0.72803,,0.375192,,0.375192,,0.206215,,0.161906,,0.257804,,0.151953,,0.080354,,23.61543,,32.156417,,18.037314,,35,,35,,,,,,,,,,,,5074,,0.375192,,0.375192,,0.375192,,0.375192,,0.151953,,35,,, +11056,0,0.385056,1,1,0,2,4,,3,5,Dexter,Ave,1446002,7.484,7.868,0,8.251205,6,4.5,0.700102,0.700102,0.700102,0.700102,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.111948,0.704117,0.700102,0.700102,1.111948,0.704117,0.738712,0.736541,0.700102,0.700102,0.738712,0.736541,0.795104,1.141421,0.700102,0.700102,0.795104,1.141421,0.700102,0.700102,0.700102,0.700102,0.700102,0.700102,,,,,,,1.111948,0.704117,0.738712,0.736541,0.795104,1.141421,0.700102,0.700102,0.700102,0.700102,0.402895,0.280545,0.290924,0.290272,0.307841,0.411737,0.279341,0.279341,0.147372,0.147372,20.777382,32.811839,31.275209,31.367393,29.057034,20.24088,33,33,33,33,,,,,,,,,,,2580,2580,0.700102,0.700102,0.700102,0.700102,0.700102,0.700102,0.700102,0.700102,0.279341,0.279341,33,33,, +11303,0,0.181799,1,1,0,2,4,,3,5,Maple,Rd,1452206,1.446,1.627,0,3.895699,6,4.5,0.330544,0.330544,0.330544,0.330544,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.399619,0.41752,0.330544,0.330544,0.399619,0.41752,0.389254,0.396884,0.330544,0.330544,0.389254,0.396884,0.584776,0.486968,0.330544,0.330544,0.584776,0.486968,0.330544,0.330544,0.330544,0.330544,0.330544,0.330544,,,,,,,0.399619,0.41752,0.389254,0.396884,0.584776,0.486968,0.330544,0.330544,0.330544,0.330544,0.15261,0.15798,0.1495,0.151789,0.208157,0.178814,0.131887,0.131887,0.06958,0.06958,27.295873,26.125598,28.022733,27.483967,18.653208,22.399758,33,33,33,33,,,,,,,,,,,2580,2580,0.330544,0.330544,0.330544,0.330544,0.330544,0.330544,0.330544,0.330544,0.131887,0.131887,33,33,, +21858,0,0.279333,1,1,1,2,3,,3,5,Jackson,Ave,4604878,0.635,0.914,0,5.985706,5,5,0.478857,0.478857,0.478857,0.478857,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,1.095731,0.880538,0.478857,0.478857,1.095731,0.880538,0.817915,0.840249,0.478857,0.478857,0.817915,0.840249,1.011439,1.457454,0.478857,0.478857,1.011439,1.457454,0.478857,0.478857,0.478857,0.478857,0.478857,0.478857,,,,,,,1.095731,0.880538,0.817915,0.840249,1.011439,1.457454,0.478857,0.478857,0.478857,0.478857,0.378999,0.314441,0.295655,0.302355,0.353712,0.487516,0.193937,0.193937,0.102555,0.102555,15.295702,19.033793,20.49109,19.946433,16.570436,11.499493,35,35,35,35,,,,,,,,,,,4162,4162,0.478857,0.478857,0.478857,0.478857,0.478857,0.478857,0.478857,0.478857,0.193937,0.193937,35,35,, +22028,0,0.176539,2,2,1,2,4,,3,5,Liberty,St,4603025,6.084,6.261,0,3.782981,6,4.5,0.32098,0.32098,0.32098,0.32098,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.334275,0.322177,0.32098,0.32098,0.334275,0.322177,0.323425,0.324184,0.32098,0.32098,0.323425,0.324184,0.328868,0.351415,0.32098,0.32098,0.328868,0.351415,0.32098,0.32098,0.32098,0.32098,0.32098,0.32098,,,,,,,0.334275,0.322177,0.323425,0.324184,0.328868,0.351415,0.32098,0.32098,0.32098,0.32098,0.13206,0.12843,0.128805,0.129032,0.130437,0.137202,0.128071,0.128071,0.067566,0.067566,31.687479,32.877405,32.750558,32.673902,32.208533,30.14195,33,33,33,33,,,,,,,,,,,5418,5418,0.32098,0.32098,0.32098,0.32098,0.32098,0.32098,0.32098,0.32098,0.128071,0.128071,33,33,, +26452,0,0.2062,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.418575,0.15,4,1.237201,1.237201,1.237201,1.237201,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,,,,,,,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,0.408276,0.408276,0.408276,0.408276,0.408276,0.408276,0.408276,0.408276,0.208262,0.208262,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,1.237201,0.408276,0.408276,10,10,, +26469,0,0.159095,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.409186,0.15,4,0.954572,0.954572,0.954572,0.954572,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,,,,,,,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.315009,0.315009,0.315009,0.315009,0.315009,0.315009,0.315009,0.315009,0.160686,0.160686,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.954572,0.315009,0.315009,10,10,, +11557,0,0.205196,1,1,0,2,4,,3,5,Maple,Rd,1452206,1.241,1.446,0,4.397063,6,4.5,0.373084,0.373084,0.373084,0.373084,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.455385,0.382151,0.373084,0.373084,0.455385,0.382151,0.406002,0.400576,0.373084,0.373084,0.406002,0.400576,0.430549,0.454215,0.373084,0.373084,0.430549,0.454215,0.373084,0.373084,0.373084,0.373084,0.373084,0.373084,,,,,,,0.455385,0.382151,0.406002,0.400576,0.430549,0.454215,0.373084,0.373084,0.373084,0.373084,0.173551,0.151581,0.158736,0.157108,0.1661,0.1732,0.148861,0.148861,0.078534,0.078534,27.035949,32.217039,30.324435,30.735199,28.59555,27.105585,33,33,33,33,,,,,,,,,,,2580,2580,0.373084,0.373084,0.373084,0.373084,0.373084,0.373084,0.373084,0.373084,0.148861,0.148861,33,33,, +26470,0,0.247064,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.29423,0.15,4,1.482384,1.482384,1.482384,1.482384,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,,,,,,,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,0.489187,0.489187,0.489187,0.489187,0.489187,0.489187,0.489187,0.489187,0.249535,0.249535,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,1.482384,0.489187,0.489187,10,10,, +21269,0,0.10254,1,1,0,2,4,,3,5,Liberty,St,4603025,5.982,6.084,0,2.197292,6,4.5,0.186437,0.186437,0.186437,0.186437,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.410345,0.207919,0.186437,0.186437,0.410345,0.207919,0.217726,0.220637,0.186437,0.186437,0.217726,0.220637,0.269942,0.480545,0.186437,0.186437,0.269942,0.480545,0.186437,0.186437,0.186437,0.186437,0.186437,0.186437,,,,,,,0.410345,0.207919,0.217726,0.220637,0.269942,0.480545,0.186437,0.186437,0.186437,0.186437,0.141561,0.080833,0.083775,0.084648,0.09944,0.162621,0.074388,0.074388,0.039245,0.039245,14.993277,29.590522,28.257661,27.884823,22.791599,12.802996,33,33,33,33,,,,,,,,,,,2580,2580,0.186437,0.186437,0.186437,0.186437,0.186437,0.186437,0.186437,0.186437,0.074388,0.074388,33,33,, +26471,0,0.070629,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.513474,0.15,4,0.423773,0.423773,0.423773,0.423773,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,,,,,,,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.139845,0.139845,0.139845,0.139845,0.139845,0.139845,0.139845,0.139845,0.071335,0.071335,10,9.999998,9.999997,9.999996,9.999991,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.423773,0.139845,0.139845,10,10,, +9645,1,0.171412,1,0,0,1,1,RON,3,5,W I 94 BL/W I 94,RAMP,1427105,0.048,0.219,0,,1.09,4,0.257118,,0.257118,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.283405,,0.257118,,0.283405,,0.295821,,0.257118,,0.295821,,0.38409,,0.257118,,0.38409,,0.257118,,0.257118,,0.257118,,,,,,,,0.283405,,0.295821,,0.38409,,0.257118,,0.257118,,0.115876,,0.1196,,0.146081,,0.10799,,0.057423,,36.289867,,34.766799,,26.776922,,40,,40,,,,,,,,,,,,5074,,0.257118,,0.257118,,0.257118,,0.257118,,0.10799,,40,,, +10157,1,0.047986,1,0,0,1,1,RON,3,5,W I 94 BL/W I 94,RAMP,1427105,0,0.048,0,,1.09,4,0.071979,,0.071979,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.079338,,0.071979,,0.079338,,0.081981,,0.071979,,0.081981,,0.107524,,0.071979,,0.107524,,0.071979,,0.071979,,0.071979,,,,,,,,0.079338,,0.081981,,0.107524,,0.071979,,0.071979,,0.032439,,0.033232,,0.040895,,0.030231,,0.016075,,36.289867,,35.119767,,26.776922,,40,,40,,,,,,,,,,,,5074,,0.071979,,0.071979,,0.071979,,0.071979,,0.030231,,40,,, +11281,0,0.339033,2,2,1,2,4,,3,5,Maple,Rd,1452206,1.738,2.077,0,7.264996,6,4.5,0.616424,0.616424,0.616424,0.616424,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.856378,0.991879,0.616424,0.616424,0.856378,0.991879,0.708218,0.695189,0.616424,0.616424,0.708218,0.695189,1.43884,0.960047,0.616424,0.616424,1.43884,0.960047,0.616424,0.616424,0.616424,0.616424,0.616424,0.616424,,,,,,,0.856378,0.991879,0.708218,0.695189,1.43884,0.960047,0.616424,0.616424,0.616424,0.616424,0.317939,0.35859,0.273491,0.269583,0.492678,0.34904,0.245953,0.245953,0.129757,0.129757,23.75352,20.508529,28.722762,29.261106,14.137773,21.188543,33,33,33,33,,,,,,,,,,,5418,5418,0.616424,0.616424,0.616424,0.616424,0.616424,0.616424,0.616424,0.616424,0.245953,0.245953,33,33,, +21578,0,0.026791,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.439,0.466,0,0.574084,5,5,0.045927,0.045927,0.045927,0.045927,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.078238,0.058958,0.045927,0.045927,0.078238,0.058958,0.05622,0.050682,0.045927,0.045927,0.05622,0.050682,0.061433,0.07797,0.045927,0.045927,0.061433,0.07797,0.045927,0.045927,0.045927,0.045927,0.045927,0.045927,,,,,,,0.078238,0.058958,0.05622,0.050682,0.061433,0.07797,0.045927,0.045927,0.045927,0.045927,0.028294,0.02251,0.021688,0.020027,0.023252,0.028213,0.0186,0.0186,0.009836,0.009836,20.545497,27.263927,28.591703,31.716287,26.1656,20.616058,35,35,35,35,,,,,,,,,,,7568,7568,0.045927,0.045927,0.045927,0.045927,0.045927,0.045927,0.045927,0.045927,0.0186,0.0186,35,35,, +26444,0,0.292074,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.258718,0.15,4,1.752441,1.752441,1.752441,1.752441,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,,,,,,,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,0.578306,0.578306,0.578306,0.578306,0.578306,0.578306,0.578306,0.578306,0.294994,0.294994,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,1.752441,0.578306,0.578306,10,10,, +26467,0,0.169243,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.626626,0.15,4,1.015455,1.015455,1.015455,1.015455,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,,,,,,,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,0.3351,0.3351,0.3351,0.3351,0.3351,0.3351,0.3351,0.3351,0.170935,0.170935,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,1.015455,0.3351,0.3351,10,10,, +19606,1,0.021576,1,0,0,1,1,RON,3,5,E I 94 BL/W I 94,RAMP,1908802,0,0.022,0,,1.09,4,0.032364,,0.032364,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.032364,,0.032364,,0.032364,,0.032364,,0.032364,,0.032364,,0.032364,,0.032364,,0.032364,,0.032364,,0.032364,,0.032364,,,,,,,,0.032364,,0.032364,,0.032364,,0.032364,,0.032364,,0.013593,,0.013593,,0.013593,,0.013593,,0.007228,,40,,39.999999,,40,,40,,40,,,,,,,,,,,,5074,,0.032364,,0.032364,,0.032364,,0.032364,,0.013593,,40,,, +22124,0,0.152818,2,2,1,2,3,,3,5,Jackson,Ave,4604878,0.482,0.635,0,3.274661,5,5,0.261973,0.261973,0.261973,0.261973,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.007406,0.439205,0.261973,0.261973,1.007406,0.439205,0.485145,0.446418,0.261973,0.261973,0.485145,0.446418,0.970739,1.320506,0.261973,0.261973,0.970739,1.320506,0.261973,0.261973,0.261973,0.261973,0.261973,0.261973,,,,,,,1.007406,0.439205,0.485145,0.446418,0.970739,1.320506,0.261973,0.261973,0.261973,0.261973,0.329729,0.159269,0.173051,0.161433,0.318729,0.423659,0.106099,0.106099,0.056106,0.056106,9.101648,20.876478,18.899589,20.539152,9.445435,6.943587,35,35,35,35,,,,,,,,,,,7946,7946,0.261973,0.261973,0.261973,0.261973,0.261973,0.261973,0.261973,0.261973,0.106099,0.106099,35,35,, +21359,0,0.016083,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.466,0.482,0,0.344636,5,5,0.027571,0.027571,0.027571,0.027571,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.127726,0.028134,0.027571,0.027571,0.127726,0.028134,0.057547,0.027958,0.027571,0.027571,0.057547,0.027958,0.122782,0.030295,0.027571,0.027571,0.122782,0.030295,0.027571,0.027571,0.027571,0.027571,0.027571,0.027571,,,,,,,0.127726,0.028134,0.057547,0.027958,0.122782,0.030295,0.027571,0.027571,0.027571,0.027571,0.041213,0.011335,0.020159,0.011282,0.039729,0.011983,0.011166,0.011166,0.005905,0.005905,7.555081,34.299466,16.768441,34.515254,7.859306,31.853244,35,35,35,35,,,,,,,,,,,7568,7568,0.027571,0.027571,0.027571,0.027571,0.027571,0.027571,0.027571,0.027571,0.011166,0.011166,35,35,, +11531,0,0.110977,2,2,1,2,3,,3,5,Maple,Rd,1452206,1.627,1.738,0,2.378069,5,5,0.190246,0.190246,0.190246,0.190246,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.20407,0.303443,0.190246,0.190246,0.20407,0.303443,0.204366,0.207872,0.190246,0.190246,0.204366,0.207872,0.356689,0.264289,0.190246,0.190246,0.356689,0.264289,0.190246,0.190246,0.190246,0.190246,0.190246,0.190246,,,,,,,0.20407,0.303443,0.204366,0.207872,0.356689,0.264289,0.190246,0.190246,0.190246,0.190246,0.081197,0.111009,0.081285,0.082337,0.126982,0.099263,0.077049,0.077049,0.040744,0.040744,32.628974,21.943488,32.581765,32.032239,18.667795,25.194352,35,35,35,35,,,,,,,,,,,7946,7946,0.190246,0.190246,0.190246,0.190246,0.190246,0.190246,0.190246,0.190246,0.077049,0.077049,35,35,, +11269,0,0.099986,1,1,0,2,4,,3,5,Dexter,Rd,1446002,7.384,7.484,0,2.14256,6,4.5,0.181793,0.181793,0.181793,0.181793,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.443575,0.192935,0.181793,0.181793,0.443575,0.192935,0.240687,0.209634,0.181793,0.181793,0.240687,0.209634,0.296631,0.43791,0.181793,0.181793,0.296631,0.43791,0.181793,0.181793,0.181793,0.181793,0.181793,0.181793,,,,,,,0.443575,0.192935,0.240687,0.209634,0.296631,0.43791,0.181793,0.181793,0.181793,0.181793,0.15107,0.075878,0.090204,0.080888,0.106987,0.14937,0.072535,0.072535,0.038267,0.038267,13.524571,31.094291,24.925168,28.617347,20.224371,13.699549,33,33,33,33,,,,,,,,,,,2580,2580,0.181793,0.181793,0.181793,0.181793,0.181793,0.181793,0.181793,0.181793,0.072535,0.072535,33,33,, +9227,0,0.193592,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.18,0.373,0,4.14841,5,5,0.331873,0.331873,0.331873,0.331873,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.356855,0.334919,0.331873,0.331873,0.356855,0.334919,0.335019,0.33396,0.331873,0.331873,0.335019,0.33396,0.347667,0.356127,0.331873,0.331873,0.347667,0.356127,0.331873,0.331873,0.331873,0.331873,0.331873,0.331873,,,,,,,0.356855,0.334919,0.335019,0.33396,0.347667,0.356127,0.331873,0.331873,0.331873,0.331873,0.141903,0.135322,0.135352,0.135035,0.139147,0.141685,0.134408,0.134408,0.071076,0.071076,32.549761,34.681705,34.671356,34.781217,33.409942,32.616295,35,35,35,35,,,,,,,,,,,7946,7946,0.331873,0.331873,0.331873,0.331873,0.331873,0.331873,0.331873,0.331873,0.134408,0.134408,35,35,, +21539,0,0.23922,1,1,0,2,4,,3,5,Liberty,St,4603025,6.261,6.5,0,5.126145,6,4.5,0.434946,0.434946,0.434946,0.434946,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.93321,0.528024,0.434946,0.434946,0.93321,0.528024,0.590765,0.640394,0.434946,0.434946,0.590765,0.640394,0.784673,1.002271,0.434946,0.434946,0.784673,1.002271,0.434946,0.434946,0.434946,0.434946,0.434946,0.434946,,,,,,,0.93321,0.528024,0.590765,0.640394,0.784673,1.002271,0.434946,0.434946,0.434946,0.434946,0.323023,0.201467,0.220289,0.235178,0.278461,0.343741,0.173543,0.173543,0.091556,0.091556,15.380469,27.182863,24.295972,22.413099,18.291967,14.320684,33,33,33,33,,,,,,,,,,,2580,2580,0.434946,0.434946,0.434946,0.434946,0.434946,0.434946,0.434946,0.434946,0.173543,0.173543,33,33,, +26453,0,0.292771,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.273672,0.15,4,1.756628,1.756628,1.756628,1.756628,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,,,,,,,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,0.579687,0.579687,0.579687,0.579687,0.579687,0.579687,0.579687,0.579687,0.295699,0.295699,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,1.756628,0.579687,0.579687,10,10,, +37895,0,0.003356,1,1,0,2,7,,5,8,Shiawassee,Ave,1530104,0.233,0.236,0,0.071921,5.8,6,0.008055,0.008055,0.008055,0.008055,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,,,,,,,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.003021,0.003021,0.003021,0.003021,0.003021,0.003021,0.003021,0.003021,0.001577,0.001577,24.999835,24.999824,24.99994,24.99994,24.999543,24.99955,25,25,25,25,,,,,,,,,,,2064,2064,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.008055,0.003021,0.003021,25,25,, +9672,0,0.057932,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.122,0.18,0,1.241395,5,5,0.099312,0.099312,0.099312,0.099312,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.106987,0.100191,0.099312,0.099312,0.106987,0.100191,0.100316,0.099978,0.099312,0.099312,0.100316,0.099978,0.1042,0.106814,0.099312,0.099312,0.1042,0.106814,0.099312,0.099312,0.099312,0.099312,0.099312,0.099312,,,,,,,0.106987,0.100191,0.100316,0.099978,0.1042,0.106814,0.099312,0.099312,0.099312,0.099312,0.042524,0.040485,0.040523,0.040421,0.041688,0.042472,0.040221,0.040221,0.021269,0.021269,32.488932,34.692931,34.649479,34.766719,33.357903,32.541729,35,35,35,35,,,,,,,,,,,7946,7946,0.099312,0.099312,0.099312,0.099312,0.099312,0.099312,0.099312,0.099312,0.040221,0.040221,35,35,, +26454,0,0.217468,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.660027,0.15,4,1.304808,1.304808,1.304808,1.304808,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,,,,,,,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,0.430586,0.430586,0.430586,0.430586,0.430586,0.430586,0.430586,0.430586,0.219643,0.219643,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,1.304808,0.430586,0.430586,10,10,, +26456,0,0.130166,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.789268,0.15,4,0.780995,0.780995,0.780995,0.780995,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,,,,,,,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.257728,0.257728,0.257728,0.257728,0.257728,0.257728,0.257728,0.257728,0.131468,0.131468,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.780995,0.257728,0.257728,10,10,, +21616,0,0.07203,1,1,1,2,3,,3,5,Jackson,Ave,4604878,0.914,0.986,0,1.543497,5,5,0.12348,0.12348,0.12348,0.12348,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.283362,0.196788,0.12348,0.12348,0.283362,0.196788,0.176373,0.192448,0.12348,0.12348,0.176373,0.192448,0.235865,0.37727,0.12348,0.12348,0.235865,0.37727,0.12348,0.12348,0.12348,0.12348,0.12348,0.12348,,,,,,,0.283362,0.196788,0.176373,0.192448,0.235865,0.37727,0.12348,0.12348,0.12348,0.12348,0.097974,0.072002,0.065877,0.0707,0.083725,0.126146,0.050009,0.050009,0.026445,0.026445,15.251813,21.96167,24.503718,22.456943,18.323131,11.455446,35,35,35,35,,,,,,,,,,,4162,4162,0.12348,0.12348,0.12348,0.12348,0.12348,0.12348,0.12348,0.12348,0.050009,0.050009,35,35,, +26458,0,0.142721,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.058315,0.15,4,0.856328,0.856328,0.856328,0.856328,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,,,,,,,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.282588,0.282588,0.282588,0.282588,0.282588,0.282588,0.282588,0.282588,0.144149,0.144149,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.856328,0.282588,0.282588,10,10,, +11261,0,0.07031,1,1,0,2,4,,3,5,Dexter,Ave,1446002,7.868,7.939,0,1.506641,6,4.5,0.127836,0.127836,0.127836,0.127836,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.204758,0.128485,0.127836,0.127836,0.204758,0.128485,0.137428,0.136626,0.127836,0.127836,0.137428,0.136626,0.146221,0.224949,0.127836,0.127836,0.146221,0.224949,0.127836,0.127836,0.127836,0.127836,0.127836,0.127836,,,,,,,0.204758,0.128485,0.137428,0.136626,0.146221,0.224949,0.127836,0.127836,0.127836,0.127836,0.074083,0.051201,0.053884,0.053644,0.056522,0.08014,0.051007,0.051007,0.02691,0.02691,20.602848,32.833295,30.696794,30.876895,28.85085,18.753594,33,33,33,33,,,,,,,,,,,2580,2580,0.127836,0.127836,0.127836,0.127836,0.127836,0.127836,0.127836,0.127836,0.051007,0.051007,33,33,, +37385,1,0.032495,1,0,0,2,4,,5,8,Hamburg,Rd,932902,0.46,0.492,0,0.696316,3,4,0.048742,,0.048742,,40,,9000,,2043,,4500,,2903,,3096,,3092,,0.055402,,0.048742,,0.055402,,0.051934,,0.048742,,0.051934,,0.071265,,0.048742,,0.071265,,0.048742,,0.048742,,0.048742,,,,,,,,0.055402,,0.051934,,0.071265,,0.048742,,0.048742,,0.02247,,0.021429,,0.027229,,0.020472,,0.010886,,35.19163,,37.54177,,27.358216,,40,,40,,,,,,,,,,,,3096,,0.048742,,0.048742,,0.048742,,0.048742,,0.020472,,40,,, +10556,0,0.426758,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.456,3.882,0,9.144805,6,4.5,0.775923,0.775923,0.775923,0.775923,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.28719,0.877635,0.775923,0.775923,1.28719,0.877635,0.943546,0.878866,0.775923,0.775923,0.943546,0.878866,1.214378,1.718479,0.775923,0.775923,1.214378,1.718479,0.775923,0.775923,0.775923,0.775923,0.775923,0.775923,,,,,,,1.28719,0.877635,0.943546,0.878866,1.214378,1.718479,0.775923,0.775923,0.775923,0.775923,0.462973,0.340107,0.35988,0.340476,0.44113,0.59236,0.309593,0.309593,0.163332,0.163332,19.892527,29.175519,27.137486,29.134643,21.085239,14.900072,33,33,33,33,,,,,,,,,,,2580,2580,0.775923,0.775923,0.775923,0.775923,0.775923,0.775923,0.775923,0.775923,0.309593,0.309593,33,33,, +10557,0,0.212279,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.244,3.456,0,4.548826,6,4.5,0.385961,0.385961,0.385961,0.385961,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.769516,0.388978,0.385961,0.385961,0.769516,0.388978,0.45027,0.403149,0.385961,0.385961,0.45027,0.403149,0.567253,0.499088,0.385961,0.385961,0.567253,0.499088,0.385961,0.385961,0.385961,0.385961,0.385961,0.385961,,,,,,,0.769516,0.388978,0.45027,0.403149,0.567253,0.499088,0.385961,0.385961,0.385961,0.385961,0.269065,0.154903,0.173291,0.159155,0.208386,0.187936,0.153998,0.153998,0.081245,0.081245,16.551593,32.744065,28.286835,31.593067,22.453316,25.519997,33,33,33,33,,,,,,,,,,,2580,2580,0.385961,0.385961,0.385961,0.385961,0.385961,0.385961,0.385961,0.385961,0.153998,0.153998,33,33,, +37388,-1,0.011809,0,1,0,2,4,,5,8,Winans Lake,Rd,4105275,0,0.012,0,0.253053,3,4,,0.017714,,0.017714,,40,,9000,,2043,,4500,,2903,,3096,,3092,,0.01786,,0.017714,,0.01786,,0.017939,,0.017714,,0.017939,,0.018473,,0.017714,,0.018473,,0.017714,,0.017714,,0.017714,,,,,,,,0.01786,,0.017939,,0.018473,,0.017714,,0.017714,,0.007484,,0.007507,,0.007668,,0.00744,,0.003956,,39.672189,,39.498192,,38.356068,,40,,40,,,,,,,,,,,,3096,,0.017714,,0.017714,,0.017714,,0.017714,,0.00744,,40,, +11268,0,0.313846,2,1,0,2,4,,3,5,Maple,Rd,1452206,2.724,3.038,0,6.725274,6,4.5,0.570629,0.570629,0.570629,0.570629,33,33,15000,7500,3405,1703,7500,3750,4839,2420,5160,2580,5154,2577,0.674973,1.612036,0.570629,0.570629,0.674973,1.612036,0.584673,0.692936,0.570629,0.570629,0.584673,0.692936,0.872752,1.330474,0.570629,0.570629,0.872752,1.330474,0.570629,0.570629,0.570629,0.570629,0.570629,0.570629,,,,,,,0.674973,1.612036,0.584673,0.692936,0.872752,1.330474,0.570629,0.570629,0.570629,0.570629,0.258984,0.540103,0.231894,0.264373,0.318318,0.455635,0.227681,0.227681,0.120117,0.120117,27.898561,11.68136,32.207373,27.175325,21.576305,14.153425,33,33,33,33,,,,,,,,,,,5160,2580,0.570629,0.570629,0.570629,0.570629,0.570629,0.570629,0.570629,0.570629,0.227681,0.227681,33,33,, +26460,0,0.343268,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.355738,0.15,4,2.059607,2.059607,2.059607,2.059607,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,,,,,,,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,0.67967,0.67967,0.67967,0.67967,0.67967,0.67967,0.67967,0.67967,0.3467,0.3467,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,2.059607,0.67967,0.67967,10,10,, +26461,0,0.355916,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.626765,0.15,4,2.135494,2.135494,2.135494,2.135494,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,,,,,,,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,0.704713,0.704713,0.704713,0.704713,0.704713,0.704713,0.704713,0.704713,0.359475,0.359475,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,2.135494,0.704713,0.704713,10,10,, +26462,0,0.476034,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.200724,0.15,4,2.856203,2.856203,2.856203,2.856203,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,,,,,,,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,0.942547,0.942547,0.942547,0.942547,0.942547,0.942547,0.942547,0.942547,0.480794,0.480794,10,9.999999,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,2.856203,0.942547,0.942547,10,10,, +11276,0,0.364567,2,2,1,2,4,,3,5,Maple,Rd,1452206,2.273,2.637,0,7.812155,6,4.5,0.662849,0.662849,0.662849,0.662849,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.748044,0.812153,0.662849,0.662849,0.748044,0.812153,0.689675,0.674358,0.662849,0.662849,0.689675,0.674358,1.01868,0.750107,0.662849,0.662849,1.01868,0.750107,0.662849,0.662849,0.662849,0.662849,0.662849,0.662849,,,,,,,0.748044,0.812153,0.689675,0.674358,1.01868,0.750107,0.662849,0.662849,0.662849,0.662849,0.290035,0.309268,0.272525,0.267929,0.371226,0.290654,0.264477,0.264477,0.13953,0.13953,29.241648,26.933374,31.716421,32.436846,21.472929,29.161226,33,33,33,33,,,,,,,,,,,5418,5418,0.662849,0.662849,0.662849,0.662849,0.662849,0.662849,0.662849,0.662849,0.264477,0.264477,33,33,, +11520,0,0.086792,2,2,1,2,4,,3,5,Maple,Rd,1452206,2.637,2.724,0,1.859828,6,4.5,0.157804,0.157804,0.157804,0.157804,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.182222,0.197249,0.157804,0.157804,0.182222,0.197249,0.165048,0.163123,0.157804,0.157804,0.165048,0.163123,0.243241,0.184025,0.157804,0.157804,0.243241,0.184025,0.157804,0.157804,0.157804,0.157804,0.157804,0.157804,,,,,,,0.182222,0.197249,0.165048,0.163123,0.243241,0.184025,0.157804,0.157804,0.157804,0.157804,0.070289,0.074797,0.065137,0.064559,0.088595,0.07083,0.062964,0.062964,0.033218,0.033218,28.577921,26.400761,31.551521,31.92385,21.408864,28.297938,33,33,33,33,,,,,,,,,,,5418,5418,0.157804,0.157804,0.157804,0.157804,0.157804,0.157804,0.157804,0.157804,0.062964,0.062964,33,33,, +37389,1,0.010972,1,0,0,2,4,,5,8,Hamburg,Rd,940105,2.011,2.022,0,0.235105,3,4,0.016457,,0.016457,,40,,9000,,2043,,4500,,2903,,3096,,3092,,0.052878,,0.016457,,0.052878,,0.018108,,0.016457,,0.018108,,0.022047,,0.016457,,0.022047,,0.016457,,0.016457,,0.016457,,,,,,,,0.052878,,0.018108,,0.022047,,0.016457,,0.016457,,0.017838,,0.007407,,0.008589,,0.006912,,0.003675,,12.449305,,36.353378,,29.858561,,40,,40,,,,,,,,,,,,3096,,0.016457,,0.016457,,0.016457,,0.016457,,0.006912,,40,,, +37350,1,0.34801,1,0,0,1,2,RON,3,5,Maple/E M 14,RAMP,1430504,0,0.348,0,,1.09,4,0.522015,,0.522015,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.620264,,0.522015,,0.620264,,0.553215,,0.522015,,0.553215,,0.773212,,0.522015,,0.773212,,0.522015,,0.522015,,0.522015,,,,,,,,0.620264,,0.553215,,0.773212,,0.522015,,0.522015,,0.248721,,0.228606,,0.294605,,0.219246,,0.116583,,33.663997,,37.744094,,27.005003,,40,,40,,,,,,,,,,,,5074,,0.522015,,0.522015,,0.522015,,0.522015,,0.219246,,40,,, +10558,0,0.054681,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.189,3.244,0,1.171741,6,4.5,0.09942,0.09942,0.09942,0.09942,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.28405,0.112013,0.09942,0.09942,0.28405,0.112013,0.121714,0.114277,0.09942,0.09942,0.121714,0.114277,0.246534,0.193712,0.09942,0.09942,0.246534,0.193712,0.09942,0.09942,0.09942,0.09942,0.09942,0.09942,,,,,,,0.28405,0.112013,0.121714,0.114277,0.246534,0.193712,0.09942,0.09942,0.09942,0.09942,0.095058,0.043446,0.046357,0.044126,0.083803,0.067956,0.039669,0.039669,0.020928,0.020928,11.550335,29.290171,26.955647,28.709928,13.308002,16.936885,33,33,33,33,,,,,,,,,,,2580,2580,0.09942,0.09942,0.09942,0.09942,0.09942,0.09942,0.09942,0.09942,0.039669,0.039669,33,33,, +37351,1,0.274286,1,0,0,1,2,ROF,3,5,W M 14/Maple,RAMP,1431101,0,0.274,0,,2.24,5,0.470205,,0.470205,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.663597,,0.470205,,0.663597,,0.484956,,0.470205,,0.484956,,0.612853,,0.470205,,0.612853,,0.470205,,0.470205,,0.470205,,,,,,,,0.663597,,0.484956,,0.612853,,0.470205,,0.470205,,0.248451,,0.194858,,0.233227,,0.190433,,0.100702,,24.799956,,33.935396,,26.853398,,35,,35,,,,,,,,,,,,5074,,0.470205,,0.470205,,0.470205,,0.470205,,0.190433,,35,,, +10555,0,0.113637,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.882,3.996,0,2.435072,6,4.5,0.206612,0.206612,0.206612,0.206612,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.294064,0.21851,0.206612,0.206612,0.294064,0.21851,0.239889,0.231082,0.206612,0.206612,0.239889,0.231082,0.267611,0.387189,0.206612,0.206612,0.267611,0.387189,0.206612,0.206612,0.206612,0.206612,0.206612,0.206612,,,,,,,0.294064,0.21851,0.239889,0.231082,0.267611,0.387189,0.206612,0.206612,0.206612,0.206612,0.108674,0.086008,0.092421,0.089779,0.100738,0.136611,0.082438,0.082438,0.043492,0.043492,23.186095,31.203099,28.422338,29.505521,25.478055,17.609489,33,33,33,33,,,,,,,,,,,2580,2580,0.206612,0.206612,0.206612,0.206612,0.206612,0.206612,0.206612,0.206612,0.082438,0.082438,33,33,, +26459,0,0.238481,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.110304,0.15,4,1.430885,1.430885,1.430885,1.430885,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,,,,,,,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,0.472192,0.472192,0.472192,0.472192,0.472192,0.472192,0.472192,0.472192,0.240866,0.240866,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,1.430885,0.472192,0.472192,10,10,, +10122,0,0.196261,1,1,1,2,4,,2,5,7th,St,1430205,2.011,2.207,0,4.205599,8,4.5,0.42056,0.42056,0.42056,0.42056,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.462031,0.558085,0.42056,0.42056,0.462031,0.558085,0.431932,0.441115,0.42056,0.42056,0.431932,0.441115,0.65154,0.514625,0.42056,0.42056,0.65154,0.514625,0.42056,0.42056,0.42056,0.42056,0.42056,0.42056,,,,,,,0.462031,0.558085,0.431932,0.441115,0.65154,0.514625,0.42056,0.42056,0.42056,0.42056,0.173936,0.202753,0.164907,0.167662,0.230789,0.189715,0.161495,0.161495,0.084673,0.084673,25.486767,21.100154,27.262812,26.695259,18.073612,22.882037,28,28,28,28,,,,,,,,,,,2649,2649,0.42056,0.42056,0.42056,0.42056,0.42056,0.42056,0.42056,0.42056,0.161495,0.161495,28,28,, +21469,0,0.225818,2,2,0,2,3,,3,5,Huron,St,4604878,1.519,1.745,0,4.838947,5,5,0.387116,0.387116,0.387116,0.387116,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.673563,0.419343,0.387116,0.387116,0.673563,0.419343,0.460019,0.461689,0.387116,0.387116,0.460019,0.461689,0.514295,0.721911,0.387116,0.387116,0.514295,0.721911,0.387116,0.387116,0.387116,0.387116,0.387116,0.387116,,,,,,,0.673563,0.419343,0.460019,0.461689,0.514295,0.721911,0.387116,0.387116,0.387116,0.387116,0.242716,0.16645,0.178653,0.179154,0.194936,0.25722,0.156782,0.156782,0.082907,0.082907,20.115482,32.310181,29.45323,29.346732,26.344892,18.768311,35,35,35,35,,,,,,,,,,,7568,7568,0.387116,0.387116,0.387116,0.387116,0.387116,0.387116,0.387116,0.387116,0.156782,0.156782,35,35,, +21589,0,0.057408,1,1,0,2,4,,3,5,Liberty,St,4603025,6.93,6.987,0,1.230164,6,4.5,0.104378,0.104378,0.104378,0.104378,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.20562,0.130818,0.104378,0.104378,0.20562,0.130818,0.139167,0.146732,0.104378,0.104378,0.139167,0.146732,0.163722,0.304205,0.104378,0.104378,0.163722,0.304205,0.104378,0.104378,0.104378,0.104378,0.104378,0.104378,,,,,,,0.20562,0.130818,0.139167,0.146732,0.163722,0.304205,0.104378,0.104378,0.104378,0.104378,0.072019,0.049579,0.052083,0.054353,0.05945,0.101595,0.041647,0.041647,0.021971,0.021971,16.751602,26.330186,24.75062,23.474475,21.038492,11.32281,33,33,33,33,,,,,,,,,,,2580,2580,0.104378,0.104378,0.104378,0.104378,0.104378,0.104378,0.104378,0.104378,0.041647,0.041647,33,33,, +26022,0,0.304755,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.530466,0.15,4,1.828531,1.828531,1.828531,1.828531,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,,,,,,,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,0.603415,0.603415,0.603415,0.603415,0.603415,0.603415,0.603415,0.603415,0.307803,0.307803,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,1.828531,0.603415,0.603415,10,10,, +26408,0,0.105901,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.269309,0.15,4,0.635407,0.635407,0.635407,0.635407,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,,,,,,,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.209684,0.209684,0.209684,0.209684,0.209684,0.209684,0.209684,0.209684,0.10696,0.10696,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.635407,0.209684,0.209684,10,10,, +26474,0,0.171664,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.678521,0.15,4,1.029986,1.029986,1.029986,1.029986,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,,,,,,,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,0.339895,0.339895,0.339895,0.339895,0.339895,0.339895,0.339895,0.339895,0.173381,0.173381,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,1.029986,0.339895,0.339895,10,10,, +26475,0,0.255722,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.479765,0.15,4,1.534334,1.534334,1.534334,1.534334,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,,,,,,,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,0.50633,0.50633,0.50633,0.50633,0.50633,0.50633,0.50633,0.50633,0.25828,0.25828,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,1.534334,0.50633,0.50633,10,10,, +30026,0,0.274847,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.889574,0.15,4,1.649081,1.649081,1.649081,1.649081,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,,,,,,,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,0.544197,0.544197,0.544197,0.544197,0.544197,0.544197,0.544197,0.544197,0.277595,0.277595,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,1.649081,0.544197,0.544197,10,10,, +30059,0,0.307503,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.589343,0.15,4,1.845016,1.845016,1.845016,1.845016,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,,,,,,,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,0.608855,0.608855,0.608855,0.608855,0.608855,0.608855,0.608855,0.608855,0.310578,0.310578,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,1.845016,0.608855,0.608855,10,10,, +30060,0,0.310485,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.65324,0.15,4,1.862907,1.862907,1.862907,1.862907,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,,,,,,,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,0.614759,0.614759,0.614759,0.614759,0.614759,0.614759,0.614759,0.614759,0.313589,0.313589,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,1.862907,0.614759,0.614759,10,10,, +22082,0,0.226851,1,1,0,2,4,,3,5,Liberty,St,4603025,6.579,6.806,0,4.861087,6,4.5,0.412456,0.412456,0.412456,0.412456,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.021846,0.473145,0.412456,0.412456,1.021846,0.473145,0.59115,0.601291,0.412456,0.412456,0.59115,0.601291,0.64783,1.28236,0.412456,0.412456,0.64783,1.28236,0.412456,0.412456,0.412456,0.412456,0.412456,0.412456,,,,,,,1.021846,0.473145,0.59115,0.601291,0.64783,1.28236,0.412456,0.412456,0.412456,0.412456,0.347387,0.182777,0.218178,0.22122,0.235182,0.425541,0.16457,0.16457,0.086822,0.086822,13.320046,28.767158,23.02468,22.636381,21.010203,10.614056,33,33,33,33,,,,,,,,,,,2580,2580,0.412456,0.412456,0.412456,0.412456,0.412456,0.412456,0.412456,0.412456,0.16457,0.16457,33,33,, +26023,0,0.273755,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.866185,0.15,4,1.642532,1.642532,1.642532,1.642532,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,,,,,,,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,0.542036,0.542036,0.542036,0.542036,0.542036,0.542036,0.542036,0.542036,0.276493,0.276493,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,1.642532,0.542036,0.542036,10,10,, +21813,0,0.123887,1,1,0,2,4,,3,5,Liberty,St,4603025,6.806,6.93,0,2.654727,6,4.5,0.22525,0.22525,0.22525,0.22525,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.531641,0.258393,0.22525,0.22525,0.531641,0.258393,0.324195,0.341689,0.22525,0.22525,0.324195,0.341689,0.381042,0.662057,0.22525,0.22525,0.381042,0.662057,0.22525,0.22525,0.22525,0.22525,0.22525,0.22525,,,,,,,0.531641,0.258393,0.324195,0.341689,0.381042,0.662057,0.22525,0.22525,0.22525,0.22525,0.181792,0.099818,0.119558,0.124807,0.136612,0.220917,0.089875,0.089875,0.047415,0.047415,13.981694,28.767158,22.928303,21.754372,19.50764,11.227493,33,33,33,33,,,,,,,,,,,2580,2580,0.22525,0.22525,0.22525,0.22525,0.22525,0.22525,0.22525,0.22525,0.089875,0.089875,33,33,, +21934,0,0.106423,1,1,1,2,3,,3,5,Jackson,Ave,4604878,1.29,1.397,0,2.280496,5,5,0.18244,0.18244,0.18244,0.18244,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.410522,0.283219,0.18244,0.18244,0.410522,0.283219,0.27572,0.294952,0.18244,0.18244,0.27572,0.294952,0.324906,0.545829,0.18244,0.18244,0.324906,0.545829,0.18244,0.18244,0.18244,0.18244,0.18244,0.18244,,,,,,,0.410522,0.283219,0.27572,0.294952,0.324906,0.545829,0.18244,0.18244,0.18244,0.18244,0.142313,0.104122,0.101872,0.107642,0.116628,0.182905,0.073888,0.073888,0.039073,0.039073,15.554331,22.545769,23.158951,21.648926,19.653033,11.698519,35,35,35,35,,,,,,,,,,,4162,4162,0.18244,0.18244,0.18244,0.18244,0.18244,0.18244,0.18244,0.18244,0.073888,0.073888,35,35,, +26468,0,0.154643,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.313778,0.15,4,0.927858,0.927858,0.927858,0.927858,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,,,,,,,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.306193,0.306193,0.306193,0.306193,0.306193,0.306193,0.306193,0.306193,0.156189,0.156189,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.927858,0.306193,0.306193,10,10,, +29962,0,0.272397,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.837088,0.15,4,1.634385,1.634385,1.634385,1.634385,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,,,,,,,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,0.539347,0.539347,0.539347,0.539347,0.539347,0.539347,0.539347,0.539347,0.275121,0.275121,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,1.634385,0.539347,0.539347,10,10,, +21683,0,0.122502,2,2,0,2,3,,3,5,Huron,St,4604878,1.397,1.519,0,2.625036,5,5,0.210003,0.210003,0.210003,0.210003,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.377281,0.22474,0.210003,0.210003,0.377281,0.22474,0.244856,0.244458,0.210003,0.210003,0.244856,0.244458,0.264815,0.402304,0.210003,0.210003,0.264815,0.402304,0.210003,0.210003,0.210003,0.210003,0.210003,0.210003,,,,,,,0.377281,0.22474,0.244856,0.244458,0.264815,0.402304,0.210003,0.210003,0.210003,0.210003,0.135235,0.089472,0.095507,0.095388,0.101495,0.142741,0.085051,0.085051,0.044976,0.044976,19.481781,32.704923,30.018085,30.066866,27.755579,18.270036,35,35,35,35,,,,,,,,,,,7568,7568,0.210003,0.210003,0.210003,0.210003,0.210003,0.210003,0.210003,0.210003,0.085051,0.085051,35,35,, +26472,0,0.165672,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.55011,0.15,4,0.994031,0.994031,0.994031,0.994031,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,,,,,,,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.32803,0.32803,0.32803,0.32803,0.32803,0.32803,0.32803,0.32803,0.167329,0.167329,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.994031,0.32803,0.32803,10,10,, +9609,0,0.082292,1,1,0,2,4,,2,5,7th,St,1430205,1.792,1.874,0,1.763392,8,4.5,0.176339,0.176339,0.176339,0.176339,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.263844,0.245231,0.176339,0.176339,0.263844,0.245231,0.221254,0.234779,0.176339,0.176339,0.221254,0.234779,0.273959,0.336258,0.176339,0.176339,0.273959,0.336258,0.176339,0.176339,0.176339,0.176339,0.176339,0.176339,,,,,,,0.263844,0.245231,0.221254,0.234779,0.273959,0.336258,0.176339,0.176339,0.176339,0.176339,0.093966,0.088382,0.081189,0.085246,0.097,0.11569,0.067714,0.067714,0.035503,0.035503,18.713695,20.134112,22.315988,21.03043,18.022737,14.683684,28,28,28,28,,,,,,,,,,,2408,2408,0.176339,0.176339,0.176339,0.176339,0.176339,0.176339,0.176339,0.176339,0.067714,0.067714,28,28,, +21371,0,0.242028,1,1,0,2,4,,3,5,Liberty,St,4603025,6.987,7.229,0,5.186304,6,4.5,0.44005,0.44005,0.44005,0.44005,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.037358,0.57952,0.44005,0.44005,1.037358,0.57952,0.615934,0.640566,0.44005,0.44005,0.615934,0.640566,0.805298,1.295918,0.44005,0.44005,0.805298,1.295918,0.44005,0.44005,0.44005,0.44005,0.44005,0.44005,,,,,,,1.037358,0.57952,0.615934,0.640566,0.805298,1.295918,0.44005,0.44005,0.44005,0.44005,0.354772,0.217421,0.228345,0.235735,0.285154,0.43234,0.17558,0.17558,0.092631,0.092631,13.998689,25.058079,23.576644,22.670035,18.032648,11.20569,33,33,33,33,,,,,,,,,,,2580,2580,0.44005,0.44005,0.44005,0.44005,0.44005,0.44005,0.44005,0.44005,0.17558,0.17558,33,33,, +9849,0,0.059919,1,1,0,2,4,,2,5,7th,St,1430205,1.732,1.792,0,1.283977,8,4.5,0.128398,0.128398,0.128398,0.128398,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.146051,0.238502,0.128398,0.128398,0.146051,0.238502,0.14636,0.153993,0.128398,0.128398,0.14636,0.153993,0.193118,0.184474,0.128398,0.128398,0.193118,0.184474,0.128398,0.128398,0.128398,0.128398,0.128398,0.128398,,,,,,,0.146051,0.238502,0.14636,0.153993,0.193118,0.184474,0.128398,0.128398,0.128398,0.128398,0.054601,0.082336,0.054693,0.056983,0.068721,0.066128,0.049305,0.049305,0.025851,0.025851,24.615572,15.0738,24.563687,23.346091,18.616285,19.488551,28,28,28,28,,,,,,,,,,,2408,2408,0.128398,0.128398,0.128398,0.128398,0.128398,0.128398,0.128398,0.128398,0.049305,0.049305,28,28,, +10386,0,0.137329,1,1,0,2,4,,2,5,7th,St,1430205,1.874,2.011,0,2.942771,8,4.5,0.294277,0.294277,0.294277,0.294277,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.364778,0.470805,0.294277,0.294277,0.364778,0.470805,0.368277,0.397031,0.294277,0.294277,0.368277,0.397031,0.546893,0.455175,0.294277,0.294277,0.546893,0.455175,0.294277,0.294277,0.294277,0.294277,0.294277,0.294277,,,,,,,0.364778,0.470805,0.368277,0.397031,0.546893,0.455175,0.294277,0.294277,0.294277,0.294277,0.134153,0.165961,0.135202,0.143829,0.188787,0.161272,0.113002,0.113002,0.059248,0.059248,22.588447,17.501429,22.37382,20.753432,15.066496,18.102383,28,28,28,28,,,,,,,,,,,2408,2408,0.294277,0.294277,0.294277,0.294277,0.294277,0.294277,0.294277,0.294277,0.113002,0.113002,28,28,, +22135,0,0.160298,1,1,0,2,4,,2,5,Liberty,St,4603025,7.229,7.389,0,3.434967,8,4.5,0.343497,0.343497,0.343497,0.343497,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.932447,0.439658,0.343497,0.343497,0.932447,0.439658,0.564324,0.579965,0.343497,0.343497,0.564324,0.579965,0.578582,1.214143,0.343497,0.343497,0.578582,1.214143,0.343497,0.343497,0.343497,0.343497,0.343497,0.343497,,,,,,,0.932447,0.439658,0.564324,0.579965,0.578582,1.214143,0.343497,0.343497,0.343497,0.343497,0.308588,0.160751,0.198151,0.202843,0.202428,0.393097,0.131903,0.131903,0.069157,0.069157,10.314698,21.87587,17.043245,16.58361,16.623252,7.921559,28,28,28,28,,,,,,,,,,,2408,2408,0.343497,0.343497,0.343497,0.343497,0.343497,0.343497,0.343497,0.343497,0.131903,0.131903,28,28,, +10551,0,0.055624,1,1,0,2,4,,3,5,Miller,Rd,1430906,4.667,4.722,0,1.191936,6,4.5,0.101134,0.101134,0.101134,0.101134,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.244565,0.122364,0.101134,0.101134,0.244565,0.122364,0.149309,0.134391,0.101134,0.101134,0.149309,0.134391,0.171107,0.2682,0.101134,0.101134,0.171107,0.2682,0.101134,0.101134,0.101134,0.101134,0.101134,0.101134,,,,,,,0.244565,0.122364,0.149309,0.134391,0.171107,0.2682,0.101134,0.101134,0.101134,0.101134,0.083382,0.046721,0.054805,0.05033,0.061344,0.090472,0.040352,0.040352,0.021289,0.021289,13.646327,27.274496,22.352428,24.833611,19.504928,12.443752,33,33,33,33,,,,,,,,,,,2580,2580,0.101134,0.101134,0.101134,0.101134,0.101134,0.101134,0.101134,0.101134,0.040352,0.040352,33,33,, +21582,0,0.088636,1,1,0,2,4,,2,5,7th,St,4603894,0,0.089,0,1.899338,8,4.5,0.189934,0.189934,0.189934,0.189934,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.242911,0.259226,0.189934,0.189934,0.242911,0.259226,0.200812,0.205903,0.189934,0.189934,0.200812,0.205903,0.287785,0.25616,0.189934,0.189934,0.287785,0.25616,0.189934,0.189934,0.189934,0.189934,0.189934,0.189934,,,,,,,0.242911,0.259226,0.200812,0.205903,0.287785,0.25616,0.189934,0.189934,0.189934,0.189934,0.088828,0.093722,0.076198,0.077725,0.10229,0.092802,0.072935,0.072935,0.03824,0.03824,21.89339,20.515447,26.483243,25.828462,18.479561,20.761056,28,28,28,28,,,,,,,,,,,2408,2408,0.189934,0.189934,0.189934,0.189934,0.189934,0.189934,0.189934,0.189934,0.072935,0.072935,28,28,, +9887,0,0.065647,1,1,1,2,4,,2,5,7th,St,1430205,2.207,2.273,0,1.406721,8,4.5,0.140672,0.140672,0.140672,0.140672,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.175192,0.201881,0.140672,0.140672,0.175192,0.201881,0.146635,0.151137,0.140672,0.140672,0.146635,0.151137,0.215484,0.198996,0.140672,0.140672,0.215484,0.198996,0.140672,0.140672,0.140672,0.140672,0.140672,0.140672,,,,,,,0.175192,0.201881,0.146635,0.151137,0.215484,0.198996,0.140672,0.140672,0.140672,0.140672,0.064374,0.072381,0.055807,0.057158,0.076462,0.071515,0.054018,0.054018,0.028322,0.028322,22.482938,19.510588,26.861347,26.061274,18.278945,19.793429,28,28,28,28,,,,,,,,,,,2649,2649,0.140672,0.140672,0.140672,0.140672,0.140672,0.140672,0.140672,0.140672,0.054018,0.054018,28,28,, +26473,0,0.167749,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.594627,0.15,4,1.006495,1.006495,1.006495,1.006495,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,,,,,,,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,0.332143,0.332143,0.332143,0.332143,0.332143,0.332143,0.332143,0.332143,0.169427,0.169427,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,1.006495,0.332143,0.332143,10,10,, +21259,0,0.009949,2,2,0,2,3,,2,5,Huron,St,4604878,1.745,1.755,0,0.213195,6,5,0.019898,0.019898,0.019898,0.019898,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.119389,0.039944,0.019898,0.019898,0.119389,0.039944,0.053665,0.051596,0.019898,0.019898,0.053665,0.051596,0.08083,0.119389,0.019898,0.019898,0.08083,0.119389,0.019898,0.019898,0.019898,0.019898,0.019898,0.019898,,,,,,,0.119389,0.039944,0.053665,0.051596,0.08083,0.119389,0.019898,0.019898,0.019898,0.019898,0.037608,0.013774,0.01789,0.01727,0.02604,0.037608,0.00776,0.00776,0.004079,0.004079,5,14.94456,11.123518,11.569544,7.385217,5,30,30,30,30,,,,,,,,,,,5504,5504,0.019898,0.019898,0.019898,0.019898,0.019898,0.019898,0.019898,0.019898,0.00776,0.00776,30,30,, +10549,0,0.116913,1,1,0,2,4,,2,5,Miller,Rd,1430906,4.771,4.888,0,2.505272,8,4.5,0.250527,0.250527,0.250527,0.250527,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.841996,0.284939,0.250527,0.250527,0.841996,0.284939,0.384759,0.364529,0.250527,0.250527,0.384759,0.364529,0.442358,0.885377,0.250527,0.250527,0.442358,0.885377,0.250527,0.250527,0.250527,0.250527,0.250527,0.250527,,,,,,,0.841996,0.284939,0.384759,0.364529,0.442358,0.885377,0.250527,0.250527,0.250527,0.250527,0.273643,0.106526,0.136472,0.130403,0.153752,0.286657,0.096202,0.096202,0.050439,0.050439,8.331115,24.61844,18.231583,19.243373,15.857665,7.922913,28,28,28,28,,,,,,,,,,,2408,2408,0.250527,0.250527,0.250527,0.250527,0.250527,0.250527,0.250527,0.250527,0.096202,0.096202,28,28,, +22128,0,0.154755,1,1,0,2,4,,2,5,7th,St,4603894,0.161,0.315,0,3.31617,8,4.5,0.331617,0.331617,0.331617,0.331617,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.385402,0.414898,0.331617,0.331617,0.385402,0.414898,0.341925,0.346519,0.331617,0.331617,0.341925,0.346519,0.438248,0.399688,0.331617,0.331617,0.438248,0.399688,0.331617,0.331617,0.331617,0.331617,0.331617,0.331617,,,,,,,0.385402,0.414898,0.341925,0.346519,0.438248,0.399688,0.331617,0.331617,0.331617,0.331617,0.143476,0.152325,0.130433,0.131811,0.15933,0.147762,0.127341,0.127341,0.066766,0.066766,24.092426,22.379633,27.155912,26.795877,21.187272,23.231325,28,28,28,28,,,,,,,,,,,2408,2408,0.331617,0.331617,0.331617,0.331617,0.331617,0.331617,0.331617,0.331617,0.127341,0.127341,28,28,, +26396,0,0.123028,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.636321,0.15,4,0.73817,0.73817,0.73817,0.73817,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,,,,,,,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.243596,0.243596,0.243596,0.243596,0.243596,0.243596,0.243596,0.243596,0.124259,0.124259,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.73817,0.243596,0.243596,10,10,, +26405,0,0.154806,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.317275,0.15,4,0.928837,0.928837,0.928837,0.928837,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,,,,,,,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.306516,0.306516,0.306516,0.306516,0.306516,0.306516,0.306516,0.306516,0.156354,0.156354,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.928837,0.306516,0.306516,10,10,, +21363,0,0.072139,1,1,0,2,4,,2,5,7th,St,4603894,0.089,0.161,0,1.545842,8,4.5,0.154584,0.154584,0.154584,0.154584,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.179656,0.193435,0.154584,0.154584,0.179656,0.193435,0.159393,0.161534,0.154584,0.154584,0.159393,0.161534,0.204534,0.186316,0.154584,0.154584,0.204534,0.186316,0.154584,0.154584,0.154584,0.154584,0.154584,0.154584,,,,,,,0.179656,0.193435,0.159393,0.161534,0.204534,0.186316,0.154584,0.154584,0.154584,0.154584,0.066882,0.071016,0.060803,0.061445,0.074345,0.06888,0.05936,0.05936,0.031123,0.031123,24.092426,22.376307,27.155273,26.795337,21.162033,23.231325,28,28,28,28,,,,,,,,,,,2408,2408,0.154584,0.154584,0.154584,0.154584,0.154584,0.154584,0.154584,0.154584,0.05936,0.05936,28,28,, +10550,0,0.048483,1,1,0,2,4,,2,5,Miller,Rd,1430906,4.722,4.771,0,1.03893,8,4.5,0.103893,0.103893,0.103893,0.103893,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.448768,0.185024,0.103893,0.103893,0.448768,0.185024,0.264194,0.241284,0.103893,0.103893,0.264194,0.241284,0.367793,0.547993,0.103893,0.103893,0.367793,0.547993,0.103893,0.103893,0.103893,0.103893,0.103893,0.103893,,,,,,,0.448768,0.185024,0.264194,0.241284,0.367793,0.547993,0.103893,0.103893,0.103893,0.103893,0.143357,0.064234,0.087985,0.081112,0.119065,0.173125,0.039895,0.039895,0.020917,0.020917,6.482195,15.722264,11.010861,12.056362,7.909344,5.30847,28,28,28,28,,,,,,,,,,,2408,2408,0.103893,0.103893,0.103893,0.103893,0.103893,0.103893,0.103893,0.103893,0.039895,0.039895,28,28,, +10543,0,0.216321,1,1,0,2,5,,3,5,Newport,Rd,1430907,0.453,0.669,0,4.635447,8,4.5,0.51917,0.51917,0.51917,0.51917,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.520889,0.52236,0.51917,0.51917,0.520889,0.52236,0.519565,0.520735,0.51917,0.51917,0.519565,0.520735,0.520261,0.520341,0.51917,0.51917,0.520261,0.520341,0.51917,0.51917,0.51917,0.51917,0.51917,0.51917,,,,,,,0.520889,0.52236,0.519565,0.520735,0.520261,0.520341,0.51917,0.51917,0.51917,0.51917,0.195204,0.195646,0.194807,0.195158,0.195016,0.19504,0.194689,0.194689,0.101671,0.101671,24.917505,24.847329,24.980997,24.924843,24.947598,24.943743,25,25,25,25,,,,,,,,,,,2408,2408,0.51917,0.51917,0.51917,0.51917,0.51917,0.51917,0.51917,0.51917,0.194689,0.194689,25,25,, +10553,0,0.146895,1,1,0,2,4,,3,5,Miller,Rd,1430906,4.339,4.486,0,3.147754,6,4.5,0.267082,0.267082,0.267082,0.267082,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.559081,0.297054,0.267082,0.267082,0.559081,0.297054,0.378956,0.329638,0.267082,0.267082,0.378956,0.329638,0.454133,0.554336,0.267082,0.267082,0.454133,0.554336,0.267082,0.267082,0.267082,0.267082,0.267082,0.267082,,,,,,,0.559081,0.297054,0.378956,0.329638,0.454133,0.554336,0.267082,0.267082,0.267082,0.267082,0.194165,0.115557,0.140128,0.125333,0.162681,0.192742,0.106566,0.106566,0.056221,0.056221,15.764643,29.670446,23.257888,26.737525,19.407763,15.899577,33,33,33,33,,,,,,,,,,,2580,2580,0.267082,0.267082,0.267082,0.267082,0.267082,0.267082,0.267082,0.267082,0.106566,0.106566,33,33,, +10848,0,0.402253,1,1,0,2,5,,3,5,Sunset,Rd,1449801,0.679,1.082,0,8.619699,8,4.5,0.965406,0.965406,0.965406,0.965406,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.965407,0.983755,0.965406,0.965406,0.965407,0.983755,0.965407,0.965408,0.965406,0.965406,0.965407,0.965408,0.993787,0.965757,0.965406,0.965406,0.993787,0.965757,0.965406,0.965406,0.965406,0.965406,0.965406,0.965406,,,,,,,0.965407,0.983755,0.965407,0.965408,0.993787,0.965757,0.965406,0.965406,0.965406,0.965406,0.362027,0.367532,0.362027,0.362028,0.370542,0.362133,0.362027,0.362027,0.189059,0.189059,24.999992,24.533699,24.99999,24.999961,24.286047,24.990913,25,25,25,25,,,,,,,,,,,2408,2408,0.965406,0.965406,0.965406,0.965406,0.965406,0.965406,0.965406,0.965406,0.362027,0.362027,25,25,, +11030,0,0.313617,1,1,0,2,5,,3,5,Brooks,St,1446307,0.376,0.69,0,6.720362,8,4.5,0.752681,0.752681,0.752681,0.752681,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.752681,0.7643,0.752681,0.752681,0.752681,0.7643,0.752681,0.752681,0.752681,0.752681,0.752681,0.752681,0.769633,0.752903,0.752681,0.752681,0.769633,0.752903,0.752681,0.752681,0.752681,0.752681,0.752681,0.752681,,,,,,,0.752681,0.7643,0.752681,0.752681,0.769633,0.752903,0.752681,0.752681,0.752681,0.752681,0.282255,0.285741,0.282255,0.282255,0.287341,0.282322,0.282255,0.282255,0.1474,0.1474,25,24.61993,25,24.999996,24.449337,24.992599,25,25,25,25,,,,,,,,,,,2408,2408,0.752681,0.752681,0.752681,0.752681,0.752681,0.752681,0.752681,0.752681,0.282255,0.282255,25,25,, +26398,0,0.232409,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.980196,0.15,4,1.394455,1.394455,1.394455,1.394455,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,,,,,,,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,0.46017,0.46017,0.46017,0.46017,0.46017,0.46017,0.46017,0.46017,0.234733,0.234733,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,1.394455,0.46017,0.46017,10,10,, +26400,0,0.229701,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.922166,0.15,4,1.378206,1.378206,1.378206,1.378206,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,,,,,,,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,0.454808,0.454808,0.454808,0.454808,0.454808,0.454808,0.454808,0.454808,0.231998,0.231998,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,1.378206,0.454808,0.454808,10,10,, +10544,0,0.377428,1,1,0,2,5,,3,5,Newport,Rd,1430907,0.075,0.453,0,8.087739,8,4.5,0.905827,0.905827,0.905827,0.905827,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.91487,0.911416,0.905827,0.905827,0.91487,0.911416,0.907111,0.910697,0.905827,0.905827,0.907111,0.910697,0.908822,0.919764,0.905827,0.905827,0.908822,0.919764,0.905827,0.905827,0.905827,0.905827,0.905827,0.905827,,,,,,,0.91487,0.911416,0.907111,0.910697,0.908822,0.919764,0.905827,0.905827,0.905827,0.905827,0.342398,0.341362,0.34007,0.341146,0.340584,0.343866,0.339685,0.339685,0.177391,0.177391,24.752893,24.846699,24.964612,24.86631,24.917597,24.621165,25,25,25,25,,,,,,,,,,,2408,2408,0.905827,0.905827,0.905827,0.905827,0.905827,0.905827,0.905827,0.905827,0.339685,0.339685,25,25,, +11230,0,0.175638,1,1,0,2,5,,3,5,Brooks,St,1446307,0.201,0.376,0,3.763663,8,4.5,0.42153,0.42153,0.42153,0.42153,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.422625,0.565385,0.42153,0.42153,0.422625,0.565385,0.423204,0.42422,0.42153,0.42153,0.423204,0.42422,0.624836,0.442455,0.42153,0.42153,0.624836,0.442455,0.42153,0.42153,0.42153,0.42153,0.42153,0.42153,,,,,,,0.422625,0.565385,0.423204,0.42422,0.624836,0.442455,0.42153,0.42153,0.42153,0.42153,0.158402,0.20123,0.158576,0.158881,0.219066,0.164351,0.158074,0.158074,0.08255,0.08255,24.935219,18.63909,24.901143,24.841469,16.865631,23.817702,25,25,25,25,,,,,,,,,,,2408,2408,0.42153,0.42153,0.42153,0.42153,0.42153,0.42153,0.42153,0.42153,0.158074,0.158074,25,25,, +26402,0,0.394864,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.461362,0.15,4,2.369181,2.369181,2.369181,2.369181,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,,,,,,,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,0.78183,0.78183,0.78183,0.78183,0.78183,0.78183,0.78183,0.78183,0.398812,0.398812,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,2.369181,0.78183,0.78183,10,10,, +26466,0,0.211546,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.533127,0.15,4,1.269275,1.269275,1.269275,1.269275,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.269276,1.269275,1.269275,1.269275,1.269276,1.269275,1.269275,1.269275,1.269275,1.269275,1.269275,1.269275,1.269275,1.269276,1.269275,1.269275,1.269275,1.269276,1.269275,1.269275,1.269275,1.269275,1.269275,1.269275,,,,,,,1.269276,1.269275,1.269275,1.269275,1.269275,1.269276,1.269275,1.269275,1.269275,1.269275,0.418861,0.418861,0.418861,0.418861,0.418861,0.418861,0.418861,0.418861,0.213661,0.213661,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.269275,1.269275,1.269275,1.269275,1.269275,1.269275,1.269275,1.269275,0.418861,0.418861,10,10,, +10581,0,0.127112,1,1,0,2,5,,3,5,Summit,St,1430803,0,0.127,0,2.723821,8,4.5,0.305068,0.305068,0.305068,0.305068,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.349473,0.307399,0.305068,0.305068,0.349473,0.307399,0.307353,0.306389,0.305068,0.305068,0.307353,0.306389,0.318138,0.365414,0.305068,0.305068,0.318138,0.365414,0.305068,0.305068,0.305068,0.305068,0.305068,0.305068,,,,,,,0.349473,0.307399,0.307353,0.306389,0.318138,0.365414,0.305068,0.305068,0.305068,0.305068,0.127722,0.1151,0.115086,0.114797,0.118321,0.132504,0.1144,0.1144,0.059742,0.059742,21.823435,24.810408,24.814155,24.8922,23.972938,20.871412,25,25,25,25,,,,,,,,,,,2408,2408,0.305068,0.305068,0.305068,0.305068,0.305068,0.305068,0.305068,0.305068,0.1144,0.1144,25,25,, +11229,0,0.024748,1,1,0,2,5,,3,5,Brooks,St,1446307,0.69,0.715,0,0.530319,8,4.5,0.059396,0.059396,0.059396,0.059396,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.059396,0.06037,0.059396,0.059396,0.059396,0.06037,0.059396,0.059396,0.059396,0.059396,0.059396,0.059396,0.060775,0.059416,0.059396,0.059396,0.060775,0.059416,0.059396,0.059396,0.059396,0.059396,0.059396,0.059396,,,,,,,0.059396,0.06037,0.059396,0.059396,0.060775,0.059416,0.059396,0.059396,0.059396,0.059396,0.022273,0.022566,0.022273,0.022273,0.022687,0.022279,0.022273,0.022273,0.011632,0.011632,25,24.596662,24.999999,24.999994,24.432468,24.991612,25,25,25,25,,,,,,,,,,,2408,2408,0.059396,0.059396,0.059396,0.059396,0.059396,0.059396,0.059396,0.059396,0.022273,0.022273,25,25,, +10541,0,1.061681,1,1,0,2,5,,4,5,Newport,Rd,1430907,1.397,2.458,0,22.75031,5.8,4.5,2.359291,2.359291,2.359291,2.359291,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.359291,2.366289,2.359291,2.359291,2.359291,2.366289,2.359291,2.359291,2.359291,2.359291,2.359291,2.359291,2.359956,2.359291,2.359291,2.359291,2.359956,2.359291,2.359291,2.359291,2.359291,2.359291,2.359291,2.359291,,,,,,,2.359291,2.366289,2.359291,2.359291,2.359956,2.359291,2.359291,2.359291,2.359291,2.359291,0.89889,0.900989,0.89889,0.89889,0.899089,0.89889,0.89889,0.89889,0.470679,0.470679,27,26.920151,27,27,26.992394,27,27,27,27,27,,,,,,,,,,,2580,2580,2.359291,2.359291,2.359291,2.359291,2.359291,2.359291,2.359291,2.359291,0.89889,0.89889,27,27,, +21618,0,1.43199,1,1,0,2,4,,4,5,Huron River,Dr,4604062,6.714,8.146,0,30.685495,4.5,4.5,2.261037,2.261037,2.261037,2.261037,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.261487,2.261037,2.261037,2.261037,2.261487,2.261037,2.261037,2.261037,2.261037,2.261037,2.261037,2.261037,2.261619,2.261037,2.261037,2.261037,2.261619,2.261037,2.261037,2.261037,2.261037,2.261037,2.261037,2.261037,,,,,,,2.261487,2.261037,2.261037,2.261037,2.261619,2.261037,2.261037,2.261037,2.261037,2.261037,0.936204,0.936069,0.936069,0.936069,0.936244,0.936069,0.936069,0.936069,0.496674,0.496674,37.992433,38,37.999994,37.999999,37.99022,38,38,38,38,38,,,,,,,,,,,3096,3096,2.261037,2.261037,2.261037,2.261037,2.261037,2.261037,2.261037,2.261037,0.936069,0.936069,38,38,, +26253,0,0.802749,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.201771,0.15,4,3.210997,3.210997,3.210997,3.210997,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,,,,,,,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,1.107794,1.107794,1.107794,1.107794,1.107794,1.107794,1.107794,1.107794,0.569952,0.569952,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,3.210997,1.107794,1.107794,15,15,, +11462,0,0.417514,1,1,0,2,4,,4,5,Maple,Rd,1452206,3.722,4.14,0,8.946721,4.5,4.5,0.659232,0.659232,0.659232,0.659232,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.659249,0.659232,0.659232,0.659232,0.659249,0.659232,0.659237,0.659236,0.659232,0.659232,0.659237,0.659236,0.659371,0.659232,0.659232,0.659232,0.659371,0.659232,0.659232,0.659232,0.659232,0.659232,0.659232,0.659232,,,,,,,0.659249,0.659232,0.659237,0.659236,0.659371,0.659232,0.659232,0.659232,0.659232,0.659232,0.272927,0.272922,0.272924,0.272923,0.272964,0.272922,0.272922,0.272922,0.144811,0.144811,37.999051,38,37.999694,37.99979,37.991996,38,38,38,38,38,,,,,,,,,,,3096,3096,0.659232,0.659232,0.659232,0.659232,0.659232,0.659232,0.659232,0.659232,0.272922,0.272922,38,38,, +11244,0,0.123027,1,1,0,2,4,,4,5,Maple,Rd,1452206,3.599,3.722,0,2.636295,4.5,4.5,0.194253,0.194253,0.194253,0.194253,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.195189,0.194254,0.194253,0.194253,0.195189,0.194254,0.194348,0.194291,0.194253,0.194253,0.194348,0.194291,0.195016,0.19457,0.194253,0.194253,0.195016,0.19457,0.194253,0.194253,0.194253,0.194253,0.194253,0.194253,,,,,,,0.195189,0.194254,0.194348,0.194291,0.195016,0.19457,0.194253,0.194253,0.194253,0.194253,0.080702,0.080421,0.080449,0.080432,0.08065,0.080516,0.080421,0.080421,0.042671,0.042671,37.817799,37.999772,37.981444,37.992613,37.851463,37.938134,38,38,38,38,,,,,,,,,,,3096,3096,0.194253,0.194253,0.194253,0.194253,0.194253,0.194253,0.194253,0.194253,0.080421,0.080421,38,38,, +11307,0,0.068215,1,1,0,2,4,,4,5,Maple,Rd,1452206,4.14,4.208,0,1.461745,4.5,4.5,0.107708,0.107708,0.107708,0.107708,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.10771,0.107836,0.107708,0.107708,0.10771,0.107836,0.107709,0.107709,0.107708,0.107708,0.107709,0.107709,0.108044,0.107708,0.107708,0.107708,0.108044,0.107708,0.107708,0.107708,0.107708,0.107708,0.107708,0.107708,,,,,,,0.10771,0.107836,0.107709,0.107709,0.108044,0.107708,0.107708,0.107708,0.107708,0.107708,0.044592,0.044629,0.044591,0.044591,0.044692,0.044591,0.044591,0.044591,0.02366,0.02366,37.999191,37.954851,37.999547,37.999659,37.881573,37.999999,38,38,38,38,,,,,,,,,,,3096,3096,0.107708,0.107708,0.107708,0.107708,0.107708,0.107708,0.107708,0.107708,0.044591,0.044591,38,38,, +26371,0,0.431204,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.240081,0.15,4,1.724815,1.724815,1.724815,1.724815,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,,,,,,,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,0.595061,0.595061,0.595061,0.595061,0.595061,0.595061,0.595061,0.595061,0.306155,0.306155,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,1.724815,0.595061,0.595061,15,15,, +26373,0,0.025852,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,0.553969,0.15,4,0.103408,0.103408,0.103408,0.103408,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,,,,,,,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.035676,0.035676,0.035676,0.035676,0.035676,0.035676,0.035676,0.035676,0.018355,0.018355,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.103408,0.035676,0.035676,15,15,, +5599,0,1.161954,1,1,0,2,4,,5,8,M 36,,932308,13.324,14.485,0,24.899015,3,4,1.742931,1.742931,1.742931,1.742931,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.017646,1.816222,1.742931,1.742931,2.017646,1.816222,1.839516,1.804284,1.742931,1.742931,1.839516,1.804284,1.942545,2.075565,1.742931,1.742931,1.942545,2.075565,1.742931,1.742931,1.742931,1.742931,1.742931,1.742931,,,,,,,2.017646,1.816222,1.839516,1.804284,1.942545,2.075565,1.742931,1.742931,1.742931,1.742931,0.814446,0.754018,0.761006,0.750437,0.791915,0.831821,0.732031,0.732031,0.389255,0.389255,34.553753,38.385856,37.899782,38.639837,35.889635,33.58952,40,40,40,40,,,,,,,,,,,3096,3096,1.742931,1.742931,1.742931,1.742931,1.742931,1.742931,1.742931,1.742931,0.732031,0.732031,40,40,, +9975,0,0.891924,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,13.725,14.616,0,19.112649,3,4,1.337885,1.337885,1.337885,1.337885,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.984579,1.35896,1.337885,1.337885,1.984579,1.35896,1.363885,1.354285,1.337885,1.337885,1.363885,1.354285,1.448744,1.845666,1.337885,1.337885,1.448744,1.845666,1.337885,1.337885,1.337885,1.337885,1.337885,1.337885,,,,,,,1.984579,1.35896,1.363885,1.354285,1.448744,1.845666,1.337885,1.337885,1.337885,1.337885,0.75592,0.568234,0.569712,0.566832,0.59517,0.714246,0.561912,0.561912,0.298794,0.298794,26.96562,39.379675,39.237484,39.515635,36.93917,28.995177,40,40,40,40,,,,,,,,,,,3096,3096,1.337885,1.337885,1.337885,1.337885,1.337885,1.337885,1.337885,1.337885,0.561912,0.561912,40,40,, +10514,-1,1.567687,0,2,0,1,2,,5,5,S US 23,,1431105,5.841,7.408,0,,1.02,7,,1.343731,,1.343731,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.479482,,1.343731,,1.479482,,1.353695,,1.343731,,1.353695,,1.435515,,1.343731,,1.435515,,1.343731,,1.343731,,1.343731,,,,,,,,1.479482,,1.353695,,1.435515,,1.343731,,1.343731,,0.726028,,0.688292,,0.712838,,0.685303,,0.374005,,63.577128,,69.48477,,65.524356,,70,,70,,,,,,,,,,,,15136,,1.343731,,1.343731,,1.343731,,1.343731,,0.685303,,70,, +10527,1,1.624209,2,0,0,1,2,,5,5,N US 23,,1431003,5.801,7.424,0,,1.02,7,1.392179,,1.392179,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.438564,,1.392179,,1.438564,,1.398765,,1.392179,,1.398765,,1.423661,,1.392179,,1.423661,,1.392179,,1.392179,,1.392179,,,,,,,,1.438564,,1.398765,,1.423661,,1.392179,,1.392179,,0.723927,,0.711987,,0.719456,,0.710011,,0.38749,,67.74294,,69.670406,,68.452052,,70,,70,,,,,,,,,,,,15136,,1.392179,,1.392179,,1.392179,,1.392179,,0.710011,,70,,, +11047,0,1.675192,1,1,0,2,5,,5,5,Main,St,1446105,0.088,1.762,0,35.896971,3.7,5,3.350384,3.350384,3.350384,3.350384,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.350431,3.350385,3.350384,3.350384,3.350431,3.350385,3.350384,3.350384,3.350384,3.350384,3.350384,3.350384,3.355756,3.350384,3.350384,3.350384,3.355756,3.350384,3.350384,3.350384,3.350384,3.350384,3.350384,3.350384,,,,,,,3.350431,3.350385,3.350384,3.350384,3.355756,3.350384,3.350384,3.350384,3.350384,3.350384,1.306664,1.30665,1.30665,1.30665,1.308261,1.30665,1.30665,1.30665,0.686829,0.686829,29.999579,29.999995,30,30,29.951972,30,30,30,30,30,,,,,,,,,,,2580,2580,3.350384,3.350384,3.350384,3.350384,3.350384,3.350384,3.350384,3.350384,1.30665,1.30665,30,30,, +11134,0,1.527018,1,1,0,2,6,GRV,5,5,Webster Church,Rd,1445610,2.291,3.817,0,32.721823,5.55,5,3.664844,3.664844,3.664844,3.664844,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.664844,3.664851,3.664844,3.664844,3.664844,3.664851,3.664844,3.664844,3.664844,3.664844,3.664844,3.664844,3.664845,3.664844,3.664844,3.664844,3.664845,3.664844,3.664844,3.664844,3.664844,3.664844,3.664844,3.664844,,,,,,,3.664844,3.664851,3.664844,3.664844,3.664845,3.664844,3.664844,3.664844,3.664844,3.664844,1.374317,1.374319,1.374317,1.374317,1.374317,1.374317,1.374317,1.374317,0.717699,0.717699,25,24.999952,25,25,24.999997,25,25,25,25,25,,,,,,,,,,,2236,2236,3.664844,3.664844,3.664844,3.664844,3.664844,3.664844,3.664844,3.664844,1.374317,1.374317,25,25,, +11137,0,2.003141,1,1,0,2,5,,5,5,Mast,Rd,1445502,3.009,5.012,0,42.924443,3.7,5,4.006281,4.006281,4.006281,4.006281,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.006286,4.006317,4.006281,4.006281,4.006286,4.006317,4.006282,4.006282,4.006281,4.006281,4.006282,4.006282,4.006317,4.006289,4.006281,4.006281,4.006317,4.006289,4.006281,4.006281,4.006281,4.006281,4.006281,4.006281,,,,,,,4.006286,4.006317,4.006282,4.006282,4.006317,4.006289,4.006281,4.006281,4.006281,4.006281,1.562451,1.56246,1.56245,1.56245,1.56246,1.562452,1.56245,1.56245,0.821288,0.821288,29.999967,29.999734,29.999996,29.999997,29.999732,29.999945,30,30,30,30,,,,,,,,,,,2580,2580,4.006281,4.006281,4.006281,4.006281,4.006281,4.006281,4.006281,4.006281,1.56245,1.56245,30,30,, +11341,0,0.381124,1,1,0,2,6,GRV,5,5,Valentine,Rd,1445706,0.88,1.261,0,8.166933,5.55,5,0.914697,0.914697,0.914697,0.914697,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.914698,0.914697,0.914697,0.914697,0.914698,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,,,,,,,0.914698,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.343012,0.343011,0.343011,0.343011,0.343011,0.343011,0.343011,0.343011,0.179128,0.179128,24.999952,25,25,25,25,24.999997,25,25,25,25,,,,,,,,,,,2236,2236,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.914697,0.343011,0.343011,25,25,, +19857,0,0.857709,1,1,0,2,7,GRV,5,8,Merrill,Rd,4104136,0.612,1.47,0,18.379481,5.55,5,2.573127,2.573127,2.573127,2.573127,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.573127,2.574173,2.573127,2.573127,2.573127,2.574173,2.573128,2.573128,2.573127,2.573127,2.573128,2.573128,2.573143,2.573128,2.573127,2.573127,2.573143,2.573128,2.573127,2.573127,2.573127,2.573127,2.573127,2.573127,,,,,,,2.573127,2.574173,2.573128,2.573128,2.573143,2.573128,2.573127,2.573127,2.573127,2.573127,0.926326,0.92664,0.926326,0.926326,0.926331,0.926326,0.926326,0.926326,0.480317,0.480317,19.999999,19.991876,19.999998,19.999999,19.999875,19.999995,20,20,20,20,,,,,,,,,,,2236,2236,2.573127,2.573127,2.573127,2.573127,2.573127,2.573127,2.573127,2.573127,0.926326,0.926326,20,20,, +19860,0,0.922023,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,3.187,4.108,0,19.757643,3.7,5,1.844047,1.844047,1.844047,1.844047,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.085201,1.849451,1.844047,1.844047,2.085201,1.849451,1.867264,1.860155,1.844047,1.844047,1.867264,1.860155,1.856418,1.937131,1.844047,1.844047,1.856418,1.937131,1.844047,1.844047,1.844047,1.844047,1.844047,1.844047,,,,,,,2.085201,1.849451,1.867264,1.860155,1.856418,1.937131,1.844047,1.844047,1.844047,1.844047,0.791525,0.720799,0.726143,0.724011,0.72289,0.747104,0.719178,0.719178,0.37803,0.37803,26.530484,29.912341,29.626985,29.740204,29.800074,28.558417,30,30,30,30,,,,,,,,,,,2580,2580,1.844047,1.844047,1.844047,1.844047,1.844047,1.844047,1.844047,1.844047,0.719178,0.719178,30,30,, +24623,0,1.290626,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,27.656275,0.15,4,5.162505,5.162505,5.162505,5.162505,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,,,,,,,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,1.781064,1.781064,1.781064,1.781064,1.781064,1.781064,1.781064,1.781064,0.916345,0.916345,14.999998,15,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,5.162505,1.781064,1.781064,15,15,, +24624,0,1.321016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.307477,0.15,4,5.284062,5.284062,5.284062,5.284062,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,,,,,,,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,1.823002,1.823002,1.823002,1.823002,1.823002,1.823002,1.823002,1.823002,0.937921,0.937921,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,5.284062,1.823002,1.823002,15,15,, +26480,0,0.635161,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.610596,0.15,4,2.540645,2.540645,2.540645,2.540645,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,,,,,,,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,0.876522,0.876522,0.876522,0.876522,0.876522,0.876522,0.876522,0.876522,0.450964,0.450964,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,2.540645,0.876522,0.876522,15,15,, +26487,0,1.026258,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.991238,0.15,4,4.105031,4.105031,4.105031,4.105031,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,,,,,,,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,1.416236,1.416236,1.416236,1.416236,1.416236,1.416236,1.416236,1.416236,0.728643,0.728643,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,4.105031,1.416236,1.416236,15,15,, +28207,0,1.8355,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.332145,0.15,4,7.342,7.342,7.342,7.342,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.342001,7.342,7.342,7.342,7.342001,7.342,7.342,7.342,7.342,7.342,7.342,7.342,7.342,7.342001,7.342,7.342,7.342,7.342001,7.342,7.342,7.342,7.342,7.342,7.342,,,,,,,7.342001,7.342,7.342,7.342,7.342,7.342001,7.342,7.342,7.342,7.342,2.53299,2.53299,2.53299,2.53299,2.53299,2.53299,2.53299,2.53299,1.303205,1.303205,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.342,7.342,7.342,7.342,7.342,7.342,7.342,7.342,2.53299,2.53299,15,15,, +30152,0,1.248355,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.750457,0.15,4,4.993419,4.993419,4.993419,4.993419,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,,,,,,,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,1.722729,1.722729,1.722729,1.722729,1.722729,1.722729,1.722729,1.722729,0.886332,0.886332,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,4.993419,1.722729,1.722729,15,15,, +9990,0,1.57268,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,11.067,12.639,0,33.700275,3,4,2.359019,2.359019,2.359019,2.359019,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.538272,2.385979,2.359019,2.359019,2.538272,2.385979,2.373298,2.368563,2.359019,2.359019,2.373298,2.368563,2.468602,2.586039,2.359019,2.359019,2.468602,2.586039,2.359019,2.359019,2.359019,2.359019,2.359019,2.359019,,,,,,,2.538272,2.385979,2.373298,2.368563,2.468602,2.586039,2.359019,2.359019,2.359019,2.359019,1.044564,0.998876,0.995072,0.993651,1.023663,1.058894,0.990788,0.990788,0.526848,0.526848,37.175196,39.548036,39.759336,39.838826,38.224375,36.488533,40,40,40,40,,,,,,,,,,,3096,3096,2.359019,2.359019,2.359019,2.359019,2.359019,2.359019,2.359019,2.359019,0.990788,0.990788,40,40,, +11138,0,1.998898,1,1,0,2,5,,5,5,Mast,Rd,1445502,0,1.998,0,42.833532,3.7,5,3.997796,3.997796,3.997796,3.997796,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.997929,4.073575,3.997796,3.997796,3.997929,4.073575,3.998704,3.999188,3.997796,3.997796,3.998704,3.999188,4.067822,4.001143,3.997796,3.997796,4.067822,4.001143,3.997796,3.997796,3.997796,3.997796,3.997796,3.997796,,,,,,,3.997929,4.073575,3.998704,3.999188,4.067822,4.001143,3.997796,3.997796,3.997796,3.997796,1.55918,1.581874,1.559413,1.559558,1.580148,1.560145,1.559141,1.559141,0.819548,0.819548,29.999001,29.441925,29.993187,29.98956,29.483566,29.974907,30,30,30,30,,,,,,,,,,,2580,2580,3.997796,3.997796,3.997796,3.997796,3.997796,3.997796,3.997796,3.997796,1.559141,1.559141,30,30,, +11148,0,1.940728,1,1,0,2,5,,4,5,Joy,Rd,1445109,0,1.94,0,41.58702,5.8,4.5,4.312728,4.312728,4.312728,4.312728,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.312741,4.312729,4.312728,4.312728,4.312741,4.312729,4.312728,4.312728,4.312728,4.312728,4.312728,4.312728,4.312728,4.31276,4.312728,4.312728,4.312728,4.31276,4.312728,4.312728,4.312728,4.312728,4.312728,4.312728,,,,,,,4.312741,4.312729,4.312728,4.312728,4.312728,4.31276,4.312728,4.312728,4.312728,4.312728,1.643153,1.64315,1.643149,1.643149,1.64315,1.643159,1.643149,1.643149,0.860389,0.860389,26.99992,26.999997,27,26.999999,26.999997,26.999799,27,27,27,27,,,,,,,,,,,2580,2580,4.312728,4.312728,4.312728,4.312728,4.312728,4.312728,4.312728,4.312728,1.643149,1.643149,27,27,, +11353,0,1.308541,1,1,0,2,5,,5,5,Webster Church,Rd,1445610,0.983,2.291,0,28.040168,3.7,5,2.617082,2.617082,2.617082,2.617082,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.617424,2.619666,2.617082,2.617082,2.617424,2.619666,2.617092,2.617096,2.617082,2.617082,2.617092,2.617096,2.618995,2.617718,2.617082,2.617082,2.618995,2.617718,2.617082,2.617082,2.617082,2.617082,2.617082,2.617082,,,,,,,2.617424,2.619666,2.617092,2.617096,2.618995,2.617718,2.617082,2.617082,2.617082,2.617082,1.020765,1.021437,1.020665,1.020666,1.021236,1.020853,1.020662,1.020662,0.536502,0.536502,29.99608,29.970411,29.999893,29.999841,29.978087,29.992714,30,30,30,30,,,,,,,,,,,2580,2580,2.617082,2.617082,2.617082,2.617082,2.617082,2.617082,2.617082,2.617082,1.020662,1.020662,30,30,, +24619,0,0.663456,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.216922,0.15,4,2.653826,2.653826,2.653826,2.653826,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,,,,,,,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,0.91557,0.91557,0.91557,0.91557,0.91557,0.91557,0.91557,0.91557,0.471054,0.471054,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,2.653826,0.91557,0.91557,15,15,, +26481,0,1.634952,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.034692,0.15,4,6.539809,6.539809,6.539809,6.539809,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,,,,,,,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,2.256234,2.256234,2.256234,2.256234,2.256234,2.256234,2.256234,2.256234,1.160816,1.160816,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,6.539809,2.256234,2.256234,15,15,, +26866,0,1.145981,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.556732,0.15,4,4.583923,4.583923,4.583923,4.583923,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,,,,,,,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,1.581454,1.581454,1.581454,1.581454,1.581454,1.581454,1.581454,1.581454,0.813646,0.813646,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,4.583923,1.581454,1.581454,15,15,, +26867,0,1.302502,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,27.910748,0.15,4,5.210006,5.210006,5.210006,5.210006,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,,,,,,,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,1.797452,1.797452,1.797452,1.797452,1.797452,1.797452,1.797452,1.797452,0.924776,0.924776,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,5.210006,1.797452,1.797452,15,15,, +11139,0,0.263605,1,1,0,2,5,,4,5,Central,St,4605379,0.323,0.587,0,5.648686,5.8,4.5,0.58579,0.58579,0.58579,0.58579,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.587076,0.745232,0.58579,0.58579,0.587076,0.745232,0.588122,0.589088,0.58579,0.58579,0.588122,0.589088,0.671375,0.598747,0.58579,0.58579,0.671375,0.598747,0.58579,0.58579,0.58579,0.58579,0.58579,0.58579,,,,,,,0.587076,0.745232,0.588122,0.589088,0.671375,0.598747,0.58579,0.58579,0.58579,0.58579,0.223572,0.271019,0.223886,0.224175,0.248861,0.227073,0.223186,0.223186,0.116865,0.116865,26.940823,21.223352,26.892925,26.848838,23.558104,26.41571,27,27,27,27,,,,,,,,,,,2580,2580,0.58579,0.58579,0.58579,0.58579,0.58579,0.58579,0.58579,0.58579,0.223186,0.223186,27,27,, +24637,0,0.291496,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.246351,0.15,4,1.165985,1.165985,1.165985,1.165985,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,,,,,,,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,0.402265,0.402265,0.402265,0.402265,0.402265,0.402265,0.402265,0.402265,0.206962,0.206962,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,1.165985,0.402265,0.402265,15,15,, +11358,0,0.022326,1,1,0,2,5,,5,5,Mast,Rd,4605379,0.587,0.609,0,0.478413,3.7,5,0.044652,0.044652,0.044652,0.044652,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.044672,0.087607,0.044652,0.044652,0.044672,0.087607,0.044695,0.044719,0.044652,0.044652,0.044695,0.044719,0.064902,0.04497,0.044652,0.044652,0.064902,0.04497,0.044652,0.044652,0.044652,0.044652,0.044652,0.044652,,,,,,,0.044672,0.087607,0.044695,0.044719,0.064902,0.04497,0.044652,0.044652,0.044652,0.044652,0.01742,0.030301,0.017427,0.017434,0.023489,0.01751,0.017414,0.017414,0.009154,0.009154,29.986286,15.290564,29.971281,29.95507,20.639765,29.787901,30,30,30,30,,,,,,,,,,,2580,2580,0.044652,0.044652,0.044652,0.044652,0.044652,0.044652,0.044652,0.044652,0.017414,0.017414,30,30,, +9997,0,0.512443,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,10.554,11.067,0,10.980924,3,4,0.768665,0.768665,0.768665,0.768665,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.807272,0.769361,0.768665,0.768665,0.807272,0.769361,0.769833,0.769268,0.768665,0.768665,0.769833,0.769268,0.775768,0.805891,0.768665,0.768665,0.775768,0.805891,0.768665,0.768665,0.768665,0.768665,0.768665,0.768665,,,,,,,0.807272,0.769361,0.769833,0.769268,0.775768,0.805891,0.768665,0.768665,0.768665,0.768665,0.334421,0.323048,0.32319,0.32302,0.32497,0.334007,0.322839,0.322839,0.171668,0.171668,38.087035,39.96381,39.93932,39.968645,39.633752,38.152286,40,40,40,40,,,,,,,,,,,3096,3096,0.768665,0.768665,0.768665,0.768665,0.768665,0.768665,0.768665,0.768665,0.322839,0.322839,40,40,, +11357,0,1.011693,1,1,0,2,5,,5,5,Mast,Rd,1445502,1.998,3.009,0,21.679126,3.7,5,2.023385,2.023385,2.023385,2.023385,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.023545,2.028725,2.023385,2.023385,2.023545,2.028725,2.023571,2.023581,2.023385,2.023385,2.023571,2.023581,2.028994,2.02408,2.023385,2.023385,2.028994,2.02408,2.023385,2.023385,2.023385,2.023385,2.023385,2.023385,,,,,,,2.023545,2.028725,2.023571,2.023581,2.028994,2.02408,2.023385,2.023385,2.023385,2.023385,0.789168,0.790722,0.789176,0.789179,0.790803,0.789329,0.78912,0.78912,0.414794,0.414794,29.99763,29.92103,29.997248,29.997091,29.917073,29.989705,30,30,30,30,,,,,,,,,,,2580,2580,2.023385,2.023385,2.023385,2.023385,2.023385,2.023385,2.023385,2.023385,0.78912,0.78912,30,30,, +11136,0,0.983066,1,1,0,2,5,,5,5,Webster Church,Rd,1445610,0,0.983,0,21.065703,3.7,5,1.966132,1.966132,1.966132,1.966132,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.966185,1.968908,1.966132,1.966132,1.966185,1.968908,1.96614,1.966143,1.966132,1.966132,1.96614,1.966143,1.967819,1.966428,1.966132,1.966132,1.967819,1.966428,1.966132,1.966132,1.966132,1.966132,1.966132,1.966132,,,,,,,1.966185,1.968908,1.96614,1.966143,1.967819,1.966428,1.966132,1.966132,1.966132,1.966132,0.766807,0.767624,0.766794,0.766795,0.767298,0.76688,0.766792,0.766792,0.403057,0.403057,29.999198,29.957708,29.999877,29.999832,29.974279,29.995488,30,30,30,30,,,,,,,,,,,2580,2580,1.966132,1.966132,1.966132,1.966132,1.966132,1.966132,1.966132,1.966132,0.766792,0.766792,30,30,, +11140,0,1.022411,1,1,0,2,5,,5,5,Joy,Rd,1445109,2.07,3.092,0,21.908797,3.7,5,2.044821,2.044821,2.044821,2.044821,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.044841,2.047281,2.044821,2.044821,2.044841,2.047281,2.044828,2.044828,2.044821,2.044821,2.044828,2.044828,2.045973,2.045006,2.044821,2.044821,2.045973,2.045006,2.044821,2.044821,2.044821,2.044821,2.044821,2.044821,,,,,,,2.044841,2.047281,2.044828,2.044828,2.045973,2.045006,2.044821,2.044821,2.044821,2.044821,0.797486,0.798218,0.797482,0.797482,0.797826,0.797536,0.79748,0.79748,0.419188,0.419188,29.999703,29.963946,29.999903,29.999893,29.983115,29.99728,30,30,30,30,,,,,,,,,,,2580,2580,2.044821,2.044821,2.044821,2.044821,2.044821,2.044821,2.044821,2.044821,0.79748,0.79748,30,30,, +26482,0,1.329487,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.489012,0.15,4,5.317949,5.317949,5.317949,5.317949,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,,,,,,,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,1.834692,1.834692,1.834692,1.834692,1.834692,1.834692,1.834692,1.834692,0.943936,0.943936,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,5.317949,1.834692,1.834692,15,15,, +30114,0,1.564845,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,33.532397,0.15,4,6.259381,6.259381,6.259381,6.259381,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,,,,,,,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,2.159486,2.159486,2.159486,2.159486,2.159486,2.159486,2.159486,2.159486,1.11104,1.11104,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,6.259381,2.159486,2.159486,15,15,, +11360,0,0.13005,1,1,0,2,5,,4,5,Joy,Rd,1445109,1.94,2.07,0,2.786781,5.8,4.5,0.289,0.289,0.289,0.289,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.289218,0.289005,0.289,0.289,0.289218,0.289005,0.28901,0.289006,0.289,0.289,0.28901,0.289006,0.289024,0.289318,0.289,0.289,0.289024,0.289318,0.289,0.289,0.289,0.289,0.289,0.289,,,,,,,0.289218,0.289005,0.28901,0.289006,0.289024,0.289318,0.289,0.289,0.289,0.289,0.110174,0.110111,0.110112,0.110111,0.110116,0.110204,0.110109,0.110109,0.057655,0.057655,26.979633,26.99947,26.999046,26.999405,26.997675,26.970306,27,27,27,27,,,,,,,,,,,2580,2580,0.289,0.289,0.289,0.289,0.289,0.289,0.289,0.289,0.110109,0.110109,27,27,, +9978,0,1.086563,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,12.639,13.725,0,23.283503,3,4,1.629845,1.629845,1.629845,1.629845,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.466537,1.650746,1.629845,1.629845,2.466537,1.650746,1.664525,1.650674,1.629845,1.629845,1.664525,1.650674,1.762955,2.334603,1.629845,1.629845,1.762955,2.334603,1.629845,1.629845,1.629845,1.629845,1.629845,1.629845,,,,,,,2.466537,1.650746,1.664525,1.650674,1.762955,2.334603,1.629845,1.629845,1.629845,1.629845,0.935542,0.690805,0.694939,0.690784,0.724468,0.895962,0.684535,0.684535,0.363999,0.363999,26.431313,39.493541,39.166625,39.495257,36.979857,27.925006,40,40,40,40,,,,,,,,,,,3096,3096,1.629845,1.629845,1.629845,1.629845,1.629845,1.629845,1.629845,1.629845,0.684535,0.684535,40,40,, +6310,0,0.931035,1,1,0,2,4,,5,8,M 36,,932308,10.64,11.571,0,19.950745,3,4,1.396552,1.396552,1.396552,1.396552,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.656805,1.410447,1.396552,1.396552,1.656805,1.410447,1.408107,1.404146,1.396552,1.396552,1.408107,1.404146,1.438322,1.637326,1.396552,1.396552,1.438322,1.637326,1.396552,1.396552,1.396552,1.396552,1.396552,1.396552,,,,,,,1.656805,1.410447,1.408107,1.404146,1.438322,1.637326,1.396552,1.396552,1.396552,1.396552,0.664628,0.59072,0.590018,0.58883,0.599083,0.658784,0.586552,0.586552,0.311897,0.311897,33.716754,39.605951,39.671758,39.783684,38.838371,34.117876,40,40,40,40,,,,,,,,,,,3096,3096,1.396552,1.396552,1.396552,1.396552,1.396552,1.396552,1.396552,1.396552,0.586552,0.586552,40,40,, +7208,0,1.212253,1,1,0,2,7,,5,8,Kress,Rd,932804,0,1.212,0,25.976842,5.8,6,2.909406,2.909406,2.909406,2.909406,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.18557,2.944875,2.909406,2.909406,3.18557,2.944875,2.945821,2.926344,2.909406,2.909406,2.945821,2.926344,3.061329,3.184277,2.909406,2.909406,3.061329,3.184277,2.909406,2.909406,2.909406,2.909406,2.909406,2.909406,,,,,,,3.18557,2.944875,2.945821,2.926344,3.061329,3.184277,2.909406,2.909406,2.909406,2.909406,1.173877,1.101668,1.101952,1.096109,1.136604,1.173488,1.091027,1.091027,0.569759,0.569759,22.832696,24.698896,24.690963,24.855301,23.759337,22.841972,25,25,25,25,,,,,,,,,,,2064,2064,2.909406,2.909406,2.909406,2.909406,2.909406,2.909406,2.909406,2.909406,1.091027,1.091027,25,25,, +19862,0,1.252672,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,1.395,2.648,0,26.842971,3.7,5,2.505344,2.505344,2.505344,2.505344,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.505352,2.50538,2.505344,2.505344,2.505352,2.50538,2.505346,2.505345,2.505344,2.505344,2.505346,2.505345,2.505405,2.505363,2.505344,2.505344,2.505405,2.505363,2.505344,2.505344,2.505344,2.505344,2.505344,2.505344,,,,,,,2.505352,2.50538,2.505346,2.505345,2.505405,2.505363,2.505344,2.505344,2.505344,2.505344,0.977087,0.977095,0.977085,0.977084,0.977103,0.97709,0.977084,0.977084,0.513596,0.513596,29.999902,29.999563,29.99998,29.999988,29.999263,29.999768,30,30,30,30,,,,,,,,,,,2580,2580,2.505344,2.505344,2.505344,2.505344,2.505344,2.505344,2.505344,2.505344,0.977084,0.977084,30,30,, +19863,0,1.097195,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,0.299,1.395,0,23.51133,3.7,5,2.194391,2.194391,2.194391,2.194391,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.194398,2.194423,2.194391,2.194391,2.194398,2.194423,2.194392,2.194392,2.194391,2.194391,2.194392,2.194392,2.194445,2.194408,2.194391,2.194391,2.194445,2.194408,2.194391,2.194391,2.194391,2.194391,2.194391,2.194391,,,,,,,2.194398,2.194423,2.194392,2.194392,2.194445,2.194408,2.194391,2.194391,2.194391,2.194391,0.855815,0.855822,0.855813,0.855813,0.855829,0.855818,0.855812,0.855812,0.44985,0.44985,29.999902,29.999563,29.99998,29.999988,29.999263,29.999768,30,30,30,30,,,,,,,,,,,2580,2580,2.194391,2.194391,2.194391,2.194391,2.194391,2.194391,2.194391,2.194391,0.855812,0.855812,30,30,, +26127,0,1.679291,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.9848,0.15,4,6.717163,6.717163,6.717163,6.717163,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,,,,,,,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,2.317421,2.317421,2.317421,2.317421,2.317421,2.317421,2.317421,2.317421,1.192296,1.192296,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,6.717163,2.317421,2.317421,15,15,, +29125,0,1.303267,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.927147,0.15,4,5.213068,5.213068,5.213068,5.213068,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,,,,,,,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,1.798508,1.798508,1.798508,1.798508,1.798508,1.798508,1.798508,1.798508,0.925319,0.925319,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,5.213068,1.798508,1.798508,15,15,, +11356,0,0.801078,1,1,0,2,5,,5,5,Mast,Rd,1445502,5.012,5.813,0,17.165963,3.7,5,1.602157,1.602157,1.602157,1.602157,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.602162,1.60218,1.602157,1.602157,1.602162,1.60218,1.602158,1.602157,1.602157,1.602157,1.602158,1.602157,1.602196,1.602169,1.602157,1.602157,1.602196,1.602169,1.602157,1.602157,1.602157,1.602157,1.602157,1.602157,,,,,,,1.602162,1.60218,1.602158,1.602157,1.602196,1.602169,1.602157,1.602157,1.602157,1.602157,0.624843,0.624848,0.624841,0.624841,0.624853,0.624845,0.624841,0.624841,0.328442,0.328442,29.999902,29.999563,29.99998,29.999988,29.999263,29.999768,30,30,30,30,,,,,,,,,,,2580,2580,1.602157,1.602157,1.602157,1.602157,1.602157,1.602157,1.602157,1.602157,0.624841,0.624841,30,30,, +19864,0,0.298672,1,1,0,2,5,,5,5,Strawberry Lake,Rd,4104134,0,0.299,0,6.400105,3.7,5,0.597343,0.597343,0.597343,0.597343,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.597345,0.597352,0.597343,0.597343,0.597345,0.597352,0.597343,0.597343,0.597343,0.597343,0.597343,0.597343,0.597358,0.597348,0.597343,0.597343,0.597358,0.597348,0.597343,0.597343,0.597343,0.597343,0.597343,0.597343,,,,,,,0.597345,0.597352,0.597343,0.597343,0.597358,0.597348,0.597343,0.597343,0.597343,0.597343,0.232964,0.232966,0.232964,0.232964,0.232968,0.232965,0.232964,0.232964,0.122455,0.122455,29.999902,29.999563,29.99998,29.999988,29.999263,29.999768,30,30,30,30,,,,,,,,,,,2580,2580,0.597343,0.597343,0.597343,0.597343,0.597343,0.597343,0.597343,0.597343,0.232964,0.232964,30,30,, +6599,0,0.443323,1,1,0,2,4,,5,8,M 36,,932308,10.197,10.64,0,9.499787,3,4,0.664985,0.664985,0.664985,0.664985,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.721769,0.671601,0.664985,0.664985,0.721769,0.671601,0.670487,0.668601,0.664985,0.664985,0.670487,0.668601,0.688615,0.714955,0.664985,0.664985,0.688615,0.714955,0.664985,0.664985,0.664985,0.664985,0.664985,0.664985,,,,,,,0.721769,0.671601,0.670487,0.668601,0.688615,0.714955,0.664985,0.664985,0.664985,0.664985,0.296329,0.281279,0.280944,0.280378,0.286383,0.294285,0.279294,0.279294,0.148513,0.148513,36.853071,39.605951,39.671758,39.783684,38.627423,37.204318,40,40,40,40,,,,,,,,,,,3096,3096,0.664985,0.664985,0.664985,0.664985,0.664985,0.664985,0.664985,0.664985,0.279294,0.279294,40,40,, +7211,0,0.809718,1,1,0,2,5,,5,8,Whitewood,Rd,932710,1.02,1.829,0,17.351102,3.7,5,1.619436,1.619436,1.619436,1.619436,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.711987,1.646531,1.619436,1.619436,1.711987,1.646531,1.637721,1.640625,1.619436,1.619436,1.637721,1.640625,1.766267,1.81335,1.619436,1.619436,1.766267,1.81335,1.619436,1.619436,1.619436,1.619436,1.619436,1.619436,,,,,,,1.711987,1.646531,1.637721,1.640625,1.766267,1.81335,1.619436,1.619436,1.619436,1.619436,0.659345,0.639709,0.637066,0.637937,0.675629,0.689754,0.63158,0.63158,0.331984,0.331984,28.37818,29.506327,29.665047,29.612555,27.506081,26.791896,30,30,30,30,,,,,,,,,,,2580,2580,1.619436,1.619436,1.619436,1.619436,1.619436,1.619436,1.619436,1.619436,0.63158,0.63158,30,30,, +7768,0,0.782599,1,1,0,2,7,,5,8,Cordley Lake,Rd,944403,0.588,1.37,0,16.769978,5.8,6,1.878238,1.878238,1.878238,1.878238,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.056522,1.901135,1.878238,1.878238,2.056522,1.901135,1.901746,1.889172,1.878238,1.878238,1.901746,1.889172,1.976315,2.055687,1.878238,1.878238,1.976315,2.055687,1.878238,1.878238,1.878238,1.878238,1.878238,1.878238,,,,,,,2.056522,1.901135,1.901746,1.889172,1.976315,2.055687,1.878238,1.878238,1.878238,1.878238,0.757824,0.711208,0.711392,0.707619,0.733762,0.757574,0.704339,0.704339,0.367822,0.367822,22.832696,24.698896,24.690963,24.855301,23.759337,22.841972,25,25,25,25,,,,,,,,,,,2064,2064,1.878238,1.878238,1.878238,1.878238,1.878238,1.878238,1.878238,1.878238,0.704339,0.704339,25,25,, +8027,0,0.588259,1,1,0,2,7,,5,8,Cordley Lake,Rd,944403,0,0.588,0,12.605544,5.8,6,1.411821,1.411821,1.411821,1.411821,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,,,,,,,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,0.529433,0.529433,0.529433,0.529433,0.529433,0.529433,0.529433,0.529433,0.276482,0.276482,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,1.411821,0.529433,0.529433,25,25,, +24643,0,1.222839,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.203683,0.15,4,4.891354,4.891354,4.891354,4.891354,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,,,,,,,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,1.687517,1.687517,1.687517,1.687517,1.687517,1.687517,1.687517,1.687517,0.868215,0.868215,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,4.891354,1.687517,1.687517,15,15,, +30150,0,0.28115,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,6.024648,0.15,4,1.124601,1.124601,1.124601,1.124601,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,,,,,,,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,0.387987,0.387987,0.387987,0.387987,0.387987,0.387987,0.387987,0.387987,0.199617,0.199617,14.999998,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,1.124601,0.387987,0.387987,15,15,, +7213,0,0.688083,1,1,0,2,5,,5,8,Whitewood,Rd,932710,0,0.688,0,14.744629,3.7,5,1.376165,1.376165,1.376165,1.376165,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.376483,1.37867,1.376165,1.376165,1.376483,1.37867,1.376205,1.376208,1.376165,1.376165,1.376205,1.376208,1.378313,1.376983,1.376165,1.376165,1.378313,1.376983,1.376165,1.376165,1.376165,1.376165,1.376165,1.376165,,,,,,,1.376483,1.37867,1.376205,1.376208,1.378313,1.376983,1.376165,1.376165,1.376165,1.376165,0.5368,0.537456,0.536716,0.536717,0.537349,0.53695,0.536705,0.536705,0.282114,0.282114,29.993087,29.94549,29.99913,29.999075,29.953255,29.982177,30,30,30,30,,,,,,,,,,,2580,2580,1.376165,1.376165,1.376165,1.376165,1.376165,1.376165,1.376165,1.376165,0.536705,0.536705,30,30,, +30151,0,0.406247,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.705283,0.15,4,1.624986,1.624986,1.624986,1.624986,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.624987,1.624987,1.624986,1.624986,1.624987,1.624987,1.624986,1.624986,1.624986,1.624986,1.624986,1.624986,1.624987,1.624988,1.624986,1.624986,1.624987,1.624988,1.624986,1.624986,1.624986,1.624986,1.624986,1.624986,,,,,,,1.624987,1.624987,1.624986,1.624986,1.624987,1.624988,1.624986,1.624986,1.624986,1.624986,0.560621,0.56062,0.56062,0.56062,0.560621,0.560621,0.56062,0.56062,0.288435,0.288435,14.999989,14.999997,14.999998,14.999998,14.99999,14.999985,15,15,15,15,,,,,,,,,,,34400,34400,1.624986,1.624986,1.624986,1.624986,1.624986,1.624986,1.624986,1.624986,0.56062,0.56062,15,15,, +7212,0,0.332245,1,1,0,2,5,,5,8,Whitewood,Rd,932710,0.688,1.02,0,7.119541,3.7,5,0.66449,0.66449,0.66449,0.66449,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.702466,0.675608,0.66449,0.66449,0.702466,0.675608,0.671993,0.673185,0.66449,0.66449,0.671993,0.673185,0.724738,0.744058,0.66449,0.66449,0.724738,0.744058,0.66449,0.66449,0.66449,0.66449,0.66449,0.66449,,,,,,,0.702466,0.675608,0.671993,0.673185,0.724738,0.744058,0.66449,0.66449,0.66449,0.66449,0.270544,0.262487,0.261402,0.26176,0.277226,0.283021,0.259151,0.259151,0.136221,0.136221,28.37818,29.506327,29.665047,29.612555,27.506081,26.791896,30,30,30,30,,,,,,,,,,,2580,2580,0.66449,0.66449,0.66449,0.66449,0.66449,0.66449,0.66449,0.66449,0.259151,0.259151,30,30,, +6822,0,0.405381,1,1,0,2,4,,5,8,M 36,,932308,9.791,10.197,0,8.686741,3,4,0.608072,0.608072,0.608072,0.608072,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.138646,0.808186,0.608072,0.608072,1.138646,0.808186,0.733176,0.713497,0.608072,0.608072,0.733176,0.713497,0.883141,1.089536,0.608072,0.608072,0.883141,1.089536,0.608072,0.608072,0.608072,0.608072,0.608072,0.608072,,,,,,,1.138646,0.808186,0.733176,0.713497,0.883141,1.089536,0.608072,0.608072,0.608072,0.608072,0.414562,0.315424,0.292921,0.287018,0.337911,0.399829,0.25539,0.25539,0.135803,0.135803,21.361231,30.095634,33.174669,34.089673,27.541317,22.324063,40,40,40,40,,,,,,,,,,,3096,3096,0.608072,0.608072,0.608072,0.608072,0.608072,0.608072,0.608072,0.608072,0.25539,0.25539,40,40,, +6083,0,0.910165,1,1,0,2,4,,5,8,M 36,,932308,11.571,12.48,0,19.50354,3,4,1.365248,1.365248,1.365248,1.365248,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.357718,1.580104,1.365248,1.365248,3.357718,1.580104,1.563104,1.489427,1.365248,1.365248,1.563104,1.489427,1.971087,3.266171,1.365248,1.365248,1.971087,3.266171,1.365248,1.365248,1.365248,1.365248,1.365248,1.365248,,,,,,,3.357718,1.580104,1.563104,1.489427,1.971087,3.266171,1.365248,1.365248,1.365248,1.365248,1.171145,0.637861,0.632761,0.610658,0.755156,1.143681,0.573404,0.573404,0.304905,0.304905,16.263998,34.560956,34.936845,36.665059,27.705477,16.719857,40,40,40,40,,,,,,,,,,,3096,3096,1.365248,1.365248,1.365248,1.365248,1.365248,1.365248,1.365248,1.365248,0.573404,0.573404,40,40,, +19856,0,1.022265,1,1,0,2,5,,5,8,Merrill,Rd,4104136,1.47,2.492,0,21.905673,3.7,5,2.044529,2.044529,2.044529,2.044529,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.045308,2.212339,2.044529,2.044529,2.045308,2.212339,2.044784,2.044743,2.044529,2.044529,2.044784,2.044743,2.091461,2.046388,2.044529,2.044529,2.091461,2.046388,2.044529,2.044529,2.044529,2.044529,2.044529,2.044529,,,,,,,2.045308,2.212339,2.044784,2.044743,2.091461,2.046388,2.044529,2.044529,2.044529,2.044529,0.7976,0.847709,0.797443,0.79743,0.811446,0.797924,0.797366,0.797366,0.419129,0.419129,29.988587,27.724457,29.996264,29.99687,29.326809,29.972759,30,30,30,30,,,,,,,,,,,2580,2580,2.044529,2.044529,2.044529,2.044529,2.044529,2.044529,2.044529,2.044529,0.797366,0.797366,30,30,, +19861,0,0.539101,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,2.648,3.187,0,11.552155,3.7,5,1.078201,1.078201,1.078201,1.078201,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.163602,1.113384,1.078201,1.078201,1.163602,1.113384,1.135521,1.119967,1.078201,1.078201,1.135521,1.119967,1.178661,1.174156,1.078201,1.078201,1.178661,1.174156,1.078201,1.078201,1.078201,1.078201,1.078201,1.078201,,,,,,,1.163602,1.113384,1.135521,1.119967,1.178661,1.174156,1.078201,1.078201,1.078201,1.078201,0.446119,0.431053,0.437694,0.433028,0.450636,0.449285,0.420498,0.420498,0.221031,0.221031,27.7982,29.052003,28.485645,28.881241,27.443043,27.548328,30,30,30,30,,,,,,,,,,,2580,2580,1.078201,1.078201,1.078201,1.078201,1.078201,1.078201,1.078201,1.078201,0.420498,0.420498,30,30,, +28209,0,0.283535,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,6.075745,0.15,4,1.134139,1.134139,1.134139,1.134139,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,,,,,,,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,0.391278,0.391278,0.391278,0.391278,0.391278,0.391278,0.391278,0.391278,0.20131,0.20131,14.999996,14.999998,14.999997,14.999997,14.999995,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,1.134139,0.391278,0.391278,15,15,, +5822,0,0.843481,1,1,0,2,4,,5,8,M 36,,932308,12.48,13.324,0,18.074594,3,4,1.265222,1.265222,1.265222,1.265222,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.362033,1.45221,1.265222,1.265222,3.362033,1.45221,1.452324,1.401572,1.265222,1.265222,1.452324,1.401572,1.732333,2.789018,1.265222,1.265222,1.732333,2.789018,1.265222,1.265222,1.265222,1.265222,1.265222,1.265222,,,,,,,3.362033,1.45221,1.452324,1.401572,1.732333,2.789018,1.265222,1.265222,1.265222,1.265222,1.160437,0.58749,0.587524,0.572298,0.671526,0.988532,0.531393,0.531393,0.282566,0.282566,15.053054,34.849542,34.846803,36.108633,29.214284,18.145763,40,40,40,40,,,,,,,,,,,3096,3096,1.265222,1.265222,1.265222,1.265222,1.265222,1.265222,1.265222,1.265222,0.531393,0.531393,40,40,, +9961,0,1.778097,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,14.616,16.394,0,38.102079,3,4,2.667146,2.667146,2.667146,2.667146,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,4.281273,2.717251,2.667146,2.667146,4.281273,2.717251,2.736257,2.710436,2.667146,2.667146,2.736257,2.710436,2.951211,3.921613,2.667146,2.667146,2.951211,3.921613,2.667146,2.667146,2.667146,2.667146,2.667146,2.667146,,,,,,,4.281273,2.717251,2.736257,2.710436,2.951211,3.921613,2.667146,2.667146,2.667146,2.667146,1.604439,1.135233,1.140935,1.133188,1.205421,1.496541,1.120201,1.120201,0.595663,0.595663,24.919181,39.262412,38.989688,39.361125,36.149851,27.204575,40,40,40,40,,,,,,,,,,,3096,3096,2.667146,2.667146,2.667146,2.667146,2.667146,2.667146,2.667146,2.667146,1.120201,1.120201,40,40,, +25039,0,1.263719,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,27.079695,0.15,4,5.054876,5.054876,5.054876,5.054876,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,,,,,,,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,1.743932,1.743932,1.743932,1.743932,1.743932,1.743932,1.743932,1.743932,0.897241,0.897241,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,5.054876,1.743932,1.743932,15,15,, +26476,0,1.180767,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.302151,0.15,4,4.723068,4.723068,4.723068,4.723068,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,,,,,,,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,1.629459,1.629459,1.629459,1.629459,1.629459,1.629459,1.629459,1.629459,0.838345,0.838345,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,4.723068,1.629459,1.629459,15,15,, +22026,0,0.035777,1,1,0,2,6,GRV,5,5,Webster Church,Rd,4603367,0,0.036,0,0.766659,5.55,5,0.085866,0.085866,0.085866,0.085866,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,,,,,,,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.0322,0.0322,0.0322,0.0322,0.0322,0.0322,0.0322,0.0322,0.016815,0.016815,25,24.999952,25,25,24.999997,25,25,25,25,25,,,,,,,,,,,2236,2236,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.085866,0.0322,0.0322,25,25,, +9959,0,0.509014,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,16.394,16.903,0,10.907444,3,4,0.763521,0.763521,0.763521,0.763521,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.206496,0.788503,0.763521,0.763521,1.206496,0.788503,0.788251,0.779934,0.763521,0.763521,0.788251,0.779934,0.88255,1.138799,0.763521,0.763521,0.88255,1.138799,0.763521,0.763521,0.763521,0.763521,0.763521,0.763521,,,,,,,1.206496,0.788503,0.788251,0.779934,0.88255,1.138799,0.763521,0.763521,0.763521,0.763521,0.453571,0.328173,0.328098,0.325603,0.356388,0.433262,0.320679,0.320679,0.17052,0.17052,25.313681,38.732713,38.745054,39.158258,34.605209,26.818474,40,40,40,40,,,,,,,,,,,3096,3096,0.763521,0.763521,0.763521,0.763521,0.763521,0.763521,0.763521,0.763521,0.320679,0.320679,40,40,, +10516,-1,1.00235,0,2,0,1,2,,5,5,S US 23,,1431105,4.612,5.614,0,,1.02,7,,0.859157,,0.859157,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.953911,,0.859157,,0.953911,,0.865998,,0.859157,,0.865998,,0.917032,,0.859157,,0.917032,,0.859157,,0.859157,,0.859157,,,,,,,,0.953911,,0.865998,,0.917032,,0.859157,,0.859157,,0.466596,,0.440222,,0.455533,,0.43817,,0.239132,,63.046731,,69.447018,,65.582233,,70,,70,,,,,,,,,,,,15136,,0.859157,,0.859157,,0.859157,,0.859157,,0.43817,,70,, +10529,1,0.714475,2,0,0,1,2,,5,5,N US 23,,1431003,4.627,5.341,0,,1.02,7,0.612407,,0.612407,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.638141,,0.612407,,0.638141,,0.615653,,0.612407,,0.615653,,0.633517,,0.612407,,0.633517,,0.612407,,0.612407,,0.612407,,,,,,,,0.638141,,0.615653,,0.633517,,0.612407,,0.612407,,0.320048,,0.313301,,0.318661,,0.312328,,0.170453,,67.177173,,69.630923,,67.667462,,70,,70,,,,,,,,,,,,15136,,0.612407,,0.612407,,0.612407,,0.612407,,0.312328,,70,,, +21692,0,0.423324,1,1,0,2,5,,5,5,Coyle,Rd,4603187,6.55,6.973,0,9.071229,3.7,5,0.846648,0.846648,0.846648,0.846648,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.846651,0.846718,0.846648,0.846648,0.846651,0.846718,0.846649,0.846649,0.846648,0.846648,0.846649,0.846649,0.846703,0.846699,0.846648,0.846648,0.846703,0.846699,0.846648,0.846648,0.846648,0.846648,0.846648,0.846648,,,,,,,0.846651,0.846718,0.846649,0.846649,0.846703,0.846699,0.846648,0.846648,0.846648,0.846648,0.330194,0.330214,0.330193,0.330193,0.330209,0.330208,0.330193,0.330193,0.173563,0.173563,29.999889,29.997518,29.999974,29.999983,29.998057,29.998201,30,30,30,30,,,,,,,,,,,2580,2580,0.846648,0.846648,0.846648,0.846648,0.846648,0.846648,0.846648,0.846648,0.330193,0.330193,30,30,, +21943,0,1.093833,1,1,0,2,5,,5,5,Whitmore Lake,Rd,4603187,5.456,6.55,0,23.43928,3.7,5,2.187666,2.187666,2.187666,2.187666,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.187672,2.18767,2.187666,2.187666,2.187672,2.18767,2.187667,2.187668,2.187666,2.187666,2.187667,2.187668,2.187666,2.187683,2.187666,2.187666,2.187666,2.187683,2.187666,2.187666,2.187666,2.187666,2.187666,2.187666,,,,,,,2.187672,2.18767,2.187667,2.187668,2.187666,2.187683,2.187666,2.187666,2.187666,2.187666,0.853192,0.853191,0.85319,0.85319,0.85319,0.853195,0.85319,0.85319,0.448472,0.448472,29.999914,29.999946,29.999995,29.999977,30,29.999769,30,30,30,30,,,,,,,,,,,2580,2580,2.187666,2.187666,2.187666,2.187666,2.187666,2.187666,2.187666,2.187666,0.85319,0.85319,30,30,, +26478,0,0.355086,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.608981,0.15,4,1.420343,1.420343,1.420343,1.420343,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,,,,,,,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,0.490018,0.490018,0.490018,0.490018,0.490018,0.490018,0.490018,0.490018,0.252111,0.252111,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,1.420343,0.490018,0.490018,15,15,, +26477,0,0.056048,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.201036,0.15,4,0.224193,0.224193,0.224193,0.224193,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,,,,,,,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.077347,0.077347,0.077347,0.077347,0.077347,0.077347,0.077347,0.077347,0.039794,0.039794,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.224193,0.077347,0.077347,15,15,, +10530,1,0.320009,2,0,0,1,2,,5,5,N US 23,,1431003,4.307,4.627,0,,1.02,7,0.274294,,0.274294,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.278898,,0.274294,,0.278898,,0.275166,,0.274294,,0.275166,,0.285311,,0.274294,,0.285311,,0.274294,,0.274294,,0.274294,,,,,,,,0.278898,,0.275166,,0.285311,,0.274294,,0.274294,,0.141271,,0.140152,,0.143195,,0.13989,,0.076345,,68.844507,,69.778036,,67.297042,,70,,70,,,,,,,,,,,,15136,,0.274294,,0.274294,,0.274294,,0.274294,,0.13989,,70,,, +11327,1,0.169894,1,0,0,1,2,ROF,5,5,N US 23/Territorial,RAMP,1431702,0,0.17,0,,2.24,5,0.254841,,0.254841,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.254844,,0.254841,,0.254844,,0.254853,,0.254841,,0.254853,,0.25492,,0.254841,,0.25492,,0.254841,,0.254841,,0.254841,,,,,,,,0.254844,,0.254853,,0.25492,,0.254841,,0.254841,,0.107034,,0.107037,,0.107057,,0.107033,,0.056915,,39.999594,,39.998221,,39.987606,,40,,40,,,,,,,,,,,,5160,,0.254841,,0.254841,,0.254841,,0.254841,,0.107033,,40,,, +9958,0,0.223902,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,16.903,17.126,0,4.797901,3,4,0.335853,0.335853,0.335853,0.335853,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.578432,0.356658,0.335853,0.335853,0.578432,0.356658,0.352398,0.345884,0.335853,0.335853,0.352398,0.345884,0.424776,0.514322,0.335853,0.335853,0.424776,0.514322,0.335853,0.335853,0.335853,0.335853,0.335853,0.335853,,,,,,,0.578432,0.356658,0.352398,0.345884,0.424776,0.514322,0.335853,0.335853,0.335853,0.335853,0.213832,0.1473,0.146022,0.144068,0.167735,0.194599,0.141058,0.141058,0.075007,0.075007,23.225068,37.666715,38.122013,38.839932,31.626403,26.120065,40,40,40,40,,,,,,,,,,,3096,3096,0.335853,0.335853,0.335853,0.335853,0.335853,0.335853,0.335853,0.335853,0.141058,0.141058,40,40,, +10517,-1,0.268675,0,2,0,1,2,,5,5,S US 23,,1431105,4.343,4.612,0,,1.02,7,,0.230293,,0.230293,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.273865,,0.230293,,0.273865,,0.231433,,0.230293,,0.231433,,0.236598,,0.230293,,0.236598,,0.230293,,0.230293,,0.230293,,,,,,,,0.273865,,0.231433,,0.236598,,0.230293,,0.230293,,0.130521,,0.117791,,0.119341,,0.117449,,0.064098,,58.862895,,69.65508,,68.134616,,70,,70,,,,,,,,,,,,15136,,0.230293,,0.230293,,0.230293,,0.230293,,0.117449,,70,, +11284,1,0.138527,1,0,0,1,2,ROF,5,5,S US 23/Territorial,RAMP,1431806,0,0.139,0,,2.24,5,0.207791,,0.207791,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.209443,,0.207791,,0.209443,,0.207795,,0.207791,,0.207795,,0.208163,,0.207791,,0.208163,,0.207791,,0.207791,,0.207791,,,,,,,,0.209443,,0.207795,,0.208163,,0.207791,,0.207791,,0.087768,,0.087273,,0.087384,,0.087272,,0.046407,,39.684455,,39.999261,,39.9286,,40,,40,,,,,,,,,,,,5160,,0.207791,,0.207791,,0.207791,,0.207791,,0.087272,,40,,, +10419,0,0.095299,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,17.126,17.222,0,2.042128,3,4,0.142949,0.142949,0.142949,0.142949,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.266036,0.143722,0.142949,0.142949,0.266036,0.143722,0.14335,0.143723,0.142949,0.142949,0.14335,0.143723,0.166721,0.161317,0.142949,0.142949,0.166721,0.161317,0.142949,0.142949,0.142949,0.142949,0.142949,0.142949,,,,,,,0.266036,0.143722,0.14335,0.143723,0.166721,0.161317,0.142949,0.142949,0.142949,0.142949,0.096965,0.06027,0.060159,0.060271,0.06717,0.065549,0.060039,0.060039,0.031925,0.031925,21.493192,39.784839,39.887971,39.784611,34.296625,35.44542,40,40,40,40,,,,,,,,,,,3096,3096,0.142949,0.142949,0.142949,0.142949,0.142949,0.142949,0.142949,0.142949,0.060039,0.060039,40,40,, +11287,1,0.139895,1,0,0,1,2,RON,5,5,Territorial/S US 23,RAMP,1431805,0,0.14,0,,1.09,4,0.186527,,0.186527,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.186858,,0.186527,,0.186858,,0.186605,,0.186527,,0.186605,,0.186659,,0.186527,,0.186659,,0.186527,,0.186527,,0.186527,,,,,,,,0.186858,,0.186605,,0.186659,,0.186527,,0.186527,,0.081239,,0.081163,,0.081179,,0.081139,,0.043367,,44.920187,,44.981067,,44.968085,,45,,45,,,,,,,,,,,,5160,,0.186527,,0.186527,,0.186527,,0.186527,,0.081139,,45,,, +11323,1,0.160691,1,0,0,1,2,RON,5,5,Territorial/N US 23,RAMP,1431704,0,0.161,0,,1.09,4,0.214255,,0.214255,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.214892,,0.214255,,0.214892,,0.214276,,0.214255,,0.214276,,0.216191,,0.214255,,0.216191,,0.214255,,0.214255,,0.214255,,,,,,,,0.214892,,0.214276,,0.216191,,0.214255,,0.214255,,0.093392,,0.093207,,0.093782,,0.093201,,0.049814,,44.866611,,44.995598,,44.597027,,45,,45,,,,,,,,,,,,5160,,0.214255,,0.214255,,0.214255,,0.214255,,0.093201,,45,,, +10528,1,0.460254,2,0,0,1,2,,5,5,N US 23,,1431003,5.341,5.801,0,,1.02,7,0.394504,,0.394504,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.406014,,0.394504,,0.406014,,0.396056,,0.394504,,0.396056,,0.411924,,0.394504,,0.411924,,0.394504,,0.394504,,0.394504,,,,,,,,0.406014,,0.396056,,0.411924,,0.394504,,0.394504,,0.20465,,0.201662,,0.206423,,0.201197,,0.109804,,68.015634,,69.725727,,67.039779,,70,,70,,,,,,,,,,,,15136,,0.394504,,0.394504,,0.394504,,0.394504,,0.201197,,70,,, +11292,1,0.184007,1,0,0,1,2,RON,5,5,6 Mile/N US 23,RAMP,1431707,0,0.184,0,,1.09,4,0.245342,,0.245342,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.245343,,0.245342,,0.245343,,0.245343,,0.245342,,0.245343,,0.245347,,0.245342,,0.245347,,0.245342,,0.245342,,0.245342,,,,,,,,0.245343,,0.245343,,0.245347,,0.245342,,0.245342,,0.106724,,0.106724,,0.106725,,0.106724,,0.057042,,44.999936,,44.999923,,44.999022,,45,,45,,,,,,,,,,,,5160,,0.245342,,0.245342,,0.245342,,0.245342,,0.106724,,45,,, +11300,0,0.220901,1,1,0,2,5,,5,5,6 Mile,Rd,1431706,0.106,0.327,0,4.733593,3.7,5,0.441802,0.441802,0.441802,0.441802,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.441812,0.443593,0.441802,0.441802,0.441812,0.443593,0.441812,0.441838,0.441802,0.441802,0.441812,0.441838,0.442511,0.442365,0.441802,0.441802,0.442511,0.442365,0.441802,0.441802,0.441802,0.441802,0.441802,0.441802,,,,,,,0.441812,0.443593,0.441812,0.441838,0.442511,0.442365,0.441802,0.441802,0.441802,0.441802,0.172306,0.17284,0.172306,0.172314,0.172516,0.172472,0.172303,0.172303,0.090569,0.090569,29.999333,29.878889,29.999295,29.997563,29.951921,29.961839,30,30,30,30,,,,,,,,,,,2580,2580,0.441802,0.441802,0.441802,0.441802,0.441802,0.441802,0.441802,0.441802,0.172303,0.172303,30,30,, +11321,1,0.229331,1,0,0,1,2,ROF,5,5,N US 23/6 Mile,RAMP,1431705,0,0.229,0,,2.24,5,0.343996,,0.343996,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.344002,,0.343996,,0.344002,,0.343997,,0.343996,,0.343997,,0.344433,,0.343996,,0.344433,,0.343996,,0.343996,,0.343996,,,,,,,,0.344002,,0.343997,,0.344433,,0.343996,,0.343996,,0.14448,,0.144479,,0.144609,,0.144478,,0.076826,,39.999326,,39.999943,,39.949288,,40,,40,,,,,,,,,,,,5160,,0.343996,,0.343996,,0.343996,,0.343996,,0.144478,,40,,, +10515,-1,0.227464,0,2,0,1,2,,5,5,S US 23,,1431105,5.614,5.841,0,,1.02,7,,0.194969,,0.194969,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.226251,,0.194969,,0.226251,,0.196159,,0.194969,,0.196159,,0.205257,,0.194969,,0.205257,,0.194969,,0.194969,,0.194969,,,,,,,,0.226251,,0.196159,,0.205257,,0.194969,,0.194969,,0.108819,,0.099791,,0.102521,,0.099434,,0.054266,,60.32164,,69.575614,,66.491623,,70,,70,,,,,,,,,,,,15136,,0.194969,,0.194969,,0.194969,,0.194969,,0.099434,,70,, +11265,1,0.24862,1,0,0,1,2,ROF,5,5,S US 23/6 Mile,RAMP,1431808,0,0.249,0,,2.24,5,0.372931,,0.372931,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.372931,,0.372931,,0.372931,,0.372931,,0.372931,,0.372931,,0.372932,,0.372931,,0.372932,,0.372931,,0.372931,,0.372931,,,,,,,,0.372931,,0.372931,,0.372932,,0.372931,,0.372931,,0.156631,,0.156631,,0.156631,,0.156631,,0.083288,,39.999925,,39.999991,,39.999824,,40,,40,,,,,,,,,,,,5160,,0.372931,,0.372931,,0.372931,,0.372931,,0.156631,,40,,, +11320,0,0.097637,1,1,0,2,5,,5,5,6 Mile,Rd,1431706,0,0.098,0,2.092216,3.7,5,0.195274,0.195274,0.195274,0.195274,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.195274,0.19529,0.195274,0.195274,0.195274,0.19529,0.195274,0.195274,0.195274,0.195274,0.195274,0.195274,0.195286,0.195285,0.195274,0.195274,0.195286,0.195285,0.195274,0.195274,0.195274,0.195274,0.195274,0.195274,,,,,,,0.195274,0.19529,0.195274,0.195274,0.195286,0.195285,0.195274,0.195274,0.195274,0.195274,0.076157,0.076162,0.076157,0.076157,0.07616,0.07616,0.076157,0.076157,0.040031,0.040031,29.999889,29.997518,29.999974,29.999983,29.998057,29.998201,30,30,30,30,,,,,,,,,,,2580,2580,0.195274,0.195274,0.195274,0.195274,0.195274,0.195274,0.195274,0.195274,0.076157,0.076157,30,30,, +11267,1,0.175706,1,0,0,1,2,RON,5,5,6 Mile/S US 23,RAMP,1431807,0,0.176,0,,1.09,4,0.234275,,0.234275,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.234322,,0.234275,,0.234322,,0.234277,,0.234275,,0.234277,,0.23428,,0.234275,,0.23428,,0.234275,,0.234275,,0.234275,,,,,,,,0.234322,,0.234277,,0.23428,,0.234275,,0.234275,,0.101924,,0.10191,,0.101911,,0.10191,,0.054469,,44.99098,,44.999558,,44.998937,,45,,45,,,,,,,,,,,,5160,,0.234275,,0.234275,,0.234275,,0.234275,,0.10191,,45,,, +11311,0,0.008125,1,1,0,2,5,,5,5,6 Mile,Rd,1431706,0.098,0.106,0,0.174108,3.7,5,0.01625,0.01625,0.01625,0.01625,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.016251,0.01625,0.01625,0.01625,0.016251,0.01625,0.01625,0.01625,0.01625,0.01625,0.01625,0.01625,0.016276,0.01625,0.01625,0.01625,0.016276,0.01625,0.01625,0.01625,0.01625,0.01625,0.01625,0.01625,,,,,,,0.016251,0.01625,0.01625,0.01625,0.016276,0.01625,0.01625,0.01625,0.01625,0.01625,0.006338,0.006338,0.006338,0.006338,0.006345,0.006338,0.006338,0.006338,0.003331,0.003331,29.998783,29.999995,29.999295,30,29.951921,29.999855,30,30,30,30,,,,,,,,,,,2580,2580,0.01625,0.01625,0.01625,0.01625,0.01625,0.01625,0.01625,0.01625,0.006338,0.006338,30,30,, +11260,0,0.087757,1,1,0,2,5,,5,5,Main,St,1446105,0,0.088,0,1.8805,3.7,5,0.175513,0.175513,0.175513,0.175513,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.175563,0.175513,0.175513,0.175513,0.175563,0.175513,0.175515,0.175513,0.175513,0.175513,0.175515,0.175513,0.17874,0.175513,0.175513,0.175513,0.17874,0.175513,0.175513,0.175513,0.175513,0.175513,0.175513,0.175513,,,,,,,0.175563,0.175513,0.175515,0.175513,0.17874,0.175513,0.175513,0.175513,0.175513,0.175513,0.068465,0.06845,0.068451,0.06845,0.069418,0.06845,0.06845,0.06845,0.03598,0.03598,29.991579,29.999995,29.9997,30,29.458457,30,30,30,30,30,,,,,,,,,,,2580,2580,0.175513,0.175513,0.175513,0.175513,0.175513,0.175513,0.175513,0.175513,0.06845,0.06845,30,30,, +5507,1,0.775074,2,0,0,1,2,,5,8,N US 23,,931510,0.238,1.012,0,,1.02,7,0.664349,,0.664349,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.692373,,0.664349,,0.692373,,0.666147,,0.664349,,0.666147,,0.921844,,0.664349,,0.921844,,0.664349,,0.664349,,0.664349,,,,,,,,0.692373,,0.666147,,0.921844,,0.664349,,0.664349,,0.347225,,0.339357,,0.416067,,0.338818,,0.184911,,67.166789,,69.81114,,50.44719,,70,,70,,,,,,,,,,,,15136,,0.664349,,0.664349,,0.664349,,0.664349,,0.338818,,70,,, +6904,0,1.213457,1,1,0,2,5,,5,8,Whitmore Lake,Rd,932204,0,1.213,0,26.00264,3.7,5,2.426913,2.426913,2.426913,2.426913,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,,,,,,,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,0.946496,0.946496,0.946496,0.946496,0.946496,0.946496,0.946496,0.946496,0.497517,0.497517,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,2.426913,0.946496,0.946496,30,30,, +7198,0,0.905573,1,1,0,2,7,,5,8,Lemen,Rd,932908,0,0.905,0,19.405128,5.8,6,2.173374,2.173374,2.173374,2.173374,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.182365,2.431829,2.173374,2.173374,2.182365,2.431829,2.178422,2.191365,2.173374,2.173374,2.178422,2.191365,2.35081,2.229487,2.173374,2.173374,2.35081,2.229487,2.173374,2.173374,2.173374,2.173374,2.173374,2.173374,,,,,,,2.182365,2.431829,2.178422,2.191365,2.35081,2.229487,2.173374,2.173374,2.173374,2.173374,0.817713,0.892552,0.81653,0.820413,0.868246,0.831849,0.815015,0.815015,0.425619,0.425619,24.897007,22.343001,24.942071,24.794757,23.113039,24.370793,25,25,25,25,,,,,,,,,,,2064,2064,2.173374,2.173374,2.173374,2.173374,2.173374,2.173374,2.173374,2.173374,0.815015,0.815015,25,25,, +7201,0,0.698486,1,1,0,2,5,,5,8,Hamburg,Rd,932904,0.105,0.803,0,14.967553,3.7,5,1.396972,1.396972,1.396972,1.396972,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.397085,1.401463,1.396972,1.396972,1.397085,1.401463,1.397202,1.397375,1.396972,1.396972,1.397202,1.397375,1.397356,1.397001,1.396972,1.396972,1.397356,1.397001,1.396972,1.396972,1.396972,1.396972,1.396972,1.396972,,,,,,,1.397085,1.401463,1.397202,1.397375,1.397356,1.397001,1.396972,1.396972,1.396972,1.396972,0.544853,0.546166,0.544888,0.54494,0.544934,0.544828,0.544819,0.544819,0.286379,0.286379,29.997555,29.903865,29.995048,29.991342,29.991748,29.999361,30,30,30,30,,,,,,,,,,,2580,2580,1.396972,1.396972,1.396972,1.396972,1.396972,1.396972,1.396972,1.396972,0.544819,0.544819,30,30,, +7203,0,0.626425,1,1,0,2,4,,5,8,M 36,,932903,0.1,0.726,0,13.423386,3,4,0.939637,0.939637,0.939637,0.939637,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.652672,0.961728,0.939637,0.939637,1.652672,0.961728,0.976788,0.961577,0.939637,0.939637,0.976788,0.961577,1.017708,1.483826,0.939637,0.939637,1.017708,1.483826,0.939637,0.939637,0.939637,0.939637,0.939637,0.939637,,,,,,,1.652672,0.961728,0.976788,0.961577,1.017708,1.483826,0.939637,0.939637,0.939637,0.939637,0.608558,0.401275,0.405793,0.40123,0.418069,0.557904,0.394648,0.394648,0.209852,0.209852,22.742249,39.081196,38.478656,39.087337,36.931493,25.330121,40,40,40,40,,,,,,,,,,,3096,3096,0.939637,0.939637,0.939637,0.939637,0.939637,0.939637,0.939637,0.939637,0.394648,0.394648,40,40,, +37387,1,0.013502,1,0,0,2,4,,5,8,Winans Lake,Rd,940105,2.022,2.035,0,0.289335,3,4,0.020253,,0.020253,,40,,9000,,2043,,4500,,2903,,3096,,3092,,0.020809,,0.020253,,0.020809,,0.020254,,0.020253,,0.020254,,0.020256,,0.020253,,0.020256,,0.020253,,0.020253,,0.020253,,,,,,,,0.020809,,0.020254,,0.020256,,0.020253,,0.020253,,0.008673,,0.008507,,0.008507,,0.008506,,0.004523,,38.93246,,39.999437,,39.994858,,40,,40,,,,,,,,,,,,3096,,0.020253,,0.020253,,0.020253,,0.020253,,0.008506,,40,,, +8057,0,0.592318,1,1,0,2,5,,5,8,8 Mile,Rd,942008,0,0.592,0,12.692536,3.7,5,1.184637,1.184637,1.184637,1.184637,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.33898,1.184729,1.184637,1.184637,1.33898,1.184729,1.185009,1.184853,1.184637,1.184637,1.185009,1.184853,1.185243,1.23359,1.184637,1.184637,1.185243,1.23359,1.184637,1.184637,1.184637,1.184637,1.184637,1.184637,,,,,,,1.33898,1.184729,1.185009,1.184853,1.185243,1.23359,1.184637,1.184637,1.184637,1.184637,0.508311,0.462036,0.46212,0.462073,0.46219,0.476694,0.462008,0.462008,0.242851,0.242851,26.541914,29.997659,29.990575,29.994511,29.984645,28.809492,30,30,30,30,,,,,,,,,,,2580,2580,1.184637,1.184637,1.184637,1.184637,1.184637,1.184637,1.184637,1.184637,0.462008,0.462008,30,30,, +11121,0,1.573622,1,1,0,2,6,GRV,5,5,Barker,Rd,1445807,0,1.573,0,33.720461,5.55,5,3.776692,3.776692,3.776692,3.776692,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.847415,3.776695,3.776692,3.776692,3.847415,3.776695,3.77681,3.776725,3.776692,3.776692,3.77681,3.776725,3.776885,3.784407,3.776692,3.776692,3.776885,3.784407,3.776692,3.776692,3.776692,3.776692,3.776692,3.776692,,,,,,,3.847415,3.776695,3.77681,3.776725,3.776885,3.784407,3.776692,3.776692,3.776692,3.776692,1.437476,1.41626,1.416295,1.416269,1.416318,1.418574,1.416259,1.416259,0.739602,0.739602,24.540449,24.999979,24.999219,24.999781,24.998717,24.949035,25,25,25,25,,,,,,,,,,,2236,2236,3.776692,3.776692,3.776692,3.776692,3.776692,3.776692,3.776692,3.776692,1.416259,1.416259,25,25,, +26356,0,0.58053,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.439927,0.15,4,2.32212,2.32212,2.32212,2.32212,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,,,,,,,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,0.801131,0.801131,0.801131,0.801131,0.801131,0.801131,0.801131,0.801131,0.412176,0.412176,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,2.32212,0.801131,0.801131,15,15,, +8025,0,0.869315,1,1,0,2,7,GRV,5,8,Sheldon,Rd,944709,0,0.869,0,18.628182,5.55,5,2.607945,2.607945,2.607945,2.607945,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,,,,,,,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,0.93886,0.93886,0.93886,0.93886,0.93886,0.93886,0.93886,0.93886,0.486816,0.486816,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,2.607945,0.93886,0.93886,20,20,, +11325,0,1.305996,1,1,0,2,6,GRV,5,5,Merrill,Rd,1445805,0,1.306,0,27.98563,5.55,5,3.134391,3.134391,3.134391,3.134391,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.162519,3.135102,3.134391,3.134391,3.162519,3.135102,3.134951,3.13462,3.134391,3.134391,3.134951,3.13462,3.137536,3.152898,3.134391,3.134391,3.137536,3.152898,3.134391,3.134391,3.134391,3.134391,3.134391,3.134391,,,,,,,3.162519,3.135102,3.134951,3.13462,3.137536,3.152898,3.134391,3.134391,3.134391,3.134391,1.183835,1.17561,1.175564,1.175465,1.17634,1.180949,1.175396,1.175396,0.613818,0.613818,24.777642,24.994329,24.995535,24.998174,24.974939,24.853248,25,25,25,25,,,,,,,,,,,2236,2236,3.134391,3.134391,3.134391,3.134391,3.134391,3.134391,3.134391,3.134391,1.175396,1.175396,25,25,, +19859,0,0.475281,1,1,0,2,7,GRV,5,5,Merrill,Rd,4104136,0,0.475,0,10.184599,5.55,5,1.425844,1.425844,1.425844,1.425844,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.425844,1.426781,1.425844,1.425844,1.425844,1.426781,1.425844,1.425844,1.425844,1.425844,1.425844,1.425844,1.42587,1.425846,1.425844,1.425844,1.42587,1.425846,1.425844,1.425844,1.425844,1.425844,1.425844,1.425844,,,,,,,1.425844,1.426781,1.425844,1.425844,1.42587,1.425846,1.425844,1.425844,1.425844,1.425844,0.513304,0.513585,0.513304,0.513304,0.513312,0.513304,0.513304,0.513304,0.266158,0.266158,19.999997,19.986856,19.999992,19.999993,19.999637,19.99997,20,20,20,20,,,,,,,,,,,2236,2236,1.425844,1.425844,1.425844,1.425844,1.425844,1.425844,1.425844,1.425844,0.513304,0.513304,20,20,, +19858,0,0.137221,1,1,0,2,7,GRV,5,8,Merrill,Rd,4104136,0.475,0.612,0,2.940456,5.55,5,0.411664,0.411664,0.411664,0.411664,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.411664,0.411935,0.411664,0.411664,0.411664,0.411935,0.411664,0.411664,0.411664,0.411664,0.411664,0.411664,0.411671,0.411664,0.411664,0.411664,0.411671,0.411664,0.411664,0.411664,0.411664,0.411664,0.411664,0.411664,,,,,,,0.411664,0.411935,0.411664,0.411664,0.411671,0.411664,0.411664,0.411664,0.411664,0.411664,0.148199,0.14828,0.148199,0.148199,0.148201,0.148199,0.148199,0.148199,0.076844,0.076844,19.999997,19.986856,19.999992,19.999993,19.999637,19.99997,20,20,20,20,,,,,,,,,,,2236,2236,0.411664,0.411664,0.411664,0.411664,0.411664,0.411664,0.411664,0.411664,0.148199,0.148199,20,20,, +8020,0,0.374515,1,1,0,2,5,,5,8,Sheldon,Rd,944709,0.985,1.359,0,8.025329,3.7,5,0.749031,0.749031,0.749031,0.749031,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.751149,0.749089,0.749031,0.749031,0.751149,0.749089,0.749266,0.749168,0.749031,0.749031,0.749266,0.749168,0.749047,0.749237,0.749031,0.749031,0.749047,0.749237,0.749031,0.749031,0.749031,0.749031,0.749031,0.749031,,,,,,,0.751149,0.749089,0.749266,0.749168,0.749047,0.749237,0.749031,0.749031,0.749031,0.749031,0.292758,0.29214,0.292193,0.292163,0.292127,0.292184,0.292122,0.292122,0.153551,0.153551,29.915386,29.997659,29.990575,29.994511,29.999358,29.991736,30,30,30,30,,,,,,,,,,,2580,2580,0.749031,0.749031,0.749031,0.749031,0.749031,0.749031,0.749031,0.749031,0.292122,0.292122,30,30,, +7767,0,0.115836,1,1,0,2,7,,5,8,Sheldon,Rd,944709,0.869,0.985,0,2.482194,5.8,6,0.278006,0.278006,0.278006,0.278006,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,,,,,,,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.104252,0.104252,0.104252,0.104252,0.104252,0.104252,0.104252,0.104252,0.054443,0.054443,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.278006,0.104252,0.104252,25,25,, +19948,0,0.162871,1,1,0,2,5,,5,8,Hamburg,Rd,4102598,0,0.163,0,3.490088,3.7,5,0.325742,0.325742,0.325742,0.325742,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.326571,0.325765,0.325742,0.325742,0.326571,0.325765,0.325828,0.325789,0.325742,0.325742,0.325828,0.325789,0.325747,0.325809,0.325742,0.325742,0.325747,0.325809,0.325742,0.325742,0.325742,0.325742,0.325742,0.325742,,,,,,,0.326571,0.325765,0.325828,0.325789,0.325747,0.325809,0.325742,0.325742,0.325742,0.325742,0.127288,0.127046,0.127065,0.127053,0.127041,0.127059,0.127039,0.127039,0.066777,0.066777,29.92378,29.997847,29.992042,29.995625,29.999519,29.993795,30,30,30,30,,,,,,,,,,,2580,2580,0.325742,0.325742,0.325742,0.325742,0.325742,0.325742,0.325742,0.325742,0.127039,0.127039,30,30,, +7202,0,0.104527,1,1,0,2,9,,5,8,Hamburg,Rd,932904,0,0.105,0,2.239868,5.8,6,0.179189,0.179189,0.179189,0.179189,35,35,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,,,,,,,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.072572,0.072572,0.072572,0.072572,0.072572,0.072572,0.072572,0.072572,0.038376,0.038376,35,35,35,35,35,35,35,35,35,35,,,,,,,,,,,2064,2064,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.179189,0.072572,0.072572,35,35,, +7199,0,0.246534,1,1,0,2,5,,5,8,Hall,Rd,932906,0,0.246,0,5.28288,3.7,5,0.493069,0.493069,0.493069,0.493069,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.493107,0.55731,0.493069,0.493069,0.493107,0.55731,0.493159,0.493224,0.493069,0.493069,0.493159,0.493224,0.513444,0.493321,0.493069,0.493069,0.513444,0.493321,0.493069,0.493069,0.493069,0.493069,0.493069,0.493069,,,,,,,0.493107,0.55731,0.493159,0.493224,0.513444,0.493321,0.493069,0.493069,0.493069,0.493069,0.192308,0.211569,0.192324,0.192343,0.198409,0.192373,0.192297,0.192297,0.101079,0.101079,29.997659,26.541914,29.994511,29.990575,28.809492,29.984645,30,30,30,30,,,,,,,,,,,2580,2580,0.493069,0.493069,0.493069,0.493069,0.493069,0.493069,0.493069,0.493069,0.192297,0.192297,30,30,, +7200,0,0.335256,1,1,0,2,5,,5,8,Hamburg,Rd,932904,0.803,1.138,0,7.184057,3.7,5,0.670512,0.670512,0.670512,0.670512,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.675775,0.670679,0.670512,0.670512,0.675775,0.670679,0.67093,0.670856,0.670512,0.670512,0.67093,0.670856,0.671673,0.676211,0.670512,0.670512,0.671673,0.676211,0.670512,0.670512,0.670512,0.670512,0.670512,0.670512,,,,,,,0.675775,0.670679,0.67093,0.670856,0.671673,0.676211,0.670512,0.670512,0.670512,0.670512,0.263079,0.26155,0.261625,0.261603,0.261848,0.263209,0.2615,0.2615,0.137455,0.137455,29.76636,29.992549,29.981317,29.9846,29.948151,29.747158,30,30,30,30,,,,,,,,,,,2580,2580,0.670512,0.670512,0.670512,0.670512,0.670512,0.670512,0.670512,0.670512,0.2615,0.2615,30,30,, +7846,0,0.364349,1,1,0,2,5,,5,8,Hamburg,Rd,940105,1.591,1.955,0,7.807487,3.7,5,0.728699,0.728699,0.728699,0.728699,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.836003,0.729003,0.728699,0.728699,1.836003,0.729003,0.729724,0.729523,0.728699,0.728699,0.729724,0.729523,0.733432,1.499269,0.728699,0.728699,0.733432,1.499269,0.728699,0.728699,0.728699,0.728699,0.728699,0.728699,,,,,,,1.836003,0.729003,0.729724,0.729523,0.733432,1.499269,0.728699,0.728699,0.728699,0.728699,0.616384,0.284284,0.2845,0.28444,0.285612,0.515363,0.284193,0.284193,0.149383,0.149383,11.90682,29.987488,29.95785,29.966097,29.806402,14.581085,30,30,30,30,,,,,,,,,,,2580,2580,0.728699,0.728699,0.728699,0.728699,0.728699,0.728699,0.728699,0.728699,0.284193,0.284193,30,30,, +7205,0,0.459993,1,1,0,2,4,,5,8,Hamburg,Rd,932902,0,0.46,0,9.856999,3,4,0.68999,0.68999,0.68999,0.68999,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.784266,0.991068,0.68999,0.68999,0.784266,0.991068,0.73517,0.733639,0.68999,0.68999,0.73517,0.733639,1.008823,0.818493,0.68999,0.68999,1.008823,0.818493,0.68999,0.68999,0.68999,0.68999,0.68999,0.68999,,,,,,,0.784266,0.991068,0.73517,0.733639,1.008823,0.818493,0.68999,0.68999,0.68999,0.68999,0.318079,0.380119,0.30335,0.302891,0.385446,0.328347,0.289796,0.289796,0.154098,0.154098,35.19163,27.848329,37.54177,37.620108,27.358216,33.720028,40,40,40,40,,,,,,,,,,,3096,3096,0.68999,0.68999,0.68999,0.68999,0.68999,0.68999,0.68999,0.68999,0.289796,0.289796,40,40,, +5145,0,0.308257,1,1,1,2,4,,5,8,M 36,,932308,14.485,14.793,0,6.605506,3,4,0.462385,0.462385,0.462385,0.462385,40,40,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.744727,0.500733,0.462385,0.462385,0.744727,0.500733,0.488657,0.480496,0.462385,0.462385,0.488657,0.480496,0.547543,0.738897,0.462385,0.462385,0.547543,0.738897,0.462385,0.462385,0.462385,0.462385,0.462385,0.462385,,,,,,,0.744727,0.500733,0.488657,0.480496,0.547543,0.738897,0.462385,0.462385,0.462385,0.462385,0.278904,0.205706,0.202083,0.199635,0.219749,0.277155,0.194202,0.194202,0.103266,0.103266,24.835148,36.936674,37.849498,38.492362,33.778953,25.031132,40,40,40,40,,,,,,,,,,,3406,3406,0.462385,0.462385,0.462385,0.462385,0.462385,0.462385,0.462385,0.462385,0.194202,0.194202,40,40,, +7204,0,0.099766,1,1,0,2,5,,5,8,Hamburg,Rd,932903,0,0.1,0,2.137847,3.7,5,0.199532,0.199532,0.199532,0.199532,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.201099,0.199582,0.199532,0.199532,0.201099,0.199582,0.199657,0.199635,0.199532,0.199532,0.199657,0.199635,0.199878,0.201228,0.199532,0.199532,0.199878,0.201228,0.199532,0.199532,0.199532,0.199532,0.199532,0.199532,,,,,,,0.201099,0.199582,0.199657,0.199635,0.199878,0.201228,0.199532,0.199532,0.199532,0.199532,0.078287,0.077832,0.077855,0.077848,0.077921,0.078326,0.077818,0.077818,0.040904,0.040904,29.76636,29.992549,29.981317,29.9846,29.948151,29.747158,30,30,30,30,,,,,,,,,,,2580,2580,0.199532,0.199532,0.199532,0.199532,0.199532,0.199532,0.199532,0.199532,0.077818,0.077818,30,30,, +7976,0,0.256724,1,1,0,2,5,,5,8,8 Mile,Rd,942008,0.811,1.068,0,5.501224,3.7,5,0.513448,0.513448,0.513448,0.513448,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.656575,0.551738,0.513448,0.513448,1.656575,0.551738,0.543856,0.527094,0.513448,0.513448,0.543856,0.527094,0.600192,1.118095,0.513448,0.513448,0.600192,1.118095,0.513448,0.513448,0.513448,0.513448,0.513448,0.513448,,,,,,,1.656575,0.551738,0.543856,0.527094,0.600192,1.118095,0.513448,0.513448,0.513448,0.513448,0.543183,0.211732,0.209367,0.204338,0.226268,0.381639,0.200245,0.200245,0.105257,0.105257,9.298358,27.917995,28.322634,29.223306,25.664171,13.776497,30,30,30,30,,,,,,,,,,,2580,2580,0.513448,0.513448,0.513448,0.513448,0.513448,0.513448,0.513448,0.513448,0.200245,0.200245,30,30,, +11324,0,0.519497,1,1,0,2,5,,5,5,Barker,Rd,1445807,1.963,2.482,0,11.132084,3.7,5,1.038995,1.038995,1.038995,1.038995,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.082937,1.038995,1.038995,1.038995,1.082937,1.038995,1.039328,1.038997,1.038995,1.038995,1.039328,1.038997,1.040111,1.039421,1.038995,1.038995,1.040111,1.039421,1.038995,1.038995,1.038995,1.038995,1.038995,1.038995,,,,,,,1.082937,1.038995,1.039328,1.038997,1.040111,1.039421,1.038995,1.038995,1.038995,1.038995,0.418391,0.405208,0.405308,0.405208,0.405543,0.405336,0.405208,0.405208,0.212994,0.212994,28.782695,29.999995,29.990386,29.999943,29.967805,29.987706,30,30,30,30,,,,,,,,,,,2580,2580,1.038995,1.038995,1.038995,1.038995,1.038995,1.038995,1.038995,1.038995,0.405208,0.405208,30,30,, +26352,0,0.897607,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.234439,0.15,4,3.590429,3.590429,3.590429,3.590429,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,,,,,,,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,1.238698,1.238698,1.238698,1.238698,1.238698,1.238698,1.238698,1.238698,0.637301,0.637301,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,3.590429,1.238698,1.238698,15,15,, +26479,0,0.450618,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.656104,0.15,4,1.802473,1.802473,1.802473,1.802473,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,,,,,,,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,0.621853,0.621853,0.621853,0.621853,0.621853,0.621853,0.621853,0.621853,0.319939,0.319939,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,1.802473,0.621853,0.621853,15,15,, +29996,0,0.625662,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.407043,0.15,4,2.502648,2.502648,2.502648,2.502648,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,,,,,,,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,0.863414,0.863414,0.863414,0.863414,0.863414,0.863414,0.863414,0.863414,0.44422,0.44422,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,2.502648,0.863414,0.863414,15,15,, +7272,0,0.219193,1,1,0,2,5,,5,8,8 Mile,Rd,942008,0.592,0.811,0,4.696993,3.7,5,0.438386,0.438386,0.438386,0.438386,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.48731,0.438567,0.438386,0.438386,0.48731,0.438567,0.43862,0.438513,0.438386,0.438386,0.43862,0.438513,0.438658,0.455083,0.438386,0.438386,0.438658,0.455083,0.438386,0.438386,0.438386,0.438386,0.438386,0.438386,,,,,,,0.48731,0.438567,0.43862,0.438513,0.438658,0.455083,0.438386,0.438386,0.438386,0.438386,0.185648,0.171025,0.171041,0.171009,0.171052,0.17598,0.170971,0.170971,0.089869,0.089869,26.988115,29.98762,29.984015,29.991293,29.981373,28.899299,30,30,30,30,,,,,,,,,,,2580,2580,0.438386,0.438386,0.438386,0.438386,0.438386,0.438386,0.438386,0.438386,0.170971,0.170971,30,30,, +10513,-1,0.43805,0,2,0,1,2,,5,5,S US 23,,1431105,7.408,7.846,0,,1.02,7,,0.375471,,0.375471,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.408453,,0.375471,,0.408453,,0.377295,,0.375471,,0.377295,,0.393212,,0.375471,,0.393212,,0.375471,,0.375471,,0.375471,,,,,,,,0.408453,,0.377295,,0.393212,,0.375471,,0.375471,,0.201385,,0.192037,,0.196813,,0.19149,,0.104506,,64.347618,,69.661727,,66.841835,,70,,70,,,,,,,,,,,,15136,,0.375471,,0.375471,,0.375471,,0.375471,,0.19149,,70,, +10525,1,0.222721,2,0,0,1,2,,5,5,N US 23,,1431003,7.829,8.052,0,,1.02,7,0.190904,,0.190904,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.193644,,0.190904,,0.193644,,0.191149,,0.190904,,0.191149,,0.193766,,0.190904,,0.193766,,0.190904,,0.190904,,0.190904,,,,,,,,0.193644,,0.191149,,0.193766,,0.190904,,0.190904,,0.098183,,0.097435,,0.09822,,0.097361,,0.053135,,69.00949,,69.91022,,68.966144,,70,,70,,,,,,,,,,,,15136,,0.190904,,0.190904,,0.190904,,0.190904,,0.097361,,70,,, +11035,0,0.246069,1,1,0,2,5,,5,5,Main,St,1446105,2.116,2.362,0,5.272913,3.7,5,0.492139,0.492139,0.492139,0.492139,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.621214,0.492153,0.492139,0.492139,0.621214,0.492153,0.496971,0.494162,0.492139,0.492139,0.496971,0.494162,0.514113,0.54427,0.492139,0.492139,0.514113,0.54427,0.492139,0.492139,0.492139,0.492139,0.492139,0.492139,,,,,,,0.621214,0.492153,0.496971,0.494162,0.514113,0.54427,0.492139,0.492139,0.492139,0.492139,0.230657,0.191938,0.193384,0.192541,0.198526,0.207574,0.191934,0.191934,0.100888,0.100888,23.766634,29.99913,29.708279,29.877131,28.717752,27.126515,30,30,30,30,,,,,,,,,,,2580,2580,0.492139,0.492139,0.492139,0.492139,0.492139,0.492139,0.492139,0.492139,0.191934,0.191934,30,30,, +11288,1,0.198861,1,0,0,1,2,ROF,5,5,N US 23/8 Mile,RAMP,1431801,0,0.199,0,,2.24,5,0.298291,,0.298291,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.298399,,0.298291,,0.298399,,0.298362,,0.298291,,0.298362,,0.302041,,0.298291,,0.302041,,0.298291,,0.298291,,0.298291,,,,,,,,0.298399,,0.298362,,0.302041,,0.298291,,0.298291,,0.125315,,0.125304,,0.126407,,0.125282,,0.066618,,39.985468,,39.990444,,39.503307,,40,,40,,,,,,,,,,,,5160,,0.298291,,0.298291,,0.298291,,0.298291,,0.125282,,40,,, +11317,0,0.275789,1,1,0,2,5,,5,5,Barker,Rd,1445807,2.572,2.848,0,5.90976,3.7,5,0.551578,0.551578,0.551578,0.551578,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.561071,0.553536,0.551578,0.551578,0.561071,0.553536,0.55301,0.552504,0.551578,0.551578,0.55301,0.552504,0.55217,0.577213,0.551578,0.551578,0.55217,0.577213,0.551578,0.551578,0.551578,0.551578,0.551578,0.551578,,,,,,,0.561071,0.553536,0.55301,0.552504,0.55217,0.577213,0.551578,0.551578,0.551578,0.551578,0.217963,0.215703,0.215545,0.215393,0.215293,0.222806,0.215115,0.215115,0.113073,0.113073,29.492392,29.893882,29.922281,29.949715,29.967805,28.667624,30,30,30,30,,,,,,,,,,,2580,2580,0.551578,0.551578,0.551578,0.551578,0.551578,0.551578,0.551578,0.551578,0.215115,0.215115,30,30,, +10526,1,0.404743,2,0,0,1,2,,5,5,N US 23,,1431003,7.424,7.829,0,,1.02,7,0.346922,,0.346922,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.357224,,0.346922,,0.357224,,0.348051,,0.346922,,0.348051,,0.361262,,0.346922,,0.361262,,0.346922,,0.346922,,0.346922,,,,,,,,0.357224,,0.348051,,0.361262,,0.346922,,0.346922,,0.180021,,0.177269,,0.181232,,0.17693,,0.09656,,67.981264,,69.77291,,67.221507,,70,,70,,,,,,,,,,,,15136,,0.346922,,0.346922,,0.346922,,0.346922,,0.17693,,70,,, +11263,1,0.040568,1,0,0,1,2,RON,5,5,Barker/S US 23,RAMP,1431809,0,0.041,0,,1.09,4,0.054091,,0.054091,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.054141,,0.054091,,0.054141,,0.0541,,0.054091,,0.0541,,0.054209,,0.054091,,0.054209,,0.054091,,0.054091,,0.054091,,,,,,,,0.054141,,0.0541,,0.054209,,0.054091,,0.054091,,0.023545,,0.023532,,0.023565,,0.02353,,0.012576,,44.958281,,44.992697,,44.902561,,45,,45,,,,,,,,,,,,5160,,0.054091,,0.054091,,0.054091,,0.054091,,0.02353,,45,,, +11289,1,0.139435,1,0,0,1,2,ROF,5,5,N US 23/Barker,RAMP,1431708,0,0.139,0,,2.24,5,0.209153,,0.209153,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.209153,,0.209153,,0.209153,,0.209153,,0.209153,,0.209153,,0.209155,,0.209153,,0.209155,,0.209153,,0.209153,,0.209153,,,,,,,,0.209153,,0.209153,,0.209155,,0.209153,,0.209153,,0.087844,,0.087844,,0.087845,,0.087844,,0.046711,,39.999998,,39.99984,,39.999631,,40,,40,,,,,,,,,,,,5160,,0.209153,,0.209153,,0.209153,,0.209153,,0.087844,,40,,, +11258,1,0.107419,1,0,0,1,2,RON,5,5,Barker/S US 23,RAMP,1431809,0.041,0.148,0,,1.09,4,0.143225,,0.143225,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.143573,,0.143225,,0.143573,,0.143233,,0.143225,,0.143233,,0.143242,,0.143225,,0.143242,,0.143225,,0.143225,,0.143225,,,,,,,,0.143573,,0.143233,,0.143242,,0.143225,,0.143225,,0.062407,,0.062305,,0.062308,,0.062303,,0.0333,,44.890863,,44.997418,,44.99464,,45,,45,,,,,,,,,,,,5160,,0.143225,,0.143225,,0.143225,,0.143225,,0.062303,,45,,, +11119,0,0.09014,1,1,0,2,5,,5,5,Barker,Rd,1445807,2.482,2.572,0,1.931581,3.7,5,0.180281,0.180281,0.180281,0.180281,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.183384,0.182123,0.180281,0.180281,0.183384,0.182123,0.180339,0.181351,0.180281,0.180281,0.180339,0.181351,0.180475,0.225652,0.180281,0.180281,0.180475,0.225652,0.180281,0.180281,0.180281,0.180281,0.180281,0.180281,,,,,,,0.183384,0.182123,0.180339,0.181351,0.180475,0.225652,0.180281,0.180281,0.180281,0.180281,0.07124,0.070862,0.070327,0.070631,0.070368,0.083921,0.07031,0.07031,0.036958,0.036958,29.492392,29.696509,29.990386,29.822945,29.967805,23.96803,30,30,30,30,,,,,,,,,,,2580,2580,0.180281,0.180281,0.180281,0.180281,0.180281,0.180281,0.180281,0.180281,0.07031,0.07031,30,30,, +5506,1,0.237694,2,0,0,1,2,,5,8,N US 23,,931510,0,0.238,0,,1.02,7,0.203737,,0.203737,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.206662,,0.203737,,0.206662,,0.203999,,0.203737,,0.203999,,0.206792,,0.203737,,0.206792,,0.203737,,0.203737,,0.203737,,,,,,,,0.206662,,0.203999,,0.206792,,0.203737,,0.203737,,0.104783,,0.103985,,0.104822,,0.103906,,0.056707,,69.00949,,69.91022,,68.966144,,70,,70,,,,,,,,,,,,15136,,0.203737,,0.203737,,0.203737,,0.203737,,0.103906,,70,,, +5590,1,0.204936,1,0,0,1,2,RON,5,8,8 Mile/N US 23,RAMP,931602,0.092,0.297,0,,1.09,4,0.273248,,0.273248,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.27473,,0.273248,,0.27473,,0.273325,,0.273248,,0.273325,,0.273462,,0.273248,,0.273462,,0.273248,,0.273248,,0.273248,,,,,,,,0.27473,,0.273325,,0.273462,,0.273248,,0.273248,,0.119308,,0.118886,,0.118927,,0.118863,,0.06353,,44.75721,,44.98728,,44.964851,,45,,45,,,,,,,,,,,,5160,,0.273248,,0.273248,,0.273248,,0.273248,,0.118863,,45,,, +5594,-1,0.222191,0,2,0,1,2,,5,8,S US 23,,932002,0,0.222,0,,1.02,7,,0.190449,,0.190449,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.196133,,0.190449,,0.196133,,0.190769,,0.190449,,0.190769,,0.194116,,0.190449,,0.194116,,0.190449,,0.190449,,0.190449,,,,,,,,0.196133,,0.190769,,0.194116,,0.190449,,0.190449,,0.098834,,0.097225,,0.098229,,0.097129,,0.053008,,67.971421,,69.882758,,68.677728,,70,,70,,,,,,,,,,,,15136,,0.190449,,0.190449,,0.190449,,0.190449,,0.097129,,70,, +5915,1,0.331607,1,0,0,1,2,ROF,5,8,S US 23/8 Mile,RAMP,932003,0,0.332,0,,2.24,5,0.49741,,0.49741,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.49741,,0.49741,,0.49741,,0.497422,,0.49741,,0.497422,,0.4978,,0.49741,,0.4978,,0.49741,,0.49741,,0.49741,,,,,,,,0.49741,,0.497422,,0.4978,,0.49741,,0.49741,,0.208912,,0.208916,,0.209029,,0.208912,,0.111088,,39.999992,,39.999007,,39.968682,,40,,40,,,,,,,,,,,,5160,,0.49741,,0.49741,,0.49741,,0.49741,,0.208912,,40,,, +7362,0,0.164468,1,1,0,2,5,,5,5,Eight Mile,Rd,942008,1.149,1.314,0,3.524305,3.7,5,0.328935,0.328935,0.328935,0.328935,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.328945,0.342532,0.328935,0.328935,0.328945,0.342532,0.330288,0.337678,0.328935,0.328935,0.330288,0.337678,0.363779,0.716296,0.328935,0.328935,0.363779,0.716296,0.328935,0.328935,0.328935,0.328935,0.328935,0.328935,,,,,,,0.328945,0.342532,0.330288,0.337678,0.363779,0.716296,0.328935,0.328935,0.328935,0.328935,0.128288,0.132364,0.128691,0.130907,0.138738,0.244493,0.128285,0.128285,0.067432,0.067432,29.99913,28.80911,29.877131,29.223306,27.126515,13.776497,30,30,30,30,,,,,,,,,,,2580,2580,0.328935,0.328935,0.328935,0.328935,0.328935,0.328935,0.328935,0.328935,0.128285,0.128285,30,30,, +10512,-1,0.181645,0,2,0,1,2,,5,5,S US 23,,1431105,7.846,8.028,0,,1.02,7,,0.155696,,0.155696,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.160342,,0.155696,,0.160342,,0.155957,,0.155696,,0.155957,,0.158693,,0.155696,,0.158693,,0.155696,,0.155696,,0.155696,,,,,,,,0.160342,,0.155957,,0.158693,,0.155696,,0.155696,,0.080799,,0.079483,,0.080304,,0.079405,,0.043335,,67.971421,,69.882758,,68.677728,,70,,70,,,,,,,,,,,,15136,,0.155696,,0.155696,,0.155696,,0.155696,,0.079405,,70,, +7337,0,0.024092,1,1,0,2,5,,5,8,8 Mile,Rd,942008,1.068,1.092,0,0.516256,3.7,5,0.048184,0.048184,0.048184,0.048184,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.156516,0.051177,0.048184,0.048184,0.156516,0.051177,0.051037,0.049464,0.048184,0.048184,0.051037,0.049464,0.056324,0.104926,0.048184,0.048184,0.056324,0.104926,0.048184,0.048184,0.048184,0.048184,0.048184,0.048184,,,,,,,0.156516,0.051177,0.051037,0.049464,0.056324,0.104926,0.048184,0.048184,0.048184,0.048184,0.051291,0.01969,0.019648,0.019176,0.021234,0.035814,0.018792,0.018792,0.009878,0.009878,9.235563,28.245315,28.322634,29.223306,25.664171,13.776497,30,30,30,30,,,,,,,,,,,2580,2580,0.048184,0.048184,0.048184,0.048184,0.048184,0.048184,0.048184,0.048184,0.018792,0.018792,30,30,, +11257,1,0.146175,1,0,0,1,2,RON,5,5,8 Mile/N US 23,RAMP,1431810,0,0.146,0,,1.09,4,0.1949,,0.1949,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.201913,,0.1949,,0.201913,,0.195192,,0.1949,,0.195192,,0.195471,,0.1949,,0.195471,,0.1949,,0.1949,,0.1949,,,,,,,,0.201913,,0.195192,,0.195471,,0.1949,,0.1949,,0.086885,,0.084869,,0.084953,,0.084782,,0.045314,,43.437035,,44.932769,,44.868673,,45,,45,,,,,,,,,,,,5160,,0.1949,,0.1949,,0.1949,,0.1949,,0.084782,,45,,, +8068,0,0.046741,1,1,0,2,5,,5,5,Eight Mile,Rd,942008,1.103,1.149,0,1.001592,3.7,5,0.093482,0.093482,0.093482,0.093482,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.35762,0.097346,0.093482,0.093482,0.35762,0.097346,0.131065,0.095966,0.093482,0.093482,0.131065,0.095966,0.356228,0.203568,0.093482,0.093482,0.356228,0.203568,0.093482,0.093482,0.093482,0.093482,0.093482,0.093482,,,,,,,0.35762,0.097346,0.131065,0.095966,0.356228,0.203568,0.093482,0.093482,0.093482,0.093482,0.115699,0.037617,0.047733,0.037203,0.115282,0.069484,0.036458,0.036458,0.019164,0.019164,7.841997,28.80911,21.397466,29.223306,7.872654,13.776497,30,30,30,30,,,,,,,,,,,2580,2580,0.093482,0.093482,0.093482,0.093482,0.093482,0.093482,0.093482,0.093482,0.036458,0.036458,30,30,, +7914,0,0.010599,1,1,0,2,5,,5,8,8 Mile,Rd,942008,1.092,1.103,0,0.227125,3.7,5,0.021198,0.021198,0.021198,0.021198,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.081095,0.022075,0.021198,0.021198,0.081095,0.022075,0.029721,0.021762,0.021198,0.021198,0.029721,0.021762,0.080779,0.046162,0.021198,0.021198,0.080779,0.046162,0.021198,0.021198,0.021198,0.021198,0.021198,0.021198,,,,,,,0.081095,0.022075,0.029721,0.021762,0.080779,0.046162,0.021198,0.021198,0.021198,0.021198,0.026236,0.00853,0.010824,0.008436,0.026142,0.015756,0.008267,0.008267,0.004346,0.004346,7.841997,28.80911,21.397466,29.223306,7.872654,13.776497,30,30,30,30,,,,,,,,,,,2580,2580,0.021198,0.021198,0.021198,0.021198,0.021198,0.021198,0.021198,0.021198,0.008267,0.008267,30,30,, +5589,1,0.092482,1,0,0,1,2,RON,5,5,8 Mile/N US 23,RAMP,931602,0,0.092,0,,1.09,4,0.123309,,0.123309,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.123978,,0.123309,,0.123978,,0.123344,,0.123309,,0.123344,,0.123406,,0.123309,,0.123406,,0.123309,,0.123309,,0.123309,,,,,,,,0.123978,,0.123344,,0.123406,,0.123309,,0.123309,,0.05384,,0.05365,,0.053668,,0.053639,,0.028669,,44.75721,,44.98728,,44.964851,,45,,45,,,,,,,,,,,,5160,,0.123309,,0.123309,,0.123309,,0.123309,,0.053639,,45,,, +7894,0,0.083168,1,1,0,2,5,,5,5,Eight Mile,Rd,942008,1.314,1.397,0,1.782166,3.7,5,0.166335,0.166335,0.166335,0.166335,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.16634,0.209961,0.166335,0.166335,0.16634,0.209961,0.16702,0.167969,0.166335,0.166335,0.16702,0.167969,0.183955,0.173762,0.166335,0.166335,0.183955,0.173762,0.166335,0.166335,0.166335,0.166335,0.166335,0.166335,,,,,,,0.16634,0.209961,0.16702,0.167969,0.183955,0.173762,0.166335,0.166335,0.166335,0.166335,0.064872,0.077958,0.065076,0.065361,0.070157,0.067099,0.064871,0.064871,0.034099,0.034099,29.99913,23.766634,29.877131,29.708279,27.126515,28.717752,30,30,30,30,,,,,,,,,,,2580,2580,0.166335,0.166335,0.166335,0.166335,0.166335,0.166335,0.166335,0.166335,0.064871,0.064871,30,30,, +11236,0,0.354015,1,1,0,2,5,,5,5,Main,St,1446105,1.762,2.116,0,7.586028,3.7,5,0.708029,0.708029,0.708029,0.708029,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.801162,0.708075,0.708029,0.708029,0.801162,0.708075,0.712379,0.710526,0.708029,0.708029,0.712379,0.710526,0.738105,0.711563,0.708029,0.708029,0.738105,0.711563,0.708029,0.708029,0.708029,0.708029,0.708029,0.708029,,,,,,,0.801162,0.708075,0.712379,0.710526,0.738105,0.711563,0.708029,0.708029,0.708029,0.708029,0.304071,0.276145,0.277436,0.27688,0.285154,0.277191,0.276131,0.276131,0.145146,0.145146,26.512577,29.998061,29.816811,29.894598,28.77758,29.85102,30,30,30,30,,,,,,,,,,,2580,2580,0.708029,0.708029,0.708029,0.708029,0.708029,0.708029,0.708029,0.708029,0.276131,0.276131,30,30,, +5138,0,0.872009,1,1,0,2,4,,5,8,M 36,,931604,0.066,0.938,0,18.685917,3,4,1.308014,1.308014,1.308014,1.308014,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.167819,1.337453,1.308014,1.308014,2.167819,1.337453,1.350843,1.334031,1.308014,1.308014,1.350843,1.334031,1.40291,1.957495,1.308014,1.308014,1.40291,1.957495,1.308014,1.308014,1.308014,1.308014,1.308014,1.308014,,,,,,,2.167819,1.337453,1.350843,1.334031,1.40291,1.957495,1.308014,1.308014,1.308014,1.308014,0.807307,0.558197,0.562215,0.557171,0.577835,0.74421,0.549366,0.549366,0.292123,0.292123,24.135123,39.119569,38.73178,39.219908,37.294316,26.728332,40,40,40,40,,,,,,,,,,,3096,3096,1.308014,1.308014,1.308014,1.308014,1.308014,1.308014,1.308014,1.308014,0.549366,0.549366,40,40,, +6810,0,0.550396,1,1,0,2,4,,5,8,M 36,,931604,0.938,1.488,0,11.794207,3,4,0.825594,0.825594,0.825594,0.825594,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.856937,0.825796,0.825594,0.825594,0.856937,0.825796,0.825838,0.825888,0.825594,0.825594,0.825838,0.825888,0.826177,0.848509,0.825594,0.825594,0.826177,0.848509,0.825594,0.825594,0.825594,0.825594,0.825594,0.825594,,,,,,,0.856937,0.825796,0.825838,0.825888,0.826177,0.848509,0.825594,0.825594,0.825594,0.825594,0.356152,0.34681,0.346823,0.346838,0.346925,0.353624,0.34675,0.34675,0.184383,0.184383,38.537001,39.990216,39.988229,39.985773,39.971774,38.919775,40,40,40,40,,,,,,,,,,,3096,3096,0.825594,0.825594,0.825594,0.825594,0.825594,0.825594,0.825594,0.825594,0.34675,0.34675,40,40,, +7825,0,0.264353,1,1,0,2,4,,5,8,Winans Lake,Rd,940105,3.424,3.689,0,5.664707,3,4,0.396529,0.396529,0.396529,0.396529,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.616852,0.408832,0.396529,0.396529,0.616852,0.408832,0.414168,0.412274,0.396529,0.396529,0.414168,0.412274,0.447085,0.60956,0.396529,0.396529,0.447085,0.60956,0.396529,0.396529,0.396529,0.396529,0.396529,0.396529,,,,,,,0.616852,0.408832,0.414168,0.412274,0.447085,0.60956,0.396529,0.396529,0.396529,0.396529,0.232639,0.170233,0.171834,0.171266,0.181709,0.230451,0.166542,0.166542,0.088558,0.088558,25.713122,38.796369,38.296526,38.472422,35.476873,26.02071,40,40,40,40,,,,,,,,,,,3096,3096,0.396529,0.396529,0.396529,0.396529,0.396529,0.396529,0.396529,0.396529,0.166542,0.166542,40,40,, +26355,0,0.543345,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.643105,0.15,4,2.17338,2.17338,2.17338,2.17338,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,,,,,,,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,0.749816,0.749816,0.749816,0.749816,0.749816,0.749816,0.749816,0.749816,0.385775,0.385775,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,2.17338,0.749816,0.749816,15,15,, +26358,0,0.821435,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.602184,0.15,4,3.285741,3.285741,3.285741,3.285741,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,,,,,,,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,1.133581,1.133581,1.133581,1.133581,1.133581,1.133581,1.133581,1.133581,0.583219,0.583219,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,3.285741,1.133581,1.133581,15,15,, +26359,0,0.782992,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.77839,0.15,4,3.131966,3.131966,3.131966,3.131966,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,,,,,,,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,1.080528,1.080528,1.080528,1.080528,1.080528,1.080528,1.080528,1.080528,0.555924,0.555924,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,3.131966,1.080528,1.080528,15,15,, +5137,0,0.066051,1,1,0,2,4,,5,8,M 36,,931604,0,0.066,0,1.415381,3,4,0.099077,0.099077,0.099077,0.099077,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.17426,0.101406,0.099077,0.099077,0.17426,0.101406,0.102994,0.10139,0.099077,0.099077,0.102994,0.10139,0.107309,0.156457,0.099077,0.099077,0.107309,0.156457,0.099077,0.099077,0.099077,0.099077,0.099077,0.099077,,,,,,,0.17426,0.101406,0.102994,0.10139,0.107309,0.156457,0.099077,0.099077,0.099077,0.099077,0.064167,0.042311,0.042787,0.042306,0.044082,0.058826,0.041612,0.041612,0.022127,0.022127,22.742249,39.081196,38.478656,39.087337,36.931493,25.330121,40,40,40,40,,,,,,,,,,,3096,3096,0.099077,0.099077,0.099077,0.099077,0.099077,0.099077,0.099077,0.099077,0.041612,0.041612,40,40,, +7827,0,0.198225,1,1,0,2,4,,5,8,Winans Lake,Rd,940105,3.226,3.424,0,4.247686,3,4,0.297338,0.297338,0.297338,0.297338,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.472296,0.307332,0.297338,0.297338,0.472296,0.307332,0.311589,0.309901,0.297338,0.297338,0.311589,0.309901,0.3379,0.466691,0.297338,0.297338,0.3379,0.466691,0.297338,0.297338,0.297338,0.297338,0.297338,0.297338,,,,,,,0.472296,0.307332,0.311589,0.309901,0.3379,0.466691,0.297338,0.297338,0.297338,0.297338,0.177369,0.12788,0.129157,0.128651,0.137051,0.175688,0.124882,0.124882,0.066405,0.066405,25.182349,38.699209,38.170555,38.378466,35.198313,25.484798,40,40,40,40,,,,,,,,,,,3096,3096,0.297338,0.297338,0.297338,0.297338,0.297338,0.297338,0.297338,0.297338,0.124882,0.124882,40,40,, +6484,0,0.518555,1,1,0,2,4,,5,8,M 36,,931604,1.488,2.006,0,11.111896,3,4,0.777833,0.777833,0.777833,0.777833,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.81412,0.780778,0.777833,0.777833,0.81412,0.780778,0.779182,0.77989,0.777833,0.777833,0.779182,0.77989,0.784044,0.818439,0.777833,0.777833,0.784044,0.818439,0.777833,0.777833,0.777833,0.777833,0.777833,0.777833,,,,,,,0.81412,0.780778,0.779182,0.77989,0.784044,0.818439,0.777833,0.777833,0.777833,0.777833,0.337576,0.327573,0.327095,0.327307,0.328553,0.338872,0.32669,0.32669,0.173716,0.173716,38.217117,39.849107,39.930709,39.894461,39.683113,38.01541,40,40,40,40,,,,,,,,,,,3096,3096,0.777833,0.777833,0.777833,0.777833,0.777833,0.777833,0.777833,0.777833,0.32669,0.32669,40,40,, +19505,1,0.036248,1,0,0,1,2,RON,5,8,E M 36/S US 23,RAMP,1903207,0,0.036,0,,1.09,4,0.04833,,0.04833,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.048332,,0.04833,,0.048332,,0.04833,,0.04833,,0.04833,,0.04833,,0.04833,,0.04833,,0.04833,,0.04833,,0.04833,,,,,,,,0.048332,,0.04833,,0.04833,,0.04833,,0.04833,,0.021024,,0.021024,,0.021024,,0.021024,,0.011237,,44.998181,,44.999998,,44.999991,,45,,45,,,,,,,,,,,,5160,,0.04833,,0.04833,,0.04833,,0.04833,,0.021024,,45,,, +6301,0,0.027558,1,1,0,2,4,,5,8,M 36,,931604,2.006,2.034,0,0.590529,3,4,0.041337,0.041337,0.041337,0.041337,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.053128,0.041493,0.041337,0.041337,0.053128,0.041493,0.04277,0.041406,0.041337,0.041337,0.04277,0.041406,0.049365,0.043493,0.041337,0.041337,0.049365,0.043493,0.041337,0.041337,0.041337,0.041337,0.041337,0.041337,,,,,,,0.053128,0.041493,0.04277,0.041406,0.049365,0.043493,0.041337,0.041337,0.041337,0.041337,0.020899,0.017408,0.017791,0.017382,0.01977,0.018008,0.017362,0.017362,0.009232,0.009232,31.122426,39.849571,38.660113,39.933728,33.495127,38.017618,40,40,40,40,,,,,,,,,,,3096,3096,0.041337,0.041337,0.041337,0.041337,0.041337,0.041337,0.041337,0.041337,0.017362,0.017362,40,40,, +7821,0,0.512477,1,1,0,2,4,,5,8,Winans Lake,Rd,940105,3.689,4.201,0,10.981646,3,4,0.768715,0.768715,0.768715,0.768715,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.18083,0.797213,0.768715,0.768715,1.18083,0.797213,0.816037,0.809653,0.768715,0.768715,0.816037,0.809653,0.863301,1.132176,0.768715,0.768715,0.863301,1.132176,0.768715,0.768715,0.768715,0.768715,0.768715,0.768715,,,,,,,1.18083,0.797213,0.816037,0.809653,0.863301,1.132176,0.768715,0.768715,0.768715,0.768715,0.446495,0.33141,0.337057,0.335142,0.351236,0.431899,0.32286,0.32286,0.17168,0.17168,26.039833,38.570121,37.680388,37.977502,35.617481,27.158849,40,40,40,40,,,,,,,,,,,3096,3096,0.768715,0.768715,0.768715,0.768715,0.768715,0.768715,0.768715,0.768715,0.32286,0.32286,40,40,, +5700,1,0.20225,1,0,0,1,2,RON,4,8,Silver Lake/S US 23,RAMP,932006,0,0.202,0,,1.09,4,0.269667,,0.269667,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.269907,,0.269667,,0.269907,,0.269689,,0.269667,,0.269689,,0.269778,,0.269667,,0.269778,,0.269667,,0.269667,,0.269667,,,,,,,,0.269907,,0.269689,,0.269778,,0.269667,,0.269667,,0.117377,,0.117312,,0.117338,,0.117305,,0.062698,,44.959994,,44.99641,,44.98155,,45,,45,,,,,,,,,,,,5160,,0.269667,,0.269667,,0.269667,,0.269667,,0.117305,,45,,, +6080,0,0.17445,1,1,0,2,4,,5,8,Whitmore Lake,Rd,932204,2.815,2.989,0,3.738215,3,4,0.261675,0.261675,0.261675,0.261675,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.418279,0.272025,0.261675,0.261675,0.418279,0.272025,0.277784,0.275389,0.261675,0.261675,0.277784,0.275389,0.295222,0.43643,0.261675,0.261675,0.295222,0.43643,0.261675,0.261675,0.261675,0.261675,0.261675,0.261675,,,,,,,0.418279,0.272025,0.277784,0.275389,0.295222,0.43643,0.261675,0.261675,0.261675,0.261675,0.156885,0.113009,0.114736,0.114018,0.119968,0.16233,0.109904,0.109904,0.058441,0.058441,25.023956,38.478088,37.680388,38.008122,35.454676,23.983221,40,40,40,40,,,,,,,,,,,3096,3096,0.261675,0.261675,0.261675,0.261675,0.261675,0.261675,0.261675,0.261675,0.109904,0.109904,40,40,, +6181,0,0.024764,1,1,0,2,4,,5,8,Silver Lake,Rd,931608,0,0.025,0,0.530664,3,4,0.037146,0.037146,0.037146,0.037146,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.07345,0.039377,0.037146,0.037146,0.07345,0.039377,0.040461,0.039993,0.037146,0.037146,0.040461,0.039993,0.042882,0.0885,0.037146,0.037146,0.042882,0.0885,0.037146,0.037146,0.037146,0.037146,0.037146,0.037146,,,,,,,0.07345,0.039377,0.040461,0.039993,0.042882,0.0885,0.037146,0.037146,0.037146,0.037146,0.026493,0.016271,0.016596,0.016455,0.017322,0.031008,0.015602,0.015602,0.008296,0.008296,20.229589,37.733713,36.723473,37.153251,34.649796,16.7894,40,40,40,40,,,,,,,,,,,3096,3096,0.037146,0.037146,0.037146,0.037146,0.037146,0.037146,0.037146,0.037146,0.015602,0.015602,40,40,, +9484,1,0.895251,2,0,0,1,1,,3,5,E I 94,,1426109,25.176,26.071,0,,0.58,7,0.826385,,0.826385,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.827864,,0.826385,,0.827864,,0.826518,,0.826385,,0.826518,,0.841651,,0.826385,,0.841651,,0.826385,,0.826385,,0.826385,,,,,,,,0.827864,,0.826518,,0.841651,,0.826385,,0.826385,,0.409504,,0.4091,,0.41364,,0.409061,,0.222435,,64.883851,,64.989565,,63.82104,,65,,65,,,,,,,,,,,,15136,,0.826385,,0.826385,,0.826385,,0.826385,,0.409061,,65,,, +9673,1,0.26028,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.16,0.42,0,,0.58,7,0.26028,,0.26028,,60,,38000,,8626,,19000,,12259,,13072,,13057,,0.26028,,0.26028,,0.26028,,0.26028,,0.26028,,0.26028,,0.260281,,0.26028,,0.260281,,0.26028,,0.26028,,0.26028,,,,,,,,0.26028,,0.26028,,0.260281,,0.26028,,0.26028,,0.124935,,0.124935,,0.124935,,0.124935,,0.067673,,59.999997,,60,,59.999928,,60,,60,,,,,,,,,,,,13072,,0.26028,,0.26028,,0.26028,,0.26028,,0.124935,,60,,, +9735,0,0.87323,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,0.651,1.524,0,18.712072,6,4.5,1.587691,1.587691,1.587691,1.587691,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,1.855076,1.614881,1.587691,1.587691,1.855076,1.614881,1.672655,1.621016,1.587691,1.587691,1.672655,1.621016,1.783733,1.928452,1.587691,1.587691,1.783733,1.928452,1.587691,1.587691,1.587691,1.587691,1.587691,1.587691,,,,,,,1.855076,1.614881,1.672655,1.621016,1.783733,1.928452,1.587691,1.587691,1.587691,1.587691,0.713704,0.641646,0.658978,0.643486,0.692301,0.735717,0.633489,0.633489,0.334209,0.334209,28.243476,32.444364,31.323737,32.321582,29.373114,27.168845,33,33,33,33,,,,,,,,,,,5160,5160,1.587691,1.587691,1.587691,1.587691,1.587691,1.587691,1.587691,1.587691,0.633489,0.633489,33,33,, +9811,1,0.334198,1,0,0,1,2,RON,3,5,Plymouth/S US 23,RAMP,1426907,0,0.334,0,,1.09,4,0.501297,,0.501297,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.512712,,0.501297,,0.512712,,0.52094,,0.501297,,0.52094,,0.717042,,0.501297,,0.717042,,0.501297,,0.501297,,0.501297,,,,,,,,0.512712,,0.52094,,0.717042,,0.501297,,0.501297,,0.213969,,0.216438,,0.275268,,0.210545,,0.111956,,39.109441,,38.491677,,27.964703,,40,,40,,,,,,,,,,,,5074,,0.501297,,0.501297,,0.501297,,0.501297,,0.210545,,40,,, +9848,0,0.221018,1,1,0,2,5,,3,5,Arlington,Blvd,1429509,0.921,1.142,0,4.736104,8,4.5,0.530444,0.530444,0.530444,0.530444,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.587315,0.531548,0.530444,0.530444,0.587315,0.531548,0.532077,0.532912,0.530444,0.530444,0.532077,0.532912,0.544147,0.617894,0.530444,0.530444,0.544147,0.617894,0.530444,0.530444,0.530444,0.530444,0.530444,0.530444,,,,,,,0.587315,0.531548,0.532077,0.532912,0.544147,0.617894,0.530444,0.530444,0.530444,0.530444,0.215978,0.199248,0.199407,0.199657,0.203027,0.225151,0.198916,0.198916,0.103879,0.103879,22.579187,24.948067,24.923236,24.88421,24.370422,21.461771,25,25,25,25,,,,,,,,,,,2408,2408,0.530444,0.530444,0.530444,0.530444,0.530444,0.530444,0.530444,0.530444,0.198916,0.198916,25,25,, +9953,0,0.07922,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.824,0.903,0,1.697563,5,5,0.135805,0.135805,0.135805,0.135805,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.137083,0.274673,0.135805,0.135805,0.137083,0.274673,0.151765,0.157139,0.135805,0.135805,0.151765,0.157139,0.271404,0.162894,0.135805,0.135805,0.271404,0.162894,0.135805,0.135805,0.135805,0.135805,0.135805,0.135805,,,,,,,0.137083,0.274673,0.151765,0.157139,0.271404,0.162894,0.135805,0.135805,0.135805,0.135805,0.055384,0.096661,0.059789,0.061401,0.095681,0.063128,0.055001,0.055001,0.029085,0.029085,34.673724,17.304851,31.319313,30.248178,17.513294,29.17964,35,35,35,35,,,,,,,,,,,7568,7568,0.135805,0.135805,0.135805,0.135805,0.135805,0.135805,0.135805,0.135805,0.055001,0.055001,35,35,, +9985,0,0.088483,1,1,0,2,3,,2,5,State,St,1427508,6.051,6.14,0,1.896062,6,5,0.176966,0.176966,0.176966,0.176966,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.535827,0.263279,0.176966,0.176966,0.535827,0.263279,0.383315,0.368848,0.176966,0.176966,0.383315,0.368848,0.448454,0.625729,0.176966,0.176966,0.448454,0.625729,0.176966,0.176966,0.176966,0.176966,0.176966,0.176966,,,,,,,0.535827,0.263279,0.383315,0.368848,0.448454,0.625729,0.176966,0.176966,0.176966,0.176966,0.176675,0.094911,0.130921,0.126581,0.150463,0.203646,0.069017,0.069017,0.036278,0.036278,9.907992,20.164836,13.850152,14.393375,11.838402,8.484462,30,30,30,30,,,,,,,,,,,2752,2752,0.176966,0.176966,0.176966,0.176966,0.176966,0.176966,0.176966,0.176966,0.069017,0.069017,30,30,, +10081,0,0.150884,1,1,0,2,7,,2,5,Division,St,1430304,0,0.151,0,3.233224,8.5,4.5,0.452651,0.452651,0.452651,0.452651,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,1.092442,0.478284,0.452651,0.452651,1.092442,0.478284,0.698918,0.54782,0.452651,0.452651,0.698918,0.54782,0.929709,0.764286,0.452651,0.452651,0.929709,0.764286,0.452651,0.452651,0.452651,0.452651,0.452651,0.452651,,,,,,,1.092442,0.478284,0.698918,0.54782,0.929709,0.764286,0.452651,0.452651,0.452651,0.452651,0.354892,0.170644,0.236834,0.191505,0.306072,0.256445,0.162955,0.162955,0.084495,0.084495,8.286962,18.928164,12.952928,16.525549,9.737489,11.84508,20,20,20,20,,,,,,,,,,,1720,1720,0.452651,0.452651,0.452651,0.452651,0.452651,0.452651,0.452651,0.452651,0.162955,0.162955,20,20,, +10151,0,0.145638,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.07,3.215,0,3.120812,5,5,0.249665,0.249665,0.249665,0.249665,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.41759,1.200553,0.249665,0.249665,0.41759,1.200553,0.496463,0.537724,0.249665,0.249665,0.496463,0.537724,1.49098,0.756116,0.249665,0.249665,1.49098,0.756116,0.249665,0.249665,0.249665,0.249665,0.249665,0.249665,,,,,,,0.41759,1.200553,0.496463,0.537724,1.49098,0.756116,0.249665,0.249665,0.249665,0.249665,0.151492,0.386381,0.175154,0.187532,0.473509,0.25305,0.101114,0.101114,0.05347,0.05347,20.92548,7.27854,17.601046,16.250466,5.860757,11.556793,35,35,35,35,,,,,,,,,,,7568,7568,0.249665,0.249665,0.249665,0.249665,0.249665,0.249665,0.249665,0.249665,0.101114,0.101114,35,35,, +10259,-1,0.316237,0,2,0,1,1,,3,5,W I 94,,1426110,25.203,25.519,0,,0.58,7,,0.291911,,0.291911,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.339894,,0.291911,,0.339894,,0.292494,,0.291911,,0.292494,,0.297273,,0.291911,,0.297273,,0.291911,,0.291911,,0.291911,,,,,,,,0.339894,,0.292494,,0.297273,,0.291911,,0.291911,,0.158891,,0.144671,,0.146104,,0.144496,,0.078573,,55.823843,,64.870316,,63.827567,,65,,65,,,,,,,,,,,,15136,,0.291911,,0.291911,,0.291911,,0.291911,,0.144496,,65,, +10416,1,0.42746,1,0,0,1,1,RFF,3,5,S US 23/W I 94,RAMP,1427204,0,0.427,0,,0.58,7,0.46632,,0.46632,,55,,19000,,4313,,9500,,6129,,6536,,6528,,0.466323,,0.46632,,0.466323,,0.466321,,0.46632,,0.466321,,0.466366,,0.46632,,0.466366,,0.46632,,0.46632,,0.46632,,,,,,,,0.466323,,0.466321,,0.466366,,0.46632,,0.46632,,0.21684,,0.216839,,0.216853,,0.216839,,0.116969,,54.999632,,54.999804,,54.994526,,55,,55,,,,,,,,,,,,6536,,0.46632,,0.46632,,0.46632,,0.46632,,0.216839,,55,,, +10445,1,0.687352,2,0,0,1,2,,4,5,E M 14,,1431408,2.483,3.17,0,,0.8,7.5,0.589159,,0.589159,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.591498,,0.589159,,0.591498,,0.589242,,0.589159,,0.589242,,0.590002,,0.589159,,0.590002,,0.589159,,0.589159,,0.589159,,,,,,,,0.591498,,0.589242,,0.590002,,0.589159,,0.589159,,0.301173,,0.300496,,0.300724,,0.300471,,0.163983,,69.723174,,69.990091,,69.900017,,70,,70,,,,,,,,,,,,15136,,0.589159,,0.589159,,0.589159,,0.589159,,0.300471,,70,,, +10455,0,0.386751,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0.118,0.505,0,8.287523,6,4.5,0.703184,0.703184,0.703184,0.703184,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.861368,1.663243,0.703184,0.703184,0.861368,1.663243,0.911363,0.881484,0.703184,0.703184,0.911363,0.881484,1.701744,1.020116,0.703184,0.703184,1.701744,1.020116,0.703184,0.703184,0.703184,0.703184,0.703184,0.703184,,,,,,,0.861368,1.663243,0.911363,0.881484,1.701744,1.020116,0.703184,0.703184,0.703184,0.703184,0.328026,0.568588,0.343024,0.33406,0.580138,0.37565,0.28057,0.28057,0.14802,0.14802,26.939782,13.951695,25.461942,26.325007,13.636051,22.747484,33,33,33,33,,,,,,,,,,,2580,2580,0.703184,0.703184,0.703184,0.703184,0.703184,0.703184,0.703184,0.703184,0.28057,0.28057,33,33,, +10456,0,0.118268,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0,0.118,0,2.534317,6,4.5,0.215033,0.215033,0.215033,0.215033,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.263406,0.534797,0.215033,0.215033,0.263406,0.534797,0.285191,0.270445,0.215033,0.215033,0.285191,0.270445,0.550497,0.323662,0.215033,0.215033,0.550497,0.323662,0.215033,0.215033,0.215033,0.215033,0.215033,0.215033,,,,,,,0.263406,0.534797,0.285191,0.270445,0.550497,0.323662,0.215033,0.215033,0.215033,0.215033,0.10031,0.181727,0.106846,0.102422,0.186437,0.118387,0.085798,0.085798,0.045264,0.045264,26.939782,13.268757,24.881877,26.238591,12.890335,21.924362,33,33,33,33,,,,,,,,,,,2580,2580,0.215033,0.215033,0.215033,0.215033,0.215033,0.215033,0.215033,0.215033,0.085798,0.085798,33,33,, +10486,1,0.690237,2,0,0,1,2,,4,5,N US 23,,1431202,16.678,17.368,0,,0.8,7.5,0.591631,,0.591631,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.591684,,0.591631,,0.591684,,0.591637,,0.591631,,0.591637,,0.592695,,0.591631,,0.592695,,0.591631,,0.591631,,0.591631,,,,,,,,0.591684,,0.591637,,0.592695,,0.591631,,0.591631,,0.301748,,0.301734,,0.302051,,0.301732,,0.164671,,69.993826,,69.999272,,69.874378,,70,,70,,,,,,,,,,,,15136,,0.591631,,0.591631,,0.591631,,0.591631,,0.301732,,70,,, +10492,1,1.035543,2,0,0,1,2,,3,5,N US 23,,1431202,12.148,13.184,0,,0.58,7,0.955886,,0.955886,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.185048,,0.955886,,1.185048,,0.960485,,0.955886,,0.960485,,1.034932,,0.955886,,1.034932,,0.955886,,0.955886,,0.955886,,,,,,,,1.185048,,0.960485,,1.034932,,0.955886,,0.955886,,0.541912,,0.474543,,0.496877,,0.473163,,0.257293,,52.430426,,64.688749,,60.035435,,65,,65,,,,,,,,,,,,15136,,0.955886,,0.955886,,0.955886,,0.955886,,0.473163,,65,,, +10510,1,0.550104,1,0,0,1,1,RFF,3,5,E I 94/S US 23,RAMP,1431108,0,0.55,0,,0.58,7,0.600113,,0.600113,,55,,19000,,4313,,9500,,6129,,6536,,6528,,0.600129,,0.600113,,0.600129,,0.600128,,0.600113,,0.600128,,0.600782,,0.600113,,0.600782,,0.600113,,0.600113,,0.600113,,,,,,,,0.600129,,0.600128,,0.600782,,0.600113,,0.600113,,0.279057,,0.279057,,0.279253,,0.279053,,0.150528,,54.998592,,54.998656,,54.938793,,55,,55,,,,,,,,,,,,6536,,0.600113,,0.600113,,0.600113,,0.600113,,0.279053,,55,,, +10605,0,0.153344,2,2,1,2,3,,3,5,Packard,St,1430704,4.002,4.155,0,3.285939,5,5,0.262875,0.262875,0.262875,0.262875,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.273315,0.366611,0.262875,0.262875,0.273315,0.366611,0.276677,0.272546,0.262875,0.262875,0.276677,0.272546,0.380107,0.294428,0.262875,0.262875,0.380107,0.294428,0.262875,0.262875,0.262875,0.262875,0.262875,0.262875,,,,,,,0.273315,0.366611,0.276677,0.272546,0.380107,0.294428,0.262875,0.262875,0.262875,0.262875,0.109596,0.137585,0.110605,0.109366,0.141634,0.11593,0.106464,0.106464,0.056299,0.056299,33.663094,25.096448,33.254052,33.758029,24.20539,31.249138,35,35,35,35,,,,,,,,,,,7946,7946,0.262875,0.262875,0.262875,0.262875,0.262875,0.262875,0.262875,0.262875,0.106464,0.106464,35,35,, +10620,0,0.131454,1,1,0,2,3,,2,5,Packard,St,1430704,0.583,0.715,0,2.816865,6,5,0.262907,0.262907,0.262907,0.262907,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.334775,0.672142,0.262907,0.262907,0.334775,0.672142,0.390486,0.418908,0.262907,0.262907,0.390486,0.418908,0.619583,0.475997,0.262907,0.262907,0.619583,0.475997,0.262907,0.262907,0.262907,0.262907,0.262907,0.262907,,,,,,,0.334775,0.672142,0.390486,0.418908,0.619583,0.475997,0.262907,0.262907,0.262907,0.262907,0.124094,0.225304,0.140807,0.149334,0.209537,0.166461,0.102534,0.102534,0.053896,0.053896,23.559743,11.734454,20.19848,18.82804,12.729881,16.569906,30,30,30,30,,,,,,,,,,,2752,2752,0.262907,0.262907,0.262907,0.262907,0.262907,0.262907,0.262907,0.262907,0.102534,0.102534,30,30,, +10710,0,0.286261,2,2,0,2,4,,4,5,Dixboro,Rd,4605100,0.095,0.381,0,6.134169,4.5,4.5,0.451991,0.451991,0.451991,0.451991,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.460589,0.500315,0.451991,0.451991,0.460589,0.500315,0.458325,0.464191,0.451991,0.451991,0.458325,0.464191,0.488741,0.500448,0.451991,0.451991,0.488741,0.500448,0.451991,0.451991,0.451991,0.451991,0.451991,0.451991,,,,,,,0.460589,0.500315,0.458325,0.464191,0.488741,0.500448,0.451991,0.451991,0.451991,0.451991,0.189704,0.201622,0.189024,0.190784,0.198149,0.201661,0.187124,0.187124,0.099287,0.099287,37.290689,34.329699,37.474912,37.001275,35.142722,34.320587,38,38,38,38,,,,,,,,,,,6192,6192,0.451991,0.451991,0.451991,0.451991,0.451991,0.451991,0.451991,0.451991,0.187124,0.187124,38,38,, +10759,0,0.036913,2,2,0,2,3,,3,5,Plymouth,Rd,1443101,2.956,2.992,0,0.790988,5,5,0.063279,0.063279,0.063279,0.063279,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.068902,0.442953,0.063279,0.063279,0.068902,0.442953,0.066184,0.130547,0.063279,0.063279,0.066184,0.130547,0.098023,0.303265,0.063279,0.063279,0.098023,0.303265,0.063279,0.063279,0.063279,0.063279,0.063279,0.063279,,,,,,,0.068902,0.442953,0.066184,0.130547,0.098023,0.303265,0.063279,0.063279,0.063279,0.063279,0.027315,0.13953,0.0265,0.045808,0.036051,0.097624,0.025628,0.025628,0.013552,0.013552,32.143606,5,33.463585,16.965269,22.59434,7.303069,35,35,35,35,,,,,,,,,,,7568,7568,0.063279,0.063279,0.063279,0.063279,0.063279,0.063279,0.063279,0.063279,0.025628,0.025628,35,35,, +10886,0,0.221197,1,1,0,2,4,,3,5,Geddes,Rd,1448104,2.279,2.5,0,4.739934,6,4.5,0.402176,0.402176,0.402176,0.402176,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.407366,1.066792,0.402176,0.402176,0.407366,1.066792,0.428715,0.47445,0.402176,0.402176,0.428715,0.47445,0.755453,0.529577,0.402176,0.402176,0.755453,0.529577,0.402176,0.402176,0.402176,0.402176,0.402176,0.402176,,,,,,,0.407366,1.066792,0.428715,0.47445,0.755453,0.529577,0.402176,0.402176,0.402176,0.402176,0.162025,0.359853,0.16843,0.18215,0.266451,0.198688,0.160468,0.160468,0.084658,0.084658,32.579565,12.440861,30.957168,27.973062,17.56803,25.061185,33,33,33,33,,,,,,,,,,,2580,2580,0.402176,0.402176,0.402176,0.402176,0.402176,0.402176,0.402176,0.402176,0.160468,0.160468,33,33,, +37298,-1,0.037649,0,2,0,2,4,,4,5,Superior,Rd,4606145,0,0.038,0,0.806775,4.5,4.5,,0.059447,,0.059447,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.059447,,0.059447,,0.059447,,0.059447,,0.059447,,0.059447,,0.059455,,0.059447,,0.059455,,0.059447,,0.059447,,0.059447,,,,,,,,0.059447,,0.059447,,0.059455,,0.059447,,0.059447,,0.024611,,0.024611,,0.024613,,0.024611,,0.013058,,37.999439,,37.999985,,37.994922,,38,,38,,,,,,,,,,,,6192,,0.059447,,0.059447,,0.059447,,0.059447,,0.024611,,38,, +11412,-1,0.57964,0,2,0,1,2,,3,5,S US 23,,1431603,16.543,17.122,0,,0.58,7,,0.535053,,0.535053,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.536603,,0.535053,,0.536603,,0.535068,,0.535053,,0.535068,,0.535206,,0.535053,,0.535206,,0.535053,,0.535053,,0.535053,,,,,,,,0.536603,,0.535068,,0.535206,,0.535053,,0.535053,,0.265316,,0.264856,,0.264897,,0.264851,,0.144018,,64.81224,,64.998204,,64.981382,,65,,65,,,,,,,,,,,,15136,,0.535053,,0.535053,,0.535053,,0.535053,,0.264851,,65,, +11433,-1,1.278832,0,2,0,1,2,,3,5,S US 23,,1431603,12.186,13.464,0,,0.58,7,,1.180461,,1.180461,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.226174,,1.180461,,1.226174,,1.18574,,1.180461,,1.18574,,1.408663,,1.180461,,1.408663,,1.180461,,1.180461,,1.180461,,,,,,,,1.226174,,1.18574,,1.408663,,1.180461,,1.180461,,0.598042,,0.585912,,0.652789,,0.584328,,0.317741,,62.576726,,64.710605,,54.470037,,65,,65,,,,,,,,,,,,15136,,1.180461,,1.180461,,1.180461,,1.180461,,0.584328,,65,, +11575,-1,0.645774,0,2,0,1,2,,4,5,W M 14,,1431410,2.456,3.102,0,,0.8,7.5,,0.55352,,0.55352,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.553858,,0.55352,,0.553858,,0.553564,,0.55352,,0.553564,,0.554393,,0.55352,,0.554393,,0.55352,,0.55352,,0.55352,,,,,,,,0.553858,,0.553564,,0.554393,,0.55352,,0.55352,,0.282397,,0.282308,,0.282557,,0.282295,,0.154063,,69.957348,,69.994524,,69.889788,,70,,70,,,,,,,,,,,,15136,,0.55352,,0.55352,,0.55352,,0.55352,,0.282295,,70,, +11580,1,0.646556,2,0,0,1,2,RFF,3,5,W M 24/S US 23,RAMP,1431409,0,0.646,0,,0.58,7,0.705334,,0.705334,,55,,38000,,8626,,19000,,12259,,13072,,13057,,0.711151,,0.705334,,0.711151,,0.705438,,0.705334,,0.705438,,0.706508,,0.705334,,0.706508,,0.705334,,0.705334,,0.705334,,,,,,,,0.711151,,0.705438,,0.706508,,0.705334,,0.705334,,0.329726,,0.328012,,0.328332,,0.32798,,0.176921,,54.550126,,54.991914,,54.908651,,55,,55,,,,,,,,,,,,13072,,0.705334,,0.705334,,0.705334,,0.705334,,0.32798,,55,,, +21507,0,0.098118,2,2,0,2,3,,2,5,Main,St,4603186,0.916,1.014,0,2.102532,6,5,0.196236,0.196236,0.196236,0.196236,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.696738,0.308911,0.196236,0.196236,0.696738,0.308911,0.368698,0.404052,0.196236,0.196236,0.368698,0.404052,0.446274,0.933783,0.196236,0.196236,0.446274,0.933783,0.196236,0.196236,0.196236,0.196236,0.196236,0.196236,,,,,,,0.696738,0.308911,0.368698,0.404052,0.446274,0.933783,0.196236,0.196236,0.196236,0.196236,0.226683,0.110335,0.128271,0.138877,0.151543,0.297796,0.076532,0.076532,0.040228,0.040228,8.449506,19.057537,15.967242,14.570127,13.19165,6.304556,30,30,30,30,,,,,,,,,,,5504,5504,0.196236,0.196236,0.196236,0.196236,0.196236,0.196236,0.196236,0.196236,0.076532,0.076532,30,30,, +21862,0,1.013745,2,2,1,2,3,,3,5,Ellsworth,Rd,4603895,0,1.013,0,21.723116,5,5,1.737849,1.737849,1.737849,1.737849,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.759049,1.937926,1.737849,1.737849,1.759049,1.937926,1.744172,1.7469,1.737849,1.737849,1.744172,1.7469,1.928592,1.829163,1.737849,1.737849,1.928592,1.829163,1.737849,1.737849,1.737849,1.737849,1.737849,1.737849,,,,,,,1.759049,1.937926,1.744172,1.7469,1.928592,1.829163,1.737849,1.737849,1.737849,1.737849,0.710189,0.763852,0.705726,0.706544,0.761052,0.731223,0.703829,0.703829,0.372189,0.372189,34.578192,31.386498,34.873124,34.818659,31.538416,33.252763,35,35,35,35,,,,,,,,,,,7946,7946,1.737849,1.737849,1.737849,1.737849,1.737849,1.737849,1.737849,1.737849,0.703829,0.703829,35,35,, +22071,0,0.14517,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.69,0.835,0,3.110781,8,4.5,0.348407,0.348407,0.348407,0.348407,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.354099,0.555905,0.348407,0.348407,0.354099,0.555905,0.353305,0.353233,0.348407,0.348407,0.353305,0.353233,0.505312,0.408051,0.348407,0.348407,0.505312,0.408051,0.348407,0.348407,0.348407,0.348407,0.348407,0.348407,,,,,,,0.354099,0.555905,0.353305,0.353233,0.505312,0.408051,0.348407,0.348407,0.348407,0.348407,0.13236,0.192902,0.132122,0.132101,0.177724,0.148546,0.130653,0.130653,0.06823,0.06823,24.598189,15.668479,24.653415,24.658444,17.237239,21.34583,25,25,25,25,,,,,,,,,,,2408,2408,0.348407,0.348407,0.348407,0.348407,0.348407,0.348407,0.348407,0.348407,0.130653,0.130653,25,25,, +26380,0,0.226779,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,4.859547,0.15,4,0.907115,0.907115,0.907115,0.907115,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,,,,,,,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.312955,0.312955,0.312955,0.312955,0.312955,0.312955,0.312955,0.312955,0.161013,0.161013,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.907115,0.312955,0.312955,15,15,, +26393,0,0.187228,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.012021,0.15,4,1.123366,1.123366,1.123366,1.123366,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,,,,,,,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,0.370711,0.370711,0.370711,0.370711,0.370711,0.370711,0.370711,0.370711,0.1891,0.1891,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,1.123366,0.370711,0.370711,10,10,, +26394,0,0.226828,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.860598,0.15,4,1.360967,1.360967,1.360967,1.360967,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,,,,,,,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,0.449119,0.449119,0.449119,0.449119,0.449119,0.449119,0.449119,0.449119,0.229096,0.229096,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,1.360967,0.449119,0.449119,10,10,, +26483,0,0.566348,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.136038,0.15,4,3.398091,3.398091,3.398091,3.398091,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,,,,,,,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,1.12137,1.12137,1.12137,1.12137,1.12137,1.12137,1.12137,1.12137,0.572012,0.572012,9.999999,9.999999,10,10,9.999998,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,3.398091,1.12137,1.12137,10,10,, +26486,0,0.442406,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.480125,0.15,4,2.654435,2.654435,2.654435,2.654435,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,,,,,,,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,0.875964,0.875964,0.875964,0.875964,0.875964,0.875964,0.875964,0.875964,0.44683,0.44683,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,2.654435,0.875964,0.875964,10,10,, +26501,0,0.569069,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.194331,0.15,4,3.414413,3.414413,3.414413,3.414413,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,,,,,,,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,1.126756,1.126756,1.126756,1.126756,1.126756,1.126756,1.126756,1.126756,0.574759,0.574759,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,3.414413,1.126756,1.126756,10,10,, +26517,0,0.330166,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.07499,0.15,4,1.980997,1.980997,1.980997,1.980997,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,,,,,,,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,0.653729,0.653729,0.653729,0.653729,0.653729,0.653729,0.653729,0.653729,0.333468,0.333468,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,1.980997,0.653729,0.653729,10,10,, +26519,0,0.482492,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.339112,0.15,4,2.894951,2.894951,2.894951,2.894951,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,,,,,,,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,0.955334,0.955334,0.955334,0.955334,0.955334,0.955334,0.955334,0.955334,0.487317,0.487317,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,2.894951,0.955334,0.955334,10,10,, +26521,0,0.228843,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.90377,0.15,4,1.373056,1.373056,1.373056,1.373056,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,,,,,,,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,0.453108,0.453108,0.453108,0.453108,0.453108,0.453108,0.453108,0.453108,0.231131,0.231131,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,1.373056,0.453108,0.453108,10,10,, +26524,0,0.323251,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.926807,0.15,4,1.939506,1.939506,1.939506,1.939506,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,,,,,,,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,0.640037,0.640037,0.640037,0.640037,0.640037,0.640037,0.640037,0.640037,0.326483,0.326483,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,1.939506,0.640037,0.640037,10,10,, +26528,0,0.508431,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.89494,0.15,4,3.050583,3.050583,3.050583,3.050583,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,,,,,,,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,1.006692,1.006692,1.006692,1.006692,1.006692,1.006692,1.006692,1.006692,0.513515,0.513515,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,3.050583,1.006692,1.006692,10,10,, +26532,0,0.231025,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.950543,0.15,4,1.386152,1.386152,1.386152,1.386152,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,,,,,,,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,0.45743,0.45743,0.45743,0.45743,0.45743,0.45743,0.45743,0.45743,0.233336,0.233336,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,1.386152,0.45743,0.45743,10,10,, +26648,0,0.393506,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.432264,0.15,4,2.361034,2.361034,2.361034,2.361034,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,,,,,,,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,0.779141,0.779141,0.779141,0.779141,0.779141,0.779141,0.779141,0.779141,0.397441,0.397441,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,2.361034,0.779141,0.779141,10,10,, +26657,0,0.212724,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.558366,0.15,4,1.276342,1.276342,1.276342,1.276342,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,,,,,,,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,0.421193,0.421193,0.421193,0.421193,0.421193,0.421193,0.421193,0.421193,0.214851,0.214851,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,1.276342,0.421193,0.421193,10,10,, +26671,0,0.177874,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.811581,0.15,4,1.067243,1.067243,1.067243,1.067243,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,,,,,,,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,0.35219,0.35219,0.35219,0.35219,0.35219,0.35219,0.35219,0.35219,0.179653,0.179653,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,1.067243,0.35219,0.35219,10,10,, +29947,0,0.247067,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.294292,0.15,4,1.482402,1.482402,1.482402,1.482402,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,,,,,,,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,0.489193,0.489193,0.489193,0.489193,0.489193,0.489193,0.489193,0.489193,0.249538,0.249538,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,1.482402,0.489193,0.489193,10,10,, +29948,0,0.18904,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.050859,0.15,4,1.134241,1.134241,1.134241,1.134241,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,,,,,,,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,0.374299,0.374299,0.374299,0.374299,0.374299,0.374299,0.374299,0.374299,0.19093,0.19093,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,1.134241,0.374299,0.374299,10,10,, +29952,0,0.244675,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.243043,0.15,4,1.468052,1.468052,1.468052,1.468052,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.468052,1.468052,1.468052,1.468052,1.468052,1.468052,1.468052,1.468053,1.468052,1.468052,1.468052,1.468053,1.468053,1.468053,1.468052,1.468052,1.468053,1.468053,1.468052,1.468052,1.468052,1.468052,1.468052,1.468052,,,,,,,1.468052,1.468052,1.468052,1.468053,1.468053,1.468053,1.468052,1.468052,1.468052,1.468052,0.484457,0.484457,0.484457,0.484457,0.484458,0.484457,0.484457,0.484457,0.247122,0.247122,10,9.999999,9.999996,9.999996,9.999992,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,1.468052,1.468052,1.468052,1.468052,1.468052,1.468052,1.468052,1.468052,0.484457,0.484457,10,10,, +30014,0,0.604088,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.944734,0.15,4,3.624526,3.624526,3.624526,3.624526,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,,,,,,,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,1.196093,1.196093,1.196093,1.196093,1.196094,1.196093,1.196093,1.196093,0.610128,0.610128,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,3.624526,1.196093,1.196093,10,10,, +30028,0,0.451154,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.667581,0.15,4,2.706923,2.706923,2.706923,2.706923,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,,,,,,,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,0.893284,0.893284,0.893284,0.893284,0.893284,0.893284,0.893284,0.893284,0.455665,0.455665,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,2.706923,0.893284,0.893284,10,10,, +30132,0,0.31797,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.81365,0.15,4,1.907822,1.907822,1.907822,1.907822,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,,,,,,,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,0.629581,0.629581,0.629581,0.629581,0.629581,0.629581,0.629581,0.629581,0.32115,0.32115,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,1.907822,0.629581,0.629581,10,10,, +30137,0,0.410301,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.792159,0.15,4,2.461804,2.461804,2.461804,2.461804,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,,,,,,,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,0.812395,0.812395,0.812395,0.812395,0.812395,0.812395,0.812395,0.812395,0.414404,0.414404,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,2.461804,0.812395,0.812395,10,10,, +9485,1,2.190355,2,0,0,1,1,,3,5,E I 94,,1426109,22.987,25.176,0,,0.58,7,2.021866,,2.021866,,65,,44000,,9988,,22000,,14194,,15136,,15118,,2.065529,,2.021866,,2.065529,,2.027896,,2.021866,,2.027896,,2.680417,,2.021866,,2.680417,,2.021866,,2.021866,,2.021866,,,,,,,,2.065529,,2.027896,,2.680417,,2.021866,,2.021866,,1.013922,,1.002633,,1.198389,,1.000824,,0.544219,,63.625979,,64.806717,,49.030173,,65,,65,,,,,,,,,,,,15136,,2.021866,,2.021866,,2.021866,,2.021866,,1.000824,,65,,, +9640,1,0.315651,1,0,0,1,1,ROF,3,5,W I 94/State,RAMP,1427202,0,0.316,0,,2.24,5,0.541116,,0.541116,,35,,14750,,3348,,7375,,4758,,5074,,5068,,1.556029,,0.541116,,1.556029,,0.736563,,0.541116,,0.736563,,0.871014,,0.541116,,0.871014,,0.541116,,0.541116,,0.541116,,,,,,,,1.556029,,0.736563,,0.871014,,0.541116,,0.541116,,0.523626,,0.277786,,0.318121,,0.219152,,0.115889,,12.171398,,25.712735,,21.743683,,35,,35,,,,,,,,,,,,5074,,0.541116,,0.541116,,0.541116,,0.541116,,0.219152,,35,,, +9642,1,0.385036,1,0,0,1,1,RON,3,5,S State/W I 94,RAMP,1427110,0,0.385,0,,1.09,4,0.577553,,0.577553,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.577554,,0.577553,,0.577554,,0.577563,,0.577553,,0.577563,,0.577667,,0.577553,,0.577667,,0.577553,,0.577553,,0.577553,,,,,,,,0.577554,,0.577563,,0.577667,,0.577553,,0.577553,,0.242573,,0.242575,,0.242606,,0.242572,,0.128987,,39.999951,,39.999369,,39.992164,,40,,40,,,,,,,,,,,,5074,,0.577553,,0.577553,,0.577553,,0.577553,,0.242572,,40,,, +9952,0,0.257187,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.951,1.208,0,5.511141,5,5,0.440891,0.440891,0.440891,0.440891,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.444978,0.847065,0.440891,0.440891,0.444978,0.847065,0.48468,0.500375,0.440891,0.440891,0.48468,0.500375,0.841531,0.522042,0.440891,0.440891,0.841531,0.522042,0.440891,0.440891,0.440891,0.440891,0.440891,0.440891,,,,,,,0.444978,0.847065,0.48468,0.500375,0.841531,0.522042,0.440891,0.440891,0.440891,0.440891,0.179787,0.300413,0.191698,0.196406,0.298753,0.202906,0.178561,0.178561,0.094424,0.094424,34.678554,18.217251,31.83791,30.839237,18.337051,29.559327,35,35,35,35,,,,,,,,,,,7568,7568,0.440891,0.440891,0.440891,0.440891,0.440891,0.440891,0.440891,0.440891,0.178561,0.178561,35,35,, +10015,0,0.193142,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.483,3.676,0,4.138764,5,5,0.331101,0.331101,0.331101,0.331101,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.349476,0.331657,0.331101,0.331101,0.349476,0.331657,0.334423,0.333525,0.331101,0.331101,0.334423,0.333525,0.337925,0.354137,0.331101,0.331101,0.337925,0.354137,0.331101,0.331101,0.331101,0.331101,0.331101,0.331101,,,,,,,0.349476,0.331657,0.334423,0.333525,0.337925,0.354137,0.331101,0.331101,0.331101,0.331101,0.139608,0.134263,0.135092,0.134823,0.136143,0.141007,0.134096,0.134096,0.070911,0.070911,33.15977,34.941304,34.652354,34.74564,34.293279,32.723368,35,35,35,35,,,,,,,,,,,7946,7946,0.331101,0.331101,0.331101,0.331101,0.331101,0.331101,0.331101,0.331101,0.134096,0.134096,35,35,, +10258,0,0.09187,2,2,0,2,3,,3,5,State,St,1427508,3.815,3.906,0,1.968641,5,5,0.157491,0.157491,0.157491,0.157491,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.184618,0.232564,0.157491,0.157491,0.184618,0.232564,0.16694,0.309352,0.157491,0.157491,0.16694,0.309352,0.167929,1.040967,0.157491,0.157491,0.167929,1.040967,0.157491,0.157491,0.157491,0.157491,0.157491,0.157491,,,,,,,0.184618,0.232564,0.16694,0.309352,0.167929,1.040967,0.157491,0.157491,0.157491,0.157491,0.071922,0.086306,0.066619,0.109342,0.066915,0.328827,0.063784,0.063784,0.033729,0.033729,29.857225,23.701809,33.018944,17.818538,32.824577,5.295262,35,35,35,35,,,,,,,,,,,7568,7568,0.157491,0.157491,0.157491,0.157491,0.157491,0.157491,0.157491,0.157491,0.063784,0.063784,35,35,, +10261,-1,2.313934,0,2,0,1,1,,3,5,W I 94,,1426110,22.89,25.203,0,,0.58,7,,2.135939,,2.135939,,65,,44000,,9988,,22000,,14194,,15136,,15118,,2.828456,,2.135939,,2.828456,,2.149129,,2.135939,,2.149129,,2.280597,,2.135939,,2.280597,,2.135939,,2.135939,,2.135939,,,,,,,,2.828456,,2.149129,,2.280597,,2.135939,,2.135939,,1.265045,,1.061247,,1.100687,,1.05729,,0.574924,,49.085442,,64.601077,,60.877052,,65,,65,,,,,,,,,,,,15136,,2.135939,,2.135939,,2.135939,,2.135939,,1.05729,,65,, +10418,1,0.256369,1,0,0,1,1,RON,3,5,N State/W I 94,RAMP,1427201,0,0.256,0,,1.09,4,0.384553,,0.384553,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.385372,,0.384553,,0.385372,,0.3849,,0.384553,,0.3849,,0.388643,,0.384553,,0.388643,,0.384553,,0.384553,,0.384553,,,,,,,,0.385372,,0.3849,,0.388643,,0.384553,,0.384553,,0.161758,,0.161616,,0.162739,,0.161512,,0.085883,,39.914953,,39.963935,,39.57908,,40,,40,,,,,,,,,,,,5074,,0.384553,,0.384553,,0.384553,,0.384553,,0.161512,,40,,, +10612,0,0.256374,1,1,1,2,3,,3,5,Packard,St,1430704,2.113,2.37,0,5.493733,5,5,0.439499,0.439499,0.439499,0.439499,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.481572,0.842951,0.439499,0.439499,0.481572,0.842951,0.533847,0.534539,0.439499,0.439499,0.533847,0.534539,0.977996,0.699838,0.439499,0.439499,0.977996,0.699838,0.439499,0.439499,0.439499,0.439499,0.439499,0.439499,,,,,,,0.481572,0.842951,0.533847,0.534539,0.977996,0.699838,0.439499,0.439499,0.439499,0.439499,0.190619,0.299033,0.206301,0.206509,0.339546,0.256099,0.177997,0.177997,0.094126,0.094126,31.942147,18.248327,28.814347,28.777067,15.728538,21.980017,35,35,35,35,,,,,,,,,,,4162,4162,0.439499,0.439499,0.439499,0.439499,0.439499,0.439499,0.439499,0.439499,0.177997,0.177997,35,35,, +10752,0,0.346514,1,1,0,2,7,,4,5,Morgan,Rd,1437402,0.153,0.5,0,7.425291,6.55,4.5,0.831633,0.831633,0.831633,0.831633,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.831683,0.831636,0.831633,0.831633,0.831683,0.831636,0.831633,0.831633,0.831633,0.831633,0.831633,0.831633,0.83312,0.832398,0.831633,0.831633,0.83312,0.832398,0.831633,0.831633,0.831633,0.831633,0.831633,0.831633,,,,,,,0.831683,0.831636,0.831633,0.831633,0.83312,0.832398,0.831633,0.831633,0.831633,0.831633,0.311877,0.311863,0.311862,0.311862,0.312308,0.312092,0.311862,0.311862,0.162861,0.162861,24.998496,24.999901,25,25,24.955364,24.977025,25,25,25,25,,,,,,,,,,,2064,2064,0.831633,0.831633,0.831633,0.831633,0.831633,0.831633,0.831633,0.831633,0.311862,0.311862,25,25,, +10778,0,0.243059,1,1,0,2,5,,4,5,Stone School,Rd,1436802,1.397,1.64,0,5.208418,5.8,4.5,0.540132,0.540132,0.540132,0.540132,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.053588,0.557517,0.540132,0.540132,1.053588,0.557517,0.638548,0.639555,0.540132,0.540132,0.638548,0.639555,0.865015,1.348329,0.540132,0.540132,0.865015,1.348329,0.540132,0.540132,0.540132,0.540132,0.540132,0.540132,,,,,,,1.053588,0.557517,0.638548,0.639555,0.865015,1.348329,0.540132,0.540132,0.540132,0.540132,0.359827,0.211006,0.235315,0.235617,0.303255,0.448249,0.20579,0.20579,0.107756,0.107756,13.841817,26.158049,22.838634,22.802673,16.859332,10.816033,27,27,27,27,,,,,,,,,,,2580,2580,0.540132,0.540132,0.540132,0.540132,0.540132,0.540132,0.540132,0.540132,0.20579,0.20579,27,27,, +19889,0,0.5439,1,1,1,2,4,,3,5,Platt,Rd,4302160,10.16,10.703,0,11.654991,6,4.5,0.988908,0.988908,0.988908,0.988908,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,2.353512,1.060211,0.988908,0.988908,2.353512,1.060211,1.300856,1.145429,0.988908,0.988908,1.300856,1.145429,1.779172,2.481075,0.988908,0.988908,1.779172,2.481075,0.988908,0.988908,0.988908,0.988908,0.988908,0.988908,,,,,,,2.353512,1.060211,1.300856,1.145429,1.779172,2.481075,0.988908,0.988908,0.988908,0.988908,0.803956,0.415965,0.488159,0.441531,0.631654,0.842224,0.394574,0.394574,0.208165,0.208165,13.866075,30.78064,25.08654,28.490605,18.342222,13.15316,33,33,33,33,,,,,,,,,,,2838,2838,0.988908,0.988908,0.988908,0.988908,0.988908,0.988908,0.988908,0.988908,0.394574,0.394574,33,33,, +21185,0,0.269455,2,2,0,2,3,,3,5,Eisenhower,Pkwy,4600068,1.956,2.226,0,5.774037,5,5,0.461923,0.461923,0.461923,0.461923,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.491394,0.57164,0.461923,0.461923,0.491394,0.57164,0.507113,0.501066,0.461923,0.461923,0.507113,0.501066,0.651784,0.551842,0.461923,0.461923,0.651784,0.551842,0.461923,0.461923,0.461923,0.461923,0.461923,0.461923,,,,,,,0.491394,0.57164,0.507113,0.501066,0.651784,0.551842,0.461923,0.461923,0.461923,0.461923,0.19592,0.219994,0.200636,0.198822,0.244037,0.214054,0.187079,0.187079,0.098928,0.098928,32.900903,28.282311,31.881063,32.265811,24.804709,29.296996,35,35,35,35,,,,,,,,,,,7568,7568,0.461923,0.461923,0.461923,0.461923,0.461923,0.461923,0.461923,0.461923,0.187079,0.187079,35,35,, +21500,0,0.326418,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,8.706,9.033,0,6.994667,3.7,5,0.489627,0.489627,0.489627,0.489627,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.509939,0.71187,0.489627,0.489627,0.509939,0.71187,0.538392,0.559069,0.489627,0.489627,0.538392,0.559069,0.760197,0.652635,0.489627,0.489627,0.760197,0.652635,0.489627,0.489627,0.489627,0.489627,0.489627,0.489627,,,,,,,0.509939,0.71187,0.538392,0.559069,0.760197,0.652635,0.489627,0.489627,0.489627,0.489627,0.211737,0.272316,0.220273,0.226476,0.286814,0.254546,0.205643,0.205643,0.10935,0.10935,38.406688,27.512155,36.376954,35.03156,25.76315,30.00924,40,40,40,40,,,,,,,,,,,4162,4162,0.489627,0.489627,0.489627,0.489627,0.489627,0.489627,0.489627,0.489627,0.205643,0.205643,40,40,, +26256,0,0.882197,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.904231,0.15,4,3.52879,3.52879,3.52879,3.52879,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,,,,,,,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,1.217432,1.217432,1.217432,1.217432,1.217432,1.217432,1.217432,1.217432,0.62636,0.62636,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,3.52879,1.217432,1.217432,15,15,, +26327,0,0.531429,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.387764,0.15,4,2.125716,2.125716,2.125716,2.125716,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,,,,,,,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,0.733372,0.733372,0.733372,0.733372,0.733372,0.733372,0.733372,0.733372,0.377315,0.377315,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,2.125716,0.733372,0.733372,15,15,, +26485,0,0.423497,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.074944,0.15,4,2.540984,2.540984,2.540984,2.540984,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.540985,2.540984,2.540984,2.540984,2.540985,2.540984,2.540984,2.540984,2.540984,2.540984,2.540984,2.540984,2.540985,2.540985,2.540984,2.540984,2.540985,2.540985,2.540984,2.540984,2.540984,2.540984,2.540984,2.540984,,,,,,,2.540985,2.540984,2.540984,2.540984,2.540985,2.540985,2.540984,2.540984,2.540984,2.540984,0.838525,0.838525,0.838525,0.838525,0.838525,0.838525,0.838525,0.838525,0.427732,0.427732,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.540984,2.540984,2.540984,2.540984,2.540984,2.540984,2.540984,2.540984,0.838525,0.838525,10,10,, +26539,0,0.249189,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.339772,0.15,4,1.495136,1.495136,1.495136,1.495136,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,,,,,,,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,0.493395,0.493395,0.493395,0.493395,0.493395,0.493395,0.493395,0.493395,0.251681,0.251681,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,1.495136,0.493395,0.493395,10,10,, +26543,0,0.319979,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.856699,0.15,4,1.919876,1.919876,1.919876,1.919876,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,,,,,,,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,0.633559,0.633559,0.633559,0.633559,0.633559,0.633559,0.633559,0.633559,0.323179,0.323179,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,1.919876,0.633559,0.633559,10,10,, +26677,0,0.416733,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.929989,0.15,4,2.500397,2.500397,2.500397,2.500397,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.500397,2.500398,2.500397,2.500397,2.500397,2.500398,2.500397,2.500397,2.500397,2.500397,2.500397,2.500397,2.500399,2.500398,2.500397,2.500397,2.500399,2.500398,2.500397,2.500397,2.500397,2.500397,2.500397,2.500397,,,,,,,2.500397,2.500398,2.500397,2.500397,2.500399,2.500398,2.500397,2.500397,2.500397,2.500397,0.825131,0.825131,0.825131,0.825131,0.825132,0.825131,0.825131,0.825131,0.4209,0.4209,9.999998,9.999995,9.999998,9.999998,9.999993,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,2.500397,2.500397,2.500397,2.500397,2.500397,2.500397,2.500397,2.500397,0.825131,0.825131,10,10,, +29954,0,0.474387,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.165441,0.15,4,2.846324,2.846324,2.846324,2.846324,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,,,,,,,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,0.939287,0.939287,0.939287,0.939287,0.939287,0.939287,0.939287,0.939287,0.479131,0.479131,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,2.846324,0.939287,0.939287,10,10,, +29955,0,0.473227,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.140587,0.15,4,2.839364,2.839364,2.839364,2.839364,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,,,,,,,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,0.93699,0.93699,0.93699,0.93699,0.93699,0.93699,0.93699,0.93699,0.47796,0.47796,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,2.839364,0.93699,0.93699,10,10,, +30120,0,0.430104,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.216513,0.15,4,1.720416,1.720416,1.720416,1.720416,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,,,,,,,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,0.593543,0.593543,0.593543,0.593543,0.593543,0.593543,0.593543,0.593543,0.305374,0.305374,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,1.720416,0.593543,0.593543,15,15,, +9487,1,0.370854,2,0,0,1,1,,3,5,E I 94,,1426109,22.616,22.987,0,,0.58,7,0.342327,,0.342327,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.345094,,0.342327,,0.345094,,0.342603,,0.342327,,0.342603,,0.380227,,0.342327,,0.380227,,0.342327,,0.342327,,0.342327,,,,,,,,0.345094,,0.342603,,0.380227,,0.342327,,0.342327,,0.170282,,0.169534,,0.180822,,0.169452,,0.092143,,64.478643,,64.947597,,58.520846,,65,,65,,,,,,,,,,,,15136,,0.342327,,0.342327,,0.342327,,0.342327,,0.169452,,65,,, +9496,0,0.543108,1,1,0,2,4,,4,5,State,Rd,1427508,2.208,2.75,0,11.638035,4.5,4.5,0.857539,0.857539,0.857539,0.857539,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.43442,1.017891,0.857539,0.857539,1.43442,1.017891,1.041875,1.021173,0.857539,0.857539,1.041875,1.021173,1.151121,1.370344,0.857539,0.857539,1.151121,1.370344,0.857539,0.857539,0.857539,0.857539,0.857539,0.857539,,,,,,,1.43442,1.017891,1.041875,1.021173,1.151121,1.370344,0.857539,0.857539,0.857539,0.857539,0.528086,0.403127,0.410322,0.404111,0.443096,0.508863,0.355021,0.355021,0.188373,0.188373,22.717536,32.013736,31.276797,31.910841,28.30848,23.779798,38,38,38,38,,,,,,,,,,,3096,3096,0.857539,0.857539,0.857539,0.857539,0.857539,0.857539,0.857539,0.857539,0.355021,0.355021,38,38,, +40526,0,0.450194,1,1,0,2,4,,4,5,State,Rd,1427508,2.75,3.201,0,9.647012,4.5,4.5,0.710832,0.710832,0.710832,0.710832,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.366921,1.127795,0.710832,0.710832,1.366921,1.127795,1.154708,1.055694,0.710832,0.710832,1.154708,1.055694,1.422606,1.53996,0.710832,0.710832,1.422606,1.53996,0.710832,0.710832,0.710832,0.710832,0.710832,0.710832,,,,,,,1.366921,1.127795,1.154708,1.055694,1.422606,1.53996,0.710832,0.710832,0.710832,0.710832,0.491111,0.419373,0.427447,0.397743,0.507817,0.543023,0.294285,0.294285,0.156146,0.156146,19.760931,23.950843,23.392609,25.586604,18.987432,17.540478,38,38,38,38,,,,,,,,,,,3096,3096,0.710832,0.710832,0.710832,0.710832,0.710832,0.710832,0.710832,0.710832,0.294285,0.294285,38,38,, +10343,-1,0.280588,0,2,0,1,1,,3,5,W I 94,,1426110,22.609,22.89,0,,0.58,7,,0.259004,,0.259004,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.263053,,0.259004,,0.263053,,0.25903,,0.259004,,0.25903,,0.259853,,0.259004,,0.259853,,0.259004,,0.259004,,0.259004,,,,,,,,0.263053,,0.25903,,0.259853,,0.259004,,0.259004,,0.129422,,0.128215,,0.128462,,0.128207,,0.069715,,63.999486,,64.993516,,64.787614,,65,,65,,,,,,,,,,,,15136,,0.259004,,0.259004,,0.259004,,0.259004,,0.128207,,65,, +21477,1,0.369392,1,0,0,1,1,RON,3,5,N State/E I 94,RAMP,4603252,0,0.369,0,,1.09,4,0.554088,,0.554088,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.556233,,0.554088,,0.556233,,0.55607,,0.554088,,0.55607,,0.568415,,0.554088,,0.568415,,0.554088,,0.554088,,0.554088,,,,,,,,0.556233,,0.55607,,0.568415,,0.554088,,0.554088,,0.23336,,0.233312,,0.237015,,0.232717,,0.123746,,39.845754,,39.857392,,38.991817,,40,,40,,,,,,,,,,,,5074,,0.554088,,0.554088,,0.554088,,0.554088,,0.232717,,40,,, +40527,0,0.28994,1,1,1,2,4,,4,5,Ellsworth,Rd,4602939,7.696,7.986,0,6.212992,4.5,4.5,0.457799,0.457799,0.457799,0.457799,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,1.045241,0.852559,0.457799,0.457799,1.045241,0.852559,0.712334,0.735995,0.457799,0.457799,0.712334,0.735995,0.993133,1.115378,0.457799,0.457799,0.993133,1.115378,0.457799,0.457799,0.457799,0.457799,0.457799,0.457799,,,,,,,1.045241,0.852559,0.712334,0.735995,0.993133,1.115378,0.457799,0.457799,0.457799,0.457799,0.365761,0.307957,0.265889,0.272988,0.350129,0.386803,0.189529,0.189529,0.100563,0.100563,16.643416,20.404889,24.421658,23.636536,17.516658,15.596846,38,38,38,38,,,,,,,,,,,3406,3406,0.457799,0.457799,0.457799,0.457799,0.457799,0.457799,0.457799,0.457799,0.189529,0.189529,38,38,, +26258,0,0.650588,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.941166,0.15,4,2.602351,2.602351,2.602351,2.602351,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,,,,,,,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,0.897811,0.897811,0.897811,0.897811,0.897811,0.897811,0.897811,0.897811,0.461917,0.461917,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,2.602351,0.897811,0.897811,15,15,, +26259,0,1.040011,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.285954,0.15,4,4.160045,4.160045,4.160045,4.160045,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.160045,4.160046,4.160045,4.160045,4.160045,4.160046,4.160045,4.160045,4.160045,4.160045,4.160045,4.160045,4.160047,4.160045,4.160045,4.160045,4.160047,4.160045,4.160045,4.160045,4.160045,4.160045,4.160045,4.160045,,,,,,,4.160045,4.160046,4.160045,4.160045,4.160047,4.160045,4.160045,4.160045,4.160045,4.160045,1.435215,1.435216,1.435216,1.435216,1.435216,1.435216,1.435215,1.435215,0.738408,0.738408,14.999999,14.999995,14.999998,14.999998,14.999993,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,4.160045,4.160045,4.160045,4.160045,4.160045,4.160045,4.160045,4.160045,1.435215,1.435215,15,15,, +26544,0,0.462713,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.915284,0.15,4,1.850853,1.850853,1.850853,1.850853,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,,,,,,,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,0.638544,0.638544,0.638544,0.638544,0.638544,0.638544,0.638544,0.638544,0.328526,0.328526,15,15,15,15,14.999998,15,15,15,15,15,,,,,,,,,,,34400,34400,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,1.850853,0.638544,0.638544,15,15,, +26569,0,0.562672,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.05726,0.15,4,2.250689,2.250689,2.250689,2.250689,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,,,,,,,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,0.776488,0.776488,0.776488,0.776488,0.776488,0.776488,0.776488,0.776488,0.399497,0.399497,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,2.250689,0.776488,0.776488,15,15,, +29991,0,0.483342,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.357334,0.15,4,1.933369,1.933369,1.933369,1.933369,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,,,,,,,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,0.667012,0.667012,0.667012,0.667012,0.667012,0.667012,0.667012,0.667012,0.343173,0.343173,15,14.999999,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,1.933369,0.667012,0.667012,15,15,, +9489,1,0.369957,2,0,0,1,1,,3,5,E I 94,,1426109,22.246,22.616,0,,0.58,7,0.341499,,0.341499,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.342176,,0.341499,,0.342176,,0.341517,,0.341499,,0.341517,,0.344519,,0.341499,,0.344519,,0.341499,,0.341499,,0.341499,,,,,,,,0.342176,,0.341517,,0.344519,,0.341499,,0.341499,,0.169245,,0.169047,,0.169948,,0.169042,,0.09192,,64.87135,,64.996421,,64.43008,,65,,65,,,,,,,,,,,,15136,,0.341499,,0.341499,,0.341499,,0.341499,,0.169042,,65,,, +40530,1,0.186204,2,0,0,2,3,DIV,4,5,State,Rd,5498164,0,0.186,0,3.990084,3.7,5,0.248272,,0.248272,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.298221,,0.248272,,0.298221,,0.260733,,0.248272,,0.260733,,0.330693,,0.248272,,0.330693,,0.248272,,0.248272,,0.248272,,,,,,,,0.298221,,0.260733,,0.330693,,0.248272,,0.248272,,0.122983,,0.111737,,0.132725,,0.107998,,0.057723,,37.462985,,42.849326,,33.784318,,45,,45,,,,,,,,,,,,7568,,0.248272,,0.248272,,0.248272,,0.248272,,0.107998,,45,,, +40529,-1,0.139691,0,2,0,2,3,DIV,4,5,State,Rd,1427508,3.302,3.442,0,2.993384,3.7,5,,0.186255,,0.186255,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.203904,,0.186255,,0.203904,,0.194555,,0.186255,,0.194555,,0.261358,,0.186255,,0.261358,,0.186255,,0.186255,,0.186255,,,,,,,,0.203904,,0.194555,,0.261358,,0.186255,,0.186255,,0.086316,,0.083511,,0.103552,,0.081021,,0.043304,,41.104969,,43.080172,,32.068976,,45,,45,,,,,,,,,,,,7568,,0.186255,,0.186255,,0.186255,,0.186255,,0.081021,,45,, +20021,0,0.692752,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,0,0.693,0,14.844686,5.8,4.5,1.539449,1.539449,1.539449,1.539449,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,,,,,,,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,0.58653,0.58653,0.58653,0.58653,0.58653,0.58653,0.58653,0.58653,0.30712,0.30712,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2838,2838,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,1.539449,0.58653,0.58653,27,27,, +21235,0,0.400744,1,1,1,2,4,,4,5,Ellsworth,Rd,4602939,7.296,7.696,0,8.587371,4.5,4.5,0.632754,0.632754,0.632754,0.632754,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.850351,0.635387,0.632754,0.632754,0.850351,0.635387,0.645003,0.641473,0.632754,0.632754,0.645003,0.641473,0.670358,0.814959,0.632754,0.632754,0.670358,0.814959,0.632754,0.632754,0.632754,0.632754,0.632754,0.632754,,,,,,,0.850351,0.635387,0.645003,0.641473,0.670358,0.814959,0.632754,0.632754,0.632754,0.632754,0.327239,0.26275,0.265635,0.264576,0.273241,0.316622,0.26196,0.26196,0.138995,0.138995,28.27613,37.842495,37.27834,37.483496,35.868348,29.504113,38,38,38,38,,,,,,,,,,,3406,3406,0.632754,0.632754,0.632754,0.632754,0.632754,0.632754,0.632754,0.632754,0.26196,0.26196,38,38,, +21691,1,0.419976,1,0,0,1,1,ROF,3,5,E I 94/State,RAMP,4603251,0,0.42,0,,2.24,5,0.719959,,0.719959,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.754931,,0.719959,,0.754931,,0.72247,,0.719959,,0.72247,,0.73842,,0.719959,,0.73842,,0.719959,,0.719959,,0.719959,,,,,,,,0.754931,,0.72247,,0.73842,,0.719959,,0.719959,,0.302075,,0.292337,,0.297122,,0.291583,,0.154191,,33.378633,,34.878332,,34.124971,,35,,35,,,,,,,,,,,,5074,,0.719959,,0.719959,,0.719959,,0.719959,,0.291583,,35,,, +25028,0,0.593026,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.707693,0.15,4,2.372103,2.372103,2.372103,2.372103,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,2.372104,2.372103,2.372103,2.372103,2.372104,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,,,,,,,2.372103,2.372103,2.372103,2.372103,2.372104,2.372103,2.372103,2.372103,2.372103,2.372103,0.818376,0.818375,0.818376,0.818375,0.818376,0.818375,0.818375,0.818375,0.421048,0.421048,14.999998,15,14.999998,15,14.999995,15,15,15,15,15,,,,,,,,,,,34400,34400,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,2.372103,0.818375,0.818375,15,15,, +25031,0,0.57945,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.41678,0.15,4,2.317799,2.317799,2.317799,2.317799,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,,,,,,,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,0.799641,0.799641,0.799641,0.799641,0.799641,0.799641,0.799641,0.799641,0.411409,0.411409,15,14.999999,15,14.999999,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,2.317799,0.799641,0.799641,15,15,, +29992,0,0.395254,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.469723,0.15,4,1.581015,1.581015,1.581015,1.581015,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,,,,,,,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,0.54545,0.54545,0.54545,0.54545,0.54545,0.54545,0.54545,0.54545,0.28063,0.28063,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,1.581015,0.54545,0.54545,15,15,, +25030,0,0.262371,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.622234,0.15,4,1.049484,1.049484,1.049484,1.049484,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,,,,,,,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,0.362072,0.362072,0.362072,0.362072,0.362072,0.362072,0.362072,0.362072,0.186283,0.186283,15,14.999999,14.999999,14.999999,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,1.049484,0.362072,0.362072,15,15,, +40531,1,0.046881,2,0,0,2,4,,4,5,State,St,5498165,0,0.047,0,1.004587,4.5,4.5,0.074022,,0.074022,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.077042,,0.074022,,0.077042,,0.076065,,0.074022,,0.076065,,0.077295,,0.074022,,0.077295,,0.074022,,0.074022,,0.074022,,,,,,,,0.077042,,0.076065,,0.077295,,0.074022,,0.074022,,0.031551,,0.031258,,0.031627,,0.030645,,0.01626,,36.510706,,36.979484,,36.390855,,38,,38,,,,,,,,,,,,6192,,0.074022,,0.074022,,0.074022,,0.074022,,0.030645,,38,,, +40528,0,0.31671,1,1,0,2,3,,4,5,Ellsworth,Rd,4602939,8.081,8.398,0,6.78664,3.7,5,0.475065,0.475065,0.475065,0.475065,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.502423,0.519112,0.475065,0.475065,0.502423,0.519112,0.499009,0.499694,0.475065,0.475065,0.499009,0.499694,0.598568,0.601158,0.475065,0.475065,0.598568,0.601158,0.475065,0.475065,0.475065,0.475065,0.475065,0.475065,,,,,,,0.502423,0.519112,0.499009,0.499694,0.598568,0.601158,0.475065,0.475065,0.475065,0.475065,0.207735,0.212741,0.20671,0.206916,0.236578,0.237355,0.199527,0.199527,0.106098,0.106098,37.82188,36.605976,38.080682,38.028437,31.746772,31.609954,40,40,40,40,,,,,,,,,,,3784,3784,0.475065,0.475065,0.475065,0.475065,0.475065,0.475065,0.475065,0.475065,0.199527,0.199527,40,40,, +9483,-1,0.156277,0,2,0,2,3,DIV,4,5,State,Rd,1427508,3.442,3.598,0,3.348788,3.7,5,,0.208369,,0.208369,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.318869,,0.208369,,0.318869,,0.280307,,0.208369,,0.280307,,0.430269,,0.208369,,0.430269,,0.208369,,0.208369,,0.208369,,,,,,,,0.318869,,0.280307,,0.430269,,0.208369,,0.208369,,0.123791,,0.112222,,0.15721,,0.090641,,0.048446,,29.405806,,33.45125,,21.792447,,45,,45,,,,,,,,,,,,7568,,0.208369,,0.208369,,0.208369,,0.208369,,0.090641,,45,, +10344,-1,0.360489,0,2,0,1,1,,3,5,W I 94,,1426110,22.249,22.609,0,,0.58,7,,0.332759,,0.332759,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.344124,,0.332759,,0.344124,,0.332875,,0.332759,,0.332875,,0.337164,,0.332759,,0.337164,,0.332759,,0.332759,,0.332759,,,,,,,,0.344124,,0.332875,,0.337164,,0.332759,,0.332759,,0.168125,,0.164751,,0.166037,,0.164716,,0.089568,,62.853351,,64.977286,,64.150733,,65,,65,,,,,,,,,,,,15136,,0.332759,,0.332759,,0.332759,,0.332759,,0.164716,,65,, +10762,1,0.137042,2,0,0,2,3,DIV,4,5,State,Rd,5498164,0.186,0.323,0,2.936604,3.7,5,0.182722,,0.182722,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.347015,,0.182722,,0.347015,,0.264095,,0.182722,,0.264095,,0.492337,,0.182722,,0.492337,,0.182722,,0.182722,,0.182722,,,,,,,,0.347015,,0.264095,,0.492337,,0.182722,,0.182722,,0.128772,,0.103896,,0.172368,,0.079484,,0.042483,,23.69493,,31.134603,,16.700951,,45,,45,,,,,,,,,,,,7568,,0.182722,,0.182722,,0.182722,,0.182722,,0.079484,,45,,, +9666,1,0.215135,1,0,0,1,1,RON,3,5,S State/E I 94,RAMP,1426807,0,0.215,0,,1.09,4,0.322703,,0.322703,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.325357,,0.322703,,0.325357,,0.329388,,0.322703,,0.329388,,0.41388,,0.322703,,0.41388,,0.322703,,0.322703,,0.322703,,,,,,,,0.325357,,0.329388,,0.41388,,0.322703,,0.322703,,0.136331,,0.137541,,0.162888,,0.135535,,0.07207,,39.673679,,39.188126,,31.188067,,40,,40,,,,,,,,,,,,5074,,0.322703,,0.322703,,0.322703,,0.322703,,0.135535,,40,,, +10002,0,0.056412,2,2,0,2,3,,4,5,State,St,1427508,3.704,3.76,0,1.208833,3.7,5,0.084618,0.084618,0.084618,0.084618,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.121172,0.089082,0.084618,0.084618,0.121172,0.089082,0.097299,0.091843,0.084618,0.084618,0.097299,0.091843,0.11616,0.099659,0.084618,0.084618,0.11616,0.099659,0.084618,0.084618,0.084618,0.084618,0.084618,0.084618,,,,,,,0.121172,0.089082,0.097299,0.091843,0.11616,0.099659,0.084618,0.084618,0.084618,0.084618,0.046506,0.036879,0.039344,0.037707,0.045002,0.040052,0.03554,0.03554,0.018898,0.018898,27.933366,37.995762,34.786964,36.853357,29.138575,33.962957,40,40,40,40,,,,,,,,,,,7568,7568,0.084618,0.084618,0.084618,0.084618,0.084618,0.084618,0.084618,0.084618,0.03554,0.03554,40,40,, +10265,0,0.092168,2,2,0,2,3,,4,5,State,St,1427508,3.598,3.69,0,1.975037,3.7,5,0.138253,0.138253,0.138253,0.138253,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.262561,0.211569,0.138253,0.138253,0.262561,0.211569,0.199822,0.185983,0.138253,0.138253,0.199822,0.185983,0.372516,0.285483,0.138253,0.138253,0.372516,0.285483,0.138253,0.138253,0.138253,0.138253,0.138253,0.138253,,,,,,,0.262561,0.211569,0.199822,0.185983,0.372516,0.285483,0.138253,0.138253,0.138253,0.138253,0.095359,0.080061,0.076537,0.072385,0.128345,0.102235,0.058066,0.058066,0.030876,0.030876,21.06216,26.138494,27.675203,29.734444,14.84529,19.371064,40,40,40,40,,,,,,,,,,,7568,7568,0.138253,0.138253,0.138253,0.138253,0.138253,0.138253,0.138253,0.138253,0.058066,0.058066,40,40,, +10264,0,0.013823,2,2,0,2,3,,4,5,State,St,1427508,3.69,3.704,0,0.2962,3.7,5,0.020734,0.020734,0.020734,0.020734,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.048229,0.021828,0.020734,0.020734,0.048229,0.021828,0.032482,0.022504,0.020734,0.020734,0.032482,0.022504,0.06479,0.02442,0.020734,0.020734,0.06479,0.02442,0.020734,0.020734,0.020734,0.020734,0.020734,0.020734,,,,,,,0.048229,0.021828,0.032482,0.022504,0.06479,0.02442,0.020734,0.020734,0.020734,0.020734,0.016957,0.009036,0.012233,0.009239,0.021925,0.009814,0.008708,0.008708,0.004631,0.004631,17.196429,37.995762,25.532692,36.853357,12.800793,33.962957,40,40,40,40,,,,,,,,,,,7568,7568,0.020734,0.020734,0.020734,0.020734,0.020734,0.020734,0.020734,0.020734,0.008708,0.008708,40,40,, +9482,0,0.054389,2,2,0,2,3,,3,5,State,St,1427508,3.76,3.815,0,1.165479,5,5,0.093238,0.093238,0.093238,0.093238,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.147667,0.137683,0.093238,0.093238,0.147667,0.137683,0.11212,0.183143,0.093238,0.093238,0.11212,0.183143,0.140204,0.616276,0.093238,0.093238,0.140204,0.616276,0.093238,0.093238,0.093238,0.093238,0.093238,0.093238,,,,,,,0.147667,0.137683,0.11212,0.183143,0.140204,0.616276,0.093238,0.093238,0.093238,0.093238,0.05409,0.051095,0.043426,0.064733,0.051851,0.194673,0.037762,0.037762,0.019969,0.019969,22.099367,23.701809,29.105832,17.818538,23.275653,5.295262,35,35,35,35,,,,,,,,,,,7568,7568,0.093238,0.093238,0.093238,0.093238,0.093238,0.093238,0.093238,0.093238,0.037762,0.037762,35,35,, +9530,0,0.569362,1,1,0,2,4,,4,5,State,Rd,1427508,1.638,2.208,0,12.200605,4.5,4.5,0.898992,0.898992,0.898992,0.898992,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.054748,1.173387,0.898992,0.898992,2.054748,1.173387,1.333655,1.280727,0.898992,0.898992,1.333655,1.280727,1.794632,2.060229,0.898992,0.898992,1.794632,2.060229,0.898992,0.898992,0.898992,0.898992,0.898992,0.898992,,,,,,,2.054748,1.173387,1.333655,1.280727,1.794632,2.060229,0.898992,0.898992,0.898992,0.898992,0.71891,0.454501,0.502581,0.486703,0.640875,0.720554,0.372183,0.372183,0.197479,0.197479,16.625733,29.113753,25.6151,26.673676,19.035484,16.581505,38,38,38,38,,,,,,,,,,,3096,3096,0.898992,0.898992,0.898992,0.898992,0.898992,0.898992,0.898992,0.898992,0.372183,0.372183,38,38,, +10753,0,0.153355,1,1,0,2,7,,4,5,Morgan,Rd,1437402,0,0.153,0,3.286178,6.55,4.5,0.368052,0.368052,0.368052,0.368052,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.368715,0.368102,0.368052,0.368052,0.368715,0.368102,0.368101,0.368107,0.368052,0.368052,0.368101,0.368107,0.371294,0.371095,0.368052,0.368052,0.371294,0.371095,0.368052,0.368052,0.368052,0.368052,0.368052,0.368052,,,,,,,0.368715,0.368102,0.368101,0.368107,0.371294,0.371095,0.368052,0.368052,0.368052,0.368052,0.138219,0.138034,0.138034,0.138036,0.138992,0.138932,0.138019,0.138019,0.072077,0.072077,24.955009,24.996606,24.996642,24.996246,24.78171,24.794987,25,25,25,25,,,,,,,,,,,2064,2064,0.368052,0.368052,0.368052,0.368052,0.368052,0.368052,0.368052,0.368052,0.138019,0.138019,25,25,, +40561,1,0.017902,2,0,0,2,4,,4,3,Tienken,Rd,626010,3.466,3.484,0,0.383622,4.5,4.5,0.028267,,0.028267,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.028392,,0.028267,,0.028392,,0.028354,,0.028267,,0.028354,,0.028755,,0.028267,,0.028755,,0.028267,,0.028267,,0.028267,,,,,,,,0.028392,,0.028354,,0.028755,,0.028267,,0.028267,,0.01174,,0.011729,,0.011849,,0.011702,,0.006209,,37.832599,,37.882821,,37.355058,,38,,38,,,,,,,,,,,,6192,,0.028267,,0.028267,,0.028267,,0.028267,,0.011702,,38,,, +21713,0,0.308904,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,8.398,8.706,0,6.619369,3.7,5,0.463356,0.463356,0.463356,0.463356,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.473054,0.589998,0.463356,0.463356,0.473054,0.589998,0.478157,0.479827,0.463356,0.463356,0.478157,0.479827,0.572908,0.533524,0.463356,0.463356,0.572908,0.533524,0.463356,0.463356,0.463356,0.463356,0.463356,0.463356,,,,,,,0.473054,0.589998,0.478157,0.479827,0.572908,0.533524,0.463356,0.463356,0.463356,0.463356,0.197519,0.232602,0.19905,0.199551,0.227475,0.21566,0.194609,0.194609,0.103483,0.103483,39.179934,31.414063,38.761854,38.626904,32.351176,34.739251,40,40,40,40,,,,,,,,,,,4162,4162,0.463356,0.463356,0.463356,0.463356,0.463356,0.463356,0.463356,0.463356,0.194609,0.194609,40,40,, +26545,0,0.274978,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.892396,0.15,4,1.099914,1.099914,1.099914,1.099914,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,,,,,,,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,0.37947,0.37947,0.37947,0.37947,0.37947,0.37947,0.37947,0.37947,0.195235,0.195235,15,14.999998,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,1.099914,0.37947,0.37947,15,15,, +29990,0,0.41442,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.880427,0.15,4,1.65768,1.65768,1.65768,1.65768,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,,,,,,,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,0.5719,0.5719,0.5719,0.5719,0.5719,0.5719,0.5719,0.5719,0.294238,0.294238,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,1.65768,0.5719,0.5719,15,15,, +26548,0,0.488112,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.45955,0.15,4,1.952449,1.952449,1.952449,1.952449,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,,,,,,,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,0.673595,0.673595,0.673595,0.673595,0.673595,0.673595,0.673595,0.673595,0.34656,0.34656,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,1.952449,0.673595,0.673595,15,15,, +40343,1,0.324438,4,0,0,1,1,,4,3,N I 75,,647308,20.198,20.523,0,,0.8,7.5,0.278089,,0.278089,,70,,88000,,19976,,44000,,28389,,30272,,30237,,0.279119,,0.278089,,0.279119,,0.27823,,0.278089,,0.27823,,0.294071,,0.278089,,0.294071,,0.278089,,0.278089,,0.278089,,,,,,,,0.279119,,0.27823,,0.294071,,0.278089,,0.278089,,0.142135,,0.141868,,0.14662,,0.141826,,0.077402,,69.741734,,69.964762,,66.195819,,70,,70,,,,,,,,,,,,30272,,0.278089,,0.278089,,0.278089,,0.278089,,0.141826,,70,,, +9991,0,0.384068,1,1,0,2,3,,3,5,State,St,1427508,4.686,5.07,0,8.230029,5,5,0.658402,0.658402,0.658402,0.658402,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.874306,0.891344,0.658402,0.658402,0.874306,0.891344,0.866241,0.891119,0.658402,0.658402,0.866241,0.891119,0.992902,1.069597,0.658402,0.658402,0.992902,1.069597,0.658402,0.658402,0.658402,0.658402,0.658402,0.658402,,,,,,,0.874306,0.891344,0.866241,0.891119,0.992902,1.069597,0.658402,0.658402,0.658402,0.658402,0.331424,0.336536,0.329004,0.336468,0.367003,0.390011,0.266653,0.266653,0.141008,0.141008,26.356992,25.853175,26.602401,25.859711,23.20883,21.544639,35,35,35,35,,,,,,,,,,,3784,3784,0.658402,0.658402,0.658402,0.658402,0.658402,0.658402,0.658402,0.658402,0.266653,0.266653,35,35,, +10325,-1,0.232667,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,1.197,1.429,0,4.985717,5,5,,0.349,,0.349,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.375979,,0.349,,0.375979,,0.379263,,0.349,,0.379263,,0.447439,,0.349,,0.447439,,0.349,,0.349,,0.349,,,,,,,,0.375979,,0.379263,,0.447439,,0.349,,0.349,,0.154674,,0.155659,,0.176112,,0.14658,,0.077943,,37.129748,,36.808252,,31.199814,,40,,40,,,,,,,,,,,,6880,,0.349,,0.349,,0.349,,0.349,,0.14658,,40,, +10613,0,0.327177,1,1,1,2,3,,3,5,Packard,St,1430704,1.786,2.113,0,7.010932,5,5,0.560875,0.560875,0.560875,0.560875,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.617572,1.187845,0.560875,0.560875,0.617572,1.187845,0.689852,0.699164,0.560875,0.560875,0.689852,0.699164,1.251868,0.857185,0.560875,0.560875,1.251868,0.857185,0.560875,0.560875,0.560875,0.560875,0.560875,0.560875,,,,,,,0.617572,1.187845,0.689852,0.699164,1.251868,0.857185,0.560875,0.560875,0.560875,0.560875,0.244163,0.415245,0.265847,0.268641,0.434452,0.316047,0.227154,0.227154,0.120121,0.120121,31.786761,16.526242,28.45628,28.077278,15.68105,22.901251,35,35,35,35,,,,,,,,,,,4162,4162,0.560875,0.560875,0.560875,0.560875,0.560875,0.560875,0.560875,0.560875,0.227154,0.227154,35,35,, +10619,0,0.15144,1,1,0,2,3,,2,5,Packard,St,1430704,0.715,0.866,0,3.24514,6,5,0.30288,0.30288,0.30288,0.30288,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.368245,0.636732,0.30288,0.30288,0.368245,0.636732,0.410915,0.436649,0.30288,0.30288,0.410915,0.436649,0.59205,0.483385,0.30288,0.30288,0.59205,0.483385,0.30288,0.30288,0.30288,0.30288,0.30288,0.30288,,,,,,,0.368245,0.636732,0.410915,0.436649,0.59205,0.483385,0.30288,0.30288,0.30288,0.30288,0.137733,0.218279,0.150534,0.158254,0.204874,0.172275,0.118123,0.118123,0.06209,0.06209,24.674864,14.270356,22.112564,20.809356,15.347348,18.797429,30,30,30,30,,,,,,,,,,,2752,2752,0.30288,0.30288,0.30288,0.30288,0.30288,0.30288,0.30288,0.30288,0.118123,0.118123,30,30,, +10653,0,0.1502,2,2,1,2,4,,3,5,Main,St,1430506,0.655,0.805,0,3.218565,6,4.5,0.27309,0.27309,0.27309,0.27309,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.28743,0.325559,0.27309,0.27309,0.28743,0.325559,0.315891,0.322683,0.27309,0.27309,0.315891,0.322683,0.353703,0.342061,0.27309,0.27309,0.353703,0.342061,0.27309,0.27309,0.27309,0.27309,0.27309,0.27309,,,,,,,0.28743,0.325559,0.315891,0.322683,0.353703,0.342061,0.27309,0.27309,0.27309,0.27309,0.113265,0.124704,0.121803,0.123841,0.133147,0.129654,0.108963,0.108963,0.057486,0.057486,31.353653,27.681521,28.528761,27.928304,25.478928,26.346159,33,33,33,33,,,,,,,,,,,5418,5418,0.27309,0.27309,0.27309,0.27309,0.27309,0.27309,0.27309,0.27309,0.108963,0.108963,33,33,, +10711,0,0.158992,1,1,0,2,5,,3,5,Stimson,St,1437409,0,0.159,0,3.406974,8,4.5,0.381581,0.381581,0.381581,0.381581,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.40119,0.418103,0.381581,0.381581,0.40119,0.418103,0.414858,0.421526,0.381581,0.381581,0.414858,0.421526,0.479696,0.44985,0.381581,0.381581,0.479696,0.44985,0.381581,0.381581,0.381581,0.381581,0.381581,0.381581,,,,,,,0.40119,0.418103,0.414858,0.421526,0.479696,0.44985,0.381581,0.381581,0.381581,0.381581,0.148976,0.154049,0.153076,0.155076,0.172527,0.163574,0.143093,0.143093,0.074726,0.074726,23.778077,22.816227,22.994698,22.630934,19.886598,21.206003,25,25,25,25,,,,,,,,,,,2408,2408,0.381581,0.381581,0.381581,0.381581,0.381581,0.381581,0.381581,0.381581,0.143093,0.143093,25,25,, +11483,0,0.26095,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,0.521,0.782,0,5.591777,6,4.5,0.474454,0.474454,0.474454,0.474454,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.587998,0.485585,0.474454,0.474454,0.587998,0.485585,0.506632,0.505615,0.474454,0.474454,0.506632,0.505615,0.558912,0.633781,0.474454,0.474454,0.558912,0.633781,0.474454,0.474454,0.474454,0.474454,0.474454,0.474454,,,,,,,0.587998,0.485585,0.506632,0.505615,0.558912,0.633781,0.474454,0.474454,0.474454,0.474454,0.22337,0.192646,0.19896,0.198655,0.214645,0.237105,0.189307,0.189307,0.099873,0.099873,26.627607,32.243542,30.904059,30.966228,28.013314,24.704071,33,33,33,33,,,,,,,,,,,2838,2838,0.474454,0.474454,0.474454,0.474454,0.474454,0.474454,0.474454,0.474454,0.189307,0.189307,33,33,, +21650,1,0.232854,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,1.208,1.441,0,4.989731,5,5,0.349281,,0.349281,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.416376,,0.349281,,0.416376,,0.374816,,0.349281,,0.374816,,0.421965,,0.349281,,0.421965,,0.349281,,0.349281,,0.349281,,,,,,,,0.416376,,0.374816,,0.421965,,0.349281,,0.349281,,0.166827,,0.154359,,0.168503,,0.146698,,0.078006,,33.554368,,37.274959,,33.109997,,40,,40,,,,,,,,,,,,6880,,0.349281,,0.349281,,0.349281,,0.349281,,0.146698,,40,,, +26367,0,0.698291,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,14.963382,0.15,4,4.189747,4.189747,4.189747,4.189747,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,,,,,,,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,1.382617,1.382617,1.382617,1.382617,1.382617,1.382617,1.382617,1.382617,0.705274,0.705274,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,4.189747,1.382617,1.382617,10,10,, +26433,0,0.205293,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.399127,0.15,4,1.231756,1.231756,1.231756,1.231756,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.231756,1.231759,1.231756,1.231756,1.231756,1.231759,1.231756,1.231756,1.231756,1.231756,1.231756,1.231756,1.231758,1.231756,1.231756,1.231756,1.231758,1.231756,1.231756,1.231756,1.231756,1.231756,1.231756,1.231756,,,,,,,1.231756,1.231759,1.231756,1.231756,1.231758,1.231756,1.231756,1.231756,1.231756,1.231756,0.406479,0.40648,0.406479,0.40648,0.40648,0.40648,0.406479,0.406479,0.207346,0.207346,10,9.999974,9.999998,9.999994,9.999985,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,1.231756,1.231756,1.231756,1.231756,1.231756,1.231756,1.231756,1.231756,0.406479,0.406479,10,10,, +26441,0,0.131466,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.817122,0.15,4,0.788794,0.788794,0.788794,0.788794,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,0.788795,0.788794,0.788794,0.788794,0.788795,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,,,,,,,0.788794,0.788794,0.788794,0.788794,0.788795,0.788794,0.788794,0.788794,0.788794,0.788794,0.260302,0.260302,0.260302,0.260302,0.260302,0.260302,0.260302,0.260302,0.13278,0.13278,10,9.999996,9.999997,9.999997,9.999994,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,0.788794,0.260302,0.260302,10,10,, +26523,0,0.130538,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.797248,0.15,4,0.783229,0.783229,0.783229,0.783229,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,,,,,,,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.258466,0.258466,0.258466,0.258466,0.258466,0.258466,0.258466,0.258466,0.131844,0.131844,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.783229,0.258466,0.258466,10,10,, +26559,0,0.308792,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.616975,0.15,4,1.852753,1.852753,1.852753,1.852753,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,,,,,,,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,0.611409,0.611409,0.611409,0.611409,0.611409,0.611409,0.611409,0.611409,0.31188,0.31188,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,1.852753,0.611409,0.611409,10,10,, +26562,0,0.291529,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.247044,0.15,4,1.749172,1.749172,1.749172,1.749172,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.749173,1.749172,1.749172,1.749172,1.749173,1.749172,1.749173,1.749173,1.749172,1.749172,1.749173,1.749173,1.749173,1.749173,1.749172,1.749172,1.749173,1.749173,1.749172,1.749172,1.749172,1.749172,1.749172,1.749172,,,,,,,1.749173,1.749172,1.749173,1.749173,1.749173,1.749173,1.749172,1.749172,1.749172,1.749172,0.577227,0.577227,0.577227,0.577227,0.577227,0.577227,0.577227,0.577227,0.294444,0.294444,9.999998,10,9.999999,9.999999,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.749172,1.749172,1.749172,1.749172,1.749172,1.749172,1.749172,1.749172,0.577227,0.577227,10,10,, +26564,0,0.239564,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.133523,0.15,4,1.437386,1.437386,1.437386,1.437386,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,,,,,,,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,0.474337,0.474337,0.474337,0.474337,0.474337,0.474337,0.474337,0.474337,0.24196,0.24196,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,1.437386,0.474337,0.474337,10,10,, +10243,0,0.278846,1,1,1,2,3,,3,5,State,St,1427508,4.278,4.557,0,5.975264,5,5,0.478021,0.478021,0.478021,0.478021,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.725869,0.547407,0.478021,0.478021,0.725869,0.547407,0.618309,0.603132,0.478021,0.478021,0.618309,0.603132,0.614165,0.768233,0.478021,0.478021,0.614165,0.768233,0.478021,0.478021,0.478021,0.478021,0.478021,0.478021,,,,,,,0.725869,0.547407,0.618309,0.603132,0.614165,0.768233,0.478021,0.478021,0.478021,0.478021,0.267953,0.214414,0.235685,0.231132,0.234442,0.280662,0.193599,0.193599,0.102376,0.102376,23.049265,30.563625,27.058844,27.739761,27.24143,21.778213,35,35,35,35,,,,,,,,,,,4162,4162,0.478021,0.478021,0.478021,0.478021,0.478021,0.478021,0.478021,0.478021,0.193599,0.193599,35,35,, +10312,-1,0.515109,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,0.682,1.197,0,11.038055,5,5,,0.772664,,0.772664,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.807231,,0.772664,,0.807231,,0.79176,,0.772664,,0.79176,,0.890317,,0.772664,,0.890317,,0.772664,,0.772664,,0.772664,,,,,,,,0.807231,,0.79176,,0.890317,,0.772664,,0.772664,,0.334889,,0.330248,,0.359815,,0.324519,,0.172562,,38.287123,,39.035275,,34.714082,,40,,40,,,,,,,,,,,,6880,,0.772664,,0.772664,,0.772664,,0.772664,,0.324519,,40,, +10656,0,0.175071,2,2,1,2,4,,3,5,Main,St,1430506,0,0.175,0,3.75153,6,4.5,0.318312,0.318312,0.318312,0.318312,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.338588,0.35174,0.318312,0.318312,0.338588,0.35174,0.368241,0.373718,0.318312,0.318312,0.368241,0.373718,0.413677,0.452907,0.318312,0.318312,0.413677,0.452907,0.318312,0.318312,0.318312,0.318312,0.318312,0.318312,,,,,,,0.338588,0.35174,0.368241,0.373718,0.413677,0.452907,0.318312,0.318312,0.318312,0.318312,0.133089,0.137035,0.141985,0.143628,0.155616,0.167385,0.127006,0.127006,0.067005,0.067005,31.023781,29.863789,28.525561,28.107518,25.392463,23.193021,33,33,33,33,,,,,,,,,,,5418,5418,0.318312,0.318312,0.318312,0.318312,0.318312,0.318312,0.318312,0.318312,0.127006,0.127006,33,33,, +22033,1,0.515126,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,0.693,1.208,0,11.038422,5,5,0.77269,,0.77269,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.842702,,0.77269,,0.842702,,0.78603,,0.77269,,0.78603,,0.833638,,0.77269,,0.833638,,0.77269,,0.77269,,0.77269,,,,,,,,0.842702,,0.78603,,0.833638,,0.77269,,0.77269,,0.345533,,0.328532,,0.342814,,0.32453,,0.172567,,36.676756,,39.321115,,37.075537,,40,,40,,,,,,,,,,,,6880,,0.77269,,0.77269,,0.77269,,0.77269,,0.32453,,40,,, +25029,0,0.27482,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.888998,0.15,4,1.648919,1.648919,1.648919,1.648919,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.64892,1.648921,1.648919,1.648919,1.64892,1.648921,1.648924,1.648923,1.648919,1.648919,1.648924,1.648923,1.648928,1.648923,1.648919,1.648919,1.648928,1.648923,1.648919,1.648919,1.648919,1.648919,1.648919,1.648919,,,,,,,1.64892,1.648921,1.648924,1.648923,1.648928,1.648923,1.648919,1.648919,1.648919,1.648919,0.544143,0.544144,0.544145,0.544145,0.544146,0.544145,0.544143,0.544143,0.277568,0.277568,9.999999,9.999994,9.999975,9.999977,9.999947,9.999976,10,10,10,10,,,,,,,,,,,34400,34400,1.648919,1.648919,1.648919,1.648919,1.648919,1.648919,1.648919,1.648919,0.544143,0.544143,10,10,, +26561,0,0.451134,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.667152,0.15,4,2.706803,2.706803,2.706803,2.706803,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,,,,,,,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,0.893245,0.893245,0.893245,0.893245,0.893245,0.893245,0.893245,0.893245,0.455645,0.455645,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,2.706803,0.893245,0.893245,10,10,, +27256,0,0.256246,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.490989,0.15,4,1.537477,1.537477,1.537477,1.537477,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.537477,1.537478,1.537477,1.537477,1.537477,1.537478,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,,,,,,,1.537477,1.537478,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,0.507367,0.507368,0.507367,0.507367,0.507367,0.507367,0.507367,0.507367,0.258809,0.258809,10,9.999995,10,10,9.999998,10,10,10,10,10,,,,,,,,,,,34400,34400,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,1.537477,0.507367,0.507367,10,10,, +19276,0,0.016635,2,2,1,2,4,,3,5,Briarwood,Cir,1795605,0.052,0.069,0,0.35647,6,4.5,0.030246,0.030246,0.030246,0.030246,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.030301,0.033388,0.030246,0.030246,0.030301,0.033388,0.03341,0.035424,0.030246,0.030246,0.03341,0.035424,0.037554,0.04285,0.030246,0.030246,0.037554,0.04285,0.030246,0.030246,0.030246,0.030246,0.030246,0.030246,,,,,,,0.030301,0.033388,0.03341,0.035424,0.037554,0.04285,0.030246,0.030246,0.030246,0.030246,0.012085,0.013011,0.013017,0.013621,0.014261,0.015849,0.012068,0.012068,0.006367,0.006367,32.939953,29.893996,29.87493,28.176591,26.578188,23.293278,33,33,33,33,,,,,,,,,,,5418,5418,0.030246,0.030246,0.030246,0.030246,0.030246,0.030246,0.030246,0.030246,0.012068,0.012068,33,33,, +10654,0,0.388274,2,2,1,2,4,,3,5,Main,St,1430506,0.267,0.655,0,8.320163,6,4.5,0.705953,0.705953,0.705953,0.705953,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.754817,0.733243,0.705953,0.705953,0.754817,0.733243,0.746747,0.751853,0.705953,0.705953,0.746747,0.751853,0.763158,0.858663,0.705953,0.705953,0.763158,0.858663,0.705953,0.705953,0.705953,0.705953,0.705953,0.705953,,,,,,,0.754817,0.733243,0.746747,0.751853,0.763158,0.858663,0.705953,0.705953,0.705953,0.705953,0.296334,0.289862,0.293913,0.295445,0.298837,0.327488,0.281675,0.281675,0.148603,0.148603,30.863715,31.771791,31.197269,30.985365,30.526371,27.131084,33,33,33,33,,,,,,,,,,,5418,5418,0.705953,0.705953,0.705953,0.705953,0.705953,0.705953,0.705953,0.705953,0.281675,0.281675,33,33,, +26361,0,0.203936,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.370049,0.15,4,1.223614,1.223614,1.223614,1.223614,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,1.223615,1.223614,1.223614,1.223614,1.223615,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,,,,,,,1.223614,1.223614,1.223614,1.223614,1.223614,1.223615,1.223614,1.223614,1.223614,1.223614,0.403793,0.403793,0.403793,0.403793,0.403793,0.403793,0.403793,0.403793,0.205975,0.205975,9.999999,10,9.999997,9.999997,9.999996,9.999991,10,10,10,10,,,,,,,,,,,34400,34400,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,1.223614,0.403793,0.403793,10,10,, +19630,0,0.149656,1,1,0,2,5,,3,5,Oakbrook,Dr,1908304,0.666,0.815,0,3.20692,8,4.5,0.359175,0.359175,0.359175,0.359175,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,,,,,,,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.134691,0.134691,0.134691,0.134691,0.134691,0.134691,0.134691,0.134691,0.070338,0.070338,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2408,2408,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.359175,0.134691,0.134691,25,25,, +10655,0,0.091469,2,2,1,2,4,,3,5,Main,St,1430506,0.175,0.267,0,1.960048,6,4.5,0.166307,0.166307,0.166307,0.166307,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.176901,0.183772,0.166307,0.166307,0.176901,0.183772,0.192394,0.195255,0.166307,0.166307,0.192394,0.195255,0.216132,0.236629,0.166307,0.166307,0.216132,0.236629,0.166307,0.166307,0.166307,0.166307,0.166307,0.166307,,,,,,,0.176901,0.183772,0.192394,0.195255,0.216132,0.236629,0.166307,0.166307,0.166307,0.166307,0.069535,0.071596,0.074182,0.075041,0.081304,0.087453,0.066357,0.066357,0.035008,0.035008,31.023781,29.863789,28.525561,28.107518,25.392463,23.193021,33,33,33,33,,,,,,,,,,,5418,5418,0.166307,0.166307,0.166307,0.166307,0.166307,0.166307,0.166307,0.166307,0.066357,0.066357,33,33,, +9995,0,0.185725,2,2,0,2,3,,3,5,State,St,1427508,3.983,4.169,0,3.97983,5,5,0.318386,0.318386,0.318386,0.318386,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.415108,0.340298,0.318386,0.318386,0.415108,0.340298,0.335064,0.331823,0.318386,0.318386,0.335064,0.331823,0.348545,0.368507,0.318386,0.318386,0.348545,0.368507,0.318386,0.318386,0.318386,0.318386,0.318386,0.318386,,,,,,,0.415108,0.340298,0.335064,0.331823,0.348545,0.368507,0.318386,0.318386,0.318386,0.318386,0.157963,0.13552,0.13395,0.132978,0.137994,0.143983,0.128947,0.128947,0.068188,0.068188,26.844909,32.746388,33.257944,33.582726,31.971521,30.239642,35,35,35,35,,,,,,,,,,,7568,7568,0.318386,0.318386,0.318386,0.318386,0.318386,0.318386,0.318386,0.318386,0.128947,0.128947,35,35,, +25289,0,0.317353,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.800432,0.15,4,1.904121,1.904121,1.904121,1.904121,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.904121,1.904122,1.904121,1.904121,1.904121,1.904122,1.904122,1.904124,1.904121,1.904121,1.904122,1.904124,1.904127,1.904124,1.904121,1.904121,1.904127,1.904124,1.904121,1.904121,1.904121,1.904121,1.904121,1.904121,,,,,,,1.904121,1.904122,1.904122,1.904124,1.904127,1.904124,1.904121,1.904121,1.904121,1.904121,0.62836,0.62836,0.62836,0.628361,0.628362,0.628361,0.62836,0.62836,0.320527,0.320527,10,9.999992,9.999993,9.999985,9.99997,9.999982,10,10,10,10,,,,,,,,,,,34400,34400,1.904121,1.904121,1.904121,1.904121,1.904121,1.904121,1.904121,1.904121,0.62836,0.62836,10,10,, +29995,0,0.317473,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.802993,0.15,4,1.904838,1.904838,1.904838,1.904838,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.904838,1.904838,1.904838,1.904838,1.904838,1.904838,1.904839,1.904839,1.904838,1.904838,1.904839,1.904839,1.904839,1.904839,1.904838,1.904838,1.904839,1.904839,1.904838,1.904838,1.904838,1.904838,1.904838,1.904838,,,,,,,1.904838,1.904838,1.904839,1.904839,1.904839,1.904839,1.904838,1.904838,1.904838,1.904838,0.628597,0.628597,0.628597,0.628597,0.628597,0.628597,0.628597,0.628597,0.320648,0.320648,10,9.999999,9.999995,9.999995,9.999993,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,1.904838,1.904838,1.904838,1.904838,1.904838,1.904838,1.904838,1.904838,0.628597,0.628597,10,10,, +10249,0,0.076693,2,2,0,2,3,,3,5,State,St,1427508,3.906,3.983,0,1.643429,5,5,0.131474,0.131474,0.131474,0.131474,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.80145,0.150771,0.131474,0.131474,0.80145,0.150771,0.288688,0.19866,0.131474,0.131474,0.288688,0.19866,0.371657,0.727311,0.131474,0.131474,0.371657,0.727311,0.131474,0.131474,0.131474,0.131474,0.131474,0.131474,,,,,,,0.80145,0.150771,0.288688,0.19866,0.371657,0.727311,0.131474,0.131474,0.131474,0.131474,0.25424,0.059036,0.100411,0.073403,0.125302,0.231998,0.053247,0.053247,0.028157,0.028157,5.741595,30.520509,15.939705,23.163147,12.381301,6.326871,35,35,35,35,,,,,,,,,,,7568,7568,0.131474,0.131474,0.131474,0.131474,0.131474,0.131474,0.131474,0.131474,0.053247,0.053247,35,35,, +10246,0,0.091813,2,2,0,2,3,,3,5,State,St,1427508,4.169,4.26,0,1.967419,5,5,0.157394,0.157394,0.157394,0.157394,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.251793,0.197204,0.157394,0.157394,0.251793,0.197204,0.214666,0.207655,0.157394,0.157394,0.214666,0.207655,0.257844,0.278388,0.157394,0.157394,0.257844,0.278388,0.157394,0.157394,0.157394,0.157394,0.157394,0.157394,,,,,,,0.251793,0.197204,0.214666,0.207655,0.257844,0.278388,0.157394,0.157394,0.157394,0.157394,0.092064,0.075687,0.080926,0.078823,0.09388,0.100043,0.063744,0.063744,0.033708,0.033708,21.878205,27.93442,25.662122,26.528496,21.364764,19.788147,35,35,35,35,,,,,,,,,,,7568,7568,0.157394,0.157394,0.157394,0.157394,0.157394,0.157394,0.157394,0.157394,0.063744,0.063744,35,35,, +9993,0,0.017325,1,1,1,2,3,,3,5,State,St,1427508,4.26,4.278,0,0.371256,5,5,0.0297,0.0297,0.0297,0.0297,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.089268,0.068489,0.0297,0.0297,0.089268,0.068489,0.053125,0.092336,0.0297,0.0297,0.053125,0.092336,0.074091,0.167728,0.0297,0.0297,0.074091,0.167728,0.0297,0.0297,0.0297,0.0297,0.0297,0.0297,,,,,,,0.089268,0.068489,0.053125,0.092336,0.074091,0.167728,0.0297,0.0297,0.0297,0.0297,0.029899,0.023665,0.019056,0.030819,0.025346,0.053437,0.012029,0.012029,0.006361,0.006361,11.644962,15.177808,19.567372,11.25793,14.030362,6.197652,35,35,35,35,,,,,,,,,,,4162,4162,0.0297,0.0297,0.0297,0.0297,0.0297,0.0297,0.0297,0.0297,0.012029,0.012029,35,35,, +9486,0,0.260649,2,2,1,2,3,,2,5,Stadium,Blvd,1429506,2.093,2.353,0,5.585345,6,5,0.521299,0.521299,0.521299,0.521299,30,30,16800,16800,3814,3814,8400,8400,5420,5420,5779,5779,5772,5772,0.794963,0.551176,0.521299,0.521299,0.794963,0.551176,0.570805,0.549847,0.521299,0.521299,0.570805,0.549847,0.654646,0.852504,0.521299,0.521299,0.654646,0.852504,0.521299,0.521299,0.521299,0.521299,0.521299,0.521299,,,,,,,0.794963,0.551176,0.570805,0.549847,0.654646,0.852504,0.521299,0.521299,0.521299,0.521299,0.285406,0.21227,0.218158,0.211871,0.243311,0.302668,0.203307,0.203307,0.106866,0.106866,19.672567,28.373823,27.398087,28.442398,23.889203,18.344737,30,30,30,30,,,,,,,,,,,5779,5779,0.521299,0.521299,0.521299,0.521299,0.521299,0.521299,0.521299,0.521299,0.203307,0.203307,30,30,, +9989,0,0.252847,1,1,0,2,3,,2,5,State,St,1427508,5.416,5.668,0,5.418147,6,5,0.505694,0.505694,0.505694,0.505694,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,1.953531,0.73075,0.505694,0.505694,1.953531,0.73075,1.086595,0.977357,0.505694,0.505694,1.086595,0.977357,1.2759,1.909569,0.505694,0.505694,1.2759,1.909569,0.505694,0.505694,0.505694,0.505694,0.505694,0.505694,,,,,,,1.953531,0.73075,1.086595,0.977357,1.2759,1.909569,0.505694,0.505694,0.505694,0.505694,0.631572,0.264738,0.371491,0.33872,0.428283,0.618383,0.197221,0.197221,0.103667,0.103667,7.765842,20.760598,13.961793,15.522281,11.890279,7.944628,30,30,30,30,,,,,,,,,,,2752,2752,0.505694,0.505694,0.505694,0.505694,0.505694,0.505694,0.505694,0.505694,0.197221,0.197221,30,30,, +10641,0,0.157346,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0.142,0.299,0,3.371706,8.5,4.5,0.472039,0.472039,0.472039,0.472039,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.533755,0.484277,0.472039,0.472039,1.533755,0.484277,0.644484,0.574203,0.472039,0.472039,0.644484,0.574203,0.848109,1.113769,0.472039,0.472039,0.848109,1.113769,0.472039,0.472039,0.472039,0.472039,0.472039,0.472039,,,,,,,1.533755,0.484277,0.644484,0.574203,0.848109,1.113769,0.472039,0.472039,0.472039,0.472039,0.488449,0.173605,0.221668,0.200583,0.282755,0.362453,0.169934,0.169934,0.088114,0.088114,6.155336,19.494596,14.648581,16.44153,11.131561,8.476424,20,20,20,20,,,,,,,,,,,2064,2064,0.472039,0.472039,0.472039,0.472039,0.472039,0.472039,0.472039,0.472039,0.169934,0.169934,20,20,, +21368,0,0.497834,2,2,1,2,3,,3,5,Main,St,4603186,0,0.498,0,10.667872,5,5,0.85343,0.85343,0.85343,0.85343,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.331152,1.009116,0.85343,0.85343,1.331152,1.009116,1.09755,1.13619,0.85343,0.85343,1.09755,1.13619,1.233988,1.547043,0.85343,0.85343,1.233988,1.547043,0.85343,0.85343,0.85343,0.85343,0.85343,0.85343,,,,,,,1.331152,1.009116,1.09755,1.13619,1.233988,1.547043,0.85343,0.85343,0.85343,0.85343,0.488956,0.392345,0.418875,0.430467,0.459806,0.553723,0.345639,0.345639,0.182776,0.182776,22.439248,29.600204,27.215187,26.289649,24.206111,19.307834,35,35,35,35,,,,,,,,,,,7946,7946,0.85343,0.85343,0.85343,0.85343,0.85343,0.85343,0.85343,0.85343,0.345639,0.345639,35,35,, +26365,0,0.266521,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.711164,0.15,4,1.599126,1.599126,1.599126,1.599126,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,,,,,,,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,0.527712,0.527712,0.527712,0.527712,0.527712,0.527712,0.527712,0.527712,0.269186,0.269186,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,1.599126,0.527712,0.527712,10,10,, +26507,0,0.25046,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.367001,0.15,4,1.50276,1.50276,1.50276,1.50276,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.50276,1.502761,1.50276,1.50276,1.50276,1.502761,1.50276,1.50276,1.50276,1.50276,1.50276,1.50276,1.502761,1.50276,1.50276,1.50276,1.502761,1.50276,1.50276,1.50276,1.50276,1.50276,1.50276,1.50276,,,,,,,1.50276,1.502761,1.50276,1.50276,1.502761,1.50276,1.50276,1.50276,1.50276,1.50276,0.495911,0.495911,0.495911,0.495911,0.495911,0.495911,0.495911,0.495911,0.252965,0.252965,10,9.999998,10,10,9.999997,10,10,10,10,10,,,,,,,,,,,34400,34400,1.50276,1.50276,1.50276,1.50276,1.50276,1.50276,1.50276,1.50276,0.495911,0.495911,10,10,, +9617,0,0.225403,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,14.391,14.617,0,4.830069,6,4.5,0.409824,0.409824,0.409824,0.409824,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.419654,0.432182,0.409824,0.409824,0.419654,0.432182,0.412251,0.414161,0.409824,0.409824,0.412251,0.414161,0.430842,0.444207,0.409824,0.409824,0.430842,0.444207,0.409824,0.409824,0.409824,0.409824,0.409824,0.409824,,,,,,,0.419654,0.432182,0.412251,0.414161,0.430842,0.444207,0.409824,0.409824,0.409824,0.409824,0.166469,0.170227,0.164248,0.164821,0.169825,0.173835,0.16352,0.16352,0.086268,0.086268,32.227003,31.292835,32.805715,32.654465,31.390122,30.445707,33,33,33,33,,,,,,,,,,,2580,2580,0.409824,0.409824,0.409824,0.409824,0.409824,0.409824,0.409824,0.409824,0.16352,0.16352,33,33,, +10836,0,0.159036,2,2,1,2,3,,3,5,Main,St,1436706,3.428,3.587,0,3.407909,5,5,0.272633,0.272633,0.272633,0.272633,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.61744,0.388642,0.272633,0.272633,0.61744,0.388642,0.423196,0.431841,0.272633,0.272633,0.423196,0.431841,0.580076,0.742232,0.272633,0.272633,0.580076,0.742232,0.272633,0.272633,0.272633,0.272633,0.272633,0.272633,,,,,,,0.61744,0.388642,0.423196,0.431841,0.580076,0.742232,0.272633,0.272633,0.272633,0.272633,0.213858,0.145219,0.155585,0.158179,0.202649,0.251296,0.110416,0.110416,0.058389,0.058389,15.454372,24.552533,22.547835,22.096432,16.449826,12.856022,35,35,35,35,,,,,,,,,,,7946,7946,0.272633,0.272633,0.272633,0.272633,0.272633,0.272633,0.272633,0.272633,0.110416,0.110416,35,35,, +26366,0,0.230262,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.934182,0.15,4,1.381571,1.381571,1.381571,1.381571,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,,,,,,,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,0.455918,0.455918,0.455918,0.455918,0.455918,0.455918,0.455918,0.455918,0.232564,0.232564,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,1.381571,0.455918,0.455918,10,10,, +9743,0,0.224077,2,2,0,2,3,,3,5,Stadium,Blvd,1429506,1.869,2.093,0,4.801653,5,5,0.384132,0.384132,0.384132,0.384132,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.475137,0.397548,0.384132,0.384132,0.475137,0.397548,0.402977,0.393937,0.384132,0.384132,0.402977,0.393937,0.440894,0.479953,0.384132,0.384132,0.440894,0.479953,0.384132,0.384132,0.384132,0.384132,0.384132,0.384132,,,,,,,0.475137,0.397548,0.402977,0.393937,0.440894,0.479953,0.384132,0.384132,0.384132,0.384132,0.182875,0.159598,0.161227,0.158515,0.172602,0.18432,0.155574,0.155574,0.082268,0.082268,28.296317,33.818897,33.36328,34.12891,30.494049,28.012397,35,35,35,35,,,,,,,,,,,7568,7568,0.384132,0.384132,0.384132,0.384132,0.384132,0.384132,0.384132,0.384132,0.155574,0.155574,35,35,, +10643,0,0.22758,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,1.364,1.592,0,4.876705,8,4.5,0.546191,0.546191,0.546191,0.546191,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.956522,0.552422,0.546191,0.546191,0.956522,0.552422,0.678655,0.621291,0.546191,0.546191,0.678655,0.621291,0.720881,0.891215,0.546191,0.546191,0.720881,0.891215,0.546191,0.546191,0.546191,0.546191,0.546191,0.546191,,,,,,,0.956522,0.552422,0.678655,0.621291,0.720881,0.891215,0.546191,0.546191,0.546191,0.546191,0.327921,0.206691,0.244561,0.227352,0.257229,0.308329,0.204822,0.204822,0.106962,0.106962,14.275441,24.718019,20.120347,21.978064,18.941786,15.321526,25,25,25,25,,,,,,,,,,,2408,2408,0.546191,0.546191,0.546191,0.546191,0.546191,0.546191,0.546191,0.546191,0.204822,0.204822,25,25,, +22133,0,0.17562,2,2,0,2,3,,2,5,Main,St,4603186,0.498,0.673,0,3.763283,6,5,0.35124,0.35124,0.35124,0.35124,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,1.093343,0.540595,0.35124,0.35124,1.093343,0.540595,0.686491,0.69944,0.35124,0.35124,0.686491,0.69944,0.843066,1.154854,0.35124,0.35124,0.843066,1.154854,0.35124,0.35124,0.35124,0.35124,0.35124,0.35124,,,,,,,1.093343,0.540595,0.686491,0.69944,0.843066,1.154854,0.35124,0.35124,0.35124,0.35124,0.359615,0.19379,0.237559,0.241444,0.284531,0.378068,0.136984,0.136984,0.072004,0.072004,9.637591,19.491861,15.349347,15.06519,12.498655,9.124264,30,30,30,30,,,,,,,,,,,5504,5504,0.35124,0.35124,0.35124,0.35124,0.35124,0.35124,0.35124,0.35124,0.136984,0.136984,30,30,, +26384,0,0.206096,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.416334,0.15,4,1.236573,1.236573,1.236573,1.236573,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,,,,,,,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,0.408069,0.408069,0.408069,0.408069,0.408069,0.408069,0.408069,0.408069,0.208157,0.208157,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,1.236573,0.408069,0.408069,10,10,, +26385,0,0.151681,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.250297,0.15,4,0.910083,0.910083,0.910083,0.910083,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,,,,,,,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.300327,0.300327,0.300327,0.300327,0.300327,0.300327,0.300327,0.300327,0.153197,0.153197,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.910083,0.300327,0.300327,10,10,, +26386,0,0.153108,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.280883,0.15,4,0.918647,0.918647,0.918647,0.918647,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,,,,,,,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.303154,0.303154,0.303154,0.303154,0.303154,0.303154,0.303154,0.303154,0.154639,0.154639,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.918647,0.303154,0.303154,10,10,, +10642,0,0.141557,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0,0.142,0,3.033366,8.5,4.5,0.424671,0.424671,0.424671,0.424671,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.726065,0.433496,0.424671,0.424671,0.726065,0.433496,0.524593,0.462148,0.424671,0.424671,0.524593,0.462148,0.575596,0.726595,0.424671,0.424671,0.575596,0.726595,0.424671,0.424671,0.424671,0.424671,0.424671,0.424671,,,,,,,0.726065,0.433496,0.524593,0.462148,0.575596,0.726595,0.424671,0.424671,0.424671,0.424671,0.2433,0.155529,0.182858,0.164125,0.198159,0.243459,0.152882,0.152882,0.079272,0.079272,11.697882,19.592849,16.190492,18.378166,14.755872,11.689346,20,20,20,20,,,,,,,,,,,2064,2064,0.424671,0.424671,0.424671,0.424671,0.424671,0.424671,0.424671,0.424671,0.152882,0.152882,20,20,, +21989,0,0.051109,2,2,0,2,3,,2,5,Main,St,4603186,0.801,0.852,0,1.095187,6,5,0.102217,0.102217,0.102217,0.102217,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.613305,0.236234,0.102217,0.102217,0.613305,0.236234,0.245584,0.239874,0.102217,0.102217,0.245584,0.239874,0.331973,0.613305,0.102217,0.102217,0.331973,0.613305,0.102217,0.102217,0.102217,0.102217,0.102217,0.102217,,,,,,,0.613305,0.236234,0.245584,0.239874,0.331973,0.613305,0.102217,0.102217,0.102217,0.102217,0.193191,0.08007,0.082875,0.081162,0.108791,0.193191,0.039865,0.039865,0.020955,0.020955,5,12.980892,12.486647,12.783907,9.23728,5,30,30,30,30,,,,,,,,,,,5504,5504,0.102217,0.102217,0.102217,0.102217,0.102217,0.102217,0.102217,0.102217,0.039865,0.039865,30,30,, +26505,0,0.166287,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.563289,0.15,4,0.997721,0.997721,0.997721,0.997721,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,,,,,,,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.329248,0.329248,0.329248,0.329248,0.329248,0.329248,0.329248,0.329248,0.16795,0.16795,10,9.999999,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.997721,0.329248,0.329248,10,10,, +26506,0,0.152515,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.268184,0.15,4,0.915091,0.915091,0.915091,0.915091,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.915091,0.915091,0.915091,0.915091,0.915091,0.915091,0.915091,0.915092,0.915091,0.915091,0.915091,0.915092,0.915092,0.915092,0.915091,0.915091,0.915092,0.915092,0.915091,0.915091,0.915091,0.915091,0.915091,0.915091,,,,,,,0.915091,0.915091,0.915091,0.915092,0.915092,0.915092,0.915091,0.915091,0.915091,0.915091,0.30198,0.30198,0.30198,0.30198,0.30198,0.30198,0.30198,0.30198,0.15404,0.15404,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.915091,0.915091,0.915091,0.915091,0.915091,0.915091,0.915091,0.915091,0.30198,0.30198,10,10,, +21867,0,0.063618,2,2,0,2,3,,2,5,Main,St,4603186,0.673,0.737,0,1.363249,6,5,0.127237,0.127237,0.127237,0.127237,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.397922,0.196085,0.127237,0.127237,0.397922,0.196085,0.249682,0.254206,0.127237,0.127237,0.249682,0.254206,0.307083,0.42006,0.127237,0.127237,0.307083,0.42006,0.127237,0.127237,0.127237,0.127237,0.127237,0.127237,,,,,,,0.397922,0.196085,0.249682,0.254206,0.307083,0.42006,0.127237,0.127237,0.127237,0.127237,0.130828,0.070277,0.086356,0.087713,0.103576,0.137469,0.049622,0.049622,0.026084,0.026084,9.592568,19.466571,15.287844,15.015768,12.430184,9.087036,30,30,30,30,,,,,,,,,,,5504,5504,0.127237,0.127237,0.127237,0.127237,0.127237,0.127237,0.127237,0.127237,0.049622,0.049622,30,30,, +21237,0,0.063776,2,2,0,2,3,,2,5,Main,St,4603186,0.737,0.801,0,1.366623,6,5,0.127551,0.127551,0.127551,0.127551,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.45111,0.311899,0.127551,0.127551,0.45111,0.311899,0.263589,0.281554,0.127551,0.127551,0.263589,0.281554,0.330346,0.575232,0.127551,0.127551,0.330346,0.575232,0.127551,0.127551,0.127551,0.127551,0.127551,0.127551,,,,,,,0.45111,0.311899,0.263589,0.281554,0.330346,0.575232,0.127551,0.127551,0.127551,0.127551,0.146813,0.105049,0.090556,0.095946,0.110583,0.184049,0.049745,0.049745,0.026148,0.026148,8.482506,12.268549,14.517108,13.590793,11.583453,6.652176,30,30,30,30,,,,,,,,,,,5504,5504,0.127551,0.127551,0.127551,0.127551,0.127551,0.127551,0.127551,0.127551,0.049745,0.049745,30,30,, +21720,0,0.064177,2,2,0,2,3,,2,5,Main,St,4603186,0.852,0.916,0,1.375216,6,5,0.128354,0.128354,0.128354,0.128354,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.377844,0.231847,0.128354,0.128354,0.377844,0.231847,0.236928,0.260454,0.128354,0.128354,0.236928,0.260454,0.32745,0.579585,0.128354,0.128354,0.32745,0.579585,0.128354,0.128354,0.128354,0.128354,0.128354,0.128354,,,,,,,0.377844,0.231847,0.236928,0.260454,0.32745,0.579585,0.128354,0.128354,0.128354,0.128354,0.124905,0.081106,0.08263,0.089688,0.109787,0.185427,0.050058,0.050058,0.026312,0.026312,10.191001,16.608418,16.252211,14.784182,11.759379,6.643726,30,30,30,30,,,,,,,,,,,5504,5504,0.128354,0.128354,0.128354,0.128354,0.128354,0.128354,0.128354,0.128354,0.050058,0.050058,30,30,, +10242,0,0.345414,1,1,0,2,3,,3,5,State,St,1427508,5.07,5.416,0,7.401721,5,5,0.592138,0.592138,0.592138,0.592138,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.325685,0.807854,0.592138,0.592138,1.325685,0.807854,0.941824,0.911654,0.592138,0.592138,0.941824,0.911654,1.250635,1.491216,0.592138,0.592138,1.250635,1.491216,0.592138,0.592138,0.592138,0.592138,0.592138,0.592138,,,,,,,1.325685,0.807854,0.941824,0.911654,1.250635,1.491216,0.592138,0.592138,0.592138,0.592138,0.45988,0.304531,0.344722,0.335671,0.437365,0.509539,0.239816,0.239816,0.126816,0.126816,15.633286,25.654179,22.004973,22.733215,16.571441,13.897936,35,35,35,35,,,,,,,,,,,3784,3784,0.592138,0.592138,0.592138,0.592138,0.592138,0.592138,0.592138,0.592138,0.239816,0.239816,35,35,, +9988,0,0.240223,1,1,0,2,3,,2,5,State,St,1427508,5.668,5.909,0,5.147643,6,5,0.480447,0.480447,0.480447,0.480447,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,1.863863,0.694515,0.480447,0.480447,1.863863,0.694515,1.036541,0.930118,0.480447,0.480447,1.036541,0.930118,1.214301,1.824734,0.480447,0.480447,1.214301,1.824734,0.480447,0.480447,0.480447,0.480447,0.480447,0.480447,,,,,,,1.863863,0.694515,1.036541,0.930118,1.214301,1.824734,0.480447,0.480447,0.480447,0.480447,0.602399,0.251595,0.354202,0.322276,0.40753,0.59066,0.187374,0.187374,0.098492,0.098492,7.73308,20.753193,13.905289,15.496317,11.869713,7.898905,30,30,30,30,,,,,,,,,,,2752,2752,0.480447,0.480447,0.480447,0.480447,0.480447,0.480447,0.480447,0.480447,0.187374,0.187374,30,30,, +10267,0,0.436754,2,2,0,2,3,,2,5,Stadium,Blvd,1429506,2.353,2.79,0,9.359022,6,5,0.873509,0.873509,0.873509,0.873509,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,1.150019,1.049914,0.873509,0.873509,1.150019,1.049914,1.029675,0.999805,0.873509,0.873509,1.029675,0.999805,1.249355,1.297315,0.873509,0.873509,1.249355,1.297315,0.873509,0.873509,0.873509,0.873509,0.873509,0.873509,,,,,,,1.150019,1.049914,1.029675,0.999805,1.249355,1.297315,0.873509,0.873509,0.873509,0.873509,0.423622,0.39359,0.387518,0.378557,0.453422,0.46781,0.340668,0.340668,0.179069,0.179069,22.786799,24.959427,25.450029,26.210359,20.975032,20.19962,30,30,30,30,,,,,,,,,,,5504,5504,0.873509,0.873509,0.873509,0.873509,0.873509,0.873509,0.873509,0.873509,0.340668,0.340668,30,30,, +10639,0,0.127134,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0.368,0.495,0,2.724294,8.5,4.5,0.381401,0.381401,0.381401,0.381401,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.381568,0.381645,0.381401,0.381401,0.381568,0.381645,0.38145,0.381662,0.381401,0.381401,0.38145,0.381662,0.381546,0.38207,0.381401,0.381401,0.381546,0.38207,0.381401,0.381401,0.381401,0.381401,0.381401,0.381401,,,,,,,0.381568,0.381645,0.38145,0.381662,0.381546,0.38207,0.381401,0.381401,0.381401,0.381401,0.137354,0.137377,0.137319,0.137383,0.137348,0.137505,0.137304,0.137304,0.071195,0.071195,19.99127,19.987236,19.997459,19.986338,19.992412,19.964993,20,20,20,20,,,,,,,,,,,2064,2064,0.381401,0.381401,0.381401,0.381401,0.381401,0.381401,0.381401,0.381401,0.137304,0.137304,20,20,, +26503,0,0.098697,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.114944,0.15,4,0.592184,0.592184,0.592184,0.592184,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,,,,,,,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.195421,0.195421,0.195421,0.195421,0.195421,0.195421,0.195421,0.195421,0.099684,0.099684,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.592184,0.195421,0.195421,10,10,, +10640,0,0.068923,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0.299,0.368,0,1.476914,8.5,4.5,0.206768,0.206768,0.206768,0.206768,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.217234,0.207003,0.206768,0.206768,0.217234,0.207003,0.207303,0.207942,0.206768,0.206768,0.207303,0.207942,0.20785,0.216513,0.206768,0.206768,0.20785,0.216513,0.206768,0.206768,0.206768,0.206768,0.206768,0.206768,,,,,,,0.217234,0.207003,0.207303,0.207942,0.20785,0.216513,0.206768,0.206768,0.206768,0.206768,0.077576,0.074507,0.074597,0.074789,0.074761,0.07736,0.074436,0.074436,0.038597,0.038597,19.036451,19.977266,19.948422,19.887079,19.895882,19.099806,20,20,20,20,,,,,,,,,,,2064,2064,0.206768,0.206768,0.206768,0.206768,0.206768,0.206768,0.206768,0.206768,0.074436,0.074436,20,20,, +40344,-1,0.188171,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0.244,0.432,0,4.03223,3.7,5,,0.250894,,0.250894,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.487405,,0.250894,,0.487405,,0.382023,,0.250894,,0.382023,,0.699134,,0.250894,,0.699134,,0.250894,,0.250894,,0.250894,,,,,,,,0.487405,,0.382023,,0.699134,,0.250894,,0.250894,,0.180092,,0.148478,,0.243611,,0.109139,,0.058333,,23.16399,,29.553835,,16.148905,,45,,45,,,,,,,,,,,,7568,,0.250894,,0.250894,,0.250894,,0.250894,,0.109139,,45,, +10238,0,0.142677,1,1,0,2,3,,2,5,State,St,1427508,5.909,6.051,0,3.057367,6,5,0.285354,0.285354,0.285354,0.285354,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.719013,0.373789,0.285354,0.285354,0.719013,0.373789,0.536002,0.471714,0.285354,0.285354,0.536002,0.471714,0.637407,0.768693,0.285354,0.285354,0.637407,0.768693,0.285354,0.285354,0.285354,0.285354,0.285354,0.285354,,,,,,,0.719013,0.373789,0.536002,0.471714,0.637407,0.768693,0.285354,0.285354,0.285354,0.285354,0.241386,0.137819,0.186482,0.167196,0.216904,0.25629,0.111288,0.111288,0.058498,0.058498,11.906078,22.90229,15.971262,18.14791,13.430394,11.136602,30,30,30,30,,,,,,,,,,,2752,2752,0.285354,0.285354,0.285354,0.285354,0.285354,0.285354,0.285354,0.285354,0.111288,0.111288,30,30,, +26504,0,0.121298,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.599232,0.15,4,0.727785,0.727785,0.727785,0.727785,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,,,,,,,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.240169,0.240169,0.240169,0.240169,0.240169,0.240169,0.240169,0.240169,0.12251,0.12251,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.727785,0.240169,0.240169,10,10,, +30096,0,0.13253,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.839921,0.15,4,0.795178,0.795178,0.795178,0.795178,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,,,,,,,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.262409,0.262409,0.262409,0.262409,0.262409,0.262409,0.262409,0.262409,0.133855,0.133855,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.795178,0.262409,0.262409,10,10,, +26580,0,0.088562,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.897756,0.15,4,0.531372,0.531372,0.531372,0.531372,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,,,,,,,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.175353,0.175353,0.175353,0.175353,0.175353,0.175353,0.175353,0.175353,0.089448,0.089448,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.531372,0.175353,0.175353,10,10,, +10006,-1,0.255757,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,1.429,1.685,0,5.480511,5,5,,0.383636,,0.383636,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.504738,,0.383636,,0.504738,,0.486347,,0.383636,,0.486347,,0.681923,,0.383636,,0.681923,,0.383636,,0.383636,,0.383636,,,,,,,,0.504738,,0.486347,,0.681923,,0.383636,,0.383636,,0.197458,,0.19194,,0.250613,,0.161127,,0.085679,,30.402779,,31.552452,,22.503184,,40,,40,,,,,,,,,,,,6880,,0.383636,,0.383636,,0.383636,,0.383636,,0.161127,,40,, +10784,0,0.521487,1,1,0,2,4,,3,5,Industrial,Hwy,1441004,0,0.521,0,11.174714,6,4.5,0.948158,0.948158,0.948158,0.948158,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.491541,0.959417,0.948158,0.948158,1.491541,0.959417,1.049422,1.025318,0.948158,0.948158,1.049422,1.025318,1.154541,1.603316,0.948158,0.948158,1.154541,1.603316,0.948158,0.948158,0.948158,0.948158,0.948158,0.948158,,,,,,,1.491541,0.959417,1.049422,1.025318,1.154541,1.603316,0.948158,0.948158,0.948158,0.948158,0.54133,0.381693,0.408694,0.401463,0.44023,0.574862,0.378315,0.378315,0.199587,0.199587,20.977771,32.612722,29.815658,30.516571,27.100992,19.5153,33,33,33,33,,,,,,,,,,,2580,2580,0.948158,0.948158,0.948158,0.948158,0.948158,0.948158,0.948158,0.948158,0.378315,0.378315,33,33,, +11159,0,0.20918,1,1,0,2,5,,3,5,Boardwalk,St,1444305,0.368,0.577,0,4.482432,8,4.5,0.502032,0.502032,0.502032,0.502032,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.543665,0.502095,0.502032,0.502032,0.543665,0.502095,0.504885,0.505053,0.502032,0.502032,0.504885,0.505053,0.51033,0.5889,0.502032,0.502032,0.51033,0.5889,0.502032,0.502032,0.502032,0.502032,0.502032,0.502032,,,,,,,0.543665,0.502095,0.504885,0.505053,0.51033,0.5889,0.502032,0.502032,0.502032,0.502032,0.200752,0.188281,0.189118,0.189168,0.190751,0.214322,0.188262,0.188262,0.098315,0.098315,23.085565,24.996873,24.858764,24.850482,24.593533,21.312298,25,25,25,25,,,,,,,,,,,2408,2408,0.502032,0.502032,0.502032,0.502032,0.502032,0.502032,0.502032,0.502032,0.188262,0.188262,25,25,, +22045,1,0.256244,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,1.441,1.697,0,5.490949,5,5,0.384366,,0.384366,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.507037,,0.384366,,0.507037,,0.511538,,0.384366,,0.511538,,0.766173,,0.384366,,0.766173,,0.384366,,0.384366,,0.384366,,,,,,,,0.507037,,0.511538,,0.766173,,0.384366,,0.384366,,0.198235,,0.199585,,0.275976,,0.161434,,0.085842,,30.322575,,30.055773,,20.066819,,40,,40,,,,,,,,,,,,6880,,0.384366,,0.384366,,0.384366,,0.384366,,0.161434,,40,,, +26540,0,0.23065,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.942493,0.15,4,1.383898,1.383898,1.383898,1.383898,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.383898,1.383899,1.383898,1.383898,1.383898,1.383899,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,,,,,,,1.383898,1.383899,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,0.456686,0.456687,0.456686,0.456686,0.456686,0.456686,0.456686,0.456686,0.232956,0.232956,9.999999,9.999997,10,10,9.999998,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,1.383898,0.456686,0.456686,10,10,, +29958,0,0.414994,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.89272,0.15,4,2.489962,2.489962,2.489962,2.489962,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,,,,,,,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,0.821687,0.821687,0.821687,0.821687,0.821687,0.821687,0.821687,0.821687,0.419144,0.419144,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,2.489962,0.821687,0.821687,10,10,, +26551,0,0.24712,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.295432,0.15,4,1.482721,1.482721,1.482721,1.482721,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,,,,,,,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,0.489298,0.489298,0.489298,0.489298,0.489298,0.489298,0.489298,0.489298,0.249591,0.249591,10,10,9.999999,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,1.482721,0.489298,0.489298,10,10,, +11386,0,0.007664,1,1,0,2,5,,3,5,Boardwalk,St,1444305,0.36,0.368,0,0.16423,8,4.5,0.018394,0.018394,0.018394,0.018394,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.018495,0.019325,0.018394,0.018394,0.018495,0.019325,0.018417,0.023141,0.018394,0.018394,0.018417,0.023141,0.01841,0.04209,0.018394,0.018394,0.01841,0.04209,0.018394,0.018394,0.018394,0.018394,0.018394,0.018394,,,,,,,0.018495,0.019325,0.018417,0.023141,0.01841,0.04209,0.018394,0.018394,0.018394,0.018394,0.006928,0.007177,0.006905,0.008322,0.006902,0.014006,0.006898,0.006898,0.003602,0.003602,24.86379,23.79588,24.968913,19.871446,24.978333,10.925369,25,25,25,25,,,,,,,,,,,2408,2408,0.018394,0.018394,0.018394,0.018394,0.018394,0.018394,0.018394,0.018394,0.006898,0.006898,25,25,, +29959,0,0.119367,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.557875,0.15,4,0.716205,0.716205,0.716205,0.716205,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,,,,,,,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.236348,0.236348,0.236348,0.236348,0.236348,0.236348,0.236348,0.236348,0.120561,0.120561,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.716205,0.236348,0.236348,10,10,, +26566,0,0.064868,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.39002,0.15,4,0.389206,0.389206,0.389206,0.389206,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,,,,,,,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.128438,0.128438,0.128438,0.128438,0.128438,0.128438,0.128438,0.128438,0.065516,0.065516,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.389206,0.128438,0.128438,10,10,, +21766,0,0.259384,2,2,0,2,3,,3,5,Eisenhower,Pkwy,4600068,1.697,1.956,0,5.558238,5,5,0.444659,0.444659,0.444659,0.444659,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.478006,0.553968,0.444659,0.444659,0.478006,0.553968,0.50112,0.493488,0.444659,0.444659,0.50112,0.493488,0.687247,0.570243,0.444659,0.444659,0.687247,0.570243,0.444659,0.444659,0.444659,0.444659,0.444659,0.444659,,,,,,,0.478006,0.553968,0.50112,0.493488,0.687247,0.570243,0.444659,0.444659,0.444659,0.444659,0.190091,0.21288,0.197025,0.194736,0.252863,0.217762,0.180087,0.180087,0.095231,0.095231,32.558285,28.093787,31.056582,31.536875,22.645507,27.292004,35,35,35,35,,,,,,,,,,,7568,7568,0.444659,0.444659,0.444659,0.444659,0.444659,0.444659,0.444659,0.444659,0.180087,0.180087,35,35,, +26541,0,0.288175,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.175185,0.15,4,1.729052,1.729052,1.729052,1.729052,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,,,,,,,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,0.570587,0.570587,0.570587,0.570587,0.570587,0.570587,0.570587,0.570587,0.291057,0.291057,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,1.729052,0.570587,0.570587,10,10,, +9225,0,0.207677,2,2,1,2,3,,2,5,Stadium,Blvd,1429506,2.978,3.186,0,4.450213,6,5,0.415353,0.415353,0.415353,0.415353,30,30,16800,16800,3814,3814,8400,8400,5420,5420,5779,5779,5772,5772,0.579933,0.439332,0.415353,0.415353,0.579933,0.439332,0.456259,0.449866,0.415353,0.415353,0.456259,0.449866,0.506236,0.627349,0.415353,0.415353,0.506236,0.627349,0.415353,0.415353,0.415353,0.415353,0.415353,0.415353,,,,,,,0.579933,0.439332,0.456259,0.449866,0.506236,0.627349,0.415353,0.415353,0.415353,0.415353,0.211362,0.169181,0.17426,0.172342,0.189252,0.225587,0.161988,0.161988,0.085147,0.085147,21.486282,28.362602,27.310331,27.698457,24.614226,19.862291,30,30,30,30,,,,,,,,,,,5779,5779,0.415353,0.415353,0.415353,0.415353,0.415353,0.415353,0.415353,0.415353,0.161988,0.161988,30,30,, +10615,0,0.312699,1,1,0,2,3,,2,5,Packard,St,1430704,1.166,1.479,0,6.700684,6,5,0.625397,0.625397,0.625397,0.625397,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.800536,1.530919,0.625397,0.625397,0.800536,1.530919,0.862452,0.878849,0.625397,0.625397,0.862452,0.878849,1.515482,1.133276,0.625397,0.625397,1.515482,1.133276,0.625397,0.625397,0.625397,0.625397,0.625397,0.625397,,,,,,,0.800536,1.530919,0.862452,0.878849,1.515482,1.133276,0.625397,0.625397,0.625397,0.625397,0.296446,0.515561,0.315021,0.31994,0.51093,0.396269,0.243905,0.243905,0.128206,0.128206,23.436705,12.255328,21.754153,21.348289,12.380163,16.555465,30,30,30,30,,,,,,,,,,,2752,2752,0.625397,0.625397,0.625397,0.625397,0.625397,0.625397,0.625397,0.625397,0.243905,0.243905,30,30,, +26448,0,0.253333,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.428555,0.15,4,1.519995,1.519995,1.519995,1.519995,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,,,,,,,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,0.501598,0.501598,0.501598,0.501598,0.501598,0.501598,0.501598,0.501598,0.255866,0.255866,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,1.519995,0.501598,0.501598,10,10,, +26557,0,0.243132,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.209965,0.15,4,1.45879,1.45879,1.45879,1.45879,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,,,,,,,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,0.481401,0.481401,0.481401,0.481401,0.481401,0.481401,0.481401,0.481401,0.245563,0.245563,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,1.45879,0.481401,0.481401,10,10,, +26565,0,0.140115,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.002468,0.15,4,0.840691,0.840691,0.840691,0.840691,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,,,,,,,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.277428,0.277428,0.277428,0.277428,0.277428,0.277428,0.277428,0.277428,0.141516,0.141516,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.840691,0.277428,0.277428,10,10,, +26567,0,0.223884,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.79751,0.15,4,1.343303,1.343303,1.343303,1.343303,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,,,,,,,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,0.44329,0.44329,0.44329,0.44329,0.44329,0.44329,0.44329,0.44329,0.226123,0.226123,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,1.343303,0.44329,0.44329,10,10,, +30133,0,0.364376,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.808048,0.15,4,2.186253,2.186253,2.186253,2.186253,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,,,,,,,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,0.721464,0.721464,0.721464,0.721464,0.721464,0.721464,0.721464,0.721464,0.368019,0.368019,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,2.186253,0.721464,0.721464,10,10,, +9668,0,0.188577,2,2,1,2,3,,2,5,Stadium,Blvd,1429506,2.79,2.978,0,4.040946,6,5,0.377155,0.377155,0.377155,0.377155,30,30,16800,16800,3814,3814,8400,8400,5420,5420,5779,5779,5772,5772,0.460931,0.416002,0.377155,0.377155,0.460931,0.416002,0.430313,0.425058,0.377155,0.377155,0.430313,0.425058,0.500991,0.515264,0.377155,0.377155,0.500991,0.515264,0.377155,0.377155,0.377155,0.377155,0.377155,0.377155,,,,,,,0.460931,0.416002,0.430313,0.425058,0.500991,0.515264,0.377155,0.377155,0.377155,0.377155,0.172223,0.158745,0.163038,0.161461,0.184241,0.188523,0.14709,0.14709,0.077317,0.077317,24.547374,27.198518,26.294004,26.6191,22.58453,21.958937,30,30,30,30,,,,,,,,,,,5779,5779,0.377155,0.377155,0.377155,0.377155,0.377155,0.377155,0.377155,0.377155,0.14709,0.14709,30,30,, +11232,0,0.266508,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,0.931,1.197,0,5.710888,6,4.5,0.48456,0.48456,0.48456,0.48456,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.528345,0.494634,0.48456,0.48456,0.528345,0.494634,0.49211,0.492864,0.48456,0.48456,0.49211,0.492864,0.513101,0.536014,0.48456,0.48456,0.513101,0.536014,0.48456,0.48456,0.48456,0.48456,0.48456,0.48456,,,,,,,0.528345,0.494634,0.49211,0.492864,0.513101,0.536014,0.48456,0.48456,0.48456,0.48456,0.206475,0.196362,0.195604,0.195831,0.201902,0.208776,0.19334,0.19334,0.102,0.102,30.265253,32.327915,32.493754,32.444004,31.164399,29.832219,33,33,33,33,,,,,,,,,,,2838,2838,0.48456,0.48456,0.48456,0.48456,0.48456,0.48456,0.48456,0.48456,0.19334,0.19334,33,33,, +26556,0,0.202461,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.338459,0.15,4,1.214769,1.214769,1.214769,1.214769,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,,,,,,,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,0.400874,0.400874,0.400874,0.400874,0.400874,0.400874,0.400874,0.400874,0.204486,0.204486,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,1.214769,0.400874,0.400874,10,10,, +30098,0,0.299627,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.420587,0.15,4,1.797764,1.797764,1.797764,1.797764,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,,,,,,,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,0.593262,0.593262,0.593262,0.593262,0.593262,0.593262,0.593262,0.593262,0.302624,0.302624,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,1.797764,0.593262,0.593262,10,10,, +11482,0,0.14836,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,0.782,0.931,0,3.179152,6,4.5,0.269746,0.269746,0.269746,0.269746,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.29412,0.275354,0.269746,0.269746,0.29412,0.275354,0.273949,0.274369,0.269746,0.269746,0.273949,0.274369,0.285634,0.297064,0.269746,0.269746,0.285634,0.297064,0.269746,0.269746,0.269746,0.269746,0.269746,0.269746,,,,,,,0.29412,0.275354,0.273949,0.274369,0.285634,0.297064,0.269746,0.269746,0.269746,0.269746,0.114941,0.109311,0.10889,0.109016,0.112395,0.115824,0.107629,0.107629,0.056782,0.056782,30.265253,32.327915,32.493754,32.444004,31.164399,29.965388,33,33,33,33,,,,,,,,,,,2838,2838,0.269746,0.269746,0.269746,0.269746,0.269746,0.269746,0.269746,0.269746,0.107629,0.107629,33,33,, +11480,0,0.063943,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,1.197,1.261,0,1.370213,6,4.5,0.11626,0.11626,0.11626,0.11626,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.167817,0.144888,0.11626,0.11626,0.167817,0.144888,0.131343,0.134532,0.11626,0.11626,0.131343,0.134532,0.184089,0.194651,0.11626,0.11626,0.184089,0.194651,0.11626,0.11626,0.11626,0.11626,0.11626,0.11626,,,,,,,0.167817,0.144888,0.131343,0.134532,0.184089,0.194651,0.11626,0.11626,0.11626,0.11626,0.061855,0.054976,0.050913,0.051869,0.066736,0.069905,0.046388,0.046388,0.024473,0.024473,22.861734,26.479756,29.210568,28.51816,20.84104,19.710083,33,33,33,33,,,,,,,,,,,2838,2838,0.11626,0.11626,0.11626,0.11626,0.11626,0.11626,0.11626,0.11626,0.046388,0.046388,33,33,, +10616,0,0.120991,1,1,0,2,3,,2,5,Packard,St,1430704,1.045,1.166,0,2.592657,6,5,0.241981,0.241981,0.241981,0.241981,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.324831,0.912732,0.241981,0.241981,0.324831,0.912732,0.423044,0.451553,0.241981,0.241981,0.423044,0.451553,0.932216,0.528354,0.241981,0.241981,0.932216,0.528354,0.241981,0.241981,0.241981,0.241981,0.241981,0.241981,,,,,,,0.324831,0.912732,0.423044,0.451553,0.932216,0.528354,0.241981,0.241981,0.241981,0.241981,0.119227,0.295598,0.148691,0.157244,0.301443,0.180285,0.094373,0.094373,0.049606,0.049606,22.348393,7.95353,17.160015,16.076623,7.787291,13.739719,30,30,30,30,,,,,,,,,,,2752,2752,0.241981,0.241981,0.241981,0.241981,0.241981,0.241981,0.241981,0.241981,0.094373,0.094373,30,30,, +10617,0,0.107303,1,1,0,2,3,,2,5,Packard,St,1430704,0.938,1.045,0,2.299342,6,5,0.214605,0.214605,0.214605,0.214605,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.270204,0.670195,0.214605,0.214605,0.270204,0.670195,0.336618,0.356931,0.214605,0.214605,0.336618,0.356931,0.664757,0.390468,0.214605,0.214605,0.664757,0.390468,0.214605,0.214605,0.214605,0.214605,0.214605,0.214605,,,,,,,0.270204,0.670195,0.336618,0.356931,0.664757,0.390468,0.214605,0.214605,0.214605,0.214605,0.100376,0.220373,0.1203,0.126394,0.218742,0.136455,0.083696,0.083696,0.043994,0.043994,23.827037,9.6064,19.126023,18.037547,9.684981,16.488314,30,30,30,30,,,,,,,,,,,2752,2752,0.214605,0.214605,0.214605,0.214605,0.214605,0.214605,0.214605,0.214605,0.083696,0.083696,30,30,, +26563,0,0.143087,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.06616,0.15,4,0.858525,0.858525,0.858525,0.858525,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,,,,,,,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.283313,0.283313,0.283313,0.283313,0.283313,0.283313,0.283313,0.283313,0.144518,0.144518,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.858525,0.283313,0.283313,10,10,, +10618,0,0.071585,1,1,0,2,3,,2,5,Packard,St,1430704,0.866,0.938,0,1.533973,6,5,0.143171,0.143171,0.143171,0.143171,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.174402,0.422612,0.143171,0.143171,0.174402,0.422612,0.215791,0.226451,0.143171,0.143171,0.215791,0.226451,0.404892,0.243072,0.143171,0.143171,0.404892,0.243072,0.143171,0.143171,0.143171,0.143171,0.143171,0.143171,,,,,,,0.174402,0.422612,0.215791,0.226451,0.404892,0.243072,0.143171,0.143171,0.143171,0.143171,0.065206,0.139669,0.077623,0.080821,0.134353,0.085807,0.055837,0.055837,0.02935,0.02935,24.627726,10.163283,19.90405,18.967132,10.608074,17.670154,30,30,30,30,,,,,,,,,,,2752,2752,0.143171,0.143171,0.143171,0.143171,0.143171,0.143171,0.143171,0.143171,0.055837,0.055837,30,30,, +26520,0,0.14129,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.027636,0.15,4,0.847738,0.847738,0.847738,0.847738,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,,,,,,,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.279754,0.279754,0.279754,0.279754,0.279754,0.279754,0.279754,0.279754,0.142703,0.142703,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.847738,0.279754,0.279754,10,10,, +10277,0,0.181545,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.302,3.483,0,3.890255,5,5,0.31122,0.31122,0.31122,0.31122,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.325342,0.312061,0.31122,0.31122,0.325342,0.312061,0.314371,0.313688,0.31122,0.31122,0.314371,0.313688,0.318885,0.331305,0.31122,0.31122,0.318885,0.331305,0.31122,0.31122,0.31122,0.31122,0.31122,0.31122,,,,,,,0.325342,0.312061,0.314371,0.313688,0.318885,0.331305,0.31122,0.31122,0.31122,0.31122,0.130281,0.126296,0.126989,0.126784,0.128344,0.13207,0.126044,0.126044,0.066653,0.066653,33.480812,34.905758,34.649231,34.724712,34.158716,32.878181,35,35,35,35,,,,,,,,,,,7946,7946,0.31122,0.31122,0.31122,0.31122,0.31122,0.31122,0.31122,0.31122,0.126044,0.126044,35,35,, +10614,0,0.307743,1,1,1,2,3,,3,5,Packard,St,1430704,1.479,1.786,0,6.594486,5,5,0.527559,0.527559,0.527559,0.527559,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.573847,0.880299,0.527559,0.527559,0.573847,0.880299,0.666162,0.681024,0.527559,0.527559,0.666162,0.681024,0.920137,0.761306,0.527559,0.527559,0.920137,0.761306,0.527559,0.527559,0.527559,0.527559,0.527559,0.527559,,,,,,,0.573847,0.880299,0.666162,0.681024,0.920137,0.761306,0.527559,0.527559,0.527559,0.527559,0.227548,0.319483,0.255242,0.259701,0.331435,0.283785,0.213661,0.213661,0.112986,0.112986,32.176786,20.97532,27.717816,27.112947,20.067196,24.253796,35,35,35,35,,,,,,,,,,,4162,4162,0.527559,0.527559,0.527559,0.527559,0.527559,0.527559,0.527559,0.527559,0.213661,0.213661,35,35,, +26549,0,0.201599,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.319986,0.15,4,1.209596,1.209596,1.209596,1.209596,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,,,,,,,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,0.399167,0.399167,0.399167,0.399167,0.399167,0.399167,0.399167,0.399167,0.203615,0.203615,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,1.209596,0.399167,0.399167,10,10,, +9500,0,0.11604,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.186,3.302,0,2.48657,5,5,0.198926,0.198926,0.198926,0.198926,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.212754,0.199826,0.198926,0.198926,0.212754,0.199826,0.201484,0.200946,0.198926,0.198926,0.201484,0.200946,0.206229,0.21752,0.198926,0.198926,0.206229,0.21752,0.198926,0.198926,0.198926,0.198926,0.198926,0.198926,,,,,,,0.212754,0.199826,0.201484,0.200946,0.206229,0.21752,0.198926,0.198926,0.198926,0.198926,0.084714,0.080835,0.081332,0.081171,0.082756,0.086143,0.080565,0.080565,0.042603,0.042603,32.725026,34.842255,34.555628,34.648051,33.760438,32.00806,35,35,35,35,,,,,,,,,,,7946,7946,0.198926,0.198926,0.198926,0.198926,0.198926,0.198926,0.198926,0.198926,0.080565,0.080565,35,35,, +26550,0,0.165096,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.537777,0.15,4,0.990577,0.990577,0.990577,0.990577,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,,,,,,,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.326891,0.326891,0.326891,0.326891,0.326891,0.326891,0.326891,0.326891,0.166747,0.166747,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.990577,0.326891,0.326891,10,10,, +29950,0,0.218358,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.67911,0.15,4,1.310151,1.310151,1.310151,1.310151,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,,,,,,,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,0.43235,0.43235,0.43235,0.43235,0.43235,0.43235,0.43235,0.43235,0.220542,0.220542,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,1.310151,0.43235,0.43235,10,10,, +30027,0,0.460082,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.858897,0.15,4,2.760491,2.760491,2.760491,2.760491,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,,,,,,,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,0.910962,0.910962,0.910962,0.910962,0.910962,0.910962,0.910962,0.910962,0.464683,0.464683,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,2.760491,0.910962,0.910962,10,10,, +10189,0,0.047266,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.903,0.951,0,1.012835,5,5,0.081027,0.081027,0.081027,0.081027,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.081912,0.167426,0.081027,0.081027,0.081912,0.167426,0.090416,0.094045,0.081027,0.081027,0.090416,0.094045,0.167591,0.099306,0.081027,0.081027,0.167591,0.099306,0.081027,0.081027,0.081027,0.081027,0.081027,0.081027,,,,,,,0.081912,0.167426,0.090416,0.094045,0.167591,0.099306,0.081027,0.081027,0.081027,0.081027,0.033082,0.058736,0.035633,0.036721,0.058785,0.0383,0.032816,0.032816,0.017353,0.017353,34.621628,16.938484,31.365564,30.155185,16.921791,28.557508,35,35,35,35,,,,,,,,,,,7568,7568,0.081027,0.081027,0.081027,0.081027,0.081027,0.081027,0.081027,0.081027,0.032816,0.032816,35,35,, +10728,0,0.51155,1,1,0,2,7,GRV,4,5,Morgan,Rd,1437402,1.251,1.762,0,10.961796,6.55,4.5,1.534651,1.534651,1.534651,1.534651,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.534657,1.569642,1.534651,1.534651,1.534657,1.569642,1.534684,1.534698,1.534651,1.534651,1.534684,1.534698,1.559491,1.535014,1.534651,1.534651,1.559491,1.535014,1.534651,1.534651,1.534651,1.534651,1.534651,1.534651,,,,,,,1.534657,1.569642,1.534684,1.534698,1.559491,1.535014,1.534651,1.534651,1.534651,1.534651,0.552476,0.562972,0.552484,0.552489,0.559926,0.552583,0.552475,0.552475,0.286468,0.286468,19.999924,19.55416,19.999574,19.999389,19.681441,19.995281,20,20,20,20,,,,,,,,,,,2064,2064,1.534651,1.534651,1.534651,1.534651,1.534651,1.534651,1.534651,1.534651,0.552475,0.552475,20,20,, +10805,0,0.604364,1,1,0,2,7,GRV,4,5,Stone School,Rd,1436802,0,0.604,0,12.950663,6.55,4.5,1.813093,1.813093,1.813093,1.813093,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.849998,1.813096,1.813093,1.813093,1.849998,1.813096,1.8131,1.813097,1.813093,1.813093,1.8131,1.813097,1.821095,1.855944,1.813093,1.813093,1.821095,1.855944,1.813093,1.813093,1.813093,1.813093,1.813093,1.813093,,,,,,,1.849998,1.813096,1.8131,1.813097,1.821095,1.855944,1.813093,1.813093,1.813093,1.813093,0.663785,0.652714,0.652715,0.652715,0.655114,0.665569,0.652713,0.652713,0.338444,0.338444,19.601029,19.999966,19.999924,19.999949,19.912122,19.538231,20,20,20,20,,,,,,,,,,,2064,2064,1.813093,1.813093,1.813093,1.813093,1.813093,1.813093,1.813093,1.813093,0.652713,0.652713,20,20,, +20238,0,0.649794,1,1,0,2,5,,4,5,Platt,Rd,4302160,9.51,10.16,0,13.924152,5.8,4.5,1.443986,1.443986,1.443986,1.443986,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.131852,1.575643,1.443986,1.443986,2.131852,1.575643,1.530288,1.492986,1.443986,1.443986,1.530288,1.492986,2.177406,2.004195,1.443986,1.443986,2.177406,2.004195,1.443986,1.443986,1.443986,1.443986,1.443986,1.443986,,,,,,,2.131852,1.575643,1.530288,1.492986,2.177406,2.004195,1.443986,1.443986,1.443986,1.443986,0.756518,0.589656,0.576049,0.564859,0.770185,0.718221,0.550159,0.550159,0.288075,0.288075,18.288148,24.743948,25.477312,26.113867,17.905541,19.453008,27,27,27,27,,,,,,,,,,,2580,2580,1.443986,1.443986,1.443986,1.443986,1.443986,1.443986,1.443986,1.443986,0.550159,0.550159,27,27,, +21339,0,0.342361,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,9.707,10.05,0,7.336306,3.7,5,0.513541,0.513541,0.513541,0.513541,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.592295,0.898413,0.513541,0.513541,0.592295,0.898413,0.559265,0.564098,0.513541,0.513541,0.559265,0.564098,0.925657,0.837088,0.513541,0.513541,0.925657,0.837088,0.513541,0.513541,0.513541,0.513541,0.513541,0.513541,,,,,,,0.592295,0.898413,0.559265,0.564098,0.925657,0.837088,0.513541,0.513541,0.513541,0.513541,0.239314,0.331149,0.229404,0.230854,0.339322,0.312751,0.215687,0.215687,0.114691,0.114691,34.681452,22.864392,36.729756,36.415072,22.19143,24.53942,40,40,40,40,,,,,,,,,,,4162,4162,0.513541,0.513541,0.513541,0.513541,0.513541,0.513541,0.513541,0.513541,0.215687,0.215687,40,40,, +26546,0,0.629346,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.485983,0.15,4,2.517384,2.517384,2.517384,2.517384,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,,,,,,,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,0.868497,0.868497,0.868497,0.868497,0.868497,0.868497,0.868497,0.868497,0.446836,0.446836,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,2.517384,0.868497,0.868497,15,15,, +26571,0,0.569693,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.207709,0.15,4,2.278772,2.278772,2.278772,2.278772,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,,,,,,,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,0.786176,0.786176,0.786176,0.786176,0.786176,0.786176,0.786176,0.786176,0.404482,0.404482,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,2.278772,0.786176,0.786176,15,15,, +30121,0,0.484681,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.386031,0.15,4,1.938726,1.938726,1.938726,1.938726,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,,,,,,,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,0.66886,0.66886,0.66886,0.66886,0.66886,0.66886,0.66886,0.66886,0.344124,0.344124,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,1.938726,0.66886,0.66886,15,15,, +10730,0,0.502057,1,1,0,2,7,GRV,4,5,Morgan,Rd,1437402,0.749,1.251,0,10.758362,6.55,4.5,1.506171,1.506171,1.506171,1.506171,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.506172,1.521783,1.506171,1.506171,1.506172,1.521783,1.506174,1.506177,1.506171,1.506171,1.506174,1.506177,1.514935,1.506462,1.506171,1.506171,1.514935,1.506462,1.506171,1.506171,1.506171,1.506171,1.506171,1.506171,,,,,,,1.506172,1.521783,1.506174,1.506177,1.514935,1.506462,1.506171,1.506171,1.506171,1.506171,0.542222,0.546905,0.542222,0.542223,0.544851,0.542309,0.542221,0.542221,0.281152,0.281152,19.999981,19.79482,19.999956,19.999921,19.884289,19.996134,20,20,20,20,,,,,,,,,,,2064,2064,1.506171,1.506171,1.506171,1.506171,1.506171,1.506171,1.506171,1.506171,0.542221,0.542221,20,20,, +26255,0,0.625571,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.405096,0.15,4,2.502285,2.502285,2.502285,2.502285,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,,,,,,,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,0.863288,0.863288,0.863288,0.863288,0.863288,0.863288,0.863288,0.863288,0.444156,0.444156,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,2.502285,0.863288,0.863288,15,15,, +10804,0,0.409989,1,1,0,2,7,,4,5,Stone School,Rd,1436802,0.604,1.014,0,8.785472,6.55,4.5,0.983973,0.983973,0.983973,0.983973,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.001619,0.990875,0.983973,0.983973,1.001619,0.990875,0.984015,0.984009,0.983973,0.983973,0.984015,0.984009,1.009703,1.002629,0.983973,0.983973,1.009703,1.002629,0.983973,0.983973,0.983973,0.983973,0.983973,0.983973,,,,,,,1.001619,0.990875,0.984015,0.984009,1.009703,1.002629,0.983973,0.983973,0.983973,0.983973,0.374284,0.37106,0.369002,0.369001,0.376709,0.374587,0.36899,0.36899,0.192695,0.192695,24.55957,24.825857,24.998934,24.999093,24.362931,24.534818,25,25,25,25,,,,,,,,,,,2064,2064,0.983973,0.983973,0.983973,0.983973,0.983973,0.983973,0.983973,0.983973,0.36899,0.36899,25,25,, +21287,0,0.313116,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,9.033,9.346,0,6.709621,3.7,5,0.469673,0.469673,0.469673,0.469673,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.481231,0.792023,0.469673,0.469673,0.481231,0.792023,0.488178,0.498842,0.469673,0.469673,0.488178,0.498842,0.76858,0.591169,0.469673,0.469673,0.76858,0.591169,0.469673,0.469673,0.469673,0.469673,0.469673,0.469673,,,,,,,0.481231,0.792023,0.488178,0.498842,0.76858,0.591169,0.469673,0.469673,0.469673,0.469673,0.20073,0.293968,0.202814,0.206014,0.286935,0.233711,0.197263,0.197263,0.104894,0.104894,39.039335,23.720183,38.483821,37.66108,24.443709,31.779321,40,40,40,40,,,,,,,,,,,4162,4162,0.469673,0.469673,0.469673,0.469673,0.469673,0.469673,0.469673,0.469673,0.197263,0.197263,40,40,, +26542,0,0.427023,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.150486,0.15,4,1.708091,1.708091,1.708091,1.708091,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,,,,,,,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,0.589291,0.589291,0.589291,0.589291,0.589291,0.589291,0.589291,0.589291,0.303186,0.303186,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,1.708091,0.589291,0.589291,15,15,, +26570,0,0.228374,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.893735,0.15,4,0.913497,0.913497,0.913497,0.913497,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,,,,,,,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.315157,0.315157,0.315157,0.315157,0.315157,0.315157,0.315157,0.315157,0.162146,0.162146,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.913497,0.315157,0.315157,15,15,, +10789,0,0.158953,1,1,0,2,5,,4,5,Stone School,Rd,1436802,1.238,1.397,0,3.406141,5.8,4.5,0.353229,0.353229,0.353229,0.353229,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.58378,0.367893,0.353229,0.353229,0.58378,0.367893,0.407195,0.409536,0.353229,0.353229,0.407195,0.409536,0.604205,0.825606,0.353229,0.353229,0.604205,0.825606,0.353229,0.353229,0.353229,0.353229,0.353229,0.353229,,,,,,,0.58378,0.367893,0.407195,0.409536,0.604205,0.825606,0.353229,0.353229,0.353229,0.353229,0.203745,0.13898,0.15077,0.151472,0.209873,0.276293,0.13458,0.13458,0.070469,0.070469,16.336978,25.923805,23.421713,23.287801,15.784695,11.551751,27,27,27,27,,,,,,,,,,,2580,2580,0.353229,0.353229,0.353229,0.353229,0.353229,0.353229,0.353229,0.353229,0.13458,0.13458,27,27,, +10796,0,0.223883,1,1,0,2,5,,4,5,Stone School,Rd,1436802,1.014,1.238,0,4.79749,5.8,4.5,0.497518,0.497518,0.497518,0.497518,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.528681,0.498471,0.497518,0.497518,0.528681,0.498471,0.500231,0.499872,0.497518,0.497518,0.500231,0.499872,0.516864,0.540807,0.497518,0.497518,0.516864,0.540807,0.497518,0.497518,0.497518,0.497518,0.497518,0.497518,,,,,,,0.528681,0.498471,0.500231,0.499872,0.516864,0.540807,0.497518,0.497518,0.497518,0.497518,0.198903,0.18984,0.190368,0.19026,0.195358,0.202541,0.189554,0.189554,0.099255,0.099255,25.408483,26.948376,26.853527,26.872848,25.989401,24.838749,27,27,27,27,,,,,,,,,,,2580,2580,0.497518,0.497518,0.497518,0.497518,0.497518,0.497518,0.497518,0.497518,0.189554,0.189554,27,27,, +26547,0,0.109354,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.343298,0.15,4,0.437416,0.437416,0.437416,0.437416,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,,,,,,,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.150908,0.150908,0.150908,0.150908,0.150908,0.150908,0.150908,0.150908,0.077641,0.077641,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.437416,0.150908,0.150908,15,15,, +22044,0,0.361975,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,9.346,9.707,0,7.756606,3.7,5,0.542962,0.542962,0.542962,0.542962,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.626035,0.941654,0.542962,0.542962,0.626035,0.941654,0.590684,0.595041,0.542962,0.542962,0.590684,0.595041,0.969673,0.881943,0.542962,0.542962,0.969673,0.881943,0.542962,0.542962,0.542962,0.542962,0.542962,0.542962,,,,,,,0.626035,0.941654,0.590684,0.595041,0.969673,0.881943,0.542962,0.542962,0.542962,0.542962,0.252966,0.347652,0.242361,0.243668,0.356057,0.329738,0.228044,0.228044,0.121262,0.121262,34.692151,23.064205,36.76841,36.499191,22.397757,24.625737,40,40,40,40,,,,,,,,,,,4162,4162,0.542962,0.542962,0.542962,0.542962,0.542962,0.542962,0.542962,0.542962,0.228044,0.228044,40,40,, +26568,0,0.252157,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.403367,0.15,4,1.008628,1.008628,1.008628,1.008628,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.008629,1.008628,1.008628,1.008628,1.008629,1.008628,1.008629,1.008629,1.008628,1.008628,1.008629,1.008629,1.008629,1.008629,1.008628,1.008628,1.008629,1.008629,1.008628,1.008628,1.008628,1.008628,1.008628,1.008628,,,,,,,1.008629,1.008628,1.008629,1.008629,1.008629,1.008629,1.008628,1.008628,1.008628,1.008628,0.347977,0.347977,0.347977,0.347977,0.347977,0.347977,0.347977,0.347977,0.179032,0.179032,14.999997,15,15,15,14.999999,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,1.008628,1.008628,1.008628,1.008628,1.008628,1.008628,1.008628,1.008628,0.347977,0.347977,15,15,, +29488,0,0.333871,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.154387,0.15,4,1.335486,1.335486,1.335486,1.335486,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,,,,,,,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,0.460743,0.460743,0.460743,0.460743,0.460743,0.460743,0.460743,0.460743,0.237049,0.237049,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,1.335486,0.460743,0.460743,15,15,, +20425,0,0.3751,1,1,0,2,5,,4,5,Platt,Rd,4302160,9.135,9.51,0,8.037863,5.8,4.5,0.833556,0.833556,0.833556,0.833556,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.303742,0.876144,0.833556,0.833556,1.303742,0.876144,0.892503,0.857341,0.833556,0.833556,0.892503,0.857341,1.151739,1.132787,0.833556,0.833556,1.151739,1.132787,0.833556,0.833556,0.833556,0.833556,0.833556,0.833556,,,,,,,1.303742,0.876144,0.892503,0.857341,1.151739,1.132787,0.833556,0.833556,0.833556,0.833556,0.458641,0.330361,0.335269,0.32472,0.41304,0.407354,0.317585,0.317585,0.166294,0.166294,17.262633,25.687587,25.216732,26.250943,19.540904,19.867826,27,27,27,27,,,,,,,,,,,2580,2580,0.833556,0.833556,0.833556,0.833556,0.833556,0.833556,0.833556,0.833556,0.317585,0.317585,27,27,, +9223,1,0.160112,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0,0.16,0,,0.58,7,0.160112,,0.160112,,60,,38000,,8626,,19000,,12259,,13072,,13057,,0.160114,,0.160112,,0.160114,,0.160113,,0.160112,,0.160113,,0.160183,,0.160112,,0.160183,,0.160112,,0.160112,,0.160112,,,,,,,,0.160114,,0.160113,,0.160183,,0.160112,,0.160112,,0.076855,,0.076854,,0.076875,,0.076854,,0.041629,,59.999221,,59.999731,,59.973476,,60,,60,,,,,,,,,,,,13072,,0.160112,,0.160112,,0.160112,,0.160112,,0.076854,,60,,, +9674,0,0.466834,1,1,0,2,5,,3,5,Pittsfield,Blvd,1429604,0.312,0.779,0,10.00359,8,4.5,1.120402,1.120402,1.120402,1.120402,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.433539,1.134785,1.120402,1.120402,1.433539,1.134785,1.158082,1.166904,1.120402,1.120402,1.158082,1.166904,1.140637,1.284798,1.120402,1.120402,1.140637,1.284798,1.120402,1.120402,1.120402,1.120402,1.120402,1.120402,,,,,,,1.433539,1.134785,1.158082,1.166904,1.140637,1.284798,1.120402,1.120402,1.120402,1.120402,0.514092,0.424466,0.431455,0.434101,0.426221,0.46947,0.420151,0.420151,0.219412,0.219412,19.539099,24.683136,24.186587,24.003739,24.556503,21.801129,25,25,25,25,,,,,,,,,,,2408,2408,1.120402,1.120402,1.120402,1.120402,1.120402,1.120402,1.120402,1.120402,0.420151,0.420151,25,25,, +9752,0,0.275327,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,0,0.275,0,5.899862,6,4.5,0.500594,0.500594,0.500594,0.500594,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.736697,0.525752,0.500594,0.500594,0.736697,0.525752,0.548124,0.533086,0.500594,0.500594,0.548124,0.533086,0.672742,0.736779,0.500594,0.500594,0.672742,0.736779,0.500594,0.500594,0.500594,0.500594,0.500594,0.500594,,,,,,,0.736697,0.525752,0.548124,0.533086,0.672742,0.736779,0.500594,0.500594,0.500594,0.500594,0.270568,0.207284,0.213996,0.209485,0.251381,0.270593,0.199737,0.199737,0.105375,0.105375,22.423881,31.42094,30.138442,30.988667,24.555664,22.421387,33,33,33,33,,,,,,,,,,,5418,5418,0.500594,0.500594,0.500594,0.500594,0.500594,0.500594,0.500594,0.500594,0.199737,0.199737,33,33,, +9940,0,0.308363,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.091,2.399,0,6.607785,5,5,0.528623,0.528623,0.528623,0.528623,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.794895,1.476765,0.528623,0.528623,0.794895,1.476765,0.852519,0.842925,0.528623,0.528623,0.852519,0.842925,1.752137,1.175447,0.528623,0.528623,1.752137,1.175447,0.528623,0.528623,0.528623,0.528623,0.528623,0.528623,,,,,,,0.794895,1.476765,0.852519,0.842925,1.752137,1.175447,0.528623,0.528623,0.528623,0.528623,0.293974,0.498535,0.311261,0.308383,0.581147,0.408139,0.214092,0.214092,0.113213,0.113213,23.275771,12.528602,21.702512,21.94951,10.55956,15.740224,35,35,35,35,,,,,,,,,,,7568,7568,0.528623,0.528623,0.528623,0.528623,0.528623,0.528623,0.528623,0.528623,0.214092,0.214092,35,35,, +10018,0,0.631854,1,1,0,2,5,,3,5,Arlington,Blvd,1429509,0,0.632,0,13.539721,8,4.5,1.516449,1.516449,1.516449,1.516449,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.646668,1.517478,1.516449,1.516449,1.646668,1.517478,1.516936,1.517236,1.516449,1.516449,1.516936,1.517236,1.552706,1.775738,1.516449,1.516449,1.552706,1.775738,1.516449,1.516449,1.516449,1.516449,1.516449,1.516449,,,,,,,1.646668,1.517478,1.516936,1.517236,1.552706,1.775738,1.516449,1.516449,1.516449,1.516449,0.607734,0.568977,0.568814,0.568904,0.579546,0.646455,0.568668,0.568668,0.296971,0.296971,23.022986,24.983045,24.991977,24.98703,24.416221,21.349554,25,25,25,25,,,,,,,,,,,2408,2408,1.516449,1.516449,1.516449,1.516449,1.516449,1.516449,1.516449,1.516449,0.568668,0.568668,25,25,, +10608,0,0.169702,2,2,1,2,3,,3,5,Packard,St,1430704,3.188,3.358,0,3.636466,5,5,0.290917,0.290917,0.290917,0.290917,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.384133,0.636608,0.290917,0.290917,0.384133,0.636608,0.398395,0.380199,0.290917,0.290917,0.398395,0.380199,0.832023,0.562896,0.290917,0.290917,0.832023,0.562896,0.290917,0.290917,0.290917,0.290917,0.290917,0.290917,,,,,,,0.384133,0.636608,0.398395,0.380199,0.832023,0.562896,0.290917,0.290917,0.290917,0.290917,0.145786,0.221529,0.150065,0.144606,0.280153,0.199415,0.117822,0.117822,0.062305,0.062305,26.506754,15.994308,25.557799,26.780986,12.237774,18.088779,35,35,35,35,,,,,,,,,,,7946,7946,0.290917,0.290917,0.290917,0.290917,0.290917,0.290917,0.290917,0.290917,0.117822,0.117822,35,35,, +26537,0,0.470418,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.080379,0.15,4,2.822506,2.822506,2.822506,2.822506,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,,,,,,,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,0.931427,0.931427,0.931427,0.931427,0.931427,0.931427,0.931427,0.931427,0.475122,0.475122,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,2.822506,0.931427,0.931427,10,10,, +26575,0,0.334588,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.169739,0.15,4,2.007527,2.007527,2.007527,2.007527,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,,,,,,,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,0.662484,0.662484,0.662484,0.662484,0.662484,0.662484,0.662484,0.662484,0.337934,0.337934,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,2.007527,0.662484,0.662484,10,10,, +29509,0,0.303467,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.502864,0.15,4,1.820802,1.820802,1.820802,1.820802,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,,,,,,,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,0.600865,0.600865,0.600865,0.600865,0.600865,0.600865,0.600865,0.600865,0.306502,0.306502,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,1.820802,0.600865,0.600865,10,10,, +30135,0,0.622156,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.331906,0.15,4,3.732934,3.732934,3.732934,3.732934,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,,,,,,,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,1.231868,1.231868,1.231868,1.231868,1.231868,1.231868,1.231868,1.231868,0.628377,0.628377,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,3.732934,1.231868,1.231868,10,10,, +37026,0,0.10506,2,2,1,2,3,,3,5,Packard,St,1430704,3.083,3.188,0,2.251292,5,5,0.180103,0.180103,0.180103,0.180103,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.210706,0.307404,0.180103,0.180103,0.210706,0.307404,0.222754,0.215997,0.180103,0.180103,0.222754,0.215997,0.36772,0.268979,0.180103,0.180103,0.36772,0.268979,0.180103,0.180103,0.180103,0.180103,0.180103,0.180103,,,,,,,0.210706,0.307404,0.222754,0.215997,0.36772,0.268979,0.180103,0.180103,0.180103,0.180103,0.082123,0.111132,0.085737,0.08371,0.129227,0.099605,0.072942,0.072942,0.038572,0.038572,29.91664,20.505961,28.298553,29.183754,17.142418,23.43532,35,35,35,35,,,,,,,,,,,7946,7946,0.180103,0.180103,0.180103,0.180103,0.180103,0.180103,0.180103,0.180103,0.072942,0.072942,35,35,, +10610,0,0.351012,1,1,1,2,3,,3,5,Packard,St,1430704,2.501,2.852,0,7.521681,5,5,0.601734,0.601734,0.601734,0.601734,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.604321,0.649999,0.601734,0.601734,0.604321,0.649999,0.606729,0.605398,0.601734,0.601734,0.606729,0.605398,0.647111,0.615142,0.601734,0.601734,0.647111,0.615142,0.601734,0.601734,0.601734,0.601734,0.601734,0.601734,,,,,,,0.604321,0.649999,0.606729,0.605398,0.647111,0.615142,0.601734,0.601734,0.601734,0.601734,0.244479,0.258182,0.245201,0.244802,0.257315,0.247725,0.243702,0.243702,0.128871,0.128871,34.850181,32.401122,34.711874,34.788203,32.545748,34.237133,35,35,35,35,,,,,,,,,,,4162,4162,0.601734,0.601734,0.601734,0.601734,0.601734,0.601734,0.601734,0.601734,0.243702,0.243702,35,35,, +10770,0,0.265723,2,2,0,2,5,,3,5,Stone School,Rd,1436802,2.001,2.267,0,5.69406,8,4.5,0.637735,0.637735,0.637735,0.637735,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.64065,0.638133,0.637735,0.637735,0.64065,0.638133,0.640045,0.639849,0.637735,0.637735,0.640045,0.639849,0.64446,0.648518,0.637735,0.637735,0.64446,0.648518,0.637735,0.637735,0.637735,0.637735,0.637735,0.637735,,,,,,,0.64065,0.638133,0.640045,0.639849,0.64446,0.648518,0.637735,0.637735,0.637735,0.637735,0.240025,0.23927,0.239844,0.239785,0.241168,0.242386,0.239151,0.239151,0.12489,0.12489,24.88624,24.984413,24.909748,24.917384,24.739095,24.584305,25,25,25,25,,,,,,,,,,,4816,4816,0.637735,0.637735,0.637735,0.637735,0.637735,0.637735,0.637735,0.637735,0.239151,0.239151,25,25,, +26536,0,0.571423,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.244785,0.15,4,3.42854,3.42854,3.42854,3.42854,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,,,,,,,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,1.131418,1.131418,1.131418,1.131418,1.131418,1.131418,1.131418,1.131418,0.577138,0.577138,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,3.42854,1.131418,1.131418,10,10,, +26538,0,0.605516,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.975341,0.15,4,3.633095,3.633095,3.633095,3.633095,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.633095,3.633096,3.633095,3.633095,3.633095,3.633096,3.633095,3.633095,3.633095,3.633095,3.633095,3.633095,3.633096,3.633095,3.633095,3.633095,3.633096,3.633095,3.633095,3.633095,3.633095,3.633095,3.633095,3.633095,,,,,,,3.633095,3.633096,3.633095,3.633095,3.633096,3.633095,3.633095,3.633095,3.633095,3.633095,1.198921,1.198922,1.198921,1.198921,1.198922,1.198921,1.198921,1.198921,0.611571,0.611571,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,3.633095,3.633095,3.633095,3.633095,3.633095,3.633095,3.633095,3.633095,1.198921,1.198921,10,10,, +10776,0,0.361846,1,1,0,2,5,,3,5,Stone School,Rd,1436802,1.64,2.001,0,7.753844,8,4.5,0.868431,0.868431,0.868431,0.868431,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.410683,0.88318,0.868431,0.868431,1.410683,0.88318,0.984049,0.986082,0.868431,0.868431,0.984049,0.986082,1.187105,1.844289,0.868431,0.868431,1.187105,1.844289,0.868431,0.868431,0.868431,0.868431,0.868431,0.868431,,,,,,,1.410683,0.88318,0.984049,0.986082,1.187105,1.844289,0.868431,0.868431,0.868431,0.868431,0.488337,0.330086,0.360347,0.360957,0.421264,0.618419,0.325661,0.325661,0.170068,0.170068,15.390244,24.58249,22.06268,22.017193,18.28883,11.771886,25,25,25,25,,,,,,,,,,,2408,2408,0.868431,0.868431,0.868431,0.868431,0.868431,0.868431,0.868431,0.868431,0.325661,0.325661,25,25,, +21964,1,0.282675,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,2.226,2.508,0,6.057325,5,5,0.424013,,0.424013,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.458912,,0.424013,,0.458912,,0.467393,,0.424013,,0.467393,,0.566227,,0.424013,,0.566227,,0.424013,,0.424013,,0.424013,,,,,,,,0.458912,,0.467393,,0.566227,,0.424013,,0.424013,,0.188555,,0.191099,,0.22075,,0.178085,,0.094696,,36.958105,,36.287506,,29.953545,,40,,40,,,,,,,,,,,,6880,,0.424013,,0.424013,,0.424013,,0.424013,,0.178085,,40,,, +10611,0,0.131537,1,1,1,2,3,,3,5,Packard,St,1430704,2.37,2.501,0,2.818659,5,5,0.225493,0.225493,0.225493,0.225493,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.235042,0.364215,0.225493,0.225493,0.235042,0.364215,0.255114,0.251439,0.225493,0.225493,0.255114,0.251439,0.453819,0.315941,0.225493,0.225493,0.453819,0.315941,0.225493,0.225493,0.225493,0.225493,0.225493,0.225493,,,,,,,0.235042,0.364215,0.255114,0.251439,0.453819,0.315941,0.225493,0.225493,0.225493,0.225493,0.094189,0.132941,0.100211,0.099108,0.159822,0.118459,0.091325,0.091325,0.048293,0.048293,33.578026,21.669181,30.936114,31.388367,17.390739,24.980134,35,35,35,35,,,,,,,,,,,4162,4162,0.225493,0.225493,0.225493,0.225493,0.225493,0.225493,0.225493,0.225493,0.091325,0.091325,35,35,, +26535,0,0.304234,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.519306,0.15,4,1.825406,1.825406,1.825406,1.825406,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,,,,,,,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,0.602384,0.602384,0.602384,0.602384,0.602384,0.602384,0.602384,0.602384,0.307277,0.307277,9.999999,10,10,10,9.999999,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,1.825406,0.602384,0.602384,10,10,, +9951,0,0.624251,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,1.361,1.985,0,13.376812,5,5,1.070145,1.070145,1.070145,1.070145,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,1.082479,1.839193,1.070145,1.070145,1.082479,1.839193,1.186538,1.212536,1.070145,1.070145,1.186538,1.212536,1.819872,1.261829,1.070145,1.070145,1.819872,1.261829,1.070145,1.070145,1.070145,1.070145,1.070145,1.070145,,,,,,,1.082479,1.839193,1.186538,1.212536,1.819872,1.261829,1.070145,1.070145,1.070145,1.070145,0.437109,0.664123,0.468327,0.476126,0.658327,0.490914,0.433409,0.433409,0.229189,0.229189,34.601212,20.364951,31.56669,30.889878,20.58116,29.683171,35,35,35,35,,,,,,,,,,,7568,7568,1.070145,1.070145,1.070145,1.070145,1.070145,1.070145,1.070145,1.070145,0.433409,0.433409,35,35,, +10281,0,0.251119,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.923,4.174,0,5.381115,5,5,0.430489,0.430489,0.430489,0.430489,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.441961,0.432306,0.430489,0.430489,0.441961,0.432306,0.433518,0.432614,0.430489,0.430489,0.433518,0.432614,0.446811,0.448822,0.430489,0.430489,0.446811,0.448822,0.430489,0.430489,0.430489,0.430489,0.430489,0.430489,,,,,,,0.441961,0.432306,0.433518,0.432614,0.446811,0.448822,0.430489,0.430489,0.430489,0.430489,0.17779,0.174893,0.175257,0.174986,0.179245,0.179848,0.174348,0.174348,0.092196,0.092196,34.09155,34.852926,34.755501,34.828103,33.721485,33.570393,35,35,35,35,,,,,,,,,,,7946,7946,0.430489,0.430489,0.430489,0.430489,0.430489,0.430489,0.430489,0.430489,0.174348,0.174348,35,35,, +26555,0,0.207783,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.4525,0.15,4,1.2467,1.2467,1.2467,1.2467,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,,,,,,,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,0.411411,0.411411,0.411411,0.411411,0.411411,0.411411,0.411411,0.411411,0.209861,0.209861,10,9.999999,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,1.2467,0.411411,0.411411,10,10,, +26577,0,0.541179,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.596685,0.15,4,3.247072,3.247072,3.247072,3.247072,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,,,,,,,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,1.071534,1.071534,1.071534,1.071534,1.071534,1.071534,1.071534,1.071534,0.54659,0.54659,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,3.247072,1.071534,1.071534,10,10,, +30134,0,0.410741,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.801592,0.15,4,2.464446,2.464446,2.464446,2.464446,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,,,,,,,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,0.813267,0.813267,0.813267,0.813267,0.813267,0.813267,0.813267,0.813267,0.414848,0.414848,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,2.464446,0.813267,0.813267,10,10,, +9505,0,0.247135,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.676,3.923,0,5.295746,5,5,0.42366,0.42366,0.42366,0.42366,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.433483,0.424854,0.42366,0.42366,0.433483,0.424854,0.426056,0.425442,0.42366,0.42366,0.426056,0.425442,0.435134,0.438258,0.42366,0.42366,0.435134,0.438258,0.42366,0.42366,0.42366,0.42366,0.42366,0.42366,,,,,,,0.433483,0.424854,0.426056,0.425442,0.435134,0.438258,0.42366,0.42366,0.42366,0.42366,0.174529,0.17194,0.172301,0.172117,0.175024,0.175962,0.171582,0.171582,0.090734,0.090734,34.206836,34.901644,34.803174,34.853409,34.077093,33.83416,35,35,35,35,,,,,,,,,,,7946,7946,0.42366,0.42366,0.42366,0.42366,0.42366,0.42366,0.42366,0.42366,0.171582,0.171582,35,35,, +26579,0,0.103169,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.210759,0.15,4,0.619013,0.619013,0.619013,0.619013,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,,,,,,,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.204274,0.204274,0.204274,0.204274,0.204274,0.204274,0.204274,0.204274,0.1042,0.1042,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.619013,0.204274,0.204274,10,10,, +10188,0,0.153507,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,1.208,1.361,0,3.28944,5,5,0.263155,0.263155,0.263155,0.263155,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.266772,0.499209,0.263155,0.263155,0.266772,0.499209,0.291557,0.300788,0.263155,0.263155,0.291557,0.300788,0.503134,0.314569,0.263155,0.263155,0.503134,0.314569,0.263155,0.263155,0.263155,0.263155,0.263155,0.263155,,,,,,,0.266772,0.499209,0.291557,0.300788,0.503134,0.314569,0.263155,0.263155,0.263155,0.263155,0.107663,0.177394,0.115098,0.117868,0.178571,0.122002,0.106578,0.106578,0.056359,0.056359,34.525496,18.450046,31.590543,30.620996,18.306137,29.279523,35,35,35,35,,,,,,,,,,,7568,7568,0.263155,0.263155,0.263155,0.263155,0.263155,0.263155,0.263155,0.263155,0.106578,0.106578,35,35,, +26552,0,0.130343,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.793065,0.15,4,0.782058,0.782058,0.782058,0.782058,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,,,,,,,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.258079,0.258079,0.258079,0.258079,0.258079,0.258079,0.258079,0.258079,0.131646,0.131646,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.782058,0.258079,0.258079,10,10,, +10170,0,0.105449,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,1.985,2.091,0,2.259612,5,5,0.180769,0.180769,0.180769,0.180769,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.239596,0.574731,0.180769,0.180769,0.239596,0.574731,0.283626,0.283477,0.180769,0.180769,0.283626,0.283477,0.659379,0.366548,0.180769,0.180769,0.659379,0.366548,0.180769,0.180769,0.180769,0.180769,0.180769,0.180769,,,,,,,0.239596,0.574731,0.283626,0.283477,0.659379,0.366548,0.180769,0.180769,0.180769,0.180769,0.09086,0.1914,0.104069,0.104024,0.216795,0.128945,0.073211,0.073211,0.038715,0.038715,26.40658,11.008479,22.307231,22.319002,9.595257,17.260813,35,35,35,35,,,,,,,,,,,7568,7568,0.180769,0.180769,0.180769,0.180769,0.180769,0.180769,0.180769,0.180769,0.073211,0.073211,35,35,, +10078,0,0.289717,1,1,0,2,5,,3,5,Arlington,Blvd,1429509,0.632,0.921,0,6.208224,8,4.5,0.695321,0.695321,0.695321,0.695321,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.767593,0.695501,0.695321,0.695321,0.767593,0.695501,0.696545,0.69739,0.695321,0.695321,0.696545,0.69739,0.708637,0.833569,0.695321,0.695321,0.708637,0.833569,0.695321,0.695321,0.695321,0.695321,0.695321,0.695321,,,,,,,0.767593,0.695501,0.696545,0.69739,0.708637,0.833569,0.695321,0.695321,0.695321,0.695321,0.282427,0.260799,0.261113,0.261366,0.26474,0.30222,0.260745,0.260745,0.136167,0.136167,22.646147,24.993549,24.956066,24.925839,24.530241,20.853728,25,25,25,25,,,,,,,,,,,2408,2408,0.695321,0.695321,0.695321,0.695321,0.695321,0.695321,0.695321,0.695321,0.260745,0.260745,25,25,, +26576,0,0.395586,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.47685,0.15,4,2.373518,2.373518,2.373518,2.373518,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,,,,,,,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,0.783261,0.783261,0.783261,0.783261,0.783261,0.783261,0.783261,0.783261,0.399542,0.399542,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,2.373518,0.783261,0.783261,10,10,, +9890,0,0.312505,1,1,0,2,5,,3,5,Pittsfield,Blvd,1429604,0,0.312,0,6.696545,8,4.5,0.750013,0.750013,0.750013,0.750013,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.777966,0.912546,0.750013,0.750013,0.777966,0.912546,0.776539,0.793299,0.750013,0.750013,0.776539,0.793299,0.886494,0.85569,0.750013,0.750013,0.886494,0.85569,0.750013,0.750013,0.750013,0.750013,0.750013,0.750013,,,,,,,0.777966,0.912546,0.776539,0.793299,0.886494,0.85569,0.750013,0.750013,0.750013,0.750013,0.289641,0.330015,0.289213,0.294241,0.322199,0.312958,0.281255,0.281255,0.146878,0.146878,24.101739,20.547274,24.146015,23.635891,21.151093,21.912532,25,25,25,25,,,,,,,,,,,2408,2408,0.750013,0.750013,0.750013,0.750013,0.750013,0.750013,0.750013,0.750013,0.281255,0.281255,25,25,, +10606,0,0.392162,2,2,1,2,3,,3,5,Packard,St,1430704,3.61,4.002,0,8.403471,5,5,0.672278,0.672278,0.672278,0.672278,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.706187,1.107456,0.672278,0.672278,0.706187,1.107456,0.715399,0.707254,0.672278,0.672278,0.715399,0.707254,1.091651,0.788146,0.672278,0.672278,1.091651,0.788146,0.672278,0.672278,0.672278,0.672278,0.672278,0.672278,,,,,,,0.706187,1.107456,0.715399,0.707254,1.091651,0.788146,0.672278,0.672278,0.672278,0.672278,0.282445,0.402826,0.285209,0.282765,0.398085,0.307033,0.272272,0.272272,0.143979,0.143979,33.319372,21.246634,32.890332,33.269115,21.554246,29.854533,35,35,35,35,,,,,,,,,,,7946,7946,0.672278,0.672278,0.672278,0.672278,0.672278,0.672278,0.672278,0.672278,0.272272,0.272272,35,35,, +20286,0,0.310528,2,2,0,2,4,,3,5,Platt,Rd,4302160,11.177,11.487,0,6.654166,6,4.5,0.564596,0.564596,0.564596,0.564596,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.881778,0.593007,0.564596,0.564596,0.881778,0.593007,0.625935,0.60846,0.564596,0.564596,0.625935,0.60846,0.75565,0.908123,0.564596,0.564596,0.75565,0.908123,0.564596,0.564596,0.564596,0.564596,0.564596,0.564596,,,,,,,0.881778,0.593007,0.625935,0.60846,0.75565,0.908123,0.564596,0.564596,0.564596,0.564596,0.320429,0.233797,0.243675,0.238433,0.28259,0.328332,0.225274,0.225274,0.118847,0.118847,21.129644,31.418988,29.766154,30.62103,24.656481,20.516675,33,33,33,33,,,,,,,,,,,5160,5160,0.564596,0.564596,0.564596,0.564596,0.564596,0.564596,0.564596,0.564596,0.225274,0.225274,33,33,, +26573,0,0.229821,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.924746,0.15,4,1.378929,1.378929,1.378929,1.378929,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,,,,,,,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,0.455046,0.455046,0.455046,0.455046,0.455046,0.455046,0.455046,0.455046,0.23212,0.23212,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,1.378929,0.455046,0.455046,10,10,, +30136,0,0.46397,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.942205,0.15,4,2.783817,2.783817,2.783817,2.783817,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,,,,,,,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,0.91866,0.91866,0.91866,0.91866,0.91866,0.91866,0.91866,0.91866,0.468609,0.468609,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,2.783817,0.91866,0.91866,10,10,, +10607,0,0.251724,2,2,1,2,3,,3,5,Packard,St,1430704,3.358,3.61,0,5.394083,5,5,0.431527,0.431527,0.431527,0.431527,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.571708,0.951645,0.431527,0.431527,0.571708,0.951645,0.588999,0.565367,0.431527,0.431527,0.588999,0.565367,1.211746,0.844895,0.431527,0.431527,1.211746,0.844895,0.431527,0.431527,0.431527,0.431527,0.431527,0.431527,,,,,,,0.571708,0.951645,0.588999,0.565367,1.211746,0.844895,0.431527,0.431527,0.431527,0.431527,0.216823,0.330804,0.22201,0.21492,0.408834,0.298779,0.174768,0.174768,0.092419,0.092419,26.4181,15.870873,25.64253,26.7144,12.464194,17.876113,35,35,35,35,,,,,,,,,,,7946,7946,0.431527,0.431527,0.431527,0.431527,0.431527,0.431527,0.431527,0.431527,0.174768,0.174768,35,35,, +20475,0,0.350651,1,1,1,2,4,,3,5,Platt,Rd,4302160,10.826,11.177,0,7.513953,6,4.5,0.637548,0.637548,0.637548,0.637548,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.076544,0.723415,0.637548,0.637548,1.076544,0.723415,0.820357,0.754015,0.637548,0.637548,0.820357,0.754015,1.100069,1.059411,0.637548,0.637548,1.100069,1.059411,0.637548,0.637548,0.637548,0.637548,0.637548,0.637548,,,,,,,1.076544,0.723415,0.820357,0.754015,1.100069,1.059411,0.637548,0.637548,0.637548,0.637548,0.38608,0.280142,0.309224,0.289322,0.393138,0.38094,0.254381,0.254381,0.134204,0.134204,19.543164,29.082985,25.646232,27.902733,19.125225,19.859216,33,33,33,33,,,,,,,,,,,2838,2838,0.637548,0.637548,0.637548,0.637548,0.637548,0.637548,0.637548,0.637548,0.254381,0.254381,33,33,, +20711,0,0.122861,1,1,1,2,4,,3,5,Platt,Rd,4302160,10.703,10.826,0,2.632742,6,4.5,0.223384,0.223384,0.223384,0.223384,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.51201,0.270107,0.223384,0.223384,0.51201,0.270107,0.333884,0.296839,0.223384,0.223384,0.333884,0.296839,0.466372,0.557556,0.223384,0.223384,0.466372,0.557556,0.223384,0.223384,0.223384,0.223384,0.223384,0.223384,,,,,,,0.51201,0.270107,0.333884,0.296839,0.466372,0.557556,0.223384,0.223384,0.223384,0.223384,0.175718,0.103147,0.12228,0.111167,0.162027,0.189382,0.08913,0.08913,0.047022,0.047022,14.397515,27.291731,22.078564,24.833902,15.806418,13.221415,33,33,33,33,,,,,,,,,,,2838,2838,0.223384,0.223384,0.223384,0.223384,0.223384,0.223384,0.223384,0.223384,0.08913,0.08913,33,33,, +20089,0,0.166912,2,2,0,2,4,,3,5,Platt,Rd,4302160,11.487,11.654,0,3.576685,6,4.5,0.303476,0.303476,0.303476,0.303476,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.476127,0.318919,0.303476,0.303476,0.476127,0.318919,0.33654,0.327209,0.303476,0.303476,0.33654,0.327209,0.407196,0.490886,0.303476,0.303476,0.407196,0.490886,0.303476,0.303476,0.303476,0.303476,0.303476,0.303476,,,,,,,0.476127,0.318919,0.33654,0.327209,0.407196,0.490886,0.303476,0.303476,0.303476,0.303476,0.172882,0.12572,0.131006,0.128207,0.152203,0.17731,0.121087,0.121087,0.063882,0.063882,21.033687,31.402049,29.757888,30.606499,24.59436,20.401314,33,33,33,33,,,,,,,,,,,5160,5160,0.303476,0.303476,0.303476,0.303476,0.303476,0.303476,0.303476,0.303476,0.121087,0.121087,33,33,, +26572,0,0.328761,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.044884,0.15,4,1.972567,1.972567,1.972567,1.972567,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,,,,,,,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,0.650947,0.650947,0.650947,0.650947,0.650947,0.650947,0.650947,0.650947,0.332049,0.332049,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,1.972567,0.650947,0.650947,10,10,, +20779,0,0.037534,2,2,0,2,4,,3,5,Platt,Rd,4302160,11.654,11.692,0,0.804299,6,4.5,0.068244,0.068244,0.068244,0.068244,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.117578,0.072471,0.068244,0.068244,0.117578,0.072471,0.078087,0.075033,0.068244,0.068244,0.078087,0.075033,0.097718,0.119035,0.068244,0.068244,0.097718,0.119035,0.068244,0.068244,0.068244,0.068244,0.068244,0.068244,,,,,,,0.117578,0.072471,0.078087,0.075033,0.097718,0.119035,0.068244,0.068244,0.068244,0.068244,0.04203,0.028497,0.030182,0.029266,0.036071,0.042467,0.027229,0.027229,0.014365,0.014365,19.153507,31.075109,28.840205,30.013852,23.04632,18.919143,33,33,33,33,,,,,,,,,,,5160,5160,0.068244,0.068244,0.068244,0.068244,0.068244,0.068244,0.068244,0.068244,0.027229,0.027229,33,33,, +26484,0,0.079033,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.693562,0.15,4,0.474197,0.474197,0.474197,0.474197,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.474198,0.474197,0.474197,0.474197,0.474198,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,,,,,,,0.474198,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.156485,0.156485,0.156485,0.156485,0.156485,0.156485,0.156485,0.156485,0.079823,0.079823,9.999996,10,9.999999,9.999999,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.474197,0.156485,0.156485,10,10,, +9937,0,0.25404,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.541,2.795,0,5.443724,5,5,0.435498,0.435498,0.435498,0.435498,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.637648,1.533322,0.435498,0.435498,0.637648,1.533322,0.690956,0.674201,0.435498,0.435498,0.690956,0.674201,1.672263,0.97366,0.435498,0.435498,1.672263,0.97366,0.435498,0.435498,0.435498,0.435498,0.435498,0.435498,,,,,,,0.637648,1.533322,0.690956,0.674201,1.672263,0.97366,0.435498,0.435498,0.435498,0.435498,0.237022,0.505724,0.253014,0.247988,0.547406,0.337825,0.176377,0.176377,0.093269,0.093269,23.904143,9.940785,22.059912,22.608143,9.11485,15.654777,35,35,35,35,,,,,,,,,,,7568,7568,0.435498,0.435498,0.435498,0.435498,0.435498,0.435498,0.435498,0.435498,0.176377,0.176377,35,35,, +26498,0,0.548488,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.75331,0.15,4,3.290927,3.290927,3.290927,3.290927,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,,,,,,,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,1.086006,1.086006,1.086006,1.086006,1.086006,1.086006,1.086006,1.086006,0.553973,0.553973,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,3.290927,1.086006,1.086006,10,10,, +26500,0,0.533388,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.429733,0.15,4,3.200325,3.200325,3.200325,3.200325,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,,,,,,,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,1.056107,1.056107,1.056107,1.056107,1.056107,1.056107,1.056107,1.056107,0.538721,0.538721,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,3.200325,1.056107,1.056107,10,10,, +26553,0,0.572658,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.271243,0.15,4,3.435948,3.435948,3.435948,3.435948,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,,,,,,,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,1.133863,1.133863,1.133863,1.133863,1.133863,1.133863,1.133863,1.133863,0.578385,0.578385,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,3.435948,1.133863,1.133863,10,10,, +10168,0,0.142646,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.399,2.541,0,3.056693,5,5,0.244535,0.244535,0.244535,0.244535,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.357434,0.890667,0.244535,0.244535,0.357434,0.890667,0.386668,0.378428,0.244535,0.244535,0.386668,0.378428,0.985418,0.542746,0.244535,0.244535,0.985418,0.542746,0.244535,0.244535,0.244535,0.244535,0.244535,0.244535,,,,,,,0.357434,0.890667,0.386668,0.378428,0.985418,0.542746,0.244535,0.244535,0.244535,0.244535,0.132906,0.292876,0.141677,0.139205,0.321302,0.1885,0.099037,0.099037,0.052371,0.052371,23.944988,9.609363,22.134577,22.616553,8.685389,15.769328,35,35,35,35,,,,,,,,,,,7568,7568,0.244535,0.244535,0.244535,0.244535,0.244535,0.244535,0.244535,0.244535,0.099037,0.099037,35,35,, +26574,0,0.334401,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.165744,0.15,4,2.006408,2.006408,2.006408,2.006408,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,,,,,,,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,0.662115,0.662115,0.662115,0.662115,0.662115,0.662115,0.662115,0.662115,0.337745,0.337745,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,2.006408,0.662115,0.662115,10,10,, +9925,0,0.262158,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,0.389,0.651,0,5.617667,6,4.5,0.476651,0.476651,0.476651,0.476651,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.704889,0.506745,0.476651,0.476651,0.704889,0.506745,0.563419,0.524217,0.476651,0.476651,0.563419,0.524217,0.714914,0.867317,0.476651,0.476651,0.714914,0.867317,0.476651,0.476651,0.476651,0.476651,0.476651,0.476651,,,,,,,0.704889,0.506745,0.563419,0.524217,0.714914,0.867317,0.476651,0.476651,0.476651,0.476651,0.258655,0.199212,0.216214,0.204454,0.261663,0.307383,0.190184,0.190184,0.100335,0.100335,22.314828,31.040197,27.917865,30.00563,22.00191,18.135786,33,33,33,33,,,,,,,,,,,5160,5160,0.476651,0.476651,0.476651,0.476651,0.476651,0.476651,0.476651,0.476651,0.190184,0.190184,33,33,, +10153,0,0.207847,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.795,3.003,0,4.453864,5,5,0.356309,0.356309,0.356309,0.356309,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.519003,1.121672,0.356309,0.356309,0.519003,1.121672,0.604801,0.630126,0.356309,0.356309,0.604801,0.630126,1.192247,0.739427,0.356309,0.356309,1.192247,0.739427,0.356309,0.356309,0.356309,0.356309,0.356309,0.356309,,,,,,,0.519003,1.121672,0.604801,0.630126,1.192247,0.739427,0.356309,0.356309,0.356309,0.356309,0.193113,0.373914,0.218853,0.22645,0.395087,0.25924,0.144305,0.144305,0.07631,0.07631,24.028428,11.118059,20.619696,19.790991,10.459929,16.865523,35,35,35,35,,,,,,,,,,,7568,7568,0.356309,0.356309,0.356309,0.356309,0.356309,0.356309,0.356309,0.356309,0.144305,0.144305,35,35,, +26786,0,0.283238,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.069384,0.15,4,1.699428,1.699428,1.699428,1.699428,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,,,,,,,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,0.560811,0.560811,0.560811,0.560811,0.560811,0.560811,0.560811,0.560811,0.28607,0.28607,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,1.699428,0.560811,0.560811,10,10,, +9503,0,0.095256,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,0.275,0.37,0,2.04121,6,4.5,0.173194,0.173194,0.173194,0.173194,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.282711,0.185647,0.173194,0.173194,0.282711,0.185647,0.232381,0.221202,0.173194,0.173194,0.232381,0.221202,0.237044,0.293605,0.173194,0.173194,0.237044,0.293605,0.173194,0.173194,0.173194,0.173194,0.173194,0.173194,,,,,,,0.282711,0.185647,0.232381,0.221202,0.237044,0.293605,0.173194,0.173194,0.173194,0.173194,0.10196,0.07284,0.08686,0.083507,0.088259,0.105228,0.069104,0.069104,0.036457,0.036457,20.216351,30.786389,24.594921,25.837911,24.1111,19.466279,33,33,33,33,,,,,,,,,,,5418,5418,0.173194,0.173194,0.173194,0.173194,0.173194,0.173194,0.173194,0.173194,0.069104,0.069104,33,33,, +26290,0,0.138414,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.966014,0.15,4,0.830484,0.830484,0.830484,0.830484,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,,,,,,,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.27406,0.27406,0.27406,0.27406,0.27406,0.27406,0.27406,0.27406,0.139798,0.139798,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.830484,0.27406,0.27406,10,10,, +26490,0,0.049429,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.059195,0.15,4,0.296575,0.296575,0.296575,0.296575,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,,,,,,,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.09787,0.09787,0.09787,0.09787,0.09787,0.09787,0.09787,0.09787,0.049923,0.049923,10,10,9.999996,9.999995,9.999999,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.296575,0.09787,0.09787,10,10,, +10279,0,0.018385,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,0.37,0.389,0,0.393964,6,4.5,0.033427,0.033427,0.033427,0.033427,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.054565,0.035831,0.033427,0.033427,0.054565,0.035831,0.044851,0.042693,0.033427,0.033427,0.044851,0.042693,0.045751,0.056667,0.033427,0.033427,0.045751,0.056667,0.033427,0.033427,0.033427,0.033427,0.033427,0.033427,,,,,,,0.054565,0.035831,0.044851,0.042693,0.045751,0.056667,0.033427,0.033427,0.033427,0.033427,0.019679,0.014059,0.016765,0.016117,0.017035,0.020309,0.013337,0.013337,0.007036,0.007036,20.216351,30.786389,24.594921,25.837911,24.1111,19.466279,33,33,33,33,,,,,,,,,,,5418,5418,0.033427,0.033427,0.033427,0.033427,0.033427,0.033427,0.033427,0.033427,0.013337,0.013337,33,33,, +9930,0,0.066709,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.003,3.07,0,1.429475,5,5,0.114358,0.114358,0.114358,0.114358,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.1665,0.338252,0.114358,0.114358,0.1665,0.338252,0.191137,0.196433,0.114358,0.114358,0.191137,0.196433,0.373102,0.231697,0.114358,0.114358,0.373102,0.231697,0.114358,0.114358,0.114358,0.114358,0.114358,0.114358,,,,,,,0.1665,0.338252,0.191137,0.196433,0.373102,0.231697,0.114358,0.114358,0.114358,0.114358,0.061957,0.113483,0.069349,0.070937,0.123938,0.081517,0.046315,0.046315,0.024492,0.024492,24.03928,11.832986,20.940586,20.376112,10.727719,17.274877,35,35,35,35,,,,,,,,,,,7568,7568,0.114358,0.114358,0.114358,0.114358,0.114358,0.114358,0.114358,0.114358,0.046315,0.046315,35,35,, +9228,0,0.022444,1,1,0,2,5,,3,5,Pittsfield,Blvd,1429604,0.779,0.802,0,0.480937,8,4.5,0.053865,0.053865,0.053865,0.053865,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.067371,0.074189,0.053865,0.053865,0.067371,0.074189,0.055629,0.056075,0.053865,0.053865,0.055629,0.056075,0.089931,0.076723,0.053865,0.053865,0.089931,0.076723,0.053865,0.053865,0.053865,0.053865,0.053865,0.053865,,,,,,,0.067371,0.074189,0.055629,0.056075,0.089931,0.076723,0.053865,0.053865,0.053865,0.053865,0.024251,0.026296,0.020729,0.020862,0.031019,0.027057,0.020199,0.020199,0.010549,0.010549,19.988289,18.151312,24.207024,24.014566,14.974027,17.551819,25,25,25,25,,,,,,,,,,,2408,2408,0.053865,0.053865,0.053865,0.053865,0.053865,0.053865,0.053865,0.053865,0.020199,0.020199,25,25,, +9595,0,0.252055,1,1,0,2,4,,3,5,Geddes,Ave,1429306,0.558,0.81,0,5.401188,6,4.5,0.458283,0.458283,0.458283,0.458283,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.473386,1.201365,0.458283,0.458283,0.473386,1.201365,0.544611,0.570051,0.458283,0.458283,0.544611,0.570051,1.168855,0.557491,0.458283,0.458283,1.168855,0.557491,0.458283,0.458283,0.458283,0.458283,0.458283,0.458283,,,,,,,0.473386,1.201365,0.544611,0.570051,1.168855,0.557491,0.458283,0.458283,0.458283,0.458283,0.187386,0.405779,0.208753,0.216385,0.396027,0.212617,0.182855,0.182855,0.096468,0.096468,31.947159,12.588456,27.769021,26.529792,12.938577,27.12747,33,33,33,33,,,,,,,,,,,2580,2580,0.458283,0.458283,0.458283,0.458283,0.458283,0.458283,0.458283,0.458283,0.182855,0.182855,33,33,, +9654,-1,0.165231,0,2,0,1,2,,3,5,W M 14,,1427103,3.668,3.834,0,,0.58,7,,0.152521,,0.152521,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.301732,,0.152521,,0.301732,,0.159005,,0.152521,,0.159005,,0.20915,,0.152521,,0.20915,,0.152521,,0.152521,,0.152521,,,,,,,,0.301732,,0.159005,,0.20915,,0.152521,,0.152521,,0.120261,,0.077443,,0.092487,,0.075498,,0.041054,,32.856463,,62.349196,,47.400629,,65,,65,,,,,,,,,,,,15136,,0.152521,,0.152521,,0.152521,,0.152521,,0.075498,,65,, +9881,0,0.40567,1,1,0,2,5,,3,5,Hill,St,1429402,1.233,1.639,0,8.692927,8,4.5,0.973608,0.973608,0.973608,0.973608,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.974038,1.004724,0.973608,0.973608,0.974038,1.004724,0.976023,0.975856,0.973608,0.973608,0.976023,0.975856,1.014036,0.980508,0.973608,0.973608,1.014036,0.980508,0.973608,0.973608,0.973608,0.973608,0.973608,0.973608,,,,,,,0.974038,1.004724,0.976023,0.975856,1.014036,0.980508,0.973608,0.973608,0.973608,0.973608,0.365232,0.374438,0.365828,0.365777,0.377231,0.367173,0.365103,0.365103,0.190665,0.190665,24.988959,24.225741,24.938126,24.942413,24.003296,24.824062,25,25,25,25,,,,,,,,,,,2408,2408,0.973608,0.973608,0.973608,0.973608,0.973608,0.973608,0.973608,0.973608,0.365103,0.365103,25,25,, +9882,1,0.295532,2,0,0,1,2,,3,5,E M 14,,1426704,3.658,3.953,0,,0.58,7,0.272798,,0.272798,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.324451,,0.272798,,0.324451,,0.286114,,0.272798,,0.286114,,0.655296,,0.272798,,0.655296,,0.272798,,0.272798,,0.272798,,,,,,,,0.324451,,0.286114,,0.655296,,0.272798,,0.272798,,0.150531,,0.13903,,0.249784,,0.135035,,0.073428,,54.652082,,61.975024,,27.059387,,65,,65,,,,,,,,,,,,15136,,0.272798,,0.272798,,0.272798,,0.272798,,0.135035,,65,,, +37419,0,0.150885,1,1,1,2,5,,3,5,Nixon,Rd,1443105,0,0.151,0,3.233251,8,4.5,0.362124,0.362124,0.362124,0.362124,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.363132,0.472856,0.362124,0.362124,0.363132,0.472856,0.368004,0.374328,0.362124,0.362124,0.368004,0.374328,0.417498,0.380406,0.362124,0.362124,0.417498,0.380406,0.362124,0.362124,0.362124,0.362124,0.362124,0.362124,,,,,,,0.363132,0.472856,0.368004,0.374328,0.417498,0.380406,0.362124,0.362124,0.362124,0.362124,0.136099,0.169016,0.13756,0.139458,0.152409,0.141281,0.135797,0.135797,0.070916,0.070916,24.930606,19.145576,24.600568,24.184961,21.684169,23.798509,25,25,25,25,,,,,,,,,,,2649,2649,0.362124,0.362124,0.362124,0.362124,0.362124,0.362124,0.362124,0.362124,0.135797,0.135797,25,25,, +10446,1,2.042012,2,0,0,1,2,,3,5,S US 23,,1431408,0.441,2.483,0,,0.58,7,1.884934,,1.884934,,65,,44000,,9988,,22000,,14194,,15136,,15118,,2.718246,,1.884934,,2.718246,,1.903195,,1.884934,,1.903195,,2.055985,,1.884934,,2.055985,,1.884934,,1.884934,,1.884934,,,,,,,,2.718246,,1.903195,,2.055985,,1.884934,,1.884934,,1.183036,,0.938521,,0.984358,,0.933042,,0.507361,,45.073449,,64.376339,,59.592219,,65,,65,,,,,,,,,,,,15136,,1.884934,,1.884934,,1.884934,,1.884934,,0.933042,,65,,, +10534,0,0.139211,1,1,0,1,2,ROF,3,5,Whitmore Lake/E M 14,RAMP,1431001,0,0.139,0,,2.24,5,0.238648,0.238648,0.238648,0.238648,35,35,14750,14750,3348,3348,7375,7375,4758,4758,5074,5074,5068,5068,0.238683,0.240807,0.238648,0.238648,0.238683,0.240807,0.238672,0.24134,0.238648,0.238648,0.238672,0.24134,0.23889,0.249042,0.238648,0.238648,0.23889,0.249042,0.238648,0.238648,0.238648,0.238648,0.238648,0.238648,,,,,,,0.238683,0.240807,0.238672,0.24134,0.23889,0.249042,0.238648,0.238648,0.238648,0.238648,0.096663,0.0973,0.09666,0.09746,0.096725,0.09977,0.096652,0.096652,0.05111,0.05111,34.994881,34.686125,34.996438,34.609509,34.964535,33.539248,35,35,35,35,,,,,,,,,,,5074,5074,0.238648,0.238648,0.238648,0.238648,0.238648,0.238648,0.238648,0.238648,0.096652,0.096652,35,35,, +10540,0,0.116693,1,1,0,2,4,,4,5,Barton Shore,Dr,1430910,0,0.117,0,2.500554,4.5,4.5,0.184251,0.184251,0.184251,0.184251,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.214383,0.23035,0.184251,0.184251,0.214383,0.23035,0.185016,0.225985,0.184251,0.184251,0.185016,0.225985,0.185095,0.363667,0.184251,0.184251,0.185095,0.363667,0.184251,0.184251,0.184251,0.184251,0.184251,0.184251,,,,,,,0.214383,0.23035,0.185016,0.225985,0.185095,0.363667,0.184251,0.184251,0.184251,0.184251,0.085319,0.09011,0.076509,0.0888,0.076533,0.130105,0.07628,0.07628,0.040474,0.040474,32.659122,30.39532,37.843027,30.98233,37.826722,19.252621,38,38,38,38,,,,,,,,,,,3096,3096,0.184251,0.184251,0.184251,0.184251,0.184251,0.184251,0.184251,0.184251,0.07628,0.07628,38,38,, +10808,0,0.299583,1,1,0,2,4,,3,5,Pontiac,Trl,1451302,0.79,1.089,0,6.41964,6,4.5,0.544697,0.544697,0.544697,0.544697,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.572289,1.147014,0.544697,0.544697,0.572289,1.147014,0.61765,0.667421,0.544697,0.544697,0.61765,0.667421,1.02077,0.740675,0.544697,0.544697,1.02077,0.740675,0.544697,0.544697,0.544697,0.544697,0.544697,0.544697,,,,,,,0.572289,1.147014,0.61765,0.667421,1.02077,0.740675,0.544697,0.544697,0.544697,0.544697,0.225612,0.398029,0.23922,0.254151,0.360156,0.276127,0.217334,0.217334,0.114659,0.114659,31.408934,15.67112,29.102244,26.932014,17.609249,24.268397,33,33,33,33,,,,,,,,,,,2580,2580,0.544697,0.544697,0.544697,0.544697,0.544697,0.544697,0.544697,0.544697,0.217334,0.217334,33,33,, +37030,1,0.053722,2,0,0,1,2,,3,5,E M 14,,1426704,3.953,4.007,0,,0.58,7,0.049589,,0.049589,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.053114,,0.049589,,0.053114,,0.05027,,0.049589,,0.05027,,0.074911,,0.049589,,0.074911,,0.049589,,0.049589,,0.049589,,,,,,,,0.053114,,0.05027,,0.074911,,0.049589,,0.049589,,0.025604,,0.024751,,0.032143,,0.024547,,0.013348,,60.686939,,64.119486,,43.028449,,65,,65,,,,,,,,,,,,15136,,0.049589,,0.049589,,0.049589,,0.049589,,0.024547,,65,,, +37420,-1,0.027944,0,1,0,2,5,,3,5,Nixon,Rd,4606150,0,0.028,0,0.598796,8,4.5,,0.067065,,0.067065,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.098564,,0.067065,,0.098564,,0.070536,,0.067065,,0.070536,,0.072266,,0.067065,,0.072266,,0.067065,,0.067065,,0.067065,,,,,,,,0.098564,,0.070536,,0.072266,,0.067065,,0.067065,,0.034599,,0.026191,,0.02671,,0.025149,,0.013134,,17.010598,,23.769935,,23.200727,,25,,25,,,,,,,,,,,,2408,,0.067065,,0.067065,,0.067065,,0.067065,,0.025149,,25,, +11212,0,0.14463,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.438,2.582,0,3.09921,5,5,0.247937,0.247937,0.247937,0.247937,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.271241,0.442837,0.247937,0.247937,0.271241,0.442837,0.26313,0.269258,0.247937,0.247937,0.26313,0.269258,0.417964,0.310512,0.247937,0.247937,0.417964,0.310512,0.247937,0.247937,0.247937,0.247937,0.247937,0.247937,,,,,,,0.271241,0.442837,0.26313,0.269258,0.417964,0.310512,0.247937,0.247937,0.247937,0.247937,0.107406,0.158885,0.104972,0.106811,0.151423,0.119187,0.100414,0.100414,0.0531,0.0531,31.992908,19.59589,32.979156,32.22858,20.762031,27.946694,35,35,35,35,,,,,,,,,,,7946,7946,0.247937,0.247937,0.247937,0.247937,0.247937,0.247937,0.247937,0.247937,0.100414,0.100414,35,35,, +11221,0,0.58203,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,0.608,1.19,0,12.472074,5,5,0.997766,0.997766,0.997766,0.997766,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.341953,1.330236,0.997766,0.997766,1.341953,1.330236,1.199808,1.192671,0.997766,0.997766,1.199808,1.192671,1.57368,1.609256,0.997766,0.997766,1.57368,1.609256,0.997766,0.997766,0.997766,0.997766,0.997766,0.997766,,,,,,,1.341953,1.330236,1.199808,1.192671,1.57368,1.609256,0.997766,0.997766,0.997766,0.997766,0.507351,0.503836,0.464708,0.462567,0.576869,0.587542,0.404095,0.404095,0.213688,0.213688,26.023118,26.252334,29.106159,29.280323,22.191181,21.700588,35,35,35,35,,,,,,,,,,,7946,7946,0.997766,0.997766,0.997766,0.997766,0.997766,0.997766,0.997766,0.997766,0.404095,0.404095,35,35,, +11396,0,0.172554,1,1,0,2,7,,3,5,Traver,Rd,1443305,0.896,1.068,0,3.697595,7,4.5,0.517663,0.517663,0.517663,0.517663,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.517723,0.517665,0.517663,0.517663,0.517723,0.517665,0.517663,0.517663,0.517663,0.517663,0.517663,0.517663,0.519119,0.51794,0.517663,0.517663,0.519119,0.51794,0.517663,0.517663,0.517663,0.517663,0.517663,0.517663,,,,,,,0.517723,0.517665,0.517663,0.517663,0.519119,0.51794,0.517663,0.517663,0.517663,0.517663,0.186377,0.186359,0.186359,0.186359,0.186795,0.186442,0.186359,0.186359,0.09663,0.09663,19.997681,19.999934,20,20,19.943929,19.989318,20,20,20,20,,,,,,,,,,,1892,1892,0.517663,0.517663,0.517663,0.517663,0.517663,0.517663,0.517663,0.517663,0.186359,0.186359,20,20,, +11524,0,0.292911,1,1,0,2,5,,3,5,Dhu Varren,Rd,1431502,0.654,0.947,0,6.276656,8,4.5,0.702986,0.702986,0.702986,0.702986,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.708138,0.70379,0.702986,0.702986,0.708138,0.70379,0.703469,0.703277,0.702986,0.702986,0.703469,0.703277,0.710034,0.708883,0.702986,0.702986,0.710034,0.708883,0.702986,0.702986,0.702986,0.702986,0.702986,0.702986,,,,,,,0.708138,0.70379,0.703469,0.703277,0.710034,0.708883,0.702986,0.702986,0.702986,0.702986,0.265165,0.263861,0.263765,0.263707,0.265734,0.265389,0.26362,0.26362,0.137668,0.137668,24.818086,24.971422,24.982809,24.989649,24.751829,24.792004,25,25,25,25,,,,,,,,,,,2408,2408,0.702986,0.702986,0.702986,0.702986,0.702986,0.702986,0.702986,0.702986,0.26362,0.26362,25,25,, +11577,-1,1.93779,0,2,0,1,2,,5,5,N US 23,,1431410,0.519,2.456,0,,1.02,7,,1.660963,,1.660963,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.775622,,1.660963,,1.775622,,1.677268,,1.660963,,1.677268,,2.349507,,1.660963,,2.349507,,1.660963,,1.660963,,1.660963,,,,,,,,1.775622,,1.677268,,2.349507,,1.660963,,1.660963,,0.881489,,0.851983,,1.053654,,0.847091,,0.462301,,65.479821,,69.319498,,49.485871,,70,,70,,,,,,,,,,,,15136,,1.660963,,1.660963,,1.660963,,1.660963,,0.847091,,70,, +21704,0,0.09527,1,1,0,2,7,,3,5,Broadway,St,4600033,0.928,1.023,0,2.041504,7,4.5,0.28581,0.28581,0.28581,0.28581,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.293992,0.424223,0.28581,0.28581,0.293992,0.424223,0.289277,0.294159,0.28581,0.28581,0.289277,0.294159,0.46429,0.338371,0.28581,0.28581,0.46429,0.338371,0.28581,0.28581,0.28581,0.28581,0.28581,0.28581,,,,,,,0.293992,0.424223,0.289277,0.294159,0.46429,0.338371,0.28581,0.28581,0.28581,0.28581,0.105346,0.144416,0.103932,0.105396,0.156436,0.11866,0.102892,0.102892,0.053351,0.053351,19.443394,13.474531,19.760357,19.43236,12.311718,16.893344,20,20,20,20,,,,,,,,,,,1892,1892,0.28581,0.28581,0.28581,0.28581,0.28581,0.28581,0.28581,0.28581,0.102892,0.102892,20,20,, +21750,0,0.501517,2,2,0,2,5,,3,5,Green,Rd,4603133,0.674,1.175,0,10.746792,8,4.5,1.203641,1.203641,1.203641,1.203641,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,1.203757,1.20876,1.203641,1.203641,1.203757,1.20876,1.20367,1.20367,1.203641,1.203641,1.20367,1.20367,1.206654,1.203811,1.203641,1.203641,1.206654,1.203811,1.203641,1.203641,1.203641,1.203641,1.203641,1.203641,,,,,,,1.203757,1.20876,1.20367,1.20367,1.206654,1.203811,1.203641,1.203641,1.203641,1.203641,0.4514,0.452901,0.451374,0.451374,0.452269,0.451416,0.451365,0.451365,0.235713,0.235713,24.997579,24.894126,24.999382,24.999388,24.93756,24.996469,25,25,25,25,,,,,,,,,,,4816,4816,1.203641,1.203641,1.203641,1.203641,1.203641,1.203641,1.203641,1.203641,0.451365,0.451365,25,25,, +26378,0,0.92298,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.778138,0.15,4,3.691919,3.691919,3.691919,3.691919,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,,,,,,,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,1.273712,1.273712,1.273712,1.273712,1.273712,1.273712,1.273712,1.273712,0.655316,0.655316,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,3.691919,1.273712,1.273712,15,15,, +26465,0,0.411476,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.817348,0.15,4,2.468858,2.468858,2.468858,2.468858,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,,,,,,,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,0.814723,0.814723,0.814723,0.814723,0.814723,0.814723,0.814723,0.814723,0.415591,0.415591,9.999999,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,2.468858,0.814723,0.814723,10,10,, +26587,0,0.240749,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.15891,0.15,4,1.444495,1.444495,1.444495,1.444495,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,,,,,,,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,0.476683,0.476683,0.476683,0.476683,0.476683,0.476683,0.476683,0.476683,0.243157,0.243157,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,1.444495,0.476683,0.476683,10,10,, +26601,0,0.2754,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.901418,0.15,4,1.652397,1.652397,1.652397,1.652397,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,,,,,,,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,0.545291,0.545291,0.545291,0.545291,0.545291,0.545291,0.545291,0.545291,0.278154,0.278154,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,1.652397,0.545291,0.545291,10,10,, +26605,0,0.458699,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.82926,0.15,4,2.752193,2.752193,2.752193,2.752193,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,,,,,,,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,0.908224,0.908224,0.908224,0.908224,0.908224,0.908224,0.908224,0.908224,0.463286,0.463286,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,2.752193,0.908224,0.908224,10,10,, +26607,0,0.407771,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.737952,0.15,4,2.446626,2.446626,2.446626,2.446626,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.446627,2.446627,2.446626,2.446626,2.446627,2.446627,2.446627,2.446627,2.446626,2.446626,2.446627,2.446627,2.446627,2.446627,2.446626,2.446626,2.446627,2.446627,2.446626,2.446626,2.446626,2.446626,2.446626,2.446626,,,,,,,2.446627,2.446627,2.446627,2.446627,2.446627,2.446627,2.446626,2.446626,2.446626,2.446626,0.807387,0.807387,0.807387,0.807387,0.807387,0.807387,0.807387,0.807387,0.411849,0.411849,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.446626,2.446626,2.446626,2.446626,2.446626,2.446626,2.446626,2.446626,0.807387,0.807387,10,10,, +26609,0,0.334486,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.167548,0.15,4,2.006914,2.006914,2.006914,2.006914,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,,,,,,,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,0.662281,0.662282,0.662281,0.662282,0.662282,0.662282,0.662281,0.662281,0.33783,0.33783,10,9.999995,10,9.999999,9.999996,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,2.006914,0.662281,0.662281,10,10,, +26771,0,0.192308,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.120881,0.15,4,1.153847,1.153847,1.153847,1.153847,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,,,,,,,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,0.380769,0.380769,0.380769,0.380769,0.380769,0.380769,0.380769,0.380769,0.194231,0.194231,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,1.153847,0.380769,0.380769,10,10,, +30129,0,0.5934,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.715704,0.15,4,3.560397,3.560397,3.560397,3.560397,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,,,,,,,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,1.174931,1.174931,1.174931,1.174931,1.174931,1.174931,1.174931,1.174931,0.599334,0.599334,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,3.560397,1.174931,1.174931,10,10,, +9561,0,0.062949,1,1,0,2,5,,2,5,Hill,St,1429402,0.533,0.596,0,1.348899,8.5,4.5,0.188846,0.188846,0.188846,0.188846,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.431379,0.195648,0.188846,0.188846,0.431379,0.195648,0.251622,0.270654,0.188846,0.188846,0.251622,0.270654,0.241735,0.453475,0.188846,0.188846,0.241735,0.453475,0.188846,0.188846,0.188846,0.188846,0.188846,0.188846,,,,,,,0.431379,0.195648,0.251622,0.270654,0.241735,0.453475,0.188846,0.188846,0.188846,0.188846,0.140745,0.070025,0.086817,0.092527,0.083851,0.147373,0.067985,0.067985,0.035251,0.035251,8.755443,19.304708,15.0103,13.954797,15.62423,8.328843,20,20,20,20,,,,,,,,,,,2064,2064,0.188846,0.188846,0.188846,0.188846,0.188846,0.188846,0.188846,0.188846,0.067985,0.067985,20,20,, +9567,0,0.119227,1,1,0,2,7,,2,5,5th,Ave,1430303,0.987,1.106,0,2.554855,8.5,4.5,0.35768,0.35768,0.35768,0.35768,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.357682,0.360399,0.35768,0.35768,0.357682,0.360399,0.357681,0.362315,0.35768,0.35768,0.357681,0.362315,0.357697,0.390313,0.35768,0.35768,0.357697,0.390313,0.35768,0.35768,0.35768,0.35768,0.35768,0.35768,,,,,,,0.357682,0.360399,0.357681,0.362315,0.357697,0.390313,0.35768,0.35768,0.35768,0.35768,0.128766,0.12958,0.128765,0.130155,0.12877,0.138555,0.128765,0.128765,0.066767,0.066767,19.999845,19.849097,19.999939,19.744122,19.999022,18.327823,20,20,20,20,,,,,,,,,,,1720,1720,0.35768,0.35768,0.35768,0.35768,0.35768,0.35768,0.35768,0.35768,0.128765,0.128765,20,20,, +9667,0,0.126204,2,2,0,2,5,,2,5,University,Ave,1429304,0.064,0.19,0,2.704381,8.5,4.5,0.378613,0.378613,0.378613,0.378613,20,20,12000,12000,2724,2724,6000,6000,3871,3871,4128,4128,4123,4123,0.459695,0.386858,0.378613,0.378613,0.459695,0.386858,0.408492,0.395405,0.378613,0.378613,0.408492,0.395405,0.438891,0.482841,0.378613,0.378613,0.438891,0.482841,0.378613,0.378613,0.378613,0.378613,0.378613,0.378613,,,,,,,0.459695,0.386858,0.408492,0.395405,0.438891,0.482841,0.378613,0.378613,0.378613,0.378613,0.160625,0.138774,0.145264,0.141338,0.154384,0.167569,0.136301,0.136301,0.070674,0.070674,16.472365,19.573742,18.537124,19.150644,17.253196,15.682723,20,20,20,20,,,,,,,,,,,4128,4128,0.378613,0.378613,0.378613,0.378613,0.378613,0.378613,0.378613,0.378613,0.136301,0.136301,20,20,, +9759,0,0.186929,1,1,0,2,7,,2,5,4th,Ave,1430302,0.782,0.969,0,4.005626,8.5,4.5,0.560788,0.560788,0.560788,0.560788,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.560795,0.622672,0.560788,0.560788,0.560795,0.622672,0.561185,0.561034,0.560788,0.560788,0.561185,0.561034,0.649459,0.560925,0.560788,0.560788,0.649459,0.560925,0.560788,0.560788,0.560788,0.560788,0.560788,0.560788,,,,,,,0.560795,0.622672,0.561185,0.561034,0.649459,0.560925,0.560788,0.560788,0.560788,0.560788,0.201886,0.220449,0.202003,0.201957,0.228485,0.201925,0.201884,0.201884,0.10468,0.10468,19.999723,18.012286,19.985854,19.99123,17.269372,19.995105,20,20,20,20,,,,,,,,,,,1720,1720,0.560788,0.560788,0.560788,0.560788,0.560788,0.560788,0.560788,0.560788,0.201884,0.201884,20,20,, +9805,0,0.126462,1,1,0,2,7,,2,5,University,Ave,1429310,0,0.127,0,2.709903,8.5,4.5,0.379386,0.379386,0.379386,0.379386,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.428702,0.411734,0.379386,0.379386,0.428702,0.411734,0.411001,0.40531,0.379386,0.379386,0.411001,0.40531,0.429318,0.403384,0.379386,0.379386,0.429318,0.403384,0.379386,0.379386,0.379386,0.379386,0.379386,0.379386,,,,,,,0.428702,0.411734,0.411001,0.40531,0.429318,0.403384,0.379386,0.379386,0.379386,0.379386,0.151374,0.146283,0.146063,0.144356,0.151559,0.143778,0.136579,0.136579,0.070819,0.070819,17.699298,18.428708,18.461593,18.720784,17.673922,18.81019,20,20,20,20,,,,,,,,,,,1720,1720,0.379386,0.379386,0.379386,0.379386,0.379386,0.379386,0.379386,0.379386,0.136579,0.136579,20,20,, +10537,0,0.209358,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.415,0.624,0,4.486249,6,4.5,0.380651,0.380651,0.380651,0.380651,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.161336,0.714555,0.380651,0.380651,2.161336,0.714555,0.90213,0.762022,0.380651,0.380651,0.90213,0.762022,1.310607,2.064141,0.380651,0.380651,1.310607,2.064141,0.380651,0.380651,0.380651,0.380651,0.380651,0.380651,,,,,,,2.161336,0.714555,0.90213,0.762022,1.310607,2.064141,0.380651,0.380651,0.380651,0.380651,0.686085,0.252051,0.308323,0.266291,0.430867,0.656927,0.15188,0.15188,0.080127,0.080127,5.811913,17.57947,13.924264,16.484422,9.584487,6.085581,33,33,33,33,,,,,,,,,,,2580,2580,0.380651,0.380651,0.380651,0.380651,0.380651,0.380651,0.380651,0.380651,0.15188,0.15188,33,33,, +10575,0,0.261815,1,1,0,2,4,,2,5,Fuller,St,1430804,0.376,0.637,0,5.610311,8,4.5,0.561031,0.561031,0.561031,0.561031,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.231154,0.585139,0.561031,0.561031,1.231154,0.585139,0.764116,0.792744,0.561031,0.561031,0.764116,0.792744,0.843665,1.983679,0.561031,0.561031,0.843665,1.983679,0.561031,0.561031,0.561031,0.561031,0.561031,0.561031,,,,,,,1.231154,0.585139,0.764116,0.792744,0.843665,1.983679,0.561031,0.561031,0.561031,0.561031,0.416473,0.222668,0.276361,0.28495,0.300226,0.64223,0.215436,0.215436,0.112954,0.112954,12.759473,26.846415,20.558243,19.815829,18.619806,7.91906,28,28,28,28,,,,,,,,,,,2408,2408,0.561031,0.561031,0.561031,0.561031,0.561031,0.561031,0.561031,0.561031,0.215436,0.215436,28,28,, +10576,0,0.222141,1,1,0,2,4,,2,5,Depot,St,1430804,0.154,0.376,0,4.760154,8,4.5,0.476015,0.476015,0.476015,0.476015,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,2.24175,0.562512,0.476015,0.476015,2.24175,0.562512,0.975923,0.861237,0.476015,0.476015,0.975923,0.861237,0.902568,2.382934,0.476015,0.476015,0.902568,2.382934,0.476015,0.476015,0.476015,0.476015,0.476015,0.476015,,,,,,,2.24175,0.562512,0.975923,0.861237,0.902568,2.382934,0.476015,0.476015,0.476015,0.476015,0.71251,0.208739,0.332762,0.298356,0.310756,0.754865,0.18279,0.18279,0.095838,0.095838,5.945548,23.694472,13.657264,15.475913,14.767239,5.593287,28,28,28,28,,,,,,,,,,,2408,2408,0.476015,0.476015,0.476015,0.476015,0.476015,0.476015,0.476015,0.476015,0.18279,0.18279,28,28,, +10582,0,0.077829,2,2,0,2,3,,2,5,Broadway,St,1430801,0.537,0.615,0,1.667757,6,5,0.155657,0.155657,0.155657,0.155657,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.458107,0.190822,0.155657,0.155657,0.458107,0.190822,0.365376,0.195373,0.155657,0.155657,0.365376,0.195373,0.839666,0.239291,0.155657,0.155657,0.839666,0.239291,0.155657,0.155657,0.155657,0.155657,0.155657,0.155657,,,,,,,0.458107,0.190822,0.365376,0.195373,0.839666,0.239291,0.155657,0.155657,0.155657,0.155657,0.151441,0.071256,0.123622,0.072621,0.265909,0.085796,0.060706,0.060706,0.03191,0.03191,10.193513,24.471635,12.780583,23.901569,5.561404,19.514808,30,30,30,30,,,,,,,,,,,5504,5504,0.155657,0.155657,0.155657,0.155657,0.155657,0.155657,0.155657,0.155657,0.060706,0.060706,30,30,, +10583,0,0.215172,2,2,0,2,3,,2,5,Broadway,St,1430801,0.322,0.537,0,4.610826,6,5,0.430344,0.430344,0.430344,0.430344,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.760632,1.183623,0.430344,0.430344,0.760632,1.183623,0.785025,0.825018,0.430344,0.430344,0.785025,0.825018,1.878531,1.46378,0.430344,0.430344,1.878531,1.46378,0.430344,0.430344,0.430344,0.430344,0.430344,0.430344,,,,,,,0.760632,1.183623,0.785025,0.825018,1.878531,1.46378,0.430344,0.430344,0.430344,0.430344,0.266921,0.393818,0.274238,0.286236,0.60229,0.477865,0.167834,0.167834,0.08822,0.08822,16.97313,10.907457,16.445731,15.648518,6.872558,8.819847,30,30,30,30,,,,,,,,,,,5504,5504,0.430344,0.430344,0.430344,0.430344,0.430344,0.430344,0.430344,0.430344,0.167834,0.167834,30,30,, +10718,-1,0.024415,0,1,0,2,4,,2,5,Moore,St,1451305,0.068,0.093,0,0.523187,8,4.5,,0.052319,,0.052319,,28,,7000,,1589,,3500,,2258,,2408,,2405,,0.058495,,0.052319,,0.058495,,0.072005,,0.052319,,0.072005,,0.292985,,0.052319,,0.292985,,0.052319,,0.052319,,0.052319,,,,,,,,0.058495,,0.072005,,0.292985,,0.052319,,0.052319,,0.021943,,0.025996,,0.09229,,0.02009,,0.010533,,25.043407,,20.344739,,5,,28,,28,,,,,,,,,,,,2408,,0.052319,,0.052319,,0.052319,,0.052319,,0.02009,,28,, +10775,0,0.241911,1,1,1,2,4,,2,5,Maiden,Ln,1451707,0.149,0.391,0,5.18381,8,4.5,0.518381,0.518381,0.518381,0.518381,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,2.646945,0.539161,0.518381,0.518381,2.646945,0.539161,0.994257,0.881654,0.518381,0.518381,0.994257,0.881654,0.707757,2.56231,0.518381,0.518381,0.707757,2.56231,0.518381,0.518381,0.518381,0.518381,0.518381,0.518381,,,,,,,2.646945,0.539161,0.994257,0.881654,0.707757,2.56231,0.518381,0.518381,0.518381,0.518381,0.837628,0.205292,0.341821,0.30804,0.255871,0.812237,0.199058,0.199058,0.104367,0.104367,5.483554,26.920845,14.598501,16.463005,20.507968,5.66468,28,28,28,28,,,,,,,,,,,2649,2649,0.518381,0.518381,0.518381,0.518381,0.518381,0.518381,0.518381,0.518381,0.199058,0.199058,28,28,, +10892,0,0.3039,2,2,1,2,4,,3,5,Fuller,Rd,1448104,0.39,0.694,0,6.512133,6,4.5,0.552545,0.552545,0.552545,0.552545,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.701826,1.132688,0.552545,0.552545,0.701826,1.132688,0.737186,0.744267,0.552545,0.552545,0.737186,0.744267,1.264414,0.871287,0.552545,0.552545,1.264414,0.871287,0.552545,0.552545,0.552545,0.552545,0.552545,0.552545,,,,,,,0.701826,1.132688,0.737186,0.744267,1.264414,0.871287,0.552545,0.552545,0.552545,0.552545,0.26525,0.394508,0.275858,0.277982,0.434026,0.316088,0.220465,0.220465,0.116311,0.116311,25.980748,16.097965,24.734559,24.49923,14.420888,20.927624,33,33,33,33,,,,,,,,,,,5418,5418,0.552545,0.552545,0.552545,0.552545,0.552545,0.552545,0.552545,0.552545,0.220465,0.220465,33,33,, +11029,0,0.389541,1,1,0,2,4,,3,5,Pontiac,St,1451302,0.102,0.491,0,8.347302,6,4.5,0.708256,0.708256,0.708256,0.708256,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.751165,1.181427,0.708256,0.708256,0.751165,1.181427,0.776777,0.783986,0.708256,0.708256,0.776777,0.783986,0.960568,0.837221,0.708256,0.708256,0.960568,0.837221,0.708256,0.708256,0.708256,0.708256,0.708256,0.708256,,,,,,,0.751165,1.181427,0.776777,0.783986,0.960568,0.837221,0.708256,0.708256,0.708256,0.708256,0.295467,0.424545,0.30315,0.305313,0.358288,0.321284,0.282594,0.282594,0.149088,0.149088,31.114918,19.78323,30.089005,29.812309,24.3319,27.916707,33,33,33,33,,,,,,,,,,,2580,2580,0.708256,0.708256,0.708256,0.708256,0.708256,0.708256,0.708256,0.708256,0.282594,0.282594,33,33,, +11087,-1,0.389902,0,2,0,2,4,DV2,3,5,Fuller,Rd,1448104,0,0.39,0,8.355044,6,4.5,,0.708913,,0.708913,,33,,15000,,3405,,7500,,4839,,5160,,5154,,1.606881,,0.708913,,1.606881,,1.031666,,0.708913,,1.031666,,1.257919,,0.708913,,1.257919,,0.708913,,0.708913,,0.708913,,,,,,,,1.606881,,1.031666,,1.257919,,0.708913,,0.708913,,0.552247,,0.379682,,0.447558,,0.282856,,0.149226,,14.558713,,22.676069,,18.597482,,33,,33,,,,,,,,,,,,5160,,0.708913,,0.708913,,0.708913,,0.708913,,0.282856,,33,, +11168,0,0.49405,1,1,0,2,7,,3,5,Traver,Rd,1443305,0,0.494,0,10.586792,7,4.5,1.482151,1.482151,1.482151,1.482151,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,1.482151,1.487621,1.482151,1.482151,1.482151,1.487621,1.482151,1.482151,1.482151,1.482151,1.482151,1.482151,1.845462,1.482174,1.482151,1.482151,1.845462,1.482174,1.482151,1.482151,1.482151,1.482151,1.482151,1.482151,,,,,,,1.482151,1.487621,1.482151,1.482151,1.845462,1.482174,1.482151,1.482151,1.482151,1.482151,0.533574,0.535215,0.533574,0.533574,0.642568,0.533581,0.533574,0.533574,0.276668,0.276668,20,19.926453,20,20,16.062656,19.999685,20,20,20,20,,,,,,,,,,,1892,1892,1.482151,1.482151,1.482151,1.482151,1.482151,1.482151,1.482151,1.482151,0.533574,0.533574,20,20,, +21857,0,0.126961,2,2,0,2,3,,2,5,Huron,St,4604878,2.666,2.793,0,2.720602,6,5,0.253923,0.253923,0.253923,0.253923,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.602239,0.272996,0.253923,0.253923,0.602239,0.272996,0.433146,0.379948,0.253923,0.253923,0.433146,0.379948,0.431044,0.614878,0.253923,0.253923,0.431044,0.614878,0.253923,0.253923,0.253923,0.253923,0.253923,0.253923,,,,,,,0.602239,0.272996,0.433146,0.379948,0.431044,0.614878,0.253923,0.253923,0.253923,0.253923,0.203525,0.104752,0.152797,0.136838,0.152166,0.207317,0.09903,0.09903,0.052054,0.052054,12.648941,27.904039,17.586888,20.049257,17.672626,12.388932,30,30,30,30,,,,,,,,,,,5504,5504,0.253923,0.253923,0.253923,0.253923,0.253923,0.253923,0.253923,0.253923,0.09903,0.09903,30,30,, +21988,0,0.147677,2,2,0,2,3,,2,5,Main,St,4603186,2.039,2.187,0,3.164515,6,5,0.295355,0.295355,0.295355,0.295355,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.314037,0.877567,0.295355,0.295355,0.314037,0.877567,0.34217,0.339882,0.295355,0.295355,0.34217,0.339882,0.911708,0.365143,0.295355,0.295355,0.911708,0.365143,0.295355,0.295355,0.295355,0.295355,0.295355,0.295355,,,,,,,0.314037,0.877567,0.34217,0.339882,0.911708,0.365143,0.295355,0.295355,0.295355,0.295355,0.120793,0.289852,0.129233,0.128547,0.300094,0.136125,0.115188,0.115188,0.060548,0.060548,28.215307,10.09683,25.895456,26.069762,9.718733,24.266227,30,30,30,30,,,,,,,,,,,5504,5504,0.295355,0.295355,0.295355,0.295355,0.295355,0.295355,0.295355,0.295355,0.115188,0.115188,30,30,, +26502,0,0.14373,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.079928,0.15,4,0.86238,0.86238,0.86238,0.86238,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,,,,,,,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.284585,0.284585,0.284585,0.284585,0.284585,0.284585,0.284585,0.284585,0.145167,0.145167,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.86238,0.284585,0.284585,10,10,, +26585,0,0.199864,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.282807,0.15,4,1.199186,1.199186,1.199186,1.199186,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,,,,,,,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,0.395731,0.395731,0.395731,0.395731,0.395731,0.395731,0.395731,0.395731,0.201863,0.201863,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,1.199186,0.395731,0.395731,10,10,, +26613,0,0.146618,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.141806,0.15,4,0.879706,0.879706,0.879706,0.879706,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,,,,,,,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.290303,0.290303,0.290303,0.290303,0.290303,0.290303,0.290303,0.290303,0.148084,0.148084,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.879706,0.290303,0.290303,10,10,, +26622,0,0.157804,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.381518,0.15,4,0.946825,0.946825,0.946825,0.946825,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,,,,,,,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.312452,0.312452,0.312452,0.312452,0.312452,0.312452,0.312452,0.312452,0.159382,0.159382,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.946825,0.312452,0.312452,10,10,, +26624,0,0.110772,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.373675,0.15,4,0.664629,0.664629,0.664629,0.664629,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,,,,,,,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.219328,0.219328,0.219328,0.219328,0.219328,0.219328,0.219328,0.219328,0.111879,0.111879,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.664629,0.219328,0.219328,10,10,, +26625,0,0.217433,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.659281,0.15,4,1.304599,1.304599,1.304599,1.304599,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,,,,,,,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,0.430518,0.430518,0.430518,0.430518,0.430518,0.430518,0.430518,0.430518,0.219607,0.219607,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,1.304599,0.430518,0.430518,10,10,, +26626,0,0.186374,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.99373,0.15,4,1.118244,1.118244,1.118244,1.118244,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,1.118245,1.118244,1.118244,1.118244,1.118245,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,,,,,,,1.118244,1.118244,1.118244,1.118244,1.118244,1.118245,1.118244,1.118244,1.118244,1.118244,0.369021,0.369021,0.369021,0.369021,0.369021,0.369021,0.369021,0.369021,0.188238,0.188238,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,1.118244,0.369021,0.369021,10,10,, +29949,0,0.201972,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.327965,0.15,4,1.21183,1.21183,1.21183,1.21183,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,,,,,,,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,0.399904,0.399904,0.399904,0.399904,0.399904,0.399904,0.399904,0.399904,0.203991,0.203991,10,9.999998,10,10,9.999998,10,10,10,10,10,,,,,,,,,,,34400,34400,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,1.21183,0.399904,0.399904,10,10,, +30052,0,0.286769,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.14504,0.15,4,1.720611,1.720611,1.720611,1.720611,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,,,,,,,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,0.567802,0.567802,0.567802,0.567802,0.567802,0.567802,0.567802,0.567802,0.289636,0.289636,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,1.720611,0.567802,0.567802,10,10,, +30089,0,0.114923,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.462634,0.15,4,0.689537,0.689537,0.689537,0.689537,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,,,,,,,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.227547,0.227547,0.227547,0.227547,0.227547,0.227547,0.227547,0.227547,0.116072,0.116072,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.689537,0.227547,0.227547,10,10,, +9230,1,0.111598,3,0,0,2,4,,1,5,Division,St,1430304,0.568,0.68,0,2.391381,8,4.5,0.239138,,0.239138,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.278615,,0.239138,,0.278615,,0.292174,,0.239138,,0.292174,,0.313222,,0.239138,,0.313222,,0.239138,,0.239138,,0.239138,,,,,,,,0.278615,,0.292174,,0.313222,,0.239138,,0.239138,,0.103672,,0.10774,,0.114054,,0.091829,,0.048146,,24.032664,,22.917416,,21.3774,,28,,28,,,,,,,,,,,,7224,,0.239138,,0.239138,,0.239138,,0.239138,,0.091829,,28,,, +9521,0,0.166048,1,1,0,2,5,,2,5,Hill,St,1429402,0,0.166,0,3.558168,8.5,4.5,0.498143,0.498143,0.498143,0.498143,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.993142,0.498215,0.498143,0.498143,0.993142,0.498215,0.588538,0.50988,0.498143,0.498143,0.588538,0.50988,0.671452,0.714885,0.498143,0.498143,0.671452,0.714885,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,,,,,,,0.993142,0.498215,0.588538,0.50988,0.671452,0.714885,0.498143,0.498143,0.498143,0.498143,0.327831,0.179353,0.20645,0.182853,0.231324,0.244354,0.179332,0.179332,0.092987,0.092987,10.03167,19.997122,16.928175,19.539624,14.837805,13.936318,20,20,20,20,,,,,,,,,,,2064,2064,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.498143,0.179332,0.179332,20,20,, +9892,0,0.11308,1,1,0,2,5,,1,5,4th,Ave,1430302,0.263,0.376,0,2.42314,8.5,4.5,0.33924,0.33924,0.33924,0.33924,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.367881,0.340508,0.33924,0.33924,0.367881,0.340508,0.348342,0.340779,0.33924,0.33924,0.348342,0.340779,0.374976,0.351031,0.33924,0.33924,0.374976,0.351031,0.33924,0.33924,0.33924,0.33924,0.33924,0.33924,,,,,,,0.367881,0.340508,0.348342,0.340779,0.374976,0.351031,0.33924,0.33924,0.33924,0.33924,0.130719,0.122507,0.124857,0.122588,0.132847,0.125664,0.122126,0.122126,0.063325,0.063325,18.442874,19.925472,19.477371,19.909653,18.093926,19.32821,20,20,20,20,,,,,,,,,,,2064,2064,0.33924,0.33924,0.33924,0.33924,0.33924,0.33924,0.33924,0.33924,0.122126,0.122126,20,20,, +9946,-1,0.112928,0,3,0,2,4,,1,5,5th,Ave,1430303,0.425,0.538,0,2.419875,8,4.5,,0.241988,,0.241988,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.289216,,0.241988,,0.289216,,0.286543,,0.241988,,0.286543,,0.310601,,0.241988,,0.310601,,0.241988,,0.241988,,0.241988,,,,,,,,0.289216,,0.286543,,0.310601,,0.241988,,0.241988,,0.107092,,0.10629,,0.113507,,0.092923,,0.04872,,23.427681,,23.6462,,21.814628,,28,,28,,,,,,,,,,,,7224,,0.241988,,0.241988,,0.241988,,0.241988,,0.092923,,28,, +10181,1,0.112619,2,0,0,2,5,,1,5,Ashley,St,1430210,0.359,0.472,0,2.413265,8.5,4.5,0.337857,,0.337857,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.339539,,0.337857,,0.339539,,0.338816,,0.337857,,0.338816,,0.355008,,0.337857,,0.355008,,0.337857,,0.337857,,0.337857,,,,,,,,0.339539,,0.338816,,0.355008,,0.337857,,0.337857,,0.122133,,0.121916,,0.126774,,0.121629,,0.063067,,19.900954,,19.943413,,19.033794,,20,,20,,,,,,,,,,,,4128,,0.337857,,0.337857,,0.337857,,0.337857,,0.121629,,20,,, +10226,0,0.052973,1,1,0,2,4,,1,5,State,St,1427508,6.665,6.718,0,1.135144,8,4.5,0.113514,0.113514,0.113514,0.113514,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.133785,0.228829,0.113514,0.113514,0.133785,0.228829,0.17401,0.184454,0.113514,0.113514,0.17401,0.184454,0.229604,0.167291,0.113514,0.113514,0.229604,0.167291,0.113514,0.113514,0.113514,0.113514,0.113514,0.113514,,,,,,,0.133785,0.228829,0.17401,0.184454,0.229604,0.167291,0.113514,0.113514,0.113514,0.113514,0.049671,0.078184,0.061738,0.064871,0.078416,0.059723,0.04359,0.04359,0.022854,0.022854,23.757534,13.889839,18.265649,17.231454,13.842996,18.999206,28,28,28,28,,,,,,,,,,,2408,2408,0.113514,0.113514,0.113514,0.113514,0.113514,0.113514,0.113514,0.113514,0.04359,0.04359,28,28,, +10585,-1,0.076283,0,2,0,2,3,,2,5,Beakes,St,1430801,0.077,0.154,0,1.634635,6,5,,0.152566,,0.152566,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.153047,,0.152566,,0.153047,,0.156823,,0.152566,,0.156823,,0.176962,,0.152566,,0.176962,,0.152566,,0.152566,,0.152566,,,,,,,,0.153047,,0.156823,,0.176962,,0.152566,,0.152566,,0.059645,,0.060778,,0.066819,,0.059501,,0.031276,,29.90564,,29.185543,,25.864234,,30,,30,,,,,,,,,,,,5504,,0.152566,,0.152566,,0.152566,,0.152566,,0.059501,,30,, +10596,0,0.062372,1,1,0,2,5,,1,5,William,St,1430705,0.381,0.443,0,1.336542,8.5,4.5,0.187116,0.187116,0.187116,0.187116,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.427234,0.209128,0.187116,0.187116,0.427234,0.209128,0.253712,0.234732,0.187116,0.187116,0.253712,0.234732,0.267358,0.393734,0.187116,0.187116,0.267358,0.393734,0.187116,0.187116,0.187116,0.187116,0.187116,0.187116,,,,,,,0.427234,0.209128,0.253712,0.234732,0.267358,0.393734,0.187116,0.187116,0.187116,0.187116,0.139397,0.073965,0.087341,0.081647,0.091434,0.129347,0.067362,0.067362,0.034928,0.034928,8.75941,17.894881,14.750254,15.942907,13.997413,9.504679,20,20,20,20,,,,,,,,,,,2064,2064,0.187116,0.187116,0.187116,0.187116,0.187116,0.187116,0.187116,0.187116,0.067362,0.067362,20,20,, +10627,0,0.072498,1,1,0,2,3,,2,5,Packard,St,1430704,0.076,0.149,0,1.553538,6,5,0.144997,0.144997,0.144997,0.144997,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.176669,0.166106,0.144997,0.144997,0.176669,0.166106,0.149388,0.180891,0.144997,0.144997,0.149388,0.180891,0.151695,0.304302,0.144997,0.144997,0.151695,0.304302,0.144997,0.144997,0.144997,0.144997,0.144997,0.144997,,,,,,,0.176669,0.166106,0.149388,0.180891,0.151695,0.304302,0.144997,0.144997,0.144997,0.144997,0.066051,0.062882,0.057866,0.067317,0.058558,0.10434,0.056549,0.056549,0.029724,0.029724,24.621725,26.187509,29.118175,24.047171,28.67541,14.294709,30,30,30,30,,,,,,,,,,,2752,2752,0.144997,0.144997,0.144997,0.144997,0.144997,0.144997,0.144997,0.144997,0.056549,0.056549,30,30,, +10633,0,0.062196,1,1,0,2,7,,2,5,Madison,St,1430701,0.555,0.617,0,1.332776,8.5,4.5,0.186589,0.186589,0.186589,0.186589,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.214143,0.19705,0.186589,0.186589,0.214143,0.19705,0.190371,0.194039,0.186589,0.186589,0.190371,0.194039,0.187656,0.21883,0.186589,0.186589,0.187656,0.21883,0.186589,0.186589,0.186589,0.186589,0.186589,0.186589,,,,,,,0.214143,0.19705,0.190371,0.194039,0.187656,0.21883,0.186589,0.186589,0.186589,0.186589,0.075438,0.07031,0.068307,0.069407,0.067492,0.076844,0.067172,0.067172,0.03483,0.03483,17.426552,18.93818,19.602586,19.232035,19.886247,17.053272,20,20,20,20,,,,,,,,,,,1720,1720,0.186589,0.186589,0.186589,0.186589,0.186589,0.186589,0.186589,0.186589,0.067172,0.067172,20,20,, +11365,0,0.10797,1,1,0,2,5,,1,5,Thompson,St,1444801,0.307,0.415,0,2.313647,8.5,4.5,0.323911,0.323911,0.323911,0.323911,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.324404,0.324156,0.323911,0.323911,0.324404,0.324156,0.323914,0.32409,0.323911,0.323911,0.323914,0.32409,0.324719,0.325564,0.323911,0.323911,0.324719,0.325564,0.323911,0.323911,0.323911,0.323911,0.323911,0.323911,,,,,,,0.324404,0.324156,0.323914,0.32409,0.324719,0.325564,0.323911,0.323911,0.323911,0.323911,0.116756,0.116682,0.116609,0.116662,0.11685,0.117104,0.116608,0.116608,0.060463,0.060463,19.969612,19.984836,19.999812,19.988908,19.950235,19.898455,20,20,20,20,,,,,,,,,,,2064,2064,0.323911,0.323911,0.323911,0.323911,0.323911,0.323911,0.323911,0.323911,0.116608,0.116608,20,20,, +21577,0,0.06272,2,2,0,2,3,,1,5,Huron,St,4604878,2.341,2.403,0,1.343992,6,5,0.125439,0.125439,0.125439,0.125439,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.452182,0.159498,0.125439,0.125439,0.452182,0.159498,0.246426,0.183918,0.125439,0.125439,0.246426,0.183918,0.300248,0.327151,0.125439,0.125439,0.300248,0.327151,0.125439,0.125439,0.125439,0.125439,0.125439,0.125439,,,,,,,0.452182,0.159498,0.246426,0.183918,0.300248,0.327151,0.125439,0.125439,0.125439,0.125439,0.146944,0.059139,0.085217,0.066465,0.101364,0.109435,0.048921,0.048921,0.025715,0.025715,8.322259,23.593954,15.271048,20.461156,12.533565,11.50289,30,30,30,30,,,,,,,,,,,5504,5504,0.125439,0.125439,0.125439,0.125439,0.125439,0.125439,0.125439,0.125439,0.048921,0.048921,30,30,, +21640,-1,0.045179,0,2,0,2,5,,1,5,1st,St,4600034,0.42,0.465,0,0.968122,8.5,4.5,,0.135537,,0.135537,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.141534,,0.135537,,0.141534,,0.136929,,0.135537,,0.136929,,0.145281,,0.135537,,0.145281,,0.135537,,0.135537,,0.135537,,,,,,,,0.141534,,0.136929,,0.145281,,0.135537,,0.135537,,0.050592,,0.049211,,0.051716,,0.048793,,0.0253,,19.152564,,19.796721,,18.65863,,20,,20,,,,,,,,,,,,4128,,0.135537,,0.135537,,0.135537,,0.135537,,0.048793,,20,, +21722,0,0.205213,1,1,0,2,4,,2,5,Liberty,St,4603025,7.423,7.628,0,4.397419,8,4.5,0.439742,0.439742,0.439742,0.439742,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.592477,0.614873,0.439742,0.439742,1.592477,0.614873,0.793199,0.795073,0.439742,0.439742,0.793199,0.795073,0.898324,1.554337,0.439742,0.439742,0.898324,1.554337,0.439742,0.439742,0.439742,0.439742,0.439742,0.439742,,,,,,,1.592477,0.614873,0.793199,0.795073,0.898324,1.554337,0.439742,0.439742,0.439742,0.439742,0.514681,0.2214,0.274898,0.27546,0.306436,0.503239,0.168861,0.168861,0.088535,0.088535,7.731839,20.024917,15.522932,15.486333,13.706382,7.921559,28,28,28,28,,,,,,,,,,,2408,2408,0.439742,0.439742,0.439742,0.439742,0.439742,0.439742,0.439742,0.439742,0.168861,0.168861,28,28,, +21784,0,0.064273,1,1,0,2,5,,1,5,Liberty,St,4603025,7.819,7.883,0,1.377286,8.5,4.5,0.19282,0.19282,0.19282,0.19282,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.465756,0.199497,0.19282,0.19282,0.465756,0.199497,0.227202,0.224322,0.19282,0.19282,0.227202,0.224322,0.266211,0.435772,0.19282,0.19282,0.266211,0.435772,0.19282,0.19282,0.19282,0.19282,0.19282,0.19282,,,,,,,0.465756,0.199497,0.227202,0.224322,0.266211,0.435772,0.19282,0.19282,0.19282,0.19282,0.151296,0.071418,0.07973,0.078866,0.091432,0.142301,0.069415,0.069415,0.035993,0.035993,8.279876,19.330629,16.973447,17.191349,14.48628,8.849574,20,20,20,20,,,,,,,,,,,2064,2064,0.19282,0.19282,0.19282,0.19282,0.19282,0.19282,0.19282,0.19282,0.069415,0.069415,20,20,, +21839,0,0.112868,1,1,0,2,3,,1,5,Main,St,4603186,1.454,1.567,0,2.418608,6,5,0.225737,0.225737,0.225737,0.225737,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.325053,0.351534,0.225737,0.225737,0.325053,0.351534,0.318517,0.312139,0.225737,0.225737,0.318517,0.312139,0.357369,0.332769,0.225737,0.225737,0.357369,0.332769,0.225737,0.225737,0.225737,0.225737,0.225737,0.225737,,,,,,,0.325053,0.351534,0.318517,0.312139,0.357369,0.332769,0.225737,0.225737,0.225737,0.225737,0.117832,0.125777,0.115871,0.113958,0.127527,0.120147,0.088037,0.088037,0.046276,0.046276,20.833866,19.264408,21.261352,21.695783,18.949901,20.350747,30,30,30,30,,,,,,,,,,,2752,2752,0.225737,0.225737,0.225737,0.225737,0.225737,0.225737,0.225737,0.225737,0.088037,0.088037,30,30,, +24723,0,0.114191,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.446954,0.15,4,0.685147,0.685147,0.685147,0.685147,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,,,,,,,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.226099,0.226099,0.226099,0.226099,0.226099,0.226099,0.226099,0.226099,0.115333,0.115333,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.685147,0.226099,0.226099,10,10,, +24728,0,0.130379,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.793844,0.15,4,0.782276,0.782276,0.782276,0.782276,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,,,,,,,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.258151,0.258151,0.258151,0.258151,0.258151,0.258151,0.258151,0.258151,0.131683,0.131683,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.782276,0.258151,0.258151,10,10,, +25236,0,0.100176,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.146623,0.15,4,0.601055,0.601055,0.601055,0.601055,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,,,,,,,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.198348,0.198348,0.198348,0.198348,0.198348,0.198348,0.198348,0.198348,0.101178,0.101178,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.601055,0.198348,0.198348,10,10,, +25240,0,0.081456,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.745492,0.15,4,0.488738,0.488738,0.488738,0.488738,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,,,,,,,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.161283,0.161283,0.161283,0.161283,0.161283,0.161283,0.161283,0.161283,0.082271,0.082271,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.488738,0.161283,0.161283,10,10,, +25241,0,0.054393,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.165555,0.15,4,0.326355,0.326355,0.326355,0.326355,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,,,,,,,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.107697,0.107697,0.107697,0.107697,0.107697,0.107697,0.107697,0.107697,0.054937,0.054937,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.326355,0.107697,0.107697,10,10,, +26040,0,0.084458,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.809804,0.15,4,0.506745,0.506745,0.506745,0.506745,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,,,,,,,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.167226,0.167226,0.167226,0.167226,0.167226,0.167226,0.167226,0.167226,0.085302,0.085302,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.506745,0.167226,0.167226,10,10,, +26631,0,0.085919,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.841128,0.15,4,0.515516,0.515516,0.515516,0.515516,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,,,,,,,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.17012,0.17012,0.17012,0.17012,0.17012,0.17012,0.17012,0.17012,0.086779,0.086779,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.515516,0.17012,0.17012,10,10,, +29941,0,0.059138,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.267246,0.15,4,0.354829,0.354829,0.354829,0.354829,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,,,,,,,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.117094,0.117094,0.117094,0.117094,0.117094,0.117094,0.117094,0.117094,0.05973,0.05973,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.354829,0.117094,0.117094,10,10,, +30050,0,0.089573,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.919423,0.15,4,0.537439,0.537439,0.537439,0.537439,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,,,,,,,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.177355,0.177355,0.177355,0.177355,0.177355,0.177355,0.177355,0.177355,0.090469,0.090469,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.537439,0.177355,0.177355,10,10,, +30090,0,0.130884,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.804653,0.15,4,0.785303,0.785303,0.785303,0.785303,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,,,,,,,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.25915,0.25915,0.25915,0.25915,0.25915,0.25915,0.25915,0.25915,0.132193,0.132193,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.785303,0.25915,0.25915,10,10,, +30093,0,0.135736,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.908636,0.15,4,0.814418,0.814418,0.814418,0.814418,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,,,,,,,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.268758,0.268758,0.268758,0.268758,0.268758,0.268758,0.268758,0.268758,0.137094,0.137094,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.814418,0.268758,0.268758,10,10,, +30094,0,0.13596,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.913436,0.15,4,0.815762,0.815762,0.815762,0.815762,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,,,,,,,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.269201,0.269201,0.269201,0.269201,0.269201,0.269201,0.269201,0.269201,0.13732,0.13732,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.815762,0.269201,0.269201,10,10,, +9671,1,0.14941,1,0,0,2,5,,2,5,Ashley,St,1430210,0.087,0.236,0,3.201644,8.5,4.5,0.44823,,0.44823,,20,,6000,,1362,,3000,,1936,,2064,,2062,,0.466683,,0.44823,,0.466683,,0.448365,,0.44823,,0.448365,,0.45109,,0.44823,,0.45109,,0.44823,,0.44823,,0.44823,,,,,,,,0.466683,,0.448365,,0.45109,,0.44823,,0.44823,,0.166899,,0.161403,,0.162221,,0.161363,,0.08367,,19.209205,,19.993991,,19.873195,,20,,20,,,,,,,,,,,,2064,,0.44823,,0.44823,,0.44823,,0.44823,,0.161363,,20,,, +10389,0,0.142812,1,1,0,2,7,,2,5,4th,Ave,1430302,0,0.143,0,3.060247,8.5,4.5,0.428435,0.428435,0.428435,0.428435,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.42967,0.428643,0.428435,0.428435,0.42967,0.428643,0.43365,0.447561,0.428435,0.428435,0.43365,0.447561,0.435561,0.450272,0.428435,0.428435,0.435561,0.450272,0.428435,0.428435,0.428435,0.428435,0.428435,0.428435,,,,,,,0.42967,0.428643,0.43365,0.447561,0.435561,0.450272,0.428435,0.428435,0.428435,0.428435,0.154607,0.154299,0.155801,0.159974,0.156374,0.160788,0.154236,0.154236,0.079974,0.079974,19.942483,19.990271,19.75946,19.145323,19.672762,19.030031,20,20,20,20,,,,,,,,,,,1720,1720,0.428435,0.428435,0.428435,0.428435,0.428435,0.428435,0.428435,0.428435,0.154236,0.154236,20,20,, +10599,1,0.05912,2,0,0,2,5,,1,5,William,St,1430705,0.192,0.251,0,1.266862,8.5,4.5,0.177361,,0.177361,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.179978,,0.177361,,0.179978,,0.177509,,0.177361,,0.177509,,0.177445,,0.177361,,0.177445,,0.177361,,0.177361,,0.177361,,,,,,,,0.179978,,0.177509,,0.177445,,0.177361,,0.177361,,0.064635,,0.063894,,0.063875,,0.06385,,0.033107,,19.70912,,19.983272,,19.990478,,20,,20,,,,,,,,,,,,4128,,0.177361,,0.177361,,0.177361,,0.177361,,0.06385,,20,,, +10636,0,0.049629,1,1,0,2,5,,2,5,Madison,St,1430701,0.377,0.427,0,1.06347,8.5,4.5,0.148886,0.148886,0.148886,0.148886,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.348932,0.148942,0.148886,0.148886,0.348932,0.148942,0.177656,0.154367,0.148886,0.148886,0.177656,0.154367,0.196204,0.190163,0.148886,0.148886,0.196204,0.190163,0.148886,0.148886,0.148886,0.148886,0.148886,0.148886,,,,,,,0.348932,0.148942,0.177656,0.154367,0.196204,0.190163,0.148886,0.148886,0.148886,0.148886,0.113613,0.053616,0.06223,0.055243,0.067794,0.065982,0.053599,0.053599,0.027792,0.027792,8.533795,19.992492,16.761109,19.289902,15.176665,15.658781,20,20,20,20,,,,,,,,,,,2064,2064,0.148886,0.148886,0.148886,0.148886,0.148886,0.148886,0.148886,0.148886,0.053599,0.053599,20,20,, +21560,0,0.097829,2,2,0,2,3,,2,5,Main,St,4603186,1.236,1.334,0,2.09634,6,5,0.195658,0.195658,0.195658,0.195658,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.279557,0.224846,0.195658,0.195658,0.279557,0.224846,0.231059,0.242223,0.195658,0.195658,0.231059,0.242223,0.240547,0.332623,0.195658,0.195658,0.240547,0.332623,0.195658,0.195658,0.195658,0.195658,0.195658,0.195658,,,,,,,0.279557,0.224846,0.231059,0.242223,0.240547,0.332623,0.195658,0.195658,0.195658,0.195658,0.101476,0.085063,0.086927,0.090276,0.089773,0.117396,0.076307,0.076307,0.04011,0.04011,20.996625,26.105684,25.403691,24.232847,24.40168,17.646859,30,30,30,30,,,,,,,,,,,5504,5504,0.195658,0.195658,0.195658,0.195658,0.195658,0.195658,0.195658,0.195658,0.076307,0.076307,30,30,, +21702,-1,0.138841,0,1,0,2,5,,2,5,1st,St,4600034,0.087,0.226,0,2.97516,8.5,4.5,,0.416522,,0.416522,,20,,6000,,1362,,3000,,1936,,2064,,2062,,0.416556,,0.416522,,0.416556,,0.416991,,0.416522,,0.416991,,0.436458,,0.416522,,0.436458,,0.416522,,0.416522,,0.416522,,,,,,,,0.416556,,0.416991,,0.436458,,0.416522,,0.416522,,0.149958,,0.150089,,0.155929,,0.149948,,0.077751,,19.998383,,19.977544,,19.086499,,20,,20,,,,,,,,,,,,2064,,0.416522,,0.416522,,0.416522,,0.416522,,0.149948,,20,, +25238,0,0.166093,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.559146,0.15,4,0.996561,0.996561,0.996561,0.996561,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,,,,,,,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.328865,0.328865,0.328865,0.328865,0.328865,0.328865,0.328865,0.328865,0.167754,0.167754,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.996561,0.328865,0.328865,10,10,, +26404,0,0.165137,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.538644,0.15,4,0.99082,0.99082,0.99082,0.99082,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,,,,,,,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.326971,0.326971,0.326971,0.326971,0.326971,0.326971,0.326971,0.326971,0.166788,0.166788,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.99082,0.326971,0.326971,10,10,, +29943,0,0.066279,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.420275,0.15,4,0.397677,0.397677,0.397677,0.397677,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,,,,,,,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.131233,0.131233,0.131233,0.131233,0.131233,0.131233,0.131233,0.131233,0.066942,0.066942,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.397677,0.131233,0.131233,10,10,, +10637,0,0.187505,1,1,0,2,5,,2,5,Madison,St,1430701,0.189,0.377,0,4.017961,8.5,4.5,0.562514,0.562514,0.562514,0.562514,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.068355,0.562968,0.562514,0.562514,1.068355,0.562968,0.628738,0.632272,0.562514,0.562514,0.628738,0.632272,0.635425,1.502333,0.562514,0.562514,0.635425,1.502333,0.562514,0.562514,0.562514,0.562514,0.562514,0.562514,,,,,,,1.068355,0.562968,0.628738,0.632272,0.635425,1.502333,0.562514,0.562514,0.562514,0.562514,0.354257,0.202641,0.222372,0.223433,0.224378,0.484451,0.202505,0.202505,0.105003,0.105003,10.53048,19.983903,17.893445,17.793426,17.705141,7.488544,20,20,20,20,,,,,,,,,,,2064,2064,0.562514,0.562514,0.562514,0.562514,0.562514,0.562514,0.562514,0.562514,0.202505,0.202505,20,20,, +26392,0,0.195111,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.180949,0.15,4,1.170666,1.170666,1.170666,1.170666,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,,,,,,,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,0.38632,0.38632,0.38632,0.38632,0.38632,0.38632,0.38632,0.38632,0.197062,0.197062,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,1.170666,0.38632,0.38632,10,10,, +21642,-1,0.125912,0,1,0,2,5,,2,5,1st,St,4600034,0.236,0.362,0,2.698109,8.5,4.5,,0.377735,,0.377735,,20,,6000,,1362,,3000,,1936,,2064,,2062,,0.377736,,0.377735,,0.377736,,0.378231,,0.377735,,0.378231,,0.43578,,0.377735,,0.43578,,0.377735,,0.377735,,0.377735,,,,,,,,0.377736,,0.378231,,0.43578,,0.377735,,0.377735,,0.135985,,0.136133,,0.153398,,0.135985,,0.070511,,19.999974,,19.973782,,17.336068,,20,,20,,,,,,,,,,,,2064,,0.377735,,0.377735,,0.377735,,0.377735,,0.135985,,20,, +26363,0,0.182673,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.914427,0.15,4,1.09604,1.09604,1.09604,1.09604,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,,,,,,,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,0.361693,0.361693,0.361693,0.361693,0.361693,0.361693,0.361693,0.361693,0.1845,0.1845,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,1.09604,0.361693,0.361693,10,10,, +26403,0,0.160654,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.44259,0.15,4,0.963925,0.963925,0.963925,0.963925,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,,,,,,,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.318095,0.318095,0.318095,0.318095,0.318095,0.318095,0.318095,0.318095,0.162261,0.162261,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.963925,0.318095,0.318095,10,10,, +21644,-1,0.009596,0,1,0,2,5,,2,5,1st,St,4600034,0.226,0.236,0,0.205627,8.5,4.5,,0.028788,,0.028788,,20,,6000,,1362,,3000,,1936,,2064,,2062,,0.028788,,0.028788,,0.028788,,0.028826,,0.028788,,0.028826,,0.033227,,0.028788,,0.033227,,0.028788,,0.028788,,0.028788,,,,,,,,0.028788,,0.028826,,0.033227,,0.028788,,0.028788,,0.010364,,0.010375,,0.011695,,0.010364,,0.005374,,19.999986,,19.973782,,17.327877,,20,,20,,,,,,,,,,,,2064,,0.028788,,0.028788,,0.028788,,0.028788,,0.010364,,20,, +21641,-1,0.058263,0,2,0,2,5,,1,5,1st,St,4600034,0.362,0.42,0,1.248497,8.5,4.5,,0.17479,,0.17479,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.17818,,0.17479,,0.17818,,0.175849,,0.17479,,0.175849,,0.183427,,0.17479,,0.183427,,0.17479,,0.17479,,0.17479,,,,,,,,0.17818,,0.175849,,0.183427,,0.17479,,0.17479,,0.063941,,0.063242,,0.065515,,0.062924,,0.032627,,19.619448,,19.879522,,19.058239,,20,,20,,,,,,,,,,,,4128,,0.17479,,0.17479,,0.17479,,0.17479,,0.062924,,20,, +10634,0,0.070284,1,1,0,2,7,,2,5,Madison,St,1430701,0.484,0.555,0,1.506095,8.5,4.5,0.210853,0.210853,0.210853,0.210853,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.35789,0.255262,0.210853,0.210853,0.35789,0.255262,0.275517,0.388844,0.210853,0.210853,0.275517,0.388844,0.237612,0.541727,0.210853,0.210853,0.237612,0.541727,0.210853,0.210853,0.210853,0.210853,0.210853,0.210853,,,,,,,0.35789,0.255262,0.275517,0.388844,0.237612,0.541727,0.210853,0.210853,0.210853,0.210853,0.120018,0.08923,0.095306,0.129304,0.083935,0.175169,0.075907,0.075907,0.039359,0.039359,11.783116,16.520544,15.306022,10.845136,17.74768,7.78449,20,20,20,20,,,,,,,,,,,1720,1720,0.210853,0.210853,0.210853,0.210853,0.210853,0.210853,0.210853,0.210853,0.075907,0.075907,20,20,, +21292,0,0.082141,2,2,0,2,3,,2,5,Main,St,4603186,1.014,1.096,0,1.760157,6,5,0.164281,0.164281,0.164281,0.164281,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.248575,0.237365,0.164281,0.164281,0.248575,0.237365,0.204294,0.248153,0.164281,0.164281,0.204294,0.248153,0.219333,0.36771,0.164281,0.164281,0.219333,0.36771,0.164281,0.164281,0.164281,0.164281,0.164281,0.164281,,,,,,,0.248575,0.237365,0.204294,0.248153,0.219333,0.36771,0.164281,0.164281,0.164281,0.164281,0.089358,0.085995,0.076074,0.089231,0.080585,0.125098,0.06407,0.06407,0.033678,0.033678,19.826786,20.763136,24.124203,19.860514,22.470126,13.403077,30,30,30,30,,,,,,,,,,,5504,5504,0.164281,0.164281,0.164281,0.164281,0.164281,0.164281,0.164281,0.164281,0.06407,0.06407,30,30,, +21782,0,0.050208,2,2,0,2,3,,2,5,Main,St,4603186,1.186,1.236,0,1.075896,6,5,0.100417,0.100417,0.100417,0.100417,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.133423,0.113016,0.100417,0.100417,0.133423,0.113016,0.115877,0.120587,0.100417,0.100417,0.115877,0.120587,0.120072,0.160371,0.100417,0.100417,0.120072,0.160371,0.100417,0.100417,0.100417,0.100417,0.100417,0.100417,,,,,,,0.133423,0.113016,0.115877,0.120587,0.120072,0.160371,0.100417,0.100417,0.100417,0.100417,0.049064,0.042942,0.043801,0.045214,0.045059,0.057149,0.039163,0.039163,0.020585,0.020585,22.578617,26.655515,25.99735,24.98211,25.089106,18.784576,30,30,30,30,,,,,,,,,,,5504,5504,0.100417,0.100417,0.100417,0.100417,0.100417,0.100417,0.100417,0.100417,0.039163,0.039163,30,30,, +25635,0,0.068351,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.464663,0.15,4,0.410106,0.410106,0.410106,0.410106,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,,,,,,,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.135335,0.135335,0.135335,0.135335,0.135335,0.135335,0.135335,0.135335,0.069034,0.069034,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.410106,0.135335,0.135335,10,10,, +10635,0,0.057853,1,1,0,2,5,,2,5,Madison,St,1430701,0.427,0.484,0,1.239713,8.5,4.5,0.17356,0.17356,0.17356,0.17356,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.249046,0.175103,0.17356,0.17356,0.249046,0.175103,0.189336,0.181764,0.17356,0.17356,0.189336,0.181764,0.186142,0.236754,0.17356,0.17356,0.186142,0.236754,0.17356,0.17356,0.17356,0.17356,0.17356,0.17356,,,,,,,0.249046,0.175103,0.189336,0.181764,0.186142,0.236754,0.17356,0.17356,0.17356,0.17356,0.085127,0.062944,0.067214,0.064943,0.066256,0.08144,0.062482,0.062482,0.032398,0.032398,13.938,19.823759,18.333551,19.097301,18.648082,14.661646,20,20,20,20,,,,,,,,,,,2064,2064,0.17356,0.17356,0.17356,0.17356,0.17356,0.17356,0.17356,0.17356,0.062482,0.062482,20,20,, +22051,0,0.089921,2,2,0,2,3,,2,5,Main,St,4603186,1.096,1.186,0,1.926869,6,5,0.179841,0.179841,0.179841,0.179841,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.261037,0.243799,0.179841,0.179841,0.261037,0.243799,0.218559,0.261298,0.179841,0.179841,0.218559,0.261298,0.233408,0.37493,0.179841,0.179841,0.233408,0.37493,0.179841,0.179841,0.179841,0.179841,0.179841,0.179841,,,,,,,0.261037,0.243799,0.218559,0.261298,0.233408,0.37493,0.179841,0.179841,0.179841,0.179841,0.094497,0.089325,0.081753,0.094575,0.086208,0.128665,0.070138,0.070138,0.036867,0.036867,20.668425,22.129822,24.685495,20.647817,23.114993,14.389979,30,30,30,30,,,,,,,,,,,5504,5504,0.179841,0.179841,0.179841,0.179841,0.179841,0.179841,0.179841,0.179841,0.070138,0.070138,30,30,, +25636,0,0.022943,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.491636,0.15,4,0.137658,0.137658,0.137658,0.137658,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,,,,,,,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.045427,0.045427,0.045427,0.045427,0.045427,0.045427,0.045427,0.045427,0.023172,0.023172,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.137658,0.045427,0.045427,10,10,, +25637,0,0.08445,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.809644,0.15,4,0.5067,0.5067,0.5067,0.5067,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,,,,,,,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.167211,0.167211,0.167211,0.167211,0.167211,0.167211,0.167211,0.167211,0.085295,0.085295,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.5067,0.167211,0.167211,10,10,, +9226,1,0.123105,1,0,0,2,5,,2,5,Ashley,St,1430210,0.236,0.359,0,2.637971,8.5,4.5,0.369316,,0.369316,,20,,6000,,1362,,3000,,1936,,2064,,2062,,0.38452,,0.369316,,0.38452,,0.369434,,0.369316,,0.369434,,0.373039,,0.369316,,0.373039,,0.369316,,0.369316,,0.369316,,,,,,,,0.38452,,0.369434,,0.373039,,0.369316,,0.369316,,0.137515,,0.132989,,0.134071,,0.132954,,0.068939,,19.209205,,19.993599,,19.80037,,20,,20,,,,,,,,,,,,2064,,0.369316,,0.369316,,0.369316,,0.369316,,0.132954,,20,,, +10123,0,0.11983,1,1,0,2,5,,2,5,4th,Ave,1430302,0.143,0.263,0,2.567784,8.5,4.5,0.35949,0.35949,0.35949,0.35949,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.407143,0.359623,0.35949,0.35949,0.407143,0.359623,0.378846,0.360508,0.35949,0.35949,0.378846,0.360508,0.394883,0.367533,0.35949,0.35949,0.394883,0.367533,0.35949,0.35949,0.35949,0.35949,0.35949,0.35949,,,,,,,0.407143,0.359623,0.378846,0.360508,0.394883,0.367533,0.35949,0.35949,0.35949,0.35949,0.143712,0.129456,0.135223,0.129722,0.140034,0.131829,0.129416,0.129416,0.067105,0.067105,17.659141,19.992614,18.978155,19.943541,18.207408,19.562324,20,20,20,20,,,,,,,,,,,2064,2064,0.35949,0.35949,0.35949,0.35949,0.35949,0.35949,0.35949,0.35949,0.129416,0.129416,20,20,, +10598,0,0.065403,1,1,0,2,5,,1,5,William,St,1430705,0.251,0.317,0,1.401491,8.5,4.5,0.196209,0.196209,0.196209,0.196209,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.270982,0.196284,0.196209,0.196209,0.270982,0.196284,0.200038,0.199479,0.196209,0.196209,0.200038,0.199479,0.198693,0.237024,0.196209,0.196209,0.198693,0.237024,0.196209,0.196209,0.196209,0.196209,0.196209,0.196209,,,,,,,0.270982,0.196284,0.200038,0.199479,0.198693,0.237024,0.196209,0.196209,0.196209,0.196209,0.093067,0.070658,0.071784,0.071616,0.07138,0.08288,0.070635,0.070635,0.036626,0.036626,14.481291,19.992364,19.6172,19.672099,19.749978,16.555994,20,20,20,20,,,,,,,,,,,2064,2064,0.196209,0.196209,0.196209,0.196209,0.196209,0.196209,0.196209,0.196209,0.070635,0.070635,20,20,, +22104,0,0.079215,2,2,0,2,3,,2,5,Main,St,4603186,1.375,1.454,0,1.697466,6,5,0.15843,0.15843,0.15843,0.15843,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.253555,0.273024,0.15843,0.15843,0.253555,0.273024,0.249356,0.244111,0.15843,0.15843,0.249356,0.244111,0.325514,0.294995,0.15843,0.15843,0.325514,0.294995,0.15843,0.15843,0.15843,0.15843,0.15843,0.15843,,,,,,,0.253555,0.273024,0.249356,0.244111,0.325514,0.294995,0.15843,0.15843,0.15843,0.15843,0.090325,0.096166,0.089065,0.087492,0.111913,0.102757,0.061788,0.061788,0.032478,0.032478,18.745044,17.408403,19.060728,19.470237,14.601228,16.1118,30,30,30,30,,,,,,,,,,,5504,5504,0.15843,0.15843,0.15843,0.15843,0.15843,0.15843,0.15843,0.15843,0.061788,0.061788,30,30,, +25243,0,0.085368,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.829307,0.15,4,0.512206,0.512206,0.512206,0.512206,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,,,,,,,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.169028,0.169028,0.169028,0.169028,0.169028,0.169028,0.169028,0.169028,0.086221,0.086221,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.512206,0.169028,0.169028,10,10,, +26632,0,0.113483,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.431774,0.15,4,0.680897,0.680897,0.680897,0.680897,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,,,,,,,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.224696,0.224696,0.224696,0.224696,0.224696,0.224696,0.224696,0.224696,0.114618,0.114618,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.680897,0.224696,0.224696,10,10,, +25242,0,0.058403,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.251487,0.15,4,0.350416,0.350416,0.350416,0.350416,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,,,,,,,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.115637,0.115637,0.115637,0.115637,0.115637,0.115637,0.115637,0.115637,0.058987,0.058987,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.350416,0.115637,0.115637,10,10,, +10628,0,0.076287,1,1,0,2,3,,2,5,Packard,St,1430704,0,0.076,0,1.634728,6,5,0.152575,0.152575,0.152575,0.152575,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.222337,0.159851,0.152575,0.152575,0.222337,0.159851,0.154942,0.157852,0.152575,0.152575,0.154942,0.157852,0.16046,0.252177,0.152575,0.152575,0.16046,0.252177,0.152575,0.152575,0.152575,0.152575,0.152575,0.152575,,,,,,,0.222337,0.159851,0.154942,0.157852,0.16046,0.252177,0.152575,0.152575,0.152575,0.152575,0.080433,0.061687,0.060214,0.061087,0.06187,0.089385,0.059504,0.059504,0.031278,0.031278,20.586939,28.634469,29.541612,28.996972,28.525656,18.150918,30,30,30,30,,,,,,,,,,,2752,2752,0.152575,0.152575,0.152575,0.152575,0.152575,0.152575,0.152575,0.152575,0.059504,0.059504,30,30,, +25239,0,0.063202,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.354322,0.15,4,0.37921,0.37921,0.37921,0.37921,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,,,,,,,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.125139,0.125139,0.125139,0.125139,0.125139,0.125139,0.125139,0.125139,0.063834,0.063834,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.37921,0.125139,0.125139,10,10,, +29945,0,0.054339,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.164398,0.15,4,0.326032,0.326032,0.326032,0.326032,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,,,,,,,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.10759,0.10759,0.10759,0.10759,0.10759,0.10759,0.10759,0.10759,0.054882,0.054882,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.326032,0.10759,0.10759,10,10,, +21341,0,0.041007,2,2,0,2,3,,2,5,Main,St,4603186,1.334,1.375,0,0.878714,6,5,0.082013,0.082013,0.082013,0.082013,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.11353,0.096262,0.082013,0.082013,0.11353,0.096262,0.097476,0.100646,0.082013,0.082013,0.097476,0.100646,0.101791,0.12914,0.082013,0.082013,0.101791,0.12914,0.082013,0.082013,0.082013,0.082013,0.082013,0.082013,,,,,,,0.11353,0.096262,0.097476,0.100646,0.101791,0.12914,0.082013,0.082013,0.082013,0.082013,0.04144,0.03626,0.036624,0.037575,0.037918,0.046123,0.031985,0.031985,0.016813,0.016813,21.671735,25.559282,25.241167,24.446008,24.171127,19.052165,30,30,30,30,,,,,,,,,,,5504,5504,0.082013,0.082013,0.082013,0.082013,0.082013,0.082013,0.082013,0.082013,0.031985,0.031985,30,30,, +10597,0,0.064296,1,1,0,2,5,,1,5,William,St,1430705,0.317,0.381,0,1.377771,8.5,4.5,0.192888,0.192888,0.192888,0.192888,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.35067,0.231117,0.192888,0.192888,0.35067,0.231117,0.234998,0.249283,0.192888,0.192888,0.234998,0.249283,0.240926,0.355819,0.192888,0.192888,0.240926,0.355819,0.192888,0.192888,0.192888,0.192888,0.192888,0.192888,,,,,,,0.35067,0.231117,0.234998,0.249283,0.240926,0.355819,0.192888,0.192888,0.192888,0.192888,0.116774,0.080908,0.082073,0.086358,0.083851,0.118319,0.06944,0.06944,0.036006,0.036006,11.001126,16.691838,16.416159,15.475421,16.012204,10.841929,20,20,20,20,,,,,,,,,,,2064,2064,0.192888,0.192888,0.192888,0.192888,0.192888,0.192888,0.192888,0.192888,0.06944,0.06944,20,20,, +10183,0,0.060826,1,1,0,2,5,,1,5,4th,Ave,1430302,0.567,0.628,0,1.303417,8.5,4.5,0.182478,0.182478,0.182478,0.182478,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.183401,0.269108,0.182478,0.182478,0.183401,0.269108,0.193784,0.203561,0.182478,0.182478,0.193784,0.203561,0.356934,0.224793,0.182478,0.182478,0.356934,0.224793,0.182478,0.182478,0.182478,0.182478,0.182478,0.182478,,,,,,,0.183401,0.269108,0.193784,0.203561,0.356934,0.224793,0.182478,0.182478,0.182478,0.182478,0.065969,0.091681,0.069084,0.072017,0.118029,0.078387,0.065692,0.065692,0.034063,0.034063,19.899436,13.561731,18.833153,17.928643,10.224764,16.235205,20,20,20,20,,,,,,,,,,,2064,2064,0.182478,0.182478,0.182478,0.182478,0.182478,0.182478,0.182478,0.182478,0.065692,0.065692,20,20,, +10282,1,0.06259,2,0,0,2,5,,1,5,Ashley,St,1430210,0.663,0.725,0,1.34121,8.5,4.5,0.187769,,0.187769,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.189265,,0.187769,,0.189265,,0.193039,,0.187769,,0.193039,,0.240671,,0.187769,,0.240671,,0.187769,,0.187769,,0.187769,,,,,,,,0.189265,,0.193039,,0.240671,,0.187769,,0.187769,,0.068046,,0.069178,,0.083467,,0.067597,,0.03505,,19.841964,,19.454002,,15.603846,,20,,20,,,,,,,,,,,,4128,,0.187769,,0.187769,,0.187769,,0.187769,,0.067597,,20,,, +10545,0,0.061664,1,1,0,2,4,,1,5,Miller,Rd,1430906,5.126,5.188,0,1.32138,8,4.5,0.132138,0.132138,0.132138,0.132138,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.485716,0.147557,0.132138,0.132138,0.485716,0.147557,0.214285,0.201807,0.132138,0.132138,0.214285,0.201807,0.231051,0.549154,0.132138,0.132138,0.231051,0.549154,0.132138,0.132138,0.132138,0.132138,0.132138,0.132138,,,,,,,0.485716,0.147557,0.214285,0.201807,0.231051,0.549154,0.132138,0.132138,0.132138,0.132138,0.156814,0.055367,0.075385,0.071642,0.080415,0.175846,0.050741,0.050741,0.026604,0.026604,7.617334,25.074189,17.266076,18.33371,16.013167,6.737384,28,28,28,28,,,,,,,,,,,2408,2408,0.132138,0.132138,0.132138,0.132138,0.132138,0.132138,0.132138,0.132138,0.050741,0.050741,28,28,, +21311,0,0.062241,2,2,0,2,3,,1,5,Huron,St,4604878,2.149,2.212,0,1.333741,6,5,0.124483,0.124483,0.124483,0.124483,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.238858,0.140057,0.124483,0.124483,0.238858,0.140057,0.174704,0.172903,0.124483,0.124483,0.174704,0.172903,0.183762,0.263375,0.124483,0.124483,0.183762,0.263375,0.124483,0.124483,0.124483,0.124483,0.124483,0.124483,,,,,,,0.238858,0.140057,0.174704,0.172903,0.183762,0.263375,0.124483,0.124483,0.124483,0.124483,0.082861,0.05322,0.063615,0.063074,0.066332,0.090216,0.048548,0.048548,0.025519,0.025519,15.634713,26.663992,21.376052,21.598689,20.322299,14.179333,30,30,30,30,,,,,,,,,,,5504,5504,0.124483,0.124483,0.124483,0.124483,0.124483,0.124483,0.124483,0.124483,0.048548,0.048548,30,30,, +21509,0,0.063871,1,1,0,2,4,,1,5,Liberty,St,4603025,7.628,7.692,0,1.368669,8,4.5,0.136867,0.136867,0.136867,0.136867,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.293237,0.143638,0.136867,0.136867,0.293237,0.143638,0.208291,0.150784,0.136867,0.136867,0.208291,0.150784,0.2349,0.21841,0.136867,0.136867,0.2349,0.21841,0.136867,0.136867,0.136867,0.136867,0.136867,0.136867,,,,,,,0.293237,0.143638,0.208291,0.150784,0.2349,0.21841,0.136867,0.136867,0.136867,0.136867,0.099468,0.054588,0.073984,0.056732,0.081967,0.07702,0.052557,0.052557,0.027556,0.027556,13.068834,26.680148,18.398602,25.415674,16.314495,17.54624,28,28,28,28,,,,,,,,,,,2408,2408,0.136867,0.136867,0.136867,0.136867,0.136867,0.136867,0.136867,0.136867,0.052557,0.052557,28,28,, +21558,-1,0.06219,0,2,0,2,5,,1,5,1st,St,4600034,0.667,0.729,0,1.332643,8.5,4.5,,0.18657,,0.18657,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.401313,,0.18657,,0.401313,,0.256574,,0.18657,,0.256574,,0.317496,,0.18657,,0.317496,,0.18657,,0.18657,,0.18657,,,,,,,,0.401313,,0.256574,,0.317496,,0.18657,,0.18657,,0.131588,,0.088166,,0.106443,,0.067165,,0.034826,,9.297983,,14.543161,,11.7526,,20,,20,,,,,,,,,,,,4128,,0.18657,,0.18657,,0.18657,,0.18657,,0.067165,,20,, +21635,-1,0.064513,0,2,0,2,5,,1,5,1st,St,4600034,0.602,0.667,0,1.382412,8.5,4.5,,0.193538,,0.193538,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.264835,,0.193538,,0.264835,,0.237213,,0.193538,,0.237213,,0.350715,,0.193538,,0.350715,,0.193538,,0.193538,,0.193538,,,,,,,,0.264835,,0.237213,,0.350715,,0.193538,,0.193538,,0.091063,,0.082776,,0.116827,,0.069674,,0.036127,,14.615697,,16.317603,,11.036754,,20,,20,,,,,,,,,,,,4128,,0.193538,,0.193538,,0.193538,,0.193538,,0.069674,,20,, +21652,0,0.062239,1,1,0,2,3,,1,5,Main,St,4603186,1.759,1.821,0,1.333685,6,5,0.124477,0.124477,0.124477,0.124477,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.163257,0.638898,0.124477,0.124477,0.163257,0.638898,0.17841,0.24406,0.124477,0.124477,0.17841,0.24406,0.436629,0.360069,0.124477,0.124477,0.436629,0.360069,0.124477,0.124477,0.124477,0.124477,0.124477,0.124477,,,,,,,0.163257,0.638898,0.17841,0.24406,0.436629,0.360069,0.124477,0.124477,0.124477,0.124477,0.06018,0.202872,0.064726,0.084421,0.142192,0.119224,0.048546,0.048546,0.025518,0.025518,22.873888,5.844935,20.931109,15.300815,8.552621,10.371132,30,30,30,30,,,,,,,,,,,2752,2752,0.124477,0.124477,0.124477,0.124477,0.124477,0.124477,0.124477,0.124477,0.048546,0.048546,30,30,, +25632,0,0.071992,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.542677,0.15,4,0.431949,0.431949,0.431949,0.431949,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,,,,,,,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.142543,0.142543,0.142543,0.142543,0.142543,0.142543,0.142543,0.142543,0.072711,0.072711,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.431949,0.142543,0.142543,10,10,, +25642,0,0.002622,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.056196,0.15,4,0.015735,0.015735,0.015735,0.015735,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,,,,,,,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.005193,0.005193,0.005193,0.005193,0.005193,0.005193,0.005193,0.005193,0.002649,0.002649,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.015735,0.005193,0.005193,10,10,, +25644,0,0.074474,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.595878,0.15,4,0.446846,0.446846,0.446846,0.446846,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,,,,,,,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.147459,0.147459,0.147459,0.147459,0.147459,0.147459,0.147459,0.147459,0.075219,0.075219,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.446846,0.147459,0.147459,10,10,, +25905,0,0.07489,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.604786,0.15,4,0.44934,0.44934,0.44934,0.44934,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,,,,,,,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.148282,0.148282,0.148282,0.148282,0.148282,0.148282,0.148282,0.148282,0.075639,0.075639,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.44934,0.148282,0.148282,10,10,, +26635,0,0.069953,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.499001,0.15,4,0.41972,0.41972,0.41972,0.41972,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,,,,,,,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.138508,0.138508,0.138508,0.138508,0.138508,0.138508,0.138508,0.138508,0.070653,0.070653,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.41972,0.138508,0.138508,10,10,, +26637,0,0.036396,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.779913,0.15,4,0.218376,0.218376,0.218376,0.218376,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,,,,,,,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.072064,0.072064,0.072064,0.072064,0.072064,0.072064,0.072064,0.072064,0.03676,0.03676,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.218376,0.072064,0.072064,10,10,, +30049,0,0.095298,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.042108,0.15,4,0.57179,0.57179,0.57179,0.57179,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,,,,,,,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.188691,0.188691,0.188691,0.188691,0.188691,0.188691,0.188691,0.188691,0.096251,0.096251,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.57179,0.188691,0.188691,10,10,, +21636,-1,0.064389,0,2,0,2,5,,1,5,1st,St,4600034,0.538,0.602,0,1.379771,8.5,4.5,,0.193168,,0.193168,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.337084,,0.193168,,0.337084,,0.230227,,0.193168,,0.230227,,0.303936,,0.193168,,0.303936,,0.193168,,0.193168,,0.193168,,,,,,,,0.337084,,0.230227,,0.303936,,0.193168,,0.193168,,0.112715,,0.080658,,0.102771,,0.06954,,0.036058,,11.461123,,16.780676,,12.711097,,20,,20,,,,,,,,,,,,4128,,0.193168,,0.193168,,0.193168,,0.193168,,0.06954,,20,, +21739,0,0.095151,2,2,0,2,3,,2,5,Huron,St,4604878,1.991,2.086,0,2.038946,6,5,0.190302,0.190302,0.190302,0.190302,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.706929,0.250229,0.190302,0.190302,0.706929,0.250229,0.356731,0.363934,0.190302,0.190302,0.356731,0.363934,0.425701,0.786507,0.190302,0.190302,0.425701,0.786507,0.190302,0.190302,0.190302,0.190302,0.190302,0.190302,,,,,,,0.706929,0.250229,0.356731,0.363934,0.425701,0.786507,0.190302,0.190302,0.190302,0.190302,0.229206,0.092196,0.124146,0.126307,0.144838,0.253079,0.074218,0.074218,0.039012,0.039012,8.075845,22.815271,16.003808,15.687028,13.410924,7.258744,30,30,30,30,,,,,,,,,,,5504,5504,0.190302,0.190302,0.190302,0.190302,0.190302,0.190302,0.190302,0.190302,0.074218,0.074218,30,30,, +21639,-1,0.072707,0,2,0,2,5,,1,5,1st,St,4600034,0.465,0.538,0,1.557998,8.5,4.5,,0.21812,,0.21812,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.233591,,0.21812,,0.233591,,0.229431,,0.21812,,0.229431,,0.264619,,0.21812,,0.264619,,0.21812,,0.21812,,0.21812,,,,,,,,0.233591,,0.229431,,0.264619,,0.21812,,0.21812,,0.083164,,0.081917,,0.092473,,0.078523,,0.040716,,18.675375,,19.013966,,16.485563,,20,,20,,,,,,,,,,,,4128,,0.21812,,0.21812,,0.21812,,0.21812,,0.078523,,20,, +21526,0,0.062986,2,2,0,2,3,,1,5,Huron,St,4604878,2.086,2.149,0,1.349691,6,5,0.125971,0.125971,0.125971,0.125971,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.449369,0.165641,0.125971,0.125971,0.449369,0.165641,0.229273,0.235273,0.125971,0.125971,0.229273,0.235273,0.27076,0.488874,0.125971,0.125971,0.27076,0.488874,0.125971,0.125971,0.125971,0.125971,0.125971,0.125971,,,,,,,0.449369,0.165641,0.229273,0.235273,0.27076,0.488874,0.125971,0.125971,0.125971,0.125971,0.146148,0.06103,0.080119,0.081919,0.092565,0.158,0.049129,0.049129,0.025824,0.025824,8.409871,22.815271,16.483091,16.062768,13.957502,7.730281,30,30,30,30,,,,,,,,,,,5504,5504,0.125971,0.125971,0.125971,0.125971,0.125971,0.125971,0.125971,0.125971,0.049129,0.049129,30,30,, +26428,0,0.088097,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.887796,0.15,4,0.528583,0.528583,0.528583,0.528583,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,,,,,,,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.174432,0.174432,0.174432,0.174432,0.174432,0.174432,0.174432,0.174432,0.088978,0.088978,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.528583,0.174432,0.174432,10,10,, +25246,0,0.236433,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.066422,0.15,4,1.418598,1.418598,1.418598,1.418598,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,,,,,,,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,0.468137,0.468137,0.468137,0.468137,0.468137,0.468137,0.468137,0.468137,0.238797,0.238797,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,1.418598,0.468137,0.468137,10,10,, +10547,0,0.028906,1,1,0,2,4,,2,5,Miller,Rd,1430906,5.076,5.104,0,0.619425,8,4.5,0.061942,0.061942,0.061942,0.061942,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.166617,0.066738,0.061942,0.061942,0.166617,0.066738,0.08415,0.082616,0.061942,0.061942,0.08415,0.082616,0.092248,0.17932,0.061942,0.061942,0.092248,0.17932,0.061942,0.061942,0.061942,0.061942,0.061942,0.061942,,,,,,,0.166617,0.066738,0.08415,0.082616,0.092248,0.17932,0.061942,0.061942,0.061942,0.061942,0.055188,0.025224,0.030448,0.029988,0.032878,0.058999,0.023786,0.023786,0.012471,0.012471,10.409455,25.988159,20.610658,20.993365,18.801422,9.672011,28,28,28,28,,,,,,,,,,,2408,2408,0.061942,0.061942,0.061942,0.061942,0.061942,0.061942,0.061942,0.061942,0.023786,0.023786,28,28,, +10546,0,0.021786,1,1,0,2,4,,1,5,Miller,Rd,1430906,5.104,5.126,0,0.466853,8,4.5,0.046685,0.046685,0.046685,0.046685,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.186026,0.052472,0.046685,0.046685,0.186026,0.052472,0.075969,0.072891,0.046685,0.046685,0.075969,0.072891,0.085002,0.206885,0.046685,0.046685,0.085002,0.206885,0.046685,0.046685,0.046685,0.046685,0.046685,0.046685,,,,,,,0.186026,0.052472,0.075969,0.072891,0.085002,0.206885,0.046685,0.046685,0.046685,0.046685,0.059729,0.019663,0.026712,0.025789,0.029422,0.065987,0.017927,0.017927,0.009399,0.009399,7.026919,24.912279,17.206976,17.933369,15.378274,6.318435,28,28,28,28,,,,,,,,,,,2408,2408,0.046685,0.046685,0.046685,0.046685,0.046685,0.046685,0.046685,0.046685,0.017927,0.017927,28,28,, +9675,0,0.062536,1,1,0,2,5,,1,5,4th,Ave,1430302,0.376,0.438,0,1.340064,8.5,4.5,0.187609,0.187609,0.187609,0.187609,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.210699,0.211755,0.187609,0.187609,0.210699,0.211755,0.214514,0.199314,0.187609,0.187609,0.214514,0.199314,0.261076,0.219816,0.187609,0.187609,0.261076,0.219816,0.187609,0.187609,0.187609,0.187609,0.187609,0.187609,,,,,,,0.210699,0.211755,0.214514,0.199314,0.261076,0.219816,0.187609,0.187609,0.187609,0.187609,0.074466,0.074783,0.075611,0.071051,0.089579,0.077201,0.067539,0.067539,0.03502,0.03502,17.808283,17.719462,17.491545,18.825488,14.371972,17.069624,20,20,20,20,,,,,,,,,,,2064,2064,0.187609,0.187609,0.187609,0.187609,0.187609,0.187609,0.187609,0.187609,0.067539,0.067539,20,20,, +9753,1,0.063553,2,0,0,2,5,,1,5,Ashley,St,1430210,0.534,0.598,0,1.361852,8.5,4.5,0.190659,,0.190659,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.200122,,0.190659,,0.200122,,0.224818,,0.190659,,0.224818,,0.401826,,0.190659,,0.401826,,0.190659,,0.190659,,0.190659,,,,,,,,0.200122,,0.224818,,0.401826,,0.190659,,0.190659,,0.071476,,0.078885,,0.131987,,0.068637,,0.03559,,19.054344,,16.961177,,9.489633,,20,,20,,,,,,,,,,,,4128,,0.190659,,0.190659,,0.190659,,0.190659,,0.068637,,20,,, +21294,0,0.064206,1,1,0,2,4,,1,5,Liberty,St,4603025,7.692,7.757,0,1.375832,8,4.5,0.137583,0.137583,0.137583,0.137583,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.223078,0.155287,0.137583,0.137583,0.223078,0.155287,0.150047,0.161346,0.137583,0.137583,0.150047,0.161346,0.160806,0.240913,0.137583,0.137583,0.160806,0.240913,0.137583,0.137583,0.137583,0.137583,0.137583,0.137583,,,,,,,0.223078,0.155287,0.150047,0.161346,0.160806,0.240913,0.137583,0.137583,0.137583,0.137583,0.07848,0.058143,0.056571,0.059961,0.059799,0.083831,0.052832,0.052832,0.0277,0.0277,17.268987,24.807809,25.674201,23.876203,23.956444,15.990516,28,28,28,28,,,,,,,,,,,2408,2408,0.137583,0.137583,0.137583,0.137583,0.137583,0.137583,0.137583,0.137583,0.052832,0.052832,28,28,, +21402,0,0.063716,1,1,0,2,3,,1,5,Main,St,4603186,1.63,1.694,0,1.365351,6,5,0.127433,0.127433,0.127433,0.127433,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.186,0.352243,0.127433,0.127433,0.186,0.352243,0.207885,0.229266,0.127433,0.127433,0.207885,0.229266,0.439454,0.313077,0.127433,0.127433,0.439454,0.313077,0.127433,0.127433,0.127433,0.127433,0.127433,0.127433,,,,,,,0.186,0.352243,0.207885,0.229266,0.439454,0.313077,0.127433,0.127433,0.127433,0.127433,0.067269,0.117142,0.073835,0.080249,0.143305,0.105392,0.049699,0.049699,0.026124,0.026124,20.553654,10.853261,18.389865,16.674856,8.699392,12.210976,30,30,30,30,,,,,,,,,,,2752,2752,0.127433,0.127433,0.127433,0.127433,0.127433,0.127433,0.127433,0.127433,0.049699,0.049699,30,30,, +22069,0,0.063285,2,2,0,2,3,,1,5,Huron,St,4604878,2.212,2.275,0,1.356115,6,5,0.126571,0.126571,0.126571,0.126571,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.283396,0.142013,0.126571,0.126571,0.283396,0.142013,0.194604,0.167972,0.126571,0.126571,0.194604,0.167972,0.22151,0.233305,0.126571,0.126571,0.22151,0.233305,0.126571,0.126571,0.126571,0.126571,0.126571,0.126571,,,,,,,0.283396,0.142013,0.194604,0.167972,0.22151,0.233305,0.126571,0.126571,0.126571,0.126571,0.09641,0.053995,0.069773,0.061783,0.077844,0.081383,0.049363,0.049363,0.025947,0.025947,13.398647,26.737915,19.512053,22.605631,17.141998,16.275382,30,30,30,30,,,,,,,,,,,5504,5504,0.126571,0.126571,0.126571,0.126571,0.126571,0.126571,0.126571,0.126571,0.049363,0.049363,30,30,, +25907,0,0.067883,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.454645,0.15,4,0.407301,0.407301,0.407301,0.407301,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,,,,,,,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.134409,0.134409,0.134409,0.134409,0.134409,0.134409,0.134409,0.134409,0.068562,0.068562,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.407301,0.134409,0.134409,10,10,, +26407,0,0.093578,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.005235,0.15,4,0.561466,0.561466,0.561466,0.561466,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,,,,,,,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.185284,0.185284,0.185284,0.185284,0.185284,0.185284,0.185284,0.185284,0.094513,0.094513,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.561466,0.185284,0.185284,10,10,, +41314,0,0.062183,1,1,0,2,5,,2,5,Hill,St,1429402,0.721,0.783,0,1.3325,8.5,4.5,0.18655,0.18655,0.18655,0.18655,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.216488,0.221525,0.18655,0.18655,0.216488,0.221525,0.208414,0.208137,0.18655,0.18655,0.208414,0.208137,0.251877,0.223623,0.18655,0.18655,0.251877,0.223623,0.18655,0.18655,0.18655,0.18655,0.18655,0.18655,,,,,,,0.216488,0.221525,0.208414,0.208137,0.251877,0.223623,0.18655,0.18655,0.18655,0.18655,0.07614,0.07765,0.073717,0.073634,0.086756,0.07828,0.067158,0.067158,0.034823,0.034823,17.234183,16.842382,17.901843,17.92572,14.812793,16.684342,20,20,20,20,,,,,,,,,,,2064,2064,0.18655,0.18655,0.18655,0.18655,0.18655,0.18655,0.18655,0.18655,0.067158,0.067158,20,20,, +9943,1,0.062493,2,0,0,2,5,,1,5,Ashley,St,1430210,0.472,0.534,0,1.339131,8.5,4.5,0.187478,,0.187478,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.196153,,0.187478,,0.196153,,0.200497,,0.187478,,0.200497,,0.256993,,0.187478,,0.256993,,0.187478,,0.187478,,0.187478,,,,,,,,0.196153,,0.200497,,0.256993,,0.187478,,0.187478,,0.070095,,0.071398,,0.088347,,0.067492,,0.034996,,19.115554,,18.701366,,14.590161,,20,,20,,,,,,,,,,,,4128,,0.187478,,0.187478,,0.187478,,0.187478,,0.067492,,20,,, +26638,0,0.026424,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.566227,0.15,4,0.158543,0.158543,0.158543,0.158543,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,0.158544,0.158543,0.158543,0.158543,0.158544,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,,,,,,,0.158543,0.158543,0.158543,0.158543,0.158544,0.158543,0.158543,0.158543,0.158543,0.158543,0.052319,0.052319,0.052319,0.052319,0.052319,0.052319,0.052319,0.052319,0.026688,0.026688,10,10,9.999998,9.999999,9.999996,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,0.158543,0.052319,0.052319,10,10,, +9506,1,0.064813,2,0,0,2,5,,1,5,Ashley,St,1430210,0.598,0.663,0,1.388854,8.5,4.5,0.19444,,0.19444,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.197935,,0.19444,,0.197935,,0.208996,,0.19444,,0.208996,,0.277379,,0.19444,,0.277379,,0.19444,,0.19444,,0.19444,,,,,,,,0.197935,,0.208996,,0.277379,,0.19444,,0.19444,,0.071047,,0.074365,,0.09488,,0.069998,,0.036295,,19.646856,,18.607014,,14.019799,,20,,20,,,,,,,,,,,,4128,,0.19444,,0.19444,,0.19444,,0.19444,,0.069998,,20,,, +25906,0,0.06791,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.455208,0.15,4,0.407458,0.407458,0.407458,0.407458,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,,,,,,,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.134461,0.134461,0.134461,0.134461,0.134461,0.134461,0.134461,0.134461,0.068589,0.068589,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.407458,0.134461,0.134461,10,10,, +41313,0,0.060736,1,1,0,2,7,,2,5,University,Ave,1429310,0.252,0.313,0,1.301479,8.5,4.5,0.182207,0.182207,0.182207,0.182207,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.228289,0.188413,0.182207,0.182207,0.228289,0.188413,0.211498,0.208435,0.182207,0.182207,0.211498,0.208435,0.236483,0.256616,0.182207,0.182207,0.236483,0.256616,0.182207,0.182207,0.182207,0.182207,0.182207,0.182207,,,,,,,0.228289,0.188413,0.211498,0.208435,0.236483,0.256616,0.182207,0.182207,0.182207,0.182207,0.079419,0.067456,0.074382,0.073463,0.081877,0.087917,0.065595,0.065595,0.034012,0.034012,15.962863,19.341271,17.230156,17.483377,15.409729,14.200751,20,20,20,20,,,,,,,,,,,1720,1720,0.182207,0.182207,0.182207,0.182207,0.182207,0.182207,0.182207,0.182207,0.065595,0.065595,20,20,, +21601,0,0.063411,1,1,0,2,3,,1,5,Main,St,4603186,1.567,1.63,0,1.358808,6,5,0.126822,0.126822,0.126822,0.126822,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.201052,0.233431,0.126822,0.126822,0.201052,0.233431,0.174387,0.201891,0.126822,0.126822,0.174387,0.201891,0.234582,0.258739,0.126822,0.126822,0.234582,0.258739,0.126822,0.126822,0.126822,0.126822,0.126822,0.126822,,,,,,,0.201052,0.233431,0.174387,0.201891,0.234582,0.258739,0.126822,0.126822,0.126822,0.126822,0.07173,0.081443,0.06373,0.071981,0.081788,0.089036,0.049461,0.049461,0.025999,0.025999,18.923741,16.298846,21.817307,18.845143,16.218926,14.704609,30,30,30,30,,,,,,,,,,,2752,2752,0.126822,0.126822,0.126822,0.126822,0.126822,0.126822,0.126822,0.126822,0.049461,0.049461,30,30,, +22053,0,0.062131,1,1,0,2,5,,1,5,Liberty,St,4603025,7.757,7.819,0,1.331383,8.5,4.5,0.186394,0.186394,0.186394,0.186394,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.337073,0.211758,0.186394,0.186394,0.337073,0.211758,0.235599,0.242898,0.186394,0.186394,0.235599,0.242898,0.233787,0.356599,0.186394,0.186394,0.233787,0.356599,0.186394,0.186394,0.186394,0.186394,0.186394,0.186394,,,,,,,0.337073,0.211758,0.235599,0.242898,0.233787,0.356599,0.186394,0.186394,0.186394,0.186394,0.112306,0.074711,0.081863,0.084053,0.08132,0.118163,0.067102,0.067102,0.034793,0.034793,11.059536,17.604368,15.822939,15.347494,15.945601,10.45396,20,20,20,20,,,,,,,,,,,2064,2064,0.186394,0.186394,0.186394,0.186394,0.186394,0.186394,0.186394,0.186394,0.067102,0.067102,20,20,, +30092,0,0.084785,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.816815,0.15,4,0.508708,0.508708,0.508708,0.508708,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,,,,,,,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.167874,0.167874,0.167874,0.167874,0.167874,0.167874,0.167874,0.167874,0.085633,0.085633,10,9.999999,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.508708,0.167874,0.167874,10,10,, +9229,0,0.065103,1,1,0,2,5,,1,5,4th,Ave,1430302,0.502,0.567,0,1.395057,8.5,4.5,0.195308,0.195308,0.195308,0.195308,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.222394,0.297138,0.195308,0.195308,0.222394,0.297138,0.243142,0.246784,0.195308,0.195308,0.243142,0.246784,0.48226,0.250174,0.195308,0.195308,0.48226,0.250174,0.195308,0.195308,0.195308,0.195308,0.195308,0.195308,,,,,,,0.222394,0.297138,0.243142,0.246784,0.48226,0.250174,0.195308,0.195308,0.195308,0.195308,0.078437,0.10086,0.084661,0.085754,0.156396,0.086771,0.070311,0.070311,0.036457,0.036457,17.564104,13.145953,16.065367,15.828241,8.099693,15.61376,20,20,20,20,,,,,,,,,,,2064,2064,0.195308,0.195308,0.195308,0.195308,0.195308,0.195308,0.195308,0.195308,0.070311,0.070311,20,20,, +21801,0,0.065688,2,2,0,2,3,,1,5,Huron,St,4604878,2.275,2.341,0,1.407602,6,5,0.131376,0.131376,0.131376,0.131376,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.378387,0.158307,0.131376,0.131376,0.378387,0.158307,0.231067,0.185929,0.131376,0.131376,0.231067,0.185929,0.267238,0.263639,0.131376,0.131376,0.267238,0.263639,0.131376,0.131376,0.131376,0.131376,0.131376,0.131376,,,,,,,0.378387,0.158307,0.231067,0.185929,0.267238,0.263639,0.131376,0.131376,0.131376,0.131376,0.12534,0.059316,0.081144,0.067603,0.091995,0.090915,0.051237,0.051237,0.026932,0.026932,10.416024,24.896475,17.05693,21.197816,14.74821,14.949573,30,30,30,30,,,,,,,,,,,5504,5504,0.131376,0.131376,0.131376,0.131376,0.131376,0.131376,0.131376,0.131376,0.051237,0.051237,30,30,, +21911,0,0.064618,1,1,0,2,3,,1,5,Main,St,4603186,1.694,1.759,0,1.38467,6,5,0.129236,0.129236,0.129236,0.129236,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.169465,0.357009,0.129236,0.129236,0.169465,0.357009,0.182406,0.209527,0.129236,0.129236,0.182406,0.209527,0.354562,0.263826,0.129236,0.129236,0.354562,0.263826,0.129236,0.129236,0.129236,0.129236,0.129236,0.129236,,,,,,,0.169465,0.357009,0.182406,0.209527,0.354562,0.263826,0.129236,0.129236,0.129236,0.129236,0.062471,0.118734,0.066353,0.074489,0.118,0.090779,0.050402,0.050402,0.026493,0.026493,22.878347,10.859872,21.255184,18.503909,10.934848,14.695596,30,30,30,30,,,,,,,,,,,2752,2752,0.129236,0.129236,0.129236,0.129236,0.129236,0.129236,0.129236,0.129236,0.050402,0.050402,30,30,, +25904,0,0.070446,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.509557,0.15,4,0.422676,0.422676,0.422676,0.422676,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,,,,,,,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.139483,0.139483,0.139483,0.139483,0.139483,0.139483,0.139483,0.139483,0.07115,0.07115,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.422676,0.139483,0.139483,10,10,, +26399,0,0.071146,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.524561,0.15,4,0.426877,0.426877,0.426877,0.426877,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,,,,,,,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.140869,0.140869,0.140869,0.140869,0.140869,0.140869,0.140869,0.140869,0.071858,0.071858,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.426877,0.140869,0.140869,10,10,, +9947,0,0.039536,1,1,0,2,5,,1,5,4th,Ave,1430302,0.743,0.782,0,0.847199,8.5,4.5,0.118608,0.118608,0.118608,0.118608,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.118612,0.131247,0.118608,0.118608,0.118612,0.131247,0.118712,0.121435,0.118608,0.118608,0.118712,0.121435,0.153318,0.122226,0.118608,0.118608,0.153318,0.122226,0.118608,0.118608,0.118608,0.118608,0.118608,0.118608,,,,,,,0.118612,0.131247,0.118712,0.121435,0.153318,0.122226,0.118608,0.118608,0.118608,0.118608,0.0427,0.046491,0.04273,0.043547,0.053112,0.043784,0.042699,0.042699,0.02214,0.02214,19.999306,18.073958,19.982526,19.534339,15.47209,19.40793,20,20,20,20,,,,,,,,,,,2064,2064,0.118608,0.118608,0.118608,0.118608,0.118608,0.118608,0.118608,0.118608,0.042699,0.042699,20,20,, +10586,-1,0.077295,0,2,0,2,3,,1,5,Beakes,St,1430801,0,0.077,0,1.656324,6,5,,0.15459,,0.15459,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.154933,,0.15459,,0.154933,,0.156329,,0.15459,,0.156329,,0.172897,,0.15459,,0.172897,,0.15459,,0.15459,,0.15459,,,,,,,,0.154933,,0.156329,,0.172897,,0.15459,,0.15459,,0.060393,,0.060812,,0.065782,,0.06029,,0.031691,,29.933675,,29.666329,,26.823573,,30,,30,,,,,,,,,,,,5504,,0.15459,,0.15459,,0.15459,,0.15459,,0.06029,,30,, +10587,-1,0.062432,0,2,0,2,5,,2,5,Kingsley,St,1430710,0.069,0.131,0,1.337832,8.5,4.5,,0.187297,,0.187297,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.219772,,0.187297,,0.219772,,0.192958,,0.187297,,0.192958,,0.215658,,0.187297,,0.215658,,0.187297,,0.187297,,0.187297,,,,,,,,0.219772,,0.192958,,0.215658,,0.187297,,0.187297,,0.07717,,0.069125,,0.075935,,0.067427,,0.034962,,17.044583,,19.413196,,17.369752,,20,,20,,,,,,,,,,,,4128,,0.187297,,0.187297,,0.187297,,0.187297,,0.067427,,20,, +10589,0,0.065868,1,1,0,2,4,,1,5,Miller,Rd,1430709,0.06,0.126,0,1.411466,8,4.5,0.141147,0.141147,0.141147,0.141147,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.171876,0.141204,0.141147,0.141147,0.171876,0.141204,0.180024,0.150946,0.141147,0.141147,0.180024,0.150946,0.272775,0.146275,0.141147,0.141147,0.272775,0.146275,0.141147,0.141147,0.141147,0.141147,0.141147,0.141147,,,,,,,0.171876,0.141204,0.180024,0.150946,0.272775,0.146275,0.141147,0.141147,0.141147,0.141147,0.063419,0.054218,0.065864,0.05714,0.093689,0.055739,0.0542,0.0542,0.028418,0.028418,22.993984,27.988539,21.953152,26.182259,14.488491,27.018255,28,28,28,28,,,,,,,,,,,2408,2408,0.141147,0.141147,0.141147,0.141147,0.141147,0.141147,0.141147,0.141147,0.0542,0.0542,28,28,, +21236,0,0.105497,2,2,0,2,3,,2,5,Main,St,4603186,1.934,2.039,0,2.260643,6,5,0.210993,0.210993,0.210993,0.210993,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.224339,0.62691,0.210993,0.210993,0.224339,0.62691,0.244622,0.242802,0.210993,0.210993,0.244622,0.242802,0.655295,0.260848,0.210993,0.210993,0.655295,0.260848,0.210993,0.210993,0.210993,0.210993,0.210993,0.210993,,,,,,,0.224339,0.62691,0.244622,0.242802,0.655295,0.260848,0.210993,0.210993,0.210993,0.210993,0.086291,0.207062,0.092376,0.09183,0.215578,0.097244,0.082287,0.082287,0.043254,0.043254,28.215307,10.09683,25.875875,26.069762,9.659471,24.266227,30,30,30,30,,,,,,,,,,,5504,5504,0.210993,0.210993,0.210993,0.210993,0.210993,0.210993,0.210993,0.210993,0.082287,0.082287,30,30,, +9613,0,0.113951,1,1,0,2,5,,2,5,Ashley,St,1430210,0.725,0.839,0,2.441801,8.5,4.5,0.341852,0.341852,0.341852,0.341852,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.341852,0.350712,0.341852,0.341852,0.341852,0.350712,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,,,,,,,0.341852,0.350712,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.123067,0.125725,0.123067,0.123067,0.123067,0.123067,0.123067,0.123067,0.063812,0.063812,20,19.494744,20,20,20,20,20,20,20,20,,,,,,,,,,,2064,2064,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.341852,0.123067,0.123067,20,20,, +10588,-1,0.068561,0,2,0,2,5,,2,5,Kingsley,St,1430710,0,0.069,0,1.469163,8.5,4.5,,0.205683,,0.205683,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.209535,,0.205683,,0.209535,,0.209837,,0.205683,,0.209837,,0.229967,,0.205683,,0.229967,,0.205683,,0.205683,,0.205683,,,,,,,,0.209535,,0.209837,,0.229967,,0.205683,,0.205683,,0.075201,,0.075292,,0.081331,,0.074046,,0.038394,,19.632338,,19.604097,,17.888014,,20,,20,,,,,,,,,,,,4128,,0.205683,,0.205683,,0.205683,,0.205683,,0.074046,,20,, +10590,0,0.060005,1,1,0,2,4,,1,5,Miller,Rd,1430709,0,0.06,0,1.285832,8,4.5,0.128583,0.128583,0.128583,0.128583,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.130766,0.170282,0.128583,0.128583,0.130766,0.170282,0.129986,0.216313,0.128583,0.128583,0.129986,0.216313,0.12954,0.33773,0.128583,0.128583,0.12954,0.33773,0.128583,0.128583,0.128583,0.128583,0.128583,0.128583,,,,,,,0.130766,0.170282,0.129986,0.216313,0.12954,0.33773,0.128583,0.128583,0.128583,0.128583,0.050031,0.061885,0.049797,0.075695,0.049663,0.11212,0.049376,0.049376,0.025888,0.025888,27.532638,21.14337,27.697816,16.6441,27.793264,10.660366,28,28,28,28,,,,,,,,,,,2408,2408,0.128583,0.128583,0.128583,0.128583,0.128583,0.128583,0.128583,0.128583,0.049376,0.049376,28,28,, +21552,-1,0.103534,0,2,0,2,5,,2,5,1st,St,4600034,0.729,0.832,0,2.218577,8.5,4.5,,0.310601,,0.310601,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.31674,,0.310601,,0.31674,,0.317128,,0.310601,,0.317128,,0.347272,,0.310601,,0.347272,,0.310601,,0.310601,,0.310601,,,,,,,,0.31674,,0.317128,,0.347272,,0.310601,,0.310601,,0.113658,,0.113774,,0.122818,,0.111816,,0.057979,,19.612317,,19.588356,,17.888014,,20,,20,,,,,,,,,,,,4128,,0.310601,,0.310601,,0.310601,,0.310601,,0.111816,,20,, +25638,0,0.039788,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.852606,0.15,4,0.23873,0.23873,0.23873,0.23873,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,,,,,,,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.078781,0.078781,0.078781,0.078781,0.078781,0.078781,0.078781,0.078781,0.040186,0.040186,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.23873,0.078781,0.078781,10,10,, +25640,0,0.093605,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.00582,0.15,4,0.56163,0.56163,0.56163,0.56163,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,,,,,,,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.185338,0.185338,0.185338,0.185338,0.185338,0.185338,0.185338,0.185338,0.094541,0.094541,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.56163,0.185338,0.185338,10,10,, +25641,0,0.091825,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.967677,0.15,4,0.550949,0.550949,0.550949,0.550949,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,,,,,,,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.181813,0.181813,0.181813,0.181813,0.181813,0.181813,0.181813,0.181813,0.092743,0.092743,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.550949,0.181813,0.181813,10,10,, +25639,0,0.036558,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.783381,0.15,4,0.219347,0.219347,0.219347,0.219347,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,,,,,,,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.072384,0.072384,0.072384,0.072384,0.072384,0.072384,0.072384,0.072384,0.036923,0.036923,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.219347,0.072384,0.072384,10,10,, +10184,0,0.05017,1,1,0,2,5,,1,5,4th,Ave,1430302,0.692,0.743,0,1.075071,8.5,4.5,0.15051,0.15051,0.15051,0.15051,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.150515,0.166318,0.15051,0.15051,0.150515,0.166318,0.150642,0.154098,0.15051,0.15051,0.150642,0.154098,0.194557,0.155101,0.15051,0.15051,0.194557,0.155101,0.15051,0.15051,0.15051,0.15051,0.15051,0.15051,,,,,,,0.150515,0.166318,0.150642,0.154098,0.194557,0.155101,0.15051,0.15051,0.15051,0.15051,0.054185,0.058926,0.054223,0.05526,0.067398,0.055561,0.054184,0.054184,0.028095,0.028095,19.999306,18.09903,19.982526,19.534339,15.47209,19.40793,20,20,20,20,,,,,,,,,,,2064,2064,0.15051,0.15051,0.15051,0.15051,0.15051,0.15051,0.15051,0.15051,0.054184,0.054184,20,20,, +21448,0,0.112949,2,2,0,2,3,,1,5,Main,St,4603186,1.821,1.934,0,2.420336,6,5,0.225898,0.225898,0.225898,0.225898,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.237026,0.409991,0.225898,0.225898,0.237026,0.409991,0.254497,0.281252,0.225898,0.225898,0.254497,0.281252,0.470862,0.309291,0.225898,0.225898,0.470862,0.309291,0.225898,0.225898,0.225898,0.225898,0.225898,0.225898,,,,,,,0.237026,0.409991,0.254497,0.281252,0.470862,0.309291,0.225898,0.225898,0.225898,0.225898,0.091439,0.143328,0.09668,0.104706,0.161589,0.113118,0.0881,0.0881,0.046309,0.046309,28.591578,16.529505,26.6288,24.09562,14.392632,21.911243,30,30,30,30,,,,,,,,,,,5504,5504,0.225898,0.225898,0.225898,0.225898,0.225898,0.225898,0.225898,0.225898,0.0881,0.0881,30,30,, +25231,0,0.00663,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.142073,0.15,4,0.03978,0.03978,0.03978,0.03978,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,,,,,,,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.013128,0.013128,0.013128,0.013128,0.013128,0.013128,0.013128,0.013128,0.006696,0.006696,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.03978,0.013128,0.013128,10,10,, +9945,0,0.06427,1,1,0,2,5,,1,5,4th,Ave,1430302,0.628,0.692,0,1.377222,8.5,4.5,0.192811,0.192811,0.192811,0.192811,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.194275,0.212626,0.192811,0.192811,0.194275,0.212626,0.195478,0.209362,0.192811,0.192811,0.195478,0.209362,0.314587,0.208605,0.192811,0.192811,0.314587,0.208605,0.192811,0.192811,0.192811,0.192811,0.192811,0.192811,,,,,,,0.194275,0.212626,0.195478,0.209362,0.314587,0.208605,0.192811,0.192811,0.192811,0.192811,0.069851,0.075356,0.070212,0.074377,0.105945,0.07415,0.069412,0.069412,0.035991,0.035991,19.849269,18.136159,19.727175,18.418891,12.258036,18.485735,20,20,20,20,,,,,,,,,,,2064,2064,0.192811,0.192811,0.192811,0.192811,0.192811,0.192811,0.192811,0.192811,0.069412,0.069412,20,20,, +26633,0,0.054668,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.171448,0.15,4,0.328005,0.328005,0.328005,0.328005,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,,,,,,,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.108242,0.108242,0.108242,0.108242,0.108242,0.108242,0.108242,0.108242,0.055214,0.055214,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.328005,0.108242,0.108242,10,10,, +9813,0,0.100668,1,1,0,2,7,,2,5,5th,Ave,1430303,0.166,0.267,0,2.157163,8.5,4.5,0.302003,0.302003,0.302003,0.302003,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.316724,0.38401,0.302003,0.302003,0.316724,0.38401,0.303772,0.414006,0.302003,0.302003,0.303772,0.414006,0.302224,0.580878,0.302003,0.302003,0.302224,0.580878,0.302003,0.302003,0.302003,0.302003,0.302003,0.302003,,,,,,,0.316724,0.38401,0.303772,0.414006,0.302224,0.580878,0.302003,0.302003,0.302003,0.302003,0.113137,0.133323,0.109252,0.142322,0.108787,0.192384,0.108721,0.108721,0.056374,0.056374,19.07042,15.728888,19.883524,14.589311,19.985352,10.398152,20,20,20,20,,,,,,,,,,,1720,1720,0.302003,0.302003,0.302003,0.302003,0.302003,0.302003,0.302003,0.302003,0.108721,0.108721,20,20,, +9893,1,0.125515,3,0,0,2,4,,2,5,Division,St,1430304,0.33,0.455,0,2.689605,8,4.5,0.26896,,0.26896,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.304644,,0.26896,,0.304644,,0.282634,,0.26896,,0.282634,,0.281665,,0.26896,,0.281665,,0.26896,,0.26896,,0.26896,,,,,,,,0.304644,,0.282634,,0.281665,,0.26896,,0.26896,,0.113986,,0.107383,,0.107092,,0.103281,,0.054151,,24.720303,,26.645398,,26.737084,,28,,28,,,,,,,,,,,,7224,,0.26896,,0.26896,,0.26896,,0.26896,,0.103281,,28,,, +9983,0,0.050403,1,1,0,2,4,,2,5,State,St,1427508,6.363,6.414,0,1.080061,8,4.5,0.108006,0.108006,0.108006,0.108006,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.313019,0.138024,0.108006,0.108006,0.313019,0.138024,0.211666,0.21255,0.108006,0.108006,0.211666,0.21255,0.225401,0.37284,0.108006,0.108006,0.225401,0.37284,0.108006,0.108006,0.108006,0.108006,0.108006,0.108006,,,,,,,0.313019,0.138024,0.211666,0.21255,0.225401,0.37284,0.108006,0.108006,0.108006,0.108006,0.102978,0.05048,0.072572,0.072837,0.076693,0.120925,0.041474,0.041474,0.021745,0.021745,9.661297,21.910468,14.287452,14.228061,13.41688,8.111178,28,28,28,28,,,,,,,,,,,2408,2408,0.108006,0.108006,0.108006,0.108006,0.108006,0.108006,0.108006,0.108006,0.041474,0.041474,28,28,, +10124,0,0.078659,1,1,0,2,5,,2,5,Hill,St,1429402,0.342,0.421,0,1.685556,8.5,4.5,0.235978,0.235978,0.235978,0.235978,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.292021,0.243866,0.235978,0.235978,0.292021,0.243866,0.242882,0.268872,0.235978,0.235978,0.242882,0.268872,0.245581,0.398456,0.235978,0.235978,0.245581,0.398456,0.235978,0.235978,0.235978,0.235978,0.235978,0.235978,,,,,,,0.292021,0.243866,0.242882,0.268872,0.245581,0.398456,0.235978,0.235978,0.235978,0.235978,0.101765,0.087318,0.087023,0.09482,0.087833,0.133696,0.084952,0.084952,0.044049,0.044049,16.161729,19.353075,19.431488,17.553155,19.217949,11.844599,20,20,20,20,,,,,,,,,,,2064,2064,0.235978,0.235978,0.235978,0.235978,0.235978,0.235978,0.235978,0.235978,0.084952,0.084952,20,20,, +10592,0,0.064689,1,1,0,2,5,,1,5,William,St,1430705,0.595,0.659,0,1.386184,8.5,4.5,0.194066,0.194066,0.194066,0.194066,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.291086,0.19578,0.194066,0.194066,0.291086,0.19578,0.238656,0.214953,0.194066,0.194066,0.238656,0.214953,0.218649,0.321781,0.194066,0.194066,0.218649,0.321781,0.194066,0.194066,0.194066,0.194066,0.194066,0.194066,,,,,,,0.291086,0.19578,0.238656,0.214953,0.218649,0.321781,0.194066,0.194066,0.194066,0.194066,0.09897,0.070378,0.083241,0.07613,0.077239,0.108178,0.069864,0.069864,0.036226,0.036226,13.333932,19.824898,16.263191,18.056608,17.751347,12.061989,20,20,20,20,,,,,,,,,,,2064,2064,0.194066,0.194066,0.194066,0.194066,0.194066,0.194066,0.194066,0.194066,0.069864,0.069864,20,20,, +10622,0,0.114731,1,1,0,2,3,,2,5,Packard,St,1430704,0.391,0.506,0,2.45853,6,5,0.229463,0.229463,0.229463,0.229463,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.344329,0.613753,0.229463,0.229463,0.344329,0.613753,0.404119,0.413735,0.229463,0.229463,0.404119,0.413735,0.704058,0.579683,0.229463,0.229463,0.704058,0.579683,0.229463,0.229463,0.229463,0.229463,0.229463,0.229463,,,,,,,0.344329,0.613753,0.404119,0.413735,0.704058,0.579683,0.229463,0.229463,0.229463,0.229463,0.12395,0.204778,0.141887,0.144772,0.231869,0.194556,0.08949,0.08949,0.04704,0.04704,19.992158,11.216049,17.034292,16.638387,9.777433,11.875262,30,30,30,30,,,,,,,,,,,2752,2752,0.229463,0.229463,0.229463,0.229463,0.229463,0.229463,0.229463,0.229463,0.08949,0.08949,30,30,, +10626,0,0.134121,1,1,0,2,3,,2,5,Packard,St,1430704,0.149,0.283,0,2.874026,6,5,0.268242,0.268242,0.268242,0.268242,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,1.256059,0.271516,0.268242,0.268242,1.256059,0.271516,0.651541,0.275976,0.268242,0.268242,0.651541,0.275976,0.769821,0.285604,0.268242,0.268242,0.769821,0.285604,0.268242,0.268242,0.268242,0.268242,0.268242,0.268242,,,,,,,1.256059,0.271516,0.651541,0.275976,0.769821,0.285604,0.268242,0.268242,0.268242,0.268242,0.400959,0.105597,0.219604,0.106935,0.255088,0.109823,0.104615,0.104615,0.05499,0.05499,6.406766,29.638279,12.351147,29.159273,10.453432,28.176288,30,30,30,30,,,,,,,,,,,2752,2752,0.268242,0.268242,0.268242,0.268242,0.268242,0.268242,0.268242,0.268242,0.104615,0.104615,30,30,, +10629,0,0.125133,1,1,0,2,7,,2,5,Madison,St,1430701,0.785,0.911,0,2.681428,8.5,4.5,0.3754,0.3754,0.3754,0.3754,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.489854,0.375415,0.3754,0.3754,0.489854,0.375415,0.388367,0.376693,0.3754,0.3754,0.388367,0.376693,0.402609,0.46131,0.3754,0.3754,0.402609,0.46131,0.3754,0.3754,0.3754,0.3754,0.3754,0.3754,,,,,,,0.489854,0.375415,0.388367,0.376693,0.402609,0.46131,0.3754,0.3754,0.3754,0.3754,0.16948,0.135148,0.139034,0.135532,0.143307,0.160917,0.135144,0.135144,0.070075,0.070075,15.327009,19.99922,19.332244,19.931339,18.648367,16.27538,20,20,20,20,,,,,,,,,,,1720,1720,0.3754,0.3754,0.3754,0.3754,0.3754,0.3754,0.3754,0.3754,0.135144,0.135144,20,20,, +11376,0,0.137022,1,1,0,2,7,,2,5,Thompson,St,1444801,0.054,0.191,0,2.936184,8.5,4.5,0.411066,0.411066,0.411066,0.411066,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.414689,0.41365,0.411066,0.411066,0.414689,0.41365,0.412425,0.425888,0.411066,0.411066,0.412425,0.425888,0.466752,0.468293,0.411066,0.411066,0.466752,0.468293,0.411066,0.411066,0.411066,0.411066,0.411066,0.411066,,,,,,,0.414689,0.41365,0.412425,0.425888,0.466752,0.468293,0.411066,0.411066,0.411066,0.411066,0.149071,0.148759,0.148392,0.15243,0.16469,0.165152,0.147984,0.147984,0.076732,0.076732,19.825255,19.875049,19.934072,19.303937,17.613879,17.555917,20,20,20,20,,,,,,,,,,,1720,1720,0.411066,0.411066,0.411066,0.411066,0.411066,0.411066,0.411066,0.411066,0.147984,0.147984,20,20,, +26636,0,0.056011,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.200237,0.15,4,0.336066,0.336066,0.336066,0.336066,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,,,,,,,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.110902,0.110902,0.110902,0.110902,0.110902,0.110902,0.110902,0.110902,0.056571,0.056571,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.336066,0.110902,0.110902,10,10,, +26641,0,0.078566,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.683563,0.15,4,0.471398,0.471398,0.471398,0.471398,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,,,,,,,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.155561,0.155561,0.155561,0.155561,0.155561,0.155561,0.155561,0.155561,0.079352,0.079352,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.471398,0.155561,0.155561,10,10,, +26643,0,0.160295,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.434897,0.15,4,0.961771,0.961771,0.961771,0.961771,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,,,,,,,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.317384,0.317384,0.317384,0.317384,0.317384,0.317384,0.317384,0.317384,0.161898,0.161898,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.961771,0.317384,0.317384,10,10,, +30032,0,0.125398,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.6871,0.15,4,0.752388,0.752388,0.752388,0.752388,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,,,,,,,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.248288,0.248288,0.248288,0.248288,0.248288,0.248288,0.248288,0.248288,0.126652,0.126652,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.752388,0.248288,0.248288,10,10,, +9614,1,0.107237,2,0,0,2,7,,2,5,Division,St,1430304,0.208,0.316,0,2.297932,8.5,4.5,0.32171,,0.32171,,20,,10000,,2270,,5000,,3226,,3440,,3436,,0.46221,,0.32171,,0.46221,,0.370141,,0.32171,,0.370141,,0.428941,,0.32171,,0.428941,,0.32171,,0.32171,,0.32171,,,,,,,,0.46221,,0.370141,,0.428941,,0.32171,,0.32171,,0.157966,,0.130345,,0.147985,,0.115816,,0.060053,,13.92054,,17.383135,,15.000204,,20,,20,,,,,,,,,,,,3440,,0.32171,,0.32171,,0.32171,,0.32171,,0.115816,,20,,, +10290,0,0.094339,1,1,0,2,7,,2,5,5th,Ave,1430303,0,0.094,0,2.021558,8.5,4.5,0.283018,0.283018,0.283018,0.283018,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.28303,0.285448,0.283018,0.283018,0.28303,0.285448,0.283018,0.3054,0.283018,0.283018,0.283018,0.3054,0.283021,0.473621,0.283018,0.283018,0.283021,0.473621,0.283018,0.283018,0.283018,0.283018,0.283018,0.283018,,,,,,,0.28303,0.285448,0.283018,0.3054,0.283021,0.473621,0.283018,0.283018,0.283018,0.283018,0.10189,0.102615,0.101887,0.108601,0.101888,0.159067,0.101887,0.101887,0.05283,0.05283,19.999184,19.829778,19.999976,18.534242,19.999765,11.951245,20,20,20,20,,,,,,,,,,,1720,1720,0.283018,0.283018,0.283018,0.283018,0.283018,0.283018,0.283018,0.283018,0.101887,0.101887,20,20,, +10297,0,0.109777,1,1,0,2,5,,2,5,Hill,St,1429402,0.166,0.276,0,2.352374,8.5,4.5,0.329332,0.329332,0.329332,0.329332,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.060678,0.329371,0.329332,0.329332,1.060678,0.329371,0.515208,0.329553,0.329332,0.329332,0.515208,0.329553,0.707572,0.333334,0.329332,0.329332,0.707572,0.333334,0.329332,0.329332,0.329332,0.329332,0.329332,0.329332,,,,,,,1.060678,0.329371,0.515208,0.329553,0.707572,0.333334,0.329332,0.329332,0.329332,0.329332,0.337963,0.118571,0.174322,0.118626,0.232031,0.11976,0.11856,0.11856,0.061475,0.061475,6.209847,19.99763,12.784434,19.98662,9.308807,19.759886,20,20,20,20,,,,,,,,,,,2064,2064,0.329332,0.329332,0.329332,0.329332,0.329332,0.329332,0.329332,0.329332,0.11856,0.11856,20,20,, +10632,-1,0.106654,0,1,0,2,7,,2,5,Madison,St,1430701,0.617,0.723,0,2.285433,8.5,4.5,,0.319961,,0.319961,,20,,5000,,1135,,2500,,1613,,1720,,1718,,0.319962,,0.319961,,0.319962,,0.320163,,0.319961,,0.320163,,0.326214,,0.319961,,0.326214,,0.319961,,0.319961,,0.319961,,,,,,,,0.319962,,0.320163,,0.326214,,0.319961,,0.319961,,0.115186,,0.115246,,0.117062,,0.115186,,0.059726,,19.999924,,19.987375,,19.616617,,20,,20,,,,,,,,,,,,1720,,0.319961,,0.319961,,0.319961,,0.319961,,0.115186,,20,, +26640,0,0.041067,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.88001,0.15,4,0.246403,0.246403,0.246403,0.246403,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,,,,,,,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.081313,0.081313,0.081313,0.081313,0.081313,0.081313,0.081313,0.081313,0.041478,0.041478,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.246403,0.081313,0.081313,10,10,, +29956,0,0.087211,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.868803,0.15,4,0.523265,0.523265,0.523265,0.523265,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,,,,,,,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.172677,0.172677,0.172677,0.172677,0.172677,0.172677,0.172677,0.172677,0.088083,0.088083,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.523265,0.172677,0.172677,10,10,, +10027,0,0.071912,1,1,0,2,7,,2,5,5th,Ave,1430303,0.094,0.166,0,1.540977,8.5,4.5,0.215737,0.215737,0.215737,0.215737,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.215743,0.227567,0.215737,0.215737,0.215743,0.227567,0.215737,0.244856,0.215737,0.215737,0.215737,0.244856,0.215738,0.35687,0.215737,0.215737,0.215738,0.35687,0.215737,0.215737,0.215737,0.215737,0.215737,0.215737,,,,,,,0.215743,0.227567,0.215737,0.244856,0.215738,0.35687,0.215737,0.215737,0.215737,0.215737,0.077667,0.081214,0.077665,0.086401,0.077666,0.120005,0.077665,0.077665,0.040271,0.040271,19.999423,18.960253,19.999996,17.621511,19.999864,12.090487,20,20,20,20,,,,,,,,,,,1720,1720,0.215737,0.215737,0.215737,0.215737,0.215737,0.215737,0.215737,0.215737,0.077665,0.077665,20,20,, +10390,0,0.066145,1,1,0,2,5,,2,5,Hill,St,1429402,0.276,0.342,0,1.417384,8.5,4.5,0.198434,0.198434,0.198434,0.198434,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.235856,0.213437,0.198434,0.198434,0.235856,0.213437,0.202907,0.230402,0.198434,0.198434,0.202907,0.230402,0.20384,0.345336,0.198434,0.198434,0.20384,0.345336,0.198434,0.198434,0.198434,0.198434,0.198434,0.198434,,,,,,,0.235856,0.213437,0.202907,0.230402,0.20384,0.345336,0.198434,0.198434,0.198434,0.198434,0.082663,0.075937,0.072778,0.081027,0.073058,0.115507,0.071436,0.071436,0.037041,0.037041,16.826698,18.594094,19.55904,17.225032,19.469596,11.492219,20,20,20,20,,,,,,,,,,,2064,2064,0.198434,0.198434,0.198434,0.198434,0.198434,0.198434,0.198434,0.198434,0.071436,0.071436,20,20,, +9853,1,0.057445,2,0,0,2,7,,2,5,Division,St,1430304,0.151,0.208,0,1.230961,8.5,4.5,0.172334,,0.172334,,20,,10000,,2270,,5000,,3226,,3440,,3436,,0.249134,,0.172334,,0.249134,,0.194647,,0.172334,,0.194647,,0.214456,,0.172334,,0.214456,,0.172334,,0.172334,,0.172334,,,,,,,,0.249134,,0.194647,,0.214456,,0.172334,,0.172334,,0.08508,,0.068734,,0.074677,,0.06204,,0.032169,,13.834708,,17.707398,,16.071767,,20,,20,,,,,,,,,,,,3440,,0.172334,,0.172334,,0.172334,,0.172334,,0.06204,,20,,, +10624,0,0.062612,1,1,0,2,3,,2,5,Packard,St,1430704,0.3,0.362,0,1.34168,6,5,0.125223,0.125223,0.125223,0.125223,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.148605,0.236888,0.125223,0.125223,0.148605,0.236888,0.142392,0.248402,0.125223,0.125223,0.142392,0.248402,0.166837,0.393787,0.125223,0.125223,0.166837,0.393787,0.125223,0.125223,0.125223,0.125223,0.125223,0.125223,,,,,,,0.148605,0.236888,0.142392,0.248402,0.166837,0.393787,0.125223,0.125223,0.125223,0.125223,0.055852,0.082336,0.053988,0.085791,0.061321,0.129406,0.048837,0.048837,0.025671,0.025671,25.27981,15.858571,26.382745,15.123491,22.517149,9.539929,30,30,30,30,,,,,,,,,,,2752,2752,0.125223,0.125223,0.125223,0.125223,0.125223,0.125223,0.125223,0.125223,0.048837,0.048837,30,30,, +10630,1,0.052153,1,0,0,2,7,,2,5,Madison,St,1430701,0.733,0.785,0,1.117562,8.5,4.5,0.156459,,0.156459,,20,,5000,,1135,,2500,,1613,,1720,,1718,,0.278009,,0.156459,,0.278009,,0.167408,,0.156459,,0.167408,,0.177482,,0.156459,,0.177482,,0.156459,,0.156459,,0.156459,,,,,,,,0.278009,,0.167408,,0.177482,,0.156459,,0.156459,,0.09279,,0.05961,,0.062632,,0.056325,,0.029206,,11.255669,,18.691891,,17.630914,,20,,20,,,,,,,,,,,,1720,,0.156459,,0.156459,,0.156459,,0.156459,,0.056325,,20,,, +11153,0,0.054066,1,1,0,2,7,,2,5,Thompson,St,1444801,0,0.054,0,1.158553,8.5,4.5,0.162197,0.162197,0.162197,0.162197,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.16632,0.164977,0.162197,0.162197,0.16632,0.164977,0.162348,0.194224,0.162197,0.162197,0.162348,0.194224,0.164219,0.460908,0.162197,0.162197,0.164219,0.460908,0.162197,0.162197,0.162197,0.162197,0.162197,0.162197,,,,,,,0.16632,0.164977,0.162348,0.194224,0.164219,0.460908,0.162197,0.162197,0.162197,0.162197,0.059628,0.059225,0.058436,0.067999,0.058998,0.148004,0.058391,0.058391,0.030277,0.030277,19.504243,19.662969,19.981476,16.702129,19.753748,7.038163,20,20,20,20,,,,,,,,,,,1720,1720,0.162197,0.162197,0.162197,0.162197,0.162197,0.162197,0.162197,0.162197,0.058391,0.058391,20,20,, +26639,0,0.089859,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.925554,0.15,4,0.539155,0.539155,0.539155,0.539155,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,,,,,,,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.177921,0.177921,0.177921,0.177921,0.177921,0.177921,0.177921,0.177921,0.090758,0.090758,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.539155,0.177921,0.177921,10,10,, +10125,1,0.0145,2,0,0,2,7,,2,5,Division,St,1430304,0.316,0.33,0,0.310717,8.5,4.5,0.0435,,0.0435,,20,,10000,,2270,,5000,,3226,,3440,,3436,,0.052259,,0.0435,,0.052259,,0.048002,,0.0435,,0.048002,,0.052684,,0.0435,,0.052684,,0.0435,,0.0435,,0.0435,,,,,,,,0.052259,,0.048002,,0.052684,,0.0435,,0.0435,,0.018288,,0.017011,,0.018415,,0.01566,,0.00812,,16.648023,,18.124344,,16.513745,,20,,20,,,,,,,,,,,,3440,,0.0435,,0.0435,,0.0435,,0.0435,,0.01566,,20,,, +10625,0,0.017033,1,1,0,2,3,,2,5,Packard,St,1430704,0.283,0.3,0,0.364996,6,5,0.034066,0.034066,0.034066,0.034066,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.087509,0.059415,0.034066,0.034066,0.087509,0.059415,0.05671,0.052938,0.034066,0.034066,0.05671,0.052938,0.082752,0.058154,0.034066,0.034066,0.082752,0.058154,0.034066,0.034066,0.034066,0.034066,0.034066,0.034066,,,,,,,0.087509,0.059415,0.05671,0.052938,0.082752,0.058154,0.034066,0.034066,0.034066,0.034066,0.029319,0.020891,0.020079,0.018947,0.027892,0.020512,0.013286,0.013286,0.006984,0.006984,11.678689,17.200767,18.021171,19.30556,12.349998,17.573716,30,30,30,30,,,,,,,,,,,2752,2752,0.034066,0.034066,0.034066,0.034066,0.034066,0.034066,0.034066,0.034066,0.013286,0.013286,30,30,, +10631,0,0.009899,1,1,0,2,7,,2,5,Madison,St,1430701,0.723,0.733,0,0.212126,8.5,4.5,0.029698,0.029698,0.029698,0.029698,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.029771,0.029698,0.029698,0.029698,0.029771,0.029698,0.029699,0.029716,0.029698,0.029698,0.029699,0.029716,0.029704,0.030278,0.029698,0.029698,0.029704,0.030278,0.029698,0.029698,0.029698,0.029698,0.029698,0.029698,,,,,,,0.029771,0.029698,0.029699,0.029716,0.029704,0.030278,0.029698,0.029698,0.029698,0.029698,0.010713,0.010691,0.010692,0.010697,0.010693,0.010865,0.010691,0.010691,0.005544,0.005544,19.951056,19.999924,19.999215,19.987375,19.995936,19.616617,20,20,20,20,,,,,,,,,,,1720,1720,0.029698,0.029698,0.029698,0.029698,0.029698,0.029698,0.029698,0.029698,0.010691,0.010691,20,20,, +10623,0,0.028975,1,1,0,2,3,,2,5,Packard,St,1430704,0.362,0.391,0,0.620902,6,5,0.057951,0.057951,0.057951,0.057951,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.081556,0.159461,0.057951,0.057951,0.081556,0.159461,0.094297,0.106623,0.057951,0.057951,0.094297,0.106623,0.167104,0.139524,0.057951,0.057951,0.167104,0.139524,0.057951,0.057951,0.057951,0.057951,0.057951,0.057951,,,,,,,0.081556,0.159461,0.094297,0.106623,0.167104,0.139524,0.057951,0.057951,0.057951,0.057951,0.029682,0.053054,0.033505,0.037203,0.055347,0.047073,0.022601,0.022601,0.01188,0.01188,21.317065,10.902508,18.436638,16.305329,10.403878,12.460402,30,30,30,30,,,,,,,,,,,2752,2752,0.057951,0.057951,0.057951,0.057951,0.057951,0.057951,0.057951,0.057951,0.022601,0.022601,30,30,, +9677,1,0.112621,3,0,0,2,4,,2,5,Division,St,1430304,0.455,0.568,0,2.413304,8,4.5,0.24133,,0.24133,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.258747,,0.24133,,0.258747,,0.261441,,0.24133,,0.261441,,0.279225,,0.24133,,0.279225,,0.24133,,0.24133,,0.24133,,,,,,,,0.258747,,0.261441,,0.279225,,0.24133,,0.24133,,0.097896,,0.098704,,0.104039,,0.092671,,0.048588,,26.115243,,25.846198,,24.200041,,28,,28,,,,,,,,,,,,7224,,0.24133,,0.24133,,0.24133,,0.24133,,0.092671,,28,,, +10340,-1,0.112724,0,3,0,2,4,,2,5,5th,Ave,1430303,0.312,0.425,0,2.415524,8,4.5,,0.241552,,0.241552,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.258016,,0.241552,,0.258016,,0.260876,,0.241552,,0.260876,,0.289814,,0.241552,,0.289814,,0.241552,,0.241552,,0.241552,,,,,,,,0.258016,,0.260876,,0.289814,,0.241552,,0.241552,,0.097695,,0.098553,,0.107235,,0.092756,,0.048633,,26.213378,,25.925982,,23.337269,,28,,28,,,,,,,,,,,,7224,,0.241552,,0.241552,,0.241552,,0.241552,,0.092756,,28,, +10594,0,0.057636,1,1,0,2,5,,1,5,William,St,1430705,0.492,0.55,0,1.235058,8.5,4.5,0.172908,0.172908,0.172908,0.172908,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.654681,0.173429,0.172908,0.172908,0.654681,0.173429,0.381317,0.178639,0.172908,0.172908,0.381317,0.178639,0.443299,0.341679,0.172908,0.172908,0.443299,0.341679,0.172908,0.172908,0.172908,0.172908,0.172908,0.172908,,,,,,,0.654681,0.173429,0.381317,0.178639,0.443299,0.341679,0.172908,0.172908,0.172908,0.172908,0.206779,0.062403,0.12477,0.063966,0.143364,0.112878,0.062247,0.062247,0.032276,0.032276,5.282208,19.939959,9.068996,19.358368,7.800963,10.121094,20,20,20,20,,,,,,,,,,,2064,2064,0.172908,0.172908,0.172908,0.172908,0.172908,0.172908,0.172908,0.172908,0.062247,0.062247,20,20,, +11152,0,0.116035,1,1,0,2,7,,2,5,Thompson,St,1444801,0.191,0.307,0,2.486466,8.5,4.5,0.348105,0.348105,0.348105,0.348105,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.348109,0.348159,0.348105,0.348105,0.348109,0.348159,0.348105,0.348117,0.348105,0.348105,0.348105,0.348117,0.348105,0.348108,0.348105,0.348105,0.348105,0.348108,0.348105,0.348105,0.348105,0.348105,0.348105,0.348105,,,,,,,0.348109,0.348159,0.348105,0.348117,0.348105,0.348108,0.348105,0.348105,0.348105,0.348105,0.125319,0.125334,0.125318,0.125321,0.125318,0.125319,0.125318,0.125318,0.06498,0.06498,19.999766,19.996918,20,19.999349,20,19.999845,20,20,20,20,,,,,,,,,,,1720,1720,0.348105,0.348105,0.348105,0.348105,0.348105,0.348105,0.348105,0.348105,0.125318,0.125318,20,20,, +25237,0,0.053912,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.155248,0.15,4,0.323469,0.323469,0.323469,0.323469,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,,,,,,,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.106745,0.106745,0.106745,0.106745,0.106745,0.106745,0.106745,0.106745,0.054451,0.054451,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.323469,0.106745,0.106745,10,10,, +30095,0,0.127059,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.7227,0.15,4,0.762356,0.762356,0.762356,0.762356,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,,,,,,,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.251577,0.251578,0.251577,0.251577,0.251577,0.251577,0.251577,0.251577,0.12833,0.12833,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.762356,0.251577,0.251577,10,10,, +9569,-1,0.045445,0,3,0,2,4,,2,5,5th,Ave,1430303,0.267,0.312,0,0.973822,8,4.5,,0.097382,,0.097382,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.099058,,0.097382,,0.099058,,0.101871,,0.097382,,0.101871,,0.111727,,0.097382,,0.111727,,0.097382,,0.097382,,0.097382,,,,,,,,0.099058,,0.101871,,0.111727,,0.097382,,0.097382,,0.037897,,0.038741,,0.041698,,0.037395,,0.019606,,27.526448,,26.76633,,24.405137,,28,,28,,,,,,,,,,,,7224,,0.097382,,0.097382,,0.097382,,0.097382,,0.037395,,28,, +10595,0,0.04888,1,1,0,2,5,,1,5,William,St,1430705,0.443,0.492,0,1.047435,8.5,4.5,0.146641,0.146641,0.146641,0.146641,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.521461,0.14726,0.146641,0.146641,0.521461,0.14726,0.300554,0.151321,0.146641,0.146641,0.300554,0.151321,0.355914,0.28134,0.146641,0.146641,0.355914,0.28134,0.146641,0.146641,0.146641,0.146641,0.146641,0.146641,,,,,,,0.521461,0.14726,0.300554,0.151321,0.355914,0.28134,0.146641,0.146641,0.146641,0.146641,0.165237,0.052976,0.098965,0.054195,0.115573,0.0932,0.052791,0.052791,0.027373,0.027373,5.624233,19.915953,9.758047,19.381376,8.240251,10.424463,20,20,20,20,,,,,,,,,,,2064,2064,0.146641,0.146641,0.146641,0.146641,0.146641,0.146641,0.146641,0.146641,0.052791,0.052791,20,20,, +29876,0,0.069251,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.483959,0.15,4,0.415509,0.415509,0.415509,0.415509,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,,,,,,,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.137118,0.137118,0.137118,0.137118,0.137118,0.137118,0.137118,0.137118,0.069944,0.069944,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.415509,0.137118,0.137118,10,10,, +26644,0,0.037112,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.795268,0.15,4,0.222675,0.222675,0.222675,0.222675,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,,,,,,,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.073483,0.073483,0.073483,0.073483,0.073483,0.073483,0.073483,0.073483,0.037484,0.037484,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.222675,0.073483,0.073483,10,10,, +29946,0,0.025061,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.537024,0.15,4,0.150367,0.150367,0.150367,0.150367,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,,,,,,,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.049621,0.049621,0.049621,0.049621,0.049621,0.049621,0.049621,0.049621,0.025312,0.025312,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.150367,0.049621,0.049621,10,10,, +10593,0,0.045119,1,1,0,2,5,,1,5,William,St,1430705,0.55,0.595,0,0.966838,8.5,4.5,0.135357,0.135357,0.135357,0.135357,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.239175,0.136553,0.135357,0.135357,0.239175,0.136553,0.161125,0.150058,0.135357,0.135357,0.161125,0.150058,0.153807,0.226345,0.135357,0.135357,0.153807,0.226345,0.135357,0.135357,0.135357,0.135357,0.135357,0.135357,,,,,,,0.239175,0.136553,0.161125,0.150058,0.153807,0.226345,0.135357,0.135357,0.135357,0.135357,0.079874,0.049087,0.056459,0.053139,0.054263,0.076025,0.048729,0.048729,0.025267,0.025267,11.318696,19.824898,16.801507,18.040726,17.600945,11.960247,20,20,20,20,,,,,,,,,,,2064,2064,0.135357,0.135357,0.135357,0.135357,0.135357,0.135357,0.135357,0.135357,0.048729,0.048729,20,20,, +9984,0,0.097596,1,1,0,2,4,,2,5,State,St,1427508,6.203,6.3,0,2.091352,8,4.5,0.209135,0.209135,0.209135,0.209135,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.597679,0.261727,0.209135,0.209135,0.597679,0.261727,0.331348,0.383675,0.209135,0.209135,0.331348,0.383675,0.332377,0.813732,0.209135,0.209135,0.332377,0.813732,0.209135,0.209135,0.209135,0.209135,0.209135,0.209135,,,,,,,0.597679,0.261727,0.331348,0.383675,0.332377,0.813732,0.209135,0.209135,0.209135,0.209135,0.196871,0.096085,0.116972,0.13267,0.117281,0.261687,0.080308,0.080308,0.042106,0.042106,9.797538,22.373638,17.672638,15.26235,17.617889,7.196206,28,28,28,28,,,,,,,,,,,2408,2408,0.209135,0.209135,0.209135,0.209135,0.209135,0.209135,0.209135,0.209135,0.080308,0.080308,28,28,, +10061,0,0.04855,1,1,0,2,5,,2,5,Hill,St,1429402,0.421,0.469,0,1.040354,8.5,4.5,0.14565,0.14565,0.14565,0.14565,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.204298,0.157466,0.14565,0.14565,0.204298,0.157466,0.159014,0.174577,0.14565,0.14565,0.159014,0.174577,0.160907,0.307926,0.14565,0.14565,0.160907,0.307926,0.14565,0.14565,0.14565,0.14565,0.14565,0.14565,,,,,,,0.204298,0.157466,0.159014,0.174577,0.160907,0.307926,0.14565,0.14565,0.14565,0.14565,0.070028,0.055979,0.056443,0.061112,0.057011,0.101117,0.052434,0.052434,0.027188,0.027188,14.258527,18.499223,18.319091,16.685981,18.103587,9.460055,20,20,20,20,,,,,,,,,,,2064,2064,0.14565,0.14565,0.14565,0.14565,0.14565,0.14565,0.14565,0.14565,0.052434,0.052434,20,20,, +10621,0,0.07733,1,1,0,2,3,,2,5,Packard,St,1430704,0.506,0.583,0,1.657074,6,5,0.15466,0.15466,0.15466,0.15466,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.245874,0.439271,0.15466,0.15466,0.245874,0.439271,0.224965,0.254992,0.15466,0.15466,0.224965,0.254992,0.430696,0.3635,0.15466,0.15466,0.430696,0.3635,0.15466,0.15466,0.15466,0.15466,0.15466,0.15466,,,,,,,0.245874,0.439271,0.224965,0.254992,0.430696,0.3635,0.15466,0.15466,0.15466,0.15466,0.087682,0.145701,0.081409,0.090417,0.143128,0.12297,0.060317,0.060317,0.031705,0.031705,18.870652,10.562523,20.624579,18.195875,10.772818,12.764241,30,30,30,30,,,,,,,,,,,2752,2752,0.15466,0.15466,0.15466,0.15466,0.15466,0.15466,0.15466,0.15466,0.060317,0.060317,30,30,, +26642,0,0.111244,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.383803,0.15,4,0.667465,0.667465,0.667465,0.667465,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,,,,,,,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.220263,0.220263,0.220263,0.220263,0.220263,0.220263,0.220263,0.220263,0.112357,0.112357,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.667465,0.220263,0.220263,10,10,, +9841,0,0.063856,1,1,0,2,5,,2,5,Hill,St,1429402,0.469,0.533,0,1.368344,8.5,4.5,0.191568,0.191568,0.191568,0.191568,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.439735,0.239981,0.191568,0.191568,0.439735,0.239981,0.311488,0.339083,0.191568,0.191568,0.311488,0.339083,0.34186,0.562012,0.191568,0.191568,0.34186,0.562012,0.191568,0.191568,0.191568,0.191568,0.191568,0.191568,,,,,,,0.439735,0.239981,0.311488,0.339083,0.34186,0.562012,0.191568,0.191568,0.191568,0.191568,0.143415,0.083488,0.10494,0.113219,0.114052,0.180098,0.068965,0.068965,0.035759,0.035759,8.712898,15.965275,12.3002,11.299182,11.207403,6.817232,20,20,20,20,,,,,,,,,,,2064,2064,0.191568,0.191568,0.191568,0.191568,0.191568,0.191568,0.191568,0.191568,0.068965,0.068965,20,20,, +10236,0,0.06295,1,1,0,2,4,,2,5,State,St,1427508,6.14,6.203,0,1.348919,8,4.5,0.134892,0.134892,0.134892,0.134892,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.654551,0.207678,0.134892,0.134892,0.654551,0.207678,0.377659,0.393308,0.134892,0.134892,0.377659,0.393308,0.399877,0.677743,0.134892,0.134892,0.399877,0.677743,0.134892,0.134892,0.134892,0.134892,0.134892,0.134892,,,,,,,0.654551,0.207678,0.377659,0.393308,0.399877,0.677743,0.134892,0.134892,0.134892,0.134892,0.207696,0.073634,0.124629,0.129323,0.131294,0.214654,0.051798,0.051798,0.027158,0.027158,5.770327,18.186683,10.001017,9.603092,9.445344,5.572869,28,28,28,28,,,,,,,,,,,2408,2408,0.134892,0.134892,0.134892,0.134892,0.134892,0.134892,0.134892,0.134892,0.051798,0.051798,28,28,, +10229,0,0.063094,1,1,0,2,4,,2,5,State,St,1427508,6.3,6.363,0,1.352021,8,4.5,0.135202,0.135202,0.135202,0.135202,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.219693,0.251733,0.135202,0.135202,0.219693,0.251733,0.217237,0.289984,0.135202,0.135202,0.217237,0.289984,0.318072,0.395584,0.135202,0.135202,0.318072,0.395584,0.135202,0.135202,0.135202,0.135202,0.135202,0.135202,,,,,,,0.219693,0.251733,0.217237,0.289984,0.318072,0.395584,0.135202,0.135202,0.135202,0.135202,0.077265,0.086877,0.076528,0.098352,0.106779,0.130032,0.051918,0.051918,0.027221,0.027221,17.231584,15.038364,17.426368,13.054725,11.90188,9.569786,28,28,28,28,,,,,,,,,,,2408,2408,0.135202,0.135202,0.135202,0.135202,0.135202,0.135202,0.135202,0.135202,0.051918,0.051918,28,28,, +9884,0,0.063824,2,2,0,2,5,,1,5,University,Ave,1429304,0,0.064,0,1.367663,8.5,4.5,0.191473,0.191473,0.191473,0.191473,20,20,12000,12000,2724,2724,6000,6000,3871,3871,4128,4128,4123,4123,0.233839,0.196675,0.191473,0.191473,0.233839,0.196675,0.207638,0.203908,0.191473,0.191473,0.207638,0.203908,0.223903,0.248379,0.191473,0.191473,0.223903,0.248379,0.191473,0.191473,0.191473,0.191473,0.191473,0.191473,,,,,,,0.233839,0.196675,0.207638,0.203908,0.223903,0.248379,0.191473,0.191473,0.191473,0.191473,0.08164,0.070491,0.07378,0.072661,0.078659,0.086002,0.06893,0.06893,0.035742,0.035742,16.376486,19.471009,18.442962,18.780309,17.103206,15.417763,20,20,20,20,,,,,,,,,,,4128,4128,0.191473,0.191473,0.191473,0.191473,0.191473,0.191473,0.191473,0.191473,0.06893,0.06893,20,20,, +10228,0,0.200797,1,1,0,2,4,,2,5,State,St,1427508,6.414,6.614,0,4.302792,8,4.5,0.430279,0.430279,0.430279,0.430279,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.537218,0.475657,0.430279,0.430279,0.537218,0.475657,0.541114,0.543983,0.430279,0.430279,0.541114,0.543983,0.528897,0.621282,0.430279,0.430279,0.528897,0.621282,0.430279,0.430279,0.430279,0.430279,0.430279,0.430279,,,,,,,0.537218,0.475657,0.541114,0.543983,0.528897,0.621282,0.430279,0.430279,0.430279,0.430279,0.197309,0.178841,0.198478,0.199338,0.194812,0.222528,0.165227,0.165227,0.08663,0.08663,22.426313,25.328772,22.264863,22.147404,22.779156,19.391853,28,28,28,28,,,,,,,,,,,2408,2408,0.430279,0.430279,0.430279,0.430279,0.430279,0.430279,0.430279,0.430279,0.165227,0.165227,28,28,, +9982,0,0.050613,1,1,0,2,4,,1,5,State,St,1427508,6.614,6.665,0,1.084558,8,4.5,0.108456,0.108456,0.108456,0.108456,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.212412,0.163927,0.108456,0.108456,0.212412,0.163927,0.210771,0.200055,0.108456,0.108456,0.210771,0.200055,0.255274,0.251462,0.108456,0.108456,0.255274,0.251462,0.108456,0.108456,0.108456,0.108456,0.108456,0.108456,,,,,,,0.212412,0.163927,0.210771,0.200055,0.255274,0.251462,0.108456,0.108456,0.108456,0.108456,0.072834,0.058288,0.072342,0.069127,0.085692,0.084549,0.041647,0.041647,0.021836,0.021836,14.296557,18.525147,14.407892,15.179634,11.89609,12.076448,28,28,28,28,,,,,,,,,,,2408,2408,0.108456,0.108456,0.108456,0.108456,0.108456,0.108456,0.108456,0.108456,0.041647,0.041647,28,28,, +10591,0,0.062995,1,1,0,2,5,,1,5,William,St,1430705,0.659,0.722,0,1.349895,8.5,4.5,0.188985,0.188985,0.188985,0.188985,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.409097,0.190452,0.188985,0.188985,0.409097,0.190452,0.235372,0.22206,0.188985,0.188985,0.235372,0.22206,0.234109,0.4196,0.188985,0.188985,0.234109,0.4196,0.188985,0.188985,0.188985,0.188985,0.188985,0.188985,,,,,,,0.409097,0.190452,0.235372,0.22206,0.234109,0.4196,0.188985,0.188985,0.188985,0.188985,0.134068,0.068475,0.081951,0.077957,0.081572,0.137219,0.068035,0.068035,0.035277,0.035277,9.239146,19.845936,16.058429,17.021136,16.145033,9.007872,20,20,20,20,,,,,,,,,,,2064,2064,0.188985,0.188985,0.188985,0.188985,0.188985,0.188985,0.188985,0.188985,0.068035,0.068035,20,20,, +10024,-1,0.061825,0,3,0,2,4,,1,5,5th,Ave,1430303,0.729,0.791,0,1.324818,8,4.5,,0.132482,,0.132482,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.288855,,0.132482,,0.288855,,0.196931,,0.132482,,0.196931,,0.2316,,0.132482,,0.2316,,0.132482,,0.132482,,0.132482,,,,,,,,0.288855,,0.196931,,0.2316,,0.132482,,0.132482,,0.097785,,0.070208,,0.080608,,0.050873,,0.026673,,12.842034,,18.836489,,16.016831,,28,,28,,,,,,,,,,,,7224,,0.132482,,0.132482,,0.132482,,0.132482,,0.050873,,28,, +10221,0,0.008221,1,1,0,2,5,,2,5,State,St,1427508,6.908,6.916,0,0.176174,8.5,4.5,0.024664,0.024664,0.024664,0.024664,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.025177,0.083623,0.024664,0.024664,0.025177,0.083623,0.024883,0.062217,0.024664,0.024664,0.024883,0.062217,0.02756,0.098657,0.024664,0.024664,0.02756,0.098657,0.024664,0.024664,0.024664,0.024664,0.024664,0.024664,,,,,,,0.025177,0.083623,0.024883,0.062217,0.02756,0.098657,0.024664,0.024664,0.024664,0.024664,0.009033,0.026567,0.008945,0.020145,0.009748,0.031077,0.008879,0.008879,0.004604,0.004604,19.592396,5.898972,19.824453,7.928433,17.898397,5,20,20,20,20,,,,,,,,,,,2064,2064,0.024664,0.024664,0.024664,0.024664,0.024664,0.024664,0.024664,0.024664,0.008879,0.008879,20,20,, +10291,1,0.050369,3,0,0,2,4,,1,5,Division,St,1430304,0.878,0.929,0,1.079339,8,4.5,0.107934,,0.107934,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.16644,,0.107934,,0.16644,,0.16946,,0.107934,,0.16946,,0.309008,,0.107934,,0.309008,,0.107934,,0.107934,,0.107934,,,,,,,,0.16644,,0.16946,,0.309008,,0.107934,,0.107934,,0.058998,,0.059905,,0.101769,,0.041447,,0.021731,,18.15763,,17.833945,,9.780154,,28,,28,,,,,,,,,,,,7224,,0.107934,,0.107934,,0.107934,,0.107934,,0.041447,,28,,, +22105,0,0.063544,1,1,0,2,5,,1,5,Liberty,St,4603025,8.029,8.092,0,1.361656,8.5,4.5,0.190632,0.190632,0.190632,0.190632,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.280283,0.208524,0.190632,0.190632,0.280283,0.208524,0.214634,0.231549,0.190632,0.190632,0.214634,0.231549,0.24053,0.30155,0.190632,0.190632,0.24053,0.30155,0.190632,0.190632,0.190632,0.190632,0.190632,0.190632,,,,,,,0.280283,0.208524,0.214634,0.231549,0.24053,0.30155,0.190632,0.190632,0.190632,0.190632,0.095523,0.073995,0.075828,0.080903,0.083597,0.101903,0.068627,0.068627,0.035585,0.035585,13.602826,18.283947,17.763443,16.465782,15.850973,12.643475,20,20,20,20,,,,,,,,,,,2064,2064,0.190632,0.190632,0.190632,0.190632,0.190632,0.190632,0.190632,0.190632,0.068627,0.068627,20,20,, +22123,0,0.155141,2,2,0,2,3,,1,5,Huron,St,4604878,2.511,2.666,0,3.324443,6,5,0.310281,0.310281,0.310281,0.310281,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.959121,0.358296,0.310281,0.310281,0.959121,0.358296,0.55984,0.475592,0.310281,0.310281,0.55984,0.475592,0.580997,0.824768,0.310281,0.310281,0.580997,0.824768,0.310281,0.310281,0.310281,0.310281,0.310281,0.310281,,,,,,,0.959121,0.358296,0.55984,0.475592,0.580997,0.824768,0.310281,0.310281,0.310281,0.310281,0.315661,0.135414,0.195877,0.170603,0.202224,0.275356,0.12101,0.12101,0.063608,0.063608,9.705181,25.979749,16.626952,19.572337,16.021489,11.286136,30,30,30,30,,,,,,,,,,,5504,5504,0.310281,0.310281,0.310281,0.310281,0.310281,0.310281,0.310281,0.310281,0.12101,0.12101,30,30,, +24714,0,0.109165,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.339241,0.15,4,0.654988,0.654988,0.654988,0.654988,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,,,,,,,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.216146,0.216146,0.216146,0.216146,0.216146,0.216146,0.216146,0.216146,0.110256,0.110256,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.654988,0.216146,0.216146,10,10,, +24715,0,0.112716,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.415343,0.15,4,0.676296,0.676296,0.676296,0.676296,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,,,,,,,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.223178,0.223178,0.223178,0.223178,0.223178,0.223178,0.223178,0.223178,0.113843,0.113843,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.676296,0.223178,0.223178,10,10,, +25234,0,0.062264,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.334228,0.15,4,0.373584,0.373584,0.373584,0.373584,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,,,,,,,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.123283,0.123283,0.123283,0.123283,0.123283,0.123283,0.123283,0.123283,0.062887,0.062887,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.373584,0.123283,0.123283,10,10,, +26246,0,0.091455,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.959759,0.15,4,0.548732,0.548732,0.548732,0.548732,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,,,,,,,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.181082,0.181082,0.181082,0.181082,0.181082,0.181082,0.181082,0.181082,0.09237,0.09237,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.548732,0.181082,0.181082,10,10,, +26623,0,0.115326,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.471273,0.15,4,0.691956,0.691956,0.691956,0.691956,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,,,,,,,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.228346,0.228346,0.228346,0.228346,0.228346,0.228346,0.228346,0.228346,0.116479,0.116479,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.691956,0.228346,0.228346,10,10,, +30056,0,0.134795,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.888456,0.15,4,0.808768,0.808768,0.808768,0.808768,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,,,,,,,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.266893,0.266893,0.266893,0.266893,0.266893,0.266893,0.266893,0.266893,0.136143,0.136143,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.808768,0.266893,0.266893,10,10,, +9511,-1,0.064166,0,3,0,2,4,,1,5,5th,Ave,1430303,0.601,0.665,0,1.37498,8,4.5,,0.137498,,0.137498,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.268655,,0.137498,,0.268655,,0.208932,,0.137498,,0.208932,,0.230722,,0.137498,,0.230722,,0.137498,,0.137498,,0.137498,,,,,,,,0.268655,,0.208932,,0.230722,,0.137498,,0.137498,,0.092146,,0.074229,,0.080767,,0.052799,,0.027683,,14.330463,,18.426824,,16.686488,,28,,28,,,,,,,,,,,,7224,,0.137498,,0.137498,,0.137498,,0.137498,,0.052799,,28,, +9948,1,0.063387,3,0,0,2,4,,1,5,Division,St,1430304,0.743,0.806,0,1.358288,8,4.5,0.135829,,0.135829,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.199327,,0.135829,,0.199327,,0.204737,,0.135829,,0.204737,,0.338073,,0.135829,,0.338073,,0.135829,,0.135829,,0.135829,,,,,,,,0.199327,,0.204737,,0.338073,,0.135829,,0.135829,,0.071208,,0.072831,,0.112831,,0.052158,,0.027347,,19.080265,,18.576062,,11.249668,,28,,28,,,,,,,,,,,,7224,,0.135829,,0.135829,,0.135829,,0.135829,,0.052158,,28,,, +21358,0,0.107921,2,2,0,2,3,,1,5,Huron,St,4604878,2.403,2.511,0,2.312586,6,5,0.215841,0.215841,0.215841,0.215841,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,1.070262,0.314893,0.215841,0.215841,1.070262,0.314893,0.46453,0.405422,0.215841,0.215841,0.46453,0.405422,0.600903,0.906113,0.215841,0.215841,0.600903,0.906113,0.215841,0.215841,0.215841,0.215841,0.215841,0.215841,,,,,,,1.070262,0.314893,0.46453,0.405422,0.600903,0.906113,0.215841,0.215841,0.215841,0.215841,0.340504,0.113894,0.158785,0.141052,0.199697,0.29126,0.084178,0.084178,0.044247,0.044247,6.050146,20.563281,13.939328,15.971617,10.775857,7.146174,30,30,30,30,,,,,,,,,,,5504,5504,0.215841,0.215841,0.215841,0.215841,0.215841,0.215841,0.215841,0.215841,0.084178,0.084178,30,30,, +21561,0,0.105851,1,1,0,2,5,,1,5,Liberty,St,4603025,7.883,7.989,0,2.268232,8.5,4.5,0.317552,0.317552,0.317552,0.317552,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.186789,0.3182,0.317552,0.317552,1.186789,0.3182,0.576424,0.346742,0.317552,0.317552,0.576424,0.346742,0.8573,0.651372,0.317552,0.317552,0.8573,0.651372,0.317552,0.317552,0.317552,0.317552,0.317552,0.317552,,,,,,,1.186789,0.3182,0.576424,0.346742,0.8573,0.651372,0.317552,0.317552,0.317552,0.317552,0.37509,0.114513,0.19198,0.123076,0.276243,0.214465,0.114319,0.114319,0.059276,0.059276,5.351456,19.959282,11.01801,18.316336,7.4082,9.750262,20,20,20,20,,,,,,,,,,,2064,2064,0.317552,0.317552,0.317552,0.317552,0.317552,0.317552,0.317552,0.317552,0.114319,0.114319,20,20,, +25244,0,0.086951,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.863237,0.15,4,0.521706,0.521706,0.521706,0.521706,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,,,,,,,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.172163,0.172163,0.172163,0.172163,0.172163,0.172163,0.172163,0.172163,0.087821,0.087821,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.521706,0.172163,0.172163,10,10,, +25633,0,0.076972,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.649408,0.15,4,0.461834,0.461834,0.461834,0.461834,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,,,,,,,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.152405,0.152405,0.152405,0.152405,0.152405,0.152405,0.152405,0.152405,0.077742,0.077742,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.461834,0.152405,0.152405,10,10,, +25634,0,0.053066,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.137123,0.15,4,0.318394,0.318394,0.318394,0.318394,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,,,,,,,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.10507,0.10507,0.10507,0.10507,0.10507,0.10507,0.10507,0.10507,0.053596,0.053596,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.318394,0.10507,0.10507,10,10,, +9758,-1,0.062892,0,3,0,2,4,,1,5,5th,Ave,1430303,0.538,0.601,0,1.347687,8,4.5,,0.134769,,0.134769,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.194207,,0.134769,,0.194207,,0.179165,,0.134769,,0.179165,,0.192447,,0.134769,,0.192447,,0.134769,,0.134769,,0.134769,,,,,,,,0.194207,,0.179165,,0.192447,,0.134769,,0.134769,,0.069583,,0.06507,,0.069055,,0.051751,,0.027133,,19.430378,,21.061695,,19.608121,,28,,28,,,,,,,,,,,,7224,,0.134769,,0.134769,,0.134769,,0.134769,,0.051751,,28,, +25033,0,0.053713,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.150983,0.15,4,0.322275,0.322275,0.322275,0.322275,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,,,,,,,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.106351,0.106351,0.106351,0.106351,0.106351,0.106351,0.106351,0.106351,0.05425,0.05425,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.322275,0.106351,0.106351,10,10,, +30091,0,0.076897,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.647787,0.15,4,0.46138,0.46138,0.46138,0.46138,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,,,,,,,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.152256,0.152256,0.152256,0.152256,0.152256,0.152256,0.152256,0.152256,0.077666,0.077666,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.46138,0.152256,0.152256,10,10,, +10287,-1,0.064582,0,3,0,2,4,,1,5,5th,Ave,1430303,0.665,0.729,0,1.383889,8,4.5,,0.138389,,0.138389,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.281098,,0.138389,,0.281098,,0.188226,,0.138389,,0.188226,,0.196936,,0.138389,,0.196936,,0.138389,,0.138389,,0.138389,,,,,,,,0.281098,,0.188226,,0.196936,,0.138389,,0.138389,,0.095954,,0.068093,,0.070705,,0.053141,,0.027862,,13.784845,,20.586354,,19.675885,,28,,28,,,,,,,,,,,,7224,,0.138389,,0.138389,,0.138389,,0.138389,,0.053141,,28,, +25245,0,0.026559,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.569111,0.15,4,0.159351,0.159351,0.159351,0.159351,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,,,,,,,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.052586,0.052586,0.052586,0.052586,0.052586,0.052586,0.052586,0.052586,0.026824,0.026824,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.159351,0.052586,0.052586,10,10,, +10185,1,0.063351,3,0,0,2,4,,1,5,Division,St,1430304,0.68,0.743,0,1.357511,8,4.5,0.135751,,0.135751,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.192193,,0.135751,,0.192193,,0.179981,,0.135751,,0.179981,,0.20755,,0.135751,,0.20755,,0.135751,,0.135751,,0.135751,,,,,,,,0.192193,,0.179981,,0.20755,,0.135751,,0.135751,,0.069061,,0.065397,,0.073668,,0.052128,,0.027331,,19.777179,,21.119065,,18.313774,,28,,28,,,,,,,,,,,,7224,,0.135751,,0.135751,,0.135751,,0.135751,,0.052128,,28,,, +21342,0,0.039842,1,1,0,2,5,,1,5,Liberty,St,4603025,7.989,8.029,0,0.853768,8.5,4.5,0.119527,0.119527,0.119527,0.119527,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.241783,0.130746,0.119527,0.119527,0.241783,0.130746,0.165178,0.144268,0.119527,0.119527,0.165178,0.144268,0.159423,0.243043,0.119527,0.119527,0.159423,0.243043,0.119527,0.119527,0.119527,0.119527,0.119527,0.119527,,,,,,,0.241783,0.130746,0.165178,0.144268,0.159423,0.243043,0.119527,0.119527,0.119527,0.119527,0.079707,0.046395,0.056725,0.050452,0.054999,0.080085,0.04303,0.04303,0.022312,0.022312,9.887172,18.283947,14.47253,16.570179,14.994968,9.835913,20,20,20,20,,,,,,,,,,,2064,2064,0.119527,0.119527,0.119527,0.119527,0.119527,0.119527,0.119527,0.119527,0.04303,0.04303,20,20,, +9760,1,0.067531,3,0,0,2,4,,1,5,Division,St,1430304,0.806,0.874,0,1.447091,8,4.5,0.144709,,0.144709,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.204485,,0.144709,,0.204485,,0.210764,,0.144709,,0.210764,,0.358561,,0.144709,,0.358561,,0.144709,,0.144709,,0.144709,,,,,,,,0.204485,,0.210764,,0.358561,,0.144709,,0.144709,,0.073501,,0.075385,,0.119724,,0.055568,,0.029135,,19.814906,,19.224638,,11.300322,,28,,28,,,,,,,,,,,,7224,,0.144709,,0.144709,,0.144709,,0.144709,,0.055568,,28,,, +9515,1,0.004418,3,0,0,2,4,,1,5,Division,St,1430304,0.874,0.878,0,0.094678,8,4.5,0.009468,,0.009468,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.02525,,0.009468,,0.02525,,0.021648,,0.009468,,0.021648,,0.042284,,0.009468,,0.042284,,0.009468,,0.009468,,0.009468,,,,,,,,0.02525,,0.021648,,0.042284,,0.009468,,0.009468,,0.00837,,0.00729,,0.01348,,0.003636,,0.001906,,10.498967,,12.245727,,6.269475,,28,,28,,,,,,,,,,,,7224,,0.009468,,0.009468,,0.009468,,0.009468,,0.003636,,28,,, +9570,1,0.102191,3,0,0,2,4,,2,5,Division,St,1430304,1.047,1.149,0,2.189806,8,4.5,0.218981,,0.218981,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.298067,,0.218981,,0.298067,,0.301808,,0.218981,,0.301808,,0.539,,0.218981,,0.539,,0.218981,,0.218981,,0.218981,,,,,,,,0.298067,,0.301808,,0.539,,0.218981,,0.218981,,0.107815,,0.108937,,0.180094,,0.084089,,0.044088,,20.570707,,20.315764,,11.375626,,28,,28,,,,,,,,,,,,7224,,0.218981,,0.218981,,0.218981,,0.218981,,0.084089,,28,,, +9810,-1,0.127991,0,3,0,2,4,,1,5,5th,Ave,1430303,0.859,0.987,0,2.742669,8,4.5,,0.274267,,0.274267,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.350227,,0.274267,,0.350227,,0.287159,,0.274267,,0.287159,,0.294676,,0.274267,,0.294676,,0.274267,,0.274267,,0.274267,,,,,,,,0.350227,,0.287159,,0.294676,,0.274267,,0.274267,,0.128107,,0.109186,,0.111441,,0.105318,,0.055219,,21.927117,,26.742903,,26.060755,,28,,28,,,,,,,,,,,,7224,,0.274267,,0.274267,,0.274267,,0.274267,,0.105318,,28,, +10584,-1,0.168301,0,2,0,2,3,,2,5,Beakes,St,1430801,0.154,0.322,0,3.606449,6,5,,0.336602,,0.336602,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.925794,,0.336602,,0.925794,,0.645431,,0.336602,,0.645431,,1.203229,,0.336602,,1.203229,,0.336602,,0.336602,,0.336602,,,,,,,,0.925794,,0.645431,,1.203229,,0.336602,,0.336602,,0.308032,,0.223923,,0.391263,,0.131275,,0.069003,,10.907457,,15.64546,,8.392465,,30,,30,,,,,,,,,,,,5504,,0.336602,,0.336602,,0.336602,,0.336602,,0.131275,,30,, +26621,0,0.062371,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.336531,0.15,4,0.374229,0.374229,0.374229,0.374229,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,,,,,,,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.123495,0.123495,0.123495,0.123495,0.123495,0.123495,0.123495,0.123495,0.062995,0.062995,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.374229,0.123495,0.123495,10,10,, +26740,0,0.05858,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.255279,0.15,4,0.351478,0.351478,0.351478,0.351478,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,,,,,,,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.115988,0.115988,0.115988,0.115988,0.115988,0.115988,0.115988,0.115988,0.059166,0.059166,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.351478,0.115988,0.115988,10,10,, +29942,0,0.099676,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.135923,0.15,4,0.598058,0.598058,0.598058,0.598058,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,,,,,,,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.197359,0.197359,0.197359,0.197359,0.197359,0.197359,0.197359,0.197359,0.100673,0.100673,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.598058,0.197359,0.197359,10,10,, +9814,1,0.060212,3,0,0,2,4,,1,5,Division,St,1430304,0.987,1.047,0,1.290266,8,4.5,0.129027,,0.129027,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.175785,,0.129027,,0.175785,,0.1804,,0.129027,,0.1804,,0.311258,,0.129027,,0.311258,,0.129027,,0.129027,,0.129027,,,,,,,,0.175785,,0.1804,,0.311258,,0.129027,,0.129027,,0.063574,,0.064958,,0.104216,,0.049546,,0.025977,,20.552081,,20.026317,,11.606928,,28,,28,,,,,,,,,,,,7224,,0.129027,,0.129027,,0.129027,,0.129027,,0.049546,,28,,, +26647,0,0.053498,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.146378,0.15,4,0.320986,0.320986,0.320986,0.320986,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,,,,,,,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.105925,0.105925,0.105925,0.105925,0.105925,0.105925,0.105925,0.105925,0.054033,0.054033,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.320986,0.105925,0.105925,10,10,, +10028,1,0.006493,3,0,0,2,4,,1,5,Division,St,1430304,0.929,0.935,0,0.139131,8,4.5,0.013913,,0.013913,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.021645,,0.013913,,0.021645,,0.030822,,0.013913,,0.030822,,0.076812,,0.013913,,0.076812,,0.013913,,0.013913,,0.013913,,,,,,,,0.021645,,0.030822,,0.076812,,0.013913,,0.013913,,0.007662,,0.010415,,0.024212,,0.005343,,0.002801,,17.998257,,12.639459,,5.071736,,28,,28,,,,,,,,,,,,7224,,0.013913,,0.013913,,0.013913,,0.013913,,0.005343,,28,,, +26620,0,0.056873,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.218701,0.15,4,0.341236,0.341236,0.341236,0.341236,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,,,,,,,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.112608,0.112608,0.112608,0.112608,0.112608,0.112608,0.112608,0.112608,0.057441,0.057441,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.341236,0.112608,0.112608,10,10,, +9944,1,0.078391,3,0,0,2,4,,2,5,Division,St,1430304,1.149,1.228,0,1.679804,8,4.5,0.16798,,0.16798,,28,,21000,,4767,,10500,,6775,,7224,,7216,,0.230087,,0.16798,,0.230087,,0.234225,,0.16798,,0.234225,,0.417077,,0.16798,,0.417077,,0.16798,,0.16798,,0.16798,,,,,,,,0.230087,,0.234225,,0.417077,,0.16798,,0.16798,,0.083136,,0.084378,,0.139233,,0.064504,,0.03382,,20.442079,,20.080926,,11.277177,,28,,28,,,,,,,,,,,,7224,,0.16798,,0.16798,,0.16798,,0.16798,,0.064504,,28,,, +10223,0,0.062553,1,1,0,2,4,,1,5,State,St,1427508,6.782,6.844,0,1.340425,8,4.5,0.134043,0.134043,0.134043,0.134043,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.257635,0.279492,0.134043,0.134043,0.257635,0.279492,0.217201,0.248423,0.134043,0.134043,0.217201,0.248423,0.335373,0.402566,0.134043,0.134043,0.335373,0.402566,0.134043,0.134043,0.134043,0.134043,0.134043,0.134043,,,,,,,0.257635,0.279492,0.217201,0.248423,0.335373,0.402566,0.134043,0.134043,0.134043,0.134043,0.08855,0.095107,0.07642,0.085787,0.111871,0.132029,0.051472,0.051472,0.026987,0.026987,14.567886,13.42862,17.279828,15.10804,11.191093,9.323166,28,28,28,28,,,,,,,,,,,2408,2408,0.134043,0.134043,0.134043,0.134043,0.134043,0.134043,0.134043,0.134043,0.051472,0.051472,28,28,, +9981,0,0.06414,1,1,0,2,4,,1,5,State,St,1427508,6.718,6.782,0,1.374433,8,4.5,0.137443,0.137443,0.137443,0.137443,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.201889,0.17001,0.137443,0.137443,0.201889,0.17001,0.1706,0.16832,0.137443,0.137443,0.1706,0.16832,0.186222,0.215562,0.137443,0.137443,0.186222,0.215562,0.137443,0.137443,0.137443,0.137443,0.137443,0.137443,,,,,,,0.201889,0.17001,0.1706,0.16832,0.186222,0.215562,0.137443,0.137443,0.137443,0.137443,0.072112,0.062548,0.062725,0.062041,0.067412,0.076214,0.052778,0.052778,0.027672,0.027672,19.061978,22.636395,22.558096,22.863721,20.665736,17.85294,28,28,28,28,,,,,,,,,,,2408,2408,0.137443,0.137443,0.137443,0.137443,0.137443,0.137443,0.137443,0.137443,0.052778,0.052778,28,28,, +21912,0,0.062648,1,1,0,2,5,,1,5,Liberty,St,4603025,8.092,8.155,0,1.342448,8.5,4.5,0.187943,0.187943,0.187943,0.187943,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.326439,0.191476,0.187943,0.187943,0.326439,0.191476,0.221031,0.211307,0.187943,0.187943,0.221031,0.211307,0.229785,0.381459,0.187943,0.187943,0.229785,0.381459,0.187943,0.187943,0.187943,0.187943,0.187943,0.187943,,,,,,,0.326439,0.191476,0.221031,0.211307,0.229785,0.381459,0.187943,0.187943,0.187943,0.187943,0.109208,0.068719,0.077586,0.074669,0.080212,0.125714,0.067659,0.067659,0.035083,0.035083,11.514733,19.630925,17.006023,17.788576,16.358152,9.853884,20,20,20,20,,,,,,,,,,,2064,2064,0.187943,0.187943,0.187943,0.187943,0.187943,0.187943,0.187943,0.187943,0.067659,0.067659,20,20,, +25233,0,0.08252,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.768277,0.15,4,0.495118,0.495118,0.495118,0.495118,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,,,,,,,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.163389,0.163389,0.163389,0.163389,0.163389,0.163389,0.163389,0.163389,0.083345,0.083345,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.495118,0.163389,0.163389,10,10,, +25235,0,0.009019,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.19326,0.15,4,0.054113,0.054113,0.054113,0.054113,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,,,,,,,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.017857,0.017857,0.017857,0.017857,0.017857,0.017857,0.017857,0.017857,0.009109,0.009109,9.999999,9.999999,9.999998,9.999999,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.054113,0.017857,0.017857,10,10,, +9980,0,0.06356,1,1,0,2,5,,2,5,State,St,1427508,6.844,6.908,0,1.361992,8.5,4.5,0.190679,0.190679,0.190679,0.190679,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.255473,0.249813,0.190679,0.190679,0.255473,0.249813,0.252448,0.264425,0.190679,0.190679,0.252448,0.264425,0.274254,0.315073,0.190679,0.190679,0.274254,0.315073,0.190679,0.190679,0.190679,0.190679,0.190679,0.190679,,,,,,,0.255473,0.249813,0.252448,0.264425,0.274254,0.315073,0.190679,0.190679,0.190679,0.190679,0.088083,0.086385,0.087175,0.090768,0.093717,0.105963,0.068644,0.068644,0.035593,0.035593,14.927515,15.265746,15.106394,14.422152,13.905269,12.103783,20,20,20,20,,,,,,,,,,,2064,2064,0.190679,0.190679,0.190679,0.190679,0.190679,0.190679,0.190679,0.190679,0.068644,0.068644,20,20,, +26645,0,0.05146,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.102714,0.15,4,0.30876,0.30876,0.30876,0.30876,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,,,,,,,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.101891,0.101891,0.101891,0.101891,0.101891,0.101891,0.101891,0.101891,0.051975,0.051975,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.30876,0.101891,0.101891,10,10,, +26646,0,0.059526,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.275563,0.15,4,0.357158,0.357158,0.357158,0.357158,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,,,,,,,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.117862,0.117862,0.117862,0.117862,0.117862,0.117862,0.117862,0.117862,0.060122,0.060122,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.357158,0.117862,0.117862,10,10,, +9976,0,0.125235,1,1,0,2,5,,2,5,State,St,1427508,7.097,7.222,0,2.683614,8.5,4.5,0.375706,0.375706,0.375706,0.375706,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.392276,0.422717,0.375706,0.375706,0.392276,0.422717,0.382924,0.393989,0.375706,0.375706,0.382924,0.393989,0.532256,0.518302,0.375706,0.375706,0.532256,0.518302,0.375706,0.375706,0.375706,0.375706,0.375706,0.375706,,,,,,,0.392276,0.422717,0.382924,0.393989,0.532256,0.518302,0.375706,0.375706,0.375706,0.375706,0.140225,0.149357,0.137419,0.140739,0.182219,0.178033,0.135254,0.135254,0.070132,0.070132,19.155176,17.775774,19.623017,19.071904,14.117495,14.497584,20,20,20,20,,,,,,,,,,,2064,2064,0.375706,0.375706,0.375706,0.375706,0.375706,0.375706,0.375706,0.375706,0.135254,0.135254,20,20,, +9979,0,0.11358,1,1,0,2,5,,2,5,State,St,1427508,6.971,7.084,0,2.433847,8.5,4.5,0.340739,0.340739,0.340739,0.340739,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.431183,0.343116,0.340739,0.340739,0.431183,0.343116,0.366394,0.349867,0.340739,0.340739,0.366394,0.349867,0.384605,0.384463,0.340739,0.340739,0.384605,0.384463,0.340739,0.340739,0.340739,0.340739,0.340739,0.340739,,,,,,,0.431183,0.343116,0.366394,0.349867,0.384605,0.384463,0.340739,0.340739,0.340739,0.340739,0.149799,0.123379,0.130363,0.125404,0.135826,0.135783,0.122666,0.122666,0.063605,0.063605,15.804814,19.861396,18.599556,19.478182,17.7189,17.725448,20,20,20,20,,,,,,,,,,,2064,2064,0.340739,0.340739,0.340739,0.340739,0.340739,0.340739,0.340739,0.340739,0.122666,0.122666,20,20,, +30084,0,0.109126,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.338411,0.15,4,0.654755,0.654755,0.654755,0.654755,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,,,,,,,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.216069,0.216069,0.216069,0.216069,0.216069,0.216069,0.216069,0.216069,0.110217,0.110217,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.654755,0.216069,0.216069,10,10,, +30085,0,0.047819,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.024694,0.15,4,0.286914,0.286914,0.286914,0.286914,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,,,,,,,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.094682,0.094682,0.094682,0.094682,0.094682,0.094682,0.094682,0.094682,0.048297,0.048297,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.286914,0.094682,0.094682,10,10,, +10219,0,0.012839,1,1,0,2,5,,2,5,State,St,1427508,7.084,7.097,0,0.275131,8.5,4.5,0.038518,0.038518,0.038518,0.038518,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.053231,0.039186,0.038518,0.038518,0.053231,0.039186,0.043027,0.040646,0.038518,0.038518,0.043027,0.040646,0.044603,0.049221,0.038518,0.038518,0.044603,0.049221,0.038518,0.038518,0.038518,0.038518,0.038518,0.038518,,,,,,,0.053231,0.039186,0.043027,0.040646,0.044603,0.049221,0.038518,0.038518,0.038518,0.038518,0.018281,0.014067,0.015219,0.014505,0.015692,0.017077,0.013867,0.013867,0.00719,0.00719,14.472048,19.65937,17.904405,18.953079,17.271765,15.65132,20,20,20,20,,,,,,,,,,,2064,2064,0.038518,0.038518,0.038518,0.038518,0.038518,0.038518,0.038518,0.038518,0.013867,0.013867,20,20,, +10568,1,0.128183,2,0,0,1,2,RON,3,5,N US 23 BR,,1430809,0.074,0.202,0,,1.09,4,0.192275,,0.192275,,40,,29500,,6697,,14750,,9517,,10148,,10136,,0.198543,,0.192275,,0.198543,,0.198729,,0.192275,,0.198729,,0.255365,,0.192275,,0.255365,,0.192275,,0.192275,,0.192275,,,,,,,,0.198543,,0.198729,,0.255365,,0.192275,,0.192275,,0.082636,,0.082692,,0.099682,,0.080755,,0.042941,,38.73715,,38.700958,,30.117699,,40,,40,,,,,,,,,,,,10148,,0.192275,,0.192275,,0.192275,,0.192275,,0.080755,,40,,, +10571,-1,0.202547,0,2,0,1,2,ROF,3,5,S US 23 BR,,1430808,0.078,0.28,0,,2.24,5,,0.347224,,0.347224,,35,,29500,,6697,,14750,,9517,,10148,,10136,,0.534427,,0.347224,,0.534427,,0.360401,,0.347224,,0.360401,,0.370435,,0.347224,,0.370435,,0.347224,,0.347224,,0.347224,,,,,,,,0.534427,,0.360401,,0.370435,,0.347224,,0.347224,,0.196787,,0.144579,,0.147589,,0.140626,,0.074364,,22.739968,,33.720392,,32.80694,,35,,35,,,,,,,,,,,,10148,,0.347224,,0.347224,,0.347224,,0.347224,,0.140626,,35,, +10572,-1,0.044517,0,2,0,2,3,DIV,3,5,Main,St,1430808,0.033,0.078,0,0.953941,5,5,,0.066776,,0.066776,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.486107,,0.066776,,0.486107,,0.102387,,0.066776,,0.102387,,0.133307,,0.066776,,0.133307,,0.066776,,0.066776,,0.066776,,,,,,,,0.486107,,0.102387,,0.133307,,0.066776,,0.066776,,0.153845,,0.038729,,0.048005,,0.028046,,0.014913,,5.494747,,26.087572,,20.036739,,40,,40,,,,,,,,,,,,6880,,0.066776,,0.066776,,0.066776,,0.066776,,0.028046,,40,, +10578,0,0.086063,1,1,0,2,4,,2,5,Depot,St,1430804,0,0.086,0,1.844214,8,4.5,0.184421,0.184421,0.184421,0.184421,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.03276,0.213367,0.184421,0.184421,1.03276,0.213367,0.451492,0.295952,0.184421,0.184421,0.451492,0.295952,0.524637,1.03276,0.184421,0.184421,0.524637,1.03276,0.184421,0.184421,0.184421,0.184421,0.184421,0.184421,,,,,,,1.03276,0.213367,0.451492,0.295952,0.524637,1.03276,0.184421,0.184421,0.184421,0.184421,0.325319,0.079501,0.150939,0.104277,0.172883,0.325319,0.070818,0.070818,0.03713,0.03713,5,24.201509,11.437184,17.448083,9.842603,5,28,28,28,28,,,,,,,,,,,2408,2408,0.184421,0.184421,0.184421,0.184421,0.184421,0.184421,0.184421,0.184421,0.070818,0.070818,28,28,, +21506,0,0.633294,2,2,0,2,3,,3,5,Main,St,4603186,2.225,2.858,0,13.57058,5,5,1.085646,1.085646,1.085646,1.085646,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,1.182111,4.280998,1.085646,1.085646,1.182111,4.280998,1.262419,1.340912,1.085646,1.085646,1.262419,1.340912,3.477403,1.564655,1.085646,1.085646,3.477403,1.564655,1.085646,1.085646,1.085646,1.085646,1.085646,1.085646,,,,,,,1.182111,4.280998,1.262419,1.340912,3.477403,1.564655,1.085646,1.085646,1.085646,1.085646,0.468626,1.398292,0.492719,0.516267,1.157214,0.583389,0.439687,0.439687,0.232509,0.232509,32.143879,8.875881,30.09905,28.337148,10.927014,24.284989,35,35,35,35,,,,,,,,,,,7568,7568,1.085646,1.085646,1.085646,1.085646,1.085646,1.085646,1.085646,1.085646,0.439687,0.439687,35,35,, +21936,0,0.01919,1,1,0,2,4,,3,5,Huron River,Dr,4604062,9.301,9.32,0,0.411213,6,4.5,0.034891,0.034891,0.034891,0.034891,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.035225,0.034891,0.034891,0.034891,0.035225,0.034891,0.034897,0.034891,0.034891,0.034891,0.034897,0.034891,0.035342,0.034891,0.034891,0.034891,0.035342,0.034891,0.034891,0.034891,0.034891,0.034891,0.034891,0.034891,,,,,,,0.035225,0.034891,0.034897,0.034891,0.035342,0.034891,0.034891,0.034891,0.034891,0.034891,0.014022,0.013921,0.013923,0.013921,0.014057,0.013921,0.013921,0.013921,0.007345,0.007345,32.687195,32.999981,32.993988,32.999936,32.578513,33,33,33,33,33,,,,,,,,,,,2580,2580,0.034891,0.034891,0.034891,0.034891,0.034891,0.034891,0.034891,0.034891,0.013921,0.013921,33,33,, +26388,0,0.334628,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.170606,0.15,4,2.00777,2.00777,2.00777,2.00777,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,,,,,,,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,0.662564,0.662564,0.662564,0.662564,0.662564,0.662564,0.662564,0.662564,0.337975,0.337975,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,2.00777,0.662564,0.662564,10,10,, +26612,0,0.076453,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.638271,0.15,4,0.458716,0.458716,0.458716,0.458716,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,,,,,,,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.151376,0.151376,0.151376,0.151376,0.151376,0.151376,0.151376,0.151376,0.077217,0.077217,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.458716,0.151376,0.151376,10,10,, +30022,0,0.350783,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.516787,0.15,4,2.1047,2.1047,2.1047,2.1047,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,,,,,,,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,0.694551,0.694551,0.694551,0.694551,0.694551,0.694551,0.694551,0.694551,0.354291,0.354291,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,2.1047,0.694551,0.694551,10,10,, +30024,0,0.328313,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.035281,0.15,4,1.969879,1.969879,1.969879,1.969879,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,,,,,,,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,0.65006,0.65006,0.65006,0.65006,0.65006,0.65006,0.65006,0.65006,0.331596,0.331596,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,1.969879,0.65006,0.65006,10,10,, +26389,0,0.414763,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.887777,0.15,4,2.488578,2.488578,2.488578,2.488578,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,,,,,,,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,0.821231,0.821231,0.821231,0.821231,0.821231,0.821231,0.821231,0.821231,0.418911,0.418911,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,2.488578,0.821231,0.821231,10,10,, +10579,0,0.087415,1,1,0,2,5,,2,5,Summit,St,1430803,0.473,0.56,0,1.873175,8.5,4.5,0.262245,0.262245,0.262245,0.262245,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.516225,0.269353,0.262245,0.262245,0.516225,0.269353,0.300687,0.287563,0.262245,0.262245,0.300687,0.287563,0.332081,0.716143,0.262245,0.262245,0.332081,0.716143,0.262245,0.262245,0.262245,0.262245,0.262245,0.262245,,,,,,,0.516225,0.269353,0.300687,0.287563,0.332081,0.716143,0.262245,0.262245,0.262245,0.262245,0.170602,0.09654,0.105941,0.102003,0.115359,0.230577,0.094408,0.094408,0.048952,0.048952,10.160092,19.472209,17.443045,18.239126,15.794003,7.323807,20,20,20,20,,,,,,,,,,,2064,2064,0.262245,0.262245,0.262245,0.262245,0.262245,0.262245,0.262245,0.262245,0.094408,0.094408,20,20,, +21719,0,0.038472,2,2,0,2,3,,2,5,Main,St,4603186,2.187,2.225,0,0.824396,6,5,0.076944,0.076944,0.076944,0.076944,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.094089,0.282985,0.076944,0.076944,0.094089,0.282985,0.095077,0.09509,0.076944,0.076944,0.095077,0.09509,0.279604,0.125419,0.076944,0.076944,0.279604,0.125419,0.076944,0.076944,0.076944,0.076944,0.076944,0.076944,,,,,,,0.094089,0.282985,0.095077,0.09509,0.279604,0.125419,0.076944,0.076944,0.076944,0.076944,0.035152,0.09182,0.035448,0.035452,0.090806,0.044551,0.030008,0.030008,0.015773,0.015773,24.533281,8.157006,24.27835,24.274883,8.255634,18.404721,30,30,30,30,,,,,,,,,,,5504,5504,0.076944,0.076944,0.076944,0.076944,0.076944,0.076944,0.076944,0.076944,0.030008,0.030008,30,30,, +10339,0,0.037781,1,1,0,2,7,,2,5,5th,Ave,1430303,1.106,1.144,0,0.809596,8.5,4.5,0.113343,0.113343,0.113343,0.113343,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.113347,0.113485,0.113343,0.113343,0.113347,0.113485,0.113346,0.113638,0.113343,0.113343,0.113346,0.113638,0.113347,0.119547,0.113343,0.113343,0.113347,0.119547,0.113343,0.113343,0.113343,0.113343,0.113343,0.113343,,,,,,,0.113347,0.113485,0.113346,0.113638,0.113347,0.119547,0.113343,0.113343,0.113343,0.113343,0.040805,0.040846,0.040804,0.040892,0.040805,0.042665,0.040804,0.040804,0.021157,0.021157,19.99945,19.975077,19.999547,19.948221,19.999316,18.962093,20,20,20,20,,,,,,,,,,,1720,1720,0.113343,0.113343,0.113343,0.113343,0.113343,0.113343,0.113343,0.113343,0.040804,0.040804,20,20,, +10577,0,0.067654,1,1,0,2,4,,2,5,Depot,St,1430804,0.086,0.154,0,1.449729,8,4.5,0.144973,0.144973,0.144973,0.144973,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.776105,0.164689,0.144973,0.144973,0.776105,0.164689,0.332877,0.226615,0.144973,0.144973,0.332877,0.226615,0.397686,0.498306,0.144973,0.144973,0.397686,0.498306,0.144973,0.144973,0.144973,0.144973,0.144973,0.144973,,,,,,,0.776105,0.164689,0.332877,0.226615,0.397686,0.498306,0.144973,0.144973,0.144973,0.144973,0.245009,0.061584,0.112041,0.080162,0.131484,0.16167,0.05567,0.05567,0.029188,0.029188,5.230271,24.647974,12.194427,17.91253,10.207151,8.146073,28,28,28,28,,,,,,,,,,,2408,2408,0.144973,0.144973,0.144973,0.144973,0.144973,0.144973,0.144973,0.144973,0.05567,0.05567,28,28,, +9514,0,0.03846,1,1,0,2,7,,2,5,4th,Ave,1430302,0.969,1.007,0,0.824153,8.5,4.5,0.115381,0.115381,0.115381,0.115381,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.115386,0.122474,0.115381,0.115381,0.115386,0.122474,0.11539,0.115397,0.115381,0.115381,0.11539,0.115397,0.120514,0.115382,0.115381,0.115381,0.120514,0.115382,0.115381,0.115381,0.115381,0.115381,0.115381,0.115381,,,,,,,0.115386,0.122474,0.11539,0.115397,0.120514,0.115382,0.115381,0.115381,0.115381,0.115381,0.041539,0.043665,0.04154,0.041542,0.043077,0.041537,0.041537,0.041537,0.021538,0.021538,19.999181,18.841825,19.998561,19.99734,19.148145,19.999941,20,20,20,20,,,,,,,,,,,1720,1720,0.115381,0.115381,0.115381,0.115381,0.115381,0.115381,0.115381,0.115381,0.041537,0.041537,20,20,, +26614,0,0.070335,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.507169,0.15,4,0.422007,0.422007,0.422007,0.422007,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,,,,,,,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.139262,0.139262,0.139262,0.139262,0.139262,0.139262,0.139262,0.139262,0.071038,0.071038,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.422007,0.139262,0.139262,10,10,, +26611,0,0.009358,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.200536,0.15,4,0.05615,0.05615,0.05615,0.05615,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,,,,,,,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.01853,0.01853,0.01853,0.01853,0.01853,0.01853,0.01853,0.01853,0.009452,0.009452,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.05615,0.01853,0.01853,10,10,, +11034,1,0.037629,1,0,0,2,4,,2,5,Swift,St,1451303,0.071,0.109,0,0.806344,8,4.5,0.080634,,0.080634,,28,,7000,,1589,,3500,,2258,,2408,,2405,,0.451553,,0.080634,,0.451553,,0.112677,,0.080634,,0.112677,,0.147464,,0.080634,,0.147464,,0.080634,,0.080634,,0.080634,,,,,,,,0.451553,,0.112677,,0.147464,,0.080634,,0.080634,,0.142239,,0.040576,,0.051013,,0.030964,,0.016234,,5,,20.037449,,15.310583,,28,,28,,,,,,,,,,,,2408,,0.080634,,0.080634,,0.080634,,0.080634,,0.030964,,28,,, +10950,-1,0.068439,0,1,0,2,4,,2,5,Moore,St,1451305,0,0.068,0,1.466552,8,4.5,,0.146655,,0.146655,,28,,7000,,1589,,3500,,2258,,2408,,2405,,0.219196,,0.146655,,0.219196,,0.198934,,0.146655,,0.198934,,0.407267,,0.146655,,0.407267,,0.146655,,0.146655,,0.146655,,,,,,,,0.219196,,0.198934,,0.407267,,0.146655,,0.146655,,0.078078,,0.071999,,0.134499,,0.056316,,0.029527,,18.733645,,20.641761,,10.082683,,28,,28,,,,,,,,,,,,2408,,0.146655,,0.146655,,0.146655,,0.146655,,0.056316,,28,, +11032,-1,0.101775,0,1,0,2,4,,2,5,Pontiac,St,1451302,0,0.102,0,2.180882,8,4.5,,0.218088,,0.218088,,28,,7000,,1589,,3500,,2258,,2408,,2405,,1.221294,,0.218088,,1.221294,,0.304753,,0.218088,,0.304753,,0.39884,,0.218088,,0.39884,,0.218088,,0.218088,,0.218088,,,,,,,,1.221294,,0.304753,,0.39884,,0.218088,,0.218088,,0.384708,,0.109745,,0.137971,,0.083746,,0.043908,,5,,20.037449,,15.310583,,28,,28,,,,,,,,,,,,2408,,0.218088,,0.218088,,0.218088,,0.218088,,0.083746,,28,, +10539,0,0.276339,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.117,0.393,0,5.921548,6,4.5,0.502434,0.502434,0.502434,0.502434,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.316067,1.199499,0.502434,0.502434,3.316067,1.199499,1.427194,1.174362,0.502434,0.502434,1.427194,1.174362,2.396995,3.316067,0.502434,0.502434,2.396995,3.316067,0.502434,0.502434,0.502434,0.502434,0.502434,0.502434,,,,,,,3.316067,1.199499,1.427194,1.174362,2.396995,3.316067,0.502434,0.502434,0.502434,0.502434,1.044561,0.409591,0.477899,0.40205,0.768839,1.044561,0.200471,0.200471,0.105762,0.105762,5,13.82272,11.617439,14.118587,6.917134,5,33,33,33,33,,,,,,,,,,,2580,2580,0.502434,0.502434,0.502434,0.502434,0.502434,0.502434,0.502434,0.502434,0.200471,0.200471,33,33,, +30021,0,0.433328,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.285592,0.15,4,2.599966,2.599966,2.599966,2.599966,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,,,,,,,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,0.857989,0.857989,0.857989,0.857989,0.857989,0.857989,0.857989,0.857989,0.437661,0.437661,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,2.599966,0.857989,0.857989,10,10,, +10570,1,0.030247,2,0,0,2,3,DIV,3,5,Main,St,1430809,0,0.03,0,0.648149,5,5,0.04537,,0.04537,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.051863,,0.04537,,0.051863,,0.057268,,0.04537,,0.057268,,0.206325,,0.04537,,0.206325,,0.04537,,0.04537,,0.04537,,,,,,,,0.051863,,0.057268,,0.206325,,0.04537,,0.04537,,0.021003,,0.022625,,0.067342,,0.019056,,0.010133,,34.992542,,31.689816,,8.79591,,40,,40,,,,,,,,,,,,6880,,0.04537,,0.04537,,0.04537,,0.04537,,0.019056,,40,,, +10573,-1,0.033111,0,2,0,2,3,DIV,3,5,Main,St,1430808,0,0.033,0,0.709522,5,5,,0.049667,,0.049667,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.285094,,0.049667,,0.285094,,0.068474,,0.049667,,0.068474,,0.084954,,0.049667,,0.084954,,0.049667,,0.049667,,0.049667,,,,,,,,0.285094,,0.068474,,0.084954,,0.049667,,0.049667,,0.091488,,0.026502,,0.031446,,0.02086,,0.011092,,6.968438,,29.01335,,23.385135,,40,,40,,,,,,,,,,,,6880,,0.049667,,0.049667,,0.049667,,0.049667,,0.02086,,40,, +10569,1,0.043568,2,0,0,2,3,DIV,3,5,Main,St,1430809,0.03,0.074,0,0.933597,5,5,0.065352,,0.065352,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.079558,,0.065352,,0.079558,,0.089571,,0.065352,,0.089571,,0.389206,,0.065352,,0.389206,,0.065352,,0.065352,,0.065352,,,,,,,,0.079558,,0.089571,,0.389206,,0.065352,,0.065352,,0.03171,,0.034713,,0.124604,,0.027448,,0.014595,,32.857444,,29.18447,,6.716426,,40,,40,,,,,,,,,,,,6880,,0.065352,,0.065352,,0.065352,,0.065352,,0.027448,,40,,, +10538,0,0.022196,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.393,0.415,0,0.475639,6,4.5,0.040357,0.040357,0.040357,0.040357,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.261616,0.086062,0.040357,0.040357,0.261616,0.086062,0.103735,0.086547,0.040357,0.040357,0.103735,0.086547,0.16335,0.252916,0.040357,0.040357,0.16335,0.252916,0.040357,0.040357,0.040357,0.040357,0.040357,0.040357,,,,,,,0.261616,0.086062,0.103735,0.086547,0.16335,0.252916,0.040357,0.040357,0.040357,0.040357,0.08248,0.029814,0.035116,0.02996,0.053,0.07987,0.016103,0.016103,0.008495,0.008495,5.090631,15.474796,12.838347,15.387991,8.15299,5.265737,33,33,33,33,,,,,,,,,,,2580,2580,0.040357,0.040357,0.040357,0.040357,0.040357,0.040357,0.040357,0.040357,0.016103,0.016103,33,33,, +9620,0,0.166919,1,1,1,2,4,,3,5,Geddes,Ave,1429306,0.291,0.457,0,3.576839,6,4.5,0.303489,0.303489,0.303489,0.303489,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.322208,0.691581,0.303489,0.303489,0.322208,0.691581,0.38918,0.407649,0.303489,0.303489,0.38918,0.407649,0.715183,0.417462,0.303489,0.303489,0.715183,0.417462,0.303489,0.303489,0.303489,0.303489,0.303489,0.303489,,,,,,,0.322208,0.691581,0.38918,0.407649,0.715183,0.417462,0.303489,0.303489,0.303489,0.303489,0.126708,0.23752,0.146799,0.15234,0.2446,0.155284,0.121092,0.121092,0.063885,0.063885,31.082909,14.48152,25.734008,24.568089,14.00361,23.990583,33,33,33,33,,,,,,,,,,,2838,2838,0.303489,0.303489,0.303489,0.303489,0.303489,0.303489,0.303489,0.303489,0.121092,0.121092,33,33,, +10016,0,0.218351,1,1,0,2,5,,2,5,Hill,St,1429402,0.857,1.075,0,4.678946,8.5,4.5,0.655052,0.655052,0.655052,0.655052,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.655277,1.08069,0.655052,0.655052,0.655277,1.08069,0.659041,0.659607,0.655052,0.655052,0.659041,0.659607,0.974146,0.662856,0.655052,0.655052,0.974146,0.662856,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,,,,,,,0.655277,1.08069,0.659041,0.659607,0.974146,0.662856,0.655052,0.655052,0.655052,0.655052,0.235886,0.36351,0.237015,0.237185,0.331547,0.23816,0.235819,0.235819,0.122276,0.122276,19.993142,12.12286,19.878954,19.861897,13.448752,19.764561,20,20,20,20,,,,,,,,,,,2064,2064,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.655052,0.235819,0.235819,20,20,, +10082,0,0.141399,1,1,0,2,7,,2,5,Observatory,St,1429309,0.208,0.349,0,3.029979,8.5,4.5,0.424197,0.424197,0.424197,0.424197,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,1.696788,0.541741,0.424197,0.424197,1.696788,0.541741,0.94975,0.75187,0.424197,0.424197,0.94975,0.75187,0.92972,1.696788,0.424197,0.424197,0.92972,1.696788,0.424197,0.424197,0.424197,0.424197,0.424197,0.424197,,,,,,,1.696788,0.541741,0.94975,0.75187,0.92972,1.696788,0.424197,0.424197,0.424197,0.424197,0.534488,0.187974,0.310377,0.251013,0.304368,0.534488,0.152711,0.152711,0.079183,0.079183,5,15.660524,8.932815,11.283792,9.125262,5,20,20,20,20,,,,,,,,,,,1720,1720,0.424197,0.424197,0.424197,0.424197,0.424197,0.424197,0.424197,0.424197,0.152711,0.152711,20,20,, +10191,0,0.154234,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.535,0.689,0,3.30501,6,5,0.308468,0.308468,0.308468,0.308468,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.31673,1.087773,0.308468,0.308468,0.31673,1.087773,0.434281,0.484903,0.308468,0.308468,0.434281,0.484903,1.035818,0.5173,0.308468,0.308468,1.035818,0.5173,0.308468,0.308468,0.308468,0.308468,0.308468,0.308468,,,,,,,0.31673,1.087773,0.434281,0.484903,1.035818,0.5173,0.308468,0.308468,0.308468,0.308468,0.122781,0.354094,0.158046,0.173233,0.338507,0.182952,0.120302,0.120302,0.063236,0.063236,29.217437,8.507311,21.308856,19.084273,8.93403,17.889096,30,30,30,30,,,,,,,,,,,5504,5504,0.308468,0.308468,0.308468,0.308468,0.308468,0.308468,0.308468,0.308468,0.120302,0.120302,30,30,, +10209,1,0.276012,2,0,0,2,3,DV2,2,5,Washtenaw,Ave,1427706,0,0.276,0,5.91454,6,5,0.552024,,0.552024,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.552625,,0.552024,,0.552625,,0.603514,,0.552024,,0.603514,,0.996924,,0.552024,,0.996924,,0.552024,,0.552024,,0.552024,,,,,,,,0.552625,,0.603514,,0.996924,,0.552024,,0.552024,,0.21547,,0.230736,,0.348759,,0.215289,,0.113165,,29.967356,,27.440492,,16.611811,,30,,30,,,,,,,,,,,,5504,,0.552024,,0.552024,,0.552024,,0.552024,,0.215289,,30,,, +19648,0,0.136032,2,2,0,2,9,,2,5,Medical Center,Dr,1839209,0,0.136,0,2.914972,8.5,4.5,0.408096,0.408096,0.408096,0.408096,20,20,10000,10000,2270,2270,5000,5000,3226,3226,3440,3440,3436,3436,1.632384,0.443674,0.408096,0.408096,1.632384,0.443674,0.496778,0.621664,0.408096,0.408096,0.496778,0.621664,0.498474,1.583973,0.408096,0.408096,0.498474,1.583973,0.408096,0.408096,0.408096,0.408096,0.408096,0.408096,,,,,,,1.632384,0.443674,0.496778,0.621664,0.498474,1.583973,0.408096,0.408096,0.408096,0.408096,0.514201,0.157588,0.173519,0.210985,0.174028,0.499678,0.146915,0.146915,0.076178,0.076178,5,18.39623,16.429701,13.129152,16.373812,5.152816,20,20,20,20,,,,,,,,,,,3440,3440,0.408096,0.408096,0.408096,0.408096,0.408096,0.408096,0.408096,0.408096,0.146915,0.146915,20,20,, +19649,0,0.385866,1,1,1,2,9,,2,5,Medical Center,Dr,1839205,0,0.386,0,8.268549,8.5,4.5,1.157597,1.157597,1.157597,1.157597,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,,,,,,,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,0.416735,0.416735,0.416735,0.416735,0.416735,0.416735,0.416735,0.416735,0.216085,0.216085,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,1892,1892,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,1.157597,0.416735,0.416735,20,20,, +21316,-1,0.268218,0,2,0,2,3,DV2,2,5,Washtenaw,Ave,4603893,0.096,0.364,0,5.747528,6,5,,0.536436,,0.536436,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.999518,,0.536436,,0.999518,,0.632227,,0.536436,,0.632227,,0.610636,,0.536436,,0.610636,,0.536436,,0.536436,,0.536436,,,,,,,,0.999518,,0.632227,,0.610636,,0.536436,,0.536436,,0.348135,,0.237947,,0.23147,,0.20921,,0.109969,,16.100842,,25.45458,,26.354608,,30,,30,,,,,,,,,,,,5504,,0.536436,,0.536436,,0.536436,,0.536436,,0.20921,,30,, +21686,1,0.387983,2,0,0,2,4,DV2,3,5,Fuller,Rd,4603906,0,0.388,0,8.313931,6,4.5,0.705424,,0.705424,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.996573,,0.705424,,0.996573,,1.044596,,0.705424,,1.044596,,1.994486,,0.705424,,1.994486,,0.705424,,0.705424,,0.705424,,,,,,,,0.996573,,1.044596,,1.994486,,0.705424,,0.705424,,0.368809,,0.383216,,0.668183,,0.281464,,0.148492,,23.359064,,22.285185,,11.671684,,33,,33,,,,,,,,,,,,5160,,0.705424,,0.705424,,0.705424,,0.705424,,0.281464,,33,,, +26529,0,0.192922,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.134042,0.15,4,1.157532,1.157532,1.157532,1.157532,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,,,,,,,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,0.381985,0.381985,0.381985,0.381985,0.381985,0.381985,0.381985,0.381985,0.194851,0.194851,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,1.157532,0.381985,0.381985,10,10,, +26533,0,0.16762,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.591852,0.15,4,1.005719,1.005719,1.005719,1.005719,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,,,,,,,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,0.331887,0.331887,0.331887,0.331887,0.331887,0.331887,0.331887,0.331887,0.169296,0.169296,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,1.005719,0.331887,0.331887,10,10,, +26600,0,0.237636,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.092204,0.15,4,1.425817,1.425817,1.425817,1.425817,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.425817,1.4259,1.425817,1.425817,1.425817,1.4259,1.425824,1.425827,1.425817,1.425817,1.425824,1.425827,1.425933,1.425826,1.425817,1.425817,1.425933,1.425826,1.425817,1.425817,1.425817,1.425817,1.425817,1.425817,,,,,,,1.425817,1.4259,1.425824,1.425827,1.425933,1.425826,1.425817,1.425817,1.425817,1.425817,0.47052,0.470545,0.470522,0.470522,0.470554,0.470522,0.47052,0.47052,0.240013,0.240013,9.999999,9.999417,9.999954,9.999934,9.999185,9.999941,10,10,10,10,,,,,,,,,,,34400,34400,1.425817,1.425817,1.425817,1.425817,1.425817,1.425817,1.425817,1.425817,0.47052,0.47052,10,10,, +26658,0,0.123877,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.654502,0.15,4,0.743261,0.743261,0.743261,0.743261,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,,,,,,,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.245276,0.245276,0.245276,0.245276,0.245276,0.245276,0.245276,0.245276,0.125116,0.125116,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.743261,0.245276,0.245276,10,10,, +29951,0,0.228326,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.892702,0.15,4,1.369957,1.369957,1.369957,1.369957,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,,,,,,,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,0.452086,0.452086,0.452086,0.452086,0.452086,0.452086,0.452086,0.452086,0.230609,0.230609,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,1.369957,0.452086,0.452086,10,10,, +30055,0,0.213521,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.575458,0.15,4,1.281128,1.281128,1.281128,1.281128,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.281128,1.281148,1.281128,1.281128,1.281128,1.281148,1.281129,1.28113,1.281128,1.281128,1.281129,1.28113,1.281133,1.281129,1.281128,1.281128,1.281133,1.281129,1.281128,1.281128,1.281128,1.281128,1.281128,1.281128,,,,,,,1.281128,1.281148,1.281129,1.28113,1.281133,1.281129,1.281128,1.281128,1.281128,1.281128,0.422772,0.422778,0.422773,0.422773,0.422774,0.422773,0.422772,0.422772,0.215657,0.215657,10,9.999845,9.999995,9.999986,9.999963,9.999991,10,10,10,10,,,,,,,,,,,34400,34400,1.281128,1.281128,1.281128,1.281128,1.281128,1.281128,1.281128,1.281128,0.422772,0.422772,10,10,, +30086,0,0.121563,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.60492,0.15,4,0.729378,0.729378,0.729378,0.729378,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,,,,,,,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.240695,0.240695,0.240695,0.240695,0.240695,0.240695,0.240695,0.240695,0.122779,0.122779,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.729378,0.240695,0.240695,10,10,, +30087,0,0.150677,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.228793,0.15,4,0.904062,0.904062,0.904062,0.904062,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,,,,,,,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.298341,0.298341,0.298341,0.298341,0.298341,0.298341,0.298341,0.298341,0.152184,0.152184,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.904062,0.298341,0.298341,10,10,, +30088,0,0.126903,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.71935,0.15,4,0.761418,0.761418,0.761418,0.761418,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,,,,,,,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.251268,0.251268,0.251268,0.251268,0.251268,0.251268,0.251268,0.251268,0.128172,0.128172,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.761418,0.251268,0.251268,10,10,, +9509,0,0.076743,1,1,0,2,7,,2,5,University,Ave,1429310,0.313,0.39,0,1.644499,8.5,4.5,0.23023,0.23023,0.23023,0.23023,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.251323,0.35726,0.23023,0.23023,0.251323,0.35726,0.258924,0.266167,0.23023,0.23023,0.258924,0.266167,0.397627,0.295086,0.23023,0.23023,0.397627,0.295086,0.23023,0.23023,0.23023,0.23023,0.23023,0.23023,,,,,,,0.251323,0.35726,0.258924,0.266167,0.397627,0.295086,0.23023,0.23023,0.23023,0.23023,0.089211,0.120992,0.091491,0.093664,0.133102,0.102339,0.082883,0.082883,0.042976,0.042976,18.321427,12.888646,17.783589,17.299656,11.580179,15.604276,20,20,20,20,,,,,,,,,,,1720,1720,0.23023,0.23023,0.23023,0.23023,0.23023,0.23023,0.23023,0.23023,0.082883,0.082883,20,20,, +9955,0,0.050816,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.484,0.535,0,1.088912,6,5,0.101632,0.101632,0.101632,0.101632,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.103155,0.3223,0.101632,0.101632,0.103155,0.3223,0.130182,0.142072,0.101632,0.101632,0.130182,0.142072,0.303281,0.143316,0.101632,0.101632,0.303281,0.143316,0.101632,0.101632,0.101632,0.101632,0.101632,0.101632,,,,,,,0.103155,0.3223,0.130182,0.142072,0.303281,0.143316,0.101632,0.101632,0.101632,0.101632,0.040093,0.105837,0.048201,0.051768,0.100131,0.052142,0.039636,0.039636,0.020835,0.020835,29.557145,9.459975,23.420776,21.460634,10.053244,21.274336,30,30,30,30,,,,,,,,,,,5504,5504,0.101632,0.101632,0.101632,0.101632,0.101632,0.101632,0.101632,0.101632,0.039636,0.039636,30,30,, +10335,0,0.125055,1,1,0,2,5,,2,5,Hill,St,1429402,0.596,0.721,0,2.679757,8.5,4.5,0.375166,0.375166,0.375166,0.375166,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.527267,0.459601,0.375166,0.375166,0.527267,0.459601,0.447559,0.491373,0.375166,0.375166,0.447559,0.491373,0.580743,0.662786,0.375166,0.375166,0.580743,0.662786,0.375166,0.375166,0.375166,0.375166,0.375166,0.375166,,,,,,,0.527267,0.459601,0.447559,0.491373,0.580743,0.662786,0.375166,0.375166,0.375166,0.375166,0.18069,0.16039,0.156778,0.169922,0.196733,0.221346,0.13506,0.13506,0.070031,0.070031,14.230594,16.325717,16.764976,15.27011,12.920213,11.320871,20,20,20,20,,,,,,,,,,,2064,2064,0.375166,0.375166,0.375166,0.375166,0.375166,0.375166,0.375166,0.375166,0.13506,0.13506,20,20,, +10387,0,0.106232,2,2,0,2,5,,2,5,Geddes,Ave,1429306,0,0.106,0,2.27641,8.5,4.5,0.318697,0.318697,0.318697,0.318697,20,20,12000,12000,2724,2724,6000,6000,3871,3871,4128,4128,4123,4123,0.329611,0.323224,0.318697,0.318697,0.329611,0.323224,0.324534,0.322182,0.318697,0.318697,0.324534,0.322182,0.336545,0.332053,0.318697,0.318697,0.336545,0.332053,0.318697,0.318697,0.318697,0.318697,0.318697,0.318697,,,,,,,0.329611,0.323224,0.324534,0.322182,0.336545,0.332053,0.318697,0.318697,0.318697,0.318697,0.118005,0.116089,0.116482,0.115776,0.120085,0.118738,0.114731,0.114731,0.05949,0.05949,19.337775,19.719934,19.640286,19.783695,18.939389,19.195584,20,20,20,20,,,,,,,,,,,4128,4128,0.318697,0.318697,0.318697,0.318697,0.318697,0.318697,0.318697,0.318697,0.114731,0.114731,20,20,, +26630,0,0.149663,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.207072,0.15,4,0.89798,0.89798,0.89798,0.89798,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,,,,,,,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.296333,0.296333,0.296333,0.296333,0.296333,0.296333,0.296333,0.296333,0.15116,0.15116,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.89798,0.296333,0.296333,10,10,, +30029,0,0.109837,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.353649,0.15,4,0.659022,0.659022,0.659022,0.659022,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,,,,,,,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.217477,0.217477,0.217477,0.217477,0.217477,0.217477,0.217477,0.217477,0.110935,0.110935,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.659022,0.217477,0.217477,10,10,, +30030,0,0.224037,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.800788,0.15,4,1.344221,1.344221,1.344221,1.344221,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,,,,,,,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,0.443593,0.443593,0.443593,0.443593,0.443593,0.443593,0.443593,0.443593,0.226277,0.226277,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,1.344221,0.443593,0.443593,10,10,, +30031,0,0.197878,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.240243,0.15,4,1.187268,1.187268,1.187268,1.187268,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,,,,,,,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,0.391798,0.391798,0.391798,0.391798,0.391798,0.391798,0.391798,0.391798,0.199857,0.199857,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,1.187268,0.391798,0.391798,10,10,, +30131,0,0.036215,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.776034,0.15,4,0.217289,0.217289,0.217289,0.217289,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,,,,,,,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.071706,0.071706,0.071706,0.071706,0.071706,0.071706,0.071706,0.071706,0.036577,0.036577,10,10,10,10,9.999998,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.217289,0.071706,0.071706,10,10,, +26627,0,0.099958,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.14196,0.15,4,0.599749,0.599749,0.599749,0.599749,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,,,,,,,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.197917,0.197917,0.197917,0.197917,0.197917,0.197917,0.197917,0.197917,0.100958,0.100958,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.599749,0.197917,0.197917,10,10,, +9562,0,0.125846,1,1,0,2,7,,2,5,University,Ave,1429310,0.127,0.252,0,2.696708,8.5,4.5,0.377539,0.377539,0.377539,0.377539,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.404013,0.386697,0.377539,0.377539,0.404013,0.386697,0.409792,0.389962,0.377539,0.377539,0.409792,0.389962,0.437584,0.398549,0.377539,0.377539,0.437584,0.398549,0.377539,0.377539,0.377539,0.377539,0.377539,0.377539,,,,,,,0.404013,0.386697,0.409792,0.389962,0.437584,0.398549,0.377539,0.377539,0.377539,0.377539,0.143856,0.138662,0.14559,0.139641,0.153928,0.142217,0.135914,0.135914,0.070474,0.070474,18.689472,19.526339,18.425908,19.362885,17.25562,18.945676,20,20,20,20,,,,,,,,,,,1720,1720,0.377539,0.377539,0.377539,0.377539,0.377539,0.377539,0.377539,0.377539,0.135914,0.135914,20,20,, +9610,0,0.055935,2,2,0,2,5,,2,5,University,Ave,1429304,0.19,0.246,0,1.198601,8.5,4.5,0.167804,0.167804,0.167804,0.167804,20,20,12000,12000,2724,2724,6000,6000,3871,3871,4128,4128,4123,4123,0.173551,0.170187,0.167804,0.167804,0.173551,0.170187,0.170877,0.169639,0.167804,0.167804,0.170877,0.169639,0.177201,0.174836,0.167804,0.167804,0.177201,0.174836,0.167804,0.167804,0.167804,0.167804,0.167804,0.167804,,,,,,,0.173551,0.170187,0.170877,0.169639,0.177201,0.174836,0.167804,0.167804,0.167804,0.167804,0.062133,0.061124,0.061331,0.06096,0.063229,0.062519,0.060409,0.060409,0.031323,0.031323,19.337775,19.719934,19.640286,19.783695,18.939389,19.195584,20,20,20,20,,,,,,,,,,,4128,4128,0.167804,0.167804,0.167804,0.167804,0.167804,0.167804,0.167804,0.167804,0.060409,0.060409,20,20,, +26628,0,0.135478,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.903103,0.15,4,0.812869,0.812869,0.812869,0.812869,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,,,,,,,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.268247,0.268247,0.268247,0.268247,0.268247,0.268247,0.268247,0.268247,0.136833,0.136833,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.812869,0.268247,0.268247,10,10,, +29874,0,0.173477,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.717366,0.15,4,1.040863,1.040863,1.040863,1.040863,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,,,,,,,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,0.343485,0.343485,0.343485,0.343485,0.343485,0.343485,0.343485,0.343485,0.175212,0.175212,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,1.040863,0.343485,0.343485,10,10,, +26655,0,0.111318,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.385386,0.15,4,0.667908,0.667908,0.667908,0.667908,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,,,,,,,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.22041,0.22041,0.22041,0.22041,0.22041,0.22041,0.22041,0.22041,0.112431,0.112431,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.667908,0.22041,0.22041,10,10,, +9501,0,0.069474,1,1,0,2,5,,2,5,Hill,St,1429402,0.783,0.852,0,1.488726,8.5,4.5,0.208422,0.208422,0.208422,0.208422,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.224815,0.395374,0.208422,0.208422,0.224815,0.395374,0.227754,0.233446,0.208422,0.208422,0.227754,0.233446,0.422238,0.249753,0.208422,0.208422,0.422238,0.249753,0.208422,0.208422,0.208422,0.208422,0.208422,0.208422,,,,,,,0.224815,0.395374,0.227754,0.233446,0.422238,0.249753,0.208422,0.208422,0.208422,0.208422,0.07995,0.131117,0.080832,0.082539,0.139177,0.087431,0.075032,0.075032,0.038905,0.038905,18.541597,10.543023,18.302326,17.856109,9.872243,16.690218,20,20,20,20,,,,,,,,,,,2064,2064,0.208422,0.208422,0.208422,0.208422,0.208422,0.208422,0.208422,0.208422,0.075032,0.075032,20,20,, +10278,0,0.004614,1,1,0,2,5,,2,5,Hill,St,1429402,0.852,0.857,0,0.09887,8.5,4.5,0.013842,0.013842,0.013842,0.013842,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.015825,0.022045,0.013842,0.013842,0.015825,0.022045,0.01502,0.01506,0.013842,0.013842,0.01502,0.01506,0.024391,0.017246,0.013842,0.013842,0.024391,0.017246,0.013842,0.013842,0.013842,0.013842,0.013842,0.013842,,,,,,,0.015825,0.022045,0.01502,0.01506,0.024391,0.017246,0.013842,0.013842,0.013842,0.013842,0.005578,0.007444,0.005337,0.005349,0.008148,0.006004,0.004983,0.004983,0.002584,0.002584,17.493254,12.557716,18.430769,18.381646,11.35002,16.051884,20,20,20,20,,,,,,,,,,,2064,2064,0.013842,0.013842,0.013842,0.013842,0.013842,0.013842,0.013842,0.013842,0.004983,0.004983,20,20,, +26653,0,0.104613,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.24171,0.15,4,0.627679,0.627679,0.627679,0.627679,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,,,,,,,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.207134,0.207134,0.207134,0.207134,0.207134,0.207134,0.207134,0.207134,0.105659,0.105659,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.627679,0.207134,0.207134,10,10,, +9633,0,0.081881,1,1,1,2,4,,2,5,Geddes,Ave,1429306,0.17,0.251,0,1.754602,8,4.5,0.17546,0.17546,0.17546,0.17546,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.200775,0.274316,0.17546,0.17546,0.200775,0.274316,0.202274,0.210114,0.17546,0.17546,0.202274,0.210114,0.253157,0.221225,0.17546,0.17546,0.253157,0.221225,0.17546,0.17546,0.17546,0.17546,0.17546,0.17546,,,,,,,0.200775,0.274316,0.202274,0.210114,0.253157,0.221225,0.17546,0.17546,0.17546,0.17546,0.074971,0.097034,0.075421,0.077773,0.090686,0.081106,0.067377,0.067377,0.035326,0.035326,24.469625,17.909579,24.288303,23.382032,19.406486,22.20764,28,28,28,28,,,,,,,,,,,2649,2649,0.17546,0.17546,0.17546,0.17546,0.17546,0.17546,0.17546,0.17546,0.067377,0.067377,28,28,, +9963,0,0.007243,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.391,0.399,0,0.155199,6,5,0.014485,0.014485,0.014485,0.014485,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.014581,0.024945,0.014485,0.014485,0.014581,0.024945,0.016713,0.017092,0.014485,0.014485,0.016713,0.017092,0.027891,0.017228,0.014485,0.014485,0.027891,0.017228,0.014485,0.014485,0.014485,0.014485,0.014485,0.014485,,,,,,,0.014581,0.024945,0.016713,0.017092,0.027891,0.017228,0.014485,0.014485,0.014485,0.014485,0.005678,0.008787,0.006318,0.006431,0.009671,0.006472,0.005649,0.005649,0.002969,0.002969,29.802035,17.420593,26.000753,25.423939,15.580559,25.22454,30,30,30,30,,,,,,,,,,,5504,5504,0.014485,0.014485,0.014485,0.014485,0.014485,0.014485,0.014485,0.014485,0.005649,0.005649,30,30,, +9969,1,0.063228,2,0,0,2,3,DV2,2,5,Washtenaw,Ave,1427706,0.276,0.339,0,1.354879,6,5,0.126455,,0.126455,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.126941,,0.126455,,0.126941,,0.138093,,0.126455,,0.138093,,0.236543,,0.126455,,0.236543,,0.126455,,0.126455,,0.126455,,,,,,,,0.126941,,0.138093,,0.236543,,0.126455,,0.126455,,0.049463,,0.052809,,0.082344,,0.049318,,0.025923,,29.885346,,27.471817,,16.037916,,30,,30,,,,,,,,,,,,5504,,0.126455,,0.126455,,0.126455,,0.126455,,0.049318,,30,,, +10285,0,0.09104,1,1,0,2,7,,2,5,University,Ave,1429310,0.39,0.481,0,1.950859,8.5,4.5,0.27312,0.27312,0.27312,0.27312,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.273121,0.292493,0.27312,0.27312,0.273121,0.292493,0.273161,0.275607,0.27312,0.27312,0.273161,0.275607,0.292969,0.274091,0.27312,0.27312,0.292969,0.274091,0.27312,0.27312,0.27312,0.27312,0.27312,0.27312,,,,,,,0.273121,0.292493,0.273161,0.275607,0.292969,0.274091,0.27312,0.27312,0.27312,0.27312,0.098324,0.104135,0.098335,0.099069,0.104278,0.098614,0.098323,0.098323,0.050982,0.050982,19.999908,18.675361,19.99705,19.819518,18.644973,19.929176,20,20,20,20,,,,,,,,,,,1720,1720,0.27312,0.27312,0.27312,0.27312,0.27312,0.27312,0.27312,0.27312,0.098323,0.098323,20,20,, +10391,0,0.07206,2,2,0,2,7,,2,5,Forest,Ave,1429307,0.199,0.271,0,1.544144,8.5,4.5,0.21618,0.21618,0.21618,0.21618,20,20,10000,10000,2270,2270,5000,5000,3226,3226,3440,3440,3436,3436,0.232904,0.216892,0.21618,0.21618,0.232904,0.216892,0.223342,0.218744,0.21618,0.21618,0.223342,0.218744,0.219997,0.226574,0.21618,0.21618,0.219997,0.226574,0.21618,0.21618,0.21618,0.21618,0.21618,0.21618,,,,,,,0.232904,0.216892,0.223342,0.218744,0.219997,0.226574,0.21618,0.21618,0.21618,0.21618,0.082842,0.078038,0.079973,0.078594,0.07897,0.080943,0.077825,0.077825,0.040354,0.040354,18.563858,19.934375,19.358647,19.765617,19.652989,19.082484,20,20,20,20,,,,,,,,,,,3440,3440,0.21618,0.21618,0.21618,0.21618,0.21618,0.21618,0.21618,0.21618,0.077825,0.077825,20,20,, +10432,0,0.131584,2,2,0,2,7,,3,5,Observatory,St,1429309,0,0.132,0,2.819648,7,4.5,0.394751,0.394751,0.394751,0.394751,20,20,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.458243,0.39728,0.394751,0.394751,0.458243,0.39728,0.405949,0.401705,0.394751,0.394751,0.405949,0.401705,0.403273,0.410626,0.394751,0.394751,0.403273,0.410626,0.394751,0.394751,0.394751,0.394751,0.394751,0.394751,,,,,,,0.458243,0.39728,0.405949,0.401705,0.403273,0.410626,0.394751,0.394751,0.394751,0.394751,0.161158,0.142869,0.14547,0.144196,0.144667,0.146873,0.14211,0.14211,0.073687,0.073687,17.228894,19.872688,19.448265,19.653771,19.577356,19.226763,20,20,20,20,,,,,,,,,,,3784,3784,0.394751,0.394751,0.394751,0.394751,0.394751,0.394751,0.394751,0.394751,0.14211,0.14211,20,20,, +22074,-1,0.088483,0,2,0,2,3,DV2,2,5,Washtenaw,Ave,4603893,0.364,0.452,0,1.896058,6,5,,0.176965,,0.176965,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.304752,,0.176965,,0.304752,,0.207644,,0.176965,,0.207644,,0.206558,,0.176965,,0.206558,,0.176965,,0.176965,,0.176965,,,,,,,,0.304752,,0.207644,,0.206558,,0.176965,,0.176965,,0.107353,,0.07822,,0.077894,,0.069017,,0.036278,,17.420593,,25.567572,,25.702031,,30,,30,,,,,,,,,,,,5504,,0.176965,,0.176965,,0.176965,,0.176965,,0.069017,,30,, +10197,1,0.05223,2,0,0,2,3,DV2,2,5,Washtenaw,Ave,1427706,0.339,0.391,0,1.119212,6,5,0.10446,,0.10446,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.105154,,0.10446,,0.105154,,0.120527,,0.10446,,0.120527,,0.201135,,0.10446,,0.201135,,0.10446,,0.10446,,0.10446,,,,,,,,0.105154,,0.120527,,0.201135,,0.10446,,0.10446,,0.040947,,0.04556,,0.069742,,0.040739,,0.021414,,29.802035,,26.000753,,15.580559,,30,,30,,,,,,,,,,,,5504,,0.10446,,0.10446,,0.10446,,0.10446,,0.040739,,30,,, +21806,-1,0.020087,0,2,0,2,3,DV2,2,5,Washtenaw,Ave,4603893,0.452,0.472,0,0.430437,6,5,,0.040174,,0.040174,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.069184,,0.040174,,0.069184,,0.047405,,0.040174,,0.047405,,0.04778,,0.040174,,0.04778,,0.040174,,0.040174,,0.040174,,,,,,,,0.069184,,0.047405,,0.04778,,0.040174,,0.040174,,0.024371,,0.017837,,0.01795,,0.015668,,0.008236,,17.420593,,25.423939,,25.22454,,30,,30,,,,,,,,,,,,5504,,0.040174,,0.040174,,0.040174,,0.040174,,0.015668,,30,, +9636,0,0.054382,2,2,0,2,5,,2,5,Geddes,Ave,1429306,0.106,0.161,0,1.165336,8.5,4.5,0.163147,0.163147,0.163147,0.163147,20,20,12000,12000,2724,2724,6000,6000,3871,3871,4128,4128,4123,4123,0.20718,0.204287,0.163147,0.163147,0.20718,0.204287,0.198696,0.20375,0.163147,0.163147,0.198696,0.20375,0.27781,0.255456,0.163147,0.163147,0.27781,0.255456,0.163147,0.163147,0.163147,0.163147,0.163147,0.163147,,,,,,,0.20718,0.204287,0.198696,0.20375,0.27781,0.255456,0.163147,0.163147,0.163147,0.163147,0.071943,0.071075,0.069398,0.070914,0.093132,0.086426,0.058733,0.058733,0.030454,0.030454,15.749319,15.972329,16.421737,16.014469,11.745214,12.77301,20,20,20,20,,,,,,,,,,,4128,4128,0.163147,0.163147,0.163147,0.163147,0.163147,0.163147,0.163147,0.163147,0.058733,0.058733,20,20,, +10413,0,0.009075,1,1,1,2,4,,2,5,Geddes,Ave,1429306,0.161,0.17,0,0.194457,8,4.5,0.019446,0.019446,0.019446,0.019446,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.033537,0.047209,0.019446,0.019446,0.033537,0.047209,0.028647,0.030153,0.019446,0.019446,0.028647,0.030153,0.04787,0.044237,0.019446,0.019446,0.04787,0.044237,0.019446,0.019446,0.019446,0.019446,0.019446,0.019446,,,,,,,0.033537,0.047209,0.028647,0.030153,0.04787,0.044237,0.019446,0.019446,0.019446,0.019446,0.011694,0.015796,0.010228,0.010679,0.015994,0.014905,0.007467,0.007467,0.003915,0.003915,16.2353,11.533363,19.006302,18.057471,11.374182,12.308131,28,28,28,28,,,,,,,,,,,2649,2649,0.019446,0.019446,0.019446,0.019446,0.019446,0.019446,0.019446,0.019446,0.007467,0.007467,28,28,, +10192,0,0.0853,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.399,0.484,0,1.827859,6,5,0.1706,0.1706,0.1706,0.1706,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.172793,0.385803,0.1706,0.1706,0.172793,0.385803,0.208564,0.208005,0.1706,0.1706,0.208564,0.208005,0.353508,0.214549,0.1706,0.1706,0.353508,0.214549,0.1706,0.1706,0.1706,0.1706,0.1706,0.1706,,,,,,,0.172793,0.385803,0.208564,0.208005,0.353508,0.214549,0.1706,0.1706,0.1706,0.1706,0.067192,0.131095,0.077923,0.077755,0.121406,0.079719,0.066534,0.066534,0.034973,0.034973,29.619358,13.265859,24.539275,24.605206,14.47775,23.854731,30,30,30,30,,,,,,,,,,,5504,5504,0.1706,0.1706,0.1706,0.1706,0.1706,0.1706,0.1706,0.1706,0.066534,0.066534,30,30,, +10341,0,0.060811,1,1,0,2,7,,2,5,Observatory,St,1429309,0.147,0.208,0,1.303096,8.5,4.5,0.182433,0.182433,0.182433,0.182433,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.729734,0.266352,0.182433,0.182433,0.729734,0.266352,0.580333,0.446102,0.182433,0.182433,0.580333,0.446102,0.488044,0.729734,0.182433,0.182433,0.488044,0.729734,0.182433,0.182433,0.182433,0.182433,0.182433,0.182433,,,,,,,0.729734,0.266352,0.580333,0.446102,0.488044,0.729734,0.182433,0.182433,0.182433,0.182433,0.229866,0.090852,0.185046,0.144777,0.157359,0.229866,0.065676,0.065676,0.034054,0.034054,5,13.698684,6.2872,8.17901,7.476107,5,20,20,20,20,,,,,,,,,,,1720,1720,0.182433,0.182433,0.182433,0.182433,0.182433,0.182433,0.182433,0.182433,0.065676,0.065676,20,20,, +10409,0,0.039144,1,1,1,2,4,,2,5,Geddes,Ave,1429306,0.251,0.291,0,0.838803,8,4.5,0.08388,0.08388,0.08388,0.08388,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.095982,0.125095,0.08388,0.08388,0.095982,0.125095,0.096699,0.098285,0.08388,0.08388,0.096699,0.098285,0.130884,0.098635,0.08388,0.08388,0.130884,0.098635,0.08388,0.08388,0.08388,0.08388,0.08388,0.08388,,,,,,,0.095982,0.125095,0.096699,0.098285,0.130884,0.098635,0.08388,0.08388,0.08388,0.08388,0.035841,0.044574,0.036056,0.036531,0.046311,0.036636,0.03221,0.03221,0.016888,0.016888,24.469625,18.774922,24.288303,23.89638,17.944486,23.81153,28,28,28,28,,,,,,,,,,,2649,2649,0.08388,0.08388,0.08388,0.08388,0.08388,0.08388,0.08388,0.08388,0.03221,0.03221,28,28,, +21747,-1,0.036046,0,1,0,2,9,,2,5,Geddes,Ave,4603660,0,0.036,0,0.772423,8.5,4.5,,0.108139,,0.108139,,20,,5000,,1135,,2500,,1613,,1720,,1718,,0.108139,,0.108139,,0.108139,,0.108139,,0.108139,,0.108139,,0.108174,,0.108139,,0.108174,,0.108139,,0.108139,,0.108139,,,,,,,,0.108139,,0.108139,,0.108174,,0.108139,,0.108139,,0.03893,,0.03893,,0.03894,,0.03893,,0.020186,,19.999988,,19.999996,,19.993643,,20,,20,,,,,,,,,,,,1720,,0.108139,,0.108139,,0.108139,,0.108139,,0.03893,,20,, +10158,0,0.015304,1,1,0,2,7,,2,5,Observatory,St,1429309,0.132,0.147,0,0.327945,8.5,4.5,0.045912,0.045912,0.045912,0.045912,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.183649,0.062765,0.045912,0.045912,0.183649,0.062765,0.14605,0.103584,0.045912,0.045912,0.14605,0.103584,0.122824,0.183649,0.045912,0.045912,0.122824,0.183649,0.045912,0.045912,0.045912,0.045912,0.045912,0.045912,,,,,,,0.183649,0.062765,0.14605,0.103584,0.122824,0.183649,0.045912,0.045912,0.045912,0.045912,0.057849,0.021584,0.04657,0.03383,0.039602,0.057849,0.016528,0.016528,0.00857,0.00857,5,14.629837,6.2872,8.864715,7.476107,5,20,20,20,20,,,,,,,,,,,1720,1720,0.045912,0.045912,0.045912,0.045912,0.045912,0.045912,0.045912,0.045912,0.016528,0.016528,20,20,, +9510,0,0.062466,2,2,0,2,4,,2,5,Glen,Ave,1430308,0.062,0.125,0,1.338552,8,4.5,0.133855,0.133855,0.133855,0.133855,28,28,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.191033,0.463122,0.133855,0.133855,0.191033,0.463122,0.178277,0.431077,0.133855,0.133855,0.178277,0.431077,0.181947,0.749589,0.133855,0.133855,0.181947,0.749589,0.133855,0.133855,0.133855,0.133855,0.133855,0.133855,,,,,,,0.191033,0.463122,0.178277,0.431077,0.181947,0.749589,0.133855,0.133855,0.133855,0.133855,0.068554,0.150181,0.064727,0.140567,0.065828,0.236121,0.0514,0.0514,0.02695,0.02695,19.619337,8.092775,21.02313,8.694379,20.599105,5,28,28,28,28,,,,,,,,,,,4816,4816,0.133855,0.133855,0.133855,0.133855,0.133855,0.133855,0.133855,0.133855,0.0514,0.0514,28,28,, +10022,0,0.148955,2,2,1,2,4,,2,5,Fuller,St,1430308,0.289,0.438,0,3.191903,8,4.5,0.31919,0.31919,0.31919,0.31919,28,28,14700,14700,3337,3337,7350,7350,4742,4742,5057,5057,5051,5051,0.93344,0.674683,0.31919,0.31919,0.93344,0.674683,0.736456,0.551964,0.31919,0.31919,0.736456,0.551964,1.307532,0.646309,0.31919,0.31919,1.307532,0.646309,0.31919,0.31919,0.31919,0.31919,0.31919,0.31919,,,,,,,0.93344,0.674683,0.736456,0.551964,1.307532,0.646309,0.31919,0.31919,0.31919,0.31919,0.306844,0.229217,0.247749,0.192401,0.419072,0.220705,0.122569,0.122569,0.064264,0.064264,9.574621,13.246708,12.135596,16.191858,6.835265,13.828257,28,28,28,28,,,,,,,,,,,5057,5057,0.31919,0.31919,0.31919,0.31919,0.31919,0.31919,0.31919,0.31919,0.122569,0.122569,28,28,, +19615,1,0.057948,2,0,0,2,5,,2,5,Zina Pitcher,Pl,1908704,0.093,0.151,0,1.241749,8.5,4.5,0.173845,,0.173845,,20,,12000,,2724,,6000,,3871,,4128,,4123,,0.695379,,0.173845,,0.695379,,0.434187,,0.173845,,0.434187,,0.402862,,0.173845,,0.402862,,0.173845,,0.173845,,0.173845,,,,,,,,0.695379,,0.434187,,0.402862,,0.173845,,0.173845,,0.219044,,0.140687,,0.131289,,0.062584,,0.032451,,5,,8.007832,,8.630486,,20,,20,,,,,,,,,,,,4128,,0.173845,,0.173845,,0.173845,,0.173845,,0.062584,,20,,, +21531,-1,0.095677,0,2,0,2,3,DV2,2,5,Huron,St,4603893,0,0.096,0,2.050219,6,5,,0.191354,,0.191354,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.213316,,0.191354,,0.213316,,0.2049,,0.191354,,0.2049,,0.213897,,0.191354,,0.213897,,0.191354,,0.191354,,0.191354,,,,,,,,0.213316,,0.2049,,0.213897,,0.191354,,0.191354,,0.081217,,0.078692,,0.081391,,0.074628,,0.039228,,26.911356,,28.016718,,26.838193,,30,,30,,,,,,,,,,,,5504,,0.191354,,0.191354,,0.191354,,0.191354,,0.074628,,30,, +21685,0,0.104696,1,1,0,2,5,,2,5,Ann,St,4604073,0.275,0.379,0,2.243494,8.5,4.5,0.314089,0.314089,0.314089,0.314089,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.256357,0.31409,0.314089,0.314089,1.256357,0.31409,0.947202,0.314091,0.314089,0.314089,0.947202,0.314091,1.058174,0.314089,0.314089,0.314089,1.058174,0.314089,0.314089,0.314089,0.314089,0.314089,0.314089,0.314089,,,,,,,1.256357,0.31409,0.947202,0.314091,1.058174,0.314089,0.314089,0.314089,0.314089,0.314089,0.395752,0.113072,0.303006,0.113073,0.336298,0.113072,0.113072,0.113072,0.05863,0.05863,5,19.999955,6.631933,19.999897,5.936437,19.999991,20,20,20,20,,,,,,,,,,,2064,2064,0.314089,0.314089,0.314089,0.314089,0.314089,0.314089,0.314089,0.314089,0.113072,0.113072,20,20,, +21933,1,0.07628,2,0,0,2,3,DV2,2,5,Huron,St,4604878,2.941,3.017,0,1.634582,6,5,0.152561,,0.152561,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.219602,,0.152561,,0.219602,,0.180976,,0.152561,,0.180976,,0.223514,,0.152561,,0.223514,,0.152561,,0.152561,,0.152561,,,,,,,,0.219602,,0.180976,,0.223514,,0.152561,,0.152561,,0.079611,,0.068023,,0.080785,,0.059499,,0.031275,,20.841466,,25.289711,,20.476669,,30,,30,,,,,,,,,,,,5504,,0.152561,,0.152561,,0.152561,,0.152561,,0.059499,,30,,, +22020,-1,0.087232,0,3,0,2,5,,2,5,Catherine,St,4604074,0.433,0.52,0,1.86925,8.5,4.5,,0.261695,,0.261695,,20,,18000,,4086,,9000,,5807,,6192,,6185,,0.26223,,0.261695,,0.26223,,0.303023,,0.261695,,0.303023,,1.04678,,0.261695,,1.04678,,0.261695,,0.261695,,0.261695,,,,,,,,0.26223,,0.303023,,1.04678,,0.261695,,0.261695,,0.094371,,0.106609,,0.329736,,0.09421,,0.04885,,19.959185,,17.272299,,5,,20,,20,,,,,,,,,,,,6192,,0.261695,,0.261695,,0.261695,,0.261695,,0.09421,,20,, +26649,0,0.13108,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.808851,0.15,4,0.786478,0.786478,0.786478,0.786478,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,,,,,,,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.259538,0.259538,0.259538,0.259538,0.259538,0.259538,0.259538,0.259538,0.132391,0.132391,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.786478,0.259538,0.259538,10,10,, +26659,0,0.052688,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.129032,0.15,4,0.316129,0.316129,0.316129,0.316129,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,,,,,,,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.104323,0.104323,0.104323,0.104323,0.104323,0.104323,0.104323,0.104323,0.053215,0.053215,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.316129,0.104323,0.104323,10,10,, +26660,0,0.071911,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.540951,0.15,4,0.431466,0.431466,0.431466,0.431466,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,,,,,,,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.142384,0.142384,0.142384,0.142384,0.142384,0.142384,0.142384,0.142384,0.07263,0.07263,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.431466,0.142384,0.142384,10,10,, +26790,0,0.120303,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.577913,0.15,4,0.721816,0.721816,0.721816,0.721816,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,,,,,,,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.238199,0.238199,0.238199,0.238199,0.238199,0.238199,0.238199,0.238199,0.121506,0.121506,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.721816,0.238199,0.238199,10,10,, +29875,0,0.124709,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.672343,0.15,4,0.748256,0.748256,0.748256,0.748256,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,,,,,,,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.246924,0.246924,0.246924,0.246924,0.246924,0.246924,0.246924,0.246924,0.125956,0.125956,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.748256,0.246924,0.246924,10,10,, +21418,0,0.084342,2,2,0,2,3,,2,5,Huron,St,4604878,2.856,2.941,0,1.80733,6,5,0.168684,0.168684,0.168684,0.168684,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.439139,0.192787,0.168684,0.168684,0.439139,0.192787,0.328765,0.294986,0.168684,0.168684,0.328765,0.294986,0.321064,0.474994,0.168684,0.168684,0.321064,0.474994,0.168684,0.168684,0.168684,0.168684,0.168684,0.168684,,,,,,,0.439139,0.192787,0.328765,0.294986,0.321064,0.474994,0.168684,0.168684,0.168684,0.168684,0.146923,0.073018,0.113811,0.103677,0.111501,0.15768,0.065787,0.065787,0.03458,0.03458,11.523729,26.249243,15.392514,17.155116,15.761732,10.653875,30,30,30,30,,,,,,,,,,,5504,5504,0.168684,0.168684,0.168684,0.168684,0.168684,0.168684,0.168684,0.168684,0.065787,0.065787,30,30,, +26650,0,0.113451,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.431088,0.15,4,0.680705,0.680705,0.680705,0.680705,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,,,,,,,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.224633,0.224633,0.224633,0.224633,0.224633,0.224633,0.224633,0.224633,0.114585,0.114585,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.680705,0.224633,0.224633,10,10,, +30047,0,0.152527,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.268437,0.15,4,0.915162,0.915162,0.915162,0.915162,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,,,,,,,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.302004,0.302004,0.302004,0.302004,0.302004,0.302004,0.302004,0.302004,0.154052,0.154052,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.915162,0.302004,0.302004,10,10,, +21615,0,0.063139,2,2,0,2,3,,2,5,Huron,St,4604878,2.793,2.856,0,1.352989,6,5,0.126279,0.126279,0.126279,0.126279,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.294289,0.138538,0.126279,0.126279,0.294289,0.138538,0.220333,0.180952,0.126279,0.126279,0.220333,0.180952,0.2003,0.263176,0.126279,0.126279,0.2003,0.263176,0.126279,0.126279,0.126279,0.126279,0.126279,0.126279,,,,,,,0.294289,0.138538,0.220333,0.180952,0.2003,0.263176,0.126279,0.126279,0.126279,0.126279,0.099652,0.052926,0.077465,0.065651,0.071455,0.090318,0.049249,0.049249,0.025887,0.025887,12.872951,27.345386,17.193799,20.935819,18.913489,14.394833,30,30,30,30,,,,,,,,,,,5504,5504,0.126279,0.126279,0.126279,0.126279,0.126279,0.126279,0.126279,0.126279,0.049249,0.049249,30,30,, +9757,0,0.06244,2,2,0,2,4,,2,5,Glen,Ave,1430308,0,0.062,0,1.337989,8,4.5,0.133799,0.133799,0.133799,0.133799,28,28,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.463322,0.235476,0.133799,0.133799,0.463322,0.235476,0.282956,0.361772,0.133799,0.133799,0.282956,0.361772,0.326593,0.749274,0.133799,0.133799,0.326593,0.749274,0.133799,0.133799,0.133799,0.133799,0.133799,0.133799,,,,,,,0.463322,0.235476,0.282956,0.361772,0.326593,0.749274,0.133799,0.133799,0.133799,0.133799,0.150236,0.081882,0.096126,0.119771,0.109217,0.236021,0.051379,0.051379,0.026938,0.026938,8.085888,15.909799,13.240106,10.35562,11.471066,5,28,28,28,28,,,,,,,,,,,4816,4816,0.133799,0.133799,0.133799,0.133799,0.133799,0.133799,0.133799,0.133799,0.051379,0.051379,28,28,, +10286,0,0.16405,2,2,0,2,4,,2,5,Glen,Ave,1430308,0.125,0.289,0,3.515368,8,4.5,0.351537,0.351537,0.351537,0.351537,28,28,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.546136,0.668483,0.351537,0.351537,0.546136,0.668483,0.599022,0.454122,0.351537,0.351537,0.599022,0.454122,1.140817,0.433114,0.351537,0.351537,1.140817,0.433114,0.351537,0.351537,0.351537,0.351537,0.351537,0.351537,,,,,,,0.546136,0.668483,0.599022,0.454122,1.140817,0.433114,0.351537,0.351537,0.351537,0.351537,0.19337,0.230074,0.209236,0.165766,0.371774,0.159463,0.13499,0.13499,0.070776,0.070776,18.02304,14.724432,16.431839,21.67484,8.628056,22.726201,28,28,28,28,,,,,,,,,,,4816,4816,0.351537,0.351537,0.351537,0.351537,0.351537,0.351537,0.351537,0.351537,0.13499,0.13499,28,28,, +26615,0,0.126347,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.707442,0.15,4,0.758084,0.758084,0.758084,0.758084,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,,,,,,,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.250168,0.250168,0.250168,0.250168,0.250168,0.250168,0.250168,0.250168,0.127611,0.127611,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.758084,0.250168,0.250168,10,10,, +26616,0,0.244247,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.233875,0.15,4,1.465485,1.465485,1.465485,1.465485,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,,,,,,,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,0.48361,0.48361,0.48361,0.48361,0.48361,0.48361,0.48361,0.48361,0.24669,0.24669,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,1.465485,0.48361,0.48361,10,10,, +21261,-1,0.017232,0,3,0,2,5,,2,5,Catherine,St,4604074,0.416,0.433,0,0.369257,8.5,4.5,,0.051696,,0.051696,,20,,18000,,4086,,9000,,5807,,6192,,6185,,0.051866,,0.051696,,0.051866,,0.062933,,0.051696,,0.062933,,0.206784,,0.051696,,0.206784,,0.051696,,0.051696,,0.051696,,,,,,,,0.051866,,0.062933,,0.206784,,0.051696,,0.051696,,0.018662,,0.021982,,0.065137,,0.018611,,0.00965,,19.934305,,16.428792,,5,,20,,20,,,,,,,,,,,,6192,,0.051696,,0.051696,,0.051696,,0.051696,,0.018611,,20,, +10574,0,0.040162,1,1,0,2,4,,2,5,Fuller,St,1430804,0.637,0.678,0,0.860606,8,4.5,0.086061,0.086061,0.086061,0.086061,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.247167,0.100329,0.086061,0.086061,0.247167,0.100329,0.14933,0.16892,0.086061,0.086061,0.14933,0.16892,0.19198,0.48194,0.086061,0.086061,0.19198,0.48194,0.086061,0.086061,0.086061,0.086061,0.086061,0.086061,,,,,,,0.247167,0.100329,0.14933,0.16892,0.19198,0.48194,0.086061,0.086061,0.086061,0.086061,0.081379,0.037328,0.052028,0.057905,0.064823,0.151811,0.033047,0.033047,0.017327,0.017327,9.749271,24.01787,16.136708,14.265344,12.551795,5,28,28,28,28,,,,,,,,,,,2408,2408,0.086061,0.086061,0.086061,0.086061,0.086061,0.086061,0.086061,0.086061,0.033047,0.033047,28,28,, +10295,0,0.067512,1,1,0,2,7,,2,5,Observatory,St,1429309,0.349,0.416,0,1.446685,8.5,4.5,0.202536,0.202536,0.202536,0.202536,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.810144,0.260448,0.202536,0.202536,0.810144,0.260448,0.479473,0.365609,0.202536,0.202536,0.479473,0.365609,0.450376,0.810144,0.202536,0.202536,0.450376,0.810144,0.202536,0.202536,0.202536,0.202536,0.202536,0.202536,,,,,,,0.810144,0.260448,0.479473,0.365609,0.450376,0.810144,0.202536,0.202536,0.202536,0.202536,0.255195,0.090287,0.155994,0.121835,0.147265,0.255195,0.072913,0.072913,0.037807,0.037807,5,15.55288,8.448274,11.079375,8.994072,5,20,20,20,20,,,,,,,,,,,1720,1720,0.202536,0.202536,0.202536,0.202536,0.202536,0.202536,0.202536,0.202536,0.072913,0.072913,20,20,, +21471,0,0.083046,1,1,0,2,7,,2,5,Ann,St,4604073,0.379,0.462,0,1.779554,8.5,4.5,0.249138,0.249138,0.249138,0.249138,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.847962,0.260199,0.249138,0.249138,0.847962,0.260199,0.253065,0.391525,0.249138,0.249138,0.253065,0.391525,0.258149,0.99655,0.249138,0.249138,0.258149,0.99655,0.249138,0.249138,0.249138,0.249138,0.249138,0.249138,,,,,,,0.847962,0.260199,0.253065,0.391525,0.258149,0.99655,0.249138,0.249138,0.249138,0.249138,0.269337,0.093008,0.090868,0.132406,0.092393,0.313913,0.08969,0.08969,0.046506,0.046506,5.876149,19.149748,19.689603,12.726535,19.301821,5,20,20,20,20,,,,,,,,,,,1720,1720,0.249138,0.249138,0.249138,0.249138,0.249138,0.249138,0.249138,0.249138,0.08969,0.08969,20,20,, +26656,0,0.18984,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.067995,0.15,4,1.139039,1.139039,1.139039,1.139039,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,,,,,,,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,0.375883,0.375883,0.375883,0.375883,0.375883,0.375883,0.375883,0.375883,0.191738,0.191738,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,1.139039,0.375883,0.375883,10,10,, +19616,0,0.076103,1,1,0,2,5,,2,5,Zina Pitcher,Pl,1908704,0.017,0.093,0,1.63078,8.5,4.5,0.228309,0.228309,0.228309,0.228309,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.913237,0.230609,0.228309,0.228309,0.913237,0.230609,0.913237,0.265748,0.228309,0.228309,0.913237,0.265748,0.913237,0.500999,0.228309,0.228309,0.913237,0.500999,0.228309,0.228309,0.228309,0.228309,0.228309,0.228309,,,,,,,0.913237,0.230609,0.913237,0.265748,0.913237,0.500999,0.228309,0.228309,0.228309,0.228309,0.28767,0.082881,0.28767,0.093423,0.28767,0.163998,0.082191,0.082191,0.042618,0.042618,5,19.800554,5,17.182416,5,9.114168,20,20,20,20,,,,,,,,,,,2064,2064,0.228309,0.228309,0.228309,0.228309,0.228309,0.228309,0.228309,0.228309,0.082191,0.082191,20,20,, +24720,0,0.07402,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.586135,0.15,4,0.444118,0.444118,0.444118,0.444118,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,,,,,,,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.146559,0.146559,0.146559,0.146559,0.146559,0.146559,0.146559,0.146559,0.07476,0.07476,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.444118,0.146559,0.146559,10,10,, +26629,0,0.083168,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.782175,0.15,4,0.499009,0.499009,0.499009,0.499009,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,,,,,,,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.164673,0.164673,0.164673,0.164673,0.164673,0.164673,0.164673,0.164673,0.084,0.084,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.499009,0.164673,0.164673,10,10,, +19618,0,0.017028,1,1,0,2,3,,2,5,Zina Pitcher,Pl,1908704,0,0.017,0,0.364881,6,5,0.034056,0.034056,0.034056,0.034056,30,30,8000,8000,1816,1816,4000,4000,2581,2581,2752,2752,2749,2749,0.053822,0.034068,0.034056,0.034056,0.053822,0.034068,0.035545,0.034582,0.034056,0.034056,0.035545,0.034582,0.039355,0.041074,0.034056,0.034056,0.039355,0.041074,0.034056,0.034056,0.034056,0.034056,0.034056,0.034056,,,,,,,0.053822,0.034068,0.035545,0.034582,0.039355,0.041074,0.034056,0.034056,0.034056,0.034056,0.019212,0.013285,0.013728,0.01344,0.014871,0.015387,0.013282,0.013282,0.006981,0.006981,18.982356,29.9888,28.743056,29.543343,25.960365,24.873677,30,30,30,30,,,,,,,,,,,2752,2752,0.034056,0.034056,0.034056,0.034056,0.034056,0.034056,0.034056,0.034056,0.013282,0.013282,30,30,, +10030,0,0.03431,1,1,0,2,7,,2,5,Observatory,St,1429309,0.416,0.451,0,0.735219,8.5,4.5,0.102931,0.102931,0.102931,0.102931,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.104713,0.356875,0.102931,0.102931,0.104713,0.356875,0.139254,0.104063,0.102931,0.102931,0.139254,0.104063,0.343382,0.104924,0.102931,0.102931,0.343382,0.104924,0.102931,0.102931,0.102931,0.102931,0.102931,0.102931,,,,,,,0.104713,0.356875,0.139254,0.104063,0.343382,0.104924,0.102931,0.102931,0.102931,0.102931,0.03759,0.113238,0.047952,0.037395,0.10919,0.037653,0.037055,0.037055,0.019214,0.019214,19.659564,5.768436,14.783095,19.782405,5.995116,19.620096,20,20,20,20,,,,,,,,,,,1720,1720,0.102931,0.102931,0.102931,0.102931,0.102931,0.102931,0.102931,0.102931,0.037055,0.037055,20,20,, +19650,0,0.022309,1,1,1,2,9,,2,5,Medical Center,Dr,1839204,0,0.022,0,0.47806,8.5,4.5,0.066928,0.066928,0.066928,0.066928,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.077085,0.267713,0.066928,0.066928,0.077085,0.267713,0.230917,0.267713,0.066928,0.066928,0.230917,0.267713,0.267713,0.267713,0.066928,0.066928,0.267713,0.267713,0.066928,0.066928,0.066928,0.066928,0.066928,0.066928,,,,,,,0.077085,0.267713,0.230917,0.267713,0.267713,0.267713,0.066928,0.066928,0.066928,0.066928,0.027141,0.08433,0.073291,0.08433,0.08433,0.08433,0.024094,0.024094,0.012493,0.012493,17.364867,5,5.796749,5,5,5,20,20,20,20,,,,,,,,,,,1892,1892,0.066928,0.066928,0.066928,0.066928,0.066928,0.066928,0.066928,0.066928,0.024094,0.024094,20,20,, +10119,0,0.115089,1,1,0,2,5,,3,5,Hill,St,1429402,1.118,1.233,0,2.466195,8,4.5,0.276214,0.276214,0.276214,0.276214,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.276385,0.288699,0.276214,0.276214,0.276385,0.288699,0.277513,0.277879,0.276214,0.276214,0.277513,0.277879,0.286389,0.277853,0.276214,0.276214,0.286389,0.277853,0.276214,0.276214,0.276214,0.276214,0.276214,0.276214,,,,,,,0.276385,0.288699,0.277513,0.277879,0.286389,0.277853,0.276214,0.276214,0.276214,0.276214,0.103631,0.107326,0.10397,0.10408,0.106633,0.104072,0.10358,0.10358,0.054092,0.054092,24.984545,23.918834,24.882959,24.850228,24.11176,24.852472,25,25,25,25,,,,,,,,,,,2408,2408,0.276214,0.276214,0.276214,0.276214,0.276214,0.276214,0.276214,0.276214,0.10358,0.10358,25,25,, +10396,0,0.100278,1,1,1,2,4,,3,5,Geddes,Ave,1429306,0.457,0.558,0,2.148808,6,4.5,0.182323,0.182323,0.182323,0.182323,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.186239,0.374983,0.182323,0.182323,0.186239,0.374983,0.20469,0.21128,0.182323,0.182323,0.20469,0.21128,0.366733,0.20807,0.182323,0.182323,0.366733,0.20807,0.182323,0.182323,0.182323,0.182323,0.182323,0.182323,,,,,,,0.186239,0.374983,0.20469,0.21128,0.366733,0.20807,0.182323,0.182323,0.182323,0.182323,0.073922,0.130545,0.079457,0.081434,0.12807,0.080471,0.072747,0.072747,0.038379,0.038379,32.306156,16.045167,29.394087,28.477135,16.406113,28.91653,33,33,33,33,,,,,,,,,,,2838,2838,0.182323,0.182323,0.182323,0.182323,0.182323,0.182323,0.182323,0.182323,0.072747,0.072747,33,33,, +26530,0,0.13332,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.856862,0.15,4,0.799921,0.799921,0.799921,0.799921,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,,,,,,,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.263974,0.263974,0.263974,0.263974,0.263974,0.263974,0.263974,0.263974,0.134653,0.134653,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.799921,0.263974,0.263974,10,10,, +26531,0,0.121092,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.594822,0.15,4,0.72655,0.72655,0.72655,0.72655,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,,,,,,,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.239762,0.239762,0.239762,0.239762,0.239762,0.239762,0.239762,0.239762,0.122303,0.122303,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.72655,0.239762,0.239762,10,10,, +9954,0,0.043141,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.689,0.732,0,0.924453,6,5,0.086282,0.086282,0.086282,0.086282,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.088593,0.304264,0.086282,0.086282,0.088593,0.304264,0.121474,0.135634,0.086282,0.086282,0.121474,0.135634,0.239071,0.144695,0.086282,0.086282,0.239071,0.144695,0.086282,0.086282,0.086282,0.086282,0.086282,0.086282,,,,,,,0.088593,0.304264,0.121474,0.135634,0.239071,0.144695,0.086282,0.086282,0.086282,0.086282,0.034343,0.099045,0.044208,0.048455,0.079487,0.051174,0.03365,0.03365,0.017688,0.017688,29.217437,8.507311,21.308856,19.084273,10.827197,17.889096,30,30,30,30,,,,,,,,,,,5504,5504,0.086282,0.086282,0.086282,0.086282,0.086282,0.086282,0.086282,0.086282,0.03365,0.03365,30,30,, +10384,0,0.042713,1,1,0,2,5,,2,5,Hill,St,1429402,1.075,1.118,0,0.915274,8.5,4.5,0.128138,0.128138,0.128138,0.128138,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.128182,0.211399,0.128138,0.128138,0.128182,0.211399,0.128919,0.129029,0.128138,0.128138,0.128919,0.129029,0.288006,0.129665,0.128138,0.128138,0.288006,0.129665,0.128138,0.128138,0.128138,0.128138,0.128138,0.128138,,,,,,,0.128182,0.211399,0.128919,0.129029,0.288006,0.129665,0.128138,0.128138,0.128138,0.128138,0.046143,0.071108,0.046364,0.046397,0.09409,0.046588,0.04613,0.04613,0.023919,0.023919,19.993142,12.12286,19.878954,19.861897,8.898294,19.764561,20,20,20,20,,,,,,,,,,,2064,2064,0.128138,0.128138,0.128138,0.128138,0.128138,0.128138,0.128138,0.128138,0.04613,0.04613,20,20,, +21438,1,0.036113,1,0,0,2,3,,2,5,Washtenaw,Ave,4601710,0,0.036,0,0.77384,6,5,0.072225,,0.072225,,30,,8000,,1816,,4000,,2581,,2752,,2749,,0.072225,,0.072225,,0.072225,,0.072225,,0.072225,,0.072225,,0.072228,,0.072225,,0.072228,,0.072225,,0.072225,,0.072225,,,,,,,,0.072225,,0.072225,,0.072228,,0.072225,,0.072225,,0.028168,,0.028168,,0.028169,,0.028168,,0.014806,,30,,30,,29.99879,,30,,30,,,,,,,,,,,,2752,,0.072225,,0.072225,,0.072225,,0.072225,,0.028168,,30,,, +26534,0,0.213043,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.565197,0.15,4,1.278255,1.278255,1.278255,1.278255,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,,,,,,,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,0.421824,0.421824,0.421824,0.421824,0.421824,0.421824,0.421824,0.421824,0.215173,0.215173,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,1.278255,0.421824,0.421824,10,10,, +10190,0,0.092263,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.732,0.824,0,1.977057,5,5,0.158165,0.158165,0.158165,0.158165,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.159653,0.304613,0.158165,0.158165,0.159653,0.304613,0.176752,0.182932,0.158165,0.158165,0.176752,0.182932,0.295883,0.189006,0.158165,0.158165,0.295883,0.189006,0.158165,0.158165,0.158165,0.158165,0.158165,0.158165,,,,,,,0.159653,0.304613,0.176752,0.182932,0.295883,0.189006,0.158165,0.158165,0.158165,0.158165,0.064503,0.107991,0.069633,0.071487,0.105372,0.073309,0.064057,0.064057,0.033874,0.033874,34.673724,18.17307,31.319313,30.261365,18.709278,29.288788,35,35,35,35,,,,,,,,,,,7568,7568,0.158165,0.158165,0.158165,0.158165,0.158165,0.158165,0.158165,0.158165,0.064057,0.064057,35,35,, +26651,0,0.157205,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.368684,0.15,4,0.943231,0.943231,0.943231,0.943231,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,,,,,,,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.311266,0.311266,0.311266,0.311266,0.311266,0.311266,0.311266,0.311266,0.158777,0.158777,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.943231,0.311266,0.311266,10,10,, +19647,0,0.190694,2,2,0,2,9,,2,5,Medical Center,Dr,1839209,0.136,0.327,0,4.086299,8.5,4.5,0.572082,0.572082,0.572082,0.572082,20,20,10000,10000,2270,2270,5000,5000,3226,3226,3440,3440,3436,3436,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,,,,,,,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.205949,0.205949,0.205949,0.205949,0.205949,0.205949,0.205949,0.205949,0.106789,0.106789,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,3440,3440,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.572082,0.205949,0.205949,20,20,, +30083,0,0.133502,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.860767,0.15,4,0.801015,0.801015,0.801015,0.801015,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.801015,0.801024,0.801015,0.801015,0.801015,0.801024,0.801016,0.801015,0.801015,0.801015,0.801016,0.801015,0.801019,0.801015,0.801015,0.801015,0.801019,0.801015,0.801015,0.801015,0.801015,0.801015,0.801015,0.801015,,,,,,,0.801015,0.801024,0.801016,0.801015,0.801019,0.801015,0.801015,0.801015,0.801015,0.801015,0.264335,0.264338,0.264335,0.264335,0.264336,0.264335,0.264335,0.264335,0.134837,0.134837,9.999997,9.999886,9.999987,9.999994,9.999943,9.999994,10,10,10,10,,,,,,,,,,,34400,34400,0.801015,0.801015,0.801015,0.801015,0.801015,0.801015,0.801015,0.801015,0.264335,0.264335,10,10,, +11167,0,0.233211,1,1,0,2,7,,3,5,Traver,Rd,1443305,0.663,0.896,0,4.997374,7,4.5,0.699632,0.699632,0.699632,0.699632,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.70081,1.020899,0.699632,0.699632,0.70081,1.020899,0.700609,0.700466,0.699632,0.699632,0.700609,0.700466,1.107803,0.704677,0.699632,0.699632,1.107803,0.704677,0.699632,0.699632,0.699632,0.699632,0.699632,0.699632,,,,,,,0.70081,1.020899,0.700609,0.700466,1.107803,0.704677,0.699632,0.699632,0.699632,0.699632,0.252221,0.348248,0.252161,0.252118,0.374319,0.253381,0.251868,0.251868,0.130598,0.130598,19.966387,13.7062,19.972121,19.976204,12.630986,19.856825,20,20,20,20,,,,,,,,,,,1892,1892,0.699632,0.699632,0.699632,0.699632,0.699632,0.699632,0.699632,0.699632,0.251868,0.251868,20,20,, +11222,0,0.48072,2,2,1,2,3,,2,5,Plymouth,Rd,1443101,0.07,0.55,0,10.301142,6,5,0.96144,0.96144,0.96144,0.96144,30,30,16800,16800,3814,3814,8400,8400,5420,5420,5779,5779,5772,5772,1.06209,1.279326,0.96144,0.96144,1.06209,1.279326,1.096295,1.116856,0.96144,0.96144,1.096295,1.116856,1.306557,1.231524,0.96144,0.96144,1.306557,1.231524,0.96144,0.96144,0.96144,0.96144,0.96144,0.96144,,,,,,,1.06209,1.279326,1.096295,1.116856,1.306557,1.231524,0.96144,0.96144,0.96144,0.96144,0.405157,0.470327,0.415418,0.421586,0.478497,0.455987,0.374962,0.374962,0.197095,0.197095,27.157013,22.545625,26.309694,25.825361,22.075734,23.420736,30,30,30,30,,,,,,,,,,,5779,5779,0.96144,0.96144,0.96144,0.96144,0.96144,0.96144,0.96144,0.96144,0.374962,0.374962,30,30,, +21717,0,0.517466,1,1,0,2,7,,3,5,Broadway,St,4600033,0.181,0.699,0,11.088562,7,4.5,1.552399,1.552399,1.552399,1.552399,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,1.776412,1.778786,1.552399,1.552399,1.776412,1.778786,1.662044,1.713932,1.552399,1.552399,1.662044,1.713932,1.916861,2.276109,1.552399,1.552399,1.916861,2.276109,1.552399,1.552399,1.552399,1.552399,1.552399,1.552399,,,,,,,1.776412,1.778786,1.662044,1.713932,1.916861,2.276109,1.552399,1.552399,1.552399,1.552399,0.626067,0.62678,0.591757,0.607324,0.668202,0.775977,0.558864,0.558864,0.289781,0.289781,17.477916,17.454588,18.680603,18.115053,16.197299,13.640812,20,20,20,20,,,,,,,,,,,1892,1892,1.552399,1.552399,1.552399,1.552399,1.552399,1.552399,1.552399,1.552399,0.558864,0.558864,20,20,, +26063,0,0.356616,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,7.641767,0.15,4,2.139695,2.139695,2.139695,2.139695,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,,,,,,,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,0.706099,0.706099,0.706099,0.706099,0.706099,0.706099,0.706099,0.706099,0.360182,0.360182,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,2.139695,0.706099,0.706099,10,10,, +30019,0,0.349988,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.499737,0.15,4,2.099926,2.099926,2.099926,2.099926,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.099926,2.099927,2.099926,2.099926,2.099926,2.099927,2.099926,2.099926,2.099926,2.099926,2.099926,2.099926,2.099927,2.099926,2.099926,2.099926,2.099927,2.099926,2.099926,2.099926,2.099926,2.099926,2.099926,2.099926,,,,,,,2.099926,2.099927,2.099926,2.099926,2.099927,2.099926,2.099926,2.099926,2.099926,2.099926,0.692976,0.692976,0.692976,0.692976,0.692976,0.692976,0.692976,0.692976,0.353488,0.353488,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.099926,2.099926,2.099926,2.099926,2.099926,2.099926,2.099926,2.099926,0.692976,0.692976,10,10,, +21758,0,0.181447,1,1,0,2,7,,2,5,Broadway,St,4600033,0,0.181,0,3.888151,8.5,4.5,0.544341,0.544341,0.544341,0.544341,20,20,5000,5000,1135,1135,2500,2500,1613,1613,1720,1720,1718,1718,0.926158,0.66923,0.544341,0.544341,0.926158,0.66923,0.788158,0.798533,0.544341,0.544341,0.788158,0.798533,0.753834,1.275776,0.544341,0.544341,0.753834,1.275776,0.544341,0.544341,0.544341,0.544341,0.544341,0.544341,,,,,,,0.926158,0.66923,0.788158,0.798533,0.753834,1.275776,0.544341,0.544341,0.544341,0.544341,0.310508,0.233429,0.269108,0.27222,0.258811,0.415393,0.195963,0.195963,0.10161,0.10161,11.754823,16.267695,13.813,13.633525,14.441934,8.533488,20,20,20,20,,,,,,,,,,,1720,1720,0.544341,0.544341,0.544341,0.544341,0.544341,0.544341,0.544341,0.544341,0.195963,0.195963,20,20,, +26617,0,0.182682,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.91462,0.15,4,1.096094,1.096094,1.096094,1.096094,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,,,,,,,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,0.361711,0.361711,0.361711,0.361711,0.361711,0.361711,0.361711,0.361711,0.184509,0.184509,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,1.096094,0.361711,0.361711,10,10,, +30023,0,0.078588,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.684035,0.15,4,0.47153,0.47153,0.47153,0.47153,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,,,,,,,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.155605,0.155605,0.155605,0.155605,0.155605,0.155605,0.155605,0.155605,0.079374,0.079374,9.999999,9.999999,9.999999,9.999999,9.999997,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.47153,0.155605,0.155605,10,10,, +11518,0,0.149297,1,1,1,2,4,,2,5,Maiden,Ln,1451707,0,0.149,0,3.19923,8,4.5,0.319923,0.319923,0.319923,0.319923,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.986607,0.342285,0.319923,0.319923,0.986607,0.342285,0.467434,0.457417,0.319923,0.319923,0.467434,0.457417,0.447268,1.013959,0.319923,0.319923,0.447268,1.013959,0.319923,0.319923,0.319923,0.319923,0.319923,0.319923,,,,,,,0.986607,0.342285,0.467434,0.457417,0.447268,1.013959,0.319923,0.319923,0.319923,0.319923,0.322856,0.129559,0.167104,0.164099,0.161054,0.331061,0.12285,0.12285,0.064411,0.064411,9.079447,26.17072,19.163879,19.583528,20.027898,8.834525,28,28,28,28,,,,,,,,,,,2649,2649,0.319923,0.319923,0.319923,0.319923,0.319923,0.319923,0.319923,0.319923,0.12285,0.12285,28,28,, +11474,0,0.069626,2,2,1,2,3,,2,5,Plymouth,Rd,1443101,0,0.07,0,1.491982,6,5,0.139252,0.139252,0.139252,0.139252,30,30,16800,16800,3814,3814,8400,8400,5420,5420,5779,5779,5772,5772,0.213317,0.273197,0.139252,0.139252,0.213317,0.273197,0.219921,0.230066,0.139252,0.139252,0.219921,0.230066,0.299743,0.324184,0.139252,0.139252,0.299743,0.324184,0.139252,0.139252,0.139252,0.139252,0.139252,0.139252,,,,,,,0.213317,0.273197,0.219921,0.230066,0.299743,0.324184,0.139252,0.139252,0.139252,0.139252,0.076528,0.094492,0.078509,0.081553,0.102456,0.109788,0.054308,0.054308,0.028547,0.028547,19.583801,15.291321,18.995668,18.158034,13.937093,12.886337,30,30,30,30,,,,,,,,,,,5779,5779,0.139252,0.139252,0.139252,0.139252,0.139252,0.139252,0.139252,0.139252,0.054308,0.054308,30,30,, +10536,0,0.289629,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.624,0.914,0,6.206334,6,4.5,0.526598,0.526598,0.526598,0.526598,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.635299,0.627557,0.526598,0.526598,1.635299,0.627557,0.840575,0.651244,0.526598,0.526598,0.840575,0.651244,1.139794,1.377585,0.526598,0.526598,1.139794,1.377585,0.526598,0.526598,0.526598,0.526598,0.526598,0.526598,,,,,,,1.635299,0.627557,0.840575,0.651244,1.139794,1.377585,0.526598,0.526598,0.526598,0.526598,0.542723,0.2404,0.304306,0.247507,0.394071,0.465409,0.210113,0.210113,0.110849,0.110849,10.62664,27.691071,20.673629,26.68389,15.246384,12.614642,33,33,33,33,,,,,,,,,,,2580,2580,0.526598,0.526598,0.526598,0.526598,0.526598,0.526598,0.526598,0.526598,0.210113,0.210113,33,33,, +11019,0,0.259098,1,1,0,2,4,,3,5,Pontiac,St,1451302,0.531,0.79,0,5.552105,6,4.5,0.471088,0.471088,0.471088,0.471088,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.49513,0.889469,0.471088,0.471088,0.49513,0.889469,0.518069,0.512993,0.471088,0.471088,0.518069,0.512993,0.848743,0.556674,0.471088,0.471088,0.848743,0.556674,0.471088,0.471088,0.471088,0.471088,0.471088,0.471088,,,,,,,0.49513,0.889469,0.518069,0.512993,0.848743,0.556674,0.471088,0.471088,0.471088,0.471088,0.195177,0.313478,0.202058,0.200536,0.301261,0.21364,0.187964,0.187964,0.099164,0.099164,31.397608,17.477723,30.007399,30.30428,18.316368,27.926365,33,33,33,33,,,,,,,,,,,2580,2580,0.471088,0.471088,0.471088,0.471088,0.471088,0.471088,0.471088,0.471088,0.187964,0.187964,33,33,, +26619,0,0.067295,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.442029,0.15,4,0.403768,0.403768,0.403768,0.403768,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,,,,,,,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.133243,0.133243,0.133243,0.133243,0.133243,0.133243,0.133243,0.133243,0.067968,0.067968,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.403768,0.133243,0.133243,10,10,, +26586,0,0.122159,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.617689,0.15,4,0.732953,0.732953,0.732953,0.732953,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,,,,,,,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.241874,0.241874,0.241874,0.241874,0.241874,0.241874,0.241874,0.241874,0.12338,0.12338,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.732953,0.241874,0.241874,10,10,, +10814,0,0.039657,1,1,0,2,4,,3,5,Pontiac,St,1451302,0.491,0.531,0,0.849783,6,4.5,0.072103,0.072103,0.072103,0.072103,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.077499,0.131152,0.072103,0.072103,0.077499,0.131152,0.081696,0.082354,0.072103,0.072103,0.081696,0.082354,0.106715,0.092325,0.072103,0.072103,0.106715,0.092325,0.072103,0.072103,0.072103,0.072103,0.072103,0.072103,,,,,,,0.077499,0.131152,0.081696,0.082354,0.106715,0.092325,0.072103,0.072103,0.072103,0.072103,0.030388,0.046484,0.031647,0.031844,0.039153,0.034836,0.028769,0.028769,0.015178,0.015178,30.702038,18.142201,29.124917,28.892193,22.296642,25.771984,33,33,33,33,,,,,,,,,,,2580,2580,0.072103,0.072103,0.072103,0.072103,0.072103,0.072103,0.072103,0.072103,0.028769,0.028769,33,33,, +10535,0,0.150747,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.914,1.065,0,3.230295,6,4.5,0.274086,0.274086,0.274086,0.274086,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.808965,0.42134,0.274086,0.274086,1.808965,0.42134,0.678734,0.466636,0.274086,0.274086,0.678734,0.466636,1.095111,1.449371,0.274086,0.274086,1.095111,1.449371,0.274086,0.274086,0.274086,0.274086,0.274086,0.274086,,,,,,,1.808965,0.42134,0.678734,0.466636,1.095111,1.449371,0.274086,0.274086,0.274086,0.274086,0.569824,0.153537,0.230755,0.167125,0.355668,0.461946,0.10936,0.10936,0.057695,0.057695,5,21.4668,13.326031,19.383036,8.259275,6.240517,33,33,33,33,,,,,,,,,,,2580,2580,0.274086,0.274086,0.274086,0.274086,0.274086,0.274086,0.274086,0.274086,0.10936,0.10936,33,33,, +11403,0,0.168676,1,1,0,2,7,,3,5,Traver,Rd,1443305,0.494,0.663,0,3.614476,7,4.5,0.506027,0.506027,0.506027,0.506027,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.506076,0.516848,0.506027,0.506027,0.506076,0.516848,0.506034,0.506031,0.506027,0.506027,0.506034,0.506031,0.634931,0.506631,0.506027,0.506027,0.634931,0.506631,0.506027,0.506027,0.506027,0.506027,0.506027,0.506027,,,,,,,0.506076,0.516848,0.506034,0.506031,0.634931,0.506631,0.506027,0.506027,0.506027,0.506027,0.182184,0.185416,0.182172,0.182171,0.220841,0.182351,0.18217,0.18217,0.094458,0.094458,19.998044,19.58124,19.999697,19.999814,15.939578,19.976125,20,20,20,20,,,,,,,,,,,1892,1892,0.506027,0.506027,0.506027,0.506027,0.506027,0.506027,0.506027,0.506027,0.18217,0.18217,20,20,, +11472,0,0.058096,2,2,1,2,3,,2,5,Plymouth,Rd,1443101,0.55,0.608,0,1.244904,6,5,0.116191,0.116191,0.116191,0.116191,30,30,16800,16800,3814,3814,8400,8400,5420,5420,5779,5779,5772,5772,0.128503,0.197591,0.116191,0.116191,0.128503,0.197591,0.133988,0.143923,0.116191,0.116191,0.133988,0.143923,0.188629,0.17744,0.116191,0.116191,0.188629,0.17744,0.116191,0.116191,0.116191,0.116191,0.116191,0.116191,,,,,,,0.128503,0.197591,0.133988,0.143923,0.188629,0.17744,0.116191,0.116191,0.116191,0.116191,0.049008,0.069735,0.050654,0.053634,0.067046,0.063689,0.045315,0.045315,0.023819,0.023819,27.125737,17.641119,26.015282,24.219393,18.479305,19.644582,30,30,30,30,,,,,,,,,,,5779,5779,0.116191,0.116191,0.116191,0.116191,0.116191,0.116191,0.116191,0.116191,0.045315,0.045315,30,30,, +21706,0,0.209094,1,1,0,2,7,,3,5,Broadway,St,4600033,0.719,0.928,0,4.480596,7,4.5,0.627283,0.627283,0.627283,0.627283,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.633164,0.872023,0.627283,0.627283,0.633164,0.872023,0.631102,0.638087,0.627283,0.627283,0.631102,0.638087,0.909715,0.68343,0.627283,0.627283,0.909715,0.68343,0.627283,0.627283,0.627283,0.627283,0.627283,0.627283,,,,,,,0.633164,0.872023,0.631102,0.638087,0.909715,0.68343,0.627283,0.627283,0.627283,0.627283,0.227586,0.299244,0.226968,0.229063,0.310551,0.242666,0.225822,0.225822,0.117093,0.117093,19.814258,14.386856,19.878992,19.661388,13.790774,18.356909,20,20,20,20,,,,,,,,,,,1892,1892,0.627283,0.627283,0.627283,0.627283,0.627283,0.627283,0.627283,0.627283,0.225822,0.225822,20,20,, +26604,0,0.099227,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.126286,0.15,4,0.59536,0.59536,0.59536,0.59536,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,,,,,,,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.196469,0.196469,0.196469,0.196469,0.196469,0.196469,0.196469,0.196469,0.100219,0.100219,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.59536,0.196469,0.196469,10,10,, +30054,0,0.199948,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.284602,0.15,4,1.199689,1.199689,1.199689,1.199689,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,,,,,,,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,0.395897,0.395897,0.395897,0.395897,0.395897,0.395897,0.395897,0.395897,0.201948,0.201948,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,1.199689,0.395897,0.395897,10,10,, +21710,0,0.020246,1,1,0,2,7,,3,5,Broadway,St,4600033,0.699,0.719,0,0.433832,7,4.5,0.060737,0.060737,0.060737,0.060737,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.061612,0.097262,0.060737,0.060737,0.061612,0.097262,0.061432,0.062508,0.060737,0.060737,0.061432,0.062508,0.09993,0.068314,0.060737,0.060737,0.09993,0.068314,0.060737,0.060737,0.060737,0.060737,0.060737,0.060737,,,,,,,0.061612,0.097262,0.061432,0.062508,0.09993,0.068314,0.060737,0.060737,0.060737,0.060737,0.022128,0.032823,0.022074,0.022397,0.033623,0.024139,0.021865,0.021865,0.011337,0.011337,19.715728,12.48932,19.77367,19.433214,12.155785,17.781477,20,20,20,20,,,,,,,,,,,1892,1892,0.060737,0.060737,0.060737,0.060737,0.060737,0.060737,0.060737,0.060737,0.021865,0.021865,20,20,, +26603,0,0.173031,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.707797,0.15,4,1.038183,1.038183,1.038183,1.038183,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,,,,,,,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,0.3426,0.3426,0.3426,0.3426,0.3426,0.3426,0.3426,0.3426,0.174761,0.174761,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,1.038183,0.3426,0.3426,10,10,, +10447,1,0.441641,2,0,0,1,2,,5,5,S US 23,,1431408,0,0.441,0,,1.02,7,0.37855,,0.37855,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.381128,,0.37855,,0.381128,,0.378557,,0.37855,,0.378557,,0.378621,,0.37855,,0.378621,,0.37855,,0.37855,,0.37855,,,,,,,,0.381128,,0.378557,,0.378621,,0.37855,,0.37855,,0.193834,,0.193062,,0.193082,,0.19306,,0.105363,,69.526416,,69.998731,,69.986829,,70,,70,,,,,,,,,,,,15136,,0.37855,,0.37855,,0.37855,,0.37855,,0.19306,,70,,, +10519,-1,0.474738,0,2,0,1,2,,5,5,S US 23 BR,,1431105,0,0.475,0,,1.02,7,,0.406918,,0.406918,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.425701,,0.406918,,0.425701,,0.407021,,0.406918,,0.407021,,0.407231,,0.406918,,0.407231,,0.406918,,0.406918,,0.406918,,,,,,,,0.425701,,0.407021,,0.407231,,0.406918,,0.406918,,0.213163,,0.207559,,0.207622,,0.207528,,0.113259,,66.911494,,69.982336,,69.946162,,70,,70,,,,,,,,,,,,15136,,0.406918,,0.406918,,0.406918,,0.406918,,0.207528,,70,, +10520,-1,0.492094,0,2,0,1,2,,5,5,W M 14,,1431104,0,0.492,0,,1.02,7,,0.421795,,0.421795,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.422663,,0.421795,,0.422663,,0.421946,,0.421795,,0.421946,,0.424538,,0.421795,,0.424538,,0.421795,,0.421795,,0.421795,,,,,,,,0.422663,,0.421946,,0.424538,,0.421795,,0.421795,,0.215376,,0.215161,,0.215938,,0.215115,,0.1174,,69.856337,,69.974966,,69.547676,,70,,70,,,,,,,,,,,,15136,,0.421795,,0.421795,,0.421795,,0.421795,,0.215115,,70,, +10532,1,0.751975,2,0,0,1,2,,5,5,N US 23 BR,,1431003,0,0.752,0,,1.02,7,0.64455,,0.64455,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.64476,,0.64455,,0.64476,,0.644647,,0.64455,,0.644647,,0.658965,,0.64455,,0.658965,,0.64455,,0.64455,,0.64455,,,,,,,,0.64476,,0.644647,,0.658965,,0.64455,,0.64455,,0.328784,,0.32875,,0.333045,,0.328721,,0.1794,,69.977225,,69.989505,,68.468737,,70,,70,,,,,,,,,,,,15136,,0.64455,,0.64455,,0.64455,,0.64455,,0.328721,,70,,, +10533,1,0.33756,2,0,0,1,2,,3,5,E M 14,,1431002,0,0.338,0,,0.58,7,0.311593,,0.311593,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.312551,,0.311593,,0.312551,,0.311705,,0.311593,,0.311705,,0.312571,,0.311593,,0.312571,,0.311593,,0.311593,,0.311593,,,,,,,,0.312551,,0.311705,,0.312571,,0.311593,,0.311593,,0.154526,,0.154272,,0.154532,,0.154239,,0.083871,,64.800805,,64.976829,,64.79674,,65,,65,,,,,,,,,,,,15136,,0.311593,,0.311593,,0.311593,,0.311593,,0.154239,,65,,, +10984,0,1.101714,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,1.881,2.982,0,23.60816,3,4,1.652571,1.652571,1.652571,1.652571,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.653619,1.752841,1.652571,1.652571,1.653619,1.752841,1.65458,1.65689,1.652571,1.652571,1.65458,1.65689,1.693426,1.66145,1.652571,1.652571,1.693426,1.66145,1.652571,1.652571,1.652571,1.652571,1.652571,1.652571,,,,,,,1.653619,1.752841,1.65458,1.65689,1.693426,1.66145,1.652571,1.652571,1.652571,1.652571,0.694394,0.724161,0.694683,0.695376,0.706336,0.696744,0.69408,0.69408,0.369074,0.369074,39.974643,37.711837,39.951438,39.895727,39.034981,39.786232,40,40,40,40,,,,,,,,,,,3096,3096,1.652571,1.652571,1.652571,1.652571,1.652571,1.652571,1.652571,1.652571,0.69408,0.69408,40,40,, +11579,-1,0.519403,0,2,0,1,2,,5,5,N US 23,,1431410,0,0.519,0,,1.02,7,,0.445202,,0.445202,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.445248,,0.445202,,0.445248,,0.445207,,0.445202,,0.445207,,0.445867,,0.445202,,0.445867,,0.445202,,0.445202,,0.445202,,,,,,,,0.445248,,0.445207,,0.445867,,0.445202,,0.445202,,0.227067,,0.227055,,0.227253,,0.227053,,0.123915,,69.992797,,69.999257,,69.895654,,70,,70,,,,,,,,,,,,15136,,0.445202,,0.445202,,0.445202,,0.445202,,0.227053,,70,, +21559,0,0.847329,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,0.844,1.691,0,18.157059,3,4,1.270994,1.270994,1.270994,1.270994,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.271168,1.271954,1.270994,1.270994,1.271168,1.271954,1.271082,1.271103,1.270994,1.270994,1.271082,1.271103,1.272083,1.271441,1.270994,1.270994,1.272083,1.271441,1.270994,1.270994,1.270994,1.270994,1.270994,1.270994,,,,,,,1.271168,1.271954,1.271082,1.271103,1.272083,1.271441,1.270994,1.270994,1.270994,1.270994,0.53387,0.534106,0.533844,0.53385,0.534144,0.533951,0.533818,0.533818,0.283855,0.283855,39.994541,39.969801,39.997226,39.996581,39.96577,39.985958,40,40,40,40,,,,,,,,,,,3096,3096,1.270994,1.270994,1.270994,1.270994,1.270994,1.270994,1.270994,1.270994,0.533818,0.533818,40,40,, +30007,0,1.274267,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,27.305726,0.15,4,5.097069,5.097069,5.097069,5.097069,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,,,,,,,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,1.758489,1.758489,1.758489,1.758489,1.758489,1.758489,1.758489,1.758489,0.90473,0.90473,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,5.097069,1.758489,1.758489,15,15,, +10388,1,0.775805,2,0,0,1,2,,3,5,E M 14,,1426704,4.007,4.783,0,,0.58,7,0.716128,,0.716128,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.795661,,0.716128,,0.795661,,0.732706,,0.716128,,0.732706,,1.315658,,0.716128,,1.315658,,0.716128,,0.716128,,0.716128,,,,,,,,0.795661,,0.732706,,1.315658,,0.716128,,0.716128,,0.378343,,0.359457,,0.534342,,0.354483,,0.192758,,58.502716,,63.529317,,35.380252,,65,,65,,,,,,,,,,,,15136,,0.716128,,0.716128,,0.716128,,0.716128,,0.354483,,65,,, +10429,-1,0.704016,0,2,0,1,2,,3,5,W M 14,,1427103,4.031,4.735,0,,0.58,7,,0.649861,,0.649861,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.196879,,0.649861,,1.196879,,0.664105,,0.649861,,0.664105,,0.764621,,0.649861,,0.764621,,0.649861,,0.649861,,0.649861,,,,,,,,1.196879,,0.664105,,0.764621,,0.649861,,0.649861,,0.485787,,0.325955,,0.356109,,0.321681,,0.174921,,35.29258,,63.6058,,55.244315,,65,,65,,,,,,,,,,,,15136,,0.649861,,0.649861,,0.649861,,0.649861,,0.321681,,65,, +21780,0,0.745705,1,1,0,2,4,,4,5,Whitmore Lake,Rd,4603187,0.098,0.844,0,15.979401,4.5,4.5,1.17743,1.17743,1.17743,1.17743,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.177937,1.180617,1.17743,1.17743,1.177937,1.180617,1.177881,1.177895,1.17743,1.17743,1.177881,1.177895,1.180793,1.178876,1.17743,1.17743,1.180793,1.178876,1.17743,1.17743,1.17743,1.17743,1.17743,1.17743,,,,,,,1.177937,1.180617,1.177881,1.177895,1.180793,1.178876,1.17743,1.17743,1.17743,1.17743,0.487608,0.488412,0.487591,0.487596,0.488465,0.48789,0.487456,0.487456,0.258642,0.258642,37.983614,37.897397,37.985423,37.984972,37.891773,37.953376,38,38,38,38,,,,,,,,,,,3096,3096,1.17743,1.17743,1.17743,1.17743,1.17743,1.17743,1.17743,1.17743,0.487456,0.487456,38,38,, +10434,-1,0.197872,0,2,0,1,2,,3,5,W M 14,,1427103,3.834,4.031,0,,0.58,7,,0.182651,,0.182651,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.266227,,0.182651,,0.266227,,0.185187,,0.182651,,0.185187,,0.205256,,0.182651,,0.205256,,0.182651,,0.182651,,0.182651,,,,,,,,0.266227,,0.185187,,0.205256,,0.182651,,0.182651,,0.115485,,0.091173,,0.097194,,0.090412,,0.049164,,44.59469,,64.110067,,57.841458,,65,,65,,,,,,,,,,,,15136,,0.182651,,0.182651,,0.182651,,0.182651,,0.090412,,65,, +10521,1,0.143336,1,0,0,1,2,RON,3,5,Whitmore Lake/W M 14,RAMP,1431103,0,0.143,0,,1.09,4,0.215004,,0.215004,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.217807,,0.215004,,0.217807,,0.216992,,0.215004,,0.216992,,0.221407,,0.215004,,0.221407,,0.215004,,0.215004,,0.215004,,,,,,,,0.217807,,0.216992,,0.221407,,0.215004,,0.215004,,0.091143,,0.090898,,0.092223,,0.090302,,0.048018,,39.485326,,39.633548,,38.843252,,40,,40,,,,,,,,,,,,5074,,0.215004,,0.215004,,0.215004,,0.215004,,0.090302,,40,,, +19249,1,0.217959,1,0,0,1,2,ROF,3,5,W M 14/Whitmore Lake,RAMP,1806910,0,0.218,0,,2.24,5,0.373644,,0.373644,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.374684,,0.373644,,0.374684,,0.373663,,0.373644,,0.373663,,0.373669,,0.373644,,0.373669,,0.373644,,0.373644,,0.373644,,,,,,,,0.374684,,0.373663,,0.373669,,0.373644,,0.373644,,0.151638,,0.151331,,0.151333,,0.151326,,0.080022,,34.902773,,34.998204,,34.997642,,35,,35,,,,,,,,,,,,5074,,0.373644,,0.373644,,0.373644,,0.373644,,0.151326,,35,,, +21291,0,0.026451,1,1,0,2,4,,4,5,Whitmore Lake,Rd,4603187,0.066,0.092,0,0.566804,4.5,4.5,0.041764,0.041764,0.041764,0.041764,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.052214,0.048594,0.041764,0.041764,0.052214,0.048594,0.051224,0.041938,0.041764,0.041764,0.051224,0.041938,0.082433,0.041956,0.041764,0.041764,0.082433,0.041956,0.041764,0.041764,0.041764,0.041764,0.041764,0.041764,,,,,,,0.052214,0.048594,0.051224,0.041938,0.082433,0.041956,0.041764,0.041764,0.041764,0.041764,0.020425,0.019339,0.020128,0.017342,0.029491,0.017348,0.01729,0.01729,0.009174,0.009174,30.39532,32.659122,30.98233,37.843027,19.252621,37.826722,38,38,38,38,,,,,,,,,,,3096,3096,0.041764,0.041764,0.041764,0.041764,0.041764,0.041764,0.041764,0.041764,0.01729,0.01729,38,38,, +22050,0,0.00635,1,1,0,2,4,,4,5,Whitmore Lake,Rd,4603187,0.092,0.098,0,0.13607,4.5,4.5,0.010026,0.010026,0.010026,0.010026,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.010027,0.013982,0.010026,0.010026,0.010027,0.013982,0.010028,0.010205,0.010026,0.010026,0.010028,0.010205,0.010035,0.010291,0.010026,0.010026,0.010035,0.010291,0.010026,0.010026,0.010026,0.010026,0.010026,0.010026,,,,,,,0.010027,0.013982,0.010028,0.010205,0.010035,0.010291,0.010026,0.010026,0.010026,0.010026,0.004151,0.005338,0.004151,0.004204,0.004153,0.00423,0.004151,0.004151,0.002202,0.002202,37.997,27.249495,37.995035,37.335828,37.968103,37.020738,38,38,38,38,,,,,,,,,,,3096,3096,0.010026,0.010026,0.010026,0.010026,0.010026,0.010026,0.010026,0.010026,0.004151,0.004151,38,38,, +21340,0,0.209479,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,1.691,1.9,0,4.488829,3,4,0.314218,0.314218,0.314218,0.314218,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.314219,0.314243,0.314218,0.314218,0.314219,0.314243,0.314218,0.314219,0.314218,0.314218,0.314218,0.314219,0.314237,0.314223,0.314218,0.314218,0.314237,0.314223,0.314218,0.314218,0.314218,0.314218,0.314218,0.314218,,,,,,,0.314219,0.314243,0.314218,0.314219,0.314237,0.314223,0.314218,0.314218,0.314218,0.314218,0.131972,0.131979,0.131972,0.131972,0.131977,0.131973,0.131972,0.131972,0.070175,0.070175,39.999892,39.996764,39.999961,39.999935,39.997646,39.999391,40,40,40,40,,,,,,,,,,,3096,3096,0.314218,0.314218,0.314218,0.314218,0.314218,0.314218,0.314218,0.314218,0.131972,0.131972,40,40,, +10785,0,0.593723,1,1,0,2,4,,3,5,Pontiac,Trl,1451302,1.287,1.881,0,12.722631,6,4.5,1.079496,1.079496,1.079496,1.079496,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.097559,1.809465,1.079496,1.079496,1.097559,1.809465,1.107906,1.122033,1.079496,1.079496,1.107906,1.122033,1.519297,1.194776,1.079496,1.079496,1.519297,1.194776,1.079496,1.079496,1.079496,1.079496,1.079496,1.079496,,,,,,,1.097559,1.809465,1.107906,1.122033,1.519297,1.194776,1.079496,1.079496,1.079496,1.079496,0.436138,0.64971,0.439242,0.44348,0.562659,0.465303,0.430719,0.430719,0.227234,0.227234,32.456904,19.687233,32.153768,31.748936,23.447265,29.815929,33,33,33,33,,,,,,,,,,,2580,2580,1.079496,1.079496,1.079496,1.079496,1.079496,1.079496,1.079496,1.079496,0.430719,0.430719,33,33,, +11530,0,0.393042,1,1,0,2,5,,3,5,Dhu Varren,Rd,1431502,0.261,0.654,0,8.422323,8,4.5,0.9433,0.9433,0.9433,0.9433,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.948093,0.944006,0.9433,0.9433,0.948093,0.944006,0.943751,0.943566,0.9433,0.9433,0.943751,0.943566,0.946612,0.948379,0.9433,0.9433,0.946612,0.948379,0.9433,0.9433,0.9433,0.9433,0.9433,0.9433,,,,,,,0.948093,0.944006,0.943751,0.943566,0.946612,0.948379,0.9433,0.9433,0.9433,0.9433,0.355175,0.353949,0.353873,0.353817,0.354731,0.355261,0.353738,0.353738,0.18473,0.18473,24.873616,24.981311,24.98806,24.992957,24.912528,24.866119,25,25,25,25,,,,,,,,,,,2408,2408,0.9433,0.9433,0.9433,0.9433,0.9433,0.9433,0.9433,0.9433,0.353738,0.353738,25,25,, +26589,0,0.703636,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,15.077909,0.15,4,4.221815,4.221815,4.221815,4.221815,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,,,,,,,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,1.393199,1.393199,1.393199,1.393199,1.393199,1.393199,1.393199,1.393199,0.710672,0.710672,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,4.221815,1.393199,1.393199,10,10,, +26590,0,0.381439,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.173688,0.15,4,2.288633,2.288633,2.288633,2.288633,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,,,,,,,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,0.755249,0.755249,0.755249,0.755249,0.755249,0.755249,0.755249,0.755249,0.385253,0.385253,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,2.288633,0.755249,0.755249,10,10,, +10995,0,0.198074,1,1,0,2,4,,3,5,Pontiac,Trl,1451302,1.089,1.287,0,4.244443,6,4.5,0.360135,0.360135,0.360135,0.360135,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.376232,0.66175,0.360135,0.360135,0.376232,0.66175,0.389152,0.410116,0.360135,0.360135,0.389152,0.410116,0.580342,0.452044,0.360135,0.360135,0.580342,0.452044,0.360135,0.360135,0.360135,0.360135,0.360135,0.360135,,,,,,,0.376232,0.66175,0.389152,0.410116,0.580342,0.452044,0.360135,0.360135,0.360135,0.360135,0.148523,0.234178,0.152399,0.158688,0.209756,0.171266,0.143694,0.143694,0.075808,0.075808,31.588048,17.959109,30.53932,28.978213,20.478327,26.290474,33,33,33,33,,,,,,,,,,,2580,2580,0.360135,0.360135,0.360135,0.360135,0.360135,0.360135,0.360135,0.360135,0.143694,0.143694,33,33,, +26588,0,0.192356,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.121919,0.15,4,1.154137,1.154137,1.154137,1.154137,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,,,,,,,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,0.380865,0.380865,0.380865,0.380865,0.380865,0.380865,0.380865,0.380865,0.19428,0.19428,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,1.154137,0.380865,0.380865,10,10,, +26581,0,0.150009,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.214476,0.15,4,0.900053,0.900053,0.900053,0.900053,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,,,,,,,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.297018,0.297018,0.297018,0.297018,0.297018,0.297018,0.297018,0.297018,0.151509,0.151509,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.900053,0.297018,0.297018,10,10,, +26377,0,0.302781,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.488174,0.15,4,1.211126,1.211126,1.211126,1.211126,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,,,,,,,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,0.417838,0.417838,0.417838,0.417838,0.417838,0.417838,0.417838,0.417838,0.214975,0.214975,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,1.211126,0.417838,0.417838,15,15,, +9819,1,0.256833,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,2.5,2.756,0,5.503556,6,4.5,0.466968,,0.466968,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.653641,,0.466968,,0.653641,,0.527941,,0.466968,,0.527941,,0.698196,,0.466968,,0.698196,,0.466968,,0.466968,,0.466968,,,,,,,,0.653641,,0.527941,,0.698196,,0.466968,,0.466968,,0.242322,,0.204612,,0.255689,,0.18632,,0.098297,,23.57557,,29.188771,,22.071119,,33,,33,,,,,,,,,,,,5160,,0.466968,,0.466968,,0.466968,,0.466968,,0.18632,,33,,, +9987,0,0.267585,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.382,1.65,0,5.733973,6,4.5,0.486519,0.486519,0.486519,0.486519,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.54365,0.735535,0.486519,0.486519,0.54365,0.735535,0.561702,0.587956,0.486519,0.486519,0.561702,0.587956,0.789755,0.668759,0.486519,0.486519,0.789755,0.668759,0.486519,0.486519,0.486519,0.486519,0.486519,0.486519,,,,,,,0.54365,0.735535,0.561702,0.587956,0.789755,0.668759,0.486519,0.486519,0.486519,0.486519,0.21126,0.268826,0.216676,0.224552,0.285092,0.248793,0.194121,0.194121,0.102412,0.102412,29.532123,21.827816,28.582987,27.306663,20.329236,24.007324,33,33,33,33,,,,,,,,,,,2580,2580,0.486519,0.486519,0.486519,0.486519,0.486519,0.486519,0.486519,0.486519,0.194121,0.194121,33,33,, +10891,0,0.67947,1,1,0,2,4,,3,5,Fuller,Rd,1448104,1.196,1.875,0,14.560066,6,4.5,1.2354,1.2354,1.2354,1.2354,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.310199,3.801278,1.2354,1.2354,1.310199,3.801278,1.794529,1.874176,1.2354,1.2354,1.794529,1.874176,3.585733,2.177314,1.2354,1.2354,3.585733,2.177314,1.2354,1.2354,1.2354,1.2354,1.2354,1.2354,,,,,,,1.310199,3.801278,1.794529,1.874176,3.585733,2.177314,1.2354,1.2354,1.2354,1.2354,0.515364,1.262688,0.660663,0.684557,1.198024,0.775499,0.492924,0.492924,0.260052,0.260052,31.11603,10.724863,22.718037,21.752594,11.369555,18.724071,33,33,33,33,,,,,,,,,,,2580,2580,1.2354,1.2354,1.2354,1.2354,1.2354,1.2354,1.2354,1.2354,0.492924,0.492924,33,33,, +11051,0,0.260062,1,1,0,2,4,,3,5,Fuller,Rd,1448201,0,0.26,0,5.572754,6,4.5,0.47284,0.47284,0.47284,0.47284,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.576932,0.489994,0.47284,0.47284,0.576932,0.489994,0.531996,0.526424,0.47284,0.47284,0.531996,0.526424,0.578642,0.586124,0.47284,0.47284,0.578642,0.586124,0.47284,0.47284,0.47284,0.47284,0.47284,0.47284,,,,,,,0.576932,0.489994,0.531996,0.526424,0.578642,0.586124,0.47284,0.47284,0.47284,0.47284,0.219891,0.193809,0.20641,0.204738,0.220404,0.222648,0.188663,0.188663,0.099533,0.099533,27.045996,31.844699,29.330487,29.64094,26.966083,26.62186,33,33,33,33,,,,,,,,,,,2580,2580,0.47284,0.47284,0.47284,0.47284,0.47284,0.47284,0.47284,0.47284,0.188663,0.188663,33,33,, +11464,0,0.148315,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.017,2.165,0,3.178174,5,5,0.254254,0.254254,0.254254,0.254254,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.259654,0.325167,0.254254,0.254254,0.259654,0.325167,0.258172,0.261522,0.254254,0.254254,0.258172,0.261522,0.318756,0.278396,0.254254,0.254254,0.318756,0.278396,0.254254,0.254254,0.254254,0.254254,0.254254,0.254254,,,,,,,0.259654,0.325167,0.258172,0.261522,0.318756,0.278396,0.254254,0.254254,0.254254,0.254254,0.104593,0.124247,0.104148,0.105153,0.122323,0.110215,0.102973,0.102973,0.054453,0.054453,34.272112,27.367137,34.468808,34.027274,27.917572,31.964906,35,35,35,35,,,,,,,,,,,7946,7946,0.254254,0.254254,0.254254,0.254254,0.254254,0.254254,0.254254,0.254254,0.102973,0.102973,35,35,, +21617,0,0.439713,1,1,0,2,5,,3,5,Glazier,Way,4604123,0.365,0.804,0,9.422423,8,4.5,1.055311,1.055311,1.055311,1.055311,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.119143,3.375673,1.055311,1.055311,1.119143,3.375673,1.248752,1.450022,1.055311,1.055311,1.248752,1.450022,2.953862,1.485016,1.055311,1.055311,2.953862,1.485016,1.055311,1.055311,1.055311,1.055311,1.055311,1.055311,,,,,,,1.119143,3.375673,1.248752,1.450022,2.953862,1.485016,1.055311,1.055311,1.055311,1.055311,0.414891,1.09185,0.453774,0.514155,0.965307,0.524653,0.395742,0.395742,0.206665,0.206665,23.574106,7.815562,21.127316,18.194746,8.931624,17.765993,25,25,25,25,,,,,,,,,,,2408,2408,1.055311,1.055311,1.055311,1.055311,1.055311,1.055311,1.055311,1.055311,0.395742,0.395742,25,25,, +21775,0,0.131174,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.275,0.406,0,2.810876,7,4.5,0.393523,0.393523,0.393523,0.393523,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.394995,1.112773,0.393523,0.393523,0.394995,1.112773,0.403378,0.417615,0.393523,0.393523,0.403378,0.417615,0.969098,0.493439,0.393523,0.393523,0.969098,0.493439,0.393523,0.393523,0.393523,0.393523,0.393523,0.393523,,,,,,,0.394995,1.112773,0.403378,0.417615,0.969098,0.493439,0.393523,0.393523,0.393523,0.393523,0.14211,0.357443,0.144625,0.148896,0.314341,0.171643,0.141668,0.141668,0.073458,0.073458,19.925441,7.07283,19.51135,18.846209,8.121423,15.950197,20,20,20,20,,,,,,,,,,,1892,1892,0.393523,0.393523,0.393523,0.393523,0.393523,0.393523,0.393523,0.393523,0.141668,0.141668,20,20,, +21861,-1,0.263477,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0.552,0.815,0,5.645928,6,4.5,,0.479048,,0.479048,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.532806,,0.479048,,0.532806,,0.503722,,0.479048,,0.503722,,0.732936,,0.479048,,0.732936,,0.479048,,0.479048,,0.479048,,,,,,,,0.532806,,0.503722,,0.732936,,0.479048,,0.479048,,0.207268,,0.198543,,0.267307,,0.19114,,0.10084,,29.670445,,31.383547,,21.568858,,33,,33,,,,,,,,,,,,5160,,0.479048,,0.479048,,0.479048,,0.479048,,0.19114,,33,, +26525,0,0.414562,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.883465,0.15,4,2.48737,2.48737,2.48737,2.48737,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,,,,,,,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,0.820832,0.820832,0.820832,0.820832,0.820832,0.820832,0.820832,0.820832,0.418707,0.418707,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,2.48737,0.820832,0.820832,10,10,, +26596,0,0.13666,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.92843,0.15,4,0.81996,0.81996,0.81996,0.81996,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,,,,,,,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.270587,0.270587,0.270587,0.270587,0.270587,0.270587,0.270587,0.270587,0.138027,0.138027,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.81996,0.270587,0.270587,10,10,, +26606,0,0.191647,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.106732,0.15,4,1.149885,1.149885,1.149885,1.149885,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,,,,,,,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,0.379462,0.379462,0.379462,0.379462,0.379462,0.379462,0.379462,0.379462,0.193564,0.193564,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,1.149885,0.379462,0.379462,10,10,, +26664,0,0.128677,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.757356,0.15,4,0.77206,0.77206,0.77206,0.77206,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,,,,,,,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.25478,0.25478,0.25478,0.25478,0.25478,0.25478,0.25478,0.25478,0.129963,0.129963,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.77206,0.25478,0.25478,10,10,, +26668,0,0.177713,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.808138,0.15,4,1.066279,1.066279,1.066279,1.066279,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,,,,,,,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,0.351872,0.351872,0.351872,0.351872,0.351872,0.351872,0.351872,0.351872,0.17949,0.17949,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,1.066279,0.351872,0.351872,10,10,, +30015,0,0.353209,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.568756,0.15,4,2.119252,2.119252,2.119252,2.119252,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,,,,,,,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,0.699353,0.699353,0.699353,0.699353,0.699353,0.699353,0.699353,0.699353,0.356741,0.356741,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,2.119252,0.699353,0.699353,10,10,, +30020,0,0.079164,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.696362,0.15,4,0.474981,0.474981,0.474981,0.474981,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,,,,,,,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.156744,0.156744,0.156744,0.156744,0.156744,0.156744,0.156744,0.156744,0.079955,0.079955,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.474981,0.156744,0.156744,10,10,, +30064,0,0.568736,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.187195,0.15,4,3.412415,3.412415,3.412415,3.412415,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,,,,,,,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,1.126097,1.126097,1.126097,1.126097,1.126097,1.126097,1.126097,1.126097,0.574423,0.574423,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,3.412415,1.126097,1.126097,10,10,, +10239,0,0.239124,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.143,1.382,0,5.124083,6,4.5,0.434771,0.434771,0.434771,0.434771,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.526918,1.663906,0.434771,0.434771,0.526918,1.663906,0.665303,0.69302,0.434771,0.434771,0.665303,0.69302,1.742115,0.837086,0.434771,0.434771,1.742115,0.837086,0.434771,0.434771,0.434771,0.434771,0.434771,0.434771,,,,,,,0.526918,1.663906,0.665303,0.69302,1.742115,0.837086,0.434771,0.434771,0.434771,0.434771,0.201118,0.542214,0.242633,0.250948,0.565677,0.294168,0.173474,0.173474,0.091519,0.091519,27.228948,8.622744,21.565277,20.702776,8.235643,17.139728,33,33,33,33,,,,,,,,,,,2580,2580,0.434771,0.434771,0.434771,0.434771,0.434771,0.434771,0.434771,0.434771,0.173474,0.173474,33,33,, +9608,0,0.106443,1,1,0,2,5,,3,5,Hill,St,1429510,1.84,1.947,0,2.280914,8,4.5,0.255462,0.255462,0.255462,0.255462,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.256875,0.262008,0.255462,0.255462,0.256875,0.262008,0.259809,0.259397,0.255462,0.255462,0.259809,0.259397,0.265507,0.263663,0.255462,0.255462,0.265507,0.263663,0.255462,0.255462,0.255462,0.255462,0.255462,0.255462,,,,,,,0.256875,0.262008,0.259809,0.259397,0.265507,0.263663,0.255462,0.255462,0.255462,0.255462,0.096222,0.097762,0.097102,0.096979,0.098812,0.098259,0.095798,0.095798,0.050028,0.050028,24.862499,24.375474,24.58175,24.62081,24.054164,24.22245,25,25,25,25,,,,,,,,,,,2408,2408,0.255462,0.255462,0.255462,0.255462,0.255462,0.255462,0.255462,0.255462,0.095798,0.095798,25,25,, +10130,0,0.168004,1,1,0,2,4,,3,5,Geddes,Ave,1429306,0.839,1.007,0,3.600087,6,4.5,0.305462,0.305462,0.305462,0.305462,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.313477,0.594968,0.305462,0.305462,0.313477,0.594968,0.338061,0.34704,0.305462,0.305462,0.338061,0.34704,0.5935,0.353577,0.305462,0.305462,0.5935,0.353577,0.305462,0.305462,0.305462,0.305462,0.305462,0.305462,,,,,,,0.313477,0.594968,0.338061,0.34704,0.5935,0.353577,0.305462,0.305462,0.305462,0.305462,0.124284,0.208731,0.131659,0.134353,0.208291,0.136314,0.121879,0.121879,0.0643,0.0643,32.156278,16.942493,29.817787,29.046307,16.984408,28.50935,33,33,33,33,,,,,,,,,,,2580,2580,0.305462,0.305462,0.305462,0.305462,0.305462,0.305462,0.305462,0.305462,0.121879,0.121879,33,33,, +26554,0,0.288741,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.187298,0.15,4,1.732443,1.732443,1.732443,1.732443,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,,,,,,,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,0.571706,0.571706,0.571706,0.571706,0.571706,0.571706,0.571706,0.571706,0.291628,0.291628,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,1.732443,0.571706,0.571706,10,10,, +29953,0,0.29761,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.37736,0.15,4,1.785661,1.785661,1.785661,1.785661,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,,,,,,,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,0.589268,0.589268,0.589268,0.589268,0.589268,0.589268,0.589268,0.589268,0.300586,0.300586,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,1.785661,0.589268,0.589268,10,10,, +29957,0,0.37928,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.127439,0.15,4,2.275683,2.275683,2.275683,2.275683,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,,,,,,,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,0.750975,0.750975,0.750975,0.750975,0.750975,0.750975,0.750975,0.750975,0.383073,0.383073,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,2.275683,0.750975,0.750975,10,10,, +26518,0,0.116579,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.498124,0.15,4,0.699475,0.699475,0.699475,0.699475,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,,,,,,,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.230827,0.230827,0.230827,0.230827,0.230827,0.230827,0.230827,0.230827,0.117745,0.117745,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.699475,0.230827,0.230827,10,10,, +10377,0,0.029081,1,1,0,2,4,,3,5,Geddes,Ave,1429306,0.81,0.839,0,0.623172,6,4.5,0.052875,0.052875,0.052875,0.052875,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.054618,0.130361,0.052875,0.052875,0.054618,0.130361,0.062836,0.065771,0.052875,0.052875,0.062836,0.065771,0.131364,0.064322,0.052875,0.052875,0.131364,0.064322,0.052875,0.052875,0.052875,0.052875,0.052875,0.052875,,,,,,,0.054618,0.130361,0.062836,0.065771,0.131364,0.064322,0.052875,0.052875,0.052875,0.052875,0.02162,0.044343,0.024085,0.024966,0.044644,0.024531,0.021097,0.021097,0.01113,0.01113,31.947159,13.384974,27.769021,26.529792,13.282774,27.12747,33,33,33,33,,,,,,,,,,,2580,2580,0.052875,0.052875,0.052875,0.052875,0.052875,0.052875,0.052875,0.052875,0.021097,0.021097,33,33,, +9899,0,0.136696,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.007,1.143,0,2.929192,6,4.5,0.248537,0.248537,0.248537,0.248537,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.272813,0.92975,0.248537,0.248537,0.272813,0.92975,0.336071,0.349766,0.248537,0.248537,0.336071,0.349766,0.970867,0.423442,0.248537,0.248537,0.970867,0.423442,0.248537,0.248537,0.248537,0.248537,0.248537,0.248537,,,,,,,0.272813,0.92975,0.336071,0.349766,0.970867,0.423442,0.248537,0.248537,0.248537,0.248537,0.106449,0.30353,0.125426,0.129535,0.315865,0.151638,0.099166,0.099166,0.052317,0.052317,30.063539,8.821445,24.40478,23.449237,8.447848,19.369222,33,33,33,33,,,,,,,,,,,2580,2580,0.248537,0.248537,0.248537,0.248537,0.248537,0.248537,0.248537,0.248537,0.099166,0.099166,33,33,, +11162,0,0.306887,1,1,0,2,9,,3,5,Hayward,St,1443502,0.332,0.638,0,6.57616,7,4.5,0.920662,0.920662,0.920662,0.920662,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.920949,2.11089,0.920662,0.920662,0.920949,2.11089,0.926876,0.943147,0.920662,0.920662,0.926876,0.943147,1.748123,0.985282,0.920662,0.920662,1.748123,0.985282,0.920662,0.920662,0.920662,0.920662,0.920662,0.920662,,,,,,,0.920949,2.11089,0.926876,0.943147,1.748123,0.985282,0.920662,0.920662,0.920662,0.920662,0.331525,0.688507,0.333303,0.338184,0.579677,0.350824,0.331438,0.331438,0.171857,0.171857,19.993767,8.722977,19.865922,19.523205,10.533153,18.688305,20,20,20,20,,,,,,,,,,,1892,1892,0.920662,0.920662,0.920662,0.920662,0.920662,0.920662,0.920662,0.920662,0.331438,0.331438,20,20,, +11163,0,0.223753,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.324,0.548,0,4.794708,7,4.5,0.671259,0.671259,0.671259,0.671259,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.714781,1.738657,0.671259,0.671259,0.714781,1.738657,0.833202,0.875895,0.671259,0.671259,0.833202,0.875895,1.716384,0.857804,0.671259,0.671259,1.716384,0.857804,0.671259,0.671259,0.671259,0.671259,0.671259,0.671259,,,,,,,0.714781,1.738657,0.833202,0.875895,1.716384,0.857804,0.671259,0.671259,0.671259,0.671259,0.25471,0.561873,0.290236,0.303044,0.555191,0.297617,0.241653,0.241653,0.125302,0.125302,18.782219,7.721583,16.112761,15.327383,7.821785,15.650648,20,20,20,20,,,,,,,,,,,1892,1892,0.671259,0.671259,0.671259,0.671259,0.671259,0.671259,0.671259,0.671259,0.241653,0.241653,20,20,, +11388,0,0.331601,1,1,0,2,9,,3,5,Hayward,St,1443502,0,0.332,0,7.105732,7,4.5,0.994803,0.994803,0.994803,0.994803,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,1.011513,0.994892,0.994803,0.994803,1.011513,0.994892,0.996231,0.99523,0.994803,0.994803,0.996231,0.99523,0.996592,1.003843,0.994803,0.994803,0.996592,1.003843,0.994803,0.994803,0.994803,0.994803,0.994803,0.994803,,,,,,,1.011513,0.994892,0.996231,0.99523,0.996592,1.003843,0.994803,0.994803,0.994803,0.994803,0.363142,0.358156,0.358558,0.358257,0.358666,0.360841,0.358129,0.358129,0.185696,0.185696,19.669589,19.998211,19.971318,19.991414,19.964079,19.819883,20,20,20,20,,,,,,,,,,,1892,1892,0.994803,0.994803,0.994803,0.994803,0.994803,0.994803,0.994803,0.994803,0.358129,0.358129,20,20,, +11466,0,0.398812,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.618,2.017,0,8.545969,5,5,0.683678,0.683678,0.683678,0.683678,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.739807,0.968883,0.683678,0.683678,0.739807,0.968883,0.72374,0.74106,0.683678,0.683678,0.72374,0.74106,0.944549,0.816948,0.683678,0.683678,0.944549,0.816948,0.683678,0.683678,0.683678,0.683678,0.683678,0.683678,,,,,,,0.739807,0.968883,0.72374,0.74106,0.944549,0.816948,0.683678,0.683678,0.683678,0.683678,0.293728,0.362451,0.288908,0.294104,0.355151,0.31687,0.276889,0.276889,0.146421,0.146421,32.344544,24.697226,33.06259,32.289827,25.333491,29.290391,35,35,35,35,,,,,,,,,,,7946,7946,0.683678,0.683678,0.683678,0.683678,0.683678,0.683678,0.683678,0.683678,0.276889,0.276889,35,35,, +22125,0,0.313505,1,1,0,2,4,,3,5,Fuller,Rd,4604123,0,0.313,0,6.717964,6,4.5,0.570009,0.570009,0.570009,0.570009,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.771314,1.075946,0.570009,0.570009,0.771314,1.075946,0.79656,0.796481,0.570009,0.570009,0.79656,0.796481,1.11106,0.976396,0.570009,0.570009,1.11106,0.976396,0.570009,0.570009,0.570009,0.570009,0.570009,0.570009,,,,,,,0.771314,1.075946,0.79656,0.796481,1.11106,0.976396,0.570009,0.570009,0.570009,0.570009,0.287825,0.379215,0.295399,0.295375,0.389749,0.34935,0.227434,0.227434,0.119987,0.119987,24.387332,17.482561,23.614419,23.616742,16.93005,19.26502,33,33,33,33,,,,,,,,,,,2580,2580,0.570009,0.570009,0.570009,0.570009,0.570009,0.570009,0.570009,0.570009,0.227434,0.227434,33,33,, +29506,0,0.15414,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.303002,0.15,4,0.924841,0.924841,0.924841,0.924841,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,,,,,,,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.305197,0.305197,0.305197,0.305197,0.305197,0.305197,0.305197,0.305197,0.155682,0.155682,10,9.999999,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.924841,0.305197,0.305197,10,10,, +29507,0,0.445029,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.536334,0.15,4,2.670173,2.670173,2.670173,2.670173,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,,,,,,,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,0.881157,0.881157,0.881157,0.881157,0.881157,0.881157,0.881157,0.881157,0.449479,0.449479,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,2.670173,0.881157,0.881157,10,10,, +30018,0,0.248921,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.334029,0.15,4,1.493528,1.493528,1.493528,1.493528,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,,,,,,,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,0.492864,0.492864,0.492864,0.492864,0.492864,0.492864,0.492864,0.492864,0.251411,0.251411,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,1.493528,0.492864,0.492864,10,10,, +30053,0,0.245838,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.267955,0.15,4,1.475027,1.475027,1.475027,1.475027,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34320,34320,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,,,,,,,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,0.486759,0.486759,0.486759,0.486759,0.486759,0.486759,0.486759,0.486759,0.248296,0.248296,10,10,10,10,10,10,10,10,9.988256,9.988256,,,,,,,,,,,34400,34400,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,1.475027,0.486759,0.486759,10,10,, +30141,0,0.195736,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.194351,0.15,4,1.174418,1.174418,1.174418,1.174418,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,,,,,,,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,0.387558,0.387558,0.387558,0.387558,0.387558,0.387558,0.387558,0.387558,0.197694,0.197694,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,1.174418,0.387558,0.387558,10,10,, +11393,0,0.170564,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.014,0.184,0,3.654935,7,4.5,0.511691,0.511691,0.511691,0.511691,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.517602,1.078217,0.511691,0.511691,0.517602,1.078217,0.562114,0.613426,0.511691,0.511691,0.562114,0.613426,0.974733,0.588151,0.511691,0.511691,0.974733,0.588151,0.511691,0.511691,0.511691,0.511691,0.511691,0.511691,,,,,,,0.517602,1.078217,0.562114,0.613426,0.974733,0.588151,0.511691,0.511691,0.511691,0.511691,0.185982,0.354167,0.199336,0.214729,0.323121,0.207147,0.184209,0.184209,0.095516,0.095516,19.771577,9.491422,18.205949,16.68304,10.499103,17.399983,20,20,20,20,,,,,,,,,,,1892,1892,0.511691,0.511691,0.511691,0.511691,0.511691,0.511691,0.511691,0.511691,0.184209,0.184209,20,20,, +30016,0,0.153212,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.283111,0.15,4,0.919271,0.919271,0.919271,0.919271,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,,,,,,,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.303359,0.303359,0.303359,0.303359,0.30336,0.303359,0.303359,0.303359,0.154744,0.154744,10,10,9.999999,10,9.999998,10,10,10,10,10,,,,,,,,,,,34400,34400,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.919271,0.303359,0.303359,10,10,, +30017,0,0.157039,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.365123,0.15,4,0.942234,0.942234,0.942234,0.942234,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,,,,,,,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.310937,0.310937,0.310937,0.310937,0.310937,0.310937,0.310937,0.310937,0.158609,0.158609,10,9.999999,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.942234,0.310937,0.310937,10,10,, +21267,-1,0.257111,0,2,0,2,9,,3,5,Campus,Blvd,4603256,0,0.257,0,5.509523,7,4.5,,0.771333,,0.771333,,20,,11000,,2497,,5500,,3549,,3784,,3780,,0.806448,,0.771333,,0.806448,,0.783888,,0.771333,,0.783888,,0.794812,,0.771333,,0.794812,,0.771333,,0.771333,,0.771333,,,,,,,,0.806448,,0.783888,,0.794812,,0.771333,,0.771333,,0.288214,,0.281446,,0.284724,,0.27768,,0.143982,,19.129153,,19.679673,,19.409188,,20,,20,,,,,,,,,,,,3784,,0.771333,,0.771333,,0.771333,,0.771333,,0.27768,,20,, +21579,1,0.220239,2,0,0,2,9,,3,5,Campus,Blvd,4606011,0,0.22,0,4.719404,7,4.5,0.660717,,0.660717,,20,,11000,,2497,,5500,,3549,,3784,,3780,,0.678655,,0.660717,,0.678655,,0.670625,,0.660717,,0.670625,,0.73517,,0.660717,,0.73517,,0.660717,,0.660717,,0.660717,,,,,,,,0.678655,,0.670625,,0.73517,,0.660717,,0.660717,,0.243239,,0.24083,,0.260194,,0.237858,,0.123334,,19.471362,,19.704505,,17.974517,,20,,20,,,,,,,,,,,,3784,,0.660717,,0.660717,,0.660717,,0.660717,,0.237858,,20,,, +37031,1,0.031737,1,0,0,1,2,RON,3,5,Whitmore Lake/E M 14,RAMP,1431001,0.139,0.171,0,,1.09,4,0.047605,,0.047605,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.047628,,0.047605,,0.047628,,0.047623,,0.047605,,0.047623,,0.047715,,0.047605,,0.047715,,0.047605,,0.047605,,0.047605,,,,,,,,0.047628,,0.047623,,0.047715,,0.047605,,0.047605,,0.020001,,0.019999,,0.020027,,0.019994,,0.010632,,39.980447,,39.98537,,39.908119,,40,,40,,,,,,,,,,,,5074,,0.047605,,0.047605,,0.047605,,0.047605,,0.019994,,40,,, +11165,0,0.013411,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0,0.014,0,0.287375,7,4.5,0.040232,0.040232,0.040232,0.040232,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.040247,0.040233,0.040232,0.040232,0.040247,0.040233,0.040339,0.040234,0.040232,0.040232,0.040339,0.040234,0.04115,0.040233,0.040232,0.040232,0.04115,0.040233,0.040232,0.040232,0.040232,0.040232,0.040232,0.040232,,,,,,,0.040247,0.040233,0.040339,0.040234,0.04115,0.040233,0.040232,0.040232,0.040232,0.040232,0.014488,0.014484,0.014516,0.014484,0.014759,0.014484,0.014484,0.014484,0.00751,0.00751,19.992572,19.999769,19.947039,19.999212,19.553839,19.999929,20,20,20,20,,,,,,,,,,,1892,1892,0.040232,0.040232,0.040232,0.040232,0.040232,0.040232,0.040232,0.040232,0.014484,0.014484,20,20,, +11164,0,0.076732,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.184,0.261,0,1.644262,7,4.5,0.230197,0.230197,0.230197,0.230197,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.233034,0.348849,0.230197,0.230197,0.233034,0.348849,0.245437,0.251123,0.230197,0.230197,0.245437,0.251123,0.323949,0.259418,0.230197,0.230197,0.323949,0.259418,0.230197,0.230197,0.230197,0.230197,0.230197,0.230197,,,,,,,0.233034,0.348849,0.245437,0.251123,0.323949,0.259418,0.230197,0.230197,0.230197,0.230197,0.083722,0.118467,0.087443,0.089149,0.110996,0.091637,0.082871,0.082871,0.04297,0.04297,19.75649,13.197491,18.758091,18.333408,14.211907,17.747189,20,20,20,20,,,,,,,,,,,1892,1892,0.230197,0.230197,0.230197,0.230197,0.230197,0.230197,0.230197,0.230197,0.082871,0.082871,20,20,, +11390,0,0.063325,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.261,0.324,0,1.356959,7,4.5,0.189974,0.189974,0.189974,0.189974,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.196172,0.674444,0.189974,0.189974,0.196172,0.674444,0.226685,0.255316,0.189974,0.189974,0.226685,0.255316,0.449618,0.251589,0.189974,0.189974,0.449618,0.251589,0.189974,0.189974,0.189974,0.189974,0.189974,0.189974,,,,,,,0.196172,0.674444,0.226685,0.255316,0.449618,0.251589,0.189974,0.189974,0.189974,0.189974,0.07025,0.213732,0.079404,0.087993,0.146284,0.086875,0.068391,0.068391,0.035462,0.035462,19.368094,5.633509,16.761052,14.881487,8.45047,15.101953,20,20,20,20,,,,,,,,,,,1892,1892,0.189974,0.189974,0.189974,0.189974,0.189974,0.189974,0.189974,0.189974,0.068391,0.068391,20,20,, +10763,0,0.155531,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.463,1.618,0,3.332804,5,5,0.266624,0.266624,0.266624,0.266624,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.292705,0.381747,0.266624,0.266624,0.292705,0.381747,0.285376,0.292012,0.266624,0.266624,0.285376,0.292012,0.370667,0.326288,0.266624,0.266624,0.370667,0.326288,0.266624,0.266624,0.266624,0.266624,0.266624,0.266624,,,,,,,0.292705,0.381747,0.285376,0.292012,0.370667,0.326288,0.266624,0.266624,0.266624,0.266624,0.115807,0.14252,0.113608,0.115599,0.139196,0.125882,0.107983,0.107983,0.057102,0.057102,31.881431,24.445109,32.70017,31.957116,25.175813,28.600009,35,35,35,35,,,,,,,,,,,7946,7946,0.266624,0.266624,0.266624,0.266624,0.266624,0.266624,0.266624,0.266624,0.107983,0.107983,35,35,, +11215,0,0.224208,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.239,1.463,0,4.804467,5,5,0.384357,0.384357,0.384357,0.384357,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.432929,0.549858,0.384357,0.384357,0.432929,0.549858,0.421895,0.427253,0.384357,0.384357,0.421895,0.427253,0.568739,0.490775,0.384357,0.384357,0.568739,0.490775,0.384357,0.384357,0.384357,0.384357,0.384357,0.384357,,,,,,,0.432929,0.549858,0.421895,0.427253,0.568739,0.490775,0.384357,0.384357,0.384357,0.384357,0.170236,0.205315,0.166926,0.168533,0.210979,0.18759,0.155665,0.155665,0.082317,0.082317,31.073221,24.465441,31.885885,31.486059,23.65321,27.41075,35,35,35,35,,,,,,,,,,,7946,7946,0.384357,0.384357,0.384357,0.384357,0.384357,0.384357,0.384357,0.384357,0.155665,0.155665,35,35,, +11467,0,0.048559,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.19,1.239,0,1.040542,5,5,0.083243,0.083243,0.083243,0.083243,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.123164,0.145131,0.083243,0.083243,0.123164,0.145131,0.106365,0.108221,0.083243,0.083243,0.106365,0.108221,0.180307,0.164972,0.083243,0.083243,0.180307,0.164972,0.083243,0.083243,0.083243,0.083243,0.083243,0.083243,,,,,,,0.123164,0.145131,0.106365,0.108221,0.180307,0.164972,0.083243,0.083243,0.083243,0.083243,0.04569,0.05228,0.04065,0.041207,0.062833,0.058232,0.033714,0.033714,0.017828,0.017828,23.655609,20.075065,27.391765,26.921997,16.158615,17.660691,35,35,35,35,,,,,,,,,,,7946,7946,0.083243,0.083243,0.083243,0.083243,0.083243,0.083243,0.083243,0.083243,0.033714,0.033714,35,35,, +25232,0,0.138338,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.964385,0.15,4,0.830028,0.830028,0.830028,0.830028,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,,,,,,,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.273909,0.273909,0.273909,0.273909,0.273909,0.273909,0.273909,0.273909,0.139721,0.139721,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.830028,0.273909,0.273909,10,10,, +25899,0,0.362914,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.776737,0.15,4,2.177486,2.177486,2.177486,2.177486,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.177486,2.177486,2.177486,2.177486,2.177486,2.177486,2.177486,2.177486,2.177486,2.177486,2.177486,2.177486,2.177487,2.177487,2.177486,2.177486,2.177487,2.177487,2.177486,2.177486,2.177486,2.177486,2.177486,2.177486,,,,,,,2.177486,2.177486,2.177486,2.177486,2.177487,2.177487,2.177486,2.177486,2.177486,2.177486,0.718571,0.718571,0.718571,0.718571,0.718571,0.718571,0.718571,0.718571,0.366544,0.366544,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.177486,2.177486,2.177486,2.177486,2.177486,2.177486,2.177486,2.177486,0.718571,0.718571,10,10,, +30140,0,0.253968,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.442177,0.15,4,1.523809,1.523809,1.523809,1.523809,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,,,,,,,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,0.502857,0.502857,0.502857,0.502857,0.502857,0.502857,0.502857,0.502857,0.256508,0.256508,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,1.523809,0.502857,0.502857,10,10,, +21859,0,0.051335,1,1,0,2,4,,3,5,Fuller,Rd,4604123,0.313,0.365,0,1.100027,6,4.5,0.093336,0.093336,0.093336,0.093336,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.116953,0.37066,0.093336,0.093336,0.116953,0.37066,0.147193,0.162775,0.093336,0.093336,0.147193,0.162775,0.288617,0.18153,0.093336,0.093336,0.288617,0.18153,0.093336,0.093336,0.093336,0.093336,0.093336,0.093336,,,,,,,0.116953,0.37066,0.147193,0.162775,0.288617,0.18153,0.093336,0.093336,0.093336,0.093336,0.044326,0.120438,0.053398,0.058073,0.095825,0.063699,0.037241,0.037241,0.019647,0.019647,26.335914,8.309713,20.925401,18.92227,10.671858,16.967308,33,33,33,33,,,,,,,,,,,2580,2580,0.093336,0.093336,0.093336,0.093336,0.093336,0.093336,0.093336,0.093336,0.037241,0.037241,33,33,, +30142,0,0.305998,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.557104,0.15,4,1.835989,1.835989,1.835989,1.835989,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,,,,,,,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,0.605876,0.605876,0.605876,0.605876,0.605876,0.605876,0.605876,0.605876,0.309058,0.309058,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,1.835989,0.605876,0.605876,10,10,, +26667,0,0.216465,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.638539,0.15,4,1.298791,1.298791,1.298791,1.298791,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.298791,1.298793,1.298791,1.298791,1.298791,1.298793,1.298791,1.298791,1.298791,1.298791,1.298791,1.298791,1.298792,1.298791,1.298791,1.298791,1.298792,1.298791,1.298791,1.298791,1.298791,1.298791,1.298791,1.298791,,,,,,,1.298791,1.298793,1.298791,1.298791,1.298792,1.298791,1.298791,1.298791,1.298791,1.298791,0.428601,0.428602,0.428601,0.428601,0.428601,0.428601,0.428601,0.428601,0.21863,0.21863,10,9.999986,9.999999,9.999998,9.999988,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,1.298791,1.298791,1.298791,1.298791,1.298791,1.298791,1.298791,1.298791,0.428601,0.428601,10,10,, +9468,0,0.112892,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,1.524,1.637,0,2.419106,6,4.5,0.205257,0.205257,0.205257,0.205257,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.691176,0.263471,0.205257,0.205257,0.691176,0.263471,0.324137,0.283748,0.205257,0.205257,0.324137,0.283748,0.455064,0.76371,0.205257,0.205257,0.455064,0.76371,0.205257,0.205257,0.205257,0.205257,0.205257,0.205257,,,,,,,0.691176,0.263471,0.324137,0.283748,0.455064,0.76371,0.205257,0.205257,0.205257,0.205257,0.227673,0.099362,0.117562,0.105445,0.15684,0.249433,0.081898,0.081898,0.043207,0.043207,9.799957,25.70873,20.89702,23.871558,14.884717,8.8692,33,33,33,33,,,,,,,,,,,5160,5160,0.205257,0.205257,0.205257,0.205257,0.205257,0.205257,0.205257,0.205257,0.081898,0.081898,33,33,, +10035,1,0.49566,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,2.004,2.5,0,10.621279,6,4.5,0.901199,,0.901199,,33,,15000,,3405,,7500,,4839,,5160,,5154,,1.233572,,0.901199,,1.233572,,0.951255,,0.901199,,0.951255,,1.068822,,0.901199,,1.068822,,0.901199,,0.901199,,0.901199,,,,,,,,1.233572,,0.951255,,1.068822,,0.901199,,0.901199,,0.45929,,0.374595,,0.409865,,0.359579,,0.189702,,24.10851,,31.26353,,27.824645,,33,,33,,,,,,,,,,,,5160,,0.901199,,0.901199,,0.901199,,0.901199,,0.359579,,33,,, +11082,0,0.314367,1,1,0,2,4,,3,5,Geddes,Rd,1448104,1.965,2.279,0,6.736425,6,4.5,0.571575,0.571575,0.571575,0.571575,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.576182,1.38696,0.571575,0.571575,0.576182,1.38696,0.608933,0.675854,0.571575,0.571575,0.608933,0.675854,1.055566,0.732454,0.571575,0.571575,1.055566,0.732454,0.571575,0.571575,0.571575,0.571575,0.571575,0.571575,,,,,,,0.576182,1.38696,0.608933,0.675854,1.055566,0.732454,0.571575,0.571575,0.571575,0.571575,0.22944,0.472674,0.239266,0.259342,0.373256,0.276322,0.228059,0.228059,0.120317,0.120317,32.736196,13.599518,30.975483,27.908391,17.869077,25.751765,33,33,33,33,,,,,,,,,,,2580,2580,0.571575,0.571575,0.571575,0.571575,0.571575,0.571575,0.571575,0.571575,0.228059,0.228059,33,33,, +21935,0,0.175896,1,1,0,2,4,,3,5,Huron River,Dr,4604132,0,0.176,0,3.7692,6,4.5,0.319811,0.319811,0.319811,0.319811,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.715778,0.39636,0.319811,0.319811,0.715778,0.39636,0.47742,0.428092,0.319811,0.319811,0.47742,0.428092,0.659828,0.87423,0.319811,0.319811,0.659828,0.87423,0.319811,0.319811,0.319811,0.319811,0.319811,0.319811,,,,,,,0.715778,0.39636,0.47742,0.428092,0.659828,0.87423,0.319811,0.319811,0.319811,0.319811,0.246395,0.150569,0.174887,0.160089,0.22961,0.29393,0.127605,0.127605,0.06732,0.06732,14.744468,26.626708,22.105818,24.65302,15.994713,12.072061,33,33,33,33,,,,,,,,,,,2580,2580,0.319811,0.319811,0.319811,0.319811,0.319811,0.319811,0.319811,0.319811,0.127605,0.127605,33,33,, +22127,-1,0.485673,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0.066,0.552,0,10.407281,6,4.5,,0.883042,,0.883042,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.907132,,0.883042,,0.907132,,0.900288,,0.883042,,0.900288,,1.213189,,0.883042,,1.213189,,0.883042,,0.883042,,0.883042,,,,,,,,0.907132,,0.900288,,1.213189,,0.883042,,0.883042,,0.359561,,0.357507,,0.451378,,0.352334,,0.18588,,32.123644,,32.367866,,24.019657,,33,,33,,,,,,,,,,,,5160,,0.883042,,0.883042,,0.883042,,0.883042,,0.352334,,33,, +26527,0,0.364621,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.813308,0.15,4,2.187726,2.187726,2.187726,2.187726,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,,,,,,,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,0.72195,0.72195,0.72195,0.72195,0.72195,0.72195,0.72195,0.72195,0.368267,0.368267,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,2.187726,0.72195,0.72195,10,10,, +26597,0,0.514449,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.023914,0.15,4,3.086696,3.086696,3.086696,3.086696,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,,,,,,,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,1.01861,1.01861,1.01861,1.01861,1.01861,1.01861,1.01861,1.01861,0.519594,0.519594,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,3.086696,1.01861,1.01861,10,10,, +26662,0,0.302977,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.49236,0.15,4,1.817861,1.817861,1.817861,1.817861,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,,,,,,,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,0.599894,0.599894,0.599894,0.599894,0.599894,0.599894,0.599894,0.599894,0.306007,0.306007,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,1.817861,0.599894,0.599894,10,10,, +26669,0,0.501899,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.754988,0.15,4,3.011397,3.011397,3.011397,3.011397,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,,,,,,,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,0.993761,0.993761,0.993761,0.993761,0.993761,0.993761,0.993761,0.993761,0.506918,0.506918,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,3.011397,0.993761,0.993761,10,10,, +9532,0,0.283791,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,1.658,1.942,0,6.081229,6,4.5,0.515983,0.515983,0.515983,0.515983,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,1.412791,0.746229,0.515983,0.515983,1.412791,0.746229,0.847198,0.780928,0.515983,0.515983,0.847198,0.780928,1.206018,1.746387,0.515983,0.515983,1.206018,1.746387,0.515983,0.515983,0.515983,0.515983,0.515983,0.515983,,,,,,,1.412791,0.746229,0.847198,0.780928,1.206018,1.746387,0.515983,0.515983,0.515983,0.515983,0.47492,0.274951,0.305242,0.285361,0.412888,0.574998,0.205877,0.205877,0.108614,0.108614,12.052345,22.817993,20.098537,21.804104,14.118733,9.750095,33,33,33,33,,,,,,,,,,,5160,5160,0.515983,0.515983,0.515983,0.515983,0.515983,0.515983,0.515983,0.515983,0.205877,0.205877,33,33,, +9852,0,0.303065,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.65,1.953,0,6.494251,6,4.5,0.551027,0.551027,0.551027,0.551027,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.615733,1.052935,0.551027,0.551027,0.615733,1.052935,0.636179,0.666183,0.551027,0.551027,0.636179,0.666183,1.143407,0.814224,0.551027,0.551027,1.143407,0.814224,0.551027,0.551027,0.551027,0.551027,0.551027,0.551027,,,,,,,0.615733,1.052935,0.636179,0.666183,1.143407,0.814224,0.551027,0.551027,0.551027,0.551027,0.239272,0.370432,0.245405,0.254407,0.397574,0.298819,0.21986,0.21986,0.115991,0.115991,29.532123,17.269738,28.582987,27.295646,15.903266,22.332809,33,33,33,33,,,,,,,,,,,2580,2580,0.551027,0.551027,0.551027,0.551027,0.551027,0.551027,0.551027,0.551027,0.21986,0.21986,33,33,, +9612,0,0.052217,1,1,0,2,4,,3,5,Huron River,Dr,1429306,1.953,2.005,0,1.118931,6,4.5,0.09494,0.09494,0.09494,0.09494,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.117664,0.212487,0.09494,0.09494,0.117664,0.212487,0.127084,0.141728,0.09494,0.09494,0.127084,0.141728,0.259525,0.195878,0.09494,0.09494,0.259525,0.195878,0.09494,0.09494,0.09494,0.09494,0.09494,0.09494,,,,,,,0.117664,0.212487,0.127084,0.141728,0.259525,0.195878,0.09494,0.09494,0.09494,0.09494,0.044698,0.073145,0.047524,0.051917,0.087257,0.068162,0.037881,0.037881,0.019985,0.019985,26.626708,14.744468,24.65302,22.105818,12.072061,15.994713,33,33,33,33,,,,,,,,,,,2580,2580,0.09494,0.09494,0.09494,0.09494,0.09494,0.09494,0.09494,0.09494,0.037881,0.037881,33,33,, +39860,0,0.014027,1,1,0,2,4,,4,3,South,Blvd,616405,4.002,4.016,0,0.300578,4.5,4.5,0.022148,0.022148,0.022148,0.022148,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.022611,0.046115,0.022148,0.022148,0.022611,0.046115,0.022739,0.026673,0.022148,0.022148,0.022739,0.026673,0.02743,0.032494,0.022148,0.022148,0.02743,0.032494,0.022148,0.022148,0.022148,0.022148,0.022148,0.022148,,,,,,,0.022611,0.046115,0.022739,0.026673,0.02743,0.032494,0.022148,0.022148,0.022148,0.022148,0.009308,0.016359,0.009347,0.010527,0.010754,0.012273,0.009169,0.009169,0.004865,0.004865,37.221109,18.250578,37.01239,31.552801,30.68197,25.900806,38,38,38,38,,,,,,,,,,,3096,3096,0.022148,0.022148,0.022148,0.022148,0.022148,0.022148,0.022148,0.022148,0.009169,0.009169,38,38,, +10250,0,0.021527,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,1.637,1.658,0,0.461298,6,4.5,0.03914,0.03914,0.03914,0.03914,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.1318,0.050241,0.03914,0.03914,0.1318,0.050241,0.061809,0.054108,0.03914,0.03914,0.061809,0.054108,0.086776,0.145631,0.03914,0.03914,0.086776,0.145631,0.03914,0.03914,0.03914,0.03914,0.03914,0.03914,,,,,,,0.1318,0.050241,0.061809,0.054108,0.086776,0.145631,0.03914,0.03914,0.03914,0.03914,0.043415,0.018947,0.022418,0.020107,0.029908,0.047564,0.015617,0.015617,0.008239,0.008239,9.799957,25.70873,20.89702,23.871558,14.884717,8.8692,33,33,33,33,,,,,,,,,,,5160,5160,0.03914,0.03914,0.03914,0.03914,0.03914,0.03914,0.03914,0.03914,0.015617,0.015617,33,33,, +10301,1,0.062208,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,1.942,2.004,0,1.333024,6,4.5,0.113105,,0.113105,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.309688,,0.113105,,0.309688,,0.185708,,0.113105,,0.185708,,0.264363,,0.113105,,0.264363,,0.113105,,0.113105,,0.113105,,,,,,,,0.309688,,0.185708,,0.264363,,0.113105,,0.113105,,0.104104,,0.06691,,0.090506,,0.045129,,0.023809,,12.052345,,20.098537,,14.118733,,33,,33,,,,,,,,,,,,5160,,0.113105,,0.113105,,0.113105,,0.113105,,0.045129,,33,,, +11085,0,0.074674,1,1,0,2,4,,3,5,Fuller,Rd,1448104,1.875,1.95,0,1.600166,6,4.5,0.135772,0.135772,0.135772,0.135772,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.157444,0.563486,0.135772,0.135772,0.157444,0.563486,0.266181,0.271843,0.135772,0.135772,0.266181,0.271843,0.68656,0.339375,0.135772,0.135772,0.68656,0.339375,0.135772,0.135772,0.135772,0.135772,0.135772,0.135772,,,,,,,0.157444,0.563486,0.266181,0.271843,0.68656,0.339375,0.135772,0.135772,0.135772,0.135772,0.060675,0.182487,0.093296,0.094994,0.219409,0.115254,0.054173,0.054173,0.02858,0.02858,28.457481,7.951333,16.832366,16.481777,6.525965,13.202085,33,33,33,33,,,,,,,,,,,2580,2580,0.135772,0.135772,0.135772,0.135772,0.135772,0.135772,0.135772,0.135772,0.054173,0.054173,33,33,, +21362,-1,0.066168,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0,0.066,0,1.417877,6,4.5,,0.120305,,0.120305,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.173988,,0.120305,,0.173988,,0.182078,,0.120305,,0.182078,,0.407181,,0.120305,,0.407181,,0.120305,,0.120305,,0.120305,,,,,,,,0.173988,,0.182078,,0.407181,,0.120305,,0.120305,,0.064107,,0.066534,,0.134064,,0.048002,,0.025324,,22.817993,,21.804104,,9.750095,,33,,33,,,,,,,,,,,,5160,,0.120305,,0.120305,,0.120305,,0.120305,,0.048002,,33,, +10890,0,0.015211,1,1,0,2,4,,3,5,Fuller,Rd,1448104,1.95,1.965,0,0.325955,6,4.5,0.027657,0.027657,0.027657,0.027657,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.027679,0.182535,0.027657,0.027657,0.027679,0.182535,0.027972,0.108759,0.027657,0.027657,0.027972,0.108759,0.037257,0.130281,0.027657,0.027657,0.037257,0.130281,0.027657,0.027657,0.027657,0.027657,0.027657,0.027657,,,,,,,0.027679,0.182535,0.027972,0.108759,0.037257,0.130281,0.027657,0.027657,0.027657,0.027657,0.011042,0.057498,0.01113,0.035366,0.013915,0.041822,0.011035,0.011035,0.005822,0.005822,32.973217,5,32.627794,8.391691,24.496905,7.00541,33,33,33,33,,,,,,,,,,,2580,2580,0.027657,0.027657,0.027657,0.027657,0.027657,0.027657,0.027657,0.027657,0.011035,0.011035,33,33,, +26661,0,0.201344,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.314519,0.15,4,1.208065,1.208065,1.208065,1.208065,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,,,,,,,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,0.398662,0.398662,0.398662,0.398662,0.398662,0.398662,0.398662,0.398662,0.203358,0.203358,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,1.208065,0.398662,0.398662,10,10,, +26663,0,0.188007,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.028729,0.15,4,1.128044,1.128044,1.128044,1.128044,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,,,,,,,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.372255,0.189887,0.189887,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,1.128044,0.372255,0.372255,10,10,, +10014,1,0.540049,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,2.756,3.296,0,11.572471,6,4.5,0.981907,,0.981907,,33,,15000,,3405,,7500,,4839,,5160,,5154,,1.120131,,0.981907,,1.120131,,1.056378,,0.981907,,1.056378,,1.157191,,0.981907,,1.157191,,0.981907,,0.981907,,0.981907,,,,,,,,1.120131,,1.056378,,1.157191,,0.981907,,0.981907,,0.433248,,0.414122,,0.444366,,0.391781,,0.206691,,28.927799,,30.673608,,28.001367,,33,,33,,,,,,,,,,,,5160,,0.981907,,0.981907,,0.981907,,0.981907,,0.391781,,33,,, +21528,0,0.375286,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.202,0.577,0,8.041836,8,4.5,0.900686,0.900686,0.900686,0.900686,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.905487,1.207551,0.900686,0.900686,0.905487,1.207551,0.912328,0.910724,0.900686,0.900686,0.912328,0.910724,1.184064,0.955488,0.900686,0.900686,1.184064,0.955488,0.900686,0.900686,0.900686,0.900686,0.900686,0.900686,,,,,,,0.905487,1.207551,0.912328,0.910724,1.184064,0.955488,0.900686,0.900686,0.900686,0.900686,0.339198,0.429817,0.34125,0.340769,0.422771,0.354198,0.337757,0.337757,0.176384,0.176384,24.867437,18.646943,24.680958,24.724451,19.016828,23.56611,25,25,25,25,,,,,,,,,,,2408,2408,0.900686,0.900686,0.900686,0.900686,0.900686,0.900686,0.900686,0.900686,0.337757,0.337757,25,25,, +21619,-1,0.54276,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0.815,1.358,0,11.630578,6,4.5,,0.986837,,0.986837,,33,,15000,,3405,,7500,,4839,,5160,,5154,,1.029295,,0.986837,,1.029295,,1.029141,,0.986837,,1.029141,,1.164066,,0.986837,,1.164066,,0.986837,,0.986837,,0.986837,,,,,,,,1.029295,,1.029141,,1.164066,,0.986837,,0.986837,,0.406485,,0.406439,,0.446917,,0.393748,,0.207729,,31.638761,,31.643483,,27.975745,,33,,33,,,,,,,,,,,,5160,,0.986837,,0.986837,,0.986837,,0.986837,,0.393748,,33,, +21761,0,0.398873,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.646,1.045,0,8.547279,7,4.5,1.196619,1.196619,1.196619,1.196619,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,1.196619,1.208578,1.196619,1.196619,1.196619,1.208578,1.19662,1.196621,1.196619,1.196619,1.19662,1.196621,1.203092,1.196627,1.196619,1.196619,1.203092,1.196627,1.196619,1.196619,1.196619,1.196619,1.196619,1.196619,,,,,,,1.196619,1.208578,1.19662,1.196621,1.203092,1.196627,1.196619,1.196619,1.196619,1.196619,0.430783,0.43437,0.430783,0.430783,0.432725,0.430785,0.430783,0.430783,0.223369,0.223369,20,19.802107,19.999991,19.999968,19.892392,19.999876,20,20,20,20,,,,,,,,,,,1892,1892,1.196619,1.196619,1.196619,1.196619,1.196619,1.196619,1.196619,1.196619,0.430783,0.430783,20,20,, +21772,0,0.221793,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.425,0.646,0,4.752707,7,4.5,0.665379,0.665379,0.665379,0.665379,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.66538,0.695163,0.665379,0.665379,0.66538,0.695163,0.665389,0.665404,0.665379,0.665379,0.665389,0.665404,0.672198,0.665604,0.665379,0.665379,0.672198,0.665604,0.665379,0.665379,0.665379,0.665379,0.665379,0.665379,,,,,,,0.66538,0.695163,0.665389,0.665404,0.672198,0.665604,0.665379,0.665379,0.665379,0.665379,0.239537,0.248472,0.23954,0.239544,0.241582,0.239604,0.239536,0.239536,0.124204,0.124204,19.999983,19.143115,19.999694,19.999261,19.797121,19.993226,20,20,20,20,,,,,,,,,,,1892,1892,0.665379,0.665379,0.665379,0.665379,0.665379,0.665379,0.665379,0.665379,0.239536,0.239536,20,20,, +22029,0,0.193497,2,2,0,2,5,,3,5,Green,Rd,4603133,0.481,0.674,0,4.146365,8,4.5,0.464393,0.464393,0.464393,0.464393,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.464459,0.464636,0.464393,0.464393,0.464459,0.464636,0.464409,0.464408,0.464393,0.464393,0.464409,0.464408,0.465642,0.464489,0.464393,0.464393,0.465642,0.464489,0.464393,0.464393,0.464393,0.464393,0.464393,0.464393,,,,,,,0.464459,0.464636,0.464409,0.464408,0.465642,0.464489,0.464393,0.464393,0.464393,0.464393,0.174167,0.17422,0.174152,0.174152,0.174522,0.174176,0.174147,0.174147,0.090944,0.090944,24.996428,24.986924,24.999138,24.99919,24.932957,24.994808,25,25,25,25,,,,,,,,,,,4816,4816,0.464393,0.464393,0.464393,0.464393,0.464393,0.464393,0.464393,0.464393,0.174147,0.174147,25,25,, +26610,0,0.305806,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.552976,0.15,4,1.834833,1.834833,1.834833,1.834833,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,,,,,,,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,0.605495,0.605495,0.605495,0.605495,0.605495,0.605495,0.605495,0.605495,0.308864,0.308864,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,1.834833,0.605495,0.605495,10,10,, +26670,0,0.311405,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.672957,0.15,4,1.868428,1.868428,1.868428,1.868428,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,,,,,,,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,0.616581,0.616581,0.616581,0.616581,0.616581,0.616581,0.616581,0.616581,0.314519,0.314519,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,1.868428,0.616581,0.616581,10,10,, +21741,0,0.201678,1,1,0,2,5,,3,5,Glazier,Way,4604080,0,0.202,0,4.321673,8,4.5,0.484027,0.484027,0.484027,0.484027,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.49936,0.97562,0.484027,0.484027,0.49936,0.97562,0.523932,0.523864,0.484027,0.484027,0.523932,0.523864,1.003213,0.596454,0.484027,0.484027,1.003213,0.596454,0.484027,0.484027,0.484027,0.484027,0.484027,0.484027,,,,,,,0.49936,0.97562,0.523932,0.523864,1.003213,0.596454,0.484027,0.484027,0.484027,0.484027,0.18611,0.328988,0.193482,0.193461,0.337266,0.215238,0.18151,0.18151,0.094789,0.094789,24.232383,12.403076,23.095915,23.098885,12.061934,20.287707,25,25,25,25,,,,,,,,,,,2408,2408,0.484027,0.484027,0.484027,0.484027,0.484027,0.484027,0.484027,0.484027,0.18151,0.18151,25,25,, +26602,0,0.247297,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.299214,0.15,4,1.48378,1.48378,1.48378,1.48378,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,,,,,,,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,0.489647,0.489647,0.489647,0.489647,0.489647,0.489647,0.489647,0.489647,0.24977,0.24977,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,1.48378,0.489647,0.489647,10,10,, +37032,1,0.037763,1,0,0,1,2,ROF,3,5,E M 14/Whitmore Lake,RAMP,4606010,0,0.038,0,,2.24,5,0.064737,,0.064737,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.065322,,0.064737,,0.065322,,0.065467,,0.064737,,0.065467,,0.067556,,0.064737,,0.067556,,0.064737,,0.064737,,0.064737,,,,,,,,0.065322,,0.065467,,0.067556,,0.064737,,0.064737,,0.026394,,0.026437,,0.027064,,0.026218,,0.013864,,34.686125,,34.609509,,33.539248,,35,,35,,,,,,,,,,,,5074,,0.064737,,0.064737,,0.064737,,0.064737,,0.026218,,35,,, +30139,0,0.260621,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.584735,0.15,4,1.563726,1.563726,1.563726,1.563726,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,,,,,,,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,0.516029,0.516029,0.516029,0.516029,0.516029,0.516029,0.516029,0.516029,0.263227,0.263227,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,1.563726,0.516029,0.516029,10,10,, +9560,1,0.252975,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,3.451,3.704,0,5.420895,6,4.5,0.459955,,0.459955,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.478172,,0.459955,,0.478172,,0.470965,,0.459955,,0.470965,,0.518752,,0.459955,,0.518752,,0.459955,,0.459955,,0.459955,,,,,,,,0.478172,,0.470965,,0.518752,,0.459955,,0.459955,,0.188987,,0.186825,,0.201161,,0.183522,,0.09682,,31.742763,,32.228549,,29.259648,,33,,33,,,,,,,,,,,,5160,,0.459955,,0.459955,,0.459955,,0.459955,,0.183522,,33,,, +11461,0,0.15868,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.279,2.438,0,3.400291,5,5,0.272023,0.272023,0.272023,0.272023,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.304474,0.552789,0.272023,0.272023,0.304474,0.552789,0.294541,0.304532,0.272023,0.272023,0.294541,0.304532,0.506166,0.361103,0.272023,0.272023,0.506166,0.361103,0.272023,0.272023,0.272023,0.272023,0.272023,0.272023,,,,,,,0.304474,0.552789,0.294541,0.304532,0.506166,0.361103,0.272023,0.272023,0.272023,0.272023,0.119905,0.194399,0.116925,0.119922,0.180412,0.136893,0.110169,0.110169,0.058258,0.058258,31.269741,17.223234,32.324275,31.263771,18.809662,26.365894,35,35,35,35,,,,,,,,,,,7946,7946,0.272023,0.272023,0.272023,0.272023,0.272023,0.272023,0.272023,0.272023,0.110169,0.110169,35,35,, +21937,-1,0.248472,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,1.514,1.762,0,5.324408,6,4.5,,0.451768,,0.451768,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.490134,,0.451768,,0.490134,,0.461954,,0.451768,,0.461954,,0.487805,,0.451768,,0.487805,,0.451768,,0.451768,,0.451768,,,,,,,,0.490134,,0.461954,,0.487805,,0.451768,,0.451768,,0.191765,,0.183311,,0.191066,,0.180255,,0.095097,,30.416853,,32.272359,,30.562118,,33,,33,,,,,,,,,,,,5160,,0.451768,,0.451768,,0.451768,,0.451768,,0.180255,,33,, +26608,0,0.34735,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.443218,0.15,4,2.084101,2.084101,2.084101,2.084101,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,,,,,,,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,0.687753,0.687753,0.687753,0.687753,0.687753,0.687753,0.687753,0.687753,0.350824,0.350824,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,2.084101,0.687753,0.687753,10,10,, +26666,0,0.35865,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.685353,0.15,4,2.151899,2.151899,2.151899,2.151899,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,,,,,,,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,0.710127,0.710127,0.710127,0.710127,0.710127,0.710127,0.710127,0.710127,0.362236,0.362236,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,2.151899,0.710127,0.710127,10,10,, +9804,1,0.15479,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,3.296,3.451,0,3.316932,6,4.5,0.281437,,0.281437,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.36459,,0.281437,,0.36459,,0.323027,,0.281437,,0.323027,,0.459764,,0.281437,,0.459764,,0.281437,,0.281437,,0.281437,,,,,,,,0.36459,,0.323027,,0.459764,,0.281437,,0.281437,,0.137239,,0.12477,,0.165791,,0.112293,,0.059242,,25.47358,,28.751218,,20.200401,,33,,33,,,,,,,,,,,,5160,,0.281437,,0.281437,,0.281437,,0.281437,,0.112293,,33,,, +21422,-1,0.156406,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,1.358,1.514,0,3.351556,6,4.5,,0.284374,,0.284374,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.364117,,0.284374,,0.364117,,0.316161,,0.284374,,0.316161,,0.419955,,0.284374,,0.419955,,0.284374,,0.284374,,0.284374,,,,,,,,0.364117,,0.316161,,0.419955,,0.284374,,0.284374,,0.137388,,0.123001,,0.15414,,0.113465,,0.059861,,25.772923,,29.682253,,22.346107,,33,,33,,,,,,,,,,,,5160,,0.284374,,0.284374,,0.284374,,0.284374,,0.113465,,33,, +21773,0,0.01839,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.406,0.425,0,0.394074,7,4.5,0.05517,0.05517,0.05517,0.05517,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.055198,0.055477,0.05517,0.05517,0.055198,0.055477,0.055832,0.055178,0.05517,0.05517,0.055832,0.055178,0.130771,0.055288,0.05517,0.05517,0.130771,0.055288,0.05517,0.05517,0.05517,0.05517,0.05517,0.05517,,,,,,,0.055198,0.055477,0.055832,0.055178,0.130771,0.055288,0.05517,0.05517,0.05517,0.05517,0.01987,0.019953,0.02006,0.019864,0.042542,0.019897,0.019861,0.019861,0.010298,0.010298,19.989853,19.889625,19.762837,19.997269,8.437691,19.957573,20,20,20,20,,,,,,,,,,,1892,1892,0.05517,0.05517,0.05517,0.05517,0.05517,0.05517,0.05517,0.05517,0.019861,0.019861,20,20,, +10334,0,0.101537,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,3.704,3.805,0,2.175782,6,4.5,0.184612,0.184612,0.184612,0.184612,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.190484,0.197203,0.184612,0.184612,0.190484,0.197203,0.18816,0.187954,0.184612,0.184612,0.18816,0.187954,0.203558,0.196435,0.184612,0.184612,0.203558,0.196435,0.184612,0.184612,0.184612,0.184612,0.184612,0.184612,,,,,,,0.190484,0.197203,0.18816,0.187954,0.203558,0.196435,0.184612,0.184612,0.184612,0.184612,0.075422,0.077438,0.074725,0.074663,0.079344,0.077207,0.07366,0.07366,0.038861,0.038861,31.982647,30.892931,32.377753,32.413245,29.928457,31.013843,33,33,33,33,,,,,,,,,,,5418,5418,0.184612,0.184612,0.184612,0.184612,0.184612,0.184612,0.184612,0.184612,0.07366,0.07366,33,33,, +11213,0,0.113957,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.165,2.279,0,2.441937,5,5,0.195355,0.195355,0.195355,0.195355,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.211627,0.341489,0.195355,0.195355,0.211627,0.341489,0.205747,0.211884,0.195355,0.195355,0.205747,0.211884,0.307802,0.239293,0.195355,0.195355,0.307802,0.239293,0.195355,0.195355,0.195355,0.195355,0.195355,0.195355,,,,,,,0.211627,0.341489,0.205747,0.211884,0.307802,0.239293,0.195355,0.195355,0.195355,0.195355,0.084,0.122959,0.082236,0.084077,0.112853,0.0923,0.079119,0.079119,0.041839,0.041839,32.308826,20.022403,33.232201,32.269721,22.213727,28.573451,35,35,35,35,,,,,,,,,,,7946,7946,0.195355,0.195355,0.195355,0.195355,0.195355,0.195355,0.195355,0.195355,0.079119,0.079119,35,35,, +21694,0,0.27522,2,2,0,2,5,,3,5,Green,Rd,4603133,0,0.275,0,5.897579,8,4.5,0.660529,0.660529,0.660529,0.660529,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.660615,0.660533,0.660529,0.660529,0.660615,0.660533,0.660547,0.660545,0.660529,0.660529,0.660547,0.660545,0.660574,0.660615,0.660529,0.660529,0.660574,0.660615,0.660529,0.660529,0.660529,0.660529,0.660529,0.660529,,,,,,,0.660615,0.660533,0.660547,0.660545,0.660574,0.660615,0.660529,0.660529,0.660529,0.660529,0.247724,0.247699,0.247704,0.247703,0.247712,0.247724,0.247698,0.247698,0.129354,0.129354,24.996738,24.999859,24.999308,24.999404,24.998306,24.996745,25,25,25,25,,,,,,,,,,,4816,4816,0.660529,0.660529,0.660529,0.660529,0.660529,0.660529,0.660529,0.660529,0.247698,0.247698,25,25,, +21313,0,0.11354,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.577,0.69,0,2.432997,8,4.5,0.272496,0.272496,0.272496,0.272496,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.273459,0.381071,0.272496,0.272496,0.273459,0.381071,0.273457,0.273529,0.272496,0.272496,0.273457,0.273529,0.365429,0.288623,0.272496,0.272496,0.365429,0.288623,0.272496,0.272496,0.272496,0.272496,0.272496,0.272496,,,,,,,0.273459,0.381071,0.273457,0.273529,0.365429,0.288623,0.272496,0.272496,0.272496,0.272496,0.102475,0.134758,0.102474,0.102496,0.130066,0.107024,0.102186,0.102186,0.053364,0.053364,24.911924,17.876966,24.912095,24.905569,18.642151,23.60307,25,25,25,25,,,,,,,,,,,2408,2408,0.272496,0.272496,0.272496,0.272496,0.272496,0.272496,0.272496,0.272496,0.102186,0.102186,25,25,, +21270,0,0.121026,2,2,0,2,5,,3,5,Green,Rd,4603133,0.36,0.481,0,2.593408,8,4.5,0.290462,0.290462,0.290462,0.290462,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.290847,0.2905,0.290462,0.290462,0.290847,0.2905,0.290485,0.29048,0.290462,0.290462,0.290485,0.29048,0.290954,0.290811,0.290462,0.290462,0.290954,0.290811,0.290462,0.290462,0.290462,0.290462,0.290462,0.290462,,,,,,,0.290847,0.2905,0.290485,0.29048,0.290954,0.290811,0.290462,0.290462,0.290462,0.290462,0.109039,0.108935,0.10893,0.108929,0.109071,0.109028,0.108923,0.108923,0.056882,0.056882,24.966891,24.99668,24.998014,24.998439,24.957722,24.969988,25,25,25,25,,,,,,,,,,,4816,4816,0.290462,0.290462,0.290462,0.290462,0.290462,0.290462,0.290462,0.290462,0.108923,0.108923,25,25,, +21480,0,0.084645,2,2,0,2,5,,3,5,Green,Rd,4603133,0.275,0.36,0,1.813817,8,4.5,0.203147,0.203147,0.203147,0.203147,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.2032,0.203159,0.203147,0.203147,0.2032,0.203159,0.203161,0.203158,0.203147,0.203147,0.203161,0.203158,0.203223,0.203207,0.203147,0.203147,0.203223,0.203207,0.203147,0.203147,0.203147,0.203147,0.203147,0.203147,,,,,,,0.2032,0.203159,0.203161,0.203158,0.203223,0.203207,0.203147,0.203147,0.203147,0.203147,0.076196,0.076184,0.076184,0.076184,0.076203,0.076198,0.07618,0.07618,0.039783,0.039783,24.993496,24.998559,24.99834,24.998672,24.990662,24.992618,25,25,25,25,,,,,,,,,,,4816,4816,0.203147,0.203147,0.203147,0.203147,0.203147,0.203147,0.203147,0.203147,0.07618,0.07618,25,25,, +26375,0,1.169991,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.071246,0.15,4,4.679966,4.679966,4.679966,4.679966,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,,,,,,,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,1.614588,1.614588,1.614588,1.614588,1.614588,1.614588,1.614588,1.614588,0.830694,0.830694,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,4.679966,1.614588,1.614588,15,15,, +26582,0,0.21763,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.663509,0.15,4,1.305782,1.305782,1.305782,1.305782,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,,,,,,,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,0.430908,0.430908,0.430908,0.430908,0.430908,0.430908,0.430908,0.430908,0.219807,0.219807,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,1.305782,0.430908,0.430908,10,10,, +26583,0,0.29429,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.306209,0.15,4,1.765739,1.765739,1.765739,1.765739,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,,,,,,,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,0.582694,0.582694,0.582694,0.582694,0.582694,0.582694,0.582694,0.582694,0.297233,0.297233,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,1.765739,0.582694,0.582694,10,10,, +26618,0,0.302293,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.477707,0.15,4,1.813758,1.813758,1.813758,1.813758,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,,,,,,,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,0.59854,0.59854,0.59854,0.59854,0.59854,0.59854,0.59854,0.59854,0.305316,0.305316,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,1.813758,0.59854,0.59854,10,10,, +26672,0,0.264481,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.667453,0.15,4,1.586887,1.586887,1.586887,1.586887,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,,,,,,,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,0.523673,0.523673,0.523673,0.523673,0.523673,0.523673,0.523673,0.523673,0.267126,0.267126,9.999999,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,1.586887,0.523673,0.523673,10,10,, +30062,0,0.317372,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.800839,0.15,4,1.904235,1.904235,1.904235,1.904235,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,,,,,,,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,0.628397,0.628397,0.628397,0.628397,0.628397,0.628397,0.628397,0.628397,0.320546,0.320546,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,1.904235,0.628397,0.628397,10,10,, +30128,0,0.513381,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.001029,0.15,4,3.080288,3.080288,3.080288,3.080288,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,,,,,,,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,1.016495,1.016495,1.016495,1.016495,1.016495,1.016495,1.016495,1.016495,0.518515,0.518515,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,3.080288,1.016495,1.016495,10,10,, +30130,0,0.255464,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.474231,0.15,4,1.532785,1.532785,1.532785,1.532785,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,,,,,,,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,0.505819,0.505819,0.505819,0.505819,0.505819,0.505819,0.505819,0.505819,0.258019,0.258019,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,1.532785,0.505819,0.505819,10,10,, +9751,0,0.212415,1,1,1,2,7,,3,5,Huron,Pkwy,1429602,4.445,4.658,0,4.551758,7,4.5,0.637246,0.637246,0.637246,0.637246,20,20,6050,6050,1373,1373,3025,3025,1952,1952,2081,2081,2079,2079,0.637246,0.671619,0.637246,0.637246,0.637246,0.671619,0.637247,0.637247,0.637246,0.637246,0.637247,0.637247,0.639196,0.637257,0.637246,0.637246,0.639196,0.637257,0.637246,0.637246,0.637246,0.637246,0.637246,0.637246,,,,,,,0.637246,0.671619,0.637247,0.637247,0.639196,0.637257,0.637246,0.637246,0.637246,0.637246,0.229409,0.23972,0.229409,0.229409,0.229994,0.229412,0.229409,0.229409,0.118953,0.118953,19.99999,18.976422,19.999986,19.99998,19.938995,19.999671,20,20,20,20,,,,,,,,,,,2081,2081,0.637246,0.637246,0.637246,0.637246,0.637246,0.637246,0.637246,0.637246,0.229409,0.229409,20,20,, +11166,0,0.227425,1,1,0,2,7,,3,5,Traver,Rd,1443305,1.978,2.205,0,4.873384,7,4.5,0.682274,0.682274,0.682274,0.682274,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.682275,0.682637,0.682274,0.682274,0.682275,0.682637,0.682274,0.682274,0.682274,0.682274,0.682274,0.682274,0.682605,0.682287,0.682274,0.682274,0.682605,0.682287,0.682274,0.682274,0.682274,0.682274,0.682274,0.682274,,,,,,,0.682275,0.682637,0.682274,0.682274,0.682605,0.682287,0.682274,0.682274,0.682274,0.682274,0.245619,0.245728,0.245619,0.245619,0.245718,0.245622,0.245619,0.245619,0.127358,0.127358,19.999965,19.989354,19.999999,19.999998,19.990293,19.999618,20,20,20,20,,,,,,,,,,,1892,1892,0.682274,0.682274,0.682274,0.682274,0.682274,0.682274,0.682274,0.682274,0.245619,0.245619,20,20,, +11395,0,0.27093,1,1,0,2,7,,3,5,Traver,Rd,1443305,2.205,2.476,0,5.805641,7,4.5,0.81279,0.81279,0.81279,0.81279,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.83641,0.835921,0.81279,0.81279,0.83641,0.835921,0.850632,0.840347,0.81279,0.81279,0.850632,0.840347,0.927926,0.860788,0.81279,0.81279,0.927926,0.860788,0.81279,0.81279,0.81279,0.81279,0.81279,0.81279,,,,,,,0.83641,0.835921,0.850632,0.840347,0.927926,0.860788,0.81279,0.81279,0.81279,0.81279,0.29969,0.299544,0.303957,0.300872,0.327145,0.307004,0.292604,0.292604,0.151721,0.151721,19.43521,19.446566,19.110256,19.344144,17.518411,18.884792,20,20,20,20,,,,,,,,,,,1892,1892,0.81279,0.81279,0.81279,0.81279,0.81279,0.81279,0.81279,0.81279,0.292604,0.292604,20,20,, +11410,0,0.129327,1,1,0,2,5,,3,5,Nixon,Rd,1443105,0.511,0.64,0,2.771298,8,4.5,0.310385,0.310385,0.310385,0.310385,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.315657,0.819998,0.310385,0.310385,0.315657,0.819998,0.344885,0.370177,0.310385,0.310385,0.344885,0.370177,0.671925,0.35844,0.310385,0.310385,0.671925,0.35844,0.310385,0.310385,0.310385,0.310385,0.310385,0.310385,,,,,,,0.315657,0.819998,0.344885,0.370177,0.671925,0.35844,0.310385,0.310385,0.310385,0.310385,0.117976,0.269278,0.126744,0.134332,0.224856,0.130811,0.116395,0.116395,0.060784,0.060784,24.582477,9.462994,22.499196,20.961981,11.548366,21.648379,25,25,25,25,,,,,,,,,,,2408,2408,0.310385,0.310385,0.310385,0.310385,0.310385,0.310385,0.310385,0.310385,0.116395,0.116395,25,25,, +26592,0,0.339236,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.269352,0.15,4,2.035419,2.035419,2.035419,2.035419,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,,,,,,,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,0.671688,0.671688,0.671688,0.671688,0.671688,0.671688,0.671688,0.671688,0.342629,0.342629,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,2.035419,0.671688,0.671688,10,10,, +30125,0,0.209446,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.488134,0.15,4,1.256677,1.256677,1.256677,1.256677,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,,,,,,,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,0.414704,0.414704,0.414704,0.414704,0.414704,0.414704,0.414704,0.414704,0.211541,0.211541,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,1.256677,0.414704,0.414704,10,10,, +30126,0,0.118348,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.536027,0.15,4,0.710087,0.710087,0.710087,0.710087,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,,,,,,,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.234329,0.234329,0.234329,0.234329,0.234329,0.234329,0.234329,0.234329,0.119531,0.119531,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.710087,0.234329,0.234329,10,10,, +30127,0,0.33866,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.256995,0.15,4,2.031959,2.031959,2.031959,2.031959,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,,,,,,,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,0.670546,0.670546,0.670546,0.670546,0.670546,0.670546,0.670546,0.670546,0.342046,0.342046,10,9.999999,10,10,9.999998,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,2.031959,0.670546,0.670546,10,10,, +9502,0,0.096534,1,1,0,2,7,,3,5,Tuebingen,Pkwy,1429602,4.658,4.754,0,2.06859,7,4.5,0.289603,0.289603,0.289603,0.289603,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.289603,0.313519,0.289603,0.289603,0.289603,0.313519,0.289603,0.289603,0.289603,0.289603,0.289603,0.289603,0.290965,0.28961,0.289603,0.289603,0.290965,0.28961,0.289603,0.289603,0.289603,0.289603,0.289603,0.289603,,,,,,,0.289603,0.313519,0.289603,0.289603,0.290965,0.28961,0.289603,0.289603,0.289603,0.289603,0.104257,0.111432,0.104257,0.104257,0.104666,0.104259,0.104257,0.104257,0.054059,0.054059,19.999985,18.474326,19.999979,19.99997,19.906347,19.999493,20,20,20,20,,,,,,,,,,,1892,1892,0.289603,0.289603,0.289603,0.289603,0.289603,0.289603,0.289603,0.289603,0.104257,0.104257,20,20,, +11522,0,0.185084,1,1,0,2,5,,3,5,Dhu Varren,Rd,1431502,0.947,1.132,0,3.966083,8,4.5,0.444201,0.444201,0.444201,0.444201,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.445546,0.444219,0.444201,0.444201,0.445546,0.444219,0.444226,0.444214,0.444201,0.444201,0.444226,0.444214,0.444828,0.445218,0.444201,0.444201,0.444828,0.445218,0.444201,0.444201,0.444201,0.444201,0.444201,0.444201,,,,,,,0.445546,0.444219,0.444226,0.444214,0.444828,0.445218,0.444201,0.444201,0.444201,0.444201,0.166979,0.166581,0.166583,0.166579,0.166764,0.166881,0.166576,0.166576,0.086989,0.086989,24.924554,24.998983,24.9986,24.999262,24.964781,24.942908,25,25,25,25,,,,,,,,,,,2408,2408,0.444201,0.444201,0.444201,0.444201,0.444201,0.444201,0.444201,0.444201,0.166576,0.166576,25,25,, +37421,1,0.026201,1,0,0,2,5,,3,5,Nixon,Rd,1443105,0.151,0.177,0,0.56146,8,4.5,0.062884,,0.062884,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.063152,,0.062884,,0.063152,,0.064451,,0.062884,,0.064451,,0.077655,,0.062884,,0.077655,,0.062884,,0.062884,,0.062884,,,,,,,,0.063152,,0.064451,,0.077655,,0.062884,,0.062884,,0.023662,,0.024052,,0.028013,,0.023581,,0.012315,,24.893572,,24.391852,,20.244634,,25,,25,,,,,,,,,,,,2408,,0.062884,,0.062884,,0.062884,,0.062884,,0.023581,,25,,, +11425,0,0.270574,1,1,0,2,5,,3,5,Nixon,Rd,1443105,0.24,0.511,0,5.798005,8,4.5,0.649377,0.649377,0.649377,0.649377,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.654044,0.943126,0.649377,0.649377,0.654044,0.943126,0.692557,0.72805,0.649377,0.649377,0.692557,0.72805,0.873184,0.700566,0.649377,0.649377,0.873184,0.700566,0.649377,0.649377,0.649377,0.649377,0.649377,0.649377,,,,,,,0.654044,0.943126,0.692557,0.72805,0.873184,0.700566,0.649377,0.649377,0.649377,0.649377,0.244917,0.331641,0.25647,0.267118,0.310658,0.258873,0.243516,0.243516,0.12717,0.12717,24.821585,17.213412,23.441274,22.298486,18.592204,23.17327,25,25,25,25,,,,,,,,,,,2408,2408,0.649377,0.649377,0.649377,0.649377,0.649377,0.649377,0.649377,0.649377,0.243516,0.243516,25,25,, +37422,-1,0.013048,0,1,0,2,5,,3,5,Nixon,Rd,4606150,0.028,0.041,0,0.279599,8,4.5,,0.031315,,0.031315,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.069688,,0.031315,,0.069688,,0.043707,,0.031315,,0.043707,,0.044291,,0.031315,,0.044291,,0.031315,,0.031315,,0.031315,,,,,,,,0.069688,,0.043707,,0.044291,,0.031315,,0.031315,,0.023255,,0.015461,,0.015636,,0.011743,,0.006133,,11.234009,,17.911828,,17.6757,,25,,25,,,,,,,,,,,,2408,,0.031315,,0.031315,,0.031315,,0.031315,,0.011743,,25,, +11174,0,0.071023,1,1,0,2,5,,3,5,Nixon,Rd,1443105,0.64,0.711,0,1.521919,8,4.5,0.170455,0.170455,0.170455,0.170455,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.171058,0.33766,0.170455,0.170455,0.171058,0.33766,0.171814,0.173024,0.170455,0.170455,0.171814,0.173024,0.310907,0.177423,0.170455,0.170455,0.310907,0.177423,0.170455,0.170455,0.170455,0.170455,0.170455,0.170455,,,,,,,0.171058,0.33766,0.171814,0.173024,0.310907,0.177423,0.170455,0.170455,0.170455,0.170455,0.064101,0.114082,0.064328,0.064691,0.106056,0.066011,0.063921,0.063921,0.033381,0.033381,24.911936,12.620295,24.80221,24.628865,13.706281,24.018134,25,25,25,25,,,,,,,,,,,2408,2408,0.170455,0.170455,0.170455,0.170455,0.170455,0.170455,0.170455,0.170455,0.063921,0.063921,25,25,, +11171,0,0.823542,1,1,0,2,5,,5,5,Nixon,Rd,1443105,1.21,2.033,0,17.647322,3.7,5,1.647083,1.647083,1.647083,1.647083,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.648112,2.014047,1.647083,1.647083,1.648112,2.014047,1.647399,1.648008,1.647083,1.647083,1.647399,1.648008,1.850208,1.655907,1.647083,1.647083,1.850208,1.655907,1.647083,1.647083,1.647083,1.647083,1.647083,1.647083,,,,,,,1.648112,2.014047,1.647399,1.648008,1.850208,1.655907,1.647083,1.647083,1.647083,1.647083,0.642671,0.752452,0.642457,0.64264,0.7033,0.64501,0.642363,0.642363,0.337652,0.337652,29.981281,24.533938,29.994252,29.983166,26.706455,29.840137,30,30,30,30,,,,,,,,,,,2580,2580,1.647083,1.647083,1.647083,1.647083,1.647083,1.647083,1.647083,1.647083,0.642363,0.642363,30,30,, +21536,0,0.443556,2,2,0,2,5,,3,5,Green,Rd,4603133,1.175,1.619,0,9.504781,8,4.5,1.064535,1.064535,1.064535,1.064535,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,1.071736,1.108475,1.064535,1.064535,1.071736,1.108475,1.095689,1.074389,1.064535,1.064535,1.095689,1.074389,1.12381,1.096501,1.064535,1.064535,1.12381,1.096501,1.064535,1.064535,1.064535,1.064535,1.064535,1.064535,,,,,,,1.071736,1.108475,1.095689,1.074389,1.12381,1.096501,1.064535,1.064535,1.064535,1.064535,0.401361,0.412383,0.408547,0.402157,0.416983,0.40879,0.399201,0.399201,0.208472,0.208472,24.832038,24.009007,24.289183,24.770714,23.681391,24.271189,25,25,25,25,,,,,,,,,,,4816,4816,1.064535,1.064535,1.064535,1.064535,1.064535,1.064535,1.064535,1.064535,0.399201,0.399201,25,25,, +22079,0,0.451722,1,1,1,2,5,,3,5,Green,Rd,4603133,2.006,2.458,0,9.679754,8,4.5,1.084132,1.084132,1.084132,1.084132,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,1.084497,1.163887,1.084132,1.084132,1.084497,1.163887,1.085001,1.086245,1.084132,1.084132,1.085001,1.086245,1.12159,1.094864,1.084132,1.084132,1.12159,1.094864,1.084132,1.084132,1.084132,1.084132,1.084132,1.084132,,,,,,,1.084497,1.163887,1.085001,1.086245,1.12159,1.094864,1.084132,1.084132,1.084132,1.084132,0.406659,0.430476,0.40681,0.407183,0.417787,0.409769,0.40655,0.40655,0.212309,0.212309,24.991587,23.286883,24.979978,24.951386,24.165084,24.754954,25,25,25,25,,,,,,,,,,,2649,2649,1.084132,1.084132,1.084132,1.084132,1.084132,1.084132,1.084132,1.084132,0.40655,0.40655,25,25,, +26508,0,0.516179,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.060975,0.15,4,3.097073,3.097073,3.097073,3.097073,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,,,,,,,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,1.022034,1.022034,1.022034,1.022034,1.022034,1.022034,1.022034,1.022034,0.521341,0.521341,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,3.097073,1.022034,1.022034,10,10,, +26594,0,0.384608,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.241603,0.15,4,2.307649,2.307649,2.307649,2.307649,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,,,,,,,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,0.761524,0.761524,0.761524,0.761524,0.761524,0.761524,0.761524,0.761524,0.388454,0.388454,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,2.307649,0.761524,0.761524,10,10,, +10760,0,0.200323,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.582,2.782,0,4.292633,5,5,0.343411,0.343411,0.343411,0.343411,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.376322,1.056864,0.343411,0.343411,0.376322,1.056864,0.394034,0.429728,0.343411,0.343411,0.394034,0.429728,1.054814,0.573161,0.343411,0.343411,1.054814,0.573161,0.343411,0.343411,0.343411,0.343411,0.343411,0.343411,,,,,,,0.376322,1.056864,0.394034,0.429728,1.054814,0.573161,0.343411,0.343411,0.343411,0.343411,0.148955,0.353117,0.154268,0.164976,0.352502,0.208007,0.139081,0.139081,0.073547,0.073547,31.939081,11.372673,30.503421,27.969732,11.394774,20.970309,35,35,35,35,,,,,,,,,,,7946,7946,0.343411,0.343411,0.343411,0.343411,0.343411,0.343411,0.343411,0.343411,0.139081,0.139081,35,35,, +11456,0,0.173109,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.782,2.956,0,3.709481,5,5,0.296759,0.296759,0.296759,0.296759,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.428527,1.843945,0.296759,0.296759,0.428527,1.843945,0.420662,0.543934,0.296759,0.296759,0.420662,0.543934,2.07731,0.899318,0.296759,0.296759,2.07731,0.899318,0.296759,0.296759,0.296759,0.296759,0.296759,0.296759,,,,,,,0.428527,1.843945,0.420662,0.543934,2.07731,0.899318,0.296759,0.296759,0.296759,0.296759,0.159718,0.584343,0.157358,0.19434,0.654353,0.300955,0.120187,0.120187,0.063556,0.063556,24.237791,5.632786,24.690935,19.095231,5,11.549366,35,35,35,35,,,,,,,,,,,7946,7946,0.296759,0.296759,0.296759,0.296759,0.296759,0.296759,0.296759,0.296759,0.120187,0.120187,35,35,, +21321,1,0.097068,2,0,0,2,5,,3,5,Green,Rd,4603133,1.706,1.803,0,2.080033,8,4.5,0.232964,,0.232964,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.234032,,0.232964,,0.234032,,0.23486,,0.232964,,0.23486,,0.247451,,0.232964,,0.247451,,0.232964,,0.232964,,0.232964,,,,,,,,0.234032,,0.23486,,0.247451,,0.232964,,0.232964,,0.087682,,0.08793,,0.091708,,0.087361,,0.045622,,24.885872,,24.798131,,23.536301,,25,,25,,,,,,,,,,,,4816,,0.232964,,0.232964,,0.232964,,0.232964,,0.087361,,25,,, +26595,0,0.25358,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.433855,0.15,4,1.521479,1.521479,1.521479,1.521479,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,,,,,,,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,0.502088,0.502088,0.502088,0.502088,0.502088,0.502088,0.502088,0.502088,0.256116,0.256116,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,1.521479,0.502088,0.502088,10,10,, +30099,0,0.271933,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.827138,0.15,4,1.631599,1.631599,1.631599,1.631599,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,,,,,,,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,0.538428,0.538428,0.538428,0.538428,0.538428,0.538428,0.538428,0.538428,0.274652,0.274652,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,1.631599,0.538428,0.538428,10,10,, +30063,0,0.101752,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.180402,0.15,4,0.610513,0.610513,0.610513,0.610513,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,,,,,,,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.201469,0.201469,0.201469,0.201469,0.201469,0.201469,0.201469,0.201469,0.10277,0.10277,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.610513,0.201469,0.201469,10,10,, +9477,1,0.406851,3,0,0,1,1,,4,5,E I 94,,1426109,26.864,27.271,0,,0.8,7.5,0.34873,,0.34873,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.351308,,0.34873,,0.351308,,0.348835,,0.34873,,0.348835,,0.367288,,0.34873,,0.367288,,0.34873,,0.34873,,0.34873,,,,,,,,0.351308,,0.348835,,0.367288,,0.34873,,0.34873,,0.178626,,0.177884,,0.18342,,0.177852,,0.097063,,69.486291,,69.978886,,66.463049,,70,,70,,,,,,,,,,,,22704,,0.34873,,0.34873,,0.34873,,0.34873,,0.177852,,70,,, +9711,0,0.125148,1,1,0,2,5,,4,5,Mansfield,St,1427902,0.284,0.409,0,2.681747,5.8,4.5,0.278107,0.278107,0.278107,0.278107,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.290599,0.278396,0.278107,0.278107,0.290599,0.278396,0.278297,0.278309,0.278107,0.278107,0.278297,0.278309,0.281059,0.281145,0.278107,0.278107,0.281059,0.281145,0.278107,0.278107,0.278107,0.278107,0.278107,0.278107,,,,,,,0.290599,0.278396,0.278297,0.278309,0.281059,0.281145,0.278107,0.278107,0.278107,0.278107,0.109706,0.106045,0.106016,0.106019,0.106844,0.10687,0.105959,0.105959,0.055482,0.055482,25.839358,26.971989,26.981562,26.980415,26.716431,26.708256,27,27,27,27,,,,,,,,,,,2580,2580,0.278107,0.278107,0.278107,0.278107,0.278107,0.278107,0.278107,0.278107,0.105959,0.105959,27,27,, +9714,1,0.386555,1,0,0,1,1,RON,4,5,Michigan/W I 94,RAMP,1427806,0.201,0.588,0,,1.09,4,0.515407,,0.515407,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.519392,,0.515407,,0.519392,,0.516521,,0.515407,,0.516521,,0.526651,,0.515407,,0.526651,,0.515407,,0.515407,,0.515407,,,,,,,,0.519392,,0.516521,,0.526651,,0.515407,,0.515407,,0.225397,,0.224536,,0.227575,,0.224202,,0.119832,,44.654765,,44.902956,,44.039278,,45,,45,,,,,,,,,,,,5160,,0.515407,,0.515407,,0.515407,,0.515407,,0.224202,,45,,, +9823,0,0.247541,2,2,1,2,3,,4,5,Packard,Rd,1428902,0,0.247,0,5.304459,3.7,5,0.371312,0.371312,0.371312,0.371312,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.378987,0.402603,0.371312,0.371312,0.378987,0.402603,0.376526,0.375497,0.371312,0.371312,0.376526,0.375497,0.417922,0.396626,0.371312,0.371312,0.417922,0.396626,0.371312,0.371312,0.371312,0.371312,0.371312,0.371312,,,,,,,0.378987,0.402603,0.376526,0.375497,0.417922,0.396626,0.371312,0.371312,0.371312,0.371312,0.158254,0.165338,0.157515,0.157207,0.169934,0.163545,0.155951,0.155951,0.082926,0.082926,39.189918,36.891117,39.446145,39.554192,35.538902,37.447115,40,40,40,40,,,,,,,,,,,7946,7946,0.371312,0.371312,0.371312,0.371312,0.371312,0.371312,0.371312,0.371312,0.155951,0.155951,40,40,, +9838,-1,0.20512,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0,0.205,0,4.395431,3.7,5,,0.30768,,0.30768,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.318938,,0.30768,,0.318938,,0.312681,,0.30768,,0.312681,,0.395032,,0.30768,,0.395032,,0.30768,,0.30768,,0.30768,,,,,,,,0.318938,,0.312681,,0.395032,,0.30768,,0.30768,,0.132603,,0.130726,,0.155431,,0.129226,,0.068715,,38.588072,,39.360244,,31.15496,,40,,40,,,,,,,,,,,,7568,,0.30768,,0.30768,,0.30768,,0.30768,,0.129226,,40,, +9857,1,0.173105,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0,0.173,0,3.709383,3.7,5,0.259657,,0.259657,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.301625,,0.259657,,0.301625,,0.265555,,0.259657,,0.265555,,0.28848,,0.259657,,0.28848,,0.259657,,0.259657,,0.259657,,,,,,,,0.301625,,0.265555,,0.28848,,0.259657,,0.259657,,0.121646,,0.110825,,0.117703,,0.109056,,0.05799,,34.434351,,39.111629,,36.003402,,40,,40,,,,,,,,,,,,7568,,0.259657,,0.259657,,0.259657,,0.259657,,0.109056,,40,,, +9902,0,0.367776,2,2,0,2,3,,4,5,Washtenaw,Ave,1427706,4.632,4.999,0,7.880914,3.7,5,0.551664,0.551664,0.551664,0.551664,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.554566,0.578372,0.551664,0.551664,0.554566,0.578372,0.554544,0.553861,0.551664,0.551664,0.554544,0.553861,0.571401,0.557829,0.551664,0.551664,0.571401,0.557829,0.551664,0.551664,0.551664,0.551664,0.551664,0.551664,,,,,,,0.554566,0.578372,0.554544,0.553861,0.571401,0.557829,0.551664,0.551664,0.551664,0.551664,0.23257,0.239711,0.232563,0.232358,0.23762,0.233548,0.231699,0.231699,0.123205,0.123205,39.790673,38.152882,39.792249,39.841325,38.618354,39.557962,40,40,40,40,,,,,,,,,,,7568,7568,0.551664,0.551664,0.551664,0.551664,0.551664,0.551664,0.551664,0.551664,0.231699,0.231699,40,40,, +9974,0,0.077592,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.088,1.166,0,1.662679,5,5,0.133014,0.133014,0.133014,0.133014,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.133658,0.134242,0.133014,0.133014,0.133658,0.134242,0.133258,0.1333,0.133014,0.133014,0.133258,0.1333,0.134021,0.13506,0.133014,0.133014,0.134021,0.13506,0.133014,0.133014,0.133014,0.133014,0.133014,0.133014,,,,,,,0.133658,0.134242,0.133258,0.1333,0.134021,0.13506,0.133014,0.133014,0.133014,0.133014,0.054064,0.054239,0.053944,0.053956,0.054173,0.054484,0.053871,0.053871,0.028487,0.028487,34.831464,34.679886,34.936041,34.925068,34.736999,34.469908,35,35,35,35,,,,,,,,,,,7568,7568,0.133014,0.133014,0.133014,0.133014,0.133014,0.133014,0.133014,0.133014,0.053871,0.053871,35,35,, +10008,0,0.260189,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.535,0.795,0,5.575478,4.5,4.5,0.410825,0.410825,0.410825,0.410825,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.525713,0.430981,0.410825,0.410825,0.525713,0.430981,0.440654,0.420482,0.410825,0.410825,0.440654,0.420482,0.475762,0.49792,0.410825,0.410825,0.475762,0.49792,0.410825,0.410825,0.410825,0.410825,0.410825,0.410825,,,,,,,0.525713,0.430981,0.440654,0.420482,0.475762,0.49792,0.410825,0.410825,0.410825,0.410825,0.204548,0.176128,0.17903,0.172979,0.189563,0.19621,0.170081,0.170081,0.090244,0.090244,29.695539,36.222798,35.427648,37.127278,32.813349,31.353106,38,38,38,38,,,,,,,,,,,3406,3406,0.410825,0.410825,0.410825,0.410825,0.410825,0.410825,0.410825,0.410825,0.170081,0.170081,38,38,, +10049,1,0.355598,1,0,0,1,1,ROF,3,5,E I 94/Michigan,RAMP,1427710,0,0.355,0,,2.24,5,0.609597,,0.609597,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.609749,,0.609597,,0.609749,,0.609742,,0.609597,,0.609742,,0.615228,,0.609597,,0.615228,,0.609597,,0.609597,,0.609597,,,,,,,,0.609749,,0.609742,,0.615228,,0.609597,,0.609597,,0.246933,,0.24693,,0.248576,,0.246887,,0.130555,,34.991265,,34.991711,,34.679672,,35,,35,,,,,,,,,,,,5074,,0.609597,,0.609597,,0.609597,,0.609597,,0.246887,,35,,, +10210,0,0.764699,1,1,0,2,7,GRV,4,5,Morgan,St,1427703,0,0.764,0,16.386409,6.55,4.5,2.294097,2.294097,2.294097,2.294097,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.30264,2.297657,2.294097,2.294097,2.30264,2.297657,2.307429,2.309793,2.294097,2.294097,2.307429,2.309793,2.395172,2.364468,2.294097,2.294097,2.395172,2.364468,2.294097,2.294097,2.294097,2.294097,2.294097,2.294097,,,,,,,2.30264,2.297657,2.307429,2.309793,2.395172,2.364468,2.294097,2.294097,2.294097,2.294097,0.828438,0.826943,0.829875,0.830584,0.856197,0.846986,0.825875,0.825875,0.428231,0.428231,19.925803,19.969014,19.884441,19.864097,19.156013,19.404765,20,20,20,20,,,,,,,,,,,2064,2064,2.294097,2.294097,2.294097,2.294097,2.294097,2.294097,2.294097,2.294097,0.825875,0.825875,20,20,, +10234,-1,0.321629,0,3,0,1,1,,4,5,W I 94,,1426110,27.024,27.345,0,,0.8,7.5,,0.275682,,0.275682,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.289985,,0.275682,,0.289985,,0.275781,,0.275682,,0.275781,,0.278252,,0.275682,,0.278252,,0.275682,,0.275682,,0.275682,,,,,,,,0.289985,,0.275781,,0.278252,,0.275682,,0.275682,,0.144889,,0.140628,,0.141369,,0.140598,,0.076731,,66.547182,,69.974685,,69.353447,,70,,70,,,,,,,,,,,,22704,,0.275682,,0.275682,,0.275682,,0.275682,,0.140598,,70,, +10496,1,1.170379,2,0,0,1,2,,3,5,N US 23,,1431202,10.458,11.628,0,,0.58,7,1.08035,,1.08035,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.476086,,1.08035,,1.476086,,1.088486,,1.08035,,1.088486,,1.173261,,1.08035,,1.173261,,1.08035,,1.08035,,1.08035,,,,,,,,1.476086,,1.088486,,1.173261,,1.08035,,1.08035,,0.653494,,0.537214,,0.562646,,0.534773,,0.290794,,47.573641,,64.51419,,59.852653,,65,,65,,,,,,,,,,,,15136,,1.08035,,1.08035,,1.08035,,1.08035,,0.534773,,65,,, +11220,0,0.587552,1,1,0,2,4,,3,5,Golfside,Dr,1436304,0.43,1.017,0,12.59039,6,4.5,1.068276,1.068276,1.068276,1.068276,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.140233,1.080196,1.068276,1.068276,1.140233,1.080196,1.082019,1.078474,1.068276,1.068276,1.082019,1.078474,1.154239,1.205377,1.068276,1.068276,1.154239,1.205377,1.068276,1.068276,1.068276,1.068276,1.068276,1.068276,,,,,,,1.140233,1.080196,1.082019,1.078474,1.154239,1.205377,1.068276,1.068276,1.068276,1.068276,0.447829,0.429818,0.430365,0.429302,0.452031,0.467372,0.426242,0.426242,0.224872,0.224872,30.917439,32.63582,32.580855,32.687932,30.542271,29.246524,33,33,33,33,,,,,,,,,,,2580,2580,1.068276,1.068276,1.068276,1.068276,1.068276,1.068276,1.068276,1.068276,0.426242,0.426242,33,33,, +11346,0,0.267314,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,10.548,10.815,0,5.728161,5,5,0.458253,0.458253,0.458253,0.458253,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.541669,0.464706,0.458253,0.458253,0.541669,0.464706,0.476263,0.481777,0.458253,0.458253,0.476263,0.481777,0.513146,0.625716,0.458253,0.458253,0.513146,0.625716,0.458253,0.458253,0.458253,0.458253,0.458253,0.458253,,,,,,,0.541669,0.464706,0.476263,0.481777,0.513146,0.625716,0.458253,0.458253,0.458253,0.458253,0.210617,0.187528,0.190996,0.19265,0.20206,0.235831,0.185592,0.185592,0.098142,0.098142,29.610059,34.513993,33.676425,33.29102,31.255891,25.632795,35,35,35,35,,,,,,,,,,,7946,7946,0.458253,0.458253,0.458253,0.458253,0.458253,0.458253,0.458253,0.458253,0.185592,0.185592,35,35,, +11440,-1,1.140856,0,2,0,1,2,,3,5,S US 23,,1431603,10.457,11.597,0,,0.58,7,,1.053098,,1.053098,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.073099,,1.053098,,1.073099,,1.058895,,1.053098,,1.058895,,1.38772,,1.053098,,1.38772,,1.053098,,1.053098,,1.053098,,,,,,,,1.073099,,1.058895,,1.38772,,1.053098,,1.053098,,0.527284,,0.523023,,0.62167,,0.521283,,0.283459,,63.788458,,64.644162,,49.326511,,65,,65,,,,,,,,,,,,15136,,1.053098,,1.053098,,1.053098,,1.053098,,0.521283,,65,, +11551,0,0.134168,1,1,0,2,5,,4,5,Congress,St,1434509,0.25,0.384,0,2.875027,5.8,4.5,0.298151,0.298151,0.298151,0.298151,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.298326,0.298279,0.298151,0.298151,0.298326,0.298279,0.298191,0.298268,0.298151,0.298151,0.298191,0.298268,0.301362,0.298249,0.298151,0.298151,0.301362,0.298249,0.298151,0.298151,0.298151,0.298151,0.298151,0.298151,,,,,,,0.298326,0.298279,0.298191,0.298268,0.301362,0.298249,0.298151,0.298151,0.298151,0.298151,0.113648,0.113634,0.113607,0.113631,0.114559,0.113625,0.113596,0.113596,0.059481,0.059481,26.984185,26.988445,26.996385,26.989373,26.712321,26.991101,27,27,27,27,,,,,,,,,,,2580,2580,0.298151,0.298151,0.298151,0.298151,0.298151,0.298151,0.298151,0.298151,0.113596,0.113596,27,27,, +21263,0,0.310611,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.197,2.508,0,6.655949,3.7,5,0.465916,0.465916,0.465916,0.465916,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.466014,0.470336,0.465916,0.465916,0.466014,0.470336,0.465958,0.466089,0.465916,0.465916,0.465958,0.466089,0.467064,0.46746,0.465916,0.465916,0.467064,0.46746,0.465916,0.465916,0.465916,0.465916,0.465916,0.465916,,,,,,,0.466014,0.470336,0.465958,0.466089,0.467064,0.46746,0.465916,0.465916,0.465916,0.465916,0.195714,0.197011,0.195698,0.195737,0.196029,0.196148,0.195685,0.195685,0.104055,0.104055,39.99159,39.624174,39.996391,39.985205,39.901679,39.867897,40,40,40,40,,,,,,,,,,,7568,7568,0.465916,0.465916,0.465916,0.465916,0.465916,0.465916,0.465916,0.465916,0.195685,0.195685,40,40,, +21535,0,0.474297,2,2,0,2,4,,4,5,Clark,Rd,4603250,0,0.474,0,10.163501,4.5,4.5,0.74889,0.74889,0.74889,0.74889,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.749451,0.751662,0.74889,0.74889,0.749451,0.751662,0.749456,0.749181,0.74889,0.74889,0.749456,0.749181,0.75199,0.749284,0.74889,0.74889,0.75199,0.749284,0.74889,0.74889,0.74889,0.74889,0.74889,0.74889,,,,,,,0.749451,0.751662,0.749456,0.749181,0.75199,0.749284,0.74889,0.74889,0.74889,0.74889,0.310209,0.310872,0.31021,0.310128,0.31097,0.310159,0.31004,0.31004,0.164506,0.164506,37.971534,37.859855,37.971264,37.985222,37.843349,37.980012,38,38,38,38,,,,,,,,,,,6192,6192,0.74889,0.74889,0.74889,0.74889,0.74889,0.74889,0.74889,0.74889,0.31004,0.31004,38,38,, +25290,0,0.333204,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.140095,0.15,4,1.332818,1.332818,1.332818,1.332818,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,,,,,,,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,0.459822,0.459822,0.459822,0.459822,0.459822,0.459822,0.459822,0.459822,0.236575,0.236575,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,1.332818,0.459822,0.459822,15,15,, +25307,0,0.297438,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.373672,0.15,4,1.189752,1.189752,1.189752,1.189752,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,1.189753,1.189752,1.189752,1.189752,1.189753,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,,,,,,,1.189752,1.189752,1.189752,1.189752,1.189752,1.189753,1.189752,1.189752,1.189752,1.189752,0.410465,0.410464,0.410465,0.410465,0.410465,0.410465,0.410464,0.410464,0.211181,0.211181,14.999996,14.999999,14.999998,14.999999,14.999997,14.99999,15,15,15,15,,,,,,,,,,,34400,34400,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,1.189752,0.410464,0.410464,15,15,, +26675,0,0.344817,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.388926,0.15,4,2.068899,2.068899,2.068899,2.068899,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,,,,,,,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,0.682737,0.682737,0.682737,0.682737,0.682737,0.682737,0.682737,0.682737,0.348265,0.348265,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,2.068899,0.682737,0.682737,10,10,, +26676,0,0.528094,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.316308,0.15,4,2.112377,2.112377,2.112377,2.112377,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,,,,,,,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,0.72877,0.72877,0.72877,0.72877,0.72877,0.72877,0.72877,0.72877,0.374947,0.374947,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,2.112377,0.72877,0.72877,15,15,, +26678,0,0.295788,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.338317,0.15,4,1.183153,1.183153,1.183153,1.183153,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,,,,,,,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,0.408188,0.408188,0.408188,0.408188,0.408188,0.408188,0.408188,0.408188,0.21001,0.21001,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,1.183153,0.408188,0.408188,15,15,, +26680,0,0.238321,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.106883,0.15,4,0.953285,0.953285,0.953285,0.953285,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,,,,,,,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.328883,0.328883,0.328883,0.328883,0.328883,0.328883,0.328883,0.328883,0.169208,0.169208,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.953285,0.328883,0.328883,15,15,, +26684,0,0.342767,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.345014,0.15,4,1.371069,1.371069,1.371069,1.371069,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,,,,,,,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,0.473019,0.473019,0.473019,0.473019,0.473019,0.473019,0.473019,0.473019,0.243365,0.243365,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,1.371069,0.473019,0.473019,15,15,, +26687,0,0.371191,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.954103,0.15,4,1.484766,1.484766,1.484766,1.484766,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,,,,,,,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,0.512244,0.512244,0.512244,0.512244,0.512244,0.512244,0.512244,0.512244,0.263546,0.263546,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,1.484766,0.512244,0.512244,15,15,, +26694,0,0.24474,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.244428,0.15,4,0.97896,0.97896,0.97896,0.97896,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,,,,,,,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.337741,0.337741,0.337741,0.337741,0.337741,0.337741,0.337741,0.337741,0.173765,0.173765,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.97896,0.337741,0.337741,15,15,, +30013,0,0.548696,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.757772,0.15,4,2.194784,2.194784,2.194784,2.194784,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.194784,2.194794,2.194784,2.194784,2.194784,2.194794,2.194786,2.194787,2.194784,2.194784,2.194786,2.194787,2.194793,2.194786,2.194784,2.194784,2.194793,2.194786,2.194784,2.194784,2.194784,2.194784,2.194784,2.194784,,,,,,,2.194784,2.194794,2.194786,2.194787,2.194793,2.194786,2.194784,2.194784,2.194784,2.194784,0.757201,0.757203,0.757201,0.757201,0.757203,0.757201,0.757201,0.757201,0.389574,0.389574,14.999999,14.999934,14.999985,14.999983,14.999937,14.999987,15,15,15,15,,,,,,,,,,,34400,34400,2.194784,2.194784,2.194784,2.194784,2.194784,2.194784,2.194784,2.194784,0.757201,0.757201,15,15,, +30113,0,0.61138,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.100993,0.15,4,2.445519,2.445519,2.445519,2.445519,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,,,,,,,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,0.843704,0.843704,0.843704,0.843704,0.843704,0.843704,0.843704,0.843704,0.43408,0.43408,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,2.445519,0.843704,0.843704,15,15,, +9222,-1,0.324227,0,2,0,1,2,FCD,4,5,S US 23 CD,,1426905,0.116,0.44,0,,0.8,7.5,,0.299287,,0.299287,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.299289,,0.299287,,0.299289,,0.299287,,0.299287,,0.299287,,0.29931,,0.299287,,0.29931,,0.299287,,0.299287,,0.299287,,,,,,,,0.299289,,0.299287,,0.29931,,0.299287,,0.299287,,0.148148,,0.148147,,0.148154,,0.148147,,0.080558,,64.999433,,64.999946,,64.995013,,65,,65,,,,,,,,,,,,14448,,0.299287,,0.299287,,0.299287,,0.299287,,0.148147,,65,, +9478,1,0.793236,3,0,0,1,1,,3,5,E I 94,,1426109,26.071,26.864,0,,0.58,7,0.732218,,0.732218,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.740694,,0.732218,,0.740694,,0.732754,,0.732218,,0.732754,,0.801147,,0.732218,,0.801147,,0.732218,,0.732218,,0.732218,,,,,,,,0.740694,,0.732754,,0.801147,,0.732218,,0.732218,,0.364991,,0.362609,,0.383127,,0.362448,,0.197089,,64.256107,,64.952431,,59.407485,,65,,65,,,,,,,,,,,,22704,,0.732218,,0.732218,,0.732218,,0.732218,,0.362448,,65,,, +10085,0,0.641128,1,1,0,2,3,,4,5,Michigan,Ave,1427301,17.128,17.769,0,13.738455,3.7,5,0.961692,0.961692,0.961692,0.961692,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.080861,0.996971,0.961692,0.961692,1.080861,0.996971,0.976674,0.965648,0.961692,0.961692,0.976674,0.965648,1.003475,0.9705,0.961692,0.961692,1.003475,0.9705,0.961692,0.961692,0.961692,0.961692,0.961692,0.961692,,,,,,,1.080861,0.996971,0.976674,0.965648,1.003475,0.9705,0.961692,0.961692,0.961692,0.961692,0.439661,0.414494,0.408405,0.405097,0.416446,0.406553,0.403911,0.403911,0.214778,0.214778,35.589846,38.584545,39.386407,39.836125,38.334444,39.636979,40,40,40,40,,,,,,,,,,,3784,3784,0.961692,0.961692,0.961692,0.961692,0.961692,0.961692,0.961692,0.961692,0.403911,0.403911,40,40,, +10248,-1,1.013652,0,3,0,1,1,,4,5,W I 94,,1426110,26.01,27.024,0,,0.8,7.5,,0.868844,,0.868844,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.957877,,0.868844,,0.957877,,0.869651,,0.868844,,0.869651,,0.892678,,0.868844,,0.892678,,0.868844,,0.868844,,0.868844,,,,,,,,0.957877,,0.869651,,0.892678,,0.868844,,0.868844,,0.46982,,0.443353,,0.450261,,0.443111,,0.241828,,63.493644,,69.935065,,68.131083,,70,,70,,,,,,,,,,,,22704,,0.868844,,0.868844,,0.868844,,0.868844,,0.443111,,70,, +10288,1,0.219396,2,0,0,1,2,FCD,4,5,N US 23 CD,,1426908,0.149,0.369,0,,0.8,7.5,0.202519,,0.202519,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.202522,,0.202519,,0.202522,,0.202519,,0.202519,,0.202519,,0.202519,,0.202519,,0.202519,,0.202519,,0.202519,,0.202519,,,,,,,,0.202522,,0.202519,,0.202519,,0.202519,,0.202519,,0.100248,,0.100247,,0.100247,,0.100247,,0.054511,,64.999182,,64.999981,,64.999914,,65,,65,,,,,,,,,,,,14448,,0.202519,,0.202519,,0.202519,,0.202519,,0.100247,,65,,, +10497,1,0.999286,2,0,0,1,2,,4,5,N US 23,,1431202,9.459,10.458,0,,0.8,7.5,0.856531,,0.856531,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.86297,,0.856531,,0.86297,,0.856719,,0.856531,,0.856719,,0.857221,,0.856531,,0.857221,,0.856531,,0.856531,,0.856531,,,,,,,,0.86297,,0.856719,,0.857221,,0.856531,,0.856531,,0.438763,,0.436887,,0.437038,,0.436831,,0.238401,,69.477685,,69.984664,,69.943654,,70,,70,,,,,,,,,,,,15136,,0.856531,,0.856531,,0.856531,,0.856531,,0.436831,,70,,, +10507,1,0.353289,1,0,0,1,1,RFF,3,5,N US 23/E I 94,RAMP,1431201,0,0.353,0,,0.58,7,0.385406,,0.385406,,55,,19000,,4313,,9500,,6129,,6536,,6528,,0.387287,,0.385406,,0.387287,,0.385488,,0.385406,,0.385488,,0.387534,,0.385406,,0.387534,,0.385406,,0.385406,,0.385406,,,,,,,,0.387287,,0.385488,,0.387534,,0.385406,,0.385406,,0.179778,,0.179238,,0.179852,,0.179214,,0.096673,,54.732848,,54.988369,,54.697973,,55,,55,,,,,,,,,,,,6536,,0.385406,,0.385406,,0.385406,,0.385406,,0.179214,,55,,, +11350,0,1.022369,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,9.093,10.115,0,21.907908,5,5,1.752633,1.752633,1.752633,1.752633,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,2.006829,1.754658,1.752633,1.752633,2.006829,1.754658,1.758271,1.758578,1.752633,1.752633,1.758271,1.758578,1.777053,2.022911,1.752633,1.752633,1.777053,2.022911,1.752633,1.752633,1.752633,1.752633,1.752633,1.752633,,,,,,,2.006829,1.754658,1.758271,1.758578,1.777053,2.022911,1.752633,1.752633,1.752633,1.752633,0.786075,0.710424,0.711508,0.7116,0.717142,0.7909,0.709816,0.709816,0.375355,0.375355,30.566708,34.959595,34.887772,34.881679,34.519027,30.323696,35,35,35,35,,,,,,,,,,,7946,7946,1.752633,1.752633,1.752633,1.752633,1.752633,1.752633,1.752633,1.752633,0.709816,0.709816,35,35,, +11441,-1,1.015374,0,2,0,1,2,,3,5,S US 23,,1431603,9.442,10.457,0,,0.58,7,,0.937268,,0.937268,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.937485,,0.937268,,0.937485,,0.93741,,0.937268,,0.93741,,0.939974,,0.937268,,0.939974,,0.937268,,0.937268,,0.937268,,,,,,,,0.937485,,0.93741,,0.939974,,0.937268,,0.937268,,0.464013,,0.46399,,0.46476,,0.463948,,0.252281,,64.984921,,64.990117,,64.812859,,65,,65,,,,,,,,,,,,15136,,0.937268,,0.937268,,0.937268,,0.937268,,0.463948,,65,, +21423,0,0.231678,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.244,1.476,0,4.96453,5,5,0.397162,0.397162,0.397162,0.397162,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.398848,0.424614,0.397162,0.397162,0.398848,0.424614,0.398081,0.39854,0.397162,0.397162,0.398081,0.39854,0.425027,0.415429,0.397162,0.397162,0.425027,0.415429,0.397162,0.397162,0.397162,0.397162,0.397162,0.397162,,,,,,,0.398848,0.424614,0.398081,0.39854,0.425027,0.415429,0.397162,0.397162,0.397162,0.397162,0.161356,0.169086,0.161126,0.161264,0.16921,0.166331,0.160851,0.160851,0.085059,0.085059,34.852113,32.737238,34.919208,34.87898,32.705446,33.461021,35,35,35,35,,,,,,,,,,,7568,7568,0.397162,0.397162,0.397162,0.397162,0.397162,0.397162,0.397162,0.397162,0.160851,0.160851,35,35,, +25278,0,0.418553,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.969001,0.15,4,1.674214,1.674214,1.674214,1.674214,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,,,,,,,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,0.577604,0.577604,0.577604,0.577604,0.577604,0.577604,0.577604,0.577604,0.297173,0.297173,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,1.674214,0.577604,0.577604,15,15,, +26244,0,0.49354,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.575855,0.15,4,1.97416,1.97416,1.97416,1.97416,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,,,,,,,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,0.681085,0.681085,0.681085,0.681085,0.681085,0.681085,0.681085,0.681085,0.350413,0.350413,14.999997,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,1.97416,0.681085,0.681085,15,15,, +10353,0,0.168763,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.96,17.128,0,3.616344,3.7,5,0.253144,0.253144,0.253144,0.253144,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.34776,0.488454,0.253144,0.253144,0.34776,0.488454,0.301348,0.339625,0.253144,0.253144,0.301348,0.339625,0.356998,0.455036,0.253144,0.253144,0.356998,0.455036,0.253144,0.253144,0.253144,0.253144,0.253144,0.253144,,,,,,,0.34776,0.488454,0.301348,0.339625,0.356998,0.455036,0.253144,0.253144,0.253144,0.253144,0.134705,0.176914,0.120782,0.132265,0.137477,0.166888,0.106321,0.106321,0.056536,0.056536,29.11711,20.730215,33.601542,29.814544,28.363681,22.252666,40,40,40,40,,,,,,,,,,,4162,4162,0.253144,0.253144,0.253144,0.253144,0.253144,0.253144,0.253144,0.253144,0.106321,0.106321,40,40,, +10498,1,0.601311,2,0,0,1,2,,4,5,N US 23,,1431202,8.858,9.459,0,,0.8,7.5,0.515409,,0.515409,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.852151,,0.515409,,0.852151,,0.525074,,0.515409,,0.525074,,0.580825,,0.515409,,0.580825,,0.515409,,0.515409,,0.515409,,,,,,,,0.852151,,0.525074,,0.580825,,0.515409,,0.515409,,0.363881,,0.265758,,0.282484,,0.262859,,0.143456,,42.338333,,68.711588,,62.116173,,70,,70,,,,,,,,,,,,15136,,0.515409,,0.515409,,0.515409,,0.515409,,0.262859,,70,,, +11355,0,0.510516,2,2,1,2,3,,4,5,Carpenter,Rd,1431609,8.582,9.093,0,10.939618,3.7,5,0.765773,0.765773,0.765773,0.765773,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.799163,0.766223,0.765773,0.765773,0.799163,0.766223,0.766333,0.766679,0.765773,0.765773,0.766333,0.766679,0.769297,0.809208,0.765773,0.765773,0.769297,0.809208,0.765773,0.765773,0.765773,0.765773,0.765773,0.765773,,,,,,,0.799163,0.766223,0.766333,0.766679,0.769297,0.809208,0.765773,0.765773,0.765773,0.765773,0.331642,0.32176,0.321793,0.321897,0.322682,0.334655,0.321625,0.321625,0.171023,0.171023,38.328753,39.976528,39.970761,39.952737,39.816759,37.852991,40,40,40,40,,,,,,,,,,,7946,7946,0.765773,0.765773,0.765773,0.765773,0.765773,0.765773,0.765773,0.765773,0.321625,0.321625,40,40,, +11452,-1,0.632103,0,2,0,1,2,,4,5,S US 23,,1431603,8.81,9.442,0,,0.8,7.5,,0.541802,,0.541802,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.556721,,0.541802,,0.556721,,0.547569,,0.541802,,0.547569,,0.780463,,0.541802,,0.780463,,0.541802,,0.541802,,0.541802,,,,,,,,0.556721,,0.547569,,0.780463,,0.541802,,0.541802,,0.280795,,0.278049,,0.347917,,0.276319,,0.150802,,68.124144,,69.26276,,48.594436,,70,,70,,,,,,,,,,,,15136,,0.541802,,0.541802,,0.541802,,0.541802,,0.276319,,70,, +9971,1,0.285493,1,0,0,1,2,RON,4,5,Michigan/N US 23,RAMP,1427608,0,0.285,0,,1.09,4,0.380657,,0.380657,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.451592,,0.380657,,0.451592,,0.407875,,0.380657,,0.407875,,0.452069,,0.380657,,0.452069,,0.380657,,0.380657,,0.380657,,,,,,,,0.451592,,0.407875,,0.452069,,0.380657,,0.380657,,0.186866,,0.173751,,0.187009,,0.165586,,0.088503,,37.931561,,41.997101,,37.891547,,45,,45,,,,,,,,,,,,5160,,0.380657,,0.380657,,0.380657,,0.380657,,0.165586,,45,,, +10356,0,0.054267,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.905,16.96,0,1.162862,3.7,5,0.0814,0.0814,0.0814,0.0814,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.651203,0.088585,0.0814,0.0814,0.651203,0.088585,0.321136,0.084353,0.0814,0.0814,0.321136,0.084353,0.651203,0.086592,0.0814,0.0814,0.651203,0.086592,0.0814,0.0814,0.0814,0.0814,0.0814,0.0814,,,,,,,0.651203,0.088585,0.321136,0.084353,0.651203,0.086592,0.0814,0.0814,0.0814,0.0814,0.205129,0.036343,0.106109,0.035074,0.205129,0.035746,0.034188,0.034188,0.018179,0.018179,5,36.755882,10.139064,38.60007,5,37.601603,40,40,40,40,,,,,,,,,,,4162,4162,0.0814,0.0814,0.0814,0.0814,0.0814,0.0814,0.0814,0.0814,0.034188,0.034188,40,40,, +9850,-1,0.115788,0,2,0,1,2,FCD,4,5,S US 23 CD,,1426905,0,0.116,0,,0.8,7.5,,0.106882,,0.106882,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.106901,,0.106882,,0.106901,,0.106886,,0.106882,,0.106886,,0.10721,,0.106882,,0.10721,,0.106882,,0.106882,,0.106882,,,,,,,,0.106901,,0.106886,,0.10721,,0.106882,,0.106882,,0.052912,,0.052908,,0.053005,,0.052906,,0.028769,,64.988408,,64.997444,,64.800908,,65,,65,,,,,,,,,,,,14448,,0.106882,,0.106882,,0.106882,,0.106882,,0.052906,,65,, +9504,1,0.149321,2,0,0,1,2,FCD,4,5,N US 23 CD,,1426908,0,0.149,0,,0.8,7.5,0.137835,,0.137835,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.138147,,0.137835,,0.138147,,0.137843,,0.137835,,0.137843,,0.137954,,0.137835,,0.137954,,0.137835,,0.137835,,0.137835,,,,,,,,0.138147,,0.137843,,0.137954,,0.137835,,0.137835,,0.068322,,0.068231,,0.068264,,0.068228,,0.0371,,64.852899,,64.995849,,64.943975,,65,,65,,,,,,,,,,,,14448,,0.137835,,0.137835,,0.137835,,0.137835,,0.068228,,65,,, +11361,0,0.114031,2,2,1,2,4,,4,5,Carpenter,Rd,1431609,8.468,8.582,0,2.44352,4.5,4.5,0.180049,0.180049,0.180049,0.180049,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.297575,0.180869,0.180049,0.180049,0.297575,0.180869,0.182519,0.180755,0.180049,0.180049,0.182519,0.180755,0.194278,0.213934,0.180049,0.180049,0.194278,0.213934,0.180049,0.180049,0.180049,0.180049,0.180049,0.180049,,,,,,,0.297575,0.180869,0.182519,0.180755,0.194278,0.213934,0.180049,0.180049,0.180049,0.180049,0.109798,0.074786,0.075281,0.074752,0.078809,0.084706,0.07454,0.07454,0.039551,0.039551,22.992068,37.827597,37.485658,37.851459,35.21692,31.981144,38,38,38,38,,,,,,,,,,,6502,6502,0.180049,0.180049,0.180049,0.180049,0.180049,0.180049,0.180049,0.180049,0.07454,0.07454,38,38,, +25277,0,0.260454,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.581158,0.15,4,1.041816,1.041816,1.041816,1.041816,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.041817,1.041816,1.041816,1.041816,1.041817,1.041816,1.041817,1.041816,1.041816,1.041816,1.041817,1.041816,1.041817,1.041817,1.041816,1.041816,1.041817,1.041817,1.041816,1.041816,1.041816,1.041816,1.041816,1.041816,,,,,,,1.041817,1.041816,1.041817,1.041816,1.041817,1.041817,1.041816,1.041816,1.041816,1.041816,0.359427,0.359427,0.359427,0.359427,0.359427,0.359427,0.359427,0.359427,0.184922,0.184922,14.999993,14.999999,14.999996,14.999997,14.999988,14.999983,15,15,15,15,,,,,,,,,,,34400,34400,1.041816,1.041816,1.041816,1.041816,1.041816,1.041816,1.041816,1.041816,0.359427,0.359427,15,15,, +9513,-1,0.266787,0,2,0,1,2,FCD,3,5,S US 23 CD,,1426905,0.52,0.787,0,,0.58,7,,0.266787,,0.266787,,60,,38000,,8626,,19000,,12259,,13072,,13057,,0.266792,,0.266787,,0.266792,,0.266787,,0.266787,,0.266787,,0.266947,,0.266787,,0.266947,,0.266787,,0.266787,,0.266787,,,,,,,,0.266792,,0.266787,,0.266947,,0.266787,,0.266787,,0.128059,,0.128058,,0.128106,,0.128058,,0.069364,,59.998692,,59.999944,,59.963895,,60,,60,,,,,,,,,,,,13072,,0.266787,,0.266787,,0.266787,,0.266787,,0.128058,,60,, +9665,1,0.235936,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.487,0.723,0,,0.58,7,0.235936,,0.235936,,60,,38000,,8626,,19000,,12259,,13072,,13057,,0.235941,,0.235936,,0.235941,,0.235936,,0.235936,,0.235936,,0.236078,,0.235936,,0.236078,,0.235936,,0.235936,,0.235936,,,,,,,,0.235941,,0.235936,,0.236078,,0.235936,,0.235936,,0.113251,,0.113249,,0.113292,,0.113249,,0.061343,,59.998692,,59.999944,,59.963895,,60,,60,,,,,,,,,,,,13072,,0.235936,,0.235936,,0.235936,,0.235936,,0.113249,,60,,, +10128,1,0.307273,2,0,0,1,2,FCD,3,5,N US 23 CD,,1426908,0.692,0.999,0,,0.58,7,0.307273,,0.307273,,60,,38000,,8626,,19000,,12259,,13072,,13057,,0.308084,,0.307273,,0.308084,,0.30728,,0.307273,,0.30728,,0.307685,,0.307273,,0.307685,,0.307273,,0.307273,,0.307273,,,,,,,,0.308084,,0.30728,,0.307685,,0.307273,,0.307273,,0.147734,,0.147493,,0.147614,,0.147491,,0.079891,,59.841995,,59.998637,,59.919686,,60,,60,,,,,,,,,,,,13072,,0.307273,,0.307273,,0.307273,,0.307273,,0.147491,,60,,, +10254,-1,0.396769,0,2,0,1,1,,3,5,W I 94,,1426110,25.614,26.01,0,,0.58,7,,0.366248,,0.366248,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.421385,,0.366248,,0.421385,,0.367244,,0.366248,,0.367244,,0.389027,,0.366248,,0.389027,,0.366248,,0.366248,,0.366248,,,,,,,,0.421385,,0.367244,,0.389027,,0.366248,,0.366248,,0.197834,,0.181592,,0.188127,,0.181293,,0.098582,,56.494912,,64.823723,,61.193937,,65,,65,,,,,,,,,,,,15136,,0.366248,,0.366248,,0.366248,,0.366248,,0.181293,,65,, +21365,1,0.572844,1,0,0,1,1,RFF,3,5,W I 94/N US 23,RAMP,4603872,0,0.573,0,,0.58,7,0.62492,,0.62492,,55,,19000,,4313,,9500,,6129,,6536,,6528,,0.665429,,0.62492,,0.665429,,0.625089,,0.62492,,0.625089,,0.629309,,0.62492,,0.629309,,0.62492,,0.62492,,0.62492,,,,,,,,0.665429,,0.625089,,0.629309,,0.62492,,0.62492,,0.30274,,0.290639,,0.291905,,0.290588,,0.156751,,51.651835,,54.98515,,54.616443,,55,,55,,,,,,,,,,,,6536,,0.62492,,0.62492,,0.62492,,0.62492,,0.290588,,55,,, +26674,0,0.152223,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.261927,0.15,4,0.91334,0.91334,0.91334,0.91334,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.91334,0.91334,0.91334,0.91334,0.91334,0.91334,0.91334,0.91334,0.91334,0.91334,0.91334,0.91334,0.913341,0.913341,0.91334,0.91334,0.913341,0.913341,0.91334,0.91334,0.91334,0.91334,0.91334,0.91334,,,,,,,0.91334,0.91334,0.91334,0.91334,0.913341,0.913341,0.91334,0.91334,0.91334,0.91334,0.301402,0.301402,0.301402,0.301402,0.301402,0.301402,0.301402,0.301402,0.153746,0.153746,9.999999,9.999998,9.999994,9.999993,9.999986,9.999989,10,10,10,10,,,,,,,,,,,34400,34400,0.91334,0.91334,0.91334,0.91334,0.91334,0.91334,0.91334,0.91334,0.301402,0.301402,10,10,, +9806,1,0.067044,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.42,0.487,0,,0.58,7,0.067044,,0.067044,,60,,38000,,8626,,19000,,12259,,13072,,13057,,0.067061,,0.067044,,0.067061,,0.067045,,0.067044,,0.067045,,0.067494,,0.067044,,0.067494,,0.067044,,0.067044,,0.067044,,,,,,,,0.067061,,0.067045,,0.067494,,0.067044,,0.067044,,0.032186,,0.032182,,0.032316,,0.032181,,0.017432,,59.985003,,59.99923,,59.600445,,60,,60,,,,,,,,,,,,13072,,0.067044,,0.067044,,0.067044,,0.067044,,0.032181,,60,,, +10179,-1,0.080271,0,2,0,1,2,FCD,3,5,S US 23 CD,,1426905,0.44,0.52,0,,0.58,7,,0.080271,,0.080271,,60,,38000,,8626,,19000,,12259,,13072,,13057,,0.080522,,0.080271,,0.080522,,0.080289,,0.080271,,0.080289,,0.083979,,0.080271,,0.083979,,0.080271,,0.080271,,0.080271,,,,,,,,0.080522,,0.080289,,0.083979,,0.080271,,0.080271,,0.038606,,0.038536,,0.039642,,0.03853,,0.020871,,59.813126,,59.986783,,57.351227,,60,,60,,,,,,,,,,,,13072,,0.080271,,0.080271,,0.080271,,0.080271,,0.03853,,60,, +10256,-1,0.094847,0,2,0,1,1,,3,5,W I 94,,1426110,25.519,25.614,0,,0.58,7,,0.087551,,0.087551,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.155821,,0.087551,,0.155821,,0.088919,,0.087551,,0.088919,,0.109778,,0.087551,,0.109778,,0.087551,,0.087551,,0.087551,,,,,,,,0.155821,,0.088919,,0.109778,,0.087551,,0.087551,,0.063819,,0.043748,,0.050006,,0.043338,,0.023566,,36.521307,,63.99972,,51.839009,,65,,65,,,,,,,,,,,,15136,,0.087551,,0.087551,,0.087551,,0.087551,,0.043338,,65,, +10392,1,0.079478,2,0,0,1,2,FCD,4,5,N US 23 CD,,1426908,0.369,0.448,0,,0.8,7.5,0.073365,,0.073365,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.073375,,0.073365,,0.073375,,0.073365,,0.073365,,0.073365,,0.073373,,0.073365,,0.073373,,0.073365,,0.073365,,0.073365,,,,,,,,0.073375,,0.073365,,0.073373,,0.073365,,0.073365,,0.036319,,0.036316,,0.036318,,0.036316,,0.019747,,64.990617,,64.99971,,64.992259,,65,,65,,,,,,,,,,,,14448,,0.073365,,0.073365,,0.073365,,0.073365,,0.036316,,65,,, +10415,1,0.259516,1,0,0,1,1,RFS,3,5,N US 23/W I 94,RAMP,1427208,0,0.259,0,,0.22,6,0.346022,,0.346022,,45,,14750,,3348,,7375,,4758,,5074,,5068,,0.351853,,0.346022,,0.351853,,0.346304,,0.346022,,0.346304,,0.346983,,0.346022,,0.346983,,0.346022,,0.346022,,0.346022,,,,,,,,0.351853,,0.346304,,0.346983,,0.346022,,0.346022,,0.152269,,0.150604,,0.150808,,0.150519,,0.08045,,44.254265,,44.963266,,44.875282,,45,,45,,,,,,,,,,,,5074,,0.346022,,0.346022,,0.346022,,0.346022,,0.150519,,45,,, +10509,1,0.260136,1,0,0,1,1,RFS,3,5,S US 23/E I 94,RAMP,1431109,0,0.26,0,,0.22,6,0.346848,,0.346848,,45,,14750,,3348,,7375,,4758,,5074,,5068,,0.350444,,0.346848,,0.350444,,0.347089,,0.346848,,0.347089,,0.408685,,0.346848,,0.408685,,0.346848,,0.346848,,0.346848,,,,,,,,0.350444,,0.347089,,0.408685,,0.346848,,0.346848,,0.151958,,0.150951,,0.16943,,0.150879,,0.080642,,44.538237,,44.96869,,38.191188,,45,,45,,,,,,,,,,,,5074,,0.346848,,0.346848,,0.346848,,0.346848,,0.150879,,45,,, +9639,1,0.255987,1,0,0,1,1,RFS,3,5,W I 94/S US 23,RAMP,1427205,0,0.256,0,,0.22,6,0.341316,,0.341316,,45,,14750,,3348,,7375,,4758,,5074,,5068,,0.345605,,0.341316,,0.345605,,0.341966,,0.341316,,0.341966,,0.365749,,0.341316,,0.365749,,0.341316,,0.341316,,0.341316,,,,,,,,0.345605,,0.341966,,0.365749,,0.341316,,0.341316,,0.149759,,0.148667,,0.155802,,0.148472,,0.079356,,44.44147,,44.914449,,41.993889,,45,,45,,,,,,,,,,,,5074,,0.341316,,0.341316,,0.341316,,0.341316,,0.148472,,45,,, +10508,1,0.272961,1,0,0,1,1,RFS,3,5,E I 94/N US 23,RAMP,1431110,0,0.273,0,,0.22,6,0.363949,,0.363949,,45,,14750,,3348,,7375,,4758,,5074,,5068,,0.363968,,0.363949,,0.363968,,0.363951,,0.363949,,0.363951,,0.364261,,0.363949,,0.364261,,0.363949,,0.363949,,0.363949,,,,,,,,0.363968,,0.363951,,0.364261,,0.363949,,0.363949,,0.158324,,0.158318,,0.158411,,0.158318,,0.084618,,44.997548,,44.999725,,44.961374,,45,,45,,,,,,,,,,,,5074,,0.363949,,0.363949,,0.363949,,0.363949,,0.158318,,45,,, +9756,1,0.244284,2,0,0,1,2,FCD,3,5,N US 23 CD,,1426908,0.448,0.692,0,,0.58,7,0.244284,,0.244284,,60,,38000,,8626,,19000,,12259,,13072,,13057,,0.244284,,0.244284,,0.244284,,0.244284,,0.244284,,0.244284,,0.244284,,0.244284,,0.244284,,0.244284,,0.244284,,0.244284,,,,,,,,0.244284,,0.244284,,0.244284,,0.244284,,0.244284,,0.117256,,0.117256,,0.117256,,0.117256,,0.063514,,59.999997,,60,,59.999928,,60,,60,,,,,,,,,,,,13072,,0.244284,,0.244284,,0.244284,,0.244284,,0.117256,,60,,, +10026,-1,0.229102,0,2,0,1,2,FCD,3,5,S US 23 CD,,1426905,0.787,1.016,0,,0.58,7,,0.229102,,0.229102,,60,,38000,,8626,,19000,,12259,,13072,,13057,,0.229161,,0.229102,,0.229161,,0.229108,,0.229102,,0.229108,,0.230461,,0.229102,,0.230461,,0.229102,,0.229102,,0.229102,,,,,,,,0.229161,,0.229108,,0.230461,,0.229102,,0.229102,,0.109987,,0.109971,,0.110377,,0.109969,,0.059566,,59.984594,,59.99846,,59.646065,,60,,60,,,,,,,,,,,,13072,,0.229102,,0.229102,,0.229102,,0.229102,,0.109969,,60,, +40912,-1,0.026712,0,1,0,2,4,,4,4,Jefferson,Ave,0,0,0,0,0.572403,4.5,4.5,,0.042177,,0.042177,,38,,9000,,2043,,4500,,2903,,3096,,3092,,0.042195,,0.042177,,0.042195,,0.042179,,0.042177,,0.042179,,0.042178,,0.042177,,0.042178,,0.042177,,0.042177,,0.042177,,,,,,,,0.042195,,0.042179,,0.042178,,0.042177,,0.042177,,0.017467,,0.017462,,0.017461,,0.017461,,0.009265,,37.983887,,37.997792,,37.999394,,38,,38,,,,,,,,,,,,3096,,0.042177,,0.042177,,0.042177,,0.042177,,0.017461,,38,, +9517,1,0.176741,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.723,0.9,0,,0.58,7,0.176741,,0.176741,,60,,38000,,8626,,19000,,12259,,13072,,13057,,0.177396,,0.176741,,0.177396,,0.176769,,0.176741,,0.176769,,0.180864,,0.176741,,0.180864,,0.176741,,0.176741,,0.176741,,,,,,,,0.177396,,0.176769,,0.180864,,0.176741,,0.176741,,0.085032,,0.084844,,0.086073,,0.084835,,0.045953,,59.778166,,59.990406,,58.631989,,60,,60,,,,,,,,,,,,13072,,0.176741,,0.176741,,0.176741,,0.176741,,0.084835,,60,,, +11347,0,0.433349,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,10.115,10.548,0,9.286061,5,5,0.742885,0.742885,0.742885,0.742885,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.842786,0.745125,0.742885,0.742885,0.842786,0.745125,0.747509,0.748449,0.742885,0.742885,0.747509,0.748449,0.762832,0.845079,0.742885,0.742885,0.762832,0.845079,0.742885,0.742885,0.742885,0.742885,0.742885,0.742885,,,,,,,0.842786,0.745125,0.747509,0.748449,0.762832,0.845079,0.742885,0.742885,0.742885,0.742885,0.330839,0.30154,0.302256,0.302538,0.306852,0.331527,0.300868,0.300868,0.159101,0.159101,30.851214,34.894772,34.783471,34.739781,34.084802,30.767497,35,35,35,35,,,,,,,,,,,7946,7946,0.742885,0.742885,0.742885,0.742885,0.742885,0.742885,0.742885,0.742885,0.300868,0.300868,35,35,, +21620,0,0.230977,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.013,1.244,0,4.949517,5,5,0.395961,0.395961,0.395961,0.395961,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.398847,0.416269,0.395961,0.395961,0.398847,0.416269,0.396985,0.397257,0.395961,0.395961,0.396985,0.397257,0.418907,0.416294,0.395961,0.395961,0.418907,0.416294,0.395961,0.395961,0.395961,0.395961,0.395961,0.395961,,,,,,,0.398847,0.416269,0.396985,0.397257,0.418907,0.416294,0.395961,0.395961,0.395961,0.395961,0.16123,0.166457,0.160672,0.160753,0.167248,0.166464,0.160364,0.160364,0.084802,0.084802,34.746736,33.292494,34.909708,34.885867,33.082866,33.290555,35,35,35,35,,,,,,,,,,,7568,7568,0.395961,0.395961,0.395961,0.395961,0.395961,0.395961,0.395961,0.395961,0.160364,0.160364,35,35,, +25281,0,0.326164,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.98922,0.15,4,1.956982,1.956982,1.956982,1.956982,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,,,,,,,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,0.645804,0.645804,0.645804,0.645804,0.645804,0.645804,0.645804,0.645804,0.329425,0.329425,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,1.956982,0.645804,0.645804,10,10,, +25280,0,0.219363,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.700629,0.15,4,1.316176,1.316176,1.316176,1.316176,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.316176,1.316176,1.316176,1.316176,1.316176,1.316176,1.316176,1.316176,1.316176,1.316176,1.316176,1.316176,1.316177,1.316177,1.316176,1.316176,1.316177,1.316177,1.316176,1.316176,1.316176,1.316176,1.316176,1.316176,,,,,,,1.316176,1.316176,1.316176,1.316176,1.316177,1.316177,1.316176,1.316176,1.316176,1.316176,0.434338,0.434338,0.434338,0.434338,0.434338,0.434338,0.434338,0.434338,0.221556,0.221556,10,9.999999,9.999999,9.999999,9.999996,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.316176,1.316176,1.316176,1.316176,1.316176,1.316176,1.316176,1.316176,0.434338,0.434338,10,10,, +10352,0,0.471489,1,1,0,2,3,,4,5,Michigan,Ave,1427301,17.906,18.378,0,10.103344,3.7,5,0.707234,0.707234,0.707234,0.707234,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.251407,0.966986,0.707234,0.707234,1.251407,0.966986,0.85434,0.81281,0.707234,0.707234,0.85434,0.81281,1.130488,1.298441,0.707234,0.707234,1.130488,1.298441,0.707234,0.707234,0.707234,0.707234,0.707234,0.707234,,,,,,,1.251407,0.966986,0.85434,0.81281,1.130488,1.298441,0.707234,0.707234,0.707234,0.707234,0.46029,0.374964,0.34117,0.328711,0.424015,0.4744,0.297038,0.297038,0.157949,0.157949,22.606043,29.255186,33.112536,34.804392,25.024024,21.787172,40,40,40,40,,,,,,,,,,,3784,3784,0.707234,0.707234,0.707234,0.707234,0.707234,0.707234,0.707234,0.707234,0.297038,0.297038,40,40,, +26241,0,0.470751,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.08752,0.15,4,1.883004,1.883004,1.883004,1.883004,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,,,,,,,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,0.649636,0.649636,0.649636,0.649636,0.649636,0.649636,0.649636,0.649636,0.334233,0.334233,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,1.883004,0.649636,0.649636,15,15,, +26242,0,0.721044,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.450949,0.15,4,2.884177,2.884177,2.884177,2.884177,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,,,,,,,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,0.995041,0.995041,0.995041,0.995041,0.995041,0.995041,0.995041,0.995041,0.511941,0.511941,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,2.884177,0.995041,0.995041,15,15,, +9579,0,0.137089,1,1,0,2,3,,4,5,Michigan,Ave,1427301,17.769,17.906,0,2.937632,3.7,5,0.205634,0.205634,0.205634,0.205634,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.262271,0.22847,0.205634,0.205634,0.262271,0.22847,0.217721,0.211087,0.205634,0.205634,0.217721,0.211087,0.239857,0.239851,0.205634,0.205634,0.239857,0.239851,0.205634,0.205634,0.205634,0.205634,0.205634,0.205634,,,,,,,0.262271,0.22847,0.217721,0.211087,0.239857,0.239851,0.205634,0.205634,0.205634,0.205634,0.103357,0.093217,0.089992,0.088002,0.096633,0.096631,0.086366,0.086366,0.045925,0.045925,31.362117,36.002038,37.779362,38.966791,34.292802,34.293649,40,40,40,40,,,,,,,,,,,3784,3784,0.205634,0.205634,0.205634,0.205634,0.205634,0.205634,0.205634,0.205634,0.086366,0.086366,40,40,, +10853,0,0.231491,1,1,0,2,5,,4,5,Munger,Rd,1438404,3.055,3.287,0,4.960526,5.8,4.5,0.514425,0.514425,0.514425,0.514425,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.537155,0.514846,0.514425,0.514425,0.537155,0.514846,0.515466,0.515141,0.514425,0.514425,0.515466,0.515141,0.521714,0.608111,0.514425,0.514425,0.521714,0.608111,0.514425,0.514425,0.514425,0.514425,0.514425,0.514425,,,,,,,0.537155,0.514846,0.515466,0.515141,0.521714,0.608111,0.514425,0.514425,0.514425,0.514425,0.202815,0.196122,0.196308,0.196211,0.198183,0.224102,0.195996,0.195996,0.102628,0.102628,25.857451,26.977909,26.945472,26.962445,26.622745,22.840368,27,27,27,27,,,,,,,,,,,2580,2580,0.514425,0.514425,0.514425,0.514425,0.514425,0.514425,0.514425,0.514425,0.195996,0.195996,27,27,, +11569,0,0.07538,1,1,0,2,5,,4,5,Munger,Rd,1438404,2.98,3.055,0,1.615288,5.8,4.5,0.167511,0.167511,0.167511,0.167511,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.168896,0.167511,0.167511,0.167511,0.168896,0.167511,0.167511,0.167511,0.167511,0.167511,0.167511,0.167511,0.167514,0.16899,0.167511,0.167511,0.167514,0.16899,0.167511,0.167511,0.167511,0.167511,0.167511,0.167511,,,,,,,0.168896,0.167511,0.167511,0.167511,0.167514,0.16899,0.167511,0.167511,0.167511,0.167511,0.064237,0.063822,0.063822,0.063822,0.063823,0.064265,0.063822,0.063822,0.033419,0.033419,26.77873,27,26.999999,27,26.99963,26.763824,27,27,27,27,,,,,,,,,,,2580,2580,0.167511,0.167511,0.167511,0.167511,0.167511,0.167511,0.167511,0.167511,0.063822,0.063822,27,27,, +9576,0,0.088332,1,1,0,2,3,,4,5,Michigan,Ave,1427301,18.378,18.466,0,1.892827,3.7,5,0.132498,0.132498,0.132498,0.132498,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.461852,0.20778,0.132498,0.132498,0.461852,0.20778,0.173562,0.160385,0.132498,0.132498,0.173562,0.160385,0.285131,0.568256,0.132498,0.132498,0.285131,0.568256,0.132498,0.132498,0.132498,0.132498,0.132498,0.132498,,,,,,,0.461852,0.20778,0.173562,0.160385,0.285131,0.568256,0.132498,0.132498,0.132498,0.132498,0.154455,0.078234,0.067968,0.064015,0.101439,0.186377,0.055649,0.055649,0.029591,0.029591,11.475364,25.507353,30.536112,33.044973,18.587662,9.326628,40,40,40,40,,,,,,,,,,,3784,3784,0.132498,0.132498,0.132498,0.132498,0.132498,0.132498,0.132498,0.132498,0.055649,0.055649,40,40,, +10351,0,0.004985,1,1,0,2,3,,4,5,Michigan,Ave,1427301,18.466,18.471,0,0.106823,3.7,5,0.007478,0.007478,0.007478,0.007478,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.032017,0.012176,0.007478,0.007478,0.032017,0.012176,0.010346,0.009435,0.007478,0.007478,0.010346,0.009435,0.018319,0.040185,0.007478,0.007478,0.018319,0.040185,0.007478,0.007478,0.007478,0.007478,0.007478,0.007478,,,,,,,0.032017,0.012176,0.010346,0.009435,0.018319,0.040185,0.007478,0.007478,0.007478,0.007478,0.010502,0.00455,0.004001,0.003728,0.006393,0.012953,0.003141,0.003141,0.00167,0.00167,9.342017,24.565331,28.911345,31.702078,16.327326,7.443253,40,40,40,40,,,,,,,,,,,3784,3784,0.007478,0.007478,0.007478,0.007478,0.007478,0.007478,0.007478,0.007478,0.003141,0.003141,40,40,, +21938,0,0.347486,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.476,1.823,0,7.446123,5,5,0.59569,0.59569,0.59569,0.59569,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.598018,0.617796,0.59569,0.59569,0.598018,0.617796,0.596421,0.596817,0.59569,0.59569,0.596421,0.596817,0.618494,0.616528,0.59569,0.59569,0.618494,0.616528,0.59569,0.59569,0.59569,0.59569,0.59569,0.59569,,,,,,,0.598018,0.617796,0.596421,0.596817,0.618494,0.616528,0.59569,0.59569,0.59569,0.59569,0.241953,0.247886,0.241474,0.241593,0.248096,0.247506,0.241254,0.241254,0.127577,0.127577,34.863768,33.747638,34.957076,34.933899,33.709522,33.817037,35,35,35,35,,,,,,,,,,,7568,7568,0.59569,0.59569,0.59569,0.59569,0.59569,0.59569,0.59569,0.59569,0.241254,0.241254,35,35,, +25279,0,0.203615,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.363182,0.15,4,1.221691,1.221691,1.221691,1.221691,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,,,,,,,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,0.403158,0.403158,0.403158,0.403158,0.403158,0.403158,0.403158,0.403158,0.205651,0.205651,9.999999,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,1.221691,0.403158,0.403158,10,10,, +11231,0,0.429844,1,1,0,2,4,,3,5,Golfside,Dr,1436304,0,0.43,0,9.210954,6,4.5,0.781535,0.781535,0.781535,0.781535,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.844487,0.805431,0.781535,0.781535,0.844487,0.805431,0.795808,0.789321,0.781535,0.781535,0.795808,0.789321,0.952405,0.916848,0.781535,0.781535,0.952405,0.916848,0.781535,0.781535,0.781535,0.781535,0.781535,0.781535,,,,,,,0.844487,0.805431,0.795808,0.789321,0.952405,0.916848,0.781535,0.781535,0.781535,0.781535,0.330718,0.319001,0.316114,0.314168,0.363093,0.352426,0.311833,0.311833,0.164513,0.164513,30.540053,32.020974,32.408161,32.674485,27.079525,28.129705,33,33,33,33,,,,,,,,,,,2580,2580,0.781535,0.781535,0.781535,0.781535,0.781535,0.781535,0.781535,0.781535,0.311833,0.311833,33,33,, +21687,0,0.188685,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.823,2.012,0,4.043259,5,5,0.323461,0.323461,0.323461,0.323461,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.324725,0.335464,0.323461,0.323461,0.324725,0.335464,0.323858,0.324073,0.323461,0.323461,0.323858,0.324073,0.335844,0.334776,0.323461,0.323461,0.335844,0.334776,0.323461,0.323461,0.323461,0.323461,0.323461,0.323461,,,,,,,0.324725,0.335464,0.323858,0.324073,0.335844,0.334776,0.323461,0.323461,0.323461,0.323461,0.131381,0.134603,0.131121,0.131185,0.134716,0.134396,0.131002,0.131002,0.069275,0.069275,34.863768,33.747638,34.957076,34.933899,33.709522,33.817037,35,35,35,35,,,,,,,,,,,7568,7568,0.323461,0.323461,0.323461,0.323461,0.323461,0.323461,0.323461,0.323461,0.131002,0.131002,35,35,, +26685,0,0.146058,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.12981,0.15,4,0.876347,0.876347,0.876347,0.876347,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,,,,,,,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.289194,0.289194,0.289194,0.289194,0.289194,0.289194,0.289194,0.289194,0.147518,0.147518,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.876347,0.289194,0.289194,10,10,, +26686,0,0.407985,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.742534,0.15,4,2.447909,2.447909,2.447909,2.447909,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,,,,,,,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,0.80781,0.80781,0.80781,0.80781,0.80781,0.80781,0.80781,0.80781,0.412065,0.412065,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,2.447909,0.80781,0.80781,10,10,, +21473,0,0.185319,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.012,2.197,0,3.971117,3.7,5,0.277978,0.277978,0.277978,0.277978,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.278193,0.282996,0.277978,0.277978,0.278193,0.282996,0.278124,0.278299,0.277978,0.277978,0.278124,0.278299,0.280574,0.280639,0.277978,0.277978,0.280574,0.280639,0.277978,0.277978,0.277978,0.277978,0.277978,0.277978,,,,,,,0.278193,0.282996,0.278124,0.278299,0.280574,0.280639,0.277978,0.277978,0.277978,0.277978,0.116815,0.118256,0.116795,0.116847,0.117529,0.117549,0.116751,0.116751,0.062082,0.062082,39.969173,39.290821,39.978978,39.953845,39.629979,39.620749,40,40,40,40,,,,,,,,,,,7568,7568,0.277978,0.277978,0.277978,0.277978,0.277978,0.277978,0.277978,0.277978,0.116751,0.116751,40,40,, +9507,1,0.232051,1,0,0,1,2,ROF,3,5,S US 23/E Washtenaw,RAMP,1429608,0,0.232,0,,2.24,5,0.397801,,0.397801,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.421064,,0.397801,,0.421064,,0.40036,,0.397801,,0.40036,,0.439421,,0.397801,,0.439421,,0.397801,,0.397801,,0.397801,,,,,,,,0.421064,,0.40036,,0.439421,,0.397801,,0.397801,,0.168088,,0.161877,,0.173595,,0.161109,,0.085196,,33.066297,,34.776267,,31.684944,,35,,35,,,,,,,,,,,,5074,,0.397801,,0.397801,,0.397801,,0.397801,,0.161109,,35,,, +9564,1,0.325966,1,0,0,1,2,RON,3,5,W Washtenaw/N US 23,RAMP,1429702,0,0.326,0,,1.09,4,0.488949,,0.488949,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.610286,,0.488949,,0.610286,,0.515971,,0.488949,,0.515971,,0.627171,,0.488949,,0.627171,,0.488949,,0.488949,,0.488949,,,,,,,,0.610286,,0.515971,,0.627171,,0.488949,,0.488949,,0.24176,,0.213465,,0.246825,,0.205358,,0.109199,,32.047199,,37.905133,,31.184391,,40,,40,,,,,,,,,,,,5074,,0.488949,,0.488949,,0.488949,,0.488949,,0.205358,,40,,, +9917,0,0.060176,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.49,3.55,0,1.289495,5,5,0.10316,0.10316,0.10316,0.10316,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.137437,0.113976,0.10316,0.10316,0.137437,0.113976,0.131484,0.11142,0.10316,0.10316,0.131484,0.11142,0.220988,0.120877,0.10316,0.10316,0.220988,0.120877,0.10316,0.10316,0.10316,0.10316,0.10316,0.10316,,,,,,,0.137437,0.113976,0.131484,0.11142,0.220988,0.120877,0.10316,0.10316,0.10316,0.10316,0.052063,0.045025,0.050277,0.044258,0.077128,0.047095,0.04178,0.04178,0.022093,0.022093,26.270835,31.6784,27.460308,32.405276,16.338352,29.869807,35,35,35,35,,,,,,,,,,,7568,7568,0.10316,0.10316,0.10316,0.10316,0.10316,0.10316,0.10316,0.10316,0.04178,0.04178,35,35,, +10019,1,0.205738,1,0,0,1,2,RON,3,5,E Washtenaw/N US 23,RAMP,1429610,0,0.206,0,,1.09,4,0.308608,,0.308608,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.309529,,0.308608,,0.309529,,0.308701,,0.308608,,0.308701,,0.308886,,0.308608,,0.308886,,0.308608,,0.308608,,0.308608,,,,,,,,0.309529,,0.308701,,0.308886,,0.308608,,0.308608,,0.129891,,0.129643,,0.129699,,0.129615,,0.068922,,39.881003,,39.987916,,39.963966,,40,,40,,,,,,,,,,,,5074,,0.308608,,0.308608,,0.308608,,0.308608,,0.129615,,40,,, +10134,0,0.690603,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.941,4.632,0,14.79864,5,5,1.183891,1.183891,1.183891,1.183891,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,1.202129,1.267808,1.183891,1.183891,1.202129,1.267808,1.200013,1.197784,1.183891,1.183891,1.200013,1.197784,1.275876,1.214736,1.183891,1.183891,1.275876,1.214736,1.183891,1.183891,1.183891,1.183891,1.183891,1.183891,,,,,,,1.202129,1.267808,1.200013,1.197784,1.275876,1.214736,1.183891,1.183891,1.183891,1.183891,0.484947,0.504651,0.484313,0.483644,0.507071,0.488729,0.479476,0.479476,0.25355,0.25355,34.46901,32.683339,34.529782,34.594053,32.476653,34.111276,35,35,35,35,,,,,,,,,,,7568,7568,1.183891,1.183891,1.183891,1.183891,1.183891,1.183891,1.183891,1.183891,0.479476,0.479476,35,35,, +10182,1,0.416333,1,0,0,1,2,RON,3,5,E Washtenaw/S US 23,RAMP,1429606,0,0.416,0,,1.09,4,0.624499,,0.624499,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.641394,,0.624499,,0.641394,,0.646692,,0.624499,,0.646692,,0.921524,,0.624499,,0.921524,,0.624499,,0.624499,,0.624499,,,,,,,,0.641394,,0.646692,,0.921524,,0.624499,,0.624499,,0.267358,,0.268948,,0.351397,,0.26229,,0.139472,,38.946394,,38.627292,,27.107249,,40,,40,,,,,,,,,,,,5074,,0.624499,,0.624499,,0.624499,,0.624499,,0.26229,,40,,, +10494,1,0.07003,2,0,0,1,2,,3,5,N US 23,,1431202,11.879,11.949,0,,0.58,7,0.064644,,0.064644,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.078037,,0.064644,,0.078037,,0.064852,,0.064644,,0.064852,,0.067172,,0.064644,,0.067172,,0.064644,,0.064644,,0.064644,,,,,,,,0.078037,,0.064852,,0.067172,,0.064644,,0.064644,,0.036017,,0.032061,,0.032757,,0.031999,,0.0174,,53.843836,,64.790698,,62.553608,,65,,65,,,,,,,,,,,,15136,,0.064644,,0.064644,,0.064644,,0.064644,,0.031999,,65,,, +10601,0,0.46591,2,2,1,2,3,,3,5,Packard,St,1430704,4.616,5.082,0,9.983793,5,5,0.798703,0.798703,0.798703,0.798703,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.809409,0.95707,0.798703,0.798703,0.809409,0.95707,0.816341,0.821725,0.798703,0.798703,0.816341,0.821725,0.99401,0.855213,0.798703,0.798703,0.99401,0.855213,0.798703,0.798703,0.798703,0.798703,0.798703,0.798703,,,,,,,0.809409,0.95707,0.816341,0.821725,0.99401,0.855213,0.798703,0.798703,0.798703,0.798703,0.326687,0.370985,0.328766,0.330382,0.382067,0.340428,0.323475,0.323475,0.171056,0.171056,34.537076,29.208537,34.243799,34.019416,28.123085,32.687326,35,35,35,35,,,,,,,,,,,7946,7946,0.798703,0.798703,0.798703,0.798703,0.798703,0.798703,0.798703,0.798703,0.323475,0.323475,35,35,, +11173,0,0.387688,1,1,0,2,4,,4,5,Clark,Rd,1436405,0.247,0.634,0,8.307604,4.5,4.5,0.612139,0.612139,0.612139,0.612139,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.708222,0.632036,0.612139,0.612139,0.708222,0.632036,0.653017,0.634952,0.612139,0.612139,0.653017,0.634952,0.703837,0.746641,0.612139,0.612139,0.703837,0.746641,0.612139,0.612139,0.612139,0.612139,0.612139,0.612139,,,,,,,0.708222,0.632036,0.653017,0.634952,0.703837,0.746641,0.612139,0.612139,0.612139,0.612139,0.28225,0.259395,0.265689,0.260269,0.280935,0.293776,0.253426,0.253426,0.134467,0.134467,32.844651,36.803731,35.621272,36.634744,33.049243,31.154592,38,38,38,38,,,,,,,,,,,3096,3096,0.612139,0.612139,0.612139,0.612139,0.612139,0.612139,0.612139,0.612139,0.253426,0.253426,38,38,, +11186,0,0.36404,1,1,1,2,4,,4,5,Golfside,Dr,1436304,1.65,2.014,0,7.800847,4.5,4.5,0.574799,0.574799,0.574799,0.574799,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.654873,0.575459,0.574799,0.574799,0.654873,0.575459,0.581442,0.581122,0.574799,0.574799,0.581442,0.581122,0.588654,0.635227,0.574799,0.574799,0.588654,0.635227,0.574799,0.574799,0.574799,0.574799,0.574799,0.574799,,,,,,,0.654873,0.575459,0.581442,0.581122,0.588654,0.635227,0.574799,0.574799,0.574799,0.574799,0.261989,0.238165,0.23996,0.239864,0.242123,0.256095,0.237967,0.237967,0.126264,0.126264,33.353609,37.956414,37.565861,37.586552,37.105615,34.385126,38,38,38,38,,,,,,,,,,,3406,3406,0.574799,0.574799,0.574799,0.574799,0.574799,0.574799,0.574799,0.574799,0.237967,0.237967,38,38,, +37399,0,0.095218,2,2,1,2,4,,4,5,Huron River,Dr,4605100,0,0.095,0,2.040389,4.5,4.5,0.150344,0.150344,0.150344,0.150344,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.151911,0.153413,0.150344,0.150344,0.151911,0.153413,0.152469,0.152398,0.150344,0.150344,0.152469,0.152398,0.157092,0.154059,0.150344,0.150344,0.157092,0.154059,0.150344,0.150344,0.150344,0.150344,0.150344,0.150344,,,,,,,0.151911,0.153413,0.152469,0.152398,0.157092,0.154059,0.150344,0.150344,0.150344,0.150344,0.062713,0.063163,0.06288,0.062859,0.064267,0.063357,0.062243,0.062243,0.033026,0.033026,37.608113,37.23987,37.47053,37.48792,36.367704,37.083801,38,38,38,38,,,,,,,,,,,6502,6502,0.150344,0.150344,0.150344,0.150344,0.150344,0.150344,0.150344,0.150344,0.062243,0.062243,38,38,, +11342,0,0.340178,2,2,1,2,4,,4,5,Hogback,Rd,1431609,11.721,12.061,0,7.289521,4.5,4.5,0.537123,0.537123,0.537123,0.537123,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.616746,0.542925,0.537123,0.537123,0.616746,0.542925,0.552454,0.546201,0.537123,0.537123,0.552454,0.546201,0.558576,0.612791,0.537123,0.537123,0.558576,0.612791,0.537123,0.537123,0.537123,0.537123,0.537123,0.537123,,,,,,,0.616746,0.542925,0.552454,0.546201,0.558576,0.612791,0.537123,0.537123,0.537123,0.537123,0.246256,0.22411,0.226968,0.225092,0.228805,0.245069,0.222369,0.222369,0.117988,0.117988,33.09413,37.593876,36.945427,37.368427,36.540525,33.307707,38,38,38,38,,,,,,,,,,,6502,6502,0.537123,0.537123,0.537123,0.537123,0.537123,0.537123,0.537123,0.537123,0.222369,0.222369,38,38,, +11437,-1,0.093764,0,2,0,1,2,,3,5,S US 23,,1431603,11.863,11.957,0,,0.58,7,,0.086552,,0.086552,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.088814,,0.086552,,0.088814,,0.086828,,0.086552,,0.086828,,0.099812,,0.086552,,0.099812,,0.086552,,0.086552,,0.086552,,,,,,,,0.088814,,0.086828,,0.099812,,0.086552,,0.086552,,0.043522,,0.042926,,0.046821,,0.042843,,0.023297,,63.344371,,64.793051,,56.364428,,65,,65,,,,,,,,,,,,15136,,0.086552,,0.086552,,0.086552,,0.086552,,0.042843,,65,, +25284,0,0.302881,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.490302,0.15,4,1.817285,1.817285,1.817285,1.817285,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,,,,,,,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,0.599704,0.599704,0.599704,0.599704,0.599704,0.599704,0.599704,0.599704,0.30591,0.30591,9.999999,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,1.817285,0.599704,0.599704,10,10,, +25285,0,0.466628,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.999178,0.15,4,2.79977,2.79977,2.79977,2.79977,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,,,,,,,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,0.923924,0.923924,0.923924,0.923924,0.923924,0.923924,0.923924,0.923924,0.471295,0.471295,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,2.79977,0.923924,0.923924,10,10,, +25292,0,0.437668,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.378599,0.15,4,2.626008,2.626008,2.626008,2.626008,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,,,,,,,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,0.866583,0.866583,0.866583,0.866583,0.866583,0.866583,0.866583,0.866583,0.442045,0.442045,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,2.626008,0.866583,0.866583,10,10,, +25293,0,0.19205,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.115352,0.15,4,0.768199,0.768199,0.768199,0.768199,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,,,,,,,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.265029,0.265029,0.265029,0.265029,0.265029,0.265029,0.265029,0.265029,0.136355,0.136355,15,14.999998,14.999999,14.999999,14.999997,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.768199,0.265029,0.265029,15,15,, +26496,0,0.342012,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.328823,0.15,4,1.368047,1.368047,1.368047,1.368047,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,,,,,,,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,0.471976,0.471976,0.471976,0.471976,0.471976,0.471976,0.471976,0.471976,0.242828,0.242828,15,14.999995,15,14.999998,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,1.368047,0.471976,0.471976,15,15,, +26652,0,0.383453,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.216842,0.15,4,1.53381,1.53381,1.53381,1.53381,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.533811,1.533811,1.53381,1.53381,1.533811,1.533811,1.533811,1.533811,1.53381,1.53381,1.533811,1.533811,1.533811,1.533811,1.53381,1.53381,1.533811,1.533811,1.53381,1.53381,1.53381,1.53381,1.53381,1.53381,,,,,,,1.533811,1.533811,1.533811,1.533811,1.533811,1.533811,1.53381,1.53381,1.53381,1.53381,0.529165,0.529165,0.529165,0.529165,0.529165,0.529165,0.529165,0.529165,0.272251,0.272251,14.999999,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,1.53381,1.53381,1.53381,1.53381,1.53381,1.53381,1.53381,1.53381,0.529165,0.529165,15,15,, +26654,0,0.339197,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.268507,0.15,4,1.356788,1.356788,1.356788,1.356788,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,,,,,,,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,0.468092,0.468092,0.468092,0.468092,0.468092,0.468092,0.468092,0.468092,0.24083,0.24083,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,1.356788,0.468092,0.468092,15,15,, +10139,0,0.017753,2,2,1,2,3,,3,5,Washtenaw,Ave,1427706,3.55,3.568,0,0.380431,5,5,0.030434,0.030434,0.030434,0.030434,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.09377,0.032934,0.030434,0.030434,0.09377,0.032934,0.062423,0.032344,0.030434,0.030434,0.062423,0.032344,0.162143,0.03453,0.030434,0.030434,0.162143,0.03453,0.030434,0.030434,0.030434,0.030434,0.030434,0.030434,,,,,,,0.09377,0.032934,0.062423,0.032344,0.162143,0.03453,0.030434,0.030434,0.030434,0.030434,0.031326,0.013076,0.021923,0.012899,0.051839,0.013555,0.012326,0.012326,0.006518,0.006518,11.359841,32.343553,17.064288,32.933807,6.569545,30.849005,35,35,35,35,,,,,,,,,,,7946,7946,0.030434,0.030434,0.030434,0.030434,0.030434,0.030434,0.030434,0.030434,0.012326,0.012326,35,35,, +10602,0,0.124014,2,2,1,2,3,,3,5,Packard,St,1430704,4.492,4.616,0,2.657446,5,5,0.212596,0.212596,0.212596,0.212596,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.237813,0.47456,0.212596,0.212596,0.237813,0.47456,0.240654,0.230725,0.212596,0.212596,0.240654,0.230725,0.519169,0.275207,0.212596,0.212596,0.519169,0.275207,0.212596,0.212596,0.212596,0.212596,0.212596,0.212596,,,,,,,0.237813,0.47456,0.240654,0.230725,0.519169,0.275207,0.212596,0.212596,0.212596,0.212596,0.093666,0.16469,0.094519,0.09154,0.178073,0.104885,0.086101,0.086101,0.045531,0.045531,31.288679,15.679474,30.919266,32.249838,14.332221,27.037322,35,35,35,35,,,,,,,,,,,7946,7946,0.212596,0.212596,0.212596,0.212596,0.212596,0.212596,0.212596,0.212596,0.086101,0.086101,35,35,, +11344,0,0.261238,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,11.135,11.396,0,5.597948,5,5,0.447836,0.447836,0.447836,0.447836,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.496832,0.455397,0.447836,0.447836,0.496832,0.455397,0.468535,0.460637,0.447836,0.447836,0.468535,0.460637,0.502462,0.530293,0.447836,0.447836,0.502462,0.530293,0.447836,0.447836,0.447836,0.447836,0.447836,0.447836,,,,,,,0.496832,0.455397,0.468535,0.460637,0.502462,0.530293,0.447836,0.447836,0.447836,0.447836,0.196072,0.183642,0.187583,0.185214,0.197761,0.206111,0.181374,0.181374,0.095912,0.095912,31.548385,34.418912,33.453777,34.027375,31.194922,29.557708,35,35,35,35,,,,,,,,,,,7946,7946,0.447836,0.447836,0.447836,0.447836,0.447836,0.447836,0.447836,0.447836,0.181374,0.181374,35,35,, +25282,0,0.308183,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.603912,0.15,4,1.849095,1.849095,1.849095,1.849095,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,,,,,,,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,0.610201,0.610201,0.610201,0.610201,0.610201,0.610201,0.610201,0.610201,0.311264,0.311264,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,1.849095,0.610201,0.610201,10,10,, +25283,0,0.086538,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.854389,0.15,4,0.519229,0.519229,0.519229,0.519229,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,,,,,,,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.171346,0.171346,0.171346,0.171346,0.171346,0.171346,0.171346,0.171346,0.087404,0.087404,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.519229,0.171346,0.171346,10,10,, +25294,0,0.293319,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.285414,0.15,4,1.759916,1.759916,1.759916,1.759916,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,,,,,,,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,0.580772,0.580772,0.580772,0.580772,0.580772,0.580772,0.580772,0.580772,0.296253,0.296253,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,1.759916,0.580772,0.580772,10,10,, +10604,0,0.21439,2,2,1,2,3,,3,5,Packard,St,1430704,4.155,4.369,0,4.59408,5,5,0.367526,0.367526,0.367526,0.367526,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.411121,0.675735,0.367526,0.367526,0.411121,0.675735,0.416033,0.398868,0.367526,0.367526,0.416033,0.398868,0.762542,0.47336,0.367526,0.367526,0.762542,0.47336,0.367526,0.367526,0.367526,0.367526,0.367526,0.367526,,,,,,,0.411121,0.675735,0.416033,0.398868,0.762542,0.47336,0.367526,0.367526,0.367526,0.367526,0.161926,0.241311,0.1634,0.158251,0.267353,0.180598,0.148848,0.148848,0.078712,0.078712,31.288679,19.036187,30.919266,32.249838,16.869138,27.174724,35,35,35,35,,,,,,,,,,,7946,7946,0.367526,0.367526,0.367526,0.367526,0.367526,0.367526,0.367526,0.367526,0.148848,0.148848,35,35,, +10603,0,0.122685,2,2,1,2,3,,3,5,Packard,St,1430704,4.369,4.492,0,2.628974,5,5,0.210318,0.210318,0.210318,0.210318,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.235265,0.469475,0.210318,0.210318,0.235265,0.469475,0.238076,0.228253,0.210318,0.210318,0.238076,0.228253,0.513607,0.272258,0.210318,0.210318,0.513607,0.272258,0.210318,0.210318,0.210318,0.210318,0.210318,0.210318,,,,,,,0.235265,0.469475,0.238076,0.228253,0.513607,0.272258,0.210318,0.210318,0.210318,0.210318,0.092663,0.162926,0.093506,0.090559,0.176165,0.103761,0.085179,0.085179,0.045043,0.045043,31.288679,15.679474,30.919266,32.249838,14.332221,27.037322,35,35,35,35,,,,,,,,,,,7946,7946,0.210318,0.210318,0.210318,0.210318,0.210318,0.210318,0.210318,0.210318,0.085179,0.085179,35,35,, +11438,-1,0.266076,0,2,0,1,2,,3,5,S US 23,,1431603,11.597,11.863,0,,0.58,7,,0.245609,,0.245609,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.246452,,0.245609,,0.246452,,0.245748,,0.245609,,0.245748,,0.252237,,0.245609,,0.252237,,0.245609,,0.245609,,0.245609,,,,,,,,0.246452,,0.245748,,0.252237,,0.245609,,0.245609,,0.121829,,0.121618,,0.123565,,0.121576,,0.06611,,64.777664,,64.963102,,63.291776,,65,,65,,,,,,,,,,,,15136,,0.245609,,0.245609,,0.245609,,0.245609,,0.121576,,65,, +10457,1,0.282226,1,0,0,1,2,ROF,3,5,N US 23/E Washtenaw,RAMP,1431307,0,0.282,0,,2.24,5,0.483817,,0.483817,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.503186,,0.483817,,0.503186,,0.487004,,0.483817,,0.487004,,0.496589,,0.483817,,0.496589,,0.483817,,0.483817,,0.483817,,,,,,,,0.503186,,0.487004,,0.496589,,0.483817,,0.483817,,0.201757,,0.196902,,0.199777,,0.195946,,0.103617,,33.652706,,34.770934,,34.099796,,35,,35,,,,,,,,,,,,5074,,0.483817,,0.483817,,0.483817,,0.483817,,0.195946,,35,,, +10495,1,0.250532,2,0,0,1,2,,3,5,N US 23,,1431202,11.628,11.879,0,,0.58,7,0.23126,,0.23126,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.256247,,0.23126,,0.256247,,0.231644,,0.23126,,0.231644,,0.23617,,0.23126,,0.23617,,0.23126,,0.23126,,0.23126,,,,,,,,0.256247,,0.231644,,0.23617,,0.23126,,0.23126,,0.12197,,0.114589,,0.115947,,0.114474,,0.062248,,58.661797,,64.892334,,63.648645,,65,,65,,,,,,,,,,,,15136,,0.23126,,0.23126,,0.23126,,0.23126,,0.114474,,65,,, +11345,0,0.320118,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,10.815,11.135,0,6.859663,5,5,0.548773,0.548773,0.548773,0.548773,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.623668,0.55328,0.548773,0.548773,0.623668,0.55328,0.562511,0.567721,0.548773,0.548773,0.562511,0.567721,0.585372,0.692862,0.548773,0.548773,0.585372,0.692862,0.548773,0.548773,0.548773,0.548773,0.548773,0.548773,,,,,,,0.623668,0.55328,0.562511,0.567721,0.585372,0.692862,0.548773,0.548773,0.548773,0.548773,0.244722,0.223605,0.226375,0.227937,0.233233,0.26548,0.222253,0.222253,0.117529,0.117529,30.796905,34.714892,34.145183,33.831867,32.811735,27.721334,35,35,35,35,,,,,,,,,,,7946,7946,0.548773,0.548773,0.548773,0.548773,0.548773,0.548773,0.548773,0.548773,0.222253,0.222253,35,35,, +9912,0,0.206482,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.735,3.941,0,4.424614,5,5,0.353969,0.353969,0.353969,0.353969,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.387393,0.523309,0.353969,0.353969,0.387393,0.523309,0.391518,0.383703,0.353969,0.353969,0.391518,0.383703,0.590996,0.432381,0.353969,0.353969,0.590996,0.432381,0.353969,0.353969,0.353969,0.353969,0.353969,0.353969,,,,,,,0.387393,0.523309,0.391518,0.383703,0.590996,0.432381,0.353969,0.353969,0.353969,0.353969,0.153385,0.194159,0.154622,0.152278,0.214466,0.166881,0.143358,0.143358,0.075808,0.075808,31.980258,23.674195,31.643266,32.287792,20.962789,28.652804,35,35,35,35,,,,,,,,,,,7568,7568,0.353969,0.353969,0.353969,0.353969,0.353969,0.353969,0.353969,0.353969,0.143358,0.143358,35,35,, +11343,0,0.32536,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,11.396,11.721,0,6.972002,5,5,0.55776,0.55776,0.55776,0.55776,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.611328,0.571141,0.55776,0.55776,0.611328,0.571141,0.585585,0.575161,0.55776,0.55776,0.585585,0.575161,0.627139,0.653293,0.55776,0.55776,0.627139,0.653293,0.55776,0.55776,0.55776,0.55776,0.55776,0.55776,,,,,,,0.611328,0.571141,0.585585,0.575161,0.627139,0.653293,0.55776,0.55776,0.55776,0.55776,0.241963,0.229907,0.23424,0.231113,0.246706,0.254553,0.225893,0.225893,0.119454,0.119454,31.933095,34.180002,33.336929,33.94113,31.128046,29.881839,35,35,35,35,,,,,,,,,,,7946,7946,0.55776,0.55776,0.55776,0.55776,0.55776,0.55776,0.55776,0.55776,0.225893,0.225893,35,35,, +10137,0,0.149161,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.586,3.735,0,3.196297,5,5,0.255704,0.255704,0.255704,0.255704,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.319349,0.409226,0.255704,0.255704,0.319349,0.409226,0.3031,0.294685,0.255704,0.255704,0.3031,0.294685,0.492929,0.370759,0.255704,0.255704,0.492929,0.370759,0.255704,0.255704,0.255704,0.255704,0.255704,0.255704,,,,,,,0.319349,0.409226,0.3031,0.294685,0.492929,0.370759,0.255704,0.255704,0.255704,0.255704,0.122654,0.149617,0.117779,0.115254,0.174728,0.138077,0.10356,0.10356,0.054763,0.054763,28.024618,21.869663,29.526994,30.370148,18.156008,24.138657,35,35,35,35,,,,,,,,,,,7568,7568,0.255704,0.255704,0.255704,0.255704,0.255704,0.255704,0.255704,0.255704,0.10356,0.10356,35,35,, +9914,0,0.017786,2,2,1,2,3,,3,5,Washtenaw,Ave,1427706,3.568,3.586,0,0.381126,5,5,0.03049,0.03049,0.03049,0.03049,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.093941,0.111246,0.03049,0.03049,0.093941,0.111246,0.062537,0.059904,0.03049,0.03049,0.062537,0.059904,0.16244,0.142921,0.03049,0.03049,0.16244,0.142921,0.03049,0.03049,0.03049,0.03049,0.03049,0.03049,,,,,,,0.093941,0.111246,0.062537,0.059904,0.16244,0.142921,0.03049,0.03049,0.03049,0.03049,0.031384,0.036575,0.021963,0.021173,0.051933,0.046078,0.012348,0.012348,0.00653,0.00653,11.359841,9.592728,17.064288,17.814381,6.569545,7.466731,35,35,35,35,,,,,,,,,,,7946,7946,0.03049,0.03049,0.03049,0.03049,0.03049,0.03049,0.03049,0.03049,0.012348,0.012348,35,35,, +10453,0,0.444643,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0.695,1.14,0,9.528062,6,4.5,0.808442,0.808442,0.808442,0.808442,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.069593,2.095763,0.808442,0.808442,1.069593,2.095763,1.069507,1.050389,0.808442,0.808442,1.069507,1.050389,2.14496,1.513885,0.808442,0.808442,2.14496,1.513885,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,,,,,,,1.069593,2.095763,1.069507,1.050389,2.14496,1.513885,0.808442,0.808442,0.808442,0.808442,0.400914,0.708764,0.400888,0.395153,0.723524,0.534201,0.322568,0.322568,0.170177,0.170177,24.942733,12.729769,24.944731,25.398745,12.437794,17.622588,33,33,33,33,,,,,,,,,,,2580,2580,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.808442,0.322568,0.322568,33,33,, +11337,0,0.36104,1,1,0,2,4,,4,5,Hogback,Rd,1431609,12.061,12.422,0,7.736581,4.5,4.5,0.570064,0.570064,0.570064,0.570064,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.265421,0.653878,0.570064,0.570064,1.265421,0.653878,0.704203,0.680713,0.570064,0.570064,0.704203,0.680713,0.733563,1.236322,0.570064,0.570064,0.733563,1.236322,0.570064,0.570064,0.570064,0.570064,0.570064,0.570064,,,,,,,1.265421,0.653878,0.704203,0.680713,0.733563,1.236322,0.570064,0.570064,0.570064,0.570064,0.444613,0.261151,0.276248,0.269201,0.285056,0.435884,0.236006,0.236006,0.125224,0.125224,17.118757,33.129179,30.76164,31.823165,29.530438,17.521672,38,38,38,38,,,,,,,,,,,3096,3096,0.570064,0.570064,0.570064,0.570064,0.570064,0.570064,0.570064,0.570064,0.236006,0.236006,38,38,, +26488,0,0.457344,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.800223,0.15,4,2.744062,2.744062,2.744062,2.744062,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,,,,,,,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,0.905541,0.905541,0.905541,0.905541,0.905541,0.905541,0.905541,0.905541,0.461917,0.461917,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,2.744062,0.905541,0.905541,10,10,, +9754,1,0.23169,1,0,0,1,2,RON,3,5,W Washtenaw/S US 23,RAMP,1429607,0,0.232,0,,1.09,4,0.347536,,0.347536,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.347827,,0.347536,,0.347827,,0.347798,,0.347536,,0.347798,,0.349354,,0.347536,,0.349354,,0.347536,,0.347536,,0.347536,,,,,,,,0.347827,,0.347798,,0.349354,,0.347536,,0.347536,,0.146052,,0.146044,,0.14651,,0.145965,,0.077616,,39.966548,,39.969803,,39.791807,,40,,40,,,,,,,,,,,,5074,,0.347536,,0.347536,,0.347536,,0.347536,,0.145965,,40,,, +9922,0,0.063609,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.292,3.355,0,1.363056,5,5,0.109044,0.109044,0.109044,0.109044,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.115472,0.263246,0.109044,0.109044,0.115472,0.263246,0.117855,0.14835,0.109044,0.109044,0.117855,0.14835,0.125205,0.176248,0.109044,0.109044,0.125205,0.176248,0.109044,0.109044,0.109044,0.109044,0.109044,0.109044,,,,,,,0.115472,0.263246,0.117855,0.14835,0.125205,0.176248,0.109044,0.109044,0.109044,0.109044,0.046091,0.090424,0.046806,0.055955,0.049011,0.064324,0.044163,0.044163,0.023354,0.023354,33.051844,14.498055,32.383495,25.726777,30.482399,21.654532,35,35,35,35,,,,,,,,,,,7568,7568,0.109044,0.109044,0.109044,0.109044,0.109044,0.109044,0.109044,0.109044,0.044163,0.044163,35,35,, +9970,1,0.274041,1,0,0,1,2,ROF,3,5,S US 23/W Washtenaw,RAMP,1427705,0,0.274,0,,2.24,5,0.469784,,0.469784,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.471505,,0.469784,,0.471505,,0.470494,,0.469784,,0.470494,,0.475042,,0.469784,,0.475042,,0.469784,,0.469784,,0.469784,,,,,,,,0.471505,,0.470494,,0.475042,,0.469784,,0.469784,,0.190779,,0.190476,,0.19184,,0.190263,,0.100612,,34.872274,,34.947218,,34.61261,,35,,35,,,,,,,,,,,,5074,,0.469784,,0.469784,,0.469784,,0.469784,,0.190263,,35,,, +11436,-1,0.229187,0,2,0,1,2,,3,5,S US 23,,1431603,11.957,12.186,0,,0.58,7,,0.211557,,0.211557,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.214483,,0.211557,,0.214483,,0.211846,,0.211557,,0.211846,,0.226268,,0.211557,,0.226268,,0.211557,,0.211557,,0.211557,,,,,,,,0.214483,,0.211846,,0.226268,,0.211557,,0.211557,,0.105599,,0.104807,,0.109134,,0.104721,,0.056944,,64.113085,,64.911394,,60.773939,,65,,65,,,,,,,,,,,,15136,,0.211557,,0.211557,,0.211557,,0.211557,,0.104721,,65,, +9928,0,0.026578,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.215,3.242,0,0.569528,5,5,0.045562,0.045562,0.045562,0.045562,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.078085,0.233832,0.045562,0.045562,0.078085,0.233832,0.090601,0.098418,0.045562,0.045562,0.090601,0.098418,0.318936,0.172933,0.045562,0.045562,0.318936,0.172933,0.045562,0.045562,0.045562,0.045562,0.045562,0.045562,,,,,,,0.078085,0.233832,0.090601,0.098418,0.318936,0.172933,0.045562,0.045562,0.045562,0.045562,0.028209,0.074934,0.031964,0.03431,0.100465,0.056664,0.018453,0.018453,0.009758,0.009758,20.42246,6.81976,17.601046,16.20306,5,9.221386,35,35,35,35,,,,,,,,,,,7568,7568,0.045562,0.045562,0.045562,0.045562,0.045562,0.045562,0.045562,0.045562,0.018453,0.018453,35,35,, +10144,0,0.049772,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.242,3.292,0,1.066533,5,5,0.085323,0.085323,0.085323,0.085323,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.090352,0.437888,0.085323,0.085323,0.090352,0.437888,0.092217,0.184304,0.085323,0.085323,0.092217,0.184304,0.097968,0.323844,0.085323,0.085323,0.097968,0.323844,0.085323,0.085323,0.085323,0.085323,0.085323,0.085323,,,,,,,0.090352,0.437888,0.092217,0.184304,0.097968,0.323844,0.085323,0.085323,0.085323,0.085323,0.036064,0.140325,0.036624,0.06425,0.038349,0.106112,0.034556,0.034556,0.018273,0.018273,33.051844,6.81976,32.383495,16.20306,30.482399,9.221386,35,35,35,35,,,,,,,,,,,7568,7568,0.085323,0.085323,0.085323,0.085323,0.085323,0.085323,0.085323,0.085323,0.034556,0.034556,35,35,, +9921,0,0.05797,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.389,3.447,0,1.242225,5,5,0.099378,0.099378,0.099378,0.099378,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.205809,0.374341,0.099378,0.099378,0.205809,0.374341,0.155361,0.182752,0.099378,0.099378,0.155361,0.182752,0.330435,0.300313,0.099378,0.099378,0.330435,0.300313,0.099378,0.099378,0.099378,0.099378,0.099378,0.099378,,,,,,,0.205809,0.374341,0.155361,0.182752,0.330435,0.300313,0.099378,0.099378,0.099378,0.099378,0.072177,0.122737,0.057043,0.06526,0.109565,0.100529,0.040248,0.040248,0.021283,0.021283,16.900277,9.291612,22.388113,19.032489,10.5262,11.582013,35,35,35,35,,,,,,,,,,,7568,7568,0.099378,0.099378,0.099378,0.099378,0.099378,0.099378,0.099378,0.099378,0.040248,0.040248,35,35,, +10283,1,0.24045,1,0,0,1,2,ROF,3,5,N US 23/W Washtenaw,RAMP,1429609,0,0.24,0,,2.24,5,0.4122,,0.4122,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.508678,,0.4122,,0.508678,,0.42067,,0.4122,,0.42067,,0.436851,,0.4122,,0.436851,,0.4122,,0.4122,,0.4122,,,,,,,,0.508678,,0.42067,,0.436851,,0.4122,,0.4122,,0.195884,,0.169482,,0.174336,,0.166941,,0.08828,,28.361797,,34.295295,,33.025004,,35,,35,,,,,,,,,,,,5074,,0.4122,,0.4122,,0.4122,,0.4122,,0.166941,,35,,, +10493,1,0.199961,2,0,0,1,2,,3,5,N US 23,,1431202,11.949,12.148,0,,0.58,7,0.184579,,0.184579,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.189821,,0.184579,,0.189821,,0.184642,,0.184579,,0.184642,,0.185649,,0.184579,,0.185649,,0.184579,,0.184579,,0.184579,,,,,,,,0.189821,,0.184642,,0.185649,,0.184579,,0.184579,,0.092939,,0.091385,,0.091687,,0.091367,,0.049683,,63.205123,,64.977972,,64.625532,,65,,65,,,,,,,,,,,,15136,,0.184579,,0.184579,,0.184579,,0.184579,,0.091367,,65,,, +10143,0,0.033684,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.355,3.389,0,0.721804,5,5,0.057744,0.057744,0.057744,0.057744,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.061148,0.217514,0.057744,0.057744,0.061148,0.217514,0.06241,0.10619,0.057744,0.057744,0.06241,0.10619,0.066302,0.174499,0.057744,0.057744,0.066302,0.174499,0.057744,0.057744,0.057744,0.057744,0.057744,0.057744,,,,,,,0.061148,0.217514,0.06241,0.10619,0.066302,0.174499,0.057744,0.057744,0.057744,0.057744,0.024408,0.071317,0.024786,0.03792,0.025954,0.058413,0.023386,0.023386,0.012367,0.012367,33.051844,9.291612,32.383495,19.032489,30.482399,11.582013,35,35,35,35,,,,,,,,,,,7568,7568,0.057744,0.057744,0.057744,0.057744,0.057744,0.057744,0.057744,0.057744,0.023386,0.023386,35,35,, +10141,0,0.043254,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.447,3.49,0,0.926862,5,5,0.074149,0.074149,0.074149,0.074149,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.15356,0.081924,0.074149,0.074149,0.15356,0.081924,0.115919,0.080086,0.074149,0.074149,0.115919,0.080086,0.246548,0.086884,0.074149,0.074149,0.246548,0.086884,0.074149,0.074149,0.074149,0.074149,0.074149,0.074149,,,,,,,0.15356,0.081924,0.115919,0.080086,0.246548,0.086884,0.074149,0.074149,0.074149,0.074149,0.053854,0.032363,0.042561,0.031811,0.08175,0.033851,0.03003,0.03003,0.01588,0.01588,16.900277,31.6784,22.388113,32.405276,10.5262,29.869807,35,35,35,35,,,,,,,,,,,7568,7568,0.074149,0.074149,0.074149,0.074149,0.074149,0.074149,0.074149,0.074149,0.03003,0.03003,35,35,, +10454,0,0.190617,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0.505,0.695,0,4.08466,6,4.5,0.346577,0.346577,0.346577,0.346577,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.428056,0.856152,0.346577,0.346577,0.428056,0.856152,0.46243,0.436367,0.346577,0.346577,0.46243,0.436367,0.875479,0.52212,0.346577,0.346577,0.875479,0.52212,0.346577,0.346577,0.346577,0.346577,0.346577,0.346577,,,,,,,0.428056,0.856152,0.46243,0.436367,0.875479,0.52212,0.346577,0.346577,0.346577,0.346577,0.162728,0.291157,0.17304,0.165221,0.296955,0.190947,0.138284,0.138284,0.072955,0.072955,26.718609,13.358659,24.73249,26.209706,13.063764,21.905027,33,33,33,33,,,,,,,,,,,2580,2580,0.346577,0.346577,0.346577,0.346577,0.346577,0.346577,0.346577,0.346577,0.138284,0.138284,33,33,, +26447,0,0.217483,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.660353,0.15,4,1.304899,1.304899,1.304899,1.304899,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,,,,,,,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,0.430617,0.430617,0.430617,0.430617,0.430617,0.430617,0.430617,0.430617,0.219658,0.219658,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,1.304899,0.430617,0.430617,10,10,, +11179,0,0.246914,1,1,0,2,4,,4,5,Clark,Rd,1436405,0,0.247,0,5.291024,4.5,4.5,0.389865,0.389865,0.389865,0.389865,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.449496,0.400032,0.389865,0.389865,0.449496,0.400032,0.415297,0.403009,0.389865,0.389865,0.415297,0.403009,0.443979,0.467732,0.389865,0.389865,0.443979,0.467732,0.389865,0.389865,0.389865,0.389865,0.389865,0.389865,,,,,,,0.449496,0.400032,0.415297,0.403009,0.443979,0.467732,0.389865,0.389865,0.389865,0.389865,0.179293,0.164454,0.169034,0.165347,0.177638,0.184764,0.161404,0.161404,0.08564,0.08564,32.95887,37.03416,35.672911,36.760635,33.368408,31.673858,38,38,38,38,,,,,,,,,,,3096,3096,0.389865,0.389865,0.389865,0.389865,0.389865,0.389865,0.389865,0.389865,0.161404,0.161404,38,38,, +25291,0,0.258346,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.535977,0.15,4,1.033382,1.033382,1.033382,1.033382,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,,,,,,,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,0.356517,0.356517,0.356517,0.356517,0.356517,0.356517,0.356517,0.356517,0.183425,0.183425,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,1.033382,0.356517,0.356517,15,15,, +11335,0,0.126456,1,1,0,2,4,,3,5,Huron River,Dr,1431609,12.422,12.549,0,2.709762,6,4.5,0.229919,0.229919,0.229919,0.229919,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.487205,0.343482,0.229919,0.229919,0.487205,0.343482,0.322738,0.299022,0.229919,0.229919,0.322738,0.299022,0.395546,0.639147,0.229919,0.229919,0.395546,0.639147,0.229919,0.229919,0.229919,0.229919,0.229919,0.229919,,,,,,,0.487205,0.343482,0.322738,0.299022,0.395546,0.639147,0.229919,0.229919,0.229919,0.229919,0.168923,0.125807,0.119583,0.112469,0.141426,0.214506,0.091738,0.091738,0.048398,0.048398,15.57319,22.08944,23.509271,25.373812,19.181915,11.87103,33,33,33,33,,,,,,,,,,,2580,2580,0.229919,0.229919,0.229919,0.229919,0.229919,0.229919,0.229919,0.229919,0.091738,0.091738,33,33,, +10600,0,0.538964,2,2,1,2,3,,3,5,Packard,St,1430704,5.082,5.62,0,11.549229,5,5,0.923938,0.923938,0.923938,0.923938,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.943793,1.011515,0.923938,0.923938,0.943793,1.011515,0.941278,0.938481,0.923938,0.923938,0.941278,0.938481,1.049805,0.984586,0.923938,0.923938,1.049805,0.984586,0.923938,0.923938,0.923938,0.923938,0.923938,0.923938,,,,,,,0.943793,1.011515,0.941278,0.938481,1.049805,0.984586,0.923938,0.923938,0.923938,0.923938,0.380151,0.400468,0.379397,0.378558,0.411955,0.392389,0.374195,0.374195,0.197877,0.197877,34.263696,31.969698,34.355259,34.457652,30.803664,32.844089,35,35,35,35,,,,,,,,,,,7946,7946,0.923938,0.923938,0.923938,0.923938,0.923938,0.923938,0.923938,0.923938,0.374195,0.374195,35,35,, +11218,0,0.216218,1,1,1,2,4,,3,5,Golfside,Dr,1436304,1.017,1.233,0,4.633251,6,4.5,0.393124,0.393124,0.393124,0.393124,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.420777,0.399135,0.393124,0.393124,0.420777,0.399135,0.403561,0.402498,0.393124,0.393124,0.403561,0.402498,0.431812,0.439575,0.393124,0.393124,0.431812,0.439575,0.393124,0.393124,0.393124,0.393124,0.393124,0.393124,,,,,,,0.420777,0.399135,0.403561,0.402498,0.431812,0.439575,0.393124,0.393124,0.393124,0.393124,0.165152,0.15866,0.159988,0.159669,0.168463,0.170792,0.156857,0.156857,0.082753,0.082753,30.831328,32.503042,32.146557,32.23147,30.043405,29.512839,33,33,33,33,,,,,,,,,,,2838,2838,0.393124,0.393124,0.393124,0.393124,0.393124,0.393124,0.393124,0.393124,0.156857,0.156857,33,33,, +25286,0,0.545607,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.691583,0.15,4,3.273643,3.273643,3.273643,3.273643,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,,,,,,,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,1.080302,1.080302,1.080302,1.080302,1.080302,1.080302,1.080302,1.080302,0.551063,0.551063,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,3.273643,1.080302,1.080302,10,10,, +25287,0,0.244479,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.238843,0.15,4,1.466876,1.466876,1.466876,1.466876,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.466876,1.466876,1.466876,1.466876,1.466876,1.466876,1.466876,1.466876,1.466876,1.466876,1.466876,1.466876,1.466877,1.466877,1.466876,1.466876,1.466877,1.466877,1.466876,1.466876,1.466876,1.466876,1.466876,1.466876,,,,,,,1.466876,1.466876,1.466876,1.466876,1.466877,1.466877,1.466876,1.466876,1.466876,1.466876,0.484069,0.484069,0.484069,0.484069,0.484069,0.484069,0.484069,0.484069,0.246924,0.246924,9.999999,9.999999,9.999999,9.999999,9.999996,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,1.466876,1.466876,1.466876,1.466876,1.466876,1.466876,1.466876,1.466876,0.484069,0.484069,10,10,, +26688,0,0.352455,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.552605,0.15,4,2.114729,2.114729,2.114729,2.114729,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.114731,2.114729,2.114729,2.114729,2.114731,2.114729,2.11473,2.11473,2.114729,2.114729,2.11473,2.11473,2.11473,2.114731,2.114729,2.114729,2.11473,2.114731,2.114729,2.114729,2.114729,2.114729,2.114729,2.114729,,,,,,,2.114731,2.114729,2.11473,2.11473,2.11473,2.114731,2.114729,2.114729,2.114729,2.114729,0.697861,0.697861,0.697861,0.697861,0.697861,0.697861,0.697861,0.697861,0.355979,0.355979,9.999994,10,9.999999,10,9.999999,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,2.114729,2.114729,2.114729,2.114729,2.114729,2.114729,2.114729,2.114729,0.697861,0.697861,10,10,, +11207,0,0.207722,1,1,1,2,4,,4,5,Golfside,Dr,1436304,1.375,1.583,0,4.45118,4.5,4.5,0.327982,0.327982,0.327982,0.327982,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.486478,0.361207,0.327982,0.327982,0.486478,0.361207,0.369746,0.373368,0.327982,0.327982,0.369746,0.373368,0.474026,0.52443,0.327982,0.327982,0.474026,0.52443,0.327982,0.327982,0.327982,0.327982,0.327982,0.327982,,,,,,,0.486478,0.361207,0.369746,0.373368,0.474026,0.52443,0.327982,0.327982,0.327982,0.327982,0.183333,0.145752,0.148314,0.1494,0.179598,0.194719,0.135784,0.135784,0.072047,0.072047,25.61945,34.504595,33.707741,33.380718,26.292442,23.765428,38,38,38,38,,,,,,,,,,,3406,3406,0.327982,0.327982,0.327982,0.327982,0.327982,0.327982,0.327982,0.327982,0.135784,0.135784,38,38,, +10877,0,0.031275,1,1,1,2,4,,3,5,Golfside,Dr,1436304,1.233,1.264,0,0.670169,6,4.5,0.056863,0.056863,0.056863,0.056863,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.060863,0.057732,0.056863,0.056863,0.060863,0.057732,0.058372,0.058219,0.056863,0.056863,0.058372,0.058219,0.062459,0.063582,0.056863,0.056863,0.062459,0.063582,0.056863,0.056863,0.056863,0.056863,0.056863,0.056863,,,,,,,0.060863,0.057732,0.058372,0.058219,0.062459,0.063582,0.056863,0.056863,0.056863,0.056863,0.023888,0.022949,0.023141,0.023095,0.024367,0.024704,0.022688,0.022688,0.01197,0.01197,30.831328,32.503042,32.146557,32.23147,30.043405,29.512839,33,33,33,33,,,,,,,,,,,2838,2838,0.056863,0.056863,0.056863,0.056863,0.056863,0.056863,0.056863,0.056863,0.022688,0.022688,33,33,, +11540,0,0.110685,1,1,1,2,4,,3,5,Golfside,Dr,1436304,1.264,1.375,0,2.371813,6,4.5,0.201245,0.201245,0.201245,0.201245,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.231944,0.209466,0.201245,0.201245,0.231944,0.209466,0.217359,0.216674,0.201245,0.201245,0.217359,0.216674,0.245538,0.27499,0.201245,0.201245,0.245538,0.27499,0.201245,0.201245,0.201245,0.201245,0.201245,0.201245,,,,,,,0.231944,0.209466,0.217359,0.216674,0.245538,0.27499,0.201245,0.201245,0.201245,0.201245,0.089506,0.082763,0.085131,0.084926,0.093585,0.10242,0.080297,0.080297,0.042362,0.042362,28.632303,31.704856,30.553501,30.650021,27.047026,24.150227,33,33,33,33,,,,,,,,,,,2838,2838,0.201245,0.201245,0.201245,0.201245,0.201245,0.201245,0.201245,0.201245,0.080297,0.080297,33,33,, +11206,0,0.067163,1,1,1,2,4,,4,5,Golfside,Dr,1436304,1.583,1.65,0,1.439197,4.5,4.5,0.106046,0.106046,0.106046,0.106046,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.148522,0.107337,0.106046,0.106046,0.148522,0.107337,0.111838,0.111847,0.106046,0.106046,0.111838,0.111847,0.118682,0.1528,0.106046,0.106046,0.118682,0.1528,0.106046,0.106046,0.106046,0.106046,0.106046,0.106046,,,,,,,0.148522,0.107337,0.111838,0.111847,0.118682,0.1528,0.106046,0.106046,0.106046,0.106046,0.056646,0.04429,0.045641,0.045643,0.047694,0.057929,0.043903,0.043903,0.023295,0.023295,27.132324,37.542921,36.032143,36.029081,33.95421,26.372758,38,38,38,38,,,,,,,,,,,3406,3406,0.106046,0.106046,0.106046,0.106046,0.106046,0.106046,0.106046,0.106046,0.043903,0.043903,38,38,, +11161,0,0.353723,1,1,0,2,4,,4,5,Clark,Rd,1436405,0.634,0.988,0,7.579787,4.5,4.5,0.558511,0.558511,0.558511,0.558511,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.736935,0.865198,0.558511,0.558511,0.736935,0.865198,0.687288,0.627325,0.558511,0.558511,0.687288,0.627325,0.956462,0.718239,0.558511,0.558511,0.956462,0.718239,0.558511,0.558511,0.558511,0.558511,0.558511,0.558511,,,,,,,0.736935,0.865198,0.687288,0.627325,0.956462,0.718239,0.558511,0.558511,0.558511,0.558511,0.284751,0.323229,0.269857,0.251868,0.350609,0.279142,0.231223,0.231223,0.122686,0.122686,28.799558,24.530127,30.879933,33.831573,22.189488,29.549226,38,38,38,38,,,,,,,,,,,3096,3096,0.558511,0.558511,0.558511,0.558511,0.558511,0.558511,0.558511,0.558511,0.231223,0.231223,38,38,, +11330,0,0.362185,1,1,0,2,4,,4,5,Huron River,Dr,4605104,0.467,0.829,0,7.761097,4.5,4.5,0.57187,0.57187,0.57187,0.57187,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.62044,1.510569,0.57187,0.57187,0.62044,1.510569,0.745755,0.793624,0.57187,0.57187,0.745755,0.793624,1.43276,0.86504,0.57187,0.57187,1.43276,0.86504,0.57187,0.57187,0.57187,0.57187,0.57187,0.57187,,,,,,,0.62044,1.510569,0.745755,0.793624,1.43276,0.86504,0.57187,0.57187,0.57187,0.57187,0.251325,0.518364,0.28892,0.30328,0.495021,0.324705,0.236754,0.236754,0.125621,0.125621,35.025286,14.386017,29.139712,27.382087,15.167281,25.121465,38,38,38,38,,,,,,,,,,,3096,3096,0.57187,0.57187,0.57187,0.57187,0.57187,0.57187,0.57187,0.57187,0.236754,0.236754,38,38,, +37401,0,0.467175,1,1,1,2,4,,4,5,Huron River,Dr,4605104,0,0.467,0,10.0109,4.5,4.5,0.737645,0.737645,0.737645,0.737645,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,1.014066,0.87876,0.737645,0.737645,1.014066,0.87876,0.922578,0.928947,0.737645,0.737645,0.922578,0.928947,1.07197,1.345006,0.737645,0.737645,1.07197,1.345006,0.737645,0.737645,0.737645,0.737645,0.737645,0.737645,,,,,,,1.014066,0.87876,0.922578,0.928947,1.07197,1.345006,0.737645,0.737645,0.737645,0.737645,0.388311,0.347719,0.360865,0.362776,0.405683,0.487593,0.305385,0.305385,0.162036,0.162036,27.641699,31.897823,30.38282,30.174511,26.1486,20.840447,38,38,38,38,,,,,,,,,,,3406,3406,0.737645,0.737645,0.737645,0.737645,0.737645,0.737645,0.737645,0.737645,0.305385,0.305385,38,38,, +26497,0,0.514795,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.031328,0.15,4,2.059181,2.059181,2.059181,2.059181,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,,,,,,,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,0.710418,0.710418,0.710418,0.710418,0.710418,0.710418,0.710418,0.710418,0.365505,0.365505,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,2.059181,0.710418,0.710418,15,15,, +26516,0,0.485452,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.402547,0.15,4,1.941809,1.941809,1.941809,1.941809,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,,,,,,,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,0.669924,0.669924,0.669924,0.669924,0.669924,0.669924,0.669924,0.669924,0.344671,0.344671,15,14.999998,15,15,14.999997,15,15,15,15,15,,,,,,,,,,,34400,34400,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,1.941809,0.669924,0.669924,15,15,, +25288,0,0.267517,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.732512,0.15,4,1.070069,1.070069,1.070069,1.070069,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,,,,,,,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,0.369174,0.369174,0.369174,0.369174,0.369174,0.369174,0.369174,0.369174,0.189937,0.189937,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,1.070069,0.369174,0.369174,15,15,, +26495,0,0.435215,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.326025,0.15,4,1.740858,1.740858,1.740858,1.740858,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.740858,1.740859,1.740858,1.740858,1.740858,1.740859,1.740858,1.740858,1.740858,1.740858,1.740858,1.740858,1.740859,1.740858,1.740858,1.740858,1.740859,1.740858,1.740858,1.740858,1.740858,1.740858,1.740858,1.740858,,,,,,,1.740858,1.740859,1.740858,1.740858,1.740859,1.740858,1.740858,1.740858,1.740858,1.740858,0.600596,0.600596,0.600596,0.600596,0.600596,0.600596,0.600596,0.600596,0.309002,0.309002,15,14.999993,15,14.999999,14.999996,15,15,15,15,15,,,,,,,,,,,34400,34400,1.740858,1.740858,1.740858,1.740858,1.740858,1.740858,1.740858,1.740858,0.600596,0.600596,15,15,, +37406,1,0.025831,1,0,0,2,4,,3,5,Geddes,Rd,1448104,2.813,2.838,0,0.553514,6,4.5,0.046965,,0.046965,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.047571,,0.046965,,0.047571,,0.050064,,0.046965,,0.050064,,0.083933,,0.046965,,0.083933,,0.046965,,0.046965,,0.046965,,,,,,,,0.047571,,0.050064,,0.083933,,0.046965,,0.046965,,0.018921,,0.019669,,0.029829,,0.018739,,0.009886,,32.579565,,30.957168,,18.465167,,33,,33,,,,,,,,,,,,2580,,0.046965,,0.046965,,0.046965,,0.046965,,0.018739,,33,,, +9996,0,0.2734,1,1,1,2,3,,4,5,Michigan,Ave,1427804,0,0.273,0,5.858564,3.7,5,0.410099,0.410099,0.410099,0.410099,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.417763,0.418549,0.410099,0.410099,0.417763,0.418549,0.411084,0.413215,0.410099,0.410099,0.411084,0.413215,0.423972,0.428508,0.410099,0.410099,0.423972,0.428508,0.410099,0.410099,0.410099,0.410099,0.410099,0.410099,,,,,,,0.417763,0.418549,0.411084,0.413215,0.423972,0.428508,0.410099,0.410099,0.410099,0.410099,0.174541,0.174777,0.172537,0.173176,0.176403,0.177764,0.172242,0.172242,0.091589,0.091589,39.26621,39.192447,39.904206,39.698438,38.691218,38.281572,40,40,40,40,,,,,,,,,,,4162,4162,0.410099,0.410099,0.410099,0.410099,0.410099,0.410099,0.410099,0.410099,0.172242,0.172242,40,40,, +21530,0,0.269125,1,1,1,2,3,,4,5,Ellsworth,Rd,4603895,2.859,3.128,0,5.766965,3.7,5,0.403688,0.403688,0.403688,0.403688,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.403868,0.405971,0.403688,0.403688,0.403868,0.405971,0.404132,0.403895,0.403688,0.403688,0.404132,0.403895,0.407073,0.404562,0.403688,0.403688,0.407073,0.404562,0.403688,0.403688,0.403688,0.403688,0.403688,0.403688,,,,,,,0.403868,0.405971,0.404132,0.403895,0.407073,0.404562,0.403688,0.403688,0.403688,0.403688,0.169603,0.170234,0.169682,0.169611,0.170564,0.169811,0.169549,0.169549,0.090157,0.090157,39.982121,39.775045,39.956014,39.979419,39.667376,39.913547,40,40,40,40,,,,,,,,,,,4162,4162,0.403688,0.403688,0.403688,0.403688,0.403688,0.403688,0.403688,0.403688,0.169549,0.169549,40,40,, +29939,0,0.451172,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.667982,0.15,4,1.80469,1.80469,1.80469,1.80469,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,,,,,,,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,0.622618,0.622618,0.622618,0.622618,0.622618,0.622618,0.622618,0.622618,0.320332,0.320332,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,1.80469,0.622618,0.622618,15,15,, +29940,0,0.69901,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.978782,0.15,4,2.796039,2.796039,2.796039,2.796039,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,,,,,,,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,0.964634,0.964634,0.964634,0.964634,0.964634,0.964634,0.964634,0.964634,0.496297,0.496297,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,2.796039,0.964634,0.964634,15,15,, +30112,0,0.458237,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.819354,0.15,4,1.832946,1.832946,1.832946,1.832946,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,,,,,,,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,0.632366,0.632366,0.632366,0.632366,0.632366,0.632366,0.632366,0.632366,0.325348,0.325348,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,1.832946,0.632366,0.632366,15,15,, +9476,1,0.395087,3,0,0,1,1,,4,5,E I 94,,1426109,27.271,27.666,0,,0.8,7.5,0.338646,,0.338646,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.34252,,0.338646,,0.34252,,0.338798,,0.338646,,0.338798,,0.365381,,0.338646,,0.365381,,0.338646,,0.338646,,0.338646,,,,,,,,0.34252,,0.338798,,0.365381,,0.338646,,0.338646,,0.173872,,0.172755,,0.18073,,0.17271,,0.094256,,69.208282,,69.968515,,64.878144,,70,,70,,,,,,,,,,,,22704,,0.338646,,0.338646,,0.338646,,0.338646,,0.17271,,70,,, +9828,0,0.159445,2,2,1,2,4,,4,5,Hewitt,Rd,1427803,0,0.159,0,3.416677,4.5,4.5,0.251755,0.251755,0.251755,0.251755,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.308027,0.253553,0.251755,0.251755,0.308027,0.253553,0.257721,0.252416,0.251755,0.251755,0.257721,0.252416,0.293727,0.269059,0.251755,0.251755,0.293727,0.269059,0.251755,0.251755,0.251755,0.251755,0.251755,0.251755,,,,,,,0.308027,0.253553,0.257721,0.252416,0.293727,0.269059,0.251755,0.251755,0.251755,0.251755,0.121108,0.104766,0.106016,0.104425,0.116818,0.109418,0.104227,0.104227,0.055302,0.055302,31.058015,37.730509,37.12042,37.90056,32.570058,35.556117,38,38,38,38,,,,,,,,,,,6502,6502,0.251755,0.251755,0.251755,0.251755,0.251755,0.251755,0.251755,0.251755,0.104227,0.104227,38,38,, +9831,1,0.551258,1,0,0,1,1,RON,4,5,E Michigan/E I 94,RAMP,1427709,0,0.551,0,,1.09,4,0.73501,,0.73501,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.750013,,0.73501,,0.750013,,0.73689,,0.73501,,0.73689,,0.738536,,0.73501,,0.738536,,0.73501,,0.73501,,0.73501,,,,,,,,0.750013,,0.73689,,0.738536,,0.73501,,0.73501,,0.32423,,0.320293,,0.320787,,0.31973,,0.17089,,44.099872,,44.885241,,44.785202,,45,,45,,,,,,,,,,,,5160,,0.73501,,0.73501,,0.73501,,0.73501,,0.31973,,45,,, +9832,-1,0.1454,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.611,0.757,0,3.115725,3.7,5,,0.218101,,0.218101,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.218602,,0.218101,,0.218602,,0.218385,,0.218101,,0.218385,,0.222568,,0.218101,,0.222568,,0.218101,,0.218101,,0.218101,,,,,,,,0.218602,,0.218385,,0.222568,,0.218101,,0.218101,,0.091753,,0.091688,,0.092943,,0.091602,,0.048709,,39.908268,,39.947933,,39.197085,,40,,40,,,,,,,,,,,,7568,,0.218101,,0.218101,,0.218101,,0.218101,,0.091602,,40,, +9842,1,0.12157,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0.609,0.73,0,2.605073,3.7,5,0.182355,,0.182355,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.18307,,0.182355,,0.18307,,0.182495,,0.182355,,0.182495,,0.183435,,0.182355,,0.183435,,0.182355,,0.182355,,0.182355,,,,,,,,0.18307,,0.182495,,0.183435,,0.182355,,0.182355,,0.076804,,0.076631,,0.076913,,0.076589,,0.040726,,39.843799,,39.969247,,39.764589,,40,,40,,,,,,,,,,,,7568,,0.182355,,0.182355,,0.182355,,0.182355,,0.076589,,40,,, +9908,1,0.201469,1,0,0,1,1,RON,4,5,W Michigan/W I 94,RAMP,1427806,0,0.201,0,,1.09,4,0.268625,,0.268625,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.269745,,0.268625,,0.269745,,0.268873,,0.268625,,0.268873,,0.271366,,0.268625,,0.271366,,0.268625,,0.268625,,0.268625,,,,,,,,0.269745,,0.268873,,0.271366,,0.268625,,0.268625,,0.117188,,0.116926,,0.117674,,0.116852,,0.062455,,44.813192,,44.958496,,44.545586,,45,,45,,,,,,,,,,,,5160,,0.268625,,0.268625,,0.268625,,0.268625,,0.116852,,45,,, +10222,-1,0.342229,0,3,0,1,1,,4,5,W I 94,,1426110,27.345,27.687,0,,0.8,7.5,,0.293339,,0.293339,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.319547,,0.293339,,0.319547,,0.293525,,0.293339,,0.293525,,0.298239,,0.293339,,0.298239,,0.293339,,0.293339,,0.293339,,,,,,,,0.319547,,0.293525,,0.298239,,0.293339,,0.293339,,0.157465,,0.149659,,0.151073,,0.149603,,0.081646,,64.258812,,69.95555,,68.849958,,70,,70,,,,,,,,,,,,22704,,0.293339,,0.293339,,0.293339,,0.293339,,0.149603,,70,, +22022,0,0.226563,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.508,2.734,0,4.854932,3.7,5,0.339845,0.339845,0.339845,0.339845,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.339913,0.345172,0.339845,0.339845,0.339913,0.345172,0.339874,0.340068,0.339845,0.339845,0.339874,0.340068,0.341875,0.342398,0.339845,0.339845,0.341875,0.342398,0.339845,0.339845,0.339845,0.339845,0.339845,0.339845,,,,,,,0.339913,0.345172,0.339874,0.340068,0.341875,0.342398,0.339845,0.339845,0.339845,0.339845,0.142755,0.144333,0.142744,0.142802,0.143344,0.143501,0.142735,0.142735,0.075899,0.075899,39.991978,39.382697,39.99666,39.973766,39.76252,39.701833,40,40,40,40,,,,,,,,,,,7568,7568,0.339845,0.339845,0.339845,0.339845,0.339845,0.339845,0.339845,0.339845,0.142735,0.142735,40,40,, +30037,0,0.347331,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.442813,0.15,4,1.389325,1.389325,1.389325,1.389325,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,,,,,,,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,0.479317,0.479317,0.479317,0.479317,0.479317,0.479317,0.479317,0.479317,0.246605,0.246605,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,1.389325,0.479317,0.479317,15,15,, +9835,-1,0.121846,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.368,0.49,0,2.610986,3.7,5,,0.182769,,0.182769,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.188484,,0.182769,,0.188484,,0.184101,,0.182769,,0.184101,,0.201427,,0.182769,,0.201427,,0.182769,,0.182769,,0.182769,,,,,,,,0.188484,,0.184101,,0.201427,,0.182769,,0.182769,,0.078477,,0.077163,,0.08236,,0.076763,,0.040818,,38.787201,,39.710548,,36.294928,,40,,40,,,,,,,,,,,,7568,,0.182769,,0.182769,,0.182769,,0.182769,,0.076763,,40,, +10062,1,0.43594,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0.173,0.609,0,9.341578,3.7,5,0.65391,,0.65391,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.658258,,0.65391,,0.658258,,0.654923,,0.65391,,0.654923,,0.662071,,0.65391,,0.662071,,0.65391,,0.65391,,0.65391,,,,,,,,0.658258,,0.654923,,0.662071,,0.65391,,0.65391,,0.275947,,0.274946,,0.27709,,0.274642,,0.14604,,39.735824,,39.938135,,39.506979,,40,,40,,,,,,,,,,,,7568,,0.65391,,0.65391,,0.65391,,0.65391,,0.274642,,40,,, +19246,1,0.313185,1,0,0,1,1,ROF,4,5,W I 94/W Michigan,RAMP,1808208,0,0.313,0,,2.24,5,0.469777,,0.469777,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.470449,,0.469777,,0.470449,,0.469806,,0.469777,,0.469806,,0.470085,,0.469777,,0.470085,,0.469777,,0.469777,,0.469777,,,,,,,,0.470449,,0.469806,,0.470085,,0.469777,,0.469777,,0.197508,,0.197315,,0.197399,,0.197306,,0.104917,,39.9429,,39.997489,,39.973759,,40,,40,,,,,,,,,,,,5160,,0.469777,,0.469777,,0.469777,,0.469777,,0.197306,,40,,, +21963,1,0.09228,1,0,0,1,1,RON,4,5,E Michigan/W I 94,RAMP,4602346,0.009,0.101,0,,1.09,4,0.12304,,0.12304,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.12304,,0.12304,,0.12304,,0.12304,,0.12304,,0.12304,,0.123042,,0.12304,,0.123042,,0.12304,,0.12304,,0.12304,,,,,,,,0.12304,,0.12304,,0.123042,,0.12304,,0.12304,,0.053522,,0.053522,,0.053523,,0.053522,,0.028607,,44.999854,,44.999869,,44.999119,,45,,45,,,,,,,,,,,,5160,,0.12304,,0.12304,,0.12304,,0.12304,,0.053522,,45,,, +10056,-1,0.163115,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.205,0.368,0,3.495312,3.7,5,,0.244672,,0.244672,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.246486,,0.244672,,0.246486,,0.245258,,0.244672,,0.245258,,0.251371,,0.244672,,0.251371,,0.244672,,0.244672,,0.244672,,,,,,,,0.246486,,0.245258,,0.251371,,0.244672,,0.244672,,0.103306,,0.102938,,0.104772,,0.102762,,0.054643,,39.705661,,39.904429,,38.934013,,40,,40,,,,,,,,,,,,7568,,0.244672,,0.244672,,0.244672,,0.244672,,0.102762,,40,, +19245,1,0.371407,1,0,0,1,1,RON,4,5,W Michigan/E I 94,RAMP,1808210,0,0.371,0,,1.09,4,0.495209,,0.495209,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.495424,,0.495209,,0.495424,,0.495236,,0.495209,,0.495236,,0.495614,,0.495209,,0.495614,,0.495209,,0.495209,,0.495209,,,,,,,,0.495424,,0.495236,,0.495614,,0.495209,,0.495209,,0.21548,,0.215424,,0.215538,,0.215416,,0.115136,,44.9805,,44.997535,,44.963213,,45,,45,,,,,,,,,,,,5160,,0.495209,,0.495209,,0.495209,,0.495209,,0.215416,,45,,, +10053,-1,0.121487,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.49,0.611,0,2.603302,3.7,5,,0.182231,,0.182231,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.18265,,0.182231,,0.18265,,0.182469,,0.182231,,0.182469,,0.185964,,0.182231,,0.185964,,0.182231,,0.182231,,0.182231,,,,,,,,0.18265,,0.182469,,0.185964,,0.182231,,0.182231,,0.076663,,0.076608,,0.077657,,0.076537,,0.040698,,39.908268,,39.947933,,39.197085,,40,,40,,,,,,,,,,,,7568,,0.182231,,0.182231,,0.182231,,0.182231,,0.076537,,40,, +21181,1,0.008736,1,0,0,1,3,RSF,4,5,E Michigan/W I 94,RAMP,4602346,0,0.009,0,,3.7,5,0.017473,,0.017473,,30,,10000,,2270,,5000,,3226,,3440,,3436,,0.017473,,0.017473,,0.017473,,0.017473,,0.017473,,0.017473,,0.017473,,0.017473,,0.017473,,0.017473,,0.017473,,0.017473,,,,,,,,0.017473,,0.017473,,0.017473,,0.017473,,0.017473,,0.006814,,0.006814,,0.006815,,0.006814,,0.003582,,29.999896,,29.999909,,29.999015,,30,,30,,,,,,,,,,,,3440,,0.017473,,0.017473,,0.017473,,0.017473,,0.006814,,30,,, +26689,0,0.49881,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.688788,0.15,4,1.99524,1.99524,1.99524,1.99524,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,,,,,,,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,0.688358,0.688358,0.688358,0.688358,0.688358,0.688358,0.688358,0.688358,0.354155,0.354155,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,1.99524,0.688358,0.688358,15,15,, +9716,1,0.312518,1,0,0,1,1,ROF,3,5,W I 94/E Michigan,RAMP,1427805,0,0.312,0,,2.24,5,0.535745,,0.535745,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.605481,,0.535745,,0.605481,,0.539251,,0.535745,,0.539251,,0.581686,,0.535745,,0.581686,,0.535745,,0.535745,,0.535745,,,,,,,,0.605481,,0.539251,,0.581686,,0.535745,,0.535745,,0.237897,,0.218028,,0.230759,,0.216977,,0.114739,,30.968888,,34.772438,,32.235711,,35,,35,,,,,,,,,,,,5074,,0.535745,,0.535745,,0.535745,,0.535745,,0.216977,,35,,, +10051,-1,0.215573,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.757,0.972,0,4.619428,3.7,5,,0.32336,,0.32336,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.335298,,0.32336,,0.335298,,0.327387,,0.32336,,0.327387,,0.392722,,0.32336,,0.392722,,0.32336,,0.32336,,0.32336,,,,,,,,0.335298,,0.327387,,0.392722,,0.32336,,0.32336,,0.139393,,0.137019,,0.15662,,0.135811,,0.072217,,38.575849,,39.508021,,32.935223,,40,,40,,,,,,,,,,,,7568,,0.32336,,0.32336,,0.32336,,0.32336,,0.135811,,40,, +10057,1,0.241942,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0.73,0.972,0,5.184463,3.7,5,0.362912,,0.362912,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.500015,,0.362912,,0.500015,,0.375368,,0.362912,,0.375368,,0.491017,,0.362912,,0.491017,,0.362912,,0.362912,,0.362912,,,,,,,,0.500015,,0.375368,,0.491017,,0.362912,,0.362912,,0.193554,,0.15616,,0.190855,,0.152423,,0.08105,,29.032134,,38.672717,,29.564127,,40,,40,,,,,,,,,,,,7568,,0.362912,,0.362912,,0.362912,,0.362912,,0.152423,,40,,, +25295,0,0.142313,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.049562,0.15,4,0.569252,0.569252,0.569252,0.569252,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,,,,,,,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.196392,0.196392,0.196392,0.196392,0.196392,0.196392,0.196392,0.196392,0.101042,0.101042,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.569252,0.196392,0.196392,15,15,, +9795,0,0.261731,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.274,0.535,0,5.608525,4.5,4.5,0.41326,0.41326,0.41326,0.41326,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.526158,0.420806,0.41326,0.41326,0.526158,0.420806,0.426714,0.418025,0.41326,0.41326,0.426714,0.418025,0.499399,0.459327,0.41326,0.41326,0.499399,0.459327,0.41326,0.41326,0.41326,0.41326,0.41326,0.41326,,,,,,,0.526158,0.420806,0.426714,0.418025,0.499399,0.459327,0.41326,0.41326,0.41326,0.41326,0.204959,0.173353,0.175126,0.172519,0.196931,0.18491,0.17109,0.17109,0.090779,0.090779,29.846306,37.31858,36.801837,37.566796,31.445522,34.188875,38,38,38,38,,,,,,,,,,,3406,3406,0.41326,0.41326,0.41326,0.41326,0.41326,0.41326,0.41326,0.41326,0.17109,0.17109,38,38,, +10011,0,0.114137,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.159,0.274,0,2.445783,4.5,4.5,0.180216,0.180216,0.180216,0.180216,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.229449,0.183506,0.180216,0.180216,0.229449,0.183506,0.186083,0.182294,0.180216,0.180216,0.186083,0.182294,0.21778,0.200305,0.180216,0.180216,0.21778,0.200305,0.180216,0.180216,0.180216,0.180216,0.180216,0.180216,,,,,,,0.229449,0.183506,0.186083,0.182294,0.21778,0.200305,0.180216,0.180216,0.180216,0.180216,0.089379,0.075596,0.076369,0.075233,0.085878,0.080636,0.074609,0.074609,0.039587,0.039587,29.846306,37.31858,36.801837,37.566796,31.445522,34.188875,38,38,38,38,,,,,,,,,,,3406,3406,0.180216,0.180216,0.180216,0.180216,0.180216,0.180216,0.180216,0.180216,0.074609,0.074609,38,38,, +11552,0,0.25021,1,1,0,2,5,,4,5,Congress,St,1434509,0,0.25,0,5.361646,5.8,4.5,0.556023,0.556023,0.556023,0.556023,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.55856,0.556197,0.556023,0.556023,0.55856,0.556197,0.556086,0.556221,0.556023,0.556023,0.556086,0.556221,0.574071,0.557729,0.556023,0.556023,0.574071,0.557729,0.556023,0.556023,0.556023,0.556023,0.556023,0.556023,,,,,,,0.55856,0.556197,0.556086,0.556221,0.574071,0.557729,0.556023,0.556023,0.556023,0.556023,0.212606,0.211897,0.211864,0.211904,0.217259,0.212357,0.211845,0.211845,0.110926,0.110926,26.877322,26.991542,26.996929,26.990362,26.151156,26.917386,27,27,27,27,,,,,,,,,,,2580,2580,0.556023,0.556023,0.556023,0.556023,0.556023,0.556023,0.556023,0.556023,0.211845,0.211845,27,27,, +21743,0,0.124948,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.734,2.859,0,2.677466,3.7,5,0.187423,0.187423,0.187423,0.187423,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.187619,0.193044,0.187423,0.187423,0.187619,0.193044,0.187583,0.18803,0.187423,0.187423,0.187583,0.18803,0.192017,0.192386,0.187423,0.187423,0.192017,0.192386,0.187423,0.187423,0.187423,0.187423,0.187423,0.187423,,,,,,,0.187619,0.193044,0.187583,0.18803,0.192017,0.192386,0.187423,0.187423,0.187423,0.187423,0.078777,0.080404,0.078766,0.0789,0.080096,0.080207,0.078717,0.078717,0.041858,0.041858,39.95806,38.835121,39.965838,39.870709,39.04288,38.967979,40,40,40,40,,,,,,,,,,,7568,7568,0.187423,0.187423,0.187423,0.187423,0.187423,0.187423,0.187423,0.187423,0.078717,0.078717,40,40,, +9977,0,0.338569,1,1,1,2,3,,4,5,Michigan,Ave,1427804,0.644,0.982,0,7.255049,3.7,5,0.507853,0.507853,0.507853,0.507853,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.566213,0.645075,0.507853,0.507853,0.566213,0.645075,0.527689,0.53125,0.507853,0.507853,0.527689,0.53125,0.675248,0.625776,0.507853,0.507853,0.675248,0.625776,0.507853,0.507853,0.507853,0.507853,0.507853,0.507853,,,,,,,0.566213,0.645075,0.527689,0.53125,0.675248,0.625776,0.507853,0.507853,0.507853,0.507853,0.230806,0.254465,0.219249,0.220317,0.263517,0.248675,0.213298,0.213298,0.113421,0.113421,35.877202,31.491134,38.496386,38.238396,30.083949,32.462313,40,40,40,40,,,,,,,,,,,4162,4162,0.507853,0.507853,0.507853,0.507853,0.507853,0.507853,0.507853,0.507853,0.213298,0.213298,40,40,, +29486,0,0.377516,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.089622,0.15,4,2.265094,2.265094,2.265094,2.265094,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,,,,,,,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,0.747481,0.747481,0.747481,0.747481,0.747481,0.747481,0.747481,0.747481,0.381291,0.381291,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,2.265094,0.747481,0.747481,10,10,, +30038,0,0.614504,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.167933,0.15,4,3.687021,3.687021,3.687021,3.687021,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,,,,,,,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,1.216717,1.216717,1.216717,1.216717,1.216717,1.216717,1.216717,1.216717,0.620649,0.620649,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,3.687021,1.216717,1.216717,10,10,, +9781,0,0.173108,1,1,1,2,3,,4,5,Michigan,Ave,1427804,0.273,0.446,0,3.709464,3.7,5,0.259663,0.259663,0.259663,0.259663,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.293427,0.353178,0.259663,0.259663,0.293427,0.353178,0.273377,0.279314,0.259663,0.259663,0.273377,0.279314,0.406555,0.362402,0.259663,0.259663,0.406555,0.362402,0.259663,0.259663,0.259663,0.259663,0.259663,0.259663,,,,,,,0.293427,0.353178,0.273377,0.279314,0.406555,0.362402,0.259663,0.259663,0.259663,0.259663,0.119188,0.137113,0.113173,0.114954,0.153126,0.13988,0.109058,0.109058,0.057991,0.057991,35.397247,29.408684,37.993323,37.185705,25.54758,28.660194,40,40,40,40,,,,,,,,,,,4162,4162,0.259663,0.259663,0.259663,0.259663,0.259663,0.259663,0.259663,0.259663,0.109058,0.109058,40,40,, +9906,0,0.284441,1,1,0,2,5,,4,5,Mansfield,St,1427902,0,0.284,0,6.095156,5.8,4.5,0.63209,0.63209,0.63209,0.63209,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.634281,0.632349,0.63209,0.63209,0.634281,0.632349,0.632229,0.632262,0.63209,0.63209,0.632229,0.632262,0.632705,0.633855,0.63209,0.63209,0.632705,0.633855,0.63209,0.63209,0.63209,0.63209,0.63209,0.63209,,,,,,,0.634281,0.632349,0.632229,0.632262,0.632705,0.633855,0.63209,0.63209,0.63209,0.63209,0.241484,0.240904,0.240868,0.240878,0.241011,0.241356,0.240826,0.240826,0.126102,0.126102,26.906738,26.988945,26.994075,26.992661,26.973762,26.924814,27,27,27,27,,,,,,,,,,,2580,2580,0.63209,0.63209,0.63209,0.63209,0.63209,0.63209,0.63209,0.63209,0.240826,0.240826,27,27,, +26679,0,0.208072,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.458695,0.15,4,0.83229,0.83229,0.83229,0.83229,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,,,,,,,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.28714,0.28714,0.28714,0.28714,0.28714,0.28714,0.28714,0.28714,0.147731,0.147731,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.83229,0.28714,0.28714,15,15,, +26681,0,0.214087,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.587568,0.15,4,0.856346,0.856346,0.856346,0.856346,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,,,,,,,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.295439,0.295439,0.295439,0.295439,0.295439,0.295439,0.295439,0.295439,0.152001,0.152001,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.856346,0.295439,0.295439,15,15,, +9992,0,0.192513,1,1,1,2,3,,3,5,Michigan,Ave,1427804,0.446,0.639,0,4.125286,5,5,0.330023,0.330023,0.330023,0.330023,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.419092,0.479462,0.330023,0.330023,0.419092,0.479462,0.353654,0.359285,0.330023,0.330023,0.353654,0.359285,0.521905,0.49228,0.330023,0.330023,0.521905,0.49228,0.330023,0.330023,0.330023,0.330023,0.330023,0.330023,,,,,,,0.419092,0.479462,0.353654,0.359285,0.521905,0.49228,0.330023,0.330023,0.330023,0.330023,0.16038,0.178491,0.140749,0.142438,0.191224,0.182336,0.133659,0.133659,0.07068,0.07068,27.56152,24.091192,32.661328,32.149452,22.131992,23.463892,35,35,35,35,,,,,,,,,,,4162,4162,0.330023,0.330023,0.330023,0.330023,0.330023,0.330023,0.330023,0.330023,0.133659,0.133659,35,35,, +9779,0,0.004776,1,1,1,2,3,,3,5,Michigan,Ave,1427804,0.639,0.644,0,0.102349,5,5,0.008188,0.008188,0.008188,0.008188,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.011707,0.013326,0.008188,0.008188,0.011707,0.013326,0.009057,0.009224,0.008188,0.008188,0.009057,0.009224,0.015079,0.014238,0.008188,0.008188,0.015079,0.014238,0.008188,0.008188,0.008188,0.008188,0.008188,0.008188,,,,,,,0.011707,0.013326,0.009057,0.009224,0.015079,0.014238,0.008188,0.008188,0.008188,0.008188,0.004372,0.004857,0.003577,0.003627,0.005383,0.005131,0.003316,0.003316,0.001754,0.001754,24.478111,21.505358,31.643112,31.066998,19.00535,20.128162,35,35,35,35,,,,,,,,,,,4162,4162,0.008188,0.008188,0.008188,0.008188,0.008188,0.008188,0.008188,0.008188,0.003316,0.003316,35,35,, +9895,0,0.283008,1,1,0,2,5,,3,5,1st,Ave,1427909,0.423,0.706,0,6.064448,8,4.5,0.679218,0.679218,0.679218,0.679218,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.683442,0.680311,0.679218,0.679218,0.683442,0.680311,0.679478,0.679452,0.679218,0.679218,0.679478,0.679452,0.679809,0.718445,0.679218,0.679218,0.679809,0.718445,0.679218,0.679218,0.679218,0.679218,0.679218,0.679218,,,,,,,0.683442,0.680311,0.679478,0.679452,0.679809,0.718445,0.679218,0.679218,0.679218,0.679218,0.255974,0.255035,0.254785,0.254777,0.254884,0.266475,0.254707,0.254707,0.133014,0.133014,24.845502,24.959822,24.99043,24.991384,24.978289,23.635018,25,25,25,25,,,,,,,,,,,2408,2408,0.679218,0.679218,0.679218,0.679218,0.679218,0.679218,0.679218,0.679218,0.254707,0.254707,25,25,, +26277,0,0.136977,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.935222,0.15,4,0.821862,0.821862,0.821862,0.821862,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,,,,,,,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.271214,0.271214,0.271214,0.271214,0.271214,0.271214,0.271214,0.271214,0.138347,0.138347,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.821862,0.271214,0.271214,10,10,, +9682,0,0.07462,1,1,0,2,5,,3,5,1st,Ave,1427909,0.349,0.423,0,1.598992,8,4.5,0.179087,0.179087,0.179087,0.179087,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.17971,0.179271,0.179087,0.179087,0.17971,0.179271,0.179116,0.179122,0.179087,0.179087,0.179116,0.179122,0.179155,0.186393,0.179087,0.179087,0.179155,0.186393,0.179087,0.179087,0.179087,0.179087,0.179087,0.179087,,,,,,,0.17971,0.179271,0.179116,0.179122,0.179155,0.186393,0.179087,0.179087,0.179087,0.179087,0.067345,0.067213,0.067166,0.067168,0.067178,0.069349,0.067158,0.067158,0.035071,0.035071,24.913288,24.974359,24.995929,24.995198,24.990473,24.020126,25,25,25,25,,,,,,,,,,,2408,2408,0.179087,0.179087,0.179087,0.179087,0.179087,0.179087,0.179087,0.179087,0.067158,0.067158,25,25,, +9773,0,0.105928,2,2,0,2,3,,3,5,Michigan,Ave,1427804,0.982,1.088,0,2.269884,5,5,0.181591,0.181591,0.181591,0.181591,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.183011,0.18493,0.181591,0.181591,0.183011,0.18493,0.182073,0.18216,0.181591,0.181591,0.182073,0.18216,0.18566,0.184457,0.181591,0.181591,0.18566,0.184457,0.181591,0.181591,0.181591,0.181591,0.181591,0.181591,,,,,,,0.183011,0.18493,0.182073,0.18216,0.18566,0.184457,0.181591,0.181591,0.181591,0.181591,0.07397,0.074546,0.073689,0.073715,0.074765,0.074404,0.073544,0.073544,0.038891,0.038891,34.728433,34.368087,34.907271,34.89068,34.23293,34.456109,35,35,35,35,,,,,,,,,,,7568,7568,0.181591,0.181591,0.181591,0.181591,0.181591,0.181591,0.181591,0.181591,0.073544,0.073544,35,35,, +9652,0,0.266452,2,2,0,2,3,,3,5,Packard,Rd,1428902,0.824,1.091,0,5.709694,5,5,0.456776,0.456776,0.456776,0.456776,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.460604,0.493018,0.456776,0.456776,0.460604,0.493018,0.459828,0.457784,0.456776,0.456776,0.459828,0.457784,0.513983,0.469441,0.456776,0.456776,0.513983,0.469441,0.456776,0.456776,0.456776,0.456776,0.456776,0.456776,,,,,,,0.460604,0.493018,0.459828,0.457784,0.513983,0.469441,0.456776,0.456776,0.456776,0.456776,0.186143,0.195867,0.18591,0.185297,0.202156,0.188794,0.184994,0.184994,0.097826,0.097826,34.709059,32.427093,34.767624,34.922917,31.104409,34.055696,35,35,35,35,,,,,,,,,,,7568,7568,0.456776,0.456776,0.456776,0.456776,0.456776,0.456776,0.456776,0.456776,0.184994,0.184994,35,35,, +9785,0,0.580678,2,2,0,2,4,,3,5,Hewitt,Rd,1427803,1.647,2.227,0,12.443107,6,4.5,1.055779,1.055779,1.055779,1.055779,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,1.089581,1.055784,1.055779,1.055779,1.089581,1.055784,1.055944,1.056191,1.055779,1.055779,1.055944,1.056191,1.055848,1.083762,1.055779,1.055779,1.055848,1.083762,1.055779,1.055779,1.055779,1.055779,1.055779,1.055779,,,,,,,1.089581,1.055784,1.055944,1.056191,1.055848,1.083762,1.055779,1.055779,1.055779,1.055779,0.431396,0.421257,0.421305,0.421379,0.421277,0.429651,0.421256,0.421256,0.222241,0.222241,31.976245,32.999834,32.994839,32.987119,32.997834,32.147937,33,33,33,33,,,,,,,,,,,5160,5160,1.055779,1.055779,1.055779,1.055779,1.055779,1.055779,1.055779,1.055779,0.421256,0.421256,33,33,, +9851,0,0.194428,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0.355,0.55,0,4.166319,8,4.5,0.466628,0.466628,0.466628,0.466628,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.466652,0.466628,0.466628,0.466628,0.466652,0.466628,0.466628,0.46663,0.466628,0.466628,0.466628,0.46663,0.467274,0.466655,0.466628,0.466628,0.467274,0.466655,0.466628,0.466628,0.466628,0.466628,0.466628,0.466628,,,,,,,0.466652,0.466628,0.466628,0.46663,0.467274,0.466655,0.466628,0.466628,0.466628,0.466628,0.174993,0.174986,0.174985,0.174986,0.175179,0.174994,0.174985,0.174985,0.091381,0.091381,24.998717,24.999966,24.999987,24.999894,24.965409,24.998543,25,25,25,25,,,,,,,,,,,2408,2408,0.466628,0.466628,0.466628,0.466628,0.466628,0.466628,0.466628,0.466628,0.174985,0.174985,25,25,, +10126,0,0.067304,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.681,5.748,0,1.442237,5,5,0.115379,0.115379,0.115379,0.115379,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.118898,0.13127,0.115379,0.115379,0.118898,0.13127,0.119054,0.116952,0.115379,0.115379,0.119054,0.116952,0.140861,0.121472,0.115379,0.115379,0.140861,0.121472,0.115379,0.115379,0.115379,0.115379,0.115379,0.115379,,,,,,,0.118898,0.13127,0.119054,0.116952,0.140861,0.121472,0.115379,0.115379,0.115379,0.115379,0.047784,0.051496,0.047831,0.0472,0.054373,0.048556,0.046728,0.046728,0.02471,0.02471,33.964018,30.763062,33.919715,34.529167,28.668509,33.244495,35,35,35,35,,,,,,,,,,,7568,7568,0.115379,0.115379,0.115379,0.115379,0.115379,0.115379,0.115379,0.115379,0.046728,0.046728,35,35,, +10424,0,0.204399,1,1,0,2,5,,3,5,Oakwood,St,1429009,0.841,1.045,0,4.379977,8,4.5,0.490557,0.490557,0.490557,0.490557,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.490607,0.503858,0.490557,0.490557,0.490607,0.503858,0.491873,0.492328,0.490557,0.490557,0.491873,0.492328,0.509487,0.491754,0.490557,0.490557,0.509487,0.491754,0.490557,0.490557,0.490557,0.490557,0.490557,0.490557,,,,,,,0.490607,0.503858,0.491873,0.492328,0.509487,0.491754,0.490557,0.490557,0.490557,0.490557,0.183974,0.187949,0.184354,0.18449,0.189638,0.184318,0.183959,0.183959,0.096068,0.096068,24.997487,24.340048,24.933116,24.9101,24.071153,24.939185,25,25,25,25,,,,,,,,,,,2408,2408,0.490557,0.490557,0.490557,0.490557,0.490557,0.490557,0.490557,0.490557,0.183959,0.183959,25,25,, +21810,0,0.377457,1,1,1,2,4,,3,5,Huron River,Dr,4603250,0.816,1.193,0,8.088358,6,4.5,0.686285,0.686285,0.686285,0.686285,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.777012,0.995865,0.686285,0.686285,0.777012,0.995865,0.786649,0.81307,0.686285,0.686285,0.786649,0.81307,1.141433,0.905452,0.686285,0.686285,1.141433,0.905452,0.686285,0.686285,0.686285,0.686285,0.686285,0.686285,,,,,,,0.777012,0.995865,0.786649,0.81307,1.141433,0.905452,0.686285,0.686285,0.686285,0.686285,0.301046,0.366702,0.303937,0.311863,0.410372,0.339578,0.273828,0.273828,0.144463,0.144463,29.146796,22.741446,28.789733,27.85417,19.8412,25.012275,33,33,33,33,,,,,,,,,,,2838,2838,0.686285,0.686285,0.686285,0.686285,0.686285,0.686285,0.686285,0.686285,0.273828,0.273828,33,33,, +25300,0,0.144337,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.092926,0.15,4,0.866019,0.866019,0.866019,0.866019,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,,,,,,,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.285786,0.285786,0.285786,0.285786,0.285786,0.285786,0.285786,0.285786,0.14578,0.14578,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.866019,0.285786,0.285786,10,10,, +25303,0,0.320794,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.874159,0.15,4,1.924765,1.924765,1.924765,1.924765,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,,,,,,,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,0.635172,0.635172,0.635172,0.635172,0.635172,0.635172,0.635172,0.635172,0.324002,0.324002,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,1.924765,0.635172,0.635172,10,10,, +25304,0,0.484024,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.37195,0.15,4,2.904146,2.904146,2.904146,2.904146,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,,,,,,,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,0.958368,0.958368,0.958368,0.958368,0.958368,0.958368,0.958368,0.958368,0.488865,0.488865,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,2.904146,0.958368,0.958368,10,10,, +26697,0,0.409547,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.77601,0.15,4,1.638189,1.638189,1.638189,1.638189,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,,,,,,,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,0.565175,0.565175,0.565175,0.565175,0.565175,0.565175,0.565175,0.565175,0.290778,0.290778,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,1.638189,0.565175,0.565175,15,15,, +26807,0,0.326266,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.991425,0.15,4,1.305066,1.305066,1.305066,1.305066,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,,,,,,,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,0.450248,0.450248,0.450248,0.450248,0.450248,0.450248,0.450248,0.450248,0.231649,0.231649,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,1.305066,0.450248,0.450248,15,15,, +9769,0,0.352447,2,2,1,2,3,,4,5,Packard,Rd,1428902,0.334,0.686,0,7.552431,3.7,5,0.52867,0.52867,0.52867,0.52867,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.532853,0.544765,0.52867,0.52867,0.532853,0.544765,0.530957,0.53061,0.52867,0.52867,0.530957,0.53061,0.561584,0.540974,0.52867,0.52867,0.561584,0.540974,0.52867,0.52867,0.52867,0.52867,0.52867,0.52867,,,,,,,0.532853,0.544765,0.530957,0.53061,0.561584,0.540974,0.52867,0.52867,0.52867,0.52867,0.223296,0.22687,0.222728,0.222623,0.231915,0.225733,0.222041,0.222041,0.11807,0.11807,39.685986,38.818234,39.827686,39.853777,37.65567,39.090229,40,40,40,40,,,,,,,,,,,7946,7946,0.52867,0.52867,0.52867,0.52867,0.52867,0.52867,0.52867,0.52867,0.222041,0.222041,40,40,, +9901,0,0.178614,2,2,0,2,3,,4,5,Washtenaw,Ave,1427706,5.149,5.327,0,3.827445,3.7,5,0.267921,0.267921,0.267921,0.267921,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.275292,0.306415,0.267921,0.267921,0.275292,0.306415,0.275642,0.273893,0.267921,0.267921,0.275642,0.273893,0.305726,0.288742,0.267921,0.267921,0.305726,0.288742,0.267921,0.267921,0.267921,0.267921,0.267921,0.267921,,,,,,,0.275292,0.306415,0.275642,0.273893,0.305726,0.288742,0.267921,0.267921,0.267921,0.267921,0.114738,0.124075,0.114843,0.114318,0.123868,0.118773,0.112527,0.112527,0.059836,0.059836,38.928956,34.974988,38.879629,39.127903,35.05378,37.115636,40,40,40,40,,,,,,,,,,,7568,7568,0.267921,0.267921,0.267921,0.267921,0.267921,0.267921,0.267921,0.267921,0.112527,0.112527,40,40,, +10001,0,0.111342,2,2,1,2,4,,4,5,Hewitt,Rd,1427803,1.19,1.302,0,2.38589,4.5,4.5,0.175802,0.175802,0.175802,0.175802,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.180148,0.175845,0.175802,0.175802,0.180148,0.175845,0.176002,0.175882,0.175802,0.175802,0.176002,0.175882,0.176458,0.177443,0.175802,0.175802,0.176458,0.177443,0.175802,0.175802,0.175802,0.175802,0.175802,0.175802,,,,,,,0.180148,0.175845,0.176002,0.175882,0.176458,0.177443,0.175802,0.175802,0.175802,0.175802,0.074086,0.072795,0.072842,0.072806,0.072979,0.073274,0.072782,0.072782,0.038618,0.038618,37.083395,37.99081,37.956918,37.982913,37.858751,37.648592,38,38,38,38,,,,,,,,,,,6502,6502,0.175802,0.175802,0.175802,0.175802,0.175802,0.175802,0.175802,0.175802,0.072782,0.072782,38,38,, +25308,0,0.105911,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.269512,0.15,4,0.423642,0.423642,0.423642,0.423642,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,,,,,,,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.146157,0.146157,0.146157,0.146157,0.146157,0.146157,0.146157,0.146157,0.075197,0.075197,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.423642,0.146157,0.146157,15,15,, +26683,0,0.365877,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.840232,0.15,4,1.46351,1.46351,1.46351,1.46351,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,,,,,,,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,0.504911,0.504911,0.504911,0.504911,0.504911,0.504911,0.504911,0.504911,0.259773,0.259773,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,1.46351,0.504911,0.504911,15,15,, +26696,0,0.172982,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.70676,0.15,4,0.691929,0.691929,0.691929,0.691929,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,,,,,,,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.238715,0.238715,0.238715,0.238715,0.238715,0.238715,0.238715,0.238715,0.122817,0.122817,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.691929,0.238715,0.238715,15,15,, +9968,0,0.086119,2,2,1,2,3,,4,5,Packard,Rd,1428902,0.247,0.334,0,1.845413,3.7,5,0.129179,0.129179,0.129179,0.129179,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.131047,0.13949,0.129179,0.129179,0.131047,0.13949,0.130413,0.130341,0.129179,0.129179,0.130413,0.130341,0.14799,0.135708,0.129179,0.129179,0.14799,0.135708,0.129179,0.129179,0.129179,0.129179,0.129179,0.129179,,,,,,,0.131047,0.13949,0.130413,0.130341,0.14799,0.135708,0.129179,0.129179,0.129179,0.129179,0.054816,0.057348,0.054625,0.054604,0.059899,0.056214,0.054255,0.054255,0.02885,0.02885,39.429821,37.043287,39.621504,39.643318,34.915487,38.075635,40,40,40,40,,,,,,,,,,,7946,7946,0.129179,0.129179,0.129179,0.129179,0.129179,0.129179,0.129179,0.129179,0.054255,0.054255,40,40,, +10133,0,0.149542,2,2,0,2,3,,4,5,Washtenaw,Ave,1427706,4.999,5.149,0,3.204469,3.7,5,0.224313,0.224313,0.224313,0.224313,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.228456,0.249585,0.224313,0.224313,0.228456,0.249585,0.228422,0.227794,0.224313,0.224313,0.228422,0.227794,0.252809,0.235664,0.224313,0.224313,0.252809,0.235664,0.224313,0.224313,0.224313,0.224313,0.224313,0.224313,,,,,,,0.228456,0.249585,0.228422,0.227794,0.252809,0.235664,0.224313,0.224313,0.224313,0.224313,0.095454,0.101793,0.095444,0.095256,0.10276,0.097617,0.094211,0.094211,0.050097,0.050097,39.274644,35.949663,39.280463,39.388725,35.491216,38.07329,40,40,40,40,,,,,,,,,,,7568,7568,0.224313,0.224313,0.224313,0.224313,0.224313,0.224313,0.224313,0.224313,0.094211,0.094211,40,40,, +26695,0,0.225662,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.835606,0.15,4,0.902646,0.902646,0.902646,0.902646,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,,,,,,,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.311413,0.311413,0.311413,0.311413,0.311413,0.311413,0.311413,0.311413,0.16022,0.16022,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.902646,0.311413,0.311413,15,15,, +26698,0,0.336401,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.208593,0.15,4,1.345604,1.345604,1.345604,1.345604,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,,,,,,,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,0.464233,0.464233,0.464233,0.464233,0.464233,0.464233,0.464233,0.464233,0.238845,0.238845,15,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,1.345604,0.464233,0.464233,15,15,, +9791,0,0.39537,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.795,1.19,0,8.472205,4.5,4.5,0.624268,0.624268,0.624268,0.624268,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.806022,0.630558,0.624268,0.624268,0.806022,0.630558,0.662312,0.627901,0.624268,0.624268,0.662312,0.627901,0.741622,0.774613,0.624268,0.624268,0.741622,0.774613,0.624268,0.624268,0.624268,0.624268,0.624268,0.624268,,,,,,,0.806022,0.630558,0.662312,0.627901,0.741622,0.774613,0.624268,0.624268,0.624268,0.624268,0.312973,0.260334,0.26986,0.259537,0.293653,0.30355,0.258447,0.258447,0.137131,0.137131,29.431185,37.62092,35.817214,37.780149,31.986894,30.624547,38,38,38,38,,,,,,,,,,,3406,3406,0.624268,0.624268,0.624268,0.624268,0.624268,0.624268,0.624268,0.624268,0.258447,0.258447,38,38,, +26489,0,0.324914,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.962435,0.15,4,1.299654,1.299654,1.299654,1.299654,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,,,,,,,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,0.448381,0.448381,0.448381,0.448381,0.448381,0.448381,0.448381,0.448381,0.230689,0.230689,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,1.299654,0.448381,0.448381,15,15,, +26491,0,0.263035,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.636463,0.15,4,1.05214,1.05214,1.05214,1.05214,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,,,,,,,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,0.362988,0.362988,0.362988,0.362988,0.362988,0.362988,0.362988,0.362988,0.186755,0.186755,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,1.05214,0.362988,0.362988,15,15,, +9873,0,0.138447,2,2,0,2,3,,4,5,Packard,Rd,1428902,0.686,0.824,0,2.966721,3.7,5,0.207671,0.207671,0.207671,0.207671,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.210186,0.223167,0.207671,0.207671,0.210186,0.223167,0.209359,0.208285,0.207671,0.207671,0.209359,0.208285,0.232036,0.214697,0.207671,0.207671,0.232036,0.214697,0.207671,0.207671,0.207671,0.207671,0.207671,0.207671,,,,,,,0.210186,0.223167,0.209359,0.208285,0.232036,0.214697,0.207671,0.207671,0.207671,0.207671,0.087976,0.091871,0.087728,0.087406,0.094531,0.08933,0.087222,0.087222,0.04638,0.04638,39.521337,37.222365,39.677358,39.882025,35.799777,38.690936,40,40,40,40,,,,,,,,,,,7568,7568,0.207671,0.207671,0.207671,0.207671,0.207671,0.207671,0.207671,0.207671,0.087222,0.087222,40,40,, +9900,0,0.204849,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.476,5.681,0,4.389615,5,5,0.351169,0.351169,0.351169,0.351169,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.362181,0.405677,0.351169,0.351169,0.362181,0.405677,0.364803,0.357096,0.351169,0.351169,0.364803,0.357096,0.442141,0.372211,0.351169,0.351169,0.442141,0.372211,0.351169,0.351169,0.351169,0.351169,0.351169,0.351169,,,,,,,0.362181,0.405677,0.364803,0.357096,0.442141,0.372211,0.351169,0.351169,0.351169,0.351169,0.145527,0.158576,0.146314,0.144002,0.169515,0.148536,0.142224,0.142224,0.075209,0.075209,33.935866,30.297339,33.691923,34.419046,27.798654,33.021403,35,35,35,35,,,,,,,,,,,7568,7568,0.351169,0.351169,0.351169,0.351169,0.351169,0.351169,0.351169,0.351169,0.142224,0.142224,35,35,, +10000,0,0.215631,2,2,0,2,4,,3,5,Hewitt,Rd,1427803,1.431,1.647,0,4.620659,6,4.5,0.392056,0.392056,0.392056,0.392056,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.421109,0.392453,0.392056,0.392056,0.421109,0.392453,0.392545,0.39294,0.392056,0.392056,0.392545,0.39294,0.393625,0.421596,0.392056,0.392056,0.393625,0.421596,0.392056,0.392056,0.392056,0.392056,0.392056,0.392056,,,,,,,0.421109,0.392453,0.392545,0.39294,0.393625,0.421596,0.392056,0.392056,0.392056,0.392056,0.165146,0.156549,0.156577,0.156695,0.156901,0.165292,0.15643,0.15643,0.082528,0.082528,30.723265,32.966608,32.958895,32.925781,32.868477,30.687754,33,33,33,33,,,,,,,,,,,5160,5160,0.392056,0.392056,0.392056,0.392056,0.392056,0.392056,0.392056,0.392056,0.15643,0.15643,33,33,, +9787,0,0.129289,2,2,1,2,4,,4,5,Hewitt,Rd,1427803,1.302,1.431,0,2.770489,4.5,4.5,0.204141,0.204141,0.204141,0.204141,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.209187,0.204191,0.204141,0.204141,0.209187,0.204191,0.204373,0.204233,0.204141,0.204141,0.204373,0.204233,0.204903,0.206047,0.204141,0.204141,0.204903,0.206047,0.204141,0.204141,0.204141,0.204141,0.204141,0.204141,,,,,,,0.209187,0.204191,0.204373,0.204233,0.204903,0.206047,0.204141,0.204141,0.204141,0.204141,0.086028,0.084529,0.084584,0.084542,0.084743,0.085086,0.084514,0.084514,0.044843,0.044843,37.083395,37.99081,37.956918,37.982913,37.858751,37.648592,38,38,38,38,,,,,,,,,,,6502,6502,0.204141,0.204141,0.204141,0.204141,0.204141,0.204141,0.204141,0.204141,0.084514,0.084514,38,38,, +10132,0,0.14889,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.327,5.476,0,3.190492,5,5,0.255239,0.255239,0.255239,0.255239,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.264768,0.297907,0.255239,0.255239,0.264768,0.297907,0.267469,0.260694,0.255239,0.255239,0.267469,0.260694,0.333884,0.274184,0.255239,0.255239,0.333884,0.274184,0.255239,0.255239,0.255239,0.255239,0.255239,0.255239,,,,,,,0.264768,0.297907,0.267469,0.260694,0.333884,0.274184,0.255239,0.255239,0.255239,0.255239,0.10623,0.116172,0.107041,0.105008,0.126965,0.109055,0.103372,0.103372,0.054664,0.054664,33.74043,29.98714,33.399619,34.267673,26.755901,32.581716,35,35,35,35,,,,,,,,,,,7568,7568,0.255239,0.255239,0.255239,0.255239,0.255239,0.255239,0.255239,0.255239,0.103372,0.103372,35,35,, +25306,0,0.105878,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.268822,0.15,4,0.423513,0.423513,0.423513,0.423513,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,,,,,,,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.146112,0.146112,0.146112,0.146112,0.146112,0.146112,0.146112,0.146112,0.075174,0.075174,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.423513,0.146112,0.146112,15,15,, +25309,0,0.144323,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.092642,0.15,4,0.577293,0.577293,0.577293,0.577293,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,,,,,,,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.199166,0.199166,0.199166,0.199166,0.199166,0.199166,0.199166,0.199166,0.10247,0.10247,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.577293,0.199166,0.199166,15,15,, +22078,0,0.227169,1,1,1,2,4,,3,5,Huron River,Dr,4603250,0.589,0.816,0,4.867903,6,4.5,0.413034,0.413034,0.413034,0.413034,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.468739,0.707616,0.413034,0.413034,0.468739,0.707616,0.502452,0.528004,0.413034,0.413034,0.502452,0.528004,0.800002,0.583077,0.413034,0.413034,0.800002,0.583077,0.413034,0.413034,0.413034,0.413034,0.413034,0.413034,,,,,,,0.468739,0.707616,0.502452,0.528004,0.800002,0.583077,0.413034,0.413034,0.413034,0.413034,0.181512,0.253175,0.191626,0.199291,0.280891,0.215814,0.164801,0.164801,0.086944,0.086944,29.078295,19.262047,27.12724,25.814459,17.037617,23.376205,33,33,33,33,,,,,,,,,,,2838,2838,0.413034,0.413034,0.413034,0.413034,0.413034,0.413034,0.413034,0.413034,0.164801,0.164801,33,33,, +26493,0,0.517044,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.079516,0.15,4,3.102264,3.102264,3.102264,3.102264,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.102264,3.10227,3.102264,3.102264,3.102264,3.10227,3.102265,3.102265,3.102264,3.102264,3.102265,3.102265,3.10227,3.102265,3.102264,3.102264,3.10227,3.102265,3.102264,3.102264,3.102264,3.102264,3.102264,3.102264,,,,,,,3.102264,3.10227,3.102265,3.102265,3.10227,3.102265,3.102264,3.102264,3.102264,3.102264,1.023747,1.023749,1.023747,1.023747,1.023749,1.023747,1.023747,1.023747,0.522215,0.522215,10,9.99998,9.999999,9.999998,9.999981,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,3.102264,3.102264,3.102264,3.102264,3.102264,3.102264,3.102264,3.102264,1.023747,1.023747,10,10,, +21320,0,0.114757,2,2,0,2,4,,4,5,Clark,Rd,4603250,0.474,0.589,0,2.459084,4.5,4.5,0.181196,0.181196,0.181196,0.181196,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.181534,0.182162,0.181196,0.181196,0.181534,0.182162,0.181482,0.181343,0.181196,0.181196,0.181482,0.181343,0.182551,0.181482,0.181196,0.181196,0.182551,0.181482,0.181196,0.181196,0.181196,0.181196,0.181196,0.181196,,,,,,,0.181534,0.182162,0.181482,0.181343,0.182551,0.181482,0.181196,0.181196,0.181196,0.181196,0.075117,0.075305,0.075101,0.075059,0.075422,0.075101,0.075015,0.075015,0.039803,0.039803,37.929089,37.798369,37.940146,37.969194,37.717785,37.940014,38,38,38,38,,,,,,,,,,,6192,6192,0.181196,0.181196,0.181196,0.181196,0.181196,0.181196,0.181196,0.181196,0.075015,0.075015,38,38,, +25301,0,0.314758,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.744804,0.15,4,1.888545,1.888545,1.888545,1.888545,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,,,,,,,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,0.62322,0.62322,0.62322,0.62322,0.62322,0.62322,0.62322,0.62322,0.317905,0.317905,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,1.888545,0.62322,0.62322,10,10,, +9839,0,0.361631,2,2,0,2,3,,3,5,Cross,St,1428902,1.274,1.635,0,7.749237,5,5,0.619939,0.619939,0.619939,0.619939,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.629044,0.653516,0.619939,0.619939,0.629044,0.653516,0.623737,0.621397,0.619939,0.619939,0.623737,0.621397,0.674777,0.638142,0.619939,0.619939,0.674777,0.638142,0.619939,0.619939,0.619939,0.619939,0.619939,0.619939,,,,,,,0.629044,0.653516,0.623737,0.621397,0.674777,0.638142,0.619939,0.619939,0.619939,0.619939,0.253807,0.261149,0.252215,0.251513,0.267527,0.256536,0.251075,0.251075,0.13277,0.13277,34.493392,33.201714,34.786856,34.917849,32.155601,34.001631,35,35,35,35,,,,,,,,,,,7568,7568,0.619939,0.619939,0.619939,0.619939,0.619939,0.619939,0.619939,0.619939,0.251075,0.251075,35,35,, +9847,0,0.05963,2,2,0,2,5,,3,5,Oakwood,St,1429009,0.312,0.372,0,1.277786,8,4.5,0.143112,0.143112,0.143112,0.143112,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.143695,0.14325,0.143112,0.143112,0.143695,0.14325,0.143283,0.143149,0.143112,0.143112,0.143283,0.143149,0.143438,0.144494,0.143112,0.143112,0.143438,0.144494,0.143112,0.143112,0.143112,0.143112,0.143112,0.143112,,,,,,,0.143695,0.14325,0.143283,0.143149,0.143438,0.144494,0.143112,0.143112,0.143112,0.143112,0.053842,0.053708,0.053718,0.053678,0.053765,0.054082,0.053667,0.053667,0.028026,0.028026,24.898584,24.975985,24.970096,24.993545,24.943168,24.7609,25,25,25,25,,,,,,,,,,,4816,4816,0.143112,0.143112,0.143112,0.143112,0.143112,0.143112,0.143112,0.143112,0.053667,0.053667,25,25,, +9875,0,0.153418,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,6.284,6.437,0,3.287533,5,5,0.263003,0.263003,0.263003,0.263003,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.266725,0.308274,0.263003,0.263003,0.266725,0.308274,0.276598,0.265585,0.263003,0.263003,0.276598,0.265585,0.32203,0.27193,0.263003,0.263003,0.32203,0.27193,0.263003,0.263003,0.263003,0.263003,0.263003,0.263003,,,,,,,0.266725,0.308274,0.276598,0.265585,0.32203,0.27193,0.263003,0.263003,0.263003,0.263003,0.107633,0.120097,0.110595,0.107291,0.124224,0.109194,0.106516,0.106516,0.056326,0.056326,34.511502,29.8601,33.279625,34.659694,28.584585,33.850957,35,35,35,35,,,,,,,,,,,7568,7568,0.263003,0.263003,0.263003,0.263003,0.263003,0.263003,0.263003,0.263003,0.106516,0.106516,35,35,, +9879,0,0.153829,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.978,6.131,0,3.296333,5,5,0.263707,0.263707,0.263707,0.263707,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.269491,0.301273,0.263707,0.263707,0.269491,0.301273,0.271833,0.266204,0.263707,0.263707,0.271833,0.266204,0.321784,0.273261,0.263707,0.263707,0.321784,0.273261,0.263707,0.263707,0.263707,0.263707,0.263707,0.263707,,,,,,,0.269491,0.301273,0.271833,0.266204,0.321784,0.273261,0.263707,0.263707,0.263707,0.263707,0.108536,0.118071,0.109239,0.10755,0.124224,0.109667,0.106801,0.106801,0.056477,0.056477,34.248803,30.635819,33.95374,34.671621,28.683053,33.776304,35,35,35,35,,,,,,,,,,,7568,7568,0.263707,0.263707,0.263707,0.263707,0.263707,0.263707,0.263707,0.263707,0.106801,0.106801,35,35,, +9896,0,0.139575,1,1,0,2,5,,3,5,Mansfield,St,1427902,0.833,0.973,0,2.990883,8,4.5,0.334979,0.334979,0.334979,0.334979,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.334994,0.33515,0.334979,0.334979,0.334994,0.33515,0.335105,0.33499,0.334979,0.334979,0.335105,0.33499,0.339612,0.335014,0.334979,0.334979,0.339612,0.335014,0.334979,0.334979,0.334979,0.334979,0.334979,0.334979,,,,,,,0.334994,0.33515,0.335105,0.33499,0.339612,0.335014,0.334979,0.334979,0.334979,0.334979,0.125622,0.125668,0.125655,0.125621,0.127007,0.125627,0.125617,0.125617,0.0656,0.0656,24.998862,24.987266,24.99059,24.999142,24.658932,24.997415,25,25,25,25,,,,,,,,,,,2408,2408,0.334979,0.334979,0.334979,0.334979,0.334979,0.334979,0.334979,0.334979,0.125617,0.125617,25,25,, +11516,0,0.267636,1,1,0,2,5,,3,5,Congress,St,1434509,0.6,0.868,0,5.735052,8,4.5,0.642326,0.642326,0.642326,0.642326,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.644291,0.652684,0.642326,0.642326,0.644291,0.652684,0.642657,0.642662,0.642326,0.642326,0.642657,0.642662,0.659361,0.646352,0.642326,0.642326,0.659361,0.646352,0.642326,0.642326,0.642326,0.642326,0.642326,0.642326,,,,,,,0.644291,0.652684,0.642657,0.642662,0.659361,0.646352,0.642326,0.642326,0.642326,0.642326,0.241462,0.24398,0.240972,0.240973,0.245983,0.24208,0.240872,0.240872,0.125789,0.125789,24.923765,24.603251,24.987114,24.986924,24.354085,24.844266,25,25,25,25,,,,,,,,,,,2408,2408,0.642326,0.642326,0.642326,0.642326,0.642326,0.642326,0.642326,0.642326,0.240872,0.240872,25,25,, +26293,0,0.22731,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.87092,0.15,4,1.363858,1.363858,1.363858,1.363858,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,,,,,,,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,0.450073,0.450073,0.450073,0.450073,0.450073,0.450073,0.450073,0.450073,0.229583,0.229583,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,1.363858,0.450073,0.450073,10,10,, +30074,0,0.273802,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.867194,0.15,4,1.642814,1.642814,1.642814,1.642814,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,,,,,,,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,0.542129,0.542129,0.542129,0.542129,0.542129,0.542129,0.542129,0.542129,0.27654,0.27654,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,1.642814,0.542129,0.542129,10,10,, +9649,0,0.058069,2,2,0,2,3,,3,5,Cross,St,1428902,1.216,1.274,0,1.244333,5,5,0.099547,0.099547,0.099547,0.099547,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.100904,0.104354,0.099547,0.099547,0.100904,0.104354,0.100183,0.099807,0.099547,0.099547,0.100183,0.099807,0.106062,0.10231,0.099547,0.099547,0.106062,0.10231,0.099547,0.099547,0.099547,0.099547,0.099547,0.099547,,,,,,,0.100904,0.104354,0.100183,0.099807,0.106062,0.10231,0.099547,0.099547,0.099547,0.099547,0.040723,0.041759,0.040507,0.040395,0.042271,0.041145,0.040316,0.040316,0.02132,0.02132,34.529297,33.387697,34.777729,34.908603,32.849828,34.05471,35,35,35,35,,,,,,,,,,,7568,7568,0.099547,0.099547,0.099547,0.099547,0.099547,0.099547,0.099547,0.099547,0.040316,0.040316,35,35,, +9709,0,0.247286,1,1,0,2,5,,3,5,Mansfield,St,1427902,0.586,0.833,0,5.298987,8,4.5,0.593487,0.593487,0.593487,0.593487,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.607734,0.593669,0.593487,0.593487,0.607734,0.593669,0.593584,0.593532,0.593487,0.593487,0.593584,0.593532,0.595988,0.594288,0.593487,0.593487,0.595988,0.594288,0.593487,0.593487,0.593487,0.593487,0.593487,0.593487,,,,,,,0.607734,0.593669,0.593584,0.593532,0.595988,0.594288,0.593487,0.593487,0.593487,0.593487,0.226832,0.222612,0.222587,0.222571,0.223308,0.222798,0.222557,0.222557,0.116224,0.116224,24.413931,24.992323,24.995889,24.998103,24.895059,24.966275,25,25,25,25,,,,,,,,,,,2408,2408,0.593487,0.593487,0.593487,0.593487,0.593487,0.593487,0.593487,0.593487,0.222557,0.222557,25,25,, +9904,0,0.176664,1,1,0,2,5,,3,5,Mansfield,St,1427902,0.409,0.586,0,3.785652,8,4.5,0.423993,0.423993,0.423993,0.423993,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.488423,0.425254,0.423993,0.423993,0.488423,0.425254,0.424343,0.4246,0.423993,0.423993,0.424343,0.4246,0.430824,0.440155,0.423993,0.423993,0.430824,0.440155,0.423993,0.423993,0.423993,0.423993,0.423993,0.423993,,,,,,,0.488423,0.425254,0.424343,0.4246,0.430824,0.440155,0.423993,0.423993,0.423993,0.423993,0.178326,0.159376,0.159102,0.15918,0.161047,0.163846,0.158997,0.158997,0.083032,0.083032,21.702139,24.925864,24.97939,24.964248,24.603605,24.082046,25,25,25,25,,,,,,,,,,,2408,2408,0.423993,0.423993,0.423993,0.423993,0.423993,0.423993,0.423993,0.423993,0.158997,0.158997,25,25,, +11203,0,0.21602,1,1,0,2,5,,4,5,Congress,St,1434509,0.384,0.6,0,4.628998,5.8,4.5,0.480044,0.480044,0.480044,0.480044,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.48005,0.480112,0.480044,0.480044,0.48005,0.480112,0.480044,0.480045,0.480044,0.480044,0.480044,0.480045,0.48017,0.480085,0.480044,0.480044,0.48017,0.480085,0.480044,0.480044,0.480044,0.480044,0.480044,0.480044,,,,,,,0.48005,0.480112,0.480044,0.480045,0.48017,0.480085,0.480044,0.480044,0.480044,0.480044,0.182899,0.182917,0.182897,0.182897,0.182935,0.182909,0.182897,0.182897,0.095769,0.095769,26.999674,26.99619,26.999992,26.999935,26.992942,26.997716,27,27,27,27,,,,,,,,,,,2580,2580,0.480044,0.480044,0.480044,0.480044,0.480044,0.480044,0.480044,0.480044,0.182897,0.182897,27,27,, +25296,0,0.091506,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.960838,0.15,4,0.549035,0.549035,0.549035,0.549035,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,,,,,,,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.181181,0.181181,0.181181,0.181181,0.181181,0.181181,0.181181,0.181181,0.092421,0.092421,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.549035,0.181181,0.181181,10,10,, +30072,0,0.161888,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.469035,0.15,4,0.97133,0.97133,0.97133,0.97133,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,,,,,,,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.320539,0.320539,0.320539,0.320539,0.320539,0.320539,0.320539,0.320539,0.163507,0.163507,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.97133,0.320539,0.320539,10,10,, +9870,0,0.125061,2,2,0,2,3,,3,5,Cross,St,1428902,1.091,1.216,0,2.679873,5,5,0.21439,0.21439,0.21439,0.21439,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.216187,0.2314,0.21439,0.21439,0.216187,0.2314,0.215823,0.214863,0.21439,0.21439,0.215823,0.214863,0.236019,0.220334,0.21439,0.21439,0.236019,0.220334,0.21439,0.21439,0.21439,0.21439,0.21439,0.21439,,,,,,,0.216187,0.2314,0.215823,0.214863,0.236019,0.220334,0.21439,0.21439,0.21439,0.21439,0.087367,0.091931,0.087258,0.08697,0.093317,0.088611,0.086828,0.086828,0.045915,0.045915,34.709059,32.427093,34.767624,34.922917,31.792506,34.055696,35,35,35,35,,,,,,,,,,,7568,7568,0.21439,0.21439,0.21439,0.21439,0.21439,0.21439,0.21439,0.21439,0.086828,0.086828,35,35,, +30073,0,0.160455,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.438311,0.15,4,0.962727,0.962727,0.962727,0.962727,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,,,,,,,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.3177,0.3177,0.3177,0.3177,0.3177,0.3177,0.3177,0.3177,0.162059,0.162059,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.962727,0.3177,0.3177,10,10,, +10080,0,0.227201,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0.128,0.355,0,4.868588,8,4.5,0.545282,0.545282,0.545282,0.545282,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.545296,0.545282,0.545282,0.545282,0.545296,0.545282,0.545282,0.545283,0.545282,0.545282,0.545282,0.545283,0.54592,0.545302,0.545282,0.545282,0.54592,0.545302,0.545282,0.545282,0.545282,0.545282,0.545282,0.545282,,,,,,,0.545296,0.545282,0.545282,0.545283,0.54592,0.545302,0.545282,0.545282,0.545282,0.545282,0.204485,0.204481,0.204481,0.204481,0.204672,0.204487,0.204481,0.204481,0.106784,0.106784,24.999332,24.99999,24.999997,24.999958,24.970785,24.99906,25,25,25,25,,,,,,,,,,,2408,2408,0.545282,0.545282,0.545282,0.545282,0.545282,0.545282,0.545282,0.545282,0.204481,0.204481,25,25,, +10116,0,0.105083,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.873,5.978,0,2.251775,5,5,0.180142,0.180142,0.180142,0.180142,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.185159,0.207314,0.180142,0.180142,0.185159,0.207314,0.186058,0.182151,0.180142,0.180142,0.186058,0.182151,0.237393,0.188437,0.180142,0.180142,0.237393,0.188437,0.180142,0.180142,0.180142,0.180142,0.180142,0.180142,,,,,,,0.185159,0.207314,0.186058,0.182151,0.237393,0.188437,0.180142,0.180142,0.180142,0.180142,0.074463,0.081109,0.074732,0.07356,0.090133,0.075446,0.072958,0.072958,0.03858,0.03858,34.051571,30.412658,33.887205,34.614067,26.559234,33.459316,35,35,35,35,,,,,,,,,,,7568,7568,0.180142,0.180142,0.180142,0.180142,0.180142,0.180142,0.180142,0.180142,0.072958,0.072958,35,35,, +25299,0,0.298211,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.390234,0.15,4,1.789266,1.789266,1.789266,1.789266,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,,,,,,,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,0.590458,0.590458,0.590458,0.590458,0.590458,0.590458,0.590458,0.590458,0.301193,0.301193,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,1.789266,0.590458,0.590458,10,10,, +9897,0,0.124481,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.748,5.873,0,2.667439,5,5,0.213395,0.213395,0.213395,0.213395,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.219904,0.242786,0.213395,0.213395,0.219904,0.242786,0.220191,0.216305,0.213395,0.213395,0.220191,0.216305,0.260524,0.224664,0.213395,0.213395,0.260524,0.224664,0.213395,0.213395,0.213395,0.213395,0.213395,0.213395,,,,,,,0.219904,0.242786,0.220191,0.216305,0.260524,0.224664,0.213395,0.213395,0.213395,0.213395,0.088378,0.095242,0.088464,0.087298,0.100564,0.089806,0.086425,0.086425,0.045702,0.045702,33.964018,30.763062,33.919715,34.529167,28.668509,33.244495,35,35,35,35,,,,,,,,,,,7568,7568,0.213395,0.213395,0.213395,0.213395,0.213395,0.213395,0.213395,0.213395,0.086425,0.086425,35,35,, +10338,0,0.128332,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0,0.128,0,2.749977,8,4.5,0.307997,0.307997,0.307997,0.307997,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.308002,0.307997,0.307997,0.307997,0.308002,0.307997,0.307997,0.307998,0.307997,0.307997,0.307997,0.307998,0.308253,0.308005,0.307997,0.307997,0.308253,0.308005,0.307997,0.307997,0.307997,0.307997,0.307997,0.307997,,,,,,,0.308002,0.307997,0.307997,0.307998,0.308253,0.308005,0.307997,0.307997,0.307997,0.307997,0.1155,0.115499,0.115499,0.115499,0.115576,0.115501,0.115499,0.115499,0.060316,0.060316,24.999649,24.999997,24.999999,24.999973,24.979273,24.999378,25,25,25,25,,,,,,,,,,,2408,2408,0.307997,0.307997,0.307997,0.307997,0.307997,0.307997,0.307997,0.307997,0.115499,0.115499,25,25,, +9593,0,0.142354,2,2,0,2,3,,3,5,Cross,St,1428902,1.635,1.778,0,3.050436,5,5,0.244035,0.244035,0.244035,0.244035,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.244713,0.247812,0.244035,0.244035,0.244713,0.247812,0.24431,0.244183,0.244035,0.244035,0.24431,0.244183,0.250169,0.245084,0.244035,0.244035,0.250169,0.245084,0.244035,0.244035,0.244035,0.244035,0.244035,0.244035,,,,,,,0.244713,0.247812,0.24431,0.244183,0.250169,0.245084,0.244035,0.244035,0.244035,0.244035,0.099038,0.099967,0.098917,0.098879,0.100674,0.099149,0.098834,0.098834,0.052264,0.052264,34.903029,34.466484,34.960633,34.978784,34.14183,34.850195,35,35,35,35,,,,,,,,,,,7568,7568,0.244035,0.244035,0.244035,0.244035,0.244035,0.244035,0.244035,0.244035,0.098834,0.098834,35,35,, +9680,0,0.079238,1,1,0,2,5,,3,5,Summit,St,1427910,0.202,0.281,0,1.697965,8,4.5,0.190172,0.190172,0.190172,0.190172,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.196027,0.190172,0.190172,0.190172,0.196027,0.190172,0.191522,0.19042,0.190172,0.190172,0.191522,0.19042,0.192225,0.197667,0.190172,0.190172,0.192225,0.197667,0.190172,0.190172,0.190172,0.190172,0.190172,0.190172,,,,,,,0.196027,0.190172,0.191522,0.19042,0.192225,0.197667,0.190172,0.190172,0.190172,0.190172,0.073071,0.071315,0.07172,0.071389,0.07193,0.073563,0.071315,0.071315,0.037242,0.037242,24.253357,24.999978,24.823783,24.967441,24.733071,24.05212,25,25,25,25,,,,,,,,,,,2408,2408,0.190172,0.190172,0.190172,0.190172,0.190172,0.190172,0.190172,0.190172,0.071315,0.071315,25,25,, +9869,0,0.223267,1,1,0,2,5,,3,5,Congress,St,1428004,0.362,0.586,0,4.784296,8,4.5,0.535841,0.535841,0.535841,0.535841,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.561517,0.547415,0.535841,0.535841,0.561517,0.547415,0.537981,0.536936,0.535841,0.535841,0.537981,0.536936,0.573177,0.558992,0.535841,0.535841,0.573177,0.558992,0.535841,0.535841,0.535841,0.535841,0.535841,0.535841,,,,,,,0.561517,0.547415,0.537981,0.536936,0.573177,0.558992,0.535841,0.535841,0.535841,0.535841,0.208643,0.204413,0.201582,0.201269,0.212141,0.207886,0.20094,0.20094,0.104936,0.104936,23.856836,24.471431,24.900551,24.949048,23.371553,23.96464,25,25,25,25,,,,,,,,,,,2408,2408,0.535841,0.535841,0.535841,0.535841,0.535841,0.535841,0.535841,0.535841,0.20094,0.20094,25,25,, +26692,0,0.086117,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.845368,0.15,4,0.516703,0.516703,0.516703,0.516703,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,,,,,,,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.170512,0.170512,0.170512,0.170512,0.170512,0.170512,0.170512,0.170512,0.086978,0.086978,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.516703,0.170512,0.170512,10,10,, +29487,0,0.267101,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.723587,0.15,4,1.602604,1.602604,1.602604,1.602604,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,,,,,,,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,0.528859,0.528859,0.528859,0.528859,0.528859,0.528859,0.528859,0.528859,0.269772,0.269772,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,1.602604,0.528859,0.528859,10,10,, +30079,0,0.271969,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.827898,0.15,4,1.631811,1.631811,1.631811,1.631811,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,,,,,,,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,0.538498,0.538498,0.538498,0.538498,0.538498,0.538498,0.538498,0.538498,0.274688,0.274688,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,1.631811,0.538498,0.538498,10,10,, +9655,0,0.08801,1,1,0,2,5,,3,5,Congress,St,1428004,0.274,0.362,0,1.885921,8,4.5,0.211223,0.211223,0.211223,0.211223,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.211869,0.214629,0.211223,0.211223,0.211869,0.214629,0.211332,0.211334,0.211223,0.211223,0.211332,0.211334,0.216825,0.212547,0.211223,0.211223,0.216825,0.212547,0.211223,0.211223,0.211223,0.211223,0.211223,0.211223,,,,,,,0.211869,0.214629,0.211332,0.211334,0.216825,0.212547,0.211223,0.211223,0.211223,0.211223,0.079403,0.080231,0.079241,0.079242,0.080889,0.079606,0.079209,0.079209,0.041365,0.041365,24.923765,24.603251,24.987114,24.986924,24.354085,24.844266,25,25,25,25,,,,,,,,,,,2408,2408,0.211223,0.211223,0.211223,0.211223,0.211223,0.211223,0.211223,0.211223,0.079209,0.079209,25,25,, +26691,0,0.231883,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.968927,0.15,4,1.3913,1.3913,1.3913,1.3913,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,,,,,,,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,0.459129,0.459129,0.459129,0.459129,0.459129,0.459129,0.459129,0.459129,0.234202,0.234202,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,1.3913,0.459129,0.459129,10,10,, +9894,0,0.108224,2,2,0,2,5,,3,5,Summit,St,1427910,0.094,0.202,0,2.31909,8,4.5,0.259738,0.259738,0.259738,0.259738,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.260298,0.259739,0.259738,0.259738,0.260298,0.259739,0.259899,0.259777,0.259738,0.259738,0.259899,0.259777,0.260157,0.260499,0.259738,0.259738,0.260157,0.260499,0.259738,0.259738,0.259738,0.259738,0.259738,0.259738,,,,,,,0.260298,0.259739,0.259899,0.259777,0.260157,0.260499,0.259738,0.259738,0.259738,0.259738,0.09757,0.097402,0.09745,0.097413,0.097527,0.09763,0.097402,0.097402,0.050865,0.050865,24.946261,24.999865,24.984491,24.996268,24.959773,24.926943,25,25,25,25,,,,,,,,,,,4816,4816,0.259738,0.259738,0.259738,0.259738,0.259738,0.259738,0.259738,0.259738,0.097402,0.097402,25,25,, +9681,0,0.093803,2,2,0,2,5,,3,5,Summit,St,1427910,0,0.094,0,2.010072,8,4.5,0.225128,0.225128,0.225128,0.225128,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.225613,0.225129,0.225128,0.225128,0.225613,0.225129,0.225268,0.225162,0.225128,0.225128,0.225268,0.225162,0.225491,0.225788,0.225128,0.225128,0.225491,0.225788,0.225128,0.225128,0.225128,0.225128,0.225128,0.225128,,,,,,,0.225613,0.225129,0.225268,0.225162,0.225491,0.225788,0.225128,0.225128,0.225128,0.225128,0.084569,0.084423,0.084465,0.084433,0.084532,0.084621,0.084423,0.084423,0.044088,0.044088,24.946261,24.999865,24.984491,24.996268,24.959773,24.926943,25,25,25,25,,,,,,,,,,,4816,4816,0.225128,0.225128,0.225128,0.225128,0.225128,0.225128,0.225128,0.225128,0.084423,0.084423,25,25,, +9836,-1,0.097967,0,4,0,2,3,,2,5,Cross,St,1428902,1.778,1.876,0,2.099303,6,5,,0.195935,,0.195935,,30,,32000,,7264,,16000,,10323,,11008,,10995,,0.264802,,0.195935,,0.264802,,0.19935,,0.195935,,0.19935,,0.211454,,0.195935,,0.211454,,0.195935,,0.195935,,0.195935,,,,,,,,0.264802,,0.19935,,0.211454,,0.195935,,0.195935,,0.097075,,0.077439,,0.08107,,0.076415,,0.040167,,22.197924,,29.486119,,27.798229,,30,,30,,,,,,,,,,,,11008,,0.195935,,0.195935,,0.195935,,0.195935,,0.076415,,30,, +9877,0,0.180559,1,1,0,2,5,,3,5,Summit,St,1427910,0.281,0.462,0,3.869122,8,4.5,0.433342,0.433342,0.433342,0.433342,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.482261,0.433342,0.433342,0.433342,0.482261,0.433342,0.441752,0.433907,0.433342,0.433342,0.441752,0.433907,0.448065,0.450419,0.433342,0.433342,0.448065,0.450419,0.433342,0.433342,0.433342,0.433342,0.433342,0.433342,,,,,,,0.482261,0.433342,0.441752,0.433907,0.448065,0.450419,0.433342,0.433342,0.433342,0.433342,0.177179,0.162503,0.165026,0.162673,0.16692,0.167626,0.162503,0.162503,0.084863,0.084863,22.464056,24.999978,24.52402,24.967441,24.178508,24.05212,25,25,25,25,,,,,,,,,,,2408,2408,0.433342,0.433342,0.433342,0.433342,0.433342,0.433342,0.433342,0.433342,0.162503,0.162503,25,25,, +10102,1,0.094091,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.437,6.531,0,2.016228,6,5,0.188181,,0.188181,,30,,32000,,7264,,16000,,10323,,11008,,10995,,0.195616,,0.188181,,0.195616,,0.200288,,0.188181,,0.200288,,0.282061,,0.188181,,0.282061,,0.188181,,0.188181,,0.188181,,,,,,,,0.195616,,0.200288,,0.282061,,0.188181,,0.188181,,0.075621,,0.077023,,0.101555,,0.073391,,0.038577,,28.859791,,28.186627,,20.014961,,30,,30,,,,,,,,,,,,11008,,0.188181,,0.188181,,0.188181,,0.188181,,0.073391,,30,,, +9659,0,0.041132,1,1,0,2,5,,2,5,Summit,St,1427910,0.462,0.503,0,0.881399,8.5,4.5,0.123396,0.123396,0.123396,0.123396,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.153679,0.123397,0.123396,0.123396,0.153679,0.123397,0.128576,0.124012,0.123396,0.123396,0.128576,0.124012,0.132549,0.140489,0.123396,0.123396,0.132549,0.140489,0.123396,0.123396,0.123396,0.123396,0.123396,0.123396,,,,,,,0.153679,0.123397,0.128576,0.124012,0.132549,0.140489,0.123396,0.123396,0.123396,0.123396,0.053507,0.044423,0.045977,0.044607,0.047169,0.049551,0.044422,0.044422,0.023034,0.023034,16.05893,19.999863,19.194213,19.900587,18.618835,17.566554,20,20,20,20,,,,,,,,,,,2064,2064,0.123396,0.123396,0.123396,0.123396,0.123396,0.123396,0.123396,0.123396,0.044422,0.044422,20,20,, +9876,0,0.026531,1,1,0,2,5,,2,5,Summit,St,1427910,0.503,0.529,0,0.568522,8.5,4.5,0.079593,0.079593,0.079593,0.079593,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.095511,0.079593,0.079593,0.079593,0.095511,0.079593,0.082345,0.079593,0.079593,0.079593,0.082345,0.079593,0.084048,0.079625,0.079593,0.079593,0.084048,0.079625,0.079593,0.079593,0.079593,0.079593,0.079593,0.079593,,,,,,,0.095511,0.079593,0.082345,0.079593,0.084048,0.079625,0.079593,0.079593,0.079593,0.079593,0.033429,0.028653,0.029479,0.028654,0.02999,0.028663,0.028653,0.028653,0.014857,0.014857,16.666753,19.999998,19.331512,19.999985,18.93979,19.992092,20,20,20,20,,,,,,,,,,,2064,2064,0.079593,0.079593,0.079593,0.079593,0.079593,0.079593,0.079593,0.079593,0.028653,0.028653,20,20,, +9647,0,0.198321,1,1,0,2,5,,3,5,Oakwood,St,1429009,0.643,0.841,0,4.249731,8,4.5,0.47597,0.47597,0.47597,0.47597,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.47597,0.476007,0.47597,0.47597,0.47597,0.476007,0.475975,0.47597,0.47597,0.47597,0.475975,0.47597,0.475989,0.47597,0.47597,0.47597,0.475989,0.47597,0.47597,0.47597,0.47597,0.47597,0.47597,0.47597,,,,,,,0.47597,0.476007,0.475975,0.47597,0.475989,0.47597,0.47597,0.47597,0.47597,0.47597,0.178489,0.1785,0.17849,0.178489,0.178494,0.178489,0.178489,0.178489,0.093211,0.093211,25,24.998076,24.999726,24.999998,24.999011,25,25,25,25,25,,,,,,,,,,,2408,2408,0.47597,0.47597,0.47597,0.47597,0.47597,0.47597,0.47597,0.47597,0.178489,0.178489,25,25,, +25529,0,0.257557,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.519081,0.15,4,1.545343,1.545343,1.545343,1.545343,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.545343,1.545344,1.545343,1.545343,1.545343,1.545344,1.545343,1.545343,1.545343,1.545343,1.545343,1.545343,1.545344,1.545343,1.545343,1.545343,1.545344,1.545343,1.545343,1.545343,1.545343,1.545343,1.545343,1.545343,,,,,,,1.545343,1.545344,1.545343,1.545343,1.545344,1.545343,1.545343,1.545343,1.545343,1.545343,0.509963,0.509963,0.509963,0.509963,0.509963,0.509963,0.509963,0.509963,0.260133,0.260133,10,9.999994,9.999998,9.999999,9.999993,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.545343,1.545343,1.545343,1.545343,1.545343,1.545343,1.545343,1.545343,0.509963,0.509963,10,10,, +26801,0,0.202025,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.32911,0.15,4,1.212151,1.212151,1.212151,1.212151,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,,,,,,,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,0.40001,0.40001,0.40001,0.40001,0.40001,0.40001,0.40001,0.40001,0.204045,0.204045,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,1.212151,0.40001,0.40001,10,10,, +10111,0,0.152585,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,6.131,6.284,0,3.269689,5,5,0.261575,0.261575,0.261575,0.261575,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.267367,0.297216,0.261575,0.261575,0.267367,0.297216,0.269302,0.263921,0.261575,0.261575,0.269302,0.263921,0.315946,0.270802,0.261575,0.261575,0.315946,0.270802,0.261575,0.261575,0.261575,0.261575,0.261575,0.261575,,,,,,,0.267367,0.297216,0.269302,0.263921,0.315946,0.270802,0.261575,0.261575,0.261575,0.261575,0.107676,0.11663,0.108256,0.106642,0.122249,0.108706,0.105938,0.105938,0.056021,0.056021,34.241799,30.802966,33.995784,34.688892,28.976906,33.807443,35,35,35,35,,,,,,,,,,,7568,7568,0.261575,0.261575,0.261575,0.261575,0.261575,0.261575,0.261575,0.261575,0.105938,0.105938,35,35,, +10280,0,0.130965,1,1,1,2,5,,3,5,Oakwood,St,1429009,0.372,0.503,0,2.806386,8,4.5,0.314315,0.314315,0.314315,0.314315,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.543451,0.335365,0.314315,0.314315,0.543451,0.335365,0.379737,0.404032,0.314315,0.314315,0.379737,0.404032,0.398315,0.593293,0.314315,0.314315,0.398315,0.593293,0.314315,0.314315,0.314315,0.314315,0.314315,0.314315,,,,,,,0.543451,0.335365,0.379737,0.404032,0.398315,0.593293,0.314315,0.314315,0.314315,0.314315,0.186609,0.124183,0.137495,0.144783,0.143068,0.201562,0.117868,0.117868,0.061553,0.061553,14.459217,23.430838,20.692946,19.448672,19.727809,13.24452,25,25,25,25,,,,,,,,,,,2649,2649,0.314315,0.314315,0.314315,0.314315,0.314315,0.314315,0.314315,0.314315,0.117868,0.117868,25,25,, +25521,0,0.179215,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.840326,0.15,4,1.075291,1.075291,1.075291,1.075291,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,,,,,,,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,0.354846,0.354846,0.354846,0.354846,0.354846,0.354846,0.354846,0.354846,0.181007,0.181007,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,1.075291,0.354846,0.354846,10,10,, +10017,0,0.140194,1,1,1,2,5,,3,5,Oakwood,St,1429009,0.503,0.643,0,3.004167,8,4.5,0.336467,0.336467,0.336467,0.336467,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.336467,0.336484,0.336467,0.336467,0.336467,0.336484,0.336469,0.336467,0.336467,0.336467,0.336469,0.336467,0.336475,0.336467,0.336467,0.336467,0.336475,0.336467,0.336467,0.336467,0.336467,0.336467,0.336467,0.336467,,,,,,,0.336467,0.336484,0.336469,0.336467,0.336475,0.336467,0.336467,0.336467,0.336467,0.336467,0.126175,0.12618,0.126176,0.126175,0.126178,0.126175,0.126175,0.126175,0.065891,0.065891,25,24.998747,24.999821,24.999999,24.999356,25,25,25,25,25,,,,,,,,,,,2649,2649,0.336467,0.336467,0.336467,0.336467,0.336467,0.336467,0.336467,0.336467,0.126175,0.126175,25,25,, +37292,1,0.018077,2,0,0,2,4,,4,5,Geddes,Rd,1448104,5.411,5.429,0,0.387354,4.5,4.5,0.028542,,0.028542,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.028543,,0.028542,,0.028543,,0.028546,,0.028542,,0.028546,,0.028743,,0.028542,,0.028743,,0.028542,,0.028542,,0.028542,,,,,,,,0.028543,,0.028546,,0.028743,,0.028542,,0.028542,,0.011817,,0.011817,,0.011877,,0.011816,,0.00627,,37.998091,,37.994909,,37.733538,,38,,38,,,,,,,,,,,,6192,,0.028542,,0.028542,,0.028542,,0.028542,,0.011816,,38,,, +22132,0,0.232063,2,2,0,2,4,,3,5,Huron River,Dr,4603250,1.438,1.67,0,4.97278,6,4.5,0.421933,0.421933,0.421933,0.421933,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.424169,0.427618,0.421933,0.421933,0.424169,0.427618,0.425021,0.426109,0.421933,0.421933,0.425021,0.426109,0.449287,0.435646,0.421933,0.421933,0.449287,0.435646,0.421933,0.421933,0.421933,0.421933,0.421933,0.421933,,,,,,,0.424169,0.427618,0.425021,0.426109,0.449287,0.435646,0.421933,0.421933,0.421933,0.421933,0.169022,0.170057,0.169278,0.169604,0.176557,0.172465,0.168351,0.168351,0.088817,0.088817,32.826056,32.561284,32.76022,32.676583,30.990847,31.961207,33,33,33,33,,,,,,,,,,,5160,5160,0.421933,0.421933,0.421933,0.421933,0.421933,0.421933,0.421933,0.421933,0.168351,0.168351,33,33,, +25479,0,0.389541,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.347307,0.15,4,1.558164,1.558164,1.558164,1.558164,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,,,,,,,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,0.537567,0.537567,0.537567,0.537567,0.537567,0.537567,0.537567,0.537567,0.276574,0.276574,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,1.558164,0.537567,0.537567,15,15,, +21367,0,0.130126,1,1,1,2,4,,3,5,Huron River,Dr,4603250,1.308,1.438,0,2.788419,6,4.5,0.236593,0.236593,0.236593,0.236593,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.245937,0.283832,0.236593,0.236593,0.245937,0.283832,0.256831,0.261667,0.236593,0.236593,0.256831,0.261667,0.333092,0.310175,0.236593,0.236593,0.333092,0.310175,0.236593,0.236593,0.236593,0.236593,0.236593,0.236593,,,,,,,0.245937,0.283832,0.256831,0.261667,0.333092,0.310175,0.236593,0.236593,0.236593,0.236593,0.097204,0.108572,0.100472,0.101923,0.12335,0.116475,0.094401,0.094401,0.049803,0.049803,31.746201,27.507763,30.39967,29.837853,23.439701,25.1715,33,33,33,33,,,,,,,,,,,2838,2838,0.236593,0.236593,0.236593,0.236593,0.236593,0.236593,0.236593,0.236593,0.094401,0.094401,33,33,, +25305,0,0.094513,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.025277,0.15,4,0.567078,0.567078,0.567078,0.567078,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,,,,,,,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.187136,0.187136,0.187136,0.187136,0.187136,0.187136,0.187136,0.187136,0.095458,0.095458,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.567078,0.187136,0.187136,10,10,, +21586,0,0.114939,1,1,1,2,4,,3,5,Huron River,Dr,4603250,1.193,1.308,0,2.462985,6,4.5,0.208981,0.208981,0.208981,0.208981,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.217171,0.251132,0.208981,0.208981,0.217171,0.251132,0.227039,0.231391,0.208981,0.208981,0.227039,0.231391,0.293467,0.272662,0.208981,0.208981,0.293467,0.272662,0.208981,0.208981,0.208981,0.208981,0.208981,0.208981,,,,,,,0.217171,0.251132,0.227039,0.231391,0.293467,0.272662,0.208981,0.208981,0.208981,0.208981,0.08584,0.096029,0.088801,0.090106,0.108729,0.102488,0.083383,0.083383,0.04399,0.04399,31.755425,27.461147,30.375153,29.80393,23.499628,25.292688,33,33,33,33,,,,,,,,,,,2838,2838,0.208981,0.208981,0.208981,0.208981,0.208981,0.208981,0.208981,0.208981,0.083383,0.083383,33,33,, +9607,0,0.12378,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0.55,0.674,0,2.652432,8,4.5,0.297072,0.297072,0.297072,0.297072,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.297191,0.297075,0.297072,0.297072,0.297191,0.297075,0.297076,0.29708,0.297072,0.297072,0.297076,0.29708,0.298205,0.297184,0.297072,0.297072,0.298205,0.297184,0.297072,0.297072,0.297072,0.297072,0.297072,0.297072,,,,,,,0.297191,0.297075,0.297076,0.29708,0.298205,0.297184,0.297072,0.297072,0.297072,0.297072,0.111438,0.111403,0.111403,0.111405,0.111742,0.111436,0.111402,0.111402,0.058177,0.058177,24.990049,24.999793,24.999728,24.999325,24.90507,24.990615,25,25,25,25,,,,,,,,,,,2408,2408,0.297072,0.297072,0.297072,0.297072,0.297072,0.297072,0.297072,0.297072,0.111402,0.111402,25,25,, +26309,0,0.186741,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.001584,0.15,4,1.120444,1.120444,1.120444,1.120444,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,,,,,,,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,0.369746,0.369746,0.369746,0.369746,0.369746,0.369746,0.369746,0.369746,0.188608,0.188608,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,1.120444,0.369746,0.369746,10,10,, +10450,1,0.395014,1,0,0,1,2,ROF,3,5,N US 23/Plymouth,RAMP,1431404,0,0.395,0,,2.24,5,0.677167,,0.677167,,35,,14750,,3348,,7375,,4758,,5074,,5068,,1.178792,,0.677167,,1.178792,,0.729732,,0.677167,,0.729732,,0.923623,,0.677167,,0.923623,,0.677167,,0.677167,,0.677167,,,,,,,,1.178792,,0.729732,,0.923623,,0.677167,,0.677167,,0.42474,,0.290022,,0.348189,,0.274253,,0.145027,,20.106047,,32.478863,,25.660753,,35,,35,,,,,,,,,,,,5074,,0.677167,,0.677167,,0.677167,,0.677167,,0.274253,,35,,, +10489,1,0.307208,2,0,0,1,2,,3,5,N US 23,,1431202,15.464,15.771,0,,0.58,7,0.283577,,0.283577,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.285549,,0.283577,,0.285549,,0.283624,,0.283577,,0.283624,,0.285555,,0.283577,,0.285555,,0.283577,,0.283577,,0.283577,,,,,,,,0.285549,,0.283624,,0.285555,,0.283577,,0.283577,,0.140962,,0.140385,,0.140964,,0.140371,,0.076329,,64.551183,,64.989247,,64.549798,,65,,65,,,,,,,,,,,,15136,,0.283577,,0.283577,,0.283577,,0.283577,,0.140371,,65,,, +10880,0,1.043794,1,1,0,2,4,,4,5,Geddes,Rd,1448104,3.418,4.461,0,22.367018,4.5,4.5,1.648096,1.648096,1.648096,1.648096,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.654674,2.530452,1.648096,1.648096,1.654674,2.530452,1.664232,1.692818,1.648096,1.648096,1.664232,1.692818,2.341103,1.822496,1.648096,1.648096,2.341103,1.822496,1.648096,1.648096,1.648096,1.648096,1.648096,1.648096,,,,,,,1.654674,2.530452,1.664232,1.692818,2.341103,1.822496,1.648096,1.648096,1.648096,1.648096,0.684285,0.947019,0.687153,0.695728,0.890214,0.734632,0.682312,0.682312,0.362032,0.362032,37.84893,24.749586,37.631554,36.996101,26.751347,34.363667,38,38,38,38,,,,,,,,,,,3096,3096,1.648096,1.648096,1.648096,1.648096,1.648096,1.648096,1.648096,1.648096,0.682312,0.682312,38,38,, +11249,0,0.250403,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,0,0.25,0,5.365789,3,4,0.375605,0.375605,0.375605,0.375605,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.463832,1.238566,0.375605,0.375605,0.463832,1.238566,0.395122,0.408322,0.375605,0.375605,0.395122,0.408322,0.805542,0.547792,0.375605,0.375605,0.805542,0.547792,0.375605,0.375605,0.375605,0.375605,0.375605,0.375605,,,,,,,0.463832,1.238566,0.395122,0.408322,0.805542,0.547792,0.375605,0.375605,0.375605,0.375605,0.184222,0.416642,0.163609,0.167569,0.286735,0.20941,0.157754,0.157754,0.083885,0.083885,32.391498,12.13033,38.024191,36.795042,18.651061,27.426855,40,40,40,40,,,,,,,,,,,3096,3096,0.375605,0.375605,0.375605,0.375605,0.375605,0.375605,0.375605,0.375605,0.157754,0.157754,40,40,, +11427,-1,0.360295,0,2,0,1,2,,3,5,S US 23,,1431603,15.445,15.805,0,,0.58,7,,0.33258,,0.33258,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.34196,,0.33258,,0.34196,,0.332761,,0.33258,,0.332761,,0.335967,,0.33258,,0.335967,,0.33258,,0.33258,,0.33258,,,,,,,,0.34196,,0.332761,,0.335967,,0.33258,,0.33258,,0.167441,,0.164681,,0.165643,,0.164627,,0.08952,,63.217147,,64.964775,,64.344834,,65,,65,,,,,,,,,,,,15136,,0.33258,,0.33258,,0.33258,,0.33258,,0.164627,,65,, +11570,-1,2.193243,0,2,0,1,2,,5,5,W M 14,,1431410,3.102,5.294,0,,1.02,7,,1.879922,,1.879922,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.516899,,1.879922,,2.516899,,1.911663,,1.879922,,1.911663,,2.318794,,1.879922,,2.318794,,1.879922,,1.879922,,1.879922,,,,,,,,2.516899,,1.911663,,2.318794,,1.879922,,1.879922,,1.149853,,0.968282,,1.090422,,0.95876,,0.523245,,52.284397,,68.837753,,56.751288,,70,,70,,,,,,,,,,,,15136,,1.879922,,1.879922,,1.879922,,1.879922,,0.95876,,70,, +11591,0,0.503863,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,2.223,2.726,0,10.797063,4.5,4.5,0.795573,0.795573,0.795573,0.795573,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.893138,0.890839,0.795573,0.795573,0.893138,0.890839,0.802438,0.807542,0.795573,0.795573,0.802438,0.807542,0.895304,0.890286,0.795573,0.795573,0.895304,0.890286,0.795573,0.795573,0.795573,0.795573,0.795573,0.795573,,,,,,,0.893138,0.890839,0.802438,0.807542,0.895304,0.890286,0.795573,0.795573,0.795573,0.795573,0.358637,0.357947,0.331427,0.332958,0.359287,0.357781,0.329367,0.329367,0.174761,0.174761,33.848937,33.936301,37.674914,37.436762,33.767032,33.957364,38,38,38,38,,,,,,,,,,,3096,3096,0.795573,0.795573,0.795573,0.795573,0.795573,0.795573,0.795573,0.795573,0.329367,0.329367,38,38,, +11593,1,2.137486,2,0,0,1,2,,5,5,E M 14,,1431408,3.17,5.307,0,,1.02,7,1.832131,,1.832131,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.586565,,1.832131,,2.586565,,1.860923,,1.832131,,1.860923,,2.35779,,1.832131,,2.35779,,1.832131,,1.832131,,1.832131,,,,,,,,2.586565,,1.860923,,2.35779,,1.832131,,1.832131,,1.160717,,0.943024,,1.092084,,0.934387,,0.509943,,49.582804,,68.916964,,54.393796,,70,,70,,,,,,,,,,,,15136,,1.832131,,1.832131,,1.832131,,1.832131,,0.934387,,70,,, +21550,0,0.749336,1,1,0,2,5,,4,5,Earhart,Rd,4600037,0.076,0.825,0,16.057209,5.8,4.5,1.665192,1.665192,1.665192,1.665192,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.665468,1.840851,1.665192,1.665192,1.665468,1.840851,1.665222,1.665193,1.665192,1.665192,1.665222,1.665193,1.879581,1.676876,1.665192,1.665192,1.879581,1.676876,1.665192,1.665192,1.665192,1.665192,1.665192,1.665192,,,,,,,1.665468,1.840851,1.665222,1.665193,1.879581,1.676876,1.665192,1.665192,1.665192,1.665192,0.634521,0.687136,0.634447,0.634439,0.698755,0.637943,0.634438,0.634438,0.332206,0.332206,26.995524,24.42359,26.999511,26.99998,23.920317,26.811878,27,27,27,27,,,,,,,,,,,2580,2580,1.665192,1.665192,1.665192,1.665192,1.665192,1.665192,1.665192,1.665192,0.634438,0.634438,27,27,, +25312,0,0.334223,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.161916,0.15,4,1.336891,1.336891,1.336891,1.336891,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,,,,,,,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,0.461227,0.461227,0.461227,0.461227,0.461227,0.461227,0.461227,0.461227,0.237298,0.237298,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,1.336891,0.461227,0.461227,15,15,, +25468,0,1.035973,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.199426,0.15,4,4.143893,4.143893,4.143893,4.143893,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,,,,,,,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,1.429643,1.429643,1.429643,1.429643,1.429643,1.429643,1.429643,1.429643,0.735541,0.735541,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,4.143893,1.429643,1.429643,15,15,, +26294,0,0.878263,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.819914,0.15,4,3.513051,3.513051,3.513051,3.513051,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,,,,,,,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,1.212002,1.212002,1.212002,1.212002,1.212002,1.212002,1.212002,1.212002,0.623566,0.623566,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,3.513051,1.212002,1.212002,15,15,, +26701,0,0.386572,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.28368,0.15,4,1.546287,1.546287,1.546287,1.546287,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,,,,,,,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,0.533469,0.533469,0.533469,0.533469,0.533469,0.533469,0.533469,0.533469,0.274466,0.274466,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,1.546287,0.533469,0.533469,15,15,, +10490,1,1.771925,2,0,0,1,2,,3,5,N US 23,,1431202,13.693,15.464,0,,0.58,7,1.635623,,1.635623,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.834906,,1.635623,,1.834906,,1.641417,,1.635623,,1.641417,,1.780868,,1.635623,,1.780868,,1.635623,,1.635623,,1.635623,,,,,,,,1.834906,,1.641417,,1.780868,,1.635623,,1.635623,,0.869418,,0.811372,,0.853207,,0.809633,,0.440255,,57.940571,,64.770546,,59.698694,,65,,65,,,,,,,,,,,,15136,,1.635623,,1.635623,,1.635623,,1.635623,,0.809633,,65,,, +10773,0,0.356221,1,1,0,2,5,,3,5,Earhart,Rd,1442503,0.523,0.879,0,7.633297,8,4.5,0.854929,0.854929,0.854929,0.854929,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.877268,0.862877,0.854929,0.854929,0.877268,0.862877,0.864611,0.860497,0.854929,0.854929,0.864611,0.860497,0.875738,0.861705,0.854929,0.854929,0.875738,0.861705,0.854929,0.854929,0.854929,0.854929,0.854929,0.854929,,,,,,,0.877268,0.862877,0.864611,0.860497,0.875738,0.861705,0.854929,0.854929,0.854929,0.854929,0.3273,0.322983,0.323503,0.322269,0.326841,0.322631,0.320598,0.320598,0.167424,0.167424,24.363399,24.769733,24.720065,24.838231,24.405951,24.803427,25,25,25,25,,,,,,,,,,,2408,2408,0.854929,0.854929,0.854929,0.854929,0.854929,0.854929,0.854929,0.854929,0.320598,0.320598,25,25,, +40376,1,0.018965,1,0,0,2,4,,3,5,Geddes/S US 23,RAMP,4606199,0,0.019,0,0.4064,6,4.5,0.034482,,0.034482,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.039142,,0.034482,,0.039142,,0.03756,,0.034482,,0.03756,,0.054996,,0.034482,,0.054996,,0.034482,,0.034482,,0.034482,,,,,,,,0.039142,,0.03756,,0.054996,,0.034482,,0.034482,,0.015156,,0.014682,,0.019912,,0.013758,,0.007259,,29.071786,,30.295982,,20.691103,,33,,33,,,,,,,,,,,,2580,,0.034482,,0.034482,,0.034482,,0.034482,,0.013758,,33,,, +11429,-1,1.729718,0,2,0,1,2,,3,5,S US 23,,1431603,13.716,15.445,0,,0.58,7,,1.596663,,1.596663,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.754546,,1.596663,,1.754546,,1.60558,,1.596663,,1.60558,,1.84173,,1.596663,,1.84173,,1.596663,,1.596663,,1.596663,,,,,,,,1.754546,,1.60558,,1.84173,,1.596663,,1.596663,,0.837713,,0.793023,,0.863868,,0.790348,,0.429768,,59.150943,,64.638996,,56.350879,,65,,65,,,,,,,,,,,,15136,,1.596663,,1.596663,,1.596663,,1.596663,,0.790348,,65,, +11592,0,0.723065,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,0.753,1.476,0,15.494245,4.5,4.5,1.141681,1.141681,1.141681,1.141681,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.471736,1.234646,1.141681,1.141681,1.471736,1.234646,1.159644,1.17019,1.141681,1.141681,1.159644,1.17019,1.26979,1.421167,1.141681,1.141681,1.26979,1.421167,1.141681,1.141681,1.141681,1.141681,1.141681,1.141681,,,,,,,1.471736,1.234646,1.159644,1.17019,1.26979,1.421167,1.141681,1.141681,1.141681,1.141681,0.571672,0.500546,0.478045,0.481209,0.511089,0.556502,0.472656,0.472656,0.250789,0.250789,29.478036,35.138721,37.411383,37.074233,34.166193,30.526942,38,38,38,38,,,,,,,,,,,3096,3096,1.141681,1.141681,1.141681,1.141681,1.141681,1.141681,1.141681,1.141681,0.472656,0.472656,38,38,, +26699,0,0.55341,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.858796,0.15,4,2.213642,2.213642,2.213642,2.213642,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,,,,,,,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,0.763706,0.763706,0.763706,0.763706,0.763706,0.763706,0.763706,0.763706,0.392921,0.392921,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,2.213642,0.763706,0.763706,15,15,, +26700,0,0.461631,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.892086,0.15,4,2.769784,2.769784,2.769784,2.769784,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,,,,,,,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,0.914029,0.914029,0.914029,0.914029,0.914029,0.914029,0.914029,0.914029,0.466247,0.466247,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,2.769784,0.914029,0.914029,10,10,, +30009,0,0.612996,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.135637,0.15,4,2.451986,2.451986,2.451986,2.451986,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,,,,,,,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,0.845935,0.845935,0.845935,0.845935,0.845935,0.845935,0.845935,0.845935,0.435227,0.435227,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,2.451986,0.845935,0.845935,15,15,, +30010,0,1.000693,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.443431,0.15,4,4.002774,4.002774,4.002774,4.002774,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,,,,,,,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,1.380957,1.380957,1.380957,1.380957,1.380957,1.380957,1.380957,1.380957,0.710492,0.710492,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,4.002774,1.380957,1.380957,15,15,, +30138,0,0.263903,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.65506,0.15,4,1.583417,1.583417,1.583417,1.583417,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,,,,,,,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,0.522528,0.522528,0.522528,0.522528,0.522528,0.522528,0.522528,0.522528,0.266542,0.266542,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,1.583417,0.522528,0.522528,10,10,, +37403,0,0.312549,1,1,0,2,4,,3,5,Geddes,Rd,1448104,2.5,2.813,0,6.697487,6,4.5,0.568272,0.568272,0.568272,0.568272,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.575605,1.434461,0.568272,0.568272,0.575605,1.434461,0.605771,0.670394,0.568272,0.568272,0.605771,0.670394,1.015586,0.727908,0.568272,0.568272,1.015586,0.727908,0.568272,0.568272,0.568272,0.568272,0.568272,0.568272,,,,,,,0.575605,1.434461,0.605771,0.670394,1.015586,0.727908,0.568272,0.568272,0.568272,0.568272,0.22894,0.486597,0.23799,0.257377,0.360935,0.274631,0.22674,0.22674,0.119621,0.119621,32.579565,13.073179,30.957168,27.973062,18.465167,25.762823,33,33,33,33,,,,,,,,,,,2580,2580,0.568272,0.568272,0.568272,0.568272,0.568272,0.568272,0.568272,0.568272,0.22674,0.22674,33,33,, +37428,1,0.032989,1,0,0,2,5,,3,5,Huron,Pkwy,4606151,0,0.033,0,0.706915,8,4.5,0.079175,,0.079175,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.096514,,0.079175,,0.096514,,0.090414,,0.079175,,0.090414,,0.117651,,0.079175,,0.117651,,0.079175,,0.079175,,0.079175,,,,,,,,0.096514,,0.090414,,0.117651,,0.079175,,0.079175,,0.034892,,0.033062,,0.041233,,0.02969,,0.015505,,20.508644,,21.89223,,16.824017,,25,,25,,,,,,,,,,,,2408,,0.079175,,0.079175,,0.079175,,0.079175,,0.02969,,25,,, +26526,0,0.132136,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.831477,0.15,4,0.792814,0.792814,0.792814,0.792814,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,,,,,,,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.261629,0.261629,0.261629,0.261629,0.261629,0.261629,0.261629,0.261629,0.133457,0.133457,10,9.999999,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.792814,0.261629,0.261629,10,10,, +37429,-1,0.02875,0,1,0,2,5,,3,5,Huron,Pkwy,1429602,4.028,4.056,0,0.61607,8,4.5,,0.069,,0.069,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.098875,,0.069,,0.098875,,0.078677,,0.069,,0.078677,,0.090973,,0.069,,0.090973,,0.069,,0.069,,0.069,,,,,,,,0.098875,,0.078677,,0.090973,,0.069,,0.069,,0.034837,,0.028778,,0.032467,,0.025875,,0.013512,,17.446302,,21.924939,,18.961605,,25,,25,,,,,,,,,,,,2408,,0.069,,0.069,,0.069,,0.069,,0.025875,,25,, +26515,0,0.299291,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.413368,0.15,4,1.795743,1.795743,1.795743,1.795743,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,,,,,,,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,0.592595,0.592595,0.592595,0.592595,0.592595,0.592595,0.592595,0.592595,0.302283,0.302283,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,1.795743,0.592595,0.592595,10,10,, +26514,0,0.103533,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.218558,0.15,4,0.621196,0.621196,0.621196,0.621196,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,,,,,,,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.204995,0.204995,0.204995,0.204995,0.204995,0.204995,0.204995,0.204995,0.104568,0.104568,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.621196,0.204995,0.204995,10,10,, +40379,1,0.314983,1,0,0,1,2,ROF,3,5,S US 23/Geddes,RAMP,1430309,0,0.315,0,,2.24,5,0.539972,,0.539972,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.585769,,0.539972,,0.585769,,0.542253,,0.539972,,0.542253,,0.541701,,0.539972,,0.541701,,0.539972,,0.539972,,0.539972,,,,,,,,0.585769,,0.542253,,0.541701,,0.539972,,0.539972,,0.232428,,0.219373,,0.219207,,0.218689,,0.115644,,32.263574,,34.852732,,34.888245,,35,,35,,,,,,,,,,,,5074,,0.539972,,0.539972,,0.539972,,0.539972,,0.218689,,35,,, +40378,-1,0.0183,0,1,0,2,4,,3,5,Geddes,Rd,4606197,0.044,0.062,0,0.392137,6,4.5,,0.033272,,0.033272,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.219597,,0.033272,,0.219597,,0.09592,,0.033272,,0.09592,,0.154075,,0.033272,,0.154075,,0.033272,,0.033272,,0.033272,,,,,,,,0.219597,,0.09592,,0.154075,,0.033272,,0.033272,,0.069173,,0.03207,,0.049517,,0.013276,,0.007004,,5,,11.446825,,7.126277,,33,,33,,,,,,,,,,,,2580,,0.033272,,0.033272,,0.033272,,0.033272,,0.013276,,33,, +10491,1,0.509126,2,0,0,1,2,,3,5,N US 23,,1431202,13.184,13.693,0,,0.58,7,0.469963,,0.469963,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.489575,,0.469963,,0.489575,,0.470289,,0.469963,,0.470289,,0.476215,,0.469963,,0.476215,,0.469963,,0.469963,,0.469963,,,,,,,,0.489575,,0.470289,,0.476215,,0.469963,,0.469963,,0.238515,,0.232729,,0.234507,,0.232632,,0.126498,,62.396133,,64.954944,,64.146579,,65,,65,,,,,,,,,,,,15136,,0.469963,,0.469963,,0.469963,,0.469963,,0.232632,,65,,, +40374,-1,0.04357,0,2,0,2,4,,3,5,Geddes,Rd,4606197,0,0.044,0,0.933648,6,4.5,,0.079219,,0.079219,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.154327,,0.079219,,0.154327,,0.08914,,0.079219,,0.08914,,0.098714,,0.079219,,0.098714,,0.079219,,0.079219,,0.079219,,,,,,,,0.154327,,0.08914,,0.098714,,0.079219,,0.079219,,0.054141,,0.034585,,0.037457,,0.031608,,0.016676,,16.939455,,29.327078,,26.48269,,33,,33,,,,,,,,,,,,5160,,0.079219,,0.079219,,0.079219,,0.079219,,0.031608,,33,, +11430,-1,0.251542,0,2,0,1,2,,3,5,S US 23,,1431603,13.464,13.716,0,,0.58,7,,0.232193,,0.232193,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.236075,,0.232193,,0.236075,,0.232501,,0.232193,,0.232501,,0.248036,,0.232193,,0.248036,,0.232193,,0.232193,,0.232193,,,,,,,,0.236075,,0.232501,,0.248036,,0.232193,,0.232193,,0.1161,,0.115028,,0.119688,,0.114936,,0.062499,,63.931103,,64.91384,,60.848286,,65,,65,,,,,,,,,,,,15136,,0.232193,,0.232193,,0.232193,,0.232193,,0.114936,,65,, +40377,1,0.011953,2,0,0,2,4,,3,5,Geddes,Rd,1448104,3.043,3.055,0,0.256128,6,4.5,0.021732,,0.021732,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.04539,,0.021732,,0.04539,,0.035084,,0.021732,,0.035084,,0.061313,,0.021732,,0.061313,,0.021732,,0.021732,,0.021732,,,,,,,,0.04539,,0.035084,,0.061313,,0.021732,,0.021732,,0.015768,,0.012677,,0.020545,,0.008671,,0.004575,,15.800052,,20.440926,,11.696725,,33,,33,,,,,,,,,,,,5160,,0.021732,,0.021732,,0.021732,,0.021732,,0.008671,,33,,, +40375,1,0.019254,1,0,0,2,4,,3,5,S US 23/Geddes,RAMP,1430309,0.315,0.334,0,0.412579,6,4.5,0.035007,,0.035007,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.089279,,0.035007,,0.089279,,0.043278,,0.035007,,0.043278,,0.04031,,0.035007,,0.04031,,0.035007,,0.035007,,0.035007,,,,,,,,0.089279,,0.043278,,0.04031,,0.035007,,0.035007,,0.030249,,0.016449,,0.015559,,0.013968,,0.007369,,12.939473,,26.692891,,28.658209,,33,,33,,,,,,,,,,,,2580,,0.035007,,0.035007,,0.035007,,0.035007,,0.013968,,33,,, +40372,0,0.11651,1,2,0,2,4,,3,5,Geddes,Rd,1448104,2.881,2.998,0,2.496645,6,4.5,0.211837,0.211837,0.211837,0.211837,33,33,7500,15000,1703,3405,3750,7500,2420,4839,2580,5160,2577,5154,0.368497,0.412682,0.211837,0.211837,0.368497,0.412682,0.497989,0.238367,0.211837,0.211837,0.497989,0.238367,1.398121,0.263969,0.211837,0.211837,1.398121,0.263969,0.211837,0.211837,0.211837,0.211837,0.211837,0.211837,,,,,,,0.368497,0.412682,0.497989,0.238367,1.398121,0.263969,0.211837,0.211837,0.211837,0.211837,0.131521,0.144776,0.170369,0.092482,0.440408,0.100162,0.084523,0.084523,0.044592,0.044592,18.970581,16.939455,14.037666,29.327078,5,26.48269,33,33,33,33,,,,,,,,,,,2580,5160,0.211837,0.211837,0.211837,0.211837,0.211837,0.211837,0.211837,0.211837,0.084523,0.084523,33,33,, +11477,0,0.302638,2,2,0,2,5,,3,5,Earhart,Rd,1442503,1.198,1.501,0,6.485095,8,4.5,0.726331,0.726331,0.726331,0.726331,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.726348,0.735196,0.726331,0.726331,0.726348,0.735196,0.726338,0.726332,0.726331,0.726331,0.726338,0.726332,0.738611,0.726923,0.726331,0.726331,0.738611,0.726923,0.726331,0.726331,0.726331,0.726331,0.726331,0.726331,,,,,,,0.726348,0.735196,0.726338,0.726332,0.738611,0.726923,0.726331,0.726331,0.726331,0.726331,0.272379,0.275034,0.272376,0.272374,0.276058,0.272552,0.272374,0.272374,0.14224,0.14224,24.999414,24.698529,24.999745,24.999961,24.584344,24.979629,25,25,25,25,,,,,,,,,,,4816,4816,0.726331,0.726331,0.726331,0.726331,0.726331,0.726331,0.726331,0.726331,0.272374,0.272374,25,25,, +29508,0,0.455161,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.753443,0.15,4,2.730964,2.730964,2.730964,2.730964,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,,,,,,,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,0.901218,0.901218,0.901218,0.901218,0.901218,0.901218,0.901218,0.901218,0.459712,0.459712,10,9.999999,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,2.730964,0.901218,0.901218,10,10,, +10772,0,0.241165,2,2,0,2,5,,3,5,Earhart,Rd,1442503,0.957,1.198,0,5.167816,8,4.5,0.578795,0.578795,0.578795,0.578795,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.582966,0.601947,0.578795,0.578795,0.582966,0.601947,0.580896,0.57956,0.578795,0.578795,0.580896,0.57956,0.635145,0.588852,0.578795,0.578795,0.635145,0.588852,0.578795,0.578795,0.578795,0.578795,0.578795,0.578795,,,,,,,0.582966,0.601947,0.580896,0.57956,0.635145,0.588852,0.578795,0.578795,0.578795,0.578795,0.2183,0.223994,0.217679,0.217278,0.233953,0.220065,0.217048,0.217048,0.113347,0.113347,24.821136,24.03848,24.909578,24.967032,22.782001,24.573036,25,25,25,25,,,,,,,,,,,4816,4816,0.578795,0.578795,0.578795,0.578795,0.578795,0.578795,0.578795,0.578795,0.217048,0.217048,25,25,, +21803,0,0.24937,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.835,1.085,0,5.343635,8,4.5,0.598487,0.598487,0.598487,0.598487,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.608263,0.83298,0.598487,0.598487,0.608263,0.83298,0.606901,0.606777,0.598487,0.598487,0.606901,0.606777,0.854929,0.700942,0.598487,0.598487,0.854929,0.700942,0.598487,0.598487,0.598487,0.598487,0.598487,0.598487,,,,,,,0.608263,0.83298,0.606901,0.606777,0.854929,0.700942,0.598487,0.598487,0.598487,0.598487,0.227366,0.29478,0.226957,0.22692,0.301365,0.255169,0.224433,0.224433,0.117204,0.117204,24.598189,17.962237,24.653415,24.658444,17.501084,21.34583,25,25,25,25,,,,,,,,,,,2408,2408,0.598487,0.598487,0.598487,0.598487,0.598487,0.598487,0.598487,0.598487,0.224433,0.224433,25,25,, +11478,0,0.078115,1,1,0,2,5,,3,5,Earhart,Rd,1442503,0.879,0.957,0,1.673901,8,4.5,0.187477,0.187477,0.187477,0.187477,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.226,0.206593,0.187477,0.187477,0.226,0.206593,0.212916,0.198005,0.187477,0.187477,0.212916,0.198005,0.283118,0.211708,0.187477,0.187477,0.283118,0.211708,0.187477,0.187477,0.187477,0.187477,0.187477,0.187477,,,,,,,0.226,0.206593,0.212916,0.198005,0.283118,0.211708,0.187477,0.187477,0.187477,0.187477,0.081861,0.076039,0.077936,0.073462,0.098996,0.077573,0.070304,0.070304,0.036714,0.036714,20.738606,22.686763,22.013021,23.670728,16.554645,22.138579,25,25,25,25,,,,,,,,,,,2408,2408,0.187477,0.187477,0.187477,0.187477,0.187477,0.187477,0.187477,0.187477,0.070304,0.070304,25,25,, +25313,0,0.40089,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.590503,0.15,4,1.603561,1.603561,1.603561,1.603561,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,,,,,,,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,0.553228,0.553228,0.553228,0.553228,0.553228,0.553228,0.553228,0.553228,0.284632,0.284632,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,1.603561,0.553228,0.553228,15,15,, +21551,0,0.076211,2,2,0,2,5,,4,5,Earhart,Rd,4600037,0,0.076,0,1.633094,5.8,4.5,0.169358,0.169358,0.169358,0.169358,27,27,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.16936,0.170457,0.169358,0.169358,0.16936,0.170457,0.169359,0.169358,0.169358,0.169358,0.169359,0.169358,0.170879,0.169431,0.169358,0.169358,0.170879,0.169431,0.169358,0.169358,0.169358,0.169358,0.169358,0.169358,,,,,,,0.16936,0.170457,0.169359,0.169358,0.170879,0.169431,0.169358,0.169358,0.169358,0.169358,0.064526,0.064855,0.064526,0.064525,0.064982,0.064547,0.064525,0.064525,0.033787,0.033787,26.999663,26.825967,26.999854,26.999978,26.759627,26.988307,27,27,27,27,,,,,,,,,,,5160,5160,0.169358,0.169358,0.169358,0.169358,0.169358,0.169358,0.169358,0.169358,0.064525,0.064525,27,27,, +37910,-1,0.018483,0,1,0,2,4,,4,2,Wickham,Rd,4706172,0.04,0.058,0,0.396065,4.5,4.5,,0.029184,,0.029184,,38,,9000,,2043,,4500,,2903,,3096,,3092,,0.029184,,0.029184,,0.029184,,0.029184,,0.029184,,0.029184,,0.029184,,0.029184,,0.029184,,0.029184,,0.029184,,0.029184,,,,,,,,0.029184,,0.029184,,0.029184,,0.029184,,0.029184,,0.012082,,0.012082,,0.012082,,0.012082,,0.006411,,38,,38,,37.999315,,38,,38,,,,,,,,,,,,3096,,0.029184,,0.029184,,0.029184,,0.029184,,0.012082,,38,, +10868,0,0.747396,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,1.476,2.223,0,16.015622,4.5,4.5,1.180098,1.180098,1.180098,1.180098,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.36701,1.287936,1.180098,1.180098,1.36701,1.287936,1.190732,1.198021,1.180098,1.180098,1.190732,1.198021,1.299603,1.34776,1.180098,1.180098,1.299603,1.34776,1.180098,1.180098,1.180098,1.180098,1.180098,1.180098,,,,,,,1.36701,1.287936,1.190732,1.198021,1.299603,1.34776,1.180098,1.180098,1.180098,1.180098,0.544634,0.520912,0.491751,0.493938,0.524412,0.538859,0.488561,0.488561,0.259228,0.259228,32.804259,34.818313,37.660655,37.431509,34.505737,33.272791,38,38,38,38,,,,,,,,,,,3096,3096,1.180098,1.180098,1.180098,1.180098,1.180098,1.180098,1.180098,1.180098,0.488561,0.488561,38,38,, +25316,0,0.713608,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.291608,0.15,4,2.854434,2.854434,2.854434,2.854434,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,,,,,,,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,0.98478,0.98478,0.98478,0.98478,0.98478,0.98478,0.98478,0.98478,0.506662,0.506662,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,2.854434,0.98478,0.98478,15,15,, +25311,0,0.250717,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.372513,0.15,4,1.002869,1.002869,1.002869,1.002869,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,,,,,,,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,0.34599,0.34599,0.34599,0.34599,0.34599,0.34599,0.34599,0.34599,0.178009,0.178009,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,1.002869,0.34599,0.34599,15,15,, +26702,0,0.259833,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.567855,0.15,4,1.039333,1.039333,1.039333,1.039333,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,,,,,,,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,0.35857,0.35857,0.35857,0.35857,0.35857,0.35857,0.35857,0.35857,0.184482,0.184482,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,1.039333,0.35857,0.35857,15,15,, +10448,1,0.480826,2,0,0,1,2,RFF,4,5,N US 23/E M 14,RAMP,1431407,0,0.481,0,,0.8,7.5,0.443839,,0.443839,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.444235,,0.443839,,0.444235,,0.443849,,0.443839,,0.443849,,0.444402,,0.443839,,0.444402,,0.443839,,0.443839,,0.443839,,,,,,,,0.444235,,0.443849,,0.444402,,0.443839,,0.443839,,0.219819,,0.219703,,0.219869,,0.2197,,0.119467,,64.942084,,64.99859,,64.917673,,65,,65,,,,,,,,,,,,14448,,0.443839,,0.443839,,0.443839,,0.443839,,0.2197,,65,,, +10861,0,0.348345,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,3.548,3.896,0,7.464546,3.7,5,0.696691,0.696691,0.696691,0.696691,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.699601,0.770193,0.696691,0.696691,0.699601,0.770193,0.697511,0.697911,0.696691,0.696691,0.697511,0.697911,0.717537,0.704758,0.696691,0.696691,0.717537,0.704758,0.696691,0.696691,0.696691,0.696691,0.696691,0.696691,,,,,,,0.699601,0.770193,0.697511,0.697911,0.717537,0.704758,0.696691,0.696691,0.696691,0.696691,0.272583,0.29376,0.271956,0.272075,0.277963,0.27413,0.271709,0.271709,0.142822,0.142822,29.875197,27.137003,29.964723,29.947563,29.128422,29.656588,30,30,30,30,,,,,,,,,,,2580,2580,0.696691,0.696691,0.696691,0.696691,0.696691,0.696691,0.696691,0.696691,0.271709,0.271709,30,30,, +11432,0,0.756515,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,3.625,4.381,0,16.211026,4.5,4.5,1.194497,1.194497,1.194497,1.194497,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,1.19776,1.287326,1.194497,1.194497,1.19776,1.287326,1.195189,1.196289,1.194497,1.194497,1.195189,1.196289,1.217936,1.205324,1.194497,1.194497,1.217936,1.205324,1.194497,1.194497,1.194497,1.194497,1.194497,1.194497,,,,,,,1.19776,1.287326,1.195189,1.196289,1.217936,1.205324,1.194497,1.194497,1.194497,1.194497,0.495501,0.52237,0.494729,0.495059,0.501553,0.49777,0.494522,0.494522,0.262391,0.262391,37.896474,35.259823,37.977988,37.94308,37.268689,37.658646,38,38,38,38,,,,,,,,,,,6192,6192,1.194497,1.194497,1.194497,1.194497,1.194497,1.194497,1.194497,1.194497,0.494522,0.494522,38,38,, +21290,0,0.506278,1,1,0,2,5,,4,5,Earhart,Rd,4600037,1.608,2.114,0,10.848811,5.8,4.5,1.125062,1.125062,1.125062,1.125062,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.125062,1.125122,1.125062,1.125062,1.125062,1.125122,1.125064,1.125064,1.125062,1.125062,1.125064,1.125064,1.125072,1.125064,1.125062,1.125062,1.125072,1.125064,1.125062,1.125062,1.125062,1.125062,1.125062,1.125062,,,,,,,1.125062,1.125122,1.125064,1.125064,1.125072,1.125064,1.125062,1.125062,1.125062,1.125062,0.428649,0.428667,0.428649,0.428649,0.428652,0.428649,0.428649,0.428649,0.22445,0.22445,26.999993,26.998556,26.999949,26.999944,26.999756,26.999944,27,27,27,27,,,,,,,,,,,2580,2580,1.125062,1.125062,1.125062,1.125062,1.125062,1.125062,1.125062,1.125062,0.428649,0.428649,27,27,, +25315,0,0.357445,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.659537,0.15,4,1.42978,1.42978,1.42978,1.42978,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,,,,,,,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,0.493274,0.493274,0.493274,0.493274,0.493274,0.493274,0.493274,0.493274,0.253786,0.253786,15,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,1.42978,0.493274,0.493274,15,15,, +26381,0,0.972471,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.838662,0.15,4,3.889884,3.889884,3.889884,3.889884,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,,,,,,,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,1.34201,1.34201,1.34201,1.34201,1.34201,1.34201,1.34201,1.34201,0.690454,0.690454,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,3.889884,1.34201,1.34201,15,15,, +26703,0,0.412373,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.836555,0.15,4,1.64949,1.64949,1.64949,1.64949,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,,,,,,,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,0.569074,0.569074,0.569074,0.569074,0.569074,0.569074,0.569074,0.569074,0.292785,0.292785,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,1.64949,0.569074,0.569074,15,15,, +26704,0,0.501441,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.745166,0.15,4,2.005764,2.005764,2.005764,2.005764,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,,,,,,,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,0.691989,0.691989,0.691989,0.691989,0.691989,0.691989,0.691989,0.691989,0.356023,0.356023,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,2.005764,0.691989,0.691989,15,15,, +10487,1,0.597312,2,0,0,1,2,,4,5,N US 23,,1431202,16.081,16.678,0,,0.8,7.5,0.511982,,0.511982,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.535261,,0.511982,,0.535261,,0.513155,,0.511982,,0.513155,,0.630484,,0.511982,,0.630484,,0.511982,,0.511982,,0.511982,,,,,,,,0.535261,,0.513155,,0.630484,,0.511982,,0.511982,,0.268094,,0.261463,,0.296662,,0.261111,,0.142502,,66.9557,,69.840057,,56.843201,,70,,70,,,,,,,,,,,,15136,,0.511982,,0.511982,,0.511982,,0.511982,,0.261111,,70,,, +10722,0,0.302712,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,3.322,3.625,0,6.486691,4.5,4.5,0.477967,0.477967,0.477967,0.477967,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.494259,0.492924,0.477967,0.477967,0.494259,0.492924,0.482418,0.48572,0.477967,0.477967,0.482418,0.48572,0.487222,0.512594,0.477967,0.477967,0.487222,0.512594,0.477967,0.477967,0.477967,0.477967,0.477967,0.477967,,,,,,,0.494259,0.492924,0.482418,0.48572,0.487222,0.512594,0.477967,0.477967,0.477967,0.477967,0.202766,0.202365,0.199214,0.200204,0.200655,0.208266,0.197878,0.197878,0.104993,0.104993,36.747408,36.846924,37.649351,37.39341,37.278127,35.43297,38,38,38,38,,,,,,,,,,,6192,6192,0.477967,0.477967,0.477967,0.477967,0.477967,0.477967,0.477967,0.477967,0.197878,0.197878,38,38,, +11417,-1,0.417389,0,2,0,1,2,,3,5,S US 23,,1431603,16.126,16.543,0,,0.58,7,,0.385283,,0.385283,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.529584,,0.385283,,0.529584,,0.387178,,0.385283,,0.387178,,0.405864,,0.385283,,0.405864,,0.385283,,0.385283,,0.385283,,,,,,,,0.529584,,0.387178,,0.405864,,0.385283,,0.385283,,0.234005,,0.191284,,0.196889,,0.190715,,0.103705,,47.288714,,64.681726,,61.703803,,65,,65,,,,,,,,,,,,15136,,0.385283,,0.385283,,0.385283,,0.385283,,0.190715,,65,, +21547,0,0.624709,1,1,0,2,5,,4,5,Earhart,Rd,4600037,0.984,1.608,0,13.386627,5.8,4.5,1.388243,1.388243,1.388243,1.388243,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.400553,1.388559,1.388243,1.388243,1.400553,1.388559,1.388716,1.388661,1.388243,1.388243,1.388716,1.388661,1.388715,1.395229,1.388243,1.388243,1.388715,1.395229,1.388243,1.388243,1.388243,1.388243,1.388243,1.388243,,,,,,,1.400553,1.388559,1.388716,1.388661,1.388715,1.395229,1.388243,1.388243,1.388243,1.388243,0.532613,0.529015,0.529063,0.529046,0.529062,0.531016,0.52892,0.52892,0.276954,0.276954,26.762689,26.993857,26.990795,26.99187,26.990823,26.864799,27,27,27,27,,,,,,,,,,,2580,2580,1.388243,1.388243,1.388243,1.388243,1.388243,1.388243,1.388243,1.388243,0.52892,0.52892,27,27,, +26509,0,0.311651,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.678244,0.15,4,1.246606,1.246606,1.246606,1.246606,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,,,,,,,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,0.430079,0.430079,0.430079,0.430079,0.430079,0.430079,0.430079,0.430079,0.221272,0.221272,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,1.246606,0.430079,0.430079,15,15,, +26510,0,0.613462,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.145611,0.15,4,2.453847,2.453847,2.453847,2.453847,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.453847,2.453848,2.453847,2.453847,2.453847,2.453848,2.453847,2.453847,2.453847,2.453847,2.453847,2.453847,2.453848,2.453847,2.453847,2.453847,2.453848,2.453847,2.453847,2.453847,2.453847,2.453847,2.453847,2.453847,,,,,,,2.453847,2.453848,2.453847,2.453847,2.453848,2.453847,2.453847,2.453847,2.453847,2.453847,0.846577,0.846577,0.846577,0.846577,0.846577,0.846577,0.846577,0.846577,0.435558,0.435558,15,14.999998,15,15,14.999998,15,15,15,15,15,,,,,,,,,,,34400,34400,2.453847,2.453847,2.453847,2.453847,2.453847,2.453847,2.453847,2.453847,0.846577,0.846577,15,15,, +10449,1,0.278627,1,0,0,1,2,RON,3,5,Plymouth/N US 23,RAMP,1431406,0,0.279,0,,1.09,4,0.417941,,0.417941,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.41797,,0.417941,,0.41797,,0.418033,,0.417941,,0.418033,,0.419854,,0.417941,,0.419854,,0.417941,,0.417941,,0.417941,,,,,,,,0.41797,,0.418033,,0.419854,,0.417941,,0.417941,,0.175544,,0.175563,,0.176109,,0.175535,,0.09334,,39.997274,,39.991167,,39.817746,,40,,40,,,,,,,,,,,,5074,,0.417941,,0.417941,,0.417941,,0.417941,,0.175535,,40,,, +10488,1,0.309952,2,0,0,1,2,,3,5,N US 23,,1431202,15.771,16.081,0,,0.58,7,0.28611,,0.28611,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.294462,,0.28611,,0.294462,,0.28648,,0.28611,,0.28648,,0.310922,,0.28611,,0.310922,,0.28611,,0.28611,,0.28611,,,,,,,,0.294462,,0.28648,,0.310922,,0.28611,,0.28611,,0.14413,,0.141735,,0.149068,,0.141624,,0.077011,,63.15639,,64.915991,,59.812914,,65,,65,,,,,,,,,,,,15136,,0.28611,,0.28611,,0.28611,,0.28611,,0.141624,,65,,, +11189,0,0.088954,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,3.233,3.322,0,1.906153,4.5,4.5,0.140453,0.140453,0.140453,0.140453,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.184161,0.148673,0.140453,0.140453,0.184161,0.148673,0.15019,0.153119,0.140453,0.140453,0.15019,0.153119,0.150658,0.206888,0.140453,0.140453,0.150658,0.206888,0.140453,0.140453,0.140453,0.140453,0.140453,0.140453,,,,,,,0.184161,0.148673,0.15019,0.153119,0.150658,0.206888,0.140453,0.140453,0.140453,0.140453,0.07126,0.060614,0.061069,0.061947,0.061209,0.078078,0.058148,0.058148,0.030853,0.030853,28.981264,35.899107,35.536517,34.85665,35.426215,25.797679,38,38,38,38,,,,,,,,,,,6192,6192,0.140453,0.140453,0.140453,0.140453,0.140453,0.140453,0.140453,0.140453,0.058148,0.058148,38,38,, +11402,1,0.395477,1,0,0,1,2,ROF,3,5,S US 23/Plymouth,RAMP,1431608,0,0.395,0,,2.24,5,0.67796,,0.67796,,35,,14750,,3348,,7375,,4758,,5074,,5068,,2.069669,,0.67796,,2.069669,,0.743041,,0.67796,,0.743041,,0.922433,,0.67796,,0.922433,,0.67796,,0.67796,,0.67796,,,,,,,,2.069669,,0.743041,,0.922433,,0.67796,,0.67796,,0.692087,,0.294098,,0.347916,,0.274574,,0.145196,,11.464926,,31.934445,,25.72394,,35,,35,,,,,,,,,,,,5074,,0.67796,,0.67796,,0.67796,,0.67796,,0.274574,,35,,, +11419,-1,0.320606,0,2,0,1,2,,3,5,S US 23,,1431603,15.805,16.126,0,,0.58,7,,0.295944,,0.295944,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.301341,,0.295944,,0.301341,,0.296013,,0.295944,,0.296013,,0.296932,,0.295944,,0.296932,,0.295944,,0.295944,,0.295944,,,,,,,,0.301341,,0.296013,,0.296932,,0.295944,,0.295944,,0.148111,,0.146513,,0.146789,,0.146492,,0.079658,,63.835973,,64.984808,,64.783742,,65,,65,,,,,,,,,,,,15136,,0.295944,,0.295944,,0.295944,,0.295944,,0.146492,,65,, +11439,0,0.011458,2,2,0,2,3,,4,5,Plymouth,Rd,1443101,3.183,3.194,0,0.245528,3.7,5,0.017187,0.017187,0.017187,0.017187,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.017421,0.025358,0.017187,0.017187,0.017421,0.025358,0.017243,0.019758,0.017187,0.017187,0.017243,0.019758,0.017249,0.02902,0.017187,0.017187,0.017249,0.02902,0.017187,0.017187,0.017187,0.017187,0.017187,0.017187,,,,,,,0.017421,0.025358,0.017243,0.019758,0.017249,0.02902,0.017187,0.017187,0.017187,0.017187,0.007289,0.00967,0.007235,0.00799,0.007237,0.010768,0.007219,0.007219,0.003838,0.003838,39.463432,27.111342,39.87059,34.795623,39.855908,23.690191,40,40,40,40,,,,,,,,,,,7568,7568,0.017187,0.017187,0.017187,0.017187,0.017187,0.017187,0.017187,0.017187,0.007219,0.007219,40,40,, +19985,1,0.211313,1,0,0,1,2,RON,3,5,Plymouth/N US 23,RAMP,2000005,0,0.211,0,,1.09,4,0.31697,,0.31697,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.322819,,0.31697,,0.322819,,0.32048,,0.31697,,0.32048,,0.394186,,0.31697,,0.394186,,0.31697,,0.31697,,0.31697,,,,,,,,0.322819,,0.32048,,0.394186,,0.31697,,0.31697,,0.134882,,0.13418,,0.156292,,0.133127,,0.07079,,39.275259,,39.56179,,32.164471,,40,,40,,,,,,,,,,,,5074,,0.31697,,0.31697,,0.31697,,0.31697,,0.133127,,40,,, +19986,1,0.223671,1,0,0,1,2,RON,3,5,Plymouth/S US 23,RAMP,2000004,0,0.224,0,,1.09,4,0.335506,,0.335506,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.335575,,0.335506,,0.335575,,0.335595,,0.335506,,0.335595,,0.336859,,0.335506,,0.336859,,0.335506,,0.335506,,0.335506,,,,,,,,0.335575,,0.335595,,0.336859,,0.335506,,0.335506,,0.140933,,0.140939,,0.141318,,0.140913,,0.07493,,39.991838,,39.989455,,39.839392,,40,,40,,,,,,,,,,,,5074,,0.335506,,0.335506,,0.335506,,0.335506,,0.140913,,40,,, +10734,0,0.181065,2,2,0,2,3,,3,5,Plymouth,Rd,1443101,3.002,3.183,0,3.879965,5,5,0.310397,0.310397,0.310397,0.310397,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.401905,0.509805,0.310397,0.310397,0.401905,0.509805,0.341525,0.373135,0.310397,0.310397,0.341525,0.373135,0.592371,0.599177,0.310397,0.310397,0.592371,0.599177,0.310397,0.310397,0.310397,0.310397,0.310397,0.310397,,,,,,,0.401905,0.509805,0.341525,0.373135,0.592371,0.599177,0.310397,0.310397,0.310397,0.310397,0.153163,0.185533,0.135049,0.144532,0.210303,0.212345,0.125711,0.125711,0.066477,0.066477,27.031045,21.309905,31.809999,29.115194,18.339695,18.131382,35,35,35,35,,,,,,,,,,,7568,7568,0.310397,0.310397,0.310397,0.310397,0.310397,0.310397,0.310397,0.310397,0.125711,0.125711,35,35,, +11455,0,0.009535,2,2,0,2,3,,3,5,Plymouth,Rd,1443101,2.992,3.002,0,0.204312,5,5,0.016345,0.016345,0.016345,0.016345,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.021164,0.021943,0.016345,0.016345,0.021164,0.021943,0.017984,0.017736,0.016345,0.016345,0.017984,0.017736,0.031193,0.020423,0.016345,0.016345,0.031193,0.020423,0.016345,0.016345,0.016345,0.016345,0.016345,0.016345,,,,,,,0.021164,0.021943,0.017984,0.017736,0.031193,0.020423,0.016345,0.016345,0.016345,0.016345,0.008065,0.008299,0.007111,0.007037,0.011074,0.007843,0.00662,0.00662,0.003501,0.003501,27.031045,26.071055,31.809999,32.254623,18.339695,28.011286,35,35,35,35,,,,,,,,,,,7568,7568,0.016345,0.016345,0.016345,0.016345,0.016345,0.016345,0.016345,0.016345,0.00662,0.00662,35,35,, +11435,0,0.038617,2,2,0,2,3,,4,5,Plymouth,Rd,1443101,3.194,3.233,0,0.827512,3.7,5,0.057926,0.057926,0.057926,0.057926,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.061964,0.058144,0.057926,0.057926,0.061964,0.058144,0.058687,0.058196,0.057926,0.057926,0.058687,0.058196,0.058728,0.058707,0.057926,0.057926,0.058728,0.058707,0.057926,0.057926,0.057926,0.057926,0.057926,0.057926,,,,,,,0.061964,0.058144,0.058687,0.058196,0.058728,0.058707,0.057926,0.057926,0.057926,0.057926,0.02554,0.024394,0.024557,0.02441,0.02457,0.024563,0.024329,0.024329,0.012937,0.012937,37.392963,39.849856,39.481044,39.814057,39.453488,39.467914,40,40,40,40,,,,,,,,,,,7568,7568,0.057926,0.057926,0.057926,0.057926,0.057926,0.057926,0.057926,0.057926,0.024329,0.024329,40,40,, +21549,0,0.158613,1,1,0,2,5,,4,5,Earhart,Rd,4600037,0.825,0.984,0,3.398847,5.8,4.5,0.352473,0.352473,0.352473,0.352473,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.354275,0.56364,0.352473,0.352473,0.354275,0.56364,0.36035,0.359676,0.352473,0.352473,0.36035,0.359676,0.594059,0.372944,0.352473,0.352473,0.594059,0.372944,0.352473,0.352473,0.352473,0.352473,0.352473,0.352473,,,,,,,0.354275,0.56364,0.36035,0.359676,0.594059,0.372944,0.352473,0.352473,0.352473,0.352473,0.134833,0.197642,0.136655,0.136453,0.206768,0.140433,0.134292,0.134292,0.070318,0.070318,26.862692,16.884484,26.409803,26.459314,16.019906,25.517976,27,27,27,27,,,,,,,,,,,2580,2580,0.352473,0.352473,0.352473,0.352473,0.352473,0.352473,0.352473,0.352473,0.134292,0.134292,27,27,, +10830,0,0.471257,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,2.726,3.197,0,10.098368,4.5,4.5,0.74409,0.74409,0.74409,0.74409,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.794098,0.911931,0.74409,0.74409,0.794098,0.911931,0.75335,0.754273,0.74409,0.74409,0.75335,0.754273,0.897687,0.812933,0.74409,0.74409,0.897687,0.812933,0.74409,0.74409,0.74409,0.74409,0.74409,0.74409,,,,,,,0.794098,0.911931,0.75335,0.754273,0.897687,0.812933,0.74409,0.74409,0.74409,0.74409,0.323056,0.358406,0.310831,0.311108,0.354133,0.328706,0.308053,0.308053,0.163452,0.163452,35.606973,31.00611,37.532945,37.486986,31.498078,34.78199,38,38,38,38,,,,,,,,,,,3096,3096,0.74409,0.74409,0.74409,0.74409,0.74409,0.74409,0.74409,0.74409,0.308053,0.308053,38,38,, +25314,0,0.40418,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.661006,0.15,4,1.616721,1.616721,1.616721,1.616721,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,,,,,,,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,0.557769,0.557769,0.557769,0.557769,0.557769,0.557769,0.557769,0.557769,0.286968,0.286968,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,1.616721,0.557769,0.557769,15,15,, +26705,0,0.515727,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.051286,0.15,4,2.062907,2.062907,2.062907,2.062907,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,,,,,,,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,0.711703,0.711703,0.711703,0.711703,0.711703,0.711703,0.711703,0.711703,0.366166,0.366166,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,2.062907,0.711703,0.711703,15,15,, +26706,0,0.560273,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.005845,0.15,4,2.241091,2.241091,2.241091,2.241091,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,,,,,,,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,0.773176,0.773176,0.773176,0.773176,0.773176,0.773176,0.773176,0.773176,0.397794,0.397794,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,2.241091,0.773176,0.773176,15,15,, +11545,0,0.350717,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,3.197,3.548,0,7.515355,3.7,5,0.701433,0.701433,0.701433,0.701433,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.704165,0.763915,0.701433,0.701433,0.704165,0.763915,0.702194,0.702557,0.701433,0.701433,0.702194,0.702557,0.720123,0.708828,0.701433,0.701433,0.720123,0.708828,0.701433,0.701433,0.701433,0.701433,0.701433,0.701433,,,,,,,0.704165,0.763915,0.702194,0.702557,0.720123,0.708828,0.701433,0.701433,0.701433,0.701433,0.274379,0.292303,0.273787,0.273896,0.279166,0.275777,0.273559,0.273559,0.143794,0.143794,29.883606,27.546257,29.96751,29.952015,29.221383,29.687011,30,30,30,30,,,,,,,,,,,2580,2580,0.701433,0.701433,0.701433,0.701433,0.701433,0.701433,0.701433,0.701433,0.273559,0.273559,30,30,, +11431,0,0.109593,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,4.381,4.49,0,2.348412,4.5,4.5,0.173041,0.173041,0.173041,0.173041,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.173648,0.192104,0.173041,0.173041,0.173648,0.192104,0.173205,0.173398,0.173041,0.173041,0.173205,0.173398,0.178449,0.17505,0.173041,0.173041,0.178449,0.17505,0.173041,0.173041,0.173041,0.173041,0.173041,0.173041,,,,,,,0.173648,0.192104,0.173205,0.173398,0.178449,0.17505,0.173041,0.173041,0.173041,0.173041,0.071821,0.077358,0.071688,0.071746,0.073261,0.072242,0.071639,0.071639,0.038011,0.038011,37.867099,34.229122,37.963996,37.921694,36.84828,37.563895,38,38,38,38,,,,,,,,,,,6192,6192,0.173041,0.173041,0.173041,0.173041,0.173041,0.173041,0.173041,0.173041,0.071639,0.071639,38,38,, +10782,0,0.704017,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,3.896,4.6,0,15.086068,3.7,5,1.408033,1.408033,1.408033,1.408033,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.414683,1.560868,1.408033,1.408033,1.414683,1.560868,1.409883,1.410716,1.408033,1.408033,1.409883,1.410716,1.453093,1.425416,1.408033,1.408033,1.453093,1.425416,1.408033,1.408033,1.408033,1.408033,1.408033,1.408033,,,,,,,1.414683,1.560868,1.409883,1.410716,1.453093,1.425416,1.408033,1.408033,1.408033,1.408033,0.551128,0.594983,0.549688,0.549938,0.562651,0.554348,0.549133,0.549133,0.288647,0.288647,29.858976,27.062506,29.960644,29.942941,29.069714,29.63415,30,30,30,30,,,,,,,,,,,2580,2580,1.408033,1.408033,1.408033,1.408033,1.408033,1.408033,1.408033,1.408033,0.549133,0.549133,30,30,, +26383,0,0.821874,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.61158,0.15,4,3.287495,3.287495,3.287495,3.287495,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,,,,,,,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,1.134186,1.134186,1.134186,1.134186,1.134186,1.134186,1.134186,1.134186,0.58353,0.58353,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,3.287495,1.134186,1.134186,15,15,, +37299,0,0.124581,1,1,0,2,4,,4,5,Superior,Rd,4606142,0.04,0.164,0,2.669601,4.5,4.5,0.196707,0.196707,0.196707,0.196707,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.196749,0.196773,0.196707,0.196707,0.196749,0.196773,0.196709,0.196709,0.196707,0.196707,0.196709,0.196709,0.196825,0.197303,0.196707,0.196707,0.196825,0.197303,0.196707,0.196707,0.196707,0.196707,0.196707,0.196707,,,,,,,0.196749,0.196773,0.196709,0.196709,0.196825,0.197303,0.196707,0.196707,0.196707,0.196707,0.081449,0.081457,0.081437,0.081437,0.081472,0.081615,0.081437,0.081437,0.04321,0.04321,37.991917,37.9873,37.999601,37.999654,37.977245,37.885343,38,38,38,38,,,,,,,,,,,3096,3096,0.196707,0.196707,0.196707,0.196707,0.196707,0.196707,0.196707,0.196707,0.081437,0.081437,38,38,, +26511,0,0.161285,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.456114,0.15,4,0.645141,0.645141,0.645141,0.645141,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,,,,,,,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.222574,0.222574,0.222574,0.222574,0.222574,0.222574,0.222574,0.222574,0.114513,0.114513,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.645141,0.222574,0.222574,15,15,, +30012,0,1.87076,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.087714,0.15,4,7.48304,7.48304,7.48304,7.48304,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,,,,,,,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,2.581649,2.581649,2.581649,2.581649,2.581649,2.581649,2.581649,2.581649,1.32824,1.32824,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,7.48304,2.581649,2.581649,15,15,, +11066,0,0.254448,1,1,0,2,4,,4,5,Geddes,Rd,1448104,4.461,4.716,0,5.452463,4.5,4.5,0.40176,0.40176,0.40176,0.40176,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.402698,0.549772,0.40176,0.40176,0.402698,0.549772,0.403798,0.408181,0.40176,0.40176,0.403798,0.408181,0.509678,0.431482,0.40176,0.40176,0.509678,0.431482,0.40176,0.40176,0.40176,0.40176,0.40176,0.40176,,,,,,,0.402698,0.549772,0.403798,0.408181,0.509678,0.431482,0.40176,0.40176,0.40176,0.40176,0.16661,0.210732,0.16694,0.168255,0.198704,0.175245,0.166329,0.166329,0.088253,0.088253,37.911555,27.769496,37.808222,37.402251,29.953988,35.382436,38,38,38,38,,,,,,,,,,,3096,3096,0.40176,0.40176,0.40176,0.40176,0.40176,0.40176,0.40176,0.40176,0.166329,0.166329,38,38,, +26512,0,0.54719,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.725496,0.15,4,2.188759,2.188759,2.188759,2.188759,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,,,,,,,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,0.755122,0.755122,0.755122,0.755122,0.755122,0.755122,0.755122,0.755122,0.388505,0.388505,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,2.188759,0.755122,0.755122,15,15,, +37291,1,0.032061,2,0,0,2,4,,4,5,Geddes,Rd,1448104,5.378,5.411,0,0.687023,4.5,4.5,0.050623,,0.050623,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.05065,,0.050623,,0.05065,,0.050644,,0.050623,,0.050644,,0.051743,,0.050623,,0.051743,,0.050623,,0.050623,,0.050623,,,,,,,,0.05065,,0.050644,,0.051743,,0.050623,,0.050623,,0.020966,,0.020964,,0.021294,,0.020958,,0.01112,,37.979815,,37.984324,,37.177298,,38,,38,,,,,,,,,,,,6192,,0.050623,,0.050623,,0.050623,,0.050623,,0.020958,,38,,, +37296,0,0.657642,1,1,0,2,4,,4,5,Geddes,Rd,1448104,5.517,6.174,0,14.092327,4.5,4.5,1.038382,1.038382,1.038382,1.038382,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.051109,1.672415,1.038382,1.038382,1.051109,1.672415,1.046143,1.061983,1.038382,1.038382,1.046143,1.061983,1.426188,1.106515,1.038382,1.038382,1.426188,1.106515,1.038382,1.038382,1.038382,1.038382,1.038382,1.038382,,,,,,,1.051109,1.672415,1.046143,1.061983,1.426188,1.106515,1.038382,1.038382,1.038382,1.038382,0.433708,0.6201,0.432218,0.43697,0.546232,0.45033,0.42989,0.42989,0.228098,0.228098,37.539907,23.59373,37.718101,37.155523,27.667131,35.660158,38,38,38,38,,,,,,,,,,,3096,3096,1.038382,1.038382,1.038382,1.038382,1.038382,1.038382,1.038382,1.038382,0.42989,0.42989,38,38,, +37290,-1,0.018916,0,1,0,2,4,,4,5,Geddes,Rd,4606144,0,0.019,0,0.405336,4.5,4.5,,0.029867,,0.029867,,38,,9000,,2043,,4500,,2903,,3096,,3092,,0.029869,,0.029867,,0.029869,,0.029867,,0.029867,,0.029867,,0.02987,,0.029867,,0.02987,,0.029867,,0.029867,,0.029867,,,,,,,,0.029869,,0.029867,,0.02987,,0.029867,,0.029867,,0.012366,,0.012365,,0.012366,,0.012365,,0.006561,,37.996972,,37.999887,,37.996147,,38,,38,,,,,,,,,,,,3096,,0.029867,,0.029867,,0.029867,,0.029867,,0.012365,,38,, +37297,1,0.039822,1,0,0,2,4,,4,5,Superior,Rd,4606142,0,0.04,0,0.853329,4.5,4.5,0.062877,,0.062877,,38,,9000,,2043,,4500,,2903,,3096,,3092,,0.06289,,0.062877,,0.06289,,0.062878,,0.062877,,0.062878,,0.062915,,0.062877,,0.062915,,0.062877,,0.062877,,0.062877,,,,,,,,0.06289,,0.062878,,0.062915,,0.062877,,0.062877,,0.026035,,0.026031,,0.026042,,0.026031,,0.013812,,37.991917,,37.999601,,37.977245,,38,,38,,,,,,,,,,,,3096,,0.062877,,0.062877,,0.062877,,0.062877,,0.026031,,38,,, +11246,0,1.028453,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,1.114,2.142,0,22.038276,3,4,1.542679,1.542679,1.542679,1.542679,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.800659,1.846474,1.542679,1.542679,1.800659,1.846474,1.571653,1.595694,1.542679,1.542679,1.571653,1.595694,1.809071,1.823773,1.542679,1.542679,1.809071,1.823773,1.542679,1.542679,1.542679,1.542679,1.542679,1.542679,,,,,,,1.800659,1.846474,1.571653,1.595694,1.809071,1.823773,1.542679,1.542679,1.542679,1.542679,0.725319,0.739064,0.656617,0.66383,0.727843,0.732253,0.647925,0.647925,0.344532,0.344532,34.269217,33.418925,39.262589,38.671045,34.109873,33.834901,40,40,40,40,,,,,,,,,,,3096,3096,1.542679,1.542679,1.542679,1.542679,1.542679,1.542679,1.542679,1.542679,0.647925,0.647925,40,40,, +11476,-1,0.86899,0,2,0,1,2,RON,5,5,W M 153,,1431602,0,0.869,0,,1.09,4,,1.158654,,1.158654,,45,,30000,,6810,,15000,,9678,,10320,,10308,,1.160468,,1.158654,,1.160468,,1.15882,,1.158654,,1.15882,,1.159989,,1.158654,,1.159989,,1.158654,,1.158654,,1.158654,,,,,,,,1.160468,,1.15882,,1.159989,,1.158654,,1.158654,,0.504559,,0.504064,,0.504415,,0.504014,,0.269387,,44.929644,,44.993555,,44.948197,,45,,45,,,,,,,,,,,,10320,,1.158654,,1.158654,,1.158654,,1.158654,,0.504014,,45,, +11509,1,0.678169,2,0,0,1,2,ROF,5,5,E M 153,,1431510,0,0.678,0,,2.24,5,1.017254,,1.017254,,40,,30000,,6810,,15000,,9678,,10320,,10308,,1.018035,,1.017254,,1.018035,,1.017311,,1.017254,,1.017311,,1.018928,,1.017254,,1.018928,,1.017254,,1.017254,,1.017254,,,,,,,,1.018035,,1.017311,,1.018928,,1.017254,,1.017254,,0.427481,,0.427264,,0.427749,,0.427247,,0.227187,,39.969297,,39.997758,,39.93427,,40,,40,,,,,,,,,,,,10320,,1.017254,,1.017254,,1.017254,,1.017254,,0.427247,,40,,, +11541,1,0.751741,2,0,0,1,2,,5,5,E M 14,,1431408,5.307,6.058,0,,1.02,7,0.644349,,0.644349,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.724362,,0.644349,,0.724362,,0.647631,,0.644349,,0.647631,,0.685549,,0.644349,,0.685549,,0.644349,,0.644349,,0.644349,,,,,,,,0.724362,,0.647631,,0.685549,,0.644349,,0.644349,,0.352622,,0.329603,,0.340978,,0.328618,,0.179344,,62.26781,,69.645305,,65.793128,,70,,70,,,,,,,,,,,,15136,,0.644349,,0.644349,,0.644349,,0.644349,,0.328618,,70,,, +11565,-1,0.461907,0,2,0,1,2,,5,5,W M 14,,1431410,5.294,5.756,0,,1.02,7,,0.39592,,0.39592,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.437058,,0.39592,,0.437058,,0.398419,,0.39592,,0.398419,,0.425119,,0.39592,,0.425119,,0.39592,,0.39592,,0.39592,,,,,,,,0.437058,,0.398419,,0.425119,,0.39592,,0.39592,,0.214261,,0.202669,,0.210679,,0.201919,,0.110198,,63.411254,,69.561018,,65.192208,,70,,70,,,,,,,,,,,,15136,,0.39592,,0.39592,,0.39592,,0.39592,,0.201919,,70,, +26295,0,0.066027,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.414873,0.15,4,0.26411,0.26411,0.26411,0.26411,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,,,,,,,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.091118,0.091118,0.091118,0.091118,0.091118,0.091118,0.091118,0.091118,0.046879,0.046879,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.26411,0.091118,0.091118,15,15,, +30011,0,0.298076,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.387353,0.15,4,1.192306,1.192306,1.192306,1.192306,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,,,,,,,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,0.411346,0.411346,0.411346,0.411346,0.411346,0.411346,0.411346,0.411346,0.211634,0.211634,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,1.192306,0.411346,0.411346,15,15,, +11248,0,0.607038,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,0.25,0.857,0,13.007965,3,4,0.910558,0.910558,0.910558,0.910558,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.071609,2.275335,0.910558,0.910558,1.071609,2.275335,0.93758,0.958824,0.910558,0.910558,0.93758,0.958824,1.554916,1.202217,0.910558,0.910558,1.554916,1.202217,0.910558,0.910558,0.910558,0.910558,0.910558,0.910558,,,,,,,1.071609,2.275335,0.93758,0.958824,1.554916,1.202217,0.910558,0.910558,0.910558,0.910558,0.43075,0.791868,0.390541,0.396914,0.575742,0.469932,0.382434,0.382434,0.203358,0.203358,33.988416,16.007443,38.847149,37.986415,23.423975,30.295939,40,40,40,40,,,,,,,,,,,3096,3096,0.910558,0.910558,0.910558,0.910558,0.910558,0.910558,0.910558,0.910558,0.382434,0.382434,40,40,, +11285,0,0.63954,1,1,0,2,5,,5,5,Cherry Hill,Rd,1436303,0,0.639,0,13.704428,3.7,5,1.27908,1.27908,1.27908,1.27908,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.279081,1.279179,1.27908,1.27908,1.279081,1.279179,1.279083,1.279083,1.27908,1.27908,1.279083,1.279083,1.279157,1.279087,1.27908,1.27908,1.279157,1.279087,1.27908,1.27908,1.27908,1.27908,1.27908,1.27908,,,,,,,1.279081,1.279179,1.279083,1.279083,1.279157,1.279087,1.27908,1.27908,1.27908,1.27908,0.498841,0.498871,0.498842,0.498842,0.498864,0.498843,0.498841,0.498841,0.262211,0.262211,29.999978,29.997668,29.999925,29.999919,29.998197,29.999842,30,30,30,30,,,,,,,,,,,2580,2580,1.27908,1.27908,1.27908,1.27908,1.27908,1.27908,1.27908,1.27908,0.498841,0.498841,30,30,, +11247,0,0.257069,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,0.857,1.114,0,5.508621,3,4,0.385603,0.385603,0.385603,0.385603,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.431377,0.499928,0.385603,0.385603,0.431377,0.499928,0.397047,0.406044,0.385603,0.385603,0.397047,0.406044,0.485446,0.461152,0.385603,0.385603,0.485446,0.461152,0.385603,0.385603,0.385603,0.385603,0.385603,0.385603,,,,,,,0.431377,0.499928,0.397047,0.406044,0.485446,0.461152,0.385603,0.385603,0.385603,0.385603,0.175685,0.196251,0.165386,0.168085,0.191906,0.184618,0.161953,0.161953,0.086118,0.086118,35.755619,30.852721,38.847149,37.986415,31.773143,33.446981,40,40,40,40,,,,,,,,,,,3096,3096,0.385603,0.385603,0.385603,0.385603,0.385603,0.385603,0.385603,0.385603,0.161953,0.161953,40,40,, +19289,1,0.294762,1,0,0,1,2,RON,5,5,W M 153/E M 14,RAMP,1789401,0,0.295,0,,1.09,4,0.393017,,0.393017,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.395533,,0.393017,,0.395533,,0.393149,,0.393017,,0.393149,,0.393929,,0.393017,,0.393929,,0.393017,,0.393017,,0.393017,,,,,,,,0.395533,,0.393149,,0.393929,,0.393017,,0.393017,,0.171717,,0.171002,,0.171236,,0.170962,,0.091376,,44.713693,,44.984826,,44.895742,,45,,45,,,,,,,,,,,,5160,,0.393017,,0.393017,,0.393017,,0.393017,,0.170962,,45,,, +19290,1,0.643192,1,0,0,1,2,ROF,5,5,W M 14/E M 153,RAMP,1789310,0,0.643,0,,2.24,5,0.964788,,0.964788,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.964971,,0.964788,,0.964971,,0.964808,,0.964788,,0.964808,,0.96716,,0.964788,,0.96716,,0.964788,,0.964788,,0.964788,,,,,,,,0.964971,,0.964808,,0.96716,,0.964788,,0.964788,,0.405266,,0.405217,,0.405923,,0.405211,,0.215469,,39.992402,,39.999182,,39.901892,,40,,40,,,,,,,,,,,,5160,,0.964788,,0.964788,,0.964788,,0.964788,,0.405211,,40,,, +11473,-1,0.141471,0,2,0,2,3,DIV,5,5,W M 153,,1431602,0.869,1.01,0,3.031518,1.7,4,,0.154332,,0.154332,,55,,24000,,5448,,12000,,7742,,8256,,8246,,0.162218,,0.154332,,0.162218,,0.154911,,0.154332,,0.154911,,0.158724,,0.154332,,0.158724,,0.154332,,0.154332,,0.154332,,,,,,,,0.162218,,0.154911,,0.158724,,0.154332,,0.154332,,0.07413,,0.071938,,0.073082,,0.071764,,0.038712,,52.326026,,54.794477,,53.478096,,55,,55,,,,,,,,,,,,8256,,0.154332,,0.154332,,0.154332,,0.154332,,0.071764,,55,, +11488,1,0.159115,2,0,0,2,3,DIV,5,5,E M 153,,1431510,0.678,0.837,0,3.409598,1.7,4,0.17358,,0.17358,,55,,24000,,5448,,12000,,7742,,8256,,8246,,0.177974,,0.17358,,0.177974,,0.17417,,0.17358,,0.17417,,0.186248,,0.17358,,0.186248,,0.17358,,0.17358,,0.17358,,,,,,,,0.177974,,0.17417,,0.186248,,0.17358,,0.17358,,0.082033,,0.080892,,0.084515,,0.080714,,0.04354,,53.642014,,54.813385,,51.259052,,55,,55,,,,,,,,,,,,8256,,0.17358,,0.17358,,0.17358,,0.17358,,0.080714,,55,,, +11245,0,0.023955,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,2.142,2.166,0,0.513327,3,4,0.035933,0.035933,0.035933,0.035933,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.053312,0.037716,0.035933,0.035933,0.053312,0.037716,0.036254,0.036259,0.035933,0.035933,0.036254,0.036259,0.050439,0.036555,0.035933,0.035933,0.050439,0.036555,0.035933,0.035933,0.035933,0.035933,0.035933,0.035933,,,,,,,0.053312,0.037716,0.036254,0.036259,0.050439,0.036555,0.035933,0.035933,0.035933,0.035933,0.020306,0.015627,0.015188,0.01519,0.019444,0.015278,0.015092,0.015092,0.008025,0.008025,26.960544,38.109209,39.645545,39.640465,28.496322,39.319161,40,40,40,40,,,,,,,,,,,3096,3096,0.035933,0.035933,0.035933,0.035933,0.035933,0.035933,0.035933,0.035933,0.015092,0.015092,40,40,, +7193,0,0.698652,1,1,0,2,5,,4,8,9 Mile,Rd,932909,2.897,3.596,0,14.971112,5.8,4.5,1.55256,1.55256,1.55256,1.55256,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.697777,1.57739,1.55256,1.55256,1.697777,1.57739,1.564726,1.561678,1.55256,1.55256,1.564726,1.561678,1.6155,1.68816,1.55256,1.55256,1.6155,1.68816,1.55256,1.55256,1.55256,1.55256,1.55256,1.55256,,,,,,,1.697777,1.57739,1.564726,1.561678,1.6155,1.68816,1.55256,1.55256,1.55256,1.55256,0.635091,0.598974,0.595175,0.594261,0.610407,0.632205,0.591525,0.591525,0.309736,0.309736,24.690582,26.574987,26.790075,26.842354,25.948082,24.831248,27,27,27,27,,,,,,,,,,,2580,2580,1.55256,1.55256,1.55256,1.55256,1.55256,1.55256,1.55256,1.55256,0.591525,0.591525,27,27,, +7367,0,0.9152,1,1,0,2,5,GRV,5,8,8 Mile,Rd,942009,1.534,2.449,0,19.611425,5.55,5,2.745599,2.745599,2.745599,2.745599,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.745627,2.7456,2.745599,2.745599,2.745627,2.7456,2.745599,2.745599,2.745599,2.745599,2.745599,2.745599,2.745606,2.745641,2.745599,2.745599,2.745606,2.745641,2.745599,2.745599,2.745599,2.745599,2.745599,2.745599,,,,,,,2.745627,2.7456,2.745599,2.745599,2.745606,2.745641,2.745599,2.745599,2.745599,2.745599,0.988424,0.988416,0.988416,0.988416,0.988418,0.988428,0.988416,0.988416,0.512512,0.512512,19.999796,19.999994,20,20,19.999954,19.999697,20,20,20,20,,,,,,,,,,,2236,2236,2.745599,2.745599,2.745599,2.745599,2.745599,2.745599,2.745599,2.745599,0.988416,0.988416,20,20,, +8159,0,0.508891,1,1,0,2,4,,4,8,10 Mile,Rd,942305,0,0.509,0,10.904817,4.5,4.5,0.803513,0.803513,0.803513,0.803513,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.860368,0.843575,0.803513,0.803513,0.860368,0.843575,0.815968,0.81231,0.803513,0.803513,0.815968,0.81231,0.879047,0.882679,0.803513,0.803513,0.879047,0.882679,0.803513,0.803513,0.803513,0.803513,0.803513,0.803513,,,,,,,0.860368,0.843575,0.815968,0.81231,0.879047,0.882679,0.803513,0.803513,0.803513,0.803513,0.349711,0.344673,0.336391,0.335294,0.355315,0.356404,0.332654,0.332654,0.176505,0.176505,35.488857,36.195329,37.419969,37.588461,34.734752,34.591855,38,38,38,38,,,,,,,,,,,3096,3096,0.803513,0.803513,0.803513,0.803513,0.803513,0.803513,0.803513,0.803513,0.332654,0.332654,38,38,, +9920,0,1.016311,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,20.093,21.109,0,21.778086,3,4,1.524466,1.524466,1.524466,1.524466,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.681079,1.545401,1.524466,1.524466,1.681079,1.545401,1.524522,1.524575,1.524466,1.524466,1.524522,1.524575,1.551732,1.597377,1.524466,1.524466,1.551732,1.597377,1.524466,1.524466,1.524466,1.524466,1.524466,1.524466,,,,,,,1.681079,1.545401,1.524522,1.524575,1.551732,1.597377,1.524466,1.524466,1.524466,1.524466,0.687259,0.646556,0.640293,0.640309,0.648456,0.662149,0.640276,0.640276,0.340464,0.340464,36.273523,39.458124,39.998528,39.997129,39.297147,38.174228,40,40,40,40,,,,,,,,,,,3096,3096,1.524466,1.524466,1.524466,1.524466,1.524466,1.524466,1.524466,1.524466,0.640276,0.640276,40,40,, +10749,0,0.997783,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,9.224,10.221,0,21.381068,3,4,1.496675,1.496675,1.496675,1.496675,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.577999,2.095616,1.496675,1.496675,1.577999,2.095616,1.515129,1.53277,1.496675,1.496675,1.515129,1.53277,1.882339,1.651818,1.496675,1.496675,1.882339,1.651818,1.496675,1.496675,1.496675,1.496675,1.496675,1.496675,,,,,,,1.577999,2.095616,1.515129,1.53277,1.882339,1.651818,1.496675,1.496675,1.496675,1.496675,0.653001,0.808286,0.63414,0.639432,0.744303,0.675146,0.628603,0.628603,0.334257,0.334257,37.938547,28.567728,39.512798,39.058033,31.804571,36.243102,40,40,40,40,,,,,,,,,,,3096,3096,1.496675,1.496675,1.496675,1.496675,1.496675,1.496675,1.496675,1.496675,0.628603,0.628603,40,40,, +10768,0,1.134934,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,4.819,5.954,0,24.320011,3,4,1.702401,1.702401,1.702401,1.702401,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.708144,1.843064,1.702401,1.702401,1.708144,1.843064,1.70353,1.705727,1.702401,1.702401,1.70353,1.705727,1.774739,1.721777,1.702401,1.702401,1.774739,1.721777,1.702401,1.702401,1.702401,1.702401,1.702401,1.702401,,,,,,,1.708144,1.843064,1.70353,1.705727,1.774739,1.721777,1.702401,1.702401,1.702401,1.702401,0.716731,0.757207,0.715347,0.716006,0.73671,0.720821,0.715008,0.715008,0.380203,0.380203,39.8655,36.947186,39.973488,39.921992,38.369595,39.54985,40,40,40,40,,,,,,,,,,,3096,3096,1.702401,1.702401,1.702401,1.702401,1.702401,1.702401,1.702401,1.702401,0.715008,0.715008,40,40,, +10981,0,2.35111,1,1,0,2,6,GRV,5,5,Sutton,Rd,1446902,1.62,3.97,0,50.380923,5.55,5,5.642663,5.642663,5.642663,5.642663,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,5.642666,5.671945,5.642663,5.642663,5.642666,5.671945,5.64268,5.642698,5.642663,5.642663,5.64268,5.642698,5.644989,5.642773,5.642663,5.642663,5.644989,5.642773,5.642663,5.642663,5.642663,5.642663,5.642663,5.642663,,,,,,,5.642666,5.671945,5.64268,5.642698,5.644989,5.642773,5.642663,5.642663,5.642663,5.642663,2.115999,2.124783,2.116004,2.116009,2.116696,2.116032,2.115999,2.115999,1.105022,1.105022,24.99999,24.870936,24.999929,24.999846,24.989701,24.999514,25,25,25,25,,,,,,,,,,,2236,2236,5.642663,5.642663,5.642663,5.642663,5.642663,5.642663,5.642663,5.642663,2.115999,2.115999,25,25,, +11021,0,0.845428,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,2.318,3.163,0,18.11631,3.7,5,1.690856,1.690856,1.690856,1.690856,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.69826,1.690856,1.690856,1.690856,1.69826,1.690856,1.690856,1.690856,1.690856,1.690856,1.690856,1.690856,1.690857,1.691529,1.690856,1.690856,1.690857,1.691529,1.690856,1.690856,1.690856,1.690856,1.690856,1.690856,,,,,,,1.69826,1.690856,1.690856,1.690856,1.690857,1.691529,1.690856,1.690856,1.690856,1.690856,0.661655,0.659434,0.659434,0.659434,0.659434,0.659636,0.659434,0.659434,0.346625,0.346625,29.869199,30,29.999999,30,29.999977,29.988052,30,30,30,30,,,,,,,,,,,2580,2580,1.690856,1.690856,1.690856,1.690856,1.690856,1.690856,1.690856,1.690856,0.659434,0.659434,30,30,, +26301,0,1.37016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.360566,0.15,4,5.480639,5.480639,5.480639,5.480639,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,,,,,,,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,1.89082,1.89082,1.89082,1.89082,1.89082,1.89082,1.89082,1.89082,0.972813,0.972813,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,5.480639,1.89082,1.89082,15,15,, +26348,0,1.532624,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.841951,0.15,4,6.130497,6.130497,6.130497,6.130497,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,,,,,,,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,2.115022,2.115022,2.115022,2.115022,2.115022,2.115022,2.115022,2.115022,1.088163,1.088163,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,6.130497,2.115022,2.115022,15,15,, +26707,0,2.353225,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,50.42624,0.15,4,9.412898,9.412898,9.412898,9.412898,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,,,,,,,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,3.24745,3.24745,3.24745,3.24745,3.24745,3.24745,3.24745,3.24745,1.670789,1.670789,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,9.412898,3.24745,3.24745,15,15,, +26708,0,0.345603,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.405788,0.15,4,1.382414,1.382414,1.382414,1.382414,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,,,,,,,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,0.476933,0.476933,0.476933,0.476933,0.476933,0.476933,0.476933,0.476933,0.245378,0.245378,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,1.382414,0.476933,0.476933,15,15,, +26709,0,1.742061,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.329879,0.15,4,6.968244,6.968244,6.968244,6.968244,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,,,,,,,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,2.404044,2.404044,2.404044,2.404044,2.404044,2.404044,2.404044,2.404044,1.236863,1.236863,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,6.968244,2.404044,2.404044,15,15,, +26710,0,1.601547,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,34.318854,0.15,4,6.406186,6.406186,6.406186,6.406186,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,,,,,,,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,2.210134,2.210134,2.210134,2.210134,2.210134,2.210134,2.210134,2.210134,1.137098,1.137098,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,6.406186,2.210134,2.210134,15,15,, +26713,0,0.771468,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,16.531456,0.15,4,3.085872,3.085872,3.085872,3.085872,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,,,,,,,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,1.064626,1.064626,1.064626,1.064626,1.064626,1.064626,1.064626,1.064626,0.547742,0.547742,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,3.085872,1.064626,1.064626,15,15,, +9650,0,1.655834,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,18.438,20.093,0,35.482149,3,4,2.48375,2.48375,2.48375,2.48375,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.148932,2.533859,2.48375,2.48375,3.148932,2.533859,2.484073,2.484091,2.48375,2.48375,2.484073,2.484091,2.545284,2.852444,2.48375,2.48375,2.545284,2.852444,2.48375,2.48375,2.48375,2.48375,2.48375,2.48375,,,,,,,3.148932,2.533859,2.484073,2.484091,2.545284,2.852444,2.48375,2.48375,2.48375,2.48375,1.24273,1.058208,1.043272,1.043277,1.061635,1.153783,1.043175,1.043175,0.554704,0.554704,31.550388,39.208982,39.994802,39.994516,39.032983,34.829784,40,40,40,40,,,,,,,,,,,3096,3096,2.48375,2.48375,2.48375,2.48375,2.48375,2.48375,2.48375,2.48375,1.043175,1.043175,40,40,, +11175,0,0.674596,1,1,0,2,6,,5,5,Sutton,Rd,1446902,0.945,1.62,0,14.455624,5.8,6,1.349192,1.349192,1.349192,1.349192,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.349264,1.444661,1.349192,1.349192,1.349264,1.444661,1.349203,1.349228,1.349192,1.349192,1.349203,1.349228,1.370851,1.349441,1.349192,1.349192,1.370851,1.349441,1.349192,1.349192,1.349192,1.349192,1.349192,1.349192,,,,,,,1.349264,1.444661,1.349203,1.349228,1.370851,1.349441,1.349192,1.349192,1.349192,1.349192,0.526206,0.554826,0.526188,0.526196,0.532683,0.52626,0.526185,0.526185,0.276584,0.276584,29.998398,28.017462,29.999742,29.999187,29.526002,29.994447,30,30,30,30,,,,,,,,,,,2236,2236,1.349192,1.349192,1.349192,1.349192,1.349192,1.349192,1.349192,1.349192,0.526185,0.526185,30,30,, +26347,0,1.635651,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.049662,0.15,4,6.542603,6.542603,6.542603,6.542603,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,,,,,,,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,2.257198,2.257198,2.257198,2.257198,2.257198,2.257198,2.257198,2.257198,1.161312,1.161312,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,6.542603,2.257198,2.257198,15,15,, +21838,0,0.941348,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,2.854,3.795,0,20.171742,3,4,1.412022,1.412022,1.412022,1.412022,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.412025,1.412332,1.412022,1.412022,1.412025,1.412332,1.41203,1.412031,1.412022,1.412022,1.41203,1.412031,1.412221,1.412057,1.412022,1.412022,1.412221,1.412057,1.412022,1.412022,1.412022,1.412022,1.412022,1.412022,,,,,,,1.412025,1.412332,1.41203,1.412031,1.412221,1.412057,1.412022,1.412022,1.412022,1.412022,0.59305,0.593142,0.593052,0.593052,0.593109,0.59306,0.593049,0.593049,0.315352,0.315352,39.999913,39.99122,39.999777,39.999739,39.994363,39.999005,40,40,40,40,,,,,,,,,,,3096,3096,1.412022,1.412022,1.412022,1.412022,1.412022,1.412022,1.412022,1.412022,0.593049,0.593049,40,40,, +26350,0,1.228192,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.318397,0.15,4,4.912767,4.912767,4.912767,4.912767,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,,,,,,,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,1.694905,1.694905,1.694905,1.694905,1.694905,1.694905,1.694905,1.694905,0.872016,0.872016,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,4.912767,1.694905,1.694905,15,15,, +10980,0,0.255525,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,4.404,4.66,0,5.475546,3,4,0.383288,0.383288,0.383288,0.383288,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.387823,0.88287,0.383288,0.383288,0.387823,0.88287,0.386116,0.390626,0.383288,0.383288,0.386116,0.390626,0.628231,0.412551,0.383288,0.383288,0.628231,0.412551,0.383288,0.383288,0.383288,0.383288,0.383288,0.383288,,,,,,,0.387823,0.88287,0.386116,0.390626,0.628231,0.412551,0.383288,0.383288,0.383288,0.383288,0.162341,0.310856,0.161829,0.163182,0.234464,0.16976,0.160981,0.160981,0.085601,0.085601,39.532315,17.365547,39.707036,39.248629,24.404296,37.162756,40,40,40,40,,,,,,,,,,,3096,3096,0.383288,0.383288,0.383288,0.383288,0.383288,0.383288,0.383288,0.383288,0.160981,0.160981,40,40,, +10983,0,0.945776,1,1,0,2,6,,5,5,Sutton,Rd,1446902,0,0.945,0,20.266627,5.8,6,1.891552,1.891552,1.891552,1.891552,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.891552,1.959672,1.891552,1.891552,1.891552,1.959672,1.891552,1.891553,1.891552,1.891552,1.891552,1.891553,1.903203,1.891573,1.891552,1.891552,1.903203,1.891573,1.891552,1.891552,1.891552,1.891552,1.891552,1.891552,,,,,,,1.891552,1.959672,1.891552,1.891553,1.903203,1.891573,1.891552,1.891552,1.891552,1.891552,0.737705,0.758141,0.737705,0.737706,0.741201,0.737711,0.737705,0.737705,0.387768,0.387768,29.999992,28.95717,29.999999,29.999984,29.816347,29.99967,30,30,30,30,,,,,,,,,,,2236,2236,1.891552,1.891552,1.891552,1.891552,1.891552,1.891552,1.891552,1.891552,0.737705,0.737705,30,30,, +25038,0,1.038549,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.254618,0.15,4,4.154195,4.154195,4.154195,4.154195,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,,,,,,,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,1.433197,1.433197,1.433197,1.433197,1.433197,1.433197,1.433197,1.433197,0.73737,0.73737,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,4.154195,1.433197,1.433197,15,15,, +26346,0,0.482896,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.347766,0.15,4,1.931583,1.931583,1.931583,1.931583,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,,,,,,,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,0.666396,0.666396,0.666396,0.666396,0.666396,0.666396,0.666396,0.666396,0.342856,0.342856,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,1.931583,0.666396,0.666396,15,15,, +10979,0,0.159803,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,4.66,4.819,0,3.424348,3,4,0.239704,0.239704,0.239704,0.239704,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.241239,0.418367,0.239704,0.239704,0.241239,0.418367,0.240048,0.240932,0.239704,0.239704,0.240048,0.240932,0.31462,0.247338,0.239704,0.239704,0.31462,0.247338,0.239704,0.239704,0.239704,0.239704,0.239704,0.239704,,,,,,,0.241239,0.418367,0.240048,0.240932,0.31462,0.247338,0.239704,0.239704,0.239704,0.239704,0.101136,0.154275,0.100779,0.101044,0.123151,0.102966,0.100676,0.100676,0.053534,0.053534,39.74562,22.918083,39.942807,39.796127,30.475398,38.765516,40,40,40,40,,,,,,,,,,,3096,3096,0.239704,0.239704,0.239704,0.239704,0.239704,0.239704,0.239704,0.239704,0.100676,0.100676,40,40,, +7195,0,0.922168,1,1,0,2,4,,5,8,9 Mile,Rd,932909,1.372,2.294,0,19.760746,3,4,1.383252,1.383252,1.383252,1.383252,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.7702,1.554694,1.383252,1.383252,1.7702,1.554694,1.436272,1.431441,1.383252,1.383252,1.436272,1.431441,1.63496,1.753828,1.383252,1.383252,1.63496,1.753828,1.383252,1.383252,1.383252,1.383252,1.383252,1.383252,,,,,,,1.7702,1.554694,1.436272,1.431441,1.63496,1.753828,1.383252,1.383252,1.383252,1.383252,0.69705,0.632398,0.596872,0.595423,0.656478,0.692139,0.580966,0.580966,0.308926,0.308926,31.256402,35.589063,38.523409,38.653408,33.841868,31.548184,40,40,40,40,,,,,,,,,,,3096,3096,1.383252,1.383252,1.383252,1.383252,1.383252,1.383252,1.383252,1.383252,0.580966,0.580966,40,40,, +7538,0,0.997398,1,1,0,2,7,GRV,5,8,Rushton,Rd,942101,0,0.997,0,21.372822,5.55,5,2.992195,2.992195,2.992195,2.992195,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.992215,2.99773,2.992195,2.992195,2.992215,2.99773,2.992197,2.992199,2.992195,2.992195,2.992197,2.992199,2.99498,2.992527,2.992195,2.992195,2.99498,2.992527,2.992195,2.992195,2.992195,2.992195,2.992195,2.992195,,,,,,,2.992215,2.99773,2.992197,2.992199,2.99498,2.992527,2.992195,2.992195,2.992195,2.992195,1.077196,1.078851,1.077191,1.077192,1.078026,1.07729,1.07719,1.07719,0.558543,0.558543,19.999865,19.963076,19.99999,19.999971,19.981406,19.997785,20,20,20,20,,,,,,,,,,,2236,2236,2.992195,2.992195,2.992195,2.992195,2.992195,2.992195,2.992195,2.992195,1.07719,1.07719,20,20,, +11223,0,1.616539,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,0.702,2.318,0,34.640127,3.7,5,3.233078,3.233078,3.233078,3.233078,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.23518,3.233079,3.233078,3.233078,3.23518,3.233079,3.233079,3.233078,3.233078,3.233078,3.233079,3.233078,3.233081,3.233243,3.233078,3.233078,3.233081,3.233243,3.233078,3.233078,3.233078,3.233078,3.233078,3.233078,,,,,,,3.23518,3.233079,3.233079,3.233078,3.233081,3.233243,3.233078,3.233078,3.233078,3.233078,1.261531,1.260901,1.260901,1.260901,1.260901,1.26095,1.260901,1.260901,0.662781,0.662781,29.980513,29.999995,30,30,29.99998,29.998475,30,30,30,30,,,,,,,,,,,2580,2580,3.233078,3.233078,3.233078,3.233078,3.233078,3.233078,3.233078,3.233078,1.260901,1.260901,30,30,, +19761,0,0.866031,1,1,0,2,5,,5,8,Shore,Dr,4104219,0.507,1.372,0,18.557797,3.7,5,1.732061,1.732061,1.732061,1.732061,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.732197,1.738993,1.732061,1.732061,1.732197,1.738993,1.732075,1.732088,1.732061,1.732061,1.732075,1.732088,1.732635,1.732387,1.732061,1.732061,1.732635,1.732387,1.732061,1.732061,1.732061,1.732061,1.732061,1.732061,,,,,,,1.732197,1.738993,1.732075,1.732088,1.732635,1.732387,1.732061,1.732061,1.732061,1.732061,0.675545,0.677583,0.675508,0.675512,0.675676,0.675601,0.675504,0.675504,0.355073,0.355073,29.99765,29.880417,29.999763,29.999541,29.990054,29.994361,30,30,30,30,,,,,,,,,,,2580,2580,1.732061,1.732061,1.732061,1.732061,1.732061,1.732061,1.732061,1.732061,0.675504,0.675504,30,30,, +26720,0,0.912095,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.544894,0.15,4,3.64838,3.64838,3.64838,3.64838,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,,,,,,,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,1.258691,1.258691,1.258691,1.258691,1.258691,1.258691,1.258691,1.258691,0.647587,0.647587,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,3.64838,1.258691,1.258691,15,15,, +26721,0,0.881464,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.888513,0.15,4,3.525856,3.525856,3.525856,3.525856,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,,,,,,,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,1.21642,1.21642,1.21642,1.21642,1.21642,1.21642,1.21642,1.21642,0.625839,0.625839,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,3.525856,1.21642,1.21642,15,15,, +29547,0,0.820287,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.577589,0.15,4,3.28115,3.28115,3.28115,3.28115,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,,,,,,,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,1.131997,1.131997,1.131997,1.131997,1.131997,1.131997,1.131997,1.131997,0.582404,0.582404,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,3.28115,1.131997,1.131997,15,15,, +11024,0,0.770722,1,1,0,2,5,,5,5,7 Mile,Rd,1446805,0,0.77,0,16.51547,3.7,5,1.541444,1.541444,1.541444,1.541444,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.541445,1.541628,1.541444,1.541444,1.541445,1.541628,1.541444,1.541444,1.541444,1.541444,1.541444,1.541444,1.541509,1.541447,1.541444,1.541444,1.541509,1.541447,1.541444,1.541444,1.541444,1.541444,1.541444,1.541444,,,,,,,1.541445,1.541628,1.541444,1.541444,1.541509,1.541447,1.541444,1.541444,1.541444,1.541444,0.601163,0.601218,0.601163,0.601163,0.601183,0.601164,0.601163,0.601163,0.315996,0.315996,29.999983,29.996415,29.999997,29.999997,29.998727,29.999934,30,30,30,30,,,,,,,,,,,2580,2580,1.541444,1.541444,1.541444,1.541444,1.541444,1.541444,1.541444,1.541444,0.601163,0.601163,30,30,, +26351,0,0.367956,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.884782,0.15,4,1.471826,1.471826,1.471826,1.471826,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,1.471827,1.471826,1.471826,1.471826,1.471827,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,,,,,,,1.471826,1.471826,1.471826,1.471826,1.471826,1.471827,1.471826,1.471826,1.471826,1.471826,0.50778,0.50778,0.50778,0.50778,0.50778,0.50778,0.50778,0.50778,0.261249,0.261249,14.999995,15,15,15,14.999999,14.999994,15,15,15,15,,,,,,,,,,,34400,34400,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,1.471826,0.50778,0.50778,15,15,, +26354,0,0.634517,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.596787,0.15,4,2.538067,2.538067,2.538067,2.538067,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,,,,,,,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,0.875633,0.875633,0.875633,0.875633,0.875633,0.875633,0.875633,0.875633,0.450507,0.450507,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,2.538067,0.875633,0.875633,15,15,, +11226,0,0.443011,1,1,0,2,5,,5,5,Shore,Dr,1446607,0.336,0.779,0,9.493099,3.7,5,0.886023,0.886023,0.886023,0.886023,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.886125,0.88667,0.886023,0.886023,0.886125,0.88667,0.886026,0.886029,0.886023,0.886023,0.886026,0.886029,0.886066,0.886171,0.886023,0.886023,0.886066,0.886171,0.886023,0.886023,0.886023,0.886023,0.886023,0.886023,,,,,,,0.886125,0.88667,0.886026,0.886029,0.886066,0.886171,0.886023,0.886023,0.886023,0.886023,0.345579,0.345743,0.34555,0.345551,0.345562,0.345593,0.345549,0.345549,0.181635,0.181635,29.996542,29.978105,29.999886,29.999768,29.998525,29.99499,30,30,30,30,,,,,,,,,,,2580,2580,0.886023,0.886023,0.886023,0.886023,0.886023,0.886023,0.886023,0.886023,0.345549,0.345549,30,30,, +19762,0,0.50668,1,1,0,2,5,,5,5,Shore,Dr,4104219,0,0.507,0,10.857431,3.7,5,1.01336,1.01336,1.01336,1.01336,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.01344,1.017416,1.01336,1.01336,1.01344,1.017416,1.013368,1.013376,1.01336,1.01336,1.013368,1.013376,1.013696,1.013551,1.01336,1.01336,1.013696,1.013551,1.01336,1.01336,1.01336,1.01336,1.01336,1.01336,,,,,,,1.01344,1.017416,1.013368,1.013376,1.013696,1.013551,1.01336,1.01336,1.01336,1.01336,0.395234,0.396427,0.395213,0.395215,0.395311,0.395268,0.395211,0.395211,0.207739,0.207739,29.99765,29.880417,29.999763,29.999541,29.990054,29.994361,30,30,30,30,,,,,,,,,,,2580,2580,1.01336,1.01336,1.01336,1.01336,1.01336,1.01336,1.01336,1.01336,0.395211,0.395211,30,30,, +11023,0,0.508939,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,0.193,0.702,0,10.905838,3.7,5,1.017878,1.017878,1.017878,1.017878,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.019481,1.017884,1.017878,1.017878,1.019481,1.017884,1.01788,1.017879,1.017878,1.017878,1.01788,1.017879,1.017904,1.018321,1.017878,1.017878,1.017904,1.018321,1.017878,1.017878,1.017878,1.017878,1.017878,1.017878,,,,,,,1.019481,1.017884,1.01788,1.017879,1.017904,1.018321,1.017878,1.017878,1.017878,1.017878,0.397453,0.396974,0.396973,0.396973,0.39698,0.397105,0.396972,0.396972,0.208665,0.208665,29.952834,29.999818,29.999941,29.999961,29.99925,29.986957,30,30,30,30,,,,,,,,,,,2580,2580,1.017878,1.017878,1.017878,1.017878,1.017878,1.017878,1.017878,1.017878,0.396972,0.396972,30,30,, +11224,0,0.193559,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,0,0.193,0,4.147696,3.7,5,0.387118,0.387118,0.387118,0.387118,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.387741,0.387119,0.387118,0.387118,0.387741,0.387119,0.387119,0.387119,0.387118,0.387118,0.387119,0.387119,0.387125,0.387254,0.387118,0.387118,0.387125,0.387254,0.387118,0.387118,0.387118,0.387118,0.387118,0.387118,,,,,,,0.387741,0.387119,0.387119,0.387119,0.387125,0.387254,0.387118,0.387118,0.387118,0.387118,0.151163,0.150976,0.150976,0.150976,0.150978,0.151017,0.150976,0.150976,0.079359,0.079359,29.951855,29.999909,29.999947,29.999963,29.999495,29.989471,30,30,30,30,,,,,,,,,,,2580,2580,0.387118,0.387118,0.387118,0.387118,0.387118,0.387118,0.387118,0.387118,0.150976,0.150976,30,30,, +6595,0,0.666513,1,1,0,2,5,,5,8,Whitmore Lake,Rd,932204,1.377,2.043,0,14.282428,3.7,5,1.333027,1.333027,1.333027,1.333027,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.333034,1.333033,1.333027,1.333027,1.333034,1.333033,1.333028,1.333027,1.333027,1.333027,1.333028,1.333027,1.333038,1.333031,1.333027,1.333027,1.333038,1.333031,1.333027,1.333027,1.333027,1.333027,1.333027,1.333027,,,,,,,1.333034,1.333033,1.333028,1.333027,1.333038,1.333031,1.333027,1.333027,1.333027,1.333027,0.519883,0.519882,0.519881,0.519881,0.519884,0.519882,0.51988,0.51988,0.27327,0.27327,29.999835,29.999863,29.999978,29.999984,29.999742,29.999898,30,30,30,30,,,,,,,,,,,2580,2580,1.333027,1.333027,1.333027,1.333027,1.333027,1.333027,1.333027,1.333027,0.51988,0.51988,30,30,, +7196,0,1.224182,1,1,0,2,4,,5,8,9 Mile,Rd,932909,0.148,1.372,0,26.232472,3,4,1.836273,1.836273,1.836273,1.836273,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.08471,2.074731,1.836273,1.836273,2.08471,2.074731,1.880572,1.878089,1.836273,1.836273,1.880572,1.878089,2.115164,2.091808,1.836273,1.836273,2.115164,2.091808,1.836273,1.836273,1.836273,1.836273,1.836273,1.836273,,,,,,,2.08471,2.074731,1.880572,1.878089,2.115164,2.091808,1.836273,1.836273,1.836273,1.836273,0.845766,0.842772,0.784524,0.783779,0.854902,0.847895,0.771235,0.771235,0.410101,0.410101,35.233152,35.402627,39.057765,39.109397,34.725878,35.113607,40,40,40,40,,,,,,,,,,,3096,3096,1.836273,1.836273,1.836273,1.836273,1.836273,1.836273,1.836273,1.836273,0.771235,0.771235,40,40,, +7996,0,0.76399,1,1,0,2,6,,5,8,Marshall,Rd,942010,1.248,2.012,0,16.371208,5.8,6,1.527979,1.527979,1.527979,1.527979,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.52798,1.527979,1.527979,1.527979,1.52798,1.527979,1.527979,1.527979,1.527979,1.527979,1.527979,1.527979,1.527979,1.52798,1.527979,1.527979,1.527979,1.52798,1.527979,1.527979,1.527979,1.527979,1.527979,1.527979,,,,,,,1.52798,1.527979,1.527979,1.527979,1.527979,1.52798,1.527979,1.527979,1.527979,1.527979,0.595912,0.595912,0.595912,0.595912,0.595912,0.595912,0.595912,0.595912,0.313236,0.313236,29.999988,29.999999,30,30,29.999999,29.999986,30,30,30,30,,,,,,,,,,,2236,2236,1.527979,1.527979,1.527979,1.527979,1.527979,1.527979,1.527979,1.527979,0.595912,0.595912,30,30,, +26124,0,0.804355,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.236185,0.15,4,3.217421,3.217421,3.217421,3.217421,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,,,,,,,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,1.11001,1.11001,1.11001,1.11001,1.11001,1.11001,1.11001,1.11001,0.571092,0.571092,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,3.217421,1.11001,1.11001,15,15,, +5814,0,0.084966,1,2,0,2,4,,5,8,9 Mile,Rd,931604,2.103,2.188,0,1.820699,3,4,0.127449,0.127449,0.127449,0.127449,40,40,9000,18000,2043,4086,4500,9000,2903,5807,3096,6192,3092,6185,0.139951,0.131367,0.127449,0.127449,0.139951,0.131367,0.130773,0.127856,0.127449,0.127449,0.130773,0.127856,0.14611,0.13188,0.127449,0.127449,0.14611,0.13188,0.127449,0.127449,0.127449,0.127449,0.127449,0.127449,,,,,,,0.139951,0.131367,0.130773,0.127856,0.14611,0.13188,0.127449,0.127449,0.127449,0.127449,0.057279,0.054704,0.054526,0.053651,0.059127,0.054858,0.053529,0.053529,0.028464,0.028464,36.426742,38.807089,38.983238,39.872489,34.891184,38.656126,40,40,40,40,,,,,,,,,,,3096,6192,0.127449,0.127449,0.127449,0.127449,0.127449,0.127449,0.127449,0.127449,0.053529,0.053529,40,40,, +6734,0,0.273793,1,1,0,2,4,,5,8,9 Mile,Rd,931604,2.273,2.547,0,5.866997,3,4,0.41069,0.41069,0.41069,0.41069,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.684051,1.04399,0.41069,0.41069,0.684051,1.04399,0.477633,0.480941,0.41069,0.41069,0.477633,0.480941,1.088069,0.738481,0.41069,0.41069,1.088069,0.738481,0.41069,0.41069,0.41069,0.41069,0.41069,0.41069,,,,,,,0.684051,1.04399,0.477633,0.480941,1.088069,0.738481,0.41069,0.41069,0.41069,0.41069,0.254498,0.36248,0.192573,0.193565,0.375704,0.270827,0.17249,0.17249,0.091721,0.091721,24.015172,15.735387,34.393721,34.157168,15.09793,22.245097,40,40,40,40,,,,,,,,,,,3096,3096,0.41069,0.41069,0.41069,0.41069,0.41069,0.41069,0.41069,0.41069,0.17249,0.17249,40,40,, +26123,0,0.475316,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.185345,0.15,4,1.901264,1.901264,1.901264,1.901264,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.901265,1.901264,1.901264,1.901264,1.901265,1.901264,1.901264,1.901264,1.901264,1.901264,1.901264,1.901264,1.901265,1.901265,1.901264,1.901264,1.901265,1.901265,1.901264,1.901264,1.901264,1.901264,1.901264,1.901264,,,,,,,1.901265,1.901264,1.901264,1.901264,1.901265,1.901265,1.901264,1.901264,1.901264,1.901264,0.655936,0.655936,0.655936,0.655936,0.655936,0.655936,0.655936,0.655936,0.337474,0.337474,14.999994,15,15,15,14.999999,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,1.901264,1.901264,1.901264,1.901264,1.901264,1.901264,1.901264,1.901264,0.655936,0.655936,15,15,, +6487,1,0.126102,1,0,0,1,2,RON,5,8,M 36/N US 23,RAMP,4105312,0,0.126,0,,1.09,4,0.168136,,0.168136,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.168278,,0.168136,,0.168278,,0.16817,,0.168136,,0.16817,,0.168249,,0.168136,,0.168249,,0.168136,,0.168136,,0.168136,,,,,,,,0.168278,,0.16817,,0.168249,,0.168136,,0.168136,,0.073182,,0.07315,,0.073173,,0.073139,,0.039092,,44.962147,,44.990902,,44.969946,,45,,45,,,,,,,,,,,,5160,,0.168136,,0.168136,,0.168136,,0.168136,,0.073139,,45,,, +6733,1,0.278457,2,0,0,1,2,,5,8,N US 23,,931510,1.157,1.435,0,,1.02,7,0.238677,,0.238677,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.243279,,0.238677,,0.243279,,0.238948,,0.238677,,0.238948,,0.271151,,0.238677,,0.271151,,0.238677,,0.238677,,0.238677,,,,,,,,0.243279,,0.238948,,0.271151,,0.238677,,0.238677,,0.123106,,0.121806,,0.131468,,0.121725,,0.066432,,68.675906,,69.920708,,61.616486,,70,,70,,,,,,,,,,,,15136,,0.238677,,0.238677,,0.238677,,0.238677,,0.121725,,70,,, +5141,-1,0.266747,0,2,0,1,2,,5,8,S US 23,,932002,1.153,1.42,0,,1.02,7,,0.228641,,0.228641,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.291862,,0.228641,,0.291862,,0.228949,,0.228641,,0.228949,,0.233175,,0.228641,,0.233175,,0.228641,,0.228641,,0.228641,,,,,,,,0.291862,,0.228949,,0.233175,,0.228641,,0.228641,,0.135573,,0.116699,,0.117967,,0.116607,,0.063638,,54.836999,,69.90583,,68.638714,,70,,70,,,,,,,,,,,,15136,,0.228641,,0.228641,,0.228641,,0.228641,,0.116607,,70,, +5508,0,0.062782,1,1,0,2,4,,5,8,9 Mile,Rd,931604,2.188,2.251,0,1.345332,3,4,0.094173,0.094173,0.094173,0.094173,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.103411,0.129206,0.094173,0.094173,0.103411,0.129206,0.096629,0.097938,0.094173,0.094173,0.096629,0.097938,0.107962,0.116731,0.094173,0.094173,0.107962,0.116731,0.094173,0.094173,0.094173,0.094173,0.094173,0.094173,,,,,,,0.103411,0.129206,0.096629,0.097938,0.107962,0.116731,0.094173,0.094173,0.094173,0.094173,0.042324,0.050063,0.04029,0.040682,0.043689,0.04632,0.039553,0.039553,0.021032,0.021032,36.426742,29.15437,38.983238,38.462565,34.891184,32.270235,40,40,40,40,,,,,,,,,,,3096,3096,0.094173,0.094173,0.094173,0.094173,0.094173,0.094173,0.094173,0.094173,0.039553,0.039553,40,40,, +5699,1,0.228367,1,0,0,1,2,ROF,5,8,S US 23/M 36,RAMP,932005,0,0.228,0,,2.24,5,0.34255,,0.34255,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.342581,,0.34255,,0.342581,,0.342567,,0.34255,,0.342567,,0.342668,,0.34255,,0.342668,,0.34255,,0.34255,,0.34255,,,,,,,,0.342581,,0.342567,,0.342668,,0.34255,,0.34255,,0.14388,,0.143876,,0.143906,,0.143871,,0.076503,,39.996442,,39.998085,,39.986237,,40,,40,,,,,,,,,,,,5160,,0.34255,,0.34255,,0.34255,,0.34255,,0.143871,,40,,, +6485,1,0.273181,1,0,0,1,2,ROF,5,8,N US 23/M 36,RAMP,931605,0,0.273,0,,2.24,5,0.409772,,0.409772,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.409772,,0.409772,,0.409772,,0.409772,,0.409772,,0.409772,,0.409774,,0.409772,,0.409774,,0.409772,,0.409772,,0.409772,,,,,,,,0.409772,,0.409772,,0.409774,,0.409772,,0.409772,,0.172104,,0.172104,,0.172105,,0.172104,,0.091516,,39.999999,,40,,39.99979,,40,,40,,,,,,,,,,,,5160,,0.409772,,0.409772,,0.409772,,0.409772,,0.172104,,40,,, +6486,0,0.164917,1,1,0,2,7,,5,8,Fieldcrest,Dr,4105311,0,0.165,0,3.533927,5.8,6,0.3958,0.3958,0.3958,0.3958,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.40783,0.3958,0.3958,0.3958,0.40783,0.3958,0.397216,0.3958,0.3958,0.3958,0.397216,0.3958,0.404298,0.3958,0.3958,0.3958,0.404298,0.3958,0.3958,0.3958,0.3958,0.3958,0.3958,0.3958,,,,,,,0.40783,0.3958,0.397216,0.3958,0.404298,0.3958,0.3958,0.3958,0.3958,0.3958,0.152034,0.148425,0.14885,0.148425,0.150974,0.148425,0.148425,0.148425,0.077511,0.077511,24.262531,25,24.910871,25,24.474493,25,25,25,25,25,,,,,,,,,,,2064,2064,0.3958,0.3958,0.3958,0.3958,0.3958,0.3958,0.3958,0.3958,0.148425,0.148425,25,25,, +5139,0,0.022208,2,1,0,2,4,,5,8,9 Mile,Rd,931604,2.251,2.273,0,0.475888,3,4,0.033312,0.033312,0.033312,0.033312,40,40,18000,9000,4086,2043,9000,4500,5807,2903,6192,3096,6185,3092,0.034904,0.045705,0.033312,0.033312,0.034904,0.045705,0.033799,0.034644,0.033312,0.033312,0.033799,0.034644,0.038119,0.041292,0.033312,0.033312,0.038119,0.041292,0.033312,0.033312,0.033312,0.033312,0.033312,0.033312,,,,,,,0.034904,0.045705,0.033799,0.034644,0.038119,0.041292,0.033312,0.033312,0.033312,0.033312,0.014469,0.017709,0.014137,0.014391,0.015433,0.016385,0.013991,0.013991,0.00744,0.00744,38.175725,29.15437,39.423736,38.462565,34.956214,32.270235,40,40,40,40,,,,,,,,,,,6192,3096,0.033312,0.033312,0.033312,0.033312,0.033312,0.033312,0.033312,0.033312,0.013991,0.013991,40,40,, +7197,0,0.148041,1,1,0,2,4,,5,8,9 Mile,Rd,932909,0,0.148,0,3.1723,3,4,0.222061,0.222061,0.222061,0.222061,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.284908,0.245622,0.222061,0.222061,0.284908,0.245622,0.227471,0.226598,0.222061,0.222061,0.227471,0.226598,0.254673,0.255686,0.222061,0.222061,0.254673,0.255686,0.222061,0.222061,0.222061,0.222061,0.222061,0.222061,,,,,,,0.284908,0.245622,0.227471,0.226598,0.254673,0.255686,0.222061,0.222061,0.222061,0.222061,0.11212,0.100334,0.094889,0.094627,0.103049,0.103353,0.093266,0.093266,0.049594,0.049594,31.17655,36.163066,39.048638,39.199162,34.87789,34.739684,40,40,40,40,,,,,,,,,,,3096,3096,0.222061,0.222061,0.222061,0.222061,0.222061,0.222061,0.222061,0.222061,0.093266,0.093266,40,40,, +5986,0,0.024735,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,0.135,0.16,0,0.530039,3.7,5,0.04947,0.04947,0.04947,0.04947,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.052565,0.051427,0.04947,0.04947,0.052565,0.051427,0.049776,0.04973,0.04947,0.04947,0.049776,0.04973,0.054738,0.055636,0.04947,0.04947,0.054738,0.055636,0.04947,0.04947,0.04947,0.04947,0.04947,0.04947,,,,,,,0.052565,0.051427,0.049776,0.04973,0.054738,0.055636,0.04947,0.04947,0.04947,0.04947,0.020222,0.01988,0.019385,0.019371,0.020874,0.021143,0.019293,0.019293,0.010141,0.010141,28.233957,28.858599,29.815762,29.843186,27.112914,26.675517,30,30,30,30,,,,,,,,,,,2580,2580,0.04947,0.04947,0.04947,0.04947,0.04947,0.04947,0.04947,0.04947,0.019293,0.019293,30,30,, +7963,0,0.248914,1,1,0,2,6,,5,8,Marshall,Rd,942010,1,1.248,0,5.333875,5.8,6,0.497828,0.497828,0.497828,0.497828,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.49783,0.49791,0.497828,0.497828,0.49783,0.49791,0.497829,0.497829,0.497828,0.497828,0.497829,0.497829,0.497901,0.497834,0.497828,0.497828,0.497901,0.497834,0.497828,0.497828,0.497828,0.497828,0.497828,0.497828,,,,,,,0.49783,0.49791,0.497829,0.497829,0.497901,0.497834,0.497828,0.497828,0.497828,0.497828,0.194154,0.194177,0.194153,0.194153,0.194175,0.194155,0.194153,0.194153,0.102055,0.102055,29.999906,29.995108,29.999957,29.999949,29.995615,29.999675,30,30,30,30,,,,,,,,,,,2236,2236,0.497828,0.497828,0.497828,0.497828,0.497828,0.497828,0.497828,0.497828,0.194153,0.194153,30,30,, +10975,0,1.212048,1,1,0,2,6,GRV,5,5,Rushton,Rd,1446909,0,1.212,0,25.972453,5.55,5,2.908915,2.908915,2.908915,2.908915,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.908932,2.910858,2.908915,2.908915,2.908932,2.910858,2.908918,2.908921,2.908915,2.908915,2.908918,2.908921,2.9094,2.909001,2.908915,2.908915,2.9094,2.909001,2.908915,2.908915,2.908915,2.908915,2.908915,2.908915,,,,,,,2.908932,2.910858,2.908918,2.908921,2.9094,2.909001,2.908915,2.908915,2.908915,2.908915,1.090848,1.091426,1.090844,1.090845,1.090989,1.090869,1.090843,1.090843,0.569662,0.569662,24.999849,24.983306,24.999976,24.999944,24.995826,24.999259,25,25,25,25,,,,,,,,,,,2236,2236,2.908915,2.908915,2.908915,2.908915,2.908915,2.908915,2.908915,2.908915,1.090843,1.090843,25,25,, +11190,0,0.500188,1,1,0,2,6,GRV,5,5,6 Mile,Rd,1446810,0.948,1.448,0,10.718305,5.55,5,1.20045,1.20045,1.20045,1.20045,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.200451,1.20668,1.20045,1.20045,1.200451,1.20668,1.200454,1.200458,1.20045,1.20045,1.200454,1.200458,1.200945,1.200474,1.20045,1.20045,1.200945,1.200474,1.20045,1.20045,1.20045,1.20045,1.20045,1.20045,,,,,,,1.200451,1.20668,1.200454,1.200458,1.200945,1.200474,1.20045,1.20045,1.20045,1.20045,0.450169,0.452038,0.45017,0.450171,0.450317,0.450176,0.450169,0.450169,0.235088,0.235088,24.99999,24.870936,24.999929,24.999846,24.989701,24.999514,25,25,25,25,,,,,,,,,,,2236,2236,1.20045,1.20045,1.20045,1.20045,1.20045,1.20045,1.20045,1.20045,0.450169,0.450169,25,25,, +11157,0,0.611601,1,1,0,2,5,GRV,5,5,Rushton,Rd,1446909,1.212,1.823,0,13.105736,5.55,5,1.834803,1.834803,1.834803,1.834803,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.834826,1.853666,1.834803,1.834803,1.834826,1.853666,1.834806,1.834811,1.834803,1.834803,1.834806,1.834811,1.841308,1.835212,1.834803,1.834803,1.841308,1.835212,1.834803,1.834803,1.834803,1.834803,1.834803,1.834803,,,,,,,1.834826,1.853666,1.834806,1.834811,1.841308,1.835212,1.834803,1.834803,1.834803,1.834803,0.660536,0.666188,0.66053,0.660532,0.662481,0.660652,0.660529,0.660529,0.342497,0.342497,19.999754,19.796478,19.999962,19.999912,19.929344,19.995543,20,20,20,20,,,,,,,,,,,2236,2236,1.834803,1.834803,1.834803,1.834803,1.834803,1.834803,1.834803,1.834803,0.660529,0.660529,20,20,, +7565,0,0.042226,1,1,0,2,5,GRV,5,8,8 Mile,Rd,942009,1.492,1.534,0,0.904838,5.55,5,0.126677,0.126677,0.126677,0.126677,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.126711,0.127207,0.126677,0.126677,0.126711,0.127207,0.126678,0.126678,0.126677,0.126677,0.126678,0.126678,0.127117,0.126861,0.126677,0.126677,0.127117,0.126861,0.126677,0.126677,0.126677,0.126677,0.126677,0.126677,,,,,,,0.126711,0.127207,0.126678,0.126678,0.127117,0.126861,0.126677,0.126677,0.126677,0.126677,0.045614,0.045763,0.045604,0.045604,0.045736,0.045659,0.045604,0.045604,0.023646,0.023646,19.994681,19.916792,19.999948,19.999907,19.930796,19.971113,20,20,20,20,,,,,,,,,,,2236,2236,0.126677,0.126677,0.126677,0.126677,0.126677,0.126677,0.126677,0.126677,0.045604,0.045604,20,20,, +7194,0,0.603843,1,1,0,2,4,,5,8,9 Mile,Rd,932909,2.294,2.897,0,12.939496,3,4,0.905765,0.905765,0.905765,0.905765,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.200408,0.975302,0.905765,0.905765,1.200408,0.975302,0.926877,0.923409,0.905765,0.905765,0.926877,0.923409,1.018093,1.140552,0.905765,0.905765,1.018093,1.140552,0.905765,0.905765,0.905765,0.905765,0.905765,0.905765,,,,,,,1.200408,0.975302,0.926877,0.923409,1.018093,1.140552,0.905765,0.905765,0.905765,0.905765,0.468814,0.401282,0.386755,0.385714,0.41412,0.450858,0.380421,0.380421,0.202287,0.202287,30.181901,37.148067,39.088886,39.235692,35.58673,31.765824,40,40,40,40,,,,,,,,,,,3096,3096,0.905765,0.905765,0.905765,0.905765,0.905765,0.905765,0.905765,0.905765,0.380421,0.380421,40,40,, +8139,0,0.464171,1,1,0,2,4,,4,8,Rushton,Rd,942101,0.997,1.461,0,9.946522,4.5,4.5,0.732902,0.732902,0.732902,0.732902,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.738164,0.742252,0.732902,0.732902,0.738164,0.742252,0.733267,0.733345,0.732902,0.732902,0.733267,0.733345,0.739497,0.739015,0.732902,0.732902,0.739497,0.739015,0.732902,0.732902,0.732902,0.732902,0.732902,0.732902,,,,,,,0.738164,0.742252,0.733267,0.733345,0.739497,0.739015,0.732902,0.732902,0.732902,0.732902,0.305,0.306226,0.303531,0.303554,0.3054,0.305255,0.303421,0.303421,0.160994,0.160994,37.729102,37.521285,37.981051,37.977023,37.661112,37.685655,38,38,38,38,,,,,,,,,,,3096,3096,0.732902,0.732902,0.732902,0.732902,0.732902,0.732902,0.732902,0.732902,0.303421,0.303421,38,38,, +26137,0,0.822713,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.629572,0.15,4,3.290854,3.290854,3.290854,3.290854,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,,,,,,,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,1.135344,1.135344,1.135344,1.135344,1.135344,1.135344,1.135344,1.135344,0.584126,0.584126,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,3.290854,1.135344,1.135344,15,15,, +26138,0,0.872613,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.69886,0.15,4,3.490454,3.490454,3.490454,3.490454,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,,,,,,,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,1.204207,1.204207,1.204207,1.204207,1.204207,1.204207,1.204207,1.204207,0.619556,0.619556,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,3.490454,1.204207,1.204207,15,15,, +30153,0,0.694578,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.88381,0.15,4,2.778311,2.778311,2.778311,2.778311,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,,,,,,,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,0.958517,0.958517,0.958517,0.958517,0.958517,0.958517,0.958517,0.958517,0.49315,0.49315,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,2.778311,0.958517,0.958517,15,15,, +7409,0,0.466554,1,1,0,2,5,,5,8,Rushton,Rd,942101,2.001,2.468,0,9.997596,3.7,5,0.933109,0.933109,0.933109,0.933109,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.937718,0.935115,0.933109,0.933109,0.937718,0.935115,0.933183,0.933175,0.933109,0.933109,0.933183,0.933175,0.939177,0.942244,0.933109,0.933109,0.939177,0.942244,0.933109,0.933109,0.933109,0.933109,0.933109,0.933109,,,,,,,0.937718,0.935115,0.933183,0.933175,0.939177,0.942244,0.933109,0.933109,0.933109,0.933109,0.365295,0.364514,0.363935,0.363932,0.365733,0.366653,0.363912,0.363912,0.191287,0.191287,29.852535,29.935647,29.997634,29.997881,29.806168,29.709159,30,30,30,30,,,,,,,,,,,2580,2580,0.933109,0.933109,0.933109,0.933109,0.933109,0.933109,0.933109,0.933109,0.363912,0.363912,30,30,, +8021,0,0.37545,1,1,0,2,4,,4,8,Rushton,Rd,942101,1.461,1.836,0,8.045351,4.5,4.5,0.592815,0.592815,0.592815,0.592815,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.603348,0.60557,0.592815,0.592815,0.603348,0.60557,0.593309,0.593384,0.592815,0.592815,0.593309,0.593384,0.604695,0.604458,0.592815,0.592815,0.604695,0.604458,0.592815,0.592815,0.592815,0.592815,0.592815,0.592815,,,,,,,0.603348,0.60557,0.593309,0.593384,0.604695,0.604458,0.592815,0.592815,0.592815,0.592815,0.248585,0.249252,0.245574,0.245596,0.248989,0.248918,0.245426,0.245426,0.130222,0.130222,37.33662,37.199648,37.968385,37.963606,37.253461,37.268083,38,38,38,38,,,,,,,,,,,3096,3096,0.592815,0.592815,0.592815,0.592815,0.592815,0.592815,0.592815,0.592815,0.245426,0.245426,38,38,, +8152,0,0.165123,1,1,0,2,4,,4,8,Rushton,Rd,942101,1.836,2.001,0,3.538347,4.5,4.5,0.26072,0.26072,0.26072,0.26072,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.294536,0.277855,0.26072,0.26072,0.294536,0.277855,0.264568,0.263329,0.26072,0.26072,0.264568,0.263329,0.291008,0.299266,0.26072,0.26072,0.291008,0.299266,0.26072,0.26072,0.26072,0.26072,0.26072,0.26072,,,,,,,0.294536,0.277855,0.264568,0.263329,0.291008,0.299266,0.26072,0.26072,0.26072,0.26072,0.118083,0.113079,0.109093,0.108721,0.117024,0.119502,0.107938,0.107938,0.057272,0.057272,33.637266,35.656569,37.447368,37.623485,34.045046,33.10556,38,38,38,38,,,,,,,,,,,3096,3096,0.26072,0.26072,0.26072,0.26072,0.26072,0.26072,0.26072,0.26072,0.107938,0.107938,38,38,, +9905,0,0.708512,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,22.445,23.153,0,15.182407,3,4,1.062768,1.062768,1.062768,1.062768,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.24401,1.148129,1.062768,1.062768,1.24401,1.148129,1.062865,1.062941,1.062768,1.062768,1.062865,1.062941,1.100188,1.159514,1.062768,1.062768,1.100188,1.159514,1.062768,1.062768,1.062768,1.062768,1.062768,1.062768,,,,,,,1.24401,1.148129,1.062865,1.062941,1.100188,1.159514,1.062768,1.062768,1.062768,1.062768,0.500735,0.471971,0.446392,0.446414,0.457589,0.475386,0.446363,0.446363,0.237352,0.237352,34.17235,37.026086,39.996377,39.993518,38.639505,36.66255,40,40,40,40,,,,,,,,,,,3096,3096,1.062768,1.062768,1.062768,1.062768,1.062768,1.062768,1.062768,1.062768,0.446363,0.446363,40,40,, +10968,0,1.763866,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,7.461,9.224,0,37.797133,3,4,2.645799,2.645799,2.645799,2.645799,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.779211,4.094903,2.645799,2.645799,2.779211,4.094903,2.679191,2.715005,2.645799,2.645799,2.679191,2.715005,3.550186,2.957387,2.645799,2.645799,3.550186,2.957387,2.645799,2.645799,2.645799,2.645799,2.645799,2.645799,,,,,,,2.779211,4.094903,2.679191,2.715005,3.550186,2.957387,2.645799,2.645799,2.645799,2.645799,1.151259,1.545967,1.121253,1.131997,1.382552,1.204712,1.111236,1.111236,0.590895,0.590895,38.079857,25.844807,39.501462,38.980402,29.810262,35.785636,40,40,40,40,,,,,,,,,,,3096,3096,2.645799,2.645799,2.645799,2.645799,2.645799,2.645799,2.645799,2.645799,1.111236,1.111236,40,40,, +26304,0,1.337533,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.661432,0.15,4,5.350134,5.350134,5.350134,5.350134,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,,,,,,,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,1.845796,1.845796,1.845796,1.845796,1.845796,1.845796,1.845796,1.845796,0.949649,0.949649,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,5.350134,1.845796,1.845796,15,15,, +26379,0,1.573223,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,33.711919,0.15,4,6.292892,6.292892,6.292892,6.292892,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,,,,,,,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,2.171048,2.171048,2.171048,2.171048,2.171048,2.171048,2.171048,2.171048,1.116988,1.116988,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,6.292892,2.171048,2.171048,15,15,, +9910,0,1.336375,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,21.109,22.445,0,28.636597,3,4,2.004562,2.004562,2.004562,2.004562,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.354896,2.046836,2.004562,2.004562,2.354896,2.046836,2.004799,2.004999,2.004562,2.004562,2.004799,2.004999,2.060296,2.183423,2.004562,2.004562,2.060296,2.183423,2.004562,2.004562,2.004562,2.004562,2.004562,2.004562,,,,,,,2.354896,2.046836,2.004799,2.004999,2.060296,2.183423,2.004562,2.004562,2.004562,2.004562,0.947016,0.854598,0.841987,0.842047,0.858636,0.895574,0.841916,0.841916,0.447685,0.447685,34.049262,39.17387,39.995275,39.991279,38.917945,36.723292,40,40,40,40,,,,,,,,,,,3096,3096,2.004562,2.004562,2.004562,2.004562,2.004562,2.004562,2.004562,2.004562,0.841916,0.841916,40,40,, +10807,0,1.149275,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,5.576,6.725,0,24.627315,3.7,5,2.298549,2.298549,2.298549,2.298549,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.305807,2.421587,2.298549,2.298549,2.305807,2.421587,2.299508,2.300109,2.298549,2.298549,2.299508,2.300109,2.331445,2.312086,2.298549,2.298549,2.331445,2.312086,2.298549,2.298549,2.298549,2.298549,2.298549,2.298549,,,,,,,2.305807,2.421587,2.299508,2.300109,2.331445,2.312086,2.298549,2.298549,2.298549,2.298549,0.898612,0.933345,0.896722,0.896902,0.906303,0.900495,0.896434,0.896434,0.471203,0.471203,29.905571,28.475743,29.98749,29.979662,29.576709,29.824355,30,30,30,30,,,,,,,,,,,2580,2580,2.298549,2.298549,2.298549,2.298549,2.298549,2.298549,2.298549,2.298549,0.896434,0.896434,30,30,, +10978,0,1.169946,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,5.954,7.123,0,25.070278,3,4,1.754919,1.754919,1.754919,1.754919,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.760402,1.946485,1.754919,1.754919,1.760402,1.946485,1.756372,1.758769,1.754919,1.754919,1.756372,1.758769,1.841972,1.77568,1.754919,1.754919,1.841972,1.77568,1.754919,1.754919,1.754919,1.754919,1.754919,1.754919,,,,,,,1.760402,1.946485,1.756372,1.758769,1.841972,1.77568,1.754919,1.754919,1.754919,1.754919,0.738711,0.794536,0.737502,0.738221,0.763182,0.743294,0.737066,0.737066,0.391932,0.391932,39.875423,36.063362,39.966924,39.912446,38.109586,39.532346,40,40,40,40,,,,,,,,,,,3096,3096,1.754919,1.754919,1.754919,1.754919,1.754919,1.754919,1.754919,1.754919,0.737066,0.737066,40,40,, +11160,0,0.608323,1,1,0,2,5,GRV,5,5,Earhart,Rd,1446906,0,0.608,0,13.035482,5.55,5,1.824968,1.824968,1.824968,1.824968,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.824968,1.824972,1.824968,1.824968,1.824968,1.824972,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,,,,,,,1.824968,1.824972,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,0.656988,0.65699,0.656988,0.656988,0.656988,0.656988,0.656988,0.656988,0.340661,0.340661,20,19.999955,20,20,19.999999,20,20,20,20,20,,,,,,,,,,,2236,2236,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,1.824968,0.656988,0.656988,20,20,, +10948,0,0.09827,1,1,0,2,5,GRV,5,5,Joy,Rd,1451506,3.443,3.542,0,2.10579,5.55,5,0.294811,0.294811,0.294811,0.294811,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,,,,,,,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.106132,0.106132,0.106132,0.106132,0.106132,0.106132,0.106132,0.106132,0.055031,0.055031,20,19.999955,20,20,19.999999,20,20,20,20,20,,,,,,,,,,,2236,2236,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.294811,0.106132,0.106132,20,20,, +10765,0,0.337452,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,7.123,7.461,0,7.231107,3,4,0.506177,0.506177,0.506177,0.506177,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.537787,1.101821,0.506177,0.506177,0.537787,1.101821,0.513392,0.520552,0.506177,0.506177,0.513392,0.520552,0.746168,0.585354,0.506177,0.506177,0.746168,0.585354,0.506177,0.506177,0.506177,0.506177,0.506177,0.506177,,,,,,,0.537787,1.101821,0.513392,0.520552,0.746168,0.585354,0.506177,0.506177,0.506177,0.506177,0.222077,0.391288,0.214759,0.216907,0.284592,0.236348,0.212595,0.212595,0.113046,0.113046,37.648931,18.376037,39.437925,38.895437,27.134763,34.58947,40,40,40,40,,,,,,,,,,,3096,3096,0.506177,0.506177,0.506177,0.506177,0.506177,0.506177,0.506177,0.506177,0.212595,0.212595,40,40,, +9903,0,0.853112,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,23.153,24.006,0,18.28098,3,4,1.279669,1.279669,1.279669,1.279669,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.508349,1.375771,1.279669,1.279669,1.508349,1.375771,1.279775,1.279836,1.279669,1.279669,1.279775,1.279836,1.317993,1.397926,1.279669,1.279669,1.317993,1.397926,1.279669,1.279669,1.279669,1.279669,1.279669,1.279669,,,,,,,1.508349,1.375771,1.279775,1.279836,1.317993,1.397926,1.279669,1.279669,1.279669,1.279669,0.606065,0.566291,0.537493,0.537511,0.548958,0.572938,0.537461,0.537461,0.285793,0.285793,33.935615,37.205871,39.996681,39.994763,38.836898,36.616197,40,40,40,40,,,,,,,,,,,3096,3096,1.279669,1.279669,1.279669,1.279669,1.279669,1.279669,1.279669,1.279669,0.537461,0.537461,40,40,, +26280,0,0.785123,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.824056,0.15,4,3.140491,3.140491,3.140491,3.140491,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,,,,,,,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,1.083469,1.083469,1.083469,1.083469,1.083469,1.083469,1.083469,1.083469,0.557437,0.557437,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,3.140491,1.083469,1.083469,15,15,, +26302,0,0.563092,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.066247,0.15,4,2.252366,2.252366,2.252366,2.252366,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,,,,,,,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,0.777066,0.777066,0.777066,0.777066,0.777066,0.777066,0.777066,0.777066,0.399795,0.399795,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,2.252366,0.777066,0.777066,15,15,, +1189,0,0.44819,1,1,0,2,5,,4,3,Griswold,Rd,634406,0,0.448,0,9.604077,5.8,4.5,0.995978,0.995978,0.995978,0.995978,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.996786,1.023739,0.995978,0.995978,0.996786,1.023739,0.995989,0.995986,0.995978,0.995978,0.995989,0.995986,1.009889,0.999092,0.995978,0.995978,1.009889,0.999092,0.995978,0.995978,0.995978,0.995978,0.995978,0.995978,,,,,,,0.996786,1.023739,0.995989,0.995986,1.009889,0.999092,0.995978,0.995978,0.995978,0.995978,0.37971,0.387796,0.379471,0.37947,0.383641,0.380402,0.379468,0.379468,0.198698,0.198698,26.978115,26.267839,26.999721,26.999802,26.628099,26.915862,27,27,27,27,,,,,,,,,,,2580,2580,0.995978,0.995978,0.995978,0.995978,0.995978,0.995978,0.995978,0.995978,0.379468,0.379468,27,27,, +2505,0,0.503963,1,1,0,2,4,,4,3,Pontiac,Trl,656507,0,0.504,0,10.799217,4.5,4.5,0.795732,0.795732,0.795732,0.795732,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.019792,1.332949,0.795732,0.795732,1.019792,1.332949,0.833161,0.841621,0.795732,0.795732,0.833161,0.841621,1.195505,1.060717,0.795732,0.795732,1.195505,1.060717,0.795732,0.795732,0.795732,0.795732,0.795732,0.795732,,,,,,,1.019792,1.332949,0.833161,0.841621,1.195505,1.060717,0.795732,0.795732,0.795732,0.795732,0.396651,0.490598,0.340662,0.3432,0.449365,0.408929,0.329433,0.329433,0.174796,0.174796,29.650959,22.684894,36.292881,35.928067,25.292906,28.506949,38,38,38,38,,,,,,,,,,,3096,3096,0.795732,0.795732,0.795732,0.795732,0.795732,0.795732,0.795732,0.795732,0.329433,0.329433,38,38,, +3189,0,0.28457,1,1,0,2,4,,4,3,Lake,St,656510,0.246,0.531,0,6.097935,4.5,4.5,0.449322,0.449322,0.449322,0.449322,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.633168,0.475817,0.449322,0.449322,0.633168,0.475817,0.471812,0.467954,0.449322,0.449322,0.471812,0.467954,0.527542,0.625984,0.449322,0.449322,0.527542,0.625984,0.449322,0.449322,0.449322,0.449322,0.449322,0.449322,,,,,,,0.633168,0.475817,0.471812,0.467954,0.527542,0.625984,0.449322,0.449322,0.449322,0.449322,0.241173,0.193968,0.192766,0.191609,0.209485,0.239018,0.186019,0.186019,0.098701,0.098701,26.966333,35.883975,36.188585,36.486925,32.365597,27.275797,38,38,38,38,,,,,,,,,,,3096,3096,0.449322,0.449322,0.449322,0.449322,0.449322,0.449322,0.449322,0.449322,0.186019,0.186019,38,38,, +3247,0,0.424216,1,1,0,2,5,,4,5,8 Mile,Rd,656509,0,0.424,0,9.090333,5.8,4.5,0.942701,0.942701,0.942701,0.942701,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.95457,0.942702,0.942701,0.942701,0.95457,0.942702,0.942702,0.942702,0.942701,0.942701,0.942702,0.942702,0.942721,0.946599,0.942701,0.942701,0.942721,0.946599,0.942701,0.942701,0.942701,0.942701,0.942701,0.942701,,,,,,,0.95457,0.942702,0.942702,0.942702,0.942721,0.946599,0.942701,0.942701,0.942701,0.942701,0.36273,0.359169,0.359169,0.359169,0.359175,0.360338,0.359169,0.359169,0.188069,0.188069,26.664279,26.999982,26.999977,26.99999,26.999426,26.888826,27,27,27,27,,,,,,,,,,,2580,2580,0.942701,0.942701,0.942701,0.942701,0.942701,0.942701,0.942701,0.942701,0.359169,0.359169,27,27,, +7257,0,1.002581,1,1,0,2,5,,4,8,Dixboro,Rd,942104,0,1.002,0,21.483873,5.8,4.5,2.227957,2.227957,2.227957,2.227957,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.227958,2.230285,2.227957,2.227957,2.227958,2.230285,2.227957,2.227957,2.227957,2.227957,2.227957,2.227957,2.228678,2.22796,2.227957,2.227957,2.228678,2.22796,2.227957,2.227957,2.227957,2.227957,2.227957,2.227957,,,,,,,2.227958,2.230285,2.227957,2.227957,2.228678,2.22796,2.227957,2.227957,2.227957,2.227957,0.848852,0.84955,0.848852,0.848852,0.849068,0.848852,0.848852,0.848852,0.444477,0.444477,26.999992,26.971819,27,27,26.991266,26.999971,27,27,27,27,,,,,,,,,,,2580,2580,2.227957,2.227957,2.227957,2.227957,2.227957,2.227957,2.227957,2.227957,0.848852,0.848852,27,27,, +11192,0,1.760775,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,3.163,4.923,0,37.730897,3.7,5,3.52155,3.52155,3.52155,3.52155,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.556318,3.521551,3.52155,3.52155,3.556318,3.521551,3.521553,3.521551,3.52155,3.52155,3.521553,3.521551,3.521555,3.525206,3.52155,3.52155,3.521555,3.525206,3.52155,3.52155,3.52155,3.52155,3.52155,3.52155,,,,,,,3.556318,3.521551,3.521553,3.521551,3.521555,3.525206,3.52155,3.52155,3.52155,3.52155,1.383835,1.373405,1.373405,1.373405,1.373406,1.374501,1.373405,1.373405,0.721918,0.721918,29.706709,29.999999,29.999982,29.999997,29.999957,29.968892,30,30,30,30,,,,,,,,,,,2580,2580,3.52155,3.52155,3.52155,3.52155,3.52155,3.52155,3.52155,3.52155,1.373405,1.373405,30,30,, +20796,0,0.695885,1,1,1,2,5,,4,3,9 Mile,Rd,4407342,4.994,5.69,0,14.91182,5.8,4.5,1.546411,1.546411,1.546411,1.546411,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.54682,1.548249,1.546411,1.546411,1.54682,1.548249,1.546554,1.546613,1.546411,1.546411,1.546554,1.546613,1.54739,1.548414,1.546411,1.546411,1.54739,1.548414,1.546411,1.546411,1.546411,1.546411,1.546411,1.546411,,,,,,,1.54682,1.548249,1.546554,1.546613,1.54739,1.548414,1.546411,1.546411,1.546411,1.546411,0.589305,0.589734,0.589225,0.589243,0.589476,0.589783,0.589183,0.589183,0.308509,0.308509,26.992858,26.967946,26.997504,26.996479,26.982911,26.965074,27,27,27,27,,,,,,,,,,,2838,2838,1.546411,1.546411,1.546411,1.546411,1.546411,1.546411,1.546411,1.546411,0.589183,0.589183,27,27,, +25266,0,0.507961,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.884874,0.15,4,2.031843,2.031843,2.031843,2.031843,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,,,,,,,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,0.700986,0.700986,0.700986,0.700986,0.700986,0.700986,0.700986,0.700986,0.360652,0.360652,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,2.031843,0.700986,0.700986,15,15,, +26714,0,0.515471,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.0458,0.15,4,2.061883,2.061883,2.061883,2.061883,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,,,,,,,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,0.71135,0.71135,0.71135,0.71135,0.71135,0.71135,0.71135,0.71135,0.365984,0.365984,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,2.061883,0.71135,0.71135,15,15,, +26716,0,0.91065,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.513925,0.15,4,3.642599,3.642599,3.642599,3.642599,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,,,,,,,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,1.256697,1.256697,1.256697,1.256697,1.256697,1.256697,1.256697,1.256697,0.646561,0.646561,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,3.642599,1.256697,1.256697,15,15,, +26719,0,0.371312,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.956679,0.15,4,1.485247,1.485247,1.485247,1.485247,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,,,,,,,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,0.51241,0.51241,0.51241,0.51241,0.51241,0.51241,0.51241,0.51241,0.263631,0.263631,14.999999,14.999999,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,1.485247,0.51241,0.51241,15,15,, +26725,0,0.657375,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.086613,0.15,4,2.629501,2.629501,2.629501,2.629501,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,,,,,,,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,0.907178,0.907178,0.907178,0.907178,0.907178,0.907178,0.907178,0.907178,0.466736,0.466736,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,2.629501,0.907178,0.907178,15,15,, +26726,0,0.255396,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.472765,0.15,4,1.021583,1.021583,1.021583,1.021583,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.021583,1.021584,1.021583,1.021583,1.021583,1.021584,1.021583,1.021583,1.021583,1.021583,1.021583,1.021583,1.021586,1.021585,1.021583,1.021583,1.021586,1.021585,1.021583,1.021583,1.021583,1.021583,1.021583,1.021583,,,,,,,1.021583,1.021584,1.021583,1.021583,1.021586,1.021585,1.021583,1.021583,1.021583,1.021583,0.352446,0.352447,0.352446,0.352446,0.352447,0.352447,0.352446,0.352446,0.181331,0.181331,14.999994,14.999977,14.999995,14.999996,14.999955,14.999972,15,15,15,15,,,,,,,,,,,34400,34400,1.021583,1.021583,1.021583,1.021583,1.021583,1.021583,1.021583,1.021583,0.352446,0.352446,15,15,, +29805,0,0.907639,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.449401,0.15,4,3.630555,3.630555,3.630555,3.630555,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,,,,,,,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,1.252541,1.252541,1.252541,1.252541,1.252541,1.252541,1.252541,1.252541,0.644423,0.644423,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,3.630555,1.252541,1.252541,15,15,, +7313,0,0.606594,1,1,0,2,5,GRV,5,8,8 Mile,Rd,942009,2.449,3.056,0,12.998443,5.55,5,1.819782,1.819782,1.819782,1.819782,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.819798,1.819782,1.819782,1.819782,1.819798,1.819782,1.819782,1.819782,1.819782,1.819782,1.819782,1.819782,1.819783,1.819802,1.819782,1.819782,1.819783,1.819802,1.819782,1.819782,1.819782,1.819782,1.819782,1.819782,,,,,,,1.819798,1.819782,1.819782,1.819782,1.819783,1.819802,1.819782,1.819782,1.819782,1.819782,0.655126,0.655122,0.655122,0.655122,0.655122,0.655128,0.655122,0.655122,0.339693,0.339693,19.999827,20,20,20,19.999989,19.999781,20,20,20,20,,,,,,,,,,,2236,2236,1.819782,1.819782,1.819782,1.819782,1.819782,1.819782,1.819782,1.819782,0.655122,0.655122,20,20,, +7191,0,0.60069,1,1,0,2,5,,4,8,9 Mile,Rd,932909,3.87,4.47,0,12.871936,5.8,4.5,1.334867,1.334867,1.334867,1.334867,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.581134,1.342011,1.334867,1.334867,1.581134,1.342011,1.344336,1.341293,1.334867,1.334867,1.344336,1.341293,1.378925,1.526888,1.334867,1.334867,1.378925,1.526888,1.334867,1.334867,1.334867,1.334867,1.334867,1.334867,,,,,,,1.581134,1.342011,1.344336,1.341293,1.378925,1.526888,1.334867,1.334867,1.334867,1.334867,0.582464,0.510727,0.511425,0.510512,0.521802,0.566191,0.508585,0.508585,0.266306,0.266306,22.794673,26.856286,26.80983,26.870664,26.13734,23.604499,27,27,27,27,,,,,,,,,,,2580,2580,1.334867,1.334867,1.334867,1.334867,1.334867,1.334867,1.334867,1.334867,0.508585,0.508585,27,27,, +7872,0,0.62402,1,1,0,2,5,GRV,4,8,Dixboro,Rd,942104,1.002,1.626,0,13.371864,6.55,4.5,2.496081,2.496081,2.496081,2.496081,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,,,,,,,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,0.861148,0.861148,0.861148,0.861148,0.861148,0.861148,0.861148,0.861148,0.443054,0.443054,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,2064,2064,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,2.496081,0.861148,0.861148,15,15,, +8158,0,0.410179,1,1,0,2,4,,4,8,10 Mile,Rd,942305,1.115,1.525,0,8.789551,4.5,4.5,0.647651,0.647651,0.647651,0.647651,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.991927,0.695462,0.647651,0.647651,0.991927,0.695462,0.684121,0.676984,0.647651,0.647651,0.684121,0.676984,0.789779,1.006745,0.647651,0.647651,0.789779,1.006745,0.647651,0.647651,0.647651,0.647651,0.647651,0.647651,,,,,,,0.991927,0.695462,0.684121,0.676984,0.789779,1.006745,0.647651,0.647651,0.647651,0.647651,0.37141,0.282471,0.279068,0.276927,0.310766,0.375856,0.268128,0.268128,0.142267,0.142267,24.811033,35.387624,35.974274,36.353502,31.161543,24.445851,38,38,38,38,,,,,,,,,,,3096,3096,0.647651,0.647651,0.647651,0.647651,0.647651,0.647651,0.647651,0.647651,0.268128,0.268128,38,38,, +26711,0,0.476701,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.215023,0.15,4,1.906804,1.906804,1.906804,1.906804,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,,,,,,,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,0.657847,0.657847,0.657847,0.657847,0.657847,0.657847,0.657847,0.657847,0.338458,0.338458,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,1.906804,0.657847,0.657847,15,15,, +26717,0,0.495912,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,10.626685,0.15,4,1.983648,1.983648,1.983648,1.983648,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,,,,,,,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,0.684359,0.684359,0.684359,0.684359,0.684359,0.684359,0.684359,0.684359,0.352098,0.352098,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,1.983648,0.684359,0.684359,15,15,, +26718,0,0.767632,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,16.44926,0.15,4,3.070529,3.070529,3.070529,3.070529,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,,,,,,,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,1.059332,1.059332,1.059332,1.059332,1.059332,1.059332,1.059332,1.059332,0.545019,0.545019,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,3.070529,1.059332,1.059332,15,15,, +7192,0,0.274036,1,1,0,2,5,,4,8,9 Mile,Rd,932909,3.596,3.87,0,5.872202,5.8,4.5,0.608969,0.608969,0.608969,0.608969,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.700714,0.613186,0.608969,0.608969,0.700714,0.613186,0.611977,0.611179,0.608969,0.608969,0.611977,0.611179,0.626202,0.671018,0.608969,0.608969,0.626202,0.671018,0.608969,0.608969,0.608969,0.608969,0.608969,0.608969,,,,,,,0.700714,0.613186,0.611977,0.611179,0.626202,0.671018,0.608969,0.608969,0.608969,0.608969,0.259541,0.233282,0.23292,0.23268,0.237187,0.250632,0.232017,0.232017,0.121489,0.121489,23.464863,26.8143,26.86728,26.902372,26.256976,24.503312,27,27,27,27,,,,,,,,,,,2580,2580,0.608969,0.608969,0.608969,0.608969,0.608969,0.608969,0.608969,0.608969,0.232017,0.232017,27,27,, +26712,0,0.500128,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.717036,0.15,4,2.000513,2.000513,2.000513,2.000513,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,,,,,,,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,0.690177,0.690177,0.690177,0.690177,0.690177,0.690177,0.690177,0.690177,0.355091,0.355091,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,2.000513,0.690177,0.690177,15,15,, +7890,0,0.606076,1,1,0,2,4,,4,8,10 Mile,Rd,942305,0.509,1.115,0,12.987345,4.5,4.5,0.956962,0.956962,0.956962,0.956962,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.169736,0.988956,0.956962,0.956962,1.169736,0.988956,0.980819,0.975272,0.956962,0.956962,0.980819,0.975272,1.056941,1.165998,0.956962,0.956962,1.056941,1.165998,0.956962,0.956962,0.956962,0.956962,0.956962,0.956962,,,,,,,1.169736,0.988956,0.980819,0.975272,1.056941,1.165998,0.956962,0.956962,0.956962,0.956962,0.460014,0.405781,0.403339,0.401675,0.426176,0.458893,0.396182,0.396182,0.210213,0.210213,31.087848,36.770648,37.075707,37.2866,34.405478,31.187516,38,38,38,38,,,,,,,,,,,3096,3096,0.956962,0.956962,0.956962,0.956962,0.956962,0.956962,0.956962,0.956962,0.396182,0.396182,38,38,, +26715,0,0.618123,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,13.245486,0.15,4,2.472491,2.472491,2.472491,2.472491,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,,,,,,,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,0.853009,0.853009,0.853009,0.853009,0.853009,0.853009,0.853009,0.853009,0.438867,0.438867,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,2.472491,0.853009,0.853009,15,15,, +20548,0,0.090457,1,1,1,2,5,,4,3,9 Mile,Rd,4407342,5.69,5.78,0,1.938355,5.8,4.5,0.201015,0.201015,0.201015,0.201015,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.201704,0.206825,0.201015,0.201015,0.201704,0.206825,0.201621,0.201898,0.201015,0.201015,0.201621,0.201898,0.208152,0.205306,0.201015,0.201015,0.208152,0.205306,0.201015,0.201015,0.201015,0.201015,0.201015,0.201015,,,,,,,0.201704,0.206825,0.201621,0.201898,0.208152,0.205306,0.201015,0.201015,0.201015,0.201015,0.076793,0.07833,0.076769,0.076851,0.078728,0.077874,0.076587,0.076587,0.040102,0.040102,26.907661,26.241463,26.918729,26.881919,26.07418,26.435643,27,27,27,27,,,,,,,,,,,2838,2838,0.201015,0.201015,0.201015,0.201015,0.201015,0.201015,0.201015,0.201015,0.076587,0.076587,27,27,, +3514,0,0.246517,1,1,0,2,4,,4,3,Lake,St,656510,0,0.246,0,5.282509,4.5,4.5,0.389238,0.389238,0.389238,0.389238,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.599033,0.418175,0.389238,0.389238,0.599033,0.418175,0.411706,0.407184,0.389238,0.389238,0.411706,0.407184,0.475031,0.607716,0.389238,0.389238,0.475031,0.607716,0.389238,0.389238,0.389238,0.389238,0.389238,0.389238,,,,,,,0.599033,0.418175,0.411706,0.407184,0.475031,0.607716,0.389238,0.389238,0.389238,0.389238,0.224083,0.169826,0.167885,0.166528,0.186882,0.226688,0.161144,0.161144,0.085503,0.085503,24.6915,35.3704,35.926162,36.325163,31.136957,24.338716,38,38,38,38,,,,,,,,,,,3096,3096,0.389238,0.389238,0.389238,0.389238,0.389238,0.389238,0.389238,0.389238,0.161144,0.161144,38,38,, +7664,0,0.408047,1,1,0,2,5,GRV,4,8,Dixboro,Rd,942104,1.626,2.034,0,8.743854,6.55,4.5,1.632186,1.632186,1.632186,1.632186,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,,,,,,,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,0.563104,0.563104,0.563104,0.563104,0.563104,0.563104,0.563104,0.563104,0.289713,0.289713,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,2064,2064,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,1.632186,0.563104,0.563104,15,15,, +26729,0,0.493749,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.580331,0.15,4,1.974995,1.974995,1.974995,1.974995,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,,,,,,,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,0.681373,0.681373,0.681373,0.681373,0.681373,0.681373,0.681373,0.681373,0.350562,0.350562,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,1.974995,0.681373,0.681373,15,15,, +25264,0,0.32866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.042708,0.15,4,1.314639,1.314639,1.314639,1.314639,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,,,,,,,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,0.45355,0.45355,0.45355,0.45355,0.45355,0.45355,0.45355,0.45355,0.233348,0.233348,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,1.314639,0.45355,0.45355,15,15,, +2570,0,0.646689,1,1,0,2,4,,4,5,8 Mile,Rd,656509,1.148,1.795,0,13.857621,4.5,4.5,1.021088,1.021088,1.021088,1.021088,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.201423,1.063038,1.021088,1.021088,1.201423,1.063038,1.022867,1.02256,1.021088,1.021088,1.022867,1.02256,1.078457,1.155698,1.021088,1.021088,1.078457,1.155698,1.021088,1.021088,1.021088,1.021088,1.021088,1.021088,,,,,,,1.201423,1.063038,1.022867,1.02256,1.078457,1.155698,1.021088,1.021088,1.021088,1.021088,0.476831,0.435315,0.423264,0.423172,0.439941,0.463113,0.42273,0.42273,0.224299,0.224299,32.29616,36.50042,37.933908,37.945302,35.978559,33.573947,38,38,38,38,,,,,,,,,,,3096,3096,1.021088,1.021088,1.021088,1.021088,1.021088,1.021088,1.021088,1.021088,0.42273,0.42273,38,38,, +10735,0,1.260048,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,11.007,12.266,0,27.001019,3,4,1.890071,1.890071,1.890071,1.890071,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.335327,3.332713,1.890071,1.890071,2.335327,3.332713,1.958294,1.97352,1.890071,1.890071,1.958294,1.97352,2.982373,2.449891,1.890071,1.890071,2.982373,2.449891,1.890071,1.890071,1.890071,1.890071,1.890071,1.890071,,,,,,,2.335327,3.332713,1.958294,1.97352,2.982373,2.449891,1.890071,1.890071,1.890071,1.890071,0.927407,1.226622,0.814297,0.818865,1.12152,0.961776,0.79383,0.79383,0.422116,0.422116,32.373557,22.685078,38.606492,38.308636,25.349902,30.859676,40,40,40,40,,,,,,,,,,,3096,3096,1.890071,1.890071,1.890071,1.890071,1.890071,1.890071,1.890071,1.890071,0.79383,0.79383,40,40,, +10993,0,0.95107,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,3.984,4.935,0,20.380067,3.7,5,1.90214,1.90214,1.90214,1.90214,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,,,,,,,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,0.741834,0.741834,0.741834,0.741834,0.741834,0.741834,0.741834,0.741834,0.389939,0.389939,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,1.90214,0.741834,0.741834,30,30,, +10997,0,1.070097,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,4.923,5.993,0,22.930642,3.7,5,2.140193,2.140193,2.140193,2.140193,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.357246,2.155453,2.140193,2.140193,2.357246,2.155453,2.140796,2.14133,2.140193,2.140193,2.140796,2.14133,2.162345,2.265361,2.140193,2.140193,2.162345,2.265361,2.140193,2.140193,2.140193,2.140193,2.140193,2.140193,,,,,,,2.357246,2.155453,2.140796,2.14133,2.162345,2.265361,2.140193,2.140193,2.140193,2.140193,0.899791,0.839253,0.834856,0.835016,0.841321,0.872226,0.834675,0.834675,0.43874,0.43874,27.237631,29.787606,29.991548,29.984071,29.692674,28.342413,30,30,30,30,,,,,,,,,,,2580,2580,2.140193,2.140193,2.140193,2.140193,2.140193,2.140193,2.140193,2.140193,0.834675,0.834675,30,30,, +26307,0,1.017395,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.801319,0.15,4,4.06958,4.06958,4.06958,4.06958,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,,,,,,,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,1.404005,1.404005,1.404005,1.404005,1.404005,1.404005,1.404005,1.404005,0.72235,0.72235,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,4.06958,1.404005,1.404005,15,15,, +10960,0,0.785829,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,10.221,11.007,0,16.839184,3,4,1.178743,1.178743,1.178743,1.178743,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.236848,1.650454,1.178743,1.178743,1.236848,1.650454,1.192963,1.206088,1.178743,1.178743,1.192963,1.206088,1.482379,1.296158,1.178743,1.178743,1.482379,1.296158,1.178743,1.178743,1.178743,1.178743,1.178743,1.178743,,,,,,,1.236848,1.650454,1.192963,1.206088,1.482379,1.296158,1.178743,1.178743,1.178743,1.178743,0.512503,0.636585,0.499338,0.503275,0.586163,0.530297,0.495072,0.495072,0.263253,0.263253,38.12087,28.567728,39.52321,39.093102,31.806798,36.376514,40,40,40,40,,,,,,,,,,,3096,3096,1.178743,1.178743,1.178743,1.178743,1.178743,1.178743,1.178743,1.178743,0.495072,0.495072,40,40,, +3238,0,0.350751,1,1,0,2,4,,4,5,8 Mile,Rd,656509,0.798,1.148,0,7.516094,4.5,4.5,0.553817,0.553817,0.553817,0.553817,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.600973,0.56307,0.553817,0.553817,0.600973,0.56307,0.554173,0.554129,0.553817,0.553817,0.554173,0.554129,0.566321,0.583978,0.553817,0.553817,0.566321,0.583978,0.553817,0.553817,0.553817,0.553817,0.553817,0.553817,,,,,,,0.600973,0.56307,0.554173,0.554129,0.566321,0.583978,0.553817,0.553817,0.553817,0.553817,0.243427,0.232056,0.229387,0.229374,0.233032,0.238329,0.22928,0.22928,0.121655,0.121655,35.018298,37.375569,37.975638,37.978646,37.161007,36.037417,38,38,38,38,,,,,,,,,,,3096,3096,0.553817,0.553817,0.553817,0.553817,0.553817,0.553817,0.553817,0.553817,0.22928,0.22928,38,38,, +3549,0,0.37359,1,1,0,2,5,,4,5,8 Mile,Rd,656509,0.424,0.798,0,8.0055,5.8,4.5,0.8302,0.8302,0.8302,0.8302,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.840653,0.8302,0.8302,0.8302,0.840653,0.8302,0.830201,0.8302,0.8302,0.8302,0.830201,0.8302,0.830218,0.833633,0.8302,0.8302,0.830218,0.833633,0.8302,0.8302,0.8302,0.8302,0.8302,0.8302,,,,,,,0.840653,0.8302,0.830201,0.8302,0.830218,0.833633,0.8302,0.8302,0.8302,0.8302,0.319442,0.316306,0.316306,0.316306,0.316311,0.317336,0.316306,0.316306,0.165625,0.165625,26.664279,26.999986,26.999977,26.99999,26.999426,26.888826,27,27,27,27,,,,,,,,,,,2580,2580,0.8302,0.8302,0.8302,0.8302,0.8302,0.8302,0.8302,0.8302,0.316306,0.316306,27,27,, +29998,0,0.987115,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.152467,0.15,4,3.948461,3.948461,3.948461,3.948461,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,,,,,,,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,1.362219,1.362219,1.362219,1.362219,1.362219,1.362219,1.362219,1.362219,0.700852,0.700852,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,3.948461,1.362219,1.362219,15,15,, +10957,0,0.357872,1,1,0,2,7,,5,5,Tower,Rd,1447210,0,0.358,0,7.668683,5.8,6,0.858893,0.858893,0.858893,0.858893,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.858941,0.862268,0.858893,0.858893,0.858941,0.862268,0.859048,0.859096,0.858893,0.858893,0.859048,0.859096,0.861473,0.859234,0.858893,0.858893,0.861473,0.859234,0.858893,0.858893,0.858893,0.858893,0.858893,0.858893,,,,,,,0.858941,0.862268,0.859048,0.859096,0.861473,0.859234,0.858893,0.858893,0.858893,0.858893,0.322099,0.323097,0.322131,0.322146,0.322859,0.322187,0.322085,0.322085,0.1682,0.1682,24.998591,24.902123,24.995483,24.994092,24.925118,24.990062,25,25,25,25,,,,,,,,,,,2064,2064,0.858893,0.858893,0.858893,0.858893,0.858893,0.858893,0.858893,0.858893,0.322085,0.322085,25,25,, +26306,0,0.09286,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.989852,0.15,4,0.371439,0.371439,0.371439,0.371439,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,,,,,,,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.128146,0.128146,0.128146,0.128146,0.128146,0.128146,0.128146,0.128146,0.06593,0.06593,14.999998,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.371439,0.128146,0.128146,15,15,, +22140,0,0.077933,1,1,0,2,7,,5,5,7 Mile,Rd,4600820,0,0.078,0,1.669997,5.8,6,0.18704,0.18704,0.18704,0.18704,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.187288,0.18704,0.18704,0.18704,0.187288,0.18704,0.18704,0.18704,0.18704,0.18704,0.18704,0.18704,0.18704,0.18708,0.18704,0.18704,0.18704,0.18708,0.18704,0.18704,0.18704,0.18704,0.18704,0.18704,,,,,,,0.187288,0.18704,0.18704,0.18704,0.18704,0.18708,0.18704,0.18704,0.18704,0.18704,0.070214,0.07014,0.07014,0.07014,0.07014,0.070152,0.07014,0.07014,0.036629,0.036629,24.966871,25,25,25,25,24.994636,25,25,25,25,,,,,,,,,,,2064,2064,0.18704,0.18704,0.18704,0.18704,0.18704,0.18704,0.18704,0.18704,0.07014,0.07014,25,25,, +3538,0,0.242084,1,1,0,2,4,,5,5,8 Mile,Rd,656509,1.795,2.037,0,5.187517,3,4,0.363126,0.363126,0.363126,0.363126,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.506887,0.375946,0.363126,0.363126,0.506887,0.375946,0.365134,0.364986,0.363126,0.363126,0.365134,0.364986,0.395851,0.467898,0.363126,0.363126,0.395851,0.467898,0.363126,0.363126,0.363126,0.363126,0.363126,0.363126,,,,,,,0.506887,0.375946,0.365134,0.364986,0.395851,0.467898,0.363126,0.363126,0.363126,0.363126,0.195641,0.156359,0.153115,0.153071,0.16233,0.183945,0.152513,0.152513,0.081098,0.081098,28.655382,38.636014,39.780037,39.796231,36.693236,31.043174,40,40,40,40,,,,,,,,,,,3096,3096,0.363126,0.363126,0.363126,0.363126,0.363126,0.363126,0.363126,0.363126,0.152513,0.152513,40,40,, +939,0,0.630379,1,1,0,2,5,,4,3,Griswold,Rd,634406,0.996,1.626,0,13.50813,5.8,4.5,1.400843,1.400843,1.400843,1.400843,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.406644,1.485915,1.400843,1.400843,1.406644,1.485915,1.401139,1.401078,1.400843,1.400843,1.401139,1.401078,1.472609,1.420824,1.400843,1.400843,1.472609,1.420824,1.400843,1.400843,1.400843,1.400843,1.400843,1.400843,,,,,,,1.406644,1.485915,1.401139,1.401078,1.472609,1.420824,1.400843,1.400843,1.400843,1.400843,0.535461,0.559243,0.53381,0.533792,0.555251,0.539715,0.533721,0.533721,0.279468,0.279468,26.888658,25.454187,26.994299,26.995476,25.684183,26.620307,27,27,27,27,,,,,,,,,,,2580,2580,1.400843,1.400843,1.400843,1.400843,1.400843,1.400843,1.400843,1.400843,0.533721,0.533721,27,27,, +3497,0,0.444199,1,1,0,2,4,,4,3,Lake,St,656510,1.095,1.539,0,9.518556,4.5,4.5,0.701367,0.701367,0.701367,0.701367,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.922777,0.811058,0.701367,0.701367,0.922777,0.811058,0.771784,0.759625,0.701367,0.701367,0.771784,0.759625,0.885673,0.96485,0.701367,0.701367,0.885673,0.96485,0.701367,0.701367,0.701367,0.701367,0.701367,0.701367,,,,,,,0.922777,0.811058,0.771784,0.759625,0.885673,0.96485,0.701367,0.701367,0.701367,0.701367,0.356789,0.323273,0.311491,0.307843,0.345658,0.369411,0.290366,0.290366,0.154067,0.154067,28.882336,32.860716,34.532926,35.085662,30.092313,27.622902,38,38,38,38,,,,,,,,,,,3096,3096,0.701367,0.701367,0.701367,0.701367,0.701367,0.701367,0.701367,0.701367,0.290366,0.290366,38,38,, +3596,0,0.350732,1,1,1,2,4,,4,3,Pontiac,Trl,656507,0.998,1.348,0,7.515679,4.5,4.5,0.553787,0.553787,0.553787,0.553787,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.68427,1.006766,0.553787,0.553787,0.68427,1.006766,0.588029,0.592688,0.553787,0.553787,0.588029,0.592688,0.985245,0.748024,0.553787,0.553787,0.985245,0.748024,0.553787,0.553787,0.553787,0.553787,0.553787,0.553787,,,,,,,0.68427,1.006766,0.588029,0.592688,0.985245,0.748024,0.553787,0.553787,0.553787,0.553787,0.268413,0.365161,0.23954,0.240938,0.358705,0.287539,0.229268,0.229268,0.121649,0.121649,30.753817,20.902484,35.78721,35.505887,21.359059,28.132637,38,38,38,38,,,,,,,,,,,3406,3406,0.553787,0.553787,0.553787,0.553787,0.553787,0.553787,0.553787,0.553787,0.229268,0.229268,38,38,, +20303,0,0.221191,1,1,0,2,5,,4,3,9 Mile,Rd,4407342,4.42,4.641,0,4.739803,5.8,4.5,0.491535,0.491535,0.491535,0.491535,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.494132,0.496227,0.491535,0.491535,0.494132,0.496227,0.49169,0.491674,0.491535,0.491535,0.49169,0.491674,0.495014,0.496816,0.491535,0.491535,0.495014,0.496816,0.491535,0.491535,0.491535,0.491535,0.491535,0.491535,,,,,,,0.494132,0.496227,0.49169,0.491674,0.495014,0.496816,0.491535,0.491535,0.491535,0.491535,0.188054,0.188683,0.187321,0.187316,0.188319,0.188859,0.187275,0.187275,0.098061,0.098061,26.858129,26.744691,26.991518,26.992385,26.810248,26.712981,27,27,27,27,,,,,,,,,,,2580,2580,0.491535,0.491535,0.491535,0.491535,0.491535,0.491535,0.491535,0.491535,0.187275,0.187275,27,27,, +26305,0,0.765176,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.39662,0.15,4,3.060702,3.060702,3.060702,3.060702,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,,,,,,,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,1.055942,1.055942,1.055942,1.055942,1.055942,1.055942,1.055942,1.055942,0.543275,0.543275,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,3.060702,1.055942,1.055942,15,15,, +26730,0,0.567777,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.166651,0.15,4,2.271108,2.271108,2.271108,2.271108,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,,,,,,,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,0.783532,0.783532,0.783532,0.783532,0.783532,0.783532,0.783532,0.783532,0.403122,0.403122,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,2.271108,0.783532,0.783532,15,15,, +2914,0,0.493817,1,1,0,2,4,,4,3,Pontiac,Trl,656507,0.504,0.998,0,10.581796,4.5,4.5,0.779711,0.779711,0.779711,0.779711,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.926703,1.15317,0.779711,0.779711,0.926703,1.15317,0.88065,0.901362,0.779711,0.779711,0.88065,0.901362,1.024916,0.95917,0.779711,0.779711,1.024916,0.95917,0.779711,0.779711,0.779711,0.779711,0.779711,0.779711,,,,,,,0.926703,1.15317,0.88065,0.901362,1.024916,0.95917,0.779711,0.779711,0.779711,0.779711,0.366898,0.434838,0.353082,0.359296,0.396362,0.376638,0.3228,0.3228,0.171277,0.171277,31.972516,25.693542,33.644484,32.871398,28.908739,30.890265,38,38,38,38,,,,,,,,,,,3096,3096,0.779711,0.779711,0.779711,0.779711,0.779711,0.779711,0.779711,0.779711,0.3228,0.3228,38,38,, +20106,0,0.353638,1,1,0,2,5,,4,3,9 Mile,Rd,4407342,4.641,4.994,0,7.577958,5.8,4.5,0.785862,0.785862,0.785862,0.785862,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.791974,0.831246,0.785862,0.785862,0.791974,0.831246,0.785862,0.785862,0.785862,0.785862,0.785862,0.785862,0.845846,0.80803,0.785862,0.785862,0.845846,0.80803,0.785862,0.785862,0.785862,0.785862,0.785862,0.785862,,,,,,,0.791974,0.831246,0.785862,0.785862,0.845846,0.80803,0.785862,0.785862,0.785862,0.785862,0.301247,0.313029,0.299414,0.299414,0.317409,0.306064,0.299414,0.299414,0.15678,0.15678,26.791639,25.525865,26.999997,26.999998,25.085279,26.259263,27,27,27,27,,,,,,,,,,,2580,2580,0.785862,0.785862,0.785862,0.785862,0.785862,0.785862,0.785862,0.785862,0.299414,0.299414,27,27,, +26722,0,0.357087,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.651859,0.15,4,1.428347,1.428347,1.428347,1.428347,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,,,,,,,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,0.49278,0.49278,0.49278,0.49278,0.49278,0.49278,0.49278,0.49278,0.253532,0.253532,14.999999,14.999998,15,15,14.999996,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,1.428347,0.49278,0.49278,15,15,, +26723,0,0.301885,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.46897,0.15,4,1.207541,1.207541,1.207541,1.207541,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,,,,,,,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,0.416602,0.416602,0.416602,0.416602,0.416602,0.416602,0.416602,0.416602,0.214339,0.214339,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,1.207541,0.416602,0.416602,15,15,, +2628,0,0.189405,1,1,1,2,4,,4,3,Lafayette,St,656507,1.808,1.997,0,4.058687,4.5,4.5,0.299061,0.299061,0.299061,0.299061,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.347845,0.353639,0.299061,0.299061,0.347845,0.353639,0.324632,0.323532,0.299061,0.299061,0.324632,0.323532,0.366681,0.358741,0.299061,0.299061,0.366681,0.358741,0.299061,0.299061,0.299061,0.299061,0.299061,0.299061,,,,,,,0.347845,0.353639,0.324632,0.323532,0.366681,0.358741,0.299061,0.299061,0.299061,0.299061,0.138446,0.140185,0.131483,0.131152,0.144097,0.141715,0.123811,0.123811,0.065694,0.065694,32.670664,32.135425,35.006753,35.125859,30.992374,31.67837,38,38,38,38,,,,,,,,,,,3406,3406,0.299061,0.299061,0.299061,0.299061,0.299061,0.299061,0.299061,0.299061,0.123811,0.123811,38,38,, +2726,0,0.424043,1,1,0,2,5,,4,3,McMunn,St,657701,0.113,0.537,0,9.086638,5.8,4.5,0.942318,0.942318,0.942318,0.942318,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.943338,1.029905,0.942318,0.942318,0.943338,1.029905,0.94404,0.943739,0.942318,0.942318,0.94404,0.943739,1.080583,0.9807,0.942318,0.942318,1.080583,0.9807,0.942318,0.942318,0.942318,0.942318,0.942318,0.942318,,,,,,,0.943338,1.029905,0.94404,0.943739,1.080583,0.9807,0.942318,0.942318,0.942318,0.942318,0.359329,0.385299,0.35954,0.359449,0.400503,0.370538,0.359023,0.359023,0.187992,0.187992,26.970801,24.70383,26.950754,26.959361,23.54524,25.943286,27,27,27,27,,,,,,,,,,,2580,2580,0.942318,0.942318,0.942318,0.942318,0.942318,0.942318,0.942318,0.942318,0.359023,0.359023,27,27,, +3173,0,0.264194,1,1,0,2,4,,4,3,Lake,St,656510,0.777,1.041,0,5.661309,4.5,4.5,0.417149,0.417149,0.417149,0.417149,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.430083,0.438159,0.417149,0.417149,0.430083,0.438159,0.420316,0.419174,0.417149,0.417149,0.420316,0.419174,0.451224,0.442235,0.417149,0.417149,0.451224,0.442235,0.417149,0.417149,0.417149,0.417149,0.417149,0.417149,,,,,,,0.430083,0.438159,0.420316,0.419174,0.451224,0.442235,0.417149,0.417149,0.417149,0.417149,0.17658,0.179003,0.17365,0.173307,0.182922,0.180225,0.1727,0.1727,0.091634,0.091634,36.857186,36.177857,37.713682,37.816445,35.130327,35.844458,38,38,38,38,,,,,,,,,,,3096,3096,0.417149,0.417149,0.417149,0.417149,0.417149,0.417149,0.417149,0.417149,0.1727,0.1727,38,38,, +20952,0,0.31108,1,1,1,2,5,,4,3,Reynold Sweet,Pkwy,4412095,0,0.311,0,6.665989,5.8,4.5,0.691288,0.691288,0.691288,0.691288,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.70587,0.736128,0.691288,0.691288,0.70587,0.736128,0.694465,0.69488,0.691288,0.691288,0.694465,0.69488,0.75529,0.739321,0.691288,0.691288,0.75529,0.739321,0.691288,0.691288,0.691288,0.691288,0.691288,0.691288,,,,,,,0.70587,0.736128,0.694465,0.69488,0.75529,0.739321,0.691288,0.691288,0.691288,0.691288,0.267755,0.276833,0.264334,0.264458,0.282581,0.277791,0.263381,0.263381,0.137912,0.137912,26.442239,25.355315,26.876458,26.860424,24.712059,25.245816,27,27,27,27,,,,,,,,,,,2838,2838,0.691288,0.691288,0.691288,0.691288,0.691288,0.691288,0.691288,0.691288,0.263381,0.263381,27,27,, +29804,0,0.459543,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.84734,0.15,4,1.83817,1.83817,1.83817,1.83817,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,,,,,,,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,0.634169,0.634169,0.634169,0.634169,0.634169,0.634169,0.634169,0.634169,0.326275,0.326275,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,1.83817,0.634169,0.634169,15,15,, +3412,0,0.249451,1,1,0,2,5,,4,3,Dorothy,St,657506,0.125,0.374,0,5.345371,5.8,4.5,0.554335,0.554335,0.554335,0.554335,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.606343,0.584826,0.554335,0.554335,0.606343,0.584826,0.580656,0.578521,0.554335,0.554335,0.580656,0.578521,0.643783,0.652687,0.554335,0.554335,0.643783,0.652687,0.554335,0.554335,0.554335,0.554335,0.554335,0.554335,,,,,,,0.606343,0.584826,0.580656,0.578521,0.643783,0.652687,0.554335,0.554335,0.554335,0.554335,0.226804,0.220349,0.219098,0.218457,0.238036,0.240707,0.211202,0.211202,0.11059,0.11059,24.684105,25.592273,25.776108,25.871201,23.24858,22.931411,27,27,27,27,,,,,,,,,,,2580,2580,0.554335,0.554335,0.554335,0.554335,0.554335,0.554335,0.554335,0.554335,0.211202,0.211202,27,27,, +3595,0,0.153,1,1,1,2,4,,4,3,Lafayette,St,656507,1.584,1.737,0,3.278562,4.5,4.5,0.241578,0.241578,0.241578,0.241578,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.351375,0.470439,0.241578,0.241578,0.351375,0.470439,0.289997,0.292541,0.241578,0.241578,0.289997,0.292541,0.519744,0.412832,0.241578,0.241578,0.519744,0.412832,0.241578,0.241578,0.241578,0.241578,0.241578,0.241578,,,,,,,0.351375,0.470439,0.289997,0.292541,0.519744,0.412832,0.241578,0.241578,0.241578,0.241578,0.132952,0.168672,0.114539,0.115302,0.183463,0.15139,0.100013,0.100013,0.053067,0.053067,26.125856,19.513647,31.655414,31.380104,17.662507,22.236565,38,38,38,38,,,,,,,,,,,3406,3406,0.241578,0.241578,0.241578,0.241578,0.241578,0.241578,0.241578,0.241578,0.100013,0.100013,38,38,, +3284,0,0.235884,1,1,1,2,4,,4,3,Pontiac,Trl,656507,1.348,1.584,0,5.054658,4.5,4.5,0.372448,0.372448,0.372448,0.372448,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.379632,0.413333,0.372448,0.372448,0.379632,0.413333,0.375196,0.375783,0.372448,0.372448,0.375196,0.375783,0.39864,0.381591,0.372448,0.372448,0.39864,0.381591,0.372448,0.372448,0.372448,0.372448,0.372448,0.372448,,,,,,,0.379632,0.413333,0.375196,0.375783,0.39864,0.381591,0.372448,0.372448,0.372448,0.372448,0.156349,0.166459,0.155018,0.155194,0.162051,0.156936,0.154194,0.154194,0.081815,0.081815,37.280907,34.241269,37.721775,37.662808,35.503346,37.089588,38,38,38,38,,,,,,,,,,,3406,3406,0.372448,0.372448,0.372448,0.372448,0.372448,0.372448,0.372448,0.372448,0.154194,0.154194,38,38,, +3282,0,0.071101,1,1,1,2,4,,4,3,Lafayette,St,656507,1.737,1.808,0,1.523602,4.5,4.5,0.112265,0.112265,0.112265,0.112265,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.117456,0.120466,0.112265,0.112265,0.117456,0.120466,0.115725,0.115773,0.112265,0.112265,0.115725,0.115773,0.121058,0.116839,0.112265,0.112265,0.121058,0.116839,0.112265,0.112265,0.112265,0.112265,0.112265,0.112265,,,,,,,0.117456,0.120466,0.115725,0.115773,0.121058,0.116839,0.112265,0.112265,0.112265,0.112265,0.048035,0.048938,0.047516,0.04753,0.049116,0.04785,0.046478,0.046478,0.024661,0.024661,36.320733,35.413284,36.864149,36.848723,35.240154,36.512666,38,38,38,38,,,,,,,,,,,3406,3406,0.112265,0.112265,0.112265,0.112265,0.112265,0.112265,0.112265,0.112265,0.046478,0.046478,38,38,, +3501,0,0.246314,1,1,0,2,4,,4,3,Lake,St,656510,0.531,0.777,0,5.278165,4.5,4.5,0.388917,0.388917,0.388917,0.388917,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.502345,0.50584,0.388917,0.388917,0.502345,0.50584,0.405571,0.401599,0.388917,0.388917,0.405571,0.401599,0.561172,0.567874,0.388917,0.388917,0.561172,0.567874,0.388917,0.388917,0.388917,0.388917,0.388917,0.388917,,,,,,,0.502345,0.50584,0.405571,0.401599,0.561172,0.567874,0.388917,0.388917,0.388917,0.388917,0.19504,0.196089,0.166008,0.164816,0.212688,0.214699,0.161012,0.161012,0.085432,0.085432,29.419715,29.21645,36.439638,36.800066,26.335693,26.024915,38,38,38,38,,,,,,,,,,,3096,3096,0.388917,0.388917,0.388917,0.388917,0.388917,0.388917,0.388917,0.388917,0.161012,0.161012,38,38,, +3593,0,0.060765,1,1,1,2,4,,4,3,Lafayette,St,656507,1.997,2.058,0,1.302112,4.5,4.5,0.095945,0.095945,0.095945,0.095945,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.154234,0.146921,0.095945,0.095945,0.154234,0.146921,0.117165,0.116757,0.095945,0.095945,0.117165,0.116757,0.151727,0.157944,0.095945,0.095945,0.151727,0.157944,0.095945,0.095945,0.095945,0.095945,0.095945,0.095945,,,,,,,0.154234,0.146921,0.117165,0.116757,0.151727,0.157944,0.095945,0.095945,0.095945,0.095945,0.057208,0.055014,0.046087,0.045965,0.056456,0.058321,0.039721,0.039721,0.021076,0.021076,23.638831,24.815417,31.11787,31.226538,24.029421,23.083637,38,38,38,38,,,,,,,,,,,3406,3406,0.095945,0.095945,0.095945,0.095945,0.095945,0.095945,0.095945,0.095945,0.039721,0.039721,38,38,, +2631,0,0.098479,1,1,1,2,5,,4,3,Reynold Sweet,Pkwy,657706,0.191,0.289,0,2.110257,5.8,4.5,0.218841,0.218841,0.218841,0.218841,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.223458,0.233037,0.218841,0.218841,0.223458,0.233037,0.219847,0.219979,0.218841,0.218841,0.219847,0.219979,0.239103,0.234047,0.218841,0.218841,0.239103,0.234047,0.218841,0.218841,0.218841,0.218841,0.218841,0.218841,,,,,,,0.223458,0.233037,0.219847,0.219979,0.239103,0.234047,0.218841,0.218841,0.218841,0.218841,0.084763,0.087637,0.08368,0.08372,0.089457,0.08794,0.083379,0.083379,0.043659,0.043659,26.442239,25.355315,26.876458,26.860424,24.712059,25.245816,27,27,27,27,,,,,,,,,,,2838,2838,0.218841,0.218841,0.218841,0.218841,0.218841,0.218841,0.218841,0.218841,0.083379,0.083379,27,27,, +2529,0,0.053459,1,1,0,2,4,,4,3,Lake,St,656510,1.041,1.095,0,1.145554,4.5,4.5,0.084409,0.084409,0.084409,0.084409,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.120851,0.163833,0.084409,0.084409,0.120851,0.163833,0.092884,0.091421,0.084409,0.084409,0.092884,0.091421,0.2056,0.174442,0.084409,0.084409,0.2056,0.174442,0.084409,0.084409,0.084409,0.084409,0.084409,0.084409,,,,,,,0.120851,0.163833,0.092884,0.091421,0.2056,0.174442,0.084409,0.084409,0.084409,0.084409,0.045878,0.058773,0.037488,0.037049,0.071303,0.061955,0.034945,0.034945,0.018542,0.018542,26.541456,19.57817,34.532926,35.085662,15.600946,18.387535,38,38,38,38,,,,,,,,,,,3096,3096,0.084409,0.084409,0.084409,0.084409,0.084409,0.084409,0.084409,0.084409,0.034945,0.034945,38,38,, +752,0,0.5479,1,1,0,2,5,,4,3,Griswold,Rd,634406,0.448,0.996,0,11.740717,5.8,4.5,1.217556,1.217556,1.217556,1.217556,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.219888,1.25309,1.217556,1.217556,1.219888,1.25309,1.217625,1.217601,1.217556,1.217556,1.217625,1.217601,1.245034,1.22645,1.217556,1.217556,1.245034,1.22645,1.217556,1.217556,1.217556,1.217556,1.217556,1.217556,,,,,,,1.219888,1.25309,1.217625,1.217601,1.245034,1.22645,1.217556,1.217556,1.217556,1.217556,0.464588,0.474549,0.463909,0.463902,0.472132,0.466557,0.463889,0.463889,0.242902,0.242902,26.948386,26.234353,26.998473,26.998999,26.4041,26.804205,27,27,27,27,,,,,,,,,,,2580,2580,1.217556,1.217556,1.217556,1.217556,1.217556,1.217556,1.217556,1.217556,0.463889,0.463889,27,27,, +20492,0,0.42609,1,1,0,2,5,,4,3,9 Mile,Rd,4407342,3.994,4.42,0,9.130505,5.8,4.5,0.946867,0.946867,0.946867,0.946867,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.949223,0.974908,0.946867,0.946867,0.949223,0.974908,0.947319,0.947278,0.946867,0.946867,0.947319,0.947278,0.958473,0.954559,0.946867,0.946867,0.958473,0.954559,0.946867,0.946867,0.946867,0.946867,0.946867,0.946867,,,,,,,0.949223,0.974908,0.947319,0.947278,0.958473,0.954559,0.946867,0.946867,0.946867,0.946867,0.361463,0.369169,0.360892,0.36088,0.364238,0.363064,0.360756,0.360756,0.1889,0.1889,26.932994,26.223416,26.987131,26.988278,26.673074,26.782439,27,27,27,27,,,,,,,,,,,2580,2580,0.946867,0.946867,0.946867,0.946867,0.946867,0.946867,0.946867,0.946867,0.360756,0.360756,27,27,, +479,0,0.366997,1,1,0,2,5,,4,3,Griswold,Rd,634406,1.626,1.993,0,7.86423,5.8,4.5,0.81555,0.81555,0.81555,0.81555,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.818927,0.871037,0.81555,0.81555,0.818927,0.871037,0.815722,0.815686,0.81555,0.81555,0.815722,0.815686,0.865807,0.830245,0.81555,0.81555,0.865807,0.830245,0.81555,0.81555,0.81555,0.81555,0.81555,0.81555,,,,,,,0.818927,0.871037,0.815722,0.815686,0.865807,0.830245,0.81555,0.81555,0.81555,0.81555,0.311738,0.327371,0.310776,0.310765,0.325802,0.315133,0.310724,0.310724,0.162702,0.162702,26.888658,25.280031,26.994299,26.995476,25.43274,26.522119,27,27,27,27,,,,,,,,,,,2580,2580,0.81555,0.81555,0.81555,0.81555,0.81555,0.81555,0.81555,0.81555,0.310724,0.310724,27,27,, +2524,0,0.249934,1,1,0,2,4,,4,3,10 Mile,Rd,656510,1.539,1.789,0,5.355719,4.5,4.5,0.394632,0.394632,0.394632,0.394632,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.726652,0.473697,0.394632,0.394632,0.726652,0.473697,0.471036,0.458497,0.394632,0.394632,0.471036,0.458497,0.543455,0.698381,0.394632,0.394632,0.543455,0.698381,0.394632,0.394632,0.394632,0.394632,0.394632,0.394632,,,,,,,0.726652,0.473697,0.471036,0.458497,0.543455,0.698381,0.394632,0.394632,0.394632,0.394632,0.262984,0.187097,0.186299,0.182537,0.208025,0.254502,0.163378,0.163378,0.086687,0.086687,20.637134,31.657364,31.836209,32.706866,27.593841,21.472544,38,38,38,38,,,,,,,,,,,3096,3096,0.394632,0.394632,0.394632,0.394632,0.394632,0.394632,0.394632,0.394632,0.163378,0.163378,38,38,, +9333,1,1.54837,3,0,0,1,1,,5,6,N I 275,,1228001,6.571,8.118,0,,1.02,7,1.327174,,1.327174,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.328006,,1.327174,,1.328006,,1.327176,,1.327174,,1.327176,,1.327191,,1.327174,,1.327191,,1.327174,,1.327174,,1.327174,,,,,,,,1.328006,,1.327176,,1.327191,,1.327174,,1.327174,,0.677108,,0.67686,,0.676864,,0.676859,,0.369397,,69.956159,,69.999889,,69.999101,,70,,70,,,,,,,,,,,,22704,,1.327174,,1.327174,,1.327174,,1.327174,,0.676859,,70,,, +10066,0,0.806292,1,1,0,2,5,,5,6,Scofield,Rd,1238109,1.508,2.314,0,17.277689,3.7,5,1.612584,1.612584,1.612584,1.612584,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.612588,1.612584,1.612584,1.612584,1.612588,1.612584,1.612584,1.612584,1.612584,1.612584,1.612584,1.612584,1.612584,1.612586,1.612584,1.612584,1.612584,1.612586,1.612584,1.612584,1.612584,1.612584,1.612584,1.612584,,,,,,,1.612588,1.612584,1.612584,1.612584,1.612584,1.612586,1.612584,1.612584,1.612584,1.612584,0.628909,0.628908,0.628908,0.628908,0.628908,0.628908,0.628908,0.628908,0.33058,0.33058,29.999934,30,30,30,29.999999,29.999978,30,30,30,30,,,,,,,,,,,2580,2580,1.612584,1.612584,1.612584,1.612584,1.612584,1.612584,1.612584,1.612584,0.628908,0.628908,30,30,, +10076,0,1.224028,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,2.212,3.435,0,26.229171,3.7,5,2.448056,2.448056,2.448056,2.448056,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.448062,2.448072,2.448056,2.448056,2.448062,2.448072,2.448056,2.448056,2.448056,2.448056,2.448056,2.448056,2.44806,2.448059,2.448056,2.448056,2.44806,2.448059,2.448056,2.448056,2.448056,2.448056,2.448056,2.448056,,,,,,,2.448062,2.448072,2.448056,2.448056,2.44806,2.448059,2.448056,2.448056,2.448056,2.448056,0.954744,0.954747,0.954742,0.954742,0.954743,0.954743,0.954742,0.954742,0.501851,0.501851,29.999927,29.999807,29.999998,29.999999,29.999946,29.999962,30,30,30,30,,,,,,,,,,,2580,2580,2.448056,2.448056,2.448056,2.448056,2.448056,2.448056,2.448056,2.448056,0.954742,0.954742,30,30,, +10174,0,1.893309,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,0.479,2.371,0,40.570905,3.7,5,3.786618,3.786618,3.786618,3.786618,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.786646,3.786618,3.786618,3.786618,3.786646,3.786618,3.786619,3.786619,3.786618,3.786618,3.786619,3.786619,3.786622,3.786672,3.786618,3.786618,3.786622,3.786672,3.786618,3.786618,3.786618,3.786618,3.786618,3.786618,,,,,,,3.786646,3.786618,3.786619,3.786619,3.786622,3.786672,3.786618,3.786618,3.786618,3.786618,1.476789,1.476781,1.476781,1.476781,1.476782,1.476797,1.476781,1.476781,0.776257,0.776257,29.99978,29.999999,29.999991,29.999993,29.999969,29.999567,30,30,30,30,,,,,,,,,,,2580,2580,3.786618,3.786618,3.786618,3.786618,3.786618,3.786618,3.786618,3.786618,1.476781,1.476781,30,30,, +10232,0,1.453711,1,1,0,2,5,,5,6,Grafton,Rd,1236709,6.238,7.691,0,31.150956,3.7,5,2.907423,2.907423,2.907423,2.907423,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.9165,2.907463,2.907423,2.907423,2.9165,2.907463,2.910663,2.907554,2.907423,2.907423,2.910663,2.907554,2.907701,2.91575,2.907423,2.907423,2.907701,2.91575,2.907423,2.907423,2.907423,2.907423,2.907423,2.907423,,,,,,,2.9165,2.907463,2.910663,2.907554,2.907701,2.91575,2.907423,2.907423,2.907423,2.907423,1.136618,1.133907,1.134867,1.133934,1.133978,1.136393,1.133895,1.133895,0.596022,0.596022,29.906624,29.99958,29.966602,29.998649,29.997128,29.914323,30,30,30,30,,,,,,,,,,,2580,2580,2.907423,2.907423,2.907423,2.907423,2.907423,2.907423,2.907423,2.907423,1.133895,1.133895,30,30,, +10247,0,1.455236,1,1,0,2,5,,5,6,Carleton West,Rd,1236309,0.044,1.499,0,31.183625,3.7,5,2.910472,2.910472,2.910472,2.910472,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,,,,,,,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,1.135084,1.135084,1.135084,1.135084,1.135084,1.135084,1.135084,1.135084,0.596647,0.596647,29.999999,30,30,30,29.999999,30,30,30,30,30,,,,,,,,,,,2580,2580,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,2.910472,1.135084,1.135084,30,30,, +10251,0,1.537641,1,1,0,2,5,,5,6,Sumpter,Rd,1236306,0.974,2.511,0,32.949454,3.7,5,3.075282,3.075282,3.075282,3.075282,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.492878,3.076063,3.075282,3.075282,3.492878,3.076063,3.080415,3.077898,3.075282,3.075282,3.080415,3.077898,3.092199,3.342915,3.075282,3.075282,3.092199,3.342915,3.075282,3.075282,3.075282,3.075282,3.075282,3.075282,,,,,,,3.492878,3.076063,3.080415,3.077898,3.092199,3.342915,3.075282,3.075282,3.075282,3.075282,1.324639,1.199594,1.2009,1.200145,1.204435,1.27965,1.19936,1.19936,0.630433,0.630433,26.413306,29.992384,29.950012,29.974505,29.835878,27.598209,30,30,30,30,,,,,,,,,,,2580,2580,3.075282,3.075282,3.075282,3.075282,3.075282,3.075282,3.075282,3.075282,1.19936,1.19936,30,30,, +10260,0,1.84552,1,1,0,2,5,,5,6,Palmer,Rd,1236206,3.747,5.592,0,39.546852,3.7,5,3.69104,3.69104,3.69104,3.69104,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.695657,3.691102,3.69104,3.69104,3.695657,3.691102,3.691052,3.691046,3.69104,3.69104,3.691052,3.691046,3.691185,3.693186,3.69104,3.69104,3.691185,3.693186,3.69104,3.69104,3.69104,3.69104,3.69104,3.69104,,,,,,,3.695657,3.691102,3.691052,3.691046,3.691185,3.693186,3.69104,3.69104,3.69104,3.69104,1.440891,1.439524,1.439509,1.439507,1.439549,1.440149,1.439505,1.439505,0.756663,0.756663,29.962514,29.999494,29.999898,29.999947,29.998819,29.982562,30,30,30,30,,,,,,,,,,,2580,2580,3.69104,3.69104,3.69104,3.69104,3.69104,3.69104,3.69104,3.69104,1.439505,1.439505,30,30,, +10275,0,2.808473,1,1,0,2,5,,5,6,Tuttlehill,Rd,1236107,3.191,5.998,0,60.181562,3.7,5,5.616946,5.616946,5.616946,5.616946,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.61697,5.616946,5.616946,5.616946,5.61697,5.616946,5.616946,5.616946,5.616946,5.616946,5.616946,5.616946,5.616946,5.616956,5.616946,5.616946,5.616946,5.616956,5.616946,5.616946,5.616946,5.616946,5.616946,5.616946,,,,,,,5.61697,5.616946,5.616946,5.616946,5.616946,5.616956,5.616946,5.616946,5.616946,5.616946,2.190616,2.190609,2.190609,2.190609,2.190609,2.190612,2.190609,2.190609,1.151474,1.151474,29.999868,30,30,30,29.999999,29.999944,30,30,30,30,,,,,,,,,,,2580,2580,5.616946,5.616946,5.616946,5.616946,5.616946,5.616946,5.616946,5.616946,2.190609,2.190609,30,30,, +17919,0,0.517584,1,1,0,2,5,,4,2,Bemis,Rd,1670503,2.529,3.046,0,11.091084,5.8,4.5,1.150186,1.150186,1.150186,1.150186,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.154066,1.150361,1.150186,1.150186,1.154066,1.150361,1.150348,1.150268,1.150186,1.150186,1.150348,1.150268,1.151098,1.153262,1.150186,1.150186,1.151098,1.153262,1.150186,1.150186,1.150186,1.150186,1.150186,1.150186,,,,,,,1.154066,1.150361,1.150348,1.150268,1.151098,1.153262,1.150186,1.150186,1.150186,1.150186,0.439385,0.438274,0.438269,0.438245,0.438494,0.439144,0.438221,0.438221,0.229462,0.229462,26.909238,26.995896,26.996216,26.998091,26.978626,26.928004,27,27,27,27,,,,,,,,,,,2580,2580,1.150186,1.150186,1.150186,1.150186,1.150186,1.150186,1.150186,1.150186,0.438221,0.438221,27,27,, +18085,0,1.450414,1,1,0,2,4,,5,2,Willis,Rd,1670409,1.598,3.047,0,31.080301,3,4,2.175621,2.175621,2.175621,2.175621,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.340683,2.242575,2.175621,2.175621,2.340683,2.242575,2.17964,2.179031,2.175621,2.175621,2.17964,2.179031,2.27683,2.338704,2.175621,2.175621,2.27683,2.338704,2.175621,2.175621,2.175621,2.175621,2.175621,2.175621,,,,,,,2.340683,2.242575,2.17964,2.179031,2.27683,2.338704,2.175621,2.175621,2.175621,2.175621,0.963279,0.933847,0.914967,0.914784,0.944124,0.962686,0.913761,0.913761,0.485889,0.485889,37.179256,38.805775,39.926239,39.937413,38.221932,37.210709,40,40,40,40,,,,,,,,,,,3096,3096,2.175621,2.175621,2.175621,2.175621,2.175621,2.175621,2.175621,2.175621,0.913761,0.913761,40,40,, +18541,0,0.362282,1,1,0,2,4,,4,2,Columbia,Ave,1674810,2.498,2.86,0,7.763183,4.5,4.5,0.572024,0.572024,0.572024,0.572024,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.604037,0.577207,0.572024,0.572024,0.604037,0.577207,0.575013,0.575927,0.572024,0.572024,0.575013,0.575927,0.586217,0.640203,0.572024,0.572024,0.586217,0.640203,0.572024,0.572024,0.572024,0.572024,0.572024,0.572024,,,,,,,0.604037,0.577207,0.575013,0.575927,0.586217,0.640203,0.572024,0.572024,0.572024,0.572024,0.246422,0.238373,0.237715,0.237989,0.241076,0.257272,0.236818,0.236818,0.125655,0.125655,35.986054,37.658795,37.802455,37.742507,37.079951,33.953144,38,38,38,38,,,,,,,,,,,3096,3096,0.572024,0.572024,0.572024,0.572024,0.572024,0.572024,0.572024,0.572024,0.236818,0.236818,38,38,, +18880,0,1.721555,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,1.336,3.057,0,36.890457,3,4,2.582332,2.582332,2.582332,2.582332,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.606447,2.591245,2.582332,2.582332,2.606447,2.591245,2.582767,2.582755,2.582332,2.582332,2.582767,2.582755,2.589942,2.602877,2.582332,2.582332,2.589942,2.602877,2.582332,2.582332,2.582332,2.582332,2.582332,2.582332,,,,,,,2.606447,2.591245,2.582767,2.582755,2.589942,2.602877,2.582332,2.582332,2.582332,2.582332,1.091814,1.087253,1.08471,1.084706,1.086862,1.090743,1.084579,1.084579,0.576721,0.576721,39.629918,39.862419,39.993255,39.993441,39.88247,39.684276,40,40,40,40,,,,,,,,,,,3096,3096,2.582332,2.582332,2.582332,2.582332,2.582332,2.582332,2.582332,2.582332,1.084579,1.084579,40,40,, +19180,0,0.944501,1,1,0,2,5,,5,2,Willow,Rd,1670406,2.1,3.044,0,20.239312,3.7,5,1.889002,1.889002,1.889002,1.889002,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.889194,1.889003,1.889002,1.889002,1.889194,1.889003,1.889004,1.889003,1.889002,1.889002,1.889004,1.889003,1.889008,1.889088,1.889002,1.889002,1.889008,1.889088,1.889002,1.889002,1.889002,1.889002,1.889002,1.889002,,,,,,,1.889194,1.889003,1.889004,1.889003,1.889008,1.889088,1.889002,1.889002,1.889002,1.889002,0.736768,0.736711,0.736711,0.736711,0.736713,0.736737,0.736711,0.736711,0.387246,0.387246,29.99696,29.999993,29.999983,29.99999,29.999906,29.998637,30,30,30,30,,,,,,,,,,,2580,2580,1.889002,1.889002,1.889002,1.889002,1.889002,1.889002,1.889002,1.889002,0.736711,0.736711,30,30,, +20876,-1,1.396886,0,3,0,1,1,,5,6,S I 275,,4301662,6.111,7.508,0,,1.02,7,,1.197331,,1.197331,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.197336,,1.197331,,1.197336,,1.197332,,1.197331,,1.197332,,1.197641,,1.197331,,1.197641,,1.197331,,1.197331,,1.197331,,,,,,,,1.197336,,1.197332,,1.197641,,1.197331,,1.197331,,0.61064,,0.610639,,0.610732,,0.610639,,0.333257,,69.999709,,69.99991,,69.98186,,70,,70,,,,,,,,,,,,22704,,1.197331,,1.197331,,1.197331,,1.197331,,0.610639,,70,, +30660,0,3.182127,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,68.188441,0.15,4,12.728509,12.728509,12.728509,12.728509,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,,,,,,,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,4.391336,4.391336,4.391336,4.391336,4.391336,4.391336,4.391336,4.391336,2.25931,2.25931,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,12.728509,4.391336,4.391336,15,15,, +30859,0,0.793546,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,17.004558,0.15,4,3.174184,3.174184,3.174184,3.174184,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,,,,,,,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,1.095094,1.095094,1.095094,1.095094,1.095094,1.095094,1.095094,1.095094,0.563418,0.563418,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,3.174184,1.095094,1.095094,15,15,, +30860,0,1.891895,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,40.540616,0.15,4,7.567582,7.567582,7.567582,7.567582,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,,,,,,,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,2.610816,2.610816,2.610816,2.610816,2.610816,2.610816,2.610816,2.610816,1.343246,1.343246,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,7.567582,2.610816,2.610816,15,15,, +30862,0,1.522141,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,32.617312,0.15,4,6.088565,6.088565,6.088565,6.088565,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,,,,,,,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,2.100555,2.100555,2.100555,2.100555,2.100555,2.100555,2.100555,2.100555,1.08072,1.08072,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,6.088565,2.100555,2.100555,15,15,, +30863,0,0.721723,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,15.465487,0.15,4,2.886891,2.886891,2.886891,2.886891,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,,,,,,,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,0.995977,0.995977,0.995977,0.995977,0.995977,0.995977,0.995977,0.995977,0.512423,0.512423,14.999999,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,2.886891,0.995977,0.995977,15,15,, +30867,0,1.513595,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,32.434173,0.15,4,6.054379,6.054379,6.054379,6.054379,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,,,,,,,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,2.088761,2.088761,2.088761,2.088761,2.088761,2.088761,2.088761,2.088761,1.074652,1.074652,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,6.054379,2.088761,2.088761,15,15,, +30870,0,1.526956,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,32.720495,0.15,4,6.107826,6.107826,6.107826,6.107826,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,,,,,,,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,2.1072,2.1072,2.1072,2.1072,2.1072,2.1072,2.1072,2.1072,1.084139,1.084139,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,6.107826,2.1072,2.1072,15,15,, +30872,0,0.550932,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.805691,0.15,4,2.203729,2.203729,2.203729,2.203729,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,,,,,,,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,0.760286,0.760286,0.760286,0.760286,0.760286,0.760286,0.760286,0.760286,0.391162,0.391162,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,2.203729,0.760286,0.760286,15,15,, +30874,0,1.782058,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,38.186957,0.15,4,7.128232,7.128232,7.128232,7.128232,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,,,,,,,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,2.45924,2.45924,2.45924,2.45924,2.45924,2.45924,2.45924,2.45924,1.265261,1.265261,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,7.128232,2.45924,2.45924,15,15,, +31346,0,2.611556,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,55.961915,0.15,4,10.446224,10.446224,10.446224,10.446224,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,,,,,,,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,3.603947,3.603947,3.603947,3.603947,3.603947,3.603947,3.603947,3.603947,1.854205,1.854205,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,10.446224,3.603947,3.603947,15,15,, +31390,0,1.557523,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,33.375498,0.15,4,6.230093,6.230093,6.230093,6.230093,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,,,,,,,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,2.149382,2.149382,2.149382,2.149382,2.149382,2.149382,2.149382,2.149382,1.105842,1.105842,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,6.230093,2.149382,2.149382,15,15,, +33602,0,2.674908,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,57.319455,0.15,4,10.699632,10.699632,10.699632,10.699632,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,,,,,,,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,3.691373,3.691373,3.691373,3.691373,3.691373,3.691373,3.691373,3.691373,1.899185,1.899185,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,10.699632,3.691373,3.691373,15,15,, +8474,0,2.529279,1,1,0,2,5,,5,6,Custer,Rd,1226001,9.409,11.937,0,54.198836,3.7,5,5.058558,5.058558,5.058558,5.058558,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.058564,5.058634,5.058558,5.058558,5.058564,5.058634,5.058558,5.058558,5.058558,5.058558,5.058558,5.058558,5.058605,5.058564,5.058558,5.058558,5.058605,5.058564,5.058558,5.058558,5.058558,5.058558,5.058558,5.058558,,,,,,,5.058564,5.058634,5.058558,5.058558,5.058605,5.058564,5.058558,5.058558,5.058558,5.058558,1.972839,1.97286,1.972838,1.972838,1.972852,1.972839,1.972838,1.972838,1.037004,1.037004,29.999963,29.99955,30,30,29.999722,29.999966,30,30,30,30,,,,,,,,,,,2580,2580,5.058558,5.058558,5.058558,5.058558,5.058558,5.058558,5.058558,5.058558,1.972838,1.972838,30,30,, +8478,0,3.043136,1,1,0,2,5,,5,6,Plank,Rd,1226001,6.065,9.106,0,65.210055,3.7,5,6.086272,6.086272,6.086272,6.086272,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,6.086273,6.086348,6.086272,6.086272,6.086273,6.086348,6.086272,6.086272,6.086272,6.086272,6.086272,6.086272,6.086305,6.086274,6.086272,6.086272,6.086305,6.086274,6.086272,6.086272,6.086272,6.086272,6.086272,6.086272,,,,,,,6.086273,6.086348,6.086272,6.086272,6.086305,6.086274,6.086272,6.086272,6.086272,6.086272,2.373646,2.373669,2.373646,2.373646,2.373656,2.373647,2.373646,2.373646,1.247686,1.247686,29.999993,29.999623,30,30,29.999837,29.999988,30,30,30,30,,,,,,,,,,,2580,2580,6.086272,6.086272,6.086272,6.086272,6.086272,6.086272,6.086272,6.086272,2.373646,2.373646,30,30,, +9156,0,1.617266,1,1,0,2,5,,5,6,Ida Maybee,Rd,1226808,15.035,16.652,0,34.655691,3.7,5,3.234531,3.234531,3.234531,3.234531,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.234805,3.234718,3.234531,3.234531,3.234805,3.234718,3.234577,3.234572,3.234531,3.234531,3.234577,3.234572,3.234799,3.235235,3.234531,3.234531,3.234799,3.235235,3.234531,3.234531,3.234531,3.234531,3.234531,3.234531,,,,,,,3.234805,3.234718,3.234577,3.234572,3.234799,3.235235,3.234531,3.234531,3.234531,3.234531,1.261549,1.261523,1.261481,1.261479,1.261547,1.261678,1.261467,1.261467,0.663079,0.663079,29.997464,29.998265,29.999572,29.999622,29.997517,29.99347,30,30,30,30,,,,,,,,,,,2580,2580,3.234531,3.234531,3.234531,3.234531,3.234531,3.234531,3.234531,3.234531,1.261467,1.261467,30,30,, +9939,0,0.957306,1,1,0,2,5,,5,6,Maybee Scofield,Rd,1241410,0,0.957,0,20.51369,3.7,5,1.914611,1.914611,1.914611,1.914611,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.914625,1.914611,1.914611,1.914611,1.914625,1.914611,1.914611,1.914611,1.914611,1.914611,1.914611,1.914611,1.914613,1.914619,1.914611,1.914611,1.914613,1.914619,1.914611,1.914611,1.914611,1.914611,1.914611,1.914611,,,,,,,1.914625,1.914611,1.914611,1.914611,1.914613,1.914619,1.914611,1.914611,1.914611,1.914611,0.746702,0.746698,0.746698,0.746698,0.746699,0.746701,0.746698,0.746698,0.392495,0.392495,29.99979,29.999994,29.999996,29.999997,29.999976,29.99987,30,30,30,30,,,,,,,,,,,2580,2580,1.914611,1.914611,1.914611,1.914611,1.914611,1.914611,1.914611,1.914611,0.746698,0.746698,30,30,, +10266,0,0.540511,1,1,0,2,5,,5,6,Palmer,Rd,1236206,0.143,0.683,0,11.582381,3.7,5,1.081022,1.081022,1.081022,1.081022,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.081036,1.081029,1.081022,1.081022,1.081036,1.081029,1.081023,1.081023,1.081022,1.081022,1.081023,1.081023,1.081037,1.08104,1.081022,1.081022,1.081037,1.08104,1.081022,1.081022,1.081022,1.081022,1.081022,1.081022,,,,,,,1.081036,1.081029,1.081023,1.081023,1.081037,1.08104,1.081022,1.081022,1.081022,1.081022,0.421603,0.421601,0.421599,0.421599,0.421603,0.421604,0.421599,0.421599,0.22161,0.22161,29.999629,29.999822,29.999989,29.999993,29.999595,29.999495,30,30,30,30,,,,,,,,,,,2580,2580,1.081022,1.081022,1.081022,1.081022,1.081022,1.081022,1.081022,1.081022,0.421599,0.421599,30,30,, +10272,0,1.533744,1,1,0,2,5,,5,6,Ostrander,Rd,1236203,0,1.533,0,32.865947,3.7,5,3.067488,3.067488,3.067488,3.067488,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,,,,,,,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,1.19632,1.196321,1.19632,1.19632,1.19632,1.19632,1.19632,1.19632,0.628835,0.628835,30,29.999999,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,3.067488,1.19632,1.19632,30,30,, +31385,0,1.326255,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,28.419757,0.15,4,5.305021,5.305021,5.305021,5.305021,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,,,,,,,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,1.830232,1.830232,1.830232,1.830232,1.830232,1.830232,1.830232,1.830232,0.941641,0.941641,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,5.305021,1.830232,1.830232,15,15,, +33605,0,1.902757,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,40.77336,0.15,4,7.611027,7.611027,7.611027,7.611027,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,,,,,,,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,2.625804,2.625804,2.625804,2.625804,2.625804,2.625804,2.625804,2.625804,1.350957,1.350957,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,7.611027,2.625804,2.625804,15,15,, +8790,0,2.452183,1,1,0,2,4,,5,6,Custer,Rd,1223803,8.711,11.162,0,52.546779,3,4,3.678275,3.678275,3.678275,3.678275,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.836795,3.938574,3.678275,3.678275,3.836795,3.938574,3.693912,3.691808,3.678275,3.678275,3.693912,3.691808,4.003534,3.973012,3.678275,3.678275,4.003534,3.973012,3.678275,3.678275,3.678275,3.678275,3.678275,3.678275,,,,,,,3.836795,3.938574,3.693912,3.691808,4.003534,3.973012,3.678275,3.678275,3.678275,3.678275,1.592431,1.622965,1.549567,1.548935,1.642453,1.633297,1.544875,1.544875,0.821481,0.821481,38.347365,37.356412,39.830666,39.853367,36.750281,37.032601,40,40,40,40,,,,,,,,,,,3096,3096,3.678275,3.678275,3.678275,3.678275,3.678275,3.678275,3.678275,3.678275,1.544875,1.544875,40,40,, +9100,0,0.30237,1,1,0,2,5,,5,6,Plank,Rd,1226001,9.106,9.409,0,6.479359,3.7,5,0.60474,0.60474,0.60474,0.60474,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.604741,0.604749,0.60474,0.60474,0.604741,0.604749,0.60474,0.60474,0.60474,0.60474,0.60474,0.60474,0.604746,0.604741,0.60474,0.60474,0.604746,0.604741,0.60474,0.60474,0.60474,0.60474,0.60474,0.60474,,,,,,,0.604741,0.604749,0.60474,0.60474,0.604746,0.604741,0.60474,0.60474,0.60474,0.60474,0.235849,0.235851,0.235849,0.235849,0.23585,0.235849,0.235849,0.235849,0.123972,0.123972,29.999963,29.99955,30,30,29.999722,29.999966,30,30,30,30,,,,,,,,,,,2580,2580,0.60474,0.60474,0.60474,0.60474,0.60474,0.60474,0.60474,0.60474,0.235849,0.235849,30,30,, +10296,0,1.598231,1,1,0,2,5,,5,6,Tuttlehill,Rd,1236107,1.593,3.191,0,34.247816,3.7,5,3.196463,3.196463,3.196463,3.196463,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,,,,,,,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,1.246621,1.246621,1.246621,1.246621,1.246621,1.246621,1.246621,1.246621,0.655275,0.655275,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,3.196463,1.246621,1.246621,30,30,, +10313,0,0.80865,1,1,0,2,5,,5,6,Ostrander,Rd,1234904,3.9,4.709,0,17.328208,3.7,5,1.617299,1.617299,1.617299,1.617299,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,,,,,,,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,0.630747,0.630747,0.630747,0.630747,0.630747,0.630747,0.630747,0.630747,0.331546,0.331546,30,29.999999,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,1.617299,0.630747,0.630747,30,30,, +31351,0,0.432621,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,9.270447,0.15,4,1.730483,1.730483,1.730483,1.730483,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,,,,,,,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,0.597017,0.597017,0.597017,0.597017,0.597017,0.597017,0.597017,0.597017,0.307161,0.307161,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,1.730483,0.597017,0.597017,15,15,, +33604,0,1.524294,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,32.663443,0.15,4,6.097176,6.097176,6.097176,6.097176,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,,,,,,,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,2.103526,2.103526,2.103526,2.103526,2.103526,2.103526,2.103526,2.103526,1.082249,1.082249,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,6.097176,2.103526,2.103526,15,15,, +9131,0,1.183932,1,1,0,2,5,,5,6,Plank,Rd,1226001,4.881,6.065,0,25.369973,3.7,5,2.367864,2.367864,2.367864,2.367864,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.367875,2.367964,2.367864,2.367864,2.367875,2.367964,2.367864,2.367865,2.367864,2.367864,2.367864,2.367865,2.367933,2.367888,2.367864,2.367864,2.367933,2.367888,2.367864,2.367864,2.367864,2.367864,2.367864,2.367864,,,,,,,2.367875,2.367964,2.367864,2.367865,2.367933,2.367888,2.367864,2.367864,2.367864,2.367864,0.92347,0.923497,0.923467,0.923467,0.923488,0.923474,0.923467,0.923467,0.485412,0.485412,29.999862,29.998737,29.999996,29.999991,29.999124,29.999703,30,30,30,30,,,,,,,,,,,2580,2580,2.367864,2.367864,2.367864,2.367864,2.367864,2.367864,2.367864,2.367864,0.923467,0.923467,30,30,, +10314,0,0.57952,1,1,0,2,5,,5,6,Ostrander,Rd,1234904,3.321,3.9,0,12.418294,3.7,5,1.159041,1.159041,1.159041,1.159041,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,,,,,,,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,0.452026,0.452026,0.452026,0.452026,0.452026,0.452026,0.452026,0.452026,0.237603,0.237603,29.999999,29.999988,30,30,29.999991,29.999994,30,30,30,30,,,,,,,,,,,2580,2580,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,1.159041,0.452026,0.452026,30,30,, +33603,0,1.496991,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,32.078379,0.15,4,5.987964,5.987964,5.987964,5.987964,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,,,,,,,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,2.065848,2.065848,2.065848,2.065848,2.065848,2.065848,2.065848,2.065848,1.062864,1.062864,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,5.987964,2.065848,2.065848,15,15,, +8744,0,0.501101,1,1,0,2,5,,5,6,Yensch,Rd,1225105,2.912,3.412,0,10.737878,3.7,5,1.002202,1.002202,1.002202,1.002202,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,,,,,,,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,0.390859,0.390859,0.390859,0.390859,0.390859,0.390859,0.390859,0.390859,0.205451,0.205451,29.999999,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,1.002202,0.390859,0.390859,30,30,, +8450,0,1.519706,1,1,0,2,5,,5,6,Custer,Rd,1226001,12.379,13.898,0,32.565139,3.7,5,3.039413,3.039413,3.039413,3.039413,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.039517,3.03947,3.039413,3.039413,3.039517,3.03947,3.039431,3.039428,3.039413,3.039413,3.039431,3.039428,3.039499,3.039622,3.039413,3.039413,3.039499,3.039622,3.039413,3.039413,3.039413,3.039413,3.039413,3.039413,,,,,,,3.039517,3.03947,3.039431,3.039428,3.039499,3.039622,3.039413,3.039413,3.039413,3.039413,1.185402,1.185388,1.185376,1.185375,1.185397,1.185434,1.185371,1.185371,0.62308,0.62308,29.998976,29.999435,29.999823,29.999856,29.999147,29.997934,30,30,30,30,,,,,,,,,,,2580,2580,3.039413,3.039413,3.039413,3.039413,3.039413,3.039413,3.039413,3.039413,1.185371,1.185371,30,30,, +8577,0,0.949174,1,1,0,2,5,,5,6,Ida Maybee,Rd,1225108,0,0.949,0,20.339432,3.7,5,1.898347,1.898347,1.898347,1.898347,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.898352,1.898399,1.898347,1.898347,1.898352,1.898399,1.898347,1.898347,1.898347,1.898347,1.898347,1.898347,1.898376,1.898355,1.898347,1.898347,1.898376,1.898355,1.898347,1.898347,1.898347,1.898347,1.898347,1.898347,,,,,,,1.898352,1.898399,1.898347,1.898347,1.898376,1.898355,1.898347,1.898347,1.898347,1.898347,0.740357,0.740371,0.740355,0.740355,0.740364,0.740358,0.740355,0.740355,0.389161,0.389161,29.999922,29.999183,29.999998,29.999998,29.999539,29.999877,30,30,30,30,,,,,,,,,,,2580,2580,1.898347,1.898347,1.898347,1.898347,1.898347,1.898347,1.898347,1.898347,0.740355,0.740355,30,30,, +10269,0,0.142688,1,1,0,2,5,,5,6,Palmer,Rd,1236206,0,0.143,0,3.057595,3.7,5,0.285376,0.285376,0.285376,0.285376,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.285378,0.285383,0.285376,0.285376,0.285378,0.285383,0.285376,0.285376,0.285376,0.285376,0.285376,0.285376,0.285388,0.285381,0.285376,0.285376,0.285388,0.285381,0.285376,0.285376,0.285376,0.285376,0.285376,0.285376,,,,,,,0.285378,0.285383,0.285376,0.285376,0.285388,0.285381,0.285376,0.285376,0.285376,0.285376,0.111297,0.111299,0.111297,0.111297,0.1113,0.111298,0.111296,0.111296,0.058502,0.058502,29.999749,29.999213,29.999957,29.999966,29.998699,29.999391,30,30,30,30,,,,,,,,,,,2580,2580,0.285376,0.285376,0.285376,0.285376,0.285376,0.285376,0.285376,0.285376,0.111296,0.111296,30,30,, +31034,0,1.827639,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,39.163695,0.15,4,7.310556,7.310556,7.310556,7.310556,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,,,,,,,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,2.522142,2.522142,2.522142,2.522142,2.522142,2.522142,2.522142,2.522142,1.297624,1.297624,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,7.310556,2.522142,2.522142,15,15,, +9096,0,0.442166,1,1,0,2,5,,5,6,Custer,Rd,1226001,11.937,12.379,0,9.474989,3.7,5,0.884332,0.884332,0.884332,0.884332,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.884343,0.884342,0.884332,0.884332,0.884343,0.884342,0.884333,0.884333,0.884332,0.884332,0.884333,0.884333,0.884351,0.884345,0.884332,0.884332,0.884351,0.884345,0.884332,0.884332,0.884332,0.884332,0.884332,0.884332,,,,,,,0.884343,0.884342,0.884333,0.884333,0.884351,0.884345,0.884332,0.884332,0.884332,0.884332,0.344893,0.344892,0.34489,0.34489,0.344895,0.344893,0.34489,0.34489,0.181288,0.181288,29.999624,29.999677,29.999985,29.999987,29.999381,29.999582,30,30,30,30,,,,,,,,,,,2580,2580,0.884332,0.884332,0.884332,0.884332,0.884332,0.884332,0.884332,0.884332,0.34489,0.34489,30,30,, +8738,0,1.920776,1,1,0,2,5,,5,6,Ida Maybee,Rd,1225108,0.949,2.869,0,41.159488,3.7,5,3.841552,3.841552,3.841552,3.841552,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.841595,3.841556,3.841552,3.841552,3.841595,3.841556,3.841553,3.841553,3.841552,3.841552,3.841553,3.841553,3.841567,3.841603,3.841552,3.841552,3.841567,3.841603,3.841552,3.841552,3.841552,3.841552,3.841552,3.841552,,,,,,,3.841595,3.841556,3.841553,3.841553,3.841567,3.841603,3.841552,3.841552,3.841552,3.841552,1.498218,1.498207,1.498206,1.498206,1.49821,1.498221,1.498205,1.498205,0.787518,0.787518,29.999664,29.99997,29.999993,29.999994,29.999888,29.999602,30,30,30,30,,,,,,,,,,,2580,2580,3.841552,3.841552,3.841552,3.841552,3.841552,3.841552,3.841552,3.841552,1.498205,1.498205,30,30,, +10274,0,0.290354,1,1,0,2,5,,5,6,Stone,Rd,1236202,2.226,2.516,0,6.221869,3.7,5,0.580708,0.580708,0.580708,0.580708,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.580714,0.580708,0.580708,0.580708,0.580714,0.580708,0.580708,0.580708,0.580708,0.580708,0.580708,0.580708,0.58071,0.580715,0.580708,0.580708,0.58071,0.580715,0.580708,0.580708,0.580708,0.580708,0.580708,0.580708,,,,,,,0.580714,0.580708,0.580708,0.580708,0.58071,0.580715,0.580708,0.580708,0.580708,0.580708,0.226478,0.226476,0.226476,0.226476,0.226477,0.226478,0.226476,0.226476,0.119045,0.119045,29.999664,29.99997,29.999993,29.999994,29.999888,29.999602,30,30,30,30,,,,,,,,,,,2580,2580,0.580708,0.580708,0.580708,0.580708,0.580708,0.580708,0.580708,0.580708,0.226476,0.226476,30,30,, +31035,0,1.287153,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.581858,0.15,4,5.148613,5.148613,5.148613,5.148613,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.148614,5.148613,5.148613,5.148613,5.148614,5.148613,5.148614,5.148613,5.148613,5.148613,5.148614,5.148613,5.148614,5.148614,5.148613,5.148613,5.148614,5.148614,5.148613,5.148613,5.148613,5.148613,5.148613,5.148613,,,,,,,5.148614,5.148613,5.148614,5.148613,5.148614,5.148614,5.148613,5.148613,5.148613,5.148613,1.776272,1.776272,1.776272,1.776272,1.776272,1.776272,1.776272,1.776272,0.913879,0.913879,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,5.148613,5.148613,5.148613,5.148613,5.148613,5.148613,5.148613,5.148613,1.776272,1.776272,15,15,, +10175,0,0.102332,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,0.377,0.479,0,2.192834,3.7,5,0.204664,0.204664,0.204664,0.204664,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.204665,0.204664,0.204664,0.204664,0.204665,0.204664,0.204664,0.204664,0.204664,0.204664,0.204664,0.204664,0.204665,0.204666,0.204664,0.204664,0.204665,0.204666,0.204664,0.204664,0.204664,0.204664,0.204664,0.204664,,,,,,,0.204665,0.204664,0.204664,0.204664,0.204665,0.204666,0.204664,0.204664,0.204664,0.204664,0.079819,0.079819,0.079819,0.079819,0.079819,0.07982,0.079819,0.079819,0.041956,0.041956,29.999855,29.999997,29.999997,29.999997,29.999979,29.999792,30,30,30,30,,,,,,,,,,,2580,2580,0.204664,0.204664,0.204664,0.204664,0.204664,0.204664,0.204664,0.204664,0.079819,0.079819,30,30,, +30875,0,0.157785,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,3.381106,0.15,4,0.63114,0.63114,0.63114,0.63114,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,,,,,,,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.217743,0.217743,0.217743,0.217743,0.217743,0.217743,0.217743,0.217743,0.112027,0.112027,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.63114,0.217743,0.217743,15,15,, +10176,0,0.376664,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,0,0.377,0,8.071371,3.7,5,0.753328,0.753328,0.753328,0.753328,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.753348,0.753334,0.753328,0.753328,0.753348,0.753334,0.753329,0.753329,0.753328,0.753328,0.753329,0.753329,0.753343,0.753361,0.753328,0.753328,0.753343,0.753361,0.753328,0.753328,0.753328,0.753328,0.753328,0.753328,,,,,,,0.753348,0.753334,0.753329,0.753329,0.753343,0.753361,0.753328,0.753328,0.753328,0.753328,0.293804,0.2938,0.293798,0.293798,0.293802,0.293808,0.293798,0.293798,0.154432,0.154432,29.999213,29.999749,29.999966,29.999957,29.999391,29.998699,30,30,30,30,,,,,,,,,,,2580,2580,0.753328,0.753328,0.753328,0.753328,0.753328,0.753328,0.753328,0.753328,0.293798,0.293798,30,30,, +10113,0,0.148351,1,1,0,2,5,,5,6,Raisin,St,1237704,0,0.148,0,3.178943,3.7,5,0.296701,0.296701,0.296701,0.296701,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.296702,0.296702,0.296701,0.296701,0.296702,0.296702,0.296701,0.296701,0.296701,0.296701,0.296701,0.296701,0.296703,0.296702,0.296701,0.296701,0.296703,0.296702,0.296701,0.296701,0.296701,0.296701,0.296701,0.296701,,,,,,,0.296702,0.296702,0.296701,0.296701,0.296703,0.296702,0.296701,0.296701,0.296701,0.296701,0.115714,0.115714,0.115714,0.115714,0.115714,0.115714,0.115714,0.115714,0.060824,0.060824,29.999986,29.999939,29.999995,29.999993,29.999833,29.999908,30,30,30,30,,,,,,,,,,,2580,2580,0.296701,0.296701,0.296701,0.296701,0.296701,0.296701,0.296701,0.296701,0.115714,0.115714,30,30,, +30876,0,0.104582,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,2.241034,0.15,4,0.418326,0.418326,0.418326,0.418326,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,,,,,,,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.144323,0.144323,0.144323,0.144323,0.144323,0.144323,0.144323,0.144323,0.074253,0.074253,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.418326,0.144323,0.144323,15,15,, +10084,0,2.212461,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,0,2.212,0,47.409884,3.7,5,4.424922,4.424922,4.424922,4.424922,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.424933,4.424951,4.424922,4.424922,4.424933,4.424951,4.424923,4.424923,4.424922,4.424922,4.424923,4.424923,4.42493,4.424928,4.424922,4.424922,4.42493,4.424928,4.424922,4.424922,4.424922,4.424922,4.424922,4.424922,,,,,,,4.424933,4.424951,4.424923,4.424923,4.42493,4.424928,4.424922,4.424922,4.424922,4.424922,1.725723,1.725728,1.72572,1.72572,1.725722,1.725721,1.72572,1.72572,0.907109,0.907109,29.999927,29.999807,29.999998,29.999999,29.999946,29.999962,30,30,30,30,,,,,,,,,,,2580,2580,4.424922,4.424922,4.424922,4.424922,4.424922,4.424922,4.424922,4.424922,1.72572,1.72572,30,30,, +10263,0,2.124397,1,1,0,2,5,,5,6,Palmer,Rd,1236206,0.683,2.807,0,45.522794,3.7,5,4.248794,4.248794,4.248794,4.248794,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.248805,4.248805,4.248794,4.248794,4.248805,4.248805,4.248794,4.248795,4.248794,4.248794,4.248794,4.248795,4.248808,4.248815,4.248794,4.248794,4.248808,4.248815,4.248794,4.248794,4.248794,4.248794,4.248794,4.248794,,,,,,,4.248805,4.248805,4.248794,4.248795,4.248808,4.248815,4.248794,4.248794,4.248794,4.248794,1.657033,1.657033,1.65703,1.65703,1.657034,1.657036,1.65703,1.65703,0.871003,0.871003,29.999922,29.999924,29.999998,29.999997,29.9999,29.999854,30,30,30,30,,,,,,,,,,,2580,2580,4.248794,4.248794,4.248794,4.248794,4.248794,4.248794,4.248794,4.248794,1.65703,1.65703,30,30,, +10271,0,1.230576,1,1,0,2,5,,5,6,Ostrander,Rd,1236203,1.533,2.763,0,26.369476,3.7,5,2.461151,2.461151,2.461151,2.461151,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,,,,,,,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,0.959849,0.959849,0.959849,0.959849,0.959849,0.959849,0.959849,0.959849,0.504536,0.504536,30,29.999999,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,2.461151,0.959849,0.959849,30,30,, +10262,0,0.9408,1,1,0,2,5,,5,6,Palmer,Rd,1236206,2.807,3.747,0,20.160005,3.7,5,1.8816,1.8816,1.8816,1.8816,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.882122,1.881602,1.8816,1.8816,1.882122,1.881602,1.881602,1.881601,1.8816,1.8816,1.881602,1.881601,1.881609,1.881909,1.8816,1.8816,1.881609,1.881909,1.8816,1.8816,1.8816,1.8816,1.8816,1.8816,,,,,,,1.882122,1.881602,1.881602,1.881601,1.881609,1.881909,1.8816,1.8816,1.8816,1.8816,0.733981,0.733825,0.733825,0.733824,0.733827,0.733917,0.733824,0.733824,0.385728,0.385728,29.99169,29.999979,29.999974,29.999993,29.99986,29.995084,30,30,30,30,,,,,,,,,,,2580,2580,1.8816,1.8816,1.8816,1.8816,1.8816,1.8816,1.8816,1.8816,0.733824,0.733824,30,30,, +10109,0,0.43248,1,1,0,2,5,,5,6,Doty,Rd,1237710,0.882,1.315,0,9.267423,3.7,5,0.864959,0.864959,0.864959,0.864959,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.864961,0.864959,0.864959,0.864959,0.864961,0.864959,0.864959,0.864959,0.864959,0.864959,0.864959,0.864959,0.86496,0.86496,0.864959,0.864959,0.86496,0.86496,0.864959,0.864959,0.864959,0.864959,0.864959,0.864959,,,,,,,0.864961,0.864959,0.864959,0.864959,0.86496,0.86496,0.864959,0.864959,0.864959,0.864959,0.337335,0.337334,0.337334,0.337334,0.337334,0.337334,0.337334,0.337334,0.177317,0.177317,29.999934,30,30,30,29.999999,29.999978,30,30,30,30,,,,,,,,,,,2580,2580,0.864959,0.864959,0.864959,0.864959,0.864959,0.864959,0.864959,0.864959,0.337334,0.337334,30,30,, +10112,0,0.145441,1,1,0,2,5,,5,6,Doty,Rd,1237710,0.737,0.882,0,3.116584,3.7,5,0.290881,0.290881,0.290881,0.290881,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.290883,0.290881,0.290881,0.290881,0.290883,0.290881,0.290881,0.290881,0.290881,0.290881,0.290881,0.290881,0.290881,0.290882,0.290881,0.290881,0.290881,0.290882,0.290881,0.290881,0.290881,0.290881,0.290881,0.290881,,,,,,,0.290883,0.290881,0.290881,0.290881,0.290881,0.290882,0.290881,0.290881,0.290881,0.290881,0.113444,0.113444,0.113444,0.113444,0.113444,0.113444,0.113444,0.113444,0.059631,0.059631,29.99979,29.999994,29.999996,29.999997,29.999976,29.99987,30,30,30,30,,,,,,,,,,,2580,2580,0.290881,0.290881,0.290881,0.290881,0.290881,0.290881,0.290881,0.290881,0.113444,0.113444,30,30,, +10039,0,2.048051,1,1,0,2,4,,5,5,Willis,Rd,1427410,10.23,12.278,0,43.886799,3,4,3.072076,3.072076,3.072076,3.072076,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.123698,3.105905,3.072076,3.072076,3.123698,3.105905,3.072896,3.072765,3.072076,3.072076,3.072896,3.072765,3.101629,3.108725,3.072076,3.072076,3.101629,3.108725,3.072076,3.072076,3.072076,3.072076,3.072076,3.072076,,,,,,,3.123698,3.105905,3.072896,3.072765,3.101629,3.108725,3.072076,3.072076,3.072076,3.072076,1.305759,1.300421,1.290518,1.290479,1.299138,1.301266,1.290272,1.290272,0.686097,0.686097,39.338961,39.564327,39.989322,39.991029,39.618877,39.528441,40,40,40,40,,,,,,,,,,,3096,3096,3.072076,3.072076,3.072076,3.072076,3.072076,3.072076,3.072076,3.072076,1.290272,1.290272,40,40,, +10303,0,0.720623,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1236105,0.893,1.614,0,15.441915,3,4,1.080934,1.080934,1.080934,1.080934,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.086876,1.092205,1.080934,1.080934,1.086876,1.092205,1.081132,1.081117,1.080934,1.080934,1.081132,1.081117,1.086867,1.08653,1.080934,1.080934,1.086867,1.08653,1.080934,1.080934,1.080934,1.080934,1.080934,1.080934,,,,,,,1.086876,1.092205,1.081132,1.081117,1.086867,1.08653,1.080934,1.080934,1.080934,1.080934,0.455775,0.457374,0.454052,0.454047,0.455772,0.455671,0.453992,0.453992,0.241409,0.241409,39.781321,39.587221,39.992678,39.993244,39.781635,39.793974,40,40,40,40,,,,,,,,,,,3096,3096,1.080934,1.080934,1.080934,1.080934,1.080934,1.080934,1.080934,1.080934,0.453992,0.453992,40,40,, +10475,0,1.023904,1,1,0,2,5,,5,5,Willow,Rd,1431207,8.149,9.172,0,21.940804,3.7,5,2.047808,2.047808,2.047808,2.047808,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.047809,2.047808,2.047808,2.047808,2.047809,2.047808,2.047808,2.047808,2.047808,2.047808,2.047808,2.047808,2.047808,2.047809,2.047808,2.047808,2.047808,2.047809,2.047808,2.047808,2.047808,2.047808,2.047808,2.047808,,,,,,,2.047809,2.047808,2.047808,2.047808,2.047808,2.047809,2.047808,2.047808,2.047808,2.047808,0.798645,0.798645,0.798645,0.798645,0.798645,0.798645,0.798645,0.798645,0.419801,0.419801,29.999991,30,30,30,29.999999,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,2.047808,2.047808,2.047808,2.047808,2.047808,2.047808,2.047808,2.047808,0.798645,0.798645,30,30,, +10856,0,0.500316,1,1,0,2,7,,4,5,Martz,Rd,1438303,2.093,2.593,0,10.721056,6.55,4.5,1.200758,1.200758,1.200758,1.200758,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.205245,1.200789,1.200758,1.200758,1.205245,1.200789,1.200781,1.20077,1.200758,1.200758,1.200781,1.20077,1.200841,1.203787,1.200758,1.200758,1.200841,1.203787,1.200758,1.200758,1.200758,1.200758,1.200758,1.200758,,,,,,,1.205245,1.200789,1.200781,1.20077,1.200841,1.203787,1.200758,1.200758,1.200758,1.200758,0.45163,0.450294,0.450291,0.450288,0.450309,0.451193,0.450284,0.450284,0.235149,0.235149,24.906931,24.999359,24.999519,24.999753,24.998273,24.937094,25,25,25,25,,,,,,,,,,,2064,2064,1.200758,1.200758,1.200758,1.200758,1.200758,1.200758,1.200758,1.200758,0.450284,0.450284,25,25,, +11273,0,1.005957,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,3.018,4.024,0,21.556224,3.7,5,2.011914,2.011914,2.011914,2.011914,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.014967,2.011918,2.011914,2.011914,2.014967,2.011918,2.011946,2.011925,2.011914,2.011914,2.011946,2.011925,2.011999,2.013839,2.011914,2.011914,2.011999,2.013839,2.011914,2.011914,2.011914,2.011914,2.011914,2.011914,,,,,,,2.014967,2.011918,2.011946,2.011925,2.011999,2.013839,2.011914,2.011914,2.011914,2.011914,0.785563,0.784648,0.784656,0.78465,0.784672,0.785224,0.784647,0.784647,0.412442,0.412442,29.954542,29.999949,29.99952,29.999845,29.998737,29.97133,30,30,30,30,,,,,,,,,,,2580,2580,2.011914,2.011914,2.011914,2.011914,2.011914,2.011914,2.011914,2.011914,0.784647,0.784647,30,30,, +11362,0,0.245174,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.256,6.501,0,5.253725,4.5,4.5,0.387117,0.387117,0.387117,0.387117,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.52686,0.407592,0.387117,0.387117,1.52686,0.407592,0.402529,0.402287,0.387117,0.387117,0.402529,0.402287,0.460762,1.416964,0.387117,0.387117,0.460762,1.416964,0.387117,0.387117,0.387117,0.387117,0.387117,0.387117,,,,,,,1.52686,0.407592,0.402529,0.402287,0.460762,1.416964,0.387117,0.387117,0.387117,0.387117,0.502189,0.166409,0.16489,0.164817,0.18236,0.469221,0.160266,0.160266,0.085037,0.085037,9.634431,36.091097,36.545019,36.567042,31.926319,10.381651,38,38,38,38,,,,,,,,,,,3096,3096,0.387117,0.387117,0.387117,0.387117,0.387117,0.387117,0.387117,0.387117,0.160266,0.160266,38,38,, +11538,0,2.005984,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,2.004,4.009,0,42.985363,3.7,5,4.011967,4.011967,4.011967,4.011967,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.018392,4.011979,4.011967,4.011967,4.018392,4.011979,4.012,4.011976,4.011967,4.011967,4.012,4.011976,4.012058,4.014606,4.011967,4.011967,4.012058,4.014606,4.011967,4.011967,4.011967,4.011967,4.011967,4.011967,,,,,,,4.018392,4.011979,4.012,4.011976,4.012058,4.014606,4.011967,4.011967,4.011967,4.011967,1.566595,1.564671,1.564677,1.56467,1.564694,1.565459,1.564667,1.564667,0.822453,0.822453,29.952031,29.999913,29.999751,29.999932,29.99932,29.980279,30,30,30,30,,,,,,,,,,,2580,2580,4.011967,4.011967,4.011967,4.011967,4.011967,4.011967,4.011967,4.011967,1.564667,1.564667,30,30,, +21257,0,0.47618,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,10.799,11.275,0,10.203855,6.55,4.5,1.90472,1.90472,1.90472,1.90472,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,,,,,,,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,0.657128,0.657128,0.657128,0.657128,0.657128,0.657128,0.657128,0.657128,0.338088,0.338088,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,2064,2064,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,1.90472,0.657128,0.657128,15,15,, +39101,0,1.53612,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.916861,0.15,4,6.144481,6.144481,6.144481,6.144481,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,,,,,,,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,2.119846,2.119846,2.119846,2.119846,2.119846,2.119846,2.119846,2.119846,1.090645,1.090645,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,6.144481,2.119846,2.119846,15,15,, +39097,0,0.508989,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.906914,0.15,4,2.035957,2.035957,2.035957,2.035957,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,,,,,,,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,0.702405,0.702405,0.702405,0.702405,0.702405,0.702405,0.702405,0.702405,0.361382,0.361382,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,2.035957,0.702405,0.702405,15,15,, +26234,0,3.018245,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,64.676678,0.15,4,12.07298,12.07298,12.07298,12.07298,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,,,,,,,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,4.165178,4.165178,4.165178,4.165178,4.165178,4.165178,4.165178,4.165178,2.142954,2.142954,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,12.07298,4.165178,4.165178,15,15,, +10476,0,2.0087,1,1,0,2,5,,5,5,Willow,Rd,1431207,6.141,8.149,0,43.043579,3.7,5,4.017401,4.017401,4.017401,4.017401,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,,,,,,,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,1.566786,1.566786,1.566786,1.566786,1.566786,1.566786,1.566786,1.566786,0.823567,0.823567,30,29.999999,30,30,29.999998,29.999999,30,30,30,30,,,,,,,,,,,2580,2580,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,4.017401,1.566786,1.566786,30,30,, +11296,0,1.005248,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,0.999,2.004,0,21.541035,3.7,5,2.010497,2.010497,2.010497,2.010497,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.021278,2.010513,2.010497,2.010497,2.021278,2.010513,2.010536,2.010511,2.010497,2.010497,2.010536,2.010511,2.010599,2.015697,2.010497,2.010497,2.010599,2.015697,2.010497,2.010497,2.010497,2.010497,2.010497,2.010497,,,,,,,2.021278,2.010513,2.010536,2.010511,2.010599,2.015697,2.010497,2.010497,2.010497,2.010497,0.787328,0.784098,0.784105,0.784098,0.784124,0.785654,0.784094,0.784094,0.412152,0.412152,29.839985,29.999763,29.999413,29.999785,29.998471,29.922605,30,30,30,30,,,,,,,,,,,2580,2580,2.010497,2.010497,2.010497,2.010497,2.010497,2.010497,2.010497,2.010497,0.784094,0.784094,30,30,, +20336,0,0.391721,1,1,0,2,4,,5,6,Milan Oakville,Rd,4301740,0,0.392,0,8.394022,3,4,0.587582,0.587582,0.587582,0.587582,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.589319,0.604076,0.587582,0.587582,0.589319,0.604076,0.587814,0.587803,0.587582,0.587582,0.587814,0.587803,0.596525,0.590377,0.587582,0.587582,0.596525,0.590377,0.587582,0.587582,0.587582,0.587582,0.587582,0.587582,,,,,,,0.589319,0.604076,0.587814,0.587803,0.596525,0.590377,0.587582,0.587582,0.587582,0.587582,0.247305,0.251733,0.246854,0.246851,0.249467,0.247623,0.246784,0.246784,0.131227,0.131227,39.882084,38.907785,39.984199,39.984944,39.400292,39.810603,40,40,40,40,,,,,,,,,,,3096,3096,0.587582,0.587582,0.587582,0.587582,0.587582,0.587582,0.587582,0.587582,0.246784,0.246784,40,40,, +11542,0,0.998974,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,0,0.999,0,21.40659,3.7,5,1.997948,1.997948,1.997948,1.997948,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.998111,1.998018,1.997948,1.997948,1.998111,1.998018,1.997959,1.997952,1.997948,1.997948,1.997959,1.997952,1.998,1.99819,1.997948,1.997948,1.998,1.99819,1.997948,1.997948,1.997948,1.997948,1.997948,1.997948,,,,,,,1.998111,1.998018,1.997959,1.997952,1.998,1.99819,1.997948,1.997948,1.997948,1.997948,0.779249,0.779221,0.779203,0.779201,0.779215,0.779272,0.7792,0.7792,0.409579,0.409579,29.997566,29.998962,29.999844,29.999952,29.99923,29.99638,30,30,30,30,,,,,,,,,,,2580,2580,1.997948,1.997948,1.997948,1.997948,1.997948,1.997948,1.997948,1.997948,0.7792,0.7792,30,30,, +8881,0,0.34609,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,4.281,4.627,0,7.416215,3,4,0.519135,0.519135,0.519135,0.519135,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.52067,0.533708,0.519135,0.519135,0.52067,0.533708,0.51934,0.519331,0.519135,0.519135,0.51934,0.519331,0.527037,0.521605,0.519135,0.519135,0.527037,0.521605,0.519135,0.519135,0.519135,0.519135,0.519135,0.519135,,,,,,,0.52067,0.533708,0.51934,0.519331,0.527037,0.521605,0.519135,0.519135,0.519135,0.519135,0.218497,0.222409,0.218098,0.218095,0.220407,0.218778,0.218037,0.218037,0.11594,0.11594,39.882084,38.907785,39.984199,39.984944,39.400292,39.810603,40,40,40,40,,,,,,,,,,,3096,3096,0.519135,0.519135,0.519135,0.519135,0.519135,0.519135,0.519135,0.519135,0.218037,0.218037,40,40,, +26236,0,0.018618,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,0.398947,0.15,4,0.07447,0.07447,0.07447,0.07447,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,,,,,,,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.025692,0.025692,0.025692,0.025692,0.025692,0.025692,0.025692,0.025692,0.013218,0.013218,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.07447,0.025692,0.025692,15,15,, +10477,0,1.003644,1,1,0,2,5,,5,5,Willow,Rd,1431207,5.137,6.141,0,21.506657,3.7,5,2.007288,2.007288,2.007288,2.007288,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.007288,2.007295,2.007288,2.007288,2.007288,2.007295,2.007288,2.007288,2.007288,2.007288,2.007288,2.007288,2.007292,2.007288,2.007288,2.007288,2.007292,2.007288,2.007288,2.007288,2.007288,2.007288,2.007288,2.007288,,,,,,,2.007288,2.007295,2.007288,2.007288,2.007292,2.007288,2.007288,2.007288,2.007288,2.007288,0.782842,0.782844,0.782842,0.782842,0.782843,0.782842,0.782842,0.782842,0.411494,0.411494,30,29.9999,30,30,29.999945,30,30,30,30,30,,,,,,,,,,,2580,2580,2.007288,2.007288,2.007288,2.007288,2.007288,2.007288,2.007288,2.007288,0.782842,0.782842,30,30,, +10304,0,0.66055,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1236105,0.233,0.893,0,14.15465,3,4,0.990826,0.990826,0.990826,0.990826,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.998388,1.02255,0.990826,0.990826,0.998388,1.02255,0.991306,0.991287,0.990826,0.990826,0.991306,0.991287,1.008239,1.000151,0.990826,0.990826,1.008239,1.000151,0.990826,0.990826,0.990826,0.990826,0.990826,0.990826,,,,,,,0.998388,1.02255,0.991306,0.991287,1.008239,1.000151,0.990826,0.990826,0.990826,0.990826,0.418415,0.425664,0.416291,0.416285,0.421371,0.418944,0.416147,0.416147,0.221284,0.221284,39.697028,38.758991,39.980619,39.981384,39.309156,39.627038,40,40,40,40,,,,,,,,,,,3096,3096,0.990826,0.990826,0.990826,0.990826,0.990826,0.990826,0.990826,0.990826,0.416147,0.416147,40,40,, +10307,0,0.232878,1,1,0,2,4,,5,6,Milan Oakville,Rd,1236105,0,0.233,0,4.990239,3,4,0.349317,0.349317,0.349317,0.349317,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.35035,0.359123,0.349317,0.349317,0.35035,0.359123,0.349455,0.349448,0.349317,0.349317,0.349455,0.349448,0.354634,0.350979,0.349317,0.349317,0.354634,0.350979,0.349317,0.349317,0.349317,0.349317,0.349317,0.349317,,,,,,,0.35035,0.359123,0.349455,0.349448,0.354634,0.350979,0.349317,0.349317,0.349317,0.349317,0.147023,0.149655,0.146754,0.146752,0.148308,0.147212,0.146713,0.146713,0.078014,0.078014,39.882084,38.907785,39.984199,39.984944,39.400292,39.810603,40,40,40,40,,,,,,,,,,,3096,3096,0.349317,0.349317,0.349317,0.349317,0.349317,0.349317,0.349317,0.349317,0.146713,0.146713,40,40,, +10308,0,0.999698,1,1,0,2,4,,5,5,Willis,Rd,1427410,9.231,10.23,0,21.422098,3,4,1.499547,1.499547,1.499547,1.499547,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.536376,1.587356,1.499547,1.499547,1.536376,1.587356,1.502184,1.502314,1.499547,1.499547,1.502184,1.502314,1.566274,1.545517,1.499547,1.499547,1.566274,1.545517,1.499547,1.499547,1.499547,1.499547,1.499547,1.499547,,,,,,,1.536376,1.587356,1.502184,1.502314,1.566274,1.545517,1.499547,1.499547,1.499547,1.499547,0.640858,0.656152,0.630601,0.63064,0.649828,0.643601,0.62981,0.62981,0.334899,0.334899,39.041144,37.787281,39.929766,39.926322,38.295912,38.810233,40,40,40,40,,,,,,,,,,,3096,3096,1.499547,1.499547,1.499547,1.499547,1.499547,1.499547,1.499547,1.499547,0.62981,0.62981,40,40,, +10825,0,1.101994,1,1,0,2,4,,5,5,Whittaker,Rd,1439102,5.013,6.115,0,23.614148,3,4,1.65299,1.65299,1.65299,1.65299,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.767224,1.769618,1.65299,1.65299,1.767224,1.769618,1.666917,1.6634,1.65299,1.65299,1.666917,1.6634,1.887259,1.782626,1.65299,1.65299,1.887259,1.782626,1.65299,1.65299,1.65299,1.65299,1.65299,1.65299,,,,,,,1.767224,1.769618,1.666917,1.6634,1.887259,1.782626,1.65299,1.65299,1.65299,1.65299,0.728526,0.729244,0.698434,0.697379,0.764537,0.733147,0.694256,0.694256,0.369168,0.369168,37.4144,37.363788,39.665816,39.749669,35.034731,37.091129,40,40,40,40,,,,,,,,,,,3096,3096,1.65299,1.65299,1.65299,1.65299,1.65299,1.65299,1.65299,1.65299,0.694256,0.694256,40,40,, +11117,0,0.659699,1,1,0,2,4,,4,5,Textile,Rd,1438102,4.604,5.264,0,14.136403,4.5,4.5,1.04163,1.04163,1.04163,1.04163,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.332279,1.099919,1.04163,1.04163,1.332279,1.099919,1.058992,1.064242,1.04163,1.04163,1.058992,1.064242,1.166321,1.531687,1.04163,1.04163,1.166321,1.531687,1.04163,1.04163,1.04163,1.04163,1.04163,1.04163,,,,,,,1.332279,1.099919,1.058992,1.064242,1.166321,1.531687,1.04163,1.04163,1.04163,1.04163,0.518429,0.448721,0.436443,0.438018,0.468642,0.578252,0.431235,0.431235,0.228811,0.228811,29.709938,35.986218,37.376984,37.192614,33.937419,25.842054,38,38,38,38,,,,,,,,,,,3096,3096,1.04163,1.04163,1.04163,1.04163,1.04163,1.04163,1.04163,1.04163,0.431235,0.431235,38,38,, +11578,0,1.049677,1,1,0,2,7,,4,5,Martz,Rd,1438303,0,1.049,0,22.493071,6.55,4.5,2.519224,2.519224,2.519224,2.519224,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.519276,2.520405,2.519224,2.519224,2.519276,2.520405,2.519233,2.51923,2.519224,2.519224,2.519233,2.51923,2.521106,2.519461,2.519224,2.519224,2.521106,2.519461,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,,,,,,,2.519276,2.520405,2.519233,2.51923,2.521106,2.519461,2.519224,2.519224,2.519224,2.519224,0.944725,0.945063,0.944712,0.944711,0.945273,0.94478,0.944709,0.944709,0.493348,0.493348,24.999484,24.988281,24.999914,24.999939,24.981342,24.997644,25,25,25,25,,,,,,,,,,,2064,2064,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,2.519224,0.944709,0.944709,25,25,, +21932,0,0.996444,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,8.757,9.753,0,21.352361,6.55,4.5,3.985774,3.985774,3.985774,3.985774,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,,,,,,,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,1.375092,1.375092,1.375092,1.375092,1.375092,1.375092,1.375092,1.375092,0.707475,0.707475,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,2064,2064,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,3.985774,1.375092,1.375092,15,15,, +26281,0,1.849336,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.628637,0.15,4,7.397346,7.397346,7.397346,7.397346,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,,,,,,,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,2.552084,2.552084,2.552084,2.552084,2.552084,2.552084,2.552084,2.552084,1.313029,1.313029,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,7.397346,2.552084,2.552084,15,15,, +26732,0,0.954569,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.455047,0.15,4,3.818275,3.818275,3.818275,3.818275,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,,,,,,,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,1.317305,1.317305,1.317305,1.317305,1.317305,1.317305,1.317305,1.317305,0.677744,0.677744,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,3.818275,1.317305,1.317305,15,15,, +39096,0,0.621723,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.322643,0.15,4,2.486893,2.486893,2.486893,2.486893,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,,,,,,,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,0.857978,0.857978,0.857978,0.857978,0.857978,0.857978,0.857978,0.857978,0.441424,0.441424,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,2.486893,0.857978,0.857978,15,15,, +30102,0,1.063212,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.783113,0.15,4,4.252848,4.252848,4.252848,4.252848,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,,,,,,,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,1.467232,1.467232,1.467232,1.467232,1.467232,1.467232,1.467232,1.467232,0.75488,0.75488,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,4.252848,1.467232,1.467232,15,15,, +10310,0,1.012189,1,1,0,2,4,,5,5,Willis,Rd,1427410,8.219,9.231,0,21.689762,3,4,1.518283,1.518283,1.518283,1.518283,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.635117,2.371528,1.518283,1.518283,1.635117,2.371528,1.544464,1.551472,1.518283,1.518283,1.544464,1.551472,2.208638,1.681435,1.518283,1.518283,2.208638,1.681435,1.518283,1.518283,1.518283,1.518283,1.518283,1.518283,,,,,,,1.635117,2.371528,1.544464,1.551472,2.208638,1.681435,1.518283,1.518283,1.518283,1.518283,0.672729,0.893652,0.645533,0.647636,0.844785,0.686624,0.637679,0.637679,0.339083,0.339083,37.141889,25.608522,39.321951,39.14434,27.497192,36.11876,40,40,40,40,,,,,,,,,,,3096,3096,1.518283,1.518283,1.518283,1.518283,1.518283,1.518283,1.518283,1.518283,0.637679,0.637679,40,40,, +11293,0,1.005074,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,4.009,5.013,0,21.537298,3.7,5,2.010148,2.010148,2.010148,2.010148,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.028765,2.010176,2.010148,2.010148,2.028765,2.010176,2.010703,2.01028,2.010148,2.010148,2.010703,2.01028,2.011116,2.022846,2.010148,2.010148,2.011116,2.022846,2.010148,2.010148,2.010148,2.010148,2.010148,2.010148,,,,,,,2.028765,2.010176,2.010703,2.01028,2.011116,2.022846,2.010148,2.010148,2.010148,2.010148,0.789543,0.783966,0.784124,0.783997,0.784248,0.787767,0.783958,0.783958,0.41208,0.41208,29.724705,29.999572,29.991715,29.998029,29.985555,29.811685,30,30,30,30,,,,,,,,,,,2580,2580,2.010148,2.010148,2.010148,2.010148,2.010148,2.010148,2.010148,2.010148,0.783958,0.783958,30,30,, +10700,0,0.995697,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,0.993,1.988,0,21.336374,5.8,4.5,2.212661,2.212661,2.212661,2.212661,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.759615,2.21289,2.212661,2.212661,2.759615,2.21289,2.229188,2.215785,2.212661,2.212661,2.229188,2.215785,2.286266,2.574215,2.212661,2.212661,2.286266,2.574215,2.212661,2.212661,2.212661,2.212661,2.212661,2.212661,,,,,,,2.759615,2.21289,2.229188,2.215785,2.286266,2.574215,2.212661,2.212661,2.212661,2.212661,1.00711,0.843092,0.847982,0.843961,0.865105,0.95149,0.843024,0.843024,0.441426,0.441426,21.648614,26.99721,26.799823,26.961939,26.130754,23.207789,27,27,27,27,,,,,,,,,,,2580,2580,2.212661,2.212661,2.212661,2.212661,2.212661,2.212661,2.212661,2.212661,0.843024,0.843024,27,27,, +11481,0,0.383505,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.808,4.191,0,8.217972,4.5,4.5,0.605535,0.605535,0.605535,0.605535,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.632491,1.141082,0.605535,0.605535,0.632491,1.141082,0.631993,0.650691,0.605535,0.605535,0.631993,0.650691,1.164337,0.794261,0.605535,0.605535,1.164337,0.794261,0.605535,0.605535,0.605535,0.605535,0.605535,0.605535,,,,,,,0.632491,1.141082,0.631993,0.650691,1.164337,0.794261,0.605535,0.605535,0.605535,0.605535,0.258778,0.411356,0.258629,0.264238,0.418332,0.307309,0.250691,0.250691,0.133016,0.133016,36.380472,20.165348,36.409118,35.362918,19.762598,28.970746,38,38,38,38,,,,,,,,,,,3096,3096,0.605535,0.605535,0.605535,0.605535,0.605535,0.605535,0.605535,0.605535,0.250691,0.250691,38,38,, +21417,0,0.960721,1,1,0,2,5,,4,5,Bemis,Rd,4604906,7.796,8.757,0,20.586881,5.8,4.5,2.134936,2.134936,2.134936,2.134936,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,,,,,,,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,0.813411,0.813411,0.813411,0.813411,0.813411,0.813411,0.813411,0.813411,0.42592,0.42592,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,2.134936,0.813411,0.813411,27,27,, +26733,0,0.477103,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.223632,0.15,4,1.908411,1.908411,1.908411,1.908411,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,,,,,,,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,0.658402,0.658402,0.658402,0.658402,0.658402,0.658402,0.658402,0.658402,0.338743,0.338743,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,1.908411,0.658402,0.658402,15,15,, +39095,0,0.644426,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.809118,0.15,4,2.577702,2.577702,2.577702,2.577702,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,,,,,,,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,0.889307,0.889307,0.889307,0.889307,0.889307,0.889307,0.889307,0.889307,0.457542,0.457542,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,2.577702,0.889307,0.889307,15,15,, +10702,0,0.527785,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,0.465,0.993,0,11.309684,5.8,4.5,1.172856,1.172856,1.172856,1.172856,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.172856,1.172857,1.172856,1.172856,1.172856,1.172857,1.172856,1.172856,1.172856,1.172856,1.172856,1.172856,1.172857,1.172856,1.172856,1.172856,1.172857,1.172856,1.172856,1.172856,1.172856,1.172856,1.172856,1.172856,,,,,,,1.172856,1.172857,1.172856,1.172856,1.172857,1.172856,1.172856,1.172856,1.172856,1.172856,0.446858,0.446858,0.446858,0.446858,0.446858,0.446858,0.446858,0.446858,0.233985,0.233985,27,26.999975,27,27,26.999978,27,27,27,27,27,,,,,,,,,,,2580,2580,1.172856,1.172856,1.172856,1.172856,1.172856,1.172856,1.172856,1.172856,0.446858,0.446858,27,27,, +26734,0,0.504953,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.820416,0.15,4,2.019811,2.019811,2.019811,2.019811,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,,,,,,,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,0.696835,0.696835,0.696835,0.696835,0.696835,0.696835,0.696835,0.696835,0.358516,0.358516,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,2.019811,0.696835,0.696835,15,15,, +39094,0,0.514375,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.022327,0.15,4,2.057501,2.057501,2.057501,2.057501,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.057507,2.057501,2.057501,2.057501,2.057507,2.057501,2.057501,2.057501,2.057501,2.057501,2.057501,2.057501,2.057501,2.057505,2.057501,2.057501,2.057501,2.057505,2.057501,2.057501,2.057501,2.057501,2.057501,2.057501,,,,,,,2.057507,2.057501,2.057501,2.057501,2.057501,2.057505,2.057501,2.057501,2.057501,2.057501,0.70984,0.709838,0.709838,0.709838,0.709838,0.709839,0.709838,0.709838,0.365206,0.365206,14.999956,15,14.999999,14.999999,14.999997,14.999972,15,15,15,15,,,,,,,,,,,34400,34400,2.057501,2.057501,2.057501,2.057501,2.057501,2.057501,2.057501,2.057501,0.709838,0.709838,15,15,, +10703,0,0.465588,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,0,0.465,0,9.976886,5.8,4.5,1.03464,1.03464,1.03464,1.03464,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.03464,1.034698,1.03464,1.03464,1.03464,1.034698,1.03464,1.03464,1.03464,1.03464,1.03464,1.03464,1.034651,1.03464,1.03464,1.03464,1.034651,1.03464,1.03464,1.03464,1.03464,1.03464,1.03464,1.03464,,,,,,,1.03464,1.034698,1.03464,1.03464,1.034651,1.03464,1.03464,1.03464,1.03464,1.03464,0.394198,0.394215,0.394198,0.394198,0.394201,0.394198,0.394198,0.394198,0.206411,0.206411,27,26.998491,27,27,26.999712,27,27,27,27,27,,,,,,,,,,,2580,2580,1.03464,1.03464,1.03464,1.03464,1.03464,1.03464,1.03464,1.03464,0.394198,0.394198,27,27,, +21614,0,0.05579,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,7.741,7.796,0,1.195506,6.55,4.5,0.223161,0.223161,0.223161,0.223161,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.223161,0.2232,0.223161,0.223161,0.223161,0.2232,0.223161,0.223161,0.223161,0.223161,0.223161,0.223161,0.223168,0.223161,0.223161,0.223161,0.223168,0.223161,0.223161,0.223161,0.223161,0.223161,0.223161,0.223161,,,,,,,0.223161,0.2232,0.223161,0.223161,0.223168,0.223161,0.223161,0.223161,0.223161,0.223161,0.076991,0.077002,0.076991,0.076991,0.076993,0.076991,0.076991,0.076991,0.039611,0.039611,15,14.997412,15,15,14.999507,14.999999,15,15,15,15,,,,,,,,,,,2064,2064,0.223161,0.223161,0.223161,0.223161,0.223161,0.223161,0.223161,0.223161,0.076991,0.076991,15,15,, +10866,0,0.221989,1,1,0,2,5,,4,5,Merritt,Rd,1438204,3.244,3.466,0,4.756907,5.8,4.5,0.493309,0.493309,0.493309,0.493309,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.493438,0.898046,0.493309,0.493309,0.493438,0.898046,0.494591,0.498757,0.493309,0.493309,0.494591,0.498757,0.73589,0.515952,0.493309,0.493309,0.73589,0.515952,0.493309,0.493309,0.493309,0.493309,0.493309,0.493309,,,,,,,0.493438,0.898046,0.494591,0.498757,0.73589,0.515952,0.493309,0.493309,0.493309,0.493309,0.187989,0.309372,0.188335,0.189585,0.260725,0.194744,0.187951,0.187951,0.098415,0.098415,26.99295,14.831467,26.930003,26.705073,18.099632,25.81507,27,27,27,27,,,,,,,,,,,2580,2580,0.493309,0.493309,0.493309,0.493309,0.493309,0.493309,0.493309,0.493309,0.187951,0.187951,27,27,, +10882,0,0.313805,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.245,3.559,0,6.724402,4.5,4.5,0.495482,0.495482,0.495482,0.495482,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.495933,0.679271,0.495482,0.495482,0.495933,0.679271,0.496857,0.498417,0.495482,0.495482,0.496857,0.498417,0.587503,0.503081,0.495482,0.495482,0.587503,0.503081,0.495482,0.495482,0.495482,0.495482,0.495482,0.495482,,,,,,,0.495933,0.679271,0.496857,0.498417,0.587503,0.503081,0.495482,0.495482,0.495482,0.495482,0.205265,0.260266,0.205542,0.20601,0.232736,0.207409,0.20513,0.20513,0.108841,0.108841,37.965488,27.718428,37.894833,37.776239,32.048061,37.426031,38,38,38,38,,,,,,,,,,,3096,3096,0.495482,0.495482,0.495482,0.495482,0.495482,0.495482,0.495482,0.495482,0.20513,0.20513,38,38,, +10462,0,0.169749,1,1,0,2,4,,4,5,Stony Creek,Rd,1431208,10.744,10.914,0,3.637473,4.5,4.5,0.268024,0.268024,0.268024,0.268024,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.268122,0.26835,0.268024,0.268024,0.268122,0.26835,0.268031,0.268057,0.268024,0.268024,0.268031,0.268057,0.268204,0.268202,0.268024,0.268024,0.268204,0.268202,0.268024,0.268024,0.268024,0.268024,0.268024,0.268024,,,,,,,0.268122,0.26835,0.268031,0.268057,0.268204,0.268202,0.268024,0.268024,0.268024,0.268024,0.110991,0.11106,0.110964,0.110972,0.111016,0.111015,0.110962,0.110962,0.058876,0.058876,37.98611,37.953855,37.999038,37.995432,37.974521,37.974846,38,38,38,38,,,,,,,,,,,3096,3096,0.268024,0.268024,0.268024,0.268024,0.268024,0.268024,0.268024,0.268024,0.110962,0.110962,38,38,, +11295,0,0.11326,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.132,3.245,0,2.427006,4.5,4.5,0.178832,0.178832,0.178832,0.178832,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.179028,0.333967,0.178832,0.178832,0.179028,0.333967,0.179482,0.181294,0.178832,0.178832,0.179482,0.181294,0.263323,0.191114,0.178832,0.178832,0.263323,0.191114,0.178832,0.178832,0.178832,0.178832,0.178832,0.178832,,,,,,,0.179028,0.333967,0.179482,0.181294,0.263323,0.191114,0.178832,0.178832,0.178832,0.178832,0.074095,0.120577,0.074231,0.074775,0.099384,0.077721,0.074036,0.074036,0.039283,0.039283,37.958402,20.348143,37.862463,37.483901,25.807156,35.55797,38,38,38,38,,,,,,,,,,,3096,3096,0.178832,0.178832,0.178832,0.178832,0.178832,0.178832,0.178832,0.178832,0.074036,0.074036,38,38,, +11588,0,0.135083,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,1.988,2.123,0,2.894635,5.8,4.5,0.300184,0.300184,0.300184,0.300184,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.316211,0.300205,0.300184,0.300184,0.316211,0.300205,0.300804,0.30046,0.300184,0.300184,0.300804,0.30046,0.301029,0.309968,0.300184,0.300184,0.301029,0.309968,0.300184,0.300184,0.300184,0.300184,0.300184,0.300184,,,,,,,0.316211,0.300205,0.300804,0.30046,0.301029,0.309968,0.300184,0.300184,0.300184,0.300184,0.119178,0.114376,0.114556,0.114453,0.114624,0.117305,0.11437,0.11437,0.059887,0.059887,25.631591,26.99815,26.944387,26.975207,26.924279,26.147786,27,27,27,27,,,,,,,,,,,2580,2580,0.300184,0.300184,0.300184,0.300184,0.300184,0.300184,0.300184,0.300184,0.11437,0.11437,27,27,, +11188,0,0.249736,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.559,3.808,0,5.351476,4.5,4.5,0.394319,0.394319,0.394319,0.394319,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.394505,0.424122,0.394319,0.394319,0.394505,0.424122,0.394718,0.395167,0.394319,0.394319,0.394718,0.395167,0.412731,0.396817,0.394319,0.394319,0.412731,0.396817,0.394319,0.394319,0.394319,0.394319,0.394319,0.394319,,,,,,,0.394505,0.424122,0.394718,0.395167,0.412731,0.396817,0.394319,0.394319,0.394319,0.394319,0.163304,0.172189,0.163368,0.163503,0.168772,0.163998,0.163248,0.163248,0.086619,0.086619,37.98214,35.329728,37.961587,37.918479,36.304805,37.760774,38,38,38,38,,,,,,,,,,,3096,3096,0.394319,0.394319,0.394319,0.394319,0.394319,0.394319,0.394319,0.394319,0.163248,0.163248,38,38,, +11536,0,0.427258,1,1,0,2,4,,4,5,Whittaker,Rd,1439102,6.389,6.817,0,9.155519,4.5,4.5,0.674617,0.674617,0.674617,0.674617,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.691765,0.68162,0.674617,0.674617,0.691765,0.68162,0.67596,0.675621,0.674617,0.674617,0.67596,0.675621,0.699311,0.69462,0.674617,0.674617,0.699311,0.69462,0.674617,0.674617,0.674617,0.674617,0.674617,0.674617,,,,,,,0.691765,0.68162,0.67596,0.675621,0.699311,0.69462,0.674617,0.674617,0.674617,0.674617,0.284436,0.281392,0.279694,0.279593,0.2867,0.285292,0.279292,0.279292,0.148191,0.148191,37.058048,37.609591,37.924501,37.943541,36.65816,36.905737,38,38,38,38,,,,,,,,,,,3096,3096,0.674617,0.674617,0.674617,0.674617,0.674617,0.674617,0.674617,0.674617,0.279292,0.279292,38,38,, +11537,0,0.274469,1,1,0,2,4,,4,5,Whittaker,Rd,1439102,6.115,6.389,0,5.881483,4.5,4.5,0.433372,0.433372,0.433372,0.433372,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.461412,0.462074,0.433372,0.433372,0.461412,0.462074,0.436,0.435267,0.433372,0.433372,0.436,0.435267,0.496278,0.4657,0.433372,0.433372,0.496278,0.4657,0.433372,0.433372,0.433372,0.433372,0.433372,0.433372,,,,,,,0.461412,0.462074,0.436,0.435267,0.496278,0.4657,0.433372,0.433372,0.433372,0.433372,0.187828,0.188027,0.180205,0.179984,0.198288,0.189114,0.179416,0.179416,0.095197,0.095197,35.690757,35.63963,37.770979,37.834644,33.183343,35.362145,38,38,38,38,,,,,,,,,,,3096,3096,0.433372,0.433372,0.433372,0.433372,0.433372,0.433372,0.433372,0.433372,0.179416,0.179416,38,38,, +11468,0,0.412997,1,1,0,2,4,,4,5,Textile,Rd,1438102,4.191,4.604,0,8.849931,4.5,4.5,0.6521,0.6521,0.6521,0.6521,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.702968,1.167061,0.6521,0.6521,0.702968,1.167061,0.681817,0.704565,0.6521,0.6521,0.681817,0.704565,1.171997,0.941049,0.6521,0.6521,1.171997,0.941049,0.6521,0.6521,0.6521,0.6521,0.6521,0.6521,,,,,,,0.702968,1.167061,0.681817,0.704565,1.171997,0.941049,0.6521,0.6521,0.6521,0.6521,0.28523,0.424458,0.278885,0.285709,0.425938,0.356654,0.269969,0.269969,0.143245,0.143245,35.250283,21.232654,36.343765,35.170385,21.143236,26.332113,38,38,38,38,,,,,,,,,,,3096,3096,0.6521,0.6521,0.6521,0.6521,0.6521,0.6521,0.6521,0.6521,0.269969,0.269969,38,38,, +25708,0,0.477934,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.241451,0.15,4,1.911737,1.911737,1.911737,1.911737,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.91174,1.911737,1.911737,1.911737,1.91174,1.911737,1.911738,1.911737,1.911737,1.911737,1.911738,1.911737,1.911738,1.911739,1.911737,1.911737,1.911738,1.911739,1.911737,1.911737,1.911737,1.911737,1.911737,1.911737,,,,,,,1.91174,1.911737,1.911738,1.911737,1.911738,1.911739,1.911737,1.911737,1.911737,1.911737,0.65955,0.659549,0.659549,0.659549,0.659549,0.65955,0.659549,0.659549,0.339333,0.339333,14.99998,15,14.999999,15,14.999998,14.999985,15,15,15,15,,,,,,,,,,,34400,34400,1.911737,1.911737,1.911737,1.911737,1.911737,1.911737,1.911737,1.911737,0.659549,0.659549,15,15,, +25706,0,0.437624,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.377665,0.15,4,1.750497,1.750497,1.750497,1.750497,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,,,,,,,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,0.603922,0.603922,0.603922,0.603922,0.603922,0.603922,0.603922,0.603922,0.310713,0.310713,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,1.750497,0.603922,0.603922,15,15,, +10858,0,0.673021,1,1,0,2,7,,4,5,Martz,Rd,1438303,1.095,1.767,0,14.421884,6.55,4.5,1.615251,1.615251,1.615251,1.615251,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.615258,1.615251,1.615251,1.615251,1.615258,1.615251,1.615251,1.615251,1.615251,1.615251,1.615251,1.615251,1.615251,1.61526,1.615251,1.615251,1.615251,1.61526,1.615251,1.615251,1.615251,1.615251,1.615251,1.615251,,,,,,,1.615258,1.615251,1.615251,1.615251,1.615251,1.61526,1.615251,1.615251,1.615251,1.615251,0.605721,0.605719,0.605719,0.605719,0.605719,0.605722,0.605719,0.605719,0.31632,0.31632,24.999897,25,25,25,25,24.999868,25,25,25,25,,,,,,,,,,,2064,2064,1.615251,1.615251,1.615251,1.615251,1.615251,1.615251,1.615251,1.615251,0.605719,0.605719,25,25,, +11022,0,0.580559,1,1,0,2,4,,4,5,Textile,Rd,1438102,5.264,5.844,0,12.44055,4.5,4.5,0.916672,0.916672,0.916672,0.916672,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.102402,0.922811,0.916672,0.916672,1.102402,0.922811,0.918642,0.919109,0.916672,0.916672,0.918642,0.919109,0.930152,1.092315,0.916672,0.916672,0.930152,1.092315,0.916672,0.916672,0.916672,0.916672,0.916672,0.916672,,,,,,,1.102402,0.922811,0.918642,0.919109,0.930152,1.092315,0.916672,0.916672,0.916672,0.916672,0.435221,0.381344,0.380093,0.380233,0.383546,0.432195,0.379502,0.379502,0.201362,0.201362,31.597846,37.747202,37.918532,37.899252,37.449306,31.88966,38,38,38,38,,,,,,,,,,,3096,3096,0.916672,0.916672,0.916672,0.916672,0.916672,0.916672,0.916672,0.916672,0.379502,0.379502,38,38,, +21449,0,1.01032,1,1,1,2,5,,4,5,Tuttle Hill,Rd,4603029,0.503,1.513,0,21.649711,5.8,4.5,2.245155,2.245155,2.245155,2.245155,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,2.277758,2.245294,2.245155,2.245155,2.277758,2.245294,2.24641,2.246024,2.245155,2.245155,2.24641,2.246024,2.249169,2.280802,2.245155,2.245155,2.249169,2.280802,2.245155,2.245155,2.245155,2.245155,2.245155,2.245155,,,,,,,2.277758,2.245294,2.24641,2.246024,2.249169,2.280802,2.245155,2.245155,2.245155,2.245155,0.865185,0.855446,0.855781,0.855665,0.856608,0.866098,0.855404,0.855404,0.447908,0.447908,26.613528,26.998332,26.984919,26.989555,26.951811,26.578012,27,27,27,27,,,,,,,,,,,2838,2838,2.245155,2.245155,2.245155,2.245155,2.245155,2.245155,2.245155,2.245155,0.855404,0.855404,27,27,, +21508,0,1.350857,1,1,0,2,7,,4,5,Bunton,Rd,4603030,0.494,1.844,0,28.946928,6.55,4.5,3.242056,3.242056,3.242056,3.242056,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.242058,3.242056,3.242056,3.242056,3.242058,3.242056,3.242056,3.242056,3.242056,3.242056,3.242056,3.242056,3.242056,3.242063,3.242056,3.242056,3.242056,3.242063,3.242056,3.242056,3.242056,3.242056,3.242056,3.242056,,,,,,,3.242058,3.242056,3.242056,3.242056,3.242056,3.242063,3.242056,3.242056,3.242056,3.242056,1.215772,1.215771,1.215771,1.215771,1.215771,1.215773,1.215771,1.215771,0.634903,0.634903,24.999986,25,24.999999,24.999998,24.999996,24.999947,25,25,25,25,,,,,,,,,,,2064,2064,3.242056,3.242056,3.242056,3.242056,3.242056,3.242056,3.242056,3.242056,1.215771,1.215771,25,25,, +21681,0,1.001101,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,9.753,10.754,0,21.452157,6.55,4.5,4.004403,4.004403,4.004403,4.004403,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,,,,,,,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,1.381519,1.381519,1.381519,1.381519,1.381519,1.381519,1.381519,1.381519,0.710781,0.710781,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,2064,2064,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,4.004403,1.381519,1.381519,15,15,, +25712,0,0.49291,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.562359,0.15,4,1.97164,1.97164,1.97164,1.97164,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,1.971641,1.97164,1.97164,1.97164,1.971641,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,,,,,,,1.97164,1.97164,1.97164,1.97164,1.97164,1.971641,1.97164,1.97164,1.97164,1.97164,0.680216,0.680216,0.680216,0.680216,0.680216,0.680216,0.680216,0.680216,0.349966,0.349966,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,1.97164,0.680216,0.680216,15,15,, +26736,0,0.996029,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.343476,0.15,4,3.984116,3.984116,3.984116,3.984116,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,,,,,,,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,1.37452,1.37452,1.37452,1.37452,1.37452,1.37452,1.37452,1.37452,0.707181,0.707181,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,3.984116,1.37452,1.37452,15,15,, +20136,0,0.503154,1,1,0,2,5,GRV,4,5,Tuttle Hill,Rd,4302163,6.621,7.124,0,10.781863,6.55,4.5,2.012614,2.012614,2.012614,2.012614,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,,,,,,,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,0.694352,0.694352,0.694352,0.694352,0.694352,0.694352,0.694352,0.694352,0.357239,0.357239,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,2064,2064,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,2.012614,0.694352,0.694352,15,15,, +21654,0,0.503497,1,1,1,2,5,,4,5,Tuttle Hill,Rd,4603029,0,0.503,0,10.789223,5.8,4.5,1.118882,1.118882,1.118882,1.118882,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.118883,1.119028,1.118882,1.118882,1.118883,1.119028,1.118883,1.118883,1.118882,1.118882,1.118883,1.118883,1.119107,1.118887,1.118882,1.118882,1.119107,1.118887,1.118882,1.118882,1.118882,1.118882,1.118882,1.118882,,,,,,,1.118883,1.119028,1.118883,1.118883,1.119107,1.118887,1.118882,1.118882,1.118882,1.118882,0.426294,0.426338,0.426294,0.426294,0.426361,0.426295,0.426294,0.426294,0.223217,0.223217,26.999991,26.996489,26.999992,26.999993,26.994587,26.999895,27,27,27,27,,,,,,,,,,,2838,2838,1.118882,1.118882,1.118882,1.118882,1.118882,1.118882,1.118882,1.118882,0.426294,0.426294,27,27,, +11328,0,0.045303,1,1,0,2,5,,4,5,Martz,Rd,1438303,1.049,1.095,0,0.970775,5.8,4.5,0.100673,0.100673,0.100673,0.100673,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.100674,0.100688,0.100673,0.100673,0.100674,0.100688,0.100673,0.100673,0.100673,0.100673,0.100673,0.100673,0.100697,0.100676,0.100673,0.100673,0.100697,0.100676,0.100673,0.100673,0.100673,0.100673,0.100673,0.100673,,,,,,,0.100674,0.100688,0.100673,0.100673,0.100697,0.100676,0.100673,0.100673,0.100673,0.100673,0.038357,0.038361,0.038356,0.038356,0.038364,0.038357,0.038356,0.038356,0.020084,0.020084,26.999819,26.995898,26.99997,26.999979,26.99346,26.999174,27,27,27,27,,,,,,,,,,,2580,2580,0.100673,0.100673,0.100673,0.100673,0.100673,0.100673,0.100673,0.100673,0.038356,0.038356,27,27,, +21238,0,0.160906,1,1,0,2,5,,4,5,Tuttle Hill,Rd,4603029,1.513,1.674,0,3.447991,5.8,4.5,0.357569,0.357569,0.357569,0.357569,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.357682,0.35757,0.357569,0.357569,0.357682,0.35757,0.357572,0.357572,0.357569,0.357569,0.357572,0.357572,0.357584,0.357703,0.357569,0.357569,0.357584,0.357703,0.357569,0.357569,0.357569,0.357569,0.357569,0.357569,,,,,,,0.357682,0.35757,0.357572,0.357572,0.357584,0.357703,0.357569,0.357569,0.357569,0.357569,0.136268,0.136234,0.136235,0.136235,0.136238,0.136274,0.136234,0.136234,0.071335,0.071335,26.991485,26.999959,26.999817,26.99983,26.998912,26.989894,27,27,27,27,,,,,,,,,,,2580,2580,0.357569,0.357569,0.357569,0.357569,0.357569,0.357569,0.357569,0.357569,0.136234,0.136234,27,27,, +11573,0,0.325809,1,1,0,2,7,,4,5,Martz,Rd,1438303,1.767,2.093,0,6.981627,6.55,4.5,0.781942,0.781942,0.781942,0.781942,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.782134,0.781944,0.781942,0.781942,0.782134,0.781944,0.781944,0.781944,0.781942,0.781942,0.781944,0.781944,0.781948,0.782135,0.781942,0.781942,0.781948,0.782135,0.781942,0.781942,0.781942,0.781942,0.781942,0.781942,,,,,,,0.782134,0.781944,0.781944,0.781944,0.781948,0.782135,0.781942,0.781942,0.781942,0.781942,0.293286,0.293229,0.293229,0.293229,0.29323,0.293286,0.293228,0.293228,0.15313,0.15313,24.993872,24.999953,24.999945,24.99995,24.999824,24.993846,25,25,25,25,,,,,,,,,,,2064,2064,0.781942,0.781942,0.781942,0.781942,0.781942,0.781942,0.781942,0.781942,0.293228,0.293228,25,25,, +21721,0,0.494084,1,1,0,2,7,,4,5,Bunton,Rd,4603030,0,0.494,0,10.587524,6.55,4.5,1.185803,1.185803,1.185803,1.185803,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.186679,1.185819,1.185803,1.185803,1.186679,1.185819,1.185845,1.185836,1.185803,1.185803,1.185845,1.185836,1.185911,1.186871,1.185803,1.185803,1.185911,1.186871,1.185803,1.185803,1.185803,1.185803,1.185803,1.185803,,,,,,,1.186679,1.185819,1.185845,1.185836,1.185911,1.186871,1.185803,1.185803,1.185803,1.185803,0.444939,0.444681,0.444689,0.444686,0.444708,0.444997,0.444676,0.444676,0.23222,0.23222,24.981532,24.999653,24.999116,24.999306,24.997725,24.977493,25,25,25,25,,,,,,,,,,,2064,2064,1.185803,1.185803,1.185803,1.185803,1.185803,1.185803,1.185803,1.185803,0.444676,0.444676,25,25,, +26737,0,0.523624,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.220518,0.15,4,2.094497,2.094497,2.094497,2.094497,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,,,,,,,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,0.722601,0.722601,0.722601,0.722601,0.722601,0.722601,0.722601,0.722601,0.371773,0.371773,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,2.094497,0.722601,0.722601,15,15,, +21467,0,0.045814,1,1,0,2,5,,4,5,Bemis,Rd,4604906,10.754,10.799,0,0.981739,5.8,4.5,0.10181,0.10181,0.10181,0.10181,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.101835,0.10181,0.10181,0.10181,0.101835,0.10181,0.101811,0.101811,0.10181,0.10181,0.101811,0.101811,0.101812,0.101838,0.10181,0.10181,0.101812,0.101838,0.10181,0.10181,0.10181,0.10181,0.10181,0.10181,,,,,,,0.101835,0.10181,0.101811,0.101811,0.101812,0.101838,0.10181,0.10181,0.10181,0.10181,0.038797,0.03879,0.03879,0.03879,0.03879,0.038798,0.03879,0.03879,0.020311,0.020311,26.99336,26.99993,26.999741,26.999842,26.999513,26.992558,27,27,27,27,,,,,,,,,,,2580,2580,0.10181,0.10181,0.10181,0.10181,0.10181,0.10181,0.10181,0.10181,0.03879,0.03879,27,27,, +11145,0,0.28323,1,1,0,2,4,,4,5,Textile,Rd,1438102,5.973,6.256,0,6.069205,4.5,4.5,0.447205,0.447205,0.447205,0.447205,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.629264,0.455361,0.447205,0.447205,0.629264,0.455361,0.450447,0.451269,0.447205,0.447205,0.450447,0.451269,0.469478,0.671762,0.447205,0.447205,0.469478,0.671762,0.447205,0.447205,0.447205,0.447205,0.447205,0.447205,,,,,,,0.629264,0.455361,0.450447,0.451269,0.469478,0.671762,0.447205,0.447205,0.447205,0.447205,0.239761,0.18759,0.186115,0.186362,0.191825,0.25251,0.185143,0.185143,0.098236,0.098236,27.005795,37.319363,37.726461,37.657733,36.197135,25.297306,38,38,38,38,,,,,,,,,,,3096,3096,0.447205,0.447205,0.447205,0.447205,0.447205,0.447205,0.447205,0.447205,0.185143,0.185143,38,38,, +11449,0,0.072716,1,1,0,2,5,,4,5,Huron River,Dr,1438110,2.73,2.803,0,1.5582,5.8,4.5,0.161591,0.161591,0.161591,0.161591,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.161592,0.161592,0.161591,0.161591,0.161592,0.161592,0.161592,0.161592,0.161591,0.161591,0.161592,0.161592,0.161596,0.161601,0.161591,0.161591,0.161596,0.161601,0.161591,0.161591,0.161591,0.161591,0.161591,0.161591,,,,,,,0.161592,0.161592,0.161592,0.161592,0.161596,0.161601,0.161591,0.161591,0.161591,0.161591,0.061567,0.061566,0.061566,0.061566,0.061568,0.061569,0.061566,0.061566,0.032237,0.032237,26.999815,26.999892,26.999931,26.999875,26.999172,26.998364,27,27,27,27,,,,,,,,,,,2580,2580,0.161591,0.161591,0.161591,0.161591,0.161591,0.161591,0.161591,0.161591,0.061566,0.061566,27,27,, +10969,0,0.128709,1,1,0,2,4,,4,5,Textile,Rd,1438102,5.844,5.973,0,2.75806,4.5,4.5,0.203225,0.203225,0.203225,0.203225,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.26144,0.205792,0.203225,0.203225,0.26144,0.205792,0.204132,0.204416,0.203225,0.203225,0.204132,0.204416,0.210011,0.271101,0.203225,0.203225,0.210011,0.271101,0.203225,0.203225,0.203225,0.203225,0.203225,0.203225,,,,,,,0.26144,0.205792,0.204132,0.204416,0.210011,0.271101,0.203225,0.203225,0.203225,0.203225,0.1016,0.084905,0.084407,0.084492,0.086171,0.104498,0.084135,0.084135,0.044642,0.044642,29.538538,37.525996,37.83121,37.778703,36.772258,28.485956,38,38,38,38,,,,,,,,,,,3096,3096,0.203225,0.203225,0.203225,0.203225,0.203225,0.203225,0.203225,0.203225,0.084135,0.084135,38,38,, +21293,0,0.144756,1,1,0,2,7,,4,5,Bunton,Rd,4603030,1.844,1.989,0,3.101914,6.55,4.5,0.347414,0.347414,0.347414,0.347414,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.441721,0.347611,0.347414,0.347414,0.441721,0.347611,0.34828,0.347909,0.347414,0.347414,0.34828,0.347909,0.349459,0.399647,0.347414,0.347414,0.349459,0.399647,0.347414,0.347414,0.347414,0.347414,0.347414,0.347414,,,,,,,0.441721,0.347611,0.34828,0.347909,0.349459,0.399647,0.347414,0.347414,0.347414,0.347414,0.158572,0.130339,0.13054,0.130429,0.130894,0.14595,0.13028,0.13028,0.068035,0.068035,19.662555,24.985861,24.937864,24.964482,24.853744,21.732564,25,25,25,25,,,,,,,,,,,2064,2064,0.347414,0.347414,0.347414,0.347414,0.347414,0.347414,0.347414,0.347414,0.13028,0.13028,25,25,, +11275,0,1.012384,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,1.005,2.017,0,21.693936,3.7,5,2.024767,2.024767,2.024767,2.024767,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.024771,2.024768,2.024767,2.024767,2.024771,2.024768,2.024768,2.024767,2.024767,2.024767,2.024768,2.024767,2.024768,2.024775,2.024767,2.024767,2.024768,2.024775,2.024767,2.024767,2.024767,2.024767,2.024767,2.024767,,,,,,,2.024771,2.024768,2.024768,2.024767,2.024768,2.024775,2.024767,2.024767,2.024767,2.024767,0.78966,0.789659,0.789659,0.789659,0.78966,0.789661,0.789659,0.789659,0.415077,0.415077,29.999945,29.999995,29.999997,30,29.999985,29.999893,30,30,30,30,,,,,,,,,,,2580,2580,2.024767,2.024767,2.024767,2.024767,2.024767,2.024767,2.024767,2.024767,0.789659,0.789659,30,30,, +17474,0,1.336588,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,0,1.336,0,28.64118,3,4,2.004883,2.004883,2.004883,2.004883,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.021156,2.011812,2.004883,2.004883,2.021156,2.011812,2.005116,2.005122,2.004883,2.004883,2.005116,2.005122,2.010016,2.016869,2.004883,2.004883,2.010016,2.016869,2.004883,2.004883,2.004883,2.004883,2.004883,2.004883,,,,,,,2.021156,2.011812,2.005116,2.005122,2.010016,2.016869,2.004883,2.004883,2.004883,2.004883,0.846933,0.84413,0.842121,0.842122,0.843591,0.845647,0.842051,0.842051,0.447757,0.447757,39.677934,39.862217,39.995342,39.995229,39.897841,39.762273,40,40,40,40,,,,,,,,,,,3096,3096,2.004883,2.004883,2.004883,2.004883,2.004883,2.004883,2.004883,2.004883,0.842051,0.842051,40,40,, +18741,0,0.98516,1,1,0,2,5,,5,2,Willow,Rd,1670406,0,0.985,0,21.110573,3.7,5,1.97032,1.97032,1.97032,1.97032,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.970321,1.970321,1.97032,1.97032,1.970321,1.970321,1.97032,1.97032,1.97032,1.97032,1.97032,1.97032,1.970321,1.97032,1.97032,1.97032,1.970321,1.97032,1.97032,1.97032,1.97032,1.97032,1.97032,1.97032,,,,,,,1.970321,1.970321,1.97032,1.97032,1.970321,1.97032,1.97032,1.97032,1.97032,1.97032,0.768425,0.768425,0.768425,0.768425,0.768425,0.768425,0.768425,0.768425,0.403916,0.403916,29.999992,29.999992,30,30,29.999993,29.999996,30,30,30,30,,,,,,,,,,,2580,2580,1.97032,1.97032,1.97032,1.97032,1.97032,1.97032,1.97032,1.97032,0.768425,0.768425,30,30,, +30866,0,0.799127,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,17.124155,0.15,4,3.196509,3.196509,3.196509,3.196509,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,,,,,,,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,1.102796,1.102796,1.102796,1.102796,1.102796,1.102796,1.102796,1.102796,0.56738,0.56738,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,3.196509,1.102796,1.102796,15,15,, +31387,0,0.997524,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,21.375514,0.15,4,3.990096,3.990096,3.990096,3.990096,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,,,,,,,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,1.376583,1.376583,1.376583,1.376583,1.376583,1.376583,1.376583,1.376583,0.708242,0.708242,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,3.990096,1.376583,1.376583,15,15,, +31388,0,1.546197,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,33.132789,0.15,4,6.184787,6.184787,6.184787,6.184787,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,,,,,,,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,2.133752,2.133752,2.133752,2.133752,2.133752,2.133752,2.133752,2.133752,1.0978,1.0978,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,6.184787,2.133752,2.133752,15,15,, +11279,0,0.764845,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,0,0.765,0,16.389532,3.7,5,1.52969,1.52969,1.52969,1.52969,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.529692,1.52969,1.52969,1.52969,1.529692,1.52969,1.52969,1.52969,1.52969,1.52969,1.52969,1.52969,1.52969,1.529695,1.52969,1.52969,1.52969,1.529695,1.52969,1.52969,1.52969,1.52969,1.52969,1.52969,,,,,,,1.529692,1.52969,1.52969,1.52969,1.52969,1.529695,1.52969,1.52969,1.52969,1.52969,0.59658,0.596579,0.596579,0.596579,0.596579,0.596581,0.596579,0.596579,0.313586,0.313586,29.999945,29.999995,29.999997,30,29.999985,29.999893,30,30,30,30,,,,,,,,,,,2580,2580,1.52969,1.52969,1.52969,1.52969,1.52969,1.52969,1.52969,1.52969,0.596579,0.596579,30,30,, +20831,0,0.522234,1,1,0,2,4,,5,6,Oakville Waltz,Rd,4302164,0,0.522,0,11.190728,3,4,0.783351,0.783351,0.783351,0.783351,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.795501,0.787644,0.783351,0.783351,0.795501,0.787644,0.78357,0.783505,0.783351,0.783351,0.78357,0.783505,0.787202,0.793831,0.783351,0.783351,0.787202,0.793831,0.783351,0.783351,0.783351,0.783351,0.783351,0.783351,,,,,,,0.795501,0.787644,0.78357,0.783505,0.787202,0.793831,0.783351,0.783351,0.783351,0.783351,0.332653,0.330295,0.329073,0.329054,0.330163,0.332151,0.329007,0.329007,0.174948,0.174948,39.389039,39.781996,39.988825,39.992112,39.804316,39.471933,40,40,40,40,,,,,,,,,,,3096,3096,0.783351,0.783351,0.783351,0.783351,0.783351,0.783351,0.783351,0.783351,0.329007,0.329007,40,40,, +10302,0,0.431784,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1236105,1.614,2.045,0,9.252513,3,4,0.647676,0.647676,0.647676,0.647676,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.657722,0.651225,0.647676,0.647676,0.657722,0.651225,0.647857,0.647804,0.647676,0.647676,0.647857,0.647804,0.65086,0.656341,0.647676,0.647676,0.65086,0.656341,0.647676,0.647676,0.647676,0.647676,0.647676,0.647676,,,,,,,0.657722,0.651225,0.647857,0.647804,0.65086,0.656341,0.647676,0.647676,0.647676,0.647676,0.275038,0.273089,0.272078,0.272062,0.272979,0.274623,0.272024,0.272024,0.144648,0.144648,39.389039,39.781996,39.988825,39.992112,39.804316,39.471933,40,40,40,40,,,,,,,,,,,3096,3096,0.647676,0.647676,0.647676,0.647676,0.647676,0.647676,0.647676,0.647676,0.272024,0.272024,40,40,, +11527,0,0.240443,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,0.765,1.005,0,5.152352,3.7,5,0.480886,0.480886,0.480886,0.480886,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.480887,0.480886,0.480886,0.480886,0.480887,0.480886,0.480886,0.480886,0.480886,0.480886,0.480886,0.480886,0.480886,0.480888,0.480886,0.480886,0.480886,0.480888,0.480886,0.480886,0.480886,0.480886,0.480886,0.480886,,,,,,,0.480887,0.480886,0.480886,0.480886,0.480886,0.480888,0.480886,0.480886,0.480886,0.480886,0.187546,0.187546,0.187546,0.187546,0.187546,0.187546,0.187546,0.187546,0.098582,0.098582,29.999945,29.999995,29.999997,30,29.999985,29.999893,30,30,30,30,,,,,,,,,,,2580,2580,0.480886,0.480886,0.480886,0.480886,0.480886,0.480886,0.480886,0.480886,0.187546,0.187546,30,30,, +11526,0,1.001738,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,2.017,3.018,0,21.465813,3.7,5,2.003476,2.003476,2.003476,2.003476,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.003487,2.003476,2.003476,2.003476,2.003487,2.003476,2.003476,2.003476,2.003476,2.003476,2.003476,2.003476,2.003476,2.003485,2.003476,2.003476,2.003476,2.003485,2.003476,2.003476,2.003476,2.003476,2.003476,2.003476,,,,,,,2.003487,2.003476,2.003476,2.003476,2.003476,2.003485,2.003476,2.003476,2.003476,2.003476,0.781359,0.781356,0.781356,0.781356,0.781356,0.781358,0.781356,0.781356,0.410713,0.410713,29.999839,29.999998,29.999997,30,29.999991,29.999866,30,30,30,30,,,,,,,,,,,2580,2580,2.003476,2.003476,2.003476,2.003476,2.003476,2.003476,2.003476,2.003476,0.781356,0.781356,30,30,, +31389,0,1.022828,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,21.917742,0.15,4,4.091312,4.091312,4.091312,4.091312,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,,,,,,,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,1.411503,1.411503,1.411503,1.411503,1.411503,1.411503,1.411503,1.411503,0.726208,0.726208,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,4.091312,1.411503,1.411503,15,15,, +19189,0,0.610964,1,1,0,2,5,,5,2,Willow,Rd,1670406,0.985,1.596,0,13.092077,3.7,5,1.221927,1.221927,1.221927,1.221927,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.221935,1.221929,1.221927,1.221927,1.221935,1.221929,1.221927,1.221927,1.221927,1.221927,1.221927,1.221927,1.221932,1.221935,1.221927,1.221927,1.221932,1.221935,1.221927,1.221927,1.221927,1.221927,1.221927,1.221927,,,,,,,1.221935,1.221929,1.221927,1.221927,1.221932,1.221935,1.221927,1.221927,1.221927,1.221927,0.476554,0.476552,0.476552,0.476552,0.476553,0.476554,0.476552,0.476552,0.250495,0.250495,29.999806,29.999946,29.999997,29.999996,29.999872,29.99981,30,30,30,30,,,,,,,,,,,2580,2580,1.221927,1.221927,1.221927,1.221927,1.221927,1.221927,1.221927,1.221927,0.476552,0.476552,30,30,, +30864,0,1.031282,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,22.098909,0.15,4,4.12513,4.12513,4.12513,4.12513,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,,,,,,,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,1.42317,1.42317,1.42317,1.42317,1.42317,1.42317,1.42317,1.42317,0.732211,0.732211,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,4.12513,1.42317,1.42317,15,15,, +30877,0,1.029337,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,22.057217,0.15,4,4.117347,4.117347,4.117347,4.117347,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,,,,,,,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,1.420485,1.420485,1.420485,1.420485,1.420485,1.420485,1.420485,1.420485,0.730829,0.730829,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,4.117347,1.420485,1.420485,15,15,, +18740,0,0.504651,1,1,0,2,5,,5,2,Willow,Rd,1670406,1.596,2.1,0,10.813951,3.7,5,1.009302,1.009302,1.009302,1.009302,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.009483,1.009303,1.009302,1.009302,1.009483,1.009303,1.009303,1.009303,1.009302,1.009302,1.009303,1.009303,1.009315,1.009392,1.009302,1.009302,1.009315,1.009392,1.009302,1.009302,1.009302,1.009302,1.009302,1.009302,,,,,,,1.009483,1.009303,1.009303,1.009303,1.009315,1.009392,1.009302,1.009302,1.009302,1.009302,0.393682,0.393628,0.393628,0.393628,0.393632,0.393655,0.393628,0.393628,0.206907,0.206907,29.994619,29.999975,29.999963,29.999974,29.999632,29.99733,30,30,30,30,,,,,,,,,,,2580,2580,1.009302,1.009302,1.009302,1.009302,1.009302,1.009302,1.009302,1.009302,0.393628,0.393628,30,30,, +11523,0,0.414828,1,1,0,2,4,,5,5,Rawsonville,Rd,1439105,5.71,6.125,0,8.889176,3,4,0.622242,0.622242,0.622242,0.622242,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.787527,0.625723,0.622242,0.622242,0.787527,0.625723,0.62503,0.623442,0.622242,0.622242,0.62503,0.623442,0.641837,0.735106,0.622242,0.622242,0.641837,0.735106,0.622242,0.622242,0.622242,0.622242,0.622242,0.622242,,,,,,,0.787527,0.625723,0.62503,0.623442,0.641837,0.735106,0.622242,0.622242,0.622242,0.622242,0.310927,0.262386,0.262178,0.261702,0.26722,0.295201,0.261342,0.261342,0.138967,0.138967,31.604876,39.777482,39.821611,39.923014,38.778829,33.858641,40,40,40,40,,,,,,,,,,,3096,3096,0.622242,0.622242,0.622242,0.622242,0.622242,0.622242,0.622242,0.622242,0.261342,0.261342,40,40,, +17766,0,1.102432,1,1,0,2,4,,4,2,Huron River,Dr,1674810,0,1.102,0,23.623553,4.5,4.5,1.740683,1.740683,1.740683,1.740683,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.764521,1.801938,1.740683,1.740683,1.764521,1.801938,1.743284,1.74444,1.740683,1.740683,1.743284,1.74444,1.865504,1.801444,1.740683,1.740683,1.865504,1.801444,1.740683,1.740683,1.740683,1.740683,1.740683,1.740683,,,,,,,1.764521,1.801938,1.743284,1.74444,1.865504,1.801444,1.740683,1.740683,1.740683,1.740683,0.727794,0.739019,0.721423,0.72177,0.758089,0.738871,0.720643,0.720643,0.38237,0.38237,37.486635,36.708222,37.943304,37.918153,35.457405,36.718303,38,38,38,38,,,,,,,,,,,3096,3096,1.740683,1.740683,1.740683,1.740683,1.740683,1.740683,1.740683,1.740683,0.720643,0.720643,38,38,, +18400,0,1.271104,1,1,0,2,5,,4,2,Bemis,Rd,1670503,0,1.271,0,27.237935,5.8,4.5,2.824675,2.824675,2.824675,2.824675,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.824847,2.824705,2.824675,2.824675,2.824847,2.824705,2.824678,2.824683,2.824675,2.824675,2.824678,2.824683,2.824842,2.825015,2.824675,2.824675,2.824842,2.825015,2.824675,2.824675,2.824675,2.824675,2.824675,2.824675,,,,,,,2.824847,2.824705,2.824678,2.824683,2.824842,2.825015,2.824675,2.824675,2.824675,2.824675,1.076253,1.07621,1.076202,1.076203,1.076251,1.076303,1.076201,1.076201,0.563523,0.563523,26.998351,26.999709,26.999964,26.999924,26.998405,26.996748,27,27,27,27,,,,,,,,,,,2580,2580,2.824675,2.824675,2.824675,2.824675,2.824675,2.824675,2.824675,2.824675,1.076201,1.076201,27,27,, +18494,0,1.598137,1,1,0,2,4,,5,2,Willis,Rd,1670409,0,1.598,0,34.245788,3,4,2.397205,2.397205,2.397205,2.397205,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.428026,2.459938,2.397205,2.397205,2.428026,2.459938,2.397542,2.397857,2.397205,2.397205,2.397542,2.397857,2.447181,2.435864,2.397205,2.397205,2.447181,2.435864,2.397205,2.397205,2.397205,2.397205,2.397205,2.397205,,,,,,,2.428026,2.459938,2.397542,2.397857,2.447181,2.435864,2.397205,2.397205,2.397205,2.397205,1.016073,1.025646,1.006927,1.007022,1.021819,1.018424,1.006826,1.006826,0.535376,0.535376,39.492244,38.979936,39.994378,39.989124,39.183134,39.36518,40,40,40,40,,,,,,,,,,,3096,3096,2.397205,2.397205,2.397205,2.397205,2.397205,2.397205,2.397205,2.397205,1.006826,1.006826,40,40,, +30868,0,0.567874,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.168728,0.15,4,2.271496,2.271496,2.271496,2.271496,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,,,,,,,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,0.783666,0.783666,0.783666,0.783666,0.783666,0.783666,0.783666,0.783666,0.403191,0.403191,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,2.271496,0.783666,0.783666,15,15,, +30869,0,1.523559,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,32.64769,0.15,4,6.094235,6.094235,6.094235,6.094235,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,,,,,,,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,2.102511,2.102511,2.102511,2.102511,2.102511,2.102511,2.102511,2.102511,1.081727,1.081727,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,6.094235,2.102511,2.102511,15,15,, +31887,0,1.014913,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.748145,0.15,4,4.059654,4.059654,4.059654,4.059654,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,,,,,,,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,1.400581,1.400581,1.400581,1.400581,1.400581,1.400581,1.400581,1.400581,0.720589,0.720589,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,4.059654,1.400581,1.400581,15,15,, +10811,0,1.016311,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,4.024,5.04,0,21.778089,3.7,5,2.032622,2.032622,2.032622,2.032622,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.116885,2.032679,2.032622,2.032622,2.116885,2.032679,2.03314,2.032852,2.032622,2.032622,2.03314,2.032852,2.034244,2.077091,2.032622,2.032622,2.034244,2.077091,2.032622,2.032622,2.032622,2.032622,2.032622,2.032622,,,,,,,2.116885,2.032679,2.03314,2.032852,2.034244,2.077091,2.032622,2.032622,2.032622,2.032622,0.818001,0.79274,0.792878,0.792792,0.793209,0.806063,0.792722,0.792722,0.416687,0.416687,28.805844,29.999153,29.992353,29.996602,29.976072,29.357717,30,30,30,30,,,,,,,,,,,2580,2580,2.032622,2.032622,2.032622,2.032622,2.032622,2.032622,2.032622,2.032622,0.792722,0.792722,30,30,, +11525,0,0.670352,1,1,0,2,4,,5,5,Rawsonville,Rd,1439105,5.04,5.71,0,14.364693,3,4,1.005529,1.005529,1.005529,1.005529,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.272625,1.011154,1.005529,1.005529,1.272625,1.011154,1.010033,1.007468,1.005529,1.005529,1.010033,1.007468,1.037193,1.187914,1.005529,1.005529,1.037193,1.187914,1.005529,1.005529,1.005529,1.005529,1.005529,1.005529,,,,,,,1.272625,1.011154,1.010033,1.007468,1.037193,1.187914,1.005529,1.005529,1.005529,1.005529,0.502451,0.424009,0.423673,0.422904,0.431821,0.477038,0.422322,0.422322,0.224568,0.224568,31.604876,39.777482,39.821611,39.923014,38.778829,33.858641,40,40,40,40,,,,,,,,,,,3096,3096,1.005529,1.005529,1.005529,1.005529,1.005529,1.005529,1.005529,1.005529,0.422322,0.422322,40,40,, +10809,0,0.519453,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,6.626,7.146,0,11.131127,4.5,4.5,0.820188,0.820188,0.820188,0.820188,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.090972,0.825783,0.820188,0.820188,1.090972,0.825783,0.824872,0.8218,0.820188,0.820188,0.824872,0.8218,0.853565,1.071172,0.820188,0.820188,0.853565,1.071172,0.820188,0.820188,0.820188,0.820188,0.820188,0.820188,,,,,,,1.090972,0.825783,0.824872,0.8218,0.853565,1.071172,0.820188,0.820188,0.820188,0.820188,0.420793,0.341236,0.340963,0.340042,0.349571,0.414853,0.339558,0.339558,0.180168,0.180168,28.56825,37.742549,37.784245,37.925458,36.514094,29.0963,38,38,38,38,,,,,,,,,,,3096,3096,0.820188,0.820188,0.820188,0.820188,0.820188,0.820188,0.820188,0.820188,0.339558,0.339558,38,38,, +11586,0,0.734717,1,1,0,2,7,,4,5,McKean,Rd,1438203,0,0.734,0,15.743933,6.55,4.5,1.763321,1.763321,1.763321,1.763321,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.76462,1.763321,1.763321,1.763321,1.76462,1.763321,1.763321,1.763321,1.763321,1.763321,1.763321,1.763321,1.763323,1.763426,1.763321,1.763321,1.763323,1.763426,1.763321,1.763321,1.763321,1.763321,1.763321,1.763321,,,,,,,1.76462,1.763321,1.763321,1.763321,1.763323,1.763426,1.763321,1.763321,1.763321,1.763321,0.661635,0.661245,0.661245,0.661245,0.661246,0.661277,0.661245,0.661245,0.345317,0.345317,24.981588,24.999986,24.999994,24.999995,24.999963,24.998511,25,25,25,25,,,,,,,,,,,2064,2064,1.763321,1.763321,1.763321,1.763321,1.763321,1.763321,1.763321,1.763321,0.661245,0.661245,25,25,, +26819,0,0.843606,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.077269,0.15,4,3.374424,3.374424,3.374424,3.374424,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,,,,,,,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,1.164176,1.164176,1.164176,1.164176,1.164176,1.164176,1.164176,1.164176,0.59896,0.59896,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,3.374424,1.164176,1.164176,15,15,, +11272,0,0.501791,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,6.125,6.626,0,10.75266,4.5,4.5,0.792301,0.792301,0.792301,0.792301,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.073287,0.800543,0.792301,0.792301,1.073287,0.800543,0.795819,0.793574,0.792301,0.792301,0.795819,0.793574,0.83273,1.001827,0.792301,0.792301,0.83273,1.001827,0.792301,0.792301,0.792301,0.792301,0.792301,0.792301,,,,,,,1.073287,0.800543,0.795819,0.793574,0.83273,1.001827,0.792301,0.792301,0.792301,0.792301,0.412308,0.330485,0.329068,0.328395,0.340141,0.390871,0.328013,0.328013,0.174042,0.174042,28.051635,37.60877,37.832052,37.939036,36.155096,30.052531,38,38,38,38,,,,,,,,,,,3096,3096,0.792301,0.792301,0.792301,0.792301,0.792301,0.792301,0.792301,0.792301,0.328013,0.328013,38,38,, +11571,0,0.502418,1,1,0,2,7,,4,5,Martz,Rd,1438303,2.593,3.095,0,10.766109,6.55,4.5,1.205804,1.205804,1.205804,1.205804,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.206082,1.205901,1.205804,1.205804,1.206082,1.205901,1.205838,1.205825,1.205804,1.205804,1.205838,1.205825,1.205917,1.206845,1.205804,1.205804,1.205917,1.206845,1.205804,1.205804,1.205804,1.205804,1.205804,1.205804,,,,,,,1.206082,1.205901,1.205838,1.205825,1.205917,1.206845,1.205804,1.205804,1.205804,1.205804,0.45226,0.452206,0.452187,0.452183,0.45221,0.452489,0.452177,0.452177,0.236137,0.236137,24.994241,24.997994,24.999294,24.999572,24.997659,24.978431,25,25,25,25,,,,,,,,,,,2064,2064,1.205804,1.205804,1.205804,1.205804,1.205804,1.205804,1.205804,1.205804,0.452177,0.452177,25,25,, +22016,0,0.525676,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,11.275,11.801,0,11.264482,6.55,4.5,2.102703,2.102703,2.102703,2.102703,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.102703,2.102704,2.102703,2.102703,2.102703,2.102704,2.102703,2.102703,2.102703,2.102703,2.102703,2.102703,2.102705,2.102704,2.102703,2.102703,2.102705,2.102704,2.102703,2.102703,2.102703,2.102703,2.102703,2.102703,,,,,,,2.102703,2.102704,2.102703,2.102703,2.102705,2.102704,2.102703,2.102703,2.102703,2.102703,0.725433,0.725433,0.725433,0.725433,0.725433,0.725433,0.725433,0.725433,0.37323,0.37323,15,14.999998,14.999999,15,14.99999,14.999993,15,15,15,15,,,,,,,,,,,2064,2064,2.102703,2.102703,2.102703,2.102703,2.102703,2.102703,2.102703,2.102703,0.725433,0.725433,15,15,, +25709,0,0.869979,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.642399,0.15,4,3.479914,3.479914,3.479914,3.479914,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,,,,,,,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,1.20057,1.20057,1.20057,1.20057,1.20057,1.20057,1.20057,1.20057,0.617685,0.617685,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,3.479914,1.20057,1.20057,15,15,, +11336,0,0.767382,1,1,0,2,7,,4,5,McKean,Rd,1438203,0.734,1.502,0,16.44389,6.55,4.5,1.841716,1.841716,1.841716,1.841716,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.853294,1.843214,1.841716,1.841716,1.853294,1.843214,1.841848,1.841803,1.841716,1.841716,1.841848,1.841803,1.843291,1.845226,1.841716,1.841716,1.843291,1.845226,1.841716,1.841716,1.841716,1.841716,1.841716,1.841716,,,,,,,1.853294,1.843214,1.841848,1.841803,1.843291,1.845226,1.841716,1.841716,1.841716,1.841716,0.694117,0.691093,0.690683,0.690669,0.691116,0.691696,0.690643,0.690643,0.360669,0.360669,24.843809,24.979673,24.998203,24.998821,24.978632,24.952445,25,25,25,25,,,,,,,,,,,2064,2064,1.841716,1.841716,1.841716,1.841716,1.841716,1.841716,1.841716,1.841716,0.690643,0.690643,25,25,, +11351,0,0.238475,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.752,6.99,0,5.11017,4.5,4.5,0.376539,0.376539,0.376539,0.376539,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.464139,0.390234,0.376539,0.376539,0.464139,0.390234,0.383982,0.382799,0.376539,0.376539,0.383982,0.382799,0.387768,0.439771,0.376539,0.376539,0.387768,0.439771,0.376539,0.376539,0.376539,0.376539,0.376539,0.376539,,,,,,,0.464139,0.390234,0.383982,0.382799,0.387768,0.439771,0.376539,0.376539,0.376539,0.376539,0.182167,0.159996,0.15812,0.157765,0.159256,0.174857,0.155887,0.155887,0.082713,0.082713,30.82797,36.666396,37.263354,37.378572,36.899535,32.536198,38,38,38,38,,,,,,,,,,,3096,3096,0.376539,0.376539,0.376539,0.376539,0.376539,0.376539,0.376539,0.376539,0.155887,0.155887,38,38,, +11519,0,0.599035,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,7.146,7.744,0,12.83647,4.5,4.5,0.945845,0.945845,0.945845,0.945845,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.215238,0.953895,0.945845,0.945845,1.215238,0.953895,0.956507,0.950316,0.945845,0.945845,0.956507,0.950316,0.999474,1.184723,0.945845,0.945845,0.999474,1.184723,0.945845,0.945845,0.945845,0.945845,0.945845,0.945845,,,,,,,1.215238,0.953895,0.956507,0.950316,0.999474,1.184723,0.945845,0.945845,0.945845,0.945845,0.472398,0.393995,0.394778,0.392921,0.407668,0.463243,0.39158,0.39158,0.207771,0.207771,29.576188,37.679315,37.576424,37.821234,35.961037,30.337985,38,38,38,38,,,,,,,,,,,3096,3096,0.945845,0.945845,0.945845,0.945845,0.945845,0.945845,0.945845,0.945845,0.39158,0.39158,38,38,, +25711,0,0.749498,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.060667,0.15,4,2.997991,2.997991,2.997991,2.997991,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,,,,,,,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,1.034307,1.034307,1.034307,1.034307,1.034307,1.034307,1.034307,1.034307,0.532143,0.532143,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,2.997991,1.034307,1.034307,15,15,, +30033,0,0.246744,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.287362,0.15,4,0.986974,0.986974,0.986974,0.986974,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,,,,,,,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.340506,0.340506,0.340506,0.340506,0.340506,0.340506,0.340506,0.340506,0.175188,0.175188,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.986974,0.340506,0.340506,15,15,, +11501,0,0.251081,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.501,6.752,0,5.380299,4.5,4.5,0.396443,0.396443,0.396443,0.396443,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.419305,0.400215,0.396443,0.396443,0.419305,0.400215,0.399808,0.39939,0.396443,0.396443,0.399808,0.39939,0.399206,0.41762,0.396443,0.396443,0.399206,0.41762,0.396443,0.396443,0.396443,0.396443,0.396443,0.396443,,,,,,,0.419305,0.400215,0.399808,0.39939,0.399206,0.41762,0.396443,0.396443,0.396443,0.396443,0.170986,0.165259,0.165137,0.165011,0.164956,0.170481,0.164127,0.164127,0.087085,0.087085,35.928102,37.641845,37.680178,37.719638,37.736968,36.073057,38,38,38,38,,,,,,,,,,,3096,3096,0.396443,0.396443,0.396443,0.396443,0.396443,0.396443,0.396443,0.396443,0.164127,0.164127,38,38,, +11041,0,0.253627,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.99,7.244,0,5.434871,4.5,4.5,0.400464,0.400464,0.400464,0.400464,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.493681,0.415135,0.400464,0.400464,0.493681,0.415135,0.408441,0.407215,0.400464,0.400464,0.408441,0.407215,0.412464,0.468122,0.400464,0.400464,0.412464,0.468122,0.400464,0.400464,0.400464,0.400464,0.400464,0.400464,,,,,,,0.493681,0.415135,0.408441,0.407215,0.412464,0.468122,0.400464,0.400464,0.400464,0.400464,0.193757,0.170194,0.168185,0.167817,0.169392,0.186089,0.165792,0.165792,0.087969,0.087969,30.824832,36.657052,37.25791,37.370039,36.894457,32.507866,38,38,38,38,,,,,,,,,,,3096,3096,0.400464,0.400464,0.400464,0.400464,0.400464,0.400464,0.400464,0.400464,0.165792,0.165792,38,38,, +11513,0,0.403538,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,7.744,8.148,0,8.647241,4.5,4.5,0.637165,0.637165,0.637165,0.637165,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.911671,0.655727,0.637165,0.637165,0.911671,0.655727,0.655478,0.646248,0.637165,0.637165,0.655478,0.646248,0.727639,0.92672,0.637165,0.637165,0.727639,0.92672,0.637165,0.637165,0.637165,0.637165,0.637165,0.637165,,,,,,,0.911671,0.655727,0.655478,0.646248,0.727639,0.92672,0.637165,0.637165,0.637165,0.637165,0.346138,0.269355,0.26928,0.266511,0.290929,0.350653,0.263786,0.263786,0.139964,0.139964,26.558116,36.924343,36.938335,37.46594,33.27511,26.126862,38,38,38,38,,,,,,,,,,,3096,3096,0.637165,0.637165,0.637165,0.637165,0.637165,0.637165,0.637165,0.637165,0.263786,0.263786,38,38,, +30865,0,0.50445,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,10.809642,0.15,4,2.0178,2.0178,2.0178,2.0178,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,,,,,,,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,0.696141,0.696141,0.696141,0.696141,0.696141,0.696141,0.696141,0.696141,0.358159,0.358159,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,2.0178,0.696141,0.696141,15,15,, +30871,0,0.561534,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.032871,0.15,4,2.246136,2.246136,2.246136,2.246136,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,,,,,,,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,0.774917,0.774917,0.774917,0.774917,0.774917,0.774917,0.774917,0.774917,0.398689,0.398689,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,2.246136,0.774917,0.774917,15,15,, +18303,0,1.166879,1,1,0,2,5,,4,2,Bemis,Rd,1670503,1.362,2.529,0,25.004541,5.8,4.5,2.593064,2.593064,2.593064,2.593064,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.604421,2.593826,2.593064,2.593064,2.604421,2.593826,2.593637,2.593401,2.593064,2.593064,2.593637,2.593401,2.596755,2.603273,2.593064,2.593064,2.596755,2.603273,2.593064,2.593064,2.593064,2.593064,2.593064,2.593064,,,,,,,2.604421,2.593826,2.593637,2.593401,2.596755,2.603273,2.593064,2.593064,2.593064,2.593064,0.991365,0.988186,0.988129,0.988059,0.989065,0.99102,0.987957,0.987957,0.517316,0.517316,26.882254,26.992066,26.99403,26.996484,26.961617,26.894117,27,27,27,27,,,,,,,,,,,2580,2580,2.593064,2.593064,2.593064,2.593064,2.593064,2.593064,2.593064,2.593064,0.987957,0.987957,27,27,, +19010,0,1.39662,1,1,0,2,4,,4,2,Huron River,Dr,1674810,1.102,2.498,0,29.927565,4.5,4.5,2.205189,2.205189,2.205189,2.205189,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.198819,2.268503,2.205189,2.205189,3.198819,2.268503,2.271192,2.268448,2.205189,2.205189,2.271192,2.268448,2.449101,3.373149,2.205189,2.205189,2.449101,3.373149,2.205189,2.205189,2.205189,2.205189,2.205189,2.205189,,,,,,,3.198819,2.268503,2.271192,2.268448,2.449101,3.373149,2.205189,2.205189,2.205189,2.205189,1.211037,0.931943,0.932749,0.931926,0.986122,1.263336,0.912948,0.912948,0.484407,0.484407,26.196286,36.939411,36.895688,36.940313,34.215488,24.842416,38,38,38,38,,,,,,,,,,,3096,3096,2.205189,2.205189,2.205189,2.205189,2.205189,2.205189,2.205189,2.205189,0.912948,0.912948,38,38,, +31393,0,1.02505,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.965361,0.15,4,4.100201,4.100201,4.100201,4.100201,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,,,,,,,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,1.414569,1.414569,1.414569,1.414569,1.414569,1.414569,1.414569,1.414569,0.727786,0.727786,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,4.100201,1.414569,1.414569,15,15,, +17989,0,0.09141,1,1,0,2,5,,4,2,Bemis,Rd,1670503,1.271,1.362,0,1.958783,5.8,4.5,0.203133,0.203133,0.203133,0.203133,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.203305,0.203155,0.203133,0.203133,0.203305,0.203155,0.203138,0.203139,0.203133,0.203133,0.203138,0.203139,0.203219,0.203446,0.203133,0.203133,0.203219,0.203446,0.203133,0.203133,0.203133,0.203133,0.203133,0.203133,,,,,,,0.203305,0.203155,0.203138,0.203139,0.203219,0.203446,0.203133,0.203133,0.203133,0.203133,0.077445,0.0774,0.077395,0.077396,0.07742,0.077488,0.077394,0.077394,0.040525,0.040525,26.977105,26.997102,26.999358,26.99919,26.988537,26.958478,27,27,27,27,,,,,,,,,,,2580,2580,0.203133,0.203133,0.203133,0.203133,0.203133,0.203133,0.203133,0.203133,0.077394,0.077394,27,27,, +31392,0,1.027648,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.02102,0.15,4,4.11059,4.11059,4.11059,4.11059,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.110592,4.11059,4.11059,4.11059,4.110592,4.11059,4.11059,4.11059,4.11059,4.11059,4.11059,4.11059,4.110591,4.110592,4.11059,4.11059,4.110591,4.110592,4.11059,4.11059,4.11059,4.11059,4.11059,4.11059,,,,,,,4.110592,4.11059,4.11059,4.11059,4.110591,4.110592,4.11059,4.11059,4.11059,4.11059,1.418154,1.418154,1.418154,1.418154,1.418154,1.418154,1.418154,1.418154,0.72963,0.72963,14.999993,15,15,15,15,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,4.11059,4.11059,4.11059,4.11059,4.11059,4.11059,4.11059,4.11059,1.418154,1.418154,15,15,, +31368,0,0.828715,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.758174,0.15,4,3.314859,3.314859,3.314859,3.314859,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,,,,,,,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,1.143626,1.143626,1.143626,1.143626,1.143626,1.143626,1.143626,1.143626,0.588387,0.588387,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,3.314859,1.143626,1.143626,15,15,, +9279,0,1.149649,1,1,0,2,5,,4,6,Stewart,Rd,1229706,0.903,2.052,0,24.635339,5.8,4.5,2.554776,2.554776,2.554776,2.554776,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.631479,2.557231,2.554776,2.554776,2.631479,2.557231,2.556327,2.555873,2.554776,2.554776,2.556327,2.555873,2.55678,2.582906,2.554776,2.554776,2.55678,2.582906,2.554776,2.554776,2.554776,2.554776,2.554776,2.554776,,,,,,,2.631479,2.557231,2.556327,2.555873,2.55678,2.582906,2.554776,2.554776,2.554776,2.554776,0.996381,0.974106,0.973835,0.973699,0.973971,0.981809,0.97337,0.97337,0.509678,0.509678,26.212997,26.974076,26.983621,26.988411,26.978833,26.705949,27,27,27,27,,,,,,,,,,,2580,2580,2.554776,2.554776,2.554776,2.554776,2.554776,2.554776,2.554776,2.554776,0.97337,0.97337,27,27,, +10072,0,2.553498,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,6.845,9.398,0,54.717805,3.7,5,5.106995,5.106995,5.106995,5.106995,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.107004,5.106995,5.106995,5.106995,5.107004,5.106995,5.106995,5.106995,5.106995,5.106995,5.106995,5.106995,5.106996,5.107001,5.106995,5.106995,5.106996,5.107001,5.106995,5.106995,5.106995,5.106995,5.106995,5.106995,,,,,,,5.107004,5.106995,5.106995,5.106995,5.106996,5.107001,5.106995,5.106995,5.106995,5.106995,1.991731,1.991728,1.991728,1.991728,1.991728,1.99173,1.991728,1.991728,1.046934,1.046934,29.999948,29.999999,29.999999,29.999999,29.999994,29.999964,30,30,30,30,,,,,,,,,,,2580,2580,5.106995,5.106995,5.106995,5.106995,5.106995,5.106995,5.106995,5.106995,1.991728,1.991728,30,30,, +10073,0,2.122306,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,4.724,6.845,0,45.477978,3.7,5,4.244611,4.244611,4.244611,4.244611,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.244843,4.244616,4.244611,4.244611,4.244843,4.244616,4.244613,4.244613,4.244611,4.244611,4.244613,4.244613,4.244625,4.244737,4.244611,4.244611,4.244625,4.244737,4.244611,4.244611,4.244611,4.244611,4.244611,4.244611,,,,,,,4.244843,4.244616,4.244613,4.244613,4.244625,4.244737,4.244611,4.244611,4.244611,4.244611,1.655468,1.6554,1.655399,1.655399,1.655402,1.655436,1.655398,1.655398,0.870145,0.870145,29.998364,29.99997,29.99999,29.999991,29.999904,29.99911,30,30,30,30,,,,,,,,,,,2580,2580,4.244611,4.244611,4.244611,4.244611,4.244611,4.244611,4.244611,4.244611,1.655398,1.655398,30,30,, +10093,0,1.559337,1,1,0,2,5,,5,6,Sumpter,Rd,1237801,0,1.559,0,33.414357,3.7,5,3.118673,3.118673,3.118673,3.118673,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.119807,3.119299,3.118673,3.118673,3.119807,3.119299,3.118762,3.118769,3.118673,3.118673,3.118762,3.118769,3.12002,3.121154,3.118673,3.118673,3.12002,3.121154,3.118673,3.118673,3.118673,3.118673,3.118673,3.118673,,,,,,,3.119807,3.119299,3.118762,3.118769,3.12002,3.121154,3.118673,3.118673,3.118673,3.118673,1.216623,1.21647,1.216309,1.216311,1.216687,1.217027,1.216283,1.216283,0.639328,0.639328,29.989098,29.993979,29.999145,29.999079,29.98705,29.976157,30,30,30,30,,,,,,,,,,,2580,2580,3.118673,3.118673,3.118673,3.118673,3.118673,3.118673,3.118673,3.118673,1.216283,1.216283,30,30,, +10171,0,1.584699,1,1,0,2,5,,4,6,Bluebush,Rd,1237610,5.119,6.703,0,33.957834,5.8,4.5,3.521553,3.521553,3.521553,3.521553,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.523114,3.521579,3.521553,3.521553,3.523114,3.521579,3.521798,3.521657,3.521553,3.521553,3.521798,3.521657,3.521914,3.522905,3.521553,3.521553,3.521914,3.522905,3.521553,3.521553,3.521553,3.521553,3.521553,3.521553,,,,,,,3.523114,3.521579,3.521798,3.521657,3.521914,3.522905,3.521553,3.521553,3.521553,3.521553,1.34218,1.341719,1.341785,1.341743,1.34182,1.342117,1.341712,1.341712,0.70255,0.70255,26.988039,26.999803,26.998119,26.999205,26.997233,26.989639,27,27,27,27,,,,,,,,,,,2580,2580,3.521553,3.521553,3.521553,3.521553,3.521553,3.521553,3.521553,3.521553,1.341712,1.341712,27,27,, +10217,0,1.52844,1,1,0,2,6,,5,6,Exeter,Rd,1237509,1.015,2.543,0,32.752286,5.8,6,3.05688,3.05688,3.05688,3.05688,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,3.056883,3.05688,3.05688,3.05688,3.056883,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,,,,,,,3.05688,3.05688,3.05688,3.05688,3.05688,3.056883,3.05688,3.05688,3.05688,3.05688,1.192183,1.192183,1.192183,1.192183,1.192183,1.192184,1.192183,1.192183,0.62666,0.62666,29.999997,30,30,30,29.999998,29.999974,30,30,30,30,,,,,,,,,,,2236,2236,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,3.05688,1.192183,1.192183,30,30,, +10244,0,1.433235,1,1,0,2,5,,5,6,Grafton,Rd,1236709,1.7,3.133,0,30.71218,3.7,5,2.86647,2.86647,2.86647,2.86647,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.870801,2.867136,2.86647,2.86647,2.870801,2.867136,2.866534,2.866528,2.86647,2.86647,2.866534,2.866528,2.867262,2.870384,2.86647,2.86647,2.867262,2.870384,2.86647,2.86647,2.86647,2.86647,2.86647,2.86647,,,,,,,2.870801,2.867136,2.866534,2.866528,2.867262,2.870384,2.86647,2.86647,2.86647,2.86647,1.119223,1.118123,1.117943,1.117941,1.118161,1.119098,1.117923,1.117923,0.587626,0.587626,29.95474,29.99303,29.999331,29.999392,29.991718,29.959089,30,30,30,30,,,,,,,,,,,2580,2580,2.86647,2.86647,2.86647,2.86647,2.86647,2.86647,2.86647,2.86647,1.117923,1.117923,30,30,, +20131,0,0.458617,1,1,0,2,5,,5,6,Carleton West,Rd,4301573,0.75,1.208,0,9.827501,3.7,5,0.917233,0.917233,0.917233,0.917233,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,,,,,,,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.357721,0.357721,0.357721,0.357721,0.357721,0.357721,0.357721,0.357721,0.188033,0.188033,30,29.999999,30,30,30,29.999999,30,30,30,30,,,,,,,,,,,2580,2580,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.917233,0.357721,0.357721,30,30,, +30858,0,2.756589,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,59.069763,0.15,4,11.026356,11.026356,11.026356,11.026356,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,,,,,,,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,3.804093,3.804093,3.804093,3.804093,3.804093,3.804093,3.804093,3.804093,1.957178,1.957178,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,11.026356,3.804093,3.804093,15,15,, +31040,0,1.454765,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,31.173537,0.15,4,5.81906,5.81906,5.81906,5.81906,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,,,,,,,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,2.007576,2.007576,2.007576,2.007576,2.007576,2.007576,2.007576,2.007576,1.032883,1.032883,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,5.81906,2.007576,2.007576,15,15,, +31278,0,1.472189,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,31.546911,0.15,4,5.888757,5.888757,5.888757,5.888757,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,,,,,,,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,2.031621,2.031621,2.031621,2.031621,2.031621,2.031621,2.031621,2.031621,1.045254,1.045254,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,5.888757,2.031621,2.031621,15,15,, +31399,0,0.852627,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,18.270579,0.15,4,3.410508,3.410508,3.410508,3.410508,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,,,,,,,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,1.176625,1.176625,1.176625,1.176625,1.176625,1.176625,1.176625,1.176625,0.605365,0.605365,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,3.410508,1.176625,1.176625,15,15,, +8731,0,0.733508,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,2.244,2.977,0,15.718036,3.7,5,1.467017,1.467017,1.467017,1.467017,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.467017,1.46702,1.467017,1.467017,1.467017,1.46702,1.467017,1.467017,1.467017,1.467017,1.467017,1.467017,1.467032,1.467019,1.467017,1.467017,1.467032,1.467019,1.467017,1.467017,1.467017,1.467017,1.467017,1.467017,,,,,,,1.467017,1.46702,1.467017,1.467017,1.467032,1.467019,1.467017,1.467017,1.467017,1.467017,0.572137,0.572137,0.572137,0.572137,0.572141,0.572137,0.572137,0.572137,0.300738,0.300738,29.999999,29.999935,29.999998,29.999999,29.999696,29.999954,30,30,30,30,,,,,,,,,,,2580,2580,1.467017,1.467017,1.467017,1.467017,1.467017,1.467017,1.467017,1.467017,0.572137,0.572137,30,30,, +10172,0,2.427037,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,2.693,5.119,0,52.007936,3.7,5,4.854074,4.854074,4.854074,4.854074,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.857317,4.854115,4.854074,4.854074,4.857317,4.854115,4.854283,4.854202,4.854074,4.854074,4.854283,4.854202,4.855066,4.859139,4.854074,4.854074,4.855066,4.859139,4.854074,4.854074,4.854074,4.854074,4.854074,4.854074,,,,,,,4.857317,4.854115,4.854283,4.854202,4.855066,4.859139,4.854074,4.854074,4.854074,4.854074,1.894062,1.893101,1.893151,1.893127,1.893387,1.894609,1.893089,1.893089,0.995085,0.995085,29.979969,29.99975,29.998711,29.999206,29.993869,29.968726,30,30,30,30,,,,,,,,,,,2580,2580,4.854074,4.854074,4.854074,4.854074,4.854074,4.854074,4.854074,4.854074,1.893089,1.893089,30,30,, +10173,0,0.321317,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,2.371,2.693,0,6.885357,3.7,5,0.642633,0.642633,0.642633,0.642633,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.643666,0.643083,0.642633,0.642633,0.643666,0.643083,0.642737,0.642727,0.642633,0.642633,0.642737,0.642727,0.644289,0.644789,0.642633,0.642633,0.644289,0.644789,0.642633,0.642633,0.642633,0.642633,0.642633,0.642633,,,,,,,0.643666,0.643083,0.642737,0.642727,0.644289,0.644789,0.642633,0.642633,0.642633,0.642633,0.250937,0.250762,0.250658,0.250655,0.251124,0.251274,0.250627,0.250627,0.13174,0.13174,29.951862,29.97902,29.995145,29.995646,29.922923,29.899702,30,30,30,30,,,,,,,,,,,2580,2580,0.642633,0.642633,0.642633,0.642633,0.642633,0.642633,0.642633,0.642633,0.250627,0.250627,30,30,, +8565,0,0.563439,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,1.681,2.244,0,12.073694,3.7,5,1.126878,1.126878,1.126878,1.126878,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.126878,1.126881,1.126878,1.126878,1.126878,1.126881,1.126878,1.126878,1.126878,1.126878,1.126878,1.126878,1.12689,1.12688,1.126878,1.126878,1.12689,1.12688,1.126878,1.126878,1.126878,1.126878,1.126878,1.126878,,,,,,,1.126878,1.126881,1.126878,1.126878,1.12689,1.12688,1.126878,1.126878,1.126878,1.126878,0.439482,0.439483,0.439482,0.439482,0.439486,0.439483,0.439482,0.439482,0.23101,0.23101,29.999999,29.999935,29.999998,29.999999,29.999696,29.999954,30,30,30,30,,,,,,,,,,,2580,2580,1.126878,1.126878,1.126878,1.126878,1.126878,1.126878,1.126878,1.126878,0.439482,0.439482,30,30,, +9280,0,0.903248,1,1,0,2,5,,4,6,Stewart,Rd,1229706,0,0.903,0,19.355309,5.8,4.5,2.007217,2.007217,2.007217,2.007217,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.011476,2.007321,2.007217,2.007217,2.011476,2.007321,2.007663,2.007628,2.007217,2.007217,2.007663,2.007628,2.00843,2.012065,2.007217,2.007217,2.00843,2.012065,2.007217,2.007217,2.007217,2.007217,2.007217,2.007217,,,,,,,2.011476,2.007321,2.007663,2.007628,2.00843,2.012065,2.007217,2.007217,2.007217,2.007217,0.766027,0.764781,0.764883,0.764873,0.765114,0.766204,0.76475,0.76475,0.40044,0.40044,26.942841,26.998603,26.99401,26.994481,26.983691,26.934953,27,27,27,27,,,,,,,,,,,2580,2580,2.007217,2.007217,2.007217,2.007217,2.007217,2.007217,2.007217,2.007217,0.76475,0.76475,27,27,, +8737,0,0.156941,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,1.524,1.681,0,3.363025,3.7,5,0.313882,0.313882,0.313882,0.313882,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.31402,0.313893,0.313882,0.313882,0.31402,0.313893,0.313898,0.313894,0.313882,0.313882,0.313898,0.313894,0.314009,0.314128,0.313882,0.313882,0.314009,0.314128,0.313882,0.313882,0.313882,0.313882,0.313882,0.313882,,,,,,,0.31402,0.313893,0.313898,0.313894,0.314009,0.314128,0.313882,0.313882,0.313882,0.313882,0.122455,0.122417,0.122419,0.122418,0.122452,0.122488,0.122414,0.122414,0.064346,0.064346,29.986892,29.998979,29.998492,29.998895,29.987853,29.976557,30,30,30,30,,,,,,,,,,,2580,2580,0.313882,0.313882,0.313882,0.313882,0.313882,0.313882,0.313882,0.313882,0.122414,0.122414,30,30,, +10068,0,1.32505,1,1,0,2,5,,5,6,Sumpter,Rd,1237809,0.778,2.103,0,28.393926,3.7,5,2.6501,2.6501,2.6501,2.6501,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.650185,2.65789,2.6501,2.6501,2.650185,2.65789,2.650154,2.650215,2.6501,2.6501,2.650154,2.650215,2.657694,2.650921,2.6501,2.6501,2.657694,2.650921,2.6501,2.6501,2.6501,2.6501,2.6501,2.6501,,,,,,,2.650185,2.65789,2.650154,2.650215,2.657694,2.650921,2.6501,2.6501,2.6501,2.6501,1.033564,1.035876,1.033555,1.033574,1.035817,1.033785,1.033539,1.033539,0.54327,0.54327,29.999035,29.912074,29.999391,29.998693,29.914281,29.990708,30,30,30,30,,,,,,,,,,,2580,2580,2.6501,2.6501,2.6501,2.6501,2.6501,2.6501,2.6501,2.6501,1.033539,1.033539,30,30,, +10074,0,1.05987,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,3.664,4.724,0,22.71151,3.7,5,2.119741,2.119741,2.119741,2.119741,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.119765,2.119741,2.119741,2.119741,2.119765,2.119741,2.119741,2.119741,2.119741,2.119741,2.119741,2.119741,2.119742,2.11975,2.119741,2.119741,2.119742,2.11975,2.119741,2.119741,2.119741,2.119741,2.119741,2.119741,,,,,,,2.119765,2.119741,2.119741,2.119741,2.119742,2.11975,2.119741,2.119741,2.119741,2.119741,0.826706,0.826699,0.826699,0.826699,0.826699,0.826702,0.826699,0.826699,0.434547,0.434547,29.999659,29.999994,30,30,29.999991,29.999866,30,30,30,30,,,,,,,,,,,2580,2580,2.119741,2.119741,2.119741,2.119741,2.119741,2.119741,2.119741,2.119741,0.826699,0.826699,30,30,, +31386,0,2.263195,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,48.497031,0.15,4,9.052779,9.052779,9.052779,9.052779,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,,,,,,,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,3.123209,3.123209,3.123209,3.123209,3.123209,3.123209,3.123209,3.123209,1.606868,1.606868,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,9.052779,3.123209,3.123209,15,15,, +10067,0,0.178501,1,1,0,2,5,,5,6,Sumpter,Rd,1237809,2.103,2.281,0,3.825018,3.7,5,0.357002,0.357002,0.357002,0.357002,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.357023,0.36001,0.357002,0.357002,0.357023,0.36001,0.357014,0.357027,0.357002,0.357002,0.357014,0.357027,0.359387,0.357213,0.357002,0.357002,0.359387,0.357213,0.357002,0.357002,0.357002,0.357002,0.357002,0.357002,,,,,,,0.357023,0.36001,0.357014,0.357027,0.359387,0.357213,0.357002,0.357002,0.357002,0.357002,0.139237,0.140133,0.139234,0.139238,0.139946,0.139294,0.139231,0.139231,0.073185,0.073185,29.998189,29.749351,29.998927,29.997883,29.800897,29.982265,30,30,30,30,,,,,,,,,,,2580,2580,0.357002,0.357002,0.357002,0.357002,0.357002,0.357002,0.357002,0.357002,0.139231,0.139231,30,30,, +10075,0,0.22904,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,3.435,3.664,0,4.908005,3.7,5,0.458081,0.458081,0.458081,0.458081,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,,,,,,,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.178651,0.178651,0.178651,0.178651,0.178651,0.178651,0.178651,0.178651,0.093907,0.093907,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.458081,0.178651,0.178651,30,30,, +10091,0,0.904053,1,1,0,2,5,,5,6,Sumpter,Rd,1237801,1.559,2.463,0,19.37256,3.7,5,1.808106,1.808106,1.808106,1.808106,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.84126,1.808568,1.808106,1.808106,1.84126,1.808568,1.808368,1.80827,1.808106,1.808106,1.808368,1.80827,1.810537,1.831199,1.808106,1.808106,1.810537,1.831199,1.808106,1.808106,1.808106,1.808106,1.808106,1.808106,,,,,,,1.84126,1.808568,1.808368,1.80827,1.810537,1.831199,1.808106,1.808106,1.808106,1.808106,0.715107,0.7053,0.70524,0.70521,0.705891,0.712089,0.705161,0.705161,0.370662,0.370662,29.459815,29.992324,29.995655,29.997274,29.959716,29.621665,30,30,30,30,,,,,,,,,,,2580,2580,1.808106,1.808106,1.808106,1.808106,1.808106,1.808106,1.808106,1.808106,0.705161,0.705161,30,30,, +31391,0,0.129109,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,2.766622,0.15,4,0.516436,0.516436,0.516436,0.516436,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,,,,,,,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.17817,0.17817,0.17817,0.17817,0.17817,0.17817,0.17817,0.17817,0.091667,0.091667,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.516436,0.17817,0.17817,15,15,, +10065,0,0.190691,1,1,0,2,5,,5,6,Scofield,Rd,1238109,2.314,2.504,0,4.08623,3.7,5,0.381381,0.381381,0.381381,0.381381,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.383935,0.381397,0.381381,0.381381,0.383935,0.381397,0.381429,0.381409,0.381381,0.381381,0.381429,0.381409,0.381545,0.383014,0.381381,0.381381,0.381545,0.383014,0.381381,0.381381,0.381381,0.381381,0.381381,0.381381,,,,,,,0.383935,0.381397,0.381429,0.381409,0.381545,0.383014,0.381381,0.381381,0.381381,0.381381,0.149505,0.148743,0.148753,0.148747,0.148788,0.149229,0.148739,0.148739,0.078183,0.078183,29.800455,29.998787,29.996282,29.997842,29.987153,29.87209,30,30,30,30,,,,,,,,,,,2580,2580,0.381381,0.381381,0.381381,0.381381,0.381381,0.381381,0.381381,0.381381,0.148739,0.148739,30,30,, +10089,0,0.147301,1,1,0,2,5,,5,6,Sumpter,Rd,1237801,2.463,2.61,0,3.156445,3.7,5,0.294602,0.294602,0.294602,0.294602,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,,,,,,,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.114895,0.114895,0.114895,0.114895,0.114895,0.114895,0.114895,0.114895,0.060393,0.060393,29.999966,29.999992,30,30,29.999997,29.99999,30,30,30,30,,,,,,,,,,,2580,2580,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.294602,0.114895,0.114895,30,30,, +10253,0,0.939187,1,1,0,2,5,,5,6,Sumpter,Rd,1236306,0.035,0.974,0,20.12543,3.7,5,1.878374,1.878374,1.878374,1.878374,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.883895,1.878434,1.878374,1.878374,1.883895,1.878434,1.878455,1.878412,1.878374,1.878374,1.878455,1.878412,1.878956,1.883756,1.878374,1.878374,1.878956,1.883756,1.878374,1.878374,1.878374,1.878374,1.878374,1.878374,,,,,,,1.883895,1.878434,1.878455,1.878412,1.878956,1.883756,1.878374,1.878374,1.878374,1.878374,0.734222,0.732584,0.73259,0.732577,0.73274,0.73418,0.732566,0.732566,0.385067,0.385067,29.912074,29.999035,29.998693,29.999391,29.990708,29.914281,30,30,30,30,,,,,,,,,,,2580,2580,1.878374,1.878374,1.878374,1.878374,1.878374,1.878374,1.878374,1.878374,0.732566,0.732566,30,30,, +30861,0,0.495245,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.612403,0.15,4,1.980982,1.980982,1.980982,1.980982,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,,,,,,,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,0.683439,0.683439,0.683439,0.683439,0.683439,0.683439,0.683439,0.683439,0.351624,0.351624,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,1.980982,0.683439,0.683439,15,15,, +19883,0,0.04714,1,1,0,2,5,,5,6,Sumpter,Rd,4300018,0,0.047,0,1.010153,3.7,5,0.094281,0.094281,0.094281,0.094281,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.094284,0.094558,0.094281,0.094281,0.094284,0.094558,0.094283,0.094285,0.094281,0.094281,0.094283,0.094285,0.094551,0.09431,0.094281,0.094281,0.094551,0.09431,0.094281,0.094281,0.094281,0.094281,0.094281,0.094281,,,,,,,0.094284,0.094558,0.094283,0.094285,0.094551,0.09431,0.094281,0.094281,0.094281,0.094281,0.03677,0.036853,0.03677,0.036771,0.036851,0.036778,0.03677,0.03677,0.019328,0.019328,29.999035,29.912074,29.999391,29.998693,29.914281,29.990708,30,30,30,30,,,,,,,,,,,2580,2580,0.094281,0.094281,0.094281,0.094281,0.094281,0.094281,0.094281,0.094281,0.03677,0.03677,30,30,, +20877,0,0.061666,1,1,0,2,5,,5,6,Carleton West,Rd,4301813,0,0.062,0,1.321418,3.7,5,0.123332,0.123332,0.123332,0.123332,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,,,,,,,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.0481,0.0481,0.0481,0.0481,0.0481,0.0481,0.0481,0.0481,0.025283,0.025283,29.999999,30,30,30,29.999999,30,30,30,30,30,,,,,,,,,,,2580,2580,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.123332,0.0481,0.0481,30,30,, +8862,0,1.551403,1,1,0,2,7,,5,6,Heiss,Rd,1226505,0.541,2.092,0,33.244341,5.8,6,3.723366,3.723366,3.723366,3.723366,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.723521,3.72352,3.723366,3.723366,3.723521,3.72352,3.723411,3.723394,3.723366,3.723366,3.723411,3.723394,3.7249,3.723787,3.723366,3.723366,3.7249,3.723787,3.723366,3.723366,3.723366,3.723366,3.723366,3.723366,,,,,,,3.723521,3.72352,3.723411,3.723394,3.7249,3.723787,3.723366,3.723366,3.723366,3.723366,1.396309,1.396308,1.396276,1.396271,1.396722,1.396389,1.396262,1.396262,0.729159,0.729159,24.99896,24.99897,24.9997,24.99981,24.989708,24.997173,25,25,25,25,,,,,,,,,,,2064,2064,3.723366,3.723366,3.723366,3.723366,3.723366,3.723366,3.723366,3.723366,1.396262,1.396262,25,25,, +9278,0,1.467143,1,1,0,2,6,,5,6,Reinhardt,Rd,1229707,0,1.467,0,31.438772,5.8,6,2.934285,2.934285,2.934285,2.934285,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.939669,2.935198,2.934285,2.934285,2.939669,2.935198,2.935148,2.935323,2.934285,2.934285,2.935148,2.935323,2.939129,2.950701,2.934285,2.934285,2.939129,2.950701,2.934285,2.934285,2.934285,2.934285,2.934285,2.934285,,,,,,,2.939669,2.935198,2.935148,2.935323,2.939129,2.950701,2.934285,2.934285,2.934285,2.934285,1.145986,1.144645,1.14463,1.144682,1.145824,1.149296,1.144371,1.144371,0.601529,0.601529,29.945058,29.990677,29.991183,29.989399,29.950563,29.833097,30,30,30,30,,,,,,,,,,,2236,2236,2.934285,2.934285,2.934285,2.934285,2.934285,2.934285,2.934285,2.934285,1.144371,1.144371,30,30,, +9378,0,1.097875,2,2,0,2,4,,5,6,Monroe,St,1227004,18.382,19.48,0,23.525903,3,4,1.646813,1.646813,1.646813,1.646813,40,40,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,1.652841,1.649683,1.646813,1.646813,1.652841,1.649683,1.647194,1.647496,1.646813,1.646813,1.647194,1.647496,1.652096,1.667765,1.646813,1.646813,1.652096,1.667765,1.646813,1.646813,1.646813,1.646813,1.646813,1.646813,,,,,,,1.652841,1.649683,1.647194,1.647496,1.652096,1.667765,1.646813,1.646813,1.646813,1.646813,0.69347,0.692523,0.691776,0.691866,0.693246,0.697947,0.691662,0.691662,0.367788,0.367788,39.854127,39.930405,39.990758,39.983433,39.872092,39.497481,40,40,40,40,,,,,,,,,,,6192,6192,1.646813,1.646813,1.646813,1.646813,1.646813,1.646813,1.646813,1.646813,0.691662,0.691662,40,40,, +20128,0,0.264431,2,2,1,2,3,,4,6,Telegraph,Rd,4300001,17.245,17.51,0,5.66637,3.7,5,0.396646,0.396646,0.396646,0.396646,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.401508,0.397837,0.396646,0.396646,0.401508,0.397837,0.396895,0.396849,0.396646,0.396646,0.396895,0.396849,0.399032,0.402668,0.396646,0.396646,0.399032,0.402668,0.396646,0.396646,0.396646,0.396646,0.396646,0.396646,,,,,,,0.401508,0.397837,0.396895,0.396849,0.399032,0.402668,0.396646,0.396646,0.396646,0.396646,0.16805,0.166949,0.166666,0.166652,0.167307,0.168398,0.166591,0.166591,0.088584,0.088584,39.515658,39.880208,39.974923,39.979508,39.760765,39.401758,40,40,40,40,,,,,,,,,,,7946,7946,0.396646,0.396646,0.396646,0.396646,0.396646,0.396646,0.396646,0.396646,0.166591,0.166591,40,40,, +20710,0,0.662019,1,1,0,2,5,,3,6,Mall,Rd,4302559,0.923,1.585,0,14.186131,8,4.5,1.588847,1.588847,1.588847,1.588847,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.589302,1.588856,1.588847,1.588847,1.589302,1.588856,1.588854,1.588859,1.588847,1.588847,1.588854,1.588859,1.58887,1.58891,1.588847,1.588847,1.58887,1.58891,1.588847,1.588847,1.588847,1.588847,1.588847,1.588847,,,,,,,1.589302,1.588856,1.588854,1.588859,1.58887,1.58891,1.588847,1.588847,1.588847,1.588847,0.595954,0.59582,0.59582,0.595821,0.595825,0.595837,0.595817,0.595817,0.311149,0.311149,24.992838,24.999855,24.999885,24.999798,24.999632,24.998997,25,25,25,25,,,,,,,,,,,2408,2408,1.588847,1.588847,1.588847,1.588847,1.588847,1.588847,1.588847,1.588847,0.595817,0.595817,25,25,, +20823,0,0.641241,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,18.768,19.41,0,13.740869,1.7,4,0.769489,0.769489,0.769489,0.769489,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.028015,0.88563,0.769489,0.769489,1.028015,0.88563,0.800787,0.800877,0.769489,0.769489,0.800787,0.800877,0.967159,1.138468,0.769489,0.769489,0.967159,1.138468,0.769489,0.769489,0.769489,0.769489,0.769489,0.769489,,,,,,,1.028015,0.88563,0.800787,0.800877,0.967159,1.138468,0.769489,0.769489,0.769489,0.769489,0.423828,0.381112,0.355659,0.355686,0.405571,0.456964,0.34627,0.34627,0.18596,0.18596,37.425932,43.442997,48.045793,48.040401,39.780856,33.794924,50,50,50,50,,,,,,,,,,,3096,3096,0.769489,0.769489,0.769489,0.769489,0.769489,0.769489,0.769489,0.769489,0.34627,0.34627,50,50,, +31394,0,1.014047,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.729582,0.15,4,4.056189,4.056189,4.056189,4.056189,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,,,,,,,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,1.399385,1.399385,1.399385,1.399385,1.399385,1.399385,1.399385,1.399385,0.719973,0.719973,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,4.056189,1.399385,1.399385,15,15,, +31396,0,1.157834,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.810727,0.15,4,4.631336,4.631336,4.631336,4.631336,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,,,,,,,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,1.597811,1.597811,1.597811,1.597811,1.597811,1.597811,1.597811,1.597811,0.822062,0.822062,14.999999,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,4.631336,1.597811,1.597811,15,15,, +10162,0,0.949002,1,1,0,2,5,,4,6,Stewart,Rd,1237610,7.351,8.3,0,20.335748,5.8,4.5,2.108892,2.108892,2.108892,2.108892,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.868188,2.517405,2.108892,2.108892,2.868188,2.517405,2.610948,2.642207,2.108892,2.108892,2.610948,2.642207,3.082645,3.678957,2.108892,2.108892,3.082645,3.678957,2.108892,2.108892,2.108892,2.108892,2.108892,2.108892,,,,,,,2.868188,2.517405,2.610948,2.642207,3.082645,3.678957,2.108892,2.108892,2.108892,2.108892,1.031277,0.926042,0.954105,0.963482,1.095614,1.274507,0.803488,0.803488,0.420724,0.420724,19.852291,22.618569,21.808206,21.550198,18.471179,15.477239,27,27,27,27,,,,,,,,,,,2580,2580,2.108892,2.108892,2.108892,2.108892,2.108892,2.108892,2.108892,2.108892,0.803488,0.803488,27,27,, +10164,0,0.487948,1,1,0,2,5,,4,6,Bluebush,Rd,1237610,6.863,7.351,0,10.456023,5.8,4.5,1.084328,1.084328,1.084328,1.084328,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.108679,1.172741,1.084328,1.084328,1.108679,1.172741,1.204669,1.227448,1.084328,1.084328,1.204669,1.227448,1.398204,1.289168,1.084328,1.084328,1.398204,1.289168,1.084328,1.084328,1.084328,1.084328,1.084328,1.084328,,,,,,,1.108679,1.172741,1.204669,1.227448,1.398204,1.289168,1.084328,1.084328,1.084328,1.084328,0.420434,0.439653,0.449231,0.456065,0.507292,0.474581,0.413129,0.413129,0.216324,0.216324,26.406982,24.964469,24.302839,23.851826,20.938905,22.709899,27,27,27,27,,,,,,,,,,,2580,2580,1.084328,1.084328,1.084328,1.084328,1.084328,1.084328,1.084328,1.084328,0.413129,0.413129,27,27,, +10166,0,0.160275,1,1,0,2,5,,4,6,Bluebush,Rd,1237610,6.703,6.863,0,3.434474,5.8,4.5,0.356168,0.356168,0.356168,0.356168,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.39178,0.409797,0.356168,0.356168,0.39178,0.409797,0.472943,0.49592,0.356168,0.356168,0.472943,0.49592,0.661743,0.669516,0.356168,0.356168,0.661743,0.669516,0.356168,0.356168,0.356168,0.356168,0.356168,0.356168,,,,,,,0.39178,0.409797,0.472943,0.49592,0.661743,0.669516,0.356168,0.356168,0.356168,0.356168,0.146384,0.151789,0.170733,0.177625,0.227372,0.229704,0.1357,0.1357,0.071055,0.071055,24.545731,23.466547,20.333366,19.391301,14.53212,14.363412,27,27,27,27,,,,,,,,,,,2580,2580,0.356168,0.356168,0.356168,0.356168,0.356168,0.356168,0.356168,0.356168,0.1357,0.1357,27,27,, +31398,0,0.100078,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.144538,0.15,4,0.400314,0.400314,0.400314,0.400314,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,,,,,,,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.138108,0.138108,0.138108,0.138108,0.138108,0.138108,0.138108,0.138108,0.071056,0.071056,14.999999,14.999997,14.999995,14.999993,14.999985,14.999987,15,15,15,15,,,,,,,,,,,34400,34400,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.400314,0.138108,0.138108,15,15,, +20330,0,0.544694,2,2,1,2,3,,4,6,Telegraph,Rd,4300001,16.701,17.245,0,11.672022,3.7,5,0.817042,0.817042,0.817042,0.817042,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.832587,0.819989,0.817042,0.817042,0.832587,0.819989,0.817671,0.817582,0.817042,0.817042,0.817671,0.817582,0.822745,0.831936,0.817042,0.817042,0.822745,0.831936,0.817042,0.817042,0.817042,0.817042,0.817042,0.817042,,,,,,,0.832587,0.819989,0.817671,0.817582,0.822745,0.831936,0.817042,0.817042,0.817042,0.817042,0.347821,0.344042,0.343346,0.34332,0.344868,0.347626,0.343157,0.343157,0.182473,0.182473,39.253171,39.856206,39.969196,39.973572,39.722721,39.283864,40,40,40,40,,,,,,,,,,,7946,7946,0.817042,0.817042,0.817042,0.817042,0.817042,0.817042,0.817042,0.817042,0.343157,0.343157,40,40,, +19888,0,0.220703,1,1,0,2,5,,4,6,Mall,Rd,4302559,0.703,0.923,0,4.729358,5.8,4.5,0.490452,0.490452,0.490452,0.490452,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.490582,0.490455,0.490452,0.490452,0.490582,0.490455,0.490458,0.49046,0.490452,0.490452,0.490458,0.49046,0.490474,0.490497,0.490452,0.490452,0.490474,0.490497,0.490452,0.490452,0.490452,0.490452,0.490452,0.490452,,,,,,,0.490582,0.490455,0.490458,0.49046,0.490474,0.490497,0.490452,0.490452,0.490452,0.490452,0.186901,0.186863,0.186864,0.186865,0.186869,0.186876,0.186862,0.186862,0.097845,0.097845,26.992845,26.999851,26.999677,26.999541,26.998772,26.997506,27,27,27,27,,,,,,,,,,,2580,2580,0.490452,0.490452,0.490452,0.490452,0.490452,0.490452,0.490452,0.490452,0.186862,0.186862,27,27,, +9275,0,0.534937,1,1,0,2,6,,5,6,Toben,Rd,1229801,0.04,0.575,0,11.462939,5.8,6,1.069874,1.069874,1.069874,1.069874,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,1.069875,1.069874,1.069874,1.069874,1.069875,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,,,,,,,1.069874,1.069874,1.069874,1.069874,1.069875,1.069874,1.069874,1.069874,1.069874,1.069874,0.417251,0.417251,0.417251,0.417251,0.417251,0.417251,0.417251,0.417251,0.219324,0.219324,30,29.999997,30,30,29.999974,29.999998,30,30,30,30,,,,,,,,,,,2236,2236,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,1.069874,0.417251,0.417251,30,30,, +9276,0,1.023984,1,1,0,2,6,,5,6,Reinhardt,Rd,1229707,1.717,2.741,0,21.942511,5.8,6,2.047968,2.047968,2.047968,2.047968,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,2.047969,2.047968,2.047968,2.047968,2.047969,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,,,,,,,2.047968,2.047968,2.047968,2.047968,2.047968,2.047969,2.047968,2.047968,2.047968,2.047968,0.798707,0.798707,0.798707,0.798707,0.798707,0.798708,0.798707,0.798707,0.419833,0.419833,29.999997,30,30,30,29.999998,29.999974,30,30,30,30,,,,,,,,,,,2236,2236,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,2.047968,0.798707,0.798707,30,30,, +20243,0,0.058454,1,1,0,2,6,,5,6,Toben,Rd,4302192,0,0.058,0,1.252587,5.8,6,0.116908,0.116908,0.116908,0.116908,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,,,,,,,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.045594,0.045594,0.045594,0.045594,0.045594,0.045594,0.045594,0.045594,0.023966,0.023966,30,29.999997,30,30,29.999974,29.999998,30,30,30,30,,,,,,,,,,,2236,2236,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.116908,0.045594,0.045594,30,30,, +9277,0,0.25051,1,1,0,2,6,,5,6,Reinhardt,Rd,1229707,1.467,1.717,0,5.368069,5.8,6,0.50102,0.50102,0.50102,0.50102,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.501036,0.50102,0.50102,0.50102,0.501036,0.50102,0.501022,0.501022,0.50102,0.50102,0.501022,0.501022,0.501024,0.501032,0.50102,0.50102,0.501024,0.501032,0.50102,0.50102,0.50102,0.50102,0.50102,0.50102,,,,,,,0.501036,0.50102,0.501022,0.501022,0.501024,0.501032,0.50102,0.50102,0.50102,0.50102,0.195403,0.195398,0.195398,0.195398,0.195399,0.195401,0.195398,0.195398,0.102709,0.102709,29.999033,29.999986,29.999865,29.999878,29.999767,29.999288,30,30,30,30,,,,,,,,,,,2236,2236,0.50102,0.50102,0.50102,0.50102,0.50102,0.50102,0.50102,0.50102,0.195398,0.195398,30,30,, +31395,0,0.526042,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.272333,0.15,4,2.104169,2.104169,2.104169,2.104169,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,,,,,,,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,0.725938,0.725938,0.725938,0.725938,0.725938,0.725938,0.725938,0.725938,0.37349,0.37349,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,2.104169,0.725938,0.725938,15,15,, +9083,0,0.54154,1,1,0,2,7,,5,6,Heiss,Rd,1226505,0,0.541,0,11.604424,5.8,6,1.299695,1.299695,1.299695,1.299695,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.311553,1.37181,1.299695,1.299695,1.311553,1.37181,1.301905,1.303081,1.299695,1.299695,1.301905,1.303081,1.409548,1.328742,1.299695,1.299695,1.409548,1.328742,1.299695,1.299695,1.299695,1.299695,1.299695,1.299695,,,,,,,1.311553,1.37181,1.301905,1.303081,1.409548,1.328742,1.299695,1.299695,1.299695,1.299695,0.490943,0.50902,0.488049,0.488401,0.520342,0.4961,0.487386,0.487386,0.254524,0.254524,24.773972,23.685787,24.957576,24.93505,23.051634,24.45349,25,25,25,25,,,,,,,,,,,2064,2064,1.299695,1.299695,1.299695,1.299695,1.299695,1.299695,1.299695,1.299695,0.487386,0.487386,25,25,, +9381,0,0.869955,2,2,0,2,4,,4,6,Monroe,St,1227004,17.116,17.986,0,18.641902,4.5,4.5,1.373614,1.373614,1.373614,1.373614,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,1.395541,1.379966,1.373614,1.373614,1.395541,1.379966,1.375228,1.376462,1.373614,1.373614,1.375228,1.376462,1.387119,1.409971,1.373614,1.373614,1.387119,1.409971,1.373614,1.373614,1.373614,1.373614,1.373614,1.373614,,,,,,,1.395541,1.379966,1.375228,1.376462,1.387119,1.409971,1.373614,1.373614,1.373614,1.373614,0.575254,0.570582,0.56916,0.56953,0.572728,0.579583,0.568676,0.568676,0.301737,0.301737,37.402927,37.825079,37.95541,37.921379,37.630029,37.020139,38,38,38,38,,,,,,,,,,,6192,6192,1.373614,1.373614,1.373614,1.373614,1.373614,1.373614,1.373614,1.373614,0.568676,0.568676,38,38,, +20380,0,0.449968,1,1,0,2,5,,4,6,Hurd,Rd,4301449,0,0.45,0,9.642167,5.8,4.5,0.999928,0.999928,0.999928,0.999928,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.002125,1.000403,0.999928,0.999928,1.002125,1.000403,1.000588,1.000998,0.999928,0.999928,1.000588,1.000998,1.00186,1.003763,0.999928,0.999928,1.00186,1.003763,0.999928,0.999928,0.999928,0.999928,0.999928,0.999928,,,,,,,1.002125,1.000403,1.000588,1.000998,1.00186,1.003763,0.999928,0.999928,0.999928,0.999928,0.381632,0.381115,0.381171,0.381294,0.381552,0.382123,0.380973,0.380973,0.199486,0.199486,26.940821,26.987192,26.982196,26.971136,26.947942,26.896865,27,27,27,27,,,,,,,,,,,2580,2580,0.999928,0.999928,0.999928,0.999928,0.999928,0.999928,0.999928,0.999928,0.380973,0.380973,27,27,, +20178,0,0.484055,1,1,0,2,5,,4,6,Hurd,Rd,4301449,0.45,0.934,0,10.372607,5.8,4.5,1.075678,1.075678,1.075678,1.075678,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,,,,,,,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,0.409833,0.409833,0.409833,0.409833,0.409833,0.409833,0.409833,0.409833,0.214598,0.214598,26.999999,27,27,27,27,26.999997,27,27,27,27,,,,,,,,,,,2580,2580,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,1.075678,0.409833,0.409833,27,27,, +31279,0,0.145419,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.116113,0.15,4,0.581675,0.581675,0.581675,0.581675,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,,,,,,,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.200678,0.200678,0.200678,0.200678,0.200678,0.200678,0.200678,0.200678,0.103247,0.103247,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.581675,0.200678,0.200678,15,15,, +31280,0,0.415155,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,8.89618,0.15,4,1.66062,1.66062,1.66062,1.66062,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,,,,,,,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,0.572914,0.572914,0.572914,0.572914,0.572914,0.572914,0.572914,0.572914,0.29476,0.29476,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,1.66062,0.572914,0.572914,15,15,, +19887,0,0.04392,1,1,0,2,5,,4,6,Vivian,Rd,4301667,0.712,0.756,0,0.941152,5.8,4.5,0.097601,0.097601,0.097601,0.097601,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.09761,0.097601,0.097601,0.097601,0.09761,0.097601,0.097602,0.097602,0.097601,0.097601,0.097602,0.097602,0.097602,0.097722,0.097601,0.097601,0.097602,0.097722,0.097601,0.097601,0.097601,0.097601,0.097601,0.097601,,,,,,,0.09761,0.097601,0.097602,0.097602,0.097602,0.097722,0.097601,0.097601,0.097601,0.097601,0.037189,0.037186,0.037186,0.037186,0.037186,0.037222,0.037186,0.037186,0.019471,0.019471,26.997593,26.99995,26.999797,26.999816,26.999622,26.966688,27,27,27,27,,,,,,,,,,,2580,2580,0.097601,0.097601,0.097601,0.097601,0.097601,0.097601,0.097601,0.097601,0.037186,0.037186,27,27,, +9379,0,0.083594,2,2,0,2,4,,4,6,Monroe,St,1227004,18.299,18.382,0,1.791296,4.5,4.5,0.13199,0.13199,0.13199,0.13199,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.141123,0.134944,0.13199,0.13199,0.141123,0.134944,0.132606,0.132728,0.13199,0.13199,0.132606,0.132728,0.137484,0.146382,0.13199,0.13199,0.137484,0.146382,0.13199,0.13199,0.13199,0.13199,0.13199,0.13199,,,,,,,0.141123,0.134944,0.132606,0.132728,0.137484,0.146382,0.13199,0.13199,0.13199,0.13199,0.057384,0.05553,0.054829,0.054865,0.056292,0.058961,0.054644,0.054644,0.028994,0.028994,35.540861,37.168134,37.823502,37.788777,36.481562,34.264033,38,38,38,38,,,,,,,,,,,6192,6192,0.13199,0.13199,0.13199,0.13199,0.13199,0.13199,0.13199,0.13199,0.054644,0.054644,38,38,, +9380,0,0.313244,1,1,0,2,4,,4,6,Monroe,St,1227004,17.986,18.299,0,6.712367,4.5,4.5,0.494595,0.494595,0.494595,0.494595,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.618638,0.544921,0.494595,0.494595,0.618638,0.544921,0.50135,0.505417,0.494595,0.494595,0.50135,0.505417,0.594232,0.725656,0.494595,0.494595,0.594232,0.725656,0.494595,0.494595,0.494595,0.494595,0.494595,0.494595,,,,,,,0.618638,0.544921,0.50135,0.505417,0.594232,0.725656,0.494595,0.494595,0.494595,0.494595,0.241975,0.21986,0.206789,0.208009,0.234654,0.274081,0.204763,0.204763,0.108646,0.108646,30.380656,34.490567,37.48807,37.186403,31.628424,25.900201,38,38,38,38,,,,,,,,,,,3096,3096,0.494595,0.494595,0.494595,0.494595,0.494595,0.494595,0.494595,0.494595,0.204763,0.204763,38,38,, +9304,0,0.643709,1,1,0,2,5,,5,6,Newport,Rd,1228304,0.412,1.056,0,13.793755,3.7,5,1.287417,1.287417,1.287417,1.287417,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.287418,1.28743,1.287417,1.287417,1.287418,1.28743,1.287417,1.287417,1.287417,1.287417,1.287417,1.287417,1.287427,1.287418,1.287417,1.287417,1.287427,1.287418,1.287417,1.287417,1.287417,1.287417,1.287417,1.287417,,,,,,,1.287418,1.28743,1.287417,1.287417,1.287427,1.287418,1.287417,1.287417,1.287417,1.287417,0.502093,0.502096,0.502093,0.502093,0.502095,0.502093,0.502093,0.502093,0.263921,0.263921,29.99997,29.999712,29.999998,29.999999,29.999782,29.999974,30,30,30,30,,,,,,,,,,,2580,2580,1.287417,1.287417,1.287417,1.287417,1.287417,1.287417,1.287417,1.287417,0.502093,0.502093,30,30,, +10071,0,1.238377,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,9.398,10.636,0,26.536655,3.7,5,2.476754,2.476754,2.476754,2.476754,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.476759,2.476755,2.476754,2.476754,2.476759,2.476755,2.476754,2.476754,2.476754,2.476754,2.476754,2.476754,2.476755,2.476757,2.476754,2.476754,2.476755,2.476757,2.476754,2.476754,2.476754,2.476754,2.476754,2.476754,,,,,,,2.476759,2.476755,2.476754,2.476754,2.476755,2.476757,2.476754,2.476754,2.476754,2.476754,0.965936,0.965934,0.965934,0.965934,0.965934,0.965935,0.965934,0.965934,0.507735,0.507735,29.999948,29.999999,29.999999,29.999999,29.999994,29.999964,30,30,30,30,,,,,,,,,,,2580,2580,2.476754,2.476754,2.476754,2.476754,2.476754,2.476754,2.476754,2.476754,0.965934,0.965934,30,30,, +10245,0,1.700369,1,1,0,2,5,,5,6,Grafton,Rd,1236709,0,1.7,0,36.436473,3.7,5,3.400738,3.400738,3.400738,3.400738,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.401274,3.400839,3.400738,3.400738,3.401274,3.400839,3.400754,3.400748,3.400738,3.400738,3.400754,3.400748,3.400879,3.401273,3.400738,3.400738,3.400879,3.401273,3.400738,3.400738,3.400738,3.400738,3.400738,3.400738,,,,,,,3.401274,3.400839,3.400754,3.400748,3.400879,3.401273,3.400738,3.400738,3.400738,3.400738,1.326449,1.326318,1.326292,1.326291,1.32633,1.326448,1.326288,1.326288,0.697151,0.697151,29.995268,29.999103,29.999857,29.999905,29.99875,29.995275,30,30,30,30,,,,,,,,,,,2580,2580,3.400738,3.400738,3.400738,3.400738,3.400738,3.400738,3.400738,3.400738,1.326288,1.326288,30,30,, +20176,0,0.325176,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,19.847,20.172,0,6.96806,1.7,4,0.390211,0.390211,0.390211,0.390211,50,50,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.444304,0.395513,0.390211,0.390211,0.444304,0.395513,0.391303,0.391662,0.390211,0.390211,0.391303,0.391662,0.397377,0.442983,0.390211,0.390211,0.397377,0.442983,0.390211,0.390211,0.390211,0.390211,0.390211,0.390211,,,,,,,0.444304,0.395513,0.391303,0.391662,0.397377,0.442983,0.390211,0.390211,0.390211,0.390211,0.191823,0.177186,0.175922,0.17603,0.177745,0.191427,0.175595,0.175595,0.094301,0.094301,43.912642,49.329729,49.860555,49.814786,49.098364,44.043566,50,50,50,50,,,,,,,,,,,6192,6192,0.390211,0.390211,0.390211,0.390211,0.390211,0.390211,0.390211,0.390211,0.175595,0.175595,50,50,, +20583,0,0.384919,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,19.41,19.794,0,8.24827,1.7,4,0.461903,0.461903,0.461903,0.461903,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.774347,0.527533,0.461903,0.461903,0.774347,0.527533,0.477633,0.478061,0.461903,0.461903,0.477633,0.478061,0.578703,0.758083,0.461903,0.461903,0.578703,0.758083,0.461903,0.461903,0.461903,0.461903,0.461903,0.461903,,,,,,,0.774347,0.527533,0.477633,0.478061,0.578703,0.758083,0.461903,0.461903,0.461903,0.461903,0.301589,0.227545,0.212575,0.212704,0.242896,0.29671,0.207856,0.207856,0.111627,0.111627,29.825348,43.779583,48.353355,48.310069,39.908483,30.465203,50,50,50,50,,,,,,,,,,,3096,3096,0.461903,0.461903,0.461903,0.461903,0.461903,0.461903,0.461903,0.461903,0.207856,0.207856,50,50,, +20378,0,0.052517,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,19.794,19.847,0,1.125371,1.7,4,0.063021,0.063021,0.063021,0.063021,50,50,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.07176,0.064025,0.063021,0.063021,0.07176,0.064025,0.063224,0.06329,0.063021,0.063021,0.063224,0.06329,0.064381,0.071994,0.063021,0.063021,0.064381,0.071994,0.063021,0.063021,0.063021,0.063021,0.063021,0.063021,,,,,,,0.07176,0.064025,0.063224,0.06329,0.064381,0.071994,0.063021,0.063021,0.063021,0.063021,0.030981,0.028661,0.02842,0.02844,0.028767,0.031051,0.028359,0.028359,0.01523,0.01523,43.910879,49.215591,49.839155,49.786975,48.943921,43.768071,50,50,50,50,,,,,,,,,,,6192,6192,0.063021,0.063021,0.063021,0.063021,0.063021,0.063021,0.063021,0.063021,0.028359,0.028359,50,50,, +10207,0,1.50703,1,1,0,2,6,,5,6,Exeter,Rd,1237509,3.067,4.573,0,32.293493,5.8,6,3.014059,3.014059,3.014059,3.014059,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,,,,,,,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,1.175483,1.175483,1.175483,1.175483,1.175483,1.175483,1.175483,1.175483,0.617882,0.617882,30,29.999998,30,30,29.999999,30,30,30,30,30,,,,,,,,,,,2236,2236,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,3.014059,1.175483,1.175483,30,30,, +10231,0,0.488819,1,1,0,2,5,,4,6,Monroe,St,1236805,0,0.489,0,10.474683,5.8,4.5,1.086263,1.086263,1.086263,1.086263,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.086264,1.086264,1.086263,1.086263,1.086264,1.086264,1.086264,1.086264,1.086263,1.086263,1.086264,1.086264,1.086264,1.086268,1.086263,1.086263,1.086264,1.086268,1.086263,1.086263,1.086263,1.086263,1.086263,1.086263,,,,,,,1.086264,1.086264,1.086264,1.086264,1.086264,1.086268,1.086263,1.086263,1.086263,1.086263,0.413867,0.413867,0.413866,0.413866,0.413867,0.413868,0.413866,0.413866,0.21671,0.21671,26.999984,26.999985,26.999995,26.999997,26.999981,26.999893,27,27,27,27,,,,,,,,,,,2580,2580,1.086263,1.086263,1.086263,1.086263,1.086263,1.086263,1.086263,1.086263,0.413866,0.413866,27,27,, +10241,0,1.983711,1,1,0,2,5,,5,6,Grafton,Rd,1236709,3.133,5.116,0,42.508096,3.7,5,3.967422,3.967422,3.967422,3.967422,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.968627,3.968232,3.967422,3.967422,3.968627,3.968232,3.967498,3.967434,3.967422,3.967422,3.967498,3.967434,3.968814,3.967703,3.967422,3.967422,3.968814,3.967703,3.967422,3.967422,3.967422,3.967422,3.967422,3.967422,,,,,,,3.968627,3.968232,3.967498,3.967434,3.968814,3.967703,3.967422,3.967422,3.967422,3.967422,1.547656,1.547538,1.547317,1.547298,1.547712,1.547379,1.547295,1.547295,0.813322,0.813322,29.990894,29.993877,29.999427,29.999914,29.989478,29.99788,30,30,30,30,,,,,,,,,,,2580,2580,3.967422,3.967422,3.967422,3.967422,3.967422,3.967422,3.967422,3.967422,1.547295,1.547295,30,30,, +31397,0,1.033366,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,22.143567,0.15,4,4.133466,4.133466,4.133466,4.133466,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,,,,,,,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,1.426046,1.426046,1.426046,1.426046,1.426046,1.426046,1.426046,1.426046,0.73369,0.73369,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,4.133466,1.426046,1.426046,15,15,, +10208,0,0.523449,1,1,0,2,6,,5,6,Exeter,Rd,1237509,2.543,3.067,0,11.216768,5.8,6,1.046898,1.046898,1.046898,1.046898,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.046901,1.046898,1.046898,1.046898,1.046901,1.046898,1.046898,1.046898,1.046898,1.046898,1.046898,1.046898,1.046898,1.046902,1.046898,1.046898,1.046898,1.046902,1.046898,1.046898,1.046898,1.046898,1.046898,1.046898,,,,,,,1.046901,1.046898,1.046898,1.046898,1.046898,1.046902,1.046898,1.046898,1.046898,1.046898,0.408291,0.40829,0.40829,0.40829,0.40829,0.408291,0.40829,0.40829,0.214614,0.214614,29.999927,30,30,30,29.999999,29.999891,30,30,30,30,,,,,,,,,,,2236,2236,1.046898,1.046898,1.046898,1.046898,1.046898,1.046898,1.046898,1.046898,0.40829,0.40829,30,30,, +31352,0,1.03552,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,22.189721,0.15,4,4.142081,4.142081,4.142081,4.142081,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,,,,,,,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,1.429018,1.429018,1.429018,1.429018,1.429018,1.429018,1.429018,1.429018,0.735219,0.735219,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,4.142081,1.429018,1.429018,15,15,, +10187,0,0.479739,1,1,0,2,5,,5,6,Carleton West,Rd,1237607,0.039,0.519,0,10.280121,3.7,5,0.959478,0.959478,0.959478,0.959478,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,,,,,,,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.374196,0.374196,0.374196,0.374196,0.374196,0.374197,0.374196,0.374196,0.196693,0.196693,29.999998,29.999998,29.999999,30,29.999998,29.999984,30,30,30,30,,,,,,,,,,,2580,2580,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.959478,0.374196,0.374196,30,30,, +10205,0,0.874393,1,1,0,2,6,,5,6,Exeter,Rd,1237509,4.573,5.447,0,18.736985,5.8,6,1.748785,1.748785,1.748785,1.748785,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,,,,,,,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,0.682026,0.682026,0.682026,0.682026,0.682026,0.682026,0.682026,0.682026,0.358501,0.358501,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,1.748785,0.682026,0.682026,30,30,, +10193,0,0.039035,1,1,0,2,6,,5,6,Exeter/Carleton West Cutoff,,1237607,0,0.039,0,0.836466,5.8,6,0.07807,0.07807,0.07807,0.07807,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,,,,,,,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.030447,0.030447,0.030447,0.030447,0.030447,0.030447,0.030447,0.030447,0.016004,0.016004,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.07807,0.030447,0.030447,30,30,, +10195,0,0.04786,1,1,0,2,5,,5,6,Exeter,Rd,1237509,5.487,5.535,0,1.025568,3.7,5,0.09572,0.09572,0.09572,0.09572,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,,,,,,,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.037331,0.037331,0.037331,0.037331,0.037331,0.037331,0.037331,0.037331,0.019623,0.019623,29.999999,30,30,30,29.999999,30,30,30,30,30,,,,,,,,,,,2580,2580,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.09572,0.037331,0.037331,30,30,, +20424,0,0.058165,1,1,0,2,5,,5,6,Carleton West,Rd,4301857,0,0.058,0,1.246384,3.7,5,0.116329,0.116329,0.116329,0.116329,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,,,,,,,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.045368,0.045368,0.045368,0.045368,0.045368,0.045368,0.045368,0.045368,0.023847,0.023847,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.116329,0.045368,0.045368,30,30,, +10200,0,0.040172,1,1,0,2,6,,5,6,Exeter,Rd,1237509,5.447,5.487,0,0.860828,5.8,6,0.080344,0.080344,0.080344,0.080344,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,,,,,,,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.031334,0.031334,0.031334,0.031334,0.031334,0.031334,0.031334,0.031334,0.016471,0.016471,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2236,2236,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.080344,0.031334,0.031334,30,30,, +20332,0,0.057179,1,1,0,2,5,,5,6,Carleton West,Rd,4300287,0,0.057,0,1.225274,3.7,5,0.114359,0.114359,0.114359,0.114359,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,,,,,,,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.0446,0.0446,0.0446,0.0446,0.0446,0.0446,0.0446,0.0446,0.023444,0.023444,30,29.999999,30,30,30,29.999999,30,30,30,30,,,,,,,,,,,2580,2580,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.114359,0.0446,0.0446,30,30,, +9957,0,0.454342,1,1,0,2,5,,5,6,Carleton West,Rd,1240603,0.038,0.492,0,9.735904,3.7,5,0.908684,0.908684,0.908684,0.908684,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,0.908685,0.908684,0.908684,0.908684,0.908685,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,,,,,,,0.908684,0.908684,0.908684,0.908684,0.908684,0.908685,0.908684,0.908684,0.908684,0.908684,0.354387,0.354387,0.354387,0.354387,0.354387,0.354387,0.354387,0.354387,0.18628,0.18628,29.999998,29.999998,29.999999,30,29.999998,29.999984,30,30,30,30,,,,,,,,,,,2580,2580,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,0.908684,0.354387,0.354387,30,30,, +10220,0,0.157344,1,1,0,2,5,,5,6,Burns,Rd,1237210,2.629,2.786,0,3.371657,3.7,5,0.314688,0.314688,0.314688,0.314688,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,,,,,,,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.122728,0.122728,0.122728,0.122728,0.122728,0.122728,0.122728,0.122728,0.064511,0.064511,29.999998,29.999998,30,29.999999,29.999984,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.314688,0.122728,0.122728,30,30,, +20182,0,0.066705,1,1,0,2,5,,5,6,Carleton West,Rd,4301807,0,0.067,0,1.429403,3.7,5,0.133411,0.133411,0.133411,0.133411,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,,,,,,,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.05203,0.05203,0.05203,0.05203,0.05203,0.05203,0.05203,0.05203,0.027349,0.027349,29.999998,29.999998,30,29.999999,29.999984,29.999998,30,30,30,30,,,,,,,,,,,2580,2580,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.133411,0.05203,0.05203,30,30,, +20642,0,0.065415,1,1,0,2,5,,5,6,Carleton West,Rd,4301814,0,0.065,0,1.401759,3.7,5,0.130831,0.130831,0.130831,0.130831,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,,,,,,,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.051024,0.051024,0.051024,0.051024,0.051024,0.051024,0.051024,0.051024,0.02682,0.02682,29.999998,29.999998,29.999999,30,29.999998,29.999984,30,30,30,30,,,,,,,,,,,2580,2580,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.130831,0.051024,0.051024,30,30,, +10218,0,0.1039,1,1,0,2,5,,4,6,Maxwell,Rd,1237301,3.125,3.229,0,2.226418,5.8,4.5,0.230888,0.230888,0.230888,0.230888,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,0.230889,0.230888,0.230888,0.230888,0.230889,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,,,,,,,0.230888,0.230888,0.230888,0.230888,0.230889,0.230888,0.230888,0.230888,0.230888,0.230888,0.087968,0.087968,0.087968,0.087968,0.087969,0.087968,0.087968,0.087968,0.046062,0.046062,26.999985,26.999984,26.999997,26.999995,26.999893,26.999981,27,27,27,27,,,,,,,,,,,2580,2580,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,0.230888,0.087968,0.087968,27,27,, +31041,0,0.692752,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,14.844683,0.15,4,2.771008,2.771008,2.771008,2.771008,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,,,,,,,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,0.955998,0.955998,0.955998,0.955998,0.955998,0.955998,0.955998,0.955998,0.491854,0.491854,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,2.771008,0.955998,0.955998,15,15,, +8694,0,0.853444,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,0,0.853,0,18.288075,3.7,5,1.706887,1.706887,1.706887,1.706887,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.028423,1.712461,1.706887,1.706887,2.028423,1.712461,1.709545,1.71156,1.706887,1.706887,1.709545,1.71156,1.762844,1.921592,1.706887,1.706887,1.762844,1.921592,1.706887,1.706887,1.706887,1.706887,1.706887,1.706887,,,,,,,2.028423,1.712461,1.709545,1.71156,1.762844,1.921592,1.706887,1.706887,1.706887,1.706887,0.762147,0.667358,0.666483,0.667088,0.682473,0.730098,0.665686,0.665686,0.349912,0.349912,25.244539,29.902344,29.95336,29.918099,29.047721,26.64801,30,30,30,30,,,,,,,,,,,2580,2580,1.706887,1.706887,1.706887,1.706887,1.706887,1.706887,1.706887,1.706887,0.665686,0.665686,30,30,, +10237,0,0.200911,1,1,0,2,5,,4,6,Grafton,Rd,1236709,5.116,5.316,0,4.305241,5.8,4.5,0.446469,0.446469,0.446469,0.446469,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.446683,0.44648,0.446469,0.446469,0.446683,0.44648,0.446473,0.446472,0.446469,0.446469,0.446473,0.446472,0.446501,0.446536,0.446469,0.446469,0.446501,0.446536,0.446469,0.446469,0.446469,0.446469,0.446469,0.446469,,,,,,,0.446683,0.44648,0.446473,0.446472,0.446501,0.446536,0.446469,0.446469,0.446469,0.446469,0.170169,0.170108,0.170106,0.170106,0.170114,0.170125,0.170105,0.170105,0.089071,0.089071,26.987117,26.999357,26.999787,26.999866,26.998108,26.995979,27,27,27,27,,,,,,,,,,,2580,2580,0.446469,0.446469,0.446469,0.446469,0.446469,0.446469,0.446469,0.446469,0.170105,0.170105,27,27,, +31402,0,0.146815,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.146032,0.15,4,0.587259,0.587259,0.587259,0.587259,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,,,,,,,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.202604,0.202604,0.202604,0.202604,0.202604,0.202604,0.202604,0.202604,0.104239,0.104239,14.999997,15,15,15,14.999999,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.587259,0.202604,0.202604,15,15,, +31403,0,0.503337,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.785802,0.15,4,2.01335,2.01335,2.01335,2.01335,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,,,,,,,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,0.694606,0.694606,0.694606,0.694606,0.694606,0.694606,0.694606,0.694606,0.35737,0.35737,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,2.01335,0.694606,0.694606,15,15,, +10230,0,0.509936,1,1,0,2,5,,4,6,Monroe,St,1236805,0.489,0.998,0,10.927196,5.8,4.5,1.133191,1.133191,1.133191,1.133191,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.277732,1.135217,1.133191,1.133191,1.277732,1.135217,1.145644,1.137505,1.133191,1.133191,1.145644,1.137505,1.159018,1.263746,1.133191,1.133191,1.159018,1.263746,1.133191,1.133191,1.133191,1.133191,1.133191,1.133191,,,,,,,1.277732,1.135217,1.145644,1.137505,1.159018,1.263746,1.133191,1.133191,1.133191,1.133191,0.475108,0.432354,0.435482,0.43304,0.439494,0.470912,0.431746,0.431746,0.226072,0.226072,23.945663,26.951799,26.706494,26.897596,26.398348,24.210672,27,27,27,27,,,,,,,,,,,2580,2580,1.133191,1.133191,1.133191,1.133191,1.133191,1.133191,1.133191,1.133191,0.431746,0.431746,27,27,, +10233,0,0.693707,1,1,0,2,5,,5,6,Grafton,Rd,1236709,5.544,6.238,0,14.865141,3.7,5,1.387413,1.387413,1.387413,1.387413,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.387524,1.387465,1.387413,1.387413,1.387524,1.387465,1.387717,1.387417,1.387413,1.387413,1.387717,1.387417,1.387493,1.387608,1.387413,1.387413,1.387493,1.387608,1.387413,1.387413,1.387413,1.387413,1.387413,1.387413,,,,,,,1.387524,1.387465,1.387717,1.387417,1.387493,1.387608,1.387413,1.387413,1.387413,1.387413,0.541124,0.541107,0.541182,0.541092,0.541115,0.54115,0.541091,0.541091,0.28442,0.28442,29.997613,29.998869,29.993431,29.99991,29.998278,29.995786,30,30,30,30,,,,,,,,,,,2580,2580,1.387413,1.387413,1.387413,1.387413,1.387413,1.387413,1.387413,1.387413,0.541091,0.541091,30,30,, +31285,0,0.654762,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,14.030606,0.15,4,2.619046,2.619046,2.619046,2.619046,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.619047,2.619046,2.619046,2.619046,2.619047,2.619046,2.619046,2.619046,2.619046,2.619046,2.619046,2.619046,2.619046,2.619047,2.619046,2.619046,2.619046,2.619047,2.619046,2.619046,2.619046,2.619046,2.619046,2.619046,,,,,,,2.619047,2.619046,2.619046,2.619046,2.619046,2.619047,2.619046,2.619046,2.619046,2.619046,0.903571,0.903571,0.903571,0.903571,0.903571,0.903571,0.903571,0.903571,0.464881,0.464881,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.619046,2.619046,2.619046,2.619046,2.619046,2.619046,2.619046,2.619046,0.903571,0.903571,15,15,, +10235,0,0.227806,1,1,0,2,5,,4,6,Grafton,Rd,1236709,5.316,5.544,0,4.881551,5.8,4.5,0.506235,0.506235,0.506235,0.506235,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.703133,0.509883,0.506235,0.506235,0.703133,0.509883,0.518402,0.510873,0.506235,0.506235,0.518402,0.510873,0.539409,0.648807,0.506235,0.506235,0.539409,0.648807,0.506235,0.506235,0.506235,0.506235,0.506235,0.506235,,,,,,,0.703133,0.509883,0.518402,0.510873,0.539409,0.648807,0.506235,0.506235,0.506235,0.506235,0.251945,0.19397,0.196526,0.194267,0.202828,0.235647,0.192876,0.192876,0.100994,0.100994,19.439198,26.806806,26.366309,26.754901,25.33946,21.066872,27,27,27,27,,,,,,,,,,,2580,2580,0.506235,0.506235,0.506235,0.506235,0.506235,0.506235,0.506235,0.506235,0.192876,0.192876,27,27,, +9294,1,0.433182,1,0,0,1,1,ROF,5,6,S I 275/Carleton Rockwood,RAMP,1228307,0,0.433,0,,2.24,5,0.649773,,0.649773,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.649785,,0.649773,,0.649785,,0.649778,,0.649773,,0.649778,,0.650139,,0.649773,,0.650139,,0.649773,,0.649773,,0.649773,,,,,,,,0.649785,,0.649778,,0.650139,,0.649773,,0.649773,,0.272908,,0.272906,,0.273014,,0.272904,,0.145116,,39.99924,,39.999639,,39.977479,,40,,40,,,,,,,,,,,,5160,,0.649773,,0.649773,,0.649773,,0.649773,,0.272904,,40,,, +16439,1,0.308959,1,0,0,1,1,RON,5,2,South Huron/N I 275,RAMP,1607305,0.055,0.364,0,,1.09,4,0.411946,,0.411946,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.414036,,0.411946,,0.414036,,0.412019,,0.411946,,0.412019,,0.412127,,0.411946,,0.412127,,0.411946,,0.411946,,0.411946,,,,,,,,0.414036,,0.412019,,0.412127,,0.411946,,0.411946,,0.179823,,0.179218,,0.179251,,0.179196,,0.095777,,44.772789,,44.991969,,44.980132,,45,,45,,,,,,,,,,,,5160,,0.411946,,0.411946,,0.411946,,0.411946,,0.179196,,45,,, +16793,1,0.662656,3,0,0,1,1,,5,2,N I 275,,1607208,2.654,3.317,0,,1.02,7,0.567991,,0.567991,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.570061,,0.567991,,0.570061,,0.567995,,0.567991,,0.567995,,0.568011,,0.567991,,0.568011,,0.567991,,0.567991,,0.567991,,,,,,,,0.570061,,0.567995,,0.568011,,0.567991,,0.567991,,0.290296,,0.289676,,0.289681,,0.289675,,0.158091,,69.745791,,69.999546,,69.997562,,70,,70,,,,,,,,,,,,22704,,0.567991,,0.567991,,0.567991,,0.567991,,0.289675,,70,,, +16905,-1,0.361591,0,3,0,1,1,,5,2,S I 275,,1607610,2.995,3.356,0,,1.02,7,,0.309935,,0.309935,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.309938,,0.309935,,0.309938,,0.309936,,0.309935,,0.309936,,0.310305,,0.309935,,0.310305,,0.309935,,0.309935,,0.309935,,,,,,,,0.309938,,0.309936,,0.310305,,0.309935,,0.309935,,0.158068,,0.158067,,0.158178,,0.158067,,0.086265,,69.999343,,69.999797,,69.916632,,70,,70,,,,,,,,,,,,22704,,0.309935,,0.309935,,0.309935,,0.309935,,0.158067,,70,, +17008,1,0.387833,1,0,0,1,1,ROF,5,2,S I 275/W South Huron,RAMP,1607704,0,0.388,0,,2.24,5,0.58175,,0.58175,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.581759,,0.58175,,0.581759,,0.581762,,0.58175,,0.581762,,0.582239,,0.58175,,0.582239,,0.58175,,0.58175,,0.58175,,,,,,,,0.581759,,0.581762,,0.582239,,0.58175,,0.58175,,0.244338,,0.244339,,0.244482,,0.244335,,0.129924,,39.999397,,39.999153,,39.966417,,40,,40,,,,,,,,,,,,5160,,0.58175,,0.58175,,0.58175,,0.58175,,0.244335,,40,,, +17555,0,1.00022,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,3.032,4.032,0,21.433282,3,4,1.50033,1.50033,1.50033,1.50033,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.629769,1.504676,1.50033,1.50033,1.629769,1.504676,1.503417,1.502101,1.50033,1.50033,1.503417,1.502101,1.514741,1.569117,1.50033,1.50033,1.514741,1.569117,1.50033,1.50033,1.50033,1.50033,1.50033,1.50033,,,,,,,1.629769,1.504676,1.503417,1.502101,1.514741,1.569117,1.50033,1.50033,1.50033,1.50033,0.66897,0.631442,0.631065,0.63067,0.634462,0.650775,0.630138,0.630138,0.335074,0.335074,36.823128,39.884471,39.917854,39.952827,39.619436,38.246465,40,40,40,40,,,,,,,,,,,3096,3096,1.50033,1.50033,1.50033,1.50033,1.50033,1.50033,1.50033,1.50033,0.630138,0.630138,40,40,, +17670,0,0.806735,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670605,0.703,1.51,0,17.287174,5.55,5,2.420204,2.420204,2.420204,2.420204,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.421822,2.42021,2.420204,2.420204,2.421822,2.42021,2.420284,2.420232,2.420204,2.420204,2.420284,2.420232,2.4203,2.422152,2.420204,2.420204,2.4203,2.422152,2.420204,2.420204,2.420204,2.420204,2.420204,2.420204,,,,,,,2.421822,2.42021,2.420284,2.420232,2.4203,2.422152,2.420204,2.420204,2.420204,2.420204,0.871759,0.871275,0.871298,0.871282,0.871302,0.871858,0.871274,0.871274,0.451771,0.451771,19.986643,19.999957,19.99934,19.999769,19.999213,19.983915,20,20,20,20,,,,,,,,,,,2236,2236,2.420204,2.420204,2.420204,2.420204,2.420204,2.420204,2.420204,2.420204,0.871274,0.871274,20,20,, +17911,0,0.342709,1,1,0,2,4,,5,2,Waltz,Rd,1673810,3.087,3.43,0,7.343766,3,4,0.514064,0.514064,0.514064,0.514064,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.515696,0.514653,0.514064,0.514064,0.515696,0.514653,0.514194,0.51418,0.514064,0.514064,0.514194,0.51418,0.515399,0.517116,0.514064,0.514064,0.515399,0.517116,0.514064,0.514064,0.514064,0.514064,0.514064,0.514064,,,,,,,0.515696,0.514653,0.514194,0.51418,0.515399,0.517116,0.514064,0.514064,0.514064,0.514064,0.216396,0.216083,0.215946,0.215942,0.216307,0.216822,0.215907,0.215907,0.114808,0.114808,39.873399,39.954221,39.98987,39.990963,39.896342,39.763927,40,40,40,40,,,,,,,,,,,3096,3096,0.514064,0.514064,0.514064,0.514064,0.514064,0.514064,0.514064,0.514064,0.215907,0.215907,40,40,, +18083,0,0.804465,1,1,0,2,5,,5,2,Harris,Rd,1670501,3.779,4.583,0,17.238538,3.7,5,1.60893,1.60893,1.60893,1.60893,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.792335,1.611887,1.60893,1.60893,1.792335,1.611887,1.613088,1.610989,1.60893,1.60893,1.613088,1.610989,1.628198,1.753913,1.60893,1.60893,1.628198,1.753913,1.60893,1.60893,1.60893,1.60893,1.60893,1.60893,,,,,,,1.792335,1.611887,1.613088,1.610989,1.628198,1.753913,1.60893,1.60893,1.60893,1.60893,0.682504,0.62837,0.62873,0.6281,0.633263,0.670978,0.627483,0.627483,0.329831,0.329831,26.930179,29.944973,29.922678,29.96166,29.644978,27.520119,30,30,30,30,,,,,,,,,,,2580,2580,1.60893,1.60893,1.60893,1.60893,1.60893,1.60893,1.60893,1.60893,0.627483,0.627483,30,30,, +18093,0,0.988461,1,1,0,2,5,,5,2,Judd,Rd,1670408,5.128,6.116,0,21.181318,3.7,5,1.976923,1.976923,1.976923,1.976923,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.988082,1.976924,1.976923,1.976923,1.988082,1.976924,1.97695,1.976932,1.976923,1.976923,1.97695,1.976932,1.97696,1.982579,1.976923,1.976923,1.97696,1.982579,1.976923,1.976923,1.976923,1.976923,1.976923,1.976923,,,,,,,1.988082,1.976924,1.97695,1.976932,1.97696,1.982579,1.976923,1.976923,1.976923,1.976923,0.774348,0.771,0.771008,0.771003,0.771011,0.772697,0.771,0.771,0.405269,0.405269,29.831612,29.999978,29.999597,29.999868,29.999443,29.914421,30,30,30,30,,,,,,,,,,,2580,2580,1.976923,1.976923,1.976923,1.976923,1.976923,1.976923,1.976923,1.976923,0.771,0.771,30,30,, +18693,0,0.712095,1,1,0,2,4,,5,2,Savage,Rd,1670810,1.307,2.019,0,15.259173,3,4,1.068142,1.068142,1.068142,1.068142,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.103442,1.084362,1.068142,1.068142,1.103442,1.084362,1.073006,1.071101,1.068142,1.068142,1.073006,1.071101,1.112489,1.103926,1.068142,1.068142,1.112489,1.103926,1.068142,1.068142,1.068142,1.068142,1.068142,1.068142,,,,,,,1.103442,1.084362,1.073006,1.071101,1.112489,1.103926,1.068142,1.068142,1.068142,1.068142,0.45921,0.453486,0.450079,0.449507,0.461924,0.459355,0.44862,0.44862,0.238552,0.238552,38.720384,39.401667,39.818697,39.889511,38.405482,38.703398,40,40,40,40,,,,,,,,,,,3096,3096,1.068142,1.068142,1.068142,1.068142,1.068142,1.068142,1.068142,1.068142,0.44862,0.44862,40,40,, +18970,0,1.009717,1,1,0,2,5,,5,2,Huron River,Dr,1670406,11.27,12.279,0,21.636793,3.7,5,2.019434,2.019434,2.019434,2.019434,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.069099,2.019631,2.019434,2.019434,2.069099,2.019631,2.019451,2.01944,2.019434,2.019434,2.019451,2.01944,2.020357,2.037212,2.019434,2.019434,2.020357,2.037212,2.019434,2.019434,2.019434,2.019434,2.019434,2.019434,,,,,,,2.069099,2.019631,2.019451,2.01944,2.020357,2.037212,2.019434,2.019434,2.019434,2.019434,0.802479,0.787638,0.787584,0.787581,0.787856,0.792913,0.787579,0.787579,0.413984,0.413984,29.279899,29.99708,29.999752,29.999914,29.986293,29.738197,30,30,30,30,,,,,,,,,,,2580,2580,2.019434,2.019434,2.019434,2.019434,2.019434,2.019434,2.019434,2.019434,0.787579,0.787579,30,30,, +19083,0,1.513226,1,1,0,2,5,,5,2,Willow,Rd,1670406,5.115,6.628,0,32.426267,3.7,5,3.026452,3.026452,3.026452,3.026452,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.045334,3.026481,3.026452,3.026452,3.045334,3.026481,3.02646,3.02646,3.026452,3.026452,3.02646,3.02646,3.026632,3.030883,3.026452,3.026452,3.026632,3.030883,3.026452,3.026452,3.026452,3.026452,3.026452,3.026452,,,,,,,3.045334,3.026481,3.02646,3.02646,3.026632,3.030883,3.026452,3.026452,3.026452,3.026452,1.185981,1.180325,1.180319,1.180319,1.18037,1.181646,1.180316,1.180316,0.620423,0.620423,29.813987,29.999706,29.999918,29.999915,29.998208,29.956133,30,30,30,30,,,,,,,,,,,2580,2580,3.026452,3.026452,3.026452,3.026452,3.026452,3.026452,3.026452,3.026452,1.180316,1.180316,30,30,, +19190,0,0.386992,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,5.575,5.962,0,8.292677,3,4,0.580487,0.580487,0.580487,0.580487,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.64495,0.582893,0.580487,0.580487,0.64495,0.582893,0.581663,0.581374,0.580487,0.580487,0.581663,0.581374,0.587332,0.626123,0.580487,0.580487,0.587332,0.626123,0.580487,0.580487,0.580487,0.580487,0.580487,0.580487,,,,,,,0.64495,0.582893,0.581663,0.581374,0.587332,0.626123,0.580487,0.580487,0.580487,0.580487,0.263143,0.244526,0.244157,0.244071,0.245858,0.257495,0.243805,0.243805,0.129642,0.129642,36.002031,39.834904,39.919143,39.938971,39.533851,37.084562,40,40,40,40,,,,,,,,,,,3096,3096,0.580487,0.580487,0.580487,0.580487,0.580487,0.580487,0.580487,0.580487,0.243805,0.243805,40,40,, +30686,0,1.347785,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,28.881107,0.15,4,5.39114,5.39114,5.39114,5.39114,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,,,,,,,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,1.859943,1.859943,1.859943,1.859943,1.859943,1.859943,1.859943,1.859943,0.956927,0.956927,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,5.39114,1.859943,1.859943,15,15,, +31217,0,1.429106,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,30.623705,0.15,4,5.716425,5.716425,5.716425,5.716425,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,,,,,,,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,1.972167,1.972167,1.972167,1.972167,1.972167,1.972167,1.972167,1.972167,1.014665,1.014665,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,5.716425,1.972167,1.972167,15,15,, +31228,0,1.08305,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,23.208212,0.15,4,4.3322,4.3322,4.3322,4.3322,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,,,,,,,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,1.494609,1.494609,1.494609,1.494609,1.494609,1.494609,1.494609,1.494609,0.768965,0.768965,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,4.3322,1.494609,1.494609,15,15,, +17638,0,1.000924,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,1.029,2.029,0,21.448381,3,4,1.501387,1.501387,1.501387,1.501387,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.50653,1.501455,1.501387,1.501387,1.50653,1.501455,1.501502,1.501441,1.501387,1.501387,1.501502,1.501441,1.501768,1.50398,1.501387,1.501387,1.501768,1.50398,1.501387,1.501387,1.501387,1.501387,1.501387,1.501387,,,,,,,1.50653,1.501455,1.501502,1.501441,1.501768,1.50398,1.501387,1.501387,1.501387,1.501387,0.632125,0.630603,0.630617,0.630599,0.630697,0.631361,0.630582,0.630582,0.33531,0.33531,39.86345,39.998169,39.996916,39.998544,39.989841,39.931018,40,40,40,40,,,,,,,,,,,3096,3096,1.501387,1.501387,1.501387,1.501387,1.501387,1.501387,1.501387,1.501387,0.630582,0.630582,40,40,, +18187,0,1.014711,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670604,0.994,2.009,0,21.743803,5.55,5,3.044132,3.044132,3.044132,3.044132,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,,,,,,,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,1.095888,1.095888,1.095888,1.095888,1.095888,1.095888,1.095888,1.095888,0.568238,0.568238,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,3.044132,1.095888,1.095888,20,20,, +18870,0,0.634028,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,3.467,4.101,0,13.586318,3,4,0.951042,0.951042,0.951042,0.951042,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.064303,0.95636,0.951042,0.951042,1.064303,0.95636,0.953034,0.952549,0.951042,0.951042,0.953034,0.952549,0.964425,1.039584,0.951042,0.951042,0.964425,1.039584,0.951042,0.951042,0.951042,0.951042,0.951042,0.951042,,,,,,,1.064303,0.95636,0.953034,0.952549,0.964425,1.039584,0.951042,0.951042,0.951042,0.951042,0.433416,0.401033,0.400035,0.39989,0.403452,0.426,0.399438,0.399438,0.212399,0.212399,35.743295,39.777588,39.916424,39.936712,39.444957,36.593173,40,40,40,40,,,,,,,,,,,3096,3096,0.951042,0.951042,0.951042,0.951042,0.951042,0.951042,0.951042,0.951042,0.399438,0.399438,40,40,, +19091,0,0.650995,1,1,0,2,5,,5,2,Willow,Rd,1670406,3.94,4.591,0,13.949889,3.7,5,1.30199,1.30199,1.30199,1.30199,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.304199,1.301994,1.30199,1.30199,1.304199,1.301994,1.30199,1.30199,1.30199,1.30199,1.30199,1.30199,1.301998,1.302349,1.30199,1.30199,1.301998,1.302349,1.30199,1.30199,1.30199,1.30199,1.30199,1.30199,,,,,,,1.304199,1.301994,1.30199,1.30199,1.301998,1.302349,1.30199,1.30199,1.30199,1.30199,0.508439,0.507777,0.507776,0.507776,0.507778,0.507884,0.507776,0.507776,0.266908,0.266908,29.949177,29.999894,29.999993,29.999992,29.999811,29.991713,30,30,30,30,,,,,,,,,,,2580,2580,1.30199,1.30199,1.30199,1.30199,1.30199,1.30199,1.30199,1.30199,0.507776,0.507776,30,30,, +31218,0,1.547361,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,33.157739,0.15,4,6.189445,6.189445,6.189445,6.189445,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,,,,,,,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,2.135358,2.135358,2.135358,2.135358,2.135358,2.135358,2.135358,2.135358,1.098626,1.098626,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,6.189445,2.135358,2.135358,15,15,, +31404,0,1.49664,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,32.070856,0.15,4,5.98656,5.98656,5.98656,5.98656,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,,,,,,,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,2.065363,2.065363,2.065363,2.065363,2.065363,2.065363,2.065363,2.065363,1.062614,1.062614,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,5.98656,2.065363,2.065363,15,15,, +31405,0,0.999535,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,21.418613,0.15,4,3.998141,3.998141,3.998141,3.998141,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,,,,,,,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,1.379359,1.379359,1.379359,1.379359,1.379359,1.379359,1.379359,1.379359,0.70967,0.70967,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,3.998141,1.379359,1.379359,15,15,, +31409,0,1.190845,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.518102,0.15,4,4.763379,4.763379,4.763379,4.763379,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,,,,,,,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,1.643366,1.643366,1.643366,1.643366,1.643366,1.643366,1.643366,1.643366,0.8455,0.8455,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,4.763379,1.643366,1.643366,15,15,, +17468,0,0.409981,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,3.057,3.467,0,8.785299,3,4,0.614971,0.614971,0.614971,0.614971,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.688208,0.618409,0.614971,0.614971,0.688208,0.618409,0.616259,0.615945,0.614971,0.614971,0.616259,0.615945,0.623624,0.672225,0.614971,0.614971,0.623624,0.672225,0.614971,0.614971,0.614971,0.614971,0.614971,0.614971,,,,,,,0.688208,0.618409,0.616259,0.615945,0.623624,0.672225,0.614971,0.614971,0.614971,0.614971,0.280259,0.259319,0.258674,0.25858,0.260884,0.275464,0.258288,0.258288,0.137344,0.137344,35.743295,39.777588,39.916424,39.936712,39.444957,36.593173,40,40,40,40,,,,,,,,,,,3096,3096,0.614971,0.614971,0.614971,0.614971,0.614971,0.614971,0.614971,0.614971,0.258288,0.258288,40,40,, +18062,0,1.028881,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,0,1.029,0,22.047457,3,4,1.543322,1.543322,1.543322,1.543322,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.548609,1.543393,1.543322,1.543322,1.548609,1.543393,1.543441,1.543378,1.543322,1.543322,1.543441,1.543378,1.543714,1.545988,1.543322,1.543322,1.543714,1.545988,1.543322,1.543322,1.543322,1.543322,1.543322,1.543322,,,,,,,1.548609,1.543393,1.543441,1.543378,1.543714,1.545988,1.543322,1.543322,1.543322,1.543322,0.649781,0.648216,0.648231,0.648212,0.648313,0.648995,0.648195,0.648195,0.344675,0.344675,39.86345,39.998169,39.996916,39.998544,39.989841,39.931018,40,40,40,40,,,,,,,,,,,3096,3096,1.543322,1.543322,1.543322,1.543322,1.543322,1.543322,1.543322,1.543322,0.648195,0.648195,40,40,, +17972,0,1.002986,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,2.029,3.032,0,21.492566,3,4,1.50448,1.50448,1.50448,1.50448,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.513978,1.506646,1.50448,1.50448,1.513978,1.506646,1.50502,1.504754,1.50448,1.50448,1.50502,1.504754,1.508057,1.510986,1.50448,1.50448,1.508057,1.510986,1.50448,1.50448,1.50448,1.50448,1.50448,1.50448,,,,,,,1.513978,1.506646,1.50502,1.504754,1.508057,1.510986,1.50448,1.50448,1.50448,1.50448,0.634731,0.632531,0.632044,0.631964,0.632955,0.633833,0.631881,0.631881,0.336,0.336,39.749055,39.942493,39.985642,39.992707,39.905124,39.827761,40,40,40,40,,,,,,,,,,,3096,3096,1.50448,1.50448,1.50448,1.50448,1.50448,1.50448,1.50448,1.50448,0.631881,0.631881,40,40,, +18728,0,0.896145,1,1,0,2,5,,5,2,Willow,Rd,1670406,3.044,3.94,0,19.203104,3.7,5,1.79229,1.79229,1.79229,1.79229,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.795888,1.792301,1.79229,1.79229,1.795888,1.792301,1.792291,1.792291,1.79229,1.79229,1.792291,1.792291,1.792309,1.79297,1.79229,1.79229,1.792309,1.79297,1.79229,1.79229,1.79229,1.79229,1.79229,1.79229,,,,,,,1.795888,1.792301,1.792291,1.792291,1.792309,1.79297,1.79229,1.79229,1.79229,1.79229,0.700073,0.698996,0.698993,0.698993,0.698999,0.699197,0.698993,0.698993,0.367419,0.367419,29.93989,29.999818,29.999983,29.999982,29.999681,29.988614,30,30,30,30,,,,,,,,,,,2580,2580,1.79229,1.79229,1.79229,1.79229,1.79229,1.79229,1.79229,1.79229,0.698993,0.698993,30,30,, +17465,0,0.969416,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,4.101,5.07,0,20.77319,3,4,1.454123,1.454123,1.454123,1.454123,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.623092,1.461777,1.454123,1.454123,1.623092,1.461777,1.456934,1.456272,1.454123,1.454123,1.456934,1.456272,1.472998,1.580333,1.454123,1.454123,1.472998,1.580333,1.454123,1.454123,1.454123,1.454123,1.454123,1.454123,,,,,,,1.623092,1.461777,1.456934,1.456272,1.472998,1.580333,1.454123,1.454123,1.454123,1.454123,0.661422,0.613028,0.611575,0.611376,0.616394,0.648595,0.610732,0.610732,0.324754,0.324754,35.835875,39.790568,39.922834,39.940981,39.487454,36.805484,40,40,40,40,,,,,,,,,,,3096,3096,1.454123,1.454123,1.454123,1.454123,1.454123,1.454123,1.454123,1.454123,0.610732,0.610732,40,40,, +19165,0,0.994512,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670604,0,0.994,0,21.310976,5.55,5,2.983537,2.983537,2.983537,2.983537,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,,,,,,,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,1.074073,1.074073,1.074073,1.074073,1.074073,1.074073,1.074073,1.074073,0.556927,0.556927,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,2.983537,1.074073,1.074073,20,20,, +31406,0,1.124585,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,24.098256,0.15,4,4.498341,4.498341,4.498341,4.498341,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,,,,,,,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,1.551928,1.551928,1.551928,1.551928,1.551928,1.551928,1.551928,1.551928,0.798456,0.798456,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,4.498341,1.551928,1.551928,15,15,, +31407,0,0.5095,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,10.91786,0.15,4,2.038001,2.038001,2.038001,2.038001,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,,,,,,,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,0.70311,0.70311,0.70311,0.70311,0.70311,0.70311,0.70311,0.70311,0.361745,0.361745,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,2.038001,0.70311,0.70311,15,15,, +18869,0,0.505135,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,5.07,5.575,0,10.824314,3,4,0.757702,0.757702,0.757702,0.757702,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.853705,0.762272,0.757702,0.757702,0.853705,0.762272,0.759561,0.759125,0.757702,0.757702,0.759561,0.759125,0.769164,0.830628,0.757702,0.757702,0.769164,0.830628,0.757702,0.757702,0.757702,0.757702,0.757702,0.757702,,,,,,,0.853705,0.762272,0.759561,0.759125,0.769164,0.830628,0.757702,0.757702,0.757702,0.757702,0.347036,0.319606,0.318792,0.318662,0.321673,0.340113,0.318235,0.318235,0.16922,0.16922,35.501825,39.7602,39.902125,39.925031,39.403913,36.488157,40,40,40,40,,,,,,,,,,,3096,3096,0.757702,0.757702,0.757702,0.757702,0.757702,0.757702,0.757702,0.757702,0.318235,0.318235,40,40,, +17784,0,0.499739,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670604,2.009,2.508,0,10.708704,5.55,5,1.499218,1.499218,1.499218,1.499218,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.499219,1.49922,1.499218,1.499218,1.499219,1.49922,1.499219,1.499219,1.499218,1.499218,1.499219,1.499219,1.49922,1.499219,1.499218,1.499218,1.49922,1.499219,1.499218,1.499218,1.499218,1.499218,1.499218,1.499218,,,,,,,1.499219,1.49922,1.499219,1.499219,1.49922,1.499219,1.499218,1.499218,1.499218,1.499218,0.539719,0.539719,0.539719,0.539719,0.539719,0.539719,0.539719,0.539719,0.279854,0.279854,20,19.99998,19.999999,19.999999,19.999983,19.999994,20,20,20,20,,,,,,,,,,,2236,2236,1.499218,1.499218,1.499218,1.499218,1.499218,1.499218,1.499218,1.499218,0.539719,0.539719,20,20,, +18625,0,0.524385,1,1,0,2,5,,5,2,Willow,Rd,1670406,4.591,5.115,0,11.236821,3.7,5,1.04877,1.04877,1.04877,1.04877,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.052077,1.048774,1.04877,1.04877,1.052077,1.048774,1.04877,1.04877,1.04877,1.04877,1.04877,1.04877,1.048785,1.049403,1.04877,1.04877,1.048785,1.049403,1.04877,1.04877,1.04877,1.04877,1.04877,1.04877,,,,,,,1.052077,1.048774,1.04877,1.04877,1.048785,1.049403,1.04877,1.04877,1.04877,1.04877,0.410012,0.409022,0.40902,0.40902,0.409025,0.40921,0.40902,0.40902,0.214998,0.214998,29.90569,29.999875,29.999989,29.999986,29.999578,29.981899,30,30,30,30,,,,,,,,,,,2580,2580,1.04877,1.04877,1.04877,1.04877,1.04877,1.04877,1.04877,1.04877,0.40902,0.40902,30,30,, +18814,0,0.251927,1,1,0,2,5,GRV,5,2,Wear,Rd,1670407,4.867,5.119,0,5.398437,5.55,5,0.755781,0.755781,0.755781,0.755781,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.755782,0.755781,0.755781,0.755781,0.755782,0.755781,0.755781,0.755781,0.755781,0.755781,0.755781,0.755781,0.755781,0.755782,0.755781,0.755781,0.755781,0.755782,0.755781,0.755781,0.755781,0.755781,0.755781,0.755781,,,,,,,0.755782,0.755781,0.755781,0.755781,0.755781,0.755782,0.755781,0.755781,0.755781,0.755781,0.272081,0.272081,0.272081,0.272081,0.272081,0.272081,0.272081,0.272081,0.141079,0.141079,19.99998,20,19.999999,19.999999,19.999994,19.999983,20,20,20,20,,,,,,,,,,,2236,2236,0.755781,0.755781,0.755781,0.755781,0.755781,0.755781,0.755781,0.755781,0.272081,0.272081,20,20,, +18107,0,0.703673,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670605,0,0.703,0,15.078712,5.55,5,2.11102,2.11102,2.11102,2.11102,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.11102,2.111022,2.11102,2.11102,2.11102,2.111022,2.11102,2.11102,2.11102,2.11102,2.11102,2.11102,2.111022,2.11102,2.11102,2.11102,2.111022,2.11102,2.11102,2.11102,2.11102,2.11102,2.11102,2.11102,,,,,,,2.11102,2.111022,2.11102,2.11102,2.111022,2.11102,2.11102,2.11102,2.11102,2.11102,0.759967,0.759968,0.759967,0.759967,0.759968,0.759967,0.759967,0.759967,0.394057,0.394057,20,19.99998,19.999999,19.999999,19.999983,19.999994,20,20,20,20,,,,,,,,,,,2236,2236,2.11102,2.11102,2.11102,2.11102,2.11102,2.11102,2.11102,2.11102,0.759967,0.759967,20,20,, +31408,0,0.34408,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,7.373138,0.15,4,1.376319,1.376319,1.376319,1.376319,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,,,,,,,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,0.47483,0.47483,0.47483,0.47483,0.47483,0.47483,0.47483,0.47483,0.244297,0.244297,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,1.376319,0.47483,0.47483,15,15,, +17463,0,0.528426,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,5.6,6.129,0,11.323408,3,4,0.792639,0.792639,0.792639,0.792639,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.870275,0.794483,0.792639,0.792639,0.870275,0.794483,0.802452,0.800792,0.792639,0.792639,0.802452,0.800792,0.809332,0.867329,0.792639,0.792639,0.809332,0.867329,0.792639,0.792639,0.792639,0.792639,0.792639,0.792639,,,,,,,0.870275,0.794483,0.802452,0.800792,0.809332,0.867329,0.792639,0.792639,0.792639,0.792639,0.356199,0.333462,0.335852,0.335354,0.337916,0.355315,0.332908,0.332908,0.177023,0.177023,36.431616,39.90713,39.510841,39.592749,39.174968,36.555398,40,40,40,40,,,,,,,,,,,3096,3096,0.792639,0.792639,0.792639,0.792639,0.792639,0.792639,0.792639,0.792639,0.332908,0.332908,40,40,, +17669,0,0.935186,1,1,0,2,5,,4,2,Bemis,Rd,1670503,4.121,5.056,0,20.039696,5.8,4.5,2.078191,2.078191,2.078191,2.078191,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.078248,2.078191,2.078191,2.078191,2.078248,2.078191,2.078191,2.078191,2.078191,2.078191,2.078191,2.078191,2.078191,2.078227,2.078191,2.078191,2.078191,2.078227,2.078191,2.078191,2.078191,2.078191,2.078191,2.078191,,,,,,,2.078248,2.078191,2.078191,2.078191,2.078191,2.078227,2.078191,2.078191,2.078191,2.078191,0.791808,0.791791,0.791791,0.791791,0.791791,0.791802,0.791791,0.791791,0.414599,0.414599,26.999258,26.999995,26.999998,26.999999,26.99999,26.999529,27,27,27,27,,,,,,,,,,,2580,2580,2.078191,2.078191,2.078191,2.078191,2.078191,2.078191,2.078191,2.078191,0.791791,0.791791,27,27,, +17797,0,0.577825,1,1,0,2,5,GRV,5,2,Martinsville,Rd,1670702,5.539,6.117,0,12.381962,5.55,5,1.733475,1.733475,1.733475,1.733475,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,,,,,,,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,0.624051,0.624051,0.624051,0.624051,0.624051,0.624051,0.624051,0.624051,0.323582,0.323582,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,1.733475,0.624051,0.624051,20,20,, +18084,0,0.703136,1,1,0,2,5,,5,2,Harris,Rd,1670501,2.771,3.474,0,15.067194,3.7,5,1.406271,1.406271,1.406271,1.406271,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.406638,1.406285,1.406271,1.406271,1.406638,1.406285,1.406272,1.406272,1.406271,1.406271,1.406272,1.406272,1.406295,1.406395,1.406271,1.406271,1.406295,1.406395,1.406271,1.406271,1.406271,1.406271,1.406271,1.406271,,,,,,,1.406638,1.406285,1.406272,1.406272,1.406295,1.406395,1.406271,1.406271,1.406271,1.406271,0.548556,0.54845,0.548446,0.548446,0.548453,0.548483,0.548446,0.548446,0.288286,0.288286,29.992179,29.999717,29.99998,29.999989,29.999491,29.997369,30,30,30,30,,,,,,,,,,,2580,2580,1.406271,1.406271,1.406271,1.406271,1.406271,1.406271,1.406271,1.406271,0.548446,0.548446,30,30,, +18606,0,1.007409,1,1,0,2,5,,5,2,Judd,Rd,1670408,3.548,4.555,0,21.58734,3.7,5,2.014818,2.014818,2.014818,2.014818,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.015205,2.014818,2.014818,2.014818,2.015205,2.014818,2.014818,2.014818,2.014818,2.014818,2.014818,2.014818,2.014818,2.01491,2.014818,2.014818,2.014818,2.01491,2.014818,2.014818,2.014818,2.014818,2.014818,2.014818,,,,,,,2.015205,2.014818,2.014818,2.014818,2.014818,2.01491,2.014818,2.014818,2.014818,2.014818,0.785895,0.785779,0.785779,0.785779,0.785779,0.785807,0.785779,0.785779,0.413038,0.413038,29.994245,30,30,30,30,29.998632,30,30,30,30,,,,,,,,,,,2580,2580,2.014818,2.014818,2.014818,2.014818,2.014818,2.014818,2.014818,2.014818,0.785779,0.785779,30,30,, +18653,0,1.031263,1,1,0,2,4,,4,2,Savage,Rd,1674810,3.484,4.515,0,22.098503,4.5,4.5,1.628311,1.628311,1.628311,1.628311,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.635484,1.649769,1.628311,1.628311,1.635484,1.649769,1.628772,1.629128,1.628311,1.628311,1.628772,1.629128,1.657937,1.654275,1.628311,1.628311,1.657937,1.654275,1.628311,1.628311,1.628311,1.628311,1.628311,1.628311,,,,,,,1.635484,1.649769,1.628772,1.629128,1.657937,1.654275,1.628311,1.628311,1.628311,1.628311,0.676273,0.680558,0.674259,0.674366,0.683009,0.68191,0.674121,0.674121,0.357686,0.357686,37.833332,37.505742,37.989239,37.980932,37.320955,37.403587,38,38,38,38,,,,,,,,,,,3096,3096,1.628311,1.628311,1.628311,1.628311,1.628311,1.628311,1.628311,1.628311,0.674121,0.674121,38,38,, +31224,0,0.45365,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,9.721076,0.15,4,1.814601,1.814601,1.814601,1.814601,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,,,,,,,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,0.626037,0.626037,0.626037,0.626037,0.626037,0.626037,0.626037,0.626037,0.322092,0.322092,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,1.814601,0.626037,0.626037,15,15,, +31359,0,1.889612,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,40.491687,0.15,4,7.558448,7.558448,7.558448,7.558448,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,,,,,,,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,2.607665,2.607665,2.607665,2.607665,2.607665,2.607665,2.607665,2.607665,1.341625,1.341625,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,7.558448,2.607665,2.607665,15,15,, +17488,0,0.68909,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,4.409,5.097,0,14.766221,3,4,1.033635,1.033635,1.033635,1.033635,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.073615,1.036365,1.033635,1.033635,1.073615,1.036365,1.036936,1.035793,1.033635,1.033635,1.036936,1.035793,1.042987,1.063298,1.033635,1.033635,1.042987,1.063298,1.033635,1.033635,1.033635,1.033635,1.033635,1.033635,,,,,,,1.073615,1.036365,1.036936,1.035793,1.042987,1.063298,1.033635,1.033635,1.033635,1.033635,0.446121,0.434946,0.435117,0.434774,0.436932,0.443026,0.434127,0.434127,0.230845,0.230845,38.51047,39.894658,39.872682,39.916662,39.641371,38.884123,40,40,40,40,,,,,,,,,,,3096,3096,1.033635,1.033635,1.033635,1.033635,1.033635,1.033635,1.033635,1.033635,0.434127,0.434127,40,40,, +18356,0,0.521214,1,1,0,2,5,,5,2,Judd,Rd,1670408,3.027,3.548,0,11.168863,3.7,5,1.042427,1.042427,1.042427,1.042427,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.042924,1.04243,1.042427,1.042427,1.042924,1.04243,1.042429,1.042428,1.042427,1.042427,1.042429,1.042428,1.042438,1.042622,1.042427,1.042427,1.042438,1.042622,1.042427,1.042427,1.042427,1.042427,1.042427,1.042427,,,,,,,1.042924,1.04243,1.042429,1.042428,1.042438,1.042622,1.042427,1.042427,1.042427,1.042427,0.406696,0.406547,0.406547,0.406547,0.40655,0.406605,0.406547,0.406547,0.213698,0.213698,29.985711,29.999921,29.999958,29.99997,29.999682,29.994402,30,30,30,30,,,,,,,,,,,2580,2580,1.042427,1.042427,1.042427,1.042427,1.042427,1.042427,1.042427,1.042427,0.406547,0.406547,30,30,, +18486,0,1.075886,1,1,0,2,5,,5,2,Willis,Rd,1670409,3.047,4.123,0,23.0547,3.7,5,2.151772,2.151772,2.151772,2.151772,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.158652,2.161136,2.151772,2.151772,2.158652,2.161136,2.152322,2.152085,2.151772,2.151772,2.152322,2.152085,2.166091,2.163705,2.151772,2.151772,2.166091,2.163705,2.151772,2.151772,2.151772,2.151772,2.151772,2.151772,,,,,,,2.158652,2.161136,2.152322,2.152085,2.166091,2.163705,2.151772,2.151772,2.151772,2.151772,0.841255,0.842,0.839356,0.839285,0.843487,0.842771,0.839191,0.839191,0.441113,0.441113,29.904387,29.870016,29.992338,29.995639,29.801691,29.834545,30,30,30,30,,,,,,,,,,,2580,2580,2.151772,2.151772,2.151772,2.151772,2.151772,2.151772,2.151772,2.151772,0.839191,0.839191,30,30,, +17914,0,0.377193,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,4.032,4.409,0,8.082711,3,4,0.56579,0.56579,0.56579,0.56579,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.587883,0.568102,0.56579,0.56579,0.587883,0.568102,0.567596,0.566971,0.56579,0.56579,0.567596,0.566971,0.572548,0.582425,0.56579,0.56579,0.572548,0.582425,0.56579,0.56579,0.56579,0.56579,0.56579,0.56579,,,,,,,0.587883,0.568102,0.567596,0.566971,0.572548,0.582425,0.56579,0.56579,0.56579,0.56579,0.24426,0.238325,0.238174,0.237986,0.239659,0.242622,0.237632,0.237632,0.12636,0.12636,38.496746,39.837231,39.872682,39.916662,39.527822,38.857517,40,40,40,40,,,,,,,,,,,3096,3096,0.56579,0.56579,0.56579,0.56579,0.56579,0.56579,0.56579,0.56579,0.237632,0.237632,40,40,, +17898,0,0.503149,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,5.097,5.6,0,10.781766,3,4,0.754724,0.754724,0.754724,0.754724,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.828647,0.75648,0.754724,0.754724,0.828647,0.75648,0.764067,0.762487,0.754724,0.754724,0.764067,0.762487,0.770618,0.825841,0.754724,0.754724,0.770618,0.825841,0.754724,0.754724,0.754724,0.754724,0.754724,0.754724,,,,,,,0.828647,0.75648,0.764067,0.762487,0.770618,0.825841,0.754724,0.754724,0.754724,0.754724,0.339161,0.317511,0.319787,0.319313,0.321752,0.338319,0.316984,0.316984,0.168555,0.168555,36.431616,39.90713,39.510841,39.592749,39.174968,36.555398,40,40,40,40,,,,,,,,,,,3096,3096,0.754724,0.754724,0.754724,0.754724,0.754724,0.754724,0.754724,0.754724,0.316984,0.316984,40,40,, +18197,0,0.508145,1,1,0,2,5,,5,2,Martinsville,Rd,1670702,5.031,5.539,0,10.888817,3.7,5,1.01629,1.01629,1.01629,1.01629,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.016555,1.016299,1.01629,1.01629,1.016555,1.016299,1.01629,1.01629,1.01629,1.01629,1.01629,1.01629,1.016307,1.016379,1.01629,1.01629,1.016307,1.016379,1.01629,1.01629,1.01629,1.01629,1.01629,1.01629,,,,,,,1.016555,1.016299,1.01629,1.01629,1.016307,1.016379,1.01629,1.01629,1.01629,1.01629,0.396432,0.396356,0.396353,0.396353,0.396358,0.39638,0.396353,0.396353,0.208339,0.208339,29.992179,29.999717,29.99998,29.999989,29.999491,29.997369,30,30,30,30,,,,,,,,,,,2580,2580,1.01629,1.01629,1.01629,1.01629,1.01629,1.01629,1.01629,1.01629,0.396353,0.396353,30,30,, +18106,0,1.075219,1,1,0,2,5,,4,2,Bemis,Rd,1670503,3.046,4.121,0,23.040413,5.8,4.5,2.389376,2.389376,2.389376,2.389376,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.389442,2.389377,2.389376,2.389376,2.389442,2.389377,2.389376,2.389376,2.389376,2.389376,2.389376,2.389376,2.389377,2.389418,2.389376,2.389376,2.389377,2.389418,2.389376,2.389376,2.389376,2.389376,2.389376,2.389376,,,,,,,2.389442,2.389377,2.389376,2.389376,2.389377,2.389418,2.389376,2.389376,2.389376,2.389376,0.910372,0.910352,0.910352,0.910352,0.910353,0.910365,0.910352,0.910352,0.476681,0.476681,26.999258,26.999995,26.999998,26.999999,26.99999,26.999529,27,27,27,27,,,,,,,,,,,2580,2580,2.389376,2.389376,2.389376,2.389376,2.389376,2.389376,2.389376,2.389376,0.910352,0.910352,27,27,, +18391,0,0.801031,1,1,0,2,4,,4,2,Sumpter,Rd,1670701,6.329,7.13,0,17.164946,4.5,4.5,1.264785,1.264785,1.264785,1.264785,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.569488,1.271258,1.264785,1.264785,1.569488,1.271258,1.290807,1.285188,1.264785,1.264785,1.290807,1.285188,1.327264,1.530956,1.264785,1.264785,1.327264,1.530956,1.264785,1.264785,1.264785,1.264785,1.264785,1.264785,,,,,,,1.569488,1.271258,1.290807,1.285188,1.327264,1.530956,1.264785,1.264785,1.264785,1.264785,0.615032,0.525563,0.531428,0.529742,0.542365,0.603472,0.523621,0.523621,0.277831,0.277831,30.622623,37.806516,37.233946,37.396734,36.211211,31.393355,38,38,38,38,,,,,,,,,,,3096,3096,1.264785,1.264785,1.264785,1.264785,1.264785,1.264785,1.264785,1.264785,0.523621,0.523621,38,38,, +18857,0,0.200208,1,1,0,2,4,,4,2,Sumpter,Rd,1670701,6.129,6.329,0,4.290173,4.5,4.5,0.316118,0.316118,0.316118,0.316118,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.402747,0.318276,0.316118,0.316118,0.402747,0.318276,0.323886,0.321988,0.316118,0.316118,0.323886,0.321988,0.335253,0.393029,0.316118,0.316118,0.335253,0.393029,0.316118,0.316118,0.316118,0.316118,0.316118,0.316118,,,,,,,0.402747,0.318276,0.323886,0.321988,0.335253,0.393029,0.316118,0.316118,0.316118,0.316118,0.156862,0.13152,0.133203,0.132634,0.136613,0.153946,0.130873,0.130873,0.069441,0.069441,29.826345,37.742308,37.088629,37.307228,35.831134,30.563876,38,38,38,38,,,,,,,,,,,3096,3096,0.316118,0.316118,0.316118,0.316118,0.316118,0.316118,0.316118,0.316118,0.130873,0.130873,38,38,, +18626,0,0.882036,1,1,0,2,4,,4,2,Sumpter,Rd,1670701,7.13,8.011,0,18.900775,4.5,4.5,1.392689,1.392689,1.392689,1.392689,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.472672,1.410673,1.392689,1.392689,2.472672,1.410673,1.47818,1.458016,1.392689,1.392689,1.47818,1.458016,1.582723,2.386201,1.392689,1.392689,1.582723,2.386201,1.392689,1.392689,1.392689,1.392689,1.392689,1.392689,,,,,,,2.472672,1.410673,1.47818,1.458016,1.582723,2.386201,1.392689,1.392689,1.392689,1.392689,0.900568,0.581968,0.60222,0.596171,0.633584,0.874627,0.576573,0.576573,0.305927,0.305927,21.402824,37.51555,35.802258,36.297391,33.437407,22.178418,38,38,38,38,,,,,,,,,,,3096,3096,1.392689,1.392689,1.392689,1.392689,1.392689,1.392689,1.392689,1.392689,0.576573,0.576573,38,38,, +19103,0,0.39256,1,1,0,2,4,,4,2,Columbia,Ave,1674810,3.092,3.484,0,8.412001,4.5,4.5,0.619832,0.619832,0.619832,0.619832,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.636274,0.649693,0.619832,0.619832,0.636274,0.649693,0.625547,0.62784,0.619832,0.619832,0.625547,0.62784,0.655351,0.673651,0.619832,0.619832,0.655351,0.673651,0.619832,0.619832,0.619832,0.619832,0.619832,0.619832,,,,,,,0.636274,0.649693,0.625547,0.62784,0.655351,0.673651,0.619832,0.619832,0.619832,0.619832,0.261543,0.265569,0.258325,0.259013,0.267266,0.272756,0.25661,0.25661,0.136156,0.136156,37.018028,36.253453,37.652814,37.5153,35.940423,34.964113,38,38,38,38,,,,,,,,,,,3096,3096,0.619832,0.619832,0.619832,0.619832,0.619832,0.619832,0.619832,0.619832,0.25661,0.25661,38,38,, +31229,0,0.469379,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.058123,0.15,4,1.877516,1.877516,1.877516,1.877516,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.877516,1.877516,1.877516,1.877516,1.877516,1.877516,1.877516,1.877516,1.877516,1.877516,1.877516,1.877516,1.877517,1.877517,1.877516,1.877516,1.877517,1.877517,1.877516,1.877516,1.877516,1.877516,1.877516,1.877516,,,,,,,1.877516,1.877516,1.877516,1.877516,1.877517,1.877517,1.877516,1.877516,1.877516,1.877516,0.647743,0.647743,0.647743,0.647743,0.647743,0.647743,0.647743,0.647743,0.333259,0.333259,14.999999,14.999999,15,15,14.999996,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,1.877516,1.877516,1.877516,1.877516,1.877516,1.877516,1.877516,1.877516,0.647743,0.647743,15,15,, +18123,0,0.197546,1,1,0,2,4,,4,2,Columbia,Ave,1674810,2.86,3.058,0,4.233119,4.5,4.5,0.311914,0.311914,0.311914,0.311914,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.31944,0.33659,0.311914,0.311914,0.31944,0.33659,0.315304,0.316693,0.311914,0.311914,0.315304,0.316693,0.341005,0.348462,0.311914,0.311914,0.341005,0.348462,0.311914,0.311914,0.311914,0.311914,0.311914,0.311914,,,,,,,0.31944,0.33659,0.315304,0.316693,0.341005,0.348462,0.311914,0.311914,0.311914,0.311914,0.13139,0.136535,0.130149,0.130566,0.13786,0.140097,0.129132,0.129132,0.068517,0.068517,37.104736,35.214209,37.591443,37.426613,34.758244,34.014401,38,38,38,38,,,,,,,,,,,3096,3096,0.311914,0.311914,0.311914,0.311914,0.311914,0.311914,0.311914,0.311914,0.129132,0.129132,38,38,, +31369,0,0.316605,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.784386,0.15,4,1.266419,1.266419,1.266419,1.266419,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,,,,,,,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,0.436914,0.436914,0.436914,0.436914,0.436914,0.436914,0.436914,0.436914,0.224789,0.224789,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,1.266419,0.436914,0.436914,15,15,, +31367,0,0.116898,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.504952,0.15,4,0.467591,0.467591,0.467591,0.467591,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,,,,,,,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.161319,0.161319,0.161319,0.161319,0.161319,0.161319,0.161319,0.161319,0.082997,0.082997,14.999999,14.999992,14.999999,14.999999,14.999988,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.467591,0.161319,0.161319,15,15,, +18188,0,0.133086,1,1,0,2,4,,4,2,South,St,1670701,8.011,8.144,0,2.851837,4.5,4.5,0.210135,0.210135,0.210135,0.210135,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.298033,0.212849,0.210135,0.210135,0.298033,0.212849,0.223035,0.219992,0.210135,0.210135,0.223035,0.219992,0.238809,0.291838,0.210135,0.210135,0.238809,0.291838,0.210135,0.210135,0.210135,0.210135,0.210135,0.210135,,,,,,,0.298033,0.212849,0.223035,0.219992,0.238809,0.291838,0.210135,0.210135,0.210135,0.210135,0.113365,0.08781,0.090866,0.089953,0.095598,0.111507,0.086996,0.086996,0.04616,0.04616,26.792805,37.51555,35.802258,36.297391,33.437407,27.361521,38,38,38,38,,,,,,,,,,,3096,3096,0.210135,0.210135,0.210135,0.210135,0.210135,0.210135,0.210135,0.210135,0.086996,0.086996,38,38,, +17693,0,0.034229,1,1,1,2,4,,4,2,Columbia,Ave,1674810,3.058,3.092,0,0.733471,4.5,4.5,0.054045,0.054045,0.054045,0.054045,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.054089,0.054231,0.054045,0.054045,0.054089,0.054231,0.054075,0.054084,0.054045,0.054045,0.054075,0.054084,0.054358,0.054273,0.054045,0.054045,0.054358,0.054273,0.054045,0.054045,0.054045,0.054045,0.054045,0.054045,,,,,,,0.054089,0.054231,0.054075,0.054084,0.054358,0.054273,0.054045,0.054045,0.054045,0.054045,0.022388,0.022431,0.022384,0.022386,0.022469,0.022443,0.022375,0.022375,0.011872,0.011872,37.969014,37.869625,37.978803,37.972513,37.781187,37.840711,38,38,38,38,,,,,,,,,,,3406,3406,0.054045,0.054045,0.054045,0.054045,0.054045,0.054045,0.054045,0.054045,0.022375,0.022375,38,38,, +22565,0,0.023575,1,1,0,2,4,,4,2,Huron River,Dr,4705582,0,0.024,0,0.505189,4.5,4.5,0.037224,0.037224,0.037224,0.037224,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.037258,0.037307,0.037224,0.037224,0.037258,0.037307,0.037234,0.037239,0.037224,0.037224,0.037234,0.037239,0.037285,0.037377,0.037224,0.037224,0.037285,0.037377,0.037224,0.037224,0.037224,0.037224,0.037224,0.037224,,,,,,,0.037258,0.037307,0.037234,0.037239,0.037285,0.037377,0.037224,0.037224,0.037224,0.037224,0.015421,0.015436,0.015414,0.015415,0.015429,0.015457,0.015411,0.015411,0.008177,0.008177,37.965737,37.915866,37.990613,37.985268,37.938272,37.844962,38,38,38,38,,,,,,,,,,,3096,3096,0.037224,0.037224,0.037224,0.037224,0.037224,0.037224,0.037224,0.037224,0.015411,0.015411,38,38,, +22854,0,0.022281,1,1,0,2,4,,4,2,Main,St,4705581,0.561,0.583,0,0.477449,4.5,4.5,0.03518,0.03518,0.03518,0.03518,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.037029,0.061947,0.03518,0.03518,0.037029,0.061947,0.038602,0.039972,0.03518,0.03518,0.038602,0.039972,0.053882,0.046413,0.03518,0.03518,0.053882,0.046413,0.03518,0.03518,0.03518,0.03518,0.03518,0.03518,,,,,,,0.037029,0.061947,0.038602,0.039972,0.053882,0.046413,0.03518,0.03518,0.03518,0.03518,0.015119,0.022595,0.015591,0.016002,0.020175,0.017934,0.014565,0.014565,0.007728,0.007728,36.102626,21.58061,34.631682,33.444519,24.81093,28.803695,38,38,38,38,,,,,,,,,,,3096,3096,0.03518,0.03518,0.03518,0.03518,0.03518,0.03518,0.03518,0.03518,0.014565,0.014565,38,38,, +18063,0,0.848996,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670606,0,0.849,0,18.192775,5.55,5,2.546988,2.546988,2.546988,2.546988,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,,,,,,,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,0.916916,0.916916,0.916916,0.916916,0.916916,0.916916,0.916916,0.916916,0.475438,0.475438,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,2.546988,0.916916,0.916916,20,20,, +18485,0,0.305533,1,1,0,2,5,,5,2,Harris,Rd,1670501,3.474,3.779,0,6.547134,3.7,5,0.611066,0.611066,0.611066,0.611066,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.678728,0.612121,0.611066,0.611066,0.678728,0.612121,0.612552,0.611807,0.611066,0.611066,0.612552,0.611807,0.6183,0.665162,0.611066,0.611066,0.6183,0.665162,0.611066,0.611066,0.611066,0.611066,0.611066,0.611066,,,,,,,0.678728,0.612121,0.612552,0.611807,0.6183,0.665162,0.611066,0.611066,0.611066,0.611066,0.258614,0.238632,0.238762,0.238538,0.240486,0.254544,0.238316,0.238316,0.125268,0.125268,27.009314,29.948302,29.927215,29.963637,29.649009,27.560179,30,30,30,30,,,,,,,,,,,2580,2580,0.611066,0.611066,0.611066,0.611066,0.611066,0.611066,0.611066,0.611066,0.238316,0.238316,30,30,, +18501,0,0.255319,1,1,0,2,5,,5,2,Judd,Rd,1670408,4.873,5.128,0,5.471122,3.7,5,0.510638,0.510638,0.510638,0.510638,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.513676,0.510639,0.510638,0.510638,0.513676,0.510639,0.510646,0.510641,0.510638,0.510638,0.510646,0.510641,0.510648,0.512151,0.510638,0.510638,0.510648,0.512151,0.510638,0.510638,0.510638,0.510638,0.510638,0.510638,,,,,,,0.513676,0.510639,0.510646,0.510641,0.510648,0.512151,0.510638,0.510638,0.510638,0.510638,0.20006,0.199149,0.199151,0.19915,0.199152,0.199603,0.199149,0.199149,0.104681,0.104681,29.822579,29.999971,29.999523,29.999845,29.999419,29.911366,30,30,30,30,,,,,,,,,,,2580,2580,0.510638,0.510638,0.510638,0.510638,0.510638,0.510638,0.510638,0.510638,0.199149,0.199149,30,30,, +31223,0,1.069914,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,22.926718,0.15,4,4.279654,4.279654,4.279654,4.279654,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,,,,,,,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,1.476481,1.476481,1.476481,1.476481,1.476481,1.476481,1.476481,1.476481,0.759639,0.759639,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,4.279654,1.476481,1.476481,15,15,, +31225,0,0.588892,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.619111,0.15,4,2.355567,2.355567,2.355567,2.355567,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,,,,,,,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,0.812671,0.812671,0.812671,0.812671,0.812671,0.812671,0.812671,0.812671,0.418113,0.418113,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,2.355567,0.812671,0.812671,15,15,, +18172,0,0.317768,1,1,0,2,5,,5,2,Judd,Rd,1670408,4.555,4.873,0,6.809316,3.7,5,0.635536,0.635536,0.635536,0.635536,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.635686,0.635536,0.635536,0.635536,0.635686,0.635536,0.635536,0.635536,0.635536,0.635536,0.635536,0.635536,0.635536,0.635584,0.635536,0.635536,0.635536,0.635584,0.635536,0.635536,0.635536,0.635536,0.635536,0.635536,,,,,,,0.635686,0.635536,0.635536,0.635536,0.635536,0.635584,0.635536,0.635536,0.635536,0.635536,0.247904,0.247859,0.247859,0.247859,0.247859,0.247873,0.247859,0.247859,0.130285,0.130285,29.992953,30,29.999999,30,29.999997,29.99774,30,30,30,30,,,,,,,,,,,2580,2580,0.635536,0.635536,0.635536,0.635536,0.635536,0.635536,0.635536,0.635536,0.247859,0.247859,30,30,, +31222,0,0.542113,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.616697,0.15,4,2.16845,2.16845,2.16845,2.16845,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,,,,,,,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,0.748115,0.748115,0.748115,0.748115,0.748115,0.748115,0.748115,0.748115,0.3849,0.3849,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,2.16845,0.748115,0.748115,15,15,, +17639,0,0.674132,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670606,0.849,1.523,0,14.445677,5.55,5,2.022395,2.022395,2.022395,2.022395,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,,,,,,,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,0.728062,0.728062,0.728062,0.728062,0.728062,0.728062,0.728062,0.728062,0.377514,0.377514,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,2.022395,0.728062,0.728062,20,20,, +17812,0,0.562114,1,1,0,2,4,,4,2,Savage,Rd,1674810,4.945,5.507,0,12.045309,4.5,4.5,0.887549,0.887549,0.887549,0.887549,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.888585,0.888099,0.887549,0.887549,0.888585,0.888099,0.887558,0.887565,0.887549,0.887549,0.887558,0.887565,0.888774,0.890202,0.887549,0.887549,0.888774,0.890202,0.887549,0.887549,0.887549,0.887549,0.887549,0.887549,,,,,,,0.888585,0.888099,0.887558,0.887565,0.888774,0.890202,0.887549,0.887549,0.887549,0.887549,0.367756,0.36761,0.367448,0.36745,0.367813,0.368241,0.367445,0.367445,0.194965,0.194965,37.955711,37.976472,37.999633,37.999324,37.947625,37.886773,38,38,38,38,,,,,,,,,,,3096,3096,0.887549,0.887549,0.887549,0.887549,0.887549,0.887549,0.887549,0.887549,0.367445,0.367445,38,38,, +18946,0,1.047763,1,1,0,2,4,,4,2,Haggerty,Rd,1670810,2.019,3.066,0,22.452054,4.5,4.5,1.654362,1.654362,1.654362,1.654362,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.690562,1.661295,1.654362,1.654362,1.690562,1.661295,1.658211,1.656281,1.654362,1.654362,1.658211,1.656281,1.684324,1.689391,1.654362,1.654362,1.684324,1.689391,1.654362,1.654362,1.654362,1.654362,1.654362,1.654362,,,,,,,1.690562,1.661295,1.658211,1.656281,1.684324,1.689391,1.654362,1.654362,1.654362,1.654362,0.695766,0.686986,0.686061,0.685482,0.693895,0.695414,0.684906,0.684906,0.363408,0.363408,37.186303,37.841413,37.911794,37.955963,37.324021,37.212085,38,38,38,38,,,,,,,,,,,3096,3096,1.654362,1.654362,1.654362,1.654362,1.654362,1.654362,1.654362,1.654362,0.684906,0.684906,38,38,, +31357,0,0.544364,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.664949,0.15,4,2.177457,2.177457,2.177457,2.177457,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,,,,,,,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,0.751223,0.751223,0.751223,0.751223,0.751223,0.751223,0.751223,0.751223,0.386499,0.386499,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,2.177457,0.751223,0.751223,15,15,, +31360,0,0.99445,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.309642,0.15,4,3.9778,3.9778,3.9778,3.9778,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,,,,,,,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,1.372341,1.372341,1.372341,1.372341,1.372341,1.372341,1.372341,1.372341,0.706059,0.706059,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,3.9778,1.372341,1.372341,15,15,, +18212,0,0.430251,1,1,0,2,4,,4,2,Savage,Rd,1674810,4.515,4.945,0,9.219674,4.5,4.5,0.679344,0.679344,0.679344,0.679344,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.682773,0.690429,0.679344,0.679344,0.682773,0.690429,0.679656,0.67985,0.679344,0.679344,0.679656,0.67985,0.695531,0.692503,0.679344,0.679344,0.695531,0.692503,0.679344,0.679344,0.679344,0.679344,0.679344,0.679344,,,,,,,0.682773,0.690429,0.679656,0.67985,0.695531,0.692503,0.679344,0.679344,0.679344,0.679344,0.282277,0.284574,0.281342,0.2814,0.286105,0.285196,0.281249,0.281249,0.149229,0.149229,37.809207,37.389915,37.982601,37.971742,37.115643,37.277928,38,38,38,38,,,,,,,,,,,3096,3096,0.679344,0.679344,0.679344,0.679344,0.679344,0.679344,0.679344,0.679344,0.281249,0.281249,38,38,, +31358,0,0.573615,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.291759,0.15,4,2.294462,2.294462,2.294462,2.294462,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,,,,,,,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,0.791589,0.791589,0.791589,0.791589,0.791589,0.791589,0.791589,0.791589,0.407267,0.407267,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,2.294462,0.791589,0.791589,15,15,, +17757,0,0.433596,1,1,0,2,5,,4,2,Bemis,Rd,1670503,5.056,5.489,0,9.291338,5.8,4.5,0.963546,0.963546,0.963546,0.963546,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.963573,0.963546,0.963546,0.963546,0.963573,0.963546,0.963546,0.963546,0.963546,0.963546,0.963546,0.963546,0.963547,0.963563,0.963546,0.963546,0.963547,0.963563,0.963546,0.963546,0.963546,0.963546,0.963546,0.963546,,,,,,,0.963573,0.963546,0.963546,0.963546,0.963547,0.963563,0.963546,0.963546,0.963546,0.963546,0.367119,0.367111,0.367111,0.367111,0.367111,0.367116,0.367111,0.367111,0.192227,0.192227,26.999258,26.999995,26.999998,26.999999,26.99999,26.999529,27,27,27,27,,,,,,,,,,,2580,2580,0.963546,0.963546,0.963546,0.963546,0.963546,0.963546,0.963546,0.963546,0.367111,0.367111,27,27,, +18470,0,0.503452,1,1,0,2,4,,4,2,Haggerty,Rd,1670810,3.066,3.569,0,10.788266,4.5,4.5,0.794925,0.794925,0.794925,0.794925,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.982147,0.803055,0.794925,0.794925,0.982147,0.803055,0.81055,0.803342,0.794925,0.794925,0.81055,0.803342,0.844581,0.924448,0.794925,0.794925,0.844581,0.924448,0.794925,0.794925,0.794925,0.794925,0.794925,0.794925,,,,,,,0.982147,0.803055,0.81055,0.803342,0.844581,0.924448,0.794925,0.794925,0.794925,0.794925,0.385265,0.331538,0.333786,0.331624,0.343996,0.367956,0.329099,0.329099,0.174618,0.174618,30.756249,37.615301,37.267457,37.601844,35.765853,32.675878,38,38,38,38,,,,,,,,,,,3096,3096,0.794925,0.794925,0.794925,0.794925,0.794925,0.794925,0.794925,0.794925,0.329099,0.329099,38,38,, +9322,0,0.356067,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.056,1.412,0,7.630017,3,4,0.534101,0.534101,0.534101,0.534101,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.591181,0.536079,0.534101,0.534101,0.591181,0.536079,0.535125,0.53485,0.534101,0.534101,0.535125,0.53485,0.53973,0.572893,0.534101,0.534101,0.53973,0.572893,0.534101,0.534101,0.534101,0.534101,0.534101,0.534101,,,,,,,0.591181,0.536079,0.535125,0.53485,0.53973,0.572893,0.534101,0.534101,0.534101,0.534101,0.241447,0.224916,0.22463,0.224547,0.226011,0.23596,0.224322,0.224322,0.119283,0.119283,36.137887,39.852441,39.923451,39.944023,39.58287,37.291507,40,40,40,40,,,,,,,,,,,3096,3096,0.534101,0.534101,0.534101,0.534101,0.534101,0.534101,0.534101,0.534101,0.224322,0.224322,40,40,, +16540,1,2.391616,3,0,0,1,1,,5,2,N I 275,,1607208,0.264,2.654,0,,1.02,7,2.049956,,2.049956,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.059291,,2.049956,,2.059291,,2.049975,,2.049956,,2.049975,,2.050069,,2.049956,,2.050069,,2.049956,,2.049956,,2.049956,,,,,,,,2.059291,,2.049975,,2.050069,,2.049956,,2.049956,,1.048278,,1.045483,,1.045512,,1.045478,,0.570571,,69.682698,,69.999362,,69.99615,,70,,70,,,,,,,,,,,,22704,,2.049956,,2.049956,,2.049956,,2.049956,,1.045478,,70,,, +16708,0,0.681063,1,1,0,2,4,,5,2,Huron,Rd,1607304,1.009,1.689,0,14.594199,3,4,1.021594,1.021594,1.021594,1.021594,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.087165,1.022978,1.021594,1.021594,1.087165,1.022978,1.023215,1.022517,1.021594,1.021594,1.023215,1.022517,1.030032,1.052932,1.021594,1.021594,1.030032,1.052932,1.021594,1.021594,1.021594,1.021594,1.021594,1.021594,,,,,,,1.087165,1.022978,1.023215,1.022517,1.030032,1.052932,1.021594,1.021594,1.021594,1.021594,0.448741,0.429485,0.429556,0.429346,0.431601,0.438471,0.429069,0.429069,0.228156,0.228156,37.587436,39.945867,39.936618,39.9639,39.672306,38.80949,40,40,40,40,,,,,,,,,,,3096,3096,1.021594,1.021594,1.021594,1.021594,1.021594,1.021594,1.021594,1.021594,0.429069,0.429069,40,40,, +16921,-1,2.315342,0,3,0,1,1,,5,2,S I 275,,1607610,0.397,2.711,0,,1.02,7,,1.984579,,1.984579,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.984609,,1.984579,,1.984609,,1.984587,,1.984579,,1.984587,,1.987818,,1.984579,,1.987818,,1.984579,,1.984579,,1.984579,,,,,,,,1.984609,,1.984587,,1.987818,,1.984579,,1.984579,,1.012144,,1.012138,,1.013107,,1.012135,,0.552374,,69.998921,,69.999696,,69.88594,,70,,70,,,,,,,,,,,,22704,,1.984579,,1.984579,,1.984579,,1.984579,,1.012135,,70,, +18322,0,1.028294,1,1,0,2,4,,5,2,Waltz,Rd,1673810,0,1.028,0,22.034868,3,4,1.542441,1.542441,1.542441,1.542441,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.542608,1.543778,1.542441,1.542441,1.542608,1.543778,1.542729,1.542647,1.542441,1.542441,1.542729,1.542647,1.54454,1.542691,1.542441,1.542441,1.54454,1.542691,1.542441,1.542441,1.542441,1.542441,1.542441,1.542441,,,,,,,1.542608,1.543778,1.542729,1.542647,1.54454,1.542691,1.542441,1.542441,1.542441,1.542441,0.647875,0.648226,0.647911,0.647887,0.648455,0.6479,0.647825,0.647825,0.344478,0.344478,39.995656,39.965357,39.992535,39.994648,39.94563,39.993523,40,40,40,40,,,,,,,,,,,3096,3096,1.542441,1.542441,1.542441,1.542441,1.542441,1.542441,1.542441,1.542441,0.647825,0.647825,40,40,, +19077,0,0.550766,1,1,0,2,5,,5,2,Willow,Rd,1670406,7.149,7.699,0,11.802139,3.7,5,1.101533,1.101533,1.101533,1.101533,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.104099,1.101592,1.101533,1.101533,1.104099,1.101592,1.101536,1.101535,1.101533,1.101533,1.101536,1.101535,1.10175,1.102382,1.101533,1.101533,1.10175,1.102382,1.101533,1.101533,1.101533,1.101533,1.101533,1.101533,,,,,,,1.104099,1.101592,1.101536,1.101535,1.10175,1.102382,1.101533,1.101533,1.101533,1.101533,0.430368,0.429616,0.429599,0.429598,0.429663,0.429852,0.429598,0.429598,0.225814,0.225814,29.930264,29.998397,29.999925,29.999954,29.994088,29.9769,30,30,30,30,,,,,,,,,,,2580,2580,1.101533,1.101533,1.101533,1.101533,1.101533,1.101533,1.101533,1.101533,0.429598,0.429598,30,30,, +31230,0,0.188062,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,4.02991,0.15,4,0.75225,0.75225,0.75225,0.75225,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,,,,,,,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.259526,0.259526,0.259526,0.259526,0.259526,0.259526,0.259526,0.259526,0.133524,0.133524,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.75225,0.259526,0.259526,15,15,, +9323,0,0.887343,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,0.169,1.056,0,19.014502,3,4,1.331015,1.331015,1.331015,1.331015,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.478822,1.336532,1.331015,1.331015,1.478822,1.336532,1.333711,1.333049,1.331015,1.331015,1.333711,1.333049,1.346709,1.435654,1.331015,1.331015,1.346709,1.435654,1.331015,1.331015,1.331015,1.331015,1.331015,1.331015,,,,,,,1.478822,1.336532,1.333711,1.333049,1.346709,1.435654,1.331015,1.331015,1.331015,1.331015,0.603368,0.560681,0.559835,0.559637,0.563735,0.590418,0.559026,0.559026,0.29726,0.29726,36.002031,39.834904,39.919143,39.938971,39.533851,37.084562,40,40,40,40,,,,,,,,,,,3096,3096,1.331015,1.331015,1.331015,1.331015,1.331015,1.331015,1.331015,1.331015,0.559026,0.559026,40,40,, +17902,0,0.106733,1,1,0,2,4,,5,6,Clark,Rd,1670703,0.153,0.26,0,2.287127,3,4,0.160099,0.160099,0.160099,0.160099,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.177878,0.160762,0.160099,0.160099,0.177878,0.160762,0.160423,0.160344,0.160099,0.160099,0.160423,0.160344,0.161987,0.172685,0.160099,0.160099,0.161987,0.172685,0.160099,0.160099,0.160099,0.160099,0.160099,0.160099,,,,,,,0.177878,0.160762,0.160423,0.160344,0.161987,0.172685,0.160099,0.160099,0.160099,0.160099,0.072575,0.067441,0.067339,0.067315,0.067808,0.071017,0.067242,0.067242,0.035755,0.035755,36.002031,39.834904,39.919143,39.938971,39.533851,37.084562,40,40,40,40,,,,,,,,,,,3096,3096,0.160099,0.160099,0.160099,0.160099,0.160099,0.160099,0.160099,0.160099,0.067242,0.067242,40,40,, +17790,0,0.225618,1,1,0,2,4,,5,2,Oakville Waltz,Rd,1670806,0,0.226,0,4.834666,3,4,0.338427,0.338427,0.338427,0.338427,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.376008,0.339829,0.338427,0.338427,0.376008,0.339829,0.339112,0.338944,0.338427,0.338427,0.339112,0.338944,0.342417,0.365032,0.338427,0.338427,0.342417,0.365032,0.338427,0.338427,0.338427,0.338427,0.338427,0.338427,,,,,,,0.376008,0.339829,0.339112,0.338944,0.342417,0.365032,0.338427,0.338427,0.338427,0.338427,0.153414,0.14256,0.142345,0.142294,0.143336,0.150121,0.142139,0.142139,0.075582,0.075582,36.002031,39.834904,39.919143,39.938971,39.533851,37.084562,40,40,40,40,,,,,,,,,,,3096,3096,0.338427,0.338427,0.338427,0.338427,0.338427,0.338427,0.338427,0.338427,0.142139,0.142139,40,40,, +20591,0,0.233879,1,1,0,2,4,,5,6,Oakville Waltz,Rd,4302166,0,0.234,0,5.011693,3,4,0.350819,0.350819,0.350819,0.350819,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.389776,0.352273,0.350819,0.350819,0.389776,0.352273,0.351529,0.351355,0.350819,0.350819,0.351529,0.351355,0.354955,0.378398,0.350819,0.350819,0.354955,0.378398,0.350819,0.350819,0.350819,0.350819,0.350819,0.350819,,,,,,,0.389776,0.352273,0.351529,0.351355,0.354955,0.378398,0.350819,0.350819,0.350819,0.350819,0.159031,0.14778,0.147557,0.147505,0.148585,0.155618,0.147344,0.147344,0.078349,0.078349,36.002031,39.834904,39.919143,39.938971,39.533851,37.084562,40,40,40,40,,,,,,,,,,,3096,3096,0.350819,0.350819,0.350819,0.350819,0.350819,0.350819,0.350819,0.350819,0.147344,0.147344,40,40,, +31231,0,0.768981,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,16.478166,0.15,4,3.075924,3.075924,3.075924,3.075924,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,,,,,,,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,1.061194,1.061194,1.061194,1.061194,1.061194,1.061194,1.061194,1.061194,0.545977,0.545977,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,3.075924,1.061194,1.061194,15,15,, +18615,0,0.521448,1,1,0,2,5,,5,2,Willow,Rd,1670406,6.628,7.149,0,11.173891,3.7,5,1.042897,1.042897,1.042897,1.042897,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.048879,1.042904,1.042897,1.042897,1.048879,1.042904,1.042899,1.042899,1.042897,1.042897,1.042899,1.042899,1.042942,1.044266,1.042897,1.042897,1.042942,1.044266,1.042897,1.042897,1.042897,1.042897,1.042897,1.042897,,,,,,,1.048879,1.042904,1.042899,1.042899,1.042942,1.044266,1.042897,1.042897,1.042897,1.042897,0.408524,0.406732,0.40673,0.40673,0.406743,0.40714,0.40673,0.40673,0.213794,0.213794,29.828902,29.999784,29.999935,29.999929,29.998689,29.960665,30,30,30,30,,,,,,,,,,,2580,2580,1.042897,1.042897,1.042897,1.042897,1.042897,1.042897,1.042897,1.042897,0.40673,0.40673,30,30,, +18745,0,0.750515,1,1,0,2,4,,5,2,Waltz,Rd,1673810,1.588,2.338,0,16.082461,3,4,1.125772,1.125772,1.125772,1.125772,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.144037,1.126112,1.125772,1.125772,1.144037,1.126112,1.126242,1.126025,1.125772,1.125772,1.126242,1.126025,1.127747,1.135012,1.125772,1.125772,1.127747,1.135012,1.125772,1.125772,1.125772,1.125772,1.125772,1.125772,,,,,,,1.144037,1.126112,1.126242,1.126025,1.127747,1.135012,1.125772,1.125772,1.125772,1.125772,0.478304,0.472926,0.472965,0.4729,0.473417,0.475596,0.472824,0.472824,0.251422,0.251422,39.361403,39.987951,39.983305,39.991011,39.929947,39.674365,40,40,40,40,,,,,,,,,,,3096,3096,1.125772,1.125772,1.125772,1.125772,1.125772,1.125772,1.125772,1.125772,0.472824,0.472824,40,40,, +31234,0,0.674639,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,14.456559,0.15,4,2.698558,2.698558,2.698558,2.698558,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,,,,,,,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,0.931002,0.931002,0.931002,0.931002,0.931002,0.931002,0.931002,0.931002,0.478994,0.478994,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,2.698558,0.931002,0.931002,15,15,, +31235,0,0.494098,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,10.587809,0.15,4,1.976391,1.976391,1.976391,1.976391,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,,,,,,,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,0.681855,0.681855,0.681855,0.681855,0.681855,0.681855,0.681855,0.681855,0.350809,0.350809,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,1.976391,0.681855,0.681855,15,15,, +17935,0,0.560246,1,1,0,2,4,,5,2,Waltz,Rd,1673810,1.028,1.588,0,12.005271,3,4,0.840369,0.840369,0.840369,0.840369,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.854731,0.842525,0.840369,0.840369,0.854731,0.842525,0.841074,0.840715,0.840369,0.840369,0.841074,0.840715,0.847631,0.851428,0.840369,0.840369,0.847631,0.851428,0.840369,0.840369,0.840369,0.840369,0.840369,0.840369,,,,,,,0.854731,0.842525,0.841074,0.840715,0.847631,0.851428,0.840369,0.840369,0.840369,0.840369,0.357264,0.353602,0.353166,0.353059,0.355134,0.356273,0.352955,0.352955,0.187682,0.187682,39.327883,39.897653,39.96649,39.98355,39.657309,39.480434,40,40,40,40,,,,,,,,,,,3096,3096,0.840369,0.840369,0.840369,0.840369,0.840369,0.840369,0.840369,0.840369,0.352955,0.352955,40,40,, +18299,0,0.749174,1,1,0,2,4,,5,2,Waltz,Rd,1673810,2.338,3.087,0,16.053737,3,4,1.123762,1.123762,1.123762,1.123762,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.181558,1.123934,1.123762,1.123762,1.181558,1.123934,1.124778,1.12424,1.123762,1.123762,1.124778,1.12424,1.126144,1.148049,1.123762,1.123762,1.126144,1.148049,1.123762,1.123762,1.123762,1.123762,1.123762,1.123762,,,,,,,1.181558,1.123934,1.124778,1.12424,1.126144,1.148049,1.123762,1.123762,1.123762,1.123762,0.489319,0.472032,0.472285,0.472123,0.472695,0.479266,0.47198,0.47198,0.250973,0.250973,38.043396,39.993851,39.963847,39.982977,39.915379,39.153795,40,40,40,40,,,,,,,,,,,3096,3096,1.123762,1.123762,1.123762,1.123762,1.123762,1.123762,1.123762,1.123762,0.47198,0.47198,40,40,, +9293,1,0.389764,1,0,0,1,1,RON,5,6,Will Carleton/S I 275,RAMP,1228308,0,0.39,0,,1.09,4,0.519686,,0.519686,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.519698,,0.519686,,0.519698,,0.519686,,0.519686,,0.519686,,0.519691,,0.519686,,0.519691,,0.519686,,0.519686,,0.519686,,,,,,,,0.519698,,0.519686,,0.519691,,0.519686,,0.519686,,0.226067,,0.226063,,0.226065,,0.226063,,0.120827,,44.998943,,44.999964,,44.9995,,45,,45,,,,,,,,,,,,5160,,0.519686,,0.519686,,0.519686,,0.519686,,0.226063,,45,,, +9317,0,0.291182,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,2.072,2.363,0,6.239606,3,4,0.436772,0.436772,0.436772,0.436772,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.198076,0.438168,0.436772,0.436772,1.198076,0.438168,0.493345,0.437954,0.436772,0.436772,0.493345,0.437954,0.758791,0.454093,0.436772,0.436772,0.758791,0.454093,0.436772,0.436772,0.436772,0.436772,0.436772,0.436772,,,,,,,1.198076,0.438168,0.493345,0.437954,0.758791,0.454093,0.436772,0.436772,0.436772,0.436772,0.411836,0.183863,0.200416,0.183799,0.28005,0.188641,0.183444,0.183444,0.097546,0.097546,14.582461,39.872645,35.413119,39.892068,23.02464,38.474232,40,40,40,40,,,,,,,,,,,3096,3096,0.436772,0.436772,0.436772,0.436772,0.436772,0.436772,0.436772,0.436772,0.183444,0.183444,40,40,, +9324,1,0.405562,1,0,0,1,1,ROF,5,6,N I 275/Will Carleton,RAMP,1228107,0,0.405,0,,2.24,5,0.608343,,0.608343,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.608344,,0.608343,,0.608344,,0.608343,,0.608343,,0.608343,,0.608345,,0.608343,,0.608345,,0.608343,,0.608343,,0.608343,,,,,,,,0.608344,,0.608343,,0.608345,,0.608343,,0.608343,,0.255504,,0.255504,,0.255505,,0.255504,,0.135863,,39.99999,,39.999999,,39.999915,,40,,40,,,,,,,,,,,,5160,,0.608343,,0.608343,,0.608343,,0.608343,,0.255504,,40,,, +9332,1,0.374917,3,0,0,1,1,,5,6,N I 275,,1228001,8.118,8.493,0,,1.02,7,0.321357,,0.321357,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.321524,,0.321357,,0.321524,,0.321358,,0.321357,,0.321358,,0.32136,,0.321357,,0.32136,,0.321357,,0.321357,,0.321357,,,,,,,,0.321524,,0.321358,,0.32136,,0.321357,,0.321357,,0.163942,,0.163892,,0.163893,,0.163892,,0.089444,,69.963695,,69.999918,,69.999463,,70,,70,,,,,,,,,,,,22704,,0.321357,,0.321357,,0.321357,,0.321357,,0.163892,,70,,, +17052,1,0.442129,1,0,0,1,1,ROF,5,2,S I 275/Will Carlton,RAMP,1607609,0,0.442,0,,2.24,5,0.663194,,0.663194,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.663993,,0.663194,,0.663993,,0.663304,,0.663194,,0.663304,,0.694447,,0.663194,,0.694447,,0.663194,,0.663194,,0.663194,,,,,,,,0.663993,,0.663304,,0.694447,,0.663194,,0.663194,,0.278781,,0.278574,,0.287917,,0.278541,,0.148113,,39.951844,,39.993374,,38.199847,,40,,40,,,,,,,,,,,,5160,,0.663194,,0.663194,,0.663194,,0.663194,,0.278541,,40,,, +20641,-1,0.335603,0,3,0,1,1,,5,6,S I 275,,4301662,7.508,7.843,0,,1.02,7,,0.28766,,0.28766,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.28766,,0.28766,,0.28766,,0.28766,,0.28766,,0.28766,,0.287715,,0.28766,,0.287715,,0.28766,,0.28766,,0.28766,,,,,,,,0.28766,,0.28766,,0.287715,,0.28766,,0.28766,,0.146707,,0.146707,,0.146723,,0.146707,,0.080065,,69.999851,,69.999935,,69.986555,,70,,70,,,,,,,,,,,,22704,,0.28766,,0.28766,,0.28766,,0.28766,,0.146707,,70,, +9320,0,0.041331,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.746,1.787,0,0.88567,3,4,0.061997,0.061997,0.061997,0.061997,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.068216,0.062147,0.061997,0.061997,0.068216,0.062147,0.062086,0.062062,0.061997,0.061997,0.062086,0.062062,0.062454,0.066151,0.061997,0.061997,0.062454,0.066151,0.061997,0.061997,0.061997,0.061997,0.061997,0.061997,,,,,,,0.068216,0.062147,0.062086,0.062062,0.062454,0.066151,0.061997,0.061997,0.061997,0.061997,0.027904,0.026084,0.026065,0.026058,0.026176,0.027285,0.026039,0.026039,0.013846,0.013846,36.353427,39.903503,39.942814,39.957832,39.707067,37.488202,40,40,40,40,,,,,,,,,,,3096,3096,0.061997,0.061997,0.061997,0.061997,0.061997,0.061997,0.061997,0.061997,0.026039,0.026039,40,40,, +18649,0,0.039954,1,1,0,2,4,,5,2,Waltz,Rd,1673901,0,0.04,0,0.856163,3,4,0.059931,0.059931,0.059931,0.059931,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.059938,0.05997,0.059931,0.059931,0.059938,0.05997,0.05994,0.059937,0.059931,0.059931,0.05994,0.059937,0.05999,0.059941,0.059931,0.059931,0.05999,0.059941,0.059931,0.059931,0.059931,0.059931,0.059931,0.059931,,,,,,,0.059938,0.05997,0.05994,0.059937,0.05999,0.059941,0.059931,0.059931,0.059931,0.059931,0.025173,0.025183,0.025174,0.025173,0.025189,0.025174,0.025171,0.025171,0.013385,0.013385,39.995656,39.974446,39.994519,39.996014,39.960727,39.993523,40,40,40,40,,,,,,,,,,,3096,3096,0.059931,0.059931,0.059931,0.059931,0.059931,0.059931,0.059931,0.059931,0.025171,0.025171,40,40,, +9321,0,0.334555,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.412,1.746,0,7.169042,3,4,0.501833,0.501833,0.501833,0.501833,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.552171,0.503346,0.501833,0.501833,0.552171,0.503346,0.502689,0.502458,0.501833,0.501833,0.502689,0.502458,0.506354,0.535457,0.501833,0.501833,0.506354,0.535457,0.501833,0.501833,0.501833,0.501833,0.501833,0.501833,,,,,,,0.552171,0.503346,0.502689,0.502458,0.506354,0.535457,0.501833,0.501833,0.501833,0.501833,0.225871,0.211224,0.211027,0.210957,0.212126,0.220857,0.21077,0.21077,0.112076,0.112076,36.353427,39.879747,39.931909,39.950225,39.642827,37.488202,40,40,40,40,,,,,,,,,,,3096,3096,0.501833,0.501833,0.501833,0.501833,0.501833,0.501833,0.501833,0.501833,0.21077,0.21077,40,40,, +18207,0,0.22447,1,1,0,2,4,,5,2,Waltz,Rd,1673901,0.04,0.264,0,4.810065,3,4,0.336705,0.336705,0.336705,0.336705,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.336741,0.336996,0.336705,0.336705,0.336741,0.336996,0.336767,0.33675,0.336705,0.336705,0.336767,0.33675,0.337163,0.336759,0.336705,0.336705,0.337163,0.336759,0.336705,0.336705,0.336705,0.336705,0.336705,0.336705,,,,,,,0.336741,0.336996,0.336767,0.33675,0.337163,0.336759,0.336705,0.336705,0.336705,0.336705,0.141427,0.141503,0.141435,0.141429,0.141553,0.141432,0.141416,0.141416,0.075197,0.075197,39.995656,39.965357,39.992535,39.994648,39.94563,39.993523,40,40,40,40,,,,,,,,,,,3096,3096,0.336705,0.336705,0.336705,0.336705,0.336705,0.336705,0.336705,0.336705,0.141416,0.141416,40,40,, +22184,0,0.034252,1,1,0,2,4,,5,2,Waltz/Oakville Waltz Cutoff,,4704329,0,0.034,0,0.733978,3,4,0.051378,0.051378,0.051378,0.051378,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,,,,,,,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.021579,0.021579,0.021579,0.021579,0.021579,0.021579,0.021579,0.021579,0.011475,0.011475,40,39.999999,40,40,39.999998,40,40,40,40,40,,,,,,,,,,,3096,3096,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.051378,0.021579,0.021579,40,40,, +9319,0,0.230368,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.787,2.018,0,4.936466,3,4,0.345553,0.345553,0.345553,0.345553,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.43934,0.349353,0.345553,0.345553,0.43934,0.349353,0.34815,0.347944,0.345553,0.345553,0.34815,0.347944,0.354931,0.422003,0.345553,0.345553,0.354931,0.422003,0.345553,0.345553,0.345553,0.345553,0.345553,0.345553,,,,,,,0.43934,0.349353,0.34815,0.347944,0.354931,0.422003,0.345553,0.345553,0.345553,0.345553,0.173268,0.146272,0.145911,0.14585,0.147946,0.168067,0.145132,0.145132,0.077173,0.077173,31.461105,39.564857,39.70162,39.725053,38.943096,32.753604,40,40,40,40,,,,,,,,,,,3096,3096,0.345553,0.345553,0.345553,0.345553,0.345553,0.345553,0.345553,0.345553,0.145132,0.145132,40,40,, +9318,0,0.053877,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,2.018,2.072,0,1.154512,3,4,0.080816,0.080816,0.080816,0.080816,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.136226,0.081846,0.080816,0.080816,0.136226,0.081846,0.084428,0.082045,0.080816,0.080816,0.084428,0.082045,0.084383,0.126569,0.080816,0.080816,0.084383,0.126569,0.080816,0.080816,0.080816,0.080816,0.080816,0.080816,,,,,,,0.136226,0.081846,0.084428,0.082045,0.084383,0.126569,0.080816,0.080816,0.080816,0.080816,0.050566,0.034252,0.035026,0.034311,0.035013,0.047669,0.033943,0.033943,0.018049,0.018049,23.729936,39.496725,38.288564,39.400801,38.309247,25.540478,40,40,40,40,,,,,,,,,,,3096,3096,0.080816,0.080816,0.080816,0.080816,0.080816,0.080816,0.080816,0.080816,0.033943,0.033943,40,40,, +16749,-1,0.396703,0,3,0,1,1,,5,2,S I 275,,1607610,0,0.397,0,,1.02,7,,0.340031,,0.340031,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.340032,,0.340031,,0.340032,,0.340031,,0.340031,,0.340031,,0.340096,,0.340031,,0.340096,,0.340031,,0.340031,,0.340031,,,,,,,,0.340032,,0.340031,,0.340096,,0.340031,,0.340031,,0.173416,,0.173416,,0.173435,,0.173416,,0.094642,,69.999851,,69.999935,,69.986555,,70,,70,,,,,,,,,,,,22704,,0.340031,,0.340031,,0.340031,,0.340031,,0.173416,,70,, +16711,1,0.305144,1,0,0,1,1,RON,5,2,Will Carlton/N I 275,RAMP,1607301,0,0.305,0,,1.09,4,0.406859,,0.406859,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.445064,,0.406859,,0.445064,,0.407752,,0.406859,,0.407752,,0.409051,,0.406859,,0.409051,,0.406859,,0.406859,,0.406859,,,,,,,,0.445064,,0.407752,,0.409051,,0.406859,,0.406859,,0.188445,,0.177252,,0.177641,,0.176984,,0.094595,,41.13712,,44.901417,,44.758847,,45,,45,,,,,,,,,,,,5160,,0.406859,,0.406859,,0.406859,,0.406859,,0.176984,,45,,, +16817,1,0.263683,3,0,0,1,1,,5,2,N I 275,,1607208,0,0.264,0,,1.02,7,0.226014,,0.226014,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.226131,,0.226014,,0.226131,,0.226014,,0.226014,,0.226014,,0.226016,,0.226014,,0.226016,,0.226014,,0.226014,,0.226014,,,,,,,,0.226131,,0.226014,,0.226016,,0.226014,,0.226014,,0.115302,,0.115267,,0.115268,,0.115267,,0.062907,,69.963695,,69.999918,,69.999463,,70,,70,,,,,,,,,,,,22704,,0.226014,,0.226014,,0.226014,,0.226014,,0.115267,,70,,, +16701,0,0.164177,2,2,1,2,4,,5,2,Huron,Rd,1607304,2.207,2.371,0,3.518069,3,4,0.246265,0.246265,0.246265,0.246265,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,,,,,,,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.103431,0.103431,0.103431,0.103431,0.103431,0.103431,0.103431,0.103431,0.054999,0.054999,39.999997,40,39.999998,40,39.999977,39.999999,40,40,40,40,,,,,,,,,,,6502,6502,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.246265,0.103431,0.103431,40,40,, +18610,0,0.819237,1,1,0,2,5,,5,2,Willow,Rd,1670406,7.699,8.518,0,17.555068,3.7,5,1.638473,1.638473,1.638473,1.638473,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.643034,1.638864,1.638473,1.638473,1.643034,1.638864,1.638483,1.63848,1.638473,1.638473,1.638483,1.63848,1.639336,1.640267,1.638473,1.638473,1.639336,1.640267,1.638473,1.638473,1.638473,1.638473,1.638473,1.638473,,,,,,,1.643034,1.638864,1.638483,1.63848,1.639336,1.640267,1.638473,1.638473,1.638473,1.638473,0.640373,0.639122,0.639007,0.639007,0.639263,0.639543,0.639004,0.639004,0.335887,0.335887,29.916724,29.992851,29.999821,29.999866,29.984213,29.96719,30,30,30,30,,,,,,,,,,,2580,2580,1.638473,1.638473,1.638473,1.638473,1.638473,1.638473,1.638473,1.638473,0.639004,0.639004,30,30,, +37938,1,0.153424,1,0,0,1,1,RON,5,2,W South Huron/N I 275,RAMP,4718581,0,0.153,0,,1.09,4,0.204565,,0.204565,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.204565,,0.204565,,0.204565,,0.204565,,0.204565,,0.204565,,0.204565,,0.204565,,0.204565,,0.204565,,0.204565,,0.204565,,,,,,,,0.204565,,0.204565,,0.204565,,0.204565,,0.204565,,0.088986,,0.088986,,0.088986,,0.088986,,0.047561,,44.999994,,44.999999,,44.999998,,45,,45,,,,,,,,,,,,5160,,0.204565,,0.204565,,0.204565,,0.204565,,0.088986,,45,,, +31233,0,0.725426,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,15.544842,0.15,4,2.901704,2.901704,2.901704,2.901704,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,,,,,,,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,1.001088,1.001088,1.001088,1.001088,1.001088,1.001088,1.001088,1.001088,0.515052,0.515052,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,2.901704,1.001088,1.001088,15,15,, +31295,0,1.175205,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.182969,0.15,4,4.700821,4.700821,4.700821,4.700821,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,,,,,,,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,1.621783,1.621783,1.621783,1.621783,1.621783,1.621783,1.621783,1.621783,0.834396,0.834396,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,4.700821,1.621783,1.621783,15,15,, +16450,0,0.196606,1,1,0,2,4,,5,2,Huron,Rd,1607304,1.689,1.886,0,4.212991,3,4,0.294909,0.294909,0.294909,0.294909,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.362129,0.298906,0.294909,0.294909,0.362129,0.298906,0.298757,0.297535,0.294909,0.294909,0.298757,0.297535,0.31165,0.334433,0.294909,0.294909,0.31165,0.334433,0.294909,0.294909,0.294909,0.294909,0.294909,0.294909,,,,,,,0.362129,0.298906,0.298757,0.297535,0.31165,0.334433,0.294909,0.294909,0.294909,0.294909,0.144028,0.125061,0.125016,0.12465,0.128884,0.135719,0.123862,0.123862,0.065863,0.065863,32.575027,39.465132,39.484873,39.647022,37.851314,35.27272,40,40,40,40,,,,,,,,,,,3096,3096,0.294909,0.294909,0.294909,0.294909,0.294909,0.294909,0.294909,0.294909,0.123862,0.123862,40,40,, +31232,0,0.783316,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,16.785343,0.15,4,3.133264,3.133264,3.133264,3.133264,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,,,,,,,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,1.080976,1.080976,1.080976,1.080976,1.080976,1.080976,1.080976,1.080976,0.556154,0.556154,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,3.133264,1.080976,1.080976,15,15,, +16071,1,0.321762,1,0,0,1,1,ROF,5,2,S I 275/E South Huron,RAMP,1607703,0,0.322,0,,2.24,5,0.482643,,0.482643,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.482643,,0.482643,,0.482643,,0.482643,,0.482643,,0.482643,,0.482643,,0.482643,,0.482643,,0.482643,,0.482643,,0.482643,,,,,,,,0.482643,,0.482643,,0.482643,,0.482643,,0.482643,,0.20271,,0.20271,,0.20271,,0.20271,,0.10779,,40,,40,,40,,40,,40,,,,,,,,,,,,5160,,0.482643,,0.482643,,0.482643,,0.482643,,0.20271,,40,,, +16337,1,0.362703,1,0,0,1,1,RON,5,2,South Huron/S I 275,RAMP,1607702,0,0.363,0,,1.09,4,0.483604,,0.483604,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.483617,,0.483604,,0.483617,,0.483607,,0.483604,,0.483607,,0.483641,,0.483604,,0.483641,,0.483604,,0.483604,,0.483604,,,,,,,,0.483617,,0.483607,,0.483641,,0.483604,,0.483604,,0.210372,,0.210368,,0.210379,,0.210368,,0.112438,,44.998755,,44.999718,,44.99655,,45,,45,,,,,,,,,,,,5160,,0.483604,,0.483604,,0.483604,,0.483604,,0.210368,,45,,, +16446,0,0.190268,2,2,1,2,4,,5,2,Huron,Rd,1607304,2.017,2.207,0,4.07718,3,4,0.285403,0.285403,0.285403,0.285403,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.286854,0.285409,0.285403,0.285403,0.286854,0.285409,0.285461,0.285404,0.285403,0.285403,0.285461,0.285404,0.285577,0.285413,0.285403,0.285403,0.285577,0.285413,0.285403,0.285403,0.285403,0.285403,0.285403,0.285403,,,,,,,0.286854,0.285409,0.285461,0.285404,0.285577,0.285413,0.285403,0.285403,0.285403,0.285403,0.120305,0.119871,0.119886,0.119869,0.119921,0.119872,0.119869,0.119869,0.06374,0.06374,39.797602,39.999121,39.991882,39.999826,39.975629,39.998557,40,40,40,40,,,,,,,,,,,6502,6502,0.285403,0.285403,0.285403,0.285403,0.285403,0.285403,0.285403,0.285403,0.119869,0.119869,40,40,, +16453,1,0.405659,1,0,0,1,1,ROF,5,2,N I 275/South Huron,RAMP,1607303,0,0.406,0,,2.24,5,0.608488,,0.608488,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.608489,,0.608488,,0.608489,,0.608488,,0.608488,,0.608488,,0.60849,,0.608488,,0.60849,,0.608488,,0.608488,,0.608488,,,,,,,,0.608489,,0.608488,,0.60849,,0.608488,,0.608488,,0.255565,,0.255565,,0.255566,,0.255565,,0.135896,,39.999907,,39.999991,,39.999867,,40,,40,,,,,,,,,,,,5160,,0.608488,,0.608488,,0.608488,,0.608488,,0.255565,,40,,, +16618,-1,0.283605,0,3,0,1,1,,5,2,S I 275,,1607610,2.711,2.995,0,,1.02,7,,0.24309,,0.24309,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.243092,,0.24309,,0.243092,,0.243091,,0.24309,,0.243091,,0.243362,,0.24309,,0.243362,,0.24309,,0.24309,,0.24309,,,,,,,,0.243092,,0.243091,,0.243362,,0.24309,,0.24309,,0.123976,,0.123976,,0.124058,,0.123976,,0.06766,,69.999392,,69.99981,,69.921596,,70,,70,,,,,,,,,,,,22704,,0.24309,,0.24309,,0.24309,,0.24309,,0.123976,,70,, +16702,0,0.131002,2,2,1,2,4,,5,2,Huron,Rd,1607304,1.886,2.017,0,2.807194,3,4,0.196504,0.196504,0.196504,0.196504,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.197366,0.196508,0.196504,0.196504,0.197366,0.196508,0.196535,0.196504,0.196504,0.196504,0.196535,0.196504,0.196583,0.196511,0.196504,0.196504,0.196583,0.196511,0.196504,0.196504,0.196504,0.196504,0.196504,0.196504,,,,,,,0.197366,0.196508,0.196535,0.196504,0.196583,0.196511,0.196504,0.196504,0.196504,0.196504,0.08279,0.082533,0.082541,0.082532,0.082555,0.082534,0.082532,0.082532,0.043886,0.043886,39.825221,39.999121,39.993601,39.999826,39.983826,39.998557,40,40,40,40,,,,,,,,,,,6502,6502,0.196504,0.196504,0.196504,0.196504,0.196504,0.196504,0.196504,0.196504,0.082532,0.082532,40,40,, +16691,1,0.054736,1,0,0,1,1,RON,5,2,South Huron/N I 275,RAMP,1607305,0,0.055,0,,1.09,4,0.072982,,0.072982,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.073257,,0.072982,,0.073257,,0.072991,,0.072982,,0.072991,,0.073003,,0.072982,,0.073003,,0.072982,,0.072982,,0.072982,,,,,,,,0.073257,,0.072991,,0.073003,,0.072982,,0.072982,,0.03183,,0.03175,,0.031754,,0.031747,,0.016968,,44.830553,,44.994478,,44.986577,,45,,45,,,,,,,,,,,,5160,,0.072982,,0.072982,,0.072982,,0.072982,,0.031747,,45,,, +31294,0,0.508792,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,10.902687,0.15,4,2.035168,2.035168,2.035168,2.035168,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,,,,,,,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,0.702133,0.702133,0.702133,0.702133,0.702133,0.702133,0.702133,0.702133,0.361242,0.361242,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,2.035168,0.702133,0.702133,15,15,, +16445,0,0.018913,2,2,1,2,5,,5,2,Huron,Rd,1607304,2.371,2.39,0,0.405279,3.7,5,0.037826,0.037826,0.037826,0.037826,30,30,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,,,,,,,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.014752,0.014752,0.014752,0.014752,0.014752,0.014752,0.014752,0.014752,0.007754,0.007754,30,29.999999,30,30,29.999999,29.999999,30,30,30,30,,,,,,,,,,,5418,5418,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.037826,0.014752,0.014752,30,30,, +12232,0,0.562308,2,2,0,2,4,,4,2,Eureka,Rd,1578308,0,0.562,0,12.049466,4.5,4.5,0.887855,0.887855,0.887855,0.887855,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.887866,0.887892,0.887855,0.887855,0.887866,0.887892,0.887864,0.887879,0.887855,0.887855,0.887864,0.887879,0.887948,0.887906,0.887855,0.887855,0.887948,0.887906,0.887855,0.887855,0.887855,0.887855,0.887855,0.887855,,,,,,,0.887866,0.887892,0.887864,0.887879,0.887948,0.887906,0.887855,0.887855,0.887855,0.887855,0.367575,0.367583,0.367575,0.367579,0.3676,0.367587,0.367572,0.367572,0.195032,0.195032,37.999541,37.998424,37.99965,37.998985,37.996023,37.997839,38,38,38,38,,,,,,,,,,,6192,6192,0.887855,0.887855,0.887855,0.887855,0.887855,0.887855,0.887855,0.887855,0.367572,0.367572,38,38,, +16404,0,0.227016,1,1,0,2,4,,5,2,Sibley,Rd,1607308,0.394,0.621,0,4.864623,3,4,0.340524,0.340524,0.340524,0.340524,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.353616,0.341997,0.340524,0.340524,0.353616,0.341997,0.346353,0.344607,0.340524,0.340524,0.346353,0.344607,0.347914,0.361875,0.340524,0.340524,0.347914,0.361875,0.340524,0.340524,0.340524,0.340524,0.340524,0.340524,,,,,,,0.353616,0.341997,0.346353,0.344607,0.347914,0.361875,0.340524,0.340524,0.340524,0.340524,0.146948,0.143462,0.144769,0.144245,0.145237,0.149425,0.14302,0.14302,0.07605,0.07605,38.518999,39.827708,39.326711,39.526,39.15035,37.639883,40,40,40,40,,,,,,,,,,,3096,3096,0.340524,0.340524,0.340524,0.340524,0.340524,0.340524,0.340524,0.340524,0.14302,0.14302,40,40,, +16493,-1,1.23973,0,3,0,1,1,,4,2,S I 275,,1607610,5.407,6.647,0,,0.8,7.5,,1.062626,,1.062626,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.062686,,1.062626,,1.062686,,1.062636,,1.062626,,1.062636,,1.069364,,1.062626,,1.069364,,1.062626,,1.062626,,1.062626,,,,,,,,1.062686,,1.062636,,1.069364,,1.062626,,1.062626,,0.541957,,0.541942,,0.543961,,0.541939,,0.295764,,69.99603,,69.999326,,69.558943,,70,,70,,,,,,,,,,,,22704,,1.062626,,1.062626,,1.062626,,1.062626,,0.541939,,70,, +16511,1,1.297844,3,0,0,1,1,,5,2,N I 275,,1607208,5.305,6.603,0,,1.02,7,1.112438,,1.112438,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.149394,,1.112438,,1.149394,,1.112509,,1.112438,,1.112509,,1.112986,,1.112438,,1.112986,,1.112438,,1.112438,,1.112438,,,,,,,,1.149394,,1.112509,,1.112986,,1.112438,,1.112438,,0.57843,,0.567365,,0.567508,,0.567343,,0.309629,,67.749306,,69.995521,,69.965545,,70,,70,,,,,,,,,,,,22704,,1.112438,,1.112438,,1.112438,,1.112438,,0.567343,,70,,, +16689,0,0.687341,1,1,0,2,5,,5,2,Huron River,Dr,1607306,0,0.687,0,14.72874,3.7,5,1.374682,1.374682,1.374682,1.374682,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.375681,1.378123,1.374682,1.374682,1.375681,1.378123,1.374696,1.374697,1.374682,1.374682,1.374696,1.374697,1.377413,1.376205,1.374682,1.374682,1.377413,1.376205,1.374682,1.374682,1.374682,1.374682,1.374682,1.374682,,,,,,,1.375681,1.378123,1.374696,1.374697,1.377413,1.376205,1.374682,1.374682,1.374682,1.374682,0.536426,0.537158,0.53613,0.53613,0.536945,0.536583,0.536126,0.536126,0.28181,0.28181,29.97823,29.925111,29.999705,29.999692,29.940522,29.966807,30,30,30,30,,,,,,,,,,,2580,2580,1.374682,1.374682,1.374682,1.374682,1.374682,1.374682,1.374682,1.374682,0.536126,0.536126,30,30,, +17723,0,1.459591,1,1,0,2,5,,5,2,Hannan,Rd,1710309,0,1.459,0,31.276948,3.7,5,2.919182,2.919182,2.919182,2.919182,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,,,,,,,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,1.138481,1.138481,1.138481,1.138481,1.138481,1.138481,1.138481,1.138481,0.598432,0.598432,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,2.919182,1.138481,1.138481,30,30,, +18218,0,0.994078,1,1,0,2,4,,5,2,Huron River,Dr,1673810,5.076,6.07,0,21.30167,3,4,1.491117,1.491117,1.491117,1.491117,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.659457,1.491529,1.491117,1.491117,1.659457,1.491529,1.491198,1.491186,1.491117,1.491117,1.491198,1.491186,1.493136,1.561268,1.491117,1.491117,1.493136,1.561268,1.491117,1.491117,1.491117,1.491117,1.491117,1.491117,,,,,,,1.659457,1.491529,1.491198,1.491186,1.493136,1.561268,1.491117,1.491117,1.491117,1.491117,0.676771,0.626393,0.626293,0.62629,0.626875,0.647314,0.626269,0.626269,0.333016,0.333016,35.942276,39.988937,39.997822,39.998142,39.945896,38.202709,40,40,40,40,,,,,,,,,,,3096,3096,1.491117,1.491117,1.491117,1.491117,1.491117,1.491117,1.491117,1.491117,0.626269,0.626269,40,40,, +18367,0,0.758633,1,1,0,2,5,,5,2,Vining,Rd,1670406,13.52,14.279,0,16.256431,3.7,5,1.517267,1.517267,1.517267,1.517267,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.517343,1.517267,1.517267,1.517267,1.517343,1.517267,1.517267,1.517267,1.517267,1.517267,1.517267,1.517267,1.517267,1.517338,1.517267,1.517267,1.517267,1.517338,1.517267,1.517267,1.517267,1.517267,1.517267,1.517267,,,,,,,1.517343,1.517267,1.517267,1.517267,1.517267,1.517338,1.517267,1.517267,1.517267,1.517267,0.591757,0.591734,0.591734,0.591734,0.591734,0.591756,0.591734,0.591734,0.31104,0.31104,29.998496,30,29.999997,29.999991,29.999999,29.998585,30,30,30,30,,,,,,,,,,,2580,2580,1.517267,1.517267,1.517267,1.517267,1.517267,1.517267,1.517267,1.517267,0.591734,0.591734,30,30,, +18442,0,0.473369,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,0.662,1.135,0,10.143627,4.5,4.5,0.747425,0.747425,0.747425,0.747425,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.748726,0.747534,0.747425,0.747425,0.748726,0.747534,0.747426,0.747433,0.747425,0.747425,0.747426,0.747433,0.747631,0.749066,0.747425,0.747425,0.747631,0.749066,0.747425,0.747425,0.747425,0.747425,0.747425,0.747425,,,,,,,0.748726,0.747534,0.747426,0.747433,0.747631,0.749066,0.747425,0.747425,0.747425,0.747425,0.309824,0.309467,0.309434,0.309436,0.309496,0.309926,0.309434,0.309434,0.164184,0.164184,37.933974,37.99448,37.999982,37.999623,37.989545,37.916753,38,38,38,38,,,,,,,,,,,3096,3096,0.747425,0.747425,0.747425,0.747425,0.747425,0.747425,0.747425,0.747425,0.309434,0.309434,38,38,, +30598,0,1.451048,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,31.093894,0.15,4,5.804193,5.804193,5.804193,5.804193,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,,,,,,,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,2.002447,2.002447,2.002447,2.002447,2.002447,2.002447,2.002447,2.002447,1.030244,1.030244,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,5.804193,2.002447,2.002447,15,15,, +31219,0,0.68264,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,14.628004,0.15,4,2.730561,2.730561,2.730561,2.730561,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,,,,,,,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,0.942043,0.942043,0.942043,0.942043,0.942043,0.942043,0.942043,0.942043,0.484675,0.484675,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,2.730561,0.942043,0.942043,15,15,, +31237,0,1.057686,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,22.664699,0.15,4,4.230744,4.230744,4.230744,4.230744,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,,,,,,,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,1.459607,1.459607,1.459607,1.459607,1.459607,1.459607,1.459607,1.459607,0.750957,0.750957,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,4.230744,1.459607,1.459607,15,15,, +31242,0,0.502954,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,10.777577,0.15,4,2.011814,2.011814,2.011814,2.011814,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,,,,,,,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,0.694076,0.694076,0.694076,0.694076,0.694076,0.694076,0.694076,0.694076,0.357097,0.357097,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,2.011814,0.694076,0.694076,15,15,, +31243,0,0.498722,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,10.686907,0.15,4,1.994889,1.994889,1.994889,1.994889,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,,,,,,,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,0.688237,0.688237,0.688237,0.688237,0.688237,0.688237,0.688237,0.688237,0.354093,0.354093,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,1.994889,0.688237,0.688237,15,15,, +31371,0,0.668381,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.322448,0.15,4,2.673524,2.673524,2.673524,2.673524,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,,,,,,,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,0.922366,0.922366,0.922366,0.922366,0.922366,0.922366,0.922366,0.922366,0.47455,0.47455,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,2.673524,0.922366,0.922366,15,15,, +17899,0,0.32216,1,1,0,2,4,,5,2,Gentz,Rd,1674108,0,0.322,0,6.903424,3,4,0.48324,0.48324,0.48324,0.48324,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.486596,0.484169,0.48324,0.48324,0.486596,0.484169,0.483865,0.48365,0.48324,0.48324,0.483865,0.48365,0.486108,0.488396,0.48324,0.48324,0.486108,0.488396,0.48324,0.48324,0.48324,0.48324,0.48324,0.48324,,,,,,,0.486596,0.484169,0.483865,0.48365,0.486108,0.488396,0.48324,0.48324,0.48324,0.48324,0.203968,0.203239,0.203148,0.203084,0.203821,0.204508,0.202961,0.202961,0.107924,0.107924,39.724115,39.923216,39.948307,39.966046,39.764019,39.57767,40,40,40,40,,,,,,,,,,,3096,3096,0.48324,0.48324,0.48324,0.48324,0.48324,0.48324,0.48324,0.48324,0.202961,0.202961,40,40,, +18236,0,0.367139,1,1,0,2,4,,5,2,Waltz,Rd,1673810,4.082,4.449,0,7.867265,3,4,0.550709,0.550709,0.550709,0.550709,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.558115,0.550712,0.550709,0.550709,0.558115,0.550712,0.550718,0.550714,0.550709,0.550709,0.550718,0.550714,0.550731,0.554317,0.550709,0.550709,0.550731,0.554317,0.550709,0.550709,0.550709,0.550709,0.550709,0.550709,,,,,,,0.558115,0.550712,0.550718,0.550714,0.550731,0.554317,0.550709,0.550709,0.550709,0.550709,0.233519,0.231299,0.2313,0.231299,0.231304,0.23238,0.231298,0.231298,0.122992,0.122992,39.469213,39.99976,39.999321,39.999575,39.998351,39.739604,40,40,40,40,,,,,,,,,,,3096,3096,0.550709,0.550709,0.550709,0.550709,0.550709,0.550709,0.550709,0.550709,0.231298,0.231298,40,40,, +19176,0,0.592919,1,1,0,2,4,,5,2,Savage,Rd,1670810,0,0.593,0,12.705407,3,4,0.889378,0.889378,0.889378,0.889378,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.910456,0.974081,0.889378,0.889378,0.910456,0.974081,0.891287,0.8915,0.889378,0.889378,0.891287,0.8915,0.988435,0.923232,0.889378,0.889378,0.988435,0.923232,0.889378,0.889378,0.889378,0.889378,0.889378,0.889378,,,,,,,0.910456,0.974081,0.891287,0.8915,0.988435,0.923232,0.889378,0.889378,0.889378,0.889378,0.379862,0.39895,0.374112,0.374175,0.403256,0.383695,0.373539,0.373539,0.198628,0.198628,39.073991,36.521754,39.914331,39.9048,35.991392,38.533269,40,40,40,40,,,,,,,,,,,3096,3096,0.889378,0.889378,0.889378,0.889378,0.889378,0.889378,0.889378,0.889378,0.373539,0.373539,40,40,, +19202,0,0.760096,1,1,0,2,5,,5,2,Judd,Rd,1670809,0,0.76,0,16.287778,3.7,5,1.520193,1.520193,1.520193,1.520193,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.528774,1.520194,1.520193,1.520193,1.528774,1.520194,1.520213,1.520199,1.520193,1.520193,1.520213,1.520199,1.520221,1.524542,1.520193,1.520193,1.520221,1.524542,1.520193,1.520193,1.520193,1.520193,1.520193,1.520193,,,,,,,1.528774,1.520194,1.520213,1.520199,1.520221,1.524542,1.520193,1.520193,1.520193,1.520193,0.595449,0.592875,0.592881,0.592877,0.592884,0.59418,0.592875,0.592875,0.311639,0.311639,29.831612,29.999978,29.999597,29.999868,29.999443,29.914421,30,30,30,30,,,,,,,,,,,2580,2580,1.520193,1.520193,1.520193,1.520193,1.520193,1.520193,1.520193,1.520193,0.592875,0.592875,30,30,, +31241,0,0.514963,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.034927,0.15,4,2.059853,2.059853,2.059853,2.059853,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,,,,,,,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,0.710649,0.710649,0.710649,0.710649,0.710649,0.710649,0.710649,0.710649,0.365624,0.365624,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,2.059853,0.710649,0.710649,15,15,, +17470,0,0.314048,1,1,0,2,5,,5,2,Clark,Rd,1670703,4.059,4.373,0,6.729608,3.7,5,0.628097,0.628097,0.628097,0.628097,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.631642,0.628097,0.628097,0.628097,0.631642,0.628097,0.628105,0.6281,0.628097,0.628097,0.628105,0.6281,0.628108,0.629894,0.628097,0.628097,0.628108,0.629894,0.628097,0.628097,0.628097,0.628097,0.628097,0.628097,,,,,,,0.631642,0.628097,0.628105,0.6281,0.628108,0.629894,0.628097,0.628097,0.628097,0.628097,0.246021,0.244958,0.24496,0.244959,0.244961,0.245497,0.244958,0.244958,0.12876,0.12876,29.831612,29.999978,29.999597,29.999868,29.999443,29.914421,30,30,30,30,,,,,,,,,,,2580,2580,0.628097,0.628097,0.628097,0.628097,0.628097,0.628097,0.628097,0.628097,0.244958,0.244958,30,30,, +19150,0,0.714348,1,1,0,2,4,,5,2,Savage,Rd,1670810,0.593,1.307,0,15.30746,3,4,1.071522,1.071522,1.071522,1.071522,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.09527,1.227726,1.071522,1.071522,1.09527,1.227726,1.075888,1.076118,1.071522,1.071522,1.075888,1.076118,1.259396,1.115539,1.071522,1.071522,1.259396,1.115539,1.071522,1.071522,1.071522,1.071522,1.071522,1.071522,,,,,,,1.09527,1.227726,1.075888,1.076118,1.259396,1.115539,1.071522,1.071522,1.071522,1.071522,0.457164,0.496901,0.451349,0.451418,0.506401,0.463244,0.450039,0.450039,0.239307,0.239307,39.132701,34.910779,39.837702,39.829179,34.032905,38.421687,40,40,40,40,,,,,,,,,,,3096,3096,1.071522,1.071522,1.071522,1.071522,1.071522,1.071522,1.071522,1.071522,0.450039,0.450039,40,40,, +31240,0,0.263673,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,5.65014,0.15,4,1.054693,1.054693,1.054693,1.054693,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,,,,,,,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,0.363869,0.363869,0.363869,0.363869,0.363869,0.363869,0.363869,0.363869,0.187208,0.187208,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,1.054693,0.363869,0.363869,15,15,, +17768,0,0.248608,1,1,0,2,4,,5,2,Judd,Rd,1670809,0.76,1.008,0,5.327307,3,4,0.372912,0.372912,0.372912,0.372912,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.378912,0.373275,0.372912,0.372912,0.378912,0.373275,0.372937,0.372938,0.372912,0.372912,0.372937,0.372938,0.373537,0.377136,0.372912,0.372912,0.373537,0.377136,0.372912,0.372912,0.372912,0.372912,0.372912,0.372912,,,,,,,0.378912,0.373275,0.372937,0.372938,0.373537,0.377136,0.372912,0.372912,0.372912,0.372912,0.158423,0.156732,0.15663,0.156631,0.15681,0.15789,0.156623,0.156623,0.083284,0.083284,39.366521,39.961009,39.997292,39.997198,39.933057,39.551945,40,40,40,40,,,,,,,,,,,3096,3096,0.372912,0.372912,0.372912,0.372912,0.372912,0.372912,0.372912,0.372912,0.156623,0.156623,40,40,, +18674,0,0.652274,1,1,0,2,4,,5,2,Waltz,Rd,1673810,3.43,4.082,0,13.977308,3,4,0.978412,0.978412,0.978412,0.978412,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.987396,0.979914,0.978412,0.978412,0.987396,0.979914,0.978986,0.978878,0.978412,0.978412,0.978986,0.978878,0.982368,0.990394,0.978412,0.978412,0.982368,0.990394,0.978412,0.978412,0.978412,0.978412,0.978412,0.978412,,,,,,,0.987396,0.979914,0.978986,0.978878,0.982368,0.990394,0.978412,0.978412,0.978412,0.978412,0.413628,0.411384,0.411105,0.411073,0.41212,0.414527,0.410933,0.410933,0.218512,0.218512,39.636021,39.938671,39.976517,39.980926,39.838899,39.516067,40,40,40,40,,,,,,,,,,,3096,3096,0.978412,0.978412,0.978412,0.978412,0.978412,0.978412,0.978412,0.978412,0.410933,0.410933,40,40,, +31220,0,0.496946,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,10.648851,0.15,4,1.987785,1.987785,1.987785,1.987785,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,,,,,,,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,0.685786,0.685786,0.685786,0.685786,0.685786,0.685786,0.685786,0.685786,0.352832,0.352832,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,1.987785,0.685786,0.685786,15,15,, +31221,0,0.296723,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,6.358355,0.15,4,1.186893,1.186893,1.186893,1.186893,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,,,,,,,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,0.409478,0.409478,0.409478,0.409478,0.409478,0.409478,0.409478,0.409478,0.210674,0.210674,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,1.186893,0.409478,0.409478,15,15,, +16656,0,0.394167,1,1,0,2,4,,5,2,Sibley,Rd,1607308,0,0.394,0,8.446433,3,4,0.59125,0.59125,0.59125,0.59125,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.613885,0.592257,0.59125,0.59125,0.613885,0.592257,0.599128,0.596177,0.59125,0.59125,0.599128,0.596177,0.599054,0.624234,0.59125,0.59125,0.599054,0.624234,0.59125,0.59125,0.59125,0.59125,0.59125,0.59125,,,,,,,0.613885,0.592257,0.599128,0.596177,0.599054,0.624234,0.59125,0.59125,0.59125,0.59125,0.255116,0.248627,0.250688,0.249803,0.250666,0.25822,0.248325,0.248325,0.132046,0.132046,38.52515,39.931998,39.474075,39.669475,39.47896,37.886439,40,40,40,40,,,,,,,,,,,3096,3096,0.59125,0.59125,0.59125,0.59125,0.59125,0.59125,0.59125,0.59125,0.248325,0.248325,40,40,, +17842,0,0.447172,1,1,0,2,4,,5,2,Waltz,Rd,1673810,4.449,4.896,0,9.582262,3,4,0.670758,0.670758,0.670758,0.670758,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.931172,0.673477,0.670758,0.670758,0.931172,0.673477,0.673302,0.672205,0.670758,0.670758,0.673302,0.672205,0.681452,0.86244,0.670758,0.670758,0.681452,0.86244,0.670758,0.670758,0.670758,0.670758,0.670758,0.670758,,,,,,,0.931172,0.673477,0.673302,0.672205,0.681452,0.86244,0.670758,0.670758,0.670758,0.670758,0.359843,0.282534,0.282482,0.282153,0.284926,0.339223,0.281719,0.281719,0.149803,0.149803,28.813512,39.838515,39.848882,39.913903,39.372327,31.109808,40,40,40,40,,,,,,,,,,,3096,3096,0.670758,0.670758,0.670758,0.670758,0.670758,0.670758,0.670758,0.670758,0.281719,0.281719,40,40,, +18658,0,0.180693,1,1,0,2,4,,5,2,Huron River,Dr,1673810,4.896,5.076,0,3.871988,3,4,0.271039,0.271039,0.271039,0.271039,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.398511,0.271869,0.271039,0.271039,0.398511,0.271869,0.273571,0.272647,0.271039,0.271039,0.273571,0.272647,0.275963,0.366202,0.271039,0.271039,0.275963,0.366202,0.271039,0.271039,0.271039,0.271039,0.271039,0.271039,,,,,,,0.398511,0.271869,0.273571,0.272647,0.275963,0.366202,0.271039,0.271039,0.271039,0.271039,0.152078,0.114085,0.114596,0.114319,0.115313,0.142385,0.113836,0.113836,0.060532,0.060532,27.205197,39.877912,39.629796,39.76412,39.286359,29.605464,40,40,40,40,,,,,,,,,,,3096,3096,0.271039,0.271039,0.271039,0.271039,0.271039,0.271039,0.271039,0.271039,0.113836,0.113836,40,40,, +18269,0,0.153698,1,1,0,2,9,,5,2,South Metro,Pkwy,1674109,0,0.154,0,3.293534,5.8,6,0.263483,0.263483,0.263483,0.263483,35,35,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.26399,0.301155,0.263483,0.263483,0.26399,0.301155,0.263597,0.26373,0.263483,0.263483,0.263597,0.26373,0.305736,0.266059,0.263483,0.263483,0.305736,0.266059,0.263483,0.263483,0.263483,0.263483,0.263483,0.263483,,,,,,,0.26399,0.301155,0.263597,0.26373,0.305736,0.266059,0.263483,0.263483,0.263483,0.263483,0.106863,0.118012,0.106745,0.106785,0.119387,0.107483,0.106711,0.106711,0.056429,0.056429,34.932693,30.621713,34.984836,34.967222,30.162896,34.661074,35,35,35,35,,,,,,,,,,,2064,2064,0.263483,0.263483,0.263483,0.263483,0.263483,0.263483,0.263483,0.263483,0.106711,0.106711,35,35,, +17464,0,0.083732,1,1,0,2,9,,5,2,Gentz,Rd,1674108,0.322,0.406,0,1.794256,5.8,6,0.143541,0.143541,0.143541,0.143541,35,35,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.164064,0.143817,0.143541,0.143541,0.164064,0.143817,0.143675,0.143603,0.143541,0.143541,0.143675,0.143603,0.144944,0.16656,0.143541,0.143541,0.144944,0.16656,0.143541,0.143541,0.143541,0.143541,0.143541,0.143541,,,,,,,0.164064,0.143817,0.143675,0.143603,0.144944,0.16656,0.143541,0.143541,0.143541,0.143541,0.064291,0.058217,0.058174,0.058153,0.058555,0.06504,0.058134,0.058134,0.030742,0.030742,30.621713,34.932693,34.967222,34.984836,34.661074,30.162896,35,35,35,35,,,,,,,,,,,2064,2064,0.143541,0.143541,0.143541,0.143541,0.143541,0.143541,0.143541,0.143541,0.058134,0.058134,35,35,, +17724,0,1.266874,1,1,0,2,5,,4,2,Hannan,Rd,1710309,1.459,2.726,0,27.147291,5.8,4.5,2.815275,2.815275,2.815275,2.815275,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,,,,,,,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,1.07262,1.07262,1.07262,1.07262,1.07262,1.07262,1.07262,1.07262,0.561647,0.561647,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,2.815275,1.07262,1.07262,27,27,, +17820,0,0.74559,1,1,0,2,4,,4,2,Huron River,Dr,1673810,6.07,6.816,0,15.97692,4.5,4.5,1.177247,1.177247,1.177247,1.177247,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.224252,1.177313,1.177247,1.177247,1.224252,1.177313,1.177288,1.177251,1.177247,1.177247,1.177288,1.177251,1.177837,1.192496,1.177247,1.177247,1.177837,1.192496,1.177247,1.177247,1.177247,1.177247,1.177247,1.177247,,,,,,,1.224252,1.177313,1.177288,1.177251,1.177837,1.192496,1.177247,1.177247,1.177247,1.177247,0.501482,0.4874,0.487393,0.487381,0.487557,0.491955,0.48738,0.48738,0.258602,0.258602,36.540983,37.997847,37.998671,37.999873,37.980961,37.514083,38,38,38,38,,,,,,,,,,,3096,3096,1.177247,1.177247,1.177247,1.177247,1.177247,1.177247,1.177247,1.177247,0.48738,0.48738,38,38,, +18915,0,0.661825,1,1,0,2,5,,4,2,Pennsylvania,Rd,1674307,0,0.662,0,14.181972,5.8,4.5,1.470723,1.470723,1.470723,1.470723,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,,,,,,,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,0.560345,0.560345,0.560345,0.560345,0.560345,0.560345,0.560345,0.560345,0.293409,0.293409,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,1.470723,0.560345,0.560345,27,27,, +31362,0,0.563241,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.069449,0.15,4,2.252964,2.252964,2.252964,2.252964,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,,,,,,,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,0.777273,0.777273,0.777273,0.777273,0.777273,0.777273,0.777273,0.777273,0.399901,0.399901,15,14.999999,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,2.252964,0.777273,0.777273,15,15,, +30873,0,0.500138,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.71724,0.15,4,2.000551,2.000551,2.000551,2.000551,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,,,,,,,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,0.69019,0.69019,0.69019,0.69019,0.69019,0.69019,0.69019,0.69019,0.355098,0.355098,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,2.000551,0.69019,0.69019,15,15,, +18217,0,0.623306,1,1,0,2,4,,4,2,Huron River,Dr,1673810,7.061,7.684,0,13.356553,4.5,4.5,0.984167,0.984167,0.984167,0.984167,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.025329,0.985697,0.984167,0.984167,1.025329,0.985697,0.985537,0.984534,0.984167,0.984167,0.985537,0.984534,0.98997,1.021622,0.984167,0.984167,0.98997,1.021622,0.984167,0.984167,0.984167,0.984167,0.984167,0.984167,,,,,,,1.025329,0.985697,0.985537,0.984534,0.98997,1.021622,0.984167,0.984167,0.984167,0.984167,0.419794,0.407904,0.407856,0.407555,0.409186,0.418682,0.407445,0.407445,0.216189,0.216189,36.474481,37.941036,37.947179,37.985836,37.777253,36.606849,38,38,38,38,,,,,,,,,,,3096,3096,0.984167,0.984167,0.984167,0.984167,0.984167,0.984167,0.984167,0.984167,0.407445,0.407445,38,38,, +18657,0,0.245577,1,1,0,2,4,,4,2,Huron River,Dr,1673810,6.816,7.061,0,5.262363,4.5,4.5,0.387753,0.387753,0.387753,0.387753,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.403779,0.387775,0.387753,0.387753,0.403779,0.387775,0.387767,0.387754,0.387753,0.387753,0.387767,0.387754,0.387947,0.392776,0.387753,0.387753,0.387947,0.392776,0.387753,0.387753,0.387753,0.387753,0.387753,0.387753,,,,,,,0.403779,0.387775,0.387767,0.387754,0.387947,0.392776,0.387753,0.387753,0.387753,0.387753,0.165338,0.160536,0.160534,0.16053,0.160588,0.162037,0.16053,0.16053,0.085176,0.085176,36.491789,37.997847,37.998671,37.999873,37.980961,37.514083,38,38,38,38,,,,,,,,,,,3096,3096,0.387753,0.387753,0.387753,0.387753,0.387753,0.387753,0.387753,0.387753,0.16053,0.16053,38,38,, +16435,0,1.089382,1,1,0,2,5,,5,2,Huron River,Dr,1607306,0.687,1.776,0,23.343904,3.7,5,2.178764,2.178764,2.178764,2.178764,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.179634,2.17938,2.178764,2.178764,2.179634,2.17938,2.178764,2.178764,2.178764,2.178764,2.178764,2.178764,2.179352,2.179623,2.178764,2.178764,2.179352,2.179623,2.178764,2.178764,2.178764,2.178764,2.178764,2.178764,,,,,,,2.179634,2.17938,2.178764,2.178764,2.179352,2.179623,2.178764,2.178764,2.178764,2.178764,0.849979,0.849903,0.849718,0.849718,0.849895,0.849976,0.849718,0.849718,0.446647,0.446647,29.988025,29.99153,29.999999,29.999999,29.991905,29.988184,30,30,30,30,,,,,,,,,,,2580,2580,2.178764,2.178764,2.178764,2.178764,2.178764,2.178764,2.178764,2.178764,0.849718,0.849718,30,30,, +16513,1,1.288769,3,0,0,1,1,,5,2,N I 275,,1607208,3.317,4.605,0,,1.02,7,1.10466,,1.10466,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.114296,,1.10466,,1.114296,,1.104678,,1.10466,,1.104678,,1.104756,,1.10466,,1.104756,,1.10466,,1.10466,,1.10466,,,,,,,,1.114296,,1.104678,,1.104756,,1.10466,,1.10466,,0.566267,,0.563382,,0.563405,,0.563376,,0.307464,,69.394664,,69.99885,,69.993895,,70,,70,,,,,,,,,,,,22704,,1.10466,,1.10466,,1.10466,,1.10466,,0.563376,,70,,, +16610,-1,1.350773,0,3,0,1,1,,5,2,S I 275,,1607610,3.356,4.706,0,,1.02,7,,1.157805,,1.157805,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.157828,,1.157805,,1.157828,,1.157813,,1.157805,,1.157813,,1.160917,,1.157805,,1.160917,,1.157805,,1.157805,,1.157805,,,,,,,,1.157828,,1.157813,,1.160917,,1.157805,,1.157805,,0.590487,,0.590483,,0.591414,,0.590481,,0.322256,,69.998636,,69.999495,,69.81238,,70,,70,,,,,,,,,,,,22704,,1.157805,,1.157805,,1.157805,,1.157805,,0.590481,,70,, +16644,0,0.863434,1,1,0,2,4,,5,2,Sibley,Rd,1607308,1.132,1.995,0,18.502151,3,4,1.295151,1.295151,1.295151,1.295151,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.6311,2.248949,1.295151,1.295151,1.6311,2.248949,1.325652,1.33959,1.295151,1.295151,1.325652,1.33959,2.093808,1.714502,1.295151,1.295151,2.093808,1.714502,1.295151,1.295151,1.295151,1.295151,1.295151,1.295151,,,,,,,1.6311,2.248949,1.325652,1.33959,2.093808,1.714502,1.295151,1.295151,1.295151,1.295151,0.644748,0.830103,0.553114,0.557295,0.78356,0.669769,0.543963,0.543963,0.28925,0.28925,31.761394,23.035662,39.079657,38.673051,24.742494,30.216375,40,40,40,40,,,,,,,,,,,3096,3096,1.295151,1.295151,1.295151,1.295151,1.295151,1.295151,1.295151,1.295151,0.543963,0.543963,40,40,, +18487,0,1.001402,1,1,0,2,5,,5,2,Vining,Rd,1670406,12.279,13.28,0,21.458612,3.7,5,2.002804,2.002804,2.002804,2.002804,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.030416,2.002841,2.002804,2.002804,2.030416,2.002841,2.00281,2.002805,2.002804,2.002804,2.00281,2.002805,2.002977,2.017768,2.002804,2.002804,2.002977,2.017768,2.002804,2.002804,2.002804,2.002804,2.002804,2.002804,,,,,,,2.030416,2.002841,2.00281,2.002805,2.002977,2.017768,2.002804,2.002804,2.002804,2.002804,0.789377,0.781105,0.781095,0.781094,0.781146,0.785583,0.781093,0.781093,0.410575,0.410575,29.592021,29.999443,29.999912,29.999976,29.997399,29.777512,30,30,30,30,,,,,,,,,,,2580,2580,2.002804,2.002804,2.002804,2.002804,2.002804,2.002804,2.002804,2.002804,0.781093,0.781093,30,30,, +31227,0,0.334047,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,7.158154,0.15,4,1.336189,1.336189,1.336189,1.336189,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,,,,,,,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,0.460985,0.460985,0.460985,0.460985,0.460985,0.460985,0.460985,0.460985,0.237173,0.237173,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,1.336189,0.460985,0.460985,15,15,, +31238,0,0.280024,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,6.000517,0.15,4,1.120096,1.120096,1.120096,1.120096,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,,,,,,,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,0.386433,0.386433,0.386433,0.386433,0.386433,0.386433,0.386433,0.386433,0.198817,0.198817,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,1.120096,0.386433,0.386433,15,15,, +31239,0,1.02376,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,21.937724,0.15,4,4.095042,4.095042,4.095042,4.095042,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,,,,,,,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,1.412789,1.412789,1.412789,1.412789,1.412789,1.412789,1.412789,1.412789,0.72687,0.72687,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,4.095042,1.412789,1.412789,15,15,, +16335,1,0.355285,1,0,0,1,1,RON,5,2,Sibley/N I 275,RAMP,1607309,0,0.355,0,,1.09,4,0.473714,,0.473714,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.519383,,0.473714,,0.519383,,0.47535,,0.473714,,0.47535,,0.483093,,0.473714,,0.483093,,0.473714,,0.473714,,0.473714,,,,,,,,0.519383,,0.47535,,0.483093,,0.473714,,0.473714,,0.219766,,0.206556,,0.208879,,0.206066,,0.110139,,41.043156,,44.845125,,44.126335,,45,,45,,,,,,,,,,,,5160,,0.473714,,0.473714,,0.473714,,0.473714,,0.206066,,45,,, +16413,1,0.428417,1,0,0,1,1,ROF,5,2,N I 275/Sibley,RAMP,1607307,0,0.428,0,,2.24,5,0.642626,,0.642626,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.64263,,0.642626,,0.64263,,0.642626,,0.642626,,0.642626,,0.642626,,0.642626,,0.642626,,0.642626,,0.642626,,0.642626,,,,,,,,0.64263,,0.642626,,0.642626,,0.642626,,0.642626,,0.269904,,0.269903,,0.269903,,0.269903,,0.14352,,39.999769,,39.999988,,39.999986,,40,,40,,,,,,,,,,,,5160,,0.642626,,0.642626,,0.642626,,0.642626,,0.269903,,40,,, +16651,0,0.312741,2,2,1,2,4,,5,2,Sibley,Rd,1607308,0.621,0.934,0,6.701603,3,4,0.469112,0.469112,0.469112,0.469112,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.490724,0.469119,0.469112,0.469112,0.490724,0.469119,0.471859,0.469145,0.469112,0.469112,0.471859,0.469145,0.50653,0.469309,0.469112,0.469112,0.50653,0.469309,0.469112,0.469112,0.469112,0.469112,0.469112,0.469112,,,,,,,0.490724,0.469119,0.471859,0.469145,0.50653,0.469309,0.469112,0.469112,0.469112,0.469112,0.203511,0.197029,0.197851,0.197037,0.208252,0.197086,0.197027,0.197027,0.104768,0.104768,38.238399,39.999403,39.767155,39.997194,37.045203,39.983218,40,40,40,40,,,,,,,,,,,6502,6502,0.469112,0.469112,0.469112,0.469112,0.469112,0.469112,0.469112,0.469112,0.197027,0.197027,40,40,, +16695,1,0.354789,1,0,0,1,1,RON,4,2,Sibley/S I 275,RAMP,1607705,0,0.355,0,,1.09,4,0.473053,,0.473053,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.473053,,0.473053,,0.473053,,0.473054,,0.473053,,0.473054,,0.473071,,0.473053,,0.473071,,0.473053,,0.473053,,0.473053,,,,,,,,0.473053,,0.473054,,0.473071,,0.473053,,0.473053,,0.205778,,0.205778,,0.205784,,0.205778,,0.109985,,44.999964,,44.999883,,44.998208,,45,,45,,,,,,,,,,,,5160,,0.473053,,0.473053,,0.473053,,0.473053,,0.205778,,45,,, +16764,-1,0.701258,0,3,0,1,1,,5,2,S I 275,,1607610,4.706,5.407,0,,1.02,7,,0.601078,,0.601078,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.601087,,0.601078,,0.601087,,0.601081,,0.601078,,0.601081,,0.602281,,0.601078,,0.602281,,0.601078,,0.601078,,0.601078,,,,,,,,0.601087,,0.601081,,0.602281,,0.601078,,0.601078,,0.306553,,0.306551,,0.306911,,0.30655,,0.1673,,69.99891,,69.999643,,69.86022,,70,,70,,,,,,,,,,,,22704,,0.601078,,0.601078,,0.601078,,0.601078,,0.30655,,70,, +16790,1,0.700238,3,0,0,1,1,,5,2,N I 275,,1607208,4.605,5.305,0,,1.02,7,0.600204,,0.600204,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.604308,,0.600204,,0.604308,,0.600211,,0.600204,,0.600211,,0.600244,,0.600204,,0.600244,,0.600204,,0.600204,,0.600204,,,,,,,,0.604308,,0.600211,,0.600244,,0.600204,,0.600204,,0.307335,,0.306106,,0.306116,,0.306104,,0.167057,,69.524665,,69.999176,,69.995328,,70,,70,,,,,,,,,,,,22704,,0.600204,,0.600204,,0.600204,,0.600204,,0.306104,,70,,, +16139,1,0.44344,1,0,0,1,1,ROF,4,2,S I 275/Sibley,RAMP,1607706,0,0.443,0,,2.24,5,0.665159,,0.665159,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.670851,,0.665159,,0.670851,,0.665666,,0.665159,,0.665666,,0.712959,,0.665159,,0.712959,,0.665159,,0.665159,,0.665159,,,,,,,,0.670851,,0.665666,,0.712959,,0.665159,,0.665159,,0.281074,,0.279519,,0.293707,,0.279367,,0.148552,,39.660623,,39.969549,,37.318211,,40,,40,,,,,,,,,,,,5160,,0.665159,,0.665159,,0.665159,,0.665159,,0.279367,,40,,, +16398,0,0.177286,2,2,1,2,4,,5,2,Sibley,Rd,1607308,0.934,1.111,0,3.79899,3,4,0.265929,0.265929,0.265929,0.265929,40,40,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.27167,0.279151,0.265929,0.265929,0.27167,0.279151,0.266378,0.266566,0.265929,0.265929,0.266378,0.266566,0.276861,0.272753,0.265929,0.265929,0.276861,0.272753,0.265929,0.265929,0.265929,0.265929,0.265929,0.265929,,,,,,,0.27167,0.279151,0.266378,0.266566,0.276861,0.272753,0.265929,0.265929,0.265929,0.265929,0.113413,0.115657,0.111825,0.111881,0.11497,0.113737,0.11169,0.11169,0.059391,0.059391,39.154724,38.105473,39.93269,39.904496,38.420585,38.999274,40,40,40,40,,,,,,,,,,,6502,6502,0.265929,0.265929,0.265929,0.265929,0.265929,0.265929,0.265929,0.265929,0.11169,0.11169,40,40,, +16683,0,0.582258,1,1,0,2,5,,5,2,Huron River,Dr,1607306,1.776,2.358,0,12.476956,3.7,5,1.164516,1.164516,1.164516,1.164516,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.164981,1.164845,1.164516,1.164516,1.164981,1.164845,1.164516,1.164516,1.164516,1.164516,1.164516,1.164516,1.16483,1.164975,1.164516,1.164516,1.16483,1.164975,1.164516,1.164516,1.164516,1.164516,1.164516,1.164516,,,,,,,1.164981,1.164845,1.164516,1.164516,1.16483,1.164975,1.164516,1.164516,1.164516,1.164516,0.454301,0.45426,0.454161,0.454161,0.454255,0.454299,0.454161,0.454161,0.238726,0.238726,29.988025,29.99153,29.999999,29.999999,29.991905,29.988184,30,30,30,30,,,,,,,,,,,2580,2580,1.164516,1.164516,1.164516,1.164516,1.164516,1.164516,1.164516,1.164516,0.454161,0.454161,30,30,, +31236,0,0.62336,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,13.357709,0.15,4,2.493439,2.493439,2.493439,2.493439,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,,,,,,,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,0.860236,0.860236,0.860236,0.860236,0.860236,0.860236,0.860236,0.860236,0.442585,0.442585,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,2.493439,0.860236,0.860236,15,15,, +18831,0,0.240382,1,1,0,2,5,,5,2,Vining,Rd,1670406,13.28,13.52,0,5.151049,3.7,5,0.480765,0.480765,0.480765,0.480765,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.480788,0.480765,0.480765,0.480765,0.480788,0.480765,0.480765,0.480765,0.480765,0.480765,0.480765,0.480765,0.480765,0.480787,0.480765,0.480765,0.480765,0.480787,0.480765,0.480765,0.480765,0.480765,0.480765,0.480765,,,,,,,0.480788,0.480765,0.480765,0.480765,0.480765,0.480787,0.480765,0.480765,0.480765,0.480765,0.187505,0.187498,0.187498,0.187498,0.187498,0.187505,0.187498,0.187498,0.098557,0.098557,29.998557,30,29.999999,29.999994,29.999999,29.998579,30,30,30,30,,,,,,,,,,,2580,2580,0.480765,0.480765,0.480765,0.480765,0.480765,0.480765,0.480765,0.480765,0.187498,0.187498,30,30,, +11544,0,0.700312,1,1,0,2,5,,4,2,Wayne,Rd,1576609,0.333,1.033,0,15.006676,5.8,4.5,1.556248,1.556248,1.556248,1.556248,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.556254,1.556248,1.556248,1.556248,1.556254,1.556248,1.556248,1.556248,1.556248,1.556248,1.556248,1.556248,1.556248,1.585575,1.556248,1.556248,1.556248,1.585575,1.556248,1.556248,1.556248,1.556248,1.556248,1.556248,,,,,,,1.556254,1.556248,1.556248,1.556248,1.556248,1.585575,1.556248,1.556248,1.556248,1.556248,0.592932,0.59293,0.59293,0.592931,0.59293,0.601729,0.59293,0.59293,0.310471,0.310471,26.999894,27,26.999999,26.999992,27,26.500598,27,27,27,27,,,,,,,,,,,2580,2580,1.556248,1.556248,1.556248,1.556248,1.556248,1.556248,1.556248,1.556248,0.59293,0.59293,27,27,, +12541,1,0.157611,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.189,1.346,0,3.377387,3.7,5,0.210149,,0.210149,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.474258,,0.210149,,0.474258,,0.259227,,0.210149,,0.259227,,0.40241,,0.210149,,0.40241,,0.210149,,0.210149,,0.210149,,,,,,,,0.474258,,0.259227,,0.40241,,0.210149,,0.210149,,0.170648,,0.106138,,0.149093,,0.091415,,0.04886,,19.939947,,36.480387,,23.500096,,45,,45,,,,,,,,,,,,7568,,0.210149,,0.210149,,0.210149,,0.210149,,0.091415,,45,,, +12582,1,0.418655,1,0,0,1,1,ROF,4,2,N I 275/Eureka,RAMP,1578307,0,0.419,0,,2.24,5,0.627982,,0.627982,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.672513,,0.627982,,0.672513,,0.628882,,0.627982,,0.628882,,0.628935,,0.627982,,0.628935,,0.627982,,0.627982,,0.627982,,,,,,,,0.672513,,0.628882,,0.628935,,0.627982,,0.627982,,0.277112,,0.264023,,0.264038,,0.263753,,0.140249,,37.351394,,39.942753,,39.939391,,40,,40,,,,,,,,,,,,5160,,0.627982,,0.627982,,0.627982,,0.627982,,0.263753,,40,,, +16775,1,0.397429,3,0,0,1,1,,4,2,N I 275,,1607208,6.603,7,0,,0.8,7.5,0.340653,,0.340653,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.34214,,0.340653,,0.34214,,0.340655,,0.340653,,0.340655,,0.340674,,0.340653,,0.340674,,0.340653,,0.340653,,0.340653,,,,,,,,0.34214,,0.340655,,0.340674,,0.340653,,0.340653,,0.174179,,0.173734,,0.173739,,0.173733,,0.094815,,69.695717,,69.999694,,69.995655,,70,,70,,,,,,,,,,,,22704,,0.340653,,0.340653,,0.340653,,0.340653,,0.173733,,70,,, +18333,0,0.684301,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,1.666,2.351,0,14.663603,4.5,4.5,1.080476,1.080476,1.080476,1.080476,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.106183,1.122021,1.080476,1.080476,1.106183,1.122021,1.080476,1.080478,1.080476,1.080476,1.080476,1.080478,1.081399,1.104782,1.080476,1.080476,1.081399,1.104782,1.080476,1.080476,1.080476,1.080476,1.080476,1.080476,,,,,,,1.106183,1.122021,1.080476,1.080478,1.081399,1.104782,1.080476,1.080476,1.080476,1.080476,0.455029,0.45978,0.447317,0.447318,0.447594,0.454609,0.447317,0.447317,0.237345,0.237345,37.116913,36.592992,37.999994,37.999946,37.967581,37.163987,38,38,38,38,,,,,,,,,,,3096,3096,1.080476,1.080476,1.080476,1.080476,1.080476,1.080476,1.080476,1.080476,0.447317,0.447317,38,38,, +22242,-1,0.64779,0,2,0,2,3,DIV,4,2,Eureka,Rd,4703131,0,0.648,0,13.881204,3.7,5,,0.863719,,0.863719,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.00294,,0.863719,,1.00294,,0.96385,,0.863719,,0.96385,,1.753051,,0.863719,,1.753051,,0.863719,,0.863719,,0.863719,,,,,,,,1.00294,,0.96385,,1.753051,,0.863719,,0.863719,,0.417484,,0.405757,,0.642517,,0.375718,,0.200815,,38.753427,,40.32513,,22.171275,,45,,45,,,,,,,,,,,,7568,,0.863719,,0.863719,,0.863719,,0.863719,,0.375718,,45,, +30599,0,0.530074,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.358721,0.15,4,2.120295,2.120295,2.120295,2.120295,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,,,,,,,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,0.731502,0.731502,0.731502,0.731502,0.731502,0.731502,0.731502,0.731502,0.376352,0.376352,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,2.120295,0.731502,0.731502,15,15,, +30600,0,0.613806,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.15299,0.15,4,2.455225,2.455225,2.455225,2.455225,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,,,,,,,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,0.847053,0.847053,0.847053,0.847053,0.847053,0.847053,0.847053,0.847053,0.435802,0.435802,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,2.455225,0.847053,0.847053,15,15,, +18788,0,0.531821,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,1.135,1.666,0,11.396168,4.5,4.5,0.839718,0.839718,0.839718,0.839718,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.841595,0.840127,0.839718,0.839718,0.841595,0.840127,0.839723,0.839746,0.839718,0.839718,0.839723,0.839746,0.840459,0.842581,0.839718,0.839718,0.840459,0.842581,0.839718,0.839718,0.839718,0.839718,0.839718,0.839718,,,,,,,0.841595,0.840127,0.839723,0.839746,0.840459,0.842581,0.839718,0.839718,0.839718,0.839718,0.348206,0.347766,0.347645,0.347652,0.347865,0.348502,0.347643,0.347643,0.184458,0.184458,37.915236,37.981505,37.999765,37.998731,37.966497,37.870855,38,38,38,38,,,,,,,,,,,3096,3096,0.839718,0.839718,0.839718,0.839718,0.839718,0.839718,0.839718,0.839718,0.347643,0.347643,38,38,, +12545,0,0.309921,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.628,0.938,0,6.641174,3.7,5,0.464882,0.464882,0.464882,0.464882,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.554042,0.464906,0.464882,0.464882,0.554042,0.464906,0.474476,0.464935,0.464882,0.464882,0.474476,0.464935,0.517834,0.466476,0.464882,0.464882,0.517834,0.466476,0.464882,0.464882,0.464882,0.464882,0.464882,0.464882,,,,,,,0.554042,0.464906,0.474476,0.464935,0.517834,0.466476,0.464882,0.464882,0.464882,0.464882,0.221998,0.195258,0.198129,0.195266,0.211136,0.195729,0.195251,0.195251,0.103824,0.103824,33.562953,39.997972,39.191193,39.99544,35.909771,39.863288,40,40,40,40,,,,,,,,,,,7946,7946,0.464882,0.464882,0.464882,0.464882,0.464882,0.464882,0.464882,0.464882,0.195251,0.195251,40,40,, +16307,1,0.383439,1,0,0,1,1,RON,4,2,W Eureka/N I 275,RAMP,1607401,0,0.383,0,,1.09,4,0.511251,,0.511251,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.646274,,0.511251,,0.646274,,0.549504,,0.511251,,0.549504,,0.787835,,0.511251,,0.787835,,0.511251,,0.511251,,0.511251,,,,,,,,0.646274,,0.549504,,0.787835,,0.511251,,0.511251,,0.262901,,0.23387,,0.305369,,0.222394,,0.118866,,35.598413,,41.867394,,29.201942,,45,,45,,,,,,,,,,,,5160,,0.511251,,0.511251,,0.511251,,0.511251,,0.222394,,45,,, +16447,-1,0.378769,0,3,0,1,1,,4,2,S I 275,,1607610,6.969,7.348,0,,0.8,7.5,,0.324659,,0.324659,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.324668,,0.324659,,0.324668,,0.32466,,0.324659,,0.32466,,0.32522,,0.324659,,0.32522,,0.324659,,0.324659,,0.324659,,,,,,,,0.324668,,0.32466,,0.32522,,0.324659,,0.324659,,0.165579,,0.165576,,0.165744,,0.165576,,0.090363,,69.998029,,69.999814,,69.879238,,70,,70,,,,,,,,,,,,22704,,0.324659,,0.324659,,0.324659,,0.324659,,0.165576,,70,, +16500,1,0.302895,3,0,0,1,1,,4,2,N I 275,,1607208,7,7.303,0,,0.8,7.5,0.259624,,0.259624,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.260795,,0.259624,,0.260795,,0.259625,,0.259624,,0.259625,,0.259643,,0.259624,,0.259643,,0.259624,,0.259624,,0.259624,,,,,,,,0.260795,,0.259625,,0.259643,,0.259624,,0.259624,,0.13276,,0.132409,,0.132414,,0.132408,,0.072262,,69.685677,,69.999687,,69.994879,,70,,70,,,,,,,,,,,,22704,,0.259624,,0.259624,,0.259624,,0.259624,,0.132408,,70,,, +16538,1,0.314887,1,0,0,1,1,RON,4,2,E Eureka/N I 275,RAMP,1607310,0,0.315,0,,1.09,4,0.41985,,0.41985,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.41985,,0.41985,,0.41985,,0.41985,,0.41985,,0.41985,,0.41985,,0.41985,,0.41985,,0.41985,,0.41985,,0.41985,,,,,,,,0.41985,,0.41985,,0.41985,,0.41985,,0.41985,,0.182635,,0.182635,,0.182635,,0.182635,,0.097615,,45,,45,,44.999972,,45,,45,,,,,,,,,,,,5160,,0.41985,,0.41985,,0.41985,,0.41985,,0.182635,,45,,, +17022,1,0.397622,1,0,0,1,1,ROF,4,2,S I 275/Eureka,RAMP,1607707,0,0.397,0,,2.24,5,0.596433,,0.596433,,40,,15000,,3405,,7500,,4839,,5160,,5154,,1.125998,,0.596433,,1.125998,,0.652343,,0.596433,,0.652343,,0.880915,,0.596433,,0.880915,,0.596433,,0.596433,,0.596433,,,,,,,,1.125998,,0.652343,,0.880915,,0.596433,,0.596433,,0.409371,,0.267275,,0.335846,,0.250502,,0.133203,,21.187706,,36.571708,,27.082436,,40,,40,,,,,,,,,,,,5160,,0.596433,,0.596433,,0.596433,,0.596433,,0.250502,,40,,, +26282,0,0.491324,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.528375,0.15,4,1.965297,1.965297,1.965297,1.965297,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,,,,,,,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,0.678027,0.678027,0.678027,0.678027,0.678027,0.678027,0.678027,0.678027,0.34884,0.34884,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,1.965297,0.678027,0.678027,15,15,, +11073,1,0.322893,1,0,0,1,1,RON,4,2,W Eureka/S I 275,RAMP,1576510,0,0.323,0,,1.09,4,0.430524,,0.430524,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.430547,,0.430524,,0.430547,,0.430621,,0.430524,,0.430621,,0.434733,,0.430524,,0.434733,,0.430524,,0.430524,,0.430524,,,,,,,,0.430547,,0.430621,,0.434733,,0.430524,,0.430524,,0.187285,,0.187307,,0.188541,,0.187278,,0.100097,,44.997546,,44.98988,,44.564291,,45,,45,,,,,,,,,,,,5160,,0.430524,,0.430524,,0.430524,,0.430524,,0.187278,,45,,, +13794,1,0.406662,1,0,0,1,1,RON,4,2,E Eureka/S I 275,RAMP,1589306,0,0.407,0,,1.09,4,0.542216,,0.542216,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.542216,,0.542216,,0.542216,,0.542216,,0.542216,,0.542216,,0.542223,,0.542216,,0.542223,,0.542216,,0.542216,,0.542216,,,,,,,,0.542216,,0.542216,,0.542223,,0.542216,,0.542216,,0.235864,,0.235864,,0.235866,,0.235864,,0.126065,,44.999979,,44.99994,,44.99938,,45,,45,,,,,,,,,,,,5160,,0.542216,,0.542216,,0.542216,,0.542216,,0.235864,,45,,, +16703,-1,0.32234,0,3,0,1,1,,4,2,S I 275,,1607610,6.647,6.969,0,,0.8,7.5,,0.276292,,0.276292,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.276305,,0.276292,,0.276305,,0.276294,,0.276292,,0.276294,,0.277731,,0.276292,,0.277731,,0.276292,,0.276292,,0.276292,,,,,,,,0.276305,,0.276294,,0.277731,,0.276292,,0.276292,,0.140913,,0.140909,,0.141341,,0.140909,,0.076901,,69.996609,,69.99948,,69.637129,,70,,70,,,,,,,,,,,,22704,,0.276292,,0.276292,,0.276292,,0.276292,,0.140909,,70,, +12546,0,0.060529,2,2,1,2,4,,4,2,Eureka,Rd,1578308,0.562,0.623,0,1.297047,4.5,4.5,0.095572,0.095572,0.095572,0.095572,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.095573,0.095579,0.095572,0.095572,0.095573,0.095579,0.095573,0.095577,0.095572,0.095572,0.095573,0.095577,0.095588,0.09558,0.095572,0.095572,0.095588,0.09558,0.095572,0.095572,0.095572,0.095572,0.095572,0.095572,,,,,,,0.095573,0.095579,0.095573,0.095577,0.095588,0.09558,0.095572,0.095572,0.095572,0.095572,0.039567,0.039569,0.039567,0.039568,0.039572,0.039569,0.039567,0.039567,0.020994,0.020994,37.999494,37.997322,37.999424,37.998003,37.993471,37.996912,38,38,38,38,,,,,,,,,,,6502,6502,0.095572,0.095572,0.095572,0.095572,0.095572,0.095572,0.095572,0.095572,0.039567,0.039567,38,38,, +12182,0,0.005441,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.623,0.628,0,0.11659,3.7,5,0.008161,0.008161,0.008161,0.008161,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.009727,0.008161,0.008161,0.008161,0.009727,0.008161,0.00833,0.008161,0.008161,0.008161,0.00833,0.008161,0.009091,0.008161,0.008161,0.008161,0.009091,0.008161,0.008161,0.008161,0.008161,0.008161,0.008161,0.008161,,,,,,,0.009727,0.008161,0.00833,0.008161,0.009091,0.008161,0.008161,0.008161,0.008161,0.008161,0.003897,0.003428,0.003478,0.003428,0.003707,0.003428,0.003428,0.003428,0.001823,0.001823,33.562953,39.999944,39.191193,39.999965,35.909771,39.999964,40,40,40,40,,,,,,,,,,,7946,7946,0.008161,0.008161,0.008161,0.008161,0.008161,0.008161,0.008161,0.008161,0.003428,0.003428,40,40,, +12179,0,0.099691,2,2,1,2,3,,4,2,Eureka,Rd,1578308,1.089,1.189,0,2.136226,3.7,5,0.149536,0.149536,0.149536,0.149536,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.294825,0.168046,0.149536,0.149536,0.294825,0.168046,0.174486,0.161748,0.149536,0.149536,0.174486,0.161748,0.246701,0.259143,0.149536,0.149536,0.246701,0.259143,0.149536,0.149536,0.149536,0.149536,0.149536,0.149536,,,,,,,0.294825,0.168046,0.174486,0.161748,0.246701,0.259143,0.149536,0.149536,0.149536,0.149536,0.106392,0.068358,0.07029,0.066469,0.091955,0.095687,0.062805,0.062805,0.033396,0.033396,20.288078,35.594059,34.280384,36.979861,24.245648,23.081545,40,40,40,40,,,,,,,,,,,7946,7946,0.149536,0.149536,0.149536,0.149536,0.149536,0.149536,0.149536,0.149536,0.062805,0.062805,40,40,, +12543,0,0.143379,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.946,1.089,0,3.072405,3.7,5,0.215068,0.215068,0.215068,0.215068,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.544101,0.247606,0.215068,0.215068,0.544101,0.247606,0.235105,0.227419,0.215068,0.215068,0.235105,0.227419,0.284029,0.436276,0.215068,0.215068,0.284029,0.436276,0.215068,0.215068,0.215068,0.215068,0.215068,0.215068,,,,,,,0.544101,0.247606,0.235105,0.227419,0.284029,0.436276,0.215068,0.215068,0.215068,0.215068,0.189039,0.10009,0.09634,0.094034,0.111017,0.156691,0.090329,0.090329,0.048032,0.048032,15.81091,34.743704,36.591033,37.827717,30.288213,19.718565,40,40,40,40,,,,,,,,,,,7946,7946,0.215068,0.215068,0.215068,0.215068,0.215068,0.215068,0.215068,0.215068,0.090329,0.090329,40,40,, +12180,0,0.007801,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.938,0.946,0,0.167169,3.7,5,0.011702,0.011702,0.011702,0.011702,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.013823,0.011702,0.011702,0.011702,0.013823,0.011702,0.011938,0.011703,0.011702,0.011702,0.011938,0.011703,0.012812,0.011742,0.011702,0.011702,0.012812,0.011742,0.011702,0.011702,0.011702,0.011702,0.011702,0.011702,,,,,,,0.013823,0.011702,0.011938,0.011703,0.012812,0.011742,0.011702,0.011702,0.011702,0.011702,0.005551,0.004915,0.004986,0.004915,0.005248,0.004927,0.004915,0.004915,0.002613,0.002613,33.862167,39.997972,39.209139,39.99544,36.534646,39.863288,40,40,40,40,,,,,,,,,,,7946,7946,0.011702,0.011702,0.011702,0.011702,0.011702,0.011702,0.011702,0.011702,0.004915,0.004915,40,40,, +11543,0,0.333096,1,1,0,2,5,,4,2,Wayne,Rd,1576609,0,0.333,0,7.137778,5.8,4.5,0.740214,0.740214,0.740214,0.740214,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.740766,0.740214,0.740214,0.740214,0.740766,0.740214,0.740223,0.740223,0.740214,0.740214,0.740223,0.740223,0.74022,0.783434,0.740214,0.740214,0.74022,0.783434,0.740214,0.740214,0.740214,0.740214,0.740214,0.740214,,,,,,,0.740766,0.740214,0.740223,0.740223,0.74022,0.783434,0.740214,0.740214,0.740214,0.740214,0.282187,0.282022,0.282024,0.282024,0.282023,0.294988,0.282022,0.282022,0.147673,0.147673,26.97989,26.999999,26.999654,26.999674,26.999798,25.510474,27,27,27,27,,,,,,,,,,,2580,2580,0.740214,0.740214,0.740214,0.740214,0.740214,0.740214,0.740214,0.740214,0.282022,0.282022,27,27,, +17945,0,0.311656,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,2.351,2.662,0,6.678338,4.5,4.5,0.492088,0.492088,0.492088,0.492088,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.505717,0.559697,0.492088,0.492088,0.505717,0.559697,0.4921,0.492117,0.492088,0.492088,0.4921,0.492117,0.552361,0.511501,0.492088,0.492088,0.552361,0.511501,0.492088,0.492088,0.492088,0.492088,0.492088,0.492088,,,,,,,0.505717,0.559697,0.4921,0.492117,0.552361,0.511501,0.492088,0.492088,0.492088,0.492088,0.207813,0.224007,0.203728,0.203733,0.221806,0.209548,0.203724,0.203724,0.108095,0.108095,36.975936,33.409742,37.999087,37.99778,33.853504,36.55778,38,38,38,38,,,,,,,,,,,3096,3096,0.492088,0.492088,0.492088,0.492088,0.492088,0.492088,0.492088,0.492088,0.203724,0.203724,38,38,, +30601,0,0.292941,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.277309,0.15,4,1.171764,1.171764,1.171764,1.171764,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,,,,,,,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,0.404259,0.404259,0.404259,0.404259,0.404259,0.404259,0.404259,0.404259,0.207988,0.207988,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,1.171764,0.404259,0.404259,15,15,, +12167,1,0.336582,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.6,1.936,0,7.212475,3.7,5,0.448776,,0.448776,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.472053,,0.448776,,0.472053,,0.453058,,0.448776,,0.453058,,0.459207,,0.448776,,0.459207,,0.448776,,0.448776,,0.448776,,,,,,,,0.472053,,0.453058,,0.459207,,0.448776,,0.448776,,0.202201,,0.196502,,0.198347,,0.195218,,0.10434,,42.78106,,44.574748,,43.977822,,45,,45,,,,,,,,,,,,7568,,0.448776,,0.448776,,0.448776,,0.448776,,0.195218,,45,,, +22561,1,0.53032,1,0,0,1,3,RSF,4,2,E Eureka/Dingell,Ramp,4706208,0,0.53,0,,3.7,5,1.060641,,1.060641,,30,,10000,,2270,,5000,,3226,,3440,,3436,,1.924135,,1.060641,,1.924135,,1.235262,,1.060641,,1.235262,,1.403041,,1.060641,,1.403041,,1.060641,,1.060641,,1.060641,,,,,,,,1.924135,,1.235262,,1.403041,,1.060641,,1.060641,,0.672698,,0.466036,,0.51637,,0.41365,,0.217431,,16.536896,,25.759092,,22.678748,,30,,30,,,,,,,,,,,,3440,,1.060641,,1.060641,,1.060641,,1.060641,,0.41365,,30,,, +12531,1,0.160165,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.44,1.6,0,3.432116,3.7,5,0.213554,,0.213554,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.416184,,0.213554,,0.416184,,0.252424,,0.213554,,0.252424,,0.299627,,0.213554,,0.299627,,0.213554,,0.213554,,0.213554,,,,,,,,0.416184,,0.252424,,0.299627,,0.213554,,0.213554,,0.153685,,0.104557,,0.118718,,0.092896,,0.049651,,23.09059,,38.070598,,32.072917,,45,,45,,,,,,,,,,,,7568,,0.213554,,0.213554,,0.213554,,0.213554,,0.092896,,45,,, +12176,1,0.093256,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.346,1.44,0,1.998332,3.7,5,0.124341,,0.124341,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.232235,,0.124341,,0.232235,,0.147701,,0.124341,,0.147701,,0.221713,,0.124341,,0.221713,,0.124341,,0.124341,,0.124341,,,,,,,,0.232235,,0.147701,,0.221713,,0.124341,,0.124341,,0.086456,,0.061096,,0.0833,,0.054088,,0.028909,,24.093432,,37.882733,,25.236831,,45,,45,,,,,,,,,,,,7568,,0.124341,,0.124341,,0.124341,,0.124341,,0.054088,,45,,, +22241,-1,0.307358,0,2,0,2,3,DIV,4,2,Eureka,Rd,4703131,0.648,0.955,0,6.586246,3.7,5,,0.409811,,0.409811,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.425275,,0.409811,,0.425275,,0.41283,,0.409811,,0.41283,,0.420651,,0.409811,,0.420651,,0.409811,,0.409811,,0.409811,,,,,,,,0.425275,,0.41283,,0.420651,,0.409811,,0.409811,,0.182907,,0.179173,,0.18152,,0.178268,,0.095281,,43.363712,,44.670941,,43.840327,,45,,45,,,,,,,,,,,,7568,,0.409811,,0.409811,,0.409811,,0.409811,,0.178268,,45,, +22562,1,0.173992,1,0,0,1,3,RSF,4,2,W Eureka/Dingell,Ramp,4706210,0,0.174,0,,3.7,5,0.347984,,0.347984,,30,,10000,,2270,,5000,,3226,,3440,,3436,,0.424828,,0.347984,,0.424828,,0.356785,,0.347984,,0.356785,,0.360086,,0.347984,,0.360086,,0.347984,,0.347984,,0.347984,,,,,,,,0.424828,,0.356785,,0.360086,,0.347984,,0.347984,,0.158767,,0.138354,,0.139344,,0.135714,,0.071337,,24.573538,,29.259985,,28.991724,,30,,30,,,,,,,,,,,,3440,,0.347984,,0.347984,,0.347984,,0.347984,,0.135714,,30,,, +24053,1,0.268405,1,0,0,1,3,RSF,4,2,Dingell/W Eureka,Ramp,4711339,0,0.268,0,,3.7,5,0.536811,,0.536811,,30,,10000,,2270,,5000,,3226,,3440,,3436,,0.541346,,0.536811,,0.541346,,0.580631,,0.536811,,0.580631,,1.611506,,0.536811,,1.611506,,0.536811,,0.536811,,0.536811,,,,,,,,0.541346,,0.580631,,1.611506,,0.536811,,0.536811,,0.210717,,0.222502,,0.531765,,0.209356,,0.110046,,29.748677,,27.735888,,9.993336,,30,,30,,,,,,,,,,,,3440,,0.536811,,0.536811,,0.536811,,0.536811,,0.209356,,30,,, +24056,1,0.304449,1,0,0,1,3,RSF,4,2,Dingell/E Eureka,Ramp,4711338,0,0.304,0,,3.7,5,0.608898,,0.608898,,30,,10000,,2270,,5000,,3226,,3440,,3436,,0.608904,,0.608898,,0.608904,,0.609129,,0.608898,,0.609129,,0.723975,,0.608898,,0.723975,,0.608898,,0.608898,,0.608898,,,,,,,,0.608904,,0.609129,,0.723975,,0.608898,,0.608898,,0.237472,,0.23754,,0.271993,,0.23747,,0.124824,,29.999722,,29.988632,,25.231463,,30,,30,,,,,,,,,,,,3440,,0.608898,,0.608898,,0.608898,,0.608898,,0.23747,,30,,, +24078,-1,0.175279,0,1,0,2,3,DIV,4,2,John Dingell,Dr,4711337,0,0.175,0,3.755983,3.7,5,,0.233706,,0.233706,,45,,11000,,2497,,5500,,3549,,3784,,3780,,0.233707,,0.233706,,0.233707,,0.233761,,0.233706,,0.233761,,0.261115,,0.233706,,0.261115,,0.233706,,0.233706,,0.233706,,,,,,,,0.233707,,0.233761,,0.261115,,0.233706,,0.233706,,0.101662,,0.101678,,0.109885,,0.101662,,0.054337,,44.999741,,44.98941,,40.276283,,45,,45,,,,,,,,,,,,3784,,0.233706,,0.233706,,0.233706,,0.233706,,0.101662,,45,, +24100,1,0.146108,1,0,0,2,3,DIV,4,2,John Dingell,Dr,4711336,0,0.146,0,3.130892,3.7,5,0.194811,,0.194811,,45,,11000,,2497,,5500,,3549,,3784,,3780,,0.29329,,0.194811,,0.29329,,0.214726,,0.194811,,0.214726,,0.233839,,0.194811,,0.233839,,0.194811,,0.194811,,0.194811,,,,,,,,0.29329,,0.214726,,0.233839,,0.194811,,0.194811,,0.114286,,0.090717,,0.096451,,0.084743,,0.045294,,29.890249,,40.826442,,37.489516,,45,,45,,,,,,,,,,,,3784,,0.194811,,0.194811,,0.194811,,0.194811,,0.084743,,45,,, +24077,-1,0.615563,0,2,0,2,3,DIV,4,2,John Dingell,Dr,4711337,0.175,0.791,0,13.190635,3.7,5,,0.820751,,0.820751,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.821171,,0.820751,,0.821171,,0.826399,,0.820751,,0.826399,,1.180658,,0.820751,,1.180658,,0.820751,,0.820751,,0.820751,,,,,,,,0.821171,,0.826399,,1.180658,,0.820751,,0.820751,,0.357153,,0.358721,,0.464999,,0.357027,,0.190825,,44.976965,,44.692452,,31.282373,,45,,45,,,,,,,,,,,,7568,,0.820751,,0.820751,,0.820751,,0.820751,,0.357027,,45,, +1942,0,0.51618,1,1,0,2,4,,4,3,9 Mile,Rd,633603,5.719,6.235,0,11.06101,4.5,4.5,0.815022,0.815022,0.815022,0.815022,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.823717,1.079032,0.815022,0.815022,0.823717,1.079032,0.821195,0.823508,0.815022,0.815022,0.821195,0.823508,0.952036,0.856436,0.815022,0.815022,0.952036,0.856436,0.815022,0.815022,0.815022,0.815022,0.815022,0.815022,,,,,,,0.823717,1.079032,0.821195,0.823508,0.952036,0.856436,0.815022,0.815022,0.815022,0.815022,0.340028,0.416622,0.339271,0.339965,0.378523,0.349843,0.337419,0.337419,0.179033,0.179033,37.598881,28.702413,37.714338,37.608406,32.531145,36.162443,38,38,38,38,,,,,,,,,,,3096,3096,0.815022,0.815022,0.815022,0.815022,0.815022,0.815022,0.815022,0.815022,0.337419,0.337419,38,38,, +3109,0,0.499002,1,1,0,2,3,,4,3,10 Mile,Rd,656510,8.811,9.31,0,10.69289,3.7,5,0.748502,0.748502,0.748502,0.748502,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.392308,0.806738,0.748502,0.748502,1.392308,0.806738,0.809976,0.780469,0.748502,0.748502,0.809976,0.780469,0.915567,1.176909,0.748502,0.748502,0.915567,1.176909,0.748502,0.748502,0.748502,0.748502,0.748502,0.748502,,,,,,,1.392308,0.806738,0.809976,0.780469,0.915567,1.176909,0.748502,0.748502,0.748502,0.748502,0.507513,0.331842,0.332813,0.323961,0.36449,0.442893,0.314371,0.314371,0.167166,0.167166,21.503933,37.112556,36.964171,38.361653,32.701135,25.439599,40,40,40,40,,,,,,,,,,,3784,3784,0.748502,0.748502,0.748502,0.748502,0.748502,0.748502,0.748502,0.748502,0.314371,0.314371,40,40,, +10802,1,0.545369,3,0,0,1,1,,4,2,E I 94,,1576405,2.092,2.637,0,,0.8,7.5,0.467459,,0.467459,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.542383,,0.467459,,0.542383,,0.467667,,0.467459,,0.467667,,0.482825,,0.467459,,0.482825,,0.467459,,0.467459,,0.467459,,,,,,,,0.542383,,0.467667,,0.482825,,0.467459,,0.467459,,0.260881,,0.238466,,0.243014,,0.238404,,0.130109,,60.330302,,69.968841,,67.772226,,70,,70,,,,,,,,,,,,22704,,0.467459,,0.467459,,0.467459,,0.467459,,0.238404,,70,,, +10954,0,0.431809,1,1,0,2,5,,4,2,Quirk,Rd,1576409,0,0.432,0,9.253056,5.8,4.5,0.959576,0.959576,0.959576,0.959576,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.959583,0.959576,0.959576,0.959576,0.959583,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,,,,,,,0.959583,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.365601,0.365599,0.365599,0.365599,0.365599,0.365599,0.365599,0.365599,0.191435,0.191435,26.999799,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.959576,0.365599,0.365599,27,27,, +11147,0,0.440106,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,4.105,4.545,0,9.430851,5.55,5,1.320319,1.320319,1.320319,1.320319,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.325874,1.320344,1.320319,1.320319,1.325874,1.320344,1.320341,1.320326,1.320319,1.320319,1.320341,1.320326,1.320381,1.322306,1.320319,1.320319,1.320381,1.322306,1.320319,1.320319,1.320319,1.320319,1.320319,1.320319,,,,,,,1.325874,1.320344,1.320341,1.320326,1.320381,1.322306,1.320319,1.320319,1.320319,1.320319,0.476981,0.475322,0.475321,0.475317,0.475334,0.475911,0.475315,0.475315,0.24646,0.24646,19.916211,19.999621,19.999675,19.999898,19.999057,19.969955,20,20,20,20,,,,,,,,,,,2236,2236,1.320319,1.320319,1.320319,1.320319,1.320319,1.320319,1.320319,1.320319,0.475315,0.475315,20,20,, +11201,0,0.444996,1,1,0,2,5,,5,5,Curtis,Rd,1432002,0,0.445,0,9.53563,3.7,5,0.889992,0.889992,0.889992,0.889992,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.892308,0.895467,0.889992,0.889992,0.892308,0.895467,0.890004,0.890006,0.889992,0.889992,0.890004,0.890006,0.892233,0.893942,0.889992,0.889992,0.892233,0.893942,0.889992,0.889992,0.889992,0.889992,0.889992,0.889992,,,,,,,0.892308,0.895467,0.890004,0.890006,0.892233,0.893942,0.889992,0.889992,0.889992,0.889992,0.347792,0.348739,0.3471,0.347101,0.347769,0.348282,0.347097,0.347097,0.182448,0.182448,29.922149,29.816576,29.999616,29.999525,29.924649,29.867452,30,30,30,30,,,,,,,,,,,2580,2580,0.889992,0.889992,0.889992,0.889992,0.889992,0.889992,0.889992,0.889992,0.347097,0.347097,30,30,, +11240,0,0.794632,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,3.387,4.182,0,17.027832,3,4,1.191948,1.191948,1.191948,1.191948,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.343345,1.421276,1.191948,1.191948,1.343345,1.421276,1.193776,1.197661,1.191948,1.191948,1.193776,1.197661,1.349401,1.318702,1.191948,1.191948,1.349401,1.318702,1.191948,1.191948,1.191948,1.191948,1.191948,1.191948,,,,,,,1.343345,1.421276,1.193776,1.197661,1.349401,1.318702,1.191948,1.191948,1.191948,1.191948,0.546037,0.569417,0.501167,0.502332,0.547854,0.538644,0.500618,0.500618,0.266202,0.266202,35.491939,33.54585,39.938764,39.809204,35.33267,36.155198,40,40,40,40,,,,,,,,,,,3096,3096,1.191948,1.191948,1.191948,1.191948,1.191948,1.191948,1.191948,1.191948,0.500618,0.500618,40,40,, +13755,-1,2.535088,0,3,0,1,1,,4,2,W I 94,,1588802,0.214,2.748,0,,0.8,7.5,,2.172932,,2.172932,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.309252,,2.172932,,2.309252,,2.173556,,2.172932,,2.173556,,2.305685,,2.172932,,2.305685,,2.172932,,2.172932,,2.172932,,,,,,,,2.309252,,2.173556,,2.305685,,2.172932,,2.172932,,1.149091,,1.108383,,1.148021,,1.108195,,0.604799,,65.867749,,69.97991,,65.969647,,70,,70,,,,,,,,,,,,22704,,2.172932,,2.172932,,2.172932,,2.172932,,1.108195,,70,, +14759,0,0.368775,1,1,0,2,3,,4,2,Ford,Rd,1595510,2.617,2.986,0,7.902327,3.7,5,0.553163,0.553163,0.553163,0.553163,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.021814,0.762416,0.553163,0.553163,1.021814,0.762416,0.660571,0.660681,0.553163,0.553163,0.660571,0.660681,0.983794,1.131292,0.553163,0.553163,0.983794,1.131292,0.553163,0.553163,0.553163,0.553163,0.553163,0.553163,,,,,,,1.021814,0.762416,0.660571,0.660681,0.983794,1.131292,0.553163,0.553163,0.553163,0.553163,0.372924,0.295104,0.264551,0.264584,0.361518,0.405767,0.232328,0.232328,0.12354,0.12354,21.654153,29.021581,33.496053,33.490486,22.491013,19.558632,40,40,40,40,,,,,,,,,,,3784,3784,0.553163,0.553163,0.553163,0.553163,0.553163,0.553163,0.553163,0.553163,0.232328,0.232328,40,40,, +14808,0,1.018155,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,2.146,3.164,0,21.817607,6.55,4.5,4.07262,4.07262,4.07262,4.07262,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.073293,4.072621,4.07262,4.07262,4.073293,4.072621,4.07262,4.07262,4.07262,4.07262,4.07262,4.07262,4.07265,4.073756,4.07262,4.07262,4.07265,4.073756,4.07262,4.07262,4.07262,4.07262,4.07262,4.07262,,,,,,,4.073293,4.072621,4.07262,4.07262,4.07265,4.073756,4.07262,4.07262,4.07262,4.07262,1.405256,1.405054,1.405054,1.405054,1.405063,1.405395,1.405054,1.405054,0.72289,0.72289,14.997523,14.999994,15,15,14.999889,14.995815,15,15,15,15,,,,,,,,,,,2064,2064,4.07262,4.07262,4.07262,4.07262,4.07262,4.07262,4.07262,4.07262,1.405054,1.405054,15,15,, +15148,0,0.258452,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,3.239,3.498,0,5.538258,8,4.5,0.620285,0.620285,0.620285,0.620285,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.624065,0.621557,0.620285,0.620285,0.624065,0.621557,0.621645,0.622463,0.620285,0.620285,0.621645,0.622463,0.627537,0.645752,0.620285,0.620285,0.627537,0.645752,0.620285,0.620285,0.620285,0.620285,0.620285,0.620285,,,,,,,0.624065,0.621557,0.621645,0.622463,0.627537,0.645752,0.620285,0.620285,0.620285,0.620285,0.233741,0.232988,0.233015,0.23326,0.234783,0.240247,0.232607,0.232607,0.121472,0.121472,24.848562,24.948847,24.945282,24.912508,24.71107,24.014036,25,25,25,25,,,,,,,,,,,2408,2408,0.620285,0.620285,0.620285,0.620285,0.620285,0.620285,0.620285,0.620285,0.232607,0.232607,25,25,, +15334,0,0.687951,1,1,0,2,5,,3,2,Hix,Rd,1595808,1.492,2.18,0,14.741798,8,4.5,1.651081,1.651081,1.651081,1.651081,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.696389,1.765905,1.651081,1.651081,1.696389,1.765905,1.677917,1.686276,1.651081,1.651081,1.677917,1.686276,1.938376,2.125389,1.651081,1.651081,1.938376,2.125389,1.651081,1.651081,1.651081,1.651081,1.651081,1.651081,,,,,,,1.696389,1.765905,1.677917,1.686276,1.938376,2.125389,1.651081,1.651081,1.651081,1.651081,0.632748,0.653603,0.627206,0.629714,0.705344,0.761448,0.619155,0.619155,0.323337,0.323337,24.332288,23.374432,24.600161,24.478217,21.29465,19.420934,25,25,25,25,,,,,,,,,,,2408,2408,1.651081,1.651081,1.651081,1.651081,1.651081,1.651081,1.651081,1.651081,0.619155,0.619155,25,25,, +15396,0,0.280491,1,1,1,2,3,,4,2,Beck,Rd,1595603,4.738,5.019,0,6.010516,3.7,5,0.420736,0.420736,0.420736,0.420736,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.628001,0.442643,0.420736,0.420736,0.628001,0.442643,0.437347,0.438868,0.420736,0.420736,0.437347,0.438868,0.484372,0.580967,0.420736,0.420736,0.484372,0.580967,0.420736,0.420736,0.420736,0.420736,0.420736,0.420736,,,,,,,0.628001,0.442643,0.437347,0.438868,0.484372,0.580967,0.420736,0.420736,0.420736,0.420736,0.238889,0.183281,0.181692,0.182149,0.1958,0.224778,0.176709,0.176709,0.093964,0.093964,26.798424,38.020378,38.480753,38.347401,34.74487,28.967977,40,40,40,40,,,,,,,,,,,4162,4162,0.420736,0.420736,0.420736,0.420736,0.420736,0.420736,0.420736,0.420736,0.176709,0.176709,40,40,, +15826,1,0.087241,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,2.323,2.41,0,1.869447,3.7,5,0.116321,,0.116321,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.187088,,0.116321,,0.187088,,0.129757,,0.116321,,0.129757,,0.170619,,0.116321,,0.170619,,0.116321,,0.116321,,0.116321,,,,,,,,0.187088,,0.129757,,0.170619,,0.116321,,0.116321,,0.07183,,0.054631,,0.066889,,0.0506,,0.027045,,27.978587,,40.340314,,30.679244,,45,,45,,,,,,,,,,,,7568,,0.116321,,0.116321,,0.116321,,0.116321,,0.0506,,45,,, +15839,0,0.241347,1,1,0,2,4,,3,2,Venoy,Rd,1599408,4.744,4.985,0,5.171716,6,4.5,0.438812,0.438812,0.438812,0.438812,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.505249,0.453198,0.438812,0.438812,0.505249,0.453198,0.454344,0.455256,0.438812,0.438812,0.454344,0.455256,0.504824,0.535977,0.438812,0.438812,0.504824,0.535977,0.438812,0.438812,0.438812,0.438812,0.438812,0.438812,,,,,,,0.505249,0.453198,0.454344,0.455256,0.504824,0.535977,0.438812,0.438812,0.438812,0.438812,0.195017,0.179402,0.179746,0.180019,0.19489,0.204236,0.175086,0.175086,0.09237,0.09237,28.660707,31.952481,31.871895,31.808026,28.684848,27.017567,33,33,33,33,,,,,,,,,,,2580,2580,0.438812,0.438812,0.438812,0.438812,0.438812,0.438812,0.438812,0.438812,0.175086,0.175086,33,33,, +16047,0,0.723669,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,2.949,3.672,0,15.507182,4.5,4.5,1.142634,1.142634,1.142634,1.142634,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.58189,1.504167,1.142634,1.142634,1.58189,1.504167,1.295631,1.284618,1.142634,1.142634,1.295631,1.284618,1.736674,1.697648,1.142634,1.142634,1.736674,1.697648,1.142634,1.142634,1.142634,1.142634,1.142634,1.142634,,,,,,,1.58189,1.504167,1.295631,1.284618,1.736674,1.697648,1.142634,1.142634,1.142634,1.142634,0.604827,0.58151,0.518949,0.515646,0.651263,0.639555,0.473051,0.473051,0.250999,0.250999,27.448252,28.866557,33.512726,33.800005,25.001875,25.576634,38,38,38,38,,,,,,,,,,,3096,3096,1.142634,1.142634,1.142634,1.142634,1.142634,1.142634,1.142634,1.142634,0.473051,0.473051,38,38,, +16049,1,1.360362,3,0,0,1,2,,4,2,E M 14,,1606205,2.557,3.917,0,,0.8,7.5,1.166025,,1.166025,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.289999,,1.166025,,1.289999,,1.167138,,1.166025,,1.167138,,1.191803,,1.166025,,1.191803,,1.166025,,1.166025,,1.166025,,,,,,,,1.289999,,1.167138,,1.191803,,1.166025,,1.166025,,0.631865,,0.595007,,0.602406,,0.594673,,0.324544,,63.272699,,69.933206,,68.485939,,70,,70,,,,,,,,,,,,22704,,1.166025,,1.166025,,1.166025,,1.166025,,0.594673,,70,,, +16194,-1,1.870844,0,3,0,1,1,,4,2,S I 275,,1607610,17.684,19.554,0,,0.8,7.5,,1.60358,,1.60358,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.644858,,1.60358,,1.644858,,1.615392,,1.60358,,1.615392,,2.308972,,1.60358,,2.308972,,1.60358,,1.60358,,1.60358,,,,,,,,1.644858,,1.615392,,2.308972,,1.60358,,1.60358,,0.830209,,0.821369,,1.029443,,0.817826,,0.44633,,68.243367,,69.488157,,48.614981,,70,,70,,,,,,,,,,,,22704,,1.60358,,1.60358,,1.60358,,1.60358,,0.817826,,70,, +16210,0,1.037297,1,1,0,2,4,,4,2,Ann Arbor,Trl,1604108,1.002,2.039,0,22.227788,4.5,4.5,1.637837,1.637837,1.637837,1.637837,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.94435,1.661196,1.637837,1.637837,1.94435,1.661196,1.663094,1.654985,1.637837,1.637837,1.663094,1.654985,1.79209,2.085939,1.637837,1.637837,1.79209,2.085939,1.637837,1.637837,1.637837,1.637837,1.637837,1.637837,,,,,,,1.94435,1.661196,1.663094,1.654985,1.79209,2.085939,1.637837,1.637837,1.637837,1.637837,0.770018,0.685072,0.685641,0.683209,0.724341,0.812495,0.678065,0.678065,0.359778,0.359778,32.009572,37.465651,37.422913,37.606268,34.729169,29.836828,38,38,38,38,,,,,,,,,,,3096,3096,1.637837,1.637837,1.637837,1.637837,1.637837,1.637837,1.637837,1.637837,0.678065,0.678065,38,38,, +16231,0,0.528034,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,2.455,2.983,0,11.315016,4.5,4.5,0.833738,0.833738,0.833738,0.833738,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,1.230756,0.939696,0.833738,0.833738,1.230756,0.939696,0.9038,0.902607,0.833738,0.833738,0.9038,0.902607,1.107038,1.234302,0.833738,0.833738,1.107038,1.234302,0.833738,0.833738,0.833738,0.833738,0.833738,0.833738,,,,,,,1.230756,0.939696,0.9038,0.902607,1.107038,1.234302,0.833738,0.833738,0.833738,0.833738,0.464273,0.376955,0.366186,0.365828,0.427158,0.465337,0.345168,0.345168,0.183144,0.183144,25.741943,33.715199,35.054256,35.10058,28.618746,25.667979,38,38,38,38,,,,,,,,,,,3406,3406,0.833738,0.833738,0.833738,0.833738,0.833738,0.833738,0.833738,0.833738,0.345168,0.345168,38,38,, +16755,1,1.972175,3,0,0,1,1,,4,2,N I 275,,1607208,17.603,19.575,0,,0.8,7.5,1.690436,,1.690436,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.637905,,1.690436,,2.637905,,1.717239,,1.690436,,1.717239,,1.92038,,1.690436,,1.92038,,1.690436,,1.690436,,1.690436,,,,,,,,2.637905,,1.717239,,1.92038,,1.690436,,1.690436,,1.146363,,0.870163,,0.931106,,0.862122,,0.470505,,44.857761,,68.90742,,61.618282,,70,,70,,,,,,,,,,,,22704,,1.690436,,1.690436,,1.690436,,1.690436,,0.862122,,70,,, +16933,-1,1.275954,0,3,0,1,2,,4,2,W M 14,,1606204,2.76,4.036,0,,0.8,7.5,,1.093675,,1.093675,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.11559,,1.093675,,1.11559,,1.094985,,1.093675,,1.094985,,1.154442,,1.093675,,1.154442,,1.093675,,1.093675,,1.093675,,,,,,,,1.11559,,1.094985,,1.154442,,1.093675,,1.093675,,0.564349,,0.558167,,0.576004,,0.557774,,0.304406,,68.624907,,69.91623,,66.315372,,70,,70,,,,,,,,,,,,22704,,1.093675,,1.093675,,1.093675,,1.093675,,0.557774,,70,, +16950,1,0.339091,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,2.776,3.115,0,7.266235,4.5,4.5,0.47315,,0.47315,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.489958,,0.47315,,0.489958,,0.473191,,0.47315,,0.473191,,0.476704,,0.47315,,0.476704,,0.47315,,0.47315,,0.47315,,,,,,,,0.489958,,0.473191,,0.476704,,0.47315,,0.47315,,0.208024,,0.202994,,0.204048,,0.202981,,0.108273,,41.524861,,42.996259,,42.679421,,43,,43,,,,,,,,,,,,6880,,0.47315,,0.47315,,0.47315,,0.47315,,0.202981,,43,,, +17443,0,0.444269,1,1,0,2,4,,3,2,Fairbrook,St,1680703,2.778,3.223,0,9.520055,6,4.5,0.807762,0.807762,0.807762,0.807762,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.987591,1.032749,0.807762,0.807762,1.987591,1.032749,0.969967,0.923551,0.807762,0.807762,0.969967,0.923551,1.389914,1.81336,0.807762,0.807762,1.389914,1.81336,0.807762,0.807762,0.807762,0.807762,0.807762,0.807762,,,,,,,1.987591,1.032749,0.969967,0.923551,1.389914,1.81336,0.807762,0.807762,0.807762,0.807762,0.676246,0.389793,0.370959,0.357034,0.496943,0.623976,0.322297,0.322297,0.170034,0.170034,13.411289,25.810875,27.481496,28.862668,19.178278,14.699868,33,33,33,33,,,,,,,,,,,2580,2580,0.807762,0.807762,0.807762,0.807762,0.807762,0.807762,0.807762,0.807762,0.322297,0.322297,33,33,, +17618,0,0.527796,1,1,0,2,4,,4,2,Tyler,Rd,1675701,0.398,0.925,0,11.309923,4.5,4.5,0.833363,0.833363,0.833363,0.833363,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.886209,1.08382,0.833363,0.833363,0.886209,1.08382,0.89602,0.907066,0.833363,0.833363,0.89602,0.907066,1.416075,1.32645,0.833363,0.833363,1.416075,1.32645,0.833363,0.833363,0.833363,0.833363,0.833363,0.833363,,,,,,,0.886209,1.08382,0.89602,0.907066,1.416075,1.32645,0.833363,0.833363,0.833363,0.833363,0.360866,0.420149,0.363809,0.367123,0.519826,0.492938,0.345012,0.345012,0.183062,0.183062,35.73399,29.218684,35.342722,34.912312,22.363072,23.874087,38,38,38,38,,,,,,,,,,,3096,3096,0.833363,0.833363,0.833363,0.833363,0.833363,0.833363,0.833363,0.833363,0.345012,0.345012,38,38,, +17789,0,0.206227,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.355,5.561,0,4.419142,4.5,4.5,0.325621,0.325621,0.325621,0.325621,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.427451,0.334128,0.325621,0.325621,0.427451,0.334128,0.338284,0.33753,0.325621,0.325621,0.338284,0.33753,0.371024,0.442224,0.325621,0.325621,0.371024,0.442224,0.325621,0.325621,0.325621,0.325621,0.325621,0.325621,,,,,,,0.427451,0.334128,0.338284,0.33753,0.371024,0.442224,0.325621,0.325621,0.325621,0.325621,0.165356,0.137359,0.138606,0.13838,0.148428,0.169788,0.134807,0.134807,0.071528,0.071528,28.947428,37.032533,36.577574,36.65928,33.349851,27.98036,38,38,38,38,,,,,,,,,,,3096,3096,0.325621,0.325621,0.325621,0.325621,0.325621,0.325621,0.325621,0.325621,0.134807,0.134807,38,38,, +17946,0,0.581965,1,1,0,2,4,,4,2,Territorial,Rd,1673609,2.531,3.113,0,12.47068,4.5,4.5,0.918892,0.918892,0.918892,0.918892,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.014808,0.942105,0.918892,0.918892,1.014808,0.942105,0.945764,0.930449,0.918892,0.918892,0.945764,0.930449,0.987991,1.055763,0.918892,0.918892,0.987991,1.055763,0.918892,0.918892,0.918892,0.918892,0.918892,0.918892,,,,,,,1.014808,0.942105,0.945764,0.930449,0.987991,1.055763,0.918892,0.918892,0.918892,0.918892,0.409196,0.387385,0.388483,0.383888,0.401151,0.421483,0.380421,0.380421,0.20185,0.20185,34.408402,37.06369,36.920328,37.528007,35.342336,33.073617,38,38,38,38,,,,,,,,,,,3096,3096,0.918892,0.918892,0.918892,0.918892,0.918892,0.918892,0.918892,0.918892,0.380421,0.380421,38,38,, +17960,1,0.486612,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.491,0.978,0,10.427403,8,4.5,0.973224,,0.973224,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.973341,,0.973224,,0.973341,,0.97332,,0.973224,,0.97332,,0.975466,,0.973224,,0.975466,,0.973224,,0.973224,,0.973224,,,,,,,,0.973341,,0.97332,,0.975466,,0.973224,,0.973224,,0.379592,,0.379586,,0.38023,,0.379557,,0.199511,,29.996409,,29.99704,,29.931067,,30,,30,,,,,,,,,,,,5504,,0.973224,,0.973224,,0.973224,,0.973224,,0.379557,,30,,, +18053,0,0.772082,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,2.718,3.49,0,16.544609,4.5,4.5,1.219076,1.219076,1.219076,1.219076,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.350878,1.343,1.219076,1.219076,1.350878,1.343,1.335302,1.34665,1.219076,1.219076,1.335302,1.34665,1.407806,1.359487,1.219076,1.219076,1.407806,1.359487,1.219076,1.219076,1.219076,1.219076,1.219076,1.219076,,,,,,,1.350878,1.343,1.335302,1.34665,1.407806,1.359487,1.219076,1.219076,1.219076,1.219076,0.544238,0.541875,0.539565,0.54297,0.561316,0.546821,0.504698,0.504698,0.26779,0.26779,34.292437,34.49359,34.692455,34.400117,32.905749,34.075272,38,38,38,38,,,,,,,,,,,3096,3096,1.219076,1.219076,1.219076,1.219076,1.219076,1.219076,1.219076,1.219076,0.504698,0.504698,38,38,, +18180,0,0.041091,2,2,0,2,3,,3,3,8 Mile,Rd,1680705,3.009,3.05,0,0.880526,5,5,0.070442,0.070442,0.070442,0.070442,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.077937,0.070858,0.070442,0.070442,0.077937,0.070858,0.070669,0.070654,0.070442,0.070442,0.070669,0.070654,0.072936,0.07903,0.070442,0.070442,0.072936,0.07903,0.070442,0.070442,0.070442,0.070442,0.070442,0.070442,,,,,,,0.077937,0.070858,0.070669,0.070654,0.072936,0.07903,0.070442,0.070442,0.070442,0.070442,0.030777,0.028654,0.028597,0.028593,0.029277,0.031106,0.028529,0.028529,0.015086,0.015086,31.634297,34.794582,34.887683,34.895177,33.803413,31.196463,35,35,35,35,,,,,,,,,,,7568,7568,0.070442,0.070442,0.070442,0.070442,0.070442,0.070442,0.070442,0.070442,0.028529,0.028529,35,35,, +18288,0,0.471285,1,1,0,2,5,,4,2,Hanford,Rd,1676006,2.526,2.997,0,10.098974,5.8,4.5,1.047301,1.047301,1.047301,1.047301,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.256021,1.052945,1.047301,1.047301,1.256021,1.052945,1.051173,1.05024,1.047301,1.047301,1.051173,1.05024,1.125509,1.260021,1.047301,1.047301,1.125509,1.260021,1.047301,1.047301,1.047301,1.047301,1.047301,1.047301,,,,,,,1.256021,1.052945,1.051173,1.05024,1.125509,1.260021,1.047301,1.047301,1.047301,1.047301,0.461638,0.400715,0.400183,0.399903,0.422484,0.462838,0.399022,0.399022,0.208937,0.208937,22.513251,26.855264,26.90054,26.924455,25.123852,22.441782,27,27,27,27,,,,,,,,,,,2580,2580,1.047301,1.047301,1.047301,1.047301,1.047301,1.047301,1.047301,1.047301,0.399022,0.399022,27,27,, +18927,0,0.874505,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,2.615,3.489,0,18.73939,4.5,4.5,1.380797,1.380797,1.380797,1.380797,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.581215,1.383044,1.380797,1.380797,1.581215,1.383044,1.398433,1.386242,1.380797,1.380797,1.398433,1.386242,1.409402,1.583369,1.380797,1.380797,1.409402,1.583369,1.380797,1.380797,1.380797,1.380797,1.380797,1.380797,,,,,,,1.581215,1.383044,1.398433,1.386242,1.409402,1.583369,1.380797,1.380797,1.380797,1.380797,0.631775,0.572324,0.576941,0.573284,0.580232,0.632421,0.57165,0.57165,0.303315,0.303315,33.183525,37.938274,37.520774,37.850735,37.228758,33.138392,38,38,38,38,,,,,,,,,,,3096,3096,1.380797,1.380797,1.380797,1.380797,1.380797,1.380797,1.380797,1.380797,0.57165,0.57165,38,38,, +19046,0,0.255003,1,1,0,2,4,,4,2,Joy,Rd,1672705,2.356,2.61,0,5.464355,4.5,4.5,0.402637,0.402637,0.402637,0.402637,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.567977,0.821982,0.402637,0.402637,0.567977,0.821982,0.472644,0.455547,0.402637,0.402637,0.472644,0.455547,0.998678,0.738388,0.402637,0.402637,0.998678,0.738388,0.402637,0.402637,0.402637,0.402637,0.402637,0.402637,,,,,,,0.567977,0.821982,0.472644,0.455547,0.998678,0.738388,0.402637,0.402637,0.402637,0.402637,0.216294,0.292495,0.187694,0.182565,0.345504,0.267417,0.166692,0.166692,0.088446,0.088446,26.938075,18.61378,32.371523,33.586413,15.320447,20.721065,38,38,38,38,,,,,,,,,,,3096,3096,0.402637,0.402637,0.402637,0.402637,0.402637,0.402637,0.402637,0.402637,0.166692,0.166692,38,38,, +19235,0,0.496013,1,1,0,2,5,,4,2,South Service,Rd,1811006,2.728,3.224,0,10.628847,5.8,4.5,1.102251,1.102251,1.102251,1.102251,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.133879,1.105337,1.102251,1.102251,1.133879,1.105337,1.10231,1.104583,1.102251,1.102251,1.10231,1.104583,1.108332,1.544892,1.102251,1.102251,1.108332,1.544892,1.102251,1.102251,1.102251,1.102251,1.102251,1.102251,,,,,,,1.133879,1.105337,1.10231,1.104583,1.108332,1.544892,1.102251,1.102251,1.102251,1.102251,0.429446,0.420883,0.419975,0.420657,0.421782,0.55275,0.419958,0.419958,0.219899,0.219899,26.246876,26.924624,26.99856,26.942983,26.851863,19.263976,27,27,27,27,,,,,,,,,,,2580,2580,1.102251,1.102251,1.102251,1.102251,1.102251,1.102251,1.102251,1.102251,0.419958,0.419958,27,27,, +21265,0,0.519872,1,1,0,2,5,,4,2,North Service,Rd,4603886,2.802,3.322,0,11.140109,5.8,4.5,1.155271,1.155271,1.155271,1.155271,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,,,,,,,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,0.440158,0.440158,0.440158,0.440158,0.440158,0.440158,0.440158,0.440158,0.230476,0.230476,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,1.155271,0.440158,0.440158,27,27,, +21767,-1,0.344826,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,2.807,3.152,0,7.389138,4.5,4.5,,0.481153,,0.481153,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.483207,,0.481153,,0.483207,,0.481204,,0.481153,,0.481204,,0.488992,,0.481153,,0.488992,,0.481153,,0.481153,,0.481153,,,,,,,,0.483207,,0.481204,,0.488992,,0.481153,,0.481153,,0.207031,,0.20643,,0.208766,,0.206415,,0.110104,,42.817258,,42.995427,,42.310675,,43,,43,,,,,,,,,,,,6880,,0.481153,,0.481153,,0.481153,,0.481153,,0.206415,,43,, +21863,0,0.617746,1,1,0,2,4,,4,2,Geddes,Rd,4603888,2.896,3.513,0,13.237409,4.5,4.5,0.975388,0.975388,0.975388,0.975388,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.428802,1.134891,0.975388,0.975388,1.428802,1.134891,1.003038,0.990276,0.975388,0.975388,1.003038,0.990276,1.270286,1.632427,0.975388,0.975388,1.270286,1.632427,0.975388,0.975388,0.975388,0.975388,0.975388,0.975388,,,,,,,1.428802,1.134891,1.003038,0.990276,1.270286,1.632427,0.975388,0.975388,0.975388,0.975388,0.539835,0.451662,0.412106,0.408277,0.49228,0.600922,0.403811,0.403811,0.21426,0.21426,25.941142,32.659295,36.952484,37.428697,29.178278,22.705305,38,38,38,38,,,,,,,,,,,3096,3096,0.975388,0.975388,0.975388,0.975388,0.975388,0.975388,0.975388,0.975388,0.403811,0.403811,38,38,, +22247,-1,0.754769,0,2,0,2,5,DIV,3,2,Central City,Pkwy,4702294,0.168,0.922,0,16.173623,8,4.5,,1.509538,,1.509538,,30,,16000,,3632,,8000,,5162,,5504,,5498,,1.509633,,1.509538,,1.509633,,1.50955,,1.509538,,1.50955,,1.524425,,1.509538,,1.524425,,1.509538,,1.509538,,1.509538,,,,,,,,1.509633,,1.50955,,1.524425,,1.509538,,1.509538,,0.588748,,0.588723,,0.593186,,0.58872,,0.309455,,29.998112,,29.999771,,29.707028,,30,,30,,,,,,,,,,,,5504,,1.509538,,1.509538,,1.509538,,1.509538,,0.58872,,30,, +22493,0,0.838928,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,8.682,9.521,0,17.977026,4.5,4.5,1.324623,1.324623,1.324623,1.324623,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.621367,1.33687,1.324623,1.324623,1.621367,1.33687,1.382837,1.393651,1.324623,1.324623,1.382837,1.393651,1.429483,1.757005,1.324623,1.324623,1.429483,1.757005,1.324623,1.324623,1.324623,1.324623,1.324623,1.324623,,,,,,,1.621367,1.33687,1.382837,1.393651,1.429483,1.757005,1.324623,1.324623,1.324623,1.324623,0.637417,0.552068,0.565858,0.569102,0.579852,0.678109,0.548394,0.548394,0.290976,0.290976,31.045207,37.651883,36.400283,36.117848,35.212492,28.648564,38,38,38,38,,,,,,,,,,,3096,3096,1.324623,1.324623,1.324623,1.324623,1.324623,1.324623,1.324623,1.324623,0.548394,0.548394,38,38,, +22773,0,0.213587,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,4.264,4.477,0,4.576863,3.7,5,0.32038,0.32038,0.32038,0.32038,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.39091,0.323926,0.32038,0.32038,0.39091,0.323926,0.324983,0.325126,0.32038,0.32038,0.324983,0.325126,0.347675,0.404947,0.32038,0.32038,0.347675,0.404947,0.32038,0.32038,0.32038,0.32038,0.32038,0.32038,,,,,,,0.39091,0.323926,0.324983,0.325126,0.347675,0.404947,0.32038,0.32038,0.32038,0.32038,0.155719,0.135624,0.135941,0.135983,0.142748,0.15993,0.13456,0.13456,0.071552,0.071552,32.783024,39.562116,39.433519,39.416172,36.859795,31.646684,40,40,40,40,,,,,,,,,,,7946,7946,0.32038,0.32038,0.32038,0.32038,0.32038,0.32038,0.32038,0.32038,0.13456,0.13456,40,40,, +23323,-1,0.628817,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,2.706,3.335,0,13.474642,3.7,5,,0.838422,,0.838422,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.512241,,0.838422,,1.512241,,1.255579,,0.838422,,1.255579,,2.019389,,0.838422,,2.019389,,0.838422,,0.838422,,0.838422,,,,,,,,1.512241,,1.255579,,2.019389,,0.838422,,0.838422,,0.566859,,0.489861,,0.719004,,0.364714,,0.194933,,24.949067,,30.049082,,18.683372,,45,,45,,,,,,,,,,,,7568,,0.838422,,0.838422,,0.838422,,0.838422,,0.364714,,45,, +23630,0,0.220356,2,2,1,2,4,,4,2,Belleville,Rd,4705580,0,0.22,0,4.721918,4.5,4.5,0.347931,0.347931,0.347931,0.347931,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.408085,0.371853,0.347931,0.347931,0.408085,0.371853,0.369064,0.366243,0.347931,0.347931,0.369064,0.366243,0.39265,0.407214,0.347931,0.347931,0.39265,0.407214,0.347931,0.347931,0.347931,0.347931,0.347931,0.347931,,,,,,,0.408085,0.371853,0.369064,0.366243,0.39265,0.407214,0.347931,0.347931,0.347931,0.347931,0.16209,0.15122,0.150383,0.149537,0.157459,0.161828,0.144043,0.144043,0.076429,0.076429,32.398539,35.555338,35.824101,36.099964,33.672118,32.467829,38,38,38,38,,,,,,,,,,,6502,6502,0.347931,0.347931,0.347931,0.347931,0.347931,0.347931,0.347931,0.347931,0.144043,0.144043,38,38,, +23640,0,0.109744,2,2,1,2,4,,4,2,Main,St,4705581,0,0.11,0,2.35165,4.5,4.5,0.173279,0.173279,0.173279,0.173279,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.186906,0.2102,0.173279,0.173279,0.186906,0.2102,0.179805,0.183513,0.173279,0.173279,0.179805,0.183513,0.207452,0.210119,0.173279,0.173279,0.207452,0.210119,0.173279,0.173279,0.173279,0.173279,0.173279,0.173279,,,,,,,0.186906,0.2102,0.179805,0.183513,0.207452,0.210119,0.173279,0.173279,0.173279,0.173279,0.075826,0.082814,0.073695,0.074808,0.08199,0.08279,0.071738,0.071738,0.038064,0.038064,35.229641,31.325525,36.620827,35.880898,31.740378,31.337557,38,38,38,38,,,,,,,,,,,6502,6502,0.173279,0.173279,0.173279,0.173279,0.173279,0.173279,0.173279,0.173279,0.071738,0.071738,38,38,, +23969,0,0.278564,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,1.221,1.499,0,5.969231,4.5,4.5,0.439838,0.439838,0.439838,0.439838,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.626738,0.469895,0.439838,0.439838,0.626738,0.469895,0.501958,0.500119,0.439838,0.439838,0.501958,0.500119,0.595626,0.818975,0.439838,0.439838,0.595626,0.818975,0.439838,0.439838,0.439838,0.439838,0.439838,0.439838,,,,,,,0.626738,0.469895,0.501958,0.500119,0.595626,0.818975,0.439838,0.439838,0.439838,0.439838,0.238163,0.19111,0.200729,0.200177,0.228829,0.295834,0.182093,0.182093,0.096618,0.096618,26.668013,35.569286,33.297316,33.419727,28.060993,20.40826,38,38,38,38,,,,,,,,,,,3096,3096,0.439838,0.439838,0.439838,0.439838,0.439838,0.439838,0.439838,0.439838,0.182093,0.182093,38,38,, +23988,0,0.263319,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.194,10.457,0,5.642547,5,5,0.451404,0.451404,0.451404,0.451404,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.487785,0.457095,0.451404,0.451404,0.487785,0.457095,0.458904,0.457349,0.451404,0.451404,0.458904,0.457349,0.48019,0.503931,0.451404,0.451404,0.48019,0.503931,0.451404,0.451404,0.451404,0.451404,0.451404,0.451404,,,,,,,0.487785,0.457095,0.458904,0.457349,0.48019,0.503931,0.451404,0.451404,0.451404,0.451404,0.193733,0.184526,0.185069,0.184602,0.191454,0.198577,0.182819,0.182819,0.096676,0.096676,32.389562,34.564244,34.427963,34.544989,32.901857,31.351788,35,35,35,35,,,,,,,,,,,7946,7946,0.451404,0.451404,0.451404,0.451404,0.451404,0.451404,0.451404,0.451404,0.182819,0.182819,35,35,, +24046,0,0.367581,2,2,1,2,4,,3,2,Warren,Rd,4710470,7.391,7.758,0,7.876746,6,4.5,0.66833,0.66833,0.66833,0.66833,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.732744,0.805144,0.66833,0.66833,0.732744,0.805144,0.73472,0.833738,0.66833,0.66833,0.73472,0.833738,0.888552,0.955266,0.66833,0.66833,0.888552,0.955266,0.66833,0.66833,0.66833,0.66833,0.66833,0.66833,,,,,,,0.732744,0.805144,0.73472,0.833738,0.888552,0.955266,0.66833,0.66833,0.66833,0.66833,0.285988,0.307708,0.286581,0.316286,0.33273,0.352745,0.266664,0.266664,0.140683,0.140683,30.099048,27.39246,30.018094,26.453026,24.821166,23.087683,33,33,33,33,,,,,,,,,,,5418,5418,0.66833,0.66833,0.66833,0.66833,0.66833,0.66833,0.66833,0.66833,0.266664,0.266664,33,33,, +24068,0,0.260076,1,1,0,2,4,,4,2,Warren,Rd,4710470,4.756,5.016,0,5.573049,4.5,4.5,0.410646,0.410646,0.410646,0.410646,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.50304,0.425482,0.410646,0.410646,0.50304,0.425482,0.420501,0.415207,0.410646,0.410646,0.420501,0.415207,0.446282,0.460573,0.410646,0.410646,0.446282,0.460573,0.410646,0.410646,0.410646,0.410646,0.410646,0.410646,,,,,,,0.50304,0.425482,0.420501,0.415207,0.446282,0.460573,0.410646,0.410646,0.410646,0.410646,0.197726,0.174458,0.172964,0.171376,0.180698,0.184985,0.170007,0.170007,0.090205,0.090205,31.020457,36.674979,37.109404,37.582547,34.965607,33.880722,38,38,38,38,,,,,,,,,,,3096,3096,0.410646,0.410646,0.410646,0.410646,0.410646,0.410646,0.410646,0.410646,0.170007,0.170007,38,38,, +24091,0,0.476514,1,1,0,2,4,,4,2,Warren,Rd,4710470,2.5,2.976,0,10.211004,4.5,4.5,0.75239,0.75239,0.75239,0.75239,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.122225,0.880989,0.75239,0.75239,1.122225,0.880989,0.841599,0.812567,0.75239,0.75239,0.841599,0.812567,1.208231,1.257369,0.75239,0.75239,1.208231,1.257369,0.75239,0.75239,0.75239,0.75239,0.75239,0.75239,,,,,,,1.122225,0.880989,0.841599,0.812567,1.208231,1.257369,0.75239,0.75239,0.75239,0.75239,0.42244,0.350069,0.338252,0.329543,0.448242,0.462983,0.311489,0.311489,0.165275,0.165275,25.476887,32.4531,33.972004,35.185788,23.66336,22.738594,38,38,38,38,,,,,,,,,,,3096,3096,0.75239,0.75239,0.75239,0.75239,0.75239,0.75239,0.75239,0.75239,0.311489,0.311489,38,38,, +24092,0,0.051822,1,1,0,2,4,,4,2,Warren,Rd,4710470,2.448,2.5,0,1.11048,4.5,4.5,0.081825,0.081825,0.081825,0.081825,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.092591,0.092379,0.081825,0.081825,0.092591,0.092379,0.085475,0.084327,0.081825,0.081825,0.085475,0.084327,0.106897,0.097483,0.081825,0.081825,0.106897,0.097483,0.081825,0.081825,0.081825,0.081825,0.081825,0.081825,,,,,,,0.092591,0.092379,0.085475,0.084327,0.106897,0.097483,0.081825,0.081825,0.081825,0.081825,0.037105,0.037042,0.03497,0.034626,0.041397,0.038573,0.033875,0.033875,0.017974,0.017974,33.581376,33.658732,36.377383,36.872335,29.087384,31.896163,38,38,38,38,,,,,,,,,,,3096,3096,0.081825,0.081825,0.081825,0.081825,0.081825,0.081825,0.081825,0.081825,0.033875,0.033875,38,38,, +24150,0,0.84487,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,3.745,4.589,0,18.10435,6,4.5,1.536127,1.536127,1.536127,1.536127,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.878518,1.854721,1.536127,1.536127,1.878518,1.854721,1.687953,1.7316,1.536127,1.536127,1.687953,1.7316,2.156928,2.446495,1.536127,1.536127,2.156928,2.446495,1.536127,1.536127,1.536127,1.536127,1.536127,1.536127,,,,,,,1.878518,1.854721,1.687953,1.7316,2.156928,2.446495,1.536127,1.536127,1.536127,1.536127,0.715632,0.708493,0.658463,0.671556,0.799155,0.886025,0.612915,0.612915,0.323355,0.323355,26.985203,27.331436,30.031744,29.274769,23.502026,20.720328,33,33,33,33,,,,,,,,,,,5418,5418,1.536127,1.536127,1.536127,1.536127,1.536127,1.536127,1.536127,1.536127,0.612915,0.612915,33,33,, +24193,0,0.20465,1,1,0,2,4,,4,2,Lilley,Rd,4710390,3.923,4.128,0,4.385355,4.5,4.5,0.323131,0.323131,0.323131,0.323131,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.501111,0.344197,0.323131,0.323131,0.501111,0.344197,0.378692,0.367811,0.323131,0.323131,0.378692,0.367811,0.447567,0.544432,0.323131,0.323131,0.447567,0.544432,0.323131,0.323131,0.323131,0.323131,0.323131,0.323131,,,,,,,0.501111,0.344197,0.378692,0.367811,0.447567,0.544432,0.323131,0.323131,0.323131,0.323131,0.18717,0.140096,0.150445,0.14718,0.171107,0.200167,0.133776,0.133776,0.070981,0.070981,24.503553,35.674333,32.424763,33.383963,27.434989,22.553768,38,38,38,38,,,,,,,,,,,3096,3096,0.323131,0.323131,0.323131,0.323131,0.323131,0.323131,0.323131,0.323131,0.133776,0.133776,38,38,, +26297,0,0.70357,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.076508,0.15,4,2.814281,2.814281,2.814281,2.814281,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,,,,,,,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,0.970927,0.970927,0.970927,0.970927,0.970927,0.970927,0.970927,0.970927,0.499535,0.499535,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,2.814281,0.970927,0.970927,15,15,, +26870,0,0.531076,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.380202,0.15,4,2.124304,2.124304,2.124304,2.124304,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,,,,,,,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,0.732885,0.732885,0.732885,0.732885,0.732885,0.732885,0.732885,0.732885,0.377064,0.377064,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,2.124304,0.732885,0.732885,15,15,, +26878,0,0.405657,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.692658,0.15,4,1.62263,1.62263,1.62263,1.62263,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,,,,,,,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,0.559807,0.559807,0.559807,0.559807,0.559807,0.559807,0.559807,0.559807,0.288017,0.288017,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,1.62263,0.559807,0.559807,15,15,, +30938,0,1.003329,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.499905,0.15,4,4.013316,4.013316,4.013316,4.013316,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,,,,,,,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,1.384594,1.384594,1.384594,1.384594,1.384594,1.384594,1.384594,1.384594,0.712364,0.712364,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,4.013316,1.384594,1.384594,15,15,, +31414,0,0.498482,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.681764,0.15,4,1.993929,1.993929,1.993929,1.993929,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,,,,,,,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,0.687906,0.687906,0.687906,0.687906,0.687906,0.687906,0.687906,0.687906,0.353922,0.353922,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,1.993929,0.687906,0.687906,15,15,, +31415,0,0.344388,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.37974,0.15,4,1.377552,1.377552,1.377552,1.377552,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.377552,1.377552,1.377552,1.377552,1.377552,1.377552,1.377555,1.377552,1.377552,1.377552,1.377555,1.377552,1.377562,1.377552,1.377552,1.377552,1.377562,1.377552,1.377552,1.377552,1.377552,1.377552,1.377552,1.377552,,,,,,,1.377552,1.377552,1.377555,1.377552,1.377562,1.377552,1.377552,1.377552,1.377552,1.377552,0.475256,0.475255,0.475256,0.475255,0.475258,0.475255,0.475255,0.475255,0.244515,0.244515,14.999991,15,14.999967,15,14.999884,15,15,15,15,15,,,,,,,,,,,34400,34400,1.377552,1.377552,1.377552,1.377552,1.377552,1.377552,1.377552,1.377552,0.475255,0.475255,15,15,, +31422,0,0.509887,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.926157,0.15,4,2.039549,2.039549,2.039549,2.039549,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.03955,2.039549,2.039549,2.039549,2.03955,2.039549,2.039549,2.039549,2.039549,2.039549,2.039549,2.039549,2.039549,2.03955,2.039549,2.039549,2.039549,2.03955,2.039549,2.039549,2.039549,2.039549,2.039549,2.039549,,,,,,,2.03955,2.039549,2.039549,2.039549,2.039549,2.03955,2.039549,2.039549,2.039549,2.039549,0.703645,0.703645,0.703645,0.703645,0.703645,0.703645,0.703645,0.703645,0.36202,0.36202,14.999997,15,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.039549,2.039549,2.039549,2.039549,2.039549,2.039549,2.039549,2.039549,0.703645,0.703645,15,15,, +31423,0,0.496206,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.632994,0.15,4,1.984825,1.984825,1.984825,1.984825,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,,,,,,,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,0.684765,0.684765,0.684765,0.684765,0.684765,0.684765,0.684765,0.684765,0.352307,0.352307,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,1.984825,0.684765,0.684765,15,15,, +31428,0,0.496669,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.642897,0.15,4,1.986674,1.986674,1.986674,1.986674,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,,,,,,,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,0.685403,0.685403,0.685403,0.685403,0.685403,0.685403,0.685403,0.685403,0.352635,0.352635,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,1.986674,0.685403,0.685403,15,15,, +31430,0,0.505855,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.839749,0.15,4,2.02342,2.02342,2.02342,2.02342,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,,,,,,,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,0.69808,0.69808,0.69808,0.69808,0.69808,0.69808,0.69808,0.69808,0.359157,0.359157,15,14.999998,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,2.02342,0.69808,0.69808,15,15,, +31437,0,0.47631,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.206636,0.15,4,1.905239,1.905239,1.905239,1.905239,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,,,,,,,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,0.657307,0.657307,0.657307,0.657307,0.657307,0.657307,0.657307,0.657307,0.33818,0.33818,14.999997,14.999999,15,15,14.999998,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,1.905239,0.657307,0.657307,15,15,, +31442,0,0.250569,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.369332,0.15,4,1.002275,1.002275,1.002275,1.002275,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,,,,,,,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,0.345785,0.345785,0.345785,0.345785,0.345785,0.345785,0.345785,0.345785,0.177904,0.177904,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,1.002275,0.345785,0.345785,15,15,, +31446,0,0.498046,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.672417,0.15,4,1.992185,1.992185,1.992185,1.992185,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,,,,,,,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,0.687304,0.687304,0.687304,0.687304,0.687304,0.687304,0.687304,0.687304,0.353613,0.353613,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,1.992185,0.687304,0.687304,15,15,, +31447,0,0.204754,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.387576,0.15,4,0.819014,0.819014,0.819014,0.819014,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,,,,,,,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.28256,0.28256,0.28256,0.28256,0.28256,0.28256,0.28256,0.28256,0.145375,0.145375,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.819014,0.28256,0.28256,15,15,, +31451,0,0.566856,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.146908,0.15,4,2.267423,2.267423,2.267423,2.267423,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,,,,,,,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,0.782261,0.782261,0.782261,0.782261,0.782261,0.782261,0.782261,0.782261,0.402468,0.402468,15,14.999996,15,15,14.999998,15,15,15,15,15,,,,,,,,,,,34400,34400,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,2.267423,0.782261,0.782261,15,15,, +31455,0,0.754322,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.164053,0.15,4,3.01729,3.01729,3.01729,3.01729,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,,,,,,,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,1.040965,1.040965,1.040965,1.040965,1.040965,1.040965,1.040965,1.040965,0.535569,0.535569,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,3.01729,1.040965,1.040965,15,15,, +31458,0,0.380713,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.158146,0.15,4,1.522854,1.522854,1.522854,1.522854,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,,,,,,,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,0.525385,0.525385,0.525385,0.525385,0.525385,0.525385,0.525385,0.525385,0.270307,0.270307,15,14.999999,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,1.522854,0.525385,0.525385,15,15,, +31469,0,0.806864,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.289946,0.15,4,3.227457,3.227457,3.227457,3.227457,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,,,,,,,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,1.113473,1.113473,1.113473,1.113473,1.113473,1.113473,1.113473,1.113473,0.572874,0.572874,15,14.999998,15,15,14.999996,15,15,15,15,15,,,,,,,,,,,34400,34400,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,3.227457,1.113473,1.113473,15,15,, +31472,0,0.767587,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.448288,0.15,4,3.070347,3.070347,3.070347,3.070347,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,,,,,,,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,1.05927,1.05927,1.05927,1.05927,1.05927,1.05927,1.05927,1.05927,0.544987,0.544987,14.999998,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,3.070347,1.05927,1.05927,15,15,, +31474,0,0.229513,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.918146,0.15,4,0.918054,0.918054,0.918054,0.918054,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,,,,,,,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.316729,0.316729,0.316729,0.316729,0.316729,0.316729,0.316729,0.316729,0.162955,0.162955,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.918054,0.316729,0.316729,15,15,, +31485,0,0.292843,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.275198,0.15,4,1.17137,1.17137,1.17137,1.17137,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,,,,,,,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,0.404123,0.404123,0.404123,0.404123,0.404123,0.404123,0.404123,0.404123,0.207918,0.207918,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,1.17137,0.404123,0.404123,15,15,, +31489,0,0.682239,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.619417,0.15,4,2.728958,2.728958,2.728958,2.728958,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,,,,,,,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,0.941491,0.94149,0.94149,0.94149,0.941491,0.941491,0.94149,0.94149,0.48439,0.48439,14.999999,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,2.728958,0.94149,0.94149,15,15,, +31492,0,0.60564,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.978004,0.15,4,2.422561,2.422561,2.422561,2.422561,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,,,,,,,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,0.835783,0.835783,0.835783,0.835783,0.835783,0.835783,0.835783,0.835783,0.430005,0.430005,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,2.422561,0.835783,0.835783,15,15,, +31494,0,0.261031,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.593511,0.15,4,1.566183,1.566183,1.566183,1.566183,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,1.566184,1.566183,1.566183,1.566183,1.566184,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,,,,,,,1.566183,1.566183,1.566183,1.566183,1.566183,1.566184,1.566183,1.566183,1.566183,1.566183,0.516841,0.51684,0.51684,0.51684,0.51684,0.516841,0.51684,0.51684,0.263641,0.263641,9.999998,10,10,10,10,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,1.566183,0.51684,0.51684,10,10,, +31499,0,0.249896,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.354919,0.15,4,1.499377,1.499377,1.499377,1.499377,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.499379,1.499378,1.499377,1.499377,1.499379,1.499378,1.499378,1.499378,1.499377,1.499377,1.499378,1.499378,1.49938,1.49938,1.499377,1.499377,1.49938,1.49938,1.499377,1.499377,1.499377,1.499377,1.499377,1.499377,,,,,,,1.499379,1.499378,1.499378,1.499378,1.49938,1.49938,1.499377,1.499377,1.499377,1.499377,0.494795,0.494795,0.494795,0.494795,0.494795,0.494795,0.494795,0.494795,0.252395,0.252395,9.99999,9.999999,9.999994,9.999997,9.999985,9.999985,10,10,10,10,,,,,,,,,,,34400,34400,1.499377,1.499377,1.499377,1.499377,1.499377,1.499377,1.499377,1.499377,0.494795,0.494795,10,10,, +31506,0,0.693274,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.855873,0.15,4,4.159644,4.159644,4.159644,4.159644,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,,,,,,,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,1.372683,1.372683,1.372683,1.372683,1.372683,1.372683,1.372683,1.372683,0.700207,0.700207,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,4.159644,1.372683,1.372683,10,10,, +31539,0,0.924154,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.803293,0.15,4,3.696615,3.696615,3.696615,3.696615,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,,,,,,,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,1.275332,1.275332,1.275332,1.275332,1.275332,1.275332,1.275332,1.275332,0.656149,0.656149,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,3.696615,1.275332,1.275332,15,15,, +31749,0,0.414682,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.886048,0.15,4,1.658729,1.658729,1.658729,1.658729,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,,,,,,,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,0.572261,0.572261,0.572261,0.572261,0.572261,0.572261,0.572261,0.572261,0.294424,0.294424,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,1.658729,0.572261,0.572261,15,15,, +33607,0,0.834932,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.891396,0.15,4,3.339727,3.339727,3.339727,3.339727,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,,,,,,,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,1.152206,1.152206,1.152206,1.152206,1.152206,1.152206,1.152206,1.152206,0.592802,0.592802,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,3.339727,1.152206,1.152206,15,15,, +33758,0,0.875145,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.753113,0.15,4,3.500581,3.500581,3.500581,3.500581,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,,,,,,,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,1.2077,1.2077,1.2077,1.2077,1.2077,1.2077,1.2077,1.2077,0.621353,0.621353,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,3.500581,1.2077,1.2077,15,15,, +33949,0,0.664528,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.239876,0.15,4,2.65811,2.65811,2.65811,2.65811,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,,,,,,,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,0.917048,0.917048,0.917048,0.917048,0.917048,0.917048,0.917048,0.917048,0.471815,0.471815,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,2.65811,0.917048,0.917048,15,15,, +33950,0,0.682757,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.6305,0.15,4,2.731027,2.731027,2.731027,2.731027,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,,,,,,,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,0.942204,0.942204,0.942204,0.942204,0.942204,0.942204,0.942204,0.942204,0.484757,0.484757,15,14.999998,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,2.731027,0.942204,0.942204,15,15,, +33958,0,0.502934,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.777153,0.15,4,2.011735,2.011735,2.011735,2.011735,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,,,,,,,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,0.694049,0.694049,0.694049,0.694049,0.694049,0.694049,0.694049,0.694049,0.357083,0.357083,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,2.011735,0.694049,0.694049,15,15,, +33961,0,0.49364,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.577992,0.15,4,1.974559,1.974559,1.974559,1.974559,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,,,,,,,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,0.681223,0.681223,0.681223,0.681223,0.681223,0.681223,0.681223,0.681223,0.350484,0.350484,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,1.974559,0.681223,0.681223,15,15,, +9721,0,0.443663,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.461,4.904,0,9.507068,3.7,5,0.665495,0.665495,0.665495,0.665495,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.671972,0.714426,0.665495,0.665495,0.671972,0.714426,0.666733,0.666924,0.665495,0.665495,0.666733,0.666924,0.686818,0.675769,0.665495,0.665495,0.686818,0.675769,0.665495,0.665495,0.665495,0.665495,0.665495,0.665495,,,,,,,0.671972,0.714426,0.666733,0.666924,0.686818,0.675769,0.665495,0.665495,0.665495,0.665495,0.281451,0.294187,0.279879,0.279936,0.285905,0.28259,0.279508,0.279508,0.148627,0.148627,39.614417,37.260365,39.925733,39.914308,38.758161,39.391824,40,40,40,40,,,,,,,,,,,7946,7946,0.665495,0.665495,0.665495,0.665495,0.665495,0.665495,0.665495,0.665495,0.279508,0.279508,40,40,, +9737,0,0.25644,1,1,1,2,4,,4,5,Grove,St,1428105,3.539,3.795,0,5.495148,4.5,4.5,0.404906,0.404906,0.404906,0.404906,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.486073,0.418399,0.404906,0.404906,0.486073,0.418399,0.409172,0.40948,0.404906,0.404906,0.409172,0.40948,0.440968,0.500131,0.404906,0.404906,0.440968,0.500131,0.404906,0.404906,0.404906,0.404906,0.404906,0.404906,,,,,,,0.486073,0.418399,0.409172,0.40948,0.440968,0.500131,0.404906,0.404906,0.404906,0.404906,0.191981,0.171679,0.168911,0.169003,0.17845,0.196198,0.167631,0.167631,0.088944,0.088944,31.654511,36.774476,37.603804,37.575482,34.892342,30.764776,38,38,38,38,,,,,,,,,,,3406,3406,0.404906,0.404906,0.404906,0.404906,0.404906,0.404906,0.404906,0.404906,0.167631,0.167631,38,38,, +9891,1,1.738506,3,0,0,1,1,,4,5,E I 94,,1426109,30.986,32.724,0,,0.8,7.5,1.490148,,1.490148,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.503703,,1.490148,,1.503703,,1.490244,,1.490148,,1.490244,,1.509403,,1.490148,,1.509403,,1.490148,,1.490148,,1.490148,,,,,,,,1.503703,,1.490244,,1.509403,,1.490148,,1.490148,,0.764042,,0.760004,,0.765752,,0.759975,,0.414758,,69.368974,,69.995492,,69.10702,,70,,70,,,,,,,,,,,,22704,,1.490148,,1.490148,,1.490148,,1.490148,,0.759975,,70,,, +10201,-1,1.803714,0,3,0,1,1,,4,5,W I 94,,1426110,30.936,32.739,0,,0.8,7.5,,1.546041,,1.546041,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.613681,,1.546041,,1.613681,,1.546215,,1.546041,,1.546215,,1.562485,,1.546041,,1.562485,,1.546041,,1.546041,,1.546041,,,,,,,,1.613681,,1.546215,,1.562485,,1.546041,,1.546041,,0.808773,,0.788533,,0.793414,,0.788481,,0.430315,,67.065851,,69.992101,,69.26332,,70,,70,,,,,,,,,,,,22704,,1.546041,,1.546041,,1.546041,,1.546041,,0.788481,,70,, +10323,0,0.463493,1,1,0,2,4,,4,5,Prospect,St,1428106,2.532,2.995,0,9.931993,4.5,4.5,0.731831,0.731831,0.731831,0.731831,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.931435,0.751932,0.731831,0.731831,0.931435,0.751932,0.736152,0.736251,0.731831,0.731831,0.736152,0.736251,0.767573,0.894216,0.731831,0.731831,0.767573,0.894216,0.731831,0.731831,0.731831,0.731831,0.731831,0.731831,,,,,,,0.931435,0.751932,0.736152,0.736251,0.767573,0.894216,0.731831,0.731831,0.731831,0.731831,0.362859,0.309008,0.304274,0.304304,0.313701,0.351694,0.302978,0.302978,0.160759,0.160759,29.856714,36.984164,37.776978,37.771855,36.23052,31.099386,38,38,38,38,,,,,,,,,,,3096,3096,0.731831,0.731831,0.731831,0.731831,0.731831,0.731831,0.731831,0.731831,0.302978,0.302978,38,38,, +10332,1,0.281905,2,0,0,1,1,ROF,4,5,W I 94/Wiard,RAMP,1428503,0,0.282,0,,2.24,5,0.422857,,0.422857,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.422862,,0.422857,,0.422862,,0.422857,,0.422857,,0.422857,,0.422894,,0.422857,,0.422894,,0.422857,,0.422857,,0.422857,,,,,,,,0.422862,,0.422857,,0.422894,,0.422857,,0.422857,,0.177601,,0.1776,,0.177611,,0.1776,,0.094438,,39.999587,,39.99997,,39.996522,,40,,40,,,,,,,,,,,,10320,,0.422857,,0.422857,,0.422857,,0.422857,,0.1776,,40,,, +40556,-1,0.058464,0,2,0,2,4,,4,3,Tienken,Rd,5499957,0.059,0.118,0,1.252804,4.5,4.5,,0.092312,,0.092312,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.098769,,0.092312,,0.098769,,0.094233,,0.092312,,0.094233,,0.095889,,0.092312,,0.095889,,0.092312,,0.092312,,0.092312,,,,,,,,0.098769,,0.094233,,0.095889,,0.092312,,0.092312,,0.040154,,0.038793,,0.03929,,0.038217,,0.020278,,35.515594,,37.225464,,36.582567,,38,,38,,,,,,,,,,,,6192,,0.092312,,0.092312,,0.092312,,0.092312,,0.038217,,38,, +10524,1,0.265591,2,0,0,1,1,RON,4,5,Wiard/E I 94,RAMP,1431008,0,0.266,0,,1.09,4,0.354121,,0.354121,,45,,30000,,6810,,15000,,9678,,10320,,10308,,0.354327,,0.354121,,0.354327,,0.354136,,0.354121,,0.354136,,0.354281,,0.354121,,0.354281,,0.354121,,0.354121,,0.354121,,,,,,,,0.354327,,0.354136,,0.354281,,0.354121,,0.354121,,0.154105,,0.154047,,0.154091,,0.154043,,0.082333,,44.973795,,44.998149,,44.979696,,45,,45,,,,,,,,,,,,10320,,0.354121,,0.354121,,0.354121,,0.354121,,0.154043,,45,,, +40555,1,0.030438,1,0,0,2,5,,4,3,Livernois,Rd,625408,10.17,10.201,0,0.652253,5.8,4.5,0.067641,,0.067641,,27,,7500,,1703,,3750,,2420,,2580,,2577,,0.067993,,0.067641,,0.067993,,0.068267,,0.067641,,0.068267,,0.099739,,0.067641,,0.099739,,0.067641,,0.067641,,0.067641,,,,,,,,0.067993,,0.068267,,0.099739,,0.067641,,0.067641,,0.025877,,0.025959,,0.035401,,0.025771,,0.013494,,26.860049,,26.752414,,18.310852,,27,,27,,,,,,,,,,,,2580,,0.067641,,0.067641,,0.067641,,0.067641,,0.025771,,27,,, +11155,1,0.16944,1,0,0,1,3,RSF,4,5,Tyler/N Wiard,Ramp,1452405,0,0.169,0,,3.7,5,0.338881,,0.338881,,30,,10000,,2270,,5000,,3226,,3440,,3436,,0.338881,,0.338881,,0.338881,,0.338881,,0.338881,,0.338881,,0.338881,,0.338881,,0.338881,,0.338881,,0.338881,,0.338881,,,,,,,,0.338881,,0.338881,,0.338881,,0.338881,,0.338881,,0.132163,,0.132163,,0.132163,,0.132163,,0.069471,,30,,29.999999,,29.999998,,30,,30,,,,,,,,,,,,3440,,0.338881,,0.338881,,0.338881,,0.338881,,0.132163,,30,,, +11205,0,1.013095,1,1,0,2,3,,5,5,Ford,Rd,1431908,2.511,3.524,0,21.709182,1.7,4,1.215714,1.215714,1.215714,1.215714,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.409646,1.873616,1.215714,1.215714,1.409646,1.873616,1.280777,1.301255,1.215714,1.215714,1.280777,1.301255,1.790461,1.409463,1.215714,1.215714,1.790461,1.409463,1.215714,1.215714,1.215714,1.215714,1.215714,1.215714,,,,,,,1.409646,1.873616,1.280777,1.301255,1.790461,1.409463,1.215714,1.215714,1.215714,1.215714,0.605251,0.744442,0.56659,0.572734,0.719495,0.605196,0.547071,0.547071,0.293798,0.293798,43.121243,32.442984,47.460017,46.713151,33.949752,43.126847,50,50,50,50,,,,,,,,,,,3096,3096,1.215714,1.215714,1.215714,1.215714,1.215714,1.215714,1.215714,1.215714,0.547071,0.547071,50,50,, +11243,0,1.014472,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,5.175,6.189,0,21.738694,5.55,5,3.043417,3.043417,3.043417,3.043417,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.043417,3.043466,3.043417,3.043417,3.043417,3.043466,3.043417,3.043417,3.043417,3.043417,3.043417,3.043417,3.043436,3.043417,3.043417,3.043417,3.043436,3.043417,3.043417,3.043417,3.043417,3.043417,3.043417,3.043417,,,,,,,3.043417,3.043466,3.043417,3.043417,3.043436,3.043417,3.043417,3.043417,3.043417,3.043417,1.09563,1.095645,1.09563,1.09563,1.095636,1.09563,1.09563,1.09563,0.568105,0.568105,20,19.99968,20,20,19.999874,20,20,20,20,20,,,,,,,,,,,2236,2236,3.043417,3.043417,3.043417,3.043417,3.043417,3.043417,3.043417,3.043417,1.09563,1.09563,20,20,, +11318,0,0.490998,1,1,0,2,5,,4,5,Clark,Rd,1435902,3.492,3.983,0,10.521379,5.8,4.5,1.091106,1.091106,1.091106,1.091106,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.091112,1.091108,1.091106,1.091106,1.091112,1.091108,1.091107,1.091107,1.091106,1.091106,1.091107,1.091107,1.091119,1.091128,1.091106,1.091106,1.091119,1.091128,1.091106,1.091106,1.091106,1.091106,1.091106,1.091106,,,,,,,1.091112,1.091108,1.091107,1.091107,1.091119,1.091128,1.091106,1.091106,1.091106,1.091106,0.415713,0.415712,0.415712,0.415712,0.415715,0.415718,0.415711,0.415711,0.217676,0.217676,26.999861,26.99994,26.999977,26.999972,26.999673,26.99945,27,27,27,27,,,,,,,,,,,2580,2580,1.091106,1.091106,1.091106,1.091106,1.091106,1.091106,1.091106,1.091106,0.415711,0.415711,27,27,, +11378,0,1.004989,1,1,0,2,5,,4,5,Leforge,Rd,1435809,0.412,1.417,0,21.535477,5.8,4.5,2.233309,2.233309,2.233309,2.233309,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.233356,2.233309,2.233309,2.233309,2.233356,2.233309,2.233383,2.233411,2.233309,2.233309,2.233383,2.233411,2.23331,2.233888,2.233309,2.233309,2.23331,2.233888,2.233309,2.233309,2.233309,2.233309,2.233309,2.233309,,,,,,,2.233356,2.233309,2.233383,2.233411,2.23331,2.233888,2.233309,2.233309,2.233309,2.233309,0.850905,0.850891,0.850913,0.850921,0.850891,0.851064,0.850891,0.850891,0.445545,0.445545,26.999429,27,26.999099,26.998768,26.999987,26.993002,27,27,27,27,,,,,,,,,,,2580,2580,2.233309,2.233309,2.233309,2.233309,2.233309,2.233309,2.233309,2.233309,0.850891,0.850891,27,27,, +11428,0,0.50003,1,1,0,2,5,,4,5,Holmes,Rd,1435108,2.31,2.81,0,10.714926,5.8,4.5,1.111177,1.111177,1.111177,1.111177,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.111211,1.111182,1.111177,1.111177,1.111211,1.111182,1.111179,1.111178,1.111177,1.111177,1.111179,1.111178,1.111187,1.11124,1.111177,1.111177,1.111187,1.11124,1.111177,1.111177,1.111177,1.111177,1.111177,1.111177,,,,,,,1.111211,1.111182,1.111179,1.111178,1.111187,1.11124,1.111177,1.111177,1.111177,1.111177,0.423369,0.42336,0.423359,0.423359,0.423362,0.423377,0.423359,0.423359,0.22168,0.22168,26.999193,26.999879,26.999951,26.999978,26.99976,26.998474,27,27,27,27,,,,,,,,,,,2580,2580,1.111177,1.111177,1.111177,1.111177,1.111177,1.111177,1.111177,1.111177,0.423359,0.423359,27,27,, +14978,0,0.523256,1,1,0,2,4,,4,2,Beck,Rd,1595603,0,0.523,0,11.212621,4.5,4.5,0.826193,0.826193,0.826193,0.826193,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.830257,0.840226,0.826193,0.826193,0.830257,0.840226,0.826539,0.826945,0.826193,0.826193,0.826539,0.826945,0.830187,0.830306,0.826193,0.826193,0.830187,0.830306,0.826193,0.826193,0.826193,0.826193,0.826193,0.826193,,,,,,,0.830257,0.840226,0.826539,0.826945,0.830187,0.830306,0.826193,0.826193,0.826193,0.826193,0.343263,0.346254,0.342148,0.342269,0.343242,0.343278,0.342044,0.342044,0.181487,0.181487,37.813991,37.365361,37.984101,37.965466,37.817179,37.811776,38,38,38,38,,,,,,,,,,,3096,3096,0.826193,0.826193,0.826193,0.826193,0.826193,0.826193,0.826193,0.826193,0.342044,0.342044,38,38,, +15876,0,0.729231,1,1,0,2,4,,4,2,Denton,Rd,1599103,1.348,2.077,0,15.626368,4.5,4.5,1.151417,1.151417,1.151417,1.151417,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.158335,1.224166,1.151417,1.151417,1.158335,1.224166,1.151601,1.151759,1.151417,1.151417,1.151601,1.151759,1.200796,1.174678,1.151417,1.151417,1.200796,1.174678,1.151417,1.151417,1.151417,1.151417,1.151417,1.151417,,,,,,,1.158335,1.224166,1.151601,1.151759,1.200796,1.174678,1.151417,1.151417,1.151417,1.151417,0.478762,0.498511,0.476742,0.476789,0.4915,0.483665,0.476686,0.476686,0.252928,0.252928,37.773044,35.741742,37.99393,37.988717,36.437349,37.247507,38,38,38,38,,,,,,,,,,,3096,3096,1.151417,1.151417,1.151417,1.151417,1.151417,1.151417,1.151417,1.151417,0.476686,0.476686,38,38,, +21587,0,0.406045,1,1,0,2,7,,4,5,Harris,Rd,4603151,0,0.406,0,8.700975,6.55,4.5,0.974509,0.974509,0.974509,0.974509,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.975535,0.9778,0.974509,0.974509,0.975535,0.9778,0.97453,0.974531,0.974509,0.974509,0.97453,0.974531,0.978612,0.976242,0.974509,0.974509,0.978612,0.976242,0.974509,0.974509,0.974509,0.974509,0.974509,0.974509,,,,,,,0.975535,0.9778,0.97453,0.974531,0.978612,0.976242,0.974509,0.974509,0.974509,0.974509,0.365749,0.366428,0.365447,0.365447,0.366672,0.365961,0.365441,0.365441,0.190841,0.190841,24.973707,24.915861,24.99947,24.999453,24.895192,24.955622,25,25,25,25,,,,,,,,,,,2064,2064,0.974509,0.974509,0.974509,0.974509,0.974509,0.974509,0.974509,0.974509,0.365441,0.365441,25,25,, +25812,0,0.554031,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.8721,0.15,4,2.216125,2.216125,2.216125,2.216125,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,,,,,,,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,0.764563,0.764563,0.764563,0.764563,0.764563,0.764563,0.764563,0.764563,0.393362,0.393362,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,2.216125,0.764563,0.764563,15,15,, +25815,0,0.765296,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.399203,0.15,4,3.061185,3.061185,3.061185,3.061185,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,,,,,,,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,1.056109,1.056109,1.056109,1.056109,1.056109,1.056109,1.056109,1.056109,0.54336,0.54336,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,3.061185,1.056109,1.056109,15,15,, +25816,0,0.470522,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.08261,0.15,4,1.882087,1.882087,1.882087,1.882087,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,,,,,,,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,0.64932,0.64932,0.64932,0.64932,0.64932,0.64932,0.64932,0.64932,0.33407,0.33407,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,1.882087,0.64932,0.64932,15,15,, +25817,0,0.660643,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.156625,0.15,4,2.64257,2.64257,2.64257,2.64257,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,,,,,,,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,0.911687,0.911687,0.911687,0.911687,0.911687,0.911687,0.911687,0.911687,0.469056,0.469056,14.999998,15,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,2.64257,0.911687,0.911687,15,15,, +25822,0,0.475104,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.180791,0.15,4,1.900414,1.900414,1.900414,1.900414,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,,,,,,,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,0.655643,0.655643,0.655643,0.655643,0.655643,0.655643,0.655643,0.655643,0.337324,0.337324,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,1.900414,0.655643,0.655643,15,15,, +25825,0,0.532974,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.420866,0.15,4,2.131895,2.131895,2.131895,2.131895,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,,,,,,,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,0.735504,0.735504,0.735504,0.735504,0.735504,0.735504,0.735504,0.735504,0.378411,0.378411,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,2.131895,0.735504,0.735504,15,15,, +26749,0,0.49146,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.531279,0.15,4,1.965839,1.965839,1.965839,1.965839,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,,,,,,,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,0.678214,0.678214,0.678214,0.678214,0.678214,0.678214,0.678214,0.678214,0.348936,0.348936,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,1.965839,0.678214,0.678214,15,15,, +26755,0,0.684239,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.662262,0.15,4,2.736956,2.736956,2.736956,2.736956,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,,,,,,,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,0.94425,0.94425,0.94425,0.94425,0.94425,0.94425,0.94425,0.94425,0.48581,0.48581,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,2.736956,0.94425,0.94425,15,15,, +26757,0,0.318492,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.824831,0.15,4,1.273968,1.273968,1.273968,1.273968,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,,,,,,,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,0.439519,0.439519,0.439519,0.439519,0.439519,0.439519,0.439519,0.439519,0.226129,0.226129,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,1.273968,0.439519,0.439519,15,15,, +30001,0,1.577111,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,33.795233,0.15,4,6.308444,6.308444,6.308444,6.308444,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,,,,,,,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,2.176413,2.176413,2.176413,2.176413,2.176413,2.176413,2.176413,2.176413,1.119749,1.119749,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,6.308444,2.176413,2.176413,15,15,, +30035,0,0.415317,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.899659,0.15,4,1.66127,1.66127,1.66127,1.66127,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,,,,,,,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,0.573138,0.573138,0.573138,0.573138,0.573138,0.573138,0.573138,0.573138,0.294875,0.294875,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,1.66127,0.573138,0.573138,15,15,, +30928,0,0.586732,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.572836,0.15,4,2.346929,2.346929,2.346929,2.346929,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,,,,,,,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,0.809691,0.809691,0.809691,0.809691,0.809691,0.809691,0.809691,0.809691,0.41658,0.41658,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,2.346929,0.809691,0.809691,15,15,, +30929,0,0.493829,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.582045,0.15,4,1.975315,1.975315,1.975315,1.975315,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,,,,,,,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,0.681484,0.681484,0.681484,0.681484,0.681484,0.681484,0.681484,0.681484,0.350618,0.350618,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,1.975315,0.681484,0.681484,15,15,, +30933,0,0.501961,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.756312,0.15,4,2.007845,2.007845,2.007845,2.007845,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,,,,,,,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,0.692706,0.692706,0.692706,0.692706,0.692706,0.692706,0.692706,0.692706,0.356392,0.356392,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,2.007845,0.692706,0.692706,15,15,, +31417,0,0.191871,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.111531,0.15,4,0.767486,0.767486,0.767486,0.767486,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.767486,0.767487,0.767486,0.767486,0.767486,0.767487,0.767486,0.767488,0.767486,0.767486,0.767486,0.767488,0.767486,0.76749,0.767486,0.767486,0.767486,0.76749,0.767486,0.767486,0.767486,0.767486,0.767486,0.767486,,,,,,,0.767486,0.767487,0.767486,0.767488,0.767486,0.76749,0.767486,0.767486,0.767486,0.767486,0.264783,0.264783,0.264783,0.264783,0.264783,0.264784,0.264783,0.264783,0.136229,0.136229,15,14.99998,14.999999,14.999954,14.999997,14.999912,15,15,15,15,,,,,,,,,,,34400,34400,0.767486,0.767486,0.767486,0.767486,0.767486,0.767486,0.767486,0.767486,0.264783,0.264783,15,15,, +9474,0,0.273977,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.248,0.522,0,5.870934,4.5,4.5,0.432595,0.432595,0.432595,0.432595,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.432601,0.43507,0.432595,0.432595,0.432601,0.43507,0.432607,0.432602,0.432595,0.432595,0.432607,0.432602,0.433098,0.432711,0.432595,0.432595,0.433098,0.432711,0.432595,0.432595,0.432595,0.432595,0.432595,0.432595,,,,,,,0.432601,0.43507,0.432607,0.432602,0.433098,0.432711,0.432595,0.432595,0.432595,0.432595,0.179096,0.179837,0.179098,0.179097,0.179245,0.179129,0.179094,0.179094,0.095027,0.095027,37.999502,37.783873,37.998971,37.999379,37.955897,37.989863,38,38,38,38,,,,,,,,,,,6502,6502,0.432595,0.432595,0.432595,0.432595,0.432595,0.432595,0.432595,0.432595,0.179094,0.179094,38,38,, +9497,0,0.173774,1,1,1,2,4,,4,5,Grove,St,1428105,1.837,2.01,0,3.723738,4.5,4.5,0.274381,0.274381,0.274381,0.274381,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.274626,0.276417,0.274381,0.274381,0.274626,0.276417,0.275482,0.274714,0.274381,0.274381,0.275482,0.274714,0.276758,0.274826,0.274381,0.274381,0.276758,0.274826,0.274381,0.274381,0.274381,0.274381,0.274381,0.274381,,,,,,,0.274626,0.276417,0.275482,0.274714,0.276758,0.274826,0.274381,0.274381,0.274381,0.274381,0.113667,0.114205,0.113924,0.113693,0.114307,0.113727,0.113594,0.113594,0.060272,0.060272,37.966077,37.720011,37.848041,37.953943,37.673559,37.938386,38,38,38,38,,,,,,,,,,,3406,3406,0.274381,0.274381,0.274381,0.274381,0.274381,0.274381,0.274381,0.274381,0.113594,0.113594,38,38,, +9539,0,0.310352,1,1,0,2,4,,3,5,Grove,St,1428105,0.462,0.772,0,6.650394,6,4.5,0.564276,0.564276,0.564276,0.564276,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.569657,0.568873,0.564276,0.564276,0.569657,0.568873,0.574394,0.571598,0.564276,0.564276,0.574394,0.571598,0.609087,0.58425,0.564276,0.564276,0.609087,0.58425,0.564276,0.564276,0.564276,0.564276,0.564276,0.564276,,,,,,,0.569657,0.568873,0.574394,0.571598,0.609087,0.58425,0.564276,0.564276,0.564276,0.564276,0.22676,0.226525,0.228182,0.227343,0.238589,0.231138,0.225146,0.225146,0.11878,0.11878,32.688261,32.733337,32.418676,32.577289,30.572167,31.87181,33,33,33,33,,,,,,,,,,,2580,2580,0.564276,0.564276,0.564276,0.564276,0.564276,0.564276,0.564276,0.564276,0.225146,0.225146,33,33,, +9657,0,0.214948,1,1,0,2,4,,3,5,Prospect,St,1428106,0.281,0.495,0,4.60602,6,4.5,0.390814,0.390814,0.390814,0.390814,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.447532,0.434408,0.390814,0.390814,0.447532,0.434408,0.410131,0.415185,0.390814,0.390814,0.410131,0.415185,0.477181,0.457758,0.390814,0.390814,0.477181,0.457758,0.390814,0.390814,0.390814,0.390814,0.390814,0.390814,,,,,,,0.447532,0.434408,0.410131,0.415185,0.477181,0.457758,0.390814,0.390814,0.390814,0.390814,0.17295,0.169013,0.16173,0.163246,0.181845,0.176018,0.155935,0.155935,0.082266,0.082266,28.817703,29.688327,31.44568,31.062946,27.027174,28.173977,33,33,33,33,,,,,,,,,,,2580,2580,0.390814,0.390814,0.390814,0.390814,0.390814,0.390814,0.390814,0.390814,0.155935,0.155935,33,33,, +9678,1,1.495213,3,0,0,1,1,,3,5,E I 94,,1426109,29.491,30.986,0,,0.58,7,1.380197,,1.380197,,65,,66000,,14982,,33000,,21292,,22704,,22678,,1.452411,,1.380197,,1.452411,,1.381335,,1.380197,,1.381335,,1.521385,,1.380197,,1.521385,,1.380197,,1.380197,,1.380197,,,,,,,,1.452411,,1.381335,,1.521385,,1.380197,,1.380197,,0.704862,,0.683539,,0.725554,,0.683197,,0.371503,,61.768177,,64.946438,,58.967825,,65,,65,,,,,,,,,,,,22704,,1.380197,,1.380197,,1.380197,,1.380197,,0.683197,,65,,, +9725,0,0.534029,2,2,1,2,3,,4,5,Michigan,Ave,1427804,2.604,3.138,0,11.443488,3.7,5,0.801044,0.801044,0.801044,0.801044,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.80501,0.805158,0.801044,0.801044,0.80501,0.805158,0.802245,0.801375,0.801044,0.801044,0.802245,0.801375,0.813337,0.804548,0.801044,0.801044,0.813337,0.804548,0.801044,0.801044,0.801044,0.801044,0.801044,0.801044,,,,,,,0.80501,0.805158,0.802245,0.801375,0.813337,0.804548,0.801044,0.801044,0.801044,0.801044,0.337628,0.337673,0.336799,0.336538,0.340126,0.33749,0.336439,0.336439,0.1789,0.1789,39.802946,39.795625,39.940142,39.98351,39.395455,39.825803,40,40,40,40,,,,,,,,,,,7946,7946,0.801044,0.801044,0.801044,0.801044,0.801044,0.801044,0.801044,0.801044,0.336439,0.336439,40,40,, +9824,1,0.397875,2,0,0,2,4,DIV,4,5,Ecorse,Rd,1428810,0,0.398,0,8.525887,4.5,4.5,0.555174,,0.555174,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.555685,,0.555174,,0.555685,,0.555223,,0.555174,,0.555223,,0.55546,,0.555174,,0.55546,,0.555174,,0.555174,,0.555174,,,,,,,,0.555685,,0.555223,,0.55546,,0.555174,,0.555174,,0.238323,,0.238184,,0.238255,,0.23817,,0.127042,,42.960499,,42.996247,,42.9779,,43,,43,,,,,,,,,,,,6880,,0.555174,,0.555174,,0.555174,,0.555174,,0.23817,,43,,, +9825,0,0.430021,1,1,0,2,7,,4,5,Harris,Rd,1428806,0.947,1.377,0,9.214727,6.55,4.5,1.032049,1.032049,1.032049,1.032049,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,,,,,,,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,0.387019,0.387019,0.387019,0.387019,0.387019,0.387019,0.387019,0.387019,0.20211,0.20211,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,1.032049,0.387019,0.387019,25,25,, +10029,0,0.590139,1,1,0,2,4,,4,5,Forest,Ave,1429906,1.183,1.772,0,12.645833,4.5,4.5,0.931798,0.931798,0.931798,0.931798,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.938928,0.997738,0.931798,0.931798,0.938928,0.997738,0.9386,0.944482,0.931798,0.931798,0.9386,0.944482,0.978552,0.952313,0.931798,0.931798,0.978552,0.952313,0.931798,0.931798,0.931798,0.931798,0.931798,0.931798,,,,,,,0.938928,0.997738,0.9386,0.944482,0.978552,0.952313,0.931798,0.931798,0.931798,0.931798,0.387903,0.405546,0.387805,0.38957,0.399791,0.391919,0.385764,0.385764,0.204685,0.204685,37.711452,35.488617,37.724635,37.489668,36.184416,37.181406,38,38,38,38,,,,,,,,,,,3096,3096,0.931798,0.931798,0.931798,0.931798,0.931798,0.931798,0.931798,0.931798,0.385764,0.385764,38,38,, +10040,-1,0.325232,0,2,0,2,4,DIV,4,5,Ecorse,Rd,1428901,0,0.325,0,6.969267,4.5,4.5,,0.453813,,0.453813,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.454399,,0.453813,,0.454399,,0.45395,,0.453813,,0.45395,,0.459528,,0.453813,,0.459528,,0.453813,,0.453813,,0.453813,,,,,,,,0.454399,,0.45395,,0.459528,,0.453813,,0.453813,,0.194861,,0.194727,,0.1964,,0.194686,,0.103847,,42.944564,,42.986995,,42.465202,,43,,43,,,,,,,,,,,,6880,,0.453813,,0.453813,,0.453813,,0.453813,,0.194686,,43,, +10077,0,0.470013,1,1,0,2,4,,4,5,Cross,St,1428902,3.526,3.996,0,10.071715,4.5,4.5,0.742126,0.742126,0.742126,0.742126,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.742145,0.763837,0.742126,0.742126,0.742145,0.763837,0.742129,0.743289,0.742126,0.742126,0.742129,0.743289,0.742396,0.747249,0.742126,0.742126,0.742396,0.747249,0.742126,0.742126,0.742126,0.742126,0.742126,0.742126,,,,,,,0.742145,0.763837,0.742129,0.743289,0.742396,0.747249,0.742126,0.742126,0.742126,0.742126,0.307246,0.313753,0.307241,0.307589,0.307321,0.308777,0.30724,0.30724,0.16302,0.16302,37.999042,36.919927,37.99988,37.940574,37.986206,37.739488,38,38,38,38,,,,,,,,,,,3096,3096,0.742126,0.742126,0.742126,0.742126,0.742126,0.742126,0.742126,0.742126,0.30724,0.30724,38,38,, +10203,-1,1.333322,0,3,0,1,1,,3,5,W I 94,,1426110,29.603,30.936,0,,0.58,7,,1.230759,,1.230759,,65,,66000,,14982,,33000,,21292,,22704,,22678,,1.455555,,1.230759,,1.455555,,1.23246,,1.230759,,1.23246,,1.29634,,1.230759,,1.29634,,1.230759,,1.230759,,1.230759,,,,,,,,1.455555,,1.23246,,1.29634,,1.230759,,1.230759,,0.676664,,0.609736,,0.6289,,0.609226,,0.331279,,54.961395,,64.910269,,61.711709,,65,,65,,,,,,,,,,,,22704,,1.230759,,1.230759,,1.230759,,1.230759,,0.609226,,65,, +10422,0,0.247278,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.697,0.944,0,5.29882,4.5,4.5,0.390439,0.390439,0.390439,0.390439,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.390513,0.394642,0.390439,0.390439,0.390513,0.394642,0.390488,0.390473,0.390439,0.390439,0.390488,0.390473,0.392027,0.39083,0.390439,0.390439,0.392027,0.39083,0.390439,0.390439,0.390439,0.390439,0.390439,0.390439,,,,,,,0.390513,0.394642,0.390488,0.390473,0.392027,0.39083,0.390439,0.390439,0.390439,0.390439,0.161664,0.162903,0.161656,0.161652,0.162118,0.161759,0.161642,0.161642,0.085767,0.085767,37.992858,37.59535,37.995294,37.996745,37.846083,37.962051,38,38,38,38,,,,,,,,,,,6502,6502,0.390439,0.390439,0.390439,0.390439,0.390439,0.390439,0.390439,0.390439,0.161642,0.161642,38,38,, +10686,1,0.334818,2,0,0,2,3,DIV,4,5,US 12,,1430402,0.483,0.818,0,7.174675,3.7,5,0.446424,,0.446424,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.465111,,0.446424,,0.465111,,0.447974,,0.446424,,0.447974,,0.467316,,0.446424,,0.467316,,0.446424,,0.446424,,0.446424,,,,,,,,0.465111,,0.447974,,0.467316,,0.446424,,0.446424,,0.199801,,0.19466,,0.200462,,0.194195,,0.103794,,43.192023,,44.844271,,42.988245,,45,,45,,,,,,,,,,,,7568,,0.446424,,0.446424,,0.446424,,0.446424,,0.194195,,45,,, +10696,-1,0.26239,0,2,0,2,3,DIV,4,5,US 12,,1430401,0.463,0.725,0,5.622634,3.7,5,,0.349853,,0.349853,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.367795,,0.349853,,0.367795,,0.351216,,0.349853,,0.351216,,0.355496,,0.349853,,0.355496,,0.349853,,0.349853,,0.349853,,,,,,,,0.367795,,0.351216,,0.355496,,0.349853,,0.349853,,0.157568,,0.152595,,0.153879,,0.152186,,0.081341,,42.804816,,44.825279,,44.285642,,45,,45,,,,,,,,,,,,7568,,0.349853,,0.349853,,0.349853,,0.349853,,0.152186,,45,, +10965,0,0.828984,1,1,0,2,5,,4,5,Huron River,Dr,1438110,0.778,1.607,0,17.763936,5.8,4.5,1.842186,1.842186,1.842186,1.842186,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.842186,1.843209,1.842186,1.842186,1.842186,1.843209,1.842186,1.842186,1.842186,1.842186,1.842186,1.842186,1.842744,1.842193,1.842186,1.842186,1.842744,1.842193,1.842186,1.842186,1.842186,1.842186,1.842186,1.842186,,,,,,,1.842186,1.843209,1.842186,1.842186,1.842744,1.842193,1.842186,1.842186,1.842186,1.842186,0.701873,0.70218,0.701873,0.701873,0.70204,0.701875,0.701873,0.701873,0.367516,0.367516,26.999997,26.985018,26.999994,26.999995,26.991822,26.9999,27,27,27,27,,,,,,,,,,,2580,2580,1.842186,1.842186,1.842186,1.842186,1.842186,1.842186,1.842186,1.842186,0.701873,0.701873,27,27,, +11364,0,0.166183,1,1,0,2,5,,4,5,Clark,Rd,1435902,1.855,2.022,0,3.561057,5.8,4.5,0.369295,0.369295,0.369295,0.369295,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.369912,0.375577,0.369295,0.369295,0.369912,0.375577,0.369572,0.369727,0.369295,0.369295,0.369572,0.369727,0.377652,0.372309,0.369295,0.369295,0.377652,0.372309,0.369295,0.369295,0.369295,0.369295,0.369295,0.369295,,,,,,,0.369912,0.375577,0.369572,0.369727,0.377652,0.372309,0.369295,0.369295,0.369295,0.369295,0.140887,0.142586,0.140785,0.140831,0.143208,0.141606,0.140701,0.140701,0.073674,0.073674,26.954927,26.548342,26.979736,26.96841,26.402506,26.78139,27,27,27,27,,,,,,,,,,,2580,2580,0.369295,0.369295,0.369295,0.369295,0.369295,0.369295,0.369295,0.369295,0.140701,0.140701,27,27,, +11490,0,0.429536,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0.193,0.622,0,9.204337,6.55,4.5,1.030886,1.030886,1.030886,1.030886,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.030886,1.031499,1.030886,1.030886,1.030886,1.031499,1.030886,1.030886,1.030886,1.030886,1.030886,1.030886,1.031335,1.030891,1.030886,1.030886,1.031335,1.030891,1.030886,1.030886,1.030886,1.030886,1.030886,1.030886,,,,,,,1.030886,1.031499,1.030886,1.030886,1.031335,1.030891,1.030886,1.030886,1.030886,1.030886,0.386582,0.386766,0.386582,0.386582,0.386717,0.386584,0.386582,0.386582,0.201882,0.201882,24.999991,24.985143,25,25,24.989113,24.99987,25,25,25,25,,,,,,,,,,,2064,2064,1.030886,1.030886,1.030886,1.030886,1.030886,1.030886,1.030886,1.030886,0.386582,0.386582,25,25,, +11502,0,0.165205,1,1,0,2,5,,4,5,Holmes,Rd,1435108,0.771,0.936,0,3.540112,5.8,4.5,0.367123,0.367123,0.367123,0.367123,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.367134,0.36716,0.367123,0.367123,0.367134,0.36716,0.367152,0.367167,0.367123,0.367123,0.367152,0.367167,0.367231,0.367204,0.367123,0.367123,0.367231,0.367204,0.367123,0.367123,0.367123,0.367123,0.367123,0.367123,,,,,,,0.367134,0.36716,0.367152,0.367167,0.367231,0.367204,0.367123,0.367123,0.367123,0.367123,0.139877,0.139885,0.139883,0.139887,0.139906,0.139898,0.139874,0.139874,0.073241,0.073241,26.999201,26.997239,26.997819,26.996736,26.992006,26.994018,27,27,27,27,,,,,,,,,,,2580,2580,0.367123,0.367123,0.367123,0.367123,0.367123,0.367123,0.367123,0.367123,0.139874,0.139874,27,27,, +21343,0,0.413245,1,1,1,2,4,,4,5,Ford,Blvd,4603131,0,0.413,0,8.855258,4.5,4.5,0.652493,0.652493,0.652493,0.652493,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.71513,0.696645,0.652493,0.652493,0.71513,0.696645,0.67028,0.666641,0.652493,0.652493,0.67028,0.666641,0.772003,0.739686,0.652493,0.652493,0.772003,0.739686,0.652493,0.652493,0.652493,0.652493,0.652493,0.652493,,,,,,,0.71513,0.696645,0.67028,0.666641,0.772003,0.739686,0.652493,0.652493,0.652493,0.652493,0.288923,0.283378,0.275468,0.274377,0.305985,0.29629,0.270132,0.270132,0.143331,0.143331,34.671616,35.591594,36.991582,37.193491,32.117401,33.520624,38,38,38,38,,,,,,,,,,,3406,3406,0.652493,0.652493,0.652493,0.652493,0.652493,0.652493,0.652493,0.652493,0.270132,0.270132,38,38,, +21690,1,0.164896,3,0,0,2,3,,3,5,Huron,St,4603870,0.857,1.021,0,3.533479,5,5,0.282678,,0.282678,,35,,33000,,7491,,16500,,10646,,11352,,11339,,0.292533,,0.282678,,0.292533,,0.283432,,0.282678,,0.283432,,0.288085,,0.282678,,0.288085,,0.282678,,0.282678,,0.282678,,,,,,,,0.292533,,0.283432,,0.288085,,0.282678,,0.282678,,0.117441,,0.114711,,0.116107,,0.114485,,0.06054,,33.820893,,34.906963,,34.343102,,35,,35,,,,,,,,,,,,11352,,0.282678,,0.282678,,0.282678,,0.282678,,0.114485,,35,,, +21808,-1,0.162978,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.823,0.986,0,3.492387,5,5,,0.279391,,0.279391,,35,,33000,,7491,,16500,,10646,,11352,,11339,,0.281075,,0.279391,,0.281075,,0.280834,,0.279391,,0.280834,,0.307165,,0.279391,,0.307165,,0.279391,,0.279391,,0.279391,,,,,,,,0.281075,,0.280834,,0.307165,,0.279391,,0.279391,,0.113659,,0.113586,,0.121486,,0.113153,,0.059836,,34.790264,,34.820126,,31.835259,,35,,35,,,,,,,,,,,,11352,,0.279391,,0.279391,,0.279391,,0.279391,,0.113153,,35,, +25504,0,0.223434,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.787862,0.15,4,1.340601,1.340601,1.340601,1.340601,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,,,,,,,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,0.442398,0.442398,0.442398,0.442398,0.442398,0.442398,0.442398,0.442398,0.225668,0.225668,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,1.340601,0.442398,0.442398,10,10,, +25515,0,0.137912,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.955268,0.15,4,0.55165,0.55165,0.55165,0.55165,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,,,,,,,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.190319,0.190319,0.190319,0.190319,0.190319,0.190319,0.190319,0.190319,0.097918,0.097918,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.55165,0.190319,0.190319,15,15,, +25518,0,0.162727,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.487006,0.15,4,0.650908,0.650908,0.650908,0.650908,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,,,,,,,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.224563,0.224563,0.224563,0.224563,0.224563,0.224563,0.224563,0.224563,0.115536,0.115536,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.650908,0.224563,0.224563,15,15,, +25519,0,0.855388,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.329739,0.15,4,3.421551,3.421551,3.421551,3.421551,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,,,,,,,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,1.180435,1.180435,1.180435,1.180435,1.180435,1.180435,1.180435,1.180435,0.607325,0.607325,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,3.421551,1.180435,1.180435,15,15,, +25520,0,0.29825,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.391076,0.15,4,1.193001,1.193001,1.193001,1.193001,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,,,,,,,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,0.411585,0.411585,0.411585,0.411585,0.411585,0.411585,0.411585,0.411585,0.211758,0.211758,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,1.193001,0.411585,0.411585,15,15,, +25823,0,0.398241,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.533728,0.15,4,1.592963,1.592963,1.592963,1.592963,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,,,,,,,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,0.549572,0.549572,0.549572,0.549572,0.549572,0.549572,0.549572,0.549572,0.282751,0.282751,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,1.592963,0.549572,0.549572,15,15,, +26764,0,0.413094,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.852011,0.15,4,1.652375,1.652375,1.652375,1.652375,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.652376,1.652375,1.652375,1.652375,1.652376,1.652375,1.652375,1.652375,1.652375,1.652375,1.652375,1.652375,1.652376,1.652376,1.652375,1.652375,1.652376,1.652376,1.652375,1.652375,1.652375,1.652375,1.652375,1.652375,,,,,,,1.652376,1.652375,1.652375,1.652375,1.652376,1.652376,1.652375,1.652375,1.652375,1.652375,0.57007,0.57007,0.57007,0.57007,0.57007,0.57007,0.57007,0.57007,0.293297,0.293297,14.999999,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,1.652375,1.652375,1.652375,1.652375,1.652375,1.652375,1.652375,1.652375,0.57007,0.57007,15,15,, +26772,0,0.2904,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.222863,0.15,4,1.161601,1.161601,1.161601,1.161601,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,,,,,,,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,0.400752,0.400752,0.400752,0.400752,0.400752,0.400752,0.400752,0.400752,0.206184,0.206184,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,1.161601,0.400752,0.400752,15,15,, +26773,0,0.399015,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.550328,0.15,4,1.596061,1.596061,1.596061,1.596061,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,,,,,,,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,0.550641,0.550641,0.550641,0.550641,0.550641,0.550641,0.550641,0.550641,0.283301,0.283301,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,1.596061,0.550641,0.550641,15,15,, +29938,0,0.309981,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.642446,0.15,4,1.239923,1.239923,1.239923,1.239923,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,,,,,,,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,0.427774,0.427774,0.427774,0.427774,0.427774,0.427774,0.427774,0.427774,0.220086,0.220086,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,1.239923,0.427774,0.427774,15,15,, +9965,0,0.201225,2,2,0,2,4,,3,5,Spring,St,1428508,0.79,0.992,0,4.311966,6,4.5,0.365864,0.365864,0.365864,0.365864,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.389097,0.430346,0.365864,0.365864,0.389097,0.430346,0.378652,0.375921,0.365864,0.365864,0.378652,0.375921,0.478744,0.424584,0.365864,0.365864,0.478744,0.424584,0.365864,0.365864,0.365864,0.365864,0.365864,0.365864,,,,,,,0.389097,0.430346,0.378652,0.375921,0.478744,0.424584,0.365864,0.365864,0.365864,0.365864,0.15295,0.165324,0.149816,0.148997,0.179844,0.163596,0.14598,0.14598,0.077014,0.077014,31.029559,28.055366,31.885464,32.117106,25.219139,28.436078,33,33,33,33,,,,,,,,,,,5160,5160,0.365864,0.365864,0.365864,0.365864,0.365864,0.365864,0.365864,0.365864,0.14598,0.14598,33,33,, +10878,0,0.730629,1,1,0,2,5,,4,5,Huron River,Dr,1438110,0,0.73,0,15.656329,5.8,4.5,1.623619,1.623619,1.623619,1.623619,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.633269,1.985778,1.623619,1.623619,1.633269,1.985778,1.640488,1.648103,1.623619,1.623619,1.640488,1.648103,2.00677,1.724944,1.623619,1.623619,2.00677,1.724944,1.623619,1.623619,1.623619,1.623619,1.623619,1.623619,,,,,,,1.633269,1.985778,1.640488,1.648103,2.00677,1.724944,1.623619,1.623619,1.623619,1.623619,0.621494,0.727246,0.62366,0.625944,0.733544,0.648996,0.618599,0.618599,0.323912,0.323912,26.840482,22.075846,26.722361,26.598902,21.844916,25.413997,27,27,27,27,,,,,,,,,,,2580,2580,1.623619,1.623619,1.623619,1.623619,1.623619,1.623619,1.623619,1.623619,0.618599,0.618599,27,27,, +11283,0,0.522701,2,2,1,2,4,,4,5,Huron,St,1439102,9.427,9.95,0,11.200735,4.5,4.5,0.825317,0.825317,0.825317,0.825317,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,1.425908,0.844505,0.825317,0.825317,1.425908,0.844505,0.85291,0.851423,0.825317,0.825317,0.85291,0.851423,0.910998,1.278011,0.825317,0.825317,0.910998,1.278011,0.825317,0.825317,0.825317,0.825317,0.825317,0.825317,,,,,,,1.425908,0.844505,0.85291,0.851423,0.910998,1.278011,0.825317,0.825317,0.825317,0.825317,0.521859,0.347438,0.349959,0.349513,0.367385,0.47749,0.341681,0.341681,0.181295,0.181295,21.994445,37.136636,36.770659,36.834855,34.426055,24.539737,38,38,38,38,,,,,,,,,,,6502,6502,0.825317,0.825317,0.825317,0.825317,0.825317,0.825317,0.825317,0.825317,0.341681,0.341681,38,38,, +26271,0,0.850413,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.223144,0.15,4,3.401654,3.401654,3.401654,3.401654,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,,,,,,,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,1.17357,1.17357,1.17357,1.17357,1.17357,1.17357,1.17357,1.17357,0.603794,0.603794,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,3.401654,1.17357,1.17357,15,15,, +26762,0,0.839559,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.990547,0.15,4,3.358235,3.358235,3.358235,3.358235,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.358237,3.358235,3.358235,3.358235,3.358237,3.358235,3.358236,3.358235,3.358235,3.358235,3.358236,3.358235,3.358236,3.358238,3.358235,3.358235,3.358236,3.358238,3.358235,3.358235,3.358235,3.358235,3.358235,3.358235,,,,,,,3.358237,3.358235,3.358236,3.358235,3.358236,3.358238,3.358235,3.358235,3.358235,3.358235,1.158592,1.158591,1.158591,1.158591,1.158591,1.158592,1.158591,1.158591,0.596087,0.596087,14.999992,15,14.999999,14.999999,14.999998,14.999989,15,15,15,15,,,,,,,,,,,34400,34400,3.358235,3.358235,3.358235,3.358235,3.358235,3.358235,3.358235,3.358235,1.158591,1.158591,15,15,, +40103,1,0.03811,1,0,0,2,4,,4,5,Stony Creek,Rd,1431208,11.369,11.407,0,0.816649,4.5,4.5,0.060174,,0.060174,,38,,9000,,2043,,4500,,2903,,3096,,3092,,0.065487,,0.060174,,0.065487,,0.06042,,0.060174,,0.06042,,0.061272,,0.060174,,0.061272,,0.060174,,0.060174,,0.060174,,,,,,,,0.065487,,0.06042,,0.061272,,0.060174,,0.060174,,0.026506,,0.024986,,0.025241,,0.024912,,0.013218,,34.917307,,37.845476,,37.319102,,38,,38,,,,,,,,,,,,3096,,0.060174,,0.060174,,0.060174,,0.060174,,0.024912,,38,,, +9469,1,0.355903,3,0,0,1,1,,3,5,E I 94,,1426109,29.135,29.491,0,,0.58,7,0.328526,,0.328526,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.336728,,0.328526,,0.336728,,0.328678,,0.328526,,0.328678,,0.351723,,0.328526,,0.351723,,0.328526,,0.328526,,0.328526,,,,,,,,0.336728,,0.328678,,0.351723,,0.328526,,0.328526,,0.165081,,0.162666,,0.169579,,0.16262,,0.088428,,63.416749,,64.969925,,60.713064,,65,,65,,,,,,,,,,,,22704,,0.328526,,0.328526,,0.328526,,0.328526,,0.16262,,65,,, +9874,1,0.430178,1,0,0,1,1,RON,3,5,Whittaker/E I 94,RAMP,1429210,0,0.43,0,,1.09,4,0.645267,,0.645267,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.652488,,0.645267,,0.652488,,0.645528,,0.645267,,0.645528,,0.646007,,0.645267,,0.646007,,0.645267,,0.645267,,0.645267,,,,,,,,0.652488,,0.645528,,0.646007,,0.645267,,0.645267,,0.273178,,0.271091,,0.271234,,0.271012,,0.14411,,39.557305,,39.983781,,39.954137,,40,,40,,,,,,,,,,,,5074,,0.645267,,0.645267,,0.645267,,0.645267,,0.271012,,40,,, +9966,0,0.095563,2,2,0,2,4,,3,5,Harriet,St,1428508,0.514,0.61,0,2.047774,6,4.5,0.173751,0.173751,0.173751,0.173751,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.173753,0.232945,0.173751,0.173751,0.173753,0.232945,0.173752,0.185079,0.173751,0.173751,0.173752,0.185079,0.173997,0.242396,0.173751,0.173751,0.173997,0.242396,0.173751,0.173751,0.173751,0.173751,0.173751,0.173751,,,,,,,0.173753,0.232945,0.173752,0.185079,0.173997,0.242396,0.173751,0.173751,0.173751,0.173751,0.069327,0.087085,0.069327,0.072725,0.0694,0.08992,0.069326,0.069326,0.036574,0.036574,32.99962,24.614287,32.999797,30.980178,32.953219,23.654584,33,33,33,33,,,,,,,,,,,5160,5160,0.173751,0.173751,0.173751,0.173751,0.173751,0.173751,0.173751,0.173751,0.069326,0.069326,33,33,, +10038,1,0.391322,1,0,0,1,1,ROF,3,5,W I 94/Hamilton,RAMP,1428505,0,0.391,0,,2.24,5,0.670837,,0.670837,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.736192,,0.670837,,0.736192,,0.674314,,0.670837,,0.674314,,0.730885,,0.670837,,0.730885,,0.670837,,0.670837,,0.670837,,,,,,,,0.736192,,0.674314,,0.730885,,0.670837,,0.670837,,0.291295,,0.272732,,0.289704,,0.271689,,0.143671,,31.892934,,34.819536,,32.124473,,35,,35,,,,,,,,,,,,5074,,0.670837,,0.670837,,0.670837,,0.670837,,0.271689,,35,,, +10070,1,0.184889,1,0,0,1,1,RON,3,5,Huron/W I 94,RAMP,1428504,0,0.185,0,,1.09,4,0.277334,,0.277334,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.280444,,0.277334,,0.280444,,0.277926,,0.277334,,0.277926,,0.278054,,0.277334,,0.278054,,0.277334,,0.277334,,0.277334,,,,,,,,0.280444,,0.277926,,0.278054,,0.277334,,0.277334,,0.117413,,0.116658,,0.116696,,0.11648,,0.061938,,39.556384,,39.914734,,39.896388,,40,,40,,,,,,,,,,,,5074,,0.277334,,0.277334,,0.277334,,0.277334,,0.11648,,40,,, +10088,1,0.473413,1,0,0,1,1,RON,3,5,Hamilton/W I 94,RAMP,1428502,0,0.473,0,,1.09,4,0.71012,,0.71012,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.719135,,0.71012,,0.719135,,0.712567,,0.71012,,0.712567,,0.717709,,0.71012,,0.717709,,0.71012,,0.71012,,0.71012,,,,,,,,0.719135,,0.712567,,0.717709,,0.71012,,0.71012,,0.300955,,0.298985,,0.300527,,0.29825,,0.158593,,39.498537,,39.862618,,39.577044,,40,,40,,,,,,,,,,,,5074,,0.71012,,0.71012,,0.71012,,0.71012,,0.29825,,40,,, +10206,-1,0.372834,0,3,0,1,1,,3,5,W I 94,,1426110,29.23,29.603,0,,0.58,7,,0.344154,,0.344154,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.365884,,0.344154,,0.365884,,0.344298,,0.344154,,0.344298,,0.349341,,0.344154,,0.349341,,0.344154,,0.344154,,0.344154,,,,,,,,0.365884,,0.344298,,0.349341,,0.344154,,0.344154,,0.176875,,0.170399,,0.171912,,0.170356,,0.092635,,61.139714,,64.972899,,64.034858,,65,,65,,,,,,,,,,,,22704,,0.344154,,0.344154,,0.344154,,0.344154,,0.170356,,65,, +10211,-1,0.398986,0,3,0,1,1,,3,5,W I 94,,1426110,28.831,29.23,0,,0.58,7,,0.368295,,0.368295,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.41295,,0.368295,,0.41295,,0.368661,,0.368295,,0.368661,,0.378005,,0.368295,,0.378005,,0.368295,,0.368295,,0.368295,,,,,,,,0.41295,,0.368661,,0.378005,,0.368295,,0.368295,,0.195703,,0.182416,,0.185219,,0.182306,,0.099133,,57.970994,,64.935394,,63.330272,,65,,65,,,,,,,,,,,,22704,,0.368295,,0.368295,,0.368295,,0.368295,,0.182306,,65,, +21366,1,0.203598,2,0,0,2,3,,4,5,Huron,St,4603870,0.096,0.3,0,4.362809,3.7,5,0.305397,,0.305397,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.621829,,0.305397,,0.621829,,0.3738,,0.305397,,0.3738,,0.572502,,0.305397,,0.572502,,0.305397,,0.305397,,0.305397,,,,,,,,0.621829,,0.3738,,0.572502,,0.305397,,0.305397,,0.223196,,0.148788,,0.208398,,0.128267,,0.068205,,19.645069,,32.68021,,21.337691,,40,,40,,,,,,,,,,,,7568,,0.305397,,0.305397,,0.305397,,0.305397,,0.128267,,40,,, +21746,-1,0.170839,0,3,0,2,3,,3,5,Huron,St,4603871,0.185,0.356,0,3.660837,5,5,,0.292867,,0.292867,,35,,33000,,7491,,16500,,10646,,11352,,11339,,0.305902,,0.292867,,0.305902,,0.29827,,0.292867,,0.29827,,0.420357,,0.292867,,0.420357,,0.292867,,0.292867,,0.292867,,,,,,,,0.305902,,0.29827,,0.420357,,0.292867,,0.292867,,0.122522,,0.120232,,0.156858,,0.118611,,0.062722,,33.508538,,34.366003,,24.384862,,35,,35,,,,,,,,,,,,11352,,0.292867,,0.292867,,0.292867,,0.292867,,0.118611,,35,, +21865,1,0.155273,3,0,0,2,3,,3,5,Huron,St,4603870,0.37,0.525,0,3.327283,5,5,0.266183,,0.266183,,35,,33000,,7491,,16500,,10646,,11352,,11339,,0.330615,,0.266183,,0.330615,,0.275558,,0.266183,,0.275558,,0.324401,,0.266183,,0.324401,,0.266183,,0.266183,,0.266183,,,,,,,,0.330615,,0.275558,,0.324401,,0.266183,,0.266183,,0.127134,,0.110616,,0.125269,,0.107804,,0.057007,,28.178977,,33.809242,,28.718769,,35,,35,,,,,,,,,,,,11352,,0.266183,,0.266183,,0.266183,,0.266183,,0.107804,,35,,, +25502,0,0.114696,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.457778,0.15,4,0.688178,0.688178,0.688178,0.688178,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,,,,,,,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.227099,0.227099,0.227099,0.227099,0.227099,0.227099,0.227099,0.227099,0.115843,0.115843,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.688178,0.227099,0.227099,10,10,, +26769,0,0.384929,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.248477,0.15,4,2.309573,2.309573,2.309573,2.309573,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,,,,,,,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,0.762159,0.762159,0.762159,0.762159,0.762159,0.762159,0.762159,0.762159,0.388778,0.388778,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,2.309573,0.762159,0.762159,10,10,, +26782,0,0.226826,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.860558,0.15,4,1.360956,1.360956,1.360956,1.360956,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,,,,,,,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,0.449116,0.449116,0.449116,0.449116,0.449116,0.449116,0.449116,0.449116,0.229094,0.229094,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,1.360956,0.449116,0.449116,10,10,, +9473,1,0.29412,3,0,0,1,1,,3,5,E I 94,,1426109,28.841,29.135,0,,0.58,7,0.271496,,0.271496,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.273811,,0.271496,,0.273811,,0.271533,,0.271496,,0.271533,,0.277039,,0.271496,,0.277039,,0.271496,,0.271496,,0.271496,,,,,,,,0.273811,,0.271533,,0.277039,,0.271496,,0.271496,,0.135085,,0.134401,,0.136053,,0.13439,,0.073078,,64.450328,,64.991194,,63.699475,,65,,65,,,,,,,,,,,,22704,,0.271496,,0.271496,,0.271496,,0.271496,,0.13439,,65,,, +10021,1,0.310444,1,0,0,1,1,ROF,3,5,E I 94/Whittaker,RAMP,1429303,0,0.31,0,,2.24,5,0.532189,,0.532189,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.558715,,0.532189,,0.558715,,0.576872,,0.532189,,0.576872,,0.862884,,0.532189,,0.862884,,0.532189,,0.532189,,0.532189,,,,,,,,0.558715,,0.576872,,0.862884,,0.532189,,0.532189,,0.223494,,0.228942,,0.314745,,0.215537,,0.113977,,33.338303,,32.288964,,21.586472,,35,,35,,,,,,,,,,,,5074,,0.532189,,0.532189,,0.532189,,0.532189,,0.215537,,35,,, +21266,-1,0.096746,0,2,0,2,4,,4,5,Huron,St,4603871,0,0.097,0,2.073124,4.5,4.5,,0.152756,,0.152756,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.186963,,0.152756,,0.186963,,0.200435,,0.152756,,0.200435,,0.774833,,0.152756,,0.774833,,0.152756,,0.152756,,0.152756,,,,,,,,0.186963,,0.200435,,0.774833,,0.152756,,0.152756,,0.073503,,0.077545,,0.249864,,0.063241,,0.033556,,31.047566,,28.960761,,7.491615,,38,,38,,,,,,,,,,,,6192,,0.152756,,0.152756,,0.152756,,0.152756,,0.063241,,38,, +21809,1,0.065996,2,0,0,2,4,,4,5,Huron,St,4603870,0,0.066,0,1.414209,4.5,4.5,0.104205,,0.104205,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.491934,,0.104205,,0.491934,,0.137142,,0.104205,,0.137142,,0.21334,,0.104205,,0.21334,,0.104205,,0.104205,,0.104205,,,,,,,,0.491934,,0.137142,,0.21334,,0.104205,,0.104205,,0.15946,,0.053022,,0.075881,,0.043141,,0.02289,,8.049419,,28.873704,,18.56089,,38,,38,,,,,,,,,,,,6192,,0.104205,,0.104205,,0.104205,,0.104205,,0.043141,,38,,, +11529,0,0.222504,2,2,1,2,4,,4,5,Huron,St,1439102,9.95,10.172,0,4.767942,4.5,4.5,0.351322,0.351322,0.351322,0.351322,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,1.401181,0.414505,0.351322,0.351322,1.401181,0.414505,0.440477,0.439361,0.351322,0.351322,0.440477,0.439361,0.646812,1.500294,0.351322,0.351322,0.646812,1.500294,0.351322,0.351322,0.351322,0.351322,0.351322,0.351322,,,,,,,1.401181,0.414505,0.440477,0.439361,0.646812,1.500294,0.351322,0.351322,0.351322,0.351322,0.460405,0.164402,0.172194,0.171859,0.234094,0.490139,0.145447,0.145447,0.077174,0.077174,9.527847,32.207669,30.308591,30.38557,20.640046,8.898413,38,38,38,38,,,,,,,,,,,6502,6502,0.351322,0.351322,0.351322,0.351322,0.351322,0.351322,0.351322,0.351322,0.145447,0.145447,38,38,, +9653,1,0.209275,1,0,0,1,1,RON,3,5,Hamilton/E I 94,RAMP,1429302,0,0.209,0,,1.09,4,0.313913,,0.313913,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.323222,,0.313913,,0.323222,,0.315476,,0.313913,,0.315476,,0.342591,,0.313913,,0.342591,,0.313913,,0.313913,,0.313913,,,,,,,,0.323222,,0.315476,,0.342591,,0.313913,,0.313913,,0.134636,,0.132312,,0.140447,,0.131843,,0.070107,,38.847888,,39.801821,,36.651632,,40,,40,,,,,,,,,,,,5074,,0.313913,,0.313913,,0.313913,,0.313913,,0.131843,,40,,, +22025,-1,0.088382,0,2,0,2,3,,4,5,Huron,St,4603871,0.097,0.185,0,1.893904,3.7,5,,0.132573,,0.132573,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.134004,,0.132573,,0.134004,,0.134092,,0.132573,,0.134092,,0.159561,,0.132573,,0.159561,,0.132573,,0.132573,,0.132573,,,,,,,,0.134004,,0.134092,,0.159561,,0.132573,,0.132573,,0.05611,,0.056136,,0.063777,,0.055681,,0.029608,,39.572965,,39.546909,,33.234441,,40,,40,,,,,,,,,,,,7568,,0.132573,,0.132573,,0.132573,,0.132573,,0.055681,,40,, +21585,1,0.030351,2,0,0,2,3,,4,5,Huron,St,4603870,0.066,0.096,0,0.650379,3.7,5,0.045527,,0.045527,,40,,22000,,4994,,11000,,7097,,7568,,7559,,0.055745,,0.045527,,0.055745,,0.04655,,0.045527,,0.04655,,0.049433,,0.045527,,0.049433,,0.045527,,0.045527,,0.045527,,,,,,,,0.055745,,0.04655,,0.049433,,0.045527,,0.045527,,0.022187,,0.019428,,0.020293,,0.019121,,0.010168,,32.667755,,39.120702,,36.839327,,40,,40,,,,,,,,,,,,7568,,0.045527,,0.045527,,0.045527,,0.045527,,0.019121,,40,,, +9807,1,0.006647,1,0,0,1,3,RSF,3,5,E I 94/Whittaker,RAMP,1429303,0.31,0.317,0,,5,5,0.015953,,0.015953,,25,,10000,,2270,,5000,,3226,,3440,,3436,,0.017417,,0.015953,,0.017417,,0.017646,,0.015953,,0.017646,,0.022825,,0.015953,,0.022825,,0.015953,,0.015953,,0.015953,,,,,,,,0.017417,,0.017646,,0.022825,,0.015953,,0.015953,,0.006422,,0.00649,,0.008044,,0.005982,,0.003124,,22.898803,,22.601089,,17.473373,,25,,25,,,,,,,,,,,,3440,,0.015953,,0.015953,,0.015953,,0.015953,,0.005982,,25,,, +10204,0,0.037701,1,1,0,2,5,,3,5,Harriet,St,1428508,0.3,0.338,0,0.807878,8,4.5,0.090482,0.090482,0.090482,0.090482,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.09055,0.090567,0.090482,0.090482,0.09055,0.090567,0.090488,0.090491,0.090482,0.090482,0.090488,0.090491,0.091082,0.090527,0.090482,0.090482,0.091082,0.090527,0.090482,0.090482,0.090482,0.090482,0.090482,0.090482,,,,,,,0.09055,0.090567,0.090488,0.090491,0.091082,0.090527,0.090482,0.090482,0.090482,0.090482,0.033951,0.033956,0.033933,0.033934,0.034111,0.033944,0.033931,0.033931,0.017719,0.017719,24.981203,24.976588,24.998479,24.997561,24.835492,24.987565,25,25,25,25,,,,,,,,,,,2408,2408,0.090482,0.090482,0.090482,0.090482,0.090482,0.090482,0.090482,0.090482,0.033931,0.033931,25,25,, +22076,-1,0.264771,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.558,0.823,0,5.673664,5,5,,0.453893,,0.453893,,35,,33000,,7491,,16500,,10646,,11352,,11339,,0.456343,,0.453893,,0.456343,,0.455899,,0.453893,,0.455899,,0.498429,,0.453893,,0.498429,,0.453893,,0.453893,,0.453893,,,,,,,,0.456343,,0.455899,,0.498429,,0.453893,,0.453893,,0.184562,,0.184428,,0.197188,,0.183827,,0.097209,,34.812116,,34.846002,,31.872648,,35,,35,,,,,,,,,,,,11352,,0.453893,,0.453893,,0.453893,,0.453893,,0.183827,,35,, +25503,0,0.140359,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.007701,0.15,4,0.842156,0.842156,0.842156,0.842156,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,,,,,,,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.277912,0.277912,0.277912,0.277912,0.277912,0.277912,0.277912,0.277912,0.141763,0.141763,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.842156,0.277912,0.277912,10,10,, +25505,0,0.204778,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.388093,0.15,4,1.228666,1.228666,1.228666,1.228666,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,,,,,,,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,0.40546,0.40546,0.40546,0.40546,0.40546,0.40546,0.40546,0.40546,0.206825,0.206825,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,1.228666,0.40546,0.40546,10,10,, +26274,0,0.156479,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.353129,0.15,4,0.938876,0.938876,0.938876,0.938876,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,,,,,,,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.309829,0.309829,0.309829,0.309829,0.309829,0.309829,0.309829,0.309829,0.158044,0.158044,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.938876,0.309829,0.309829,10,10,, +9972,0,0.063636,1,1,0,2,5,,3,5,Harriet,St,1428508,0.236,0.3,0,1.363625,8,4.5,0.152726,0.152726,0.152726,0.152726,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.15284,0.152765,0.152726,0.152726,0.15284,0.152765,0.152735,0.152728,0.152726,0.152726,0.152735,0.152728,0.153712,0.152738,0.152726,0.152726,0.153712,0.152738,0.152726,0.152726,0.152726,0.152726,0.152726,0.152726,,,,,,,0.15284,0.152765,0.152735,0.152728,0.153712,0.152738,0.152726,0.152726,0.152726,0.152726,0.057307,0.057284,0.057275,0.057273,0.057568,0.057276,0.057272,0.057272,0.029909,0.029909,24.981304,24.993555,24.998537,24.999731,24.839569,24.99806,25,25,25,25,,,,,,,,,,,2408,2408,0.152726,0.152726,0.152726,0.152726,0.152726,0.152726,0.152726,0.152726,0.057272,0.057272,25,25,, +9967,0,0.100132,1,1,0,2,5,,3,5,Harriet,St,1428508,0.338,0.438,0,2.145683,8,4.5,0.240317,0.240317,0.240317,0.240317,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.245831,0.247065,0.240317,0.240317,0.245831,0.247065,0.241417,0.242719,0.240317,0.240317,0.241417,0.242719,0.265622,0.247336,0.240317,0.240317,0.265622,0.247336,0.240317,0.240317,0.240317,0.240317,0.240317,0.240317,,,,,,,0.245831,0.247065,0.241417,0.242719,0.265622,0.247336,0.240317,0.240317,0.240317,0.240317,0.091773,0.092143,0.090449,0.090839,0.09771,0.092224,0.090119,0.090119,0.047062,0.047062,24.43916,24.317125,24.886,24.752526,22.618256,24.290509,25,25,25,25,,,,,,,,,,,2408,2408,0.240317,0.240317,0.240317,0.240317,0.240317,0.240317,0.240317,0.240317,0.090119,0.090119,25,25,, +21318,-1,0.138566,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.42,0.558,0,2.969277,5,5,,0.237542,,0.237542,,35,,33000,,7491,,16500,,10646,,11352,,11339,,0.264291,,0.237542,,0.264291,,0.24747,,0.237542,,0.24747,,0.379172,,0.237542,,0.379172,,0.237542,,0.237542,,0.237542,,,,,,,,0.264291,,0.24747,,0.379172,,0.237542,,0.237542,,0.104229,,0.099183,,0.138694,,0.096205,,0.050874,,31.457697,,33.595896,,21.926645,,35,,35,,,,,,,,,,,,11352,,0.237542,,0.237542,,0.237542,,0.237542,,0.096205,,35,, +10270,1,0.044181,1,0,0,2,3,RSF,3,5,W I 94/Hamilton,RAMP,1428505,0.391,0.435,0,0.946746,5,5,0.106036,,0.106036,,25,,10000,,2270,,5000,,3226,,3440,,3436,,0.106326,,0.106036,,0.106326,,0.106089,,0.106036,,0.106089,,0.108193,,0.106036,,0.108193,,0.106036,,0.106036,,0.106036,,,,,,,,0.106326,,0.106089,,0.108193,,0.106036,,0.106036,,0.03985,,0.039779,,0.040411,,0.039763,,0.020765,,24.931708,,24.987492,,24.50139,,25,,25,,,,,,,,,,,,3440,,0.106036,,0.106036,,0.106036,,0.106036,,0.039763,,25,,, +21533,-1,0.06386,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.356,0.42,0,1.368429,5,5,,0.109474,,0.109474,,35,,33000,,7491,,16500,,10646,,11352,,11339,,0.111354,,0.109474,,0.111354,,0.110385,,0.109474,,0.110385,,0.128909,,0.109474,,0.128909,,0.109474,,0.109474,,0.109474,,,,,,,,0.111354,,0.110385,,0.128909,,0.109474,,0.109474,,0.044901,,0.04461,,0.050167,,0.044337,,0.023446,,34.409353,,34.711317,,29.72335,,35,,35,,,,,,,,,,,,11352,,0.109474,,0.109474,,0.109474,,0.109474,,0.044337,,35,, +22131,1,0.070159,2,0,0,2,3,,3,5,Huron,St,4603870,0.3,0.37,0,1.503416,5,5,0.120273,,0.120273,,35,,22000,,4994,,11000,,7097,,7568,,7559,,0.153909,,0.120273,,0.153909,,0.129076,,0.120273,,0.129076,,0.167543,,0.120273,,0.167543,,0.120273,,0.120273,,0.120273,,,,,,,,0.153909,,0.129076,,0.167543,,0.120273,,0.120273,,0.058801,,0.051351,,0.062892,,0.048711,,0.025759,,27.350939,,32.613192,,25.125265,,35,,35,,,,,,,,,,,,7568,,0.120273,,0.120273,,0.120273,,0.120273,,0.048711,,35,,, +10202,0,0.076847,2,2,0,2,4,,3,5,Harriet,St,1428508,0.438,0.514,0,1.646722,6,4.5,0.139722,0.139722,0.139722,0.139722,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.139723,0.187323,0.139722,0.139722,0.139723,0.187323,0.139722,0.148831,0.139722,0.139722,0.139722,0.148831,0.139912,0.194923,0.139722,0.139722,0.139912,0.194923,0.139722,0.139722,0.139722,0.139722,0.139722,0.139722,,,,,,,0.139723,0.187323,0.139722,0.148831,0.139912,0.194923,0.139722,0.139722,0.139722,0.139722,0.05575,0.070029,0.055749,0.058482,0.055806,0.072309,0.055749,0.055749,0.029411,0.029411,32.999619,24.614287,32.999854,30.980178,32.955152,23.654584,33,33,33,33,,,,,,,,,,,5160,5160,0.139722,0.139722,0.139722,0.139722,0.139722,0.139722,0.139722,0.139722,0.055749,0.055749,33,33,, +10199,0,0.180428,2,2,0,2,4,,3,5,Spring,St,1428508,0.61,0.79,0,3.86632,6,4.5,0.328051,0.328051,0.328051,0.328051,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.355018,0.383132,0.328051,0.328051,0.355018,0.383132,0.342361,0.336606,0.328051,0.328051,0.342361,0.336606,0.453147,0.381655,0.328051,0.328051,0.453147,0.381655,0.328051,0.328051,0.328051,0.328051,0.328051,0.328051,,,,,,,0.355018,0.383132,0.342361,0.336606,0.453147,0.381655,0.328051,0.328051,0.328051,0.328051,0.138982,0.147417,0.135185,0.133459,0.168421,0.146974,0.130892,0.130892,0.069055,0.069055,30.493372,28.25579,31.620695,32.161313,23.890021,28.365104,33,33,33,33,,,,,,,,,,,5160,5160,0.328051,0.328051,0.328051,0.328051,0.328051,0.328051,0.328051,0.328051,0.130892,0.130892,33,33,, +40093,-1,0.015357,0,1,0,2,7,,2,5,Observatory,St,4606155,0.028,0.043,0,0.329069,8.5,4.5,,0.04607,,0.04607,,20,,5000,,1135,,2500,,1613,,1720,,1718,,0.04607,,0.04607,,0.04607,,0.04607,,0.04607,,0.04607,,0.04607,,0.04607,,0.04607,,0.04607,,0.04607,,0.04607,,,,,,,,0.04607,,0.04607,,0.04607,,0.04607,,0.04607,,0.016585,,0.016585,,0.016585,,0.016585,,0.0086,,20,,19.999999,,20,,20,,20,,,,,,,,,,,,1720,,0.04607,,0.04607,,0.04607,,0.04607,,0.016585,,20,, +21941,1,0.269374,3,0,0,2,3,,3,5,Huron,St,4603870,0.587,0.857,0,5.7723,5,5,0.461784,,0.461784,,35,,33000,,7491,,16500,,10646,,11352,,11339,,0.475839,,0.461784,,0.475839,,0.462761,,0.461784,,0.462761,,0.469043,,0.461784,,0.469043,,0.461784,,0.461784,,0.461784,,,,,,,,0.475839,,0.462761,,0.469043,,0.461784,,0.461784,,0.191239,,0.187316,,0.1892,,0.187023,,0.098899,,33.966168,,34.926131,,34.458317,,35,,35,,,,,,,,,,,,11352,,0.461784,,0.461784,,0.461784,,0.461784,,0.187023,,35,,, +25500,0,0.193069,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.13719,0.15,4,1.158413,1.158413,1.158413,1.158413,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,,,,,,,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,0.382276,0.382276,0.382276,0.382276,0.382276,0.382276,0.382276,0.382276,0.195,0.195,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,1.158413,0.382276,0.382276,10,10,, +25523,0,0.190763,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.087779,0.15,4,1.144578,1.144578,1.144578,1.144578,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,,,,,,,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,0.377711,0.377711,0.377711,0.377711,0.377711,0.377711,0.377711,0.377711,0.192671,0.192671,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,1.144578,0.377711,0.377711,10,10,, +25524,0,0.178305,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.820812,0.15,4,1.069827,1.069827,1.069827,1.069827,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,,,,,,,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,0.353043,0.353043,0.353043,0.353043,0.353043,0.353043,0.353043,0.353043,0.180088,0.180088,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,1.069827,0.353043,0.353043,10,10,, +40094,1,0.015001,1,0,0,2,7,,2,5,Ann,St,4604073,0.499,0.514,0,0.321455,8.5,4.5,0.045004,,0.045004,,20,,5000,,1135,,2500,,1613,,1720,,1718,,0.045004,,0.045004,,0.045004,,0.045004,,0.045004,,0.045004,,0.045004,,0.045004,,0.045004,,0.045004,,0.045004,,0.045004,,,,,,,,0.045004,,0.045004,,0.045004,,0.045004,,0.045004,,0.016201,,0.016201,,0.016201,,0.016201,,0.008401,,20,,19.999969,,19.99984,,20,,20,,,,,,,,,,,,1720,,0.045004,,0.045004,,0.045004,,0.045004,,0.016201,,20,,, +37293,-1,0.028703,0,1,0,2,4,,4,5,Geddes,Rd,4606144,0.019,0.048,0,0.615055,4.5,4.5,,0.04532,,0.04532,,38,,9000,,2043,,4500,,2903,,3096,,3092,,0.04532,,0.04532,,0.04532,,0.04532,,0.04532,,0.04532,,0.045326,,0.04532,,0.045326,,0.04532,,0.04532,,0.04532,,,,,,,,0.04532,,0.04532,,0.045326,,0.04532,,0.04532,,0.018762,,0.018762,,0.018764,,0.018762,,0.009955,,38,,38,,37.994959,,38,,38,,,,,,,,,,,,3096,,0.04532,,0.04532,,0.04532,,0.04532,,0.018762,,38,, +21426,1,0.062137,3,0,0,2,3,,3,5,Huron,St,4603870,0.525,0.587,0,1.331516,5,5,0.106521,,0.106521,,35,,33000,,7491,,16500,,10646,,11352,,11339,,0.132425,,0.106521,,0.132425,,0.110372,,0.106521,,0.110372,,0.129951,,0.106521,,0.129951,,0.106521,,0.106521,,0.106521,,,,,,,,0.132425,,0.110372,,0.129951,,0.106521,,0.106521,,0.050912,,0.044296,,0.05017,,0.043141,,0.022813,,28.153579,,33.778849,,28.689725,,35,,35,,,,,,,,,,,,11352,,0.106521,,0.106521,,0.106521,,0.106521,,0.043141,,35,,, +25501,0,0.126331,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.707089,0.15,4,0.757985,0.757985,0.757985,0.757985,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,,,,,,,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.250135,0.250135,0.250135,0.250135,0.250135,0.250135,0.250135,0.250135,0.127594,0.127594,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.757985,0.250135,0.250135,10,10,, +25499,0,0.155781,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.338166,0.15,4,0.934686,0.934686,0.934686,0.934686,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,,,,,,,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.308446,0.308446,0.308446,0.308446,0.308446,0.308447,0.308446,0.308446,0.157339,0.157339,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.934686,0.308446,0.308446,10,10,, +26761,0,0.536938,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.505809,0.15,4,2.147751,2.147751,2.147751,2.147751,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,,,,,,,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,0.740974,0.740974,0.740974,0.740974,0.740974,0.740974,0.740974,0.740974,0.381226,0.381226,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,2.147751,0.740974,0.740974,15,15,, +26270,0,0.345904,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.412234,0.15,4,1.383617,1.383617,1.383617,1.383617,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,,,,,,,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,0.477348,0.477348,0.477348,0.477348,0.477348,0.477348,0.477348,0.477348,0.245592,0.245592,14.999998,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,1.383617,0.477348,0.477348,15,15,, +10740,0,0.04807,1,1,0,2,5,,4,5,Huron River,Dr,1438110,0.73,0.778,0,1.030078,5.8,4.5,0.106823,0.106823,0.106823,0.106823,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.106836,0.106925,0.106823,0.106823,0.106836,0.106925,0.106825,0.106826,0.106823,0.106823,0.106825,0.106826,0.107066,0.106924,0.106823,0.106823,0.107066,0.106924,0.106823,0.106823,0.106823,0.106823,0.106823,0.106823,,,,,,,0.106836,0.106925,0.106825,0.106826,0.107066,0.106924,0.106823,0.106823,0.106823,0.106823,0.040703,0.04073,0.0407,0.040701,0.040772,0.04073,0.0407,0.0407,0.021311,0.021311,26.99671,26.974273,26.999343,26.999131,26.938754,26.974506,27,27,27,27,,,,,,,,,,,2580,2580,0.106823,0.106823,0.106823,0.106823,0.106823,0.106823,0.106823,0.106823,0.0407,0.0407,27,27,, +9520,0,0.333178,1,1,1,2,4,,3,5,Grove,St,1428105,1.001,1.334,0,7.139539,6,4.5,0.605779,0.605779,0.605779,0.605779,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.646365,1.06924,0.605779,0.605779,0.646365,1.06924,0.717252,0.670932,0.605779,0.605779,0.717252,0.670932,1.184918,0.749772,0.605779,0.605779,1.184918,0.749772,0.605779,0.605779,0.605779,0.605779,0.605779,0.605779,,,,,,,0.646365,1.06924,0.717252,0.670932,1.184918,0.749772,0.605779,0.605779,0.605779,0.605779,0.253881,0.380744,0.275148,0.261252,0.415447,0.284904,0.241706,0.241706,0.127516,0.127516,30.927919,18.696179,27.871263,29.795448,16.87097,26.662379,33,33,33,33,,,,,,,,,,,2838,2838,0.605779,0.605779,0.605779,0.605779,0.605779,0.605779,0.605779,0.605779,0.241706,0.241706,33,33,, +10055,0,0.246891,2,2,0,2,4,,3,5,Maus,Ave,1428508,1.253,1.5,0,5.290514,6,4.5,0.448892,0.448892,0.448892,0.448892,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.448906,0.448918,0.448892,0.448892,0.448906,0.448918,0.448904,0.4489,0.448892,0.448892,0.448904,0.4489,0.44899,0.448935,0.448892,0.448892,0.44899,0.448935,0.448892,0.448892,0.448892,0.448892,0.448892,0.448892,,,,,,,0.448906,0.448918,0.448904,0.4489,0.44899,0.448935,0.448892,0.448892,0.448892,0.448892,0.179112,0.179116,0.179111,0.17911,0.179137,0.179121,0.179108,0.179108,0.094492,0.094492,32.999014,32.998099,32.999144,32.999433,32.99281,32.996812,33,33,33,33,,,,,,,,,,,5160,5160,0.448892,0.448892,0.448892,0.448892,0.448892,0.448892,0.448892,0.448892,0.179108,0.179108,33,33,, +26770,0,0.229547,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.918866,0.15,4,1.377282,1.377282,1.377282,1.377282,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,,,,,,,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,0.454503,0.454503,0.454503,0.454503,0.454503,0.454503,0.454503,0.454503,0.231843,0.231843,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,1.377282,0.454503,0.454503,10,10,, +9776,1,0.151217,2,0,0,2,4,,3,5,Grove,St,1428105,0.772,0.923,0,3.24036,6,4.5,0.27494,,0.27494,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.278161,,0.27494,,0.278161,,0.280471,,0.27494,,0.280471,,0.306132,,0.27494,,0.306132,,0.27494,,0.27494,,0.27494,,,,,,,,0.278161,,0.280471,,0.306132,,0.27494,,0.27494,,0.110667,,0.11136,,0.119059,,0.109701,,0.057875,,32.617835,,32.349197,,29.6376,,33,,33,,,,,,,,,,,,5160,,0.27494,,0.27494,,0.27494,,0.27494,,0.109701,,33,,, +9950,0,0.13773,1,1,0,2,4,,3,5,Prospect,St,1428106,0.071,0.209,0,2.951362,6,4.5,0.250419,0.250419,0.250419,0.250419,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.566419,0.250513,0.250419,0.250419,0.566419,0.250513,0.394738,0.250452,0.250419,0.250419,0.394738,0.250452,0.459408,0.250448,0.250419,0.250419,0.459408,0.250448,0.250419,0.250419,0.250419,0.250419,0.250419,0.250419,,,,,,,0.566419,0.250513,0.394738,0.250452,0.459408,0.250448,0.250419,0.250419,0.250419,0.250419,0.194717,0.099945,0.143213,0.099927,0.162614,0.099926,0.099917,0.099917,0.052713,0.052713,14.589584,32.987611,20.934925,32.995603,17.987963,32.99608,33,33,33,33,,,,,,,,,,,2580,2580,0.250419,0.250419,0.250419,0.250419,0.250419,0.250419,0.250419,0.250419,0.099917,0.099917,33,33,, +10092,0,0.197991,2,2,0,2,4,,3,5,Spring,St,1428508,0.992,1.189,0,4.242661,6,4.5,0.359983,0.359983,0.359983,0.359983,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.379047,0.424417,0.359983,0.359983,0.379047,0.424417,0.371694,0.369129,0.359983,0.359983,0.371694,0.369129,0.468552,0.411416,0.359983,0.359983,0.468552,0.411416,0.359983,0.359983,0.359983,0.359983,0.359983,0.359983,,,,,,,0.379047,0.424417,0.371694,0.369129,0.468552,0.411416,0.359983,0.359983,0.359983,0.359983,0.149352,0.162963,0.147147,0.146377,0.176204,0.159063,0.143633,0.143633,0.075777,0.075777,31.340338,27.990068,31.96029,32.182419,25.353554,28.87455,33,33,33,33,,,,,,,,,,,5160,5160,0.359983,0.359983,0.359983,0.359983,0.359983,0.359983,0.359983,0.359983,0.143633,0.143633,33,33,, +25525,0,0.167435,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.587892,0.15,4,1.00461,1.00461,1.00461,1.00461,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,,,,,,,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,0.331521,0.331521,0.331521,0.331521,0.331521,0.331521,0.331521,0.331521,0.169109,0.169109,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,1.00461,0.331521,0.331521,10,10,, +26766,0,0.195804,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.195802,0.15,4,1.174825,1.174825,1.174825,1.174825,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,,,,,,,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,0.387692,0.387692,0.387692,0.387692,0.387692,0.387692,0.387692,0.387692,0.197762,0.197762,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,1.174825,0.387692,0.387692,10,10,, +26767,0,0.223853,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.796843,0.15,4,1.343116,1.343116,1.343116,1.343116,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,,,,,,,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,0.443228,0.443228,0.443228,0.443228,0.443228,0.443228,0.443228,0.443228,0.226091,0.226091,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,1.343116,0.443228,0.443228,10,10,, +9470,1,0.071115,2,0,0,2,4,,3,5,Prospect,St,1428106,0,0.071,0,1.523895,6,4.5,0.1293,,0.1293,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.136521,,0.1293,,0.136521,,0.132593,,0.1293,,0.132593,,0.134074,,0.1293,,0.134074,,0.1293,,0.1293,,0.1293,,,,,,,,0.136521,,0.132593,,0.134074,,0.1293,,0.1293,,0.053757,,0.052579,,0.053023,,0.051591,,0.027218,,31.254682,,32.180376,,31.825112,,33,,33,,,,,,,,,,,,5160,,0.1293,,0.1293,,0.1293,,0.1293,,0.051591,,33,,, +9536,1,0.052929,2,0,0,2,4,,3,5,Grove,St,1428105,0.923,0.976,0,1.134183,6,4.5,0.096234,,0.096234,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.099126,,0.096234,,0.099126,,0.100068,,0.096234,,0.100068,,0.113614,,0.096234,,0.113614,,0.096234,,0.096234,,0.096234,,,,,,,,0.099126,,0.100068,,0.113614,,0.096234,,0.096234,,0.039265,,0.039547,,0.043611,,0.038397,,0.020257,,32.03718,,31.735631,,27.951651,,33,,33,,,,,,,,,,,,5160,,0.096234,,0.096234,,0.096234,,0.096234,,0.038397,,33,,, +21260,1,0.029589,1,0,0,2,4,,3,5,Prospect/Grove Cutoff,,4604777,0,0.03,0,0.63405,6,4.5,0.053798,,0.053798,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.053818,,0.053798,,0.053818,,0.053805,,0.053798,,0.053805,,0.053805,,0.053798,,0.053805,,0.053798,,0.053798,,0.053798,,,,,,,,0.053818,,0.053805,,0.053805,,0.053798,,0.053798,,0.021472,,0.021468,,0.021467,,0.021465,,0.011325,,32.987611,,32.995603,,32.99608,,33,,33,,,,,,,,,,,,2580,,0.053798,,0.053798,,0.053798,,0.053798,,0.021465,,33,,, +30077,0,0.082082,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.758904,0.15,4,0.492493,0.492493,0.492493,0.492493,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,,,,,,,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.162523,0.162523,0.162523,0.162523,0.162523,0.162523,0.162523,0.162523,0.082903,0.082903,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.492493,0.162523,0.162523,10,10,, +9765,0,0.024915,1,1,1,2,4,,3,5,Grove,St,1428105,0.976,1.001,0,0.533894,6,4.5,0.0453,0.0453,0.0453,0.0453,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.065349,0.082554,0.0453,0.0453,0.065349,0.082554,0.071895,0.062302,0.0453,0.0453,0.071895,0.062302,0.165954,0.069962,0.0453,0.0453,0.165954,0.069962,0.0453,0.0453,0.0453,0.0453,0.0453,0.0453,,,,,,,0.065349,0.082554,0.071895,0.062302,0.165954,0.069962,0.0453,0.0453,0.0453,0.0453,0.02409,0.029251,0.026053,0.023175,0.054271,0.025473,0.018075,0.018075,0.009536,0.009536,22.875584,18.108299,20.792951,23.994569,9.007967,21.367404,33,33,33,33,,,,,,,,,,,2838,2838,0.0453,0.0453,0.0453,0.0453,0.0453,0.0453,0.0453,0.0453,0.018075,0.018075,33,33,, +9764,0,0.07172,1,1,0,2,4,,3,5,Prospect,St,1428106,0.209,0.281,0,1.536864,6,4.5,0.130401,0.130401,0.130401,0.130401,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.13474,0.144947,0.130401,0.130401,0.13474,0.144947,0.136637,0.138532,0.130401,0.130401,0.136637,0.138532,0.137383,0.149298,0.130401,0.130401,0.137383,0.149298,0.130401,0.130401,0.130401,0.130401,0.130401,0.130401,,,,,,,0.13474,0.144947,0.136637,0.138532,0.137383,0.149298,0.130401,0.130401,0.130401,0.130401,0.053332,0.056394,0.053901,0.054469,0.054125,0.057699,0.05203,0.05203,0.027449,0.027449,31.937125,29.688327,31.493838,31.062946,31.322799,28.823114,33,33,33,33,,,,,,,,,,,2580,2580,0.130401,0.130401,0.130401,0.130401,0.130401,0.130401,0.130401,0.130401,0.05203,0.05203,33,33,, +9863,0,0.063639,2,2,0,2,4,,3,5,Factory,St,1428508,1.189,1.253,0,1.3637,6,4.5,0.115708,0.115708,0.115708,0.115708,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.116289,0.167472,0.115708,0.115708,0.116289,0.167472,0.115932,0.130188,0.115708,0.115708,0.115932,0.130188,0.117034,0.163852,0.115708,0.115708,0.117034,0.163852,0.115708,0.115708,0.115708,0.115708,0.115708,0.115708,,,,,,,0.116289,0.167472,0.115932,0.130188,0.117034,0.163852,0.115708,0.115708,0.115708,0.115708,0.046342,0.061697,0.046235,0.050512,0.046565,0.060611,0.046167,0.046167,0.024357,0.024357,32.835036,22.799961,32.936236,29.32956,32.62609,23.30366,33,33,33,33,,,,,,,,,,,5160,5160,0.115708,0.115708,0.115708,0.115708,0.115708,0.115708,0.115708,0.115708,0.046167,0.046167,33,33,, +9750,0,0.502563,1,1,1,2,4,,4,5,Grove,St,1428105,1.334,1.837,0,10.769208,4.5,4.5,0.793521,0.793521,0.793521,0.793521,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.79423,0.799411,0.793521,0.793521,0.79423,0.799411,0.796707,0.794484,0.793521,0.793521,0.796707,0.794484,0.800396,0.794809,0.793521,0.793521,0.800396,0.794809,0.793521,0.793521,0.793521,0.793521,0.793521,0.793521,,,,,,,0.79423,0.799411,0.796707,0.794484,0.800396,0.794809,0.793521,0.793521,0.793521,0.793521,0.32873,0.330285,0.329473,0.328806,0.33058,0.328904,0.328518,0.328518,0.17431,0.17431,37.966077,37.720011,37.848041,37.953943,37.673559,37.938386,38,38,38,38,,,,,,,,,,,3406,3406,0.793521,0.793521,0.793521,0.793521,0.793521,0.793521,0.793521,0.793521,0.328518,0.328518,38,38,, +10252,0,0.174465,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.522,0.697,0,3.738532,4.5,4.5,0.275471,0.275471,0.275471,0.275471,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.275633,0.281855,0.275471,0.275471,0.275633,0.281855,0.275629,0.275576,0.275471,0.275471,0.275629,0.275576,0.278938,0.276545,0.275471,0.275471,0.278938,0.276545,0.275471,0.275471,0.275471,0.275471,0.275471,0.275471,,,,,,,0.275633,0.281855,0.275629,0.275576,0.278938,0.276545,0.275471,0.275471,0.275471,0.275471,0.114094,0.11596,0.114092,0.114077,0.115085,0.114367,0.114045,0.114045,0.060512,0.060512,37.977643,37.139229,37.978151,37.985455,37.527681,37.852345,38,38,38,38,,,,,,,,,,,6502,6502,0.275471,0.275471,0.275471,0.275471,0.275471,0.275471,0.275471,0.275471,0.114045,0.114045,38,38,, +9834,0,0.078606,2,2,0,2,4,,4,5,Maus,Ave,1428707,0,0.079,0,1.684415,4.5,4.5,0.124115,0.124115,0.124115,0.124115,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.124122,0.124124,0.124115,0.124115,0.124122,0.124124,0.124118,0.124118,0.124115,0.124115,0.124118,0.124118,0.12415,0.124131,0.124115,0.124115,0.12415,0.124131,0.124115,0.124115,0.124115,0.124115,0.124115,0.124115,,,,,,,0.124122,0.124124,0.124118,0.124118,0.12415,0.124131,0.124115,0.124115,0.124115,0.124115,0.051386,0.051386,0.051385,0.051384,0.051394,0.051388,0.051384,0.051384,0.027264,0.027264,37.99777,37.997109,37.998872,37.999171,37.989101,37.994972,38,38,38,38,,,,,,,,,,,6192,6192,0.124115,0.124115,0.124115,0.124115,0.124115,0.124115,0.124115,0.124115,0.051384,0.051384,38,38,, +9540,0,0.518572,1,1,0,2,5,,3,5,River,St,1428102,0.91,1.428,0,11.112248,8,4.5,1.244572,1.244572,1.244572,1.244572,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.244572,1.245287,1.244572,1.244572,1.244572,1.245287,1.244572,1.244572,1.244572,1.244572,1.244572,1.244572,1.24458,1.245205,1.244572,1.244572,1.24458,1.245205,1.244572,1.244572,1.244572,1.244572,1.244572,1.244572,,,,,,,1.244572,1.245287,1.244572,1.244572,1.24458,1.245205,1.244572,1.244572,1.244572,1.244572,0.466714,0.466929,0.466714,0.466714,0.466717,0.466904,0.466714,0.466714,0.243729,0.243729,24.999999,24.98565,25,25,24.999827,24.987285,25,25,25,25,,,,,,,,,,,2408,2408,1.244572,1.244572,1.244572,1.244572,1.244572,1.244572,1.244572,1.244572,0.466714,0.466714,25,25,, +9585,0,0.139295,1,1,0,2,4,,4,5,Prospect,St,1428106,1.466,1.605,0,2.984899,4.5,4.5,0.21994,0.21994,0.21994,0.21994,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.242376,0.238741,0.21994,0.21994,0.242376,0.238741,0.223392,0.225274,0.21994,0.21994,0.223392,0.225274,0.244723,0.248906,0.21994,0.21994,0.244723,0.248906,0.21994,0.21994,0.21994,0.21994,0.21994,0.21994,,,,,,,0.242376,0.238741,0.223392,0.225274,0.244723,0.248906,0.21994,0.21994,0.21994,0.21994,0.097786,0.096695,0.092091,0.092655,0.09849,0.099745,0.091055,0.091055,0.048313,0.048313,34.482445,35.007482,37.412793,37.100241,34.151756,33.577751,38,38,38,38,,,,,,,,,,,3096,3096,0.21994,0.21994,0.21994,0.21994,0.21994,0.21994,0.21994,0.21994,0.091055,0.091055,38,38,, +9763,0,0.100539,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.717,0.817,0,2.154399,6,4.5,0.182797,0.182797,0.182797,0.182797,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.190964,0.303933,0.182797,0.182797,0.190964,0.303933,0.190293,0.22374,0.182797,0.182797,0.190293,0.22374,0.26169,0.228271,0.182797,0.182797,0.26169,0.228271,0.182797,0.182797,0.182797,0.182797,0.182797,0.182797,,,,,,,0.190964,0.303933,0.190293,0.22374,0.26169,0.228271,0.182797,0.182797,0.182797,0.182797,0.075386,0.109277,0.075185,0.085219,0.096604,0.086578,0.072936,0.072936,0.038479,0.038479,31.588748,19.847552,31.700137,26.961307,23.051379,26.426085,33,33,33,33,,,,,,,,,,,2838,2838,0.182797,0.182797,0.182797,0.182797,0.182797,0.182797,0.182797,0.182797,0.072936,0.072936,33,33,, +9923,0,0.12202,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.053,2.174,0,2.614716,5,5,0.209177,0.209177,0.209177,0.209177,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.223549,0.257313,0.209177,0.209177,0.223549,0.257313,0.219603,0.212773,0.209177,0.209177,0.219603,0.212773,0.264656,0.230565,0.209177,0.209177,0.264656,0.230565,0.209177,0.209177,0.209177,0.209177,0.209177,0.209177,,,,,,,0.223549,0.257313,0.219603,0.212773,0.264656,0.230565,0.209177,0.209177,0.209177,0.209177,0.089028,0.099157,0.087845,0.085795,0.10136,0.091133,0.084717,0.084717,0.044799,0.044799,32.74992,28.452537,33.338302,34.408589,27.663093,31.753383,35,35,35,35,,,,,,,,,,,7946,7946,0.209177,0.209177,0.209177,0.209177,0.209177,0.209177,0.209177,0.209177,0.084717,0.084717,35,35,, +10013,0,0.121992,1,1,0,2,4,,3,5,Cross,St,1428902,2.685,2.807,0,2.614112,6,4.5,0.221803,0.221803,0.221803,0.221803,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.222558,0.344988,0.221803,0.221803,0.222558,0.344988,0.226334,0.244593,0.221803,0.221803,0.226334,0.244593,0.282577,0.283352,0.221803,0.221803,0.282577,0.283352,0.221803,0.221803,0.221803,0.221803,0.221803,0.221803,,,,,,,0.222558,0.344988,0.226334,0.244593,0.282577,0.283352,0.221803,0.221803,0.221803,0.221803,0.088726,0.125455,0.089859,0.095337,0.106732,0.106964,0.0885,0.0885,0.04669,0.04669,32.888186,21.216749,32.339444,29.925222,25.902754,25.831862,33,33,33,33,,,,,,,,,,,2580,2580,0.221803,0.221803,0.221803,0.221803,0.221803,0.221803,0.221803,0.221803,0.0885,0.0885,33,33,, +11370,0,0.410049,1,1,0,2,5,,3,5,Clark,Rd,1435902,0.763,1.172,0,8.786769,8,4.5,0.984118,0.984118,0.984118,0.984118,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.984253,1.060792,0.984118,0.984118,0.984253,1.060792,0.98418,0.984222,0.984118,0.984118,0.98418,0.984222,1.076109,0.984687,0.984118,0.984118,1.076109,0.984687,0.984118,0.984118,0.984118,0.984118,0.984118,0.984118,,,,,,,0.984253,1.060792,0.98418,0.984222,1.076109,0.984687,0.984118,0.984118,0.984118,0.984118,0.369085,0.392047,0.369063,0.369075,0.396642,0.369215,0.369044,0.369044,0.192723,0.192723,24.996584,23.192997,24.998429,24.997364,22.862873,24.98555,25,25,25,25,,,,,,,,,,,2408,2408,0.984118,0.984118,0.984118,0.984118,0.984118,0.984118,0.984118,0.984118,0.369044,0.369044,25,25,, +21624,0,0.050562,2,2,0,2,4,,3,5,Huron,St,4603250,2.057,2.108,0,1.083481,6,4.5,0.091932,0.091932,0.091932,0.091932,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.092979,0.092035,0.091932,0.091932,0.092979,0.092035,0.092272,0.092292,0.091932,0.091932,0.092272,0.092292,0.09328,0.094543,0.091932,0.091932,0.09328,0.094543,0.091932,0.091932,0.091932,0.091932,0.091932,0.091932,,,,,,,0.092979,0.092035,0.092272,0.092292,0.09328,0.094543,0.091932,0.091932,0.091932,0.091932,0.036995,0.036712,0.036783,0.036789,0.037085,0.037464,0.036681,0.036681,0.019352,0.019352,32.628275,32.962939,32.878173,32.871126,32.523179,32.088455,33,33,33,33,,,,,,,,,,,5160,5160,0.091932,0.091932,0.091932,0.091932,0.091932,0.091932,0.091932,0.091932,0.036681,0.036681,33,33,, +25824,0,0.517076,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.080191,0.15,4,2.068302,2.068302,2.068302,2.068302,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,,,,,,,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,0.713564,0.713564,0.713564,0.713564,0.713564,0.713564,0.713564,0.713564,0.367124,0.367124,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,2.068302,0.713564,0.713564,15,15,, +26777,0,0.36805,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.886796,0.15,4,1.472202,1.472202,1.472202,1.472202,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,,,,,,,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,0.50791,0.50791,0.50791,0.50791,0.50791,0.50791,0.50791,0.50791,0.261316,0.261316,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,1.472202,0.50791,0.50791,15,15,, +26779,0,0.441126,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.45269,0.15,4,2.646753,2.646753,2.646753,2.646753,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,,,,,,,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,0.873429,0.873429,0.873429,0.873429,0.873429,0.873429,0.873429,0.873429,0.445537,0.445537,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,2.646753,0.873429,0.873429,10,10,, +26780,0,0.190254,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.07688,0.15,4,1.141527,1.141527,1.141527,1.141527,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,,,,,,,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,0.376704,0.376704,0.376704,0.376704,0.376704,0.376704,0.376704,0.376704,0.192157,0.192157,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,1.141527,0.376704,0.376704,10,10,, +30040,0,0.313533,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.718571,0.15,4,1.8812,1.8812,1.8812,1.8812,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,,,,,,,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,0.620796,0.620796,0.620796,0.620796,0.620796,0.620796,0.620796,0.620796,0.316669,0.316669,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,1.8812,0.620796,0.620796,10,10,, +30067,0,0.169197,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.625657,0.15,4,1.015184,1.015184,1.015184,1.015184,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,,,,,,,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,0.335011,0.335011,0.335011,0.335011,0.335011,0.335011,0.335011,0.335011,0.170889,0.170889,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,1.015184,0.335011,0.335011,10,10,, +9554,0,0.124722,1,1,0,2,5,,3,5,River,St,1428102,0.4,0.525,0,2.672621,8,4.5,0.299334,0.299334,0.299334,0.299334,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.299341,0.299346,0.299334,0.299334,0.299341,0.299346,0.299336,0.299334,0.299334,0.299334,0.299336,0.299334,0.301483,0.29987,0.299334,0.299334,0.301483,0.29987,0.299334,0.299334,0.299334,0.299334,0.299334,0.299334,,,,,,,0.299341,0.299346,0.299336,0.299334,0.301483,0.29987,0.299334,0.299334,0.299334,0.299334,0.112252,0.112254,0.112251,0.11225,0.112895,0.112411,0.11225,0.11225,0.058619,0.058619,24.999371,24.998999,24.999774,24.999995,24.821781,24.95524,25,25,25,25,,,,,,,,,,,2408,2408,0.299334,0.299334,0.299334,0.299334,0.299334,0.299334,0.299334,0.299334,0.11225,0.11225,25,25,, +9577,-1,0.12931,0,3,0,2,3,,2,5,Cross,St,1428902,2.304,2.433,0,2.770932,6,5,,0.25862,,0.25862,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.291329,,0.25862,,0.291329,,0.259782,,0.25862,,0.259782,,0.267626,,0.25862,,0.267626,,0.25862,,0.25862,,0.25862,,,,,,,,0.291329,,0.259782,,0.267626,,0.25862,,0.25862,,0.110674,,0.10121,,0.103564,,0.100862,,0.053017,,26.631804,,29.865867,,28.990516,,30,,30,,,,,,,,,,,,8256,,0.25862,,0.25862,,0.25862,,0.25862,,0.100862,,30,, +9605,-1,0.069858,0,2,0,2,4,,3,5,Huron,St,1428010,0,0.07,0,1.496965,6,4.5,,0.127015,,0.127015,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.188155,,0.127015,,0.188155,,0.136448,,0.127015,,0.136448,,0.136917,,0.127015,,0.136917,,0.127015,,0.127015,,0.127015,,,,,,,,0.188155,,0.136448,,0.136917,,0.127015,,0.127015,,0.069021,,0.053509,,0.05365,,0.050679,,0.026737,,22.276847,,30.718739,,30.613373,,33,,33,,,,,,,,,,,,5160,,0.127015,,0.127015,,0.127015,,0.127015,,0.050679,,33,, +9632,1,0.112228,2,0,0,2,4,,2,5,Hamilton,St,1428006,0.073,0.185,0,2.404879,8,4.5,0.240488,,0.240488,,28,,14000,,3178,,7000,,4516,,4816,,4810,,0.240746,,0.240488,,0.240746,,0.240629,,0.240488,,0.240629,,0.244577,,0.240488,,0.244577,,0.240488,,0.240488,,0.240488,,,,,,,,0.240746,,0.240629,,0.244577,,0.240488,,0.240488,,0.092425,,0.09239,,0.093574,,0.092347,,0.048418,,27.970003,,27.983584,,27.531872,,28,,28,,,,,,,,,,,,4816,,0.240488,,0.240488,,0.240488,,0.240488,,0.092347,,28,,, +9740,0,0.150889,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.669,1.82,0,3.233337,6,5,0.301778,0.301778,0.301778,0.301778,30,30,16800,16800,3814,3814,8400,8400,5420,5420,5779,5779,5772,5772,0.375082,0.36158,0.301778,0.301778,0.375082,0.36158,0.350709,0.313075,0.301778,0.301778,0.350709,0.313075,0.530989,0.363452,0.301778,0.301778,0.530989,0.363452,0.301778,0.301778,0.301778,0.301778,0.301778,0.301778,,,,,,,0.375082,0.36158,0.350709,0.313075,0.530989,0.363452,0.301778,0.301778,0.301778,0.301778,0.139685,0.135634,0.132373,0.121082,0.186457,0.136196,0.117693,0.117693,0.061865,0.061865,24.136944,25.03831,25.81441,28.9175,17.049957,24.909296,30,30,30,30,,,,,,,,,,,5779,5779,0.301778,0.301778,0.301778,0.301778,0.301778,0.301778,0.301778,0.301778,0.117693,0.117693,30,30,, +9840,-1,0.172112,0,2,0,2,4,,2,5,Huron,St,1428010,0.249,0.421,0,3.688118,8,4.5,,0.368812,,0.368812,,28,,14000,,3178,,7000,,4516,,4816,,4810,,0.433523,,0.368812,,0.433523,,0.377887,,0.368812,,0.377887,,0.387765,,0.368812,,0.387765,,0.368812,,0.368812,,0.368812,,,,,,,,0.433523,,0.377887,,0.387765,,0.368812,,0.368812,,0.161037,,0.144346,,0.14731,,0.141624,,0.074254,,23.820467,,27.327571,,26.631424,,28,,28,,,,,,,,,,,,4816,,0.368812,,0.368812,,0.368812,,0.368812,,0.141624,,28,, +9859,0,0.075966,1,1,0,2,4,,2,5,Washtenaw,Ave,1427706,6.998,7.074,0,1.627834,8,4.5,0.162783,0.162783,0.162783,0.162783,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.164421,0.162806,0.162783,0.162783,0.164421,0.162806,0.168858,0.162789,0.162783,0.162783,0.168858,0.162789,0.257343,0.162939,0.162783,0.162783,0.257343,0.162939,0.162783,0.162783,0.162783,0.162783,0.162783,0.162783,,,,,,,0.164421,0.162806,0.168858,0.162789,0.257343,0.162939,0.162783,0.162783,0.162783,0.162783,0.063,0.062516,0.064331,0.062511,0.090877,0.062555,0.062509,0.062509,0.032774,0.032774,27.721094,27.996056,26.992762,27.998974,17.711491,27.973294,28,28,28,28,,,,,,,,,,,2408,2408,0.162783,0.162783,0.162783,0.162783,0.162783,0.162783,0.162783,0.162783,0.062509,0.062509,28,28,, +9861,0,0.058046,1,1,0,2,5,,2,5,Ballard,St,4605998,0.326,0.384,0,1.24385,8.5,4.5,0.174139,0.174139,0.174139,0.174139,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.175413,0.174161,0.174139,0.174139,0.175413,0.174161,0.174294,0.174143,0.174139,0.174139,0.174294,0.174143,0.174197,0.175408,0.174139,0.174139,0.174197,0.175408,0.174139,0.174139,0.174139,0.174139,0.174139,0.174139,,,,,,,0.175413,0.174161,0.174294,0.174143,0.174197,0.175408,0.174139,0.174139,0.174139,0.174139,0.063072,0.062697,0.062737,0.062691,0.062707,0.063071,0.06269,0.06269,0.032506,0.032506,19.854735,19.997468,19.982219,19.999557,19.993338,19.855285,20,20,20,20,,,,,,,,,,,2064,2064,0.174139,0.174139,0.174139,0.174139,0.174139,0.174139,0.174139,0.174139,0.06269,0.06269,20,20,, +9949,0,0.105032,1,1,1,2,4,,3,5,College,Pl,1429907,0.207,0.312,0,2.250677,6,4.5,0.190967,0.190967,0.190967,0.190967,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.190967,0.20406,0.190967,0.190967,0.190967,0.20406,0.190967,0.193072,0.190967,0.190967,0.190967,0.193072,0.190967,0.202885,0.190967,0.190967,0.190967,0.202885,0.190967,0.190967,0.190967,0.190967,0.190967,0.190967,,,,,,,0.190967,0.20406,0.190967,0.193072,0.190967,0.202885,0.190967,0.190967,0.190967,0.190967,0.076196,0.080124,0.076196,0.076827,0.076196,0.079771,0.076196,0.076196,0.040198,0.040198,33,30.882553,33,32.640083,33,31.061397,33,33,33,33,,,,,,,,,,,2838,2838,0.190967,0.190967,0.190967,0.190967,0.190967,0.190967,0.190967,0.190967,0.076196,0.076196,33,33,, +10289,0,0.062869,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.326,0.389,0,1.347195,8,4.5,0.13472,0.13472,0.13472,0.13472,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.144591,0.142355,0.13472,0.13472,0.144591,0.142355,0.145608,0.137484,0.13472,0.13472,0.145608,0.137484,0.195754,0.148136,0.13472,0.13472,0.195754,0.148136,0.13472,0.13472,0.13472,0.13472,0.13472,0.13472,,,,,,,0.144591,0.142355,0.145608,0.137484,0.195754,0.148136,0.13472,0.13472,0.13472,0.13472,0.054694,0.054023,0.054999,0.052562,0.070043,0.055757,0.051732,0.051732,0.027124,0.027124,26.088361,26.498079,25.906128,27.436941,19.269877,25.464039,28,28,28,28,,,,,,,,,,,2649,2649,0.13472,0.13472,0.13472,0.13472,0.13472,0.13472,0.13472,0.13472,0.051732,0.051732,28,28,, +26783,0,0.038672,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.828687,0.15,4,0.232032,0.232032,0.232032,0.232032,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.232032,0.232032,0.232032,0.232032,0.232032,0.232032,0.232033,0.232033,0.232032,0.232032,0.232033,0.232033,0.232033,0.232032,0.232032,0.232032,0.232033,0.232032,0.232032,0.232032,0.232032,0.232032,0.232032,0.232032,,,,,,,0.232032,0.232032,0.232033,0.232033,0.232033,0.232032,0.232032,0.232032,0.232032,0.232032,0.076571,0.076571,0.076571,0.076571,0.076571,0.076571,0.076571,0.076571,0.039059,0.039059,10,10,9.999999,9.999999,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,0.232032,0.232032,0.232032,0.232032,0.232032,0.232032,0.232032,0.232032,0.076571,0.076571,10,10,, +26793,0,0.129753,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.780424,0.15,4,0.778519,0.778519,0.778519,0.778519,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,,,,,,,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.256911,0.256911,0.256911,0.256911,0.256911,0.256911,0.256911,0.256911,0.131051,0.131051,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.778519,0.256911,0.256911,10,10,, +26794,0,0.099555,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.133321,0.15,4,0.59733,0.59733,0.59733,0.59733,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,,,,,,,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.197119,0.197119,0.197119,0.197119,0.197119,0.197119,0.197119,0.197119,0.100551,0.100551,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.59733,0.197119,0.197119,10,10,, +26795,0,0.143526,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.075551,0.15,4,0.861154,0.861154,0.861154,0.861154,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,,,,,,,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.284181,0.284181,0.284181,0.284181,0.284181,0.284181,0.284181,0.284181,0.144961,0.144961,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.861154,0.284181,0.284181,10,10,, +26798,0,0.157703,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.379343,0.15,4,0.946216,0.946216,0.946216,0.946216,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,,,,,,,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.312251,0.312251,0.312251,0.312251,0.312251,0.312251,0.312251,0.312251,0.15928,0.15928,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.946216,0.312251,0.312251,10,10,, +26802,0,0.113647,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.435303,0.15,4,0.681885,0.681885,0.681885,0.681885,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,,,,,,,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.225022,0.225022,0.225022,0.225022,0.225022,0.225022,0.225022,0.225022,0.114784,0.114784,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.681885,0.225022,0.225022,10,10,, +30068,0,0.123644,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.649516,0.15,4,0.741864,0.741864,0.741864,0.741864,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,,,,,,,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.244815,0.244815,0.244815,0.244815,0.244815,0.244815,0.244815,0.244815,0.124881,0.124881,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.741864,0.244815,0.244815,10,10,, +30070,0,0.199334,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.271448,0.15,4,1.196005,1.196005,1.196005,1.196005,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,,,,,,,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,0.394682,0.394682,0.394682,0.394682,0.394682,0.394682,0.394682,0.394682,0.201328,0.201328,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,1.196005,0.394682,0.394682,10,10,, +9624,1,0.081731,3,0,0,2,3,,2,5,Hamilton,St,1428006,0.432,0.514,0,1.751384,6,5,0.163462,,0.163462,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.183965,,0.163462,,0.183965,,0.17767,,0.163462,,0.17767,,0.232103,,0.163462,,0.232103,,0.163462,,0.163462,,0.163462,,,,,,,,0.183965,,0.17767,,0.232103,,0.163462,,0.163462,,0.069901,,0.068013,,0.084343,,0.06375,,0.03351,,26.656612,,27.600978,,21.128013,,30,,30,,,,,,,,,,,,8256,,0.163462,,0.163462,,0.163462,,0.163462,,0.06375,,30,,, +9821,-1,0.144066,0,3,0,2,3,,2,5,Cross,St,1428902,1.999,2.143,0,3.087138,6,5,,0.288133,,0.288133,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.357772,,0.288133,,0.357772,,0.290348,,0.288133,,0.290348,,0.302804,,0.288133,,0.302804,,0.288133,,0.288133,,0.288133,,,,,,,,0.357772,,0.290348,,0.302804,,0.288133,,0.288133,,0.133263,,0.113036,,0.116773,,0.112372,,0.059067,,24.160625,,29.771127,,28.546461,,30,,30,,,,,,,,,,,,8256,,0.288133,,0.288133,,0.288133,,0.288133,,0.112372,,30,, +9855,0,0.181147,1,1,0,2,5,,2,5,Adams,St,1428008,0.515,0.696,0,3.881712,8.5,4.5,0.54344,0.54344,0.54344,0.54344,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,0.554378,0.54344,0.54344,0.54344,0.554378,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,,,,,,,0.54344,0.54344,0.54344,0.54344,0.54344,0.554378,0.54344,0.54344,0.54344,0.54344,0.195638,0.195638,0.195638,0.195638,0.195638,0.19892,0.195638,0.195638,0.101442,0.101442,20,19.999997,20,20,20,19.605375,20,20,20,20,,,,,,,,,,,2064,2064,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,0.54344,0.195638,0.195638,20,20,, +9864,0,0.080893,1,1,0,2,5,,3,5,Ballard,St,4605998,0,0.081,0,1.733423,8,4.5,0.194143,0.194143,0.194143,0.194143,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.205983,0.198405,0.194143,0.194143,0.205983,0.198405,0.19614,0.198858,0.194143,0.194143,0.19614,0.198858,0.207258,0.263823,0.194143,0.194143,0.207258,0.263823,0.194143,0.194143,0.194143,0.194143,0.194143,0.194143,,,,,,,0.205983,0.198405,0.19614,0.198858,0.207258,0.263823,0.194143,0.194143,0.194143,0.194143,0.076356,0.074082,0.073403,0.074218,0.076738,0.093708,0.072804,0.072804,0.03802,0.03802,23.562997,24.463004,24.745448,24.407314,23.418081,18.397107,25,25,25,25,,,,,,,,,,,2408,2408,0.194143,0.194143,0.194143,0.194143,0.194143,0.194143,0.194143,0.194143,0.072804,0.072804,25,25,, +9865,0,0.216443,1,1,0,2,5,,3,5,Congress,St,1428004,0.659,0.875,0,4.638069,8,4.5,0.519464,0.519464,0.519464,0.519464,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.54041,0.527478,0.519464,0.519464,0.54041,0.527478,0.520949,0.520155,0.519464,0.519464,0.520949,0.520155,0.547445,0.532374,0.519464,0.519464,0.547445,0.532374,0.519464,0.519464,0.519464,0.519464,0.519464,0.519464,,,,,,,0.54041,0.527478,0.520949,0.520155,0.547445,0.532374,0.519464,0.519464,0.519464,0.519464,0.201083,0.197203,0.195244,0.195006,0.203193,0.198672,0.194799,0.194799,0.101728,0.101728,24.031005,24.620166,24.928744,24.966798,23.722192,24.393751,25,25,25,25,,,,,,,,,,,2408,2408,0.519464,0.519464,0.519464,0.519464,0.519464,0.519464,0.519464,0.519464,0.194799,0.194799,25,25,, +9933,0,0.208007,2,2,0,2,3,,2,5,Michigan,Ave,1427804,1.312,1.52,0,4.457284,6,5,0.416013,0.416013,0.416013,0.416013,30,30,16000,16000,3632,3632,8000,8000,5162,5162,5504,5504,5498,5498,0.41778,0.429775,0.416013,0.416013,0.41778,0.429775,0.4167,0.417138,0.416013,0.416013,0.4167,0.417138,0.419613,0.422589,0.416013,0.416013,0.419613,0.422589,0.416013,0.416013,0.416013,0.416013,0.416013,0.416013,,,,,,,0.41778,0.429775,0.4167,0.417138,0.419613,0.422589,0.416013,0.416013,0.416013,0.416013,0.162775,0.166374,0.162451,0.162583,0.163325,0.164218,0.162245,0.162245,0.085283,0.085283,29.873143,29.039367,29.950573,29.919125,29.742666,29.533196,30,30,30,30,,,,,,,,,,,5504,5504,0.416013,0.416013,0.416013,0.416013,0.416013,0.416013,0.416013,0.416013,0.162245,0.162245,30,30,, +10095,1,0.152749,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.686,6.838,0,3.273198,6,5,0.305498,,0.305498,,30,,32000,,7264,,16000,,10323,,11008,,10995,,0.316472,,0.305498,,0.316472,,0.31707,,0.305498,,0.31707,,0.382519,,0.305498,,0.382519,,0.305498,,0.305498,,0.305498,,,,,,,,0.316472,,0.31707,,0.382519,,0.305498,,0.305498,,0.122436,,0.122616,,0.14225,,0.119144,,0.062627,,28.959771,,28.905185,,23.959492,,30,,30,,,,,,,,,,,,11008,,0.305498,,0.305498,,0.305498,,0.305498,,0.119144,,30,,, +26276,0,0.13437,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.879351,0.15,4,0.806218,0.806218,0.806218,0.806218,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,,,,,,,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.266052,0.266052,0.266052,0.266052,0.266052,0.266052,0.266052,0.266052,0.135713,0.135713,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.806218,0.266052,0.266052,10,10,, +26285,0,0.135699,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.907833,0.15,4,0.814193,0.814193,0.814193,0.814193,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,,,,,,,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.268684,0.268684,0.268684,0.268684,0.268684,0.268684,0.268684,0.268684,0.137056,0.137056,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.814193,0.268684,0.268684,10,10,, +26690,0,0.22189,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.754793,0.15,4,1.331342,1.331342,1.331342,1.331342,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,,,,,,,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,0.439343,0.439343,0.439343,0.439343,0.439343,0.439343,0.439343,0.439343,0.224109,0.224109,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,1.331342,0.439343,0.439343,10,10,, +26787,0,0.160992,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.449836,0.15,4,0.965954,0.965954,0.965954,0.965954,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,,,,,,,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.318765,0.318765,0.318765,0.318765,0.318765,0.318765,0.318765,0.318765,0.162602,0.162602,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.965954,0.318765,0.318765,10,10,, +26286,0,0.095447,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.045297,0.15,4,0.572683,0.572683,0.572683,0.572683,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,,,,,,,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.188985,0.188985,0.188985,0.188985,0.188985,0.188985,0.188985,0.188985,0.096402,0.096402,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.572683,0.188985,0.188985,10,10,, +30080,0,0.222665,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.771388,0.15,4,1.335989,1.335989,1.335989,1.335989,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,,,,,,,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,0.440876,0.440876,0.440876,0.440876,0.440876,0.440876,0.440876,0.440876,0.224891,0.224891,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,1.335989,0.440876,0.440876,10,10,, +9747,0,0.052669,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.26,1.312,0,1.128611,5,5,0.090289,0.090289,0.090289,0.090289,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.090357,0.090991,0.090289,0.090289,0.090357,0.090991,0.090319,0.090361,0.090289,0.090289,0.090319,0.090361,0.090474,0.090661,0.090289,0.090289,0.090474,0.090661,0.090289,0.090289,0.090289,0.090289,0.090289,0.090289,,,,,,,0.090357,0.090991,0.090319,0.090361,0.090474,0.090661,0.090289,0.090289,0.090289,0.090289,0.036587,0.036778,0.036576,0.036589,0.036623,0.036679,0.036567,0.036567,0.019337,0.019337,34.973634,34.729982,34.988324,34.972029,34.928238,34.856281,35,35,35,35,,,,,,,,,,,7568,7568,0.090289,0.090289,0.090289,0.090289,0.090289,0.090289,0.090289,0.090289,0.036567,0.036567,35,35,, +9936,0,0.023542,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.236,1.26,0,0.504476,5,5,0.040358,0.040358,0.040358,0.040358,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.040389,0.040672,0.040358,0.040358,0.040389,0.040672,0.040372,0.04039,0.040358,0.040358,0.040372,0.04039,0.040441,0.040526,0.040358,0.040358,0.040441,0.040526,0.040358,0.040358,0.040358,0.040358,0.040358,0.040358,,,,,,,0.040389,0.040672,0.040372,0.04039,0.040441,0.040526,0.040358,0.040358,0.040358,0.040358,0.016354,0.016439,0.016349,0.016355,0.01637,0.016395,0.016345,0.016345,0.008643,0.008643,34.973581,34.730025,34.988222,34.972017,34.92785,34.855263,35,35,35,35,,,,,,,,,,,7568,7568,0.040358,0.040358,0.040358,0.040358,0.040358,0.040358,0.040358,0.040358,0.016345,0.016345,35,35,, +26289,0,0.049247,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.055282,0.15,4,0.295479,0.295479,0.295479,0.295479,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,,,,,,,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.097508,0.097508,0.097508,0.097508,0.097508,0.097508,0.097508,0.097508,0.049739,0.049739,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.295479,0.097508,0.097508,10,10,, +26291,0,0.057068,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.222887,0.15,4,0.342408,0.342408,0.342408,0.342408,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,,,,,,,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.112995,0.112995,0.112995,0.112995,0.112995,0.112995,0.112995,0.112995,0.057639,0.057639,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.342408,0.112995,0.112995,10,10,, +9742,0,0.074435,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.52,1.595,0,1.595031,6,5,0.14887,0.14887,0.14887,0.14887,30,30,16800,16800,3814,3814,8400,8400,5420,5420,5779,5779,5772,5772,0.15573,0.177942,0.14887,0.14887,0.15573,0.177942,0.151586,0.151407,0.14887,0.14887,0.151586,0.151407,0.18875,0.174959,0.14887,0.14887,0.18875,0.174959,0.14887,0.14887,0.14887,0.14887,0.14887,0.14887,,,,,,,0.15573,0.177942,0.151586,0.151407,0.18875,0.174959,0.14887,0.14887,0.14887,0.14887,0.060117,0.066781,0.058874,0.058821,0.070023,0.065886,0.058059,0.058059,0.030518,0.030518,28.678416,25.098499,29.46231,29.497139,23.661381,25.526422,30,30,30,30,,,,,,,,,,,5779,5779,0.14887,0.14887,0.14887,0.14887,0.14887,0.14887,0.14887,0.14887,0.058059,0.058059,30,30,, +21584,-1,0.084895,0,3,0,2,3,,2,5,Hamilton,St,4603871,0.986,1.071,0,1.819183,6,5,,0.16979,,0.16979,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.175416,,0.16979,,0.175416,,0.17461,,0.16979,,0.17461,,0.264267,,0.16979,,0.264267,,0.16979,,0.16979,,0.16979,,,,,,,,0.175416,,0.17461,,0.264267,,0.16979,,0.16979,,0.067906,,0.067664,,0.094561,,0.066218,,0.034807,,29.037889,,29.171875,,19.274857,,30,,30,,,,,,,,,,,,8256,,0.16979,,0.16979,,0.16979,,0.16979,,0.066218,,30,, +26278,0,0.093665,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.007099,0.15,4,0.561988,0.561988,0.561988,0.561988,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,,,,,,,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.185456,0.185456,0.185456,0.185456,0.185456,0.185456,0.185456,0.185456,0.094601,0.094601,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.561988,0.185456,0.185456,10,10,, +26803,0,0.113147,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.424583,0.15,4,0.678883,0.678883,0.678883,0.678883,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,,,,,,,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.224031,0.224031,0.224031,0.224031,0.224031,0.224031,0.224031,0.224031,0.114279,0.114279,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.678883,0.224031,0.224031,10,10,, +37027,-1,0.262279,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,4603898,0,0.262,0,5.620256,5,5,,0.393418,,0.393418,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.465571,,0.393418,,0.465571,,0.429007,,0.393418,,0.429007,,0.469625,,0.393418,,0.469625,,0.393418,,0.393418,,0.393418,,,,,,,,0.465571,,0.429007,,0.469625,,0.393418,,0.393418,,0.186882,,0.175912,,0.188098,,0.165236,,0.087863,,33.800868,,36.681725,,33.509105,,40,,40,,,,,,,,,,,,6880,,0.393418,,0.393418,,0.393418,,0.393418,,0.165236,,40,, +9932,0,0.074368,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.595,1.669,0,1.593593,6,5,0.148735,0.148735,0.148735,0.148735,30,30,16800,16800,3814,3814,8400,8400,5420,5420,5779,5779,5772,5772,0.192332,0.182386,0.148735,0.148735,0.192332,0.182386,0.176297,0.155072,0.148735,0.148735,0.176297,0.155072,0.208116,0.210664,0.148735,0.148735,0.208116,0.210664,0.148735,0.148735,0.148735,0.148735,0.148735,0.148735,,,,,,,0.192332,0.182386,0.176297,0.155072,0.208116,0.210664,0.148735,0.148735,0.148735,0.148735,0.071086,0.068102,0.066275,0.059908,0.075821,0.076585,0.058007,0.058007,0.030491,0.030491,23.199793,24.464891,25.309945,28.774113,21.440221,21.180939,30,30,30,30,,,,,,,,,,,5779,5779,0.148735,0.148735,0.148735,0.148735,0.148735,0.148735,0.148735,0.148735,0.058007,0.058007,30,30,, +9580,-1,0.084797,0,3,0,2,3,,2,5,Cross,St,1428902,2.143,2.228,0,1.817075,6,5,,0.169594,,0.169594,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.196751,,0.169594,,0.196751,,0.170385,,0.169594,,0.170385,,0.175554,,0.169594,,0.175554,,0.169594,,0.169594,,0.169594,,,,,,,,0.196751,,0.170385,,0.175554,,0.169594,,0.169594,,0.074289,,0.066379,,0.06793,,0.066142,,0.034767,,25.859098,,29.86059,,28.981501,,30,,30,,,,,,,,,,,,8256,,0.169594,,0.169594,,0.169594,,0.169594,,0.066142,,30,, +9623,0,0.075524,1,1,0,2,5,,2,5,Adams,St,1428008,0.696,0.771,0,1.618374,8.5,4.5,0.226572,0.226572,0.226572,0.226572,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.227437,0.226578,0.226572,0.226572,0.227437,0.226578,0.22684,0.226575,0.226572,0.226572,0.22684,0.226575,0.229927,0.226576,0.226572,0.226572,0.229927,0.226576,0.226572,0.226572,0.226572,0.226572,0.226572,0.226572,,,,,,,0.227437,0.226578,0.22684,0.226575,0.229927,0.226576,0.226572,0.226572,0.226572,0.226572,0.081825,0.081568,0.081646,0.081567,0.082572,0.081567,0.081566,0.081566,0.042294,0.042294,19.924004,19.999542,19.976404,19.999807,19.708228,19.999697,20,20,20,20,,,,,,,,,,,2064,2064,0.226572,0.226572,0.226572,0.226572,0.226572,0.226572,0.226572,0.226572,0.081566,0.081566,20,20,, +9628,1,0.074542,2,0,0,2,3,,2,5,Hamilton,St,1428006,0.258,0.332,0,1.597333,6,5,0.149084,,0.149084,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.149111,,0.149084,,0.149111,,0.149105,,0.149084,,0.149105,,0.14972,,0.149084,,0.14972,,0.149084,,0.149084,,0.149084,,,,,,,,0.149111,,0.149105,,0.14972,,0.149084,,0.149084,,0.058151,,0.058149,,0.058334,,0.058143,,0.030562,,29.994637,,29.995811,,29.8727,,30,,30,,,,,,,,,,,,5504,,0.149084,,0.149084,,0.149084,,0.149084,,0.058143,,30,,, +9862,0,0.074967,1,1,0,2,5,,2,5,Ballard,St,4605998,0.183,0.258,0,1.606442,8.5,4.5,0.224902,0.224902,0.224902,0.224902,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.248733,0.224935,0.224902,0.224902,0.248733,0.224935,0.228089,0.224913,0.224902,0.224902,0.228089,0.224913,0.227506,0.227178,0.224902,0.224902,0.227506,0.227178,0.224902,0.224902,0.224902,0.224902,0.224902,0.224902,,,,,,,0.248733,0.224935,0.228089,0.224913,0.227506,0.227178,0.224902,0.224902,0.224902,0.224902,0.088114,0.080975,0.081921,0.080968,0.081746,0.081647,0.080965,0.080965,0.041982,0.041982,18.083795,19.997077,19.72056,19.999049,19.771099,19.799638,20,20,20,20,,,,,,,,,,,2064,2064,0.224902,0.224902,0.224902,0.224902,0.224902,0.224902,0.224902,0.224902,0.080965,0.080965,20,20,, +9866,1,0.083619,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.838,6.922,0,1.79183,6,5,0.167237,,0.167237,,30,,32000,,7264,,16000,,10323,,11008,,10995,,0.171294,,0.167237,,0.171294,,0.170734,,0.167237,,0.170734,,0.195044,,0.167237,,0.195044,,0.167237,,0.167237,,0.167237,,,,,,,,0.171294,,0.170734,,0.195044,,0.167237,,0.167237,,0.06644,,0.066272,,0.073564,,0.065223,,0.034284,,29.289473,,29.385558,,25.723102,,30,,30,,,,,,,,,,,,11008,,0.167237,,0.167237,,0.167237,,0.167237,,0.065223,,30,,, +30071,0,0.139459,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.9884,0.15,4,0.836752,0.836752,0.836752,0.836752,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,,,,,,,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.276128,0.276128,0.276128,0.276128,0.276128,0.276128,0.276128,0.276128,0.140853,0.140853,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.836752,0.276128,0.276128,10,10,, +9637,0,0.102295,1,1,0,2,5,,3,5,Ballard,St,4605998,0.081,0.183,0,2.19204,8,4.5,0.245509,0.245509,0.245509,0.245509,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.253532,0.246183,0.245509,0.245509,0.253532,0.246183,0.246479,0.24774,0.245509,0.245509,0.246479,0.24774,0.248445,0.286625,0.245509,0.245509,0.248445,0.286625,0.245509,0.245509,0.245509,0.245509,0.245509,0.245509,,,,,,,0.253532,0.246183,0.246479,0.24774,0.248445,0.286625,0.245509,0.245509,0.245509,0.245509,0.094473,0.092268,0.092357,0.092735,0.092947,0.104401,0.092066,0.092066,0.048079,0.048079,24.208855,24.931482,24.901539,24.774822,24.704508,21.413716,25,25,25,25,,,,,,,,,,,2408,2408,0.245509,0.245509,0.245509,0.245509,0.245509,0.245509,0.245509,0.245509,0.092066,0.092066,25,25,, +9635,0,0.068057,1,1,0,2,5,,2,5,Ballard,St,4605998,0.258,0.326,0,1.458366,8.5,4.5,0.204171,0.204171,0.204171,0.204171,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.225806,0.204201,0.204171,0.204171,0.225806,0.204201,0.207064,0.204181,0.204171,0.204171,0.207064,0.204181,0.206535,0.206237,0.204171,0.204171,0.206535,0.206237,0.204171,0.204171,0.204171,0.204171,0.204171,0.204171,,,,,,,0.225806,0.204201,0.207064,0.204181,0.206535,0.206237,0.204171,0.204171,0.204171,0.204171,0.079992,0.073511,0.07437,0.073505,0.074211,0.074121,0.073502,0.073502,0.038112,0.038112,18.083795,19.997077,19.72056,19.999049,19.771099,19.799638,20,20,20,20,,,,,,,,,,,2064,2064,0.204171,0.204171,0.204171,0.204171,0.204171,0.204171,0.204171,0.204171,0.073502,0.073502,20,20,, +9856,1,0.100219,3,0,0,2,3,,2,5,Hamilton,St,1428006,0.332,0.432,0,2.147547,6,5,0.200438,,0.200438,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.22314,,0.200438,,0.22314,,0.215361,,0.200438,,0.215361,,0.274824,,0.200438,,0.274824,,0.200438,,0.200438,,0.200438,,,,,,,,0.22314,,0.215361,,0.274824,,0.200438,,0.200438,,0.084981,,0.082648,,0.100487,,0.078171,,0.04109,,26.947818,,27.921148,,21.879926,,30,,30,,,,,,,,,,,,8256,,0.200438,,0.200438,,0.200438,,0.200438,,0.078171,,30,,, +10087,1,0.076362,2,0,0,2,4,,2,5,Washtenaw,Ave,1427706,6.922,6.998,0,1.636336,8,4.5,0.163634,,0.163634,,28,,14000,,3178,,7000,,4516,,4816,,4810,,0.163753,,0.163634,,0.163753,,0.163974,,0.163634,,0.163974,,0.185148,,0.163634,,0.185148,,0.163634,,0.163634,,0.163634,,,,,,,,0.163753,,0.163974,,0.185148,,0.163634,,0.163634,,0.062871,,0.062937,,0.06929,,0.062835,,0.032945,,27.97965,,27.941831,,24.746376,,28,,28,,,,,,,,,,,,4816,,0.163634,,0.163634,,0.163634,,0.163634,,0.062835,,28,,, +9820,-1,0.075651,0,3,0,2,3,,2,5,Cross,St,1428902,2.228,2.304,0,1.621085,6,5,,0.151301,,0.151301,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.172022,,0.151301,,0.172022,,0.151955,,0.151301,,0.151955,,0.156225,,0.151301,,0.156225,,0.151301,,0.151301,,0.151301,,,,,,,,0.172022,,0.151955,,0.156225,,0.151301,,0.151301,,0.065224,,0.059204,,0.060485,,0.059007,,0.031017,,26.386307,,29.870894,,29.054407,,30,,30,,,,,,,,,,,,8256,,0.151301,,0.151301,,0.151301,,0.151301,,0.059007,,30,, +9844,0,0.073093,1,1,0,2,5,,2,5,Adams,St,1428008,0.771,0.844,0,1.566275,8.5,4.5,0.219279,0.219279,0.219279,0.219279,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.219476,0.219279,0.219279,0.219279,0.219476,0.219279,0.219305,0.219279,0.219279,0.219279,0.219305,0.219279,0.219313,0.219279,0.219279,0.219279,0.219313,0.219279,0.219279,0.219279,0.219279,0.219279,0.219279,0.219279,,,,,,,0.219476,0.219279,0.219305,0.219279,0.219313,0.219279,0.219279,0.219279,0.219279,0.219279,0.079,0.07894,0.078948,0.078941,0.078951,0.07894,0.07894,0.07894,0.040932,0.040932,19.981979,20,19.997581,19.999916,19.996887,19.999966,20,20,20,20,,,,,,,,,,,2064,2064,0.219279,0.219279,0.219279,0.219279,0.219279,0.219279,0.219279,0.219279,0.07894,0.07894,20,20,, +9858,1,0.072682,2,0,0,2,3,,2,5,Hamilton,St,1428006,0.185,0.258,0,1.557466,6,5,0.145363,,0.145363,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.145371,,0.145363,,0.145371,,0.145372,,0.145363,,0.145372,,0.145761,,0.145363,,0.145761,,0.145363,,0.145363,,0.145363,,,,,,,,0.145371,,0.145372,,0.145761,,0.145363,,0.145363,,0.056694,,0.056694,,0.056811,,0.056692,,0.0298,,29.998353,,29.9982,,29.918137,,30,,30,,,,,,,,,,,,5504,,0.145363,,0.145363,,0.145363,,0.145363,,0.056692,,30,,, +26788,0,0.038595,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.827033,0.15,4,0.231569,0.231569,0.231569,0.231569,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,,,,,,,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.076418,0.076418,0.076418,0.076418,0.076418,0.076418,0.076418,0.076418,0.038981,0.038981,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.231569,0.076418,0.076418,10,10,, +26789,0,0.036316,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.778211,0.15,4,0.217899,0.217899,0.217899,0.217899,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,,,,,,,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.071907,0.071907,0.071907,0.071907,0.071907,0.071907,0.071907,0.071907,0.03668,0.03668,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.217899,0.071907,0.071907,10,10,, +10385,0,0.159901,1,1,1,2,4,,3,5,Forest,Ave,1429906,0,0.16,0,3.426454,6,4.5,0.290729,0.290729,0.290729,0.290729,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.290729,0.310663,0.290729,0.290729,0.290729,0.310663,0.290729,0.293935,0.290729,0.290729,0.290729,0.293935,0.290729,0.308874,0.290729,0.290729,0.290729,0.308874,0.290729,0.290729,0.290729,0.290729,0.290729,0.290729,,,,,,,0.290729,0.310663,0.290729,0.293935,0.290729,0.308874,0.290729,0.290729,0.290729,0.290729,0.116001,0.121981,0.116001,0.116963,0.116001,0.121445,0.116001,0.116001,0.061199,0.061199,33,30.882553,33,32.640083,33,31.061397,33,33,33,33,,,,,,,,,,,2838,2838,0.290729,0.290729,0.290729,0.290729,0.290729,0.290729,0.290729,0.290729,0.116001,0.116001,33,33,, +11420,-1,0.291183,0,2,0,2,4,,3,5,Lowell,St,1435509,0.137,0.428,0,6.239644,6,4.5,,0.529424,,0.529424,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.530553,,0.529424,,0.530553,,0.530306,,0.529424,,0.530306,,0.53366,,0.529424,,0.53366,,0.529424,,0.529424,,0.529424,,,,,,,,0.530553,,0.530306,,0.53366,,0.529424,,0.529424,,0.211579,,0.211505,,0.212511,,0.21124,,0.111444,,32.929774,,32.945117,,32.738104,,33,,33,,,,,,,,,,,,5160,,0.529424,,0.529424,,0.529424,,0.529424,,0.21124,,33,, +21942,-1,0.290855,0,2,0,2,4,,3,5,Huron,St,4603250,2.14,2.431,0,6.232617,6,4.5,,0.528828,,0.528828,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.783384,,0.528828,,0.783384,,0.5681,,0.528828,,0.5681,,0.570056,,0.528828,,0.570056,,0.528828,,0.528828,,0.528828,,,,,,,,0.783384,,0.5681,,0.570056,,0.528828,,0.528828,,0.287369,,0.222784,,0.223371,,0.211002,,0.111318,,22.276847,,30.718739,,30.613373,,33,,33,,,,,,,,,,,,5160,,0.528828,,0.528828,,0.528828,,0.528828,,0.211002,,33,, +26796,0,0.198217,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.247508,0.15,4,1.189302,1.189302,1.189302,1.189302,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,,,,,,,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,0.39247,0.39247,0.39247,0.39247,0.39247,0.39247,0.39247,0.39247,0.200199,0.200199,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,1.189302,0.39247,0.39247,10,10,, +26797,0,0.078312,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.678114,0.15,4,0.469872,0.469872,0.469872,0.469872,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,,,,,,,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.155058,0.155058,0.155058,0.155058,0.155058,0.155058,0.155058,0.155058,0.079095,0.079095,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.469872,0.155058,0.155058,10,10,, +30066,0,0.300995,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,6.449903,0.15,4,1.805973,1.805973,1.805973,1.805973,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,,,,,,,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,0.595971,0.595971,0.595971,0.595971,0.595971,0.595971,0.595971,0.595971,0.304005,0.304005,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,1.805973,0.595971,0.595971,10,10,, +21427,0,0.032609,2,2,0,2,4,,3,5,Huron,St,4603250,2.108,2.14,0,0.698774,6,4.5,0.05929,0.05929,0.05929,0.05929,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.059388,0.085802,0.05929,0.05929,0.059388,0.085802,0.059357,0.063032,0.05929,0.05929,0.059357,0.063032,0.059655,0.063244,0.05929,0.05929,0.059655,0.063244,0.05929,0.05929,0.05929,0.05929,0.05929,0.05929,,,,,,,0.059388,0.085802,0.059357,0.063032,0.059655,0.063244,0.05929,0.05929,0.05929,0.05929,0.023686,0.03161,0.023677,0.024779,0.023766,0.024843,0.023657,0.023657,0.012481,0.012481,32.945317,22.803393,32.962743,31.041021,32.79806,30.936588,33,33,33,33,,,,,,,,,,,5160,5160,0.05929,0.05929,0.05929,0.05929,0.05929,0.05929,0.05929,0.05929,0.023657,0.023657,33,33,, +9860,1,0.072769,2,0,0,2,4,,2,5,Hamilton,St,1428006,0,0.073,0,1.559327,8,4.5,0.155933,,0.155933,,28,,14000,,3178,,7000,,4516,,4816,,4810,,0.155948,,0.155933,,0.155948,,0.155957,,0.155933,,0.155957,,0.15771,,0.155933,,0.15771,,0.155933,,0.155933,,0.155933,,,,,,,,0.155948,,0.155957,,0.15771,,0.155933,,0.155933,,0.059883,,0.059886,,0.060411,,0.059878,,0.031394,,27.997312,,27.995572,,27.684391,,28,,28,,,,,,,,,,,,4816,,0.155933,,0.155933,,0.155933,,0.155933,,0.059878,,28,,, +9883,0,0.053012,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.195,0.248,0,1.135961,8,4.5,0.113596,0.113596,0.113596,0.113596,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.145982,0.119323,0.113596,0.113596,0.145982,0.119323,0.145838,0.114669,0.113596,0.113596,0.145838,0.114669,0.507475,0.11839,0.113596,0.113596,0.507475,0.11839,0.113596,0.113596,0.113596,0.113596,0.113596,0.113596,,,,,,,0.145982,0.119323,0.145838,0.114669,0.507475,0.11839,0.113596,0.113596,0.113596,0.113596,0.053337,0.045339,0.053294,0.043943,0.161785,0.045059,0.043621,0.043621,0.022871,0.022871,21.788177,26.656112,21.809702,27.737922,6.267678,26.866289,28,28,28,28,,,,,,,,,,,2649,2649,0.113596,0.113596,0.113596,0.113596,0.113596,0.113596,0.113596,0.113596,0.043621,0.043621,28,28,, +10121,0,0.035379,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.16,0.195,0,0.758126,8,4.5,0.075813,0.075813,0.075813,0.075813,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.076021,0.094701,0.075813,0.075813,0.076021,0.094701,0.07582,0.078886,0.075813,0.075813,0.07582,0.078886,0.075813,0.117191,0.075813,0.075813,0.075813,0.117191,0.075813,0.075813,0.075813,0.075813,0.075813,0.075813,,,,,,,0.076021,0.094701,0.07582,0.078886,0.075813,0.117191,0.075813,0.075813,0.075813,0.075813,0.029175,0.034779,0.029114,0.030034,0.029112,0.041525,0.029112,0.029112,0.015264,0.015264,27.923215,22.415297,27.997414,26.90913,27.999869,18.113674,28,28,28,28,,,,,,,,,,,2649,2649,0.075813,0.075813,0.075813,0.075813,0.075813,0.075813,0.075813,0.075813,0.029112,0.029112,28,28,, +26791,0,0.116621,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.499019,0.15,4,0.699725,0.699725,0.699725,0.699725,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,,,,,,,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.230909,0.230909,0.230909,0.230909,0.230909,0.230909,0.230909,0.230909,0.117787,0.117787,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.699725,0.230909,0.230909,10,10,, +30065,0,0.13261,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.841646,0.15,4,0.795661,0.795661,0.795661,0.795661,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,,,,,,,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.262568,0.262568,0.262568,0.262568,0.262568,0.262568,0.262568,0.262568,0.133936,0.133936,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.795661,0.262568,0.262568,10,10,, +9634,0,0.100635,1,1,0,2,5,,2,5,Ballard,St,4605998,0.384,0.485,0,2.156472,8.5,4.5,0.301906,0.301906,0.301906,0.301906,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.304115,0.301944,0.301906,0.301906,0.304115,0.301944,0.301958,0.301913,0.301906,0.301906,0.301958,0.301913,0.301908,0.304107,0.301906,0.301906,0.301908,0.304107,0.301906,0.301906,0.301906,0.301906,0.301906,0.301906,,,,,,,0.304115,0.301944,0.301958,0.301913,0.301908,0.304107,0.301906,0.301906,0.301906,0.301906,0.109349,0.108698,0.108702,0.108688,0.108687,0.109346,0.108686,0.108686,0.056356,0.056356,19.854735,19.997468,19.996587,19.999557,19.999902,19.855285,20,20,20,20,,,,,,,,,,,2064,2064,0.301906,0.301906,0.301906,0.301906,0.301906,0.301906,0.301906,0.301906,0.108686,0.108686,20,20,, +11423,-1,0.136819,0,2,0,2,4,,3,5,Lowell,St,1435509,0,0.137,0,2.931843,6,4.5,,0.248762,,0.248762,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.250705,,0.248762,,0.250705,,0.251537,,0.248762,,0.251537,,0.332881,,0.248762,,0.332881,,0.248762,,0.248762,,0.248762,,,,,,,,0.250705,,0.251537,,0.332881,,0.248762,,0.248762,,0.099839,,0.100088,,0.124492,,0.099256,,0.052364,,32.744321,,32.636047,,24.660918,,33,,33,,,,,,,,,,,,5160,,0.248762,,0.248762,,0.248762,,0.248762,,0.099256,,33,, +26792,0,0.045601,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.977155,0.15,4,0.273603,0.273603,0.273603,0.273603,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,,,,,,,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.090289,0.090289,0.090289,0.090289,0.090289,0.090289,0.090289,0.090289,0.046057,0.046057,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.273603,0.090289,0.090289,10,10,, +9512,0,0.077441,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.248,0.326,0,1.659442,8,4.5,0.165944,0.165944,0.165944,0.165944,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.1761,0.17535,0.165944,0.165944,0.1761,0.17535,0.178417,0.16935,0.165944,0.165944,0.178417,0.16935,0.211429,0.182523,0.165944,0.165944,0.211429,0.182523,0.165944,0.165944,0.165944,0.165944,0.165944,0.165944,,,,,,,0.1761,0.17535,0.178417,0.16935,0.211429,0.182523,0.165944,0.165944,0.165944,0.165944,0.066769,0.066544,0.067464,0.064744,0.077368,0.068696,0.063723,0.063723,0.03341,0.03341,26.385184,26.498079,26.0426,27.436941,21.976366,25.456715,28,28,28,28,,,,,,,,,,,2649,2649,0.165944,0.165944,0.165944,0.165944,0.165944,0.165944,0.165944,0.165944,0.063723,0.063723,28,28,, +9535,0,0.075404,1,1,0,2,4,,2,5,Cross,St,1428902,2.508,2.583,0,1.615793,8,4.5,0.161579,0.161579,0.161579,0.161579,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.163408,0.364536,0.161579,0.161579,0.163408,0.364536,0.17539,0.209337,0.161579,0.161579,0.17539,0.209337,0.286935,0.310306,0.161579,0.161579,0.286935,0.310306,0.161579,0.161579,0.161579,0.161579,0.161579,0.161579,,,,,,,0.163408,0.364536,0.17539,0.209337,0.286935,0.310306,0.161579,0.161579,0.161579,0.161579,0.062595,0.122933,0.06619,0.076374,0.099653,0.106664,0.062046,0.062046,0.032531,0.032531,27.686645,12.410904,25.795219,21.612152,15.767396,14.579874,28,28,28,28,,,,,,,,,,,2408,2408,0.161579,0.161579,0.161579,0.161579,0.161579,0.161579,0.161579,0.161579,0.062046,0.062046,28,28,, +9586,0,0.11851,1,1,0,2,5,,3,5,River,St,1428102,0.061,0.18,0,2.539504,8,4.5,0.284424,0.284424,0.284424,0.284424,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.284831,0.28448,0.284424,0.284424,0.284831,0.28448,0.284445,0.284436,0.284424,0.284424,0.284445,0.284436,0.290355,0.285254,0.284424,0.284424,0.290355,0.285254,0.284424,0.284424,0.284424,0.284424,0.284424,0.284424,,,,,,,0.284831,0.28448,0.284445,0.284436,0.290355,0.285254,0.284424,0.284424,0.284424,0.284424,0.106781,0.106676,0.106665,0.106663,0.108438,0.106908,0.106659,0.106659,0.0557,0.0557,24.96431,24.995089,24.998165,24.998969,24.489331,24.927325,25,25,25,25,,,,,,,,,,,2408,2408,0.284424,0.284424,0.284424,0.284424,0.284424,0.284424,0.284424,0.284424,0.106659,0.106659,25,25,, +9738,0,0.175264,2,2,1,2,3,,3,5,Michigan,Ave,1427804,1.878,2.053,0,3.755664,5,5,0.300453,0.300453,0.300453,0.300453,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.32804,0.375856,0.300453,0.300453,0.32804,0.375856,0.316685,0.305921,0.300453,0.300453,0.316685,0.305921,0.409744,0.333815,0.300453,0.300453,0.409744,0.333815,0.300453,0.300453,0.300453,0.300453,0.300453,0.300453,,,,,,,0.32804,0.375856,0.316685,0.305921,0.409744,0.333815,0.300453,0.300453,0.300453,0.300453,0.12996,0.144305,0.126553,0.123324,0.154471,0.131692,0.121684,0.121684,0.064347,0.064347,32.056654,27.978395,33.206053,34.374439,25.664492,31.502026,35,35,35,35,,,,,,,,,,,7946,7946,0.300453,0.300453,0.300453,0.300453,0.300453,0.300453,0.300453,0.300453,0.121684,0.121684,35,35,, +9826,-1,0.084001,0,3,0,2,3,,2,5,Huron,St,1428010,0.671,0.755,0,1.800022,6,5,,0.168002,,0.168002,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.24036,,0.168002,,0.24036,,0.172198,,0.168002,,0.172198,,0.184966,,0.168002,,0.184966,,0.168002,,0.168002,,0.168002,,,,,,,,0.24036,,0.172198,,0.184966,,0.168002,,0.168002,,0.087228,,0.06678,,0.07061,,0.065521,,0.03444,,20.968786,,29.268909,,27.248643,,30,,30,,,,,,,,,,,,8256,,0.168002,,0.168002,,0.168002,,0.168002,,0.065521,,30,, +26804,0,0.149354,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.20044,0.15,4,0.896123,0.896123,0.896123,0.896123,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,,,,,,,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.295721,0.295721,0.295721,0.295721,0.295721,0.295721,0.295721,0.295721,0.150847,0.150847,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.896123,0.295721,0.295721,10,10,, +21476,1,0.08285,3,0,0,2,3,,2,5,Huron,St,4603870,1.021,1.104,0,1.775357,6,5,0.1657,,0.1657,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.189624,,0.1657,,0.189624,,0.168305,,0.1657,,0.168305,,0.178818,,0.1657,,0.178818,,0.1657,,0.1657,,0.1657,,,,,,,,0.189624,,0.168305,,0.178818,,0.1657,,0.1657,,0.0718,,0.065404,,0.068558,,0.064623,,0.033968,,26.21498,,29.535715,,27.7992,,30,,30,,,,,,,,,,,,8256,,0.1657,,0.1657,,0.1657,,0.1657,,0.064623,,30,,, +26784,0,0.140281,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.006027,0.15,4,0.841687,0.841687,0.841687,0.841687,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,,,,,,,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.277757,0.277757,0.277757,0.277757,0.277757,0.277757,0.277757,0.277757,0.141684,0.141684,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.841687,0.277757,0.277757,10,10,, +9929,0,0.057496,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.82,1.878,0,1.232061,6,5,0.114992,0.114992,0.114992,0.114992,30,30,16800,16800,3814,3814,8400,8400,5420,5420,5779,5779,5772,5772,0.171954,0.280725,0.114992,0.114992,0.171954,0.280725,0.145854,0.128594,0.114992,0.114992,0.145854,0.128594,0.319862,0.202466,0.114992,0.114992,0.319862,0.202466,0.114992,0.114992,0.114992,0.114992,0.114992,0.114992,,,,,,,0.171954,0.280725,0.145854,0.128594,0.319862,0.202466,0.114992,0.114992,0.114992,0.114992,0.061935,0.094567,0.054105,0.048927,0.106308,0.071089,0.044847,0.044847,0.023573,0.023573,20.062224,12.288793,23.652232,26.826921,10.785175,17.038728,30,30,30,30,,,,,,,,,,,5779,5779,0.114992,0.114992,0.114992,0.114992,0.114992,0.114992,0.114992,0.114992,0.044847,0.044847,30,30,, +9837,-1,0.077234,0,3,0,2,3,,2,5,Huron,St,1428010,0.497,0.574,0,1.655015,6,5,,0.154468,,0.154468,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.219317,,0.154468,,0.219317,,0.160496,,0.154468,,0.160496,,0.193325,,0.154468,,0.193325,,0.154468,,0.154468,,0.154468,,,,,,,,0.219317,,0.160496,,0.193325,,0.154468,,0.154468,,0.079697,,0.062051,,0.0719,,0.060243,,0.031666,,21.129445,,28.873257,,23.970256,,30,,30,,,,,,,,,,,,8256,,0.154468,,0.154468,,0.154468,,0.154468,,0.060243,,30,, +10086,0,0.073439,1,1,0,2,4,,2,5,Washtenaw,Ave,1427706,7.074,7.147,0,1.573696,8,4.5,0.15737,0.15737,0.15737,0.15737,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.158261,0.157374,0.15737,0.15737,0.158261,0.157374,0.161328,0.15737,0.15737,0.15737,0.161328,0.15737,0.237625,0.157414,0.15737,0.15737,0.237625,0.157414,0.15737,0.15737,0.15737,0.15737,0.15737,0.15737,,,,,,,0.158261,0.157374,0.161328,0.15737,0.237625,0.157414,0.15737,0.15737,0.15737,0.15737,0.060697,0.060431,0.061617,0.06043,0.084507,0.060443,0.06043,0.06043,0.031684,0.031684,27.842275,27.999301,27.31302,27.999868,18.543252,27.992025,28,28,28,28,,,,,,,,,,,2408,2408,0.15737,0.15737,0.15737,0.15737,0.15737,0.15737,0.15737,0.15737,0.06043,0.06043,28,28,, +25532,0,0.188021,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.029028,0.15,4,1.128128,1.128128,1.128128,1.128128,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,,,,,,,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,0.372282,0.372282,0.372282,0.372282,0.372282,0.372282,0.372282,0.372282,0.189902,0.189902,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,1.128128,0.372282,0.372282,10,10,, +30069,0,0.12303,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.636363,0.15,4,0.738182,0.738182,0.738182,0.738182,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,,,,,,,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.2436,0.2436,0.2436,0.2436,0.2436,0.2436,0.2436,0.2436,0.124261,0.124261,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.738182,0.2436,0.2436,10,10,, +26785,0,0.063659,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.364113,0.15,4,0.381952,0.381952,0.381952,0.381952,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,,,,,,,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.126044,0.126044,0.126044,0.126044,0.126044,0.126044,0.126044,0.126044,0.064295,0.064295,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.381952,0.126044,0.126044,10,10,, +9592,-1,0.097321,0,3,0,2,3,,2,5,Huron,St,1428010,0.574,0.671,0,2.085441,6,5,,0.194641,,0.194641,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.251674,,0.194641,,0.251674,,0.197307,,0.194641,,0.197307,,0.206905,,0.194641,,0.206905,,0.194641,,0.194641,,0.194641,,,,,,,,0.251674,,0.197307,,0.206905,,0.194641,,0.194641,,0.09302,,0.07671,,0.079589,,0.07591,,0.039901,,23.201602,,29.594635,,28.221884,,30,,30,,,,,,,,,,,,8256,,0.194641,,0.194641,,0.194641,,0.194641,,0.07591,,30,, +25530,0,0.095222,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.040465,0.15,4,0.57133,0.57133,0.57133,0.57133,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,,,,,,,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.188539,0.188539,0.188539,0.188539,0.188539,0.188539,0.188539,0.188539,0.096174,0.096174,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.57133,0.188539,0.188539,10,10,, +9594,-1,0.075797,0,3,0,2,3,,2,5,Huron,St,1428010,0.421,0.497,0,1.624219,6,5,,0.151594,,0.151594,,30,,24000,,5448,,12000,,7742,,8256,,8246,,0.215236,,0.151594,,0.215236,,0.15751,,0.151594,,0.15751,,0.193443,,0.151594,,0.193443,,0.151594,,0.151594,,0.151594,,,,,,,,0.215236,,0.15751,,0.193443,,0.151594,,0.151594,,0.078214,,0.060896,,0.071676,,0.059122,,0.031077,,21.129445,,28.873257,,23.509813,,30,,30,,,,,,,,,,,,8256,,0.151594,,0.151594,,0.151594,,0.151594,,0.059122,,30,, +9775,0,0.076169,1,1,0,2,4,,2,5,Cross,St,1428902,2.433,2.508,0,1.632185,8,4.5,0.163219,0.163219,0.163219,0.163219,28,28,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.164758,0.350591,0.163219,0.163219,0.164758,0.350591,0.174409,0.203138,0.163219,0.163219,0.174409,0.203138,0.271254,0.292528,0.163219,0.163219,0.271254,0.292528,0.163219,0.163219,0.163219,0.163219,0.163219,0.163219,,,,,,,0.164758,0.350591,0.174409,0.203138,0.271254,0.292528,0.163219,0.163219,0.163219,0.163219,0.063138,0.118888,0.066033,0.074652,0.095086,0.101469,0.062676,0.062676,0.032861,0.032861,27.738427,13.035468,26.203527,22.497599,16.848133,15.622832,28,28,28,28,,,,,,,,,,,2408,2408,0.163219,0.163219,0.163219,0.163219,0.163219,0.163219,0.163219,0.163219,0.062676,0.062676,28,28,, +9746,0,0.066966,1,1,0,2,4,,3,5,Cross,St,1428902,2.583,2.65,0,1.434993,6,4.5,0.121757,0.121757,0.121757,0.121757,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.122061,0.202416,0.121757,0.121757,0.122061,0.202416,0.125875,0.136738,0.121757,0.121757,0.125875,0.136738,0.160425,0.170378,0.121757,0.121757,0.160425,0.170378,0.121757,0.121757,0.121757,0.121757,0.121757,0.121757,,,,,,,0.122061,0.202416,0.125875,0.136738,0.160425,0.170378,0.121757,0.121757,0.121757,0.121757,0.048672,0.072779,0.049816,0.053075,0.060181,0.063167,0.048581,0.048581,0.02563,0.02563,32.917874,19.850084,31.920348,29.384443,25.045887,23.58274,33,33,33,33,,,,,,,,,,,2580,2580,0.121757,0.121757,0.121757,0.121757,0.121757,0.121757,0.121757,0.121757,0.048581,0.048581,33,33,, +9793,0,0.22035,1,1,0,2,5,,3,5,River,St,1428102,0.18,0.4,0,4.721779,8,4.5,0.528839,0.528839,0.528839,0.528839,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.528896,0.52887,0.528839,0.528839,0.528896,0.52887,0.528839,0.528839,0.528839,0.528839,0.528839,0.528839,0.53052,0.529114,0.528839,0.528839,0.53052,0.529114,0.528839,0.528839,0.528839,0.528839,0.528839,0.528839,,,,,,,0.528896,0.52887,0.528839,0.528839,0.53052,0.529114,0.528839,0.528839,0.528839,0.528839,0.198332,0.198324,0.198315,0.198315,0.198819,0.198397,0.198315,0.198315,0.103564,0.103564,24.997321,24.998563,25,24.999992,24.920809,24.986997,25,25,25,25,,,,,,,,,,,2408,2408,0.528839,0.528839,0.528839,0.528839,0.528839,0.528839,0.528839,0.528839,0.198315,0.198315,25,25,, +25531,0,0.162544,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.483082,0.15,4,0.975263,0.975263,0.975263,0.975263,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,,,,,,,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.321837,0.321837,0.321837,0.321837,0.321837,0.321837,0.321837,0.321837,0.164169,0.164169,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.975263,0.321837,0.321837,10,10,, +26774,0,0.067004,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.435804,0.15,4,0.402025,0.402025,0.402025,0.402025,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,,,,,,,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.132668,0.132668,0.132668,0.132668,0.132668,0.132668,0.132668,0.132668,0.067674,0.067674,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.402025,0.132668,0.132668,10,10,, +9491,0,0.035127,1,1,0,2,4,,3,5,Cross,St,1428902,2.65,2.685,0,0.752718,6,4.5,0.063867,0.063867,0.063867,0.063867,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.064024,0.100142,0.063867,0.063867,0.064024,0.100142,0.065991,0.070027,0.063867,0.063867,0.065991,0.070027,0.082436,0.083028,0.063867,0.063867,0.082436,0.083028,0.063867,0.063867,0.063867,0.063867,0.063867,0.063867,,,,,,,0.064024,0.100142,0.065991,0.070027,0.082436,0.083028,0.063867,0.063867,0.063867,0.063867,0.02553,0.036366,0.02612,0.027331,0.031054,0.031231,0.025483,0.025483,0.013444,0.013444,32.918869,21.046133,31.937909,30.096941,25.566571,25.384254,33,33,33,33,,,,,,,,,,,2580,2580,0.063867,0.063867,0.063867,0.063867,0.063867,0.063867,0.063867,0.063867,0.025483,0.025483,33,33,, +9778,0,0.260242,1,1,0,2,5,,3,5,River,St,1428102,0.65,0.91,0,5.576609,8,4.5,0.62458,0.62458,0.62458,0.62458,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.624583,0.625172,0.62458,0.62458,0.624583,0.625172,0.624582,0.624582,0.62458,0.62458,0.624582,0.624582,0.624609,0.625545,0.62458,0.62458,0.624609,0.625545,0.62458,0.62458,0.62458,0.62458,0.62458,0.62458,,,,,,,0.624583,0.625172,0.624582,0.624582,0.624609,0.625545,0.62458,0.62458,0.62458,0.62458,0.234218,0.234395,0.234218,0.234218,0.234226,0.234507,0.234218,0.234218,0.122314,0.122314,24.999907,24.976322,24.999937,24.999928,24.99884,24.961448,25,25,25,25,,,,,,,,,,,2408,2408,0.62458,0.62458,0.62458,0.62458,0.62458,0.62458,0.62458,0.62458,0.234218,0.234218,25,25,, +9812,0,0.123708,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.514,0.637,0,2.650894,6,4.5,0.224924,0.224924,0.224924,0.224924,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.231572,0.425407,0.224924,0.224924,0.231572,0.425407,0.231225,0.272842,0.224924,0.224924,0.231225,0.272842,0.279252,0.314492,0.224924,0.224924,0.279252,0.314492,0.224924,0.224924,0.224924,0.224924,0.224924,0.224924,,,,,,,0.231572,0.425407,0.231225,0.272842,0.279252,0.314492,0.224924,0.224924,0.224924,0.224924,0.091739,0.14989,0.091635,0.10412,0.106043,0.116615,0.089745,0.089745,0.047347,0.047347,32.052644,17.447995,32.100785,27.20439,26.57992,23.601558,33,33,33,33,,,,,,,,,,,2838,2838,0.224924,0.224924,0.224924,0.224924,0.224924,0.224924,0.224924,0.224924,0.089745,0.089745,33,33,, +9843,-1,0.116148,0,2,0,2,4,,3,5,Huron,St,1428010,0.07,0.186,0,2.488884,6,4.5,,0.211178,,0.211178,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.340875,,0.211178,,0.340875,,0.232231,,0.211178,,0.232231,,0.23454,,0.211178,,0.23454,,0.211178,,0.211178,,0.211178,,,,,,,,0.340875,,0.232231,,0.23454,,0.211178,,0.211178,,0.123169,,0.090576,,0.091269,,0.08426,,0.044453,,20.444069,,30.008405,,29.712981,,33,,33,,,,,,,,,,,,5160,,0.211178,,0.211178,,0.211178,,0.211178,,0.08426,,33,, +26800,0,0.14261,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.055925,0.15,4,0.855659,0.855659,0.855659,0.855659,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,,,,,,,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.282367,0.282367,0.282367,0.282367,0.282367,0.282367,0.282367,0.282367,0.144036,0.144036,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.855659,0.282367,0.282367,10,10,, +10025,0,0.125191,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.389,0.514,0,2.68266,8,4.5,0.268266,0.268266,0.268266,0.268266,28,28,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.283903,0.731508,0.268266,0.268266,0.283903,0.731508,0.283938,0.382843,0.268266,0.268266,0.283938,0.382843,0.404912,0.485552,0.268266,0.268266,0.404912,0.485552,0.268266,0.268266,0.268266,0.268266,0.268266,0.268266,,,,,,,0.283903,0.731508,0.283938,0.382843,0.404912,0.485552,0.268266,0.268266,0.268266,0.268266,0.107705,0.241987,0.107716,0.137387,0.144008,0.1682,0.103014,0.103014,0.054011,0.054011,26.457818,10.268444,26.454552,19.620187,18.550831,15.46993,28,28,28,28,,,,,,,,,,,2649,2649,0.268266,0.268266,0.268266,0.268266,0.268266,0.268266,0.268266,0.268266,0.103014,0.103014,28,28,, +9600,-1,0.063134,0,2,0,2,4,,2,5,Huron,St,1428010,0.186,0.249,0,1.352868,8,4.5,,0.135287,,0.135287,,28,,14000,,3178,,7000,,4516,,4816,,4810,,0.159024,,0.135287,,0.159024,,0.138616,,0.135287,,0.138616,,0.142239,,0.135287,,0.142239,,0.135287,,0.135287,,0.135287,,,,,,,,0.159024,,0.138616,,0.142239,,0.135287,,0.135287,,0.059071,,0.052949,,0.054036,,0.05195,,0.027238,,23.820467,,27.327571,,26.631424,,28,,28,,,,,,,,,,,,4816,,0.135287,,0.135287,,0.135287,,0.135287,,0.05195,,28,, +9546,0,0.106604,1,1,0,2,5,,3,5,River,St,1428102,0.543,0.65,0,2.284367,8,4.5,0.255849,0.255849,0.255849,0.255849,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.255862,0.255875,0.255849,0.255849,0.255862,0.255875,0.255856,0.25585,0.255849,0.255849,0.255856,0.25585,0.258855,0.256593,0.255849,0.255849,0.258855,0.256593,0.255849,0.255849,0.255849,0.255849,0.255849,0.255849,,,,,,,0.255862,0.255875,0.255856,0.25585,0.258855,0.256593,0.255849,0.255849,0.255849,0.255849,0.095947,0.095951,0.095945,0.095944,0.096845,0.096167,0.095943,0.095943,0.050104,0.050104,24.998691,24.997486,24.999363,24.999937,24.709691,24.927503,25,25,25,25,,,,,,,,,,,2408,2408,0.255849,0.255849,0.255849,0.255849,0.255849,0.255849,0.255849,0.255849,0.095943,0.095943,25,25,, +9568,0,0.079514,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.637,0.717,0,1.703863,6,4.5,0.14457,0.14457,0.14457,0.14457,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.148843,0.273431,0.14457,0.14457,0.148843,0.273431,0.14862,0.175369,0.14457,0.14457,0.14862,0.175369,0.179489,0.20214,0.14457,0.14457,0.179489,0.20214,0.14457,0.14457,0.14457,0.14457,0.14457,0.14457,,,,,,,0.148843,0.273431,0.14862,0.175369,0.179489,0.20214,0.14457,0.14457,0.14457,0.14457,0.058965,0.096342,0.058898,0.066923,0.068159,0.074954,0.057683,0.057683,0.030432,0.030432,32.052644,17.447995,32.100785,27.20439,26.57992,23.601558,33,33,33,33,,,,,,,,,,,2838,2838,0.14457,0.14457,0.14457,0.14457,0.14457,0.14457,0.14457,0.14457,0.057683,0.057683,33,33,, +26799,0,0.117307,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.513719,0.15,4,0.703841,0.703841,0.703841,0.703841,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,,,,,,,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.232268,0.232268,0.232268,0.232268,0.232268,0.232268,0.232268,0.232268,0.11848,0.11848,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.703841,0.232268,0.232268,10,10,, +9782,0,0.018567,1,1,0,2,5,,3,5,River,St,1428102,0.525,0.543,0,0.39786,8,4.5,0.04456,0.04456,0.04456,0.04456,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.044563,0.044565,0.04456,0.04456,0.044563,0.044565,0.044561,0.04456,0.04456,0.04456,0.044561,0.04456,0.045084,0.04469,0.04456,0.04456,0.045084,0.04469,0.04456,0.04456,0.04456,0.04456,0.04456,0.04456,,,,,,,0.044563,0.044565,0.044561,0.04456,0.045084,0.04469,0.04456,0.04456,0.04456,0.04456,0.016711,0.016711,0.01671,0.01671,0.016867,0.016749,0.01671,0.01671,0.008726,0.008726,24.998691,24.997486,24.999363,24.999937,24.709691,24.927503,25,25,25,25,,,,,,,,,,,2408,2408,0.04456,0.04456,0.04456,0.04456,0.04456,0.04456,0.04456,0.04456,0.01671,0.01671,25,25,, +11373,0,0.362632,1,1,0,2,5,,3,5,Clark,Rd,1435902,0.4,0.763,0,7.77069,8,4.5,0.870317,0.870317,0.870317,0.870317,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.870327,0.990447,0.870317,0.870317,0.870327,0.990447,0.870422,0.870543,0.870317,0.870317,0.870422,0.870543,0.992629,0.871133,0.870317,0.870317,0.992629,0.871133,0.870317,0.870317,0.870317,0.870317,0.870317,0.870317,,,,,,,0.870327,0.990447,0.870422,0.870543,0.992629,0.871133,0.870317,0.870317,0.870317,0.870317,0.326372,0.362408,0.3264,0.326437,0.363063,0.326614,0.326369,0.326369,0.170437,0.170437,24.999715,21.967796,24.997004,24.99352,21.919496,24.976582,25,25,25,25,,,,,,,,,,,2408,2408,0.870317,0.870317,0.870317,0.870317,0.870317,0.870317,0.870317,0.870317,0.326369,0.326369,25,25,, +26760,0,0.527565,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.304968,0.15,4,2.110261,2.110261,2.110261,2.110261,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,,,,,,,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,0.72804,0.72804,0.72804,0.72804,0.72804,0.72804,0.72804,0.72804,0.374571,0.374571,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,2.110261,0.72804,0.72804,15,15,, +26781,0,0.220501,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.72502,0.15,4,1.323006,1.323006,1.323006,1.323006,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,,,,,,,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,0.436592,0.436592,0.436592,0.436592,0.436592,0.436592,0.436592,0.436592,0.222706,0.222706,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,1.323006,0.436592,0.436592,10,10,, +10706,0,0.165087,1,1,0,2,5,,3,5,Leforge,Rd,1435809,0.127,0.292,0,3.537573,8,4.5,0.396208,0.396208,0.396208,0.396208,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.396315,0.446089,0.396208,0.396208,0.396315,0.446089,0.396855,0.397498,0.396208,0.396208,0.396855,0.397498,0.448185,0.399664,0.396208,0.396208,0.448185,0.399664,0.396208,0.396208,0.396208,0.396208,0.396208,0.396208,,,,,,,0.396315,0.446089,0.396855,0.397498,0.448185,0.399664,0.396208,0.396208,0.396208,0.396208,0.14861,0.163542,0.148772,0.148965,0.164171,0.149615,0.148578,0.148578,0.077591,0.077591,24.993271,22.204538,24.959256,24.918882,22.10069,24.783818,25,25,25,25,,,,,,,,,,,2408,2408,0.396208,0.396208,0.396208,0.396208,0.396208,0.396208,0.396208,0.396208,0.148578,0.148578,25,25,, +26778,0,0.291426,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.244853,0.15,4,1.748559,1.748559,1.748559,1.748559,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,,,,,,,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,0.577024,0.577024,0.577024,0.577024,0.577024,0.577024,0.577024,0.577024,0.294341,0.294341,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,1.748559,0.577024,0.577024,10,10,, +11401,0,0.093287,1,1,0,2,5,,3,5,Leforge,Rd,1435809,0.034,0.127,0,1.999006,8,4.5,0.223889,0.223889,0.223889,0.223889,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.224255,0.351434,0.223889,0.223889,0.224255,0.351434,0.226235,0.227425,0.223889,0.223889,0.226235,0.227425,0.369117,0.232256,0.223889,0.223889,0.369117,0.232256,0.223889,0.223889,0.223889,0.223889,0.223889,0.223889,,,,,,,0.224255,0.351434,0.226235,0.227425,0.369117,0.232256,0.223889,0.223889,0.223889,0.223889,0.084068,0.122222,0.084662,0.085019,0.127527,0.086469,0.083958,0.083958,0.043845,0.043845,24.959157,15.926773,24.74076,24.611258,15.163798,24.099304,25,25,25,25,,,,,,,,,,,2408,2408,0.223889,0.223889,0.223889,0.223889,0.223889,0.223889,0.223889,0.223889,0.083958,0.083958,25,25,, +11414,0,0.034018,1,1,0,2,5,,3,5,Leforge,Rd,1435809,0,0.034,0,0.728967,8,4.5,0.081644,0.081644,0.081644,0.081644,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.081794,0.133478,0.081644,0.081644,0.081794,0.133478,0.082605,0.083147,0.081644,0.081644,0.082605,0.083147,0.1376,0.085167,0.081644,0.081644,0.1376,0.085167,0.081644,0.081644,0.081644,0.081644,0.081644,0.081644,,,,,,,0.081794,0.133478,0.082605,0.083147,0.1376,0.085167,0.081644,0.081644,0.081644,0.081644,0.030662,0.046167,0.030905,0.031067,0.047403,0.031673,0.030617,0.030617,0.015989,0.015989,24.954207,15.291754,24.70938,24.548167,14.83358,23.965976,25,25,25,25,,,,,,,,,,,2408,2408,0.081644,0.081644,0.081644,0.081644,0.081644,0.081644,0.081644,0.081644,0.030617,0.030617,25,25,, +11381,0,0.112682,2,2,0,2,5,,3,5,Leforge,Rd,1435809,0.3,0.412,0,2.414613,8,4.5,0.270437,0.270437,0.270437,0.270437,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.270451,0.272287,0.270437,0.270437,0.270451,0.272287,0.27047,0.270491,0.270437,0.270437,0.27047,0.270491,0.272476,0.270636,0.270437,0.270437,0.272476,0.270636,0.270437,0.270437,0.270437,0.270437,0.270437,0.270437,,,,,,,0.270451,0.272287,0.27047,0.270491,0.272476,0.270636,0.270437,0.270437,0.270437,0.270437,0.101418,0.101969,0.101424,0.10143,0.102025,0.101474,0.101414,0.101414,0.052961,0.052961,24.998706,24.830157,24.996918,24.994988,24.812908,24.981554,25,25,25,25,,,,,,,,,,,4816,4816,0.270437,0.270437,0.270437,0.270437,0.270437,0.270437,0.270437,0.270437,0.101414,0.101414,25,25,, +11389,0,0.00719,2,2,0,2,5,,3,5,Leforge,Rd,1435809,0.292,0.3,0,0.154065,8,4.5,0.017255,0.017255,0.017255,0.017255,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.017255,0.017351,0.017255,0.017255,0.017255,0.017351,0.017256,0.017258,0.017255,0.017255,0.017256,0.017258,0.017355,0.017262,0.017255,0.017255,0.017355,0.017262,0.017255,0.017255,0.017255,0.017255,0.017255,0.017255,,,,,,,0.017255,0.017351,0.017256,0.017258,0.017355,0.017262,0.017255,0.017255,0.017255,0.017255,0.006471,0.0065,0.006471,0.006471,0.006501,0.006473,0.006471,0.006471,0.003379,0.003379,24.999703,24.861673,24.998197,24.996404,24.855894,24.990366,25,25,25,25,,,,,,,,,,,4816,4816,0.017255,0.017255,0.017255,0.017255,0.017255,0.017255,0.017255,0.017255,0.006471,0.006471,25,25,, +9480,0,0.219799,2,2,1,2,4,,3,5,Ecorse,Rd,1428108,0,0.22,0,4.709976,6,4.5,0.399634,0.399634,0.399634,0.399634,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.399909,0.423286,0.399634,0.399634,0.399909,0.423286,0.400149,0.400076,0.399634,0.399634,0.400149,0.400076,0.408792,0.403452,0.399634,0.399634,0.408792,0.403452,0.399634,0.399634,0.399634,0.399634,0.399634,0.399634,,,,,,,0.399909,0.423286,0.400149,0.400076,0.408792,0.403452,0.399634,0.399634,0.399634,0.399634,0.159536,0.16655,0.159608,0.159587,0.162202,0.160599,0.159454,0.159454,0.084123,0.084123,32.977363,31.156059,32.957575,32.963579,32.260701,32.687723,33,33,33,33,,,,,,,,,,,5418,5418,0.399634,0.399634,0.399634,0.399634,0.399634,0.399634,0.399634,0.399634,0.159454,0.159454,33,33,, +9669,0,0.043509,1,1,0,2,4,,3,5,Cross,St,1428902,3.151,3.195,0,0.932338,6,4.5,0.079107,0.079107,0.079107,0.079107,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.079431,0.127214,0.079107,0.079107,0.079431,0.127214,0.07962,0.085294,0.079107,0.079107,0.07962,0.085294,0.090299,0.104011,0.079107,0.079107,0.090299,0.104011,0.079107,0.079107,0.079107,0.079107,0.079107,0.079107,,,,,,,0.079431,0.127214,0.07962,0.085294,0.090299,0.104011,0.079107,0.079107,0.079107,0.079107,0.031661,0.045996,0.031718,0.03342,0.034921,0.039035,0.031564,0.031564,0.016652,0.016652,32.865534,20.520953,32.787514,30.606302,28.9101,25.09882,33,33,33,33,,,,,,,,,,,2580,2580,0.079107,0.079107,0.079107,0.079107,0.079107,0.079107,0.079107,0.079107,0.031564,0.031564,33,33,, +9918,0,0.11407,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.49,2.604,0,2.444352,5,5,0.195548,0.195548,0.195548,0.195548,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.196793,0.1968,0.195548,0.195548,0.196793,0.1968,0.19591,0.19565,0.195548,0.195548,0.19591,0.19565,0.199781,0.196697,0.195548,0.195548,0.199781,0.196697,0.195548,0.195548,0.195548,0.195548,0.195548,0.195548,,,,,,,0.196793,0.1968,0.19591,0.19565,0.199781,0.196697,0.195548,0.195548,0.195548,0.195548,0.07957,0.079573,0.079305,0.079228,0.080467,0.079542,0.079197,0.079197,0.04188,0.04188,34.778647,34.777285,34.935427,34.981798,34.258403,34.795559,35,35,35,35,,,,,,,,,,,7946,7946,0.195548,0.195548,0.195548,0.195548,0.195548,0.195548,0.195548,0.195548,0.079197,0.079197,35,35,, +10107,0,0.264455,1,1,0,2,4,,4,5,Cross,St,1428902,3.195,3.459,0,5.666893,4.5,4.5,0.417561,0.417561,0.417561,0.417561,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.418146,0.50294,0.417561,0.417561,0.418146,0.50294,0.418514,0.428723,0.417561,0.417561,0.418514,0.428723,0.438163,0.461967,0.417561,0.417561,0.438163,0.461967,0.417561,0.417561,0.417561,0.417561,0.417561,0.417561,,,,,,,0.418146,0.50294,0.418514,0.428723,0.438163,0.461967,0.417561,0.417561,0.417561,0.417561,0.173046,0.198484,0.173156,0.176219,0.179051,0.186192,0.17287,0.17287,0.091724,0.091724,37.946787,31.549097,37.913471,37.010605,36.213237,34.347224,38,38,38,38,,,,,,,,,,,3096,3096,0.417561,0.417561,0.417561,0.417561,0.417561,0.417561,0.417561,0.417561,0.17287,0.17287,38,38,, +10414,0,0.141159,1,1,0,2,5,,3,5,Miles,St,1428110,0,0.141,0,3.024843,8,4.5,0.338782,0.338782,0.338782,0.338782,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.338786,0.338784,0.338782,0.338782,0.338786,0.338784,0.338783,0.338783,0.338782,0.338782,0.338783,0.338783,0.338787,0.338784,0.338782,0.338782,0.338787,0.338784,0.338782,0.338782,0.338782,0.338782,0.338782,0.338782,,,,,,,0.338786,0.338784,0.338783,0.338783,0.338787,0.338784,0.338782,0.338782,0.338782,0.338782,0.127044,0.127044,0.127043,0.127044,0.127045,0.127044,0.127043,0.127043,0.066345,0.066345,24.999749,24.999852,24.999988,24.999971,24.999631,24.999863,25,25,25,25,,,,,,,,,,,2408,2408,0.338782,0.338782,0.338782,0.338782,0.338782,0.338782,0.338782,0.338782,0.127043,0.127043,25,25,, +10425,0,0.143597,1,1,0,2,4,,3,5,Prospect,St,1428106,0.954,1.098,0,3.077087,6,4.5,0.261086,0.261086,0.261086,0.261086,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.307444,0.290049,0.261086,0.261086,0.307444,0.290049,0.287369,0.271866,0.261086,0.261086,0.287369,0.271866,0.356144,0.325996,0.261086,0.261086,0.356144,0.325996,0.261086,0.261086,0.261086,0.261086,0.261086,0.261086,,,,,,,0.307444,0.290049,0.287369,0.271866,0.356144,0.325996,0.261086,0.261086,0.261086,0.261086,0.118081,0.112862,0.112058,0.107407,0.132691,0.123646,0.104173,0.104173,0.054959,0.054959,28.024069,29.704822,29.98178,31.691478,24.192003,26.429283,33,33,33,33,,,,,,,,,,,2580,2580,0.261086,0.261086,0.261086,0.261086,0.261086,0.261086,0.261086,0.261086,0.104173,0.104173,33,33,, +11512,0,0.195138,1,1,0,2,5,,3,5,Holmes,Rd,1435108,0.453,0.648,0,4.18153,8,4.5,0.468331,0.468331,0.468331,0.468331,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.468352,0.468469,0.468331,0.468331,0.468352,0.468469,0.46841,0.468457,0.468331,0.468331,0.46841,0.468457,0.468763,0.468549,0.468331,0.468331,0.468763,0.468549,0.468331,0.468331,0.468331,0.468331,0.468331,0.468331,,,,,,,0.468352,0.468469,0.46841,0.468457,0.468763,0.468549,0.468331,0.468331,0.468331,0.468331,0.17563,0.175666,0.175648,0.175662,0.175754,0.17569,0.175624,0.175624,0.091715,0.091715,24.998922,24.992634,24.99578,24.993282,24.976964,24.98837,25,25,25,25,,,,,,,,,,,2408,2408,0.468331,0.468331,0.468331,0.468331,0.468331,0.468331,0.468331,0.468331,0.175624,0.175624,25,25,, +26805,0,0.157977,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.38522,0.15,4,0.947861,0.947861,0.947861,0.947861,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,,,,,,,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.312794,0.312794,0.312794,0.312794,0.312794,0.312794,0.312794,0.312794,0.159557,0.159557,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.947861,0.312794,0.312794,10,10,, +26806,0,0.192466,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.124267,0.15,4,1.154795,1.154795,1.154795,1.154795,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,,,,,,,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,0.381082,0.381082,0.381082,0.381082,0.381082,0.381082,0.381082,0.381082,0.19439,0.19439,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,1.154795,0.381082,0.381082,10,10,, +26812,0,0.237687,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.093291,0.15,4,1.426122,1.426122,1.426122,1.426122,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,,,,,,,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,0.47062,0.47062,0.47062,0.47062,0.47062,0.47062,0.47062,0.47062,0.240064,0.240064,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,1.426122,0.47062,0.47062,10,10,, +9656,0,0.121459,1,1,0,2,4,,3,5,Prospect,St,1428106,0.614,0.735,0,2.602699,6,4.5,0.220835,0.220835,0.220835,0.220835,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.260942,0.272019,0.220835,0.220835,0.260942,0.272019,0.23358,0.230798,0.220835,0.220835,0.23358,0.230798,0.288763,0.306049,0.220835,0.220835,0.288763,0.306049,0.220835,0.220835,0.220835,0.220835,0.220835,0.220835,,,,,,,0.260942,0.272019,0.23358,0.230798,0.288763,0.306049,0.220835,0.220835,0.220835,0.220835,0.100145,0.103468,0.091937,0.091102,0.108492,0.113677,0.088113,0.088113,0.046486,0.046486,27.92783,26.790653,31.199428,31.575535,25.23716,23.811699,33,33,33,33,,,,,,,,,,,2580,2580,0.220835,0.220835,0.220835,0.220835,0.220835,0.220835,0.220835,0.220835,0.088113,0.088113,33,33,, +9803,0,0.179652,1,1,0,2,4,,3,5,Cross,St,1428902,2.807,2.987,0,3.849676,6,4.5,0.326639,0.326639,0.326639,0.326639,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.327555,0.483649,0.326639,0.326639,0.327555,0.483649,0.332315,0.351424,0.326639,0.326639,0.332315,0.351424,0.399692,0.394089,0.326639,0.326639,0.399692,0.394089,0.326639,0.326639,0.326639,0.326639,0.326639,0.326639,,,,,,,0.327555,0.483649,0.332315,0.351424,0.399692,0.394089,0.326639,0.326639,0.326639,0.326639,0.130604,0.177432,0.132032,0.137764,0.152245,0.150564,0.130329,0.130329,0.068758,0.068758,32.907774,22.287014,32.436383,30.672646,26.96853,27.351936,33,33,33,33,,,,,,,,,,,2580,2580,0.326639,0.326639,0.326639,0.326639,0.326639,0.326639,0.326639,0.326639,0.130329,0.130329,33,33,, +9919,0,0.093247,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.289,2.382,0,1.99814,5,5,0.159851,0.159851,0.159851,0.159851,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.163365,0.178657,0.159851,0.159851,0.163365,0.178657,0.161804,0.160437,0.159851,0.159851,0.161804,0.160437,0.175826,0.165918,0.159851,0.159851,0.175826,0.165918,0.159851,0.159851,0.159851,0.159851,0.159851,0.159851,,,,,,,0.163365,0.178657,0.161804,0.160437,0.175826,0.165918,0.159851,0.159851,0.159851,0.159851,0.065794,0.070382,0.065325,0.064916,0.069532,0.06656,0.06474,0.06474,0.034235,0.034235,34.247221,31.315792,34.577656,34.872152,31.820131,33.720212,35,35,35,35,,,,,,,,,,,7946,7946,0.159851,0.159851,0.159851,0.159851,0.159851,0.159851,0.159851,0.159851,0.06474,0.06474,35,35,, +25516,0,0.162696,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.486349,0.15,4,0.976178,0.976178,0.976178,0.976178,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,,,,,,,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.322139,0.322139,0.322139,0.322139,0.322139,0.322139,0.322139,0.322139,0.164323,0.164323,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.976178,0.322139,0.322139,10,10,, +29935,0,0.186378,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.993806,0.15,4,1.118266,1.118266,1.118266,1.118266,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,,,,,,,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,0.369028,0.369028,0.369028,0.369028,0.369028,0.369028,0.369028,0.369028,0.188241,0.188241,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,1.118266,0.369028,0.369028,10,10,, +9733,0,0.114535,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.174,2.289,0,2.454322,5,5,0.196346,0.196346,0.196346,0.196346,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.207165,0.241059,0.196346,0.196346,0.207165,0.241059,0.204824,0.199481,0.196346,0.196346,0.204824,0.199481,0.246535,0.21486,0.196346,0.196346,0.246535,0.21486,0.196346,0.196346,0.196346,0.196346,0.196346,0.196346,,,,,,,0.207165,0.241059,0.204824,0.199481,0.246535,0.21486,0.196346,0.196346,0.196346,0.196346,0.082766,0.092934,0.082064,0.080461,0.094577,0.085074,0.07952,0.07952,0.042051,0.042051,33.17207,28.507995,33.551172,34.449865,27.874796,31.984103,35,35,35,35,,,,,,,,,,,7946,7946,0.196346,0.196346,0.196346,0.196346,0.196346,0.196346,0.196346,0.196346,0.07952,0.07952,35,35,, +9777,0,0.122173,1,1,0,2,4,,3,5,Grove,St,1428105,0.34,0.462,0,2.617983,6,4.5,0.222132,0.222132,0.222132,0.222132,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.223997,0.223841,0.222132,0.222132,0.223997,0.223841,0.22556,0.22468,0.222132,0.222132,0.22556,0.22468,0.238098,0.229471,0.222132,0.222132,0.238098,0.229471,0.222132,0.222132,0.222132,0.222132,0.222132,0.222132,,,,,,,0.223997,0.223841,0.22556,0.22468,0.238098,0.229471,0.222132,0.222132,0.222132,0.222132,0.08919,0.089143,0.089659,0.089395,0.093421,0.090832,0.088631,0.088631,0.046759,0.046759,32.725218,32.748,32.498499,32.625799,30.787067,31.94455,33,33,33,33,,,,,,,,,,,2580,2580,0.222132,0.222132,0.222132,0.222132,0.222132,0.222132,0.222132,0.222132,0.088631,0.088631,33,33,, +25497,0,0.153111,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.280951,0.15,4,0.918666,0.918666,0.918666,0.918666,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,,,,,,,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.30316,0.30316,0.30316,0.30316,0.30316,0.30316,0.30316,0.30316,0.154642,0.154642,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.918666,0.30316,0.30316,10,10,, +25498,0,0.186838,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.003672,0.15,4,1.121028,1.121028,1.121028,1.121028,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,,,,,,,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,0.369939,0.369939,0.369939,0.369939,0.369939,0.369939,0.369939,0.369939,0.188706,0.188706,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,1.121028,0.369939,0.369939,10,10,, +25514,0,0.179945,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.855965,0.15,4,1.07967,1.07967,1.07967,1.07967,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,,,,,,,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,0.356291,0.356291,0.356291,0.356291,0.356291,0.356291,0.356291,0.356291,0.181744,0.181744,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,1.07967,0.356291,0.356291,10,10,, +9726,0,0.108095,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.382,2.49,0,2.316328,5,5,0.185306,0.185306,0.185306,0.185306,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.191161,0.208702,0.185306,0.185306,0.191161,0.208702,0.188055,0.186408,0.185306,0.185306,0.188055,0.186408,0.21154,0.195443,0.185306,0.185306,0.21154,0.195443,0.185306,0.185306,0.185306,0.185306,0.185306,0.185306,,,,,,,0.191161,0.208702,0.188055,0.186408,0.21154,0.195443,0.185306,0.185306,0.185306,0.185306,0.076806,0.082068,0.075874,0.07538,0.082919,0.07809,0.075049,0.075049,0.039686,0.039686,33.928004,31.076383,34.488435,34.793088,30.659606,33.184771,35,35,35,35,,,,,,,,,,,7946,7946,0.185306,0.185306,0.185306,0.185306,0.185306,0.185306,0.185306,0.185306,0.075049,0.075049,35,35,, +10443,0,0.11837,1,1,0,2,4,,3,5,Prospect,St,1428106,0.495,0.614,0,2.536494,6,4.5,0.215218,0.215218,0.215218,0.215218,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.246452,0.237407,0.215218,0.215218,0.246452,0.237407,0.225856,0.228638,0.215218,0.215218,0.225856,0.228638,0.246748,0.251224,0.215218,0.215218,0.246748,0.251224,0.215218,0.215218,0.215218,0.215218,0.215218,0.215218,,,,,,,0.246452,0.237407,0.225856,0.228638,0.246748,0.251224,0.215218,0.215218,0.215218,0.215218,0.095242,0.092529,0.089063,0.089898,0.095331,0.096674,0.085872,0.085872,0.045303,0.045303,28.817703,29.915628,31.44568,31.062946,28.783171,28.270341,33,33,33,33,,,,,,,,,,,2580,2580,0.215218,0.215218,0.215218,0.215218,0.215218,0.215218,0.215218,0.215218,0.085872,0.085872,33,33,, +24592,0,0.146076,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.130203,0.15,4,0.876457,0.876457,0.876457,0.876457,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,,,,,,,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.289231,0.289231,0.289231,0.289231,0.289231,0.289231,0.289231,0.289231,0.147537,0.147537,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.876457,0.289231,0.289231,10,10,, +30042,0,0.056619,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.213258,0.15,4,0.339712,0.339712,0.339712,0.339712,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,,,,,,,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.112105,0.112105,0.112105,0.112105,0.112105,0.112105,0.112105,0.112105,0.057185,0.057185,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.339712,0.112105,0.112105,10,10,, +9886,0,0.164584,1,1,0,2,4,,3,5,Cross,St,1428902,2.987,3.151,0,3.526801,6,4.5,0.299244,0.299244,0.299244,0.299244,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.300405,0.479017,0.299244,0.299244,0.300405,0.479017,0.301064,0.322032,0.299244,0.299244,0.301064,0.322032,0.340076,0.390021,0.299244,0.299244,0.340076,0.390021,0.299244,0.299244,0.299244,0.299244,0.299244,0.299244,,,,,,,0.300405,0.479017,0.301064,0.322032,0.340076,0.390021,0.299244,0.299244,0.299244,0.299244,0.119747,0.17333,0.119944,0.126235,0.131648,0.146631,0.119398,0.119398,0.062991,0.062991,32.872413,20.615243,32.800479,30.664797,29.037761,25.319257,33,33,33,33,,,,,,,,,,,2580,2580,0.299244,0.299244,0.299244,0.299244,0.299244,0.299244,0.299244,0.299244,0.119398,0.119398,33,33,, +10146,0,0.225725,1,1,0,2,5,,3,5,Miles,St,1428110,0.141,0.367,0,4.836973,8,4.5,0.541741,0.541741,0.541741,0.541741,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.541758,0.541741,0.541741,0.541741,0.541758,0.541741,0.541742,0.541741,0.541741,0.541741,0.541742,0.541741,0.541743,0.541748,0.541741,0.541741,0.541743,0.541748,0.541741,0.541741,0.541741,0.541741,0.541741,0.541741,,,,,,,0.541758,0.541741,0.541742,0.541741,0.541743,0.541748,0.541741,0.541741,0.541741,0.541741,0.203158,0.203153,0.203153,0.203153,0.203153,0.203155,0.203153,0.203153,0.106091,0.106091,24.999229,24.999997,24.99996,24.999986,24.99992,24.999689,25,25,25,25,,,,,,,,,,,2408,2408,0.541741,0.541741,0.541741,0.541741,0.541741,0.541741,0.541741,0.541741,0.203153,0.203153,25,25,, +10442,0,0.120613,1,1,0,2,4,,3,5,Prospect,St,1428106,0.735,0.856,0,2.584557,6,4.5,0.219296,0.219296,0.219296,0.219296,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.249886,0.253109,0.219296,0.219296,0.249886,0.253109,0.226459,0.225598,0.219296,0.219296,0.226459,0.225598,0.262,0.282485,0.219296,0.219296,0.262,0.282485,0.219296,0.219296,0.219296,0.219296,0.219296,0.219296,,,,,,,0.249886,0.253109,0.226459,0.225598,0.262,0.282485,0.219296,0.219296,0.219296,0.219296,0.096676,0.097643,0.089648,0.08939,0.10031,0.106456,0.087499,0.087499,0.046162,0.046162,28.960214,28.591441,31.956146,32.07809,27.621206,25.618224,33,33,33,33,,,,,,,,,,,2580,2580,0.219296,0.219296,0.219296,0.219296,0.219296,0.219296,0.219296,0.219296,0.087499,0.087499,33,33,, +26808,0,0.101663,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.178488,0.15,4,0.609977,0.609977,0.609977,0.609977,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,,,,,,,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.201292,0.201292,0.201292,0.201292,0.201292,0.201292,0.201292,0.201292,0.102679,0.102679,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.609977,0.201292,0.201292,10,10,, +9648,0,0.098392,1,1,0,2,4,,3,5,Prospect,St,1428106,0.856,0.954,0,2.108393,6,4.5,0.178894,0.178894,0.178894,0.178894,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.207336,0.210772,0.178894,0.178894,0.207336,0.210772,0.185716,0.184904,0.178894,0.178894,0.185716,0.184904,0.220051,0.235832,0.178894,0.178894,0.220051,0.235832,0.178894,0.178894,0.178894,0.178894,0.178894,0.178894,,,,,,,0.207336,0.210772,0.185716,0.184904,0.220051,0.235832,0.178894,0.178894,0.178894,0.178894,0.079911,0.080942,0.073425,0.073182,0.083726,0.08846,0.071379,0.071379,0.037657,0.037657,28.473102,28.008884,31.7877,31.927432,26.827879,25.032612,33,33,33,33,,,,,,,,,,,2580,2580,0.178894,0.178894,0.178894,0.178894,0.178894,0.178894,0.178894,0.178894,0.071379,0.071379,33,33,, +26809,0,0.061372,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.315108,0.15,4,0.36823,0.36823,0.36823,0.36823,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,,,,,,,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.121516,0.121516,0.121516,0.121516,0.121516,0.121516,0.121516,0.121516,0.061985,0.061985,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.36823,0.121516,0.121516,10,10,, +9519,0,0.199887,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.817,1.017,0,4.283298,6,4.5,0.363431,0.363431,0.363431,0.363431,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.382903,0.525841,0.363431,0.363431,0.382903,0.525841,0.374647,0.427652,0.363431,0.363431,0.374647,0.427652,0.464258,0.446888,0.363431,0.363431,0.464258,0.446888,0.363431,0.363431,0.363431,0.363431,0.363431,0.363431,,,,,,,0.382903,0.525841,0.374647,0.427652,0.464258,0.446888,0.363431,0.363431,0.363431,0.363431,0.150851,0.193732,0.148374,0.164275,0.175257,0.170046,0.145009,0.145009,0.076502,0.076502,31.321822,22.80774,32.012098,28.044394,25.833108,26.8372,33,33,33,33,,,,,,,,,,,2838,2838,0.363431,0.363431,0.363431,0.363431,0.363431,0.363431,0.363431,0.363431,0.145009,0.145009,33,33,, +10406,0,0.256259,1,1,0,2,4,,3,5,Prospect,St,1428106,1.21,1.466,0,5.491268,6,4.5,0.465926,0.465926,0.465926,0.465926,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.642259,0.657913,0.465926,0.465926,0.642259,0.657913,0.515565,0.54455,0.465926,0.465926,0.515565,0.54455,0.719873,0.724948,0.465926,0.465926,0.719873,0.724948,0.465926,0.465926,0.465926,0.465926,0.465926,0.465926,,,,,,,0.642259,0.657913,0.515565,0.54455,0.719873,0.724948,0.465926,0.465926,0.465926,0.465926,0.238804,0.2435,0.200796,0.209492,0.262089,0.263611,0.185904,0.185904,0.098077,0.098077,23.939789,23.370205,29.822708,28.235316,21.358689,21.209164,33,33,33,33,,,,,,,,,,,2580,2580,0.465926,0.465926,0.465926,0.465926,0.465926,0.465926,0.465926,0.465926,0.185904,0.185904,33,33,, +25526,0,0.308837,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.617943,0.15,4,1.853024,1.853024,1.853024,1.853024,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,,,,,,,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,0.611498,0.611498,0.611498,0.611498,0.611498,0.611498,0.611498,0.611498,0.311926,0.311926,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,1.853024,0.611498,0.611498,10,10,, +25527,0,0.274934,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.891436,0.15,4,1.649602,1.649602,1.649602,1.649602,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,,,,,,,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,0.544369,0.544369,0.544369,0.544369,0.544369,0.544369,0.544369,0.544369,0.277683,0.277683,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,1.649602,0.544369,0.544369,10,10,, +30041,0,0.204367,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.379291,0.15,4,1.226201,1.226201,1.226201,1.226201,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,,,,,,,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,0.404646,0.404646,0.404646,0.404646,0.404646,0.404646,0.404646,0.404646,0.206411,0.206411,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,1.226201,0.404646,0.404646,10,10,, +25528,0,0.028352,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,0.607547,0.15,4,0.170113,0.170113,0.170113,0.170113,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,,,,,,,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.056137,0.056137,0.056137,0.056137,0.056137,0.056137,0.056137,0.056137,0.028636,0.028636,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.170113,0.056137,0.056137,10,10,, +9629,0,0.112038,1,1,0,2,4,,3,5,Prospect,St,1428106,1.098,1.21,0,2.400821,6,4.5,0.203706,0.203706,0.203706,0.203706,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.239876,0.226303,0.203706,0.203706,0.239876,0.226303,0.224213,0.212117,0.203706,0.203706,0.224213,0.212117,0.277873,0.25435,0.203706,0.203706,0.277873,0.25435,0.203706,0.203706,0.203706,0.203706,0.203706,0.203706,,,,,,,0.239876,0.226303,0.224213,0.212117,0.277873,0.25435,0.203706,0.203706,0.203706,0.203706,0.09213,0.088058,0.087431,0.083802,0.103529,0.096472,0.081279,0.081279,0.04288,0.04288,28.024069,29.704822,29.98178,31.691478,24.192003,26.429283,33,33,33,33,,,,,,,,,,,2580,2580,0.203706,0.203706,0.203706,0.203706,0.203706,0.203706,0.203706,0.203706,0.081279,0.081279,33,33,, +10293,0,0.165466,1,1,0,2,4,,3,5,Forest,Ave,1429906,1.017,1.183,0,3.545693,6,4.5,0.300847,0.300847,0.300847,0.300847,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.324834,0.432841,0.300847,0.300847,0.324834,0.432841,0.318046,0.330307,0.300847,0.300847,0.318046,0.330307,0.4165,0.363565,0.300847,0.300847,0.4165,0.363565,0.300847,0.300847,0.300847,0.300847,0.300847,0.300847,,,,,,,0.324834,0.432841,0.318046,0.330307,0.4165,0.363565,0.300847,0.300847,0.300847,0.300847,0.127234,0.159636,0.125197,0.128876,0.154734,0.138853,0.120038,0.120038,0.063328,0.063328,30.563161,22.936709,31.215463,30.056686,23.836597,27.307227,33,33,33,33,,,,,,,,,,,2580,2580,0.300847,0.300847,0.300847,0.300847,0.300847,0.300847,0.300847,0.300847,0.120038,0.120038,33,33,, +26811,0,0.167655,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.592612,0.15,4,1.005931,1.005931,1.005931,1.005931,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,,,,,,,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,0.331957,0.331957,0.331957,0.331957,0.331957,0.331957,0.331957,0.331957,0.169332,0.169332,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,1.005931,0.331957,0.331957,10,10,, +26810,0,0.032414,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,0.694578,0.15,4,0.194482,0.194482,0.194482,0.194482,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,,,,,,,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.064179,0.064179,0.064179,0.064179,0.064179,0.064179,0.064179,0.064179,0.032738,0.032738,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.194482,0.064179,0.064179,10,10,, +11515,0,0.155358,1,1,0,2,5,,3,5,Holmes,Rd,1435108,0.297,0.453,0,3.329098,8,4.5,0.372859,0.372859,0.372859,0.372859,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.372875,0.372953,0.372859,0.372859,0.372875,0.372953,0.372922,0.372959,0.372859,0.372859,0.372922,0.372959,0.373143,0.373007,0.372859,0.372859,0.373143,0.373007,0.372859,0.372859,0.372859,0.372859,0.372859,0.372859,,,,,,,0.372875,0.372953,0.372922,0.372959,0.373143,0.373007,0.372859,0.372859,0.372859,0.372859,0.139827,0.13985,0.139841,0.139852,0.139907,0.139866,0.139822,0.139822,0.073018,0.073018,24.998922,24.993705,24.99578,24.993282,24.98099,24.990085,25,25,25,25,,,,,,,,,,,2408,2408,0.372859,0.372859,0.372859,0.372859,0.372859,0.372859,0.372859,0.372859,0.139822,0.139822,25,25,, +10255,0,0.028616,2,2,1,2,4,,3,5,Ecorse,Rd,1428108,0.22,0.248,0,0.613196,6,4.5,0.052029,0.052029,0.052029,0.052029,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.052064,0.055108,0.052029,0.052029,0.052064,0.055108,0.052096,0.052086,0.052029,0.052029,0.052096,0.052086,0.053221,0.052526,0.052029,0.052029,0.053221,0.052526,0.052029,0.052029,0.052029,0.052029,0.052029,0.052029,,,,,,,0.052064,0.055108,0.052096,0.052086,0.053221,0.052526,0.052029,0.052029,0.052029,0.052029,0.02077,0.021683,0.02078,0.020777,0.021117,0.020909,0.020759,0.020759,0.010952,0.010952,32.977363,31.156059,32.957575,32.963579,32.260701,32.687723,33,33,33,33,,,,,,,,,,,5418,5418,0.052029,0.052029,0.052029,0.052029,0.052029,0.052029,0.052029,0.052029,0.020759,0.020759,33,33,, +11508,0,0.123376,1,1,0,2,5,,4,5,Holmes,Rd,1435108,0.648,0.771,0,2.643764,5.8,4.5,0.274168,0.274168,0.274168,0.274168,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.27418,0.274252,0.274168,0.274168,0.27418,0.274252,0.274197,0.274214,0.274168,0.274168,0.274197,0.274214,0.274426,0.274285,0.274168,0.274168,0.274426,0.274285,0.274168,0.274168,0.274168,0.274168,0.274168,0.274168,,,,,,,0.27418,0.274252,0.274197,0.274214,0.274426,0.274285,0.274168,0.274168,0.274168,0.274168,0.104462,0.104483,0.104467,0.104472,0.104535,0.104493,0.104458,0.104458,0.054697,0.054697,26.99879,26.991717,26.997116,26.995451,26.974615,26.988453,27,27,27,27,,,,,,,,,,,2580,2580,0.274168,0.274168,0.274168,0.274168,0.274168,0.274168,0.274168,0.274168,0.104458,0.104458,27,27,, +9871,0,0.066468,1,1,0,2,4,,4,5,Cross,St,1428902,3.459,3.526,0,1.424305,4.5,4.5,0.104949,0.104949,0.104949,0.104949,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.104982,0.110247,0.104949,0.104949,0.104982,0.110247,0.104976,0.105687,0.104949,0.104949,0.104976,0.105687,0.105491,0.108324,0.104949,0.104949,0.105491,0.108324,0.104949,0.104949,0.104949,0.104949,0.104949,0.104949,,,,,,,0.104982,0.110247,0.104976,0.105687,0.105491,0.108324,0.104949,0.104949,0.104949,0.104949,0.043459,0.045038,0.043457,0.04367,0.043611,0.044461,0.043449,0.043449,0.023054,0.023054,37.988098,36.173727,37.990256,37.734545,37.804697,36.815875,38,38,38,38,,,,,,,,,,,3096,3096,0.104949,0.104949,0.104949,0.104949,0.104949,0.104949,0.104949,0.104949,0.043449,0.043449,38,38,, +9547,0,0.550198,1,1,0,2,4,,4,5,Prospect,St,1428106,1.982,2.532,0,11.789964,4.5,4.5,0.868734,0.868734,0.868734,0.868734,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.994283,1.067792,0.868734,0.868734,0.994283,1.067792,0.881114,0.885551,0.868734,0.868734,0.881114,0.885551,1.134058,1.150977,0.868734,0.868734,1.134058,1.150977,0.868734,0.868734,0.868734,0.868734,0.868734,0.868734,,,,,,,0.994283,1.067792,0.881114,0.885551,1.134058,1.150977,0.868734,0.868734,0.868734,0.868734,0.397321,0.419373,0.36337,0.364701,0.439253,0.444329,0.359656,0.359656,0.190832,0.190832,33.201716,30.916044,37.466111,37.278356,29.109531,28.681622,38,38,38,38,,,,,,,,,,,3096,3096,0.868734,0.868734,0.868734,0.868734,0.868734,0.868734,0.868734,0.868734,0.359656,0.359656,38,38,, +10790,0,0.192658,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0,0.193,0,4.128391,6.55,4.5,0.46238,0.46238,0.46238,0.46238,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.462421,0.468085,0.46238,0.46238,0.462421,0.468085,0.462392,0.462397,0.46238,0.46238,0.462392,0.462397,0.469516,0.462768,0.46238,0.46238,0.469516,0.462768,0.46238,0.46238,0.46238,0.46238,0.46238,0.46238,,,,,,,0.462421,0.468085,0.462392,0.462397,0.469516,0.462768,0.46238,0.46238,0.46238,0.46238,0.173405,0.175104,0.173396,0.173397,0.175533,0.173509,0.173392,0.173392,0.090549,0.090549,24.99775,24.695313,24.999338,24.999084,24.620031,24.979031,25,25,25,25,,,,,,,,,,,2064,2064,0.46238,0.46238,0.46238,0.46238,0.46238,0.46238,0.46238,0.46238,0.173392,0.173392,25,25,, +11366,0,0.460086,1,1,0,2,5,,4,5,Clark,Rd,1435902,1.396,1.855,0,9.858986,5.8,4.5,1.022413,1.022413,1.022413,1.022413,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.02243,1.048998,1.022413,1.022413,1.02243,1.048998,1.022492,1.022604,1.022413,1.022413,1.022492,1.022604,1.038612,1.022712,1.022413,1.022413,1.038612,1.022712,1.022413,1.022413,1.022413,1.022413,1.022413,1.022413,,,,,,,1.02243,1.048998,1.022492,1.022604,1.038612,1.022712,1.022413,1.022413,1.022413,1.022413,0.389545,0.397515,0.389563,0.389597,0.394399,0.389629,0.389539,0.389539,0.203971,0.203971,26.999553,26.31574,26.997933,26.994971,26.578903,26.992115,27,27,27,27,,,,,,,,,,,2580,2580,1.022413,1.022413,1.022413,1.022413,1.022413,1.022413,1.022413,1.022413,0.389539,0.389539,27,27,, +26759,0,0.423503,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.075065,0.15,4,1.694012,1.694012,1.694012,1.694012,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.694013,1.694012,1.694012,1.694012,1.694013,1.694012,1.694012,1.694012,1.694012,1.694012,1.694012,1.694012,1.694012,1.694013,1.694012,1.694012,1.694012,1.694013,1.694012,1.694012,1.694012,1.694012,1.694012,1.694012,,,,,,,1.694013,1.694012,1.694012,1.694012,1.694012,1.694013,1.694012,1.694012,1.694012,1.694012,0.584434,0.584434,0.584434,0.584434,0.584434,0.584434,0.584434,0.584434,0.300687,0.300687,14.999996,15,15,15,14.999999,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,1.694012,1.694012,1.694012,1.694012,1.694012,1.694012,1.694012,1.694012,0.584434,0.584434,15,15,, +10363,0,0.376653,1,1,0,2,4,,4,5,Prospect,St,1428106,1.605,1.982,0,8.071141,4.5,4.5,0.594716,0.594716,0.594716,0.594716,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.644104,0.625616,0.594716,0.594716,0.644104,0.625616,0.599325,0.601997,0.594716,0.594716,0.599325,0.601997,0.634597,0.642206,0.594716,0.594716,0.634597,0.642206,0.594716,0.594716,0.594716,0.594716,0.594716,0.594716,,,,,,,0.644104,0.625616,0.599325,0.601997,0.634597,0.642206,0.594716,0.594716,0.594716,0.594716,0.261029,0.255482,0.247595,0.248397,0.258177,0.260459,0.246212,0.246212,0.130639,0.130639,35.086253,36.123116,37.707717,37.540385,35.611857,35.189962,38,38,38,38,,,,,,,,,,,3096,3096,0.594716,0.594716,0.594716,0.594716,0.594716,0.594716,0.594716,0.594716,0.246212,0.246212,38,38,, +11369,0,0.223213,1,1,0,2,5,,4,5,Clark,Rd,1435902,1.172,1.396,0,4.783131,5.8,4.5,0.496028,0.496028,0.496028,0.496028,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.49606,0.560796,0.496028,0.496028,0.49606,0.560796,0.496047,0.496062,0.496028,0.496028,0.496047,0.496062,0.533442,0.498763,0.496028,0.496028,0.533442,0.498763,0.496028,0.496028,0.496028,0.496028,0.496028,0.496028,,,,,,,0.49606,0.560796,0.496047,0.496062,0.533442,0.498763,0.496028,0.496028,0.496028,0.496028,0.188996,0.208417,0.188992,0.188997,0.200211,0.189807,0.188987,0.188987,0.098958,0.098958,26.998272,23.881709,26.999006,26.998153,25.106303,26.85197,27,27,27,27,,,,,,,,,,,2580,2580,0.496028,0.496028,0.496028,0.496028,0.496028,0.496028,0.496028,0.496028,0.188987,0.188987,27,27,, +26776,0,0.127889,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.740473,0.15,4,0.511555,0.511555,0.511555,0.511555,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,,,,,,,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.176486,0.176486,0.176486,0.176486,0.176486,0.176486,0.176486,0.176486,0.090801,0.090801,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.511555,0.176486,0.176486,15,15,, +30002,0,0.41224,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.833706,0.15,4,1.648958,1.648958,1.648958,1.648958,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,,,,,,,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,0.568891,0.568891,0.568891,0.568891,0.568891,0.568891,0.568891,0.568891,0.29269,0.29269,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,1.648958,0.568891,0.568891,15,15,, +9488,0,0.505327,1,1,1,2,4,,4,5,Grove,St,1428105,2.321,2.826,0,10.828428,4.5,4.5,0.797884,0.797884,0.797884,0.797884,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.829282,1.087699,0.797884,0.797884,0.829282,1.087699,0.845783,0.878258,0.797884,0.797884,0.845783,0.878258,1.094513,1.041713,0.797884,0.797884,1.094513,1.041713,0.797884,0.797884,0.797884,0.797884,0.797884,0.797884,,,,,,,0.829282,1.087699,0.845783,0.878258,1.094513,1.041713,0.797884,0.797884,0.797884,0.797884,0.339744,0.417269,0.344694,0.354436,0.419313,0.403473,0.330324,0.330324,0.175269,0.175269,36.561247,27.87498,35.847949,34.522437,27.701454,29.105532,38,38,38,38,,,,,,,,,,,3406,3406,0.797884,0.797884,0.797884,0.797884,0.797884,0.797884,0.797884,0.797884,0.330324,0.330324,38,38,, +9744,0,0.310591,1,1,1,2,4,,4,5,Grove,St,1428105,2.01,2.321,0,6.655522,4.5,4.5,0.490407,0.490407,0.490407,0.490407,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.494987,0.501376,0.490407,0.490407,0.494987,0.501376,0.496052,0.492401,0.490407,0.490407,0.496052,0.492401,0.506041,0.496526,0.490407,0.490407,0.506041,0.496526,0.490407,0.490407,0.490407,0.490407,0.490407,0.490407,,,,,,,0.494987,0.501376,0.496052,0.492401,0.506041,0.496526,0.490407,0.490407,0.490407,0.490407,0.204403,0.206319,0.204722,0.203627,0.207719,0.204864,0.203028,0.203028,0.107726,0.107726,37.648358,37.168637,37.567583,37.846143,36.826008,37.531682,38,38,38,38,,,,,,,,,,,3406,3406,0.490407,0.490407,0.490407,0.490407,0.490407,0.490407,0.490407,0.490407,0.203028,0.203028,38,38,, +40916,1,0.141675,2,0,0,2,4,,4,4,William P Rosso,Hwy,0,0,0,0,3.035885,4.5,4.5,0.223697,,0.223697,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.223707,,0.223697,,0.223707,,0.22371,,0.223697,,0.22371,,0.225681,,0.223697,,0.225681,,0.223697,,0.223697,,0.223697,,,,,,,,0.223707,,0.22371,,0.225681,,0.223697,,0.223697,,0.092614,,0.092614,,0.093206,,0.09261,,0.049139,,37.998249,,37.997784,,37.665898,,38,,38,,,,,,,,,,,,6192,,0.223697,,0.223697,,0.223697,,0.223697,,0.09261,,38,,, +10050,0,0.406426,1,1,0,2,4,,4,5,Harris,Rd,1428806,0,0.406,0,8.709129,4.5,4.5,0.641725,0.641725,0.641725,0.641725,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.652775,0.641839,0.641725,0.641725,0.652775,0.641839,0.646521,0.642017,0.641725,0.641725,0.646521,0.642017,0.656124,0.649172,0.641725,0.641725,0.656124,0.649172,0.641725,0.641725,0.641725,0.641725,0.641725,0.641725,,,,,,,0.652775,0.641839,0.646521,0.642017,0.656124,0.649172,0.641725,0.641725,0.641725,0.641725,0.268989,0.265708,0.267113,0.265762,0.269994,0.267908,0.265674,0.265674,0.140966,0.140966,37.356746,37.993279,37.71815,37.982713,37.16608,37.564105,38,38,38,38,,,,,,,,,,,3096,3096,0.641725,0.641725,0.641725,0.641725,0.641725,0.641725,0.641725,0.641725,0.265674,0.265674,38,38,, +10667,1,0.438781,2,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0,0.439,0,9.402457,3.7,5,0.585042,,0.585042,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.585089,,0.585042,,0.585089,,0.585045,,0.585042,,0.585045,,0.585438,,0.585042,,0.585438,,0.585042,,0.585042,,0.585042,,,,,,,,0.585089,,0.585045,,0.585438,,0.585042,,0.585042,,0.254507,,0.254494,,0.254612,,0.254493,,0.136022,,44.99638,,44.999736,,44.969542,,45,,45,,,,,,,,,,,,7568,,0.585042,,0.585042,,0.585042,,0.585042,,0.254493,,45,,, +10677,-1,0.731786,0,2,0,2,3,DIV,4,5,Wiard,Rd,1430407,0,0.732,0,15.681139,3.7,5,,0.975715,,0.975715,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.977099,,0.975715,,0.977099,,0.975766,,0.975715,,0.975766,,0.976721,,0.975715,,0.976721,,0.975715,,0.975715,,0.975715,,,,,,,,0.977099,,0.975766,,0.976721,,0.975715,,0.975715,,0.424851,,0.424451,,0.424738,,0.424436,,0.226854,,44.936278,,44.997677,,44.953662,,45,,45,,,,,,,,,,,,7568,,0.975715,,0.975715,,0.975715,,0.975715,,0.424436,,45,, +40915,-1,0.10677,0,2,0,2,4,,4,4,Jefferson,Ave,0,0,0,0,2.287922,4.5,4.5,,0.168584,,0.168584,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.177564,,0.168584,,0.177564,,0.168675,,0.168584,,0.168675,,0.168739,,0.168584,,0.168739,,0.168584,,0.168584,,0.168584,,,,,,,,0.177564,,0.168675,,0.168739,,0.168584,,0.168584,,0.072488,,0.069821,,0.06984,,0.069794,,0.037032,,36.078249,,37.979503,,37.965089,,38,,38,,,,,,,,,,,,6192,,0.168584,,0.168584,,0.168584,,0.168584,,0.069794,,38,, +11556,0,0.014191,1,1,0,2,5,,4,5,Dorset,Ave,1433910,0.183,0.197,0,0.30409,5.8,4.5,0.031535,0.031535,0.031535,0.031535,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.034324,0.044239,0.031535,0.031535,0.034324,0.044239,0.031867,0.034972,0.031535,0.031535,0.031867,0.034972,0.032137,0.058703,0.031535,0.031535,0.032137,0.058703,0.031535,0.031535,0.031535,0.031535,0.031535,0.031535,,,,,,,0.034324,0.044239,0.031867,0.034972,0.032137,0.058703,0.031535,0.031535,0.031535,0.031535,0.012852,0.015826,0.012114,0.013046,0.012195,0.020165,0.012015,0.012015,0.006291,0.006291,24.806013,19.246775,26.719052,24.346671,26.494471,14.504344,27,27,27,27,,,,,,,,,,,2580,2580,0.031535,0.031535,0.031535,0.031535,0.031535,0.031535,0.031535,0.031535,0.012015,0.012015,27,27,, +25506,0,0.604405,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.951529,0.15,4,2.417619,2.417619,2.417619,2.417619,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,,,,,,,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,0.834078,0.834078,0.834078,0.834078,0.834078,0.834078,0.834078,0.834078,0.429127,0.429127,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,2.417619,0.834078,0.834078,15,15,, +25811,0,0.104029,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.229192,0.15,4,0.416116,0.416116,0.416116,0.416116,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,,,,,,,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.14356,0.14356,0.14356,0.14356,0.14356,0.14356,0.14356,0.14356,0.073861,0.073861,14.999999,15,14.999999,14.999999,14.999997,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.416116,0.14356,0.14356,15,15,, +26266,0,0.283243,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.069502,0.15,4,1.132974,1.132974,1.132974,1.132974,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,,,,,,,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,0.390876,0.390876,0.390876,0.390876,0.390876,0.390876,0.390876,0.390876,0.201103,0.201103,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,1.132974,0.390876,0.390876,15,15,, +29936,0,0.734883,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.747485,0.15,4,2.939531,2.939531,2.939531,2.939531,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,,,,,,,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,1.014138,1.014138,1.014138,1.014138,1.014138,1.014138,1.014138,1.014138,0.521767,0.521767,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,2.939531,1.014138,1.014138,15,15,, +10885,0,0.370204,1,1,0,2,5,,4,5,Huron River,Dr,1438110,1.607,1.977,0,7.932951,5.8,4.5,0.822676,0.822676,0.822676,0.822676,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.822693,0.825274,0.822676,0.822676,0.822693,0.825274,0.822705,0.822725,0.822676,0.822676,0.822705,0.822725,0.826004,0.823132,0.822676,0.822676,0.826004,0.823132,0.822676,0.822676,0.822676,0.822676,0.822676,0.822676,,,,,,,0.822693,0.825274,0.822705,0.822725,0.826004,0.823132,0.822676,0.822676,0.822676,0.822676,0.313445,0.314219,0.313448,0.313454,0.314438,0.313576,0.31344,0.31344,0.164124,0.164124,26.999458,26.915004,26.999076,26.998397,26.891241,26.985042,27,27,27,27,,,,,,,,,,,2580,2580,0.822676,0.822676,0.822676,0.822676,0.822676,0.822676,0.822676,0.822676,0.31344,0.31344,27,27,, +11546,0,0.251354,1,1,0,2,5,,4,5,Huron River,Dr,1438110,1.977,2.228,0,5.386167,5.8,4.5,0.558565,0.558565,0.558565,0.558565,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.558576,0.558695,0.558565,0.558565,0.558576,0.558695,0.558575,0.558581,0.558565,0.558565,0.558575,0.558581,0.558949,0.55873,0.558565,0.558565,0.558949,0.55873,0.558565,0.558565,0.558565,0.558565,0.558565,0.558565,,,,,,,0.558576,0.558695,0.558575,0.558581,0.558949,0.55873,0.558565,0.558565,0.558565,0.558565,0.212817,0.212852,0.212816,0.212818,0.212928,0.212863,0.212813,0.212813,0.111434,0.111434,26.999472,26.99374,26.999559,26.999266,26.981483,26.992026,27,27,27,27,,,,,,,,,,,2580,2580,0.558565,0.558565,0.558565,0.558565,0.558565,0.558565,0.558565,0.558565,0.212813,0.212813,27,27,, +26267,0,0.216573,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.640847,0.15,4,0.866291,0.866291,0.866291,0.866291,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,,,,,,,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.298871,0.298871,0.298871,0.298871,0.298871,0.298871,0.298871,0.298871,0.153767,0.153767,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.866291,0.298871,0.298871,15,15,, +9829,0,0.198605,1,1,0,2,4,,4,5,Harris,Rd,1428806,0.406,0.605,0,4.255827,4.5,4.5,0.313587,0.313587,0.313587,0.313587,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.368407,0.313643,0.313587,0.313587,0.368407,0.313643,0.315931,0.31373,0.313587,0.313587,0.315931,0.31373,0.320623,0.371897,0.313587,0.313587,0.320623,0.371897,0.313587,0.313587,0.313587,0.313587,0.313587,0.313587,,,,,,,0.368407,0.313643,0.315931,0.31373,0.320623,0.371897,0.313587,0.313587,0.313587,0.313587,0.146271,0.129842,0.130528,0.129868,0.131936,0.147318,0.129825,0.129825,0.068885,0.068885,32.345558,37.993279,37.71815,37.982713,37.16608,32.041951,38,38,38,38,,,,,,,,,,,3096,3096,0.313587,0.313587,0.313587,0.313587,0.313587,0.313587,0.313587,0.313587,0.129825,0.129825,38,38,, +10154,0,0.24428,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.944,1.188,0,5.234572,4.5,4.5,0.385705,0.385705,0.385705,0.385705,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.386123,0.394066,0.385705,0.385705,0.386123,0.394066,0.385889,0.385837,0.385705,0.385705,0.385889,0.385837,0.389843,0.387542,0.385705,0.385705,0.389843,0.387542,0.385705,0.385705,0.385705,0.385705,0.385705,0.385705,,,,,,,0.386123,0.394066,0.385889,0.385837,0.389843,0.387542,0.385705,0.385705,0.385705,0.385705,0.159807,0.16219,0.159737,0.159722,0.160923,0.160233,0.159682,0.159682,0.084727,0.084727,37.958859,37.193797,37.981917,37.98701,37.596653,37.819928,38,38,38,38,,,,,,,,,,,6502,6502,0.385705,0.385705,0.385705,0.385705,0.385705,0.385705,0.385705,0.385705,0.159682,0.159682,38,38,, +26763,0,0.434761,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.316297,0.15,4,1.739042,1.739042,1.739042,1.739042,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,,,,,,,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,0.59997,0.59997,0.59997,0.59997,0.59997,0.59997,0.59997,0.59997,0.30868,0.30868,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,1.739042,0.59997,0.59997,15,15,, +26765,0,0.281149,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.024627,0.15,4,1.124597,1.124597,1.124597,1.124597,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,,,,,,,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,0.387986,0.387986,0.387986,0.387986,0.387986,0.387986,0.387986,0.387986,0.199616,0.199616,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,1.124597,0.387986,0.387986,15,15,, +29937,0,0.176374,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.779442,0.15,4,0.705496,0.705496,0.705496,0.705496,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,,,,,,,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.243396,0.243396,0.243396,0.243396,0.243396,0.243396,0.243396,0.243396,0.125226,0.125226,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.705496,0.243396,0.243396,15,15,, +9565,-1,0.349006,0,2,0,1,2,,4,5,US 12,,1430401,0,0.349,0,,0.8,7.5,,0.299148,,0.299148,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.299156,,0.299148,,0.299156,,0.299149,,0.299148,,0.299149,,0.299151,,0.299148,,0.299151,,0.299148,,0.299148,,0.299148,,,,,,,,0.299156,,0.299149,,0.299151,,0.299148,,0.299148,,0.152568,,0.152566,,0.152567,,0.152566,,0.083263,,69.998097,,69.999892,,69.999266,,70,,70,,,,,,,,,,,,15136,,0.299148,,0.299148,,0.299148,,0.299148,,0.152566,,70,, +10045,0,0.342052,1,1,0,2,4,,4,5,Harris,Rd,1428806,0.605,0.947,0,7.329692,4.5,4.5,0.540083,0.540083,0.540083,0.540083,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.846318,0.541211,0.540083,0.540083,0.846318,0.541211,0.554854,0.541963,0.540083,0.540083,0.554854,0.541963,0.585107,0.874394,0.540083,0.540083,0.585107,0.874394,0.540083,0.540083,0.540083,0.540083,0.540083,0.540083,,,,,,,0.846318,0.541211,0.554854,0.541963,0.585107,0.874394,0.540083,0.540083,0.540083,0.540083,0.315465,0.223933,0.228026,0.224158,0.237101,0.323888,0.223594,0.223594,0.118638,0.118638,24.249918,37.9208,36.988338,37.868119,35.075897,23.471265,38,38,38,38,,,,,,,,,,,3096,3096,0.540083,0.540083,0.540083,0.540083,0.540083,0.540083,0.540083,0.540083,0.223594,0.223594,38,38,, +10152,0,0.112497,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,1.351,1.464,0,2.410647,4.5,4.5,0.177627,0.177627,0.177627,0.177627,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.181404,0.178517,0.177627,0.177627,0.181404,0.178517,0.178656,0.17785,0.177627,0.177627,0.178656,0.17785,0.182888,0.191335,0.177627,0.177627,0.182888,0.191335,0.177627,0.177627,0.177627,0.177627,0.177627,0.177627,,,,,,,0.181404,0.178517,0.178656,0.17785,0.182888,0.191335,0.177627,0.177627,0.177627,0.177627,0.074671,0.073804,0.073846,0.073605,0.075116,0.07765,0.073537,0.073537,0.039019,0.039019,37.208711,37.810549,37.781069,37.952207,36.906773,35.277498,38,38,38,38,,,,,,,,,,,6502,6502,0.177627,0.177627,0.177627,0.177627,0.177627,0.177627,0.177627,0.177627,0.073537,0.073537,38,38,, +10687,1,0.094503,2,0,0,2,3,DIV,4,5,US 12,,1430402,0.389,0.483,0,2.025056,3.7,5,0.126004,,0.126004,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.137391,,0.126004,,0.137391,,0.127627,,0.126004,,0.127627,,0.165607,,0.126004,,0.165607,,0.126004,,0.126004,,0.126004,,,,,,,,0.137391,,0.127627,,0.165607,,0.126004,,0.126004,,0.058228,,0.055299,,0.066693,,0.054812,,0.029296,,41.270353,,44.427493,,34.238586,,45,,45,,,,,,,,,,,,7568,,0.126004,,0.126004,,0.126004,,0.126004,,0.054812,,45,,, +10688,1,0.388751,2,0,0,1,2,,4,5,US 12,,1430402,0,0.389,0,,0.8,7.5,0.333215,,0.333215,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.333221,,0.333215,,0.333221,,0.333215,,0.333215,,0.333215,,0.333252,,0.333215,,0.333252,,0.333215,,0.333215,,0.333215,,,,,,,,0.333221,,0.333215,,0.333252,,0.333215,,0.333215,,0.169941,,0.16994,,0.169951,,0.16994,,0.092745,,69.998819,,69.999936,,69.992342,,70,,70,,,,,,,,,,,,15136,,0.333215,,0.333215,,0.333215,,0.333215,,0.16994,,70,,, +25513,0,0.095508,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.046592,0.15,4,0.38203,0.38203,0.38203,0.38203,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,,,,,,,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.131801,0.131801,0.131801,0.131801,0.131801,0.131801,0.131801,0.131801,0.06781,0.06781,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.38203,0.131801,0.131801,15,15,, +10420,0,0.163509,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,1.188,1.351,0,3.50376,4.5,4.5,0.258172,0.258172,0.258172,0.258172,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.262373,0.259479,0.258172,0.258172,0.262373,0.259479,0.259606,0.258478,0.258172,0.258172,0.259606,0.258478,0.265772,0.275751,0.258172,0.258172,0.265772,0.275751,0.258172,0.258172,0.258172,0.258172,0.258172,0.258172,,,,,,,0.262373,0.259479,0.259606,0.258478,0.265772,0.275751,0.258172,0.258172,0.258172,0.258172,0.108144,0.107275,0.107313,0.106975,0.109163,0.112157,0.106883,0.106883,0.056712,0.056712,37.391516,37.808554,37.790108,37.954986,36.913339,35.577475,38,38,38,38,,,,,,,,,,,6502,6502,0.258172,0.258172,0.258172,0.258172,0.258172,0.258172,0.258172,0.258172,0.106883,0.106883,38,38,, +11554,0,0.135046,1,1,0,2,5,,4,5,Laverne,St,1433910,0.255,0.39,0,2.893841,5.8,4.5,0.300102,0.300102,0.300102,0.300102,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.316597,0.423464,0.300102,0.300102,0.316597,0.423464,0.302848,0.35228,0.300102,0.300102,0.302848,0.35228,0.390153,0.543082,0.300102,0.300102,0.390153,0.543082,0.300102,0.300102,0.300102,0.300102,0.300102,0.300102,,,,,,,0.316597,0.423464,0.302848,0.35228,0.390153,0.543082,0.300102,0.300102,0.300102,0.300102,0.119287,0.151347,0.115163,0.129992,0.141354,0.187233,0.114339,0.114339,0.05987,0.05987,25.593294,19.134482,26.75521,23.000874,20.768141,14.919939,27,27,27,27,,,,,,,,,,,2580,2580,0.300102,0.300102,0.300102,0.300102,0.300102,0.300102,0.300102,0.300102,0.114339,0.114339,27,27,, +10698,-1,0.114158,0,2,0,2,3,DIV,4,5,US 12,,1430401,0.349,0.463,0,2.446253,3.7,5,,0.152211,,0.152211,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.171119,,0.152211,,0.171119,,0.15501,,0.152211,,0.15501,,0.162232,,0.152211,,0.162232,,0.152211,,0.152211,,0.152211,,,,,,,,0.171119,,0.15501,,0.162232,,0.152211,,0.152211,,0.071884,,0.067052,,0.069218,,0.066212,,0.035389,,40.02783,,44.187406,,42.220335,,45,,45,,,,,,,,,,,,7568,,0.152211,,0.152211,,0.152211,,0.152211,,0.066212,,45,, +11555,0,0.058003,1,1,0,2,5,,4,5,Dorset,Ave,1433910,0.197,0.255,0,1.242928,5.8,4.5,0.128896,0.128896,0.128896,0.128896,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.165706,0.154186,0.128896,0.128896,0.165706,0.154186,0.135351,0.132078,0.128896,0.128896,0.135351,0.132078,0.223678,0.147201,0.128896,0.128896,0.223678,0.147201,0.128896,0.128896,0.128896,0.128896,0.128896,0.128896,,,,,,,0.165706,0.154186,0.135351,0.132078,0.223678,0.147201,0.128896,0.128896,0.128896,0.128896,0.060152,0.056696,0.051046,0.050064,0.077544,0.054601,0.049109,0.049109,0.025715,0.025715,21.002254,22.571412,25.712475,26.349561,15.558998,23.642483,27,27,27,27,,,,,,,,,,,2580,2580,0.128896,0.128896,0.128896,0.128896,0.128896,0.128896,0.128896,0.128896,0.049109,0.049109,27,27,, +9479,0,0.25225,2,2,1,2,4,,4,5,Grove,St,1428105,3.287,3.539,0,5.405363,4.5,4.5,0.39829,0.39829,0.39829,0.39829,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.402639,0.399013,0.39829,0.39829,0.402639,0.399013,0.398519,0.398535,0.39829,0.39829,0.398519,0.398535,0.400224,0.403396,0.39829,0.39829,0.400224,0.403396,0.39829,0.39829,0.39829,0.39829,0.39829,0.39829,,,,,,,0.402639,0.399013,0.398519,0.398535,0.400224,0.403396,0.39829,0.39829,0.39829,0.39829,0.166197,0.165109,0.164961,0.164966,0.165472,0.166424,0.164892,0.164892,0.087491,0.087491,37.589557,37.931146,37.978198,37.976623,37.816402,37.519012,38,38,38,38,,,,,,,,,,,6502,6502,0.39829,0.39829,0.39829,0.39829,0.39829,0.39829,0.39829,0.39829,0.164892,0.164892,38,38,, +26754,0,0.209737,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.494356,0.15,4,0.838946,0.838946,0.838946,0.838946,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.838947,0.838946,0.838946,0.838946,0.838947,0.838946,0.838946,0.838946,0.838946,0.838946,0.838946,0.838946,0.838946,0.838947,0.838946,0.838946,0.838946,0.838947,0.838946,0.838946,0.838946,0.838946,0.838946,0.838946,,,,,,,0.838947,0.838946,0.838946,0.838946,0.838946,0.838947,0.838946,0.838946,0.838946,0.838946,0.289437,0.289437,0.289437,0.289437,0.289437,0.289437,0.289437,0.289437,0.148913,0.148913,14.999996,15,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,0.838946,0.838946,0.838946,0.838946,0.838946,0.838946,0.838946,0.838946,0.289437,0.289437,15,15,, +9739,0,0.460761,1,1,1,2,4,,4,5,Grove,St,1428105,2.826,3.287,0,9.873441,4.5,4.5,0.727517,0.727517,0.727517,0.727517,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.776505,0.90816,0.727517,0.727517,0.776505,0.90816,0.739563,0.74558,0.727517,0.727517,0.739563,0.74558,0.994501,0.875726,0.727517,0.727517,0.994501,0.875726,0.727517,0.727517,0.727517,0.727517,0.727517,0.727517,,,,,,,0.776505,0.90816,0.739563,0.74558,0.994501,0.875726,0.727517,0.727517,0.727517,0.727517,0.315888,0.355385,0.304806,0.306611,0.381287,0.345655,0.301192,0.301192,0.159811,0.159811,35.602639,30.441355,37.381049,37.079381,27.798495,31.56881,38,38,38,38,,,,,,,,,,,3406,3406,0.727517,0.727517,0.727517,0.727517,0.727517,0.727517,0.727517,0.727517,0.301192,0.301192,38,38,, +10665,1,0.140939,3,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0.684,0.825,0,3.020117,3.7,5,0.187918,,0.187918,,45,,33000,,7491,,16500,,10646,,11352,,11339,,0.187921,,0.187918,,0.187921,,0.187919,,0.187918,,0.187919,,0.187938,,0.187918,,0.187938,,0.187918,,0.187918,,0.187918,,,,,,,,0.187921,,0.187919,,0.187938,,0.187918,,0.187918,,0.081745,,0.081745,,0.08175,,0.081745,,0.043691,,44.999384,,44.99994,,44.995277,,45,,45,,,,,,,,,,,,11352,,0.187918,,0.187918,,0.187918,,0.187918,,0.081745,,45,,, +10676,-1,0.25709,0,2,0,2,3,DIV,4,5,Wiard,Rd,1430407,0.732,0.989,0,5.509075,3.7,5,,0.342787,,0.342787,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.343349,,0.342787,,0.343349,,0.342812,,0.342787,,0.342812,,0.343197,,0.342787,,0.343197,,0.342787,,0.342787,,0.342787,,,,,,,,0.343349,,0.342812,,0.343197,,0.342787,,0.342787,,0.149281,,0.14912,,0.149235,,0.149112,,0.079698,,44.926302,,44.996691,,44.946168,,45,,45,,,,,,,,,,,,7568,,0.342787,,0.342787,,0.342787,,0.342787,,0.149112,,45,, +11576,0,0.309463,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.241,0.551,0,6.631356,5.8,4.5,0.687696,0.687696,0.687696,0.687696,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.748467,0.687696,0.687696,0.687696,0.748467,0.687696,0.690349,0.687696,0.687696,0.687696,0.690349,0.687696,0.70057,0.687696,0.687696,0.687696,0.70057,0.687696,0.687696,0.687696,0.687696,0.687696,0.687696,0.687696,,,,,,,0.748467,0.687696,0.690349,0.687696,0.70057,0.687696,0.687696,0.687696,0.687696,0.687696,0.280243,0.262012,0.262808,0.262012,0.265874,0.262012,0.262012,0.262012,0.137195,0.137195,24.807778,27,26.896228,27,26.503833,27,27,27,27,27,,,,,,,,,,,2580,2580,0.687696,0.687696,0.687696,0.687696,0.687696,0.687696,0.687696,0.687696,0.262012,0.262012,27,27,, +25511,0,0.278507,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.968008,0.15,4,1.114028,1.114028,1.114028,1.114028,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,,,,,,,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,0.38434,0.38434,0.38434,0.38434,0.38434,0.38434,0.38434,0.38434,0.19774,0.19774,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,1.114028,0.38434,0.38434,15,15,, +26813,0,0.339579,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.276703,0.15,4,1.358318,1.358318,1.358318,1.358318,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,,,,,,,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,0.46862,0.46862,0.46862,0.46862,0.46862,0.46862,0.46862,0.46862,0.241101,0.241101,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,1.358318,0.46862,0.46862,15,15,, +30034,0,0.341202,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.311473,0.15,4,1.364808,1.364808,1.364808,1.364808,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,,,,,,,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,0.470859,0.470859,0.470859,0.470859,0.470859,0.470859,0.470859,0.470859,0.242253,0.242253,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,1.364808,0.470859,0.470859,15,15,, +11558,0,0.183158,1,1,0,2,5,,4,5,Dorset,Ave,1433910,0,0.183,0,3.924805,5.8,4.5,0.407017,0.407017,0.407017,0.407017,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.412705,0.498965,0.407017,0.407017,0.412705,0.498965,0.407464,0.421021,0.407017,0.407017,0.407464,0.421021,0.408034,0.526579,0.407017,0.407017,0.408034,0.526579,0.407017,0.407017,0.407017,0.407017,0.407017,0.407017,,,,,,,0.412705,0.498965,0.407464,0.421021,0.408034,0.526579,0.407017,0.407017,0.407017,0.407017,0.15678,0.182658,0.155207,0.159275,0.155379,0.190942,0.155073,0.155073,0.0812,0.0812,26.62785,22.024497,26.970398,26.101913,26.932663,20.869533,27,27,27,27,,,,,,,,,,,2580,2580,0.407017,0.407017,0.407017,0.407017,0.407017,0.407017,0.407017,0.407017,0.155073,0.155073,27,27,, +25512,0,0.337073,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.222993,0.15,4,1.348292,1.348292,1.348292,1.348292,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,,,,,,,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,0.465161,0.465161,0.465161,0.465161,0.465161,0.465161,0.465161,0.465161,0.239322,0.239322,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,1.348292,0.465161,0.465161,15,15,, +11582,0,0.117444,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.124,0.241,0,2.516658,5.8,4.5,0.260987,0.260987,0.260987,0.260987,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.319946,0.264634,0.260987,0.260987,0.319946,0.264634,0.269967,0.261273,0.260987,0.260987,0.269967,0.261273,0.337652,0.261639,0.260987,0.260987,0.337652,0.261639,0.260987,0.260987,0.260987,0.260987,0.260987,0.260987,,,,,,,0.319946,0.264634,0.269967,0.261273,0.337652,0.261639,0.260987,0.260987,0.260987,0.260987,0.117124,0.10053,0.10213,0.099522,0.122436,0.099632,0.099436,0.099436,0.052067,0.052067,22.024497,26.62785,26.101913,26.970398,20.869533,26.932663,27,27,27,27,,,,,,,,,,,2580,2580,0.260987,0.260987,0.260987,0.260987,0.260987,0.260987,0.260987,0.260987,0.099436,0.099436,27,27,, +10666,1,0.245332,2,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0.439,0.684,0,5.257115,3.7,5,0.327109,,0.327109,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.327136,,0.327109,,0.327136,,0.327111,,0.327109,,0.327111,,0.327331,,0.327109,,0.327331,,0.327109,,0.327109,,0.327109,,,,,,,,0.327136,,0.327111,,0.327331,,0.327109,,0.327109,,0.1423,,0.142293,,0.142359,,0.142293,,0.076053,,44.99638,,44.999736,,44.969542,,45,,45,,,,,,,,,,,,7568,,0.327109,,0.327109,,0.327109,,0.327109,,0.142293,,45,,, +11485,1,0.166533,1,0,0,2,3,,4,5,S Wiard/N Wiard,TURN,1452402,0,0.167,0,3.56856,3.7,5,0.249799,,0.249799,,40,,11000,,2497,,5500,,3549,,3784,,3780,,0.249799,,0.249799,,0.249799,,0.249799,,0.249799,,0.249799,,0.249799,,0.249799,,0.249799,,0.249799,,0.249799,,0.249799,,,,,,,,0.249799,,0.249799,,0.249799,,0.249799,,0.249799,,0.104916,,0.104916,,0.104916,,0.104916,,0.055788,,40,,40,,40,,40,,40,,,,,,,,,,,,3784,,0.249799,,0.249799,,0.249799,,0.249799,,0.104916,,40,,, +21740,-1,0.128889,0,1,0,2,3,,4,5,N Wiard / S Wiard,TURN,4604859,0,0.129,0,2.761914,3.7,5,,0.193334,,0.193334,,40,,11000,,2497,,5500,,3549,,3784,,3780,,0.193334,,0.193334,,0.193334,,0.193334,,0.193334,,0.193334,,0.193335,,0.193334,,0.193335,,0.193334,,0.193334,,0.193334,,,,,,,,0.193334,,0.193334,,0.193335,,0.193334,,0.193334,,0.0812,,0.0812,,0.081201,,0.0812,,0.043178,,39.999986,,39.999996,,39.999696,,40,,40,,,,,,,,,,,,3784,,0.193334,,0.193334,,0.193334,,0.193334,,0.0812,,40,, +11572,0,0.120904,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.551,0.671,0,2.590811,5.8,4.5,0.268677,0.268677,0.268677,0.268677,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.306722,0.268677,0.268677,0.268677,0.306722,0.268677,0.270367,0.268677,0.268677,0.268677,0.270367,0.268677,0.277282,0.268678,0.268677,0.268677,0.277282,0.268678,0.268677,0.268677,0.268677,0.268677,0.268677,0.268677,,,,,,,0.306722,0.268677,0.270367,0.268677,0.277282,0.268678,0.268677,0.268677,0.268677,0.268677,0.113779,0.102366,0.102873,0.102366,0.104947,0.102366,0.102366,0.102366,0.053601,0.053601,23.650991,26.999955,26.831186,26.999996,26.162037,26.999911,27,27,27,27,,,,,,,,,,,2580,2580,0.268677,0.268677,0.268677,0.268677,0.268677,0.268677,0.268677,0.268677,0.102366,0.102366,27,27,, +10675,-1,0.129857,0,2,0,2,3,DIV,4,5,Wiard,Rd,1430407,0.989,1.118,0,2.782649,3.7,5,,0.173143,,0.173143,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.173143,,0.173143,,0.173143,,0.173143,,0.173143,,0.173143,,0.173169,,0.173143,,0.173169,,0.173143,,0.173143,,0.173143,,,,,,,,0.173143,,0.173143,,0.173169,,0.173143,,0.173143,,0.075317,,0.075317,,0.075325,,0.075317,,0.040256,,44.99985,,44.999934,,44.993128,,45,,45,,,,,,,,,,,,7568,,0.173143,,0.173143,,0.173143,,0.173143,,0.075317,,45,, +11564,0,0.057016,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.671,0.728,0,1.221762,5.8,4.5,0.126701,0.126701,0.126701,0.126701,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.165563,0.126708,0.126701,0.126701,0.165563,0.126708,0.128302,0.126707,0.126701,0.126701,0.128302,0.126707,0.134447,0.126923,0.126701,0.126701,0.134447,0.126923,0.126701,0.126701,0.126701,0.126701,0.126701,0.126701,,,,,,,0.165563,0.126708,0.128302,0.126707,0.134447,0.126923,0.126701,0.126701,0.126701,0.126701,0.059932,0.048275,0.048753,0.048275,0.050597,0.04834,0.048273,0.048273,0.025277,0.025277,20.662483,26.998596,26.663061,26.998755,25.444407,26.952754,27,27,27,27,,,,,,,,,,,2580,2580,0.126701,0.126701,0.126701,0.126701,0.126701,0.126701,0.126701,0.126701,0.048273,0.048273,27,27,, +10664,1,0.174046,2,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0.825,0.999,0,3.729561,3.7,5,0.232062,,0.232062,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.23208,,0.232062,,0.23208,,0.232063,,0.232062,,0.232063,,0.232219,,0.232062,,0.232219,,0.232062,,0.232062,,0.232062,,,,,,,,0.23208,,0.232063,,0.232219,,0.232062,,0.232062,,0.100952,,0.100947,,0.100994,,0.100947,,0.053954,,44.996368,,44.999733,,44.969459,,45,,45,,,,,,,,,,,,7568,,0.232062,,0.232062,,0.232062,,0.232062,,0.100947,,45,,, +9723,0,0.441067,2,2,1,2,3,,4,5,Michigan,Ave,1427804,3.753,4.194,0,9.451426,3.7,5,0.6616,0.6616,0.6616,0.6616,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.671856,0.720926,0.6616,0.6616,0.671856,0.720926,0.663877,0.664187,0.6616,0.6616,0.663877,0.664187,0.693146,0.678538,0.6616,0.6616,0.693146,0.678538,0.6616,0.6616,0.6616,0.6616,0.6616,0.6616,,,,,,,0.671856,0.720926,0.663877,0.664187,0.693146,0.678538,0.6616,0.6616,0.6616,0.6616,0.280949,0.29567,0.278555,0.278648,0.287336,0.282953,0.277872,0.277872,0.147757,0.147757,39.389404,36.708311,39.862811,39.844175,38.179533,39.001507,40,40,40,40,,,,,,,,,,,7946,7946,0.6616,0.6616,0.6616,0.6616,0.6616,0.6616,0.6616,0.6616,0.277872,0.277872,40,40,, +11326,0,0.269203,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.659,2.929,0,5.768641,5.8,4.5,0.598229,0.598229,0.598229,0.598229,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.598231,0.598231,0.598229,0.598229,0.598231,0.598231,0.598231,0.598231,0.598229,0.598229,0.598231,0.598231,0.598238,0.598239,0.598229,0.598229,0.598238,0.598239,0.598229,0.598229,0.598229,0.598229,0.598229,0.598229,,,,,,,0.598231,0.598231,0.598231,0.598231,0.598238,0.598239,0.598229,0.598229,0.598229,0.598229,0.227926,0.227926,0.227926,0.227926,0.227928,0.227928,0.227925,0.227925,0.119347,0.119347,26.999933,26.999922,26.999945,26.999943,26.999629,26.999572,27,27,27,27,,,,,,,,,,,2580,2580,0.598229,0.598229,0.598229,0.598229,0.598229,0.598229,0.598229,0.598229,0.227925,0.227925,27,27,, +11491,0,0.069447,1,1,0,2,7,,4,5,Wiard,Rd,1440201,0,0.069,0,1.488156,6.55,4.5,0.166673,0.166673,0.166673,0.166673,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.166674,0.166674,0.166673,0.166673,0.166674,0.166674,0.166674,0.166674,0.166673,0.166673,0.166674,0.166674,0.166674,0.166674,0.166673,0.166673,0.166674,0.166674,0.166673,0.166673,0.166673,0.166673,0.166673,0.166673,,,,,,,0.166674,0.166674,0.166674,0.166674,0.166674,0.166674,0.166673,0.166673,0.166673,0.166673,0.062503,0.062503,0.062503,0.062503,0.062503,0.062503,0.062503,0.062503,0.03264,0.03264,24.999917,24.999976,24.999995,24.999997,24.999915,24.999886,25,25,25,25,,,,,,,,,,,2064,2064,0.166673,0.166673,0.166673,0.166673,0.166673,0.166673,0.166673,0.166673,0.062503,0.062503,25,25,, +11497,0,0.317728,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.444,1.761,0,6.808447,5.8,4.5,0.706061,0.706061,0.706061,0.706061,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.70609,0.706073,0.706061,0.706061,0.70609,0.706073,0.706064,0.706063,0.706061,0.706061,0.706064,0.706063,0.706182,0.706148,0.706061,0.706061,0.706182,0.706148,0.706061,0.706061,0.706061,0.706061,0.706061,0.706061,,,,,,,0.70609,0.706073,0.706064,0.706063,0.706182,0.706148,0.706061,0.706061,0.706061,0.706061,0.269018,0.269013,0.26901,0.26901,0.269046,0.269035,0.269009,0.269009,0.140859,0.140859,26.99888,26.999555,26.999874,26.999942,26.995378,26.996677,27,27,27,27,,,,,,,,,,,2580,2580,0.706061,0.706061,0.706061,0.706061,0.706061,0.706061,0.706061,0.706061,0.269009,0.269009,27,27,, +21403,0,0.293375,1,1,0,2,5,,4,5,Ford,Blvd,4603131,1.278,1.571,0,6.286609,5.8,4.5,0.651945,0.651945,0.651945,0.651945,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.653149,0.65781,0.651945,0.651945,0.653149,0.65781,0.652769,0.653048,0.651945,0.651945,0.652769,0.653048,0.671789,0.658981,0.651945,0.651945,0.671789,0.658981,0.651945,0.651945,0.651945,0.651945,0.651945,0.651945,,,,,,,0.653149,0.65781,0.652769,0.653048,0.671789,0.658981,0.651945,0.651945,0.651945,0.651945,0.248752,0.25015,0.248638,0.248722,0.254344,0.250502,0.248391,0.248391,0.130063,0.130063,26.950204,26.759272,26.965885,26.954372,26.202446,26.711702,27,27,27,27,,,,,,,,,,,2580,2580,0.651945,0.651945,0.651945,0.651945,0.651945,0.651945,0.651945,0.651945,0.248391,0.248391,27,27,, +25297,0,0.332786,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.131137,0.15,4,1.331146,1.331146,1.331146,1.331146,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,,,,,,,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,0.459245,0.459245,0.459245,0.459245,0.459245,0.459245,0.459245,0.459245,0.236278,0.236278,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,1.331146,0.459245,0.459245,15,15,, +25298,0,0.28759,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.162645,0.15,4,1.15036,1.15036,1.15036,1.15036,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,,,,,,,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,0.396874,0.396874,0.396874,0.396874,0.396874,0.396874,0.396874,0.396874,0.204189,0.204189,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,1.15036,0.396874,0.396874,15,15,, +26815,0,0.288474,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.181589,0.15,4,1.153897,1.153897,1.153897,1.153897,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,,,,,,,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,0.398094,0.398094,0.398094,0.398094,0.398094,0.398094,0.398094,0.398094,0.204817,0.204817,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,1.153897,0.398094,0.398094,15,15,, +26817,0,0.405829,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.696346,0.15,4,1.623318,1.623318,1.623318,1.623318,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,,,,,,,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,0.560045,0.560045,0.560045,0.560045,0.560045,0.560045,0.560045,0.560045,0.288139,0.288139,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,1.623318,0.560045,0.560045,15,15,, +9231,0,0.137139,1,1,0,2,4,,4,5,Forest,Ave,1429906,2.026,2.164,0,2.938702,4.5,4.5,0.216536,0.216536,0.216536,0.216536,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.234704,0.242218,0.216536,0.216536,0.234704,0.242218,0.223198,0.223525,0.216536,0.216536,0.223198,0.223525,0.246953,0.2543,0.216536,0.216536,0.246953,0.2543,0.216536,0.216536,0.216536,0.216536,0.216536,0.216536,,,,,,,0.234704,0.242218,0.223198,0.223525,0.246953,0.2543,0.216536,0.216536,0.216536,0.216536,0.095096,0.09735,0.091644,0.091743,0.098771,0.100975,0.089646,0.089646,0.047566,0.047566,35.058509,33.970931,36.865827,36.811827,33.319578,32.356885,38,38,38,38,,,,,,,,,,,3096,3096,0.216536,0.216536,0.216536,0.216536,0.216536,0.216536,0.216536,0.216536,0.089646,0.089646,38,38,, +9724,0,0.345189,2,2,1,2,3,,4,5,Michigan,Ave,1427804,3.408,3.753,0,7.396901,3.7,5,0.517783,0.517783,0.517783,0.517783,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.520055,0.528778,0.517783,0.517783,0.520055,0.528778,0.518188,0.518287,0.517783,0.517783,0.518188,0.518287,0.524858,0.522273,0.517783,0.517783,0.524858,0.522273,0.517783,0.517783,0.517783,0.517783,0.517783,0.517783,,,,,,,0.520055,0.528778,0.518188,0.518287,0.524858,0.522273,0.517783,0.517783,0.517783,0.517783,0.21815,0.220767,0.21759,0.21762,0.219591,0.218816,0.217469,0.217469,0.115638,0.115638,39.825258,39.168251,39.968718,39.961135,39.460794,39.656118,40,40,40,40,,,,,,,,,,,7946,7946,0.517783,0.517783,0.517783,0.517783,0.517783,0.517783,0.517783,0.517783,0.217469,0.217469,40,40,, +10403,0,0.055994,1,1,0,2,4,,4,5,Harris,Rd,1428205,0,0.056,0,1.199873,4.5,4.5,0.088412,0.088412,0.088412,0.088412,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.093216,0.088541,0.088412,0.088412,0.093216,0.088541,0.08909,0.088426,0.088412,0.088412,0.08909,0.088426,0.09239,0.088872,0.088412,0.088412,0.09239,0.088872,0.088412,0.088412,0.088412,0.088412,0.088412,0.088412,,,,,,,0.093216,0.088541,0.08909,0.088426,0.09239,0.088872,0.088412,0.088412,0.088412,0.088412,0.038044,0.036641,0.036806,0.036607,0.037796,0.03674,0.036602,0.036602,0.019421,0.019421,36.04136,37.94442,37.710648,37.993969,36.363638,37.803279,38,38,38,38,,,,,,,,,,,3096,3096,0.088412,0.088412,0.088412,0.088412,0.088412,0.088412,0.088412,0.088412,0.036602,0.036602,38,38,, +11499,0,0.063249,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.306,1.369,0,1.355332,5.8,4.5,0.140553,0.140553,0.140553,0.140553,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.140553,0.140562,0.140553,0.140553,0.140553,0.140562,0.140554,0.140557,0.140553,0.140553,0.140554,0.140557,0.140601,0.140565,0.140553,0.140553,0.140601,0.140565,0.140553,0.140553,0.140553,0.140553,0.140553,0.140553,,,,,,,0.140553,0.140562,0.140554,0.140557,0.140601,0.140565,0.140553,0.140553,0.140553,0.140553,0.053551,0.053553,0.053551,0.053552,0.053565,0.053554,0.053551,0.053551,0.02804,0.02804,26.999915,26.99831,26.999722,26.999306,26.990678,26.997607,27,27,27,27,,,,,,,,,,,2580,2580,0.140553,0.140553,0.140553,0.140553,0.140553,0.140553,0.140553,0.140553,0.053551,0.053551,27,27,, +22106,0,0.3409,1,1,1,2,4,,4,5,Ford,Blvd,4603131,0.413,0.754,0,7.304992,4.5,4.5,0.538263,0.538263,0.538263,0.538263,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.624927,0.594631,0.538263,0.538263,0.624927,0.594631,0.564973,0.562601,0.538263,0.538263,0.564973,0.562601,0.697975,0.667197,0.538263,0.538263,0.697975,0.667197,0.538263,0.538263,0.538263,0.538263,0.538263,0.538263,,,,,,,0.624927,0.594631,0.564973,0.562601,0.697975,0.667197,0.538263,0.538263,0.538263,0.538263,0.24884,0.239751,0.230854,0.230142,0.270755,0.261521,0.222841,0.222841,0.118238,0.118238,32.730214,34.397768,36.20344,36.356085,29.304733,30.656595,38,38,38,38,,,,,,,,,,,3406,3406,0.538263,0.538263,0.538263,0.538263,0.538263,0.538263,0.538263,0.538263,0.222841,0.222841,38,38,, +30036,0,0.368472,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.895822,0.15,4,1.473887,1.473887,1.473887,1.473887,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,,,,,,,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,0.508491,0.508491,0.508491,0.508491,0.508491,0.508491,0.508491,0.508491,0.261615,0.261615,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,1.473887,0.508491,0.508491,15,15,, +9916,0,0.269612,2,2,1,2,3,,4,5,Michigan,Ave,1427804,3.138,3.408,0,5.777405,3.7,5,0.404418,0.404418,0.404418,0.404418,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.406085,0.406664,0.404418,0.404418,0.406085,0.406664,0.404956,0.404567,0.404418,0.404418,0.404956,0.404567,0.410491,0.405901,0.404418,0.404418,0.410491,0.405901,0.404418,0.404418,0.404418,0.404418,0.404418,0.404418,,,,,,,0.406085,0.406664,0.404956,0.404567,0.410491,0.405901,0.404418,0.404418,0.404418,0.404418,0.170356,0.170529,0.170017,0.1699,0.171677,0.170301,0.169856,0.169856,0.09032,0.09032,39.835832,39.77915,39.946854,39.985291,39.408275,39.853887,40,40,40,40,,,,,,,,,,,7946,7946,0.404418,0.404418,0.404418,0.404418,0.404418,0.404418,0.404418,0.404418,0.169856,0.169856,40,40,, +25517,0,0.16187,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.468642,0.15,4,0.64748,0.64748,0.64748,0.64748,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,,,,,,,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.223381,0.223381,0.223381,0.223381,0.223381,0.223381,0.223381,0.223381,0.114928,0.114928,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.64748,0.223381,0.223381,15,15,, +9815,0,0.254053,1,1,0,2,4,,4,5,Forest,Ave,1429906,1.772,2.026,0,5.443993,4.5,4.5,0.401136,0.401136,0.401136,0.401136,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.425362,0.428332,0.401136,0.401136,0.425362,0.428332,0.406778,0.409625,0.401136,0.401136,0.406778,0.409625,0.436413,0.446412,0.401136,0.401136,0.436413,0.446412,0.401136,0.401136,0.401136,0.401136,0.401136,0.401136,,,,,,,0.425362,0.428332,0.406778,0.409625,0.436413,0.446412,0.401136,0.401136,0.401136,0.401136,0.173338,0.174229,0.167763,0.168617,0.176653,0.179653,0.16607,0.16607,0.088116,0.088116,35.835817,35.587313,37.472989,37.212535,34.928334,34.145974,38,38,38,38,,,,,,,,,,,3096,3096,0.401136,0.401136,0.401136,0.401136,0.401136,0.401136,0.401136,0.401136,0.16607,0.16607,38,38,, +10376,0,0.258073,1,1,0,2,5,,4,5,Harris,Rd,1428205,0.307,0.565,0,5.530126,5.8,4.5,0.573495,0.573495,0.573495,0.573495,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.573495,0.573514,0.573495,0.573495,0.573495,0.573514,0.5735,0.573509,0.573495,0.573495,0.5735,0.573509,0.573627,0.57353,0.573495,0.573495,0.573627,0.57353,0.573495,0.573495,0.573495,0.573495,0.573495,0.573495,,,,,,,0.573495,0.573514,0.5735,0.573509,0.573627,0.57353,0.573495,0.573495,0.573495,0.573495,0.218502,0.218507,0.218503,0.218506,0.218541,0.218512,0.218501,0.218501,0.114412,0.114412,26.999958,26.999064,26.999747,26.999337,26.993776,26.998313,27,27,27,27,,,,,,,,,,,2580,2580,0.573495,0.573495,0.573495,0.573495,0.573495,0.573495,0.573495,0.573495,0.218501,0.218501,27,27,, +11500,0,0.369637,1,1,0,2,5,,4,5,Holmes,Rd,1435108,0.936,1.306,0,7.920791,5.8,4.5,0.821415,0.821415,0.821415,0.821415,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,,,,,,,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.312959,0.312959,0.312959,0.312959,0.312959,0.312959,0.312959,0.312959,0.163872,0.163872,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.821415,0.312959,0.312959,27,27,, +25522,0,0.116867,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.504292,0.15,4,0.467468,0.467468,0.467468,0.467468,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,,,,,,,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.161276,0.161276,0.161276,0.161276,0.161276,0.161276,0.161276,0.161276,0.082976,0.082976,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.467468,0.161276,0.161276,15,15,, +10131,0,0.251495,1,1,0,2,4,,4,5,Harris,Rd,1428205,0.056,0.307,0,5.389168,4.5,4.5,0.397097,0.397097,0.397097,0.397097,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.397102,0.397188,0.397097,0.397097,0.397102,0.397188,0.397143,0.397121,0.397097,0.397097,0.397143,0.397121,0.397346,0.397207,0.397097,0.397097,0.397346,0.397207,0.397097,0.397097,0.397097,0.397097,0.397097,0.397097,,,,,,,0.397102,0.397188,0.397143,0.397121,0.397346,0.397207,0.397097,0.397097,0.397097,0.397097,0.1644,0.164426,0.164412,0.164405,0.164473,0.164431,0.164398,0.164398,0.087229,0.087229,37.999467,37.991216,37.995549,37.997638,37.976153,37.989456,38,38,38,38,,,,,,,,,,,3096,3096,0.397097,0.397097,0.397097,0.397097,0.397097,0.397097,0.397097,0.397097,0.164398,0.164398,38,38,, +25508,0,0.266885,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.718967,0.15,4,1.067541,1.067541,1.067541,1.067541,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,,,,,,,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,0.368301,0.368301,0.368301,0.368301,0.368301,0.368301,0.368301,0.368301,0.189488,0.189488,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,1.067541,0.368301,0.368301,15,15,, +11553,0,0.137569,1,1,0,2,7,,4,5,Russell,St,1434102,0.25,0.388,0,2.947914,6.55,4.5,0.330166,0.330166,0.330166,0.330166,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.330168,0.330169,0.330166,0.330166,0.330168,0.330169,0.330168,0.330168,0.330166,0.330166,0.330168,0.330168,0.33018,0.33018,0.330166,0.330166,0.33018,0.33018,0.330166,0.330166,0.330166,0.330166,0.330166,0.330166,,,,,,,0.330168,0.330169,0.330168,0.330168,0.33018,0.33018,0.330166,0.330166,0.330166,0.330166,0.123813,0.123813,0.123813,0.123813,0.123816,0.123817,0.123812,0.123812,0.064658,0.064658,24.999911,24.999815,24.99988,24.999866,24.998974,24.998954,25,25,25,25,,,,,,,,,,,2064,2064,0.330166,0.330166,0.330166,0.330166,0.330166,0.330166,0.330166,0.330166,0.123812,0.123812,25,25,, +37888,0,0.706824,1,1,1,2,5,,3,3,11 Mile,Rd,657010,0,0.707,0,15.146226,8,4.5,1.696377,1.696377,1.696377,1.696377,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,1.708512,1.696597,1.696377,1.696377,1.708512,1.696597,1.697409,1.699192,1.696377,1.696377,1.697409,1.699192,1.697381,1.90272,1.696377,1.696377,1.697381,1.90272,1.696377,1.696377,1.696377,1.696377,1.696377,1.696377,,,,,,,1.708512,1.696597,1.697409,1.699192,1.697381,1.90272,1.696377,1.696377,1.696377,1.696377,0.639782,0.636207,0.636451,0.636986,0.636443,0.698044,0.636141,0.636141,0.332207,0.332207,24.822441,24.996769,24.984812,24.958595,24.985213,22.288847,25,25,25,25,,,,,,,,,,,2649,2649,1.696377,1.696377,1.696377,1.696377,1.696377,1.696377,1.696377,1.696377,0.636141,0.636141,25,25,, +10186,0,0.191095,1,1,0,2,4,,4,5,Forest,Ave,1429906,2.164,2.355,0,4.094894,4.5,4.5,0.301729,0.301729,0.301729,0.301729,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.372472,0.334035,0.301729,0.301729,0.372472,0.334035,0.321407,0.319527,0.301729,0.301729,0.321407,0.319527,0.373247,0.418545,0.301729,0.301729,0.373247,0.418545,0.301729,0.301729,0.301729,0.301729,0.301729,0.301729,,,,,,,0.372472,0.334035,0.321407,0.319527,0.373247,0.418545,0.301729,0.301729,0.301729,0.301729,0.146139,0.134608,0.130819,0.130255,0.146371,0.15996,0.124916,0.124916,0.06628,0.06628,30.782723,34.324865,35.673509,35.883384,30.718776,27.394226,38,38,38,38,,,,,,,,,,,3096,3096,0.301729,0.301729,0.301729,0.301729,0.301729,0.301729,0.301729,0.301729,0.124916,0.124916,38,38,, +21602,0,0.256806,1,1,1,2,5,,4,5,Ford,Blvd,4603131,1.021,1.278,0,5.502985,5.8,4.5,0.57068,0.57068,0.57068,0.57068,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.576973,0.591088,0.57068,0.57068,0.576973,0.591088,0.575157,0.57554,0.57068,0.57068,0.575157,0.57554,0.628857,0.595274,0.57068,0.57068,0.628857,0.595274,0.57068,0.57068,0.57068,0.57068,0.57068,0.57068,,,,,,,0.576973,0.591088,0.575157,0.57554,0.628857,0.595274,0.57068,0.57068,0.57068,0.57068,0.219317,0.223552,0.218772,0.218887,0.234882,0.224807,0.217429,0.217429,0.113851,0.113851,26.705488,26.067772,26.789829,26.772001,24.50215,25.884499,27,27,27,27,,,,,,,,,,,2838,2838,0.57068,0.57068,0.57068,0.57068,0.57068,0.57068,0.57068,0.57068,0.217429,0.217429,27,27,, +21840,0,0.26739,1,1,1,2,4,,4,5,Ford,Blvd,4603131,0.754,1.021,0,5.729785,4.5,4.5,0.422195,0.422195,0.422195,0.422195,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.490171,0.466408,0.422195,0.422195,0.490171,0.466408,0.443146,0.441285,0.422195,0.422195,0.443146,0.441285,0.547468,0.523326,0.422195,0.422195,0.547468,0.523326,0.422195,0.422195,0.422195,0.422195,0.422195,0.422195,,,,,,,0.490171,0.466408,0.443146,0.441285,0.547468,0.523326,0.422195,0.422195,0.422195,0.422195,0.195181,0.188053,0.181074,0.180516,0.212371,0.205128,0.174789,0.174789,0.092742,0.092742,32.730214,34.397768,36.20344,36.356085,29.304733,30.656595,38,38,38,38,,,,,,,,,,,3406,3406,0.422195,0.422195,0.422195,0.422195,0.422195,0.422195,0.422195,0.422195,0.174789,0.174789,38,38,, +11498,0,0.074975,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.369,1.444,0,1.606599,5.8,4.5,0.16661,0.16661,0.16661,0.16661,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.167077,0.166855,0.16661,0.16661,0.167077,0.166855,0.166743,0.166738,0.16661,0.16661,0.166743,0.166738,0.167586,0.167736,0.16661,0.16661,0.167586,0.167736,0.16661,0.16661,0.16661,0.16661,0.16661,0.16661,,,,,,,0.167077,0.166855,0.166743,0.166738,0.167586,0.167736,0.16661,0.16661,0.16661,0.16661,0.063619,0.063552,0.063518,0.063517,0.063771,0.063816,0.063478,0.063478,0.033239,0.033239,26.924554,26.960454,26.978446,26.979351,26.842743,26.818769,27,27,27,27,,,,,,,,,,,2580,2580,0.16661,0.16661,0.16661,0.16661,0.16661,0.16661,0.16661,0.16661,0.063478,0.063478,27,27,, +10106,0,0.208737,1,1,0,2,4,,4,5,Lamay,Ave,1428210,0,0.209,0,4.472943,4.5,4.5,0.329585,0.329585,0.329585,0.329585,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.366918,0.339342,0.329585,0.329585,0.366918,0.339342,0.337456,0.337983,0.329585,0.329585,0.337456,0.337983,0.363398,0.3865,0.329585,0.329585,0.363398,0.3865,0.329585,0.329585,0.329585,0.329585,0.329585,0.329585,,,,,,,0.366918,0.339342,0.337456,0.337983,0.363398,0.3865,0.329585,0.329585,0.329585,0.329585,0.147648,0.139375,0.13881,0.138968,0.146592,0.153523,0.136448,0.136448,0.072399,0.072399,34.133633,36.907472,37.113687,37.055856,34.464248,32.404242,38,38,38,38,,,,,,,,,,,3096,3096,0.329585,0.329585,0.329585,0.329585,0.329585,0.329585,0.329585,0.329585,0.136448,0.136448,38,38,, +26816,0,0.022415,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,0.480327,0.15,4,0.089661,0.089661,0.089661,0.089661,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,,,,,,,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.030933,0.030933,0.030933,0.030933,0.030933,0.030933,0.030933,0.030933,0.015915,0.015915,14.999999,14.999991,14.999997,14.999996,14.999982,14.999992,15,15,15,15,,,,,,,,,,,34400,34400,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.089661,0.030933,0.030933,15,15,, +11238,0,0.539864,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0.869,1.409,0,11.568521,6.55,4.5,1.295674,1.295674,1.295674,1.295674,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.295675,1.295833,1.295674,1.295674,1.295675,1.295833,1.295676,1.295676,1.295674,1.295674,1.295676,1.295676,1.295818,1.295678,1.295674,1.295674,1.295818,1.295678,1.295674,1.295674,1.295674,1.295674,1.295674,1.295674,,,,,,,1.295675,1.295833,1.295676,1.295676,1.295818,1.295678,1.295674,1.295674,1.295674,1.295674,0.485878,0.485926,0.485878,0.485878,0.485921,0.485879,0.485878,0.485878,0.253736,0.253736,24.999991,24.996935,24.999966,24.999962,24.997231,24.999922,25,25,25,25,,,,,,,,,,,2064,2064,1.295674,1.295674,1.295674,1.295674,1.295674,1.295674,1.295674,1.295674,0.485878,0.485878,25,25,, +11338,0,0.219135,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.44,2.659,0,4.695758,5.8,4.5,0.486968,0.486968,0.486968,0.486968,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.492356,0.488213,0.486968,0.486968,0.492356,0.488213,0.487663,0.487486,0.486968,0.486968,0.487663,0.487486,0.492866,0.503642,0.486968,0.486968,0.492866,0.503642,0.486968,0.486968,0.486968,0.486968,0.486968,0.486968,,,,,,,0.492356,0.488213,0.487663,0.487486,0.492866,0.503642,0.486968,0.486968,0.486968,0.486968,0.187151,0.185908,0.185743,0.18569,0.187304,0.190537,0.185535,0.185535,0.09715,0.09715,26.704531,26.931097,26.96148,26.971304,26.676876,26.10608,27,27,27,27,,,,,,,,,,,2580,2580,0.486968,0.486968,0.486968,0.486968,0.486968,0.486968,0.486968,0.486968,0.185535,0.185535,27,27,, +25302,0,0.489953,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.499003,0.15,4,1.959814,1.959814,1.959814,1.959814,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,,,,,,,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,0.676136,0.676136,0.676136,0.676136,0.676136,0.676136,0.676136,0.676136,0.347867,0.347867,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,1.959814,0.676136,0.676136,15,15,, +30003,0,0.208036,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.457911,0.15,4,0.832143,0.832143,0.832143,0.832143,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,,,,,,,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.287089,0.287089,0.287089,0.287089,0.287089,0.287089,0.287089,0.287089,0.147705,0.147705,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.832143,0.287089,0.287089,15,15,, +30005,0,0.490616,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.513206,0.15,4,1.962465,1.962465,1.962465,1.962465,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,,,,,,,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,0.67705,0.67705,0.67705,0.67705,0.67705,0.67705,0.67705,0.67705,0.348338,0.348338,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,1.962465,0.67705,0.67705,15,15,, +11348,0,0.174196,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.187,2.361,0,3.732762,5.8,4.5,0.387101,0.387101,0.387101,0.387101,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.387405,0.387902,0.387101,0.387101,0.387405,0.387902,0.38716,0.387191,0.387101,0.387101,0.38716,0.387191,0.388322,0.388379,0.387101,0.387101,0.388322,0.388379,0.387101,0.387101,0.387101,0.387101,0.387101,0.387101,,,,,,,0.387405,0.387902,0.38716,0.387191,0.388322,0.388379,0.387101,0.387101,0.387101,0.387101,0.147577,0.147726,0.147503,0.147513,0.147852,0.147869,0.147486,0.147486,0.077227,0.077227,26.978841,26.944261,26.99589,26.993735,26.915097,26.911181,27,27,27,27,,,,,,,,,,,2580,2580,0.387101,0.387101,0.387101,0.387101,0.387101,0.387101,0.387101,0.387101,0.147486,0.147486,27,27,, +30075,0,0.361989,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.756899,0.15,4,1.447955,1.447955,1.447955,1.447955,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,,,,,,,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,0.499544,0.499544,0.499544,0.499544,0.499544,0.499544,0.499544,0.499544,0.257012,0.257012,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,1.447955,0.499544,0.499544,15,15,, +30076,0,0.251839,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.396556,0.15,4,1.007357,1.007357,1.007357,1.007357,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,,,,,,,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,0.347538,0.347538,0.347538,0.347538,0.347538,0.347538,0.347538,0.347538,0.178806,0.178806,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,1.007357,0.347538,0.347538,15,15,, +11352,0,0.165628,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.022,2.187,0,3.549171,5.8,4.5,0.368062,0.368062,0.368062,0.368062,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.368231,0.369167,0.368062,0.368062,0.368231,0.369167,0.368123,0.368163,0.368062,0.368062,0.368123,0.368163,0.369229,0.368884,0.368062,0.368062,0.369229,0.368884,0.368062,0.368062,0.368062,0.368062,0.368062,0.368062,,,,,,,0.368231,0.369167,0.368123,0.368163,0.369229,0.368884,0.368062,0.368062,0.368062,0.368062,0.140282,0.140563,0.14025,0.140262,0.140582,0.140478,0.140232,0.140232,0.073428,0.073428,26.987628,26.919199,26.995517,26.992583,26.914645,26.939831,27,27,27,27,,,,,,,,,,,2580,2580,0.368062,0.368062,0.368062,0.368062,0.368062,0.368062,0.368062,0.368062,0.140232,0.140232,27,27,, +11340,0,0.079099,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.361,2.44,0,1.694972,5.8,4.5,0.175775,0.175775,0.175775,0.175775,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.176014,0.176395,0.175775,0.175775,0.176014,0.176395,0.175814,0.175826,0.175775,0.175775,0.175814,0.175826,0.176721,0.176808,0.175775,0.175775,0.176721,0.176808,0.175775,0.175775,0.175775,0.175775,0.175775,0.175775,,,,,,,0.176014,0.176395,0.175814,0.175826,0.176721,0.176808,0.175775,0.175775,0.175775,0.175775,0.067042,0.067156,0.066982,0.066986,0.067254,0.06728,0.06697,0.06697,0.035067,0.035067,26.963313,26.905111,26.994017,26.992125,26.855441,26.842295,27,27,27,27,,,,,,,,,,,2580,2580,0.175775,0.175775,0.175775,0.175775,0.175775,0.175775,0.175775,0.175775,0.06697,0.06697,27,27,, +26682,0,0.295747,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.337425,0.15,4,1.182986,1.182986,1.182986,1.182986,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,,,,,,,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,0.40813,0.40813,0.40813,0.40813,0.40813,0.40813,0.40813,0.40813,0.20998,0.20998,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,1.182986,0.40813,0.40813,15,15,, +11484,0,0.247409,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0.622,0.869,0,5.301624,6.55,4.5,0.593782,0.593782,0.593782,0.593782,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.593796,0.59508,0.593782,0.593782,0.593796,0.59508,0.593783,0.593783,0.593782,0.593782,0.593783,0.593783,0.594947,0.593836,0.593782,0.593782,0.594947,0.593836,0.593782,0.593782,0.593782,0.593782,0.593782,0.593782,,,,,,,0.593796,0.59508,0.593783,0.593783,0.594947,0.593836,0.593782,0.593782,0.593782,0.593782,0.222672,0.223058,0.222668,0.222668,0.223018,0.222684,0.222668,0.222668,0.116282,0.116282,24.999408,24.945475,24.999971,24.999966,24.951059,24.997741,25,25,25,25,,,,,,,,,,,2064,2064,0.593782,0.593782,0.593782,0.593782,0.593782,0.593782,0.593782,0.593782,0.222668,0.222668,25,25,, +30004,0,0.174026,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.729136,0.15,4,0.696105,0.696105,0.696105,0.696105,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,,,,,,,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.240156,0.240156,0.240156,0.240156,0.240156,0.240156,0.240156,0.240156,0.123559,0.123559,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.696105,0.240156,0.240156,15,15,, +9913,0,0.267083,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.194,4.461,0,5.723216,3.7,5,0.400625,0.400625,0.400625,0.400625,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.406835,0.43655,0.400625,0.400625,0.406835,0.43655,0.402004,0.402192,0.400625,0.400625,0.402004,0.402192,0.419728,0.410882,0.400625,0.400625,0.419728,0.410882,0.400625,0.400625,0.400625,0.400625,0.400625,0.400625,,,,,,,0.406835,0.43655,0.402004,0.402192,0.419728,0.410882,0.400625,0.400625,0.400625,0.400625,0.170126,0.17904,0.168676,0.168733,0.173993,0.17134,0.168263,0.168263,0.089473,0.089473,39.389404,36.708311,39.862811,39.844175,38.179533,39.001507,40,40,40,40,,,,,,,,,,,7946,7946,0.400625,0.400625,0.400625,0.400625,0.400625,0.400625,0.400625,0.400625,0.168263,0.168263,40,40,, +11496,0,0.548585,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.761,2.31,0,11.75539,5.8,4.5,1.219078,1.219078,1.219078,1.219078,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.219128,1.219105,1.219078,1.219078,1.219128,1.219105,1.219083,1.21908,1.219078,1.219078,1.219083,1.21908,1.219357,1.219228,1.219078,1.219078,1.219357,1.219228,1.219078,1.219078,1.219078,1.219078,1.219078,1.219078,,,,,,,1.219128,1.219105,1.219083,1.21908,1.219357,1.219228,1.219078,1.219078,1.219078,1.219078,0.464484,0.464477,0.46447,0.464469,0.464552,0.464514,0.464469,0.464469,0.243206,0.243206,26.99888,26.999395,26.999874,26.999942,26.993815,26.996677,27,27,27,27,,,,,,,,,,,2580,2580,1.219078,1.219078,1.219078,1.219078,1.219078,1.219078,1.219078,1.219078,0.464469,0.464469,27,27,, +10791,0,0.712423,1,1,0,2,7,,4,5,Wiard,Blvd,1440105,0.089,0.801,0,15.266208,6.55,4.5,1.709815,1.709815,1.709815,1.709815,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.709817,1.709821,1.709815,1.709815,1.709817,1.709821,1.709815,1.709816,1.709815,1.709815,1.709815,1.709816,1.709823,1.709821,1.709815,1.709815,1.709823,1.709821,1.709815,1.709815,1.709815,1.709815,1.709815,1.709815,,,,,,,1.709817,1.709821,1.709815,1.709816,1.709823,1.709821,1.709815,1.709815,1.709815,1.709815,0.641181,0.641182,0.641181,0.641181,0.641183,0.641182,0.641181,0.641181,0.334839,0.334839,24.999976,24.999917,24.999997,24.999995,24.999886,24.999915,25,25,25,25,,,,,,,,,,,2064,2064,1.709815,1.709815,1.709815,1.709815,1.709815,1.709815,1.709815,1.709815,0.641181,0.641181,25,25,, +11322,0,0.563385,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.929,3.492,0,12.072527,5.8,4.5,1.251966,1.251966,1.251966,1.251966,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.251966,1.251967,1.251966,1.251966,1.251966,1.251967,1.251966,1.251966,1.251966,1.251966,1.251966,1.251966,1.251968,1.251968,1.251966,1.251966,1.251968,1.251968,1.251966,1.251966,1.251966,1.251966,1.251966,1.251966,,,,,,,1.251966,1.251967,1.251966,1.251966,1.251968,1.251968,1.251966,1.251966,1.251966,1.251966,0.476999,0.476999,0.476999,0.476999,0.477,0.477,0.476999,0.476999,0.249767,0.249767,26.999995,26.999968,26.999998,26.999997,26.999943,26.999956,27,27,27,27,,,,,,,,,,,2580,2580,1.251966,1.251966,1.251966,1.251966,1.251966,1.251966,1.251966,1.251966,0.476999,0.476999,27,27,, +26814,0,0.107779,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.30954,0.15,4,0.431114,0.431114,0.431114,0.431114,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,,,,,,,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.148734,0.148734,0.148734,0.148734,0.148734,0.148734,0.148734,0.148734,0.076523,0.076523,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.431114,0.148734,0.148734,15,15,, +11495,0,0.088618,1,1,0,2,7,,4,5,Wiard,Blvd,1440105,0,0.089,0,1.898949,6.55,4.5,0.212682,0.212682,0.212682,0.212682,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.212682,0.212683,0.212682,0.212682,0.212682,0.212683,0.212682,0.212682,0.212682,0.212682,0.212682,0.212682,0.212683,0.212682,0.212682,0.212682,0.212683,0.212682,0.212682,0.212682,0.212682,0.212682,0.212682,0.212682,,,,,,,0.212682,0.212683,0.212682,0.212682,0.212683,0.212682,0.212682,0.212682,0.212682,0.212682,0.079756,0.079756,0.079756,0.079756,0.079756,0.079756,0.079756,0.079756,0.04165,0.04165,24.999999,24.999928,24.999999,24.999998,24.999948,24.99999,25,25,25,25,,,,,,,,,,,2064,2064,0.212682,0.212682,0.212682,0.212682,0.212682,0.212682,0.212682,0.212682,0.079756,0.079756,25,25,, +9499,0,0.872115,1,1,0,2,4,,5,5,Prospect,St,1428106,4.134,5.006,0,18.688179,3,4,1.308173,1.308173,1.308173,1.308173,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.570505,1.371138,1.308173,1.308173,1.570505,1.371138,1.315694,1.319832,1.308173,1.308173,1.315694,1.319832,1.379557,1.62636,1.308173,1.308173,1.379557,1.62636,1.308173,1.308173,1.308173,1.308173,1.308173,1.308173,,,,,,,1.570505,1.371138,1.315694,1.319832,1.379557,1.62636,1.308173,1.308173,1.308173,1.308173,0.628132,0.568322,0.551689,0.55293,0.570848,0.644889,0.549432,0.549432,0.292159,0.292159,33.318516,38.163109,39.771318,39.646634,37.93021,32.174243,40,40,40,40,,,,,,,,,,,3096,3096,1.308173,1.308173,1.308173,1.308173,1.308173,1.308173,1.308173,1.308173,0.549432,0.549432,40,40,, +10855,0,0.632642,1,1,0,2,4,,4,5,Geddes,Rd,1448104,7.2,7.832,0,13.556617,4.5,4.5,0.998909,0.998909,0.998909,0.998909,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.027017,1.275166,0.998909,0.998909,1.027017,1.275166,1.004593,1.011586,0.998909,0.998909,1.004593,1.011586,1.210937,1.066141,0.998909,0.998909,1.210937,1.066141,0.998909,0.998909,0.998909,0.998909,0.998909,0.998909,,,,,,,1.027017,1.275166,1.004593,1.011586,1.210937,1.066141,0.998909,0.998909,0.998909,0.998909,0.421981,0.496425,0.415254,0.417352,0.477157,0.433718,0.413548,0.413548,0.219427,0.219427,36.959993,29.76752,37.784981,37.52376,31.34642,35.60367,38,38,38,38,,,,,,,,,,,3096,3096,0.998909,0.998909,0.998909,0.998909,0.998909,0.998909,0.998909,0.998909,0.413548,0.413548,38,38,, +11176,0,1.002299,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,1.007,2.009,0,21.477845,5.55,5,3.006898,3.006898,3.006898,3.006898,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.006904,3.0069,3.006898,3.006898,3.006904,3.0069,3.006898,3.006898,3.006898,3.006898,3.006898,3.006898,3.006902,3.006906,3.006898,3.006898,3.006902,3.006906,3.006898,3.006898,3.006898,3.006898,3.006898,3.006898,,,,,,,3.006904,3.0069,3.006898,3.006898,3.006902,3.006906,3.006898,3.006898,3.006898,3.006898,1.082485,1.082484,1.082483,1.082483,1.082484,1.082486,1.082483,1.082483,0.561288,0.561288,19.999964,19.999986,20,20,19.999976,19.999948,20,20,20,20,,,,,,,,,,,2236,2236,3.006898,3.006898,3.006898,3.006898,3.006898,3.006898,3.006898,3.006898,1.082483,1.082483,20,20,, +11210,0,0.729919,1,1,0,2,3,,5,5,Ford,Rd,1431908,0.516,1.246,0,15.641114,1.7,4,0.875902,0.875902,0.875902,0.875902,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.062215,1.387957,0.875902,0.875902,1.062215,1.387957,0.925476,0.940293,0.875902,0.875902,0.925476,0.940293,1.353338,1.050658,0.875902,0.875902,1.353338,1.050658,0.875902,0.875902,0.875902,0.875902,0.875902,0.875902,,,,,,,1.062215,1.387957,0.925476,0.940293,1.353338,1.050658,0.875902,0.875902,0.875902,0.875902,0.45005,0.547773,0.409028,0.413473,0.537387,0.446583,0.394156,0.394156,0.211676,0.211676,41.230012,31.553652,47.321741,46.576016,32.360822,41.683527,50,50,50,50,,,,,,,,,,,3096,3096,0.875902,0.875902,0.875902,0.875902,0.875902,0.875902,0.875902,0.875902,0.394156,0.394156,50,50,, +11274,0,0.755488,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,3.161,3.916,0,16.189027,5.55,5,2.266464,2.266464,2.266464,2.266464,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.266464,2.266465,2.266464,2.266464,2.266464,2.266465,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,,,,,,,2.266464,2.266465,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,0.815927,0.815927,0.815927,0.815927,0.815927,0.815927,0.815927,0.815927,0.423073,0.423073,19.999999,19.999992,20,20,19.999998,19.999999,20,20,20,20,,,,,,,,,,,2236,2236,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,2.266464,0.815927,0.815927,20,20,, +25819,0,1.122181,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.046727,0.15,4,4.488722,4.488722,4.488722,4.488722,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,,,,,,,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,1.548609,1.548609,1.548609,1.548609,1.548609,1.548609,1.548609,1.548609,0.796748,0.796748,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,4.488722,1.548609,1.548609,15,15,, +25821,0,1.514671,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.457235,0.15,4,6.058684,6.058684,6.058684,6.058684,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,,,,,,,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,2.090246,2.090246,2.090246,2.090246,2.090246,2.090246,2.090246,2.090246,1.075416,1.075416,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,6.058684,2.090246,2.090246,15,15,, +26296,0,1.795445,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,38.473813,0.15,4,7.181778,7.181778,7.181778,7.181778,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,,,,,,,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,2.477714,2.477714,2.477714,2.477714,2.477714,2.477714,2.477714,2.477714,1.274766,1.274766,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,7.181778,2.477714,2.477714,15,15,, +9543,0,1.009593,1,1,0,2,4,,5,5,Prospect,St,1428106,2.995,4.004,0,21.634136,3,4,1.51439,1.51439,1.51439,1.51439,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.802396,1.585493,1.51439,1.51439,1.802396,1.585493,1.522638,1.52753,1.51439,1.51439,1.522638,1.52753,1.593656,1.872232,1.51439,1.51439,1.593656,1.872232,1.51439,1.51439,1.51439,1.51439,1.51439,1.51439,,,,,,,1.802396,1.585493,1.522638,1.52753,1.593656,1.872232,1.51439,1.51439,1.51439,1.51439,0.722446,0.657375,0.638518,0.639986,0.659823,0.743396,0.636044,0.636044,0.338214,0.338214,33.608364,38.206151,39.783311,39.65591,38.010455,32.354746,40,40,40,40,,,,,,,,,,,3096,3096,1.51439,1.51439,1.51439,1.51439,1.51439,1.51439,1.51439,1.51439,0.636044,0.636044,40,40,, +11055,0,0.335546,1,1,0,2,4,,4,5,Geddes,Rd,1448104,6.865,7.2,0,7.19028,4.5,4.5,0.52981,0.52981,0.52981,0.52981,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.551698,0.834567,0.52981,0.52981,0.551698,0.834567,0.539952,0.555634,0.52981,0.52981,0.539952,0.555634,0.746162,0.628157,0.52981,0.52981,0.746162,0.628157,0.52981,0.52981,0.52981,0.52981,0.52981,0.52981,,,,,,,0.551698,0.834567,0.539952,0.555634,0.746162,0.628157,0.52981,0.52981,0.52981,0.52981,0.225908,0.310768,0.222384,0.227089,0.284247,0.248845,0.219341,0.219341,0.116382,0.116382,36.492382,24.123634,37.286278,36.233905,26.981803,32.050561,38,38,38,38,,,,,,,,,,,3096,3096,0.52981,0.52981,0.52981,0.52981,0.52981,0.52981,0.52981,0.52981,0.219341,0.219341,38,38,, +10859,0,0.69041,1,1,0,2,4,,4,5,Geddes,Rd,1448104,6.174,6.865,0,14.794505,4.5,4.5,1.090121,1.090121,1.090121,1.090121,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.11951,1.78957,1.090121,1.090121,1.11951,1.78957,1.110329,1.144995,1.090121,1.090121,1.110329,1.144995,1.551127,1.254238,1.090121,1.090121,1.551127,1.254238,1.090121,1.090121,1.090121,1.090121,1.090121,1.090121,,,,,,,1.11951,1.78957,1.110329,1.144995,1.551127,1.254238,1.090121,1.090121,1.090121,1.090121,0.460127,0.661145,0.457373,0.467772,0.589612,0.500545,0.45131,0.45131,0.239463,0.239463,37.002445,23.147804,37.308419,36.178876,26.706144,33.027716,38,38,38,38,,,,,,,,,,,3096,3096,1.090121,1.090121,1.090121,1.090121,1.090121,1.090121,1.090121,1.090121,0.45131,0.45131,38,38,, +10319,0,0.13019,1,1,0,2,4,,5,5,Prospect,St,1428106,4.004,4.134,0,2.78979,3,4,0.195285,0.195285,0.195285,0.195285,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.234447,0.204685,0.195285,0.195285,0.234447,0.204685,0.196408,0.197026,0.195285,0.195285,0.196408,0.197026,0.205972,0.242785,0.195285,0.195285,0.205972,0.242785,0.195285,0.195285,0.195285,0.195285,0.195285,0.195285,,,,,,,0.234447,0.204685,0.196408,0.197026,0.205972,0.242785,0.195285,0.195285,0.195285,0.195285,0.093768,0.08484,0.082357,0.082542,0.085226,0.09627,0.08202,0.08202,0.043614,0.043614,33.318516,38.163109,39.771318,39.646634,37.924682,32.174243,40,40,40,40,,,,,,,,,,,3096,3096,0.195285,0.195285,0.195285,0.195285,0.195285,0.195285,0.195285,0.195285,0.08202,0.08202,40,40,, +9481,0,0.950727,1,1,0,2,5,,5,5,Prospect,St,1428106,6.013,6.963,0,20.372715,3.7,5,1.901453,1.901453,1.901453,1.901453,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.902163,1.903437,1.901453,1.901453,1.902163,1.903437,1.901459,1.901462,1.901453,1.901453,1.901459,1.901462,1.902583,1.903393,1.901453,1.901453,1.902583,1.903393,1.901453,1.901453,1.901453,1.901453,1.901453,1.901453,,,,,,,1.902163,1.903437,1.901459,1.901462,1.902583,1.903393,1.901453,1.901453,1.901453,1.901453,0.74178,0.742162,0.741568,0.741569,0.741906,0.742149,0.741567,0.741567,0.389798,0.389798,29.988812,29.968739,29.999919,29.999865,29.982193,29.96943,30,30,30,30,,,,,,,,,,,2580,2580,1.901453,1.901453,1.901453,1.901453,1.901453,1.901453,1.901453,1.901453,0.741567,0.741567,30,30,, +11217,0,0.516379,1,1,0,2,3,,5,5,Ford,Rd,1431908,0,0.516,0,11.065272,1.7,4,0.619655,0.619655,0.619655,0.619655,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.839133,1.700497,0.619655,0.619655,0.839133,1.700497,0.690434,0.695694,0.619655,0.619655,0.690434,0.695694,1.623524,0.87556,0.619655,0.619655,1.623524,0.87556,0.619655,0.619655,0.619655,0.619655,0.619655,0.619655,,,,,,,0.839133,1.700497,0.690434,0.695694,1.623524,0.87556,0.619655,0.619655,0.619655,0.619655,0.344688,0.603098,0.300078,0.301657,0.580005,0.355616,0.278845,0.278845,0.14975,0.14975,36.922338,18.219822,44.874338,44.535014,19.083651,35.386238,50,50,50,50,,,,,,,,,,,3096,3096,0.619655,0.619655,0.619655,0.619655,0.619655,0.619655,0.619655,0.619655,0.278845,0.278845,50,50,, +11241,0,0.695849,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,2.692,3.387,0,14.911058,3,4,1.043774,1.043774,1.043774,1.043774,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.428763,1.707089,1.043774,1.043774,1.428763,1.707089,1.04757,1.054007,1.043774,1.043774,1.04757,1.054007,1.453943,1.451475,1.043774,1.043774,1.453943,1.451475,1.043774,1.043774,1.043774,1.043774,1.043774,1.043774,,,,,,,1.428763,1.707089,1.04757,1.054007,1.453943,1.451475,1.043774,1.043774,1.043774,1.043774,0.553882,0.63738,0.439524,0.441455,0.561436,0.560695,0.438385,0.438385,0.23311,0.23311,29.221757,24.457404,39.855052,39.61165,28.715674,28.764514,40,40,40,40,,,,,,,,,,,3096,3096,1.043774,1.043774,1.043774,1.043774,1.043774,1.043774,1.043774,1.043774,0.438385,0.438385,40,40,, +11278,0,0.764,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,2.398,3.161,0,16.371421,5.55,5,2.291999,2.291999,2.291999,2.291999,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.292001,2.29206,2.291999,2.291999,2.292001,2.29206,2.291999,2.291999,2.291999,2.291999,2.291999,2.291999,2.29205,2.292,2.291999,2.291999,2.29205,2.292,2.291999,2.291999,2.291999,2.291999,2.291999,2.291999,,,,,,,2.292001,2.29206,2.291999,2.291999,2.29205,2.292,2.291999,2.291999,2.291999,2.291999,0.82512,0.825138,0.82512,0.82512,0.825135,0.82512,0.82512,0.82512,0.42784,0.42784,19.999985,19.999465,19.999995,19.999996,19.999557,19.999993,20,20,20,20,,,,,,,,,,,2236,2236,2.291999,2.291999,2.291999,2.291999,2.291999,2.291999,2.291999,2.291999,0.82512,0.82512,20,20,, +11470,-1,0.123928,0,2,0,2,3,DIV,5,5,W M 153,,1431602,1.584,1.708,0,2.655609,1.7,4,,0.135195,,0.135195,,55,,24000,,5448,,12000,,7742,,8256,,8246,,0.140918,,0.135195,,0.140918,,0.135557,,0.135195,,0.135557,,0.136368,,0.135195,,0.136368,,0.135195,,0.135195,,0.135195,,,,,,,,0.140918,,0.135557,,0.136368,,0.135195,,0.135195,,0.064582,,0.062974,,0.063217,,0.062866,,0.033911,,52.766286,,54.852795,,54.52681,,55,,55,,,,,,,,,,,,8256,,0.135195,,0.135195,,0.135195,,0.135195,,0.062866,,55,, +11486,1,0.156569,2,0,0,2,3,DIV,5,5,E M 153,,1431510,1.396,1.553,0,3.355041,1.7,4,0.170802,,0.170802,,55,,24000,,5448,,12000,,7742,,8256,,8246,,0.172052,,0.170802,,0.172052,,0.171219,,0.170802,,0.171219,,0.177317,,0.170802,,0.177317,,0.170802,,0.170802,,0.170802,,,,,,,,0.172052,,0.171219,,0.177317,,0.170802,,0.170802,,0.079798,,0.079548,,0.081378,,0.079423,,0.042843,,54.600584,,54.866073,,52.979123,,55,,55,,,,,,,,,,,,8256,,0.170802,,0.170802,,0.170802,,0.170802,,0.079423,,55,,, +11227,-1,0.036029,0,1,0,2,3,,5,5,Ford,Rd,1431906,1.575,1.611,0,0.772057,1.7,4,,0.043235,,0.043235,,50,,9000,,2043,,4500,,2903,,3096,,3092,,0.043687,,0.043235,,0.043687,,0.043235,,0.043235,,0.043235,,0.043237,,0.043235,,0.043237,,0.043235,,0.043235,,0.043235,,,,,,,,0.043687,,0.043235,,0.043237,,0.043235,,0.043235,,0.019591,,0.019456,,0.019456,,0.019456,,0.010449,,49.482594,,50,,49.998377,,50,,50,,,,,,,,,,,,3096,,0.043235,,0.043235,,0.043235,,0.043235,,0.019456,,50,, +10257,0,0.183983,1,1,0,2,5,,5,5,Prospect,Rd,1428106,6.963,7.147,0,3.942495,3.7,5,0.367966,0.367966,0.367966,0.367966,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.368103,0.36835,0.367966,0.367966,0.368103,0.36835,0.367967,0.367968,0.367966,0.367966,0.367967,0.367968,0.368185,0.368342,0.367966,0.367966,0.368185,0.368342,0.367966,0.367966,0.367966,0.367966,0.367966,0.367966,,,,,,,0.368103,0.36835,0.367967,0.367968,0.368185,0.368342,0.367966,0.367966,0.367966,0.367966,0.143548,0.143622,0.143507,0.143507,0.143572,0.143619,0.143507,0.143507,0.075433,0.075433,29.988812,29.968739,29.999919,29.999865,29.982193,29.96943,30,30,30,30,,,,,,,,,,,2580,2580,0.367966,0.367966,0.367966,0.367966,0.367966,0.367966,0.367966,0.367966,0.143507,0.143507,30,30,, +10276,0,1.007132,1,1,0,2,4,,5,5,Prospect,St,1428106,5.006,6.013,0,21.581404,3,4,1.510698,1.510698,1.510698,1.510698,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.735874,1.573086,1.510698,1.510698,1.735874,1.573086,1.515971,1.519445,1.510698,1.510698,1.515971,1.519445,1.581518,1.76971,1.510698,1.510698,1.581518,1.76971,1.510698,1.510698,1.510698,1.510698,1.510698,1.510698,,,,,,,1.735874,1.573086,1.515971,1.519445,1.581518,1.76971,1.510698,1.510698,1.510698,1.510698,0.702046,0.65321,0.636075,0.637117,0.655739,0.712197,0.634493,0.634493,0.337389,0.337389,34.811249,38.413616,39.860868,39.769746,38.208805,34.145662,40,40,40,40,,,,,,,,,,,3096,3096,1.510698,1.510698,1.510698,1.510698,1.510698,1.510698,1.510698,1.510698,0.634493,0.634493,40,40,, +10851,0,0.510876,1,1,0,2,4,,4,5,Geddes,Rd,1448104,8.207,8.718,0,10.947345,4.5,4.5,0.806647,0.806647,0.806647,0.806647,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.870038,1.358966,0.806647,0.806647,0.870038,1.358966,0.815246,0.823421,0.806647,0.806647,0.815246,0.823421,1.196024,0.903206,0.806647,0.806647,1.196024,0.903206,0.806647,0.806647,0.806647,0.806647,0.806647,0.806647,,,,,,,0.870038,1.358966,0.815246,0.823421,1.196024,0.903206,0.806647,0.806647,0.806647,0.806647,0.352969,0.499647,0.336532,0.338984,0.450765,0.362919,0.333952,0.333952,0.177193,0.177193,35.231305,22.555808,37.599157,37.225864,25.628728,33.937531,38,38,38,38,,,,,,,,,,,3096,3096,0.806647,0.806647,0.806647,0.806647,0.806647,0.806647,0.806647,0.806647,0.333952,0.333952,38,38,, +11180,0,1.007503,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,0,1.007,0,21.589343,5.55,5,3.022508,3.022508,3.022508,3.022508,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.022538,3.022508,3.022508,3.022508,3.022538,3.022508,3.022508,3.022508,3.022508,3.022508,3.022508,3.022508,3.022508,3.022528,3.022508,3.022508,3.022508,3.022528,3.022508,3.022508,3.022508,3.022508,3.022508,3.022508,,,,,,,3.022538,3.022508,3.022508,3.022508,3.022508,3.022528,3.022508,3.022508,3.022508,3.022508,1.088112,1.088103,1.088103,1.088103,1.088103,1.088109,1.088103,1.088103,0.564201,0.564201,19.999801,20,20,20,20,19.999865,20,20,20,20,,,,,,,,,,,2236,2236,3.022508,3.022508,3.022508,3.022508,3.022508,3.022508,3.022508,3.022508,1.088103,1.088103,20,20,, +25820,0,1.121151,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.024671,0.15,4,4.484605,4.484605,4.484605,4.484605,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,,,,,,,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,1.547189,1.547189,1.547189,1.547189,1.547189,1.547189,1.547189,1.547189,0.796017,0.796017,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,4.484605,1.547189,1.547189,15,15,, +11054,0,0.374837,1,1,0,2,4,,4,5,Geddes,Rd,1448104,7.832,8.207,0,8.03222,4.5,4.5,0.591848,0.591848,0.591848,0.591848,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.65577,0.8362,0.591848,0.591848,0.65577,0.8362,0.59917,0.607334,0.591848,0.591848,0.59917,0.607334,0.793296,0.705882,0.591848,0.591848,0.793296,0.705882,0.591848,0.591848,0.591848,0.591848,0.591848,0.591848,,,,,,,0.65577,0.8362,0.59917,0.607334,0.793296,0.705882,0.591848,0.591848,0.591848,0.591848,0.264202,0.318331,0.247222,0.249671,0.30546,0.279235,0.245025,0.245025,0.130009,0.130009,34.295873,26.895755,37.5356,37.031023,28.350332,31.861145,38,38,38,38,,,,,,,,,,,3096,3096,0.591848,0.591848,0.591848,0.591848,0.591848,0.591848,0.591848,0.591848,0.245025,0.245025,38,38,, +11052,0,0.486837,1,1,0,2,4,,4,5,Geddes,Rd,1448104,8.718,9.204,0,10.432221,4.5,4.5,0.76869,0.76869,0.76869,0.76869,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.840413,0.957767,0.76869,0.76869,0.840413,0.957767,0.771966,0.775126,0.76869,0.76869,0.771966,0.775126,0.891488,0.842763,0.76869,0.76869,0.891488,0.842763,0.76869,0.76869,0.76869,0.76869,0.76869,0.76869,,,,,,,0.840413,0.957767,0.771966,0.775126,0.891488,0.842763,0.76869,0.76869,0.76869,0.76869,0.339755,0.374961,0.31922,0.320168,0.355077,0.340459,0.318238,0.318238,0.168856,0.168856,34.75697,30.498254,37.838737,37.684481,32.765682,34.660075,38,38,38,38,,,,,,,,,,,3096,3096,0.76869,0.76869,0.76869,0.76869,0.76869,0.76869,0.76869,0.76869,0.318238,0.318238,38,38,, +25818,0,0.505823,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.839063,0.15,4,2.023292,2.023292,2.023292,2.023292,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,,,,,,,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,0.698036,0.698036,0.698036,0.698036,0.698036,0.698036,0.698036,0.698036,0.359134,0.359134,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,2.023292,0.698036,0.698036,15,15,, +11169,0,1.007914,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,2.009,3.017,0,21.598159,5.55,5,3.023742,3.023742,3.023742,3.023742,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.023788,3.023742,3.023742,3.023742,3.023788,3.023742,3.023742,3.023742,3.023742,3.023742,3.023742,3.023742,3.023742,3.023804,3.023742,3.023742,3.023742,3.023804,3.023742,3.023742,3.023742,3.023742,3.023742,3.023742,,,,,,,3.023788,3.023742,3.023742,3.023742,3.023742,3.023804,3.023742,3.023742,3.023742,3.023742,1.088561,1.088547,1.088547,1.088547,1.088547,1.088566,1.088547,1.088547,0.564432,0.564432,19.999696,20,20,20,19.999999,19.999593,20,20,20,20,,,,,,,,,,,2236,2236,3.023742,3.023742,3.023742,3.023742,3.023742,3.023742,3.023742,3.023742,1.088547,1.088547,20,20,, +11208,0,1.265765,1,1,0,2,3,,5,5,Ford,Rd,1431908,1.246,2.511,0,27.123532,1.7,4,1.518918,1.518918,1.518918,1.518918,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.810502,2.292651,1.518918,1.518918,1.810502,2.292651,1.595537,1.618993,1.518918,1.518918,1.595537,1.618993,2.201022,1.790207,1.518918,1.518918,2.201022,1.790207,1.518918,1.518918,1.518918,1.518918,1.518918,1.518918,,,,,,,1.810502,2.292651,1.595537,1.618993,2.201022,1.790207,1.518918,1.518918,1.518918,1.518918,0.770988,0.915633,0.706499,0.713535,0.888144,0.7649,0.683513,0.683513,0.367072,0.367072,41.947424,33.125803,47.598957,46.909347,34.504829,42.422976,50,50,50,50,,,,,,,,,,,3096,3096,1.518918,1.518918,1.518918,1.518918,1.518918,1.518918,1.518918,1.518918,0.683513,0.683513,50,50,, +11492,0,1.010428,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,4.165,5.175,0,21.65203,5.55,5,3.031284,3.031284,3.031284,3.031284,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,,,,,,,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,1.091262,1.091262,1.091262,1.091262,1.091262,1.091262,1.091262,1.091262,0.56584,0.56584,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,3.031284,1.091262,1.091262,20,20,, +26299,0,1.037817,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.238946,0.15,4,4.15127,4.15127,4.15127,4.15127,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,,,,,,,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,1.432188,1.432188,1.432188,1.432188,1.432188,1.432188,1.432188,1.432188,0.73685,0.73685,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,4.15127,1.432188,1.432188,15,15,, +26300,0,0.761628,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.320594,0.15,4,3.046511,3.046511,3.046511,3.046511,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,,,,,,,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,1.051046,1.051046,1.051046,1.051046,1.051046,1.051046,1.051046,1.051046,0.540756,0.540756,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,3.046511,1.051046,1.051046,15,15,, +25813,0,0.921162,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.739192,0.15,4,3.684649,3.684649,3.684649,3.684649,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,,,,,,,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,1.271204,1.271204,1.271204,1.271204,1.271204,1.271204,1.271204,1.271204,0.654025,0.654025,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,3.684649,1.271204,1.271204,15,15,, +25814,0,0.911896,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.540622,0.15,4,3.647583,3.647583,3.647583,3.647583,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,,,,,,,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,1.258416,1.258416,1.258416,1.258416,1.258416,1.258416,1.258416,1.258416,0.647446,0.647446,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,3.647583,1.258416,1.258416,15,15,, +11270,0,0.2486,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,3.916,4.165,0,5.327147,5.55,5,0.745801,0.745801,0.745801,0.745801,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,,,,,,,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.268488,0.268488,0.268488,0.268488,0.268488,0.268488,0.268488,0.268488,0.139216,0.139216,20,19.999996,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.745801,0.268488,0.268488,20,20,, +11149,0,1.088663,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,3.017,4.105,0,23.328498,5.55,5,3.26599,3.26599,3.26599,3.26599,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.268257,3.265998,3.26599,3.26599,3.268257,3.265998,3.26599,3.26599,3.26599,3.26599,3.26599,3.26599,3.26599,3.266556,3.26599,3.26599,3.26599,3.266556,3.26599,3.26599,3.26599,3.26599,3.26599,3.26599,,,,,,,3.268257,3.265998,3.26599,3.26599,3.26599,3.266556,3.26599,3.26599,3.26599,3.26599,1.176437,1.175759,1.175756,1.175756,1.175756,1.175926,1.175756,1.175756,0.609651,0.609651,19.986123,19.999951,20,20,19.999997,19.996534,20,20,20,20,,,,,,,,,,,2236,2236,3.26599,3.26599,3.26599,3.26599,3.26599,3.26599,3.26599,3.26599,1.175756,1.175756,20,20,, +11014,1,1.937702,3,0,0,1,1,,4,2,E I 94,,1576405,0.155,2.092,0,,0.8,7.5,1.660888,,1.660888,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.829619,,1.660888,,1.829619,,1.661359,,1.660888,,1.661359,,1.705713,,1.660888,,1.705713,,1.660888,,1.660888,,1.660888,,,,,,,,1.829619,,1.661359,,1.705713,,1.660888,,1.660888,,0.897672,,0.847194,,0.8605,,0.847053,,0.46228,,63.544446,,69.980128,,68.160414,,70,,70,,,,,,,,,,,,22704,,1.660888,,1.660888,,1.660888,,1.660888,,0.847053,,70,,, +15829,1,0.507579,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,0.836,1.344,0,10.87669,3.7,5,0.676772,,0.676772,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.101543,,0.676772,,1.101543,,0.755168,,0.676772,,0.755168,,1.216165,,0.676772,,1.216165,,0.676772,,0.676772,,0.676772,,,,,,,,1.101543,,0.755168,,1.216165,,0.676772,,0.676772,,0.421827,,0.317915,,0.456214,,0.294396,,0.157349,,27.647343,,40.328434,,25.041617,,45,,45,,,,,,,,,,,,7568,,0.676772,,0.676772,,0.676772,,0.676772,,0.294396,,45,,, +16962,1,1.076403,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,0.116,1.192,0,23.065774,4.5,4.5,1.501957,,1.501957,,43,,20000,,4540,,10000,,6452,,6880,,6872,,1.515201,,1.501957,,1.515201,,1.501997,,1.501957,,1.501997,,1.505182,,1.501957,,1.505182,,1.501957,,1.501957,,1.501957,,,,,,,,1.515201,,1.501997,,1.505182,,1.501957,,1.501957,,0.648313,,0.644351,,0.645307,,0.64434,,0.343698,,42.624144,,42.998878,,42.907875,,43,,43,,,,,,,,,,,,6880,,1.501957,,1.501957,,1.501957,,1.501957,,0.64434,,43,,, +18110,0,0.981985,1,1,0,2,4,,4,2,Beck,Rd,1665610,0.95,1.932,0,21.042543,4.5,4.5,1.550503,1.550503,1.550503,1.550503,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.550604,1.550669,1.550503,1.550503,1.550604,1.550669,1.550512,1.55051,1.550503,1.550503,1.550512,1.55051,1.552906,1.550618,1.550503,1.550503,1.552906,1.550618,1.550503,1.550503,1.550503,1.550503,1.550503,1.550503,,,,,,,1.550604,1.550669,1.550512,1.55051,1.552906,1.550618,1.550503,1.550503,1.550503,1.550503,0.641938,0.641958,0.641911,0.64191,0.642629,0.641943,0.641908,0.641908,0.340594,0.340594,37.997535,37.995948,37.999791,37.999844,37.941203,37.997193,38,38,38,38,,,,,,,,,,,3096,3096,1.550503,1.550503,1.550503,1.550503,1.550503,1.550503,1.550503,1.550503,0.641908,0.641908,38,38,, +19238,0,0.313788,1,1,0,2,5,,4,2,South Service,Rd,1811006,1.063,1.376,0,6.724021,5.8,4.5,0.697306,0.697306,0.697306,0.697306,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,0.697307,0.697306,0.697306,0.697306,0.697307,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,,,,,,,0.697306,0.697306,0.697306,0.697306,0.697306,0.697307,0.697306,0.697306,0.697306,0.697306,0.265674,0.265674,0.265674,0.265674,0.265674,0.265674,0.265674,0.265674,0.139113,0.139113,27,26.999987,27,26.999998,27,26.999974,27,27,27,27,,,,,,,,,,,2580,2580,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,0.697306,0.265674,0.265674,27,27,, +19302,0,0.809724,1,1,0,2,5,,4,5,Airport,Dr,1751607,0.089,0.898,0,17.351231,5.8,4.5,1.799387,1.799387,1.799387,1.799387,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,,,,,,,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,0.685566,0.685566,0.685566,0.685566,0.685566,0.685566,0.685566,0.685566,0.358978,0.358978,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,1.799387,0.685566,0.685566,27,27,, +21836,-1,1.084529,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,0.145,1.229,0,23.239913,4.5,4.5,,1.513297,,1.513297,,43,,20000,,4540,,10000,,6452,,6880,,6872,,1.516717,,1.513297,,1.516717,,1.513331,,1.513297,,1.513331,,1.520148,,1.513297,,1.520148,,1.513297,,1.513297,,1.513297,,,,,,,,1.516717,,1.513331,,1.520148,,1.513297,,1.513297,,0.65023,,0.649214,,0.65126,,0.649204,,0.346293,,42.903029,,42.999038,,42.8062,,43,,43,,,,,,,,,,,,6880,,1.513297,,1.513297,,1.513297,,1.513297,,0.649204,,43,, +21940,0,1.081114,1,1,0,2,5,,4,2,North Service,Rd,4603886,0.208,1.289,0,23.166722,5.8,4.5,2.402475,2.402475,2.402475,2.402475,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,,,,,,,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,0.915343,0.915343,0.915343,0.915343,0.915343,0.915343,0.915343,0.915343,0.479294,0.479294,26.999999,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,2.402475,0.915343,0.915343,27,27,, +22509,-1,0.136602,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,1.18,1.316,0,2.927192,3.7,5,,0.182136,,0.182136,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.385389,,0.182136,,0.385389,,0.206649,,0.182136,,0.206649,,0.302087,,0.182136,,0.302087,,0.182136,,0.182136,,0.182136,,,,,,,,0.385389,,0.206649,,0.302087,,0.182136,,0.182136,,0.140205,,0.086583,,0.115214,,0.079229,,0.042347,,21.267167,,39.662185,,27.131751,,45,,45,,,,,,,,,,,,7568,,0.182136,,0.182136,,0.182136,,0.182136,,0.079229,,45,, +25809,0,0.268412,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.751677,0.15,4,1.073646,1.073646,1.073646,1.073646,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,,,,,,,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,0.370408,0.370408,0.370408,0.370408,0.370408,0.370408,0.370408,0.370408,0.190572,0.190572,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,1.073646,0.370408,0.370408,15,15,, +30934,0,0.549497,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.774937,0.15,4,2.197988,2.197988,2.197988,2.197988,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,,,,,,,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,0.758306,0.758306,0.758306,0.758306,0.758306,0.758306,0.758306,0.758306,0.390143,0.390143,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,2.197988,0.758306,0.758306,15,15,, +31354,0,0.637157,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.65337,0.15,4,2.548629,2.548629,2.548629,2.548629,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,,,,,,,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,0.879277,0.879277,0.879277,0.879277,0.879277,0.879277,0.879277,0.879277,0.452382,0.452382,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,2.548629,0.879277,0.879277,15,15,, +31412,0,0.985478,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.11739,0.15,4,3.941913,3.941913,3.941913,3.941913,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,,,,,,,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,1.35996,1.35996,1.35996,1.35996,1.35996,1.35996,1.35996,1.35996,0.69969,0.69969,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,3.941913,1.35996,1.35996,15,15,, +31514,0,0.950165,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.360675,0.15,4,3.800659,3.800659,3.800659,3.800659,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,,,,,,,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,1.311227,1.311227,1.311227,1.311227,1.311227,1.311227,1.311227,1.311227,0.674617,0.674617,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,3.800659,1.311227,1.311227,15,15,, +31518,0,0.414901,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.890728,0.15,4,1.659603,1.659603,1.659603,1.659603,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,,,,,,,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,0.572563,0.572563,0.572563,0.572563,0.572563,0.572563,0.572563,0.572563,0.294579,0.294579,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,1.659603,0.572563,0.572563,15,15,, +33794,0,0.4641,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.944991,0.15,4,1.856398,1.856398,1.856398,1.856398,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,,,,,,,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,0.640457,0.640457,0.640457,0.640457,0.640457,0.640457,0.640457,0.640457,0.329511,0.329511,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,1.856398,0.640457,0.640457,15,15,, +10813,1,0.154583,3,0,0,1,1,,4,2,E I 94,,1576405,0,0.155,0,,0.8,7.5,0.1325,,0.1325,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.134167,,0.1325,,0.134167,,0.132507,,0.1325,,0.132507,,0.133645,,0.1325,,0.133645,,0.1325,,0.1325,,0.1325,,,,,,,,0.134167,,0.132507,,0.133645,,0.1325,,0.1325,,0.068075,,0.067577,,0.067919,,0.067575,,0.036879,,69.129863,,69.995906,,69.399907,,70,,70,,,,,,,,,,,,22704,,0.1325,,0.1325,,0.1325,,0.1325,,0.067575,,70,,, +11447,1,0.158603,1,0,0,1,1,RON,4,2,Rawsonville/E I 94,RAMP,1576407,0.112,0.271,0,,1.09,4,0.21147,,0.21147,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.311741,,0.21147,,0.311741,,0.213096,,0.21147,,0.213096,,0.217042,,0.21147,,0.217042,,0.21147,,0.21147,,0.21147,,,,,,,,0.311741,,0.213096,,0.217042,,0.21147,,0.21147,,0.122071,,0.092477,,0.093661,,0.09199,,0.049167,,30.525857,,44.656599,,43.844695,,45,,45,,,,,,,,,,,,5160,,0.21147,,0.21147,,0.21147,,0.21147,,0.09199,,45,,, +11568,0,0.336106,1,1,0,2,5,,4,5,McGregor,Rd,1438801,0.107,0.443,0,7.202278,5.8,4.5,0.746903,0.746903,0.746903,0.746903,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.747476,0.746905,0.746903,0.746903,0.747476,0.746905,0.747027,0.746961,0.746903,0.746903,0.747027,0.746961,0.746976,0.747349,0.746903,0.746903,0.746976,0.747349,0.746903,0.746903,0.746903,0.746903,0.746903,0.746903,,,,,,,0.747476,0.746905,0.747027,0.746961,0.746976,0.747349,0.746903,0.746903,0.746903,0.746903,0.284742,0.284571,0.284607,0.284587,0.284592,0.284704,0.28457,0.28457,0.149007,0.149007,26.979297,26.999918,26.99551,26.997901,26.997345,26.98387,27,27,27,27,,,,,,,,,,,2580,2580,0.746903,0.746903,0.746903,0.746903,0.746903,0.746903,0.746903,0.746903,0.28457,0.28457,27,27,, +13720,1,0.224552,1,0,0,1,1,ROF,4,2,W I 94/Rawsonville,RAMP,1588803,0,0.225,0,,2.24,5,0.336827,,0.336827,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.338327,,0.336827,,0.338327,,0.337329,,0.336827,,0.337329,,0.428672,,0.336827,,0.428672,,0.336827,,0.336827,,0.336827,,,,,,,,0.338327,,0.337329,,0.428672,,0.336827,,0.336827,,0.141917,,0.141618,,0.169021,,0.141467,,0.075225,,39.822681,,39.940483,,31.429856,,40,,40,,,,,,,,,,,,5160,,0.336827,,0.336827,,0.336827,,0.336827,,0.141467,,40,,, +14316,-1,0.21369,0,3,0,1,1,,4,2,W I 94,,1588802,0,0.214,0,,0.8,7.5,,0.183163,,0.183163,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.188737,,0.183163,,0.188737,,0.183179,,0.183163,,0.183179,,0.18507,,0.183163,,0.18507,,0.183163,,0.183163,,0.183163,,,,,,,,0.188737,,0.183179,,0.18507,,0.183163,,0.183163,,0.095085,,0.093418,,0.093985,,0.093413,,0.05098,,67.932926,,69.994141,,69.278703,,70,,70,,,,,,,,,,,,22704,,0.183163,,0.183163,,0.183163,,0.183163,,0.093413,,70,, +19239,0,0.883167,1,1,0,2,5,,4,2,South Service,Rd,1811006,0.18,1.063,0,18.925,5.8,4.5,1.962593,1.962593,1.962593,1.962593,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.962668,1.965241,1.962593,1.962593,1.962668,1.965241,1.96267,1.962689,1.962593,1.962593,1.96267,1.962689,1.967379,1.964229,1.962593,1.962593,1.967379,1.964229,1.962593,1.962593,1.962593,1.962593,1.962593,1.962593,,,,,,,1.962668,1.965241,1.96267,1.962689,1.967379,1.964229,1.962593,1.962593,1.962593,1.962593,0.74777,0.748542,0.747771,0.747777,0.749184,0.748239,0.747748,0.747748,0.391537,0.391537,26.998967,26.96361,26.998938,26.998679,26.934318,26.977512,27,27,27,27,,,,,,,,,,,2580,2580,1.962593,1.962593,1.962593,1.962593,1.962593,1.962593,1.962593,1.962593,0.747748,0.747748,27,27,, +9736,0,0.422955,2,2,0,2,4,,4,5,Grove,St,1428105,4.105,4.528,0,9.063327,4.5,4.5,0.667824,0.667824,0.667824,0.667824,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.731611,0.668276,0.667824,0.667824,0.731611,0.668276,0.667923,0.667929,0.667824,0.667824,0.667923,0.667929,0.670594,0.706058,0.667824,0.667824,0.670594,0.706058,0.667824,0.667824,0.667824,0.667824,0.667824,0.667824,,,,,,,0.731611,0.668276,0.667923,0.667929,0.670594,0.706058,0.667824,0.667824,0.667824,0.667824,0.295615,0.276615,0.276509,0.276511,0.27731,0.287949,0.276479,0.276479,0.146699,0.146699,34.686914,37.974329,37.994353,37.994035,37.843057,35.942275,38,38,38,38,,,,,,,,,,,6192,6192,0.667824,0.667824,0.667824,0.667824,0.667824,0.667824,0.667824,0.667824,0.276479,0.276479,38,38,, +10198,-1,0.474321,0,3,0,1,1,,4,5,W I 94,,1426110,32.739,33.213,0,,0.8,7.5,,0.406561,,0.406561,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.433587,,0.406561,,0.433587,,0.40664,,0.406561,,0.40664,,0.415771,,0.406561,,0.415771,,0.406561,,0.406561,,0.406561,,,,,,,,0.433587,,0.40664,,0.415771,,0.406561,,0.406561,,0.215454,,0.20737,,0.210109,,0.207346,,0.113159,,65.636768,,69.986391,,68.449457,,70,,70,,,,,,,,,,,,22704,,0.406561,,0.406561,,0.406561,,0.406561,,0.207346,,70,, +10439,1,0.362277,3,0,0,1,1,,4,5,E I 94,,1426109,32.979,33.341,0,,0.8,7.5,0.310523,,0.310523,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.314432,,0.310523,,0.314432,,0.310541,,0.310523,,0.310541,,0.313208,,0.310523,,0.313208,,0.310523,,0.310523,,0.310523,,,,,,,,0.314432,,0.310541,,0.313208,,0.310523,,0.310523,,0.159539,,0.158372,,0.159172,,0.158367,,0.086429,,69.129863,,69.995906,,69.399907,,70,,70,,,,,,,,,,,,22704,,0.310523,,0.310523,,0.310523,,0.310523,,0.158367,,70,,, +10523,1,0.323405,1,0,0,1,1,ROF,4,5,E I 94/Rawsonville,RAMP,1431009,0,0.323,0,,2.24,5,0.485107,,0.485107,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.485429,,0.485107,,0.485429,,0.485274,,0.485107,,0.485274,,0.498922,,0.485107,,0.498922,,0.485107,,0.485107,,0.485107,,,,,,,,0.485429,,0.485274,,0.498922,,0.485107,,0.485107,,0.203841,,0.203795,,0.207889,,0.203745,,0.108341,,39.973488,,39.986223,,38.892399,,40,,40,,,,,,,,,,,,5160,,0.485107,,0.485107,,0.485107,,0.485107,,0.203745,,40,,, +11454,0,0.506216,1,1,0,2,4,,4,5,Bridge,Rd,1438202,0.234,0.74,0,10.847477,4.5,4.5,0.799288,0.799288,0.799288,0.799288,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.017239,0.799528,0.799288,0.799288,1.017239,0.799528,0.799425,0.799438,0.799288,0.799288,0.799425,0.799438,0.807805,0.989598,0.799288,0.799288,0.807805,0.989598,0.799288,0.799288,0.799288,0.799288,0.799288,0.799288,,,,,,,1.017239,0.799528,0.799425,0.799438,0.807805,0.989598,0.799288,0.799288,0.799288,0.799288,0.396291,0.330977,0.330946,0.33095,0.33346,0.387998,0.330905,0.330905,0.175577,0.175577,29.858197,37.98857,37.993493,37.99286,37.599358,30.692185,38,38,38,38,,,,,,,,,,,3096,3096,0.799288,0.799288,0.799288,0.799288,0.799288,0.799288,0.799288,0.799288,0.330905,0.330905,38,38,, +11510,0,0.178563,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.666,8.845,0,3.826347,4.5,4.5,0.281941,0.281941,0.281941,0.281941,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.352439,0.286938,0.281941,0.281941,0.352439,0.286938,0.28621,0.284278,0.281941,0.281941,0.28621,0.284278,0.294825,0.348727,0.281941,0.281941,0.294825,0.348727,0.281941,0.281941,0.281941,0.281941,0.281941,0.281941,,,,,,,0.352439,0.286938,0.28621,0.284278,0.294825,0.348727,0.281941,0.281941,0.281941,0.281941,0.137873,0.118223,0.118004,0.117425,0.120589,0.136759,0.116724,0.116724,0.061933,0.061933,30.398951,37.338296,37.433207,37.687682,36.33945,30.722538,38,38,38,38,,,,,,,,,,,6502,6502,0.281941,0.281941,0.281941,0.281941,0.281941,0.281941,0.281941,0.281941,0.116724,0.116724,38,38,, +21562,0,0.254139,1,1,0,2,5,,4,5,William,Ave,4603122,0,0.254,0,5.445839,5.8,4.5,0.564754,0.564754,0.564754,0.564754,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.564755,0.565187,0.564754,0.564754,0.564755,0.565187,0.564798,0.564848,0.564754,0.564754,0.564798,0.564848,0.565091,0.564809,0.564754,0.564754,0.565091,0.564809,0.564754,0.564754,0.564754,0.564754,0.564754,0.564754,,,,,,,0.564755,0.565187,0.564798,0.564848,0.565091,0.564809,0.564754,0.564754,0.564754,0.564754,0.215172,0.215301,0.215184,0.215199,0.215272,0.215188,0.215171,0.215171,0.112668,0.112668,26.999918,26.979297,26.997901,26.99551,26.98387,26.997345,27,27,27,27,,,,,,,,,,,2580,2580,0.564754,0.564754,0.564754,0.564754,0.564754,0.564754,0.564754,0.564754,0.215171,0.215171,27,27,, +26752,0,0.334776,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.173769,0.15,4,1.339104,1.339104,1.339104,1.339104,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,,,,,,,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,0.461991,0.461991,0.461991,0.461991,0.461991,0.461991,0.461991,0.461991,0.237691,0.237691,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,1.339104,0.461991,0.461991,15,15,, +26820,0,0.172967,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.706442,0.15,4,0.691869,0.691869,0.691869,0.691869,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,,,,,,,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.238695,0.238695,0.238695,0.238695,0.238695,0.238695,0.238695,0.238695,0.122807,0.122807,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.691869,0.238695,0.238695,15,15,, +26822,0,0.421066,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.022842,0.15,4,1.684264,1.684264,1.684264,1.684264,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,,,,,,,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,0.581071,0.581071,0.581071,0.581071,0.581071,0.581071,0.581071,0.581071,0.298957,0.298957,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,1.684264,0.581071,0.581071,15,15,, +9471,0,0.309686,2,2,0,2,4,,4,5,Grove,St,1428105,3.795,4.105,0,6.636121,4.5,4.5,0.488977,0.488977,0.488977,0.488977,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.542491,0.489275,0.488977,0.488977,0.542491,0.489275,0.489078,0.489093,0.488977,0.488977,0.489078,0.489093,0.490907,0.522399,0.488977,0.488977,0.490907,0.522399,0.488977,0.488977,0.488977,0.488977,0.488977,0.488977,,,,,,,0.542491,0.489275,0.489078,0.489093,0.490907,0.522399,0.488977,0.488977,0.488977,0.488977,0.218491,0.202526,0.202467,0.202471,0.203015,0.212463,0.202437,0.202437,0.107412,0.107412,34.251546,37.976855,37.99217,37.991033,37.850645,35.568869,38,38,38,38,,,,,,,,,,,6192,6192,0.488977,0.488977,0.488977,0.488977,0.488977,0.488977,0.488977,0.488977,0.202437,0.202437,38,38,, +10083,1,0.255606,3,0,0,1,1,,4,5,E I 94,,1426109,32.724,32.979,0,,0.8,7.5,0.219091,,0.219091,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.22393,,0.219091,,0.22393,,0.219125,,0.219091,,0.219125,,0.225385,,0.219091,,0.225385,,0.219091,,0.219091,,0.219091,,,,,,,,0.22393,,0.219125,,0.225385,,0.219091,,0.219091,,0.113188,,0.111747,,0.113625,,0.111736,,0.06098,,68.487419,,69.98908,,68.045356,,70,,70,,,,,,,,,,,,22704,,0.219091,,0.219091,,0.219091,,0.219091,,0.111736,,70,,, +26753,0,0.169775,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.638029,0.15,4,0.679099,0.679099,0.679099,0.679099,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,,,,,,,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.234289,0.234289,0.234289,0.234289,0.234289,0.234289,0.234289,0.234289,0.12054,0.12054,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.679099,0.234289,0.234289,15,15,, +10803,0,0.167845,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.499,8.666,0,3.596671,4.5,4.5,0.265018,0.265018,0.265018,0.265018,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.337667,0.269991,0.265018,0.265018,0.337667,0.269991,0.269314,0.267408,0.265018,0.265018,0.269314,0.267408,0.277862,0.334327,0.265018,0.265018,0.277862,0.334327,0.265018,0.265018,0.265018,0.265018,0.265018,0.265018,,,,,,,0.337667,0.269991,0.269314,0.267408,0.277862,0.334327,0.265018,0.265018,0.265018,0.265018,0.131512,0.111209,0.111006,0.110435,0.113571,0.13051,0.109717,0.109717,0.058216,0.058216,29.824272,37.300008,37.393849,37.660315,36.243469,30.122272,38,38,38,38,,,,,,,,,,,6502,6502,0.265018,0.265018,0.265018,0.265018,0.265018,0.265018,0.265018,0.265018,0.109717,0.109717,38,38,, +26263,0,0.362796,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.774205,0.15,4,1.451185,1.451185,1.451185,1.451185,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,,,,,,,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,0.500659,0.500659,0.500659,0.500659,0.500659,0.500659,0.500659,0.500659,0.257585,0.257585,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,1.451185,0.500659,0.500659,15,15,, +10511,1,0.229786,1,0,0,1,1,RON,4,5,Rawsonville/W I 94,RAMP,1431106,0,0.23,0,,1.09,4,0.306382,,0.306382,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.309566,,0.306382,,0.309566,,0.306571,,0.306382,,0.306571,,0.30814,,0.306382,,0.30814,,0.306382,,0.306382,,0.306382,,,,,,,,0.309566,,0.306571,,0.30814,,0.306382,,0.306382,,0.134231,,0.133333,,0.133803,,0.133276,,0.071234,,44.537187,,44.972293,,44.743323,,45,,45,,,,,,,,,,,,5160,,0.306382,,0.306382,,0.306382,,0.306382,,0.133276,,45,,, +10743,1,0.112354,1,0,0,1,1,RON,4,5,Rawsonville/E I 94,RAMP,1576407,0,0.112,0,,1.09,4,0.149806,,0.149806,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.220838,,0.149806,,0.220838,,0.150958,,0.149806,,0.150958,,0.153753,,0.149806,,0.153753,,0.149806,,0.149806,,0.149806,,,,,,,,0.220838,,0.150958,,0.153753,,0.149806,,0.149806,,0.086475,,0.065511,,0.06635,,0.065166,,0.03483,,30.525857,,44.656599,,43.844695,,45,,45,,,,,,,,,,,,5160,,0.149806,,0.149806,,0.149806,,0.149806,,0.065166,,45,,, +11506,0,0.228102,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,9.072,9.3,0,4.887898,4.5,4.5,0.360161,0.360161,0.360161,0.360161,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.365216,0.361761,0.360161,0.360161,0.365216,0.361761,0.360353,0.361071,0.360161,0.360161,0.360353,0.361071,0.361897,0.466199,0.360161,0.360161,0.361897,0.466199,0.360161,0.360161,0.360161,0.360161,0.360161,0.360161,,,,,,,0.365216,0.361761,0.360353,0.361071,0.361897,0.466199,0.360161,0.360161,0.360161,0.360161,0.150623,0.149587,0.149164,0.14938,0.149627,0.180918,0.149107,0.149107,0.079115,0.079115,37.47401,37.831891,37.979689,37.904178,37.81773,29.3568,38,38,38,38,,,,,,,,,,,6502,6502,0.360161,0.360161,0.360161,0.360161,0.360161,0.360161,0.360161,0.360161,0.149107,0.149107,38,38,, +14394,1,0.183523,1,0,0,1,1,ROF,4,5,W I 94/Rawsonville,RAMP,1588803,0.225,0.408,0,,2.24,5,0.275285,,0.275285,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.276511,,0.275285,,0.276511,,0.275695,,0.275285,,0.275695,,0.350348,,0.275285,,0.350348,,0.275285,,0.275285,,0.275285,,,,,,,,0.276511,,0.275695,,0.350348,,0.275285,,0.275285,,0.115987,,0.115743,,0.138139,,0.11562,,0.06148,,39.822681,,39.940483,,31.429856,,40,,40,,,,,,,,,,,,5160,,0.275285,,0.275285,,0.275285,,0.275285,,0.11562,,40,,, +19240,0,0.179859,1,1,0,2,5,,4,5,South Service,Rd,1811006,0,0.18,0,3.854112,5.8,4.5,0.399686,0.399686,0.399686,0.399686,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.399701,0.400225,0.399686,0.399686,0.399701,0.400225,0.399701,0.399705,0.399686,0.399686,0.399701,0.399705,0.40066,0.400019,0.399686,0.399686,0.40066,0.400019,0.399686,0.399686,0.399686,0.399686,0.399686,0.399686,,,,,,,0.399701,0.400225,0.399701,0.399705,0.40066,0.400019,0.399686,0.399686,0.399686,0.399686,0.152285,0.152442,0.152285,0.152286,0.152573,0.15238,0.15228,0.15228,0.079737,0.079737,26.998967,26.96361,26.998938,26.998679,26.934318,26.977512,27,27,27,27,,,,,,,,,,,2580,2580,0.399686,0.399686,0.399686,0.399686,0.399686,0.399686,0.399686,0.399686,0.15228,0.15228,27,27,, +21425,0,0.208368,1,1,0,2,5,,4,5,William,Ave,4603886,0,0.208,0,4.465037,5.8,4.5,0.463041,0.463041,0.463041,0.463041,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,,,,,,,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.176419,0.176419,0.176419,0.176419,0.176419,0.176419,0.176419,0.176419,0.092377,0.092377,26.999999,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.463041,0.176419,0.176419,27,27,, +11505,0,0.053709,2,2,1,2,5,,4,5,Rawsonville,Rd,1439105,9.307,9.36,0,1.150901,5.8,4.5,0.119353,0.119353,0.119353,0.119353,27,27,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.119358,0.119353,0.119353,0.119353,0.119358,0.119353,0.119354,0.119353,0.119353,0.119353,0.119354,0.119353,0.119353,0.119356,0.119353,0.119353,0.119353,0.119356,0.119353,0.119353,0.119353,0.119353,0.119353,0.119353,,,,,,,0.119358,0.119353,0.119354,0.119353,0.119353,0.119356,0.119353,0.119353,0.119353,0.119353,0.045475,0.045473,0.045474,0.045473,0.045474,0.045474,0.045473,0.045473,0.023811,0.023811,26.998903,26.999997,26.999806,26.999906,26.999878,26.999154,27,27,27,27,,,,,,,,,,,5418,5418,0.119353,0.119353,0.119353,0.119353,0.119353,0.119353,0.119353,0.119353,0.045473,0.045473,27,27,, +10798,0,0.006719,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,9.3,9.307,0,0.143969,4.5,4.5,0.010608,0.010608,0.010608,0.010608,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.010608,0.010661,0.010608,0.010608,0.010608,0.010661,0.010608,0.010645,0.010608,0.010608,0.010608,0.010645,0.010608,0.01429,0.010608,0.010608,0.010608,0.01429,0.010608,0.010608,0.010608,0.010608,0.010608,0.010608,,,,,,,0.010608,0.010661,0.010608,0.010645,0.010608,0.01429,0.010608,0.010608,0.010608,0.010608,0.004392,0.004408,0.004392,0.004403,0.004392,0.005496,0.004392,0.004392,0.00233,0.00233,37.999955,37.813315,37.999989,37.869264,37.999989,28.209968,38,38,38,38,,,,,,,,,,,6502,6502,0.010608,0.010608,0.010608,0.010608,0.010608,0.010608,0.010608,0.010608,0.004392,0.004392,38,38,, +11259,0,0.112066,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.955,9.067,0,2.401421,4.5,4.5,0.176947,0.176947,0.176947,0.176947,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.667929,0.18377,0.176947,0.176947,0.667929,0.18377,0.183314,0.180717,0.176947,0.176947,0.183314,0.180717,0.213188,0.557394,0.176947,0.176947,0.213188,0.557394,0.176947,0.176947,0.176947,0.176947,0.176947,0.176947,,,,,,,0.667929,0.18377,0.183314,0.180717,0.213188,0.557394,0.176947,0.176947,0.176947,0.176947,0.220551,0.075303,0.075166,0.074387,0.084128,0.18739,0.073256,0.073256,0.038869,0.038869,10.066899,36.589071,36.680072,37.207195,31.540079,12.063245,38,38,38,38,,,,,,,,,,,6502,6502,0.176947,0.176947,0.176947,0.176947,0.176947,0.176947,0.176947,0.176947,0.073256,0.073256,38,38,, +11507,0,0.110264,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.845,8.955,0,2.362802,4.5,4.5,0.174101,0.174101,0.174101,0.174101,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.496251,0.178549,0.174101,0.174101,0.496251,0.178549,0.177595,0.176129,0.174101,0.174101,0.177595,0.176129,0.194795,0.408453,0.174101,0.174101,0.194795,0.408453,0.174101,0.174101,0.174101,0.174101,0.174101,0.174101,,,,,,,0.496251,0.178549,0.177595,0.176129,0.194795,0.408453,0.174101,0.174101,0.174101,0.174101,0.168723,0.073412,0.073126,0.072686,0.078286,0.142384,0.072078,0.072078,0.038244,0.038244,13.331656,37.053299,37.252437,37.562404,33.963137,16.197314,38,38,38,38,,,,,,,,,,,6502,6502,0.174101,0.174101,0.174101,0.174101,0.174101,0.174101,0.174101,0.174101,0.072078,0.072078,38,38,, +10801,0,0.00499,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,9.067,9.072,0,0.106922,4.5,4.5,0.007878,0.007878,0.007878,0.007878,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.03164,0.007909,0.007878,0.007878,0.03164,0.007909,0.008208,0.007894,0.007878,0.007878,0.008208,0.007894,0.009645,0.00987,0.007878,0.007878,0.009645,0.00987,0.007878,0.007878,0.007878,0.007878,0.007878,0.007878,,,,,,,0.03164,0.007909,0.008208,0.007894,0.009645,0.00987,0.007878,0.007878,0.007878,0.007878,0.01039,0.003271,0.003361,0.003266,0.003792,0.003859,0.003262,0.003262,0.001731,0.001731,9.462168,37.855339,36.474713,37.926086,31.039565,30.333063,38,38,38,38,,,,,,,,,,,6502,6502,0.007878,0.007878,0.007878,0.007878,0.007878,0.007878,0.007878,0.007878,0.003262,0.003262,38,38,, +10196,-1,0.0913,0,3,0,1,1,,4,5,W I 94,,1426110,33.213,33.304,0,,0.8,7.5,,0.078257,,0.078257,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.080638,,0.078257,,0.080638,,0.078264,,0.078257,,0.078264,,0.079072,,0.078257,,0.079072,,0.078257,,0.078257,,0.078257,,,,,,,,0.080638,,0.078264,,0.079072,,0.078257,,0.078257,,0.040626,,0.039913,,0.040156,,0.039911,,0.021782,,67.932926,,69.994141,,69.278703,,70,,70,,,,,,,,,,,,22704,,0.078257,,0.078257,,0.078257,,0.078257,,0.039911,,70,, +11560,0,0.29408,1,1,0,2,5,,4,5,Tyler,Rd,1438803,0.304,0.598,0,6.301708,5.8,4.5,0.65351,0.65351,0.65351,0.65351,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,,,,,,,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.248987,0.248987,0.248987,0.248987,0.248987,0.248987,0.248987,0.248987,0.130375,0.130375,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.65351,0.248987,0.248987,27,27,, +11563,0,0.335038,1,1,0,2,5,,4,5,McGregor,Rd,1438801,0.443,0.778,0,7.179377,5.8,4.5,0.744528,0.744528,0.744528,0.744528,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.744528,0.744528,0.744528,0.744528,0.744528,0.744528,0.744529,0.744528,0.744528,0.744528,0.744529,0.744528,0.744531,0.744528,0.744528,0.744528,0.744531,0.744528,0.744528,0.744528,0.744528,0.744528,0.744528,0.744528,,,,,,,0.744528,0.744528,0.744529,0.744528,0.744531,0.744528,0.744528,0.744528,0.744528,0.744528,0.283665,0.283665,0.283666,0.283665,0.283666,0.283665,0.283665,0.283665,0.148533,0.148533,26.999994,26.999997,26.999958,26.999981,26.999876,26.999986,27,27,27,27,,,,,,,,,,,2580,2580,0.744528,0.744528,0.744528,0.744528,0.744528,0.744528,0.744528,0.744528,0.283665,0.283665,27,27,, +26750,0,0.328156,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.031907,0.15,4,1.312623,1.312623,1.312623,1.312623,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,,,,,,,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,0.452855,0.452855,0.452855,0.452855,0.452855,0.452855,0.452855,0.452855,0.232991,0.232991,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,1.312623,0.452855,0.452855,15,15,, +26751,0,0.036391,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,0.7798,0.15,4,0.145563,0.145563,0.145563,0.145563,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,,,,,,,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.050219,0.050219,0.050219,0.050219,0.050219,0.050219,0.050219,0.050219,0.025837,0.025837,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.145563,0.050219,0.050219,15,15,, +25810,0,0.228573,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.897989,0.15,4,0.914291,0.914291,0.914291,0.914291,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,,,,,,,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.31543,0.31543,0.31543,0.31543,0.31543,0.31543,0.31543,0.31543,0.162287,0.162287,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.914291,0.31543,0.31543,15,15,, +11315,0,0.183241,1,1,0,2,5,,4,5,McGregor,Rd,1438801,0.778,0.961,0,3.926591,5.8,4.5,0.407202,0.407202,0.407202,0.407202,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.407202,0.407202,0.407202,0.407202,0.407202,0.407202,0.407203,0.407202,0.407202,0.407202,0.407203,0.407202,0.407204,0.407202,0.407202,0.407202,0.407204,0.407202,0.407202,0.407202,0.407202,0.407202,0.407202,0.407202,,,,,,,0.407202,0.407202,0.407203,0.407202,0.407204,0.407202,0.407202,0.407202,0.407202,0.407202,0.155144,0.155144,0.155144,0.155144,0.155145,0.155144,0.155144,0.155144,0.081237,0.081237,26.999994,26.999997,26.999958,26.999981,26.999876,26.999986,27,27,27,27,,,,,,,,,,,2580,2580,0.407202,0.407202,0.407202,0.407202,0.407202,0.407202,0.407202,0.407202,0.155144,0.155144,27,27,, +9909,1,0.351417,2,0,0,2,3,DIV,4,5,Michigan,Ave,1427804,5.177,5.528,0,7.530357,3.7,5,0.468556,,0.468556,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.482485,,0.468556,,0.482485,,0.469931,,0.468556,,0.469931,,0.48311,,0.468556,,0.48311,,0.468556,,0.468556,,0.468556,,,,,,,,0.482485,,0.469931,,0.48311,,0.468556,,0.468556,,0.208001,,0.204234,,0.208188,,0.203822,,0.108939,,43.700826,,44.868317,,43.644271,,45,,45,,,,,,,,,,,,7568,,0.468556,,0.468556,,0.468556,,0.468556,,0.203822,,45,,, +10101,0,0.281743,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0.077,0.358,0,6.037347,5.8,4.5,0.626095,0.626095,0.626095,0.626095,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.631756,0.916669,0.626095,0.626095,0.631756,0.916669,0.641423,0.647192,0.626095,0.626095,0.641423,0.647192,0.895568,0.691767,0.626095,0.626095,0.895568,0.691767,0.626095,0.626095,0.626095,0.626095,0.626095,0.626095,,,,,,,0.631756,0.916669,0.641423,0.647192,0.895568,0.691767,0.626095,0.626095,0.626095,0.626095,0.240241,0.325714,0.243141,0.244871,0.319384,0.258244,0.238542,0.238542,0.124906,0.124906,26.758065,18.441312,26.354773,26.119867,18.875816,24.436798,27,27,27,27,,,,,,,,,,,2580,2580,0.626095,0.626095,0.626095,0.626095,0.626095,0.626095,0.626095,0.626095,0.238542,0.238542,27,27,, +15830,1,0.836362,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,0,0.836,0,17.922049,3.7,5,1.11515,,1.11515,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.13131,,1.11515,,1.13131,,1.121404,,1.11515,,1.121404,,1.145419,,1.11515,,1.145419,,1.11515,,1.11515,,1.11515,,,,,,,,1.13131,,1.121404,,1.145419,,1.11515,,1.11515,,0.489938,,0.486966,,0.494171,,0.48509,,0.259272,,44.357203,,44.749041,,43.810795,,45,,45,,,,,,,,,,,,7568,,1.11515,,1.11515,,1.11515,,1.11515,,0.48509,,45,,, +15884,1,0.592727,2,0,0,2,3,DIV,4,2,Michigan,Ave,1599009,0,0.593,0,12.701284,3.7,5,0.790302,,0.790302,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.813797,,0.790302,,0.813797,,0.792622,,0.790302,,0.792622,,0.814851,,0.790302,,0.814851,,0.790302,,0.790302,,0.790302,,,,,,,,0.813797,,0.792622,,0.814851,,0.790302,,0.790302,,0.35083,,0.344477,,0.351146,,0.343781,,0.183745,,43.700826,,44.868317,,43.644271,,45,,45,,,,,,,,,,,,7568,,0.790302,,0.790302,,0.790302,,0.790302,,0.343781,,45,,, +15886,-1,0.549382,0,2,0,2,3,DIV,4,2,Michigan,Ave,1599002,0,0.549,0,11.772466,3.7,5,,0.732509,,0.732509,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.771872,,0.732509,,0.771872,,0.734572,,0.732509,,0.734572,,0.754891,,0.732509,,0.754891,,0.732509,,0.732509,,0.732509,,,,,,,,0.771872,,0.734572,,0.754891,,0.732509,,0.732509,,0.33045,,0.31926,,0.325356,,0.318641,,0.170308,,42.705155,,44.873639,,43.665779,,45,,45,,,,,,,,,,,,7568,,0.732509,,0.732509,,0.732509,,0.732509,,0.318641,,45,, +21759,-1,0.359392,0,2,0,2,3,DIV,4,5,Michigan,Ave,4600027,0,0.359,0,7.701249,3.7,5,,0.479189,,0.479189,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.504939,,0.479189,,0.504939,,0.480538,,0.479189,,0.480538,,0.493831,,0.479189,,0.493831,,0.479189,,0.479189,,0.479189,,,,,,,,0.504939,,0.480538,,0.493831,,0.479189,,0.479189,,0.216172,,0.208852,,0.21284,,0.208447,,0.111411,,42.705155,,44.873639,,43.665779,,45,,45,,,,,,,,,,,,7568,,0.479189,,0.479189,,0.479189,,0.479189,,0.208447,,45,, +23405,-1,0.780421,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,0,0.78,0,16.723304,3.7,5,,1.040561,,1.040561,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.06416,,1.040561,,1.06416,,1.047124,,1.040561,,1.047124,,1.055428,,1.040561,,1.055428,,1.040561,,1.040561,,1.040561,,,,,,,,1.06416,,1.047124,,1.055428,,1.040561,,1.040561,,0.459724,,0.454613,,0.457104,,0.452644,,0.24193,,44.002078,,44.717971,,44.366114,,45,,45,,,,,,,,,,,,7568,,1.040561,,1.040561,,1.040561,,1.040561,,0.452644,,45,, +25808,0,0.283935,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.084322,0.15,4,1.13574,1.13574,1.13574,1.13574,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,,,,,,,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,0.39183,0.39183,0.39183,0.39183,0.39183,0.39183,0.39183,0.39183,0.201594,0.201594,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,1.13574,0.39183,0.39183,15,15,, +9911,0,0.085163,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.904,4.989,0,1.824913,3.7,5,0.127744,0.127744,0.127744,0.127744,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.12934,0.139983,0.127744,0.127744,0.12934,0.139983,0.128123,0.128182,0.127744,0.127744,0.128123,0.128182,0.133667,0.130516,0.127744,0.127744,0.133667,0.130516,0.127744,0.127744,0.127744,0.127744,0.127744,0.127744,,,,,,,0.12934,0.139983,0.128123,0.128182,0.133667,0.130516,0.127744,0.127744,0.127744,0.127744,0.054131,0.057324,0.053766,0.053784,0.055429,0.054484,0.053652,0.053652,0.028529,0.028529,39.506319,36.502727,39.881686,39.863191,38.227391,39.150545,40,40,40,40,,,,,,,,,,,7946,7946,0.127744,0.127744,0.127744,0.127744,0.127744,0.127744,0.127744,0.127744,0.053652,0.053652,40,40,, +26756,0,0.202977,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.349512,0.15,4,0.811909,0.811909,0.811909,0.811909,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,,,,,,,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.280109,0.280109,0.280109,0.280109,0.280109,0.280109,0.280109,0.280109,0.144114,0.144114,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.811909,0.280109,0.280109,15,15,, +9718,0,0.187744,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.989,5.177,0,4.023094,3.7,5,0.281617,0.281617,0.281617,0.281617,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.282905,0.289384,0.281617,0.281617,0.282905,0.289384,0.281809,0.281822,0.281617,0.281617,0.281809,0.281822,0.284581,0.282968,0.281617,0.281617,0.284581,0.282968,0.281617,0.281617,0.281617,0.281617,0.281617,0.281617,,,,,,,0.282905,0.289384,0.281809,0.281822,0.284581,0.282968,0.281617,0.281617,0.281617,0.281617,0.118665,0.120609,0.118337,0.118341,0.119168,0.118684,0.118279,0.118279,0.062894,0.062894,39.817832,38.926376,39.972621,39.970861,39.583346,39.808967,40,40,40,40,,,,,,,,,,,7946,7946,0.281617,0.281617,0.281617,0.281617,0.281617,0.281617,0.281617,0.281617,0.118279,0.118279,40,40,, +11426,0,0.186459,1,1,0,2,5,,4,5,Holmes,Rd,1435108,2.81,2.996,0,3.995552,5.8,4.5,0.414354,0.414354,0.414354,0.414354,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.426788,0.414437,0.414354,0.414354,0.426788,0.414437,0.414844,0.414684,0.414354,0.414354,0.414844,0.414684,0.415272,0.426511,0.414354,0.414354,0.415272,0.426511,0.414354,0.414354,0.414354,0.414354,0.414354,0.414354,,,,,,,0.426788,0.414437,0.414844,0.414684,0.415272,0.426511,0.414354,0.414354,0.414354,0.414354,0.161599,0.157894,0.158016,0.157968,0.158144,0.161516,0.157869,0.157869,0.082664,0.082664,26.213363,26.994592,26.968088,26.978499,26.940276,26.230363,27,27,27,27,,,,,,,,,,,2580,2580,0.414354,0.414354,0.414354,0.414354,0.414354,0.414354,0.414354,0.414354,0.157869,0.157869,27,27,, +10373,0,0.076821,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0,0.077,0,1.646167,5.8,4.5,0.170714,0.170714,0.170714,0.170714,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.17115,0.177178,0.170714,0.170714,0.17115,0.177178,0.171251,0.171472,0.170714,0.170714,0.171251,0.171472,0.17738,0.174313,0.170714,0.170714,0.17738,0.174313,0.170714,0.170714,0.170714,0.170714,0.170714,0.170714,,,,,,,0.17115,0.177178,0.171251,0.171472,0.17738,0.174313,0.170714,0.170714,0.170714,0.170714,0.065173,0.066981,0.065203,0.065269,0.067042,0.066122,0.065042,0.065042,0.034057,0.034057,26.931079,26.014869,26.915255,26.880566,25.985313,26.442531,27,27,27,27,,,,,,,,,,,2580,2580,0.170714,0.170714,0.170714,0.170714,0.170714,0.170714,0.170714,0.170714,0.065042,0.065042,27,27,, +10679,1,0.133116,2,0,0,2,3,DIV,4,5,E US 12,,1430402,2.295,2.429,0,2.85248,3.7,5,0.177488,,0.177488,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.18006,,0.177488,,0.18006,,0.178483,,0.177488,,0.178483,,0.182305,,0.177488,,0.182305,,0.177488,,0.177488,,0.177488,,,,,,,,0.18006,,0.178483,,0.182305,,0.177488,,0.177488,,0.077979,,0.077506,,0.078652,,0.077207,,0.041266,,44.357203,,44.749041,,43.810795,,45,,45,,,,,,,,,,,,7568,,0.177488,,0.177488,,0.177488,,0.177488,,0.077207,,45,,, +16964,1,0.116406,2,0,0,2,4,DIV,4,5,Ecorse,Rd,1600207,0,0.116,0,2.494406,4.5,4.5,0.162426,,0.162426,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.163859,,0.162426,,0.163859,,0.162431,,0.162426,,0.162431,,0.162775,,0.162426,,0.162775,,0.162426,,0.162426,,0.162426,,,,,,,,0.163859,,0.162431,,0.162775,,0.162426,,0.162426,,0.070111,,0.069682,,0.069786,,0.069681,,0.037169,,42.624144,,42.998878,,42.907875,,43,,43,,,,,,,,,,,,6880,,0.162426,,0.162426,,0.162426,,0.162426,,0.069681,,43,,, +10365,0,0.121754,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0.358,0.48,0,2.609018,5.8,4.5,0.270565,0.270565,0.270565,0.270565,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.273023,0.388952,0.270565,0.270565,0.273023,0.388952,0.276196,0.278556,0.270565,0.270565,0.276196,0.278556,0.379152,0.298336,0.270565,0.270565,0.379152,0.298336,0.270565,0.270565,0.270565,0.270565,0.270565,0.270565,,,,,,,0.273023,0.388952,0.276196,0.278556,0.379152,0.298336,0.270565,0.270565,0.270565,0.270565,0.103823,0.138601,0.104775,0.105483,0.135661,0.111416,0.103085,0.103085,0.053978,0.053978,26.756896,18.781881,26.449485,26.225398,19.267327,24.486689,27,27,27,27,,,,,,,,,,,2580,2580,0.270565,0.270565,0.270565,0.270565,0.270565,0.270565,0.270565,0.270565,0.103085,0.103085,27,27,, +26492,0,0.128496,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.753491,0.15,4,0.513985,0.513985,0.513985,0.513985,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,,,,,,,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.177325,0.177325,0.177325,0.177325,0.177325,0.177325,0.177325,0.177325,0.091232,0.091232,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.513985,0.177325,0.177325,15,15,, +10094,0,0.142118,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0.48,0.622,0,3.045394,5.8,4.5,0.315819,0.315819,0.315819,0.315819,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.317184,0.393951,0.315819,0.315819,0.317184,0.393951,0.317591,0.318646,0.315819,0.315819,0.317591,0.318646,0.391628,0.328703,0.315819,0.315819,0.391628,0.328703,0.315819,0.315819,0.315819,0.315819,0.315819,0.315819,,,,,,,0.317184,0.393951,0.317591,0.318646,0.391628,0.328703,0.315819,0.315819,0.315819,0.315819,0.120736,0.143767,0.120859,0.121175,0.14307,0.124192,0.120327,0.120327,0.063006,0.063006,26.883782,21.645061,26.849342,26.760457,21.773497,25.941668,27,27,27,27,,,,,,,,,,,2580,2580,0.315819,0.315819,0.315819,0.315819,0.315819,0.315819,0.315819,0.315819,0.120327,0.120327,27,27,, +15885,-1,0.402707,0,1,0,2,3,DIV,4,2,Michigan,Ave,1599002,0.549,0.952,0,8.629443,3.7,5,,0.536943,,0.536943,,45,,11000,,2497,,5500,,3549,,3784,,3780,,0.707646,,0.536943,,0.707646,,0.585327,,0.536943,,0.585327,,0.699934,,0.536943,,0.699934,,0.536943,,0.536943,,0.536943,,,,,,,,0.707646,,0.585327,,0.699934,,0.536943,,0.536943,,0.284781,,0.248085,,0.282468,,0.23357,,0.124839,,34.144828,,41.280234,,34.521005,,45,,45,,,,,,,,,,,,3784,,0.536943,,0.536943,,0.536943,,0.536943,,0.23357,,45,, +24167,1,0.087271,1,0,0,2,3,,4,2,WB US-12/WB Michigan cutoff,,4711918,0,0.087,0,1.870103,3.7,5,0.130907,,0.130907,,40,,11000,,2497,,5500,,3549,,3784,,3780,,0.131342,,0.130907,,0.131342,,0.130907,,0.130907,,0.130907,,0.130958,,0.130907,,0.130958,,0.130907,,0.130907,,0.130907,,,,,,,,0.131342,,0.130907,,0.130958,,0.130907,,0.130907,,0.055111,,0.054981,,0.054996,,0.054981,,0.029236,,39.867606,,40,,39.984613,,40,,40,,,,,,,,,,,,3784,,0.130907,,0.130907,,0.130907,,0.130907,,0.054981,,40,,, +22793,-1,0.392998,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,0.787,1.18,0,8.421383,3.7,5,,0.523997,,0.523997,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.573807,,0.523997,,0.573807,,0.527192,,0.523997,,0.527192,,0.545071,,0.523997,,0.545071,,0.523997,,0.523997,,0.523997,,,,,,,,0.573807,,0.527192,,0.545071,,0.523997,,0.523997,,0.242882,,0.228897,,0.234261,,0.227939,,0.121829,,41.093703,,44.727304,,43.260205,,45,,45,,,,,,,,,,,,7568,,0.523997,,0.523997,,0.523997,,0.523997,,0.227939,,45,, +15883,1,0.025405,2,0,0,2,3,DIV,4,2,Michigan,Ave,1599009,0.593,0.618,0,0.544396,3.7,5,0.033874,,0.033874,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.03484,,0.033874,,0.03484,,0.033969,,0.033874,,0.033969,,0.03487,,0.033874,,0.03487,,0.033874,,0.033874,,0.033874,,,,,,,,0.03484,,0.033969,,0.03487,,0.033874,,0.033874,,0.015025,,0.014764,,0.015034,,0.014735,,0.007876,,43.751316,,44.8734,,43.71463,,45,,45,,,,,,,,,,,,7568,,0.033874,,0.033874,,0.033874,,0.033874,,0.014735,,45,,, +23070,-1,0.006722,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,0.78,0.787,0,0.144053,3.7,5,,0.008963,,0.008963,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.009158,,0.008963,,0.009158,,0.009018,,0.008963,,0.009018,,0.009083,,0.008963,,0.009083,,0.008963,,0.008963,,0.008963,,,,,,,,0.009158,,0.009018,,0.009083,,0.008963,,0.008963,,0.003957,,0.003915,,0.003935,,0.003899,,0.002084,,44.043253,,44.727304,,44.405003,,45,,45,,,,,,,,,,,,7568,,0.008963,,0.008963,,0.008963,,0.008963,,0.003899,,45,, +18518,0,0.950558,1,1,0,2,4,GRV,4,2,Beck,Rd,1665610,0,0.95,0,20.36911,6.55,4.5,3.168528,3.168528,3.168528,3.168528,18,18,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,,,,,,,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,1.121659,1.121659,1.121659,1.121659,1.121659,1.121659,1.121659,1.121659,0.579841,0.579841,18,18,18,18,18,18,18,18,18,18,,,,,,,,,,,2064,2064,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,3.168528,1.121659,1.121659,18,18,, +18930,0,0.809818,1,1,0,2,5,,4,2,Denton,Rd,1675103,0.336,1.146,0,17.353241,5.8,4.5,1.799595,1.799595,1.799595,1.799595,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.799595,1.799731,1.799595,1.799595,1.799595,1.799731,1.799794,1.801579,1.799595,1.799595,1.799794,1.801579,1.799596,1.79967,1.799595,1.799595,1.799596,1.79967,1.799595,1.799595,1.799595,1.799595,1.799595,1.799595,,,,,,,1.799595,1.799731,1.799794,1.801579,1.799596,1.79967,1.799595,1.799595,1.799595,1.799595,0.685646,0.685686,0.685706,0.686241,0.685646,0.685668,0.685646,0.685646,0.359019,0.359019,27,26.997967,26.997015,26.970274,26.99999,26.998876,27,27,27,27,,,,,,,,,,,2580,2580,1.799595,1.799595,1.799595,1.799595,1.799595,1.799595,1.799595,1.799595,0.685646,0.685646,27,27,, +19237,0,0.912996,1,1,0,2,5,,4,2,South Service,Rd,1811006,1.376,2.289,0,19.5642,5.8,4.5,2.02888,2.02888,2.02888,2.02888,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.055499,2.028985,2.02888,2.02888,2.055499,2.028985,2.028988,2.02888,2.02888,2.02888,2.028988,2.02888,2.040073,2.045088,2.02888,2.02888,2.040073,2.045088,2.02888,2.02888,2.02888,2.02888,2.02888,2.02888,,,,,,,2.055499,2.028985,2.028988,2.02888,2.040073,2.045088,2.02888,2.02888,2.02888,2.02888,0.780989,0.773035,0.773036,0.773003,0.776361,0.777866,0.773003,0.773003,0.404762,0.404762,26.650351,26.998596,26.99856,26.999998,26.851863,26.786016,27,27,27,27,,,,,,,,,,,2580,2580,2.02888,2.02888,2.02888,2.02888,2.02888,2.02888,2.02888,2.02888,0.773003,0.773003,27,27,, +21689,0,1.018818,1,1,0,2,5,,4,2,North Service,Rd,4603886,1.289,2.307,0,21.831812,5.8,4.5,2.26404,2.26404,2.26404,2.26404,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,,,,,,,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,0.862599,0.862599,0.862599,0.862599,0.862599,0.862599,0.862599,0.862599,0.451676,0.451676,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,2.26404,0.862599,0.862599,27,27,, +22623,0,0.947068,1,1,0,2,5,,4,2,Quirk,Rd,4705577,0,0.947,0,20.294314,5.8,4.5,2.104596,2.104596,2.104596,2.104596,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,,,,,,,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,0.801851,0.801851,0.801851,0.801851,0.801851,0.801851,0.801851,0.801851,0.419867,0.419867,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,2.104596,0.801851,0.801851,27,27,, +31515,0,1.033899,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.154977,0.15,4,4.135596,4.135596,4.135596,4.135596,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,,,,,,,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,1.426781,1.426781,1.426781,1.426781,1.426781,1.426781,1.426781,1.426781,0.734068,0.734068,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,4.135596,1.426781,1.426781,15,15,, +31516,0,0.949942,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.355899,0.15,4,3.799768,3.799768,3.799768,3.799768,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,,,,,,,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,1.31092,1.31092,1.31092,1.31092,1.31092,1.31092,1.31092,1.31092,0.674459,0.674459,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,3.799768,1.31092,1.31092,15,15,, +17525,0,0.33649,1,1,0,2,5,,4,2,Denton,Rd,1675103,0,0.336,0,7.21051,5.8,4.5,0.747757,0.747757,0.747757,0.747757,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.747762,0.757567,0.747757,0.747757,0.747762,0.757567,0.747757,0.747796,0.747757,0.747757,0.747757,0.747796,0.750876,0.751882,0.747757,0.747757,0.750876,0.751882,0.747757,0.747757,0.747757,0.747757,0.747757,0.747757,,,,,,,0.747762,0.757567,0.747757,0.747796,0.750876,0.751882,0.747757,0.747757,0.747757,0.747757,0.284897,0.287838,0.284895,0.284907,0.285831,0.286133,0.284895,0.284895,0.149177,0.149177,26.999803,26.650351,27,26.99856,26.887826,26.851863,27,27,27,27,,,,,,,,,,,2580,2580,0.747757,0.747757,0.747757,0.747757,0.747757,0.747757,0.747757,0.747757,0.284895,0.284895,27,27,, +31353,0,0.461157,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.88193,0.15,4,1.844627,1.844627,1.844627,1.844627,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,,,,,,,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,0.636396,0.636396,0.636396,0.636396,0.636396,0.636396,0.636396,0.636396,0.327421,0.327421,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,1.844627,0.636396,0.636396,15,15,, +18457,0,0.545361,1,1,0,2,5,,4,2,Denton,Rd,1675103,1.146,1.691,0,11.686298,5.8,4.5,1.211912,1.211912,1.211912,1.211912,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.212138,1.212594,1.211912,1.211912,1.212138,1.212594,1.212917,1.21706,1.211912,1.211912,1.212917,1.21706,1.212066,1.215646,1.211912,1.211912,1.212066,1.215646,1.211912,1.211912,1.211912,1.211912,1.211912,1.211912,,,,,,,1.212138,1.212594,1.212917,1.21706,1.212066,1.215646,1.211912,1.211912,1.211912,1.211912,0.461806,0.461943,0.46204,0.463283,0.461785,0.462859,0.461739,0.461739,0.241777,0.241777,26.994968,26.984831,26.977631,26.885793,26.996582,26.917085,27,27,27,27,,,,,,,,,,,2580,2580,1.211912,1.211912,1.211912,1.211912,1.211912,1.211912,1.211912,1.211912,0.461739,0.461739,27,27,, +19236,0,0.438937,1,1,0,2,5,,4,2,South Service,Rd,1811006,2.289,2.728,0,9.405796,5.8,4.5,0.975416,0.975416,0.975416,0.975416,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.988213,0.978147,0.975416,0.975416,0.988213,0.978147,0.975468,0.97748,0.975416,0.975416,0.975468,0.97748,0.980797,1.367123,0.975416,0.975416,0.980797,1.367123,0.975416,0.975416,0.975416,0.975416,0.975416,0.975416,,,,,,,0.988213,0.978147,0.975468,0.97748,0.980797,1.367123,0.975416,0.975416,0.975416,0.975416,0.375473,0.372453,0.371649,0.372253,0.373248,0.489146,0.371633,0.371633,0.194595,0.194595,26.650351,26.924624,26.99856,26.942983,26.851863,19.263976,27,27,27,27,,,,,,,,,,,2580,2580,0.975416,0.975416,0.975416,0.975416,0.975416,0.975416,0.975416,0.975416,0.371633,0.371633,27,27,, +21475,0,0.494508,1,1,0,2,5,,4,2,North Service,Rd,4603886,2.307,2.802,0,10.596601,5.8,4.5,1.098907,1.098907,1.098907,1.098907,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,,,,,,,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,0.418683,0.418683,0.418683,0.418683,0.418683,0.418683,0.418683,0.418683,0.219232,0.219232,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,1.098907,0.418683,0.418683,27,27,, +31410,0,0.309529,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.632775,0.15,4,1.238118,1.238118,1.238118,1.238118,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,,,,,,,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,0.427151,0.427151,0.427151,0.427151,0.427151,0.427151,0.427151,0.427151,0.219766,0.219766,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,1.238118,0.427151,0.427151,15,15,, +31244,0,0.192428,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.123465,0.15,4,0.769714,0.769714,0.769714,0.769714,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,,,,,,,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.265551,0.265551,0.265551,0.265551,0.265551,0.265551,0.265551,0.265551,0.136624,0.136624,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.769714,0.265551,0.265551,15,15,, +31356,0,0.217534,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.661444,0.15,4,0.870136,0.870136,0.870136,0.870136,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,,,,,,,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.300197,0.300197,0.300197,0.300197,0.300197,0.300197,0.300197,0.300197,0.154449,0.154449,14.999996,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.870136,0.300197,0.300197,15,15,, +18043,0,0.397747,1,1,0,2,4,,4,2,Tyler,Rd,1675701,0,0.398,0,8.523148,4.5,4.5,0.628021,0.628021,0.628021,0.628021,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.628113,0.628237,0.628021,0.628021,0.628113,0.628237,0.628034,0.62804,0.628021,0.628021,0.628034,0.62804,0.628218,0.629427,0.628021,0.628021,0.628218,0.629427,0.628021,0.628021,0.628021,0.628021,0.628021,0.628021,,,,,,,0.628113,0.628237,0.628034,0.62804,0.628218,0.629427,0.628021,0.628021,0.628021,0.628021,0.260028,0.260066,0.260005,0.260006,0.26006,0.260423,0.260001,0.260001,0.137955,0.137955,37.994491,37.986952,37.999247,37.998877,37.988106,37.91514,38,38,38,38,,,,,,,,,,,3096,3096,0.628021,0.628021,0.628021,0.628021,0.628021,0.628021,0.628021,0.628021,0.260001,0.260001,38,38,, +31411,0,0.072602,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.555762,0.15,4,0.290409,0.290409,0.290409,0.290409,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,0.29041,0.290409,0.290409,0.290409,0.29041,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,,,,,,,0.290409,0.290409,0.290409,0.290409,0.29041,0.290409,0.290409,0.290409,0.290409,0.290409,0.100191,0.100191,0.100191,0.100191,0.100191,0.100191,0.100191,0.100191,0.051548,0.051548,14.999996,14.999988,14.999995,14.999994,14.999962,14.999978,15,15,15,15,,,,,,,,,,,34400,34400,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,0.290409,0.100191,0.100191,15,15,, +15827,1,0.470906,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,1.852,2.323,0,10.090848,3.7,5,0.627875,,0.627875,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.017026,,0.627875,,1.017026,,0.697873,,0.627875,,0.697873,,0.90666,,0.627875,,0.90666,,0.627875,,0.627875,,0.627875,,,,,,,,1.017026,,0.697873,,0.90666,,0.627875,,0.627875,,0.389871,,0.294125,,0.356761,,0.273126,,0.145981,,27.781371,,40.486401,,31.163145,,45,,45,,,,,,,,,,,,7568,,0.627875,,0.627875,,0.627875,,0.627875,,0.273126,,45,,, +15881,0,0.508062,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.014,0.522,0,10.887042,4.5,4.5,0.802203,0.802203,0.802203,0.802203,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.804736,0.860028,0.802203,0.802203,0.804736,0.860028,0.804052,0.803672,0.802203,0.802203,0.804052,0.803672,0.896223,0.820591,0.802203,0.802203,0.896223,0.820591,0.802203,0.802203,0.802203,0.802203,0.802203,0.802203,,,,,,,0.804736,0.860028,0.804052,0.803672,0.896223,0.820591,0.802203,0.802203,0.802203,0.802203,0.332872,0.34946,0.332667,0.332553,0.360318,0.337628,0.332112,0.332112,0.176217,0.176217,37.880404,35.445034,37.912616,37.930567,34.013544,37.148496,38,38,38,38,,,,,,,,,,,3096,3096,0.802203,0.802203,0.802203,0.802203,0.802203,0.802203,0.802203,0.802203,0.332112,0.332112,38,38,, +16958,1,1.00454,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,1.192,2.197,0,21.525851,4.5,4.5,1.401683,,1.401683,,43,,20000,,4540,,10000,,6452,,6880,,6872,,1.490242,,1.401683,,1.490242,,1.402041,,1.401683,,1.402041,,1.423322,,1.401683,,1.423322,,1.401683,,1.401683,,1.401683,,,,,,,,1.490242,,1.402041,,1.423322,,1.401683,,1.401683,,0.62789,,0.601429,,0.607814,,0.601322,,0.320752,,40.444698,,42.989034,,42.346281,,43,,43,,,,,,,,,,,,6880,,1.401683,,1.401683,,1.401683,,1.401683,,0.601322,,43,,, +18105,0,0.477136,1,1,0,2,4,GRV,4,2,Beck,Rd,1665610,1.945,2.422,0,10.224343,6.55,4.5,1.590453,1.590453,1.590453,1.590453,18,18,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,1.590454,1.590453,1.590453,1.590453,1.590454,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,,,,,,,1.590453,1.590453,1.590453,1.590453,1.590454,1.590453,1.590453,1.590453,1.590453,1.590453,0.56302,0.563021,0.563021,0.56302,0.563021,0.56302,0.56302,0.56302,0.291053,0.291053,18,18,18,18,17.999998,18,18,18,18,18,,,,,,,,,,,2064,2064,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,1.590453,0.56302,0.56302,18,18,, +21598,-1,1.004601,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,1.229,2.233,0,21.527162,4.5,4.5,,1.401769,,1.401769,,43,,20000,,4540,,10000,,6452,,6880,,6872,,1.414346,,1.401769,,1.414346,,1.402153,,1.401769,,1.402153,,1.469314,,1.401769,,1.469314,,1.401769,,1.401769,,1.401769,,,,,,,,1.414346,,1.402153,,1.469314,,1.401769,,1.401769,,0.605132,,0.601474,,0.621622,,0.601359,,0.320771,,42.617604,,42.988212,,41.023275,,43,,43,,,,,,,,,,,,6880,,1.401769,,1.401769,,1.401769,,1.401769,,0.601359,,43,, +23499,-1,0.823878,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,1.316,2.14,0,17.654522,3.7,5,,1.098504,,1.098504,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.698899,,1.098504,,1.698899,,1.223476,,1.098504,,1.223476,,1.505881,,1.098504,,1.505881,,1.098504,,1.098504,,1.098504,,,,,,,,1.698899,,1.223476,,1.505881,,1.098504,,1.098504,,0.657968,,0.515341,,0.600062,,0.477849,,0.255402,,29.096881,,40.403449,,32.826416,,45,,45,,,,,,,,,,,,7568,,1.098504,,1.098504,,1.098504,,1.098504,,0.477849,,45,, +30931,0,0.424945,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.105954,0.15,4,1.699778,1.699778,1.699778,1.699778,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,,,,,,,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,0.586423,0.586423,0.586423,0.586423,0.586423,0.586423,0.586423,0.586423,0.301711,0.301711,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,1.699778,0.586423,0.586423,15,15,, +33768,0,0.571302,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.242179,0.15,4,2.285207,2.285207,2.285207,2.285207,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,,,,,,,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,0.788396,0.788396,0.788396,0.788396,0.788396,0.788396,0.788396,0.788396,0.405624,0.405624,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,2.285207,0.788396,0.788396,15,15,, +33769,0,0.584368,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.52217,0.15,4,2.337472,2.337472,2.337472,2.337472,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,,,,,,,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,0.806428,0.806428,0.806428,0.806428,0.806428,0.806428,0.806428,0.806428,0.414901,0.414901,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,2.337472,0.806428,0.806428,15,15,, +15882,0,0.013751,1,1,0,2,4,,4,2,Denton,Rd,1599103,0,0.014,0,0.294671,4.5,4.5,0.021713,0.021713,0.021713,0.021713,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.021713,0.023108,0.021713,0.021713,0.021713,0.023108,0.021713,0.021739,0.021713,0.021713,0.021713,0.021739,0.021714,0.022012,0.021713,0.021713,0.021714,0.022012,0.021713,0.021713,0.021713,0.021713,0.021713,0.021713,,,,,,,0.021713,0.023108,0.021713,0.021739,0.021714,0.022012,0.021713,0.021713,0.021713,0.021713,0.008989,0.009408,0.008989,0.008997,0.008989,0.009079,0.008989,0.008989,0.00477,0.00477,37.999894,35.705812,37.999427,37.95365,37.998019,37.483488,38,38,38,38,,,,,,,,,,,3096,3096,0.021713,0.021713,0.021713,0.021713,0.021713,0.021713,0.021713,0.021713,0.008989,0.008989,38,38,, +15828,1,0.508881,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,1.344,1.852,0,10.904585,3.7,5,0.678507,,0.678507,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.973694,,0.678507,,0.973694,,0.760218,,0.678507,,0.760218,,1.049529,,0.678507,,1.049529,,0.678507,,0.678507,,0.678507,,,,,,,,0.973694,,0.760218,,1.049529,,0.678507,,0.678507,,0.383707,,0.319664,,0.406457,,0.295151,,0.157753,,31.357749,,40.163241,,29.091931,,45,,45,,,,,,,,,,,,7568,,0.678507,,0.678507,,0.678507,,0.678507,,0.295151,,45,,, +15877,0,0.35008,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.998,1.348,0,7.501718,4.5,4.5,0.552758,0.552758,0.552758,0.552758,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.558043,0.674715,0.552758,0.552758,0.558043,0.674715,0.553012,0.553246,0.552758,0.552758,0.553012,0.553246,0.621119,0.575674,0.552758,0.552758,0.621119,0.575674,0.552758,0.552758,0.552758,0.552758,0.552758,0.552758,,,,,,,0.558043,0.674715,0.553012,0.553246,0.621119,0.575674,0.552758,0.552758,0.552758,0.552758,0.230427,0.265429,0.228918,0.228988,0.24935,0.235717,0.228842,0.228842,0.121423,0.121423,37.640106,31.1314,37.982591,37.966512,33.817699,36.48736,38,38,38,38,,,,,,,,,,,3096,3096,0.552758,0.552758,0.552758,0.552758,0.552758,0.552758,0.552758,0.552758,0.228842,0.228842,38,38,, +15879,0,0.408993,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.57,0.979,0,8.764129,4.5,4.5,0.645778,0.645778,0.645778,0.645778,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.653042,0.686007,0.645778,0.645778,0.653042,0.686007,0.651264,0.648795,0.645778,0.645778,0.651264,0.648795,0.747904,0.663223,0.645778,0.645778,0.747904,0.663223,0.645778,0.645778,0.645778,0.645778,0.645778,0.645778,,,,,,,0.653042,0.686007,0.651264,0.648795,0.747904,0.663223,0.645778,0.645778,0.645778,0.645778,0.269531,0.279421,0.268998,0.268257,0.29799,0.272586,0.267352,0.267352,0.141856,0.141856,37.577288,35.771595,37.679881,37.823265,32.81112,37.000459,38,38,38,38,,,,,,,,,,,3096,3096,0.645778,0.645778,0.645778,0.645778,0.645778,0.645778,0.645778,0.645778,0.267352,0.267352,38,38,, +15880,0,0.048567,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.522,0.57,0,1.040723,4.5,4.5,0.076685,0.076685,0.076685,0.076685,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.076707,0.07832,0.076685,0.076685,0.076707,0.07832,0.076699,0.076697,0.076685,0.076685,0.076699,0.076697,0.07836,0.076918,0.076685,0.076685,0.07836,0.076918,0.076685,0.076685,0.076685,0.076685,0.076685,0.076685,,,,,,,0.076707,0.07832,0.076699,0.076697,0.07836,0.076918,0.076685,0.076685,0.076685,0.076685,0.031754,0.032238,0.031752,0.031751,0.03225,0.031817,0.031748,0.031748,0.016845,0.016845,37.988984,37.206439,37.99287,37.993932,37.187507,37.88498,38,38,38,38,,,,,,,,,,,3096,3096,0.076685,0.076685,0.076685,0.076685,0.076685,0.076685,0.076685,0.076685,0.031748,0.031748,38,38,, +31517,0,0.024956,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.534771,0.15,4,0.099824,0.099824,0.099824,0.099824,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,,,,,,,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.034439,0.034439,0.034439,0.034439,0.034439,0.034439,0.034439,0.034439,0.017719,0.017719,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.099824,0.034439,0.034439,15,15,, +31519,0,0.035944,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.770237,0.15,4,0.143778,0.143778,0.143778,0.143778,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,,,,,,,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.049603,0.049603,0.049603,0.049603,0.049603,0.049603,0.049603,0.049603,0.025521,0.025521,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.143778,0.049603,0.049603,15,15,, +15878,0,0.019395,2,2,0,2,4,,4,2,Denton,Rd,1599103,0.979,0.998,0,0.415615,4.5,4.5,0.030624,0.030624,0.030624,0.030624,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.030673,0.030673,0.030624,0.030624,0.030673,0.030673,0.030628,0.030627,0.030624,0.030624,0.030628,0.030627,0.031066,0.030642,0.030624,0.030624,0.031066,0.030642,0.030624,0.030624,0.030624,0.030624,0.030624,0.030624,,,,,,,0.030673,0.030673,0.030628,0.030627,0.031066,0.030642,0.030624,0.030624,0.030624,0.030624,0.012693,0.012693,0.01268,0.012679,0.012811,0.012684,0.012678,0.012678,0.006727,0.006727,37.940224,37.939386,37.995123,37.9971,37.45964,37.977936,38,38,38,38,,,,,,,,,,,6192,6192,0.030624,0.030624,0.030624,0.030624,0.030624,0.030624,0.030624,0.030624,0.012678,0.012678,38,38,, +30930,0,0.43994,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.42729,0.15,4,1.759761,1.759761,1.759761,1.759761,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,,,,,,,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,0.607117,0.607117,0.607117,0.607117,0.607117,0.607117,0.607117,0.607117,0.312358,0.312358,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,1.759761,0.607117,0.607117,15,15,, +16955,1,0.579678,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,2.197,2.776,0,12.421668,4.5,4.5,0.808853,,0.808853,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.840739,,0.808853,,0.840739,,0.808937,,0.808853,,0.808937,,0.815287,,0.808853,,0.815287,,0.808853,,0.808853,,0.808853,,,,,,,,0.840739,,0.808937,,0.815287,,0.808853,,0.808853,,0.356564,,0.347023,,0.348928,,0.346998,,0.185092,,41.36915,,42.995504,,42.660633,,43,,43,,,,,,,,,,,,6880,,0.808853,,0.808853,,0.808853,,0.808853,,0.346998,,43,,, +21400,-1,0.574266,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,2.233,2.807,0,12.305697,4.5,4.5,,0.801301,,0.801301,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.804903,,0.801301,,0.804903,,0.801403,,0.801301,,0.801403,,0.815923,,0.801301,,0.815923,,0.801301,,0.801301,,0.801301,,,,,,,,0.804903,,0.801403,,0.815923,,0.801301,,0.801301,,0.344839,,0.343789,,0.348145,,0.343758,,0.183364,,42.807592,,42.994529,,42.229416,,43,,43,,,,,,,,,,,,6880,,0.801301,,0.801301,,0.801301,,0.801301,,0.343758,,43,, +18512,0,0.012643,1,1,0,2,4,,4,2,Beck,Rd,1665610,1.932,1.945,0,0.27093,4.5,4.5,0.019963,0.019963,0.019963,0.019963,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.019965,0.019963,0.019963,0.019963,0.019965,0.019963,0.019963,0.019963,0.019963,0.019963,0.019963,0.019963,0.019994,0.019963,0.019963,0.019963,0.019994,0.019963,0.019963,0.019963,0.019963,0.019963,0.019963,0.019963,,,,,,,0.019965,0.019963,0.019963,0.019963,0.019994,0.019963,0.019963,0.019963,0.019963,0.019963,0.008265,0.008265,0.008265,0.008265,0.008274,0.008265,0.008265,0.008265,0.004385,0.004385,37.997535,38,37.999791,38,37.941203,38,38,38,38,38,,,,,,,,,,,3096,3096,0.019963,0.019963,0.019963,0.019963,0.019963,0.019963,0.019963,0.019963,0.008265,0.008265,38,38,, +18508,0,0.813037,1,1,0,2,4,GRV,4,2,Beck,Rd,1665610,2.422,3.234,0,17.422229,6.55,4.5,2.710124,2.710124,2.710124,2.710124,18,18,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.710124,2.710125,2.710124,2.710124,2.710124,2.710125,2.710125,2.710124,2.710124,2.710124,2.710125,2.710124,2.710126,2.710124,2.710124,2.710124,2.710126,2.710124,2.710124,2.710124,2.710124,2.710124,2.710124,2.710124,,,,,,,2.710124,2.710125,2.710125,2.710124,2.710126,2.710124,2.710124,2.710124,2.710124,2.710124,0.959384,0.959384,0.959384,0.959384,0.959384,0.959384,0.959384,0.959384,0.495953,0.495953,18,17.999999,17.999999,18,17.999993,18,18,18,18,18,,,,,,,,,,,2064,2064,2.710124,2.710124,2.710124,2.710124,2.710124,2.710124,2.710124,2.710124,0.959384,0.959384,18,18,, +23659,-1,0.321452,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,2.385,2.706,0,6.888254,3.7,5,,0.428602,,0.428602,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.509565,,0.428602,,0.509565,,0.463261,,0.428602,,0.463261,,0.570859,,0.428602,,0.570859,,0.428602,,0.428602,,0.428602,,,,,,,,0.509565,,0.463261,,0.570859,,0.428602,,0.428602,,0.210731,,0.19684,,0.229119,,0.186442,,0.09965,,37.850126,,41.633398,,33.786108,,45,,45,,,,,,,,,,,,7568,,0.428602,,0.428602,,0.428602,,0.428602,,0.186442,,45,, +31256,0,0.480874,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.304452,0.15,4,1.923498,1.923498,1.923498,1.923498,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,,,,,,,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,0.663607,0.663607,0.663607,0.663607,0.663607,0.663607,0.663607,0.663607,0.341421,0.341421,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,1.923498,0.663607,0.663607,15,15,, +23157,-1,0.244971,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,2.14,2.385,0,5.249388,3.7,5,,0.326629,,0.326629,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.489885,,0.326629,,0.489885,,0.375945,,0.326629,,0.375945,,0.540952,,0.326629,,0.540952,,0.326629,,0.326629,,0.326629,,,,,,,,0.489885,,0.375945,,0.540952,,0.326629,,0.326629,,0.19106,,0.156878,,0.20638,,0.142083,,0.075941,,30.003568,,39.096897,,27.17115,,45,,45,,,,,,,,,,,,7568,,0.326629,,0.326629,,0.326629,,0.326629,,0.142083,,45,, +15019,0,0.159539,1,1,0,2,3,,4,2,Ford,Rd,1595510,0.975,1.135,0,3.418691,3.7,5,0.239308,0.239308,0.239308,0.239308,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.278928,0.332558,0.239308,0.239308,0.278928,0.332558,0.244226,0.245331,0.239308,0.239308,0.244226,0.245331,0.323361,0.276607,0.239308,0.239308,0.323361,0.276607,0.239308,0.239308,0.239308,0.239308,0.239308,0.239308,,,,,,,0.278928,0.332558,0.244226,0.245331,0.323361,0.276607,0.239308,0.239308,0.239308,0.239308,0.112395,0.128484,0.101985,0.102316,0.125725,0.111699,0.10051,0.10051,0.053446,0.053446,34.318302,28.783986,39.194569,39.017977,29.602665,34.606314,40,40,40,40,,,,,,,,,,,3784,3784,0.239308,0.239308,0.239308,0.239308,0.239308,0.239308,0.239308,0.239308,0.10051,0.10051,40,40,, +15459,0,0.487203,1,1,0,2,4,,4,2,Beck,Rd,1595603,2.25,2.737,0,10.440063,4.5,4.5,0.769268,0.769268,0.769268,0.769268,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.449609,0.873882,0.769268,0.769268,1.449609,0.873882,0.879471,0.887318,0.769268,0.769268,0.879471,0.887318,1.00568,1.400248,0.769268,0.769268,1.00568,1.400248,0.769268,0.769268,0.769268,0.769268,0.769268,0.769268,,,,,,,1.449609,0.873882,0.879471,0.887318,1.00568,1.400248,0.769268,0.769268,0.769268,0.769268,0.522579,0.349861,0.351538,0.353892,0.389401,0.507771,0.318477,0.318477,0.168982,0.168982,20.165562,33.450952,33.238351,32.944426,29.067068,20.876424,38,38,38,38,,,,,,,,,,,3096,3096,0.769268,0.769268,0.769268,0.769268,0.769268,0.769268,0.769268,0.769268,0.318477,0.318477,38,38,, +16481,0,0.363213,1,1,1,2,5,,4,2,Cherry Hill,Rd,1607409,0.979,1.343,0,7.783138,5.8,4.5,0.80714,0.80714,0.80714,0.80714,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.083667,0.941184,0.80714,0.80714,1.083667,0.941184,0.819513,0.815607,0.80714,0.80714,0.819513,0.815607,1.053442,1.022927,0.80714,0.80714,1.053442,1.022927,0.80714,0.80714,0.80714,0.80714,0.80714,0.80714,,,,,,,1.083667,0.941184,0.819513,0.815607,1.053442,1.022927,0.80714,0.80714,0.80714,0.80714,0.390478,0.347733,0.311232,0.31006,0.381411,0.372256,0.30752,0.30752,0.161024,0.161024,20.110232,23.154658,26.592374,26.719726,20.687228,21.304342,27,27,27,27,,,,,,,,,,,2838,2838,0.80714,0.80714,0.80714,0.80714,0.80714,0.80714,0.80714,0.80714,0.30752,0.30752,27,27,, +21474,0,0.743283,1,1,0,2,5,,4,2,Ridge,Rd,4603889,1.492,2.235,0,15.927499,5.8,4.5,1.651741,1.651741,1.651741,1.651741,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.793401,1.665468,1.651741,1.651741,1.793401,1.665468,1.651951,1.651834,1.651741,1.651741,1.651951,1.651834,1.673976,1.767371,1.651741,1.651741,1.673976,1.767371,1.651741,1.651741,1.651741,1.651741,1.651741,1.651741,,,,,,,1.793401,1.665468,1.651951,1.651834,1.673976,1.767371,1.651741,1.651741,1.651741,1.651741,0.671811,0.633431,0.629376,0.629341,0.635984,0.664002,0.629313,0.629313,0.329522,0.329522,24.86727,26.77746,26.996568,26.998474,26.641364,25.233519,27,27,27,27,,,,,,,,,,,2580,2580,1.651741,1.651741,1.651741,1.651741,1.651741,1.651741,1.651741,1.651741,0.629313,0.629313,27,27,, +21807,0,0.506082,1,1,0,2,4,,4,2,Geddes,Rd,4603888,0.992,1.498,0,10.844604,4.5,4.5,0.799076,0.799076,0.799076,0.799076,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.083515,0.948303,0.799076,0.799076,1.083515,0.948303,0.818168,0.818675,0.799076,0.799076,0.818168,0.818675,1.029453,1.139753,0.799076,0.799076,1.029453,1.139753,0.799076,0.799076,0.799076,0.799076,0.799076,0.799076,,,,,,,1.083515,0.948303,0.818168,0.818675,1.029453,1.139753,0.799076,0.799076,0.799076,0.799076,0.416149,0.375586,0.336545,0.336697,0.399931,0.433021,0.330817,0.330817,0.17553,0.17553,28.02444,32.02024,37.113284,37.090273,29.496137,26.641645,38,38,38,38,,,,,,,,,,,3096,3096,0.799076,0.799076,0.799076,0.799076,0.799076,0.799076,0.799076,0.799076,0.330817,0.330817,38,38,, +24097,0,0.426917,1,1,0,2,5,,4,2,Warren,Rd,4710470,0.97,1.397,0,9.148213,5.8,4.5,0.948704,0.948704,0.948704,0.948704,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.981387,0.948811,0.948704,0.948704,0.981387,0.948811,0.94879,0.948766,0.948704,0.948704,0.94879,0.948766,0.949925,0.966959,0.948704,0.948704,0.949925,0.966959,0.948704,0.948704,0.948704,0.948704,0.948704,0.948704,,,,,,,0.981387,0.948811,0.94879,0.948766,0.949925,0.966959,0.948704,0.948704,0.948704,0.948704,0.371261,0.361488,0.361482,0.361475,0.361822,0.366933,0.361456,0.361456,0.189266,0.189266,26.100822,26.996956,26.997549,26.998214,26.965296,26.49025,27,27,27,27,,,,,,,,,,,2580,2580,0.948704,0.948704,0.948704,0.948704,0.948704,0.948704,0.948704,0.948704,0.361456,0.361456,27,27,, +31436,0,0.438904,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.405093,0.15,4,1.755617,1.755617,1.755617,1.755617,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,,,,,,,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,0.605688,0.605688,0.605688,0.605688,0.605688,0.605688,0.605688,0.605688,0.311622,0.311622,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,1.755617,0.605688,0.605688,15,15,, +31521,0,1.010395,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.651323,0.15,4,4.04158,4.04158,4.04158,4.04158,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,,,,,,,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,1.394345,1.394345,1.394345,1.394345,1.394345,1.394345,1.394345,1.394345,0.71738,0.71738,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,4.04158,1.394345,1.394345,15,15,, +31523,0,1.007778,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.595249,0.15,4,4.031113,4.031113,4.031113,4.031113,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,,,,,,,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,1.390734,1.390734,1.390734,1.390734,1.390734,1.390734,1.390734,1.390734,0.715523,0.715523,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,4.031113,1.390734,1.390734,15,15,, +31524,0,1.114947,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.891731,0.15,4,4.45979,4.45979,4.45979,4.45979,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.459791,4.45979,4.45979,4.45979,4.459791,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,,,,,,,4.459791,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,1.538628,1.538627,1.538627,1.538627,1.538628,1.538628,1.538627,1.538627,0.791613,0.791613,14.999997,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,4.45979,1.538627,1.538627,15,15,, +31527,0,0.521571,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.176517,0.15,4,2.086283,2.086283,2.086283,2.086283,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.086284,2.086283,2.086283,2.086283,2.086284,2.086283,2.086283,2.086283,2.086283,2.086283,2.086283,2.086283,2.086283,2.086284,2.086283,2.086283,2.086283,2.086284,2.086283,2.086283,2.086283,2.086283,2.086283,2.086283,,,,,,,2.086284,2.086283,2.086283,2.086283,2.086283,2.086284,2.086283,2.086283,2.086283,2.086283,0.719768,0.719768,0.719768,0.719768,0.719768,0.719768,0.719768,0.719768,0.370315,0.370315,14.999995,15,15,15,14.999999,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,2.086283,2.086283,2.086283,2.086283,2.086283,2.086283,2.086283,2.086283,0.719768,0.719768,15,15,, +31729,0,0.523248,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.21245,0.15,4,2.092991,2.092991,2.092991,2.092991,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,,,,,,,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,0.722082,0.722082,0.722082,0.722082,0.722082,0.722082,0.722082,0.722082,0.371506,0.371506,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,2.092991,0.722082,0.722082,15,15,, +21688,0,0.253899,1,1,0,2,5,,4,2,Ridge,Rd,4603889,1.239,1.492,0,5.440702,5.8,4.5,0.564221,0.564221,0.564221,0.564221,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.578527,0.589235,0.564221,0.564221,0.578527,0.589235,0.5643,0.56431,0.564221,0.564221,0.5643,0.56431,0.583968,0.580152,0.564221,0.564221,0.583968,0.580152,0.564221,0.564221,0.564221,0.564221,0.564221,0.564221,,,,,,,0.578527,0.589235,0.5643,0.56431,0.583968,0.580152,0.564221,0.564221,0.564221,0.564221,0.21926,0.222472,0.214992,0.214995,0.220892,0.219748,0.214968,0.214968,0.112562,0.112562,26.332344,25.85379,26.996222,26.995751,26.086969,26.258562,27,27,27,27,,,,,,,,,,,2580,2580,0.564221,0.564221,0.564221,0.564221,0.564221,0.564221,0.564221,0.564221,0.214968,0.214968,27,27,, +40554,-1,0.026819,0,2,0,2,5,,4,3,Livernois,Rd,5499956,0.089,0.115,0,0.574703,5.8,4.5,,0.059599,,0.059599,,27,,15000,,3405,,7500,,4839,,5160,,5154,,0.060558,,0.059599,,0.060558,,0.059627,,0.059599,,0.059627,,0.059796,,0.059599,,0.059796,,0.059599,,0.059599,,0.059599,,,,,,,,0.060558,,0.059627,,0.059796,,0.059599,,0.059599,,0.022995,,0.022716,,0.022766,,0.022707,,0.01189,,26.572231,,26.987165,,26.91106,,27,,27,,,,,,,,,,,,5160,,0.059599,,0.059599,,0.059599,,0.059599,,0.022707,,27,, +22075,0,0.488111,1,1,0,2,4,,4,2,Geddes,Rd,4603888,0.504,0.992,0,10.459513,4.5,4.5,0.770701,0.770701,0.770701,0.770701,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.77808,0.817516,0.770701,0.770701,0.77808,0.817516,0.771532,0.772498,0.770701,0.770701,0.771532,0.772498,0.796951,0.777041,0.770701,0.770701,0.796951,0.777041,0.770701,0.770701,0.770701,0.770701,0.770701,0.770701,,,,,,,0.77808,0.817516,0.771532,0.772498,0.796951,0.777041,0.770701,0.770701,0.770701,0.770701,0.321284,0.333115,0.31932,0.319609,0.326945,0.320972,0.31907,0.31907,0.169297,0.169297,37.639628,35.823927,37.959063,37.911601,36.748336,37.689959,38,38,38,38,,,,,,,,,,,3096,3096,0.770701,0.770701,0.770701,0.770701,0.770701,0.770701,0.770701,0.770701,0.31907,0.31907,38,38,, +31526,0,0.996176,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.346635,0.15,4,3.984705,3.984705,3.984705,3.984705,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,,,,,,,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,1.374723,1.374723,1.374723,1.374723,1.374723,1.374723,1.374723,1.374723,0.707285,0.707285,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,3.984705,1.374723,1.374723,15,15,, +40557,1,0.008343,2,0,0,2,4,,4,3,Tienken,Rd,626010,3.484,3.492,0,0.178772,4.5,4.5,0.013173,,0.013173,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.013211,,0.013173,,0.013211,,0.013193,,0.013173,,0.013193,,0.013278,,0.013173,,0.013278,,0.013173,,0.013173,,0.013173,,,,,,,,0.013211,,0.013193,,0.013278,,0.013173,,0.013173,,0.005465,,0.00546,,0.005485,,0.005453,,0.002894,,37.890292,,37.941881,,37.699123,,38,,38,,,,,,,,,,,,6192,,0.013173,,0.013173,,0.013173,,0.013173,,0.005453,,38,,, +31525,0,0.461168,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.882169,0.15,4,1.844672,1.844672,1.844672,1.844672,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,,,,,,,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,0.636412,0.636412,0.636412,0.636412,0.636412,0.636412,0.636412,0.636412,0.327429,0.327429,14.999999,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,1.844672,0.636412,0.636412,15,15,, +15230,0,0.975798,1,1,0,2,3,,4,2,Ford,Rd,1595510,0,0.975,0,20.909948,3.7,5,1.463696,1.463696,1.463696,1.463696,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.574207,1.978441,1.463696,1.463696,1.574207,1.978441,1.493057,1.505824,1.463696,1.463696,1.493057,1.505824,1.88745,1.576881,1.463696,1.463696,1.88745,1.576881,1.463696,1.463696,1.463696,1.463696,1.463696,1.463696,,,,,,,1.574207,1.978441,1.493057,1.505824,1.88745,1.576881,1.463696,1.463696,1.463696,1.463696,0.647906,0.769176,0.623561,0.627391,0.741879,0.648708,0.614752,0.614752,0.326892,0.326892,37.19197,29.592924,39.213404,38.880953,31.019546,37.128906,40,40,40,40,,,,,,,,,,,3784,3784,1.463696,1.463696,1.463696,1.463696,1.463696,1.463696,1.463696,1.463696,0.614752,0.614752,40,40,, +15674,0,0.560727,1,1,0,2,5,,4,2,Ridge,Rd,1595602,0.588,1.149,0,12.015576,5.8,4.5,1.24606,1.24606,1.24606,1.24606,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.467588,1.253195,1.24606,1.24606,1.467588,1.253195,1.246353,1.246175,1.24606,1.24606,1.246353,1.246175,1.264378,1.428517,1.24606,1.24606,1.264378,1.428517,1.24606,1.24606,1.24606,1.24606,1.24606,1.24606,,,,,,,1.467588,1.253195,1.246353,1.246175,1.264378,1.428517,1.24606,1.24606,1.24606,1.24606,0.541207,0.476889,0.474837,0.474783,0.480244,0.529486,0.474749,0.474749,0.248589,0.248589,22.924419,26.846275,26.993654,26.997499,26.608835,23.551431,27,27,27,27,,,,,,,,,,,2580,2580,1.24606,1.24606,1.24606,1.24606,1.24606,1.24606,1.24606,1.24606,0.474749,0.474749,27,27,, +16238,0,0.385633,1,1,0,2,5,,4,2,Cherry Hill,Rd,1607409,0,0.386,0,8.26357,5.8,4.5,0.856963,0.856963,0.856963,0.856963,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.856963,0.85699,0.856963,0.856963,0.856963,0.85699,0.856963,0.856963,0.856963,0.856963,0.856963,0.856963,0.856974,0.856963,0.856963,0.856963,0.856974,0.856963,0.856963,0.856963,0.856963,0.856963,0.856963,0.856963,,,,,,,0.856963,0.85699,0.856963,0.856963,0.856974,0.856963,0.856963,0.856963,0.856963,0.856963,0.326503,0.326511,0.326503,0.326503,0.326506,0.326503,0.326503,0.326503,0.170964,0.170964,27,26.99915,27,27,26.999633,27,27,27,27,27,,,,,,,,,,,2580,2580,0.856963,0.856963,0.856963,0.856963,0.856963,0.856963,0.856963,0.856963,0.326503,0.326503,27,27,, +14844,0,0.588215,1,1,0,2,5,,4,2,Ridge,Rd,1595602,0,0.588,0,12.604612,5.8,4.5,1.307145,1.307145,1.307145,1.307145,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.35849,1.315333,1.307145,1.307145,1.35849,1.315333,1.307315,1.307219,1.307145,1.307145,1.307315,1.307219,1.318868,1.343717,1.307145,1.307145,1.318868,1.343717,1.307145,1.307145,1.307145,1.307145,1.307145,1.307145,,,,,,,1.35849,1.315333,1.307315,1.307219,1.318868,1.343717,1.307145,1.307145,1.307145,1.307145,0.513426,0.500479,0.498073,0.498044,0.501539,0.508994,0.498022,0.498022,0.260775,0.260775,25.979522,26.831917,26.996492,26.998479,26.759999,26.26513,27,27,27,27,,,,,,,,,,,2580,2580,1.307145,1.307145,1.307145,1.307145,1.307145,1.307145,1.307145,1.307145,0.498022,0.498022,27,27,, +16234,0,0.499529,1,1,1,2,5,,4,2,Cherry Hill,Rd,1607409,0.48,0.979,0,10.704189,5.8,4.5,1.110064,1.110064,1.110064,1.110064,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.110065,1.110069,1.110064,1.110064,1.110065,1.110069,1.110064,1.110064,1.110064,1.110064,1.110064,1.110064,1.110069,1.110068,1.110064,1.110064,1.110069,1.110068,1.110064,1.110064,1.110064,1.110064,1.110064,1.110064,,,,,,,1.110065,1.110069,1.110064,1.110064,1.110069,1.110068,1.110064,1.110064,1.110064,1.110064,0.422935,0.422936,0.422934,0.422934,0.422936,0.422935,0.422934,0.422934,0.221458,0.221458,26.999974,26.999885,27,27,26.999882,26.999912,27,27,27,27,,,,,,,,,,,2838,2838,1.110064,1.110064,1.110064,1.110064,1.110064,1.110064,1.110064,1.110064,0.422934,0.422934,27,27,, +31529,0,0.497041,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.650881,0.15,4,1.988165,1.988165,1.988165,1.988165,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,,,,,,,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,0.685917,0.685917,0.685917,0.685917,0.685917,0.685917,0.685917,0.685917,0.352899,0.352899,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,1.988165,0.685917,0.685917,15,15,, +16482,0,0.094548,1,1,1,2,5,,4,2,Cherry Hill,Rd,1607409,0.386,0.48,0,2.026027,5.8,4.5,0.210107,0.210107,0.210107,0.210107,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.218511,0.212185,0.210107,0.210107,0.218511,0.212185,0.210125,0.210115,0.210107,0.210107,0.210125,0.210115,0.212919,0.217208,0.210107,0.210107,0.212919,0.217208,0.210107,0.210107,0.210107,0.210107,0.210107,0.210107,,,,,,,0.218511,0.212185,0.210125,0.210115,0.212919,0.217208,0.210107,0.210107,0.210107,0.210107,0.082572,0.080674,0.080056,0.080053,0.080894,0.082181,0.080051,0.080051,0.041916,0.041916,25.961534,26.735457,26.997585,26.998922,26.643336,26.117283,27,27,27,27,,,,,,,,,,,2838,2838,0.210107,0.210107,0.210107,0.210107,0.210107,0.210107,0.210107,0.210107,0.080051,0.080051,27,27,, +31528,0,0.231367,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.957854,0.15,4,0.925466,0.925466,0.925466,0.925466,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,,,,,,,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.319286,0.319286,0.319286,0.319286,0.319286,0.319286,0.319286,0.319286,0.16427,0.16427,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.925466,0.319286,0.319286,15,15,, +15266,0,0.59366,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,1.149,1.742,0,12.721293,6.55,4.5,2.374641,2.374641,2.374641,2.374641,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.40986,2.37474,2.374641,2.374641,2.40986,2.37474,2.374641,2.374641,2.374641,2.374641,2.374641,2.374641,2.374939,2.394054,2.374641,2.374641,2.374939,2.394054,2.374641,2.374641,2.374641,2.374641,2.374641,2.374641,,,,,,,2.40986,2.37474,2.374641,2.374641,2.374939,2.394054,2.374641,2.374641,2.374641,2.374641,0.829817,0.819281,0.819251,0.819251,0.819341,0.825075,0.819251,0.819251,0.421499,0.421499,14.780784,14.999376,15,15,14.99812,14.878368,15,15,15,15,,,,,,,,,,,2064,2064,2.374641,2.374641,2.374641,2.374641,2.374641,2.374641,2.374641,2.374641,0.819251,0.819251,15,15,, +31419,0,0.483124,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.352647,0.15,4,1.932494,1.932494,1.932494,1.932494,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,,,,,,,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,0.66671,0.66671,0.66671,0.66671,0.66671,0.66671,0.66671,0.66671,0.343018,0.343018,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,1.932494,0.66671,0.66671,15,15,, +15047,0,0.404149,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,1.742,2.146,0,8.66034,6.55,4.5,1.616597,1.616597,1.616597,1.616597,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.640573,1.616664,1.616597,1.616597,1.640573,1.616664,1.616597,1.616597,1.616597,1.616597,1.616597,1.616597,1.616799,1.629813,1.616597,1.616597,1.616799,1.629813,1.616597,1.616597,1.616597,1.616597,1.616597,1.616597,,,,,,,1.640573,1.616664,1.616597,1.616597,1.616799,1.629813,1.616597,1.616597,1.616597,1.616597,0.564919,0.557746,0.557726,0.557726,0.557787,0.561691,0.557726,0.557726,0.286946,0.286946,14.780784,14.999376,15,15,14.99812,14.878368,15,15,15,15,,,,,,,,,,,2064,2064,1.616597,1.616597,1.616597,1.616597,1.616597,1.616597,1.616597,1.616597,0.557726,0.557726,15,15,, +14902,0,0.523043,1,1,0,2,4,,4,2,Beck,Rd,1595603,1.283,1.805,0,11.208057,4.5,4.5,0.825857,0.825857,0.825857,0.825857,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.93707,1.179188,0.825857,0.825857,0.93707,1.179188,0.888891,0.915486,0.825857,0.825857,0.888891,0.915486,1.373625,1.120048,0.825857,0.825857,1.373625,1.120048,0.825857,0.825857,0.825857,0.825857,0.825857,0.825857,,,,,,,0.93707,1.179188,0.888891,0.915486,1.373625,1.120048,0.825857,0.825857,0.825857,0.825857,0.375269,0.447904,0.360815,0.368794,0.506235,0.430162,0.341905,0.341905,0.181413,0.181413,33.490085,26.61371,35.305312,34.279664,22.846534,28.01895,38,38,38,38,,,,,,,,,,,3096,3096,0.825857,0.825857,0.825857,0.825857,0.825857,0.825857,0.825857,0.825857,0.341905,0.341905,38,38,, +21364,0,0.535293,1,1,0,2,4,,4,2,Geddes,Rd,4603888,1.966,2.501,0,11.470573,4.5,4.5,0.8452,0.8452,0.8452,0.8452,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.919815,0.890105,0.8452,0.8452,0.919815,0.890105,0.854123,0.851762,0.8452,0.8452,0.854123,0.851762,0.930604,0.932544,0.8452,0.8452,0.930604,0.932544,0.8452,0.8452,0.8452,0.8452,0.8452,0.8452,,,,,,,0.919815,0.890105,0.854123,0.851762,0.930604,0.932544,0.8452,0.8452,0.8452,0.8452,0.372297,0.363384,0.35259,0.351881,0.375534,0.376116,0.349913,0.349913,0.185662,0.185662,34.917469,36.082934,37.603038,37.707264,34.512636,34.440832,38,38,38,38,,,,,,,,,,,3096,3096,0.8452,0.8452,0.8452,0.8452,0.8452,0.8452,0.8452,0.8452,0.349913,0.349913,38,38,, +31520,0,0.51099,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.949779,0.15,4,2.043959,2.043959,2.043959,2.043959,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.043962,2.043959,2.043959,2.043959,2.043962,2.043959,2.043959,2.043959,2.043959,2.043959,2.043959,2.043959,2.043959,2.043962,2.043959,2.043959,2.043959,2.043962,2.043959,2.043959,2.043959,2.043959,2.043959,2.043959,,,,,,,2.043962,2.043959,2.043959,2.043959,2.043959,2.043962,2.043959,2.043959,2.043959,2.043959,0.705167,0.705166,0.705166,0.705166,0.705166,0.705167,0.705166,0.705166,0.362803,0.362803,14.999979,14.999999,14.999998,14.999999,14.999996,14.999978,15,15,15,15,,,,,,,,,,,34400,34400,2.043959,2.043959,2.043959,2.043959,2.043959,2.043959,2.043959,2.043959,0.705166,0.705166,15,15,, +31522,0,1.005499,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.546397,0.15,4,4.021994,4.021994,4.021994,4.021994,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,,,,,,,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,1.387588,1.387588,1.387588,1.387588,1.387588,1.387588,1.387588,1.387588,0.713904,0.713904,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,4.021994,1.387588,1.387588,15,15,, +21583,0,0.468656,1,1,0,2,4,,4,2,Geddes,Rd,4603888,1.498,1.966,0,10.042622,4.5,4.5,0.739983,0.739983,0.739983,0.739983,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.87059,1.024516,0.739983,0.739983,0.87059,1.024516,0.759184,0.759677,0.739983,0.739983,0.759184,0.759677,1.065355,0.937994,0.739983,0.739983,1.065355,0.937994,0.739983,0.739983,0.739983,0.739983,0.739983,0.739983,,,,,,,0.87059,1.024516,0.759184,0.759677,1.065355,0.937994,0.739983,0.739983,0.739983,0.739983,0.345535,0.391713,0.312113,0.312261,0.403965,0.365756,0.306353,0.306353,0.16255,0.16255,32.299161,27.446452,37.038915,37.014864,26.394338,29.978166,38,38,38,38,,,,,,,,,,,3096,3096,0.739983,0.739983,0.739983,0.739983,0.739983,0.739983,0.739983,0.739983,0.306353,0.306353,38,38,, +15142,0,0.548647,1,1,0,2,4,,4,2,Beck,Rd,1595603,0.734,1.283,0,11.756713,4.5,4.5,0.866284,0.866284,0.866284,0.866284,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.977343,1.156879,0.866284,0.866284,0.977343,1.156879,0.918846,0.934829,0.866284,0.866284,0.918846,0.934829,1.288648,1.140802,0.866284,0.866284,1.288648,1.140802,0.866284,0.866284,0.866284,0.866284,0.866284,0.866284,,,,,,,0.977343,1.156879,0.918846,0.934829,1.288648,1.140802,0.866284,0.866284,0.866284,0.866284,0.391959,0.44582,0.37441,0.379205,0.485351,0.440997,0.358642,0.358642,0.190294,0.190294,33.681937,28.454828,35.826234,35.213718,25.545224,28.855828,38,38,38,38,,,,,,,,,,,3096,3096,0.866284,0.866284,0.866284,0.866284,0.866284,0.866284,0.866284,0.866284,0.358642,0.358642,38,38,, +22129,0,0.394866,1,1,0,2,4,,4,2,Geddes,Rd,4603888,2.501,2.896,0,8.461417,4.5,4.5,0.623473,0.623473,0.623473,0.623473,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.785376,0.740173,0.623473,0.623473,0.785376,0.740173,0.643737,0.637096,0.623473,0.623473,0.643737,0.637096,0.780099,0.857802,0.623473,0.623473,0.780099,0.857802,0.623473,0.623473,0.623473,0.623473,0.623473,0.623473,,,,,,,0.785376,0.740173,0.643737,0.637096,0.780099,0.857802,0.623473,0.623473,0.623473,0.623473,0.306689,0.293128,0.264197,0.262205,0.305106,0.328416,0.258118,0.258118,0.136956,0.136956,30.166384,32.00867,36.803776,37.187454,30.370459,27.619404,38,38,38,38,,,,,,,,,,,3096,3096,0.623473,0.623473,0.623473,0.623473,0.623473,0.623473,0.623473,0.623473,0.258118,0.258118,38,38,, +30932,0,0.486191,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.418379,0.15,4,1.944764,1.944764,1.944764,1.944764,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,,,,,,,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,0.670944,0.670944,0.670944,0.670944,0.670944,0.670944,0.670944,0.670944,0.345196,0.345196,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,1.944764,0.670944,0.670944,15,15,, +31418,0,0.543869,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.654337,0.15,4,2.175476,2.175476,2.175476,2.175476,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.175476,2.175477,2.175476,2.175476,2.175476,2.175477,2.175476,2.175476,2.175476,2.175476,2.175476,2.175476,2.175476,2.175477,2.175476,2.175476,2.175476,2.175477,2.175476,2.175476,2.175476,2.175476,2.175476,2.175476,,,,,,,2.175476,2.175477,2.175476,2.175476,2.175476,2.175477,2.175476,2.175476,2.175476,2.175476,0.750539,0.750539,0.750539,0.750539,0.750539,0.750539,0.750539,0.750539,0.386147,0.386147,15,14.999998,15,14.999999,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.175476,2.175476,2.175476,2.175476,2.175476,2.175476,2.175476,2.175476,0.750539,0.750539,15,15,, +31572,0,0.566901,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.147886,0.15,4,2.267605,2.267605,2.267605,2.267605,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,,,,,,,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,0.782324,0.782324,0.782324,0.782324,0.782324,0.782324,0.782324,0.782324,0.4025,0.4025,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,2.267605,0.782324,0.782324,15,15,, +15390,0,0.210998,1,1,0,2,4,,4,2,Beck,Rd,1595603,0.523,0.734,0,4.521394,4.5,4.5,0.333155,0.333155,0.333155,0.333155,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.370326,0.439233,0.333155,0.333155,0.370326,0.439233,0.357766,0.361345,0.333155,0.333155,0.357766,0.361345,0.533946,0.522151,0.333155,0.333155,0.533946,0.522151,0.333155,0.333155,0.333155,0.333155,0.333155,0.333155,,,,,,,0.370326,0.439233,0.357766,0.361345,0.533946,0.522151,0.333155,0.333155,0.333155,0.333155,0.149078,0.16975,0.145309,0.146383,0.198164,0.194625,0.137926,0.137926,0.073183,0.073183,34.185806,28.822752,35.386032,35.035505,23.710073,24.245686,38,38,38,38,,,,,,,,,,,3096,3096,0.333155,0.333155,0.333155,0.333155,0.333155,0.333155,0.333155,0.333155,0.137926,0.137926,38,38,, +31416,0,0.514185,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.018252,0.15,4,2.05674,2.05674,2.05674,2.05674,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,,,,,,,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,0.709575,0.709575,0.709575,0.709575,0.709575,0.709575,0.709575,0.709575,0.365071,0.365071,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,2.05674,0.709575,0.709575,15,15,, +15736,0,0.444783,1,1,0,2,4,,4,2,Beck,Rd,1595603,1.805,2.25,0,9.531066,4.5,4.5,0.702289,0.702289,0.702289,0.702289,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.595637,0.885485,0.702289,0.702289,1.595637,0.885485,0.848555,0.873805,0.702289,0.702289,0.848555,0.873805,1.098861,1.65286,0.702289,0.702289,1.098861,1.65286,0.702289,0.702289,0.702289,0.702289,0.702289,0.702289,,,,,,,1.595637,0.885485,0.848555,0.873805,1.098861,1.65286,0.702289,0.702289,0.702289,0.702289,0.558752,0.345706,0.334627,0.342203,0.409719,0.575919,0.290748,0.290748,0.154269,0.154269,16.72497,30.138279,31.449934,30.541105,24.286046,16.14594,38,38,38,38,,,,,,,,,,,3096,3096,0.702289,0.702289,0.702289,0.702289,0.702289,0.702289,0.702289,0.702289,0.290748,0.290748,38,38,, +31263,0,0.521949,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.184615,0.15,4,2.087795,2.087795,2.087795,2.087795,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,,,,,,,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,0.720289,0.720289,0.720289,0.720289,0.720289,0.720289,0.720289,0.720289,0.370584,0.370584,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,2.087795,0.720289,0.720289,15,15,, +14975,0,0.366615,1,1,0,2,4,,4,2,Beck,Rd,1595603,3.333,3.7,0,7.856033,4.5,4.5,0.578866,0.578866,0.578866,0.578866,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.045122,0.618321,0.578866,0.578866,1.045122,0.618321,0.609665,0.609107,0.578866,0.578866,0.609665,0.609107,0.724455,0.992008,0.578866,0.578866,0.724455,0.992008,0.578866,0.578866,0.578866,0.578866,0.578866,0.578866,,,,,,,1.045122,0.618321,0.609665,0.609107,0.724455,0.992008,0.578866,0.578866,0.578866,0.578866,0.379527,0.251487,0.24889,0.248723,0.283327,0.363593,0.23965,0.23965,0.127157,0.127157,21.047199,35.575208,36.0803,36.113341,30.363362,22.174107,38,38,38,38,,,,,,,,,,,3096,3096,0.578866,0.578866,0.578866,0.578866,0.578866,0.578866,0.578866,0.578866,0.23965,0.23965,38,38,, +15222,0,0.424962,1,1,0,2,3,,4,2,Ford,Rd,1595510,1.569,1.994,0,9.106333,3.7,5,0.637443,0.637443,0.637443,0.637443,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.123796,1.053891,0.637443,0.637443,1.123796,1.053891,0.749232,0.75094,0.637443,0.637443,0.749232,0.75094,1.116318,1.161209,0.637443,0.637443,1.116318,1.161209,0.637443,0.637443,0.637443,0.637443,0.637443,0.637443,,,,,,,1.123796,1.053891,0.749232,0.75094,1.116318,1.161209,0.637443,0.637443,0.637443,0.637443,0.413632,0.39266,0.301263,0.301775,0.411389,0.424856,0.267726,0.267726,0.142362,0.142362,22.688935,24.193904,34.03182,33.954411,22.840923,21.957917,40,40,40,40,,,,,,,,,,,3784,3784,0.637443,0.637443,0.637443,0.637443,0.637443,0.637443,0.637443,0.637443,0.267726,0.267726,40,40,, +16232,0,0.65119,1,1,0,2,5,,4,2,Cherry Hill,Rd,1607409,1.343,1.993,0,13.954071,5.8,4.5,1.447089,1.447089,1.447089,1.447089,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.994679,1.58824,1.447089,1.447089,1.994679,1.58824,1.466693,1.46029,1.447089,1.447089,1.466693,1.46029,1.777589,1.852996,1.447089,1.447089,1.777589,1.852996,1.447089,1.447089,1.447089,1.447089,1.447089,1.447089,,,,,,,1.994679,1.58824,1.466693,1.46029,1.777589,1.852996,1.447089,1.447089,1.447089,1.447089,0.715618,0.593686,0.557222,0.555301,0.650491,0.673113,0.551341,0.551341,0.288694,0.288694,19.587811,24.600434,26.639118,26.755909,21.979993,21.085533,27,27,27,27,,,,,,,,,,,2580,2580,1.447089,1.447089,1.447089,1.447089,1.447089,1.447089,1.447089,1.447089,0.551341,0.551341,27,27,, +24094,0,0.477991,1,1,0,2,5,,4,2,Warren,Rd,4710470,1.507,1.985,0,10.242665,5.8,4.5,1.062202,1.062202,1.062202,1.062202,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.065094,1.086003,1.062202,1.062202,1.065094,1.086003,1.062276,1.06225,1.062202,1.062202,1.062276,1.06225,1.125338,1.063934,1.062202,1.062202,1.125338,1.063934,1.062202,1.062202,1.062202,1.062202,1.062202,1.062202,,,,,,,1.065094,1.086003,1.062276,1.06225,1.125338,1.063934,1.062202,1.062202,1.062202,1.062202,0.405566,0.411839,0.404721,0.404713,0.42364,0.405219,0.404699,0.404699,0.211909,0.211909,26.926702,26.408264,26.998137,26.99879,25.485205,26.956053,27,27,27,27,,,,,,,,,,,2580,2580,1.062202,1.062202,1.062202,1.062202,1.062202,1.062202,1.062202,1.062202,0.404699,0.404699,27,27,, +31426,0,0.272563,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.840631,0.15,4,1.090251,1.090251,1.090251,1.090251,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,,,,,,,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,0.376137,0.376137,0.376137,0.376137,0.376137,0.376137,0.376137,0.376137,0.19352,0.19352,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,1.090251,0.376137,0.376137,15,15,, +31530,0,0.505462,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.831336,0.15,4,2.021849,2.021849,2.021849,2.021849,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.02185,2.021849,2.021849,2.021849,2.02185,2.021849,2.021849,2.021849,2.021849,2.021849,2.021849,2.021849,2.02185,2.02185,2.021849,2.021849,2.02185,2.02185,2.021849,2.021849,2.021849,2.021849,2.021849,2.021849,,,,,,,2.02185,2.021849,2.021849,2.021849,2.02185,2.02185,2.021849,2.021849,2.021849,2.021849,0.697538,0.697538,0.697538,0.697538,0.697538,0.697538,0.697538,0.697538,0.358878,0.358878,14.999998,15,15,15,14.999997,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,2.021849,2.021849,2.021849,2.021849,2.021849,2.021849,2.021849,2.021849,0.697538,0.697538,15,15,, +14767,0,0.434318,1,1,0,2,3,,4,2,Ford,Rd,1595510,1.135,1.569,0,9.306805,3.7,5,0.651476,0.651476,0.651476,0.651476,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.435811,1.139006,0.651476,0.651476,1.435811,1.139006,0.752517,0.760581,0.651476,0.651476,0.752517,0.760581,1.317786,1.499105,0.651476,0.651476,1.317786,1.499105,0.651476,0.651476,0.651476,0.651476,0.651476,0.651476,,,,,,,1.435811,1.139006,0.752517,0.760581,1.317786,1.499105,0.651476,0.651476,0.651476,0.651476,0.508921,0.419879,0.303932,0.306352,0.473513,0.527909,0.27362,0.27362,0.145496,0.145496,18.149359,22.878762,34.629176,34.262026,19.774878,17.38307,40,40,40,40,,,,,,,,,,,3784,3784,0.651476,0.651476,0.651476,0.651476,0.651476,0.651476,0.651476,0.651476,0.27362,0.27362,40,40,, +24096,0,0.109909,1,1,0,2,5,,4,2,Warren,Rd,4710470,1.397,1.507,0,2.355183,5.8,4.5,0.244241,0.244241,0.244241,0.244241,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.255139,0.244275,0.244241,0.244241,0.255139,0.244275,0.244265,0.244258,0.244241,0.244241,0.244265,0.244258,0.244556,0.248628,0.244241,0.244241,0.244556,0.248628,0.244241,0.244241,0.244241,0.244241,0.244241,0.244241,,,,,,,0.255139,0.244275,0.244265,0.244258,0.244556,0.248628,0.244241,0.244241,0.244241,0.244241,0.096325,0.093066,0.093063,0.093061,0.09315,0.094372,0.093056,0.093056,0.048726,0.048726,25.846785,26.996264,26.997353,26.998171,26.965205,26.523595,27,27,27,27,,,,,,,,,,,2580,2580,0.244241,0.244241,0.244241,0.244241,0.244241,0.244241,0.244241,0.244241,0.093056,0.093056,27,27,, +31532,0,0.517276,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.084494,0.15,4,2.069106,2.069106,2.069106,2.069106,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,,,,,,,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,0.713841,0.713841,0.713841,0.713841,0.713841,0.713841,0.713841,0.713841,0.367266,0.367266,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,2.069106,0.713841,0.713841,15,15,, +31531,0,0.515522,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.046898,0.15,4,2.062088,2.062088,2.062088,2.062088,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,,,,,,,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,0.71142,0.71142,0.71142,0.71142,0.71142,0.71142,0.71142,0.71142,0.366021,0.366021,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,2.062088,0.71142,0.71142,15,15,, +15193,0,0.281889,1,1,0,2,4,,4,2,Beck,Rd,1595603,3.051,3.333,0,6.040485,4.5,4.5,0.445088,0.445088,0.445088,0.445088,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.699819,0.492097,0.445088,0.445088,0.699819,0.492097,0.479636,0.479598,0.445088,0.445088,0.479636,0.479598,0.581367,0.798275,0.445088,0.445088,0.581367,0.798275,0.445088,0.445088,0.445088,0.445088,0.445088,0.445088,,,,,,,0.699819,0.492097,0.479636,0.479598,0.581367,0.798275,0.445088,0.445088,0.445088,0.445088,0.260686,0.198369,0.194631,0.194619,0.22515,0.290222,0.184267,0.184267,0.097771,0.097771,24.168202,34.369996,35.262935,35.265691,29.092388,21.187389,38,38,38,38,,,,,,,,,,,3096,3096,0.445088,0.445088,0.445088,0.445088,0.445088,0.445088,0.445088,0.445088,0.184267,0.184267,38,38,, +16480,0,0.462239,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,1.993,2.455,0,9.905128,4.5,4.5,0.729852,0.729852,0.729852,0.729852,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,1.161202,0.867066,0.729852,0.729852,1.161202,0.867066,0.781928,0.775223,0.729852,0.729852,0.781928,0.775223,1.08282,1.158756,0.729852,0.729852,1.08282,1.158756,0.729852,0.729852,0.729852,0.729852,0.729852,0.729852,,,,,,,1.161202,0.867066,0.781928,0.775223,1.08282,1.158756,0.729852,0.729852,0.729852,0.729852,0.431564,0.343323,0.317781,0.31577,0.408049,0.43083,0.302159,0.302159,0.160324,0.160324,23.884176,31.98643,35.469196,35.77598,25.613084,23.934606,38,38,38,38,,,,,,,,,,,3406,3406,0.729852,0.729852,0.729852,0.729852,0.729852,0.729852,0.729852,0.729852,0.302159,0.302159,38,38,, +31427,0,0.501419,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.744694,0.15,4,2.005676,2.005676,2.005676,2.005676,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,,,,,,,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,0.691958,0.691958,0.691958,0.691958,0.691958,0.691958,0.691958,0.691958,0.356008,0.356008,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,2.005676,0.691958,0.691958,15,15,, +31443,0,0.522935,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.205743,0.15,4,2.091739,2.091739,2.091739,2.091739,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,,,,,,,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,0.72165,0.72165,0.72165,0.72165,0.72165,0.72165,0.72165,0.72165,0.371284,0.371284,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,2.091739,0.72165,0.72165,15,15,, +15453,0,0.314444,1,1,0,2,4,,4,2,Beck,Rd,1595603,2.737,3.051,0,6.738079,4.5,4.5,0.49649,0.49649,0.49649,0.49649,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.734039,0.536831,0.49649,0.49649,0.734039,0.536831,0.528376,0.529172,0.49649,0.49649,0.528376,0.529172,0.607621,0.789887,0.49649,0.49649,0.607621,0.789887,0.49649,0.49649,0.49649,0.49649,0.49649,0.49649,,,,,,,0.734039,0.536831,0.528376,0.529172,0.607621,0.789887,0.49649,0.49649,0.49649,0.49649,0.276812,0.217649,0.215113,0.215351,0.238886,0.293566,0.205547,0.205547,0.109062,0.109062,25.702468,35.144442,35.706798,35.653105,31.049979,23.885231,38,38,38,38,,,,,,,,,,,3096,3096,0.49649,0.49649,0.49649,0.49649,0.49649,0.49649,0.49649,0.49649,0.205547,0.205547,38,38,, +31424,0,0.252198,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.404249,0.15,4,1.008793,1.008793,1.008793,1.008793,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,,,,,,,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,0.348034,0.348034,0.348034,0.348034,0.348034,0.348034,0.348034,0.348034,0.179061,0.179061,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,1.008793,0.348034,0.348034,15,15,, +15012,0,0.623277,1,1,0,2,3,,4,2,Ford,Rd,1595510,1.994,2.617,0,13.355945,3.7,5,0.934916,0.934916,0.934916,0.934916,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.176462,1.086456,0.934916,0.934916,1.176462,1.086456,0.978534,0.977013,0.934916,0.934916,0.978534,0.977013,1.196378,1.17885,0.934916,0.934916,1.196378,1.17885,0.934916,0.934916,0.934916,0.934916,0.934916,0.934916,,,,,,,1.176462,1.086456,0.978534,0.977013,1.196378,1.17885,0.934916,0.934916,0.934916,0.934916,0.465129,0.438127,0.40575,0.405294,0.471103,0.465845,0.392665,0.392665,0.208798,0.208798,31.787374,34.420772,38.217027,38.276489,31.258227,31.722977,40,40,40,40,,,,,,,,,,,3784,3784,0.934916,0.934916,0.934916,0.934916,0.934916,0.934916,0.934916,0.934916,0.392665,0.392665,40,40,, +15531,0,0.187424,1,1,0,2,3,,4,2,Beck,Rd,1595603,4.05,4.237,0,4.016226,3.7,5,0.281136,0.281136,0.281136,0.281136,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.393546,0.300426,0.281136,0.281136,0.393546,0.300426,0.288827,0.289185,0.281136,0.281136,0.288827,0.289185,0.327297,0.405529,0.281136,0.281136,0.327297,0.405529,0.281136,0.281136,0.281136,0.281136,0.281136,0.281136,,,,,,,0.393546,0.300426,0.288827,0.289185,0.327297,0.405529,0.281136,0.281136,0.281136,0.281136,0.1518,0.123864,0.120384,0.120492,0.131925,0.155395,0.118077,0.118077,0.062787,0.062787,28.574641,37.431648,38.93485,38.886677,34.358493,27.730257,40,40,40,40,,,,,,,,,,,3784,3784,0.281136,0.281136,0.281136,0.281136,0.281136,0.281136,0.281136,0.281136,0.118077,0.118077,40,40,, +18732,0,0.53417,1,1,0,2,5,,4,2,Hanford,Rd,1676006,1.992,2.526,0,11.446492,5.8,4.5,1.187044,1.187044,1.187044,1.187044,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.194098,1.189667,1.187044,1.187044,1.194098,1.189667,1.187067,1.187082,1.187044,1.187044,1.187067,1.187082,1.201117,1.195608,1.187044,1.187044,1.201117,1.195608,1.187044,1.187044,1.187044,1.187044,1.187044,1.187044,,,,,,,1.194098,1.189667,1.187067,1.187082,1.201117,1.195608,1.187044,1.187044,1.187044,1.187044,0.45438,0.453051,0.452271,0.452275,0.456486,0.454833,0.452264,0.452264,0.236815,0.236815,26.8405,26.940463,26.999458,26.999126,26.683647,26.806584,27,27,27,27,,,,,,,,,,,2580,2580,1.187044,1.187044,1.187044,1.187044,1.187044,1.187044,1.187044,1.187044,0.452264,0.452264,27,27,, +24093,0,0.463466,1,1,0,2,4,,4,2,Warren,Rd,4710470,1.985,2.448,0,9.931416,4.5,4.5,0.731789,0.731789,0.731789,0.731789,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.764108,0.822595,0.731789,0.731789,0.764108,0.822595,0.746854,0.741383,0.731789,0.731789,0.746854,0.741383,0.88735,0.779781,0.731789,0.731789,0.88735,0.779781,0.731789,0.731789,0.731789,0.731789,0.731789,0.731789,,,,,,,0.764108,0.822595,0.746854,0.741383,0.88735,0.779781,0.731789,0.731789,0.731789,0.731789,0.312656,0.330202,0.30748,0.305839,0.349629,0.317358,0.30296,0.30296,0.16075,0.16075,36.392703,33.805173,37.233489,37.50825,31.338221,35.661246,38,38,38,38,,,,,,,,,,,3096,3096,0.731789,0.731789,0.731789,0.731789,0.731789,0.731789,0.731789,0.731789,0.30296,0.30296,38,38,, +31438,0,0.284448,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.095317,0.15,4,1.137792,1.137792,1.137792,1.137792,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,,,,,,,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,0.392538,0.392538,0.392538,0.392538,0.392538,0.392538,0.392538,0.392538,0.201958,0.201958,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,1.137792,0.392538,0.392538,15,15,, +33959,0,0.490166,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.503555,0.15,4,1.960664,1.960664,1.960664,1.960664,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,,,,,,,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,0.676429,0.676429,0.676429,0.676429,0.676429,0.676429,0.676429,0.676429,0.348018,0.348018,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,1.960664,0.676429,0.676429,15,15,, +33960,0,0.500681,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.728873,0.15,4,2.002723,2.002723,2.002723,2.002723,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,,,,,,,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,0.690939,0.690939,0.690939,0.690939,0.690939,0.690939,0.690939,0.690939,0.355483,0.355483,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,2.002723,0.690939,0.690939,15,15,, +14555,0,0.350116,1,1,0,2,3,,4,2,Beck,Rd,1595603,3.7,4.05,0,7.502491,3.7,5,0.525174,0.525174,0.525174,0.525174,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.7278,0.553903,0.525174,0.525174,0.7278,0.553903,0.536734,0.537286,0.525174,0.525174,0.536734,0.537286,0.592679,0.741195,0.525174,0.525174,0.592679,0.741195,0.525174,0.525174,0.525174,0.525174,0.525174,0.525174,,,,,,,0.7278,0.553903,0.536734,0.537286,0.592679,0.741195,0.525174,0.525174,0.525174,0.525174,0.281361,0.229192,0.224041,0.224207,0.240825,0.285379,0.220573,0.220573,0.117289,0.117289,28.86368,37.925348,39.138492,39.0983,35.444081,28.342042,40,40,40,40,,,,,,,,,,,3784,3784,0.525174,0.525174,0.525174,0.525174,0.525174,0.525174,0.525174,0.525174,0.220573,0.220573,40,40,, +15684,0,0.280593,1,1,0,2,3,,4,2,Beck,Rd,1595603,4.458,4.738,0,6.012699,3.7,5,0.420889,0.420889,0.420889,0.420889,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.751603,0.456147,0.420889,0.420889,0.751603,0.456147,0.441626,0.43912,0.420889,0.420889,0.441626,0.43912,0.498867,0.696479,0.420889,0.420889,0.498867,0.696479,0.420889,0.420889,0.420889,0.420889,0.420889,0.420889,,,,,,,0.751603,0.456147,0.441626,0.43912,0.498867,0.696479,0.420889,0.420889,0.420889,0.420889,0.275988,0.187351,0.182994,0.182243,0.200167,0.25945,0.176773,0.176773,0.093999,0.093999,22.399541,36.908154,38.121746,38.339283,33.747616,24.172374,40,40,40,40,,,,,,,,,,,3784,3784,0.420889,0.420889,0.420889,0.420889,0.420889,0.420889,0.420889,0.420889,0.176773,0.176773,40,40,, +14854,0,0.220719,1,1,0,2,3,,4,2,Beck,Rd,1595603,4.237,4.458,0,4.729687,3.7,5,0.331078,0.331078,0.331078,0.331078,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.591223,0.358813,0.331078,0.331078,0.591223,0.358813,0.34739,0.345419,0.331078,0.331078,0.34739,0.345419,0.392417,0.547862,0.331078,0.331078,0.392417,0.547862,0.331078,0.331078,0.331078,0.331078,0.331078,0.331078,,,,,,,0.591223,0.358813,0.34739,0.345419,0.392417,0.547862,0.331078,0.331078,0.331078,0.331078,0.217096,0.147373,0.143946,0.143355,0.157454,0.204088,0.139053,0.139053,0.073941,0.073941,22.399541,36.908154,38.121746,38.339283,33.747616,24.172374,40,40,40,40,,,,,,,,,,,3784,3784,0.331078,0.331078,0.331078,0.331078,0.331078,0.331078,0.331078,0.331078,0.139053,0.139053,40,40,, +31441,0,0.289342,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.200186,0.15,4,1.157368,1.157368,1.157368,1.157368,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,,,,,,,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,0.399292,0.399292,0.399292,0.399292,0.399292,0.399292,0.399292,0.399292,0.205433,0.205433,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,1.157368,0.399292,0.399292,15,15,, +31445,0,0.232339,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.978693,0.15,4,0.929356,0.929356,0.929356,0.929356,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,,,,,,,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.320628,0.320628,0.320628,0.320628,0.320628,0.320628,0.320628,0.320628,0.164961,0.164961,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.929356,0.320628,0.320628,15,15,, +3195,0,0.992756,1,1,0,2,4,,5,5,8 Mile,Rd,656509,4.784,5.776,0,21.273333,3,4,1.489133,1.489133,1.489133,1.489133,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.07841,1.552127,1.489133,1.489133,2.07841,1.552127,1.525661,1.515043,1.489133,1.489133,1.525661,1.515043,1.604522,1.840274,1.489133,1.489133,1.604522,1.840274,1.489133,1.489133,1.489133,1.489133,1.489133,1.489133,,,,,,,2.07841,1.552127,1.525661,1.515043,1.604522,1.840274,1.489133,1.489133,1.489133,1.489133,0.802219,0.644334,0.636394,0.633209,0.660053,0.730778,0.625436,0.625436,0.332573,0.332573,28.659086,38.37659,39.042307,39.315934,37.12341,32.36764,40,40,40,40,,,,,,,,,,,3096,3096,1.489133,1.489133,1.489133,1.489133,1.489133,1.489133,1.489133,1.489133,0.625436,0.625436,40,40,, +9827,0,0.661214,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,27.139,27.8,0,14.168865,3,4,0.991821,0.991821,0.991821,0.991821,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.181181,1.020498,0.991821,0.991821,1.181181,1.020498,0.995582,0.992678,0.991821,0.991821,0.995582,0.992678,1.155704,1.033898,0.991821,0.991821,1.155704,1.033898,0.991821,0.991821,0.991821,0.991821,0.991821,0.991821,,,,,,,1.181181,1.020498,0.995582,0.992678,1.155704,1.033898,0.991821,0.991821,0.991821,0.991821,0.473373,0.425168,0.417693,0.416822,0.46573,0.429188,0.416565,0.416565,0.221507,0.221507,33.587425,38.875945,39.848884,39.965431,34.327845,38.372091,40,40,40,40,,,,,,,,,,,3096,3096,0.991821,0.991821,0.991821,0.991821,0.991821,0.991821,0.991821,0.991821,0.416565,0.416565,40,40,, +11036,0,1.004552,1,1,0,2,7,,5,5,7 Mile,Rd,1451104,2.806,3.81,0,21.526122,5.8,6,2.410926,2.410926,2.410926,2.410926,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.425712,2.410926,2.410926,2.410926,2.425712,2.410926,2.410926,2.410926,2.410926,2.410926,2.410926,2.410926,2.410926,2.411506,2.410926,2.410926,2.410926,2.411506,2.410926,2.410926,2.410926,2.410926,2.410926,2.410926,,,,,,,2.425712,2.410926,2.410926,2.410926,2.410926,2.411506,2.410926,2.410926,2.410926,2.410926,0.908533,0.904097,0.904097,0.904097,0.904097,0.904271,0.904097,0.904097,0.47214,0.47214,24.847609,24.999999,24.999999,25,24.999995,24.993985,25,25,25,25,,,,,,,,,,,2064,2064,2.410926,2.410926,2.410926,2.410926,2.410926,2.410926,2.410926,2.410926,0.904097,0.904097,25,25,, +11127,0,1.120943,1,1,0,2,7,GRV,5,5,Chubb,Rd,1447204,0,1.121,0,24.020206,5.55,5,3.362829,3.362829,3.362829,3.362829,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,,,,,,,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,1.210618,1.210618,1.210618,1.210618,1.210618,1.210618,1.210618,1.210618,0.627728,0.627728,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,3.362829,1.210618,1.210618,20,20,, +11178,0,1.002799,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,7.881,8.884,0,21.488558,3.7,5,2.005599,2.005599,2.005599,2.005599,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.516891,2.006024,2.005599,2.005599,2.516891,2.006024,2.005599,2.005599,2.005599,2.005599,2.005599,2.005599,2.006555,2.167637,2.005599,2.005599,2.006555,2.167637,2.005599,2.005599,2.005599,2.005599,2.005599,2.005599,,,,,,,2.516891,2.006024,2.005599,2.005599,2.006555,2.167637,2.005599,2.005599,2.005599,2.005599,0.935571,0.782311,0.782184,0.782184,0.78247,0.830795,0.782184,0.782184,0.411148,0.411148,23.905674,29.993646,29.999994,29.999999,29.985699,27.757399,30,30,30,30,,,,,,,,,,,2580,2580,2.005599,2.005599,2.005599,2.005599,2.005599,2.005599,2.005599,2.005599,0.782184,0.782184,30,30,, +11181,0,0.995816,1,1,0,2,5,,5,5,Curtis,Rd,1432002,3.777,4.772,0,21.338915,3.7,5,1.991632,1.991632,1.991632,1.991632,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.998595,2.05598,1.991632,1.991632,1.998595,2.05598,1.991706,1.991661,1.991632,1.991632,1.991706,1.991661,2.023371,2.014324,1.991632,1.991632,2.023371,2.014324,1.991632,1.991632,1.991632,1.991632,1.991632,1.991632,,,,,,,1.998595,2.05598,1.991706,1.991661,2.023371,2.014324,1.991632,1.991632,1.991632,1.991632,0.778826,0.796041,0.776759,0.776745,0.786258,0.783544,0.776737,0.776737,0.408285,0.408285,29.895476,29.061064,29.99889,29.999563,29.529418,29.662037,30,30,30,30,,,,,,,,,,,2580,2580,1.991632,1.991632,1.991632,1.991632,1.991632,1.991632,1.991632,1.991632,0.776737,0.776737,30,30,, +11237,0,1.182059,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,5.5,6.682,0,25.329827,3,4,1.773088,1.773088,1.773088,1.773088,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.052918,2.014334,1.773088,1.773088,2.052918,2.014334,1.774368,1.777856,1.773088,1.773088,1.774368,1.777856,1.923106,1.927985,1.773088,1.773088,1.923106,1.927985,1.773088,1.773088,1.773088,1.773088,1.773088,1.773088,,,,,,,2.052918,2.014334,1.774368,1.777856,1.923106,1.927985,1.773088,1.773088,1.773088,1.773088,0.828646,0.817071,0.745081,0.746127,0.789702,0.791166,0.744697,0.744697,0.39599,0.39599,34.547658,35.209406,39.971145,39.892716,36.879671,36.786334,40,40,40,40,,,,,,,,,,,3096,3096,1.773088,1.773088,1.773088,1.773088,1.773088,1.773088,1.773088,1.773088,0.744697,0.744697,40,40,, +11534,-1,0.672154,0,2,0,1,2,,5,5,W M 14,,1431410,10.47,11.141,0,,1.02,7,,0.576132,,0.576132,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.69308,,0.576132,,0.69308,,0.583341,,0.576132,,0.583341,,0.778589,,0.576132,,0.778589,,0.576132,,0.576132,,0.576132,,,,,,,,0.69308,,0.583341,,0.778589,,0.576132,,0.576132,,0.328912,,0.29599,,0.354564,,0.293827,,0.160357,,58.188428,,69.134948,,51.797833,,70,,70,,,,,,,,,,,,15136,,0.576132,,0.576132,,0.576132,,0.576132,,0.293827,,70,, +11587,1,0.742539,2,0,0,1,2,,5,5,E M 14,,1431408,10.346,11.089,0,,1.02,7,0.636462,,0.636462,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.941068,,0.636462,,0.941068,,0.642756,,0.636462,,0.642756,,0.722308,,0.636462,,0.722308,,0.636462,,0.636462,,0.636462,,,,,,,,0.941068,,0.642756,,0.722308,,0.636462,,0.636462,,0.415977,,0.326484,,0.350349,,0.324596,,0.177149,,47.342312,,69.314541,,61.680519,,70,,70,,,,,,,,,,,,15136,,0.636462,,0.636462,,0.636462,,0.636462,,0.324596,,70,,, +15092,1,0.701355,2,0,0,2,3,DIV,4,2,Beck,Rd,1595603,8.754,9.455,0,15.029031,3.7,5,0.93514,,0.93514,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.073277,,0.93514,,1.073277,,1.009994,,0.93514,,1.009994,,1.331947,,0.93514,,1.331947,,0.93514,,0.93514,,0.93514,,,,,,,,1.073277,,1.009994,,1.331947,,0.93514,,0.93514,,0.448227,,0.429242,,0.525828,,0.406786,,0.21742,,39.208234,,41.664902,,31.593813,,45,,45,,,,,,,,,,,,7568,,0.93514,,0.93514,,0.93514,,0.93514,,0.406786,,45,,, +20660,0,1.002307,1,1,0,2,5,,5,3,9 Mile,Rd,4407342,0,1.002,0,21.478013,3.7,5,2.004615,2.004615,2.004615,2.004615,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.004658,2.073636,2.004615,2.004615,2.004658,2.073636,2.004632,2.004639,2.004615,2.004615,2.004632,2.004639,2.019843,2.005069,2.004615,2.004615,2.019843,2.005069,2.004615,2.004615,2.004615,2.004615,2.004615,2.004615,,,,,,,2.004658,2.073636,2.004632,2.004639,2.019843,2.005069,2.004615,2.004615,2.004615,2.004615,0.781813,0.802506,0.781805,0.781807,0.786368,0.781936,0.7818,0.7818,0.410946,0.410946,29.999344,29.001444,29.999744,29.999629,29.77382,29.993204,30,30,30,30,,,,,,,,,,,2580,2580,2.004615,2.004615,2.004615,2.004615,2.004615,2.004615,2.004615,2.004615,0.7818,0.7818,30,30,, +21264,0,0.999564,1,1,0,2,5,,4,5,Napier,Rd,4603890,0.769,1.769,0,21.419239,5.8,4.5,2.221254,2.221254,2.221254,2.221254,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.223712,2.409409,2.221254,2.221254,2.223712,2.409409,2.221255,2.221255,2.221254,2.221254,2.221255,2.221255,2.364522,2.225067,2.221254,2.221254,2.364522,2.225067,2.221254,2.221254,2.221254,2.221254,2.221254,2.221254,,,,,,,2.223712,2.409409,2.221255,2.221255,2.364522,2.225067,2.221254,2.221254,2.221254,2.221254,0.847035,0.902744,0.846298,0.846298,0.889278,0.847442,0.846298,0.846298,0.44314,0.44314,26.970159,24.891523,26.999998,26.999995,25.364054,26.95373,27,27,27,27,,,,,,,,,,,2580,2580,2.221254,2.221254,2.221254,2.221254,2.221254,2.221254,2.221254,2.221254,0.846298,0.846298,27,27,, +26826,0,0.912652,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.55683,0.15,4,3.650608,3.650608,3.650608,3.650608,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,,,,,,,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,1.25946,1.25946,1.25946,1.25946,1.25946,1.25946,1.25946,1.25946,0.647983,0.647983,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,3.650608,1.25946,1.25946,15,15,, +26827,0,1.303963,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,27.942068,0.15,4,5.215853,5.215853,5.215853,5.215853,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,,,,,,,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,1.799469,1.799469,1.799469,1.799469,1.799469,1.799469,1.799469,1.799469,0.925814,0.925814,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,5.215853,1.799469,1.799469,15,15,, +39098,0,0.861806,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.467262,0.15,4,3.447222,3.447222,3.447222,3.447222,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,,,,,,,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,1.189292,1.189292,1.189292,1.189292,1.189292,1.189292,1.189292,1.189292,0.611882,0.611882,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,3.447222,1.189292,1.189292,15,15,, +26830,0,1.386536,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.711496,0.15,4,5.546146,5.546146,5.546146,5.546146,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,,,,,,,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,1.91342,1.91342,1.91342,1.91342,1.91342,1.91342,1.91342,1.91342,0.984441,0.984441,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,5.546146,1.91342,1.91342,15,15,, +26835,0,1.001509,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.460909,0.15,4,4.006036,4.006036,4.006036,4.006036,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,,,,,,,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,1.382083,1.382083,1.382083,1.382083,1.382083,1.382083,1.382083,1.382083,0.711071,0.711071,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,4.006036,1.382083,1.382083,15,15,, +31431,0,0.329701,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.065023,0.15,4,1.318804,1.318804,1.318804,1.318804,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.318806,1.318805,1.318804,1.318804,1.318806,1.318805,1.318804,1.318805,1.318804,1.318804,1.318804,1.318805,1.318805,1.318805,1.318804,1.318804,1.318805,1.318805,1.318804,1.318804,1.318804,1.318804,1.318804,1.318804,,,,,,,1.318806,1.318805,1.318804,1.318805,1.318805,1.318805,1.318804,1.318804,1.318804,1.318804,0.454988,0.454988,0.454988,0.454988,0.454988,0.454988,0.454987,0.454987,0.234088,0.234088,14.999984,14.999996,14.999999,14.999997,14.999995,14.999992,15,15,15,15,,,,,,,,,,,34400,34400,1.318804,1.318804,1.318804,1.318804,1.318804,1.318804,1.318804,1.318804,0.454987,0.454987,15,15,, +31433,0,0.868509,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.610912,0.15,4,3.474037,3.474037,3.474037,3.474037,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,,,,,,,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,1.198543,1.198543,1.198543,1.198543,1.198543,1.198543,1.198543,1.198543,0.616642,0.616642,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,3.474037,1.198543,1.198543,15,15,, +31471,0,1.010974,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.663725,0.15,4,4.043895,4.043895,4.043895,4.043895,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,,,,,,,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,1.395144,1.395144,1.395144,1.395144,1.395144,1.395144,1.395144,1.395144,0.717791,0.717791,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,4.043895,1.395144,1.395144,15,15,, +9854,0,1.0575,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,25.007,26.064,0,22.660717,3,4,1.58625,1.58625,1.58625,1.58625,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.264175,1.693794,1.58625,1.58625,2.264175,1.693794,1.587258,1.588442,1.58625,1.58625,1.587258,1.588442,1.741393,2.144923,1.58625,1.58625,1.741393,2.144923,1.58625,1.58625,1.58625,1.58625,1.58625,1.58625,,,,,,,2.264175,1.693794,1.587258,1.588442,1.741393,2.144923,1.58625,1.58625,1.58625,1.58625,0.869602,0.698488,0.666527,0.666883,0.712768,0.833827,0.666225,0.666225,0.354263,0.354263,28.023462,37.460286,39.974602,39.944801,36.436351,29.581488,40,40,40,40,,,,,,,,,,,3096,3096,1.58625,1.58625,1.58625,1.58625,1.58625,1.58625,1.58625,1.58625,0.666225,0.666225,40,40,, +11130,0,0.433413,1,1,0,2,4,,5,5,Gotfredson,Rd,1432004,6.125,6.558,0,9.287412,3,4,0.650119,0.650119,0.650119,0.650119,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.658377,0.698482,0.650119,0.650119,0.658377,0.698482,0.651316,0.650186,0.650119,0.650119,0.651316,0.650186,0.766531,0.650793,0.650119,0.650119,0.766531,0.650793,0.650119,0.650119,0.650119,0.650119,0.650119,0.650119,,,,,,,0.658377,0.698482,0.651316,0.650186,0.766531,0.650793,0.650119,0.650119,0.650119,0.650119,0.275527,0.287559,0.273409,0.27307,0.307974,0.273252,0.27305,0.27305,0.145193,0.145193,39.498302,37.230374,39.926459,39.99587,33.925245,39.958563,40,40,40,40,,,,,,,,,,,3096,3096,0.650119,0.650119,0.650119,0.650119,0.650119,0.650119,0.650119,0.650119,0.27305,0.27305,40,40,, +11187,0,0.667397,1,1,0,2,5,,5,5,Curtis,Rd,1432002,2.242,2.909,0,14.301366,3.7,5,1.334794,1.334794,1.334794,1.334794,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.343911,1.388172,1.334794,1.334794,1.343911,1.388172,1.334865,1.33483,1.334794,1.334794,1.334865,1.33483,1.362229,1.359035,1.334794,1.334794,1.362229,1.359035,1.334794,1.334794,1.334794,1.334794,1.334794,1.334794,,,,,,,1.343911,1.388172,1.334865,1.33483,1.362229,1.359035,1.334794,1.334794,1.334794,1.334794,0.523305,0.536583,0.520591,0.520581,0.5288,0.527842,0.52057,0.52057,0.273633,0.273633,29.796477,28.846438,29.998398,29.999189,29.395801,29.464891,30,30,30,30,,,,,,,,,,,2580,2580,1.334794,1.334794,1.334794,1.334794,1.334794,1.334794,1.334794,1.334794,0.52057,0.52057,30,30,, +11239,0,1.318619,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,4.182,5.5,0,28.256114,3,4,1.977928,1.977928,1.977928,1.977928,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.165346,2.21963,1.977928,1.977928,2.165346,2.21963,1.978885,1.982322,1.977928,1.977928,1.978885,1.982322,2.126006,2.100666,1.977928,1.977928,2.126006,2.100666,1.977928,1.977928,1.977928,1.977928,1.977928,1.977928,,,,,,,2.165346,2.21963,1.978885,1.982322,2.126006,2.100666,1.977928,1.977928,1.977928,1.977928,0.886955,0.90324,0.831017,0.832048,0.875153,0.867551,0.83073,0.83073,0.441737,0.441737,36.537857,35.644282,39.980655,39.911339,37.213968,37.662869,40,40,40,40,,,,,,,,,,,3096,3096,1.977928,1.977928,1.977928,1.977928,1.977928,1.977928,1.977928,1.977928,0.83073,0.83073,40,40,, +26825,0,1.77047,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.938638,0.15,4,7.081879,7.081879,7.081879,7.081879,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,,,,,,,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,2.443248,2.443248,2.443248,2.443248,2.443248,2.443248,2.443248,2.443248,1.257034,1.257034,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,7.081879,2.443248,2.443248,15,15,, +26844,0,0.819122,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.552612,0.15,4,3.276488,3.276488,3.276488,3.276488,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,,,,,,,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,1.130388,1.130388,1.130388,1.130388,1.130388,1.130388,1.130388,1.130388,0.581577,0.581577,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,3.276488,1.130388,1.130388,15,15,, +30110,0,1.572349,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,33.693197,0.15,4,6.289397,6.289397,6.289397,6.289397,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,,,,,,,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,2.169842,2.169842,2.169842,2.169842,2.169842,2.169842,2.169842,2.169842,1.116368,1.116368,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,6.289397,2.169842,2.169842,15,15,, +11191,0,1.340297,1,1,0,2,5,,5,5,Curtis,Rd,1432002,0.902,2.242,0,28.720652,3.7,5,2.680594,2.680594,2.680594,2.680594,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.684556,2.686596,2.680594,2.680594,2.684556,2.686596,2.680601,2.680603,2.680594,2.680594,2.680601,2.680603,2.683969,2.686583,2.680594,2.680594,2.683969,2.686583,2.680594,2.680594,2.680594,2.680594,2.680594,2.680594,,,,,,,2.684556,2.686596,2.680601,2.680603,2.683969,2.686583,2.680594,2.680594,2.680594,2.680594,1.04662,1.047232,1.045434,1.045434,1.046444,1.047228,1.045432,1.045432,0.549522,0.549522,29.955724,29.932978,29.999925,29.999906,29.962282,29.933129,30,30,30,30,,,,,,,,,,,2580,2580,2.680594,2.680594,2.680594,2.680594,2.680594,2.680594,2.680594,2.680594,1.045432,1.045432,30,30,, +11193,0,0.457432,1,1,0,2,5,,5,5,Curtis,Rd,1432002,0.445,0.902,0,9.802121,3.7,5,0.914865,0.914865,0.914865,0.914865,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.916556,0.917897,0.914865,0.914865,0.916556,0.917897,0.914869,0.91487,0.914865,0.914865,0.914869,0.91487,0.916371,0.917489,0.914865,0.914865,0.916371,0.917489,0.914865,0.914865,0.914865,0.914865,0.914865,0.914865,,,,,,,0.916556,0.917897,0.914869,0.91487,0.916371,0.917489,0.914865,0.914865,0.914865,0.914865,0.357305,0.357707,0.356798,0.356799,0.357249,0.357584,0.356797,0.356797,0.187547,0.187547,29.944644,29.900907,29.999867,29.999833,29.9507,29.914192,30,30,30,30,,,,,,,,,,,2580,2580,0.914865,0.914865,0.914865,0.914865,0.914865,0.914865,0.914865,0.914865,0.356797,0.356797,30,30,, +11185,0,0.868015,1,1,0,2,5,,5,5,Curtis,Rd,1432002,2.909,3.777,0,18.600323,3.7,5,1.73603,1.73603,1.73603,1.73603,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.747433,1.809154,1.73603,1.73603,1.747433,1.809154,1.736146,1.736083,1.73603,1.73603,1.736146,1.736083,1.77425,1.770028,1.73603,1.73603,1.77425,1.770028,1.73603,1.73603,1.73603,1.73603,1.73603,1.73603,,,,,,,1.747433,1.809154,1.736146,1.736083,1.77425,1.770028,1.73603,1.73603,1.73603,1.73603,0.680473,0.698989,0.677087,0.677068,0.688518,0.687251,0.677052,0.677052,0.355886,0.355886,29.804227,28.787436,29.997996,29.999081,29.353764,29.423771,30,30,30,30,,,,,,,,,,,2580,2580,1.73603,1.73603,1.73603,1.73603,1.73603,1.73603,1.73603,1.73603,0.677052,0.677052,30,30,, +30111,0,1.664412,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.665969,0.15,4,6.657648,6.657648,6.657648,6.657648,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,,,,,,,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,2.296888,2.296888,2.296888,2.296888,2.296888,2.296888,2.296888,2.296888,1.181732,1.181732,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,6.657648,2.296888,2.296888,15,15,, +11141,0,0.757697,1,1,0,2,5,,5,5,Gotfredson,Rd,1432004,5.064,5.822,0,16.236368,3.7,5,1.515394,1.515394,1.515394,1.515394,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.515628,1.515396,1.515394,1.515394,1.515628,1.515396,1.515396,1.515395,1.515394,1.515394,1.515396,1.515395,1.515401,1.51551,1.515394,1.515394,1.515401,1.51551,1.515394,1.515394,1.515394,1.515394,1.515394,1.515394,,,,,,,1.515628,1.515396,1.515396,1.515395,1.515401,1.51551,1.515394,1.515394,1.515394,1.515394,0.591074,0.591004,0.591004,0.591004,0.591006,0.591038,0.591004,0.591004,0.310656,0.310656,29.995375,29.999957,29.999967,29.99999,29.999878,29.997716,30,30,30,30,,,,,,,,,,,2580,2580,1.515394,1.515394,1.515394,1.515394,1.515394,1.515394,1.515394,1.515394,0.591004,0.591004,30,30,, +11589,1,0.723767,2,0,0,1,2,,5,5,E M 14,,1431408,9.623,10.346,0,,1.02,7,0.620372,,0.620372,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.782775,,0.620372,,0.782775,,0.62563,,0.620372,,0.62563,,0.687625,,0.620372,,0.687625,,0.620372,,0.620372,,0.620372,,,,,,,,0.782775,,0.62563,,0.687625,,0.620372,,0.620372,,0.365111,,0.317967,,0.336566,,0.31639,,0.17267,,55.477015,,69.411758,,63.15365,,70,,70,,,,,,,,,,,,15136,,0.620372,,0.620372,,0.620372,,0.620372,,0.31639,,70,,, +19287,1,0.397853,1,0,0,1,2,ROF,5,5,E M 14/Gotfredson,RAMP,1789403,0,0.398,0,,2.24,5,0.59678,,0.59678,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.59678,,0.59678,,0.59678,,0.59678,,0.59678,,0.59678,,0.596781,,0.59678,,0.596781,,0.59678,,0.59678,,0.59678,,,,,,,,0.59678,,0.59678,,0.596781,,0.59678,,0.59678,,0.250648,,0.250648,,0.250648,,0.250648,,0.133281,,39.999997,,39.999998,,39.999929,,40,,40,,,,,,,,,,,,5160,,0.59678,,0.59678,,0.59678,,0.59678,,0.250648,,40,,, +26824,0,0.898735,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.258606,0.15,4,3.59494,3.59494,3.59494,3.59494,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,,,,,,,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,1.240254,1.240254,1.240254,1.240254,1.240254,1.240254,1.240254,1.240254,0.638102,0.638102,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,3.59494,1.240254,1.240254,15,15,, +11142,0,0.519453,1,1,0,2,5,,5,5,Gotfredson,Rd,1432004,4.545,5.064,0,11.131125,3.7,5,1.038905,1.038905,1.038905,1.038905,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.039206,1.038911,1.038905,1.038905,1.039206,1.038911,1.038909,1.038907,1.038905,1.038905,1.038909,1.038907,1.038919,1.039108,1.038905,1.038905,1.038919,1.039108,1.038905,1.038905,1.038905,1.038905,1.038905,1.038905,,,,,,,1.039206,1.038911,1.038909,1.038907,1.038919,1.039108,1.038905,1.038905,1.038905,1.038905,0.405263,0.405175,0.405174,0.405173,0.405177,0.405234,0.405173,0.405173,0.212976,0.212976,29.991302,29.999826,29.999887,29.99995,29.999601,29.994142,30,30,30,30,,,,,,,,,,,2580,2580,1.038905,1.038905,1.038905,1.038905,1.038905,1.038905,1.038905,1.038905,0.405173,0.405173,30,30,, +11132,0,0.303322,1,1,0,2,4,,5,5,Gotfredson,Rd,1432004,5.822,6.125,0,6.499762,3,4,0.454983,0.454983,0.454983,0.454983,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.455007,0.466821,0.454983,0.454983,0.455007,0.466821,0.454991,0.45499,0.454983,0.454983,0.454991,0.45499,0.455131,0.455813,0.454983,0.454983,0.455131,0.455813,0.454983,0.454983,0.454983,0.454983,0.454983,0.454983,,,,,,,0.455007,0.466821,0.454991,0.45499,0.455131,0.455813,0.454983,0.454983,0.454983,0.454983,0.1911,0.194644,0.191095,0.191095,0.191137,0.191342,0.191093,0.191093,0.101613,0.101613,39.997878,38.985675,39.99931,39.999396,39.986985,39.927203,40,40,40,40,,,,,,,,,,,3096,3096,0.454983,0.454983,0.454983,0.454983,0.454983,0.454983,0.454983,0.454983,0.191093,0.191093,40,40,, +11549,-1,0.634097,0,2,0,1,2,,5,5,W M 14,,1431410,9.836,10.47,0,,1.02,7,,0.543512,,0.543512,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.61529,,0.543512,,0.61529,,0.548148,,0.543512,,0.548148,,0.624768,,0.543512,,0.624768,,0.543512,,0.543512,,0.543512,,,,,,,,0.61529,,0.548148,,0.624768,,0.543512,,0.543512,,0.298724,,0.278582,,0.301568,,0.277191,,0.151278,,61.834017,,69.408032,,60.895943,,70,,70,,,,,,,,,,,,15136,,0.543512,,0.543512,,0.543512,,0.543512,,0.277191,,70,, +19285,1,0.339502,1,0,0,1,2,RON,5,5,Gotfredson/W M 14,RAMP,1789405,0,0.339,0,,1.09,4,0.452669,,0.452669,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.452688,,0.452669,,0.452688,,0.45267,,0.452669,,0.45267,,0.45267,,0.452669,,0.45267,,0.452669,,0.452669,,0.452669,,,,,,,,0.452688,,0.45267,,0.45267,,0.452669,,0.452669,,0.196917,,0.196911,,0.196911,,0.196911,,0.105245,,44.998032,,44.999919,,44.99985,,45,,45,,,,,,,,,,,,5160,,0.452669,,0.452669,,0.452669,,0.452669,,0.196911,,45,,, +19286,1,0.405494,1,0,0,1,2,RON,5,5,Gotfredson/E M 14,RAMP,1789404,0,0.405,0,,1.09,4,0.540659,,0.540659,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.541976,,0.540659,,0.541976,,0.54066,,0.540659,,0.54066,,0.540671,,0.540659,,0.540671,,0.540659,,0.540659,,0.540659,,,,,,,,0.541976,,0.54066,,0.540671,,0.540659,,0.540659,,0.235582,,0.235187,,0.23519,,0.235187,,0.125703,,44.890669,,44.999942,,44.998981,,45,,45,,,,,,,,,,,,5160,,0.540659,,0.540659,,0.540659,,0.540659,,0.235187,,45,,, +19288,1,0.374656,1,0,0,1,2,ROF,5,5,W M 14/Gotfredson,RAMP,1789402,0,0.375,0,,2.24,5,0.561984,,0.561984,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.562049,,0.561984,,0.562049,,0.561989,,0.561984,,0.561989,,0.564545,,0.561984,,0.564545,,0.561984,,0.561984,,0.561984,,,,,,,,0.562049,,0.561989,,0.564545,,0.561984,,0.561984,,0.236053,,0.236035,,0.236802,,0.236033,,0.12551,,39.995396,,39.99964,,39.818562,,40,,40,,,,,,,,,,,,5160,,0.561984,,0.561984,,0.561984,,0.561984,,0.236033,,40,,, +9833,0,1.07578,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,26.064,27.139,0,23.052422,3,4,1.61367,1.61367,1.61367,1.61367,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.303312,1.723072,1.61367,1.61367,2.303312,1.723072,1.614695,1.615899,1.61367,1.61367,1.614695,1.615899,1.771494,2.181999,1.61367,1.61367,1.771494,2.181999,1.61367,1.61367,1.61367,1.61367,1.61367,1.61367,,,,,,,2.303312,1.723072,1.614695,1.615899,1.771494,2.181999,1.61367,1.61367,1.61367,1.61367,0.884634,0.710562,0.678049,0.67841,0.725089,0.84824,0.677741,0.677741,0.360386,0.360386,28.023462,37.460286,39.974602,39.944801,36.436351,29.581488,40,40,40,40,,,,,,,,,,,3096,3096,1.61367,1.61367,1.61367,1.61367,1.61367,1.61367,1.61367,1.61367,0.677741,0.677741,40,40,, +26843,0,0.461763,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.894926,0.15,4,1.847053,1.847053,1.847053,1.847053,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,,,,,,,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,0.637233,0.637233,0.637233,0.637233,0.637233,0.637233,0.637233,0.637233,0.327852,0.327852,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,1.847053,0.637233,0.637233,15,15,, +10820,0,0.283131,1,1,0,2,7,GRV,5,5,Gotfredson,Rd,1451202,4.154,4.437,0,6.067085,5.55,5,0.849392,0.849392,0.849392,0.849392,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.850165,0.849396,0.849392,0.849392,0.850165,0.849396,0.84943,0.849425,0.849392,0.849392,0.84943,0.849425,0.84948,0.850021,0.849392,0.849392,0.84948,0.850021,0.849392,0.849392,0.849392,0.849392,0.849392,0.849392,,,,,,,0.850165,0.849396,0.84943,0.849425,0.84948,0.850021,0.849392,0.849392,0.849392,0.849392,0.306013,0.305782,0.305793,0.305791,0.305808,0.30597,0.305781,0.305781,0.158553,0.158553,19.981819,19.9999,19.999102,19.99923,19.997927,19.9852,20,20,20,20,,,,,,,,,,,2236,2236,0.849392,0.849392,0.849392,0.849392,0.849392,0.849392,0.849392,0.849392,0.305781,0.305781,20,20,, +30000,0,1.4563,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.206437,0.15,4,5.825202,5.825202,5.825202,5.825202,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,,,,,,,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,2.009695,2.009695,2.009695,2.009695,2.009695,2.009695,2.009695,2.009695,1.033973,1.033973,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,5.825202,2.009695,2.009695,15,15,, +11129,0,0.250989,1,1,0,2,4,,5,5,Gotfredson,Rd,1432004,6.558,6.809,0,5.378328,3,4,0.376483,0.376483,0.376483,0.376483,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.380606,0.39659,0.376483,0.376483,0.380606,0.39659,0.376954,0.376499,0.376483,0.376483,0.376954,0.376499,0.42706,0.376722,0.376483,0.376483,0.42706,0.376722,0.376483,0.376483,0.376483,0.376483,0.376483,0.376483,,,,,,,0.380606,0.39659,0.376954,0.376499,0.42706,0.376722,0.376483,0.376483,0.376483,0.376483,0.15936,0.164155,0.158264,0.158128,0.173296,0.158194,0.158123,0.158123,0.084081,0.084081,39.566737,37.972027,39.949976,39.998348,35.262788,39.974674,40,40,40,40,,,,,,,,,,,3096,3096,0.376483,0.376483,0.376483,0.376483,0.376483,0.376483,0.376483,0.376483,0.158123,0.158123,40,40,, +26831,0,1.843004,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.49295,0.15,4,7.372017,7.372017,7.372017,7.372017,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,,,,,,,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,2.543346,2.543346,2.543346,2.543346,2.543346,2.543346,2.543346,2.543346,1.308533,1.308533,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,7.372017,2.543346,2.543346,15,15,, +1254,0,0.577077,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,0,0.577,0,12.365931,5.55,5,1.73123,1.73123,1.73123,1.73123,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.731348,1.733656,1.73123,1.73123,1.731348,1.733656,1.731231,1.731231,1.73123,1.73123,1.731231,1.731231,1.733459,1.731588,1.73123,1.73123,1.733459,1.731588,1.73123,1.73123,1.73123,1.73123,1.73123,1.73123,,,,,,,1.731348,1.733656,1.731231,1.731231,1.733459,1.731588,1.73123,1.73123,1.73123,1.73123,0.623278,0.62397,0.623243,0.623243,0.623911,0.62335,0.623243,0.623243,0.323163,0.323163,19.998639,19.972022,19.99999,19.999992,19.974288,19.995869,20,20,20,20,,,,,,,,,,,2236,2236,1.73123,1.73123,1.73123,1.73123,1.73123,1.73123,1.73123,1.73123,0.623243,0.623243,20,20,, +3139,0,1.000881,1,1,0,2,3,,5,3,10 Mile,Rd,656510,3.777,4.777,0,21.447449,1.7,4,1.201057,1.201057,1.201057,1.201057,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.162484,1.320216,1.201057,1.201057,2.162484,1.320216,1.301273,1.294797,1.201057,1.201057,1.301273,1.294797,1.376053,1.850817,1.201057,1.201057,1.376053,1.850817,1.201057,1.201057,1.201057,1.201057,1.201057,1.201057,,,,,,,2.162484,1.320216,1.301273,1.294797,1.376053,1.850817,1.201057,1.201057,1.201057,1.201057,0.828904,0.576223,0.570541,0.568598,0.592975,0.735404,0.540476,0.540476,0.290255,0.290255,27.770312,45.487139,46.1493,46.380131,43.641379,32.446682,50,50,50,50,,,,,,,,,,,3096,3096,1.201057,1.201057,1.201057,1.201057,1.201057,1.201057,1.201057,1.201057,0.540476,0.540476,50,50,, +3535,0,0.953184,1,1,0,2,4,,5,5,8 Mile,Rd,656509,2.835,3.788,0,20.425374,3,4,1.429776,1.429776,1.429776,1.429776,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.964229,1.444443,1.429776,1.429776,1.964229,1.444443,1.450982,1.445154,1.429776,1.429776,1.450982,1.445154,1.507854,1.734262,1.429776,1.429776,1.507854,1.734262,1.429776,1.429776,1.429776,1.429776,1.429776,1.429776,,,,,,,1.964229,1.444443,1.450982,1.445154,1.507854,1.734262,1.429776,1.429776,1.429776,1.429776,0.760842,0.604906,0.606868,0.605119,0.623929,0.691852,0.600506,0.600506,0.319317,0.319317,29.11629,39.593841,39.415402,39.57435,37.92876,32.977172,40,40,40,40,,,,,,,,,,,3096,3096,1.429776,1.429776,1.429776,1.429776,1.429776,1.429776,1.429776,1.429776,0.600506,0.600506,40,40,, +11182,0,0.891628,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,5.989,6.88,0,19.106319,3.7,5,1.783256,1.783256,1.783256,1.783256,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.078898,1.805111,1.783256,1.783256,2.078898,1.805111,1.783262,1.783261,1.783256,1.783256,1.783262,1.783261,1.78649,1.851073,1.783256,1.783256,1.78649,1.851073,1.783256,1.783256,1.783256,1.783256,1.783256,1.783256,,,,,,,2.078898,1.805111,1.783262,1.783261,1.78649,1.851073,1.783256,1.783256,1.783256,1.783256,0.784163,0.702026,0.695472,0.695471,0.69644,0.715815,0.69547,0.69547,0.365568,0.365568,25.733673,29.636795,29.999899,29.999923,29.945704,28.900913,30,30,30,30,,,,,,,,,,,2580,2580,1.783256,1.783256,1.783256,1.783256,1.783256,1.783256,1.783256,1.783256,0.69547,0.69547,30,30,, +20442,0,0.999528,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,1.002,2.001,0,21.418458,5.55,5,2.998584,2.998584,2.998584,2.998584,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.998601,3.045316,2.998584,2.998584,2.998601,3.045316,2.998584,2.998584,2.998584,2.998584,2.998584,2.998584,3.002877,2.998599,2.998584,2.998584,3.002877,2.998599,2.998584,2.998584,2.998584,2.998584,2.998584,2.998584,,,,,,,2.998601,3.045316,2.998584,2.998584,3.002877,2.998599,2.998584,2.998584,2.998584,2.998584,1.079495,1.09351,1.07949,1.07949,1.080778,1.079495,1.07949,1.07949,0.559736,0.559736,19.999886,19.693087,19.999999,19.999998,19.971408,19.999903,20,20,20,20,,,,,,,,,,,2236,2236,2.998584,2.998584,2.998584,2.998584,2.998584,2.998584,2.998584,2.998584,1.07949,1.07949,20,20,, +25473,0,0.501374,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.743731,0.15,4,2.005497,2.005497,2.005497,2.005497,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,,,,,,,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,0.691896,0.691896,0.691896,0.691896,0.691896,0.691896,0.691896,0.691896,0.355976,0.355976,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,2.005497,0.691896,0.691896,15,15,, +26724,0,0.998676,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.4002,0.15,4,3.994704,3.994704,3.994704,3.994704,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,,,,,,,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,1.378173,1.378173,1.378173,1.378173,1.378173,1.378173,1.378173,1.378173,0.70906,0.70906,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,3.994704,1.378173,1.378173,15,15,, +26837,0,1.053364,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.572089,0.15,4,4.213457,4.213457,4.213457,4.213457,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,,,,,,,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,1.453643,1.453643,1.453643,1.453643,1.453643,1.453643,1.453643,1.453643,0.747889,0.747889,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,4.213457,1.453643,1.453643,15,15,, +26838,0,0.500276,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.720193,0.15,4,2.001103,2.001103,2.001103,2.001103,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,,,,,,,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,0.69038,0.69038,0.69038,0.69038,0.69038,0.69038,0.69038,0.69038,0.355196,0.355196,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,2.001103,0.69038,0.69038,15,15,, +10989,0,0.189909,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,5.799,5.989,0,4.069471,3.7,5,0.379817,0.379817,0.379817,0.379817,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.481863,0.380815,0.379817,0.379817,0.481863,0.380815,0.379828,0.379838,0.379817,0.379817,0.379828,0.379838,0.382665,0.421006,0.379817,0.379817,0.382665,0.421006,0.379817,0.379817,0.379817,0.379817,0.379817,0.379817,,,,,,,0.481863,0.380815,0.379828,0.379838,0.382665,0.421006,0.379817,0.379817,0.379817,0.379817,0.178742,0.148428,0.148132,0.148135,0.148983,0.160486,0.148129,0.148129,0.077863,0.077863,23.646823,29.921418,29.999158,29.998341,29.776759,27.064951,30,30,30,30,,,,,,,,,,,2580,2580,0.379817,0.379817,0.379817,0.379817,0.379817,0.379817,0.379817,0.379817,0.148129,0.148129,30,30,, +338,0,0.58049,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,0.998,1.578,0,12.439079,5.55,5,1.741471,1.741471,1.741471,1.741471,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.741487,1.743132,1.741471,1.741471,1.741487,1.743132,1.741471,1.741471,1.741471,1.741471,1.741471,1.741471,1.742022,1.74149,1.741471,1.741471,1.742022,1.74149,1.741471,1.741471,1.741471,1.741471,1.741471,1.741471,,,,,,,1.741487,1.743132,1.741471,1.741471,1.742022,1.74149,1.741471,1.741471,1.741471,1.741471,0.626934,0.627428,0.62693,0.62693,0.627095,0.626935,0.62693,0.62693,0.325075,0.325075,19.999812,19.980938,19.999999,19.999999,19.993671,19.999788,20,20,20,20,,,,,,,,,,,2236,2236,1.741471,1.741471,1.741471,1.741471,1.741471,1.741471,1.741471,1.741471,0.62693,0.62693,20,20,, +3475,0,0.867762,1,1,0,2,3,,5,3,10 Mile,Rd,656510,2.909,3.777,0,18.594901,1.7,4,1.041314,1.041314,1.041314,1.041314,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.28416,1.179384,1.041314,1.041314,2.28416,1.179384,1.141071,1.135557,1.041314,1.041314,1.141071,1.135557,1.225632,1.87538,1.041314,1.041314,1.225632,1.87538,1.041314,1.041314,1.041314,1.041314,1.041314,1.041314,,,,,,,2.28416,1.179384,1.141071,1.135557,1.225632,1.87538,1.041314,1.041314,1.041314,1.041314,0.841445,0.510012,0.498518,0.496864,0.523887,0.718811,0.468591,0.468591,0.251651,0.251651,22.794255,44.146545,45.628838,45.850388,42.480714,27.762755,50,50,50,50,,,,,,,,,,,3096,3096,1.041314,1.041314,1.041314,1.041314,1.041314,1.041314,1.041314,1.041314,0.468591,0.468591,50,50,, +20255,0,0.923235,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,2.001,2.924,0,19.783605,5.55,5,2.769705,2.769705,2.769705,2.769705,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.769705,2.783689,2.769705,2.769705,2.769705,2.783689,2.769705,2.769705,2.769705,2.769705,2.769705,2.769705,2.771218,2.769706,2.769705,2.769705,2.771218,2.769706,2.769705,2.769705,2.769705,2.769705,2.769705,2.769705,,,,,,,2.769705,2.783689,2.769705,2.769705,2.771218,2.769706,2.769705,2.769705,2.769705,2.769705,0.997094,1.001289,0.997094,0.997094,0.997548,0.997094,0.997094,0.997094,0.517012,0.517012,20,19.899526,20,20,19.989077,19.999988,20,20,20,20,,,,,,,,,,,2236,2236,2.769705,2.769705,2.769705,2.769705,2.769705,2.769705,2.769705,2.769705,0.997094,0.997094,20,20,, +24621,0,0.997754,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.38044,0.15,4,3.991015,3.991015,3.991015,3.991015,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,,,,,,,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,1.3769,1.3769,1.3769,1.3769,1.3769,1.3769,1.3769,1.3769,0.708405,0.708405,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,3.991015,1.3769,1.3769,15,15,, +25472,0,0.999884,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.426081,0.15,4,3.999535,3.999535,3.999535,3.999535,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,,,,,,,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,1.37984,1.37984,1.37984,1.37984,1.37984,1.37984,1.37984,1.37984,0.709917,0.709917,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,3.999535,1.37984,1.37984,15,15,, +25477,0,0.530382,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.365336,0.15,4,2.121529,2.121529,2.121529,2.121529,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,,,,,,,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,0.731928,0.731928,0.731928,0.731928,0.731928,0.731928,0.731928,0.731928,0.376571,0.376571,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,2.121529,0.731928,0.731928,15,15,, +25470,0,0.502499,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.767839,0.15,4,2.009997,2.009997,2.009997,2.009997,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,,,,,,,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,0.693449,0.693449,0.693449,0.693449,0.693449,0.693449,0.693449,0.693449,0.356774,0.356774,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,2.009997,0.693449,0.693449,15,15,, +19906,0,0.252301,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,2.924,3.176,0,5.406457,5.55,5,0.756904,0.756904,0.756904,0.756904,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.756904,0.758029,0.756904,0.756904,0.756904,0.758029,0.756904,0.756904,0.756904,0.756904,0.756904,0.756904,0.75694,0.756904,0.756904,0.756904,0.75694,0.756904,0.756904,0.756904,0.756904,0.756904,0.756904,0.756904,,,,,,,0.756904,0.758029,0.756904,0.756904,0.75694,0.756904,0.756904,0.756904,0.756904,0.756904,0.272485,0.272823,0.272485,0.272485,0.272496,0.272485,0.272485,0.272485,0.141289,0.141289,20,19.970323,20,20,19.999054,20,20,20,20,20,,,,,,,,,,,2236,2236,0.756904,0.756904,0.756904,0.756904,0.756904,0.756904,0.756904,0.756904,0.272485,0.272485,20,20,, +2514,0,0.559571,1,1,0,2,4,,5,3,10 Mile,Rd,656510,2.222,2.782,0,11.990799,3,4,0.839356,0.839356,0.839356,0.839356,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.431473,1.130612,0.839356,0.839356,1.431473,1.130612,1.06602,1.031987,0.839356,0.839356,1.06602,1.031987,1.293365,1.567596,0.839356,0.839356,1.293365,1.567596,0.839356,0.839356,0.839356,0.839356,0.839356,0.839356,,,,,,,1.431473,1.130612,1.06602,1.031987,1.293365,1.567596,0.839356,0.839356,0.839356,0.839356,0.530165,0.439906,0.420529,0.410319,0.488732,0.571002,0.352529,0.352529,0.187456,0.187456,23.454331,29.695622,31.494933,32.533587,25.958822,21.417655,40,40,40,40,,,,,,,,,,,3096,3096,0.839356,0.839356,0.839356,0.839356,0.839356,0.839356,0.839356,0.839356,0.352529,0.352529,40,40,, +25475,0,0.515314,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.042442,0.15,4,2.061256,2.061256,2.061256,2.061256,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,,,,,,,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,0.711133,0.711133,0.711133,0.711133,0.711133,0.711133,0.711133,0.711133,0.365873,0.365873,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,2.061256,0.711133,0.711133,15,15,, +3484,0,0.127698,1,1,0,2,3,,5,3,10 Mile,Rd,656510,2.782,2.909,0,2.736392,1.7,4,0.153238,0.153238,0.153238,0.153238,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.315744,0.17526,0.153238,0.153238,0.315744,0.17526,0.167239,0.166559,0.153238,0.153238,0.167239,0.166559,0.179958,0.268434,0.153238,0.153238,0.179958,0.268434,0.153238,0.153238,0.153238,0.153238,0.153238,0.153238,,,,,,,0.315744,0.17526,0.167239,0.166559,0.179958,0.268434,0.153238,0.153238,0.153238,0.153238,0.117709,0.075564,0.073157,0.072953,0.076973,0.103516,0.068957,0.068957,0.037033,0.037033,24.266145,43.717406,45.814107,46.00108,42.576102,28.542922,50,50,50,50,,,,,,,,,,,3096,3096,0.153238,0.153238,0.153238,0.153238,0.153238,0.153238,0.153238,0.153238,0.068957,0.068957,50,50,, +804,0,0.420723,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,0.577,0.998,0,9.015497,5.55,5,1.26217,1.26217,1.26217,1.26217,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.262255,1.263941,1.26217,1.26217,1.262255,1.263941,1.26217,1.26217,1.26217,1.26217,1.26217,1.26217,1.263794,1.26243,1.26217,1.26217,1.263794,1.26243,1.26217,1.26217,1.26217,1.26217,1.26217,1.26217,,,,,,,1.262255,1.263941,1.26217,1.26217,1.263794,1.26243,1.26217,1.26217,1.26217,1.26217,0.454407,0.454912,0.454381,0.454381,0.454868,0.454459,0.454381,0.454381,0.235605,0.235605,19.998639,19.971976,19.99999,19.999992,19.974288,19.995869,20,20,20,20,,,,,,,,,,,2236,2236,1.26217,1.26217,1.26217,1.26217,1.26217,1.26217,1.26217,1.26217,0.454381,0.454381,20,20,, +2174,0,0.23526,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,1.578,1.813,0,5.041288,5.55,5,0.70578,0.70578,0.70578,0.70578,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.705791,0.705966,0.70578,0.70578,0.705791,0.705966,0.70578,0.70578,0.70578,0.70578,0.70578,0.70578,0.706004,0.705788,0.70578,0.70578,0.706004,0.705788,0.70578,0.70578,0.70578,0.70578,0.70578,0.70578,,,,,,,0.705791,0.705966,0.70578,0.70578,0.706004,0.705788,0.70578,0.70578,0.70578,0.70578,0.254084,0.254137,0.254081,0.254081,0.254148,0.254083,0.254081,0.254081,0.131746,0.131746,19.999704,19.994749,19.999999,19.999999,19.993671,19.999788,20,20,20,20,,,,,,,,,,,2236,2236,0.70578,0.70578,0.70578,0.70578,0.70578,0.70578,0.70578,0.70578,0.254081,0.254081,20,20,, +1668,0,0.183924,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,1.813,1.997,0,3.94123,5.55,5,0.551772,0.551772,0.551772,0.551772,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.551777,0.551933,0.551772,0.551772,0.551777,0.551933,0.551772,0.551772,0.551772,0.551772,0.551772,0.551772,0.551947,0.551778,0.551772,0.551772,0.551947,0.551778,0.551772,0.551772,0.551772,0.551772,0.551772,0.551772,,,,,,,0.551777,0.551933,0.551772,0.551772,0.551947,0.551778,0.551772,0.551772,0.551772,0.551772,0.19864,0.198686,0.198638,0.198638,0.19869,0.19864,0.198638,0.198638,0.102997,0.102997,19.999812,19.994173,19.999999,19.999999,19.993671,19.999788,20,20,20,20,,,,,,,,,,,2236,2236,0.551772,0.551772,0.551772,0.551772,0.551772,0.551772,0.551772,0.551772,0.198638,0.198638,20,20,, +3200,0,0.960282,1,1,0,2,4,,5,5,8 Mile,Rd,656509,3.813,4.773,0,20.577481,3,4,1.440424,1.440424,1.440424,1.440424,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.881205,1.491081,1.440424,1.440424,1.881205,1.491081,1.463081,1.456092,1.440424,1.440424,1.463081,1.456092,1.516666,1.688841,1.440424,1.440424,1.516666,1.688841,1.440424,1.440424,1.440424,1.440424,1.440424,1.440424,,,,,,,1.881205,1.491081,1.463081,1.456092,1.516666,1.688841,1.440424,1.440424,1.440424,1.440424,0.737212,0.620175,0.611775,0.609678,0.627851,0.679503,0.604978,0.604978,0.321695,0.321695,30.627688,38.641051,39.380547,39.569591,37.989217,34.116255,40,40,40,40,,,,,,,,,,,3096,3096,1.440424,1.440424,1.440424,1.440424,1.440424,1.440424,1.440424,1.440424,0.604978,0.604978,40,40,, +10987,0,1.001393,1,1,0,2,5,,5,5,Main,St,1446810,6.88,7.881,0,21.458423,3.7,5,2.002786,2.002786,2.002786,2.002786,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.463104,2.003181,2.002786,2.002786,2.463104,2.003181,2.002786,2.002786,2.002786,2.002786,2.002786,2.002786,2.003578,2.149636,2.002786,2.002786,2.003578,2.149636,2.002786,2.002786,2.002786,2.002786,2.002786,2.002786,,,,,,,2.463104,2.003181,2.002786,2.002786,2.003578,2.149636,2.002786,2.002786,2.002786,2.002786,0.919182,0.781205,0.781087,0.781087,0.781324,0.825142,0.781087,0.781087,0.410571,0.410571,24.393443,29.99409,29.999997,29.999999,29.988136,27.950582,30,30,30,30,,,,,,,,,,,2580,2580,2.002786,2.002786,2.002786,2.002786,2.002786,2.002786,2.002786,2.002786,0.781087,0.781087,30,30,, +11135,0,0.940167,1,1,0,2,5,,5,5,Currie,Rd,1447105,1.127,2.067,0,20.146435,3.7,5,1.880334,1.880334,1.880334,1.880334,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.884731,2.063539,1.880334,1.880334,1.884731,2.063539,1.880339,1.880338,1.880334,1.880334,1.880339,1.880338,1.967208,1.889829,1.880334,1.880334,1.967208,1.889829,1.880334,1.880334,1.880334,1.880334,1.880334,1.880334,,,,,,,1.884731,2.063539,1.880339,1.880338,1.967208,1.889829,1.880334,1.880334,1.880334,1.880334,0.734649,0.788292,0.733332,0.733331,0.759392,0.736179,0.73333,0.73333,0.385468,0.385468,29.930014,27.336543,29.999913,29.999939,28.675173,29.849263,30,30,30,30,,,,,,,,,,,2580,2580,1.880334,1.880334,1.880334,1.880334,1.880334,1.880334,1.880334,1.880334,0.73333,0.73333,30,30,, +11194,0,0.959845,1,1,0,2,7,,5,5,7 Mile,Rd,1451104,1.847,2.806,0,20.5681,5.8,6,2.303627,2.303627,2.303627,2.303627,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.306474,2.303628,2.303627,2.303627,2.306474,2.303628,2.303627,2.303627,2.303627,2.303627,2.303627,2.303627,2.303628,2.303716,2.303627,2.303627,2.303628,2.303716,2.303627,2.303627,2.303627,2.303627,2.303627,2.303627,,,,,,,2.306474,2.303628,2.303627,2.303627,2.303628,2.303716,2.303627,2.303627,2.303627,2.303627,0.864714,0.86386,0.86386,0.86386,0.86386,0.863887,0.86386,0.86386,0.451127,0.451127,24.969144,24.999996,25,25,24.999995,24.999034,25,25,25,25,,,,,,,,,,,2064,2064,2.303627,2.303627,2.303627,2.303627,2.303627,2.303627,2.303627,2.303627,0.86386,0.86386,25,25,, +26834,0,0.965787,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.695427,0.15,4,3.863146,3.863146,3.863146,3.863146,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,,,,,,,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,1.332785,1.332785,1.332785,1.332785,1.332785,1.332785,1.332785,1.332785,0.685708,0.685708,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,3.863146,1.332785,1.332785,15,15,, +10967,0,0.993358,1,1,0,2,5,,5,5,Currie,Rd,1447105,2.067,3.06,0,21.286248,3.7,5,1.986717,1.986717,1.986717,1.986717,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.022852,2.391039,1.986717,1.986717,2.022852,2.391039,1.986723,1.98672,1.986717,1.986717,1.986723,1.98672,2.136465,2.045589,1.986717,1.986717,2.136465,2.045589,1.986717,1.986717,1.986717,1.986717,1.986717,1.986717,,,,,,,2.022852,2.391039,1.986723,1.98672,2.136465,2.045589,1.986717,1.986717,1.986717,1.986717,0.78566,0.896116,0.774821,0.774821,0.819744,0.792481,0.774819,0.774819,0.407277,0.407277,29.464085,24.92703,29.999906,29.99994,27.897246,29.136589,30,30,30,30,,,,,,,,,,,2580,2580,1.986717,1.986717,1.986717,1.986717,1.986717,1.986717,1.986717,1.986717,0.774819,0.774819,30,30,, +3522,0,0.025024,1,1,0,2,4,,5,5,8 Mile,Rd,656509,3.788,3.813,0,0.536227,3,4,0.037536,0.037536,0.037536,0.037536,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.066355,0.038405,0.037536,0.037536,0.066355,0.038405,0.03817,0.03801,0.037536,0.037536,0.03817,0.03801,0.041207,0.053675,0.037536,0.037536,0.041207,0.053675,0.037536,0.037536,0.037536,0.037536,0.037536,0.037536,,,,,,,0.066355,0.038405,0.03817,0.03801,0.041207,0.053675,0.037536,0.037536,0.037536,0.037536,0.024411,0.016026,0.015955,0.015907,0.016866,0.020607,0.015765,0.015765,0.008383,0.008383,22.627249,39.094744,39.335072,39.501439,36.436588,27.972846,40,40,40,40,,,,,,,,,,,3096,3096,0.037536,0.037536,0.037536,0.037536,0.037536,0.037536,0.037536,0.037536,0.015765,0.015765,40,40,, +26833,0,0.97045,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.795354,0.15,4,3.881799,3.881799,3.881799,3.881799,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,,,,,,,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,1.339221,1.339221,1.339221,1.339221,1.339221,1.339221,1.339221,1.339221,0.689019,0.689019,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,3.881799,1.339221,1.339221,15,15,, +29999,0,0.039759,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,0.851984,0.15,4,0.159037,0.159037,0.159037,0.159037,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,,,,,,,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.054868,0.054868,0.054868,0.054868,0.054868,0.054868,0.054868,0.054868,0.028229,0.028229,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.159037,0.054868,0.054868,15,15,, +3519,0,0.010751,1,1,0,2,4,,5,5,8 Mile,Rd,656509,4.773,4.784,0,0.230387,3,4,0.016127,0.016127,0.016127,0.016127,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.02183,0.016822,0.016127,0.016127,0.02183,0.016822,0.016504,0.016392,0.016127,0.016127,0.016504,0.016392,0.01735,0.019603,0.016127,0.016127,0.01735,0.019603,0.016127,0.016127,0.016127,0.016127,0.016127,0.016127,,,,,,,0.02183,0.016822,0.016504,0.016392,0.01735,0.019603,0.016127,0.016127,0.016127,0.016127,0.008484,0.006982,0.006887,0.006853,0.00714,0.007816,0.006773,0.006773,0.003602,0.003602,29.550435,38.347663,39.085371,39.354517,37.180514,32.908164,40,40,40,40,,,,,,,,,,,3096,3096,0.016127,0.016127,0.016127,0.016127,0.016127,0.016127,0.016127,0.016127,0.006773,0.006773,40,40,, +26842,0,0.500089,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.71619,0.15,4,2.000355,2.000355,2.000355,2.000355,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.000356,2.000355,2.000355,2.000355,2.000356,2.000355,2.000355,2.000355,2.000355,2.000355,2.000355,2.000355,2.000356,2.000356,2.000355,2.000355,2.000356,2.000356,2.000355,2.000355,2.000355,2.000355,2.000355,2.000355,,,,,,,2.000356,2.000355,2.000355,2.000355,2.000356,2.000356,2.000355,2.000355,2.000355,2.000355,0.690123,0.690123,0.690123,0.690123,0.690123,0.690123,0.690123,0.690123,0.355063,0.355063,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.000355,2.000355,2.000355,2.000355,2.000355,2.000355,2.000355,2.000355,0.690123,0.690123,15,15,, +26836,0,0.49987,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.71151,0.15,4,1.999482,1.999482,1.999482,1.999482,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,,,,,,,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,0.689821,0.689821,0.689821,0.689821,0.689821,0.689821,0.689821,0.689821,0.354908,0.354908,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,1.999482,0.689821,0.689821,15,15,, +3468,0,0.50711,1,1,1,2,3,,5,3,10 Mile,Rd,656510,4.777,5.284,0,10.866643,1.7,4,0.608532,0.608532,0.608532,0.608532,50,50,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,1.172994,0.666344,0.608532,0.608532,1.172994,0.666344,0.679231,0.667718,0.608532,0.608532,0.679231,0.667718,0.717474,1.04465,0.608532,0.608532,0.717474,1.04465,0.608532,0.608532,0.608532,0.608532,0.608532,0.608532,,,,,,,1.172994,0.666344,0.679231,0.667718,0.717474,1.04465,0.608532,0.608532,0.608532,0.608532,0.443178,0.291183,0.295049,0.291595,0.306522,0.404675,0.273839,0.273839,0.147062,0.147062,25.93926,45.661985,44.795655,45.568032,42.407932,29.12613,50,50,50,50,,,,,,,,,,,3406,3406,0.608532,0.608532,0.608532,0.608532,0.608532,0.608532,0.608532,0.608532,0.273839,0.273839,50,50,, +26840,0,0.499384,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.701088,0.15,4,1.997536,1.997536,1.997536,1.997536,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.997537,1.997536,1.997536,1.997536,1.997537,1.997536,1.997536,1.997536,1.997536,1.997536,1.997536,1.997536,1.997537,1.997537,1.997536,1.997536,1.997537,1.997537,1.997536,1.997536,1.997536,1.997536,1.997536,1.997536,,,,,,,1.997537,1.997536,1.997536,1.997536,1.997537,1.997537,1.997536,1.997536,1.997536,1.997536,0.68915,0.68915,0.68915,0.68915,0.68915,0.68915,0.68915,0.68915,0.354563,0.354563,14.999998,14.999999,15,15,14.999997,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,1.997536,1.997536,1.997536,1.997536,1.997536,1.997536,1.997536,1.997536,0.68915,0.68915,15,15,, +11118,0,0.734554,1,1,0,2,5,,4,5,Napier,Rd,1432007,4.013,4.747,0,15.740432,5.8,4.5,1.632341,1.632341,1.632341,1.632341,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.632463,1.632341,1.632341,1.632341,1.632463,1.632341,1.632346,1.632346,1.632341,1.632341,1.632346,1.632346,1.632378,1.632525,1.632341,1.632341,1.632378,1.632525,1.632341,1.632341,1.632341,1.632341,1.632341,1.632341,,,,,,,1.632463,1.632341,1.632346,1.632346,1.632378,1.632525,1.632341,1.632341,1.632341,1.632341,0.621959,0.621922,0.621923,0.621923,0.621933,0.621977,0.621922,0.621922,0.325652,0.325652,26.997985,26.999998,26.999922,26.999921,26.999388,26.996966,27,27,27,27,,,,,,,,,,,2580,2580,1.632341,1.632341,1.632341,1.632341,1.632341,1.632341,1.632341,1.632341,0.621922,0.621922,27,27,, +14792,0,0.403358,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.744,7.148,0,8.643383,3.7,5,0.605037,0.605037,0.605037,0.605037,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.174515,0.673143,0.605037,0.605037,1.174515,0.673143,0.701173,0.68532,0.605037,0.605037,0.701173,0.68532,0.919633,1.102818,0.605037,0.605037,0.919633,1.102818,0.605037,0.605037,0.605037,0.605037,0.605037,0.605037,,,,,,,1.174515,0.673143,0.701173,0.68532,0.919633,1.102818,0.605037,0.605037,0.605037,0.605037,0.424959,0.274547,0.282956,0.2782,0.348494,0.40345,0.254115,0.254115,0.135125,0.135125,20.605504,35.952946,34.515687,35.314135,26.316454,21.945126,40,40,40,40,,,,,,,,,,,3784,3784,0.605037,0.605037,0.605037,0.605037,0.605037,0.605037,0.605037,0.605037,0.254115,0.254115,40,40,, +15731,0,0.78888,1,1,0,2,5,,4,2,Ridge,Rd,1595602,4.166,4.954,0,16.904566,5.8,4.5,1.753066,1.753066,1.753066,1.753066,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.04319,1.759991,1.753066,1.753066,2.04319,1.759991,1.756925,1.754904,1.753066,1.753066,1.756925,1.754904,1.774913,2.071811,1.753066,1.753066,1.774913,2.071811,1.753066,1.753066,1.753066,1.753066,1.753066,1.753066,,,,,,,2.04319,1.759991,1.756925,1.754904,1.774913,2.071811,1.753066,1.753066,1.753066,1.753066,0.754955,0.669996,0.669076,0.66847,0.674472,0.763542,0.667918,0.667918,0.349737,0.349737,23.16612,26.893758,26.940695,26.971722,26.667667,22.846098,27,27,27,27,,,,,,,,,,,2580,2580,1.753066,1.753066,1.753066,1.753066,1.753066,1.753066,1.753066,1.753066,0.667918,0.667918,27,27,, +16054,0,0.352995,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,1.074,1.427,0,7.564179,4.5,4.5,0.557361,0.557361,0.557361,0.557361,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.818949,0.640358,0.557361,0.557361,0.818949,0.640358,0.560325,0.563093,0.557361,0.557361,0.560325,0.563093,0.631335,0.724156,0.557361,0.557361,0.631335,0.724156,0.557361,0.557361,0.557361,0.557361,0.557361,0.557361,,,,,,,0.818949,0.640358,0.560325,0.563093,0.631335,0.724156,0.557361,0.557361,0.557361,0.557361,0.309224,0.255647,0.231637,0.232467,0.25294,0.280786,0.230747,0.230747,0.122434,0.122434,25.862064,33.074758,37.798968,37.613145,33.547465,29.247431,38,38,38,38,,,,,,,,,,,3096,3096,0.557361,0.557361,0.557361,0.557361,0.557361,0.557361,0.557361,0.557361,0.230747,0.230747,38,38,, +16063,-1,2.160591,0,2,0,1,2,,4,2,W M 14,,1606204,0,2.16,0,,0.8,7.5,,1.851935,,1.851935,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.114663,,1.851935,,2.114663,,1.865207,,1.851935,,1.865207,,2.324945,,1.851935,,2.324945,,1.851935,,1.851935,,1.851935,,,,,,,,2.114663,,1.865207,,2.324945,,1.851935,,1.851935,,1.023305,,0.948469,,1.08639,,0.944487,,0.515455,,61.303132,,69.501904,,55.758491,,70,,70,,,,,,,,,,,,15136,,1.851935,,1.851935,,1.851935,,1.851935,,0.944487,,70,, +16929,1,1.998309,2,0,0,1,2,,4,2,E M 14,,1606205,0,1.998,0,,0.8,7.5,1.712837,,1.712837,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.32195,,1.712837,,2.32195,,1.722377,,1.712837,,1.722377,,1.869654,,1.712837,,1.869654,,1.712837,,1.712837,,1.712837,,,,,,,,2.32195,,1.722377,,1.869654,,1.712837,,1.712837,,1.056281,,0.876409,,0.920592,,0.873547,,0.47674,,51.637017,,69.612283,,64.128758,,70,,70,,,,,,,,,,,,15136,,1.712837,,1.712837,,1.712837,,1.712837,,0.873547,,70,,, +17434,0,0.537012,1,1,0,2,5,,4,2,Powell,Rd,1673208,1.012,1.549,0,11.50741,5.8,4.5,1.193361,1.193361,1.193361,1.193361,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.193701,1.1939,1.193361,1.193361,1.193701,1.1939,1.193457,1.193465,1.193361,1.193361,1.193457,1.193465,1.194614,1.194331,1.193361,1.193361,1.194614,1.194331,1.193361,1.193361,1.193361,1.193361,1.193361,1.193361,,,,,,,1.193701,1.1939,1.193457,1.193465,1.194614,1.194331,1.193361,1.193361,1.193361,1.193361,0.454773,0.454832,0.454699,0.454702,0.455046,0.454962,0.454671,0.454671,0.238076,0.238076,26.992299,26.987801,26.997825,26.997645,26.971685,26.978065,27,27,27,27,,,,,,,,,,,2580,2580,1.193361,1.193361,1.193361,1.193361,1.193361,1.193361,1.193361,1.193361,0.454671,0.454671,27,27,, +17787,0,0.201664,1,1,0,2,5,GRV,4,2,Joy,Rd,1672705,0.62,0.822,0,4.321365,6.55,4.5,0.806655,0.806655,0.806655,0.806655,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.819516,0.808198,0.806655,0.806655,0.819516,0.808198,0.806655,0.806657,0.806655,0.806655,0.806655,0.806657,0.817591,0.817489,0.806655,0.806655,0.817591,0.817489,0.806655,0.806655,0.806655,0.806655,0.806655,0.806655,,,,,,,0.819516,0.808198,0.806655,0.806657,0.817591,0.817489,0.806655,0.806655,0.806655,0.806655,0.282154,0.278759,0.278296,0.278297,0.281577,0.281546,0.278296,0.278296,0.143181,0.143181,14.764591,14.971363,14.99999,14.999953,14.799365,14.80121,15,15,15,15,,,,,,,,,,,2064,2064,0.806655,0.806655,0.806655,0.806655,0.806655,0.806655,0.806655,0.806655,0.278296,0.278296,15,15,, +18799,0,1.003434,1,1,0,2,5,,4,2,5 Mile,Rd,1708705,1.016,2.019,0,21.502164,5.8,4.5,2.229854,2.229854,2.229854,2.229854,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.701057,2.232399,2.229854,2.229854,2.701057,2.232399,2.230172,2.230086,2.229854,2.229854,2.230172,2.230086,2.235297,2.437473,2.229854,2.229854,2.235297,2.437473,2.229854,2.229854,2.229854,2.229854,2.229854,2.229854,,,,,,,2.701057,2.232399,2.230172,2.230086,2.235297,2.437473,2.229854,2.229854,2.229854,2.229854,0.990935,0.850338,0.84967,0.849644,0.851207,0.91186,0.849574,0.849574,0.444856,0.444856,22.289817,26.96922,26.996156,26.997197,26.93425,24.700194,27,27,27,27,,,,,,,,,,,2580,2580,2.229854,2.229854,2.229854,2.229854,2.229854,2.229854,2.229854,2.229854,0.849574,0.849574,27,27,, +18839,0,0.51769,1,1,0,2,4,,4,2,Territorial,Rd,1673609,1.015,1.533,0,11.093364,4.5,4.5,0.817406,0.817406,0.817406,0.817406,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.462141,0.826787,0.817406,0.817406,1.462141,0.826787,0.841843,0.822978,0.817406,0.817406,0.841843,0.822978,1.012132,1.061418,0.817406,0.817406,1.012132,1.061418,0.817406,0.817406,0.817406,0.817406,0.817406,0.817406,,,,,,,1.462141,0.826787,0.841843,0.822978,1.012132,1.061418,0.817406,0.817406,0.817406,0.817406,0.531826,0.34122,0.345737,0.340078,0.396824,0.41161,0.338406,0.338406,0.179557,0.179557,21.243797,37.56883,36.89692,37.742718,30.689092,29.264084,38,38,38,38,,,,,,,,,,,3096,3096,0.817406,0.817406,0.817406,0.817406,0.817406,0.817406,0.817406,0.817406,0.338406,0.338406,38,38,, +30395,0,0.921497,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.74636,0.15,4,3.685987,3.685987,3.685987,3.685987,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,,,,,,,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,1.271666,1.271666,1.271666,1.271666,1.271666,1.271666,1.271666,1.271666,0.654263,0.654263,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,3.685987,1.271666,1.271666,15,15,, +31432,0,0.899774,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.280868,0.15,4,3.599095,3.599095,3.599095,3.599095,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,,,,,,,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,1.241688,1.241688,1.241688,1.241688,1.241688,1.241688,1.241688,1.241688,0.638839,0.638839,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,3.599095,1.241688,1.241688,15,15,, +31448,0,0.503296,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.784918,0.15,4,2.013185,2.013185,2.013185,2.013185,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,,,,,,,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,0.694549,0.694549,0.694549,0.694549,0.694549,0.694549,0.694549,0.694549,0.35734,0.35734,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,2.013185,0.694549,0.694549,15,15,, +31462,0,0.374928,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.034181,0.15,4,1.499714,1.499714,1.499714,1.499714,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,,,,,,,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,0.517401,0.517401,0.517401,0.517401,0.517401,0.517401,0.517401,0.517401,0.266199,0.266199,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,1.499714,0.517401,0.517401,15,15,, +31468,0,0.491802,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.538607,0.15,4,1.967207,1.967207,1.967207,1.967207,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,,,,,,,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,0.678686,0.678686,0.678686,0.678686,0.678686,0.678686,0.678686,0.678686,0.349179,0.349179,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,1.967207,0.678686,0.678686,15,15,, +11125,0,0.824177,1,1,0,2,5,,4,5,Napier,Rd,1432007,2.997,3.821,0,17.660943,5.8,4.5,1.831505,1.831505,1.831505,1.831505,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.83151,1.831505,1.831505,1.831505,1.83151,1.831505,1.831505,1.831505,1.831505,1.831505,1.831505,1.831505,1.831506,1.831506,1.831505,1.831505,1.831506,1.831506,1.831505,1.831505,1.831505,1.831505,1.831505,1.831505,,,,,,,1.83151,1.831505,1.831505,1.831505,1.831506,1.831506,1.831505,1.831505,1.831505,1.831505,0.697805,0.697804,0.697803,0.697804,0.697804,0.697804,0.697803,0.697803,0.365385,0.365385,26.999926,26.999995,26.999999,26.999998,26.999984,26.999995,27,27,27,27,,,,,,,,,,,2580,2580,1.831505,1.831505,1.831505,1.831505,1.831505,1.831505,1.831505,1.831505,0.697803,0.697803,27,27,, +15635,0,0.279049,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,3.164,3.443,0,5.979628,6.55,4.5,1.116197,1.116197,1.116197,1.116197,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.118751,1.116487,1.116197,1.116197,1.118751,1.116487,1.116202,1.116198,1.116197,1.116197,1.116202,1.116198,1.117742,1.134441,1.116197,1.116197,1.117742,1.134441,1.116197,1.116197,1.116197,1.116197,1.116197,1.116197,,,,,,,1.118751,1.116487,1.116202,1.116198,1.117742,1.134441,1.116197,1.116197,1.116197,1.116197,0.385854,0.385175,0.385089,0.385088,0.385551,0.390561,0.385088,0.385088,0.198125,0.198125,14.96576,14.996112,14.999939,14.999988,14.97927,14.758768,15,15,15,15,,,,,,,,,,,2064,2064,1.116197,1.116197,1.116197,1.116197,1.116197,1.116197,1.116197,1.116197,0.385088,0.385088,15,15,, +16062,0,0.51492,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,0.56,1.074,0,11.033996,4.5,4.5,0.813031,0.813031,0.813031,0.813031,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.907435,0.857009,0.813031,0.813031,0.907435,0.857009,0.813712,0.81478,0.813031,0.813031,0.813712,0.81478,0.844165,0.869107,0.813031,0.813031,0.844165,0.869107,0.813031,0.813031,0.813031,0.813031,0.813031,0.813031,,,,,,,0.907435,0.857009,0.813712,0.81478,0.844165,0.869107,0.813031,0.813031,0.813031,0.813031,0.364916,0.349788,0.336799,0.33712,0.345935,0.353418,0.336595,0.336595,0.178596,0.178596,34.046712,36.050027,37.968216,37.918444,36.598527,35.548217,38,38,38,38,,,,,,,,,,,3096,3096,0.813031,0.813031,0.813031,0.813031,0.813031,0.813031,0.813031,0.813031,0.336595,0.336595,38,38,, +16067,0,0.383217,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,0,0.383,0,8.211803,4.5,4.5,0.60508,0.60508,0.60508,0.60508,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.680428,0.678545,0.60508,0.60508,0.680428,0.678545,0.60525,0.605832,0.60508,0.60508,0.60525,0.605832,0.646701,0.650731,0.60508,0.60508,0.646701,0.650731,0.60508,0.60508,0.60508,0.60508,0.60508,0.60508,,,,,,,0.680428,0.678545,0.60525,0.605832,0.646701,0.650731,0.60508,0.60508,0.60508,0.60508,0.273107,0.272543,0.250554,0.250729,0.262989,0.264198,0.250503,0.250503,0.132916,0.132916,33.792048,33.885802,37.989357,37.952857,35.554392,35.33419,38,38,38,38,,,,,,,,,,,3096,3096,0.60508,0.60508,0.60508,0.60508,0.60508,0.60508,0.60508,0.60508,0.250503,0.250503,38,38,, +17436,0,0.466132,1,1,0,2,5,,4,2,Powell,Rd,1673208,0,0.466,0,9.988539,5.8,4.5,1.035849,1.035849,1.035849,1.035849,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.035849,1.035905,1.035849,1.035849,1.035849,1.035905,1.035851,1.035851,1.035849,1.035849,1.035851,1.035851,1.035941,1.035863,1.035849,1.035849,1.035941,1.035863,1.035849,1.035849,1.035849,1.035849,1.035849,1.035849,,,,,,,1.035849,1.035905,1.035851,1.035851,1.035941,1.035863,1.035849,1.035849,1.035849,1.035849,0.394658,0.394675,0.394659,0.394659,0.394686,0.394663,0.394658,0.394658,0.206652,0.206652,26.999998,26.998528,26.999939,26.999937,26.99758,26.999623,27,27,27,27,,,,,,,,,,,2580,2580,1.035849,1.035849,1.035849,1.035849,1.035849,1.035849,1.035849,1.035849,0.394658,0.394658,27,27,, +31536,0,0.803045,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.208112,0.15,4,3.212181,3.212181,3.212181,3.212181,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,,,,,,,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,1.108202,1.108202,1.108202,1.108202,1.108202,1.108202,1.108202,1.108202,0.570162,0.570162,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,3.212181,1.108202,1.108202,15,15,, +31537,0,0.514486,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.0247,0.15,4,2.057944,2.057944,2.057944,2.057944,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,,,,,,,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,0.709991,0.709991,0.709991,0.709991,0.709991,0.709991,0.709991,0.709991,0.365285,0.365285,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,2.057944,0.709991,0.709991,15,15,, +11122,0,0.19229,1,1,0,2,5,,4,5,Napier,Rd,1432007,3.821,4.013,0,4.120507,5.8,4.5,0.427312,0.427312,0.427312,0.427312,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,,,,,,,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.162806,0.162806,0.162806,0.162806,0.162806,0.162806,0.162806,0.162806,0.085249,0.085249,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.427312,0.162806,0.162806,27,27,, +18190,0,0.540578,1,1,0,2,5,GRV,4,2,Joy,Rd,1672705,0.079,0.62,0,11.583822,6.55,4.5,2.162313,2.162313,2.162313,2.162313,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.168947,2.162571,2.162313,2.162313,2.168947,2.162571,2.162313,2.162313,2.162313,2.162313,2.162313,2.162313,2.162688,2.164918,2.162313,2.162313,2.162688,2.164918,2.162313,2.162313,2.162313,2.162313,2.162313,2.162313,,,,,,,2.168947,2.162571,2.162313,2.162313,2.162688,2.164918,2.162313,2.162313,2.162313,2.162313,0.747988,0.746075,0.745998,0.745998,0.746111,0.746779,0.745998,0.745998,0.383811,0.383811,14.954126,14.998212,15,15,14.997402,14.981956,15,15,15,15,,,,,,,,,,,2064,2064,2.162313,2.162313,2.162313,2.162313,2.162313,2.162313,2.162313,2.162313,0.745998,0.745998,15,15,, +16066,0,0.176519,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,0.383,0.56,0,3.782549,4.5,4.5,0.278714,0.278714,0.278714,0.278714,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.31184,0.294208,0.278714,0.278714,0.31184,0.294208,0.278958,0.279329,0.278714,0.278714,0.278958,0.279329,0.28995,0.29881,0.278714,0.278714,0.28995,0.29881,0.278714,0.278714,0.278714,0.278714,0.278714,0.278714,,,,,,,0.31184,0.294208,0.278958,0.279329,0.28995,0.29881,0.278714,0.278714,0.278714,0.278714,0.125325,0.120036,0.115461,0.115572,0.118758,0.121416,0.115388,0.115388,0.061224,0.061224,33.963397,35.998816,37.966746,37.91636,36.52742,35.444366,38,38,38,38,,,,,,,,,,,3096,3096,0.278714,0.278714,0.278714,0.278714,0.278714,0.278714,0.278714,0.278714,0.115388,0.115388,38,38,, +18104,0,0.079493,1,1,0,2,5,GRV,4,2,Joy,Rd,1672705,0,0.079,0,1.70343,6.55,4.5,0.317974,0.317974,0.317974,0.317974,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.32068,0.331875,0.317974,0.317974,0.32068,0.331875,0.317982,0.317997,0.317974,0.317974,0.317982,0.317997,0.329012,0.322179,0.317974,0.317974,0.329012,0.322179,0.317974,0.317974,0.317974,0.317974,0.317974,0.317974,,,,,,,0.32068,0.331875,0.317982,0.317997,0.329012,0.322179,0.317974,0.317974,0.317974,0.317974,0.110513,0.113871,0.109703,0.109708,0.113012,0.110963,0.109701,0.109701,0.05644,0.05644,14.873396,14.371682,14.999628,14.998887,14.496752,14.804205,15,15,15,15,,,,,,,,,,,2064,2064,0.317974,0.317974,0.317974,0.317974,0.317974,0.317974,0.317974,0.317974,0.109701,0.109701,15,15,, +15336,0,0.566692,1,1,0,2,5,,4,2,Ridge,Rd,1595602,3.443,4.009,0,12.143393,5.8,4.5,1.259315,1.259315,1.259315,1.259315,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.26809,1.274218,1.259315,1.259315,1.26809,1.274218,1.259967,1.25975,1.259315,1.259315,1.259967,1.25975,1.282635,1.301176,1.259315,1.259315,1.282635,1.301176,1.259315,1.259315,1.259315,1.259315,1.259315,1.259315,,,,,,,1.26809,1.274218,1.259967,1.25975,1.282635,1.301176,1.259315,1.259315,1.259315,1.259315,0.482431,0.48427,0.479995,0.47993,0.486795,0.492357,0.479799,0.479799,0.251233,0.251233,26.813171,26.68422,26.986022,26.99067,26.509111,26.131366,27,27,27,27,,,,,,,,,,,2580,2580,1.259315,1.259315,1.259315,1.259315,1.259315,1.259315,1.259315,1.259315,0.479799,0.479799,27,27,, +18844,0,0.545978,1,1,0,2,5,,4,2,Powell,Rd,1673208,0.466,1.012,0,11.699524,5.8,4.5,1.213284,1.213284,1.213284,1.213284,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.270851,1.215248,1.213284,1.213284,1.270851,1.215248,1.219754,1.21723,1.213284,1.213284,1.219754,1.21723,1.228286,1.263147,1.213284,1.213284,1.228286,1.263147,1.213284,1.213284,1.213284,1.213284,1.213284,1.213284,,,,,,,1.270851,1.215248,1.219754,1.21723,1.228286,1.263147,1.213284,1.213284,1.213284,1.213284,0.479531,0.46285,0.464202,0.463445,0.466762,0.47722,0.462261,0.462261,0.24205,0.24205,25.776943,26.956369,26.85678,26.912463,26.670223,25.934165,27,27,27,27,,,,,,,,,,,2580,2580,1.213284,1.213284,1.213284,1.213284,1.213284,1.213284,1.213284,1.213284,0.462261,0.462261,27,27,, +31534,0,0.505396,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.829921,0.15,4,2.021585,2.021585,2.021585,2.021585,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,,,,,,,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,0.697447,0.697447,0.697447,0.697447,0.697447,0.697447,0.697447,0.697447,0.358831,0.358831,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,2.021585,0.697447,0.697447,15,15,, +31533,0,0.130106,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.787996,0.15,4,0.520426,0.520426,0.520426,0.520426,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,,,,,,,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.179547,0.179547,0.179547,0.179547,0.179547,0.179547,0.179547,0.179547,0.092376,0.092376,14.999998,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.520426,0.179547,0.179547,15,15,, +14899,0,0.156573,1,1,0,2,5,,4,2,Ridge,Rd,1595602,4.009,4.166,0,3.355136,5.8,4.5,0.34794,0.34794,0.34794,0.34794,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.3481,0.347946,0.34794,0.34794,0.3481,0.347946,0.34794,0.34794,0.34794,0.34794,0.34794,0.34794,0.347942,0.348593,0.34794,0.34794,0.347942,0.348593,0.34794,0.34794,0.34794,0.34794,0.34794,0.34794,,,,,,,0.3481,0.347946,0.34794,0.34794,0.347942,0.348593,0.34794,0.34794,0.34794,0.34794,0.132613,0.132567,0.132565,0.132565,0.132566,0.132761,0.132565,0.132565,0.069414,0.069414,26.987624,26.9995,27,27,26.999852,26.949449,27,27,27,27,,,,,,,,,,,2580,2580,0.34794,0.34794,0.34794,0.34794,0.34794,0.34794,0.34794,0.34794,0.132565,0.132565,27,27,, +15195,0,0.613687,1,1,0,2,5,,4,2,Ridge,Rd,1595602,5.555,6.169,0,13.150439,5.8,4.5,1.363749,1.363749,1.363749,1.363749,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.36539,1.364204,1.363749,1.363749,1.36539,1.364204,1.36375,1.363749,1.363749,1.363749,1.36375,1.363749,1.364393,1.364988,1.363749,1.363749,1.364393,1.364988,1.363749,1.363749,1.363749,1.363749,1.363749,1.363749,,,,,,,1.36539,1.364204,1.36375,1.363749,1.364393,1.364988,1.363749,1.363749,1.363749,1.363749,0.520081,0.519725,0.519589,0.519589,0.519782,0.51996,0.519588,0.519588,0.272068,0.272068,26.967553,26.991004,26.999995,26.999995,26.987255,26.975503,27,27,27,27,,,,,,,,,,,2580,2580,1.363749,1.363749,1.363749,1.363749,1.363749,1.363749,1.363749,1.363749,0.519588,0.519588,27,27,, +17425,0,0.828584,1,1,0,2,4,,4,2,Territorial,Rd,1673609,0.187,1.015,0,17.755372,4.5,4.5,1.308291,1.308291,1.308291,1.308291,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.517366,1.311914,1.308291,1.308291,1.517366,1.311914,1.309453,1.308377,1.308291,1.308291,1.309453,1.308377,1.380517,1.327593,1.308291,1.308291,1.380517,1.327593,1.308291,1.308291,1.308291,1.308291,1.308291,1.308291,,,,,,,1.517366,1.311914,1.309453,1.308377,1.380517,1.327593,1.308291,1.308291,1.308291,1.308291,0.604355,0.542719,0.541981,0.541658,0.5633,0.547423,0.541632,0.541632,0.287388,0.287388,32.764039,37.895037,37.966276,37.997502,36.011905,37.447493,38,38,38,38,,,,,,,,,,,3096,3096,1.308291,1.308291,1.308291,1.308291,1.308291,1.308291,1.308291,1.308291,0.541632,0.541632,38,38,, +17534,0,0.773393,1,1,0,2,5,,4,2,5 Mile,Rd,1708705,0,0.773,0,16.572708,5.8,4.5,1.718651,1.718651,1.718651,1.718651,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.021384,1.733104,1.718651,1.718651,2.021384,1.733104,1.718715,1.718703,1.718651,1.718651,1.718715,1.718703,1.737053,1.951451,1.718651,1.718651,1.737053,1.951451,1.718651,1.718651,1.718651,1.718651,1.718651,1.718651,,,,,,,2.021384,1.733104,1.718715,1.718703,1.737053,1.951451,1.718651,1.718651,1.718651,1.718651,0.745626,0.659142,0.654825,0.654822,0.660327,0.724646,0.654806,0.654806,0.342871,0.342871,22.956341,26.774833,26.998994,26.999192,26.713963,23.779017,27,27,27,27,,,,,,,,,,,2580,2580,1.718651,1.718651,1.718651,1.718651,1.718651,1.718651,1.718651,1.718651,0.654806,0.654806,27,27,, +26845,0,0.711368,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.243604,0.15,4,2.845473,2.845473,2.845473,2.845473,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,,,,,,,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,0.981688,0.981688,0.981688,0.981688,0.981688,0.981688,0.981688,0.981688,0.505071,0.505071,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,2.845473,0.981688,0.981688,15,15,, +33766,0,0.679097,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.552077,0.15,4,2.716388,2.716388,2.716388,2.716388,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,,,,,,,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,0.937154,0.937154,0.937154,0.937154,0.937154,0.937154,0.937154,0.937154,0.482159,0.482159,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,2.716388,0.937154,0.937154,15,15,, +9818,0,0.343598,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,27.8,28.144,0,7.362805,3,4,0.515396,0.515396,0.515396,0.515396,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.613797,0.530298,0.515396,0.515396,0.613797,0.530298,0.517351,0.515842,0.515396,0.515396,0.517351,0.515842,0.600558,0.537262,0.515396,0.515396,0.600558,0.537262,0.515396,0.515396,0.515396,0.515396,0.515396,0.515396,,,,,,,0.613797,0.530298,0.517351,0.515842,0.600558,0.537262,0.515396,0.515396,0.515396,0.515396,0.245987,0.220937,0.217053,0.2166,0.242015,0.223026,0.216466,0.216466,0.115105,0.115105,33.587425,38.875945,39.848884,39.965431,34.327845,38.372091,40,40,40,40,,,,,,,,,,,3096,3096,0.515396,0.515396,0.515396,0.515396,0.515396,0.515396,0.515396,0.515396,0.216466,0.216466,40,40,, +18378,0,0.186956,1,1,0,2,4,,4,2,Territorial,Rd,1673609,0,0.187,0,4.006192,4.5,4.5,0.295193,0.295193,0.295193,0.295193,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.349557,0.29776,0.295193,0.295193,0.349557,0.29776,0.295564,0.295243,0.295193,0.295193,0.295564,0.295243,0.322604,0.301535,0.295193,0.295193,0.322604,0.301535,0.295193,0.295193,0.295193,0.295193,0.295193,0.295193,,,,,,,0.349557,0.29776,0.295564,0.295243,0.322604,0.301535,0.295193,0.295193,0.295193,0.295193,0.138519,0.12298,0.122321,0.122225,0.130433,0.124113,0.12221,0.12221,0.064844,0.064844,32.090143,37.672478,37.95226,37.993528,34.771181,37.200769,38,38,38,38,,,,,,,,,,,3096,3096,0.295193,0.295193,0.295193,0.295193,0.295193,0.295193,0.295193,0.295193,0.12221,0.12221,38,38,, +15455,0,0.601015,1,1,0,2,5,,4,2,Ridge,Rd,1595602,4.954,5.555,0,12.878902,5.8,4.5,1.33559,1.33559,1.33559,1.33559,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.471137,1.374408,1.33559,1.33559,1.471137,1.374408,1.337268,1.337511,1.33559,1.33559,1.337268,1.337511,1.394702,1.460402,1.33559,1.33559,1.394702,1.460402,1.33559,1.33559,1.33559,1.33559,1.33559,1.33559,,,,,,,1.471137,1.374408,1.337268,1.337511,1.394702,1.460402,1.33559,1.33559,1.33559,1.33559,0.549524,0.520505,0.509363,0.509436,0.526593,0.546303,0.50886,0.50886,0.26645,0.26645,24.512291,26.237423,26.96612,26.961224,25.85565,24.692471,27,27,27,27,,,,,,,,,,,2580,2580,1.33559,1.33559,1.33559,1.33559,1.33559,1.33559,1.33559,1.33559,0.50886,0.50886,27,27,, +31540,0,0.510185,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.932528,0.15,4,2.040739,2.040739,2.040739,2.040739,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,,,,,,,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,0.704055,0.704055,0.704055,0.704055,0.704055,0.704055,0.704055,0.704055,0.362231,0.362231,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,2.040739,0.704055,0.704055,15,15,, +19134,0,0.242448,1,1,0,2,5,,4,2,5 Mile,Rd,1708705,0.773,1.016,0,5.195312,5.8,4.5,0.538773,0.538773,0.538773,0.538773,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.740498,0.54367,0.538773,0.538773,0.740498,0.54367,0.538993,0.538938,0.538773,0.538773,0.538993,0.538938,0.550088,0.704083,0.538773,0.538773,0.550088,0.704083,0.538773,0.538773,0.538773,0.538773,0.538773,0.538773,,,,,,,0.740498,0.54367,0.538993,0.538938,0.550088,0.704083,0.538773,0.538773,0.538773,0.538773,0.26579,0.206742,0.205338,0.205322,0.208667,0.254866,0.205273,0.205273,0.107485,0.107485,19.644706,26.75679,26.988996,26.991722,26.444651,20.660724,27,27,27,27,,,,,,,,,,,2580,2580,0.538773,0.538773,0.538773,0.538773,0.538773,0.538773,0.538773,0.538773,0.205273,0.205273,27,27,, +14798,0,0.166346,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.743,5.909,0,3.564563,3.7,5,0.249519,0.249519,0.249519,0.249519,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.447444,0.313031,0.249519,0.249519,0.447444,0.313031,0.285828,0.274883,0.249519,0.249519,0.285828,0.274883,0.389598,0.4673,0.249519,0.249519,0.389598,0.4673,0.249519,0.249519,0.249519,0.249519,0.249519,0.249519,,,,,,,0.447444,0.313031,0.285828,0.274883,0.389598,0.4673,0.249519,0.249519,0.249519,0.249519,0.164175,0.123852,0.115691,0.112407,0.146822,0.170132,0.104798,0.104798,0.055726,0.055726,22.306221,31.884329,34.918856,36.309133,25.61817,21.358366,40,40,40,40,,,,,,,,,,,4162,4162,0.249519,0.249519,0.249519,0.249519,0.249519,0.249519,0.249519,0.249519,0.104798,0.104798,40,40,, +16050,0,0.334166,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,1.82,2.154,0,7.160707,4.5,4.5,0.527631,0.527631,0.527631,0.527631,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.557168,0.536435,0.527631,0.527631,0.557168,0.536435,0.528126,0.528423,0.527631,0.527631,0.528126,0.528423,0.541552,0.563976,0.527631,0.527631,0.541552,0.563976,0.527631,0.527631,0.527631,0.527631,0.527631,0.527631,,,,,,,0.557168,0.536435,0.528126,0.528423,0.541552,0.563976,0.527631,0.527631,0.527631,0.527631,0.2273,0.22108,0.218588,0.218677,0.222616,0.229343,0.218439,0.218439,0.115903,0.115903,35.985535,37.376343,37.964416,37.943027,37.023181,35.55115,38,38,38,38,,,,,,,,,,,3096,3096,0.527631,0.527631,0.527631,0.527631,0.527631,0.527631,0.527631,0.527631,0.218439,0.218439,38,38,, +16257,0,0.430352,1,1,0,2,4,,4,2,Ann Arbor,Trl,1604108,0,0.43,0,9.221834,4.5,4.5,0.679504,0.679504,0.679504,0.679504,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.681166,0.67961,0.679504,0.679504,0.681166,0.67961,0.679506,0.679513,0.679504,0.679504,0.679506,0.679513,0.679567,0.680283,0.679504,0.679504,0.679567,0.680283,0.679504,0.679504,0.679504,0.679504,0.679504,0.679504,,,,,,,0.681166,0.67961,0.679506,0.679513,0.679567,0.680283,0.679504,0.679504,0.679504,0.679504,0.281813,0.281346,0.281315,0.281317,0.281334,0.281548,0.281314,0.281314,0.149264,0.149264,37.907281,37.994062,37.999879,37.999491,37.996439,37.956458,38,38,38,38,,,,,,,,,,,3096,3096,0.679504,0.679504,0.679504,0.679504,0.679504,0.679504,0.679504,0.679504,0.281314,0.281314,38,38,, +17571,0,0.809896,1,1,0,2,5,,4,2,Joy,Rd,1672705,0.822,1.631,0,17.354917,5.8,4.5,1.799769,1.799769,1.799769,1.799769,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.800148,1.799791,1.799769,1.799769,1.800148,1.799791,1.799769,1.799769,1.799769,1.799769,1.799769,1.799769,1.800583,1.800396,1.799769,1.799769,1.800583,1.800396,1.799769,1.799769,1.799769,1.799769,1.799769,1.799769,,,,,,,1.800148,1.799791,1.799769,1.799769,1.800583,1.800396,1.799769,1.799769,1.799769,1.799769,0.685826,0.685719,0.685712,0.685712,0.685956,0.6859,0.685712,0.685712,0.359054,0.359054,26.994314,26.999676,27,27,26.9878,26.990601,27,27,27,27,,,,,,,,,,,2580,2580,1.799769,1.799769,1.799769,1.799769,1.799769,1.799769,1.799769,1.799769,0.685712,0.685712,27,27,, +18842,0,0.458307,1,1,0,2,5,,4,2,Powell,Rd,1673208,1.549,2.007,0,9.820857,5.8,4.5,1.018459,1.018459,1.018459,1.018459,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.039808,1.089145,1.018459,1.018459,2.039808,1.089145,1.345027,1.281406,1.018459,1.018459,1.345027,1.281406,1.449513,1.786437,1.018459,1.018459,1.449513,1.786437,1.018459,1.018459,1.018459,1.018459,1.018459,1.018459,,,,,,,2.039808,1.089145,1.345027,1.281406,1.449513,1.786437,1.018459,1.018459,1.018459,1.018459,0.694438,0.409239,0.486003,0.466917,0.517349,0.618426,0.388033,0.388033,0.203183,0.203183,13.480878,25.247688,20.44449,21.459546,18.970781,15.392875,27,27,27,27,,,,,,,,,,,2580,2580,1.018459,1.018459,1.018459,1.018459,1.018459,1.018459,1.018459,1.018459,0.388033,0.388033,27,27,, +31429,0,0.508027,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.886302,0.15,4,2.03211,2.03211,2.03211,2.03211,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,,,,,,,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,0.701078,0.701078,0.701078,0.701078,0.701078,0.701078,0.701078,0.701078,0.360699,0.360699,14.999998,15,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,2.03211,0.701078,0.701078,15,15,, +31454,0,0.254718,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.458246,0.15,4,1.018872,1.018872,1.018872,1.018872,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.018873,1.018873,1.018872,1.018872,1.018873,1.018873,1.018873,1.018873,1.018872,1.018872,1.018873,1.018873,1.018873,1.018873,1.018872,1.018872,1.018873,1.018873,1.018872,1.018872,1.018872,1.018872,1.018872,1.018872,,,,,,,1.018873,1.018873,1.018873,1.018873,1.018873,1.018873,1.018872,1.018872,1.018872,1.018872,0.351511,0.351511,0.351511,0.351511,0.351511,0.351511,0.351511,0.351511,0.18085,0.18085,14.999999,14.999997,14.999999,14.999999,14.999995,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,1.018872,1.018872,1.018872,1.018872,1.018872,1.018872,1.018872,1.018872,0.351511,0.351511,15,15,, +31420,0,0.584234,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.519299,0.15,4,2.336936,2.336936,2.336936,2.336936,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,,,,,,,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,0.806243,0.806243,0.806243,0.806243,0.806243,0.806243,0.806243,0.806243,0.414806,0.414806,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,2.336936,0.806243,0.806243,15,15,, +16051,0,0.392509,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,1.427,1.82,0,8.410902,4.5,4.5,0.619751,0.619751,0.619751,0.619751,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.834045,0.66022,0.619751,0.619751,0.834045,0.66022,0.621532,0.623347,0.619751,0.619751,0.621532,0.623347,0.670383,0.815368,0.619751,0.619751,0.670383,0.815368,0.619751,0.619751,0.619751,0.619751,0.619751,0.619751,,,,,,,0.834045,0.66022,0.621532,0.623347,0.670383,0.815368,0.619751,0.619751,0.619751,0.619751,0.320865,0.268718,0.257111,0.257656,0.271766,0.315262,0.256577,0.256577,0.136139,0.136139,28.236517,35.670727,37.891103,37.780774,35.129951,28.883307,38,38,38,38,,,,,,,,,,,3096,3096,0.619751,0.619751,0.619751,0.619751,0.619751,0.619751,0.619751,0.619751,0.256577,0.256577,38,38,, +30937,0,0.519962,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.142039,0.15,4,2.079847,2.079847,2.079847,2.079847,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,,,,,,,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,0.717547,0.717547,0.717547,0.717547,0.717547,0.717547,0.717547,0.717547,0.369173,0.369173,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,2.079847,0.717547,0.717547,15,15,, +31535,0,0.102899,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.204983,0.15,4,0.411597,0.411597,0.411597,0.411597,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,,,,,,,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.142001,0.142001,0.142001,0.142001,0.142001,0.142001,0.142001,0.142001,0.073058,0.073058,14.999985,14.999999,14.999995,14.999996,14.999993,14.999988,15,15,15,15,,,,,,,,,,,34400,34400,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.411597,0.142001,0.142001,15,15,, +14908,0,0.50247,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.24,5.743,0,10.767224,3.7,5,0.753706,0.753706,0.753706,0.753706,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,1.126805,0.783276,0.753706,0.753706,1.126805,0.783276,0.785375,0.775142,0.753706,0.753706,0.785375,0.775142,0.858385,1.134165,0.753706,0.753706,0.858385,1.134165,0.753706,0.753706,0.753706,0.753706,0.753706,0.753706,,,,,,,1.126805,0.783276,0.785375,0.775142,0.858385,1.134165,0.753706,0.753706,0.753706,0.753706,0.428486,0.325427,0.326057,0.322987,0.34796,0.430694,0.316556,0.316556,0.168328,0.168328,26.755494,38.489938,38.387037,38.893822,35.12204,26.581872,40,40,40,40,,,,,,,,,,,4162,4162,0.753706,0.753706,0.753706,0.753706,0.753706,0.753706,0.753706,0.753706,0.316556,0.316556,40,40,, +18983,0,0.504149,1,1,0,2,4,,4,2,Joy,Rd,1672705,1.631,2.135,0,10.803195,4.5,4.5,0.796025,0.796025,0.796025,0.796025,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.952999,0.812373,0.796025,0.796025,0.952999,0.812373,0.803234,0.804254,0.796025,0.796025,0.803234,0.804254,0.846022,0.956545,0.796025,0.796025,0.846022,0.956545,0.796025,0.796025,0.796025,0.796025,0.796025,0.796025,,,,,,,0.952999,0.812373,0.803234,0.804254,0.846022,0.956545,0.796025,0.796025,0.796025,0.796025,0.376647,0.334459,0.331717,0.332023,0.344553,0.37771,0.329554,0.329554,0.17486,0.17486,31.740794,37.235308,37.658922,37.611206,35.754344,31.623139,38,38,38,38,,,,,,,,,,,3096,3096,0.796025,0.796025,0.796025,0.796025,0.796025,0.796025,0.796025,0.796025,0.329554,0.329554,38,38,, +33954,0,0.529265,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.341399,0.15,4,2.117061,2.117061,2.117061,2.117061,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,,,,,,,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,0.730386,0.730386,0.730386,0.730386,0.730386,0.730386,0.730386,0.730386,0.375778,0.375778,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,2.117061,0.730386,0.730386,15,15,, +33955,0,0.510549,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.940338,0.15,4,2.042197,2.042197,2.042197,2.042197,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,,,,,,,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,0.704558,0.704558,0.704558,0.704558,0.704558,0.704558,0.704558,0.704558,0.36249,0.36249,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,2.042197,0.704558,0.704558,15,15,, +15147,0,0.221925,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.019,5.24,0,4.755529,3.7,5,0.332887,0.332887,0.332887,0.332887,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.555014,0.355172,0.332887,0.332887,0.555014,0.355172,0.349989,0.351884,0.332887,0.332887,0.349989,0.351884,0.397574,0.509684,0.332887,0.332887,0.397574,0.509684,0.332887,0.332887,0.332887,0.332887,0.332887,0.332887,,,,,,,0.555014,0.355172,0.349989,0.351884,0.397574,0.509684,0.332887,0.332887,0.332887,0.332887,0.206451,0.146498,0.144943,0.145512,0.159219,0.192852,0.139813,0.139813,0.074345,0.074345,23.991242,37.490226,38.04546,37.840523,33.491793,26.124992,40,40,40,40,,,,,,,,,,,4162,4162,0.332887,0.332887,0.332887,0.332887,0.332887,0.332887,0.332887,0.332887,0.139813,0.139813,40,40,, +17635,0,0.220579,1,1,0,2,4,,4,2,Joy,Rd,1672705,2.135,2.356,0,4.726699,4.5,4.5,0.348283,0.348283,0.348283,0.348283,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.387343,0.420167,0.348283,0.348283,0.387343,0.420167,0.357306,0.35425,0.348283,0.348283,0.357306,0.35425,0.435954,0.40798,0.348283,0.348283,0.435954,0.40798,0.348283,0.348283,0.348283,0.348283,0.348283,0.348283,,,,,,,0.387343,0.420167,0.357306,0.35425,0.435954,0.40798,0.348283,0.348283,0.348283,0.348283,0.155907,0.165754,0.146896,0.145979,0.170491,0.162098,0.144189,0.144189,0.076506,0.076506,34.168009,31.49882,37.04044,37.35988,30.358136,32.439685,38,38,38,38,,,,,,,,,,,3096,3096,0.348283,0.348283,0.348283,0.348283,0.348283,0.348283,0.348283,0.348283,0.144189,0.144189,38,38,, +31449,0,0.304281,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.5203,0.15,4,1.217123,1.217123,1.217123,1.217123,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,,,,,,,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,0.419907,0.419907,0.419907,0.419907,0.419907,0.419907,0.419907,0.419907,0.216039,0.216039,15,14.999993,15,15,14.999996,15,15,15,15,15,,,,,,,,,,,34400,34400,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,1.217123,0.419907,0.419907,15,15,, +15090,0,0.172873,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.45,6.622,0,3.704421,3.7,5,0.259309,0.259309,0.259309,0.259309,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.493141,0.337504,0.259309,0.259309,0.493141,0.337504,0.310485,0.297817,0.259309,0.259309,0.310485,0.297817,0.436554,0.50338,0.259309,0.259309,0.436554,0.50338,0.259309,0.259309,0.259309,0.259309,0.259309,0.259309,,,,,,,0.493141,0.337504,0.310485,0.297817,0.436554,0.50338,0.259309,0.259309,0.259309,0.259309,0.179059,0.132368,0.124263,0.120462,0.162083,0.182131,0.10891,0.10891,0.057912,0.057912,21.033298,30.732641,33.407023,34.828053,23.759681,20.605476,40,40,40,40,,,,,,,,,,,3784,3784,0.259309,0.259309,0.259309,0.259309,0.259309,0.259309,0.259309,0.259309,0.10891,0.10891,40,40,, +16048,0,0.795396,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,2.154,2.949,0,17.044196,4.5,4.5,1.255888,1.255888,1.255888,1.255888,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.395763,1.294897,1.255888,1.255888,1.395763,1.294897,1.261163,1.261827,1.255888,1.255888,1.261163,1.261827,1.318094,1.44576,1.255888,1.255888,1.318094,1.44576,1.255888,1.255888,1.255888,1.255888,1.255888,1.255888,,,,,,,1.395763,1.294897,1.261163,1.261827,1.318094,1.44576,1.255888,1.255888,1.255888,1.255888,0.5619,0.53164,0.52152,0.521719,0.538599,0.576899,0.519938,0.519938,0.275877,0.275877,34.191881,36.855258,37.841052,37.821152,36.206633,33.009442,38,38,38,38,,,,,,,,,,,3096,3096,1.255888,1.255888,1.255888,1.255888,1.255888,1.255888,1.255888,1.255888,0.519938,0.519938,38,38,, +16240,0,0.572304,1,1,0,2,4,,4,2,Ann Arbor,Trl,1604108,0.43,1.002,0,12.263661,4.5,4.5,0.903638,0.903638,0.903638,0.903638,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.182179,0.941072,0.903638,0.903638,1.182179,0.941072,0.928719,0.922736,0.903638,0.903638,0.928719,0.922736,1.01444,1.200501,0.903638,0.903638,1.01444,1.200501,0.903638,0.903638,0.903638,0.903638,0.903638,0.903638,,,,,,,1.182179,0.941072,0.928719,0.922736,1.01444,1.200501,0.903638,0.903638,0.903638,0.903638,0.457668,0.385336,0.38163,0.379836,0.407347,0.463165,0.374106,0.374106,0.198499,0.198499,29.046583,36.488457,36.973778,37.213513,33.849463,28.603258,38,38,38,38,,,,,,,,,,,3096,3096,0.903638,0.903638,0.903638,0.903638,0.903638,0.903638,0.903638,0.903638,0.374106,0.374106,38,38,, +31453,0,0.751264,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.09852,0.15,4,3.005057,3.005057,3.005057,3.005057,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,,,,,,,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,1.036745,1.036745,1.036745,1.036745,1.036745,1.036745,1.036745,1.036745,0.533398,0.533398,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,3.005057,1.036745,1.036745,15,15,, +15624,0,0.396426,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.909,6.305,0,8.494835,3.7,5,0.594638,0.594638,0.594638,0.594638,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,1.066319,0.745995,0.594638,0.594638,1.066319,0.745995,0.681166,0.655084,0.594638,0.594638,0.681166,0.655084,0.928464,1.11364,0.594638,0.594638,0.928464,1.11364,0.594638,0.594638,0.594638,0.594638,0.594638,0.594638,,,,,,,1.066319,0.745995,0.681166,0.655084,0.928464,1.11364,0.594638,0.594638,0.594638,0.594638,0.391252,0.295155,0.275706,0.267882,0.349896,0.405449,0.249748,0.249748,0.132803,0.132803,22.306221,31.884329,34.918856,36.309133,25.61817,21.358366,40,40,40,40,,,,,,,,,,,4162,4162,0.594638,0.594638,0.594638,0.594638,0.594638,0.594638,0.594638,0.594638,0.249748,0.249748,40,40,, +15324,0,0.144356,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.305,6.45,0,3.093342,3.7,5,0.216534,0.216534,0.216534,0.216534,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.411793,0.281829,0.216534,0.216534,0.411793,0.281829,0.259268,0.248689,0.216534,0.216534,0.259268,0.248689,0.36454,0.420342,0.216534,0.216534,0.36454,0.420342,0.216534,0.216534,0.216534,0.216534,0.216534,0.216534,,,,,,,0.411793,0.281829,0.259268,0.248689,0.36454,0.420342,0.216534,0.216534,0.216534,0.216534,0.149522,0.110533,0.103764,0.100591,0.135346,0.152087,0.090944,0.090944,0.048359,0.048359,21.033298,30.732641,33.407023,34.828053,23.759681,20.605476,40,40,40,40,,,,,,,,,,,3784,3784,0.216534,0.216534,0.216534,0.216534,0.216534,0.216534,0.216534,0.216534,0.090944,0.090944,40,40,, +14841,0,0.12198,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.622,6.744,0,2.613854,3.7,5,0.18297,0.18297,0.18297,0.18297,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.393769,0.328568,0.18297,0.18297,0.393769,0.328568,0.254528,0.253404,0.18297,0.18297,0.254528,0.253404,0.473971,0.496562,0.18297,0.18297,0.473971,0.496562,0.18297,0.18297,0.18297,0.18297,0.18297,0.18297,,,,,,,0.393769,0.328568,0.254528,0.253404,0.473971,0.496562,0.18297,0.18297,0.18297,0.18297,0.140087,0.120527,0.098315,0.097977,0.164148,0.170925,0.076847,0.076847,0.040863,0.040863,18.586507,22.274801,28.754353,28.881951,15.441429,14.738939,40,40,40,40,,,,,,,,,,,3784,3784,0.18297,0.18297,0.18297,0.18297,0.18297,0.18297,0.18297,0.18297,0.076847,0.076847,40,40,, +31452,0,0.250888,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.376176,0.15,4,1.003553,1.003553,1.003553,1.003553,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,,,,,,,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,0.346226,0.346226,0.346226,0.346226,0.346226,0.346226,0.346226,0.346226,0.178131,0.178131,14.999997,14.999998,14.999999,14.999999,14.999992,14.999993,15,15,15,15,,,,,,,,,,,34400,34400,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,1.003553,0.346226,0.346226,15,15,, +14868,0,0.069719,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.099,8.169,0,1.493969,3.7,5,0.104578,0.104578,0.104578,0.104578,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.22004,0.173843,0.104578,0.104578,0.22004,0.173843,0.128937,0.123249,0.104578,0.104578,0.128937,0.123249,0.190793,0.224026,0.104578,0.104578,0.190793,0.224026,0.104578,0.104578,0.104578,0.104578,0.104578,0.104578,,,,,,,0.22004,0.173843,0.128937,0.123249,0.190793,0.224026,0.104578,0.104578,0.104578,0.104578,0.078561,0.064702,0.051231,0.049524,0.069787,0.079757,0.043923,0.043923,0.023356,0.023356,19.010712,24.062639,32.443014,33.940434,21.924886,18.672456,40,40,40,40,,,,,,,,,,,7946,7946,0.104578,0.104578,0.104578,0.104578,0.104578,0.104578,0.104578,0.104578,0.043923,0.043923,40,40,, +16060,-1,0.360729,0,3,0,1,2,,4,2,W M 14,,1606204,2.4,2.76,0,,0.8,7.5,,0.309196,,0.309196,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.309953,,0.309196,,0.309953,,0.309228,,0.309196,,0.309228,,0.310351,,0.309196,,0.310351,,0.309196,,0.309196,,0.309196,,,,,,,,0.309953,,0.309228,,0.310351,,0.309196,,0.309196,,0.157917,,0.1577,,0.158036,,0.15769,,0.08606,,69.829087,,69.992679,,69.739524,,70,,70,,,,,,,,,,,,22704,,0.309196,,0.309196,,0.309196,,0.309196,,0.15769,,70,, +16626,1,0.229789,3,0,0,1,2,,4,2,E M 14,,1606205,2.327,2.557,0,,0.8,7.5,0.196962,,0.196962,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.201107,,0.196962,,0.201107,,0.19701,,0.196962,,0.19701,,0.19808,,0.196962,,0.19808,,0.196962,,0.196962,,0.196962,,,,,,,,0.201107,,0.19701,,0.19808,,0.196962,,0.196962,,0.101694,,0.100465,,0.100786,,0.100451,,0.054821,,68.557376,,69.982959,,69.605044,,70,,70,,,,,,,,,,,,22704,,0.196962,,0.196962,,0.196962,,0.196962,,0.100451,,70,,, +18567,0,0.527292,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,2.019,2.546,0,11.299121,4.5,4.5,0.832567,0.832567,0.832567,0.832567,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.987866,0.834568,0.832567,0.832567,0.987866,0.834568,0.856772,0.854061,0.832567,0.832567,0.856772,0.854061,0.853949,0.965458,0.832567,0.832567,0.853949,0.965458,0.832567,0.832567,0.832567,0.832567,0.832567,0.832567,,,,,,,0.987866,0.834568,0.856772,0.854061,0.853949,0.965458,0.832567,0.832567,0.832567,0.832567,0.391272,0.345283,0.351944,0.351131,0.351097,0.38455,0.344683,0.344683,0.182887,0.182887,32.026154,37.908866,36.926459,37.043661,37.048501,32.769458,38,38,38,38,,,,,,,,,,,3096,3096,0.832567,0.832567,0.832567,0.832567,0.832567,0.832567,0.832567,0.832567,0.344683,0.344683,38,38,, +18791,0,0.294772,1,1,0,2,4,,4,2,Territorial,Rd,1673609,1.99,2.284,0,6.31654,4.5,4.5,0.465429,0.465429,0.465429,0.465429,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.55567,0.556854,0.465429,0.465429,0.55567,0.556854,0.497066,0.483987,0.465429,0.465429,0.497066,0.483987,0.638677,0.637776,0.465429,0.465429,0.638677,0.637776,0.465429,0.465429,0.465429,0.465429,0.465429,0.465429,,,,,,,0.55567,0.556854,0.497066,0.483987,0.638677,0.637776,0.465429,0.465429,0.465429,0.465429,0.21976,0.220115,0.202179,0.198255,0.244662,0.244392,0.192688,0.192688,0.102239,0.102239,31.828803,31.761129,35.581421,36.542925,27.692096,27.731245,38,38,38,38,,,,,,,,,,,3096,3096,0.465429,0.465429,0.465429,0.465429,0.465429,0.465429,0.465429,0.465429,0.192688,0.192688,38,38,, +19299,1,0.415879,1,0,0,1,2,ROF,4,2,W M 14/Beck,RAMP,1778110,0,0.416,0,,2.24,5,0.623819,,0.623819,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.796086,,0.623819,,0.796086,,0.673512,,0.623819,,0.673512,,1.606933,,0.623819,,1.606933,,0.623819,,0.623819,,0.623819,,,,,,,,0.796086,,0.673512,,1.606933,,0.623819,,0.623819,,0.313684,,0.276912,,0.556938,,0.262004,,0.13932,,31.344287,,37.04873,,15.528184,,40,,40,,,,,,,,,,,,5160,,0.623819,,0.623819,,0.623819,,0.623819,,0.262004,,40,,, +19300,1,0.266561,1,0,0,1,2,RON,4,2,N Beck/W M 14,RAMP,1778109,0,0.267,0,,1.09,4,0.355414,,0.355414,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.355414,,0.355414,,0.355414,,0.355414,,0.355414,,0.355414,,0.355414,,0.355414,,0.355414,,0.355414,,0.355414,,0.355414,,,,,,,,0.355414,,0.355414,,0.355414,,0.355414,,0.355414,,0.154605,,0.154605,,0.154605,,0.154605,,0.082634,,44.999994,,44.999998,,44.999989,,45,,45,,,,,,,,,,,,5160,,0.355414,,0.355414,,0.355414,,0.355414,,0.154605,,45,,, +21664,1,0.304383,1,0,0,1,2,RON,4,2,N Beck/E M 14,RAMP,4700034,0,0.304,0,,1.09,4,0.405843,,0.405843,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.486317,,0.405843,,0.486317,,0.409369,,0.405843,,0.409369,,0.424343,,0.405843,,0.424343,,0.405843,,0.405843,,0.405843,,,,,,,,0.486317,,0.409369,,0.424343,,0.405843,,0.405843,,0.200684,,0.1776,,0.182092,,0.176542,,0.094359,,37.553598,,44.612452,,43.038149,,45,,45,,,,,,,,,,,,5160,,0.405843,,0.405843,,0.405843,,0.405843,,0.176542,,45,,, +31434,0,0.92208,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.75885,0.15,4,3.688319,3.688319,3.688319,3.688319,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,,,,,,,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,1.27247,1.27247,1.27247,1.27247,1.27247,1.27247,1.27247,1.27247,0.654677,0.654677,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,3.688319,1.27247,1.27247,15,15,, +31538,0,0.505519,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.832542,0.15,4,2.022074,2.022074,2.022074,2.022074,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.022075,2.022085,2.022074,2.022074,2.022075,2.022085,2.022077,2.022078,2.022074,2.022074,2.022077,2.022078,2.022087,2.022076,2.022074,2.022074,2.022087,2.022076,2.022074,2.022074,2.022074,2.022074,2.022074,2.022074,,,,,,,2.022075,2.022085,2.022077,2.022078,2.022087,2.022076,2.022074,2.022074,2.022074,2.022074,0.697616,0.697619,0.697616,0.697617,0.697619,0.697616,0.697616,0.697616,0.358918,0.358918,14.999999,14.999925,14.999981,14.999974,14.99991,14.999991,15,15,15,15,,,,,,,,,,,34400,34400,2.022074,2.022074,2.022074,2.022074,2.022074,2.022074,2.022074,2.022074,0.697616,0.697616,15,15,, +31541,0,0.585618,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.54896,0.15,4,2.342473,2.342473,2.342473,2.342473,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,,,,,,,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,0.808153,0.808153,0.808153,0.808153,0.808153,0.808153,0.808153,0.808153,0.415789,0.415789,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,2.342473,0.808153,0.808153,15,15,, +15619,0,0.465705,1,1,0,2,3,,4,2,Beck,Rd,1595603,7.148,7.613,0,9.979397,3.7,5,0.698558,0.698558,0.698558,0.698558,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.356061,0.777191,0.698558,0.698558,1.356061,0.777191,0.809554,0.79125,0.698558,0.698558,0.809554,0.79125,1.061781,1.273281,0.698558,0.698558,1.061781,1.273281,0.698558,0.698558,0.698558,0.698558,0.698558,0.698558,,,,,,,1.356061,0.777191,0.809554,0.79125,1.061781,1.273281,0.698558,0.698558,0.698558,0.698558,0.490645,0.316984,0.326693,0.321202,0.402361,0.465811,0.293394,0.293394,0.156011,0.156011,20.605504,35.952946,34.515687,35.314135,26.316454,21.945126,40,40,40,40,,,,,,,,,,,3784,3784,0.698558,0.698558,0.698558,0.698558,0.698558,0.698558,0.698558,0.698558,0.293394,0.293394,40,40,, +18374,0,0.457114,1,1,0,2,4,,4,2,Territorial,Rd,1673609,1.533,1.99,0,9.795303,4.5,4.5,0.721759,0.721759,0.721759,0.721759,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.610545,0.730043,0.721759,0.721759,1.610545,0.730043,0.743337,0.726679,0.721759,0.721759,0.743337,0.726679,0.8937,1.11632,0.721759,0.721759,0.8937,1.11632,0.721759,0.721759,0.721759,0.721759,0.721759,0.721759,,,,,,,1.610545,0.730043,0.743337,0.726679,0.8937,1.11632,0.721759,0.721759,0.721759,0.721759,0.565444,0.301293,0.305282,0.300284,0.350391,0.417176,0.298808,0.298808,0.158546,0.158546,17.029539,37.56883,36.89692,37.742718,30.689092,24.56899,38,38,38,38,,,,,,,,,,,3096,3096,0.721759,0.721759,0.721759,0.721759,0.721759,0.721759,0.721759,0.721759,0.298808,0.298808,38,38,, +14839,0,0.072065,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.805,7.877,0,1.544252,3.7,5,0.108098,0.108098,0.108098,0.108098,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.118096,0.109355,0.108098,0.108098,0.118096,0.109355,0.110676,0.109932,0.108098,0.108098,0.110676,0.109932,0.114294,0.130009,0.108098,0.108098,0.114294,0.130009,0.108098,0.108098,0.108098,0.108098,0.108098,0.108098,,,,,,,0.118096,0.109355,0.110676,0.109932,0.114294,0.130009,0.108098,0.108098,0.108098,0.108098,0.0484,0.045778,0.046174,0.045951,0.04726,0.051974,0.045401,0.045401,0.024142,0.024142,36.61355,39.540159,39.068245,39.332606,37.831362,33.258529,40,40,40,40,,,,,,,,,,,7946,7946,0.108098,0.108098,0.108098,0.108098,0.108098,0.108098,0.108098,0.108098,0.045401,0.045401,40,40,, +16927,1,0.329913,3,0,0,1,2,,4,2,E M 14,,1606205,1.998,2.327,0,,0.8,7.5,0.282783,,0.282783,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.284095,,0.282783,,0.284095,,0.282798,,0.282783,,0.282798,,0.283091,,0.282783,,0.283091,,0.282783,,0.282783,,0.282783,,,,,,,,0.284095,,0.282798,,0.283091,,0.282783,,0.282783,,0.144613,,0.144224,,0.144312,,0.144219,,0.078708,,69.676776,,69.996298,,69.923687,,70,,70,,,,,,,,,,,,22704,,0.282783,,0.282783,,0.282783,,0.282783,,0.144219,,70,,, +16935,-1,0.239965,0,3,0,1,2,,4,2,W M 14,,1606204,2.16,2.4,0,,0.8,7.5,,0.205684,,0.205684,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.206224,,0.205684,,0.206224,,0.205707,,0.205684,,0.205707,,0.206513,,0.205684,,0.206513,,0.205684,,0.205684,,0.205684,,,,,,,,0.206224,,0.205707,,0.206513,,0.205684,,0.205684,,0.105061,,0.104906,,0.105147,,0.104899,,0.057249,,69.81686,,69.992097,,69.719138,,70,,70,,,,,,,,,,,,22704,,0.205684,,0.205684,,0.205684,,0.205684,,0.104899,,70,, +19294,1,0.273631,1,0,0,1,2,RON,4,2,S Beck/E M 14,RAMP,1778204,0,0.274,0,,1.09,4,0.364841,,0.364841,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.388639,,0.364841,,0.388639,,0.367127,,0.364841,,0.367127,,0.380978,,0.364841,,0.380978,,0.364841,,0.364841,,0.364841,,,,,,,,0.388639,,0.367127,,0.380978,,0.364841,,0.364841,,0.165845,,0.159392,,0.163547,,0.158706,,0.084825,,42.244426,,44.719783,,43.093898,,45,,45,,,,,,,,,,,,5160,,0.364841,,0.364841,,0.364841,,0.364841,,0.158706,,45,,, +19295,1,0.395726,1,0,0,1,2,ROF,4,2,E M 14/Beck,RAMP,1778203,0,0.396,0,,2.24,5,0.593589,,0.593589,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.61066,,0.593589,,0.61066,,0.59647,,0.593589,,0.59647,,0.602962,,0.593589,,0.602962,,0.593589,,0.593589,,0.593589,,,,,,,,0.61066,,0.59647,,0.602962,,0.593589,,0.593589,,0.254429,,0.250172,,0.252119,,0.249307,,0.132568,,38.881782,,39.806801,,39.378185,,40,,40,,,,,,,,,,,,5160,,0.593589,,0.593589,,0.593589,,0.593589,,0.249307,,40,,, +21665,1,0.300492,1,0,0,1,2,RON,4,2,S Beck/W M 14,RAMP,4700035,0,0.3,0,,1.09,4,0.400656,,0.400656,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.403227,,0.400656,,0.403227,,0.401592,,0.400656,,0.401592,,0.406916,,0.400656,,0.406916,,0.400656,,0.400656,,0.400656,,,,,,,,0.403227,,0.401592,,0.406916,,0.400656,,0.400656,,0.175057,,0.174566,,0.176163,,0.174286,,0.093153,,44.713164,,44.895205,,44.307764,,45,,45,,,,,,,,,,,,5160,,0.400656,,0.400656,,0.400656,,0.400656,,0.174286,,45,,, +15321,0,0.139343,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.613,7.752,0,2.985914,3.7,5,0.209014,0.209014,0.209014,0.209014,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.328447,0.214644,0.209014,0.209014,0.328447,0.214644,0.22116,0.217767,0.209014,0.209014,0.22116,0.217767,0.257129,0.296088,0.209014,0.209014,0.257129,0.296088,0.209014,0.209014,0.209014,0.209014,0.209014,0.209014,,,,,,,0.328447,0.214644,0.22116,0.217767,0.257129,0.296088,0.209014,0.209014,0.209014,0.209014,0.123616,0.089475,0.09143,0.090412,0.10222,0.113908,0.087786,0.087786,0.04668,0.04668,25.454814,38.950743,37.803265,38.392185,32.515032,28.236724,40,40,40,40,,,,,,,,,,,7946,7946,0.209014,0.209014,0.209014,0.209014,0.209014,0.209014,0.209014,0.209014,0.087786,0.087786,40,40,, +15087,0,0.052669,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.752,7.805,0,1.128618,3.7,5,0.079003,0.079003,0.079003,0.079003,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.07938,0.081131,0.079003,0.079003,0.07938,0.081131,0.079244,0.082312,0.079003,0.079003,0.079244,0.082312,0.079508,0.111916,0.079003,0.079003,0.079508,0.111916,0.079003,0.079003,0.079003,0.079003,0.079003,0.079003,,,,,,,0.07938,0.081131,0.079244,0.082312,0.079508,0.111916,0.079003,0.079003,0.079003,0.079003,0.033294,0.03382,0.033254,0.034174,0.033333,0.043055,0.033181,0.033181,0.017644,0.017644,39.810386,38.950743,39.87828,38.392185,39.746101,28.236724,40,40,40,40,,,,,,,,,,,7946,7946,0.079003,0.079003,0.079003,0.079003,0.079003,0.079003,0.079003,0.079003,0.033181,0.033181,40,40,, +15639,0,0.138086,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.877,8.015,0,2.958983,3.7,5,0.207129,0.207129,0.207129,0.207129,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.226287,0.287504,0.207129,0.207129,0.226287,0.287504,0.212069,0.236108,0.207129,0.207129,0.212069,0.236108,0.219002,0.54889,0.207129,0.207129,0.219002,0.54889,0.207129,0.207129,0.207129,0.207129,0.207129,0.207129,,,,,,,0.226287,0.287504,0.212069,0.236108,0.219002,0.54889,0.207129,0.207129,0.207129,0.207129,0.092741,0.111107,0.088476,0.095688,0.090556,0.189522,0.086994,0.086994,0.046259,0.046259,36.61355,28.817514,39.068245,35.090455,37.831362,15.094375,40,40,40,40,,,,,,,,,,,7946,7946,0.207129,0.207129,0.207129,0.207129,0.207129,0.207129,0.207129,0.207129,0.086994,0.086994,40,40,, +15107,0,0.020294,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.079,8.099,0,0.434874,3.7,5,0.030441,0.030441,0.030441,0.030441,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.064051,0.035109,0.030441,0.030441,0.064051,0.035109,0.037532,0.031679,0.030441,0.030441,0.037532,0.031679,0.055537,0.036974,0.030441,0.030441,0.055537,0.036974,0.030441,0.030441,0.030441,0.030441,0.030441,0.030441,,,,,,,0.064051,0.035109,0.037532,0.031679,0.055537,0.036974,0.030441,0.030441,0.030441,0.030441,0.022868,0.014186,0.014913,0.013157,0.020314,0.014745,0.012785,0.012785,0.006799,0.006799,19.010712,34.682089,32.443014,38.436959,21.924886,32.932752,40,40,40,40,,,,,,,,,,,7946,7946,0.030441,0.030441,0.030441,0.030441,0.030441,0.030441,0.030441,0.030441,0.012785,0.012785,40,40,, +15341,0,0.063944,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.015,8.079,0,1.370234,3.7,5,0.095916,0.095916,0.095916,0.095916,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.103708,0.133136,0.095916,0.095916,0.103708,0.133136,0.097938,0.109336,0.095916,0.095916,0.097938,0.109336,0.100575,0.254178,0.095916,0.095916,0.100575,0.254178,0.095916,0.095916,0.095916,0.095916,0.095916,0.095916,,,,,,,0.103708,0.133136,0.097938,0.109336,0.100575,0.254178,0.095916,0.095916,0.095916,0.095916,0.042622,0.051451,0.040891,0.044311,0.041683,0.087763,0.040285,0.040285,0.021421,0.021421,36.994722,28.817514,39.174239,35.090455,38.147095,15.094375,40,40,40,40,,,,,,,,,,,7946,7946,0.095916,0.095916,0.095916,0.095916,0.095916,0.095916,0.095916,0.095916,0.040285,0.040285,40,40,, +15697,0,0.584757,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.169,8.754,0,12.530507,3.7,5,0.877135,0.877135,0.877135,0.877135,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.044111,1.38132,0.877135,0.877135,1.044111,1.38132,0.937447,0.929632,0.877135,0.877135,0.937447,0.929632,1.343293,1.084172,0.877135,0.877135,1.343293,1.084172,0.877135,0.877135,0.877135,0.877135,0.877135,0.877135,,,,,,,1.044111,1.38132,0.937447,0.929632,1.343293,1.084172,0.877135,0.877135,0.877135,0.877135,0.41849,0.519652,0.38649,0.384146,0.508244,0.430508,0.368397,0.368397,0.195894,0.195894,33.603147,25.399922,37.426568,37.7412,26.118968,32.361477,40,40,40,40,,,,,,,,,,,7946,7946,0.877135,0.877135,0.877135,0.877135,0.877135,0.877135,0.877135,0.877135,0.368397,0.368397,40,40,, +18335,0,0.246972,1,1,0,2,4,,4,2,Territorial,Rd,1673609,2.284,2.531,0,5.292253,4.5,4.5,0.389955,0.389955,0.389955,0.389955,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.465563,0.466555,0.389955,0.389955,0.465563,0.466555,0.416462,0.405504,0.389955,0.389955,0.416462,0.405504,0.53511,0.534008,0.389955,0.389955,0.53511,0.534008,0.389955,0.389955,0.389955,0.389955,0.389955,0.389955,,,,,,,0.465563,0.466555,0.416462,0.405504,0.53511,0.534008,0.389955,0.389955,0.389955,0.389955,0.184124,0.184421,0.169394,0.166106,0.204988,0.204657,0.161442,0.161442,0.08566,0.08566,31.828803,31.761129,35.581421,36.542925,27.692096,27.749227,38,38,38,38,,,,,,,,,,,3096,3096,0.389955,0.389955,0.389955,0.389955,0.389955,0.389955,0.389955,0.389955,0.161442,0.161442,38,38,, +31461,0,0.381597,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.177087,0.15,4,1.52639,1.52639,1.52639,1.52639,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,,,,,,,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,0.526604,0.526604,0.526604,0.526604,0.526604,0.526604,0.526604,0.526604,0.270934,0.270934,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,1.52639,0.526604,0.526604,15,15,, +31467,0,0.226359,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.850543,0.15,4,0.905435,0.905435,0.905435,0.905435,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.905435,0.905437,0.905435,0.905435,0.905435,0.905437,0.905436,0.905436,0.905435,0.905435,0.905436,0.905436,0.905436,0.905435,0.905435,0.905435,0.905436,0.905435,0.905435,0.905435,0.905435,0.905435,0.905435,0.905435,,,,,,,0.905435,0.905437,0.905436,0.905436,0.905436,0.905435,0.905435,0.905435,0.905435,0.905435,0.312375,0.312376,0.312375,0.312375,0.312375,0.312375,0.312375,0.312375,0.160715,0.160715,15,14.999961,14.999979,14.999977,14.999974,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,0.905435,0.905435,0.905435,0.905435,0.905435,0.905435,0.905435,0.905435,0.312375,0.312375,15,15,, +18240,0,0.172021,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,2.546,2.718,0,3.686165,4.5,4.5,0.271612,0.271612,0.271612,0.271612,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.543046,0.272265,0.271612,0.271612,0.543046,0.272265,0.279509,0.278749,0.271612,0.271612,0.279509,0.278749,0.300634,0.513494,0.271612,0.271612,0.300634,0.513494,0.271612,0.271612,0.271612,0.271612,0.271612,0.271612,,,,,,,0.543046,0.272265,0.279509,0.278749,0.300634,0.513494,0.271612,0.271612,0.271612,0.271612,0.193877,0.112643,0.114816,0.114589,0.121154,0.185012,0.112447,0.112447,0.059664,0.059664,19.006249,37.908866,36.926459,37.027031,34.331641,20.100082,38,38,38,38,,,,,,,,,,,3096,3096,0.271612,0.271612,0.271612,0.271612,0.271612,0.271612,0.271612,0.271612,0.112447,0.112447,38,38,, +393,0,1.175939,1,1,0,2,5,GRV,5,3,9 Mile,Rd,633603,7.218,8.394,0,25.198692,5.55,5,3.527817,3.527817,3.527817,3.527817,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.527817,3.561472,3.527817,3.527817,3.527817,3.561472,3.527817,3.527817,3.527817,3.527817,3.527817,3.527817,3.528363,3.527817,3.527817,3.527817,3.528363,3.527817,3.527817,3.527817,3.527817,3.527817,3.527817,3.527817,,,,,,,3.527817,3.561472,3.527817,3.527817,3.528363,3.527817,3.527817,3.527817,3.527817,3.527817,1.270014,1.280111,1.270014,1.270014,1.270178,1.270014,1.270014,1.270014,0.658526,0.658526,20,19.811002,20,20,19.996902,20,20,20,20,20,,,,,,,,,,,2236,2236,3.527817,3.527817,3.527817,3.527817,3.527817,3.527817,3.527817,3.527817,1.270014,1.270014,20,20,, +2490,0,0.342939,1,1,0,2,3,,4,3,10 Mile,Rd,656510,7.045,7.388,0,7.3487,3.7,5,0.514409,0.514409,0.514409,0.514409,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.852332,0.535931,0.514409,0.514409,0.852332,0.535931,0.531555,0.524208,0.514409,0.514409,0.531555,0.524208,0.576965,0.700866,0.514409,0.514409,0.576965,0.700866,0.514409,0.514409,0.514409,0.514409,0.514409,0.514409,,,,,,,0.852332,0.535931,0.531555,0.524208,0.576965,0.700866,0.514409,0.514409,0.514409,0.514409,0.317429,0.222508,0.221196,0.218992,0.234818,0.271989,0.216052,0.216052,0.114885,0.114885,24.141239,38.393676,38.709761,39.252242,35.663118,29.358489,40,40,40,40,,,,,,,,,,,3784,3784,0.514409,0.514409,0.514409,0.514409,0.514409,0.514409,0.514409,0.514409,0.216052,0.216052,40,40,, +15139,0,0.918987,1,1,0,2,3,,4,2,Beck,Rd,1595603,10.764,11.683,0,19.692577,3.7,5,1.37848,1.37848,1.37848,1.37848,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,2.59051,2.335009,1.37848,1.37848,2.59051,2.335009,1.805299,1.775926,1.37848,1.37848,1.805299,1.775926,2.70444,2.734438,1.37848,1.37848,2.70444,2.734438,1.37848,1.37848,1.37848,1.37848,1.37848,1.37848,,,,,,,2.59051,2.335009,1.805299,1.775926,2.70444,2.734438,1.37848,1.37848,1.37848,1.37848,0.942571,0.86592,0.707007,0.698195,0.97675,0.985749,0.578962,0.578962,0.307861,0.307861,21.285077,23.614138,30.542974,31.048148,20.388402,20.164736,40,40,40,40,,,,,,,,,,,3784,3784,1.37848,1.37848,1.37848,1.37848,1.37848,1.37848,1.37848,1.37848,0.578962,0.578962,40,40,, +17473,0,1.006903,1,1,0,2,4,,4,3,8 Mile,Rd,1680705,1.01,2.016,0,21.576499,4.5,4.5,1.589847,1.589847,1.589847,1.589847,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.294738,1.891241,1.589847,1.589847,3.294738,1.891241,1.766175,1.711552,1.589847,1.589847,1.766175,1.711552,2.324893,2.76608,1.589847,1.589847,2.324893,2.76608,1.589847,1.589847,1.589847,1.589847,1.589847,1.589847,,,,,,,3.294738,1.891241,1.766175,1.711552,2.324893,2.76608,1.589847,1.589847,1.589847,1.589847,1.169664,0.748615,0.711095,0.694708,0.878711,1.011067,0.658197,0.658197,0.349236,0.349236,18.336569,31.944207,34.206234,35.297902,25.985795,21.841085,38,38,38,38,,,,,,,,,,,3096,3096,1.589847,1.589847,1.589847,1.589847,1.589847,1.589847,1.589847,1.589847,0.658197,0.658197,38,38,, +17616,0,1.004465,1,1,0,2,5,,4,2,6 Mile,Rd,1680701,1.014,2.018,0,21.524257,5.8,4.5,2.232145,2.232145,2.232145,2.232145,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.573491,2.232418,2.232145,2.232145,2.573491,2.232418,2.232145,2.232145,2.232145,2.232145,2.232145,2.232145,2.235624,2.337651,2.232145,2.232145,2.235624,2.337651,2.232145,2.232145,2.232145,2.232145,2.232145,2.232145,,,,,,,2.573491,2.232418,2.232145,2.232145,2.235624,2.337651,2.232145,2.232145,2.232145,2.232145,0.952851,0.850529,0.850447,0.850447,0.851491,0.882099,0.850447,0.850447,0.445313,0.445313,23.418744,26.996696,27,27,26.957985,25.781399,27,27,27,27,,,,,,,,,,,2580,2580,2.232145,2.232145,2.232145,2.232145,2.232145,2.232145,2.232145,2.232145,0.850447,0.850447,27,27,, +18266,0,1.192775,1,1,0,2,5,,4,2,7 Mile,Rd,1680703,0.361,1.554,0,25.559462,5.8,4.5,2.650611,2.650611,2.650611,2.650611,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.721993,2.650612,2.650611,2.650611,2.721993,2.650612,2.650613,2.650612,2.650611,2.650611,2.650613,2.650612,2.650617,2.656579,2.650611,2.650611,2.650617,2.656579,2.650611,2.650611,2.650611,2.650611,2.650611,2.650611,,,,,,,2.721993,2.650612,2.650613,2.650612,2.650617,2.656579,2.650611,2.650611,2.650611,2.650611,1.031297,1.009883,1.009883,1.009883,1.009885,1.011673,1.009883,1.009883,0.528797,0.528797,26.291951,26.999987,26.99998,26.999984,26.999935,26.939343,27,27,27,27,,,,,,,,,,,2580,2580,2.650611,2.650611,2.650611,2.650611,2.650611,2.650611,2.650611,2.650611,1.009883,1.009883,27,27,, +21744,0,0.938249,1,1,0,2,5,GRV,4,5,Napier,Rd,4603890,2.77,3.708,0,20.105329,6.55,4.5,3.752995,3.752995,3.752995,3.752995,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.753057,3.756639,3.752995,3.752995,3.753057,3.756639,3.752995,3.752995,3.752995,3.752995,3.752995,3.752995,3.754665,3.753116,3.752995,3.752995,3.754665,3.753116,3.752995,3.752995,3.752995,3.752995,3.752995,3.752995,,,,,,,3.753057,3.756639,3.752995,3.752995,3.754665,3.753116,3.752995,3.752995,3.752995,3.752995,1.294802,1.295876,1.294783,1.294783,1.295284,1.29482,1.294783,1.294783,0.666157,0.666157,14.999753,14.985449,15,15,14.993328,14.999516,15,15,15,15,,,,,,,,,,,2064,2064,3.752995,3.752995,3.752995,3.752995,3.752995,3.752995,3.752995,3.752995,1.294783,1.294783,15,15,, +25863,0,1.002569,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.483626,0.15,4,4.010277,4.010277,4.010277,4.010277,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,,,,,,,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,1.383545,1.383545,1.383545,1.383545,1.383545,1.383545,1.383545,1.383545,0.711824,0.711824,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,4.010277,1.383545,1.383545,15,15,, +26848,0,1.09291,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.419496,0.15,4,4.371639,4.371639,4.371639,4.371639,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,,,,,,,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,1.508216,1.508216,1.508216,1.508216,1.508216,1.508216,1.508216,1.508216,0.775966,0.775966,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,4.371639,1.508216,1.508216,15,15,, +26849,0,0.770549,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.511767,0.15,4,3.082196,3.082196,3.082196,3.082196,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,,,,,,,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,1.063358,1.063358,1.063358,1.063358,1.063358,1.063358,1.063358,1.063358,0.54709,0.54709,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,3.082196,1.063358,1.063358,15,15,, +31542,0,1.217898,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,26.097825,0.15,4,4.871594,4.871594,4.871594,4.871594,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,,,,,,,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,1.6807,1.6807,1.6807,1.6807,1.6807,1.6807,1.6807,1.6807,0.864708,0.864708,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,4.871594,1.6807,1.6807,15,15,, +31547,0,0.972996,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.849908,0.15,4,3.891983,3.891983,3.891983,3.891983,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,,,,,,,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,1.342734,1.342734,1.342734,1.342734,1.342734,1.342734,1.342734,1.342734,0.690827,0.690827,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,3.891983,1.342734,1.342734,15,15,, +33944,0,0.587905,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.597963,0.15,4,2.35162,2.35162,2.35162,2.35162,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,,,,,,,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,0.811309,0.811309,0.811309,0.811309,0.811309,0.811309,0.811309,0.811309,0.417413,0.417413,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,2.35162,0.811309,0.811309,15,15,, +17709,0,0.613589,1,1,0,2,5,GRV,4,2,6 Mile,Rd,1680701,0,0.613,0,13.148344,6.55,4.5,2.454358,2.454358,2.454358,2.454358,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.517611,2.454362,2.454358,2.454358,2.517611,2.454362,2.454358,2.454358,2.454358,2.454358,2.454358,2.454358,2.45438,2.461571,2.454358,2.454358,2.45438,2.461571,2.454358,2.454358,2.454358,2.454358,2.454358,2.454358,,,,,,,2.517611,2.454362,2.454358,2.454358,2.45438,2.461571,2.454358,2.454358,2.454358,2.454358,0.865729,0.846755,0.846753,0.846753,0.84676,0.848917,0.846753,0.846753,0.435648,0.435648,14.623134,14.999972,15,15,14.999866,14.956045,15,15,15,15,,,,,,,,,,,2064,2064,2.454358,2.454358,2.454358,2.454358,2.454358,2.454358,2.454358,2.454358,0.846753,0.846753,15,15,, +22023,0,1.001947,1,1,0,2,5,GRV,4,5,Napier,Rd,4603890,1.769,2.77,0,21.470296,6.55,4.5,4.007789,4.007789,4.007789,4.007789,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.007855,4.007882,4.007789,4.007789,4.007855,4.007882,4.007789,4.007789,4.007789,4.007789,4.007789,4.007789,4.008058,4.007918,4.007789,4.007789,4.008058,4.007918,4.007789,4.007789,4.007789,4.007789,4.007789,4.007789,,,,,,,4.007855,4.007882,4.007789,4.007789,4.008058,4.007918,4.007789,4.007789,4.007789,4.007789,1.382707,1.382715,1.382687,1.382687,1.382768,1.382726,1.382687,1.382687,0.711382,0.711382,14.999753,14.999652,15,15,14.998992,14.999516,15,15,15,15,,,,,,,,,,,2064,2064,4.007789,4.007789,4.007789,4.007789,4.007789,4.007789,4.007789,4.007789,1.382687,1.382687,15,15,, +31544,0,0.645455,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.83117,0.15,4,2.581818,2.581818,2.581818,2.581818,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,,,,,,,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,0.890727,0.890727,0.890727,0.890727,0.890727,0.890727,0.890727,0.890727,0.458273,0.458273,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,2.581818,0.890727,0.890727,15,15,, +31545,0,0.985662,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.121333,0.15,4,3.942649,3.942649,3.942649,3.942649,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,,,,,,,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,1.360214,1.360214,1.360214,1.360214,1.360214,1.360214,1.360214,1.360214,0.69982,0.69982,14.999999,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,3.942649,1.360214,1.360214,15,15,, +18387,0,0.361448,1,1,0,2,5,,4,2,7 Mile,Rd,1680703,0,0.361,0,7.74532,5.8,4.5,0.803218,0.803218,0.803218,0.803218,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.830406,0.803219,0.803218,0.803218,0.830406,0.803219,0.803219,0.803219,0.803218,0.803218,0.803219,0.803219,0.803223,0.805386,0.803218,0.803218,0.803223,0.805386,0.803218,0.803218,0.803218,0.803218,0.803218,0.803218,,,,,,,0.830406,0.803219,0.803219,0.803219,0.803223,0.805386,0.803218,0.803218,0.803218,0.803218,0.314183,0.306026,0.306026,0.306026,0.306028,0.306676,0.306026,0.306026,0.160242,0.160242,26.116015,26.99997,26.99997,26.999976,26.999846,26.927345,27,27,27,27,,,,,,,,,,,2580,2580,0.803218,0.803218,0.803218,0.803218,0.803218,0.803218,0.803218,0.803218,0.306026,0.306026,27,27,, +1051,0,0.501971,1,1,0,2,4,,5,3,Napier,Rd,621905,0.998,1.5,0,10.756515,3,4,0.752956,0.752956,0.752956,0.752956,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.958982,0.888846,0.752956,0.752956,0.958982,0.888846,0.768537,0.765249,0.752956,0.752956,0.768537,0.765249,0.905221,0.944786,0.752956,0.752956,0.905221,0.944786,0.752956,0.752956,0.752956,0.752956,0.752956,0.752956,,,,,,,0.958982,0.888846,0.768537,0.765249,0.905221,0.944786,0.752956,0.752956,0.752956,0.752956,0.378049,0.357009,0.320916,0.319929,0.361921,0.373791,0.316242,0.316242,0.16816,0.16816,31.406458,33.884658,39.189068,39.357447,33.271686,31.878378,40,40,40,40,,,,,,,,,,,3096,3096,0.752956,0.752956,0.752956,0.752956,0.752956,0.752956,0.752956,0.752956,0.316242,0.316242,40,40,, +1948,0,0.916308,1,1,0,2,5,GRV,5,3,9 Mile,Rd,633603,8.394,9.31,0,19.635163,5.55,5,2.748923,2.748923,2.748923,2.748923,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.748923,2.787187,2.748923,2.748923,2.748923,2.787187,2.748923,2.748923,2.748923,2.748923,2.748923,2.748923,2.749941,2.748924,2.748923,2.748923,2.749941,2.748924,2.748923,2.748923,2.748923,2.748923,2.748923,2.748923,,,,,,,2.748923,2.787187,2.748923,2.748923,2.749941,2.748924,2.748923,2.748923,2.748923,2.748923,0.989612,1.001091,0.989612,0.989612,0.989918,0.989612,0.989612,0.989612,0.513132,0.513132,19.999998,19.72543,20,20,19.992594,19.999994,20,20,20,20,,,,,,,,,,,2236,2236,2.748923,2.748923,2.748923,2.748923,2.748923,2.748923,2.748923,2.748923,0.989612,0.989612,20,20,, +17576,0,1.009852,1,1,0,2,4,,4,3,8 Mile,Rd,1680705,0,1.01,0,21.639687,4.5,4.5,1.594503,1.594503,1.594503,1.594503,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.69705,1.845844,1.594503,1.594503,2.69705,1.845844,1.71644,1.703641,1.594503,1.594503,1.71644,1.703641,1.998901,2.446082,1.594503,1.594503,1.998901,2.446082,1.594503,1.594503,1.594503,1.594503,1.594503,1.594503,,,,,,,2.69705,1.845844,1.71644,1.703641,1.998901,2.446082,1.594503,1.594503,1.594503,1.594503,0.990888,0.735527,0.696705,0.692866,0.781444,0.915598,0.660124,0.660124,0.350259,0.350259,22.465699,32.825695,35.300459,35.565673,30.312223,24.770686,38,38,38,38,,,,,,,,,,,3096,3096,1.594503,1.594503,1.594503,1.594503,1.594503,1.594503,1.594503,1.594503,0.660124,0.660124,38,38,, +26846,0,0.62862,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,13.470434,0.15,4,2.514481,2.514481,2.514481,2.514481,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,,,,,,,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,0.867496,0.867496,0.867496,0.867496,0.867496,0.867496,0.867496,0.867496,0.44632,0.44632,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,2.514481,0.867496,0.867496,15,15,, +26850,0,1.021369,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.886473,0.15,4,4.085475,4.085475,4.085475,4.085475,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,,,,,,,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,1.409489,1.409489,1.409489,1.409489,1.409489,1.409489,1.409489,1.409489,0.725172,0.725172,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,4.085475,1.409489,1.409489,15,15,, +481,0,0.129946,1,1,0,2,5,,5,3,9 Mile,Rd,633603,9.31,9.44,0,2.784559,3.7,5,0.259892,0.259892,0.259892,0.259892,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.259892,0.262212,0.259892,0.259892,0.259892,0.262212,0.259892,0.259892,0.259892,0.259892,0.259892,0.259892,0.259995,0.259893,0.259892,0.259892,0.259995,0.259893,0.259892,0.259892,0.259892,0.259892,0.259892,0.259892,,,,,,,0.259892,0.262212,0.259892,0.259892,0.259995,0.259893,0.259892,0.259892,0.259892,0.259892,0.101358,0.102054,0.101358,0.101358,0.101389,0.101358,0.101358,0.101358,0.053278,0.053278,29.999986,29.734577,30,29.999999,29.988145,29.999957,30,30,30,30,,,,,,,,,,,2580,2580,0.259892,0.259892,0.259892,0.259892,0.259892,0.259892,0.259892,0.259892,0.101358,0.101358,30,30,, +1792,0,0.987671,1,1,0,2,4,,5,3,Napier,Rd,621905,0,0.987,0,21.16438,3,4,1.481507,1.481507,1.481507,1.481507,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.931083,1.878194,1.481507,1.481507,1.931083,1.878194,1.527598,1.518927,1.481507,1.481507,1.527598,1.518927,2.008262,2.00362,1.481507,1.481507,2.008262,2.00362,1.481507,1.481507,1.481507,1.481507,1.481507,1.481507,,,,,,,1.931083,1.878194,1.527598,1.518927,2.008262,2.00362,1.481507,1.481507,1.481507,1.481507,0.757106,0.741239,0.63606,0.633459,0.780259,0.778867,0.622233,0.622233,0.33087,0.33087,30.687585,31.551731,38.793113,39.014549,29.508239,29.576596,40,40,40,40,,,,,,,,,,,3096,3096,1.481507,1.481507,1.481507,1.481507,1.481507,1.481507,1.481507,1.481507,0.622233,0.622233,40,40,, +1297,0,0.010378,1,1,0,2,4,,5,3,Napier,Rd,621905,0.987,0.998,0,0.222392,3,4,0.015567,0.015567,0.015567,0.015567,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.019828,0.030136,0.015567,0.015567,0.019828,0.030136,0.01611,0.016036,0.015567,0.015567,0.01611,0.016036,0.025615,0.0212,0.015567,0.015567,0.025615,0.0212,0.015567,0.015567,0.015567,0.015567,0.015567,0.015567,,,,,,,0.019828,0.030136,0.01611,0.016036,0.025615,0.0212,0.015567,0.015567,0.015567,0.015567,0.007816,0.010909,0.006701,0.006679,0.009553,0.008228,0.006538,0.006538,0.003477,0.003477,31.405405,20.662941,38.652369,38.830235,24.310094,29.372031,40,40,40,40,,,,,,,,,,,3096,3096,0.015567,0.015567,0.015567,0.015567,0.015567,0.015567,0.015567,0.015567,0.006538,0.006538,40,40,, +26847,0,0.532639,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.4137,0.15,4,2.130557,2.130557,2.130557,2.130557,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,,,,,,,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,0.735042,0.735042,0.735042,0.735042,0.735042,0.735042,0.735042,0.735042,0.378174,0.378174,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,2.130557,0.735042,0.735042,15,15,, +3465,0,0.266323,1,1,0,2,3,,4,3,10 Mile,Rd,656510,6.779,7.045,0,5.706912,3.7,5,0.399484,0.399484,0.399484,0.399484,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.063235,0.425618,0.399484,0.399484,1.063235,0.425618,0.432216,0.417255,0.399484,0.399484,0.432216,0.417255,0.519505,0.861361,0.399484,0.399484,0.519505,0.861361,0.399484,0.399484,0.399484,0.399484,0.399484,0.399484,,,,,,,1.063235,0.425618,0.432216,0.417255,0.519505,0.861361,0.399484,0.399484,0.399484,0.399484,0.366909,0.175624,0.177603,0.173115,0.203789,0.306346,0.167783,0.167783,0.089218,0.089218,15.028993,37.543848,36.97075,38.296335,30.758835,18.551275,40,40,40,40,,,,,,,,,,,3784,3784,0.399484,0.399484,0.399484,0.399484,0.399484,0.399484,0.399484,0.399484,0.167783,0.167783,40,40,, +15387,0,0.368144,1,1,0,2,3,,4,2,Beck,Rd,1595603,10.396,10.764,0,7.888801,3.7,5,0.552216,0.552216,0.552216,0.552216,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.887174,0.983006,0.552216,0.552216,0.887174,0.983006,0.729374,0.710641,0.552216,0.552216,0.729374,0.710641,1.066519,0.959947,0.552216,0.552216,1.066519,0.959947,0.552216,0.552216,0.552216,0.552216,0.552216,0.552216,,,,,,,0.887174,0.983006,0.729374,0.710641,1.066519,0.959947,0.552216,0.552216,0.552216,0.552216,0.332418,0.361168,0.285078,0.279458,0.386222,0.35425,0.231931,0.231931,0.123328,0.123328,24.897765,22.470517,30.284404,31.082707,20.710975,23.010271,40,40,40,40,,,,,,,,,,,3784,3784,0.552216,0.552216,0.552216,0.552216,0.552216,0.552216,0.552216,0.552216,0.231931,0.231931,40,40,, +17750,0,0.76068,1,1,0,2,4,,4,2,7 Mile,Rd,1680703,2.018,2.778,0,16.300289,4.5,4.5,1.201074,1.201074,1.201074,1.201074,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.418676,1.201237,1.201074,1.201074,1.418676,1.201237,1.205248,1.205147,1.201074,1.201074,1.205248,1.205147,1.202988,1.30139,1.201074,1.201074,1.202988,1.30139,1.201074,1.201074,1.201074,1.201074,1.201074,1.201074,,,,,,,1.418676,1.201237,1.205248,1.205147,1.202988,1.30139,1.201074,1.201074,1.201074,1.201074,0.562525,0.497294,0.498497,0.498467,0.497819,0.527339,0.497245,0.497245,0.263836,0.263836,32.17141,37.994842,37.868385,37.871572,37.939522,35.070824,38,38,38,38,,,,,,,,,,,3096,3096,1.201074,1.201074,1.201074,1.201074,1.201074,1.201074,1.201074,1.201074,0.497245,0.497245,38,38,, +19120,0,0.597333,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,2.018,2.615,0,12.799994,4.5,4.5,0.943157,0.943157,0.943157,0.943157,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.611119,0.966807,0.943157,0.943157,1.611119,0.966807,0.976125,0.958922,0.943157,0.943157,0.976125,0.958922,1.055732,1.476795,0.943157,0.943157,1.055732,1.476795,0.943157,0.943157,0.943157,0.943157,0.943157,0.943157,,,,,,,1.611119,0.966807,0.976125,0.958922,1.055732,1.476795,0.943157,0.943157,0.943157,0.943157,0.590856,0.397562,0.400357,0.395196,0.424239,0.550559,0.390467,0.390467,0.20718,0.20718,22.245394,37.070478,36.716591,37.3753,33.948006,24.268755,38,38,38,38,,,,,,,,,,,3096,3096,0.943157,0.943157,0.943157,0.943157,0.943157,0.943157,0.943157,0.943157,0.390467,0.390467,38,38,, +31546,0,0.763275,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.355901,0.15,4,3.053102,3.053102,3.053102,3.053102,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,,,,,,,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,1.05332,1.05332,1.05332,1.05332,1.05332,1.05332,1.05332,1.05332,0.541926,0.541926,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,3.053102,1.05332,1.05332,15,15,, +33765,0,0.779793,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.709853,0.15,4,3.119173,3.119173,3.119173,3.119173,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,,,,,,,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,1.076115,1.076115,1.076115,1.076115,1.076115,1.076115,1.076115,1.076115,0.553653,0.553653,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,3.119173,1.076115,1.076115,15,15,, +15672,0,0.635554,1,1,0,2,3,,4,2,Beck,Rd,1595603,9.761,10.396,0,13.61901,3.7,5,0.953331,0.953331,0.953331,0.953331,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.531592,1.697034,0.953331,0.953331,1.531592,1.697034,1.25917,1.226831,0.953331,0.953331,1.25917,1.226831,1.841209,1.657226,0.953331,0.953331,1.841209,1.657226,0.953331,0.953331,0.953331,0.953331,0.953331,0.953331,,,,,,,1.531592,1.697034,1.25917,1.226831,1.841209,1.657226,0.953331,0.953331,0.953331,0.953331,0.573877,0.62351,0.492151,0.482449,0.666762,0.611568,0.400399,0.400399,0.212911,0.212911,24.897765,22.470517,30.284404,31.082707,20.710975,23.010271,40,40,40,40,,,,,,,,,,,3784,3784,0.953331,0.953331,0.953331,0.953331,0.953331,0.953331,0.953331,0.953331,0.400399,0.400399,40,40,, +14843,1,0.291444,2,0,0,2,3,DIV,4,2,Beck,Rd,1595603,9.455,9.746,0,6.24522,3.7,5,0.388591,,0.388591,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.496704,,0.388591,,0.496704,,0.412439,,0.388591,,0.412439,,0.522117,,0.388591,,0.522117,,0.388591,,0.388591,,0.388591,,,,,,,,0.496704,,0.412439,,0.522117,,0.388591,,0.388591,,0.201471,,0.176191,,0.209095,,0.169037,,0.090348,,35.205307,,42.3981,,33.491772,,45,,45,,,,,,,,,,,,7568,,0.388591,,0.388591,,0.388591,,0.388591,,0.169037,,45,,, +17975,0,0.464516,1,1,0,2,5,,4,2,7 Mile,Rd,1680703,1.554,2.018,0,9.953925,5.8,4.5,1.032259,1.032259,1.032259,1.032259,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.886872,1.032315,1.032259,1.032259,1.886872,1.032315,1.049267,1.050994,1.032259,1.032259,1.049267,1.050994,1.033036,1.256209,1.032259,1.032259,1.033036,1.256209,1.032259,1.032259,1.032259,1.032259,1.032259,1.032259,,,,,,,1.886872,1.032315,1.049267,1.050994,1.033036,1.256209,1.032259,1.032259,1.032259,1.032259,0.649675,0.393308,0.398393,0.398911,0.393524,0.460476,0.393291,0.393291,0.205936,0.205936,14.771,26.998523,26.562349,26.518683,26.979681,22.186579,27,27,27,27,,,,,,,,,,,2580,2580,1.032259,1.032259,1.032259,1.032259,1.032259,1.032259,1.032259,1.032259,0.393291,0.393291,27,27,, +31470,0,0.20352,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.361147,0.15,4,0.814081,0.814081,0.814081,0.814081,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,0.814082,0.814081,0.814081,0.814081,0.814082,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,,,,,,,0.814081,0.814081,0.814081,0.814081,0.814082,0.814081,0.814081,0.814081,0.814081,0.814081,0.280858,0.280858,0.280858,0.280858,0.280858,0.280858,0.280858,0.280858,0.144499,0.144499,14.999998,14.999988,14.999998,14.999998,14.999986,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,0.814081,0.280858,0.280858,15,15,, +859,0,0.374516,1,1,0,2,4,,4,3,9 Mile,Rd,633603,6.844,7.218,0,8.025346,4.5,4.5,0.591341,0.591341,0.591341,0.591341,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.595979,0.678154,0.591341,0.591341,0.595979,0.678154,0.591569,0.591569,0.591341,0.591341,0.591569,0.591569,0.643566,0.614354,0.591341,0.591341,0.643566,0.614354,0.591341,0.591341,0.591341,0.591341,0.591341,0.591341,,,,,,,0.595979,0.678154,0.591569,0.591569,0.643566,0.614354,0.591341,0.591341,0.591341,0.591341,0.246207,0.270859,0.244883,0.244884,0.260483,0.251719,0.244815,0.244815,0.129898,0.129898,37.704272,33.13548,37.985399,37.985379,34.916365,36.576558,38,38,38,38,,,,,,,,,,,3096,3096,0.591341,0.591341,0.591341,0.591341,0.591341,0.591341,0.591341,0.591341,0.244815,0.244815,38,38,, +3010,0,0.44126,1,1,0,2,5,,4,3,Taft,Rd,656608,0.559,1,0,9.455564,5.8,4.5,0.980577,0.980577,0.980577,0.980577,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.667738,1.692528,0.980577,0.980577,1.667738,1.692528,1.108124,1.053196,0.980577,0.980577,1.108124,1.053196,2.143396,1.822026,0.980577,0.980577,2.143396,1.822026,0.980577,0.980577,0.980577,0.980577,0.980577,0.980577,,,,,,,1.667738,1.692528,1.108124,1.053196,2.143396,1.822026,0.980577,0.980577,0.980577,0.980577,0.579748,0.587185,0.411864,0.395386,0.722446,0.626035,0.3736,0.3736,0.195625,0.195625,15.875142,15.642623,23.892249,25.13832,12.352162,14.530845,27,27,27,27,,,,,,,,,,,2580,2580,0.980577,0.980577,0.980577,0.980577,0.980577,0.980577,0.980577,0.980577,0.3736,0.3736,27,27,, +3362,0,0.424726,1,1,0,2,4,,4,3,Beck,Rd,656605,0.576,1.001,0,9.101275,4.5,4.5,0.67062,0.67062,0.67062,0.67062,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.614196,1.25947,0.67062,0.67062,1.614196,1.25947,0.944698,0.916838,0.67062,0.67062,0.944698,0.916838,1.721946,1.715123,0.67062,0.67062,1.721946,1.715123,0.67062,0.67062,0.67062,0.67062,0.67062,0.67062,,,,,,,1.614196,1.25947,0.944698,0.916838,1.721946,1.715123,0.67062,0.67062,0.67062,0.67062,0.56071,0.454292,0.35986,0.351502,0.593035,0.590988,0.277637,0.277637,0.147313,0.147313,15.787158,20.233562,26.975353,27.795067,14.799282,14.858162,38,38,38,38,,,,,,,,,,,3096,3096,0.67062,0.67062,0.67062,0.67062,0.67062,0.67062,0.67062,0.67062,0.277637,0.277637,38,38,, +3459,0,0.375405,1,1,1,2,3,,4,3,10 Mile,Rd,656510,7.803,8.178,0,8.044398,3.7,5,0.563108,0.563108,0.563108,0.563108,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.862324,0.591868,0.563108,0.563108,0.862324,0.591868,0.575914,0.571905,0.563108,0.563108,0.575914,0.571905,0.631939,0.720948,0.563108,0.563108,0.631939,0.720948,0.563108,0.563108,0.563108,0.563108,0.563108,0.563108,,,,,,,0.862324,0.591868,0.575914,0.571905,0.631939,0.720948,0.563108,0.563108,0.563108,0.563108,0.32627,0.245133,0.240347,0.239144,0.257155,0.283857,0.236505,0.236505,0.125761,0.125761,26.120475,38.05631,39.110583,39.384722,35.643196,31.242614,40,40,40,40,,,,,,,,,,,4162,4162,0.563108,0.563108,0.563108,0.563108,0.563108,0.563108,0.563108,0.563108,0.236505,0.236505,40,40,, +18986,0,0.273455,1,1,0,2,3,,4,3,8 Mile,Rd,1680705,2.016,2.289,0,5.859745,3.7,5,0.410182,0.410182,0.410182,0.410182,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.536587,0.422907,0.410182,0.410182,0.536587,0.422907,0.417328,0.414793,0.410182,0.410182,0.417328,0.414793,0.463561,0.526021,0.410182,0.410182,0.463561,0.526021,0.410182,0.410182,0.410182,0.410182,0.410182,0.410182,,,,,,,0.536587,0.422907,0.417328,0.414793,0.463561,0.526021,0.410182,0.410182,0.410182,0.410182,0.210198,0.176094,0.17442,0.17366,0.18829,0.207028,0.172277,0.172277,0.091607,0.091607,30.577136,38.796425,39.31513,39.555337,35.394013,31.191331,40,40,40,40,,,,,,,,,,,3784,3784,0.410182,0.410182,0.410182,0.410182,0.410182,0.410182,0.410182,0.410182,0.172277,0.172277,40,40,, +26868,0,0.558866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.975707,0.15,4,2.235465,2.235465,2.235465,2.235465,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,,,,,,,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,0.771236,0.771236,0.771236,0.771236,0.771236,0.771236,0.771236,0.771236,0.396795,0.396795,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,2.235465,0.771236,0.771236,15,15,, +3040,0,0.576178,1,1,0,2,4,,4,3,Beck,Rd,656605,0,0.576,0,12.34667,4.5,4.5,0.909755,0.909755,0.909755,0.909755,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.628935,1.624039,0.909755,0.909755,1.628935,1.624039,1.168742,1.147572,0.909755,0.909755,1.168742,1.147572,1.966724,1.763512,0.909755,0.909755,1.966724,1.763512,0.909755,0.909755,0.909755,0.909755,0.909755,0.909755,,,,,,,1.628935,1.624039,1.168742,1.147572,1.966724,1.763512,0.909755,0.909755,0.909755,0.909755,0.592393,0.590924,0.454335,0.447984,0.693729,0.632766,0.376638,0.376638,0.199843,0.199843,21.222869,21.286852,29.579399,30.125051,17.577798,19.603316,38,38,38,38,,,,,,,,,,,3096,3096,0.909755,0.909755,0.909755,0.909755,0.909755,0.909755,0.909755,0.909755,0.376638,0.376638,38,38,, +3030,0,0.50172,1,1,0,2,4,,4,3,Beck,Rd,656605,1.502,2.004,0,10.751141,4.5,4.5,0.792189,0.792189,0.792189,0.792189,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.411813,1.320488,0.792189,0.792189,1.411813,1.320488,1.167399,1.156326,0.792189,0.792189,1.167399,1.156326,1.617543,1.508594,0.792189,0.792189,1.617543,1.508594,0.792189,0.792189,0.792189,0.792189,0.792189,0.792189,,,,,,,1.411813,1.320488,1.167399,1.156326,1.617543,1.508594,0.792189,0.792189,0.792189,0.792189,0.513854,0.486456,0.440529,0.437207,0.575572,0.542888,0.327966,0.327966,0.174018,0.174018,21.322359,22.797018,25.786549,26.03348,18.610449,19.954464,38,38,38,38,,,,,,,,,,,3096,3096,0.792189,0.792189,0.792189,0.792189,0.792189,0.792189,0.792189,0.792189,0.327966,0.327966,38,38,, +3464,0,0.415566,1,1,0,2,3,,4,3,10 Mile,Rd,656510,7.388,7.803,0,8.904975,3.7,5,0.623348,0.623348,0.623348,0.623348,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.244398,0.649413,0.623348,0.623348,1.244398,0.649413,0.65137,0.638774,0.623348,0.623348,0.65137,0.638774,0.718298,0.968308,0.623348,0.623348,0.718298,0.968308,0.623348,0.623348,0.623348,0.623348,0.623348,0.623348,,,,,,,1.244398,0.649413,0.65137,0.638774,0.718298,0.968308,0.623348,0.623348,0.623348,0.623348,0.448121,0.269626,0.270213,0.266434,0.290291,0.365294,0.261806,0.261806,0.139214,0.139214,20.036944,38.394552,38.279211,39.034066,34.712525,25.749994,40,40,40,40,,,,,,,,,,,3784,3784,0.623348,0.623348,0.623348,0.623348,0.623348,0.623348,0.623348,0.623348,0.261806,0.261806,40,40,, +3039,0,0.127415,1,1,0,2,4,,4,3,Beck,Rd,656605,1.001,1.128,0,2.730318,4.5,4.5,0.201181,0.201181,0.201181,0.201181,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.367916,0.316323,0.201181,0.201181,0.367916,0.316323,0.26604,0.259098,0.201181,0.201181,0.26604,0.259098,0.374227,0.387435,0.201181,0.201181,0.374227,0.387435,0.201181,0.201181,0.201181,0.201181,0.201181,0.201181,,,,,,,0.367916,0.316323,0.26604,0.259098,0.374227,0.387435,0.201181,0.201181,0.201181,0.201181,0.133309,0.117832,0.102747,0.100664,0.135203,0.139165,0.083289,0.083289,0.044193,0.044193,20.7789,24.167986,28.73583,29.505745,20.428484,19.732076,38,38,38,38,,,,,,,,,,,3096,3096,0.201181,0.201181,0.201181,0.201181,0.201181,0.201181,0.201181,0.201181,0.083289,0.083289,38,38,, +3348,0,0.374156,1,1,0,2,4,,4,3,Beck,Rd,656605,1.128,1.502,0,8.017632,4.5,4.5,0.590773,0.590773,0.590773,0.590773,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.96914,0.765333,0.590773,0.590773,0.96914,0.765333,0.723342,0.711491,0.590773,0.590773,0.723342,0.711491,0.878208,0.964182,0.590773,0.590773,0.878208,0.964182,0.590773,0.590773,0.590773,0.590773,0.590773,0.590773,,,,,,,0.96914,0.765333,0.723342,0.711491,0.878208,0.964182,0.590773,0.590773,0.590773,0.590773,0.35809,0.296948,0.284351,0.280795,0.33081,0.356603,0.24458,0.24458,0.129773,0.129773,23.164228,29.332812,31.035608,31.552571,25.562705,23.283338,38,38,38,38,,,,,,,,,,,3096,3096,0.590773,0.590773,0.590773,0.590773,0.590773,0.590773,0.590773,0.590773,0.24458,0.24458,38,38,, +3011,0,0.319094,1,1,0,2,5,,3,3,Taft,Rd,656608,0,0.319,0,6.837721,8,4.5,0.765825,0.765825,0.765825,0.765825,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.954029,0.936957,0.765825,0.765825,0.954029,0.936957,0.803991,0.787437,0.765825,0.765825,0.803991,0.787437,1.059172,0.987791,0.765825,0.765825,1.059172,0.987791,0.765825,0.765825,0.765825,0.765825,0.765825,0.765825,,,,,,,0.954029,0.936957,0.803991,0.787437,1.059172,0.987791,0.765825,0.765825,0.765825,0.765825,0.343646,0.338524,0.298634,0.293668,0.375188,0.353774,0.287184,0.287184,0.149974,0.149974,20.068165,20.433834,23.813226,24.313836,18.076031,19.382248,25,25,25,25,,,,,,,,,,,2408,2408,0.765825,0.765825,0.765825,0.765825,0.765825,0.765825,0.765825,0.765825,0.287184,0.287184,25,25,, +18411,0,0.599121,1,1,0,2,3,,4,3,8 Mile,Rd,1680705,2.41,3.009,0,12.838308,3.7,5,0.898682,0.898682,0.898682,0.898682,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.537462,0.907626,0.898682,0.898682,1.537462,0.907626,0.919217,0.911844,0.898682,0.898682,0.919217,0.911844,0.986102,1.354528,0.898682,0.898682,0.986102,1.354528,0.898682,0.898682,0.898682,0.898682,0.898682,0.898682,,,,,,,1.537462,0.907626,0.919217,0.911844,0.986102,1.354528,0.898682,0.898682,0.898682,0.898682,0.56908,0.38013,0.383607,0.381395,0.403673,0.5142,0.377446,0.377446,0.200706,0.200706,23.380911,39.60579,39.106408,39.422585,36.45388,26.538595,40,40,40,40,,,,,,,,,,,3784,3784,0.898682,0.898682,0.898682,0.898682,0.898682,0.898682,0.898682,0.898682,0.377446,0.377446,40,40,, +26851,0,0.510797,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.945657,0.15,4,2.043189,2.043189,2.043189,2.043189,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,,,,,,,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,0.7049,0.7049,0.7049,0.7049,0.7049,0.7049,0.7049,0.7049,0.362666,0.362666,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,2.043189,0.7049,0.7049,15,15,, +18734,0,0.121024,1,1,0,2,3,,4,3,8 Mile,Rd,1680705,2.289,2.41,0,2.59338,3.7,5,0.181537,0.181537,0.181537,0.181537,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.245643,0.183883,0.181537,0.181537,0.245643,0.183883,0.18492,0.183673,0.181537,0.181537,0.18492,0.183673,0.195866,0.231041,0.181537,0.181537,0.195866,0.231041,0.181537,0.181537,0.181537,0.181537,0.181537,0.181537,,,,,,,0.245643,0.183883,0.18492,0.183673,0.195866,0.231041,0.181537,0.181537,0.181537,0.181537,0.095477,0.076949,0.07726,0.076886,0.080544,0.091097,0.076245,0.076245,0.040543,0.040543,29.561055,39.489645,39.268062,39.534775,37.073558,31.429258,40,40,40,40,,,,,,,,,,,3784,3784,0.181537,0.181537,0.181537,0.181537,0.181537,0.181537,0.181537,0.181537,0.076245,0.076245,40,40,, +26852,0,0.26423,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.662065,0.15,4,1.056919,1.056919,1.056919,1.056919,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,,,,,,,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,0.364637,0.364637,0.364637,0.364637,0.364637,0.364637,0.364637,0.364637,0.187603,0.187603,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,1.056919,0.364637,0.364637,15,15,, +3325,0,0.060606,1,1,0,2,5,,4,3,Taft,Rd,656608,0.498,0.559,0,1.298694,5.8,4.5,0.134679,0.134679,0.134679,0.134679,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.193692,0.157573,0.134679,0.134679,0.193692,0.157573,0.143664,0.139626,0.134679,0.134679,0.143664,0.139626,0.18692,0.198461,0.134679,0.134679,0.18692,0.198461,0.134679,0.134679,0.134679,0.134679,0.134679,0.134679,,,,,,,0.193692,0.157573,0.143664,0.139626,0.18692,0.198461,0.134679,0.134679,0.134679,0.134679,0.069017,0.058181,0.054008,0.052797,0.066985,0.070447,0.051313,0.051313,0.026869,0.026869,18.773878,23.077137,25.3115,26.043532,19.454006,18.322706,27,27,27,27,,,,,,,,,,,2580,2580,0.134679,0.134679,0.134679,0.134679,0.134679,0.134679,0.134679,0.134679,0.051313,0.051313,27,27,, +1318,0,0.609187,1,1,0,2,4,,4,3,9 Mile,Rd,633603,6.235,6.844,0,13.054001,4.5,4.5,0.961874,0.961874,0.961874,0.961874,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.977661,1.590622,0.961874,0.961874,0.977661,1.590622,0.968516,0.969602,0.961874,0.961874,0.968516,0.969602,1.394127,1.086347,0.961874,0.961874,1.394127,1.086347,0.961874,0.961874,0.961874,0.961874,0.961874,0.961874,,,,,,,0.977661,1.590622,0.968516,0.969602,1.394127,1.086347,0.961874,0.961874,0.961874,0.961874,0.402952,0.58684,0.400208,0.400534,0.527892,0.435558,0.398216,0.398216,0.211292,0.211292,37.386382,22.979186,37.739402,37.697126,26.21799,33.645985,38,38,38,38,,,,,,,,,,,3096,3096,0.961874,0.961874,0.961874,0.961874,0.961874,0.961874,0.961874,0.961874,0.398216,0.398216,38,38,, +3006,0,0.582806,1,1,0,2,5,,4,3,Taft,Rd,656608,1.416,1.998,0,12.488696,5.8,4.5,1.295124,1.295124,1.295124,1.295124,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.994147,1.74608,1.295124,1.295124,1.994147,1.74608,1.63961,1.557393,1.295124,1.295124,1.63961,1.557393,2.06464,2.09585,1.295124,1.295124,2.06464,2.09585,1.295124,1.295124,1.295124,1.295124,1.295124,1.295124,,,,,,,1.994147,1.74608,1.63961,1.557393,2.06464,2.09585,1.295124,1.295124,1.295124,1.295124,0.703149,0.628729,0.596788,0.572123,0.724297,0.73366,0.493442,0.493442,0.258377,0.258377,17.535489,20.026778,21.327239,22.453126,16.936778,16.684563,27,27,27,27,,,,,,,,,,,2580,2580,1.295124,1.295124,1.295124,1.295124,1.295124,1.295124,1.295124,1.295124,0.493442,0.493442,27,27,, +3449,0,0.53504,1,1,1,2,3,,4,3,10 Mile,Rd,656510,8.276,8.811,0,11.465152,3.7,5,0.802561,0.802561,0.802561,0.802561,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,1.100506,0.83748,0.802561,0.802561,1.100506,0.83748,0.814291,0.808116,0.802561,0.802561,0.814291,0.808116,0.941969,1.120945,0.802561,0.802561,0.941969,1.120945,0.802561,0.802561,0.802561,0.802561,0.802561,0.802561,,,,,,,1.100506,0.83748,0.814291,0.808116,0.941969,1.120945,0.802561,0.802561,0.802561,0.802561,0.426459,0.347551,0.340594,0.338742,0.378898,0.432591,0.337075,0.337075,0.179239,0.179239,29.170597,38.332162,39.423797,39.725038,34.080135,28.638714,40,40,40,40,,,,,,,,,,,4162,4162,0.802561,0.802561,0.802561,0.802561,0.802561,0.802561,0.802561,0.802561,0.337075,0.337075,40,40,, +26853,0,0.751521,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.104021,0.15,4,3.006084,3.006084,3.006084,3.006084,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,3.006085,3.006084,3.006084,3.006084,3.006085,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,,,,,,,3.006084,3.006084,3.006084,3.006084,3.006084,3.006085,3.006084,3.006084,3.006084,3.006084,1.037099,1.037099,1.037099,1.037099,1.037099,1.037099,1.037099,1.037099,0.53358,0.53358,14.999999,15,15,15,14.999999,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,3.006084,1.037099,1.037099,15,15,, +26854,0,0.529427,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.344874,0.15,4,2.11771,2.11771,2.11771,2.11771,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,,,,,,,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,0.73061,0.73061,0.73061,0.73061,0.73061,0.73061,0.73061,0.73061,0.375894,0.375894,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,2.11771,0.73061,0.73061,15,15,, +26856,0,0.277047,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.936711,0.15,4,1.108186,1.108186,1.108186,1.108186,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,,,,,,,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,0.382324,0.382324,0.382324,0.382324,0.382324,0.382324,0.382324,0.382324,0.196703,0.196703,14.999996,14.999999,15,15,14.999998,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,1.108186,0.382324,0.382324,15,15,, +3119,0,0.097477,1,1,1,2,3,,4,3,10 Mile,Rd,656510,8.178,8.276,0,2.088799,3.7,5,0.146216,0.146216,0.146216,0.146216,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.174611,0.163556,0.146216,0.146216,0.174611,0.163556,0.148019,0.147361,0.146216,0.146216,0.148019,0.147361,0.163816,0.161871,0.146216,0.146216,0.163816,0.161871,0.146216,0.146216,0.146216,0.146216,0.146216,0.146216,,,,,,,0.174611,0.163556,0.148019,0.147361,0.163816,0.161871,0.146216,0.146216,0.146216,0.146216,0.069929,0.066613,0.061952,0.061754,0.066691,0.066107,0.061411,0.061411,0.032655,0.032655,33.495325,35.759247,39.51283,39.689207,35.702533,36.131552,40,40,40,40,,,,,,,,,,,4162,4162,0.146216,0.146216,0.146216,0.146216,0.146216,0.146216,0.146216,0.146216,0.061411,0.061411,40,40,, +3319,0,0.416016,1,1,0,2,5,,4,3,Taft,Rd,656608,1,1.416,0,8.914628,5.8,4.5,0.92448,0.92448,0.92448,0.92448,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.962636,0.936283,0.92448,0.92448,0.962636,0.936283,0.929523,0.926502,0.92448,0.92448,0.929523,0.926502,0.983753,0.976901,0.92448,0.92448,0.983753,0.976901,0.92448,0.92448,0.92448,0.92448,0.92448,0.92448,,,,,,,0.962636,0.936283,0.929523,0.926502,0.983753,0.976901,0.92448,0.92448,0.92448,0.92448,0.363674,0.355768,0.35374,0.352834,0.370009,0.367953,0.352227,0.352227,0.184434,0.184434,25.929793,26.659615,26.85351,26.941068,25.37319,25.551154,27,27,27,27,,,,,,,,,,,2580,2580,0.92448,0.92448,0.92448,0.92448,0.92448,0.92448,0.92448,0.92448,0.352227,0.352227,27,27,, +11448,1,0.838228,3,0,0,1,1,,4,2,E I 94,,1576405,5.579,6.417,0,,0.8,7.5,0.718481,,0.718481,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.921248,,0.718481,,0.921248,,0.71919,,0.718481,,0.71919,,0.763445,,0.718481,,0.763445,,0.718481,,0.718481,,0.718481,,,,,,,,0.921248,,0.71919,,0.763445,,0.718481,,0.718481,,0.427255,,0.366638,,0.379915,,0.366425,,0.199977,,54.592985,,69.930983,,65.87723,,70,,70,,,,,,,,,,,,22704,,0.718481,,0.718481,,0.718481,,0.718481,,0.366425,,70,,, +14318,-1,0.684481,0,3,0,1,1,,4,2,W I 94,,1588802,5.678,6.363,0,,0.8,7.5,,0.586698,,0.586698,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.632942,,0.586698,,0.632942,,0.587253,,0.586698,,0.587253,,0.702464,,0.586698,,0.702464,,0.586698,,0.586698,,0.586698,,,,,,,,0.632942,,0.587253,,0.702464,,0.586698,,0.586698,,0.313089,,0.299382,,0.333946,,0.299216,,0.163298,,64.885628,,69.933893,,58.463998,,70,,70,,,,,,,,,,,,22704,,0.586698,,0.586698,,0.586698,,0.586698,,0.299216,,70,, +15739,0,0.535141,2,2,1,2,3,,3,2,Ford,Rd,1595510,5.694,6.229,0,11.467315,5,5,0.917385,0.917385,0.917385,0.917385,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.223905,1.281597,0.917385,0.917385,1.223905,1.281597,1.097742,1.191139,0.917385,0.917385,1.097742,1.191139,1.510093,1.790641,0.917385,0.917385,1.510093,1.790641,0.917385,0.917385,0.917385,0.917385,0.917385,0.917385,,,,,,,1.223905,1.281597,1.097742,1.191139,1.510093,1.790641,0.917385,0.917385,0.917385,0.917385,0.463497,0.480805,0.425648,0.453667,0.549353,0.633518,0.371541,0.371541,0.196473,0.196473,26.234451,25.053495,29.24956,26.956119,21.26258,17.931278,35,35,35,35,,,,,,,,,,,7946,7946,0.917385,0.917385,0.917385,0.917385,0.917385,0.917385,0.917385,0.917385,0.371541,0.371541,35,35,, +15810,1,0.384049,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,6.148,6.532,0,8.229612,3.7,5,0.512065,,0.512065,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.552892,,0.512065,,0.552892,,0.517126,,0.512065,,0.517126,,0.567589,,0.512065,,0.567589,,0.512065,,0.512065,,0.512065,,,,,,,,0.552892,,0.517126,,0.567589,,0.512065,,0.512065,,0.234996,,0.224267,,0.239405,,0.222748,,0.119055,,41.677029,,44.559543,,40.597919,,45,,45,,,,,,,,,,,,15136,,0.512065,,0.512065,,0.512065,,0.512065,,0.222748,,45,,, +15858,0,0.498385,2,2,0,2,4,,3,2,Venoy,Rd,1599408,0,0.498,0,10.679672,6,4.5,0.906154,0.906154,0.906154,0.906154,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.940206,0.952229,0.906154,0.906154,0.940206,0.952229,0.923042,0.918136,0.906154,0.906154,0.923042,0.918136,1.040659,0.949941,0.906154,0.906154,1.040659,0.949941,0.906154,0.906154,0.906154,0.906154,0.906154,0.906154,,,,,,,0.940206,0.952229,0.923042,0.918136,1.040659,0.949941,0.906154,0.906154,0.906154,0.906154,0.371771,0.375378,0.366622,0.36515,0.401907,0.374692,0.361555,0.361555,0.190745,0.190745,31.804832,31.403249,32.39623,32.569325,28.73476,31.47888,33,33,33,33,,,,,,,,,,,5160,5160,0.906154,0.906154,0.906154,0.906154,0.906154,0.906154,0.906154,0.906154,0.361555,0.361555,33,33,, +15861,0,0.315646,1,1,0,2,5,,3,2,Howe,Rd,4712012,0.181,0.496,0,6.763847,8,4.5,0.757551,0.757551,0.757551,0.757551,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.757866,0.757551,0.757551,0.757551,0.757866,0.757551,0.757603,0.757551,0.757551,0.757551,0.757603,0.757551,0.761594,0.757578,0.757551,0.757551,0.761594,0.757578,0.757551,0.757551,0.757551,0.757551,0.757551,0.757551,,,,,,,0.757866,0.757551,0.757603,0.757551,0.761594,0.757578,0.757551,0.757551,0.757551,0.757551,0.284176,0.284082,0.284097,0.284082,0.285294,0.28409,0.284082,0.284082,0.148354,0.148354,24.989603,24.999999,24.998296,25,24.867297,24.99911,25,25,25,25,,,,,,,,,,,2408,2408,0.757551,0.757551,0.757551,0.757551,0.757551,0.757551,0.757551,0.757551,0.284082,0.284082,25,25,, +16428,0,0.395251,1,1,0,2,4,,3,2,Cherry Hill,Rd,1607409,5.877,6.273,0,8.469663,6,4.5,0.718638,0.718638,0.718638,0.718638,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.981215,1.045011,0.718638,0.718638,1.981215,1.045011,1.115424,1.061482,0.718638,0.718638,1.115424,1.061482,1.712574,2.388326,0.718638,0.718638,1.712574,2.388326,0.718638,0.718638,0.718638,0.718638,0.718638,0.718638,,,,,,,1.981215,1.045011,1.115424,1.061482,1.712574,2.388326,0.718638,0.718638,0.718638,0.718638,0.66551,0.384648,0.405772,0.38959,0.584917,0.787643,0.286737,0.286737,0.151273,0.151273,11.969955,22.6936,21.261021,22.341467,13.847612,9.929575,33,33,33,33,,,,,,,,,,,2580,2580,0.718638,0.718638,0.718638,0.718638,0.718638,0.718638,0.718638,0.718638,0.286737,0.286737,33,33,, +16440,-1,1.541746,0,3,0,1,1,,4,2,S I 275,,1607610,12.587,14.128,0,,0.8,7.5,,1.321496,,1.321496,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.332304,,1.321496,,1.332304,,1.322289,,1.321496,,1.322289,,1.408227,,1.321496,,1.408227,,1.321496,,1.321496,,1.321496,,,,,,,,1.332304,,1.322289,,1.408227,,1.321496,,1.321496,,0.677206,,0.674201,,0.699982,,0.673963,,0.367816,,69.432148,,69.958054,,65.688793,,70,,70,,,,,,,,,,,,22704,,1.321496,,1.321496,,1.321496,,1.321496,,0.673963,,70,, +16441,-1,1.737041,0,3,0,1,1,,4,2,S I 275,,1607610,10.168,11.904,0,,0.8,7.5,,1.488892,,1.488892,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.493003,,1.488892,,1.493003,,1.489108,,1.488892,,1.489108,,1.526138,,1.488892,,1.526138,,1.488892,,1.488892,,1.488892,,,,,,,,1.493003,,1.489108,,1.526138,,1.488892,,1.488892,,0.760568,,0.7594,,0.770509,,0.759335,,0.414408,,69.807247,,69.989857,,68.291641,,70,,70,,,,,,,,,,,,22704,,1.488892,,1.488892,,1.488892,,1.488892,,0.759335,,70,, +16501,0,0.272687,1,1,0,2,4,,3,2,Palmer,Rd,1607406,3.016,3.289,0,5.843284,6,4.5,0.495794,0.495794,0.495794,0.495794,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.842455,0.619296,0.495794,0.495794,0.842455,0.619296,0.585318,0.598424,0.495794,0.495794,0.585318,0.598424,0.910063,0.956888,0.495794,0.495794,0.910063,0.956888,0.495794,0.495794,0.495794,0.495794,0.495794,0.495794,,,,,,,0.842455,0.619296,0.585318,0.598424,0.910063,0.956888,0.495794,0.495794,0.495794,0.495794,0.30182,0.234872,0.224679,0.228611,0.322102,0.33615,0.197822,0.197822,0.104365,0.104365,19.420851,26.419017,27.952657,27.340493,17.978099,17.098336,33,33,33,33,,,,,,,,,,,2580,2580,0.495794,0.495794,0.495794,0.495794,0.495794,0.495794,0.495794,0.495794,0.197822,0.197822,33,33,, +16760,1,1.451361,3,0,0,1,1,,4,2,N I 275,,1607208,12.521,13.972,0,,0.8,7.5,1.244024,,1.244024,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.294586,,1.244024,,1.294586,,1.244598,,1.244024,,1.244598,,1.272353,,1.244024,,1.272353,,1.244024,,1.244024,,1.244024,,,,,,,,1.294586,,1.244598,,1.272353,,1.244024,,1.244024,,0.649621,,0.634624,,0.642951,,0.634452,,0.346253,,67.266016,,69.967685,,68.441421,,70,,70,,,,,,,,,,,,22704,,1.244024,,1.244024,,1.244024,,1.244024,,0.634452,,70,,, +16767,1,1.807045,3,0,0,1,1,,4,2,N I 275,,1607208,10.015,11.821,0,,0.8,7.5,1.548896,,1.548896,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.570512,,1.548896,,1.570512,,1.54908,,1.548896,,1.54908,,1.559574,,1.548896,,1.559574,,1.548896,,1.548896,,1.548896,,,,,,,,1.570512,,1.54908,,1.559574,,1.548896,,1.548896,,0.796422,,0.789992,,0.79314,,0.789937,,0.431109,,69.036546,,69.991697,,69.520732,,70,,70,,,,,,,,,,,,22704,,1.548896,,1.548896,,1.548896,,1.548896,,0.789937,,70,,, +16914,-1,0.59181,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4718970,0,0.592,0,12.681639,4.5,4.5,,0.825781,,0.825781,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.82777,,0.825781,,0.82777,,0.826288,,0.825781,,0.826288,,0.839064,,0.825781,,0.839064,,0.825781,,0.825781,,0.825781,,,,,,,,0.82777,,0.826288,,0.839064,,0.825781,,0.825781,,0.354857,,0.354412,,0.358245,,0.35426,,0.188966,,42.896679,,42.973641,,42.319272,,43,,43,,,,,,,,,,,,6880,,0.825781,,0.825781,,0.825781,,0.825781,,0.35426,,43,, +17725,0,0.359319,1,1,0,2,4,,3,2,Hannan,Rd,1710309,7.48,7.839,0,7.699687,6,4.5,0.653307,0.653307,0.653307,0.653307,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.696486,0.67509,0.653307,0.653307,0.696486,0.67509,0.669135,0.659174,0.653307,0.653307,0.669135,0.659174,0.708655,0.700449,0.653307,0.653307,0.708655,0.700449,0.653307,0.653307,0.653307,0.653307,0.653307,0.653307,,,,,,,0.696486,0.67509,0.669135,0.659174,0.708655,0.700449,0.653307,0.653307,0.653307,0.653307,0.273623,0.267204,0.265418,0.26243,0.277274,0.274812,0.260669,0.260669,0.137521,0.137521,30.954153,31.935188,32.219384,32.706253,30.422587,30.779003,33,33,33,33,,,,,,,,,,,2580,2580,0.653307,0.653307,0.653307,0.653307,0.653307,0.653307,0.653307,0.653307,0.260669,0.260669,33,33,, +17772,0,0.589125,1,1,0,2,4,,4,2,Tyler,Rd,1675701,3.489,4.078,0,12.624102,4.5,4.5,0.930197,0.930197,0.930197,0.930197,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.933252,1.019379,0.930197,0.930197,0.933252,1.019379,0.939953,0.940396,0.930197,0.930197,0.939953,0.940396,1.094859,0.94296,0.930197,0.930197,1.094859,0.94296,0.930197,0.930197,0.930197,0.930197,0.930197,0.930197,,,,,,,0.933252,1.019379,0.939953,0.940396,1.094859,0.94296,0.930197,0.930197,0.930197,0.930197,0.386018,0.411856,0.388028,0.388161,0.4345,0.38893,0.385102,0.385102,0.204333,0.204333,37.875594,34.675517,37.605576,37.587856,32.284975,37.485668,38,38,38,38,,,,,,,,,,,3096,3096,0.930197,0.930197,0.930197,0.930197,0.930197,0.930197,0.930197,0.930197,0.385102,0.385102,38,38,, +17907,0,0.134841,1,1,0,2,4,,4,2,Van Born,Rd,1670110,2.998,3.133,0,2.889453,4.5,4.5,0.212907,0.212907,0.212907,0.212907,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.21542,0.213156,0.212907,0.212907,0.21542,0.213156,0.213285,0.213091,0.212907,0.212907,0.213285,0.213091,0.216021,0.216696,0.212907,0.212907,0.216021,0.216696,0.212907,0.212907,0.212907,0.212907,0.212907,0.212907,,,,,,,0.21542,0.213156,0.213285,0.213091,0.216021,0.216696,0.212907,0.212907,0.212907,0.212907,0.088897,0.088218,0.088257,0.088199,0.089078,0.08928,0.088144,0.088144,0.046769,0.046769,37.556752,37.955591,37.932668,37.967137,37.452315,37.335653,38,38,38,38,,,,,,,,,,,3096,3096,0.212907,0.212907,0.212907,0.212907,0.212907,0.212907,0.212907,0.212907,0.088144,0.088144,38,38,, +18285,0,0.771599,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,0.297,1.068,0,16.534274,5.8,4.5,1.714665,1.714665,1.714665,1.714665,27,27,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,1.71468,1.714666,1.714665,1.714665,1.71468,1.714666,1.714666,1.714666,1.714665,1.714665,1.714666,1.714666,1.714682,1.714744,1.714665,1.714665,1.714682,1.714744,1.714665,1.714665,1.714665,1.714665,1.714665,1.714665,,,,,,,1.71468,1.714666,1.714666,1.714666,1.714682,1.714744,1.714665,1.714665,1.714665,1.714665,0.653292,0.653288,0.653288,0.653288,0.653293,0.653311,0.653288,0.653288,0.342076,0.342076,26.999774,26.999987,26.999997,26.999998,26.99974,26.998769,27,27,27,27,,,,,,,,,,,5160,5160,1.714665,1.714665,1.714665,1.714665,1.714665,1.714665,1.714665,1.714665,0.653288,0.653288,27,27,, +18433,0,0.27236,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,0,0.272,0,5.836296,8,4.5,0.653665,0.653665,0.653665,0.653665,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.662245,0.653665,0.653665,0.653665,0.662245,0.653665,0.654073,0.653982,0.653665,0.653665,0.654073,0.653982,0.793371,0.745588,0.653665,0.653665,0.793371,0.745588,0.653665,0.653665,0.653665,0.653665,0.653665,0.653665,,,,,,,0.662245,0.653665,0.654073,0.653982,0.793371,0.745588,0.653665,0.653665,0.653665,0.653665,0.247698,0.245124,0.245247,0.245219,0.287036,0.272701,0.245124,0.245124,0.128009,0.128009,24.676096,24.999996,24.98443,24.987891,20.597726,21.917785,25,25,25,25,,,,,,,,,,,2408,2408,0.653665,0.653665,0.653665,0.653665,0.653665,0.653665,0.653665,0.653665,0.245124,0.245124,25,25,, +18465,0,0.570459,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.401,8.972,0,12.224129,6,4.5,1.037199,1.037199,1.037199,1.037199,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.084425,1.308925,1.037199,1.037199,1.084425,1.308925,1.058729,1.09362,1.037199,1.037199,1.058729,1.09362,1.583207,1.270763,1.037199,1.037199,1.583207,1.270763,1.037199,1.037199,1.037199,1.037199,1.037199,1.037199,,,,,,,1.084425,1.308925,1.058729,1.09362,1.583207,1.270763,1.037199,1.037199,1.037199,1.037199,0.42801,0.49536,0.420302,0.430769,0.577645,0.483912,0.413842,0.413842,0.21833,0.21833,31.562856,26.149361,32.328902,31.297488,21.619127,26.934656,33,33,33,33,,,,,,,,,,,2580,2580,1.037199,1.037199,1.037199,1.037199,1.037199,1.037199,1.037199,1.037199,0.413842,0.413842,33,33,, +19231,0,0.746846,1,1,0,2,5,,4,2,South Service,Rd,1811006,5.699,6.445,0,16.003836,5.8,4.5,1.659657,1.659657,1.659657,1.659657,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.664007,1.659657,1.659657,1.659657,1.664007,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,,,,,,,1.664007,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,0.633634,0.632329,0.632329,0.632329,0.632329,0.632329,0.632329,0.632329,0.331102,0.331102,26.929413,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,1.659657,0.632329,0.632329,27,27,, +21532,0,0.889587,1,1,0,2,5,,4,2,North Service,Rd,4603886,5.69,6.579,0,19.062585,5.8,4.5,1.976861,1.976861,1.976861,1.976861,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.977052,1.97702,1.976861,1.976861,1.977052,1.97702,1.976862,1.976947,1.976861,1.976861,1.976862,1.976947,1.976874,2.00885,1.976861,1.976861,1.976874,2.00885,1.976861,1.976861,1.976861,1.976861,1.976861,1.976861,,,,,,,1.977052,1.97702,1.976862,1.976947,1.976874,2.00885,1.976861,1.976861,1.976861,1.976861,0.753241,0.753232,0.753184,0.75321,0.753188,0.762781,0.753184,0.753184,0.394384,0.394384,26.997393,26.997825,26.999984,26.998826,26.999812,26.570041,27,27,27,27,,,,,,,,,,,2580,2580,1.976861,1.976861,1.976861,1.976861,1.976861,1.976861,1.976861,1.976861,0.753184,0.753184,27,27,, +22537,0,0.654394,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,4.226,4.88,0,14.022719,4.5,4.5,1.033253,1.033253,1.033253,1.033253,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.102905,1.044593,1.033253,1.033253,1.102905,1.044593,1.037277,1.035783,1.033253,1.033253,1.037277,1.035783,1.120788,1.075114,1.033253,1.033253,1.120788,1.075114,1.033253,1.033253,1.033253,1.033253,1.033253,1.033253,,,,,,,1.102905,1.044593,1.037277,1.035783,1.120788,1.075114,1.033253,1.033253,1.033253,1.033253,0.448662,0.431169,0.428974,0.428526,0.454027,0.440325,0.427767,0.427767,0.226971,0.226971,35.60018,37.587468,37.852567,37.907197,35.032139,36.520418,38,38,38,38,,,,,,,,,,,3096,3096,1.033253,1.033253,1.033253,1.033253,1.033253,1.033253,1.033253,1.033253,0.427767,0.427767,38,38,, +22921,0,0.445323,2,2,0,2,3,,4,2,Belleville,Rd,4705580,4.049,4.495,0,9.542643,3.7,5,0.667985,0.667985,0.667985,0.667985,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.673799,0.670941,0.667985,0.667985,0.673799,0.670941,0.669793,0.669245,0.667985,0.667985,0.669793,0.669245,0.679033,0.679333,0.667985,0.667985,0.679033,0.679333,0.667985,0.667985,0.667985,0.667985,0.667985,0.667985,,,,,,,0.673799,0.670941,0.669793,0.669245,0.679033,0.679333,0.667985,0.667985,0.667985,0.667985,0.282298,0.28144,0.281096,0.280932,0.283868,0.283958,0.280554,0.280554,0.149183,0.149183,39.654857,39.823773,39.892055,39.924686,39.349189,39.331831,40,40,40,40,,,,,,,,,,,7568,7568,0.667985,0.667985,0.667985,0.667985,0.667985,0.667985,0.667985,0.667985,0.280554,0.280554,40,40,, +22991,0,0.525789,1,1,0,2,4,,4,2,Huron River,Dr,4705582,2.951,3.477,0,11.266906,4.5,4.5,0.830193,0.830193,0.830193,0.830193,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.127398,0.843449,0.830193,0.830193,1.127398,0.843449,0.865888,0.838744,0.830193,0.830193,0.865888,0.838744,0.942082,1.05558,0.830193,0.830193,0.942082,1.05558,0.830193,0.830193,0.830193,0.830193,0.830193,0.830193,,,,,,,1.127398,0.843449,0.865888,0.838744,0.942082,1.05558,0.830193,0.830193,0.830193,0.830193,0.432861,0.347677,0.354408,0.346265,0.377267,0.411316,0.3437,0.3437,0.182366,0.182366,27.982433,37.402791,36.4335,37.612597,33.486813,29.886267,38,38,38,38,,,,,,,,,,,3096,3096,0.830193,0.830193,0.830193,0.830193,0.830193,0.830193,0.830193,0.830193,0.3437,0.3437,38,38,, +23268,-1,0.376684,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,6.129,6.506,0,8.071803,3.7,5,,0.502246,,0.502246,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.524532,,0.502246,,0.524532,,0.514519,,0.502246,,0.514519,,0.644656,,0.502246,,0.644656,,0.502246,,0.502246,,0.502246,,,,,,,,0.524532,,0.514519,,0.644656,,0.502246,,0.502246,,0.225163,,0.222159,,0.2612,,0.218477,,0.116772,,43.088022,,43.926523,,35.059095,,45,,45,,,,,,,,,,,,15136,,0.502246,,0.502246,,0.502246,,0.502246,,0.218477,,45,, +24063,0,0.360308,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.878,6.239,0,7.720884,4.5,4.5,0.568907,0.568907,0.568907,0.568907,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.858552,0.757528,0.568907,0.568907,0.858552,0.757528,0.752853,0.741674,0.568907,0.568907,0.752853,0.741674,1.006024,1.107571,0.568907,0.568907,1.006024,1.107571,0.568907,0.568907,0.568907,0.568907,0.568907,0.568907,,,,,,,0.858552,0.757528,0.752853,0.741674,1.006024,1.107571,0.568907,0.568907,0.568907,0.568907,0.322421,0.292114,0.290711,0.287358,0.366663,0.397127,0.235528,0.235528,0.12497,0.12497,25.180165,28.538183,28.715388,29.148222,21.489019,19.518815,38,38,38,38,,,,,,,,,,,3096,3096,0.568907,0.568907,0.568907,0.568907,0.568907,0.568907,0.568907,0.568907,0.235528,0.235528,38,38,, +24480,0,0.346931,2,2,1,2,3,,3,2,Wayne,Rd,4719470,5.321,5.668,0,7.434232,5,5,0.594739,0.594739,0.594739,0.594739,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.622431,0.668771,0.594739,0.594739,0.622431,0.668771,0.604884,0.61036,0.594739,0.594739,0.604884,0.61036,0.670812,0.68735,0.594739,0.594739,0.670812,0.68735,0.594739,0.594739,0.594739,0.594739,0.594739,0.594739,,,,,,,0.622431,0.668771,0.604884,0.61036,0.670812,0.68735,0.594739,0.594739,0.594739,0.594739,0.249177,0.263079,0.243913,0.245556,0.263691,0.268653,0.240869,0.240869,0.127373,0.127373,33.442818,31.125512,34.412954,34.104222,31.030832,30.28421,35,35,35,35,,,,,,,,,,,7946,7946,0.594739,0.594739,0.594739,0.594739,0.594739,0.594739,0.594739,0.594739,0.240869,0.240869,35,35,, +31254,0,0.521082,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.16604,0.15,4,2.084327,2.084327,2.084327,2.084327,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,,,,,,,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,0.719093,0.719093,0.719093,0.719093,0.719093,0.719093,0.719093,0.719093,0.369968,0.369968,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,2.084327,0.719093,0.719093,15,15,, +31554,0,0.598162,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.817751,0.15,4,2.392647,2.392647,2.392647,2.392647,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,,,,,,,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,0.825463,0.825463,0.825463,0.825463,0.825463,0.825463,0.825463,0.825463,0.424695,0.424695,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,2.392647,0.825463,0.825463,15,15,, +31561,0,0.392491,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.410524,0.15,4,2.354947,2.354947,2.354947,2.354947,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,,,,,,,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,0.777132,0.777132,0.777132,0.777132,0.777132,0.777132,0.777132,0.777132,0.396416,0.396416,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,2.354947,0.777132,0.777132,10,10,, +31565,0,0.512741,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.987309,0.15,4,2.050964,2.050964,2.050964,2.050964,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,,,,,,,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,0.707583,0.707583,0.707583,0.707583,0.707583,0.707583,0.707583,0.707583,0.364046,0.364046,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,2.050964,0.707583,0.707583,15,15,, +31568,0,0.359532,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.704254,0.15,4,1.438127,1.438127,1.438127,1.438127,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,,,,,,,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,0.496154,0.496154,0.496154,0.496154,0.496154,0.496154,0.496154,0.496154,0.255268,0.255268,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,1.438127,0.496154,0.496154,15,15,, +31569,0,0.396252,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.491113,0.15,4,1.585008,1.585008,1.585008,1.585008,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,,,,,,,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,0.546828,0.546828,0.546828,0.546828,0.546828,0.546828,0.546828,0.546828,0.281339,0.281339,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,1.585008,0.546828,0.546828,15,15,, +31570,0,0.342234,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.333584,0.15,4,1.368936,1.368936,1.368936,1.368936,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,,,,,,,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,0.472283,0.472283,0.472283,0.472283,0.472283,0.472283,0.472283,0.472283,0.242986,0.242986,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,1.368936,0.472283,0.472283,15,15,, +31571,0,0.307439,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.587984,0.15,4,1.229757,1.229757,1.229757,1.229757,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,,,,,,,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,0.424266,0.424266,0.424266,0.424266,0.424266,0.424266,0.424266,0.424266,0.218282,0.218282,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,1.229757,0.424266,0.424266,15,15,, +31582,0,0.840137,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.002945,0.15,4,5.040825,5.040825,5.040825,5.040825,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,,,,,,,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,1.663472,1.663472,1.663472,1.663472,1.663472,1.663472,1.663472,1.663472,0.848539,0.848539,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,5.040825,1.663472,1.663472,10,10,, +33792,0,0.288401,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.180031,0.15,4,1.153606,1.153606,1.153606,1.153606,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,,,,,,,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,0.397994,0.397994,0.397994,0.397994,0.397994,0.397994,0.397994,0.397994,0.204765,0.204765,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,1.153606,0.397994,0.397994,15,15,, +33793,0,0.927493,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,19.874852,0.15,4,5.564959,5.564959,5.564959,5.564959,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,,,,,,,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,1.836436,1.836436,1.836436,1.836436,1.836436,1.836436,1.836436,1.836436,0.936768,0.936768,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,5.564959,1.836436,1.836436,10,10,, +33941,0,0.323209,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.9259,0.15,4,1.939252,1.939252,1.939252,1.939252,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,,,,,,,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,0.639953,0.639953,0.639953,0.639953,0.639953,0.639953,0.639953,0.639953,0.326441,0.326441,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,1.939252,0.639953,0.639953,10,10,, +33963,0,0.858412,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.394538,0.15,4,5.150471,5.150471,5.150471,5.150471,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,,,,,,,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,1.699655,1.699655,1.699655,1.699655,1.699655,1.699655,1.699655,1.699655,0.866996,0.866996,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,5.150471,1.699655,1.699655,10,10,, +33964,0,0.524629,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.242055,0.15,4,3.147775,3.147775,3.147775,3.147775,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,,,,,,,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,1.038766,1.038766,1.038766,1.038766,1.038766,1.038766,1.038766,1.038766,0.529876,0.529876,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,3.147775,1.038766,1.038766,10,10,, +10977,1,1.701979,3,0,0,1,1,,4,2,E I 94,,1576405,3.348,5.049,0,,0.8,7.5,1.458839,,1.458839,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.702777,,1.458839,,1.702777,,1.459623,,1.458839,,1.459623,,1.505672,,1.458839,,1.505672,,1.458839,,1.458839,,1.458839,,,,,,,,1.702777,,1.459623,,1.505672,,1.458839,,1.458839,,0.817189,,0.744243,,0.758058,,0.744008,,0.406044,,59.971878,,69.962414,,67.822687,,70,,70,,,,,,,,,,,,22704,,1.458839,,1.458839,,1.458839,,1.458839,,0.744008,,70,,, +14121,-1,1.651166,0,3,0,1,1,,4,2,W I 94,,1588802,3.368,5.018,0,,0.8,7.5,,1.415285,,1.415285,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.485791,,1.415285,,1.485791,,1.415909,,1.415285,,1.415909,,1.563209,,1.415285,,1.563209,,1.415285,,1.415285,,1.415285,,,,,,,,1.485791,,1.415909,,1.563209,,1.415285,,1.415285,,0.742947,,0.721982,,0.766173,,0.721795,,0.393921,,66.678278,,69.96918,,63.376001,,70,,70,,,,,,,,,,,,22704,,1.415285,,1.415285,,1.415285,,1.415285,,0.721795,,70,, +16943,0,0.993683,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,0.334,1.327,0,21.293217,4.5,4.5,1.568974,1.568974,1.568974,1.568974,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.651982,1.801613,1.568974,1.568974,2.651982,1.801613,1.607927,1.59367,1.568974,1.568974,1.607927,1.59367,2.015767,2.402352,1.568974,1.568974,2.015767,2.402352,1.568974,1.568974,1.568974,1.568974,1.568974,1.568974,,,,,,,2.651982,1.801613,1.607927,1.59367,2.015767,2.402352,1.568974,1.568974,1.568974,1.568974,0.974458,0.719347,0.661241,0.656964,0.783593,0.899569,0.649555,0.649555,0.344651,0.344651,22.481676,33.093124,37.079419,37.411147,29.577335,24.817765,38,38,38,38,,,,,,,,,,,3096,3096,1.568974,1.568974,1.568974,1.568974,1.568974,1.568974,1.568974,1.568974,0.649555,0.649555,38,38,, +18136,0,0.465525,1,1,0,2,4,,4,2,Tyler,Rd,1675701,1.945,2.411,0,9.975545,4.5,4.5,0.73504,0.73504,0.73504,0.73504,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.417257,0.761573,0.73504,0.73504,1.417257,0.761573,0.781062,0.776024,0.73504,0.73504,0.781062,0.776024,0.907714,1.445945,0.73504,0.73504,0.907714,1.445945,0.73504,0.73504,0.73504,0.73504,0.73504,0.73504,,,,,,,1.417257,0.761573,0.781062,0.776024,0.907714,1.445945,0.73504,0.73504,0.73504,0.73504,0.508972,0.312267,0.318113,0.316602,0.356109,0.517578,0.304307,0.304307,0.161464,0.161464,19.708161,36.676077,35.760957,35.993125,30.771277,19.317137,38,38,38,38,,,,,,,,,,,3096,3096,0.73504,0.73504,0.73504,0.73504,0.73504,0.73504,0.73504,0.73504,0.304307,0.304307,38,38,, +18315,0,0.786489,1,1,0,2,4,,4,2,Van Born,Rd,1670110,1.333,2.12,0,16.853344,4.5,4.5,1.241825,1.241825,1.241825,1.241825,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.498524,1.246158,1.241825,1.241825,1.498524,1.246158,1.242501,1.242554,1.241825,1.241825,1.242501,1.242554,1.28124,1.362824,1.241825,1.241825,1.28124,1.362824,1.241825,1.241825,1.241825,1.241825,1.241825,1.241825,,,,,,,1.498524,1.246158,1.242501,1.242554,1.28124,1.362824,1.241825,1.241825,1.241825,1.241825,0.591125,0.515415,0.514318,0.514334,0.52594,0.550415,0.514116,0.514116,0.272788,0.272788,31.49056,37.867892,37.979335,37.977706,36.831015,34.626168,38,38,38,38,,,,,,,,,,,3096,3096,1.241825,1.241825,1.241825,1.241825,1.241825,1.241825,1.241825,1.241825,0.514116,0.514116,38,38,, +19232,0,1.145059,1,1,0,2,5,,4,2,South Service,Rd,1811006,4.554,5.699,0,24.536973,5.8,4.5,2.544575,2.544575,2.544575,2.544575,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.627408,2.544577,2.544575,2.544575,2.627408,2.544577,2.544576,2.544578,2.544575,2.544575,2.544576,2.544578,2.544578,2.618551,2.544575,2.544575,2.544578,2.618551,2.544575,2.544575,2.544575,2.544575,2.544575,2.544575,,,,,,,2.627408,2.544577,2.544576,2.544578,2.544578,2.618551,2.544575,2.544575,2.544575,2.544575,0.994333,0.969484,0.969483,0.969484,0.969484,0.991676,0.969483,0.969483,0.507643,0.507643,26.148782,26.999977,26.999988,26.999967,26.999964,26.237228,27,27,27,27,,,,,,,,,,,2580,2580,2.544575,2.544575,2.544575,2.544575,2.544575,2.544575,2.544575,2.544575,0.969483,0.969483,27,27,, +21745,0,1.249742,1,1,0,2,5,,4,2,North Service,Rd,4603886,4.441,5.69,0,26.780194,5.8,4.5,2.777205,2.777205,2.777205,2.777205,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.899423,2.783557,2.777205,2.777205,2.899423,2.783557,2.791062,2.789849,2.777205,2.777205,2.791062,2.789849,2.831954,2.914637,2.777205,2.777205,2.831954,2.914637,2.777205,2.777205,2.777205,2.777205,2.777205,2.777205,,,,,,,2.899423,2.783557,2.791062,2.789849,2.831954,2.914637,2.777205,2.777205,2.777205,2.777205,1.094781,1.060021,1.062272,1.061908,1.07454,1.099345,1.058115,1.058115,0.554052,0.554052,25.861884,26.938391,26.86595,26.877636,26.478024,25.72689,27,27,27,27,,,,,,,,,,,2580,2580,2.777205,2.777205,2.777205,2.777205,2.777205,2.777205,2.777205,2.777205,1.058115,1.058115,27,27,, +22927,0,0.476975,1,1,0,2,4,,4,2,Huron River,Dr,4705582,1.148,1.625,0,10.220888,4.5,4.5,0.753118,0.753118,0.753118,0.753118,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.783454,0.758742,0.753118,0.753118,0.783454,0.758742,0.756361,0.756257,0.753118,0.753118,0.756361,0.756257,0.768039,0.812531,0.753118,0.753118,0.768039,0.812531,0.753118,0.753118,0.753118,0.753118,0.753118,0.753118,,,,,,,0.783454,0.758742,0.756361,0.756257,0.768039,0.812531,0.753118,0.753118,0.753118,0.753118,0.320892,0.313478,0.312764,0.312733,0.316267,0.329615,0.311791,0.311791,0.165435,0.165435,36.528611,37.718315,37.837063,37.842256,37.261753,35.221394,38,38,38,38,,,,,,,,,,,3096,3096,0.753118,0.753118,0.753118,0.753118,0.753118,0.753118,0.753118,0.753118,0.311791,0.311791,38,38,, +22943,0,0.505339,1,1,0,2,3,,4,2,Belleville,Rd,4705580,1.884,2.389,0,10.828693,3.7,5,0.758009,0.758009,0.758009,0.758009,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.007885,0.905006,0.758009,0.758009,1.007885,0.905006,0.865111,0.851201,0.758009,0.758009,0.865111,0.851201,1.200681,1.249021,0.758009,0.758009,1.200681,1.249021,0.758009,0.758009,0.758009,0.758009,0.758009,0.758009,,,,,,,1.007885,0.905006,0.865111,0.851201,1.200681,1.249021,0.758009,0.758009,0.758009,0.758009,0.393326,0.362463,0.350494,0.346321,0.451165,0.465667,0.318364,0.318364,0.169289,0.169289,30.083151,33.502929,35.047902,35.620646,25.252617,24.275293,40,40,40,40,,,,,,,,,,,3784,3784,0.758009,0.758009,0.758009,0.758009,0.758009,0.758009,0.758009,0.758009,0.318364,0.318364,40,40,, +23530,0,0.576843,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,1.825,2.401,0,12.360927,4.5,4.5,0.910805,0.910805,0.910805,0.910805,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.996385,1.054372,0.910805,0.910805,0.996385,1.054372,0.937901,1.000073,0.910805,0.910805,0.937901,1.000073,1.092103,1.083099,0.910805,0.910805,1.092103,1.083099,0.910805,0.910805,0.910805,0.910805,0.910805,0.910805,,,,,,,0.996385,1.054372,0.937901,1.000073,1.092103,1.083099,0.910805,0.910805,0.910805,0.910805,0.402747,0.420143,0.385202,0.403854,0.431463,0.428761,0.377073,0.377073,0.200074,0.200074,34.736172,32.825781,36.902187,34.60806,31.691681,31.95516,38,38,38,38,,,,,,,,,,,3096,3096,0.910805,0.910805,0.910805,0.910805,0.910805,0.910805,0.910805,0.910805,0.377073,0.377073,38,38,, +31246,0,0.505341,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.82873,0.15,4,2.021363,2.021363,2.021363,2.021363,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,,,,,,,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,0.69737,0.69737,0.69737,0.69737,0.69737,0.69737,0.69737,0.69737,0.358792,0.358792,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,2.021363,0.69737,0.69737,15,15,, +31250,0,0.526657,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.285509,0.15,4,2.106628,2.106628,2.106628,2.106628,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,,,,,,,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,0.726787,0.726787,0.726787,0.726787,0.726787,0.726787,0.726787,0.726787,0.373927,0.373927,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,2.106628,0.726787,0.726787,15,15,, +31252,0,0.495409,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.615916,0.15,4,1.981638,1.981638,1.981638,1.981638,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,,,,,,,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,0.683665,0.683665,0.683665,0.683665,0.683665,0.683665,0.683665,0.683665,0.351741,0.351741,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,1.981638,0.683665,0.683665,15,15,, +31364,0,0.588283,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.606073,0.15,4,2.353134,2.353134,2.353134,2.353134,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,,,,,,,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,0.811831,0.811831,0.811831,0.811831,0.811831,0.811831,0.811831,0.811831,0.417681,0.417681,14.999997,15,15,15,15,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,2.353134,0.811831,0.811831,15,15,, +31365,0,0.451741,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.680157,0.15,4,1.806963,1.806963,1.806963,1.806963,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,,,,,,,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,0.623402,0.623402,0.623402,0.623402,0.623402,0.623402,0.623402,0.623402,0.320736,0.320736,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,1.806963,0.623402,0.623402,15,15,, +31599,0,1.045052,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.393967,0.15,4,4.180207,4.180207,4.180207,4.180207,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,,,,,,,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,1.442172,1.442172,1.442172,1.442172,1.442172,1.442172,1.442172,1.442172,0.741987,0.741987,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,4.180207,1.442172,1.442172,15,15,, +14416,1,0.393969,1,0,0,1,1,ROF,4,2,W I 94/Belleville,RAMP,1588806,0,0.394,0,,2.24,5,0.590953,,0.590953,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.594445,,0.590953,,0.594445,,0.593505,,0.590953,,0.593505,,0.645952,,0.590953,,0.645952,,0.590953,,0.590953,,0.590953,,,,,,,,0.594445,,0.593505,,0.645952,,0.590953,,0.590953,,0.249248,,0.248966,,0.2647,,0.2482,,0.13198,,39.765067,,39.828026,,36.594244,,40,,40,,,,,,,,,,,,5160,,0.590953,,0.590953,,0.590953,,0.590953,,0.2482,,40,,, +19028,0,0.677489,1,1,0,2,4,,4,2,Tyler,Rd,1675701,0.925,1.603,0,14.517625,4.5,4.5,1.06972,1.06972,1.06972,1.06972,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.085417,1.088272,1.06972,1.06972,1.085417,1.088272,1.076017,1.075893,1.06972,1.06972,1.076017,1.075893,1.134537,1.129035,1.06972,1.06972,1.134537,1.129035,1.06972,1.06972,1.06972,1.06972,1.06972,1.06972,,,,,,,1.085417,1.088272,1.076017,1.075893,1.134537,1.129035,1.06972,1.06972,1.06972,1.06972,0.447573,0.44843,0.444753,0.444716,0.462309,0.460659,0.442864,0.442864,0.234982,0.234982,37.450439,37.352192,37.777592,37.781949,35.82903,36.003607,38,38,38,38,,,,,,,,,,,3096,3096,1.06972,1.06972,1.06972,1.06972,1.06972,1.06972,1.06972,1.06972,0.442864,0.442864,38,38,, +19234,0,1.090909,1,1,0,2,5,,4,2,South Service,Rd,1811006,3.224,4.314,0,23.376614,5.8,4.5,2.424241,2.424241,2.424241,2.424241,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.492271,2.470281,2.424241,2.424241,2.492271,2.470281,2.475061,2.433815,2.424241,2.424241,2.475061,2.433815,2.620725,2.475844,2.424241,2.424241,2.620725,2.475844,2.424241,2.424241,2.424241,2.424241,2.424241,2.424241,,,,,,,2.492271,2.470281,2.475061,2.433815,2.620725,2.475844,2.424241,2.424241,2.424241,2.424241,0.944045,0.937448,0.938882,0.926508,0.982581,0.939117,0.923636,0.923636,0.483636,0.483636,26.263004,26.49679,26.445623,26.89379,24.975733,26.437251,27,27,27,27,,,,,,,,,,,2580,2580,2.424241,2.424241,2.424241,2.424241,2.424241,2.424241,2.424241,2.424241,0.923636,0.923636,27,27,, +21247,1,0.325987,1,0,0,1,1,RON,4,2,S Belleville/W I 94,RAMP,4700020,0,0.326,0,,1.09,4,0.43465,,0.43465,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.436129,,0.43465,,0.436129,,0.434764,,0.43465,,0.434764,,0.435483,,0.43465,,0.435483,,0.43465,,0.43465,,0.43465,,,,,,,,0.436129,,0.434764,,0.435483,,0.43465,,0.43465,,0.189516,,0.189107,,0.189323,,0.189073,,0.101056,,44.847424,,44.988182,,44.913934,,45,,45,,,,,,,,,,,,5160,,0.43465,,0.43465,,0.43465,,0.43465,,0.189073,,45,,, +22024,0,1.119579,1,1,0,2,5,,4,2,North Service,Rd,4603886,3.322,4.441,0,23.99098,5.8,4.5,2.487954,2.487954,2.487954,2.487954,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,2.487956,2.487954,2.487954,2.487954,2.487956,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,,,,,,,2.487954,2.487954,2.487954,2.487954,2.487954,2.487956,2.487954,2.487954,2.487954,2.487954,0.94791,0.94791,0.94791,0.94791,0.94791,0.947911,0.94791,0.94791,0.496347,0.496347,27,27,27,27,27,26.999968,27,27,27,27,,,,,,,,,,,2580,2580,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,2.487954,0.94791,0.94791,27,27,, +23165,0,0.058611,2,2,0,2,3,,4,2,Belleville,Rd,4705580,0.977,1.035,0,1.255949,3.7,5,0.087916,0.087916,0.087916,0.087916,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.089121,0.089815,0.087916,0.087916,0.089121,0.089815,0.088109,0.089781,0.087916,0.087916,0.088109,0.089781,0.089936,0.111947,0.087916,0.087916,0.089936,0.111947,0.087916,0.087916,0.087916,0.087916,0.087916,0.087916,,,,,,,0.089121,0.089815,0.088109,0.089781,0.089936,0.111947,0.087916,0.087916,0.087916,0.087916,0.037286,0.037495,0.036983,0.037484,0.037531,0.044134,0.036925,0.036925,0.019635,0.019635,39.459355,39.154394,39.91237,39.169489,39.101612,31.41355,40,40,40,40,,,,,,,,,,,7568,7568,0.087916,0.087916,0.087916,0.087916,0.087916,0.087916,0.087916,0.087916,0.036925,0.036925,40,40,, +31248,0,0.5429,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.633571,0.15,4,2.1716,2.1716,2.1716,2.1716,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,,,,,,,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,0.749202,0.749202,0.749202,0.749202,0.749202,0.749202,0.749202,0.749202,0.385459,0.385459,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,2.1716,0.749202,0.749202,15,15,, +31372,0,0.154182,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.303892,0.15,4,0.616727,0.616727,0.616727,0.616727,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,,,,,,,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.212771,0.212771,0.212771,0.212771,0.212771,0.212771,0.212771,0.212771,0.109469,0.109469,14.999999,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.616727,0.212771,0.212771,15,15,, +31597,0,1.016037,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.772224,0.15,4,4.064148,4.064148,4.064148,4.064148,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,,,,,,,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,1.402131,1.402131,1.402131,1.402131,1.402131,1.402131,1.402131,1.402131,0.721386,0.721386,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,4.064148,1.402131,1.402131,15,15,, +31600,0,0.47547,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.188646,0.15,4,1.901881,1.901881,1.901881,1.901881,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,,,,,,,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,0.656149,0.656149,0.656149,0.656149,0.656149,0.656149,0.656149,0.656149,0.337584,0.337584,14.999999,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,1.901881,0.656149,0.656149,15,15,, +10799,1,0.40035,3,0,0,1,1,,4,2,E I 94,,1576405,2.947,3.348,0,,0.8,7.5,0.343157,,0.343157,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.369343,,0.343157,,0.369343,,0.343215,,0.343157,,0.343215,,0.348184,,0.343157,,0.348184,,0.343157,,0.343157,,0.343157,,,,,,,,0.369343,,0.343215,,0.348184,,0.343157,,0.343157,,0.182866,,0.175027,,0.176518,,0.17501,,0.095512,,65.037104,,69.988222,,68.989394,,70,,70,,,,,,,,,,,,22704,,0.343157,,0.343157,,0.343157,,0.343157,,0.17501,,70,,, +11254,1,0.380655,1,0,0,1,1,RON,4,2,N Belleville/E I 94,RAMP,1576503,0,0.381,0,,1.09,4,0.50754,,0.50754,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.516293,,0.50754,,0.516293,,0.50932,,0.50754,,0.50932,,0.511172,,0.50754,,0.511172,,0.50754,,0.50754,,0.50754,,,,,,,,0.516293,,0.50932,,0.511172,,0.50754,,0.50754,,0.223406,,0.221314,,0.221869,,0.22078,,0.118003,,44.237063,,44.842707,,44.680236,,45,,45,,,,,,,,,,,,5160,,0.50754,,0.50754,,0.50754,,0.50754,,0.22078,,45,,, +13739,1,0.224087,1,0,0,1,1,RON,4,2,N Belleville/W I 94,RAMP,1588805,0,0.224,0,,1.09,4,0.298782,,0.298782,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.299015,,0.298782,,0.299015,,0.298791,,0.298782,,0.298791,,0.298807,,0.298782,,0.298807,,0.298782,,0.298782,,0.298782,,,,,,,,0.299015,,0.298791,,0.298807,,0.298782,,0.298782,,0.13004,,0.129973,,0.129978,,0.12997,,0.069467,,44.965008,,44.998677,,44.996364,,45,,45,,,,,,,,,,,,5160,,0.298782,,0.298782,,0.298782,,0.298782,,0.12997,,45,,, +14432,-1,0.290749,0,3,0,1,1,,4,2,W I 94,,1588802,2.748,3.039,0,,0.8,7.5,,0.249214,,0.249214,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.257896,,0.249214,,0.257896,,0.249251,,0.249214,,0.249251,,0.258368,,0.249214,,0.258368,,0.249214,,0.249214,,0.249214,,,,,,,,0.257896,,0.249251,,0.258368,,0.249214,,0.249214,,0.129704,,0.12711,,0.129845,,0.127099,,0.069364,,67.643371,,69.989384,,67.519661,,70,,70,,,,,,,,,,,,22704,,0.249214,,0.249214,,0.249214,,0.249214,,0.127099,,70,, +23302,0,0.099975,1,1,0,2,4,,4,2,Main,St,4705581,0.11,0.21,0,2.142331,4.5,4.5,0.157856,0.157856,0.157856,0.157856,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.391117,0.488473,0.157856,0.157856,0.391117,0.488473,0.250924,0.297081,0.157856,0.157856,0.250924,0.297081,0.542986,0.700162,0.157856,0.157856,0.542986,0.700162,0.157856,0.157856,0.157856,0.157856,0.157856,0.157856,,,,,,,0.391117,0.488473,0.250924,0.297081,0.542986,0.700162,0.157856,0.157856,0.157856,0.157856,0.135331,0.164538,0.093273,0.10712,0.180891,0.228044,0.065352,0.065352,0.034676,0.034676,15.336931,12.280151,23.905759,20.191561,11.047305,8.567346,38,38,38,38,,,,,,,,,,,3096,3096,0.157856,0.157856,0.157856,0.157856,0.157856,0.157856,0.157856,0.157856,0.065352,0.065352,38,38,, +10725,1,0.382603,1,0,0,1,1,ROF,4,2,E I 94/Belleville,RAMP,1576410,0,0.383,0,,2.24,5,0.573904,,0.573904,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.585106,,0.573904,,0.585106,,0.574866,,0.573904,,0.574866,,0.582784,,0.573904,,0.582784,,0.573904,,0.573904,,0.573904,,,,,,,,0.585106,,0.574866,,0.582784,,0.573904,,0.573904,,0.2444,,0.241328,,0.243704,,0.24104,,0.128172,,39.234219,,39.933065,,39.390507,,40,,40,,,,,,,,,,,,5160,,0.573904,,0.573904,,0.573904,,0.573904,,0.24104,,40,,, +11013,1,0.310806,3,0,0,1,1,,4,2,E I 94,,1576405,2.637,2.947,0,,0.8,7.5,0.266405,,0.266405,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.284364,,0.266405,,0.284364,,0.266442,,0.266405,,0.266442,,0.269524,,0.266405,,0.269524,,0.266405,,0.266405,,0.266405,,,,,,,,0.284364,,0.266442,,0.269524,,0.266405,,0.266405,,0.141254,,0.135878,,0.136802,,0.135867,,0.074149,,65.579275,,69.990484,,69.189983,,70,,70,,,,,,,,,,,,22704,,0.266405,,0.266405,,0.266405,,0.266405,,0.135867,,70,,, +22972,0,0.172362,1,1,0,2,4,,4,2,Belleville,Rd,4705580,0.576,0.748,0,3.693467,4.5,4.5,0.27215,0.27215,0.27215,0.27215,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.374416,0.799347,0.27215,0.27215,1.374416,0.799347,0.738014,0.675843,0.27215,0.27215,0.738014,0.675843,1.258486,1.579712,0.27215,0.27215,1.258486,1.579712,0.27215,0.27215,0.27215,0.27215,0.27215,0.27215,,,,,,,1.374416,0.799347,0.738014,0.675843,1.258486,1.579712,0.27215,0.27215,0.27215,0.27215,0.44335,0.270829,0.252429,0.233778,0.408571,0.504939,0.11267,0.11267,0.059782,0.059782,7.524436,12.937695,14.012891,15.301945,8.217578,6.546578,38,38,38,38,,,,,,,,,,,3096,3096,0.27215,0.27215,0.27215,0.27215,0.27215,0.27215,0.27215,0.27215,0.11267,0.11267,38,38,, +23294,0,0.355445,2,2,1,2,4,,4,2,Belleville,Rd,4705580,0.22,0.576,0,7.61667,4.5,4.5,0.561228,0.561228,0.561228,0.561228,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.641909,0.599816,0.561228,0.561228,0.641909,0.599816,0.595316,0.590767,0.561228,0.561228,0.595316,0.590767,0.633363,0.656856,0.561228,0.561228,0.633363,0.656856,0.561228,0.561228,0.561228,0.561228,0.561228,0.561228,,,,,,,0.641909,0.599816,0.595316,0.590767,0.633363,0.656856,0.561228,0.561228,0.561228,0.561228,0.256553,0.243925,0.242575,0.24121,0.253989,0.261037,0.232349,0.232349,0.123283,0.123283,33.223854,35.555338,35.824101,36.099964,33.672118,32.467829,38,38,38,38,,,,,,,,,,,6502,6502,0.561228,0.561228,0.561228,0.561228,0.561228,0.561228,0.561228,0.561228,0.232349,0.232349,38,38,, +11434,1,0.238444,1,0,0,1,1,RON,4,2,S Belleville/E I 94,RAMP,1576501,0,0.238,0,,1.09,4,0.317925,,0.317925,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.317927,,0.317925,,0.317927,,0.317926,,0.317925,,0.317926,,0.317936,,0.317925,,0.317936,,0.317925,,0.317925,,0.317925,,,,,,,,0.317927,,0.317926,,0.317936,,0.317925,,0.317925,,0.138298,,0.138297,,0.138301,,0.138297,,0.073917,,44.999621,,44.999876,,44.998363,,45,,45,,,,,,,,,,,,5160,,0.317925,,0.317925,,0.317925,,0.317925,,0.138297,,45,,, +23508,0,0.118896,2,2,0,2,3,,4,2,Belleville,Rd,4705580,0.858,0.977,0,2.54777,3.7,5,0.178344,0.178344,0.178344,0.178344,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.18896,0.182196,0.178344,0.178344,0.18896,0.182196,0.17939,0.182125,0.178344,0.178344,0.17939,0.182125,0.187514,0.227092,0.178344,0.178344,0.187514,0.227092,0.178344,0.178344,0.178344,0.178344,0.178344,0.178344,,,,,,,0.18896,0.182196,0.17939,0.182125,0.187514,0.227092,0.178344,0.178344,0.178344,0.178344,0.078089,0.07606,0.075218,0.076039,0.077655,0.089529,0.074904,0.074904,0.03983,0.03983,37.752789,39.154394,39.766763,39.169489,38.043898,31.41355,40,40,40,40,,,,,,,,,,,7568,7568,0.178344,0.178344,0.178344,0.178344,0.178344,0.178344,0.178344,0.178344,0.074904,0.074904,40,40,, +23701,0,0.06482,2,2,0,2,3,,4,2,Belleville,Rd,4705580,0.793,0.858,0,1.388997,3.7,5,0.09723,0.09723,0.09723,0.09723,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.103017,0.098466,0.09723,0.09723,0.103017,0.098466,0.0978,0.098615,0.09723,0.09723,0.0978,0.098615,0.102229,0.114065,0.09723,0.09723,0.102229,0.114065,0.09723,0.09723,0.09723,0.09723,0.09723,0.09723,,,,,,,0.103017,0.098466,0.0978,0.098615,0.102229,0.114065,0.09723,0.09723,0.09723,0.09723,0.042573,0.041207,0.041008,0.041252,0.042336,0.045887,0.040837,0.040837,0.021715,0.021715,37.752789,39.497941,39.766763,39.437942,38.043898,34.096124,40,40,40,40,,,,,,,,,,,7568,7568,0.09723,0.09723,0.09723,0.09723,0.09723,0.09723,0.09723,0.09723,0.040837,0.040837,40,40,, +22698,0,0.045001,2,2,0,2,4,,4,2,Belleville,Rd,4705580,0.748,0.793,0,0.964313,4.5,4.5,0.071055,0.071055,0.071055,0.071055,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.112006,0.087681,0.071055,0.071055,0.112006,0.087681,0.07852,0.084979,0.071055,0.071055,0.07852,0.084979,0.093623,0.168843,0.071055,0.071055,0.093623,0.168843,0.071055,0.071055,0.071055,0.071055,0.071055,0.071055,,,,,,,0.112006,0.087681,0.07852,0.084979,0.093623,0.168843,0.071055,0.071055,0.071055,0.071055,0.041702,0.034405,0.031656,0.033594,0.036187,0.058753,0.029417,0.029417,0.015608,0.015608,24.106497,30.794239,34.387045,31.77359,28.839898,15.99162,38,38,38,38,,,,,,,,,,,6192,6192,0.071055,0.071055,0.071055,0.071055,0.071055,0.071055,0.071055,0.071055,0.029417,0.029417,38,38,, +14375,-1,0.329369,0,3,0,1,1,,4,2,W I 94,,1588802,3.039,3.368,0,,0.8,7.5,,0.282316,,0.282316,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.288679,,0.282316,,0.288679,,0.282345,,0.282316,,0.282345,,0.290455,,0.282316,,0.290455,,0.282316,,0.282316,,0.282316,,,,,,,,0.288679,,0.282345,,0.290455,,0.282316,,0.282316,,0.14589,,0.14399,,0.146423,,0.143981,,0.078578,,68.457148,,69.992851,,68.038576,,70,,70,,,,,,,,,,,,22704,,0.282316,,0.282316,,0.282316,,0.282316,,0.143981,,70,, +23247,0,0.482511,2,2,1,2,3,,4,2,Belleville,Rd,4705580,1.401,1.884,0,10.33952,3.7,5,0.723766,0.723766,0.723766,0.723766,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.739644,0.727662,0.723766,0.723766,0.739644,0.727662,0.726365,0.725757,0.723766,0.723766,0.726365,0.725757,0.740507,0.743829,0.723766,0.723766,0.740507,0.743829,0.723766,0.723766,0.723766,0.723766,0.723766,0.723766,,,,,,,0.739644,0.727662,0.726365,0.725757,0.740507,0.743829,0.723766,0.723766,0.723766,0.723766,0.308745,0.305151,0.304762,0.304579,0.309004,0.310001,0.303982,0.303982,0.161641,0.161641,39.14136,39.785833,39.856874,39.890265,39.09573,38.921145,40,40,40,40,,,,,,,,,,,7946,7946,0.723766,0.723766,0.723766,0.723766,0.723766,0.723766,0.723766,0.723766,0.303982,0.303982,40,40,, +23588,0,0.309284,2,2,1,2,3,,4,2,Belleville,Rd,4705580,1.092,1.401,0,6.627516,3.7,5,0.463926,0.463926,0.463926,0.463926,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.474103,0.472154,0.463926,0.463926,0.474103,0.472154,0.465592,0.466312,0.463926,0.463926,0.465592,0.466312,0.48358,0.484313,0.463926,0.463926,0.48358,0.484313,0.463926,0.463926,0.463926,0.463926,0.463926,0.463926,,,,,,,0.474103,0.472154,0.465592,0.466312,0.48358,0.484313,0.463926,0.463926,0.463926,0.463926,0.197902,0.197317,0.195349,0.195565,0.200745,0.200965,0.194849,0.194849,0.10361,0.10361,39.14136,39.302912,39.856874,39.795332,38.374282,38.31624,40,40,40,40,,,,,,,,,,,7946,7946,0.463926,0.463926,0.463926,0.463926,0.463926,0.463926,0.463926,0.463926,0.194849,0.194849,40,40,, +22582,0,0.037077,2,2,0,2,3,,4,2,Belleville,Rd,4705580,1.055,1.092,0,0.794502,3.7,5,0.055615,0.055615,0.055615,0.055615,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.057173,0.056874,0.055615,0.055615,0.057173,0.056874,0.05587,0.05598,0.055615,0.055615,0.05587,0.05598,0.058752,0.059158,0.055615,0.055615,0.058752,0.059158,0.055615,0.055615,0.055615,0.055615,0.055615,0.055615,,,,,,,0.057173,0.056874,0.05587,0.05598,0.058752,0.059158,0.055615,0.055615,0.055615,0.055615,0.023826,0.023736,0.023435,0.023468,0.024299,0.024421,0.023358,0.023358,0.012421,0.012421,38.910291,39.114335,39.817511,39.739155,37.864572,37.604737,40,40,40,40,,,,,,,,,,,7568,7568,0.055615,0.055615,0.055615,0.055615,0.055615,0.055615,0.055615,0.055615,0.023358,0.023358,40,40,, +22874,0,0.019886,2,2,0,2,3,,4,2,Belleville,Rd,4705580,1.035,1.055,0,0.426124,3.7,5,0.029829,0.029829,0.029829,0.029829,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.030664,0.029864,0.029829,0.029829,0.030664,0.029864,0.029965,0.029861,0.029829,0.029829,0.029965,0.029861,0.031511,0.030116,0.029829,0.029829,0.031511,0.030116,0.029829,0.029829,0.029829,0.029829,0.029829,0.029829,,,,,,,0.030664,0.029864,0.029965,0.029861,0.031511,0.030116,0.029829,0.029829,0.029829,0.029829,0.012779,0.012539,0.012569,0.012538,0.013033,0.012614,0.012528,0.012528,0.006662,0.006662,38.910291,39.953038,39.817511,39.956411,37.864572,39.618289,40,40,40,40,,,,,,,,,,,7568,7568,0.029829,0.029829,0.029829,0.029829,0.029829,0.029829,0.029829,0.029829,0.012528,0.012528,40,40,, +23221,0,0.560244,1,1,0,2,4,,4,2,Huron River,Dr,4705582,0.588,1.148,0,12.005219,4.5,4.5,0.884595,0.884595,0.884595,0.884595,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.920227,0.891201,0.884595,0.884595,0.920227,0.891201,0.888404,0.888282,0.884595,0.884595,0.888404,0.888282,0.902121,0.954381,0.884595,0.884595,0.902121,0.954381,0.884595,0.884595,0.884595,0.884595,0.884595,0.884595,,,,,,,0.920227,0.891201,0.888404,0.888282,0.902121,0.954381,0.884595,0.884595,0.884595,0.884595,0.376912,0.368204,0.367365,0.367329,0.37148,0.387158,0.366222,0.366222,0.194316,0.194316,36.528611,37.718315,37.837063,37.842256,37.261753,35.221394,38,38,38,38,,,,,,,,,,,3096,3096,0.884595,0.884595,0.884595,0.884595,0.884595,0.884595,0.884595,0.884595,0.366222,0.366222,38,38,, +19233,0,0.2399,1,1,0,2,5,,4,2,South Service,Rd,1811006,4.314,4.554,0,5.140721,5.8,4.5,0.533112,0.533112,0.533112,0.533112,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.533971,0.535567,0.533112,0.533112,0.533971,0.535567,0.534111,0.53413,0.533112,0.533112,0.534111,0.53413,0.539352,0.537362,0.533112,0.533112,0.539352,0.537362,0.533112,0.533112,0.533112,0.533112,0.533112,0.533112,,,,,,,0.533971,0.535567,0.534111,0.53413,0.539352,0.537362,0.533112,0.533112,0.533112,0.533112,0.203373,0.203852,0.203415,0.203421,0.204988,0.204391,0.203116,0.203116,0.106356,0.106356,26.956549,26.876242,26.949486,26.948527,26.687602,26.786467,27,27,27,27,,,,,,,,,,,2580,2580,0.533112,0.533112,0.533112,0.533112,0.533112,0.533112,0.533112,0.533112,0.203116,0.203116,27,27,, +18557,0,0.342755,1,1,0,2,4,,4,2,Tyler,Rd,1675701,1.603,1.945,0,7.344756,4.5,4.5,0.541193,0.541193,0.541193,0.541193,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.57606,0.562484,0.541193,0.541193,0.57606,0.562484,0.549548,0.551695,0.541193,0.541193,0.549548,0.551695,0.629301,0.642954,0.541193,0.541193,0.629301,0.642954,0.541193,0.541193,0.541193,0.541193,0.541193,0.541193,,,,,,,0.57606,0.562484,0.549548,0.551695,0.629301,0.642954,0.541193,0.541193,0.541193,0.541193,0.234514,0.230441,0.22656,0.227204,0.250486,0.254582,0.224054,0.224054,0.118882,0.118882,35.699981,36.561581,37.422211,37.2766,32.679639,31.985681,38,38,38,38,,,,,,,,,,,3096,3096,0.541193,0.541193,0.541193,0.541193,0.541193,0.541193,0.541193,0.541193,0.224054,0.224054,38,38,, +31598,0,0.480276,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.291624,0.15,4,1.921103,1.921103,1.921103,1.921103,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.921106,1.921103,1.921103,1.921103,1.921106,1.921103,1.921104,1.921103,1.921103,1.921103,1.921104,1.921103,1.921104,1.921107,1.921103,1.921103,1.921104,1.921107,1.921103,1.921103,1.921103,1.921103,1.921103,1.921103,,,,,,,1.921106,1.921103,1.921104,1.921103,1.921104,1.921107,1.921103,1.921103,1.921103,1.921103,0.662781,0.662781,0.662781,0.662781,0.662781,0.662782,0.662781,0.662781,0.340996,0.340996,14.999978,14.999999,14.999996,14.999997,14.99999,14.999967,15,15,15,15,,,,,,,,,,,34400,34400,1.921103,1.921103,1.921103,1.921103,1.921103,1.921103,1.921103,1.921103,0.662781,0.662781,15,15,, +16946,0,0.068539,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,0.265,0.334,0,1.468701,4.5,4.5,0.10822,0.10822,0.10822,0.10822,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.136773,0.131141,0.10822,0.10822,0.136773,0.131141,0.109528,0.10935,0.10822,0.10822,0.109528,0.10935,0.137923,0.13406,0.10822,0.10822,0.137923,0.13406,0.10822,0.10822,0.10822,0.10822,0.10822,0.10822,,,,,,,0.136773,0.131141,0.109528,0.10935,0.137923,0.13406,0.10822,0.10822,0.10822,0.10822,0.053369,0.051679,0.045196,0.045142,0.053714,0.052555,0.044803,0.044803,0.023772,0.023772,30.066964,31.358449,37.546176,37.607449,29.816378,30.675459,38,38,38,38,,,,,,,,,,,3096,3096,0.10822,0.10822,0.10822,0.10822,0.10822,0.10822,0.10822,0.10822,0.044803,0.044803,38,38,, +17927,0,0.581035,1,1,0,2,4,,4,2,Van Born,Rd,1670110,0,0.581,0,12.450747,4.5,4.5,0.917423,0.917423,0.917423,0.917423,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.010062,0.918785,0.917423,0.917423,1.010062,0.918785,0.917883,0.917838,0.917423,0.917423,0.917883,0.917838,0.925979,0.951961,0.917423,0.917423,0.925979,0.951961,0.917423,0.917423,0.917423,0.917423,0.917423,0.917423,,,,,,,1.010062,0.918785,0.917883,0.917838,0.925979,0.951961,0.917423,0.917423,0.917423,0.917423,0.407605,0.380222,0.379951,0.379938,0.38238,0.390175,0.379813,0.379813,0.201527,0.201527,34.51479,37.943689,37.980973,37.982852,37.648884,36.62133,38,38,38,38,,,,,,,,,,,3096,3096,0.917423,0.917423,0.917423,0.917423,0.917423,0.917423,0.917423,0.917423,0.379813,0.379813,38,38,, +23561,0,0.29417,2,2,0,2,3,,4,2,Belleville,Rd,4705580,3.29,3.584,0,6.30365,3.7,5,0.441255,0.441255,0.441255,0.441255,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.46611,0.444004,0.441255,0.441255,0.46611,0.444004,0.442827,0.442772,0.441255,0.441255,0.442827,0.442772,0.455161,0.470072,0.441255,0.441255,0.455161,0.470072,0.441255,0.441255,0.441255,0.441255,0.441255,0.441255,,,,,,,0.46611,0.444004,0.442827,0.442772,0.455161,0.470072,0.441255,0.441255,0.441255,0.441255,0.192784,0.186152,0.185799,0.185782,0.189499,0.193972,0.185327,0.185327,0.098547,0.098547,37.867074,39.75243,39.858009,39.86301,38.77799,37.547925,40,40,40,40,,,,,,,,,,,7568,7568,0.441255,0.441255,0.441255,0.441255,0.441255,0.441255,0.441255,0.441255,0.185327,0.185327,40,40,, +31247,0,0.510744,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.944509,0.15,4,2.042975,2.042975,2.042975,2.042975,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,,,,,,,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,0.704826,0.704826,0.704826,0.704826,0.704826,0.704826,0.704826,0.704826,0.362628,0.362628,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,2.042975,0.704826,0.704826,15,15,, +31255,0,0.282756,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.059051,0.15,4,1.131023,1.131023,1.131023,1.131023,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,,,,,,,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,0.390203,0.390203,0.390203,0.390203,0.390203,0.390203,0.390203,0.390203,0.200757,0.200757,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,1.131023,0.390203,0.390203,15,15,, +31257,0,0.532979,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.420981,0.15,4,2.131917,2.131917,2.131917,2.131917,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,,,,,,,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,0.735511,0.735511,0.735511,0.735511,0.735511,0.735511,0.735511,0.735511,0.378415,0.378415,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,2.131917,0.735511,0.735511,15,15,, +31802,0,0.526543,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.283061,0.15,4,2.106171,2.106171,2.106171,2.106171,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,,,,,,,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,0.726629,0.726629,0.726629,0.726629,0.726629,0.726629,0.726629,0.726629,0.373845,0.373845,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,2.106171,0.726629,0.726629,15,15,, +16948,1,0.159591,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,3.115,3.275,0,3.419805,4.5,4.5,0.222685,,0.222685,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.224301,,0.222685,,0.224301,,0.222759,,0.222685,,0.222759,,0.224365,,0.222685,,0.224365,,0.222685,,0.222685,,0.222685,,,,,,,,0.224301,,0.222759,,0.224365,,0.222685,,0.222685,,0.096017,,0.095554,,0.096036,,0.095532,,0.050958,,42.690163,,42.985708,,42.677981,,43,,43,,,,,,,,,,,,6880,,0.222685,,0.222685,,0.222685,,0.222685,,0.095532,,43,,, +21554,-1,0.175826,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,3.152,3.328,0,3.767694,4.5,4.5,,0.245338,,0.245338,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.246768,,0.245338,,0.246768,,0.245409,,0.245338,,0.245409,,0.246949,,0.245338,,0.246949,,0.245338,,0.245338,,0.245338,,,,,,,,0.246768,,0.245409,,0.246949,,0.245338,,0.245338,,0.105679,,0.105271,,0.105733,,0.10525,,0.056142,,42.750933,,42.987657,,42.719584,,43,,43,,,,,,,,,,,,6880,,0.245338,,0.245338,,0.245338,,0.245338,,0.10525,,43,, +22653,0,0.477009,1,1,0,2,3,,4,2,Belleville,Rd,4705580,2.389,2.866,0,10.221614,3.7,5,0.715513,0.715513,0.715513,0.715513,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.893782,0.775715,0.715513,0.715513,0.893782,0.775715,0.786448,0.773531,0.715513,0.715513,0.786448,0.773531,0.953451,1.029587,0.715513,0.715513,0.953451,1.029587,0.715513,0.715513,0.715513,0.715513,0.715513,0.715513,,,,,,,0.893782,0.775715,0.786448,0.773531,0.953451,1.029587,0.715513,0.715513,0.715513,0.715513,0.353996,0.318576,0.321796,0.317921,0.371897,0.394738,0.300515,0.300515,0.159798,0.159798,32.021808,36.895645,36.392111,36.999813,30.017828,27.798062,40,40,40,40,,,,,,,,,,,3784,3784,0.715513,0.715513,0.715513,0.715513,0.715513,0.715513,0.715513,0.715513,0.300515,0.300515,40,40,, +22554,0,0.405546,2,2,0,2,3,,4,2,Belleville,Rd,4705580,2.884,3.29,0,8.690265,3.7,5,0.608319,0.608319,0.608319,0.608319,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.651041,0.612905,0.608319,0.608319,0.651041,0.612905,0.61098,0.610864,0.608319,0.608319,0.61098,0.610864,0.631271,0.657359,0.608319,0.608319,0.631271,0.657359,0.608319,0.608319,0.608319,0.608319,0.608319,0.608319,,,,,,,0.651041,0.612905,0.61098,0.610864,0.631271,0.657359,0.608319,0.608319,0.608319,0.608319,0.26831,0.25687,0.256292,0.256257,0.262379,0.270206,0.255494,0.255494,0.135858,0.135858,37.375137,39.700673,39.825744,39.833342,38.545651,37.0159,40,40,40,40,,,,,,,,,,,7568,7568,0.608319,0.608319,0.608319,0.608319,0.608319,0.608319,0.608319,0.608319,0.255494,0.255494,40,40,, +22848,0,0.018782,1,1,0,2,3,,4,2,Belleville,Rd,4705580,2.866,2.884,0,0.402482,3.7,5,0.028174,0.028174,0.028174,0.028174,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.06542,0.031981,0.028174,0.028174,0.06542,0.031981,0.030665,0.031818,0.028174,0.028174,0.030665,0.031818,0.05013,0.05603,0.028174,0.028174,0.05013,0.05603,0.028174,0.028174,0.028174,0.028174,0.028174,0.028174,,,,,,,0.06542,0.031981,0.030665,0.031818,0.05013,0.05603,0.028174,0.028174,0.028174,0.028174,0.023007,0.012975,0.01258,0.012926,0.01842,0.02019,0.011833,0.011833,0.006292,0.006292,17.226397,35.238315,36.75079,35.419143,22.480576,20.113263,40,40,40,40,,,,,,,,,,,3784,3784,0.028174,0.028174,0.028174,0.028174,0.028174,0.028174,0.028174,0.028174,0.011833,0.011833,40,40,, +23216,0,0.465714,2,2,0,2,3,,4,2,Belleville,Rd,4705580,3.584,4.049,0,9.979586,3.7,5,0.698571,0.698571,0.698571,0.698571,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.706309,0.701987,0.698571,0.698571,0.706309,0.701987,0.700464,0.700442,0.698571,0.698571,0.700464,0.700442,0.70999,0.714399,0.698571,0.698571,0.70999,0.714399,0.698571,0.698571,0.698571,0.698571,0.698571,0.698571,,,,,,,0.706309,0.701987,0.700464,0.700442,0.70999,0.714399,0.698571,0.698571,0.698571,0.698571,0.295721,0.294425,0.293968,0.293961,0.296825,0.298148,0.2934,0.2934,0.156014,0.156014,39.561773,39.805367,39.891888,39.893141,39.356674,39.113787,40,40,40,40,,,,,,,,,,,7568,7568,0.698571,0.698571,0.698571,0.698571,0.698571,0.698571,0.698571,0.698571,0.2934,0.2934,40,40,, +31566,0,0.385784,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.266797,0.15,4,1.543136,1.543136,1.543136,1.543136,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,,,,,,,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,0.532382,0.532382,0.532382,0.532382,0.532382,0.532382,0.532382,0.532382,0.273907,0.273907,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,1.543136,0.532382,0.532382,15,15,, +31249,0,0.498435,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.68075,0.15,4,1.99374,1.99374,1.99374,1.99374,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,,,,,,,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,0.68784,0.68784,0.68784,0.68784,0.68784,0.68784,0.68784,0.68784,0.353889,0.353889,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,1.99374,0.68784,0.68784,15,15,, +17926,0,0.719842,1,1,0,2,4,,4,2,Van Born,Rd,1670110,0.614,1.333,0,15.425184,4.5,4.5,1.136592,1.136592,1.136592,1.136592,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.404413,1.142946,1.136592,1.136592,1.404413,1.142946,1.13767,1.137694,1.136592,1.136592,1.13767,1.137694,1.190573,1.274265,1.136592,1.136592,1.190573,1.274265,1.136592,1.136592,1.136592,1.136592,1.136592,1.136592,,,,,,,1.404413,1.142946,1.13767,1.137694,1.190573,1.274265,1.136592,1.136592,1.136592,1.136592,0.550896,0.472455,0.470872,0.47088,0.486744,0.511851,0.470549,0.470549,0.249671,0.249671,30.75342,37.788753,37.964025,37.963221,36.277071,33.894452,38,38,38,38,,,,,,,,,,,3096,3096,1.136592,1.136592,1.136592,1.136592,1.136592,1.136592,1.136592,1.136592,0.470549,0.470549,38,38,, +18316,0,0.032919,1,1,0,2,4,,4,2,Van Born,Rd,1670110,0.581,0.614,0,0.705399,4.5,4.5,0.051977,0.051977,0.051977,0.051977,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.067072,0.052192,0.051977,0.051977,0.067072,0.052192,0.052036,0.052031,0.051977,0.051977,0.052036,0.052031,0.053316,0.057637,0.051977,0.051977,0.053316,0.057637,0.051977,0.051977,0.051977,0.051977,0.051977,0.051977,,,,,,,0.067072,0.052192,0.052036,0.052031,0.053316,0.057637,0.051977,0.051977,0.051977,0.051977,0.026047,0.021583,0.021536,0.021535,0.02192,0.023216,0.021518,0.021518,0.011418,0.011418,29.447823,37.843266,37.956562,37.96032,37.045484,34.268414,38,38,38,38,,,,,,,,,,,3096,3096,0.051977,0.051977,0.051977,0.051977,0.051977,0.051977,0.051977,0.051977,0.021518,0.021518,38,38,, +10764,1,0.250037,3,0,0,1,1,,4,2,E I 94,,1576405,5.049,5.299,0,,0.8,7.5,0.214318,,0.214318,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.236466,,0.214318,,0.236466,,0.214379,,0.214318,,0.214379,,0.219377,,0.214318,,0.219377,,0.214318,,0.214318,,0.214318,,,,,,,,0.236466,,0.214379,,0.219377,,0.214318,,0.214318,,0.115946,,0.10932,,0.11082,,0.109302,,0.059652,,63.443557,,69.9801,,68.385576,,70,,70,,,,,,,,,,,,22704,,0.214318,,0.214318,,0.214318,,0.214318,,0.109302,,70,,, +11255,1,0.319858,1,0,0,1,1,ROF,4,2,E I 94/Haggerty,RAMP,1576504,0,0.32,0,,2.24,5,0.479787,,0.479787,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.480366,,0.479787,,0.480366,,0.479836,,0.479787,,0.479836,,0.479809,,0.479787,,0.479809,,0.479787,,0.479787,,0.479787,,,,,,,,0.480366,,0.479836,,0.479809,,0.479787,,0.479787,,0.201684,,0.201525,,0.201517,,0.201511,,0.107153,,39.95181,,39.995969,,39.998192,,40,,40,,,,,,,,,,,,5160,,0.479787,,0.479787,,0.479787,,0.479787,,0.201511,,40,,, +13655,1,0.313074,1,0,0,1,1,RON,4,2,S Haggerty/W I 94,RAMP,1588807,0,0.313,0,,1.09,4,0.417433,,0.417433,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.417441,,0.417433,,0.417441,,0.417484,,0.417433,,0.417484,,0.418098,,0.417433,,0.418098,,0.417433,,0.417433,,0.417433,,,,,,,,0.417441,,0.417484,,0.418098,,0.417433,,0.417433,,0.181586,,0.181599,,0.181783,,0.181583,,0.097053,,44.999066,,44.99448,,44.928325,,45,,45,,,,,,,,,,,,5160,,0.417433,,0.417433,,0.417433,,0.417433,,0.181583,,45,,, +13761,1,0.370035,1,0,0,1,1,ROF,4,2,W I 94/Haggerty,RAMP,1588809,0,0.37,0,,2.24,5,0.555053,,0.555053,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.557694,,0.555053,,0.557694,,0.557902,,0.555053,,0.557902,,0.602611,,0.555053,,0.602611,,0.555053,,0.555053,,0.555053,,,,,,,,0.557694,,0.557902,,0.602611,,0.555053,,0.555053,,0.233914,,0.233977,,0.247389,,0.233122,,0.123962,,39.810557,,39.795703,,36.843208,,40,,40,,,,,,,,,,,,5160,,0.555053,,0.555053,,0.555053,,0.555053,,0.233122,,40,,, +14322,1,0.205853,1,0,0,1,1,RON,4,2,N Haggerty/W I 94,RAMP,1588808,0,0.206,0,,1.09,4,0.27447,,0.27447,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.274471,,0.27447,,0.274471,,0.27447,,0.27447,,0.27447,,0.274471,,0.27447,,0.274471,,0.27447,,0.27447,,0.27447,,,,,,,,0.274471,,0.27447,,0.274471,,0.27447,,0.27447,,0.119395,,0.119395,,0.119395,,0.119395,,0.063814,,44.999932,,44.999992,,44.999968,,45,,45,,,,,,,,,,,,5160,,0.27447,,0.27447,,0.27447,,0.27447,,0.119395,,45,,, +14382,-1,0.350302,0,3,0,1,1,,4,2,W I 94,,1588802,5.018,5.368,0,,0.8,7.5,,0.300259,,0.300259,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.312944,,0.300259,,0.312944,,0.300339,,0.300259,,0.300339,,0.320257,,0.300259,,0.320257,,0.300259,,0.300259,,0.300259,,,,,,,,0.312944,,0.300339,,0.320257,,0.300259,,0.300259,,0.156937,,0.153156,,0.159131,,0.153132,,0.083572,,67.162573,,69.98118,,65.628828,,70,,70,,,,,,,,,,,,22704,,0.300259,,0.300259,,0.300259,,0.300259,,0.153132,,70,, +18179,0,0.465812,1,1,0,2,4,,4,2,Tyler,Rd,1675701,3.024,3.489,0,9.981688,4.5,4.5,0.735493,0.735493,0.735493,0.735493,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.210298,0.736095,0.735493,0.735493,1.210298,0.736095,0.789751,0.747494,0.735493,0.735493,0.789751,0.747494,0.748329,0.945472,0.735493,0.735493,0.748329,0.945472,0.735493,0.735493,0.735493,0.735493,0.735493,0.735493,,,,,,,1.210298,0.736095,0.789751,0.747494,0.748329,0.945472,0.735493,0.735493,0.735493,0.735493,0.446936,0.304675,0.320772,0.308094,0.308345,0.367488,0.304494,0.304494,0.161563,0.161563,23.092426,37.968918,35.389283,37.389901,37.348194,29.560607,38,38,38,38,,,,,,,,,,,3096,3096,0.735493,0.735493,0.735493,0.735493,0.735493,0.735493,0.735493,0.735493,0.304494,0.304494,38,38,, +22601,0,0.471379,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,0.887,1.358,0,10.10097,4.5,4.5,0.744282,0.744282,0.744282,0.744282,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.839483,0.759046,0.744282,0.744282,0.839483,0.759046,0.766725,0.754979,0.744282,0.744282,0.766725,0.754979,0.778076,0.814722,0.744282,0.744282,0.778076,0.814722,0.744282,0.744282,0.744282,0.744282,0.744282,0.744282,,,,,,,0.839483,0.759046,0.766725,0.754979,0.778076,0.814722,0.744282,0.744282,0.744282,0.744282,0.336693,0.312562,0.314866,0.311342,0.318271,0.329265,0.308133,0.308133,0.163494,0.163494,33.690623,37.260868,36.88771,37.461599,36.349569,34.714539,38,38,38,38,,,,,,,,,,,3096,3096,0.744282,0.744282,0.744282,0.744282,0.744282,0.744282,0.744282,0.744282,0.308133,0.308133,38,38,, +22640,0,0.771953,1,1,0,2,4,,4,2,Huron River,Dr,4705582,1.625,2.397,0,16.541854,4.5,4.5,1.218873,1.218873,1.218873,1.218873,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.314882,1.274386,1.218873,1.218873,1.314882,1.274386,1.298067,1.27683,1.218873,1.218873,1.298067,1.27683,1.43166,1.364569,1.218873,1.218873,1.43166,1.364569,1.218873,1.218873,1.218873,1.218873,1.218873,1.218873,,,,,,,1.314882,1.274386,1.298067,1.27683,1.43166,1.364569,1.218873,1.218873,1.218873,1.218873,0.533416,0.521267,0.528372,0.522001,0.56845,0.548322,0.504614,0.504614,0.267746,0.267746,35.225353,36.344707,35.681663,36.275141,32.352092,33.942722,38,38,38,38,,,,,,,,,,,3096,3096,1.218873,1.218873,1.218873,1.218873,1.218873,1.218873,1.218873,1.218873,0.504614,0.504614,38,38,, +22959,0,0.065548,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.774,0.84,0,1.40461,4.5,4.5,0.103498,0.103498,0.103498,0.103498,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.103651,0.107433,0.103498,0.103498,0.103651,0.107433,0.103523,0.104778,0.103498,0.103498,0.103523,0.104778,0.103506,0.117097,0.103498,0.103498,0.103506,0.117097,0.103498,0.103498,0.103498,0.103498,0.103498,0.103498,,,,,,,0.103651,0.107433,0.103523,0.104778,0.103506,0.117097,0.103498,0.103498,0.103498,0.103498,0.042894,0.044028,0.042856,0.043232,0.04285,0.046928,0.042848,0.042848,0.022735,0.022735,37.943839,36.608174,37.99062,37.535716,37.997059,33.586822,38,38,38,38,,,,,,,,,,,6192,6192,0.103498,0.103498,0.103498,0.103498,0.103498,0.103498,0.103498,0.103498,0.042848,0.042848,38,38,, +31366,0,0.718278,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.391665,0.15,4,2.873111,2.873111,2.873111,2.873111,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,,,,,,,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,0.991223,0.991223,0.991223,0.991223,0.991223,0.991223,0.991223,0.991223,0.509977,0.509977,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,2.873111,0.991223,0.991223,15,15,, +31363,0,0.025517,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.546786,0.15,4,0.102067,0.102067,0.102067,0.102067,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,,,,,,,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.035213,0.035213,0.035213,0.035213,0.035213,0.035213,0.035213,0.035213,0.018117,0.018117,14.999999,14.999998,14.999997,14.999998,14.999992,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.102067,0.035213,0.035213,15,15,, +17713,0,0.613342,1,1,0,2,4,,4,2,Tyler,Rd,1675701,2.411,3.024,0,13.143043,4.5,4.5,0.968435,0.968435,0.968435,0.968435,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.323647,1.007234,0.968435,0.968435,1.323647,1.007234,0.998754,1.016122,0.968435,0.968435,0.998754,1.016122,1.104692,1.258529,0.968435,0.968435,1.104692,1.258529,0.968435,0.968435,0.968435,0.968435,0.968435,0.968435,,,,,,,1.323647,1.007234,0.998754,1.016122,1.104692,1.258529,0.968435,0.968435,0.968435,0.968435,0.507496,0.412572,0.410028,0.415238,0.441809,0.48796,0.400932,0.400932,0.212733,0.212733,27.802357,36.536209,36.846424,36.216651,33.312932,29.24089,38,38,38,38,,,,,,,,,,,3096,3096,0.968435,0.968435,0.968435,0.968435,0.968435,0.968435,0.968435,0.968435,0.400932,0.400932,38,38,, +23673,0,0.466736,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,1.358,1.825,0,10.001496,4.5,4.5,0.736952,0.736952,0.736952,0.736952,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.835435,0.741395,0.736952,0.736952,0.835435,0.741395,0.759174,0.747544,0.736952,0.736952,0.759174,0.747544,0.745598,0.808954,0.736952,0.736952,0.745598,0.808954,0.736952,0.736952,0.736952,0.736952,0.736952,0.736952,,,,,,,0.835435,0.741395,0.759174,0.747544,0.745598,0.808954,0.736952,0.736952,0.736952,0.736952,0.334643,0.306431,0.311765,0.308276,0.307692,0.326699,0.305098,0.305098,0.161884,0.161884,33.520489,37.772287,36.88771,37.461599,37.559356,34.617797,38,38,38,38,,,,,,,,,,,3096,3096,0.736952,0.736952,0.736952,0.736952,0.736952,0.736952,0.736952,0.736952,0.305098,0.305098,38,38,, +10744,1,0.279729,3,0,0,1,1,,4,2,E I 94,,1576405,5.299,5.579,0,,0.8,7.5,0.239768,,0.239768,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.280844,,0.239768,,0.280844,,0.239887,,0.239768,,0.239887,,0.249089,,0.239768,,0.249089,,0.239768,,0.239768,,0.239768,,,,,,,,0.280844,,0.239887,,0.249089,,0.239768,,0.239768,,0.134605,,0.122317,,0.125078,,0.122282,,0.066735,,59.761738,,69.965353,,67.380551,,70,,70,,,,,,,,,,,,22704,,0.239768,,0.239768,,0.239768,,0.239768,,0.122282,,70,,, +11442,1,0.279246,1,0,0,1,1,RON,4,2,N Haggerty/E I 94,RAMP,1576507,0,0.279,0,,1.09,4,0.372329,,0.372329,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.373828,,0.372329,,0.373828,,0.372583,,0.372329,,0.372583,,0.372888,,0.372329,,0.372888,,0.372329,,0.372329,,0.372329,,,,,,,,0.373828,,0.372583,,0.372888,,0.372329,,0.372329,,0.162413,,0.162039,,0.162131,,0.161963,,0.086566,,44.819464,,44.969253,,44.932483,,45,,45,,,,,,,,,,,,5160,,0.372329,,0.372329,,0.372329,,0.372329,,0.161963,,45,,, +14133,-1,0.309951,0,3,0,1,1,,4,2,W I 94,,1588802,5.368,5.678,0,,0.8,7.5,,0.265673,,0.265673,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.275961,,0.265673,,0.275961,,0.265737,,0.265673,,0.265737,,0.282207,,0.265673,,0.282207,,0.265673,,0.265673,,0.265673,,,,,,,,0.275961,,0.265737,,0.282207,,0.265673,,0.265673,,0.13858,,0.135512,,0.140453,,0.135493,,0.073946,,67.39021,,69.982976,,65.898762,,70,,70,,,,,,,,,,,,22704,,0.265673,,0.265673,,0.265673,,0.265673,,0.135493,,70,, +23310,0,0.36827,1,1,0,2,4,,4,2,Huron River,Dr,4705582,2.583,2.951,0,7.891502,4.5,4.5,0.581479,0.581479,0.581479,0.581479,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.950597,0.741942,0.581479,0.581479,1.950597,0.741942,0.910346,0.796997,0.581479,0.581479,0.910346,0.796997,1.435879,1.932655,0.581479,0.581479,1.435879,1.932655,0.581479,0.581479,0.581479,0.581479,0.581479,0.581479,,,,,,,1.950597,0.741942,0.910346,0.796997,1.435879,1.932655,0.581479,0.581479,0.581479,0.581479,0.651468,0.288871,0.339392,0.305388,0.497052,0.646085,0.240732,0.240732,0.127732,0.127732,11.327918,29.781583,24.272314,27.724327,15.388623,11.433086,38,38,38,38,,,,,,,,,,,3096,3096,0.581479,0.581479,0.581479,0.581479,0.581479,0.581479,0.581479,0.581479,0.240732,0.240732,38,38,, +23528,0,0.534864,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,0,0.535,0,11.461382,4.5,4.5,0.844523,0.844523,0.844523,0.844523,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.916707,0.888148,0.844523,0.844523,0.916707,0.888148,0.908017,0.941998,0.844523,0.844523,0.908017,0.941998,1.00562,1.015183,0.844523,0.844523,1.00562,1.015183,0.844523,0.844523,0.844523,0.844523,0.844523,0.844523,,,,,,,0.916707,0.888148,0.908017,0.941998,1.00562,1.015183,0.844523,0.844523,0.844523,0.844523,0.371288,0.36272,0.368681,0.378875,0.397962,0.40083,0.349632,0.349632,0.185514,0.185514,35.007775,36.133463,35.342801,34.067876,31.912513,31.611914,38,38,38,38,,,,,,,,,,,3096,3096,0.844523,0.844523,0.844523,0.844523,0.844523,0.844523,0.844523,0.844523,0.349632,0.349632,38,38,, +23645,0,0.186109,1,1,0,2,4,,4,2,Huron River,Dr,4705582,2.397,2.583,0,3.988056,4.5,4.5,0.293857,0.293857,0.293857,0.293857,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.317003,0.30724,0.293857,0.293857,0.317003,0.30724,0.312949,0.307829,0.293857,0.293857,0.312949,0.307829,0.345157,0.328982,0.293857,0.293857,0.345157,0.328982,0.293857,0.293857,0.293857,0.293857,0.293857,0.293857,,,,,,,0.317003,0.30724,0.312949,0.307829,0.345157,0.328982,0.293857,0.293857,0.293857,0.293857,0.128601,0.125672,0.127385,0.125849,0.137047,0.132194,0.121657,0.121657,0.064551,0.064551,35.225353,36.344707,35.681663,36.275141,32.352092,33.942722,38,38,38,38,,,,,,,,,,,3096,3096,0.293857,0.293857,0.293857,0.293857,0.293857,0.293857,0.293857,0.293857,0.121657,0.121657,38,38,, +23529,0,0.093919,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.535,0.629,0,2.012543,4.5,4.5,0.148293,0.148293,0.148293,0.148293,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.151991,0.149582,0.148293,0.148293,0.151991,0.149582,0.148651,0.148896,0.148293,0.148293,0.148651,0.148896,0.149201,0.154479,0.148293,0.148293,0.149201,0.154479,0.148293,0.148293,0.148293,0.148293,0.148293,0.148293,,,,,,,0.151991,0.149582,0.148651,0.148896,0.149201,0.154479,0.148293,0.148293,0.148293,0.148293,0.062503,0.06178,0.061501,0.061574,0.061666,0.063249,0.061393,0.061393,0.032575,0.032575,37.075422,37.672339,37.908306,37.845981,37.768645,36.478177,38,38,38,38,,,,,,,,,,,6192,6192,0.148293,0.148293,0.148293,0.148293,0.148293,0.148293,0.148293,0.148293,0.061393,0.061393,38,38,, +10738,1,0.224989,1,0,0,1,1,RON,4,2,S Haggerty/E I 94,RAMP,1576505,0,0.225,0,,1.09,4,0.299985,,0.299985,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.300957,,0.299985,,0.300957,,0.300047,,0.299985,,0.300047,,0.300404,,0.299985,,0.300404,,0.299985,,0.299985,,0.299985,,,,,,,,0.300957,,0.300047,,0.300404,,0.299985,,0.299985,,0.130785,,0.130512,,0.130619,,0.130494,,0.069747,,44.854651,,44.990765,,44.937285,,45,,45,,,,,,,,,,,,5160,,0.299985,,0.299985,,0.299985,,0.299985,,0.130494,,45,,, +23338,0,0.06695,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.629,0.696,0,1.434636,4.5,4.5,0.10571,0.10571,0.10571,0.10571,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.106027,0.105808,0.10571,0.10571,0.106027,0.105808,0.105759,0.105883,0.10571,0.10571,0.105759,0.105883,0.105734,0.10777,0.10571,0.10571,0.105734,0.10777,0.10571,0.10571,0.10571,0.10571,0.10571,0.10571,,,,,,,0.106027,0.105808,0.105759,0.105883,0.105734,0.10777,0.10571,0.10571,0.10571,0.10571,0.043859,0.043793,0.043779,0.043816,0.043771,0.044382,0.043764,0.043764,0.023221,0.023221,37.886424,37.964884,37.982525,37.937867,37.991338,37.273798,38,38,38,38,,,,,,,,,,,6192,6192,0.10571,0.10571,0.10571,0.10571,0.10571,0.10571,0.10571,0.10571,0.043764,0.043764,38,38,, +23098,0,0.078765,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.696,0.774,0,1.687824,4.5,4.5,0.124366,0.124366,0.124366,0.124366,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.124739,0.129094,0.124366,0.124366,0.124739,0.129094,0.124423,0.125904,0.124366,0.124366,0.124423,0.125904,0.124394,0.140707,0.124366,0.124366,0.124394,0.140707,0.124366,0.124366,0.124366,0.124366,0.124366,0.124366,,,,,,,0.124739,0.129094,0.124423,0.125904,0.124394,0.140707,0.124366,0.124366,0.124366,0.124366,0.051599,0.052906,0.051505,0.051949,0.051496,0.05639,0.051488,0.051488,0.027319,0.027319,37.886424,36.608174,37.982525,37.535716,37.991338,33.586822,38,38,38,38,,,,,,,,,,,6192,6192,0.124366,0.124366,0.124366,0.124366,0.124366,0.124366,0.124366,0.124366,0.051488,0.051488,38,38,, +31550,0,0.111451,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.388245,0.15,4,0.445806,0.445806,0.445806,0.445806,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.445806,0.445808,0.445806,0.445806,0.445806,0.445808,0.445806,0.445806,0.445806,0.445806,0.445806,0.445806,0.445807,0.445806,0.445806,0.445806,0.445807,0.445806,0.445806,0.445806,0.445806,0.445806,0.445806,0.445806,,,,,,,0.445806,0.445808,0.445806,0.445806,0.445807,0.445806,0.445806,0.445806,0.445806,0.445806,0.153803,0.153804,0.153803,0.153803,0.153803,0.153803,0.153803,0.153803,0.079131,0.079131,15,14.999911,14.999997,14.999991,14.999951,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.445806,0.445806,0.445806,0.445806,0.445806,0.445806,0.445806,0.445806,0.153803,0.153803,15,15,, +22751,0,0.047113,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.84,0.887,0,1.00957,4.5,4.5,0.074389,0.074389,0.074389,0.074389,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.076421,0.076141,0.074389,0.074389,0.076421,0.076141,0.075127,0.07507,0.074389,0.074389,0.075127,0.07507,0.076714,0.081833,0.074389,0.074389,0.076714,0.081833,0.074389,0.074389,0.074389,0.074389,0.074389,0.074389,,,,,,,0.076421,0.076141,0.075127,0.07507,0.076714,0.081833,0.074389,0.074389,0.074389,0.074389,0.031407,0.031323,0.031019,0.031001,0.031495,0.03303,0.030797,0.030797,0.016341,0.016341,36.989694,37.125799,37.626695,37.655336,36.848491,34.543449,38,38,38,38,,,,,,,,,,,6192,6192,0.074389,0.074389,0.074389,0.074389,0.074389,0.074389,0.074389,0.074389,0.030797,0.030797,38,38,, +16693,-1,0.682619,0,3,0,1,1,,4,2,S I 275,,1607610,11.904,12.587,0,,0.8,7.5,,0.585102,,0.585102,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.585625,,0.585102,,0.585625,,0.585138,,0.585102,,0.585138,,0.591332,,0.585102,,0.591332,,0.585102,,0.585102,,0.585102,,,,,,,,0.585625,,0.585138,,0.591332,,0.585102,,0.585102,,0.298559,,0.298413,,0.300271,,0.298402,,0.162853,,69.937456,,69.995697,,69.262469,,70,,70,,,,,,,,,,,,22704,,0.585102,,0.585102,,0.585102,,0.585102,,0.298402,,70,, +16768,1,0.401274,1,0,0,1,1,ROF,4,2,S I 275/Ecorse,RAMP,1600505,0,0.401,0,,2.24,5,0.601911,,0.601911,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.716043,,0.601911,,0.716043,,0.624519,,0.601911,,0.624519,,0.796252,,0.601911,,0.796252,,0.601911,,0.601911,,0.601911,,,,,,,,0.716043,,0.624519,,0.796252,,0.601911,,0.601911,,0.287042,,0.259585,,0.311105,,0.252802,,0.134427,,33.624295,,38.551958,,30.237177,,40,,40,,,,,,,,,,,,5160,,0.601911,,0.601911,,0.601911,,0.601911,,0.252802,,40,,, +16934,0,0.13267,2,2,1,2,4,,4,2,Ecorse,Rd,5495384,1.908,2.041,0,2.842933,4.5,4.5,0.209479,0.209479,0.209479,0.209479,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.310314,0.260802,0.209479,0.209479,0.310314,0.260802,0.219635,0.224979,0.209479,0.209479,0.219635,0.224979,0.262576,0.299338,0.209479,0.209479,0.262576,0.299338,0.209479,0.209479,0.209479,0.209479,0.209479,0.209479,,,,,,,0.310314,0.260802,0.219635,0.224979,0.262576,0.299338,0.209479,0.209479,0.209479,0.209479,0.116975,0.102121,0.089771,0.091374,0.102654,0.113682,0.086724,0.086724,0.046016,0.046016,25.652148,30.522071,36.242897,35.382062,30.315802,26.592745,38,38,38,38,,,,,,,,,,,6502,6502,0.209479,0.209479,0.209479,0.209479,0.209479,0.209479,0.209479,0.209479,0.086724,0.086724,38,38,, +17925,0,0.524764,1,1,0,2,4,,4,2,Van Born,Rd,1670110,2.12,2.644,0,11.24494,4.5,4.5,0.828575,0.828575,0.828575,0.828575,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.851785,0.828674,0.828575,0.828575,0.851785,0.828674,0.829092,0.828779,0.828575,0.828575,0.829092,0.828779,0.829855,0.846125,0.828575,0.828575,0.829855,0.846125,0.828575,0.828575,0.828575,0.828575,0.828575,0.828575,,,,,,,0.851785,0.828674,0.829092,0.828779,0.829855,0.846125,0.828575,0.828575,0.828575,0.828575,0.349993,0.34306,0.343185,0.343091,0.343414,0.348295,0.34303,0.34303,0.18201,0.18201,36.964548,37.995421,37.976296,37.990642,37.941373,37.21178,38,38,38,38,,,,,,,,,,,3096,3096,0.828575,0.828575,0.828575,0.828575,0.828575,0.828575,0.828575,0.828575,0.34303,0.34303,38,38,, +23099,0,0.686528,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,2.837,3.523,0,14.71132,4.5,4.5,1.083992,1.083992,1.083992,1.083992,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.084835,1.086524,1.083992,1.083992,1.084835,1.086524,1.084263,1.084013,1.083992,1.083992,1.084263,1.084013,1.113526,1.093017,1.083992,1.083992,1.113526,1.093017,1.083992,1.083992,1.083992,1.083992,1.083992,1.083992,,,,,,,1.084835,1.086524,1.084263,1.084013,1.113526,1.093017,1.083992,1.083992,1.083992,1.083992,0.449026,0.449532,0.448854,0.448779,0.457633,0.45148,0.448773,0.448773,0.238117,0.238117,37.970455,37.911453,37.990496,37.999279,36.992137,37.686235,38,38,38,38,,,,,,,,,,,3096,3096,1.083992,1.083992,1.083992,1.083992,1.083992,1.083992,1.083992,1.083992,0.448773,0.448773,38,38,, +31253,0,0.535798,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.481383,0.15,4,2.143192,2.143192,2.143192,2.143192,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,,,,,,,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,0.739401,0.739401,0.739401,0.739401,0.739401,0.739401,0.739401,0.739401,0.380417,0.380417,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,2.143192,0.739401,0.739401,15,15,, +16938,0,0.581732,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,1.327,1.908,0,12.465693,4.5,4.5,0.918525,0.918525,0.918525,0.918525,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.292418,1.085482,0.918525,0.918525,1.292418,1.085482,0.950189,0.955518,0.918525,0.918525,0.950189,0.955518,1.164445,1.27201,0.918525,0.918525,1.164445,1.27201,0.918525,0.918525,0.918525,0.918525,0.918525,0.918525,,,,,,,1.292418,1.085482,0.950189,0.955518,1.164445,1.27201,0.918525,0.918525,0.918525,0.918525,0.492437,0.430356,0.389769,0.391367,0.454045,0.486315,0.380269,0.380269,0.201769,0.201769,27.006699,32.15524,36.733676,36.528812,29.974739,27.439987,38,38,38,38,,,,,,,,,,,3096,3096,0.918525,0.918525,0.918525,0.918525,0.918525,0.918525,0.918525,0.918525,0.380269,0.380269,38,38,, +23266,0,0.435987,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,2.401,2.837,0,9.342576,4.5,4.5,0.6884,0.6884,0.6884,0.6884,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.158856,1.039156,0.6884,0.6884,1.158856,1.039156,0.812427,0.829487,0.6884,0.6884,0.812427,0.829487,1.094173,1.148892,0.6884,0.6884,1.094173,1.148892,0.6884,0.6884,0.6884,0.6884,0.6884,0.6884,,,,,,,1.158856,1.039156,0.812427,0.829487,1.094173,1.148892,0.6884,0.6884,0.6884,0.6884,0.426134,0.390225,0.322206,0.327324,0.40673,0.423145,0.284998,0.284998,0.151219,0.151219,22.573312,25.173513,32.198852,31.536625,23.907748,22.769079,38,38,38,38,,,,,,,,,,,3096,3096,0.6884,0.6884,0.6884,0.6884,0.6884,0.6884,0.6884,0.6884,0.284998,0.284998,38,38,, +31245,0,0.507788,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.881161,0.15,4,2.03115,2.03115,2.03115,2.03115,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,,,,,,,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,0.700747,0.700747,0.700747,0.700747,0.700747,0.700747,0.700747,0.700747,0.360529,0.360529,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,2.03115,0.700747,0.700747,15,15,, +31601,0,0.535903,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.483626,0.15,4,2.14361,2.14361,2.14361,2.14361,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,,,,,,,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,0.739546,0.739546,0.739546,0.739546,0.739546,0.739546,0.739546,0.739546,0.380491,0.380491,14.999999,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,2.14361,0.739546,0.739546,15,15,, +22893,0,0.386396,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,3.523,3.91,0,8.279914,4.5,4.5,0.610099,0.610099,0.610099,0.610099,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.61354,0.611153,0.610099,0.610099,0.61354,0.611153,0.610883,0.610289,0.610099,0.610099,0.610883,0.610289,0.627556,0.620533,0.610099,0.610099,0.627556,0.620533,0.610099,0.610099,0.610099,0.610099,0.610099,0.610099,,,,,,,0.61354,0.611153,0.610883,0.610289,0.627556,0.620533,0.610099,0.610099,0.610099,0.610099,0.253613,0.252897,0.252816,0.252638,0.257818,0.255711,0.252581,0.252581,0.134018,0.134018,37.786893,37.934446,37.95121,37.988152,36.942934,37.361071,38,38,38,38,,,,,,,,,,,3096,3096,0.610099,0.610099,0.610099,0.610099,0.610099,0.610099,0.610099,0.610099,0.252581,0.252581,38,38,, +31251,0,0.551302,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.813604,0.15,4,2.205206,2.205206,2.205206,2.205206,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,,,,,,,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,0.760796,0.760796,0.760796,0.760796,0.760796,0.760796,0.760796,0.760796,0.391424,0.391424,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,2.205206,0.760796,0.760796,15,15,, +22752,0,0.316419,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,3.91,4.226,0,6.780398,4.5,4.5,0.499608,0.499608,0.499608,0.499608,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.607992,0.529813,0.499608,0.499608,0.607992,0.529813,0.507906,0.506043,0.499608,0.499608,0.507906,0.506043,0.665989,0.586742,0.499608,0.499608,0.665989,0.586742,0.499608,0.499608,0.499608,0.499608,0.499608,0.499608,,,,,,,0.607992,0.529813,0.507906,0.506043,0.665989,0.586742,0.499608,0.499608,0.499608,0.499608,0.239353,0.215899,0.209327,0.208768,0.256752,0.232978,0.206838,0.206838,0.109747,0.109747,31.225905,35.833613,37.379197,37.516789,28.50664,32.35683,38,38,38,38,,,,,,,,,,,3096,3096,0.499608,0.499608,0.499608,0.499608,0.499608,0.499608,0.499608,0.499608,0.206838,0.206838,38,38,, +16496,1,0.700617,3,0,0,1,1,,4,2,N I 275,,1607208,11.821,12.521,0,,0.8,7.5,0.600529,,0.600529,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.605166,,0.600529,,0.605166,,0.600567,,0.600529,,0.600567,,0.602734,,0.600529,,0.602734,,0.600529,,0.600529,,0.600529,,,,,,,,0.605166,,0.600567,,0.602734,,0.600529,,0.600529,,0.307661,,0.306281,,0.306931,,0.30627,,0.167147,,69.463688,,69.995608,,69.743943,,70,,70,,,,,,,,,,,,22704,,0.600529,,0.600529,,0.600529,,0.600529,,0.30627,,70,,, +16762,1,0.434444,1,0,0,1,1,ROF,4,2,N I 275/Ecorse,RAMP,1600510,0,0.434,0,,2.24,5,0.651666,,0.651666,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.652073,,0.651666,,0.652073,,0.65169,,0.651666,,0.65169,,0.652009,,0.651666,,0.652009,,0.651666,,0.651666,,0.651666,,,,,,,,0.652073,,0.65169,,0.652009,,0.651666,,0.651666,,0.273822,,0.273707,,0.273803,,0.2737,,0.145539,,39.974987,,39.998518,,39.978913,,40,,40,,,,,,,,,,,,5160,,0.651666,,0.651666,,0.651666,,0.651666,,0.2737,,40,,, +16765,1,0.37755,1,0,0,1,1,RON,4,2,Ecorse/S I 275,RAMP,1600507,0,0.377,0,,1.09,4,0.5034,,0.5034,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.507195,,0.5034,,0.507195,,0.503683,,0.5034,,0.503683,,0.507749,,0.5034,,0.507749,,0.5034,,0.5034,,0.5034,,,,,,,,0.507195,,0.503683,,0.507749,,0.5034,,0.5034,,0.220117,,0.219064,,0.220284,,0.218979,,0.11704,,44.663287,,44.974706,,44.614565,,45,,45,,,,,,,,,,,,5160,,0.5034,,0.5034,,0.5034,,0.5034,,0.218979,,45,,, +16763,1,0.360399,1,0,0,1,1,RON,4,2,Ecorse/N I 275,RAMP,1600508,0,0.36,0,,1.09,4,0.480532,,0.480532,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.542926,,0.480532,,0.542926,,0.491502,,0.480532,,0.491502,,0.544557,,0.480532,,0.544557,,0.480532,,0.480532,,0.480532,,,,,,,,0.542926,,0.491502,,0.544557,,0.480532,,0.480532,,0.22775,,0.212322,,0.228239,,0.209031,,0.111724,,39.828457,,43.995566,,39.709237,,45,,45,,,,,,,,,,,,5160,,0.480532,,0.480532,,0.480532,,0.480532,,0.209031,,45,,, +16924,0,0.318604,2,2,1,2,4,,4,2,Ecorse,Rd,5495384,2.041,2.36,0,6.827221,4.5,4.5,0.503058,0.503058,0.503058,0.503058,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.590689,0.503442,0.503058,0.503058,0.590689,0.503442,0.514768,0.503196,0.503058,0.503058,0.514768,0.503196,0.569532,0.505549,0.503058,0.503058,0.569532,0.505549,0.503058,0.503058,0.503058,0.503058,0.503058,0.503058,,,,,,,0.590689,0.503442,0.514768,0.503196,0.569532,0.505549,0.503058,0.503058,0.503058,0.503058,0.234555,0.208381,0.211779,0.208307,0.228208,0.209014,0.208266,0.208266,0.110505,0.110505,32.362571,37.971056,37.13563,37.989603,33.564786,37.812757,38,38,38,38,,,,,,,,,,,6502,6502,0.503058,0.503058,0.503058,0.503058,0.503058,0.503058,0.503058,0.503058,0.208266,0.208266,38,38,, +18295,0,0.354217,1,1,0,2,4,,4,2,Van Born,Rd,1670110,2.644,2.998,0,7.590363,4.5,4.5,0.55929,0.55929,0.55929,0.55929,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.573768,0.559355,0.55929,0.55929,0.573768,0.559355,0.559632,0.559407,0.55929,0.55929,0.559632,0.559407,0.560114,0.569383,0.55929,0.55929,0.560114,0.569383,0.55929,0.55929,0.55929,0.55929,0.55929,0.55929,,,,,,,0.573768,0.559355,0.559632,0.559407,0.560114,0.569383,0.55929,0.55929,0.55929,0.55929,0.235889,0.231566,0.231649,0.231581,0.231793,0.234574,0.231546,0.231546,0.122857,0.122857,37.04114,37.99558,37.976762,37.992019,37.944078,37.326423,38,38,38,38,,,,,,,,,,,3096,3096,0.55929,0.55929,0.55929,0.55929,0.55929,0.55929,0.55929,0.55929,0.231546,0.231546,38,38,, +31552,0,0.659452,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.131124,0.15,4,2.63781,2.63781,2.63781,2.63781,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,,,,,,,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,0.910044,0.910044,0.910044,0.910044,0.910044,0.910044,0.910044,0.910044,0.468211,0.468211,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,2.63781,0.910044,0.910044,15,15,, +15216,0,0.497933,2,2,1,2,3,,4,2,Ford,Rd,1595510,3.988,4.485,0,10.669985,3.7,5,0.746899,0.746899,0.746899,0.746899,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.15228,1.092608,0.746899,0.746899,1.15228,1.092608,0.960429,0.965547,0.746899,0.746899,0.960429,0.965547,1.265502,1.490599,0.746899,0.746899,1.265502,1.490599,0.746899,0.746899,0.746899,0.746899,0.746899,0.746899,,,,,,,1.15228,1.092608,0.960429,0.965547,1.265502,1.490599,0.746899,0.746899,0.746899,0.746899,0.435312,0.41741,0.377757,0.379292,0.469278,0.536808,0.313698,0.313698,0.166807,0.166807,25.927689,27.343699,31.106893,30.942007,23.607993,20.042918,40,40,40,40,,,,,,,,,,,7946,7946,0.746899,0.746899,0.746899,0.746899,0.746899,0.746899,0.746899,0.746899,0.313698,0.313698,40,40,, +15820,1,0.497714,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,4.496,4.994,0,10.665302,3.7,5,0.663619,,0.663619,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.75832,,0.663619,,1.75832,,0.872457,,0.663619,,0.872457,,1.254966,,0.663619,,1.254966,,0.663619,,0.663619,,0.663619,,,,,,,,1.75832,,0.872457,,1.254966,,0.663619,,0.663619,,0.617084,,0.351326,,0.466078,,0.288674,,0.154291,,16.983742,,34.228463,,23.79575,,45,,45,,,,,,,,,,,,7568,,0.663619,,0.663619,,0.663619,,0.663619,,0.288674,,45,,, +16202,0,0.557723,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,3.923,4.48,0,11.951213,4.5,4.5,0.880616,0.880616,0.880616,0.880616,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,1.182659,1.041168,0.880616,0.880616,1.182659,1.041168,1.010781,1.004333,0.880616,0.880616,1.010781,1.004333,1.196097,1.239031,0.880616,0.880616,1.196097,1.239031,0.880616,0.880616,0.880616,0.880616,0.880616,0.880616,,,,,,,1.182659,1.041168,1.010781,1.004333,1.196097,1.239031,0.880616,0.880616,0.880616,0.880616,0.455188,0.412741,0.403624,0.40169,0.459219,0.4721,0.364575,0.364575,0.193442,0.193442,28.295057,32.140249,33.106476,33.319022,27.977162,27.007714,38,38,38,38,,,,,,,,,,,3406,3406,0.880616,0.880616,0.880616,0.880616,0.880616,0.880616,0.880616,0.880616,0.364575,0.364575,38,38,, +16290,0,0.499399,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.01,1.509,0,10.701403,4.5,4.5,0.788524,0.788524,0.788524,0.788524,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.089062,0.884341,0.788524,0.788524,1.089062,0.884341,0.853671,0.833379,0.788524,0.788524,0.853671,0.833379,1.137377,1.14489,0.788524,0.788524,1.137377,1.14489,0.788524,0.788524,0.788524,0.788524,0.788524,0.788524,,,,,,,1.089062,0.884341,0.853671,0.833379,1.137377,1.14489,0.788524,0.788524,0.788524,0.788524,0.41661,0.355194,0.345993,0.339905,0.431105,0.433359,0.326449,0.326449,0.173213,0.173213,27.513531,33.882769,35.10008,35.954756,26.344767,26.171879,38,38,38,38,,,,,,,,,,,3096,3096,0.788524,0.788524,0.788524,0.788524,0.788524,0.788524,0.788524,0.788524,0.326449,0.326449,38,38,, +16488,1,2.35956,3,0,0,1,1,,4,2,N I 275,,1607208,14.6,16.959,0,,0.8,7.5,2.02248,,2.02248,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.44766,,2.02248,,2.44766,,2.032827,,2.02248,,2.032827,,2.177071,,2.02248,,2.177071,,2.02248,,2.02248,,2.02248,,,,,,,,2.44766,,2.032827,,2.177071,,2.02248,,2.02248,,1.159019,,1.034569,,1.077842,,1.031465,,0.562924,,57.840398,,69.643693,,65.029378,,70,,70,,,,,,,,,,,,22704,,2.02248,,2.02248,,2.02248,,2.02248,,1.031465,,70,,, +16577,-1,2.342989,0,3,0,1,1,,4,2,S I 275,,1607610,14.718,17.06,0,,0.8,7.5,,2.008277,,2.008277,,70,,66000,,14982,,33000,,21292,,22704,,22678,,2.046591,,2.008277,,2.046591,,2.014155,,2.008277,,2.014155,,2.425469,,2.008277,,2.425469,,2.008277,,2.008277,,2.008277,,,,,,,,2.046591,,2.014155,,2.425469,,2.008277,,2.008277,,1.035715,,1.025985,,1.149379,,1.024221,,0.55897,,68.689537,,69.795704,,57.959673,,70,,70,,,,,,,,,,,,22704,,2.008277,,2.008277,,2.008277,,2.008277,,1.024221,,70,, +17824,0,0.532427,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,3.021,3.554,0,11.409152,5.8,4.5,1.183171,1.183171,1.183171,1.183171,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.283388,1.183673,1.183171,1.183171,1.283388,1.183673,1.183724,1.183519,1.183171,1.183171,1.183724,1.183519,1.205779,1.306135,1.183171,1.183171,1.205779,1.306135,1.183171,1.183171,1.183171,1.183171,1.183171,1.183171,,,,,,,1.283388,1.183673,1.183724,1.183519,1.205779,1.306135,1.183171,1.183171,1.183171,1.183171,0.480853,0.450939,0.450954,0.450893,0.457571,0.487678,0.450788,0.450788,0.236043,0.236043,24.891629,26.988563,26.987386,26.99207,26.493767,24.458126,27,27,27,27,,,,,,,,,,,2580,2580,1.183171,1.183171,1.183171,1.183171,1.183171,1.183171,1.183171,1.183171,0.450788,0.450788,27,27,, +17943,0,0.534311,1,1,0,2,5,,4,2,Saltz,Rd,1680609,3.229,3.763,0,11.449516,5.8,4.5,1.187357,1.187357,1.187357,1.187357,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.213665,1.189948,1.187357,1.187357,1.213665,1.189948,1.190525,1.189689,1.187357,1.187357,1.190525,1.189689,1.273381,1.321266,1.187357,1.187357,1.273381,1.321266,1.187357,1.187357,1.187357,1.187357,1.187357,1.187357,,,,,,,1.213665,1.189948,1.190525,1.189689,1.273381,1.321266,1.187357,1.187357,1.187357,1.187357,0.460276,0.45316,0.453333,0.453083,0.47819,0.492556,0.452383,0.452383,0.236878,0.236878,26.414732,26.94121,26.928156,26.947076,25.176011,24.263586,27,27,27,27,,,,,,,,,,,2580,2580,1.187357,1.187357,1.187357,1.187357,1.187357,1.187357,1.187357,1.187357,0.452383,0.452383,27,27,, +18410,0,0.516502,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.006,4.522,0,11.06789,5.8,4.5,1.147781,1.147781,1.147781,1.147781,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.253566,1.15013,1.147781,1.147781,1.253566,1.15013,1.163903,1.158286,1.147781,1.147781,1.163903,1.158286,1.29178,1.353799,1.147781,1.147781,1.29178,1.353799,1.147781,1.147781,1.147781,1.147781,1.147781,1.147781,,,,,,,1.253566,1.15013,1.163903,1.158286,1.29178,1.353799,1.147781,1.147781,1.147781,1.147781,0.46904,0.438009,0.442141,0.440456,0.480504,0.49911,0.437305,0.437305,0.228982,0.228982,24.72154,26.944868,26.626005,26.755142,23.990234,22.891213,27,27,27,27,,,,,,,,,,,2580,2580,1.147781,1.147781,1.147781,1.147781,1.147781,1.147781,1.147781,1.147781,0.437305,0.437305,27,27,, +23081,-1,0.494964,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,4.471,4.966,0,10.60637,3.7,5,,0.659952,,0.659952,,45,,22000,,4994,,11000,,7097,,7568,,7559,,1.00817,,0.659952,,1.00817,,0.80596,,0.659952,,0.80596,,1.345102,,0.659952,,1.345102,,0.659952,,0.659952,,0.659952,,,,,,,,1.00817,,0.80596,,1.345102,,0.659952,,0.659952,,0.391544,,0.330882,,0.492624,,0.287079,,0.153439,,29.457178,,36.847778,,22.078497,,45,,45,,,,,,,,,,,,7568,,0.659952,,0.659952,,0.659952,,0.659952,,0.287079,,45,, +23096,0,1.010546,1,1,0,2,7,,4,2,Lotz,Rd,4705519,1.026,2.036,0,21.654549,6.55,4.5,2.425309,2.425309,2.425309,2.425309,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.425309,2.425313,2.425309,2.425309,2.425309,2.425313,2.42531,2.42531,2.425309,2.425309,2.42531,2.42531,2.425602,2.425561,2.425309,2.425309,2.425602,2.425561,2.425309,2.425309,2.425309,2.425309,2.425309,2.425309,,,,,,,2.425309,2.425313,2.42531,2.42531,2.425602,2.425561,2.425309,2.425309,2.425309,2.425309,0.909491,0.909492,0.909491,0.909491,0.909579,0.909567,0.909491,0.909491,0.474956,0.474956,25,24.999965,24.999999,24.999998,24.996988,24.997406,25,25,25,25,,,,,,,,,,,2064,2064,2.425309,2.425309,2.425309,2.425309,2.425309,2.425309,2.425309,2.425309,0.909491,0.909491,25,25,, +23208,0,0.498958,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,1.963,2.462,0,10.691967,3.7,5,0.748438,0.748438,0.748438,0.748438,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.885934,0.775966,0.748438,0.748438,0.885934,0.775966,0.761783,0.760778,0.748438,0.748438,0.761783,0.760778,0.853404,0.928541,0.748438,0.748438,0.853404,0.928541,0.748438,0.748438,0.748438,0.748438,0.748438,0.748438,,,,,,,0.885934,0.775966,0.761783,0.760778,0.853404,0.928541,0.748438,0.748438,0.748438,0.748438,0.355593,0.322602,0.318347,0.318046,0.345834,0.368375,0.314344,0.314344,0.167151,0.167151,33.792044,38.580954,39.299266,39.351156,35.080096,32.241437,40,40,40,40,,,,,,,,,,,7946,7946,0.748438,0.748438,0.748438,0.748438,0.748438,0.748438,0.748438,0.748438,0.314344,0.314344,40,40,, +23637,0,0.506356,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,6.416,6.923,0,10.850496,4.5,4.5,0.79951,0.79951,0.79951,0.79951,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.249799,0.899029,0.79951,0.79951,1.249799,0.899029,0.900735,0.908033,0.79951,0.79951,0.900735,0.908033,1.064617,1.285968,0.79951,0.79951,1.064617,1.285968,0.79951,0.79951,0.79951,0.79951,0.79951,0.79951,,,,,,,1.249799,0.899029,0.900735,0.908033,1.064617,1.285968,0.79951,0.79951,0.79951,0.79951,0.466084,0.360853,0.361365,0.363554,0.410529,0.476934,0.330997,0.330997,0.175626,0.175626,24.309012,33.793559,33.729562,33.458447,28.537382,23.625315,38,38,38,38,,,,,,,,,,,3096,3096,0.79951,0.79951,0.79951,0.79951,0.79951,0.79951,0.79951,0.79951,0.330997,0.330997,38,38,, +24217,0,0.504858,1,1,0,2,5,,4,2,Lilley,Rd,4710390,1.623,2.128,0,10.818378,5.8,4.5,1.121906,1.121906,1.121906,1.121906,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.251827,1.123758,1.121906,1.121906,1.251827,1.123758,1.123769,1.122551,1.121906,1.121906,1.123769,1.122551,1.260361,1.30349,1.121906,1.121906,1.260361,1.30349,1.121906,1.121906,1.121906,1.121906,1.121906,1.121906,,,,,,,1.251827,1.123758,1.123769,1.122551,1.260361,1.30349,1.121906,1.121906,1.121906,1.121906,0.466422,0.428002,0.428005,0.42764,0.468983,0.481921,0.427446,0.427446,0.22382,0.22382,24.197807,26.955494,26.955226,26.98449,24.03395,23.238742,27,27,27,27,,,,,,,,,,,2580,2580,1.121906,1.121906,1.121906,1.121906,1.121906,1.121906,1.121906,1.121906,0.427446,0.427446,27,27,, +31260,0,0.509381,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.91531,0.15,4,2.037524,2.037524,2.037524,2.037524,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,2.037525,2.037524,2.037524,2.037524,2.037525,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,,,,,,,2.037524,2.037524,2.037524,2.037524,2.037524,2.037525,2.037524,2.037524,2.037524,2.037524,0.702946,0.702946,0.702946,0.702946,0.702946,0.702946,0.702946,0.702946,0.361661,0.361661,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,2.037524,0.702946,0.702946,15,15,, +31261,0,0.498909,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.690907,0.15,4,1.995636,1.995636,1.995636,1.995636,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,,,,,,,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,0.688494,0.688494,0.688494,0.688494,0.688494,0.688494,0.688494,0.688494,0.354225,0.354225,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,1.995636,0.688494,0.688494,15,15,, +31262,0,0.504563,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.812062,0.15,4,2.018252,2.018252,2.018252,2.018252,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,,,,,,,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,0.696297,0.696297,0.696297,0.696297,0.696297,0.696297,0.696297,0.696297,0.35824,0.35824,14.999997,15,14.999999,14.999999,14.999999,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,2.018252,0.696297,0.696297,15,15,, +31270,0,0.476605,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.212974,0.15,4,1.906422,1.906422,1.906422,1.906422,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,,,,,,,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,0.657716,0.657716,0.657716,0.657716,0.657716,0.657716,0.657716,0.657716,0.33839,0.33839,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,1.906422,0.657716,0.657716,15,15,, +31272,0,0.577524,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.375521,0.15,4,2.310097,2.310097,2.310097,2.310097,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.310098,2.310097,2.310097,2.310097,2.310098,2.310097,2.310097,2.310097,2.310097,2.310097,2.310097,2.310097,2.310097,2.310098,2.310097,2.310097,2.310097,2.310098,2.310097,2.310097,2.310097,2.310097,2.310097,2.310097,,,,,,,2.310098,2.310097,2.310097,2.310097,2.310097,2.310098,2.310097,2.310097,2.310097,2.310097,0.796984,0.796984,0.796984,0.796984,0.796984,0.796984,0.796984,0.796984,0.410042,0.410042,14.999996,15,15,15,14.999999,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,2.310097,2.310097,2.310097,2.310097,2.310097,2.310097,2.310097,2.310097,0.796984,0.796984,15,15,, +31273,0,0.507854,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.882576,0.15,4,2.031414,2.031414,2.031414,2.031414,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,,,,,,,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,0.700838,0.700838,0.700838,0.700838,0.700838,0.700838,0.700838,0.700838,0.360576,0.360576,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,2.031414,0.700838,0.700838,15,15,, +31604,0,0.513408,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.00161,0.15,4,2.053634,2.053634,2.053634,2.053634,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,,,,,,,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,0.708504,0.708504,0.708504,0.708504,0.708504,0.708504,0.708504,0.708504,0.36452,0.36452,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,2.053634,0.708504,0.708504,15,15,, +31610,0,0.491043,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.522351,0.15,4,1.964172,1.964172,1.964172,1.964172,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,,,,,,,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,0.677639,0.677639,0.677639,0.677639,0.677639,0.677639,0.677639,0.677639,0.348641,0.348641,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,1.964172,0.677639,0.677639,15,15,, +31937,0,0.491911,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.540949,0.15,4,1.967644,1.967644,1.967644,1.967644,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,,,,,,,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,0.678837,0.678837,0.678837,0.678837,0.678837,0.678837,0.678837,0.678837,0.349257,0.349257,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,1.967644,0.678837,0.678837,15,15,, +33754,0,0.507472,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.874397,0.15,4,2.029887,2.029887,2.029887,2.029887,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,,,,,,,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,0.700311,0.700311,0.700311,0.700311,0.700311,0.700311,0.700311,0.700311,0.360305,0.360305,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,2.029887,0.700311,0.700311,15,15,, +33755,0,0.512816,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.988918,0.15,4,2.051265,2.051265,2.051265,2.051265,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,,,,,,,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,0.707686,0.707686,0.707686,0.707686,0.707686,0.707686,0.707686,0.707686,0.364099,0.364099,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,2.051265,0.707686,0.707686,15,15,, +15823,1,0.395345,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.593,3.989,0,8.471684,3.7,5,0.527127,,0.527127,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.636993,,0.527127,,0.636993,,0.555929,,0.527127,,0.555929,,0.666261,,0.527127,,0.666261,,0.527127,,0.527127,,0.527127,,,,,,,,0.636993,,0.555929,,0.666261,,0.527127,,0.527127,,0.26226,,0.237941,,0.27104,,0.2293,,0.122557,,37.238564,,42.66864,,35.602747,,45,,45,,,,,,,,,,,,7568,,0.527127,,0.527127,,0.527127,,0.527127,,0.2293,,45,,, +16524,0,0.509184,1,1,0,2,4,,4,2,Palmer,Rd,1607406,0.501,1.01,0,10.911083,4.5,4.5,0.803975,0.803975,0.803975,0.803975,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.954313,1.019302,0.803975,0.803975,0.954313,1.019302,0.843681,0.835248,0.803975,0.803975,0.843681,0.835248,1.180266,1.104135,0.803975,0.803975,1.180266,1.104135,0.803975,0.803975,0.803975,0.803975,0.803975,0.803975,,,,,,,0.954313,1.019302,0.843681,0.835248,1.180266,1.104135,0.803975,0.803975,0.803975,0.803975,0.377947,0.397444,0.344757,0.342227,0.445733,0.422894,0.332845,0.332845,0.176606,0.176606,32.013628,29.972511,36.211581,36.577217,25.884875,27.669649,38,38,38,38,,,,,,,,,,,3096,3096,0.803975,0.803975,0.803975,0.803975,0.803975,0.803975,0.803975,0.803975,0.332845,0.332845,38,38,, +17840,0,0.663419,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,1.883,2.547,0,14.216113,5.8,4.5,1.474264,1.474264,1.474264,1.474264,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.545206,1.487675,1.474264,1.474264,1.545206,1.487675,1.475251,1.474672,1.474264,1.474264,1.475251,1.474672,1.676066,1.589185,1.474264,1.474264,1.676066,1.589185,1.474264,1.474264,1.474264,1.474264,1.474264,1.474264,,,,,,,1.545206,1.487675,1.475251,1.474672,1.676066,1.589185,1.474264,1.474264,1.474264,1.474264,0.582977,0.565718,0.561991,0.561817,0.622235,0.596171,0.561694,0.561694,0.294116,0.294116,25.76039,26.756588,26.981922,26.992517,23.749135,25.047509,27,27,27,27,,,,,,,,,,,2580,2580,1.474264,1.474264,1.474264,1.474264,1.474264,1.474264,1.474264,1.474264,0.561694,0.561694,27,27,, +21621,0,0.513074,1,1,0,2,4,,4,2,Geddes,Rd,4603888,3.513,4.026,0,10.994436,4.5,4.5,0.810116,0.810116,0.810116,0.810116,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.147758,0.836953,0.810116,0.810116,1.147758,0.836953,0.835792,0.823327,0.810116,0.810116,0.835792,0.823327,0.911623,1.132457,0.810116,0.810116,0.911623,1.132457,0.810116,0.810116,0.810116,0.810116,0.810116,0.810116,,,,,,,1.147758,0.836953,0.835792,0.823327,0.911623,1.132457,0.810116,0.810116,0.810116,0.810116,0.436681,0.343439,0.343091,0.339351,0.36584,0.432091,0.335388,0.335388,0.177956,0.177956,26.821358,36.781551,36.832623,37.390266,33.768803,27.183732,38,38,38,38,,,,,,,,,,,3096,3096,0.810116,0.810116,0.810116,0.810116,0.810116,0.810116,0.810116,0.810116,0.335388,0.335388,38,38,, +22736,-1,0.524495,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,3.437,3.961,0,11.239181,3.7,5,,0.699327,,0.699327,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.828756,,0.699327,,0.828756,,0.747141,,0.699327,,0.747141,,0.875321,,0.699327,,0.875321,,0.699327,,0.699327,,0.699327,,,,,,,,0.828756,,0.747141,,0.875321,,0.699327,,0.699327,,0.343036,,0.318551,,0.357006,,0.304207,,0.162593,,37.972214,,42.120188,,35.952173,,45,,45,,,,,,,,,,,,7568,,0.699327,,0.699327,,0.699327,,0.699327,,0.304207,,45,, +23632,0,0.490065,1,1,0,2,3,,4,2,Canton Center,Rd,4706530,0.973,1.462,0,10.501402,3.7,5,0.735098,0.735098,0.735098,0.735098,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.710365,1.029195,0.735098,0.735098,1.710365,1.029195,0.966189,0.940071,0.735098,0.735098,0.966189,0.940071,1.510256,1.734003,0.735098,0.735098,1.510256,1.734003,0.735098,0.735098,0.735098,0.735098,0.735098,0.735098,,,,,,,1.710365,1.029195,0.966189,0.940071,1.510256,1.734003,0.735098,0.735098,0.735098,0.735098,0.601321,0.39697,0.378068,0.370233,0.541289,0.608413,0.308741,0.308741,0.164172,0.164172,17.191605,28.569829,30.432897,31.278397,19.4695,16.957256,40,40,40,40,,,,,,,,,,,3784,3784,0.735098,0.735098,0.735098,0.735098,0.735098,0.735098,0.735098,0.735098,0.308741,0.308741,40,40,, +31421,0,0.672837,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.417944,0.15,4,2.69135,2.69135,2.69135,2.69135,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,,,,,,,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,0.928516,0.928516,0.928516,0.928516,0.928516,0.928516,0.928516,0.928516,0.477715,0.477715,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,2.69135,0.928516,0.928516,15,15,, +31425,0,0.503544,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.790223,0.15,4,2.014175,2.014175,2.014175,2.014175,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,,,,,,,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,0.69489,0.69489,0.69489,0.69489,0.69489,0.69489,0.69489,0.69489,0.357516,0.357516,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,2.014175,0.69489,0.69489,15,15,, +31613,0,0.257194,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.51131,0.15,4,1.028778,1.028778,1.028778,1.028778,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,,,,,,,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,0.354928,0.354928,0.354928,0.354928,0.354928,0.354928,0.354928,0.354928,0.182608,0.182608,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,1.028778,0.354928,0.354928,15,15,, +33748,0,0.598314,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.821006,0.15,4,2.393255,2.393255,2.393255,2.393255,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,,,,,,,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,0.825673,0.825673,0.825673,0.825673,0.825673,0.825673,0.825673,0.825673,0.424803,0.424803,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,2.393255,0.825673,0.825673,15,15,, +15824,1,0.231495,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.362,3.593,0,4.96061,3.7,5,0.30866,,0.30866,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.388015,,0.30866,,0.388015,,0.331429,,0.30866,,0.331429,,0.40145,,0.30866,,0.40145,,0.30866,,0.30866,,0.30866,,,,,,,,0.388015,,0.331429,,0.40145,,0.30866,,0.30866,,0.158074,,0.141098,,0.162104,,0.134267,,0.071763,,35.796811,,41.908589,,34.598839,,45,,45,,,,,,,,,,,,7568,,0.30866,,0.30866,,0.30866,,0.30866,,0.134267,,45,,, +22487,0,0.623173,1,1,0,2,3,,4,2,Canton Center,Rd,4706530,0.35,0.973,0,13.353711,3.7,5,0.93476,0.93476,0.93476,0.93476,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.507758,1.593015,0.93476,0.93476,1.507758,1.593015,1.158307,1.163701,0.93476,0.93476,1.158307,1.163701,1.856467,1.511276,0.93476,0.93476,1.856467,1.511276,0.93476,0.93476,0.93476,0.93476,0.93476,0.93476,,,,,,,1.507758,1.593015,1.158307,1.163701,1.856467,1.511276,0.93476,0.93476,0.93476,0.93476,0.564499,0.590076,0.459663,0.461281,0.669111,0.565554,0.392599,0.392599,0.208763,0.208763,24.798664,23.471465,32.280213,32.130588,20.14062,24.740942,40,40,40,40,,,,,,,,,,,3784,3784,0.93476,0.93476,0.93476,0.93476,0.93476,0.93476,0.93476,0.93476,0.392599,0.392599,40,40,, +33747,0,0.308359,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.607683,0.15,4,1.233434,1.233434,1.233434,1.233434,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,,,,,,,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,0.425535,0.425535,0.425535,0.425535,0.425535,0.425535,0.425535,0.425535,0.218935,0.218935,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,1.233434,0.425535,0.425535,15,15,, +15825,1,0.113724,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.248,3.362,0,2.43695,3.7,5,0.151632,,0.151632,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.312797,,0.151632,,0.312797,,0.221981,,0.151632,,0.221981,,0.433536,,0.151632,,0.433536,,0.151632,,0.151632,,0.151632,,,,,,,,0.312797,,0.221981,,0.433536,,0.151632,,0.151632,,0.11431,,0.087065,,0.150531,,0.06596,,0.035255,,21.814311,,30.738976,,15.739091,,45,,45,,,,,,,,,,,,7568,,0.151632,,0.151632,,0.151632,,0.151632,,0.06596,,45,,, +22839,0,0.22353,1,1,1,2,3,,4,2,Canton Center,Rd,4706530,0,0.224,0,4.789938,3.7,5,0.335296,0.335296,0.335296,0.335296,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.460619,0.400331,0.335296,0.335296,0.460619,0.400331,0.368474,0.368326,0.335296,0.335296,0.368474,0.368326,0.473309,0.432365,0.335296,0.335296,0.473309,0.432365,0.335296,0.335296,0.335296,0.335296,0.335296,0.335296,,,,,,,0.460619,0.400331,0.368474,0.368326,0.473309,0.432365,0.335296,0.335296,0.335296,0.335296,0.178421,0.160335,0.150778,0.150733,0.182228,0.169945,0.140824,0.140824,0.074883,0.074883,29.116944,33.501843,36.398339,36.412915,28.336289,31.019655,40,40,40,40,,,,,,,,,,,4162,4162,0.335296,0.335296,0.335296,0.335296,0.335296,0.335296,0.335296,0.335296,0.140824,0.140824,40,40,, +23121,0,0.18645,1,1,0,2,5,,4,2,Old Canton Center,Rd,4706529,0,0.186,0,3.995358,5.8,4.5,0.414333,0.414333,0.414333,0.414333,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,,,,,,,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.157861,0.157861,0.157861,0.157861,0.157861,0.157861,0.157861,0.157861,0.08266,0.08266,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.414333,0.157861,0.157861,27,27,, +23005,-1,0.102219,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,3.335,3.437,0,2.190399,3.7,5,,0.136292,,0.136292,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.161516,,0.136292,,0.161516,,0.14561,,0.136292,,0.14561,,0.170591,,0.136292,,0.170591,,0.136292,,0.136292,,0.136292,,,,,,,,0.161516,,0.14561,,0.170591,,0.136292,,0.136292,,0.066854,,0.062082,,0.069577,,0.059287,,0.031688,,37.972214,,42.120188,,35.952173,,45,,45,,,,,,,,,,,,7568,,0.136292,,0.136292,,0.136292,,0.136292,,0.059287,,45,, +22634,0,0.019535,1,1,1,2,3,,4,2,Belleville,Rd,4705580,4.495,4.514,0,0.418615,3.7,5,0.029303,0.029303,0.029303,0.029303,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.058315,0.029869,0.029303,0.029303,0.058315,0.029869,0.043437,0.029448,0.029303,0.029303,0.043437,0.029448,0.083311,0.030273,0.029303,0.029303,0.083311,0.030273,0.029303,0.029303,0.029303,0.029303,0.029303,0.029303,,,,,,,0.058315,0.029869,0.043437,0.029448,0.083311,0.030273,0.029303,0.029303,0.029303,0.029303,0.021011,0.012477,0.016548,0.012351,0.02851,0.012598,0.012307,0.012307,0.006544,0.006544,20.099703,39.241821,26.984273,39.803528,14.069234,38.718798,40,40,40,40,,,,,,,,,,,4162,4162,0.029303,0.029303,0.029303,0.029303,0.029303,0.029303,0.029303,0.029303,0.012307,0.012307,40,40,, +22700,0,0.126158,1,1,1,2,3,,4,2,Canton Center,Rd,4706530,0.224,0.35,0,2.703378,3.7,5,0.189236,0.189236,0.189236,0.189236,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.259968,0.225942,0.189236,0.189236,0.259968,0.225942,0.207962,0.207878,0.189236,0.189236,0.207962,0.207878,0.26713,0.244021,0.189236,0.189236,0.26713,0.244021,0.189236,0.189236,0.189236,0.189236,0.189236,0.189236,,,,,,,0.259968,0.225942,0.207962,0.207878,0.26713,0.244021,0.189236,0.189236,0.189236,0.189236,0.100699,0.090491,0.085097,0.085072,0.102847,0.095915,0.079479,0.079479,0.042263,0.042263,29.116944,33.501843,36.398339,36.412915,28.336289,31.019655,40,40,40,40,,,,,,,,,,,4162,4162,0.189236,0.189236,0.189236,0.189236,0.189236,0.189236,0.189236,0.189236,0.079479,0.079479,40,40,, +16530,0,0.277108,1,1,0,2,4,,4,2,Palmer,Rd,1607406,0,0.277,0,5.938021,4.5,4.5,0.437538,0.437538,0.437538,0.437538,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.445858,0.445876,0.437538,0.437538,0.445858,0.445876,0.439388,0.439185,0.437538,0.437538,0.439388,0.439185,0.473232,0.463468,0.437538,0.437538,0.473232,0.463468,0.437538,0.437538,0.437538,0.437538,0.437538,0.437538,,,,,,,0.445858,0.445876,0.439388,0.439185,0.473232,0.463468,0.437538,0.437538,0.437538,0.437538,0.183637,0.183642,0.181696,0.181635,0.191849,0.18892,0.181141,0.181141,0.096113,0.096113,37.290918,37.289449,37.840067,37.857536,35.133858,35.874017,38,38,38,38,,,,,,,,,,,3096,3096,0.437538,0.437538,0.437538,0.437538,0.437538,0.437538,0.437538,0.437538,0.181141,0.181141,38,38,, +18222,0,0.474786,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,2.547,3.021,0,10.173981,5.8,4.5,1.055079,1.055079,1.055079,1.055079,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.092722,1.056701,1.055079,1.055079,1.092722,1.056701,1.055255,1.055202,1.055079,1.055079,1.055255,1.055202,1.198517,1.138612,1.055079,1.055079,1.198517,1.138612,1.055079,1.055079,1.055079,1.055079,1.055079,1.055079,,,,,,,1.092722,1.056701,1.055255,1.055202,1.198517,1.138612,1.055079,1.055079,1.055079,1.055079,0.413278,0.402472,0.402038,0.402022,0.445017,0.427045,0.401985,0.401985,0.210488,0.210488,26.069888,26.958569,26.995506,26.996859,23.768665,25.01918,27,27,27,27,,,,,,,,,,,2580,2580,1.055079,1.055079,1.055079,1.055079,1.055079,1.055079,1.055079,1.055079,0.401985,0.401985,27,27,, +23366,0,0.501113,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,1.462,1.963,0,10.738145,3.7,5,0.75167,0.75167,0.75167,0.75167,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.810731,0.773731,0.75167,0.75167,0.810731,0.773731,0.7628,0.76202,0.75167,0.75167,0.7628,0.76202,0.818986,0.843307,0.75167,0.75167,0.818986,0.843307,0.75167,0.75167,0.75167,0.75167,0.75167,0.75167,,,,,,,0.810731,0.773731,0.7628,0.76202,0.818986,0.843307,0.75167,0.75167,0.75167,0.75167,0.33342,0.32232,0.31904,0.318806,0.335896,0.343193,0.315701,0.315701,0.167873,0.167873,37.086058,38.859513,39.416353,39.456715,36.712243,35.653438,40,40,40,40,,,,,,,,,,,7946,7946,0.75167,0.75167,0.75167,0.75167,0.75167,0.75167,0.75167,0.75167,0.315701,0.315701,40,40,, +31603,0,0.248886,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.333261,0.15,4,0.995542,0.995542,0.995542,0.995542,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,,,,,,,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.343462,0.343462,0.343462,0.343462,0.343462,0.343462,0.343462,0.343462,0.176709,0.176709,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.995542,0.343462,0.343462,15,15,, +31616,0,0.503454,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.788306,0.15,4,2.013817,2.013817,2.013817,2.013817,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,,,,,,,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,0.694767,0.694767,0.694767,0.694767,0.694767,0.694767,0.694767,0.694767,0.357453,0.357453,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,2.013817,0.694767,0.694767,15,15,, +16298,0,0.224014,1,1,0,2,4,,4,2,Palmer,Rd,1607406,0.277,0.501,0,4.80031,4.5,4.5,0.353707,0.353707,0.353707,0.353707,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.360433,0.359908,0.353707,0.353707,0.360433,0.359908,0.355202,0.355038,0.353707,0.353707,0.355202,0.355038,0.382514,0.374669,0.353707,0.353707,0.382514,0.374669,0.353707,0.353707,0.353707,0.353707,0.353707,0.353707,,,,,,,0.360433,0.359908,0.355202,0.355038,0.382514,0.374669,0.353707,0.353707,0.353707,0.353707,0.148452,0.148295,0.146883,0.146834,0.155077,0.152723,0.146435,0.146435,0.077698,0.077698,37.290918,37.345331,37.840067,37.857536,35.138214,35.874017,38,38,38,38,,,,,,,,,,,3096,3096,0.353707,0.353707,0.353707,0.353707,0.353707,0.353707,0.353707,0.353707,0.146435,0.146435,38,38,, +31265,0,0.248888,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.333312,0.15,4,0.995552,0.995552,0.995552,0.995552,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,,,,,,,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.343465,0.343465,0.343465,0.343465,0.343465,0.343465,0.343465,0.343465,0.17671,0.17671,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.995552,0.343465,0.343465,15,15,, +15821,1,0.188951,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,4.307,4.496,0,4.048951,3.7,5,0.251935,,0.251935,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.4852,,0.251935,,0.4852,,0.310119,,0.251935,,0.310119,,0.460274,,0.251935,,0.460274,,0.251935,,0.251935,,0.251935,,,,,,,,0.4852,,0.310119,,0.460274,,0.251935,,0.251935,,0.179571,,0.127047,,0.172093,,0.109592,,0.058575,,23.365771,,36.557123,,24.631128,,45,,45,,,,,,,,,,,,7568,,0.251935,,0.251935,,0.251935,,0.251935,,0.109592,,45,,, +18235,0,0.557267,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,1.326,1.883,0,11.941436,5.8,4.5,1.238371,1.238371,1.238371,1.238371,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.394992,1.394403,1.238371,1.238371,1.394992,1.394403,1.245243,1.244742,1.238371,1.238371,1.245243,1.244742,1.670579,1.481739,1.238371,1.238371,1.670579,1.481739,1.238371,1.238371,1.238371,1.238371,1.238371,1.238371,,,,,,,1.394992,1.394403,1.245243,1.244742,1.670579,1.481739,1.238371,1.238371,1.238371,1.238371,0.518806,0.518629,0.473881,0.473731,0.601482,0.54483,0.471819,0.471819,0.247055,0.247055,23.968618,23.97873,26.851001,26.861799,20.014629,22.565389,27,27,27,27,,,,,,,,,,,2580,2580,1.238371,1.238371,1.238371,1.238371,1.238371,1.238371,1.238371,1.238371,0.471819,0.471819,27,27,, +23413,-1,0.458105,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,4.013,4.471,0,9.816529,3.7,5,,0.610806,,0.610806,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.93429,,0.610806,,0.93429,,0.745941,,0.610806,,0.745941,,1.244934,,0.610806,,1.244934,,0.610806,,0.610806,,0.610806,,,,,,,,0.93429,,0.745941,,1.244934,,0.610806,,0.610806,,0.362746,,0.306241,,0.455939,,0.265701,,0.142012,,29.419442,,36.847778,,22.078497,,45,,45,,,,,,,,,,,,7568,,0.610806,,0.610806,,0.610806,,0.610806,,0.265701,,45,, +31259,0,0.597617,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.806087,0.15,4,2.39047,2.39047,2.39047,2.39047,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,,,,,,,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,0.824712,0.824712,0.824712,0.824712,0.824712,0.824712,0.824712,0.824712,0.424308,0.424308,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,2.39047,0.824712,0.824712,15,15,, +31614,0,0.494787,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.602575,0.15,4,1.979147,1.979147,1.979147,1.979147,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,,,,,,,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,0.682806,0.682806,0.682806,0.682806,0.682806,0.682806,0.682806,0.682806,0.351299,0.351299,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,1.979147,0.682806,0.682806,15,15,, +33749,0,0.578707,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.400869,0.15,4,2.314829,2.314829,2.314829,2.314829,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,,,,,,,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,0.798616,0.798616,0.798616,0.798616,0.798616,0.798616,0.798616,0.798616,0.410882,0.410882,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,2.314829,0.798616,0.798616,15,15,, +15822,1,0.318701,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.989,4.307,0,6.829297,3.7,5,0.424934,,0.424934,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.802819,,0.424934,,0.802819,,0.514331,,0.424934,,0.514331,,0.743018,,0.424934,,0.743018,,0.424934,,0.424934,,0.424934,,,,,,,,0.802819,,0.514331,,0.743018,,0.424934,,0.424934,,0.298212,,0.211666,,0.280272,,0.184846,,0.098797,,23.818604,,37.178424,,25.735611,,45,,45,,,,,,,,,,,,7568,,0.424934,,0.424934,,0.424934,,0.424934,,0.184846,,45,,, +17901,0,0.218768,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,1.068,1.287,0,4.687894,5.8,4.5,0.486152,0.486152,0.486152,0.486152,27,27,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.486169,0.486467,0.486152,0.486152,0.486169,0.486467,0.486176,0.486184,0.486152,0.486152,0.486176,0.486184,0.486408,0.486224,0.486152,0.486152,0.486408,0.486224,0.486152,0.486152,0.486152,0.486152,0.486152,0.486152,,,,,,,0.486169,0.486467,0.486176,0.486184,0.486408,0.486224,0.486152,0.486152,0.486152,0.486152,0.185229,0.185318,0.185231,0.185234,0.185301,0.185245,0.185224,0.185224,0.096987,0.096987,26.999032,26.982525,26.998669,26.998217,26.985778,26.996007,27,27,27,27,,,,,,,,,,,5160,5160,0.486152,0.486152,0.486152,0.486152,0.486152,0.486152,0.486152,0.486152,0.185224,0.185224,27,27,, +21424,-1,0.051565,0,1,0,2,4,,4,2,Geddes,Rd,4603888,4.026,4.078,0,1.104964,4.5,4.5,,0.081418,,0.081418,,38,,9000,,2043,,4500,,2903,,3096,,3092,,0.085008,,0.081418,,0.085008,,0.082973,,0.081418,,0.082973,,0.12856,,0.081418,,0.12856,,0.081418,,0.081418,,0.081418,,,,,,,,0.085008,,0.082973,,0.12856,,0.081418,,0.081418,,0.034784,,0.034173,,0.04785,,0.033707,,0.017885,,36.395569,,37.288232,,24.065762,,38,,38,,,,,,,,,,,,3096,,0.081418,,0.081418,,0.081418,,0.081418,,0.033707,,38,, +22292,-1,0.051724,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,3.961,4.013,0,1.108382,3.7,5,,0.068966,,0.068966,,45,,22000,,4994,,11000,,7097,,7568,,7559,,0.079792,,0.068966,,0.079792,,0.07356,,0.068966,,0.07356,,0.07832,,0.068966,,0.07832,,0.068966,,0.068966,,0.068966,,,,,,,,0.079792,,0.07356,,0.07832,,0.068966,,0.068966,,0.033248,,0.031378,,0.032806,,0.03,,0.016035,,38.894609,,42.189845,,39.625651,,45,,45,,,,,,,,,,,,7568,,0.068966,,0.068966,,0.068966,,0.068966,,0.03,,45,, +17894,0,0.0205,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,1.306,1.326,0,0.439292,5.8,4.5,0.045556,0.045556,0.045556,0.045556,27,27,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.045669,0.062752,0.045556,0.045556,0.045669,0.062752,0.045562,0.04665,0.045556,0.045556,0.045562,0.04665,0.045833,0.055892,0.045556,0.045556,0.045833,0.055892,0.045556,0.045556,0.045556,0.045556,0.045556,0.045556,,,,,,,0.045669,0.062752,0.045562,0.04665,0.045833,0.055892,0.045556,0.045556,0.045556,0.045556,0.017391,0.022516,0.017359,0.017685,0.01744,0.020458,0.017357,0.017357,0.009088,0.009088,26.933393,19.601273,26.996662,26.366803,26.837204,22.006874,27,27,27,27,,,,,,,,,,,5160,5160,0.045556,0.045556,0.045556,0.045556,0.045556,0.045556,0.045556,0.045556,0.017357,0.017357,27,27,, +18279,0,0.019259,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,1.287,1.306,0,0.412699,5.8,4.5,0.042798,0.042798,0.042798,0.042798,27,27,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.042909,0.055966,0.042798,0.042798,0.042909,0.055966,0.042805,0.043858,0.042798,0.042798,0.042805,0.043858,0.043089,0.046492,0.042798,0.042798,0.043089,0.046492,0.042798,0.042798,0.042798,0.042798,0.042798,0.042798,,,,,,,0.042909,0.055966,0.042805,0.043858,0.043089,0.046492,0.042798,0.042798,0.042798,0.042798,0.01634,0.020256,0.016308,0.016624,0.016393,0.017414,0.016306,0.016306,0.008538,0.008538,26.930147,20.647627,26.995674,26.347842,26.817762,24.855203,27,27,27,27,,,,,,,,,,,5160,5160,0.042798,0.042798,0.042798,0.042798,0.042798,0.042798,0.042798,0.042798,0.016306,0.016306,27,27,, +31435,0,0.501337,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.742944,0.15,4,2.00535,2.00535,2.00535,2.00535,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,,,,,,,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,0.691846,0.691846,0.691846,0.691846,0.691846,0.691846,0.691846,0.691846,0.35595,0.35595,14.999999,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,2.00535,0.691846,0.691846,15,15,, +14756,0,0.502591,2,2,1,2,3,,4,2,Ford,Rd,1595510,3.485,3.988,0,10.769813,3.7,5,0.753887,0.753887,0.753887,0.753887,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.94753,0.926567,0.753887,0.753887,0.94753,0.926567,0.858043,0.858372,0.753887,0.753887,0.858043,0.858372,0.97832,1.087844,0.753887,0.753887,0.97832,1.087844,0.753887,0.753887,0.753887,0.753887,0.753887,0.753887,,,,,,,0.94753,0.926567,0.858043,0.858372,0.97832,1.087844,0.753887,0.753887,0.753887,0.753887,0.374726,0.368437,0.347879,0.347978,0.383962,0.41682,0.316632,0.316632,0.168368,0.168368,31.825335,32.54537,35.144466,35.130996,30.823738,27.720404,40,40,40,40,,,,,,,,,,,7946,7946,0.753887,0.753887,0.753887,0.753887,0.753887,0.753887,0.753887,0.753887,0.316632,0.316632,40,40,, +16460,0,0.441108,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,3.482,3.923,0,9.452315,4.5,4.5,0.696486,0.696486,0.696486,0.696486,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.838741,0.995356,0.696486,0.696486,0.838741,0.995356,0.786526,0.784362,0.696486,0.696486,0.786526,0.784362,1.256022,0.975893,0.696486,0.696486,1.256022,0.975893,0.696486,0.696486,0.696486,0.696486,0.696486,0.696486,,,,,,,0.838741,0.995356,0.786526,0.784362,1.256022,0.975893,0.696486,0.696486,0.696486,0.696486,0.331022,0.378006,0.315357,0.314708,0.456206,0.372167,0.288345,0.288345,0.152995,0.152995,31.554997,26.589961,33.649847,33.742707,21.071672,27.120266,38,38,38,38,,,,,,,,,,,3406,3406,0.696486,0.696486,0.696486,0.696486,0.696486,0.696486,0.696486,0.696486,0.288345,0.288345,38,38,, +17815,0,0.186697,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,4.368,4.555,0,4.000653,5.8,4.5,0.414883,0.414883,0.414883,0.414883,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.543229,0.449106,0.414883,0.414883,0.543229,0.449106,0.430765,0.42861,0.414883,0.414883,0.430765,0.42861,0.498823,0.612016,0.414883,0.414883,0.498823,0.612016,0.414883,0.414883,0.414883,0.414883,0.414883,0.414883,,,,,,,0.543229,0.449106,0.430765,0.42861,0.498823,0.612016,0.414883,0.414883,0.414883,0.414883,0.196574,0.168337,0.162835,0.162188,0.183252,0.21721,0.15807,0.15807,0.082769,0.082769,20.620828,24.94249,26.004496,26.135267,22.45653,18.303165,27,27,27,27,,,,,,,,,,,2580,2580,0.414883,0.414883,0.414883,0.414883,0.414883,0.414883,0.414883,0.414883,0.15807,0.15807,27,27,, +18232,0,0.504905,1,1,0,2,5,,4,2,Saltz,Rd,1680609,2.725,3.229,0,10.81939,5.8,4.5,1.122011,1.122011,1.122011,1.122011,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.12893,1.129796,1.122011,1.122011,1.12893,1.129796,1.12463,1.124529,1.122011,1.122011,1.12463,1.124529,1.264248,1.20779,1.122011,1.122011,1.264248,1.20779,1.122011,1.122011,1.122011,1.122011,1.122011,1.122011,,,,,,,1.12893,1.129796,1.12463,1.124529,1.264248,1.20779,1.122011,1.122011,1.122011,1.122011,0.429562,0.429822,0.428272,0.428242,0.470157,0.45322,0.427486,0.427486,0.223841,0.223841,26.834508,26.81394,26.937114,26.939531,23.962293,25.082425,27,27,27,27,,,,,,,,,,,2580,2580,1.122011,1.122011,1.122011,1.122011,1.122011,1.122011,1.122011,1.122011,0.427486,0.427486,27,27,, +18874,0,0.507663,1,1,0,2,5,,4,2,Hanford,Rd,1676006,3.499,4.006,0,10.878499,5.8,4.5,1.128141,1.128141,1.128141,1.128141,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.139789,1.128367,1.128141,1.128141,1.139789,1.128367,1.128405,1.128214,1.128141,1.128141,1.128405,1.128214,1.17587,1.171993,1.128141,1.128141,1.17587,1.171993,1.128141,1.128141,1.128141,1.128141,1.128141,1.128141,,,,,,,1.139789,1.128367,1.128405,1.128214,1.17587,1.171993,1.128141,1.128141,1.128141,1.128141,0.433316,0.42989,0.429901,0.429844,0.44414,0.442977,0.429822,0.429822,0.225064,0.225064,26.724065,26.994584,26.993674,26.998251,25.904053,25.989749,27,27,27,27,,,,,,,,,,,2580,2580,1.128141,1.128141,1.128141,1.128141,1.128141,1.128141,1.128141,1.128141,0.429822,0.429822,27,27,, +23552,0,0.236509,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.232,3.468,0,5.068057,3.7,5,0.354764,0.354764,0.354764,0.354764,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.526538,0.378568,0.354764,0.354764,0.526538,0.378568,0.366338,0.36595,0.354764,0.354764,0.366338,0.36595,0.417564,0.53548,0.354764,0.354764,0.417564,0.53548,0.354764,0.354764,0.354764,0.354764,0.354764,0.354764,,,,,,,0.526538,0.378568,0.366338,0.36595,0.417564,0.53548,0.354764,0.354764,0.354764,0.354764,0.200533,0.156142,0.152473,0.152357,0.167841,0.203216,0.149001,0.149001,0.079231,0.079231,26.950691,37.484863,38.736299,38.777359,33.984192,26.500611,40,40,40,40,,,,,,,,,,,7946,7946,0.354764,0.354764,0.354764,0.354764,0.354764,0.354764,0.354764,0.354764,0.149001,0.149001,40,40,, +23973,0,0.263787,1,1,0,2,5,,4,2,Morton Taylor,Rd,4706622,0.237,0.501,0,5.652581,5.8,4.5,0.586194,0.586194,0.586194,0.586194,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.234628,0.727898,0.586194,0.586194,1.234628,0.727898,0.901779,0.894874,0.586194,0.586194,0.901779,0.894874,1.066582,1.291644,0.586194,0.586194,1.066582,1.291644,0.586194,0.586194,0.586194,0.586194,0.586194,0.586194,,,,,,,1.234628,0.727898,0.901779,0.894874,1.066582,1.291644,0.586194,0.586194,0.586194,0.586194,0.41787,0.265851,0.318015,0.315944,0.367456,0.434975,0.22334,0.22334,0.116946,0.116946,12.819433,21.743727,17.551108,17.686541,14.839202,12.253555,27,27,27,27,,,,,,,,,,,2580,2580,0.586194,0.586194,0.586194,0.586194,0.586194,0.586194,0.586194,0.586194,0.22334,0.22334,27,27,, +31267,0,0.493901,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.583591,0.15,4,1.975604,1.975604,1.975604,1.975604,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,,,,,,,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,0.681583,0.681583,0.681583,0.681583,0.681583,0.681583,0.681583,0.681583,0.35067,0.35067,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,1.975604,0.681583,0.681583,15,15,, +31439,0,0.2508,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.374289,0.15,4,1.003201,1.003201,1.003201,1.003201,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,,,,,,,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,0.346104,0.346104,0.346104,0.346104,0.346104,0.346104,0.346104,0.346104,0.178068,0.178068,14.999999,15,15,15,14.999999,14.999994,15,15,15,15,,,,,,,,,,,34400,34400,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,1.003201,0.346104,0.346104,15,15,, +31638,0,0.512709,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.986632,0.15,4,2.050838,2.050838,2.050838,2.050838,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,,,,,,,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,0.707539,0.707539,0.707539,0.707539,0.707539,0.707539,0.707539,0.707539,0.364024,0.364024,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,2.050838,0.707539,0.707539,15,15,, +31935,0,0.512059,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.972688,0.15,4,2.048235,2.048235,2.048235,2.048235,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,,,,,,,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,0.706641,0.706641,0.706641,0.706641,0.706641,0.706641,0.706641,0.706641,0.363562,0.363562,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,2.048235,0.706641,0.706641,15,15,, +33745,0,0.491232,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.526406,0.15,4,1.964929,1.964929,1.964929,1.964929,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,,,,,,,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,0.677901,0.677901,0.677901,0.677901,0.677901,0.677901,0.677901,0.677901,0.348775,0.348775,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,1.964929,0.677901,0.677901,15,15,, +16461,0,0.180087,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,2.983,3.163,0,3.859012,4.5,4.5,0.284348,0.284348,0.284348,0.284348,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.293446,0.299497,0.284348,0.284348,0.293446,0.299497,0.289335,0.289308,0.284348,0.284348,0.289335,0.289308,0.317298,0.29922,0.284348,0.284348,0.317298,0.29922,0.284348,0.284348,0.284348,0.284348,0.284348,0.284348,,,,,,,0.293446,0.299497,0.289335,0.289308,0.317298,0.29922,0.284348,0.284348,0.284348,0.284348,0.12045,0.122265,0.119216,0.119208,0.127605,0.122182,0.11772,0.11772,0.062462,0.062462,36.821867,36.077989,37.345011,37.34858,34.053859,36.111386,38,38,38,38,,,,,,,,,,,3406,3406,0.284348,0.284348,0.284348,0.284348,0.284348,0.284348,0.284348,0.284348,0.11772,0.11772,38,38,, +17816,0,0.252383,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,3.8,4.052,0,5.408197,5.8,4.5,0.56085,0.56085,0.56085,0.56085,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.763258,0.562123,0.56085,0.56085,0.763258,0.562123,0.565702,0.564924,0.56085,0.56085,0.565702,0.564924,0.614306,0.813965,0.56085,0.56085,0.614306,0.813965,0.56085,0.56085,0.56085,0.56085,0.56085,0.56085,,,,,,,0.763258,0.562123,0.565702,0.564924,0.614306,0.813965,0.56085,0.56085,0.56085,0.56085,0.274406,0.214066,0.215139,0.214906,0.229721,0.289618,0.213684,0.213684,0.11189,0.11189,19.839896,26.938845,26.768449,26.80531,24.650515,18.603947,27,27,27,27,,,,,,,,,,,2580,2580,0.56085,0.56085,0.56085,0.56085,0.56085,0.56085,0.56085,0.56085,0.213684,0.213684,27,27,, +18553,0,0.278086,1,1,0,2,5,,4,2,Saltz,Rd,1680609,2.225,2.503,0,5.958988,5.8,4.5,0.617969,0.617969,0.617969,0.617969,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.618505,0.617996,0.617969,0.617969,0.618505,0.617996,0.618004,0.617992,0.617969,0.617969,0.618004,0.617992,0.61859,0.63356,0.617969,0.617969,0.61859,0.63356,0.617969,0.617969,0.617969,0.617969,0.617969,0.617969,,,,,,,0.618505,0.617996,0.618004,0.617992,0.61859,0.63356,0.617969,0.617969,0.617969,0.617969,0.235607,0.235454,0.235457,0.235453,0.235633,0.240124,0.235446,0.235446,0.123285,0.123285,26.976603,26.99884,26.998489,26.99902,26.972892,26.335558,27,27,27,27,,,,,,,,,,,2580,2580,0.617969,0.617969,0.617969,0.617969,0.617969,0.617969,0.617969,0.617969,0.235446,0.235446,27,27,, +22840,0,0.210801,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,2.757,2.967,0,4.517162,3.7,5,0.316201,0.316201,0.316201,0.316201,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.54029,0.341458,0.316201,0.316201,0.54029,0.341458,0.336337,0.335169,0.316201,0.316201,0.336337,0.335169,0.422285,0.594734,0.316201,0.316201,0.422285,0.594734,0.316201,0.316201,0.316201,0.316201,0.316201,0.316201,,,,,,,0.54029,0.341458,0.336337,0.335169,0.422285,0.594734,0.316201,0.316201,0.316201,0.316201,0.200031,0.140382,0.138845,0.138495,0.16463,0.216364,0.132805,0.132805,0.070618,0.070618,23.409737,37.041278,37.605304,37.736317,29.951465,21.266734,40,40,40,40,,,,,,,,,,,7946,7946,0.316201,0.316201,0.316201,0.316201,0.316201,0.316201,0.316201,0.316201,0.132805,0.132805,40,40,, +31264,0,0.253167,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.424998,0.15,4,1.012666,1.012666,1.012666,1.012666,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,,,,,,,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,0.34937,0.34937,0.34937,0.34937,0.34937,0.34937,0.34937,0.34937,0.179748,0.179748,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,1.012666,0.34937,0.34937,15,15,, +31440,0,0.250552,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.368962,0.15,4,1.002206,1.002206,1.002206,1.002206,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,,,,,,,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,0.345761,0.345761,0.345761,0.345761,0.345761,0.345761,0.345761,0.345761,0.177892,0.177892,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,1.002206,0.345761,0.345761,15,15,, +31620,0,0.252044,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.400941,0.15,4,1.008176,1.008176,1.008176,1.008176,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,,,,,,,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,0.347821,0.347821,0.347821,0.347821,0.347821,0.347821,0.347821,0.347821,0.178951,0.178951,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,1.008176,0.347821,0.347821,15,15,, +22974,0,0.2946,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,2.462,2.757,0,6.312849,3.7,5,0.441899,0.441899,0.441899,0.441899,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.656295,0.466478,0.441899,0.441899,0.656295,0.466478,0.460205,0.458924,0.441899,0.441899,0.460205,0.458924,0.54008,0.68148,0.441899,0.441899,0.54008,0.68148,0.441899,0.441899,0.441899,0.441899,0.441899,0.441899,,,,,,,0.656295,0.466478,0.460205,0.458924,0.54008,0.68148,0.441899,0.441899,0.441899,0.441899,0.249916,0.192971,0.191089,0.190705,0.215052,0.257472,0.185598,0.185598,0.098691,0.098691,26.932983,37.892383,38.408955,38.516101,32.72846,25.937639,40,40,40,40,,,,,,,,,,,7946,7946,0.441899,0.441899,0.441899,0.441899,0.441899,0.441899,0.441899,0.441899,0.185598,0.185598,40,40,, +22625,0,0.15313,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,2.967,3.12,0,3.281356,3.7,5,0.229695,0.229695,0.229695,0.229695,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.35701,0.24577,0.229695,0.229695,0.35701,0.24577,0.243467,0.243005,0.229695,0.229695,0.243467,0.243005,0.310043,0.378834,0.229695,0.229695,0.310043,0.378834,0.229695,0.229695,0.229695,0.229695,0.229695,0.229695,,,,,,,0.35701,0.24577,0.243467,0.243005,0.310043,0.378834,0.229695,0.229695,0.229695,0.229695,0.134667,0.101294,0.100603,0.100465,0.120576,0.141213,0.096472,0.096472,0.051299,0.051299,25.735368,37.383789,37.73734,37.809079,29.63398,24.252855,40,40,40,40,,,,,,,,,,,7946,7946,0.229695,0.229695,0.229695,0.229695,0.229695,0.229695,0.229695,0.229695,0.096472,0.096472,40,40,, +22488,0,0.111059,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.12,3.232,0,2.37984,3.7,5,0.166589,0.166589,0.166589,0.166589,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.249887,0.17645,0.166589,0.166589,0.249887,0.17645,0.174994,0.174644,0.166589,0.166589,0.174994,0.174644,0.212207,0.257886,0.166589,0.166589,0.212207,0.257886,0.166589,0.166589,0.166589,0.166589,0.166589,0.166589,,,,,,,0.249887,0.17645,0.174994,0.174644,0.212207,0.257886,0.166589,0.166589,0.166589,0.166589,0.094957,0.072926,0.072489,0.072384,0.083653,0.097356,0.069967,0.069967,0.037205,0.037205,26.666305,37.764499,38.078761,38.155114,31.401147,25.839144,40,40,40,40,,,,,,,,,,,7946,7946,0.166589,0.166589,0.166589,0.166589,0.166589,0.166589,0.166589,0.166589,0.069967,0.069967,40,40,, +16207,0,0.318523,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,3.163,3.482,0,6.8255,4.5,4.5,0.502932,0.502932,0.502932,0.502932,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.515081,0.528409,0.502932,0.502932,0.515081,0.528409,0.509331,0.509255,0.502932,0.502932,0.509331,0.509255,0.563044,0.52699,0.502932,0.502932,0.563044,0.52699,0.502932,0.502932,0.502932,0.502932,0.502932,0.502932,,,,,,,0.515081,0.528409,0.509331,0.509255,0.563044,0.52699,0.502932,0.502932,0.502932,0.502932,0.211858,0.215857,0.210133,0.210111,0.226247,0.215431,0.208214,0.208214,0.110477,0.110477,37.103698,36.167787,37.522586,37.528137,33.942993,36.265226,38,38,38,38,,,,,,,,,,,3406,3406,0.502932,0.502932,0.502932,0.502932,0.502932,0.502932,0.502932,0.502932,0.208214,0.208214,38,38,, +31618,0,0.250084,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.358937,0.15,4,1.000335,1.000335,1.000335,1.000335,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,,,,,,,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,0.345116,0.345116,0.345116,0.345116,0.345116,0.345116,0.345116,0.345116,0.177559,0.177559,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,1.000335,0.345116,0.345116,15,15,, +31619,0,0.259616,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.563211,0.15,4,1.038466,1.038466,1.038466,1.038466,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,,,,,,,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,0.358271,0.358271,0.358271,0.358271,0.358271,0.358271,0.358271,0.358271,0.184328,0.184328,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,1.038466,0.358271,0.358271,15,15,, +18216,0,0.246699,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,3.554,3.8,0,5.286399,5.8,4.5,0.548219,0.548219,0.548219,0.548219,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.746068,0.551997,0.548219,0.548219,0.746068,0.551997,0.556193,0.554949,0.548219,0.548219,0.556193,0.554949,0.611298,0.795633,0.548219,0.548219,0.611298,0.795633,0.548219,0.548219,0.548219,0.548219,0.548219,0.548219,,,,,,,0.746068,0.551997,0.556193,0.554949,0.611298,0.795633,0.548219,0.548219,0.548219,0.548219,0.268226,0.210005,0.211264,0.210891,0.227795,0.283096,0.208871,0.208871,0.10937,0.10937,19.839896,26.815214,26.612894,26.672554,24.213906,18.603947,27,27,27,27,,,,,,,,,,,2580,2580,0.548219,0.548219,0.548219,0.548219,0.548219,0.548219,0.548219,0.548219,0.208871,0.208871,27,27,, +18215,0,0.31565,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,4.052,4.368,0,6.763926,5.8,4.5,0.701444,0.701444,0.701444,0.701444,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.846153,0.701728,0.701444,0.701444,0.846153,0.701728,0.704124,0.703151,0.701444,0.701444,0.704124,0.703151,0.712912,0.843098,0.701444,0.701444,0.712912,0.843098,0.701444,0.701444,0.701444,0.701444,0.701444,0.701444,,,,,,,0.846153,0.701728,0.704124,0.703151,0.712912,0.843098,0.701444,0.701444,0.701444,0.701444,0.310663,0.267335,0.268054,0.267762,0.270691,0.309746,0.26725,0.26725,0.139938,0.139938,22.382474,26.989091,26.897256,26.934469,26.565677,22.463586,27,27,27,27,,,,,,,,,,,2580,2580,0.701444,0.701444,0.701444,0.701444,0.701444,0.701444,0.701444,0.701444,0.26725,0.26725,27,27,, +18454,0,0.221354,1,1,0,2,5,,4,2,Saltz,Rd,1680609,2.503,2.725,0,4.743306,5.8,4.5,0.491898,0.491898,0.491898,0.491898,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.493101,0.493556,0.491898,0.491898,0.493101,0.493556,0.493594,0.493189,0.491898,0.491898,0.493594,0.493189,0.511477,0.509397,0.491898,0.491898,0.511477,0.509397,0.491898,0.491898,0.491898,0.491898,0.491898,0.491898,,,,,,,0.493101,0.493556,0.493594,0.493189,0.511477,0.509397,0.491898,0.491898,0.491898,0.491898,0.187774,0.187911,0.187922,0.187801,0.193287,0.192663,0.187413,0.187413,0.098134,0.098134,26.934134,26.909311,26.907227,26.929318,25.966493,26.072511,27,27,27,27,,,,,,,,,,,2580,2580,0.491898,0.491898,0.491898,0.491898,0.491898,0.491898,0.491898,0.491898,0.187413,0.187413,27,27,, +31615,0,0.256733,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.501423,0.15,4,1.026932,1.026932,1.026932,1.026932,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,,,,,,,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,0.354292,0.354292,0.354292,0.354292,0.354292,0.354292,0.354292,0.354292,0.18228,0.18228,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,1.026932,0.354292,0.354292,15,15,, +31617,0,0.252428,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.40917,0.15,4,1.009712,1.009712,1.009712,1.009712,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,,,,,,,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,0.348351,0.348351,0.348351,0.348351,0.348351,0.348351,0.348351,0.348351,0.179224,0.179224,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,1.009712,0.348351,0.348351,15,15,, +15218,0,0.236452,2,2,1,2,3,,4,2,Ford,Rd,1595510,2.986,3.222,0,5.066822,3.7,5,0.354678,0.354678,0.354678,0.354678,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.378816,0.370975,0.354678,0.354678,0.378816,0.370975,0.363716,0.363372,0.354678,0.354678,0.363716,0.363372,0.388065,0.403487,0.354678,0.354678,0.388065,0.403487,0.354678,0.354678,0.354678,0.354678,0.354678,0.354678,,,,,,,0.378816,0.370975,0.363716,0.363372,0.388065,0.403487,0.354678,0.354678,0.354678,0.354678,0.156206,0.153854,0.151676,0.151573,0.158981,0.163607,0.148965,0.148965,0.079211,0.079211,37.451173,38.242734,39.005958,39.042892,36.558567,35.161222,40,40,40,40,,,,,,,,,,,7946,7946,0.354678,0.354678,0.354678,0.354678,0.354678,0.354678,0.354678,0.354678,0.148965,0.148965,40,40,, +17810,0,0.220192,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,4.834,5.054,0,4.718396,4.5,4.5,0.347671,0.347671,0.347671,0.347671,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.421712,0.348897,0.347671,0.347671,0.421712,0.348897,0.348325,0.348192,0.347671,0.347671,0.348325,0.348192,0.370966,0.424819,0.347671,0.347671,0.370966,0.424819,0.347671,0.347671,0.347671,0.347671,0.347671,0.347671,,,,,,,0.421712,0.348897,0.348325,0.348192,0.370966,0.424819,0.347671,0.347671,0.347671,0.347671,0.166148,0.144304,0.144132,0.144092,0.150924,0.16708,0.143936,0.143936,0.076372,0.076372,31.328265,37.866468,37.928703,37.943188,35.613767,31.099145,38,38,38,38,,,,,,,,,,,3096,3096,0.347671,0.347671,0.347671,0.347671,0.347671,0.347671,0.347671,0.347671,0.143936,0.143936,38,38,, +17903,0,0.34397,1,1,0,2,5,,4,2,Hanford,Rd,1676006,2.997,3.341,0,7.370795,5.8,4.5,0.764379,0.764379,0.764379,0.764379,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.764383,0.76438,0.764379,0.764379,0.764383,0.76438,0.764381,0.76438,0.764379,0.764379,0.764381,0.76438,0.764414,0.764421,0.764379,0.764379,0.764414,0.764421,0.764379,0.764379,0.764379,0.764379,0.764379,0.764379,,,,,,,0.764383,0.76438,0.764381,0.76438,0.764414,0.764421,0.764379,0.764379,0.764379,0.764379,0.29123,0.291229,0.291229,0.291229,0.291239,0.291241,0.291228,0.291228,0.152494,0.152494,26.999835,26.999939,26.999917,26.999965,26.998749,26.998502,27,27,27,27,,,,,,,,,,,2580,2580,0.764379,0.764379,0.764379,0.764379,0.764379,0.764379,0.764379,0.764379,0.291228,0.291228,27,27,, +23122,0,0.28015,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.693,3.973,0,6.003217,3.7,5,0.420225,0.420225,0.420225,0.420225,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.517643,0.438523,0.420225,0.420225,0.517643,0.438523,0.429393,0.429939,0.420225,0.420225,0.429393,0.429939,0.497734,0.574191,0.420225,0.420225,0.497734,0.574191,0.420225,0.420225,0.420225,0.420225,0.420225,0.420225,,,,,,,0.517643,0.438523,0.429393,0.429939,0.497734,0.574191,0.420225,0.420225,0.420225,0.420225,0.20572,0.181984,0.179245,0.179409,0.199747,0.222684,0.176495,0.176495,0.09385,0.09385,32.472192,38.330953,39.146015,39.09629,33.771068,29.274255,40,40,40,40,,,,,,,,,,,7946,7946,0.420225,0.420225,0.420225,0.420225,0.420225,0.420225,0.420225,0.420225,0.176495,0.176495,40,40,, +31444,0,0.248017,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.314642,0.15,4,0.992067,0.992067,0.992067,0.992067,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,,,,,,,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.342263,0.342263,0.342263,0.342263,0.342263,0.342263,0.342263,0.342263,0.176092,0.176092,15,14.999997,14.999999,14.999999,14.999995,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.992067,0.342263,0.342263,15,15,, +31475,0,0.263232,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.640675,0.15,4,1.052926,1.052926,1.052926,1.052926,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,,,,,,,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,0.363259,0.363259,0.363259,0.363259,0.363259,0.363259,0.363259,0.363259,0.186894,0.186894,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,1.052926,0.363259,0.363259,15,15,, +31621,0,0.238876,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.11877,0.15,4,0.955504,0.955504,0.955504,0.955504,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,,,,,,,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.329649,0.329649,0.329649,0.329649,0.329649,0.329649,0.329649,0.329649,0.169602,0.169602,15,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.955504,0.329649,0.329649,15,15,, +23367,0,0.225099,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.468,3.693,0,4.823546,3.7,5,0.337648,0.337648,0.337648,0.337648,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.475891,0.35171,0.337648,0.337648,0.475891,0.35171,0.349404,0.349445,0.337648,0.337648,0.349404,0.349445,0.420921,0.537691,0.337648,0.337648,0.420921,0.537691,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,,,,,,,0.475891,0.35171,0.349404,0.349445,0.420921,0.537691,0.337648,0.337648,0.337648,0.337648,0.183285,0.146031,0.145339,0.145351,0.166794,0.201825,0.141812,0.141812,0.075408,0.075408,28.380299,38.40071,38.654226,38.649707,32.086581,25.118398,40,40,40,40,,,,,,,,,,,7946,7946,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.337648,0.141812,0.141812,40,40,, +22975,0,0.290711,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.973,4.264,0,6.229529,3.7,5,0.436067,0.436067,0.436067,0.436067,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.541542,0.442822,0.436067,0.436067,0.541542,0.442822,0.443435,0.443732,0.436067,0.436067,0.443435,0.443732,0.483809,0.566959,0.436067,0.436067,0.483809,0.566959,0.436067,0.436067,0.436067,0.436067,0.436067,0.436067,,,,,,,0.541542,0.442822,0.443435,0.443732,0.483809,0.566959,0.436067,0.436067,0.436067,0.436067,0.214791,0.185175,0.185359,0.185448,0.197471,0.222416,0.183148,0.183148,0.097388,0.097388,32.209295,39.389855,39.335383,39.309007,36.052846,30.765311,40,40,40,40,,,,,,,,,,,7946,7946,0.436067,0.436067,0.436067,0.436067,0.436067,0.436067,0.436067,0.436067,0.183148,0.183148,40,40,, +15009,0,0.263198,2,2,1,2,3,,4,2,Ford,Rd,1595510,3.222,3.485,0,5.639966,3.7,5,0.394798,0.394798,0.394798,0.394798,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.456255,0.433409,0.394798,0.394798,0.456255,0.433409,0.407634,0.407112,0.394798,0.394798,0.407634,0.407112,0.473907,0.485625,0.394798,0.394798,0.473907,0.485625,0.394798,0.394798,0.394798,0.394798,0.394798,0.394798,,,,,,,0.456255,0.433409,0.407634,0.407112,0.473907,0.485625,0.394798,0.394798,0.394798,0.394798,0.184252,0.177398,0.169666,0.169509,0.189548,0.193063,0.165815,0.165815,0.088171,0.088171,34.612051,36.436489,38.740441,38.790054,33.322817,32.51875,40,40,40,40,,,,,,,,,,,7946,7946,0.394798,0.394798,0.394798,0.394798,0.394798,0.394798,0.394798,0.394798,0.165815,0.165815,40,40,, +18211,0,0.279796,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,4.555,4.834,0,5.99562,4.5,4.5,0.441783,0.441783,0.441783,0.441783,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.544137,0.45355,0.441783,0.441783,0.544137,0.45355,0.474522,0.468488,0.441783,0.441783,0.474522,0.468488,0.582751,0.576528,0.441783,0.441783,0.582751,0.576528,0.441783,0.441783,0.441783,0.441783,0.441783,0.441783,,,,,,,0.544137,0.45355,0.474522,0.468488,0.582751,0.576528,0.441783,0.441783,0.441783,0.441783,0.213604,0.186428,0.19272,0.19091,0.225189,0.223322,0.182898,0.182898,0.097045,0.097045,30.852037,37.014092,35.378186,35.833848,28.807733,29.118674,38,38,38,38,,,,,,,,,,,3096,3096,0.441783,0.441783,0.441783,0.441783,0.441783,0.441783,0.441783,0.441783,0.182898,0.182898,38,38,, +31622,0,0.259783,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.566781,0.15,4,1.039132,1.039132,1.039132,1.039132,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,1.039133,1.039133,1.039132,1.039132,1.039133,1.039133,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,,,,,,,1.039132,1.039132,1.039133,1.039133,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,0.358501,0.358501,0.358501,0.358501,0.358501,0.358501,0.358501,0.358501,0.184446,0.184446,15,15,14.999999,14.999999,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,1.039132,0.358501,0.358501,15,15,, +31623,0,0.285076,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.108776,0.15,4,1.140305,1.140305,1.140305,1.140305,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,,,,,,,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,0.393405,0.393405,0.393405,0.393405,0.393405,0.393405,0.393405,0.393405,0.202404,0.202404,15,14.999999,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,1.140305,0.393405,0.393405,15,15,, +17471,0,0.158017,1,1,0,2,5,,4,2,Hanford,Rd,1676006,3.341,3.499,0,3.386072,5.8,4.5,0.351148,0.351148,0.351148,0.351148,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.353369,0.355837,0.351148,0.351148,0.353369,0.355837,0.354991,0.35457,0.351148,0.351148,0.354991,0.35457,0.374012,0.376341,0.351148,0.351148,0.374012,0.376341,0.351148,0.351148,0.351148,0.351148,0.351148,0.351148,,,,,,,0.353369,0.355837,0.354991,0.35457,0.374012,0.376341,0.351148,0.351148,0.351148,0.351148,0.134454,0.135194,0.13494,0.134814,0.140647,0.141345,0.133787,0.133787,0.070054,0.070054,26.830342,26.644238,26.707691,26.739411,25.349477,25.192593,27,27,27,27,,,,,,,,,,,2580,2580,0.351148,0.351148,0.351148,0.351148,0.351148,0.351148,0.351148,0.351148,0.133787,0.133787,27,27,, +18194,0,0.300856,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.054,5.355,0,6.446919,4.5,4.5,0.475036,0.475036,0.475036,0.475036,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.572356,0.494486,0.475036,0.475036,0.572356,0.494486,0.487033,0.488435,0.475036,0.475036,0.487033,0.488435,0.544774,0.688013,0.475036,0.475036,0.544774,0.688013,0.475036,0.475036,0.475036,0.475036,0.475036,0.475036,,,,,,,0.572356,0.494486,0.487033,0.488435,0.544774,0.688013,0.475036,0.475036,0.475036,0.475036,0.225861,0.2025,0.200264,0.200685,0.217586,0.260558,0.196665,0.196665,0.10435,0.10435,31.538712,36.50532,37.063965,36.957567,33.135521,26.236966,38,38,38,38,,,,,,,,,,,3096,3096,0.475036,0.475036,0.475036,0.475036,0.475036,0.475036,0.475036,0.475036,0.196665,0.196665,38,38,, +31473,0,0.239089,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.123328,0.15,4,0.956355,0.956355,0.956355,0.956355,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,,,,,,,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.329942,0.329942,0.329942,0.329942,0.329942,0.329942,0.329942,0.329942,0.169753,0.169753,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.956355,0.329942,0.329942,15,15,, +31602,0,0.239087,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.123283,0.15,4,0.956346,0.956346,0.956346,0.956346,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,,,,,,,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.329939,0.329939,0.329939,0.329939,0.329939,0.329939,0.329939,0.329939,0.169751,0.169751,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.956346,0.329939,0.329939,15,15,, +31608,0,0.027056,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.579782,0.15,4,0.108226,0.108226,0.108226,0.108226,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,,,,,,,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.037338,0.037338,0.037338,0.037338,0.037338,0.037338,0.037338,0.037338,0.01921,0.01921,14.999967,14.999989,14.999979,14.999979,14.999947,14.999938,15,15,15,15,,,,,,,,,,,34400,34400,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.108226,0.037338,0.037338,15,15,, +31936,0,0.269729,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.7799,0.15,4,1.078915,1.078915,1.078915,1.078915,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,,,,,,,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,0.372226,0.372226,0.372226,0.372226,0.372226,0.372226,0.372226,0.372226,0.191507,0.191507,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,1.078915,0.372226,0.372226,15,15,, +23305,0,0.237392,1,1,0,2,5,,4,2,Morton Taylor,Rd,4706622,0,0.237,0,5.086963,5.8,4.5,0.527537,0.527537,0.527537,0.527537,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.530254,0.529839,0.527537,0.527537,0.530254,0.529839,0.530295,0.530206,0.527537,0.527537,0.530295,0.530206,0.554547,0.561922,0.527537,0.527537,0.554547,0.561922,0.527537,0.527537,0.527537,0.527537,0.527537,0.527537,,,,,,,0.530254,0.529839,0.530295,0.530206,0.554547,0.561922,0.527537,0.527537,0.527537,0.527537,0.201807,0.201682,0.201819,0.201792,0.209095,0.211307,0.200992,0.200992,0.105244,0.105244,26.861669,26.882675,26.859581,26.864086,25.684928,25.34784,27,27,27,27,,,,,,,,,,,2580,2580,0.527537,0.527537,0.527537,0.527537,0.527537,0.527537,0.527537,0.527537,0.200992,0.200992,27,27,, +23971,0,0.219578,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,0.743,0.963,0,4.705248,4.5,4.5,0.346703,0.346703,0.346703,0.346703,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.384635,0.392438,0.346703,0.346703,0.384635,0.392438,0.389747,0.394645,0.346703,0.346703,0.389747,0.394645,0.43885,0.432119,0.346703,0.346703,0.43885,0.432119,0.346703,0.346703,0.346703,0.346703,0.346703,0.346703,,,,,,,0.384635,0.392438,0.389747,0.394645,0.43885,0.432119,0.346703,0.346703,0.346703,0.346703,0.154915,0.157255,0.156448,0.157918,0.171179,0.16916,0.143535,0.143535,0.076159,0.076159,34.252477,33.571434,33.803235,33.383621,30.020984,30.488608,38,38,38,38,,,,,,,,,,,3096,3096,0.346703,0.346703,0.346703,0.346703,0.346703,0.346703,0.346703,0.346703,0.143535,0.143535,38,38,, +23972,0,0.242439,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,0.501,0.743,0,5.19512,4.5,4.5,0.382798,0.382798,0.382798,0.382798,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.730811,0.505715,0.382798,0.382798,0.730811,0.505715,0.604323,0.590707,0.382798,0.382798,0.604323,0.590707,0.845641,0.965012,0.382798,0.382798,0.845641,0.965012,0.382798,0.382798,0.382798,0.382798,0.382798,0.382798,,,,,,,0.730811,0.505715,0.604323,0.590707,0.845641,0.965012,0.382798,0.382798,0.382798,0.382798,0.262882,0.195354,0.224936,0.220851,0.297331,0.333142,0.158478,0.158478,0.084088,0.084088,19.904368,28.763881,24.070462,24.625305,17.201551,15.073743,38,38,38,38,,,,,,,,,,,3096,3096,0.382798,0.382798,0.382798,0.382798,0.382798,0.382798,0.382798,0.382798,0.158478,0.158478,38,38,, +31611,0,0.010304,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.220808,0.15,4,0.041218,0.041218,0.041218,0.041218,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,,,,,,,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.01422,0.01422,0.01422,0.01422,0.01422,0.01422,0.01422,0.01422,0.007316,0.007316,14.999973,14.999934,14.999935,14.999929,14.999751,14.999791,15,15,15,15,,,,,,,,,,,34400,34400,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.041218,0.01422,0.01422,15,15,, +23970,0,0.257981,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,0.963,1.221,0,5.528168,4.5,4.5,0.407339,0.407339,0.407339,0.407339,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.436166,0.478943,0.407339,0.407339,0.436166,0.478943,0.448238,0.452187,0.407339,0.407339,0.448238,0.452187,0.592878,0.539571,0.407339,0.407339,0.592878,0.539571,0.407339,0.407339,0.407339,0.407339,0.407339,0.407339,,,,,,,0.436166,0.478943,0.448238,0.452187,0.592878,0.539571,0.407339,0.407339,0.407339,0.407339,0.177286,0.190119,0.180908,0.182093,0.2243,0.208308,0.168638,0.168638,0.089479,0.089479,35.488466,32.318817,34.532689,34.231122,26.107999,28.687387,38,38,38,38,,,,,,,,,,,3096,3096,0.407339,0.407339,0.407339,0.407339,0.407339,0.407339,0.407339,0.407339,0.168638,0.168638,38,38,, +31483,0,0.029097,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.623505,0.15,4,0.116388,0.116388,0.116388,0.116388,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,,,,,,,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.040154,0.040154,0.040154,0.040154,0.040154,0.040154,0.040154,0.040154,0.020659,0.020659,14.999977,14.999998,14.999997,14.999997,14.99999,14.999968,15,15,15,15,,,,,,,,,,,34400,34400,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.116388,0.040154,0.040154,15,15,, +15814,1,0.091809,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.629,5.721,0,1.967327,3.7,5,0.122411,,0.122411,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.134948,,0.122411,,0.134948,,0.123749,,0.122411,,0.123749,,0.128134,,0.122411,,0.128134,,0.122411,,0.122411,,0.122411,,,,,,,,0.134948,,0.123749,,0.128134,,0.122411,,0.122411,,0.05701,,0.05365,,0.054966,,0.053249,,0.028461,,40.819441,,44.513784,,42.990224,,45,,45,,,,,,,,,,,,15136,,0.122411,,0.122411,,0.122411,,0.122411,,0.053249,,45,,, +15873,1,0.252311,1,0,0,1,1,RON,4,2,W US 12/S I 275,RAMP,1599201,0,0.252,0,,1.09,4,0.336415,,0.336415,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.336612,,0.336415,,0.336612,,0.336483,,0.336415,,0.336483,,0.337773,,0.336415,,0.337773,,0.336415,,0.336415,,0.336415,,,,,,,,0.336612,,0.336483,,0.337773,,0.336415,,0.336415,,0.1464,,0.146361,,0.146748,,0.146341,,0.078217,,44.973702,,44.990943,,44.81914,,45,,45,,,,,,,,,,,,5160,,0.336415,,0.336415,,0.336415,,0.336415,,0.146341,,45,,, +15874,1,0.066525,1,0,0,2,3,RSF,4,2,S I 275/US 12,RAMP,1599110,0.386,0.453,0,1.425537,3.7,5,0.13305,,0.13305,,30,,10000,,2270,,5000,,3226,,3440,,3436,,0.189169,,0.13305,,0.189169,,0.147159,,0.13305,,0.147159,,0.210927,,0.13305,,0.210927,,0.13305,,0.13305,,0.13305,,,,,,,,0.189169,,0.147159,,0.210927,,0.13305,,0.13305,,0.068725,,0.056122,,0.075253,,0.05189,,0.027275,,21.100218,,27.123716,,18.923598,,30,,30,,,,,,,,,,,,3440,,0.13305,,0.13305,,0.13305,,0.13305,,0.05189,,30,,, +15875,1,0.386456,1,0,0,1,1,ROF,4,2,S I 275/US 12,RAMP,1599110,0,0.386,0,,2.24,5,0.579684,,0.579684,,40,,15000,,3405,,7500,,4839,,5160,,5154,,1.138129,,0.579684,,1.138129,,0.940155,,0.579684,,0.940155,,2.00193,,0.579684,,2.00193,,0.579684,,0.579684,,0.579684,,,,,,,,1.138129,,0.940155,,2.00193,,0.579684,,0.579684,,0.411001,,0.351609,,0.670141,,0.243467,,0.129463,,20.373234,,24.663351,,11.582509,,40,,40,,,,,,,,,,,,5160,,0.579684,,0.579684,,0.579684,,0.579684,,0.243467,,40,,, +16520,0,0.510572,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.993,2.503,0,10.940819,4.5,4.5,0.806166,0.806166,0.806166,0.806166,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.05852,0.819582,0.806166,0.806166,1.05852,0.819582,0.828992,0.820323,0.806166,0.806166,0.828992,0.820323,1.0838,1.15506,0.806166,0.806166,1.0838,1.15506,0.806166,0.806166,0.806166,0.806166,0.806166,0.806166,,,,,,,1.05852,0.819582,0.828992,0.820323,1.0838,1.15506,0.806166,0.806166,0.806166,0.806166,0.409459,0.337777,0.340601,0.338,0.417043,0.438421,0.333753,0.333753,0.177088,0.177088,28.940677,37.377946,36.953657,37.344192,28.265645,26.521824,38,38,38,38,,,,,,,,,,,3096,3096,0.806166,0.806166,0.806166,0.806166,0.806166,0.806166,0.806166,0.806166,0.333753,0.333753,38,38,, +16801,1,0.263975,1,0,0,1,1,RON,4,2,E US 12/S I 275,RAMP,1600304,0,0.264,0,,1.09,4,0.351967,,0.351967,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.362493,,0.351967,,0.362493,,0.353734,,0.351967,,0.353734,,0.353423,,0.351967,,0.353423,,0.351967,,0.351967,,0.351967,,,,,,,,0.362493,,0.353734,,0.353423,,0.351967,,0.351967,,0.156263,,0.153636,,0.153542,,0.153106,,0.081832,,43.693309,,44.775171,,44.814643,,45,,45,,,,,,,,,,,,5160,,0.351967,,0.351967,,0.351967,,0.351967,,0.153106,,45,,, +22777,0,0.679474,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,5.231,5.91,0,14.560166,4.5,4.5,1.072854,1.072854,1.072854,1.072854,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.237141,1.719158,1.072854,1.072854,1.237141,1.719158,1.207099,1.250051,1.072854,1.072854,1.207099,1.250051,1.609288,1.516054,1.072854,1.072854,1.609288,1.516054,1.072854,1.072854,1.072854,1.072854,1.072854,1.072854,,,,,,,1.237141,1.719158,1.207099,1.250051,1.609288,1.516054,1.072854,1.072854,1.072854,1.072854,0.493448,0.638053,0.484435,0.497321,0.605092,0.577122,0.444162,0.444162,0.23567,0.23567,32.953763,23.714208,33.773932,32.613435,25.333227,26.891173,38,38,38,38,,,,,,,,,,,3096,3096,1.072854,1.072854,1.072854,1.072854,1.072854,1.072854,1.072854,1.072854,0.444162,0.444162,38,38,, +23440,0,1.026343,1,1,0,2,7,,4,2,Lotz,Rd,4705519,0,1.026,0,21.993054,6.55,4.5,2.463222,2.463222,2.463222,2.463222,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.463222,2.474985,2.463222,2.463222,2.463222,2.474985,2.463222,2.463222,2.463222,2.463222,2.463222,2.463222,2.472365,2.465536,2.463222,2.463222,2.472365,2.465536,2.463222,2.463222,2.463222,2.463222,2.463222,2.463222,,,,,,,2.463222,2.474985,2.463222,2.463222,2.472365,2.465536,2.463222,2.463222,2.463222,2.463222,0.923708,0.927237,0.923708,0.923708,0.926451,0.924402,0.923708,0.923708,0.482381,0.482381,25,24.881179,25,25,24.907545,24.976539,25,25,25,25,,,,,,,,,,,2064,2064,2.463222,2.463222,2.463222,2.463222,2.463222,2.463222,2.463222,2.463222,0.923708,0.923708,25,25,, +23624,-1,0.078938,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.629,5.708,0,1.691528,3.7,5,,0.105251,,0.105251,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.106405,,0.105251,,0.106405,,0.105535,,0.105251,,0.105535,,0.109772,,0.105251,,0.109772,,0.105251,,0.105251,,0.105251,,,,,,,,0.106405,,0.105535,,0.109772,,0.105251,,0.105251,,0.04613,,0.045869,,0.047141,,0.045784,,0.024471,,44.512006,,44.878925,,43.146421,,45,,45,,,,,,,,,,,,15136,,0.105251,,0.105251,,0.105251,,0.105251,,0.045784,,45,, +24222,0,0.651431,1,1,0,2,5,,4,2,Lilley,Rd,4710390,0.47,1.121,0,13.959243,5.8,4.5,1.447625,1.447625,1.447625,1.447625,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.447761,1.453331,1.447625,1.447625,1.447761,1.453331,1.447626,1.447625,1.447625,1.447625,1.447626,1.447625,1.496459,1.455102,1.447625,1.447625,1.496459,1.455102,1.447625,1.447625,1.447625,1.447625,1.447625,1.447625,,,,,,,1.447761,1.453331,1.447626,1.447625,1.496459,1.455102,1.447625,1.447625,1.447625,1.447625,0.551586,0.553257,0.551545,0.551545,0.566195,0.553788,0.551545,0.551545,0.288801,0.288801,26.997465,26.894002,26.999993,26.999994,26.11891,26.861261,27,27,27,27,,,,,,,,,,,2580,2580,1.447625,1.447625,1.447625,1.447625,1.447625,1.447625,1.447625,1.447625,0.551545,0.551545,27,27,, +31577,0,0.402043,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.615209,0.15,4,1.608172,1.608172,1.608172,1.608172,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,,,,,,,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,0.554819,0.554819,0.554819,0.554819,0.554819,0.554819,0.554819,0.554819,0.285451,0.285451,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,1.608172,0.554819,0.554819,15,15,, +31578,0,0.492286,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.548996,0.15,4,1.969146,1.969146,1.969146,1.969146,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,,,,,,,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,0.679355,0.679355,0.679355,0.679355,0.679355,0.679355,0.679355,0.679355,0.349523,0.349523,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,1.969146,0.679355,0.679355,15,15,, +33751,0,0.543349,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.643193,0.15,4,2.173396,2.173396,2.173396,2.173396,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,,,,,,,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,0.749822,0.749822,0.749822,0.749822,0.749822,0.749822,0.749822,0.749822,0.385778,0.385778,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,2.173396,0.749822,0.749822,15,15,, +15815,1,0.128088,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.501,5.629,0,2.744732,3.7,5,0.170783,,0.170783,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.2319,,0.170783,,0.2319,,0.177313,,0.170783,,0.177313,,0.190885,,0.170783,,0.190885,,0.170783,,0.170783,,0.170783,,,,,,,,0.2319,,0.177313,,0.190885,,0.170783,,0.170783,,0.092626,,0.07625,,0.080321,,0.074291,,0.039707,,33.140397,,43.342928,,40.26108,,45,,45,,,,,,,,,,,,15136,,0.170783,,0.170783,,0.170783,,0.170783,,0.074291,,45,,, +15818,1,0.173304,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.134,5.307,0,3.713664,3.7,5,0.231072,,0.231072,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.246412,,0.231072,,0.246412,,0.233851,,0.231072,,0.233851,,0.239203,,0.231072,,0.239203,,0.231072,,0.231072,,0.231072,,,,,,,,0.246412,,0.233851,,0.239203,,0.231072,,0.231072,,0.105118,,0.10135,,0.102956,,0.100516,,0.053724,,42.198744,,44.465266,,43.470363,,45,,45,,,,,,,,,,,,15136,,0.231072,,0.231072,,0.231072,,0.231072,,0.100516,,45,,, +22904,-1,0.19486,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.28,5.475,0,4.175571,3.7,5,,0.259813,,0.259813,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.26404,,0.259813,,0.26404,,0.262757,,0.259813,,0.262757,,0.285605,,0.259813,,0.285605,,0.259813,,0.259813,,0.259813,,,,,,,,0.26404,,0.262757,,0.285605,,0.259813,,0.259813,,0.114287,,0.113902,,0.120756,,0.113019,,0.060407,,44.279629,,44.495891,,40.936226,,45,,45,,,,,,,,,,,,15136,,0.259813,,0.259813,,0.259813,,0.259813,,0.113019,,45,, +23193,-1,0.170114,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.11,5.28,0,3.645306,3.7,5,,0.226819,,0.226819,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.230535,,0.226819,,0.230535,,0.229389,,0.226819,,0.229389,,0.249452,,0.226819,,0.249452,,0.226819,,0.226819,,0.226819,,,,,,,,0.230535,,0.229389,,0.249452,,0.226819,,0.226819,,0.099781,,0.099437,,0.105456,,0.098666,,0.052735,,44.274565,,44.495891,,40.917157,,45,,45,,,,,,,,,,,,15136,,0.226819,,0.226819,,0.226819,,0.226819,,0.098666,,45,, +23674,0,0.022859,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,4.88,4.903,0,0.489833,4.5,4.5,0.036093,0.036093,0.036093,0.036093,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.036095,0.04069,0.036093,0.036093,0.036095,0.04069,0.036099,0.036754,0.036093,0.036093,0.036099,0.036754,0.036159,0.039638,0.036093,0.036093,0.036159,0.039638,0.036093,0.036093,0.036093,0.036093,0.036093,0.036093,,,,,,,0.036095,0.04069,0.036099,0.036754,0.036159,0.039638,0.036093,0.036093,0.036093,0.036093,0.014943,0.016322,0.014944,0.015141,0.014962,0.016006,0.014942,0.014942,0.007928,0.007928,37.998034,33.70676,37.994027,37.316586,37.930755,34.601193,38,38,38,38,,,,,,,,,,,6192,6192,0.036093,0.036093,0.036093,0.036093,0.036093,0.036093,0.036093,0.036093,0.014942,0.014942,38,38,, +24223,0,0.469936,1,1,0,2,5,,4,2,Lilley,Rd,4710390,0,0.47,0,10.070052,5.8,4.5,1.044302,1.044302,1.044302,1.044302,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.044611,1.04893,1.044302,1.044302,1.044611,1.04893,1.044729,1.044302,1.044302,1.044302,1.044729,1.044302,1.478555,1.044529,1.044302,1.044302,1.478555,1.044529,1.044302,1.044302,1.044302,1.044302,1.044302,1.044302,,,,,,,1.044611,1.04893,1.044729,1.044302,1.478555,1.044529,1.044302,1.044302,1.044302,1.044302,0.397972,0.399267,0.398007,0.397879,0.528155,0.397947,0.397879,0.397879,0.208338,0.208338,26.992012,26.880874,26.988946,26.999994,19.07007,26.994136,27,27,27,27,,,,,,,,,,,2580,2580,1.044302,1.044302,1.044302,1.044302,1.044302,1.044302,1.044302,1.044302,0.397879,0.397879,27,27,, +31258,0,0.537654,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.521153,0.15,4,2.150615,2.150615,2.150615,2.150615,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,,,,,,,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,0.741962,0.741962,0.741962,0.741962,0.741962,0.741962,0.741962,0.741962,0.381734,0.381734,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,2.150615,0.741962,0.741962,15,15,, +31624,0,0.518817,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.117497,0.15,4,2.075266,2.075266,2.075266,2.075266,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,,,,,,,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,0.715967,0.715967,0.715967,0.715967,0.715967,0.715967,0.715967,0.715967,0.36836,0.36836,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,2.075266,0.715967,0.715967,15,15,, +33750,0,0.352291,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.549101,0.15,4,1.409166,1.409166,1.409166,1.409166,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,,,,,,,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,0.486162,0.486162,0.486162,0.486162,0.486162,0.486162,0.486162,0.486162,0.250127,0.250127,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,1.409166,0.486162,0.486162,15,15,, +15819,1,0.14013,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,4.994,5.134,0,3.002779,3.7,5,0.18684,,0.18684,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.196471,,0.18684,,0.196471,,0.188677,,0.18684,,0.188677,,0.192042,,0.18684,,0.192042,,0.18684,,0.18684,,0.18684,,,,,,,,0.196471,,0.188677,,0.192042,,0.18684,,0.18684,,0.084165,,0.081826,,0.082836,,0.081275,,0.04344,,42.79398,,44.561769,,43.780848,,45,,45,,,,,,,,,,,,15136,,0.18684,,0.18684,,0.18684,,0.18684,,0.081275,,45,,, +23544,-1,0.144103,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,4.966,5.11,0,3.08793,3.7,5,,0.192138,,0.192138,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.194639,,0.192138,,0.194639,,0.193901,,0.192138,,0.193901,,0.207593,,0.192138,,0.207593,,0.192138,,0.192138,,0.192138,,,,,,,,0.194639,,0.193901,,0.207593,,0.192138,,0.192138,,0.08433,,0.084109,,0.088217,,0.08358,,0.044672,,44.421735,,44.590937,,41.649738,,45,,45,,,,,,,,,,,,15136,,0.192138,,0.192138,,0.192138,,0.192138,,0.08358,,45,, +31567,0,0.429809,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.210198,0.15,4,1.719237,1.719237,1.719237,1.719237,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,,,,,,,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,0.593137,0.593137,0.593137,0.593137,0.593137,0.593137,0.593137,0.593137,0.305165,0.305165,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,1.719237,0.593137,0.593137,15,15,, +31596,0,0.448737,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.6158,0.15,4,1.794949,1.794949,1.794949,1.794949,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,,,,,,,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,0.619258,0.619258,0.619258,0.619258,0.619258,0.619258,0.619258,0.619258,0.318603,0.318603,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,1.794949,0.619258,0.619258,15,15,, +15816,1,0.19428,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.307,5.501,0,4.16315,3.7,5,0.25904,,0.25904,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.276236,,0.25904,,0.276236,,0.262156,,0.25904,,0.262156,,0.26728,,0.25904,,0.26728,,0.25904,,0.25904,,0.25904,,,,,,,,0.276236,,0.262156,,0.26728,,0.25904,,0.25904,,0.117841,,0.113617,,0.115154,,0.112683,,0.060227,,42.198744,,44.465266,,43.612852,,45,,45,,,,,,,,,,,,15136,,0.25904,,0.25904,,0.25904,,0.25904,,0.112683,,45,,, +23046,0,0.327821,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,4.903,5.231,0,7.024742,4.5,4.5,0.517613,0.517613,0.517613,0.517613,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.687402,1.125726,0.517613,0.517613,0.687402,1.125726,0.664399,0.695402,0.517613,0.517613,0.664399,0.695402,1.119657,0.926829,0.517613,0.517613,1.119657,0.926829,0.517613,0.517613,0.517613,0.517613,0.517613,0.517613,,,,,,,0.687402,1.125726,0.664399,0.695402,1.119657,0.926829,0.517613,0.517613,0.517613,0.517613,0.265228,0.396726,0.258328,0.267628,0.394905,0.337057,0.214292,0.214292,0.113702,0.113702,28.613937,17.472526,29.604605,28.284753,17.56723,21.22212,38,38,38,38,,,,,,,,,,,3096,3096,0.517613,0.517613,0.517613,0.517613,0.517613,0.517613,0.517613,0.517613,0.214292,0.214292,38,38,, +31625,0,0.204947,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.391721,0.15,4,0.819788,0.819788,0.819788,0.819788,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,,,,,,,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.282827,0.282827,0.282827,0.282827,0.282827,0.282827,0.282827,0.282827,0.145512,0.145512,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.819788,0.282827,0.282827,15,15,, +22615,-1,0.15432,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.475,5.629,0,3.306851,3.7,5,,0.20576,,0.20576,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.220267,,0.20576,,0.220267,,0.21245,,0.20576,,0.21245,,0.265048,,0.20576,,0.265048,,0.20576,,0.20576,,0.20576,,,,,,,,0.220267,,0.21245,,0.265048,,0.20576,,0.20576,,0.093858,,0.091513,,0.107292,,0.089505,,0.047839,,42.036216,,43.582859,,34.933943,,45,,45,,,,,,,,,,,,15136,,0.20576,,0.20576,,0.20576,,0.20576,,0.089505,,45,, +16523,0,0.321556,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.509,1.831,0,6.890476,4.5,4.5,0.507719,0.507719,0.507719,0.507719,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.799482,0.588071,0.507719,0.507719,0.799482,0.588071,0.539233,0.529542,0.507719,0.507719,0.539233,0.529542,0.761421,0.688962,0.507719,0.507719,0.761421,0.688962,0.507719,0.507719,0.507719,0.507719,0.507719,0.507719,,,,,,,0.799482,0.588071,0.539233,0.529542,0.761421,0.688962,0.507719,0.507719,0.507719,0.507719,0.297725,0.234301,0.21965,0.216743,0.286306,0.264569,0.210196,0.210196,0.111529,0.111529,24.132297,32.807821,35.779213,36.434013,25.338586,28.003489,38,38,38,38,,,,,,,,,,,3096,3096,0.507719,0.507719,0.507719,0.507719,0.507719,0.507719,0.507719,0.507719,0.210196,0.210196,38,38,, +22492,0,0.506649,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,5.91,6.416,0,10.85677,4.5,4.5,0.799973,0.799973,0.799973,0.799973,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.843493,1.2562,0.799973,0.799973,0.843493,1.2562,0.846196,0.863327,0.799973,0.799973,0.846196,0.863327,1.251522,0.940559,0.799973,0.799973,1.251522,0.940559,0.799973,0.799973,0.799973,0.799973,0.799973,0.799973,,,,,,,0.843493,1.2562,0.846196,0.863327,1.251522,0.940559,0.799973,0.799973,0.799973,0.799973,0.344245,0.468057,0.345056,0.350195,0.466653,0.373364,0.331189,0.331189,0.175727,0.175727,36.039366,24.19913,35.924256,35.211416,24.289592,32.320111,38,38,38,38,,,,,,,,,,,3096,3096,0.799973,0.799973,0.799973,0.799973,0.799973,0.799973,0.799973,0.799973,0.331189,0.331189,38,38,, +24221,0,0.502433,1,1,0,2,5,,4,2,Lilley,Rd,4710390,1.121,1.623,0,10.76643,5.8,4.5,1.116519,1.116519,1.116519,1.116519,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.117148,1.13549,1.116519,1.116519,1.117148,1.13549,1.11654,1.116535,1.116519,1.116519,1.11654,1.116535,1.194796,1.156362,1.116519,1.116519,1.194796,1.156362,1.116519,1.116519,1.116519,1.116519,1.116519,1.116519,,,,,,,1.117148,1.13549,1.11654,1.116535,1.194796,1.156362,1.116519,1.116519,1.116519,1.116519,0.425582,0.431085,0.4254,0.425398,0.448877,0.437347,0.425394,0.425394,0.222745,0.222745,26.9848,26.548892,26.999493,26.999615,25.231092,26.06969,27,27,27,27,,,,,,,,,,,2580,2580,1.116519,1.116519,1.116519,1.116519,1.116519,1.116519,1.116519,1.116519,0.425394,0.425394,27,27,, +31271,0,0.242888,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.204734,0.15,4,0.97155,0.97155,0.97155,0.97155,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,,,,,,,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.335185,0.335185,0.335185,0.335185,0.335185,0.335185,0.335185,0.335185,0.17245,0.17245,14.999998,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.97155,0.335185,0.335185,15,15,, +33753,0,0.51714,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.081566,0.15,4,2.068559,2.068559,2.068559,2.068559,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,,,,,,,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,0.713653,0.713653,0.713653,0.713653,0.713653,0.713653,0.713653,0.713653,0.367169,0.367169,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,2.068559,0.713653,0.713653,15,15,, +33752,0,0.247821,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.310456,0.15,4,0.991285,0.991285,0.991285,0.991285,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,,,,,,,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.341993,0.341993,0.341993,0.341993,0.341993,0.341993,0.341993,0.341993,0.175953,0.175953,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.991285,0.341993,0.341993,15,15,, +16289,0,0.162154,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.831,1.993,0,3.474721,4.5,4.5,0.256032,0.256032,0.256032,0.256032,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.403162,0.29008,0.256032,0.256032,0.403162,0.29008,0.267529,0.263403,0.256032,0.256032,0.267529,0.263403,0.395783,0.32605,0.256032,0.256032,0.395783,0.32605,0.256032,0.256032,0.256032,0.256032,0.256032,0.256032,,,,,,,0.403162,0.29008,0.267529,0.263403,0.395783,0.32605,0.256032,0.256032,0.256032,0.256032,0.150136,0.116212,0.109446,0.108209,0.147923,0.127003,0.105997,0.105997,0.056242,0.056242,24.132297,33.5398,36.366928,36.936581,24.582214,29.839646,38,38,38,38,,,,,,,,,,,3096,3096,0.256032,0.256032,0.256032,0.256032,0.256032,0.256032,0.256032,0.256032,0.105997,0.105997,38,38,, +31508,0,0.129322,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.771195,0.15,4,0.51729,0.51729,0.51729,0.51729,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,,,,,,,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.178465,0.178465,0.178465,0.178465,0.178465,0.178465,0.178465,0.178465,0.091819,0.091819,14.999996,15,15,15,15,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.51729,0.178465,0.178465,15,15,, +15811,1,0.224198,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.924,6.148,0,4.804232,3.7,5,0.29893,,0.29893,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.324267,,0.29893,,0.324267,,0.302024,,0.29893,,0.302024,,0.331883,,0.29893,,0.331883,,0.29893,,0.29893,,0.29893,,,,,,,,0.324267,,0.302024,,0.331883,,0.29893,,0.29893,,0.137636,,0.130963,,0.139921,,0.130035,,0.069501,,41.483868,,44.539014,,40.531856,,45,,45,,,,,,,,,,,,15136,,0.29893,,0.29893,,0.29893,,0.29893,,0.130035,,45,,, +16636,-1,0.306523,0,3,0,1,1,,4,2,S I 275,,1607610,14.128,14.434,0,,0.8,7.5,,0.262734,,0.262734,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.263264,,0.262734,,0.263264,,0.262779,,0.262734,,0.262779,,0.272057,,0.262734,,0.272057,,0.262734,,0.262734,,0.262734,,,,,,,,0.263264,,0.262779,,0.272057,,0.262734,,0.262734,,0.134153,,0.134008,,0.136791,,0.133995,,0.073128,,69.859286,,69.988087,,67.601316,,70,,70,,,,,,,,,,,,22704,,0.262734,,0.262734,,0.262734,,0.262734,,0.133995,,70,, +16757,1,0.343672,3,0,0,1,1,,4,2,N I 275,,1607208,14.257,14.6,0,,0.8,7.5,0.294576,,0.294576,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.313812,,0.294576,,0.313812,,0.294806,,0.294576,,0.294806,,0.298527,,0.294576,,0.298527,,0.294576,,0.294576,,0.294576,,,,,,,,0.313812,,0.294806,,0.298527,,0.294576,,0.294576,,0.156005,,0.150303,,0.151419,,0.150234,,0.08199,,65.709027,,69.945355,,69.073552,,70,,70,,,,,,,,,,,,22704,,0.294576,,0.294576,,0.294576,,0.294576,,0.150234,,70,,, +16788,1,0.400543,1,0,0,1,1,ROF,4,2,N I 275/US 12,RAMP,1600306,0,0.4,0,,2.24,5,0.600815,,0.600815,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.658451,,0.600815,,0.658451,,0.60589,,0.600815,,0.60589,,0.798526,,0.600815,,0.798526,,0.600815,,0.600815,,0.600815,,,,,,,,0.658451,,0.60589,,0.798526,,0.600815,,0.600815,,0.269633,,0.253865,,0.311655,,0.252342,,0.134182,,36.498686,,39.664899,,30.096193,,40,,40,,,,,,,,,,,,5160,,0.600815,,0.600815,,0.600815,,0.600815,,0.252342,,40,,, +16791,1,0.201086,1,0,0,1,1,RON,4,2,E US 12/N I 275,RAMP,1600305,0,0.201,0,,1.09,4,0.268115,,0.268115,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.349097,,0.268115,,0.349097,,0.279654,,0.268115,,0.279654,,0.285639,,0.268115,,0.285639,,0.268115,,0.268115,,0.268115,,,,,,,,0.349097,,0.279654,,0.285639,,0.268115,,0.268115,,0.140925,,0.120092,,0.121887,,0.11663,,0.062337,,34.561096,,43.143314,,42.239278,,45,,45,,,,,,,,,,,,5160,,0.268115,,0.268115,,0.268115,,0.268115,,0.11663,,45,,, +22602,-1,0.093589,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.992,6.086,0,2.005468,3.7,5,,0.124785,,0.124785,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.130696,,0.124785,,0.130696,,0.128,,0.124785,,0.128,,0.156558,,0.124785,,0.156558,,0.124785,,0.124785,,0.124785,,,,,,,,0.130696,,0.128,,0.156558,,0.124785,,0.124785,,0.056055,,0.055246,,0.063813,,0.054281,,0.029012,,42.96458,,43.869529,,35.867188,,45,,45,,,,,,,,,,,,15136,,0.124785,,0.124785,,0.124785,,0.124785,,0.054281,,45,, +31563,0,0.518774,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.116593,0.15,4,2.075097,2.075097,2.075097,2.075097,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,,,,,,,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,0.715909,0.715909,0.715909,0.715909,0.715909,0.715909,0.715909,0.715909,0.36833,0.36833,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,2.075097,0.715909,0.715909,15,15,, +31564,0,0.499281,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.698875,0.15,4,1.997123,1.997123,1.997123,1.997123,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,,,,,,,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,0.689008,0.689008,0.689008,0.689008,0.689008,0.689008,0.689008,0.689008,0.354489,0.354489,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,1.997123,0.689008,0.689008,15,15,, +16489,1,0.284452,3,0,0,1,1,,4,2,N I 275,,1607208,13.972,14.257,0,,0.8,7.5,0.243816,,0.243816,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.246052,,0.243816,,0.246052,,0.243837,,0.243816,,0.243837,,0.244465,,0.243816,,0.244465,,0.243816,,0.243816,,0.243816,,,,,,,,0.246052,,0.243837,,0.244465,,0.243816,,0.243816,,0.125017,,0.124353,,0.124541,,0.124346,,0.067862,,69.363977,,69.994005,,69.814197,,70,,70,,,,,,,,,,,,22704,,0.243816,,0.243816,,0.243816,,0.243816,,0.124346,,70,,, +15812,1,0.050642,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.874,5.924,0,1.085177,3.7,5,0.067522,,0.067522,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.069716,,0.067522,,0.069716,,0.067892,,0.067522,,0.067892,,0.070266,,0.067522,,0.070266,,0.067522,,0.067522,,0.067522,,,,,,,,0.069716,,0.067892,,0.070266,,0.067522,,0.067522,,0.03003,,0.029483,,0.030195,,0.029372,,0.015699,,43.584178,,44.755121,,43.242594,,45,,45,,,,,,,,,,,,15136,,0.067522,,0.067522,,0.067522,,0.067522,,0.029372,,45,,, +15872,1,0.310103,1,0,0,1,1,RON,4,2,W US 12/N I 275,RAMP,1599202,0,0.31,0,,1.09,4,0.413471,,0.413471,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.449423,,0.413471,,0.449423,,0.441017,,0.413471,,0.441017,,0.502269,,0.413471,,0.502269,,0.413471,,0.413471,,0.413471,,,,,,,,0.449423,,0.441017,,0.502269,,0.413471,,0.413471,,0.190646,,0.188124,,0.206499,,0.17986,,0.096132,,41.400103,,42.189227,,37.044255,,45,,45,,,,,,,,,,,,5160,,0.413471,,0.413471,,0.413471,,0.413471,,0.17986,,45,,, +16386,-1,0.283361,0,3,0,1,1,,4,2,S I 275,,1607610,14.434,14.718,0,,0.8,7.5,,0.242881,,0.242881,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.243149,,0.242881,,0.243149,,0.242902,,0.242881,,0.242902,,0.24731,,0.242881,,0.24731,,0.242881,,0.242881,,0.242881,,,,,,,,0.243149,,0.242902,,0.24731,,0.242881,,0.242881,,0.12395,,0.123876,,0.125198,,0.123869,,0.067602,,69.922663,,69.993719,,68.746355,,70,,70,,,,,,,,,,,,22704,,0.242881,,0.242881,,0.242881,,0.242881,,0.123869,,70,, +23282,-1,0.164914,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.708,5.873,0,3.533871,3.7,5,,0.219885,,0.219885,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.225086,,0.219885,,0.225086,,0.221178,,0.219885,,0.221178,,0.243886,,0.219885,,0.243886,,0.219885,,0.219885,,0.219885,,,,,,,,0.225086,,0.221178,,0.243886,,0.219885,,0.219885,,0.09721,,0.096038,,0.10285,,0.09565,,0.051123,,43.960329,,44.737044,,40.571523,,45,,45,,,,,,,,,,,,15136,,0.219885,,0.219885,,0.219885,,0.219885,,0.09565,,45,, +15813,1,0.152768,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.721,5.874,0,3.273608,3.7,5,0.203691,,0.203691,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.281638,,0.203691,,0.281638,,0.21397,,0.203691,,0.21397,,0.250796,,0.203691,,0.250796,,0.203691,,0.203691,,0.203691,,,,,,,,0.281638,,0.21397,,0.250796,,0.203691,,0.203691,,0.11199,,0.091689,,0.102737,,0.088606,,0.047358,,32.545699,,42.838327,,36.548029,,45,,45,,,,,,,,,,,,15136,,0.203691,,0.203691,,0.203691,,0.203691,,0.088606,,45,,, +22894,-1,0.073592,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.919,5.992,0,1.576975,3.7,5,,0.098123,,0.098123,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.104506,,0.098123,,0.104506,,0.100651,,0.098123,,0.100651,,0.121687,,0.098123,,0.121687,,0.098123,,0.098123,,0.098123,,,,,,,,0.104506,,0.100651,,0.121687,,0.098123,,0.098123,,0.044598,,0.043442,,0.049753,,0.042683,,0.022814,,42.251473,,43.869529,,36.285956,,45,,45,,,,,,,,,,,,15136,,0.098123,,0.098123,,0.098123,,0.098123,,0.042683,,45,, +22967,-1,0.046127,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.873,5.919,0,0.988442,3.7,5,,0.061503,,0.061503,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.061798,,0.061503,,0.061798,,0.061577,,0.061503,,0.061577,,0.062725,,0.061503,,0.062725,,0.061503,,0.061503,,0.061503,,,,,,,,0.061798,,0.061577,,0.062725,,0.061503,,0.061503,,0.026842,,0.026776,,0.02712,,0.026754,,0.014299,,44.785519,,44.945692,,44.123169,,45,,45,,,,,,,,,,,,15136,,0.061503,,0.061503,,0.061503,,0.061503,,0.026754,,45,, +16787,1,0.0355,1,0,0,2,3,RSF,4,2,N I 275/US 12,RAMP,1600306,0.4,0.436,0,0.760707,3.7,5,0.070999,,0.070999,,30,,10000,,2270,,5000,,3226,,3440,,3436,,0.075231,,0.070999,,0.075231,,0.07201,,0.070999,,0.07201,,0.096635,,0.070999,,0.096635,,0.070999,,0.070999,,0.070999,,,,,,,,0.075231,,0.07201,,0.096635,,0.070999,,0.070999,,0.028959,,0.027993,,0.03538,,0.02769,,0.014555,,28.312548,,29.579144,,22.041538,,30,,30,,,,,,,,,,,,3440,,0.070999,,0.070999,,0.070999,,0.070999,,0.02769,,30,,, +31580,0,0.48722,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.440421,0.15,4,1.948879,1.948879,1.948879,1.948879,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,,,,,,,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,0.672363,0.672363,0.672363,0.672363,0.672363,0.672363,0.672363,0.672363,0.345926,0.345926,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,1.948879,0.672363,0.672363,15,15,, +23609,-1,0.043628,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,6.086,6.129,0,0.934878,3.7,5,,0.05817,,0.05817,,45,,44000,,9988,,22000,,14194,,15136,,15118,,0.060691,,0.05817,,0.060691,,0.059622,,0.05817,,0.059622,,0.075112,,0.05817,,0.075112,,0.05817,,0.05817,,0.05817,,,,,,,,0.060691,,0.059622,,0.075112,,0.05817,,0.05817,,0.02606,,0.02574,,0.030387,,0.025304,,0.013525,,43.131167,,43.904117,,34.85005,,45,,45,,,,,,,,,,,,15136,,0.05817,,0.05817,,0.05817,,0.05817,,0.025304,,45,, +16507,0,0.329581,1,1,0,2,4,,4,2,Palmer,Rd,1607406,2.587,2.917,0,7.062447,4.5,4.5,0.520391,0.520391,0.520391,0.520391,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.629659,0.572879,0.520391,0.520391,0.629659,0.572879,0.529305,0.528223,0.520391,0.520391,0.529305,0.528223,0.636514,0.641086,0.520391,0.520391,0.636514,0.641086,0.520391,0.520391,0.520391,0.520391,0.520391,0.520391,,,,,,,0.629659,0.572879,0.529305,0.528223,0.636514,0.641086,0.520391,0.520391,0.520391,0.520391,0.248222,0.231188,0.218116,0.217791,0.250279,0.25165,0.215442,0.215442,0.114313,0.114313,31.405643,34.5184,37.36003,37.436578,31.067439,30.845871,38,38,38,38,,,,,,,,,,,3096,3096,0.520391,0.520391,0.520391,0.520391,0.520391,0.520391,0.520391,0.520391,0.215442,0.215442,38,38,, +31631,0,0.57189,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.254787,0.15,4,2.28756,2.28756,2.28756,2.28756,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.287561,2.28756,2.28756,2.28756,2.287561,2.28756,2.28756,2.28756,2.28756,2.28756,2.28756,2.28756,2.28756,2.287561,2.28756,2.28756,2.28756,2.287561,2.28756,2.28756,2.28756,2.28756,2.28756,2.28756,,,,,,,2.287561,2.28756,2.28756,2.28756,2.28756,2.287561,2.28756,2.28756,2.28756,2.28756,0.789208,0.789208,0.789208,0.789208,0.789208,0.789208,0.789208,0.789208,0.406042,0.406042,14.999997,15,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.28756,2.28756,2.28756,2.28756,2.28756,2.28756,2.28756,2.28756,0.789208,0.789208,15,15,, +16284,0,0.084005,1,1,0,2,4,,4,2,Palmer,Rd,1607406,2.503,2.587,0,1.800112,4.5,4.5,0.13264,0.13264,0.13264,0.13264,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.180232,0.144754,0.13264,0.13264,0.180232,0.144754,0.137013,0.135375,0.13264,0.13264,0.137013,0.135375,0.185483,0.184683,0.13264,0.13264,0.185483,0.184683,0.13264,0.13264,0.13264,0.13264,0.13264,0.13264,,,,,,,0.180232,0.144754,0.137013,0.135375,0.185483,0.184683,0.13264,0.13264,0.13264,0.13264,0.069191,0.058547,0.056225,0.055734,0.070766,0.070526,0.054913,0.054913,0.029137,0.029137,27.965683,34.8198,36.787188,37.232148,27.17402,27.291705,38,38,38,38,,,,,,,,,,,3096,3096,0.13264,0.13264,0.13264,0.13264,0.13264,0.13264,0.13264,0.13264,0.054913,0.054913,38,38,, +18243,0,0.491693,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.972,9.463,0,10.536283,6,4.5,0.893988,0.893988,0.893988,0.893988,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.902058,1.120955,0.893988,0.893988,0.902058,1.120955,0.901692,0.908035,0.893988,0.893988,0.901692,0.908035,1.020205,0.91918,0.893988,0.893988,1.020205,0.91918,0.893988,0.893988,0.893988,0.893988,0.893988,0.893988,,,,,,,0.902058,1.120955,0.901692,0.908035,1.020205,0.91918,0.893988,0.893988,0.893988,0.893988,0.359122,0.424791,0.359012,0.360915,0.394566,0.364259,0.356701,0.356701,0.188184,0.188184,32.704773,26.318256,32.718034,32.489473,28.917305,32.095552,33,33,33,33,,,,,,,,,,,2580,2580,0.893988,0.893988,0.893988,0.893988,0.893988,0.893988,0.893988,0.893988,0.356701,0.356701,33,33,, +16268,0,0.099754,1,1,0,2,4,,4,2,Palmer,Rd,1607406,2.917,3.016,0,2.137582,4.5,4.5,0.157506,0.157506,0.157506,0.157506,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.279212,0.164122,0.157506,0.157506,0.279212,0.164122,0.164549,0.163243,0.157506,0.157506,0.164549,0.163243,0.201519,0.267716,0.157506,0.157506,0.201519,0.267716,0.157506,0.157506,0.157506,0.157506,0.157506,0.157506,,,,,,,0.279212,0.164122,0.164549,0.163243,0.201519,0.267716,0.157506,0.157506,0.157506,0.157506,0.101719,0.067192,0.06732,0.066928,0.078412,0.09827,0.065208,0.065208,0.034599,0.034599,21.436151,36.4681,36.373548,36.664614,29.700508,22.356642,38,38,38,38,,,,,,,,,,,3096,3096,0.157506,0.157506,0.157506,0.157506,0.157506,0.157506,0.157506,0.157506,0.065208,0.065208,38,38,, +14799,1,0.318311,1,0,0,1,1,RON,4,2,E M 153/S I 275,RAMP,1595705,0,0.318,0,,1.09,4,0.424415,,0.424415,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.472955,,0.424415,,0.472955,,0.43616,,0.424415,,0.43616,,0.470219,,0.424415,,0.470219,,0.424415,,0.424415,,0.424415,,,,,,,,0.472955,,0.43616,,0.470219,,0.424415,,0.424415,,0.199182,,0.188144,,0.198362,,0.18462,,0.098676,,40.381544,,43.788172,,40.616546,,45,,45,,,,,,,,,,,,5160,,0.424415,,0.424415,,0.424415,,0.424415,,0.18462,,45,,, +14842,1,0.411949,1,0,0,1,1,ROF,4,2,N I 275/M 153,RAMP,1595801,0,0.412,0,,2.24,5,0.617923,,0.617923,,40,,15000,,3405,,7500,,4839,,5160,,5154,,1.034594,,0.617923,,1.034594,,0.736788,,0.617923,,0.736788,,1.373889,,0.617923,,1.373889,,0.617923,,0.617923,,0.617923,,,,,,,,1.034594,,0.736788,,1.373889,,0.617923,,0.617923,,0.384529,,0.295187,,0.486318,,0.259528,,0.138003,,23.890473,,33.54689,,17.990485,,40,,40,,,,,,,,,,,,5160,,0.617923,,0.617923,,0.617923,,0.617923,,0.259528,,40,,, +15138,0,0.11575,3,3,1,2,3,,4,2,Ford,Rd,1595510,5.209,5.324,0,2.480349,3.7,5,0.173624,0.173624,0.173624,0.173624,40,40,34100,34100,7741,7741,17050,17050,11001,11001,11730,11730,11717,11717,0.300697,0.20096,0.173624,0.173624,0.300697,0.20096,0.218247,0.187637,0.173624,0.173624,0.218247,0.187637,0.300358,0.247622,0.173624,0.173624,0.300358,0.247622,0.173624,0.173624,0.173624,0.173624,0.173624,0.173624,,,,,,,0.300697,0.20096,0.218247,0.187637,0.300358,0.247622,0.173624,0.173624,0.173624,0.173624,0.111044,0.081123,0.086309,0.077126,0.110942,0.095121,0.072922,0.072922,0.038776,0.038776,23.096296,34.559074,31.821589,37.012858,23.12233,28.046706,40,40,40,40,,,,,,,,,,,11730,11730,0.173624,0.173624,0.173624,0.173624,0.173624,0.173624,0.173624,0.173624,0.072922,0.072922,40,40,, +15325,1,0.246771,1,0,0,1,1,RON,4,2,W M 153/S I 275,RAMP,1595707,0,0.247,0,,1.09,4,0.329028,,0.329028,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.329395,,0.329028,,0.329395,,0.329268,,0.329028,,0.329268,,0.329766,,0.329028,,0.329766,,0.329028,,0.329028,,0.329028,,,,,,,,0.329395,,0.329268,,0.329766,,0.329028,,0.329028,,0.143237,,0.143199,,0.143349,,0.143127,,0.076499,,44.949866,,44.967106,,44.899173,,45,,45,,,,,,,,,,,,5160,,0.329028,,0.329028,,0.329028,,0.329028,,0.143127,,45,,, +15625,1,0.377239,1,0,0,1,1,ROF,4,2,S I 275/M 153,RAMP,1595706,0,0.377,0,,2.24,5,0.565858,,0.565858,,40,,15000,,3405,,7500,,4839,,5160,,5154,,1.151598,,0.565858,,1.151598,,1.073612,,0.565858,,1.073612,,3.236627,,0.565858,,3.236627,,0.565858,,0.565858,,0.565858,,,,,,,,1.151598,,1.073612,,3.236627,,0.565858,,0.565858,,0.413382,,0.389987,,1.038891,,0.23766,,0.126375,,19.654709,,21.082397,,6.993181,,40,,40,,,,,,,,,,,,5160,,0.565858,,0.565858,,0.565858,,0.565858,,0.23766,,40,,, +16187,0,0.372751,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,5.118,5.49,0,7.987523,4.5,4.5,0.588554,0.588554,0.588554,0.588554,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.869207,0.843183,0.588554,0.588554,0.869207,0.843183,0.7521,0.721782,0.588554,0.588554,0.7521,0.721782,1.192816,1.177401,0.588554,0.588554,1.192816,1.177401,0.588554,0.588554,0.588554,0.588554,0.588554,0.588554,,,,,,,0.869207,0.843183,0.7521,0.721782,1.192816,1.177401,0.588554,0.588554,0.588554,0.588554,0.327857,0.32005,0.292725,0.28363,0.42494,0.420315,0.243661,0.243661,0.129286,0.129286,25.730412,26.524571,29.736813,30.985916,18.749801,18.995287,38,38,38,38,,,,,,,,,,,3096,3096,0.588554,0.588554,0.588554,0.588554,0.588554,0.588554,0.588554,0.588554,0.243661,0.243661,38,38,, +16350,-1,0.340698,0,3,0,1,1,,4,2,S I 275,,1607610,17.06,17.4,0,,0.8,7.5,,0.292027,,0.292027,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.292953,,0.292027,,0.292953,,0.2922,,0.292027,,0.2922,,0.309551,,0.292027,,0.309551,,0.292027,,0.292027,,0.292027,,,,,,,,0.292953,,0.2922,,0.309551,,0.292027,,0.292027,,0.149212,,0.148986,,0.154191,,0.148934,,0.081281,,69.778886,,69.958495,,66.037332,,70,,70,,,,,,,,,,,,22704,,0.292027,,0.292027,,0.292027,,0.292027,,0.148934,,70,, +16756,1,0.302101,3,0,0,1,1,,4,2,N I 275,,1607208,16.959,17.261,0,,0.8,7.5,0.258943,,0.258943,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.26792,,0.258943,,0.26792,,0.259065,,0.258943,,0.259065,,0.26071,,0.258943,,0.26071,,0.258943,,0.258943,,0.258943,,,,,,,,0.26792,,0.259065,,0.26071,,0.258943,,0.258943,,0.134754,,0.132098,,0.132591,,0.132061,,0.072073,,67.65469,,69.967179,,69.525592,,70,,70,,,,,,,,,,,,22704,,0.258943,,0.258943,,0.258943,,0.258943,,0.132061,,70,,, +23212,0,0.527424,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,7.398,7.925,0,11.301946,4.5,4.5,0.832775,0.832775,0.832775,0.832775,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.358621,1.078728,0.832775,0.832775,2.358621,1.078728,1.285876,1.159049,0.832775,0.832775,1.285876,1.159049,1.684385,2.406643,0.832775,0.832775,1.684385,2.406643,0.832775,0.832775,0.832775,0.832775,0.832775,0.832775,,,,,,,2.358621,1.078728,1.285876,1.159049,1.684385,2.406643,0.832775,0.832775,0.832775,0.832775,0.802523,0.418555,0.480699,0.442651,0.600252,0.816929,0.344769,0.344769,0.182933,0.182933,13.416927,29.3359,24.610041,27.302951,18.787538,13.149205,38,38,38,38,,,,,,,,,,,3096,3096,0.832775,0.832775,0.832775,0.832775,0.832775,0.832775,0.832775,0.832775,0.344769,0.344769,38,38,, +24064,0,0.611749,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.267,5.878,0,13.10891,4.5,4.5,0.96592,0.96592,0.96592,0.96592,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.549346,1.602347,0.96592,0.96592,1.549346,1.602347,1.39419,1.297738,0.96592,0.96592,1.39419,1.297738,2.574795,2.000004,0.96592,0.96592,2.574795,2.000004,0.96592,0.96592,0.96592,0.96592,0.96592,0.96592,,,,,,,1.549346,1.602347,1.39419,1.297738,2.574795,2.000004,0.96592,0.96592,0.96592,0.96592,0.574919,0.590819,0.528372,0.499436,0.882553,0.710116,0.399891,0.399891,0.21218,0.21218,23.690613,22.906994,26.327068,28.283798,14.255481,18.352437,38,38,38,38,,,,,,,,,,,3096,3096,0.96592,0.96592,0.96592,0.96592,0.96592,0.96592,0.96592,0.96592,0.399891,0.399891,38,38,, +24207,0,0.220449,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.908,3.128,0,4.723903,5.8,4.5,0.489886,0.489886,0.489886,0.489886,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.779179,0.51496,0.489886,0.489886,0.779179,0.51496,0.523626,0.535126,0.489886,0.489886,0.523626,0.535126,0.611718,1.088715,0.489886,0.489886,0.611718,1.088715,0.489886,0.489886,0.489886,0.489886,0.489886,0.489886,,,,,,,0.779179,0.51496,0.523626,0.535126,0.611718,1.088715,0.489886,0.489886,0.489886,0.489886,0.273435,0.194169,0.196768,0.200218,0.223196,0.366295,0.186647,0.186647,0.097732,0.097732,16.975464,25.685374,25.260281,24.717434,21.622599,12.149119,27,27,27,27,,,,,,,,,,,2580,2580,0.489886,0.489886,0.489886,0.489886,0.489886,0.489886,0.489886,0.489886,0.186647,0.186647,27,27,, +31606,0,0.506221,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.847584,0.15,4,2.024882,2.024882,2.024882,2.024882,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.024883,2.024882,2.024882,2.024882,2.024883,2.024882,2.024882,2.024882,2.024882,2.024882,2.024882,2.024882,2.024882,2.024883,2.024882,2.024882,2.024882,2.024883,2.024882,2.024882,2.024882,2.024882,2.024882,2.024882,,,,,,,2.024883,2.024882,2.024882,2.024882,2.024882,2.024883,2.024882,2.024882,2.024882,2.024882,0.698585,0.698584,0.698584,0.698584,0.698584,0.698584,0.698584,0.698584,0.359417,0.359417,14.999996,15,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.024882,2.024882,2.024882,2.024882,2.024882,2.024882,2.024882,2.024882,0.698584,0.698584,15,15,, +31628,0,0.504903,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.819344,0.15,4,2.019611,2.019611,2.019611,2.019611,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,,,,,,,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,0.696766,0.696766,0.696766,0.696766,0.696766,0.696766,0.696766,0.696766,0.358481,0.358481,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,2.019611,0.696766,0.696766,15,15,, +16457,0,0.319303,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,4.48,4.799,0,6.842217,4.5,4.5,0.504163,0.504163,0.504163,0.504163,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.733186,0.620319,0.504163,0.504163,0.733186,0.620319,0.606871,0.566317,0.504163,0.504163,0.606871,0.566317,0.856461,0.71444,0.504163,0.504163,0.856461,0.71444,0.504163,0.504163,0.504163,0.504163,0.504163,0.504163,,,,,,,0.733186,0.620319,0.606871,0.566317,0.856461,0.71444,0.504163,0.504163,0.504163,0.504163,0.27743,0.24357,0.239536,0.22737,0.314413,0.271807,0.208724,0.208724,0.110748,0.110748,26.130085,30.884439,31.568808,33.829454,22.369038,26.815679,38,38,38,38,,,,,,,,,,,3406,3406,0.504163,0.504163,0.504163,0.504163,0.504163,0.504163,0.504163,0.504163,0.208724,0.208724,38,38,, +23371,0,0.475701,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,6.923,7.398,0,10.193592,4.5,4.5,0.751107,0.751107,0.751107,0.751107,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.311593,0.889341,0.751107,0.751107,1.311593,0.889341,0.964803,0.936811,0.751107,0.751107,0.964803,0.936811,1.299642,1.433427,0.751107,0.751107,1.299642,1.433427,0.751107,0.751107,0.751107,0.751107,0.751107,0.751107,,,,,,,1.311593,0.889341,0.964803,0.936811,1.299642,1.433427,0.751107,0.751107,0.751107,0.751107,0.479104,0.352429,0.375067,0.36667,0.475519,0.515654,0.310958,0.310958,0.164993,0.164993,21.761365,32.093486,29.583304,30.467244,21.961486,19.911769,38,38,38,38,,,,,,,,,,,3096,3096,0.751107,0.751107,0.751107,0.751107,0.751107,0.751107,0.751107,0.751107,0.310958,0.310958,38,38,, +24212,0,0.284554,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.313,2.597,0,6.097581,5.8,4.5,0.632342,0.632342,0.632342,0.632342,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.852838,0.641696,0.632342,0.632342,0.852838,0.641696,0.643563,0.649892,0.632342,0.632342,0.643563,0.649892,0.725941,0.986011,0.632342,0.632342,0.725941,0.986011,0.632342,0.632342,0.632342,0.632342,0.632342,0.632342,,,,,,,0.852838,0.641696,0.643563,0.649892,0.725941,0.986011,0.632342,0.632342,0.632342,0.632342,0.307071,0.243728,0.244289,0.246187,0.269002,0.347023,0.240922,0.240922,0.126152,0.126152,20.019299,26.606417,26.529213,26.270883,23.518751,17.31546,27,27,27,27,,,,,,,,,,,2580,2580,0.632342,0.632342,0.632342,0.632342,0.632342,0.632342,0.632342,0.632342,0.240922,0.240922,27,27,, +31627,0,0.248202,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.318617,0.15,4,0.992809,0.992809,0.992809,0.992809,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,,,,,,,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.342519,0.342519,0.342519,0.342519,0.342519,0.342519,0.342519,0.342519,0.176224,0.176224,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.992809,0.342519,0.342519,15,15,, +31632,0,0.501516,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.746772,0.15,4,2.006064,2.006064,2.006064,2.006064,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,,,,,,,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,0.692092,0.692092,0.692092,0.692092,0.692092,0.692092,0.692092,0.692092,0.356076,0.356076,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,2.006064,0.692092,0.692092,15,15,, +33746,0,0.505669,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.835766,0.15,4,2.022676,2.022676,2.022676,2.022676,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,,,,,,,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,0.697823,0.697823,0.697823,0.697823,0.697823,0.697823,0.697823,0.697823,0.359025,0.359025,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,2.022676,0.697823,0.697823,15,15,, +24216,0,0.185073,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.128,2.313,0,3.965852,5.8,4.5,0.411274,0.411274,0.411274,0.411274,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.554684,0.420748,0.411274,0.411274,0.554684,0.420748,0.418572,0.422688,0.411274,0.411274,0.418572,0.422688,0.478278,0.641299,0.411274,0.411274,0.478278,0.641299,0.411274,0.411274,0.411274,0.411274,0.411274,0.411274,,,,,,,0.554684,0.420748,0.418572,0.422688,0.478278,0.641299,0.411274,0.411274,0.411274,0.411274,0.199718,0.159537,0.158885,0.16012,0.176797,0.225703,0.156695,0.156695,0.082049,0.082049,20.019299,26.39203,26.529213,26.270883,23.217424,17.31546,27,27,27,27,,,,,,,,,,,2580,2580,0.411274,0.411274,0.411274,0.411274,0.411274,0.411274,0.411274,0.411274,0.156695,0.156695,27,27,, +24211,0,0.143651,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.597,2.741,0,3.078225,5.8,4.5,0.319223,0.319223,0.319223,0.319223,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.383933,0.333471,0.319223,0.319223,0.383933,0.333471,0.336698,0.346554,0.319223,0.319223,0.336698,0.346554,0.43051,0.539777,0.319223,0.319223,0.43051,0.539777,0.319223,0.319223,0.319223,0.319223,0.319223,0.319223,,,,,,,0.383933,0.333471,0.336698,0.346554,0.43051,0.539777,0.319223,0.319223,0.319223,0.319223,0.141037,0.125898,0.126866,0.129823,0.15501,0.18779,0.121624,0.121624,0.063685,0.063685,22.449286,25.846444,25.598734,24.870667,20.020497,15.967751,27,27,27,27,,,,,,,,,,,2580,2580,0.319223,0.319223,0.319223,0.319223,0.319223,0.319223,0.319223,0.319223,0.121624,0.121624,27,27,, +31605,0,0.250579,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.369552,0.15,4,1.002316,1.002316,1.002316,1.002316,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,,,,,,,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,0.345799,0.345799,0.345799,0.345799,0.345799,0.345799,0.345799,0.345799,0.177911,0.177911,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,1.002316,0.345799,0.345799,15,15,, +24210,0,0.166854,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.741,2.908,0,3.575453,5.8,4.5,0.370788,0.370788,0.370788,0.370788,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.589749,0.389765,0.370788,0.370788,0.589749,0.389765,0.396324,0.405029,0.370788,0.370788,0.396324,0.405029,0.459866,0.620571,0.370788,0.370788,0.459866,0.620571,0.370788,0.370788,0.370788,0.370788,0.370788,0.370788,,,,,,,0.589749,0.389765,0.396324,0.405029,0.459866,0.620571,0.370788,0.370788,0.370788,0.370788,0.206959,0.146963,0.148931,0.151542,0.167994,0.216205,0.14127,0.14127,0.073972,0.073972,16.975464,25.685374,25.260281,24.717434,21.769945,16.132355,27,27,27,27,,,,,,,,,,,2580,2580,0.370788,0.370788,0.370788,0.370788,0.370788,0.370788,0.370788,0.370788,0.14127,0.14127,27,27,, +16443,0,0.141919,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,4.976,5.118,0,3.041121,4.5,4.5,0.224083,0.224083,0.224083,0.224083,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.294818,0.291495,0.224083,0.224083,0.294818,0.291495,0.271582,0.258605,0.224083,0.224083,0.271582,0.258605,0.352768,0.313722,0.224083,0.224083,0.352768,0.313722,0.224083,0.224083,0.224083,0.224083,0.224083,0.224083,,,,,,,0.294818,0.291495,0.271582,0.258605,0.352768,0.313722,0.224083,0.224083,0.224083,0.224083,0.113991,0.112994,0.10702,0.103127,0.131376,0.119662,0.09277,0.09277,0.049223,0.049223,28.882721,29.211934,31.353887,32.92719,24.138059,27.142319,38,38,38,38,,,,,,,,,,,3096,3096,0.224083,0.224083,0.224083,0.224083,0.224083,0.224083,0.224083,0.224083,0.09277,0.09277,38,38,, +16195,0,0.176608,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,4.799,4.976,0,3.784461,4.5,4.5,0.278855,0.278855,0.278855,0.278855,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.405528,0.400731,0.278855,0.278855,0.405528,0.400731,0.335663,0.313233,0.278855,0.278855,0.335663,0.313233,0.495268,0.394662,0.278855,0.278855,0.495268,0.394662,0.278855,0.278855,0.278855,0.278855,0.278855,0.278855,,,,,,,0.405528,0.400731,0.335663,0.313233,0.495268,0.394662,0.278855,0.278855,0.278855,0.278855,0.153448,0.152009,0.132488,0.125759,0.18037,0.150188,0.115446,0.115446,0.061255,0.061255,26.130085,26.442886,31.568808,33.829454,21.395485,26.849509,38,38,38,38,,,,,,,,,,,3406,3406,0.278855,0.278855,0.278855,0.278855,0.278855,0.278855,0.278855,0.278855,0.115446,0.115446,38,38,, +31607,0,0.142119,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.045406,0.15,4,0.568476,0.568476,0.568476,0.568476,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,,,,,,,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.196124,0.196124,0.196124,0.196124,0.196124,0.196124,0.196124,0.196124,0.100904,0.100904,14.999991,14.999999,14.999998,14.999999,14.999995,14.999983,15,15,15,15,,,,,,,,,,,34400,34400,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.568476,0.196124,0.196124,15,15,, +14753,0,0.177561,2,3,1,2,3,,4,2,Ford,Rd,1595510,4.802,4.98,0,3.804887,3.7,5,0.266342,0.266342,0.266342,0.266342,40,40,23100,34100,5244,7741,11550,17050,7452,11001,7946,11730,7937,11717,0.699776,0.296813,0.266342,0.266342,0.699776,0.296813,0.388932,0.288176,0.266342,0.266342,0.388932,0.288176,0.721099,0.414272,0.266342,0.266342,0.721099,0.414272,0.266342,0.266342,0.266342,0.266342,0.266342,0.266342,,,,,,,0.699776,0.296813,0.388932,0.288176,0.721099,0.414272,0.266342,0.266342,0.266342,0.266342,0.241894,0.121005,0.148641,0.118414,0.248291,0.156243,0.111864,0.111864,0.059483,0.059483,15.22441,35.893607,27.392149,36.969355,14.774224,25.716669,40,40,40,40,,,,,,,,,,,7946,11730,0.266342,0.266342,0.266342,0.266342,0.266342,0.266342,0.266342,0.266342,0.111864,0.111864,40,40,, +18984,0,0.187218,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.896,5.083,0,4.011824,5.8,4.5,0.416041,0.416041,0.416041,0.416041,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.449864,0.416177,0.416041,0.416041,0.449864,0.416177,0.416433,0.416176,0.416041,0.416041,0.416433,0.416176,0.422613,0.428844,0.416041,0.416041,0.422613,0.428844,0.416041,0.416041,0.416041,0.416041,0.416041,0.416041,,,,,,,0.449864,0.416177,0.416433,0.416176,0.422613,0.428844,0.416041,0.416041,0.416041,0.416041,0.168658,0.158552,0.158629,0.158552,0.160483,0.162352,0.158512,0.158512,0.083,0.083,24.970032,26.99118,26.974565,26.991256,26.58013,26.193947,27,27,27,27,,,,,,,,,,,2580,2580,0.416041,0.416041,0.416041,0.416041,0.416041,0.416041,0.416041,0.416041,0.158512,0.158512,27,27,, +22844,0,0.18417,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,8.145,8.33,0,3.946498,4.5,4.5,0.290795,0.290795,0.290795,0.290795,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.324457,0.403006,0.290795,0.290795,0.324457,0.403006,0.303331,0.316871,0.290795,0.290795,0.303331,0.316871,0.330559,0.394715,0.290795,0.290795,0.330559,0.394715,0.290795,0.290795,0.290795,0.290795,0.290795,0.290795,,,,,,,0.324457,0.403006,0.303331,0.316871,0.330559,0.394715,0.290795,0.290795,0.290795,0.290795,0.130488,0.154052,0.12415,0.128212,0.132318,0.151565,0.120389,0.120389,0.063878,0.063878,34.05754,27.419405,36.429527,34.872885,33.428819,27.995396,38,38,38,38,,,,,,,,,,,3096,3096,0.290795,0.290795,0.290795,0.290795,0.290795,0.290795,0.290795,0.290795,0.120389,0.120389,38,38,, +24199,0,0.276584,1,1,1,2,4,,4,2,Lilley,Rd,4710390,3.384,3.66,0,5.926801,4.5,4.5,0.436712,0.436712,0.436712,0.436712,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.555925,0.442499,0.436712,0.436712,0.555925,0.442499,0.462303,0.452593,0.436712,0.436712,0.462303,0.452593,0.525071,0.584268,0.436712,0.436712,0.525071,0.584268,0.436712,0.436712,0.436712,0.436712,0.436712,0.436712,,,,,,,0.555925,0.442499,0.462303,0.452593,0.525071,0.584268,0.436712,0.436712,0.436712,0.436712,0.216563,0.182535,0.188476,0.185563,0.207306,0.225066,0.180799,0.180799,0.095931,0.095931,29.851211,37.502973,35.896447,36.666601,31.605342,28.403127,38,38,38,38,,,,,,,,,,,3406,3406,0.436712,0.436712,0.436712,0.436712,0.436712,0.436712,0.436712,0.436712,0.180799,0.180799,38,38,, +31612,0,0.350702,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.515034,0.15,4,1.402806,1.402806,1.402806,1.402806,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,,,,,,,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,0.483968,0.483968,0.483968,0.483968,0.483968,0.483968,0.483968,0.483968,0.248998,0.248998,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,1.402806,0.483968,0.483968,15,15,, +31634,0,0.182768,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.916465,0.15,4,0.731073,0.731073,0.731073,0.731073,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,,,,,,,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.25222,0.25222,0.25222,0.25222,0.25222,0.25222,0.25222,0.25222,0.129766,0.129766,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.731073,0.25222,0.25222,15,15,, +31635,0,0.283202,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.068614,0.15,4,1.132808,1.132808,1.132808,1.132808,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,,,,,,,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,0.390819,0.390819,0.390819,0.390819,0.390819,0.390819,0.390819,0.390819,0.201073,0.201073,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,1.132808,0.390819,0.390819,15,15,, +33962,0,0.40639,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.70835,0.15,4,1.625559,1.625559,1.625559,1.625559,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,,,,,,,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,0.560818,0.560818,0.560818,0.560818,0.560818,0.560818,0.560818,0.560818,0.288537,0.288537,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,1.625559,0.560818,0.560818,15,15,, +15006,0,0.317345,2,3,1,2,3,,4,2,Ford,Rd,1595510,4.485,4.802,0,6.800244,3.7,5,0.476017,0.476017,0.476017,0.476017,40,40,23100,34100,5244,7741,11550,17050,7452,11001,7946,11730,7937,11717,0.96686,0.562091,0.476017,0.476017,0.96686,0.562091,0.713856,0.517487,0.476017,0.476017,0.713856,0.517487,1.135435,0.698891,0.476017,0.476017,1.135435,0.698891,0.476017,0.476017,0.476017,0.476017,0.476017,0.476017,,,,,,,0.96686,0.562091,0.713856,0.517487,1.135435,0.698891,0.476017,0.476017,0.476017,0.476017,0.34718,0.225749,0.271279,0.212368,0.397753,0.266789,0.199927,0.199927,0.10631,0.10631,19.69332,33.874739,26.672986,36.794531,16.769502,27.244156,40,40,40,40,,,,,,,,,,,7946,11730,0.476017,0.476017,0.476017,0.476017,0.476017,0.476017,0.476017,0.476017,0.199927,0.199927,40,40,, +24201,0,0.255792,1,1,1,2,4,,4,2,Lilley,Rd,4710390,3.128,3.384,0,5.481265,4.5,4.5,0.403883,0.403883,0.403883,0.403883,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.5745,0.409235,0.403883,0.403883,0.5745,0.409235,0.42755,0.41857,0.403883,0.403883,0.42755,0.41857,0.654287,0.545653,0.403883,0.403883,0.654287,0.545653,0.403883,0.403883,0.403883,0.403883,0.403883,0.403883,,,,,,,0.5745,0.409235,0.42755,0.41857,0.654287,0.545653,0.403883,0.403883,0.403883,0.403883,0.218392,0.168813,0.174308,0.171614,0.242329,0.209738,0.167207,0.167207,0.08872,0.08872,26.714626,37.502973,35.896447,36.666601,23.456895,28.126937,38,38,38,38,,,,,,,,,,,3406,3406,0.403883,0.403883,0.403883,0.403883,0.403883,0.403883,0.403883,0.403883,0.167207,0.167207,38,38,, +17994,0,0.306445,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.522,4.829,0,6.566676,5.8,4.5,0.680989,0.680989,0.680989,0.680989,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.872295,0.69043,0.680989,0.680989,0.872295,0.69043,0.720614,0.708253,0.680989,0.680989,0.720614,0.708253,0.878668,0.90226,0.680989,0.680989,0.878668,0.90226,0.680989,0.680989,0.680989,0.680989,0.680989,0.680989,,,,,,,0.872295,0.69043,0.720614,0.708253,0.878668,0.90226,0.680989,0.680989,0.680989,0.680989,0.316849,0.262289,0.271344,0.267636,0.31876,0.325838,0.259457,0.259457,0.135857,0.135857,21.078529,26.630786,25.515323,25.96063,20.925645,20.378487,27,27,27,27,,,,,,,,,,,2580,2580,0.680989,0.680989,0.680989,0.680989,0.680989,0.680989,0.680989,0.680989,0.259457,0.259457,27,27,, +24198,0,0.262869,1,1,0,2,4,,4,2,Lilley,Rd,4710390,3.66,3.923,0,5.632907,4.5,4.5,0.415056,0.415056,0.415056,0.415056,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.643667,0.432969,0.415056,0.415056,0.643667,0.432969,0.472081,0.453711,0.415056,0.415056,0.472081,0.453711,0.559988,0.687362,0.415056,0.415056,0.559988,0.687362,0.415056,0.415056,0.415056,0.415056,0.415056,0.415056,,,,,,,0.643667,0.432969,0.472081,0.453711,0.559988,0.687362,0.415056,0.415056,0.415056,0.415056,0.240417,0.177207,0.188941,0.18343,0.215313,0.253525,0.171833,0.171833,0.091174,0.091174,24.503553,36.427829,33.40979,34.762534,28.165133,22.945906,38,38,38,38,,,,,,,,,,,3096,3096,0.415056,0.415056,0.415056,0.415056,0.415056,0.415056,0.415056,0.415056,0.171833,0.171833,38,38,, +31487,0,0.229174,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.910865,0.15,4,0.916695,0.916695,0.916695,0.916695,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,,,,,,,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.31626,0.31626,0.31626,0.31626,0.31626,0.31626,0.31626,0.31626,0.162713,0.162713,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.916695,0.31626,0.31626,15,15,, +31609,0,0.31448,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.738867,0.15,4,1.257922,1.257922,1.257922,1.257922,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,,,,,,,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,0.433983,0.433983,0.433983,0.433983,0.433983,0.433983,0.433983,0.433983,0.223281,0.223281,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,1.257922,0.433983,0.433983,15,15,, +17574,0,0.067425,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.829,4.896,0,1.444823,5.8,4.5,0.149833,0.149833,0.149833,0.149833,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.220994,0.151381,0.149833,0.149833,0.220994,0.151381,0.162608,0.157376,0.149833,0.149833,0.162608,0.157376,0.198986,0.227941,0.149833,0.149833,0.198986,0.227941,0.149833,0.149833,0.149833,0.149833,0.149833,0.149833,,,,,,,0.220994,0.151381,0.162608,0.157376,0.198986,0.227941,0.149833,0.149833,0.149833,0.149833,0.078435,0.057551,0.060919,0.059349,0.071832,0.080519,0.057087,0.057087,0.029892,0.029892,18.305972,26.724067,24.878801,25.706002,20.330582,17.748068,27,27,27,27,,,,,,,,,,,2580,2580,0.149833,0.149833,0.149833,0.149833,0.149833,0.149833,0.149833,0.149833,0.057087,0.057087,27,27,, +15671,0,0.156865,3,3,1,2,3,,4,2,Ford,Rd,1595510,4.98,5.137,0,3.361398,3.7,5,0.235298,0.235298,0.235298,0.235298,40,40,34100,34100,7741,7741,17050,17050,11001,11001,11730,11730,11717,11717,0.666525,0.410279,0.235298,0.235298,0.666525,0.410279,0.352153,0.350971,0.235298,0.235298,0.352153,0.350971,0.632454,0.912881,0.235298,0.235298,0.632454,0.912881,0.235298,0.235298,0.235298,0.235298,0.235298,0.235298,,,,,,,0.666525,0.410279,0.352153,0.350971,0.632454,0.912881,0.235298,0.235298,0.235298,0.235298,0.228193,0.151319,0.133882,0.133527,0.217972,0.3021,0.098825,0.098825,0.05255,0.05255,14.120865,22.940301,26.726745,26.816753,14.881571,10.310118,40,40,40,40,,,,,,,,,,,11730,11730,0.235298,0.235298,0.235298,0.235298,0.235298,0.235298,0.235298,0.235298,0.098825,0.098825,40,40,, +22979,0,0.220186,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,7.925,8.145,0,4.718263,4.5,4.5,0.347661,0.347661,0.347661,0.347661,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.723286,0.685187,0.347661,0.347661,0.723286,0.685187,0.566262,0.630281,0.347661,0.347661,0.566262,0.630281,0.832372,1.345941,0.347661,0.347661,0.832372,1.345941,0.347661,0.347661,0.347661,0.347661,0.347661,0.347661,,,,,,,0.723286,0.685187,0.566262,0.630281,0.832372,1.345941,0.347661,0.347661,0.347661,0.347661,0.256619,0.24519,0.209512,0.228718,0.289345,0.443416,0.143932,0.143932,0.07637,0.07637,18.265437,19.281056,23.330431,20.960711,15.871674,9.815543,38,38,38,38,,,,,,,,,,,3096,3096,0.347661,0.347661,0.347661,0.347661,0.347661,0.347661,0.347661,0.347661,0.143932,0.143932,38,38,, +31636,0,0.100207,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.147286,0.15,4,0.400827,0.400827,0.400827,0.400827,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,0.400828,0.400827,0.400827,0.400827,0.400828,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,,,,,,,0.400827,0.400827,0.400827,0.400827,0.400828,0.400827,0.400827,0.400827,0.400827,0.400827,0.138285,0.138285,0.138285,0.138285,0.138285,0.138285,0.138285,0.138285,0.071147,0.071147,14.999999,14.999993,14.999989,14.999987,14.999971,14.999975,15,15,15,15,,,,,,,,,,,34400,34400,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,0.400827,0.138285,0.138285,15,15,, +15386,0,0.071804,3,2,1,2,3,,4,2,Ford,Rd,1595510,5.137,5.209,0,1.538663,3.7,5,0.107706,0.107706,0.107706,0.107706,40,40,34100,23100,7741,5244,17050,11550,11001,7452,11730,7946,11717,7937,0.186535,0.161092,0.107706,0.107706,0.186535,0.161092,0.135388,0.134401,0.107706,0.107706,0.135388,0.134401,0.186325,0.25529,0.107706,0.107706,0.186325,0.25529,0.107706,0.107706,0.107706,0.107706,0.107706,0.107706,,,,,,,0.186535,0.161092,0.135388,0.134401,0.186325,0.25529,0.107706,0.107706,0.107706,0.107706,0.068885,0.061252,0.053541,0.053245,0.068822,0.089512,0.045237,0.045237,0.024054,0.024054,23.096296,26.744136,31.821589,32.055127,23.12233,16.875947,40,40,40,40,,,,,,,,,,,11730,7946,0.107706,0.107706,0.107706,0.107706,0.107706,0.107706,0.107706,0.107706,0.045237,0.045237,40,40,, +22629,0,0.352827,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,8.33,8.682,0,7.560576,4.5,4.5,0.557095,0.557095,0.557095,0.557095,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.753944,0.645876,0.557095,0.557095,0.753944,0.645876,0.589615,0.606764,0.557095,0.557095,0.589615,0.606764,0.715586,1.019149,0.557095,0.557095,0.715586,1.019149,0.557095,0.557095,0.557095,0.557095,0.557095,0.557095,,,,,,,0.753944,0.645876,0.589615,0.606764,0.715586,1.019149,0.557095,0.557095,0.557095,0.557095,0.289692,0.257272,0.240393,0.245538,0.278185,0.369253,0.230637,0.230637,0.122375,0.122375,28.078508,32.776611,35.904123,34.889348,29.583609,20.771861,38,38,38,38,,,,,,,,,,,3096,3096,0.557095,0.557095,0.557095,0.557095,0.557095,0.557095,0.557095,0.557095,0.230637,0.230637,38,38,, +24066,0,0.202655,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.016,5.219,0,4.342597,4.5,4.5,0.319981,0.319981,0.319981,0.319981,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.389267,0.354244,0.319981,0.319981,0.389267,0.354244,0.327369,0.323355,0.319981,0.319981,0.327369,0.323355,0.416256,0.354798,0.319981,0.319981,0.416256,0.354798,0.319981,0.319981,0.319981,0.319981,0.319981,0.319981,,,,,,,0.389267,0.354244,0.327369,0.323355,0.416256,0.354798,0.319981,0.319981,0.319981,0.319981,0.153258,0.142751,0.134689,0.133484,0.161355,0.142917,0.132472,0.132472,0.070289,0.070289,31.236341,34.32453,37.142369,37.603435,29.21102,34.270967,38,38,38,38,,,,,,,,,,,3096,3096,0.319981,0.319981,0.319981,0.319981,0.319981,0.319981,0.319981,0.319981,0.132472,0.132472,38,38,, +24065,0,0.04785,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.219,5.267,0,1.025363,4.5,4.5,0.075553,0.075553,0.075553,0.075553,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.125434,0.090155,0.075553,0.075553,0.125434,0.090155,0.080528,0.078011,0.075553,0.075553,0.080528,0.078011,0.119226,0.101431,0.075553,0.075553,0.119226,0.101431,0.075553,0.075553,0.075553,0.075553,0.075553,0.075553,,,,,,,0.125434,0.090155,0.080528,0.078011,0.119226,0.101431,0.075553,0.075553,0.075553,0.075553,0.046243,0.03566,0.032772,0.032016,0.044381,0.039042,0.031279,0.031279,0.016596,0.016596,22.888584,31.845282,35.652217,36.802616,24.080474,28.305203,38,38,38,38,,,,,,,,,,,3096,3096,0.075553,0.075553,0.075553,0.075553,0.075553,0.075553,0.075553,0.075553,0.031279,0.031279,38,38,, +16181,0,0.276607,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,5.601,5.877,0,5.927292,4.5,4.5,0.436748,0.436748,0.436748,0.436748,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.611698,0.669871,0.436748,0.436748,0.611698,0.669871,0.544504,0.540898,0.436748,0.436748,0.544504,0.540898,0.892497,0.795682,0.436748,0.436748,0.892497,0.795682,0.436748,0.436748,0.436748,0.436748,0.436748,0.436748,,,,,,,0.611698,0.669871,0.544504,0.540898,0.892497,0.795682,0.436748,0.436748,0.436748,0.436748,0.233299,0.25075,0.213141,0.212059,0.317538,0.288494,0.180814,0.180814,0.095939,0.095939,27.131704,24.775558,30.479859,30.683075,18.595489,20.858118,38,38,38,38,,,,,,,,,,,3096,3096,0.436748,0.436748,0.436748,0.436748,0.436748,0.436748,0.436748,0.436748,0.180814,0.180814,38,38,, +31630,0,0.503803,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.795785,0.15,4,2.015213,2.015213,2.015213,2.015213,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,,,,,,,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,0.695249,0.695249,0.695249,0.695249,0.695249,0.695249,0.695249,0.695249,0.3577,0.3577,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,2.015213,0.695249,0.695249,15,15,, +16434,0,0.110469,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,5.49,5.601,0,2.36719,4.5,4.5,0.174425,0.174425,0.174425,0.174425,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.259817,0.263291,0.174425,0.174425,0.259817,0.263291,0.227337,0.217906,0.174425,0.174425,0.227337,0.217906,0.401749,0.393704,0.174425,0.174425,0.401749,0.393704,0.174425,0.174425,0.174425,0.174425,0.174425,0.174425,,,,,,,0.259817,0.263291,0.227337,0.217906,0.401749,0.393704,0.174425,0.174425,0.174425,0.174425,0.09783,0.098872,0.088086,0.085256,0.140409,0.137996,0.072212,0.072212,0.038315,0.038315,25.510762,25.174137,29.155499,30.417338,16.498187,16.835305,38,38,38,38,,,,,,,,,,,3096,3096,0.174425,0.174425,0.174425,0.174425,0.174425,0.174425,0.174425,0.174425,0.072212,0.072212,38,38,, +15003,0,0.177787,2,2,1,2,3,,4,2,Ford,Rd,1595510,5.517,5.694,0,3.809713,3.7,5,0.26668,0.26668,0.26668,0.26668,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.374468,0.425178,0.26668,0.26668,0.374468,0.425178,0.354301,0.404142,0.26668,0.26668,0.354301,0.404142,0.555707,0.680027,0.26668,0.26668,0.555707,0.680027,0.26668,0.26668,0.26668,0.26668,0.26668,0.26668,,,,,,,0.374468,0.425178,0.354301,0.404142,0.555707,0.680027,0.26668,0.26668,0.26668,0.26668,0.144342,0.159555,0.138292,0.153244,0.198714,0.23601,0.112006,0.112006,0.059559,0.059559,28.486289,25.088763,30.107683,26.394653,19.195734,15.68643,40,40,40,40,,,,,,,,,,,7946,7946,0.26668,0.26668,0.26668,0.26668,0.26668,0.26668,0.26668,0.26668,0.112006,0.112006,40,40,, +31637,0,0.277292,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.941965,0.15,4,1.109167,1.109167,1.109167,1.109167,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,,,,,,,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,0.382663,0.382663,0.382663,0.382663,0.382663,0.382663,0.382663,0.382663,0.196877,0.196877,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,1.109167,0.382663,0.382663,15,15,, +31639,0,0.291905,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.255101,0.15,4,1.167619,1.167619,1.167619,1.167619,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,,,,,,,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,0.402829,0.402829,0.402829,0.402829,0.402829,0.402829,0.402829,0.402829,0.207252,0.207252,14.999999,15,14.999998,14.999998,14.999994,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,1.167619,0.402829,0.402829,15,15,, +14906,1,0.405448,1,0,0,1,1,RON,4,2,W M 153/N I 275,RAMP,1595802,0,0.405,0,,1.09,4,0.540597,,0.540597,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.553669,,0.540597,,0.553669,,0.550681,,0.540597,,0.550681,,0.557347,,0.540597,,0.557347,,0.540597,,0.540597,,0.540597,,,,,,,,0.553669,,0.550681,,0.557347,,0.540597,,0.540597,,0.239081,,0.238185,,0.240185,,0.23516,,0.125689,,43.937629,,44.176002,,43.647631,,45,,45,,,,,,,,,,,,5160,,0.540597,,0.540597,,0.540597,,0.540597,,0.23516,,45,,, +15213,0,0.115313,2,3,1,2,3,,4,2,Ford,Rd,1595510,5.401,5.517,0,2.470998,3.7,5,0.17297,0.17297,0.17297,0.17297,40,40,23100,34100,5244,7741,11550,17050,7452,11001,7946,11730,7937,11717,0.242882,0.17453,0.17297,0.17297,0.242882,0.17453,0.229802,0.174464,0.17297,0.17297,0.229802,0.174464,0.360434,0.17864,0.17297,0.17297,0.360434,0.17864,0.17297,0.17297,0.17297,0.17297,0.17297,0.17297,,,,,,,0.242882,0.17453,0.229802,0.174464,0.360434,0.17864,0.17297,0.17297,0.17297,0.17297,0.093621,0.073115,0.089697,0.073096,0.128887,0.074348,0.072647,0.072647,0.03863,0.03863,28.486289,39.642541,30.107683,39.657315,19.195734,38.730323,40,40,40,40,,,,,,,,,,,7946,11730,0.17297,0.17297,0.17297,0.17297,0.17297,0.17297,0.17297,0.17297,0.072647,0.072647,40,40,, +16455,-1,0.283909,0,3,0,1,1,,4,2,S I 275,,1607610,17.4,17.684,0,,0.8,7.5,,0.243351,,0.243351,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.243747,,0.243351,,0.243747,,0.243419,,0.243351,,0.243419,,0.251934,,0.243351,,0.251934,,0.243351,,0.243351,,0.243351,,,,,,,,0.243747,,0.243419,,0.251934,,0.243351,,0.243351,,0.124228,,0.124129,,0.126684,,0.124109,,0.067733,,69.886237,,69.980463,,67.614981,,70,,70,,,,,,,,,,,,22704,,0.243351,,0.243351,,0.243351,,0.243351,,0.124109,,70,, +16487,1,0.342544,3,0,0,1,1,,4,2,N I 275,,1607208,17.261,17.603,0,,0.8,7.5,0.29361,,0.29361,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.373424,,0.29361,,0.373424,,0.295129,,0.29361,,0.295129,,0.309159,,0.29361,,0.309159,,0.29361,,0.29361,,0.29361,,,,,,,,0.373424,,0.295129,,0.309159,,0.29361,,0.29361,,0.173685,,0.150197,,0.154406,,0.149741,,0.081721,,55.038404,,69.639522,,66.479203,,70,,70,,,,,,,,,,,,22704,,0.29361,,0.29361,,0.29361,,0.29361,,0.149741,,70,,, +15091,1,0.236454,1,0,0,1,1,RON,4,2,E M 153/N I 275,RAMP,1595710,0,0.236,0,,1.09,4,0.315272,,0.315272,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.55605,,0.315272,,0.55605,,0.364603,,0.315272,,0.364603,,0.414182,,0.315272,,0.414182,,0.315272,,0.315272,,0.315272,,,,,,,,0.55605,,0.364603,,0.414182,,0.315272,,0.315272,,0.209377,,0.151943,,0.166816,,0.137143,,0.073301,,25.514329,,38.911492,,34.25364,,45,,45,,,,,,,,,,,,5160,,0.315272,,0.315272,,0.315272,,0.315272,,0.137143,,45,,, +15475,0,0.077043,2,3,1,2,3,,4,2,Ford,Rd,1595510,5.324,5.401,0,1.650922,3.7,5,0.115565,0.115565,0.115565,0.115565,40,40,23100,34100,5244,7741,11550,17050,7452,11001,7946,11730,7937,11717,0.125739,0.133759,0.115565,0.115565,0.125739,0.133759,0.124986,0.124891,0.115565,0.115565,0.124986,0.124891,0.146499,0.164817,0.115565,0.115565,0.146499,0.164817,0.115565,0.115565,0.115565,0.115565,0.115565,0.115565,,,,,,,0.125739,0.133759,0.124986,0.124891,0.146499,0.164817,0.115565,0.115565,0.115565,0.115565,0.051589,0.053995,0.051364,0.051335,0.057817,0.063313,0.048537,0.048537,0.025809,0.025809,36.763333,34.559074,36.984771,37.012858,31.553752,28.046706,40,40,40,40,,,,,,,,,,,7946,11730,0.115565,0.115565,0.115565,0.115565,0.115565,0.115565,0.115565,0.115565,0.048537,0.048537,40,40,, +10860,1,0.704792,3,0,0,1,1,,4,2,E I 94,,1576405,7.155,7.86,0,,0.8,7.5,0.604108,,0.604108,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.906444,,0.604108,,0.906444,,0.606693,,0.604108,,0.606693,,0.663254,,0.604108,,0.663254,,0.604108,,0.604108,,0.604108,,,,,,,,0.906444,,0.606693,,0.663254,,0.604108,,0.604108,,0.398796,,0.308871,,0.325839,,0.308095,,0.168143,,46.652135,,69.701682,,63.757632,,70,,70,,,,,,,,,,,,22704,,0.604108,,0.604108,,0.604108,,0.604108,,0.308095,,70,,, +13780,-1,0.830284,0,3,0,1,1,,4,2,W I 94,,1588802,7.291,8.121,0,,0.8,7.5,,0.711672,,0.711672,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.750638,,0.711672,,0.750638,,0.713918,,0.711672,,0.713918,,0.974026,,0.711672,,0.974026,,0.711672,,0.711672,,0.711672,,,,,,,,0.750638,,0.713918,,0.974026,,0.711672,,0.711672,,0.374643,,0.363626,,0.441659,,0.362953,,0.198082,,66.366279,,69.779834,,51.145483,,70,,70,,,,,,,,,,,,22704,,0.711672,,0.711672,,0.711672,,0.711672,,0.362953,,70,, +16911,0,0.595456,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,4.031,4.626,0,12.759765,4.5,4.5,0.940193,0.940193,0.940193,0.940193,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.0287,0.953524,0.940193,0.940193,1.0287,0.953524,0.952604,0.944558,0.940193,0.940193,0.952604,0.944558,0.996806,1.017927,0.940193,0.940193,0.996806,1.017927,0.940193,0.940193,0.940193,0.940193,0.940193,0.940193,,,,,,,1.0287,0.953524,0.952604,0.944558,0.996806,1.017927,0.940193,0.940193,0.940193,0.940193,0.415792,0.393239,0.392963,0.39055,0.406224,0.41256,0.38924,0.38924,0.206529,0.206529,34.730568,37.468752,37.50494,37.82439,35.841805,35.098153,38,38,38,38,,,,,,,,,,,3096,3096,0.940193,0.940193,0.940193,0.940193,0.940193,0.940193,0.940193,0.940193,0.38924,0.38924,38,38,, +17504,0,0.51781,1,1,0,2,4,,4,2,Wick,Rd,1682705,1.989,2.507,0,11.095926,4.5,4.5,0.817595,0.817595,0.817595,0.817595,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.821588,0.8176,0.817595,0.817595,0.821588,0.8176,0.817901,0.817749,0.817595,0.817595,0.817901,0.817749,0.818225,0.850648,0.817595,0.817595,0.818225,0.850648,0.817595,0.817595,0.817595,0.817595,0.817595,0.817595,,,,,,,0.821588,0.8176,0.817901,0.817749,0.818225,0.850648,0.817595,0.817595,0.817595,0.817595,0.339682,0.338486,0.338576,0.33853,0.338673,0.3484,0.338484,0.338484,0.179598,0.179598,37.81529,37.999726,37.985745,37.992836,37.970741,36.523424,38,38,38,38,,,,,,,,,,,3096,3096,0.817595,0.817595,0.817595,0.817595,0.817595,0.817595,0.817595,0.817595,0.338484,0.338484,38,38,, +18049,0,0.705681,1,1,0,2,4,,3,2,Van Born,Rd,1670203,1.223,1.928,0,15.121743,6,4.5,1.283057,1.283057,1.283057,1.283057,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.325089,1.339137,1.283057,1.283057,1.325089,1.339137,1.300688,1.322706,1.283057,1.283057,1.300688,1.322706,1.464829,1.36841,1.283057,1.283057,1.464829,1.36841,1.283057,1.283057,1.283057,1.283057,1.283057,1.283057,,,,,,,1.325089,1.339137,1.300688,1.322706,1.464829,1.36841,1.283057,1.283057,1.283057,1.283057,0.524549,0.528764,0.517229,0.523834,0.566471,0.537546,0.51194,0.51194,0.270083,0.270083,31.953226,31.618031,32.552683,32.010799,28.904996,30.941653,33,33,33,33,,,,,,,,,,,2580,2580,1.283057,1.283057,1.283057,1.283057,1.283057,1.283057,1.283057,1.283057,0.51194,0.51194,33,33,, +18208,0,0.368573,1,1,0,2,4,,4,2,Wick,Rd,1682705,0.997,1.366,0,7.897995,4.5,4.5,0.581958,0.581958,0.581958,0.581958,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.587159,0.60567,0.581958,0.581958,0.587159,0.60567,0.585674,0.590991,0.581958,0.581958,0.585674,0.590991,0.605175,0.615198,0.581958,0.581958,0.605175,0.615198,0.581958,0.581958,0.581958,0.581958,0.581958,0.581958,,,,,,,0.587159,0.60567,0.585674,0.590991,0.605175,0.615198,0.581958,0.581958,0.581958,0.581958,0.242491,0.248044,0.242045,0.24364,0.247896,0.250902,0.24093,0.24093,0.127837,0.127837,37.663367,36.512268,37.758839,37.419186,36.542161,35.946803,38,38,38,38,,,,,,,,,,,3096,3096,0.581958,0.581958,0.581958,0.581958,0.581958,0.581958,0.581958,0.581958,0.24093,0.24093,38,38,, +18209,0,0.677895,1,1,0,2,5,,4,2,Tobine,Rd,1682802,0,0.678,0,14.526319,5.8,4.5,1.506433,1.506433,1.506433,1.506433,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,,,,,,,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,0.573951,0.573951,0.573951,0.573951,0.573951,0.573951,0.573951,0.573951,0.300533,0.300533,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,1.506433,0.573951,0.573951,27,27,, +18500,0,0.31078,1,1,0,2,5,,4,2,Cogswell,Rd,1665704,0.226,0.536,0,6.659575,5.8,4.5,0.690623,0.690623,0.690623,0.690623,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,,,,,,,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.263127,0.263127,0.263127,0.263127,0.263127,0.263127,0.263127,0.263127,0.137779,0.137779,27,26.999995,27,27,26.999999,26.999995,27,27,27,27,,,,,,,,,,,2580,2580,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.690623,0.263127,0.263127,27,27,, +18803,0,0.910716,1,1,0,2,4,,4,2,Hannan,Rd,1710309,5.428,6.339,0,19.515338,4.5,4.5,1.437972,1.437972,1.437972,1.437972,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.68056,1.491299,1.437972,1.437972,1.68056,1.491299,1.487075,1.447805,1.437972,1.437972,1.487075,1.447805,1.939701,1.619131,1.437972,1.437972,1.939701,1.619131,1.437972,1.437972,1.437972,1.437972,1.437972,1.437972,,,,,,,1.68056,1.491299,1.487075,1.447805,1.939701,1.619131,1.437972,1.437972,1.437972,1.437972,0.668097,0.611318,0.610051,0.59827,0.745839,0.649668,0.595321,0.595321,0.315875,0.315875,32.514734,36.641177,36.745245,37.741923,28.170812,33.748314,38,38,38,38,,,,,,,,,,,3096,3096,1.437972,1.437972,1.437972,1.437972,1.437972,1.437972,1.437972,1.437972,0.595321,0.595321,38,38,, +19226,0,0.597901,1,1,0,2,4,,4,2,Northline,Rd,1811006,7.764,8.362,0,12.812164,4.5,4.5,0.944054,0.944054,0.944054,0.944054,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.945907,0.944273,0.944054,0.944054,0.945907,0.944273,0.944228,0.944161,0.944054,0.944054,0.944228,0.944161,0.944446,0.94492,0.944054,0.944054,0.944446,0.94492,0.944054,0.944054,0.944054,0.944054,0.944054,0.944054,,,,,,,0.945907,0.944273,0.944228,0.944161,0.944446,0.94492,0.944054,0.944054,0.944054,0.944054,0.391394,0.390904,0.390891,0.390871,0.390956,0.391098,0.390838,0.390838,0.207377,0.207377,37.925562,37.991199,37.993002,37.995698,37.984229,37.96519,38,38,38,38,,,,,,,,,,,3096,3096,0.944054,0.944054,0.944054,0.944054,0.944054,0.944054,0.944054,0.944054,0.390838,0.390838,38,38,, +23307,-1,0.148201,0,2,0,2,4,DIV,4,2,Vining,Rd,4706252,0.109,0.257,0,3.175733,4.5,4.5,,0.206792,,0.206792,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.206856,,0.206792,,0.206856,,0.207329,,0.206792,,0.207329,,0.217833,,0.206792,,0.217833,,0.206792,,0.206792,,0.206792,,,,,,,,0.206856,,0.207329,,0.217833,,0.206792,,0.206792,,0.088733,,0.088875,,0.092026,,0.088714,,0.047321,,42.986624,,42.8886,,40.820477,,43,,43,,,,,,,,,,,,6880,,0.206792,,0.206792,,0.206792,,0.206792,,0.088714,,43,, +23629,0,0.619514,1,1,0,2,5,,4,2,Grant,Rd,4705582,4.469,5.089,0,13.275293,5.8,4.5,1.376697,1.376697,1.376697,1.376697,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.381979,1.377163,1.376697,1.376697,1.381979,1.377163,1.378246,1.377945,1.376697,1.376697,1.378246,1.377945,1.379806,1.397298,1.376697,1.376697,1.379806,1.397298,1.376697,1.376697,1.376697,1.376697,1.376697,1.376697,,,,,,,1.381979,1.377163,1.378246,1.377945,1.379806,1.397298,1.376697,1.376697,1.376697,1.376697,0.526106,0.524661,0.524986,0.524896,0.525454,0.530702,0.524522,0.524522,0.274651,0.274651,26.896814,26.990861,26.969656,26.975546,26.939163,26.601934,27,27,27,27,,,,,,,,,,,2580,2580,1.376697,1.376697,1.376697,1.376697,1.376697,1.376697,1.376697,1.376697,0.524522,0.524522,27,27,, +24189,1,0.262122,2,0,0,2,4,DIV,4,2,Vining,Rd,4711341,1.514,1.776,0,5.616892,4.5,4.5,0.365751,,0.365751,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.36677,,0.365751,,0.36677,,0.366754,,0.365751,,0.366754,,0.374129,,0.365751,,0.374129,,0.365751,,0.365751,,0.365751,,,,,,,,0.36677,,0.366754,,0.374129,,0.365751,,0.365751,,0.157213,,0.157208,,0.159421,,0.156907,,0.083696,,42.880534,,42.882379,,42.037082,,43,,43,,,,,,,,,,,,6880,,0.365751,,0.365751,,0.365751,,0.365751,,0.156907,,43,,, +24411,0,0.58883,1,1,1,2,3,,4,2,Wayne,Rd,4719470,3.266,3.854,0,12.617796,3.7,5,0.883246,0.883246,0.883246,0.883246,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.991562,0.948357,0.883246,0.883246,0.991562,0.948357,0.893219,0.898656,0.883246,0.883246,0.893219,0.898656,1.016864,1.04031,0.883246,0.883246,1.016864,1.04031,0.883246,0.883246,0.883246,0.883246,0.883246,0.883246,,,,,,,0.991562,0.948357,0.893219,0.898656,1.016864,1.04031,0.883246,0.883246,0.883246,0.883246,0.403458,0.390497,0.373955,0.375586,0.411049,0.418082,0.370963,0.370963,0.197258,0.197258,35.63049,37.253707,39.553373,39.314068,34.743909,33.960879,40,40,40,40,,,,,,,,,,,4162,4162,0.883246,0.883246,0.883246,0.883246,0.883246,0.883246,0.883246,0.883246,0.370963,0.370963,40,40,, +24446,0,0.100669,1,1,1,2,4,,4,2,Goddard,Rd,4710500,0.238,0.339,0,2.157193,4.5,4.5,0.158951,0.158951,0.158951,0.158951,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.167388,0.158961,0.158951,0.158951,0.167388,0.158961,0.159003,0.158953,0.158951,0.158951,0.159003,0.158953,0.159186,0.161608,0.158951,0.158951,0.159186,0.161608,0.158951,0.158951,0.158951,0.158951,0.158951,0.158951,,,,,,,0.167388,0.158961,0.159003,0.158953,0.159186,0.161608,0.158951,0.158951,0.158951,0.158951,0.068337,0.065809,0.065821,0.065806,0.065876,0.066603,0.065806,0.065806,0.034916,0.034916,36.084638,37.997687,37.987546,37.999514,37.943909,37.375287,38,38,38,38,,,,,,,,,,,3406,3406,0.158951,0.158951,0.158951,0.158951,0.158951,0.158951,0.158951,0.158951,0.065806,0.065806,38,38,, +31647,0,1.015986,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.771133,0.15,4,4.063945,4.063945,4.063945,4.063945,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,,,,,,,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,1.402061,1.402061,1.402061,1.402061,1.402061,1.402061,1.402061,1.402061,0.72135,0.72135,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,4.063945,1.402061,1.402061,15,15,, +31649,0,0.460418,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.866102,0.15,4,1.841672,1.841672,1.841672,1.841672,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,,,,,,,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,0.635377,0.635377,0.635377,0.635377,0.635377,0.635377,0.635377,0.635377,0.326897,0.326897,15,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,1.841672,0.635377,0.635377,15,15,, +31652,0,0.400878,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.590253,0.15,4,1.603514,1.603514,1.603514,1.603514,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,,,,,,,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,0.553212,0.553212,0.553212,0.553212,0.553212,0.553212,0.553212,0.553212,0.284624,0.284624,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,1.603514,0.553212,0.553212,15,15,, +31656,0,0.616671,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.214379,0.15,4,2.466684,2.466684,2.466684,2.466684,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,,,,,,,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,0.851006,0.851006,0.851006,0.851006,0.851006,0.851006,0.851006,0.851006,0.437836,0.437836,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,2.466684,0.851006,0.851006,15,15,, +10729,1,0.355849,3,0,0,1,1,,4,2,E I 94,,1576405,6.799,7.155,0,,0.8,7.5,0.305013,,0.305013,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.315153,,0.305013,,0.315153,,0.305045,,0.305013,,0.305045,,0.306074,,0.305013,,0.306074,,0.305013,,0.305013,,0.305013,,,,,,,,0.315153,,0.305045,,0.306074,,0.305013,,0.305013,,0.158599,,0.155566,,0.155875,,0.155557,,0.084895,,67.747807,,69.992615,,69.757415,,70,,70,,,,,,,,,,,,22704,,0.305013,,0.305013,,0.305013,,0.305013,,0.155557,,70,,, +10956,1,0.383112,3,0,0,1,1,,4,2,E I 94,,1576405,6.417,6.799,0,,0.8,7.5,0.328381,,0.328381,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.349303,,0.328381,,0.349303,,0.328428,,0.328381,,0.328428,,0.330322,,0.328381,,0.330322,,0.328381,,0.328381,,0.328381,,,,,,,,0.349303,,0.328428,,0.330322,,0.328381,,0.328381,,0.173751,,0.167489,,0.168057,,0.167475,,0.0914,,65.807268,,69.990095,,69.58883,,70,,70,,,,,,,,,,,,22704,,0.328381,,0.328381,,0.328381,,0.328381,,0.167475,,70,,, +11074,1,0.581948,1,0,0,1,1,RFF,4,2,S I 275/E I 94,RAMP,1576605,0,0.582,0,,0.8,7.5,0.537183,,0.537183,,65,,21000,,4767,,10500,,6775,,7224,,7216,,0.554261,,0.537183,,0.554261,,0.538127,,0.537183,,0.538127,,0.55391,,0.537183,,0.55391,,0.537183,,0.537183,,0.537183,,,,,,,,0.554261,,0.538127,,0.55391,,0.537183,,0.537183,,0.271029,,0.266189,,0.270924,,0.265905,,0.144592,,62.997167,,64.885925,,63.037072,,65,,65,,,,,,,,,,,,7224,,0.537183,,0.537183,,0.537183,,0.537183,,0.265905,,65,,, +12165,-1,0.080097,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0,0.08,0,,0.8,7.5,,0.073936,,0.073936,,65,,21000,,4767,,10500,,6775,,7224,,7216,,0.077937,,0.073936,,0.077937,,0.073949,,0.073936,,0.073949,,0.081405,,0.073936,,0.081405,,0.073936,,0.073936,,0.073936,,,,,,,,0.077937,,0.073949,,0.081405,,0.073936,,0.073936,,0.037799,,0.036602,,0.038839,,0.036598,,0.019901,,61.66273,,64.987977,,59.036251,,65,,65,,,,,,,,,,,,7224,,0.073936,,0.073936,,0.073936,,0.073936,,0.036598,,65,, +13299,1,0.42701,2,0,0,1,1,RFF,4,2,N I 275/E I 94,RAMP,1578402,0,0.427,0,,0.8,7.5,0.394163,,0.394163,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.394163,,0.394163,,0.394163,,0.394163,,0.394163,,0.394163,,0.394163,,0.394163,,0.394163,,0.394163,,0.394163,,0.394163,,,,,,,,0.394163,,0.394163,,0.394163,,0.394163,,0.394163,,0.195111,,0.195111,,0.195111,,0.195111,,0.106096,,64.999992,,65,,64.999998,,65,,65,,,,,,,,,,,,14448,,0.394163,,0.394163,,0.394163,,0.394163,,0.195111,,65,,, +13383,-1,0.307137,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.463,0.77,0,,0.8,7.5,,0.283511,,0.283511,,65,,21000,,4767,,10500,,6775,,7224,,7216,,0.283512,,0.283511,,0.283512,,0.283512,,0.283511,,0.283512,,0.283522,,0.283511,,0.283522,,0.283511,,0.283511,,0.283511,,,,,,,,0.283512,,0.283512,,0.283522,,0.283511,,0.283511,,0.140338,,0.140338,,0.140341,,0.140338,,0.076312,,64.999968,,64.999952,,64.997502,,65,,65,,,,,,,,,,,,7224,,0.283511,,0.283511,,0.283511,,0.283511,,0.140338,,65,, +13970,1,0.53245,1,0,0,1,1,RFF,4,2,W I 94/N I 275,RAMP,1589401,0,0.532,0,,0.8,7.5,0.491493,,0.491493,,65,,21000,,4767,,10500,,6775,,7224,,7216,,0.492331,,0.491493,,0.492331,,0.491854,,0.491493,,0.491854,,0.524929,,0.491493,,0.524929,,0.491493,,0.491493,,0.491493,,,,,,,,0.492331,,0.491854,,0.524929,,0.491493,,0.491493,,0.24354,,0.243397,,0.25332,,0.243289,,0.132293,,64.889296,,64.952308,,60.859753,,65,,65,,,,,,,,,,,,7224,,0.491493,,0.491493,,0.491493,,0.491493,,0.243289,,65,,, +14075,-1,0.928778,0,3,0,1,1,,4,2,W I 94,,1588802,6.363,7.291,0,,0.8,7.5,,0.796095,,0.796095,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.800299,,0.796095,,0.800299,,0.796177,,0.796095,,0.796177,,0.808004,,0.796095,,0.808004,,0.796095,,0.796095,,0.796095,,,,,,,,0.800299,,0.796177,,0.808004,,0.796095,,0.796095,,0.40727,,0.406033,,0.409581,,0.406008,,0.22158,,69.632336,,69.992798,,68.968267,,70,,70,,,,,,,,,,,,22704,,0.796095,,0.796095,,0.796095,,0.796095,,0.406008,,70,, +14182,1,0.249996,1,0,0,1,1,RFS,4,2,N I 275/W I 94,RAMP,1589310,0,0.25,0,,0.22,6,0.333328,,0.333328,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.366718,,0.333328,,0.366718,,0.333632,,0.333328,,0.333632,,0.339176,,0.333328,,0.339176,,0.333328,,0.333328,,0.333328,,,,,,,,0.366718,,0.333632,,0.339176,,0.333328,,0.333328,,0.155015,,0.145089,,0.146752,,0.144998,,0.077499,,40.90269,,44.959055,,44.224072,,45,,45,,,,,,,,,,,,5160,,0.333328,,0.333328,,0.333328,,0.333328,,0.144998,,45,,, +16442,-1,0.354135,0,3,0,1,1,,4,2,S I 275,,1607610,9.254,9.608,0,,0.8,7.5,,0.303544,,0.303544,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.303565,,0.303544,,0.303565,,0.303547,,0.303544,,0.303547,,0.30388,,0.303544,,0.30388,,0.303544,,0.303544,,0.303544,,,,,,,,0.303565,,0.303547,,0.30388,,0.303544,,0.303544,,0.154814,,0.154808,,0.154908,,0.154808,,0.084486,,69.995184,,69.999484,,69.922562,,70,,70,,,,,,,,,,,,22704,,0.303544,,0.303544,,0.303544,,0.303544,,0.154808,,70,, +16497,1,1.125024,3,0,0,1,1,,4,2,N I 275,,1607208,8.89,10.015,0,,0.8,7.5,0.964307,,0.964307,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.964889,,0.964307,,0.964889,,0.964308,,0.964307,,0.964308,,0.964344,,0.964307,,0.964344,,0.964307,,0.964307,,0.964307,,,,,,,,0.964889,,0.964308,,0.964344,,0.964307,,0.964307,,0.491971,,0.491797,,0.491808,,0.491796,,0.268399,,69.957776,,69.9999,,69.997279,,70,,70,,,,,,,,,,,,22704,,0.964307,,0.964307,,0.964307,,0.964307,,0.491796,,70,,, +17629,1,0.132795,3,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.588,0.721,0,,0.8,7.5,0.12258,,0.12258,,65,,63000,,14301,,31500,,20324,,21672,,21647,,0.122585,,0.12258,,0.122585,,0.12258,,0.12258,,0.12258,,0.12258,,0.12258,,0.12258,,0.12258,,0.12258,,0.12258,,,,,,,,0.122585,,0.12258,,0.12258,,0.12258,,0.12258,,0.060679,,0.060677,,0.060677,,0.060677,,0.032994,,64.997098,,64.999997,,64.999769,,65,,65,,,,,,,,,,,,21672,,0.12258,,0.12258,,0.12258,,0.12258,,0.060677,,65,,, +17850,0,0.200584,1,1,0,2,4,,4,2,Hannan,Rd,1710309,4.309,4.51,0,4.298228,4.5,4.5,0.316712,0.316712,0.316712,0.316712,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.351104,0.31688,0.316712,0.316712,0.351104,0.31688,0.319506,0.316811,0.316712,0.316712,0.319506,0.316811,0.344114,0.321892,0.316712,0.316712,0.344114,0.321892,0.316712,0.316712,0.316712,0.316712,0.316712,0.316712,,,,,,,0.351104,0.31688,0.319506,0.316811,0.344114,0.321892,0.316712,0.316712,0.316712,0.316712,0.141436,0.131169,0.131957,0.131148,0.139339,0.132673,0.131119,0.131119,0.069571,0.069571,34.277703,37.979777,37.667593,37.988112,34.973986,37.388457,38,38,38,38,,,,,,,,,,,3096,3096,0.316712,0.316712,0.316712,0.316712,0.316712,0.316712,0.316712,0.316712,0.131119,0.131119,38,38,, +17851,1,0.360611,3,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.228,0.588,0,,0.8,7.5,0.332872,,0.332872,,65,,63000,,14301,,31500,,20324,,21672,,21647,,0.332874,,0.332872,,0.332874,,0.332872,,0.332872,,0.332872,,0.332872,,0.332872,,0.332872,,0.332872,,0.332872,,0.332872,,,,,,,,0.332874,,0.332872,,0.332872,,0.332872,,0.332872,,0.164772,,0.164772,,0.164772,,0.164772,,0.089598,,64.999588,,64.999999,,64.999953,,65,,65,,,,,,,,,,,,21672,,0.332872,,0.332872,,0.332872,,0.332872,,0.164772,,65,,, +18061,0,0.503197,1,1,0,2,5,,4,2,Wabash,Rd,1665908,0.492,0.995,0,10.782803,5.8,4.5,1.118217,1.118217,1.118217,1.118217,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.119395,1.118217,1.118217,1.118217,1.119395,1.118217,1.118217,1.118217,1.118217,1.118217,1.118217,1.118217,1.118217,1.118252,1.118217,1.118217,1.118217,1.118252,1.118217,1.118217,1.118217,1.118217,1.118217,1.118217,,,,,,,1.119395,1.118217,1.118217,1.118217,1.118217,1.118252,1.118217,1.118217,1.118217,1.118217,0.426394,0.426041,0.426041,0.426041,0.426041,0.426051,0.426041,0.426041,0.223084,0.223084,26.971579,27,27,27,27,26.999145,27,27,27,27,,,,,,,,,,,2580,2580,1.118217,1.118217,1.118217,1.118217,1.118217,1.118217,1.118217,1.118217,0.426041,0.426041,27,27,, +18651,0,0.498183,1,1,0,2,4,,4,2,Wick,Rd,1682705,0,0.498,0,10.675351,4.5,4.5,0.786605,0.786605,0.786605,0.786605,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.786847,0.788224,0.786605,0.786605,0.786847,0.788224,0.78679,0.786832,0.786605,0.786605,0.78679,0.786832,0.788943,0.787036,0.786605,0.786605,0.788943,0.787036,0.786605,0.786605,0.786605,0.786605,0.786605,0.786605,,,,,,,0.786847,0.788224,0.78679,0.786832,0.788943,0.787036,0.786605,0.786605,0.786605,0.786605,0.325727,0.32614,0.32571,0.325723,0.326356,0.325784,0.325654,0.325654,0.172791,0.172791,37.988287,37.921961,37.991073,37.98902,37.887383,37.97917,38,38,38,38,,,,,,,,,,,3096,3096,0.786605,0.786605,0.786605,0.786605,0.786605,0.786605,0.786605,0.786605,0.325654,0.325654,38,38,, +18652,0,0.822266,1,1,0,2,4,,4,2,Ozga,Rd,1673810,8.566,9.388,0,17.61998,4.5,4.5,1.298314,1.298314,1.298314,1.298314,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.320485,1.312204,1.298314,1.298314,1.320485,1.312204,1.299357,1.302893,1.298314,1.298314,1.299357,1.302893,1.305234,1.354357,1.298314,1.298314,1.305234,1.354357,1.298314,1.298314,1.298314,1.298314,1.298314,1.298314,,,,,,,1.320485,1.312204,1.299357,1.302893,1.305234,1.354357,1.298314,1.298314,1.298314,1.298314,0.544153,0.541669,0.537815,0.538876,0.539578,0.554315,0.537502,0.537502,0.285196,0.285196,37.361976,37.597765,37.969516,37.86646,37.798531,36.427566,38,38,38,38,,,,,,,,,,,3096,3096,1.298314,1.298314,1.298314,1.298314,1.298314,1.298314,1.298314,1.298314,0.537502,0.537502,38,38,, +18908,0,0.504545,1,1,0,2,5,,4,2,Tyler,Rd,1682704,0.497,1.002,0,10.811682,5.8,4.5,1.121211,1.121211,1.121211,1.121211,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.122095,1.121636,1.121211,1.121211,1.122095,1.121636,1.121344,1.121419,1.121211,1.121211,1.121344,1.121419,1.121994,1.122735,1.121211,1.121211,1.121994,1.122735,1.121211,1.121211,1.121211,1.121211,1.121211,1.121211,,,,,,,1.122095,1.121636,1.121344,1.121419,1.121994,1.122735,1.121211,1.121211,1.121211,1.121211,0.427447,0.427309,0.427221,0.427244,0.427416,0.427639,0.427182,0.427182,0.223682,0.223682,26.978746,26.989791,26.996811,26.994998,26.981162,26.963356,27,27,27,27,,,,,,,,,,,2580,2580,1.121211,1.121211,1.121211,1.121211,1.121211,1.121211,1.121211,1.121211,0.427182,0.427182,27,27,, +19227,0,0.571418,1,1,0,2,4,,4,2,Northline,Rd,1811006,7.193,7.764,0,12.244666,4.5,4.5,0.902239,0.902239,0.902239,0.902239,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.902828,0.902827,0.902239,0.902239,0.902828,0.902827,0.902277,0.902326,0.902239,0.902239,0.902277,0.902326,0.902393,0.90258,0.902239,0.902239,0.902393,0.90258,0.902239,0.902239,0.902239,0.902239,0.902239,0.902239,,,,,,,0.902828,0.902827,0.902277,0.902326,0.902393,0.90258,0.902239,0.902239,0.902239,0.902239,0.373704,0.373703,0.373538,0.373553,0.373573,0.373629,0.373527,0.373527,0.198192,0.198192,37.97518,37.975238,37.998372,37.996329,37.993488,37.985621,38,38,38,38,,,,,,,,,,,3096,3096,0.902239,0.902239,0.902239,0.902239,0.902239,0.902239,0.902239,0.902239,0.373527,0.373527,38,38,, +22913,0,0.384842,1,1,0,2,4,,4,2,Huron River,Dr,4705582,4.001,4.386,0,8.246625,4.5,4.5,0.607646,0.607646,0.607646,0.607646,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.621519,0.607947,0.607646,0.607646,0.621519,0.607947,0.608099,0.608091,0.607646,0.607646,0.608099,0.608091,0.609183,0.635429,0.607646,0.607646,0.609183,0.635429,0.607646,0.607646,0.607646,0.607646,0.607646,0.607646,,,,,,,0.621519,0.607947,0.608099,0.608091,0.609183,0.635429,0.607646,0.607646,0.607646,0.607646,0.255727,0.251656,0.251701,0.251699,0.252027,0.2599,0.251565,0.251565,0.13348,0.13348,37.151794,37.981172,37.971684,37.972171,37.904135,36.338502,38,38,38,38,,,,,,,,,,,3096,3096,0.607646,0.607646,0.607646,0.607646,0.607646,0.607646,0.607646,0.607646,0.251565,0.251565,38,38,, +23527,0,0.468866,1,1,1,2,4,,4,2,Goddard,Rd,4706477,0,0.469,0,10.047131,4.5,4.5,0.740315,0.740315,0.740315,0.740315,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.779611,0.74036,0.740315,0.740315,0.779611,0.74036,0.740558,0.740324,0.740315,0.740315,0.740558,0.740324,0.741409,0.752689,0.740315,0.740315,0.741409,0.752689,0.740315,0.740315,0.740315,0.740315,0.740315,0.740315,,,,,,,0.779611,0.74036,0.740558,0.740324,0.741409,0.752689,0.740315,0.740315,0.740315,0.740315,0.318279,0.306504,0.306563,0.306493,0.306819,0.310203,0.30649,0.30649,0.162623,0.162623,36.084638,37.997687,37.987546,37.999514,37.943909,37.375287,38,38,38,38,,,,,,,,,,,3406,3406,0.740315,0.740315,0.740315,0.740315,0.740315,0.740315,0.740315,0.740315,0.30649,0.30649,38,38,, +24289,1,0.275064,1,0,0,1,1,RFS,4,2,E I 94/N I 275,RAMP,4710287,0,0.275,0,,0.22,6,0.366752,,0.366752,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.366778,,0.366752,,0.366778,,0.366752,,0.366752,,0.366752,,0.366753,,0.366752,,0.366753,,0.366752,,0.366752,,0.366752,,,,,,,,0.366778,,0.366752,,0.366753,,0.366752,,0.366752,,0.159545,,0.159537,,0.159538,,0.159537,,0.08527,,44.99688,,45,,44.999857,,45,,45,,,,,,,,,,,,5160,,0.366752,,0.366752,,0.366752,,0.366752,,0.159537,,45,,, +31644,0,0.646237,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.847937,0.15,4,2.584948,2.584948,2.584948,2.584948,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,,,,,,,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,0.891807,0.891807,0.891807,0.891807,0.891807,0.891807,0.891807,0.891807,0.458828,0.458828,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,2.584948,0.891807,0.891807,15,15,, +31645,0,0.810163,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.360639,0.15,4,3.240653,3.240653,3.240653,3.240653,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,,,,,,,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,1.118025,1.118025,1.118025,1.118025,1.118025,1.118025,1.118025,1.118025,0.575216,0.575216,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,3.240653,1.118025,1.118025,15,15,, +18469,0,0.491838,1,1,0,2,5,,4,2,Wabash,Rd,1665908,0,0.492,0,10.539377,5.8,4.5,1.092972,1.092972,1.092972,1.092972,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,,,,,,,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,0.416422,0.416422,0.416422,0.416422,0.416422,0.416422,0.416422,0.416422,0.218048,0.218048,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,1.092972,0.416422,0.416422,27,27,, +18802,0,0.495167,1,1,0,2,5,,4,2,Hannan,Rd,1710309,3.491,3.986,0,10.610731,5.8,4.5,1.100372,1.100372,1.100372,1.100372,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.101717,1.100556,1.100372,1.100372,1.101717,1.100556,1.100593,1.10044,1.100372,1.100372,1.100593,1.10044,1.101009,1.100892,1.100372,1.100372,1.101009,1.100892,1.100372,1.100372,1.100372,1.100372,1.100372,1.100372,,,,,,,1.101717,1.100556,1.100593,1.10044,1.101009,1.100892,1.100372,1.100372,1.100372,1.100372,0.419645,0.419297,0.419308,0.419262,0.419433,0.419398,0.419242,0.419242,0.219524,0.219524,26.967029,26.995477,26.994581,26.998343,26.984393,26.987251,27,27,27,27,,,,,,,,,,,2580,2580,1.100372,1.100372,1.100372,1.100372,1.100372,1.100372,1.100372,1.100372,0.419242,0.419242,27,27,, +19229,1,0.567589,2,0,0,2,4,DV2,4,2,Northline,Rd,1811006,6.588,7.156,0,12.162612,4.5,4.5,0.896192,,0.896192,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.896325,,0.896192,,0.896325,,0.896193,,0.896192,,0.896193,,0.896196,,0.896192,,0.896196,,0.896192,,0.896192,,0.896192,,,,,,,,0.896325,,0.896193,,0.896196,,0.896192,,0.896192,,0.371063,,0.371024,,0.371025,,0.371024,,0.196864,,37.994395,,37.999991,,37.999858,,38,,38,,,,,,,,,,,,6192,,0.896192,,0.896192,,0.896192,,0.896192,,0.371024,,38,,, +23205,0,0.524242,1,1,0,2,4,,4,2,Huron River,Dr,4705582,3.477,4.001,0,11.233767,4.5,4.5,0.827751,0.827751,0.827751,0.827751,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.834742,0.828478,0.827751,0.827751,0.834742,0.828478,0.829146,0.82842,0.827751,0.827751,0.829146,0.82842,0.830711,0.836643,0.827751,0.827751,0.830711,0.836643,0.827751,0.827751,0.827751,0.827751,0.827751,0.827751,,,,,,,0.834742,0.828478,0.829146,0.82842,0.830711,0.836643,0.827751,0.827751,0.827751,0.827751,0.344786,0.342907,0.343107,0.34289,0.343577,0.345357,0.342689,0.342689,0.181829,0.181829,37.681763,37.966651,37.936087,37.969312,37.864592,37.596145,38,38,38,38,,,,,,,,,,,3096,3096,0.827751,0.827751,0.827751,0.827751,0.827751,0.827751,0.827751,0.827751,0.342689,0.342689,38,38,, +24534,-1,0.573651,0,2,0,2,4,DV2,4,2,Northline,Rd,4708332,0.143,0.716,0,12.292529,4.5,4.5,,0.905765,,0.905765,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.905779,,0.905765,,0.905779,,0.905769,,0.905765,,0.905769,,0.905978,,0.905765,,0.905978,,0.905765,,0.905765,,0.905765,,,,,,,,0.905779,,0.905769,,0.905978,,0.905765,,0.905765,,0.374991,,0.374988,,0.375051,,0.374987,,0.198966,,37.999407,,37.999861,,37.991087,,38,,38,,,,,,,,,,,,6192,,0.905765,,0.905765,,0.905765,,0.905765,,0.374987,,38,, +18347,0,0.312619,1,1,0,2,4,,4,2,Hannan,Rd,1710309,3.986,4.298,0,6.698977,4.5,4.5,0.493609,0.493609,0.493609,0.493609,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.505836,0.493639,0.493609,0.493609,0.505836,0.493639,0.494218,0.493624,0.493609,0.493609,0.494218,0.493624,0.494932,0.495498,0.493609,0.493609,0.494932,0.495498,0.493609,0.493609,0.493609,0.493609,0.493609,0.493609,,,,,,,0.505836,0.493639,0.494218,0.493624,0.494932,0.495498,0.493609,0.493609,0.493609,0.493609,0.208022,0.204363,0.204537,0.204359,0.204751,0.204921,0.204354,0.204354,0.108429,0.108429,37.081437,37.997662,37.953133,37.998824,37.898375,37.855094,38,38,38,38,,,,,,,,,,,3096,3096,0.493609,0.493609,0.493609,0.493609,0.493609,0.493609,0.493609,0.493609,0.204354,0.204354,38,38,, +19230,1,0.143088,2,0,0,2,5,DV2,4,2,South Service,Rd,1811006,6.445,6.588,0,3.066161,5.8,4.5,0.317972,,0.317972,,27,,15000,,3405,,7500,,4839,,5160,,5154,,0.318009,,0.317972,,0.318009,,0.317972,,0.317972,,0.317972,,0.317972,,0.317972,,0.317972,,0.317972,,0.317972,,0.317972,,,,,,,,0.318009,,0.317972,,0.317972,,0.317972,,0.317972,,0.121158,,0.121147,,0.121147,,0.121147,,0.063435,,26.996869,,27,,27,,27,,27,,,,,,,,,,,,5160,,0.317972,,0.317972,,0.317972,,0.317972,,0.121147,,27,,, +24535,-1,0.142736,0,2,0,2,5,DV2,4,2,South Service,Rd,4708332,0,0.143,0,3.058623,5.8,4.5,,0.31719,,0.31719,,27,,15000,,3405,,7500,,4839,,5160,,5154,,0.31719,,0.31719,,0.31719,,0.31719,,0.31719,,0.31719,,0.31719,,0.31719,,0.31719,,0.31719,,0.31719,,0.31719,,,,,,,,0.31719,,0.31719,,0.31719,,0.31719,,0.31719,,0.12085,,0.12085,,0.12085,,0.12085,,0.06328,,27,,27,,27,,27,,27,,,,,,,,,,,,5160,,0.31719,,0.31719,,0.31719,,0.31719,,0.12085,,27,, +18054,0,0.011185,1,1,0,2,4,,4,2,Hannan,Rd,1710309,4.298,4.309,0,0.239687,4.5,4.5,0.017661,0.017661,0.017661,0.017661,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.018099,0.017671,0.017661,0.017661,0.018099,0.017671,0.017683,0.017667,0.017661,0.017661,0.017683,0.017667,0.017708,0.01795,0.017661,0.017661,0.017708,0.01795,0.017661,0.017661,0.017661,0.017661,0.017661,0.017661,,,,,,,0.018099,0.017671,0.017683,0.017667,0.017708,0.01795,0.017661,0.017661,0.017661,0.017661,0.007443,0.007315,0.007318,0.007313,0.007326,0.007398,0.007312,0.007312,0.00388,0.00388,37.081437,37.979777,37.953133,37.988112,37.898375,37.388457,38,38,38,38,,,,,,,,,,,3096,3096,0.017661,0.017661,0.017661,0.017661,0.017661,0.017661,0.017661,0.017661,0.007312,0.007312,38,38,, +11252,1,0.476623,1,0,0,1,1,RFF,4,2,E I 94/S I 275,RAMP,1576509,0,0.477,0,,0.8,7.5,0.43996,,0.43996,,65,,21000,,4767,,10500,,6775,,7224,,7216,,0.441691,,0.43996,,0.441691,,0.439996,,0.43996,,0.439996,,0.447988,,0.43996,,0.447988,,0.43996,,0.43996,,0.43996,,,,,,,,0.441691,,0.439996,,0.447988,,0.43996,,0.43996,,0.218299,,0.217791,,0.220189,,0.21778,,0.118423,,64.74526,,64.994708,,63.835184,,65,,65,,,,,,,,,,,,7224,,0.43996,,0.43996,,0.43996,,0.43996,,0.21778,,65,,, +19228,0,0.037474,2,2,0,2,4,,4,2,Northline,Rd,1811006,7.156,7.193,0,0.803007,4.5,4.5,0.059169,0.059169,0.059169,0.059169,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.059178,0.05917,0.059169,0.059169,0.059178,0.05917,0.059169,0.059169,0.059169,0.059169,0.059169,0.059169,0.059169,0.059183,0.059169,0.059169,0.059169,0.059183,0.059169,0.059169,0.059169,0.059169,0.059169,0.059169,,,,,,,0.059178,0.05917,0.059169,0.059169,0.059169,0.059183,0.059169,0.059169,0.059169,0.059169,0.024499,0.024496,0.024496,0.024496,0.024496,0.0245,0.024496,0.024496,0.012997,0.012997,37.994395,37.999407,37.999991,37.999861,37.999858,37.991087,38,38,38,38,,,,,,,,,,,6192,6192,0.059169,0.059169,0.059169,0.059169,0.059169,0.059169,0.059169,0.059169,0.024496,0.024496,38,38,, +13364,1,0.44942,2,0,0,1,1,RFF,4,2,S I 275/W I 94,RAMP,1578309,0,0.449,0,,0.8,7.5,0.414849,,0.414849,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.415009,,0.414849,,0.415009,,0.414857,,0.414849,,0.414857,,0.415993,,0.414849,,0.415993,,0.414849,,0.414849,,0.414849,,,,,,,,0.415009,,0.414857,,0.415993,,0.414849,,0.414849,,0.205398,,0.205353,,0.205693,,0.20535,,0.111663,,64.974978,,64.998767,,64.821279,,65,,65,,,,,,,,,,,,14448,,0.414849,,0.414849,,0.414849,,0.414849,,0.20535,,65,,, +16694,-1,0.560615,0,3,0,1,1,,4,2,S I 275,,1607610,9.608,10.168,0,,0.8,7.5,,0.480527,,0.480527,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.480536,,0.480527,,0.480536,,0.480528,,0.480527,,0.480528,,0.480624,,0.480527,,0.480624,,0.480527,,0.480527,,0.480527,,,,,,,,0.480536,,0.480528,,0.480624,,0.480527,,0.480527,,0.245072,,0.245069,,0.245098,,0.245069,,0.133747,,69.99875,,69.99993,,69.985901,,70,,70,,,,,,,,,,,,22704,,0.480527,,0.480527,,0.480527,,0.480527,,0.245069,,70,, +17536,0,0.883489,1,1,0,2,4,,4,2,Hannan,Rd,1710309,4.51,5.393,0,18.931904,4.5,4.5,1.394982,1.394982,1.394982,1.394982,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.551484,1.395733,1.394982,1.394982,1.551484,1.395733,1.401547,1.395501,1.394982,1.394982,1.401547,1.395501,1.421364,1.453002,1.394982,1.394982,1.421364,1.453002,1.394982,1.394982,1.394982,1.394982,1.394982,1.394982,,,,,,,1.551484,1.395733,1.401547,1.395501,1.421364,1.453002,1.394982,1.394982,1.394982,1.394982,0.624473,0.577748,0.579492,0.577678,0.585437,0.594929,0.577523,0.577523,0.306431,0.306431,34.166865,37.979557,37.822012,37.985866,37.294698,36.482618,38,38,38,38,,,,,,,,,,,3096,3096,1.394982,1.394982,1.394982,1.394982,1.394982,1.394982,1.394982,1.394982,0.577523,0.577523,38,38,, +19007,0,0.497499,1,1,0,2,4,,4,2,Tyler,Rd,1682704,0,0.497,0,10.660702,4.5,4.5,0.785525,0.785525,0.785525,0.785525,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.789109,0.795665,0.785525,0.785525,0.789109,0.795665,0.787122,0.787577,0.785525,0.785525,0.787122,0.787577,0.799205,0.792594,0.785525,0.785525,0.799205,0.792594,0.785525,0.785525,0.785525,0.785525,0.785525,0.785525,,,,,,,0.789109,0.795665,0.787122,0.787577,0.799205,0.792594,0.785525,0.785525,0.785525,0.785525,0.326283,0.328249,0.325686,0.325823,0.329311,0.327328,0.325208,0.325208,0.172554,0.172554,37.827445,37.515755,37.922937,37.900997,37.349575,37.661107,38,38,38,38,,,,,,,,,,,3096,3096,0.785525,0.785525,0.785525,0.785525,0.785525,0.785525,0.785525,0.785525,0.325208,0.325208,38,38,, +19135,0,0.035278,1,1,0,2,4,,4,2,Hannan,Rd,1710309,5.393,5.428,0,0.755954,4.5,4.5,0.055702,0.055702,0.055702,0.055702,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.093734,0.056743,0.055702,0.055702,0.093734,0.056743,0.059081,0.056516,0.055702,0.055702,0.059081,0.056516,0.066411,0.079517,0.055702,0.055702,0.066411,0.079517,0.055702,0.055702,0.055702,0.055702,0.055702,0.055702,,,,,,,0.093734,0.056743,0.059081,0.056516,0.066411,0.079517,0.055702,0.055702,0.055702,0.055702,0.03447,0.023373,0.024074,0.023305,0.026273,0.030205,0.023061,0.023061,0.012236,0.012236,22.581808,37.303017,35.826765,37.452789,31.872314,26.618958,38,38,38,38,,,,,,,,,,,3096,3096,0.055702,0.055702,0.055702,0.055702,0.055702,0.055702,0.055702,0.055702,0.023061,0.023061,38,38,, +13384,-1,0.229184,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.08,0.309,0,,0.8,7.5,,0.211555,,0.211555,,65,,21000,,4767,,10500,,6775,,7224,,7216,,0.21663,,0.211555,,0.21663,,0.211569,,0.211555,,0.211569,,0.21213,,0.211555,,0.21213,,0.211555,,0.211555,,0.211555,,,,,,,,0.21663,,0.211569,,0.21213,,0.211555,,0.211555,,0.106242,,0.104724,,0.104892,,0.10472,,0.056943,,63.477166,,64.995623,,64.823864,,65,,65,,,,,,,,,,,,7224,,0.211555,,0.211555,,0.211555,,0.211555,,0.10472,,65,, +14441,1,0.267169,1,0,0,1,1,RFS,4,2,W I 94/S I 275,RAMP,1589308,0,0.267,0,,0.22,6,0.356225,,0.356225,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.356232,,0.356225,,0.356232,,0.356234,,0.356225,,0.356234,,0.356433,,0.356225,,0.356433,,0.356225,,0.356225,,0.356225,,,,,,,,0.356232,,0.356234,,0.356433,,0.356225,,0.356225,,0.15496,,0.154961,,0.15502,,0.154958,,0.082822,,44.999202,,44.998885,,44.973843,,45,,45,,,,,,,,,,,,5160,,0.356225,,0.356225,,0.356225,,0.356225,,0.154958,,45,,, +18938,1,0.148505,1,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.976,1.125,0,,0.8,7.5,0.137081,,0.137081,,65,,21000,,4767,,10500,,6775,,7224,,7216,,0.140379,,0.137081,,0.140379,,0.137283,,0.137081,,0.137283,,0.164531,,0.137081,,0.164531,,0.137081,,0.137081,,0.137081,,,,,,,,0.140379,,0.137283,,0.164531,,0.137081,,0.137081,,0.068845,,0.067916,,0.07609,,0.067855,,0.036898,,63.472926,,64.90464,,54.15568,,65,,65,,,,,,,,,,,,7224,,0.137081,,0.137081,,0.137081,,0.137081,,0.067855,,65,,, +19136,1,0.255354,3,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.721,0.976,0,,0.8,7.5,0.235712,,0.235712,,65,,63000,,14301,,31500,,20324,,21672,,21647,,0.235712,,0.235712,,0.235712,,0.235712,,0.235712,,0.235712,,0.235712,,0.235712,,0.235712,,0.235712,,0.235712,,0.235712,,,,,,,,0.235712,,0.235712,,0.235712,,0.235712,,0.235712,,0.116677,,0.116677,,0.116677,,0.116677,,0.063446,,65,,65,,65,,65,,65,,,,,,,,,,,,21672,,0.235712,,0.235712,,0.235712,,0.235712,,0.116677,,65,,, +12967,1,0.210806,2,0,0,1,1,RFF,4,2,S I 275/W I 94,RAMP,1578309,0.449,0.66,0,,0.8,7.5,0.19459,,0.19459,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.19459,,0.19459,,0.19459,,0.19459,,0.19459,,0.19459,,0.19459,,0.19459,,0.19459,,0.19459,,0.19459,,0.19459,,,,,,,,0.19459,,0.19459,,0.19459,,0.19459,,0.19459,,0.096322,,0.096322,,0.096322,,0.096322,,0.052377,,65,,65,,64.999973,,65,,65,,,,,,,,,,,,14448,,0.19459,,0.19459,,0.19459,,0.19459,,0.096322,,65,,, +12164,-1,0.153971,0,2,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.309,0.463,0,,0.8,7.5,,0.142127,,0.142127,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.14222,,0.142127,,0.14222,,0.142129,,0.142127,,0.142129,,0.142189,,0.142127,,0.142189,,0.142127,,0.142127,,0.142127,,,,,,,,0.14222,,0.142129,,0.142189,,0.142127,,0.142127,,0.070381,,0.070353,,0.070372,,0.070353,,0.038256,,64.957573,,64.999358,,64.971693,,65,,65,,,,,,,,,,,,14448,,0.142127,,0.142127,,0.142127,,0.142127,,0.070353,,65,, +18101,0,0.225797,1,1,0,2,4,,4,2,Cogswell,Rd,1665704,0,0.226,0,4.838517,4.5,4.5,0.356522,0.356522,0.356522,0.356522,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.356575,0.357142,0.356522,0.356522,0.356575,0.357142,0.356585,0.356592,0.356522,0.356522,0.356585,0.356592,0.357216,0.356643,0.356522,0.356522,0.357216,0.356643,0.356522,0.356522,0.356522,0.356522,0.356522,0.356522,,,,,,,0.356575,0.357142,0.356585,0.356592,0.357216,0.356643,0.356522,0.356522,0.356522,0.356522,0.147616,0.147786,0.147619,0.147621,0.147808,0.147636,0.1476,0.1476,0.078316,0.078316,37.994382,37.934078,37.99327,37.992547,37.926186,37.98715,38,38,38,38,,,,,,,,,,,3096,3096,0.356522,0.356522,0.356522,0.356522,0.356522,0.356522,0.356522,0.356522,0.1476,0.1476,38,38,, +18214,0,0.196055,1,1,0,2,4,,4,2,Huron River,Dr,1673810,8.244,8.44,0,4.201185,4.5,4.5,0.309561,0.309561,0.309561,0.309561,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.345112,0.310646,0.309561,0.309561,0.345112,0.310646,0.310032,0.309861,0.309561,0.309561,0.310032,0.309861,0.312015,0.335856,0.309561,0.309561,0.312015,0.335856,0.309561,0.309561,0.309561,0.309561,0.309561,0.309561,,,,,,,0.345112,0.310646,0.310032,0.309861,0.312015,0.335856,0.309561,0.309561,0.309561,0.309561,0.138824,0.128484,0.128299,0.128248,0.128895,0.136047,0.128158,0.128158,0.068,0.068,34.085511,37.867269,37.942306,37.963185,37.701079,35.024859,38,38,38,38,,,,,,,,,,,3096,3096,0.309561,0.309561,0.309561,0.309561,0.309561,0.309561,0.309561,0.309561,0.128158,0.128158,38,38,, +18656,0,0.182397,1,1,0,2,4,,4,2,Huron River,Dr,1673810,8.062,8.244,0,3.908516,4.5,4.5,0.287996,0.287996,0.287996,0.287996,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.334124,0.288444,0.287996,0.287996,0.334124,0.288444,0.288397,0.288103,0.287996,0.287996,0.288397,0.288103,0.289694,0.309617,0.287996,0.287996,0.289694,0.309617,0.287996,0.287996,0.287996,0.287996,0.287996,0.287996,,,,,,,0.334124,0.288444,0.288397,0.288103,0.289694,0.309617,0.287996,0.287996,0.287996,0.287996,0.133069,0.119365,0.119351,0.119263,0.11974,0.125717,0.11923,0.11923,0.063263,0.063263,32.753864,37.941036,37.947179,37.985836,37.777253,35.346429,38,38,38,38,,,,,,,,,,,3096,3096,0.287996,0.287996,0.287996,0.287996,0.287996,0.287996,0.287996,0.287996,0.11923,0.11923,38,38,, +17953,1,0.227906,1,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0,0.228,0,,0.8,7.5,0.210374,,0.210374,,65,,21000,,4767,,10500,,6775,,7224,,7216,,0.270516,,0.210374,,0.270516,,0.210823,,0.210374,,0.210823,,0.21901,,0.210374,,0.21901,,0.210374,,0.210374,,0.210374,,,,,,,,0.270516,,0.210823,,0.21901,,0.210374,,0.210374,,0.122178,,0.10427,,0.106726,,0.104135,,0.056626,,50.549182,,64.861613,,62.437048,,65,,65,,,,,,,,,,,,7224,,0.210374,,0.210374,,0.210374,,0.210374,,0.104135,,65,,, +17814,0,0.125267,1,1,0,2,4,,4,2,Huron River,Dr,1673810,8.44,8.566,0,2.684296,4.5,4.5,0.19779,0.19779,0.19779,0.19779,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.220505,0.198484,0.19779,0.19779,0.220505,0.198484,0.198091,0.197982,0.19779,0.19779,0.198091,0.197982,0.199358,0.214591,0.19779,0.19779,0.199358,0.214591,0.19779,0.19779,0.19779,0.19779,0.19779,0.19779,,,,,,,0.220505,0.198484,0.198091,0.197982,0.199358,0.214591,0.19779,0.19779,0.19779,0.19779,0.0887,0.082093,0.081975,0.081943,0.082356,0.086925,0.081885,0.081885,0.043448,0.043448,34.085511,37.867269,37.942306,37.963185,37.701079,35.024859,38,38,38,38,,,,,,,,,,,3096,3096,0.19779,0.19779,0.19779,0.19779,0.19779,0.19779,0.19779,0.19779,0.081885,0.081885,38,38,, +22622,0,0.08394,1,1,0,2,4,,4,2,Huron River,Dr,4705582,4.386,4.469,0,1.798714,4.5,4.5,0.132537,0.132537,0.132537,0.132537,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.135563,0.132603,0.132537,0.132537,0.135563,0.132603,0.132636,0.132634,0.132537,0.132537,0.132636,0.132634,0.132872,0.138597,0.132537,0.132537,0.132872,0.138597,0.132537,0.132537,0.132537,0.132537,0.132537,0.132537,,,,,,,0.135563,0.132603,0.132636,0.132634,0.132872,0.138597,0.132537,0.132537,0.132537,0.132537,0.055778,0.05489,0.0549,0.054899,0.054971,0.056688,0.05487,0.05487,0.029114,0.029114,37.151794,37.981172,37.971684,37.972171,37.904135,36.338502,38,38,38,38,,,,,,,,,,,3096,3096,0.132537,0.132537,0.132537,0.132537,0.132537,0.132537,0.132537,0.132537,0.05487,0.05487,38,38,, +10946,0,0.566484,1,1,0,2,5,,4,2,Shook,Ave,1576606,0.611,1.177,0,12.138933,5.8,4.5,1.258852,1.258852,1.258852,1.258852,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,,,,,,,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,0.479623,0.479623,0.479623,0.479623,0.479623,0.479623,0.479623,0.479623,0.251141,0.251141,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,1.258852,0.479623,0.479623,27,27,, +12090,-1,0.157791,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.77,0.928,0,,0.8,7.5,,0.145653,,0.145653,,65,,21000,,4767,,10500,,6775,,7224,,7216,,0.147849,,0.145653,,0.147849,,0.146978,,0.145653,,0.146978,,0.250089,,0.145653,,0.250089,,0.145653,,0.145653,,0.145653,,,,,,,,0.147849,,0.146978,,0.250089,,0.145653,,0.145653,,0.072757,,0.072496,,0.103429,,0.072098,,0.039205,,64.034694,,64.413852,,37.856254,,65,,65,,,,,,,,,,,,7224,,0.145653,,0.145653,,0.145653,,0.145653,,0.072098,,65,, +18210,0,0.430275,1,1,0,2,4,,4,2,Ozga,Rd,1673810,9.388,9.818,0,9.220173,4.5,4.5,0.679381,0.679381,0.679381,0.679381,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.692799,0.711972,0.679381,0.679381,0.692799,0.711972,0.68331,0.68678,0.679381,0.679381,0.68331,0.68678,0.704407,0.734895,0.679381,0.679381,0.704407,0.734895,0.679381,0.679381,0.679381,0.679381,0.679381,0.679381,,,,,,,0.692799,0.711972,0.68331,0.68678,0.704407,0.734895,0.679381,0.679381,0.679381,0.679381,0.285289,0.291041,0.282443,0.283483,0.288772,0.297918,0.281264,0.281264,0.149237,0.149237,37.264057,36.26055,37.781503,37.590638,36.649935,35.129472,38,38,38,38,,,,,,,,,,,3096,3096,0.679381,0.679381,0.679381,0.679381,0.679381,0.679381,0.679381,0.679381,0.281264,0.281264,38,38,, +18539,0,0.499308,1,1,0,2,4,,4,2,Wick,Rd,1682705,0.498,0.997,0,10.699461,4.5,4.5,0.788381,0.788381,0.788381,0.788381,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.795428,0.820505,0.788381,0.788381,0.795428,0.820505,0.793417,0.800618,0.788381,0.788381,0.793417,0.800618,0.819834,0.833412,0.788381,0.788381,0.819834,0.833412,0.788381,0.788381,0.788381,0.788381,0.788381,0.788381,,,,,,,0.795428,0.820505,0.793417,0.800618,0.819834,0.833412,0.788381,0.788381,0.788381,0.788381,0.328504,0.336027,0.3279,0.330061,0.335826,0.339899,0.32639,0.32639,0.173181,0.173181,37.663367,36.512268,37.758839,37.419186,36.542161,35.946803,38,38,38,38,,,,,,,,,,,3096,3096,0.788381,0.788381,0.788381,0.788381,0.788381,0.788381,0.788381,0.788381,0.32639,0.32639,38,38,, +30534,0,0.562728,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.058465,0.15,4,2.250913,2.250913,2.250913,2.250913,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,,,,,,,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,0.776565,0.776565,0.776565,0.776565,0.776565,0.776565,0.776565,0.776565,0.399537,0.399537,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,2.250913,0.776565,0.776565,15,15,, +12066,1,0.192186,2,0,0,1,1,RFF,4,2,N I 275/E I 94,RAMP,1578402,0.427,0.619,0,,0.8,7.5,0.177402,,0.177402,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.177746,,0.177402,,0.177746,,0.177422,,0.177402,,0.177422,,0.177641,,0.177402,,0.177641,,0.177402,,0.177402,,0.177402,,,,,,,,0.177746,,0.177422,,0.177641,,0.177402,,0.177402,,0.087917,,0.08782,,0.087886,,0.087814,,0.047751,,64.874434,,64.992977,,64.912819,,65,,65,,,,,,,,,,,,14448,,0.177402,,0.177402,,0.177402,,0.177402,,0.087814,,65,,, +31643,0,0.05985,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.282497,0.15,4,0.2394,0.2394,0.2394,0.2394,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,,,,,,,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.082593,0.082593,0.082593,0.082593,0.082593,0.082593,0.082593,0.082593,0.042493,0.042493,14.999996,14.999991,14.999998,14.999999,14.999989,14.999993,15,15,15,15,,,,,,,,,,,34400,34400,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.2394,0.082593,0.082593,15,15,, +17809,0,0.248717,1,1,0,2,4,,4,2,Ozga,Rd,1673810,9.818,10.066,0,5.329648,4.5,4.5,0.392711,0.392711,0.392711,0.392711,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.394015,0.396118,0.392711,0.392711,0.394015,0.396118,0.393002,0.393637,0.392711,0.392711,0.393002,0.393637,0.394413,0.400334,0.392711,0.392711,0.394413,0.400334,0.392711,0.392711,0.392711,0.392711,0.392711,0.392711,,,,,,,0.394015,0.396118,0.393002,0.393637,0.394413,0.400334,0.392711,0.392711,0.392711,0.392711,0.162974,0.163604,0.16267,0.16286,0.163093,0.164869,0.162582,0.162582,0.086265,0.086265,37.874232,37.673149,37.971879,37.910595,37.836018,37.276452,38,38,38,38,,,,,,,,,,,3096,3096,0.392711,0.392711,0.392711,0.392711,0.392711,0.392711,0.392711,0.392711,0.162582,0.162582,38,38,, +11116,0,0.507474,1,1,0,2,5,,4,2,Shook,Ave,1576606,0.103,0.611,0,10.874443,5.8,4.5,1.12772,1.12772,1.12772,1.12772,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,,,,,,,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,0.429661,0.429661,0.429661,0.429661,0.429661,0.429661,0.429661,0.429661,0.22498,0.22498,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,1.12772,0.429661,0.429661,27,27,, +24448,0,0.23835,1,1,1,2,4,,4,2,Goddard,Rd,4710500,0,0.238,0,5.107496,4.5,4.5,0.376342,0.376342,0.376342,0.376342,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.396318,0.376365,0.376342,0.376342,0.396318,0.376365,0.376465,0.376347,0.376342,0.376342,0.376465,0.376347,0.376898,0.382632,0.376342,0.376342,0.376898,0.382632,0.376342,0.376342,0.376342,0.376342,0.376342,0.376342,,,,,,,0.396318,0.376365,0.376465,0.376347,0.376898,0.382632,0.376342,0.376342,0.376342,0.376342,0.161798,0.155812,0.155843,0.155807,0.155972,0.157693,0.155806,0.155806,0.08267,0.08267,36.084638,37.997687,37.987546,37.999514,37.943909,37.375287,38,38,38,38,,,,,,,,,,,3406,3406,0.376342,0.376342,0.376342,0.376342,0.376342,0.376342,0.376342,0.376342,0.155806,0.155806,38,38,, +16912,0,0.561804,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,3.469,4.031,0,12.038665,4.5,4.5,0.88706,0.88706,0.88706,0.88706,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.991864,0.904527,0.88706,0.88706,0.991864,0.904527,0.903762,0.893663,0.88706,0.88706,0.903762,0.893663,0.948536,1.000017,0.88706,0.88706,0.948536,1.000017,0.88706,0.88706,0.88706,0.88706,0.88706,0.88706,,,,,,,0.991864,0.904527,0.903762,0.893663,0.948536,1.000017,0.88706,0.88706,0.88706,0.88706,0.398684,0.372483,0.372253,0.369224,0.385686,0.40113,0.367243,0.367243,0.194857,0.194857,33.984758,37.266163,37.297722,37.719207,35.537141,33.707702,38,38,38,38,,,,,,,,,,,3096,3096,0.88706,0.88706,0.88706,0.88706,0.88706,0.88706,0.88706,0.88706,0.367243,0.367243,38,38,, +17644,0,0.700084,1,1,0,2,4,,3,2,Van Born,Rd,1670203,0.523,1.223,0,15.001808,6,4.5,1.272881,1.272881,1.272881,1.272881,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.389152,1.282741,1.272881,1.272881,1.389152,1.282741,1.276875,1.280859,1.272881,1.272881,1.276875,1.280859,1.325338,1.441251,1.272881,1.272881,1.325338,1.441251,1.272881,1.272881,1.272881,1.272881,1.272881,1.272881,,,,,,,1.389152,1.282741,1.276875,1.280859,1.325338,1.441251,1.272881,1.272881,1.272881,1.272881,0.542761,0.510838,0.509078,0.510273,0.523617,0.558391,0.507879,0.507879,0.267941,0.267941,30.237914,32.746331,32.896767,32.794451,31.693853,29.144859,33,33,33,33,,,,,,,,,,,2580,2580,1.272881,1.272881,1.272881,1.272881,1.272881,1.272881,1.272881,1.272881,0.507879,0.507879,33,33,, +18091,0,0.387805,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.206,1.594,0,8.31011,5.8,4.5,0.861789,0.861789,0.861789,0.861789,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.862797,0.866062,0.861789,0.861789,0.862797,0.866062,0.862286,0.862314,0.861789,0.861789,0.862286,0.862314,0.879759,0.866421,0.861789,0.861789,0.879759,0.866421,0.861789,0.861789,0.861789,0.861789,0.861789,0.861789,,,,,,,0.862797,0.866062,0.862286,0.862314,0.879759,0.866421,0.861789,0.861789,0.861789,0.861789,0.328644,0.329624,0.328491,0.328499,0.333733,0.329731,0.328342,0.328342,0.171927,0.171927,26.968454,26.866785,26.984437,26.983579,26.448501,26.855651,27,27,27,27,,,,,,,,,,,2838,2838,0.861789,0.861789,0.861789,0.861789,0.861789,0.861789,0.861789,0.861789,0.328342,0.328342,27,27,, +18568,0,0.256118,1,1,0,2,4,,4,2,Hannan,Rd,1710309,6.339,6.595,0,5.488238,4.5,4.5,0.404397,0.404397,0.404397,0.404397,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.420079,0.408298,0.404397,0.404397,0.420079,0.408298,0.406024,0.405705,0.404397,0.404397,0.406024,0.405705,0.421516,0.445206,0.404397,0.404397,0.421516,0.445206,0.404397,0.404397,0.404397,0.404397,0.404397,0.404397,,,,,,,0.420079,0.408298,0.406024,0.405705,0.421516,0.445206,0.404397,0.404397,0.404397,0.404397,0.172125,0.16859,0.167908,0.167813,0.172556,0.179663,0.16742,0.16742,0.088832,0.088832,36.581397,37.636934,37.847717,37.877426,36.456701,34.516746,38,38,38,38,,,,,,,,,,,3096,3096,0.404397,0.404397,0.404397,0.404397,0.404397,0.404397,0.404397,0.404397,0.16742,0.16742,38,38,, +31551,0,0.610753,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.087558,0.15,4,2.443011,2.443011,2.443011,2.443011,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,,,,,,,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,0.842839,0.842839,0.842839,0.842839,0.842839,0.842839,0.842839,0.842839,0.433634,0.433634,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,2.443011,0.842839,0.842839,15,15,, +31553,0,0.959864,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.568525,0.15,4,3.839458,3.839458,3.839458,3.839458,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,,,,,,,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,1.324613,1.324613,1.324613,1.324613,1.324613,1.324613,1.324613,1.324613,0.681504,0.681504,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,3.839458,1.324613,1.324613,15,15,, +31648,0,0.524633,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.242144,0.15,4,2.098534,2.098534,2.098534,2.098534,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,,,,,,,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,0.723994,0.723994,0.723994,0.723994,0.723994,0.723994,0.723994,0.723994,0.37249,0.37249,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,2.098534,0.723994,0.723994,15,15,, +16913,0,0.514691,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,2.955,3.469,0,11.029098,4.5,4.5,0.81267,0.81267,0.81267,0.81267,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.892744,0.835175,0.81267,0.81267,0.892744,0.835175,0.824696,0.817558,0.81267,0.81267,0.824696,0.817558,0.931588,0.915439,0.81267,0.81267,0.931588,0.915439,0.81267,0.81267,0.81267,0.81267,0.81267,0.81267,,,,,,,0.892744,0.835175,0.824696,0.817558,0.931588,0.915439,0.81267,0.81267,0.81267,0.81267,0.360468,0.343197,0.340053,0.337912,0.372121,0.367276,0.336446,0.336446,0.178517,0.178517,34.59165,36.976056,37.445875,37.772846,33.149282,33.734076,38,38,38,38,,,,,,,,,,,3096,3096,0.81267,0.81267,0.81267,0.81267,0.81267,0.81267,0.81267,0.81267,0.336446,0.336446,38,38,, +18499,0,0.431555,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,0.775,1.206,0,9.247615,5.8,4.5,0.959012,0.959012,0.959012,0.959012,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,,,,,,,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.365384,0.365384,0.365384,0.365384,0.365384,0.365384,0.365384,0.365384,0.191323,0.191323,27,26.999997,27,27,26.999999,26.999997,27,27,27,27,,,,,,,,,,,2838,2838,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.959012,0.365384,0.365384,27,27,, +18092,0,0.238613,1,1,0,2,5,,4,2,Cogswell,Rd,1665704,0.536,0.775,0,5.113141,5.8,4.5,0.530252,0.530252,0.530252,0.530252,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,,,,,,,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.202026,0.202026,0.202026,0.202026,0.202026,0.202026,0.202026,0.202026,0.105785,0.105785,27,26.999995,27,27,26.999999,26.999995,27,27,27,27,,,,,,,,,,,2580,2580,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.530252,0.202026,0.202026,27,27,, +18069,0,0.39689,1,1,0,2,4,,3,2,Van Born,Rd,1670203,0.126,0.523,0,8.504775,6,4.5,0.721617,0.721617,0.721617,0.721617,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.752306,0.745057,0.721617,0.721617,0.752306,0.745057,0.724225,0.72701,0.721617,0.721617,0.724225,0.72701,0.745672,0.779447,0.721617,0.721617,0.745672,0.779447,0.721617,0.721617,0.721617,0.721617,0.721617,0.721617,,,,,,,0.752306,0.745057,0.724225,0.72701,0.745672,0.779447,0.721617,0.721617,0.721617,0.721617,0.297132,0.294957,0.288708,0.289543,0.295142,0.305274,0.287925,0.287925,0.1519,0.1519,31.653853,31.961801,32.88117,32.755216,31.935444,30.551605,33,33,33,33,,,,,,,,,,,2580,2580,0.721617,0.721617,0.721617,0.721617,0.721617,0.721617,0.721617,0.721617,0.287925,0.287925,33,33,, +18242,0,0.850728,1,1,0,2,4,,4,2,Hannan,Rd,1710309,6.595,7.445,0,18.229876,4.5,4.5,1.343254,1.343254,1.343254,1.343254,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.344987,1.348773,1.343254,1.343254,1.344987,1.348773,1.343429,1.343478,1.343254,1.343254,1.343429,1.343478,1.353862,1.361954,1.343254,1.343254,1.353862,1.361954,1.343254,1.343254,1.343254,1.343254,1.343254,1.343254,,,,,,,1.344987,1.348773,1.343429,1.343478,1.353862,1.361954,1.343254,1.343254,1.343254,1.343254,0.556627,0.557763,0.55616,0.556174,0.55929,0.561717,0.556107,0.556107,0.295068,0.295068,37.951037,37.844517,37.995048,37.99367,37.70225,37.478259,38,38,38,38,,,,,,,,,,,3096,3096,1.343254,1.343254,1.343254,1.343254,1.343254,1.343254,1.343254,1.343254,0.556107,0.556107,38,38,, +18480,0,0.286295,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.914,2.201,0,6.134897,5.8,4.5,0.636212,0.636212,0.636212,0.636212,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.642712,0.636394,0.636212,0.636212,0.642712,0.636394,0.636807,0.636762,0.636212,0.636212,0.636807,0.636762,0.636868,0.637622,0.636212,0.636212,0.636868,0.637622,0.636212,0.636212,0.636212,0.636212,0.636212,0.636212,,,,,,,0.642712,0.636394,0.636807,0.636762,0.636868,0.637622,0.636212,0.636212,0.636212,0.636212,0.244347,0.242451,0.242575,0.242562,0.242594,0.24282,0.242397,0.242397,0.126924,0.126924,26.726925,26.99224,26.974771,26.97667,26.972176,26.940255,27,27,27,27,,,,,,,,,,,2838,2838,0.636212,0.636212,0.636212,0.636212,0.636212,0.636212,0.636212,0.636212,0.242397,0.242397,27,27,, +17663,0,0.126031,1,1,0,2,4,,3,2,Van Born,Rd,1670203,0,0.126,0,2.700674,6,4.5,0.229148,0.229148,0.229148,0.229148,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.238893,0.236591,0.229148,0.229148,0.238893,0.236591,0.229976,0.230861,0.229148,0.229148,0.229976,0.230861,0.236787,0.247512,0.229148,0.229148,0.236787,0.247512,0.229148,0.229148,0.229148,0.229148,0.229148,0.229148,,,,,,,0.238893,0.236591,0.229976,0.230861,0.236787,0.247512,0.229148,0.229148,0.229148,0.229148,0.094354,0.093663,0.091679,0.091944,0.093722,0.096939,0.09143,0.09143,0.048236,0.048236,31.653853,31.961801,32.88117,32.755216,31.935444,30.551605,33,33,33,33,,,,,,,,,,,2580,2580,0.229148,0.229148,0.229148,0.229148,0.229148,0.229148,0.229148,0.229148,0.09143,0.09143,33,33,, +40350,-1,0.020587,0,2,0,2,5,,4,3,Pontiac,Rd,4463352,0,0.021,0,0.441153,5.8,4.5,,0.045749,,0.045749,,27,,15000,,3405,,7500,,4839,,5160,,5154,,0.04584,,0.045749,,0.04584,,0.045888,,0.045749,,0.045888,,0.04629,,0.045749,,0.04629,,0.045749,,0.045749,,0.045749,,,,,,,,0.04584,,0.045888,,0.04629,,0.045749,,0.045749,,0.017458,,0.017472,,0.017593,,0.01743,,0.009127,,26.946332,,26.918268,,26.684767,,27,,27,,,,,,,,,,,,5160,,0.045749,,0.045749,,0.045749,,0.045749,,0.01743,,27,, +18055,0,0.035022,1,1,0,2,4,,3,2,Hannan,Rd,1710309,7.445,7.48,0,0.750474,6,4.5,0.063677,0.063677,0.063677,0.063677,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.067885,0.0658,0.063677,0.063677,0.067885,0.0658,0.065219,0.064249,0.063677,0.063677,0.065219,0.064249,0.069071,0.068271,0.063677,0.063677,0.069071,0.068271,0.063677,0.063677,0.063677,0.063677,0.063677,0.063677,,,,,,,0.067885,0.0658,0.065219,0.064249,0.069071,0.068271,0.063677,0.063677,0.063677,0.063677,0.02667,0.026044,0.02587,0.025579,0.027025,0.026785,0.025407,0.025407,0.013404,0.013404,30.954153,31.935188,32.219384,32.706253,30.422587,30.779003,33,33,33,33,,,,,,,,,,,2580,2580,0.063677,0.063677,0.063677,0.063677,0.063677,0.063677,0.063677,0.063677,0.025407,0.025407,33,33,, +18483,0,0.113204,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.594,1.707,0,2.425809,5.8,4.5,0.251565,0.251565,0.251565,0.251565,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.251863,0.252866,0.251565,0.251565,0.251863,0.252866,0.251724,0.251734,0.251565,0.251565,0.251724,0.251734,0.257028,0.252951,0.251565,0.251565,0.257028,0.252951,0.251565,0.251565,0.251565,0.251565,0.251565,0.251565,,,,,,,0.251863,0.252866,0.251724,0.251734,0.257028,0.252951,0.251565,0.251565,0.251565,0.251565,0.095936,0.096236,0.095894,0.095897,0.097485,0.096262,0.095846,0.095846,0.050187,0.050187,26.968091,26.861161,26.983016,26.981867,26.426209,26.852057,27,27,27,27,,,,,,,,,,,2838,2838,0.251565,0.251565,0.251565,0.251565,0.251565,0.251565,0.251565,0.251565,0.095846,0.095846,27,27,, +18081,0,0.207385,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.707,1.914,0,4.443968,5.8,4.5,0.460856,0.460856,0.460856,0.460856,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.465565,0.460988,0.460856,0.460856,0.465565,0.460988,0.461287,0.461255,0.460856,0.460856,0.461287,0.461255,0.461331,0.461878,0.460856,0.460856,0.461331,0.461878,0.460856,0.460856,0.460856,0.460856,0.460856,0.460856,,,,,,,0.465565,0.460988,0.461287,0.461255,0.461331,0.461878,0.460856,0.460856,0.460856,0.460856,0.176999,0.175626,0.175715,0.175706,0.175729,0.175893,0.175586,0.175586,0.091941,0.091941,26.726925,26.99224,26.974771,26.97667,26.972176,26.940255,27,27,27,27,,,,,,,,,,,2838,2838,0.460856,0.460856,0.460856,0.460856,0.460856,0.460856,0.460856,0.460856,0.175586,0.175586,27,27,, +31653,0,0.20425,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.376794,0.15,4,0.817002,0.817002,0.817002,0.817002,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,,,,,,,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.281866,0.281866,0.281866,0.281866,0.281866,0.281866,0.281866,0.281866,0.145018,0.145018,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.817002,0.281866,0.281866,15,15,, +31654,0,0.009543,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.204488,0.15,4,0.038171,0.038171,0.038171,0.038171,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,,,,,,,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.013169,0.013169,0.013169,0.013169,0.013169,0.013169,0.013169,0.013169,0.006775,0.006775,14.999996,15,14.999999,14.999999,14.999998,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.038171,0.013169,0.013169,15,15,, +31646,0,0.540158,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.57481,0.15,4,2.160631,2.160631,2.160631,2.160631,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,,,,,,,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,0.745418,0.745418,0.745418,0.745418,0.745418,0.745418,0.745418,0.745418,0.383512,0.383512,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,2.160631,0.745418,0.745418,15,15,, +31549,0,0.572561,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.269157,0.15,4,2.290243,2.290243,2.290243,2.290243,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,,,,,,,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,0.790134,0.790134,0.790134,0.790134,0.790134,0.790134,0.790134,0.790134,0.406518,0.406518,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,2.290243,0.790134,0.790134,15,15,, +31562,0,0.465698,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.979238,0.15,4,2.794187,2.794187,2.794187,2.794187,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,,,,,,,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,0.922082,0.922082,0.922082,0.922082,0.922082,0.922082,0.922082,0.922082,0.470355,0.470355,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,2.794187,0.922082,0.922082,10,10,, +11444,1,0.369578,3,0,0,1,1,,4,2,E I 94,,1576405,8.31,8.68,0,,0.8,7.5,0.316781,,0.316781,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.454233,,0.316781,,0.454233,,0.318199,,0.316781,,0.318199,,0.345512,,0.316781,,0.345512,,0.316781,,0.316781,,0.316781,,,,,,,,0.454233,,0.318199,,0.345512,,0.316781,,0.316781,,0.202794,,0.161984,,0.170178,,0.161558,,0.088171,,48.817776,,69.688005,,64.179126,,70,,70,,,,,,,,,,,,22704,,0.316781,,0.316781,,0.316781,,0.316781,,0.161558,,70,,, +14044,-1,0.449387,0,3,0,1,1,,4,2,W I 94,,1588802,8.57,9.02,0,,0.8,7.5,,0.385189,,0.385189,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.401757,,0.385189,,0.401757,,0.386135,,0.385189,,0.386135,,0.485466,,0.385189,,0.485466,,0.385189,,0.385189,,0.385189,,,,,,,,0.401757,,0.386135,,0.485466,,0.385189,,0.385189,,0.201417,,0.19673,,0.226529,,0.196446,,0.107211,,67.113236,,69.828344,,55.540862,,70,,70,,,,,,,,,,,,22704,,0.385189,,0.385189,,0.385189,,0.385189,,0.196446,,70,, +17691,0,0.473286,1,1,0,2,4,,4,2,Wick,Rd,1682705,1.516,1.989,0,10.141847,4.5,4.5,0.747294,0.747294,0.747294,0.747294,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.750779,0.74825,0.747294,0.747294,0.750779,0.74825,0.747716,0.748241,0.747294,0.747294,0.747716,0.748241,0.748306,0.843049,0.747294,0.747294,0.748306,0.843049,0.747294,0.747294,0.747294,0.747294,0.747294,0.747294,,,,,,,0.750779,0.74825,0.747716,0.748241,0.748306,0.843049,0.747294,0.747294,0.747294,0.747294,0.310425,0.309667,0.309506,0.309664,0.309683,0.338106,0.30938,0.30938,0.164156,0.164156,37.8236,37.951446,37.978572,37.951926,37.948586,33.683911,38,38,38,38,,,,,,,,,,,3096,3096,0.747294,0.747294,0.747294,0.747294,0.747294,0.747294,0.747294,0.747294,0.30938,0.30938,38,38,, +18026,0,0.522618,1,1,0,2,4,,4,2,Goddard,Rd,1683004,0.452,0.975,0,11.198962,4.5,4.5,0.825187,0.825187,0.825187,0.825187,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.82524,0.825187,0.825187,0.825187,0.82524,0.825187,0.825187,0.825187,0.825187,0.825187,0.825187,0.825187,0.825194,0.825201,0.825187,0.825187,0.825194,0.825201,0.825187,0.825187,0.825187,0.825187,0.825187,0.825187,,,,,,,0.82524,0.825187,0.825187,0.825187,0.825194,0.825201,0.825187,0.825187,0.825187,0.825187,0.341643,0.341627,0.341627,0.341627,0.341629,0.341632,0.341627,0.341627,0.181266,0.181266,37.99756,38,38,38,37.999683,37.999338,38,38,38,38,,,,,,,,,,,3096,3096,0.825187,0.825187,0.825187,0.825187,0.825187,0.825187,0.825187,0.825187,0.341627,0.341627,38,38,, +24085,0,0.271681,1,1,0,2,4,,4,2,Vining,Rd,4711341,0.338,0.61,0,5.821733,4.5,4.5,0.42897,0.42897,0.42897,0.42897,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.485913,0.436624,0.42897,0.42897,0.485913,0.436624,0.429722,0.432552,0.42897,0.42897,0.429722,0.432552,0.432547,0.464763,0.42897,0.42897,0.432547,0.464763,0.42897,0.42897,0.42897,0.42897,0.42897,0.42897,,,,,,,0.485913,0.436624,0.429722,0.432552,0.432547,0.464763,0.42897,0.42897,0.42897,0.42897,0.194676,0.17989,0.177819,0.178668,0.178667,0.188331,0.177593,0.177593,0.09423,0.09423,33.546859,37.333869,37.93352,37.685326,37.685696,35.073478,38,38,38,38,,,,,,,,,,,3096,3096,0.42897,0.42897,0.42897,0.42897,0.42897,0.42897,0.42897,0.42897,0.177593,0.177593,38,38,, +24404,0,0.28715,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.978,2.265,0,6.153211,3.7,5,0.430725,0.430725,0.430725,0.430725,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.430875,0.430836,0.430725,0.430725,0.430875,0.430836,0.430971,0.430781,0.430725,0.430725,0.430971,0.430781,0.432609,0.431134,0.430725,0.430725,0.432609,0.431134,0.430725,0.430725,0.430725,0.430725,0.430725,0.430725,,,,,,,0.430875,0.430836,0.430971,0.430781,0.432609,0.431134,0.430725,0.430725,0.430725,0.430725,0.180949,0.180938,0.180978,0.180921,0.18147,0.181027,0.180904,0.180904,0.096195,0.096195,39.986059,39.989669,39.977169,39.994775,39.825797,39.962033,40,40,40,40,,,,,,,,,,,3784,3784,0.430725,0.430725,0.430725,0.430725,0.430725,0.430725,0.430725,0.430725,0.180904,0.180904,40,40,, +24539,0,0.338104,1,1,0,2,4,,4,2,Vining,Rd,4711341,0,0.338,0,7.245093,4.5,4.5,0.533849,0.533849,0.533849,0.533849,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.604714,0.543374,0.533849,0.533849,0.604714,0.543374,0.534785,0.538307,0.533849,0.533849,0.534785,0.538307,0.538301,0.578393,0.533849,0.533849,0.538301,0.578393,0.533849,0.533849,0.533849,0.533849,0.533849,0.533849,,,,,,,0.604714,0.543374,0.534785,0.538307,0.538301,0.578393,0.533849,0.533849,0.533849,0.533849,0.242273,0.223871,0.221294,0.222351,0.222349,0.234377,0.221013,0.221013,0.117269,0.117269,33.546859,37.333869,37.93352,37.685326,37.685696,35.073478,38,38,38,38,,,,,,,,,,,3096,3096,0.533849,0.533849,0.533849,0.533849,0.533849,0.533849,0.533849,0.533849,0.221013,0.221013,38,38,, +19224,0,0.216822,1,1,0,2,4,,4,2,Northline,Rd,1811006,8.566,8.783,0,4.646177,4.5,4.5,0.34235,0.34235,0.34235,0.34235,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.344481,0.344947,0.34235,0.34235,0.344481,0.344947,0.34308,0.342942,0.34235,0.34235,0.34308,0.342942,0.34552,0.34423,0.34235,0.34235,0.34552,0.34423,0.34235,0.34235,0.34235,0.34235,0.34235,0.34235,,,,,,,0.344481,0.344947,0.34308,0.342942,0.34552,0.34423,0.34235,0.34235,0.34235,0.34235,0.142372,0.142512,0.141952,0.14191,0.142684,0.142297,0.141733,0.141733,0.075203,0.075203,37.764892,37.713912,37.919141,37.934438,37.65139,37.79247,38,38,38,38,,,,,,,,,,,3096,3096,0.34235,0.34235,0.34235,0.34235,0.34235,0.34235,0.34235,0.34235,0.141733,0.141733,38,38,, +23293,0,0.547818,1,1,0,2,5,,4,2,Grant,Rd,4705582,5.089,5.636,0,11.738964,5.8,4.5,1.217374,1.217374,1.217374,1.217374,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.229741,1.262606,1.217374,1.217374,1.229741,1.262606,1.24247,1.24215,1.217374,1.217374,1.24247,1.24215,1.267039,1.255789,1.217374,1.217374,1.267039,1.255789,1.217374,1.217374,1.217374,1.217374,1.217374,1.217374,,,,,,,1.229741,1.262606,1.24247,1.24215,1.267039,1.255789,1.217374,1.217374,1.217374,1.217374,0.46753,0.477389,0.471348,0.471252,0.478719,0.475344,0.463819,0.463819,0.242866,0.242866,26.72847,26.03274,26.454645,26.461448,25.941657,26.174065,27,27,27,27,,,,,,,,,,,2580,2580,1.217374,1.217374,1.217374,1.217374,1.217374,1.217374,1.217374,1.217374,0.463819,0.463819,27,27,, +24520,0,0.29893,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.336,1.635,0,6.405645,3.7,5,0.448395,0.448395,0.448395,0.448395,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.459016,0.448597,0.448395,0.448395,0.459016,0.448597,0.448438,0.448475,0.448395,0.448395,0.448438,0.448475,0.44959,0.453503,0.448395,0.448395,0.44959,0.453503,0.448395,0.448395,0.448395,0.448395,0.448395,0.448395,,,,,,,0.459016,0.448597,0.448438,0.448475,0.44959,0.453503,0.448395,0.448395,0.448395,0.448395,0.191512,0.188387,0.188339,0.18835,0.188684,0.189858,0.188326,0.188326,0.100142,0.100142,39.074456,39.981967,39.996146,39.992918,39.893671,39.549514,40,40,40,40,,,,,,,,,,,3784,3784,0.448395,0.448395,0.448395,0.448395,0.448395,0.448395,0.448395,0.448395,0.188326,0.188326,40,40,, +31641,0,0.537602,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.520033,0.15,4,2.150406,2.150406,2.150406,2.150406,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,,,,,,,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,0.74189,0.74189,0.74189,0.74189,0.74189,0.74189,0.74189,0.74189,0.381697,0.381697,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,2.150406,0.74189,0.74189,15,15,, +31642,0,0.461846,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.896696,0.15,4,1.847383,1.847383,1.847383,1.847383,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,,,,,,,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,0.637347,0.637347,0.637347,0.637347,0.637347,0.637347,0.637347,0.637347,0.327911,0.327911,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,1.847383,0.637347,0.637347,15,15,, +19225,0,0.204086,1,1,0,2,4,,4,2,Northline,Rd,1811006,8.362,8.566,0,4.37328,4.5,4.5,0.322242,0.322242,0.322242,0.322242,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.322843,0.322393,0.322242,0.322242,0.322843,0.322393,0.322334,0.322296,0.322242,0.322242,0.322334,0.322296,0.322503,0.32254,0.322242,0.322242,0.322503,0.32254,0.322242,0.322242,0.322242,0.322242,0.322242,0.322242,,,,,,,0.322843,0.322393,0.322334,0.322296,0.322503,0.32254,0.322242,0.322242,0.322242,0.322242,0.133588,0.133453,0.133436,0.133424,0.133487,0.133498,0.133408,0.133408,0.070786,0.070786,37.929214,37.98218,37.989081,37.993599,37.96917,37.964866,38,38,38,38,,,,,,,,,,,3096,3096,0.322242,0.322242,0.322242,0.322242,0.322242,0.322242,0.322242,0.322242,0.133408,0.133408,38,38,, +31640,0,0.05743,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.230643,0.15,4,0.22972,0.22972,0.22972,0.22972,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,,,,,,,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.079253,0.079253,0.079253,0.079253,0.079253,0.079253,0.079253,0.079253,0.040775,0.040775,14.999999,14.999995,14.999998,14.999997,14.999991,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.22972,0.079253,0.079253,15,15,, +23990,0,0.224974,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.111,1.336,0,4.820867,3.7,5,0.337461,0.337461,0.337461,0.337461,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.345454,0.337613,0.337461,0.337461,0.345454,0.337613,0.337493,0.33752,0.337461,0.337461,0.337493,0.33752,0.33836,0.341305,0.337461,0.337461,0.33836,0.341305,0.337461,0.337461,0.337461,0.337461,0.337461,0.337461,,,,,,,0.345454,0.337613,0.337493,0.33752,0.33836,0.341305,0.337461,0.337461,0.337461,0.337461,0.144131,0.141779,0.141743,0.141751,0.142003,0.142887,0.141734,0.141734,0.075366,0.075366,39.074456,39.981967,39.996146,39.992918,39.893671,39.549514,40,40,40,40,,,,,,,,,,,3784,3784,0.337461,0.337461,0.337461,0.337461,0.337461,0.337461,0.337461,0.337461,0.141734,0.141734,40,40,, +24500,0,0.13997,2,2,0,2,3,,4,2,Wayne,Rd,4719470,1.838,1.978,0,2.999364,3.7,5,0.209955,0.209955,0.209955,0.209955,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.209958,0.209957,0.209955,0.209955,0.209958,0.209957,0.209959,0.209956,0.209955,0.209955,0.209959,0.209956,0.209984,0.209962,0.209955,0.209955,0.209984,0.209962,0.209955,0.209955,0.209955,0.209955,0.209955,0.209955,,,,,,,0.209958,0.209957,0.209959,0.209956,0.209984,0.209962,0.209955,0.209955,0.209955,0.209955,0.088182,0.088182,0.088182,0.088182,0.08819,0.088183,0.088181,0.088181,0.04689,0.04689,39.999564,39.999677,39.999286,39.999837,39.994529,39.998812,40,40,40,40,,,,,,,,,,,7568,7568,0.209955,0.209955,0.209955,0.209955,0.209955,0.209955,0.209955,0.209955,0.088181,0.088181,40,40,, +24536,0,0.112933,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.725,1.838,0,2.420002,3.7,5,0.1694,0.1694,0.1694,0.1694,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.169459,0.169444,0.1694,0.1694,0.169459,0.169444,0.169497,0.169422,0.1694,0.1694,0.169497,0.169422,0.170141,0.169561,0.1694,0.1694,0.170141,0.169561,0.1694,0.1694,0.1694,0.1694,0.1694,0.1694,,,,,,,0.169459,0.169444,0.169497,0.169422,0.170141,0.169561,0.1694,0.1694,0.1694,0.1694,0.071166,0.071161,0.071177,0.071155,0.07137,0.071196,0.071148,0.071148,0.037833,0.037833,39.986059,39.989669,39.977169,39.994775,39.825797,39.962033,40,40,40,40,,,,,,,,,,,3784,3784,0.1694,0.1694,0.1694,0.1694,0.1694,0.1694,0.1694,0.1694,0.071148,0.071148,40,40,, +24501,0,0.089863,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.635,1.725,0,1.925637,3.7,5,0.134795,0.134795,0.134795,0.134795,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.134875,0.134803,0.134795,0.134795,0.134875,0.134803,0.134819,0.134798,0.134795,0.134795,0.134819,0.134798,0.13496,0.134827,0.134795,0.134795,0.13496,0.134827,0.134795,0.134795,0.134795,0.134795,0.134795,0.134795,,,,,,,0.134875,0.134803,0.134819,0.134798,0.13496,0.134827,0.134795,0.134795,0.134795,0.134795,0.056638,0.056616,0.056621,0.056615,0.056663,0.056624,0.056614,0.056614,0.030104,0.030104,39.976098,39.997643,39.992762,39.998928,39.951024,39.990313,40,40,40,40,,,,,,,,,,,3784,3784,0.134795,0.134795,0.134795,0.134795,0.134795,0.134795,0.134795,0.134795,0.056614,0.056614,40,40,, +10708,1,0.321369,1,0,0,1,1,ROF,4,2,E I 94/Wayne,RAMP,1576607,0,0.321,0,,2.24,5,0.482053,,0.482053,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.485393,,0.482053,,0.485393,,0.482299,,0.482053,,0.482299,,0.485199,,0.482053,,0.485199,,0.482053,,0.482053,,0.482053,,,,,,,,0.485393,,0.482299,,0.485199,,0.482053,,0.482053,,0.203464,,0.202536,,0.203406,,0.202462,,0.107658,,39.724729,,39.979554,,39.740605,,40,,40,,,,,,,,,,,,5160,,0.482053,,0.482053,,0.482053,,0.482053,,0.202462,,40,,, +10963,1,0.180189,3,0,0,1,1,,4,2,E I 94,,1576405,8.13,8.31,0,,0.8,7.5,0.154448,,0.154448,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.197391,,0.154448,,0.197391,,0.154869,,0.154448,,0.154869,,0.163638,,0.154448,,0.163638,,0.154448,,0.154448,,0.154448,,,,,,,,0.197391,,0.154869,,0.163638,,0.154448,,0.154448,,0.091651,,0.078895,,0.081526,,0.078768,,0.042988,,54.771212,,69.809561,,66.068675,,70,,70,,,,,,,,,,,,22704,,0.154448,,0.154448,,0.154448,,0.154448,,0.078768,,70,,, +11416,1,0.206812,1,0,0,1,1,RON,4,2,S Wayne/E I 94,RAMP,1576608,0,0.207,0,,1.09,4,0.275749,,0.275749,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.275749,,0.275749,,0.275749,,0.275753,,0.275749,,0.275753,,0.275777,,0.275749,,0.275777,,0.275749,,0.275749,,0.275749,,,,,,,,0.275749,,0.275753,,0.275777,,0.275749,,0.275749,,0.119951,,0.119952,,0.119959,,0.119951,,0.064112,,45,,44.999395,,44.995572,,45,,45,,,,,,,,,,,,5160,,0.275749,,0.275749,,0.275749,,0.275749,,0.119951,,45,,, +13758,1,0.369541,1,0,0,1,1,ROF,4,2,W I 94/Wayne,RAMP,1588902,0,0.369,0,,2.24,5,0.554312,,0.554312,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.554507,,0.554312,,0.554507,,0.55435,,0.554312,,0.55435,,0.554347,,0.554312,,0.554347,,0.554312,,0.554312,,0.554312,,,,,,,,0.554507,,0.55435,,0.554347,,0.554312,,0.554312,,0.23287,,0.232822,,0.232822,,0.232811,,0.123796,,39.985892,,39.997222,,39.997437,,40,,40,,,,,,,,,,,,5160,,0.554312,,0.554312,,0.554312,,0.554312,,0.232811,,40,,, +13945,1,0.230779,1,0,0,1,1,RON,4,2,N Wayne/W I 94,RAMP,1588901,0,0.231,0,,1.09,4,0.307706,,0.307706,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.307706,,0.307706,,0.307706,,0.307706,,0.307706,,0.307706,,0.307706,,0.307706,,0.307706,,0.307706,,0.307706,,0.307706,,,,,,,,0.307706,,0.307706,,0.307706,,0.307706,,0.307706,,0.133852,,0.133852,,0.133852,,0.133852,,0.071542,,44.999994,,44.999994,,44.999995,,45,,45,,,,,,,,,,,,5160,,0.307706,,0.307706,,0.307706,,0.307706,,0.133852,,45,,, +14276,-1,0.320565,0,3,0,1,1,,4,2,W I 94,,1588802,8.25,8.57,0,,0.8,7.5,,0.27477,,0.27477,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.282305,,0.27477,,0.282305,,0.275189,,0.27477,,0.275189,,0.330571,,0.27477,,0.330571,,0.27477,,0.27477,,0.27477,,,,,,,,0.282305,,0.275189,,0.330571,,0.27477,,0.27477,,0.142393,,0.140259,,0.156873,,0.140133,,0.076478,,68.131563,,69.893377,,58.183883,,70,,70,,,,,,,,,,,,22704,,0.27477,,0.27477,,0.27477,,0.27477,,0.140133,,70,, +14436,1,0.132237,1,0,0,1,1,RON,4,2,S Wayne/W I 94,RAMP,1588810,0,0.132,0,,1.09,4,0.176315,,0.176315,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.177093,,0.176315,,0.177093,,0.176497,,0.176315,,0.176497,,0.177592,,0.176315,,0.177592,,0.176315,,0.176315,,0.176315,,,,,,,,0.177093,,0.176497,,0.177592,,0.176315,,0.176315,,0.07693,,0.076752,,0.07708,,0.076697,,0.040993,,44.802529,,44.953685,,44.676432,,45,,45,,,,,,,,,,,,5160,,0.176315,,0.176315,,0.176315,,0.176315,,0.076697,,45,,, +14447,-1,0.128844,0,3,0,1,1,,4,2,W I 94,,1588802,8.121,8.25,0,,0.8,7.5,,0.110438,,0.110438,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.113622,,0.110438,,0.113622,,0.110619,,0.110438,,0.110619,,0.133693,,0.110438,,0.133693,,0.110438,,0.110438,,0.110438,,,,,,,,0.113622,,0.110619,,0.133693,,0.110438,,0.110438,,0.057279,,0.056378,,0.0633,,0.056323,,0.030739,,68.038153,,69.885214,,57.823907,,70,,70,,,,,,,,,,,,22704,,0.110438,,0.110438,,0.110438,,0.110438,,0.056323,,70,, +18025,0,0.150378,1,1,0,2,4,,4,2,Wick,Rd,1682705,1.366,1.516,0,3.222394,4.5,4.5,0.23744,0.23744,0.23744,0.23744,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.239562,0.247114,0.23744,0.23744,0.239562,0.247114,0.238956,0.241125,0.23744,0.23744,0.238956,0.241125,0.246912,0.251002,0.23744,0.23744,0.246912,0.251002,0.23744,0.23744,0.23744,0.23744,0.23744,0.23744,,,,,,,0.239562,0.247114,0.238956,0.241125,0.246912,0.251002,0.23744,0.23744,0.23744,0.23744,0.098937,0.101202,0.098755,0.099406,0.101142,0.102369,0.0983,0.0983,0.052158,0.052158,37.663367,36.512268,37.758839,37.419186,36.542161,35.946803,38,38,38,38,,,,,,,,,,,3096,3096,0.23744,0.23744,0.23744,0.23744,0.23744,0.23744,0.23744,0.23744,0.0983,0.0983,38,38,, +18121,0,0.452163,1,1,1,2,4,,4,2,Goddard,Rd,1683004,0,0.452,0,9.6892,4.5,4.5,0.713941,0.713941,0.713941,0.713941,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.751837,0.713984,0.713941,0.713941,0.751837,0.713984,0.714175,0.71395,0.713941,0.713941,0.714175,0.71395,0.714996,0.725874,0.713941,0.713941,0.714996,0.725874,0.713941,0.713941,0.713941,0.713941,0.713941,0.713941,,,,,,,0.751837,0.713984,0.714175,0.71395,0.714996,0.725874,0.713941,0.713941,0.713941,0.713941,0.30694,0.295585,0.295642,0.295574,0.295888,0.299152,0.295572,0.295572,0.156829,0.156829,36.084638,37.997687,37.987546,37.999514,37.943909,37.375287,38,38,38,38,,,,,,,,,,,3406,3406,0.713941,0.713941,0.713941,0.713941,0.713941,0.713941,0.713941,0.713941,0.295572,0.295572,38,38,, +24047,0,0.033144,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.721,2.754,0,0.710231,3.7,5,0.049716,0.049716,0.049716,0.049716,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.049837,0.049931,0.049716,0.049716,0.049837,0.049931,0.049725,0.049832,0.049716,0.049716,0.049725,0.049832,0.049862,0.052731,0.049716,0.049716,0.049862,0.052731,0.049716,0.049716,0.049716,0.049716,0.049716,0.049716,,,,,,,0.049837,0.049931,0.049725,0.049832,0.049862,0.052731,0.049716,0.049716,0.049716,0.049716,0.020917,0.020945,0.020884,0.020916,0.020924,0.021785,0.020881,0.020881,0.011103,0.011103,39.903001,39.828235,39.992701,39.907101,39.883295,37.712961,40,40,40,40,,,,,,,,,,,7568,7568,0.049716,0.049716,0.049716,0.049716,0.049716,0.049716,0.049716,0.049716,0.020881,0.020881,40,40,, +10781,1,0.270684,3,0,0,1,1,,4,2,E I 94,,1576405,7.86,8.13,0,,0.8,7.5,0.232015,,0.232015,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.296109,,0.232015,,0.296109,,0.232523,,0.232015,,0.232523,,0.242889,,0.232015,,0.242889,,0.232015,,0.232015,,0.232015,,,,,,,,0.296109,,0.232523,,0.242889,,0.232015,,0.232015,,0.137556,,0.11848,,0.12159,,0.118328,,0.064577,,54.848075,,69.846877,,66.86613,,70,,70,,,,,,,,,,,,22704,,0.232015,,0.232015,,0.232015,,0.232015,,0.118328,,70,,, +18671,0,0.071882,1,1,1,2,4,,4,2,Goddard,Rd,1680601,0.437,0.508,0,1.540334,4.5,4.5,0.113498,0.113498,0.113498,0.113498,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.119523,0.113505,0.113498,0.113498,0.119523,0.113505,0.113536,0.1135,0.113498,0.113498,0.113536,0.1135,0.113666,0.115395,0.113498,0.113498,0.113666,0.115395,0.113498,0.113498,0.113498,0.113498,0.113498,0.113498,,,,,,,0.119523,0.113505,0.113536,0.1135,0.113666,0.115395,0.113498,0.113498,0.113498,0.113498,0.048796,0.04699,0.046999,0.046989,0.047039,0.047557,0.046988,0.046988,0.024932,0.024932,36.084638,37.997687,37.987546,37.999514,37.943909,37.375287,38,38,38,38,,,,,,,,,,,3406,3406,0.113498,0.113498,0.113498,0.113498,0.113498,0.113498,0.113498,0.113498,0.046988,0.046988,38,38,, +24468,0,0.231089,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.265,2.496,0,4.951915,3.7,5,0.346634,0.346634,0.346634,0.346634,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.347569,0.346686,0.346634,0.346634,0.347569,0.346686,0.3467,0.346641,0.346634,0.346634,0.3467,0.346641,0.347079,0.347285,0.346634,0.346634,0.347079,0.347285,0.346634,0.346634,0.346634,0.346634,0.346634,0.346634,,,,,,,0.347569,0.346686,0.3467,0.346641,0.347079,0.347285,0.346634,0.346634,0.346634,0.346634,0.145867,0.145602,0.145606,0.145588,0.14572,0.145782,0.145586,0.145586,0.077415,0.077415,39.892404,39.994024,39.992364,39.999184,39.948671,39.925031,40,40,40,40,,,,,,,,,,,7568,7568,0.346634,0.346634,0.346634,0.346634,0.346634,0.346634,0.346634,0.346634,0.145586,0.145586,40,40,, +23380,1,0.184047,1,0,0,1,1,RON,4,2,N Wayne/E I 94,RAMP,4705434,0,0.184,0,,1.09,4,0.245396,,0.245396,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.246193,,0.245396,,0.246193,,0.245501,,0.245396,,0.245501,,0.245676,,0.245396,,0.245676,,0.245396,,0.245396,,0.245396,,,,,,,,0.246193,,0.245501,,0.245676,,0.245396,,0.245396,,0.106986,,0.106779,,0.106831,,0.106747,,0.057054,,44.854313,,44.980696,,44.948709,,45,,45,,,,,,,,,,,,5160,,0.245396,,0.245396,,0.245396,,0.245396,,0.106747,,45,,, +24057,0,0.100352,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.577,2.677,0,2.150391,3.7,5,0.150527,0.150527,0.150527,0.150527,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.151007,0.15053,0.150527,0.150527,0.151007,0.15053,0.15057,0.150536,0.150527,0.150527,0.15057,0.150536,0.151091,0.151017,0.150527,0.150527,0.151091,0.151017,0.150527,0.150527,0.150527,0.150527,0.150527,0.150527,,,,,,,0.151007,0.15053,0.15057,0.150536,0.151091,0.151017,0.150527,0.150527,0.150527,0.150527,0.063365,0.063222,0.063234,0.063224,0.063391,0.063368,0.063221,0.063221,0.033618,0.033618,39.872967,39.999259,39.988581,39.99768,39.85084,39.870341,40,40,40,40,,,,,,,,,,,7568,7568,0.150527,0.150527,0.150527,0.150527,0.150527,0.150527,0.150527,0.150527,0.063221,0.063221,40,40,, +24382,0,0.081001,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.496,2.577,0,1.735746,3.7,5,0.121502,0.121502,0.121502,0.121502,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.121889,0.121504,0.121502,0.121502,0.121889,0.121504,0.121537,0.121503,0.121502,0.121502,0.121537,0.121503,0.121957,0.121583,0.121502,0.121502,0.121957,0.121583,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,,,,,,,0.121889,0.121504,0.121537,0.121503,0.121957,0.121583,0.121502,0.121502,0.121502,0.121502,0.051147,0.051032,0.051041,0.051031,0.051167,0.051055,0.051031,0.051031,0.027135,0.027135,39.872967,39.99935,39.988581,39.999769,39.85084,39.973329,40,40,40,40,,,,,,,,,,,7568,7568,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.121502,0.051031,0.051031,40,40,, +24255,0,0.044254,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.677,2.721,0,0.948299,3.7,5,0.066381,0.066381,0.066381,0.066381,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.066542,0.066382,0.066381,0.066381,0.066542,0.066382,0.066393,0.066385,0.066381,0.066381,0.066393,0.066385,0.066575,0.066597,0.066381,0.066381,0.066575,0.066597,0.066381,0.066381,0.066381,0.066381,0.066381,0.066381,,,,,,,0.066542,0.066382,0.066393,0.066385,0.066575,0.066597,0.066381,0.066381,0.066381,0.066381,0.027928,0.02788,0.027884,0.027881,0.027938,0.027945,0.02788,0.02788,0.014825,0.014825,39.903001,39.999259,39.992701,39.99768,39.883295,39.870341,40,40,40,40,,,,,,,,,,,7568,7568,0.066381,0.066381,0.066381,0.066381,0.066381,0.066381,0.066381,0.066381,0.02788,0.02788,40,40,, +24202,0,0.511493,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.754,3.266,0,10.96056,3.7,5,0.767239,0.767239,0.767239,0.767239,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.777686,0.769303,0.767239,0.767239,0.777686,0.769303,0.768244,0.768397,0.767239,0.767239,0.768244,0.768397,0.769508,0.783431,0.767239,0.767239,0.769508,0.783431,0.767239,0.767239,0.767239,0.767239,0.767239,0.767239,,,,,,,0.777686,0.769303,0.768244,0.768397,0.769508,0.783431,0.767239,0.767239,0.767239,0.767239,0.325374,0.32286,0.322542,0.322588,0.322921,0.327098,0.32224,0.32224,0.17135,0.17135,39.462684,39.89267,39.947672,39.939731,39.882084,39.173307,40,40,40,40,,,,,,,,,,,7568,7568,0.767239,0.767239,0.767239,0.767239,0.767239,0.767239,0.767239,0.767239,0.32224,0.32224,40,40,, +31655,0,0.367635,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.877894,0.15,4,1.47054,1.47054,1.47054,1.47054,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,,,,,,,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,0.507336,0.507336,0.507336,0.507336,0.507336,0.507336,0.507336,0.507336,0.261021,0.261021,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,1.47054,0.507336,0.507336,15,15,, +11198,1,0.690979,3,0,0,1,1,,4,2,E I 94,,1576405,8.68,9.371,0,,0.8,7.5,0.592267,,0.592267,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.77713,,0.592267,,0.77713,,0.59364,,0.592267,,0.59364,,0.625386,,0.592267,,0.625386,,0.592267,,0.592267,,0.592267,,,,,,,,0.77713,,0.59364,,0.625386,,0.592267,,0.592267,,0.357515,,0.302468,,0.311992,,0.302056,,0.164848,,53.348521,,69.838176,,66.292961,,70,,70,,,,,,,,,,,,22704,,0.592267,,0.592267,,0.592267,,0.592267,,0.302056,,70,,, +14131,-1,0.405495,0,3,0,1,1,,4,2,W I 94,,1588802,9.02,9.425,0,,0.8,7.5,,0.347567,,0.347567,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.359295,,0.347567,,0.359295,,0.347972,,0.347567,,0.347972,,0.398979,,0.347567,,0.398979,,0.347567,,0.347567,,0.347567,,,,,,,,0.359295,,0.347972,,0.398979,,0.347567,,0.347567,,0.180778,,0.177381,,0.192683,,0.177259,,0.096739,,67.714968,,69.918577,,60.979804,,70,,70,,,,,,,,,,,,22704,,0.347567,,0.347567,,0.347567,,0.347567,,0.177259,,70,, +37939,1,0.213265,1,0,0,1,1,ROF,4,2,W I 94/Vining,RAMP,4718583,0,0.213,0,,2.24,5,0.319897,,0.319897,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.320059,,0.319897,,0.320059,,0.31998,,0.319897,,0.31998,,0.320789,,0.319897,,0.320789,,0.319897,,0.319897,,0.319897,,,,,,,,0.320059,,0.31998,,0.320789,,0.319897,,0.319897,,0.134405,,0.134382,,0.134624,,0.134357,,0.071444,,39.979679,,39.989578,,39.888783,,40,,40,,,,,,,,,,,,5160,,0.319897,,0.319897,,0.319897,,0.319897,,0.134357,,40,,, +22713,1,0.528928,1,0,0,1,1,RON,4,2,S Vining/E I 94,RAMP,4706256,0,0.529,0,,1.09,4,0.705238,,0.705238,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.705243,,0.705238,,0.705243,,0.705238,,0.705238,,0.705238,,0.705494,,0.705238,,0.705494,,0.705238,,0.705238,,0.705238,,,,,,,,0.705243,,0.705238,,0.705494,,0.705238,,0.705238,,0.30678,,0.306779,,0.306855,,0.306778,,0.163968,,44.999669,,44.99997,,44.983651,,45,,45,,,,,,,,,,,,5160,,0.705238,,0.705238,,0.705238,,0.705238,,0.306778,,45,,, +24197,0,0.064705,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.169,1.233,0,1.386532,4.5,4.5,0.102166,0.102166,0.102166,0.102166,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.199724,0.105144,0.102166,0.102166,0.199724,0.105144,0.125534,0.103497,0.102166,0.102166,0.125534,0.103497,0.169663,0.10527,0.102166,0.102166,0.169663,0.10527,0.102166,0.102166,0.102166,0.102166,0.102166,0.102166,,,,,,,0.199724,0.105144,0.125534,0.103497,0.169663,0.10527,0.102166,0.102166,0.102166,0.102166,0.071564,0.04319,0.049307,0.042696,0.062546,0.043228,0.042297,0.042297,0.022442,0.022442,19.438277,36.923446,30.926212,37.510953,22.882415,36.879499,38,38,38,38,,,,,,,,,,,3096,3096,0.102166,0.102166,0.102166,0.102166,0.102166,0.102166,0.102166,0.102166,0.042297,0.042297,38,38,, +24208,0,0.152327,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.016,1.169,0,3.264151,4.5,4.5,0.240516,0.240516,0.240516,0.240516,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.261911,0.247529,0.240516,0.240516,0.261911,0.247529,0.242721,0.246779,0.240516,0.240516,0.242721,0.246779,0.24802,0.25017,0.240516,0.240516,0.24802,0.25017,0.240516,0.240516,0.240516,0.240516,0.240516,0.240516,,,,,,,0.261911,0.247529,0.242721,0.246779,0.24802,0.25017,0.240516,0.240516,0.240516,0.240516,0.105992,0.101678,0.100235,0.101453,0.101825,0.10247,0.099574,0.099574,0.052833,0.052833,34.895895,36.923446,37.654925,37.035692,36.850389,36.533587,38,38,38,38,,,,,,,,,,,3096,3096,0.240516,0.240516,0.240516,0.240516,0.240516,0.240516,0.240516,0.240516,0.099574,0.099574,38,38,, +30527,0,0.605616,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.977492,0.15,4,2.422465,2.422465,2.422465,2.422465,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,,,,,,,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,0.83575,0.83575,0.83575,0.83575,0.83575,0.83575,0.83575,0.83575,0.429988,0.429988,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,2.422465,0.83575,0.83575,15,15,, +30529,0,0.54743,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.73065,0.15,4,2.189721,2.189721,2.189721,2.189721,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,,,,,,,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,0.755454,0.755454,0.755454,0.755454,0.755454,0.755454,0.755454,0.755454,0.388676,0.388676,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,2.189721,0.755454,0.755454,15,15,, +24497,0,0.230142,1,1,0,2,4,,4,2,Vining,Rd,4711341,0.61,0.84,0,4.931619,4.5,4.5,0.363382,0.363382,0.363382,0.363382,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.466268,0.370585,0.363382,0.363382,0.466268,0.370585,0.364093,0.366685,0.363382,0.363382,0.364093,0.366685,0.370675,0.420721,0.363382,0.363382,0.370675,0.420721,0.363382,0.363382,0.363382,0.363382,0.363382,0.363382,,,,,,,0.466268,0.370585,0.364093,0.366685,0.370675,0.420721,0.363382,0.363382,0.363382,0.363382,0.181306,0.152601,0.150653,0.151431,0.152628,0.167642,0.15044,0.15044,0.079823,0.079823,29.615025,37.261494,37.925875,37.657762,37.252371,32.821104,38,38,38,38,,,,,,,,,,,3096,3096,0.363382,0.363382,0.363382,0.363382,0.363382,0.363382,0.363382,0.363382,0.15044,0.15044,38,38,, +24318,0,0.176765,1,1,0,2,4,,4,2,Vining,Rd,4711341,0.84,1.016,0,3.787815,4.5,4.5,0.279102,0.279102,0.279102,0.279102,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.366189,0.291683,0.279102,0.279102,0.366189,0.291683,0.28166,0.288583,0.279102,0.279102,0.28166,0.288583,0.288429,0.328057,0.279102,0.279102,0.288429,0.328057,0.279102,0.279102,0.279102,0.279102,0.279102,0.279102,,,,,,,0.366189,0.291683,0.28166,0.288583,0.288429,0.328057,0.279102,0.279102,0.279102,0.279102,0.141674,0.119323,0.116316,0.118392,0.118346,0.130235,0.115548,0.115548,0.061309,0.061309,28.962848,36.36098,37.654925,36.751627,36.771143,32.329377,38,38,38,38,,,,,,,,,,,3096,3096,0.279102,0.279102,0.279102,0.279102,0.279102,0.279102,0.279102,0.279102,0.115548,0.115548,38,38,, +22560,1,0.338029,1,0,0,1,1,ROF,4,2,E I 94/Vining,RAMP,4706257,0,0.338,0,,2.24,5,0.507043,,0.507043,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.507226,,0.507043,,0.507226,,0.507291,,0.507043,,0.507291,,0.50746,,0.507043,,0.50746,,0.507043,,0.507043,,0.507043,,,,,,,,0.507226,,0.507291,,0.50746,,0.507043,,0.507043,,0.213013,,0.213033,,0.213083,,0.212958,,0.11324,,39.985606,,39.980447,,39.967151,,40,,40,,,,,,,,,,,,5160,,0.507043,,0.507043,,0.507043,,0.507043,,0.212958,,40,,, +37940,1,0.332448,1,0,0,1,1,RON,4,2,Vining/W I 94,RAMP,4718582,0,0.332,0,,1.09,4,0.443264,,0.443264,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.443303,,0.443264,,0.443303,,0.443933,,0.443264,,0.443933,,0.446029,,0.443264,,0.446029,,0.443264,,0.443264,,0.443264,,,,,,,,0.443303,,0.443933,,0.446029,,0.443264,,0.443264,,0.192831,,0.19302,,0.193649,,0.19282,,0.103059,,44.996026,,44.932184,,44.721056,,45,,45,,,,,,,,,,,,5160,,0.443264,,0.443264,,0.443264,,0.443264,,0.19282,,45,,, +22712,1,0.241002,1,0,0,1,1,RON,4,2,N Vining/E I 94,RAMP,4706255,0,0.241,0,,1.09,4,0.321336,,0.321336,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.321633,,0.321336,,0.321633,,0.321354,,0.321336,,0.321354,,0.321441,,0.321336,,0.321441,,0.321336,,0.321336,,0.321336,,,,,,,,0.321633,,0.321354,,0.321441,,0.321336,,0.321336,,0.13987,,0.139787,,0.139813,,0.139781,,0.074711,,44.958472,,44.997432,,44.985254,,45,,45,,,,,,,,,,,,5160,,0.321336,,0.321336,,0.321336,,0.321336,,0.139781,,45,,, +24074,0,0.220599,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.283,1.503,0,4.727114,4.5,4.5,0.348314,0.348314,0.348314,0.348314,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.381375,0.377086,0.348314,0.348314,0.381375,0.377086,0.367071,0.357561,0.348314,0.348314,0.367071,0.357561,0.384711,0.458738,0.348314,0.348314,0.384711,0.458738,0.348314,0.348314,0.348314,0.348314,0.348314,0.348314,,,,,,,0.381375,0.377086,0.367071,0.357561,0.384711,0.458738,0.348314,0.348314,0.348314,0.348314,0.15412,0.152834,0.149829,0.146976,0.155121,0.177329,0.144202,0.144202,0.076513,0.076513,34.705788,35.100538,36.058244,37.017276,34.404821,28.852921,38,38,38,38,,,,,,,,,,,3096,3096,0.348314,0.348314,0.348314,0.348314,0.348314,0.348314,0.348314,0.348314,0.144202,0.144202,38,38,, +24084,0,0.049573,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.233,1.283,0,1.062287,4.5,4.5,0.078274,0.078274,0.078274,0.078274,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.085703,0.080556,0.078274,0.078274,0.085703,0.080556,0.082489,0.079294,0.078274,0.078274,0.082489,0.079294,0.086453,0.080652,0.078274,0.078274,0.086453,0.080652,0.078274,0.078274,0.078274,0.078274,0.078274,0.078274,,,,,,,0.085703,0.080556,0.082489,0.079294,0.086453,0.080652,0.078274,0.078274,0.078274,0.078274,0.034634,0.03309,0.03367,0.032711,0.034859,0.033119,0.032405,0.032405,0.017194,0.017194,34.705788,36.923446,36.058244,37.510953,34.404821,36.879499,38,38,38,38,,,,,,,,,,,3096,3096,0.078274,0.078274,0.078274,0.078274,0.078274,0.078274,0.078274,0.078274,0.032405,0.032405,38,38,, +23306,-1,0.108645,0,2,0,2,4,DIV,4,2,Vining,Rd,4706252,0,0.109,0,2.328107,4.5,4.5,,0.151598,,0.151598,,43,,20000,,4540,,10000,,6452,,6880,,6872,,0.151598,,0.151598,,0.151598,,0.151598,,0.151598,,0.151598,,0.151815,,0.151598,,0.151815,,0.151598,,0.151598,,0.151598,,,,,,,,0.151598,,0.151598,,0.151815,,0.151598,,0.151598,,0.065036,,0.065036,,0.0651,,0.065035,,0.034691,,42.999778,,42.999814,,42.938546,,43,,43,,,,,,,,,,,,6880,,0.151598,,0.151598,,0.151598,,0.151598,,0.065035,,43,, +24487,0,0.010855,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.503,1.514,0,0.232603,4.5,4.5,0.017139,0.017139,0.017139,0.017139,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.018875,0.017142,0.017139,0.017139,0.018875,0.017142,0.018848,0.017142,0.017139,0.017139,0.018848,0.017142,0.03142,0.018031,0.017139,0.017139,0.03142,0.018031,0.017139,0.017139,0.017139,0.017139,0.017139,0.017139,,,,,,,0.018875,0.017142,0.018848,0.017142,0.03142,0.018031,0.017139,0.017139,0.017139,0.017139,0.007616,0.007097,0.007608,0.007096,0.01138,0.007363,0.007096,0.007096,0.003765,0.003765,34.505286,37.992885,34.55448,37.994032,20.728333,36.119578,38,38,38,38,,,,,,,,,,,3096,3096,0.017139,0.017139,0.017139,0.017139,0.017139,0.017139,0.017139,0.017139,0.007096,0.007096,38,38,, +22714,1,0.105639,1,0,0,1,1,RON,4,2,Vining/E I 94,RAMP,4706256,0.529,0.634,0,,1.09,4,0.140852,,0.140852,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.141222,,0.140852,,0.141222,,0.140877,,0.140852,,0.140877,,0.14163,,0.140852,,0.14163,,0.140852,,0.140852,,0.140852,,,,,,,,0.141222,,0.140877,,0.14163,,0.140852,,0.140852,,0.061382,,0.061278,,0.061504,,0.06127,,0.032748,,44.88202,,44.991977,,44.752762,,45,,45,,,,,,,,,,,,5160,,0.140852,,0.140852,,0.140852,,0.140852,,0.06127,,45,,, +16909,0,0.99094,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,4.936,5.926,0,21.234429,4.5,4.5,1.564642,1.564642,1.564642,1.564642,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.866717,1.602313,1.564642,1.564642,1.866717,1.602313,1.652475,1.650856,1.564642,1.564642,1.652475,1.650856,1.794235,1.899477,1.564642,1.564642,1.794235,1.899477,1.564642,1.564642,1.564642,1.564642,1.564642,1.564642,,,,,,,1.866717,1.602313,1.652475,1.650856,1.794235,1.899477,1.564642,1.564642,1.564642,1.564642,0.738384,0.659063,0.674112,0.673626,0.71664,0.748212,0.647762,0.647762,0.3437,0.3437,31.850781,37.1066,35.980209,36.01549,33.137472,31.301455,38,38,38,38,,,,,,,,,,,3096,3096,1.564642,1.564642,1.564642,1.564642,1.564642,1.564642,1.564642,1.564642,0.647762,0.647762,38,38,, +18008,0,0.380636,2,2,0,2,4,,3,2,Van Born,Rd,1670203,2.407,2.788,0,8.156496,6,4.5,0.692066,0.692066,0.692066,0.692066,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.736368,0.703981,0.692066,0.692066,0.736368,0.703981,0.69369,0.693162,0.692066,0.692066,0.69369,0.693162,0.733244,0.705859,0.692066,0.692066,0.733244,0.705859,0.692066,0.692066,0.692066,0.692066,0.692066,0.692066,,,,,,,0.736368,0.703981,0.69369,0.693162,0.733244,0.705859,0.692066,0.692066,0.692066,0.692066,0.289425,0.279709,0.276621,0.276463,0.288488,0.280272,0.276134,0.276134,0.14568,0.14568,31.014633,32.441466,32.922772,32.947833,31.146794,32.355185,33,33,33,33,,,,,,,,,,,5160,5160,0.692066,0.692066,0.692066,0.692066,0.692066,0.692066,0.692066,0.692066,0.276134,0.276134,33,33,, +18073,0,0.283313,1,1,0,2,5,,4,2,Waynecorse,Blvd,1665707,0,0.283,0,6.070994,5.8,4.5,0.629585,0.629585,0.629585,0.629585,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.634777,0.633041,0.629585,0.629585,0.634777,0.633041,0.631685,0.630644,0.629585,0.629585,0.631685,0.630644,0.632283,0.636217,0.629585,0.629585,0.632283,0.636217,0.629585,0.629585,0.629585,0.629585,0.629585,0.629585,,,,,,,0.634777,0.633041,0.631685,0.630644,0.632283,0.636217,0.629585,0.629585,0.629585,0.629585,0.241429,0.240909,0.240502,0.240189,0.240681,0.241861,0.239872,0.239872,0.125602,0.125602,26.779144,26.852576,26.910206,26.954659,26.884766,26.718537,27,27,27,27,,,,,,,,,,,2580,2580,0.629585,0.629585,0.629585,0.629585,0.629585,0.629585,0.629585,0.629585,0.239872,0.239872,27,27,, +18310,0,0.775744,1,1,0,2,5,,4,2,Beverly,Rd,1664409,0.303,1.078,0,16.623078,5.8,4.5,1.723875,1.723875,1.723875,1.723875,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.723987,1.723878,1.723875,1.723875,1.723987,1.723878,1.723914,1.723877,1.723875,1.723875,1.723914,1.723877,1.724008,1.724077,1.723875,1.723875,1.724008,1.724077,1.723875,1.723875,1.723875,1.723875,1.723875,1.723875,,,,,,,1.723987,1.723878,1.723914,1.723877,1.724008,1.724077,1.723875,1.723875,1.723875,1.723875,0.65683,0.656797,0.656808,0.656797,0.656836,0.656857,0.656796,0.656796,0.343913,0.343913,26.998236,26.999954,26.999382,26.999968,26.997919,26.996838,27,27,27,27,,,,,,,,,,,2580,2580,1.723875,1.723875,1.723875,1.723875,1.723875,1.723875,1.723875,1.723875,0.656796,0.656796,27,27,, +24334,0,0.278736,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.272,4.551,0,5.972913,3.7,5,0.418104,0.418104,0.418104,0.418104,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.492553,0.487379,0.418104,0.418104,0.492553,0.487379,0.453164,0.454765,0.418104,0.418104,0.453164,0.454765,0.584376,0.560116,0.418104,0.418104,0.584376,0.560116,0.418104,0.418104,0.418104,0.418104,0.418104,0.418104,,,,,,,0.492553,0.487379,0.453164,0.454765,0.584376,0.560116,0.418104,0.418104,0.418104,0.418104,0.197938,0.196386,0.186122,0.186602,0.225485,0.218207,0.175604,0.175604,0.093377,0.093377,33.954042,34.314512,36.905309,36.775358,28.618812,29.858365,40,40,40,40,,,,,,,,,,,4162,4162,0.418104,0.418104,0.418104,0.418104,0.418104,0.418104,0.418104,0.418104,0.175604,0.175604,40,40,, +30603,0,0.9967,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.357852,0.15,4,3.986799,3.986799,3.986799,3.986799,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,,,,,,,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,1.375446,1.375446,1.375446,1.375446,1.375446,1.375446,1.375446,1.375446,0.707657,0.707657,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,3.986799,1.375446,1.375446,15,15,, +30607,0,0.504126,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.802693,0.15,4,2.016503,2.016503,2.016503,2.016503,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,,,,,,,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,0.695693,0.695693,0.695693,0.695693,0.695693,0.695694,0.695693,0.695693,0.357929,0.357929,14.999998,15,15,15,14.999999,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,2.016503,0.695693,0.695693,15,15,, +24482,0,0.417727,1,1,1,2,3,,4,2,Wayne,Rd,4719470,3.854,4.272,0,8.951289,3.7,5,0.62659,0.62659,0.62659,0.62659,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.703431,0.672782,0.62659,0.62659,0.703431,0.672782,0.633666,0.637523,0.62659,0.62659,0.633666,0.637523,0.721381,0.738014,0.62659,0.62659,0.721381,0.738014,0.62659,0.62659,0.62659,0.62659,0.62659,0.62659,,,,,,,0.703431,0.672782,0.633666,0.637523,0.721381,0.738014,0.62659,0.62659,0.62659,0.62659,0.28622,0.277025,0.26529,0.266448,0.291605,0.296595,0.263168,0.263168,0.139938,0.139938,35.63049,37.253707,39.553373,39.314068,34.743909,33.960879,40,40,40,40,,,,,,,,,,,4162,4162,0.62659,0.62659,0.62659,0.62659,0.62659,0.62659,0.62659,0.62659,0.263168,0.263168,40,40,, +16910,0,0.309574,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,4.626,4.936,0,6.633739,4.5,4.5,0.488802,0.488802,0.488802,0.488802,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.49171,0.488873,0.488802,0.488802,0.49171,0.488873,0.488932,0.488828,0.488802,0.488802,0.488932,0.488828,0.491003,0.490613,0.488802,0.488802,0.491003,0.490613,0.488802,0.488802,0.488802,0.488802,0.488802,0.488802,,,,,,,0.49171,0.488873,0.488932,0.488828,0.491003,0.490613,0.488802,0.488802,0.488802,0.488802,0.203236,0.202385,0.202403,0.202372,0.203024,0.202907,0.202364,0.202364,0.107373,0.107373,37.77526,37.994441,37.989913,37.997953,37.829612,37.859745,38,38,38,38,,,,,,,,,,,3096,3096,0.488802,0.488802,0.488802,0.488802,0.488802,0.488802,0.488802,0.488802,0.202364,0.202364,38,38,, +17626,0,0.479139,2,2,0,2,4,,3,2,Van Born,Rd,1670203,1.928,2.407,0,10.267258,6,4.5,0.871161,0.871161,0.871161,0.871161,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.926928,0.88616,0.871161,0.871161,0.926928,0.88616,0.873205,0.872541,0.871161,0.871161,0.873205,0.872541,0.922995,0.888523,0.871161,0.871161,0.922995,0.888523,0.871161,0.871161,0.871161,0.871161,0.871161,0.871161,,,,,,,0.926928,0.88616,0.873205,0.872541,0.922995,0.888523,0.871161,0.871161,0.871161,0.871161,0.364323,0.352093,0.348206,0.348007,0.363143,0.352802,0.347593,0.347593,0.183379,0.183379,31.014633,32.441466,32.922772,32.947833,31.146794,32.355185,33,33,33,33,,,,,,,,,,,5160,5160,0.871161,0.871161,0.871161,0.871161,0.871161,0.871161,0.871161,0.871161,0.347593,0.347593,33,33,, +24263,0,0.515995,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.806,5.321,0,11.057039,3.7,5,0.773993,0.773993,0.773993,0.773993,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,1.037002,1.121565,0.773993,0.773993,1.037002,1.121565,0.911526,0.918543,0.773993,0.773993,0.911526,0.918543,1.317367,1.254393,0.773993,0.773993,1.317367,1.254393,0.773993,0.773993,0.773993,0.773993,0.773993,0.773993,,,,,,,1.037002,1.121565,0.911526,0.918543,1.317367,1.254393,0.773993,0.773993,0.773993,0.773993,0.40398,0.429349,0.366337,0.368442,0.488089,0.469197,0.325077,0.325077,0.172858,0.172858,29.855004,27.60402,33.964711,33.705237,23.501194,24.681023,40,40,40,40,,,,,,,,,,,4162,4162,0.773993,0.773993,0.773993,0.773993,0.773993,0.773993,0.773993,0.773993,0.325077,0.325077,40,40,, +24352,0,0.06233,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.743,4.806,0,1.33564,3.7,5,0.093495,0.093495,0.093495,0.093495,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.140058,0.142994,0.093495,0.093495,0.140058,0.142994,0.116974,0.114408,0.093495,0.093495,0.116974,0.114408,0.186116,0.178841,0.093495,0.093495,0.186116,0.178841,0.093495,0.093495,0.093495,0.093495,0.093495,0.093495,,,,,,,0.140058,0.142994,0.116974,0.114408,0.186116,0.178841,0.093495,0.093495,0.093495,0.093495,0.053237,0.054118,0.046312,0.045542,0.067054,0.064872,0.039268,0.039268,0.020881,0.020881,26.701658,26.153451,31.971004,32.68831,20.093894,20.911222,40,40,40,40,,,,,,,,,,,4162,4162,0.093495,0.093495,0.093495,0.093495,0.093495,0.093495,0.093495,0.093495,0.039268,0.039268,40,40,, +24407,0,0.192708,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.551,4.743,0,4.129451,3.7,5,0.289062,0.289062,0.289062,0.289062,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.45577,0.43265,0.289062,0.289062,0.45577,0.43265,0.363591,0.356005,0.289062,0.289062,0.363591,0.356005,0.569332,0.583821,0.289062,0.289062,0.569332,0.583821,0.289062,0.289062,0.289062,0.289062,0.289062,0.289062,,,,,,,0.45577,0.43265,0.363591,0.356005,0.569332,0.583821,0.289062,0.289062,0.289062,0.289062,0.171418,0.164482,0.143765,0.141489,0.205487,0.209834,0.121406,0.121406,0.064557,0.064557,25.369083,26.724777,31.800745,32.478409,20.30883,19.804822,40,40,40,40,,,,,,,,,,,4162,4162,0.289062,0.289062,0.289062,0.289062,0.289062,0.289062,0.289062,0.289062,0.121406,0.121406,40,40,, +30539,0,0.500134,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.717149,0.15,4,2.000535,2.000535,2.000535,2.000535,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,,,,,,,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,0.690184,0.690184,0.690184,0.690184,0.690184,0.690184,0.690184,0.690184,0.355095,0.355095,15,15,15,15,14.999998,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,2.000535,0.690184,0.690184,15,15,, +23054,-1,0.497679,0,2,0,2,5,DIV,4,2,Vining,Rd,4706252,0.257,0.754,0,10.664545,5.8,4.5,,0.933148,,0.933148,,32,,17000,,3859,,8500,,5484,,5848,,5841,,0.933477,,0.933148,,0.933477,,0.950081,,0.933148,,0.950081,,1.185963,,0.933148,,1.185963,,0.933148,,0.933148,,0.933148,,,,,,,,0.933477,,0.950081,,1.185963,,0.933148,,0.933148,,0.369625,,0.374607,,0.445371,,0.369526,,0.194717,,31.988717,,31.429655,,25.178461,,32,,32,,,,,,,,,,,,5848,,0.933148,,0.933148,,0.933148,,0.933148,,0.369526,,32,, +24075,1,0.487923,2,0,0,2,5,DIV,4,2,Vining,Rd,4711341,1.776,2.264,0,10.455499,5.8,4.5,0.914856,,0.914856,,32,,17000,,3859,,8500,,5484,,5848,,5841,,0.936284,,0.914856,,0.936284,,0.935936,,0.914856,,0.935936,,0.950929,,0.914856,,0.950929,,0.914856,,0.914856,,0.914856,,,,,,,,0.936284,,0.935936,,0.950929,,0.914856,,0.914856,,0.368711,,0.368607,,0.373105,,0.362283,,0.1909,,31.267642,,31.279262,,30.786087,,32,,32,,,,,,,,,,,,5848,,0.914856,,0.914856,,0.914856,,0.914856,,0.362283,,32,,, +19008,0,0.018323,1,1,0,2,4,,4,2,Wick,Rd,1682705,2.507,2.525,0,0.392638,4.5,4.5,0.028931,0.028931,0.028931,0.028931,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.028945,0.028931,0.028931,0.028931,0.028945,0.028931,0.028942,0.028931,0.028931,0.028931,0.028942,0.028931,0.028954,0.029088,0.028931,0.028931,0.028954,0.029088,0.028931,0.028931,0.028931,0.028931,0.028931,0.028931,,,,,,,0.028945,0.028931,0.028942,0.028931,0.028954,0.029088,0.028931,0.028931,0.028931,0.028931,0.011982,0.011978,0.011981,0.011978,0.011984,0.012024,0.011978,0.011978,0.006355,0.006355,37.981611,38,37.985745,38,37.970741,37.795868,38,38,38,38,,,,,,,,,,,3096,3096,0.028931,0.028931,0.028931,0.028931,0.028931,0.028931,0.028931,0.028931,0.011978,0.011978,38,38,, +23644,1,0.019278,2,0,0,2,5,DIV,4,2,Smith,Rd,4706176,0,0.019,0,0.413093,5.8,4.5,0.036146,,0.036146,,32,,17000,,3859,,8500,,5484,,5848,,5841,,0.036224,,0.036146,,0.036224,,0.038522,,0.036146,,0.038522,,0.039047,,0.036146,,0.039047,,0.036146,,0.036146,,0.036146,,,,,,,,0.036224,,0.038522,,0.039047,,0.036146,,0.036146,,0.014337,,0.015027,,0.015184,,0.014314,,0.007542,,31.930852,,30.025756,,29.621985,,32,,32,,,,,,,,,,,,5848,,0.036146,,0.036146,,0.036146,,0.036146,,0.014314,,32,,, +24070,1,0.015532,2,0,0,2,5,DIV,4,2,Vining,Rd,4711341,2.264,2.28,0,0.332822,5.8,4.5,0.029122,,0.029122,,32,,17000,,3859,,8500,,5484,,5848,,5841,,0.029484,,0.029122,,0.029484,,0.029777,,0.029122,,0.029777,,0.030107,,0.029122,,0.030107,,0.029122,,0.029122,,0.029122,,,,,,,,0.029484,,0.029777,,0.030107,,0.029122,,0.029122,,0.011641,,0.011729,,0.011828,,0.011532,,0.006077,,31.607305,,31.295793,,30.953378,,32,,32,,,,,,,,,,,,5848,,0.029122,,0.029122,,0.029122,,0.029122,,0.011532,,32,,, +22518,-1,0.016206,0,2,0,2,5,DIV,4,2,Smith,Rd,4706175,0,0.016,0,0.347269,5.8,4.5,,0.030386,,0.030386,,32,,17000,,3859,,8500,,5484,,5848,,5841,,0.049684,,0.030386,,0.049684,,0.066784,,0.030386,,0.066784,,0.083103,,0.030386,,0.083103,,0.030386,,0.030386,,0.030386,,,,,,,,0.049684,,0.066784,,0.083103,,0.030386,,0.030386,,0.017822,,0.022952,,0.027848,,0.012033,,0.006341,,19.570952,,14.559615,,11.700578,,32,,32,,,,,,,,,,,,5848,,0.030386,,0.030386,,0.030386,,0.030386,,0.012033,,32,, +22924,-1,0.006283,0,2,0,2,5,DIV,4,2,Vining,Rd,4706252,0.754,0.761,0,0.134631,5.8,4.5,,0.01178,,0.01178,,32,,17000,,3859,,8500,,5484,,5848,,5841,,0.019262,,0.01178,,0.019262,,0.025891,,0.01178,,0.025891,,0.032218,,0.01178,,0.032218,,0.01178,,0.01178,,0.01178,,,,,,,,0.019262,,0.025891,,0.032218,,0.01178,,0.01178,,0.006909,,0.008898,,0.010796,,0.004665,,0.002458,,19.570952,,14.559615,,11.700578,,32,,32,,,,,,,,,,,,5848,,0.01178,,0.01178,,0.01178,,0.01178,,0.004665,,32,, +30538,0,0.004431,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.094942,0.15,4,0.017722,0.017722,0.017722,0.017722,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.017722,0.017723,0.017722,0.017722,0.017722,0.017723,0.017723,0.017723,0.017722,0.017722,0.017723,0.017723,0.017724,0.017723,0.017722,0.017722,0.017724,0.017723,0.017722,0.017722,0.017722,0.017722,0.017722,0.017722,,,,,,,0.017722,0.017723,0.017723,0.017723,0.017724,0.017723,0.017722,0.017722,0.017722,0.017722,0.006114,0.006114,0.006114,0.006114,0.006115,0.006114,0.006114,0.006114,0.003146,0.003146,14.999987,14.999737,14.99967,14.999538,14.998808,14.999357,15,15,15,15,,,,,,,,,,,34400,34400,0.017722,0.017722,0.017722,0.017722,0.017722,0.017722,0.017722,0.017722,0.006114,0.006114,15,15,, +17584,0,0.495585,2,2,0,2,4,,3,2,Van Born,Rd,1670203,2.788,3.283,0,10.619671,6,4.5,0.901063,0.901063,0.901063,0.901063,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.934291,0.913099,0.901063,0.901063,0.934291,0.913099,0.901883,0.901736,0.901063,0.901063,0.901883,0.901736,0.925755,0.913881,0.901063,0.901063,0.925755,0.913881,0.901063,0.901063,0.901063,0.901063,0.901063,0.901063,,,,,,,0.934291,0.913099,0.901883,0.901736,0.925755,0.913881,0.901063,0.901063,0.901063,0.901063,0.369493,0.363135,0.35977,0.359726,0.366932,0.363369,0.359524,0.359524,0.189674,0.189674,31.826353,32.564999,32.96999,32.975356,32.119828,32.537158,33,33,33,33,,,,,,,,,,,5160,5160,0.901063,0.901063,0.901063,0.901063,0.901063,0.901063,0.901063,0.901063,0.359524,0.359524,33,33,, +30605,0,0.53062,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.370435,0.15,4,2.122481,2.122481,2.122481,2.122481,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.122482,2.122481,2.122481,2.122481,2.122482,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,,,,,,,2.122482,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,0.732256,0.732256,0.732256,0.732256,0.732256,0.732256,0.732256,0.732256,0.37674,0.37674,14.999997,14.999999,14.999999,15,14.999998,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,2.122481,0.732256,0.732256,15,15,, +30606,0,0.304401,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.522883,0.15,4,1.217605,1.217605,1.217605,1.217605,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,,,,,,,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,0.420074,0.420074,0.420074,0.420074,0.420074,0.420074,0.420074,0.420074,0.216125,0.216125,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,1.217605,0.420074,0.420074,15,15,, +15862,0,0.180667,1,1,0,2,5,,3,2,Howe,Rd,4712012,0,0.181,0,3.871427,8,4.5,0.4336,0.4336,0.4336,0.4336,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.454319,0.434312,0.4336,0.4336,0.454319,0.434312,0.435886,0.433917,0.4336,0.4336,0.435886,0.433917,0.47362,0.447451,0.4336,0.4336,0.47362,0.447451,0.4336,0.4336,0.4336,0.4336,0.4336,0.4336,,,,,,,0.454319,0.434312,0.435886,0.433917,0.47362,0.447451,0.4336,0.4336,0.4336,0.4336,0.168816,0.162813,0.163286,0.162695,0.174606,0.166755,0.1626,0.1626,0.084913,0.084913,23.859872,24.959028,24.868883,24.981712,22.887531,24.22608,25,25,25,25,,,,,,,,,,,2408,2408,0.4336,0.4336,0.4336,0.4336,0.4336,0.4336,0.4336,0.4336,0.1626,0.1626,25,25,, +15146,0,0.272361,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0.996,1.268,0,5.836316,8,4.5,0.653667,0.653667,0.653667,0.653667,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.664813,0.661742,0.653667,0.653667,0.664813,0.661742,0.658593,0.658243,0.653667,0.653667,0.658593,0.658243,0.686263,0.690198,0.653667,0.653667,0.686263,0.690198,0.653667,0.653667,0.653667,0.653667,0.653667,0.653667,,,,,,,0.664813,0.661742,0.658593,0.658243,0.686263,0.690198,0.653667,0.653667,0.653667,0.653667,0.248469,0.247548,0.246603,0.246498,0.254904,0.256084,0.245125,0.245125,0.12801,0.12801,24.580879,24.694944,24.81302,24.826233,23.812572,23.67682,25,25,25,25,,,,,,,,,,,2408,2408,0.653667,0.653667,0.653667,0.653667,0.653667,0.653667,0.653667,0.653667,0.245125,0.245125,25,25,, +15677,0,0.257515,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.539,7.796,0,5.518176,5,5,0.441454,0.441454,0.441454,0.441454,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.53354,0.512778,0.441454,0.441454,0.53354,0.512778,0.482698,0.489922,0.441454,0.441454,0.482698,0.489922,0.570955,0.602553,0.441454,0.441454,0.570955,0.602553,0.441454,0.441454,0.441454,0.441454,0.441454,0.441454,,,,,,,0.53354,0.512778,0.482698,0.489922,0.570955,0.602553,0.441454,0.441454,0.441454,0.441454,0.206415,0.200186,0.191162,0.193329,0.217639,0.227119,0.178789,0.178789,0.094545,0.094545,28.959212,30.131711,32.009461,31.537432,27.0615,25.642365,35,35,35,35,,,,,,,,,,,7946,7946,0.441454,0.441454,0.441454,0.441454,0.441454,0.441454,0.441454,0.441454,0.178789,0.178789,35,35,, +15806,1,0.639659,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,7.86,8.5,0,13.706986,5,5,0.959489,,0.959489,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.99061,,0.959489,,0.99061,,0.962029,,0.959489,,0.962029,,0.993914,,0.959489,,0.993914,,0.959489,,0.959489,,0.959489,,,,,,,,0.99061,,0.962029,,0.993914,,0.959489,,0.959489,,0.412322,,0.403747,,0.413313,,0.402985,,0.214286,,38.743351,,39.8944,,38.614577,,40,,40,,,,,,,,,,,,13760,,0.959489,,0.959489,,0.959489,,0.959489,,0.402985,,40,,, +15849,0,0.236674,1,1,0,2,4,,3,2,Venoy,Rd,1599408,2.49,2.727,0,5.071578,6,4.5,0.430316,0.430316,0.430316,0.430316,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.48543,0.481194,0.430316,0.430316,0.48543,0.481194,0.494867,0.472488,0.430316,0.430316,0.494867,0.472488,0.584027,0.539878,0.430316,0.430316,0.584027,0.539878,0.430316,0.430316,0.430316,0.430316,0.430316,0.430316,,,,,,,0.48543,0.481194,0.494867,0.472488,0.584027,0.539878,0.430316,0.430316,0.430316,0.430316,0.18823,0.186959,0.191061,0.184348,0.217809,0.204565,0.171696,0.171696,0.090581,0.090581,29.253286,29.510824,28.69545,30.05455,24.314648,26.302998,33,33,33,33,,,,,,,,,,,2580,2580,0.430316,0.430316,0.430316,0.430316,0.430316,0.430316,0.430316,0.430316,0.171696,0.171696,33,33,, +16127,0,0.43895,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,7.593,8.031,0,9.406067,6,4.5,0.798091,0.798091,0.798091,0.798091,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.961641,0.925117,0.798091,0.798091,0.961641,0.925117,0.86558,0.864179,0.798091,0.798091,0.86558,0.864179,1.059587,1.089576,0.798091,0.798091,1.059587,1.089576,0.798091,0.798091,0.798091,0.798091,0.798091,0.798091,,,,,,,0.961641,0.925117,0.86558,0.864179,1.059587,1.089576,0.798091,0.798091,0.798091,0.798091,0.367503,0.356546,0.338685,0.338265,0.396887,0.405884,0.318438,0.318438,0.167998,0.167998,27.387555,28.468831,30.42697,30.476321,24.855908,24.171782,33,33,33,33,,,,,,,,,,,5418,5418,0.798091,0.798091,0.798091,0.798091,0.798091,0.798091,0.798091,0.798091,0.318438,0.318438,33,33,, +16494,0,0.220136,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.577,4.798,0,4.717203,6,4.5,0.400248,0.400248,0.400248,0.400248,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.487481,0.463744,0.400248,0.400248,0.487481,0.463744,0.440067,0.43915,0.400248,0.400248,0.440067,0.43915,0.550358,0.564551,0.400248,0.400248,0.550358,0.564551,0.400248,0.400248,0.400248,0.400248,0.400248,0.400248,,,,,,,0.487481,0.463744,0.440067,0.43915,0.550358,0.564551,0.400248,0.400248,0.400248,0.400248,0.185869,0.178748,0.171645,0.17137,0.204732,0.20899,0.159699,0.159699,0.084252,0.084252,27.094758,28.481572,30.014005,30.076641,23.999225,23.395874,33,33,33,33,,,,,,,,,,,2580,2580,0.400248,0.400248,0.400248,0.400248,0.400248,0.400248,0.400248,0.400248,0.159699,0.159699,33,33,, +17928,0,0.513807,1,1,1,2,5,,3,2,Marquette,Ave,1685107,0.726,1.239,0,11.010142,8,4.5,1.233136,1.233136,1.233136,1.233136,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,1.233136,1.235655,1.233136,1.233136,1.233136,1.235655,1.233136,1.233145,1.233136,1.233136,1.233136,1.233145,1.233729,1.233378,1.233136,1.233136,1.233729,1.233378,1.233136,1.233136,1.233136,1.233136,1.233136,1.233136,,,,,,,1.233136,1.235655,1.233136,1.233145,1.233729,1.233378,1.233136,1.233136,1.233136,1.233136,0.462426,0.463182,0.462426,0.462429,0.462604,0.462499,0.462426,0.462426,0.241489,0.241489,24.999993,24.949028,24.999999,24.999821,24.987983,24.99509,25,25,25,25,,,,,,,,,,,2649,2649,1.233136,1.233136,1.233136,1.233136,1.233136,1.233136,1.233136,1.233136,0.462426,0.462426,25,25,, +18013,0,0.731153,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,1.037,1.768,0,15.667573,8,4.5,1.754768,1.754768,1.754768,1.754768,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.789768,1.758031,1.754768,1.754768,1.789768,1.758031,1.759137,1.75568,1.754768,1.754768,1.759137,1.75568,1.871472,1.811763,1.754768,1.754768,1.871472,1.811763,1.754768,1.754768,1.754768,1.754768,1.754768,1.754768,,,,,,,1.789768,1.758031,1.759137,1.75568,1.871472,1.811763,1.754768,1.754768,1.754768,1.754768,0.668538,0.659017,0.659349,0.658312,0.693049,0.675137,0.658038,0.658038,0.343642,0.343642,24.511111,24.953608,24.937917,24.987011,23.44101,24.213545,25,25,25,25,,,,,,,,,,,2408,2408,1.754768,1.754768,1.754768,1.754768,1.754768,1.754768,1.754768,1.754768,0.658038,0.658038,25,25,, +18447,0,0.389609,1,1,0,2,5,,3,2,Hunter,Ave,1678601,0,0.39,0,8.34877,8,4.5,0.935062,0.935062,0.935062,0.935062,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.939714,0.935062,0.935062,0.935062,0.939714,0.935062,0.940771,0.935062,0.935062,0.935062,0.940771,0.935062,0.967419,0.935063,0.935062,0.935062,0.967419,0.935063,0.935062,0.935062,0.935062,0.935062,0.935062,0.935062,,,,,,,0.939714,0.935062,0.940771,0.935062,0.967419,0.935063,0.935062,0.935062,0.935062,0.935062,0.352044,0.350648,0.352361,0.350648,0.360355,0.350649,0.350648,0.350648,0.183116,0.183116,24.876252,25,24.848302,25,24.163831,24.999972,25,25,25,25,,,,,,,,,,,2408,2408,0.935062,0.935062,0.935062,0.935062,0.935062,0.935062,0.935062,0.935062,0.350648,0.350648,25,25,, +22435,0,0.436197,1,1,0,2,5,,3,2,John Hix,Rd,4705360,1.666,2.102,0,9.347072,8,4.5,1.046872,1.046872,1.046872,1.046872,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.118295,1.065823,1.046872,1.046872,1.118295,1.065823,1.060372,1.062049,1.046872,1.046872,1.060372,1.062049,1.138973,1.152933,1.046872,1.046872,1.138973,1.152933,1.046872,1.046872,1.046872,1.046872,1.046872,1.046872,,,,,,,1.118295,1.065823,1.060372,1.062049,1.138973,1.152933,1.046872,1.046872,1.046872,1.046872,0.414004,0.398262,0.396627,0.39713,0.420207,0.424395,0.392577,0.392577,0.205012,0.205012,23.403305,24.55548,24.681723,24.642738,22.978427,22.700184,25,25,25,25,,,,,,,,,,,2408,2408,1.046872,1.046872,1.046872,1.046872,1.046872,1.046872,1.046872,1.046872,0.392577,0.392577,25,25,, +23158,-1,0.329787,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.199,8.529,0,7.066854,5,5,,0.49468,,0.49468,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.50747,,0.49468,,0.50747,,0.498557,,0.49468,,0.498557,,0.533103,,0.49468,,0.533103,,0.49468,,0.49468,,0.49468,,,,,,,,0.50747,,0.498557,,0.533103,,0.49468,,0.49468,,0.211602,,0.208929,,0.219293,,0.207766,,0.110478,,38.991872,,39.688896,,37.11698,,40,,40,,,,,,,,,,,,13760,,0.49468,,0.49468,,0.49468,,0.49468,,0.207766,,40,, +24169,0,0.453789,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,1.603,2.057,0,9.724058,6,4.5,0.825072,0.825072,0.825072,0.825072,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.022303,0.863573,0.825072,0.825072,1.022303,0.863573,0.867066,0.854632,0.825072,0.825072,0.867066,0.854632,0.959521,1.159081,0.825072,0.825072,0.959521,1.159081,0.825072,0.825072,0.825072,0.825072,0.825072,0.825072,,,,,,,1.022303,0.863573,0.867066,0.854632,0.959521,1.159081,0.825072,0.825072,0.825072,0.825072,0.388373,0.340754,0.341802,0.338072,0.369539,0.429406,0.329204,0.329204,0.173678,0.173678,26.633355,31.528736,31.401727,31.858569,28.375979,23.490477,33,33,33,33,,,,,,,,,,,5418,5418,0.825072,0.825072,0.825072,0.825072,0.825072,0.825072,0.825072,0.825072,0.329204,0.329204,33,33,, +24232,0,0.320996,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.896,8.217,0,6.878478,5,5,0.550278,0.550278,0.550278,0.550278,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.587067,0.564741,0.550278,0.550278,0.587067,0.564741,0.5583,0.555824,0.550278,0.550278,0.5583,0.555824,0.634627,0.647454,0.550278,0.550278,0.634627,0.647454,0.550278,0.550278,0.550278,0.550278,0.550278,0.550278,,,,,,,0.587067,0.564741,0.5583,0.555824,0.634627,0.647454,0.550278,0.550278,0.550278,0.550278,0.233899,0.227202,0.225269,0.224526,0.248167,0.252015,0.222863,0.222863,0.117851,0.117851,32.80673,34.103665,34.497142,34.650809,30.348141,29.746904,35,35,35,35,,,,,,,,,,,7946,7946,0.550278,0.550278,0.550278,0.550278,0.550278,0.550278,0.550278,0.550278,0.222863,0.222863,35,35,, +31560,0,0.416037,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.915072,0.15,4,2.49622,2.49622,2.49622,2.49622,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,,,,,,,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,0.823753,0.823753,0.823753,0.823753,0.823753,0.823753,0.823753,0.823753,0.420197,0.420197,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,2.49622,0.823753,0.823753,10,10,, +31585,0,0.502056,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.758351,0.15,4,3.012338,3.012338,3.012338,3.012338,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,,,,,,,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,0.994072,0.994072,0.994072,0.994072,0.994072,0.994072,0.994072,0.994072,0.507077,0.507077,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,3.012338,0.994072,0.994072,10,10,, +31665,0,0.749421,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.059028,0.15,4,4.496528,4.496528,4.496528,4.496528,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,,,,,,,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,1.483854,1.483854,1.483854,1.483854,1.483854,1.483854,1.483854,1.483854,0.756916,0.756916,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,4.496528,1.483854,1.483854,10,10,, +31669,0,0.504072,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.801544,0.15,4,3.024432,3.024432,3.024432,3.024432,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,,,,,,,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,0.998063,0.998063,0.998063,0.998063,0.998063,0.998063,0.998063,0.998063,0.509113,0.509113,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,3.024432,0.998063,0.998063,10,10,, +31670,0,0.497785,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.666825,0.15,4,2.986711,2.986711,2.986711,2.986711,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.986711,2.986711,2.986711,2.986711,2.986711,2.986711,2.986711,2.986711,2.986711,2.986711,2.986711,2.986711,2.986712,2.986713,2.986711,2.986711,2.986712,2.986713,2.986711,2.986711,2.986711,2.986711,2.986711,2.986711,,,,,,,2.986711,2.986711,2.986711,2.986711,2.986712,2.986713,2.986711,2.986711,2.986711,2.986711,0.985615,0.985615,0.985615,0.985615,0.985615,0.985615,0.985615,0.985615,0.502763,0.502763,9.999999,10,10,10,9.999998,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,2.986711,2.986711,2.986711,2.986711,2.986711,2.986711,2.986711,2.986711,0.985615,0.985615,10,10,, +31673,0,0.278619,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.970413,0.15,4,1.671716,1.671716,1.671716,1.671716,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,,,,,,,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,0.551666,0.551666,0.551666,0.551666,0.551666,0.551666,0.551666,0.551666,0.281405,0.281405,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,1.671716,0.551666,0.551666,10,10,, +31675,0,0.498416,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.680335,0.15,4,2.990494,2.990494,2.990494,2.990494,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,,,,,,,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,0.986863,0.986863,0.986863,0.986863,0.986863,0.986863,0.986863,0.986863,0.5034,0.5034,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,2.990494,0.986863,0.986863,10,10,, +31680,0,0.498621,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.684745,0.15,4,2.991729,2.991729,2.991729,2.991729,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,,,,,,,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,0.98727,0.98727,0.98727,0.98727,0.98727,0.98727,0.98727,0.98727,0.503608,0.503608,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,2.991729,0.98727,0.98727,10,10,, +31681,0,0.283533,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.075701,0.15,4,1.701196,1.701196,1.701196,1.701196,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,,,,,,,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,0.561395,0.561395,0.561395,0.561395,0.561395,0.561395,0.561395,0.561395,0.286368,0.286368,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,1.701196,0.561395,0.561395,10,10,, +31842,0,0.298622,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.399051,0.15,4,1.791734,1.791734,1.791734,1.791734,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,,,,,,,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,0.591272,0.591272,0.591272,0.591272,0.591272,0.591272,0.591272,0.591272,0.301609,0.301609,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,1.791734,0.591272,0.591272,10,10,, +15808,1,0.777155,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,6.809,7.586,0,16.653327,5,5,1.165733,,1.165733,,40,,40000,,9080,,20000,,12904,,13760,,13744,,1.229261,,1.165733,,1.229261,,1.170942,,1.165733,,1.170942,,1.248077,,1.165733,,1.248077,,1.165733,,1.165733,,1.165733,,,,,,,,1.229261,,1.170942,,1.248077,,1.165733,,1.165733,,0.508666,,0.491171,,0.514311,,0.489608,,0.260347,,37.932796,,39.822058,,37.360926,,40,,40,,,,,,,,,,,,13760,,1.165733,,1.165733,,1.165733,,1.165733,,0.489608,,40,,, +16495,0,0.457879,1,1,1,2,4,,3,2,Palmer,Rd,1607406,3.595,4.053,0,9.811693,6,4.5,0.832507,0.832507,0.832507,0.832507,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.147038,0.933849,0.832507,0.832507,1.147038,0.933849,0.927169,0.919609,0.832507,0.832507,0.927169,0.919609,1.174991,1.19104,0.832507,0.832507,1.174991,1.19104,0.832507,0.832507,0.832507,0.832507,0.832507,0.832507,,,,,,,1.147038,0.933849,0.927169,0.919609,1.174991,1.19104,0.832507,0.832507,0.832507,0.832507,0.42653,0.362573,0.360569,0.358301,0.434916,0.43973,0.33217,0.33217,0.175243,0.175243,23.951032,29.418836,29.630778,29.874387,23.381226,23.066187,33,33,33,33,,,,,,,,,,,2838,2838,0.832507,0.832507,0.832507,0.832507,0.832507,0.832507,0.832507,0.832507,0.33217,0.33217,33,33,, +18427,0,0.520698,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,0.516,1.037,0,11.157823,8,4.5,1.249676,1.249676,1.249676,1.249676,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.251254,1.249734,1.249676,1.249676,1.251254,1.249734,1.249711,1.249708,1.249676,1.249676,1.249711,1.249708,1.253345,1.257805,1.249676,1.249676,1.253345,1.257805,1.249676,1.249676,1.249676,1.249676,1.249676,1.249676,,,,,,,1.251254,1.249734,1.249711,1.249708,1.253345,1.257805,1.249676,1.249676,1.249676,1.249676,0.469102,0.468646,0.468639,0.468638,0.469729,0.471067,0.468629,0.468629,0.244728,0.244728,24.968478,24.998835,24.999311,24.999359,24.92682,24.83843,25,25,25,25,,,,,,,,,,,2408,2408,1.249676,1.249676,1.249676,1.249676,1.249676,1.249676,1.249676,1.249676,0.468629,0.468629,25,25,, +23498,0,0.409894,1,1,0,2,5,,3,2,John Hix,Rd,4705360,0.202,0.611,0,8.783433,8,4.5,0.983745,0.983745,0.983745,0.983745,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.983745,0.99176,0.983745,0.983745,0.983745,0.99176,0.983745,0.983745,0.983745,0.983745,0.983745,0.983745,0.983765,0.983776,0.983745,0.983745,0.983765,0.983776,0.983745,0.983745,0.983745,0.983745,0.983745,0.983745,,,,,,,0.983745,0.99176,0.983745,0.983745,0.983765,0.983776,0.983745,0.983745,0.983745,0.983745,0.368904,0.371309,0.368904,0.368904,0.36891,0.368914,0.368904,0.368904,0.19265,0.19265,25,24.797949,25,25,24.999485,24.999192,25,25,25,25,,,,,,,,,,,2408,2408,0.983745,0.983745,0.983745,0.983745,0.983745,0.983745,0.983745,0.983745,0.368904,0.368904,25,25,, +23676,-1,0.688713,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,6.878,7.567,0,14.758128,5,5,,1.033069,,1.033069,,40,,40000,,9080,,20000,,12904,,13760,,13744,,1.046348,,1.033069,,1.046348,,1.037459,,1.033069,,1.037459,,1.118195,,1.033069,,1.118195,,1.033069,,1.033069,,1.033069,,,,,,,,1.046348,,1.037459,,1.118195,,1.033069,,1.033069,,0.437873,,0.435206,,0.459427,,0.433889,,0.230719,,39.49237,,39.830736,,36.954893,,40,,40,,,,,,,,,,,,13760,,1.033069,,1.033069,,1.033069,,1.033069,,0.433889,,40,, +24176,0,0.3696,1,1,0,2,4,,3,2,Newburgh,Rd,4710394,0.188,0.558,0,7.920004,6,4.5,0.672,0.672,0.672,0.672,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.768936,0.747661,0.672,0.672,0.768936,0.747661,0.740826,0.699743,0.672,0.672,0.740826,0.699743,1.038391,0.91544,0.672,0.672,1.038391,0.91544,0.672,0.672,0.672,0.672,0.672,0.672,,,,,,,0.768936,0.747661,0.740826,0.699743,1.038391,0.91544,0.672,0.672,0.672,0.672,0.297209,0.290826,0.288776,0.276451,0.378045,0.34116,0.268128,0.268128,0.141456,0.141456,28.839861,29.660521,29.934153,31.69167,21.356127,24.224428,33,33,33,33,,,,,,,,,,,2580,2580,0.672,0.672,0.672,0.672,0.672,0.672,0.672,0.672,0.268128,0.268128,33,33,, +31269,0,0.518644,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.113807,0.15,4,3.111866,3.111866,3.111866,3.111866,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,,,,,,,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,1.026916,1.026916,1.026916,1.026916,1.026916,1.026916,1.026916,1.026916,0.523831,0.523831,9.999999,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,3.111866,1.026916,1.026916,10,10,, +31573,0,0.335136,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.181481,0.15,4,2.010815,2.010815,2.010815,2.010815,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,,,,,,,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,0.663569,0.663569,0.663569,0.663569,0.663569,0.663569,0.663569,0.663569,0.338487,0.338487,10,9.999997,10,9.999998,10,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,2.010815,0.663569,0.663569,10,10,, +31583,0,0.529791,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.352659,0.15,4,3.178745,3.178745,3.178745,3.178745,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,,,,,,,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,1.048986,1.048986,1.048986,1.048986,1.048986,1.048986,1.048986,1.048986,0.535089,0.535089,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,3.178745,1.048986,1.048986,10,10,, +31689,0,0.518391,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.108388,0.15,4,3.110349,3.110349,3.110349,3.110349,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,,,,,,,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,1.026415,1.026415,1.026415,1.026415,1.026415,1.026415,1.026415,1.026415,0.523575,0.523575,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,3.110349,1.026415,1.026415,10,10,, +18804,0,0.022157,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.379,8.401,0,0.474796,6,4.5,0.040286,0.040286,0.040286,0.040286,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.068551,0.05994,0.040286,0.040286,0.068551,0.05994,0.054496,0.040958,0.040286,0.040286,0.054496,0.040958,0.253324,0.049408,0.040286,0.040286,0.253324,0.049408,0.040286,0.040286,0.040286,0.040286,0.040286,0.040286,,,,,,,0.068551,0.05994,0.054496,0.040958,0.253324,0.049408,0.040286,0.040286,0.040286,0.040286,0.024554,0.02197,0.020337,0.016276,0.079985,0.018811,0.016074,0.016074,0.00848,0.00848,19.393274,22.179483,24.39497,32.458133,5.247943,26.907176,33,33,33,33,,,,,,,,,,,2580,2580,0.040286,0.040286,0.040286,0.040286,0.040286,0.040286,0.040286,0.040286,0.016074,0.016074,33,33,, +22961,-1,0.27545,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,6.506,6.781,0,5.902496,5,5,,0.413175,,0.413175,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.438594,,0.413175,,0.438594,,0.422724,,0.413175,,0.422724,,0.554749,,0.413175,,0.554749,,0.413175,,0.413175,,0.413175,,,,,,,,0.438594,,0.422724,,0.554749,,0.413175,,0.413175,,0.181159,,0.176398,,0.216006,,0.173533,,0.092276,,37.681741,,39.096404,,29.791836,,40,,40,,,,,,,,,,,,13760,,0.413175,,0.413175,,0.413175,,0.413175,,0.173533,,40,, +23707,0,0.20161,1,1,0,2,5,,3,2,John Hix,Rd,4705360,0,0.202,0,4.320219,8,4.5,0.483865,0.483865,0.483865,0.483865,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.483865,0.487807,0.483865,0.483865,0.483865,0.487807,0.483865,0.483865,0.483865,0.483865,0.483865,0.483865,0.483875,0.483865,0.483865,0.483865,0.483875,0.483865,0.483865,0.483865,0.483865,0.483865,0.483865,0.483865,,,,,,,0.483865,0.487807,0.483865,0.483865,0.483875,0.483865,0.483865,0.483865,0.483865,0.483865,0.181449,0.182632,0.181449,0.181449,0.181452,0.181449,0.181449,0.181449,0.094757,0.094757,25,24.797949,25,25,24.999485,24.999967,25,25,25,25,,,,,,,,,,,2408,2408,0.483865,0.483865,0.483865,0.483865,0.483865,0.483865,0.483865,0.483865,0.181449,0.181449,25,25,, +31574,0,0.459688,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.850459,0.15,4,2.758129,2.758129,2.758129,2.758129,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,,,,,,,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,0.910182,0.910182,0.910182,0.910182,0.910182,0.910182,0.910182,0.910182,0.464285,0.464285,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,2.758129,0.910182,0.910182,10,10,, +31575,0,0.384384,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.236801,0.15,4,2.306304,2.306304,2.306304,2.306304,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.306305,2.306304,2.306304,2.306304,2.306305,2.306304,2.306305,2.306304,2.306304,2.306304,2.306305,2.306304,2.306309,2.306304,2.306304,2.306304,2.306309,2.306304,2.306304,2.306304,2.306304,2.306304,2.306304,2.306304,,,,,,,2.306305,2.306304,2.306305,2.306304,2.306309,2.306304,2.306304,2.306304,2.306304,2.306304,0.761081,0.76108,0.761081,0.76108,0.761082,0.76108,0.76108,0.76108,0.388228,0.388228,9.999999,10,9.999996,10,9.999981,10,10,10,10,10,,,,,,,,,,,34400,34400,2.306304,2.306304,2.306304,2.306304,2.306304,2.306304,2.306304,2.306304,0.76108,0.76108,10,10,, +33791,0,0.475377,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.186645,0.15,4,2.852261,2.852261,2.852261,2.852261,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.852261,2.852262,2.852261,2.852261,2.852261,2.852262,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,,,,,,,2.852261,2.852262,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,0.941246,0.941247,0.941246,0.941246,0.941246,0.941246,0.941246,0.941246,0.480131,0.480131,10,9.999994,10,9.999999,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,2.852261,0.941246,0.941246,10,10,, +15809,1,0.277248,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,6.532,6.809,0,5.941024,5,5,0.415872,,0.415872,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.473506,,0.415872,,0.473506,,0.420573,,0.415872,,0.420573,,0.463222,,0.415872,,0.463222,,0.415872,,0.415872,,0.415872,,,,,,,,0.473506,,0.420573,,0.463222,,0.415872,,0.415872,,0.191956,,0.176076,,0.188871,,0.174666,,0.092878,,35.131294,,39.552881,,35.911242,,40,,40,,,,,,,,,,,,13760,,0.415872,,0.415872,,0.415872,,0.415872,,0.174666,,40,,, +17537,0,0.293909,1,1,0,2,4,,3,2,Hannan,Rd,1710309,7.839,8.133,0,6.298045,6,4.5,0.53438,0.53438,0.53438,0.53438,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.569762,0.552216,0.53438,0.53438,0.569762,0.552216,0.547545,0.539296,0.53438,0.53438,0.547545,0.539296,0.579958,0.573147,0.53438,0.53438,0.579958,0.573147,0.53438,0.53438,0.53438,0.53438,0.53438,0.53438,,,,,,,0.569762,0.552216,0.547545,0.539296,0.579958,0.573147,0.53438,0.53438,0.53438,0.53438,0.223832,0.218568,0.217167,0.214692,0.226891,0.224848,0.213217,0.213217,0.112487,0.112487,30.950699,31.934108,32.206541,32.699171,30.406569,30.767865,33,33,33,33,,,,,,,,,,,2580,2580,0.53438,0.53438,0.53438,0.53438,0.53438,0.53438,0.53438,0.53438,0.213217,0.213217,33,33,, +19041,0,0.246251,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.133,8.379,0,5.276799,6,4.5,0.447728,0.447728,0.447728,0.447728,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.48952,0.535904,0.447728,0.447728,0.48952,0.535904,0.481729,0.466793,0.447728,0.447728,0.481729,0.466793,0.591968,0.504972,0.447728,0.447728,0.591968,0.504972,0.447728,0.447728,0.447728,0.447728,0.447728,0.447728,,,,,,,0.48952,0.535904,0.481729,0.466793,0.591968,0.504972,0.447728,0.447728,0.447728,0.447728,0.191181,0.205096,0.188844,0.184363,0.221916,0.195817,0.178644,0.178644,0.094247,0.094247,30.182716,27.570289,30.670857,31.652231,24.959173,29.259119,33,33,33,33,,,,,,,,,,,2580,2580,0.447728,0.447728,0.447728,0.447728,0.447728,0.447728,0.447728,0.447728,0.178644,0.178644,33,33,, +22683,-1,0.096829,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,6.781,6.878,0,2.074917,5,5,,0.145244,,0.145244,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.150783,,0.145244,,0.150783,,0.148601,,0.145244,,0.148601,,0.196992,,0.145244,,0.196992,,0.145244,,0.145244,,0.145244,,,,,,,,0.150783,,0.148601,,0.196992,,0.145244,,0.145244,,0.062664,,0.06201,,0.076527,,0.061003,,0.032438,,38.530692,,39.096404,,29.492451,,40,,40,,,,,,,,,,,,13760,,0.145244,,0.145244,,0.145244,,0.145244,,0.061003,,40,, +16260,0,0.306036,1,1,1,2,4,,3,2,Palmer,Rd,1607406,3.289,3.595,0,6.55791,6,4.5,0.556429,0.556429,0.556429,0.556429,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.60065,0.569319,0.556429,0.556429,0.60065,0.569319,0.569044,0.565864,0.556429,0.556429,0.569044,0.565864,0.604915,0.63597,0.556429,0.556429,0.604915,0.63597,0.556429,0.556429,0.556429,0.556429,0.556429,0.556429,,,,,,,0.60065,0.569319,0.569044,0.565864,0.604915,0.63597,0.556429,0.556429,0.556429,0.556429,0.235281,0.225882,0.2258,0.224846,0.236561,0.245877,0.222015,0.222015,0.117128,0.117128,30.570472,32.252837,32.26844,32.449737,30.354922,28.872679,33,33,33,33,,,,,,,,,,,2838,2838,0.556429,0.556429,0.556429,0.556429,0.556429,0.556429,0.556429,0.556429,0.222015,0.222015,33,33,, +18024,0,0.244237,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,0.272,0.516,0,5.23364,8,4.5,0.586168,0.586168,0.586168,0.586168,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.59709,0.588383,0.586168,0.586168,0.59709,0.588383,0.586644,0.586526,0.586168,0.586168,0.586644,0.586526,0.617345,0.612571,0.586168,0.586168,0.617345,0.612571,0.586168,0.586168,0.586168,0.586168,0.586168,0.586168,,,,,,,0.59709,0.588383,0.586644,0.586526,0.617345,0.612571,0.586168,0.586168,0.586168,0.586168,0.22309,0.220477,0.219956,0.21992,0.229166,0.227734,0.219813,0.219813,0.114791,0.114791,24.542692,24.905886,24.979693,24.984725,23.737447,23.922446,25,25,25,25,,,,,,,,,,,2408,2408,0.586168,0.586168,0.586168,0.586168,0.586168,0.586168,0.586168,0.586168,0.219813,0.219813,25,25,, +22765,0,0.558808,1,1,0,2,5,,3,2,John Hix,Rd,4705360,1.107,1.666,0,11.974451,8,4.5,1.341139,1.341139,1.341139,1.341139,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.359422,1.380282,1.341139,1.341139,1.359422,1.380282,1.344902,1.350394,1.341139,1.341139,1.344902,1.350394,1.498832,1.417121,1.341139,1.341139,1.498832,1.417121,1.341139,1.341139,1.341139,1.341139,1.341139,1.341139,,,,,,,1.359422,1.380282,1.344902,1.350394,1.498832,1.417121,1.341139,1.341139,1.341139,1.341139,0.508412,0.51467,0.504056,0.505704,0.550235,0.525722,0.502927,0.502927,0.26264,0.26264,24.663773,24.291033,24.930047,24.828644,22.369723,23.659556,25,25,25,25,,,,,,,,,,,2408,2408,1.341139,1.341139,1.341139,1.341139,1.341139,1.341139,1.341139,1.341139,0.502927,0.502927,25,25,, +31586,0,0.255458,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.474103,0.15,4,1.532749,1.532749,1.532749,1.532749,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,,,,,,,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,0.505807,0.505807,0.505807,0.505807,0.505807,0.505807,0.505807,0.505807,0.258013,0.258013,9.999999,10,10,10,9.999999,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,1.532749,0.505807,0.505807,10,10,, +31588,0,0.500989,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.735488,0.15,4,3.005937,3.005937,3.005937,3.005937,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,,,,,,,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,0.991959,0.991959,0.991959,0.991959,0.991959,0.991959,0.991959,0.991959,0.505999,0.505999,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,3.005937,0.991959,0.991959,10,10,, +23156,0,0.495973,1,1,0,2,5,,3,2,John Hix,Rd,4705360,0.611,1.107,0,10.627996,8,4.5,1.190336,1.190336,1.190336,1.190336,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.190336,1.190451,1.190336,1.190336,1.190336,1.190451,1.190336,1.190336,1.190336,1.190336,1.190336,1.190336,1.191583,1.190908,1.190336,1.190336,1.191583,1.190908,1.190336,1.190336,1.190336,1.190336,1.190336,1.190336,,,,,,,1.190336,1.190451,1.190336,1.190336,1.191583,1.190908,1.190336,1.190336,1.190336,1.190336,0.446376,0.446411,0.446376,0.446376,0.44675,0.446548,0.446376,0.446376,0.233107,0.233107,25,24.99757,25,25,24.973833,24.987981,25,25,25,25,,,,,,,,,,,2408,2408,1.190336,1.190336,1.190336,1.190336,1.190336,1.190336,1.190336,1.190336,0.446376,0.446376,25,25,, +31584,0,0.24791,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.312354,0.15,4,1.487459,1.487459,1.487459,1.487459,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,,,,,,,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,0.490862,0.490862,0.490862,0.490862,0.490862,0.490862,0.490862,0.490862,0.250389,0.250389,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,1.487459,0.490862,0.490862,10,10,, +31581,0,0.254837,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.460803,0.15,4,1.529025,1.529025,1.529025,1.529025,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,,,,,,,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,0.504578,0.504578,0.504578,0.504578,0.504578,0.504578,0.504578,0.504578,0.257386,0.257386,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,1.529025,0.504578,0.504578,10,10,, +15807,1,0.274061,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,7.586,7.86,0,5.872745,5,5,0.411092,,0.411092,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.424243,,0.411092,,0.424243,,0.412121,,0.411092,,0.412121,,0.424438,,0.411092,,0.424438,,0.411092,,0.411092,,0.411092,,,,,,,,0.424243,,0.412121,,0.424438,,0.411092,,0.411092,,0.176604,,0.172967,,0.176663,,0.172659,,0.091811,,38.760064,,39.900118,,38.742212,,40,,40,,,,,,,,,,,,13760,,0.411092,,0.411092,,0.411092,,0.411092,,0.172659,,40,,, +23339,-1,0.266548,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,7.567,7.833,0,5.711733,5,5,,0.399821,,0.399821,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.407757,,0.399821,,0.407757,,0.403103,,0.399821,,0.403103,,0.429588,,0.399821,,0.429588,,0.399821,,0.399821,,0.399821,,,,,,,,0.407757,,0.403103,,0.429588,,0.399821,,0.399821,,0.170306,,0.168909,,0.176855,,0.167925,,0.089293,,39.221539,,39.674396,,37.22831,,40,,40,,,,,,,,,,,,13760,,0.399821,,0.399821,,0.399821,,0.399821,,0.167925,,40,, +24177,0,0.188371,1,1,0,2,4,,3,2,Newburgh,Rd,4710394,0,0.188,0,4.036529,6,4.5,0.342493,0.342493,0.342493,0.342493,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.564565,0.346146,0.342493,0.342493,0.564565,0.346146,0.426569,0.343124,0.342493,0.342493,0.426569,0.343124,0.647665,0.36712,0.342493,0.342493,0.647665,0.36712,0.342493,0.342493,0.342493,0.342493,0.342493,0.342493,,,,,,,0.564565,0.346146,0.426569,0.343124,0.647665,0.36712,0.342493,0.342493,0.342493,0.342493,0.203276,0.137751,0.161878,0.136844,0.228206,0.144043,0.136655,0.136655,0.072095,0.072095,20.019439,32.651768,26.495776,32.939306,17.450814,30.786331,33,33,33,33,,,,,,,,,,,2580,2580,0.342493,0.342493,0.342493,0.342493,0.342493,0.342493,0.342493,0.342493,0.136655,0.136655,33,33,, +24533,1,0.025002,1,0,0,2,4,,3,2,Michigan/Newburgh,TURN,4708369,0,0.025,0,0.535757,6,4.5,0.045458,,0.045458,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.045747,,0.045458,,0.045747,,0.045502,,0.045458,,0.045502,,0.047255,,0.045458,,0.047255,,0.045458,,0.045458,,0.045458,,,,,,,,0.045747,,0.045502,,0.047255,,0.045458,,0.045458,,0.018225,,0.018151,,0.018677,,0.018138,,0.009569,,32.791475,,32.968393,,31.745407,,33,,33,,,,,,,,,,,,2580,,0.045458,,0.045458,,0.045458,,0.045458,,0.018138,,33,,, +23500,-1,0.366501,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,7.833,8.199,0,7.853596,5,5,,0.549752,,0.549752,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.563965,,0.549752,,0.563965,,0.554061,,0.549752,,0.554061,,0.592453,,0.549752,,0.592453,,0.549752,,0.549752,,0.549752,,,,,,,,0.563965,,0.554061,,0.592453,,0.549752,,0.549752,,0.23516,,0.232189,,0.243706,,0.230896,,0.122778,,38.991872,,39.688896,,37.11698,,40,,40,,,,,,,,,,,,13760,,0.549752,,0.549752,,0.549752,,0.549752,,0.230896,,40,, +16255,0,0.525078,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.053,4.577,0,11.251682,6,4.5,0.954688,0.954688,0.954688,0.954688,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.129504,1.074037,0.954688,0.954688,1.129504,1.074037,1.021474,1.019561,0.954688,0.954688,1.021474,1.019561,1.222144,1.231386,0.954688,0.954688,1.222144,1.231386,0.954688,0.954688,0.954688,0.954688,0.954688,0.954688,,,,,,,1.129504,1.074037,1.021474,1.019561,1.222144,1.231386,0.954688,0.954688,0.954688,0.954688,0.433365,0.416725,0.400956,0.400382,0.461157,0.46393,0.380921,0.380921,0.200962,0.200962,27.892518,29.332987,30.8424,30.900261,25.778225,25.58476,33,33,33,33,,,,,,,,,,,2580,2580,0.954688,0.954688,0.954688,0.954688,0.954688,0.954688,0.954688,0.954688,0.380921,0.380921,33,33,, +24173,0,0.549657,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,1.054,1.603,0,11.778369,6,4.5,0.999377,0.999377,0.999377,0.999377,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.029805,1.015334,0.999377,0.999377,1.029805,1.015334,1.004454,1.002851,0.999377,0.999377,1.004454,1.002851,1.050304,1.060419,0.999377,0.999377,1.050304,1.060419,0.999377,0.999377,0.999377,0.999377,0.999377,0.999377,,,,,,,1.029805,1.015334,1.004454,1.002851,1.050304,1.060419,0.999377,0.999377,0.999377,0.999377,0.40788,0.403539,0.400275,0.399794,0.41403,0.417064,0.398751,0.398751,0.210369,0.210369,32.024925,32.481358,32.83319,32.885669,31.399883,31.100375,33,33,33,33,,,,,,,,,,,5418,5418,0.999377,0.999377,0.999377,0.999377,0.999377,0.999377,0.999377,0.999377,0.398751,0.398751,33,33,, +31266,0,0.503656,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.79262,0.15,4,3.021934,3.021934,3.021934,3.021934,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,,,,,,,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,0.997238,0.997238,0.997238,0.997238,0.997238,0.997238,0.997238,0.997238,0.508692,0.508692,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,3.021934,0.997238,0.997238,10,10,, +31268,0,0.499529,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.704199,0.15,4,2.997176,2.997176,2.997176,2.997176,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,,,,,,,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,0.989068,0.989068,0.989068,0.989068,0.989068,0.989068,0.989068,0.989068,0.504525,0.504525,9.999999,9.999999,9.999999,9.999999,9.999998,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,2.997176,0.989068,0.989068,10,10,, +24175,0,0.261545,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,0.558,0.819,0,5.604537,6,4.5,0.475536,0.475536,0.475536,0.475536,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.476539,0.476646,0.475536,0.475536,0.476539,0.476646,0.47583,0.475712,0.475536,0.475536,0.47583,0.475712,0.478383,0.479251,0.475536,0.475536,0.478383,0.479251,0.475536,0.475536,0.475536,0.475536,0.475536,0.475536,,,,,,,0.476539,0.476646,0.47583,0.475712,0.478383,0.479251,0.475536,0.475536,0.475536,0.475536,0.19004,0.190072,0.189827,0.189792,0.190593,0.190853,0.189739,0.189739,0.1001,0.1001,32.930595,32.923151,32.979661,32.987796,32.803618,32.744245,33,33,33,33,,,,,,,,,,,5418,5418,0.475536,0.475536,0.475536,0.475536,0.475536,0.475536,0.475536,0.475536,0.189739,0.189739,33,33,, +24174,0,0.234633,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,0.819,1.054,0,5.027847,6,4.5,0.426605,0.426605,0.426605,0.426605,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.427504,0.427601,0.426605,0.426605,0.427504,0.427601,0.426868,0.426763,0.426605,0.426605,0.426868,0.426763,0.429159,0.429937,0.426605,0.426605,0.429159,0.429937,0.426605,0.426605,0.426605,0.426605,0.426605,0.426605,,,,,,,0.427504,0.427601,0.426868,0.426763,0.429159,0.429937,0.426605,0.426605,0.426605,0.426605,0.170485,0.170514,0.170294,0.170263,0.170982,0.171215,0.170215,0.170215,0.0898,0.0898,32.930595,32.923151,32.979661,32.987796,32.803618,32.744245,33,33,33,33,,,,,,,,,,,5418,5418,0.426605,0.426605,0.426605,0.426605,0.426605,0.426605,0.426605,0.426605,0.170215,0.170215,33,33,, +14985,0,0.298161,2,2,1,2,3,,3,2,Ford,Rd,1595510,6.751,7.049,0,6.389167,5,5,0.511133,0.511133,0.511133,0.511133,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.607129,0.641288,0.511133,0.511133,0.607129,0.641288,0.579541,0.594795,0.511133,0.511133,0.579541,0.594795,0.719934,0.75402,0.511133,0.511133,0.719934,0.75402,0.511133,0.511133,0.511133,0.511133,0.511133,0.511133,,,,,,,0.607129,0.641288,0.579541,0.594795,0.719934,0.75402,0.511133,0.511133,0.511133,0.511133,0.235808,0.246055,0.227531,0.232107,0.269649,0.279875,0.207009,0.207009,0.109468,0.109468,29.466018,27.896455,30.86871,30.077052,24.849028,23.725717,35,35,35,35,,,,,,,,,,,7946,7946,0.511133,0.511133,0.511133,0.511133,0.511133,0.511133,0.511133,0.511133,0.207009,0.207009,35,35,, +15098,0,0.504444,1,1,0,2,5,,3,2,Carlson,Blvd,1595907,0,0.504,0,10.809511,8,4.5,1.210665,1.210665,1.210665,1.210665,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.23599,1.21068,1.210665,1.210665,1.23599,1.21068,1.216886,1.210825,1.210665,1.210665,1.216886,1.210825,1.250394,1.290761,1.210665,1.210665,1.250394,1.290761,1.210665,1.210665,1.210665,1.210665,1.210665,1.210665,,,,,,,1.23599,1.21068,1.216886,1.210825,1.250394,1.290761,1.210665,1.210665,1.210665,1.210665,0.461597,0.454004,0.455866,0.454047,0.465918,0.478028,0.453999,0.453999,0.237089,0.237089,24.487765,24.999696,24.872198,24.9967,24.205672,23.448675,25,25,25,25,,,,,,,,,,,2408,2408,1.210665,1.210665,1.210665,1.210665,1.210665,1.210665,1.210665,1.210665,0.453999,0.453999,25,25,, +15203,0,0.336288,1,1,1,2,5,,3,2,Hix,Rd,1595808,0.523,0.86,0,7.206174,8,4.5,0.807091,0.807091,0.807091,0.807091,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,1.359934,0.862534,0.807091,0.807091,1.359934,0.862534,1.001539,0.917972,0.807091,0.807091,1.001539,0.917972,1.151184,1.693011,0.807091,0.807091,1.151184,1.693011,0.807091,0.807091,0.807091,0.807091,0.807091,0.807091,,,,,,,1.359934,0.862534,1.001539,0.917972,1.151184,1.693011,0.807091,0.807091,0.807091,0.807091,0.468512,0.319292,0.360994,0.335923,0.405887,0.568435,0.302659,0.302659,0.158055,0.158055,14.83696,23.393041,20.146282,21.980287,17.527421,11.917989,25,25,25,25,,,,,,,,,,,2649,2649,0.807091,0.807091,0.807091,0.807091,0.807091,0.807091,0.807091,0.807091,0.302659,0.302659,25,25,, +16401,0,0.490507,1,1,0,2,4,,3,2,Cherry Hill,Rd,1607409,6.546,7.037,0,10.510871,6,4.5,0.891831,0.891831,0.891831,0.891831,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.46788,0.987566,0.891831,0.891831,1.46788,0.987566,0.984719,0.997951,0.891831,0.891831,0.984719,0.997951,1.158374,1.505465,0.891831,0.891831,1.158374,1.505465,0.891831,0.891831,0.891831,0.891831,0.891831,0.891831,,,,,,,1.46788,0.987566,0.984719,0.997951,1.158374,1.505465,0.891831,0.891831,0.891831,0.891831,0.528655,0.384561,0.383707,0.387677,0.435804,0.539931,0.355841,0.355841,0.187731,0.187731,20.049618,29.800994,29.88713,29.490865,25.406677,19.549064,33,33,33,33,,,,,,,,,,,2580,2580,0.891831,0.891831,0.891831,0.891831,0.891831,0.891831,0.891831,0.891831,0.355841,0.355841,33,33,, +24050,0,0.201626,1,1,0,2,4,,3,2,Warren,Rd,4710470,6.999,7.201,0,4.32055,6,4.5,0.366592,0.366592,0.366592,0.366592,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.504772,0.474556,0.366592,0.366592,0.504772,0.474556,0.456835,0.478194,0.366592,0.366592,0.456835,0.478194,0.61209,0.609084,0.366592,0.366592,0.61209,0.609084,0.366592,0.366592,0.366592,0.366592,0.366592,0.366592,,,,,,,0.504772,0.474556,0.456835,0.478194,0.61209,0.609084,0.366592,0.366592,0.366592,0.366592,0.187724,0.178659,0.173343,0.179751,0.21992,0.219018,0.14627,0.14627,0.077168,0.077168,23.966365,25.492325,26.481174,25.298406,19.764311,19.861849,33,33,33,33,,,,,,,,,,,2580,2580,0.366592,0.366592,0.366592,0.366592,0.366592,0.366592,0.366592,0.366592,0.14627,0.14627,33,33,, +24156,0,0.291183,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.763,3.054,0,6.239634,6,4.5,0.529424,0.529424,0.529424,0.529424,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.65275,0.565846,0.529424,0.529424,0.65275,0.565846,0.564488,0.561122,0.529424,0.529424,0.564488,0.561122,0.693353,0.758281,0.529424,0.529424,0.693353,0.758281,0.529424,0.529424,0.529424,0.529424,0.529424,0.529424,,,,,,,0.65275,0.565846,0.564488,0.561122,0.693353,0.758281,0.529424,0.529424,0.529424,0.529424,0.248238,0.222167,0.221759,0.22075,0.260419,0.279897,0.21124,0.21124,0.111444,0.111444,26.76519,30.875875,30.950153,31.13578,25.197814,23.040227,33,33,33,33,,,,,,,,,,,5418,5418,0.529424,0.529424,0.529424,0.529424,0.529424,0.529424,0.529424,0.529424,0.21124,0.21124,33,33,, +31629,0,0.502271,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.762955,0.15,4,3.013627,3.013627,3.013627,3.013627,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,,,,,,,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,0.994497,0.994497,0.994497,0.994497,0.994497,0.994497,0.994497,0.994497,0.507294,0.507294,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,3.013627,0.994497,0.994497,10,10,, +31677,0,0.573354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.286161,0.15,4,3.440125,3.440125,3.440125,3.440125,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,,,,,,,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,1.135241,1.135241,1.135241,1.135241,1.135241,1.135241,1.135241,1.135241,0.579088,0.579088,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,3.440125,1.135241,1.135241,10,10,, +31687,0,0.260353,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.578983,0.15,4,1.562115,1.562115,1.562115,1.562115,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,,,,,,,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,0.515498,0.515498,0.515498,0.515498,0.515498,0.515498,0.515498,0.515498,0.262956,0.262956,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,1.562115,0.515498,0.515498,10,10,, +16171,0,0.273946,1,1,0,2,4,,3,2,Cherry Hill,Rd,1607409,6.273,6.546,0,5.870276,6,4.5,0.498084,0.498084,0.498084,0.498084,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.819805,0.551551,0.498084,0.498084,0.819805,0.551551,0.549962,0.557351,0.498084,0.498084,0.549962,0.557351,0.646947,0.840796,0.498084,0.498084,0.646947,0.840796,0.498084,0.498084,0.498084,0.498084,0.498084,0.498084,,,,,,,0.819805,0.551551,0.549962,0.557351,0.646947,0.840796,0.498084,0.498084,0.498084,0.498084,0.295252,0.214776,0.214299,0.216516,0.243394,0.301549,0.198736,0.198736,0.104847,0.104847,20.049618,29.800994,29.88713,29.490865,25.406677,19.549064,33,33,33,33,,,,,,,,,,,2580,2580,0.498084,0.498084,0.498084,0.498084,0.498084,0.498084,0.498084,0.498084,0.198736,0.198736,33,33,, +18911,0,0.269263,1,1,0,2,5,,3,2,Florence,Ave,1686109,0,0.269,0,5.76993,8,4.5,0.646232,0.646232,0.646232,0.646232,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.670051,0.651564,0.646232,0.646232,0.670051,0.651564,0.648698,0.647436,0.646232,0.646232,0.648698,0.647436,0.680215,0.677574,0.646232,0.646232,0.680215,0.677574,0.646232,0.646232,0.646232,0.646232,0.646232,0.646232,,,,,,,0.670051,0.651564,0.648698,0.647436,0.680215,0.677574,0.646232,0.646232,0.646232,0.646232,0.249483,0.243937,0.243077,0.242698,0.252532,0.251739,0.242337,0.242337,0.126554,0.126554,24.11132,24.795403,24.90498,24.953499,23.751029,23.843614,25,25,25,25,,,,,,,,,,,2408,2408,0.646232,0.646232,0.646232,0.646232,0.646232,0.646232,0.646232,0.646232,0.242337,0.242337,25,25,, +23457,0,0.250512,1,1,0,2,5,,3,2,John Hix,St,4705360,2.102,2.352,0,5.368108,8,4.5,0.601228,0.601228,0.601228,0.601228,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.623388,0.606189,0.601228,0.601228,0.623388,0.606189,0.603522,0.602348,0.601228,0.601228,0.603522,0.602348,0.632844,0.630387,0.601228,0.601228,0.632844,0.630387,0.601228,0.601228,0.601228,0.601228,0.601228,0.601228,,,,,,,0.623388,0.606189,0.603522,0.602348,0.632844,0.630387,0.601228,0.601228,0.601228,0.601228,0.232108,0.226949,0.226149,0.225797,0.234945,0.234208,0.225461,0.225461,0.117741,0.117741,24.11132,24.795403,24.90498,24.953499,23.751029,23.843614,25,25,25,25,,,,,,,,,,,2408,2408,0.601228,0.601228,0.601228,0.601228,0.601228,0.601228,0.601228,0.601228,0.225461,0.225461,25,25,, +31590,0,0.348721,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.472597,0.15,4,2.092327,2.092327,2.092327,2.092327,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,,,,,,,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,0.690468,0.690468,0.690468,0.690468,0.690468,0.690468,0.690468,0.690468,0.352208,0.352208,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,2.092327,0.690468,0.690468,10,10,, +15740,0,0.230635,1,1,0,2,5,,3,2,Hix,Rd,1595808,0.115,0.346,0,4.942183,8,4.5,0.553525,0.553525,0.553525,0.553525,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.573926,0.558092,0.553525,0.553525,0.573926,0.558092,0.555636,0.554556,0.553525,0.553525,0.555636,0.554556,0.582632,0.58037,0.553525,0.553525,0.582632,0.58037,0.553525,0.553525,0.553525,0.553525,0.553525,0.553525,,,,,,,0.573926,0.558092,0.555636,0.554556,0.582632,0.58037,0.553525,0.553525,0.553525,0.553525,0.213692,0.208942,0.208205,0.207881,0.216304,0.215625,0.207572,0.207572,0.108399,0.108399,24.11132,24.795403,24.90498,24.953499,23.751029,23.843614,25,25,25,25,,,,,,,,,,,2408,2408,0.553525,0.553525,0.553525,0.553525,0.553525,0.553525,0.553525,0.553525,0.207572,0.207572,25,25,, +15463,0,0.177602,1,1,1,2,5,,3,2,Hix,Rd,1595808,0.346,0.523,0,3.805747,8,4.5,0.426244,0.426244,0.426244,0.426244,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.683003,0.455524,0.426244,0.426244,0.683003,0.455524,0.528936,0.484802,0.426244,0.426244,0.528936,0.484802,0.607967,0.713462,0.426244,0.426244,0.607967,0.713462,0.426244,0.426244,0.426244,0.426244,0.426244,0.426244,,,,,,,0.683003,0.455524,0.528936,0.484802,0.607967,0.713462,0.426244,0.426244,0.426244,0.426244,0.236869,0.168625,0.190649,0.177409,0.214358,0.246007,0.159841,0.159841,0.083473,0.083473,15.601826,23.393041,20.146282,21.980287,17.527421,14.935754,25,25,25,25,,,,,,,,,,,2649,2649,0.426244,0.426244,0.426244,0.426244,0.426244,0.426244,0.426244,0.426244,0.159841,0.159841,25,25,, +31589,0,0.165762,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.552033,0.15,4,0.994569,0.994569,0.994569,0.994569,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,,,,,,,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.328208,0.328208,0.328208,0.328208,0.328208,0.328208,0.328208,0.328208,0.167419,0.167419,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.994569,0.328208,0.328208,10,10,, +31592,0,0.028438,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.609389,0.15,4,0.170629,0.170629,0.170629,0.170629,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,,,,,,,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.056308,0.056308,0.056308,0.056308,0.056308,0.056308,0.056308,0.056308,0.028723,0.028723,9.999994,9.999998,9.999997,9.999997,9.999994,9.999991,10,10,10,10,,,,,,,,,,,34400,34400,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.170629,0.056308,0.056308,10,10,, +14986,0,0.398311,1,1,0,2,5,,3,2,Hix,Rd,1595808,0.86,1.258,0,8.535225,8,4.5,0.955945,0.955945,0.955945,0.955945,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.051607,1.026311,0.955945,0.955945,1.051607,1.026311,0.971836,0.979961,0.955945,0.955945,0.971836,0.979961,1.1048,1.133025,0.955945,0.955945,1.1048,1.133025,0.955945,0.955945,0.955945,0.955945,0.955945,0.955945,,,,,,,1.051607,1.026311,0.971836,0.979961,1.1048,1.133025,0.955945,0.955945,0.955945,0.955945,0.387178,0.379589,0.363247,0.365684,0.403136,0.411604,0.358479,0.358479,0.187206,0.187206,22.725829,23.285958,24.591209,24.387341,21.631636,21.092758,25,25,25,25,,,,,,,,,,,2408,2408,0.955945,0.955945,0.955945,0.955945,0.955945,0.955945,0.955945,0.955945,0.358479,0.358479,25,25,, +15462,0,0.324244,2,2,1,2,3,,3,2,Ford,Rd,1595510,6.229,6.553,0,6.94808,5,5,0.555846,0.555846,0.555846,0.555846,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.675465,0.789954,0.555846,0.555846,0.675465,0.789954,0.644503,0.69109,0.555846,0.555846,0.644503,0.69109,0.916163,0.901678,0.555846,0.555846,0.916163,0.901678,0.555846,0.555846,0.555846,0.555846,0.555846,0.555846,,,,,,,0.675465,0.789954,0.644503,0.69109,0.916163,0.901678,0.555846,0.555846,0.555846,0.555846,0.261003,0.29535,0.251715,0.265691,0.333213,0.328867,0.225118,0.225118,0.119044,0.119044,28.801844,24.627545,30.185452,28.150631,21.234893,21.576019,35,35,35,35,,,,,,,,,,,7946,7946,0.555846,0.555846,0.555846,0.555846,0.555846,0.555846,0.555846,0.555846,0.225118,0.225118,35,35,, +24062,0,0.455494,1,1,0,2,4,,3,2,Warren,Rd,4710470,6.239,6.694,0,9.76058,6,4.5,0.82817,0.82817,0.82817,0.82817,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.683067,1.505386,0.82817,0.82817,1.683067,1.505386,1.333723,1.348327,0.82817,0.82817,1.333723,1.348327,2.164607,2.35603,0.82817,0.82817,2.164607,2.35603,0.82817,0.82817,0.82817,0.82817,0.82817,0.82817,,,,,,,1.683067,1.505386,1.333723,1.348327,2.164607,2.35603,0.82817,0.82817,0.82817,0.82817,0.586909,0.533605,0.482106,0.486487,0.731371,0.788798,0.33044,0.33044,0.17433,0.17433,16.237986,18.15456,20.491234,20.269293,12.625674,11.599864,33,33,33,33,,,,,,,,,,,2580,2580,0.82817,0.82817,0.82817,0.82817,0.82817,0.82817,0.82817,0.82817,0.33044,0.33044,33,33,, +31593,0,0.279805,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.995824,0.15,4,1.678831,1.678831,1.678831,1.678831,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,,,,,,,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,0.554014,0.554014,0.554014,0.554014,0.554014,0.554014,0.554014,0.554014,0.282603,0.282603,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,1.678831,0.554014,0.554014,10,10,, +31594,0,0.30633,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.564212,0.15,4,1.837979,1.837979,1.837979,1.837979,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,,,,,,,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,0.606533,0.606533,0.606533,0.606533,0.606533,0.606533,0.606533,0.606533,0.309393,0.309393,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,1.837979,0.606533,0.606533,10,10,, +31626,0,0.324614,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.956019,0.15,4,1.947685,1.947685,1.947685,1.947685,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,,,,,,,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,0.642736,0.642736,0.642736,0.642736,0.642736,0.642736,0.642736,0.642736,0.32786,0.32786,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,1.947685,0.642736,0.642736,10,10,, +31595,0,0.308904,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.619376,0.15,4,1.853425,1.853425,1.853425,1.853425,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,,,,,,,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,0.61163,0.61163,0.61163,0.61163,0.61163,0.61163,0.61163,0.61163,0.311993,0.311993,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,1.853425,0.61163,0.61163,10,10,, +15202,0,0.197466,2,2,1,2,3,,3,2,Ford,Rd,1595510,6.553,6.751,0,4.231417,5,5,0.338513,0.338513,0.338513,0.338513,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.429119,0.43489,0.338513,0.338513,0.429119,0.43489,0.401527,0.413901,0.338513,0.338513,0.401527,0.413901,0.515419,0.561619,0.338513,0.338513,0.515419,0.561619,0.338513,0.338513,0.338513,0.338513,0.338513,0.338513,,,,,,,0.429119,0.43489,0.401527,0.413901,0.515419,0.561619,0.338513,0.338513,0.338513,0.338513,0.16428,0.166011,0.156002,0.159714,0.19017,0.20403,0.137098,0.137098,0.072498,0.072498,27.609985,27.243576,29.50731,28.62515,22.987072,21.096106,35,35,35,35,,,,,,,,,,,7946,7946,0.338513,0.338513,0.338513,0.338513,0.338513,0.338513,0.338513,0.338513,0.137098,0.137098,35,35,, +15634,0,0.234198,1,1,0,2,5,,3,2,Hix,Rd,1595808,1.258,1.492,0,5.018524,8,4.5,0.562075,0.562075,0.562075,0.562075,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.688593,0.80529,0.562075,0.562075,0.688593,0.80529,0.621867,0.652674,0.562075,0.562075,0.621867,0.652674,0.863648,0.946428,0.562075,0.562075,0.863648,0.946428,0.562075,0.562075,0.562075,0.562075,0.562075,0.562075,,,,,,,0.688593,0.80529,0.621867,0.652674,0.863648,0.946428,0.562075,0.562075,0.562075,0.562075,0.248733,0.283742,0.228716,0.237958,0.30125,0.326084,0.210778,0.210778,0.110073,0.110073,20.406641,17.449459,22.596256,21.529696,16.270358,14.847273,25,25,25,25,,,,,,,,,,,2408,2408,0.562075,0.562075,0.562075,0.562075,0.562075,0.562075,0.562075,0.562075,0.210778,0.210778,25,25,, +24061,0,0.30527,1,1,0,2,4,,3,2,Warren,Rd,4710470,6.694,6.999,0,6.5415,6,4.5,0.555036,0.555036,0.555036,0.555036,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.764246,0.718499,0.555036,0.555036,0.764246,0.718499,0.691669,0.724006,0.555036,0.555036,0.691669,0.724006,0.911704,0.92218,0.555036,0.555036,0.911704,0.92218,0.555036,0.555036,0.555036,0.555036,0.555036,0.555036,,,,,,,0.764246,0.718499,0.691669,0.724006,0.911704,0.92218,0.555036,0.555036,0.555036,0.555036,0.284222,0.270498,0.262449,0.27215,0.32846,0.331603,0.22146,0.22146,0.116835,0.116835,23.966365,25.492325,26.481174,25.298406,20.090078,19.861849,33,33,33,33,,,,,,,,,,,2580,2580,0.555036,0.555036,0.555036,0.555036,0.555036,0.555036,0.555036,0.555036,0.22146,0.22146,33,33,, +31497,0,0.262293,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.620554,0.15,4,1.573755,1.573755,1.573755,1.573755,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,,,,,,,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,0.519339,0.519339,0.519339,0.519339,0.519339,0.519339,0.519339,0.519339,0.264915,0.264915,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,1.573755,0.519339,0.519339,10,10,, +31688,0,0.314827,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.746286,0.15,4,1.88896,1.88896,1.88896,1.88896,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,,,,,,,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,0.623357,0.623357,0.623357,0.623357,0.623357,0.623357,0.623357,0.623357,0.317975,0.317975,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,1.88896,0.623357,0.623357,10,10,, +16142,0,0.49046,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,7.037,7.527,0,10.509849,6,4.5,0.891745,0.891745,0.891745,0.891745,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.978756,0.922054,0.891745,0.891745,0.978756,0.922054,0.903295,0.90508,0.891745,0.891745,0.903295,0.90508,0.996028,1.114115,0.891745,0.891745,0.996028,1.114115,0.891745,0.891745,0.891745,0.891745,0.891745,0.891745,,,,,,,0.978756,0.922054,0.903295,0.90508,0.996028,1.114115,0.891745,0.891745,0.891745,0.891745,0.38191,0.364899,0.359271,0.359807,0.387091,0.422517,0.355806,0.355806,0.187712,0.187712,30.066307,31.915229,32.578053,32.51378,29.544942,26.413408,33,33,33,33,,,,,,,,,,,5418,5418,0.891745,0.891745,0.891745,0.891745,0.891745,0.891745,0.891745,0.891745,0.355806,0.355806,33,33,, +18318,0,0.486466,1,1,0,2,5,,3,2,Marquette,Ave,1685107,0.239,0.726,0,10.424263,8,4.5,1.167517,1.167517,1.167517,1.167517,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.168623,1.167517,1.167517,1.167517,1.168623,1.167517,1.167566,1.167518,1.167517,1.167517,1.167566,1.167518,1.167522,1.169443,1.167517,1.167517,1.167522,1.169443,1.167517,1.167517,1.167517,1.167517,1.167517,1.167517,,,,,,,1.168623,1.167517,1.167566,1.167518,1.167522,1.169443,1.167517,1.167517,1.167517,1.167517,0.438151,0.437819,0.437834,0.437819,0.43782,0.438397,0.437819,0.437819,0.228639,0.228639,24.976343,25,24.998954,24.999997,24.999913,24.958841,25,25,25,25,,,,,,,,,,,2408,2408,1.167517,1.167517,1.167517,1.167517,1.167517,1.167517,1.167517,1.167517,0.437819,0.437819,25,25,, +24160,0,0.249156,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.057,2.306,0,5.339048,6,4.5,0.45301,0.45301,0.45301,0.45301,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.573864,0.474217,0.45301,0.45301,0.573864,0.474217,0.480775,0.472191,0.45301,0.45301,0.480775,0.472191,0.569972,0.671364,0.45301,0.45301,0.569972,0.671364,0.45301,0.45301,0.45301,0.45301,0.45301,0.45301,,,,,,,0.573864,0.474217,0.480775,0.472191,0.569972,0.671364,0.45301,0.45301,0.45301,0.45301,0.217007,0.187113,0.18908,0.186505,0.21584,0.246257,0.180751,0.180751,0.095359,0.095359,26.050293,31.524225,31.094245,31.659524,26.228169,22.267121,33,33,33,33,,,,,,,,,,,5418,5418,0.45301,0.45301,0.45301,0.45301,0.45301,0.45301,0.45301,0.45301,0.180751,0.180751,33,33,, +31587,0,0.49835,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.67892,0.15,4,2.990097,2.990097,2.990097,2.990097,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,,,,,,,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,0.986732,0.986732,0.986732,0.986732,0.986732,0.986732,0.986732,0.986732,0.503333,0.503333,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,2.990097,0.986732,0.986732,10,10,, +31678,0,0.250755,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.373313,0.15,4,1.504528,1.504528,1.504528,1.504528,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,,,,,,,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,0.496494,0.496494,0.496494,0.496494,0.496494,0.496494,0.496494,0.496494,0.253262,0.253262,10,9.999999,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,1.504528,0.496494,0.496494,10,10,, +24158,0,0.250413,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.306,2.556,0,5.365989,6,4.5,0.455296,0.455296,0.455296,0.455296,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.548823,0.464181,0.455296,0.455296,0.548823,0.464181,0.472611,0.46668,0.455296,0.455296,0.472611,0.46668,0.520032,0.618295,0.455296,0.455296,0.520032,0.618295,0.455296,0.455296,0.455296,0.455296,0.455296,0.455296,,,,,,,0.548823,0.464181,0.472611,0.46668,0.520032,0.618295,0.455296,0.455296,0.455296,0.455296,0.209721,0.184329,0.186858,0.185078,0.201084,0.230563,0.181663,0.181663,0.09584,0.09584,27.37633,32.368343,31.79099,32.19504,28.891987,24.300332,33,33,33,33,,,,,,,,,,,5418,5418,0.455296,0.455296,0.455296,0.455296,0.455296,0.455296,0.455296,0.455296,0.181663,0.181663,33,33,, +24157,0,0.206753,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.556,2.763,0,4.430413,6,4.5,0.375914,0.375914,0.375914,0.375914,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.451197,0.392295,0.375914,0.375914,0.451197,0.392295,0.391844,0.390323,0.375914,0.375914,0.391844,0.390323,0.463287,0.510483,0.375914,0.375914,0.463287,0.510483,0.375914,0.375914,0.375914,0.375914,0.375914,0.375914,,,,,,,0.451197,0.392295,0.391844,0.390323,0.463287,0.510483,0.375914,0.375914,0.375914,0.375914,0.172575,0.154904,0.154769,0.154312,0.176202,0.19036,0.14999,0.14999,0.07913,0.07913,27.493886,31.621973,31.658436,31.781745,26.77637,24.300829,33,33,33,33,,,,,,,,,,,5418,5418,0.375914,0.375914,0.375914,0.375914,0.375914,0.375914,0.375914,0.375914,0.14999,0.14999,33,33,, +16384,0,0.065549,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,7.527,7.593,0,1.404612,6,4.5,0.119179,0.119179,0.119179,0.119179,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.127258,0.128098,0.119179,0.119179,0.127258,0.128098,0.121381,0.121589,0.119179,0.119179,0.121381,0.121589,0.141034,0.148267,0.119179,0.119179,0.141034,0.148267,0.119179,0.119179,0.119179,0.119179,0.119179,0.119179,,,,,,,0.127258,0.128098,0.121381,0.121589,0.141034,0.148267,0.119179,0.119179,0.119179,0.119179,0.049976,0.050228,0.048213,0.048275,0.054109,0.056279,0.047552,0.047552,0.025087,0.025087,30.904968,30.702281,32.401313,32.345916,27.886335,26.525798,33,33,33,33,,,,,,,,,,,5418,5418,0.119179,0.119179,0.119179,0.119179,0.119179,0.119179,0.119179,0.119179,0.047552,0.047552,33,33,, +31676,0,0.250176,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.360924,0.15,4,1.501059,1.501059,1.501059,1.501059,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,,,,,,,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,0.495349,0.495349,0.495349,0.495349,0.495349,0.495349,0.495349,0.495349,0.252678,0.252678,10,9.999999,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,1.501059,0.495349,0.495349,10,10,, +14846,0,0.243128,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.296,7.539,0,5.20989,5,5,0.416791,0.416791,0.416791,0.416791,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.480663,0.465055,0.416791,0.416791,0.480663,0.465055,0.452754,0.438597,0.416791,0.416791,0.452754,0.438597,0.575324,0.538355,0.416791,0.416791,0.575324,0.538355,0.416791,0.416791,0.416791,0.416791,0.416791,0.416791,,,,,,,0.480663,0.465055,0.452754,0.438597,0.575324,0.538355,0.416791,0.416791,0.416791,0.416791,0.187962,0.18328,0.179589,0.175342,0.21636,0.205269,0.1688,0.1688,0.089263,0.089263,30.349082,31.367661,32.219876,33.259875,25.355626,27.096806,35,35,35,35,,,,,,,,,,,7946,7946,0.416791,0.416791,0.416791,0.416791,0.416791,0.416791,0.416791,0.416791,0.1688,0.1688,35,35,, +17964,1,0.136632,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.253,0.39,0,2.92783,8,4.5,0.273264,,0.273264,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.274191,,0.273264,,0.274191,,0.274162,,0.273264,,0.274162,,0.280048,,0.273264,,0.280048,,0.273264,,0.273264,,0.273264,,,,,,,,0.274191,,0.274162,,0.280048,,0.273264,,0.273264,,0.106851,,0.106842,,0.108608,,0.106573,,0.056019,,29.898566,,29.901753,,29.273254,,30,,30,,,,,,,,,,,,5504,,0.273264,,0.273264,,0.273264,,0.273264,,0.106573,,30,,, +24155,0,0.406216,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,3.054,3.46,0,8.704637,6,4.5,0.738575,0.738575,0.738575,0.738575,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.969209,0.858267,0.738575,0.738575,0.969209,0.858267,0.817712,0.836461,0.738575,0.738575,0.817712,0.836461,0.979027,1.031272,0.738575,0.738575,0.979027,1.031272,0.738575,0.738575,0.738575,0.738575,0.738575,0.738575,,,,,,,0.969209,0.858267,0.817712,0.836461,0.979027,1.031272,0.738575,0.738575,0.738575,0.738575,0.363882,0.330599,0.318433,0.324057,0.366827,0.382501,0.294692,0.294692,0.15547,0.15547,25.147291,28.397888,29.806301,29.13823,24.895098,23.633906,33,33,33,33,,,,,,,,,,,5418,5418,0.738575,0.738575,0.738575,0.738575,0.738575,0.738575,0.738575,0.738575,0.294692,0.294692,33,33,, +31498,0,0.240815,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.160317,0.15,4,1.444889,1.444889,1.444889,1.444889,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,,,,,,,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,0.476813,0.476813,0.476813,0.476813,0.476813,0.476813,0.476813,0.476813,0.243223,0.243223,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,1.444889,0.476813,0.476813,10,10,, +31679,0,0.418655,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.97118,0.15,4,2.51193,2.51193,2.51193,2.51193,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,,,,,,,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,0.828937,0.828937,0.828937,0.828937,0.828937,0.828937,0.828937,0.828937,0.422842,0.422842,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,2.51193,0.828937,0.828937,10,10,, +14564,0,0.24685,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.049,7.296,0,5.289646,5,5,0.423172,0.423172,0.423172,0.423172,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.471204,0.472174,0.423172,0.423172,0.471204,0.472174,0.445072,0.445312,0.423172,0.423172,0.445072,0.445312,0.517347,0.546596,0.423172,0.423172,0.517347,0.546596,0.423172,0.423172,0.423172,0.423172,0.423172,0.423172,,,,,,,0.471204,0.472174,0.445072,0.445312,0.517347,0.546596,0.423172,0.423172,0.423172,0.423172,0.185794,0.186085,0.177955,0.178027,0.199637,0.208412,0.171385,0.171385,0.090629,0.090629,31.432233,31.367661,33.277812,33.259875,28.628753,27.096806,35,35,35,35,,,,,,,,,,,7946,7946,0.423172,0.423172,0.423172,0.423172,0.423172,0.423172,0.423172,0.423172,0.171385,0.171385,35,35,, +24049,0,0.190005,2,2,1,2,4,,3,2,Warren,Rd,4710470,7.201,7.391,0,4.071527,6,4.5,0.345463,0.345463,0.345463,0.345463,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.378759,0.381807,0.345463,0.345463,0.378759,0.381807,0.37978,0.389533,0.345463,0.345463,0.37978,0.389533,0.459296,0.416931,0.345463,0.345463,0.459296,0.416931,0.345463,0.345463,0.345463,0.345463,0.345463,0.345463,,,,,,,0.378759,0.381807,0.37978,0.389533,0.459296,0.416931,0.345463,0.345463,0.345463,0.345463,0.147828,0.148743,0.148135,0.151061,0.17199,0.15928,0.13784,0.13784,0.07272,0.07272,30.099048,29.858706,30.018094,29.266501,24.821166,27.343299,33,33,33,33,,,,,,,,,,,5418,5418,0.345463,0.345463,0.345463,0.345463,0.345463,0.345463,0.345463,0.345463,0.13784,0.13784,33,33,, +24154,0,0.284525,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,3.46,3.745,0,6.096968,6,4.5,0.517319,0.517319,0.517319,0.517319,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.660866,0.679594,0.517319,0.517319,0.660866,0.679594,0.598163,0.630856,0.517319,0.517319,0.598163,0.630856,0.790912,0.786697,0.517319,0.517319,0.790912,0.786697,0.517319,0.517319,0.517319,0.517319,0.517319,0.517319,,,,,,,0.660866,0.679594,0.598163,0.630856,0.790912,0.786697,0.517319,0.517319,0.517319,0.517319,0.249474,0.255093,0.230663,0.240471,0.288488,0.287224,0.20641,0.20641,0.108896,0.108896,25.832021,25.120161,28.539912,27.060873,21.584578,21.700229,33,33,33,33,,,,,,,,,,,5418,5418,0.517319,0.517319,0.517319,0.517319,0.517319,0.517319,0.517319,0.517319,0.20641,0.20641,33,33,, +31500,0,0.370805,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.945821,0.15,4,2.22483,2.22483,2.22483,2.22483,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,,,,,,,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,0.734194,0.734194,0.734194,0.734194,0.734194,0.734194,0.734194,0.734194,0.374513,0.374513,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,2.22483,0.734194,0.734194,10,10,, +31682,0,0.250401,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.365738,0.15,4,1.502407,1.502407,1.502407,1.502407,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,,,,,,,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,0.495794,0.495794,0.495794,0.495794,0.495794,0.495794,0.495794,0.495794,0.252905,0.252905,10,9.999999,9.999999,9.999999,9.999997,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,1.502407,0.495794,0.495794,10,10,, +18370,1,0.197275,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.056,0.253,0,4.227325,8,4.5,0.39455,,0.39455,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.395263,,0.39455,,0.395263,,0.395454,,0.39455,,0.395454,,0.401185,,0.39455,,0.401185,,0.39455,,0.39455,,0.39455,,,,,,,,0.395263,,0.395454,,0.401185,,0.39455,,0.39455,,0.154089,,0.154146,,0.155865,,0.153875,,0.080883,,29.945885,,29.931425,,29.503858,,30,,30,,,,,,,,,,,,5504,,0.39455,,0.39455,,0.39455,,0.39455,,0.153875,,30,,, +22248,-1,0.167822,0,2,0,2,5,DIV,3,2,Central City,Pkwy,4702294,0,0.168,0,3.596186,8,4.5,,0.335644,,0.335644,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.335652,,0.335644,,0.335652,,0.335645,,0.335644,,0.335645,,0.337347,,0.335644,,0.337347,,0.335644,,0.335644,,0.335644,,,,,,,,0.335652,,0.335645,,0.337347,,0.335644,,0.335644,,0.130904,,0.130901,,0.131412,,0.130901,,0.068807,,29.999277,,29.999947,,29.848541,,30,,30,,,,,,,,,,,,5504,,0.335644,,0.335644,,0.335644,,0.335644,,0.130901,,30,, +17966,0,0.056042,2,2,1,2,5,,3,2,Central City,Pkwy,1669910,0,0.056,0,1.200905,8,4.5,0.134501,0.134501,0.134501,0.134501,25,25,14700,14700,3337,3337,7350,7350,4742,4742,5057,5057,5051,5051,0.134857,0.134506,0.134501,0.134501,0.134857,0.134506,0.134953,0.134502,0.134501,0.134501,0.134953,0.134502,0.137815,0.135501,0.134501,0.134501,0.137815,0.135501,0.134501,0.134501,0.134501,0.134501,0.134501,0.134501,,,,,,,0.134857,0.134506,0.134953,0.134502,0.137815,0.135501,0.134501,0.134501,0.134501,0.134501,0.050545,0.050439,0.050573,0.050438,0.051432,0.050738,0.050438,0.050438,0.02634,0.02634,24.934033,24.999118,24.916414,24.999935,24.398894,24.81552,25,25,25,25,,,,,,,,,,,5057,5057,0.134501,0.134501,0.134501,0.134501,0.134501,0.134501,0.134501,0.134501,0.050438,0.050438,25,25,, +18362,1,0.101596,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.39,0.491,0,2.177061,8,4.5,0.203192,,0.203192,,30,,16000,,3632,,8000,,5162,,5504,,5498,,0.203745,,0.203192,,0.203745,,0.20375,,0.203192,,0.20375,,0.208541,,0.203192,,0.208541,,0.203192,,0.203192,,0.203192,,,,,,,,0.203745,,0.20375,,0.208541,,0.203192,,0.203192,,0.079411,,0.079412,,0.08085,,0.079245,,0.041654,,29.91867,,29.917834,,29.230551,,30,,30,,,,,,,,,,,,5504,,0.203192,,0.203192,,0.203192,,0.203192,,0.079245,,30,,, +14850,0,0.501152,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0,0.501,0,10.738963,8,4.5,1.202764,1.202764,1.202764,1.202764,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.202764,1.203861,1.202764,1.202764,1.202764,1.203861,1.202764,1.202764,1.202764,1.202764,1.202764,1.202764,1.220619,1.20445,1.202764,1.202764,1.220619,1.20445,1.202764,1.202764,1.202764,1.202764,1.202764,1.202764,,,,,,,1.202764,1.203861,1.202764,1.202764,1.220619,1.20445,1.202764,1.202764,1.202764,1.202764,0.451036,0.451366,0.451036,0.451036,0.456393,0.451542,0.451036,0.451036,0.235541,0.235541,25,24.977223,25,24.999999,24.634308,24.965,25,25,25,25,,,,,,,,,,,2408,2408,1.202764,1.202764,1.202764,1.202764,1.202764,1.202764,1.202764,1.202764,0.451036,0.451036,25,25,, +15801,1,0.422517,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.956,9.379,0,9.053929,5,5,0.633775,,0.633775,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.692427,,0.633775,,0.692427,,0.643194,,0.633775,,0.643194,,0.683653,,0.633775,,0.683653,,0.633775,,0.633775,,0.633775,,,,,,,,0.692427,,0.643194,,0.683653,,0.633775,,0.633775,,0.283781,,0.269011,,0.281149,,0.266186,,0.141543,,36.611817,,39.414254,,37.081683,,40,,40,,,,,,,,,,,,13760,,0.633775,,0.633775,,0.633775,,0.633775,,0.266186,,40,,, +15854,0,0.271864,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.223,1.495,0,5.825659,6,4.5,0.494298,0.494298,0.494298,0.494298,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.572942,1.097198,0.494298,0.494298,0.572942,1.097198,0.679176,0.67126,0.494298,0.494298,0.679176,0.67126,1.10439,0.648397,0.494298,0.494298,1.10439,0.648397,0.494298,0.494298,0.494298,0.494298,0.494298,0.494298,,,,,,,0.572942,1.097198,0.679176,0.67126,1.10439,0.648397,0.494298,0.494298,0.494298,0.494298,0.220818,0.378095,0.252688,0.250313,0.380253,0.243455,0.197225,0.197225,0.10405,0.10405,28.470325,14.866814,24.01712,24.300355,14.770006,25.15717,33,33,33,33,,,,,,,,,,,2580,2580,0.494298,0.494298,0.494298,0.494298,0.494298,0.494298,0.494298,0.494298,0.197225,0.197225,33,33,, +15863,0,0.456143,1,1,0,2,5,,3,2,2nd,St,1599309,0.545,1.001,0,9.774502,8,4.5,1.094744,1.094744,1.094744,1.094744,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.094745,1.138639,1.094744,1.094744,1.094745,1.138639,1.094744,1.098131,1.094744,1.094744,1.094744,1.098131,1.155292,1.180656,1.094744,1.094744,1.155292,1.180656,1.094744,1.094744,1.094744,1.094744,1.094744,1.094744,,,,,,,1.094745,1.138639,1.094744,1.098131,1.155292,1.180656,1.094744,1.094744,1.094744,1.094744,0.410529,0.423698,0.410529,0.411545,0.428693,0.436303,0.410529,0.410529,0.214387,0.214387,24.99998,24.03624,25,24.922888,23.689769,23.18084,25,25,25,25,,,,,,,,,,,2408,2408,1.094744,1.094744,1.094744,1.094744,1.094744,1.094744,1.094744,1.094744,0.410529,0.410529,25,25,, +15866,0,0.203389,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.862,1.065,0,4.358329,8,4.5,0.488133,0.488133,0.488133,0.488133,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.491244,0.526789,0.488133,0.488133,0.491244,0.526789,0.490775,0.503072,0.488133,0.488133,0.490775,0.503072,0.523803,0.516016,0.488133,0.488133,0.523803,0.516016,0.488133,0.488133,0.488133,0.488133,0.488133,0.488133,,,,,,,0.491244,0.526789,0.490775,0.503072,0.523803,0.516016,0.488133,0.488133,0.488133,0.488133,0.183983,0.194647,0.183842,0.187531,0.193751,0.191415,0.18305,0.18305,0.095593,0.095593,24.841651,23.165488,24.865407,24.25762,23.297552,23.649114,25,25,25,25,,,,,,,,,,,2408,2408,0.488133,0.488133,0.488133,0.488133,0.488133,0.488133,0.488133,0.488133,0.18305,0.18305,25,25,, +16491,0,0.746363,1,1,0,2,4,,3,2,Palmer,Rd,1607406,5.544,6.29,0,15.993494,6,4.5,1.357024,1.357024,1.357024,1.357024,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.580649,1.568676,1.357024,1.357024,1.580649,1.568676,1.451013,1.453164,1.357024,1.357024,1.451013,1.453164,1.753735,1.757174,1.357024,1.357024,1.753735,1.757174,1.357024,1.357024,1.357024,1.357024,1.357024,1.357024,,,,,,,1.580649,1.568676,1.451013,1.453164,1.753735,1.757174,1.357024,1.357024,1.357024,1.357024,0.60854,0.604948,0.569649,0.570295,0.660466,0.661498,0.541452,0.541452,0.285653,0.285653,28.331265,28.54751,30.862423,30.816741,25.535087,25.485112,33,33,33,33,,,,,,,,,,,2580,2580,1.357024,1.357024,1.357024,1.357024,1.357024,1.357024,1.357024,1.357024,0.541452,0.541452,33,33,, +17997,0,0.167411,1,1,0,2,5,,3,2,Glenwood,Ave,1666001,2.364,2.532,0,3.587388,8,4.5,0.401787,0.401787,0.401787,0.401787,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.40385,0.41734,0.401787,0.401787,0.40385,0.41734,0.401911,0.401885,0.401787,0.401787,0.401911,0.401885,0.518827,0.479953,0.401787,0.401787,0.518827,0.479953,0.401787,0.401787,0.401787,0.401787,0.401787,0.401787,,,,,,,0.40385,0.41734,0.401911,0.401885,0.518827,0.479953,0.401787,0.401787,0.401787,0.401787,0.151289,0.155336,0.150707,0.150699,0.185782,0.17412,0.15067,0.15067,0.078683,0.078683,24.872341,24.068364,24.992286,24.993952,19.360374,20.928469,25,25,25,25,,,,,,,,,,,2408,2408,0.401787,0.401787,0.401787,0.401787,0.401787,0.401787,0.401787,0.401787,0.15067,0.15067,25,25,, +18755,0,0.745721,1,1,0,2,5,,3,2,Avondale,Ave,1686907,1.208,1.953,0,15.979733,8,4.5,1.78973,1.78973,1.78973,1.78973,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.78987,1.789902,1.78973,1.78973,1.78987,1.789902,1.789784,1.789784,1.78973,1.78973,1.789784,1.789784,1.801367,1.796889,1.78973,1.78973,1.801367,1.796889,1.78973,1.78973,1.78973,1.78973,1.78973,1.78973,,,,,,,1.78987,1.789902,1.789784,1.789784,1.801367,1.796889,1.78973,1.78973,1.78973,1.78973,0.671191,0.6712,0.671165,0.671165,0.67464,0.673297,0.671149,0.671149,0.350489,0.350489,24.998042,24.997592,24.99925,24.999252,24.838493,24.900395,25,25,25,25,,,,,,,,,,,2408,2408,1.78973,1.78973,1.78973,1.78973,1.78973,1.78973,1.78973,1.78973,0.671149,0.671149,25,25,, +19085,0,0.331696,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.211,1.542,0,7.107766,8,4.5,0.79607,0.79607,0.79607,0.79607,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.816562,0.796078,0.79607,0.79607,0.816562,0.796078,0.796146,0.796083,0.79607,0.79607,0.796146,0.796083,0.810751,0.827265,0.79607,0.79607,0.810751,0.827265,0.79607,0.79607,0.79607,0.79607,0.79607,0.79607,,,,,,,0.816562,0.796078,0.796146,0.796083,0.810751,0.827265,0.79607,0.79607,0.79607,0.79607,0.304674,0.298529,0.298549,0.29853,0.302931,0.307885,0.298526,0.298526,0.155897,0.155897,24.372603,24.99974,24.997614,24.999569,24.547298,24.05729,25,25,25,25,,,,,,,,,,,2408,2408,0.79607,0.79607,0.79607,0.79607,0.79607,0.79607,0.79607,0.79607,0.298526,0.298526,25,25,, +23582,-1,0.432855,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.92,9.352,0,9.27547,5,5,,0.649283,,0.649283,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.715376,,0.649283,,0.715376,,0.677255,,0.649283,,0.677255,,0.823293,,0.649283,,0.823293,,0.649283,,0.649283,,0.649283,,,,,,,,0.715376,,0.677255,,0.823293,,0.649283,,0.649283,,0.292527,,0.281091,,0.324902,,0.272699,,0.145007,,36.304401,,38.347896,,31.545668,,40,,40,,,,,,,,,,,,13760,,0.649283,,0.649283,,0.649283,,0.649283,,0.272699,,40,, +24432,0,0.192124,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.708,6.9,0,4.116945,5,5,0.329356,0.329356,0.329356,0.329356,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.361442,0.361852,0.329356,0.329356,0.361442,0.361852,0.338864,0.332198,0.329356,0.329356,0.338864,0.332198,0.450891,0.370586,0.329356,0.329356,0.450891,0.370586,0.329356,0.329356,0.329356,0.329356,0.329356,0.329356,,,,,,,0.361442,0.361852,0.338864,0.332198,0.450891,0.370586,0.329356,0.329356,0.329356,0.329356,0.143015,0.143138,0.136241,0.134242,0.16985,0.145758,0.133389,0.133389,0.070537,0.070537,31.892929,31.856804,34.017963,34.7005,25.565949,31.105977,35,35,35,35,,,,,,,,,,,7946,7946,0.329356,0.329356,0.329356,0.329356,0.329356,0.329356,0.329356,0.329356,0.133389,0.133389,35,35,, +15805,1,0.175557,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.5,8.675,0,3.761928,5,5,0.263335,,0.263335,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.271564,,0.263335,,0.271564,,0.264414,,0.263335,,0.264414,,0.277165,,0.263335,,0.277165,,0.263335,,0.263335,,0.263335,,,,,,,,0.271564,,0.264414,,0.277165,,0.263335,,0.263335,,0.113069,,0.110924,,0.11475,,0.110601,,0.058811,,38.787935,,39.83673,,38.004085,,40,,40,,,,,,,,,,,,13760,,0.263335,,0.263335,,0.263335,,0.263335,,0.110601,,40,,, +15865,0,0.430329,1,1,0,2,5,,3,2,2nd,St,1599309,0,0.43,0,9.221333,8,4.5,1.032789,1.032789,1.032789,1.032789,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.032789,1.043852,1.032789,1.032789,1.032789,1.043852,1.032789,1.032791,1.032789,1.032789,1.032789,1.032791,1.046187,1.039006,1.032789,1.032789,1.046187,1.039006,1.032789,1.032789,1.032789,1.032789,1.032789,1.032789,,,,,,,1.032789,1.043852,1.032789,1.032791,1.046187,1.039006,1.032789,1.032789,1.032789,1.032789,0.387296,0.390615,0.387296,0.387297,0.391315,0.389161,0.387296,0.387296,0.202255,0.202255,25,24.735045,25,24.999953,24.679835,24.850427,25,25,25,25,,,,,,,,,,,2408,2408,1.032789,1.032789,1.032789,1.032789,1.032789,1.032789,1.032789,1.032789,0.387296,0.387296,25,25,, +15870,0,0.360137,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.044,0.404,0,7.717219,8,4.5,0.864329,0.864329,0.864329,0.864329,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.866593,0.896886,0.864329,0.864329,0.866593,0.896886,0.865236,0.883737,0.864329,0.864329,0.865236,0.883737,0.87097,0.951501,0.864329,0.864329,0.87097,0.951501,0.864329,0.864329,0.864329,0.864329,0.864329,0.864329,,,,,,,0.866593,0.896886,0.865236,0.883737,0.87097,0.951501,0.864329,0.864329,0.864329,0.864329,0.324803,0.33389,0.324396,0.329946,0.326116,0.350275,0.324123,0.324123,0.169264,0.169264,24.934676,24.09249,24.973774,24.450954,24.809371,22.70961,25,25,25,25,,,,,,,,,,,2408,2408,0.864329,0.864329,0.864329,0.864329,0.864329,0.864329,0.864329,0.864329,0.324123,0.324123,25,25,, +17577,0,0.32715,1,1,0,2,5,,3,2,Annapolis,St,1680904,0.884,1.211,0,7.01036,8,4.5,0.78516,0.78516,0.78516,0.78516,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.785169,0.785168,0.78516,0.78516,0.785169,0.785168,0.785167,0.785174,0.78516,0.78516,0.785167,0.785174,0.785176,0.785193,0.78516,0.78516,0.785176,0.785193,0.78516,0.78516,0.78516,0.78516,0.78516,0.78516,,,,,,,0.785169,0.785168,0.785167,0.785174,0.785176,0.785193,0.78516,0.78516,0.78516,0.78516,0.294438,0.294438,0.294437,0.294439,0.29444,0.294445,0.294435,0.294435,0.153761,0.153761,24.999734,24.99974,24.999792,24.999569,24.99949,24.998971,25,25,25,25,,,,,,,,,,,2408,2408,0.78516,0.78516,0.78516,0.78516,0.78516,0.78516,0.78516,0.78516,0.294435,0.294435,25,25,, +22868,-1,0.248952,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.529,8.778,0,5.334687,5,5,,0.373428,,0.373428,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.384434,,0.373428,,0.384434,,0.376395,,0.373428,,0.376395,,0.403743,,0.373428,,0.403743,,0.373428,,0.373428,,0.373428,,,,,,,,0.384434,,0.376395,,0.403743,,0.373428,,0.373428,,0.160141,,0.15773,,0.165934,,0.15684,,0.083399,,38.854876,,39.684715,,36.996631,,40,,40,,,,,,,,,,,,13760,,0.373428,,0.373428,,0.373428,,0.373428,,0.15684,,40,, +24000,0,0.390539,2,2,1,2,3,,3,2,Wayne,Rd,4719470,5.821,6.211,0,8.368685,5,5,0.669495,0.669495,0.669495,0.669495,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.714902,0.706853,0.669495,0.669495,0.714902,0.706853,0.683035,0.679236,0.669495,0.669495,0.683035,0.679236,0.755264,0.748606,0.669495,0.669495,0.755264,0.748606,0.669495,0.669495,0.669495,0.669495,0.669495,0.669495,,,,,,,0.714902,0.706853,0.683035,0.679236,0.755264,0.748606,0.669495,0.669495,0.669495,0.669495,0.284768,0.282353,0.275207,0.274068,0.296876,0.294879,0.271145,0.271145,0.143383,0.143383,32.776959,33.150199,34.306189,34.498037,31.025347,31.301258,35,35,35,35,,,,,,,,,,,7946,7946,0.669495,0.669495,0.669495,0.669495,0.669495,0.669495,0.669495,0.669495,0.271145,0.271145,35,35,, +31660,0,0.176203,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.775779,0.15,4,1.057218,1.057218,1.057218,1.057218,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,,,,,,,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,0.348882,0.348882,0.348882,0.348882,0.348882,0.348882,0.348882,0.348882,0.177965,0.177965,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,1.057218,0.348882,0.348882,10,10,, +31661,0,0.231789,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.966896,0.15,4,1.390731,1.390731,1.390731,1.390731,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,,,,,,,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,0.458941,0.458941,0.458941,0.458941,0.458941,0.458941,0.458941,0.458941,0.234106,0.234106,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,1.390731,0.458941,0.458941,10,10,, +17905,0,0.058893,1,1,0,2,5,,3,2,Annapolis,St,1680904,0.754,0.812,0,1.261991,8,4.5,0.141343,0.141343,0.141343,0.141343,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.146667,0.141713,0.141343,0.141343,0.146667,0.141713,0.144517,0.141491,0.141343,0.141343,0.144517,0.141491,0.155598,0.142429,0.141343,0.141343,0.155598,0.142429,0.141343,0.141343,0.141343,0.141343,0.141343,0.141343,,,,,,,0.146667,0.141713,0.144517,0.141491,0.155598,0.142429,0.141343,0.141343,0.141343,0.141343,0.054601,0.053115,0.053956,0.053048,0.05728,0.053329,0.053004,0.053004,0.02768,0.02768,24.09249,24.934676,24.450954,24.973774,22.70961,24.809371,25,25,25,25,,,,,,,,,,,2408,2408,0.141343,0.141343,0.141343,0.141343,0.141343,0.141343,0.141343,0.141343,0.053004,0.053004,25,25,, +24316,0,0.152697,2,2,1,2,3,,3,2,Wayne,Rd,4719470,5.668,5.821,0,3.272076,5,5,0.261766,0.261766,0.261766,0.261766,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.268482,0.271119,0.261766,0.261766,0.268482,0.271119,0.263412,0.264026,0.261766,0.261766,0.263412,0.264026,0.276697,0.2846,0.261766,0.261766,0.276697,0.2846,0.261766,0.261766,0.261766,0.261766,0.261766,0.261766,,,,,,,0.268482,0.271119,0.263412,0.264026,0.276697,0.2846,0.261766,0.261766,0.261766,0.261766,0.10803,0.108821,0.106509,0.106693,0.110495,0.112866,0.106015,0.106015,0.056062,0.056062,34.124496,33.79259,34.781353,34.700379,33.111346,32.191839,35,35,35,35,,,,,,,,,,,7946,7946,0.261766,0.261766,0.261766,0.261766,0.261766,0.261766,0.261766,0.261766,0.106015,0.106015,35,35,, +31558,0,0.113332,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.428552,0.15,4,0.679994,0.679994,0.679994,0.679994,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.679995,0.679995,0.679994,0.679994,0.679995,0.679995,0.679994,0.679995,0.679994,0.679994,0.679994,0.679995,0.679995,0.679995,0.679994,0.679994,0.679995,0.679995,0.679994,0.679994,0.679994,0.679994,0.679994,0.679994,,,,,,,0.679995,0.679995,0.679994,0.679995,0.679995,0.679995,0.679994,0.679994,0.679994,0.679994,0.224398,0.224398,0.224398,0.224398,0.224398,0.224398,0.224398,0.224398,0.114466,0.114466,9.999998,9.999998,9.999999,9.999999,9.999998,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,0.679994,0.679994,0.679994,0.679994,0.679994,0.679994,0.679994,0.679994,0.224398,0.224398,10,10,, +31559,0,0.096037,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.057944,0.15,4,0.576224,0.576224,0.576224,0.576224,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.576225,0.576224,0.576224,0.576224,0.576225,0.576224,0.576224,0.576224,0.576224,0.576224,0.576224,0.576224,0.576225,0.576225,0.576224,0.576224,0.576225,0.576225,0.576224,0.576224,0.576224,0.576224,0.576224,0.576224,,,,,,,0.576225,0.576224,0.576224,0.576224,0.576225,0.576225,0.576224,0.576224,0.576224,0.576224,0.190154,0.190154,0.190154,0.190154,0.190154,0.190154,0.190154,0.190154,0.096998,0.096998,9.999996,9.999999,9.999999,9.999999,9.999994,9.999991,10,10,10,10,,,,,,,,,,,34400,34400,0.576224,0.576224,0.576224,0.576224,0.576224,0.576224,0.576224,0.576224,0.190154,0.190154,10,10,, +17778,0,0.071468,1,1,0,2,5,,3,2,Annapolis,St,1680904,0.812,0.884,0,1.531454,8,4.5,0.171523,0.171523,0.171523,0.171523,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.198767,0.1977,0.171523,0.171523,0.198767,0.1977,0.187686,0.186356,0.171523,0.171523,0.187686,0.186356,0.217548,0.209448,0.171523,0.171523,0.217548,0.209448,0.171523,0.171523,0.171523,0.171523,0.171523,0.171523,,,,,,,0.198767,0.1977,0.187686,0.186356,0.217548,0.209448,0.171523,0.171523,0.171523,0.171523,0.072494,0.072174,0.06917,0.068771,0.078129,0.075699,0.064321,0.064321,0.03359,0.03359,21.573399,21.689823,22.846998,23.010109,19.710926,20.473238,25,25,25,25,,,,,,,,,,,2408,2408,0.171523,0.171523,0.171523,0.171523,0.171523,0.171523,0.171523,0.171523,0.064321,0.064321,25,25,, +15867,0,0.169015,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.693,0.862,0,3.621756,8,4.5,0.405637,0.405637,0.405637,0.405637,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.457414,0.563579,0.405637,0.405637,0.457414,0.563579,0.438429,0.483706,0.405637,0.405637,0.438429,0.483706,0.659845,0.631179,0.405637,0.405637,0.659845,0.631179,0.405637,0.405637,0.405637,0.405637,0.405637,0.405637,,,,,,,0.457414,0.563579,0.438429,0.483706,0.659845,0.631179,0.405637,0.405637,0.405637,0.405637,0.167647,0.199496,0.161952,0.175535,0.228376,0.219776,0.152114,0.152114,0.079437,0.079437,22.170111,17.99378,23.130111,20.965032,15.368626,16.066632,25,25,25,25,,,,,,,,,,,2408,2408,0.405637,0.405637,0.405637,0.405637,0.405637,0.405637,0.405637,0.405637,0.152114,0.152114,25,25,, +15868,0,0.224727,2,2,0,2,5,,3,2,Elizabeth,St,1599304,0.468,0.693,0,4.81557,8,4.5,0.539344,0.539344,0.539344,0.539344,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.539533,0.541798,0.539344,0.539344,0.539533,0.541798,0.539547,0.540182,0.539344,0.539344,0.539547,0.540182,0.541734,0.541944,0.539344,0.539344,0.541734,0.541944,0.539344,0.539344,0.539344,0.539344,0.539344,0.539344,,,,,,,0.539533,0.541798,0.539547,0.540182,0.541734,0.541944,0.539344,0.539344,0.539344,0.539344,0.202311,0.20299,0.202315,0.202505,0.202971,0.203034,0.202254,0.202254,0.105621,0.105621,24.991231,24.886742,24.990573,24.961211,24.889696,24.880056,25,25,25,25,,,,,,,,,,,4816,4816,0.539344,0.539344,0.539344,0.539344,0.539344,0.539344,0.539344,0.539344,0.202254,0.202254,25,25,, +31659,0,0.074512,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.596692,0.15,4,0.447074,0.447074,0.447074,0.447074,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,,,,,,,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.147534,0.147534,0.147534,0.147534,0.147534,0.147534,0.147534,0.147534,0.075257,0.075257,10,9.999999,9.999999,10,9.999995,10,10,10,10,10,,,,,,,,,,,34400,34400,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.447074,0.147534,0.147534,10,10,, +15869,0,0.063685,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.404,0.468,0,1.364675,8,4.5,0.152844,0.152844,0.152844,0.152844,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.154396,0.174419,0.152844,0.152844,0.154396,0.174419,0.159902,0.157042,0.152844,0.152844,0.159902,0.157042,0.206921,0.1622,0.152844,0.152844,0.206921,0.1622,0.152844,0.152844,0.152844,0.152844,0.152844,0.152844,,,,,,,0.154396,0.174419,0.159902,0.157042,0.206921,0.1622,0.152844,0.152844,0.152844,0.152844,0.057782,0.063789,0.059434,0.058576,0.07354,0.060123,0.057316,0.057316,0.029932,0.029932,24.748616,21.907597,23.896513,24.331704,18.466435,23.55792,25,25,25,25,,,,,,,,,,,2408,2408,0.152844,0.152844,0.152844,0.152844,0.152844,0.152844,0.152844,0.152844,0.057316,0.057316,25,25,, +31662,0,0.023042,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.493763,0.15,4,0.138254,0.138254,0.138254,0.138254,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,,,,,,,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.045624,0.045624,0.045624,0.045624,0.045624,0.045624,0.045624,0.045624,0.023273,0.023273,9.999998,9.999997,9.999997,9.999997,9.999989,9.999989,10,10,10,10,,,,,,,,,,,34400,34400,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.138254,0.045624,0.045624,10,10,, +15802,1,0.184796,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.772,8.956,0,3.959904,5,5,0.277193,,0.277193,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.300005,,0.277193,,0.300005,,0.279925,,0.277193,,0.279925,,0.305024,,0.277193,,0.305024,,0.277193,,0.277193,,0.277193,,,,,,,,0.300005,,0.279925,,0.305024,,0.277193,,0.277193,,0.123265,,0.117241,,0.12477,,0.116421,,0.061907,,36.958449,,39.609616,,36.350397,,40,,40,,,,,,,,,,,,13760,,0.277193,,0.277193,,0.277193,,0.277193,,0.116421,,40,,, +22576,-1,0.141741,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.778,8.92,0,3.037301,5,5,,0.212611,,0.212611,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.233875,,0.212611,,0.233875,,0.221594,,0.212611,,0.221594,,0.288611,,0.212611,,0.288611,,0.212611,,0.212611,,0.212611,,,,,,,,0.233875,,0.221594,,0.288611,,0.212611,,0.212611,,0.095676,,0.091991,,0.112097,,0.089297,,0.047483,,36.363154,,38.378576,,29.466797,,40,,40,,,,,,,,,,,,13760,,0.212611,,0.212611,,0.212611,,0.212611,,0.089297,,40,, +23985,0,0.23837,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.47,6.708,0,5.107924,5,5,0.408634,0.408634,0.408634,0.408634,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.448444,0.448952,0.408634,0.408634,0.448444,0.448952,0.42043,0.412161,0.408634,0.408634,0.42043,0.412161,0.559423,0.459789,0.408634,0.408634,0.559423,0.459789,0.408634,0.408634,0.408634,0.408634,0.408634,0.408634,,,,,,,0.448444,0.448952,0.42043,0.412161,0.559423,0.459789,0.408634,0.408634,0.408634,0.408634,0.17744,0.177592,0.169036,0.166555,0.210734,0.180843,0.165497,0.165497,0.087516,0.087516,31.892929,31.856804,34.017963,34.7005,25.565949,31.105977,35,35,35,35,,,,,,,,,,,7946,7946,0.408634,0.408634,0.408634,0.408634,0.408634,0.408634,0.408634,0.408634,0.165497,0.165497,35,35,, +24433,0,0.169416,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.3,6.47,0,3.630333,5,5,0.290427,0.290427,0.290427,0.290427,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.29456,0.328394,0.290427,0.290427,0.29456,0.328394,0.291788,0.299305,0.290427,0.290427,0.291788,0.299305,0.300431,0.343645,0.290427,0.290427,0.300431,0.343645,0.290427,0.290427,0.290427,0.290427,0.290427,0.290427,,,,,,,0.29456,0.328394,0.291788,0.299305,0.300431,0.343645,0.290427,0.290427,0.290427,0.290427,0.118863,0.129013,0.118031,0.120286,0.120624,0.133588,0.117623,0.117623,0.0622,0.0622,34.508833,30.953498,34.83671,33.961761,33.834521,29.579768,35,35,35,35,,,,,,,,,,,7946,7946,0.290427,0.290427,0.290427,0.290427,0.290427,0.290427,0.290427,0.290427,0.117623,0.117623,35,35,, +15803,1,0.059481,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.712,8.772,0,1.274584,5,5,0.089221,,0.089221,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.092498,,0.089221,,0.092498,,0.089569,,0.089221,,0.089569,,0.093433,,0.089221,,0.093433,,0.089221,,0.089221,,0.089221,,,,,,,,0.092498,,0.089569,,0.093433,,0.089221,,0.089221,,0.038456,,0.037577,,0.038736,,0.037473,,0.019926,,38.583024,,39.844429,,38.196762,,40,,40,,,,,,,,,,,,13760,,0.089221,,0.089221,,0.089221,,0.089221,,0.037473,,40,,, +15804,1,0.036914,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.675,8.712,0,0.79102,5,5,0.055371,,0.055371,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.057102,,0.055371,,0.057102,,0.055535,,0.055371,,0.055535,,0.057713,,0.055371,,0.057713,,0.055371,,0.055371,,0.055371,,,,,,,,0.057102,,0.055535,,0.057713,,0.055371,,0.055371,,0.023775,,0.023305,,0.023959,,0.023256,,0.012366,,38.787935,,39.882089,,38.376781,,40,,40,,,,,,,,,,,,13760,,0.055371,,0.055371,,0.055371,,0.055371,,0.023256,,40,,, +19254,1,0.064534,1,0,0,1,3,RSF,3,2,S Wayne/E Michigan Cutoff,,1804107,0,0.065,0,,5,5,0.154881,,0.154881,,25,,10000,,2270,,5000,,3226,,3440,,3436,,0.154881,,0.154881,,0.154881,,0.154881,,0.154881,,0.154881,,0.154881,,0.154881,,0.154881,,0.154881,,0.154881,,0.154881,,,,,,,,0.154881,,0.154881,,0.154881,,0.154881,,0.154881,,0.05808,,0.05808,,0.05808,,0.05808,,0.030331,,24.99997,,24.999954,,24.999994,,25,,25,,,,,,,,,,,,3440,,0.154881,,0.154881,,0.154881,,0.154881,,0.05808,,25,,, +23989,0,0.0578,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.242,6.3,0,1.238567,5,5,0.099085,0.099085,0.099085,0.099085,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.105806,0.112039,0.099085,0.099085,0.105806,0.112039,0.101089,0.102114,0.099085,0.099085,0.101089,0.102114,0.111779,0.117242,0.099085,0.099085,0.111779,0.117242,0.099085,0.099085,0.099085,0.099085,0.099085,0.099085,,,,,,,0.105806,0.112039,0.101089,0.102114,0.111779,0.117242,0.099085,0.099085,0.099085,0.099085,0.042146,0.044016,0.040731,0.041038,0.043938,0.045577,0.04013,0.04013,0.021221,0.021221,32.776959,30.953498,34.306189,33.961761,31.025347,29.579768,35,35,35,35,,,,,,,,,,,7946,7946,0.099085,0.099085,0.099085,0.099085,0.099085,0.099085,0.099085,0.099085,0.04013,0.04013,35,35,, +24435,0,0.031095,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.211,6.242,0,0.666318,5,5,0.053305,0.053305,0.053305,0.053305,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.056921,0.058908,0.053305,0.053305,0.056921,0.058908,0.054383,0.054488,0.053305,0.053305,0.054383,0.054488,0.060134,0.06175,0.053305,0.053305,0.060134,0.06175,0.053305,0.053305,0.053305,0.053305,0.053305,0.053305,,,,,,,0.056921,0.058908,0.054383,0.054488,0.060134,0.06175,0.053305,0.053305,0.053305,0.053305,0.022673,0.02327,0.021912,0.021944,0.023637,0.024122,0.021589,0.021589,0.011416,0.011416,32.776959,31.671152,34.306189,34.240233,31.025347,30.213665,35,35,35,35,,,,,,,,,,,7946,7946,0.053305,0.053305,0.053305,0.053305,0.053305,0.053305,0.053305,0.053305,0.021589,0.021589,35,35,, +19255,1,0.071069,1,0,0,1,3,RSF,3,2,E Michigan/S Wayne Cutoff,,1804106,0,0.071,0,,5,5,0.170566,,0.170566,,25,,10000,,2270,,5000,,3226,,3440,,3436,,0.170566,,0.170566,,0.170566,,0.170566,,0.170566,,0.170566,,0.170567,,0.170566,,0.170567,,0.170566,,0.170566,,0.170566,,,,,,,,0.170566,,0.170566,,0.170567,,0.170566,,0.170566,,0.063962,,0.063962,,0.063962,,0.063962,,0.033402,,25,,24.999894,,24.999816,,25,,25,,,,,,,,,,,,3440,,0.170566,,0.170566,,0.170566,,0.170566,,0.063962,,25,,, +15864,0,0.114406,1,1,0,2,5,,3,2,2nd,St,1599309,0.43,0.545,0,2.451548,8,4.5,0.274573,0.274573,0.274573,0.274573,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.274573,0.285583,0.274573,0.274573,0.274573,0.285583,0.274573,0.275423,0.274573,0.274573,0.274573,0.275423,0.390208,0.296121,0.274573,0.274573,0.390208,0.296121,0.274573,0.274573,0.274573,0.274573,0.274573,0.274573,,,,,,,0.274573,0.285583,0.274573,0.275423,0.390208,0.296121,0.274573,0.274573,0.274573,0.274573,0.102965,0.106268,0.102965,0.10322,0.137655,0.109429,0.102965,0.102965,0.053771,0.053771,24.999997,24.03624,25,24.922888,17.591491,23.18084,25,25,25,25,,,,,,,,,,,2408,2408,0.274573,0.274573,0.274573,0.274573,0.274573,0.274573,0.274573,0.274573,0.102965,0.102965,25,25,, +16249,0,0.499295,1,1,0,2,4,,3,2,Palmer,Rd,1607406,5.045,5.544,0,10.699172,6,4.5,0.907809,0.907809,0.907809,0.907809,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.985385,0.959998,0.907809,0.907809,0.985385,0.959998,0.938848,0.943277,0.907809,0.907809,0.938848,0.943277,1.022854,1.032272,0.907809,0.907809,1.022854,1.032272,0.907809,0.907809,0.907809,0.907809,0.907809,0.907809,,,,,,,0.985385,0.959998,0.938848,0.943277,1.022854,1.032272,0.907809,0.907809,0.907809,0.907809,0.385488,0.377872,0.371527,0.372856,0.396729,0.399555,0.362216,0.362216,0.191094,0.191094,30.402018,31.205999,31.908994,31.759161,29.28834,29.021107,33,33,33,33,,,,,,,,,,,2580,2580,0.907809,0.907809,0.907809,0.907809,0.907809,0.907809,0.907809,0.907809,0.362216,0.362216,33,33,, +17795,0,0.249361,1,1,0,2,5,,3,2,Avondale,Ave,1686907,0.703,0.952,0,5.343456,8,4.5,0.598467,0.598467,0.598467,0.598467,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.602823,0.601635,0.598467,0.598467,0.602823,0.601635,0.599456,0.599649,0.598467,0.598467,0.599456,0.599649,0.625482,0.615437,0.598467,0.598467,0.625482,0.615437,0.598467,0.598467,0.598467,0.598467,0.598467,0.598467,,,,,,,0.602823,0.601635,0.599456,0.599649,0.625482,0.615437,0.598467,0.598467,0.598467,0.598467,0.225732,0.225376,0.224722,0.22478,0.23253,0.229516,0.224425,0.224425,0.1172,0.1172,24.819368,24.868347,24.958758,24.950713,23.920243,24.310661,25,25,25,25,,,,,,,,,,,2408,2408,0.598467,0.598467,0.598467,0.598467,0.598467,0.598467,0.598467,0.598467,0.224425,0.224425,25,25,, +17986,0,0.285014,1,1,0,2,5,,3,2,Harvey,Ave,1666107,0.214,0.499,0,6.107448,8,4.5,0.684034,0.684034,0.684034,0.684034,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.697326,0.684143,0.684034,0.684034,0.697326,0.684143,0.685402,0.685865,0.684034,0.684034,0.685402,0.685865,0.693833,0.707314,0.684034,0.684034,0.693833,0.707314,0.684034,0.684034,0.684034,0.684034,0.684034,0.684034,,,,,,,0.697326,0.684143,0.685402,0.685865,0.693833,0.707314,0.684034,0.684034,0.684034,0.684034,0.2605,0.256545,0.256923,0.257062,0.259452,0.263497,0.256513,0.256513,0.133957,0.133957,24.523481,24.996023,24.950094,24.933253,24.646931,24.177183,25,25,25,25,,,,,,,,,,,2408,2408,0.684034,0.684034,0.684034,0.684034,0.684034,0.684034,0.684034,0.684034,0.256513,0.256513,25,25,, +18005,0,0.208721,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,1.978,2.186,0,4.472591,8,4.5,0.50093,0.50093,0.50093,0.50093,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.52993,0.505639,0.50093,0.50093,0.52993,0.505639,0.504956,0.506486,0.50093,0.50093,0.504956,0.506486,0.535759,0.558626,0.50093,0.50093,0.535759,0.558626,0.50093,0.50093,0.50093,0.50093,0.50093,0.50093,,,,,,,0.52993,0.505639,0.504956,0.506486,0.535759,0.558626,0.50093,0.50093,0.50093,0.50093,0.196549,0.189261,0.189056,0.189516,0.198298,0.205158,0.187849,0.187849,0.098099,0.098099,23.631899,24.767202,24.800706,24.725745,23.37477,22.417939,25,25,25,25,,,,,,,,,,,2408,2408,0.50093,0.50093,0.50093,0.50093,0.50093,0.50093,0.50093,0.50093,0.187849,0.187849,25,25,, +23983,0,0.234432,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.9,7.134,0,5.023537,5,5,0.401883,0.401883,0.401883,0.401883,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.424576,0.430343,0.401883,0.401883,0.424576,0.430343,0.407836,0.406177,0.401883,0.401883,0.407836,0.406177,0.487665,0.438894,0.401883,0.401883,0.487665,0.438894,0.401883,0.401883,0.401883,0.401883,0.401883,0.401883,,,,,,,0.424576,0.430343,0.407836,0.406177,0.487665,0.438894,0.401883,0.401883,0.401883,0.401883,0.169571,0.1713,0.164549,0.164051,0.188497,0.173866,0.162763,0.162763,0.08607,0.08607,33.129279,32.685372,34.489087,34.630022,28.843369,32.048497,35,35,35,35,,,,,,,,,,,7946,7946,0.401883,0.401883,0.401883,0.401883,0.401883,0.401883,0.401883,0.401883,0.162763,0.162763,35,35,, +24431,0,0.295855,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.134,7.43,0,6.339757,5,5,0.507181,0.507181,0.507181,0.507181,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.53582,0.543097,0.507181,0.507181,0.53582,0.543097,0.514694,0.512599,0.507181,0.507181,0.514694,0.512599,0.588622,0.553889,0.507181,0.507181,0.588622,0.553889,0.507181,0.507181,0.507181,0.507181,0.507181,0.507181,,,,,,,0.53582,0.543097,0.514694,0.512599,0.588622,0.553889,0.507181,0.507181,0.507181,0.507181,0.214,0.216183,0.207662,0.207034,0.22984,0.219421,0.205408,0.205408,0.108621,0.108621,33.129279,32.685372,34.489087,34.630022,30.157442,32.048497,35,35,35,35,,,,,,,,,,,7946,7946,0.507181,0.507181,0.507181,0.507181,0.507181,0.507181,0.507181,0.507181,0.205408,0.205408,35,35,, +31666,0,0.248114,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.316718,0.15,4,1.488681,1.488681,1.488681,1.488681,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,,,,,,,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,0.491265,0.491265,0.491265,0.491265,0.491265,0.491265,0.491265,0.491265,0.250595,0.250595,9.999999,9.999999,9.999999,9.999999,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,1.488681,0.491265,0.491265,10,10,, +31674,0,0.443176,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.496638,0.15,4,2.659059,2.659059,2.659059,2.659059,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,,,,,,,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,0.877489,0.877489,0.877489,0.877489,0.877489,0.877489,0.877489,0.877489,0.447608,0.447608,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,2.659059,0.877489,0.877489,10,10,, +18399,0,0.214435,1,1,0,2,5,,3,2,Elizabeth,St,1666107,0,0.214,0,4.595039,8,4.5,0.514644,0.514644,0.514644,0.514644,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.555495,0.66039,0.514644,0.514644,0.555495,0.66039,0.582625,0.587702,0.514644,0.514644,0.582625,0.587702,0.729161,0.606213,0.514644,0.514644,0.729161,0.606213,0.514644,0.514644,0.514644,0.514644,0.514644,0.514644,,,,,,,0.555495,0.66039,0.582625,0.587702,0.729161,0.606213,0.514644,0.514644,0.514644,0.514644,0.205247,0.236715,0.213386,0.214909,0.257347,0.220462,0.192992,0.192992,0.100785,0.100785,23.161522,19.48258,22.08301,21.89225,17.645095,21.223747,25,25,25,25,,,,,,,,,,,2408,2408,0.514644,0.514644,0.514644,0.514644,0.514644,0.514644,0.514644,0.514644,0.192992,0.192992,25,25,, +18421,0,0.209927,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,1.768,1.978,0,4.498445,8,4.5,0.503826,0.503826,0.503826,0.503826,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.506154,0.503829,0.503826,0.503826,0.506154,0.503829,0.503879,0.503826,0.503826,0.503826,0.503879,0.503826,0.505289,0.504458,0.503826,0.503826,0.505289,0.504458,0.503826,0.503826,0.503826,0.503826,0.503826,0.503826,,,,,,,0.506154,0.503829,0.503879,0.503826,0.505289,0.504458,0.503826,0.503826,0.503826,0.503826,0.189633,0.188936,0.188951,0.188935,0.189374,0.189124,0.188935,0.188935,0.098666,0.098666,24.884991,24.999858,24.997384,25,24.927607,24.968692,25,25,25,25,,,,,,,,,,,2408,2408,0.503826,0.503826,0.503826,0.503826,0.503826,0.503826,0.503826,0.503826,0.188935,0.188935,25,25,, +31667,0,0.248562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.326333,0.15,4,1.491373,1.491373,1.491373,1.491373,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,,,,,,,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,0.492153,0.492153,0.492153,0.492153,0.492153,0.492153,0.492153,0.492153,0.251048,0.251048,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,1.491373,0.492153,0.492153,10,10,, +31668,0,0.193954,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.156157,0.15,4,1.163724,1.163724,1.163724,1.163724,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,,,,,,,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,0.384029,0.384029,0.384029,0.384029,0.384029,0.384029,0.384029,0.384029,0.195894,0.195894,9.999997,10,10,10,9.999999,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,1.163724,0.384029,0.384029,10,10,, +33967,0,0.338582,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.255334,0.15,4,2.031493,2.031493,2.031493,2.031493,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,,,,,,,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,0.670393,0.670393,0.670393,0.670393,0.670393,0.670393,0.670393,0.670393,0.341968,0.341968,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,2.031493,0.670393,0.670393,10,10,, +16251,0,0.178465,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.798,4.976,0,3.824258,6,4.5,0.324482,0.324482,0.324482,0.324482,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.396542,0.355451,0.324482,0.324482,0.396542,0.355451,0.374494,0.368296,0.324482,0.324482,0.374494,0.368296,0.394156,0.407063,0.324482,0.324482,0.394156,0.407063,0.324482,0.324482,0.324482,0.324482,0.324482,0.324482,,,,,,,0.396542,0.355451,0.374494,0.368296,0.394156,0.407063,0.324482,0.324482,0.324482,0.324482,0.151086,0.138759,0.144472,0.142613,0.150371,0.154243,0.129469,0.129469,0.068304,0.068304,27.003253,30.124905,28.593068,29.074207,27.166692,26.305313,33,33,33,33,,,,,,,,,,,2580,2580,0.324482,0.324482,0.324482,0.324482,0.324482,0.324482,0.324482,0.324482,0.129469,0.129469,33,33,, +23975,0,0.279182,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.43,7.709,0,5.982478,5,5,0.478598,0.478598,0.478598,0.478598,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.550183,0.520971,0.478598,0.478598,0.550183,0.520971,0.500152,0.494327,0.478598,0.478598,0.500152,0.494327,0.630328,0.590926,0.478598,0.478598,0.630328,0.590926,0.478598,0.478598,0.478598,0.478598,0.478598,0.478598,,,,,,,0.550183,0.520971,0.500152,0.494327,0.630328,0.590926,0.478598,0.478598,0.478598,0.478598,0.215308,0.206544,0.200298,0.198551,0.239351,0.227531,0.193832,0.193832,0.1025,0.1025,30.446094,32.153288,33.491723,33.886362,26.574967,28.346913,35,35,35,35,,,,,,,,,,,7946,7946,0.478598,0.478598,0.478598,0.478598,0.478598,0.478598,0.478598,0.478598,0.193832,0.193832,35,35,, +16492,0,0.068979,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.976,5.045,0,1.478115,6,4.5,0.125416,0.125416,0.125416,0.125416,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.286458,0.149873,0.125416,0.125416,0.286458,0.149873,0.164435,0.163444,0.125416,0.125416,0.164435,0.163444,0.256525,0.325596,0.125416,0.125416,0.256525,0.325596,0.125416,0.125416,0.125416,0.125416,0.125416,0.125416,,,,,,,0.286458,0.149873,0.164435,0.163444,0.256525,0.325596,0.125416,0.125416,0.125416,0.125416,0.098353,0.057378,0.061747,0.061449,0.089374,0.110095,0.050041,0.050041,0.0264,0.0264,14.447938,27.614912,25.169362,25.321947,16.133813,12.711224,33,33,33,33,,,,,,,,,,,2580,2580,0.125416,0.125416,0.125416,0.125416,0.125416,0.125416,0.125416,0.125416,0.050041,0.050041,33,33,, +24430,0,0.187189,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.709,7.896,0,4.011184,5,5,0.320895,0.320895,0.320895,0.320895,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.368892,0.349305,0.320895,0.320895,0.368892,0.349305,0.335346,0.331441,0.320895,0.320895,0.335346,0.331441,0.422628,0.396209,0.320895,0.320895,0.422628,0.396209,0.320895,0.320895,0.320895,0.320895,0.320895,0.320895,,,,,,,0.368892,0.349305,0.335346,0.331441,0.422628,0.396209,0.320895,0.320895,0.320895,0.320895,0.144361,0.138486,0.134298,0.133126,0.160482,0.152557,0.129962,0.129962,0.068725,0.068725,30.446094,32.153288,33.491723,33.886362,26.574967,28.346913,35,35,35,35,,,,,,,,,,,7946,7946,0.320895,0.320895,0.320895,0.320895,0.320895,0.320895,0.320895,0.320895,0.129962,0.129962,35,35,, +18412,0,0.177894,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,2.186,2.364,0,3.81201,8,4.5,0.426945,0.426945,0.426945,0.426945,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.523688,0.438643,0.426945,0.426945,0.523688,0.438643,0.434363,0.426996,0.426945,0.426945,0.434363,0.426996,0.506363,0.46386,0.426945,0.426945,0.506363,0.46386,0.426945,0.426945,0.426945,0.426945,0.426945,0.426945,,,,,,,0.523688,0.438643,0.434363,0.426996,0.506363,0.46386,0.426945,0.426945,0.426945,0.426945,0.189127,0.163614,0.16233,0.16012,0.18393,0.171179,0.160104,0.160104,0.08361,0.08361,20.381642,24.333272,24.573069,24.997015,21.079002,23.010475,25,25,25,25,,,,,,,,,,,2408,2408,0.426945,0.426945,0.426945,0.426945,0.426945,0.426945,0.426945,0.426945,0.160104,0.160104,25,25,, +15394,0,0.270053,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0.726,0.996,0,5.78684,8,4.5,0.648126,0.648126,0.648126,0.648126,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.668748,0.656525,0.648126,0.648126,0.668748,0.656525,0.658451,0.656924,0.648126,0.648126,0.658451,0.656924,0.682681,0.699009,0.648126,0.648126,0.682681,0.699009,0.648126,0.648126,0.648126,0.648126,0.648126,0.648126,,,,,,,0.668748,0.656525,0.658451,0.656924,0.682681,0.699009,0.648126,0.648126,0.648126,0.648126,0.249234,0.245567,0.246145,0.245687,0.253414,0.258312,0.243047,0.243047,0.126925,0.126925,24.229079,24.680164,24.608003,24.665187,23.734577,23.180182,25,25,25,25,,,,,,,,,,,2408,2408,0.648126,0.648126,0.648126,0.648126,0.648126,0.648126,0.648126,0.648126,0.243047,0.243047,25,25,, +19208,0,0.25571,1,1,0,2,5,,3,2,Avondale,Ave,1686907,0.952,1.208,0,5.479506,8,4.5,0.613705,0.613705,0.613705,0.613705,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.61371,0.613786,0.613705,0.613705,0.61371,0.613786,0.613724,0.613733,0.613705,0.613705,0.613724,0.613733,0.615404,0.614175,0.613705,0.613705,0.615404,0.614175,0.613705,0.613705,0.613705,0.613705,0.613705,0.613705,,,,,,,0.61371,0.613786,0.613724,0.613733,0.615404,0.614175,0.613705,0.613705,0.613705,0.613705,0.230141,0.230164,0.230145,0.230148,0.230649,0.23028,0.230139,0.230139,0.120184,0.120184,24.999774,24.996674,24.999205,24.998857,24.930986,24.98085,25,25,25,25,,,,,,,,,,,2408,2408,0.613705,0.613705,0.613705,0.613705,0.613705,0.613705,0.613705,0.613705,0.230139,0.230139,25,25,, +15680,0,0.225243,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0.501,0.726,0,4.826628,8,4.5,0.540582,0.540582,0.540582,0.540582,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.543994,0.55918,0.540582,0.540582,0.543994,0.55918,0.544214,0.545454,0.540582,0.540582,0.544214,0.545454,0.60751,0.560383,0.540582,0.540582,0.60751,0.560383,0.540582,0.540582,0.540582,0.540582,0.540582,0.540582,,,,,,,0.543994,0.55918,0.544214,0.545454,0.60751,0.560383,0.540582,0.540582,0.540582,0.540582,0.203742,0.208298,0.203808,0.20418,0.222797,0.208659,0.202718,0.202718,0.105864,0.105864,24.843232,24.168531,24.833189,24.776699,22.24582,24.116627,25,25,25,25,,,,,,,,,,,2408,2408,0.540582,0.540582,0.540582,0.540582,0.540582,0.540582,0.540582,0.540582,0.202718,0.202718,25,25,, +31692,0,0.060042,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.286622,0.15,4,0.360254,0.360254,0.360254,0.360254,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,,,,,,,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.118884,0.118884,0.118884,0.118884,0.118884,0.118884,0.118884,0.118884,0.060643,0.060643,9.999998,10,9.999999,9.999999,9.999998,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.360254,0.118884,0.118884,10,10,, +15800,1,0.504675,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,9.379,9.883,0,10.814469,5,5,0.757013,,0.757013,,40,,40000,,9080,,20000,,12904,,13760,,13744,,0.810819,,0.757013,,0.810819,,0.762682,,0.757013,,0.762682,,0.817853,,0.757013,,0.817853,,0.757013,,0.757013,,0.757013,,,,,,,,0.810819,,0.762682,,0.817853,,0.757013,,0.757013,,0.334087,,0.319646,,0.336198,,0.317945,,0.169066,,37.345608,,39.702665,,37.024384,,40,,40,,,,,,,,,,,,13760,,0.757013,,0.757013,,0.757013,,0.757013,,0.317945,,40,,, +15857,0,0.603358,2,2,0,2,4,,3,2,Venoy,Rd,1599408,0.498,1.101,0,12.929094,6,4.5,1.097014,1.097014,1.097014,1.097014,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,1.305726,1.262076,1.097014,1.097014,1.305726,1.262076,1.179398,1.168654,1.097014,1.097014,1.179398,1.168654,1.492716,1.366959,1.097014,1.097014,1.492716,1.366959,1.097014,1.097014,1.097014,1.097014,1.097014,1.097014,,,,,,,1.305726,1.262076,1.179398,1.168654,1.492716,1.366959,1.097014,1.097014,1.097014,1.097014,0.500322,0.487227,0.462424,0.459201,0.556419,0.518692,0.437709,0.437709,0.230921,0.230921,27.72516,28.684053,30.694878,30.977049,24.252075,26.483211,33,33,33,33,,,,,,,,,,,5160,5160,1.097014,1.097014,1.097014,1.097014,1.097014,1.097014,1.097014,1.097014,0.437709,0.437709,33,33,, +15859,0,0.273745,1,1,0,2,5,,3,2,Howe,Rd,4712012,0.744,1.017,0,5.865967,8,4.5,0.656988,0.656988,0.656988,0.656988,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.702644,0.659557,0.656988,0.656988,0.702644,0.659557,0.694721,0.663851,0.656988,0.656988,0.694721,0.663851,0.779953,0.659294,0.656988,0.656988,0.779953,0.659294,0.656988,0.656988,0.656988,0.656988,0.656988,0.656988,,,,,,,0.702644,0.659557,0.694721,0.663851,0.779953,0.659294,0.656988,0.656988,0.656988,0.656988,0.260067,0.247141,0.25769,0.248429,0.28326,0.247062,0.246371,0.246371,0.12866,0.12866,23.37557,24.902634,23.642178,24.741556,21.058597,24.912561,25,25,25,25,,,,,,,,,,,2408,2408,0.656988,0.656988,0.656988,0.656988,0.656988,0.656988,0.656988,0.656988,0.246371,0.246371,25,25,, +18509,0,0.224983,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.61,1.835,0,4.821065,8,4.5,0.539959,0.539959,0.539959,0.539959,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.65663,0.555368,0.539959,0.539959,0.65663,0.555368,0.561107,0.563557,0.539959,0.539959,0.561107,0.563557,0.591709,0.725885,0.539959,0.539959,0.591709,0.725885,0.539959,0.539959,0.539959,0.539959,0.539959,0.539959,,,,,,,0.65663,0.555368,0.561107,0.563557,0.591709,0.725885,0.539959,0.539959,0.539959,0.539959,0.237486,0.207107,0.208829,0.209564,0.21801,0.258262,0.202485,0.202485,0.105742,0.105742,20.557988,24.306365,24.057767,23.953182,22.813561,18.596582,25,25,25,25,,,,,,,,,,,2408,2408,0.539959,0.539959,0.539959,0.539959,0.539959,0.539959,0.539959,0.539959,0.202485,0.202485,25,25,, +31555,0,0.095277,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.041657,0.15,4,0.571664,0.571664,0.571664,0.571664,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.571665,0.571666,0.571664,0.571664,0.571665,0.571666,0.571665,0.571665,0.571664,0.571664,0.571665,0.571665,0.571667,0.571666,0.571664,0.571664,0.571667,0.571666,0.571664,0.571664,0.571664,0.571664,0.571664,0.571664,,,,,,,0.571665,0.571666,0.571665,0.571665,0.571667,0.571666,0.571664,0.571664,0.571664,0.571664,0.188649,0.18865,0.188649,0.188649,0.18865,0.18865,0.188649,0.188649,0.09623,0.09623,9.999989,9.999955,9.999986,9.999985,9.999942,9.999967,10,10,10,10,,,,,,,,,,,34400,34400,0.571664,0.571664,0.571664,0.571664,0.571664,0.571664,0.571664,0.571664,0.188649,0.188649,10,10,, +33939,0,0.372513,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.982428,0.15,4,2.23508,2.23508,2.23508,2.23508,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,,,,,,,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,0.737576,0.737576,0.737576,0.737576,0.737576,0.737576,0.737576,0.737576,0.376238,0.376238,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,2.23508,0.737576,0.737576,10,10,, +15860,0,0.247479,1,1,0,2,5,,3,2,Howe,Rd,4712012,0.496,0.744,0,5.303128,8,4.5,0.59395,0.59395,0.59395,0.59395,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.635225,0.596273,0.59395,0.59395,0.635225,0.596273,0.628062,0.600155,0.59395,0.59395,0.628062,0.600155,0.705116,0.596035,0.59395,0.59395,0.705116,0.596035,0.59395,0.59395,0.59395,0.59395,0.59395,0.59395,,,,,,,0.635225,0.596273,0.628062,0.600155,0.705116,0.596035,0.59395,0.59395,0.59395,0.59395,0.235114,0.223428,0.232965,0.224593,0.256081,0.223357,0.222731,0.222731,0.116315,0.116315,23.37557,24.902634,23.642178,24.741556,21.058597,24.912561,25,25,25,25,,,,,,,,,,,2408,2408,0.59395,0.59395,0.59395,0.59395,0.59395,0.59395,0.59395,0.59395,0.222731,0.222731,25,25,, +33940,0,0.26507,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.680075,0.15,4,1.590421,1.590421,1.590421,1.590421,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,,,,,,,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,0.524839,0.524839,0.524839,0.524839,0.524839,0.524839,0.524839,0.524839,0.267721,0.267721,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,1.590421,0.524839,0.524839,10,10,, +18878,0,0.067218,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.542,1.61,0,1.440392,8,4.5,0.161324,0.161324,0.161324,0.161324,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.165477,0.161326,0.161324,0.161324,0.165477,0.161326,0.161339,0.161327,0.161324,0.161324,0.161339,0.161327,0.164299,0.164325,0.161324,0.161324,0.164299,0.164325,0.161324,0.161324,0.161324,0.161324,0.161324,0.161324,,,,,,,0.165477,0.161326,0.161339,0.161327,0.164299,0.164325,0.161324,0.161324,0.161324,0.161324,0.061742,0.060497,0.060501,0.060497,0.061389,0.061397,0.060496,0.060496,0.031593,0.031593,24.372603,24.99974,24.997614,24.999569,24.547298,24.543409,25,25,25,25,,,,,,,,,,,2408,2408,0.161324,0.161324,0.161324,0.161324,0.161324,0.161324,0.161324,0.161324,0.060496,0.060496,25,25,, +18294,0,0.274252,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.835,2.109,0,5.876821,8,4.5,0.658204,0.658204,0.658204,0.658204,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.901045,1.419692,0.658204,0.658204,0.901045,1.419692,0.919792,0.964321,0.658204,0.658204,0.919792,0.964321,1.537192,1.393362,0.658204,0.658204,1.537192,1.393362,0.658204,0.658204,0.658204,0.658204,0.658204,0.658204,,,,,,,0.901045,1.419692,0.919792,0.964321,1.537192,1.393362,0.658204,0.658204,0.658204,0.658204,0.319679,0.475273,0.325303,0.338661,0.510523,0.467374,0.246826,0.246826,0.128898,0.128898,18.26224,11.590615,17.890023,17.063929,10.70465,11.80964,25,25,25,25,,,,,,,,,,,2408,2408,0.658204,0.658204,0.658204,0.658204,0.658204,0.658204,0.658204,0.658204,0.246826,0.246826,25,25,, +31201,0,0.118889,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.547619,0.15,4,0.713333,0.713333,0.713333,0.713333,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.713334,0.713337,0.713333,0.713333,0.713334,0.713337,0.713334,0.713334,0.713333,0.713333,0.713334,0.713334,0.713338,0.713335,0.713333,0.713333,0.713338,0.713335,0.713333,0.713333,0.713333,0.713333,0.713333,0.713333,,,,,,,0.713334,0.713337,0.713334,0.713334,0.713338,0.713335,0.713333,0.713333,0.713333,0.713333,0.2354,0.235401,0.2354,0.2354,0.235401,0.2354,0.2354,0.2354,0.120078,0.120078,9.999995,9.99995,9.99999,9.999991,9.999936,9.999978,10,10,10,10,,,,,,,,,,,34400,34400,0.713333,0.713333,0.713333,0.713333,0.713333,0.713333,0.713333,0.713333,0.2354,0.2354,10,10,, +15855,0,0.099288,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.124,1.223,0,2.127605,6,4.5,0.180524,0.180524,0.180524,0.180524,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.191459,0.594299,0.180524,0.180524,1.191459,0.594299,0.674935,0.690948,0.180524,0.180524,0.674935,0.690948,1.191459,1.191459,0.180524,0.180524,1.191459,1.191459,0.180524,0.180524,0.180524,0.180524,0.180524,0.180524,,,,,,,1.191459,0.594299,0.674935,0.690948,1.191459,1.191459,0.180524,0.180524,0.180524,0.180524,0.375309,0.196161,0.220352,0.225156,0.375309,0.375309,0.072029,0.072029,0.038,0.038,5,10.024076,8.826476,8.621919,5,5,33,33,33,33,,,,,,,,,,,2580,2580,0.180524,0.180524,0.180524,0.180524,0.180524,0.180524,0.180524,0.180524,0.072029,0.072029,33,33,, +15856,0,0.022605,2,2,0,2,4,,3,2,Venoy,Rd,1599408,1.101,1.124,0,0.484396,6,4.5,0.0411,0.0411,0.0411,0.0411,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.049201,0.049807,0.0411,0.0411,0.049201,0.049807,0.045276,0.046249,0.0411,0.0411,0.045276,0.046249,0.0542,0.059408,0.0411,0.0411,0.0542,0.059408,0.0411,0.0411,0.0411,0.0411,0.0411,0.0411,,,,,,,0.049201,0.049807,0.045276,0.046249,0.0542,0.059408,0.0411,0.0411,0.0411,0.0411,0.018829,0.019011,0.017652,0.017944,0.020329,0.021891,0.016399,0.016399,0.008652,0.008652,27.566585,27.231395,29.956476,29.326245,25.024284,22.8305,33,33,33,33,,,,,,,,,,,5160,5160,0.0411,0.0411,0.0411,0.0411,0.0411,0.0411,0.0411,0.0411,0.016399,0.016399,33,33,, +15852,0,0.361807,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.632,1.994,0,7.753003,6,4.5,0.657831,0.657831,0.657831,0.657831,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.817148,0.889956,0.657831,0.657831,0.817148,0.889956,0.79167,0.726044,0.657831,0.657831,0.79167,0.726044,1.043075,0.986581,0.657831,0.657831,1.043075,0.986581,0.657831,0.657831,0.657831,0.657831,0.657831,0.657831,,,,,,,0.817148,0.889956,0.79167,0.726044,1.043075,0.986581,0.657831,0.657831,0.657831,0.657831,0.31027,0.332112,0.302626,0.282939,0.378048,0.361099,0.262474,0.262474,0.138473,0.138473,26.566071,24.392684,27.421028,29.899565,20.811928,22.003678,33,33,33,33,,,,,,,,,,,2580,2580,0.657831,0.657831,0.657831,0.657831,0.657831,0.657831,0.657831,0.657831,0.262474,0.262474,33,33,, +17992,0,0.674594,1,1,0,2,5,,3,2,Glenwood,Ave,1666001,2.599,3.273,0,14.455576,8,4.5,1.619025,1.619025,1.619025,1.619025,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.630164,1.627516,1.619025,1.619025,1.630164,1.627516,1.619364,1.619218,1.619025,1.619025,1.619364,1.619218,1.661383,1.720104,1.619025,1.619025,1.661383,1.720104,1.619025,1.619025,1.619025,1.619025,1.619025,1.619025,,,,,,,1.630164,1.627516,1.619364,1.619218,1.661383,1.720104,1.619025,1.619025,1.619025,1.619025,0.610476,0.609682,0.607236,0.607192,0.619842,0.637458,0.607134,0.607134,0.317059,0.317059,24.829169,24.869557,24.994761,24.997015,24.362608,23.530909,25,25,25,25,,,,,,,,,,,2408,2408,1.619025,1.619025,1.619025,1.619025,1.619025,1.619025,1.619025,1.619025,0.607134,0.607134,25,25,, +33966,0,0.724025,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.514813,0.15,4,4.344148,4.344148,4.344148,4.344148,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,,,,,,,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,1.433569,1.433569,1.433569,1.433569,1.433569,1.433569,1.433569,1.433569,0.731265,0.731265,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,4.344148,1.433569,1.433569,10,10,, +18405,0,0.067351,1,1,0,2,5,,3,2,Glenwood,Ave,1666001,2.532,2.599,0,1.443237,8,4.5,0.161643,0.161643,0.161643,0.161643,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.162755,0.16249,0.161643,0.161643,0.162755,0.16249,0.161676,0.161662,0.161643,0.161643,0.161676,0.161662,0.165872,0.171734,0.161643,0.161643,0.165872,0.171734,0.161643,0.161643,0.161643,0.161643,0.161643,0.161643,,,,,,,0.162755,0.16249,0.161676,0.161662,0.165872,0.171734,0.161643,0.161643,0.161643,0.161643,0.06095,0.06087,0.060626,0.060622,0.061885,0.063643,0.060616,0.060616,0.031655,0.031655,24.829169,24.869557,24.994761,24.997015,24.362608,23.530909,25,25,25,25,,,,,,,,,,,2408,2408,0.161643,0.161643,0.161643,0.161643,0.161643,0.161643,0.161643,0.161643,0.060616,0.060616,25,25,, +31206,0,0.112159,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.403418,0.15,4,0.672957,0.672957,0.672957,0.672957,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.672958,0.672957,0.672957,0.672957,0.672958,0.672957,0.672957,0.672957,0.672957,0.672957,0.672957,0.672957,0.672958,0.672959,0.672957,0.672957,0.672958,0.672959,0.672957,0.672957,0.672957,0.672957,0.672957,0.672957,,,,,,,0.672958,0.672957,0.672957,0.672957,0.672958,0.672959,0.672957,0.672957,0.672957,0.672957,0.222076,0.222076,0.222076,0.222076,0.222076,0.222076,0.222076,0.222076,0.113281,0.113281,9.99998,9.999993,9.999996,9.999997,9.999983,9.999971,10,10,10,10,,,,,,,,,,,34400,34400,0.672957,0.672957,0.672957,0.672957,0.672957,0.672957,0.672957,0.672957,0.222076,0.222076,10,10,, +15853,0,0.137363,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.495,1.632,0,2.943499,6,4.5,0.249751,0.249751,0.249751,0.249751,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.295077,0.558049,0.249751,0.249751,0.295077,0.558049,0.315525,0.306693,0.249751,0.249751,0.315525,0.306693,0.600883,0.394347,0.249751,0.249751,0.600883,0.394347,0.249751,0.249751,0.249751,0.249751,0.249751,0.249751,,,,,,,0.295077,0.558049,0.315525,0.306693,0.600883,0.394347,0.249751,0.249751,0.249751,0.249751,0.113249,0.19214,0.119383,0.116733,0.20499,0.143029,0.099651,0.099651,0.052573,0.052573,27.930966,14.768945,26.120885,26.873113,13.716133,20.899883,33,33,33,33,,,,,,,,,,,2580,2580,0.249751,0.249751,0.249751,0.249751,0.249751,0.249751,0.249751,0.249751,0.099651,0.099651,33,33,, +15851,0,0.249925,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.994,2.244,0,5.355544,6,4.5,0.45441,0.45441,0.45441,0.45441,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.500554,0.535911,0.45441,0.45441,0.500554,0.535911,0.498402,0.489227,0.45441,0.45441,0.498402,0.489227,0.643112,0.581316,0.45441,0.45441,0.643112,0.581316,0.45441,0.45441,0.45441,0.45441,0.45441,0.45441,,,,,,,0.500554,0.535911,0.498402,0.489227,0.643112,0.581316,0.45441,0.45441,0.45441,0.45441,0.195153,0.20576,0.194507,0.191755,0.23792,0.219381,0.18131,0.18131,0.095653,0.095653,29.957852,27.981375,30.087222,30.651463,23.317123,25.79582,33,33,33,33,,,,,,,,,,,2580,2580,0.45441,0.45441,0.45441,0.45441,0.45441,0.45441,0.45441,0.45441,0.18131,0.18131,33,33,, +15850,0,0.246658,1,1,0,2,4,,3,2,Venoy,Rd,1599408,2.244,2.49,0,5.28553,6,4.5,0.448469,0.448469,0.448469,0.448469,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.516185,0.505614,0.448469,0.448469,0.516185,0.505614,0.508745,0.487224,0.448469,0.448469,0.508745,0.487224,0.611312,0.590802,0.448469,0.448469,0.611312,0.590802,0.448469,0.448469,0.448469,0.448469,0.448469,0.448469,,,,,,,0.516185,0.505614,0.508745,0.487224,0.611312,0.590802,0.448469,0.448469,0.448469,0.448469,0.199254,0.196083,0.197022,0.190566,0.227792,0.221639,0.178939,0.178939,0.094403,0.094403,28.670903,29.270344,29.090152,30.375123,24.209383,25.049804,33,33,33,33,,,,,,,,,,,2580,2580,0.448469,0.448469,0.448469,0.448469,0.448469,0.448469,0.448469,0.448469,0.178939,0.178939,33,33,, +14904,0,0.373053,2,2,1,2,3,,3,2,Ford,Rd,1595510,8.542,8.915,0,7.994,5,5,0.63952,0.63952,0.63952,0.63952,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.693784,0.657002,0.63952,0.63952,0.693784,0.657002,0.660013,0.654693,0.63952,0.63952,0.660013,0.654693,0.698307,0.722723,0.63952,0.63952,0.698307,0.722723,0.63952,0.63952,0.63952,0.63952,0.63952,0.63952,,,,,,,0.693784,0.657002,0.660013,0.654693,0.698307,0.722723,0.63952,0.63952,0.63952,0.63952,0.275285,0.26425,0.265153,0.263558,0.276642,0.283967,0.259006,0.259006,0.136964,0.136964,32.262469,34.068688,33.913292,34.188832,32.05354,30.970643,35,35,35,35,,,,,,,,,,,7946,7946,0.63952,0.63952,0.63952,0.63952,0.63952,0.63952,0.63952,0.63952,0.259006,0.259006,35,35,, +15534,0,0.247609,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.996,2.244,0,5.305915,8,4.5,0.594262,0.594262,0.594262,0.594262,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.679271,0.597428,0.594262,0.594262,0.679271,0.597428,0.598159,0.597938,0.594262,0.594262,0.598159,0.597938,0.657774,0.775991,0.594262,0.594262,0.657774,0.775991,0.594262,0.594262,0.594262,0.594262,0.594262,0.594262,,,,,,,0.679271,0.597428,0.598159,0.597938,0.657774,0.775991,0.594262,0.594262,0.594262,0.594262,0.248351,0.223798,0.224018,0.223951,0.241902,0.277367,0.222848,0.222848,0.116376,0.116376,21.871322,24.867538,24.837125,24.846334,22.586108,19.145279,25,25,25,25,,,,,,,,,,,2408,2408,0.594262,0.594262,0.594262,0.594262,0.594262,0.594262,0.594262,0.594262,0.222848,0.222848,25,25,, +15844,0,0.246016,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.495,3.741,0,5.271781,6,4.5,0.447303,0.447303,0.447303,0.447303,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.613492,0.585498,0.447303,0.447303,0.613492,0.585498,0.583088,0.572633,0.447303,0.447303,0.583088,0.572633,0.708417,0.731998,0.447303,0.447303,0.708417,0.731998,0.447303,0.447303,0.447303,0.447303,0.447303,0.447303,,,,,,,0.613492,0.585498,0.583088,0.572633,0.708417,0.731998,0.447303,0.447303,0.447303,0.447303,0.228331,0.219932,0.219209,0.216073,0.256808,0.263882,0.178474,0.178474,0.094157,0.094157,24.060589,25.211012,25.315185,25.777398,20.836567,20.165349,33,33,33,33,,,,,,,,,,,2580,2580,0.447303,0.447303,0.447303,0.447303,0.447303,0.447303,0.447303,0.447303,0.178474,0.178474,33,33,, +16382,0,0.745858,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,8.532,9.278,0,15.982682,6,4.5,1.356106,1.356106,1.356106,1.356106,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.491222,1.520429,1.356106,1.356106,1.491222,1.520429,1.454231,1.437459,1.356106,1.356106,1.454231,1.437459,1.678467,1.660419,1.356106,1.356106,1.678467,1.660419,1.356106,1.356106,1.356106,1.356106,1.356106,1.356106,,,,,,,1.491222,1.520429,1.454231,1.437459,1.678467,1.660419,1.356106,1.356106,1.356106,1.356106,0.581621,0.590383,0.570524,0.565492,0.637794,0.63238,0.541086,0.541086,0.28546,0.28546,30.009967,29.43347,30.773307,31.132382,26.66214,26.951945,33,33,33,33,,,,,,,,,,,5418,5418,1.356106,1.356106,1.356106,1.356106,1.356106,1.356106,1.356106,1.356106,0.541086,0.541086,33,33,, +18771,0,0.131339,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.737,1.869,0,2.814409,8,4.5,0.315214,0.315214,0.315214,0.315214,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.315459,0.317346,0.315214,0.315214,0.315459,0.317346,0.315227,0.315224,0.315214,0.315214,0.315227,0.315224,0.334584,0.32859,0.315214,0.315214,0.334584,0.32859,0.315214,0.315214,0.315214,0.315214,0.315214,0.315214,,,,,,,0.315459,0.317346,0.315227,0.315224,0.334584,0.32859,0.315214,0.315214,0.315214,0.315214,0.118279,0.118845,0.118209,0.118208,0.124016,0.122218,0.118205,0.118205,0.061729,0.061729,24.980529,24.832016,24.998972,24.999154,23.552635,23.982309,25,25,25,25,,,,,,,,,,,2408,2408,0.315214,0.315214,0.315214,0.315214,0.315214,0.315214,0.315214,0.315214,0.118205,0.118205,25,25,, +19018,0,0.250801,1,1,0,2,5,,3,2,Hunter,Ave,1678601,1.011,1.262,0,5.374297,8,4.5,0.601921,0.601921,0.601921,0.601921,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.601921,0.601921,0.601921,0.601921,0.601921,0.601921,0.601921,0.601921,0.601921,0.601921,0.601921,0.601921,0.601932,0.601947,0.601921,0.601921,0.601932,0.601947,0.601921,0.601921,0.601921,0.601921,0.601921,0.601921,,,,,,,0.601921,0.601921,0.601921,0.601921,0.601932,0.601947,0.601921,0.601921,0.601921,0.601921,0.22572,0.22572,0.22572,0.22572,0.225724,0.225728,0.22572,0.22572,0.117876,0.117876,25,25,25,25,24.999576,24.998947,25,25,25,25,,,,,,,,,,,2408,2408,0.601921,0.601921,0.601921,0.601921,0.601921,0.601921,0.601921,0.601921,0.22572,0.22572,25,25,, +24153,0,0.25099,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.924,9.175,0,5.37835,5,5,0.430268,0.430268,0.430268,0.430268,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.563533,0.480984,0.430268,0.430268,0.563533,0.480984,0.474134,0.468925,0.430268,0.430268,0.474134,0.468925,0.576237,0.635302,0.430268,0.430268,0.576237,0.635302,0.430268,0.430268,0.430268,0.430268,0.430268,0.430268,,,,,,,0.563533,0.480984,0.474134,0.468925,0.576237,0.635302,0.430268,0.430268,0.430268,0.430268,0.214238,0.189473,0.187418,0.185856,0.218049,0.235769,0.174259,0.174259,0.092149,0.092149,26.723155,31.309526,31.761838,32.114704,26.133998,23.704276,35,35,35,35,,,,,,,,,,,7946,7946,0.430268,0.430268,0.430268,0.430268,0.430268,0.430268,0.430268,0.430268,0.174259,0.174259,35,35,, +31205,0,0.875332,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.757109,0.15,4,5.251991,5.251991,5.251991,5.251991,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,,,,,,,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,1.733157,1.733157,1.733157,1.733157,1.733157,1.733157,1.733157,1.733157,0.884085,0.884085,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,5.251991,1.733157,1.733157,10,10,, +31210,0,0.515188,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.039736,0.15,4,3.091126,3.091126,3.091126,3.091126,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,,,,,,,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,1.020072,1.020072,1.020072,1.020072,1.020072,1.020072,1.020072,1.020072,0.52034,0.52034,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,3.091126,1.020072,1.020072,10,10,, +31495,0,0.235655,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.049744,0.15,4,1.413928,1.413928,1.413928,1.413928,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,,,,,,,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,0.466596,0.466596,0.466596,0.466596,0.466596,0.466596,0.466596,0.466596,0.238011,0.238011,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,1.413928,0.466596,0.466596,10,10,, +31695,0,0.158871,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.404375,0.15,4,0.953225,0.953225,0.953225,0.953225,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,0.953226,0.953225,0.953225,0.953225,0.953226,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,,,,,,,0.953225,0.953225,0.953225,0.953225,0.953226,0.953225,0.953225,0.953225,0.953225,0.953225,0.314564,0.314564,0.314564,0.314564,0.314564,0.314564,0.314564,0.314564,0.16046,0.16046,9.999999,9.999999,9.999999,9.999999,9.999995,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,0.953225,0.314564,0.314564,10,10,, +32016,0,0.291441,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.245172,0.15,4,1.748648,1.748648,1.748648,1.748648,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,,,,,,,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,0.577054,0.577054,0.577054,0.577054,0.577054,0.577054,0.577054,0.577054,0.294356,0.294356,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,1.748648,0.577054,0.577054,10,10,, +32017,0,0.323153,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.924702,0.15,4,1.938917,1.938917,1.938917,1.938917,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,,,,,,,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,0.639843,0.639843,0.639843,0.639843,0.639843,0.639843,0.639843,0.639843,0.326384,0.326384,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,1.938917,0.639843,0.639843,10,10,, +15194,0,0.253396,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.488,1.742,0,5.429921,8,4.5,0.608151,0.608151,0.608151,0.608151,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.60909,0.608571,0.608151,0.608151,0.60909,0.608571,0.609237,0.609006,0.608151,0.608151,0.609237,0.609006,0.609026,0.608886,0.608151,0.608151,0.609026,0.608886,0.608151,0.608151,0.608151,0.608151,0.608151,0.608151,,,,,,,0.60909,0.608571,0.609237,0.609006,0.609026,0.608886,0.608151,0.608151,0.608151,0.608151,0.228338,0.228183,0.228382,0.228313,0.228319,0.228277,0.228057,0.228057,0.119096,0.119096,24.961447,24.982742,24.955444,24.964899,24.964091,24.969843,25,25,25,25,,,,,,,,,,,2408,2408,0.608151,0.608151,0.608151,0.608151,0.608151,0.608151,0.608151,0.608151,0.228057,0.228057,25,25,, +16383,0,0.334099,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,8.031,8.365,0,7.159262,6,4.5,0.607453,0.607453,0.607453,0.607453,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.64092,0.663499,0.607453,0.607453,0.64092,0.663499,0.633434,0.631069,0.607453,0.607453,0.633434,0.631069,0.722569,0.708343,0.607453,0.607453,0.722569,0.708343,0.607453,0.607453,0.607453,0.607453,0.607453,0.607453,,,,,,,0.64092,0.663499,0.633434,0.631069,0.722569,0.708343,0.607453,0.607453,0.607453,0.607453,0.252414,0.259188,0.250168,0.249459,0.276908,0.272641,0.242374,0.242374,0.127869,0.127869,31.276818,30.212446,31.646424,31.76503,27.742605,28.299775,33,33,33,33,,,,,,,,,,,5418,5418,0.607453,0.607453,0.607453,0.607453,0.607453,0.607453,0.607453,0.607453,0.242374,0.242374,33,33,, +17507,0,0.34264,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.239,1.582,0,7.342278,8,4.5,0.822335,0.822335,0.822335,0.822335,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.896951,1.024544,0.822335,0.822335,0.896951,1.024544,0.912692,0.92535,0.822335,0.822335,0.912692,0.92535,1.417608,1.213535,0.822335,0.822335,1.417608,1.213535,0.822335,0.822335,0.822335,0.822335,0.822335,0.822335,,,,,,,0.896951,1.024544,0.912692,0.92535,1.417608,1.213535,0.822335,0.822335,0.822335,0.822335,0.33076,0.369038,0.335483,0.33928,0.486958,0.425736,0.308376,0.308376,0.161041,0.161041,22.920304,20.065883,22.524985,22.216877,14.502161,16.940901,25,25,25,25,,,,,,,,,,,2408,2408,0.822335,0.822335,0.822335,0.822335,0.822335,0.822335,0.822335,0.822335,0.308376,0.308376,25,25,, +24231,0,0.248357,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.425,8.673,0,5.321933,5,5,0.425755,0.425755,0.425755,0.425755,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.522745,0.453753,0.425755,0.425755,0.522745,0.453753,0.456375,0.450276,0.425755,0.425755,0.456375,0.450276,0.55018,0.589739,0.425755,0.425755,0.55018,0.589739,0.425755,0.425755,0.425755,0.425755,0.425755,0.425755,,,,,,,0.522745,0.453753,0.456375,0.450276,0.55018,0.589739,0.425755,0.425755,0.425755,0.425755,0.201528,0.18083,0.181617,0.179787,0.209758,0.221626,0.172431,0.172431,0.091182,0.091182,28.506071,32.840358,32.651718,33.093975,27.084601,25.267796,35,35,35,35,,,,,,,,,,,7946,7946,0.425755,0.425755,0.425755,0.425755,0.425755,0.425755,0.425755,0.425755,0.172431,0.172431,35,35,, +31591,0,0.350065,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.501386,0.15,4,2.100388,2.100388,2.100388,2.100388,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,,,,,,,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,0.693128,0.693128,0.693128,0.693128,0.693128,0.693128,0.693128,0.693128,0.353565,0.353565,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,2.100388,0.693128,0.693128,10,10,, +24144,0,0.2082,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.217,8.425,0,4.461438,5,5,0.356915,0.356915,0.356915,0.356915,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.380776,0.366296,0.356915,0.356915,0.380776,0.366296,0.362118,0.360512,0.356915,0.356915,0.362118,0.360512,0.411624,0.419944,0.356915,0.356915,0.411624,0.419944,0.356915,0.356915,0.356915,0.356915,0.356915,0.356915,,,,,,,0.380776,0.366296,0.362118,0.360512,0.411624,0.419944,0.356915,0.356915,0.356915,0.356915,0.151709,0.147365,0.146111,0.14563,0.160963,0.163459,0.144551,0.144551,0.076439,0.076439,32.80673,34.103665,34.497142,34.650809,30.348141,29.746904,35,35,35,35,,,,,,,,,,,7946,7946,0.356915,0.356915,0.356915,0.356915,0.356915,0.356915,0.356915,0.356915,0.144551,0.144551,35,35,, +24141,0,0.250697,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.673,8.924,0,5.372089,5,5,0.429767,0.429767,0.429767,0.429767,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.527672,0.458029,0.429767,0.429767,0.527672,0.458029,0.460676,0.454519,0.429767,0.429767,0.460676,0.454519,0.555365,0.595297,0.429767,0.429767,0.555365,0.595297,0.429767,0.429767,0.429767,0.429767,0.429767,0.429767,,,,,,,0.527672,0.458029,0.460676,0.454519,0.555365,0.595297,0.429767,0.429767,0.429767,0.429767,0.203427,0.182534,0.183328,0.181481,0.211735,0.223715,0.174056,0.174056,0.092042,0.092042,28.506071,32.840358,32.651718,33.093975,27.084601,25.267796,35,35,35,35,,,,,,,,,,,7946,7946,0.429767,0.429767,0.429767,0.429767,0.429767,0.429767,0.429767,0.429767,0.174056,0.174056,35,35,, +15454,0,0.220101,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.268,1.488,0,4.716446,8,4.5,0.528242,0.528242,0.528242,0.528242,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.56709,0.546686,0.528242,0.528242,0.56709,0.546686,0.544582,0.541312,0.528242,0.528242,0.544582,0.541312,0.59657,0.606936,0.528242,0.528242,0.59657,0.606936,0.528242,0.528242,0.528242,0.528242,0.528242,0.528242,,,,,,,0.56709,0.546686,0.544582,0.541312,0.59657,0.606936,0.528242,0.528242,0.528242,0.528242,0.209745,0.203624,0.202993,0.202012,0.218589,0.221699,0.198091,0.198091,0.103447,0.103447,23.2874,24.15655,24.249873,24.396373,22.136634,21.758569,25,25,25,25,,,,,,,,,,,2408,2408,0.528242,0.528242,0.528242,0.528242,0.528242,0.528242,0.528242,0.528242,0.198091,0.198091,25,25,, +31672,0,0.262728,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.629883,0.15,4,1.576367,1.576367,1.576367,1.576367,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,,,,,,,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,0.520201,0.520201,0.520201,0.520201,0.520201,0.520201,0.520201,0.520201,0.265355,0.265355,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,1.576367,0.520201,0.520201,10,10,, +31671,0,0.16063,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.442067,0.15,4,0.963779,0.963779,0.963779,0.963779,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,,,,,,,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.318047,0.318047,0.318047,0.318047,0.318047,0.318047,0.318047,0.318047,0.162236,0.162236,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.963779,0.318047,0.318047,10,10,, +16126,0,0.166768,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,8.365,8.532,0,3.57361,6,4.5,0.303215,0.303215,0.303215,0.303215,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.309443,0.313143,0.303215,0.303215,0.309443,0.313143,0.308585,0.307562,0.303215,0.303215,0.308585,0.307562,0.324955,0.321441,0.303215,0.303215,0.324955,0.321441,0.303215,0.303215,0.303215,0.303215,0.303215,0.303215,,,,,,,0.309443,0.313143,0.308585,0.307562,0.324955,0.321441,0.303215,0.303215,0.303215,0.303215,0.122851,0.123961,0.122594,0.122287,0.127505,0.126451,0.120983,0.120983,0.063827,0.063827,32.335863,31.953827,32.425732,32.533591,30.792311,31.12893,33,33,33,33,,,,,,,,,,,5418,5418,0.303215,0.303215,0.303215,0.303215,0.303215,0.303215,0.303215,0.303215,0.120983,0.120983,33,33,, +14558,0,0.203537,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.793,1.996,0,4.361514,8,4.5,0.48849,0.48849,0.48849,0.48849,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.489244,0.488827,0.48849,0.48849,0.489244,0.488827,0.489362,0.489176,0.48849,0.48849,0.489362,0.489176,0.489155,0.48908,0.48849,0.48849,0.489155,0.48908,0.48849,0.48849,0.48849,0.48849,0.48849,0.48849,,,,,,,0.489244,0.488827,0.489362,0.489176,0.489155,0.48908,0.48849,0.48849,0.48849,0.48849,0.18341,0.183285,0.183445,0.18339,0.183383,0.183361,0.183184,0.183184,0.095663,0.095663,24.961447,24.982742,24.955444,24.964899,24.965971,24.969843,25,25,25,25,,,,,,,,,,,2408,2408,0.48849,0.48849,0.48849,0.48849,0.48849,0.48849,0.48849,0.48849,0.183184,0.183184,25,25,, +30254,0,0.270927,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.805576,0.15,4,1.625561,1.625561,1.625561,1.625561,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,,,,,,,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,0.536435,0.536435,0.536435,0.536435,0.536435,0.536435,0.536435,0.536435,0.273636,0.273636,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,1.625561,0.536435,0.536435,10,10,, +14977,0,0.051227,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.742,1.793,0,1.097731,8,4.5,0.122946,0.122946,0.122946,0.122946,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.123136,0.123031,0.122946,0.122946,0.123136,0.123031,0.123165,0.123119,0.122946,0.122946,0.123165,0.123119,0.123113,0.123094,0.122946,0.122946,0.123113,0.123094,0.122946,0.122946,0.122946,0.122946,0.122946,0.122946,,,,,,,0.123136,0.123031,0.123165,0.123119,0.123113,0.123094,0.122946,0.122946,0.122946,0.122946,0.046162,0.04613,0.046171,0.046157,0.046155,0.046149,0.046105,0.046105,0.024077,0.024077,24.961447,24.982742,24.955444,24.964899,24.965971,24.969843,25,25,25,25,,,,,,,,,,,2408,2408,0.122946,0.122946,0.122946,0.122946,0.122946,0.122946,0.122946,0.122946,0.046105,0.046105,25,25,, +19011,0,0.155608,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.582,1.737,0,3.33446,8,4.5,0.37346,0.37346,0.37346,0.37346,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.482273,0.407722,0.37346,0.37346,0.482273,0.407722,0.396075,0.396835,0.37346,0.37346,0.396075,0.396835,0.502874,0.622514,0.37346,0.37346,0.502874,0.622514,0.37346,0.37346,0.37346,0.37346,0.37346,0.37346,,,,,,,0.482273,0.407722,0.396075,0.396835,0.502874,0.622514,0.37346,0.37346,0.37346,0.37346,0.172691,0.150326,0.146832,0.14706,0.178872,0.214764,0.140047,0.140047,0.073136,0.073136,19.35933,22.899148,23.572507,23.52739,18.566242,14.998027,25,25,25,25,,,,,,,,,,,2408,2408,0.37346,0.37346,0.37346,0.37346,0.37346,0.37346,0.37346,0.37346,0.140047,0.140047,25,25,, +31697,0,0.033237,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.712226,0.15,4,0.199423,0.199423,0.199423,0.199423,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.199424,0.199424,0.199423,0.199423,0.199424,0.199424,0.199424,0.199424,0.199423,0.199423,0.199424,0.199424,0.199424,0.199425,0.199423,0.199423,0.199424,0.199425,0.199423,0.199423,0.199423,0.199423,0.199423,0.199423,,,,,,,0.199424,0.199424,0.199424,0.199424,0.199424,0.199425,0.199423,0.199423,0.199423,0.199423,0.06581,0.06581,0.06581,0.06581,0.06581,0.06581,0.06581,0.06581,0.03357,0.03357,9.999975,9.999991,9.99999,9.999991,9.999966,9.999945,10,10,10,10,,,,,,,,,,,34400,34400,0.199423,0.199423,0.199423,0.199423,0.199423,0.199423,0.199423,0.199423,0.06581,0.06581,10,10,, +14855,0,0.248711,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.494,2.743,0,5.329525,8,4.5,0.596907,0.596907,0.596907,0.596907,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.613108,0.599944,0.596907,0.596907,0.613108,0.599944,0.604972,0.612252,0.596907,0.596907,0.604972,0.612252,0.669782,0.719236,0.596907,0.596907,0.669782,0.719236,0.596907,0.596907,0.596907,0.596907,0.596907,0.596907,,,,,,,0.613108,0.599944,0.604972,0.612252,0.669782,0.719236,0.596907,0.596907,0.596907,0.596907,0.228701,0.224751,0.22626,0.228444,0.245703,0.260539,0.22384,0.22384,0.116894,0.116894,24.339367,24.87344,24.666712,24.373428,22.279876,20.747956,25,25,25,25,,,,,,,,,,,2408,2408,0.596907,0.596907,0.596907,0.596907,0.596907,0.596907,0.596907,0.596907,0.22384,0.22384,25,25,, +15144,0,0.497484,2,2,1,2,3,,3,2,Ford,Rd,1595510,8.045,8.542,0,10.660372,5,5,0.85283,0.85283,0.85283,0.85283,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.918572,0.887547,0.85283,0.85283,0.918572,0.887547,0.888102,0.88408,0.85283,0.85283,0.888102,0.88408,0.964633,0.984933,0.85283,0.85283,0.964633,0.984933,0.85283,0.85283,0.85283,0.85283,0.85283,0.85283,,,,,,,0.918572,0.887547,0.888102,0.88408,0.964633,0.984933,0.85283,0.85283,0.85283,0.85283,0.365119,0.355811,0.355978,0.354771,0.378937,0.385027,0.345396,0.345396,0.182648,0.182648,32.495056,33.630955,33.60994,33.762814,30.94343,30.305657,35,35,35,35,,,,,,,,,,,7946,7946,0.85283,0.85283,0.85283,0.85283,0.85283,0.85283,0.85283,0.85283,0.345396,0.345396,35,35,, +17607,0,0.346222,1,1,0,2,5,,3,2,Hunter,Ave,1678601,0.665,1.011,0,7.419035,8,4.5,0.830932,0.830932,0.830932,0.830932,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.831354,0.832918,0.830932,0.830932,0.831354,0.832918,0.83142,0.831246,0.830932,0.830932,0.83142,0.831246,0.850792,0.84324,0.830932,0.830932,0.850792,0.84324,0.830932,0.830932,0.830932,0.830932,0.830932,0.830932,,,,,,,0.831354,0.832918,0.83142,0.831246,0.850792,0.84324,0.830932,0.830932,0.830932,0.830932,0.311726,0.312195,0.311746,0.311694,0.317557,0.315292,0.311599,0.311599,0.162724,0.162724,24.987319,24.940401,24.985324,24.990566,24.416436,24.635102,25,25,25,25,,,,,,,,,,,2408,2408,0.830932,0.830932,0.830932,0.830932,0.830932,0.830932,0.830932,0.830932,0.311599,0.311599,25,25,, +24018,0,0.264441,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.679,9.943,0,5.666602,5,5,0.453328,0.453328,0.453328,0.453328,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.520145,0.481239,0.453328,0.453328,0.520145,0.481239,0.474895,0.476802,0.453328,0.453328,0.474895,0.476802,0.55022,0.608533,0.453328,0.453328,0.55022,0.608533,0.453328,0.453328,0.453328,0.453328,0.453328,0.453328,,,,,,,0.520145,0.481239,0.474895,0.476802,0.55022,0.608533,0.453328,0.453328,0.453328,0.453328,0.203643,0.191971,0.190068,0.19064,0.212665,0.230159,0.183598,0.183598,0.097088,0.097088,30.503939,32.970074,33.410525,33.276905,28.836627,26.073332,35,35,35,35,,,,,,,,,,,7946,7946,0.453328,0.453328,0.453328,0.453328,0.453328,0.453328,0.453328,0.453328,0.183598,0.183598,35,35,, +24149,0,0.250364,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.943,10.194,0,5.364945,5,5,0.429196,0.429196,0.429196,0.429196,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.463787,0.434607,0.429196,0.429196,0.463787,0.434607,0.436327,0.434849,0.429196,0.429196,0.436327,0.434849,0.456565,0.478744,0.429196,0.429196,0.456565,0.478744,0.429196,0.429196,0.429196,0.429196,0.429196,0.429196,,,,,,,0.463787,0.434607,0.436327,0.434849,0.456565,0.478744,0.429196,0.429196,0.429196,0.429196,0.184202,0.175447,0.175964,0.17552,0.182035,0.188689,0.173824,0.173824,0.091919,0.091919,32.389562,34.564244,34.427963,34.544989,32.901857,31.377608,35,35,35,35,,,,,,,,,,,7946,7946,0.429196,0.429196,0.429196,0.429196,0.429196,0.429196,0.429196,0.429196,0.173824,0.173824,35,35,, +31685,0,0.257459,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.516968,0.15,4,1.544751,1.544751,1.544751,1.544751,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,,,,,,,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,0.509768,0.509768,0.509768,0.509768,0.509768,0.509768,0.509768,0.509768,0.260033,0.260033,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,1.544751,0.509768,0.509768,10,10,, +31686,0,0.282517,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.05393,0.15,4,1.6951,1.6951,1.6951,1.6951,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,,,,,,,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,0.559383,0.559383,0.559383,0.559383,0.559383,0.559383,0.559383,0.559383,0.285342,0.285342,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,1.6951,0.559383,0.559383,10,10,, +31814,0,0.395554,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.476167,0.15,4,2.373327,2.373327,2.373327,2.373327,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,,,,,,,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,0.783198,0.783198,0.783198,0.783198,0.783198,0.783198,0.783198,0.783198,0.39951,0.39951,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,2.373327,0.783198,0.783198,10,10,, +15391,0,0.249014,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.796,8.045,0,5.336023,5,5,0.426882,0.426882,0.426882,0.426882,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.523531,0.493867,0.426882,0.426882,0.523531,0.493867,0.470074,0.473408,0.426882,0.426882,0.470074,0.473408,0.557842,0.599688,0.426882,0.426882,0.557842,0.599688,0.426882,0.426882,0.426882,0.426882,0.426882,0.426882,,,,,,,0.523531,0.493867,0.470074,0.473408,0.557842,0.599688,0.426882,0.426882,0.426882,0.426882,0.201882,0.192983,0.185845,0.186845,0.212175,0.224729,0.172887,0.172887,0.091424,0.091424,28.538665,30.25284,31.78405,31.560256,26.783311,24.914398,35,35,35,35,,,,,,,,,,,7946,7946,0.426882,0.426882,0.426882,0.426882,0.426882,0.426882,0.426882,0.426882,0.172887,0.172887,35,35,, +24022,0,0.250365,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.175,9.425,0,5.364962,5,5,0.429197,0.429197,0.429197,0.429197,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.563531,0.488975,0.429197,0.429197,0.563531,0.488975,0.48182,0.476096,0.429197,0.429197,0.48182,0.476096,0.595786,0.652972,0.429197,0.429197,0.595786,0.652972,0.429197,0.429197,0.429197,0.429197,0.429197,0.429197,,,,,,,0.563531,0.488975,0.48182,0.476096,0.595786,0.652972,0.429197,0.429197,0.429197,0.429197,0.214125,0.191758,0.189612,0.187895,0.223801,0.240957,0.173825,0.173825,0.09192,0.09192,26.656751,30.721184,31.177386,31.552228,25.213593,23.005418,35,35,35,35,,,,,,,,,,,7946,7946,0.429197,0.429197,0.429197,0.429197,0.429197,0.429197,0.429197,0.429197,0.173825,0.173825,35,35,, +24152,0,0.253817,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.425,9.679,0,5.438935,5,5,0.435115,0.435115,0.435115,0.435115,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.482606,0.455629,0.435115,0.435115,0.482606,0.455629,0.448531,0.449522,0.435115,0.435115,0.448531,0.449522,0.498122,0.539882,0.435115,0.435115,0.498122,0.539882,0.435115,0.435115,0.435115,0.435115,0.435115,0.435115,,,,,,,0.482606,0.455629,0.448531,0.449522,0.498122,0.539882,0.435115,0.435115,0.435115,0.435115,0.190469,0.182376,0.180246,0.180544,0.195124,0.207652,0.176221,0.176221,0.093187,0.093187,31.555792,33.424148,33.95312,33.878268,30.57284,28.208053,35,35,35,35,,,,,,,,,,,7946,7946,0.435115,0.435115,0.435115,0.435115,0.435115,0.435115,0.435115,0.435115,0.176221,0.176221,35,35,, +18033,0,0.275329,1,1,0,2,5,,3,2,Hunter,Ave,1678601,0.39,0.665,0,5.899903,8,4.5,0.660789,0.660789,0.660789,0.660789,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.703611,0.664937,0.660789,0.660789,0.703611,0.664937,0.695111,0.67024,0.660789,0.660789,0.695111,0.67024,0.829926,0.789425,0.660789,0.660789,0.829926,0.789425,0.660789,0.660789,0.660789,0.660789,0.660789,0.660789,,,,,,,0.703611,0.664937,0.695111,0.67024,0.829926,0.789425,0.660789,0.660789,0.660789,0.660789,0.260643,0.24904,0.258092,0.250631,0.298537,0.286387,0.247796,0.247796,0.129405,0.129405,23.478479,24.844059,23.765607,24.647476,19.905062,20.926268,25,25,25,25,,,,,,,,,,,2408,2408,0.660789,0.660789,0.660789,0.660789,0.660789,0.660789,0.660789,0.660789,0.247796,0.247796,25,25,, +31501,0,0.257463,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.517075,0.15,4,1.544781,1.544781,1.544781,1.544781,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,1.544782,1.544781,1.544781,1.544781,1.544782,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,,,,,,,1.544781,1.544781,1.544781,1.544781,1.544781,1.544782,1.544781,1.544781,1.544781,1.544781,0.509778,0.509778,0.509778,0.509778,0.509778,0.509778,0.509778,0.509778,0.260038,0.260038,10,9.999999,10,9.999999,9.999999,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,1.544781,0.509778,0.509778,10,10,, +31683,0,0.255894,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.483442,0.15,4,1.535364,1.535364,1.535364,1.535364,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,,,,,,,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,0.50667,0.50667,0.50667,0.50667,0.50667,0.50667,0.50667,0.50667,0.258453,0.258453,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,1.535364,0.50667,0.50667,10,10,, +15101,0,0.250163,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.244,2.494,0,5.360645,8,4.5,0.600392,0.600392,0.600392,0.600392,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.686278,0.60359,0.600392,0.600392,0.686278,0.60359,0.604329,0.604105,0.600392,0.600392,0.604329,0.604105,0.664559,0.783995,0.600392,0.600392,0.664559,0.783995,0.600392,0.600392,0.600392,0.600392,0.600392,0.600392,,,,,,,0.686278,0.60359,0.604329,0.604105,0.664559,0.783995,0.600392,0.600392,0.600392,0.600392,0.250913,0.226107,0.226328,0.226261,0.244397,0.280228,0.225147,0.225147,0.117577,0.117577,21.871322,24.867538,24.837125,24.846334,22.586108,19.145279,25,25,25,25,,,,,,,,,,,2408,2408,0.600392,0.600392,0.600392,0.600392,0.600392,0.600392,0.600392,0.600392,0.225147,0.225147,25,25,, +15397,0,0.24672,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.993,3.239,0,5.286866,8,4.5,0.592129,0.592129,0.592129,0.592129,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.612273,0.619876,0.592129,0.592129,0.612273,0.619876,0.602596,0.605997,0.592129,0.592129,0.602596,0.605997,0.653571,0.654683,0.592129,0.592129,0.653571,0.654683,0.592129,0.592129,0.592129,0.592129,0.592129,0.592129,,,,,,,0.612273,0.619876,0.602596,0.605997,0.653571,0.654683,0.592129,0.592129,0.592129,0.592129,0.228092,0.230373,0.225188,0.226209,0.240481,0.240815,0.222048,0.222048,0.115959,0.115959,24.177499,23.880928,24.565771,24.427902,22.64975,22.611291,25,25,25,25,,,,,,,,,,,2408,2408,0.592129,0.592129,0.592129,0.592129,0.592129,0.592129,0.592129,0.592129,0.222048,0.222048,25,25,, +15685,0,0.250205,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.743,2.993,0,5.361525,8,4.5,0.600491,0.600491,0.600491,0.600491,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.60738,0.603949,0.600491,0.600491,0.60738,0.603949,0.603651,0.606143,0.600491,0.600491,0.603651,0.606143,0.651418,0.683295,0.600491,0.600491,0.651418,0.683295,0.600491,0.600491,0.600491,0.600491,0.600491,0.600491,,,,,,,0.60738,0.603949,0.603651,0.606143,0.651418,0.683295,0.600491,0.600491,0.600491,0.600491,0.227251,0.226222,0.226132,0.22688,0.240462,0.250025,0.225184,0.225184,0.117596,0.117596,24.716419,24.856837,24.869133,24.766861,23.045539,21.970419,25,25,25,25,,,,,,,,,,,2408,2408,0.600491,0.600491,0.600491,0.600491,0.600491,0.600491,0.600491,0.600491,0.225184,0.225184,25,25,, +15847,0,0.252369,2,2,1,2,4,,3,2,Venoy,Rd,1599408,2.987,3.239,0,5.407902,6,4.5,0.458852,0.458852,0.458852,0.458852,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.46786,0.473065,0.458852,0.458852,0.46786,0.473065,0.462674,0.461979,0.458852,0.458852,0.462674,0.461979,0.495468,0.492331,0.458852,0.458852,0.495468,0.492331,0.458852,0.458852,0.458852,0.458852,0.458852,0.458852,,,,,,,0.46786,0.473065,0.462674,0.461979,0.495468,0.492331,0.458852,0.458852,0.458852,0.458852,0.185784,0.187346,0.184229,0.18402,0.194067,0.193126,0.183082,0.183082,0.096588,0.096588,32.364649,32.008561,32.727403,32.776687,30.561255,30.755965,33,33,33,33,,,,,,,,,,,5418,5418,0.458852,0.458852,0.458852,0.458852,0.458852,0.458852,0.458852,0.458852,0.183082,0.183082,33,33,, +17929,1,0.418036,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,2.068,2.486,0,8.957921,8,4.5,1.003287,,1.003287,,25,,7000,,1589,,3500,,2258,,2408,,2405,,1.004069,,1.003287,,1.004069,,1.003328,,1.003287,,1.003328,,1.064941,,1.003287,,1.064941,,1.003287,,1.003287,,1.003287,,,,,,,,1.004069,,1.003328,,1.064941,,1.003287,,1.003287,,0.376467,,0.376245,,0.394729,,0.376233,,0.196477,,24.980529,,24.998972,,23.552635,,25,,25,,,,,,,,,,,,2408,,1.003287,,1.003287,,1.003287,,1.003287,,0.376233,,25,,, +24260,-1,0.503013,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711017,0,0.503,0,10.778857,8,4.5,,1.207232,,1.207232,,25,,7000,,1589,,3500,,2258,,2408,,2405,,1.215399,,1.207232,,1.215399,,1.207273,,1.207232,,1.207273,,1.258461,,1.207232,,1.258461,,1.207232,,1.207232,,1.207232,,,,,,,,1.215399,,1.207273,,1.258461,,1.207232,,1.207232,,0.455162,,0.452724,,0.468081,,0.452712,,0.236416,,24.832016,,24.999154,,23.982309,,25,,25,,,,,,,,,,,,2408,,1.207232,,1.207232,,1.207232,,1.207232,,0.452712,,25,, +18213,1,0.085015,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,1.983,2.068,0,1.821753,8,4.5,0.204036,,0.204036,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.204195,,0.204036,,0.204195,,0.204045,,0.204036,,0.204045,,0.216575,,0.204036,,0.216575,,0.204036,,0.204036,,0.204036,,,,,,,,0.204195,,0.204045,,0.216575,,0.204036,,0.204036,,0.076561,,0.076516,,0.080275,,0.076514,,0.039957,,24.980529,,24.998972,,23.552635,,25,,25,,,,,,,,,,,,2408,,0.204036,,0.204036,,0.204036,,0.204036,,0.076514,,25,,, +18437,0,0.114384,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.869,1.983,0,2.451088,8,4.5,0.274522,0.274522,0.274522,0.274522,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.274736,0.276379,0.274522,0.274522,0.274736,0.276379,0.274533,0.274531,0.274522,0.274522,0.274533,0.274531,0.291392,0.286171,0.274522,0.274522,0.291392,0.286171,0.274522,0.274522,0.274522,0.274522,0.274522,0.274522,,,,,,,0.274736,0.276379,0.274533,0.274531,0.291392,0.286171,0.274522,0.274522,0.274522,0.274522,0.10301,0.103503,0.102949,0.102948,0.108007,0.10644,0.102946,0.102946,0.053761,0.053761,24.980529,24.832016,24.998972,24.999154,23.552635,23.982309,25,25,25,25,,,,,,,,,,,2408,2408,0.274522,0.274522,0.274522,0.274522,0.274522,0.274522,0.274522,0.274522,0.102946,0.102946,25,25,, +15848,0,0.260221,1,1,0,2,4,,3,2,Venoy,Rd,1599408,2.727,2.987,0,5.576167,6,4.5,0.473129,0.473129,0.473129,0.473129,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.615796,0.524955,0.473129,0.473129,0.615796,0.524955,0.547171,0.53309,0.473129,0.473129,0.547171,0.53309,0.686193,0.732974,0.473129,0.473129,0.686193,0.732974,0.473129,0.473129,0.473129,0.473129,0.473129,0.473129,,,,,,,0.615796,0.524955,0.547171,0.53309,0.686193,0.732974,0.473129,0.473129,0.473129,0.473129,0.231579,0.204326,0.210991,0.206767,0.252698,0.266732,0.188779,0.188779,0.099594,0.099594,25.3546,29.742127,28.534511,29.28825,22.753463,21.301245,33,33,33,33,,,,,,,,,,,2580,2580,0.473129,0.473129,0.473129,0.473129,0.473129,0.473129,0.473129,0.473129,0.188779,0.188779,33,33,, +31216,0,0.102741,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.201586,0.15,4,0.616444,0.616444,0.616444,0.616444,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,,,,,,,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.203427,0.203427,0.203427,0.203427,0.203427,0.203427,0.203427,0.203427,0.103768,0.103768,9.999998,9.999999,9.999998,9.999998,9.999996,9.999994,10,10,10,10,,,,,,,,,,,34400,34400,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.616444,0.203427,0.203427,10,10,, +15846,0,0.249022,2,2,1,2,4,,3,2,Venoy,Rd,1599408,3.239,3.488,0,5.336187,6,4.5,0.452767,0.452767,0.452767,0.452767,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.468637,0.459922,0.452767,0.452767,0.468637,0.459922,0.457509,0.456749,0.452767,0.452767,0.457509,0.456749,0.481247,0.493005,0.452767,0.452767,0.481247,0.493005,0.452767,0.452767,0.452767,0.452767,0.452767,0.452767,,,,,,,0.468637,0.459922,0.457509,0.456749,0.481247,0.493005,0.452767,0.452767,0.452767,0.452767,0.185415,0.1828,0.182077,0.181849,0.189198,0.192725,0.180654,0.180654,0.095308,0.095308,31.882521,32.48667,32.657989,32.71232,31.047069,30.306664,33,33,33,33,,,,,,,,,,,5418,5418,0.452767,0.452767,0.452767,0.452767,0.452767,0.452767,0.452767,0.452767,0.180654,0.180654,33,33,, +31213,0,0.126043,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.700922,0.15,4,0.756258,0.756258,0.756258,0.756258,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,,,,,,,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.249565,0.249565,0.249565,0.249565,0.249565,0.249565,0.249565,0.249565,0.127303,0.127303,9.999998,10,10,10,9.999999,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.756258,0.249565,0.249565,10,10,, +15845,0,0.006559,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.488,3.495,0,0.140546,6,4.5,0.011925,0.011925,0.011925,0.011925,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.024088,0.015058,0.011925,0.011925,0.024088,0.015058,0.015929,0.014793,0.011925,0.011925,0.015929,0.014793,0.036039,0.019319,0.011925,0.011925,0.036039,0.019319,0.011925,0.011925,0.011925,0.011925,0.011925,0.011925,,,,,,,0.024088,0.015058,0.015929,0.014793,0.036039,0.019319,0.011925,0.011925,0.011925,0.011925,0.008407,0.005698,0.005959,0.005619,0.011992,0.006976,0.004758,0.004758,0.00251,0.00251,16.336994,26.133677,24.704882,26.602342,10.919427,20.370364,33,33,33,33,,,,,,,,,,,2580,2580,0.011925,0.011925,0.011925,0.011925,0.011925,0.011925,0.011925,0.011925,0.004758,0.004758,33,33,, +14989,0,0.375858,2,2,1,2,3,,3,2,Ford,Rd,1595510,8.915,9.291,0,8.0541,5,5,0.644328,0.644328,0.644328,0.644328,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.754692,0.69035,0.644328,0.644328,0.754692,0.69035,0.693302,0.6814,0.644328,0.644328,0.693302,0.6814,0.798947,0.849359,0.644328,0.644328,0.798947,0.849359,0.644328,0.644328,0.644328,0.644328,0.644328,0.644328,,,,,,,0.754692,0.69035,0.693302,0.6814,0.798947,0.849359,0.644328,0.644328,0.644328,0.644328,0.294062,0.274759,0.275645,0.272074,0.307339,0.322462,0.260953,0.260953,0.137994,0.137994,29.8817,32.666739,32.52762,33.095798,28.226489,26.551164,35,35,35,35,,,,,,,,,,,7946,7946,0.644328,0.644328,0.644328,0.644328,0.644328,0.644328,0.644328,0.644328,0.260953,0.260953,35,35,, +15842,0,0.242554,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.99,4.232,0,5.197581,6,4.5,0.441007,0.441007,0.441007,0.441007,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.501549,0.477281,0.441007,0.441007,0.501549,0.477281,0.456546,0.456851,0.441007,0.441007,0.456546,0.456851,0.518362,0.527904,0.441007,0.441007,0.518362,0.527904,0.441007,0.441007,0.441007,0.441007,0.441007,0.441007,,,,,,,0.501549,0.477281,0.456546,0.456851,0.518362,0.527904,0.441007,0.441007,0.441007,0.441007,0.194124,0.186844,0.180623,0.180715,0.199168,0.202031,0.175962,0.175962,0.092832,0.092832,29.016569,30.491923,31.876827,31.855555,28.07541,27.567935,33,33,33,33,,,,,,,,,,,2580,2580,0.441007,0.441007,0.441007,0.441007,0.441007,0.441007,0.441007,0.441007,0.175962,0.175962,33,33,, +18546,0,0.498755,1,1,0,2,5,,3,2,Hunter,Ave,1678601,1.262,1.76,0,10.68761,8,4.5,1.197012,1.197012,1.197012,1.197012,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.253232,1.213548,1.197012,1.197012,1.253232,1.213548,1.213837,1.213788,1.197012,1.197012,1.213837,1.213788,1.288746,1.329662,1.197012,1.197012,1.288746,1.329662,1.197012,1.197012,1.197012,1.197012,1.197012,1.197012,,,,,,,1.253232,1.213548,1.213837,1.213788,1.288746,1.329662,1.197012,1.197012,1.197012,1.197012,0.465746,0.45384,0.453927,0.453912,0.4764,0.488674,0.44888,0.44888,0.234415,0.234415,23.878498,24.659345,24.653471,24.654484,23.220493,22.505953,25,25,25,25,,,,,,,,,,,2408,2408,1.197012,1.197012,1.197012,1.197012,1.197012,1.197012,1.197012,1.197012,0.44888,0.44888,25,25,, +31684,0,0.590438,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.652244,0.15,4,3.542628,3.542628,3.542628,3.542628,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,,,,,,,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,1.169067,1.169067,1.169067,1.169067,1.169067,1.169067,1.169067,1.169067,0.596342,0.596342,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,3.542628,1.169067,1.169067,10,10,, +31694,0,0.512507,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.982287,0.15,4,3.07504,3.07504,3.07504,3.07504,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,,,,,,,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,1.014763,1.014763,1.014763,1.014763,1.014763,1.014763,1.014763,1.014763,0.517632,0.517632,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,3.07504,1.014763,1.014763,10,10,, +31696,0,0.324993,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.964132,0.15,4,1.949957,1.949957,1.949957,1.949957,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,,,,,,,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,0.643486,0.643486,0.643486,0.643486,0.643486,0.643486,0.643486,0.643486,0.328243,0.328243,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,1.949957,0.643486,0.643486,10,10,, +33788,0,0.48145,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.316782,0.15,4,2.888699,2.888699,2.888699,2.888699,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,,,,,,,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,0.953271,0.953271,0.953271,0.953271,0.953271,0.953271,0.953271,0.953271,0.486264,0.486264,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,2.888699,0.953271,0.953271,10,10,, +31496,0,0.244319,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.235406,0.15,4,1.465914,1.465914,1.465914,1.465914,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,,,,,,,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,0.483752,0.483752,0.483752,0.483752,0.483752,0.483752,0.483752,0.483752,0.246762,0.246762,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,1.465914,0.483752,0.483752,10,10,, +31693,0,0.270646,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.799567,0.15,4,1.623879,1.623879,1.623879,1.623879,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,,,,,,,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,0.53588,0.53588,0.53588,0.53588,0.53588,0.53588,0.53588,0.53588,0.273353,0.273353,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,1.623879,0.53588,0.53588,10,10,, +15843,0,0.248793,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.741,3.99,0,5.331285,6,4.5,0.452351,0.452351,0.452351,0.452351,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.12169,0.750092,0.452351,0.452351,1.12169,0.750092,0.893843,0.849516,0.452351,0.452351,0.893843,0.849516,0.994282,1.311497,0.452351,0.452351,0.994282,1.311497,0.452351,0.452351,0.452351,0.452351,0.452351,0.452351,,,,,,,1.12169,0.750092,0.893843,0.849516,0.994282,1.311497,0.452351,0.452351,0.452351,0.452351,0.38129,0.26981,0.312936,0.299638,0.343067,0.438232,0.180488,0.180488,0.09522,0.09522,13.308125,19.901024,16.700466,17.571883,15.013444,11.382104,33,33,33,33,,,,,,,,,,,2580,2580,0.452351,0.452351,0.452351,0.452351,0.452351,0.452351,0.452351,0.452351,0.180488,0.180488,33,33,, +31208,0,0.03319,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.711212,0.15,4,0.199139,0.199139,0.199139,0.199139,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.19914,0.199139,0.199139,0.199139,0.19914,0.199139,0.199139,0.199139,0.199139,0.199139,0.199139,0.199139,0.19914,0.19914,0.199139,0.199139,0.19914,0.19914,0.199139,0.199139,0.199139,0.199139,0.199139,0.199139,,,,,,,0.19914,0.199139,0.199139,0.199139,0.19914,0.19914,0.199139,0.199139,0.199139,0.199139,0.065716,0.065716,0.065716,0.065716,0.065716,0.065716,0.065716,0.065716,0.033522,0.033522,9.999981,9.999989,9.999989,9.99999,9.99996,9.999949,10,10,10,10,,,,,,,,,,,34400,34400,0.199139,0.199139,0.199139,0.199139,0.199139,0.199139,0.199139,0.199139,0.065716,0.065716,10,10,, +15840,0,0.257125,1,1,0,2,4,,3,2,Venoy,Rd,1599408,4.486,4.744,0,5.509815,6,4.5,0.467499,0.467499,0.467499,0.467499,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.587531,0.507764,0.467499,0.467499,0.587531,0.507764,0.503832,0.504656,0.467499,0.467499,0.503832,0.504656,0.640071,0.680341,0.467499,0.467499,0.640071,0.680341,0.467499,0.467499,0.467499,0.467499,0.467499,0.467499,,,,,,,0.587531,0.507764,0.503832,0.504656,0.640071,0.680341,0.467499,0.467499,0.467499,0.467499,0.222542,0.198612,0.197432,0.197679,0.238304,0.250385,0.186532,0.186532,0.098409,0.098409,26.258138,30.383145,30.620269,30.570263,24.102771,22.676089,33,33,33,33,,,,,,,,,,,2580,2580,0.467499,0.467499,0.467499,0.467499,0.467499,0.467499,0.467499,0.467499,0.186532,0.186532,33,33,, +15841,0,0.254478,1,1,0,2,4,,3,2,Venoy,Rd,1599408,4.232,4.486,0,5.453094,6,4.5,0.462687,0.462687,0.462687,0.462687,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.545633,0.520053,0.462687,0.462687,0.545633,0.520053,0.491783,0.49253,0.462687,0.462687,0.491783,0.49253,0.599525,0.596317,0.462687,0.462687,0.599525,0.596317,0.462687,0.462687,0.462687,0.462687,0.462687,0.462687,,,,,,,0.545633,0.520053,0.491783,0.49253,0.599525,0.596317,0.462687,0.462687,0.462687,0.462687,0.209496,0.201822,0.193341,0.193565,0.225663,0.224701,0.184612,0.184612,0.097396,0.097396,27.983403,29.359804,31.047559,31.00045,25.467942,25.604941,33,33,33,33,,,,,,,,,,,2580,2580,0.462687,0.462687,0.462687,0.462687,0.462687,0.462687,0.462687,0.462687,0.184612,0.184612,33,33,, +1842,0,0.080827,1,1,0,2,4,,3,3,9 Mile,Rd,633603,2.814,2.895,0,1.732008,6,4.5,0.146958,0.146958,0.146958,0.146958,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.191036,0.277463,0.146958,0.146958,0.191036,0.277463,0.226089,0.218657,0.146958,0.146958,0.226089,0.218657,0.460599,0.283021,0.146958,0.146958,0.460599,0.283021,0.146958,0.146958,0.146958,0.146958,0.146958,0.146958,,,,,,,0.191036,0.277463,0.226089,0.218657,0.460599,0.283021,0.146958,0.146958,0.146958,0.146958,0.07186,0.097788,0.082375,0.080146,0.152728,0.099455,0.058636,0.058636,0.030935,0.030935,25.385846,17.478447,21.450075,22.179123,10.528951,17.135212,33,33,33,33,,,,,,,,,,,2580,2580,0.146958,0.146958,0.146958,0.146958,0.146958,0.146958,0.146958,0.146958,0.058636,0.058636,33,33,, +16092,-1,0.388977,0,4,0,1,1,,3,2,W I 96,,1607506,0.423,0.812,0,,0.58,7,,0.359056,,0.359056,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.448148,,0.359056,,0.448148,,0.367776,,0.359056,,0.367776,,0.426401,,0.359056,,0.426401,,0.359056,,0.359056,,0.359056,,,,,,,,0.448148,,0.367776,,0.426401,,0.359056,,0.359056,,0.20446,,0.180349,,0.197936,,0.177733,,0.096646,,52.077948,,63.458897,,54.734057,,65,,65,,,,,,,,,,,,30272,,0.359056,,0.359056,,0.359056,,0.359056,,0.177733,,65,, +16193,1,0.724736,4,0,0,1,1,,3,2,E I 96,,1607802,2.396,3.12,0,,0.58,7,0.668987,,0.668987,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.743527,,0.668987,,0.743527,,0.695033,,0.668987,,0.695033,,1.02383,,0.668987,,1.02383,,0.668987,,0.668987,,0.668987,,,,,,,,0.743527,,0.695033,,1.02383,,0.668987,,0.668987,,0.353511,,0.338962,,0.437602,,0.331149,,0.180069,,58.483685,,62.564215,,42.47208,,65,,65,,,,,,,,,,,,30272,,0.668987,,0.668987,,0.668987,,0.668987,,0.331149,,65,,, +16244,0,0.496289,1,1,0,2,5,,3,2,Levan,Rd,1604605,2.198,2.694,0,10.634759,8,4.5,1.191093,1.191093,1.191093,1.191093,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.342864,1.462016,1.191093,1.191093,1.342864,1.462016,1.294575,1.2969,1.191093,1.191093,1.294575,1.2969,1.596934,1.52214,1.191093,1.191093,1.596934,1.52214,1.191093,1.191093,1.191093,1.191093,1.191093,1.191093,,,,,,,1.342864,1.462016,1.294575,1.2969,1.596934,1.52214,1.191093,1.191093,1.191093,1.191093,0.492191,0.527937,0.477705,0.478402,0.568412,0.545974,0.44666,0.44666,0.233256,0.233256,22.174499,20.367301,23.001619,22.960384,18.646562,19.562804,25,25,25,25,,,,,,,,,,,2408,2408,1.191093,1.191093,1.191093,1.191093,1.191093,1.191093,1.191093,1.191093,0.44666,0.44666,25,25,, +16503,1,0.43223,4,0,0,1,1,,3,2,E I 96,,1607802,0.244,0.676,0,,0.58,7,0.398982,,0.398982,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.453256,,0.398982,,0.453256,,0.413331,,0.398982,,0.413331,,0.539584,,0.398982,,0.539584,,0.398982,,0.398982,,0.398982,,,,,,,,0.453256,,0.413331,,0.539584,,0.398982,,0.398982,,0.213778,,0.201801,,0.239677,,0.197496,,0.107393,,57.216616,,62.743366,,48.062551,,65,,65,,,,,,,,,,,,30272,,0.398982,,0.398982,,0.398982,,0.398982,,0.197496,,65,,, +16619,1,0.185861,3,0,0,1,2,,3,2,E M 14,,1606205,6.773,6.958,0,,0.58,7,0.171564,,0.171564,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.184964,,0.171564,,0.184964,,0.171758,,0.171564,,0.171758,,0.175449,,0.171564,,0.175449,,0.171564,,0.171564,,0.171564,,,,,,,,0.184964,,0.171758,,0.175449,,0.171564,,0.171564,,0.088944,,0.084982,,0.08609,,0.084924,,0.046179,,60.290837,,64.926458,,63.560556,,65,,65,,,,,,,,,,,,22704,,0.171564,,0.171564,,0.171564,,0.171564,,0.084924,,65,,, +16819,0,0.394355,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,1.244,1.639,0,8.450455,8,4.5,0.946451,0.946451,0.946451,0.946451,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,,,,,,,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.354919,0.354919,0.354919,0.354919,0.354919,0.354919,0.354919,0.354919,0.185347,0.185347,25,25,24.999999,24.999999,24.999999,25,25,25,25,25,,,,,,,,,,,2408,2408,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.946451,0.354919,0.354919,25,25,, +16897,-1,0.545798,0,4,0,1,1,,3,2,W I 96,,1606503,0.679,1.224,0,,0.58,7,,0.503814,,0.503814,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.51199,,0.503814,,0.51199,,0.504772,,0.503814,,0.504772,,0.542133,,0.503814,,0.542133,,0.503814,,0.503814,,0.503814,,,,,,,,0.51199,,0.504772,,0.542133,,0.503814,,0.503814,,0.251841,,0.249675,,0.260884,,0.249388,,0.13561,,63.962058,,64.876581,,60.405645,,65,,65,,,,,,,,,,,,30272,,0.503814,,0.503814,,0.503814,,0.503814,,0.249388,,65,, +16956,0,0.357406,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.088,6.446,0,7.658691,5,5,0.612695,0.612695,0.612695,0.612695,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.688402,0.684905,0.612695,0.612695,0.688402,0.684905,0.637239,0.653164,0.612695,0.612695,0.637239,0.653164,0.749298,0.805612,0.612695,0.612695,0.749298,0.805612,0.612695,0.612695,0.612695,0.612695,0.612695,0.612695,,,,,,,0.688402,0.684905,0.637239,0.653164,0.749298,0.805612,0.612695,0.612695,0.612695,0.612695,0.270854,0.269805,0.255505,0.260282,0.289123,0.306017,0.248142,0.248142,0.131219,0.131219,31.150886,31.309927,33.651971,32.831497,28.619222,26.618687,35,35,35,35,,,,,,,,,,,7568,7568,0.612695,0.612695,0.612695,0.612695,0.612695,0.612695,0.612695,0.612695,0.248142,0.248142,35,35,, +16966,0,0.911035,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,1.603,2.514,0,19.522181,6,4.5,1.656427,1.656427,1.656427,1.656427,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.683711,1.701315,1.656427,1.656427,1.683711,1.701315,1.663304,1.669463,1.656427,1.656427,1.663304,1.669463,1.803361,1.827631,1.656427,1.656427,1.803361,1.827631,1.656427,1.656427,1.656427,1.656427,1.656427,1.656427,,,,,,,1.683711,1.701315,1.663304,1.669463,1.803361,1.827631,1.656427,1.656427,1.656427,1.656427,0.6691,0.674381,0.662977,0.664825,0.704995,0.712275,0.660915,0.660915,0.348678,0.348678,32.465258,32.12932,32.863574,32.742331,30.311243,29.908729,33,33,33,33,,,,,,,,,,,5418,5418,1.656427,1.656427,1.656427,1.656427,1.656427,1.656427,1.656427,1.656427,0.660915,0.660915,33,33,, +17020,1,1.107772,4,0,0,1,1,,3,2,E I 96,,1606201,0,1.107,0,,0.58,7,1.022559,,1.022559,,65,,88000,,19976,,44000,,28389,,30272,,30237,,1.022576,,1.022559,,1.022576,,1.022562,,1.022559,,1.022562,,1.022592,,1.022559,,1.022592,,1.022559,,1.022559,,1.022559,,,,,,,,1.022576,,1.022562,,1.022592,,1.022559,,1.022559,,0.506172,,0.506168,,0.506177,,0.506167,,0.275239,,64.998924,,64.999803,,64.997928,,65,,65,,,,,,,,,,,,30272,,1.022559,,1.022559,,1.022559,,1.022559,,0.506167,,65,,, +17141,-1,0.832673,0,4,0,1,1,,3,2,W I 96,,1607506,2.491,3.323,0,,0.58,7,,0.768622,,0.768622,,65,,88000,,19976,,44000,,28389,,30272,,30237,,1.073574,,0.768622,,1.073574,,0.79528,,0.768622,,0.79528,,0.93184,,0.768622,,0.93184,,0.768622,,0.768622,,0.768622,,,,,,,,1.073574,,0.79528,,0.93184,,0.768622,,0.768622,,0.471953,,0.388465,,0.429433,,0.380468,,0.206887,,46.536539,,62.82117,,53.614777,,65,,65,,,,,,,,,,,,30272,,0.768622,,0.768622,,0.768622,,0.768622,,0.380468,,65,, +17142,0,0.497364,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,0,0.497,0,10.657803,6,4.5,0.904298,0.904298,0.904298,0.904298,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.116139,1.045675,0.904298,0.904298,1.116139,1.045675,0.981637,0.9973,0.904298,0.904298,0.981637,0.9973,1.214913,1.299519,0.904298,0.904298,1.214913,1.299519,0.904298,0.904298,0.904298,0.904298,0.904298,0.904298,,,,,,,1.116139,1.045675,0.981637,0.9973,1.214913,1.299519,0.904298,0.904298,0.904298,0.904298,0.424367,0.403228,0.384017,0.388716,0.453999,0.479381,0.360815,0.360815,0.190355,0.190355,26.736666,28.538349,30.400088,29.922626,24.562951,22.963773,33,33,33,33,,,,,,,,,,,2580,2580,0.904298,0.904298,0.904298,0.904298,0.904298,0.904298,0.904298,0.904298,0.360815,0.360815,33,33,, +17523,0,0.509217,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,1.561,2.07,0,10.911796,6,4.5,0.925849,0.925849,0.925849,0.925849,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.949866,0.983,0.925849,0.925849,0.949866,0.983,0.961277,0.951425,0.925849,0.925849,0.961277,0.951425,1.030584,0.99318,0.925849,0.925849,1.030584,0.99318,0.925849,0.925849,0.925849,0.925849,0.925849,0.925849,,,,,,,0.949866,0.983,0.961277,0.951425,1.030584,0.99318,0.925849,0.925849,0.925849,0.925849,0.376619,0.386559,0.380042,0.377087,0.400834,0.389613,0.369414,0.369414,0.194891,0.194891,32.165631,31.081399,31.783804,32.112897,29.646333,30.762821,33,33,33,33,,,,,,,,,,,5160,5160,0.925849,0.925849,0.925849,0.925849,0.925849,0.925849,0.925849,0.925849,0.369414,0.369414,33,33,, +17847,0,0.246123,2,2,1,2,3,,3,2,Farmington,Rd,1690602,3.503,3.749,0,5.274061,5,5,0.421925,0.421925,0.421925,0.421925,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.458517,0.46759,0.421925,0.421925,0.458517,0.46759,0.437202,0.443342,0.421925,0.421925,0.437202,0.443342,0.496233,0.507204,0.421925,0.421925,0.496233,0.507204,0.421925,0.421925,0.421925,0.421925,0.421925,0.421925,,,,,,,0.458517,0.46759,0.437202,0.443342,0.496233,0.507204,0.421925,0.421925,0.421925,0.421925,0.181857,0.184579,0.175463,0.177305,0.193172,0.196463,0.17088,0.17088,0.090362,0.090362,32.20678,31.581865,33.776981,33.309179,29.758943,29.115247,35,35,35,35,,,,,,,,,,,7946,7946,0.421925,0.421925,0.421925,0.421925,0.421925,0.421925,0.421925,0.421925,0.17088,0.17088,35,35,, +18117,0,0.487218,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,3.399,3.887,0,10.44038,3.7,5,0.730827,0.730827,0.730827,0.730827,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.738058,0.742485,0.730827,0.730827,0.738058,0.742485,0.733508,0.732898,0.730827,0.730827,0.733508,0.732898,0.749032,0.740053,0.730827,0.730827,0.749032,0.740053,0.730827,0.730827,0.730827,0.730827,0.730827,0.730827,,,,,,,0.738058,0.742485,0.733508,0.732898,0.749032,0.740053,0.730827,0.730827,0.730827,0.730827,0.309117,0.310445,0.307752,0.307569,0.312409,0.309715,0.306947,0.306947,0.163218,0.163218,39.608058,39.371922,39.853756,39.886934,39.027804,39.50133,40,40,40,40,,,,,,,,,,,7946,7946,0.730827,0.730827,0.730827,0.730827,0.730827,0.730827,0.730827,0.730827,0.306947,0.306947,40,40,, +18184,0,0.647007,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,0,0.647,0,13.864441,8,4.5,1.552817,1.552817,1.552817,1.552817,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.555754,1.552836,1.552817,1.552817,1.555754,1.552836,1.555442,1.554066,1.552817,1.552817,1.555442,1.554066,1.554774,1.56094,1.552817,1.552817,1.554774,1.56094,1.552817,1.552817,1.552817,1.552817,1.552817,1.552817,,,,,,,1.555754,1.552836,1.555442,1.554066,1.554774,1.56094,1.552817,1.552817,1.552817,1.552817,0.583188,0.582312,0.583094,0.582681,0.582894,0.584743,0.582307,0.582307,0.304093,0.304093,24.952806,24.999698,24.957811,24.979908,24.968534,24.869912,25,25,25,25,,,,,,,,,,,2408,2408,1.552817,1.552817,1.552817,1.552817,1.552817,1.552817,1.552817,1.552817,0.582307,0.582307,25,25,, +18431,0,0.317461,1,1,0,2,4,,3,2,Joy,Rd,1672705,5.49,5.807,0,6.80274,6,4.5,0.577202,0.577202,0.577202,0.577202,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.881492,0.753448,0.577202,0.577202,0.881492,0.753448,0.68733,0.687521,0.577202,0.577202,0.68733,0.687521,1.006221,1.196495,0.577202,0.577202,1.006221,1.196495,0.577202,0.577202,0.577202,0.577202,0.577202,0.577202,,,,,,,0.881492,0.753448,0.68733,0.687521,1.006221,1.196495,0.577202,0.577202,0.577202,0.577202,0.321591,0.283178,0.263342,0.263399,0.359009,0.416092,0.230304,0.230304,0.121501,0.121501,21.608449,25.280656,27.712557,27.704843,18.929909,15.919552,33,33,33,33,,,,,,,,,,,2580,2580,0.577202,0.577202,0.577202,0.577202,0.577202,0.577202,0.577202,0.577202,0.230304,0.230304,33,33,, +18491,0,0.767865,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,1.528,2.295,0,16.454242,6,4.5,1.396118,1.396118,1.396118,1.396118,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.552775,1.413203,1.396118,1.396118,1.552775,1.413203,1.428275,1.415428,1.396118,1.396118,1.428275,1.415428,1.44953,1.506316,1.396118,1.396118,1.44953,1.506316,1.396118,1.396118,1.396118,1.396118,1.396118,1.396118,,,,,,,1.552775,1.413203,1.428275,1.415428,1.44953,1.506316,1.396118,1.396118,1.396118,1.396118,0.604048,0.562176,0.566698,0.562844,0.573075,0.59011,0.557051,0.557051,0.293883,0.293883,29.670674,32.60104,32.257009,32.54979,31.784003,30.585806,33,33,33,33,,,,,,,,,,,5418,5418,1.396118,1.396118,1.396118,1.396118,1.396118,1.396118,1.396118,1.396118,0.557051,0.557051,33,33,, +18505,0,0.113937,2,2,0,2,4,,3,2,7 Mile,Rd,1700106,0.192,0.306,0,2.441516,6,4.5,0.207159,0.207159,0.207159,0.207159,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.317712,0.718757,0.207159,0.207159,0.317712,0.718757,0.352586,0.484428,0.207159,0.207159,0.352586,0.484428,1.013886,0.872767,0.207159,0.207159,1.013886,0.872767,0.207159,0.207159,0.207159,0.207159,0.207159,0.207159,,,,,,,0.317712,0.718757,0.352586,0.484428,1.013886,0.872767,0.207159,0.207159,0.207159,0.207159,0.115822,0.236136,0.126285,0.165837,0.324674,0.282339,0.082656,0.082656,0.043607,0.043607,21.517112,9.511197,19.388843,14.112003,6.742619,7.832839,33,33,33,33,,,,,,,,,,,5160,5160,0.207159,0.207159,0.207159,0.207159,0.207159,0.207159,0.207159,0.207159,0.082656,0.082656,33,33,, +18561,0,0.227064,1,1,0,2,4,,4,2,Northville,Rd,1679402,1.168,1.395,0,4.865648,4.5,4.5,0.358521,0.358521,0.358521,0.358521,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.488752,0.467107,0.358521,0.358521,0.488752,0.467107,0.394377,0.38577,0.358521,0.358521,0.394377,0.38577,0.491895,0.531905,0.358521,0.358521,0.491895,0.531905,0.358521,0.358521,0.358521,0.358521,0.358521,0.358521,,,,,,,0.488752,0.467107,0.394377,0.38577,0.491895,0.531905,0.358521,0.358521,0.358521,0.358521,0.187497,0.181004,0.159185,0.156602,0.18844,0.200443,0.148428,0.148428,0.078755,0.078755,27.874709,29.166366,34.54516,35.315928,27.6966,25.613229,38,38,38,38,,,,,,,,,,,3096,3096,0.358521,0.358521,0.358521,0.358521,0.358521,0.358521,0.358521,0.358521,0.148428,0.148428,38,38,, +18602,0,1.771447,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,2.622,4.392,0,37.959575,5,5,3.036766,3.036766,3.036766,3.036766,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,3.044062,3.038954,3.036766,3.036766,3.044062,3.038954,3.036773,3.036769,3.036766,3.036766,3.036773,3.036769,3.111506,3.089349,3.036766,3.036766,3.111506,3.089349,3.036766,3.036766,3.036766,3.036766,3.036766,3.036766,,,,,,,3.044062,3.038954,3.036773,3.036769,3.111506,3.089349,3.036766,3.036766,3.036766,3.036766,1.232079,1.230547,1.229892,1.229891,1.252312,1.245665,1.22989,1.22989,0.650374,0.650374,34.916116,34.974804,34.999921,34.999962,34.159278,34.40427,35,35,35,35,,,,,,,,,,,3784,3784,3.036766,3.036766,3.036766,3.036766,3.036766,3.036766,3.036766,3.036766,1.22989,1.22989,35,35,, +19067,0,0.532453,1,1,0,2,5,,4,2,Bradner,Rd,1689501,0.235,0.767,0,11.409697,5.8,4.5,1.183228,1.183228,1.183228,1.183228,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.37483,1.309403,1.183228,1.183228,1.37483,1.309403,1.247025,1.251202,1.183228,1.183228,1.247025,1.251202,1.437473,1.5958,1.183228,1.183228,1.437473,1.5958,1.183228,1.183228,1.183228,1.183228,1.183228,1.183228,,,,,,,1.37483,1.309403,1.247025,1.251202,1.437473,1.5958,1.183228,1.183228,1.183228,1.183228,0.508291,0.488662,0.469949,0.471202,0.527083,0.574581,0.45081,0.45081,0.236054,0.236054,23.237158,24.398251,25.618693,25.533177,22.224519,20.019525,27,27,27,27,,,,,,,,,,,2580,2580,1.183228,1.183228,1.183228,1.183228,1.183228,1.183228,1.183228,1.183228,0.45081,0.45081,27,27,, +19070,0,0.093632,2,2,1,2,4,,3,2,6 Mile,Rd,1680701,6.251,6.345,0,2.0064,6,4.5,0.17024,0.17024,0.17024,0.17024,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.447186,0.665502,0.17024,0.17024,0.447186,0.665502,0.430407,0.40867,0.17024,0.17024,0.430407,0.40867,1.123584,0.743576,0.17024,0.17024,1.123584,0.743576,0.17024,0.17024,0.17024,0.17024,0.17024,0.17024,,,,,,,0.447186,0.665502,0.430407,0.40867,1.123584,0.743576,0.17024,0.17024,0.17024,0.17024,0.15101,0.216504,0.145976,0.139455,0.353929,0.239926,0.067926,0.067926,0.035836,0.035836,12.562829,8.441621,13.052563,13.746834,5,7.555277,33,33,33,33,,,,,,,,,,,5418,5418,0.17024,0.17024,0.17024,0.17024,0.17024,0.17024,0.17024,0.17024,0.067926,0.067926,33,33,, +20927,0,0.209768,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.051,2.261,0,4.495021,5,5,0.359602,0.359602,0.359602,0.359602,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.384674,0.375251,0.359602,0.359602,0.384674,0.375251,0.36581,0.370719,0.359602,0.359602,0.36581,0.370719,0.405256,0.469015,0.359602,0.359602,0.405256,0.469015,0.359602,0.359602,0.359602,0.359602,0.359602,0.359602,,,,,,,0.384674,0.375251,0.36581,0.370719,0.405256,0.469015,0.359602,0.359602,0.359602,0.359602,0.153161,0.150333,0.147501,0.148974,0.159335,0.178463,0.145639,0.145639,0.077015,0.077015,32.718731,33.540396,34.406007,33.950372,31.057084,26.835101,35,35,35,35,,,,,,,,,,,7946,7946,0.359602,0.359602,0.359602,0.359602,0.359602,0.359602,0.359602,0.359602,0.145639,0.145639,35,35,, +22431,1,0.619379,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.963,1.582,0,13.272398,6,4.5,0.977966,,0.977966,,38,,17000,,3859,,8500,,5484,,5848,,5841,,1.04292,,0.977966,,1.04292,,0.993679,,0.977966,,0.993679,,1.028279,,0.977966,,1.028279,,0.977966,,0.977966,,0.977966,,,,,,,,1.04292,,0.993679,,1.028279,,0.977966,,0.977966,,0.424364,,0.409592,,0.419972,,0.404878,,0.214827,,35.633339,,37.399112,,36.1407,,38,,38,,,,,,,,,,,,5848,,0.977966,,0.977966,,0.977966,,0.977966,,0.404878,,38,,, +22441,0,2.048844,1,1,0,2,3,,4,2,Edward Hines,Dr,4705216,0.443,2.491,0,43.903807,3.7,5,3.073267,3.073267,3.073267,3.073267,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,3.170289,3.178733,3.073267,3.073267,3.170289,3.178733,3.077253,3.078793,3.073267,3.073267,3.077253,3.078793,3.280502,3.366643,3.073267,3.073267,3.280502,3.366643,3.073267,3.073267,3.073267,3.073267,3.073267,3.073267,,,,,,,3.170289,3.178733,3.077253,3.078793,3.280502,3.366643,3.073267,3.073267,3.073267,3.073267,1.319879,1.322412,1.291968,1.29243,1.352943,1.378785,1.290772,1.290772,0.686363,0.686363,38.775855,38.672846,39.948185,39.928206,37.473123,36.51431,40,40,40,40,,,,,,,,,,,3784,3784,3.073267,3.073267,3.073267,3.073267,3.073267,3.073267,3.073267,3.073267,1.290772,1.290772,40,40,, +23233,-1,0.497411,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.967,1.464,0,10.658801,6,4.5,,0.785385,,0.785385,,38,,17000,,3859,,8500,,5484,,5848,,5841,,0.807899,,0.785385,,0.807899,,0.7965,,0.785385,,0.7965,,0.891945,,0.785385,,0.891945,,0.785385,,0.785385,,0.785385,,,,,,,,0.807899,,0.7965,,0.891945,,0.785385,,0.785385,,0.331904,,0.328484,,0.357117,,0.32515,,0.172523,,36.94106,,37.469722,,33.460178,,38,,38,,,,,,,,,,,,5848,,0.785385,,0.785385,,0.785385,,0.785385,,0.32515,,38,, +24126,0,0.486373,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,8.052,8.538,0,10.42227,6,4.5,0.884314,0.884314,0.884314,0.884314,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.05857,1.07491,0.884314,0.884314,1.05857,1.07491,0.971277,1.085637,0.884314,0.884314,0.971277,1.085637,1.184982,1.327698,0.884314,0.884314,1.184982,1.327698,0.884314,0.884314,0.884314,0.884314,0.884314,0.884314,,,,,,,1.05857,1.07491,0.971277,1.085637,1.184982,1.327698,0.884314,0.884314,0.884314,0.884314,0.405118,0.41002,0.37893,0.413238,0.443042,0.485857,0.352841,0.352841,0.186148,0.186148,27.567712,27.148655,30.045344,26.880402,24.626829,21.979662,33,33,33,33,,,,,,,,,,,5418,5418,0.884314,0.884314,0.884314,0.884314,0.884314,0.884314,0.884314,0.884314,0.352841,0.352841,33,33,, +24871,0,0.513277,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.998794,0.15,4,3.079662,3.079662,3.079662,3.079662,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,,,,,,,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,1.016289,1.016289,1.016289,1.016289,1.016289,1.016289,1.016289,1.016289,0.51841,0.51841,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,3.079662,1.016289,1.016289,10,10,, +26864,0,0.544188,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.661173,0.15,4,3.265128,3.265128,3.265128,3.265128,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,,,,,,,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,1.077492,1.077492,1.077492,1.077492,1.077492,1.077492,1.077492,1.077492,0.54963,0.54963,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,3.265128,1.077492,1.077492,10,10,, +27231,0,0.49366,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.578426,0.15,4,2.961959,2.961959,2.961959,2.961959,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.961959,2.961961,2.961959,2.961959,2.961959,2.961961,2.961962,2.961961,2.961959,2.961959,2.961962,2.961961,2.961965,2.96196,2.961959,2.961959,2.961965,2.96196,2.961959,2.961959,2.961959,2.961959,2.961959,2.961959,,,,,,,2.961959,2.961961,2.961962,2.961961,2.961965,2.96196,2.961959,2.961959,2.961959,2.961959,0.977447,0.977447,0.977447,0.977447,0.977448,0.977447,0.977447,0.977447,0.498596,0.498596,9.999999,9.999996,9.99999,9.999994,9.999981,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,2.961959,2.961959,2.961959,2.961959,2.961959,2.961959,2.961959,2.961959,0.977447,0.977447,10,10,, +31344,0,0.292331,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.264235,0.15,4,1.753986,1.753986,1.753986,1.753986,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,,,,,,,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,0.578815,0.578815,0.578815,0.578815,0.578815,0.578815,0.578815,0.578815,0.295254,0.295254,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,1.753986,0.578815,0.578815,10,10,, +31460,0,0.491736,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.537197,0.15,4,1.966943,1.966943,1.966943,1.966943,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,,,,,,,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,0.678595,0.678595,0.678595,0.678595,0.678595,0.678595,0.678595,0.678595,0.349132,0.349132,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,1.966943,0.678595,0.678595,15,15,, +31704,0,0.460924,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.876935,0.15,4,2.765542,2.765542,2.765542,2.765542,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,,,,,,,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,0.912629,0.912629,0.912629,0.912629,0.912629,0.912629,0.912629,0.912629,0.465533,0.465533,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,2.765542,0.912629,0.912629,10,10,, +31712,0,0.522471,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.1958,0.15,4,3.134824,3.134824,3.134824,3.134824,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,3.134825,3.134824,3.134824,3.134824,3.134825,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,,,,,,,3.134824,3.134824,3.134824,3.134824,3.134824,3.134825,3.134824,3.134824,3.134824,3.134824,1.034492,1.034492,1.034492,1.034492,1.034492,1.034492,1.034492,1.034492,0.527695,0.527695,10,10,10,9.999999,9.999999,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,3.134824,1.034492,1.034492,10,10,, +31721,0,0.44743,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.587778,0.15,4,2.684578,2.684578,2.684578,2.684578,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,,,,,,,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,0.885911,0.885911,0.885911,0.885911,0.885911,0.885911,0.885911,0.885911,0.451904,0.451904,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,2.684578,0.885911,0.885911,10,10,, +31737,0,0.489538,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.490107,0.15,4,2.93723,2.93723,2.93723,2.93723,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,,,,,,,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,0.969286,0.969286,0.969286,0.969286,0.969286,0.969286,0.969286,0.969286,0.494434,0.494434,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,2.93723,0.969286,0.969286,10,10,, +31740,0,0.505082,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.823178,0.15,4,3.03049,3.03049,3.03049,3.03049,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,,,,,,,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,1.000062,1.000062,1.000062,1.000062,1.000062,1.000062,1.000062,1.000062,0.510132,0.510132,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,3.03049,1.000062,1.000062,10,10,, +31771,0,0.712187,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.26114,0.15,4,2.848746,2.848746,2.848746,2.848746,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,,,,,,,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,0.982817,0.982817,0.982817,0.982817,0.982817,0.982817,0.982817,0.982817,0.505652,0.505652,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,2.848746,0.982817,0.982817,15,15,, +31847,0,0.493859,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.582688,0.15,4,2.963153,2.963153,2.963153,2.963153,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,,,,,,,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,0.97784,0.97784,0.97784,0.97784,0.97784,0.97784,0.97784,0.97784,0.498797,0.498797,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,2.963153,0.97784,0.97784,10,10,, +16102,0,0.494456,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0.445,0.939,0,10.595481,6,4.5,0.899011,0.899011,0.899011,0.899011,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.921847,0.903629,0.899011,0.899011,0.921847,0.903629,0.909245,0.904765,0.899011,0.899011,0.909245,0.904765,0.920939,0.919701,0.899011,0.899011,0.920939,0.919701,0.899011,0.899011,0.899011,0.899011,0.899011,0.899011,,,,,,,0.921847,0.903629,0.909245,0.904765,0.920939,0.919701,0.899011,0.899011,0.899011,0.899011,0.365556,0.360091,0.361776,0.360431,0.365284,0.364912,0.358705,0.358705,0.189242,0.189242,32.18252,32.831322,32.628552,32.790119,32.214231,32.25761,33,33,33,33,,,,,,,,,,,2580,2580,0.899011,0.899011,0.899011,0.899011,0.899011,0.899011,0.899011,0.899011,0.358705,0.358705,33,33,, +16125,0,0.116745,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.095,3.212,0,2.501679,6,4.5,0.212264,0.212264,0.212264,0.212264,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.285435,0.244939,0.212264,0.212264,0.285435,0.244939,0.225563,0.221649,0.212264,0.212264,0.225563,0.221649,0.306622,0.344364,0.212264,0.212264,0.306622,0.344364,0.212264,0.212264,0.212264,0.212264,0.212264,0.212264,,,,,,,0.285435,0.244939,0.225563,0.221649,0.306622,0.344364,0.212264,0.212264,0.212264,0.212264,0.106645,0.094496,0.088683,0.087509,0.113001,0.124323,0.084693,0.084693,0.044681,0.044681,24.540411,28.59779,31.054328,31.602632,22.844772,20.341004,33,33,33,33,,,,,,,,,,,2580,2580,0.212264,0.212264,0.212264,0.212264,0.212264,0.212264,0.212264,0.212264,0.084693,0.084693,33,33,, +16129,0,0.253227,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.842,3.095,0,5.426302,6,4.5,0.460413,0.460413,0.460413,0.460413,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.590026,0.490349,0.460413,0.460413,0.590026,0.490349,0.484427,0.474863,0.460413,0.460413,0.484427,0.474863,0.528276,0.590492,0.460413,0.460413,0.528276,0.590492,0.460413,0.460413,0.460413,0.460413,0.460413,0.460413,,,,,,,0.590026,0.490349,0.484427,0.474863,0.528276,0.590492,0.460413,0.460413,0.460413,0.460413,0.222589,0.192686,0.190909,0.18804,0.204064,0.222729,0.183705,0.183705,0.096917,0.096917,25.750788,30.985378,31.364139,31.995849,28.760801,25.73048,33,33,33,33,,,,,,,,,,,2580,2580,0.460413,0.460413,0.460413,0.460413,0.460413,0.460413,0.460413,0.460413,0.183705,0.183705,33,33,, +16431,-1,1.300641,0,3,0,1,1,,3,2,S I 275,,1607610,20.25,21.55,0,,0.58,7,,1.200591,,1.200591,,65,,66000,,14982,,33000,,21292,,22704,,22678,,1.246475,,1.200591,,1.246475,,1.217399,,1.200591,,1.217399,,1.769899,,1.200591,,1.769899,,1.200591,,1.200591,,1.200591,,,,,,,,1.246475,,1.217399,,1.769899,,1.200591,,1.200591,,0.608058,,0.599335,,0.765085,,0.594293,,0.323159,,62.607312,,64.102614,,44.092021,,65,,65,,,,,,,,,,,,22704,,1.200591,,1.200591,,1.200591,,1.200591,,0.594293,,65,, +16484,1,1.006641,3,0,0,1,1,,3,2,N I 275,,1607208,20.2,21.206,0,,0.58,7,0.929207,,0.929207,,65,,66000,,14982,,33000,,21292,,22704,,22678,,1.556015,,0.929207,,1.556015,,0.958851,,0.929207,,0.958851,,1.098113,,0.929207,,1.098113,,0.929207,,0.929207,,0.929207,,,,,,,,1.556015,,0.958851,,1.098113,,0.929207,,0.929207,,0.648,,0.468851,,0.510629,,0.459957,,0.250112,,38.816119,,62.990445,,55.002032,,65,,65,,,,,,,,,,,,22704,,0.929207,,0.929207,,0.929207,,0.929207,,0.459957,,65,,, +16630,-1,1.683902,0,3,0,1,2,,3,2,W M 14,,1606204,4.388,6.071,0,,0.58,7,,1.554371,,1.554371,,65,,66000,,14982,,33000,,21292,,22704,,22678,,1.669128,,1.554371,,1.669128,,1.566009,,1.554371,,1.566009,,1.840994,,1.554371,,1.840994,,1.554371,,1.554371,,1.554371,,,,,,,,1.669128,,1.566009,,1.840994,,1.554371,,1.554371,,0.803841,,0.772905,,0.855401,,0.769414,,0.418385,,60.531082,,64.516967,,54.880199,,65,,65,,,,,,,,,,,,22704,,1.554371,,1.554371,,1.554371,,1.554371,,0.769414,,65,, +16923,1,1.930635,3,0,0,1,2,,3,2,E M 14,,1606205,4.17,6.1,0,,0.58,7,1.782125,,1.782125,,65,,66000,,14982,,33000,,21292,,22704,,22678,,2.143973,,1.782125,,2.143973,,1.790767,,1.782125,,1.790767,,1.951263,,1.782125,,1.951263,,1.782125,,1.782125,,1.782125,,,,,,,,2.143973,,1.790767,,1.951263,,1.782125,,1.782125,,0.990706,,0.884744,,0.932893,,0.882152,,0.479689,,54.029642,,64.686317,,59.365701,,65,,65,,,,,,,,,,,,22704,,1.782125,,1.782125,,1.782125,,1.782125,,0.882152,,65,,, +17144,0,0.299043,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.377,4.676,0,6.408072,5,5,0.512646,0.512646,0.512646,0.512646,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.552706,0.532626,0.512646,0.512646,0.552706,0.532626,0.518808,0.517588,0.512646,0.512646,0.518808,0.517588,0.565575,0.572981,0.512646,0.512646,0.565575,0.572981,0.512646,0.512646,0.512646,0.512646,0.512646,0.512646,,,,,,,0.552706,0.532626,0.518808,0.517588,0.565575,0.572981,0.512646,0.512646,0.512646,0.512646,0.219639,0.213615,0.20947,0.209104,0.2235,0.225722,0.207622,0.207622,0.109792,0.109792,32.463219,33.687078,34.584297,34.665801,31.724533,31.314464,35,35,35,35,,,,,,,,,,,7568,7568,0.512646,0.512646,0.512646,0.512646,0.512646,0.512646,0.512646,0.512646,0.207622,0.207622,35,35,, +17247,0,0.061071,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0,0.061,0,1.308655,6,4.5,0.111037,0.111037,0.111037,0.111037,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.138715,0.115244,0.111037,0.111037,0.138715,0.115244,0.119943,0.117761,0.111037,0.111037,0.119943,0.117761,0.135515,0.159112,0.111037,0.111037,0.135515,0.159112,0.111037,0.111037,0.111037,0.111037,0.111037,0.111037,,,,,,,0.138715,0.115244,0.119943,0.117761,0.135515,0.159112,0.111037,0.111037,0.111037,0.111037,0.052607,0.045566,0.046976,0.046321,0.051647,0.058726,0.044304,0.044304,0.023373,0.023373,26.415541,31.795432,30.549671,31.11579,27.039244,23.029297,33,33,33,33,,,,,,,,,,,5160,5160,0.111037,0.111037,0.111037,0.111037,0.111037,0.111037,0.111037,0.111037,0.044304,0.044304,33,33,, +17645,0,0.042709,1,1,1,2,4,,3,2,Joy,Rd,1672705,4.096,4.139,0,0.91519,6,4.5,0.077652,0.077652,0.077652,0.077652,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.100581,0.080281,0.077652,0.077652,0.100581,0.080281,0.08264,0.081983,0.077652,0.077652,0.08264,0.081983,0.093462,0.108393,0.077652,0.077652,0.093462,0.108393,0.077652,0.077652,0.077652,0.077652,0.077652,0.077652,,,,,,,0.100581,0.080281,0.08264,0.081983,0.093462,0.108393,0.077652,0.077652,0.077652,0.077652,0.037862,0.031772,0.03248,0.032282,0.035726,0.040206,0.030983,0.030983,0.016346,0.016346,25.477346,31.919688,31.008315,31.256992,27.417916,23.641092,33,33,33,33,,,,,,,,,,,2838,2838,0.077652,0.077652,0.077652,0.077652,0.077652,0.077652,0.077652,0.077652,0.030983,0.030983,33,33,, +17656,0,0.262873,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.186,0.448,0,5.633001,6,4.5,0.477952,0.477952,0.477952,0.477952,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.587038,0.547879,0.477952,0.477952,0.587038,0.547879,0.5106,0.506454,0.477952,0.477952,0.5106,0.506454,0.561854,0.604817,0.477952,0.477952,0.561854,0.604817,0.477952,0.477952,0.477952,0.477952,0.477952,0.477952,,,,,,,0.587038,0.547879,0.5106,0.506454,0.561854,0.604817,0.477952,0.477952,0.477952,0.477952,0.223429,0.211681,0.200497,0.199254,0.215873,0.228762,0.190703,0.190703,0.100609,0.100609,26.867788,28.788114,30.88994,31.142786,28.072083,26.077984,33,33,33,33,,,,,,,,,,,2580,2580,0.477952,0.477952,0.477952,0.477952,0.477952,0.477952,0.477952,0.477952,0.190703,0.190703,33,33,, +17844,0,0.391505,2,2,0,2,4,,3,2,Main,St,1679010,0.873,1.265,0,8.389386,6,4.5,0.711827,0.711827,0.711827,0.711827,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.926165,0.74724,0.711827,0.711827,0.926165,0.74724,0.752888,0.748041,0.711827,0.711827,0.752888,0.748041,0.841111,1.04636,0.711827,0.711827,0.841111,1.04636,0.711827,0.711827,0.711827,0.711827,0.711827,0.711827,,,,,,,0.926165,0.74724,0.752888,0.748041,0.841111,1.04636,0.711827,0.711827,0.711827,0.711827,0.34832,0.294643,0.296337,0.294883,0.322804,0.384379,0.284019,0.284019,0.14984,0.14984,25.362963,31.436071,31.200243,31.402408,27.927684,22.449523,33,33,33,33,,,,,,,,,,,5160,5160,0.711827,0.711827,0.711827,0.711827,0.711827,0.711827,0.711827,0.711827,0.284019,0.284019,33,33,, +17890,0,0.197178,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,0.865,1.062,0,4.22525,5,5,0.33802,0.33802,0.33802,0.33802,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.340496,0.343046,0.33802,0.33802,0.340496,0.343046,0.338161,0.338163,0.33802,0.33802,0.338161,0.338163,0.35945,0.350292,0.33802,0.33802,0.35945,0.350292,0.33802,0.33802,0.33802,0.33802,0.33802,0.33802,,,,,,,0.340496,0.343046,0.338161,0.338163,0.35945,0.350292,0.33802,0.33802,0.33802,0.33802,0.137641,0.138406,0.13694,0.136941,0.143327,0.14058,0.136898,0.136898,0.072393,0.072393,34.745507,34.487186,34.985434,34.985204,32.913351,33.773812,35,35,35,35,,,,,,,,,,,3784,3784,0.33802,0.33802,0.33802,0.33802,0.33802,0.33802,0.33802,0.33802,0.136898,0.136898,35,35,, +18169,0,0.491769,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,1.235,1.727,0,10.537913,5,5,0.843033,0.843033,0.843033,0.843033,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.155046,0.885607,0.843033,0.843033,1.155046,0.885607,0.88412,0.87908,0.843033,0.843033,0.88412,0.87908,1.029768,1.296417,0.843033,0.843033,1.029768,1.296417,0.843033,0.843033,0.843033,0.843033,0.843033,0.843033,,,,,,,1.155046,0.885607,0.88412,0.87908,1.029768,1.296417,0.843033,0.843033,0.843033,0.843033,0.435032,0.354201,0.353754,0.352242,0.397449,0.477443,0.341428,0.341428,0.18055,0.18055,25.545448,33.317422,33.373489,33.564824,28.653213,22.759779,35,35,35,35,,,,,,,,,,,7946,7946,0.843033,0.843033,0.843033,0.843033,0.843033,0.843033,0.843033,0.843033,0.341428,0.341428,35,35,, +18670,0,0.201661,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.033,0.235,0,4.321314,6,4.5,0.366657,0.366657,0.366657,0.366657,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.414484,0.381611,0.366657,0.366657,0.414484,0.381611,0.380915,0.377566,0.366657,0.366657,0.380915,0.377566,0.393862,0.432582,0.366657,0.366657,0.393862,0.432582,0.366657,0.366657,0.366657,0.366657,0.366657,0.366657,,,,,,,0.414484,0.381611,0.380915,0.377566,0.393862,0.432582,0.366657,0.366657,0.366657,0.366657,0.160644,0.150782,0.150574,0.149569,0.154458,0.166074,0.146296,0.146296,0.077181,0.077181,29.192159,31.706833,31.764781,32.046559,30.720597,27.970824,33,33,33,33,,,,,,,,,,,2580,2580,0.366657,0.366657,0.366657,0.366657,0.366657,0.366657,0.366657,0.366657,0.146296,0.146296,33,33,, +19397,0,0.31255,1,1,0,2,5,,3,2,Riverside,Dr,1733709,0,0.312,0,6.697504,8,4.5,0.75012,0.75012,0.75012,0.75012,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.767007,0.750173,0.75012,0.75012,0.767007,0.750173,0.750121,0.75012,0.75012,0.75012,0.750121,0.75012,0.768168,0.857971,0.75012,0.75012,0.768168,0.857971,0.75012,0.75012,0.75012,0.75012,0.75012,0.75012,,,,,,,0.767007,0.750173,0.750121,0.75012,0.768168,0.857971,0.75012,0.75012,0.75012,0.75012,0.286361,0.281311,0.281295,0.281295,0.286709,0.31365,0.281295,0.281295,0.146899,0.146899,24.449601,24.998234,24.999995,25,24.412649,21.857397,25,25,25,25,,,,,,,,,,,2408,2408,0.75012,0.75012,0.75012,0.75012,0.75012,0.75012,0.75012,0.75012,0.281295,0.281295,25,25,, +23706,0,0.253512,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.989,11.243,0,5.432407,6,4.5,0.460931,0.460931,0.460931,0.460931,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.810229,0.590468,0.460931,0.460931,0.810229,0.590468,0.544818,0.544587,0.460931,0.460931,0.544818,0.544587,0.667913,0.988209,0.460931,0.460931,0.667913,0.988209,0.460931,0.460931,0.460931,0.460931,0.460931,0.460931,,,,,,,0.810229,0.590468,0.544818,0.544587,0.667913,0.988209,0.460931,0.460931,0.460931,0.460931,0.288701,0.222773,0.209078,0.209008,0.246006,0.342095,0.183912,0.183912,0.097026,0.097026,18.773378,25.760481,27.918921,27.930792,22.773549,15.392229,33,33,33,33,,,,,,,,,,,2580,2580,0.460931,0.460931,0.460931,0.460931,0.460931,0.460931,0.460931,0.460931,0.183912,0.183912,33,33,, +24082,0,0.283022,1,1,0,2,4,,4,2,Warren,Rd,4710470,4.195,4.477,0,6.064768,4.5,4.5,0.446878,0.446878,0.446878,0.446878,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.767217,0.5436,0.446878,0.446878,0.767217,0.5436,0.560012,0.537953,0.446878,0.446878,0.560012,0.537953,0.696438,0.853276,0.446878,0.446878,0.696438,0.853276,0.446878,0.446878,0.446878,0.446878,0.446878,0.446878,,,,,,,0.767217,0.5436,0.560012,0.537953,0.696438,0.853276,0.446878,0.446878,0.446878,0.446878,0.281109,0.214024,0.218948,0.21233,0.259875,0.306927,0.185007,0.185007,0.098164,0.098164,22.133707,31.23871,30.323201,31.566611,24.383142,19.901348,38,38,38,38,,,,,,,,,,,3096,3096,0.446878,0.446878,0.446878,0.446878,0.446878,0.446878,0.446878,0.446878,0.185007,0.185007,38,38,, +24180,0,0.593064,1,1,0,2,4,,3,2,Mill,St,4710390,6.269,6.861,0,12.708513,6,4.5,1.078298,1.078298,1.078298,1.078298,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.262939,1.095515,1.078298,1.078298,1.262939,1.095515,1.10456,1.094565,1.078298,1.078298,1.10456,1.094565,1.157643,1.334402,1.078298,1.078298,1.157643,1.334402,1.078298,1.078298,1.078298,1.078298,1.078298,1.078298,,,,,,,1.262939,1.095515,1.10456,1.094565,1.157643,1.334402,1.078298,1.078298,1.078298,1.078298,0.485633,0.435406,0.43812,0.435121,0.454044,0.507072,0.430241,0.430241,0.226982,0.226982,28.175412,32.481368,32.215394,32.509572,30.738173,26.6665,33,33,33,33,,,,,,,,,,,2580,2580,1.078298,1.078298,1.078298,1.078298,1.078298,1.078298,1.078298,1.078298,0.430241,0.430241,33,33,, +24181,0,0.299184,1,1,0,2,4,,3,2,Mill,St,4710390,5.969,6.269,0,6.411092,6,4.5,0.543971,0.543971,0.543971,0.543971,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.767623,0.609216,0.543971,0.543971,0.767623,0.609216,0.597445,0.586673,0.543971,0.543971,0.597445,0.586673,0.75867,0.961874,0.543971,0.543971,0.75867,0.961874,0.543971,0.543971,0.543971,0.543971,0.543971,0.543971,,,,,,,0.767623,0.609216,0.597445,0.586673,0.75867,0.961874,0.543971,0.543971,0.543971,0.543971,0.28414,0.236618,0.233087,0.229855,0.281454,0.342415,0.217045,0.217045,0.114506,0.114506,23.385265,29.465835,30.046359,30.59805,23.661217,18.662581,33,33,33,33,,,,,,,,,,,2580,2580,0.543971,0.543971,0.543971,0.543971,0.543971,0.543971,0.543971,0.543971,0.217045,0.217045,33,33,, +30390,0,0.355671,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.621513,0.15,4,2.134024,2.134024,2.134024,2.134024,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,,,,,,,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,0.704228,0.704228,0.704228,0.704228,0.704228,0.704228,0.704228,0.704228,0.359227,0.359227,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,2.134024,0.704228,0.704228,10,10,, +30393,0,0.567123,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.152636,0.15,4,3.402738,3.402738,3.402738,3.402738,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,,,,,,,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,1.122904,1.122904,1.122904,1.122904,1.122904,1.122904,1.122904,1.122904,0.572794,0.572794,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,3.402738,1.122904,1.122904,10,10,, +30398,0,0.7739,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.583562,0.15,4,4.643397,4.643397,4.643397,4.643397,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,,,,,,,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,1.532321,1.532321,1.532321,1.532321,1.532321,1.532321,1.532321,1.532321,0.781639,0.781639,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,4.643397,1.532321,1.532321,10,10,, +30405,0,0.245402,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.258622,0.15,4,0.981609,0.981609,0.981609,0.981609,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.98161,0.98161,0.981609,0.981609,0.98161,0.98161,0.98161,0.98161,0.981609,0.981609,0.98161,0.98161,0.98161,0.98161,0.981609,0.981609,0.98161,0.98161,0.981609,0.981609,0.981609,0.981609,0.981609,0.981609,,,,,,,0.98161,0.98161,0.98161,0.98161,0.98161,0.98161,0.981609,0.981609,0.981609,0.981609,0.338655,0.338655,0.338655,0.338655,0.338655,0.338655,0.338655,0.338655,0.174236,0.174236,14.999998,14.999998,14.999999,14.999999,14.999994,14.999994,15,15,15,15,,,,,,,,,,,34400,34400,0.981609,0.981609,0.981609,0.981609,0.981609,0.981609,0.981609,0.981609,0.338655,0.338655,15,15,, +30407,0,0.255534,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.475725,0.15,4,1.533203,1.533203,1.533203,1.533203,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.533203,1.533203,1.533203,1.533203,1.533203,1.533203,1.533203,1.533203,1.533203,1.533203,1.533203,1.533203,1.533204,1.533204,1.533203,1.533203,1.533204,1.533204,1.533203,1.533203,1.533203,1.533203,1.533203,1.533203,,,,,,,1.533203,1.533203,1.533203,1.533203,1.533204,1.533204,1.533203,1.533203,1.533203,1.533203,0.505957,0.505957,0.505957,0.505957,0.505957,0.505957,0.505957,0.505957,0.258089,0.258089,9.999998,9.999997,9.999997,9.999997,9.999991,9.999991,10,10,10,10,,,,,,,,,,,34400,34400,1.533203,1.533203,1.533203,1.533203,1.533203,1.533203,1.533203,1.533203,0.505957,0.505957,10,10,, +31459,0,0.411766,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.823558,0.15,4,2.470596,2.470596,2.470596,2.470596,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,,,,,,,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,0.815297,0.815297,0.815297,0.815297,0.815297,0.815297,0.815297,0.815297,0.415884,0.415884,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,2.470596,0.815297,0.815297,10,10,, +31751,0,0.317305,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.799386,0.15,4,1.903828,1.903828,1.903828,1.903828,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,,,,,,,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,0.628263,0.628263,0.628263,0.628263,0.628263,0.628263,0.628263,0.628263,0.320478,0.320478,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,1.903828,0.628263,0.628263,10,10,, +31757,0,0.498496,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.682065,0.15,4,2.990978,2.990978,2.990978,2.990978,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,,,,,,,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,0.987023,0.987023,0.987023,0.987023,0.987023,0.987023,0.987023,0.987023,0.503481,0.503481,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,2.990978,0.987023,0.987023,10,10,, +33762,0,0.454529,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.739904,0.15,4,2.727173,2.727173,2.727173,2.727173,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,,,,,,,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,0.899967,0.899967,0.899967,0.899967,0.899967,0.899967,0.899967,0.899967,0.459074,0.459074,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,2.727173,0.899967,0.899967,10,10,, +16044,0,0.250301,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,3.672,3.922,0,5.363589,5,5,0.429087,0.429087,0.429087,0.429087,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.515159,0.44482,0.429087,0.429087,0.515159,0.44482,0.437627,0.436274,0.429087,0.429087,0.437627,0.436274,0.46887,0.553281,0.429087,0.429087,0.46887,0.553281,0.429087,0.429087,0.429087,0.429087,0.429087,0.429087,,,,,,,0.515159,0.44482,0.437627,0.436274,0.46887,0.553281,0.429087,0.429087,0.429087,0.429087,0.199602,0.1785,0.176342,0.175936,0.185715,0.211038,0.17378,0.17378,0.091896,0.091896,29.152255,33.762053,34.317015,34.423444,32.030285,27.143632,35,35,35,35,,,,,,,,,,,7568,7568,0.429087,0.429087,0.429087,0.429087,0.429087,0.429087,0.429087,0.429087,0.17378,0.17378,35,35,, +17764,0,0.249977,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,0.325,0.575,0,5.35665,5,5,0.428532,0.428532,0.428532,0.428532,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.790208,0.449298,0.428532,0.428532,0.790208,0.449298,0.448608,0.442646,0.428532,0.428532,0.448608,0.442646,0.524728,0.799827,0.428532,0.428532,0.524728,0.799827,0.428532,0.428532,0.428532,0.428532,0.428532,0.428532,,,,,,,0.790208,0.449298,0.448608,0.442646,0.524728,0.799827,0.428532,0.428532,0.428532,0.428532,0.282058,0.179785,0.179578,0.17779,0.202414,0.284944,0.173555,0.173555,0.091777,0.091777,18.9806,33.382344,33.433693,33.884008,28.583624,18.752337,35,35,35,35,,,,,,,,,,,7946,7946,0.428532,0.428532,0.428532,0.428532,0.428532,0.428532,0.428532,0.428532,0.173555,0.173555,35,35,, +18193,0,0.253583,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.131,3.384,0,5.433922,6,4.5,0.46106,0.46106,0.46106,0.46106,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.519967,0.533531,0.46106,0.46106,0.519967,0.533531,0.479182,0.476498,0.46106,0.46106,0.479182,0.476498,0.60857,0.549726,0.46106,0.46106,0.60857,0.549726,0.46106,0.46106,0.46106,0.46106,0.46106,0.46106,,,,,,,0.519967,0.533531,0.479182,0.476498,0.60857,0.549726,0.46106,0.46106,0.46106,0.46106,0.201635,0.205704,0.189399,0.188594,0.228216,0.210563,0.183963,0.183963,0.097053,0.097053,29.261423,28.517514,31.752001,31.930816,25.001214,27.677389,33,33,33,33,,,,,,,,,,,2580,2580,0.46106,0.46106,0.46106,0.46106,0.46106,0.46106,0.46106,0.46106,0.183963,0.183963,33,33,, +18226,0,0.124354,1,1,0,2,4,,3,2,Main,St,1679010,0,0.124,0,2.664721,6,4.5,0.226097,0.226097,0.226097,0.226097,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.524112,0.285509,0.226097,0.226097,0.524112,0.285509,0.326328,0.30993,0.226097,0.226097,0.326328,0.30993,0.432961,0.552041,0.226097,0.226097,0.432961,0.552041,0.226097,0.226097,0.226097,0.226097,0.226097,0.226097,,,,,,,0.524112,0.285509,0.326328,0.30993,0.432961,0.552041,0.226097,0.226097,0.226097,0.226097,0.179617,0.108036,0.120282,0.115363,0.152272,0.187996,0.090213,0.090213,0.047594,0.047594,14.235933,26.133054,22.864148,24.073892,17.232989,13.515688,33,33,33,33,,,,,,,,,,,2580,2580,0.226097,0.226097,0.226097,0.226097,0.226097,0.226097,0.226097,0.226097,0.090213,0.090213,33,33,, +24087,0,0.22532,2,2,1,2,4,,4,2,Warren,Rd,4710470,3.478,3.703,0,4.828289,4.5,4.5,0.355769,0.355769,0.355769,0.355769,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.37148,0.364045,0.355769,0.355769,0.37148,0.364045,0.361321,0.360182,0.355769,0.355769,0.361321,0.360182,0.38109,0.381745,0.355769,0.355769,0.38109,0.381745,0.355769,0.355769,0.355769,0.355769,0.355769,0.355769,,,,,,,0.37148,0.364045,0.361321,0.360182,0.38109,0.381745,0.355769,0.355769,0.355769,0.355769,0.152002,0.149771,0.148954,0.148612,0.154885,0.155081,0.147288,0.147288,0.078151,0.078151,36.392848,37.136049,37.416077,37.534409,35.475106,35.414287,38,38,38,38,,,,,,,,,,,6502,6502,0.355769,0.355769,0.355769,0.355769,0.355769,0.355769,0.355769,0.355769,0.147288,0.147288,38,38,, +31456,0,0.245643,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.263788,0.15,4,1.473861,1.473861,1.473861,1.473861,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.473861,1.473861,1.473861,1.473861,1.473861,1.473861,1.473861,1.473861,1.473861,1.473861,1.473861,1.473861,1.473862,1.473862,1.473861,1.473861,1.473862,1.473862,1.473861,1.473861,1.473861,1.473861,1.473861,1.473861,,,,,,,1.473861,1.473861,1.473861,1.473861,1.473862,1.473862,1.473861,1.473861,1.473861,1.473861,0.486374,0.486374,0.486374,0.486374,0.486374,0.486374,0.486374,0.486374,0.2481,0.2481,9.999999,9.999996,9.999999,9.999998,9.999993,9.999993,10,10,10,10,,,,,,,,,,,34400,34400,1.473861,1.473861,1.473861,1.473861,1.473861,1.473861,1.473861,1.473861,0.486374,0.486374,10,10,, +31755,0,0.508001,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.885739,0.15,4,3.048007,3.048007,3.048007,3.048007,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,,,,,,,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,1.005842,1.005842,1.005842,1.005842,1.005842,1.005842,1.005842,1.005842,0.513081,0.513081,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,3.048007,1.005842,1.005842,10,10,, +33756,0,0.254669,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.457192,0.15,4,1.018676,1.018676,1.018676,1.018676,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,,,,,,,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,0.351443,0.351443,0.351443,0.351443,0.351443,0.351443,0.351443,0.351443,0.180815,0.180815,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,1.018676,0.351443,0.351443,15,15,, +39915,1,0.022578,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.995,3.018,0,0.48381,8,4.5,0.054187,,0.054187,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.100075,,0.054187,,0.100075,,0.074292,,0.054187,,0.074292,,0.0711,,0.054187,,0.0711,,0.054187,,0.054187,,0.054187,,,,,,,,0.100075,,0.074292,,0.0711,,0.054187,,0.054187,,0.034086,,0.026352,,0.025394,,0.02032,,0.010612,,13.536552,,18.2344,,19.052934,,25,,25,,,,,,,,,,,,4816,,0.054187,,0.054187,,0.054187,,0.054187,,0.02032,,25,,, +18631,0,0.520691,1,1,0,2,4,,4,2,Joy,Rd,1672705,2.61,3.131,0,11.157666,4.5,4.5,0.822144,0.822144,0.822144,0.822144,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.827695,0.862535,0.822144,0.822144,0.827695,0.862535,0.824696,0.823579,0.822144,0.822144,0.824696,0.823579,0.849801,0.832223,0.822144,0.822144,0.849801,0.832223,0.822144,0.822144,0.822144,0.822144,0.822144,0.822144,,,,,,,0.827695,0.862535,0.824696,0.823579,0.849801,0.832223,0.822144,0.822144,0.822144,0.822144,0.342033,0.352485,0.341133,0.340798,0.348665,0.343391,0.340368,0.340368,0.180598,0.180598,37.745152,36.220525,37.882393,37.933774,36.763255,37.539764,38,38,38,38,,,,,,,,,,,3096,3096,0.822144,0.822144,0.822144,0.822144,0.822144,0.822144,0.822144,0.822144,0.340368,0.340368,38,38,, +22552,0,0.385506,2,2,1,2,3,,4,2,Sheldon Center,Rd,4706535,0,0.385,0,8.26085,3.7,5,0.578259,0.578259,0.578259,0.578259,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.632147,0.579907,0.578259,0.578259,0.632147,0.579907,0.580175,0.57988,0.578259,0.578259,0.580175,0.57988,0.589234,0.624527,0.578259,0.578259,0.589234,0.624527,0.578259,0.578259,0.578259,0.578259,0.578259,0.578259,,,,,,,0.632147,0.579907,0.580175,0.57988,0.589234,0.624527,0.578259,0.578259,0.578259,0.578259,0.259035,0.243363,0.243444,0.243355,0.246161,0.256749,0.242869,0.242869,0.129145,0.129145,36.590192,39.886355,39.867929,39.888202,39.254991,37.036632,40,40,40,40,,,,,,,,,,,7946,7946,0.578259,0.578259,0.578259,0.578259,0.578259,0.578259,0.578259,0.578259,0.242869,0.242869,40,40,, +23128,0,0.378279,1,1,0,2,4,,4,2,Canton Center,Rd,4706530,4.918,5.296,0,8.105975,4.5,4.5,0.597282,0.597282,0.597282,0.597282,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.610064,0.609932,0.597282,0.597282,0.610064,0.609932,0.603056,0.603495,0.597282,0.597282,0.603056,0.603495,0.631701,0.631102,0.597282,0.597282,0.631701,0.631102,0.597282,0.597282,0.597282,0.597282,0.597282,0.597282,,,,,,,0.610064,0.609932,0.603056,0.603495,0.631701,0.631102,0.597282,0.597282,0.597282,0.597282,0.25111,0.25107,0.249007,0.249139,0.257601,0.257421,0.247275,0.247275,0.131203,0.131203,37.203822,37.211889,37.636173,37.6088,35.929536,35.963651,38,38,38,38,,,,,,,,,,,3096,3096,0.597282,0.597282,0.597282,0.597282,0.597282,0.597282,0.597282,0.597282,0.247275,0.247275,38,38,, +39916,1,0.497859,3,0,0,1,2,,3,2,N M 39,,1592408,6.17,6.668,0,,0.58,7,0.459562,,0.459562,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.508002,,0.459562,,0.508002,,0.463168,,0.459562,,0.463168,,0.488619,,0.459562,,0.488619,,0.459562,,0.459562,,0.459562,,,,,,,,0.508002,,0.463168,,0.488619,,0.459562,,0.459562,,0.242015,,0.228565,,0.2362,,0.227483,,0.123699,,58.802019,,64.493924,,61.134598,,65,,65,,,,,,,,,,,,22704,,0.459562,,0.459562,,0.459562,,0.459562,,0.227483,,65,,, +23560,0,0.112274,2,2,1,2,3,,4,2,Sheldon Center,Rd,4706535,0.385,0.498,0,2.405874,3.7,5,0.168411,0.168411,0.168411,0.168411,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.202202,0.169363,0.168411,0.168411,0.202202,0.169363,0.170036,0.16975,0.168411,0.168411,0.170036,0.16975,0.173638,0.195052,0.168411,0.168411,0.173638,0.195052,0.168411,0.168411,0.168411,0.168411,0.168411,0.168411,,,,,,,0.202202,0.169363,0.170036,0.16975,0.173638,0.195052,0.168411,0.168411,0.168411,0.168411,0.08087,0.071018,0.07122,0.071134,0.072301,0.078725,0.070733,0.070733,0.037612,0.037612,33.315466,39.775308,39.617766,39.684481,38.795931,34.536666,40,40,40,40,,,,,,,,,,,7946,7946,0.168411,0.168411,0.168411,0.168411,0.168411,0.168411,0.168411,0.168411,0.070733,0.070733,40,40,, +24090,0,0.222403,2,2,1,2,4,,4,2,Warren,Rd,4710470,2.976,3.199,0,4.765779,4.5,4.5,0.351163,0.351163,0.351163,0.351163,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.353892,0.354029,0.351163,0.351163,0.353892,0.354029,0.351662,0.351434,0.351163,0.351163,0.351662,0.351434,0.358833,0.354291,0.351163,0.351163,0.358833,0.354291,0.351163,0.351163,0.351163,0.351163,0.351163,0.351163,,,,,,,0.353892,0.354029,0.351662,0.351434,0.358833,0.354291,0.351163,0.351163,0.351163,0.351163,0.1462,0.146241,0.145531,0.145463,0.147682,0.14632,0.145381,0.145381,0.077139,0.077139,37.706901,37.692362,37.94608,37.97068,37.187762,37.664465,38,38,38,38,,,,,,,,,,,6502,6502,0.351163,0.351163,0.351163,0.351163,0.351163,0.351163,0.351163,0.351163,0.145381,0.145381,38,38,, +31450,0,0.387851,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.311085,0.15,4,1.551402,1.551402,1.551402,1.551402,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,,,,,,,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,0.535234,0.535234,0.535234,0.535234,0.535234,0.535234,0.535234,0.535234,0.275374,0.275374,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,1.551402,0.535234,0.535234,15,15,, +22496,0,0.070397,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,4.696,4.767,0,1.508502,3.7,5,0.105595,0.105595,0.105595,0.105595,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.186854,0.108693,0.105595,0.105595,0.186854,0.108693,0.108412,0.108484,0.105595,0.105595,0.108412,0.108484,0.122282,0.182685,0.105595,0.105595,0.122282,0.182685,0.105595,0.105595,0.105595,0.105595,0.105595,0.105595,,,,,,,0.186854,0.108693,0.108412,0.108484,0.122282,0.182685,0.105595,0.105595,0.105595,0.105595,0.068728,0.045279,0.045195,0.045217,0.049356,0.067477,0.04435,0.04435,0.023583,0.023583,22.604793,38.860112,38.960852,38.934726,34.541491,23.120644,40,40,40,40,,,,,,,,,,,7946,7946,0.105595,0.105595,0.105595,0.105595,0.105595,0.105595,0.105595,0.105595,0.04435,0.04435,40,40,, +23480,0,0.151384,1,1,0,2,4,,4,2,Canton Center,Rd,4706530,4.767,4.918,0,3.243944,4.5,4.5,0.239027,0.239027,0.239027,0.239027,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.460815,0.261155,0.239027,0.239027,0.460815,0.261155,0.248127,0.251575,0.239027,0.239027,0.248127,0.251575,0.294997,0.468655,0.239027,0.239027,0.294997,0.468655,0.239027,0.239027,0.239027,0.239027,0.239027,0.239027,,,,,,,0.460815,0.261155,0.248127,0.251575,0.294997,0.468655,0.239027,0.239027,0.239027,0.239027,0.165494,0.105595,0.101687,0.102722,0.115748,0.167846,0.098957,0.098957,0.052506,0.052506,19.710827,34.780344,36.606429,36.104734,30.790341,19.381099,38,38,38,38,,,,,,,,,,,3096,3096,0.239027,0.239027,0.239027,0.239027,0.239027,0.239027,0.239027,0.239027,0.098957,0.098957,38,38,, +22780,0,0.21934,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,4.477,4.696,0,4.700153,3.7,5,0.329011,0.329011,0.329011,0.329011,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.485089,0.335886,0.329011,0.329011,0.485089,0.335886,0.334511,0.334908,0.329011,0.329011,0.334511,0.334908,0.364017,0.483919,0.329011,0.329011,0.364017,0.483919,0.329011,0.329011,0.329011,0.329011,0.329011,0.329011,,,,,,,0.485089,0.335886,0.334511,0.334908,0.364017,0.483919,0.329011,0.329011,0.329011,0.329011,0.185008,0.140247,0.139835,0.139954,0.148686,0.184657,0.138184,0.138184,0.073479,0.073479,27.129945,39.18127,39.342314,39.295659,36.153334,27.195491,40,40,40,40,,,,,,,,,,,7946,7946,0.329011,0.329011,0.329011,0.329011,0.329011,0.329011,0.329011,0.329011,0.138184,0.138184,40,40,, +22847,0,0.19695,1,1,0,2,4,,4,2,Canton Center,Rd,4706530,5.296,5.493,0,4.220351,4.5,4.5,0.310973,0.310973,0.310973,0.310973,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.32437,0.323661,0.310973,0.310973,0.32437,0.323661,0.315632,0.316052,0.310973,0.310973,0.315632,0.316052,0.338703,0.347286,0.310973,0.310973,0.338703,0.347286,0.310973,0.310973,0.310973,0.310973,0.310973,0.310973,,,,,,,0.32437,0.323661,0.315632,0.316052,0.338703,0.347286,0.310973,0.310973,0.310973,0.310973,0.132762,0.132549,0.130141,0.130267,0.137062,0.139637,0.128743,0.128743,0.06831,0.06831,36.430509,36.51033,37.439118,37.389335,34.888952,34.026624,38,38,38,38,,,,,,,,,,,3096,3096,0.310973,0.310973,0.310973,0.310973,0.310973,0.310973,0.310973,0.310973,0.128743,0.128743,38,38,, +17780,0,0.296587,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.735,6.032,0,6.355443,4.5,4.5,0.468296,0.468296,0.468296,0.468296,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.585531,0.508012,0.468296,0.468296,0.585531,0.508012,0.518486,0.509138,0.468296,0.468296,0.518486,0.509138,0.588405,0.599217,0.468296,0.468296,0.588405,0.599217,0.468296,0.468296,0.468296,0.468296,0.468296,0.468296,,,,,,,0.585531,0.508012,0.518486,0.509138,0.588405,0.599217,0.468296,0.468296,0.468296,0.468296,0.229045,0.205789,0.208932,0.206127,0.229907,0.233151,0.193874,0.193874,0.102869,0.102869,30.391643,35.029183,34.321511,34.951701,30.24316,29.697481,38,38,38,38,,,,,,,,,,,3096,3096,0.468296,0.468296,0.468296,0.468296,0.468296,0.468296,0.468296,0.468296,0.193874,0.193874,38,38,, +24088,0,0.27945,2,2,1,2,4,,4,2,Warren,Rd,4710470,3.199,3.478,0,5.988212,4.5,4.5,0.441237,0.441237,0.441237,0.441237,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.445557,0.443855,0.441237,0.441237,0.445557,0.443855,0.441742,0.441502,0.441237,0.441237,0.441742,0.441502,0.448749,0.448469,0.441237,0.441237,0.448749,0.448469,0.441237,0.441237,0.441237,0.441237,0.441237,0.441237,,,,,,,0.445557,0.443855,0.441742,0.441502,0.448749,0.448469,0.441237,0.441237,0.441237,0.441237,0.183968,0.183458,0.182823,0.182752,0.184926,0.184842,0.182672,0.182672,0.096925,0.096925,37.631499,37.775827,37.956556,37.977159,37.363886,37.387166,38,38,38,38,,,,,,,,,,,6502,6502,0.441237,0.441237,0.441237,0.441237,0.441237,0.441237,0.441237,0.441237,0.182672,0.182672,38,38,, +30388,0,0.411253,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.812559,0.15,4,1.645011,1.645011,1.645011,1.645011,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,,,,,,,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,0.567529,0.567529,0.567529,0.567529,0.567529,0.567529,0.567529,0.567529,0.291989,0.291989,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,1.645011,0.567529,0.567529,15,15,, +31747,0,0.101029,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.164912,0.15,4,0.404117,0.404117,0.404117,0.404117,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,,,,,,,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.13942,0.13942,0.13942,0.13942,0.13942,0.13942,0.13942,0.13942,0.071731,0.071731,14.999996,14.999999,14.999999,14.999999,14.999998,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.404117,0.13942,0.13942,15,15,, +18183,0,0.173864,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.561,5.735,0,3.725654,4.5,4.5,0.274522,0.274522,0.274522,0.274522,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.403298,0.297804,0.274522,0.274522,0.403298,0.297804,0.303944,0.298464,0.274522,0.274522,0.303944,0.298464,0.371497,0.47284,0.274522,0.274522,0.371497,0.47284,0.274522,0.274522,0.274522,0.274522,0.274522,0.274522,,,,,,,0.403298,0.297804,0.303944,0.298464,0.371497,0.47284,0.274522,0.274522,0.274522,0.274522,0.152285,0.120637,0.122479,0.120835,0.142744,0.173148,0.113652,0.113652,0.060303,0.060303,25.866286,35.029183,34.321511,34.951701,28.080561,22.062054,38,38,38,38,,,,,,,,,,,3096,3096,0.274522,0.274522,0.274522,0.274522,0.274522,0.274522,0.274522,0.274522,0.113652,0.113652,38,38,, +18176,0,0.049563,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,6.032,6.081,0,1.062057,4.5,4.5,0.078257,0.078257,0.078257,0.078257,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.130749,0.092409,0.078257,0.078257,0.130749,0.092409,0.097724,0.093932,0.078257,0.078257,0.097724,0.093932,0.123996,0.151125,0.078257,0.078257,0.123996,0.151125,0.078257,0.078257,0.078257,0.078257,0.078257,0.078257,,,,,,,0.130749,0.092409,0.097724,0.093932,0.123996,0.151125,0.078257,0.078257,0.078257,0.078257,0.048146,0.036644,0.038239,0.037101,0.04612,0.054259,0.032398,0.032398,0.01719,0.01719,22.74394,32.180503,30.430116,31.658654,23.982785,19.677415,38,38,38,38,,,,,,,,,,,3096,3096,0.078257,0.078257,0.078257,0.078257,0.078257,0.078257,0.078257,0.078257,0.032398,0.032398,38,38,, +18173,0,0.324842,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,0,0.325,0,6.960903,3.7,5,0.487263,0.487263,0.487263,0.487263,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.787145,0.496619,0.487263,0.487263,0.787145,0.496619,0.507046,0.502394,0.487263,0.487263,0.507046,0.502394,0.565033,0.808613,0.487263,0.487263,0.565033,0.808613,0.487263,0.487263,0.487263,0.487263,0.487263,0.487263,,,,,,,0.787145,0.496619,0.507046,0.502394,0.565033,0.808613,0.487263,0.487263,0.487263,0.487263,0.294615,0.207457,0.210585,0.20919,0.227981,0.301056,0.204651,0.204651,0.108822,0.108822,24.761037,39.246466,38.439352,38.795317,34.494512,24.10365,40,40,40,40,,,,,,,,,,,7946,7946,0.487263,0.487263,0.487263,0.487263,0.487263,0.487263,0.487263,0.487263,0.204651,0.204651,40,40,, +23375,0,0.123753,2,2,1,2,3,,4,2,Sheldon Center,Rd,4706535,0.498,0.621,0,2.65186,3.7,5,0.18563,0.18563,0.18563,0.18563,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.299875,0.189194,0.18563,0.18563,0.299875,0.189194,0.193167,0.191394,0.18563,0.18563,0.193167,0.191394,0.215258,0.308053,0.18563,0.18563,0.215258,0.308053,0.18563,0.18563,0.18563,0.18563,0.18563,0.18563,,,,,,,0.299875,0.189194,0.193167,0.191394,0.215258,0.308053,0.18563,0.18563,0.18563,0.18563,0.112238,0.079034,0.080226,0.079694,0.086853,0.114692,0.077965,0.077965,0.041457,0.041457,24.761037,39.246466,38.439352,38.795317,34.494512,24.10365,40,40,40,40,,,,,,,,,,,7946,7946,0.18563,0.18563,0.18563,0.18563,0.18563,0.18563,0.18563,0.18563,0.077965,0.077965,40,40,, +17760,0,0.408754,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,0.826,1.235,0,8.759013,5,5,0.700721,0.700721,0.700721,0.700721,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.810275,0.714383,0.700721,0.700721,0.810275,0.714383,0.706638,0.70488,0.700721,0.700721,0.706638,0.70488,0.777178,0.83236,0.700721,0.700721,0.777178,0.83236,0.700721,0.700721,0.700721,0.700721,0.700721,0.700721,,,,,,,0.810275,0.714383,0.706638,0.70488,0.777178,0.83236,0.700721,0.700721,0.700721,0.700721,0.316658,0.287891,0.285567,0.28504,0.306729,0.323284,0.283792,0.283792,0.150071,0.150071,30.267805,34.330672,34.706957,34.793474,31.556777,29.464686,35,35,35,35,,,,,,,,,,,7946,7946,0.700721,0.700721,0.700721,0.700721,0.700721,0.700721,0.700721,0.700721,0.283792,0.283792,35,35,, +31748,0,0.644529,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.811339,0.15,4,2.578117,2.578117,2.578117,2.578117,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,,,,,,,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,0.88945,0.88945,0.88945,0.88945,0.88945,0.88945,0.88945,0.88945,0.457616,0.457616,14.999997,15,15,15,14.999999,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,2.578117,0.88945,0.88945,15,15,, +18170,0,0.251761,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,0.575,0.826,0,5.394874,5,5,0.43159,0.43159,0.43159,0.43159,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.795847,0.452504,0.43159,0.43159,0.795847,0.452504,0.451809,0.445805,0.43159,0.43159,0.451809,0.445805,0.528472,0.805534,0.43159,0.43159,0.528472,0.805534,0.43159,0.43159,0.43159,0.43159,0.43159,0.43159,,,,,,,0.795847,0.452504,0.451809,0.445805,0.528472,0.805534,0.43159,0.43159,0.43159,0.43159,0.284071,0.181068,0.18086,0.179058,0.203859,0.286977,0.174794,0.174794,0.092432,0.092432,18.9806,33.382344,33.433693,33.884008,28.583624,18.752337,35,35,35,35,,,,,,,,,,,7946,7946,0.43159,0.43159,0.43159,0.43159,0.43159,0.43159,0.43159,0.43159,0.174794,0.174794,35,35,, +18287,0,0.199491,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.639,3.838,0,4.274808,6,4.5,0.362711,0.362711,0.362711,0.362711,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.527047,0.417781,0.362711,0.362711,0.527047,0.417781,0.398485,0.393769,0.362711,0.362711,0.398485,0.393769,0.488362,0.582827,0.362711,0.362711,0.488362,0.582827,0.362711,0.362711,0.362711,0.362711,0.362711,0.362711,,,,,,,0.527047,0.417781,0.398485,0.393769,0.488362,0.582827,0.362711,0.362711,0.362711,0.362711,0.194022,0.161243,0.155454,0.154039,0.182417,0.210756,0.144722,0.144722,0.076351,0.076351,22.710444,28.650109,30.037406,30.397133,24.509402,20.536914,33,33,33,33,,,,,,,,,,,2580,2580,0.362711,0.362711,0.362711,0.362711,0.362711,0.362711,0.362711,0.362711,0.144722,0.144722,33,33,, +23967,0,0.522336,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,1.997,2.52,0,11.192921,4.5,4.5,0.824742,0.824742,0.824742,0.824742,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.315415,0.902469,0.824742,0.824742,1.315415,0.902469,0.971913,0.947851,0.824742,0.824742,0.971913,0.947851,1.086136,1.390147,0.824742,0.824742,1.086136,1.390147,0.824742,0.824742,0.824742,0.824742,0.824742,0.824742,,,,,,,1.315415,0.902469,0.971913,0.947851,1.086136,1.390147,0.824742,0.824742,0.824742,0.824742,0.488645,0.364761,0.385594,0.378376,0.419861,0.511064,0.341443,0.341443,0.181168,0.181168,23.825312,34.727152,32.245864,33.064465,28.854733,22.544515,38,38,38,38,,,,,,,,,,,3096,3096,0.824742,0.824742,0.824742,0.824742,0.824742,0.824742,0.824742,0.824742,0.341443,0.341443,38,38,, +24083,0,0.215878,1,1,0,2,4,,4,2,Warren,Rd,4710470,3.979,4.195,0,4.625967,4.5,4.5,0.340861,0.340861,0.340861,0.340861,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.585203,0.414636,0.340861,0.340861,0.585203,0.414636,0.427155,0.410329,0.340861,0.340861,0.427155,0.410329,0.531216,0.650846,0.340861,0.340861,0.531216,0.650846,0.340861,0.340861,0.340861,0.340861,0.340861,0.340861,,,,,,,0.585203,0.414636,0.427155,0.410329,0.531216,0.650846,0.340861,0.340861,0.340861,0.340861,0.214419,0.163249,0.167005,0.161957,0.198223,0.234112,0.141116,0.141116,0.074876,0.074876,22.133707,31.23871,30.323201,31.566611,24.383142,19.901348,38,38,38,38,,,,,,,,,,,3096,3096,0.340861,0.340861,0.340861,0.340861,0.340861,0.340861,0.340861,0.340861,0.141116,0.141116,38,38,, +30404,0,0.254505,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.453681,0.15,4,1.01802,1.01802,1.01802,1.01802,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,1.018021,1.01802,1.01802,1.01802,1.018021,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,,,,,,,1.01802,1.01802,1.01802,1.01802,1.018021,1.01802,1.01802,1.01802,1.01802,1.01802,0.351217,0.351217,0.351217,0.351217,0.351217,0.351217,0.351217,0.351217,0.180699,0.180699,15,14.999999,15,15,14.999998,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,1.01802,0.351217,0.351217,15,15,, +31480,0,0.502523,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.76836,0.15,4,2.010094,2.010094,2.010094,2.010094,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,,,,,,,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,0.693482,0.693482,0.693482,0.693482,0.693482,0.693482,0.693482,0.693482,0.356792,0.356792,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,2.010094,0.693482,0.693482,15,15,, +31482,0,0.508006,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.885844,0.15,4,2.032024,2.032024,2.032024,2.032024,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,,,,,,,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,0.701048,0.701048,0.701048,0.701048,0.701048,0.701048,0.701048,0.701048,0.360684,0.360684,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,2.032024,0.701048,0.701048,15,15,, +23968,0,0.498358,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,1.499,1.997,0,10.679105,4.5,4.5,0.786881,0.786881,0.786881,0.786881,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.154593,0.897133,0.786881,0.786881,1.154593,0.897133,0.905902,0.897136,0.786881,0.786881,0.905902,0.897136,1.152617,1.335688,0.786881,0.786881,1.152617,1.335688,0.786881,0.786881,0.786881,0.786881,0.786881,0.786881,,,,,,,1.154593,0.897133,0.905902,0.897136,1.152617,1.335688,0.786881,0.786881,0.786881,0.786881,0.436082,0.358844,0.361475,0.358845,0.43549,0.490411,0.325769,0.325769,0.172852,0.172852,25.897856,33.330059,33.007443,33.329951,25.942254,22.386587,38,38,38,38,,,,,,,,,,,3096,3096,0.786881,0.786881,0.786881,0.786881,0.786881,0.786881,0.786881,0.786881,0.325769,0.325769,38,38,, +24086,0,0.275617,2,2,1,2,4,,4,2,Warren,Rd,4710470,3.703,3.979,0,5.906074,4.5,4.5,0.435184,0.435184,0.435184,0.435184,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.454403,0.445309,0.435184,0.435184,0.454403,0.445309,0.441976,0.440583,0.435184,0.435184,0.441976,0.440583,0.466158,0.466959,0.435184,0.435184,0.466158,0.466959,0.435184,0.435184,0.435184,0.435184,0.435184,0.435184,,,,,,,0.454403,0.445309,0.441976,0.440583,0.466158,0.466959,0.435184,0.435184,0.435184,0.435184,0.185932,0.183204,0.182204,0.181786,0.189458,0.189699,0.180166,0.180166,0.095595,0.095595,36.392848,37.136049,37.416077,37.534409,35.475106,35.414287,38,38,38,38,,,,,,,,,,,6502,6502,0.435184,0.435184,0.435184,0.435184,0.435184,0.435184,0.435184,0.435184,0.180166,0.180166,38,38,, +31481,0,0.507124,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.866933,0.15,4,2.028494,2.028494,2.028494,2.028494,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,,,,,,,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,0.69983,0.69983,0.69983,0.69983,0.69983,0.69983,0.69983,0.69983,0.360058,0.360058,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,2.028494,0.69983,0.69983,15,15,, +31746,0,0.243169,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.21076,0.15,4,0.972675,0.972675,0.972675,0.972675,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,,,,,,,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.335573,0.335573,0.335573,0.335573,0.335573,0.335573,0.335573,0.335573,0.17265,0.17265,14.999995,15,15,15,14.999999,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.972675,0.335573,0.335573,15,15,, +18731,0,0.254239,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.384,3.639,0,5.447977,6,4.5,0.462253,0.462253,0.462253,0.462253,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.521312,0.485534,0.462253,0.462253,0.521312,0.485534,0.480421,0.477731,0.462253,0.462253,0.480421,0.477731,0.538213,0.551148,0.462253,0.462253,0.538213,0.551148,0.462253,0.462253,0.462253,0.462253,0.462253,0.462253,,,,,,,0.521312,0.485534,0.480421,0.477731,0.538213,0.551148,0.462253,0.462253,0.462253,0.462253,0.202157,0.191423,0.189889,0.189082,0.207227,0.211107,0.184439,0.184439,0.097304,0.097304,29.261423,31.417654,31.752001,31.930816,28.342555,27.677389,33,33,33,33,,,,,,,,,,,2580,2580,0.462253,0.462253,0.462253,0.462253,0.462253,0.462253,0.462253,0.462253,0.184439,0.184439,33,33,, +31745,0,0.505397,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.829935,0.15,4,2.021588,2.021588,2.021588,2.021588,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,,,,,,,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.697448,0.358832,0.358832,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,2.021588,0.697448,0.697448,15,15,, +18074,0,0.258254,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.838,4.096,0,5.534015,6,4.5,0.469553,0.469553,0.469553,0.469553,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.682296,0.493938,0.469553,0.469553,0.682296,0.493938,0.515865,0.50976,0.469553,0.469553,0.515865,0.50976,0.616101,0.754507,0.469553,0.469553,0.616101,0.754507,0.469553,0.469553,0.469553,0.469553,0.469553,0.469553,,,,,,,0.682296,0.493938,0.515865,0.50976,0.616101,0.754507,0.469553,0.469553,0.469553,0.469553,0.251174,0.194667,0.201245,0.199414,0.231316,0.272838,0.187352,0.187352,0.098841,0.098841,22.710444,31.370815,30.037406,30.397133,25.150509,20.536914,33,33,33,33,,,,,,,,,,,2580,2580,0.469553,0.469553,0.469553,0.469553,0.469553,0.469553,0.469553,0.469553,0.187352,0.187352,33,33,, +17114,0,0.20545,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.171,4.377,0,4.402492,5,5,0.352199,0.352199,0.352199,0.352199,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.39708,0.362809,0.352199,0.352199,0.39708,0.362809,0.356433,0.355595,0.352199,0.352199,0.356433,0.355595,0.384984,0.448208,0.352199,0.352199,0.384984,0.448208,0.352199,0.352199,0.352199,0.352199,0.352199,0.352199,,,,,,,0.39708,0.362809,0.356433,0.355595,0.384984,0.448208,0.352199,0.352199,0.352199,0.352199,0.156105,0.145823,0.143911,0.143659,0.152476,0.171443,0.142641,0.142641,0.075429,0.075429,31.044048,33.976538,34.584297,34.665801,32.01947,27.502774,35,35,35,35,,,,,,,,,,,7568,7568,0.352199,0.352199,0.352199,0.352199,0.352199,0.352199,0.352199,0.352199,0.142641,0.142641,35,35,, +18238,0,0.37251,2,2,0,2,4,,3,2,Main,St,1679010,0.501,0.873,0,7.982357,6,4.5,0.677291,0.677291,0.677291,0.677291,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.934826,0.732107,0.677291,0.677291,0.934826,0.732107,0.757549,0.754119,0.677291,0.677291,0.757549,0.754119,0.861371,0.994195,0.677291,0.677291,0.861371,0.994195,0.677291,0.677291,0.677291,0.677291,0.677291,0.677291,,,,,,,0.934826,0.732107,0.757549,0.754119,0.861371,0.994195,0.677291,0.677291,0.677291,0.677291,0.3475,0.286684,0.294316,0.293287,0.325463,0.36531,0.270239,0.270239,0.14257,0.14257,23.908832,30.529144,29.503854,29.63803,25.94769,22.4811,33,33,33,33,,,,,,,,,,,5160,5160,0.677291,0.677291,0.677291,0.677291,0.677291,0.677291,0.677291,0.677291,0.270239,0.270239,33,33,, +31457,0,0.423737,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.080075,0.15,4,2.542421,2.542421,2.542421,2.542421,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,,,,,,,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,0.838999,0.838999,0.838999,0.838999,0.838999,0.838999,0.838999,0.838999,0.427974,0.427974,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,2.542421,0.838999,0.838999,10,10,, +33759,0,0.251969,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.399331,0.15,4,1.511813,1.511813,1.511813,1.511813,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,,,,,,,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,0.498898,0.498898,0.498898,0.498898,0.498898,0.498898,0.498898,0.498898,0.254488,0.254488,10,10,10,9.999999,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,1.511813,0.498898,0.498898,10,10,, +33760,0,0.352029,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.543472,0.15,4,2.112172,2.112172,2.112172,2.112172,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,,,,,,,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,0.697017,0.697017,0.697017,0.697017,0.697017,0.697017,0.697017,0.697017,0.355549,0.355549,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,2.112172,0.697017,0.697017,10,10,, +16190,0,0.248962,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,3.922,4.171,0,5.334901,5,5,0.426792,0.426792,0.426792,0.426792,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.512404,0.442441,0.426792,0.426792,0.512404,0.442441,0.435286,0.43394,0.426792,0.426792,0.435286,0.43394,0.466362,0.550321,0.426792,0.426792,0.466362,0.550321,0.426792,0.426792,0.426792,0.426792,0.426792,0.426792,,,,,,,0.512404,0.442441,0.435286,0.43394,0.466362,0.550321,0.426792,0.426792,0.426792,0.426792,0.198534,0.177546,0.175399,0.174995,0.184722,0.20991,0.172851,0.172851,0.091405,0.091405,29.152255,33.762053,34.317015,34.423444,32.030285,27.143632,35,35,35,35,,,,,,,,,,,7568,7568,0.426792,0.426792,0.426792,0.426792,0.426792,0.426792,0.426792,0.426792,0.172851,0.172851,35,35,, +17827,0,0.248744,1,1,0,2,4,,3,2,Main,St,1679010,0.124,0.373,0,5.330233,6,4.5,0.452262,0.452262,0.452262,0.452262,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.492437,0.456082,0.452262,0.452262,0.492437,0.456082,0.455083,0.454891,0.452262,0.452262,0.455083,0.454891,0.455789,0.468273,0.452262,0.452262,0.455789,0.468273,0.452262,0.452262,0.452262,0.452262,0.452262,0.452262,,,,,,,0.492437,0.456082,0.455083,0.454891,0.455789,0.468273,0.452262,0.452262,0.452262,0.452262,0.192505,0.181599,0.181299,0.181241,0.181511,0.185256,0.180453,0.180453,0.095201,0.095201,30.30773,32.723623,32.795432,32.809326,32.744655,31.871699,33,33,33,33,,,,,,,,,,,2580,2580,0.452262,0.452262,0.452262,0.452262,0.452262,0.452262,0.452262,0.452262,0.180453,0.180453,33,33,, +30386,0,0.136632,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.927833,0.15,4,0.819793,0.819793,0.819793,0.819793,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.819793,0.819793,0.819793,0.819793,0.819793,0.819793,0.819793,0.819793,0.819793,0.819793,0.819793,0.819793,0.819794,0.819794,0.819793,0.819793,0.819794,0.819794,0.819793,0.819793,0.819793,0.819793,0.819793,0.819793,,,,,,,0.819793,0.819793,0.819793,0.819793,0.819794,0.819794,0.819793,0.819793,0.819793,0.819793,0.270532,0.270532,0.270532,0.270532,0.270532,0.270532,0.270532,0.270532,0.137999,0.137999,9.999999,9.999999,9.999998,9.999998,9.999995,9.999994,10,10,10,10,,,,,,,,,,,34400,34400,0.819793,0.819793,0.819793,0.819793,0.819793,0.819793,0.819793,0.819793,0.270532,0.270532,10,10,, +30396,0,0.144345,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.093115,0.15,4,0.866072,0.866072,0.866072,0.866072,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,,,,,,,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.285804,0.285804,0.285804,0.285804,0.285804,0.285804,0.285804,0.285804,0.145789,0.145789,10,9.999999,9.999999,9.999999,9.999999,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.866072,0.285804,0.285804,10,10,, +17240,0,0.128061,1,1,0,2,4,,3,2,Main,St,1679010,0.373,0.501,0,2.744164,6,4.5,0.232838,0.232838,0.232838,0.232838,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.782241,0.361869,0.232838,0.232838,0.782241,0.361869,0.437821,0.420035,0.232838,0.232838,0.437821,0.420035,0.748924,1.14514,0.232838,0.232838,0.748924,1.14514,0.232838,0.232838,0.232838,0.232838,0.232838,0.232838,,,,,,,0.782241,0.361869,0.437821,0.420035,0.748924,1.14514,0.232838,0.232838,0.232838,0.232838,0.257723,0.131612,0.154397,0.149061,0.247728,0.366593,0.092902,0.092902,0.049012,0.049012,9.822623,21.233269,17.549765,18.292916,10.259591,6.7098,33,33,33,33,,,,,,,,,,,2580,2580,0.232838,0.232838,0.232838,0.232838,0.232838,0.232838,0.232838,0.232838,0.092902,0.092902,33,33,, +30391,0,0.261275,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.598741,0.15,4,1.567647,1.567647,1.567647,1.567647,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.567648,1.567648,1.567647,1.567647,1.567648,1.567648,1.567648,1.567648,1.567647,1.567647,1.567648,1.567648,1.567648,1.567648,1.567647,1.567647,1.567648,1.567648,1.567647,1.567647,1.567647,1.567647,1.567647,1.567647,,,,,,,1.567648,1.567648,1.567648,1.567648,1.567648,1.567648,1.567647,1.567647,1.567647,1.567647,0.517324,0.517324,0.517324,0.517324,0.517324,0.517324,0.517324,0.517324,0.263887,0.263887,9.999999,9.999999,9.999999,9.999999,9.999997,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.567647,1.567647,1.567647,1.567647,1.567647,1.567647,1.567647,1.567647,0.517324,0.517324,10,10,, +16206,0,0.2663,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.039,2.306,0,5.706427,6,4.5,0.484182,0.484182,0.484182,0.484182,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.574895,0.486711,0.484182,0.484182,0.574895,0.486711,0.50431,0.501198,0.484182,0.484182,0.50431,0.501198,0.548757,0.613276,0.484182,0.484182,0.548757,0.613276,0.484182,0.484182,0.484182,0.484182,0.484182,0.484182,,,,,,,0.574895,0.486711,0.50431,0.501198,0.548757,0.613276,0.484182,0.484182,0.484182,0.484182,0.220402,0.193947,0.199227,0.198293,0.212561,0.231917,0.193188,0.193188,0.10192,0.10192,27.79289,32.82848,31.682883,31.879624,29.1167,26.053501,33,33,33,33,,,,,,,,,,,2580,2580,0.484182,0.484182,0.484182,0.484182,0.484182,0.484182,0.484182,0.484182,0.193188,0.193188,33,33,, +16926,1,0.252779,3,0,0,1,2,,4,2,E M 14,,1606205,3.917,4.17,0,,0.8,7.5,0.216668,,0.216668,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.230497,,0.216668,,0.230497,,0.216802,,0.216668,,0.216802,,0.219525,,0.216668,,0.219525,,0.216668,,0.216668,,0.216668,,,,,,,,0.230497,,0.216802,,0.219525,,0.216668,,0.216668,,0.114649,,0.110541,,0.111358,,0.110501,,0.060306,,65.800265,,69.956776,,69.089037,,70,,70,,,,,,,,,,,,22704,,0.216668,,0.216668,,0.216668,,0.216668,,0.110501,,70,,, +16932,-1,0.352071,0,3,0,1,2,,4,2,W M 14,,1606204,4.036,4.388,0,,0.8,7.5,,0.301775,,0.301775,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.304716,,0.301775,,0.304716,,0.301947,,0.301775,,0.301947,,0.310334,,0.301775,,0.310334,,0.301775,,0.301775,,0.301775,,,,,,,,0.304716,,0.301947,,0.310334,,0.301775,,0.301775,,0.154788,,0.153957,,0.156473,,0.153905,,0.083994,,69.324422,,69.960052,,68.06951,,70,,70,,,,,,,,,,,,22704,,0.301775,,0.301775,,0.301775,,0.301775,,0.153905,,70,, +17722,0,0.339154,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,3.49,3.829,0,7.267592,4.5,4.5,0.535507,0.535507,0.535507,0.535507,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.653905,0.610552,0.535507,0.535507,0.653905,0.610552,0.571522,0.556394,0.535507,0.535507,0.571522,0.556394,0.68652,0.663647,0.535507,0.535507,0.68652,0.663647,0.535507,0.535507,0.535507,0.535507,0.535507,0.535507,,,,,,,0.653905,0.610552,0.571522,0.556394,0.68652,0.663647,0.535507,0.535507,0.535507,0.535507,0.257219,0.244213,0.232504,0.227966,0.267004,0.260142,0.2217,0.2217,0.117633,0.117633,31.119572,33.329257,35.605362,36.573491,29.64119,30.66277,38,38,38,38,,,,,,,,,,,3096,3096,0.535507,0.535507,0.535507,0.535507,0.535507,0.535507,0.535507,0.535507,0.2217,0.2217,38,38,, +18150,1,0.272046,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.446,2.718,0,5.829553,3.7,5,0.362728,,0.362728,,45,,33000,,7491,,16500,,10646,,11352,,11339,,0.389843,,0.362728,,0.389843,,0.36724,,0.362728,,0.36724,,0.380356,,0.362728,,0.380356,,0.362728,,0.362728,,0.362728,,,,,,,,0.389843,,0.36724,,0.380356,,0.362728,,0.362728,,0.165921,,0.15914,,0.163075,,0.157787,,0.084334,,41.870067,,44.447116,,42.914346,,45,,45,,,,,,,,,,,,11352,,0.362728,,0.362728,,0.362728,,0.362728,,0.157787,,45,,, +18165,0,0.739349,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,0,0.739,0,15.843185,5,5,1.267455,1.267455,1.267455,1.267455,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.275067,1.28601,1.267455,1.267455,1.275067,1.28601,1.26749,1.26751,1.267455,1.267455,1.26749,1.26751,1.332839,1.299518,1.267455,1.267455,1.332839,1.299518,1.267455,1.267455,1.267455,1.267455,1.267455,1.267455,,,,,,,1.275067,1.28601,1.26749,1.26751,1.332839,1.299518,1.267455,1.267455,1.267455,1.267455,0.515603,0.518886,0.51333,0.513336,0.532934,0.522938,0.513319,0.513319,0.271447,0.271447,34.791056,34.495004,34.999042,34.998482,33.283031,34.136431,35,35,35,35,,,,,,,,,,,3784,3784,1.267455,1.267455,1.267455,1.267455,1.267455,1.267455,1.267455,1.267455,0.513319,0.513319,35,35,, +18778,0,0.165398,1,1,0,2,4,,3,2,Penniman,Ave,1673609,3.737,3.902,0,3.544245,6,4.5,0.300724,0.300724,0.300724,0.300724,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.401874,0.365994,0.300724,0.300724,0.401874,0.365994,0.341212,0.316031,0.300724,0.300724,0.341212,0.316031,0.509137,0.431761,0.300724,0.300724,0.509137,0.431761,0.300724,0.300724,0.300724,0.300724,0.300724,0.300724,,,,,,,0.401874,0.365994,0.341212,0.316031,0.509137,0.431761,0.300724,0.300724,0.300724,0.300724,0.150334,0.13957,0.132135,0.124581,0.182513,0.1593,0.119989,0.119989,0.063302,0.063302,24.694015,27.114919,29.084222,31.401625,19.491596,22.984658,33,33,33,33,,,,,,,,,,,2580,2580,0.300724,0.300724,0.300724,0.300724,0.300724,0.300724,0.300724,0.300724,0.119989,0.119989,33,33,, +18933,0,0.252515,1,1,0,2,4,,3,2,Northville,Rd,1679402,0.081,0.333,0,5.411036,6,4.5,0.459118,0.459118,0.459118,0.459118,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.496426,0.476204,0.459118,0.459118,0.496426,0.476204,0.483351,0.47786,0.459118,0.459118,0.483351,0.47786,0.506318,0.522309,0.459118,0.459118,0.506318,0.522309,0.459118,0.459118,0.459118,0.459118,0.459118,0.459118,,,,,,,0.496426,0.476204,0.483351,0.47786,0.506318,0.522309,0.459118,0.459118,0.459118,0.459118,0.19438,0.188314,0.190458,0.188811,0.197348,0.202146,0.183188,0.183188,0.096644,0.096644,30.519988,31.815985,31.34552,31.705727,29.92369,29.007516,33,33,33,33,,,,,,,,,,,2580,2580,0.459118,0.459118,0.459118,0.459118,0.459118,0.459118,0.459118,0.459118,0.183188,0.183188,33,33,, +19292,1,0.283446,1,0,0,1,2,ROF,3,2,W M 14/Sheldon,RAMP,1778207,0,0.283,0,,2.24,5,0.485908,,0.485908,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.961047,,0.485908,,0.961047,,0.669673,,0.485908,,0.669673,,1.252774,,0.485908,,1.252774,,0.485908,,0.485908,,0.485908,,,,,,,,0.961047,,0.669673,,1.252774,,0.485908,,0.485908,,0.339334,,0.251922,,0.426852,,0.196793,,0.104065,,17.696092,,25.395646,,13.575294,,35,,35,,,,,,,,,,,,5074,,0.485908,,0.485908,,0.485908,,0.485908,,0.196793,,35,,, +19293,1,0.59357,1,0,0,1,2,ROF,3,2,E M 14/Sheldon,RAMP,1778206,0,0.593,0,,2.24,5,1.017549,,1.017549,,35,,14750,,3348,,7375,,4758,,5074,,5068,,1.018861,,1.017549,,1.018861,,1.017575,,1.017549,,1.017575,,1.018039,,1.017549,,1.018039,,1.017549,,1.017549,,1.017549,,,,,,,,1.018861,,1.017575,,1.018039,,1.017549,,1.017549,,0.412501,,0.412115,,0.412254,,0.412107,,0.217925,,34.954936,,34.999095,,34.983172,,35,,35,,,,,,,,,,,,5074,,1.017549,,1.017549,,1.017549,,1.017549,,0.412107,,35,,, +19296,1,0.52111,1,0,0,1,2,RON,3,2,Sheldon/E M 14,RAMP,1778202,0,0.521,0,,1.09,4,0.781665,,0.781665,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.940932,,0.781665,,0.940932,,0.85306,,0.781665,,0.85306,,1.262549,,0.781665,,1.262549,,0.781665,,0.781665,,0.781665,,,,,,,,0.940932,,0.85306,,1.262549,,0.781665,,0.781665,,0.376079,,0.349718,,0.472564,,0.328299,,0.174572,,33.229377,,36.652293,,24.764666,,40,,40,,,,,,,,,,,,5074,,0.781665,,0.781665,,0.781665,,0.781665,,0.328299,,40,,, +19297,1,0.23142,1,0,0,1,2,RON,3,2,Sheldon/W M 14,RAMP,4712090,0.112,0.344,0,,1.09,4,0.347131,,0.347131,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.348628,,0.347131,,0.348628,,0.347501,,0.347131,,0.347501,,0.34911,,0.347131,,0.34911,,0.347131,,0.347131,,0.347131,,,,,,,,0.348628,,0.347501,,0.34911,,0.347131,,0.347131,,0.146244,,0.145906,,0.146389,,0.145795,,0.077526,,39.828177,,39.957365,,39.773196,,40,,40,,,,,,,,,,,,5074,,0.347131,,0.347131,,0.347131,,0.347131,,0.145795,,40,,, +23203,-1,0.271247,0,3,0,2,3,DIV,4,2,Sheldon,Rd,4704692,0,0.271,0,5.812443,3.7,5,,0.361663,,0.361663,,45,,33000,,7491,,16500,,10646,,11352,,11339,,0.367669,,0.361663,,0.367669,,0.365747,,0.361663,,0.365747,,0.405627,,0.361663,,0.405627,,0.361663,,0.361663,,0.361663,,,,,,,,0.367669,,0.365747,,0.405627,,0.361663,,0.361663,,0.159125,,0.158549,,0.170513,,0.157323,,0.084087,,44.264871,,44.497501,,40.122651,,45,,45,,,,,,,,,,,,11352,,0.361663,,0.361663,,0.361663,,0.361663,,0.157323,,45,, +30399,0,0.127151,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.724658,0.15,4,0.762904,0.762904,0.762904,0.762904,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,,,,,,,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.251758,0.251758,0.251758,0.251758,0.251758,0.251758,0.251758,0.251758,0.128422,0.128422,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.762904,0.251758,0.251758,10,10,, +31464,0,0.264081,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.658878,0.15,4,1.056324,1.056324,1.056324,1.056324,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,,,,,,,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,0.364432,0.364432,0.364432,0.364432,0.364432,0.364432,0.364432,0.364432,0.187497,0.187497,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,1.056324,0.364432,0.364432,15,15,, +18154,0,0.237728,2,2,0,2,3,,3,2,Sheldon,Rd,5495471,2.096,2.334,0,5.094177,5,5,0.407534,0.407534,0.407534,0.407534,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.720156,0.476987,0.407534,0.407534,0.720156,0.476987,0.459555,0.454761,0.407534,0.407534,0.459555,0.454761,0.610831,0.903699,0.407534,0.407534,0.610831,0.903699,0.407534,0.407534,0.407534,0.407534,0.407534,0.407534,,,,,,,0.720156,0.476987,0.459555,0.454761,0.610831,0.903699,0.407534,0.407534,0.407534,0.407534,0.258838,0.185887,0.180658,0.179219,0.22604,0.313901,0.165051,0.165051,0.08728,0.08728,19.806384,29.903709,31.038049,31.365264,23.351303,15.78368,35,35,35,35,,,,,,,,,,,7568,7568,0.407534,0.407534,0.407534,0.407534,0.407534,0.407534,0.407534,0.407534,0.165051,0.165051,35,35,, +18330,0,0.254878,1,1,0,2,4,,3,2,Territorial,Rd,1673609,3.276,3.531,0,5.461662,6,4.5,0.463414,0.463414,0.463414,0.463414,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.665414,0.867309,0.463414,0.463414,0.665414,0.867309,0.651874,0.593513,0.463414,0.463414,0.651874,0.593513,0.947307,0.78023,0.463414,0.463414,0.947307,0.78023,0.463414,0.463414,0.463414,0.463414,0.463414,0.463414,,,,,,,0.665414,0.867309,0.651874,0.593513,0.947307,0.78023,0.463414,0.463414,0.463414,0.463414,0.245502,0.306071,0.24144,0.223932,0.33007,0.279947,0.184902,0.184902,0.097549,0.097549,22.982151,17.63231,23.459522,25.76632,16.143292,19.600195,33,33,33,33,,,,,,,,,,,2580,2580,0.463414,0.463414,0.463414,0.463414,0.463414,0.463414,0.463414,0.463414,0.184902,0.184902,33,33,, +31466,0,0.342846,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.346702,0.15,4,1.371384,1.371384,1.371384,1.371384,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.371384,1.371385,1.371384,1.371384,1.371384,1.371385,1.371384,1.371384,1.371384,1.371384,1.371384,1.371384,1.371385,1.371384,1.371384,1.371384,1.371385,1.371384,1.371384,1.371384,1.371384,1.371384,1.371384,1.371384,,,,,,,1.371384,1.371385,1.371384,1.371384,1.371385,1.371384,1.371384,1.371384,1.371384,1.371384,0.473128,0.473128,0.473128,0.473128,0.473128,0.473128,0.473128,0.473128,0.243421,0.243421,15,14.999998,14.999999,14.999999,14.999998,15,15,15,15,15,,,,,,,,,,,34400,34400,1.371384,1.371384,1.371384,1.371384,1.371384,1.371384,1.371384,1.371384,0.473128,0.473128,15,15,, +32606,0,0.250442,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.366605,0.15,4,1.502649,1.502649,1.502649,1.502649,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,,,,,,,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,0.495874,0.495874,0.495874,0.495874,0.495874,0.495874,0.495874,0.495874,0.252946,0.252946,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,1.502649,0.495874,0.495874,10,10,, +33952,0,0.311651,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.67824,0.15,4,1.869907,1.869907,1.869907,1.869907,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,,,,,,,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,0.617069,0.617069,0.617069,0.617069,0.617069,0.617069,0.617069,0.617069,0.314768,0.314768,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,1.869907,0.617069,0.617069,10,10,, +18786,0,0.163503,1,1,0,2,4,,4,2,Territorial,Rd,1673609,3.113,3.276,0,3.50363,4.5,4.5,0.258162,0.258162,0.258162,0.258162,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.295367,0.333674,0.258162,0.258162,0.295367,0.333674,0.292827,0.282092,0.258162,0.258162,0.292827,0.282092,0.37778,0.325067,0.258162,0.258162,0.37778,0.325067,0.258162,0.258162,0.258162,0.258162,0.258162,0.258162,,,,,,,0.295367,0.333674,0.292827,0.282092,0.37778,0.325067,0.258162,0.258162,0.258162,0.258162,0.118041,0.129533,0.117279,0.114058,0.142764,0.126951,0.106879,0.106879,0.05671,0.05671,33.213501,29.400444,33.501563,34.776427,25.967953,30.178885,38,38,38,38,,,,,,,,,,,3096,3096,0.258162,0.258162,0.258162,0.258162,0.258162,0.258162,0.258162,0.258162,0.106879,0.106879,38,38,, +17747,0,0.138183,2,2,0,2,3,,3,2,Sheldon,Rd,5495471,1.958,2.096,0,2.961065,5,5,0.236885,0.236885,0.236885,0.236885,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.396796,0.285204,0.236885,0.236885,0.396796,0.285204,0.269929,0.268734,0.236885,0.236885,0.269929,0.268734,0.358744,0.455774,0.236885,0.236885,0.358744,0.455774,0.236885,0.236885,0.236885,0.236885,0.236885,0.236885,,,,,,,0.396796,0.285204,0.269929,0.268734,0.358744,0.455774,0.236885,0.236885,0.236885,0.236885,0.143912,0.110434,0.105852,0.105493,0.132496,0.161605,0.095939,0.095939,0.050733,0.050733,20.894833,29.070349,30.715374,30.851965,23.111109,18.190996,35,35,35,35,,,,,,,,,,,7568,7568,0.236885,0.236885,0.236885,0.236885,0.236885,0.236885,0.236885,0.236885,0.095939,0.095939,35,35,, +17759,0,0.122761,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,1.727,1.849,0,2.630587,5,5,0.210447,0.210447,0.210447,0.210447,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.316053,0.226826,0.210447,0.210447,0.316053,0.226826,0.228466,0.225548,0.210447,0.210447,0.228466,0.225548,0.262019,0.354742,0.210447,0.210447,0.262019,0.354742,0.210447,0.210447,0.210447,0.210447,0.210447,0.210447,,,,,,,0.316053,0.226826,0.228466,0.225548,0.262019,0.354742,0.210447,0.210447,0.210447,0.210447,0.116913,0.090145,0.090637,0.089761,0.100703,0.128519,0.085231,0.085231,0.045071,0.045071,23.30506,32.472606,32.239526,32.65664,28.111128,20.763397,35,35,35,35,,,,,,,,,,,7946,7946,0.210447,0.210447,0.210447,0.210447,0.210447,0.210447,0.210447,0.210447,0.085231,0.085231,35,35,, +31750,0,0.06781,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.453072,0.15,4,0.40686,0.40686,0.40686,0.40686,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,,,,,,,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.134264,0.134264,0.134264,0.134264,0.134264,0.134264,0.134264,0.134264,0.068488,0.068488,9.999996,9.999999,9.999999,9.999999,9.999999,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.40686,0.134264,0.134264,10,10,, +17942,0,0.205807,1,1,0,2,4,,3,2,Penniman,Ave,1673609,3.531,3.737,0,4.410146,6,4.5,0.374194,0.374194,0.374194,0.374194,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.500057,0.447475,0.374194,0.374194,0.500057,0.447475,0.424574,0.393241,0.374194,0.374194,0.424574,0.393241,0.465819,0.521329,0.374194,0.374194,0.465819,0.521329,0.374194,0.374194,0.374194,0.374194,0.374194,0.374194,,,,,,,0.500057,0.447475,0.424574,0.393241,0.465819,0.521329,0.374194,0.374194,0.374194,0.374194,0.187062,0.171288,0.164417,0.155018,0.176791,0.193444,0.149304,0.149304,0.078768,0.078768,24.694015,27.595744,29.084222,31.401625,26.509037,23.686414,33,33,33,33,,,,,,,,,,,2580,2580,0.374194,0.374194,0.374194,0.374194,0.374194,0.374194,0.374194,0.374194,0.149304,0.149304,33,33,, +33951,0,0.239773,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.137985,0.15,4,1.438636,1.438636,1.438636,1.438636,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,,,,,,,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,0.47475,0.47475,0.47475,0.47475,0.47475,0.47475,0.47475,0.47475,0.24217,0.24217,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,1.438636,0.47475,0.47475,10,10,, +18160,0,0.108677,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,1.849,1.958,0,2.328793,5,5,0.186303,0.186303,0.186303,0.186303,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.280076,0.202816,0.186303,0.186303,0.280076,0.202816,0.202447,0.199672,0.186303,0.186303,0.202447,0.199672,0.238367,0.316102,0.186303,0.186303,0.238367,0.316102,0.186303,0.186303,0.186303,0.186303,0.186303,0.186303,,,,,,,0.280076,0.202816,0.202447,0.199672,0.238367,0.316102,0.186303,0.186303,0.186303,0.186303,0.103585,0.080407,0.080296,0.079463,0.091072,0.114393,0.075453,0.075453,0.0399,0.0399,23.281604,32.150416,32.209094,32.65664,27.355376,20.628207,35,35,35,35,,,,,,,,,,,7946,7946,0.186303,0.186303,0.186303,0.186303,0.186303,0.186303,0.186303,0.186303,0.075453,0.075453,35,35,, +17739,0,0.112308,2,2,0,2,3,,3,2,Sheldon,Rd,5495471,2.334,2.446,0,2.406598,5,5,0.192528,0.192528,0.192528,0.192528,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.340217,0.225339,0.192528,0.192528,0.340217,0.225339,0.217104,0.214839,0.192528,0.192528,0.217104,0.214839,0.28857,0.432751,0.192528,0.192528,0.28857,0.432751,0.192528,0.192528,0.192528,0.192528,0.192528,0.192528,,,,,,,0.340217,0.225339,0.217104,0.214839,0.28857,0.432751,0.192528,0.192528,0.192528,0.192528,0.122281,0.087817,0.085347,0.084667,0.106786,0.150041,0.077974,0.077974,0.041233,0.041233,19.806384,29.903709,31.038049,31.365264,23.351303,15.571262,35,35,35,35,,,,,,,,,,,7568,7568,0.192528,0.192528,0.192528,0.192528,0.192528,0.192528,0.192528,0.192528,0.077974,0.077974,35,35,, +17729,0,0.332069,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,3.067,3.399,0,7.115773,3.7,5,0.498104,0.498104,0.498104,0.498104,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.573944,0.584336,0.498104,0.498104,0.573944,0.584336,0.52325,0.514753,0.498104,0.498104,0.52325,0.514753,0.609944,0.574018,0.498104,0.498104,0.609944,0.574018,0.498104,0.498104,0.498104,0.498104,0.498104,0.498104,,,,,,,0.573944,0.584336,0.52325,0.514753,0.609944,0.574018,0.498104,0.498104,0.498104,0.498104,0.231956,0.235073,0.216747,0.214198,0.242756,0.231978,0.209204,0.209204,0.111243,0.111243,34.714462,34.097131,38.077721,38.706289,32.665579,34.71,40,40,40,40,,,,,,,,,,,7946,7946,0.498104,0.498104,0.498104,0.498104,0.498104,0.498104,0.498104,0.498104,0.209204,0.209204,40,40,, +17730,1,0.127733,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.872,2.999,0,2.737133,3.7,5,0.170311,,0.170311,,45,,33000,,7491,,16500,,10646,,11352,,11339,,0.191099,,0.170311,,0.191099,,0.174505,,0.170311,,0.174505,,0.189869,,0.170311,,0.189869,,0.170311,,0.170311,,0.170311,,,,,,,,0.191099,,0.174505,,0.189869,,0.170311,,0.170311,,0.080322,,0.075343,,0.079953,,0.074085,,0.039597,,40.104687,,43.918434,,40.364617,,45,,45,,,,,,,,,,,,11352,,0.170311,,0.170311,,0.170311,,0.170311,,0.074085,,45,,, +19291,1,0.142633,2,0,0,1,2,ROF,3,2,M 14/Sheldon,RAMP,1778207,0.283,0.426,0,,2.24,5,0.244514,,0.244514,,35,,29500,,6697,,14750,,9517,,10148,,10136,,0.268744,,0.244514,,0.268744,,0.250248,,0.244514,,0.250248,,0.274264,,0.244514,,0.274264,,0.244514,,0.244514,,0.244514,,,,,,,,0.268744,,0.250248,,0.274264,,0.244514,,0.244514,,0.106297,,0.100748,,0.107953,,0.099028,,0.052367,,31.844415,,34.198062,,31.203482,,35,,35,,,,,,,,,,,,10148,,0.244514,,0.244514,,0.244514,,0.244514,,0.099028,,35,,, +19298,1,0.094546,2,0,0,1,2,RON,3,2,Sheldon/M 14,RAMP,4712090,0.018,0.112,0,,1.09,4,0.141819,,0.141819,,40,,29500,,6697,,14750,,9517,,10148,,10136,,0.148393,,0.141819,,0.148393,,0.144343,,0.141819,,0.144343,,0.157886,,0.141819,,0.157886,,0.141819,,0.141819,,0.141819,,,,,,,,0.148393,,0.144343,,0.157886,,0.141819,,0.141819,,0.061536,,0.060321,,0.064384,,0.059564,,0.031673,,38.228021,,39.30062,,35.929644,,40,,40,,,,,,,,,,,,10148,,0.141819,,0.141819,,0.141819,,0.141819,,0.059564,,40,,, +23200,-1,0.154046,0,3,0,2,3,DIV,4,2,Sheldon,Rd,4704692,0.398,0.552,0,3.300977,3.7,5,,0.205394,,0.205394,,45,,33000,,7491,,16500,,10646,,11352,,11339,,0.214282,,0.205394,,0.214282,,0.208222,,0.205394,,0.208222,,0.236576,,0.205394,,0.236576,,0.205394,,0.205394,,0.205394,,,,,,,,0.214282,,0.208222,,0.236576,,0.205394,,0.205394,,0.092013,,0.090195,,0.098701,,0.089346,,0.047754,,43.133526,,44.388783,,39.068702,,45,,45,,,,,,,,,,,,11352,,0.205394,,0.205394,,0.205394,,0.205394,,0.089346,,45,, +18149,1,0.109313,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.762,2.872,0,2.342425,3.7,5,0.145751,,0.145751,,45,,33000,,7491,,16500,,10646,,11352,,11339,,0.185963,,0.145751,,0.185963,,0.151663,,0.145751,,0.151663,,0.163694,,0.145751,,0.163694,,0.145751,,0.145751,,0.145751,,,,,,,,0.185963,,0.151663,,0.163694,,0.145751,,0.145751,,0.075465,,0.065175,,0.068785,,0.063402,,0.033887,,35.269354,,43.245791,,40.067345,,45,,45,,,,,,,,,,,,11352,,0.145751,,0.145751,,0.145751,,0.145751,,0.063402,,45,,, +17732,1,0.044441,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.718,2.762,0,0.952308,3.7,5,0.059255,,0.059255,,45,,33000,,7491,,16500,,10646,,11352,,11339,,0.059515,,0.059255,,0.059515,,0.059297,,0.059255,,0.059297,,0.059413,,0.059255,,0.059413,,0.059255,,0.059255,,0.059255,,,,,,,,0.059515,,0.059297,,0.059413,,0.059255,,0.059255,,0.025854,,0.025789,,0.025823,,0.025776,,0.013777,,44.80304,,44.967761,,44.880134,,45,,45,,,,,,,,,,,,11352,,0.059255,,0.059255,,0.059255,,0.059255,,0.025776,,45,,, +18146,0,0.068252,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,2.999,3.067,0,1.462545,3.7,5,0.102378,0.102378,0.102378,0.102378,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.176711,0.128729,0.102378,0.102378,0.176711,0.128729,0.117379,0.110766,0.102378,0.102378,0.117379,0.110766,0.17234,0.194868,0.102378,0.102378,0.17234,0.194868,0.102378,0.102378,0.102378,0.102378,0.102378,0.102378,,,,,,,0.176711,0.128729,0.117379,0.110766,0.17234,0.194868,0.102378,0.102378,0.102378,0.102378,0.065299,0.050904,0.047499,0.045515,0.063987,0.070746,0.042999,0.042999,0.022864,0.022864,23.174203,31.811915,34.887988,36.971038,23.761925,21.014826,40,40,40,40,,,,,,,,,,,7946,7946,0.102378,0.102378,0.102378,0.102378,0.102378,0.102378,0.102378,0.102378,0.042999,0.042999,40,40,, +16137,0,0.066815,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.603,2.67,0,1.431751,6,4.5,0.121482,0.121482,0.121482,0.121482,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.122458,0.12938,0.121482,0.121482,0.122458,0.12938,0.12154,0.125294,0.121482,0.121482,0.12154,0.125294,0.122115,0.155804,0.121482,0.121482,0.122115,0.155804,0.121482,0.121482,0.121482,0.121482,0.121482,0.121482,,,,,,,0.122458,0.12938,0.12154,0.125294,0.122115,0.155804,0.121482,0.121482,0.121482,0.121482,0.048764,0.050841,0.048489,0.049615,0.048661,0.058768,0.048471,0.048471,0.025572,0.025572,32.736896,30.985378,32.984111,31.995849,32.828788,25.73048,33,33,33,33,,,,,,,,,,,2580,2580,0.121482,0.121482,0.121482,0.121482,0.121482,0.121482,0.121482,0.121482,0.048471,0.048471,33,33,, +17692,0,0.542172,1,1,0,2,5,,3,2,Starkweather,Ave,1683903,0,0.542,0,11.617973,8,4.5,1.301213,1.301213,1.301213,1.301213,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.413154,1.317302,1.301213,1.301213,1.413154,1.317302,1.312891,1.310981,1.301213,1.301213,1.312891,1.310981,1.395341,1.538587,1.301213,1.301213,1.395341,1.538587,1.301213,1.301213,1.301213,1.301213,1.301213,1.301213,,,,,,,1.413154,1.317302,1.312891,1.310981,1.395341,1.538587,1.301213,1.301213,1.301213,1.301213,0.521537,0.492782,0.491458,0.490885,0.516193,0.559167,0.487955,0.487955,0.254821,0.254821,23.01966,24.694654,24.77762,24.813723,23.31353,21.142984,25,25,25,25,,,,,,,,,,,2408,2408,1.301213,1.301213,1.301213,1.301213,1.301213,1.301213,1.301213,1.301213,0.487955,0.487955,25,25,, +18776,1,0.075092,1,0,0,2,5,,3,2,Penniman,Ave,1673609,4.192,4.267,0,1.609111,8,4.5,0.18022,,0.18022,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.186302,,0.18022,,0.186302,,0.182629,,0.18022,,0.182629,,0.190492,,0.18022,,0.190492,,0.18022,,0.18022,,0.18022,,,,,,,,0.186302,,0.182629,,0.190492,,0.18022,,0.18022,,0.069407,,0.068305,,0.070664,,0.067583,,0.035293,,24.183968,,24.670342,,23.651984,,25,,25,,,,,,,,,,,,2408,,0.18022,,0.18022,,0.18022,,0.18022,,0.067583,,25,,, +18795,0,0.308177,2,2,0,2,4,,3,2,Main,St,1679010,1.332,1.64,0,6.603797,6,4.5,0.560322,0.560322,0.560322,0.560322,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.881489,0.601263,0.560322,0.560322,0.881489,0.601263,0.655395,0.623584,0.560322,0.560322,0.655395,0.623584,0.803077,1.011555,0.560322,0.560322,0.803077,1.011555,0.560322,0.560322,0.560322,0.560322,0.560322,0.560322,,,,,,,0.881489,0.601263,0.655395,0.623584,0.803077,1.011555,0.560322,0.560322,0.560322,0.560322,0.319919,0.235851,0.25209,0.242547,0.296395,0.358938,0.223569,0.223569,0.117948,0.117948,20.976586,30.752997,28.212947,29.652205,23.024737,18.27941,33,33,33,33,,,,,,,,,,,5160,5160,0.560322,0.560322,0.560322,0.560322,0.560322,0.560322,0.560322,0.560322,0.223569,0.223569,33,33,, +24179,0,0.406663,1,1,0,2,4,,3,2,Mill,St,4710390,6.861,7.268,0,8.714208,6,4.5,0.739387,0.739387,0.739387,0.739387,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.300127,1.119198,0.739387,0.739387,1.300127,1.119198,1.061219,0.97971,0.739387,0.739387,1.061219,0.97971,1.309003,1.485983,0.739387,0.739387,1.309003,1.485983,0.739387,0.739387,0.739387,0.739387,0.739387,0.739387,,,,,,,1.300127,1.119198,1.061219,0.97971,1.309003,1.485983,0.739387,0.739387,0.739387,0.739387,0.463238,0.408959,0.391565,0.367112,0.4659,0.518994,0.295016,0.295016,0.155641,0.155641,18.767227,21.801139,22.992225,24.905094,18.639971,16.419957,33,33,33,33,,,,,,,,,,,2580,2580,0.739387,0.739387,0.739387,0.739387,0.739387,0.739387,0.739387,0.739387,0.295016,0.295016,33,33,, +31752,0,0.185334,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.971434,0.15,4,1.112001,1.112001,1.112001,1.112001,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.112003,1.112004,1.112001,1.112001,1.112003,1.112004,1.112002,1.112003,1.112001,1.112001,1.112002,1.112003,1.112005,1.112005,1.112001,1.112001,1.112005,1.112005,1.112001,1.112001,1.112001,1.112001,1.112001,1.112001,,,,,,,1.112003,1.112004,1.112002,1.112003,1.112005,1.112005,1.112001,1.112001,1.112001,1.112001,0.366961,0.366961,0.366961,0.366961,0.366962,0.366962,0.36696,0.36696,0.187187,0.187187,9.999989,9.99998,9.99999,9.999989,9.999966,9.999967,10,10,10,10,,,,,,,,,,,34400,34400,1.112001,1.112001,1.112001,1.112001,1.112001,1.112001,1.112001,1.112001,0.36696,0.36696,10,10,, +16199,0,0.173959,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.306,2.479,0,3.727689,6,4.5,0.316289,0.316289,0.316289,0.316289,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.375547,0.317941,0.316289,0.316289,0.375547,0.317941,0.329438,0.327404,0.316289,0.316289,0.329438,0.327404,0.358472,0.400619,0.316289,0.316289,0.358472,0.400619,0.316289,0.316289,0.316289,0.316289,0.316289,0.316289,,,,,,,0.375547,0.317941,0.329438,0.327404,0.358472,0.400619,0.316289,0.316289,0.316289,0.316289,0.143977,0.126695,0.130144,0.129534,0.138854,0.151498,0.126199,0.126199,0.066579,0.066579,27.79289,32.82848,31.682883,31.879624,29.1167,26.053501,33,33,33,33,,,,,,,,,,,2580,2580,0.316289,0.316289,0.316289,0.316289,0.316289,0.316289,0.316289,0.316289,0.126199,0.126199,33,33,, +18323,0,0.169158,1,1,0,2,4,,3,2,Penniman,Ave,1673609,3.902,4.071,0,3.624822,6,4.5,0.307561,0.307561,0.307561,0.307561,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.317478,0.320042,0.307561,0.307561,0.317478,0.320042,0.309833,0.307842,0.307561,0.307561,0.309833,0.307842,0.35075,0.315559,0.307561,0.307561,0.35075,0.315559,0.307561,0.307561,0.307561,0.307561,0.307561,0.307561,,,,,,,0.317478,0.320042,0.309833,0.307842,0.35075,0.315559,0.307561,0.307561,0.307561,0.307561,0.125692,0.126461,0.123398,0.122801,0.135674,0.125116,0.122717,0.122717,0.064742,0.064742,31.969117,31.713048,32.75802,32.969862,28.936552,32.163568,33,33,33,33,,,,,,,,,,,2580,2580,0.307561,0.307561,0.307561,0.307561,0.307561,0.307561,0.307561,0.307561,0.122717,0.122717,33,33,, +33953,0,0.285296,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.113491,0.15,4,1.711778,1.711778,1.711778,1.711778,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,,,,,,,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,0.564887,0.564887,0.564887,0.564887,0.564887,0.564887,0.564887,0.564887,0.288149,0.288149,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,1.711778,0.564887,0.564887,10,10,, +16189,0,0.123895,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.479,2.603,0,2.654897,6,4.5,0.225264,0.225264,0.225264,0.225264,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.260352,0.296391,0.225264,0.225264,0.260352,0.296391,0.234629,0.266682,0.225264,0.225264,0.234629,0.266682,0.245145,0.466786,0.225264,0.225264,0.245145,0.466786,0.225264,0.225264,0.225264,0.225264,0.225264,0.225264,,,,,,,0.260352,0.296391,0.234629,0.266682,0.245145,0.466786,0.225264,0.225264,0.225264,0.225264,0.100407,0.111219,0.09269,0.102306,0.095845,0.162337,0.08988,0.08988,0.047418,0.047418,28.552533,25.080719,31.682883,27.874844,30.323696,15.925312,33,33,33,33,,,,,,,,,,,2580,2580,0.225264,0.225264,0.225264,0.225264,0.225264,0.225264,0.225264,0.225264,0.08988,0.08988,33,33,, +17936,1,0.120136,1,0,0,2,5,,3,2,Penniman,Ave,1673609,4.071,4.192,0,2.574346,8,4.5,0.288327,,0.288327,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.305259,,0.288327,,0.305259,,0.2922,,0.288327,,0.2922,,0.318037,,0.288327,,0.318037,,0.288327,,0.288327,,0.288327,,,,,,,,0.305259,,0.2922,,0.318037,,0.288327,,0.288327,,0.113202,,0.109285,,0.117036,,0.108123,,0.056464,,23.6133,,24.66858,,22.664554,,25,,25,,,,,,,,,,,,2408,,0.288327,,0.288327,,0.288327,,0.288327,,0.108123,,25,,, +18665,0,0.133671,1,1,1,2,4,,3,2,Harvey,St,1679009,1.3,1.434,0,2.864387,6,4.5,0.243039,0.243039,0.243039,0.243039,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.249466,0.243039,0.243039,0.243039,0.249466,0.243039,0.243184,0.243039,0.243039,0.243039,0.243184,0.243039,0.247162,0.24305,0.243039,0.243039,0.247162,0.24305,0.243039,0.243039,0.243039,0.243039,0.243039,0.243039,,,,,,,0.249466,0.243039,0.243184,0.243039,0.247162,0.24305,0.243039,0.243039,0.243039,0.243039,0.098901,0.096973,0.097016,0.096973,0.098209,0.096976,0.096973,0.096973,0.05116,0.05116,32.149748,33,32.980367,33,32.44952,32.998553,33,33,33,33,,,,,,,,,,,2838,2838,0.243039,0.243039,0.243039,0.243039,0.243039,0.243039,0.243039,0.243039,0.096973,0.096973,33,33,, +17262,0,0.066925,2,2,0,2,4,,3,2,Main,St,1679010,1.265,1.332,0,1.434113,6,4.5,0.121682,0.121682,0.121682,0.121682,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.165809,0.127091,0.121682,0.121682,0.165809,0.127091,0.134007,0.12948,0.121682,0.121682,0.134007,0.12948,0.15523,0.199814,0.121682,0.121682,0.15523,0.199814,0.121682,0.121682,0.121682,0.121682,0.121682,0.121682,,,,,,,0.165809,0.127091,0.134007,0.12948,0.15523,0.199814,0.121682,0.121682,0.121682,0.121682,0.061789,0.050174,0.052249,0.050891,0.058615,0.071991,0.048551,0.048551,0.025614,0.025614,24.21774,31.595599,29.964919,31.012632,25.86821,20.096227,33,33,33,33,,,,,,,,,,,5160,5160,0.121682,0.121682,0.121682,0.121682,0.121682,0.121682,0.121682,0.121682,0.048551,0.048551,33,33,, +18338,0,0.21911,2,2,0,2,4,,3,2,Main,St,1679010,1.64,1.859,0,4.695224,6,4.5,0.398383,0.398383,0.398383,0.398383,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.858292,0.537712,0.398383,0.398383,0.858292,0.537712,0.5229,0.493689,0.398383,0.398383,0.5229,0.493689,0.731177,0.957263,0.398383,0.398383,0.731177,0.957263,0.398383,0.398383,0.398383,0.398383,0.398383,0.398383,,,,,,,0.858292,0.537712,0.5229,0.493689,0.731177,0.957263,0.398383,0.398383,0.398383,0.398383,0.296927,0.200753,0.19631,0.187547,0.258793,0.326619,0.158955,0.158955,0.08386,0.08386,15.3172,24.449201,25.141774,26.629355,17.980096,13.733557,33,33,33,33,,,,,,,,,,,5160,5160,0.398383,0.398383,0.398383,0.398383,0.398383,0.398383,0.398383,0.398383,0.158955,0.158955,33,33,, +16134,0,0.171709,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.67,2.842,0,3.679471,6,4.5,0.312198,0.312198,0.312198,0.312198,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.400086,0.332496,0.312198,0.312198,0.400086,0.332496,0.328481,0.321995,0.312198,0.312198,0.328481,0.321995,0.410808,0.400401,0.312198,0.312198,0.410808,0.400401,0.312198,0.312198,0.312198,0.312198,0.312198,0.312198,,,,,,,0.400086,0.332496,0.328481,0.321995,0.410808,0.400401,0.312198,0.312198,0.312198,0.312198,0.150933,0.130656,0.129452,0.127506,0.15415,0.151028,0.124567,0.124567,0.065718,0.065718,25.750788,30.985378,31.364139,31.995849,25.078665,25.73048,33,33,33,33,,,,,,,,,,,2580,2580,0.312198,0.312198,0.312198,0.312198,0.312198,0.312198,0.312198,0.312198,0.124567,0.124567,33,33,, +24294,0,0.025313,1,1,0,2,5,,3,2,Union,St,4710584,0.266,0.291,0,0.542415,8,4.5,0.06075,0.06075,0.06075,0.06075,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.06075,0.0628,0.06075,0.06075,0.06075,0.0628,0.06075,0.061562,0.06075,0.06075,0.06075,0.061562,0.06075,0.064213,0.06075,0.06075,0.06075,0.064213,0.06075,0.06075,0.06075,0.06075,0.06075,0.06075,,,,,,,0.06075,0.0628,0.06075,0.061562,0.06075,0.064213,0.06075,0.06075,0.06075,0.06075,0.022781,0.023396,0.022781,0.023025,0.022781,0.02382,0.022781,0.022781,0.011897,0.011897,25,24.183968,25,24.670342,25,23.651984,25,25,25,25,,,,,,,,,,,2408,2408,0.06075,0.06075,0.06075,0.06075,0.06075,0.06075,0.06075,0.06075,0.022781,0.022781,25,25,, +17948,0,0.075812,2,2,0,2,4,,3,2,Main,St,1679010,1.859,1.935,0,1.62455,6,4.5,0.137841,0.137841,0.137841,0.137841,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.195916,0.161113,0.137841,0.137841,0.195916,0.161113,0.153724,0.14973,0.137841,0.137841,0.153724,0.14973,0.185909,0.205193,0.137841,0.137841,0.185909,0.205193,0.137841,0.137841,0.137841,0.137841,0.137841,0.137841,,,,,,,0.195916,0.161113,0.153724,0.14973,0.185909,0.205193,0.137841,0.137841,0.137841,0.137841,0.072421,0.06198,0.059763,0.058565,0.069419,0.075204,0.054998,0.054998,0.029015,0.029015,23.217867,28.233315,29.590364,30.379708,24.467512,22.168121,33,33,33,33,,,,,,,,,,,5160,5160,0.137841,0.137841,0.137841,0.137841,0.137841,0.137841,0.137841,0.137841,0.054998,0.054998,33,33,, +18166,0,0.126316,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,0.739,0.865,0,2.706768,5,5,0.216541,0.216541,0.216541,0.216541,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.217211,0.218094,0.216541,0.216541,0.217211,0.218094,0.216556,0.21656,0.216541,0.216541,0.216556,0.21656,0.224176,0.22026,0.216541,0.216541,0.224176,0.22026,0.216541,0.216541,0.216541,0.216541,0.216541,0.216541,,,,,,,0.217211,0.218094,0.216556,0.21656,0.224176,0.22026,0.216541,0.216541,0.216541,0.216541,0.0879,0.088165,0.087704,0.087705,0.08999,0.088815,0.087699,0.087699,0.046376,0.046376,34.892176,34.750915,34.997613,34.996965,33.80803,34.409148,35,35,35,35,,,,,,,,,,,3784,3784,0.216541,0.216541,0.216541,0.216541,0.216541,0.216541,0.216541,0.216541,0.087699,0.087699,35,35,, +19119,0,0.098363,1,1,0,2,4,,3,2,Mill,St,1680504,0,0.098,0,2.10778,6,4.5,0.178842,0.178842,0.178842,0.178842,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.181003,0.179735,0.178842,0.178842,0.181003,0.179735,0.179919,0.180335,0.178842,0.178842,0.179919,0.180335,0.181375,0.183848,0.178842,0.178842,0.181375,0.183848,0.178842,0.178842,0.178842,0.178842,0.178842,0.178842,,,,,,,0.181003,0.179735,0.179919,0.180335,0.181375,0.183848,0.178842,0.178842,0.178842,0.178842,0.072006,0.071626,0.071681,0.071806,0.072118,0.07286,0.071358,0.071358,0.037646,0.037646,32.606019,32.835979,32.802423,32.726782,32.53914,32.101394,33,33,33,33,,,,,,,,,,,2580,2580,0.178842,0.178842,0.178842,0.178842,0.178842,0.178842,0.178842,0.178842,0.071358,0.071358,33,33,, +17529,0,0.080547,1,1,0,2,4,,3,2,Northville,Rd,1679402,0,0.081,0,1.726011,6,4.5,0.146449,0.146449,0.146449,0.146449,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.203787,0.176057,0.146449,0.146449,0.203787,0.176057,0.167883,0.163038,0.146449,0.146449,0.167883,0.163038,0.22509,0.246542,0.146449,0.146449,0.22509,0.246542,0.146449,0.146449,0.146449,0.146449,0.146449,0.146449,,,,,,,0.203787,0.176057,0.167883,0.163038,0.22509,0.246542,0.146449,0.146449,0.146449,0.146449,0.075634,0.067316,0.064863,0.06341,0.082025,0.088461,0.058433,0.058433,0.030828,0.030828,23.715148,27.450371,28.786931,29.642374,21.470668,19.602453,33,33,33,33,,,,,,,,,,,2580,2580,0.146449,0.146449,0.146449,0.146449,0.146449,0.146449,0.146449,0.146449,0.058433,0.058433,33,33,, +19026,0,0.030608,1,1,0,2,4,,3,2,Wilcox,Rd,1680504,0.098,0.129,0,0.655883,6,4.5,0.055651,0.055651,0.055651,0.055651,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,,,,,,,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.022205,0.022205,0.022205,0.022205,0.022205,0.022205,0.022205,0.022205,0.011714,0.011714,33,33,33,33,33,32.999946,33,33,33,33,,,,,,,,,,,2580,2580,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.055651,0.022205,0.022205,33,33,, +19118,0,0.033357,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0,0.033,0,0.714798,6,4.5,0.06065,0.06065,0.06065,0.06065,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.068363,0.063123,0.06065,0.06065,0.068363,0.063123,0.063008,0.062454,0.06065,0.06065,0.063008,0.062454,0.064554,0.068303,0.06065,0.06065,0.064554,0.068303,0.06065,0.06065,0.06065,0.06065,0.06065,0.06065,,,,,,,0.068363,0.063123,0.063008,0.062454,0.064554,0.068303,0.06065,0.06065,0.06065,0.06065,0.026513,0.024941,0.024907,0.02474,0.025371,0.026495,0.024199,0.024199,0.012767,0.012767,29.276721,31.706833,31.764781,32.046559,31.0038,29.302433,33,33,33,33,,,,,,,,,,,2580,2580,0.06065,0.06065,0.06065,0.06065,0.06065,0.06065,0.06065,0.06065,0.024199,0.024199,33,33,, +24178,0,0.021597,1,1,0,2,4,,3,2,Mill,St,4710390,7.268,7.289,0,0.462798,6,4.5,0.039268,0.039268,0.039268,0.039268,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.039464,0.039722,0.039268,0.039268,0.039464,0.039722,0.039596,0.039504,0.039268,0.039268,0.039596,0.039504,0.039904,0.03972,0.039268,0.039268,0.039904,0.03972,0.039268,0.039268,0.039268,0.039268,0.039268,0.039268,,,,,,,0.039464,0.039722,0.039596,0.039504,0.039904,0.03972,0.039268,0.039268,0.039268,0.039268,0.015727,0.015804,0.015766,0.015739,0.015859,0.015804,0.015668,0.015668,0.008266,0.008266,32.835979,32.622447,32.726782,32.802423,32.473804,32.624112,33,33,33,33,,,,,,,,,,,2580,2580,0.039268,0.039268,0.039268,0.039268,0.039268,0.039268,0.039268,0.039268,0.015668,0.015668,33,33,, +16662,0,0.353668,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0.091,0.445,0,7.578592,6,4.5,0.643032,0.643032,0.643032,0.643032,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.858907,0.789536,0.643032,0.643032,0.858907,0.789536,0.728841,0.708669,0.643032,0.643032,0.728841,0.708669,0.852199,0.886115,0.643032,0.643032,0.852199,0.886115,0.643032,0.643032,0.643032,0.643032,0.643032,0.643032,,,,,,,0.858907,0.789536,0.728841,0.708669,0.852199,0.886115,0.643032,0.643032,0.643032,0.643032,0.321332,0.300521,0.282313,0.276261,0.31932,0.329495,0.25657,0.25657,0.135358,0.135358,24.705893,26.876612,29.114791,29.943554,24.90035,23.947303,33,33,33,33,,,,,,,,,,,2580,2580,0.643032,0.643032,0.643032,0.643032,0.643032,0.643032,0.643032,0.643032,0.25657,0.25657,33,33,, +17623,0,0.402654,1,1,0,2,3,,4,2,Northville,Rd,1679402,0.711,1.113,0,8.628304,3.7,5,0.603981,0.603981,0.603981,0.603981,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.864953,0.858715,0.603981,0.603981,0.864953,0.858715,0.642263,0.643389,0.603981,0.603981,0.642263,0.643389,1.058752,1.123055,0.603981,0.603981,1.058752,1.123055,0.603981,0.603981,0.603981,0.603981,0.603981,0.603981,,,,,,,0.864953,0.858715,0.642263,0.643389,1.058752,1.123055,0.603981,0.603981,0.603981,0.603981,0.331964,0.330092,0.265157,0.265494,0.390103,0.409394,0.253672,0.253672,0.134889,0.134889,27.931285,28.134198,37.615808,37.550017,22.818608,21.512079,40,40,40,40,,,,,,,,,,,3784,3784,0.603981,0.603981,0.603981,0.603981,0.603981,0.603981,0.603981,0.603981,0.253672,0.253672,40,40,, +18594,0,0.15521,1,1,0,2,5,GRV,3,2,Bradner,Ave,1689501,0.08,0.235,0,3.325935,7,4.5,0.931262,0.931262,0.931262,0.931262,10,10,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.933751,0.931279,0.931262,0.931262,0.933751,0.931279,0.931262,0.931262,0.931262,0.931262,0.931262,0.931262,0.935105,0.941214,0.931262,0.931262,0.935105,0.941214,0.931262,0.931262,0.931262,0.931262,0.931262,0.931262,,,,,,,0.933751,0.931279,0.931262,0.931262,0.935105,0.941214,0.931262,0.931262,0.931262,0.931262,0.308063,0.307322,0.307316,0.307316,0.308469,0.310302,0.307316,0.307316,0.156762,0.156762,9.973345,9.999814,10,10,9.958897,9.894263,10,10,10,10,,,,,,,,,,,1892,1892,0.931262,0.931262,0.931262,0.931262,0.931262,0.931262,0.931262,0.931262,0.307316,0.307316,10,10,, +31753,0,0.356391,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.636955,0.15,4,1.425565,1.425565,1.425565,1.425565,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,,,,,,,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,0.49182,0.49182,0.49182,0.49182,0.49182,0.49182,0.49182,0.49182,0.253038,0.253038,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,1.425565,0.49182,0.49182,15,15,, +17535,0,0.380799,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,3.829,4.209,0,8.159983,4.5,4.5,0.601262,0.601262,0.601262,0.601262,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.788465,0.751024,0.601262,0.601262,0.788465,0.751024,0.665818,0.640642,0.601262,0.601262,0.665818,0.640642,0.905653,0.84652,0.601262,0.601262,0.905653,0.84652,0.601262,0.601262,0.601262,0.601262,0.601262,0.601262,,,,,,,0.788465,0.751024,0.665818,0.640642,0.905653,0.84652,0.601262,0.601262,0.601262,0.601262,0.305083,0.293851,0.268289,0.260736,0.34024,0.3225,0.248922,0.248922,0.132077,0.132077,28.977782,30.422408,34.315632,35.664142,25.228154,26.990455,38,38,38,38,,,,,,,,,,,3096,3096,0.601262,0.601262,0.601262,0.601262,0.601262,0.601262,0.601262,0.601262,0.248922,0.248922,38,38,, +19034,0,0.055044,2,2,0,2,3,,4,2,Northville,Rd,1679402,1.113,1.168,0,1.179514,3.7,5,0.082566,0.082566,0.082566,0.082566,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.086912,0.086312,0.082566,0.082566,0.086912,0.086312,0.083133,0.082981,0.082566,0.082566,0.083133,0.082981,0.088681,0.088545,0.082566,0.082566,0.088681,0.088545,0.082566,0.082566,0.082566,0.082566,0.082566,0.082566,,,,,,,0.086912,0.086312,0.083133,0.082981,0.088681,0.088545,0.082566,0.082566,0.082566,0.082566,0.035982,0.035802,0.034848,0.034802,0.036512,0.036471,0.034678,0.034678,0.01844,0.01844,37.999655,38.263757,39.727067,39.800104,37.2419,37.298992,40,40,40,40,,,,,,,,,,,7568,7568,0.082566,0.082566,0.082566,0.082566,0.082566,0.082566,0.082566,0.082566,0.034678,0.034678,40,40,, +17655,0,0.185588,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0,0.186,0,3.976895,6,4.5,0.337433,0.337433,0.337433,0.337433,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.388456,0.347925,0.337433,0.337433,0.388456,0.347925,0.360483,0.357556,0.337433,0.337433,0.360483,0.357556,0.34431,0.357754,0.337433,0.337433,0.34431,0.357754,0.337433,0.337433,0.337433,0.337433,0.337433,0.337433,,,,,,,0.388456,0.347925,0.360483,0.357556,0.34431,0.357754,0.337433,0.337433,0.337433,0.337433,0.149943,0.137783,0.141551,0.140673,0.136699,0.140732,0.134636,0.134636,0.07103,0.07103,28.665521,32.004901,30.88994,31.142786,32.340946,31.125593,33,33,33,33,,,,,,,,,,,2580,2580,0.337433,0.337433,0.337433,0.337433,0.337433,0.337433,0.337433,0.337433,0.134636,0.134636,33,33,, +18459,0,0.233996,1,1,0,2,4,,3,2,Northville,Rd,1679402,0.333,0.567,0,5.014206,6,4.5,0.425448,0.425448,0.425448,0.425448,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.51841,0.456208,0.425448,0.425448,0.51841,0.456208,0.46773,0.459256,0.425448,0.425448,0.46773,0.459256,0.511974,0.556198,0.425448,0.425448,0.511974,0.556198,0.425448,0.425448,0.425448,0.425448,0.425448,0.425448,,,,,,,0.51841,0.456208,0.46773,0.459256,0.511974,0.556198,0.425448,0.425448,0.425448,0.425448,0.197642,0.178982,0.182438,0.179896,0.195712,0.208979,0.169754,0.169754,0.089557,0.089557,27.082394,30.774918,30.016818,30.570721,27.422814,25.242412,33,33,33,33,,,,,,,,,,,2580,2580,0.425448,0.425448,0.425448,0.425448,0.425448,0.425448,0.425448,0.425448,0.169754,0.169754,33,33,, +30397,0,0.200551,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.297512,0.15,4,1.203303,1.203303,1.203303,1.203303,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,,,,,,,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,0.39709,0.39709,0.39709,0.39709,0.39709,0.39709,0.39709,0.39709,0.202556,0.202556,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,1.203303,0.39709,0.39709,10,10,, +16976,0,0.091342,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0,0.091,0,1.957338,6,4.5,0.166077,0.166077,0.166077,0.166077,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.489194,0.269385,0.166077,0.166077,0.489194,0.269385,0.250022,0.228997,0.166077,0.166077,0.250022,0.228997,0.368735,0.524325,0.166077,0.166077,0.368735,0.524325,0.166077,0.166077,0.166077,0.166077,0.166077,0.166077,,,,,,,0.489194,0.269385,0.250022,0.228997,0.368735,0.524325,0.166077,0.166077,0.166077,0.166077,0.1632,0.097257,0.091448,0.085141,0.127062,0.173739,0.066265,0.066265,0.034959,0.034959,11.20321,20.344645,21.920299,23.932875,14.86311,10.452585,33,33,33,33,,,,,,,,,,,2580,2580,0.166077,0.166077,0.166077,0.166077,0.166077,0.166077,0.166077,0.166077,0.066265,0.066265,33,33,, +18045,0,0.143901,1,1,0,2,4,,3,2,Northville,Rd,1679402,0.567,0.711,0,3.083594,6,4.5,0.261638,0.261638,0.261638,0.261638,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.329594,0.384419,0.261638,0.261638,0.329594,0.384419,0.335952,0.34732,0.261638,0.261638,0.335952,0.34732,0.374541,0.335954,0.261638,0.261638,0.374541,0.335954,0.261638,0.261638,0.261638,0.261638,0.261638,0.261638,,,,,,,0.329594,0.384419,0.335952,0.34732,0.374541,0.335954,0.261638,0.261638,0.261638,0.261638,0.12478,0.141228,0.126688,0.130098,0.138264,0.126688,0.104394,0.104394,0.055075,0.055075,26.19607,22.460014,25.700293,24.859092,23.052387,25.700111,33,33,33,33,,,,,,,,,,,2580,2580,0.261638,0.261638,0.261638,0.261638,0.261638,0.261638,0.261638,0.261638,0.104394,0.104394,33,33,, +18593,0,0.079646,1,1,0,2,5,GRV,3,2,Bradner,Ave,1689501,0,0.08,0,1.7067,7,4.5,0.477876,0.477876,0.477876,0.477876,10,10,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.479153,0.477885,0.477876,0.477876,0.479153,0.477885,0.477876,0.477876,0.477876,0.477876,0.477876,0.477876,0.479848,0.482983,0.477876,0.477876,0.479848,0.482983,0.477876,0.477876,0.477876,0.477876,0.477876,0.477876,,,,,,,0.479153,0.477885,0.477876,0.477876,0.479848,0.482983,0.477876,0.477876,0.477876,0.477876,0.158082,0.157702,0.157699,0.157699,0.158291,0.159231,0.157699,0.157699,0.080442,0.080442,9.973345,9.999814,10,10,9.958897,9.894263,10,10,10,10,,,,,,,,,,,1892,1892,0.477876,0.477876,0.477876,0.477876,0.477876,0.477876,0.477876,0.477876,0.157699,0.157699,10,10,, +16088,0,0.124751,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.881,4.006,0,2.673235,6,4.5,0.22682,0.22682,0.22682,0.22682,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.318998,0.338218,0.22682,0.22682,0.318998,0.338218,0.336972,0.313335,0.22682,0.22682,0.336972,0.313335,0.489699,0.361516,0.22682,0.22682,0.489699,0.361516,0.22682,0.22682,0.22682,0.22682,0.22682,0.22682,,,,,,,0.318998,0.338218,0.336972,0.313335,0.489699,0.361516,0.22682,0.22682,0.22682,0.22682,0.118155,0.12392,0.123547,0.116456,0.169365,0.13091,0.090501,0.090501,0.047746,0.047746,23.464255,22.130894,22.2127,23.888351,15.285016,20.704627,33,33,33,33,,,,,,,,,,,2580,2580,0.22682,0.22682,0.22682,0.22682,0.22682,0.22682,0.22682,0.22682,0.090501,0.090501,33,33,, +17073,0,0.256014,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.428,5.684,0,5.486015,5,5,0.438881,0.438881,0.438881,0.438881,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.963291,0.772386,0.438881,0.438881,0.963291,0.772386,0.603081,0.603318,0.438881,0.438881,0.603081,0.603318,1.030776,1.119678,0.438881,0.438881,1.030776,1.119678,0.438881,0.438881,0.438881,0.438881,0.438881,0.438881,,,,,,,0.963291,0.772386,0.603081,0.603318,1.030776,1.119678,0.438881,0.438881,0.438881,0.438881,0.33507,0.277798,0.227007,0.227078,0.355315,0.381986,0.177747,0.177747,0.093994,0.093994,15.946217,19.887525,25.470615,25.460602,14.902219,13.718985,35,35,35,35,,,,,,,,,,,7568,7568,0.438881,0.438881,0.438881,0.438881,0.438881,0.438881,0.438881,0.438881,0.177747,0.177747,35,35,, +18530,0,0.153974,1,1,1,2,4,,3,2,Joy,Rd,1672705,4.891,5.045,0,3.299453,6,4.5,0.279954,0.279954,0.279954,0.279954,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.35316,0.441301,0.279954,0.279954,0.35316,0.441301,0.313283,0.313593,0.279954,0.279954,0.313283,0.313593,0.52503,0.484393,0.279954,0.279954,0.52503,0.484393,0.279954,0.279954,0.279954,0.279954,0.279954,0.279954,,,,,,,0.35316,0.441301,0.313283,0.313593,0.52503,0.484393,0.279954,0.279954,0.279954,0.279954,0.133663,0.160106,0.1217,0.121793,0.185224,0.173033,0.111701,0.111701,0.05893,0.05893,26.159465,20.934635,29.489226,29.460063,17.596085,19.072257,33,33,33,33,,,,,,,,,,,2838,2838,0.279954,0.279954,0.279954,0.279954,0.279954,0.279954,0.279954,0.279954,0.111701,0.111701,33,33,, +23372,0,0.275098,2,2,1,2,4,,3,2,Haggerty,Rd,4706524,9.987,10.262,0,5.894948,6,4.5,0.500177,0.500177,0.500177,0.500177,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.614363,0.525781,0.500177,0.500177,0.614363,0.525781,0.531206,0.530193,0.500177,0.500177,0.531206,0.530193,0.611746,0.728799,0.500177,0.500177,0.611746,0.728799,0.500177,0.500177,0.500177,0.500177,0.500177,0.500177,,,,,,,0.614363,0.525781,0.531206,0.530193,0.611746,0.728799,0.500177,0.500177,0.500177,0.500177,0.233826,0.207252,0.208879,0.208575,0.233041,0.268157,0.199571,0.199571,0.105287,0.105287,26.866638,31.393015,31.072416,31.1318,26.981547,22.648033,33,33,33,33,,,,,,,,,,,5418,5418,0.500177,0.500177,0.500177,0.500177,0.500177,0.500177,0.500177,0.500177,0.199571,0.199571,33,33,, +24185,0,0.222862,1,1,0,2,4,,3,2,Lilley,Rd,4710390,5.143,5.366,0,4.775611,6,4.5,0.405203,0.405203,0.405203,0.405203,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.69013,0.455241,0.405203,0.405203,0.69013,0.455241,0.470321,0.469672,0.405203,0.405203,0.470321,0.469672,0.621793,0.789641,0.405203,0.405203,0.621793,0.789641,0.405203,0.405203,0.405203,0.405203,0.405203,0.405203,,,,,,,0.69013,0.455241,0.470321,0.469672,0.621793,0.789641,0.405203,0.405203,0.405203,0.405203,0.247154,0.176687,0.181211,0.181017,0.226653,0.277007,0.161676,0.161676,0.085295,0.085295,19.37563,29.372821,28.431058,28.470288,21.50507,16.933908,33,33,33,33,,,,,,,,,,,2580,2580,0.405203,0.405203,0.405203,0.405203,0.405203,0.405203,0.405203,0.405203,0.161676,0.161676,33,33,, +31486,0,0.212093,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.544844,0.15,4,1.272556,1.272556,1.272556,1.272556,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,,,,,,,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,0.419944,0.419944,0.419944,0.419944,0.419944,0.419944,0.419944,0.419944,0.214214,0.214214,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,1.272556,0.419944,0.419944,10,10,, +31633,0,0.265137,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.681513,0.15,4,1.590824,1.590824,1.590824,1.590824,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,,,,,,,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,0.524972,0.524972,0.524972,0.524972,0.524972,0.524972,0.524972,0.524972,0.267789,0.267789,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,1.590824,0.524972,0.524972,10,10,, +31758,0,0.272458,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.838386,0.15,4,1.634748,1.634748,1.634748,1.634748,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,,,,,,,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,0.539467,0.539467,0.539467,0.539467,0.539467,0.539467,0.539467,0.539467,0.275183,0.275183,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,1.634748,0.539467,0.539467,10,10,, +33956,0,0.34506,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.39415,0.15,4,2.070362,2.070362,2.070362,2.070362,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,,,,,,,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,0.683219,0.683219,0.683219,0.683219,0.683219,0.683219,0.683219,0.683219,0.348511,0.348511,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,2.070362,0.683219,0.683219,10,10,, +18503,0,0.483976,1,1,0,2,4,,3,2,Joy,Rd,1672705,4.139,4.623,0,10.370913,6,4.5,0.879956,0.879956,0.879956,0.879956,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.187446,0.985655,0.879956,0.879956,1.187446,0.985655,0.980698,0.973429,0.879956,0.879956,0.980698,0.973429,1.246984,1.320934,0.879956,0.879956,1.246984,1.320934,0.879956,0.879956,0.879956,0.879956,0.879956,0.879956,,,,,,,1.187446,0.985655,0.980698,0.973429,1.246984,1.320934,0.879956,0.879956,0.879956,0.879956,0.443349,0.382812,0.381325,0.379144,0.461211,0.483396,0.351103,0.351103,0.185231,0.185231,24.454637,29.461186,29.610096,29.831192,23.287027,21.983355,33,33,33,33,,,,,,,,,,,2580,2580,0.879956,0.879956,0.879956,0.879956,0.879956,0.879956,0.879956,0.879956,0.351103,0.351103,33,33,, +24190,0,0.553345,1,1,0,2,4,,4,2,Lilley,Rd,4710390,4.59,5.143,0,11.857401,4.5,4.5,0.873703,0.873703,0.873703,0.873703,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.181487,1.028798,0.873703,0.873703,1.181487,1.028798,0.994409,0.998962,0.873703,0.873703,0.994409,0.998962,1.280794,1.333619,0.873703,0.873703,1.280794,1.333619,0.873703,0.873703,0.873703,0.873703,0.873703,0.873703,,,,,,,1.181487,1.028798,0.994409,0.998962,1.280794,1.333619,0.873703,0.873703,0.873703,0.873703,0.454048,0.408242,0.397925,0.399291,0.48384,0.499688,0.361713,0.361713,0.191923,0.191923,28.100794,32.271373,33.387384,33.235217,25.921985,24.895204,38,38,38,38,,,,,,,,,,,3096,3096,0.873703,0.873703,0.873703,0.873703,0.873703,0.873703,0.873703,0.873703,0.361713,0.361713,38,38,, +31490,0,0.256164,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.489232,0.15,4,1.024657,1.024657,1.024657,1.024657,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,,,,,,,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,0.353507,0.353507,0.353507,0.353507,0.353507,0.353507,0.353507,0.353507,0.181877,0.181877,14.999999,14.999996,14.999996,14.999996,14.999995,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,1.024657,0.353507,0.353507,15,15,, +31491,0,0.528783,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.331058,0.15,4,2.115131,2.115131,2.115131,2.115131,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,,,,,,,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,0.72972,0.72972,0.72972,0.72972,0.72972,0.72972,0.72972,0.72972,0.375436,0.375436,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,2.115131,0.72972,0.72972,15,15,, +33757,0,0.508575,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.898036,0.15,4,2.0343,2.0343,2.0343,2.0343,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,,,,,,,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,0.701834,0.701834,0.701834,0.701834,0.701834,0.701834,0.701834,0.701834,0.361088,0.361088,15,14.999999,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,2.0343,0.701834,0.701834,15,15,, +24076,0,0.279054,1,1,0,2,4,,4,2,Warren,Rd,4710470,4.477,4.756,0,5.979739,4.5,4.5,0.440612,0.440612,0.440612,0.440612,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.536019,0.47348,0.440612,0.440612,0.536019,0.47348,0.450786,0.446177,0.440612,0.440612,0.450786,0.446177,0.511613,0.507625,0.440612,0.440612,0.511613,0.507625,0.440612,0.440612,0.440612,0.440612,0.440612,0.440612,,,,,,,0.536019,0.47348,0.450786,0.446177,0.511613,0.507625,0.440612,0.440612,0.440612,0.440612,0.211035,0.192274,0.185466,0.184083,0.203714,0.202517,0.182414,0.182414,0.096788,0.096788,31.236341,35.362135,37.142369,37.526074,32.72644,32.983542,38,38,38,38,,,,,,,,,,,3096,3096,0.440612,0.440612,0.440612,0.440612,0.440612,0.440612,0.440612,0.440612,0.182414,0.182414,38,38,, +24191,0,0.462371,1,1,0,2,4,,4,2,Lilley,Rd,4710390,4.128,4.59,0,9.907946,4.5,4.5,0.730059,0.730059,0.730059,0.730059,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.252915,0.772294,0.730059,0.730059,1.252915,0.772294,0.850219,0.840578,0.730059,0.730059,0.850219,0.840578,0.921906,1.344822,0.730059,0.730059,0.921906,1.344822,0.730059,0.730059,0.730059,0.730059,0.730059,0.730059,,,,,,,1.252915,0.772294,0.850219,0.840578,0.921906,1.344822,0.730059,0.730059,0.730059,0.730059,0.459101,0.314915,0.338292,0.3354,0.359799,0.486673,0.302244,0.302244,0.16037,0.16037,22.142162,35.921885,32.629536,33.00378,30.092279,20.628933,38,38,38,38,,,,,,,,,,,3096,3096,0.730059,0.730059,0.730059,0.730059,0.730059,0.730059,0.730059,0.730059,0.302244,0.302244,38,38,, +18095,0,0.223092,1,1,0,2,4,,3,2,Joy,Rd,1672705,4.623,4.846,0,4.78054,6,4.5,0.405622,0.405622,0.405622,0.405622,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.529824,0.499923,0.405622,0.405622,0.529824,0.499923,0.447472,0.441323,0.405622,0.405622,0.447472,0.441323,0.555323,0.599135,0.405622,0.405622,0.555323,0.599135,0.405622,0.405622,0.405622,0.405622,0.405622,0.405622,,,,,,,0.529824,0.499923,0.447472,0.441323,0.555323,0.599135,0.405622,0.405622,0.405622,0.405622,0.199104,0.190134,0.174398,0.172554,0.206754,0.219897,0.161843,0.161843,0.085383,0.085383,25.26405,26.775121,29.913603,30.330398,24.104001,22.341399,33,33,33,33,,,,,,,,,,,2580,2580,0.405622,0.405622,0.405622,0.405622,0.405622,0.405622,0.405622,0.405622,0.161843,0.161843,33,33,, +23556,0,0.46627,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,9.521,9.987,0,9.991507,4.5,4.5,0.736216,0.736216,0.736216,0.736216,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.974286,0.811332,0.736216,0.736216,0.974286,0.811332,0.807749,0.813872,0.736216,0.736216,0.807749,0.813872,1.007932,1.279991,0.736216,0.736216,1.007932,1.279991,0.736216,0.736216,0.736216,0.736216,0.736216,0.736216,,,,,,,0.974286,0.811332,0.807749,0.813872,1.007932,1.279991,0.736216,0.736216,0.736216,0.736216,0.376215,0.327328,0.326253,0.32809,0.386308,0.467926,0.304794,0.304794,0.161722,0.161722,28.714574,34.481823,34.634796,34.374217,27.756054,21.856568,38,38,38,38,,,,,,,,,,,3096,3096,0.736216,0.736216,0.736216,0.736216,0.736216,0.736216,0.736216,0.736216,0.304794,0.304794,38,38,, +19005,0,0.044967,1,1,1,2,4,,3,2,Joy,Rd,1672705,4.846,4.891,0,0.963588,6,4.5,0.081759,0.081759,0.081759,0.081759,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.098074,0.094146,0.081759,0.081759,0.098074,0.094146,0.087253,0.086445,0.081759,0.081759,0.087253,0.086445,0.101443,0.107203,0.081759,0.081759,0.101443,0.107203,0.081759,0.081759,0.081759,0.081759,0.081759,0.081759,,,,,,,0.098074,0.094146,0.087253,0.086445,0.101443,0.107203,0.081759,0.081759,0.081759,0.081759,0.037516,0.036338,0.03427,0.034028,0.038527,0.040255,0.032622,0.032622,0.01721,0.01721,27.510265,28.657988,30.922278,31.211005,26.596739,25.167545,33,33,33,33,,,,,,,,,,,2838,2838,0.081759,0.081759,0.081759,0.081759,0.081759,0.081759,0.081759,0.081759,0.032622,0.032622,33,33,, +16098,0,0.217452,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.337,3.555,0,4.65968,6,4.5,0.395367,0.395367,0.395367,0.395367,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.423541,0.474088,0.395367,0.395367,0.423541,0.474088,0.421424,0.416338,0.395367,0.395367,0.421424,0.416338,0.492264,0.438116,0.395367,0.395367,0.492264,0.438116,0.395367,0.395367,0.395367,0.395367,0.395367,0.395367,,,,,,,0.423541,0.474088,0.421424,0.416338,0.492264,0.438116,0.395367,0.395367,0.395367,0.395367,0.166204,0.181368,0.165568,0.164043,0.186821,0.170576,0.157751,0.157751,0.083225,0.083225,30.804813,27.520438,30.959588,31.337806,26.504275,29.780035,33,33,33,33,,,,,,,,,,,2580,2580,0.395367,0.395367,0.395367,0.395367,0.395367,0.395367,0.395367,0.395367,0.157751,0.157751,33,33,, +17123,0,0.455073,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.973,5.428,0,9.751554,5,5,0.780124,0.780124,0.780124,0.780124,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.909585,0.90763,0.780124,0.780124,0.909585,0.90763,0.837103,0.837628,0.780124,0.780124,0.837103,0.837628,1.059401,1.014433,0.780124,0.780124,1.059401,1.014433,0.780124,0.780124,0.780124,0.780124,0.780124,0.780124,,,,,,,0.909585,0.90763,0.837103,0.837628,1.059401,1.014433,0.780124,0.780124,0.780124,0.780124,0.354788,0.354202,0.333044,0.333202,0.399733,0.386243,0.31595,0.31595,0.167077,0.167077,30.018486,30.083129,32.617656,32.597219,25.773383,26.915883,35,35,35,35,,,,,,,,,,,7568,7568,0.780124,0.780124,0.780124,0.780124,0.780124,0.780124,0.780124,0.780124,0.31595,0.31595,35,35,, +22980,0,0.230692,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.486,10.717,0,4.943409,6,4.5,0.419441,0.419441,0.419441,0.419441,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.820858,0.555723,0.419441,0.419441,0.820858,0.555723,0.585137,0.56744,0.419441,0.419441,0.585137,0.56744,0.758575,1.001561,0.419441,0.419441,0.758575,1.001561,0.419441,0.419441,0.419441,0.419441,0.419441,0.419441,,,,,,,0.820858,0.555723,0.585137,0.56744,0.758575,1.001561,0.419441,0.419441,0.419441,0.419441,0.287782,0.208241,0.217066,0.211757,0.269097,0.341993,0.167357,0.167357,0.088292,0.088292,16.862288,24.907282,23.655212,24.392951,18.246763,13.819966,33,33,33,33,,,,,,,,,,,2580,2580,0.419441,0.419441,0.419441,0.419441,0.419441,0.419441,0.419441,0.419441,0.167357,0.167357,33,33,, +24182,0,0.326959,1,1,0,2,4,,3,2,Mill,St,4710390,5.643,5.969,0,7.006261,6,4.5,0.594471,0.594471,0.594471,0.594471,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.0321,0.699416,0.594471,0.594471,1.0321,0.699416,0.784216,0.770491,0.594471,0.594471,0.784216,0.770491,0.844246,1.085806,0.594471,0.594471,0.844246,1.085806,0.594471,0.594471,0.594471,0.594471,0.594471,0.594471,,,,,,,1.0321,0.699416,0.784216,0.770491,0.844246,1.085806,0.594471,0.594471,0.594471,0.594471,0.368483,0.268677,0.294117,0.29,0.312126,0.384594,0.237194,0.237194,0.125136,0.125136,19.007397,28.048446,25.015476,25.461069,23.236739,18.067248,33,33,33,33,,,,,,,,,,,2580,2580,0.594471,0.594471,0.594471,0.594471,0.594471,0.594471,0.594471,0.594471,0.237194,0.237194,33,33,, +30406,0,0.417906,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.955122,0.15,4,2.507434,2.507434,2.507434,2.507434,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,,,,,,,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,0.827453,0.827453,0.827453,0.827453,0.827453,0.827453,0.827453,0.827453,0.422085,0.422085,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,2.507434,0.827453,0.827453,10,10,, +30410,0,0.383407,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.215864,0.15,4,2.300442,2.300442,2.300442,2.300442,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,,,,,,,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,0.759146,0.759146,0.759146,0.759146,0.759146,0.759146,0.759146,0.759146,0.387241,0.387241,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,2.300442,0.759146,0.759146,10,10,, +31760,0,0.377243,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.083769,0.15,4,2.263455,2.263455,2.263455,2.263455,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,,,,,,,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,0.74694,0.74694,0.74694,0.74694,0.74694,0.74694,0.74694,0.74694,0.381015,0.381015,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,2.263455,0.74694,0.74694,10,10,, +17138,0,0.297628,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.676,4.973,0,6.377751,5,5,0.51022,0.51022,0.51022,0.51022,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.612199,0.565097,0.51022,0.51022,0.612199,0.565097,0.542821,0.539659,0.51022,0.51022,0.542821,0.539659,0.641814,0.669327,0.51022,0.51022,0.641814,0.669327,0.51022,0.51022,0.51022,0.51022,0.51022,0.51022,,,,,,,0.612199,0.565097,0.542821,0.539659,0.641814,0.669327,0.51022,0.51022,0.51022,0.51022,0.237233,0.223102,0.216419,0.215471,0.246117,0.254371,0.206639,0.206639,0.109272,0.109272,29.169774,31.601155,32.897951,33.090747,27.823783,26.680082,35,35,35,35,,,,,,,,,,,7568,7568,0.51022,0.51022,0.51022,0.51022,0.51022,0.51022,0.51022,0.51022,0.206639,0.206639,35,35,, +24183,0,0.276762,1,1,0,2,4,,3,2,Lilley,Rd,4710390,5.366,5.643,0,5.930609,6,4.5,0.503203,0.503203,0.503203,0.503203,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.796829,0.558715,0.503203,0.503203,0.796829,0.558715,0.577991,0.581497,0.503203,0.503203,0.577991,0.581497,0.673126,0.921015,0.503203,0.503203,0.673126,0.921015,0.503203,0.503203,0.503203,0.503203,0.503203,0.503203,,,,,,,0.796829,0.558715,0.577991,0.581497,0.673126,0.921015,0.503203,0.503203,0.503203,0.503203,0.288866,0.217432,0.223214,0.224266,0.251755,0.326122,0.200778,0.200778,0.105924,0.105924,20.839726,29.721223,28.730062,28.556803,24.669535,18.029778,33,33,33,33,,,,,,,,,,,2580,2580,0.503203,0.503203,0.503203,0.503203,0.503203,0.503203,0.503203,0.503203,0.200778,0.200778,33,33,, +31484,0,0.377735,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.094325,0.15,4,2.266411,2.266411,2.266411,2.266411,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,,,,,,,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,0.747916,0.747916,0.747916,0.747916,0.747916,0.747916,0.747916,0.747916,0.381513,0.381513,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,2.266411,0.747916,0.747916,10,10,, +31756,0,0.261958,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.613387,0.15,4,1.571748,1.571748,1.571748,1.571748,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,1.571749,1.571748,1.571748,1.571748,1.571749,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,,,,,,,1.571748,1.571748,1.571748,1.571748,1.571749,1.571748,1.571748,1.571748,1.571748,1.571748,0.518677,0.518677,0.518677,0.518677,0.518677,0.518677,0.518677,0.518677,0.264578,0.264578,10,9.999999,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,1.571748,0.518677,0.518677,10,10,, +16118,0,0.125858,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.212,3.337,0,2.696961,6,4.5,0.228833,0.228833,0.228833,0.228833,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.307717,0.264059,0.228833,0.228833,0.307717,0.264059,0.24317,0.238951,0.228833,0.228833,0.24317,0.238951,0.330557,0.371245,0.228833,0.228833,0.330557,0.371245,0.228833,0.228833,0.228833,0.228833,0.228833,0.228833,,,,,,,0.307717,0.264059,0.24317,0.238951,0.330557,0.371245,0.228833,0.228833,0.228833,0.228833,0.114969,0.101872,0.095606,0.09434,0.121821,0.134028,0.091304,0.091304,0.048169,0.048169,24.540411,28.59779,31.054328,31.602632,22.844772,20.341004,33,33,33,33,,,,,,,,,,,2580,2580,0.228833,0.228833,0.228833,0.228833,0.228833,0.228833,0.228833,0.228833,0.091304,0.091304,33,33,, +23126,0,0.224083,2,2,1,2,4,,3,2,Haggerty,Rd,4706524,10.262,10.486,0,4.801776,6,4.5,0.407423,0.407423,0.407423,0.407423,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.527272,0.430674,0.407423,0.407423,0.527272,0.430674,0.433114,0.430869,0.407423,0.407423,0.433114,0.430869,0.509357,0.637475,0.407423,0.407423,0.509357,0.637475,0.407423,0.407423,0.407423,0.407423,0.407423,0.407423,,,,,,,0.527272,0.430674,0.433114,0.430869,0.509357,0.637475,0.407423,0.407423,0.407423,0.407423,0.198516,0.169537,0.170269,0.169596,0.193142,0.231578,0.162562,0.162562,0.085763,0.085763,25.499137,31.218475,31.042571,31.204312,26.395996,21.090968,33,33,33,33,,,,,,,,,,,5418,5418,0.407423,0.407423,0.407423,0.407423,0.407423,0.407423,0.407423,0.407423,0.162562,0.162562,33,33,, +16095,0,0.326649,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.555,3.881,0,6.999628,6,4.5,0.593908,0.593908,0.593908,0.593908,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.656868,0.695145,0.593908,0.593908,0.656868,0.695145,0.648622,0.640076,0.593908,0.593908,0.648622,0.640076,0.752522,0.679635,0.593908,0.593908,0.752522,0.679635,0.593908,0.593908,0.593908,0.593908,0.593908,0.593908,,,,,,,0.656868,0.695145,0.648622,0.640076,0.752522,0.679635,0.593908,0.593908,0.593908,0.593908,0.255857,0.26734,0.253383,0.25082,0.284554,0.262687,0.236969,0.236969,0.125018,0.125018,29.836982,28.194047,30.216299,30.619745,26.044352,28.837475,33,33,33,33,,,,,,,,,,,2580,2580,0.593908,0.593908,0.593908,0.593908,0.593908,0.593908,0.593908,0.593908,0.236969,0.236969,33,33,, +22630,0,0.203853,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.785,10.989,0,4.368281,6,4.5,0.370642,0.370642,0.370642,0.370642,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.608296,0.439314,0.370642,0.370642,0.608296,0.439314,0.459908,0.447849,0.370642,0.370642,0.459908,0.447849,0.499703,0.647147,0.370642,0.370642,0.499703,0.647147,0.370642,0.370642,0.370642,0.370642,0.370642,0.370642,,,,,,,0.608296,0.439314,0.459908,0.447849,0.499703,0.647147,0.370642,0.370642,0.370642,0.370642,0.219182,0.168488,0.174666,0.171048,0.186605,0.230838,0.147886,0.147886,0.07802,0.07802,20.107294,27.841538,26.594881,27.310962,24.476898,18.900162,33,33,33,33,,,,,,,,,,,2580,2580,0.370642,0.370642,0.370642,0.370642,0.370642,0.370642,0.370642,0.370642,0.147886,0.147886,33,33,, +30408,0,0.137101,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.937884,0.15,4,0.822607,0.822607,0.822607,0.822607,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,,,,,,,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.27146,0.27146,0.27146,0.27146,0.27146,0.27146,0.27146,0.27146,0.138472,0.138472,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.822607,0.27146,0.27146,10,10,, +30411,0,0.343546,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.361693,0.15,4,2.061274,2.061274,2.061274,2.061274,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,,,,,,,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,0.68022,0.68022,0.68022,0.68022,0.68022,0.68022,0.68022,0.68022,0.346981,0.346981,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,2.061274,0.68022,0.68022,10,10,, +22778,0,0.068785,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.717,10.785,0,1.473958,6,4.5,0.125063,0.125063,0.125063,0.125063,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.244752,0.165698,0.125063,0.125063,0.244752,0.165698,0.174468,0.169192,0.125063,0.125063,0.174468,0.169192,0.199154,0.272,0.125063,0.125063,0.199154,0.272,0.125063,0.125063,0.125063,0.125063,0.125063,0.125063,,,,,,,0.244752,0.165698,0.174468,0.169192,0.199154,0.272,0.125063,0.125063,0.125063,0.125063,0.085807,0.062091,0.064722,0.063139,0.072127,0.093981,0.0499,0.0499,0.026326,0.026326,16.862288,24.907282,23.655212,24.392951,20.723091,15.173094,33,33,33,33,,,,,,,,,,,2580,2580,0.125063,0.125063,0.125063,0.125063,0.125063,0.125063,0.125063,0.125063,0.0499,0.0499,33,33,, +18413,0,0.324372,1,1,1,2,4,,3,2,Joy,Rd,1672705,5.045,5.369,0,6.950822,6,4.5,0.589767,0.589767,0.589767,0.589767,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.707027,1.026424,0.589767,0.589767,0.707027,1.026424,0.697526,0.700118,0.589767,0.589767,0.697526,0.700118,1.331002,0.974442,0.589767,0.589767,1.331002,0.974442,0.589767,0.589767,0.589767,0.589767,0.589767,0.589767,,,,,,,0.707027,1.026424,0.697526,0.700118,1.331002,0.974442,0.589767,0.589767,0.589767,0.589767,0.270495,0.366314,0.267645,0.268422,0.457687,0.350719,0.235317,0.235317,0.124146,0.124146,27.526951,18.961274,27.901911,27.798603,14.622298,19.972771,33,33,33,33,,,,,,,,,,,2838,2838,0.589767,0.589767,0.589767,0.589767,0.589767,0.589767,0.589767,0.589767,0.235317,0.235317,33,33,, +31488,0,0.792522,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.982613,0.15,4,3.170088,3.170088,3.170088,3.170088,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,,,,,,,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,1.09368,1.09368,1.09368,1.09368,1.09368,1.09368,1.09368,1.09368,0.562691,0.562691,14.999998,15,15,15,15,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,3.170088,1.09368,1.09368,15,15,, +17999,0,0.121209,1,1,1,2,4,,3,2,Joy,Rd,1672705,5.369,5.49,0,2.597333,6,4.5,0.22038,0.22038,0.22038,0.22038,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.296094,0.264234,0.22038,0.22038,0.296094,0.264234,0.247762,0.24781,0.22038,0.22038,0.247762,0.24781,0.327233,0.374623,0.22038,0.22038,0.327233,0.374623,0.22038,0.22038,0.22038,0.22038,0.22038,0.22038,,,,,,,0.296094,0.264234,0.247762,0.24781,0.327233,0.374623,0.22038,0.22038,0.22038,0.22038,0.110646,0.101088,0.096146,0.096161,0.119987,0.134205,0.087932,0.087932,0.04639,0.04639,24.561575,27.523095,29.35286,29.347224,22.22433,19.412913,33,33,33,33,,,,,,,,,,,2838,2838,0.22038,0.22038,0.22038,0.22038,0.22038,0.22038,0.22038,0.22038,0.087932,0.087932,33,33,, +16075,1,0.365501,1,0,0,1,1,ROF,3,2,N I 275/Ann Arbor,RAMP,1604408,0,0.365,0,,2.24,5,0.626573,,0.626573,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.912145,,0.626573,,0.912145,,0.698524,,0.626573,,0.698524,,0.953141,,0.626573,,0.953141,,0.626573,,0.626573,,0.626573,,,,,,,,0.912145,,0.698524,,0.953141,,0.626573,,0.626573,,0.339434,,0.275347,,0.351732,,0.253762,,0.134191,,24.042268,,31.394811,,23.008184,,35,,35,,,,,,,,,,,,5074,,0.626573,,0.626573,,0.626573,,0.626573,,0.253762,,35,,, +16144,1,0.223239,1,0,0,1,1,RON,3,2,E Ann Arbor/N I 275,RAMP,1604406,0,0.223,0,,1.09,4,0.334858,,0.334858,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.410634,,0.334858,,0.410634,,0.376435,,0.334858,,0.376435,,0.403724,,0.334858,,0.403724,,0.334858,,0.334858,,0.334858,,,,,,,,0.410634,,0.376435,,0.403724,,0.334858,,0.334858,,0.163373,,0.153113,,0.1613,,0.14064,,0.074785,,32.618597,,35.582012,,33.176887,,40,,40,,,,,,,,,,,,5074,,0.334858,,0.334858,,0.334858,,0.334858,,0.14064,,40,,, +16177,-1,0.288219,0,3,0,1,1,,3,2,S I 275,,1607610,19.962,20.25,0,,0.58,7,,0.266048,,0.266048,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.267407,,0.266048,,0.267407,,0.266458,,0.266048,,0.266458,,0.287864,,0.266048,,0.287864,,0.266048,,0.266048,,0.266048,,,,,,,,0.267407,,0.266458,,0.287864,,0.266048,,0.266048,,0.132102,,0.131817,,0.138239,,0.131694,,0.071611,,64.669611,,64.899989,,60.073879,,65,,65,,,,,,,,,,,,22704,,0.266048,,0.266048,,0.266048,,0.266048,,0.131694,,65,, +16178,1,0.330245,1,0,0,1,1,RON,3,2,W Ann Arbor/N I 275,RAMP,1604407,0,0.33,0,,1.09,4,0.495367,,0.495367,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.504158,,0.495367,,0.504158,,0.498457,,0.495367,,0.498457,,0.503108,,0.495367,,0.503108,,0.495367,,0.495367,,0.495367,,,,,,,,0.504158,,0.498457,,0.503108,,0.495367,,0.495367,,0.210691,,0.208981,,0.210376,,0.208054,,0.110632,,39.302574,,39.752096,,39.384606,,40,,40,,,,,,,,,,,,5074,,0.495367,,0.495367,,0.495367,,0.495367,,0.208054,,40,,, +16243,1,0.378357,1,0,0,1,1,ROF,3,2,S I 275/Ann Arbor,RAMP,1604402,0,0.378,0,,2.24,5,0.648613,,0.648613,,35,,14750,,3348,,7375,,4758,,5074,,5068,,1.012361,,0.648613,,1.012361,,0.911996,,0.648613,,0.911996,,1.859058,,0.648613,,1.859058,,0.648613,,0.648613,,0.648613,,,,,,,,1.012361,,0.911996,,1.859058,,0.648613,,0.648613,,0.371813,,0.341703,,0.625822,,0.262688,,0.138911,,22.424259,,24.892046,,12.211262,,35,,35,,,,,,,,,,,,5074,,0.648613,,0.648613,,0.648613,,0.648613,,0.262688,,35,,, +16679,0,0.242637,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.27,4.512,0,5.199367,6,4.5,0.441158,0.441158,0.441158,0.441158,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.557125,0.525578,0.441158,0.441158,0.557125,0.525578,0.478433,0.47101,0.441158,0.441158,0.478433,0.47101,0.735473,0.594355,0.441158,0.441158,0.735473,0.594355,0.441158,0.441158,0.441158,0.441158,0.441158,0.441158,,,,,,,0.557125,0.525578,0.478433,0.47101,0.735473,0.594355,0.441158,0.441158,0.441158,0.441158,0.210812,0.201348,0.187205,0.184978,0.264317,0.221981,0.176022,0.176022,0.092864,0.092864,26.130995,27.699448,30.428967,30.908533,19.794364,24.494143,33,33,33,33,,,,,,,,,,,2580,2580,0.441158,0.441158,0.441158,0.441158,0.441158,0.441158,0.441158,0.441158,0.176022,0.176022,33,33,, +16754,1,0.350864,3,0,0,1,1,,3,2,N I 275,,1607208,19.849,20.2,0,,0.58,7,0.323874,,0.323874,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.447504,,0.323874,,0.447504,,0.329091,,0.323874,,0.329091,,0.354003,,0.323874,,0.354003,,0.323874,,0.323874,,0.323874,,,,,,,,0.447504,,0.329091,,0.354003,,0.323874,,0.323874,,0.197407,,0.161883,,0.169356,,0.160318,,0.087176,,47.042806,,63.969635,,59.467968,,65,,65,,,,,,,,,,,,22704,,0.323874,,0.323874,,0.323874,,0.323874,,0.160318,,65,,, +16957,1,0.242652,1,0,0,1,1,RON,3,2,W Ann Arbor/S I 275,RAMP,1604404,0,0.243,0,,1.09,4,0.363978,,0.363978,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.365909,,0.363978,,0.365909,,0.365709,,0.363978,,0.365709,,0.370596,,0.363978,,0.370596,,0.363978,,0.363978,,0.363978,,,,,,,,0.365909,,0.365709,,0.370596,,0.363978,,0.363978,,0.15345,,0.15339,,0.154856,,0.152871,,0.081289,,39.788945,,39.810676,,39.285721,,40,,40,,,,,,,,,,,,5074,,0.363978,,0.363978,,0.363978,,0.363978,,0.152871,,40,,, +17061,0,0.120707,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.82,5.941,0,2.586569,5,5,0.206926,0.206926,0.206926,0.206926,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.341813,0.230287,0.206926,0.206926,0.341813,0.230287,0.276979,0.222629,0.206926,0.206926,0.276979,0.222629,0.411848,0.300462,0.206926,0.206926,0.411848,0.300462,0.206926,0.206926,0.206926,0.206926,0.206926,0.206926,,,,,,,0.341813,0.230287,0.276979,0.222629,0.411848,0.300462,0.206926,0.206926,0.206926,0.206926,0.124271,0.090813,0.104821,0.088516,0.145282,0.111866,0.083805,0.083805,0.044317,0.044317,21.188149,31.44939,26.14778,32.531252,17.585096,24.104201,35,35,35,35,,,,,,,,,,,7568,7568,0.206926,0.206926,0.206926,0.206926,0.206926,0.206926,0.206926,0.206926,0.083805,0.083805,35,35,, +31744,0,0.178916,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.833919,0.15,4,1.073497,1.073497,1.073497,1.073497,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,,,,,,,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,0.354254,0.354254,0.354254,0.354254,0.354254,0.354254,0.354254,0.354254,0.180705,0.180705,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,1.073497,0.354254,0.354254,10,10,, +16432,-1,0.407434,0,3,0,1,1,,3,2,S I 275,,1607610,19.554,19.962,0,,0.58,7,,0.376093,,0.376093,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.380236,,0.376093,,0.380236,,0.37749,,0.376093,,0.37749,,0.438603,,0.376093,,0.438603,,0.376093,,0.376093,,0.376093,,,,,,,,0.380236,,0.37749,,0.438603,,0.376093,,0.376093,,0.187409,,0.186585,,0.204919,,0.186166,,0.101232,,64.29167,,64.759327,,55.736048,,65,,65,,,,,,,,,,,,22704,,0.376093,,0.376093,,0.376093,,0.376093,,0.186166,,65,, +16486,1,0.274377,3,0,0,1,1,,3,2,N I 275,,1607208,19.575,19.849,0,,0.58,7,0.253271,,0.253271,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.281768,,0.253271,,0.281768,,0.254009,,0.253271,,0.254009,,0.258601,,0.253271,,0.258601,,0.253271,,0.253271,,0.253271,,,,,,,,0.281768,,0.254009,,0.258601,,0.253271,,0.253271,,0.133918,,0.125591,,0.126968,,0.125369,,0.068172,,58.426087,,64.811025,,63.660225,,65,,65,,,,,,,,,,,,22704,,0.253271,,0.253271,,0.253271,,0.253271,,0.125369,,65,,, +16550,1,0.375592,1,0,0,1,1,RON,3,2,E Ann Arbor/S I 275,RAMP,1604403,0,0.376,0,,1.09,4,0.563388,,0.563388,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.567717,,0.563388,,0.567717,,0.564831,,0.563388,,0.564831,,0.577405,,0.563388,,0.577405,,0.563388,,0.563388,,0.563388,,,,,,,,0.567717,,0.564831,,0.577405,,0.563388,,0.563388,,0.237922,,0.237056,,0.240828,,0.236623,,0.125823,,39.695005,,39.897808,,39.028967,,40,,40,,,,,,,,,,,,5074,,0.563388,,0.563388,,0.563388,,0.563388,,0.236623,,40,,, +17068,0,0.071795,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.684,5.756,0,1.538459,5,5,0.123077,0.123077,0.123077,0.123077,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.317977,0.254788,0.123077,0.123077,0.317977,0.254788,0.200769,0.204167,0.123077,0.123077,0.200769,0.204167,0.38849,0.457241,0.123077,0.123077,0.38849,0.457241,0.123077,0.123077,0.123077,0.123077,0.123077,0.123077,,,,,,,0.317977,0.254788,0.200769,0.204167,0.38849,0.457241,0.123077,0.123077,0.123077,0.123077,0.108316,0.089359,0.073154,0.074173,0.12947,0.150095,0.049846,0.049846,0.026359,0.026359,13.547174,16.906932,21.455901,21.098794,11.088267,9.421032,35,35,35,35,,,,,,,,,,,7568,7568,0.123077,0.123077,0.123077,0.123077,0.123077,0.123077,0.123077,0.123077,0.049846,0.049846,35,35,, +31759,0,0.243295,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.213462,0.15,4,1.459769,1.459769,1.459769,1.459769,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,,,,,,,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,0.481724,0.481724,0.481724,0.481724,0.481724,0.481724,0.481724,0.481724,0.245728,0.245728,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,1.459769,0.481724,0.481724,10,10,, +17067,0,0.064777,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.756,5.82,0,1.388079,5,5,0.111046,0.111046,0.111046,0.111046,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.183434,0.112214,0.111046,0.111046,0.183434,0.112214,0.148641,0.111712,0.111046,0.111046,0.148641,0.111712,0.221018,0.115298,0.111046,0.111046,0.221018,0.115298,0.111046,0.111046,0.111046,0.111046,0.111046,0.111046,,,,,,,0.183434,0.112214,0.148641,0.111712,0.221018,0.115298,0.111046,0.111046,0.111046,0.111046,0.06669,0.045324,0.056252,0.045173,0.077965,0.046249,0.044974,0.044974,0.023782,0.023782,21.188149,34.635697,26.14778,34.791549,17.585096,33.709226,35,35,35,35,,,,,,,,,,,7568,7568,0.111046,0.111046,0.111046,0.111046,0.111046,0.111046,0.111046,0.111046,0.044974,0.044974,35,35,, +16074,0,0.141751,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.128,4.27,0,3.037513,6,4.5,0.257728,0.257728,0.257728,0.257728,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.325477,0.307047,0.257728,0.257728,0.325477,0.307047,0.279505,0.275168,0.257728,0.257728,0.279505,0.275168,0.42967,0.347227,0.257728,0.257728,0.42967,0.347227,0.257728,0.257728,0.257728,0.257728,0.257728,0.257728,,,,,,,0.325477,0.307047,0.279505,0.275168,0.42967,0.347227,0.257728,0.257728,0.257728,0.257728,0.123158,0.117629,0.109366,0.108065,0.154416,0.129683,0.102834,0.102834,0.054252,0.054252,26.130995,27.699448,30.428967,30.908533,19.794364,24.494143,33,33,33,33,,,,,,,,,,,2580,2580,0.257728,0.257728,0.257728,0.257728,0.257728,0.257728,0.257728,0.257728,0.102834,0.102834,33,33,, +30409,0,0.236919,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.076844,0.15,4,1.421516,1.421516,1.421516,1.421516,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,,,,,,,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,0.4691,0.4691,0.4691,0.4691,0.4691,0.4691,0.4691,0.4691,0.239289,0.239289,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,1.421516,0.4691,0.4691,10,10,, +16084,0,0.122264,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.006,4.128,0,2.619934,6,4.5,0.222297,0.222297,0.222297,0.222297,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.312638,0.331474,0.222297,0.222297,0.312638,0.331474,0.330253,0.307088,0.222297,0.222297,0.330253,0.307088,0.479935,0.354308,0.222297,0.222297,0.479935,0.354308,0.222297,0.222297,0.222297,0.222297,0.222297,0.222297,,,,,,,0.312638,0.331474,0.330253,0.307088,0.479935,0.354308,0.222297,0.222297,0.222297,0.222297,0.115799,0.12145,0.121083,0.114134,0.165988,0.1283,0.088697,0.088697,0.046794,0.046794,23.464255,22.130894,22.2127,23.888351,15.285016,20.704627,33,33,33,33,,,,,,,,,,,2580,2580,0.222297,0.222297,0.222297,0.222297,0.222297,0.222297,0.222297,0.222297,0.088697,0.088697,33,33,, +33957,0,0.174085,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.730394,0.15,4,1.04451,1.04451,1.04451,1.04451,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,,,,,,,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,0.344688,0.344688,0.344688,0.344688,0.344688,0.344688,0.344688,0.344688,0.175826,0.175826,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,1.04451,0.344688,0.344688,10,10,, +30412,0,0.025761,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.552017,0.15,4,0.154565,0.154565,0.154565,0.154565,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,,,,,,,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.051006,0.051006,0.051006,0.051006,0.051006,0.051006,0.051006,0.051006,0.026018,0.026018,9.999995,9.999997,9.999996,9.999995,9.999991,9.999991,10,10,10,10,,,,,,,,,,,34400,34400,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.154565,0.051006,0.051006,10,10,, +16968,0,0.079793,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.009,6.088,0,1.709859,5,5,0.136789,0.136789,0.136789,0.136789,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.160341,0.162159,0.136789,0.136789,0.160341,0.162159,0.146093,0.153554,0.136789,0.136789,0.146093,0.153554,0.183542,0.217815,0.136789,0.136789,0.183542,0.217815,0.136789,0.136789,0.136789,0.136789,0.136789,0.136789,,,,,,,0.160341,0.162159,0.146093,0.153554,0.183542,0.217815,0.136789,0.136789,0.136789,0.136789,0.062465,0.063011,0.058191,0.060429,0.069425,0.079707,0.055399,0.055399,0.029296,0.029296,29.858865,29.52413,32.770992,31.178596,26.084569,21.980123,35,35,35,35,,,,,,,,,,,7568,7568,0.136789,0.136789,0.136789,0.136789,0.136789,0.136789,0.136789,0.136789,0.055399,0.055399,35,35,, +16969,0,0.06748,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.941,6.009,0,1.445994,5,5,0.115679,0.115679,0.115679,0.115679,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.115932,0.12874,0.115679,0.115679,0.115932,0.12874,0.115839,0.124458,0.115679,0.115679,0.115839,0.124458,0.116702,0.16797,0.115679,0.115679,0.116702,0.16797,0.115679,0.115679,0.115679,0.115679,0.115679,0.115679,,,,,,,0.115932,0.12874,0.115839,0.124458,0.116702,0.16797,0.115679,0.115679,0.115679,0.115679,0.046926,0.050768,0.046898,0.049484,0.047157,0.062537,0.04685,0.04685,0.024775,0.024775,34.923802,31.44939,34.951834,32.531252,34.693286,24.104201,35,35,35,35,,,,,,,,,,,7568,7568,0.115679,0.115679,0.115679,0.115679,0.115679,0.115679,0.115679,0.115679,0.04685,0.04685,35,35,, +16940,0,0.181281,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.512,4.694,0,3.884597,6,4.5,0.329602,0.329602,0.329602,0.329602,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.406815,0.381132,0.329602,0.329602,0.406815,0.381132,0.357791,0.3635,0.329602,0.329602,0.357791,0.3635,0.442816,0.473654,0.329602,0.329602,0.442816,0.473654,0.329602,0.329602,0.329602,0.329602,0.329602,0.329602,,,,,,,0.406815,0.381132,0.357791,0.3635,0.442816,0.473654,0.329602,0.329602,0.329602,0.329602,0.154675,0.14697,0.139968,0.141681,0.165475,0.174727,0.131511,0.131511,0.069381,0.069381,26.736666,28.538349,30.400088,29.922626,24.562951,22.963773,33,33,33,33,,,,,,,,,,,2580,2580,0.329602,0.329602,0.329602,0.329602,0.329602,0.329602,0.329602,0.329602,0.131511,0.131511,33,33,, +31743,0,0.13629,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.920498,0.15,4,0.81774,0.81774,0.81774,0.81774,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,,,,,,,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.269854,0.269854,0.269854,0.269854,0.269854,0.269854,0.269854,0.269854,0.137653,0.137653,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.81774,0.269854,0.269854,10,10,, +16056,-1,0.333446,0,3,0,1,2,,3,2,W M 14,,1606204,6.471,6.804,0,,0.58,7,,0.307796,,0.307796,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.310917,,0.307796,,0.310917,,0.308004,,0.307796,,0.308004,,0.322799,,0.307796,,0.322799,,0.307796,,0.307796,,0.307796,,,,,,,,0.310917,,0.308004,,0.322799,,0.307796,,0.307796,,0.153295,,0.152422,,0.15686,,0.152359,,0.082849,,64.347668,,64.956096,,61.978989,,65,,65,,,,,,,,,,,,22704,,0.307796,,0.307796,,0.307796,,0.307796,,0.152359,,65,, +16096,0,0.295296,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,1.159,1.455,0,6.327779,6,4.5,0.536902,0.536902,0.536902,0.536902,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.829887,0.610417,0.536902,0.536902,0.829887,0.610417,0.576146,0.565038,0.536902,0.536902,0.576146,0.565038,0.876625,0.857852,0.536902,0.536902,0.876625,0.857852,0.536902,0.536902,0.536902,0.536902,0.536902,0.536902,,,,,,,0.829887,0.610417,0.576146,0.565038,0.876625,0.857852,0.536902,0.536902,0.536902,0.536902,0.302119,0.236278,0.225997,0.222665,0.316141,0.310509,0.214224,0.214224,0.113018,0.113018,21.349631,29.025696,30.752269,31.35682,20.211366,20.653647,33,33,33,33,,,,,,,,,,,2580,2580,0.536902,0.536902,0.536902,0.536902,0.536902,0.536902,0.536902,0.536902,0.214224,0.214224,33,33,, +16176,-1,0.300401,0,3,0,1,1,,3,2,S I 275,,1607610,21.55,21.85,0,,0.58,7,,0.277294,,0.277294,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.283113,,0.277294,,0.283113,,0.27974,,0.277294,,0.27974,,0.351117,,0.277294,,0.351117,,0.277294,,0.277294,,0.277294,,,,,,,,0.283113,,0.27974,,0.351117,,0.277294,,0.277294,,0.139006,,0.137994,,0.159407,,0.13726,,0.074638,,63.663812,,64.431438,,51.333548,,65,,65,,,,,,,,,,,,22704,,0.277294,,0.277294,,0.277294,,0.277294,,0.13726,,65,, +16184,1,0.160329,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0.467,0.627,0,,0.58,7,0.160329,,0.160329,,60,,19000,,4313,,9500,,6129,,6536,,6528,,0.320174,,0.160329,,0.320174,,0.182724,,0.160329,,0.182724,,0.318359,,0.160329,,0.318359,,0.160329,,0.160329,,0.160329,,,,,,,,0.320174,,0.182724,,0.318359,,0.160329,,0.160329,,0.124911,,0.083676,,0.124367,,0.076958,,0.041685,,30.045288,,52.646019,,30.216576,,60,,60,,,,,,,,,,,,6536,,0.160329,,0.160329,,0.160329,,0.160329,,0.076958,,60,,, +16607,-1,0.678884,0,4,0,1,1,,3,2,W I 96,,1606503,0,0.679,0,,0.58,7,,0.626662,,0.626662,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.626664,,0.626662,,0.626664,,0.626663,,0.626662,,0.626663,,0.626672,,0.626662,,0.626672,,0.626662,,0.626662,,0.626662,,,,,,,,0.626664,,0.626663,,0.626672,,0.626662,,0.626662,,0.310198,,0.310198,,0.310201,,0.310198,,0.168677,,64.999776,,64.999915,,64.999012,,65,,65,,,,,,,,,,,,30272,,0.626662,,0.626662,,0.626662,,0.626662,,0.310198,,65,, +16631,1,0.261448,1,0,0,1,1,RFS,3,2,E M 14/N I 275,RAMP,1607709,0,0.261,0,,0.22,6,0.348597,,0.348597,,45,,14750,,3348,,7375,,4758,,5074,,5068,,0.534534,,0.348597,,0.534534,,0.388684,,0.348597,,0.388684,,0.525395,,0.348597,,0.525395,,0.348597,,0.348597,,0.348597,,,,,,,,0.534534,,0.388684,,0.525395,,0.348597,,0.348597,,0.207421,,0.163666,,0.204679,,0.15164,,0.081049,,29.346782,,40.358852,,29.857283,,45,,45,,,,,,,,,,,,5074,,0.348597,,0.348597,,0.348597,,0.348597,,0.15164,,45,,, +16715,1,0.833809,3,0,0,1,1,,3,2,N I 275,,1607208,21.206,22.04,0,,0.58,7,0.76967,,0.76967,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.838081,,0.76967,,0.838081,,0.772412,,0.76967,,0.772412,,0.782575,,0.76967,,0.782575,,0.76967,,0.76967,,0.76967,,,,,,,,0.838081,,0.772412,,0.782575,,0.76967,,0.76967,,0.40151,,0.381809,,0.384858,,0.380987,,0.207169,,59.694156,,64.769271,,63.928078,,65,,65,,,,,,,,,,,,22704,,0.76967,,0.76967,,0.76967,,0.76967,,0.380987,,65,,, +16922,1,0.320122,3,0,0,1,2,,3,2,E M 14,,1606205,6.452,6.773,0,,0.58,7,0.295498,,0.295498,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.29798,,0.295498,,0.29798,,0.295514,,0.295498,,0.295514,,0.296031,,0.295498,,0.296031,,0.295498,,0.295498,,0.295498,,,,,,,,0.29798,,0.295514,,0.296031,,0.295498,,0.295498,,0.147016,,0.146276,,0.146431,,0.146271,,0.079538,,64.458436,,64.996372,,64.882893,,65,,65,,,,,,,,,,,,22704,,0.295498,,0.295498,,0.295498,,0.295498,,0.146271,,65,,, +17089,1,0.385863,1,0,0,1,1,RFF,3,2,E M 14/S I 275,RAMP,1606001,0,0.386,0,,0.58,7,0.420941,,0.420941,,55,,19000,,4313,,9500,,6129,,6536,,6528,,0.420943,,0.420941,,0.420943,,0.420941,,0.420941,,0.420941,,0.420965,,0.420941,,0.420965,,0.420941,,0.420941,,0.420941,,,,,,,,0.420943,,0.420941,,0.420965,,0.420941,,0.420941,,0.195738,,0.195738,,0.195745,,0.195738,,0.105586,,54.999679,,54.99998,,54.996899,,55,,55,,,,,,,,,,,,6536,,0.420941,,0.420941,,0.420941,,0.420941,,0.195738,,55,,, +17521,0,0.09892,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.562,0.661,0,2.119715,6,4.5,0.179855,0.179855,0.179855,0.179855,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.24241,0.198339,0.179855,0.179855,0.24241,0.198339,0.202461,0.196573,0.179855,0.179855,0.202461,0.196573,0.220023,0.282925,0.179855,0.179855,0.220023,0.282925,0.179855,0.179855,0.179855,0.179855,0.179855,0.179855,,,,,,,0.24241,0.198339,0.202461,0.196573,0.220023,0.282925,0.179855,0.179855,0.179855,0.179855,0.090529,0.077307,0.078544,0.076777,0.083813,0.102683,0.071762,0.071762,0.037859,0.037859,24.484114,29.924574,29.315316,30.193415,26.975364,20.977987,33,33,33,33,,,,,,,,,,,2580,2580,0.179855,0.179855,0.179855,0.179855,0.179855,0.179855,0.179855,0.179855,0.071762,0.071762,33,33,, +17561,0,0.024308,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0.733,0.758,0,0.520891,6,4.5,0.044197,0.044197,0.044197,0.044197,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.099356,0.065139,0.044197,0.044197,0.099356,0.065139,0.060635,0.056905,0.044197,0.044197,0.060635,0.056905,0.074538,0.076493,0.044197,0.044197,0.074538,0.076493,0.044197,0.044197,0.044197,0.044197,0.044197,0.044197,,,,,,,0.099356,0.065139,0.060635,0.056905,0.074538,0.076493,0.044197,0.044197,0.044197,0.044197,0.034182,0.023917,0.022566,0.021447,0.026737,0.027323,0.017635,0.017635,0.009303,0.009303,14.679545,22.390663,24.053798,25.630341,19.567198,19.067,33,33,33,33,,,,,,,,,,,2580,2580,0.044197,0.044197,0.044197,0.044197,0.044197,0.044197,0.044197,0.044197,0.017635,0.017635,33,33,, +18332,0,0.135355,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.779,0.914,0,2.900454,6,4.5,0.246099,0.246099,0.246099,0.246099,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.262098,0.247262,0.246099,0.246099,0.262098,0.247262,0.249501,0.248978,0.246099,0.246099,0.249501,0.248978,0.253568,0.289276,0.246099,0.246099,0.253568,0.289276,0.246099,0.246099,0.246099,0.246099,0.246099,0.246099,,,,,,,0.262098,0.247262,0.249501,0.248978,0.253568,0.289276,0.246099,0.246099,0.246099,0.246099,0.102993,0.098543,0.099214,0.099057,0.100434,0.111147,0.098194,0.098194,0.051804,0.051804,30.985678,32.844744,32.550059,32.618403,32.028008,28.074479,33,33,33,33,,,,,,,,,,,5160,5160,0.246099,0.246099,0.246099,0.246099,0.246099,0.246099,0.246099,0.246099,0.098194,0.098194,33,33,, +19068,0,0.277629,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0.758,1.035,0,5.949203,6,4.5,0.504781,0.504781,0.504781,0.504781,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.065589,0.734908,0.504781,0.504781,1.065589,0.734908,0.764379,0.688916,0.504781,0.504781,0.764379,0.688916,0.963355,1.163065,0.504781,0.504781,0.963355,1.163065,0.504781,0.504781,0.504781,0.504781,0.504781,0.504781,,,,,,,1.065589,0.734908,0.764379,0.688916,0.963355,1.163065,0.504781,0.504781,0.504781,0.504781,0.36965,0.270446,0.279287,0.256648,0.33898,0.398893,0.201408,0.201408,0.106256,0.106256,15.632458,22.666467,21.792561,24.179681,17.291414,14.322305,33,33,33,33,,,,,,,,,,,2580,2580,0.504781,0.504781,0.504781,0.504781,0.504781,0.504781,0.504781,0.504781,0.201408,0.201408,33,33,, +22433,1,0.086348,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.227,0.313,0,1.850317,6,4.5,0.136339,,0.136339,,38,,17000,,3859,,8500,,5484,,5848,,5841,,0.153506,,0.136339,,0.153506,,0.145083,,0.136339,,0.145083,,0.154932,,0.136339,,0.154932,,0.136339,,0.136339,,0.136339,,,,,,,,0.153506,,0.145083,,0.154932,,0.136339,,0.136339,,0.061594,,0.059068,,0.062022,,0.056444,,0.029949,,33.750428,,35.709707,,33.439771,,38,,38,,,,,,,,,,,,5848,,0.136339,,0.136339,,0.136339,,0.136339,,0.056444,,38,,, +22434,1,0.168574,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.058,0.227,0,3.612303,6,4.5,0.26617,,0.26617,,38,,17000,,3859,,8500,,5484,,5848,,5841,,0.305208,,0.26617,,0.305208,,0.280702,,0.26617,,0.280702,,0.308359,,0.26617,,0.308359,,0.26617,,0.26617,,0.26617,,,,,,,,0.305208,,0.280702,,0.308359,,0.26617,,0.26617,,0.121906,,0.114554,,0.122851,,0.110194,,0.058469,,33.139573,,36.032739,,32.800862,,38,,38,,,,,,,,,,,,5848,,0.26617,,0.26617,,0.26617,,0.26617,,0.110194,,38,,, +23284,-1,0.3071,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.24,0.547,0,6.580714,6,4.5,,0.484895,,0.484895,,38,,17000,,3859,,8500,,5484,,5848,,5841,,0.531349,,0.484895,,0.531349,,0.505048,,0.484895,,0.505048,,0.579144,,0.484895,,0.579144,,0.484895,,0.484895,,0.484895,,,,,,,,0.531349,,0.505048,,0.579144,,0.484895,,0.484895,,0.214683,,0.206792,,0.229021,,0.200746,,0.106515,,34.677787,,36.483655,,31.815938,,38,,38,,,,,,,,,,,,5848,,0.484895,,0.484895,,0.484895,,0.484895,,0.200746,,38,, +30403,0,0.235141,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.03874,0.15,4,1.410847,1.410847,1.410847,1.410847,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,,,,,,,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,0.46558,0.46558,0.46558,0.46558,0.46558,0.46558,0.46558,0.46558,0.237493,0.237493,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,1.410847,0.46558,0.46558,10,10,, +30413,0,0.282648,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.056751,0.15,4,1.69589,1.69589,1.69589,1.69589,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,,,,,,,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,0.559644,0.559644,0.559644,0.559644,0.559644,0.559644,0.559644,0.559644,0.285475,0.285475,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,1.69589,0.559644,0.559644,10,10,, +17835,0,0.089071,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.473,0.562,0,1.908669,6,4.5,0.161948,0.161948,0.161948,0.161948,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.217086,0.178368,0.161948,0.161948,0.217086,0.178368,0.181921,0.176558,0.161948,0.161948,0.181921,0.176558,0.197665,0.250671,0.161948,0.161948,0.197665,0.250671,0.161948,0.161948,0.161948,0.161948,0.161948,0.161948,,,,,,,0.217086,0.178368,0.181921,0.176558,0.197665,0.250671,0.161948,0.161948,0.161948,0.161948,0.081159,0.069543,0.070609,0.069,0.075332,0.091234,0.064617,0.064617,0.03409,0.03409,24.618257,29.961999,29.376908,30.269147,27.037046,21.319893,33,33,33,33,,,,,,,,,,,2580,2580,0.161948,0.161948,0.161948,0.161948,0.161948,0.161948,0.161948,0.161948,0.064617,0.064617,33,33,, +18167,0,0.36822,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0,0.368,0,7.890431,6,4.5,0.669491,0.669491,0.669491,0.669491,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.942015,0.845888,0.669491,0.669491,0.942015,0.845888,0.804701,0.790984,0.669491,0.669491,0.804701,0.790984,0.91713,1.018649,0.669491,0.669491,0.91713,1.018649,0.669491,0.669491,0.669491,0.669491,0.669491,0.669491,,,,,,,0.942015,0.845888,0.804701,0.790984,0.91713,1.018649,0.669491,0.669491,0.669491,0.669491,0.348884,0.320046,0.30769,0.303575,0.341419,0.371874,0.267127,0.267127,0.140928,0.140928,23.453125,26.118351,27.455174,27.931275,24.089492,21.688728,33,33,33,33,,,,,,,,,,,2580,2580,0.669491,0.669491,0.669491,0.669491,0.669491,0.669491,0.669491,0.669491,0.267127,0.267127,33,33,, +18929,0,0.131182,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.405,0.536,0,2.811039,6,4.5,0.238512,0.238512,0.238512,0.238512,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.292256,0.255509,0.238512,0.238512,0.292256,0.255509,0.258928,0.254519,0.238512,0.238512,0.258928,0.254519,0.287862,0.332983,0.238512,0.238512,0.287862,0.332983,0.238512,0.238512,0.238512,0.238512,0.238512,0.238512,,,,,,,0.292256,0.255509,0.258928,0.254519,0.287862,0.332983,0.238512,0.238512,0.238512,0.238512,0.11129,0.100265,0.101291,0.099968,0.109971,0.123508,0.095166,0.095166,0.050207,0.050207,26.931536,30.804875,30.398046,30.924661,27.342688,23.637557,33,33,33,33,,,,,,,,,,,5160,5160,0.238512,0.238512,0.238512,0.238512,0.238512,0.238512,0.238512,0.238512,0.095166,0.095166,33,33,, +18973,0,0.592433,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,2.029,2.622,0,12.694991,5,5,1.015599,1.015599,1.015599,1.015599,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.029518,1.019617,1.015599,1.015599,1.029518,1.019617,1.015609,1.01561,1.015599,1.015599,1.015609,1.01561,1.064908,1.077041,1.015599,1.015599,1.064908,1.077041,1.015599,1.015599,1.015599,1.015599,1.015599,1.015599,,,,,,,1.029518,1.019617,1.015609,1.01561,1.064908,1.077041,1.015599,1.015599,1.015599,1.015599,0.415493,0.412523,0.411321,0.411321,0.42611,0.42975,0.411318,0.411318,0.217508,0.217508,34.526812,34.862093,34.999649,34.999638,33.379378,33.003367,35,35,35,35,,,,,,,,,,,3784,3784,1.015599,1.015599,1.015599,1.015599,1.015599,1.015599,1.015599,1.015599,0.411318,0.411318,35,35,, +19162,0,0.759192,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,1.27,2.029,0,16.268399,5,5,1.301472,1.301472,1.301472,1.301472,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.304369,1.31092,1.301472,1.301472,1.304369,1.31092,1.301492,1.301503,1.301472,1.301472,1.301492,1.301503,1.351155,1.319981,1.301472,1.301472,1.351155,1.319981,1.301472,1.301472,1.301472,1.301472,1.301472,1.301472,,,,,,,1.304369,1.31092,1.301492,1.301503,1.351155,1.319981,1.301472,1.301472,1.301472,1.301472,0.527965,0.529931,0.527102,0.527105,0.542001,0.532649,0.527096,0.527096,0.278732,0.278732,34.922271,34.747736,34.999464,34.999175,33.713011,34.50921,35,35,35,35,,,,,,,,,,,3784,3784,1.301472,1.301472,1.301472,1.301472,1.301472,1.301472,1.301472,1.301472,0.527096,0.527096,35,35,, +30392,0,0.483837,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.367929,0.15,4,2.90302,2.90302,2.90302,2.90302,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,,,,,,,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,0.957997,0.957997,0.957997,0.957997,0.957997,0.957997,0.957997,0.957997,0.488675,0.488675,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,2.90302,0.957997,0.957997,10,10,, +31741,0,0.237969,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.09934,0.15,4,1.427815,1.427815,1.427815,1.427815,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,,,,,,,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,0.471179,0.471179,0.471179,0.471179,0.471179,0.471179,0.471179,0.471179,0.240349,0.240349,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,1.427815,0.471179,0.471179,10,10,, +33761,0,0.370542,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.940193,0.15,4,2.223254,2.223254,2.223254,2.223254,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,,,,,,,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,0.733674,0.733674,0.733674,0.733674,0.733674,0.733674,0.733674,0.733674,0.374248,0.374248,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,2.223254,0.733674,0.733674,10,10,, +19122,0,0.344183,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.061,0.405,0,7.375353,6,4.5,0.625787,0.625787,0.625787,0.625787,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.77573,0.678116,0.625787,0.625787,0.77573,0.678116,0.687883,0.673432,0.625787,0.625787,0.687883,0.673432,0.780681,0.894256,0.625787,0.625787,0.780681,0.894256,0.625787,0.625787,0.625787,0.625787,0.625787,0.625787,,,,,,,0.77573,0.678116,0.687883,0.673432,0.780681,0.894256,0.625787,0.625787,0.625787,0.625787,0.294672,0.265388,0.268318,0.263982,0.296157,0.33023,0.249689,0.249689,0.131728,0.131728,26.621376,30.45346,30.021065,30.665309,26.452527,23.092931,33,33,33,33,,,,,,,,,,,5160,5160,0.625787,0.625787,0.625787,0.625787,0.625787,0.625787,0.625787,0.625787,0.249689,0.249689,33,33,, +30394,0,0.116525,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.49697,0.15,4,0.699152,0.699152,0.699152,0.699152,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.699152,0.699153,0.699152,0.699152,0.699152,0.699153,0.699153,0.699153,0.699152,0.699152,0.699153,0.699153,0.699154,0.699154,0.699152,0.699152,0.699154,0.699154,0.699152,0.699152,0.699152,0.699152,0.699152,0.699152,,,,,,,0.699152,0.699153,0.699153,0.699153,0.699154,0.699154,0.699152,0.699152,0.699152,0.699152,0.23072,0.23072,0.23072,0.23072,0.230721,0.230721,0.23072,0.23072,0.117691,0.117691,9.999991,9.999981,9.999986,9.999986,9.999966,9.99997,10,10,10,10,,,,,,,,,,,34400,34400,0.699152,0.699152,0.699152,0.699152,0.699152,0.699152,0.699152,0.699152,0.23072,0.23072,10,10,, +18231,0,0.237778,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.235,0.473,0,5.095252,6,4.5,0.432324,0.432324,0.432324,0.432324,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.579517,0.47616,0.432324,0.432324,0.579517,0.47616,0.485644,0.471328,0.432324,0.432324,0.485644,0.471328,0.527672,0.669173,0.432324,0.432324,0.527672,0.669173,0.432324,0.432324,0.432324,0.432324,0.432324,0.432324,,,,,,,0.579517,0.47616,0.485644,0.471328,0.527672,0.669173,0.432324,0.432324,0.432324,0.432324,0.216655,0.185648,0.188493,0.184199,0.201102,0.243552,0.172497,0.172497,0.091004,0.091004,24.618257,29.961999,29.376908,30.269147,27.037046,21.319893,33,33,33,33,,,,,,,,,,,2580,2580,0.432324,0.432324,0.432324,0.432324,0.432324,0.432324,0.432324,0.432324,0.172497,0.172497,33,33,, +17657,0,0.208073,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,1.062,1.27,0,4.458704,5,5,0.356696,0.356696,0.356696,0.356696,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.357636,0.35982,0.356696,0.356696,0.357636,0.35982,0.356707,0.356711,0.356696,0.356696,0.356707,0.356711,0.370906,0.362577,0.356696,0.356696,0.370906,0.362577,0.356696,0.356696,0.356696,0.356696,0.356696,0.356696,,,,,,,0.357636,0.35982,0.356707,0.356711,0.370906,0.362577,0.356696,0.356696,0.356696,0.356696,0.144744,0.145399,0.144465,0.144467,0.148725,0.146226,0.144462,0.144462,0.076392,0.076392,34.908034,34.696169,34.998983,34.998525,33.659167,34.432363,35,35,35,35,,,,,,,,,,,3784,3784,0.356696,0.356696,0.356696,0.356696,0.356696,0.356696,0.356696,0.356696,0.144462,0.144462,35,35,, +18556,0,0.242348,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.536,0.779,0,5.193164,6,4.5,0.440632,0.440632,0.440632,0.440632,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.4646,0.447707,0.440632,0.440632,0.4646,0.447707,0.449044,0.447196,0.440632,0.440632,0.449044,0.447196,0.474564,0.501133,0.440632,0.440632,0.474564,0.501133,0.440632,0.440632,0.440632,0.440632,0.440632,0.440632,,,,,,,0.4646,0.447707,0.449044,0.447196,0.474564,0.501133,0.440632,0.440632,0.440632,0.440632,0.183003,0.177935,0.178336,0.177781,0.185992,0.193962,0.175812,0.175812,0.092753,0.092753,31.297559,32.47849,32.3818,32.515599,30.64047,29.015996,33,33,33,33,,,,,,,,,,,5160,5160,0.440632,0.440632,0.440632,0.440632,0.440632,0.440632,0.440632,0.440632,0.175812,0.175812,33,33,, +23557,0,0.295292,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,11.243,11.538,0,6.32768,6,4.5,0.536894,0.536894,0.536894,0.536894,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.594846,0.543593,0.536894,0.536894,0.594846,0.543593,0.550237,0.552624,0.536894,0.536894,0.550237,0.552624,0.569276,0.75575,0.536894,0.536894,0.569276,0.75575,0.536894,0.536894,0.536894,0.536894,0.536894,0.536894,,,,,,,0.594846,0.543593,0.550237,0.552624,0.569276,0.75575,0.536894,0.536894,0.536894,0.536894,0.231606,0.21623,0.218224,0.21894,0.223935,0.279877,0.214221,0.214221,0.113016,0.113016,29.785048,32.593351,32.199765,32.060706,31.122859,23.44361,33,33,33,33,,,,,,,,,,,2580,2580,0.536894,0.536894,0.536894,0.536894,0.536894,0.536894,0.536894,0.536894,0.214221,0.214221,33,33,, +17753,0,0.365439,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0.368,0.733,0,7.830836,6,4.5,0.664435,0.664435,0.664435,0.664435,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.021513,0.813132,0.664435,0.664435,1.021513,0.813132,0.839466,0.763799,0.664435,0.664435,0.839466,0.763799,0.962285,1.075972,0.664435,0.664435,0.962285,1.075972,0.664435,0.664435,0.664435,0.664435,0.664435,0.664435,,,,,,,1.021513,0.813132,0.839466,0.763799,0.962285,1.075972,0.664435,0.664435,0.664435,0.664435,0.372233,0.309719,0.317619,0.294919,0.354465,0.388571,0.265109,0.265109,0.139863,0.139863,21.464583,26.96529,26.119377,28.706956,22.785702,20.37817,33,33,33,33,,,,,,,,,,,2580,2580,0.664435,0.664435,0.664435,0.664435,0.664435,0.664435,0.664435,0.664435,0.265109,0.265109,33,33,, +31763,0,0.291448,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.245323,0.15,4,1.74869,1.74869,1.74869,1.74869,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,,,,,,,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,0.577068,0.577068,0.577068,0.577068,0.577068,0.577068,0.577068,0.577068,0.294363,0.294363,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,1.74869,0.577068,0.577068,10,10,, +31765,0,0.205095,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.394886,0.15,4,1.230568,1.230568,1.230568,1.230568,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,,,,,,,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,0.406087,0.406087,0.406087,0.406087,0.406087,0.406087,0.406087,0.406087,0.207146,0.207146,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,1.230568,0.406087,0.406087,10,10,, +18972,0,0.360881,2,2,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.521,0.882,0,7.733164,6,4.5,0.656147,0.656147,0.656147,0.656147,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.662778,0.660395,0.656147,0.656147,0.662778,0.660395,0.658128,0.657877,0.656147,0.656147,0.658128,0.657877,0.661242,0.664124,0.656147,0.656147,0.661242,0.664124,0.656147,0.656147,0.656147,0.656147,0.656147,0.656147,,,,,,,0.662778,0.660395,0.658128,0.657877,0.661242,0.664124,0.656147,0.656147,0.656147,0.656147,0.263792,0.263077,0.262397,0.262322,0.263331,0.264196,0.261803,0.261803,0.138119,0.138119,32.66987,32.787718,32.900677,32.913256,32.74572,32.603615,33,33,33,33,,,,,,,,,,,5160,5160,0.656147,0.656147,0.656147,0.656147,0.656147,0.656147,0.656147,0.656147,0.261803,0.261803,33,33,, +30401,0,0.325925,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.984113,0.15,4,1.955552,1.955552,1.955552,1.955552,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,,,,,,,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,0.645332,0.645332,0.645332,0.645332,0.645332,0.645332,0.645332,0.645332,0.329185,0.329185,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,1.955552,0.645332,0.645332,10,10,, +17452,0,0.072945,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.448,0.521,0,1.563113,6,4.5,0.132628,0.132628,0.132628,0.132628,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.162913,0.152032,0.132628,0.132628,0.162913,0.152032,0.141687,0.140537,0.132628,0.132628,0.141687,0.140537,0.15591,0.169079,0.132628,0.132628,0.15591,0.169079,0.132628,0.132628,0.132628,0.132628,0.132628,0.132628,,,,,,,0.162913,0.152032,0.141687,0.140537,0.15591,0.169079,0.132628,0.132628,0.132628,0.132628,0.062004,0.05874,0.055636,0.055291,0.059903,0.063854,0.052918,0.052918,0.027918,0.027918,26.865339,28.788114,30.88994,31.142786,28.072083,25.885574,33,33,33,33,,,,,,,,,,,2580,2580,0.132628,0.132628,0.132628,0.132628,0.132628,0.132628,0.132628,0.132628,0.052918,0.052918,33,33,, +23285,-1,0.183896,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.056,0.24,0,3.940629,6,4.5,,0.290362,,0.290362,,38,,17000,,3859,,8500,,5484,,5848,,5841,,0.320047,,0.290362,,0.320047,,0.301545,,0.290362,,0.301545,,0.358819,,0.290362,,0.358819,,0.290362,,0.290362,,0.290362,,,,,,,,0.320047,,0.301545,,0.358819,,0.290362,,0.290362,,0.129115,,0.123565,,0.140747,,0.12021,,0.063783,,34.475421,,36.590799,,30.750218,,38,,38,,,,,,,,,,,,5848,,0.290362,,0.290362,,0.290362,,0.290362,,0.12021,,38,, +30402,0,0.286354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.136164,0.15,4,1.718126,1.718126,1.718126,1.718126,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,,,,,,,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.566982,0.289218,0.289218,10,9.999999,10,10,9.999998,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,1.718126,0.566982,0.566982,10,10,, +18710,0,0.107726,2,2,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.882,0.99,0,2.30842,6,4.5,0.195866,0.195866,0.195866,0.195866,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.203486,0.206453,0.195866,0.195866,0.203486,0.206453,0.199539,0.198677,0.195866,0.195866,0.199539,0.198677,0.211469,0.209809,0.195866,0.195866,0.211469,0.209809,0.195866,0.195866,0.195866,0.195866,0.195866,0.195866,,,,,,,0.203486,0.206453,0.199539,0.198677,0.211469,0.209809,0.195866,0.195866,0.195866,0.195866,0.080436,0.081327,0.079253,0.078994,0.082831,0.082333,0.078151,0.078151,0.04123,0.04123,31.764299,31.3077,32.392482,32.533138,30.565142,30.806974,33,33,33,33,,,,,,,,,,,5160,5160,0.195866,0.195866,0.195866,0.195866,0.195866,0.195866,0.195866,0.195866,0.078151,0.078151,33,33,, +22436,1,0.058314,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0,0.058,0,1.249578,6,4.5,0.092074,,0.092074,,38,,17000,,3859,,8500,,5484,,5848,,5841,,0.092881,,0.092074,,0.092881,,0.092365,,0.092074,,0.092365,,0.092592,,0.092074,,0.092592,,0.092074,,0.092074,,0.092074,,,,,,,,0.092881,,0.092365,,0.092592,,0.092074,,0.092074,,0.038361,,0.038206,,0.038274,,0.038119,,0.020226,,37.669882,,37.880195,,37.787411,,38,,38,,,,,,,,,,,,5848,,0.092074,,0.092074,,0.092074,,0.092074,,0.038119,,38,,, +23286,-1,0.056435,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0,0.056,0,1.209328,6,4.5,,0.089108,,0.089108,,38,,17000,,3859,,8500,,5484,,5848,,5841,,0.089339,,0.089108,,0.089339,,0.089317,,0.089108,,0.089317,,0.090395,,0.089108,,0.090395,,0.089108,,0.089108,,0.089108,,,,,,,,0.089339,,0.089317,,0.090395,,0.089108,,0.089108,,0.03696,,0.036953,,0.037277,,0.036891,,0.019574,,37.901855,,37.911327,,37.459242,,38,,38,,,,,,,,,,,,5848,,0.089108,,0.089108,,0.089108,,0.089108,,0.036891,,38,, +18394,0,0.014919,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.99,1.005,0,0.319703,6,4.5,0.027126,0.027126,0.027126,0.027126,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.03977,0.027133,0.027126,0.027126,0.03977,0.027133,0.032455,0.02713,0.027126,0.027126,0.032455,0.02713,0.048177,0.027133,0.027126,0.027126,0.048177,0.027133,0.027126,0.027126,0.027126,0.027126,0.027126,0.027126,,,,,,,0.03977,0.027133,0.032455,0.02713,0.048177,0.027133,0.027126,0.027126,0.027126,0.027126,0.014616,0.010825,0.012422,0.010825,0.017138,0.010825,0.010823,0.010823,0.00571,0.00571,22.50862,32.992352,27.582139,32.995346,18.580943,32.992066,33,33,33,33,,,,,,,,,,,2580,2580,0.027126,0.027126,0.027126,0.027126,0.027126,0.027126,0.027126,0.027126,0.010823,0.010823,33,33,, +16975,0,0.22023,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0.939,1.159,0,4.719212,6,4.5,0.400418,0.400418,0.400418,0.400418,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.429387,0.411304,0.400418,0.400418,0.429387,0.411304,0.404976,0.402981,0.400418,0.400418,0.404976,0.402981,0.446207,0.437022,0.400418,0.400418,0.446207,0.437022,0.400418,0.400418,0.400418,0.400418,0.400418,0.400418,,,,,,,0.429387,0.411304,0.404976,0.402981,0.446207,0.437022,0.400418,0.400418,0.400418,0.400418,0.168458,0.163033,0.161134,0.160536,0.173504,0.170748,0.159767,0.159767,0.084288,0.084288,30.773598,32.126606,32.628552,32.790119,29.613582,30.235997,33,33,33,33,,,,,,,,,,,2580,2580,0.400418,0.400418,0.400418,0.400418,0.400418,0.400418,0.400418,0.400418,0.159767,0.159767,33,33,, +16936,1,0.479402,1,0,0,1,1,RFF,3,2,N I 275/E M 14,RAMP,1607708,0,0.479,0,,0.58,7,0.522984,,0.522984,,55,,19000,,4313,,9500,,6129,,6536,,6528,,0.550997,,0.522984,,0.550997,,0.525287,,0.522984,,0.525287,,0.540049,,0.522984,,0.540049,,0.522984,,0.522984,,0.522984,,,,,,,,0.550997,,0.525287,,0.540049,,0.522984,,0.522984,,0.251591,,0.243879,,0.248307,,0.243188,,0.131182,,52.203797,,54.758861,,53.262062,,55,,55,,,,,,,,,,,,6536,,0.522984,,0.522984,,0.522984,,0.522984,,0.243188,,55,,, +17838,0,0.373532,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,1.187,1.561,0,8.004267,6,4.5,0.67915,0.67915,0.67915,0.67915,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.702125,0.683034,0.67915,0.67915,0.702125,0.683034,0.686454,0.685245,0.67915,0.67915,0.686454,0.685245,0.699172,0.752725,0.67915,0.67915,0.699172,0.752725,0.67915,0.67915,0.67915,0.67915,0.67915,0.67915,,,,,,,0.702125,0.683034,0.686454,0.685245,0.699172,0.752725,0.67915,0.67915,0.67915,0.67915,0.277873,0.272146,0.273172,0.272809,0.276987,0.293053,0.270981,0.270981,0.142961,0.142961,31.920155,32.812339,32.64887,32.706466,32.054986,29.774434,33,33,33,33,,,,,,,,,,,5160,5160,0.67915,0.67915,0.67915,0.67915,0.67915,0.67915,0.67915,0.67915,0.270981,0.270981,33,33,, +18801,0,0.416943,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.166,0.583,0,8.934489,6,4.5,0.758078,0.758078,0.758078,0.758078,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.780202,0.761068,0.758078,0.758078,0.780202,0.761068,0.759345,0.760494,0.758078,0.758078,0.759345,0.760494,0.767071,0.807284,0.758078,0.758078,0.767071,0.807284,0.758078,0.758078,0.758078,0.758078,0.758078,0.758078,,,,,,,0.780202,0.761068,0.759345,0.760494,0.767071,0.807284,0.758078,0.758078,0.758078,0.758078,0.30911,0.30337,0.302853,0.303198,0.305171,0.317235,0.302473,0.302473,0.159575,0.159575,32.064233,32.870327,32.944912,32.895142,32.61312,30.988551,33,33,33,33,,,,,,,,,,,5160,5160,0.758078,0.758078,0.758078,0.758078,0.758078,0.758078,0.758078,0.758078,0.302473,0.302473,33,33,, +22432,1,0.650293,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.313,0.963,0,13.934855,6,4.5,1.026779,,1.026779,,38,,17000,,3859,,8500,,5484,,5848,,5841,,1.125353,,1.026779,,1.125353,,1.086893,,1.026779,,1.086893,,1.178917,,1.026779,,1.178917,,1.026779,,1.026779,,1.026779,,,,,,,,1.125353,,1.086893,,1.178917,,1.026779,,1.026779,,0.454659,,0.443121,,0.470728,,0.425086,,0.225549,,34.671436,,35.898288,,33.096137,,38,,38,,,,,,,,,,,,5848,,1.026779,,1.026779,,1.026779,,1.026779,,0.425086,,38,,, +23276,-1,0.419791,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.547,0.967,0,8.995527,6,4.5,,0.662828,,0.662828,,38,,17000,,3859,,8500,,5484,,5848,,5841,,0.745267,,0.662828,,0.745267,,0.697197,,0.662828,,0.697197,,0.782675,,0.662828,,0.782675,,0.662828,,0.662828,,0.662828,,,,,,,,0.745267,,0.697197,,0.782675,,0.662828,,0.662828,,0.299143,,0.284721,,0.310365,,0.274411,,0.145601,,33.796572,,36.126794,,32.181269,,38,,38,,,,,,,,,,,,5848,,0.662828,,0.662828,,0.662828,,0.662828,,0.274411,,38,, +31742,0,0.364399,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.808546,0.15,4,2.186393,2.186393,2.186393,2.186393,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,,,,,,,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,0.72151,0.72151,0.72151,0.72151,0.72151,0.72151,0.72151,0.72151,0.368043,0.368043,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,2.186393,0.72151,0.72151,10,10,, +31762,0,0.323977,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.942357,0.15,4,1.94386,1.94386,1.94386,1.94386,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,,,,,,,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,0.641474,0.641474,0.641474,0.641474,0.641474,0.641474,0.641474,0.641474,0.327216,0.327216,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,1.94386,0.641474,0.641474,10,10,, +31766,0,0.276232,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.919262,0.15,4,1.657393,1.657393,1.657393,1.657393,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,,,,,,,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,0.54694,0.54694,0.54694,0.54694,0.54694,0.54694,0.54694,0.54694,0.278995,0.278995,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,1.657393,0.54694,0.54694,10,10,, +18042,0,0.273381,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.914,1.187,0,5.858167,6,4.5,0.497057,0.497057,0.497057,0.497057,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.51739,0.500262,0.497057,0.497057,0.51739,0.500262,0.503909,0.502603,0.497057,0.497057,0.503909,0.502603,0.513932,0.563266,0.497057,0.497057,0.513932,0.563266,0.497057,0.497057,0.497057,0.497057,0.497057,0.497057,,,,,,,0.51739,0.500262,0.503909,0.502603,0.513932,0.563266,0.497057,0.497057,0.497057,0.497057,0.204426,0.199287,0.200381,0.199989,0.203388,0.218188,0.198326,0.198326,0.10463,0.10463,31.703125,32.788537,32.551241,32.635842,31.916437,29.121021,33,33,33,33,,,,,,,,,,,5160,5160,0.497057,0.497057,0.497057,0.497057,0.497057,0.497057,0.497057,0.497057,0.198326,0.198326,33,33,, +17069,1,0.270525,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0.196,0.467,0,,0.58,7,0.270525,,0.270525,,60,,19000,,4313,,9500,,6129,,6536,,6528,,0.270526,,0.270525,,0.270526,,0.270525,,0.270525,,0.270525,,0.270526,,0.270525,,0.270526,,0.270525,,0.270525,,0.270525,,,,,,,,0.270526,,0.270525,,0.270526,,0.270525,,0.270525,,0.129852,,0.129852,,0.129852,,0.129852,,0.070336,,59.999781,,59.999988,,59.999727,,60,,60,,,,,,,,,,,,6536,,0.270525,,0.270525,,0.270525,,0.270525,,0.129852,,60,,, +31761,0,0.368646,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.89955,0.15,4,2.211874,2.211874,2.211874,2.211874,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,,,,,,,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,0.729918,0.729918,0.729918,0.729918,0.729918,0.729918,0.729918,0.729918,0.372332,0.372332,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,2.211874,0.729918,0.729918,10,10,, +31764,0,0.409571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.776524,0.15,4,2.457427,2.457427,2.457427,2.457427,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,,,,,,,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,0.810951,0.810951,0.810951,0.810951,0.810951,0.810951,0.810951,0.810951,0.413667,0.413667,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,2.457427,0.810951,0.810951,10,10,, +16186,1,0.196159,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0,0.196,0,,0.58,7,0.196159,,0.196159,,60,,19000,,4313,,9500,,6129,,6536,,6528,,0.247393,,0.196159,,0.247393,,0.200039,,0.196159,,0.200039,,0.232437,,0.196159,,0.232437,,0.196159,,0.196159,,0.196159,,,,,,,,0.247393,,0.200039,,0.232437,,0.196159,,0.196159,,0.109526,,0.09532,,0.10504,,0.094156,,0.051001,,47.574123,,58.836025,,50.635195,,60,,60,,,,,,,,,,,,6536,,0.196159,,0.196159,,0.196159,,0.196159,,0.094156,,60,,, +18800,0,0.165891,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0,0.166,0,3.554799,6,4.5,0.301619,0.301619,0.301619,0.301619,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.310475,0.301879,0.301619,0.301619,0.310475,0.301879,0.301715,0.301777,0.301619,0.301619,0.301715,0.301777,0.302321,0.311787,0.301619,0.301619,0.302321,0.311787,0.301619,0.301619,0.301619,0.301619,0.301619,0.301619,,,,,,,0.310475,0.301879,0.301715,0.301777,0.302321,0.311787,0.301619,0.301619,0.301619,0.301619,0.123003,0.120424,0.120375,0.120393,0.120557,0.123397,0.120346,0.120346,0.063491,0.063491,32.058692,32.971581,32.989497,32.982772,32.923385,31.923801,33,33,33,33,,,,,,,,,,,5160,5160,0.301619,0.301619,0.301619,0.301619,0.301619,0.301619,0.301619,0.301619,0.120346,0.120346,33,33,, +18241,0,0.116869,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.587,0.704,0,2.504346,6,4.5,0.21249,0.21249,0.21249,0.21249,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.220078,0.213964,0.21249,0.21249,0.220078,0.213964,0.213378,0.213426,0.21249,0.21249,0.213378,0.213426,0.217722,0.226498,0.21249,0.21249,0.217722,0.226498,0.21249,0.21249,0.21249,0.21249,0.21249,0.21249,,,,,,,0.220078,0.213964,0.213378,0.213426,0.217722,0.226498,0.21249,0.21249,0.21249,0.21249,0.08706,0.085226,0.08505,0.085064,0.086353,0.088986,0.084783,0.084783,0.044729,0.044729,31.862199,32.772657,32.862702,32.855324,32.206956,30.959081,33,33,33,33,,,,,,,,,,,5160,5160,0.21249,0.21249,0.21249,0.21249,0.21249,0.21249,0.21249,0.21249,0.084783,0.084783,33,33,, +31731,0,0.236187,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.061141,0.15,4,1.41712,1.41712,1.41712,1.41712,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,,,,,,,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,0.467649,0.467649,0.467649,0.467649,0.467649,0.467649,0.467649,0.467649,0.238548,0.238548,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,1.41712,0.467649,0.467649,10,10,, +18464,0,0.004284,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.583,0.587,0,0.091804,6,4.5,0.007789,0.007789,0.007789,0.007789,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.008051,0.007849,0.007789,0.007789,0.008051,0.007849,0.007816,0.007836,0.007789,0.007789,0.007816,0.007836,0.007953,0.008449,0.007789,0.007789,0.007953,0.008449,0.007789,0.007789,0.007789,0.007789,0.007789,0.007789,,,,,,,0.008051,0.007849,0.007816,0.007836,0.007953,0.008449,0.007789,0.007789,0.007789,0.007789,0.003187,0.003126,0.003116,0.003122,0.003157,0.003306,0.003108,0.003108,0.00164,0.00164,31.927057,32.75028,32.887871,32.802102,32.320343,30.422606,33,33,33,33,,,,,,,,,,,5160,5160,0.007789,0.007789,0.007789,0.007789,0.007789,0.007789,0.007789,0.007789,0.003108,0.003108,33,33,, +17952,0,0.022718,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.704,0.727,0,0.486816,6,4.5,0.041306,0.041306,0.041306,0.041306,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.041473,0.041307,0.041306,0.041306,0.041473,0.041307,0.041363,0.041306,0.041306,0.041306,0.041363,0.041306,0.04152,0.041407,0.041306,0.041306,0.04152,0.041407,0.041306,0.041306,0.041306,0.041306,0.041306,0.041306,,,,,,,0.041473,0.041307,0.041363,0.041306,0.04152,0.041407,0.041306,0.041306,0.041306,0.041306,0.016531,0.016481,0.016498,0.016481,0.016545,0.016511,0.016481,0.016481,0.008695,0.008695,32.867031,32.999154,32.954625,32.99952,32.829411,32.919484,33,33,33,33,,,,,,,,,,,5160,5160,0.041306,0.041306,0.041306,0.041306,0.041306,0.041306,0.041306,0.041306,0.016481,0.016481,33,33,, +16018,1,0.52404,1,0,0,1,1,RFF,3,2,S I 275/W M 14,RAMP,1597207,0,0.524,0,,0.58,7,0.571681,,0.571681,,55,,19000,,4313,,9500,,6129,,6536,,6528,,0.761792,,0.571681,,0.761792,,0.642466,,0.571681,,0.642466,,0.927159,,0.571681,,0.927159,,0.571681,,0.571681,,0.571681,,,,,,,,0.761792,,0.642466,,0.927159,,0.571681,,0.571681,,0.322865,,0.287067,,0.372475,,0.265831,,0.143397,,41.274295,,48.940221,,33.912648,,55,,55,,,,,,,,,,,,6536,,0.571681,,0.571681,,0.571681,,0.571681,,0.265831,,55,,, +16122,-1,0.365785,0,3,0,1,1,,3,2,S I 275,,1607610,22.156,22.522,0,,0.58,7,,0.337647,,0.337647,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.364869,,0.337647,,0.364869,,0.349744,,0.337647,,0.349744,,0.517641,,0.337647,,0.517641,,0.337647,,0.337647,,0.337647,,,,,,,,0.364869,,0.349744,,0.517641,,0.337647,,0.337647,,0.175302,,0.170764,,0.221134,,0.167135,,0.090883,,60.150615,,62.751895,,42.39826,,65,,65,,,,,,,,,,,,22704,,0.337647,,0.337647,,0.337647,,0.337647,,0.167135,,65,, +16381,-1,0.306211,0,3,0,1,1,,3,2,S I 275,,1607610,21.85,22.156,0,,0.58,7,,0.282656,,0.282656,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.283744,,0.282656,,0.283744,,0.283187,,0.282656,,0.283187,,0.295796,,0.282656,,0.295796,,0.282656,,0.282656,,0.282656,,,,,,,,0.283744,,0.283187,,0.295796,,0.282656,,0.282656,,0.140241,,0.140074,,0.143857,,0.139915,,0.076082,,64.750828,,64.878072,,62.112623,,65,,65,,,,,,,,,,,,22704,,0.282656,,0.282656,,0.282656,,0.282656,,0.139915,,65,, +16458,1,0.258964,3,0,0,1,1,,3,2,N I 275,,1607208,22.04,22.299,0,,0.58,7,0.239043,,0.239043,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.402673,,0.239043,,0.402673,,0.248724,,0.239043,,0.248724,,0.287128,,0.239043,,0.287128,,0.239043,,0.239043,,0.239043,,,,,,,,0.402673,,0.248724,,0.287128,,0.239043,,0.239043,,0.167415,,0.121231,,0.132752,,0.118326,,0.064342,,38.586664,,62.47005,,54.114669,,65,,65,,,,,,,,,,,,22704,,0.239043,,0.239043,,0.239043,,0.239043,,0.118326,,65,,, +16620,1,0.352827,3,0,0,1,2,,3,2,E M 14,,1606205,6.1,6.452,0,,0.58,7,0.325686,,0.325686,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.36711,,0.325686,,0.36711,,0.326607,,0.325686,,0.326607,,0.340516,,0.325686,,0.340516,,0.325686,,0.325686,,0.325686,,,,,,,,0.36711,,0.326607,,0.340516,,0.325686,,0.325686,,0.173642,,0.161491,,0.165664,,0.161215,,0.087664,,57.665636,,64.816822,,62.169234,,65,,65,,,,,,,,,,,,22704,,0.325686,,0.325686,,0.325686,,0.325686,,0.161215,,65,,, +16629,-1,0.158167,0,3,0,1,2,,3,2,W M 14,,1606204,6.313,6.471,0,,0.58,7,,0.146,,0.146,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.148754,,0.146,,0.148754,,0.146181,,0.146,,0.146181,,0.157919,,0.146,,0.157919,,0.146,,0.146,,0.146,,,,,,,,0.148754,,0.146181,,0.157919,,0.146,,0.146,,0.073096,,0.072324,,0.075846,,0.07227,,0.039298,,63.796667,,64.919748,,60.094408,,65,,65,,,,,,,,,,,,22704,,0.146,,0.146,,0.146,,0.146,,0.07227,,65,, +16993,1,0.263498,1,0,0,1,1,RFS,3,2,N I 275/W M 14,RAMP,1607710,0,0.263,0,,0.22,6,0.35133,,0.35133,,45,,14750,,3348,,7375,,4758,,5074,,5068,,0.351343,,0.35133,,0.351343,,0.351331,,0.35133,,0.351331,,0.351345,,0.35133,,0.351345,,0.35133,,0.35133,,0.35133,,,,,,,,0.351343,,0.351331,,0.351345,,0.35133,,0.35133,,0.152832,,0.152829,,0.152833,,0.152829,,0.081684,,44.998423,,44.99987,,44.9981,,45,,45,,,,,,,,,,,,5074,,0.35133,,0.35133,,0.35133,,0.35133,,0.152829,,45,,, +17064,1,0.201832,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0.627,0.829,0,,0.58,7,0.201832,,0.201832,,60,,19000,,4313,,9500,,6129,,6536,,6528,,0.257703,,0.201832,,0.257703,,0.211165,,0.201832,,0.211165,,0.254537,,0.201832,,0.254537,,0.201832,,0.201832,,0.201832,,,,,,,,0.257703,,0.211165,,0.254537,,0.201832,,0.201832,,0.113641,,0.099679,,0.112691,,0.096879,,0.052476,,46.991831,,57.348294,,47.57636,,60,,60,,,,,,,,,,,,6536,,0.201832,,0.201832,,0.201832,,0.201832,,0.096879,,60,,, +18859,0,0.492467,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,1.035,1.528,0,10.552857,6,4.5,0.895394,0.895394,0.895394,0.895394,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.894128,1.349078,0.895394,0.895394,1.894128,1.349078,1.357111,1.256633,0.895394,0.895394,1.357111,1.256633,1.844113,2.068463,0.895394,0.895394,1.844113,2.068463,0.895394,0.895394,0.895394,0.895394,0.895394,0.895394,,,,,,,1.894128,1.349078,1.357111,1.256633,1.844113,2.068463,0.895394,0.895394,0.895394,0.895394,0.656882,0.493368,0.495777,0.465634,0.641878,0.709183,0.357262,0.357262,0.18848,0.18848,15.599792,21.902359,21.772724,23.513624,16.022877,14.285,33,33,33,33,,,,,,,,,,,2580,2580,0.895394,0.895394,0.895394,0.895394,0.895394,0.895394,0.895394,0.895394,0.357262,0.357262,33,33,, +16931,-1,0.241626,0,3,0,1,2,,3,2,W M 14,,1606204,6.071,6.313,0,,0.58,7,,0.223039,,0.223039,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.223788,,0.223039,,0.223788,,0.223072,,0.223039,,0.223072,,0.225225,,0.223039,,0.225225,,0.223039,,0.223039,,0.223039,,,,,,,,0.223788,,0.223072,,0.225225,,0.223039,,0.223039,,0.110629,,0.110414,,0.11106,,0.110404,,0.060035,,64.78249,,64.990466,,64.369088,,65,,65,,,,,,,,,,,,22704,,0.223039,,0.223039,,0.223039,,0.223039,,0.110404,,65,, +16019,1,0.256297,1,0,0,1,1,RFS,3,2,W M 14/S I 275,RAMP,1597205,0,0.256,0,,0.22,6,0.341729,,0.341729,,45,,14750,,3348,,7375,,4758,,5074,,5068,,0.345216,,0.341729,,0.345216,,0.342742,,0.341729,,0.342742,,0.377489,,0.341729,,0.377489,,0.341729,,0.341729,,0.341729,,,,,,,,0.345216,,0.342742,,0.377489,,0.341729,,0.341729,,0.149698,,0.148956,,0.15938,,0.148652,,0.079452,,44.545473,,44.866988,,40.73712,,45,,45,,,,,,,,,,,,5074,,0.341729,,0.341729,,0.341729,,0.341729,,0.148652,,45,,, +16970,0,0.148377,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,1.455,1.603,0,3.179501,6,4.5,0.269776,0.269776,0.269776,0.269776,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.463229,0.320615,0.269776,0.269776,0.463229,0.320615,0.300315,0.311225,0.269776,0.269776,0.300315,0.311225,0.467625,0.69148,0.269776,0.269776,0.467625,0.69148,0.269776,0.269776,0.269776,0.269776,0.269776,0.269776,,,,,,,0.463229,0.320615,0.300315,0.311225,0.467625,0.69148,0.269776,0.269776,0.269776,0.269776,0.165677,0.122892,0.116802,0.120075,0.166995,0.234152,0.107641,0.107641,0.056788,0.056788,19.218573,27.767297,29.644232,28.605068,19.037905,12.874705,33,33,33,33,,,,,,,,,,,2580,2580,0.269776,0.269776,0.269776,0.269776,0.269776,0.269776,0.269776,0.269776,0.107641,0.107641,33,33,, +1157,0,0.089496,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.462,4.551,0,1.917762,6,4.5,0.162719,0.162719,0.162719,0.162719,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.209639,0.257939,0.162719,0.162719,0.209639,0.257939,0.198231,0.192979,0.162719,0.162719,0.198231,0.192979,0.308634,0.243787,0.162719,0.162719,0.308634,0.243787,0.162719,0.162719,0.162719,0.162719,0.162719,0.162719,,,,,,,0.209639,0.257939,0.198231,0.192979,0.308634,0.243787,0.162719,0.162719,0.162719,0.162719,0.079001,0.093491,0.075578,0.074003,0.108699,0.089245,0.064925,0.064925,0.034252,0.034252,25.614249,20.817843,27.088321,27.825526,17.398415,22.026378,33,33,33,33,,,,,,,,,,,2838,2838,0.162719,0.162719,0.162719,0.162719,0.162719,0.162719,0.162719,0.162719,0.064925,0.064925,33,33,, +3425,0,0.322093,1,1,0,2,3,,3,3,10 Mile,Rd,656510,10.498,10.82,0,6.901998,5,5,0.55216,0.55216,0.55216,0.55216,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.780795,0.619255,0.55216,0.55216,0.780795,0.619255,0.632644,0.661761,0.55216,0.55216,0.632644,0.661761,0.73161,0.941326,0.55216,0.55216,0.73161,0.941326,0.55216,0.55216,0.55216,0.55216,0.55216,0.55216,,,,,,,0.780795,0.619255,0.632644,0.661761,0.73161,0.941326,0.55216,0.55216,0.55216,0.55216,0.292215,0.243753,0.24777,0.256505,0.27746,0.340375,0.223625,0.223625,0.118254,0.118254,24.751169,31.207833,30.547333,29.203299,26.415143,20.530184,35,35,35,35,,,,,,,,,,,3784,3784,0.55216,0.55216,0.55216,0.55216,0.55216,0.55216,0.55216,0.55216,0.223625,0.223625,35,35,, +16974,-1,0.37816,0,4,0,1,1,,3,2,W I 96,,1607506,0.045,0.423,0,,0.58,7,,0.349071,,0.349071,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.37517,,0.349071,,0.37517,,0.351049,,0.349071,,0.351049,,0.367698,,0.349071,,0.367698,,0.349071,,0.349071,,0.349071,,,,,,,,0.37517,,0.351049,,0.367698,,0.349071,,0.349071,,0.18062,,0.173383,,0.178378,,0.17279,,0.093958,,60.478226,,64.633793,,61.707126,,65,,65,,,,,,,,,,,,30272,,0.349071,,0.349071,,0.349071,,0.349071,,0.17279,,65,, +17133,1,0.384993,1,0,0,1,1,ROF,3,2,W I 96/8 Mile,RAMP,1607509,0,0.385,0,,2.24,5,0.659988,,0.659988,,35,,14750,,3348,,7375,,4758,,5074,,5068,,1.250524,,0.659988,,1.250524,,0.930061,,0.659988,,0.930061,,1.25884,,0.659988,,1.25884,,0.659988,,0.659988,,0.659988,,,,,,,,1.250524,,0.930061,,1.25884,,0.659988,,0.659988,,0.444456,,0.348317,,0.446951,,0.267295,,0.141347,,18.471936,,24.836649,,18.349904,,35,,35,,,,,,,,,,,,5074,,0.659988,,0.659988,,0.659988,,0.659988,,0.267295,,35,,, +17522,0,0.284638,1,1,0,2,4,,3,2,Griswold,St,1680204,0.165,0.449,0,6.099395,6,4.5,0.517524,0.517524,0.517524,0.517524,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.583074,0.631635,0.517524,0.517524,0.583074,0.631635,0.571642,0.558926,0.517524,0.517524,0.571642,0.558926,0.690187,0.652319,0.517524,0.517524,0.690187,0.652319,0.517524,0.517524,0.517524,0.517524,0.517524,0.517524,,,,,,,0.583074,0.631635,0.571642,0.558926,0.690187,0.652319,0.517524,0.517524,0.517524,0.517524,0.226157,0.240726,0.222728,0.218913,0.258291,0.24693,0.206492,0.206492,0.108939,0.108939,29.290128,27.038235,29.875872,30.555559,24.744473,26.18093,33,33,33,33,,,,,,,,,,,2580,2580,0.517524,0.517524,0.517524,0.517524,0.517524,0.517524,0.517524,0.517524,0.206492,0.206492,33,33,, +17703,0,0.339359,1,1,0,2,5,,3,2,Randolph,St,1678702,0.026,0.365,0,7.271983,8,4.5,0.814462,0.814462,0.814462,0.814462,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.517806,1.216004,0.814462,0.814462,1.517806,1.216004,1.062306,1.047859,0.814462,0.814462,1.062306,1.047859,1.401212,1.669788,0.814462,0.814462,1.401212,1.669788,0.814462,0.814462,0.814462,0.814462,0.814462,0.814462,,,,,,,1.517806,1.216004,1.062306,1.047859,1.401212,1.669788,0.814462,0.814462,0.814462,0.814462,0.516426,0.425886,0.379777,0.375442,0.481448,0.562021,0.305423,0.305423,0.159499,0.159499,13.415126,16.744646,19.167309,19.431584,14.531389,12.194094,25,25,25,25,,,,,,,,,,,2408,2408,0.814462,0.814462,0.814462,0.814462,0.814462,0.814462,0.814462,0.814462,0.305423,0.305423,25,25,, +17776,0,0.009751,2,1,1,2,4,,3,2,7 Mile,Rd,1698901,0.262,0.271,0,0.20896,6,4.5,0.01773,0.01773,0.01773,0.01773,33,33,15750,8250,3575,1873,7875,4125,5081,2661,5418,2838,5412,2835,0.019407,0.019626,0.01773,0.01773,0.019407,0.019626,0.018108,0.01889,0.01773,0.01773,0.018108,0.01889,0.020725,0.025202,0.01773,0.01773,0.020725,0.025202,0.01773,0.01773,0.01773,0.01773,0.01773,0.01773,,,,,,,0.019407,0.019626,0.018108,0.01889,0.020725,0.025202,0.01773,0.01773,0.01773,0.01773,0.007577,0.007643,0.007188,0.007422,0.007973,0.009316,0.007074,0.007074,0.003732,0.003732,30.14821,29.811895,32.311281,30.973877,28.230602,23.216044,33,33,33,33,,,,,,,,,,,5418,2838,0.01773,0.01773,0.01773,0.01773,0.01773,0.01773,0.01773,0.01773,0.007074,0.007074,33,33,, +18089,0,0.31945,1,1,0,2,3,,3,2,Center,St,5495471,5.96,6.28,0,6.845365,5,5,0.547629,0.547629,0.547629,0.547629,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.723299,0.802182,0.547629,0.547629,0.723299,0.802182,0.656638,0.627227,0.547629,0.547629,0.656638,0.627227,0.991665,0.870775,0.547629,0.547629,0.991665,0.870775,0.547629,0.547629,0.547629,0.547629,0.547629,0.547629,,,,,,,0.723299,0.802182,0.656638,0.627227,0.991665,0.870775,0.547629,0.547629,0.547629,0.547629,0.274491,0.298156,0.254492,0.245669,0.355001,0.318734,0.22179,0.22179,0.117284,0.117284,26.499444,23.893596,29.189626,30.55834,19.328125,22.011454,35,35,35,35,,,,,,,,,,,3784,3784,0.547629,0.547629,0.547629,0.547629,0.547629,0.547629,0.547629,0.547629,0.22179,0.22179,35,35,, +18276,0,0.424568,1,1,1,2,4,,4,2,6 Mile,Rd,1680701,4.607,5.032,0,9.097884,4.5,4.5,0.67037,0.67037,0.67037,0.67037,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,1.004784,0.719706,0.67037,0.67037,1.004784,0.719706,0.741375,0.729357,0.67037,0.67037,0.741375,0.729357,0.88199,1.047604,0.67037,0.67037,0.88199,1.047604,0.67037,0.67037,0.67037,0.67037,0.67037,0.67037,,,,,,,1.004784,0.719706,0.741375,0.729357,0.88199,1.047604,0.67037,0.67037,0.67037,0.67037,0.377858,0.292334,0.298835,0.295229,0.341019,0.390703,0.277533,0.277533,0.147258,0.147258,25.352778,35.395104,34.360586,34.92674,28.882512,24.316523,38,38,38,38,,,,,,,,,,,3406,3406,0.67037,0.67037,0.67037,0.67037,0.67037,0.67037,0.67037,0.67037,0.277533,0.277533,38,38,, +19069,0,0.623061,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,3.986,4.609,0,13.351306,6,4.5,1.132838,1.132838,1.132838,1.132838,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.281981,1.338567,1.132838,1.132838,1.281981,1.338567,1.314015,1.319189,1.132838,1.132838,1.314015,1.319189,1.886116,1.587875,1.132838,1.132838,1.886116,1.587875,1.132838,1.132838,1.132838,1.132838,1.132838,1.132838,,,,,,,1.281981,1.338567,1.314015,1.319189,1.886116,1.587875,1.132838,1.132838,1.132838,1.132838,0.496745,0.513721,0.506355,0.507908,0.677986,0.588513,0.452002,0.452002,0.238462,0.238462,29.160857,27.928121,28.449955,28.338372,19.82044,23.543205,33,33,33,33,,,,,,,,,,,5418,5418,1.132838,1.132838,1.132838,1.132838,1.132838,1.132838,1.132838,1.132838,0.452002,0.452002,33,33,, +20938,0,0.086314,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0.428,0.514,0,1.84958,5,5,0.147966,0.147966,0.147966,0.147966,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.307321,0.255463,0.147966,0.147966,0.307321,0.255463,0.229383,0.211413,0.147966,0.147966,0.229383,0.211413,0.363103,0.348691,0.147966,0.147966,0.363103,0.348691,0.147966,0.147966,0.147966,0.147966,0.147966,0.147966,,,,,,,0.307321,0.255463,0.229383,0.211413,0.363103,0.348691,0.147966,0.147966,0.147966,0.147966,0.107733,0.092175,0.084351,0.07896,0.124467,0.120144,0.059926,0.059926,0.031689,0.031689,16.851497,20.272325,22.577228,24.496229,14.262687,14.852208,35,35,35,35,,,,,,,,,,,3784,3784,0.147966,0.147966,0.147966,0.147966,0.147966,0.147966,0.147966,0.147966,0.059926,0.059926,35,35,, +26869,0,0.524922,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.248331,0.15,4,3.149533,3.149533,3.149533,3.149533,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,,,,,,,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,1.039346,1.039346,1.039346,1.039346,1.039346,1.039346,1.039346,1.039346,0.530171,0.530171,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,3.149533,1.039346,1.039346,10,10,, +26876,0,0.280036,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.000764,0.15,4,1.680214,1.680214,1.680214,1.680214,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,,,,,,,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,0.554471,0.554471,0.554471,0.554471,0.554471,0.554471,0.554471,0.554471,0.282836,0.282836,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,1.680214,0.554471,0.554471,10,10,, +27234,0,0.379593,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.134125,0.15,4,2.277555,2.277555,2.277555,2.277555,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.277556,2.277555,2.277555,2.277555,2.277556,2.277555,2.277555,2.277555,2.277555,2.277555,2.277555,2.277555,2.277555,2.277556,2.277555,2.277555,2.277555,2.277556,2.277555,2.277555,2.277555,2.277555,2.277555,2.277555,,,,,,,2.277556,2.277555,2.277555,2.277555,2.277555,2.277556,2.277555,2.277555,2.277555,2.277555,0.751593,0.751593,0.751593,0.751593,0.751593,0.751593,0.751593,0.751593,0.383388,0.383388,9.999996,10,10,10,10,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,2.277555,2.277555,2.277555,2.277555,2.277555,2.277555,2.277555,2.277555,0.751593,0.751593,10,10,, +31699,0,0.645678,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.835956,0.15,4,2.582712,2.582712,2.582712,2.582712,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,,,,,,,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,0.891036,0.891036,0.891036,0.891036,0.891036,0.891036,0.891036,0.891036,0.458431,0.458431,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,2.582712,0.891036,0.891036,15,15,, +31773,0,0.491852,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.539688,0.15,4,2.951113,2.951113,2.951113,2.951113,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,,,,,,,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,0.973867,0.973867,0.973867,0.973867,0.973867,0.973867,0.973867,0.973867,0.496771,0.496771,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,2.951113,0.973867,0.973867,10,10,, +31776,0,0.558545,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.968816,0.15,4,3.351269,3.351269,3.351269,3.351269,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,,,,,,,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,1.105919,1.105919,1.105919,1.105919,1.105919,1.105919,1.105919,1.105919,0.56413,0.56413,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,3.351269,1.105919,1.105919,10,10,, +31779,0,0.353307,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.570868,0.15,4,2.119843,2.119843,2.119843,2.119843,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,,,,,,,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,0.699548,0.699548,0.699548,0.699548,0.699548,0.699548,0.699548,0.699548,0.35684,0.35684,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,2.119843,0.699548,0.699548,10,10,, +31780,0,0.321459,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.88841,0.15,4,1.928755,1.928755,1.928755,1.928755,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,,,,,,,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,0.636489,0.636489,0.636489,0.636489,0.636489,0.636489,0.636489,0.636489,0.324674,0.324674,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,1.928755,0.636489,0.636489,10,10,, +33608,0,0.845713,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.122417,0.15,4,3.382851,3.382851,3.382851,3.382851,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,,,,,,,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,1.167084,1.167084,1.167084,1.167084,1.167084,1.167084,1.167084,1.167084,0.600456,0.600456,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,3.382851,1.167084,1.167084,15,15,, +33948,0,0.476419,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.208981,0.15,4,2.858515,2.858515,2.858515,2.858515,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,,,,,,,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,0.94331,0.94331,0.94331,0.94331,0.94331,0.94331,0.94331,0.94331,0.481183,0.481183,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,2.858515,0.94331,0.94331,10,10,, +18102,0,0.23383,2,2,0,2,4,,3,2,Main,St,1680704,1.712,1.946,0,5.010632,6,4.5,0.425145,0.425145,0.425145,0.425145,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.425562,0.42546,0.425145,0.425145,0.425562,0.42546,0.425179,0.425232,0.425145,0.425145,0.425179,0.425232,0.426401,0.42688,0.425145,0.425145,0.426401,0.42688,0.425145,0.425145,0.425145,0.425145,0.425145,0.425145,,,,,,,0.425562,0.42546,0.425179,0.425232,0.426401,0.42688,0.425145,0.425145,0.425145,0.425145,0.169758,0.169727,0.169643,0.169659,0.17001,0.170153,0.169633,0.169633,0.089493,0.089493,32.967652,32.975534,32.99734,32.993217,32.90276,32.865816,33,33,33,33,,,,,,,,,,,5160,5160,0.425145,0.425145,0.425145,0.425145,0.425145,0.425145,0.425145,0.425145,0.169633,0.169633,33,33,, +18112,0,0.551331,1,1,0,2,3,,4,2,Sheldon,Rd,5495471,4.404,4.955,0,11.814228,3.7,5,0.826996,0.826996,0.826996,0.826996,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.369254,1.423395,0.826996,0.826996,1.369254,1.423395,1.026125,0.98758,0.826996,0.826996,1.026125,0.98758,1.613424,1.381961,0.826996,0.826996,1.613424,1.381961,0.826996,0.826996,0.826996,0.826996,0.826996,0.826996,,,,,,,1.369254,1.423395,1.026125,0.98758,1.613424,1.381961,0.826996,0.826996,0.826996,0.826996,0.510016,0.526258,0.407077,0.395513,0.583267,0.513828,0.347338,0.347338,0.184696,0.184696,24.159016,23.240091,32.237642,33.495861,20.50288,23.936877,40,40,40,40,,,,,,,,,,,3784,3784,0.826996,0.826996,0.826996,0.826996,0.826996,0.826996,0.826996,0.826996,0.347338,0.347338,40,40,, +18331,0,0.199337,1,1,0,2,4,,3,2,7 Mile,Rd,1680201,0.116,0.316,0,4.271514,6,4.5,0.362431,0.362431,0.362431,0.362431,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.406743,0.363127,0.362431,0.362431,0.406743,0.363127,0.364146,0.363283,0.362431,0.362431,0.364146,0.363283,0.386981,0.412361,0.362431,0.362431,0.386981,0.412361,0.362431,0.362431,0.362431,0.362431,0.362431,0.362431,,,,,,,0.406743,0.363127,0.364146,0.363283,0.386981,0.412361,0.362431,0.362431,0.362431,0.362431,0.157904,0.144819,0.145125,0.144866,0.151975,0.159589,0.14461,0.14461,0.076292,0.076292,29.404905,32.936828,32.844603,32.922678,30.906551,29.004294,33,33,33,33,,,,,,,,,,,2580,2580,0.362431,0.362431,0.362431,0.362431,0.362431,0.362431,0.362431,0.362431,0.14461,0.14461,33,33,, +18554,0,0.378474,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,3.489,3.867,0,8.110153,4.5,4.5,0.59759,0.59759,0.59759,0.59759,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.741463,0.600238,0.59759,0.59759,0.741463,0.600238,0.6009,0.598315,0.59759,0.59759,0.6009,0.598315,0.634584,0.752182,0.59759,0.59759,0.634584,0.752182,0.59759,0.59759,0.59759,0.59759,0.59759,0.59759,,,,,,,0.741463,0.600238,0.6009,0.598315,0.634584,0.752182,0.59759,0.59759,0.59759,0.59759,0.290564,0.248197,0.248395,0.24762,0.2585,0.29378,0.247402,0.247402,0.131271,0.131271,30.62651,37.832398,37.790668,37.953978,35.784753,30.190054,38,38,38,38,,,,,,,,,,,3096,3096,0.59759,0.59759,0.59759,0.59759,0.59759,0.59759,0.59759,0.59759,0.247402,0.247402,38,38,, +19127,0,0.549923,1,1,0,2,4,,4,2,Northville,Rd,1679402,2.363,2.913,0,11.784068,4.5,4.5,0.8683,0.8683,0.8683,0.8683,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.112417,1.207583,0.8683,0.8683,1.112417,1.207583,0.958555,0.911416,0.8683,0.8683,0.958555,0.911416,1.628763,1.133779,0.8683,0.8683,1.628763,1.133779,0.8683,0.8683,0.8683,0.8683,0.8683,0.8683,,,,,,,1.112417,1.207583,0.958555,0.911416,1.628763,1.133779,0.8683,0.8683,0.8683,0.8683,0.432711,0.461261,0.386553,0.372411,0.587615,0.43912,0.359476,0.359476,0.190737,0.190737,29.660988,27.323489,34.421998,36.202322,20.257941,29.102143,38,38,38,38,,,,,,,,,,,3096,3096,0.8683,0.8683,0.8683,0.8683,0.8683,0.8683,0.8683,0.8683,0.359476,0.359476,38,38,, +31463,0,0.287591,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.162654,0.15,4,1.150362,1.150362,1.150362,1.150362,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,,,,,,,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,0.396875,0.396875,0.396875,0.396875,0.396875,0.396875,0.396875,0.396875,0.204189,0.204189,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,1.150362,0.396875,0.396875,15,15,, +31479,0,0.244237,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.233642,0.15,4,1.46542,1.46542,1.46542,1.46542,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,,,,,,,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,0.483589,0.483589,0.483589,0.483589,0.483589,0.483589,0.483589,0.483589,0.246679,0.246679,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,1.46542,0.483589,0.483589,10,10,, +17689,0,0.517959,1,1,0,2,3,,4,2,Sheldon,Rd,5495471,3.887,4.404,0,11.099115,3.7,5,0.776938,0.776938,0.776938,0.776938,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.09581,1.103938,0.776938,0.776938,1.09581,1.103938,0.871446,0.849357,0.776938,0.776938,0.871446,0.849357,1.338119,1.118692,0.776938,0.776938,1.338119,1.118692,0.776938,0.776938,0.776938,0.776938,0.776938,0.776938,,,,,,,1.09581,1.103938,0.871446,0.849357,1.338119,1.118692,0.776938,0.776938,0.776938,0.776938,0.421975,0.424414,0.354666,0.34804,0.494668,0.42884,0.326314,0.326314,0.173516,0.173516,28.360327,28.151523,35.662012,36.589477,23.224787,27.780232,40,40,40,40,,,,,,,,,,,3784,3784,0.776938,0.776938,0.776938,0.776938,0.776938,0.776938,0.776938,0.776938,0.326314,0.326314,40,40,, +18109,0,0.356551,1,1,0,2,3,,3,2,Center,St,5495471,5.486,5.842,0,7.64038,5,5,0.61123,0.61123,0.61123,0.61123,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.205859,1.026254,0.61123,0.61123,1.205859,1.026254,0.821411,0.762438,0.61123,0.61123,0.821411,0.762438,1.254838,1.086074,0.61123,0.61123,1.254838,1.086074,0.61123,0.61123,0.61123,0.61123,0.61123,0.61123,,,,,,,1.205859,1.026254,0.821411,0.762438,1.254838,1.086074,0.61123,0.61123,0.61123,0.61123,0.425937,0.372055,0.310602,0.292911,0.44063,0.390001,0.247548,0.247548,0.130905,0.130905,17.740932,20.845784,26.044289,28.058747,17.048471,19.697614,35,35,35,35,,,,,,,,,,,3784,3784,0.61123,0.61123,0.61123,0.61123,0.61123,0.61123,0.61123,0.61123,0.247548,0.247548,35,35,, +18599,0,0.225862,1,1,0,2,5,,3,2,Main,St,1680704,1.258,1.484,0,4.839909,8,4.5,0.54207,0.54207,0.54207,0.54207,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.793129,0.713175,0.54207,0.54207,0.793129,0.713175,0.628422,0.604354,0.54207,0.54207,0.628422,0.604354,0.767179,0.836344,0.54207,0.54207,0.767179,0.836344,0.54207,0.54207,0.54207,0.54207,0.54207,0.54207,,,,,,,0.793129,0.713175,0.628422,0.604354,0.767179,0.836344,0.54207,0.54207,0.54207,0.54207,0.278594,0.254608,0.229182,0.221961,0.270809,0.291558,0.203276,0.203276,0.106155,0.106155,17.086441,19.001981,21.564726,22.423527,17.664377,16.203562,25,25,25,25,,,,,,,,,,,2408,2408,0.54207,0.54207,0.54207,0.54207,0.54207,0.54207,0.54207,0.54207,0.203276,0.203276,25,25,, +19113,0,0.21111,1,1,0,2,5,,3,2,Randolph,St,1678702,0.365,0.576,0,4.523784,8,4.5,0.506664,0.506664,0.506664,0.506664,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.637357,0.636341,0.506664,0.506664,0.637357,0.636341,0.564171,0.559766,0.506664,0.506664,0.564171,0.559766,0.745898,0.738089,0.506664,0.506664,0.745898,0.738089,0.506664,0.506664,0.506664,0.506664,0.506664,0.506664,,,,,,,0.637357,0.636341,0.564171,0.559766,0.745898,0.738089,0.506664,0.506664,0.506664,0.506664,0.229207,0.228902,0.207251,0.20593,0.261769,0.259426,0.189999,0.189999,0.099222,0.099222,19.873635,19.90537,22.451687,22.628385,16.981667,17.161343,25,25,25,25,,,,,,,,,,,2408,2408,0.506664,0.506664,0.506664,0.506664,0.506664,0.506664,0.506664,0.506664,0.189999,0.189999,25,25,, +22445,0,0.219636,1,1,0,2,4,,3,2,Edward Hines,Dr,4705216,0,0.22,0,4.70648,6,4.5,0.399338,0.399338,0.399338,0.399338,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.669446,0.470558,0.399338,0.399338,0.669446,0.470558,0.464184,0.461373,0.399338,0.399338,0.464184,0.461373,0.59395,0.674406,0.399338,0.399338,0.59395,0.674406,0.399338,0.399338,0.399338,0.399338,0.399338,0.399338,,,,,,,0.669446,0.470558,0.464184,0.461373,0.59395,0.674406,0.399338,0.399338,0.399338,0.399338,0.240368,0.180702,0.17879,0.177946,0.217719,0.241856,0.159336,0.159336,0.084061,0.084061,19.685138,28.005373,28.389926,28.562895,22.187314,19.540372,33,33,33,33,,,,,,,,,,,2580,2580,0.399338,0.399338,0.399338,0.399338,0.399338,0.399338,0.399338,0.399338,0.159336,0.159336,33,33,, +33946,0,0.396261,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.491312,0.15,4,2.377567,2.377567,2.377567,2.377567,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,,,,,,,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,0.784597,0.784597,0.784597,0.784597,0.784597,0.784597,0.784597,0.784597,0.400224,0.400224,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,2.377567,0.784597,0.784597,10,10,, +17711,0,0.071016,1,1,0,2,5,,3,2,Rogers,St,1680301,0.206,0.277,0,1.521781,8,4.5,0.170439,0.170439,0.170439,0.170439,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.171486,0.171819,0.170439,0.170439,0.171486,0.171819,0.171106,0.170592,0.170439,0.170439,0.171106,0.170592,0.171416,0.171615,0.170439,0.170439,0.171416,0.171615,0.170439,0.170439,0.170439,0.170439,0.170439,0.170439,,,,,,,0.171486,0.171819,0.171106,0.170592,0.171416,0.171615,0.170439,0.170439,0.170439,0.170439,0.064229,0.064329,0.064115,0.06396,0.064208,0.064267,0.063915,0.063915,0.033378,0.033378,24.847444,24.799269,24.902617,24.977692,24.85761,24.828786,25,25,25,25,,,,,,,,,,,2408,2408,0.170439,0.170439,0.170439,0.170439,0.170439,0.170439,0.170439,0.170439,0.063915,0.063915,25,25,, +18699,0,0.113382,1,1,0,2,5,,3,2,Main,St,1680704,1.145,1.258,0,2.429608,8,4.5,0.272116,0.272116,0.272116,0.272116,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.273787,0.274319,0.272116,0.272116,0.273787,0.274319,0.27318,0.272359,0.272116,0.272116,0.27318,0.272359,0.273675,0.273993,0.272116,0.272116,0.273675,0.273993,0.272116,0.272116,0.272116,0.272116,0.272116,0.272116,,,,,,,0.273787,0.274319,0.27318,0.272359,0.273675,0.273993,0.272116,0.272116,0.272116,0.272116,0.102545,0.102704,0.102363,0.102116,0.102511,0.102606,0.102044,0.102044,0.053289,0.053289,24.847444,24.799269,24.902617,24.977692,24.85761,24.828786,25,25,25,25,,,,,,,,,,,2408,2408,0.272116,0.272116,0.272116,0.272116,0.272116,0.272116,0.272116,0.272116,0.102044,0.102044,25,25,, +19064,0,0.063783,1,1,0,2,4,,3,2,Fairbrook,St,1680703,3.223,3.286,0,1.36678,6,4.5,0.115969,0.115969,0.115969,0.115969,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.19441,0.136652,0.115969,0.115969,0.19441,0.136652,0.134801,0.133984,0.115969,0.115969,0.134801,0.133984,0.172485,0.19585,0.115969,0.115969,0.172485,0.19585,0.115969,0.115969,0.115969,0.115969,0.115969,0.115969,,,,,,,0.19441,0.136652,0.134801,0.133984,0.172485,0.19585,0.115969,0.115969,0.115969,0.115969,0.069804,0.052476,0.051921,0.051676,0.063227,0.070236,0.046272,0.046272,0.024412,0.024412,19.685138,28.005373,28.389926,28.562895,22.187314,19.540372,33,33,33,33,,,,,,,,,,,2580,2580,0.115969,0.115969,0.115969,0.115969,0.115969,0.115969,0.115969,0.115969,0.046272,0.046272,33,33,, +31476,0,0.093793,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.009839,0.15,4,0.562755,0.562755,0.562755,0.562755,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,,,,,,,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.185709,0.185709,0.185709,0.185709,0.185709,0.185709,0.185709,0.185709,0.09473,0.09473,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.562755,0.185709,0.185709,10,10,, +31478,0,0.065855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.411186,0.15,4,0.395132,0.395132,0.395132,0.395132,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,,,,,,,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.130394,0.130394,0.130394,0.130394,0.130394,0.130394,0.130394,0.130394,0.066514,0.066514,10,9.999999,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.395132,0.130394,0.130394,10,10,, +33945,0,0.262035,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.615042,0.15,4,1.572212,1.572212,1.572212,1.572212,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,,,,,,,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,0.51883,0.51883,0.51883,0.51883,0.51883,0.51883,0.51883,0.51883,0.264656,0.264656,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,1.572212,0.51883,0.51883,10,10,, +17837,0,0.20577,1,1,0,2,5,,3,2,Rogers,St,1680301,0,0.206,0,4.409355,8,4.5,0.493848,0.493848,0.493848,0.493848,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.806503,0.663933,0.493848,0.493848,0.806503,0.663933,0.663795,0.620253,0.493848,0.493848,0.663795,0.620253,0.802384,0.905038,0.493848,0.493848,0.802384,0.905038,0.493848,0.493848,0.493848,0.493848,0.493848,0.493848,,,,,,,0.806503,0.663933,0.663795,0.620253,0.802384,0.905038,0.493848,0.493848,0.493848,0.493848,0.27899,0.236218,0.236177,0.223114,0.277754,0.30855,0.185193,0.185193,0.096712,0.096712,15.3083,18.595554,18.599417,19.905109,15.386886,13.641629,25,25,25,25,,,,,,,,,,,2408,2408,0.493848,0.493848,0.493848,0.493848,0.493848,0.493848,0.493848,0.493848,0.185193,0.185193,25,25,, +17682,0,0.530425,1,1,0,2,3,,3,2,Sheldon,Rd,5495471,4.955,5.486,0,11.366241,5,5,0.909299,0.909299,0.909299,0.909299,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.147651,0.989142,0.909299,0.909299,1.147651,0.989142,1.019714,0.979917,0.909299,0.909299,1.019714,0.979917,1.086211,1.087791,0.909299,0.909299,1.086211,1.087791,0.909299,0.909299,0.909299,0.909299,0.909299,0.909299,,,,,,,1.147651,0.989142,1.019714,0.979917,1.086211,1.087791,0.909299,0.909299,0.909299,0.909299,0.439772,0.392219,0.401391,0.389452,0.42134,0.421814,0.368266,0.368266,0.194742,0.194742,27.730971,32.174838,31.210206,32.477719,29.299545,29.256977,35,35,35,35,,,,,,,,,,,3784,3784,0.909299,0.909299,0.909299,0.909299,0.909299,0.909299,0.909299,0.909299,0.368266,0.368266,35,35,, +18141,-1,0.116283,0,1,0,2,4,,3,2,7 Mile,Rd,1680201,0,0.116,0,2.491769,6,4.5,,0.211423,,0.211423,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.211828,,0.211423,,0.211828,,0.211919,,0.211423,,0.211919,,0.240549,,0.211423,,0.240549,,0.211423,,0.211423,,0.211423,,,,,,,,0.211828,,0.211919,,0.240549,,0.211423,,0.211423,,0.084479,,0.084507,,0.093096,,0.084358,,0.044504,,32.936828,,32.922678,,29.004294,,33,,33,,,,,,,,,,,,2580,,0.211423,,0.211423,,0.211423,,0.211423,,0.084358,,33,, +22442,0,0.02495,1,1,0,2,3,,3,2,Edward Hines,Dr,4705216,0.418,0.443,0,0.534653,5,5,0.042772,0.042772,0.042772,0.042772,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.069513,0.044448,0.042772,0.042772,0.069513,0.044448,0.043788,0.042876,0.042772,0.042772,0.043788,0.042876,0.066276,0.045687,0.042772,0.042772,0.066276,0.045687,0.042772,0.042772,0.042772,0.042772,0.042772,0.042772,,,,,,,0.069513,0.044448,0.043788,0.042876,0.066276,0.045687,0.042772,0.042772,0.042772,0.042772,0.025345,0.017826,0.017627,0.017354,0.024374,0.018197,0.017323,0.017323,0.00916,0.00916,21.535831,33.680075,34.1882,34.915162,22.587683,32.766675,35,35,35,35,,,,,,,,,,,3784,3784,0.042772,0.042772,0.042772,0.042772,0.042772,0.042772,0.042772,0.042772,0.017323,0.017323,35,35,, +22443,0,0.110647,1,1,0,2,3,,3,2,Edward Hines,Dr,4705216,0.307,0.418,0,2.371003,5,5,0.18968,0.18968,0.18968,0.18968,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.300195,0.214864,0.18968,0.18968,0.300195,0.214864,0.194184,0.193784,0.18968,0.18968,0.194184,0.193784,0.260583,0.318335,0.18968,0.18968,0.260583,0.318335,0.18968,0.18968,0.18968,0.18968,0.18968,0.18968,,,,,,,0.300195,0.214864,0.194184,0.193784,0.260583,0.318335,0.18968,0.18968,0.18968,0.18968,0.109975,0.084376,0.078172,0.078051,0.098091,0.115417,0.076821,0.076821,0.040623,0.040623,22.114958,30.897671,34.1882,34.258897,25.476735,20.854797,35,35,35,35,,,,,,,,,,,3784,3784,0.18968,0.18968,0.18968,0.18968,0.18968,0.18968,0.18968,0.18968,0.076821,0.076821,35,35,, +22444,0,0.087876,1,1,0,2,4,,3,2,Edward Hines,Dr,4705216,0.22,0.307,0,1.883061,6,4.5,0.159775,0.159775,0.159775,0.159775,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.267845,0.18827,0.159775,0.159775,0.267845,0.18827,0.18572,0.184595,0.159775,0.159775,0.18572,0.184595,0.237639,0.26983,0.159775,0.159775,0.237639,0.26983,0.159775,0.159775,0.159775,0.159775,0.159775,0.159775,,,,,,,0.267845,0.18827,0.18572,0.184595,0.237639,0.26983,0.159775,0.159775,0.159775,0.159775,0.096171,0.072299,0.071534,0.071196,0.087109,0.096767,0.06375,0.06375,0.033633,0.033633,19.685138,28.005373,28.389926,28.562895,22.187314,19.540372,33,33,33,33,,,,,,,,,,,2580,2580,0.159775,0.159775,0.159775,0.159775,0.159775,0.159775,0.159775,0.159775,0.06375,0.06375,33,33,, +24537,1,0.096447,1,0,0,2,4,,3,2,7 Mile,Rd,4708217,0,0.096,0,2.066715,6,4.5,0.175358,,0.175358,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.196797,,0.175358,,0.196797,,0.176187,,0.175358,,0.176187,,0.187235,,0.175358,,0.187235,,0.175358,,0.175358,,0.175358,,,,,,,,0.196797,,0.176187,,0.187235,,0.175358,,0.175358,,0.0764,,0.070217,,0.073531,,0.069968,,0.036913,,29.404905,,32.844603,,30.906551,,33,,33,,,,,,,,,,,,2580,,0.175358,,0.175358,,0.175358,,0.175358,,0.069968,,33,,, +18293,0,0.170979,1,1,0,2,4,,3,2,Main,St,1680704,1.541,1.712,0,3.66383,6,4.5,0.31087,0.31087,0.31087,0.31087,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.406446,0.4427,0.31087,0.31087,0.406446,0.4427,0.380131,0.390211,0.31087,0.31087,0.380131,0.390211,0.507608,0.506495,0.31087,0.31087,0.507608,0.506495,0.31087,0.31087,0.31087,0.31087,0.31087,0.31087,,,,,,,0.406446,0.4427,0.380131,0.390211,0.507608,0.506495,0.31087,0.31087,0.31087,0.31087,0.15271,0.163586,0.144815,0.14784,0.183059,0.182725,0.124037,0.124037,0.065438,0.065438,25.240076,23.173111,26.987346,26.29018,20.209939,20.254347,33,33,33,33,,,,,,,,,,,2580,2580,0.31087,0.31087,0.31087,0.31087,0.31087,0.31087,0.31087,0.31087,0.124037,0.124037,33,33,, +33947,0,0.202088,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.33046,0.15,4,1.212529,1.212529,1.212529,1.212529,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,,,,,,,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,0.400134,0.400135,0.400134,0.400135,0.400135,0.400135,0.400134,0.400134,0.204109,0.204109,10,9.999997,9.999999,9.999999,9.999996,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,1.212529,0.400134,0.400134,10,10,, +17673,0,0.118384,1,1,0,2,3,,3,2,Center,St,5495471,5.842,5.96,0,2.536801,5,5,0.202944,0.202944,0.202944,0.202944,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.660346,0.794377,0.202944,0.202944,0.660346,0.794377,0.473447,0.428118,0.202944,0.202944,0.473447,0.428118,0.942447,0.796735,0.202944,0.202944,0.942447,0.796735,0.202944,0.202944,0.202944,0.202944,0.202944,0.202944,,,,,,,0.660346,0.794377,0.473447,0.428118,0.942447,0.796735,0.202944,0.202944,0.202944,0.202944,0.219413,0.259622,0.163343,0.149745,0.304043,0.26033,0.082192,0.082192,0.043464,0.043464,10.756554,8.941649,15.002842,16.591323,7.53681,8.915185,35,35,35,35,,,,,,,,,,,3784,3784,0.202944,0.202944,0.202944,0.202944,0.202944,0.202944,0.202944,0.202944,0.082192,0.082192,35,35,, +18617,0,0.057273,1,1,0,2,4,,3,2,Main,St,1680704,1.484,1.541,0,1.227287,6,4.5,0.104133,0.104133,0.104133,0.104133,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.307638,0.16668,0.104133,0.104133,0.307638,0.16668,0.200919,0.176387,0.104133,0.104133,0.200919,0.176387,0.351854,0.388585,0.104133,0.104133,0.351854,0.388585,0.104133,0.104133,0.104133,0.104133,0.104133,0.104133,,,,,,,0.307638,0.16668,0.200919,0.176387,0.351854,0.388585,0.104133,0.104133,0.104133,0.104133,0.102601,0.060313,0.070585,0.063225,0.115866,0.126885,0.041549,0.041549,0.02192,0.02192,11.170271,20.6168,17.103444,19.482175,9.766554,8.843375,33,33,33,33,,,,,,,,,,,2580,2580,0.104133,0.104133,0.104133,0.104133,0.104133,0.104133,0.104133,0.104133,0.041549,0.041549,33,33,, +18140,0,0.580343,1,1,0,2,4,,4,2,Northville,Rd,1679402,1.395,1.975,0,12.435928,4.5,4.5,0.916332,0.916332,0.916332,0.916332,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.087247,1.028657,0.916332,0.916332,1.087247,1.028657,0.973091,0.952764,0.916332,0.916332,0.973091,0.952764,1.04497,1.074864,0.916332,0.916332,1.04497,1.074864,0.916332,0.916332,0.916332,0.916332,0.916332,0.916332,,,,,,,1.087247,1.028657,0.973091,0.952764,1.04497,1.074864,0.916332,0.916332,0.916332,0.916332,0.430636,0.413059,0.396389,0.390291,0.417953,0.426921,0.379361,0.379361,0.201287,0.201287,32.026389,33.850555,35.783514,36.546922,33.322095,32.395357,38,38,38,38,,,,,,,,,,,3096,3096,0.916332,0.916332,0.916332,0.916332,0.916332,0.916332,0.916332,0.916332,0.379361,0.379361,38,38,, +18603,0,0.535637,1,1,0,2,5,,4,2,Bradner,Rd,1689501,0.767,1.303,0,11.477927,5.8,4.5,1.190304,1.190304,1.190304,1.190304,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.247304,1.226496,1.190304,1.190304,1.247304,1.226496,1.202236,1.207101,1.190304,1.190304,1.202236,1.207101,1.252879,1.268119,1.190304,1.190304,1.252879,1.268119,1.190304,1.190304,1.190304,1.190304,1.190304,1.190304,,,,,,,1.247304,1.226496,1.202236,1.207101,1.252879,1.268119,1.190304,1.190304,1.190304,1.190304,0.470606,0.464363,0.457086,0.458545,0.472278,0.47685,0.453506,0.453506,0.237466,0.237466,25.766127,26.203262,26.73201,26.624284,25.651479,25.343201,27,27,27,27,,,,,,,,,,,2580,2580,1.190304,1.190304,1.190304,1.190304,1.190304,1.190304,1.190304,1.190304,0.453506,0.453506,27,27,, +18717,0,0.442085,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,4.165,4.607,0,9.473244,4.5,4.5,0.698029,0.698029,0.698029,0.698029,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.266009,0.811074,0.698029,0.698029,1.266009,0.811074,0.793907,0.764991,0.698029,0.698029,0.793907,0.764991,1.060942,1.28198,0.698029,0.698029,1.060942,1.28198,0.698029,0.698029,0.698029,0.698029,0.698029,0.698029,,,,,,,1.266009,0.811074,0.793907,0.764991,1.060942,1.28198,0.698029,0.698029,0.698029,0.698029,0.459378,0.322897,0.317747,0.309072,0.397858,0.464169,0.288984,0.288984,0.153334,0.153334,20.951734,32.703668,33.410813,34.673733,25.001455,20.690715,38,38,38,38,,,,,,,,,,,3096,3096,0.698029,0.698029,0.698029,0.698029,0.698029,0.698029,0.698029,0.698029,0.288984,0.288984,38,38,, +31465,0,0.519301,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.127881,0.15,4,2.077204,2.077204,2.077204,2.077204,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,,,,,,,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,0.716636,0.716636,0.716636,0.716636,0.716636,0.716636,0.716636,0.716636,0.368704,0.368704,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,2.077204,0.716636,0.716636,15,15,, +31770,0,0.480311,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.292386,0.15,4,1.921245,1.921245,1.921245,1.921245,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,,,,,,,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,0.66283,0.66283,0.66283,0.66283,0.66283,0.66283,0.66283,0.66283,0.341021,0.341021,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,1.921245,0.66283,0.66283,15,15,, +31754,0,0.359108,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.695163,0.15,4,1.43643,1.43643,1.43643,1.43643,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,,,,,,,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,0.495569,0.495569,0.495569,0.495569,0.495569,0.495569,0.495569,0.495569,0.254966,0.254966,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,1.43643,0.495569,0.495569,15,15,, +17717,0,0.38804,1,1,0,2,4,,4,2,Northville,Rd,1679402,1.975,2.363,0,8.315146,4.5,4.5,0.612695,0.612695,0.612695,0.612695,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.891766,0.705371,0.612695,0.612695,0.891766,0.705371,0.676382,0.643119,0.612695,0.612695,0.676382,0.643119,0.769678,0.929442,0.612695,0.612695,0.769678,0.929442,0.612695,0.612695,0.612695,0.612695,0.612695,0.612695,,,,,,,0.891766,0.705371,0.676382,0.643119,0.769678,0.929442,0.612695,0.612695,0.612695,0.612695,0.337377,0.281458,0.272762,0.262783,0.300751,0.34868,0.253656,0.253656,0.134589,0.134589,26.108199,33.007344,34.421998,36.202322,30.24953,25.04988,38,38,38,38,,,,,,,,,,,3096,3096,0.612695,0.612695,0.612695,0.612695,0.612695,0.612695,0.612695,0.612695,0.253656,0.253656,38,38,, +19169,0,0.297931,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,3.867,4.165,0,6.384235,4.5,4.5,0.470417,0.470417,0.470417,0.470417,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.588694,0.473482,0.470417,0.470417,0.588694,0.473482,0.473023,0.470988,0.470417,0.470417,0.473023,0.470988,0.502354,0.592111,0.470417,0.470417,0.502354,0.592111,0.470417,0.470417,0.470417,0.470417,0.470417,0.470417,,,,,,,0.588694,0.473482,0.473023,0.470988,0.502354,0.592111,0.470417,0.470417,0.470417,0.470417,0.230236,0.195672,0.195535,0.194924,0.204334,0.231261,0.194753,0.194753,0.103335,0.103335,30.365288,37.754003,37.790668,37.953978,35.584171,30.190054,38,38,38,38,,,,,,,,,,,3096,3096,0.470417,0.470417,0.470417,0.470417,0.470417,0.470417,0.470417,0.470417,0.194753,0.194753,38,38,, +31701,0,0.093785,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.009681,0.15,4,0.37514,0.37514,0.37514,0.37514,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.375141,0.375141,0.37514,0.37514,0.375141,0.375141,0.37514,0.37514,0.37514,0.37514,0.37514,0.37514,0.375141,0.375141,0.37514,0.37514,0.375141,0.375141,0.37514,0.37514,0.37514,0.37514,0.37514,0.37514,,,,,,,0.375141,0.375141,0.37514,0.37514,0.375141,0.375141,0.37514,0.37514,0.37514,0.37514,0.129423,0.129423,0.129423,0.129423,0.129423,0.129423,0.129423,0.129423,0.066587,0.066587,14.999998,14.999998,14.999999,14.999999,14.999997,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,0.37514,0.37514,0.37514,0.37514,0.37514,0.37514,0.37514,0.37514,0.129423,0.129423,15,15,, +17777,-1,0.281217,0,2,0,2,4,DV2,3,2,Main,St,1680704,1.946,2.227,0,6.026069,6,4.5,,0.511303,,0.511303,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.515732,,0.511303,,0.515732,,0.512542,,0.511303,,0.512542,,0.520739,,0.511303,,0.520739,,0.511303,,0.511303,,0.511303,,,,,,,,0.515732,,0.512542,,0.520739,,0.511303,,0.511303,,0.205338,,0.204382,,0.206841,,0.20401,,0.107629,,32.716614,,32.920217,,32.40202,,33,,33,,,,,,,,,,,,5160,,0.511303,,0.511303,,0.511303,,0.511303,,0.20401,,33,, +22420,-1,0.174459,0,2,0,2,4,DV2,3,2,Main,St,4700528,0.054,0.228,0,3.738415,6,4.5,,0.317199,,0.317199,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.318734,,0.317199,,0.318734,,0.317891,,0.317199,,0.317891,,0.327798,,0.317199,,0.327798,,0.317199,,0.317199,,0.317199,,,,,,,,0.318734,,0.317891,,0.327798,,0.317199,,0.317199,,0.127023,,0.12677,,0.129742,,0.126562,,0.06677,,32.841102,,32.928145,,31.932935,,33,,33,,,,,,,,,,,,5160,,0.317199,,0.317199,,0.317199,,0.317199,,0.126562,,33,, +31781,0,0.599151,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.838954,0.15,4,3.594907,3.594907,3.594907,3.594907,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,,,,,,,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,1.186319,1.186319,1.186319,1.186319,1.186319,1.186319,1.186319,1.186319,0.605143,0.605143,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,3.594907,1.186319,1.186319,10,10,, +17775,0,0.261568,2,1,1,2,4,,3,2,7 Mile,Rd,1698901,0,0.262,0,5.605029,6,4.5,0.475578,0.475578,0.475578,0.475578,33,33,15750,8250,3575,1873,7875,4125,5081,2661,5418,2838,5412,2835,0.518557,0.80011,0.475578,0.475578,0.518557,0.80011,0.487243,0.572432,0.475578,0.475578,0.487243,0.572432,0.568183,1.125134,0.475578,0.475578,0.568183,1.125134,0.475578,0.475578,0.475578,0.475578,0.475578,0.475578,,,,,,,0.518557,0.80011,0.487243,0.572432,0.568183,1.125134,0.475578,0.475578,0.475578,0.475578,0.202649,0.287115,0.193255,0.218812,0.217537,0.384622,0.189756,0.189756,0.100109,0.100109,30.264918,19.614917,32.209948,27.416519,27.621551,13.948638,33,33,33,33,,,,,,,,,,,5418,2838,0.475578,0.475578,0.475578,0.475578,0.475578,0.475578,0.475578,0.475578,0.189756,0.189756,33,33,, +18339,1,0.05259,1,0,0,2,4,DV2,3,2,Main,St,1679402,2.956,3.009,0,1.126928,6,4.5,0.095618,,0.095618,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.150673,,0.095618,,0.150673,,0.127792,,0.095618,,0.127792,,0.2757,,0.095618,,0.2757,,0.095618,,0.095618,,0.095618,,,,,,,,0.150673,,0.127792,,0.2757,,0.095618,,0.095618,,0.054668,,0.047804,,0.092176,,0.038152,,0.020128,,20.942011,,24.69172,,11.445054,,33,,33,,,,,,,,,,,,2580,,0.095618,,0.095618,,0.095618,,0.095618,,0.038152,,33,,, +21875,-1,0.053837,0,1,0,2,4,DV2,3,2,Main,St,4700528,0,0.054,0,1.15364,6,4.5,,0.097885,,0.097885,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.302424,,0.097885,,0.302424,,0.13726,,0.097885,,0.13726,,0.298769,,0.097885,,0.298769,,0.097885,,0.097885,,0.097885,,,,,,,,0.302424,,0.13726,,0.298769,,0.097885,,0.097885,,0.100418,,0.050868,,0.099321,,0.039056,,0.020605,,10.681024,,23.533463,,10.811682,,33,,33,,,,,,,,,,,,2580,,0.097885,,0.097885,,0.097885,,0.097885,,0.039056,,33,, +18676,0,0.043147,1,1,0,2,4,,3,2,Main,St,1679402,2.913,2.956,0,0.924575,6,4.5,0.078449,0.078449,0.078449,0.078449,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.123618,0.242375,0.078449,0.078449,0.123618,0.242375,0.104845,0.110005,0.078449,0.078449,0.104845,0.110005,0.226195,0.239446,0.078449,0.078449,0.226195,0.239446,0.078449,0.078449,0.078449,0.078449,0.078449,0.078449,,,,,,,0.123618,0.242375,0.104845,0.110005,0.226195,0.239446,0.078449,0.078449,0.078449,0.078449,0.044852,0.080479,0.03922,0.040768,0.075625,0.0796,0.031301,0.031301,0.016513,0.016513,20.942011,10.681024,24.69172,23.533463,11.445054,10.811682,33,33,33,33,,,,,,,,,,,2580,2580,0.078449,0.078449,0.078449,0.078449,0.078449,0.078449,0.078449,0.078449,0.031301,0.031301,33,33,, +17944,0,0.011332,1,1,0,2,4,,3,2,7 Mile,Rd,1680201,0.316,0.327,0,0.242819,6,4.5,0.020603,0.020603,0.020603,0.020603,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.020603,0.02063,0.020603,0.020603,0.020603,0.02063,0.020603,0.020651,0.020603,0.020603,0.020603,0.020651,0.020612,0.021593,0.020603,0.020603,0.020612,0.021593,0.020603,0.020603,0.020603,0.020603,0.020603,0.020603,,,,,,,0.020603,0.02063,0.020603,0.020651,0.020612,0.021593,0.020603,0.020603,0.020603,0.020603,0.008221,0.008229,0.008221,0.008235,0.008223,0.008517,0.008221,0.008221,0.004337,0.004337,32.999983,32.956779,33,32.922678,32.98466,31.487434,33,33,33,33,,,,,,,,,,,2580,2580,0.020603,0.020603,0.020603,0.020603,0.020603,0.020603,0.020603,0.020603,0.008221,0.008221,33,33,, +22419,-1,0.105236,0,2,0,2,4,DV2,3,2,Main,St,4700528,0.228,0.333,0,2.25506,6,4.5,,0.191338,,0.191338,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.193291,,0.191338,,0.193291,,0.191615,,0.191338,,0.191615,,0.194148,,0.191338,,0.194148,,0.191338,,0.191338,,0.191338,,,,,,,,0.193291,,0.191615,,0.194148,,0.191338,,0.191338,,0.07693,,0.076427,,0.077187,,0.076344,,0.040277,,32.66662,,32.952383,,32.522508,,33,,33,,,,,,,,,,,,5160,,0.191338,,0.191338,,0.191338,,0.191338,,0.076344,,33,, +386,0,0.510253,1,1,0,2,4,,4,3,9 Mile,Rd,633603,5.209,5.719,0,10.933988,4.5,4.5,0.805662,0.805662,0.805662,0.805662,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.983384,1.432439,0.805662,0.805662,0.983384,1.432439,0.870907,0.903022,0.805662,0.805662,0.870907,0.903022,1.385941,1.22899,0.805662,0.805662,1.385941,1.22899,0.805662,0.805662,0.805662,0.805662,0.805662,0.805662,,,,,,,0.983384,1.432439,0.870907,0.903022,1.385941,1.22899,0.805662,0.805662,0.805662,0.805662,0.386861,0.521577,0.353118,0.362752,0.507628,0.460543,0.333544,0.333544,0.176977,0.176977,31.132462,21.372753,35.153183,33.903022,22.089811,24.91083,38,38,38,38,,,,,,,,,,,3096,3096,0.805662,0.805662,0.805662,0.805662,0.805662,0.805662,0.805662,0.805662,0.333544,0.333544,38,38,, +1028,0,0.377767,1,1,0,2,3,,3,3,Novi,Rd,621910,4.614,4.992,0,8.095009,5,5,0.647601,0.647601,0.647601,0.647601,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.868885,1.028513,0.647601,0.647601,0.868885,1.028513,0.792308,0.860916,0.647601,0.647601,0.792308,0.860916,1.060967,1.168274,0.647601,0.647601,1.060967,1.168274,0.647601,0.647601,0.647601,0.647601,0.647601,0.647601,,,,,,,0.868885,1.028513,0.792308,0.860916,1.060967,1.168274,0.647601,0.647601,0.647601,0.647601,0.328664,0.376552,0.305691,0.326273,0.386288,0.41848,0.262278,0.262278,0.138694,0.138694,26.086323,22.03767,28.607587,26.327789,21.363557,19.401294,35,35,35,35,,,,,,,,,,,3784,3784,0.647601,0.647601,0.647601,0.647601,0.647601,0.647601,0.647601,0.647601,0.262278,0.262278,35,35,, +1498,0,0.606509,1,1,0,2,3,,3,3,Novi,Rd,621910,4.008,4.614,0,12.996617,5,5,1.039729,1.039729,1.039729,1.039729,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.404031,1.948144,1.039729,1.039729,1.404031,1.948144,1.272059,1.435244,1.039729,1.039729,1.272059,1.435244,2.011852,2.173511,1.039729,1.039729,2.011852,2.173511,1.039729,1.039729,1.039729,1.039729,1.039729,1.039729,,,,,,,1.404031,1.948144,1.272059,1.435244,2.011852,2.173511,1.039729,1.039729,1.039729,1.039729,0.530381,0.693615,0.490789,0.539745,0.712727,0.761225,0.42109,0.42109,0.222675,0.222675,25.918604,18.679585,28.607587,25.354935,18.088074,16.742737,35,35,35,35,,,,,,,,,,,3784,3784,1.039729,1.039729,1.039729,1.039729,1.039729,1.039729,1.039729,1.039729,0.42109,0.42109,35,35,, +3103,0,0.380695,1,1,0,2,3,,4,3,10 Mile,Rd,656510,9.439,9.819,0,8.157748,3.7,5,0.571042,0.571042,0.571042,0.571042,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.882348,0.655339,0.571042,0.571042,1.882348,0.655339,0.824086,0.661781,0.571042,0.571042,0.824086,0.661781,1.314169,1.549793,0.571042,0.571042,1.314169,1.549793,0.571042,0.571042,0.571042,0.571042,0.571042,0.571042,,,,,,,1.882348,0.655339,0.824086,0.661781,1.314169,1.549793,0.571042,0.571042,0.571042,0.571042,0.633229,0.265127,0.315751,0.267059,0.462776,0.533463,0.239838,0.239838,0.127533,0.127533,12.134683,34.854794,27.717599,34.515483,17.381093,14.738541,40,40,40,40,,,,,,,,,,,3784,3784,0.571042,0.571042,0.571042,0.571042,0.571042,0.571042,0.571042,0.571042,0.239838,0.239838,40,40,, +18928,0,0.084127,1,1,0,2,4,,3,2,Griswold,St,1680204,0.449,0.533,0,1.802729,6,4.5,0.152959,0.152959,0.152959,0.152959,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.172333,0.186685,0.152959,0.152959,0.172333,0.186685,0.168954,0.165196,0.152959,0.152959,0.168954,0.165196,0.203991,0.192798,0.152959,0.152959,0.203991,0.192798,0.152959,0.152959,0.152959,0.152959,0.152959,0.152959,,,,,,,0.172333,0.186685,0.168954,0.165196,0.203991,0.192798,0.152959,0.152959,0.152959,0.152959,0.066843,0.071149,0.065829,0.064702,0.07634,0.072982,0.061031,0.061031,0.032198,0.032198,29.290128,27.038235,29.875872,30.555559,24.744473,26.18093,33,33,33,33,,,,,,,,,,,2580,2580,0.152959,0.152959,0.152959,0.152959,0.152959,0.152959,0.152959,0.152959,0.061031,0.061031,33,33,, +22149,0,0.386552,1,1,0,2,3,,3,3,8 Mile,Rd,4412702,0.776,1.162,0,8.283252,5,5,0.66266,0.66266,0.66266,0.66266,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.777542,0.67766,0.66266,0.66266,0.777542,0.67766,0.665235,0.66598,0.66266,0.66266,0.665235,0.66598,0.710159,0.784526,0.66266,0.66266,0.710159,0.784526,0.66266,0.66266,0.66266,0.66266,0.66266,0.66266,,,,,,,0.777542,0.67766,0.665235,0.66598,0.710159,0.784526,0.66266,0.66266,0.66266,0.66266,0.302842,0.272877,0.26915,0.269373,0.282627,0.304937,0.268377,0.268377,0.14192,0.14192,29.828739,34.225278,34.864507,34.825521,32.659036,29.563205,35,35,35,35,,,,,,,,,,,3784,3784,0.66266,0.66266,0.66266,0.66266,0.66266,0.66266,0.66266,0.66266,0.268377,0.268377,35,35,, +26871,0,0.533659,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.435559,0.15,4,2.134638,2.134638,2.134638,2.134638,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,,,,,,,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,0.73645,0.73645,0.73645,0.73645,0.73645,0.73645,0.73645,0.73645,0.378898,0.378898,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,2.134638,0.73645,0.73645,15,15,, +26877,0,0.282809,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.060185,0.15,4,1.696852,1.696852,1.696852,1.696852,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,,,,,,,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,0.559961,0.559961,0.559961,0.559961,0.559961,0.559961,0.559961,0.559961,0.285637,0.285637,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,1.696852,0.559961,0.559961,10,10,, +22153,0,0.499606,2,2,0,2,3,,3,3,8 Mile,Rd,4412702,0,0.499,0,10.705843,5,5,0.856467,0.856467,0.856467,0.856467,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.862499,0.856491,0.856467,0.856467,0.862499,0.856491,0.856478,0.856478,0.856467,0.856467,0.856478,0.856478,0.8574,0.862982,0.856467,0.856467,0.8574,0.862982,0.856467,0.856467,0.856467,0.856467,0.856467,0.856467,,,,,,,0.862499,0.856491,0.856478,0.856478,0.8574,0.862982,0.856467,0.856467,0.856467,0.856467,0.348679,0.346876,0.346873,0.346872,0.347149,0.348824,0.346869,0.346869,0.183427,0.183427,34.755255,34.999056,34.999552,34.999584,34.96192,34.735785,35,35,35,35,,,,,,,,,,,7568,7568,0.856467,0.856467,0.856467,0.856467,0.856467,0.856467,0.856467,0.856467,0.346869,0.346869,35,35,, +26744,0,0.269685,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.778973,0.15,4,1.618113,1.618113,1.618113,1.618113,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,,,,,,,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,0.533977,0.533977,0.533977,0.533977,0.533977,0.533977,0.533977,0.533977,0.272382,0.272382,10,9.999997,10,10,9.999996,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,1.618113,0.533977,0.533977,10,10,, +18130,0,0.025793,1,1,0,2,5,,3,3,Randolph,St,1678702,0,0.026,0,0.552715,8,4.5,0.061904,0.061904,0.061904,0.061904,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.115363,0.092424,0.061904,0.061904,0.115363,0.092424,0.080742,0.079644,0.061904,0.061904,0.080742,0.079644,0.106501,0.126914,0.061904,0.061904,0.106501,0.126914,0.061904,0.061904,0.061904,0.061904,0.061904,0.061904,,,,,,,0.115363,0.092424,0.080742,0.079644,0.106501,0.126914,0.061904,0.061904,0.061904,0.061904,0.039252,0.03237,0.028865,0.028536,0.036593,0.042717,0.023214,0.023214,0.012123,0.012123,13.415126,16.744646,19.167309,19.431584,14.531389,12.194094,25,25,25,25,,,,,,,,,,,2408,2408,0.061904,0.061904,0.061904,0.061904,0.061904,0.061904,0.061904,0.061904,0.023214,0.023214,25,25,, +3304,0,0.15304,1,1,0,2,3,,3,3,Center,St,656609,0,0.153,0,3.279419,5,5,0.262354,0.262354,0.262354,0.262354,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.346512,0.384303,0.262354,0.262354,0.346512,0.384303,0.314577,0.300487,0.262354,0.262354,0.314577,0.300487,0.475078,0.417163,0.262354,0.262354,0.475078,0.417163,0.262354,0.262354,0.262354,0.262354,0.262354,0.262354,,,,,,,0.346512,0.384303,0.314577,0.300487,0.475078,0.417163,0.262354,0.262354,0.262354,0.262354,0.131501,0.142838,0.12192,0.117693,0.170071,0.152696,0.106253,0.106253,0.056187,0.056187,26.499444,23.893596,29.189626,30.55834,19.328125,22.011454,35,35,35,35,,,,,,,,,,,3784,3784,0.262354,0.262354,0.262354,0.262354,0.262354,0.262354,0.262354,0.262354,0.106253,0.106253,35,35,, +22152,0,0.253244,2,2,0,2,3,,3,3,8 Mile,Rd,4412702,0.499,0.753,0,5.426657,5,5,0.434133,0.434133,0.434133,0.434133,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.480645,0.448947,0.434133,0.434133,0.480645,0.448947,0.445181,0.441951,0.434133,0.434133,0.445181,0.441951,0.480808,0.484968,0.434133,0.434133,0.480808,0.484968,0.434133,0.434133,0.434133,0.434133,0.434133,0.434133,,,,,,,0.480645,0.448947,0.445181,0.441951,0.480808,0.484968,0.434133,0.434133,0.434133,0.434133,0.189777,0.180268,0.179138,0.178169,0.189826,0.191074,0.175824,0.175824,0.092977,0.092977,31.613028,33.845092,34.131404,34.380825,31.60231,31.33122,35,35,35,35,,,,,,,,,,,7568,7568,0.434133,0.434133,0.434133,0.434133,0.434133,0.434133,0.434133,0.434133,0.175824,0.175824,35,35,, +26879,0,0.270826,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.803409,0.15,4,1.624955,1.624955,1.624955,1.624955,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,,,,,,,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,0.536235,0.536235,0.536235,0.536235,0.536235,0.536235,0.536235,0.536235,0.273534,0.273534,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,1.624955,0.536235,0.536235,10,10,, +30235,0,0.096096,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.059196,0.15,4,0.576575,0.576575,0.576575,0.576575,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,,,,,,,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.19027,0.19027,0.19027,0.19027,0.19027,0.19027,0.19027,0.19027,0.097057,0.097057,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.576575,0.19027,0.19027,10,10,, +22150,0,0.023123,2,2,0,2,3,,3,3,8 Mile,Rd,4412702,0.753,0.776,0,0.495501,5,5,0.03964,0.03964,0.03964,0.03964,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.044601,0.040828,0.03964,0.03964,0.044601,0.040828,0.040732,0.040513,0.03964,0.03964,0.040732,0.040513,0.043137,0.044418,0.03964,0.03964,0.043137,0.044418,0.03964,0.03964,0.03964,0.03964,0.03964,0.03964,,,,,,,0.044601,0.040828,0.040732,0.040513,0.043137,0.044418,0.03964,0.03964,0.03964,0.03964,0.017542,0.016411,0.016382,0.016316,0.017103,0.017488,0.016054,0.016054,0.00849,0.00849,31.107192,33.981652,34.06213,34.245955,32.162547,31.235369,35,35,35,35,,,,,,,,,,,7568,7568,0.03964,0.03964,0.03964,0.03964,0.03964,0.03964,0.03964,0.03964,0.016054,0.016054,35,35,, +26855,0,0.765325,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.399824,0.15,4,3.061301,3.061301,3.061301,3.061301,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,,,,,,,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,1.056149,1.056149,1.056149,1.056149,1.056149,1.056149,1.056149,1.056149,0.543381,0.543381,14.999999,15,15,15,14.999998,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,3.061301,1.056149,1.056149,15,15,, +26747,0,0.244109,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.23091,0.15,4,0.976436,0.976436,0.976436,0.976436,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.976437,0.976437,0.976436,0.976436,0.976437,0.976437,0.976437,0.976437,0.976436,0.976436,0.976437,0.976437,0.976437,0.976437,0.976436,0.976436,0.976437,0.976437,0.976436,0.976436,0.976436,0.976436,0.976436,0.976436,,,,,,,0.976437,0.976437,0.976437,0.976437,0.976437,0.976437,0.976436,0.976436,0.976436,0.976436,0.336871,0.336871,0.336871,0.336871,0.336871,0.336871,0.336871,0.336871,0.173317,0.173317,14.999995,14.999985,14.999998,14.999998,14.999987,14.999992,15,15,15,15,,,,,,,,,,,34400,34400,0.976436,0.976436,0.976436,0.976436,0.976436,0.976436,0.976436,0.976436,0.336871,0.336871,15,15,, +3441,0,0.129092,1,1,0,2,3,,4,3,10 Mile,Rd,656510,9.31,9.439,0,2.766247,3.7,5,0.193637,0.193637,0.193637,0.193637,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.392368,0.21244,0.193637,0.193637,0.392368,0.21244,0.214076,0.206763,0.193637,0.193637,0.214076,0.206763,0.233816,0.308017,0.193637,0.193637,0.233816,0.308017,0.193637,0.193637,0.193637,0.193637,0.193637,0.193637,,,,,,,0.392368,0.21244,0.214076,0.206763,0.233816,0.308017,0.193637,0.193637,0.193637,0.193637,0.140947,0.086968,0.087459,0.085265,0.093381,0.115642,0.081328,0.081328,0.043246,0.043246,19.740389,36.459655,36.181087,37.46071,33.126404,25.146303,40,40,40,40,,,,,,,,,,,3784,3784,0.193637,0.193637,0.193637,0.193637,0.193637,0.193637,0.193637,0.193637,0.081328,0.081328,40,40,, +20939,0,0.427806,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0,0.428,0,9.167272,5,5,0.733382,0.733382,0.733382,0.733382,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.151548,1.083387,0.733382,0.733382,1.151548,1.083387,0.852072,0.868196,0.733382,0.733382,0.852072,0.868196,1.260766,1.421509,0.733382,0.733382,1.260766,1.421509,0.733382,0.733382,0.733382,0.733382,0.733382,0.733382,,,,,,,1.151548,1.083387,0.852072,0.868196,1.260766,1.421509,0.733382,0.733382,0.733382,0.733382,0.422469,0.402021,0.332627,0.337464,0.455235,0.503458,0.29702,0.29702,0.157066,0.157066,22.290318,23.692695,30.124636,29.565167,20.359332,18.05712,35,35,35,35,,,,,,,,,,,3784,3784,0.733382,0.733382,0.733382,0.733382,0.733382,0.733382,0.733382,0.733382,0.29702,0.29702,35,35,, +26872,0,0.343841,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.368014,0.15,4,2.063044,2.063044,2.063044,2.063044,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,,,,,,,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,0.680805,0.680805,0.680805,0.680805,0.680805,0.680805,0.680805,0.680805,0.347279,0.347279,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,2.063044,0.680805,0.680805,10,10,, +26882,0,0.592672,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.700117,0.15,4,3.556033,3.556033,3.556033,3.556033,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,,,,,,,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,1.173491,1.173491,1.173491,1.173491,1.173491,1.173491,1.173491,1.173491,0.598599,0.598599,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,3.556033,1.173491,1.173491,10,10,, +18041,1,0.183663,1,0,0,2,4,DV2,3,2,Griswold,St,1680204,0.653,0.837,0,3.935638,6,4.5,0.333933,,0.333933,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.364741,,0.333933,,0.364741,,0.36273,,0.333933,,0.36273,,0.418223,,0.333933,,0.418223,,0.333933,,0.333933,,0.333933,,,,,,,,0.364741,,0.36273,,0.418223,,0.333933,,0.333933,,0.142482,,0.141878,,0.158526,,0.133239,,0.070293,,30.212622,,30.380149,,26.34908,,33,,33,,,,,,,,,,,,2580,,0.333933,,0.333933,,0.333933,,0.333933,,0.133239,,33,,, +21874,-1,0.282156,0,1,0,2,4,DV2,3,2,Griswold,St,4700508,0,0.282,0,6.046191,6,4.5,,0.51301,,0.51301,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.626126,,0.51301,,0.626126,,0.554051,,0.51301,,0.554051,,0.646628,,0.51301,,0.646628,,0.51301,,0.51301,,0.51301,,,,,,,,0.626126,,0.554051,,0.646628,,0.51301,,0.51301,,0.238626,,0.217003,,0.244777,,0.204691,,0.107989,,27.038235,,30.555559,,26.18093,,33,,33,,,,,,,,,,,,2580,,0.51301,,0.51301,,0.51301,,0.51301,,0.204691,,33,, +22147,0,0.132674,1,1,0,2,3,,3,3,8 Mile,Rd,4412702,1.162,1.295,0,2.843008,5,5,0.227441,0.227441,0.227441,0.227441,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.277573,0.259,0.227441,0.227441,0.277573,0.259,0.231114,0.234399,0.227441,0.227441,0.231114,0.234399,0.292644,0.328862,0.227441,0.227441,0.292644,0.328862,0.227441,0.227441,0.227441,0.227441,0.227441,0.227441,,,,,,,0.277573,0.259,0.231114,0.234399,0.292644,0.328862,0.227441,0.227441,0.227441,0.227441,0.107153,0.101581,0.093215,0.094201,0.111674,0.12254,0.092113,0.092113,0.04871,0.04871,28.678674,30.735201,34.44371,33.961053,27.201731,24.205988,35,35,35,35,,,,,,,,,,,3784,3784,0.227441,0.227441,0.227441,0.227441,0.227441,0.227441,0.227441,0.227441,0.092113,0.092113,35,35,, +18456,1,0.119648,1,0,0,2,4,DV2,3,2,Griswold,St,1680204,0.533,0.653,0,2.563893,6,4.5,0.217542,,0.217542,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.245096,,0.217542,,0.245096,,0.240291,,0.217542,,0.240291,,0.290121,,0.217542,,0.290121,,0.217542,,0.217542,,0.217542,,,,,,,,0.245096,,0.240291,,0.290121,,0.217542,,0.217542,,0.095066,,0.093624,,0.108573,,0.086799,,0.045793,,29.290128,,29.875872,,24.744473,,33,,33,,,,,,,,,,,,2580,,0.217542,,0.217542,,0.217542,,0.217542,,0.086799,,33,,, +22438,0,0.079977,1,1,0,2,4,,3,3,Griswald,Rd,4705227,0.027,0.107,0,1.713787,6,4.5,0.145412,0.145412,0.145412,0.145412,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.158828,0.177475,0.145412,0.145412,0.158828,0.177475,0.157952,0.157045,0.145412,0.145412,0.157952,0.157045,0.182117,0.183286,0.145412,0.145412,0.182117,0.183286,0.145412,0.145412,0.145412,0.145412,0.145412,0.145412,,,,,,,0.158828,0.177475,0.157952,0.157045,0.182117,0.183286,0.145412,0.145412,0.145412,0.145412,0.062044,0.067638,0.061781,0.061509,0.069031,0.069382,0.058019,0.058019,0.030609,0.030609,30.212622,27.038235,30.380149,30.555559,26.34908,26.18093,33,33,33,33,,,,,,,,,,,2580,2580,0.145412,0.145412,0.145412,0.145412,0.145412,0.145412,0.145412,0.145412,0.058019,0.058019,33,33,, +22440,-1,0.026954,0,1,0,2,4,DV2,3,3,Griswald,Rd,4705227,0,0.027,0,0.577593,6,4.5,,0.049008,,0.049008,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.059814,,0.049008,,0.059814,,0.052929,,0.049008,,0.052929,,0.061773,,0.049008,,0.061773,,0.049008,,0.049008,,0.049008,,,,,,,,0.059814,,0.052929,,0.061773,,0.049008,,0.049008,,0.022796,,0.02073,,0.023384,,0.019554,,0.010316,,27.038235,,30.555559,,26.18093,,33,,33,,,,,,,,,,,,2580,,0.049008,,0.049008,,0.049008,,0.049008,,0.019554,,33,, +22437,0,0.058862,1,1,0,2,4,,3,3,Griswald,Rd,4705227,0.107,0.166,0,1.26132,6,4.5,0.107021,0.107021,0.107021,0.107021,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.199402,0.224937,0.107021,0.107021,0.199402,0.224937,0.163976,0.14691,0.107021,0.107021,0.163976,0.14691,0.270228,0.249351,0.107021,0.107021,0.270228,0.249351,0.107021,0.107021,0.107021,0.107021,0.107021,0.107021,,,,,,,0.199402,0.224937,0.163976,0.14691,0.270228,0.249351,0.107021,0.107021,0.107021,0.107021,0.070416,0.078076,0.059788,0.054668,0.091664,0.0854,0.042701,0.042701,0.022528,0.022528,17.711464,15.700804,21.537908,24.03988,13.069303,14.163545,33,33,33,33,,,,,,,,,,,2580,2580,0.107021,0.107021,0.107021,0.107021,0.107021,0.107021,0.107021,0.107021,0.042701,0.042701,33,33,, +848,0,0.321036,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.888,5.209,0,6.87935,6,4.5,0.583702,0.583702,0.583702,0.583702,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.711809,0.884527,0.583702,0.583702,0.711809,0.884527,0.659666,0.652511,0.583702,0.583702,0.659666,0.652511,0.940721,0.820865,0.583702,0.583702,0.940721,0.820865,0.583702,0.583702,0.583702,0.583702,0.583702,0.583702,,,,,,,0.711809,0.884527,0.659666,0.652511,0.940721,0.820865,0.583702,0.583702,0.583702,0.583702,0.271329,0.323144,0.255686,0.25354,0.340003,0.304046,0.232897,0.232897,0.122869,0.122869,27.060897,21.776826,29.199919,29.520085,20.475981,23.465716,33,33,33,33,,,,,,,,,,,2838,2838,0.583702,0.583702,0.583702,0.583702,0.583702,0.583702,0.583702,0.583702,0.232897,0.232897,33,33,, +1133,0,0.399633,1,1,0,2,3,,3,3,Novi,Rd,621910,3.211,3.611,0,8.563561,5,5,0.685085,0.685085,0.685085,0.685085,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.821893,1.295214,0.685085,0.685085,0.821893,1.295214,0.81939,0.883637,0.685085,0.685085,0.81939,0.883637,1.089512,1.033705,0.685085,0.685085,1.089512,1.033705,0.685085,0.685085,0.685085,0.685085,0.685085,0.685085,,,,,,,0.821893,1.295214,0.81939,0.883637,1.089512,1.033705,0.685085,0.685085,0.685085,0.685085,0.318502,0.460498,0.317751,0.337025,0.398788,0.382046,0.277459,0.277459,0.146722,0.146722,29.174089,18.512753,29.263211,27.135541,22.007987,23.196137,35,35,35,35,,,,,,,,,,,3784,3784,0.685085,0.685085,0.685085,0.685085,0.685085,0.685085,0.685085,0.685085,0.277459,0.277459,35,35,, +3101,0,0.343259,1,1,0,2,3,,3,3,10 Mile,Rd,656510,9.982,10.325,0,7.355546,5,5,0.588444,0.588444,0.588444,0.588444,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.915381,0.686709,0.588444,0.588444,0.915381,0.686709,0.716996,0.774129,0.588444,0.588444,0.716996,0.774129,0.907048,1.310434,0.588444,0.588444,0.907048,1.310434,0.588444,0.588444,0.588444,0.588444,0.588444,0.588444,,,,,,,0.915381,0.686709,0.716996,0.774129,0.907048,1.310434,0.588444,0.588444,0.588444,0.588444,0.336401,0.267799,0.276885,0.294025,0.333901,0.454917,0.23832,0.23832,0.126025,0.126025,22.499401,29.991648,28.72475,26.604791,22.706094,15.716569,35,35,35,35,,,,,,,,,,,3784,3784,0.588444,0.588444,0.588444,0.588444,0.588444,0.588444,0.588444,0.588444,0.23832,0.23832,35,35,, +26745,0,0.302102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.473614,0.15,4,1.812612,1.812612,1.812612,1.812612,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,,,,,,,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,0.598162,0.598162,0.598162,0.598162,0.598162,0.598162,0.598162,0.598162,0.305123,0.305123,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,1.812612,0.598162,0.598162,10,10,, +26875,0,0.510988,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.94975,0.15,4,3.06593,3.06593,3.06593,3.06593,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,,,,,,,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,1.011757,1.011757,1.011757,1.011757,1.011757,1.011757,1.011757,1.011757,0.516098,0.516098,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,3.06593,1.011757,1.011757,10,10,, +26881,0,0.50257,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.769367,0.15,4,3.015423,3.015423,3.015423,3.015423,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,,,,,,,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,0.995089,0.995089,0.995089,0.995089,0.995089,0.995089,0.995089,0.995089,0.507596,0.507596,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,3.015423,0.995089,0.995089,10,10,, +1957,0,0.290285,1,1,0,2,3,,3,3,Novi,Rd,621910,3.718,4.008,0,6.220397,5,5,0.497632,0.497632,0.497632,0.497632,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.560992,0.804451,0.497632,0.497632,0.560992,0.804451,0.558096,0.652533,0.497632,0.497632,0.558096,0.652533,0.734946,0.78574,0.497632,0.497632,0.734946,0.78574,0.497632,0.497632,0.497632,0.497632,0.497632,0.497632,,,,,,,0.560992,0.804451,0.558096,0.652533,0.734946,0.78574,0.497632,0.497632,0.497632,0.497632,0.220549,0.293587,0.21968,0.248011,0.272735,0.287973,0.201541,0.201541,0.106576,0.106576,31.046994,21.650937,31.208116,26.691536,23.698484,22.1665,35,35,35,35,,,,,,,,,,,3784,3784,0.497632,0.497632,0.497632,0.497632,0.497632,0.497632,0.497632,0.497632,0.201541,0.201541,35,35,, +402,0,0.106799,1,1,0,2,3,,3,3,Novi,Rd,621910,3.611,3.718,0,2.288557,5,5,0.183085,0.183085,0.183085,0.183085,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.196026,0.250219,0.183085,0.183085,0.196026,0.250219,0.195736,0.217786,0.183085,0.183085,0.195736,0.217786,0.228945,0.240959,0.183085,0.183085,0.228945,0.240959,0.183085,0.183085,0.183085,0.183085,0.183085,0.183085,,,,,,,0.196026,0.250219,0.195736,0.217786,0.228945,0.240959,0.183085,0.183085,0.183085,0.183085,0.078032,0.09429,0.077945,0.08456,0.087907,0.091512,0.074149,0.074149,0.039211,0.039211,32.689391,25.609381,32.737777,29.423149,27.989097,26.593576,35,35,35,35,,,,,,,,,,,3784,3784,0.183085,0.183085,0.183085,0.183085,0.183085,0.183085,0.183085,0.183085,0.074149,0.074149,35,35,, +3437,0,0.162591,1,1,0,2,3,,3,3,10 Mile,Rd,656510,9.819,9.982,0,3.484095,5,5,0.278728,0.278728,0.278728,0.278728,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.467631,0.311525,0.278728,0.278728,0.467631,0.311525,0.344547,0.358563,0.278728,0.278728,0.344547,0.358563,0.433372,0.634363,0.278728,0.278728,0.433372,0.634363,0.278728,0.278728,0.278728,0.278728,0.278728,0.278728,,,,,,,0.467631,0.311525,0.344547,0.358563,0.433372,0.634363,0.278728,0.278728,0.278728,0.278728,0.169556,0.122724,0.13263,0.136835,0.159278,0.219575,0.112885,0.112885,0.059694,0.059694,20.861451,31.315192,28.313901,27.207133,22.510622,15.378358,35,35,35,35,,,,,,,,,,,3784,3784,0.278728,0.278728,0.278728,0.278728,0.278728,0.278728,0.278728,0.278728,0.112885,0.112885,35,35,, +26746,0,0.37513,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.0385,0.15,4,2.25078,2.25078,2.25078,2.25078,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,,,,,,,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,0.742757,0.742757,0.742757,0.742757,0.742757,0.742757,0.742757,0.742757,0.378881,0.378881,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,2.25078,0.742757,0.742757,10,10,, +1614,0,0.200503,1,1,0,2,3,,3,3,Novi,Rd,621910,3.011,3.211,0,4.296497,5,5,0.34372,0.34372,0.34372,0.34372,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.637058,1.413014,0.34372,0.34372,0.637058,1.413014,0.60974,0.735396,0.34372,0.34372,0.60974,0.735396,1.238434,1.130557,0.34372,0.34372,1.238434,1.130557,0.34372,0.34372,0.34372,0.34372,0.34372,0.34372,,,,,,,0.637058,1.413014,0.60974,0.735396,1.238434,1.130557,0.34372,0.34372,0.34372,0.34372,0.227208,0.459995,0.219013,0.256709,0.407621,0.375258,0.139207,0.139207,0.073613,0.073613,18.883996,8.513853,19.730043,16.358794,9.714032,10.640944,35,35,35,35,,,,,,,,,,,3784,3784,0.34372,0.34372,0.34372,0.34372,0.34372,0.34372,0.34372,0.34372,0.139207,0.139207,35,35,, +1307,0,0.336779,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.551,4.888,0,7.216694,6,4.5,0.612326,0.612326,0.612326,0.612326,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.887344,1.184065,0.612326,0.612326,0.887344,1.184065,0.801069,0.777797,0.612326,0.612326,0.801069,0.777797,1.489377,1.10519,0.612326,0.612326,1.489377,1.10519,0.612326,0.612326,0.612326,0.612326,0.612326,0.612326,,,,,,,0.887344,1.184065,0.801069,0.777797,1.489377,1.10519,0.612326,0.612326,0.612326,0.612326,0.326823,0.41584,0.300941,0.293959,0.507433,0.392177,0.244318,0.244318,0.128895,0.128895,22.772161,17.065569,25.224727,25.979448,13.567245,18.283501,33,33,33,33,,,,,,,,,,,2838,2838,0.612326,0.612326,0.612326,0.612326,0.612326,0.612326,0.612326,0.612326,0.244318,0.244318,33,33,, +2455,0,0.173676,1,1,0,2,3,,3,3,10 Mile,Rd,656510,10.325,10.498,0,3.721637,5,5,0.297731,0.297731,0.297731,0.297731,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.405524,0.324535,0.297731,0.297731,0.405524,0.324535,0.340792,0.351317,0.297731,0.297731,0.340792,0.351317,0.386712,0.48083,0.297731,0.297731,0.386712,0.48083,0.297731,0.297731,0.297731,0.297731,0.297731,0.297731,,,,,,,0.405524,0.324535,0.340792,0.351317,0.386712,0.48083,0.297731,0.297731,0.297731,0.297731,0.152919,0.128622,0.133499,0.136657,0.147275,0.175511,0.120581,0.120581,0.063764,0.063764,25.696597,32.109308,30.577507,29.661494,26.946593,21.672058,35,35,35,35,,,,,,,,,,,3784,3784,0.297731,0.297731,0.297731,0.297731,0.297731,0.297731,0.297731,0.297731,0.120581,0.120581,35,35,, +26874,0,0.538548,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.540308,0.15,4,3.231286,3.231286,3.231286,3.231286,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,,,,,,,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,1.066324,1.066324,1.066324,1.066324,1.066324,1.066324,1.066324,1.066324,0.543933,0.543933,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,3.231286,1.066324,1.066324,10,10,, +17754,0,0.475838,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,3.139,3.614,0,10.196524,6,4.5,0.86516,0.86516,0.86516,0.86516,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.019001,0.938497,0.86516,0.86516,1.019001,0.938497,0.950478,0.940176,0.86516,0.86516,0.950478,0.940176,1.056251,1.187991,0.86516,0.86516,1.056251,1.187991,0.86516,0.86516,0.86516,0.86516,0.86516,0.86516,,,,,,,1.019001,0.938497,0.950478,0.940176,1.056251,1.187991,0.86516,0.86516,0.86516,0.86516,0.391351,0.3672,0.370794,0.367704,0.402526,0.442048,0.345199,0.345199,0.182116,0.182116,28.017892,30.421258,30.037798,30.366941,27.029803,24.032398,33,33,33,33,,,,,,,,,,,5418,5418,0.86516,0.86516,0.86516,0.86516,0.86516,0.86516,0.86516,0.86516,0.345199,0.345199,33,33,, +18086,0,0.532935,1,1,1,2,4,,3,2,6 Mile,Rd,1680701,5.032,5.564,0,11.420045,6,4.5,0.968974,0.968974,0.968974,0.968974,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,2.129135,1.759811,0.968974,0.968974,2.129135,1.759811,1.706252,1.651543,0.968974,0.968974,1.706252,1.651543,2.161161,2.317986,0.968974,0.968974,2.161161,2.317986,0.968974,0.968974,0.968974,0.968974,0.968974,0.968974,,,,,,,2.129135,1.759811,1.706252,1.651543,2.161161,2.317986,0.968974,0.968974,0.968974,0.968974,0.734669,0.623872,0.607804,0.591391,0.744277,0.791324,0.38662,0.38662,0.203969,0.203969,15.018367,18.170207,18.740562,19.36136,14.795812,13.79479,33,33,33,33,,,,,,,,,,,2838,2838,0.968974,0.968974,0.968974,0.968974,0.968974,0.968974,0.968974,0.968974,0.38662,0.38662,33,33,, +18876,0,0.594521,1,1,1,2,4,,3,2,7 Mile,Rd,1698901,1.503,2.098,0,12.739734,6,4.5,1.080947,1.080947,1.080947,1.080947,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.861983,1.556457,1.080947,1.080947,1.861983,1.556457,1.498298,1.473232,1.080947,1.080947,1.498298,1.473232,1.669183,1.757929,1.080947,1.080947,1.669183,1.757929,1.080947,1.080947,1.080947,1.080947,1.080947,1.080947,,,,,,,1.861983,1.556457,1.498298,1.473232,1.669183,1.757929,1.080947,1.080947,1.080947,1.080947,0.665609,0.573951,0.556503,0.548983,0.607769,0.634392,0.431298,0.431298,0.227539,0.227539,19.157666,22.918248,23.807858,24.212918,21.370483,20.291638,33,33,33,33,,,,,,,,,,,2838,2838,1.080947,1.080947,1.080947,1.080947,1.080947,1.080947,1.080947,1.080947,0.431298,0.431298,33,33,, +31715,0,0.496229,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.633475,0.15,4,2.977373,2.977373,2.977373,2.977373,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,2.977374,2.977373,2.977373,2.977373,2.977374,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,,,,,,,2.977373,2.977373,2.977373,2.977373,2.977374,2.977373,2.977373,2.977373,2.977373,2.977373,0.982533,0.982533,0.982533,0.982533,0.982533,0.982533,0.982533,0.982533,0.501191,0.501191,10,9.999999,10,10,9.999998,10,10,10,10,10,,,,,,,,,,,34400,34400,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,2.977373,0.982533,0.982533,10,10,, +31767,0,0.419826,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.996282,0.15,4,1.679306,1.679306,1.679306,1.679306,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,1.679307,1.679307,1.679306,1.679306,1.679307,1.679307,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,,,,,,,1.679306,1.679306,1.679307,1.679307,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,0.579361,0.579361,0.579361,0.579361,0.579361,0.579361,0.579361,0.579361,0.298077,0.298077,15,14.999997,14.999991,14.99999,14.999998,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,1.679306,0.579361,0.579361,15,15,, +31774,0,0.514229,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.019202,0.15,4,3.085377,3.085377,3.085377,3.085377,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,,,,,,,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,1.018174,1.018174,1.018174,1.018174,1.018174,1.018174,1.018174,1.018174,0.519372,0.519372,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,3.085377,1.018174,1.018174,10,10,, +33764,0,1.111445,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.816688,0.15,4,4.445782,4.445782,4.445782,4.445782,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.445785,4.445782,4.445782,4.445782,4.445785,4.445782,4.445782,4.445782,4.445782,4.445782,4.445782,4.445782,4.445782,4.445793,4.445782,4.445782,4.445782,4.445793,4.445782,4.445782,4.445782,4.445782,4.445782,4.445782,,,,,,,4.445785,4.445782,4.445782,4.445782,4.445782,4.445793,4.445782,4.445782,4.445782,4.445782,1.533796,1.533795,1.533795,1.533795,1.533795,1.533798,1.533795,1.533795,0.789126,0.789126,14.999987,15,15,15,14.999997,14.999963,15,15,15,15,,,,,,,,,,,34400,34400,4.445782,4.445782,4.445782,4.445782,4.445782,4.445782,4.445782,4.445782,1.533795,1.533795,15,15,, +31768,0,0.472157,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.117649,0.15,4,1.888628,1.888628,1.888628,1.888628,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.888628,1.888629,1.888628,1.888628,1.888628,1.888629,1.888629,1.888629,1.888628,1.888628,1.888629,1.888629,1.888629,1.888628,1.888628,1.888628,1.888629,1.888628,1.888628,1.888628,1.888628,1.888628,1.888628,1.888628,,,,,,,1.888628,1.888629,1.888629,1.888629,1.888629,1.888628,1.888628,1.888628,1.888628,1.888628,0.651577,0.651577,0.651577,0.651577,0.651577,0.651577,0.651577,0.651577,0.335231,0.335231,15,14.999991,14.999991,14.999987,14.999992,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,1.888628,1.888628,1.888628,1.888628,1.888628,1.888628,1.888628,1.888628,0.651577,0.651577,15,15,, +19084,0,0.507814,1,1,1,2,4,,3,2,7 Mile,Rd,1698901,0.996,1.503,0,10.881722,6,4.5,0.923298,0.923298,0.923298,0.923298,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,2.103398,1.507299,0.923298,0.923298,2.103398,1.507299,1.703104,1.597064,0.923298,0.923298,1.703104,1.597064,2.030364,2.276286,0.923298,0.923298,2.030364,2.276286,0.923298,0.923298,0.923298,0.923298,0.923298,0.923298,,,,,,,2.103398,1.507299,1.703104,1.597064,2.030364,2.276286,0.923298,0.923298,0.923298,0.923298,0.722426,0.543596,0.602338,0.570526,0.700516,0.774292,0.368396,0.368396,0.194354,0.194354,14.485522,20.214187,17.890171,19.078027,15.006583,13.385323,33,33,33,33,,,,,,,,,,,2838,2838,0.923298,0.923298,0.923298,0.923298,0.923298,0.923298,0.923298,0.923298,0.368396,0.368396,33,33,, +31778,0,0.440094,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.430589,0.15,4,2.640565,2.640565,2.640565,2.640565,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,,,,,,,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,0.871386,0.871386,0.871386,0.871386,0.871386,0.871386,0.871386,0.871386,0.444495,0.444495,9.999999,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,2.640565,0.871386,0.871386,10,10,, +17575,0,0.248948,1,1,1,2,4,,3,2,7 Mile,Rd,1698901,0.747,0.996,0,5.33461,6,4.5,0.452634,0.452634,0.452634,0.452634,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.107002,0.486039,0.452634,0.452634,1.107002,0.486039,0.542376,0.511118,0.452634,0.452634,0.542376,0.511118,0.744624,1.05218,0.452634,0.452634,0.744624,1.05218,0.452634,0.452634,0.452634,0.452634,0.452634,0.452634,,,,,,,1.107002,0.486039,0.542376,0.511118,0.744624,1.05218,0.452634,0.452634,0.452634,0.452634,0.376911,0.190622,0.207523,0.198146,0.268198,0.360465,0.180601,0.180601,0.095279,0.095279,13.493112,30.731899,27.539778,29.223967,20.059654,14.196147,33,33,33,33,,,,,,,,,,,2838,2838,0.452634,0.452634,0.452634,0.452634,0.452634,0.452634,0.452634,0.452634,0.180601,0.180601,33,33,, +17761,0,0.500558,1,1,1,2,4,,3,2,6 Mile,Rd,1680701,5.564,6.065,0,10.726238,6,4.5,0.910105,0.910105,0.910105,0.910105,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.576781,1.327912,0.910105,0.910105,1.576781,1.327912,1.30375,1.265976,0.910105,0.910105,1.30375,1.265976,1.421991,1.516603,0.910105,0.910105,1.421991,1.516603,0.910105,0.910105,0.910105,0.910105,0.910105,0.910105,,,,,,,1.576781,1.327912,1.30375,1.265976,1.421991,1.516603,0.910105,0.910105,0.910105,0.910105,0.563135,0.488474,0.481225,0.469893,0.516698,0.545081,0.363132,0.363132,0.191577,0.191577,19.047323,22.617065,23.036223,23.723569,21.120714,19.803113,33,33,33,33,,,,,,,,,,,2838,2838,0.910105,0.910105,0.910105,0.910105,0.910105,0.910105,0.910105,0.910105,0.363132,0.363132,33,33,, +18272,0,0.333828,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,2.295,2.629,0,7.153466,6,4.5,0.606961,0.606961,0.606961,0.606961,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.973063,0.660521,0.606961,0.606961,0.973063,0.660521,0.744391,0.683113,0.606961,0.606961,0.744391,0.683113,0.821417,0.96162,0.606961,0.606961,0.821417,0.96162,0.606961,0.606961,0.606961,0.606961,0.606961,0.606961,,,,,,,0.973063,0.660521,0.744391,0.683113,0.821417,0.96162,0.606961,0.606961,0.606961,0.606961,0.352008,0.258245,0.283407,0.265023,0.306514,0.348575,0.242177,0.242177,0.127765,0.127765,20.584188,30.324106,26.907495,29.32122,24.384318,20.829123,33,33,33,33,,,,,,,,,,,5418,5418,0.606961,0.606961,0.606961,0.606961,0.606961,0.606961,0.606961,0.606961,0.242177,0.242177,33,33,, +31709,0,0.384896,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.24777,0.15,4,2.309376,2.309376,2.309376,2.309376,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,,,,,,,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,0.762094,0.762094,0.762094,0.762094,0.762094,0.762094,0.762094,0.762094,0.388745,0.388745,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,2.309376,0.762094,0.762094,10,10,, +31710,0,0.49562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.620439,0.15,4,2.973723,2.973723,2.973723,2.973723,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.973724,2.973723,2.973723,2.973723,2.973724,2.973723,2.973723,2.973723,2.973723,2.973723,2.973723,2.973723,2.973724,2.973724,2.973723,2.973723,2.973724,2.973724,2.973723,2.973723,2.973723,2.973723,2.973723,2.973723,,,,,,,2.973724,2.973723,2.973723,2.973723,2.973724,2.973724,2.973723,2.973723,2.973723,2.973723,0.981329,0.981329,0.981329,0.981329,0.981329,0.981329,0.981329,0.981329,0.500577,0.500577,9.999997,10,9.999999,9.999999,9.999998,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,2.973723,2.973723,2.973723,2.973723,2.973723,2.973723,2.973723,2.973723,0.981329,0.981329,10,10,, +31711,0,0.538131,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.531382,0.15,4,3.228787,3.228787,3.228787,3.228787,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,,,,,,,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,1.0655,1.0655,1.0655,1.0655,1.0655,1.0655,1.0655,1.0655,0.543512,0.543512,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,3.228787,1.0655,1.0655,10,10,, +30400,0,0.188808,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.045887,0.15,4,1.132848,1.132848,1.132848,1.132848,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,,,,,,,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,0.37384,0.37384,0.37384,0.37384,0.37384,0.37384,0.37384,0.37384,0.190696,0.190696,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,1.132848,0.37384,0.37384,10,10,, +17566,0,0.186208,2,2,1,2,4,,3,2,6 Mile,Rd,1680701,6.065,6.251,0,3.99018,6,4.5,0.338561,0.338561,0.338561,0.338561,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.524643,0.428046,0.338561,0.338561,0.524643,0.428046,0.442268,0.424818,0.338561,0.338561,0.442268,0.424818,0.481207,0.612209,0.338561,0.338561,0.481207,0.612209,0.338561,0.338561,0.338561,0.338561,0.338561,0.338561,,,,,,,0.524643,0.428046,0.442268,0.424818,0.481207,0.612209,0.338561,0.338561,0.338561,0.338561,0.190911,0.161931,0.166198,0.160963,0.17788,0.21718,0.135086,0.135086,0.071267,0.071267,21.295426,26.101179,25.261835,26.299489,23.217659,18.249493,33,33,33,33,,,,,,,,,,,5418,5418,0.338561,0.338561,0.338561,0.338561,0.338561,0.338561,0.338561,0.338561,0.135086,0.135086,33,33,, +17982,0,0.510057,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,2.629,3.139,0,10.929786,6,4.5,0.927376,0.927376,0.927376,0.927376,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.072854,0.949302,0.927376,0.927376,1.072854,0.949302,0.966667,0.947766,0.927376,0.927376,0.966667,0.947766,1.157882,1.134824,0.927376,0.927376,1.157882,1.134824,0.927376,0.927376,0.927376,0.927376,0.927376,0.927376,,,,,,,1.072854,0.949302,0.966667,0.947766,1.157882,1.134824,0.927376,0.927376,0.927376,0.927376,0.413666,0.376601,0.38181,0.37614,0.439175,0.432257,0.370023,0.370023,0.195213,0.195213,28.525224,32.237792,31.658665,32.290029,26.430498,26.967542,33,33,33,33,,,,,,,,,,,5418,5418,0.927376,0.927376,0.927376,0.927376,0.927376,0.927376,0.927376,0.927376,0.370023,0.370023,33,33,, +31713,0,0.500875,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.733039,0.15,4,3.005251,3.005251,3.005251,3.005251,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.005251,3.005252,3.005251,3.005251,3.005251,3.005252,3.005251,3.005251,3.005251,3.005251,3.005251,3.005251,3.005254,3.005251,3.005251,3.005251,3.005254,3.005251,3.005251,3.005251,3.005251,3.005251,3.005251,3.005251,,,,,,,3.005251,3.005252,3.005251,3.005251,3.005254,3.005251,3.005251,3.005251,3.005251,3.005251,0.991733,0.991733,0.991733,0.991733,0.991734,0.991733,0.991733,0.991733,0.505884,0.505884,10,9.999996,10,10,9.99999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,3.005251,3.005251,3.005251,3.005251,3.005251,3.005251,3.005251,3.005251,0.991733,0.991733,10,10,, +33763,0,0.218562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.683468,0.15,4,1.311371,1.311371,1.311371,1.311371,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.311371,1.311377,1.311371,1.311371,1.311371,1.311377,1.311372,1.311374,1.311371,1.311371,1.311372,1.311374,1.311373,1.311371,1.311371,1.311371,1.311373,1.311371,1.311371,1.311371,1.311371,1.311371,1.311371,1.311371,,,,,,,1.311371,1.311377,1.311372,1.311374,1.311373,1.311371,1.311371,1.311371,1.311371,1.311371,0.432752,0.432754,0.432753,0.432753,0.432753,0.432753,0.432752,0.432752,0.220747,0.220747,10,9.999955,9.99999,9.999981,9.999989,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.311371,1.311371,1.311371,1.311371,1.311371,1.311371,1.311371,1.311371,0.432752,0.432752,10,10,, +17453,0,0.37159,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,3.614,3.986,0,7.962639,6,4.5,0.675618,0.675618,0.675618,0.675618,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.815549,0.706523,0.675618,0.675618,0.815549,0.706523,0.776182,0.748438,0.675618,0.675618,0.776182,0.748438,0.913063,0.893896,0.675618,0.675618,0.913063,0.893896,0.675618,0.675618,0.675618,0.675618,0.675618,0.675618,,,,,,,0.815549,0.706523,0.776182,0.748438,0.913063,0.893896,0.675618,0.675618,0.675618,0.675618,0.311551,0.278843,0.299741,0.291418,0.340805,0.335055,0.269572,0.269572,0.142218,0.142218,27.337889,31.556501,28.724441,29.789216,24.418238,24.941816,33,33,33,33,,,,,,,,,,,5418,5418,0.675618,0.675618,0.675618,0.675618,0.675618,0.675618,0.675618,0.675618,0.269572,0.269572,33,33,, +31723,0,0.367969,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.88506,0.15,4,2.207817,2.207817,2.207817,2.207817,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,,,,,,,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,0.72858,0.72858,0.72858,0.72858,0.72858,0.72858,0.72858,0.72858,0.371649,0.371649,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,2.207817,0.72858,0.72858,10,10,, +31775,0,0.507443,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.873774,0.15,4,3.044657,3.044657,3.044657,3.044657,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.044657,3.044658,3.044657,3.044657,3.044657,3.044658,3.044658,3.044658,3.044657,3.044657,3.044658,3.044658,3.044662,3.044661,3.044657,3.044657,3.044662,3.044661,3.044657,3.044657,3.044657,3.044657,3.044657,3.044657,,,,,,,3.044657,3.044658,3.044658,3.044658,3.044662,3.044661,3.044657,3.044657,3.044657,3.044657,1.004737,1.004737,1.004737,1.004737,1.004738,1.004738,1.004737,1.004737,0.512517,0.512517,9.999999,9.999996,9.999996,9.999995,9.999982,9.999985,10,10,10,10,,,,,,,,,,,34400,34400,3.044657,3.044657,3.044657,3.044657,3.044657,3.044657,3.044657,3.044657,1.004737,1.004737,10,10,, +18504,0,0.191676,2,2,0,2,4,,3,2,7 Mile,Rd,1700106,0,0.192,0,4.107354,6,4.5,0.348503,0.348503,0.348503,0.348503,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.422476,0.448412,0.348503,0.348503,0.422476,0.448412,0.416753,0.427912,0.348503,0.348503,0.416753,0.427912,0.448991,0.546546,0.348503,0.348503,0.448991,0.546546,0.348503,0.348503,0.348503,0.348503,0.348503,0.348503,,,,,,,0.422476,0.448412,0.416753,0.427912,0.448991,0.546546,0.348503,0.348503,0.348503,0.348503,0.161244,0.169025,0.159528,0.162875,0.169199,0.198466,0.139053,0.139053,0.07336,0.07336,27.221902,25.647353,27.595699,26.876058,25.614294,21.042316,33,33,33,33,,,,,,,,,,,5160,5160,0.348503,0.348503,0.348503,0.348503,0.348503,0.348503,0.348503,0.348503,0.139053,0.139053,33,33,, +31714,0,0.171917,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.683944,0.15,4,1.031504,1.031504,1.031504,1.031504,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,1.031505,1.031504,1.031504,1.031504,1.031505,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,,,,,,,1.031504,1.031504,1.031504,1.031504,1.031505,1.031504,1.031504,1.031504,1.031504,1.031504,0.340396,0.340396,0.340396,0.340396,0.340397,0.340396,0.340396,0.340396,0.173637,0.173637,10,9.999999,9.999999,9.999998,9.999995,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,1.031504,0.340396,0.340396,10,10,, +1762,-1,1.565597,0,4,0,1,1,,3,3,W I 96,,639107,2.347,3.912,0,,0.58,7,,1.445167,,1.445167,,65,,88000,,19976,,44000,,28389,,30272,,30237,,1.690294,,1.445167,,1.690294,,1.471146,,1.445167,,1.471146,,1.723238,,1.445167,,1.723238,,1.445167,,1.445167,,1.445167,,,,,,,,1.690294,,1.471146,,1.723238,,1.445167,,1.445167,,0.788896,,0.723151,,0.798779,,0.715357,,0.388991,,55.573671,,63.85214,,54.511242,,65,,65,,,,,,,,,,,,30272,,1.445167,,1.445167,,1.445167,,1.445167,,0.715357,,65,, +1919,0,0.605229,2,2,1,2,3,,3,3,Haggerty,Rd,639005,0.432,1.037,0,12.969189,5,5,1.037535,1.037535,1.037535,1.037535,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.312712,1.204677,1.037535,1.037535,1.312712,1.204677,1.142975,1.127869,1.037535,1.037535,1.142975,1.127869,1.473652,1.460204,1.037535,1.037535,1.473652,1.460204,1.037535,1.037535,1.037535,1.037535,1.037535,1.037535,,,,,,,1.312712,1.204677,1.142975,1.127869,1.473652,1.460204,1.037535,1.037535,1.037535,1.037535,0.502755,0.470344,0.451834,0.447302,0.551037,0.547002,0.420202,0.420202,0.222205,0.222205,27.663126,30.143968,31.771232,32.196763,24.642003,24.868942,35,35,35,35,,,,,,,,,,,7946,7946,1.037535,1.037535,1.037535,1.037535,1.037535,1.037535,1.037535,1.037535,0.420202,0.420202,35,35,, +2134,0,0.56523,1,1,0,2,4,,3,3,9 Mile,Rd,633603,3.647,4.212,0,12.112081,6,4.5,1.027692,1.027692,1.027692,1.027692,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.449854,1.693046,1.027692,1.027692,1.449854,1.693046,1.255305,1.232896,1.027692,1.027692,1.255305,1.232896,1.801542,1.68211,1.027692,1.027692,1.801542,1.68211,1.027692,1.027692,1.027692,1.027692,1.027692,1.027692,,,,,,,1.449854,1.693046,1.255305,1.232896,1.801542,1.68211,1.027692,1.027692,1.027692,1.027692,0.536698,0.609655,0.478333,0.47161,0.642204,0.606375,0.410049,0.410049,0.216329,0.216329,23.391201,20.031246,27.016397,27.507443,18.824885,20.161475,33,33,33,33,,,,,,,,,,,2580,2580,1.027692,1.027692,1.027692,1.027692,1.027692,1.027692,1.027692,1.027692,0.410049,0.410049,33,33,, +2992,0,0.391354,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,0.609,1,0,8.386154,6,4.5,0.711552,0.711552,0.711552,0.711552,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.290236,1.123867,0.711552,0.711552,1.290236,1.123867,1.079752,0.981217,0.711552,0.711552,1.079752,0.981217,1.567553,1.489063,0.711552,0.711552,1.567553,1.489063,0.711552,0.711552,0.711552,0.711552,0.711552,0.711552,,,,,,,1.290236,1.123867,1.079752,0.981217,1.567553,1.489063,0.711552,0.711552,0.711552,0.711552,0.457515,0.407604,0.394369,0.364809,0.54071,0.517163,0.283909,0.283909,0.149782,0.149782,18.199169,20.893243,21.746883,23.930723,14.979543,15.769129,33,33,33,33,,,,,,,,,,,2580,2580,0.711552,0.711552,0.711552,0.711552,0.711552,0.711552,0.711552,0.711552,0.283909,0.283909,33,33,, +20935,0,0.260725,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,1.262,1.523,0,5.586962,5,5,0.446957,0.446957,0.446957,0.446957,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.082428,0.558148,0.446957,0.446957,1.082428,0.558148,0.598044,0.578093,0.446957,0.446957,0.598044,0.578093,0.718434,0.967359,0.446957,0.446957,0.718434,0.967359,0.446957,0.446957,0.446957,0.446957,0.446957,0.446957,,,,,,,1.082428,0.558148,0.598044,0.578093,0.718434,0.967359,0.446957,0.446957,0.446957,0.446957,0.371659,0.214375,0.226344,0.220359,0.262461,0.337138,0.181018,0.181018,0.095723,0.095723,14.452224,28.027507,26.157746,27.060491,21.774424,16.171349,35,35,35,35,,,,,,,,,,,3784,3784,0.446957,0.446957,0.446957,0.446957,0.446957,0.446957,0.446957,0.446957,0.181018,0.181018,35,35,, +24870,0,0.586303,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.563632,0.15,4,3.517817,3.517817,3.517817,3.517817,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,,,,,,,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,1.16088,1.16088,1.16088,1.16088,1.16088,1.16088,1.16088,1.16088,0.592166,0.592166,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,3.517817,1.16088,1.16088,10,10,, +26152,0,0.519505,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.132258,0.15,4,3.117032,3.117032,3.117032,3.117032,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.117034,3.117034,3.117032,3.117032,3.117034,3.117034,3.117035,3.117035,3.117032,3.117032,3.117035,3.117035,3.117043,3.117045,3.117032,3.117032,3.117043,3.117045,3.117032,3.117032,3.117032,3.117032,3.117032,3.117032,,,,,,,3.117034,3.117034,3.117035,3.117035,3.117043,3.117045,3.117032,3.117032,3.117032,3.117032,1.028621,1.028621,1.028621,1.028622,1.028624,1.028624,1.028621,1.028621,0.5247,0.5247,9.999993,9.999995,9.999991,9.99999,9.999966,9.99996,10,10,10,10,,,,,,,,,,,34400,34400,3.117032,3.117032,3.117032,3.117032,3.117032,3.117032,3.117032,3.117032,1.028621,1.028621,10,10,, +26883,0,0.503869,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.797186,0.15,4,3.023212,3.023212,3.023212,3.023212,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,,,,,,,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,0.99766,0.99766,0.99766,0.99766,0.99766,0.99766,0.99766,0.99766,0.508907,0.508907,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,3.023212,0.99766,0.99766,10,10,, +26884,0,0.557754,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.951861,0.15,4,3.346521,3.346521,3.346521,3.346521,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.346521,3.346522,3.346521,3.346521,3.346521,3.346522,3.346522,3.346522,3.346521,3.346521,3.346522,3.346522,3.346523,3.346521,3.346521,3.346521,3.346523,3.346521,3.346521,3.346521,3.346521,3.346521,3.346521,3.346521,,,,,,,3.346521,3.346522,3.346522,3.346522,3.346523,3.346521,3.346521,3.346521,3.346521,3.346521,1.104352,1.104352,1.104352,1.104352,1.104352,1.104352,1.104352,1.104352,0.563331,0.563331,10,9.999996,9.999998,9.999998,9.999995,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,3.346521,3.346521,3.346521,3.346521,3.346521,3.346521,3.346521,3.346521,1.104352,1.104352,10,10,, +26885,0,0.569542,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.204465,0.15,4,3.41725,3.41725,3.41725,3.41725,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,,,,,,,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,1.127693,1.127693,1.127693,1.127693,1.127693,1.127693,1.127693,1.127693,0.575237,0.575237,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,3.41725,1.127693,1.127693,10,10,, +26887,0,0.265428,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.687746,0.15,4,1.592569,1.592569,1.592569,1.592569,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,,,,,,,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,0.525548,0.525548,0.525548,0.525548,0.525548,0.525548,0.525548,0.525548,0.268082,0.268082,9.999999,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,1.592569,0.525548,0.525548,10,10,, +2993,0,0.468092,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,0,0.468,0,10.030548,6,4.5,0.851077,0.851077,0.851077,0.851077,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.970749,1.124,0.851077,0.851077,0.970749,1.124,0.92183,0.895451,0.851077,0.851077,0.92183,0.895451,1.427087,1.197585,0.851077,0.851077,1.427087,1.197585,0.851077,0.851077,0.851077,0.851077,0.851077,0.851077,,,,,,,0.970749,1.124,0.92183,0.895451,1.427087,1.197585,0.851077,0.851077,0.851077,0.851077,0.375481,0.421457,0.360806,0.352892,0.512383,0.443532,0.33958,0.33958,0.179152,0.179152,28.931826,24.987129,30.467154,31.364694,19.680329,23.451802,33,33,33,33,,,,,,,,,,,2580,2580,0.851077,0.851077,0.851077,0.851077,0.851077,0.851077,0.851077,0.851077,0.33958,0.33958,33,33,, +20936,0,0.501969,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0.76,1.262,0,10.756479,5,5,0.860518,0.860518,0.860518,0.860518,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,2.398326,1.133606,0.860518,0.860518,2.398326,1.133606,1.160013,1.120091,0.860518,0.860518,1.160013,1.120091,1.595357,2.346483,0.860518,0.860518,1.595357,2.346483,0.860518,0.860518,0.860518,0.860518,0.860518,0.860518,,,,,,,2.398326,1.133606,1.160013,1.120091,1.595357,2.346483,0.860518,0.860518,0.860518,0.860518,0.809852,0.430436,0.438358,0.426382,0.568962,0.794299,0.34851,0.34851,0.184294,0.184294,12.557985,26.568437,25.963635,26.88901,18.878621,12.835439,35,35,35,35,,,,,,,,,,,3784,3784,0.860518,0.860518,0.860518,0.860518,0.860518,0.860518,0.860518,0.860518,0.34851,0.34851,35,35,, +25070,0,0.52624,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.276571,0.15,4,3.15744,3.15744,3.15744,3.15744,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.15744,3.157441,3.15744,3.15744,3.15744,3.157441,3.15744,3.15744,3.15744,3.15744,3.15744,3.15744,3.157441,3.15744,3.15744,3.15744,3.157441,3.15744,3.15744,3.15744,3.15744,3.15744,3.15744,3.15744,,,,,,,3.15744,3.157441,3.15744,3.15744,3.157441,3.15744,3.15744,3.15744,3.15744,3.15744,1.041955,1.041956,1.041955,1.041955,1.041956,1.041955,1.041955,1.041955,0.531502,0.531502,10,9.999996,10,9.999999,9.999996,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,3.15744,3.15744,3.15744,3.15744,3.15744,3.15744,3.15744,3.15744,1.041955,1.041955,10,10,, +20937,0,0.246513,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0.514,0.76,0,5.282423,5,5,0.422594,0.422594,0.422594,0.422594,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.334865,0.701587,0.422594,0.422594,1.334865,0.701587,0.749492,0.660311,0.422594,0.422594,0.749492,0.660311,1.070798,1.365025,0.422594,0.422594,1.070798,1.365025,0.422594,0.422594,0.422594,0.422594,0.422594,0.422594,,,,,,,1.334865,0.701587,0.749492,0.660311,1.070798,1.365025,0.422594,0.422594,0.422594,0.422594,0.444832,0.254848,0.26922,0.242466,0.365612,0.45388,0.171151,0.171151,0.090506,0.090506,11.080364,21.081909,19.734415,22.399723,13.812861,10.835542,35,35,35,35,,,,,,,,,,,3784,3784,0.422594,0.422594,0.422594,0.422594,0.422594,0.422594,0.422594,0.422594,0.171151,0.171151,35,35,, +3303,0,0.140663,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,0.468,0.609,0,3.014205,6,4.5,0.255751,0.255751,0.255751,0.255751,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.551679,0.266384,0.255751,0.255751,0.551679,0.266384,0.35191,0.313457,0.255751,0.255751,0.35191,0.313457,0.369312,0.549286,0.255751,0.255751,0.369312,0.549286,0.255751,0.255751,0.255751,0.255751,0.255751,0.255751,,,,,,,0.551679,0.266384,0.35191,0.313457,0.369312,0.549286,0.255751,0.255751,0.255751,0.255751,0.190823,0.105234,0.130892,0.119356,0.136113,0.190105,0.102045,0.102045,0.053836,0.053836,15.29835,31.682766,23.982791,26.924862,22.852712,15.364998,33,33,33,33,,,,,,,,,,,2580,2580,0.255751,0.255751,0.255751,0.255751,0.255751,0.255751,0.255751,0.255751,0.102045,0.102045,33,33,, +2986,0,0.191276,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.272,1.463,0,4.098773,6,4.5,0.347775,0.347775,0.347775,0.347775,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.720059,0.469969,0.347775,0.347775,0.720059,0.469969,0.521871,0.458366,0.347775,0.347775,0.521871,0.458366,0.726957,0.694299,0.347775,0.347775,0.726957,0.694299,0.347775,0.347775,0.347775,0.347775,0.347775,0.347775,,,,,,,0.720059,0.469969,0.521871,0.458366,0.726957,0.694299,0.347775,0.347775,0.347775,0.347775,0.250447,0.17542,0.190991,0.17194,0.252517,0.242719,0.138762,0.138762,0.073207,0.073207,15.938366,24.419856,21.991171,25.037993,15.78714,16.529725,33,33,33,33,,,,,,,,,,,2580,2580,0.347775,0.347775,0.347775,0.347775,0.347775,0.347775,0.347775,0.347775,0.138762,0.138762,33,33,, +24868,0,0.53608,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.487422,0.15,4,3.216478,3.216478,3.216478,3.216478,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,,,,,,,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,1.061438,1.061438,1.061438,1.061438,1.061438,1.061438,1.061438,1.061438,0.541441,0.541441,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,3.216478,1.061438,1.061438,10,10,, +26886,0,0.506393,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.851276,0.15,4,3.038357,3.038357,3.038357,3.038357,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,,,,,,,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,1.002658,1.002658,1.002658,1.002658,1.002658,1.002658,1.002658,1.002658,0.511457,0.511457,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,3.038357,1.002658,1.002658,10,10,, +1634,0,0.249648,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.212,4.462,0,5.349597,6,4.5,0.453905,0.453905,0.453905,0.453905,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.632648,0.875022,0.453905,0.453905,0.632648,0.875022,0.59672,0.602287,0.453905,0.453905,0.59672,0.602287,0.930765,0.820301,0.453905,0.453905,0.930765,0.820301,0.453905,0.453905,0.453905,0.453905,0.453905,0.453905,,,,,,,0.632648,0.875022,0.59672,0.602287,0.930765,0.820301,0.453905,0.453905,0.453905,0.453905,0.234731,0.307443,0.223953,0.225623,0.324166,0.291027,0.181108,0.181108,0.095547,0.095547,23.676481,17.118273,25.102008,24.870005,16.093068,18.260223,33,33,33,33,,,,,,,,,,,2838,2838,0.453905,0.453905,0.453905,0.453905,0.453905,0.453905,0.453905,0.453905,0.181108,0.181108,33,33,, +3290,0,0.27177,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1,1.272,0,5.823635,6,4.5,0.494127,0.494127,0.494127,0.494127,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.782545,0.605176,0.494127,0.494127,0.782545,0.605176,0.628991,0.574558,0.494127,0.494127,0.628991,0.574558,0.791496,0.801921,0.494127,0.494127,0.791496,0.801921,0.494127,0.494127,0.494127,0.494127,0.494127,0.494127,,,,,,,0.782545,0.605176,0.628991,0.574558,0.791496,0.801921,0.494127,0.494127,0.494127,0.494127,0.283682,0.230471,0.237616,0.221286,0.286367,0.289495,0.197157,0.197157,0.104014,0.104014,20.837376,26.944525,25.924339,28.380371,20.601721,20.333904,33,33,33,33,,,,,,,,,,,2580,2580,0.494127,0.494127,0.494127,0.494127,0.494127,0.494127,0.494127,0.494127,0.197157,0.197157,33,33,, +2983,0,0.323465,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.674,1.997,0,6.931389,6,4.5,0.588118,0.588118,0.588118,0.588118,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.230852,0.786186,0.588118,0.588118,1.230852,0.786186,0.85235,0.781346,0.588118,0.588118,0.85235,0.781346,1.046958,1.151868,0.588118,0.588118,1.046958,1.151868,0.588118,0.588118,0.588118,0.588118,0.588118,0.588118,,,,,,,1.230852,0.786186,0.85235,0.781346,1.046958,1.151868,0.588118,0.588118,0.588118,0.588118,0.427479,0.294079,0.313929,0.292627,0.372311,0.403784,0.234659,0.234659,0.123799,0.123799,15.767852,24.686134,22.769848,24.839055,18.537405,16.849056,33,33,33,33,,,,,,,,,,,2580,2580,0.588118,0.588118,0.588118,0.588118,0.588118,0.588118,0.588118,0.588118,0.234659,0.234659,33,33,, +3288,0,0.211458,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.463,1.674,0,4.531248,6,4.5,0.384469,0.384469,0.384469,0.384469,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.938859,0.574438,0.384469,0.384469,0.938859,0.574438,0.607085,0.560857,0.384469,0.384469,0.607085,0.560857,0.836337,0.937188,0.384469,0.384469,0.836337,0.937188,0.384469,0.384469,0.384469,0.384469,0.384469,0.384469,,,,,,,0.938859,0.574438,0.607085,0.560857,0.836337,0.937188,0.384469,0.384469,0.384469,0.384469,0.31972,0.210394,0.220188,0.206319,0.288963,0.319219,0.153403,0.153403,0.080931,0.080931,13.513742,22.08681,20.899024,22.62163,15.170319,13.537837,33,33,33,33,,,,,,,,,,,2580,2580,0.384469,0.384469,0.384469,0.384469,0.384469,0.384469,0.384469,0.384469,0.153403,0.153403,33,33,, +362,0,0.431805,2,2,1,2,3,,3,3,Haggerty,Rd,639005,0,0.432,0,9.252954,5,5,0.740236,0.740236,0.740236,0.740236,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.086294,0.976747,0.740236,0.740236,1.086294,0.976747,0.940802,0.913745,0.740236,0.740236,0.940802,0.913745,1.336095,1.429919,0.740236,0.740236,1.336095,1.429919,0.740236,0.740236,0.740236,0.740236,0.740236,0.740236,,,,,,,1.086294,0.976747,0.940802,0.913745,1.336095,1.429919,0.740236,0.740236,0.740236,0.740236,0.403613,0.370749,0.359965,0.351848,0.478553,0.506701,0.299796,0.299796,0.158534,0.158534,23.850149,26.525047,27.538496,28.353929,19.39104,18.118697,35,35,35,35,,,,,,,,,,,7946,7946,0.740236,0.740236,0.740236,0.740236,0.740236,0.740236,0.740236,0.740236,0.299796,0.299796,35,35,, +745,1,0.390646,1,0,0,1,1,ROF,3,3,E I 96/8 Mile,RAMP,633501,0,0.391,0,,2.24,5,0.669679,,0.669679,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.848984,,0.669679,,0.848984,,0.79368,,0.669679,,0.79368,,0.973642,,0.669679,,0.973642,,0.669679,,0.669679,,0.669679,,,,,,,,0.848984,,0.79368,,0.973642,,0.669679,,0.669679,,0.325012,,0.30842,,0.362409,,0.27122,,0.143423,,27.608017,,29.531746,,24.073284,,35,,35,,,,,,,,,,,,5074,,0.669679,,0.669679,,0.669679,,0.669679,,0.27122,,35,,, +1876,1,0.299545,4,0,0,1,1,,3,3,E I 96,,639202,3.662,3.961,0,,0.58,7,0.276503,,0.276503,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.287688,,0.276503,,0.287688,,0.278599,,0.276503,,0.278599,,0.30146,,0.276503,,0.30146,,0.276503,,0.276503,,0.276503,,,,,,,,0.287688,,0.278599,,0.30146,,0.276503,,0.276503,,0.140224,,0.137498,,0.144356,,0.136869,,0.074425,,62.472823,,64.510957,,59.618819,,65,,65,,,,,,,,,,,,30272,,0.276503,,0.276503,,0.276503,,0.276503,,0.136869,,65,,, +20933,0,0.038174,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.654,1.692,0,0.818022,5,5,0.065442,0.065442,0.065442,0.065442,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.199948,0.261005,0.065442,0.065442,0.199948,0.261005,0.174608,0.187972,0.065442,0.065442,0.174608,0.187972,0.458092,0.351407,0.065442,0.065442,0.458092,0.351407,0.065442,0.065442,0.065442,0.065442,0.065442,0.065442,,,,,,,0.199948,0.261005,0.174608,0.187972,0.458092,0.351407,0.065442,0.065442,0.065442,0.065442,0.066856,0.085173,0.059254,0.063263,0.144299,0.112293,0.026504,0.026504,0.014015,0.014015,11.4553,8.775549,13.117747,12.185138,5,6.517976,35,35,35,35,,,,,,,,,,,7946,7946,0.065442,0.065442,0.065442,0.065442,0.065442,0.065442,0.065442,0.065442,0.026504,0.026504,35,35,, +20934,0,0.130928,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,1.523,1.654,0,2.805597,5,5,0.224448,0.224448,0.224448,0.224448,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.892896,0.876095,0.224448,0.224448,0.892896,0.876095,0.677433,0.682601,0.224448,0.224448,0.677433,0.682601,1.369083,1.162201,0.224448,0.224448,1.369083,1.162201,0.224448,0.224448,0.224448,0.224448,0.224448,0.224448,,,,,,,0.892896,0.876095,0.677433,0.682601,1.369083,1.162201,0.224448,0.224448,0.224448,0.224448,0.291436,0.286395,0.226797,0.228347,0.434292,0.372227,0.090901,0.090901,0.048069,0.048069,8.797966,8.966692,11.596228,11.508435,5.737908,6.759304,35,35,35,35,,,,,,,,,,,3784,3784,0.224448,0.224448,0.224448,0.224448,0.224448,0.224448,0.224448,0.224448,0.090901,0.090901,35,35,, +3128,1,0.284294,1,0,0,1,1,RON,3,3,W 8 Mile/W I 96,RAMP,656710,0,0.284,0,,1.09,4,0.42644,,0.42644,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.427429,,0.42644,,0.427429,,0.427898,,0.42644,,0.427898,,0.436972,,0.42644,,0.436972,,0.42644,,0.42644,,0.42644,,,,,,,,0.427429,,0.427898,,0.436972,,0.42644,,0.42644,,0.179402,,0.179542,,0.182264,,0.179105,,0.095238,,39.907508,,39.863751,,39.035963,,40,,40,,,,,,,,,,,,5074,,0.42644,,0.42644,,0.42644,,0.42644,,0.179105,,40,,, +16100,-1,0.045203,0,4,0,1,1,,3,2,W I 96,,1607506,0,0.045,0,,0.58,7,,0.041726,,0.041726,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.046933,,0.041726,,0.046933,,0.042194,,0.041726,,0.042194,,0.046338,,0.041726,,0.046338,,0.041726,,0.041726,,0.041726,,,,,,,,0.046933,,0.042194,,0.046338,,0.041726,,0.041726,,0.022216,,0.020795,,0.022038,,0.020654,,0.011231,,57.788663,,64.27894,,58.529963,,65,,65,,,,,,,,,,,,30272,,0.041726,,0.041726,,0.041726,,0.041726,,0.020654,,65,, +16780,1,0.244109,4,0,0,1,1,,3,2,E I 96,,1607802,0,0.244,0,,0.58,7,0.225331,,0.225331,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.235783,,0.225331,,0.235783,,0.227399,,0.225331,,0.227399,,0.250938,,0.225331,,0.250938,,0.225331,,0.225331,,0.225331,,,,,,,,0.235783,,0.227399,,0.250938,,0.225331,,0.225331,,0.114675,,0.112159,,0.119221,,0.111539,,0.060652,,62.118563,,64.408909,,58.367185,,65,,65,,,,,,,,,,,,30272,,0.225331,,0.225331,,0.225331,,0.225331,,0.111539,,65,,, +16856,1,0.300294,1,0,0,1,1,RON,3,2,8 Mile/W I 96,RAMP,1607508,0,0.3,0,,1.09,4,0.450441,,0.450441,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.456853,,0.450441,,0.456853,,0.455316,,0.450441,,0.455316,,0.473446,,0.450441,,0.473446,,0.450441,,0.450441,,0.450441,,,,,,,,0.456853,,0.455316,,0.473446,,0.450441,,0.450441,,0.191109,,0.190648,,0.196087,,0.189185,,0.100598,,39.438587,,39.571728,,38.056401,,40,,40,,,,,,,,,,,,5074,,0.450441,,0.450441,,0.450441,,0.450441,,0.189185,,40,,, +16944,1,0.353901,1,0,0,1,1,RON,3,2,8 Mile/E I 96,RAMP,1607809,0,0.354,0,,1.09,4,0.530851,,0.530851,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.662775,,0.530851,,0.662775,,0.678642,,0.530851,,0.678642,,0.804832,,0.530851,,0.804832,,0.530851,,0.530851,,0.530851,,,,,,,,0.662775,,0.678642,,0.804832,,0.530851,,0.530851,,0.262535,,0.267295,,0.305152,,0.222958,,0.118557,,32.038095,,31.289027,,26.383222,,40,,40,,,,,,,,,,,,5074,,0.530851,,0.530851,,0.530851,,0.530851,,0.222958,,40,,, +20930,0,0.07616,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.828,1.905,0,1.631995,5,5,0.13056,0.13056,0.13056,0.13056,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.157418,0.217691,0.13056,0.13056,0.157418,0.217691,0.141,0.173006,0.13056,0.13056,0.141,0.173006,0.200553,0.256507,0.13056,0.13056,0.200553,0.256507,0.13056,0.13056,0.13056,0.13056,0.13056,0.13056,,,,,,,0.157418,0.217691,0.141,0.173006,0.200553,0.256507,0.13056,0.13056,0.13056,0.13056,0.060934,0.079016,0.056009,0.065611,0.073875,0.090661,0.052877,0.052877,0.027962,0.027962,29.028276,20.991192,32.408297,26.412804,22.784963,17.814694,35,35,35,35,,,,,,,,,,,7946,7946,0.13056,0.13056,0.13056,0.13056,0.13056,0.13056,0.13056,0.13056,0.052877,0.052877,35,35,, +1267,-1,0.189502,0,4,0,1,1,,3,3,W I 96,,639107,3.912,4.101,0,,0.58,7,,0.174925,,0.174925,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.196753,,0.174925,,0.196753,,0.176887,,0.174925,,0.176887,,0.194262,,0.174925,,0.194262,,0.174925,,0.174925,,0.174925,,,,,,,,0.196753,,0.176887,,0.194262,,0.174925,,0.174925,,0.093136,,0.087177,,0.092389,,0.086588,,0.047084,,57.788663,,64.27894,,58.529963,,65,,65,,,,,,,,,,,,30272,,0.174925,,0.174925,,0.174925,,0.174925,,0.086588,,65,, +2863,1,0.291917,1,0,0,1,1,RON,3,3,W 8 Mile/E I 96,RAMP,656709,0,0.292,0,,1.09,4,0.437875,,0.437875,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.437895,,0.437875,,0.437895,,0.437905,,0.437875,,0.437905,,0.438137,,0.437875,,0.438137,,0.437875,,0.437875,,0.437875,,,,,,,,0.437895,,0.437905,,0.438137,,0.437875,,0.437875,,0.183914,,0.183916,,0.183986,,0.183908,,0.097792,,39.998166,,39.997282,,39.976111,,40,,40,,,,,,,,,,,,5074,,0.437875,,0.437875,,0.437875,,0.437875,,0.183908,,40,,, +20931,0,0.099033,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.729,1.828,0,2.122141,5,5,0.169771,0.169771,0.169771,0.169771,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.204697,0.245704,0.169771,0.169771,0.204697,0.245704,0.183348,0.202726,0.169771,0.169771,0.183348,0.202726,0.260786,0.248727,0.169771,0.169771,0.260786,0.248727,0.169771,0.169771,0.169771,0.169771,0.169771,0.169771,,,,,,,0.204697,0.245704,0.183348,0.202726,0.260786,0.248727,0.169771,0.169771,0.169771,0.169771,0.079235,0.091537,0.07283,0.078644,0.096062,0.092444,0.068757,0.068757,0.036359,0.036359,29.028276,24.183534,32.408297,29.310508,22.784963,23.889606,35,35,35,35,,,,,,,,,,,7946,7946,0.169771,0.169771,0.169771,0.169771,0.169771,0.169771,0.169771,0.169771,0.068757,0.068757,35,35,, +20932,0,0.037521,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.692,1.729,0,0.804031,5,5,0.064323,0.064323,0.064323,0.064323,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.067452,0.256541,0.064323,0.064323,0.067452,0.256541,0.065986,0.184757,0.064323,0.064323,0.065986,0.184757,0.077442,0.345397,0.064323,0.064323,0.077442,0.345397,0.064323,0.064323,0.064323,0.064323,0.064323,0.064323,,,,,,,0.067452,0.256541,0.065986,0.184757,0.077442,0.345397,0.064323,0.064323,0.064323,0.064323,0.02699,0.083716,0.02655,0.062181,0.029986,0.110373,0.026051,0.026051,0.013776,0.013776,33.376049,8.775549,34.117401,12.185138,29.070607,6.517976,35,35,35,35,,,,,,,,,,,7946,7946,0.064323,0.064323,0.064323,0.064323,0.064323,0.064323,0.064323,0.064323,0.026051,0.026051,35,35,, +1368,1,0.04058,4,0,0,1,1,,3,3,E I 96,,639202,3.961,4.002,0,,0.58,7,0.037458,,0.037458,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.039196,,0.037458,,0.039196,,0.037802,,0.037458,,0.037802,,0.041715,,0.037458,,0.041715,,0.037458,,0.037458,,0.037458,,,,,,,,0.039196,,0.037802,,0.041715,,0.037458,,0.037458,,0.019063,,0.018645,,0.019819,,0.018542,,0.010083,,62.118563,,64.408909,,58.367185,,65,,65,,,,,,,,,,,,30272,,0.037458,,0.037458,,0.037458,,0.037458,,0.018542,,65,,, +20929,0,0.106602,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.905,2.011,0,2.284321,5,5,0.182746,0.182746,0.182746,0.182746,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.185467,0.304704,0.182746,0.182746,0.185467,0.304704,0.183411,0.242159,0.182746,0.182746,0.183411,0.242159,0.187068,0.359035,0.182746,0.182746,0.187068,0.359035,0.182746,0.182746,0.182746,0.182746,0.182746,0.182746,,,,,,,0.185467,0.304704,0.183411,0.242159,0.187068,0.359035,0.182746,0.182746,0.182746,0.182746,0.074828,0.110599,0.074212,0.091836,0.075309,0.126899,0.074012,0.074012,0.039138,0.039138,34.486525,20.991192,34.873022,26.412804,34.191219,17.814694,35,35,35,35,,,,,,,,,,,7946,7946,0.182746,0.182746,0.182746,0.182746,0.182746,0.182746,0.182746,0.182746,0.074012,0.074012,35,35,, +20928,0,0.039973,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.011,2.051,0,0.856554,5,5,0.068524,0.068524,0.068524,0.068524,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.073302,0.06886,0.068524,0.068524,0.073302,0.06886,0.069707,0.068666,0.068524,0.068524,0.069707,0.068666,0.077224,0.06974,0.068524,0.068524,0.077224,0.06974,0.068524,0.068524,0.068524,0.068524,0.068524,0.068524,,,,,,,0.073302,0.06886,0.069707,0.068666,0.077224,0.06974,0.068524,0.068524,0.068524,0.068524,0.029186,0.027853,0.028107,0.027795,0.030362,0.028117,0.027752,0.027752,0.014676,0.014676,32.718731,34.829572,34.406007,34.927799,31.057084,34.390086,35,35,35,35,,,,,,,,,,,7946,7946,0.068524,0.068524,0.068524,0.068524,0.068524,0.068524,0.068524,0.068524,0.027752,0.027752,35,35,, +868,0,0.3941,1,1,0,2,4,,3,3,9 Mile,Rd,633603,3.174,3.568,0,8.445003,6,4.5,0.716546,0.716546,0.716546,0.716546,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.14692,2.317878,0.716546,0.716546,1.14692,2.317878,1.108775,1.130303,0.716546,0.716546,1.108775,1.130303,2.677459,1.634954,0.716546,0.716546,2.677459,1.634954,0.716546,0.716546,0.716546,0.716546,0.716546,0.716546,,,,,,,1.14692,2.317878,1.108775,1.130303,2.677459,1.634954,0.716546,0.716546,0.716546,0.716546,0.415014,0.766301,0.40357,0.410029,0.874176,0.561424,0.285902,0.285902,0.150833,0.150833,20.616966,10.201576,21.326255,20.920062,8.831511,14.462797,33,33,33,33,,,,,,,,,,,2580,2580,0.716546,0.716546,0.716546,0.716546,0.716546,0.716546,0.716546,0.716546,0.285902,0.285902,33,33,, +1691,0,0.407612,1,1,1,2,3,,3,3,Haggerty,Rd,639005,1.037,1.444,0,8.734541,5,5,0.698763,0.698763,0.698763,0.698763,35,35,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,1.519662,0.906416,0.698763,0.698763,1.519662,0.906416,1.12559,1.029206,0.698763,0.698763,1.12559,1.029206,1.474432,1.832094,0.698763,0.698763,1.474432,1.832094,0.698763,0.698763,0.698763,0.698763,0.698763,0.698763,,,,,,,1.519662,0.906416,1.12559,1.029206,1.474432,1.832094,0.698763,0.698763,0.698763,0.698763,0.529269,0.345295,0.411047,0.382132,0.5157,0.622998,0.282999,0.282999,0.149652,0.149652,16.093527,26.981763,21.727914,23.762711,16.587207,13.349052,35,35,35,35,,,,,,,,,,,4162,4162,0.698763,0.698763,0.698763,0.698763,0.698763,0.698763,0.698763,0.698763,0.282999,0.282999,35,35,, +604,0,0.079227,1,1,0,2,4,,3,3,9 Mile,Rd,633603,3.568,3.647,0,1.697727,6,4.5,0.14405,0.14405,0.14405,0.14405,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.227793,0.246668,0.14405,0.14405,0.227793,0.246668,0.190109,0.186387,0.14405,0.14405,0.190109,0.186387,0.268218,0.257691,0.14405,0.14405,0.268218,0.257691,0.14405,0.14405,0.14405,0.14405,0.14405,0.14405,,,,,,,0.227793,0.246668,0.190109,0.186387,0.268218,0.257691,0.14405,0.14405,0.14405,0.14405,0.082599,0.088261,0.071294,0.070177,0.094726,0.091568,0.057476,0.057476,0.030322,0.030322,20.868269,19.271404,25.004798,25.50407,17.723,18.447042,33,33,33,33,,,,,,,,,,,2580,2580,0.14405,0.14405,0.14405,0.14405,0.14405,0.14405,0.14405,0.14405,0.057476,0.057476,33,33,, +1333,0,0.279359,1,1,0,2,4,,3,3,9 Mile,Rd,633603,2.895,3.174,0,5.986258,6,4.5,0.507925,0.507925,0.507925,0.507925,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.829296,1.052943,0.507925,0.507925,0.829296,1.052943,0.877673,0.870223,0.507925,0.507925,0.877673,0.870223,1.423896,1.299044,0.507925,0.507925,1.423896,1.299044,0.507925,0.507925,0.507925,0.507925,0.507925,0.507925,,,,,,,0.829296,1.052943,0.877673,0.870223,1.423896,1.299044,0.507925,0.507925,0.507925,0.507925,0.299073,0.366167,0.313586,0.311351,0.477454,0.439998,0.202662,0.202662,0.106918,0.106918,20.211739,15.918736,19.097693,19.261181,11.771588,12.902965,33,33,33,33,,,,,,,,,,,2580,2580,0.507925,0.507925,0.507925,0.507925,0.507925,0.507925,0.507925,0.507925,0.202662,0.202662,33,33,, +772,0,0.089237,2,2,0,2,3,,3,3,Haggerty,Rd,639005,1.453,1.542,0,1.912222,5,5,0.152978,0.152978,0.152978,0.152978,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.17238,0.154265,0.152978,0.152978,0.17238,0.154265,0.158057,0.156899,0.152978,0.152978,0.158057,0.156899,0.159709,0.175157,0.152978,0.152978,0.159709,0.175157,0.152978,0.152978,0.152978,0.152978,0.152978,0.152978,,,,,,,0.17238,0.154265,0.158057,0.156899,0.159709,0.175157,0.152978,0.152978,0.152978,0.152978,0.067777,0.062342,0.06348,0.063132,0.063975,0.06861,0.061956,0.061956,0.032763,0.032763,31.060619,34.707977,33.875238,34.125327,33.524774,30.568105,35,35,35,35,,,,,,,,,,,7568,7568,0.152978,0.152978,0.152978,0.152978,0.152978,0.152978,0.152978,0.152978,0.061956,0.061956,35,35,, +1208,0,0.008998,2,2,0,2,3,,3,3,Haggerty,Rd,639005,1.444,1.453,0,0.192808,5,5,0.015425,0.015425,0.015425,0.015425,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.016337,0.015655,0.015425,0.015425,0.016337,0.015655,0.015899,0.015792,0.015425,0.015425,0.015899,0.015792,0.016286,0.016683,0.015425,0.015425,0.016286,0.016683,0.015425,0.015425,0.015425,0.015425,0.015425,0.015425,,,,,,,0.016337,0.015655,0.015899,0.015792,0.016286,0.016683,0.015425,0.015425,0.015425,0.015425,0.006521,0.006316,0.006389,0.006357,0.006505,0.006625,0.006247,0.006247,0.003303,0.003303,33.045132,34.483968,33.956115,34.186361,33.148882,32.35972,35,35,35,35,,,,,,,,,,,7568,7568,0.015425,0.015425,0.015425,0.015425,0.015425,0.015425,0.015425,0.015425,0.006247,0.006247,35,35,, +16103,0,0.518225,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,1.857,2.375,0,11.104831,6,4.5,0.942228,0.942228,0.942228,0.942228,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.345258,1.364043,0.942228,0.942228,1.345258,1.364043,1.175496,1.1582,0.942228,0.942228,1.175496,1.1582,1.42388,1.515892,0.942228,0.942228,1.42388,1.515892,0.942228,0.942228,0.942228,0.942228,0.942228,0.942228,,,,,,,1.345258,1.364043,1.175496,1.1582,1.42388,1.515892,0.942228,0.942228,0.942228,0.942228,0.496858,0.502493,0.445929,0.440741,0.520445,0.548048,0.375949,0.375949,0.198339,0.198339,23.113433,22.79512,26.451404,26.846427,21.837185,20.511699,33,33,33,33,,,,,,,,,,,2580,2580,0.942228,0.942228,0.942228,0.942228,0.942228,0.942228,0.942228,0.942228,0.375949,0.375949,33,33,, +16131,1,1.004492,4,0,0,1,1,,3,2,E I 96,,1606201,2.615,3.619,0,,0.58,7,0.927224,,0.927224,,65,,88000,,19976,,44000,,28389,,30272,,30237,,1.101978,,0.927224,,1.101978,,0.937364,,0.927224,,0.937364,,1.078477,,0.927224,,1.078477,,0.927224,,0.927224,,0.927224,,,,,,,,1.101978,,0.937364,,1.078477,,0.927224,,0.927224,,0.511402,,0.462018,,0.504352,,0.458976,,0.249578,,54.692158,,64.296808,,55.883945,,65,,65,,,,,,,,,,,,30272,,0.927224,,0.927224,,0.927224,,0.927224,,0.458976,,65,,, +16230,0,0.26709,2,2,0,2,5,,3,2,Stark,Rd,1604610,0.664,0.931,0,5.723358,8,4.5,0.641016,0.641016,0.641016,0.641016,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.754793,0.641171,0.641016,0.641016,0.754793,0.641171,0.646079,0.644609,0.641016,0.641016,0.646079,0.644609,0.655146,0.840299,0.641016,0.641016,0.655146,0.840299,0.641016,0.641016,0.641016,0.641016,0.641016,0.641016,,,,,,,0.754793,0.641171,0.646079,0.644609,0.655146,0.840299,0.641016,0.641016,0.641016,0.641016,0.274514,0.240428,0.2419,0.241459,0.24462,0.300166,0.240381,0.240381,0.125532,0.125532,21.231514,24.993946,24.804075,24.860661,24.460812,19.071073,25,25,25,25,,,,,,,,,,,4816,4816,0.641016,0.641016,0.641016,0.641016,0.641016,0.641016,0.641016,0.641016,0.240381,0.240381,25,25,, +16600,-1,0.989975,0,4,0,1,1,,3,2,W I 96,,1606503,2.373,3.362,0,,0.58,7,,0.913823,,0.913823,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.990468,,0.913823,,0.990468,,0.92108,,0.913823,,0.92108,,1.068153,,0.913823,,1.068153,,0.913823,,0.913823,,0.913823,,,,,,,,0.990468,,0.92108,,1.068153,,0.913823,,0.913823,,0.475336,,0.454519,,0.498641,,0.452342,,0.245971,,59.970105,,64.487851,,55.608592,,65,,65,,,,,,,,,,,,30272,,0.913823,,0.913823,,0.913823,,0.913823,,0.452342,,65,, +16900,0,0.503947,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,7.83,8.334,0,10.798854,5,5,0.863908,0.863908,0.863908,0.863908,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.95328,0.949866,0.863908,0.863908,0.95328,0.949866,0.918632,0.917277,0.863908,0.863908,0.918632,0.917277,1.101447,1.049126,0.863908,0.863908,1.101447,1.049126,0.863908,0.863908,0.863908,0.863908,0.863908,0.863908,,,,,,,0.95328,0.949866,0.918632,0.917277,1.101447,1.049126,0.863908,0.863908,0.863908,0.863908,0.376694,0.37567,0.3663,0.365893,0.421144,0.405448,0.349883,0.349883,0.18502,0.18502,31.718686,31.832686,32.915012,32.963659,27.451886,28.820935,35,35,35,35,,,,,,,,,,,7568,7568,0.863908,0.863908,0.863908,0.863908,0.863908,0.863908,0.863908,0.863908,0.349883,0.349883,35,35,, +16959,0,0.635322,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.805,4.44,0,13.614041,6,4.5,1.155131,1.155131,1.155131,1.155131,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.191839,1.204927,1.155131,1.155131,1.191839,1.204927,1.162073,1.159735,1.155131,1.155131,1.162073,1.159735,1.318862,1.304916,1.155131,1.155131,1.318862,1.304916,1.155131,1.155131,1.155131,1.155131,1.155131,1.155131,,,,,,,1.191839,1.204927,1.162073,1.159735,1.318862,1.304916,1.155131,1.155131,1.155131,1.155131,0.47191,0.475836,0.46298,0.462278,0.510016,0.505833,0.460897,0.460897,0.243155,0.243155,31.983606,31.636209,32.802848,32.86899,28.903193,29.212078,33,33,33,33,,,,,,,,,,,5418,5418,1.155131,1.155131,1.155131,1.155131,1.155131,1.155131,1.155131,1.155131,0.460897,0.460897,33,33,, +17128,0,0.312995,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.2,0.513,0,6.707028,6,4.5,0.569081,0.569081,0.569081,0.569081,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.819275,0.610246,0.569081,0.569081,0.819275,0.610246,0.641456,0.641515,0.569081,0.569081,0.641456,0.641515,0.651904,0.915448,0.569081,0.569081,0.651904,0.915448,0.569081,0.569081,0.569081,0.569081,0.569081,0.569081,,,,,,,0.819275,0.610246,0.641456,0.641515,0.651904,0.915448,0.569081,0.569081,0.569081,0.569081,0.302121,0.239413,0.248776,0.248794,0.25191,0.330974,0.227063,0.227063,0.119792,0.119792,22.922323,30.77397,29.276667,29.273946,28.80743,20.514185,33,33,33,33,,,,,,,,,,,5160,5160,0.569081,0.569081,0.569081,0.569081,0.569081,0.569081,0.569081,0.569081,0.227063,0.227063,33,33,, +17871,0,0.778097,1,1,0,2,4,,3,2,Joy,Rd,1672705,7.105,7.883,0,16.673514,6,4.5,1.414722,1.414722,1.414722,1.414722,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.799839,1.477827,1.414722,1.414722,1.799839,1.477827,1.48691,1.488177,1.414722,1.414722,1.48691,1.488177,1.58398,1.97657,1.414722,1.414722,1.58398,1.97657,1.414722,1.414722,1.414722,1.414722,1.414722,1.414722,,,,,,,1.799839,1.477827,1.48691,1.488177,1.58398,1.97657,1.414722,1.414722,1.414722,1.414722,0.680009,0.583406,0.586131,0.586511,0.615251,0.733029,0.564474,0.564474,0.297799,0.297799,25.938891,31.590865,31.397885,31.371163,29.473758,23.619621,33,33,33,33,,,,,,,,,,,2580,2580,1.414722,1.414722,1.414722,1.414722,1.414722,1.414722,1.414722,1.414722,0.564474,0.564474,33,33,, +17949,0,0.136244,2,2,0,2,5,,3,2,Cowan,Rd,1669910,1.246,1.382,0,2.919524,8,4.5,0.326987,0.326987,0.326987,0.326987,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.327015,0.327011,0.326987,0.326987,0.327015,0.327011,0.327,0.327006,0.326987,0.326987,0.327,0.327006,0.327137,0.327321,0.326987,0.326987,0.327137,0.327321,0.326987,0.326987,0.326987,0.326987,0.326987,0.326987,,,,,,,0.327015,0.327011,0.327,0.327006,0.327137,0.327321,0.326987,0.326987,0.326987,0.326987,0.122629,0.122627,0.122624,0.122626,0.122665,0.12272,0.12262,0.12262,0.064035,0.064035,24.997837,24.99815,24.998985,24.998558,24.988552,24.974506,25,25,25,25,,,,,,,,,,,4816,4816,0.326987,0.326987,0.326987,0.326987,0.326987,0.326987,0.326987,0.326987,0.12262,0.12262,25,25,, +18050,0,0.313306,2,2,1,2,3,,3,2,Farmington,Rd,1690602,1.261,1.574,0,6.713705,5,5,0.537096,0.537096,0.537096,0.537096,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.658956,0.557996,0.537096,0.537096,0.658956,0.557996,0.563645,0.559677,0.537096,0.537096,0.563645,0.559677,0.593572,0.688749,0.537096,0.537096,0.593572,0.688749,0.537096,0.537096,0.537096,0.537096,0.537096,0.537096,,,,,,,0.658956,0.557996,0.563645,0.559677,0.593572,0.688749,0.537096,0.537096,0.537096,0.537096,0.254082,0.223794,0.225489,0.224298,0.234467,0.26302,0.217524,0.217524,0.115028,0.115028,28.527512,33.689071,33.35144,33.587912,31.6699,27.293492,35,35,35,35,,,,,,,,,,,7946,7946,0.537096,0.537096,0.537096,0.537096,0.537096,0.537096,0.537096,0.537096,0.217524,0.217524,35,35,, +18961,0,1.249372,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,4.489,5.738,0,26.77225,5,5,2.14178,2.14178,2.14178,2.14178,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,2.174756,2.319577,2.14178,2.14178,2.174756,2.319577,2.157939,2.158331,2.14178,2.14178,2.157939,2.158331,2.526974,2.304368,2.14178,2.14178,2.526974,2.304368,2.14178,2.14178,2.14178,2.14178,2.14178,2.14178,,,,,,,2.174756,2.319577,2.157939,2.158331,2.526974,2.304368,2.14178,2.14178,2.14178,2.14178,0.877314,0.92076,0.872269,0.872386,0.982979,0.916197,0.867421,0.867421,0.458698,0.458698,34.469285,32.317228,34.737906,34.731604,29.664844,32.530524,35,35,35,35,,,,,,,,,,,3784,3784,2.14178,2.14178,2.14178,2.14178,2.14178,2.14178,2.14178,2.14178,0.867421,0.867421,35,35,, +19123,0,0.399524,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,2.07,2.469,0,8.561235,6,4.5,0.726408,0.726408,0.726408,0.726408,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.769782,0.98652,0.726408,0.726408,0.769782,0.98652,0.870437,0.895138,0.726408,0.726408,0.870437,0.895138,1.216159,0.933896,0.726408,0.726408,1.216159,0.933896,0.726408,0.726408,0.726408,0.726408,0.726408,0.726408,,,,,,,0.769782,0.98652,0.870437,0.895138,1.216159,0.933896,0.726408,0.726408,0.726408,0.726408,0.302849,0.36787,0.333045,0.340456,0.436762,0.352083,0.289837,0.289837,0.152909,0.152909,31.14057,24.299005,27.539575,26.779637,19.710788,25.66822,33,33,33,33,,,,,,,,,,,5160,5160,0.726408,0.726408,0.726408,0.726408,0.726408,0.726408,0.726408,0.726408,0.289837,0.289837,33,33,, +23117,-1,0.602235,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.854,3.456,0,12.905036,8,4.5,,1.445364,,1.445364,,25,,14000,,3178,,7000,,4516,,4816,,4810,,1.445364,,1.445364,,1.445364,,1.445371,,1.445364,,1.445371,,1.445424,,1.445364,,1.445424,,1.445364,,1.445364,,1.445364,,,,,,,,1.445364,,1.445371,,1.445424,,1.445364,,1.445364,,0.542012,,0.542014,,0.542029,,0.542012,,0.28305,,24.999992,,24.999871,,24.998966,,25,,25,,,,,,,,,,,,4816,,1.445364,,1.445364,,1.445364,,1.445364,,0.542012,,25,, +23694,1,0.391608,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.543,2.935,0,8.391605,8,4.5,0.93986,,0.93986,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.93986,,0.93986,,0.93986,,0.93986,,0.93986,,0.93986,,0.939861,,0.93986,,0.939861,,0.93986,,0.93986,,0.93986,,,,,,,,0.93986,,0.93986,,0.939861,,0.93986,,0.93986,,0.352448,,0.352447,,0.352448,,0.352447,,0.184056,,24.999992,,24.999995,,24.99996,,25,,25,,,,,,,,,,,,4816,,0.93986,,0.93986,,0.93986,,0.93986,,0.352447,,25,,, +24044,0,0.073974,2,2,1,2,4,,3,2,Warren,Rd,4710470,8.007,8.081,0,1.585167,6,4.5,0.134499,0.134499,0.134499,0.134499,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.144694,0.14737,0.134499,0.134499,0.144694,0.14737,0.143916,0.151095,0.134499,0.134499,0.143916,0.151095,0.157621,0.182016,0.134499,0.134499,0.157621,0.182016,0.134499,0.134499,0.134499,0.134499,0.134499,0.134499,,,,,,,0.144694,0.14737,0.143916,0.151095,0.157621,0.182016,0.134499,0.134499,0.134499,0.134499,0.056723,0.057526,0.05649,0.058644,0.060602,0.06792,0.053665,0.053665,0.028312,0.028312,30.674935,30.117902,30.840774,29.37526,28.159187,24.384979,33,33,33,33,,,,,,,,,,,5418,5418,0.134499,0.134499,0.134499,0.134499,0.134499,0.134499,0.134499,0.134499,0.053665,0.053665,33,33,, +24133,0,0.44027,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.113,6.553,0,9.434348,6,4.5,0.80049,0.80049,0.80049,0.80049,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.026771,0.82212,0.80049,0.80049,1.026771,0.82212,0.815637,0.832455,0.80049,0.80049,0.815637,0.832455,0.822314,1.084287,0.80049,0.80049,0.822314,1.084287,0.80049,0.80049,0.80049,0.80049,0.80049,0.80049,,,,,,,1.026771,0.82212,0.815637,0.832455,0.822314,1.084287,0.80049,0.80049,0.80049,0.80049,0.38728,0.325884,0.32394,0.328985,0.325943,0.404535,0.319396,0.319396,0.168503,0.168503,25.727417,32.131795,32.387153,31.732874,32.124206,24.362714,33,33,33,33,,,,,,,,,,,5418,5418,0.80049,0.80049,0.80049,0.80049,0.80049,0.80049,0.80049,0.80049,0.319396,0.319396,33,33,, +31330,0,0.248667,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.328579,0.15,4,1.492002,1.492002,1.492002,1.492002,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.492002,1.492004,1.492002,1.492002,1.492002,1.492004,1.492003,1.492003,1.492002,1.492002,1.492003,1.492003,1.492005,1.492003,1.492002,1.492002,1.492005,1.492003,1.492002,1.492002,1.492002,1.492002,1.492002,1.492002,,,,,,,1.492002,1.492004,1.492003,1.492003,1.492005,1.492003,1.492002,1.492002,1.492002,1.492002,0.492361,0.492361,0.492361,0.492361,0.492362,0.492361,0.492361,0.492361,0.251154,0.251154,10,9.99999,9.999994,9.999992,9.999982,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,1.492002,1.492002,1.492002,1.492002,1.492002,1.492002,1.492002,1.492002,0.492361,0.492361,10,10,, +31730,0,0.248779,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.330988,0.15,4,1.492677,1.492677,1.492677,1.492677,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,,,,,,,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,0.492583,0.492583,0.492583,0.492583,0.492583,0.492583,0.492583,0.492583,0.251267,0.251267,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,1.492677,0.492583,0.492583,10,10,, +31788,0,0.324376,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.950919,0.15,4,1.946257,1.946257,1.946257,1.946257,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.946258,1.946257,1.946257,1.946257,1.946258,1.946257,1.946257,1.946257,1.946257,1.946257,1.946257,1.946257,1.946258,1.946258,1.946257,1.946257,1.946258,1.946258,1.946257,1.946257,1.946257,1.946257,1.946257,1.946257,,,,,,,1.946258,1.946257,1.946257,1.946257,1.946258,1.946258,1.946257,1.946257,1.946257,1.946257,0.642265,0.642265,0.642265,0.642265,0.642265,0.642265,0.642265,0.642265,0.32762,0.32762,9.999999,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.946257,1.946257,1.946257,1.946257,1.946257,1.946257,1.946257,1.946257,0.642265,0.642265,10,10,, +31791,0,0.405429,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.687761,0.15,4,2.432573,2.432573,2.432573,2.432573,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,,,,,,,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,0.802749,0.802749,0.802749,0.802749,0.802749,0.802749,0.802749,0.802749,0.409483,0.409483,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,2.432573,0.802749,0.802749,10,10,, +31794,0,0.314595,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.741329,0.15,4,1.887572,1.887572,1.887572,1.887572,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,,,,,,,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,0.622899,0.622899,0.622899,0.622899,0.622899,0.622899,0.622899,0.622899,0.317741,0.317741,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,1.887572,0.622899,0.622899,10,10,, +31796,0,0.256844,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.5038,0.15,4,1.541064,1.541064,1.541064,1.541064,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,,,,,,,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,0.508551,0.508551,0.508551,0.508551,0.508551,0.508551,0.508551,0.508551,0.259412,0.259412,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,1.541064,0.508551,0.508551,10,10,, +31797,0,0.436875,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.361607,0.15,4,2.62125,2.62125,2.62125,2.62125,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,,,,,,,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,0.865012,0.865012,0.865012,0.865012,0.865012,0.865012,0.865012,0.865012,0.441244,0.441244,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,2.62125,0.865012,0.865012,10,10,, +31815,0,0.524606,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.241563,0.15,4,3.147638,3.147638,3.147638,3.147638,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,,,,,,,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,1.03872,1.03872,1.03872,1.03872,1.03872,1.03872,1.03872,1.03872,0.529852,0.529852,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,3.147638,1.03872,1.03872,10,10,, +31843,0,0.541596,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.605636,0.15,4,3.249578,3.249578,3.249578,3.249578,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,,,,,,,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,1.072361,1.072361,1.072361,1.072361,1.072361,1.072361,1.072361,1.072361,0.547012,0.547012,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,3.249578,1.072361,1.072361,10,10,, +33767,0,0.459611,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.848797,0.15,4,2.757663,2.757663,2.757663,2.757663,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,,,,,,,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,0.910029,0.910029,0.910029,0.910029,0.910029,0.910029,0.910029,0.910029,0.464207,0.464207,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,2.757663,0.910029,0.910029,10,10,, +15099,0,0.68188,1,1,0,2,5,,3,2,Hix,Rd,1595808,2.18,2.861,0,14.611707,8,4.5,1.636511,1.636511,1.636511,1.636511,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,2.051025,1.656349,1.636511,1.636511,2.051025,1.656349,1.685163,1.676433,1.636511,1.636511,1.685163,1.676433,1.750933,2.369014,1.636511,1.636511,1.750933,2.369014,1.636511,1.636511,1.636511,1.636511,1.636511,1.636511,,,,,,,2.051025,1.656349,1.685163,1.676433,1.750933,2.369014,1.636511,1.636511,1.636511,1.636511,0.738046,0.619643,0.628287,0.625668,0.648018,0.833443,0.613692,0.613692,0.320483,0.320483,19.947478,24.700574,24.278239,24.404666,23.366266,17.269959,25,25,25,25,,,,,,,,,,,2408,2408,1.636511,1.636511,1.636511,1.636511,1.636511,1.636511,1.636511,1.636511,0.613692,0.613692,25,25,, +16565,0,0.289074,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,7.259,7.548,0,6.194434,5,5,0.495555,0.495555,0.495555,0.495555,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.654526,0.507244,0.495555,0.495555,0.654526,0.507244,0.520453,0.522429,0.495555,0.495555,0.520453,0.522429,0.523144,0.691836,0.495555,0.495555,0.523144,0.691836,0.495555,0.495555,0.495555,0.495555,0.495555,0.495555,,,,,,,0.654526,0.507244,0.520453,0.522429,0.523144,0.691836,0.495555,0.495555,0.495555,0.495555,0.248391,0.204207,0.208169,0.208762,0.208976,0.259584,0.2007,0.2007,0.106131,0.106131,26.499199,34.193411,33.325616,33.199565,33.154202,25.070115,35,35,35,35,,,,,,,,,,,7568,7568,0.495555,0.495555,0.495555,0.495555,0.495555,0.495555,0.495555,0.495555,0.2007,0.2007,35,35,, +17060,0,0.257786,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,1.003,1.261,0,5.523983,6,4.5,0.468702,0.468702,0.468702,0.468702,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.890006,0.884914,0.468702,0.468702,0.890006,0.884914,0.65828,0.717883,0.468702,0.468702,0.65828,0.717883,1.185133,1.106258,0.468702,0.468702,1.185133,1.106258,0.468702,0.468702,0.468702,0.468702,0.468702,0.468702,,,,,,,0.890006,0.884914,0.65828,0.717883,1.185133,1.106258,0.468702,0.468702,0.468702,0.468702,0.313403,0.311876,0.243885,0.261766,0.401941,0.378279,0.187012,0.187012,0.098662,0.098662,17.378715,17.478703,23.496321,21.545499,13.050986,13.981501,33,33,33,33,,,,,,,,,,,2580,2580,0.468702,0.468702,0.468702,0.468702,0.468702,0.468702,0.468702,0.468702,0.187012,0.187012,33,33,, +17633,0,0.175547,1,1,1,2,4,,3,2,Joy,Rd,1672705,6.473,6.648,0,3.761719,6,4.5,0.319176,0.319176,0.319176,0.319176,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.384152,0.34104,0.319176,0.319176,0.384152,0.34104,0.341505,0.337877,0.319176,0.319176,0.341505,0.337877,0.399852,0.405452,0.319176,0.319176,0.399852,0.405452,0.319176,0.319176,0.319176,0.319176,0.319176,0.319176,,,,,,,0.384152,0.34104,0.341505,0.337877,0.399852,0.405452,0.319176,0.319176,0.319176,0.319176,0.146844,0.133911,0.13405,0.132961,0.151554,0.153234,0.127351,0.127351,0.067187,0.067187,27.418358,30.884367,30.842366,31.173554,26.341748,25.977958,33,33,33,33,,,,,,,,,,,2838,2838,0.319176,0.319176,0.319176,0.319176,0.319176,0.319176,0.319176,0.319176,0.127351,0.127351,33,33,, +17708,0,0.18819,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,2.585,2.773,0,4.032633,6,4.5,0.342163,0.342163,0.342163,0.342163,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.343202,0.345757,0.342163,0.342163,0.343202,0.345757,0.343239,0.342804,0.342163,0.342163,0.343239,0.342804,0.362746,0.346324,0.342163,0.342163,0.362746,0.346324,0.342163,0.342163,0.342163,0.342163,0.342163,0.342163,,,,,,,0.343202,0.345757,0.343239,0.342804,0.362746,0.346324,0.342163,0.342163,0.342163,0.342163,0.136835,0.137601,0.136846,0.136715,0.142698,0.137771,0.136523,0.136523,0.072025,0.072025,32.900079,32.656951,32.896532,32.938248,31.127496,32.603492,33,33,33,33,,,,,,,,,,,5160,5160,0.342163,0.342163,0.342163,0.342163,0.342163,0.342163,0.342163,0.342163,0.136523,0.136523,33,33,, +18719,0,0.243389,1,1,0,2,4,,3,2,Joy,Rd,1672705,5.894,6.138,0,5.215477,6,4.5,0.442525,0.442525,0.442525,0.442525,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.642823,0.538125,0.442525,0.442525,0.642823,0.538125,0.526957,0.527104,0.442525,0.442525,0.526957,0.527104,0.682419,0.66124,0.442525,0.442525,0.682419,0.66124,0.442525,0.442525,0.442525,0.442525,0.442525,0.442525,,,,,,,0.642823,0.538125,0.526957,0.527104,0.682419,0.66124,0.442525,0.442525,0.442525,0.442525,0.236657,0.205248,0.201897,0.201941,0.248536,0.242182,0.176568,0.176568,0.093152,0.093152,22.717521,27.137438,27.712557,27.704843,21.39938,22.08477,33,33,33,33,,,,,,,,,,,2580,2580,0.442525,0.442525,0.442525,0.442525,0.442525,0.442525,0.442525,0.442525,0.176568,0.176568,33,33,, +24147,0,0.594673,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,5.051,5.645,0,12.743003,6,4.5,1.081224,1.081224,1.081224,1.081224,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.784788,1.133346,1.081224,1.081224,1.784788,1.133346,1.184048,1.170838,1.081224,1.081224,1.184048,1.170838,1.290386,2.067286,1.081224,1.081224,1.290386,2.067286,1.081224,1.081224,1.081224,1.081224,1.081224,1.081224,,,,,,,1.784788,1.133346,1.184048,1.170838,1.290386,2.067286,1.081224,1.081224,1.081224,1.081224,0.642478,0.447045,0.462256,0.458293,0.494157,0.727227,0.431409,0.431409,0.227598,0.227598,19.9914,31.482362,30.134253,30.474253,27.650967,17.25954,33,33,33,33,,,,,,,,,,,5418,5418,1.081224,1.081224,1.081224,1.081224,1.081224,1.081224,1.081224,1.081224,0.431409,0.431409,33,33,, +24148,0,0.461957,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,4.589,5.051,0,9.899069,6,4.5,0.839921,0.839921,0.839921,0.839921,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.550057,0.948029,0.839921,0.839921,1.550057,0.948029,0.997415,1.000801,0.839921,0.839921,0.997415,1.000801,1.179524,1.906381,0.839921,0.839921,1.179524,1.906381,0.839921,0.839921,0.839921,0.839921,0.839921,0.839921,,,,,,,1.550057,0.948029,0.997415,1.000801,1.179524,1.906381,0.839921,0.839921,0.839921,0.839921,0.548169,0.367561,0.382377,0.383393,0.437009,0.655067,0.335128,0.335128,0.176803,0.176803,17.88153,29.23686,27.789232,27.6952,23.4988,14.53927,33,33,33,33,,,,,,,,,,,5418,5418,0.839921,0.839921,0.839921,0.839921,0.839921,0.839921,0.839921,0.839921,0.335128,0.335128,33,33,, +31324,0,0.329408,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.058752,0.15,4,1.97645,1.97645,1.97645,1.97645,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.976451,1.976451,1.97645,1.97645,1.976451,1.976451,1.976451,1.976451,1.97645,1.97645,1.976451,1.976451,1.976451,1.976452,1.97645,1.97645,1.976451,1.976452,1.97645,1.97645,1.97645,1.97645,1.97645,1.97645,,,,,,,1.976451,1.976451,1.976451,1.976451,1.976451,1.976452,1.97645,1.97645,1.97645,1.97645,0.652229,0.652229,0.652229,0.652229,0.652229,0.652229,0.652229,0.652229,0.332702,0.332702,9.999996,10,9.999999,10,9.999999,9.999993,10,10,10,10,,,,,,,,,,,34400,34400,1.97645,1.97645,1.97645,1.97645,1.97645,1.97645,1.97645,1.97645,0.652229,0.652229,10,10,, +31502,0,0.497172,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.653681,0.15,4,2.983031,2.983031,2.983031,2.983031,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,,,,,,,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,0.9844,0.9844,0.9844,0.9844,0.9844,0.9844,0.9844,0.9844,0.502143,0.502143,9.999999,10,10,10,10,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,2.983031,0.9844,0.9844,10,10,, +31505,0,0.67877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.545063,0.15,4,4.072618,4.072618,4.072618,4.072618,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,,,,,,,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,1.343964,1.343964,1.343964,1.343964,1.343964,1.343964,1.343964,1.343964,0.685557,0.685557,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,4.072618,1.343964,1.343964,10,10,, +31733,0,0.48295,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.348922,0.15,4,2.897698,2.897698,2.897698,2.897698,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,,,,,,,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,0.95624,0.95624,0.95624,0.95624,0.95624,0.95624,0.95624,0.95624,0.487779,0.487779,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,2.897698,0.95624,0.95624,10,10,, +31504,0,0.246302,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.277897,0.15,4,1.477811,1.477811,1.477811,1.477811,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,,,,,,,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,0.487678,0.487678,0.487678,0.487678,0.487678,0.487678,0.487678,0.487678,0.248765,0.248765,9.999999,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,1.477811,0.487678,0.487678,10,10,, +31507,0,0.709993,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.214133,0.15,4,4.259957,4.259957,4.259957,4.259957,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,,,,,,,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,1.405786,1.405786,1.405786,1.405786,1.405786,1.405786,1.405786,1.405786,0.717093,0.717093,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,4.259957,1.405786,1.405786,10,10,, +31322,0,0.270855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.804025,0.15,4,1.625127,1.625127,1.625127,1.625127,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,,,,,,,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,0.536292,0.536292,0.536292,0.536292,0.536292,0.536292,0.536292,0.536292,0.273563,0.273563,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,1.625127,0.536292,0.536292,10,10,, +18021,0,0.087041,1,1,0,2,4,,3,2,Joy,Rd,1672705,5.807,5.894,0,1.865168,6,4.5,0.158257,0.158257,0.158257,0.158257,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.2387,0.20658,0.158257,0.158257,0.2387,0.20658,0.188451,0.188504,0.158257,0.158257,0.188451,0.188504,0.275885,0.256129,0.158257,0.158257,0.275885,0.256129,0.158257,0.158257,0.158257,0.158257,0.158257,0.158257,,,,,,,0.2387,0.20658,0.188451,0.188504,0.275885,0.256129,0.158257,0.158257,0.158257,0.158257,0.087278,0.077641,0.072203,0.072219,0.098433,0.092506,0.063144,0.063144,0.033313,0.033313,21.878767,25.280656,27.712557,27.704843,18.929909,20.390002,33,33,33,33,,,,,,,,,,,2580,2580,0.158257,0.158257,0.158257,0.158257,0.158257,0.158257,0.158257,0.158257,0.063144,0.063144,33,33,, +16407,0,0.259622,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,0.497,0.757,0,5.563327,6,4.5,0.47204,0.47204,0.47204,0.47204,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.509867,0.492499,0.47204,0.47204,0.509867,0.492499,0.490775,0.4969,0.47204,0.47204,0.490775,0.4969,0.50086,0.524993,0.47204,0.47204,0.50086,0.524993,0.47204,0.47204,0.47204,0.47204,0.47204,0.47204,,,,,,,0.509867,0.492499,0.490775,0.4969,0.50086,0.524993,0.47204,0.47204,0.47204,0.47204,0.199692,0.194482,0.193965,0.195802,0.19699,0.20423,0.188344,0.188344,0.099364,0.099364,30.55172,31.629158,31.740221,31.349002,31.101146,29.6715,33,33,33,33,,,,,,,,,,,2580,2580,0.47204,0.47204,0.47204,0.47204,0.47204,0.47204,0.47204,0.47204,0.188344,0.188344,33,33,, +16920,0,0.243529,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.727,6.97,0,5.218478,5,5,0.417478,0.417478,0.417478,0.417478,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.521466,0.434268,0.417478,0.417478,0.521466,0.434268,0.435523,0.445024,0.417478,0.417478,0.435523,0.445024,0.472366,0.666124,0.417478,0.417478,0.472366,0.666124,0.417478,0.417478,0.417478,0.417478,0.417478,0.417478,,,,,,,0.521466,0.434268,0.435523,0.445024,0.472366,0.666124,0.417478,0.417478,0.417478,0.417478,0.200275,0.174115,0.174492,0.177342,0.185545,0.243672,0.169079,0.169079,0.08941,0.08941,28.020493,33.646855,33.549883,32.833579,30.933087,21.935469,35,35,35,35,,,,,,,,,,,7568,7568,0.417478,0.417478,0.417478,0.417478,0.417478,0.417478,0.417478,0.417478,0.169079,0.169079,35,35,, +18278,0,0.237281,1,1,1,2,4,,3,2,Joy,Rd,1672705,6.138,6.375,0,5.084598,6,4.5,0.43142,0.43142,0.43142,0.43142,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.519246,0.460974,0.43142,0.43142,0.519246,0.460974,0.461601,0.456697,0.43142,0.43142,0.461601,0.456697,0.527018,0.548037,0.43142,0.43142,0.527018,0.548037,0.43142,0.43142,0.43142,0.43142,0.43142,0.43142,,,,,,,0.519246,0.460974,0.461601,0.456697,0.527018,0.548037,0.43142,0.43142,0.43142,0.43142,0.198484,0.181003,0.181191,0.17972,0.200816,0.207122,0.172137,0.172137,0.090814,0.090814,27.418358,30.884367,30.842366,31.173554,27.014013,25.977958,33,33,33,33,,,,,,,,,,,2838,2838,0.43142,0.43142,0.43142,0.43142,0.43142,0.43142,0.43142,0.43142,0.172137,0.172137,33,33,, +23288,0,0.166908,1,1,0,2,5,,3,2,Hix,Rd,4705254,0,0.167,0,3.576592,8,4.5,0.400578,0.400578,0.400578,0.400578,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.400793,0.400738,0.400578,0.400578,0.400793,0.400738,0.400588,0.400593,0.400578,0.400578,0.400588,0.400593,0.401332,0.402039,0.400578,0.400578,0.401332,0.402039,0.400578,0.400578,0.400578,0.400578,0.400578,0.400578,,,,,,,0.400793,0.400738,0.400588,0.400593,0.401332,0.402039,0.400578,0.400578,0.400578,0.400578,0.150281,0.150265,0.15022,0.150221,0.150443,0.150655,0.150217,0.150217,0.078447,0.078447,24.986585,24.990064,24.999366,24.999068,24.953063,24.909154,25,25,25,25,,,,,,,,,,,2408,2408,0.400578,0.400578,0.400578,0.400578,0.400578,0.400578,0.400578,0.400578,0.150217,0.150217,25,25,, +31732,0,0.485833,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.410709,0.15,4,2.914998,2.914998,2.914998,2.914998,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,,,,,,,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,0.961949,0.961949,0.961949,0.961949,0.961949,0.961949,0.961949,0.961949,0.490691,0.490691,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,2.914998,0.961949,0.961949,10,10,, +14852,0,0.3331,1,1,0,2,5,,3,2,Hix,Rd,1595808,2.861,3.194,0,7.137856,8,4.5,0.79944,0.79944,0.79944,0.79944,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.467628,0.909373,0.79944,0.79944,1.467628,0.909373,0.931366,0.938142,0.79944,0.79944,0.931366,0.938142,1.122246,1.750639,0.79944,0.79944,1.122246,1.750639,0.79944,0.79944,0.79944,0.79944,0.79944,0.79944,,,,,,,1.467628,0.909373,0.931366,0.938142,1.122246,1.750639,0.79944,0.79944,0.79944,0.79944,0.500246,0.33277,0.339368,0.341401,0.396632,0.58515,0.29979,0.29979,0.156557,0.156557,13.617889,21.977767,21.4588,21.303798,17.808933,11.416399,25,25,25,25,,,,,,,,,,,2408,2408,0.79944,0.79944,0.79944,0.79944,0.79944,0.79944,0.79944,0.79944,0.29979,0.29979,25,25,, +16954,0,0.223797,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.446,6.669,0,4.795658,5,5,0.383653,0.383653,0.383653,0.383653,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.431058,0.422883,0.383653,0.383653,0.431058,0.422883,0.399021,0.408993,0.383653,0.383653,0.399021,0.408993,0.429891,0.503247,0.383653,0.383653,0.429891,0.503247,0.383653,0.383653,0.383653,0.383653,0.383653,0.383653,,,,,,,0.431058,0.422883,0.399021,0.408993,0.429891,0.503247,0.383653,0.383653,0.383653,0.383653,0.169601,0.167148,0.15999,0.162981,0.169251,0.191258,0.155379,0.155379,0.082166,0.082166,31.150886,31.753118,33.651971,32.831497,31.235431,26.682392,35,35,35,35,,,,,,,,,,,7568,7568,0.383653,0.383653,0.383653,0.383653,0.383653,0.383653,0.383653,0.383653,0.155379,0.155379,35,35,, +31727,0,0.276877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.933069,0.15,4,1.661259,1.661259,1.661259,1.661259,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,,,,,,,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,0.548216,0.548216,0.548216,0.548216,0.548216,0.548216,0.548216,0.548216,0.279645,0.279645,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,1.661259,0.548216,0.548216,10,10,, +15682,0,0.172075,1,1,0,2,5,,3,2,Hix,Rd,1595808,3.194,3.366,0,3.687326,8,4.5,0.412981,0.412981,0.412981,0.412981,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.870935,0.655828,0.412981,0.412981,0.870935,0.655828,0.643247,0.62922,0.412981,0.412981,0.643247,0.62922,0.76146,0.938879,0.412981,0.412981,0.76146,0.938879,0.412981,0.412981,0.412981,0.412981,0.412981,0.412981,,,,,,,0.870935,0.655828,0.643247,0.62922,0.76146,0.938879,0.412981,0.412981,0.412981,0.412981,0.292254,0.227722,0.223948,0.21974,0.259412,0.312637,0.154868,0.154868,0.080875,0.080875,11.854509,15.742715,16.050626,16.408419,13.558836,10.99664,25,25,25,25,,,,,,,,,,,2408,2408,0.412981,0.412981,0.412981,0.412981,0.412981,0.412981,0.412981,0.412981,0.154868,0.154868,25,25,, +31726,0,0.16751,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.589498,0.15,4,1.005059,1.005059,1.005059,1.005059,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.00506,1.005059,1.005059,1.005059,1.00506,1.005059,1.005059,1.005059,1.005059,1.005059,1.005059,1.005059,1.005059,1.00506,1.005059,1.005059,1.005059,1.00506,1.005059,1.005059,1.005059,1.005059,1.005059,1.005059,,,,,,,1.00506,1.005059,1.005059,1.005059,1.005059,1.00506,1.005059,1.005059,1.005059,1.005059,0.33167,0.33167,0.33167,0.33167,0.33167,0.33167,0.33167,0.33167,0.169185,0.169185,9.999998,10,10,10,10,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.005059,1.005059,1.005059,1.005059,1.005059,1.005059,1.005059,1.005059,0.33167,0.33167,10,10,, +31728,0,0.020776,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.445193,0.15,4,0.124654,0.124654,0.124654,0.124654,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,,,,,,,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.041136,0.041136,0.041136,0.041136,0.041136,0.041136,0.041136,0.041136,0.020983,0.020983,9.999999,9.999997,9.999997,9.999997,9.999997,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.124654,0.041136,0.041136,10,10,, +16951,0,0.05736,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.669,6.727,0,1.229149,5,5,0.098332,0.098332,0.098332,0.098332,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.10632,0.103146,0.098332,0.098332,0.10632,0.103146,0.100312,0.101641,0.098332,0.098332,0.100312,0.101641,0.104089,0.117177,0.098332,0.098332,0.104089,0.117177,0.098332,0.098332,0.098332,0.098332,0.098332,0.098332,,,,,,,0.10632,0.103146,0.100312,0.101641,0.104089,0.117177,0.098332,0.098332,0.098332,0.098332,0.042221,0.041269,0.040418,0.040817,0.041552,0.045478,0.039824,0.039824,0.021059,0.021059,32.37026,33.366529,34.3093,33.860573,33.064229,29.371169,35,35,35,35,,,,,,,,,,,7568,7568,0.098332,0.098332,0.098332,0.098332,0.098332,0.098332,0.098332,0.098332,0.039824,0.039824,35,35,, +18059,0,0.09763,1,1,1,2,4,,3,2,Joy,Rd,1672705,6.375,6.473,0,2.092082,6,4.5,0.17751,0.17751,0.17751,0.17751,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.213646,0.18967,0.17751,0.17751,0.213646,0.18967,0.189928,0.18791,0.17751,0.17751,0.189928,0.18791,0.216844,0.225492,0.17751,0.17751,0.216844,0.225492,0.17751,0.17751,0.17751,0.17751,0.17751,0.17751,,,,,,,0.213646,0.18967,0.189928,0.18791,0.216844,0.225492,0.17751,0.17751,0.17751,0.17751,0.081667,0.074474,0.074552,0.073947,0.082627,0.085221,0.070826,0.070826,0.037366,0.037366,27.418358,30.884367,30.842366,31.173554,27.014013,25.977958,33,33,33,33,,,,,,,,,,,2838,2838,0.17751,0.17751,0.17751,0.17751,0.17751,0.17751,0.17751,0.17751,0.070826,0.070826,33,33,, +16120,0,0.246672,1,1,1,2,4,,3,2,Ann Arbor,Trl,1604508,0.757,1.003,0,5.285836,6,4.5,0.448495,0.448495,0.448495,0.448495,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.470356,0.594556,0.448495,0.448495,0.470356,0.594556,0.45934,0.518051,0.448495,0.448495,0.45934,0.518051,0.574783,0.6985,0.448495,0.448495,0.574783,0.6985,0.448495,0.448495,0.448495,0.448495,0.448495,0.448495,,,,,,,0.470356,0.594556,0.45934,0.518051,0.574783,0.6985,0.448495,0.448495,0.448495,0.448495,0.185508,0.222768,0.182203,0.199816,0.216836,0.253951,0.17895,0.17895,0.094408,0.094408,31.466267,24.893085,32.22086,28.569245,25.749429,21.18874,33,33,33,33,,,,,,,,,,,2838,2838,0.448495,0.448495,0.448495,0.448495,0.448495,0.448495,0.448495,0.448495,0.17895,0.17895,33,33,, +16444,0,0.288516,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.97,7.259,0,6.182478,5,5,0.494598,0.494598,0.494598,0.494598,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.620044,0.500494,0.494598,0.494598,0.620044,0.500494,0.516434,0.512549,0.494598,0.494598,0.516434,0.512549,0.525429,0.647517,0.494598,0.494598,0.525429,0.647517,0.494598,0.494598,0.494598,0.494598,0.494598,0.494598,,,,,,,0.620044,0.500494,0.516434,0.512549,0.525429,0.647517,0.494598,0.494598,0.494598,0.494598,0.237946,0.202081,0.206863,0.205698,0.209562,0.246188,0.200312,0.200312,0.105926,0.105926,27.9189,34.587684,33.520129,33.774184,32.946268,26.734337,35,35,35,35,,,,,,,,,,,7568,7568,0.494598,0.494598,0.494598,0.494598,0.494598,0.494598,0.494598,0.494598,0.200312,0.200312,35,35,, +24145,0,0.213123,2,2,0,2,4,,3,2,Newburgh,Rd,4710394,5.855,6.068,0,4.566927,6,4.5,0.387497,0.387497,0.387497,0.387497,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.702267,0.442147,0.387497,0.387497,0.702267,0.442147,0.451958,0.467318,0.387497,0.387497,0.451958,0.467318,0.530858,0.981985,0.387497,0.387497,0.530858,0.981985,0.387497,0.387497,0.387497,0.387497,0.387497,0.387497,,,,,,,0.702267,0.442147,0.451958,0.467318,0.530858,0.981985,0.387497,0.387497,0.387497,0.387497,0.249042,0.171006,0.17395,0.178558,0.19762,0.332958,0.154611,0.154611,0.081568,0.081568,18.208749,28.921107,28.293334,27.363358,24.088157,13.021989,33,33,33,33,,,,,,,,,,,5160,5160,0.387497,0.387497,0.387497,0.387497,0.387497,0.387497,0.387497,0.387497,0.154611,0.154611,33,33,, +24146,0,0.20931,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,5.645,5.855,0,4.485215,6,4.5,0.380564,0.380564,0.380564,0.380564,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.704113,0.460633,0.380564,0.380564,0.704113,0.460633,0.439414,0.475987,0.380564,0.380564,0.439414,0.475987,0.481273,0.984173,0.380564,0.380564,0.481273,0.984173,0.380564,0.380564,0.380564,0.380564,0.380564,0.380564,,,,,,,0.704113,0.460633,0.439414,0.475987,0.481273,0.984173,0.380564,0.380564,0.380564,0.380564,0.24891,0.175866,0.1695,0.180472,0.182058,0.332928,0.151845,0.151845,0.080109,0.080109,17.836061,27.263776,28.580357,26.384324,26.094544,12.76057,33,33,33,33,,,,,,,,,,,5418,5418,0.380564,0.380564,0.380564,0.380564,0.380564,0.380564,0.380564,0.380564,0.151845,0.151845,33,33,, +18395,0,0.09685,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,4.392,4.489,0,2.075364,5,5,0.166029,0.166029,0.166029,0.166029,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.166428,0.170462,0.166029,0.166029,0.166428,0.170462,0.16603,0.166032,0.166029,0.166029,0.16603,0.166032,0.199142,0.169766,0.166029,0.166029,0.199142,0.169766,0.166029,0.166029,0.166029,0.166029,0.166029,0.166029,,,,,,,0.166428,0.170462,0.16603,0.166032,0.199142,0.169766,0.166029,0.166029,0.166029,0.166029,0.067361,0.068572,0.067242,0.067243,0.077176,0.068363,0.067242,0.067242,0.035558,0.035558,34.916116,34.089813,34.999814,34.999353,29.180219,34.229676,35,35,35,35,,,,,,,,,,,3784,3784,0.166029,0.166029,0.166029,0.166029,0.166029,0.166029,0.166029,0.166029,0.067242,0.067242,35,35,, +18787,0,0.116205,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,2.469,2.585,0,2.490102,6,4.5,0.211281,0.211281,0.211281,0.211281,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.223897,0.23228,0.211281,0.211281,0.223897,0.23228,0.250287,0.249609,0.211281,0.211281,0.250287,0.249609,0.259479,0.265131,0.211281,0.211281,0.259479,0.265131,0.211281,0.211281,0.211281,0.211281,0.211281,0.211281,,,,,,,0.223897,0.23228,0.250287,0.249609,0.259479,0.265131,0.211281,0.211281,0.211281,0.211281,0.088086,0.090601,0.096003,0.0958,0.098761,0.100456,0.084301,0.084301,0.044475,0.044475,31.14057,30.016786,27.857173,27.932781,26.870304,26.297504,33,33,33,33,,,,,,,,,,,5160,5160,0.211281,0.211281,0.211281,0.211281,0.211281,0.211281,0.211281,0.211281,0.084301,0.084301,33,33,, +19602,0,0.093707,1,1,0,2,5,,3,2,Jughandle,Rd,1909401,0,0.094,0,2.008002,8,4.5,0.224896,0.224896,0.224896,0.224896,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.231124,0.224896,0.224896,0.224896,0.231124,0.224896,0.2249,0.224896,0.224896,0.224896,0.2249,0.224896,0.224896,0.230954,0.224896,0.224896,0.224896,0.230954,0.224896,0.224896,0.224896,0.224896,0.224896,0.224896,,,,,,,0.231124,0.224896,0.2249,0.224896,0.224896,0.230954,0.224896,0.224896,0.224896,0.224896,0.086204,0.084336,0.084337,0.084336,0.084336,0.086153,0.084336,0.084336,0.044042,0.044042,24.32639,25,24.999549,24.999998,24.999982,24.344238,25,25,25,25,,,,,,,,,,,2408,2408,0.224896,0.224896,0.224896,0.224896,0.224896,0.224896,0.224896,0.224896,0.084336,0.084336,25,25,, +24142,0,0.045519,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.068,6.113,0,0.975403,6,4.5,0.082761,0.082761,0.082761,0.082761,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.165365,0.101045,0.082761,0.082761,0.165365,0.101045,0.108821,0.117032,0.082761,0.082761,0.108821,0.117032,0.121338,0.173027,0.082761,0.082761,0.121338,0.173027,0.082761,0.082761,0.082761,0.082761,0.082761,0.082761,,,,,,,0.165365,0.101045,0.108821,0.117032,0.121338,0.173027,0.082761,0.082761,0.082761,0.082761,0.057803,0.038507,0.04084,0.043303,0.044595,0.060101,0.033022,0.033022,0.017421,0.017421,16.515758,27.028747,25.097443,23.336499,22.508349,15.784432,33,33,33,33,,,,,,,,,,,5418,5418,0.082761,0.082761,0.082761,0.082761,0.082761,0.082761,0.082761,0.082761,0.033022,0.033022,33,33,, +31503,0,0.450527,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.654159,0.15,4,2.703164,2.703164,2.703164,2.703164,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,2.703165,2.703164,2.703164,2.703164,2.703165,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,,,,,,,2.703164,2.703164,2.703164,2.703164,2.703164,2.703165,2.703164,2.703164,2.703164,2.703164,0.892044,0.892044,0.892044,0.892044,0.892044,0.892044,0.892044,0.892044,0.455033,0.455033,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,2.703164,0.892044,0.892044,10,10,, +31509,0,0.373745,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.008812,0.15,4,2.242467,2.242467,2.242467,2.242467,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.242468,2.242467,2.242467,2.242467,2.242468,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,,,,,,,2.242468,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,0.740014,0.740014,0.740014,0.740014,0.740014,0.740014,0.740014,0.740014,0.377482,0.377482,9.999999,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,2.242467,0.740014,0.740014,10,10,, +17959,0,0.196168,2,2,0,2,5,,3,2,Cowan,Rd,1669910,0.994,1.19,0,4.203607,8,4.5,0.470804,0.470804,0.470804,0.470804,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.474085,0.480934,0.470804,0.470804,0.474085,0.480934,0.473661,0.474093,0.470804,0.470804,0.473661,0.474093,0.487768,0.491755,0.470804,0.470804,0.487768,0.491755,0.470804,0.470804,0.470804,0.470804,0.470804,0.470804,,,,,,,0.474085,0.480934,0.473661,0.474093,0.487768,0.491755,0.470804,0.470804,0.470804,0.470804,0.177536,0.17959,0.177409,0.177538,0.181641,0.182837,0.176552,0.176552,0.092199,0.092199,24.82701,24.473447,24.849225,24.826579,24.130544,23.934872,25,25,25,25,,,,,,,,,,,4816,4816,0.470804,0.470804,0.470804,0.470804,0.470804,0.470804,0.470804,0.470804,0.176552,0.176552,25,25,, +24045,0,0.248885,2,2,1,2,4,,3,2,Warren,Rd,4710470,7.758,8.007,0,5.333251,6,4.5,0.452518,0.452518,0.452518,0.452518,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.481013,0.48411,0.452518,0.452518,0.481013,0.48411,0.476332,0.495498,0.452518,0.452518,0.476332,0.495498,0.506441,0.573415,0.452518,0.452518,0.506441,0.573415,0.452518,0.452518,0.452518,0.452518,0.452518,0.452518,,,,,,,0.481013,0.48411,0.476332,0.495498,0.506441,0.573415,0.452518,0.452518,0.452518,0.452518,0.189103,0.190032,0.187699,0.193449,0.196732,0.216824,0.180555,0.180555,0.095255,0.095255,31.045093,30.846521,31.350206,30.137563,29.486352,26.042408,33,33,33,33,,,,,,,,,,,5418,5418,0.452518,0.452518,0.452518,0.452518,0.452518,0.452518,0.452518,0.452518,0.180555,0.180555,33,33,, +31804,0,0.077693,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.664854,0.15,4,0.466159,0.466159,0.466159,0.466159,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,,,,,,,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.153833,0.153833,0.153833,0.153833,0.153833,0.153833,0.153833,0.153833,0.07847,0.07847,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.466159,0.153833,0.153833,10,10,, +18361,0,0.016297,2,2,1,2,5,,3,2,Central City,Pkwy,1669910,0.978,0.994,0,0.349226,8,4.5,0.039113,0.039113,0.039113,0.039113,25,25,14700,14700,3337,3337,7350,7350,4742,4742,5057,5057,5051,5051,0.03912,0.039117,0.039113,0.039113,0.03912,0.039117,0.039119,0.039114,0.039113,0.039113,0.039119,0.039114,0.039245,0.039678,0.039113,0.039113,0.039245,0.039678,0.039113,0.039113,0.039113,0.039113,0.039113,0.039113,,,,,,,0.03912,0.039117,0.039119,0.039114,0.039245,0.039678,0.039113,0.039113,0.039113,0.039113,0.01467,0.014669,0.014669,0.014668,0.014707,0.014837,0.014667,0.014667,0.00766,0.00766,24.995619,24.997697,24.996388,24.99972,24.915931,24.643933,25,25,25,25,,,,,,,,,,,5057,5057,0.039113,0.039113,0.039113,0.039113,0.039113,0.039113,0.039113,0.039113,0.014667,0.014667,25,25,, +31805,0,0.094618,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.027523,0.15,4,0.567706,0.567706,0.567706,0.567706,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,,,,,,,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.187343,0.187343,0.187343,0.187343,0.187343,0.187343,0.187343,0.187343,0.095564,0.095564,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.567706,0.187343,0.187343,10,10,, +18340,0,0.055971,2,2,0,2,5,,3,2,Cowan,Rd,1669910,1.19,1.246,0,1.199382,8,4.5,0.134331,0.134331,0.134331,0.134331,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.134452,0.134436,0.134331,0.134331,0.134452,0.134436,0.134428,0.134446,0.134331,0.134331,0.134428,0.134446,0.135171,0.135615,0.134331,0.134331,0.135171,0.135615,0.134331,0.134331,0.134331,0.134331,0.134331,0.134331,,,,,,,0.134452,0.134436,0.134428,0.134446,0.135171,0.135615,0.134331,0.134331,0.134331,0.134331,0.05041,0.050406,0.050403,0.050409,0.050626,0.050759,0.050374,0.050374,0.026306,0.026306,24.977459,24.980407,24.98193,24.978498,24.84466,24.763213,25,25,25,25,,,,,,,,,,,4816,4816,0.134331,0.134331,0.134331,0.134331,0.134331,0.134331,0.134331,0.134331,0.050374,0.050374,25,25,, +16697,0,0.59599,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,1.261,1.857,0,12.771204,6,4.5,1.083617,1.083617,1.083617,1.083617,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.106641,1.089677,1.083617,1.083617,1.106641,1.089677,1.104652,1.107117,1.083617,1.083617,1.104652,1.107117,1.100435,1.106464,1.083617,1.083617,1.100435,1.106464,1.083617,1.083617,1.083617,1.083617,1.083617,1.083617,,,,,,,1.106641,1.089677,1.104652,1.107117,1.100435,1.106464,1.083617,1.083617,1.083617,1.083617,0.43927,0.434181,0.438674,0.439413,0.437409,0.439217,0.432363,0.432363,0.228101,0.228101,32.313439,32.816489,32.371615,32.299548,32.495667,32.318598,33,33,33,33,,,,,,,,,,,2580,2580,1.083617,1.083617,1.083617,1.083617,1.083617,1.083617,1.083617,1.083617,0.432363,0.432363,33,33,, +16902,0,0.21967,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,7.611,7.83,0,4.707225,5,5,0.376578,0.376578,0.376578,0.376578,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.592202,0.447279,0.376578,0.376578,0.592202,0.447279,0.430358,0.429252,0.376578,0.376578,0.430358,0.429252,0.56629,0.731925,0.376578,0.376578,0.56629,0.731925,0.376578,0.376578,0.376578,0.376578,0.376578,0.376578,,,,,,,0.592202,0.447279,0.430358,0.429252,0.56629,0.731925,0.376578,0.376578,0.376578,0.376578,0.217201,0.173724,0.168648,0.168316,0.209428,0.259118,0.152514,0.152514,0.08065,0.08065,22.256289,29.467566,30.626232,30.70511,23.274692,18.007627,35,35,35,35,,,,,,,,,,,7568,7568,0.376578,0.376578,0.376578,0.376578,0.376578,0.376578,0.376578,0.376578,0.152514,0.152514,35,35,, +19044,0,0.456953,1,1,0,2,4,,3,2,Joy,Rd,1672705,6.648,7.105,0,9.791857,6,4.5,0.830824,0.830824,0.830824,0.830824,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.909509,0.898596,0.830824,0.830824,0.909509,0.898596,0.851387,0.856142,0.830824,0.830824,0.851387,0.856142,1.173954,1.034025,0.830824,0.830824,1.173954,1.034025,0.830824,0.830824,0.830824,0.830824,0.830824,0.830824,,,,,,,0.909509,0.898596,0.851387,0.856142,1.173954,1.034025,0.830824,0.830824,0.830824,0.830824,0.355104,0.351831,0.337668,0.339094,0.434438,0.392459,0.331499,0.331499,0.174888,0.174888,30.145056,30.511135,32.202962,32.024135,23.354584,26.515036,33,33,33,33,,,,,,,,,,,2580,2580,0.830824,0.830824,0.830824,0.830824,0.830824,0.830824,0.830824,0.830824,0.331499,0.331499,33,33,, +31787,0,0.308049,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.601049,0.15,4,1.848294,1.848294,1.848294,1.848294,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,,,,,,,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,0.609937,0.609937,0.609937,0.609937,0.609937,0.609937,0.609937,0.609937,0.311129,0.311129,9.999998,9.999999,10,10,9.999998,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,1.848294,0.609937,0.609937,10,10,, +31785,0,0.333698,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.150664,0.15,4,2.002186,2.002186,2.002186,2.002186,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,,,,,,,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,0.660721,0.660721,0.660721,0.660721,0.660721,0.660721,0.660721,0.660721,0.337035,0.337035,10,9.999999,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,2.002186,0.660721,0.660721,10,10,, +31786,0,0.48318,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.353865,0.15,4,2.899082,2.899082,2.899082,2.899082,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,,,,,,,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,0.956697,0.956697,0.956697,0.956697,0.956697,0.956697,0.956697,0.956697,0.488012,0.488012,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,2.899082,0.956697,0.956697,10,10,, +16603,-1,0.71121,0,4,0,1,1,,3,2,W I 96,,1606503,1.224,1.935,0,,0.58,7,,0.656502,,0.656502,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.661432,,0.656502,,0.661432,,0.656833,,0.656502,,0.656833,,0.672213,,0.656502,,0.672213,,0.656502,,0.656502,,0.656502,,,,,,,,0.661432,,0.656833,,0.672213,,0.656502,,0.656502,,0.326447,,0.325068,,0.329682,,0.324968,,0.176708,,64.5155,,64.967227,,63.480823,,65,,65,,,,,,,,,,,,30272,,0.656502,,0.656502,,0.656502,,0.656502,,0.324968,,65,, +16963,0,0.228615,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,2.938,3.167,0,4.898885,6,4.5,0.415663,0.415663,0.415663,0.415663,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.42022,0.42469,0.415663,0.415663,0.42022,0.42469,0.417321,0.417144,0.415663,0.415663,0.417321,0.417144,0.43778,0.45155,0.415663,0.415663,0.43778,0.45155,0.415663,0.415663,0.415663,0.415663,0.415663,0.415663,,,,,,,0.42022,0.42469,0.417321,0.417144,0.43778,0.45155,0.415663,0.415663,0.415663,0.415663,0.167217,0.168558,0.166347,0.166294,0.172485,0.176616,0.16585,0.16585,0.087497,0.087497,32.642114,32.298568,32.868878,32.882863,31.332786,30.377312,33,33,33,33,,,,,,,,,,,5418,5418,0.415663,0.415663,0.415663,0.415663,0.415663,0.415663,0.415663,0.415663,0.16585,0.16585,33,33,, +17018,1,0.758693,4,0,0,1,1,,3,2,E I 96,,1606201,1.416,2.174,0,,0.58,7,0.700332,,0.700332,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.723022,,0.700332,,0.723022,,0.700795,,0.700332,,0.700795,,0.710961,,0.700332,,0.710961,,0.700332,,0.700332,,0.700332,,,,,,,,0.723022,,0.700795,,0.710961,,0.700332,,0.700332,,0.353471,,0.346803,,0.349853,,0.346664,,0.188506,,62.960139,,64.95703,,64.028172,,65,,65,,,,,,,,,,,,30272,,0.700332,,0.700332,,0.700332,,0.700332,,0.346664,,65,,, +17122,0,0.518785,2,2,0,2,4,,3,2,Levan,Rd,1604605,1.213,1.732,0,11.116824,6,4.5,0.943246,0.943246,0.943246,0.943246,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,1.277193,1.056473,0.943246,0.943246,1.277193,1.056473,1.129205,1.073405,0.943246,0.943246,1.129205,1.073405,1.390333,1.35721,0.943246,0.943246,1.390333,1.35721,0.943246,0.943246,0.943246,0.943246,0.943246,0.943246,,,,,,,1.277193,1.056473,1.129205,1.073405,1.390333,1.35721,0.943246,0.943246,0.943246,0.943246,0.476539,0.410323,0.432143,0.415403,0.510481,0.500544,0.376355,0.376355,0.198553,0.198553,24.371495,29.463217,27.565517,28.998464,22.38824,22.934634,33,33,33,33,,,,,,,,,,,5160,5160,0.943246,0.943246,0.943246,0.943246,0.943246,0.943246,0.943246,0.943246,0.376355,0.376355,33,33,, +18000,0,0.110854,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,0.987,1.098,0,2.37544,8,4.5,0.266049,0.266049,0.266049,0.266049,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.271717,0.266132,0.266049,0.266049,0.271717,0.266132,0.267623,0.26822,0.266049,0.266049,0.267623,0.26822,0.267091,0.303561,0.266049,0.266049,0.267091,0.303561,0.266049,0.266049,0.266049,0.266049,0.266049,0.266049,,,,,,,0.271717,0.266132,0.267623,0.26822,0.267091,0.303561,0.266049,0.266049,0.266049,0.266049,0.101469,0.099793,0.100241,0.10042,0.100081,0.111022,0.099768,0.099768,0.052101,0.052101,24.478532,24.992211,24.852971,24.797695,24.902531,21.91071,25,25,25,25,,,,,,,,,,,2408,2408,0.266049,0.266049,0.266049,0.266049,0.266049,0.266049,0.266049,0.266049,0.099768,0.099768,25,25,, +22425,1,0.135155,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,1.955,2.09,0,2.896174,8,4.5,0.324371,,0.324371,,25,,21000,,4767,,10500,,6775,,7224,,7216,,0.550694,,0.324371,,0.550694,,0.430773,,0.324371,,0.430773,,0.593447,,0.324371,,0.593447,,0.324371,,0.324371,,0.324371,,,,,,,,0.550694,,0.430773,,0.593447,,0.324371,,0.324371,,0.189536,,0.15356,,0.202362,,0.121639,,0.063523,,14.725575,,18.824976,,13.664723,,25,,25,,,,,,,,,,,,7224,,0.324371,,0.324371,,0.324371,,0.324371,,0.121639,,25,,, +23227,-1,0.160337,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,1.973,2.133,0,3.435795,8,4.5,,0.384809,,0.384809,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.825392,,0.384809,,0.825392,,0.647484,,0.384809,,0.647484,,1.113804,,0.384809,,1.113804,,0.384809,,0.384809,,0.384809,,,,,,,,0.825392,,0.647484,,1.113804,,0.384809,,0.384809,,0.276478,,0.223106,,0.363002,,0.144303,,0.075358,,11.655338,,14.857853,,8.63727,,25,,25,,,,,,,,,,,,4816,,0.384809,,0.384809,,0.384809,,0.384809,,0.144303,,25,, +24128,0,0.485848,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,7.064,7.55,0,10.41102,6,4.5,0.883359,0.883359,0.883359,0.883359,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.236045,1.101512,0.883359,0.883359,1.236045,1.101512,1.059542,1.083114,0.883359,0.883359,1.059542,1.083114,1.335793,1.730481,0.883359,0.883359,1.335793,1.730481,0.883359,0.883359,0.883359,0.883359,0.883359,0.883359,,,,,,,1.236045,1.101512,1.059542,1.083114,1.335793,1.730481,0.883359,0.883359,0.883359,0.883359,0.458266,0.417906,0.405315,0.412387,0.48819,0.606597,0.35246,0.35246,0.185947,0.185947,23.583975,26.4644,27.512707,26.913925,21.822884,16.845526,33,33,33,33,,,,,,,,,,,5418,5418,0.883359,0.883359,0.883359,0.883359,0.883359,0.883359,0.883359,0.883359,0.35246,0.35246,33,33,, +31706,0,0.250461,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.367017,0.15,4,1.502765,1.502765,1.502765,1.502765,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.502765,1.502768,1.502765,1.502765,1.502765,1.502768,1.502765,1.502765,1.502765,1.502765,1.502765,1.502765,1.502769,1.502765,1.502765,1.502765,1.502769,1.502765,1.502765,1.502765,1.502765,1.502765,1.502765,1.502765,,,,,,,1.502765,1.502768,1.502765,1.502765,1.502769,1.502765,1.502765,1.502765,1.502765,1.502765,0.495912,0.495913,0.495913,0.495913,0.495914,0.495912,0.495912,0.495912,0.252965,0.252965,10,9.99998,9.999996,9.999995,9.999973,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,1.502765,1.502765,1.502765,1.502765,1.502765,1.502765,1.502765,1.502765,0.495912,0.495912,10,10,, +31707,0,0.468376,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.036638,0.15,4,2.810259,2.810259,2.810259,2.810259,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,,,,,,,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,0.927385,0.927385,0.927385,0.927385,0.927385,0.927385,0.927385,0.927385,0.47306,0.47306,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,2.810259,0.927385,0.927385,10,10,, +31722,0,0.475404,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.187219,0.15,4,2.852421,2.852421,2.852421,2.852421,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,,,,,,,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,0.941299,0.941299,0.941299,0.941299,0.941299,0.941299,0.941299,0.941299,0.480158,0.480158,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,2.852421,0.941299,0.941299,10,10,, +31735,0,0.535661,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.478453,0.15,4,3.213967,3.213967,3.213967,3.213967,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,,,,,,,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,1.060609,1.060609,1.060609,1.060609,1.060609,1.060609,1.060609,1.060609,0.541018,0.541018,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,3.213967,1.060609,1.060609,10,10,, +31799,0,0.471482,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.103194,0.15,4,2.828894,2.828894,2.828894,2.828894,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,,,,,,,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,0.933535,0.933535,0.933535,0.933535,0.933535,0.933535,0.933535,0.933535,0.476197,0.476197,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,2.828894,0.933535,0.933535,10,10,, +16919,1,0.329223,1,0,0,1,1,ROF,3,2,E I 96/Newburgh,RAMP,1606206,0,0.329,0,,2.24,5,0.564383,,0.564383,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.85899,,0.564383,,0.85899,,0.679409,,0.564383,,0.679409,,0.844112,,0.564383,,0.844112,,0.564383,,0.564383,,0.564383,,,,,,,,0.85899,,0.679409,,0.844112,,0.564383,,0.564383,,0.316957,,0.263083,,0.312494,,0.228575,,0.120872,,22.996087,,29.074406,,23.401401,,35,,35,,,,,,,,,,,,5074,,0.564383,,0.564383,,0.564383,,0.564383,,0.228575,,35,,, +17088,1,0.165028,1,0,0,1,1,RON,3,2,Newburgh/W I 96,RAMP,1606003,0,0.165,0,,1.09,4,0.247542,,0.247542,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.269071,,0.247542,,0.269071,,0.268209,,0.247542,,0.268209,,0.30655,,0.247542,,0.30655,,0.247542,,0.247542,,0.247542,,,,,,,,0.269071,,0.268209,,0.30655,,0.247542,,0.247542,,0.110426,,0.110168,,0.12167,,0.103968,,0.055284,,36.799624,,36.917848,,32.300432,,40,,40,,,,,,,,,,,,5074,,0.247542,,0.247542,,0.247542,,0.247542,,0.103968,,40,,, +22430,1,0.251675,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,1.582,1.834,0,5.393033,6,4.5,0.397381,,0.397381,,38,,17000,,3859,,8500,,5484,,5848,,5841,,0.417365,,0.397381,,0.417365,,0.40686,,0.397381,,0.40686,,0.442061,,0.397381,,0.442061,,0.397381,,0.397381,,0.397381,,,,,,,,0.417365,,0.40686,,0.442061,,0.397381,,0.397381,,0.170511,,0.167359,,0.17792,,0.164516,,0.087291,,36.180522,,37.114712,,34.159264,,38,,38,,,,,,,,,,,,5848,,0.397381,,0.397381,,0.397381,,0.397381,,0.164516,,38,,, +23230,-1,0.297482,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,1.464,1.762,0,6.374613,6,4.5,,0.469708,,0.469708,,38,,17000,,3859,,8500,,5484,,5848,,5841,,0.490285,,0.469708,,0.490285,,0.472648,,0.469708,,0.472648,,0.487207,,0.469708,,0.487207,,0.469708,,0.469708,,0.469708,,,,,,,,0.490285,,0.472648,,0.487207,,0.469708,,0.469708,,0.200632,,0.195341,,0.199709,,0.194459,,0.103179,,36.405193,,37.763683,,36.635156,,38,,38,,,,,,,,,,,,5848,,0.469708,,0.469708,,0.469708,,0.469708,,0.194459,,38,, +24131,0,0.314155,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.553,6.867,0,6.731882,6,4.5,0.57119,0.57119,0.57119,0.57119,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.006433,0.894515,0.57119,0.57119,1.006433,0.894515,0.812781,0.902899,0.57119,0.57119,0.812781,0.902899,1.095213,1.407206,0.57119,0.57119,1.095213,1.407206,0.57119,0.57119,0.57119,0.57119,0.57119,0.57119,,,,,,,1.006433,0.894515,0.812781,0.902899,1.095213,1.407206,0.57119,0.57119,0.57119,0.57119,0.358478,0.324902,0.300382,0.327418,0.385112,0.47871,0.227905,0.227905,0.120235,0.120235,18.728788,21.072057,23.191072,20.876383,17.210602,13.394817,33,33,33,33,,,,,,,,,,,5418,5418,0.57119,0.57119,0.57119,0.57119,0.57119,0.57119,0.57119,0.57119,0.227905,0.227905,33,33,, +31716,0,0.141695,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.036325,0.15,4,0.850171,0.850171,0.850171,0.850171,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.850171,0.850172,0.850171,0.850171,0.850171,0.850172,0.850172,0.850172,0.850171,0.850171,0.850172,0.850172,0.850173,0.850172,0.850171,0.850171,0.850173,0.850172,0.850171,0.850171,0.850171,0.850171,0.850171,0.850171,,,,,,,0.850171,0.850172,0.850172,0.850172,0.850173,0.850172,0.850171,0.850171,0.850171,0.850171,0.280556,0.280557,0.280557,0.280557,0.280557,0.280557,0.280556,0.280556,0.143112,0.143112,10,9.999994,9.99999,9.999989,9.99998,9.999993,10,10,10,10,,,,,,,,,,,34400,34400,0.850171,0.850171,0.850171,0.850171,0.850171,0.850171,0.850171,0.850171,0.280556,0.280556,10,10,, +31717,0,0.541469,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.602898,0.15,4,3.248811,3.248811,3.248811,3.248811,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,,,,,,,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,1.072108,1.072108,1.072108,1.072108,1.072108,1.072108,1.072108,1.072108,0.546883,0.546883,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,3.248811,1.072108,1.072108,10,10,, +31718,0,0.260446,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.580982,0.15,4,1.562675,1.562675,1.562675,1.562675,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.562675,1.562676,1.562675,1.562675,1.562675,1.562676,1.562676,1.562677,1.562675,1.562675,1.562676,1.562677,1.562678,1.562676,1.562675,1.562675,1.562678,1.562676,1.562675,1.562675,1.562675,1.562675,1.562675,1.562675,,,,,,,1.562675,1.562676,1.562676,1.562677,1.562678,1.562676,1.562675,1.562675,1.562675,1.562675,0.515683,0.515683,0.515683,0.515683,0.515684,0.515683,0.515683,0.515683,0.26305,0.26305,10,9.999995,9.999993,9.999988,9.999981,9.999994,10,10,10,10,,,,,,,,,,,34400,34400,1.562675,1.562675,1.562675,1.562675,1.562675,1.562675,1.562675,1.562675,0.515683,0.515683,10,10,, +16713,1,0.308169,4,0,0,1,1,,3,2,E I 96,,1606201,1.107,1.416,0,,0.58,7,0.284464,,0.284464,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.315449,,0.284464,,0.315449,,0.285485,,0.284464,,0.285485,,0.300727,,0.284464,,0.300727,,0.284464,,0.284464,,0.284464,,,,,,,,0.315449,,0.285485,,0.300727,,0.284464,,0.284464,,0.150105,,0.141116,,0.145688,,0.14081,,0.076568,,58.615373,,64.767604,,61.484941,,65,,65,,,,,,,,,,,,30272,,0.284464,,0.284464,,0.284464,,0.284464,,0.14081,,65,,, +30389,0,0.156325,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.349813,0.15,4,0.937948,0.937948,0.937948,0.937948,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,,,,,,,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.309523,0.309523,0.309523,0.309523,0.309523,0.309523,0.309523,0.309523,0.157888,0.157888,10,9.999999,10,9.999999,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.937948,0.309523,0.309523,10,10,, +31703,0,0.152749,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.27319,0.15,4,0.916493,0.916493,0.916493,0.916493,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,,,,,,,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.302443,0.302443,0.302443,0.302443,0.302443,0.302443,0.302443,0.302443,0.154276,0.154276,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.916493,0.302443,0.302443,10,10,, +18185,0,0.34002,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,0.647,0.987,0,7.286142,8,4.5,0.816048,0.816048,0.816048,0.816048,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.85669,1.201626,0.816048,0.816048,0.85669,1.201626,1.460337,1.427312,0.816048,0.816048,1.460337,1.427312,2.065432,1.285052,0.816048,0.816048,2.065432,1.285052,0.816048,0.816048,0.816048,0.816048,0.816048,0.816048,,,,,,,0.85669,1.201626,1.460337,1.427312,2.065432,1.285052,0.816048,0.816048,0.816048,0.816048,0.318211,0.421691,0.499305,0.489397,0.680833,0.446719,0.306018,0.306018,0.159809,0.159809,23.813973,16.977993,13.970198,14.29344,9.877446,15.875775,25,25,25,25,,,,,,,,,,,2408,2408,0.816048,0.816048,0.816048,0.816048,0.816048,0.816048,0.816048,0.816048,0.306018,0.306018,25,25,, +23228,-1,0.21164,0,3,0,2,4,,3,2,Schoolcraft,Rd,4705258,1.762,1.973,0,4.535151,6,4.5,,0.384801,,0.384801,,33,,22500,,5108,,11250,,7259,,7740,,7731,,0.619243,,0.384801,,0.619243,,0.495541,,0.384801,,0.495541,,0.826526,,0.384801,,0.826526,,0.384801,,0.384801,,0.384801,,,,,,,,0.619243,,0.495541,,0.826526,,0.384801,,0.384801,,0.223868,,0.186758,,0.286053,,0.153535,,0.081001,,20.50637,,25.625351,,15.36361,,33,,33,,,,,,,,,,,,7740,,0.384801,,0.384801,,0.384801,,0.384801,,0.153535,,33,, +24129,0,0.058765,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,7.006,7.064,0,1.259253,6,4.5,0.106846,0.106846,0.106846,0.106846,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.319598,0.123582,0.106846,0.106846,0.319598,0.123582,0.191226,0.122384,0.106846,0.106846,0.191226,0.122384,0.277236,0.132137,0.106846,0.106846,0.277236,0.132137,0.106846,0.106846,0.106846,0.106846,0.106846,0.106846,,,,,,,0.319598,0.123582,0.191226,0.122384,0.277236,0.132137,0.106846,0.106846,0.106846,0.106846,0.106457,0.047652,0.067945,0.047293,0.093749,0.050219,0.042631,0.042631,0.022491,0.022491,11.032311,28.530824,18.438469,28.810159,12.718078,26.683825,33,33,33,33,,,,,,,,,,,5418,5418,0.106846,0.106846,0.106846,0.106846,0.106846,0.106846,0.106846,0.106846,0.042631,0.042631,33,33,, +22429,1,0.120823,3,0,0,2,4,,3,2,Schoolcraft,Rd,4705231,1.834,1.955,0,2.589073,6,4.5,0.219679,,0.219679,,33,,22500,,5108,,11250,,7259,,7740,,7731,,0.582718,,0.219679,,0.582718,,0.381089,,0.219679,,0.381089,,0.694289,,0.219679,,0.694289,,0.219679,,0.219679,,0.219679,,,,,,,,0.582718,,0.381089,,0.694289,,0.219679,,0.219679,,0.196564,,0.136075,,0.230035,,0.087652,,0.046242,,12.440666,,19.022868,,10.441489,,33,,33,,,,,,,,,,,,7740,,0.219679,,0.219679,,0.219679,,0.219679,,0.087652,,33,,, +24130,0,0.138237,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.867,7.006,0,2.962215,6,4.5,0.251339,0.251339,0.251339,0.251339,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.442859,0.393611,0.251339,0.251339,0.442859,0.393611,0.357646,0.397301,0.251339,0.251339,0.357646,0.397301,0.476818,0.61921,0.251339,0.251339,0.476818,0.61921,0.251339,0.251339,0.251339,0.251339,0.251339,0.251339,,,,,,,0.442859,0.393611,0.357646,0.397301,0.476818,0.61921,0.251339,0.251339,0.251339,0.251339,0.15774,0.142966,0.132177,0.144073,0.167928,0.210646,0.100284,0.100284,0.052907,0.052907,18.728788,21.072057,23.191072,20.876383,17.394895,13.394817,33,33,33,33,,,,,,,,,,,5418,5418,0.251339,0.251339,0.251339,0.251339,0.251339,0.251339,0.251339,0.251339,0.100284,0.100284,33,33,, +16653,0,0.424672,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,2.514,2.938,0,9.100106,6,4.5,0.77213,0.77213,0.77213,0.77213,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.798198,0.795724,0.77213,0.77213,0.798198,0.795724,0.775692,0.779587,0.77213,0.77213,0.775692,0.779587,0.845152,0.895651,0.77213,0.77213,0.845152,0.895651,0.77213,0.77213,0.77213,0.77213,0.77213,0.77213,,,,,,,0.798198,0.795724,0.775692,0.779587,0.845152,0.895651,0.77213,0.77213,0.77213,0.77213,0.3159,0.315158,0.309149,0.310317,0.329987,0.345136,0.30808,0.30808,0.162533,0.162533,31.922263,32.021544,32.848459,32.684371,30.148765,28.448913,33,33,33,33,,,,,,,,,,,5418,5418,0.77213,0.77213,0.77213,0.77213,0.77213,0.77213,0.77213,0.77213,0.30808,0.30808,33,33,, +24127,0,0.501749,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,7.55,8.052,0,10.751769,6,4.5,0.912271,0.912271,0.912271,0.912271,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.941327,0.973882,0.912271,0.912271,0.941327,0.973882,0.935058,0.953198,0.912271,0.912271,0.935058,0.953198,0.955824,0.982368,0.912271,0.912271,0.955824,0.982368,0.912271,0.912271,0.912271,0.912271,0.912271,0.912271,,,,,,,0.941327,0.973882,0.935058,0.953198,0.955824,0.982368,0.912271,0.912271,0.912271,0.912271,0.372713,0.382479,0.370832,0.376274,0.377062,0.385025,0.363996,0.363996,0.192033,0.192033,31.981408,30.912318,32.195812,31.583121,31.496334,30.645295,33,33,33,33,,,,,,,,,,,5418,5418,0.912271,0.912271,0.912271,0.912271,0.912271,0.912271,0.912271,0.912271,0.363996,0.363996,33,33,, +31705,0,0.467428,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.016319,0.15,4,2.804569,2.804569,2.804569,2.804569,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.80457,2.80457,2.804569,2.804569,2.80457,2.80457,2.80457,2.80457,2.804569,2.804569,2.80457,2.80457,2.80457,2.804571,2.804569,2.804569,2.80457,2.804571,2.804569,2.804569,2.804569,2.804569,2.804569,2.804569,,,,,,,2.80457,2.80457,2.80457,2.80457,2.80457,2.804571,2.804569,2.804569,2.804569,2.804569,0.925508,0.925508,0.925508,0.925508,0.925508,0.925508,0.925508,0.925508,0.472103,0.472103,9.999999,9.999999,10,9.999999,9.999999,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,2.804569,2.804569,2.804569,2.804569,2.804569,2.804569,2.804569,2.804569,0.925508,0.925508,10,10,, +31708,0,0.460511,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.868099,0.15,4,2.763068,2.763068,2.763068,2.763068,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,2.763069,2.763068,2.763068,2.763068,2.763069,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,,,,,,,2.763068,2.763068,2.763068,2.763068,2.763068,2.763069,2.763068,2.763068,2.763068,2.763068,0.911813,0.911812,0.911812,0.911812,0.911812,0.911813,0.911812,0.911812,0.465116,0.465116,9.999997,10,9.999999,9.999999,9.999999,9.999993,10,10,10,10,,,,,,,,,,,34400,34400,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,2.763068,0.911812,0.911812,10,10,, +16706,1,0.440846,4,0,0,1,1,,3,2,E I 96,,1606201,2.174,2.615,0,,0.58,7,0.406935,,0.406935,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.444322,,0.406935,,0.444322,,0.408147,,0.406935,,0.408147,,0.429376,,0.406935,,0.429376,,0.406935,,0.406935,,0.406935,,,,,,,,0.444322,,0.408147,,0.429376,,0.406935,,0.406935,,0.212649,,0.201796,,0.208165,,0.201433,,0.109533,,59.530609,,64.807001,,61.602761,,65,,65,,,,,,,,,,,,30272,,0.406935,,0.406935,,0.406935,,0.406935,,0.201433,,65,,, +16841,0,0.237437,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.699,0.937,0,5.087944,6,4.5,0.431704,0.431704,0.431704,0.431704,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.730122,0.53985,0.431704,0.431704,0.730122,0.53985,0.538811,0.576846,0.431704,0.431704,0.538811,0.576846,0.609426,1.101831,0.431704,0.431704,0.609426,1.101831,0.431704,0.431704,0.431704,0.431704,0.431704,0.431704,,,,,,,0.730122,0.53985,0.538811,0.576846,0.609426,1.101831,0.431704,0.431704,0.431704,0.431704,0.261775,0.204694,0.204382,0.215793,0.225567,0.373288,0.17225,0.17225,0.090874,0.090874,19.512138,26.389236,26.440162,24.696789,23.376494,12.92961,33,33,33,33,,,,,,,,,,,5160,5160,0.431704,0.431704,0.431704,0.431704,0.431704,0.431704,0.431704,0.431704,0.17225,0.17225,33,33,, +16893,-1,0.437474,0,4,0,1,1,,3,2,W I 96,,1606503,1.935,2.373,0,,0.58,7,,0.403822,,0.403822,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.412908,,0.403822,,0.412908,,0.404554,,0.403822,,0.404554,,0.427811,,0.403822,,0.427811,,0.403822,,0.403822,,0.403822,,,,,,,,0.412908,,0.404554,,0.427811,,0.403822,,0.403822,,0.202618,,0.200111,,0.207088,,0.199892,,0.108695,,63.569592,,64.882328,,61.355171,,65,,65,,,,,,,,,,,,30272,,0.403822,,0.403822,,0.403822,,0.403822,,0.199892,,65,, +17671,0,0.390593,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,1.098,1.488,0,8.369844,8,4.5,0.937423,0.937423,0.937423,0.937423,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.9376,0.937449,0.937423,0.937423,0.9376,0.937449,0.937472,0.937581,0.937423,0.937423,0.937472,0.937581,0.937569,0.953314,0.937423,0.937423,0.937569,0.953314,0.937423,0.937423,0.937423,0.937423,0.937423,0.937423,,,,,,,0.9376,0.937449,0.937472,0.937581,0.937569,0.953314,0.937423,0.937423,0.937423,0.937423,0.351587,0.351541,0.351548,0.351581,0.351577,0.356301,0.351533,0.351533,0.183579,0.183579,24.995281,24.99929,24.998677,24.995773,24.996106,24.583254,25,25,25,25,,,,,,,,,,,2408,2408,0.937423,0.937423,0.937423,0.937423,0.937423,0.937423,0.937423,0.937423,0.351533,0.351533,25,25,, +22422,1,0.2501,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.208,2.458,0,5.359282,8,4.5,0.60024,,0.60024,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.603993,,0.60024,,0.603993,,0.601691,,0.60024,,0.601691,,0.601198,,0.60024,,0.601198,,0.60024,,0.60024,,0.60024,,,,,,,,0.603993,,0.601691,,0.601198,,0.60024,,0.60024,,0.226216,,0.225525,,0.225377,,0.22509,,0.117547,,24.844649,,24.939673,,24.960153,,25,,25,,,,,,,,,,,,4816,,0.60024,,0.60024,,0.60024,,0.60024,,0.22509,,25,,, +23194,-1,0.2626,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.214,2.477,0,5.627135,8,4.5,,0.630239,,0.630239,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.630285,,0.630239,,0.630285,,0.630575,,0.630239,,0.630575,,0.632123,,0.630239,,0.632123,,0.630239,,0.630239,,0.630239,,,,,,,,0.630285,,0.630575,,0.632123,,0.630239,,0.630239,,0.236353,,0.236441,,0.236905,,0.23634,,0.123422,,24.998176,,24.986672,,24.925487,,25,,25,,,,,,,,,,,,4816,,0.630239,,0.630239,,0.630239,,0.630239,,0.23634,,25,, +31792,0,0.255514,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.475306,0.15,4,1.533086,1.533086,1.533086,1.533086,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,,,,,,,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,0.505918,0.505918,0.505918,0.505918,0.505918,0.505918,0.505918,0.505918,0.258069,0.258069,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,1.533086,0.505918,0.505918,10,10,, +31793,0,0.231157,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.953359,0.15,4,1.386941,1.386941,1.386941,1.386941,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,,,,,,,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,0.45769,0.45769,0.45769,0.45769,0.45769,0.45769,0.45769,0.45769,0.233468,0.233468,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,1.386941,0.45769,0.45769,10,10,, +16617,1,0.177568,1,0,0,1,1,RON,3,2,Newburgh/E I 96,RAMP,1606208,0,0.178,0,,1.09,4,0.266352,,0.266352,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.313379,,0.266352,,0.313379,,0.291657,,0.266352,,0.291657,,0.343334,,0.266352,,0.343334,,0.266352,,0.266352,,0.266352,,,,,,,,0.313379,,0.291657,,0.343334,,0.266352,,0.266352,,0.125976,,0.119459,,0.134963,,0.111868,,0.059485,,33.997438,,36.52959,,31.031253,,40,,40,,,,,,,,,,,,5074,,0.266352,,0.266352,,0.266352,,0.266352,,0.111868,,40,,, +16789,1,0.175423,1,0,0,1,1,ROF,3,2,W I 96/Newburgh,RAMP,1606005,0,0.175,0,,2.24,5,0.300725,,0.300725,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.332885,,0.300725,,0.332885,,0.311493,,0.300725,,0.311493,,0.327548,,0.300725,,0.327548,,0.300725,,0.300725,,0.300725,,,,,,,,0.332885,,0.311493,,0.327548,,0.300725,,0.300725,,0.131442,,0.125024,,0.129841,,0.121794,,0.064405,,31.618713,,33.790148,,32.133902,,35,,35,,,,,,,,,,,,5074,,0.300725,,0.300725,,0.300725,,0.300725,,0.121794,,35,,, +22424,1,0.118399,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.09,2.208,0,2.537128,8,4.5,0.284158,,0.284158,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.285935,,0.284158,,0.285935,,0.284846,,0.284158,,0.284846,,0.284612,,0.284158,,0.284612,,0.284158,,0.284158,,0.284158,,,,,,,,0.285935,,0.284846,,0.284612,,0.284158,,0.284158,,0.107092,,0.106766,,0.106695,,0.106559,,0.055648,,24.844649,,24.939673,,24.960153,,25,,25,,,,,,,,,,,,4816,,0.284158,,0.284158,,0.284158,,0.284158,,0.106559,,25,,, +23196,-1,0.080663,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.133,2.214,0,1.7285,8,4.5,,0.193592,,0.193592,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.193606,,0.193592,,0.193606,,0.193695,,0.193592,,0.193695,,0.194171,,0.193592,,0.194171,,0.193592,,0.193592,,0.193592,,,,,,,,0.193606,,0.193695,,0.194171,,0.193592,,0.193592,,0.072601,,0.072628,,0.072771,,0.072597,,0.037912,,24.998176,,24.986672,,24.925487,,25,,25,,,,,,,,,,,,4816,,0.193592,,0.193592,,0.193592,,0.193592,,0.072597,,25,, +17125,0,0.186325,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.513,0.699,0,3.99267,6,4.5,0.338772,0.338772,0.338772,0.338772,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.536122,0.417585,0.338772,0.338772,0.536122,0.417585,0.40032,0.416669,0.338772,0.338772,0.40032,0.416669,0.473137,0.650071,0.338772,0.338772,0.473137,0.650071,0.338772,0.338772,0.338772,0.338772,0.338772,0.338772,,,,,,,0.536122,0.417585,0.40032,0.416669,0.473137,0.650071,0.338772,0.338772,0.338772,0.338772,0.194375,0.158814,0.153634,0.158539,0.175479,0.22856,0.13517,0.13517,0.071312,0.071312,20.852493,26.771737,27.92638,26.830592,23.628421,17.197323,33,33,33,33,,,,,,,,,,,5160,5160,0.338772,0.338772,0.338772,0.338772,0.338772,0.338772,0.338772,0.338772,0.13517,0.13517,33,33,, +16839,1,0.169366,1,0,0,1,1,ROF,3,2,W I 96/Levan,RAMP,1606505,0,0.169,0,,2.24,5,0.290342,,0.290342,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.472889,,0.290342,,0.472889,,0.347441,,0.290342,,0.347441,,0.39475,,0.290342,,0.39475,,0.290342,,0.290342,,0.290342,,,,,,,,0.472889,,0.347441,,0.39475,,0.290342,,0.290342,,0.172353,,0.134718,,0.148911,,0.117588,,0.062182,,21.489131,,29.248008,,25.742798,,35,,35,,,,,,,,,,,,5074,,0.290342,,0.290342,,0.290342,,0.290342,,0.117588,,35,,, +16918,1,0.164957,1,0,0,1,1,RON,3,2,Levan/E I 96,RAMP,1606209,0,0.165,0,,1.09,4,0.247436,,0.247436,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.26372,,0.247436,,0.26372,,0.276664,,0.247436,,0.276664,,0.317693,,0.247436,,0.317693,,0.247436,,0.247436,,0.247436,,,,,,,,0.26372,,0.276664,,0.317693,,0.247436,,0.247436,,0.108808,,0.112691,,0.125,,0.103923,,0.055261,,37.530113,,35.774259,,31.154151,,40,,40,,,,,,,,,,,,5074,,0.247436,,0.247436,,0.247436,,0.247436,,0.103923,,40,,, +17124,0,0.215894,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.937,1.152,0,4.626299,6,4.5,0.392534,0.392534,0.392534,0.392534,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.49805,0.506145,0.392534,0.392534,0.49805,0.506145,0.478577,0.45907,0.392534,0.392534,0.478577,0.45907,0.659469,0.5999,0.392534,0.392534,0.659469,0.5999,0.392534,0.392534,0.392534,0.392534,0.392534,0.392534,,,,,,,0.49805,0.506145,0.478577,0.45907,0.659469,0.5999,0.392534,0.392534,0.392534,0.392534,0.188276,0.190704,0.182434,0.176582,0.236702,0.218831,0.156621,0.156621,0.082629,0.082629,26.008703,25.592725,27.066975,28.217154,19.642532,21.593007,33,33,33,33,,,,,,,,,,,5160,5160,0.392534,0.392534,0.392534,0.392534,0.392534,0.392534,0.392534,0.392534,0.156621,0.156621,33,33,, +23147,-1,0.276682,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.577,2.854,0,5.928893,8,4.5,,0.664036,,0.664036,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.664036,,0.664036,,0.664036,,0.664037,,0.664036,,0.664037,,0.664038,,0.664036,,0.664038,,0.664036,,0.664036,,0.664036,,,,,,,,0.664036,,0.664037,,0.664038,,0.664036,,0.664036,,0.249014,,0.249014,,0.249014,,0.249014,,0.13004,,24.999999,,24.999977,,24.999942,,25,,25,,,,,,,,,,,,4816,,0.664036,,0.664036,,0.664036,,0.664036,,0.249014,,25,, +31782,0,0.263503,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.646502,0.15,4,1.581021,1.581021,1.581021,1.581021,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,,,,,,,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,0.521737,0.521737,0.521737,0.521737,0.521737,0.521737,0.521737,0.521737,0.266138,0.266138,10,10,9.999999,10,9.999998,10,10,10,10,10,,,,,,,,,,,34400,34400,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,1.581021,0.521737,0.521737,10,10,, +31783,0,0.226516,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.853914,0.15,4,1.359096,1.359096,1.359096,1.359096,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,1.359097,1.359096,1.359096,1.359096,1.359097,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,,,,,,,1.359096,1.359096,1.359096,1.359096,1.359097,1.359096,1.359096,1.359096,1.359096,1.359096,0.448502,0.448502,0.448502,0.448502,0.448502,0.448502,0.448502,0.448502,0.228781,0.228781,10,9.999998,9.999997,9.999999,9.999992,10,10,10,10,10,,,,,,,,,,,34400,34400,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,1.359096,0.448502,0.448502,10,10,, +31836,0,0.302402,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.480043,0.15,4,1.814412,1.814412,1.814412,1.814412,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,,,,,,,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,0.598756,0.598756,0.598756,0.598756,0.598756,0.598756,0.598756,0.598756,0.305426,0.305426,10,9.999998,10,9.999999,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,1.814412,0.598756,0.598756,10,10,, +23192,-1,0.100404,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.477,2.577,0,2.151507,8,4.5,,0.240969,,0.240969,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.427135,,0.240969,,0.427135,,0.329378,,0.240969,,0.329378,,0.504428,,0.240969,,0.504428,,0.240969,,0.240969,,0.240969,,,,,,,,0.427135,,0.329378,,0.504428,,0.240969,,0.240969,,0.146213,,0.116886,,0.169401,,0.090363,,0.04719,,14.103801,,18.289678,,11.942685,,25,,25,,,,,,,,,,,,4816,,0.240969,,0.240969,,0.240969,,0.240969,,0.090363,,25,, +23350,1,0.011361,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.532,2.543,0,0.243441,8,4.5,0.027265,,0.027265,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.04145,,0.027265,,0.04145,,0.05359,,0.027265,,0.05359,,0.100742,,0.027265,,0.100742,,0.027265,,0.027265,,0.027265,,,,,,,,0.04145,,0.05359,,0.100742,,0.027265,,0.027265,,0.01448,,0.018122,,0.032267,,0.010225,,0.005339,,16.444815,,12.71946,,6.766167,,25,,25,,,,,,,,,,,,4816,,0.027265,,0.027265,,0.027265,,0.027265,,0.010225,,25,,, +16838,0,0.060958,2,2,0,2,4,,3,2,Levan,Rd,1604605,1.152,1.213,0,1.306237,6,4.5,0.110832,0.110832,0.110832,0.110832,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.112343,0.193399,0.110832,0.110832,0.112343,0.193399,0.114208,0.196265,0.110832,0.110832,0.114208,0.196265,0.123572,0.420365,0.110832,0.110832,0.123572,0.420365,0.110832,0.110832,0.110832,0.110832,0.110832,0.110832,,,,,,,0.112343,0.193399,0.114208,0.196265,0.123572,0.420365,0.110832,0.110832,0.110832,0.110832,0.044675,0.068992,0.045235,0.069852,0.048044,0.137082,0.044222,0.044222,0.02333,0.02333,32.556261,18.9115,32.024465,18.635299,29.597787,8.700678,33,33,33,33,,,,,,,,,,,5160,5160,0.110832,0.110832,0.110832,0.110832,0.110832,0.110832,0.110832,0.110832,0.044222,0.044222,33,33,, +22614,1,0.073592,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.458,2.532,0,1.576966,8,4.5,0.17662,,0.17662,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.310161,,0.17662,,0.310161,,0.266053,,0.17662,,0.266053,,0.374061,,0.17662,,0.374061,,0.17662,,0.17662,,0.17662,,,,,,,,0.310161,,0.266053,,0.374061,,0.17662,,0.17662,,0.106295,,0.093062,,0.125465,,0.066233,,0.034588,,14.236158,,16.59632,,11.80424,,25,,25,,,,,,,,,,,,4816,,0.17662,,0.17662,,0.17662,,0.17662,,0.066233,,25,,, +16083,0,0.354354,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.44,3.794,0,7.593302,6,4.5,0.64428,0.64428,0.64428,0.64428,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.647192,0.654096,0.64428,0.64428,0.647192,0.654096,0.645119,0.644979,0.64428,0.64428,0.645119,0.644979,0.672655,0.666023,0.64428,0.64428,0.672655,0.666023,0.64428,0.64428,0.64428,0.64428,0.64428,0.64428,,,,,,,0.647192,0.654096,0.645119,0.644979,0.672655,0.666023,0.64428,0.64428,0.64428,0.64428,0.257941,0.260013,0.257319,0.257277,0.26558,0.263591,0.257068,0.257068,0.135621,0.135621,32.851545,32.504769,32.957088,32.964253,31.607959,31.922685,33,33,33,33,,,,,,,,,,,5418,5418,0.64428,0.64428,0.64428,0.64428,0.64428,0.64428,0.64428,0.64428,0.257068,0.257068,33,33,, +16836,0,0.466408,2,2,0,2,4,,3,2,Levan,Rd,1604605,1.732,2.198,0,9.994464,6,4.5,0.848015,0.848015,0.848015,0.848015,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.872564,0.895943,0.848015,0.848015,0.872564,0.895943,0.872756,0.872597,0.848015,0.848015,0.872756,0.872597,1.000279,0.918441,0.848015,0.848015,1.000279,0.918441,0.848015,0.848015,0.848015,0.848015,0.848015,0.848015,,,,,,,0.872564,0.895943,0.872756,0.872597,1.000279,0.918441,0.848015,0.848015,0.848015,0.848015,0.345723,0.352736,0.34578,0.345732,0.384037,0.359486,0.338358,0.338358,0.178507,0.178507,32.071575,31.234687,32.064525,32.070374,27.976682,30.469553,33,33,33,33,,,,,,,,,,,5160,5160,0.848015,0.848015,0.848015,0.848015,0.848015,0.848015,0.848015,0.848015,0.338358,0.338358,33,33,, +31798,0,0.519572,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.133682,0.15,4,3.117431,3.117431,3.117431,3.117431,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,,,,,,,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,1.028752,1.028752,1.028752,1.028752,1.028752,1.028752,1.028752,1.028752,0.524768,0.524768,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,3.117431,1.028752,1.028752,10,10,, +31806,0,0.253925,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.441257,0.15,4,1.523552,1.523552,1.523552,1.523552,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.523552,1.523554,1.523552,1.523552,1.523552,1.523554,1.523552,1.523552,1.523552,1.523552,1.523552,1.523552,1.523553,1.523552,1.523552,1.523552,1.523553,1.523552,1.523552,1.523552,1.523552,1.523552,1.523552,1.523552,,,,,,,1.523552,1.523554,1.523552,1.523552,1.523553,1.523552,1.523552,1.523552,1.523552,1.523552,0.502772,0.502773,0.502772,0.502772,0.502773,0.502772,0.502772,0.502772,0.256465,0.256465,10,9.999988,9.999999,9.999998,9.99999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.523552,1.523552,1.523552,1.523552,1.523552,1.523552,1.523552,1.523552,0.502772,0.502772,10,10,, +31807,0,0.511946,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.970266,0.15,4,3.071674,3.071674,3.071674,3.071674,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,,,,,,,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,1.013653,1.013653,1.013653,1.013653,1.013653,1.013653,1.013653,1.013653,0.517065,0.517065,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,3.071674,1.013653,1.013653,10,10,, +16650,0,0.273042,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.167,3.44,0,5.85091,6,4.5,0.496441,0.496441,0.496441,0.496441,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.501884,0.507222,0.496441,0.496441,0.501884,0.507222,0.498421,0.498209,0.496441,0.496441,0.498421,0.498209,0.522856,0.539302,0.496441,0.496441,0.522856,0.539302,0.496441,0.496441,0.496441,0.496441,0.496441,0.496441,,,,,,,0.501884,0.507222,0.498421,0.498209,0.522856,0.539302,0.496441,0.496441,0.496441,0.496441,0.199713,0.201314,0.198674,0.19861,0.206005,0.210938,0.19808,0.19808,0.104501,0.104501,32.642114,32.298568,32.868878,32.882863,31.332786,30.377312,33,33,33,33,,,,,,,,,,,5418,5418,0.496441,0.496441,0.496441,0.496441,0.496441,0.496441,0.496441,0.496441,0.19808,0.19808,33,33,, +31846,0,0.344341,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.378736,0.15,4,2.066046,2.066046,2.066046,2.066046,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,2.066047,2.066046,2.066046,2.066046,2.066047,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,,,,,,,2.066046,2.066046,2.066046,2.066046,2.066046,2.066047,2.066046,2.066046,2.066046,2.066046,0.681795,0.681795,0.681795,0.681795,0.681795,0.681795,0.681795,0.681795,0.347784,0.347784,9.999998,10,9.999999,9.999999,9.999999,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,2.066046,0.681795,0.681795,10,10,, +16961,0,0.010854,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.794,3.805,0,0.23258,6,4.5,0.019734,0.019734,0.019734,0.019734,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.019986,0.020298,0.019734,0.019734,0.019986,0.020298,0.019792,0.019774,0.019734,0.019734,0.019792,0.019774,0.021528,0.021208,0.019734,0.019734,0.021528,0.021208,0.019734,0.019734,0.019734,0.019734,0.019734,0.019734,,,,,,,0.019986,0.020298,0.019792,0.019774,0.021528,0.021208,0.019734,0.019734,0.019734,0.019734,0.007949,0.008043,0.007891,0.007886,0.008412,0.008316,0.007874,0.007874,0.004154,0.004154,32.584427,32.083778,32.90363,32.933053,30.249919,30.706685,33,33,33,33,,,,,,,,,,,5418,5418,0.019734,0.019734,0.019734,0.019734,0.019734,0.019734,0.019734,0.019734,0.007874,0.007874,33,33,, +16783,0,0.503344,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,8.83,9.333,0,10.785949,5,5,0.862876,0.862876,0.862876,0.862876,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,1.118096,0.983371,0.862876,0.862876,1.118096,0.983371,0.981197,0.972961,0.862876,0.862876,0.981197,0.972961,1.100826,1.247542,0.862876,0.862876,1.100826,1.247542,0.862876,0.862876,0.862876,0.862876,0.862876,0.862876,,,,,,,1.118096,0.983371,0.981197,0.972961,1.100826,1.247542,0.862876,0.862876,0.862876,0.862876,0.426031,0.385613,0.384961,0.38249,0.42085,0.464865,0.349465,0.349465,0.184799,0.184799,27.010782,30.711358,30.779405,31.039943,27.434538,24.208123,35,35,35,35,,,,,,,,,,,7568,7568,0.862876,0.862876,0.862876,0.862876,0.862876,0.862876,0.862876,0.862876,0.349465,0.349465,35,35,, +17013,0,0.528153,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,2.691,3.219,0,11.317554,6,4.5,0.960277,0.960277,0.960277,0.960277,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.090782,1.215237,0.960277,0.960277,1.090782,1.215237,1.026827,1.017621,0.960277,0.960277,1.026827,1.017621,1.359355,1.259765,0.960277,0.960277,1.359355,1.259765,0.960277,0.960277,0.960277,0.960277,0.960277,0.960277,,,,,,,1.090782,1.215237,1.026827,1.017621,1.359355,1.259765,0.960277,0.960277,0.960277,0.960277,0.422302,0.459639,0.403116,0.400354,0.502874,0.472997,0.383151,0.383151,0.202138,0.202138,29.051773,26.07652,30.861229,31.140435,23.311908,25.15482,33,33,33,33,,,,,,,,,,,2580,2580,0.960277,0.960277,0.960277,0.960277,0.960277,0.960277,0.960277,0.960277,0.383151,0.383151,33,33,, +17648,0,0.196198,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,6.897,7.093,0,4.20424,5,5,0.336339,0.336339,0.336339,0.336339,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.352067,0.458943,0.336339,0.336339,0.352067,0.458943,0.345675,0.347177,0.336339,0.336339,0.345675,0.347177,0.516359,0.397219,0.336339,0.336339,0.516359,0.397219,0.336339,0.336339,0.336339,0.336339,0.336339,0.336339,,,,,,,0.352067,0.458943,0.345675,0.347177,0.516359,0.397219,0.336339,0.336339,0.336339,0.336339,0.140936,0.172998,0.139018,0.139469,0.190223,0.154481,0.136217,0.136217,0.072033,0.072033,33.436461,25.649974,34.054747,33.907364,22.79785,29.6357,35,35,35,35,,,,,,,,,,,3784,3784,0.336339,0.336339,0.336339,0.336339,0.336339,0.336339,0.336339,0.336339,0.136217,0.136217,35,35,, +18075,0,0.641513,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,6.256,6.897,0,13.746715,5,5,1.099737,1.099737,1.099737,1.099737,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.125293,1.325462,1.099737,1.099737,1.125293,1.325462,1.114641,1.117819,1.099737,1.099737,1.114641,1.117819,1.435719,1.241655,1.099737,1.099737,1.435719,1.241655,1.099737,1.099737,1.099737,1.099737,1.099737,1.099737,,,,,,,1.125293,1.325462,1.114641,1.117819,1.435719,1.241655,1.099737,1.099737,1.099737,1.099737,0.45306,0.513111,0.449865,0.450818,0.546188,0.487969,0.445394,0.445394,0.235527,0.235527,34.205127,29.03954,34.532018,34.433846,26.809419,30.999603,35,35,35,35,,,,,,,,,,,3784,3784,1.099737,1.099737,1.099737,1.099737,1.099737,1.099737,1.099737,1.099737,0.445394,0.445394,35,35,, +18379,0,0.637131,1,1,0,2,5,,3,2,Cowan,Rd,1669808,0,0.637,0,13.652813,8,4.5,1.529115,1.529115,1.529115,1.529115,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.570101,1.713521,1.529115,1.529115,1.570101,1.713521,1.59446,1.621622,1.529115,1.529115,1.59446,1.621622,1.794618,1.678264,1.529115,1.529115,1.794618,1.678264,1.529115,1.529115,1.529115,1.529115,1.529115,1.529115,,,,,,,1.570101,1.713521,1.59446,1.621622,1.794618,1.678264,1.529115,1.529115,1.529115,1.529115,0.585714,0.62874,0.593022,0.60117,0.653069,0.618163,0.573418,0.573418,0.299452,0.299452,24.347404,22.309543,23.975443,23.57385,21.301395,22.778224,25,25,25,25,,,,,,,,,,,2408,2408,1.529115,1.529115,1.529115,1.529115,1.529115,1.529115,1.529115,1.529115,0.573418,0.573418,25,25,, +18712,0,0.121475,1,1,0,2,5,,3,2,Farmington,Rd,1690602,0.142,0.263,0,2.603027,8,4.5,0.291539,0.291539,0.291539,0.291539,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.292394,0.29155,0.291539,0.291539,0.292394,0.29155,0.291603,0.291587,0.291539,0.291539,0.291603,0.291587,0.291961,0.292903,0.291539,0.291539,0.291961,0.292903,0.291539,0.291539,0.291539,0.291539,0.291539,0.291539,,,,,,,0.292394,0.29155,0.291603,0.291587,0.291961,0.292903,0.291539,0.291539,0.291539,0.291539,0.109584,0.109331,0.109346,0.109341,0.109454,0.109736,0.109327,0.109327,0.057093,0.057093,24.926912,24.999042,24.994518,24.99593,24.963886,24.883623,25,25,25,25,,,,,,,,,,,2408,2408,0.291539,0.291539,0.291539,0.291539,0.291539,0.291539,0.291539,0.291539,0.109327,0.109327,25,25,, +24013,0,0.57085,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.893,11.463,0,12.232503,5,5,0.9786,0.9786,0.9786,0.9786,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.765293,1.198923,0.9786,0.9786,1.765293,1.198923,1.308709,1.320993,0.9786,0.9786,1.308709,1.320993,1.632329,2.553848,0.9786,0.9786,1.632329,2.553848,0.9786,0.9786,0.9786,0.9786,0.9786,0.9786,,,,,,,1.765293,1.198923,1.308709,1.320993,1.632329,2.553848,0.9786,0.9786,0.9786,0.9786,0.632341,0.46243,0.495366,0.499051,0.592452,0.868907,0.396333,0.396333,0.209584,0.209584,19.402452,28.568139,26.171606,25.928236,20.982906,13.411529,35,35,35,35,,,,,,,,,,,7946,7946,0.9786,0.9786,0.9786,0.9786,0.9786,0.9786,0.9786,0.9786,0.396333,0.396333,35,35,, +24040,0,0.220389,2,2,1,2,3,,3,2,Warren,Rd,4710470,8.741,8.961,0,4.722627,5,5,0.37781,0.37781,0.37781,0.37781,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.417305,0.425401,0.37781,0.37781,0.417305,0.425401,0.404983,0.406533,0.37781,0.37781,0.404983,0.406533,0.47717,0.469473,0.37781,0.37781,0.47717,0.469473,0.37781,0.37781,0.37781,0.37781,0.37781,0.37781,,,,,,,0.417305,0.425401,0.404983,0.406533,0.47717,0.469473,0.37781,0.37781,0.37781,0.37781,0.164862,0.16729,0.161165,0.16163,0.182821,0.180512,0.153013,0.153013,0.080914,0.080914,31.687493,31.084438,32.651621,32.527134,27.712048,28.166354,35,35,35,35,,,,,,,,,,,7946,7946,0.37781,0.37781,0.37781,0.37781,0.37781,0.37781,0.37781,0.37781,0.153013,0.153013,35,35,, +31318,0,0.659446,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.130979,0.15,4,3.956674,3.956674,3.956674,3.956674,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,,,,,,,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,1.305702,1.305702,1.305702,1.305702,1.305702,1.305702,1.305702,1.305702,0.66604,0.66604,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,3.956674,1.305702,1.305702,10,10,, +31808,0,0.38156,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.176289,0.15,4,2.289361,2.289361,2.289361,2.289361,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,,,,,,,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,0.755489,0.755489,0.755489,0.755489,0.755489,0.755489,0.755489,0.755489,0.385376,0.385376,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,2.289361,0.755489,0.755489,10,10,, +18317,0,0.480205,1,1,0,2,5,,3,2,Cowan,Rd,1669910,1.382,1.862,0,10.290115,8,4.5,1.152493,1.152493,1.152493,1.152493,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.15475,1.154422,1.152493,1.152493,1.15475,1.154422,1.153552,1.153997,1.152493,1.152493,1.153552,1.153997,1.16444,1.179114,1.152493,1.152493,1.16444,1.179114,1.152493,1.152493,1.152493,1.152493,1.152493,1.152493,,,,,,,1.15475,1.154422,1.153552,1.153997,1.16444,1.179114,1.152493,1.152493,1.152493,1.152493,0.432862,0.432764,0.432503,0.432636,0.435769,0.440171,0.432185,0.432185,0.225697,0.225697,24.951139,24.958217,24.977047,24.967415,24.743506,24.435577,25,25,25,25,,,,,,,,,,,2408,2408,1.152493,1.152493,1.152493,1.152493,1.152493,1.152493,1.152493,1.152493,0.432185,0.432185,25,25,, +24042,0,0.245585,2,2,1,2,4,,3,2,Warren,Rd,4710470,8.295,8.54,0,5.262535,6,4.5,0.446518,0.446518,0.446518,0.446518,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.507129,0.531806,0.446518,0.446518,0.507129,0.531806,0.533485,0.558345,0.446518,0.446518,0.533485,0.558345,0.696234,0.709637,0.446518,0.446518,0.696234,0.709637,0.446518,0.446518,0.446518,0.446518,0.446518,0.446518,,,,,,,0.507129,0.531806,0.533485,0.558345,0.696234,0.709637,0.446518,0.446518,0.446518,0.446518,0.196344,0.203747,0.204251,0.211709,0.253075,0.257096,0.178161,0.178161,0.093992,0.093992,29.055901,27.707656,27.620467,26.390689,21.164008,20.764285,33,33,33,33,,,,,,,,,,,5418,5418,0.446518,0.446518,0.446518,0.446518,0.446518,0.446518,0.446518,0.446518,0.178161,0.178161,33,33,, +24437,0,0.109635,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.783,10.893,0,2.34932,5,5,0.187946,0.187946,0.187946,0.187946,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.314288,0.232883,0.187946,0.187946,0.314288,0.232883,0.248228,0.251379,0.187946,0.187946,0.248228,0.251379,0.326612,0.467235,0.187946,0.187946,0.326612,0.467235,0.187946,0.187946,0.187946,0.187946,0.187946,0.187946,,,,,,,0.314288,0.232883,0.248228,0.251379,0.326612,0.467235,0.187946,0.187946,0.187946,0.187946,0.114021,0.089599,0.094203,0.095148,0.117718,0.159905,0.076118,0.076118,0.040252,0.040252,20.930131,28.246415,26.500197,26.168006,20.140395,14.078772,35,35,35,35,,,,,,,,,,,7946,7946,0.187946,0.187946,0.187946,0.187946,0.187946,0.187946,0.187946,0.187946,0.076118,0.076118,35,35,, +31803,0,0.332062,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.115604,0.15,4,1.992369,1.992369,1.992369,1.992369,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.992369,1.992369,1.992369,1.992369,1.992369,1.992369,1.992369,1.992369,1.992369,1.992369,1.992369,1.992369,1.99237,1.99237,1.992369,1.992369,1.99237,1.99237,1.992369,1.992369,1.992369,1.992369,1.992369,1.992369,,,,,,,1.992369,1.992369,1.992369,1.992369,1.99237,1.99237,1.992369,1.992369,1.992369,1.992369,0.657482,0.657482,0.657482,0.657482,0.657482,0.657482,0.657482,0.657482,0.335382,0.335382,9.999999,10,9.999999,9.999999,9.999998,9.999996,10,10,10,10,,,,,,,,,,,34400,34400,1.992369,1.992369,1.992369,1.992369,1.992369,1.992369,1.992369,1.992369,0.657482,0.657482,10,10,, +31812,0,0.285518,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.118248,0.15,4,1.713109,1.713109,1.713109,1.713109,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.713109,1.713109,1.713109,1.713109,1.713109,1.713109,1.71311,1.71311,1.713109,1.713109,1.71311,1.71311,1.71311,1.71311,1.713109,1.713109,1.71311,1.71311,1.713109,1.713109,1.713109,1.713109,1.713109,1.713109,,,,,,,1.713109,1.713109,1.71311,1.71311,1.71311,1.71311,1.713109,1.713109,1.713109,1.713109,0.565326,0.565326,0.565326,0.565326,0.565326,0.565326,0.565326,0.565326,0.288373,0.288373,10,9.999999,9.999998,9.999997,9.999996,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,1.713109,1.713109,1.713109,1.713109,1.713109,1.713109,1.713109,1.713109,0.565326,0.565326,10,10,, +24043,0,0.213984,2,2,1,2,4,,3,2,Warren,Rd,4710470,8.081,8.295,0,4.585368,6,4.5,0.389062,0.389062,0.389062,0.389062,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.465501,0.411065,0.389062,0.389062,0.465501,0.411065,0.433863,0.432982,0.389062,0.389062,0.433863,0.432982,0.474993,0.560409,0.389062,0.389062,0.474993,0.560409,0.389062,0.389062,0.389062,0.389062,0.389062,0.389062,,,,,,,0.465501,0.411065,0.433863,0.432982,0.474993,0.560409,0.389062,0.389062,0.389062,0.389062,0.178167,0.161837,0.168676,0.168412,0.181015,0.20664,0.155236,0.155236,0.081897,0.081897,27.581086,31.233554,29.59238,29.652575,27.029953,22.910105,33,33,33,33,,,,,,,,,,,5418,5418,0.389062,0.389062,0.389062,0.389062,0.389062,0.389062,0.389062,0.389062,0.155236,0.155236,33,33,, +31813,0,0.141761,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.037746,0.15,4,0.850569,0.850569,0.850569,0.850569,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.850569,0.850569,0.850569,0.850569,0.850569,0.850569,0.85057,0.850571,0.850569,0.850569,0.85057,0.850571,0.850573,0.850571,0.850569,0.850569,0.850573,0.850571,0.850569,0.850569,0.850569,0.850569,0.850569,0.850569,,,,,,,0.850569,0.850569,0.85057,0.850571,0.850573,0.850571,0.850569,0.850569,0.850569,0.850569,0.280688,0.280688,0.280688,0.280688,0.280689,0.280688,0.280688,0.280688,0.143179,0.143179,10,9.999993,9.999982,9.999976,9.999947,9.999972,10,10,10,10,,,,,,,,,,,34400,34400,0.850569,0.850569,0.850569,0.850569,0.850569,0.850569,0.850569,0.850569,0.280688,0.280688,10,10,, +24020,0,0.326408,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.457,10.783,0,6.994458,5,5,0.559557,0.559557,0.559557,0.559557,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.673586,0.582895,0.559557,0.559557,0.673586,0.582895,0.576593,0.577663,0.559557,0.559557,0.576593,0.577663,0.616141,0.698072,0.559557,0.559557,0.616141,0.698072,0.559557,0.559557,0.559557,0.559557,0.559557,0.559557,,,,,,,0.673586,0.582895,0.576593,0.577663,0.616141,0.698072,0.559557,0.559557,0.559557,0.559557,0.260829,0.233622,0.231731,0.232052,0.243596,0.268175,0.22662,0.22662,0.119838,0.119838,29.074977,33.598673,33.965851,33.902962,31.78573,28.055101,35,35,35,35,,,,,,,,,,,7946,7946,0.559557,0.559557,0.559557,0.559557,0.559557,0.559557,0.559557,0.559557,0.22662,0.22662,35,35,, +24041,0,0.200789,2,2,1,2,3,,3,2,Warren,Rd,4710470,8.54,8.741,0,4.302623,5,5,0.34421,0.34421,0.34421,0.34421,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.399512,0.418618,0.34421,0.34421,0.399512,0.418618,0.385871,0.385599,0.34421,0.34421,0.385871,0.385599,0.522003,0.481795,0.34421,0.34421,0.522003,0.481795,0.34421,0.34421,0.34421,0.34421,0.34421,0.34421,,,,,,,0.399512,0.418618,0.385871,0.385599,0.522003,0.481795,0.34421,0.34421,0.34421,0.34421,0.155996,0.161727,0.151903,0.151822,0.192743,0.180681,0.139405,0.139405,0.073718,0.073718,30.155147,28.77885,31.22114,31.243208,23.079058,25.005129,35,35,35,35,,,,,,,,,,,7946,7946,0.34421,0.34421,0.34421,0.34421,0.34421,0.34421,0.34421,0.34421,0.139405,0.139405,35,35,, +16886,0,0.248361,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,8.582,8.83,0,5.32203,5,5,0.425762,0.425762,0.425762,0.425762,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.874254,0.538308,0.425762,0.425762,0.874254,0.538308,0.545516,0.535299,0.425762,0.425762,0.545516,0.535299,0.743091,1.071621,0.425762,0.425762,0.743091,1.071621,0.425762,0.425762,0.425762,0.425762,0.425762,0.425762,,,,,,,0.874254,0.538308,0.545516,0.535299,0.743091,1.071621,0.425762,0.425762,0.425762,0.425762,0.306981,0.206197,0.20836,0.205295,0.267632,0.366191,0.172434,0.172434,0.091184,0.091184,17.045033,27.682467,27.316661,27.838057,20.053646,13.905747,35,35,35,35,,,,,,,,,,,7568,7568,0.425762,0.425762,0.425762,0.425762,0.425762,0.425762,0.425762,0.425762,0.172434,0.172434,35,35,, +17112,0,0.221222,1,1,0,2,5,,3,2,Stark,Rd,1604610,0,0.221,0,4.740478,8,4.5,0.530934,0.530934,0.530934,0.530934,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.543804,0.533098,0.530934,0.530934,0.543804,0.533098,0.540432,0.537677,0.530934,0.530934,0.540432,0.537677,0.556128,0.559233,0.530934,0.530934,0.556128,0.559233,0.530934,0.530934,0.530934,0.530934,0.530934,0.530934,,,,,,,0.543804,0.533098,0.540432,0.537677,0.556128,0.559233,0.530934,0.530934,0.530934,0.530934,0.202961,0.199749,0.20195,0.201123,0.206658,0.20759,0.1991,0.1991,0.103974,0.103974,24.408317,24.898497,24.560622,24.686471,23.867422,23.734883,25,25,25,25,,,,,,,,,,,2408,2408,0.530934,0.530934,0.530934,0.530934,0.530934,0.530934,0.530934,0.530934,0.1991,0.1991,25,25,, +18482,0,0.517625,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,5.738,6.256,0,11.091961,5,5,0.887357,0.887357,0.887357,0.887357,35,35,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.913708,1.009934,0.887357,0.887357,0.913708,1.009934,0.90007,0.900083,0.887357,0.887357,0.90007,0.900083,1.159,1.008634,0.887357,0.887357,1.159,1.008634,0.887357,0.887357,0.887357,0.887357,0.887357,0.887357,,,,,,,0.913708,1.009934,0.90007,0.900083,1.159,1.008634,0.887357,0.887357,0.887357,0.887357,0.367285,0.396153,0.363193,0.363197,0.440872,0.395763,0.35938,0.35938,0.190042,0.190042,33.990601,30.75199,34.505659,34.50513,26.796811,30.791648,35,35,35,35,,,,,,,,,,,3784,3784,0.887357,0.887357,0.887357,0.887357,0.887357,0.887357,0.887357,0.887357,0.35938,0.35938,35,35,, +24521,0,0.450873,2,2,0,2,3,,3,2,Wayne,Rd,4719470,11.643,12.094,0,9.661558,5,5,0.772925,0.772925,0.772925,0.772925,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,1.214971,0.838091,0.772925,0.772925,1.214971,0.838091,0.861965,0.865787,0.772925,0.772925,0.861965,0.865787,0.975802,1.500787,0.772925,0.772925,0.975802,1.500787,0.772925,0.772925,0.772925,0.772925,0.772925,0.772925,,,,,,,1.214971,0.838091,0.861965,0.865787,0.975802,1.500787,0.772925,0.772925,0.772925,0.772925,0.445648,0.332584,0.339747,0.340893,0.373898,0.531393,0.313034,0.313034,0.165535,0.165535,22.265842,32.27855,31.384529,31.245991,27.723211,18.025455,35,35,35,35,,,,,,,,,,,7568,7568,0.772925,0.772925,0.772925,0.772925,0.772925,0.772925,0.772925,0.772925,0.313034,0.313034,35,35,, +31784,0,0.47366,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.149864,0.15,4,2.841962,2.841962,2.841962,2.841962,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,,,,,,,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,0.937847,0.937847,0.937847,0.937847,0.937847,0.937847,0.937847,0.937847,0.478397,0.478397,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,2.841962,0.937847,0.937847,10,10,, +31790,0,0.365516,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.83249,0.15,4,2.193097,2.193097,2.193097,2.193097,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,,,,,,,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,0.723722,0.723722,0.723722,0.723722,0.723722,0.723722,0.723722,0.723722,0.369171,0.369171,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,2.193097,0.723722,0.723722,10,10,, +16391,0,0.247803,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,8.334,8.582,0,5.310069,5,5,0.424806,0.424806,0.424806,0.424806,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.454841,0.467952,0.424806,0.424806,0.454841,0.467952,0.447639,0.444071,0.424806,0.424806,0.447639,0.444071,0.537822,0.492905,0.424806,0.424806,0.537822,0.492905,0.424806,0.424806,0.424806,0.424806,0.424806,0.424806,,,,,,,0.454841,0.467952,0.447639,0.444071,0.537822,0.492905,0.424806,0.424806,0.424806,0.424806,0.181057,0.18499,0.178896,0.177826,0.205951,0.192476,0.172046,0.172046,0.090979,0.090979,32.688787,31.772873,33.214709,33.481577,27.645215,30.164429,35,35,35,35,,,,,,,,,,,7568,7568,0.424806,0.424806,0.424806,0.424806,0.424806,0.424806,0.424806,0.424806,0.172046,0.172046,35,35,, +24113,0,0.21898,2,2,0,2,3,,3,2,Wayne,Rd,4719470,12.249,12.467,0,4.692425,5,5,0.375394,0.375394,0.375394,0.375394,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.549035,0.397739,0.375394,0.375394,0.549035,0.397739,0.409312,0.410678,0.375394,0.375394,0.409312,0.410678,0.449408,0.651852,0.375394,0.375394,0.449408,0.651852,0.375394,0.375394,0.375394,0.375394,0.375394,0.375394,,,,,,,0.549035,0.397739,0.409312,0.410678,0.449408,0.651852,0.375394,0.375394,0.375394,0.375394,0.204127,0.158738,0.16221,0.16262,0.174239,0.234972,0.152035,0.152035,0.080397,0.080397,23.93072,33.033696,32.099708,31.992917,29.235766,20.156105,35,35,35,35,,,,,,,,,,,7568,7568,0.375394,0.375394,0.375394,0.375394,0.375394,0.375394,0.375394,0.375394,0.152035,0.152035,35,35,, +24365,0,0.1548,2,2,0,2,3,,3,2,Wayne,Rd,4719470,12.094,12.249,0,3.317146,5,5,0.265372,0.265372,0.265372,0.265372,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.388121,0.281168,0.265372,0.265372,0.388121,0.281168,0.289349,0.290315,0.265372,0.265372,0.289349,0.290315,0.317316,0.460804,0.265372,0.265372,0.317316,0.460804,0.265372,0.265372,0.265372,0.265372,0.265372,0.265372,,,,,,,0.388121,0.281168,0.289349,0.290315,0.317316,0.460804,0.265372,0.265372,0.265372,0.265372,0.1443,0.112214,0.114669,0.114958,0.123059,0.166105,0.107476,0.107476,0.056834,0.056834,23.93072,33.033696,32.099708,31.992917,29.270488,20.156105,35,35,35,35,,,,,,,,,,,7568,7568,0.265372,0.265372,0.265372,0.265372,0.265372,0.265372,0.265372,0.265372,0.107476,0.107476,35,35,, +16265,0,0.316571,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,2.375,2.691,0,6.783662,6,4.5,0.575583,0.575583,0.575583,0.575583,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.827394,0.761708,0.575583,0.575583,0.827394,0.761708,0.703901,0.697442,0.575583,0.575583,0.703901,0.697442,0.911581,1.142099,0.575583,0.575583,0.911581,1.142099,0.575583,0.575583,0.575583,0.575583,0.575583,0.575583,,,,,,,0.827394,0.761708,0.703901,0.697442,0.911581,1.142099,0.575583,0.575583,0.575583,0.575583,0.305201,0.285495,0.268153,0.266215,0.330457,0.399613,0.229658,0.229658,0.12116,0.12116,22.956732,24.936402,26.984262,27.234168,20.836593,16.631001,33,33,33,33,,,,,,,,,,,2580,2580,0.575583,0.575583,0.575583,0.575583,0.575583,0.575583,0.575583,0.575583,0.229658,0.229658,33,33,, +24436,0,0.17974,2,2,1,2,3,,3,2,Wayne,Rd,4719470,11.463,11.643,0,3.85157,5,5,0.308126,0.308126,0.308126,0.308126,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.736702,0.396234,0.308126,0.308126,0.736702,0.396234,0.426434,0.431166,0.308126,0.308126,0.426434,0.431166,0.550653,1.037299,0.308126,0.308126,0.550653,1.037299,0.308126,0.308126,0.308126,0.308126,0.308126,0.308126,,,,,,,0.736702,0.396234,0.426434,0.431166,0.550653,1.037299,0.308126,0.308126,0.308126,0.308126,0.253364,0.151223,0.160283,0.161703,0.197549,0.343543,0.124791,0.124791,0.06599,0.06599,14.638759,27.217221,25.289745,25.01218,19.584728,10.396612,35,35,35,35,,,,,,,,,,,7946,7946,0.308126,0.308126,0.308126,0.308126,0.308126,0.308126,0.308126,0.308126,0.124791,0.124791,35,35,, +16822,0,0.442881,1,1,0,2,5,,3,2,Stark,Rd,1604610,0.221,0.664,0,9.490302,8,4.5,1.062914,1.062914,1.062914,1.062914,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.248347,1.062986,1.062914,1.062914,1.248347,1.062986,1.069853,1.067064,1.062914,1.062914,1.069853,1.067064,1.064817,1.2659,1.062914,1.062914,1.064817,1.2659,1.062914,1.062914,1.062914,1.062914,1.062914,1.062914,,,,,,,1.248347,1.062986,1.069853,1.067064,1.064817,1.2659,1.062914,1.062914,1.062914,1.062914,0.454223,0.398614,0.400674,0.399838,0.399164,0.459488,0.398593,0.398593,0.208154,0.208154,21.28642,24.998308,24.837852,24.902767,24.955315,20.991274,25,25,25,25,,,,,,,,,,,2408,2408,1.062914,1.062914,1.062914,1.062914,1.062914,1.062914,1.062914,1.062914,0.398593,0.398593,25,25,, +31809,0,0.141693,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.036269,0.15,4,0.850155,0.850155,0.850155,0.850155,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,0.850156,0.850155,0.850155,0.850155,0.850156,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,,,,,,,0.850155,0.850155,0.850155,0.850155,0.850155,0.850156,0.850155,0.850155,0.850155,0.850155,0.280551,0.280551,0.280551,0.280551,0.280551,0.280551,0.280551,0.280551,0.143109,0.143109,9.999998,10,9.999999,9.999999,9.999999,9.999994,10,10,10,10,,,,,,,,,,,34400,34400,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,0.850155,0.280551,0.280551,10,10,, +17967,0,0.390689,1,1,0,2,5,,3,2,Cowan,Rd,1669808,0.637,1.028,0,8.371913,8,4.5,0.937654,0.937654,0.937654,0.937654,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.072731,0.996333,0.937654,0.937654,1.072731,0.996333,0.990144,0.986402,0.937654,0.937654,0.990144,0.986402,1.094456,1.227811,0.937654,0.937654,1.094456,1.227811,0.937654,0.937654,0.937654,0.937654,0.937654,0.937654,,,,,,,1.072731,0.996333,0.990144,0.986402,1.094456,1.227811,0.937654,0.937654,0.937654,0.937654,0.392143,0.369224,0.367367,0.366245,0.398661,0.438667,0.35162,0.35162,0.183624,0.183624,21.852041,23.527635,23.674698,23.764504,21.418265,19.091986,25,25,25,25,,,,,,,,,,,2408,2408,0.937654,0.937654,0.937654,0.937654,0.937654,0.937654,0.937654,0.937654,0.35162,0.35162,25,25,, +24039,0,0.575933,2,2,1,2,3,,3,2,Warren,Rd,4710470,8.961,9.537,0,12.341411,5,5,0.987313,0.987313,0.987313,0.987313,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.101752,1.039309,0.987313,0.987313,1.101752,1.039309,1.034579,1.033153,0.987313,0.987313,1.034579,1.033153,1.130958,1.251254,0.987313,0.987313,1.130958,1.251254,0.987313,0.987313,0.987313,0.987313,0.987313,0.987313,,,,,,,1.101752,1.039309,1.034579,1.033153,1.130958,1.251254,0.987313,0.987313,0.987313,0.987313,0.434194,0.41546,0.414042,0.413614,0.442955,0.479044,0.399862,0.399862,0.21145,0.21145,31.364536,33.248978,33.400979,33.447095,30.55458,27.61706,35,35,35,35,,,,,,,,,,,7946,7946,0.987313,0.987313,0.987313,0.987313,0.987313,0.987313,0.987313,0.987313,0.399862,0.399862,35,35,, +30278,0,0.432396,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.265626,0.15,4,2.594375,2.594375,2.594375,2.594375,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,,,,,,,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,0.856144,0.856144,0.856144,0.856144,0.856144,0.856144,0.856144,0.856144,0.43672,0.43672,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,2.594375,0.856144,0.856144,10,10,, +31319,0,0.222345,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.764538,0.15,4,1.334071,1.334071,1.334071,1.334071,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,1.334072,1.334071,1.334071,1.334071,1.334072,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,,,,,,,1.334071,1.334071,1.334071,1.334071,1.334071,1.334072,1.334071,1.334071,1.334071,1.334071,0.440244,0.440243,0.440243,0.440243,0.440244,0.440244,0.440243,0.440243,0.224569,0.224569,9.999996,9.999999,9.999998,9.999998,9.999996,9.999994,10,10,10,10,,,,,,,,,,,34400,34400,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,1.334071,0.440243,0.440243,10,10,, +31323,0,0.198551,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.254654,0.15,4,1.191303,1.191303,1.191303,1.191303,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,,,,,,,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,0.39313,0.39313,0.39313,0.39313,0.39313,0.39313,0.39313,0.39313,0.200536,0.200536,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,1.191303,0.39313,0.39313,10,10,, +31321,0,0.144097,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.087785,0.15,4,0.86458,0.86458,0.86458,0.86458,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,,,,,,,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.285311,0.285311,0.285311,0.285311,0.285311,0.285311,0.285311,0.285311,0.145538,0.145538,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.86458,0.285311,0.285311,10,10,, +16997,0,0.09225,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,3.219,3.312,0,1.976793,6,4.5,0.167728,0.167728,0.167728,0.167728,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.168231,0.174427,0.167728,0.167728,0.168231,0.174427,0.169544,0.170121,0.167728,0.167728,0.169544,0.170121,0.174321,0.169458,0.167728,0.167728,0.174321,0.169458,0.167728,0.167728,0.167728,0.167728,0.167728,0.167728,,,,,,,0.168231,0.174427,0.169544,0.170121,0.174321,0.169458,0.167728,0.167728,0.167728,0.167728,0.067074,0.068933,0.067468,0.067641,0.068901,0.067442,0.066923,0.066923,0.035307,0.035307,32.901317,31.732604,32.646456,32.535875,31.751803,32.66308,33,33,33,33,,,,,,,,,,,2580,2580,0.167728,0.167728,0.167728,0.167728,0.167728,0.167728,0.167728,0.167728,0.066923,0.066923,33,33,, +18711,0,0.141806,1,1,0,2,5,,3,2,Farmington,Rd,1690602,0,0.142,0,3.038708,8,4.5,0.340335,0.340335,0.340335,0.340335,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.341333,0.340348,0.340335,0.340335,0.341333,0.340348,0.34041,0.340391,0.340335,0.340335,0.34041,0.340391,0.340828,0.341927,0.340335,0.340335,0.340828,0.341927,0.340335,0.340335,0.340335,0.340335,0.340335,0.340335,,,,,,,0.341333,0.340348,0.34041,0.340391,0.340828,0.341927,0.340335,0.340335,0.340335,0.340335,0.127925,0.12763,0.127648,0.127642,0.127773,0.128103,0.127626,0.127626,0.066649,0.066649,24.926912,24.999042,24.994518,24.99593,24.963886,24.883623,25,25,25,25,,,,,,,,,,,2408,2408,0.340335,0.340335,0.340335,0.340335,0.340335,0.340335,0.340335,0.340335,0.127626,0.127626,25,25,, +15838,0,0.094823,1,1,0,2,5,,3,2,Venoy,Rd,1599408,4.985,5.08,0,2.031932,8,4.5,0.227576,0.227576,0.227576,0.227576,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.227591,0.227579,0.227576,0.227576,0.227591,0.227579,0.227583,0.227584,0.227576,0.227576,0.227583,0.227584,0.227583,0.227586,0.227576,0.227576,0.227583,0.227586,0.227576,0.227576,0.227576,0.227576,0.227576,0.227576,,,,,,,0.227591,0.227579,0.227583,0.227584,0.227583,0.227586,0.227576,0.227576,0.227576,0.227576,0.085346,0.085342,0.085343,0.085343,0.085343,0.085344,0.085341,0.085341,0.044567,0.044567,24.998343,24.999663,24.999319,24.999145,24.999325,24.99893,25,25,25,25,,,,,,,,,,,2408,2408,0.227576,0.227576,0.227576,0.227576,0.227576,0.227576,0.227576,0.227576,0.085341,0.085341,25,25,, +15837,0,0.075562,1,1,0,2,5,,3,2,Venoy,Rd,1599408,5.08,5.155,0,1.619192,8,4.5,0.181349,0.181349,0.181349,0.181349,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.181361,0.181352,0.181349,0.181349,0.181361,0.181352,0.181354,0.181356,0.181349,0.181349,0.181354,0.181356,0.181354,0.181357,0.181349,0.181349,0.181354,0.181357,0.181349,0.181349,0.181349,0.181349,0.181349,0.181349,,,,,,,0.181361,0.181352,0.181354,0.181356,0.181354,0.181357,0.181349,0.181349,0.181349,0.181349,0.06801,0.068007,0.068008,0.068008,0.068008,0.068008,0.068006,0.068006,0.035514,0.035514,24.998343,24.999663,24.999319,24.999145,24.999325,24.99893,25,25,25,25,,,,,,,,,,,2408,2408,0.181349,0.181349,0.181349,0.181349,0.181349,0.181349,0.181349,0.181349,0.068006,0.068006,25,25,, +16942,0,0.502462,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,9.333,9.836,0,10.767052,5,5,0.861364,0.861364,0.861364,0.861364,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.882372,0.879823,0.861364,0.861364,0.882372,0.879823,0.876173,0.875793,0.861364,0.861364,0.876173,0.875793,0.929406,0.933535,0.861364,0.861364,0.929406,0.933535,0.861364,0.861364,0.861364,0.861364,0.861364,0.861364,,,,,,,0.882372,0.879823,0.876173,0.875793,0.929406,0.933535,0.861364,0.861364,0.861364,0.861364,0.355155,0.35439,0.353295,0.353181,0.369265,0.370504,0.348852,0.348852,0.184475,0.184475,34.16671,34.2657,34.408452,34.423376,32.43765,32.294184,35,35,35,35,,,,,,,,,,,7568,7568,0.861364,0.861364,0.861364,0.861364,0.861364,0.861364,0.861364,0.861364,0.348852,0.348852,35,35,, +17477,0,0.505774,1,1,0,2,5,,3,2,Chicago,Rd,1696207,0.505,1.01,0,10.838007,8,4.5,1.213857,1.213857,1.213857,1.213857,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.215452,1.218017,1.213857,1.213857,1.215452,1.218017,1.214499,1.21443,1.213857,1.213857,1.214499,1.21443,1.221547,1.224098,1.213857,1.213857,1.221547,1.224098,1.213857,1.213857,1.213857,1.213857,1.213857,1.213857,,,,,,,1.215452,1.218017,1.214499,1.21443,1.221547,1.224098,1.213857,1.213857,1.213857,1.213857,0.455675,0.456444,0.455389,0.455368,0.457503,0.458269,0.455196,0.455196,0.237714,0.237714,24.967197,24.91461,24.986786,24.98819,24.842616,24.790845,25,25,25,25,,,,,,,,,,,2408,2408,1.213857,1.213857,1.213857,1.213857,1.213857,1.213857,1.213857,1.213857,0.455196,0.455196,25,25,, +17983,0,0.110733,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.714,0.825,0,2.372858,6,4.5,0.201333,0.201333,0.201333,0.201333,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.314387,0.202524,0.201333,0.201333,0.314387,0.202524,0.206879,0.205444,0.201333,0.201333,0.206879,0.205444,0.215559,0.338265,0.201333,0.201333,0.215559,0.338265,0.201333,0.201333,0.201333,0.201333,0.201333,0.201333,,,,,,,0.314387,0.202524,0.206879,0.205444,0.215559,0.338265,0.201333,0.201333,0.201333,0.201333,0.114248,0.080689,0.081996,0.081565,0.0846,0.121411,0.080332,0.080332,0.042381,0.042381,21.133166,32.806046,32.115411,32.339708,30.822249,19.64143,33,33,33,33,,,,,,,,,,,2580,2580,0.201333,0.201333,0.201333,0.201333,0.201333,0.201333,0.201333,0.201333,0.080332,0.080332,33,33,, +31810,0,0.50451,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.810935,0.15,4,3.027062,3.027062,3.027062,3.027062,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,,,,,,,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,0.99893,0.99893,0.99893,0.99893,0.99893,0.99893,0.99893,0.99893,0.509555,0.509555,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,3.027062,0.99893,0.99893,10,10,, +18492,0,0.256102,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.263,0.519,0,5.487909,6,4.5,0.465641,0.465641,0.465641,0.465641,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.575008,0.466078,0.465641,0.465641,0.575008,0.466078,0.468633,0.467491,0.465641,0.465641,0.468633,0.467491,0.472813,0.615444,0.465641,0.465641,0.472813,0.615444,0.465641,0.465641,0.465641,0.465641,0.465641,0.465641,,,,,,,0.575008,0.466078,0.468633,0.467491,0.472813,0.615444,0.465641,0.465641,0.465641,0.465641,0.218601,0.185922,0.186688,0.186346,0.187942,0.230732,0.185791,0.185791,0.098017,0.098017,26.72336,32.96904,32.789271,32.869395,32.499387,24.967559,33,33,33,33,,,,,,,,,,,2580,2580,0.465641,0.465641,0.465641,0.465641,0.465641,0.465641,0.465641,0.465641,0.185791,0.185791,33,33,, +18502,0,0.041124,1,1,0,2,4,,3,2,Joy,Rd,1677810,0,0.041,0,0.881233,6,4.5,0.074771,0.074771,0.074771,0.074771,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.085515,0.083557,0.074771,0.074771,0.085515,0.083557,0.079498,0.079616,0.074771,0.074771,0.079498,0.079616,0.092652,0.102512,0.074771,0.074771,0.092652,0.102512,0.074771,0.074771,0.074771,0.074771,0.074771,0.074771,,,,,,,0.085515,0.083557,0.079498,0.079616,0.092652,0.102512,0.074771,0.074771,0.074771,0.074771,0.033057,0.03247,0.031252,0.031287,0.035198,0.038156,0.029834,0.029834,0.015739,0.015739,28.854086,29.530082,31.037873,30.991831,26.631331,24.06987,33,33,33,33,,,,,,,,,,,2580,2580,0.074771,0.074771,0.074771,0.074771,0.074771,0.074771,0.074771,0.074771,0.029834,0.029834,33,33,, +18168,0,0.195142,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.519,0.714,0,4.181604,6,4.5,0.354803,0.354803,0.354803,0.354803,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.438137,0.355136,0.354803,0.354803,0.438137,0.355136,0.357083,0.356213,0.354803,0.354803,0.357083,0.356213,0.360268,0.468948,0.354803,0.354803,0.360268,0.468948,0.354803,0.354803,0.354803,0.354803,0.354803,0.354803,,,,,,,0.438137,0.355136,0.357083,0.356213,0.360268,0.468948,0.354803,0.354803,0.354803,0.354803,0.166567,0.141666,0.14225,0.141989,0.143206,0.17581,0.141566,0.141566,0.074686,0.074686,26.72336,32.96904,32.789271,32.869395,32.499387,24.967559,33,33,33,33,,,,,,,,,,,2580,2580,0.354803,0.354803,0.354803,0.354803,0.354803,0.354803,0.354803,0.354803,0.141566,0.141566,33,33,, +17454,0,0.311292,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.95,1.261,0,6.670534,6,4.5,0.565985,0.565985,0.565985,0.565985,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.846007,0.578471,0.565985,0.565985,0.846007,0.578471,0.597064,0.588798,0.565985,0.565985,0.597064,0.588798,0.672139,0.970299,0.565985,0.565985,0.672139,0.970299,0.565985,0.565985,0.565985,0.565985,0.565985,0.565985,,,,,,,0.846007,0.578471,0.597064,0.588798,0.672139,0.970299,0.565985,0.565985,0.565985,0.565985,0.309835,0.229574,0.235152,0.232672,0.257674,0.347122,0.225828,0.225828,0.11914,0.11914,22.077227,32.287669,31.282237,31.72138,27.788131,19.249219,33,33,33,33,,,,,,,,,,,2580,2580,0.565985,0.565985,0.565985,0.565985,0.565985,0.565985,0.565985,0.565985,0.225828,0.225828,33,33,, +17658,0,0.124803,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.825,0.95,0,2.674341,6,4.5,0.226914,0.226914,0.226914,0.226914,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.33918,0.23192,0.226914,0.226914,0.33918,0.23192,0.239374,0.23606,0.226914,0.226914,0.239374,0.23606,0.269473,0.389011,0.226914,0.226914,0.269473,0.389011,0.226914,0.226914,0.226914,0.226914,0.226914,0.226914,,,,,,,0.33918,0.23192,0.239374,0.23606,0.269473,0.389011,0.226914,0.226914,0.226914,0.226914,0.124218,0.09204,0.094277,0.093283,0.103306,0.139168,0.090539,0.090539,0.047765,0.047765,22.077227,32.287669,31.282237,31.72138,27.788131,19.249219,33,33,33,33,,,,,,,,,,,2580,2580,0.226914,0.226914,0.226914,0.226914,0.226914,0.226914,0.226914,0.226914,0.090539,0.090539,33,33,, +31307,0,0.251717,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.393933,0.15,4,1.510301,1.510301,1.510301,1.510301,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.510303,1.510301,1.510301,1.510301,1.510303,1.510301,1.510302,1.510302,1.510301,1.510301,1.510302,1.510302,1.510302,1.510303,1.510301,1.510301,1.510302,1.510303,1.510301,1.510301,1.510301,1.510301,1.510301,1.510301,,,,,,,1.510303,1.510301,1.510302,1.510302,1.510302,1.510303,1.510301,1.510301,1.510301,1.510301,0.4984,0.498399,0.4984,0.4984,0.4984,0.4984,0.498399,0.498399,0.254234,0.254234,9.999991,9.999999,9.999998,9.999998,9.999996,9.999988,10,10,10,10,,,,,,,,,,,34400,34400,1.510301,1.510301,1.510301,1.510301,1.510301,1.510301,1.510301,1.510301,0.498399,0.498399,10,10,, +31309,0,0.247734,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.308575,0.15,4,1.486401,1.486401,1.486401,1.486401,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,,,,,,,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,0.490512,0.490512,0.490512,0.490512,0.490512,0.490512,0.490512,0.490512,0.250211,0.250211,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,1.486401,0.490512,0.490512,10,10,, +16081,0,0.238712,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,4.504,4.742,0,5.115258,6,4.5,0.434022,0.434022,0.434022,0.434022,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.438626,0.438817,0.434022,0.434022,0.438626,0.438817,0.434537,0.434365,0.434022,0.434022,0.434537,0.434365,0.452149,0.449582,0.434022,0.434022,0.452149,0.449582,0.434022,0.434022,0.434022,0.434022,0.434022,0.434022,,,,,,,0.438626,0.438817,0.434537,0.434365,0.452149,0.449582,0.434022,0.434022,0.434022,0.434022,0.174556,0.174613,0.173329,0.173278,0.178613,0.177843,0.173175,0.173175,0.091362,0.091362,32.653614,32.639433,32.960886,32.973923,31.677026,31.857872,33,33,33,33,,,,,,,,,,,5418,5418,0.434022,0.434022,0.434022,0.434022,0.434022,0.434022,0.434022,0.434022,0.173175,0.173175,33,33,, +16825,1,0.411613,1,0,0,2,5,DV2,3,2,Hubbard,Rd,1606910,0.07,0.481,0,8.820272,8,4.5,0.98787,,0.98787,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.987871,,0.98787,,0.987871,,0.987872,,0.98787,,0.987872,,0.98976,,0.98787,,0.98976,,0.98787,,0.98787,,0.98787,,,,,,,,0.987871,,0.987872,,0.98976,,0.98787,,0.98787,,0.370452,,0.370452,,0.371018,,0.370451,,0.193458,,24.999987,,24.999956,,24.952276,,25,,25,,,,,,,,,,,,2408,,0.98787,,0.98787,,0.98787,,0.98787,,0.370451,,25,,, +17109,0,0.48082,2,2,0,2,5,,3,2,Stark,Rd,1604610,1.706,2.186,0,10.303283,8,4.5,1.153968,1.153968,1.153968,1.153968,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,1.167965,1.154141,1.153968,1.153968,1.167965,1.154141,1.154562,1.154279,1.153968,1.153968,1.154562,1.154279,1.194285,1.234337,1.153968,1.153968,1.194285,1.234337,1.153968,1.153968,1.153968,1.153968,1.153968,1.153968,,,,,,,1.167965,1.154141,1.154562,1.154279,1.194285,1.234337,1.153968,1.153968,1.153968,1.153968,0.436937,0.43279,0.432916,0.432831,0.444833,0.456849,0.432738,0.432738,0.225985,0.225985,24.7004,24.996241,24.987127,24.99326,24.156036,23.372218,25,25,25,25,,,,,,,,,,,4816,4816,1.153968,1.153968,1.153968,1.153968,1.153968,1.153968,1.153968,1.153968,0.432738,0.432738,25,25,, +17110,0,0.20972,2,2,0,2,5,,3,2,Stark,Rd,1604610,1.436,1.646,0,4.494009,8,4.5,0.503329,0.503329,0.503329,0.503329,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.539533,0.555913,0.503329,0.503329,0.539533,0.555913,0.524052,0.524312,0.503329,0.503329,0.524052,0.524312,0.686042,0.665417,0.503329,0.503329,0.686042,0.665417,0.503329,0.503329,0.503329,0.503329,0.503329,0.503329,,,,,,,0.539533,0.555913,0.524052,0.524312,0.686042,0.665417,0.503329,0.503329,0.503329,0.503329,0.19961,0.204524,0.194965,0.195043,0.243562,0.237375,0.188748,0.188748,0.098569,0.098569,23.322428,22.635234,24.011385,23.999477,18.341768,18.910276,25,25,25,25,,,,,,,,,,,4816,4816,0.503329,0.503329,0.503329,0.503329,0.503329,0.503329,0.503329,0.503329,0.188748,0.188748,25,25,, +18142,0,0.482551,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.275,2.757,0,10.340381,5,5,0.82723,0.82723,0.82723,0.82723,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.006965,1.013924,0.82723,0.82723,1.006965,1.013924,0.94782,0.968816,0.82723,0.82723,0.94782,0.968816,1.122538,1.224298,0.82723,0.82723,1.122538,1.224298,0.82723,0.82723,0.82723,0.82723,0.82723,0.82723,,,,,,,1.006965,1.013924,0.94782,0.968816,1.122538,1.224298,0.82723,0.82723,0.82723,0.82723,0.388949,0.391036,0.371205,0.377504,0.423621,0.454149,0.335028,0.335028,0.177165,0.177165,28.752797,28.555464,30.547024,29.884997,25.792511,23.648702,35,35,35,35,,,,,,,,,,,7946,7946,0.82723,0.82723,0.82723,0.82723,0.82723,0.82723,0.82723,0.82723,0.335028,0.335028,35,35,, +22737,-1,0.481263,0,1,0,2,5,DV2,3,2,Hubbard,Rd,4706083,0,0.481,0,10.312789,8,4.5,,1.155032,,1.155032,,25,,7000,,1589,,3500,,2258,,2408,,2405,,1.155035,,1.155032,,1.155035,,1.155034,,1.155032,,1.155034,,1.155048,,1.155032,,1.155048,,1.155032,,1.155032,,1.155032,,,,,,,,1.155035,,1.155034,,1.155048,,1.155032,,1.155032,,0.433138,,0.433138,,0.433142,,0.433137,,0.226194,,24.999942,,24.999965,,24.999664,,25,,25,,,,,,,,,,,,2408,,1.155032,,1.155032,,1.155032,,1.155032,,0.433137,,25,, +23112,-1,0.26822,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.456,3.724,0,5.747566,8,4.5,,0.643727,,0.643727,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.643727,,0.643727,,0.643727,,0.643728,,0.643727,,0.643728,,0.643728,,0.643727,,0.643728,,0.643727,,0.643727,,0.643727,,,,,,,,0.643727,,0.643728,,0.643728,,0.643727,,0.643727,,0.241398,,0.241398,,0.241398,,0.241398,,0.126063,,24.999999,,24.999985,,24.999988,,25,,25,,,,,,,,,,,,4816,,0.643727,,0.643727,,0.643727,,0.643727,,0.241398,,25,, +23687,1,0.279097,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.414,3.693,0,5.98065,8,4.5,0.669833,,0.669833,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.669833,,0.669833,,0.669833,,0.669833,,0.669833,,0.669833,,0.669836,,0.669833,,0.669836,,0.669833,,0.669833,,0.669833,,,,,,,,0.669833,,0.669833,,0.669836,,0.669833,,0.669833,,0.251187,,0.251187,,0.251188,,0.251187,,0.131176,,24.999989,,24.99999,,24.999874,,25,,25,,,,,,,,,,,,4816,,0.669833,,0.669833,,0.669833,,0.669833,,0.251187,,25,,, +31334,0,0.408035,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.743608,0.15,4,2.44821,2.44821,2.44821,2.44821,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,,,,,,,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,0.807909,0.807909,0.807909,0.807909,0.807909,0.807909,0.807909,0.807909,0.412115,0.412115,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,0.807909,0.807909,10,10,, +31818,0,0.168215,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.604614,0.15,4,1.009292,1.009292,1.009292,1.009292,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.009292,1.009294,1.009292,1.009292,1.009292,1.009294,1.009293,1.009293,1.009292,1.009292,1.009293,1.009293,1.009295,1.009294,1.009292,1.009292,1.009295,1.009294,1.009292,1.009292,1.009292,1.009292,1.009292,1.009292,,,,,,,1.009292,1.009294,1.009293,1.009293,1.009295,1.009294,1.009292,1.009292,1.009292,1.009292,0.333066,0.333067,0.333067,0.333067,0.333067,0.333067,0.333066,0.333066,0.169897,0.169897,9.999997,9.999981,9.99999,9.999988,9.999967,9.999983,10,10,10,10,,,,,,,,,,,34400,34400,1.009292,1.009292,1.009292,1.009292,1.009292,1.009292,1.009292,1.009292,0.333066,0.333066,10,10,, +31820,0,0.489423,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.487632,0.15,4,2.936537,2.936537,2.936537,2.936537,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,,,,,,,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,0.969057,0.969057,0.969057,0.969057,0.969057,0.969057,0.969057,0.969057,0.494317,0.494317,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,2.936537,0.969057,0.969057,10,10,, +31821,0,0.546071,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.701523,0.15,4,3.276426,3.276426,3.276426,3.276426,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,,,,,,,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,1.081221,1.081221,1.081221,1.081221,1.081221,1.081221,1.081221,1.081221,0.551532,0.551532,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,3.276426,1.081221,1.081221,10,10,, +33609,0,0.220806,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.731555,0.15,4,1.324835,1.324835,1.324835,1.324835,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,,,,,,,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,0.437196,0.437196,0.437196,0.437196,0.437196,0.437196,0.437196,0.437196,0.223014,0.223014,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,1.324835,0.437196,0.437196,10,10,, +17111,0,0.505325,2,2,0,2,5,,3,2,Stark,Rd,1604610,0.931,1.436,0,10.828391,8,4.5,1.21278,1.21278,1.21278,1.21278,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,1.391119,1.215689,1.21278,1.21278,1.391119,1.215689,1.223181,1.222387,1.21278,1.21278,1.223181,1.222387,1.263865,1.533817,1.21278,1.21278,1.263865,1.533817,1.21278,1.21278,1.21278,1.21278,1.21278,1.21278,,,,,,,1.391119,1.215689,1.223181,1.222387,1.263865,1.533817,1.21278,1.21278,1.21278,1.21278,0.508294,0.455665,0.457913,0.457675,0.470118,0.551103,0.454792,0.454792,0.237503,0.237503,21.795046,24.940166,24.78742,24.803515,23.989504,19.767351,25,25,25,25,,,,,,,,,,,4816,4816,1.21278,1.21278,1.21278,1.21278,1.21278,1.21278,1.21278,1.21278,0.454792,0.454792,25,25,, +23691,1,0.479881,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.935,3.414,0,10.283165,8,4.5,1.151714,,1.151714,,25,,14000,,3178,,7000,,4516,,4816,,4810,,1.151721,,1.151714,,1.151721,,1.151719,,1.151714,,1.151719,,1.15181,,1.151714,,1.15181,,1.151714,,1.151714,,1.151714,,,,,,,,1.151721,,1.151719,,1.15181,,1.151714,,1.151714,,0.431895,,0.431894,,0.431921,,0.431893,,0.225544,,24.999857,,24.99991,,24.997933,,25,,25,,,,,,,,,,,,4816,,1.151714,,1.151714,,1.151714,,1.151714,,0.431893,,25,,, +31795,0,0.53493,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.462784,0.15,4,3.20958,3.20958,3.20958,3.20958,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,,,,,,,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,1.059161,1.059161,1.059161,1.059161,1.059161,1.059161,1.059161,1.059161,0.540279,0.540279,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,3.20958,1.059161,1.059161,10,10,, +31816,0,0.271125,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.809829,0.15,4,1.626752,1.626752,1.626752,1.626752,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,,,,,,,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,0.536828,0.536828,0.536828,0.536828,0.536828,0.536828,0.536828,0.536828,0.273837,0.273837,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,1.626752,0.536828,0.536828,10,10,, +31834,0,0.298593,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.398423,0.15,4,1.791558,1.791558,1.791558,1.791558,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,,,,,,,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,0.591214,0.591214,0.591214,0.591214,0.591214,0.591214,0.591214,0.591214,0.301579,0.301579,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,1.791558,0.591214,0.591214,10,10,, +31817,0,0.042613,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.913133,0.15,4,0.255677,0.255677,0.255677,0.255677,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.255677,0.255678,0.255677,0.255677,0.255677,0.255678,0.255677,0.255677,0.255677,0.255677,0.255677,0.255677,0.255678,0.255677,0.255677,0.255677,0.255678,0.255677,0.255677,0.255677,0.255677,0.255677,0.255677,0.255677,,,,,,,0.255677,0.255678,0.255677,0.255677,0.255678,0.255677,0.255677,0.255677,0.255677,0.255677,0.084374,0.084374,0.084374,0.084374,0.084374,0.084374,0.084374,0.084374,0.043039,0.043039,10,9.999986,9.999994,9.999994,9.999987,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,0.255677,0.255677,0.255677,0.255677,0.255677,0.255677,0.255677,0.255677,0.084374,0.084374,10,10,, +31819,0,0.508306,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.892278,0.15,4,3.049838,3.049838,3.049838,3.049838,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,,,,,,,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,1.006447,1.006447,1.006447,1.006447,1.006447,1.006447,1.006447,1.006447,0.513389,0.513389,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,3.049838,1.006447,1.006447,10,10,, +16646,0,0.063748,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,4.44,4.504,0,1.366027,6,4.5,0.115905,0.115905,0.115905,0.115905,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.118877,0.118821,0.115905,0.115905,0.118877,0.118821,0.116346,0.116144,0.115905,0.115905,0.116346,0.116144,0.126419,0.12571,0.115905,0.115905,0.126419,0.12571,0.115905,0.115905,0.115905,0.115905,0.115905,0.115905,,,,,,,0.118877,0.118821,0.116346,0.116144,0.126419,0.12571,0.115905,0.115905,0.115905,0.115905,0.047138,0.047121,0.046378,0.046318,0.0494,0.049188,0.046246,0.046246,0.024398,0.024398,32.175027,32.190211,32.875112,32.932039,30.255443,30.426195,33,33,33,33,,,,,,,,,,,5418,5418,0.115905,0.115905,0.115905,0.115905,0.115905,0.115905,0.115905,0.115905,0.046246,0.046246,33,33,, +16616,1,0.174631,1,0,0,1,1,RON,3,2,Farmington/E I 96,RAMP,1606304,0,0.175,0,,1.09,4,0.261947,,0.261947,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.334631,,0.261947,,0.334631,,0.299032,,0.261947,,0.299032,,0.407662,,0.261947,,0.407662,,0.261947,,0.261947,,0.261947,,,,,,,,0.334631,,0.299032,,0.407662,,0.261947,,0.261947,,0.131823,,0.121143,,0.153732,,0.110018,,0.058501,,31.311709,,35.039338,,25.70239,,40,,40,,,,,,,,,,,,5074,,0.261947,,0.261947,,0.261947,,0.261947,,0.110018,,40,,, +16837,1,0.1567,1,0,0,1,1,ROF,3,2,W I 96/Farmington,RAMP,1606507,0,0.157,0,,2.24,5,0.268629,,0.268629,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.426745,,0.268629,,0.426745,,0.312341,,0.268629,,0.312341,,0.442433,,0.268629,,0.442433,,0.268629,,0.268629,,0.268629,,,,,,,,0.426745,,0.312341,,0.442433,,0.268629,,0.268629,,0.15623,,0.121908,,0.160936,,0.108795,,0.057531,,22.031902,,30.101752,,21.250677,,35,,35,,,,,,,,,,,,5074,,0.268629,,0.268629,,0.268629,,0.268629,,0.108795,,35,,, +16888,-1,0.509817,0,4,0,1,1,,3,2,W I 96,,1606503,3.362,3.872,0,,0.58,7,,0.4706,,0.4706,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.488512,,0.4706,,0.488512,,0.471661,,0.4706,,0.471661,,0.497159,,0.4706,,0.497159,,0.4706,,0.4706,,0.4706,,,,,,,,0.488512,,0.471661,,0.497159,,0.4706,,0.4706,,0.23832,,0.233265,,0.240915,,0.232947,,0.12667,,62.616702,,64.853779,,61.527534,,65,,65,,,,,,,,,,,,30272,,0.4706,,0.4706,,0.4706,,0.4706,,0.232947,,65,, +17015,1,0.491704,4,0,0,1,1,,3,2,E I 96,,1606201,3.619,4.11,0,,0.58,7,0.453881,,0.453881,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.485158,,0.453881,,0.485158,,0.455248,,0.453881,,0.455248,,0.481137,,0.453881,,0.481137,,0.453881,,0.453881,,0.453881,,,,,,,,0.485158,,0.455248,,0.481137,,0.453881,,0.453881,,0.234054,,0.225081,,0.232848,,0.224671,,0.12217,,60.809597,,64.804725,,61.317742,,65,,65,,,,,,,,,,,,30272,,0.453881,,0.453881,,0.453881,,0.453881,,0.224671,,65,,, +17627,0,0.463018,2,2,1,2,3,,3,2,Farmington,Rd,1690602,1.574,2.037,0,9.921804,5,5,0.793744,0.793744,0.793744,0.793744,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.053541,0.965313,0.793744,0.793744,1.053541,0.965313,0.933101,0.931515,0.793744,0.793744,0.933101,0.931515,1.16755,1.304444,0.793744,0.793744,1.16755,1.304444,0.793744,0.793744,0.793744,0.793744,0.793744,0.793744,,,,,,,1.053541,0.965313,0.933101,0.931515,1.16755,1.304444,0.793744,0.793744,0.793744,0.793744,0.399406,0.372937,0.363273,0.362798,0.433608,0.474676,0.321466,0.321466,0.169994,0.169994,26.369209,28.77932,29.772839,29.823525,23.79431,21.297242,35,35,35,35,,,,,,,,,,,7946,7946,0.793744,0.793744,0.793744,0.793744,0.793744,0.793744,0.793744,0.793744,0.321466,0.321466,35,35,, +23078,-1,0.385326,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,4.089,4.474,0,8.25699,8,4.5,,0.924783,,0.924783,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.924785,,0.924783,,0.924785,,0.925062,,0.924783,,0.925062,,0.925687,,0.924783,,0.925687,,0.924783,,0.924783,,0.924783,,,,,,,,0.924785,,0.925062,,0.925687,,0.924783,,0.924783,,0.346794,,0.346877,,0.347065,,0.346794,,0.181103,,24.999952,,24.992468,,24.975582,,25,,25,,,,,,,,,,,,4816,,0.924783,,0.924783,,0.924783,,0.924783,,0.346794,,25,, +23623,1,0.425814,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,4.029,4.455,0,9.124588,8,4.5,1.021954,,1.021954,,25,,14000,,3178,,7000,,4516,,4816,,4810,,1.025514,,1.021954,,1.025514,,1.023209,,1.021954,,1.023209,,1.022152,,1.021954,,1.022152,,1.021954,,1.021954,,1.021954,,,,,,,,1.025514,,1.023209,,1.022152,,1.021954,,1.021954,,0.384301,,0.383609,,0.383292,,0.383233,,0.200133,,24.913218,,24.969342,,24.995165,,25,,25,,,,,,,,,,,,4816,,1.021954,,1.021954,,1.021954,,1.021954,,0.383233,,25,,, +31801,0,0.504601,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.812879,0.15,4,3.027606,3.027606,3.027606,3.027606,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,,,,,,,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,0.99911,0.99911,0.99911,0.99911,0.99911,0.99911,0.99911,0.99911,0.509647,0.509647,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,3.027606,0.99911,0.99911,10,10,, +32572,0,0.506391,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.851225,0.15,4,3.038343,3.038343,3.038343,3.038343,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,,,,,,,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,1.002653,1.002653,1.002653,1.002653,1.002653,1.002653,1.002653,1.002653,0.511454,0.511454,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,3.038343,1.002653,1.002653,10,10,, +31800,0,0.240056,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.144067,0.15,4,1.440339,1.440339,1.440339,1.440339,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,,,,,,,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,0.475312,0.475312,0.475312,0.475312,0.475312,0.475312,0.475312,0.475312,0.242457,0.242457,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,1.440339,0.475312,0.475312,10,10,, +19037,0,0.178158,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.037,2.215,0,3.817682,5,5,0.305415,0.305415,0.305415,0.305415,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.382892,0.367809,0.305415,0.305415,0.382892,0.367809,0.34716,0.34706,0.305415,0.305415,0.34716,0.34706,0.42854,0.458953,0.305415,0.305415,0.42854,0.458953,0.305415,0.305415,0.305415,0.305415,0.305415,0.305415,,,,,,,0.382892,0.367809,0.34716,0.34706,0.42854,0.458953,0.305415,0.305415,0.305415,0.305415,0.146936,0.142411,0.136216,0.136186,0.16063,0.169754,0.123693,0.123693,0.06541,0.06541,27.917795,29.062633,30.791321,30.800216,24.944026,23.291067,35,35,35,35,,,,,,,,,,,7946,7946,0.305415,0.305415,0.305415,0.305415,0.305415,0.305415,0.305415,0.305415,0.123693,0.123693,35,35,, +23108,-1,0.077693,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.895,3.973,0,1.664852,8,4.5,,0.186463,,0.186463,,25,,21000,,4767,,10500,,6775,,7224,,7216,,0.277518,,0.186463,,0.277518,,0.263671,,0.186463,,0.263671,,0.424632,,0.186463,,0.424632,,0.186463,,0.186463,,0.186463,,,,,,,,0.277518,,0.263671,,0.424632,,0.186463,,0.186463,,0.09724,,0.093086,,0.141374,,0.069924,,0.036516,,16.797416,,17.679528,,10.977954,,25,,25,,,,,,,,,,,,7224,,0.186463,,0.186463,,0.186463,,0.186463,,0.069924,,25,, +23658,1,0.097288,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.858,3.955,0,2.084733,8,4.5,0.23349,,0.23349,,25,,21000,,4767,,10500,,6775,,7224,,7216,,0.376771,,0.23349,,0.376771,,0.341918,,0.23349,,0.341918,,0.550236,,0.23349,,0.550236,,0.23349,,0.23349,,0.23349,,,,,,,,0.376771,,0.341918,,0.550236,,0.23349,,0.23349,,0.130543,,0.120087,,0.182583,,0.087559,,0.045725,,15.492845,,17.072067,,10.608638,,25,,25,,,,,,,,,,,,7224,,0.23349,,0.23349,,0.23349,,0.23349,,0.087559,,25,,, +16560,1,0.162585,1,0,0,1,1,RON,3,2,Farmington/W I 96,RAMP,1606506,0,0.163,0,,1.09,4,0.243877,,0.243877,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.258359,,0.243877,,0.258359,,0.265184,,0.243877,,0.265184,,0.317337,,0.243877,,0.317337,,0.243877,,0.243877,,0.243877,,,,,,,,0.258359,,0.265184,,0.317337,,0.243877,,0.243877,,0.106773,,0.108821,,0.124466,,0.102428,,0.054466,,37.757886,,36.786085,,30.740504,,40,,40,,,,,,,,,,,,5074,,0.243877,,0.243877,,0.243877,,0.243877,,0.102428,,40,,, +23110,-1,0.171647,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.724,3.895,0,3.678153,8,4.5,,0.411953,,0.411953,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.425894,,0.411953,,0.425894,,0.415302,,0.411953,,0.415302,,0.416734,,0.411953,,0.416734,,0.411953,,0.411953,,0.411953,,,,,,,,0.425894,,0.415302,,0.416734,,0.411953,,0.411953,,0.158665,,0.155487,,0.155917,,0.154482,,0.080674,,24.181695,,24.798419,,24.713203,,25,,25,,,,,,,,,,,,4816,,0.411953,,0.411953,,0.411953,,0.411953,,0.154482,,25,, +23686,1,0.164707,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.693,3.858,0,3.529427,8,4.5,0.395296,,0.395296,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.395634,,0.395296,,0.395634,,0.397426,,0.395296,,0.397426,,0.412437,,0.395296,,0.412437,,0.395296,,0.395296,,0.395296,,,,,,,,0.395634,,0.397426,,0.412437,,0.395296,,0.395296,,0.148337,,0.148875,,0.153378,,0.148236,,0.077412,,24.978649,,24.866001,,23.960956,,25,,25,,,,,,,,,,,,4816,,0.395296,,0.395296,,0.395296,,0.395296,,0.148236,,25,,, +24241,1,0.149992,1,0,0,1,1,ROF,3,2,E I 96/Farmington,RAMP,4710335,0,0.15,0,,2.24,5,0.257129,,0.257129,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.341059,,0.257129,,0.341059,,0.291492,,0.257129,,0.291492,,0.330473,,0.257129,,0.330473,,0.257129,,0.257129,,0.257129,,,,,,,,0.341059,,0.291492,,0.330473,,0.257129,,0.257129,,0.129316,,0.114446,,0.126141,,0.104137,,0.055069,,26.387012,,30.874031,,27.232235,,35,,35,,,,,,,,,,,,5074,,0.257129,,0.257129,,0.257129,,0.257129,,0.104137,,35,,, +16821,0,0.059799,2,2,0,2,5,,3,2,Stark,Rd,1604610,1.646,1.706,0,1.281417,8,4.5,0.143519,0.143519,0.143519,0.143519,25,25,14000,14000,3178,3178,7000,7000,4516,4516,4816,4816,4810,4810,0.145422,0.157908,0.143519,0.143519,0.145422,0.157908,0.143649,0.149182,0.143519,0.143519,0.143649,0.149182,0.145038,0.188952,0.143519,0.143519,0.145038,0.188952,0.143519,0.143519,0.143519,0.143519,0.143519,0.143519,,,,,,,0.145422,0.157908,0.143649,0.149182,0.145038,0.188952,0.143519,0.143519,0.143519,0.143519,0.05439,0.058136,0.053859,0.055519,0.054275,0.067449,0.05382,0.05382,0.028106,0.028106,24.672817,22.721871,24.977334,24.050877,24.738042,18.988805,25,25,25,25,,,,,,,,,,,4816,4816,0.143519,0.143519,0.143519,0.143519,0.143519,0.143519,0.143519,0.143519,0.05382,0.05382,25,25,, +23107,-1,0.115762,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.973,4.089,0,2.480613,8,4.5,,0.277829,,0.277829,,25,,21000,,4767,,10500,,6775,,7224,,7216,,0.441581,,0.277829,,0.441581,,0.363507,,0.277829,,0.363507,,0.571654,,0.277829,,0.571654,,0.277829,,0.277829,,0.277829,,,,,,,,0.441581,,0.363507,,0.571654,,0.277829,,0.277829,,0.153311,,0.129889,,0.192333,,0.104186,,0.054408,,15.729216,,19.107502,,12.150205,,25,,25,,,,,,,,,,,,7224,,0.277829,,0.277829,,0.277829,,0.277829,,0.104186,,25,, +23657,1,0.074196,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.955,4.029,0,1.589917,8,4.5,0.178071,,0.178071,,25,,21000,,4767,,10500,,6775,,7224,,7216,,0.341749,,0.178071,,0.341749,,0.250845,,0.178071,,0.250845,,0.392303,,0.178071,,0.392303,,0.178071,,0.178071,,0.178071,,,,,,,,0.341749,,0.250845,,0.392303,,0.178071,,0.178071,,0.11588,,0.088609,,0.131046,,0.066777,,0.034872,,13.026411,,17.747088,,11.34778,,25,,25,,,,,,,,,,,,7224,,0.178071,,0.178071,,0.178071,,0.178071,,0.066777,,25,,, +18565,0,0.059968,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.215,2.275,0,1.28502,5,5,0.102802,0.102802,0.102802,0.102802,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.133673,0.14104,0.102802,0.102802,0.133673,0.14104,0.121467,0.119105,0.102802,0.102802,0.121467,0.119105,0.152431,0.157004,0.102802,0.102802,0.152431,0.157004,0.102802,0.102802,0.102802,0.102802,0.102802,0.102802,,,,,,,0.133673,0.14104,0.121467,0.119105,0.152431,0.157004,0.102802,0.102802,0.102802,0.102802,0.050896,0.053106,0.047234,0.046526,0.056524,0.057895,0.041635,0.041635,0.022017,0.022017,26.916925,25.510797,29.62174,30.20908,23.604412,22.916944,35,35,35,35,,,,,,,,,,,7946,7946,0.102802,0.102802,0.102802,0.102802,0.102802,0.102802,0.102802,0.102802,0.041635,0.041635,35,35,, +31326,0,0.218518,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.682521,0.15,4,1.311106,1.311106,1.311106,1.311106,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,,,,,,,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,0.432665,0.432665,0.432665,0.432665,0.432665,0.432665,0.432665,0.432665,0.220703,0.220703,10,9.999999,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,1.311106,0.432665,0.432665,10,10,, +31823,0,0.271763,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.823496,0.15,4,1.630579,1.630579,1.630579,1.630579,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,,,,,,,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,0.538091,0.538091,0.538091,0.538091,0.538091,0.538091,0.538091,0.538091,0.274481,0.274481,10,9.999999,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,1.630579,0.538091,0.538091,10,10,, +16553,1,0.069812,1,0,0,2,5,DV2,3,2,Hubbard,Rd,1606910,0,0.07,0,1.495979,8,4.5,0.16755,,0.16755,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.16755,,0.16755,,0.16755,,0.16755,,0.16755,,0.16755,,0.16787,,0.16755,,0.16787,,0.16755,,0.16755,,0.16755,,,,,,,,0.16755,,0.16755,,0.16787,,0.16755,,0.16755,,0.062831,,0.062831,,0.062927,,0.062831,,0.032812,,24.999987,,24.999956,,24.952276,,25,,25,,,,,,,,,,,,2408,,0.16755,,0.16755,,0.16755,,0.16755,,0.062831,,25,,, +16543,0,0.307391,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.68,0.987,0,6.586944,8,4.5,0.737738,0.737738,0.737738,0.737738,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.853657,0.819678,0.737738,0.737738,0.853657,0.819678,0.776331,0.777246,0.737738,0.737738,0.776331,0.777246,1.26135,1.214448,0.737738,0.737738,1.26135,1.214448,0.737738,0.737738,0.737738,0.737738,0.737738,0.737738,,,,,,,0.853657,0.819678,0.776331,0.777246,1.26135,1.214448,0.737738,0.737738,0.737738,0.737738,0.311427,0.301234,0.28823,0.288504,0.433735,0.419665,0.276652,0.276652,0.144474,0.144474,21.605216,22.500835,23.7572,23.729229,14.621984,15.186685,25,25,25,25,,,,,,,,,,,2408,2408,0.737738,0.737738,0.737738,0.737738,0.737738,0.737738,0.737738,0.737738,0.276652,0.276652,25,25,, +16642,1,0.494418,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,4.949,5.443,0,10.594673,6,4.5,0.898942,,0.898942,,33,,22500,,5108,,11250,,7259,,7740,,7731,,0.904388,,0.898942,,0.904388,,0.899593,,0.898942,,0.899593,,0.93613,,0.898942,,0.93613,,0.898942,,0.898942,,0.898942,,,,,,,,0.904388,,0.899593,,0.93613,,0.898942,,0.898942,,0.360312,,0.358873,,0.369834,,0.358678,,0.189227,,32.801286,,32.97613,,31.689076,,33,,33,,,,,,,,,,,,7740,,0.898942,,0.898942,,0.898942,,0.898942,,0.358678,,33,,, +18677,1,0.476859,2,0,0,2,3,DV2,3,2,Farmington,Rd,1690602,2.773,3.25,0,10.218409,5,5,0.817473,,0.817473,,35,,22000,,4994,,11000,,7097,,7568,,7559,,0.932394,,0.817473,,0.932394,,0.850591,,0.817473,,0.850591,,1.067819,,0.817473,,1.067819,,0.817473,,0.817473,,0.817473,,,,,,,,0.932394,,0.850591,,1.067819,,0.817473,,0.817473,,0.365553,,0.341012,,0.40618,,0.331076,,0.175075,,30.686095,,33.637262,,26.794377,,35,,35,,,,,,,,,,,,7568,,0.817473,,0.817473,,0.817473,,0.817473,,0.331076,,35,,, +18989,1,0.370403,1,0,0,2,5,DV2,3,2,Lyndon,Ave,1696208,0.245,0.615,0,7.937216,8,4.5,0.888968,,0.888968,,25,,7000,,1589,,3500,,2258,,2408,,2405,,1.16667,,0.888968,,1.16667,,1.146925,,0.888968,,1.146925,,1.470596,,0.888968,,1.470596,,0.888968,,0.888968,,0.888968,,,,,,,,1.16667,,1.146925,,1.470596,,0.888968,,0.888968,,0.416674,,0.41075,,0.507852,,0.333363,,0.17409,,19.049259,,19.377214,,15.112374,,25,,25,,,,,,,,,,,,2408,,0.888968,,0.888968,,0.888968,,0.888968,,0.333363,,25,,, +21629,-1,0.475925,0,2,0,2,3,DV2,3,2,Farmington,Rd,4700097,0,0.476,0,10.198388,5,5,,0.815871,,0.815871,,35,,22000,,4994,,11000,,7097,,7568,,7559,,0.941949,,0.815871,,0.941949,,0.857366,,0.815871,,0.857366,,1.097359,,0.815871,,1.097359,,0.815871,,0.815871,,0.815871,,,,,,,,0.941949,,0.857366,,1.097359,,0.815871,,0.815871,,0.368251,,0.342876,,0.414874,,0.330428,,0.174732,,30.315313,,33.306057,,26.02201,,35,,35,,,,,,,,,,,,7568,,0.815871,,0.815871,,0.815871,,0.815871,,0.330428,,35,, +22244,-1,0.370423,0,1,0,2,5,DV2,3,2,Lyndon,Ave,4703056,0.236,0.607,0,7.93763,8,4.5,,0.889015,,0.889015,,25,,7000,,1589,,3500,,2258,,2408,,2405,,1.137127,,0.889015,,1.137127,,1.128114,,0.889015,,1.128114,,1.558285,,0.889015,,1.558285,,0.889015,,0.889015,,0.889015,,,,,,,,1.137127,,1.128114,,1.558285,,0.889015,,0.889015,,0.407814,,0.40511,,0.534161,,0.33338,,0.174099,,19.545194,,19.701348,,14.262712,,25,,25,,,,,,,,,,,,2408,,0.889015,,0.889015,,0.889015,,0.889015,,0.33338,,25,, +22481,-1,0.494313,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0.205,0.699,0,10.592427,6,4.5,,0.898751,,0.898751,,33,,22500,,5108,,11250,,7259,,7740,,7731,,0.903152,,0.898751,,0.903152,,0.899086,,0.898751,,0.899086,,0.931624,,0.898751,,0.931624,,0.898751,,0.898751,,0.898751,,,,,,,,0.903152,,0.899086,,0.931624,,0.898751,,0.898751,,0.359922,,0.358702,,0.368464,,0.358602,,0.189187,,32.839202,,32.987714,,31.835572,,33,,33,,,,,,,,,,,,7740,,0.898751,,0.898751,,0.898751,,0.898751,,0.358602,,33,, +18988,1,0.244963,2,0,0,2,5,DV2,3,2,Lyndon,Rd,1696208,0,0.245,0,5.249209,8,4.5,0.587911,,0.587911,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.669365,,0.587911,,0.669365,,0.636581,,0.587911,,0.636581,,0.917122,,0.587911,,0.917122,,0.587911,,0.587911,,0.587911,,,,,,,,0.669365,,0.636581,,0.917122,,0.587911,,0.587911,,0.244903,,0.235068,,0.31923,,0.220467,,0.115133,,21.957805,,23.088627,,16.025992,,25,,25,,,,,,,,,,,,4816,,0.587911,,0.587911,,0.587911,,0.587911,,0.220467,,25,,, +22245,-1,0.236327,0,2,0,2,5,DV2,3,2,Lyndon,Rd,4703056,0,0.236,0,5.06416,8,4.5,,0.567186,,0.567186,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.647488,,0.567186,,0.647488,,0.612624,,0.567186,,0.612624,,0.817346,,0.567186,,0.817346,,0.567186,,0.567186,,0.567186,,,,,,,,0.647488,,0.612624,,0.817346,,0.567186,,0.567186,,0.236785,,0.226326,,0.287743,,0.212695,,0.111074,,21.899485,,23.145775,,17.348412,,25,,25,,,,,,,,,,,,4816,,0.567186,,0.567186,,0.567186,,0.567186,,0.212695,,25,, +16820,-1,0.013679,0,2,0,2,5,DV2,3,2,Stark,Rd,1604610,2.186,2.2,0,0.293129,8,4.5,,0.03283,,0.03283,,25,,14000,,3178,,7000,,4516,,4816,,4810,,0.037479,,0.03283,,0.037479,,0.035461,,0.03283,,0.035461,,0.04731,,0.03283,,0.04731,,0.03283,,0.03283,,0.03283,,,,,,,,0.037479,,0.035461,,0.04731,,0.03283,,0.03283,,0.013706,,0.0131,,0.016655,,0.012311,,0.006429,,21.899485,,23.145775,,17.348412,,25,,25,,,,,,,,,,,,4816,,0.03283,,0.03283,,0.03283,,0.03283,,0.012311,,25,, +17721,0,0.007047,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.757,2.765,0,0.151011,5,5,0.012081,0.012081,0.012081,0.012081,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.015835,0.013606,0.012081,0.012081,0.015835,0.013606,0.013513,0.012822,0.012081,0.012081,0.013513,0.012822,0.017504,0.013815,0.012081,0.012081,0.017504,0.013815,0.012081,0.012081,0.012081,0.012081,0.012081,0.012081,,,,,,,0.015835,0.013606,0.013513,0.012822,0.017504,0.013815,0.012081,0.012081,0.012081,0.012081,0.006019,0.00535,0.005322,0.005115,0.00652,0.005413,0.004893,0.004893,0.002587,0.002587,26.701602,31.076877,31.291132,32.976617,24.156561,30.606986,35,35,35,35,,,,,,,,,,,7946,7946,0.012081,0.012081,0.012081,0.012081,0.012081,0.012081,0.012081,0.012081,0.004893,0.004893,35,35,, +19132,0,0.008288,2,2,0,2,3,,3,2,Farmington,Rd,1690602,2.765,2.773,0,0.177609,5,5,0.014209,0.014209,0.014209,0.014209,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.016206,0.016404,0.014209,0.014209,0.016206,0.016404,0.014784,0.014931,0.014209,0.014209,0.014784,0.014931,0.01856,0.019111,0.014209,0.014209,0.01856,0.019111,0.014209,0.014209,0.014209,0.014209,0.014209,0.014209,,,,,,,0.016206,0.016404,0.014784,0.014931,0.01856,0.019111,0.014209,0.014209,0.014209,0.014209,0.006354,0.006413,0.005927,0.005971,0.00706,0.007225,0.005755,0.005755,0.003043,0.003043,30.686095,30.315313,33.637262,33.306057,26.794377,26.02201,35,35,35,35,,,,,,,,,,,7568,7568,0.014209,0.014209,0.014209,0.014209,0.014209,0.014209,0.014209,0.014209,0.005755,0.005755,35,35,, +16953,1,0.195095,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,4.742,4.937,0,4.180597,6,4.5,0.354717,,0.354717,,33,,22500,,5108,,11250,,7259,,7740,,7731,,0.355473,,0.354717,,0.355473,,0.354802,,0.354717,,0.354802,,0.357693,,0.354717,,0.357693,,0.354717,,0.354717,,0.354717,,,,,,,,0.355473,,0.354802,,0.357693,,0.354717,,0.354717,,0.141759,,0.141558,,0.142425,,0.141532,,0.074668,,32.929881,,32.992135,,32.725515,,33,,33,,,,,,,,,,,,7740,,0.354717,,0.354717,,0.354717,,0.354717,,0.141532,,33,,, +18143,1,0.23512,2,0,0,2,3,DV2,3,2,Farmington,Rd,1690602,3.268,3.503,0,5.038293,5,5,0.403063,,0.403063,,35,,22000,,4994,,11000,,7097,,7568,,7559,,0.447691,,0.403063,,0.447691,,0.42169,,0.403063,,0.42169,,0.493671,,0.403063,,0.493671,,0.403063,,0.403063,,0.403063,,,,,,,,0.447691,,0.42169,,0.493671,,0.403063,,0.403063,,0.176629,,0.168829,,0.190423,,0.163241,,0.086323,,31.511074,,33.454008,,28.576152,,35,,35,,,,,,,,,,,,7568,,0.403063,,0.403063,,0.403063,,0.403063,,0.163241,,35,,, +21541,-1,0.235011,0,2,0,2,3,DV2,3,2,Farmington,Rd,4700097,0.494,0.729,0,5.035941,5,5,,0.402875,,0.402875,,35,,22000,,4994,,11000,,7097,,7568,,7559,,0.458542,,0.402875,,0.458542,,0.428976,,0.402875,,0.428976,,0.506812,,0.402875,,0.506812,,0.402875,,0.402875,,0.402875,,,,,,,,0.458542,,0.428976,,0.506812,,0.402875,,0.402875,,0.179864,,0.170995,,0.194345,,0.163164,,0.086282,,30.751046,,32.87046,,27.822225,,35,,35,,,,,,,,,,,,7568,,0.402875,,0.402875,,0.402875,,0.402875,,0.163164,,35,, +22483,-1,0.193412,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0,0.193,0,4.144545,6,4.5,,0.351658,,0.351658,,33,,22500,,5108,,11250,,7259,,7740,,7731,,0.352438,,0.351658,,0.352438,,0.351714,,0.351658,,0.351714,,0.35419,,0.351658,,0.35419,,0.351658,,0.351658,,0.351658,,,,,,,,0.352438,,0.351714,,0.35419,,0.351658,,0.351658,,0.140546,,0.140328,,0.141071,,0.140312,,0.074024,,32.926986,,32.994758,,32.764103,,33,,33,,,,,,,,,,,,7740,,0.351658,,0.351658,,0.351658,,0.351658,,0.140312,,33,, +16947,1,0.01136,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,4.937,4.949,0,0.24342,6,4.5,0.020654,,0.020654,,33,,22500,,5108,,11250,,7259,,7740,,7731,,0.020698,,0.020654,,0.020698,,0.020662,,0.020654,,0.020662,,0.020924,,0.020654,,0.020924,,0.020654,,0.020654,,0.020654,,,,,,,,0.020698,,0.020662,,0.020924,,0.020654,,0.020654,,0.008254,,0.008243,,0.008322,,0.008241,,0.004348,,32.930206,,32.986365,,32.573191,,33,,33,,,,,,,,,,,,7740,,0.020654,,0.020654,,0.020654,,0.020654,,0.008241,,33,,, +18344,1,0.018299,2,0,0,2,3,DV2,3,2,Farmington,Rd,1690602,3.25,3.268,0,0.392131,5,5,0.031371,,0.031371,,35,,22000,,4994,,11000,,7097,,7568,,7559,,0.034064,,0.031371,,0.034064,,0.032395,,0.031371,,0.032395,,0.036066,,0.031371,,0.036066,,0.031371,,0.031371,,0.031371,,,,,,,,0.034064,,0.032395,,0.036066,,0.031371,,0.031371,,0.013513,,0.013012,,0.014114,,0.012705,,0.006719,,32.232386,,33.893393,,30.442998,,35,,35,,,,,,,,,,,,7568,,0.031371,,0.031371,,0.031371,,0.031371,,0.012705,,35,,, +21630,-1,0.018232,0,2,0,2,3,DV2,3,2,Farmington,Rd,4700097,0.476,0.494,0,0.390691,5,5,,0.031255,,0.031255,,35,,22000,,4994,,11000,,7097,,7568,,7559,,0.036077,,0.031255,,0.036077,,0.033144,,0.031255,,0.033144,,0.044516,,0.031255,,0.044516,,0.031255,,0.031255,,0.031255,,,,,,,,0.036077,,0.033144,,0.044516,,0.031255,,0.031255,,0.014105,,0.013225,,0.016637,,0.012658,,0.006694,,30.322664,,33.005828,,24.573766,,35,,35,,,,,,,,,,,,7568,,0.031255,,0.031255,,0.031255,,0.031255,,0.012658,,35,, +22482,-1,0.011412,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0.193,0.205,0,0.244541,6,4.5,,0.020749,,0.020749,,33,,22500,,5108,,11250,,7259,,7740,,7731,,0.020809,,0.020749,,0.020809,,0.020751,,0.020749,,0.020751,,0.02116,,0.020749,,0.02116,,0.020749,,0.020749,,0.020749,,,,,,,,0.020809,,0.020751,,0.02116,,0.020749,,0.020749,,0.008297,,0.00828,,0.008402,,0.008279,,0.004368,,32.904561,,32.996015,,32.359467,,33,,33,,,,,,,,,,,,7740,,0.020749,,0.020749,,0.020749,,0.020749,,0.008279,,33,, +18737,1,0.130933,1,0,0,2,5,DV2,3,2,Lyndon,Ave,1696208,0.615,0.746,0,2.805715,8,4.5,0.31424,,0.31424,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.314241,,0.31424,,0.314241,,0.314241,,0.31424,,0.314241,,0.314241,,0.31424,,0.314241,,0.31424,,0.31424,,0.31424,,,,,,,,0.314241,,0.314241,,0.314241,,0.31424,,0.31424,,0.11784,,0.11784,,0.11784,,0.11784,,0.061539,,24.999968,,24.999923,,24.999946,,25,,25,,,,,,,,,,,,2408,,0.31424,,0.31424,,0.31424,,0.31424,,0.11784,,25,,, +22243,-1,0.130876,0,1,0,2,5,DV2,3,2,Lyndon,Ave,4703056,0.607,0.737,0,2.804491,8,4.5,,0.314103,,0.314103,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.314103,,0.314103,,0.314103,,0.314103,,0.314103,,0.314103,,0.314243,,0.314103,,0.314243,,0.314103,,0.314103,,0.314103,,,,,,,,0.314103,,0.314103,,0.314243,,0.314103,,0.314103,,0.117789,,0.117789,,0.117831,,0.117789,,0.061512,,24.999993,,24.999964,,24.988837,,25,,25,,,,,,,,,,,,2408,,0.314103,,0.314103,,0.314103,,0.314103,,0.117789,,25,, +31332,0,0.146081,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.130313,0.15,4,0.876488,0.876488,0.876488,0.876488,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,,,,,,,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.289241,0.289241,0.289241,0.289241,0.289241,0.289241,0.289241,0.289241,0.147542,0.147542,9.999998,10,9.999998,10,9.999996,10,10,10,10,10,,,,,,,,,,,34400,34400,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.876488,0.289241,0.289241,10,10,, +31333,0,0.139185,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.982533,0.15,4,0.835109,0.835109,0.835109,0.835109,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.835109,0.83511,0.835109,0.835109,0.835109,0.83511,0.835109,0.835109,0.835109,0.835109,0.835109,0.835109,0.835109,0.83511,0.835109,0.835109,0.835109,0.83511,0.835109,0.835109,0.835109,0.835109,0.835109,0.835109,,,,,,,0.835109,0.83511,0.835109,0.835109,0.835109,0.83511,0.835109,0.835109,0.835109,0.835109,0.275586,0.275586,0.275586,0.275586,0.275586,0.275586,0.275586,0.275586,0.140577,0.140577,10,9.999998,10,9.999998,10,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,0.835109,0.835109,0.835109,0.835109,0.835109,0.835109,0.835109,0.835109,0.275586,0.275586,10,10,, +16824,0,0.185277,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.495,0.68,0,3.970225,8,4.5,0.444665,0.444665,0.444665,0.444665,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.444665,0.444665,0.444665,0.444665,0.444665,0.444665,0.444665,0.444665,0.444665,0.444665,0.444665,0.444665,0.444686,0.444666,0.444665,0.444665,0.444686,0.444666,0.444665,0.444665,0.444665,0.444665,0.444665,0.444665,,,,,,,0.444665,0.444665,0.444665,0.444665,0.444686,0.444666,0.444665,0.444665,0.444665,0.444665,0.166749,0.166749,0.166749,0.166749,0.166756,0.16675,0.166749,0.166749,0.08708,0.08708,24.999995,24.999997,24.999998,24.999999,24.998858,24.999932,25,25,25,25,,,,,,,,,,,2408,2408,0.444665,0.444665,0.444665,0.444665,0.444665,0.444665,0.444665,0.444665,0.166749,0.166749,25,25,, +31343,0,0.214743,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.601644,0.15,4,1.28846,1.28846,1.28846,1.28846,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.28846,1.28846,1.28846,1.28846,1.28846,1.28846,1.28846,1.28846,1.28846,1.28846,1.28846,1.28846,1.288461,1.288461,1.28846,1.28846,1.288461,1.288461,1.28846,1.28846,1.28846,1.28846,1.28846,1.28846,,,,,,,1.28846,1.28846,1.28846,1.28846,1.288461,1.288461,1.28846,1.28846,1.28846,1.28846,0.425192,0.425192,0.425192,0.425192,0.425192,0.425192,0.425192,0.425192,0.216891,0.216891,9.999999,9.999999,10,10,9.999997,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,1.28846,1.28846,1.28846,1.28846,1.28846,1.28846,1.28846,1.28846,0.425192,0.425192,10,10,, +16544,0,0.01326,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.481,0.495,0,0.284149,8,4.5,0.031825,0.031825,0.031825,0.031825,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,0.031886,0.031825,0.031825,0.031825,0.031886,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,,,,,,,0.031825,0.031825,0.031825,0.031825,0.031886,0.031825,0.031825,0.031825,0.031825,0.031825,0.011934,0.011934,0.011934,0.011934,0.011952,0.011934,0.011934,0.011934,0.006232,0.006232,24.999987,24.999942,24.999956,24.999965,24.952276,24.999664,25,25,25,25,,,,,,,,,,,2408,2408,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,0.031825,0.011934,0.011934,25,25,, +16542,0,0.243792,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,1.001,1.244,0,5.22412,8,4.5,0.585101,0.585101,0.585101,0.585101,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.600971,0.616848,0.585101,0.585101,0.600971,0.616848,0.595429,0.598247,0.585101,0.585101,0.595429,0.598247,0.677079,0.640443,0.585101,0.585101,0.677079,0.640443,0.585101,0.585101,0.585101,0.585101,0.585101,0.585101,,,,,,,0.600971,0.616848,0.595429,0.598247,0.677079,0.640443,0.585101,0.585101,0.585101,0.585101,0.224174,0.228937,0.222511,0.223357,0.247006,0.236016,0.219413,0.219413,0.114582,0.114582,24.339848,23.713357,24.566394,24.450662,21.603891,22.839713,25,25,25,25,,,,,,,,,,,2408,2408,0.585101,0.585101,0.585101,0.585101,0.585101,0.585101,0.585101,0.585101,0.219413,0.219413,25,25,, +16823,0,0.013673,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.987,1.001,0,0.292991,8,4.5,0.032815,0.032815,0.032815,0.032815,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.034774,0.03761,0.032815,0.032815,0.034774,0.03761,0.033433,0.034533,0.032815,0.032815,0.033433,0.034533,0.045551,0.040603,0.032815,0.032815,0.045551,0.040603,0.032815,0.032815,0.032815,0.032815,0.032815,0.032815,,,,,,,0.034774,0.03761,0.033433,0.034533,0.045551,0.040603,0.032815,0.032815,0.032815,0.032815,0.012893,0.013744,0.012491,0.012821,0.016126,0.014642,0.012306,0.012306,0.006426,0.006426,23.591414,21.812773,24.53759,23.756001,18.010058,20.204542,25,25,25,25,,,,,,,,,,,2408,2408,0.032815,0.032815,0.032815,0.032815,0.032815,0.032815,0.032815,0.032815,0.012306,0.012306,25,25,, +591,0,0.329053,1,1,0,2,5,,3,3,Lytle,,637710,0,0.329,0,7.051137,8,4.5,0.789727,0.789727,0.789727,0.789727,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.789977,0.79596,0.789727,0.789727,0.789977,0.79596,0.789728,0.790174,0.789727,0.789727,0.789728,0.790174,0.790624,0.798695,0.789727,0.789727,0.790624,0.798695,0.789727,0.789727,0.789727,0.789727,0.789727,0.789727,,,,,,,0.789977,0.79596,0.789728,0.790174,0.790624,0.798695,0.789727,0.789727,0.789727,0.789727,0.296223,0.298018,0.296148,0.296282,0.296417,0.298838,0.296148,0.296148,0.154655,0.154655,24.992113,24.804246,24.999968,24.985856,24.971656,24.719296,25,25,25,25,,,,,,,,,,,2408,2408,0.789727,0.789727,0.789727,0.789727,0.789727,0.789727,0.789727,0.789727,0.296148,0.296148,25,25,, +1044,0,0.230462,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.195,1.425,0,4.93848,8,4.5,0.55311,0.55311,0.55311,0.55311,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.560978,0.555859,0.55311,0.55311,0.560978,0.555859,0.555619,0.563516,0.55311,0.55311,0.555619,0.563516,0.55584,0.642232,0.55311,0.55311,0.55584,0.642232,0.55311,0.55311,0.55311,0.55311,0.55311,0.55311,,,,,,,0.560978,0.555859,0.555619,0.563516,0.55584,0.642232,0.55311,0.55311,0.55311,0.55311,0.209777,0.208241,0.208169,0.210538,0.208235,0.234153,0.207416,0.207416,0.108317,0.108317,24.649334,24.87633,24.887105,24.538353,24.877211,21.530746,25,25,25,25,,,,,,,,,,,2408,2408,0.55311,0.55311,0.55311,0.55311,0.55311,0.55311,0.55311,0.55311,0.207416,0.207416,25,25,, +1794,0,0.239635,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.95,1.19,0,5.135034,6,4.5,0.4357,0.4357,0.4357,0.4357,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.47368,0.469207,0.4357,0.4357,0.47368,0.469207,0.460002,0.452432,0.4357,0.4357,0.460002,0.452432,0.51017,0.453071,0.4357,0.4357,0.51017,0.453071,0.4357,0.4357,0.4357,0.4357,0.4357,0.4357,,,,,,,0.47368,0.469207,0.460002,0.452432,0.51017,0.453071,0.4357,0.4357,0.4357,0.4357,0.185238,0.183896,0.181135,0.178864,0.196185,0.179055,0.173844,0.173844,0.091715,0.091715,30.354056,30.643385,31.256593,31.779587,28.182961,31.734768,33,33,33,33,,,,,,,,,,,2580,2580,0.4357,0.4357,0.4357,0.4357,0.4357,0.4357,0.4357,0.4357,0.173844,0.173844,33,33,, +2460,1,1.849172,2,0,0,1,2,,3,3,E M 5,,657303,14.184,16.033,0,,0.58,7,1.706928,,1.706928,,65,,44000,,9988,,22000,,14194,,15136,,15118,,1.75628,,1.706928,,1.75628,,1.711979,,1.706928,,1.711979,,1.789021,,1.706928,,1.789021,,1.706928,,1.706928,,1.706928,,,,,,,,1.75628,,1.711979,,1.789021,,1.706928,,1.706928,,0.859735,,0.846445,,0.869557,,0.844929,,0.459448,,63.173485,,64.808224,,62.017315,,65,,65,,,,,,,,,,,,15136,,1.706928,,1.706928,,1.706928,,1.706928,,0.844929,,65,,, +17542,0,0.403824,1,1,0,2,5,,3,2,Gill,Rd,1700705,1.025,1.428,0,8.653381,8,4.5,0.969179,0.969179,0.969179,0.969179,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.973635,0.970058,0.969179,0.969179,0.973635,0.970058,0.972837,0.969777,0.969179,0.969179,0.972837,0.969777,0.98518,0.974253,0.969179,0.969179,0.98518,0.974253,0.969179,0.969179,0.969179,0.969179,0.969179,0.969179,,,,,,,0.973635,0.970058,0.972837,0.969777,0.98518,0.974253,0.969179,0.969179,0.969179,0.969179,0.364779,0.363706,0.36454,0.363622,0.368242,0.364964,0.363442,0.363442,0.189797,0.189797,24.885579,24.977338,24.905982,24.98457,24.593947,24.869785,25,25,25,25,,,,,,,,,,,2408,2408,0.969179,0.969179,0.969179,0.969179,0.969179,0.969179,0.969179,0.969179,0.363442,0.363442,25,25,, +17885,0,0.565475,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.873,8.438,0,12.117316,5,5,0.969385,0.969385,0.969385,0.969385,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.995161,1.035746,0.969385,0.969385,0.995161,1.035746,0.980814,0.987172,0.969385,0.969385,0.980814,0.987172,1.092976,1.08831,0.969385,0.969385,1.092976,1.08831,0.969385,0.969385,0.969385,0.969385,0.969385,0.969385,,,,,,,0.995161,1.035746,0.980814,0.987172,1.092976,1.08831,0.969385,0.969385,0.969385,0.969385,0.400334,0.412509,0.39603,0.397937,0.429678,0.428279,0.392601,0.392601,0.20761,0.20761,34.093453,32.757519,34.592164,34.369372,31.042303,31.175381,35,35,35,35,,,,,,,,,,,7946,7946,0.969385,0.969385,0.969385,0.969385,0.969385,0.969385,0.969385,0.969385,0.392601,0.392601,35,35,, +18345,0,0.456573,2,2,1,2,3,,3,2,Farmington,Rd,1690602,5.799,6.255,0,9.783698,5,5,0.782696,0.782696,0.782696,0.782696,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.854814,0.859625,0.782696,0.782696,0.854814,0.859625,0.809577,0.830084,0.782696,0.782696,0.809577,0.830084,0.887301,0.93324,0.782696,0.782696,0.887301,0.93324,0.782696,0.782696,0.782696,0.782696,0.782696,0.782696,,,,,,,0.854814,0.859625,0.809577,0.830084,0.887301,0.93324,0.782696,0.782696,0.782696,0.782696,0.338627,0.340071,0.325056,0.331208,0.348373,0.362155,0.316992,0.316992,0.167627,0.167627,32.047146,31.867782,33.837878,33.001899,30.873792,29.354044,35,35,35,35,,,,,,,,,,,7946,7946,0.782696,0.782696,0.782696,0.782696,0.782696,0.782696,0.782696,0.782696,0.316992,0.316992,35,35,, +18428,0,0.742178,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,1.731,2.473,0,15.903815,5,5,1.272305,1.272305,1.272305,1.272305,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.332525,1.332598,1.272305,1.272305,1.332525,1.332598,1.290025,1.297288,1.272305,1.272305,1.290025,1.297288,1.371385,1.419642,1.272305,1.272305,1.371385,1.419642,1.272305,1.272305,1.272305,1.272305,1.272305,1.272305,,,,,,,1.332525,1.332598,1.290025,1.297288,1.371385,1.419642,1.272305,1.272305,1.272305,1.272305,0.53335,0.533371,0.5206,0.522779,0.545007,0.559485,0.515284,0.515284,0.272485,0.272485,33.418274,33.416449,34.519239,34.325969,32.471326,31.367539,35,35,35,35,,,,,,,,,,,7946,7946,1.272305,1.272305,1.272305,1.272305,1.272305,1.272305,1.272305,1.272305,0.515284,0.515284,35,35,, +20922,0,0.75389,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,3.505,4.259,0,16.154788,5,5,1.292383,1.292383,1.292383,1.292383,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.328459,1.363573,1.292383,1.292383,1.328459,1.363573,1.29776,1.309729,1.292383,1.292383,1.29776,1.309729,1.376796,1.464854,1.292383,1.292383,1.376796,1.464854,1.292383,1.292383,1.292383,1.292383,1.292383,1.292383,,,,,,,1.328459,1.363573,1.29776,1.309729,1.376796,1.464854,1.292383,1.292383,1.292383,1.292383,0.534238,0.544772,0.525028,0.528619,0.548739,0.575156,0.523415,0.523415,0.276785,0.276785,34.049519,33.172716,34.854997,34.536469,32.854116,30.879119,35,35,35,35,,,,,,,,,,,7946,7946,1.292383,1.292383,1.292383,1.292383,1.292383,1.292383,1.292383,1.292383,0.523415,0.523415,35,35,, +24110,0,0.47324,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,10.56,11.033,0,10.140861,6,4.5,0.860437,0.860437,0.860437,0.860437,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.921326,0.933689,0.860437,0.860437,0.921326,0.933689,0.891914,0.895194,0.860437,0.860437,0.891914,0.895194,0.970943,1.020408,0.860437,0.860437,0.970943,1.020408,0.860437,0.860437,0.860437,0.860437,0.860437,0.860437,,,,,,,0.921326,0.933689,0.891914,0.895194,0.970943,1.020408,0.860437,0.860437,0.860437,0.860437,0.361581,0.36529,0.352757,0.353741,0.376466,0.391306,0.343314,0.343314,0.181122,0.181122,30.819055,30.411003,31.835375,31.71874,29.244146,27.826522,33,33,33,33,,,,,,,,,,,5418,5418,0.860437,0.860437,0.860437,0.860437,0.860437,0.860437,0.860437,0.860437,0.343314,0.343314,33,33,, +26201,0,0.765373,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,16.400849,0.15,4,4.592238,4.592238,4.592238,4.592238,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,,,,,,,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,1.515438,1.515438,1.515438,1.515438,1.515438,1.515438,1.515438,1.515438,0.773027,0.773027,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,4.592238,1.515438,1.515438,10,10,, +30241,0,0.728774,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.616583,0.15,4,4.372643,4.372643,4.372643,4.372643,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,,,,,,,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,1.442972,1.442972,1.442972,1.442972,1.442972,1.442972,1.442972,1.442972,0.736062,0.736062,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,4.372643,1.442972,1.442972,10,10,, +31724,0,0.395028,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.464889,0.15,4,2.370169,2.370169,2.370169,2.370169,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,,,,,,,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,0.782156,0.782156,0.782156,0.782156,0.782156,0.782156,0.782156,0.782156,0.398978,0.398978,10,9.999997,10,9.999999,9.999998,10,10,10,10,10,,,,,,,,,,,34400,34400,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,2.370169,0.782156,0.782156,10,10,, +31829,0,0.495771,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.623668,0.15,4,2.974627,2.974627,2.974627,2.974627,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,,,,,,,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,0.981627,0.981627,0.981627,0.981627,0.981627,0.981627,0.981627,0.981627,0.500729,0.500729,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,2.974627,0.981627,0.981627,10,10,, +31838,0,0.754394,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.165582,0.15,4,4.526363,4.526363,4.526363,4.526363,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,,,,,,,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,1.4937,1.4937,1.4937,1.4937,1.4937,1.4937,1.4937,1.4937,0.761938,0.761938,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,4.526363,1.4937,1.4937,10,10,, +32599,0,0.499682,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.707469,0.15,4,2.998091,2.998091,2.998091,2.998091,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,2.998092,2.998091,2.998091,2.998091,2.998092,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,,,,,,,2.998091,2.998091,2.998091,2.998091,2.998091,2.998092,2.998091,2.998091,2.998091,2.998091,0.98937,0.98937,0.98937,0.98937,0.98937,0.98937,0.98937,0.98937,0.504679,0.504679,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,2.998091,0.98937,0.98937,10,10,, +16341,1,0.392257,4,0,0,1,1,,3,2,E I 96,,1607802,1.303,1.695,0,,0.58,7,0.362083,,0.362083,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.409595,,0.362083,,0.409595,,0.374505,,0.362083,,0.374505,,0.50855,,0.362083,,0.50855,,0.362083,,0.362083,,0.362083,,,,,,,,0.409595,,0.374505,,0.50855,,0.362083,,0.362083,,0.193485,,0.182958,,0.223171,,0.179231,,0.097461,,57.460189,,62.844087,,46.279427,,65,,65,,,,,,,,,,,,30272,,0.362083,,0.362083,,0.362083,,0.362083,,0.179231,,65,,, +16960,-1,0.410408,0,4,0,1,1,,3,2,W I 96,,1607506,1.398,1.809,0,,0.58,7,,0.378839,,0.378839,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.510724,,0.378839,,0.510724,,0.390775,,0.378839,,0.390775,,0.455444,,0.378839,,0.455444,,0.378839,,0.378839,,0.378839,,,,,,,,0.510724,,0.390775,,0.455444,,0.378839,,0.378839,,0.227091,,0.191106,,0.210507,,0.187525,,0.101971,,48.214915,,63.014597,,54.06697,,65,,65,,,,,,,,,,,,30272,,0.378839,,0.378839,,0.378839,,0.378839,,0.187525,,65,, +17117,0,0.236303,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.707,3.943,0,5.063632,8,4.5,0.567127,0.567127,0.567127,0.567127,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.723527,0.577071,0.567127,0.567127,0.723527,0.577071,0.60485,0.598686,0.567127,0.567127,0.60485,0.598686,0.663208,0.772819,0.567127,0.567127,0.663208,0.772819,0.567127,0.567127,0.567127,0.567127,0.567127,0.567127,,,,,,,0.723527,0.577071,0.60485,0.598686,0.663208,0.772819,0.567127,0.567127,0.567127,0.567127,0.259593,0.215656,0.223989,0.22214,0.241497,0.27438,0.212673,0.212673,0.111062,0.111062,19.595909,24.569207,23.440806,23.682143,21.378178,18.346045,25,25,25,25,,,,,,,,,,,2408,2408,0.567127,0.567127,0.567127,0.567127,0.567127,0.567127,0.567127,0.567127,0.212673,0.212673,25,25,, +18718,1,0.211999,2,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,7.036,7.248,0,4.542831,5,5,0.317998,,0.317998,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.330117,,0.317998,,0.330117,,0.33055,,0.317998,,0.33055,,0.42645,,0.317998,,0.42645,,0.317998,,0.317998,,0.317998,,,,,,,,0.330117,,0.33055,,0.42645,,0.317998,,0.317998,,0.137195,,0.137325,,0.166095,,0.133559,,0.07102,,38.531613,,38.481073,,29.827503,,40,,40,,,,,,,,,,,,6880,,0.317998,,0.317998,,0.317998,,0.317998,,0.133559,,40,,, +19000,0,0.503302,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,0.974,1.477,0,10.785045,5,5,0.862804,0.862804,0.862804,0.862804,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.888526,0.968219,0.862804,0.862804,0.888526,0.968219,0.881999,0.891558,0.862804,0.862804,0.881999,0.891558,0.987862,0.961821,0.862804,0.862804,0.987862,0.961821,0.862804,0.862804,0.862804,0.862804,0.862804,0.862804,,,,,,,0.888526,0.968219,0.881999,0.891558,0.987862,0.961821,0.862804,0.862804,0.862804,0.862804,0.357152,0.38106,0.355194,0.358062,0.386953,0.379141,0.349435,0.349435,0.184784,0.184784,33.986776,31.189351,34.238267,33.871192,30.569178,31.396832,35,35,35,35,,,,,,,,,,,7946,7946,0.862804,0.862804,0.862804,0.862804,0.862804,0.862804,0.862804,0.862804,0.349435,0.349435,35,35,, +22335,-1,0.213149,0,2,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.481,0.694,0,4.567478,5,5,,0.319723,,0.319723,,40,,20000,,4540,,10000,,6452,,6880,,6872,,0.402464,,0.319723,,0.402464,,0.338856,,0.319723,,0.338856,,0.390528,,0.319723,,0.390528,,0.319723,,0.319723,,0.319723,,,,,,,,0.402464,,0.338856,,0.390528,,0.319723,,0.319723,,0.159106,,0.140024,,0.155525,,0.134284,,0.071405,,31.776569,,37.741485,,32.747777,,40,,40,,,,,,,,,,,,6880,,0.319723,,0.319723,,0.319723,,0.319723,,0.134284,,40,, +24122,1,0.172773,2,0,0,2,4,DV2,3,2,Newburgh,Rd,4710394,9.168,9.34,0,3.702269,6,4.5,0.314132,,0.314132,,33,,15000,,3405,,7500,,4839,,5160,,5154,,0.315799,,0.314132,,0.315799,,0.320866,,0.314132,,0.320866,,0.375025,,0.314132,,0.375025,,0.314132,,0.314132,,0.314132,,,,,,,,0.315799,,0.320866,,0.375025,,0.314132,,0.314132,,0.125839,,0.127359,,0.143607,,0.125339,,0.066125,,32.825844,,32.307443,,27.641747,,33,,33,,,,,,,,,,,,5160,,0.314132,,0.314132,,0.314132,,0.314132,,0.125339,,33,,, +31702,0,0.504745,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.815962,0.15,4,3.028469,3.028469,3.028469,3.028469,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,,,,,,,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,0.999395,0.999395,0.999395,0.999395,0.999395,0.999395,0.999395,0.999395,0.509792,0.509792,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,3.028469,0.999395,0.999395,10,10,, +31777,0,0.75086,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.089853,0.15,4,4.505159,4.505159,4.505159,4.505159,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,,,,,,,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,1.486702,1.486702,1.486702,1.486702,1.486702,1.486702,1.486702,1.486702,0.758368,0.758368,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,4.505159,1.486702,1.486702,10,10,, +31824,0,0.239654,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.135441,0.15,4,1.437923,1.437923,1.437923,1.437923,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,,,,,,,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,0.474515,0.474515,0.474515,0.474515,0.474515,0.474515,0.474515,0.474515,0.24205,0.24205,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,1.437923,0.474515,0.474515,10,10,, +31825,0,0.013706,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.293694,0.15,4,0.082234,0.082234,0.082234,0.082234,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,0.082235,0.082234,0.082234,0.082234,0.082235,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,,,,,,,0.082234,0.082234,0.082234,0.082234,0.082234,0.082235,0.082234,0.082234,0.082234,0.082234,0.027137,0.027137,0.027137,0.027137,0.027137,0.027137,0.027137,0.027137,0.013843,0.013843,9.999968,9.999996,9.999992,9.999993,9.999981,9.999959,10,10,10,10,,,,,,,,,,,34400,34400,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,0.082234,0.027137,0.027137,10,10,, +31832,0,0.359074,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.694433,0.15,4,2.154441,2.154441,2.154441,2.154441,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,,,,,,,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,0.710966,0.710966,0.710966,0.710966,0.710966,0.710966,0.710966,0.710966,0.362664,0.362664,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,2.154441,0.710966,0.710966,10,10,, +31844,0,0.248283,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.320341,0.15,4,1.489695,1.489695,1.489695,1.489695,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.489696,1.489696,1.489695,1.489695,1.489696,1.489696,1.489696,1.489696,1.489695,1.489695,1.489696,1.489696,1.489696,1.489696,1.489695,1.489695,1.489696,1.489696,1.489695,1.489695,1.489695,1.489695,1.489695,1.489695,,,,,,,1.489696,1.489696,1.489696,1.489696,1.489696,1.489696,1.489695,1.489695,1.489695,1.489695,0.4916,0.4916,0.4916,0.4916,0.4916,0.4916,0.4916,0.4916,0.250765,0.250765,9.999999,9.999999,9.999999,9.999999,9.999997,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,1.489695,1.489695,1.489695,1.489695,1.489695,1.489695,1.489695,1.489695,0.4916,0.4916,10,10,, +16348,1,0.366432,1,0,0,1,1,RON,3,2,E 6 Mile/E I 96,RAMP,1607803,0,0.366,0,,1.09,4,0.549649,,0.549649,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.552403,,0.549649,,0.552403,,0.556783,,0.549649,,0.556783,,0.579567,,0.549649,,0.579567,,0.549649,,0.549649,,0.549649,,,,,,,,0.552403,,0.556783,,0.579567,,0.549649,,0.549649,,0.231679,,0.232993,,0.239828,,0.230852,,0.122755,,39.800529,,39.487424,,37.935128,,40,,40,,,,,,,,,,,,5074,,0.549649,,0.549649,,0.549649,,0.549649,,0.230852,,40,,, +16454,1,0.397169,4,0,0,1,1,,3,2,E I 96,,1607802,1.998,2.396,0,,0.58,7,0.366617,,0.366617,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.39406,,0.366617,,0.39406,,0.374492,,0.366617,,0.374492,,0.474893,,0.366617,,0.474893,,0.366617,,0.366617,,0.366617,,,,,,,,0.39406,,0.374492,,0.474893,,0.366617,,0.366617,,0.189708,,0.183838,,0.213958,,0.181476,,0.098681,,60.473365,,63.633116,,50.179978,,65,,65,,,,,,,,,,,,30272,,0.366617,,0.366617,,0.366617,,0.366617,,0.181476,,65,,, +16766,1,0.242572,1,0,0,1,1,RON,3,2,E 6 Mile/W I 96,RAMP,1607606,0,0.243,0,,1.09,4,0.363858,,0.363858,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.365842,,0.363858,,0.365842,,0.364129,,0.363858,,0.364129,,0.364843,,0.363858,,0.364843,,0.363858,,0.363858,,0.363858,,,,,,,,0.365842,,0.364129,,0.364843,,0.363858,,0.363858,,0.153416,,0.152901,,0.153116,,0.15282,,0.081262,,39.782999,,39.970231,,39.891973,,40,,40,,,,,,,,,,,,5074,,0.363858,,0.363858,,0.363858,,0.363858,,0.15282,,40,,, +16945,-1,0.401537,0,4,0,1,1,,3,2,W I 96,,1607506,2.089,2.491,0,,0.58,7,,0.370649,,0.370649,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.422822,,0.370649,,0.422822,,0.374082,,0.370649,,0.374082,,0.395074,,0.370649,,0.395074,,0.370649,,0.370649,,0.370649,,,,,,,,0.422822,,0.374082,,0.395074,,0.370649,,0.370649,,0.199123,,0.184501,,0.190799,,0.183471,,0.099766,,56.979525,,64.403604,,60.981441,,65,,65,,,,,,,,,,,,30272,,0.370649,,0.370649,,0.370649,,0.370649,,0.183471,,65,, +17063,1,0.48639,1,0,0,1,1,ROF,3,2,W I 96/6 Mile,RAMP,1607607,0,0.486,0,,2.24,5,0.833812,,0.833812,,35,,14750,,3348,,7375,,4758,,5074,,5068,,1.364973,,0.833812,,1.364973,,1.117344,,0.833812,,1.117344,,1.429444,,0.833812,,1.429444,,0.833812,,0.833812,,0.833812,,,,,,,,1.364973,,1.117344,,1.429444,,0.833812,,0.833812,,0.497042,,0.422753,,0.516383,,0.337694,,0.178575,,21.3802,,26.118545,,20.415911,,35,,35,,,,,,,,,,,,5074,,0.833812,,0.833812,,0.833812,,0.833812,,0.337694,,35,,, +19071,1,0.348729,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.687,7.036,0,7.472765,5,5,0.523094,,0.523094,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.612285,,0.523094,,0.612285,,0.589248,,0.523094,,0.589248,,0.684447,,0.523094,,0.684447,,0.523094,,0.523094,,0.523094,,,,,,,,0.612285,,0.589248,,0.684447,,0.523094,,0.523094,,0.246457,,0.239546,,0.268105,,0.219699,,0.116824,,34.173184,,35.509203,,30.570292,,40,,40,,,,,,,,,,,,10320,,0.523094,,0.523094,,0.523094,,0.523094,,0.219699,,40,,, +22336,-1,0.357511,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.123,0.481,0,7.660953,5,5,,0.536267,,0.536267,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.665869,,0.536267,,0.665869,,0.640621,,0.536267,,0.640621,,0.836419,,0.536267,,0.836419,,0.536267,,0.536267,,0.536267,,,,,,,,0.665869,,0.640621,,0.836419,,0.536267,,0.536267,,0.264113,,0.256538,,0.315278,,0.225232,,0.119766,,32.214569,,33.484178,,25.645842,,40,,40,,,,,,,,,,,,10320,,0.536267,,0.536267,,0.536267,,0.536267,,0.225232,,40,, +24125,0,0.504653,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,8.538,9.042,0,10.813997,6,4.5,0.917551,0.917551,0.917551,0.917551,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.355191,1.112443,0.917551,0.917551,1.355191,1.112443,1.197592,1.139662,0.917551,0.917551,1.197592,1.139662,1.601004,1.518726,0.917551,0.917551,1.601004,1.518726,0.917551,0.917551,0.917551,0.917551,0.917551,0.917551,,,,,,,1.355191,1.112443,1.197592,1.139662,1.601004,1.518726,0.917551,0.917551,0.917551,0.917551,0.497395,0.424571,0.450115,0.432736,0.571139,0.546455,0.366103,0.366103,0.193145,0.193145,22.343114,27.218635,25.283402,26.568581,18.912625,19.937228,33,33,33,33,,,,,,,,,,,5418,5418,0.917551,0.917551,0.917551,0.917551,0.917551,0.917551,0.917551,0.917551,0.366103,0.366103,33,33,, +31719,0,0.355154,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.610449,0.15,4,2.130926,2.130926,2.130926,2.130926,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.130927,2.130926,2.130926,2.130926,2.130927,2.130926,2.130927,2.130926,2.130926,2.130926,2.130927,2.130926,2.130927,2.130926,2.130926,2.130926,2.130927,2.130926,2.130926,2.130926,2.130926,2.130926,2.130926,2.130926,,,,,,,2.130927,2.130926,2.130927,2.130926,2.130927,2.130926,2.130926,2.130926,2.130926,2.130926,0.703206,0.703206,0.703206,0.703206,0.703206,0.703206,0.703206,0.703206,0.358706,0.358706,9.999996,10,9.999996,10,9.999994,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,2.130926,2.130926,2.130926,2.130926,2.130926,2.130926,2.130926,2.130926,0.703206,0.703206,10,10,, +31720,0,0.551865,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.825672,0.15,4,3.311188,3.311188,3.311188,3.311188,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,,,,,,,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,1.092692,1.092692,1.092692,1.092692,1.092692,1.092692,1.092692,1.092692,0.557383,0.557383,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,3.311188,1.092692,1.092692,10,10,, +16076,-1,0.280647,0,4,0,1,1,,3,2,W I 96,,1607506,1.809,2.089,0,,0.58,7,,0.259059,,0.259059,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.311954,,0.259059,,0.311954,,0.262411,,0.259059,,0.262411,,0.283249,,0.259059,,0.283249,,0.259059,,0.259059,,0.259059,,,,,,,,0.311954,,0.262411,,0.283249,,0.259059,,0.259059,,0.144103,,0.12924,,0.135491,,0.128234,,0.06973,,53.978674,,64.16976,,59.448808,,65,,65,,,,,,,,,,,,30272,,0.259059,,0.259059,,0.259059,,0.259059,,0.128234,,65,, +16078,1,0.303915,4,0,0,1,1,,3,2,E I 96,,1607802,1.695,1.998,0,,0.58,7,0.280537,,0.280537,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.292914,,0.280537,,0.292914,,0.283732,,0.280537,,0.283732,,0.323235,,0.280537,,0.323235,,0.280537,,0.280537,,0.280537,,,,,,,,0.292914,,0.283732,,0.323235,,0.280537,,0.280537,,0.142579,,0.139824,,0.151675,,0.138866,,0.075511,,62.253544,,64.268001,,56.4138,,65,,65,,,,,,,,,,,,30272,,0.280537,,0.280537,,0.280537,,0.280537,,0.138866,,65,,, +16680,1,0.398882,1,0,0,1,1,ROF,3,2,E I 96/6 Mile,RAMP,1607801,0,0.399,0,,2.24,5,0.683797,,0.683797,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.933574,,0.683797,,0.933574,,0.784782,,0.683797,,0.784782,,1.020485,,0.683797,,1.020485,,0.683797,,0.683797,,0.683797,,,,,,,,0.933574,,0.784782,,1.020485,,0.683797,,0.683797,,0.351871,,0.307233,,0.377944,,0.276938,,0.146447,,25.635762,,30.496222,,23.452474,,35,,35,,,,,,,,,,,,5074,,0.683797,,0.683797,,0.683797,,0.683797,,0.276938,,35,,, +39846,1,0.159484,3,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.211,1.37,0,3.41751,3.7,5,0.212645,,0.212645,,45,,33000,,7491,,16500,,10646,,11352,,11339,,0.259763,,0.212645,,0.259763,,0.223191,,0.212645,,0.223191,,0.237936,,0.212645,,0.237936,,0.212645,,0.212645,,0.212645,,,,,,,,0.259763,,0.223191,,0.237936,,0.212645,,0.212645,,0.106636,,0.095664,,0.100088,,0.092501,,0.04944,,36.837495,,42.873721,,40.216851,,45,,45,,,,,,,,,,,,11352,,0.212645,,0.212645,,0.212645,,0.212645,,0.092501,,45,,, +18277,0,0.134293,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,6.42,6.554,0,2.877716,5,5,0.230217,0.230217,0.230217,0.230217,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.34399,0.343228,0.230217,0.230217,0.34399,0.343228,0.286235,0.309002,0.230217,0.230217,0.286235,0.309002,0.38963,0.487727,0.230217,0.230217,0.38963,0.487727,0.230217,0.230217,0.230217,0.230217,0.230217,0.230217,,,,,,,0.34399,0.343228,0.286235,0.309002,0.38963,0.487727,0.230217,0.230217,0.230217,0.230217,0.12737,0.127141,0.110043,0.116873,0.141062,0.170491,0.093238,0.093238,0.049305,0.049305,23.423926,23.475954,28.150339,26.076238,20.68015,16.520727,35,35,35,35,,,,,,,,,,,7568,7568,0.230217,0.230217,0.230217,0.230217,0.230217,0.230217,0.230217,0.230217,0.093238,0.093238,35,35,, +31833,0,0.39989,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.569063,0.15,4,2.399338,2.399338,2.399338,2.399338,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,,,,,,,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,0.791781,0.791781,0.791781,0.791781,0.791782,0.791781,0.791781,0.791781,0.403889,0.403889,10,10,9.999999,10,9.999998,10,10,10,10,10,,,,,,,,,,,34400,34400,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,2.399338,0.791781,0.791781,10,10,, +16089,1,0.23304,1,0,0,1,1,RON,3,2,W 6 Mile/E I 96,RAMP,1607804,0,0.233,0,,1.09,4,0.349561,,0.349561,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.353757,,0.349561,,0.353757,,0.353699,,0.349561,,0.353699,,0.371449,,0.349561,,0.371449,,0.349561,,0.349561,,0.349561,,,,,,,,0.353757,,0.353699,,0.371449,,0.349561,,0.349561,,0.148074,,0.148057,,0.153382,,0.146815,,0.078069,,39.52547,,39.532006,,37.642961,,40,,40,,,,,,,,,,,,5074,,0.349561,,0.349561,,0.349561,,0.349561,,0.146815,,40,,, +18495,0,0.057828,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,6.362,6.42,0,1.239173,5,5,0.099134,0.099134,0.099134,0.099134,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.148126,0.104979,0.099134,0.099134,0.148126,0.104979,0.123256,0.102499,0.099134,0.099134,0.123256,0.102499,0.167778,0.105089,0.099134,0.099134,0.167778,0.105089,0.099134,0.099134,0.099134,0.099134,0.099134,0.099134,,,,,,,0.148126,0.104979,0.123256,0.102499,0.167778,0.105089,0.099134,0.099134,0.099134,0.099134,0.054847,0.041903,0.047386,0.041159,0.060743,0.041936,0.040149,0.040149,0.021231,0.021231,23.423926,33.05115,28.150339,33.850847,20.68015,33.016782,35,35,35,35,,,,,,,,,,,7568,7568,0.099134,0.099134,0.099134,0.099134,0.099134,0.099134,0.099134,0.099134,0.040149,0.040149,35,35,, +18863,0,0.017867,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,6.345,6.362,0,0.38286,5,5,0.030629,0.030629,0.030629,0.030629,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.031569,0.043509,0.030629,0.030629,0.031569,0.043509,0.031045,0.036348,0.030629,0.030629,0.031045,0.036348,0.032101,0.045792,0.030629,0.030629,0.032101,0.045792,0.030629,0.030629,0.030629,0.030629,0.030629,0.030629,,,,,,,0.031569,0.043509,0.031045,0.036348,0.032101,0.045792,0.030629,0.030629,0.030629,0.030629,0.012687,0.016269,0.01253,0.01412,0.012846,0.016954,0.012405,0.012405,0.00656,0.00656,33.958131,24.638652,34.530686,29.492939,33.395123,23.410197,35,35,35,35,,,,,,,,,,,7568,7568,0.030629,0.030629,0.030629,0.030629,0.030629,0.030629,0.030629,0.030629,0.012405,0.012405,35,35,, +16758,1,0.015273,1,0,0,1,3,RSF,3,2,W I 96/N I 275/6 Mile,RAMP,1607607,0.486,0.502,0,,5,5,0.036656,,0.036656,,25,,10000,,2270,,5000,,3226,,3440,,3436,,0.040548,,0.036656,,0.040548,,0.037744,,0.036656,,0.037744,,0.037902,,0.036656,,0.037902,,0.036656,,0.036656,,0.036656,,,,,,,,0.040548,,0.037744,,0.037902,,0.036656,,0.036656,,0.014914,,0.014072,,0.01412,,0.013746,,0.007178,,22.599916,,24.279449,,24.178204,,25,,25,,,,,,,,,,,,3440,,0.036656,,0.036656,,0.036656,,0.036656,,0.013746,,25,,, +17762,1,0.04728,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.608,6.656,0,1.013138,5,5,0.07092,,0.07092,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.072326,,0.07092,,0.072326,,0.072131,,0.07092,,0.072131,,0.073883,,0.07092,,0.073883,,0.07092,,0.07092,,0.07092,,,,,,,,0.072326,,0.072131,,0.073883,,0.07092,,0.07092,,0.030208,,0.03015,,0.030675,,0.029786,,0.015839,,39.222408,,39.328348,,38.395752,,40,,40,,,,,,,,,,,,10320,,0.07092,,0.07092,,0.07092,,0.07092,,0.029786,,40,,, +22337,-1,0.030023,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.093,0.123,0,0.643349,5,5,,0.045034,,0.045034,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.052568,,0.045034,,0.052568,,0.055409,,0.045034,,0.055409,,0.078847,,0.045034,,0.078847,,0.045034,,0.045034,,0.045034,,,,,,,,0.052568,,0.055409,,0.078847,,0.045034,,0.045034,,0.021174,,0.022027,,0.029058,,0.018914,,0.010058,,34.267653,,32.510699,,22.846368,,40,,40,,,,,,,,,,,,10320,,0.045034,,0.045034,,0.045034,,0.045034,,0.018914,,40,, +17987,1,0.053828,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.554,6.608,0,1.153456,5,5,0.080742,,0.080742,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.089205,,0.080742,,0.089205,,0.084909,,0.080742,,0.084909,,0.092598,,0.080742,,0.092598,,0.080742,,0.080742,,0.080742,,,,,,,,0.089205,,0.084909,,0.092598,,0.080742,,0.080742,,0.03645,,0.035162,,0.037468,,0.033912,,0.018032,,36.205273,,38.037092,,34.878589,,40,,40,,,,,,,,,,,,10320,,0.080742,,0.080742,,0.080742,,0.080742,,0.033912,,40,,, +22340,-1,0.028179,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.065,0.093,0,0.603833,5,5,,0.042268,,0.042268,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.068966,,0.042268,,0.068966,,0.06872,,0.042268,,0.06872,,0.114716,,0.042268,,0.114716,,0.042268,,0.042268,,0.042268,,,,,,,,0.068966,,0.06872,,0.114716,,0.042268,,0.042268,,0.025762,,0.025688,,0.039487,,0.017753,,0.00944,,24.515309,,24.603268,,14.738428,,40,,40,,,,,,,,,,,,10320,,0.042268,,0.042268,,0.042268,,0.042268,,0.017753,,40,, +22341,-1,0.064991,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0,0.065,0,1.392654,5,5,,0.097486,,0.097486,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.107635,,0.097486,,0.107635,,0.104561,,0.097486,,0.104561,,0.120609,,0.097486,,0.120609,,0.097486,,0.097486,,0.097486,,,,,,,,0.107635,,0.104561,,0.120609,,0.097486,,0.097486,,0.043989,,0.043067,,0.047881,,0.040944,,0.021772,,36.228302,,37.293295,,32.331256,,40,,40,,,,,,,,,,,,10320,,0.097486,,0.097486,,0.097486,,0.097486,,0.040944,,40,, +17459,1,0.031874,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.656,6.687,0,0.683006,5,5,0.04781,,0.04781,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.060847,,0.04781,,0.060847,,0.058667,,0.04781,,0.058667,,0.076062,,0.04781,,0.076062,,0.04781,,0.04781,,0.04781,,,,,,,,0.060847,,0.058667,,0.076062,,0.04781,,0.04781,,0.023991,,0.023337,,0.028556,,0.02008,,0.010678,,31.430017,,32.597834,,25.142759,,40,,40,,,,,,,,,,,,10320,,0.04781,,0.04781,,0.04781,,0.04781,,0.02008,,40,,, +31835,0,0.151498,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.24638,0.15,4,0.908987,0.908987,0.908987,0.908987,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.908988,0.909012,0.908987,0.908987,0.908988,0.909012,0.909017,0.909027,0.908987,0.908987,0.909017,0.909027,0.909085,0.909029,0.908987,0.908987,0.909085,0.909029,0.908987,0.908987,0.908987,0.908987,0.908987,0.908987,,,,,,,0.908988,0.909012,0.909017,0.909027,0.909085,0.909029,0.908987,0.908987,0.908987,0.908987,0.299966,0.299973,0.299975,0.299978,0.299995,0.299978,0.299966,0.299966,0.153013,0.153013,9.999989,9.99972,9.999663,9.999552,9.998916,9.999527,10,10,10,10,,,,,,,,,,,34400,34400,0.908987,0.908987,0.908987,0.908987,0.908987,0.908987,0.908987,0.908987,0.299966,0.299966,10,10,, +24123,0,0.106693,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.061,9.168,0,2.286279,6,4.5,0.193987,0.193987,0.193987,0.193987,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.353459,0.211935,0.193987,0.193987,0.353459,0.211935,0.372094,0.390331,0.193987,0.193987,0.372094,0.390331,0.368925,0.719755,0.193987,0.193987,0.368925,0.719755,0.193987,0.193987,0.193987,0.193987,0.193987,0.193987,,,,,,,0.353459,0.211935,0.372094,0.390331,0.368925,0.719755,0.193987,0.193987,0.193987,0.193987,0.125242,0.082785,0.130833,0.136304,0.129882,0.235131,0.077401,0.077401,0.040834,0.040834,18.111242,30.205333,17.204202,16.400387,17.351977,8.894112,33,33,33,33,,,,,,,,,,,5418,5418,0.193987,0.193987,0.193987,0.193987,0.193987,0.193987,0.193987,0.193987,0.077401,0.077401,33,33,, +24124,0,0.018757,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.042,9.061,0,0.401935,6,4.5,0.034104,0.034104,0.034104,0.034104,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.166735,0.035387,0.034104,0.034104,0.166735,0.035387,0.156157,0.038929,0.034104,0.034104,0.156157,0.038929,0.184269,0.050018,0.034104,0.034104,0.184269,0.050018,0.034104,0.034104,0.034104,0.034104,0.034104,0.034104,,,,,,,0.166735,0.035387,0.156157,0.038929,0.184269,0.050018,0.034104,0.034104,0.034104,0.034104,0.053397,0.013992,0.050223,0.015055,0.058657,0.018382,0.013607,0.013607,0.007179,0.007179,6.749717,31.802678,7.206961,28.909195,6.107452,22.500293,33,33,33,33,,,,,,,,,,,5418,5418,0.034104,0.034104,0.034104,0.034104,0.034104,0.034104,0.034104,0.034104,0.013607,0.013607,33,33,, +16508,1,0.30502,4,0,0,1,1,,3,2,E I 96,,1607802,0.676,0.981,0,,0.58,7,0.281557,,0.281557,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.297465,,0.281557,,0.297465,,0.285884,,0.281557,,0.285884,,0.331247,,0.281557,,0.331247,,0.281557,,0.281557,,0.281557,,,,,,,,0.297465,,0.285884,,0.331247,,0.281557,,0.281557,,0.144143,,0.140669,,0.154278,,0.139371,,0.075786,,61.52401,,64.016224,,55.24945,,65,,65,,,,,,,,,,,,30272,,0.281557,,0.281557,,0.281557,,0.281557,,0.139371,,65,,, +16771,1,0.209043,1,0,0,1,1,RON,3,2,W 7 Mile/E I 96,RAMP,1607806,0,0.209,0,,1.09,4,0.313564,,0.313564,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.318908,,0.313564,,0.318908,,0.314463,,0.313564,,0.314463,,0.318887,,0.313564,,0.318887,,0.313564,,0.313564,,0.313564,,,,,,,,0.318908,,0.314463,,0.318887,,0.313564,,0.313564,,0.1333,,0.131967,,0.133294,,0.131697,,0.070029,,39.329825,,39.885651,,39.33242,,40,,40,,,,,,,,,,,,5074,,0.313564,,0.313564,,0.313564,,0.313564,,0.131697,,40,,, +16847,1,0.30462,1,0,0,1,1,RON,3,2,7 Mile/W I 96,RAMP,1607510,0,0.305,0,,1.09,4,0.45693,,0.45693,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.46859,,0.45693,,0.46859,,0.464476,,0.45693,,0.464476,,0.528828,,0.45693,,0.528828,,0.45693,,0.45693,,0.45693,,,,,,,,0.46859,,0.464476,,0.528828,,0.45693,,0.45693,,0.195409,,0.194174,,0.21348,,0.19191,,0.102048,,39.004637,,39.350112,,34.561695,,40,,40,,,,,,,,,,,,5074,,0.45693,,0.45693,,0.45693,,0.45693,,0.19191,,40,,, +16967,-1,0.188203,0,4,0,1,1,,3,2,W I 96,,1607506,0.812,1,0,,0.58,7,,0.173726,,0.173726,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.198889,,0.173726,,0.198889,,0.175864,,0.173726,,0.175864,,0.186896,,0.173726,,0.186896,,0.173726,,0.173726,,0.173726,,,,,,,,0.198889,,0.175864,,0.186896,,0.173726,,0.173726,,0.093543,,0.086636,,0.089945,,0.085994,,0.046761,,56.776174,,64.209764,,60.419644,,65,,65,,,,,,,,,,,,30272,,0.173726,,0.173726,,0.173726,,0.173726,,0.085994,,65,, +17077,1,0.394038,1,0,0,1,1,ROF,3,2,E I 96/7 Mile,RAMP,1607805,0,0.394,0,,2.24,5,0.675495,,0.675495,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.768279,,0.675495,,0.768279,,0.706231,,0.675495,,0.706231,,0.734543,,0.675495,,0.734543,,0.675495,,0.675495,,0.675495,,,,,,,,0.768279,,0.706231,,0.734543,,0.675495,,0.675495,,0.301411,,0.282796,,0.29129,,0.273575,,0.144668,,30.773063,,33.476732,,32.186415,,35,,35,,,,,,,,,,,,5074,,0.675495,,0.675495,,0.675495,,0.675495,,0.273575,,35,,, +17082,1,0.219827,1,0,0,1,1,ROF,3,2,W I 96/W 7 Mile,RAMP,1607601,0,0.22,0,,2.24,5,0.376847,,0.376847,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.376967,,0.376847,,0.376967,,0.377052,,0.376847,,0.377052,,0.377539,,0.376847,,0.377539,,0.376847,,0.376847,,0.376847,,,,,,,,0.376967,,0.377052,,0.377539,,0.376847,,0.376847,,0.152659,,0.152685,,0.152831,,0.152623,,0.080708,,34.988824,,34.980955,,34.935845,,35,,35,,,,,,,,,,,,5074,,0.376847,,0.376847,,0.376847,,0.376847,,0.152623,,35,,, +17684,0,0.172867,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,0.588,0.761,0,3.704303,5,5,0.296344,0.296344,0.296344,0.296344,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.406856,0.382179,0.296344,0.296344,0.406856,0.382179,0.349633,0.329408,0.296344,0.296344,0.349633,0.329408,0.466618,0.48139,0.296344,0.296344,0.466618,0.48139,0.296344,0.296344,0.296344,0.296344,0.296344,0.296344,,,,,,,0.406856,0.382179,0.349633,0.329408,0.466618,0.48139,0.296344,0.296344,0.296344,0.296344,0.153173,0.14577,0.136006,0.129939,0.171102,0.175533,0.120019,0.120019,0.063467,0.063467,25.49318,27.139242,29.665568,31.486905,22.228129,21.54603,35,35,35,35,,,,,,,,,,,7946,7946,0.296344,0.296344,0.296344,0.296344,0.296344,0.296344,0.296344,0.296344,0.120019,0.120019,35,35,, +24111,0,0.508236,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,10.052,10.56,0,10.890764,6,4.5,0.924065,0.924065,0.924065,0.924065,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,1.011931,0.982463,0.924065,0.924065,1.011931,0.982463,0.961761,0.964758,0.924065,0.924065,0.961761,0.964758,1.018677,1.073397,0.924065,0.924065,1.018677,1.073397,0.924065,0.924065,0.924065,0.924065,0.924065,0.924065,,,,,,,1.011931,0.982463,0.961761,0.964758,1.018677,1.073397,0.924065,0.924065,0.924065,0.924065,0.395062,0.386221,0.380011,0.38091,0.397086,0.413501,0.368702,0.368702,0.194516,0.194516,30.134615,31.038472,31.706568,31.608065,29.935033,28.409006,33,33,33,33,,,,,,,,,,,5418,5418,0.924065,0.924065,0.924065,0.924065,0.924065,0.924065,0.924065,0.924065,0.368702,0.368702,33,33,, +31827,0,0.503544,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.790227,0.15,4,3.021263,3.021263,3.021263,3.021263,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,,,,,,,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,0.997017,0.997017,0.997017,0.997017,0.997017,0.997017,0.997017,0.997017,0.508579,0.508579,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,3.021263,0.997017,0.997017,10,10,, +16073,1,0.257048,1,0,0,1,1,RON,3,2,E 7 Mile/E I 96,RAMP,1607807,0,0.257,0,,1.09,4,0.385571,,0.385571,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.386163,,0.385571,,0.386163,,0.386318,,0.385571,,0.386318,,0.388156,,0.385571,,0.388156,,0.385571,,0.385571,,0.385571,,,,,,,,0.386163,,0.386318,,0.388156,,0.385571,,0.385571,,0.162117,,0.162164,,0.162715,,0.16194,,0.086111,,39.93877,,39.922726,,39.733711,,40,,40,,,,,,,,,,,,5074,,0.385571,,0.385571,,0.385571,,0.385571,,0.16194,,40,,, +16082,-1,0.398301,0,4,0,1,1,,3,2,W I 96,,1607506,1,1.398,0,,0.58,7,,0.367663,,0.367663,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.435311,,0.367663,,0.435311,,0.374246,,0.367663,,0.374246,,0.407968,,0.367663,,0.407968,,0.367663,,0.367663,,0.367663,,,,,,,,0.435311,,0.374246,,0.407968,,0.367663,,0.367663,,0.202288,,0.183968,,0.194085,,0.181993,,0.098963,,54.898857,,63.856662,,58.578258,,65,,65,,,,,,,,,,,,30272,,0.367663,,0.367663,,0.367663,,0.367663,,0.181993,,65,, +16272,1,0.32164,4,0,0,1,1,,3,2,E I 96,,1607802,0.981,1.303,0,,0.58,7,0.296899,,0.296899,,65,,88000,,19976,,44000,,28389,,30272,,30237,,0.326145,,0.296899,,0.326145,,0.303931,,0.296899,,0.303931,,0.381133,,0.296899,,0.381133,,0.296899,,0.296899,,0.296899,,,,,,,,0.326145,,0.303931,,0.381133,,0.296899,,0.296899,,0.155739,,0.149075,,0.172235,,0.146965,,0.079915,,59.171235,,63.495939,,50.634329,,65,,65,,,,,,,,,,,,30272,,0.296899,,0.296899,,0.296899,,0.296899,,0.146965,,65,,, +16779,1,0.35248,1,0,0,1,1,ROF,3,2,W I 96/E 7 Mile,RAMP,1607603,0,0.352,0,,2.24,5,0.604251,,0.604251,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.639819,,0.604251,,0.639819,,0.607837,,0.604251,,0.607837,,0.624115,,0.604251,,0.624115,,0.604251,,0.604251,,0.604251,,,,,,,,0.639819,,0.607837,,0.624115,,0.604251,,0.604251,,0.255392,,0.245797,,0.250681,,0.244722,,0.12941,,33.054339,,34.793532,,33.886033,,35,,35,,,,,,,,,,,,5074,,0.604251,,0.604251,,0.604251,,0.604251,,0.244722,,35,,, +18526,0,0.153285,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.37,0.523,0,3.284682,5,5,0.262775,0.262775,0.262775,0.262775,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.28265,0.347011,0.262775,0.262775,0.28265,0.347011,0.283267,0.297058,0.262775,0.262775,0.283267,0.297058,0.350804,0.39379,0.262775,0.262775,0.350804,0.39379,0.262775,0.262775,0.262775,0.262775,0.262775,0.262775,,,,,,,0.28265,0.347011,0.283267,0.297058,0.350804,0.39379,0.262775,0.262775,0.262775,0.262775,0.112386,0.131695,0.112571,0.116709,0.132833,0.145728,0.106424,0.106424,0.056278,0.056278,32.538919,26.503779,32.467988,30.960625,26.217227,23.355358,35,35,35,35,,,,,,,,,,,7568,7568,0.262775,0.262775,0.262775,0.262775,0.262775,0.262775,0.262775,0.262775,0.106424,0.106424,35,35,, +18753,0,0.023742,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.346,0.37,0,0.508756,5,5,0.0407,0.0407,0.0407,0.0407,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.052139,0.053748,0.0407,0.0407,0.052139,0.053748,0.053243,0.046011,0.0407,0.0407,0.053243,0.046011,0.095829,0.060993,0.0407,0.0407,0.095829,0.060993,0.0407,0.0407,0.0407,0.0407,0.0407,0.0407,,,,,,,0.052139,0.053748,0.053243,0.046011,0.095829,0.060993,0.0407,0.0407,0.0407,0.0407,0.019915,0.020398,0.020247,0.018077,0.033022,0.022571,0.016484,0.016484,0.008717,0.008717,27.321283,26.503779,26.754864,30.960625,14.865214,23.355358,35,35,35,35,,,,,,,,,,,7568,7568,0.0407,0.0407,0.0407,0.0407,0.0407,0.0407,0.0407,0.0407,0.016484,0.016484,35,35,, +18291,0,0.040563,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.306,0.346,0,0.86921,5,5,0.069537,0.069537,0.069537,0.069537,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.08908,0.071122,0.069537,0.069537,0.08908,0.071122,0.090966,0.070907,0.069537,0.069537,0.090966,0.070907,0.163724,0.072828,0.069537,0.069537,0.163724,0.072828,0.069537,0.069537,0.069537,0.069537,0.069537,0.069537,,,,,,,0.08908,0.071122,0.090966,0.070907,0.163724,0.072828,0.069537,0.069537,0.069537,0.069537,0.034025,0.028638,0.034591,0.028573,0.056419,0.02915,0.028162,0.028162,0.014892,0.014892,27.321283,34.219964,26.754864,34.323718,14.865214,33.418092,35,35,35,35,,,,,,,,,,,7568,7568,0.069537,0.069537,0.069537,0.069537,0.069537,0.069537,0.069537,0.069537,0.028162,0.028162,35,35,, +18015,0,0.036778,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.551,0.588,0,0.788108,5,5,0.063049,0.063049,0.063049,0.063049,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.141026,0.069772,0.063049,0.063049,0.141026,0.069772,0.096834,0.064835,0.063049,0.063049,0.096834,0.064835,0.220693,0.070184,0.063049,0.063049,0.220693,0.070184,0.063049,0.063049,0.063049,0.063049,0.063049,0.063049,,,,,,,0.141026,0.069772,0.096834,0.064835,0.220693,0.070184,0.063049,0.063049,0.063049,0.063049,0.048928,0.027552,0.03567,0.026071,0.072828,0.027675,0.025535,0.025535,0.013503,0.013503,15.647498,31.627449,22.788518,34.035428,9.998967,31.441877,35,35,35,35,,,,,,,,,,,7568,7568,0.063049,0.063049,0.063049,0.063049,0.063049,0.063049,0.063049,0.063049,0.025535,0.025535,35,35,, +18195,0,0.027878,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.523,0.551,0,0.597389,5,5,0.047791,0.047791,0.047791,0.047791,35,35,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.106898,0.063111,0.047791,0.047791,0.106898,0.063111,0.073401,0.054026,0.047791,0.047791,0.073401,0.054026,0.167286,0.071619,0.047791,0.047791,0.167286,0.071619,0.047791,0.047791,0.047791,0.047791,0.047791,0.047791,,,,,,,0.106898,0.063111,0.073401,0.054026,0.167286,0.071619,0.047791,0.047791,0.047791,0.047791,0.037088,0.023951,0.027038,0.021226,0.055204,0.026504,0.019355,0.019355,0.010235,0.010235,15.647498,26.503779,22.788518,30.960625,9.998967,23.355358,35,35,35,35,,,,,,,,,,,7568,7568,0.047791,0.047791,0.047791,0.047791,0.047791,0.047791,0.047791,0.047791,0.019355,0.019355,35,35,, +17494,0,0.213384,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,0.761,0.974,0,4.572514,5,5,0.365801,0.365801,0.365801,0.365801,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.478043,0.46466,0.365801,0.365801,0.478043,0.46466,0.420312,0.399177,0.365801,0.365801,0.420312,0.399177,0.538042,0.522463,0.365801,0.365801,0.538042,0.522463,0.365801,0.365801,0.365801,0.365801,0.365801,0.365801,,,,,,,0.478043,0.46466,0.420312,0.399177,0.538042,0.522463,0.365801,0.365801,0.365801,0.365801,0.181822,0.177807,0.164503,0.158162,0.199822,0.195148,0.148149,0.148149,0.078342,0.078342,26.782198,27.553593,30.46079,32.073626,23.795596,24.505161,35,35,35,35,,,,,,,,,,,7946,7946,0.365801,0.365801,0.365801,0.365801,0.365801,0.365801,0.365801,0.365801,0.148149,0.148149,35,35,, +24120,0,0.236107,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.816,10.052,0,5.05943,6,4.5,0.429285,0.429285,0.429285,0.429285,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.436873,0.488272,0.429285,0.429285,0.436873,0.488272,0.440193,0.477055,0.429285,0.429285,0.440193,0.477055,0.508951,0.53255,0.429285,0.429285,0.508951,0.53255,0.429285,0.429285,0.429285,0.429285,0.429285,0.429285,,,,,,,0.436873,0.488272,0.440193,0.477055,0.508951,0.53255,0.429285,0.429285,0.429285,0.429285,0.173561,0.188981,0.174557,0.185616,0.195185,0.202264,0.171285,0.171285,0.090364,0.090364,32.42679,29.013358,32.182286,29.69551,27.834516,26.601077,33,33,33,33,,,,,,,,,,,5418,5418,0.429285,0.429285,0.429285,0.429285,0.429285,0.429285,0.429285,0.429285,0.171285,0.171285,33,33,, +31839,0,0.246789,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.288332,0.15,4,1.480733,1.480733,1.480733,1.480733,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,,,,,,,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,0.488642,0.488642,0.488642,0.488642,0.488642,0.488642,0.488642,0.488642,0.249257,0.249257,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,1.480733,0.488642,0.488642,10,10,, +31837,0,0.164278,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.520239,0.15,4,0.985667,0.985667,0.985667,0.985667,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,,,,,,,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.32527,0.32527,0.32527,0.32527,0.32527,0.32527,0.32527,0.32527,0.165921,0.165921,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.985667,0.32527,0.32527,10,10,, +24121,0,0.230009,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.586,9.816,0,4.928766,6,4.5,0.418198,0.418198,0.418198,0.418198,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.426871,0.482012,0.418198,0.418198,0.426871,0.482012,0.43077,0.47109,0.418198,0.418198,0.43077,0.47109,0.505173,0.531484,0.418198,0.418198,0.505173,0.531484,0.418198,0.418198,0.418198,0.418198,0.418198,0.418198,,,,,,,0.426871,0.482012,0.43077,0.47109,0.505173,0.531484,0.418198,0.418198,0.418198,0.418198,0.169463,0.186005,0.170633,0.182729,0.192954,0.200847,0.166861,0.166861,0.088031,0.088031,32.329555,28.631112,32.036926,29.29494,27.31843,25.966078,33,33,33,33,,,,,,,,,,,5418,5418,0.418198,0.418198,0.418198,0.418198,0.418198,0.418198,0.418198,0.418198,0.166861,0.166861,33,33,, +31828,0,0.190556,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.083335,0.15,4,1.143334,1.143334,1.143334,1.143334,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,,,,,,,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,0.3773,0.3773,0.3773,0.3773,0.3773,0.3773,0.3773,0.3773,0.192461,0.192461,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,1.143334,0.3773,0.3773,10,10,, +17119,0,0.461313,1,1,0,2,5,,3,2,Levan,Rd,1604605,2.694,3.155,0,9.885273,8,4.5,1.107151,1.107151,1.107151,1.107151,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.290766,1.242283,1.107151,1.107151,1.290766,1.242283,1.196739,1.203341,1.107151,1.107151,1.196739,1.203341,1.488046,1.468505,1.107151,1.107151,1.488046,1.468505,1.107151,1.107151,1.107151,1.107151,1.107151,1.107151,,,,,,,1.290766,1.242283,1.196739,1.203341,1.488046,1.468505,1.107151,1.107151,1.107151,1.107151,0.470266,0.455721,0.442058,0.444039,0.52945,0.523588,0.415181,0.415181,0.216817,0.216817,21.443672,22.280561,23.128485,23.001592,18.600751,18.848256,25,25,25,25,,,,,,,,,,,2408,2408,1.107151,1.107151,1.107151,1.107151,1.107151,1.107151,1.107151,1.107151,0.415181,0.415181,25,25,, +17988,0,0.363861,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.509,7.873,0,7.797026,5,5,0.623762,0.623762,0.623762,0.623762,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.633009,0.656258,0.623762,0.623762,0.633009,0.656258,0.628966,0.632107,0.623762,0.623762,0.628966,0.632107,0.680938,0.673787,0.623762,0.623762,0.680938,0.673787,0.623762,0.623762,0.623762,0.623762,0.623762,0.623762,,,,,,,0.633009,0.656258,0.628966,0.632107,0.680938,0.673787,0.623762,0.623762,0.623762,0.623762,0.255398,0.262372,0.254185,0.255127,0.269776,0.267631,0.252624,0.252624,0.133589,0.133589,34.488733,33.266902,34.710425,34.537924,32.061189,32.401439,35,35,35,35,,,,,,,,,,,7946,7946,0.623762,0.623762,0.623762,0.623762,0.623762,0.623762,0.623762,0.623762,0.252624,0.252624,35,35,, +31736,0,0.512205,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.975814,0.15,4,3.073228,3.073228,3.073228,3.073228,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,,,,,,,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,1.014165,1.014165,1.014165,1.014165,1.014165,1.014165,1.014165,1.014165,0.517327,0.517327,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,3.073228,1.014165,1.014165,10,10,, +31738,0,0.272282,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.834616,0.15,4,1.633693,1.633693,1.633693,1.633693,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,,,,,,,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,0.539119,0.539119,0.539119,0.539119,0.539119,0.539119,0.539119,0.539119,0.275005,0.275005,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,1.633693,0.539119,0.539119,10,10,, +31831,0,0.506721,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.858311,0.15,4,3.040327,3.040327,3.040327,3.040327,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,,,,,,,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,1.003308,1.003308,1.003308,1.003308,1.003308,1.003308,1.003308,1.003308,0.511788,0.511788,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,3.040327,1.003308,1.003308,10,10,, +31734,0,0.252544,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.41165,0.15,4,1.515262,1.515262,1.515262,1.515262,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,,,,,,,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,0.500036,0.500036,0.500036,0.500036,0.500036,0.500036,0.500036,0.500036,0.255069,0.255069,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,1.515262,0.500036,0.500036,10,10,, +17118,0,0.26981,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.205,3.475,0,5.78165,8,4.5,0.647545,0.647545,0.647545,0.647545,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.691993,0.940201,0.647545,0.647545,0.691993,0.940201,0.714365,0.721714,0.647545,0.647545,0.714365,0.721714,1.063357,0.814401,0.647545,0.647545,1.063357,0.814401,0.647545,0.647545,0.647545,0.647545,0.647545,0.647545,,,,,,,0.691993,0.940201,0.714365,0.721714,1.063357,0.814401,0.647545,0.647545,0.647545,0.647545,0.256164,0.330626,0.262875,0.26508,0.367573,0.292886,0.242829,0.242829,0.126811,0.126811,23.394194,17.218258,22.66154,22.430808,15.224061,19.877946,25,25,25,25,,,,,,,,,,,2408,2408,0.647545,0.647545,0.647545,0.647545,0.647545,0.647545,0.647545,0.647545,0.242829,0.242829,25,25,, +18171,0,0.191217,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.318,7.509,0,4.097512,5,5,0.327801,0.327801,0.327801,0.327801,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.333877,0.36906,0.327801,0.327801,0.333877,0.36906,0.334096,0.337344,0.327801,0.327801,0.334096,0.337344,0.382192,0.36312,0.327801,0.327801,0.382192,0.36312,0.327801,0.327801,0.327801,0.327801,0.327801,0.327801,,,,,,,0.333877,0.36906,0.334096,0.337344,0.382192,0.36312,0.327801,0.327801,0.327801,0.327801,0.134582,0.145137,0.134648,0.135622,0.149077,0.143355,0.132759,0.132759,0.070204,0.070204,34.363085,31.087153,34.340542,34.009855,30.01902,31.595721,35,35,35,35,,,,,,,,,,,7946,7946,0.327801,0.327801,0.327801,0.327801,0.327801,0.327801,0.327801,0.327801,0.132759,0.132759,35,35,, +18496,0,0.070048,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.248,7.318,0,1.501024,5,5,0.120082,0.120082,0.120082,0.120082,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.122308,0.135196,0.120082,0.120082,0.122308,0.135196,0.122388,0.123578,0.120082,0.120082,0.122388,0.123578,0.140007,0.13302,0.120082,0.120082,0.140007,0.13302,0.120082,0.120082,0.120082,0.120082,0.120082,0.120082,,,,,,,0.122308,0.135196,0.122388,0.123578,0.140007,0.13302,0.120082,0.120082,0.120082,0.120082,0.049301,0.053167,0.049325,0.049682,0.054611,0.052515,0.048633,0.048633,0.025718,0.025718,34.363085,31.087153,34.340542,34.009855,30.01902,31.595721,35,35,35,35,,,,,,,,,,,7946,7946,0.120082,0.120082,0.120082,0.120082,0.120082,0.120082,0.120082,0.120082,0.048633,0.048633,35,35,, +16830,0,0.232538,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.475,3.707,0,4.982952,8,4.5,0.558091,0.558091,0.558091,0.558091,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.596399,0.810318,0.558091,0.558091,0.596399,0.810318,0.61568,0.622013,0.558091,0.558091,0.61568,0.622013,0.916461,0.701897,0.558091,0.558091,0.916461,0.701897,0.558091,0.558091,0.558091,0.558091,0.558091,0.558091,,,,,,,0.596399,0.810318,0.61568,0.622013,0.916461,0.701897,0.558091,0.558091,0.558091,0.558091,0.220776,0.284952,0.226561,0.228461,0.316795,0.252426,0.209284,0.209284,0.109293,0.109293,23.394194,17.218258,22.66154,22.430808,15.224061,19.877946,25,25,25,25,,,,,,,,,,,2408,2408,0.558091,0.558091,0.558091,0.558091,0.558091,0.558091,0.558091,0.558091,0.209284,0.209284,25,25,, +18754,0,0.254071,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,1.477,1.731,0,5.444371,5,5,0.43555,0.43555,0.43555,0.43555,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.452987,0.468373,0.43555,0.43555,0.452987,0.468373,0.443253,0.446638,0.43555,0.43555,0.443253,0.446638,0.484034,0.48468,0.43555,0.43555,0.484034,0.48468,0.43555,0.43555,0.43555,0.43555,0.43555,0.43555,,,,,,,0.452987,0.468373,0.443253,0.446638,0.484034,0.48468,0.43555,0.43555,0.43555,0.43555,0.181629,0.186245,0.178709,0.179724,0.190943,0.191137,0.176398,0.176398,0.09328,0.09328,33.65273,32.547191,34.39173,34.131087,31.494179,31.452173,35,35,35,35,,,,,,,,,,,7946,7946,0.43555,0.43555,0.43555,0.43555,0.43555,0.43555,0.43555,0.43555,0.176398,0.176398,35,35,, +31822,0,0.254551,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.45466,0.15,4,1.527305,1.527305,1.527305,1.527305,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,,,,,,,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,0.504011,0.504011,0.504011,0.504011,0.504011,0.504011,0.504011,0.504011,0.257096,0.257096,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,1.527305,0.504011,0.504011,10,10,, +31830,0,0.496041,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.629458,0.15,4,2.976248,2.976248,2.976248,2.976248,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,,,,,,,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,0.982162,0.982162,0.982162,0.982162,0.982162,0.982162,0.982162,0.982162,0.501002,0.501002,9.999999,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,2.976248,0.982162,0.982162,10,10,, +16828,0,0.208074,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.943,4.151,0,4.458734,8,4.5,0.499378,0.499378,0.499378,0.499378,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.637095,0.508134,0.499378,0.499378,0.637095,0.508134,0.532595,0.527167,0.499378,0.499378,0.532595,0.527167,0.583981,0.680499,0.499378,0.499378,0.583981,0.680499,0.499378,0.499378,0.499378,0.499378,0.499378,0.499378,,,,,,,0.637095,0.508134,0.532595,0.527167,0.583981,0.680499,0.499378,0.499378,0.499378,0.499378,0.228582,0.189894,0.197232,0.195604,0.212648,0.241603,0.187267,0.187267,0.097795,0.097795,19.595909,24.569207,23.440806,23.682143,21.378178,18.346045,25,25,25,25,,,,,,,,,,,2408,2408,0.499378,0.499378,0.499378,0.499378,0.499378,0.499378,0.499378,0.499378,0.187267,0.187267,25,25,, +330,0,0.148792,1,1,0,2,4,,3,3,Halsted,,634206,0.661,0.809,0,3.188396,6,4.5,0.270531,0.270531,0.270531,0.270531,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.400778,0.289136,0.270531,0.270531,0.400778,0.289136,0.331496,0.294254,0.270531,0.270531,0.331496,0.294254,0.420064,0.4247,0.270531,0.270531,0.420064,0.4247,0.270531,0.270531,0.270531,0.270531,0.270531,0.270531,,,,,,,0.400778,0.289136,0.331496,0.294254,0.420064,0.4247,0.270531,0.270531,0.270531,0.270531,0.147016,0.113523,0.126231,0.115059,0.152802,0.154192,0.107942,0.107942,0.056947,0.056947,22.275427,30.876454,26.93096,30.33949,21.25275,21.020754,33,33,33,33,,,,,,,,,,,2580,2580,0.270531,0.270531,0.270531,0.270531,0.270531,0.270531,0.270531,0.270531,0.107942,0.107942,33,33,, +376,0,0.44221,1,1,0,2,4,,3,3,9 Mile,Rd,633603,1.743,2.185,0,9.475937,6,4.5,0.804019,0.804019,0.804019,0.804019,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.624895,0.901892,0.804019,0.804019,1.624895,0.901892,1.140826,0.98829,0.804019,0.804019,1.140826,0.98829,1.483555,1.607601,0.804019,0.804019,1.483555,1.607601,0.804019,0.804019,0.804019,0.804019,0.804019,0.804019,,,,,,,1.624895,0.901892,1.140826,0.98829,1.483555,1.607601,0.804019,0.804019,0.804019,0.804019,0.567066,0.350165,0.421846,0.376085,0.524664,0.561878,0.320804,0.320804,0.169246,0.169246,16.328822,29.41885,23.257377,26.847012,17.884488,16.50448,33,33,33,33,,,,,,,,,,,2580,2580,0.804019,0.804019,0.804019,0.804019,0.804019,0.804019,0.804019,0.804019,0.320804,0.320804,33,33,, +2029,-1,0.40603,0,1,0,2,5,,3,3,Freedom,Rd,633606,0,0.406,0,8.70064,8,4.5,,0.974472,,0.974472,,25,,7000,,1589,,3500,,2258,,2408,,2405,,0.990137,,0.974472,,0.990137,,0.981617,,0.974472,,0.981617,,1.020888,,0.974472,,1.020888,,0.974472,,0.974472,,0.974472,,,,,,,,0.990137,,0.981617,,1.020888,,0.974472,,0.974472,,0.370126,,0.36757,,0.379352,,0.365427,,0.190834,,24.604467,,24.818029,,23.863335,,25,,25,,,,,,,,,,,,2408,,0.974472,,0.974472,,0.974472,,0.974472,,0.365427,,25,, +20924,0,0.506423,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.773,3.28,0,10.851924,5,5,0.868154,0.868154,0.868154,0.868154,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.877206,0.984068,0.868154,0.868154,0.877206,0.984068,0.874377,0.893915,0.868154,0.868154,0.874377,0.893915,0.980713,1.007749,0.868154,0.868154,0.980713,1.007749,0.868154,0.868154,0.868154,0.868154,0.868154,0.868154,,,,,,,0.877206,0.984068,0.874377,0.893915,0.980713,1.007749,0.868154,0.868154,0.868154,0.868154,0.354318,0.386376,0.353469,0.359331,0.38537,0.393481,0.351602,0.351602,0.18593,0.18593,34.638844,30.877334,34.750887,33.991347,30.982949,30.151743,35,35,35,35,,,,,,,,,,,7946,7946,0.868154,0.868154,0.868154,0.868154,0.868154,0.868154,0.868154,0.868154,0.351602,0.351602,35,35,, +26863,0,0.583271,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.498671,0.15,4,3.499628,3.499628,3.499628,3.499628,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,,,,,,,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,1.154877,1.154877,1.154877,1.154877,1.154877,1.154877,1.154877,1.154877,0.589104,0.589104,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,3.499628,1.154877,1.154877,10,10,, +26890,0,0.511838,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.96796,0.15,4,3.071029,3.071029,3.071029,3.071029,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.07103,3.071029,3.071029,3.071029,3.07103,3.071029,3.071029,3.071029,3.071029,3.071029,3.071029,3.071029,3.071029,3.07103,3.071029,3.071029,3.071029,3.07103,3.071029,3.071029,3.071029,3.071029,3.071029,3.071029,,,,,,,3.07103,3.071029,3.071029,3.071029,3.071029,3.07103,3.071029,3.071029,3.071029,3.071029,1.01344,1.01344,1.01344,1.01344,1.01344,1.01344,1.01344,1.01344,0.516957,0.516957,9.999997,10,9.999999,9.999999,9.999999,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,3.071029,3.071029,3.071029,3.071029,3.071029,3.071029,3.071029,3.071029,1.01344,1.01344,10,10,, +26897,0,0.501811,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.753088,0.15,4,3.010865,3.010865,3.010865,3.010865,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,,,,,,,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,0.993585,0.993585,0.993585,0.993585,0.993585,0.993585,0.993585,0.993585,0.506829,0.506829,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,3.010865,0.993585,0.993585,10,10,, +26903,0,0.761399,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,16.31569,0.15,4,4.568393,4.568393,4.568393,4.568393,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,,,,,,,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,1.50757,1.50757,1.50757,1.50757,1.50757,1.50757,1.50757,1.50757,0.769013,0.769013,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,4.568393,1.50757,1.50757,10,10,, +794,0,0.660697,1,1,0,2,4,,3,3,Halsted,,634206,0,0.661,0,14.157794,6,4.5,1.201267,1.201267,1.201267,1.201267,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.716543,1.271646,1.201267,1.201267,1.716543,1.271646,1.446715,1.296522,1.201267,1.201267,1.446715,1.296522,1.792015,1.801577,1.201267,1.201267,1.792015,1.801577,1.201267,1.201267,1.201267,1.201267,1.201267,1.201267,,,,,,,1.716543,1.271646,1.446715,1.296522,1.792015,1.801577,1.201267,1.201267,1.201267,1.201267,0.633888,0.500419,0.55294,0.507882,0.65653,0.659399,0.479306,0.479306,0.252867,0.252867,23.093983,31.173637,27.401275,30.575518,22.121363,22.003958,33,33,33,33,,,,,,,,,,,2580,2580,1.201267,1.201267,1.201267,1.201267,1.201267,1.201267,1.201267,1.201267,0.479306,0.479306,33,33,, +20925,0,0.488884,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.285,2.773,0,10.476076,5,5,0.838086,0.838086,0.838086,0.838086,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.841251,0.861974,0.838086,0.838086,0.841251,0.861974,0.840023,0.8441,0.838086,0.838086,0.840023,0.8441,0.885958,0.884223,0.838086,0.838086,0.885958,0.884223,0.838086,0.838086,0.838086,0.838086,0.838086,0.838086,,,,,,,0.841251,0.861974,0.840023,0.8441,0.885958,0.884223,0.838086,0.838086,0.838086,0.838086,0.340374,0.346591,0.340006,0.341229,0.353786,0.353266,0.339425,0.339425,0.17949,0.17949,34.868324,34.030029,34.919302,34.750619,33.108821,33.173754,35,35,35,35,,,,,,,,,,,7946,7946,0.838086,0.838086,0.838086,0.838086,0.838086,0.838086,0.838086,0.838086,0.339425,0.339425,35,35,, +26865,0,0.50086,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.732711,0.15,4,3.005159,3.005159,3.005159,3.005159,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.005159,3.00516,3.005159,3.005159,3.005159,3.00516,3.005159,3.005159,3.005159,3.005159,3.005159,3.005159,3.00516,3.00516,3.005159,3.005159,3.00516,3.00516,3.005159,3.005159,3.005159,3.005159,3.005159,3.005159,,,,,,,3.005159,3.00516,3.005159,3.005159,3.00516,3.00516,3.005159,3.005159,3.005159,3.005159,0.991703,0.991703,0.991703,0.991703,0.991703,0.991703,0.991703,0.991703,0.505868,0.505868,9.999999,9.999997,9.999999,9.999999,9.999996,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,3.005159,3.005159,3.005159,3.005159,3.005159,3.005159,3.005159,3.005159,0.991703,0.991703,10,10,, +20926,0,0.02379,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.261,2.285,0,0.50979,5,5,0.040783,0.040783,0.040783,0.040783,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.041503,0.042671,0.040783,0.040783,0.041503,0.042671,0.041091,0.041485,0.040783,0.040783,0.041091,0.041485,0.044888,0.046179,0.040783,0.040783,0.044888,0.046179,0.040783,0.040783,0.040783,0.040783,0.040783,0.040783,,,,,,,0.041503,0.042671,0.041091,0.041485,0.044888,0.046179,0.040783,0.040783,0.040783,0.040783,0.016733,0.017084,0.01661,0.016728,0.017749,0.018136,0.016517,0.016517,0.008734,0.008734,34.393255,33.4513,34.7376,34.408326,31.7994,30.910636,35,35,35,35,,,,,,,,,,,7946,7946,0.040783,0.040783,0.040783,0.040783,0.040783,0.040783,0.040783,0.040783,0.016517,0.016517,35,35,, +281,0,0.629278,1,1,0,2,4,,3,3,9 Mile,Rd,633603,2.185,2.814,0,13.484529,6,4.5,1.144142,1.144142,1.144142,1.144142,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.289644,1.158661,1.144142,1.144142,1.289644,1.158661,1.16127,1.154466,1.144142,1.144142,1.16127,1.154466,1.222488,1.322324,1.144142,1.144142,1.222488,1.322324,1.144142,1.144142,1.144142,1.144142,1.144142,1.144142,,,,,,,1.289644,1.158661,1.16127,1.154466,1.222488,1.322324,1.144142,1.144142,1.144142,1.144142,0.500163,0.460868,0.461651,0.45961,0.480016,0.509967,0.456513,0.456513,0.240842,0.240842,29.276827,32.586467,32.51327,32.704877,30.885118,28.553284,33,33,33,33,,,,,,,,,,,2580,2580,1.144142,1.144142,1.144142,1.144142,1.144142,1.144142,1.144142,1.144142,0.456513,0.456513,33,33,, +1966,0,0.427198,1,1,0,2,4,,3,3,Halsted,,634206,1.005,1.432,0,9.154254,6,4.5,0.776725,0.776725,0.776725,0.776725,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.146998,0.793235,0.776725,0.776725,1.146998,0.793235,0.974486,0.829491,0.776725,0.776725,0.974486,0.829491,1.168927,1.039761,0.776725,0.776725,1.168927,1.039761,0.776725,0.776725,0.776725,0.776725,0.776725,0.776725,,,,,,,1.146998,0.793235,0.974486,0.829491,1.168927,1.039761,0.776725,0.776725,0.776725,0.776725,0.420995,0.314866,0.369242,0.325743,0.427574,0.388824,0.309913,0.309913,0.163501,0.163501,22.346943,32.313143,26.303006,30.90077,21.927723,24.651723,33,33,33,33,,,,,,,,,,,2580,2580,0.776725,0.776725,0.776725,0.776725,0.776725,0.776725,0.776725,0.776725,0.309913,0.309913,33,33,, +24873,0,0.494393,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.594134,0.15,4,2.966358,2.966358,2.966358,2.966358,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.966358,2.96636,2.966358,2.966358,2.966358,2.96636,2.966359,2.966358,2.966358,2.966358,2.966359,2.966358,2.966362,2.966358,2.966358,2.966358,2.966362,2.966358,2.966358,2.966358,2.966358,2.966358,2.966358,2.966358,,,,,,,2.966358,2.96636,2.966359,2.966358,2.966362,2.966358,2.966358,2.966358,2.966358,2.966358,0.978898,0.978899,0.978898,0.978898,0.978899,0.978898,0.978898,0.978898,0.499337,0.499337,10,9.999993,9.999996,9.999997,9.999986,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,2.966358,2.966358,2.966358,2.966358,2.966358,2.966358,2.966358,2.966358,0.978898,0.978898,10,10,, +27233,0,0.519026,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.121993,0.15,4,3.114158,3.114158,3.114158,3.114158,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.114158,3.114159,3.114158,3.114158,3.114158,3.114159,3.114158,3.114158,3.114158,3.114158,3.114158,3.114158,3.114159,3.114158,3.114158,3.114158,3.114159,3.114158,3.114158,3.114158,3.114158,3.114158,3.114158,3.114158,,,,,,,3.114158,3.114159,3.114158,3.114158,3.114159,3.114158,3.114158,3.114158,3.114158,3.114158,1.027672,1.027672,1.027672,1.027672,1.027672,1.027672,1.027672,1.027672,0.524217,0.524217,10,9.999997,9.999999,9.999999,9.999997,10,10,10,10,10,,,,,,,,,,,34400,34400,3.114158,3.114158,3.114158,3.114158,3.114158,3.114158,3.114158,3.114158,1.027672,1.027672,10,10,, +416,0,0.195327,1,1,0,2,4,,3,3,Halsted,,634206,0.809,1.005,0,4.185577,6,4.5,0.35514,0.35514,0.35514,0.35514,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.601821,0.397629,0.35514,0.35514,0.601821,0.397629,0.47288,0.408506,0.35514,0.35514,0.47288,0.408506,0.651639,0.65282,0.35514,0.35514,0.651639,0.65282,0.35514,0.35514,0.35514,0.35514,0.35514,0.35514,,,,,,,0.601821,0.397629,0.47288,0.408506,0.651639,0.65282,0.35514,0.35514,0.35514,0.35514,0.215705,0.154448,0.177023,0.157711,0.23065,0.231005,0.141701,0.141701,0.074757,0.074757,19.473581,29.473753,24.783475,28.688996,17.984836,17.95229,33,33,33,33,,,,,,,,,,,2580,2580,0.35514,0.35514,0.35514,0.35514,0.35514,0.35514,0.35514,0.35514,0.141701,0.141701,33,33,, +882,1,0.121498,1,0,0,1,2,RON,3,3,Grand River/E M 5,RAMP,639203,0.366,0.488,0,,1.09,4,0.182247,,0.182247,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.184237,,0.182247,,0.184237,,0.188305,,0.182247,,0.188305,,0.198472,,0.182247,,0.198472,,0.182247,,0.182247,,0.182247,,,,,,,,0.184237,,0.188305,,0.198472,,0.182247,,0.182247,,0.077141,,0.078361,,0.081411,,0.076544,,0.040702,,39.568018,,38.713209,,36.72997,,40,,40,,,,,,,,,,,,5074,,0.182247,,0.182247,,0.182247,,0.182247,,0.076544,,40,,, +988,0,0.27328,1,1,0,2,4,,3,3,Halsted,,634206,1.473,1.746,0,5.855995,6,4.5,0.496872,0.496872,0.496872,0.496872,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.55055,0.550978,0.496872,0.496872,0.55055,0.550978,0.722977,0.529866,0.496872,0.496872,0.722977,0.529866,0.94114,0.52614,0.496872,0.496872,0.94114,0.52614,0.496872,0.496872,0.496872,0.496872,0.496872,0.496872,,,,,,,0.55055,0.550978,0.722977,0.529866,0.94114,0.52614,0.496872,0.496872,0.496872,0.496872,0.214355,0.214484,0.266083,0.20815,0.331532,0.207032,0.198252,0.198252,0.104592,0.104592,29.78258,29.759416,22.679552,30.945146,17.422261,31.164325,33,33,33,33,,,,,,,,,,,2580,2580,0.496872,0.496872,0.496872,0.496872,0.496872,0.496872,0.496872,0.496872,0.198252,0.198252,33,33,, +2675,1,0.151279,1,0,0,1,2,ROF,3,3,W M 5/Grand River,RAMP,657109,0,0.151,0,,2.24,5,0.259335,,0.259335,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.280774,,0.259335,,0.280774,,0.264349,,0.259335,,0.264349,,0.279117,,0.259335,,0.279117,,0.259335,,0.259335,,0.259335,,,,,,,,0.280774,,0.264349,,0.279117,,0.259335,,0.259335,,0.111462,,0.106535,,0.110965,,0.105031,,0.055541,,32.327573,,34.336224,,32.519411,,35,,35,,,,,,,,,,,,5074,,0.259335,,0.259335,,0.259335,,0.259335,,0.105031,,35,,, +1451,0,0.041572,1,1,0,2,4,,3,3,Halsted,,634206,1.432,1.473,0,0.89082,6,4.5,0.075585,0.075585,0.075585,0.075585,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.151178,0.079345,0.075585,0.075585,0.151178,0.079345,0.109398,0.085842,0.075585,0.075585,0.109398,0.085842,0.146009,0.140068,0.075585,0.075585,0.146009,0.140068,0.075585,0.075585,0.075585,0.075585,0.075585,0.075585,,,,,,,0.151178,0.079345,0.109398,0.085842,0.146009,0.140068,0.075585,0.075585,0.075585,0.075585,0.052836,0.031286,0.040302,0.033235,0.051285,0.049503,0.030158,0.030158,0.015911,0.015911,16.499023,31.436213,22.800101,29.056829,17.083212,17.807687,33,33,33,33,,,,,,,,,,,2580,2580,0.075585,0.075585,0.075585,0.075585,0.075585,0.075585,0.075585,0.075585,0.030158,0.030158,33,33,, +20923,0,0.225744,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,3.28,3.505,0,4.837379,5,5,0.38699,0.38699,0.38699,0.38699,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.39499,0.410568,0.38699,0.38699,0.39499,0.410568,0.388789,0.393383,0.38699,0.38699,0.388789,0.393383,0.417438,0.435373,0.38699,0.38699,0.417438,0.435373,0.38699,0.38699,0.38699,0.38699,0.38699,0.38699,,,,,,,0.39499,0.410568,0.388789,0.393383,0.417438,0.435373,0.38699,0.38699,0.38699,0.38699,0.159131,0.163805,0.157271,0.158649,0.165865,0.171246,0.156731,0.156731,0.08288,0.08288,34.291116,32.990027,34.838076,34.431276,32.4471,31.110493,35,35,35,35,,,,,,,,,,,7946,7946,0.38699,0.38699,0.38699,0.38699,0.38699,0.38699,0.38699,0.38699,0.156731,0.156731,35,35,, +26891,0,0.56132,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.028277,0.15,4,3.367918,3.367918,3.367918,3.367918,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.367923,3.367918,3.367918,3.367918,3.367923,3.367918,3.367918,3.367918,3.367918,3.367918,3.367918,3.367918,3.367921,3.367922,3.367918,3.367918,3.367921,3.367922,3.367918,3.367918,3.367918,3.367918,3.367918,3.367918,,,,,,,3.367923,3.367918,3.367918,3.367918,3.367921,3.367922,3.367918,3.367918,3.367918,3.367918,1.111414,1.111413,1.111413,1.111413,1.111414,1.111414,1.111413,1.111413,0.566933,0.566933,9.999984,9.999999,9.999999,9.999999,9.99999,9.999986,10,10,10,10,,,,,,,,,,,34400,34400,3.367918,3.367918,3.367918,3.367918,3.367918,3.367918,3.367918,3.367918,1.111413,1.111413,10,10,, +839,0,0.200973,1,1,0,2,4,,3,3,9 Mile,Rd,633603,1.542,1.743,0,4.306571,6,4.5,0.365406,0.365406,0.365406,0.365406,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.644287,0.422604,0.365406,0.365406,0.644287,0.422604,0.506685,0.445708,0.365406,0.365406,0.506685,0.445708,0.608978,0.667884,0.365406,0.365406,0.608978,0.667884,0.365406,0.365406,0.365406,0.365406,0.365406,0.365406,,,,,,,0.644287,0.422604,0.506685,0.445708,0.608978,0.667884,0.365406,0.365406,0.365406,0.365406,0.229461,0.162956,0.188181,0.169888,0.218868,0.23654,0.145797,0.145797,0.076918,0.076918,18.715873,28.533554,23.798593,27.054487,19.801053,18.054632,33,33,33,33,,,,,,,,,,,2580,2580,0.365406,0.365406,0.365406,0.365406,0.365406,0.365406,0.365406,0.365406,0.145797,0.145797,33,33,, +1341,0,0.056404,1,1,0,2,4,,3,3,Drake,Rd,633804,0.296,0.352,0,1.208658,6,4.5,0.102553,0.102553,0.102553,0.102553,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.187573,0.133927,0.102553,0.102553,0.187573,0.133927,0.133892,0.120289,0.102553,0.102553,0.133892,0.120289,0.258296,0.195146,0.102553,0.102553,0.258296,0.195146,0.102553,0.102553,0.102553,0.102553,0.102553,0.102553,,,,,,,0.187573,0.133927,0.133892,0.120289,0.258296,0.195146,0.102553,0.102553,0.102553,0.102553,0.066425,0.050331,0.05032,0.046239,0.087642,0.068696,0.040919,0.040919,0.021587,0.021587,18.042256,25.269313,25.275825,28.134312,13.102171,17.342141,33,33,33,33,,,,,,,,,,,2580,2580,0.102553,0.102553,0.102553,0.102553,0.102553,0.102553,0.102553,0.102553,0.040919,0.040919,33,33,, +1518,0,0.789312,1,1,0,2,5,,3,3,Freedom,Rd,633606,0.406,1.195,0,16.913825,8,4.5,1.894348,1.894348,1.894348,1.894348,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.894348,1.924801,1.894348,1.894348,1.894348,1.924801,1.894348,1.908238,1.894348,1.894348,1.894348,1.908238,1.894348,1.98458,1.894348,1.894348,1.894348,1.98458,1.894348,1.894348,1.894348,1.894348,1.894348,1.894348,,,,,,,1.894348,1.924801,1.894348,1.908238,1.894348,1.98458,1.894348,1.894348,1.894348,1.894348,0.710381,0.719517,0.710381,0.714548,0.710381,0.73745,0.710381,0.710381,0.370977,0.370977,25,24.604467,25,24.818029,25,23.863335,25,25,25,25,,,,,,,,,,,2408,2408,1.894348,1.894348,1.894348,1.894348,1.894348,1.894348,1.894348,1.894348,0.710381,0.710381,25,25,, +26298,0,0.559376,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.986621,0.15,4,3.356254,3.356254,3.356254,3.356254,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,,,,,,,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,1.107564,1.107564,1.107564,1.107564,1.107564,1.107564,1.107564,1.107564,0.564969,0.564969,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,3.356254,1.107564,1.107564,10,10,, +26889,0,0.522243,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.190912,0.15,4,3.133455,3.133455,3.133455,3.133455,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,,,,,,,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,1.03404,1.03404,1.03404,1.03404,1.03404,1.03404,1.03404,1.03404,0.527465,0.527465,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,3.133455,1.03404,1.03404,10,10,, +26892,0,0.263545,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.647402,0.15,4,1.581273,1.581273,1.581273,1.581273,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,,,,,,,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,0.52182,0.52182,0.52182,0.52182,0.52182,0.52182,0.52182,0.52182,0.266181,0.266181,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,1.581273,0.52182,0.52182,10,10,, +287,0,0.251739,1,1,0,2,4,,3,3,Drake,Rd,633804,0,0.252,0,5.394408,6,4.5,0.457707,0.457707,0.457707,0.457707,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.49808,0.493375,0.457707,0.457707,0.49808,0.493375,0.490745,0.497824,0.457707,0.457707,0.490745,0.497824,0.556969,0.523387,0.457707,0.457707,0.556969,0.523387,0.457707,0.457707,0.457707,0.457707,0.457707,0.457707,,,,,,,0.49808,0.493375,0.490745,0.497824,0.556969,0.523387,0.457707,0.457707,0.457707,0.457707,0.194737,0.193325,0.192537,0.19466,0.212404,0.202329,0.182625,0.182625,0.096347,0.096347,30.32514,30.614337,30.778367,30.340704,27.118812,28.858825,33,33,33,33,,,,,,,,,,,2580,2580,0.457707,0.457707,0.457707,0.457707,0.457707,0.457707,0.457707,0.457707,0.182625,0.182625,33,33,, +1298,0,0.352249,1,1,0,2,4,,3,3,9 Mile,Rd,633603,1.19,1.542,0,7.548184,6,4.5,0.640452,0.640452,0.640452,0.640452,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.044041,1.043776,0.640452,0.640452,1.044041,1.043776,0.977125,0.875542,0.640452,0.640452,0.977125,0.875542,1.376705,1.053769,0.640452,0.640452,1.376705,1.053769,0.640452,0.640452,0.640452,0.640452,0.640452,0.640452,,,,,,,1.044041,1.043776,0.977125,0.875542,1.376705,1.053769,0.640452,0.640452,0.640452,0.640452,0.376617,0.376538,0.356542,0.326067,0.476416,0.379535,0.25554,0.25554,0.134815,0.134815,20.24338,20.248512,21.629692,24.13924,15.351808,20.056496,33,33,33,33,,,,,,,,,,,2580,2580,0.640452,0.640452,0.640452,0.640452,0.640452,0.640452,0.640452,0.640452,0.25554,0.25554,33,33,, +1848,0,0.044149,1,1,0,2,4,,3,3,Drake,Rd,633804,0.252,0.296,0,0.94604,6,4.5,0.08027,0.08027,0.08027,0.08027,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.092708,0.08979,0.08027,0.08027,0.092708,0.08979,0.088461,0.090603,0.08027,0.08027,0.088461,0.090603,0.105575,0.10706,0.08027,0.08027,0.105575,0.10706,0.08027,0.08027,0.08027,0.08027,0.08027,0.08027,,,,,,,0.092708,0.08979,0.088461,0.090603,0.105575,0.10706,0.08027,0.08027,0.08027,0.08027,0.035759,0.034884,0.034485,0.035128,0.039619,0.040065,0.032028,0.032028,0.016897,0.016897,28.572751,29.501088,29.944483,29.236544,25.09036,24.742326,33,33,33,33,,,,,,,,,,,2580,2580,0.08027,0.08027,0.08027,0.08027,0.08027,0.08027,0.08027,0.08027,0.032028,0.032028,33,33,, +877,0,0.467035,1,1,0,2,4,,3,3,Drake,Rd,633804,0.352,0.819,0,10.007883,6,4.5,0.849154,0.849154,0.849154,0.849154,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.971472,1.326768,0.849154,0.849154,0.971472,1.326768,0.919717,0.998436,0.849154,0.849154,0.919717,0.998436,1.325419,1.352115,0.849154,0.849154,1.325419,1.352115,0.849154,0.849154,0.849154,0.849154,0.849154,0.849154,,,,,,,0.971472,1.326768,0.919717,0.998436,1.325419,1.352115,0.849154,0.849154,0.849154,0.849154,0.375508,0.482097,0.359981,0.383597,0.481692,0.489701,0.338812,0.338812,0.178747,0.178747,28.844966,21.120553,30.468154,28.065956,21.142055,20.724624,33,33,33,33,,,,,,,,,,,2580,2580,0.849154,0.849154,0.849154,0.849154,0.849154,0.849154,0.849154,0.849154,0.338812,0.338812,33,33,, +24876,0,0.239768,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.137888,0.15,4,1.438609,1.438609,1.438609,1.438609,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.43861,1.438609,1.438609,1.438609,1.43861,1.438609,1.438609,1.438609,1.438609,1.438609,1.438609,1.438609,1.438609,1.43861,1.438609,1.438609,1.438609,1.43861,1.438609,1.438609,1.438609,1.438609,1.438609,1.438609,,,,,,,1.43861,1.438609,1.438609,1.438609,1.438609,1.43861,1.438609,1.438609,1.438609,1.438609,0.474741,0.474741,0.474741,0.474741,0.474741,0.474741,0.474741,0.474741,0.242166,0.242166,9.999989,9.999999,9.999999,9.999999,9.999997,9.999991,10,10,10,10,,,,,,,,,,,34400,34400,1.438609,1.438609,1.438609,1.438609,1.438609,1.438609,1.438609,1.438609,0.474741,0.474741,10,10,, +17917,0,0.326737,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,2.649,2.975,0,7.001497,5,5,0.56012,0.56012,0.56012,0.56012,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.586083,0.59499,0.56012,0.56012,0.586083,0.59499,0.568187,0.569834,0.56012,0.56012,0.568187,0.569834,0.604985,0.623292,0.56012,0.56012,0.604985,0.623292,0.56012,0.56012,0.56012,0.56012,0.56012,0.56012,,,,,,,0.586083,0.59499,0.568187,0.569834,0.604985,0.623292,0.56012,0.56012,0.56012,0.56012,0.234637,0.23731,0.229269,0.229763,0.240308,0.2458,0.226849,0.226849,0.119959,0.119959,33.449524,32.94876,34.503088,34.403323,32.404435,31.452677,35,35,35,35,,,,,,,,,,,7946,7946,0.56012,0.56012,0.56012,0.56012,0.56012,0.56012,0.56012,0.56012,0.226849,0.226849,35,35,, +18856,0,0.34328,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,8.698,9.041,0,7.356007,5,5,0.588481,0.588481,0.588481,0.588481,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.597077,0.615136,0.588481,0.588481,0.597077,0.615136,0.592752,0.594482,0.588481,0.588481,0.592752,0.594482,0.636277,0.627107,0.588481,0.588481,0.636277,0.627107,0.588481,0.588481,0.588481,0.588481,0.588481,0.588481,,,,,,,0.597077,0.615136,0.592752,0.594482,0.636277,0.627107,0.588481,0.588481,0.588481,0.588481,0.240913,0.246331,0.239616,0.240135,0.252674,0.249923,0.238335,0.238335,0.126033,0.126033,34.496109,33.483345,34.747798,34.646685,32.370838,32.84418,35,35,35,35,,,,,,,,,,,7946,7946,0.588481,0.588481,0.588481,0.588481,0.588481,0.588481,0.588481,0.588481,0.238335,0.238335,35,35,, +19133,0,0.500551,2,2,1,2,3,,3,2,Farmington,Rd,1690602,4.259,4.759,0,10.72609,5,5,0.858087,0.858087,0.858087,0.858087,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.88813,0.887062,0.858087,0.858087,0.88813,0.887062,0.867221,0.87041,0.858087,0.858087,0.867221,0.87041,0.916206,0.944999,0.858087,0.858087,0.916206,0.944999,0.858087,0.858087,0.858087,0.858087,0.858087,0.858087,,,,,,,0.88813,0.887062,0.867221,0.87041,0.916206,0.944999,0.858087,0.858087,0.858087,0.858087,0.356538,0.356218,0.350265,0.351222,0.364961,0.373599,0.347525,0.347525,0.183774,0.183774,33.816061,33.856774,34.631388,34.504507,32.779803,31.78104,35,35,35,35,,,,,,,,,,,7946,7946,0.858087,0.858087,0.858087,0.858087,0.858087,0.858087,0.858087,0.858087,0.347525,0.347525,35,35,, +30385,0,0.479037,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.26508,0.15,4,2.874222,2.874222,2.874222,2.874222,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.874223,2.874223,2.874222,2.874222,2.874223,2.874223,2.874223,2.874223,2.874222,2.874222,2.874223,2.874223,2.874223,2.874223,2.874222,2.874222,2.874223,2.874223,2.874222,2.874222,2.874222,2.874222,2.874222,2.874222,,,,,,,2.874223,2.874223,2.874223,2.874223,2.874223,2.874223,2.874222,2.874222,2.874222,2.874222,0.948494,0.948493,0.948493,0.948493,0.948494,0.948494,0.948493,0.948493,0.483827,0.483827,9.999998,10,10,10,9.999999,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,2.874222,2.874222,2.874222,2.874222,2.874222,2.874222,2.874222,2.874222,0.948493,0.948493,10,10,, +31725,0,0.254523,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.454068,0.15,4,1.527139,1.527139,1.527139,1.527139,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,1.52714,1.527139,1.527139,1.527139,1.52714,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,,,,,,,1.527139,1.527139,1.527139,1.527139,1.527139,1.52714,1.527139,1.527139,1.527139,1.527139,0.503956,0.503956,0.503956,0.503956,0.503956,0.503956,0.503956,0.503956,0.257068,0.257068,9.999999,9.999999,9.999999,9.999998,9.999997,9.999994,10,10,10,10,,,,,,,,,,,34400,34400,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,1.527139,0.503956,0.503956,10,10,, +31840,0,0.497169,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.653619,0.15,4,2.983013,2.983013,2.983013,2.983013,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,,,,,,,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,0.984394,0.984394,0.984394,0.984394,0.984394,0.984394,0.984394,0.984394,0.502141,0.502141,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,2.983013,0.984394,0.984394,10,10,, +31841,0,0.525564,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.262081,0.15,4,3.153383,3.153383,3.153383,3.153383,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.153383,3.153384,3.153383,3.153383,3.153383,3.153384,3.153383,3.153383,3.153383,3.153383,3.153383,3.153383,3.153385,3.153383,3.153383,3.153383,3.153385,3.153383,3.153383,3.153383,3.153383,3.153383,3.153383,3.153383,,,,,,,3.153383,3.153384,3.153383,3.153383,3.153385,3.153383,3.153383,3.153383,3.153383,3.153383,1.040616,1.040617,1.040616,1.040616,1.040617,1.040617,1.040616,1.040616,0.530819,0.530819,9.999999,9.999996,9.999999,10,9.999994,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,3.153383,3.153383,3.153383,3.153383,3.153383,3.153383,3.153383,3.153383,1.040616,1.040616,10,10,, +32014,0,0.500182,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.71819,0.15,4,3.001093,3.001093,3.001093,3.001093,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,,,,,,,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,0.990361,0.990361,0.990361,0.990361,0.990361,0.990361,0.990361,0.990361,0.505184,0.505184,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,3.001093,0.990361,0.990361,10,10,, +31739,0,0.501524,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.746944,0.15,4,3.009144,3.009144,3.009144,3.009144,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,,,,,,,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,0.993018,0.993018,0.993018,0.993018,0.993018,0.993018,0.993018,0.993018,0.506539,0.506539,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,3.009144,0.993018,0.993018,10,10,, +17446,0,0.259508,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,8.438,8.698,0,5.560892,5,5,0.444871,0.444871,0.444871,0.444871,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.452222,0.456173,0.444871,0.444871,0.452222,0.456173,0.447019,0.448423,0.444871,0.444871,0.447019,0.448423,0.467366,0.474171,0.444871,0.444871,0.467366,0.474171,0.444871,0.444871,0.444871,0.444871,0.444871,0.444871,,,,,,,0.452222,0.456173,0.447019,0.448423,0.467366,0.474171,0.444871,0.444871,0.444871,0.444871,0.182378,0.183563,0.180817,0.181238,0.186921,0.188963,0.180173,0.180173,0.095277,0.095277,34.431103,34.132876,34.831861,34.722778,33.315451,32.837291,35,35,35,35,,,,,,,,,,,7946,7946,0.444871,0.444871,0.444871,0.444871,0.444871,0.444871,0.444871,0.444871,0.180173,0.180173,35,35,, +17541,0,0.589541,1,1,0,2,5,,3,2,Gill,Rd,1700705,0.435,1.025,0,12.633017,8,4.5,1.414898,1.414898,1.414898,1.414898,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.417382,1.418666,1.414898,1.414898,1.417382,1.418666,1.416666,1.416984,1.414898,1.414898,1.416666,1.416984,1.425882,1.422117,1.414898,1.414898,1.425882,1.422117,1.414898,1.414898,1.414898,1.414898,1.414898,1.414898,,,,,,,1.417382,1.418666,1.416666,1.416984,1.425882,1.422117,1.414898,1.414898,1.414898,1.414898,0.531332,0.531717,0.531117,0.531213,0.533882,0.532752,0.530587,0.530587,0.277084,0.277084,24.956178,24.933597,24.968797,24.963196,24.807424,24.87309,25,25,25,25,,,,,,,,,,,2408,2408,1.414898,1.414898,1.414898,1.414898,1.414898,1.414898,1.414898,1.414898,0.530587,0.530587,25,25,, +31826,0,0.502886,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.776137,0.15,4,3.017318,3.017318,3.017318,3.017318,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,,,,,,,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,0.995715,0.995715,0.995715,0.995715,0.995715,0.995715,0.995715,0.995715,0.507915,0.507915,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,3.017318,0.995715,0.995715,10,10,, +18196,0,0.175802,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,2.473,2.649,0,3.767196,5,5,0.301376,0.301376,0.301376,0.301376,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.312211,0.311583,0.301376,0.301376,0.312211,0.311583,0.30397,0.305058,0.301376,0.301376,0.30397,0.305058,0.317213,0.327316,0.301376,0.301376,0.317213,0.327316,0.301376,0.301376,0.301376,0.301376,0.301376,0.301376,,,,,,,0.312211,0.311583,0.30397,0.305058,0.317213,0.327316,0.301376,0.301376,0.301376,0.301376,0.125308,0.125119,0.122836,0.123162,0.126808,0.129839,0.122057,0.122057,0.064545,0.064545,33.785299,33.853405,34.701259,34.577542,33.252547,32.226228,35,35,35,35,,,,,,,,,,,7946,7946,0.301376,0.301376,0.301376,0.301376,0.301376,0.301376,0.301376,0.301376,0.122057,0.122057,35,35,, +29725,0,0.527928,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.312736,0.15,4,3.167566,3.167566,3.167566,3.167566,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.167566,3.167567,3.167566,3.167566,3.167566,3.167567,3.167566,3.167566,3.167566,3.167566,3.167566,3.167566,3.167567,3.167567,3.167566,3.167566,3.167567,3.167567,3.167566,3.167566,3.167566,3.167566,3.167566,3.167566,,,,,,,3.167566,3.167567,3.167566,3.167566,3.167567,3.167567,3.167566,3.167566,3.167566,3.167566,1.045297,1.045297,1.045297,1.045297,1.045297,1.045297,1.045297,1.045297,0.533207,0.533207,9.999999,9.999998,9.999999,10,9.999998,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,3.167566,3.167566,3.167566,3.167566,3.167566,3.167566,3.167566,3.167566,1.045297,1.045297,10,10,, +31772,0,0.266516,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.711062,0.15,4,1.599097,1.599097,1.599097,1.599097,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,,,,,,,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,0.527702,0.527702,0.527702,0.527702,0.527702,0.527702,0.527702,0.527702,0.269181,0.269181,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,1.599097,0.527702,0.527702,10,10,, +16541,0,0.353993,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,1.639,1.993,0,7.585558,8,4.5,0.849582,0.849582,0.849582,0.849582,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.896285,0.866422,0.849582,0.849582,0.896285,0.866422,0.867776,0.863879,0.849582,0.849582,0.867776,0.863879,0.917147,0.927096,0.849582,0.849582,0.917147,0.927096,0.849582,0.849582,0.849582,0.849582,0.849582,0.849582,,,,,,,0.896285,0.866422,0.867776,0.863879,0.917147,0.927096,0.849582,0.849582,0.849582,0.849582,0.332604,0.323645,0.324051,0.322882,0.338863,0.341847,0.318593,0.318593,0.166377,0.166377,23.697343,24.514107,24.47586,24.586273,23.158301,22.909779,25,25,25,25,,,,,,,,,,,2408,2408,0.849582,0.849582,0.849582,0.849582,0.849582,0.849582,0.849582,0.849582,0.318593,0.318593,25,25,, +17628,0,0.509855,2,2,1,2,3,,3,2,Farmington,Rd,1690602,3.749,4.259,0,10.925468,5,5,0.874037,0.874037,0.874037,0.874037,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.959493,0.936729,0.874037,0.874037,0.959493,0.936729,0.901372,0.912189,0.874037,0.874037,0.901372,0.912189,0.990174,1.058724,0.874037,0.874037,0.990174,1.058724,0.874037,0.874037,0.874037,0.874037,0.874037,0.874037,,,,,,,0.959493,0.936729,0.901372,0.912189,0.990174,1.058724,0.874037,0.874037,0.874037,0.874037,0.379622,0.372793,0.362186,0.365431,0.388826,0.409391,0.353985,0.353985,0.18719,0.18719,31.882777,32.657602,33.938588,33.536147,30.894887,28.894516,35,35,35,35,,,,,,,,,,,7946,7946,0.874037,0.874037,0.874037,0.874037,0.874037,0.874037,0.874037,0.874037,0.353985,0.353985,35,35,, +18388,0,0.501287,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,9.041,9.542,0,10.741863,5,5,0.859349,0.859349,0.859349,0.859349,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.871262,0.886208,0.859349,0.859349,0.871262,0.886208,0.86515,0.868586,0.859349,0.859349,0.86515,0.868586,0.905804,0.902087,0.859349,0.859349,0.905804,0.902087,0.859349,0.859349,0.859349,0.859349,0.859349,0.859349,,,,,,,0.871262,0.886208,0.86515,0.868586,0.905804,0.902087,0.859349,0.859349,0.859349,0.859349,0.35161,0.356094,0.349777,0.350807,0.361973,0.360858,0.348036,0.348036,0.184044,0.184044,34.521443,33.939221,34.765307,34.627799,33.20498,33.341817,35,35,35,35,,,,,,,,,,,7946,7946,0.859349,0.859349,0.859349,0.859349,0.859349,0.859349,0.859349,0.859349,0.348036,0.348036,35,35,, +31345,0,0.497998,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.671392,0.15,4,2.98799,2.98799,2.98799,2.98799,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,,,,,,,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,0.986037,0.986037,0.986037,0.986037,0.986037,0.986037,0.986037,0.986037,0.502978,0.502978,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,2.98799,0.986037,0.986037,10,10,, +33929,0,0.204412,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.380248,0.15,4,1.22647,1.22647,1.22647,1.22647,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,,,,,,,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,0.404735,0.404735,0.404735,0.404735,0.404735,0.404735,0.404735,0.404735,0.206456,0.206456,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,1.22647,0.404735,0.404735,10,10,, +17685,0,0.373798,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,2.975,3.349,0,8.009958,5,5,0.640797,0.640797,0.640797,0.640797,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.668287,0.675626,0.640797,0.640797,0.668287,0.675626,0.652489,0.655959,0.640797,0.640797,0.652489,0.655959,0.719946,0.712732,0.640797,0.640797,0.719946,0.712732,0.640797,0.640797,0.640797,0.640797,0.640797,0.640797,,,,,,,0.668287,0.675626,0.652489,0.655959,0.719946,0.712732,0.640797,0.640797,0.640797,0.640797,0.26777,0.269971,0.26303,0.264071,0.283267,0.281103,0.259523,0.259523,0.137237,0.137237,33.560248,33.195707,34.372814,34.190988,31.152193,31.467501,35,35,35,35,,,,,,,,,,,7946,7946,0.640797,0.640797,0.640797,0.640797,0.640797,0.640797,0.640797,0.640797,0.259523,0.259523,35,35,, +18566,0,0.539594,2,2,1,2,3,,3,2,Farmington,Rd,1690602,5.26,5.799,0,11.562718,5,5,0.925017,0.925017,0.925017,0.925017,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.968196,0.969556,0.925017,0.925017,0.968196,0.969556,0.939855,0.942999,0.925017,0.925017,0.939855,0.942999,0.989918,1.071715,0.925017,0.925017,0.989918,1.071715,0.925017,0.925017,0.925017,0.925017,0.925017,0.925017,,,,,,,0.968196,0.969556,0.939855,0.942999,0.989918,1.071715,0.925017,0.925017,0.925017,0.925017,0.387586,0.387994,0.379083,0.380026,0.394102,0.418641,0.374632,0.374632,0.198108,0.198108,33.439111,33.392195,34.447459,34.332608,32.705331,30.20916,35,35,35,35,,,,,,,,,,,7946,7946,0.925017,0.925017,0.925017,0.925017,0.925017,0.925017,0.925017,0.925017,0.374632,0.374632,35,35,, +31336,0,0.50123,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.740634,0.15,4,3.007378,3.007378,3.007378,3.007378,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,,,,,,,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,0.992435,0.992435,0.992435,0.992435,0.992435,0.992435,0.992435,0.992435,0.506242,0.506242,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,3.007378,0.992435,0.992435,10,10,, +31337,0,0.51413,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.017076,0.15,4,3.084781,3.084781,3.084781,3.084781,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.084781,3.084781,3.084781,3.084781,3.084781,3.084781,3.084781,3.084781,3.084781,3.084781,3.084781,3.084781,3.084782,3.084782,3.084781,3.084781,3.084782,3.084782,3.084781,3.084781,3.084781,3.084781,3.084781,3.084781,,,,,,,3.084781,3.084781,3.084781,3.084781,3.084782,3.084782,3.084781,3.084781,3.084781,3.084781,1.017978,1.017978,1.017978,1.017978,1.017978,1.017978,1.017978,1.017978,0.519272,0.519272,10,10,10,10,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,3.084781,3.084781,3.084781,3.084781,3.084781,3.084781,3.084781,3.084781,1.017978,1.017978,10,10,, +31845,0,0.501833,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.753561,0.15,4,3.010997,3.010997,3.010997,3.010997,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,,,,,,,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,0.993629,0.993629,0.993629,0.993629,0.993629,0.993629,0.993629,0.993629,0.506851,0.506851,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,3.010997,0.993629,0.993629,10,10,, +18937,0,0.500702,2,2,1,2,3,,3,2,Farmington,Rd,1690602,4.759,5.26,0,10.729323,5,5,0.858346,0.858346,0.858346,0.858346,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.888397,0.887329,0.858346,0.858346,0.888397,0.887329,0.867482,0.870672,0.858346,0.858346,0.867482,0.870672,0.916482,0.945284,0.858346,0.858346,0.916482,0.945284,0.858346,0.858346,0.858346,0.858346,0.858346,0.858346,,,,,,,0.888397,0.887329,0.867482,0.870672,0.916482,0.945284,0.858346,0.858346,0.858346,0.858346,0.356646,0.356325,0.350371,0.351328,0.365071,0.373711,0.34763,0.34763,0.183829,0.183829,33.816061,33.856774,34.631388,34.504507,32.779803,31.78104,35,35,35,35,,,,,,,,,,,7946,7946,0.858346,0.858346,0.858346,0.858346,0.858346,0.858346,0.858346,0.858346,0.34763,0.34763,35,35,, +32015,0,0.517252,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.083978,0.15,4,3.103514,3.103514,3.103514,3.103514,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,,,,,,,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,1.02416,1.02416,1.02416,1.02416,1.02416,1.02416,1.02416,1.02416,0.522425,0.522425,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,3.103514,1.02416,1.02416,10,10,, +573,0,0.326151,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.24,0.566,0,6.988957,6,4.5,0.593002,0.593002,0.593002,0.593002,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.685076,0.630595,0.593002,0.593002,0.685076,0.630595,0.675458,0.604632,0.593002,0.593002,0.675458,0.604632,1.047683,0.599115,0.593002,0.593002,1.047683,0.599115,0.593002,0.593002,0.593002,0.593002,0.593002,0.593002,,,,,,,0.685076,0.630595,0.675458,0.604632,1.047683,0.599115,0.593002,0.593002,0.593002,0.593002,0.26423,0.247886,0.261345,0.240097,0.373012,0.238442,0.236608,0.236608,0.124827,0.124827,28.564848,31.03271,28.971558,32.365277,18.678438,32.663317,33,33,33,33,,,,,,,,,,,2580,2580,0.593002,0.593002,0.593002,0.593002,0.593002,0.593002,0.593002,0.593002,0.236608,0.236608,33,33,, +1210,0,0.347037,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.877,2.224,0,7.436499,8,4.5,0.832888,0.832888,0.832888,0.832888,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.866846,0.853441,0.832888,0.832888,0.866846,0.853441,0.841788,0.858755,0.832888,0.832888,0.841788,0.858755,0.883282,1.03566,0.832888,0.832888,0.883282,1.03566,0.832888,0.832888,0.832888,0.832888,0.832888,0.832888,,,,,,,0.866846,0.853441,0.841788,0.858755,0.883282,1.03566,0.832888,0.832888,0.832888,0.832888,0.32252,0.318499,0.315003,0.320093,0.327451,0.373165,0.312333,0.312333,0.163107,0.163107,24.020645,24.397946,24.735688,24.246944,23.573666,20.105239,25,25,25,25,,,,,,,,,,,2408,2408,0.832888,0.832888,0.832888,0.832888,0.832888,0.832888,0.832888,0.832888,0.312333,0.312333,25,25,, +1289,1,0.172765,1,0,0,1,2,ROF,3,3,E M 5/9 Mile,RAMP,634201,0,0.173,0,,2.24,5,0.296168,,0.296168,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.345161,,0.296168,,0.345161,,0.328224,,0.296168,,0.328224,,0.472129,,0.296168,,0.472129,,0.296168,,0.296168,,0.296168,,,,,,,,0.345161,,0.328224,,0.472129,,0.296168,,0.296168,,0.134646,,0.129565,,0.172736,,0.119948,,0.063429,,30.032049,,31.581775,,21.955613,,35,,35,,,,,,,,,,,,5074,,0.296168,,0.296168,,0.296168,,0.296168,,0.119948,,35,,, +1393,0,0.312883,2,2,1,2,4,,3,3,Farmington,Rd,632903,0.691,1.004,0,6.704644,6,4.5,0.568879,0.568879,0.568879,0.568879,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.748748,0.871268,0.568879,0.568879,0.748748,0.871268,0.644019,0.807559,0.568879,0.568879,0.644019,0.807559,0.708386,1.390252,0.568879,0.568879,0.708386,1.390252,0.568879,0.568879,0.568879,0.568879,0.568879,0.568879,,,,,,,0.748748,0.871268,0.644019,0.807559,0.708386,1.390252,0.568879,0.568879,0.568879,0.568879,0.280943,0.317699,0.249525,0.298587,0.268835,0.473395,0.226983,0.226983,0.119749,0.119749,25.072535,21.546765,29.149777,23.246611,26.501075,13.503311,33,33,33,33,,,,,,,,,,,5418,5418,0.568879,0.568879,0.568879,0.568879,0.568879,0.568879,0.568879,0.568879,0.226983,0.226983,33,33,, +1730,0,0.341858,1,1,0,2,5,,3,3,Gill,Rd,634202,0.665,1.006,0,7.325522,8,4.5,0.820458,0.820458,0.820458,0.820458,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.859394,0.883465,0.820458,0.820458,0.859394,0.883465,0.824146,0.827902,0.820458,0.820458,0.824146,0.827902,0.995085,1.162328,0.820458,0.820458,0.995085,1.162328,0.820458,0.820458,0.820458,0.820458,0.820458,0.820458,,,,,,,0.859394,0.883465,0.824146,0.827902,0.995085,1.162328,0.820458,0.820458,0.820458,0.820458,0.319353,0.326574,0.308778,0.309905,0.36006,0.410233,0.307672,0.307672,0.160673,0.160673,23.867358,23.217054,24.888151,24.775239,20.612765,17.64688,25,25,25,25,,,,,,,,,,,2408,2408,0.820458,0.820458,0.820458,0.820458,0.820458,0.820458,0.820458,0.820458,0.307672,0.307672,25,25,, +2729,1,0.458791,2,0,0,1,2,,3,3,E M 5,,657303,16.033,16.492,0,,0.58,7,0.4235,,0.4235,,65,,44000,,9988,,22000,,14194,,15136,,15118,,0.424454,,0.4235,,0.424454,,0.42354,,0.4235,,0.42354,,0.42433,,0.4235,,0.42433,,0.4235,,0.4235,,0.4235,,,,,,,,0.424454,,0.42354,,0.42433,,0.4235,,0.4235,,0.209919,,0.209644,,0.209881,,0.209632,,0.113992,,64.853887,,64.993866,,64.872776,,65,,65,,,,,,,,,,,,15136,,0.4235,,0.4235,,0.4235,,0.4235,,0.209632,,65,,, +19777,0,0.20478,1,1,1,2,4,,3,3,Grand River,,4104142,16.425,16.63,0,4.388153,6,4.5,0.372328,0.372328,0.372328,0.372328,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.537552,0.406359,0.372328,0.372328,0.537552,0.406359,0.401769,0.413484,0.372328,0.372328,0.401769,0.413484,0.454271,0.537664,0.372328,0.372328,0.454271,0.537664,0.372328,0.372328,0.372328,0.372328,0.372328,0.372328,,,,,,,0.537552,0.406359,0.401769,0.413484,0.454271,0.537664,0.372328,0.372328,0.372328,0.372328,0.198126,0.158768,0.157391,0.160906,0.173142,0.19816,0.148559,0.148559,0.078375,0.078375,22.857007,30.236412,30.581832,29.715356,27.047351,22.852227,33,33,33,33,,,,,,,,,,,2838,2838,0.372328,0.372328,0.372328,0.372328,0.372328,0.372328,0.372328,0.372328,0.148559,0.148559,33,33,, +20920,0,0.377071,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,4.385,4.762,0,8.080082,5,5,0.646407,0.646407,0.646407,0.646407,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.660395,0.663027,0.646407,0.646407,0.660395,0.663027,0.647666,0.648443,0.646407,0.646407,0.647666,0.648443,0.673173,0.680388,0.646407,0.646407,0.673173,0.680388,0.646407,0.646407,0.646407,0.646407,0.646407,0.646407,,,,,,,0.660395,0.663027,0.647666,0.648443,0.673173,0.680388,0.646407,0.646407,0.646407,0.646407,0.265991,0.266781,0.262172,0.262406,0.269824,0.271989,0.261795,0.261795,0.138439,0.138439,34.258618,34.122626,34.931964,34.890071,33.608367,33.251959,35,35,35,35,,,,,,,,,,,7946,7946,0.646407,0.646407,0.646407,0.646407,0.646407,0.646407,0.646407,0.646407,0.261795,0.261795,35,35,, +26202,0,0.332809,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.131614,0.15,4,1.996852,1.996852,1.996852,1.996852,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,,,,,,,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,0.658961,0.658961,0.658961,0.658961,0.658961,0.658961,0.658961,0.658961,0.336137,0.336137,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,1.996852,0.658961,0.658961,10,10,, +26900,0,0.275375,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.900892,0.15,4,1.65225,1.65225,1.65225,1.65225,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,,,,,,,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,0.545242,0.545242,0.545242,0.545242,0.545242,0.545242,0.545242,0.545242,0.278129,0.278129,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,1.65225,0.545242,0.545242,10,10,, +26902,0,0.519521,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.132598,0.15,4,3.117127,3.117127,3.117127,3.117127,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,,,,,,,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,1.028652,1.028652,1.028652,1.028652,1.028652,1.028652,1.028652,1.028652,0.524716,0.524716,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,3.117127,1.028652,1.028652,10,10,, +27727,0,0.251696,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.393493,0.15,4,1.510178,1.510178,1.510178,1.510178,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,,,,,,,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,0.498359,0.498359,0.498359,0.498359,0.498359,0.498359,0.498359,0.498359,0.254213,0.254213,10,10,10,10,10,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,1.510178,0.498359,0.498359,10,10,, +833,0,0.502517,1,1,0,2,5,,3,3,Gill,Rd,634202,0,0.502,0,10.76823,8,4.5,1.206042,1.206042,1.206042,1.206042,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.264296,1.353437,1.206042,1.206042,1.264296,1.353437,1.209747,1.226777,1.206042,1.206042,1.209747,1.226777,1.407535,1.662441,1.206042,1.206042,1.407535,1.662441,1.206042,1.206042,1.206042,1.206042,1.206042,1.206042,,,,,,,1.264296,1.353437,1.209747,1.226777,1.407535,1.662441,1.206042,1.206042,1.206042,1.206042,0.469742,0.496484,0.453377,0.458486,0.512714,0.589185,0.452266,0.452266,0.236183,0.236183,23.84808,22.277397,24.923431,24.577438,21.42117,18.136608,25,25,25,25,,,,,,,,,,,2408,2408,1.206042,1.206042,1.206042,1.206042,1.206042,1.206042,1.206042,1.206042,0.452266,0.452266,25,25,, +30242,0,0.518855,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.118318,0.15,4,3.113129,3.113129,3.113129,3.113129,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,,,,,,,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,1.027333,1.027333,1.027333,1.027333,1.027333,1.027333,1.027333,1.027333,0.524043,0.524043,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,3.113129,1.027333,1.027333,10,10,, +20921,0,0.126276,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,4.259,4.385,0,2.70591,5,5,0.216473,0.216473,0.216473,0.216473,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.221157,0.222039,0.216473,0.216473,0.221157,0.222039,0.216894,0.217155,0.216473,0.216473,0.216894,0.217155,0.225436,0.228275,0.216473,0.216473,0.225436,0.228275,0.216473,0.216473,0.216473,0.216473,0.216473,0.216473,,,,,,,0.221157,0.222039,0.216894,0.217155,0.225436,0.228275,0.216473,0.216473,0.216473,0.216473,0.089077,0.089341,0.087798,0.087876,0.090361,0.091212,0.087671,0.087671,0.046361,0.046361,34.258618,34.122626,34.931964,34.890071,33.608367,33.190434,35,35,35,35,,,,,,,,,,,7946,7946,0.216473,0.216473,0.216473,0.216473,0.216473,0.216473,0.216473,0.216473,0.087671,0.087671,35,35,, +26899,0,0.245429,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.259185,0.15,4,1.472572,1.472572,1.472572,1.472572,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,,,,,,,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,0.485949,0.485949,0.485949,0.485949,0.485949,0.485949,0.485949,0.485949,0.247883,0.247883,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,1.472572,0.485949,0.485949,10,10,, +364,0,0.162211,1,1,0,2,5,,3,3,Gill,Rd,634202,0.502,0.665,0,3.475944,8,4.5,0.389306,0.389306,0.389306,0.389306,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.409997,0.422604,0.389306,0.389306,0.409997,0.422604,0.391364,0.393212,0.389306,0.389306,0.391364,0.393212,0.481917,0.48003,0.389306,0.389306,0.481917,0.48003,0.389306,0.389306,0.389306,0.389306,0.389306,0.389306,,,,,,,0.409997,0.422604,0.391364,0.393212,0.481917,0.48003,0.389306,0.389306,0.389306,0.389306,0.152197,0.155979,0.146607,0.147162,0.173773,0.173207,0.14599,0.14599,0.076239,0.076239,23.738319,23.030167,24.868516,24.751627,20.195687,20.275057,25,25,25,25,,,,,,,,,,,2408,2408,0.389306,0.389306,0.389306,0.389306,0.389306,0.389306,0.389306,0.389306,0.14599,0.14599,25,25,, +22,0,0.283755,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.425,1.709,0,6.080457,8,4.5,0.681011,0.681011,0.681011,0.681011,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.705711,0.681288,0.681011,0.681011,0.705711,0.681288,0.68198,0.683274,0.681011,0.681011,0.68198,0.683274,0.684514,0.80335,0.681011,0.681011,0.684514,0.80335,0.681011,0.681011,0.681011,0.681011,0.681011,0.681011,,,,,,,0.705711,0.681288,0.68198,0.683274,0.684514,0.80335,0.681011,0.681011,0.681011,0.681011,0.262789,0.255462,0.25567,0.256058,0.25643,0.292081,0.255379,0.255379,0.133365,0.133365,24.125015,24.989828,24.964473,24.917196,24.872082,21.192847,25,25,25,25,,,,,,,,,,,2408,2408,0.681011,0.681011,0.681011,0.681011,0.681011,0.681011,0.681011,0.681011,0.255379,0.255379,25,25,, +388,0,0.183968,1,1,0,2,5,,3,3,Lytle,,637710,0.329,0.513,0,3.942181,8,4.5,0.441524,0.441524,0.441524,0.441524,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.45077,0.458422,0.441524,0.441524,0.45077,0.458422,0.441847,0.446105,0.441524,0.441524,0.441847,0.446105,0.450127,0.526633,0.441524,0.441524,0.450127,0.526633,0.441524,0.441524,0.441524,0.441524,0.441524,0.441524,,,,,,,0.45077,0.458422,0.441847,0.446105,0.450127,0.526633,0.441524,0.441524,0.441524,0.441524,0.168345,0.170641,0.165669,0.166946,0.168152,0.191104,0.165572,0.165572,0.086465,0.086465,24.487242,24.078497,24.981713,24.74332,24.522208,20.959777,25,25,25,25,,,,,,,,,,,2408,2408,0.441524,0.441524,0.441524,0.441524,0.441524,0.441524,0.441524,0.441524,0.165572,0.165572,25,25,, +1441,0,0.252121,1,1,0,2,5,,3,3,Gill,Rd,632807,0,0.252,0,5.402595,8,4.5,0.605091,0.605091,0.605091,0.605091,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.605239,0.605091,0.605091,0.605091,0.605239,0.605091,0.605091,0.605091,0.605091,0.605091,0.605091,0.605091,0.605102,0.605236,0.605091,0.605091,0.605102,0.605236,0.605091,0.605091,0.605091,0.605091,0.605091,0.605091,,,,,,,0.605239,0.605091,0.605091,0.605091,0.605102,0.605236,0.605091,0.605091,0.605091,0.605091,0.226953,0.226909,0.226909,0.226909,0.226912,0.226953,0.226909,0.226909,0.118497,0.118497,24.993881,25,24.999992,25,24.999549,24.99401,25,25,25,25,,,,,,,,,,,2408,2408,0.605091,0.605091,0.605091,0.605091,0.605091,0.605091,0.605091,0.605091,0.226909,0.226909,25,25,, +1606,0,0.259499,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.691,0.95,0,5.560699,6,4.5,0.471817,0.471817,0.471817,0.471817,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.512945,0.508102,0.471817,0.471817,0.512945,0.508102,0.498134,0.489936,0.471817,0.471817,0.498134,0.489936,0.5513,0.484307,0.471817,0.471817,0.5513,0.484307,0.471817,0.471817,0.471817,0.471817,0.471817,0.471817,,,,,,,0.512945,0.508102,0.498134,0.489936,0.5513,0.484307,0.471817,0.471817,0.471817,0.471817,0.200593,0.19914,0.19615,0.193691,0.2121,0.192002,0.188255,0.188255,0.099317,0.099317,30.354056,30.643385,31.256593,31.779587,28.242236,32.148939,33,33,33,33,,,,,,,,,,,2580,2580,0.471817,0.471817,0.471817,0.471817,0.471817,0.471817,0.471817,0.471817,0.188255,0.188255,33,33,, +29726,0,0.250004,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.357234,0.15,4,1.500025,1.500025,1.500025,1.500025,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,,,,,,,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,0.495008,0.495008,0.495008,0.495008,0.495008,0.495008,0.495008,0.495008,0.252504,0.252504,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,1.500025,0.495008,0.495008,10,10,, +26895,0,0.074501,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.59646,0.15,4,0.447009,0.447009,0.447009,0.447009,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,,,,,,,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.147513,0.147513,0.147513,0.147513,0.147513,0.147513,0.147513,0.147513,0.075246,0.075246,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.447009,0.147513,0.147513,10,10,, +26898,0,0.245657,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.264088,0.15,4,1.473945,1.473945,1.473945,1.473945,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,,,,,,,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,0.486402,0.486402,0.486402,0.486402,0.486402,0.486402,0.486402,0.486402,0.248114,0.248114,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,1.473945,0.486402,0.486402,10,10,, +26894,0,0.056216,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.204624,0.15,4,0.337295,0.337295,0.337295,0.337295,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,,,,,,,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.111307,0.111307,0.111307,0.111307,0.111307,0.111307,0.111307,0.111307,0.056778,0.056778,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.337295,0.111307,0.111307,10,10,, +1241,0,0.166084,1,1,0,2,5,,3,3,Gill,Rd,634202,1.006,1.172,0,3.558949,8,4.5,0.398602,0.398602,0.398602,0.398602,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.413857,0.406949,0.398602,0.398602,0.413857,0.406949,0.402737,0.398894,0.398602,0.398602,0.402737,0.398894,0.475437,0.406369,0.398602,0.398602,0.475437,0.406369,0.398602,0.398602,0.398602,0.398602,0.398602,0.398602,,,,,,,0.413857,0.406949,0.402737,0.398894,0.475437,0.406369,0.398602,0.398602,0.398602,0.398602,0.154052,0.15198,0.150716,0.149563,0.172526,0.151806,0.149476,0.149476,0.07806,0.07806,24.078497,24.487242,24.74332,24.981713,20.959777,24.522208,25,25,25,25,,,,,,,,,,,2408,2408,0.398602,0.398602,0.398602,0.398602,0.398602,0.398602,0.398602,0.398602,0.149476,0.149476,25,25,, +2105,0,0.12438,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.566,0.691,0,2.66528,6,4.5,0.226145,0.226145,0.226145,0.226145,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.261258,0.240481,0.226145,0.226145,0.261258,0.240481,0.25759,0.23058,0.226145,0.226145,0.25759,0.23058,0.396147,0.228704,0.226145,0.226145,0.396147,0.228704,0.226145,0.226145,0.226145,0.226145,0.226145,0.226145,,,,,,,0.261258,0.240481,0.25759,0.23058,0.396147,0.228704,0.226145,0.226145,0.226145,0.226145,0.100766,0.094533,0.099665,0.091562,0.141232,0.090999,0.090232,0.090232,0.047604,0.047604,28.564848,31.03271,28.971558,32.365277,18.838443,32.63081,33,33,33,33,,,,,,,,,,,2580,2580,0.226145,0.226145,0.226145,0.226145,0.226145,0.226145,0.226145,0.226145,0.090232,0.090232,33,33,, +1693,0,0.168127,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.709,1.877,0,3.602718,8,4.5,0.403504,0.403504,0.403504,0.403504,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.406364,0.403718,0.403504,0.403504,0.406364,0.403718,0.403773,0.404791,0.403504,0.403504,0.403773,0.404791,0.404309,0.432122,0.403504,0.403504,0.404309,0.432122,0.403504,0.403504,0.403504,0.403504,0.403504,0.403504,,,,,,,0.406364,0.403718,0.403773,0.404791,0.404309,0.432122,0.403504,0.403504,0.403504,0.403504,0.152172,0.151378,0.151395,0.1517,0.151556,0.1599,0.151314,0.151314,0.07902,0.07902,24.824107,24.986796,24.983391,24.920554,24.950252,23.344336,25,25,25,25,,,,,,,,,,,2408,2408,0.403504,0.403504,0.403504,0.403504,0.403504,0.403504,0.403504,0.403504,0.151314,0.151314,25,25,, +981,0,0.272086,1,1,0,2,5,,3,3,Gill,Rd,632807,0.252,0.524,0,5.830407,8,4.5,0.653006,0.653006,0.653006,0.653006,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.656308,0.653014,0.653006,0.653006,0.656308,0.653014,0.653306,0.653011,0.653006,0.653006,0.653306,0.653011,0.653659,0.653909,0.653006,0.653006,0.653659,0.653909,0.653006,0.653006,0.653006,0.653006,0.653006,0.653006,,,,,,,0.656308,0.653014,0.653306,0.653011,0.653659,0.653909,0.653006,0.653006,0.653006,0.653006,0.245868,0.244879,0.244967,0.244879,0.245073,0.245148,0.244877,0.244877,0.12788,0.12788,24.874218,24.999691,24.988494,24.999783,24.975019,24.965442,25,25,25,25,,,,,,,,,,,2408,2408,0.653006,0.653006,0.653006,0.653006,0.653006,0.653006,0.653006,0.653006,0.244877,0.244877,25,25,, +26893,0,0.37945,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.131076,0.15,4,2.276701,2.276701,2.276701,2.276701,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,,,,,,,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,0.751311,0.751311,0.751311,0.751311,0.751311,0.751311,0.751311,0.751311,0.383245,0.383245,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,2.276701,0.751311,0.751311,10,10,, +26901,0,0.239954,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.141868,0.15,4,1.439723,1.439723,1.439723,1.439723,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,,,,,,,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,0.475109,0.475109,0.475109,0.475109,0.475109,0.475109,0.475109,0.475109,0.242353,0.242353,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,1.439723,0.475109,0.475109,10,10,, +2164,0,0.192283,2,2,1,2,4,,3,3,Farmington,Rd,632903,0,0.192,0,4.120346,6,4.5,0.349605,0.349605,0.349605,0.349605,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.451388,0.548866,0.349605,0.349605,0.451388,0.548866,0.387624,0.451985,0.349605,0.349605,0.387624,0.451985,0.471273,0.779816,0.349605,0.349605,0.471273,0.779816,0.349605,0.349605,0.349605,0.349605,0.349605,0.349605,,,,,,,0.451388,0.548866,0.387624,0.451985,0.471273,0.779816,0.349605,0.349605,0.349605,0.349605,0.170027,0.199271,0.150898,0.170206,0.175993,0.268556,0.139492,0.139492,0.073592,0.073592,25.558845,21.019646,29.763317,25.525102,24.480448,14.794482,33,33,33,33,,,,,,,,,,,5418,5418,0.349605,0.349605,0.349605,0.349605,0.349605,0.349605,0.349605,0.349605,0.139492,0.139492,33,33,, +20919,0,0.334965,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,4.762,5.097,0,7.17782,5,5,0.574226,0.574226,0.574226,0.574226,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.590932,0.583691,0.574226,0.574226,0.590932,0.583691,0.576071,0.575935,0.574226,0.574226,0.576071,0.575935,0.613358,0.591963,0.574226,0.574226,0.613358,0.591963,0.574226,0.574226,0.574226,0.574226,0.574226,0.574226,,,,,,,0.590932,0.583691,0.576071,0.575935,0.613358,0.591963,0.574226,0.574226,0.574226,0.574226,0.237573,0.235401,0.233115,0.233074,0.244301,0.237883,0.232561,0.232561,0.12298,0.12298,34.010509,34.432411,34.887859,34.896148,32.767013,33.951268,35,35,35,35,,,,,,,,,,,7946,7946,0.574226,0.574226,0.574226,0.574226,0.574226,0.574226,0.574226,0.574226,0.232561,0.232561,35,35,, +26203,0,0.544738,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.672957,0.15,4,3.268428,3.268428,3.268428,3.268428,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,,,,,,,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,1.078581,1.078581,1.078581,1.078581,1.078581,1.078581,1.078581,1.078581,0.550185,0.550185,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,3.268428,1.078581,1.078581,10,10,, +26904,0,0.445085,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.53754,0.15,4,2.670511,2.670511,2.670511,2.670511,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,,,,,,,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,0.881269,0.881269,0.881269,0.881269,0.881269,0.881269,0.881269,0.881269,0.449536,0.449536,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,2.670511,0.881269,0.881269,10,10,, +1657,0,0.305381,2,2,1,2,4,,3,3,Farmington,Rd,632903,0.192,0.498,0,6.543885,6,4.5,0.555239,0.555239,0.555239,0.555239,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.659972,0.744881,0.555239,0.555239,0.659972,0.744881,0.587274,0.651848,0.555239,0.555239,0.587274,0.651848,0.650947,0.972106,0.555239,0.555239,0.650947,0.972106,0.555239,0.555239,0.555239,0.555239,0.555239,0.555239,,,,,,,0.659972,0.744881,0.587274,0.651848,0.650947,0.972106,0.555239,0.555239,0.555239,0.555239,0.25296,0.278433,0.231151,0.250523,0.250253,0.3466,0.22154,0.22154,0.116878,0.116878,27.763096,24.598386,31.19989,28.109135,28.148055,18.848642,33,33,33,33,,,,,,,,,,,5418,5418,0.555239,0.555239,0.555239,0.555239,0.555239,0.555239,0.555239,0.555239,0.22154,0.22154,33,33,, +25858,0,0.318703,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.82934,0.15,4,1.912215,1.912215,1.912215,1.912215,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,,,,,,,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,0.631031,0.631031,0.631031,0.631031,0.631031,0.631031,0.631031,0.631031,0.32189,0.32189,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,1.912215,0.631031,0.631031,10,10,, +28095,0,0.276344,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.921647,0.15,4,1.658061,1.658061,1.658061,1.658061,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,,,,,,,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,0.54716,0.54716,0.54716,0.54716,0.54716,0.54716,0.54716,0.54716,0.279107,0.279107,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,1.658061,0.54716,0.54716,10,10,, +1185,0,0.193257,2,2,1,2,4,,3,3,Farmington,Rd,632903,0.498,0.691,0,4.141218,6,4.5,0.351376,0.351376,0.351376,0.351376,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.399128,0.462767,0.351376,0.351376,0.399128,0.462767,0.371861,0.42937,0.351376,0.351376,0.371861,0.42937,0.395059,0.617678,0.351376,0.351376,0.395059,0.617678,0.351376,0.351376,0.351376,0.351376,0.351376,0.351376,,,,,,,0.399128,0.462767,0.371861,0.42937,0.395059,0.617678,0.351376,0.351376,0.351376,0.351376,0.154525,0.173616,0.146344,0.163597,0.153304,0.22009,0.140199,0.140199,0.073965,0.073965,29.051866,25.056688,31.182139,27.005647,29.351054,18.772577,33,33,33,33,,,,,,,,,,,5418,5418,0.351376,0.351376,0.351376,0.351376,0.351376,0.351376,0.351376,0.351376,0.140199,0.140199,33,33,, +20918,0,0.163055,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,5.097,5.26,0,3.494031,5,5,0.279522,0.279522,0.279522,0.279522,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.29426,0.28708,0.279522,0.279522,0.29426,0.28708,0.281263,0.281068,0.279522,0.279522,0.281263,0.281068,0.313237,0.296555,0.279522,0.279522,0.313237,0.296555,0.279522,0.279522,0.279522,0.279522,0.279522,0.279522,,,,,,,0.29426,0.28708,0.281263,0.281068,0.313237,0.296555,0.279522,0.279522,0.279522,0.279522,0.117628,0.115474,0.113729,0.11367,0.123321,0.118316,0.113207,0.113207,0.059864,0.059864,33.247122,34.078559,34.783392,34.807512,31.232841,32.989759,35,35,35,35,,,,,,,,,,,7946,7946,0.279522,0.279522,0.279522,0.279522,0.279522,0.279522,0.279522,0.279522,0.113207,0.113207,35,35,, +20917,0,0.134279,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,5.26,5.394,0,2.877407,5,5,0.230193,0.230193,0.230193,0.230193,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.242289,0.235684,0.230193,0.230193,0.242289,0.235684,0.232511,0.23278,0.230193,0.230193,0.232511,0.23278,0.240955,0.247354,0.230193,0.230193,0.240955,0.247354,0.230193,0.230193,0.230193,0.230193,0.230193,0.230193,,,,,,,0.242289,0.235684,0.232511,0.23278,0.240955,0.247354,0.230193,0.230193,0.230193,0.230193,0.096857,0.094876,0.093924,0.094004,0.096457,0.098376,0.093228,0.093228,0.0493,0.0493,33.252599,34.184443,34.650977,34.610999,33.436703,32.571712,35,35,35,35,,,,,,,,,,,7946,7946,0.230193,0.230193,0.230193,0.230193,0.230193,0.230193,0.230193,0.230193,0.093228,0.093228,35,35,, +475,0,0.320297,2,2,1,2,4,,3,3,Farmington,Rd,632903,1.103,1.423,0,6.863502,6,4.5,0.582358,0.582358,0.582358,0.582358,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.850474,0.626945,0.582358,0.582358,0.850474,0.626945,0.640124,0.602143,0.582358,0.582358,0.640124,0.602143,0.795122,0.738846,0.582358,0.582358,0.795122,0.738846,0.582358,0.582358,0.582358,0.582358,0.582358,0.582358,,,,,,,0.850474,0.626945,0.640124,0.602143,0.795122,0.738846,0.582358,0.582358,0.582358,0.582358,0.312796,0.245737,0.249691,0.238296,0.29619,0.279307,0.232361,0.232361,0.122586,0.122586,22.596586,30.653098,30.02202,31.915706,24.169624,26.010587,33,33,33,33,,,,,,,,,,,5418,5418,0.582358,0.582358,0.582358,0.582358,0.582358,0.582358,0.582358,0.582358,0.232361,0.232361,33,33,, +607,0,0.455341,1,1,0,2,5,,3,3,Folsom,,634102,0,0.455,0,9.7573,8,4.5,1.092818,1.092818,1.092818,1.092818,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.099396,1.09335,1.092818,1.092818,1.099396,1.09335,1.095274,1.093692,1.092818,1.092818,1.095274,1.093692,1.124763,1.096391,1.092818,1.092818,1.124763,1.096391,1.092818,1.092818,1.092818,1.092818,1.092818,1.092818,,,,,,,1.099396,1.09335,1.095274,1.093692,1.124763,1.096391,1.092818,1.092818,1.092818,1.092818,0.41178,0.409966,0.410544,0.410069,0.41939,0.410879,0.409807,0.409807,0.21401,0.21401,24.850416,24.987819,24.943928,24.980007,24.289944,24.918521,25,25,25,25,,,,,,,,,,,2408,2408,1.092818,1.092818,1.092818,1.092818,1.092818,1.092818,1.092818,1.092818,0.409807,0.409807,25,25,, +679,0,0.212615,1,1,0,2,5,,3,3,Shiawassee,,633209,0.66,0.873,0,4.556026,8,4.5,0.510275,0.510275,0.510275,0.510275,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.690513,0.702449,0.510275,0.510275,0.690513,0.702449,0.641411,0.665724,0.510275,0.510275,0.641411,0.665724,0.733936,0.717631,0.510275,0.510275,0.733936,0.717631,0.510275,0.510275,0.510275,0.510275,0.510275,0.510275,,,,,,,0.690513,0.702449,0.641411,0.665724,0.733936,0.717631,0.510275,0.510275,0.510275,0.510275,0.245425,0.249005,0.230694,0.237988,0.258451,0.25356,0.191353,0.191353,0.099929,0.099929,18.474488,18.160558,19.888757,19.162406,17.38145,17.77638,25,25,25,25,,,,,,,,,,,2408,2408,0.510275,0.510275,0.510275,0.510275,0.510275,0.510275,0.510275,0.510275,0.191353,0.191353,25,25,, +774,0,0.457118,1,1,0,2,5,,3,3,Freedom,Rd,633606,2.224,2.681,0,9.795379,8,4.5,1.097082,1.097082,1.097082,1.097082,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.162471,1.102485,1.097082,1.097082,1.162471,1.102485,1.141385,1.10849,1.097082,1.097082,1.141385,1.10849,1.243211,1.158482,1.097082,1.097082,1.243211,1.158482,1.097082,1.097082,1.097082,1.097082,1.097082,1.097082,,,,,,,1.162471,1.102485,1.141385,1.10849,1.243211,1.158482,1.097082,1.097082,1.097082,1.097082,0.431023,0.413027,0.424697,0.414828,0.455244,0.429826,0.411406,0.411406,0.214845,0.214845,23.59375,24.877502,24.029624,24.742712,22.061471,23.675003,25,25,25,25,,,,,,,,,,,2408,2408,1.097082,1.097082,1.097082,1.097082,1.097082,1.097082,1.097082,1.097082,0.411406,0.411406,25,25,, +19775,0,0.346787,2,2,1,2,4,,3,3,Grand River,,4104142,16.869,17.215,0,7.431141,6,4.5,0.630521,0.630521,0.630521,0.630521,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.789856,0.645386,0.630521,0.630521,0.789856,0.645386,0.64598,0.640155,0.630521,0.630521,0.64598,0.640155,0.733982,0.775971,0.630521,0.630521,0.733982,0.775971,0.630521,0.630521,0.630521,0.630521,0.630521,0.630521,,,,,,,0.789856,0.645386,0.64598,0.640155,0.733982,0.775971,0.630521,0.630521,0.630521,0.630521,0.299378,0.256037,0.256216,0.254468,0.282616,0.295213,0.251578,0.251578,0.132725,0.132725,26.343026,32.239936,32.210283,32.50339,28.348354,26.814405,33,33,33,33,,,,,,,,,,,5418,5418,0.630521,0.630521,0.630521,0.630521,0.630521,0.630521,0.630521,0.630521,0.251578,0.251578,33,33,, +26185,0,0.194689,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.171901,0.15,4,1.168132,1.168132,1.168132,1.168132,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,,,,,,,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,0.385484,0.385484,0.385484,0.385484,0.385484,0.385484,0.385484,0.385484,0.196636,0.196636,9.999999,10,9.999999,9.999999,9.999998,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,1.168132,0.385484,0.385484,10,10,, +26187,0,0.416891,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.933368,0.15,4,2.501343,2.501343,2.501343,2.501343,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,,,,,,,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,0.825443,0.825443,0.825443,0.825443,0.825443,0.825443,0.825443,0.825443,0.421059,0.421059,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,2.501343,0.825443,0.825443,10,10,, +29727,0,0.333917,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.155355,0.15,4,2.003499,2.003499,2.003499,2.003499,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,,,,,,,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,0.661155,0.661155,0.661155,0.661155,0.661155,0.661155,0.661155,0.661155,0.337256,0.337256,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,2.003499,0.661155,0.661155,10,10,, +276,0,0.192692,1,1,0,2,5,,3,3,9 Mile,Rd,633603,0,0.193,0,4.129115,8,4.5,0.462461,0.462461,0.462461,0.462461,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.462676,0.85688,0.462461,0.462461,0.462676,0.85688,0.462831,0.624946,0.462461,0.462461,0.462831,0.624946,0.463863,0.745586,0.462461,0.462461,0.463863,0.745586,0.462461,0.462461,0.462461,0.462461,0.462461,0.462461,,,,,,,0.462676,0.85688,0.462831,0.624946,0.463863,0.745586,0.462461,0.462461,0.462461,0.462461,0.173487,0.291748,0.173534,0.222168,0.173843,0.25836,0.173423,0.173423,0.090565,0.090565,24.988363,13.492588,24.980007,18.500041,24.924442,15.506625,25,25,25,25,,,,,,,,,,,2408,2408,0.462461,0.462461,0.462461,0.462461,0.462461,0.462461,0.462461,0.462461,0.173423,0.173423,25,25,, +1026,0,0.047639,2,2,1,2,4,,3,3,9 Mile,Rd,633603,0.193,0.24,0,1.020843,6,4.5,0.086617,0.086617,0.086617,0.086617,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.086993,0.203972,0.086617,0.086617,0.086993,0.203972,0.086917,0.151026,0.086617,0.086617,0.086917,0.151026,0.088023,0.278218,0.086617,0.086617,0.088023,0.278218,0.086617,0.086617,0.086617,0.086617,0.086617,0.086617,,,,,,,0.086993,0.203972,0.086917,0.151026,0.088023,0.278218,0.086617,0.086617,0.086617,0.086617,0.034673,0.069767,0.03465,0.053883,0.034982,0.092041,0.03456,0.03456,0.018233,0.018233,32.857423,14.013512,32.886142,18.92623,32.472763,10.273814,33,33,33,33,,,,,,,,,,,5418,5418,0.086617,0.086617,0.086617,0.086617,0.086617,0.086617,0.086617,0.086617,0.03456,0.03456,33,33,, +936,0,0.099473,2,2,1,2,4,,3,3,Farmington,Rd,632903,1.004,1.103,0,2.131554,6,4.5,0.180859,0.180859,0.180859,0.180859,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.546397,0.254648,0.180859,0.180859,0.546397,0.254648,0.316829,0.221565,0.180859,0.180859,0.316829,0.221565,0.688075,0.433453,0.180859,0.180859,0.688075,0.433453,0.180859,0.180859,0.180859,0.180859,0.180859,0.180859,,,,,,,0.546397,0.254648,0.316829,0.221565,0.688075,0.433453,0.180859,0.180859,0.180859,0.180859,0.181824,0.094299,0.112954,0.084375,0.224328,0.147941,0.072163,0.072163,0.038071,0.038071,10.923105,23.437672,18.837765,26.937262,8.673985,13.7693,33,33,33,33,,,,,,,,,,,5418,5418,0.180859,0.180859,0.180859,0.180859,0.180859,0.180859,0.180859,0.180859,0.072163,0.072163,33,33,, +1785,1,0.078364,1,0,0,1,2,RON,3,3,9 Mile/E M 5,RAMP,634110,0,0.078,0,,1.09,4,0.117546,,0.117546,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.117725,,0.117546,,0.117725,,0.11763,,0.117546,,0.11763,,0.117587,,0.117546,,0.117587,,0.117546,,0.117546,,0.117546,,,,,,,,0.117725,,0.11763,,0.117587,,0.117546,,0.117546,,0.049423,,0.049395,,0.049382,,0.049369,,0.026252,,39.939392,,39.971557,,39.986316,,40,,40,,,,,,,,,,,,5074,,0.117546,,0.117546,,0.117546,,0.117546,,0.049369,,40,,, +1119,0,0.152938,1,1,1,2,4,,3,3,Shiawassee,,633209,0.507,0.66,0,3.277248,6,4.5,0.27807,0.27807,0.27807,0.27807,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.968159,0.553574,0.27807,0.27807,0.968159,0.553574,0.549994,0.533548,0.27807,0.27807,0.549994,0.533548,0.784958,0.959969,0.27807,0.27807,0.784958,0.959969,0.27807,0.27807,0.27807,0.27807,0.27807,0.27807,,,,,,,0.968159,0.553574,0.549994,0.533548,0.784958,0.959969,0.27807,0.27807,0.27807,0.27807,0.317976,0.193601,0.192527,0.187593,0.263016,0.31552,0.11095,0.11095,0.058534,0.058534,9.47809,16.576461,16.68435,17.198616,11.69017,9.558951,33,33,33,33,,,,,,,,,,,2838,2838,0.27807,0.27807,0.27807,0.27807,0.27807,0.27807,0.27807,0.27807,0.11095,0.11095,33,33,, +2100,0,0.179747,2,2,0,2,4,,3,3,Farmington,Rd,632903,1.504,1.683,0,3.851726,6,4.5,0.326813,0.326813,0.326813,0.326813,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.60987,0.403102,0.326813,0.326813,0.60987,0.403102,0.403431,0.366673,0.326813,0.326813,0.403431,0.366673,0.585034,0.562316,0.326813,0.326813,0.585034,0.562316,0.326813,0.326813,0.326813,0.326813,0.326813,0.326813,,,,,,,0.60987,0.403102,0.403431,0.366673,0.585034,0.562316,0.326813,0.326813,0.326813,0.326813,0.215316,0.153285,0.153384,0.142356,0.207865,0.201049,0.130398,0.130398,0.068794,0.068794,17.683807,26.754615,26.732783,29.412641,18.43453,19.179323,33,33,33,33,,,,,,,,,,,5160,5160,0.326813,0.326813,0.326813,0.326813,0.326813,0.326813,0.326813,0.326813,0.130398,0.130398,33,33,, +19776,0,0.238918,2,2,0,2,4,,3,3,Grand River,,4104142,16.63,16.869,0,5.119677,6,4.5,0.434397,0.434397,0.434397,0.434397,33,33,15000,15000,3405,3405,7500,7500,4839,4839,5160,5160,5154,5154,0.587929,0.449653,0.434397,0.434397,0.587929,0.449653,0.45244,0.445929,0.434397,0.434397,0.45244,0.445929,0.537911,0.583958,0.434397,0.434397,0.537911,0.583958,0.434397,0.434397,0.434397,0.434397,0.434397,0.434397,,,,,,,0.587929,0.449653,0.45244,0.445929,0.537911,0.583958,0.434397,0.434397,0.434397,0.434397,0.219384,0.177901,0.178737,0.176784,0.204379,0.218193,0.173324,0.173324,0.091441,0.091441,24.382369,31.880358,31.683968,32.146593,26.649559,24.548166,33,33,33,33,,,,,,,,,,,5160,5160,0.434397,0.434397,0.434397,0.434397,0.434397,0.434397,0.434397,0.434397,0.173324,0.173324,33,33,, +26182,0,0.204167,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.374999,0.15,4,1.225,1.225,1.225,1.225,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,,,,,,,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,0.40425,0.40425,0.40425,0.40425,0.40425,0.40425,0.40425,0.40425,0.206208,0.206208,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.225,1.225,1.225,1.225,1.225,1.225,1.225,1.225,0.40425,0.40425,10,10,, +26188,0,0.113552,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.433259,0.15,4,0.681313,0.681313,0.681313,0.681313,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,,,,,,,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.224833,0.224833,0.224833,0.224833,0.224833,0.224833,0.224833,0.224833,0.114688,0.114688,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.681313,0.224833,0.224833,10,10,, +26190,0,0.142065,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.044256,0.15,4,0.852392,0.852392,0.852392,0.852392,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,,,,,,,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.281289,0.281289,0.281289,0.281289,0.281289,0.281289,0.281289,0.281289,0.143486,0.143486,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.852392,0.281289,0.281289,10,10,, +2021,0,0.080636,2,2,1,2,4,,3,3,Farmington,Rd,632903,1.423,1.504,0,1.727914,6,4.5,0.146611,0.146611,0.146611,0.146611,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.214872,0.158073,0.146611,0.146611,0.214872,0.158073,0.161711,0.15186,0.146611,0.146611,0.161711,0.15186,0.202276,0.187439,0.146611,0.146611,0.202276,0.187439,0.146611,0.146611,0.146611,0.146611,0.146611,0.146611,,,,,,,0.214872,0.158073,0.161711,0.15186,0.202276,0.187439,0.146611,0.146611,0.146611,0.146611,0.078976,0.061936,0.063028,0.060072,0.075197,0.070746,0.058498,0.058498,0.030862,0.030862,22.516519,30.607104,29.918576,31.859438,23.918578,25.811956,33,33,33,33,,,,,,,,,,,5418,5418,0.146611,0.146611,0.146611,0.146611,0.146611,0.146611,0.146611,0.146611,0.058498,0.058498,33,33,, +1601,0,0.052455,1,1,0,2,4,,3,3,Farmington,Rd,632903,1.683,1.736,0,1.124044,6,4.5,0.095373,0.095373,0.095373,0.095373,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.129562,0.111284,0.095373,0.095373,0.129562,0.111284,0.120643,0.113371,0.095373,0.095373,0.120643,0.113371,0.124109,0.11942,0.095373,0.095373,0.124109,0.11942,0.095373,0.095373,0.095373,0.095373,0.095373,0.095373,,,,,,,0.129562,0.111284,0.120643,0.113371,0.124109,0.11942,0.095373,0.095373,0.095373,0.095373,0.04831,0.042827,0.045635,0.043453,0.046675,0.045268,0.038054,0.038054,0.020076,0.020076,24.292067,28.281916,26.087984,27.761208,25.359418,26.355008,33,33,33,33,,,,,,,,,,,2580,2580,0.095373,0.095373,0.095373,0.095373,0.095373,0.095373,0.095373,0.095373,0.038054,0.038054,33,33,, +1604,0,0.122847,1,1,1,2,4,,3,3,Shiawassee,,633209,0.384,0.507,0,2.632444,6,4.5,0.223359,0.223359,0.223359,0.223359,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.614681,0.353024,0.223359,0.223359,0.614681,0.353024,0.353616,0.346569,0.223359,0.223359,0.353616,0.346569,0.476301,0.578516,0.223359,0.223359,0.476301,0.578516,0.223359,0.223359,0.223359,0.223359,0.223359,0.223359,,,,,,,0.614681,0.353024,0.353616,0.346569,0.476301,0.578516,0.223359,0.223359,0.223359,0.223359,0.206517,0.12802,0.128197,0.126083,0.165003,0.195667,0.08912,0.08912,0.047017,0.047017,11.991341,20.87915,20.844216,21.268017,15.475164,12.740949,33,33,33,33,,,,,,,,,,,2838,2838,0.223359,0.223359,0.223359,0.223359,0.223359,0.223359,0.223359,0.223359,0.08912,0.08912,33,33,, +1117,0,0.105134,1,1,0,2,4,,3,3,Farmington,Rd,632903,1.736,1.841,0,2.252862,6,4.5,0.191152,0.191152,0.191152,0.191152,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.232571,0.223041,0.191152,0.191152,0.232571,0.223041,0.241798,0.227224,0.191152,0.191152,0.241798,0.227224,0.246049,0.226135,0.191152,0.191152,0.246049,0.226135,0.191152,0.191152,0.191152,0.191152,0.191152,0.191152,,,,,,,0.232571,0.223041,0.241798,0.227224,0.246049,0.226135,0.191152,0.191152,0.191152,0.191152,0.088695,0.085836,0.091463,0.087091,0.092739,0.086765,0.07627,0.07627,0.040237,0.040237,27.122985,28.281916,26.087984,27.761208,25.63723,27.894851,33,33,33,33,,,,,,,,,,,2580,2580,0.191152,0.191152,0.191152,0.191152,0.191152,0.191152,0.191152,0.191152,0.07627,0.07627,33,33,, +26186,0,0.250102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.359328,0.15,4,1.500612,1.500612,1.500612,1.500612,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,,,,,,,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,0.495202,0.495202,0.495202,0.495202,0.495202,0.495202,0.495202,0.495202,0.252603,0.252603,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,1.500612,0.495202,0.495202,10,10,, +875,0,0.191024,1,1,0,2,5,,3,3,Shiawassee,,633209,0.907,1.098,0,4.093373,8,4.5,0.458458,0.458458,0.458458,0.458458,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.494306,0.474162,0.458458,0.458458,0.494306,0.474162,0.459447,0.460267,0.458458,0.458458,0.459447,0.460267,0.505519,0.492816,0.458458,0.458458,0.505519,0.492816,0.458458,0.458458,0.458458,0.458458,0.458458,0.458458,,,,,,,0.494306,0.474162,0.459447,0.460267,0.505519,0.492816,0.458458,0.458458,0.458458,0.458458,0.182676,0.176633,0.172218,0.172464,0.18604,0.182229,0.171922,0.171922,0.089781,0.089781,23.186926,24.172004,24.946199,24.901735,22.67264,23.257069,25,25,25,25,,,,,,,,,,,2408,2408,0.458458,0.458458,0.458458,0.458458,0.458458,0.458458,0.458458,0.458458,0.171922,0.171922,25,25,, +21075,0,0.151347,1,1,0,2,5,,3,3,Power,Rd,4410108,0.532,0.683,0,3.243158,8,4.5,0.363234,0.363234,0.363234,0.363234,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.525834,0.373014,0.363234,0.363234,0.525834,0.373014,0.410999,0.392333,0.363234,0.363234,0.410999,0.392333,0.452451,0.505832,0.363234,0.363234,0.452451,0.505832,0.363234,0.363234,0.363234,0.363234,0.363234,0.363234,,,,,,,0.525834,0.373014,0.410999,0.392333,0.452451,0.505832,0.363234,0.363234,0.363234,0.363234,0.184993,0.139147,0.150542,0.144942,0.162978,0.178992,0.136213,0.136213,0.071133,0.071133,17.269402,24.344484,22.094587,23.14578,20.07034,17.952286,25,25,25,25,,,,,,,,,,,2408,2408,0.363234,0.363234,0.363234,0.363234,0.363234,0.363234,0.363234,0.363234,0.136213,0.136213,25,25,, +21077,0,0.103577,1,1,0,2,5,,3,3,Power,Rd,4410108,0.368,0.471,0,2.219502,8,4.5,0.248584,0.248584,0.248584,0.248584,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.34783,0.255278,0.248584,0.248584,0.34783,0.255278,0.281193,0.268498,0.248584,0.248584,0.281193,0.268498,0.305726,0.334882,0.248584,0.248584,0.305726,0.334882,0.248584,0.248584,0.248584,0.248584,0.248584,0.248584,,,,,,,0.34783,0.255278,0.281193,0.268498,0.305726,0.334882,0.248584,0.248584,0.248584,0.248584,0.122993,0.095227,0.103002,0.099193,0.110362,0.119109,0.093219,0.093219,0.048681,0.048681,17.866804,24.344484,22.100881,23.14578,20.327348,18.557573,25,25,25,25,,,,,,,,,,,2408,2408,0.248584,0.248584,0.248584,0.248584,0.248584,0.248584,0.248584,0.248584,0.093219,0.093219,25,25,, +21076,0,0.060409,1,1,0,2,5,,3,3,Power,Rd,4410108,0.471,0.532,0,1.294474,8,4.5,0.144981,0.144981,0.144981,0.144981,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.202864,0.148885,0.144981,0.144981,0.202864,0.148885,0.163999,0.156596,0.144981,0.144981,0.163999,0.156596,0.178308,0.195313,0.144981,0.144981,0.178308,0.195313,0.144981,0.144981,0.144981,0.144981,0.144981,0.144981,,,,,,,0.202864,0.148885,0.163999,0.156596,0.178308,0.195313,0.144981,0.144981,0.144981,0.144981,0.071733,0.055539,0.060073,0.057852,0.064366,0.069467,0.054368,0.054368,0.028392,0.028392,17.866804,24.344484,22.100881,23.14578,20.327348,18.557573,25,25,25,25,,,,,,,,,,,2408,2408,0.144981,0.144981,0.144981,0.144981,0.144981,0.144981,0.144981,0.144981,0.054368,0.054368,25,25,, +1339,0,0.034676,1,1,0,2,5,,3,3,Shiawassee,,633209,0.873,0.907,0,0.743057,8,4.5,0.083222,0.083222,0.083222,0.083222,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.096793,0.153047,0.083222,0.083222,0.096793,0.153047,0.091325,0.099843,0.083222,0.083222,0.091325,0.099843,0.160173,0.125798,0.083222,0.083222,0.160173,0.125798,0.083222,0.083222,0.083222,0.083222,0.083222,0.083222,,,,,,,0.096793,0.153047,0.091325,0.099843,0.160173,0.125798,0.083222,0.083222,0.083222,0.083222,0.03528,0.052156,0.033639,0.036195,0.054293,0.043981,0.031208,0.031208,0.016298,0.016298,21.494835,13.594227,22.781931,20.838314,12.989491,16.538849,25,25,25,25,,,,,,,,,,,2408,2408,0.083222,0.083222,0.083222,0.083222,0.083222,0.083222,0.083222,0.083222,0.031208,0.031208,25,25,, +786,0,0.326804,1,1,0,2,3,,4,3,Ortonville,Rd,627809,0.381,0.708,0,7.002953,3.7,5,0.490207,0.490207,0.490207,0.490207,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,0.563671,0.616413,0.490207,0.490207,0.563671,0.616413,0.520964,0.534064,0.490207,0.490207,0.520964,0.534064,0.688339,0.691699,0.490207,0.490207,0.688339,0.691699,0.490207,0.490207,0.490207,0.490207,0.490207,0.490207,,,,,,,0.563671,0.616413,0.520964,0.534064,0.688339,0.691699,0.490207,0.490207,0.490207,0.490207,0.227926,0.243749,0.215114,0.219044,0.265327,0.266335,0.205887,0.205887,0.109479,0.109479,34.786746,31.810269,37.638402,36.715226,28.486349,28.347962,40,40,40,40,,,,,,,,,,,3784,3784,0.490207,0.490207,0.490207,0.490207,0.490207,0.490207,0.490207,0.490207,0.205887,0.205887,40,40,, +2198,1,1.082333,2,0,0,2,3,DIV,5,3,Highland,Rd,648906,2.101,3.183,0,23.192854,1.7,4,1.180727,,1.180727,,55,,24000,,5448,,12000,,7742,,8256,,8246,,2.026241,,1.180727,,2.026241,,1.345643,,1.180727,,1.345643,,1.939839,,1.180727,,1.939839,,1.180727,,1.180727,,1.180727,,,,,,,,2.026241,,1.345643,,1.939839,,1.180727,,1.180727,,0.802692,,0.598513,,0.776772,,0.549038,,0.296166,,32.04949,,48.259463,,33.477008,,55,,55,,,,,,,,,,,,8256,,1.180727,,1.180727,,1.180727,,1.180727,,0.549038,,55,,, +2201,0,0.886802,1,1,0,2,5,,5,3,Middle,Rd,648808,2.321,3.208,0,19.002907,3.7,5,1.773605,1.773605,1.773605,1.773605,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.773714,1.773648,1.773605,1.773605,1.773714,1.773648,1.773609,1.773612,1.773605,1.773605,1.773609,1.773612,1.773722,1.773691,1.773605,1.773605,1.773722,1.773691,1.773605,1.773605,1.773605,1.773605,1.773605,1.773605,,,,,,,1.773714,1.773648,1.773609,1.773612,1.773722,1.773691,1.773605,1.773605,1.773605,1.773605,0.691739,0.691719,0.691707,0.691708,0.691741,0.691732,0.691706,0.691706,0.363589,0.363589,29.998142,29.999272,29.999926,29.999878,29.998012,29.998533,30,30,30,30,,,,,,,,,,,2580,2580,1.773605,1.773605,1.773605,1.773605,1.773605,1.773605,1.773605,1.773605,0.691706,0.691706,30,30,, +2204,0,1.26104,1,1,0,2,5,,5,3,Clyde,Rd,648706,1.907,3.167,0,27.02228,3.7,5,2.522079,2.522079,2.522079,2.522079,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.834293,2.759983,2.522079,2.522079,3.834293,2.759983,2.609943,2.591004,2.522079,2.522079,2.609943,2.591004,3.236798,3.878824,2.522079,2.522079,3.236798,3.878824,2.522079,2.522079,2.522079,2.522079,2.522079,2.522079,,,,,,,3.834293,2.759983,2.609943,2.591004,3.236798,3.878824,2.522079,2.522079,2.522079,2.522079,1.377275,1.054982,1.00997,1.004288,1.198026,1.390634,0.983611,0.983611,0.517026,0.517026,19.733073,27.414075,28.990047,29.201956,23.375692,19.506525,30,30,30,30,,,,,,,,,,,2580,2580,2.522079,2.522079,2.522079,2.522079,2.522079,2.522079,2.522079,2.522079,0.983611,0.983611,30,30,, +2482,0,1.08187,1,1,0,2,5,GRV,5,3,Wardlow,Rd,650309,1.193,2.274,0,23.182923,5.55,5,3.245609,3.245609,3.245609,3.245609,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.245614,3.24563,3.245609,3.245609,3.245614,3.24563,3.245663,3.245706,3.245609,3.245609,3.245663,3.245706,3.24584,3.245872,3.245609,3.245609,3.24584,3.245872,3.245609,3.245609,3.245609,3.245609,3.245609,3.245609,,,,,,,3.245614,3.24563,3.245663,3.245706,3.24584,3.245872,3.245609,3.245609,3.245609,3.245609,1.168421,1.168426,1.168436,1.168448,1.168489,1.168498,1.168419,1.168419,0.605847,0.605847,19.99997,19.99987,19.999666,19.999403,19.998577,19.99838,20,20,20,20,,,,,,,,,,,2236,2236,3.245609,3.245609,3.245609,3.245609,3.245609,3.245609,3.245609,3.245609,1.168419,1.168419,20,20,, +2519,0,1.039482,1,1,0,2,5,GRV,5,3,Belford,Rd,649602,2.305,3.344,0,22.274614,5.55,5,3.118446,3.118446,3.118446,3.118446,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.823656,3.714938,3.118446,3.118446,4.823656,3.714938,3.131875,3.123388,3.118446,3.118446,3.131875,3.123388,3.29536,3.313536,3.118446,3.118446,3.29536,3.313536,3.118446,3.118446,3.118446,3.118446,3.118446,3.118446,,,,,,,4.823656,3.714938,3.131875,3.123388,3.29536,3.313536,3.118446,3.118446,3.118446,3.118446,1.634204,1.301588,1.126669,1.124123,1.175715,1.181168,1.122641,1.122641,0.58211,0.58211,12.929801,16.788684,19.914243,19.968354,18.926281,18.822464,20,20,20,20,,,,,,,,,,,2236,2236,3.118446,3.118446,3.118446,3.118446,3.118446,3.118446,3.118446,3.118446,1.122641,1.122641,20,20,, +2560,0,0.30273,1,1,0,2,5,GRV,4,3,Quick,Rd,649505,0.996,1.298,0,6.487078,6.55,4.5,1.210921,1.210921,1.210921,1.210921,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.219137,1.210925,1.210921,1.210921,1.219137,1.210925,1.211193,1.211251,1.210921,1.210921,1.211193,1.211251,1.211005,1.213171,1.210921,1.210921,1.211005,1.213171,1.210921,1.210921,1.210921,1.210921,1.210921,1.210921,,,,,,,1.219137,1.210925,1.211193,1.211251,1.211005,1.213171,1.210921,1.210921,1.210921,1.210921,0.420232,0.417769,0.417849,0.417867,0.417793,0.418443,0.417768,0.417768,0.214939,0.214939,14.898919,14.999958,14.996637,14.995919,14.998959,14.972187,15,15,15,15,,,,,,,,,,,2064,2064,1.210921,1.210921,1.210921,1.210921,1.210921,1.210921,1.210921,1.210921,0.417768,0.417768,15,15,, +2655,0,0.37202,1,1,1,2,4,,4,3,Grange Hall,Rd,649504,3.193,3.565,0,7.971855,4.5,4.5,0.5874,0.5874,0.5874,0.5874,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.886474,1.047711,0.5874,0.5874,0.886474,1.047711,0.730815,0.731695,0.5874,0.5874,0.730815,0.731695,0.791269,0.815847,0.5874,0.5874,0.791269,0.815847,0.5874,0.5874,0.5874,0.5874,0.5874,0.5874,,,,,,,0.886474,1.047711,0.730815,0.731695,0.791269,0.815847,0.5874,0.5874,0.5874,0.5874,0.332906,0.381277,0.286208,0.286472,0.304344,0.311718,0.243184,0.243184,0.129032,0.129032,25.179745,21.304735,30.542873,30.506146,28.209365,27.359533,38,38,38,38,,,,,,,,,,,3406,3406,0.5874,0.5874,0.5874,0.5874,0.5874,0.5874,0.5874,0.5874,0.243184,0.243184,38,38,, +2664,0,1.334499,1,1,0,2,5,GRV,5,3,Rose Center,Rd,649409,2.123,3.457,0,28.596417,5.55,5,4.003498,4.003498,4.003498,4.003498,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,5.122328,4.398517,4.003498,4.003498,5.122328,4.398517,4.159289,4.161231,4.003498,4.003498,4.159289,4.161231,5.062557,5.265663,4.003498,4.003498,5.062557,5.265663,4.003498,4.003498,4.003498,4.003498,4.003498,4.003498,,,,,,,5.122328,4.398517,4.159289,4.161231,5.062557,5.265663,4.003498,4.003498,4.003498,4.003498,1.776908,1.559765,1.487997,1.488579,1.758977,1.819909,1.441259,1.441259,0.74732,0.74732,15.631559,18.203856,19.250878,19.241895,15.816111,15.206056,20,20,20,20,,,,,,,,,,,2236,2236,4.003498,4.003498,4.003498,4.003498,4.003498,4.003498,4.003498,4.003498,1.441259,1.441259,20,20,, +2715,0,1.992165,1,1,0,2,5,,5,3,Ormond,Rd,649309,2.044,4.035,0,42.689249,3.7,5,3.98433,3.98433,3.98433,3.98433,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.328404,4.092164,3.98433,3.98433,4.328404,4.092164,3.985407,3.985336,3.98433,3.98433,3.985407,3.985336,4.091109,4.28793,3.98433,3.98433,4.091109,4.28793,3.98433,3.98433,3.98433,3.98433,3.98433,3.98433,,,,,,,4.328404,4.092164,3.985407,3.985336,4.091109,4.28793,3.98433,3.98433,3.98433,3.98433,1.657111,1.586239,1.554212,1.55419,1.585922,1.644969,1.553889,1.553889,0.816788,0.816788,27.615233,29.209458,29.991894,29.99243,29.216994,27.875895,30,30,30,30,,,,,,,,,,,2580,2580,3.98433,3.98433,3.98433,3.98433,3.98433,3.98433,3.98433,3.98433,1.553889,1.553889,30,30,, +2718,-1,1.229528,0,3,0,1,1,,4,3,W I 96,,657304,1.285,2.514,0,,0.8,7.5,,1.053881,,1.053881,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.060977,,1.053881,,1.060977,,1.056822,,1.053881,,1.056822,,1.356409,,1.053881,,1.356409,,1.053881,,1.053881,,1.053881,,,,,,,,1.060977,,1.056822,,1.356409,,1.053881,,1.053881,,0.539608,,0.538362,,0.628238,,0.53748,,0.29333,,69.531863,,69.805209,,54.387511,,70,,70,,,,,,,,,,,,22704,,1.053881,,1.053881,,1.053881,,1.053881,,0.53748,,70,, +2765,0,0.763238,1,1,0,2,4,,5,3,Milford,Rd,679302,2.62,3.383,0,16.355096,3,4,1.144857,1.144857,1.144857,1.144857,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.487287,1.59132,1.144857,1.144857,1.487287,1.59132,1.300587,1.312098,1.144857,1.144857,1.300587,1.312098,1.67041,1.695987,1.144857,1.144857,1.67041,1.695987,1.144857,1.144857,1.144857,1.144857,1.144857,1.144857,,,,,,,1.487287,1.59132,1.300587,1.312098,1.67041,1.695987,1.144857,1.144857,1.144857,1.144857,0.583569,0.614779,0.527559,0.531012,0.638506,0.646179,0.48084,0.48084,0.255685,0.255685,30.790482,28.777528,35.210449,34.901558,27.414985,27.001551,40,40,40,40,,,,,,,,,,,3096,3096,1.144857,1.144857,1.144857,1.144857,1.144857,1.144857,1.144857,1.144857,0.48084,0.48084,40,40,, +2927,1,1.533246,3,0,0,1,1,,4,3,E I 96,,657303,1.076,2.609,0,,0.8,7.5,1.314211,,1.314211,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.857007,,1.314211,,1.857007,,1.320571,,1.314211,,1.320571,,1.348376,,1.314211,,1.348376,,1.314211,,1.314211,,1.314211,,,,,,,,1.857007,,1.320571,,1.348376,,1.314211,,1.314211,,0.833086,,0.672155,,0.680497,,0.670247,,0.365789,,49.539266,,69.662856,,68.226346,,70,,70,,,,,,,,,,,,22704,,1.314211,,1.314211,,1.314211,,1.314211,,0.670247,,70,,, +3275,0,1.518965,1,1,0,2,4,,5,3,General Motors,Rd,661208,1.003,2.521,0,32.549255,3,4,2.278448,2.278448,2.278448,2.278448,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.739101,2.565441,2.278448,2.278448,2.739101,2.565441,2.318159,2.334816,2.278448,2.278448,2.318159,2.334816,2.502816,2.593694,2.278448,2.278448,2.502816,2.593694,2.278448,2.278448,2.278448,2.278448,2.278448,2.278448,,,,,,,2.739101,2.565441,2.318159,2.334816,2.502816,2.593694,2.278448,2.278448,2.278448,2.278448,1.095144,1.043046,0.968861,0.973859,1.024259,1.051522,0.956948,0.956948,0.508853,0.508853,33.272934,35.52524,39.314783,39.034296,36.414148,35.13827,40,40,40,40,,,,,,,,,,,3096,3096,2.278448,2.278448,2.278448,2.278448,2.278448,2.278448,2.278448,2.278448,0.956948,0.956948,40,40,, +3378,0,0.359762,1,1,0,2,5,,5,3,11 Mile,Rd,656603,2.2,2.559,0,7.70918,3.7,5,0.719523,0.719523,0.719523,0.719523,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.747176,0.721615,0.719523,0.719523,0.747176,0.721615,0.72096,0.719877,0.719523,0.719523,0.72096,0.719877,0.727899,0.764077,0.719523,0.719523,0.727899,0.764077,0.719523,0.719523,0.719523,0.719523,0.719523,0.719523,,,,,,,0.747176,0.721615,0.72096,0.719877,0.727899,0.764077,0.719523,0.719523,0.719523,0.719523,0.28891,0.281242,0.281045,0.28072,0.283127,0.29398,0.280614,0.280614,0.147502,0.147502,28.889701,29.91305,29.940245,29.985262,29.654798,28.250698,30,30,30,30,,,,,,,,,,,2580,2580,0.719523,0.719523,0.719523,0.719523,0.719523,0.719523,0.719523,0.719523,0.280614,0.280614,30,30,, +3419,0,0.968582,1,1,0,2,4,,5,3,Milford,Rd,660907,0.24,1.208,0,20.755324,3,4,1.452873,1.452873,1.452873,1.452873,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.922644,1.820598,1.452873,1.452873,1.922644,1.820598,1.619162,1.576827,1.452873,1.452873,1.619162,1.576827,2.029165,1.924002,1.452873,1.452873,2.029165,1.924002,1.452873,1.452873,1.452873,1.452873,1.452873,1.452873,,,,,,,1.922644,1.820598,1.619162,1.576827,2.029165,1.924002,1.452873,1.452873,1.452873,1.452873,0.751138,0.720524,0.660093,0.647393,0.783094,0.751545,0.610207,0.610207,0.324475,0.324475,30.226561,31.920787,35.891963,36.855602,28.639817,30.205227,40,40,40,40,,,,,,,,,,,3096,3096,1.452873,1.452873,1.452873,1.452873,1.452873,1.452873,1.452873,1.452873,0.610207,0.610207,40,40,, +3556,0,0.274905,1,1,0,2,4,,4,3,Pontiac,Trl,656507,6.471,6.746,0,5.890826,4.5,4.5,0.434061,0.434061,0.434061,0.434061,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.647942,0.435836,0.434061,0.434061,0.647942,0.435836,0.438213,0.434143,0.434061,0.434061,0.438213,0.434143,0.456131,0.618252,0.434061,0.434061,0.456131,0.618252,0.434061,0.434061,0.434061,0.434061,0.434061,0.434061,,,,,,,0.647942,0.435836,0.438213,0.434143,0.456131,0.618252,0.434061,0.434061,0.434061,0.434061,0.243866,0.180234,0.180947,0.179726,0.186322,0.234959,0.179701,0.179701,0.095349,0.095349,25.456445,37.845209,37.639976,37.992795,36.16132,26.678925,38,38,38,38,,,,,,,,,,,3096,3096,0.434061,0.434061,0.434061,0.434061,0.434061,0.434061,0.434061,0.434061,0.179701,0.179701,38,38,, +3588,0,0.370537,1,1,0,2,5,,4,3,Elm,,650808,0,0.37,0,7.940079,5.8,4.5,0.823416,0.823416,0.823416,0.823416,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.824594,0.824155,0.823416,0.823416,0.824594,0.824155,0.82342,0.823419,0.823416,0.823416,0.82342,0.823419,0.823743,0.823522,0.823416,0.823416,0.823743,0.823522,0.823416,0.823416,0.823416,0.823416,0.823416,0.823416,,,,,,,0.824594,0.824155,0.82342,0.823419,0.823743,0.823522,0.823416,0.823416,0.823416,0.823416,0.314075,0.313943,0.313723,0.313722,0.31382,0.313753,0.313721,0.313721,0.164271,0.164271,26.961414,26.975794,26.999871,26.999894,26.989267,26.996501,27,27,27,27,,,,,,,,,,,2580,2580,0.823416,0.823416,0.823416,0.823416,0.823416,0.823416,0.823416,0.823416,0.313721,0.313721,27,27,, +3603,0,0.429785,1,1,0,2,5,,4,3,Maple,,650805,0.177,0.606,0,9.209677,5.8,4.5,0.955078,0.955078,0.955078,0.955078,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.02792,1.007328,0.955078,0.955078,1.02792,1.007328,1.052181,1.029092,0.955078,0.955078,1.052181,1.029092,1.059546,1.154668,0.955078,0.955078,1.059546,1.154668,0.955078,0.955078,0.955078,0.955078,0.955078,0.955078,,,,,,,1.02792,1.007328,1.052181,1.029092,1.059546,1.154668,0.955078,0.955078,0.955078,0.955078,0.385737,0.37956,0.393016,0.386089,0.395225,0.423762,0.363885,0.363885,0.190538,0.190538,25.086681,25.599513,24.50822,25.058101,24.337875,22.332904,27,27,27,27,,,,,,,,,,,2580,2580,0.955078,0.955078,0.955078,0.955078,0.955078,0.955078,0.955078,0.955078,0.363885,0.363885,27,27,, +3612,0,0.6698,2,2,1,2,3,,4,3,Dixie,Hwy,689103,0.632,1.302,0,14.352861,3.7,5,1.0047,1.0047,1.0047,1.0047,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.138067,1.112769,1.0047,1.0047,1.138067,1.112769,1.054931,1.049953,1.0047,1.0047,1.054931,1.049953,1.212417,1.289823,1.0047,1.0047,1.212417,1.289823,1.0047,1.0047,1.0047,1.0047,1.0047,1.0047,,,,,,,1.138067,1.112769,1.054931,1.049953,1.212417,1.289823,1.0047,1.0047,1.0047,1.0047,0.461984,0.454395,0.437043,0.43555,0.484289,0.507511,0.421974,0.421974,0.224383,0.224383,35.312512,36.115306,38.095389,38.27601,33.147022,31.157776,40,40,40,40,,,,,,,,,,,7946,7946,1.0047,1.0047,1.0047,1.0047,1.0047,1.0047,1.0047,1.0047,0.421974,0.421974,40,40,, +3622,0,1.302752,1,1,0,2,5,,5,3,Andersonville,Rd,688910,0,1.302,0,27.91612,3.7,5,2.605505,2.605505,2.605505,2.605505,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.605844,2.605505,2.605505,2.605505,2.605844,2.605505,2.605505,2.605505,2.605505,2.605505,2.605505,2.605505,2.605514,2.605589,2.605505,2.605505,2.605514,2.605589,2.605505,2.605505,2.605505,2.605505,2.605505,2.605505,,,,,,,2.605844,2.605505,2.605505,2.605505,2.605514,2.605589,2.605505,2.605505,2.605505,2.605505,1.016248,1.016147,1.016147,1.016147,1.016149,1.016172,1.016147,1.016147,0.534128,0.534128,29.996097,29.999998,30,30,29.999896,29.999023,30,30,30,30,,,,,,,,,,,2580,2580,2.605505,2.605505,2.605505,2.605505,2.605505,2.605505,2.605505,2.605505,1.016147,1.016147,30,30,, +4353,1,0.698102,2,0,0,2,4,DIV,4,3,Sashabaw,Rd,697309,3.099,3.797,0,14.959325,4.5,4.5,0.974096,,0.974096,,43,,20000,,4540,,10000,,6452,,6880,,6872,,1.100458,,0.974096,,1.100458,,0.995447,,0.974096,,0.995447,,1.086893,,0.974096,,1.086893,,0.974096,,0.974096,,0.974096,,,,,,,,1.100458,,0.995447,,1.086893,,0.974096,,0.974096,,0.455796,,0.424292,,0.451726,,0.417887,,0.222906,,38.062437,,42.077699,,38.537487,,43,,43,,,,,,,,,,,,6880,,0.974096,,0.974096,,0.974096,,0.974096,,0.417887,,43,,, +5511,-1,3.744285,0,2,0,1,2,,5,8,S US 23,,932002,17.955,21.698,0,,1.02,7,,3.209387,,3.209387,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.399001,,3.209387,,3.399001,,3.243391,,3.209387,,3.243391,,3.346866,,3.209387,,3.346866,,3.209387,,3.209387,,3.209387,,,,,,,,3.399001,,3.243391,,3.346866,,3.209387,,3.209387,,1.693672,,1.646989,,1.678031,,1.636787,,0.893279,,66.095038,,69.266108,,67.124613,,70,,70,,,,,,,,,,,,15136,,3.209387,,3.209387,,3.209387,,3.209387,,1.636787,,70,, +5710,0,1.021339,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,21.042,22.063,0,21.88584,3.7,5,2.042678,2.042678,2.042678,2.042678,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.04268,2.04268,2.042678,2.042678,2.04268,2.04268,2.04268,2.042681,2.042678,2.042678,2.04268,2.042681,2.042685,2.042685,2.042678,2.042678,2.042685,2.042685,2.042678,2.042678,2.042678,2.042678,2.042678,2.042678,,,,,,,2.04268,2.04268,2.04268,2.042681,2.042685,2.042685,2.042678,2.042678,2.042678,2.042678,0.796645,0.796645,0.796645,0.796645,0.796646,0.796647,0.796645,0.796645,0.418749,0.418749,29.999981,29.99997,29.999978,29.999962,29.999907,29.999902,30,30,30,30,,,,,,,,,,,2580,2580,2.042678,2.042678,2.042678,2.042678,2.042678,2.042678,2.042678,2.042678,0.796645,0.796645,30,30,, +6809,1,3.703071,2,0,0,1,2,,5,8,N US 23,,931510,17.982,21.683,0,,1.02,7,3.174061,,3.174061,,70,,44000,,9988,,22000,,14194,,15136,,15118,,3.226064,,3.174061,,3.226064,,3.204423,,3.174061,,3.204423,,3.446793,,3.174061,,3.446793,,3.174061,,3.174061,,3.174061,,,,,,,,3.226064,,3.204423,,3.446793,,3.174061,,3.174061,,1.634372,,1.62788,,1.700591,,1.618771,,0.883447,,68.871636,,69.336755,,64.461155,,70,,70,,,,,,,,,,,,15136,,3.174061,,3.174061,,3.174061,,3.174061,,1.618771,,70,,, +6984,0,1.00236,1,1,0,2,4,,5,8,Argentine,Rd,934310,8.206,9.208,0,21.479135,3,4,1.503539,1.503539,1.503539,1.503539,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.507539,1.515781,1.503539,1.503539,1.507539,1.515781,1.505852,1.506468,1.503539,1.503539,1.505852,1.506468,1.521615,1.511538,1.503539,1.503539,1.521615,1.511538,1.503539,1.503539,1.503539,1.503539,1.503539,1.503539,,,,,,,1.507539,1.515781,1.505852,1.506468,1.521615,1.511538,1.503539,1.503539,1.503539,1.503539,0.632686,0.635159,0.63218,0.632365,0.636909,0.633886,0.631487,0.631487,0.33579,0.33579,39.893886,39.67695,39.938584,39.922229,39.524835,39.788328,40,40,40,40,,,,,,,,,,,3096,3096,1.503539,1.503539,1.503539,1.503539,1.503539,1.503539,1.503539,1.503539,0.631487,0.631487,40,40,, +7306,0,1.006583,1,1,0,2,7,,5,8,Latson,Rd,938109,2.015,3.021,0,21.569638,5.8,6,2.415799,2.415799,2.415799,2.415799,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.4158,2.415883,2.415799,2.415799,2.4158,2.415883,2.415803,2.415811,2.415799,2.415799,2.415803,2.415811,2.416243,2.415823,2.415799,2.415799,2.416243,2.415823,2.415799,2.415799,2.415799,2.415799,2.415799,2.415799,,,,,,,2.4158,2.415883,2.415803,2.415811,2.416243,2.415823,2.415799,2.415799,2.415799,2.415799,0.905925,0.90595,0.905926,0.905928,0.906058,0.905932,0.905925,0.905925,0.473094,0.473094,24.999996,24.99913,24.999963,24.999883,24.995407,24.999757,25,25,25,25,,,,,,,,,,,2064,2064,2.415799,2.415799,2.415799,2.415799,2.415799,2.415799,2.415799,2.415799,0.905925,0.905925,25,25,, +7416,0,2.066136,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,2.873,4.938,0,44.274335,5.8,6,4.958726,4.958726,4.958726,4.958726,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,,,,,,,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,1.859522,1.859522,1.859522,1.859522,1.859522,1.859522,1.859522,1.859522,0.971084,0.971084,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,4.958726,1.859522,1.859522,25,25,, +8106,0,1.527393,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,7.806,9.332,0,32.729855,3.7,5,3.054786,3.054786,3.054786,3.054786,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.055255,3.155784,3.054786,3.054786,3.055255,3.155784,3.056071,3.056481,3.054786,3.054786,3.056071,3.056481,3.152476,3.059759,3.054786,3.054786,3.152476,3.059759,3.054786,3.054786,3.054786,3.054786,3.054786,3.054786,,,,,,,3.055255,3.155784,3.056071,3.056481,3.152476,3.059759,3.054786,3.054786,3.054786,3.054786,1.191507,1.221666,1.191752,1.191875,1.220674,1.192859,1.191367,1.191367,0.626231,0.626231,29.995397,29.039886,29.98739,29.983367,29.070353,29.951244,30,30,30,30,,,,,,,,,,,2580,2580,3.054786,3.054786,3.054786,3.054786,3.054786,3.054786,3.054786,3.054786,1.191367,1.191367,30,30,, +19816,0,0.231273,1,1,0,2,4,,4,3,Grand River,Ave,4104142,3.28,3.511,0,4.955844,4.5,4.5,0.365167,0.365167,0.365167,0.365167,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.595133,0.365613,0.365167,0.365167,0.595133,0.365613,0.365913,0.365437,0.365167,0.365167,0.365913,0.365437,0.367794,0.402832,0.365167,0.365167,0.367794,0.402832,0.365167,0.365167,0.365167,0.365167,0.365167,0.365167,,,,,,,0.595133,0.365613,0.365913,0.365437,0.367794,0.402832,0.365167,0.365167,0.365167,0.365167,0.220169,0.151313,0.151403,0.15126,0.151967,0.162479,0.151179,0.151179,0.080215,0.080215,23.316396,37.953654,37.92254,37.971938,37.72866,34.446997,38,38,38,38,,,,,,,,,,,3096,3096,0.365167,0.365167,0.365167,0.365167,0.365167,0.365167,0.365167,0.365167,0.151179,0.151179,38,38,, +19851,0,1.824274,1,1,0,2,4,,5,3,Commerce,Rd,4104140,2.188,4.012,0,39.091577,3,4,2.73641,2.73641,2.73641,2.73641,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.402368,3.118668,2.73641,2.73641,3.402368,3.118668,2.826209,2.823552,2.73641,2.73641,2.826209,2.823552,3.392959,3.473412,2.73641,2.73641,3.392959,3.473412,2.73641,2.73641,2.73641,2.73641,2.73641,2.73641,,,,,,,3.402368,3.118668,2.826209,2.823552,3.392959,3.473412,2.73641,2.73641,2.73641,2.73641,1.34908,1.26397,1.176232,1.175435,1.346257,1.370393,1.149292,1.149292,0.611132,0.611132,32.170655,35.097172,38.729059,38.7655,32.259872,31.512647,40,40,40,40,,,,,,,,,,,3096,3096,2.73641,2.73641,2.73641,2.73641,2.73641,2.73641,2.73641,2.73641,1.149292,1.149292,40,40,, +21000,0,1.005153,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,12.23,13.235,0,21.538999,3.7,5,2.010307,2.010307,2.010307,2.010307,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.022157,2.047936,2.010307,2.010307,2.022157,2.047936,2.012663,2.013316,2.010307,2.010307,2.012663,2.013316,2.154448,2.090346,2.010307,2.010307,2.154448,2.090346,2.010307,2.010307,2.010307,2.010307,2.010307,2.010307,,,,,,,2.022157,2.047936,2.012663,2.013316,2.154448,2.090346,2.010307,2.010307,2.010307,2.010307,0.787575,0.795308,0.784727,0.784922,0.827262,0.808031,0.78402,0.78402,0.412113,0.412113,29.824189,29.448774,29.96487,29.955157,27.992874,28.851297,30,30,30,30,,,,,,,,,,,2580,2580,2.010307,2.010307,2.010307,2.010307,2.010307,2.010307,2.010307,2.010307,0.78402,0.78402,30,30,, +21069,-1,1.181768,0,2,0,2,3,DIV,5,3,Highland,Rd,4410120,2.002,3.183,0,25.323604,1.7,4,,1.289202,,1.289202,,55,,24000,,5448,,12000,,7742,,8256,,8246,,2.136342,,1.289202,,2.136342,,1.455538,,1.289202,,1.455538,,2.183205,,1.289202,,2.183205,,1.289202,,1.289202,,1.289202,,,,,,,,2.136342,,1.455538,,2.183205,,1.289202,,1.289202,,0.853621,,0.64938,,0.86768,,0.599479,,0.323375,,33.190427,,48.714681,,32.477981,,55,,55,,,,,,,,,,,,8256,,1.289202,,1.289202,,1.289202,,1.289202,,0.599479,,55,, +21971,0,0.444231,1,1,0,2,5,,4,3,White Lake,Rd,4412733,1.91,2.354,0,9.519239,5.8,4.5,0.98718,0.98718,0.98718,0.98718,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.018656,1.171892,0.98718,0.98718,1.018656,1.171892,1.033645,1.048634,0.98718,0.98718,1.033645,1.048634,1.130413,1.091597,0.98718,0.98718,1.130413,1.091597,0.98718,0.98718,0.98718,0.98718,0.98718,0.98718,,,,,,,1.018656,1.171892,1.033645,1.048634,1.130413,1.091597,0.98718,0.98718,0.98718,0.98718,0.385559,0.431529,0.390055,0.394552,0.419086,0.407441,0.376116,0.376116,0.196942,0.196942,26.165713,22.744307,25.786295,25.417699,23.57887,24.417311,27,27,27,27,,,,,,,,,,,2580,2580,0.98718,0.98718,0.98718,0.98718,0.98718,0.98718,0.98718,0.98718,0.376116,0.376116,27,27,, +25259,0,0.641763,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,13.752055,0.15,4,2.56705,2.56705,2.56705,2.56705,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,,,,,,,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,0.885632,0.885632,0.885632,0.885632,0.885632,0.885632,0.885632,0.885632,0.455651,0.455651,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,2.56705,0.885632,0.885632,15,15,, +25327,0,0.709046,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.193848,0.15,4,2.836185,2.836185,2.836185,2.836185,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,,,,,,,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,0.978484,0.978484,0.978484,0.978484,0.978484,0.978484,0.978484,0.978484,0.503423,0.503423,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,2.836185,0.978484,0.978484,15,15,, +26905,0,1.945977,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,41.699509,0.15,4,7.783908,7.783908,7.783908,7.783908,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,,,,,,,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,2.685448,2.685448,2.685448,2.685448,2.685448,2.685448,2.685448,2.685448,1.381644,1.381644,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,7.783908,2.685448,2.685448,15,15,, +26914,0,0.321513,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.88956,0.15,4,1.286051,1.286051,1.286051,1.286051,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,,,,,,,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,0.443688,0.443688,0.443688,0.443688,0.443688,0.443688,0.443688,0.443688,0.228274,0.228274,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,1.286051,0.443688,0.443688,15,15,, +26917,0,1.619753,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.708998,0.15,4,6.479013,6.479013,6.479013,6.479013,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,,,,,,,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,2.235259,2.235259,2.235259,2.235259,2.235259,2.235259,2.235259,2.235259,1.150025,1.150025,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,6.479013,2.235259,2.235259,15,15,, +26919,0,1.49891,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.119496,0.15,4,5.995639,5.995639,5.995639,5.995639,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,,,,,,,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,2.068496,2.068496,2.068496,2.068496,2.068496,2.068496,2.068496,2.068496,1.064226,1.064226,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,5.995639,2.068496,2.068496,15,15,, +26920,0,1.40309,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,30.066217,0.15,4,5.61236,5.61236,5.61236,5.61236,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,,,,,,,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,1.936264,1.936264,1.936264,1.936264,1.936264,1.936264,1.936264,1.936264,0.996194,0.996194,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,5.61236,1.936264,1.936264,15,15,, +26922,0,2.291742,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,49.108759,0.15,4,9.166968,9.166968,9.166968,9.166968,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,,,,,,,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,3.162604,3.162604,3.162604,3.162604,3.162604,3.162604,3.162604,3.162604,1.627137,1.627137,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,9.166968,3.162604,3.162604,15,15,, +26928,0,1.734098,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.15925,0.15,4,6.936393,6.936393,6.936393,6.936393,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,,,,,,,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,2.393056,2.393056,2.393056,2.393056,2.393056,2.393056,2.393056,2.393056,1.23121,1.23121,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,6.936393,2.393056,2.393056,15,15,, +26930,0,0.425254,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.112577,0.15,4,1.701014,1.701014,1.701014,1.701014,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,,,,,,,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,0.58685,0.58685,0.58685,0.58685,0.58685,0.58685,0.58685,0.58685,0.30193,0.30193,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,1.701014,0.58685,0.58685,15,15,, +26934,0,0.364125,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.802673,0.15,4,1.456499,1.456499,1.456499,1.456499,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,,,,,,,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,0.502492,0.502492,0.502492,0.502492,0.502492,0.502492,0.502492,0.502492,0.258529,0.258529,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,1.456499,0.502492,0.502492,15,15,, +26937,0,0.655428,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.044878,0.15,4,2.621711,2.621711,2.621711,2.621711,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,,,,,,,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,0.90449,0.90449,0.90449,0.90449,0.90449,0.90449,0.90449,0.90449,0.465354,0.465354,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,2.621711,0.90449,0.90449,15,15,, +26946,0,1.014824,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.746232,0.15,4,4.059297,4.059297,4.059297,4.059297,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,,,,,,,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,1.400457,1.400457,1.400457,1.400457,1.400457,1.400457,1.400457,1.400457,0.720525,0.720525,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,4.059297,1.400457,1.400457,15,15,, +26958,0,1.107214,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.726009,0.15,4,4.428855,4.428855,4.428855,4.428855,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,,,,,,,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,1.527955,1.527955,1.527955,1.527955,1.527955,1.527955,1.527955,1.527955,0.786122,0.786122,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,4.428855,1.527955,1.527955,15,15,, +26965,0,0.300462,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.438468,0.15,4,1.201847,1.201847,1.201847,1.201847,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,,,,,,,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,0.414637,0.414637,0.414637,0.414637,0.414637,0.414637,0.414637,0.414637,0.213328,0.213328,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,1.201847,0.414637,0.414637,15,15,, +26967,0,0.505376,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.829479,0.15,4,2.021503,2.021503,2.021503,2.021503,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.021505,2.021507,2.021503,2.021503,2.021505,2.021507,2.021504,2.021504,2.021503,2.021503,2.021504,2.021504,2.021509,2.021509,2.021503,2.021503,2.021509,2.021509,2.021503,2.021503,2.021503,2.021503,2.021503,2.021503,,,,,,,2.021505,2.021507,2.021504,2.021504,2.021509,2.021509,2.021503,2.021503,2.021503,2.021503,0.697419,0.69742,0.697419,0.697419,0.69742,0.69742,0.697418,0.697418,0.358817,0.358817,14.99998,14.999969,14.99999,14.999991,14.999954,14.999957,15,15,15,15,,,,,,,,,,,34400,34400,2.021503,2.021503,2.021503,2.021503,2.021503,2.021503,2.021503,2.021503,0.697418,0.697418,15,15,, +26983,0,0.518151,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.103235,0.15,4,2.072604,2.072604,2.072604,2.072604,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,,,,,,,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,0.715048,0.715048,0.715048,0.715048,0.715048,0.715048,0.715048,0.715048,0.367887,0.367887,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,2.072604,0.715048,0.715048,15,15,, +26984,0,0.841034,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.022151,0.15,4,3.364135,3.364135,3.364135,3.364135,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,,,,,,,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,1.160627,1.160627,1.160627,1.160627,1.160627,1.160627,1.160627,1.160627,0.597134,0.597134,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,3.364135,1.160627,1.160627,15,15,, +26985,0,0.617918,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,13.241099,0.15,4,2.471672,2.471672,2.471672,2.471672,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,,,,,,,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,0.852727,0.852727,0.852727,0.852727,0.852727,0.852727,0.852727,0.852727,0.438722,0.438722,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,2.471672,0.852727,0.852727,15,15,, +27347,0,1.534325,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.878385,0.15,4,6.137299,6.137299,6.137299,6.137299,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,,,,,,,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,2.117368,2.117368,2.117368,2.117368,2.117368,2.117368,2.117368,2.117368,1.08937,1.08937,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,6.137299,2.117368,2.117368,15,15,, +27365,0,1.85145,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,39.673933,0.15,4,7.405801,7.405801,7.405801,7.405801,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,,,,,,,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,2.555001,2.555001,2.555001,2.555001,2.555001,2.555001,2.555001,2.555001,1.31453,1.31453,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,7.405801,2.555001,2.555001,15,15,, +27368,0,1.455872,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,31.197256,0.15,4,5.823488,5.823488,5.823488,5.823488,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,,,,,,,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,2.009103,2.009103,2.009103,2.009103,2.009103,2.009103,2.009103,2.009103,1.033669,1.033669,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,5.823488,2.009103,2.009103,15,15,, +29799,0,1.559816,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.424639,0.15,4,6.239266,6.239266,6.239266,6.239266,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,,,,,,,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,2.152547,2.152547,2.152547,2.152547,2.152547,2.152547,2.152547,2.152547,1.10747,1.10747,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,6.239266,2.152547,2.152547,15,15,, +29800,0,1.300788,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.87403,0.15,4,5.203152,5.203152,5.203152,5.203152,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,,,,,,,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,1.795088,1.795088,1.795088,1.795088,1.795088,1.795088,1.795088,1.795088,0.92356,0.92356,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,5.203152,1.795088,1.795088,15,15,, +30166,0,1.501281,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.170297,0.15,4,6.005122,6.005122,6.005122,6.005122,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,,,,,,,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,2.071767,2.071767,2.071767,2.071767,2.071767,2.071767,2.071767,2.071767,1.065909,1.065909,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,6.005122,2.071767,2.071767,15,15,, +30167,0,1.113995,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.871326,0.15,4,4.455981,4.455981,4.455981,4.455981,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,,,,,,,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,1.537313,1.537313,1.537313,1.537313,1.537313,1.537313,1.537313,1.537313,0.790937,0.790937,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,4.455981,1.537313,1.537313,15,15,, +30168,0,1.129947,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.213151,0.15,4,4.519788,4.519788,4.519788,4.519788,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,,,,,,,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,1.559327,1.559327,1.559327,1.559327,1.559327,1.559327,1.559327,1.559327,0.802262,0.802262,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,4.519788,1.559327,1.559327,15,15,, +5144,0,1.568565,1,1,0,2,5,,5,8,Old US 23,,932204,14.717,16.285,0,33.612105,3.7,5,3.13713,3.13713,3.13713,3.13713,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.19152,3.224802,3.13713,3.13713,3.19152,3.224802,3.141763,3.151531,3.13713,3.13713,3.141763,3.151531,3.221706,3.213488,3.13713,3.13713,3.221706,3.213488,3.13713,3.13713,3.13713,3.13713,3.13713,3.13713,,,,,,,3.19152,3.224802,3.141763,3.151531,3.221706,3.213488,3.13713,3.13713,3.13713,3.13713,1.239798,1.249782,1.224871,1.227801,1.248854,1.246388,1.223481,1.223481,0.643112,0.643112,29.488739,29.184393,29.955756,29.862909,29.212437,29.287143,30,30,30,30,,,,,,,,,,,2580,2580,3.13713,3.13713,3.13713,3.13713,3.13713,3.13713,3.13713,3.13713,1.223481,1.223481,30,30,, +5421,1,0.811723,2,0,0,1,2,,4,8,N US 23,,931510,5.76,6.571,0,,0.8,7.5,0.695762,,0.695762,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.734792,,0.695762,,0.734792,,0.697361,,0.695762,,0.697361,,0.831669,,0.695762,,0.831669,,0.695762,,0.695762,,0.695762,,,,,,,,0.734792,,0.697361,,0.831669,,0.695762,,0.695762,,0.366548,,0.355318,,0.395611,,0.354839,,0.193654,,66.28185,,69.839526,,58.561004,,70,,70,,,,,,,,,,,,15136,,0.695762,,0.695762,,0.695762,,0.695762,,0.354839,,70,,, +5588,1,2.612209,2,0,0,1,2,,5,8,N US 23,,931510,14.946,17.558,0,,1.02,7,2.239036,,2.239036,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.258266,,2.239036,,2.258266,,2.256874,,2.239036,,2.256874,,2.461624,,2.239036,,2.461624,,2.239036,,2.239036,,2.239036,,,,,,,,2.258266,,2.256874,,2.461624,,2.239036,,2.239036,,1.147677,,1.14726,,1.208685,,1.141909,,0.623198,,69.403935,,69.446743,,63.670372,,70,,70,,,,,,,,,,,,15136,,2.239036,,2.239036,,2.239036,,2.239036,,1.141909,,70,,, +5705,1,0.206355,1,0,0,1,1,RFS,4,8,S US 23/E I 96,RAMP,932103,0,0.206,0,,0.22,6,0.27514,,0.27514,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.304302,,0.27514,,0.304302,,0.276459,,0.27514,,0.276459,,0.279014,,0.27514,,0.279014,,0.27514,,0.27514,,0.27514,,,,,,,,0.304302,,0.276459,,0.279014,,0.27514,,0.27514,,0.128435,,0.120082,,0.120848,,0.119686,,0.06397,,40.687546,,44.785358,,44.375153,,45,,45,,,,,,,,,,,,5160,,0.27514,,0.27514,,0.27514,,0.27514,,0.119686,,45,,, +5707,1,0.356032,1,0,0,1,1,RFS,4,8,S US 23/W I 96,RAMP,932105,0,0.356,0,,0.22,6,0.47471,,0.47471,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.474852,,0.47471,,0.474852,,0.474714,,0.47471,,0.474714,,0.474929,,0.47471,,0.474929,,0.47471,,0.47471,,0.47471,,,,,,,,0.474852,,0.474714,,0.474929,,0.47471,,0.47471,,0.206541,,0.2065,,0.206565,,0.206499,,0.11037,,44.986572,,44.999594,,44.97921,,45,,45,,,,,,,,,,,,5160,,0.47471,,0.47471,,0.47471,,0.47471,,0.206499,,45,,, +5989,-1,2.533638,0,2,0,1,2,,5,8,S US 23,,932002,14.984,17.517,0,,1.02,7,,2.17169,,2.17169,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.352443,,2.17169,,2.352443,,2.191606,,2.17169,,2.191606,,2.237165,,2.17169,,2.237165,,2.17169,,2.17169,,2.17169,,,,,,,,2.352443,,2.191606,,2.237165,,2.17169,,2.17169,,1.161788,,1.113537,,1.127204,,1.107562,,0.604454,,64.621448,,69.363861,,67.951319,,70,,70,,,,,,,,,,,,15136,,2.17169,,2.17169,,2.17169,,2.17169,,1.107562,,70,, +5990,0,0.773248,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,11.599,12.372,0,16.569597,4.5,4.5,1.220918,1.220918,1.220918,1.220918,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.422348,1.415809,1.220918,1.220918,1.422348,1.415809,1.28103,1.273487,1.220918,1.220918,1.28103,1.273487,1.577351,1.514306,1.220918,1.220918,1.577351,1.514306,1.220918,1.220918,1.220918,1.220918,1.220918,1.220918,,,,,,,1.422348,1.415809,1.28103,1.273487,1.577351,1.514306,1.220918,1.220918,1.220918,1.220918,0.565889,0.563927,0.523494,0.521231,0.61239,0.593477,0.50546,0.50546,0.268195,0.268195,32.618506,32.76917,36.216848,36.431374,29.413156,30.637703,38,38,38,38,,,,,,,,,,,3096,3096,1.220918,1.220918,1.220918,1.220918,1.220918,1.220918,1.220918,1.220918,0.50546,0.50546,38,38,, +6075,1,7.181136,2,0,0,1,2,,5,8,N US 23,,931510,7.202,14.38,0,,1.02,7,6.155259,,6.155259,,70,,44000,,9988,,22000,,14194,,15136,,15118,,6.209579,,6.155259,,6.209579,,6.16547,,6.155259,,6.16547,,6.828587,,6.155259,,6.828587,,6.155259,,6.155259,,6.155259,,,,,,,,6.209579,,6.16547,,6.828587,,6.155259,,6.155259,,3.155478,,3.142245,,3.341181,,3.139182,,1.713214,,69.387653,,69.884076,,63.097696,,70,,70,,,,,,,,,,,,15136,,6.155259,,6.155259,,6.155259,,6.155259,,3.139182,,70,,, +6081,0,0.202013,2,2,1,2,4,,4,8,Old US 23,Hwy,932204,7.706,7.908,0,4.32884,4.5,4.5,0.318967,0.318967,0.318967,0.318967,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.349177,0.390811,0.318967,0.318967,0.349177,0.390811,0.332858,0.33354,0.318967,0.318967,0.332858,0.33354,0.412893,0.384051,0.318967,0.318967,0.412893,0.384051,0.318967,0.318967,0.318967,0.318967,0.318967,0.318967,,,,,,,0.349177,0.390811,0.332858,0.33354,0.412893,0.384051,0.318967,0.318967,0.318967,0.318967,0.141115,0.153605,0.13622,0.136424,0.16023,0.151578,0.132052,0.132052,0.070066,0.070066,34.712323,31.014393,36.41418,36.339683,29.35566,31.560257,38,38,38,38,,,,,,,,,,,6502,6502,0.318967,0.318967,0.318967,0.318967,0.318967,0.318967,0.318967,0.318967,0.132052,0.132052,38,38,, +6392,0,1.001665,1,1,0,2,5,,4,8,Hyne,Rd,931803,0,1.001,0,21.464247,5.8,4.5,2.225922,2.225922,2.225922,2.225922,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.234817,2.227325,2.225922,2.225922,2.234817,2.227325,2.226418,2.226098,2.225922,2.225922,2.226418,2.226098,2.229911,2.229058,2.225922,2.225922,2.229911,2.229058,2.225922,2.225922,2.225922,2.225922,2.225922,2.225922,,,,,,,2.234817,2.227325,2.226418,2.226098,2.229911,2.229058,2.225922,2.225922,2.225922,2.225922,0.850745,0.848497,0.848225,0.848129,0.849273,0.849017,0.848076,0.848076,0.444071,0.444071,26.89253,26.982993,26.993987,26.997861,26.951696,26.962015,27,27,27,27,,,,,,,,,,,2580,2580,2.225922,2.225922,2.225922,2.225922,2.225922,2.225922,2.225922,2.225922,0.848076,0.848076,27,27,, +6490,-1,7.228513,0,2,0,1,2,,4,8,S US 23,,932002,7.194,14.42,0,,0.8,7.5,,6.195868,,6.195868,,70,,44000,,9988,,22000,,14194,,15136,,15118,,7.062355,,6.195868,,7.062355,,6.204805,,6.195868,,6.204805,,6.283791,,6.195868,,6.283791,,6.195868,,6.195868,,6.195868,,,,,,,,7.062355,,6.204805,,6.283791,,6.195868,,6.195868,,3.419839,,3.162574,,3.18627,,3.159893,,1.724517,,61.41163,,69.899183,,69.020558,,70,,70,,,,,,,,,,,,15136,,6.195868,,6.195868,,6.195868,,6.195868,,3.159893,,70,, +6736,-1,0.237314,0,2,0,1,2,,4,8,S US 23,,932002,6.957,7.194,0,,0.8,7.5,,0.203412,,0.203412,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.212343,,0.203412,,0.212343,,0.203501,,0.203412,,0.203501,,0.20391,,0.203412,,0.20391,,0.203412,,0.203412,,0.203412,,,,,,,,0.212343,,0.203501,,0.20391,,0.203412,,0.203412,,0.106419,,0.103767,,0.103889,,0.10374,,0.056616,,67.055705,,69.969372,,69.829033,,70,,70,,,,,,,,,,,,15136,,0.203412,,0.203412,,0.203412,,0.203412,,0.10374,,70,, +6811,0,0.255804,1,1,0,2,5,,5,8,Crouse,Rd,931807,0.983,1.239,0,5.481518,3.7,5,0.511608,0.511608,0.511608,0.511608,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.522012,0.514591,0.511608,0.511608,0.522012,0.514591,0.511699,0.51213,0.511608,0.511608,0.511699,0.51213,0.517627,0.533421,0.511608,0.511608,0.517627,0.533421,0.511608,0.511608,0.511608,0.511608,0.511608,0.511608,,,,,,,0.522012,0.514591,0.511699,0.51213,0.517627,0.533421,0.511608,0.511608,0.511608,0.511608,0.202648,0.200422,0.199554,0.199684,0.201333,0.206071,0.199527,0.199527,0.10488,0.10488,29.402075,29.826099,29.994699,29.969436,29.651195,28.773252,30,30,30,30,,,,,,,,,,,2580,2580,0.511608,0.511608,0.511608,0.511608,0.511608,0.511608,0.511608,0.511608,0.199527,0.199527,30,30,, +6821,0,1.208075,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,9.314,10.522,0,25.887312,4.5,4.5,1.907486,1.907486,1.907486,1.907486,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.916355,1.945405,1.907486,1.907486,1.916355,1.945405,1.909377,1.909246,1.907486,1.907486,1.909377,1.909246,1.94622,1.918164,1.907486,1.907486,1.94622,1.918164,1.907486,1.907486,1.907486,1.907486,1.907486,1.907486,,,,,,,1.916355,1.945405,1.909377,1.909246,1.94622,1.918164,1.907486,1.907486,1.907486,1.907486,0.79236,0.801075,0.790267,0.790227,0.801319,0.792903,0.789699,0.789699,0.419011,0.419011,37.824136,37.259331,37.962361,37.964968,37.24373,37.788473,38,38,38,38,,,,,,,,,,,3096,3096,1.907486,1.907486,1.907486,1.907486,1.907486,1.907486,1.907486,1.907486,0.789699,0.789699,38,38,, +7019,0,0.362796,1,1,0,2,4,,4,8,Hilton,Rd,933806,1.552,1.915,0,7.774208,4.5,4.5,0.572836,0.572836,0.572836,0.572836,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.572917,0.57325,0.572836,0.572836,0.572917,0.57325,0.572838,0.57284,0.572836,0.572836,0.572838,0.57284,0.573294,0.573022,0.572836,0.572836,0.573294,0.573022,0.572836,0.572836,0.572836,0.572836,0.572836,0.572836,,,,,,,0.572917,0.57325,0.572838,0.57284,0.573294,0.573022,0.572836,0.572836,0.572836,0.572836,0.237178,0.237278,0.237155,0.237155,0.237292,0.23721,0.237154,0.237154,0.125833,0.125833,37.994658,37.972571,37.999909,37.999783,37.969639,37.987702,38,38,38,38,,,,,,,,,,,3096,3096,0.572836,0.572836,0.572836,0.572836,0.572836,0.572836,0.572836,0.572836,0.237154,0.237154,38,38,, +7028,0,0.869974,1,1,0,2,5,,4,8,Hughes,Rd,933708,1.591,2.46,0,18.642291,5.8,4.5,1.933275,1.933275,1.933275,1.933275,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.934321,2.031481,1.933275,1.933275,1.934321,2.031481,1.934641,1.934877,1.933275,1.933275,1.934641,1.934877,2.035319,1.935985,1.933275,1.933275,2.035319,1.935985,1.933275,1.933275,1.933275,1.933275,1.933275,1.933275,,,,,,,1.934321,2.031481,1.934641,1.934877,2.035319,1.935985,1.933275,1.933275,1.933275,1.933275,0.736892,0.76604,0.736988,0.737058,0.767191,0.737391,0.736578,0.736578,0.385688,0.385688,26.985396,25.694755,26.980928,26.977637,25.646309,26.962196,27,27,27,27,,,,,,,,,,,2580,2580,1.933275,1.933275,1.933275,1.933275,1.933275,1.933275,1.933275,1.933275,0.736578,0.736578,27,27,, +7041,0,0.390387,1,1,0,2,4,,4,8,Latson,Rd,5490669,1.15,1.541,0,8.365431,4.5,4.5,0.6164,0.6164,0.6164,0.6164,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.642687,1.844019,0.6164,0.6164,0.642687,1.844019,0.708206,0.77381,0.6164,0.6164,0.708206,0.77381,1.918919,0.827346,0.6164,0.6164,1.918919,0.827346,0.6164,0.6164,0.6164,0.6164,0.6164,0.6164,,,,,,,0.642687,1.844019,0.708206,0.77381,1.918919,0.827346,0.6164,0.6164,0.6164,0.6164,0.263076,0.623475,0.282731,0.302412,0.645945,0.318473,0.25519,0.25519,0.135403,0.135403,36.445722,12.702261,33.073993,30.269989,12.20646,28.311254,38,38,38,38,,,,,,,,,,,3096,3096,0.6164,0.6164,0.6164,0.6164,0.6164,0.6164,0.6164,0.6164,0.25519,0.25519,38,38,, +7083,0,0.823563,1,1,0,2,3,,5,8,Highland,Rd,933209,11.698,12.521,0,17.647779,1.7,4,0.988276,0.988276,0.988276,0.988276,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.986088,1.234389,0.988276,0.988276,1.986088,1.234389,1.18988,1.155723,0.988276,0.988276,1.18988,1.155723,1.396301,1.819506,0.988276,0.988276,1.396301,1.819506,0.988276,0.988276,0.988276,0.988276,0.988276,0.988276,,,,,,,1.986088,1.234389,1.18988,1.155723,1.396301,1.819506,0.988276,0.988276,0.988276,0.988276,0.744068,0.518558,0.505205,0.494958,0.567132,0.694093,0.444724,0.444724,0.238833,0.238833,24.87995,40.030954,41.528376,42.755726,35.389063,27.157796,50,50,50,50,,,,,,,,,,,3096,3096,0.988276,0.988276,0.988276,0.988276,0.988276,0.988276,0.988276,0.988276,0.444724,0.444724,50,50,, +37908,-1,0.020582,0,2,0,2,5,DIV,4,2,Smith,Rd,4706175,0.973,0.994,0,0.441039,5.8,4.5,,0.038591,,0.038591,,32,,17000,,3859,,8500,,5484,,5848,,5841,,0.039119,,0.038591,,0.039119,,0.039569,,0.038591,,0.039569,,0.040026,,0.038591,,0.040026,,0.038591,,0.038591,,0.038591,,,,,,,,0.039119,,0.039569,,0.040026,,0.038591,,0.038591,,0.01544,,0.015575,,0.015713,,0.015282,,0.008053,,31.567964,,31.209193,,30.852641,,32,,32,,,,,,,,,,,,5848,,0.038591,,0.038591,,0.038591,,0.038591,,0.015282,,32,, +7322,0,1.127936,1,1,0,2,6,,5,8,Bergin,Rd,941010,3.31,4.437,0,24.170062,5.8,6,2.255872,2.255872,2.255872,2.255872,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.366938,2.335191,2.255872,2.255872,3.366938,2.335191,2.376012,2.339222,2.255872,2.255872,2.376012,2.339222,2.453253,3.2312,2.255872,2.255872,2.453253,3.2312,2.255872,2.255872,2.255872,2.255872,2.255872,2.255872,,,,,,,3.366938,2.335191,2.376012,2.339222,2.453253,3.2312,2.255872,2.255872,2.255872,2.255872,1.21311,0.903586,0.915832,0.904795,0.939004,1.172388,0.87979,0.87979,0.462454,0.462454,20.100217,28.981001,28.483093,28.931067,27.586298,20.944597,30,30,30,30,,,,,,,,,,,2236,2236,2.255872,2.255872,2.255872,2.255872,2.255872,2.255872,2.255872,2.255872,0.87979,0.87979,30,30,, +7353,0,1.155801,1,1,0,2,5,,5,8,Hacker,Rd,940803,2.062,3.217,0,24.76716,3.7,5,2.311602,2.311602,2.311602,2.311602,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.313345,2.401416,2.311602,2.311602,2.313345,2.401416,2.314039,2.314959,2.311602,2.311602,2.314039,2.314959,2.423965,2.334085,2.311602,2.311602,2.423965,2.334085,2.311602,2.311602,2.311602,2.311602,2.311602,2.311602,,,,,,,2.313345,2.401416,2.314039,2.314959,2.423965,2.334085,2.311602,2.311602,2.311602,2.311602,0.902048,0.928469,0.902256,0.902532,0.935234,0.90827,0.901525,0.901525,0.473878,0.473878,29.977396,28.877977,29.968398,29.956492,28.609349,29.711021,30,30,30,30,,,,,,,,,,,2580,2580,2.311602,2.311602,2.311602,2.311602,2.311602,2.311602,2.311602,2.311602,0.901525,0.901525,30,30,, +7420,0,0.298768,1,1,0,2,7,GRV,5,8,Cook,Rd,936905,0,0.299,0,6.402169,5.55,5,0.896304,0.896304,0.896304,0.896304,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,,,,,,,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.322669,0.322669,0.322669,0.322669,0.322669,0.322669,0.322669,0.322669,0.16731,0.16731,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.896304,0.322669,0.322669,20,20,, +7531,-1,0.083462,0,3,0,1,1,FCD,4,8,W I 96 CD,,935207,22.977,23.06,0,,0.8,7.5,,0.077042,,0.077042,,65,,63000,,14301,,31500,,20324,,21672,,21647,,0.077046,,0.077042,,0.077046,,0.077043,,0.077042,,0.077043,,0.077223,,0.077042,,0.077223,,0.077042,,0.077042,,0.077042,,,,,,,,0.077046,,0.077043,,0.077223,,0.077042,,0.077042,,0.038137,,0.038136,,0.03819,,0.038136,,0.020737,,64.996088,,64.999181,,64.847113,,65,,65,,,,,,,,,,,,21672,,0.077042,,0.077042,,0.077042,,0.077042,,0.038136,,65,, +7724,1,0.266241,2,0,0,1,1,FCD,4,8,E I 96 CD,,935105,22.848,23.114,0,,0.8,7.5,0.245761,,0.245761,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.245761,,0.245761,,0.245761,,0.245761,,0.245761,,0.245761,,0.245761,,0.245761,,0.245761,,0.245761,,0.245761,,0.245761,,,,,,,,0.245761,,0.245761,,0.245761,,0.245761,,0.245761,,0.121652,,0.121652,,0.121652,,0.121652,,0.066151,,64.999999,,65,,64.999991,,65,,65,,,,,,,,,,,,14448,,0.245761,,0.245761,,0.245761,,0.245761,,0.121652,,65,,, +7951,0,0.443553,1,1,0,2,5,,5,8,Clyde,Rd,939905,8.064,8.507,0,9.504707,3.7,5,0.887106,0.887106,0.887106,0.887106,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.974538,0.929315,0.887106,0.887106,0.974538,0.929315,0.889289,0.890133,0.887106,0.887106,0.889289,0.890133,0.966351,1.005235,0.887106,0.887106,0.966351,1.005235,0.887106,0.887106,0.887106,0.887106,0.887106,0.887106,,,,,,,0.974538,0.929315,0.889289,0.890133,0.966351,1.005235,0.887106,0.887106,0.887106,0.887106,0.372201,0.358634,0.346626,0.34688,0.369745,0.38141,0.345971,0.345971,0.181857,0.181857,27.308512,28.637426,29.926359,29.897968,27.539877,26.474577,30,30,30,30,,,,,,,,,,,2580,2580,0.887106,0.887106,0.887106,0.887106,0.887106,0.887106,0.887106,0.887106,0.345971,0.345971,30,30,, +8128,0,1.319664,1,1,0,2,5,,5,8,Pleasant Valley,Rd,942603,6.45,7.769,0,28.278512,3.7,5,2.639328,2.639328,2.639328,2.639328,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.652888,2.835584,2.639328,2.639328,2.652888,2.835584,2.639612,2.63971,2.639328,2.639328,2.639612,2.63971,2.815711,2.666094,2.639328,2.639328,2.815711,2.666094,2.639328,2.639328,2.639328,2.639328,2.639328,2.639328,,,,,,,2.652888,2.835584,2.639612,2.63971,2.815711,2.666094,2.639328,2.639328,2.639328,2.639328,1.033406,1.088215,1.029423,1.029453,1.082253,1.037368,1.029338,1.029338,0.541062,0.541062,29.846656,27.923644,29.996764,29.995653,28.120725,29.698812,30,30,30,30,,,,,,,,,,,2580,2580,2.639328,2.639328,2.639328,2.639328,2.639328,2.639328,2.639328,2.639328,1.029338,1.029338,30,30,, +19852,0,1.07769,1,1,0,2,4,,5,3,Commerce,Rd,4104140,1.111,2.188,0,23.093367,3,4,1.616536,1.616536,1.616536,1.616536,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.940064,1.953976,1.616536,1.616536,1.940064,1.953976,1.677516,1.679014,1.616536,1.616536,1.677516,1.679014,2.062261,1.982007,1.616536,1.616536,2.062261,1.982007,1.616536,1.616536,1.616536,1.616536,1.616536,1.616536,,,,,,,1.940064,1.953976,1.677516,1.679014,2.062261,1.982007,1.616536,1.616536,1.616536,1.616536,0.776004,0.780177,0.697239,0.697688,0.812663,0.788586,0.678945,0.678945,0.361026,0.361026,33.329527,33.092235,38.545929,38.511559,31.354624,32.624221,40,40,40,40,,,,,,,,,,,3096,3096,1.616536,1.616536,1.616536,1.616536,1.616536,1.616536,1.616536,1.616536,0.678945,0.678945,40,40,, +21009,0,0.756483,1,1,0,2,4,,5,3,Hickory Ridge,Trl,4410281,2.769,3.525,0,16.210347,3,4,1.134724,1.134724,1.134724,1.134724,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.141968,1.311322,1.134724,1.134724,1.141968,1.311322,1.137126,1.138314,1.134724,1.134724,1.137126,1.138314,1.328566,1.160604,1.134724,1.134724,1.328566,1.160604,1.134724,1.134724,1.134724,1.134724,1.134724,1.134724,,,,,,,1.141968,1.311322,1.137126,1.138314,1.328566,1.160604,1.134724,1.134724,1.134724,1.134724,0.478757,0.529563,0.477305,0.477661,0.534737,0.484348,0.476584,0.476584,0.253422,0.253422,39.746277,34.613142,39.915515,39.873845,34.163889,39.108056,40,40,40,40,,,,,,,,,,,3096,3096,1.134724,1.134724,1.134724,1.134724,1.134724,1.134724,1.134724,1.134724,0.476584,0.476584,40,40,, +24655,0,0.941951,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,20.184671,0.15,4,3.767805,3.767805,3.767805,3.767805,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,,,,,,,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,1.299893,1.299893,1.299893,1.299893,1.299893,1.299893,1.299893,1.299893,0.668785,0.668785,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,3.767805,1.299893,1.299893,15,15,, +26055,0,1.125788,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.124025,0.15,4,4.503151,4.503151,4.503151,4.503151,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,,,,,,,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,1.553587,1.553587,1.553587,1.553587,1.553587,1.553587,1.553587,1.553587,0.799309,0.799309,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,4.503151,1.553587,1.553587,15,15,, +26056,0,0.608382,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,13.036752,0.15,4,2.433527,2.433527,2.433527,2.433527,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,,,,,,,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,0.839567,0.839567,0.839567,0.839567,0.839567,0.839567,0.839567,0.839567,0.431951,0.431951,15,14.999998,15,15,14.999998,15,15,15,15,15,,,,,,,,,,,34400,34400,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,2.433527,0.839567,0.839567,15,15,, +26057,0,1.230078,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.358811,0.15,4,4.920311,4.920311,4.920311,4.920311,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,,,,,,,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,1.697507,1.697507,1.697507,1.697507,1.697507,1.697507,1.697507,1.697507,0.873355,0.873355,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,4.920311,1.697507,1.697507,15,15,, +26059,0,0.820301,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,17.577877,0.15,4,3.281204,3.281204,3.281204,3.281204,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,,,,,,,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,1.132015,1.132015,1.132015,1.132015,1.132015,1.132015,1.132015,1.132015,0.582414,0.582414,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,3.281204,1.132015,1.132015,15,15,, +26060,0,0.881148,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,18.881749,0.15,4,3.524593,3.524593,3.524593,3.524593,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,,,,,,,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,1.215985,1.215985,1.215985,1.215985,1.215985,1.215985,1.215985,1.215985,0.625615,0.625615,15,14.999999,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,3.524593,1.215985,1.215985,15,15,, +26062,0,0.802446,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,17.195261,0.15,4,3.209782,3.209782,3.209782,3.209782,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.209783,3.209782,3.209782,3.209782,3.209783,3.209782,3.209782,3.209782,3.209782,3.209782,3.209782,3.209782,3.209783,3.209784,3.209782,3.209782,3.209783,3.209784,3.209782,3.209782,3.209782,3.209782,3.209782,3.209782,,,,,,,3.209783,3.209782,3.209782,3.209782,3.209783,3.209784,3.209782,3.209782,3.209782,3.209782,1.107375,1.107375,1.107375,1.107375,1.107375,1.107375,1.107375,1.107375,0.569736,0.569736,14.999995,14.999999,14.999999,14.999999,14.999998,14.999994,15,15,15,15,,,,,,,,,,,34400,34400,3.209782,3.209782,3.209782,3.209782,3.209782,3.209782,3.209782,3.209782,1.107375,1.107375,15,15,, +26069,0,0.396441,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.495165,0.15,4,1.585764,1.585764,1.585764,1.585764,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,,,,,,,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,0.547089,0.547089,0.547089,0.547089,0.547089,0.547089,0.547089,0.547089,0.281473,0.281473,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,1.585764,0.547089,0.547089,15,15,, +26768,0,1.79911,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.552363,0.15,4,7.196441,7.196441,7.196441,7.196441,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,,,,,,,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,2.482772,2.482772,2.482772,2.482772,2.482772,2.482772,2.482772,2.482772,1.277368,1.277368,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,7.196441,2.482772,2.482772,15,15,, +29477,0,1.544325,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.092673,0.15,4,6.177299,6.177299,6.177299,6.177299,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,,,,,,,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,2.131168,2.131168,2.131168,2.131168,2.131168,2.131168,2.131168,2.131168,1.096471,1.096471,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,6.177299,2.131168,2.131168,15,15,, +30154,0,1.507541,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.304441,0.15,4,6.030162,6.030162,6.030162,6.030162,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.030162,6.030163,6.030162,6.030162,6.030162,6.030163,6.030162,6.030162,6.030162,6.030162,6.030162,6.030162,6.030163,6.030163,6.030162,6.030162,6.030163,6.030163,6.030162,6.030162,6.030162,6.030162,6.030162,6.030162,,,,,,,6.030162,6.030163,6.030162,6.030162,6.030163,6.030163,6.030162,6.030162,6.030162,6.030162,2.080406,2.080406,2.080406,2.080406,2.080406,2.080406,2.080406,2.080406,1.070354,1.070354,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,6.030162,6.030162,6.030162,6.030162,6.030162,6.030162,6.030162,6.030162,2.080406,2.080406,15,15,, +30157,0,0.657623,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.091925,0.15,4,2.630493,2.630493,2.630493,2.630493,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,,,,,,,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,0.90752,0.90752,0.90752,0.90752,0.90752,0.90752,0.90752,0.90752,0.466912,0.466912,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,2.630493,0.90752,0.90752,15,15,, +6308,0,0.839156,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,6.868,7.706,0,17.981923,4.5,4.5,1.324984,1.324984,1.324984,1.324984,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.348387,1.820247,1.324984,1.324984,1.348387,1.820247,1.380158,1.422853,1.324984,1.324984,1.380158,1.422853,1.773722,1.584378,1.324984,1.324984,1.773722,1.584378,1.324984,1.324984,1.324984,1.324984,1.324984,1.324984,,,,,,,1.348387,1.820247,1.380158,1.422853,1.773722,1.584378,1.324984,1.324984,1.324984,1.324984,0.555564,0.697122,0.565095,0.577904,0.683165,0.626361,0.548543,0.548543,0.291055,0.291055,37.34045,27.660749,36.480891,35.386219,28.386291,31.778649,38,38,38,38,,,,,,,,,,,3096,3096,1.324984,1.324984,1.324984,1.324984,1.324984,1.324984,1.324984,1.324984,0.548543,0.548543,38,38,, +7010,0,0.20089,1,1,1,2,4,,4,8,Spencer,Rd,933908,0.659,0.86,0,4.304791,4.5,4.5,0.317195,0.317195,0.317195,0.317195,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.329492,0.688314,0.317195,0.317195,0.329492,0.688314,0.320204,0.423713,0.317195,0.317195,0.320204,0.423713,0.333381,0.58188,0.317195,0.317195,0.333381,0.58188,0.317195,0.317195,0.317195,0.317195,0.317195,0.317195,,,,,,,0.329492,0.688314,0.320204,0.423713,0.333381,0.58188,0.317195,0.317195,0.317195,0.317195,0.135008,0.242655,0.132222,0.163274,0.136175,0.210724,0.131319,0.131319,0.069677,0.069677,36.581838,17.511492,37.642875,28.447101,36.155074,20.7146,38,38,38,38,,,,,,,,,,,3406,3406,0.317195,0.317195,0.317195,0.317195,0.317195,0.317195,0.317195,0.317195,0.131319,0.131319,38,38,, +7136,0,0.249595,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.145,22.394,0,5.348466,5,5,0.427877,0.427877,0.427877,0.427877,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.453564,0.457192,0.427877,0.427877,0.453564,0.457192,0.445115,0.448615,0.427877,0.427877,0.445115,0.448615,0.500704,0.537047,0.427877,0.427877,0.500704,0.537047,0.427877,0.427877,0.427877,0.427877,0.427877,0.427877,,,,,,,0.453564,0.457192,0.445115,0.448615,0.500704,0.537047,0.427877,0.427877,0.427877,0.427877,0.180996,0.182085,0.178462,0.179512,0.195138,0.206041,0.17329,0.17329,0.091637,0.091637,33.017841,32.75586,33.644554,33.382073,29.909279,27.885259,35,35,35,35,,,,,,,,,,,7946,7946,0.427877,0.427877,0.427877,0.427877,0.427877,0.427877,0.427877,0.427877,0.17329,0.17329,35,35,, +7153,0,0.957058,2,2,1,2,3,,4,8,Grand River,Ave,932910,18.034,18.991,0,20.508376,3.7,5,1.435586,1.435586,1.435586,1.435586,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.439188,1.435798,1.435586,1.435586,1.439188,1.435798,1.435727,1.435714,1.435586,1.435586,1.435727,1.435714,1.43735,1.441826,1.435586,1.435586,1.43735,1.441826,1.435586,1.435586,1.435586,1.435586,1.435586,1.435586,,,,,,,1.439188,1.435798,1.435727,1.435714,1.43735,1.441826,1.435586,1.435586,1.435586,1.435586,0.604027,0.60301,0.602988,0.602985,0.603475,0.604818,0.602946,0.602946,0.320614,0.320614,39.899894,39.994098,39.996084,39.996434,39.950917,39.826901,40,40,40,40,,,,,,,,,,,7946,7946,1.435586,1.435586,1.435586,1.435586,1.435586,1.435586,1.435586,1.435586,0.602946,0.602946,40,40,, +7237,0,0.472998,1,1,0,2,7,,3,8,2nd,St,938608,0,0.473,0,10.135671,7,4.5,1.418994,1.418994,1.418994,1.418994,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,,,,,,,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,0.510838,0.510838,0.510838,0.510838,0.510838,0.510838,0.510838,0.510838,0.264879,0.264879,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,1892,1892,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,1.418994,0.510838,0.510838,20,20,, +7410,0,0.527662,1,1,0,2,7,,5,8,Clifford,,940502,0,0.528,0,11.30705,5.8,6,1.26639,1.26639,1.26639,1.26639,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.269096,1.278671,1.26639,1.26639,1.269096,1.278671,1.268312,1.268247,1.26639,1.26639,1.268312,1.268247,1.283803,1.273876,1.26639,1.26639,1.283803,1.273876,1.26639,1.26639,1.26639,1.26639,1.26639,1.26639,,,,,,,1.269096,1.278671,1.268312,1.268247,1.283803,1.273876,1.26639,1.26639,1.26639,1.26639,0.475708,0.47858,0.475473,0.475453,0.48012,0.477142,0.474896,0.474896,0.248001,0.248001,24.94668,24.759887,24.962111,24.963391,24.66091,24.853069,25,25,25,25,,,,,,,,,,,2064,2064,1.26639,1.26639,1.26639,1.26639,1.26639,1.26639,1.26639,1.26639,0.474896,0.474896,25,25,, +7440,0,0.841629,1,1,0,2,5,,5,8,Challis,Rd,940303,0.405,1.246,0,18.034905,3.7,5,1.683258,1.683258,1.683258,1.683258,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.754223,1.683301,1.683258,1.683258,1.754223,1.683301,1.684816,1.684097,1.683258,1.683258,1.684816,1.684097,1.686656,1.739831,1.683258,1.683258,1.686656,1.739831,1.683258,1.683258,1.683258,1.683258,1.683258,1.683258,,,,,,,1.754223,1.683301,1.684816,1.684097,1.686656,1.739831,1.683258,1.683258,1.683258,1.683258,0.67776,0.656483,0.656938,0.656722,0.65749,0.673442,0.656471,0.656471,0.345068,0.345068,28.786389,29.999235,29.972259,29.985046,29.939562,29.024514,30,30,30,30,,,,,,,,,,,2580,2580,1.683258,1.683258,1.683258,1.683258,1.683258,1.683258,1.683258,1.683258,0.656471,0.656471,30,30,, +40396,1,0.249474,2,0,0,1,1,FCD,3,8,E I 96 CD,,935105,22.599,22.848,0,,0.58,7,0.249474,,0.249474,,60,,38000,,8626,,19000,,12259,,13072,,13057,,0.250869,,0.249474,,0.250869,,0.249486,,0.249474,,0.249486,,0.249832,,0.249474,,0.249832,,0.249474,,0.249474,,0.249474,,,,,,,,0.250869,,0.249486,,0.249832,,0.249474,,0.249474,,0.120166,,0.119751,,0.119855,,0.119748,,0.064863,,59.666522,,59.997205,,59.913956,,60,,60,,,,,,,,,,,,13072,,0.249474,,0.249474,,0.249474,,0.249474,,0.119748,,60,,, +7536,-1,0.25039,0,3,0,1,1,,3,8,W I 96,,935207,21.982,22.232,0,,0.58,7,,0.231129,,0.231129,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.231295,,0.231129,,0.231295,,0.231166,,0.231129,,0.231166,,0.234653,,0.231129,,0.234653,,0.231129,,0.231129,,0.231129,,,,,,,,0.231295,,0.231166,,0.234653,,0.231129,,0.231129,,0.114459,,0.11442,,0.115466,,0.114409,,0.062212,,64.953353,,64.989486,,64.023722,,65,,65,,,,,,,,,,,,22704,,0.231129,,0.231129,,0.231129,,0.231129,,0.114409,,65,, +7540,-1,4.088865,0,3,0,1,1,,4,8,W I 96,,935207,16.539,20.626,0,,0.8,7.5,,3.504742,,3.504742,,70,,66000,,14982,,33000,,21292,,22704,,22678,,3.505837,,3.504742,,3.505837,,3.505167,,3.504742,,3.505167,,3.557994,,3.504742,,3.557994,,3.504742,,3.504742,,3.504742,,,,,,,,3.505837,,3.505167,,3.557994,,3.504742,,3.504742,,1.787747,,1.787546,,1.803394,,1.787418,,0.975486,,69.978126,,69.991516,,68.952315,,70,,70,,,,,,,,,,,,22704,,3.504742,,3.504742,,3.504742,,3.504742,,1.787418,,70,, +7568,0,0.74547,1,1,0,2,4,,5,8,Brighton,Rd,940301,2.241,2.986,0,15.974366,3,4,1.118206,1.118206,1.118206,1.118206,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.640538,1.255102,1.118206,1.118206,1.640538,1.255102,1.281195,1.256245,1.118206,1.118206,1.281195,1.256245,1.339412,1.643433,1.118206,1.118206,1.339412,1.643433,1.118206,1.118206,1.118206,1.118206,1.118206,1.118206,,,,,,,1.640538,1.255102,1.281195,1.256245,1.339412,1.643433,1.118206,1.118206,1.118206,1.118206,0.626346,0.510715,0.518543,0.511058,0.536008,0.627215,0.469646,0.469646,0.249733,0.249733,27.264357,35.637127,34.911327,35.6047,33.393919,27.216331,40,40,40,40,,,,,,,,,,,3096,3096,1.118206,1.118206,1.118206,1.118206,1.118206,1.118206,1.118206,1.118206,0.469646,0.469646,40,40,, +7668,0,1.966497,1,1,0,2,5,GRV,5,8,Bishop Lake,Rd,940205,0.66,2.626,0,42.13923,5.55,5,5.899492,5.899492,5.899492,5.899492,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,5.902811,5.899492,5.899492,5.899492,5.902811,5.899492,5.899492,5.899492,5.899492,5.899492,5.899492,5.899492,5.899492,5.900981,5.899492,5.899492,5.899492,5.900981,5.899492,5.899492,5.899492,5.899492,5.899492,5.899492,,,,,,,5.902811,5.899492,5.899492,5.899492,5.899492,5.900981,5.899492,5.899492,5.899492,5.899492,2.124813,2.123817,2.123817,2.123817,2.123817,2.124264,2.123817,2.123817,1.101239,1.101239,19.988754,20,20,20,20,19.994956,20,20,20,20,,,,,,,,,,,2236,2236,5.899492,5.899492,5.899492,5.899492,5.899492,5.899492,5.899492,5.899492,2.123817,2.123817,20,20,, +7736,1,1.403122,3,0,0,1,1,,3,8,E I 96,,935105,20.826,22.228,0,,0.58,7,1.29519,,1.29519,,65,,66000,,14982,,33000,,21292,,22704,,22678,,1.349977,,1.29519,,1.349977,,1.295723,,1.29519,,1.295723,,1.299801,,1.29519,,1.299801,,1.29519,,1.29519,,1.29519,,,,,,,,1.349977,,1.295723,,1.299801,,1.29519,,1.29519,,0.657555,,0.641279,,0.642502,,0.641119,,0.348622,,62.362044,,64.973265,,64.769386,,65,,65,,,,,,,,,,,,22704,,1.29519,,1.29519,,1.29519,,1.29519,,0.641119,,65,,, +7745,1,3.564514,3,0,0,1,1,,4,8,E I 96,,935105,16.638,20.201,0,,0.8,7.5,3.055298,,3.055298,,70,,66000,,14982,,33000,,21292,,22704,,22678,,3.137207,,3.055298,,3.137207,,3.055851,,3.055298,,3.055851,,3.058842,,3.055298,,3.058842,,3.055298,,3.055298,,3.055298,,,,,,,,3.137207,,3.055851,,3.058842,,3.055298,,3.055298,,1.582775,,1.558368,,1.559265,,1.558202,,0.850391,,68.172369,,69.987326,,69.918888,,70,,70,,,,,,,,,,,,22704,,3.055298,,3.055298,,3.055298,,3.055298,,1.558202,,70,,, +7779,0,0.392455,1,1,0,2,4,,5,8,Bauer,Rd,940108,2.633,3.025,0,8.409756,3,4,0.588683,0.588683,0.588683,0.588683,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.59133,0.590445,0.588683,0.588683,0.59133,0.590445,0.59242,0.591391,0.588683,0.588683,0.59242,0.591391,0.602856,0.611502,0.588683,0.588683,0.602856,0.611502,0.588683,0.588683,0.588683,0.588683,0.588683,0.588683,,,,,,,0.59133,0.590445,0.59242,0.591391,0.602856,0.611502,0.588683,0.588683,0.588683,0.588683,0.248041,0.247775,0.248368,0.248059,0.251499,0.254093,0.247247,0.247247,0.131473,0.131473,39.820921,39.880661,39.747691,39.816801,39.059593,38.507323,40,40,40,40,,,,,,,,,,,3096,3096,0.588683,0.588683,0.588683,0.588683,0.588683,0.588683,0.588683,0.588683,0.247247,0.247247,40,40,, +24648,0,1.060582,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.726748,0.15,4,4.242326,4.242326,4.242326,4.242326,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,,,,,,,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,1.463603,1.463603,1.463603,1.463603,1.463603,1.463603,1.463603,1.463603,0.753013,0.753013,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,4.242326,1.463603,1.463603,15,15,, +26109,0,1.868107,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,40.030869,0.15,4,7.472429,7.472429,7.472429,7.472429,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,,,,,,,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,2.577988,2.577988,2.577988,2.577988,2.577988,2.577988,2.577988,2.577988,1.326356,1.326356,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,7.472429,2.577988,2.577988,15,15,, +26110,0,1.074806,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.031567,0.15,4,4.299226,4.299226,4.299226,4.299226,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,,,,,,,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,1.483233,1.483233,1.483233,1.483233,1.483233,1.483233,1.483233,1.483233,0.763113,0.763113,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,4.299226,1.483233,1.483233,15,15,, +26993,0,1.301826,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.896266,0.15,4,5.207303,5.207303,5.207303,5.207303,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,,,,,,,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,1.79652,1.79652,1.79652,1.79652,1.79652,1.79652,1.79652,1.79652,0.924296,0.924296,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,5.207303,1.79652,1.79652,15,15,, +27001,0,0.759449,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,16.273916,0.15,4,3.037798,3.037798,3.037798,3.037798,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,,,,,,,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,1.04804,1.04804,1.04804,1.04804,1.04804,1.04804,1.04804,1.04804,0.539209,0.539209,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,3.037798,1.04804,1.04804,15,15,, +27005,0,1.077876,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,23.097352,0.15,4,4.311506,4.311506,4.311506,4.311506,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,,,,,,,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,1.487469,1.487469,1.487469,1.487469,1.487469,1.487469,1.487469,1.487469,0.765292,0.765292,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,4.311506,1.487469,1.487469,15,15,, +27010,0,0.637961,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.670592,0.15,4,2.551844,2.551844,2.551844,2.551844,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,,,,,,,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,0.880386,0.880386,0.880386,0.880386,0.880386,0.880386,0.880386,0.880386,0.452952,0.452952,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,2.551844,0.880386,0.880386,15,15,, +27011,0,0.72112,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.452565,0.15,4,2.884479,2.884479,2.884479,2.884479,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,,,,,,,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,0.995145,0.995145,0.995145,0.995145,0.995145,0.995145,0.995145,0.995145,0.511995,0.511995,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,2.884479,0.995145,0.995145,15,15,, +27014,0,0.347009,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,7.435901,0.15,4,1.388035,1.388035,1.388035,1.388035,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,,,,,,,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,0.478872,0.478872,0.478872,0.478872,0.478872,0.478872,0.478872,0.478872,0.246376,0.246376,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,1.388035,0.478872,0.478872,15,15,, +27016,0,0.49755,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.661795,0.15,4,1.990202,1.990202,1.990202,1.990202,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,,,,,,,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,0.68662,0.68662,0.68662,0.68662,0.68662,0.68662,0.68662,0.68662,0.353261,0.353261,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,1.990202,0.68662,0.68662,15,15,, +27027,0,0.538422,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,11.537604,0.15,4,3.230529,3.230529,3.230529,3.230529,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,,,,,,,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,1.066075,1.066075,1.066075,1.066075,1.066075,1.066075,1.066075,1.066075,0.543806,0.543806,10,10,10,10,9.999999,10,10,10,10,10,,,,,,,,,,,34400,34400,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,3.230529,1.066075,1.066075,10,10,, +27028,0,0.467564,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,10.019231,0.15,4,2.805385,2.805385,2.805385,2.805385,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,,,,,,,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,0.925777,0.925777,0.925777,0.925777,0.925777,0.925777,0.925777,0.925777,0.47224,0.47224,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,2.805385,0.925777,0.925777,10,10,, +29843,0,0.70513,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.109931,0.15,4,2.82052,2.82052,2.82052,2.82052,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,,,,,,,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,0.97308,0.97308,0.97308,0.97308,0.97308,0.97308,0.97308,0.97308,0.500642,0.500642,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,2.82052,0.97308,0.97308,15,15,, +7631,0,0.104974,1,1,0,2,4,,5,8,Brighton,Rd,940301,0.427,0.532,0,2.24944,3,4,0.157461,0.157461,0.157461,0.157461,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.158334,0.157493,0.157461,0.157461,0.158334,0.157493,0.157652,0.157558,0.157461,0.157461,0.157652,0.157558,0.157876,0.158457,0.157461,0.157461,0.157876,0.158457,0.157461,0.157461,0.157461,0.157461,0.157461,0.157461,,,,,,,0.158334,0.157493,0.157652,0.157558,0.157876,0.158457,0.157461,0.157461,0.157461,0.157461,0.066395,0.066143,0.066191,0.066163,0.066258,0.066433,0.066134,0.066134,0.035166,0.035166,39.77948,39.991777,39.95148,39.975404,39.894904,39.748427,40,40,40,40,,,,,,,,,,,3096,3096,0.157461,0.157461,0.157461,0.157461,0.157461,0.157461,0.157461,0.157461,0.066134,0.066134,40,40,, +7650,0,1.007667,1,1,0,2,4,,5,8,Chilson,Rd,940206,0,1.007,0,21.592863,3,4,1.5115,1.5115,1.5115,1.5115,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.364938,1.724011,1.5115,1.5115,2.364938,1.724011,1.635785,1.611387,1.5115,1.5115,1.635785,1.611387,1.91772,2.285002,1.5115,1.5115,1.91772,2.285002,1.5115,1.5115,1.5115,1.5115,1.5115,1.5115,,,,,,,2.364938,1.724011,1.635785,1.611387,1.91772,2.285002,1.5115,1.5115,1.5115,1.5115,0.890861,0.698583,0.672116,0.664796,0.756696,0.866881,0.63483,0.63483,0.337568,0.337568,25.565163,35.069401,36.960853,37.520483,31.527037,26.459508,40,40,40,40,,,,,,,,,,,3096,3096,1.5115,1.5115,1.5115,1.5115,1.5115,1.5115,1.5115,1.5115,0.63483,0.63483,40,40,, +7683,0,0.660174,1,1,0,2,5,,5,8,Bishop Lake,Rd,940205,0,0.66,0,14.146586,3.7,5,1.320348,1.320348,1.320348,1.320348,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.324407,1.320944,1.320348,1.320348,1.324407,1.320944,1.320424,1.320403,1.320348,1.320348,1.320424,1.320403,1.321144,1.325082,1.320348,1.320348,1.321144,1.325082,1.320348,1.320348,1.320348,1.320348,1.320348,1.320348,,,,,,,1.324407,1.320944,1.320424,1.320403,1.321144,1.325082,1.320348,1.320348,1.320348,1.320348,0.516153,0.515114,0.514959,0.514952,0.515175,0.516356,0.514936,0.514936,0.270671,0.270671,29.908068,29.986475,29.998266,29.998758,29.981922,29.892824,30,30,30,30,,,,,,,,,,,2580,2580,1.320348,1.320348,1.320348,1.320348,1.320348,1.320348,1.320348,1.320348,0.514936,0.514936,30,30,, +8015,0,1.709797,1,1,0,2,4,,5,8,Chilson,Rd,944806,2.888,4.597,0,36.638515,3,4,2.564696,2.564696,2.564696,2.564696,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.692411,2.566191,2.564696,2.564696,2.692411,2.566191,2.566076,2.565817,2.564696,2.564696,2.566076,2.565817,2.572102,2.659704,2.564696,2.564696,2.572102,2.659704,2.564696,2.564696,2.564696,2.564696,2.564696,2.564696,,,,,,,2.692411,2.566191,2.566076,2.565817,2.572102,2.659704,2.564696,2.564696,2.564696,2.564696,1.115487,1.077621,1.077586,1.077509,1.079394,1.105675,1.077172,1.077172,0.572782,0.572782,38.102591,39.976694,39.978491,39.98252,39.884825,38.571154,40,40,40,40,,,,,,,,,,,3096,3096,2.564696,2.564696,2.564696,2.564696,2.564696,2.564696,2.564696,2.564696,1.077172,1.077172,40,40,, +7209,0,1.204925,1,1,0,2,4,,5,8,Pettysville,Rd,932802,0.733,1.937,0,25.819815,3,4,1.807387,1.807387,1.807387,1.807387,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.917797,1.816552,1.807387,1.807387,1.917797,1.816552,1.81469,1.813218,1.807387,1.807387,1.81469,1.813218,1.828783,1.895561,1.807387,1.807387,1.828783,1.895561,1.807387,1.807387,1.807387,1.807387,1.807387,1.807387,,,,,,,1.917797,1.816552,1.81469,1.813218,1.828783,1.895561,1.807387,1.807387,1.807387,1.807387,0.792226,0.761852,0.761293,0.760852,0.765521,0.785555,0.759103,0.759103,0.40365,0.40365,37.697141,39.798188,39.839024,39.871378,39.53201,38.13936,40,40,40,40,,,,,,,,,,,3096,3096,1.807387,1.807387,1.807387,1.807387,1.807387,1.807387,1.807387,1.807387,0.759103,0.759103,40,40,, +7285,0,1.011171,1,1,0,2,6,,5,8,Swarthout,Rd,944806,1.594,2.605,0,21.667947,5.8,6,2.022342,2.022342,2.022342,2.022342,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.085369,2.033027,2.022342,2.022342,3.085369,2.033027,2.03898,2.033092,2.022342,2.022342,2.03898,2.033092,2.135417,3.026612,2.022342,2.022342,2.135417,3.026612,2.022342,2.022342,2.022342,2.022342,2.022342,2.022342,,,,,,,3.085369,2.033027,2.03898,2.033092,2.135417,3.026612,2.022342,2.022342,2.022342,2.022342,1.107621,0.791919,0.793705,0.791938,0.822636,1.089994,0.788713,0.788713,0.41458,0.41458,19.663859,29.842318,29.755194,29.841371,28.41143,20.045599,30,30,30,30,,,,,,,,,,,2236,2236,2.022342,2.022342,2.022342,2.022342,2.022342,2.022342,2.022342,2.022342,0.788713,0.788713,30,30,, +26994,0,0.87323,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.71207,0.15,4,3.49292,3.49292,3.49292,3.49292,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,,,,,,,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,1.205057,1.205057,1.205057,1.205057,1.205057,1.205057,1.205057,1.205057,0.619993,0.619993,14.999998,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,3.49292,1.205057,1.205057,15,15,, +24646,0,0.477711,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.236671,0.15,4,1.910845,1.910845,1.910845,1.910845,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.910846,1.910845,1.910845,1.910845,1.910846,1.910845,1.910845,1.910845,1.910845,1.910845,1.910845,1.910845,1.910846,1.910847,1.910845,1.910845,1.910846,1.910847,1.910845,1.910845,1.910845,1.910845,1.910845,1.910845,,,,,,,1.910846,1.910845,1.910845,1.910845,1.910846,1.910847,1.910845,1.910845,1.910845,1.910845,0.659242,0.659242,0.659242,0.659242,0.659242,0.659242,0.659242,0.659242,0.339175,0.339175,14.999991,14.999999,14.999999,14.999999,14.999996,14.999989,15,15,15,15,,,,,,,,,,,34400,34400,1.910845,1.910845,1.910845,1.910845,1.910845,1.910845,1.910845,1.910845,0.659242,0.659242,15,15,, +8019,0,0.283378,1,1,0,2,4,,5,8,Swarthout,Rd,944806,2.605,2.888,0,6.072386,3,4,0.425067,0.425067,0.425067,0.425067,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.128987,0.467741,0.425067,0.425067,1.128987,0.467741,0.470168,0.459776,0.425067,0.425067,0.470168,0.459776,0.573277,1.049931,0.425067,0.425067,0.573277,1.049931,0.425067,0.425067,0.425067,0.425067,0.425067,0.425067,,,,,,,1.128987,0.467741,0.470168,0.459776,0.573277,1.049931,0.425067,0.425067,0.425067,0.425067,0.389704,0.19133,0.192058,0.188941,0.222991,0.365987,0.178528,0.178528,0.094932,0.094932,15.060117,36.350639,36.163014,36.980361,29.658755,16.194094,40,40,40,40,,,,,,,,,,,3096,3096,0.425067,0.425067,0.425067,0.425067,0.425067,0.425067,0.425067,0.425067,0.178528,0.178528,40,40,, +7638,0,1.444423,1,1,0,2,4,,5,8,Chilson,Rd,940206,1.007,2.451,0,30.951918,3,4,2.166634,2.166634,2.166634,2.166634,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.526819,2.749752,2.166634,2.166634,3.526819,2.749752,2.4914,2.450254,2.166634,2.166634,2.4914,2.450254,3.285004,3.533796,2.166634,2.166634,3.285004,3.533796,2.166634,2.166634,2.166634,2.166634,2.166634,2.166634,,,,,,,3.526819,2.749752,2.4914,2.450254,3.285004,3.533796,2.166634,2.166634,2.166634,2.166634,1.318042,1.084922,1.007416,0.995072,1.245497,1.320135,0.909986,0.909986,0.483882,0.483882,24.573241,31.517521,34.785808,35.369948,26.38212,24.524724,40,40,40,40,,,,,,,,,,,3096,3096,2.166634,2.166634,2.166634,2.166634,2.166634,2.166634,2.166634,2.166634,0.909986,0.909986,40,40,, +7206,0,0.45858,1,1,0,2,4,,5,8,Chilson,Rd,932808,0.575,1.033,0,9.826706,3,4,0.687869,0.687869,0.687869,0.687869,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.688497,0.745826,0.687869,0.687869,0.688497,0.745826,0.68936,0.689398,0.687869,0.687869,0.68936,0.689398,0.745587,0.693536,0.687869,0.687869,0.745587,0.693536,0.687869,0.687869,0.687869,0.687869,0.687869,0.687869,,,,,,,0.688497,0.745826,0.68936,0.689398,0.745587,0.693536,0.687869,0.687869,0.687869,0.687869,0.289094,0.306292,0.289352,0.289364,0.30622,0.290605,0.288905,0.288905,0.153624,0.153624,39.963519,36.891664,39.913511,39.911301,36.903512,39.67316,40,40,40,40,,,,,,,,,,,3096,3096,0.687869,0.687869,0.687869,0.687869,0.687869,0.687869,0.687869,0.687869,0.288905,0.288905,40,40,, +7880,0,0.621047,1,1,0,2,5,,5,8,Winans Lake,Rd,940105,0,0.621,0,13.30814,3.7,5,1.242093,1.242093,1.242093,1.242093,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.262129,1.242094,1.242093,1.242093,1.262129,1.242094,1.242096,1.242093,1.242093,1.242093,1.242096,1.242093,1.242166,1.259392,1.242093,1.242093,1.242166,1.259392,1.242093,1.242093,1.242093,1.242093,1.242093,1.242093,,,,,,,1.262129,1.242094,1.242096,1.242093,1.242166,1.259392,1.242093,1.242093,1.242093,1.242093,0.490427,0.484417,0.484417,0.484416,0.484438,0.489606,0.484416,0.484416,0.254629,0.254629,29.523762,29.999978,29.999935,29.999993,29.99824,29.58792,30,30,30,30,,,,,,,,,,,2580,2580,1.242093,1.242093,1.242093,1.242093,1.242093,1.242093,1.242093,1.242093,0.484416,0.484416,30,30,, +7585,0,0.697867,1,1,0,2,4,,5,8,Brighton,Rd,940301,1.544,2.241,0,14.954289,3,4,1.0468,1.0468,1.0468,1.0468,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.960557,1.141047,1.0468,1.0468,1.960557,1.141047,1.214756,1.174283,1.0468,1.0468,1.214756,1.174283,1.30337,1.862142,1.0468,1.0468,1.30337,1.862142,1.0468,1.0468,1.0468,1.0468,1.0468,1.0468,,,,,,,1.960557,1.141047,1.214756,1.174283,1.30337,1.862142,1.0468,1.0468,1.0468,1.0468,0.713783,0.46793,0.490043,0.477901,0.516627,0.684259,0.439656,0.439656,0.233785,0.233785,21.357196,36.696133,34.469476,35.657519,32.125955,22.485938,40,40,40,40,,,,,,,,,,,3096,3096,1.0468,1.0468,1.0468,1.0468,1.0468,1.0468,1.0468,1.0468,0.439656,0.439656,40,40,, +7626,0,0.523313,1,1,0,2,4,,5,8,Brighton,Rd,940301,1.02,1.544,0,11.21385,3,4,0.784969,0.784969,0.784969,0.784969,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.00323,0.800441,0.784969,0.784969,1.00323,0.800441,0.818559,0.807454,0.784969,0.784969,0.818559,0.807454,0.833253,0.964736,0.784969,0.784969,0.833253,0.964736,0.784969,0.784969,0.784969,0.784969,0.784969,0.784969,,,,,,,1.00323,0.800441,0.818559,0.807454,0.833253,0.964736,0.784969,0.784969,0.784969,0.784969,0.395165,0.334328,0.339764,0.336432,0.344172,0.383617,0.329687,0.329687,0.17531,0.17531,31.297703,39.226873,38.358609,38.886167,37.682176,32.546505,40,40,40,40,,,,,,,,,,,3096,3096,0.784969,0.784969,0.784969,0.784969,0.784969,0.784969,0.784969,0.784969,0.329687,0.329687,40,40,, +7032,0,0.654894,1,1,0,2,5,,4,8,Dorr,Rd,933707,1.526,2.18,0,14.03345,5.8,4.5,1.455321,1.455321,1.455321,1.455321,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.456183,1.457131,1.455321,1.455321,1.456183,1.457131,1.455374,1.455337,1.455321,1.455321,1.455374,1.455337,1.461108,1.457028,1.455321,1.455321,1.461108,1.457028,1.455321,1.455321,1.455321,1.455321,1.455321,1.455321,,,,,,,1.456183,1.457131,1.455374,1.455337,1.461108,1.457028,1.455321,1.455321,1.455321,1.455321,0.554736,0.55502,0.554493,0.554482,0.556213,0.554989,0.554477,0.554477,0.290336,0.290336,26.984015,26.966459,26.999015,26.999703,26.893066,26.968358,27,27,27,27,,,,,,,,,,,2580,2580,1.455321,1.455321,1.455321,1.455321,1.455321,1.455321,1.455321,1.455321,0.554477,0.554477,27,27,, +7155,0,1.203356,2,2,1,2,3,,4,8,Grand River,Rd,932910,16.697,17.9,0,25.786193,3.7,5,1.805034,1.805034,1.805034,1.805034,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.805801,1.805297,1.805034,1.805034,1.805801,1.805297,1.805131,1.805149,1.805034,1.805034,1.805131,1.805149,1.806899,1.807921,1.805034,1.805034,1.806899,1.807921,1.805034,1.805034,1.805034,1.805034,1.805034,1.805034,,,,,,,1.805801,1.805297,1.805131,1.805149,1.806899,1.807921,1.805034,1.805034,1.805034,1.805034,0.758344,0.758193,0.758143,0.758149,0.758674,0.75898,0.758114,0.758114,0.403124,0.403124,39.983,39.994163,39.997848,39.997442,39.958706,39.936111,40,40,40,40,,,,,,,,,,,7946,7946,1.805034,1.805034,1.805034,1.805034,1.805034,1.805034,1.805034,1.805034,0.758114,0.758114,40,40,, +26992,0,0.372409,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,7.980203,0.15,4,1.489638,1.489638,1.489638,1.489638,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,,,,,,,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,0.513925,0.513925,0.513925,0.513925,0.513925,0.513925,0.513925,0.513925,0.264411,0.264411,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,1.489638,0.513925,0.513925,15,15,, +27008,0,1.189187,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.482585,0.15,4,4.756749,4.756749,4.756749,4.756749,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,,,,,,,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,1.641078,1.641078,1.641078,1.641078,1.641078,1.641078,1.641078,1.641078,0.844323,0.844323,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,4.756749,1.641078,1.641078,15,15,, +29475,0,1.363801,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.224312,0.15,4,5.455205,5.455205,5.455205,5.455205,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,,,,,,,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,1.882046,1.882046,1.882046,1.882046,1.882046,1.882046,1.882046,1.882046,0.968299,0.968299,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,5.455205,1.882046,1.882046,15,15,, +7045,0,1.207592,1,1,0,2,5,,5,8,Chilson,Rd,933603,0.307,1.514,0,25.876972,3.7,5,2.415184,2.415184,2.415184,2.415184,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.416659,2.415627,2.415184,2.415184,2.416659,2.415627,2.415195,2.415202,2.415184,2.415184,2.415195,2.415202,2.416116,2.417866,2.415184,2.415184,2.416116,2.417866,2.415184,2.415184,2.415184,2.415184,2.415184,2.415184,,,,,,,2.416659,2.415627,2.415195,2.415202,2.416116,2.417866,2.415184,2.415184,2.415184,2.415184,0.942364,0.942055,0.941925,0.941927,0.942201,0.942726,0.941922,0.941922,0.495113,0.495113,29.981685,29.994501,29.999859,29.999777,29.988433,29.966718,30,30,30,30,,,,,,,,,,,2580,2580,2.415184,2.415184,2.415184,2.415184,2.415184,2.415184,2.415184,2.415184,0.941922,0.941922,30,30,, +7158,0,0.818918,2,2,1,2,3,,4,8,Grand River,Rd,932910,15.692,16.511,0,17.548232,3.7,5,1.228376,1.228376,1.228376,1.228376,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.523459,1.329746,1.228376,1.228376,1.523459,1.329746,1.276741,1.271817,1.228376,1.228376,1.276741,1.271817,1.486303,1.463996,1.228376,1.228376,1.486303,1.463996,1.228376,1.228376,1.228376,1.228376,1.228376,1.228376,,,,,,,1.523459,1.329746,1.276741,1.271817,1.486303,1.463996,1.228376,1.228376,1.228376,1.228376,0.604443,0.546329,0.530427,0.52895,0.593296,0.586604,0.515918,0.515918,0.274337,0.274337,32.252298,36.950708,38.484754,38.633743,33.058579,33.562279,40,40,40,40,,,,,,,,,,,7946,7946,1.228376,1.228376,1.228376,1.228376,1.228376,1.228376,1.228376,1.228376,0.515918,0.515918,40,40,, +26991,0,0.484517,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,10.3825,0.15,4,1.938067,1.938067,1.938067,1.938067,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,1.938068,1.938067,1.938067,1.938067,1.938068,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,,,,,,,1.938067,1.938067,1.938067,1.938067,1.938067,1.938068,1.938067,1.938067,1.938067,1.938067,0.668633,0.668633,0.668633,0.668633,0.668633,0.668633,0.668633,0.668633,0.344007,0.344007,14.999995,15,14.999999,14.999999,14.999998,14.999992,15,15,15,15,,,,,,,,,,,34400,34400,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,1.938067,0.668633,0.668633,15,15,, +7042,0,0.567418,1,1,0,2,4,,4,8,Latson,Rd,5490669,0.583,1.15,0,12.158949,4.5,4.5,0.895923,0.895923,0.895923,0.895923,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.910115,1.773844,0.895923,0.895923,0.910115,1.773844,0.936611,0.969671,0.895923,0.895923,0.936611,0.969671,1.651578,0.995893,0.895923,0.895923,1.651578,0.995893,0.895923,0.895923,0.895923,0.895923,0.895923,0.895923,,,,,,,0.910115,1.773844,0.936611,0.969671,1.651578,0.995893,0.895923,0.895923,0.895923,0.895923,0.37517,0.634288,0.383119,0.393037,0.597609,0.400903,0.370912,0.370912,0.196804,0.196804,37.407432,19.192809,36.349178,35.109902,20.613648,34.185468,38,38,38,38,,,,,,,,,,,3096,3096,0.895923,0.895923,0.895923,0.895923,0.895923,0.895923,0.895923,0.895923,0.370912,0.370912,38,38,, +7159,0,0.612511,2,2,1,2,3,,4,8,Grand River,Rd,932910,15.08,15.692,0,13.12524,3.7,5,0.918767,0.918767,0.918767,0.918767,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.938833,0.923142,0.918767,0.918767,0.938833,0.923142,0.920446,0.920553,0.918767,0.918767,0.920446,0.920553,0.930678,0.948282,0.918767,0.918767,0.930678,0.948282,0.918767,0.918767,0.918767,0.918767,0.918767,0.918767,,,,,,,0.938833,0.923142,0.920446,0.920553,0.930678,0.948282,0.918767,0.918767,0.918767,0.918767,0.391902,0.387195,0.386386,0.386418,0.389456,0.394737,0.385882,0.385882,0.205191,0.205191,39.145043,39.810407,39.927028,39.922404,39.488047,38.75501,40,40,40,40,,,,,,,,,,,7946,7946,0.918767,0.918767,0.918767,0.918767,0.918767,0.918767,0.918767,0.918767,0.385882,0.385882,40,40,, +24654,0,0.356083,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,7.630349,0.15,4,1.424332,1.424332,1.424332,1.424332,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,1.424333,1.424332,1.424332,1.424332,1.424333,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,,,,,,,1.424332,1.424332,1.424332,1.424332,1.424333,1.424332,1.424332,1.424332,1.424332,1.424332,0.491395,0.491395,0.491395,0.491395,0.491395,0.491395,0.491395,0.491395,0.252819,0.252819,15,14.999997,14.999997,14.999996,14.999991,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,1.424332,0.491395,0.491395,15,15,, +24656,0,0.568132,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,12.174249,0.15,4,2.272527,2.272527,2.272527,2.272527,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.272527,2.27253,2.272527,2.272527,2.272527,2.27253,2.272529,2.27253,2.272527,2.272527,2.272529,2.27253,2.272537,2.272532,2.272527,2.272527,2.272537,2.272532,2.272527,2.272527,2.272527,2.272527,2.272527,2.272527,,,,,,,2.272527,2.27253,2.272529,2.27253,2.272537,2.272532,2.272527,2.272527,2.272527,2.272527,0.784022,0.784023,0.784022,0.784023,0.784025,0.784023,0.784022,0.784022,0.403373,0.403373,14.999996,14.999975,14.999983,14.999978,14.999928,14.999962,15,15,15,15,,,,,,,,,,,34400,34400,2.272527,2.272527,2.272527,2.272527,2.272527,2.272527,2.272527,2.272527,0.784022,0.784022,15,15,, +7035,1,0.465668,1,0,0,1,1,RON,4,8,Grand River/E I 96,RAMP,933609,0,0.466,0,,1.09,4,0.62089,,0.62089,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.811182,,0.62089,,0.811182,,0.647085,,0.62089,,0.647085,,0.677796,,0.62089,,0.677796,,0.62089,,0.62089,,0.62089,,,,,,,,0.811182,,0.647085,,0.677796,,0.62089,,0.62089,,0.327175,,0.277946,,0.287159,,0.270087,,0.144357,,34.44364,,43.178376,,41.221975,,45,,45,,,,,,,,,,,,5160,,0.62089,,0.62089,,0.62089,,0.62089,,0.270087,,45,,, +7156,0,0.125032,2,2,1,2,3,,4,8,Grand River,Rd,932910,16.572,16.697,0,2.67926,3.7,5,0.187548,0.187548,0.187548,0.187548,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.187628,0.197641,0.187548,0.187548,0.187628,0.197641,0.187558,0.193128,0.187548,0.187548,0.187558,0.193128,0.187742,0.239894,0.187548,0.187548,0.187742,0.239894,0.187548,0.187548,0.187548,0.187548,0.187548,0.187548,,,,,,,0.187628,0.197641,0.187558,0.193128,0.187742,0.239894,0.187548,0.187548,0.187548,0.187548,0.078794,0.081798,0.078773,0.080444,0.078828,0.094474,0.07877,0.07877,0.041886,0.041886,39.983,37.957409,39.997848,38.844262,39.958706,31.271811,40,40,40,40,,,,,,,,,,,7946,7946,0.187548,0.187548,0.187548,0.187548,0.187548,0.187548,0.187548,0.187548,0.07877,0.07877,40,40,, +7157,0,0.060756,2,2,1,2,3,,4,8,Grand River,Rd,932910,16.511,16.572,0,1.301912,3.7,5,0.091134,0.091134,0.091134,0.091134,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.126162,0.096038,0.091134,0.091134,0.126162,0.096038,0.094409,0.093845,0.091134,0.091134,0.094409,0.093845,0.107244,0.11657,0.091134,0.091134,0.107244,0.11657,0.091134,0.091134,0.091134,0.091134,0.091134,0.091134,,,,,,,0.126162,0.096038,0.094409,0.093845,0.107244,0.11657,0.091134,0.091134,0.091134,0.091134,0.048785,0.039747,0.039259,0.03909,0.043109,0.045907,0.038276,0.038276,0.020353,0.020353,28.89423,37.957409,38.612402,38.844262,33.991352,31.271811,40,40,40,40,,,,,,,,,,,7946,7946,0.091134,0.091134,0.091134,0.091134,0.091134,0.091134,0.091134,0.091134,0.038276,0.038276,40,40,, +7036,-1,0.165071,0,1,0,1,1,ROF,4,8,W I 96/Grand River,RAMP,933608,0,0.165,0,,2.24,5,,0.247607,,0.247607,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.258805,,0.247607,,0.258805,,0.254444,,0.247607,,0.254444,,0.287696,,0.247607,,0.287696,,0.247607,,0.247607,,0.247607,,,,,,,,0.258805,,0.254444,,0.287696,,0.247607,,0.247607,,0.107354,,0.106046,,0.116022,,0.103995,,0.055299,,38.269274,,38.925231,,34.426252,,40,,40,,,,,,,,,,,,5160,,0.247607,,0.247607,,0.247607,,0.247607,,0.103995,,40,, +7034,0,1.012032,1,1,0,2,5,,5,8,Dorr,Rd,933707,0,1.012,0,21.68639,3.7,5,2.024063,2.024063,2.024063,2.024063,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.024273,2.02511,2.024063,2.024063,2.024273,2.02511,2.02412,2.024091,2.024063,2.024063,2.02412,2.024091,2.027476,2.02507,2.024063,2.024063,2.027476,2.02507,2.024063,2.024063,2.024063,2.024063,2.024063,2.024063,,,,,,,2.024273,2.02511,2.02412,2.024091,2.027476,2.02507,2.024063,2.024063,2.024063,2.024063,0.789448,0.789699,0.789402,0.789393,0.790408,0.789687,0.789385,0.789385,0.414933,0.414933,29.996885,29.984497,29.999164,29.999594,29.949505,29.985083,30,30,30,30,,,,,,,,,,,2580,2580,2.024063,2.024063,2.024063,2.024063,2.024063,2.024063,2.024063,2.024063,0.789385,0.789385,30,30,, +7449,0,0.246998,1,1,0,2,7,GRV,5,8,Challis,Rd,940303,0,0.247,0,5.292819,5.55,5,0.740995,0.740995,0.740995,0.740995,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.842776,0.741019,0.740995,0.740995,0.842776,0.741019,0.742914,0.741868,0.740995,0.740995,0.742914,0.741868,0.742616,0.798218,0.740995,0.740995,0.742616,0.798218,0.740995,0.740995,0.740995,0.740995,0.740995,0.740995,,,,,,,0.842776,0.741019,0.742914,0.741868,0.742616,0.798218,0.740995,0.740995,0.740995,0.740995,0.297292,0.266765,0.267334,0.26702,0.267245,0.283925,0.266758,0.266758,0.138319,0.138319,17.584624,19.999332,19.948329,19.976462,19.956327,18.566221,20,20,20,20,,,,,,,,,,,2236,2236,0.740995,0.740995,0.740995,0.740995,0.740995,0.740995,0.740995,0.740995,0.266758,0.266758,20,20,, +30156,0,1.654323,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,35.449773,0.15,4,6.617291,6.617291,6.617291,6.617291,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,,,,,,,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,2.282965,2.282965,2.282965,2.282965,2.282965,2.282965,2.282965,2.282965,1.174569,1.174569,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,6.617291,2.282965,2.282965,15,15,, +7401,0,0.742536,1,1,0,2,7,GRV,5,8,Conrad,Rd,940601,0,0.742,0,15.911486,5.55,5,2.227608,2.227608,2.227608,2.227608,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.533586,2.227682,2.227608,2.227608,2.533586,2.227682,2.233378,2.230233,2.227608,2.227608,2.233378,2.230233,2.232483,2.399635,2.227608,2.227608,2.232483,2.399635,2.227608,2.227608,2.227608,2.227608,2.227608,2.227608,,,,,,,2.533586,2.227682,2.233378,2.230233,2.232483,2.399635,2.227608,2.227608,2.227608,2.227608,0.893732,0.801961,0.80367,0.802726,0.803401,0.853547,0.801939,0.801939,0.41582,0.41582,17.584624,19.999332,19.948329,19.976462,19.956327,18.566221,20,20,20,20,,,,,,,,,,,2236,2236,2.227608,2.227608,2.227608,2.227608,2.227608,2.227608,2.227608,2.227608,0.801939,0.801939,20,20,, +27009,0,0.410416,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.794637,0.15,4,1.641666,1.641666,1.641666,1.641666,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.641667,1.641666,1.641666,1.641666,1.641667,1.641666,1.641666,1.641666,1.641666,1.641666,1.641666,1.641666,1.641666,1.641667,1.641666,1.641666,1.641666,1.641667,1.641666,1.641666,1.641666,1.641666,1.641666,1.641666,,,,,,,1.641667,1.641666,1.641666,1.641666,1.641666,1.641667,1.641666,1.641666,1.641666,1.641666,0.566375,0.566375,0.566375,0.566375,0.566375,0.566375,0.566375,0.566375,0.291396,0.291396,14.999989,15,14.999999,14.999999,14.999999,14.999991,15,15,15,15,,,,,,,,,,,34400,34400,1.641666,1.641666,1.641666,1.641666,1.641666,1.641666,1.641666,1.641666,0.566375,0.566375,15,15,, +27015,0,0.543512,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.646693,0.15,4,2.174049,2.174049,2.174049,2.174049,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,,,,,,,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,0.750047,0.750047,0.750047,0.750047,0.750047,0.750047,0.750047,0.750047,0.385894,0.385894,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,2.174049,0.750047,0.750047,15,15,, +7441,0,0.157656,1,1,0,2,5,,5,8,Challis,Rd,940303,0.247,0.405,0,3.378341,3.7,5,0.315312,0.315312,0.315312,0.315312,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.362598,0.315386,0.315312,0.315312,0.362598,0.315386,0.316061,0.315852,0.315312,0.315312,0.316061,0.315852,0.31741,0.358321,0.315312,0.315312,0.31741,0.358321,0.315312,0.315312,0.315312,0.315312,0.315312,0.315312,,,,,,,0.362598,0.315386,0.316061,0.315852,0.31741,0.358321,0.315312,0.315312,0.315312,0.315312,0.137157,0.122994,0.123196,0.123134,0.123601,0.135874,0.122972,0.122972,0.064639,0.064639,26.087737,29.992923,29.928855,29.948662,29.801699,26.399084,30,30,30,30,,,,,,,,,,,2580,2580,0.315312,0.315312,0.315312,0.315312,0.315312,0.315312,0.315312,0.315312,0.122972,0.122972,30,30,, +7033,0,0.514083,1,1,0,2,5,,4,8,Dorr,Rd,933707,1.012,1.526,0,11.016074,5.8,4.5,1.142408,1.142408,1.142408,1.142408,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.156886,1.150273,1.142408,1.142408,1.156886,1.150273,1.144705,1.143415,1.142408,1.142408,1.144705,1.143415,1.183857,1.185171,1.142408,1.142408,1.183857,1.185171,1.142408,1.142408,1.142408,1.142408,1.142408,1.142408,,,,,,,1.156886,1.150273,1.144705,1.143415,1.183857,1.185171,1.142408,1.142408,1.142408,1.142408,0.439601,0.437617,0.435946,0.43556,0.447692,0.448086,0.435257,0.435257,0.22791,0.22791,26.662093,26.815387,26.94582,26.976208,26.054675,26.025789,27,27,27,27,,,,,,,,,,,2580,2580,1.142408,1.142408,1.142408,1.142408,1.142408,1.142408,1.142408,1.142408,0.435257,0.435257,27,27,, +7030,0,0.842457,1,1,0,2,5,,4,8,Hughes,Rd,933708,0.561,1.403,0,18.052642,5.8,4.5,1.872126,1.872126,1.872126,1.872126,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.872181,1.949872,1.872126,1.872126,1.872181,1.949872,1.872259,1.872348,1.872126,1.872126,1.872259,1.872348,1.927276,1.872864,1.872126,1.872126,1.927276,1.872864,1.872126,1.872126,1.872126,1.872126,1.872126,1.872126,,,,,,,1.872181,1.949872,1.872259,1.872348,1.927276,1.872864,1.872126,1.872126,1.872126,1.872126,0.713297,0.736604,0.71332,0.713346,0.729825,0.713501,0.71328,0.71328,0.373489,0.373489,26.999203,25.923444,26.998073,26.996802,26.22738,26.989365,27,27,27,27,,,,,,,,,,,2580,2580,1.872126,1.872126,1.872126,1.872126,1.872126,1.872126,1.872126,1.872126,0.71328,0.71328,27,27,, +27072,0,1.293417,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.716078,0.15,4,5.173668,5.173668,5.173668,5.173668,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,,,,,,,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,1.784915,1.784915,1.784915,1.784915,1.784915,1.784915,1.784915,1.784915,0.918326,0.918326,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,5.173668,1.784915,1.784915,15,15,, +7029,0,0.187735,1,1,0,2,5,,4,8,Hughes,Rd,933708,1.403,1.591,0,4.022883,5.8,4.5,0.417188,0.417188,0.417188,0.417188,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.417239,0.431775,0.417188,0.417188,0.417239,0.431775,0.417316,0.417334,0.417188,0.417188,0.417316,0.417334,0.431042,0.417615,0.417188,0.417188,0.431042,0.417615,0.417188,0.417188,0.417188,0.417188,0.417188,0.417188,,,,,,,0.417239,0.431775,0.417316,0.417334,0.431042,0.417615,0.417188,0.417188,0.417188,0.417188,0.158964,0.163325,0.158987,0.158992,0.163105,0.159077,0.158949,0.158949,0.083229,0.083229,26.996715,26.087822,26.99173,26.990552,26.132175,26.972363,27,27,27,27,,,,,,,,,,,2580,2580,0.417188,0.417188,0.417188,0.417188,0.417188,0.417188,0.417188,0.417188,0.158949,0.158949,27,27,, +7031,0,0.561099,1,1,0,2,5,,4,8,Hughes,Rd,933708,0,0.561,0,12.02356,5.8,4.5,1.246888,1.246888,1.246888,1.246888,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.2469,1.273587,1.246888,1.246888,1.2469,1.273587,1.246898,1.2469,1.246888,1.246888,1.246898,1.2469,1.261841,1.246984,1.246888,1.246888,1.261841,1.246984,1.246888,1.246888,1.246888,1.246888,1.246888,1.246888,,,,,,,1.2469,1.273587,1.246898,1.2469,1.261841,1.246984,1.246888,1.246888,1.246888,1.246888,0.475068,0.483074,0.475067,0.475068,0.47955,0.475093,0.475064,0.475064,0.248754,0.248754,26.999744,26.433979,26.999776,26.999727,26.680035,26.997917,27,27,27,27,,,,,,,,,,,2580,2580,1.246888,1.246888,1.246888,1.246888,1.246888,1.246888,1.246888,1.246888,0.475064,0.475064,27,27,, +7154,0,0.13464,2,2,1,2,3,,4,8,Grand River,Ave,932910,17.9,18.034,0,2.885146,3.7,5,0.20196,0.20196,0.20196,0.20196,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.202045,0.201999,0.20196,0.20196,0.202045,0.201999,0.201972,0.201971,0.20196,0.20196,0.201972,0.201971,0.202199,0.202214,0.20196,0.20196,0.202199,0.202214,0.20196,0.20196,0.20196,0.20196,0.20196,0.20196,,,,,,,0.202045,0.201999,0.201972,0.201971,0.202199,0.202214,0.20196,0.20196,0.20196,0.20196,0.084849,0.084835,0.084827,0.084826,0.084895,0.084899,0.084823,0.084823,0.045104,0.045104,39.98316,39.99237,39.997751,39.997903,39.952788,39.949774,40,40,40,40,,,,,,,,,,,7946,7946,0.20196,0.20196,0.20196,0.20196,0.20196,0.20196,0.20196,0.20196,0.084823,0.084823,40,40,, +5596,0,1.186005,1,1,0,2,4,,4,8,Whitmore Lake,Rd,932204,4.151,5.337,0,25.4144,4.5,4.5,1.87264,1.87264,1.87264,1.87264,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.872897,1.873569,1.87264,1.87264,1.872897,1.873569,1.872679,1.872669,1.87264,1.87264,1.872679,1.872669,1.878741,1.87283,1.87264,1.87264,1.878741,1.87283,1.87264,1.87264,1.87264,1.87264,1.87264,1.87264,,,,,,,1.872897,1.873569,1.872679,1.872669,1.878741,1.87283,1.87264,1.87264,1.87264,1.87264,0.77535,0.775552,0.775285,0.775282,0.777103,0.77533,0.775273,0.775273,0.411357,0.411357,37.994781,37.981154,37.999216,37.999404,37.876603,37.996142,38,38,38,38,,,,,,,,,,,3096,3096,1.87264,1.87264,1.87264,1.87264,1.87264,1.87264,1.87264,1.87264,0.775273,0.775273,38,38,, +5909,1,2.487158,2,0,0,1,2,,5,8,N US 23,,931510,3.036,5.522,0,,1.02,7,2.13185,,2.13185,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.314432,,2.13185,,2.314432,,2.141092,,2.13185,,2.141092,,2.674797,,2.13185,,2.674797,,2.13185,,2.13185,,2.13185,,,,,,,,2.314432,,2.141092,,2.674797,,2.13185,,2.13185,,1.142018,,1.090016,,1.250128,,1.087243,,0.593365,,64.47781,,69.697852,,55.790968,,70,,70,,,,,,,,,,,,15136,,2.13185,,2.13185,,2.13185,,2.13185,,1.087243,,70,,, +6079,0,0.464356,1,1,0,2,6,,5,8,Fieldcrest,Dr,4105311,3.833,4.298,0,9.950488,5.8,6,0.928712,0.928712,0.928712,0.928712,30,30,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,0.929602,0.935793,0.928712,0.928712,0.929602,0.935793,0.929421,0.930229,0.928712,0.928712,0.929421,0.930229,0.943485,0.934785,0.928712,0.928712,0.943485,0.934785,0.928712,0.928712,0.928712,0.928712,0.928712,0.928712,,,,,,,0.929602,0.935793,0.929421,0.930229,0.943485,0.934785,0.928712,0.928712,0.928712,0.928712,0.362465,0.364322,0.36241,0.362653,0.36663,0.36402,0.362198,0.362198,0.190386,0.190386,29.971271,29.772985,29.977118,29.951092,29.530276,29.8051,30,30,30,30,,,,,,,,,,,2236,2236,0.928712,0.928712,0.928712,0.928712,0.928712,0.928712,0.928712,0.928712,0.362198,0.362198,30,30,, +6307,-1,2.25648,0,2,0,1,2,,4,8,S US 23,,932002,3.038,5.294,0,,0.8,7.5,,1.934126,,1.934126,,70,,44000,,9988,,22000,,14194,,15136,,15118,,2.535727,,1.934126,,2.535727,,1.939168,,1.934126,,1.939168,,2.057123,,1.934126,,2.057123,,1.934126,,1.934126,,1.934126,,,,,,,,2.535727,,1.939168,,2.057123,,1.934126,,1.934126,,1.166885,,0.987917,,1.023303,,0.986404,,0.538332,,53.392508,,69.818006,,65.814649,,70,,70,,,,,,,,,,,,15136,,1.934126,,1.934126,,1.934126,,1.934126,,0.986404,,70,, +7264,0,0.251611,1,1,0,2,7,,3,8,Washington,St,938504,0,0.252,0,5.391663,7,4.5,0.754833,0.754833,0.754833,0.754833,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,0.754834,0.754833,0.754833,0.754833,0.754834,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,,,,,,,0.754833,0.754833,0.754833,0.754833,0.754833,0.754834,0.754833,0.754833,0.754833,0.754833,0.27174,0.27174,0.27174,0.27174,0.27174,0.27174,0.27174,0.27174,0.140902,0.140902,19.999986,20,20,20,20,19.999958,20,20,20,20,,,,,,,,,,,1892,1892,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,0.754833,0.27174,0.27174,20,20,, +7434,0,0.291542,1,1,0,2,5,,4,8,Rickett,Rd,940304,2.212,2.503,0,6.247325,5.8,4.5,0.647871,0.647871,0.647871,0.647871,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.650847,0.648002,0.647871,0.647871,0.650847,0.648002,0.647995,0.647967,0.647871,0.647871,0.647995,0.647967,0.649002,0.653501,0.647871,0.647871,0.649002,0.653501,0.647871,0.647871,0.647871,0.647871,0.647871,0.647871,,,,,,,0.650847,0.648002,0.647995,0.647967,0.649002,0.653501,0.647871,0.647871,0.647871,0.647871,0.247732,0.246878,0.246876,0.246868,0.247178,0.248528,0.246839,0.246839,0.12925,0.12925,26.876547,26.994511,26.994834,26.995985,26.95293,26.767383,27,27,27,27,,,,,,,,,,,2580,2580,0.647871,0.647871,0.647871,0.647871,0.647871,0.647871,0.647871,0.647871,0.246839,0.246839,27,27,, +37437,-1,0.031355,0,1,0,2,4,,3,8,Main,St,4104563,0,0.031,0,0.671897,6,4.5,,0.057009,,0.057009,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.067277,,0.057009,,0.067277,,0.068292,,0.057009,,0.068292,,0.105298,,0.057009,,0.105298,,0.057009,,0.057009,,0.057009,,,,,,,,0.067277,,0.068292,,0.105298,,0.057009,,0.057009,,0.025827,,0.026131,,0.037233,,0.022747,,0.012,,27.963492,,27.54825,,17.866471,,33,,33,,,,,,,,,,,,2580,,0.057009,,0.057009,,0.057009,,0.057009,,0.022747,,33,, +7686,0,1.241761,1,1,0,2,5,,5,8,Maltby,Rd,940204,0.421,1.662,0,26.609174,3.7,5,2.483523,2.483523,2.483523,2.483523,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.639304,2.484092,2.483523,2.483523,2.639304,2.484092,2.485812,2.484733,2.483523,2.483523,2.485812,2.484733,2.487227,2.588303,2.483523,2.483523,2.487227,2.588303,2.483523,2.483523,2.483523,2.483523,2.483523,2.483523,,,,,,,2.639304,2.484092,2.485812,2.484733,2.487227,2.588303,2.483523,2.483523,2.483523,2.483523,1.015308,0.968745,0.969261,0.968937,0.969685,1.000008,0.968574,0.968574,0.509122,0.509122,28.229291,29.993131,29.972375,29.985384,29.955318,28.78553,30,30,30,30,,,,,,,,,,,2580,2580,2.483523,2.483523,2.483523,2.483523,2.483523,2.483523,2.483523,2.483523,0.968574,0.968574,30,30,, +7749,0,0.639578,1,1,0,2,5,,3,8,Brighton Lake,Rd,940201,0.589,1.229,0,13.705243,8,4.5,1.534987,1.534987,1.534987,1.534987,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.698505,1.535208,1.534987,1.534987,1.698505,1.535208,1.542261,1.538367,1.534987,1.534987,1.542261,1.538367,1.546322,1.632329,1.534987,1.534987,1.546322,1.632329,1.534987,1.534987,1.534987,1.534987,1.534987,1.534987,,,,,,,1.698505,1.535208,1.542261,1.538367,1.546322,1.632329,1.534987,1.534987,1.534987,1.534987,0.624676,0.575686,0.577802,0.576634,0.579021,0.604823,0.57562,0.57562,0.300602,0.300602,22.593208,24.996409,24.882094,24.945081,24.816745,23.509162,25,25,25,25,,,,,,,,,,,2408,2408,1.534987,1.534987,1.534987,1.534987,1.534987,1.534987,1.534987,1.534987,0.57562,0.57562,25,25,, +7790,0,0.58902,1,1,0,2,5,GRV,5,8,Bauer,Rd,940108,0,0.589,0,12.621856,5.55,5,1.76706,1.76706,1.76706,1.76706,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.767081,1.768768,1.76706,1.76706,1.767081,1.768768,1.767064,1.767062,1.76706,1.76706,1.767064,1.767062,1.769438,1.767157,1.76706,1.76706,1.769438,1.767157,1.76706,1.76706,1.76706,1.76706,1.76706,1.76706,,,,,,,1.767081,1.768768,1.767064,1.767062,1.769438,1.767157,1.76706,1.76706,1.76706,1.76706,0.636148,0.636654,0.636143,0.636142,0.636855,0.636171,0.636142,0.636142,0.329851,0.329851,19.999761,19.98068,19.999956,19.999971,19.973115,19.998898,20,20,20,20,,,,,,,,,,,2236,2236,1.76706,1.76706,1.76706,1.76706,1.76706,1.76706,1.76706,1.76706,0.636142,0.636142,20,20,, +7892,0,1.040147,1,1,0,2,5,,5,8,Hamburg,Rd,940101,2.328,3.368,0,22.288871,3.7,5,2.080295,2.080295,2.080295,2.080295,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.135693,2.080834,2.080295,2.080295,2.135693,2.080834,2.083725,2.082,2.080295,2.080295,2.083725,2.082,2.094169,2.130409,2.080295,2.080295,2.094169,2.130409,2.080295,2.080295,2.080295,2.080295,2.080295,2.080295,,,,,,,2.135693,2.080834,2.083725,2.082,2.094169,2.130409,2.080295,2.080295,2.080295,2.080295,0.827934,0.811477,0.812344,0.811826,0.815477,0.826349,0.811315,0.811315,0.42646,0.42646,29.221818,29.99222,29.950611,29.97543,29.801247,29.294301,30,30,30,30,,,,,,,,,,,2580,2580,2.080295,2.080295,2.080295,2.080295,2.080295,2.080295,2.080295,2.080295,0.811315,0.811315,30,30,, +27033,0,1.174853,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.175426,0.15,4,4.699413,4.699413,4.699413,4.699413,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,,,,,,,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,1.621297,1.621297,1.621297,1.621297,1.621297,1.621297,1.621297,1.621297,0.834146,0.834146,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,4.699413,1.621297,1.621297,15,15,, +27036,0,1.139692,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.421975,0.15,4,4.558769,4.558769,4.558769,4.558769,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,,,,,,,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,1.572775,1.572775,1.572775,1.572775,1.572775,1.572775,1.572775,1.572775,0.809181,0.809181,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,4.558769,1.572775,1.572775,15,15,, +27039,0,0.481179,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,10.310979,0.15,4,1.924716,1.924716,1.924716,1.924716,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,,,,,,,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,0.664027,0.664027,0.664027,0.664027,0.664027,0.664027,0.664027,0.664027,0.341637,0.341637,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,1.924716,0.664027,0.664027,15,15,, +27043,0,0.106316,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,2.278192,0.15,4,0.637894,0.637894,0.637894,0.637894,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.637894,0.637896,0.637894,0.637894,0.637894,0.637896,0.637894,0.637894,0.637894,0.637894,0.637894,0.637894,0.637896,0.637894,0.637894,0.637894,0.637896,0.637894,0.637894,0.637894,0.637894,0.637894,0.637894,0.637894,,,,,,,0.637894,0.637896,0.637894,0.637894,0.637896,0.637894,0.637894,0.637894,0.637894,0.637894,0.210505,0.210506,0.210505,0.210505,0.210506,0.210505,0.210505,0.210505,0.107379,0.107379,9.999997,9.999969,9.999996,9.999997,9.999968,9.999991,10,10,10,10,,,,,,,,,,,34400,34400,0.637894,0.637894,0.637894,0.637894,0.637894,0.637894,0.637894,0.637894,0.210505,0.210505,10,10,, +7845,0,1.021716,1,1,0,2,5,,5,8,Hamburg,Rd,940101,1.094,2.115,0,21.893914,3.7,5,2.043432,2.043432,2.043432,2.043432,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.34648,2.065481,2.043432,2.043432,5.34648,2.065481,2.295815,2.153674,2.043432,2.043432,2.295815,2.153674,2.511829,5.340593,2.043432,2.043432,2.511829,5.340593,2.043432,2.043432,2.043432,2.043432,2.043432,2.043432,,,,,,,5.34648,2.065481,2.295815,2.153674,2.511829,5.340593,2.043432,2.043432,2.043432,2.043432,1.787853,0.803553,0.872654,0.830011,0.937458,1.786087,0.796938,0.796938,0.418904,0.418904,11.46604,29.67975,26.702041,28.464367,24.405708,11.47868,30,30,30,30,,,,,,,,,,,2580,2580,2.043432,2.043432,2.043432,2.043432,2.043432,2.043432,2.043432,2.043432,0.796938,0.796938,30,30,, +26108,0,0.807104,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.295096,0.15,4,3.228418,3.228418,3.228418,3.228418,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.228463,3.228418,3.228418,3.228418,3.228463,3.228418,3.22842,3.228419,3.228418,3.228418,3.22842,3.228419,3.228421,3.228454,3.228418,3.228418,3.228421,3.228454,3.228418,3.228418,3.228418,3.228418,3.228418,3.228418,,,,,,,3.228463,3.228418,3.22842,3.228419,3.228421,3.228454,3.228418,3.228418,3.228418,3.228418,1.113818,1.113804,1.113805,1.113805,1.113805,1.113815,1.113804,1.113804,0.573044,0.573044,14.999788,14.999998,14.99999,14.999994,14.999984,14.999831,15,15,15,15,,,,,,,,,,,34400,34400,3.228418,3.228418,3.228418,3.228418,3.228418,3.228418,3.228418,3.228418,1.113804,1.113804,15,15,, +7706,0,0.203632,1,1,0,2,5,,5,8,Maltby,Rd,940204,0.217,0.421,0,4.363537,3.7,5,0.407263,0.407263,0.407263,0.407263,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.52471,0.407719,0.407263,0.407263,0.52471,0.407719,0.409496,0.408208,0.407263,0.407263,0.409496,0.408208,0.411479,0.505461,0.407263,0.407263,0.411479,0.505461,0.407263,0.407263,0.407263,0.407263,0.407263,0.407263,,,,,,,0.52471,0.407719,0.409496,0.408208,0.411479,0.505461,0.407263,0.407263,0.407263,0.407263,0.194067,0.158969,0.159502,0.159116,0.160097,0.188292,0.158833,0.158833,0.083489,0.083489,23.285052,29.9665,29.836444,29.93059,29.692667,24.171825,30,30,30,30,,,,,,,,,,,2580,2580,0.407263,0.407263,0.407263,0.407263,0.407263,0.407263,0.407263,0.407263,0.158833,0.158833,30,30,, +7718,0,0.217206,1,1,0,2,5,,5,8,Maltby,Rd,940204,0,0.217,0,4.654415,3.7,5,0.434412,0.434412,0.434412,0.434412,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.569798,0.435051,0.434412,0.434412,0.569798,0.435051,0.437304,0.435609,0.434412,0.434412,0.437304,0.435609,0.439874,0.54854,0.434412,0.434412,0.439874,0.54854,0.434412,0.434412,0.434412,0.434412,0.434412,0.434412,,,,,,,0.569798,0.435051,0.437304,0.435609,0.439874,0.54854,0.434412,0.434412,0.434412,0.434412,0.210036,0.169612,0.170288,0.16978,0.171059,0.203659,0.169421,0.169421,0.089054,0.089054,22.87191,29.955954,29.801582,29.917548,29.627514,23.758279,30,30,30,30,,,,,,,,,,,2580,2580,0.434412,0.434412,0.434412,0.434412,0.434412,0.434412,0.434412,0.434412,0.169421,0.169421,30,30,, +7902,0,0.212893,1,1,0,2,5,,5,8,Hamburg,Rd,940101,2.115,2.328,0,4.561994,3.7,5,0.425786,0.425786,0.425786,0.425786,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.527989,0.429951,0.425786,0.425786,1.527989,0.429951,0.468829,0.444756,0.425786,0.425786,0.468829,0.444756,0.50383,1.353019,0.425786,0.425786,0.50383,1.353019,0.425786,0.425786,0.425786,0.425786,0.425786,0.425786,,,,,,,1.527989,0.429951,0.468829,0.444756,0.50383,1.353019,0.425786,0.425786,0.425786,0.425786,0.496718,0.167306,0.178969,0.171748,0.18947,0.444226,0.166057,0.166057,0.087286,0.087286,8.359734,29.709412,27.245729,28.720428,25.352971,9.440805,30,30,30,30,,,,,,,,,,,2580,2580,0.425786,0.425786,0.425786,0.425786,0.425786,0.425786,0.425786,0.425786,0.166057,0.166057,30,30,, +7547,0,0.347865,1,1,1,2,4,,5,8,Brighton,Rd,940301,3.244,3.592,0,7.45425,3,4,0.521798,0.521798,0.521798,0.521798,40,40,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.706192,0.549883,0.521798,0.521798,0.706192,0.549883,0.557396,0.550703,0.521798,0.521798,0.557396,0.550703,0.585922,0.709239,0.521798,0.521798,0.585922,0.709239,0.521798,0.521798,0.521798,0.521798,0.521798,0.521798,,,,,,,0.706192,0.549883,0.557396,0.550703,0.585922,0.709239,0.521798,0.521798,0.521798,0.521798,0.274473,0.227581,0.229834,0.227826,0.238392,0.275387,0.219155,0.219155,0.116535,0.116535,29.555555,37.956976,37.445396,37.9005,35.622348,29.428605,40,40,40,40,,,,,,,,,,,3406,3406,0.521798,0.521798,0.521798,0.521798,0.521798,0.521798,0.521798,0.521798,0.219155,0.219155,40,40,, +30158,0,0.626768,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.430744,0.15,4,2.507072,2.507072,2.507072,2.507072,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,,,,,,,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,0.86494,0.86494,0.86494,0.86494,0.86494,0.86494,0.86494,0.86494,0.445005,0.445005,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,2.507072,0.86494,0.86494,15,15,, +7561,0,0.257988,1,1,1,2,4,,5,8,Brighton,Rd,940301,2.986,3.244,0,5.528323,3,4,0.386983,0.386983,0.386983,0.386983,40,40,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.495562,0.404404,0.386983,0.386983,0.495562,0.404404,0.407146,0.404513,0.386983,0.386983,0.407146,0.404513,0.431439,0.494819,0.386983,0.386983,0.431439,0.494819,0.386983,0.386983,0.386983,0.386983,0.386983,0.386983,,,,,,,0.495562,0.404404,0.407146,0.404513,0.431439,0.494819,0.386983,0.386983,0.386983,0.386983,0.195107,0.167759,0.168582,0.167792,0.17587,0.194884,0.162533,0.162533,0.086426,0.086426,31.235847,38.276879,38.019069,38.266529,35.878306,31.282769,40,40,40,40,,,,,,,,,,,3406,3406,0.386983,0.386983,0.386983,0.386983,0.386983,0.386983,0.386983,0.386983,0.162533,0.162533,40,40,, +27007,0,0.751805,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.110103,0.15,4,3.007219,3.007219,3.007219,3.007219,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,,,,,,,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,1.037491,1.037491,1.037491,1.037491,1.037491,1.037491,1.037491,1.037491,0.533781,0.533781,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,3.007219,1.037491,1.037491,15,15,, +7751,0,0.483395,1,1,0,2,5,,5,8,Brighton Lake,Rd,940201,0.106,0.589,0,10.358465,3.7,5,0.96679,0.96679,0.96679,0.96679,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.005796,0.966852,0.96679,0.96679,1.005796,0.966852,0.968289,0.967508,0.96679,0.96679,0.968289,0.967508,0.969798,0.99049,0.96679,0.96679,0.969798,0.99049,0.96679,0.96679,0.96679,0.96679,0.96679,0.96679,,,,,,,1.005796,0.966852,0.968289,0.967508,0.969798,0.99049,0.96679,0.96679,0.96679,0.96679,0.38875,0.377067,0.377498,0.377264,0.377951,0.384158,0.377048,0.377048,0.198192,0.198192,28.836561,29.998078,29.953562,29.977723,29.906943,29.282172,30,30,30,30,,,,,,,,,,,2580,2580,0.96679,0.96679,0.96679,0.96679,0.96679,0.96679,0.96679,0.96679,0.377048,0.377048,30,30,, +7752,0,0.105948,1,1,0,2,5,,5,8,Brighton Lake,Rd,940201,0,0.106,0,2.270319,3.7,5,0.211896,0.211896,0.211896,0.211896,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.217539,0.211951,0.211896,0.211896,0.217539,0.211951,0.212246,0.21207,0.211896,0.211896,0.212246,0.21207,0.21331,0.217001,0.211896,0.211896,0.21331,0.217001,0.211896,0.211896,0.211896,0.211896,0.211896,0.211896,,,,,,,0.217539,0.211951,0.212246,0.21207,0.21331,0.217001,0.211896,0.211896,0.211896,0.211896,0.084332,0.082656,0.082744,0.082692,0.083064,0.084171,0.08264,0.08264,0.043439,0.043439,29.221818,29.99222,29.950611,29.97543,29.801247,29.294301,30,30,30,30,,,,,,,,,,,2580,2580,0.211896,0.211896,0.211896,0.211896,0.211896,0.211896,0.211896,0.211896,0.08264,0.08264,30,30,, +7546,0,0.482453,1,1,1,2,4,,3,8,Brighton,Rd,940301,3.592,4.074,0,10.338283,6,4.5,0.877188,0.877188,0.877188,0.877188,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,2.493986,1.036926,0.877188,0.877188,2.493986,1.036926,1.168292,1.108548,0.877188,0.877188,1.168292,1.108548,1.322867,2.41456,0.877188,0.877188,1.322867,2.41456,0.877188,0.877188,0.877188,0.877188,0.877188,0.877188,,,,,,,2.493986,1.036926,1.168292,1.108548,1.322867,2.41456,0.877188,0.877188,0.877188,0.877188,0.835037,0.397919,0.437329,0.419406,0.483702,0.81121,0.349998,0.349998,0.184648,0.184648,11.606796,27.916352,24.777356,26.112701,21.882159,11.988597,33,33,33,33,,,,,,,,,,,2838,2838,0.877188,0.877188,0.877188,0.877188,0.877188,0.877188,0.877188,0.877188,0.349998,0.349998,33,33,, +27046,0,0.525181,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.253889,0.15,4,2.100726,2.100726,2.100726,2.100726,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,,,,,,,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,0.72475,0.72475,0.72475,0.72475,0.72475,0.72475,0.72475,0.72475,0.372879,0.372879,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,2.100726,0.72475,0.72475,15,15,, +7304,0,0.12714,1,1,0,2,7,,3,8,7th,St,938407,0.119,0.246,0,2.724435,7,4.5,0.381421,0.381421,0.381421,0.381421,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.381432,0.388264,0.381421,0.381421,0.381432,0.388264,0.381552,0.381495,0.381421,0.381421,0.381552,0.381495,0.387449,0.381613,0.381421,0.381421,0.387449,0.381613,0.381421,0.381421,0.381421,0.381421,0.381421,0.381421,,,,,,,0.381432,0.388264,0.381552,0.381495,0.387449,0.381613,0.381421,0.381421,0.381421,0.381421,0.137315,0.139364,0.137351,0.137334,0.13912,0.137369,0.137312,0.137312,0.071199,0.071199,19.9994,19.647513,19.993144,19.996108,19.688839,19.989934,20,20,20,20,,,,,,,,,,,1892,1892,0.381421,0.381421,0.381421,0.381421,0.381421,0.381421,0.381421,0.381421,0.137312,0.137312,20,20,, +7545,0,0.188114,1,1,0,2,4,,3,8,Main,St,940301,4.074,4.262,0,4.031024,6,4.5,0.342026,0.342026,0.342026,0.342026,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.640076,0.403629,0.342026,0.342026,0.640076,0.403629,0.438447,0.409713,0.342026,0.342026,0.438447,0.409713,0.478212,0.631735,0.342026,0.342026,0.478212,0.631735,0.342026,0.342026,0.342026,0.342026,0.342026,0.342026,,,,,,,0.640076,0.403629,0.438447,0.409713,0.478212,0.631735,0.342026,0.342026,0.342026,0.342026,0.225883,0.154949,0.165395,0.156774,0.177324,0.223381,0.136468,0.136468,0.071997,0.071997,17.633632,27.963492,25.742855,27.54825,23.602209,17.866471,33,33,33,33,,,,,,,,,,,2580,2580,0.342026,0.342026,0.342026,0.342026,0.342026,0.342026,0.342026,0.342026,0.136468,0.136468,33,33,, +27044,0,0.211112,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.523838,0.15,4,1.266675,1.266675,1.266675,1.266675,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,,,,,,,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,0.418003,0.418003,0.418003,0.418003,0.418003,0.418003,0.418003,0.418003,0.213224,0.213224,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,1.266675,0.418003,0.418003,10,10,, +7436,0,0.239805,1,1,0,2,5,,4,8,Rickett,Rd,940304,1.172,1.412,0,5.138685,5.8,4.5,0.532901,0.532901,0.532901,0.532901,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.533625,0.53292,0.532901,0.532901,0.533625,0.53292,0.532906,0.532904,0.532901,0.532901,0.532906,0.532904,0.533078,0.533866,0.532901,0.532901,0.533078,0.533866,0.532901,0.532901,0.532901,0.532901,0.532901,0.532901,,,,,,,0.533625,0.53292,0.532906,0.532904,0.533078,0.533866,0.532901,0.532901,0.532901,0.532901,0.203252,0.203041,0.203037,0.203036,0.203088,0.203325,0.203035,0.203035,0.106314,0.106314,26.963358,26.999025,26.999721,26.99982,26.991031,26.951174,27,27,27,27,,,,,,,,,,,2580,2580,0.532901,0.532901,0.532901,0.532901,0.532901,0.532901,0.532901,0.532901,0.203035,0.203035,27,27,, +26125,0,0.336604,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,7.212948,0.15,4,1.346417,1.346417,1.346417,1.346417,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,,,,,,,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,0.464514,0.464514,0.464514,0.464514,0.464514,0.464514,0.464514,0.464514,0.238989,0.238989,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,1.346417,0.464514,0.464514,15,15,, +27034,0,0.729382,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.629605,0.15,4,2.917526,2.917526,2.917526,2.917526,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,,,,,,,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,1.006547,1.006547,1.006547,1.006547,1.006547,1.006547,1.006547,1.006547,0.517861,0.517861,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,2.917526,1.006547,1.006547,15,15,, +27042,0,0.410289,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.791902,0.15,4,1.641155,1.641155,1.641155,1.641155,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,,,,,,,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,0.566198,0.566198,0.566198,0.566198,0.566198,0.566198,0.566198,0.566198,0.291305,0.291305,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,1.641155,0.566198,0.566198,15,15,, +7437,0,0.924158,1,1,0,2,5,,5,8,Rickett,Rd,940304,0.248,1.172,0,19.803381,3.7,5,1.848316,1.848316,1.848316,1.848316,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.848653,1.848328,1.848316,1.848316,1.848653,1.848328,1.848316,1.848316,1.848316,1.848316,1.848316,1.848316,1.848411,1.848758,1.848316,1.848316,1.848411,1.848758,1.848316,1.848316,1.848316,1.848316,1.848316,1.848316,,,,,,,1.848653,1.848328,1.848316,1.848316,1.848411,1.848758,1.848316,1.848316,1.848316,1.848316,0.720944,0.720847,0.720843,0.720843,0.720872,0.720976,0.720843,0.720843,0.378905,0.378905,29.994522,29.999803,29.999994,29.999993,29.998444,29.992822,30,30,30,30,,,,,,,,,,,2580,2580,1.848316,1.848316,1.848316,1.848316,1.848316,1.848316,1.848316,1.848316,0.720843,0.720843,30,30,, +7435,0,0.800144,1,1,0,2,5,,4,8,Rickett,Rd,940304,1.412,2.212,0,17.145936,5.8,4.5,1.778097,1.778097,1.778097,1.778097,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.779341,1.778123,1.778097,1.778097,1.779341,1.778123,1.778103,1.7781,1.778097,1.778097,1.778103,1.7781,1.778438,1.779607,1.778097,1.778097,1.778438,1.779607,1.778097,1.778097,1.778097,1.778097,1.778097,1.778097,,,,,,,1.779341,1.778123,1.778103,1.7781,1.778438,1.779607,1.778097,1.778097,1.778097,1.778097,0.677828,0.677463,0.677457,0.677456,0.677557,0.677908,0.677455,0.677455,0.35473,0.35473,26.981119,26.9996,26.999914,26.999951,26.994819,26.977098,27,27,27,27,,,,,,,,,,,2580,2580,1.778097,1.778097,1.778097,1.778097,1.778097,1.778097,1.778097,1.778097,0.677455,0.677455,27,27,, +27041,0,0.628651,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,13.471095,0.15,4,2.514604,2.514604,2.514604,2.514604,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,,,,,,,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,0.867538,0.867538,0.867538,0.867538,0.867538,0.867538,0.867538,0.867538,0.446342,0.446342,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,2.514604,0.867538,0.867538,15,15,, +29180,0,0.390317,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.363934,0.15,4,1.561268,1.561268,1.561268,1.561268,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,,,,,,,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,0.538637,0.538637,0.538637,0.538637,0.538637,0.538637,0.538637,0.538637,0.277125,0.277125,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,1.561268,0.538637,0.538637,15,15,, +5819,-1,0.853673,0,2,0,1,2,,4,8,S US 23,,932002,5.756,6.609,0,,0.8,7.5,,0.731719,,0.731719,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.932937,,0.731719,,0.932937,,0.73397,,0.731719,,0.73397,,0.79133,,0.731719,,0.79133,,0.731719,,0.731719,,0.731719,,,,,,,,0.932937,,0.73397,,0.79133,,0.731719,,0.731719,,0.433542,,0.373852,,0.39106,,0.373177,,0.203662,,54.902292,,69.785327,,64.726905,,70,,70,,,,,,,,,,,,15136,,0.731719,,0.731719,,0.731719,,0.731719,,0.373177,,70,, +37477,-1,0.023952,0,2,0,2,4,,4,8,Lee,Rd,4104575,0.065,0.089,0,0.513262,4.5,4.5,,0.037819,,0.037819,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.040436,,0.037819,,0.040436,,0.038986,,0.037819,,0.038986,,0.048156,,0.037819,,0.048156,,0.037819,,0.037819,,0.037819,,,,,,,,0.040436,,0.038986,,0.048156,,0.037819,,0.037819,,0.016442,,0.016007,,0.018758,,0.015657,,0.008308,,35.540711,,36.862439,,29.843277,,38,,38,,,,,,,,,,,,6192,,0.037819,,0.037819,,0.037819,,0.037819,,0.015657,,38,, +7012,0,0.22812,1,1,0,2,4,,3,8,Spencer,Rd,933908,0.394,0.622,0,4.888289,6,4.5,0.414764,0.414764,0.414764,0.414764,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.590007,0.645329,0.414764,0.414764,0.590007,0.645329,0.630318,0.523213,0.414764,0.414764,0.630318,0.523213,0.940957,0.59457,0.414764,0.414764,0.940957,0.59457,0.414764,0.414764,0.414764,0.414764,0.414764,0.414764,,,,,,,0.590007,0.645329,0.630318,0.523213,0.940957,0.59457,0.414764,0.414764,0.414764,0.414764,0.218064,0.23466,0.230157,0.198026,0.323349,0.219433,0.165491,0.165491,0.087308,0.087308,23.198404,21.209675,21.714772,26.15991,14.546054,23.020345,33,33,33,33,,,,,,,,,,,2580,2580,0.414764,0.414764,0.414764,0.414764,0.414764,0.414764,0.414764,0.414764,0.165491,0.165491,33,33,, +7130,0,0.373996,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.837,23.21,0,8.01419,5,5,0.641135,0.641135,0.641135,0.641135,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.650932,0.651682,0.641135,0.641135,0.650932,0.651682,0.644797,0.645577,0.641135,0.641135,0.644797,0.645577,0.670221,0.703989,0.641135,0.641135,0.670221,0.703989,0.641135,0.641135,0.641135,0.641135,0.641135,0.641135,,,,,,,0.650932,0.651682,0.644797,0.645577,0.670221,0.703989,0.641135,0.641135,0.641135,0.641135,0.262599,0.262824,0.260758,0.260992,0.268386,0.278516,0.25966,0.25966,0.13731,0.13731,34.47322,34.433555,34.801219,34.759193,33.481084,31.875104,35,35,35,35,,,,,,,,,,,7946,7946,0.641135,0.641135,0.641135,0.641135,0.641135,0.641135,0.641135,0.641135,0.25966,0.25966,35,35,, +7431,0,0.399666,1,1,0,2,4,,3,8,Rickett,Rd,940304,3.611,4.011,0,8.564271,6,4.5,0.726665,0.726665,0.726665,0.726665,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.758678,0.779078,0.726665,0.726665,0.758678,0.779078,0.744158,0.741644,0.726665,0.726665,0.744158,0.741644,0.816724,0.77128,0.726665,0.726665,0.816724,0.77128,0.726665,0.726665,0.726665,0.726665,0.726665,0.726665,,,,,,,0.758678,0.779078,0.744158,0.741644,0.816724,0.77128,0.726665,0.726665,0.726665,0.726665,0.299543,0.305663,0.295187,0.294433,0.316957,0.303324,0.28994,0.28994,0.152963,0.152963,31.607558,30.779905,32.224301,32.333511,29.361165,31.091105,33,33,33,33,,,,,,,,,,,2580,2580,0.726665,0.726665,0.726665,0.726665,0.726665,0.726665,0.726665,0.726665,0.28994,0.28994,33,33,, +24644,0,0.230737,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.944369,0.15,4,1.384423,1.384423,1.384423,1.384423,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,,,,,,,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,0.45686,0.45686,0.45686,0.45686,0.45686,0.45686,0.45686,0.45686,0.233045,0.233045,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,1.384423,0.45686,0.45686,10,10,, +26111,0,0.295997,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,6.342801,0.15,4,1.775984,1.775984,1.775984,1.775984,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,,,,,,,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,0.586075,0.586075,0.586075,0.586075,0.586075,0.586075,0.586075,0.586075,0.298957,0.298957,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,1.775984,0.586075,0.586075,10,10,, +27035,0,0.210016,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,4.500337,0.15,4,0.840063,0.840063,0.840063,0.840063,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.840064,0.840066,0.840063,0.840063,0.840064,0.840066,0.840065,0.840064,0.840063,0.840063,0.840065,0.840064,0.840071,0.840069,0.840063,0.840063,0.840071,0.840069,0.840063,0.840063,0.840063,0.840063,0.840063,0.840063,,,,,,,0.840064,0.840066,0.840065,0.840064,0.840071,0.840069,0.840063,0.840063,0.840063,0.840063,0.289822,0.289823,0.289822,0.289822,0.289824,0.289823,0.289822,0.289822,0.149111,0.149111,14.999975,14.999943,14.99997,14.999977,14.999857,14.999893,15,15,15,15,,,,,,,,,,,34400,34400,0.840063,0.840063,0.840063,0.840063,0.840063,0.840063,0.840063,0.840063,0.289822,0.289822,15,15,, +27038,0,0.521272,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,11.170125,0.15,4,2.08509,2.08509,2.08509,2.08509,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,,,,,,,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,0.719356,0.719356,0.719356,0.719356,0.719356,0.719356,0.719356,0.719356,0.370103,0.370103,14.999999,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,2.08509,0.719356,0.719356,15,15,, +27040,0,0.901664,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,19.321368,0.15,4,3.606655,3.606655,3.606655,3.606655,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,,,,,,,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,1.244296,1.244296,1.244296,1.244296,1.244296,1.244296,1.244296,1.244296,0.640181,0.640181,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,3.606655,1.244296,1.244296,15,15,, +30155,0,0.596847,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,12.789575,0.15,4,2.387387,2.387387,2.387387,2.387387,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,,,,,,,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,0.823649,0.823649,0.823649,0.823649,0.823649,0.823649,0.823649,0.823649,0.423761,0.423761,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,2.387387,0.823649,0.823649,15,15,, +7006,0,0.076139,1,1,0,2,4,,3,8,Church,St,934001,0,0.076,0,1.63154,6,4.5,0.138434,0.138434,0.138434,0.138434,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.159042,0.154054,0.138434,0.138434,0.159042,0.154054,0.152975,0.153071,0.138434,0.138434,0.152975,0.153071,0.157757,0.160225,0.138434,0.138434,0.157757,0.160225,0.138434,0.138434,0.138434,0.138434,0.138434,0.138434,,,,,,,0.159042,0.154054,0.152975,0.153071,0.157757,0.160225,0.138434,0.138434,0.138434,0.138434,0.061418,0.059921,0.059597,0.059626,0.061032,0.061773,0.055235,0.055235,0.02914,0.02914,28.723884,29.6539,29.863186,29.844322,28.957898,28.511772,33,33,33,33,,,,,,,,,,,2580,2580,0.138434,0.138434,0.138434,0.138434,0.138434,0.138434,0.138434,0.138434,0.055235,0.055235,33,33,, +7133,0,0.203608,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.515,22.719,0,4.363019,5,5,0.349042,0.349042,0.349042,0.349042,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.353999,0.35711,0.349042,0.349042,0.353999,0.35711,0.35347,0.354434,0.349042,0.349042,0.35347,0.354434,0.36862,0.385284,0.349042,0.349042,0.36862,0.385284,0.349042,0.349042,0.349042,0.349042,0.349042,0.349042,,,,,,,0.353999,0.35711,0.35347,0.354434,0.36862,0.385284,0.349042,0.349042,0.349042,0.349042,0.142849,0.143782,0.14269,0.14298,0.147235,0.152235,0.141362,0.141362,0.074753,0.074753,34.509883,34.209214,34.5615,34.467481,33.141046,31.707626,35,35,35,35,,,,,,,,,,,7946,7946,0.349042,0.349042,0.349042,0.349042,0.349042,0.349042,0.349042,0.349042,0.141362,0.141362,35,35,, +7292,0,0.169912,1,1,0,2,5,,3,8,3rd,St,938410,0,0.17,0,3.640974,8,4.5,0.407789,0.407789,0.407789,0.407789,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.742708,0.419428,0.407789,0.407789,0.742708,0.419428,0.428503,0.416425,0.407789,0.407789,0.428503,0.416425,0.486412,0.756472,0.407789,0.407789,0.486412,0.756472,0.407789,0.407789,0.407789,0.407789,0.407789,0.407789,,,,,,,0.742708,0.419428,0.428503,0.416425,0.486412,0.756472,0.407789,0.407789,0.407789,0.407789,0.253396,0.156413,0.159135,0.155512,0.176508,0.257526,0.152921,0.152921,0.079859,0.079859,13.726432,24.306234,23.79152,24.481544,20.959026,13.476682,25,25,25,25,,,,,,,,,,,2408,2408,0.407789,0.407789,0.407789,0.407789,0.407789,0.407789,0.407789,0.407789,0.152921,0.152921,25,25,, +7428,0,0.120292,1,1,0,2,5,,3,8,Rickett,Rd,940304,4.246,4.366,0,2.577678,8,4.5,0.2887,0.2887,0.2887,0.2887,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.294443,0.290574,0.2887,0.2887,0.294443,0.290574,0.289004,0.288777,0.2887,0.2887,0.289004,0.288777,0.297858,0.297641,0.2887,0.2887,0.297858,0.297641,0.2887,0.2887,0.2887,0.2887,0.2887,0.2887,,,,,,,0.294443,0.290574,0.289004,0.288777,0.297858,0.297641,0.2887,0.2887,0.2887,0.2887,0.109985,0.108825,0.108354,0.108286,0.11101,0.110945,0.108262,0.108262,0.056537,0.056537,24.512355,24.838803,24.973672,24.993298,24.231304,24.249033,25,25,25,25,,,,,,,,,,,2408,2408,0.2887,0.2887,0.2887,0.2887,0.2887,0.2887,0.2887,0.2887,0.108262,0.108262,25,25,, +7478,0,0.193096,1,1,1,2,4,,3,8,Main,St,940301,4.698,4.891,0,4.137781,6,4.5,0.351084,0.351084,0.351084,0.351084,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.454485,0.535959,0.351084,0.351084,0.454485,0.535959,0.50907,0.456968,0.351084,0.351084,0.50907,0.456968,0.63105,0.45719,0.351084,0.351084,0.63105,0.45719,0.351084,0.351084,0.351084,0.351084,0.351084,0.351084,,,,,,,0.454485,0.535959,0.50907,0.456968,0.63105,0.45719,0.351084,0.351084,0.351084,0.351084,0.171103,0.195545,0.187478,0.171848,0.224072,0.171914,0.140083,0.140083,0.073903,0.073903,25.492111,21.616926,22.75875,25.353585,18.359542,25.341277,33,33,33,33,,,,,,,,,,,2838,2838,0.351084,0.351084,0.351084,0.351084,0.351084,0.351084,0.351084,0.351084,0.140083,0.140083,33,33,, +7728,0,0.480713,1,1,0,2,5,,3,8,Brighton Lake,Rd,940201,1.236,1.716,0,10.300998,8,4.5,1.153712,1.153712,1.153712,1.153712,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,1.270568,1.195502,1.153712,1.153712,1.270568,1.195502,1.167292,1.165121,1.153712,1.153712,1.167292,1.165121,1.285743,1.29214,1.153712,1.153712,1.285743,1.29214,1.153712,1.153712,1.153712,1.153712,1.153712,1.153712,,,,,,,1.270568,1.195502,1.167292,1.165121,1.285743,1.29214,1.153712,1.153712,1.153712,1.153712,0.467699,0.445179,0.436716,0.436065,0.472251,0.47417,0.432642,0.432642,0.225935,0.225935,22.700699,24.126097,24.709147,24.75519,22.432775,22.321726,25,25,25,25,,,,,,,,,,,2408,2408,1.153712,1.153712,1.153712,1.153712,1.153712,1.153712,1.153712,1.153712,0.432642,0.432642,25,25,, +27048,0,0.329623,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,7.063359,0.15,4,1.977741,1.977741,1.977741,1.977741,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,,,,,,,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,0.652654,0.652654,0.652654,0.652654,0.652654,0.652654,0.652654,0.652654,0.33292,0.33292,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,1.977741,0.652654,0.652654,10,10,, +7737,0,0.007352,1,1,0,2,5,,3,8,Brighton Lake,Rd,940201,1.229,1.236,0,0.157544,8,4.5,0.017645,0.017645,0.017645,0.017645,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.026644,0.017671,0.017645,0.017645,0.026644,0.017671,0.018093,0.017777,0.017645,0.017645,0.018093,0.017777,0.018541,0.023908,0.017645,0.017645,0.018541,0.023908,0.017645,0.017645,0.017645,0.017645,0.017645,0.017645,,,,,,,0.026644,0.017671,0.018093,0.017777,0.018541,0.023908,0.017645,0.017645,0.017645,0.017645,0.009317,0.006625,0.006751,0.006656,0.006886,0.008496,0.006617,0.006617,0.003455,0.003455,16.555992,24.96328,24.380776,24.814635,23.791546,18.451009,25,25,25,25,,,,,,,,,,,2408,2408,0.017645,0.017645,0.017645,0.017645,0.017645,0.017645,0.017645,0.017645,0.006617,0.006617,25,25,, +7013,0,0.207127,1,1,0,2,7,,3,8,North,St,933906,0,0.207,0,4.438428,7,4.5,0.62138,0.62138,0.62138,0.62138,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.622061,0.654327,0.62138,0.62138,0.622061,0.654327,0.622437,0.621722,0.62138,0.62138,0.622437,0.621722,0.663582,0.630977,0.62138,0.62138,0.663582,0.630977,0.62138,0.62138,0.62138,0.62138,0.62138,0.62138,,,,,,,0.622061,0.654327,0.622437,0.621722,0.663582,0.630977,0.62138,0.62138,0.62138,0.62138,0.223901,0.233581,0.224014,0.223799,0.236357,0.226576,0.223697,0.223697,0.115991,0.115991,19.978106,18.992959,19.966021,19.989,18.728046,19.695794,20,20,20,20,,,,,,,,,,,1892,1892,0.62138,0.62138,0.62138,0.62138,0.62138,0.62138,0.62138,0.62138,0.223697,0.223697,20,20,, +7255,0,0.074035,1,1,0,2,7,,3,8,Hyne,St,938506,0.053,0.127,0,1.586457,7,4.5,0.222104,0.222104,0.222104,0.222104,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,,,,,,,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.079957,0.079957,0.079957,0.079957,0.079957,0.079958,0.079957,0.079957,0.041459,0.041459,20,20,20,20,20,19.999978,20,20,20,20,,,,,,,,,,,1892,1892,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.222104,0.079957,0.079957,20,20,, +37435,0,0.027066,1,1,0,2,4,,3,8,Main,St,940301,4.262,4.289,0,0.579995,6,4.5,0.049212,0.049212,0.049212,0.049212,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.092096,0.058075,0.049212,0.049212,0.092096,0.058075,0.063085,0.058951,0.049212,0.049212,0.063085,0.058951,0.068807,0.090896,0.049212,0.049212,0.068807,0.090896,0.049212,0.049212,0.049212,0.049212,0.049212,0.049212,,,,,,,0.092096,0.058075,0.063085,0.058951,0.068807,0.090896,0.049212,0.049212,0.049212,0.049212,0.032501,0.022295,0.023797,0.022557,0.025514,0.032141,0.019635,0.019635,0.010359,0.010359,17.633632,27.963492,25.742855,27.54825,23.602209,17.866471,33,33,33,33,,,,,,,,,,,2580,2580,0.049212,0.049212,0.049212,0.049212,0.049212,0.049212,0.049212,0.049212,0.019635,0.019635,33,33,, +7501,0,0.182856,1,1,1,2,4,,3,8,Main,St,940301,4.515,4.698,0,3.91834,6,4.5,0.332465,0.332465,0.332465,0.332465,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.505398,0.50288,0.332465,0.332465,0.505398,0.50288,0.486493,0.452276,0.332465,0.332465,0.486493,0.452276,0.563786,0.520733,0.332465,0.332465,0.563786,0.520733,0.332465,0.332465,0.332465,0.332465,0.332465,0.332465,,,,,,,0.505398,0.50288,0.486493,0.452276,0.563786,0.520733,0.332465,0.332465,0.332465,0.332465,0.184533,0.183778,0.178862,0.168597,0.20205,0.189134,0.132654,0.132654,0.069984,0.069984,21.708345,21.817055,22.551941,24.258083,19.460122,21.069037,33,33,33,33,,,,,,,,,,,2838,2838,0.332465,0.332465,0.332465,0.332465,0.332465,0.332465,0.332465,0.332465,0.132654,0.132654,33,33,, +7263,0,0.184716,1,1,0,2,7,,3,8,Washington,St,938504,0.252,0.436,0,3.95819,7,4.5,0.554147,0.554147,0.554147,0.554147,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.554754,0.585098,0.554147,0.554147,0.554754,0.585098,0.55509,0.554452,0.554147,0.554147,0.55509,0.554452,0.591783,0.568358,0.554147,0.554147,0.591783,0.568358,0.554147,0.554147,0.554147,0.554147,0.554147,0.554147,,,,,,,0.554754,0.585098,0.55509,0.554452,0.591783,0.568358,0.554147,0.554147,0.554147,0.554147,0.199675,0.208778,0.199776,0.199584,0.210784,0.203756,0.199493,0.199493,0.103441,0.103441,19.978106,18.942,19.966021,19.989,18.728046,19.499908,20,20,20,20,,,,,,,,,,,1892,1892,0.554147,0.554147,0.554147,0.554147,0.554147,0.554147,0.554147,0.554147,0.199493,0.199493,20,20,, +7288,0,0.08763,1,1,0,2,5,,3,8,3rd,St,938410,0.17,0.258,0,1.877788,8,4.5,0.210312,0.210312,0.210312,0.210312,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.267578,0.381304,0.210312,0.210312,0.267578,0.381304,0.273477,0.241923,0.210312,0.210312,0.273477,0.241923,0.551741,0.3837,0.210312,0.210312,0.551741,0.3837,0.210312,0.210312,0.210312,0.210312,0.210312,0.210312,,,,,,,0.267578,0.381304,0.273477,0.241923,0.551741,0.3837,0.210312,0.210312,0.210312,0.210312,0.096047,0.130165,0.097817,0.08835,0.181296,0.130884,0.078867,0.078867,0.041186,0.041186,19.649611,13.789003,19.225773,21.733395,9.529489,13.702891,25,25,25,25,,,,,,,,,,,2408,2408,0.210312,0.210312,0.210312,0.210312,0.210312,0.210312,0.210312,0.210312,0.078867,0.078867,25,25,, +7261,0,0.052772,1,1,0,2,7,,3,8,Hyne,St,938506,0,0.053,0,1.130829,7,4.5,0.158316,0.158316,0.158316,0.158316,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.15849,0.167159,0.158316,0.158316,0.15849,0.167159,0.158585,0.158403,0.158316,0.158316,0.158585,0.158403,0.169068,0.162376,0.158316,0.158316,0.169068,0.162376,0.158316,0.158316,0.158316,0.158316,0.158316,0.158316,,,,,,,0.15849,0.167159,0.158585,0.158403,0.169068,0.162376,0.158316,0.158316,0.158316,0.158316,0.057046,0.059647,0.057075,0.05702,0.060219,0.058212,0.056994,0.056994,0.029552,0.029552,19.978106,18.942,19.966021,19.989,18.728046,19.499908,20,20,20,20,,,,,,,,,,,1892,1892,0.158316,0.158316,0.158316,0.158316,0.158316,0.158316,0.158316,0.158316,0.056994,0.056994,20,20,, +7239,0,0.074983,1,1,0,2,7,,3,8,Center,St,938606,0.081,0.156,0,1.606788,7,4.5,0.22495,0.22495,0.22495,0.22495,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,,,,,,,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.080982,0.080982,0.080982,0.080982,0.080982,0.080982,0.080982,0.080982,0.041991,0.041991,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,1892,1892,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.22495,0.080982,0.080982,20,20,, +37436,1,0.031844,1,0,0,2,4,,3,8,Main,St,940301,4.289,4.321,0,0.682366,6,4.5,0.057898,,0.057898,,33,,7500,,1703,,3750,,2420,,2580,,2577,,0.108351,,0.057898,,0.108351,,0.07422,,0.057898,,0.07422,,0.080951,,0.057898,,0.080951,,0.057898,,0.057898,,0.057898,,,,,,,,0.108351,,0.07422,,0.080951,,0.057898,,0.057898,,0.038237,,0.027998,,0.030017,,0.023101,,0.012187,,17.633632,,25.742855,,23.602209,,33,,33,,,,,,,,,,,,2580,,0.057898,,0.057898,,0.057898,,0.057898,,0.023101,,33,,, +7253,0,0.065255,1,1,0,2,7,,3,8,1st,St,938604,0,0.065,0,1.398329,7,4.5,0.195766,0.195766,0.195766,0.195766,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,,,,,,,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.070476,0.070476,0.070476,0.070476,0.070476,0.070476,0.070476,0.070476,0.036543,0.036543,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,1892,1892,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.195766,0.070476,0.070476,20,20,, +7523,0,0.063266,1,1,1,2,4,,3,8,Main,St,940301,4.452,4.515,0,1.355694,6,4.5,0.115029,0.115029,0.115029,0.115029,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.174861,0.172798,0.115029,0.115029,0.174861,0.172798,0.16832,0.156482,0.115029,0.115029,0.16832,0.156482,0.195063,0.170644,0.115029,0.115029,0.195063,0.170644,0.115029,0.115029,0.115029,0.115029,0.115029,0.115029,,,,,,,0.174861,0.172798,0.16832,0.156482,0.195063,0.170644,0.115029,0.115029,0.115029,0.115029,0.063846,0.063227,0.061884,0.058332,0.069907,0.062581,0.045896,0.045896,0.024214,0.024214,21.708345,21.967545,22.551941,24.258083,19.460122,22.244817,33,33,33,33,,,,,,,,,,,2838,2838,0.115029,0.115029,0.115029,0.115029,0.115029,0.115029,0.115029,0.115029,0.045896,0.045896,33,33,, +7135,0,0.061921,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.394,22.456,0,1.326872,5,5,0.10615,0.10615,0.10615,0.10615,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.112522,0.113422,0.10615,0.10615,0.112522,0.113422,0.110426,0.111295,0.10615,0.10615,0.110426,0.111295,0.124217,0.133233,0.10615,0.10615,0.124217,0.133233,0.10615,0.10615,0.10615,0.10615,0.10615,0.10615,,,,,,,0.112522,0.113422,0.110426,0.111295,0.124217,0.133233,0.10615,0.10615,0.10615,0.10615,0.044902,0.045172,0.044274,0.044534,0.048411,0.051116,0.042991,0.042991,0.022734,0.022734,33.017841,32.75586,33.644554,33.382073,29.909279,27.885259,35,35,35,35,,,,,,,,,,,7946,7946,0.10615,0.10615,0.10615,0.10615,0.10615,0.10615,0.10615,0.10615,0.042991,0.042991,35,35,, +7134,0,0.058942,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.456,22.515,0,1.263036,5,5,0.101043,0.101043,0.101043,0.101043,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.1056,0.104798,0.101043,0.101043,0.1056,0.104798,0.103073,0.103782,0.101043,0.101043,0.103073,0.103782,0.112448,0.1255,0.101043,0.101043,0.112448,0.1255,0.101043,0.101043,0.101043,0.101043,0.101043,0.101043,,,,,,,0.1056,0.104798,0.103073,0.103782,0.112448,0.1255,0.101043,0.101043,0.101043,0.101043,0.04229,0.042049,0.041532,0.041744,0.044344,0.04826,0.040922,0.040922,0.02164,0.02164,33.489528,33.74593,34.310539,34.076239,31.450086,28.179239,35,35,35,35,,,,,,,,,,,7946,7946,0.101043,0.101043,0.101043,0.101043,0.101043,0.101043,0.101043,0.101043,0.040922,0.040922,35,35,, +7430,0,0.235289,1,1,0,2,4,,3,8,Rickett,Rd,940304,4.011,4.246,0,5.041907,6,4.5,0.427798,0.427798,0.427798,0.427798,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.898392,0.696122,0.427798,0.427798,0.898392,0.696122,0.581832,0.543453,0.427798,0.427798,0.581832,0.543453,0.965568,1.001693,0.427798,0.427798,0.965568,1.001693,0.427798,0.427798,0.427798,0.427798,0.427798,0.427798,,,,,,,0.898392,0.696122,0.581832,0.543453,0.965568,1.001693,0.427798,0.427798,0.427798,0.427798,0.31187,0.251189,0.216902,0.205388,0.332022,0.34286,0.170691,0.170691,0.090052,0.090052,15.714009,20.27997,24.263585,25.977109,14.620757,14.09348,33,33,33,33,,,,,,,,,,,2580,2580,0.427798,0.427798,0.427798,0.427798,0.427798,0.427798,0.427798,0.427798,0.170691,0.170691,33,33,, +7005,0,0.337175,1,1,0,2,7,,3,8,Church,St,934001,0.076,0.413,0,7.225169,7,4.5,1.011524,1.011524,1.011524,1.011524,20,20,5500,5500,1249,1249,2750,2750,1774,1774,1892,1892,1890,1890,1.016915,1.01184,1.011524,1.011524,1.016915,1.01184,1.017183,1.01323,1.011524,1.011524,1.017183,1.01323,1.014733,1.012953,1.011524,1.011524,1.014733,1.012953,1.011524,1.011524,1.011524,1.011524,1.011524,1.011524,,,,,,,1.016915,1.01184,1.017183,1.01323,1.014733,1.012953,1.011524,1.011524,1.011524,1.011524,0.365766,0.364243,0.365846,0.364661,0.365111,0.364577,0.364148,0.364148,0.188818,0.188818,19.893957,19.993749,19.888717,19.966309,19.93674,19.971777,20,20,20,20,,,,,,,,,,,1892,1892,1.011524,1.011524,1.011524,1.011524,1.011524,1.011524,1.011524,1.011524,0.364148,0.364148,20,20,, +7472,0,0.149326,1,1,1,2,4,,3,8,Main,St,940301,4.891,5.04,0,3.199842,6,4.5,0.271502,0.271502,0.271502,0.271502,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.34626,0.36986,0.271502,0.271502,0.34626,0.36986,0.36339,0.317733,0.271502,0.271502,0.36339,0.317733,0.496192,0.348281,0.271502,0.271502,0.496192,0.348281,0.271502,0.271502,0.271502,0.271502,0.271502,0.271502,,,,,,,0.34626,0.36986,0.36339,0.317733,0.496192,0.348281,0.271502,0.271502,0.271502,0.271502,0.130757,0.137837,0.135896,0.122198,0.175736,0.131363,0.108329,0.108329,0.057151,0.057151,25.875256,24.224194,24.655479,28.198429,18.056641,25.725088,33,33,33,33,,,,,,,,,,,2838,2838,0.271502,0.271502,0.271502,0.271502,0.271502,0.271502,0.271502,0.271502,0.108329,0.108329,33,33,, +27030,0,0.158669,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,3.400059,0.15,4,0.952016,0.952016,0.952016,0.952016,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.952017,0.952017,0.952016,0.952016,0.952017,0.952017,0.952017,0.952017,0.952016,0.952016,0.952017,0.952017,0.952017,0.952017,0.952016,0.952016,0.952017,0.952017,0.952016,0.952016,0.952016,0.952016,0.952016,0.952016,,,,,,,0.952017,0.952017,0.952017,0.952017,0.952017,0.952017,0.952016,0.952016,0.952016,0.952016,0.314165,0.314166,0.314165,0.314165,0.314166,0.314166,0.314165,0.314165,0.160256,0.160256,9.999997,9.999997,9.999997,9.999997,9.999993,9.999992,10,10,10,10,,,,,,,,,,,34400,34400,0.952016,0.952016,0.952016,0.952016,0.952016,0.952016,0.952016,0.952016,0.314165,0.314165,10,10,, +7131,0,0.06781,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.769,22.837,0,1.453074,5,5,0.116246,0.116246,0.116246,0.116246,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.118021,0.117771,0.116246,0.116246,0.118021,0.117771,0.117776,0.11774,0.116246,0.116246,0.117776,0.11774,0.120621,0.124819,0.116246,0.116246,0.120621,0.124819,0.116246,0.116246,0.116246,0.116246,0.116246,0.116246,,,,,,,0.118021,0.117771,0.117776,0.11774,0.120621,0.124819,0.116246,0.116246,0.116246,0.116246,0.047612,0.047537,0.047539,0.047528,0.048392,0.049651,0.04708,0.04708,0.024896,0.024896,34.473488,34.546632,34.545372,34.555992,33.730583,32.596168,35,35,35,35,,,,,,,,,,,7946,7946,0.116246,0.116246,0.116246,0.116246,0.116246,0.116246,0.116246,0.116246,0.04708,0.04708,35,35,, +7132,0,0.050341,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.719,22.769,0,1.078737,5,5,0.086299,0.086299,0.086299,0.086299,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.089557,0.089929,0.086299,0.086299,0.089557,0.089929,0.088134,0.088408,0.086299,0.086299,0.088134,0.088408,0.09561,0.102539,0.086299,0.086299,0.09561,0.102539,0.086299,0.086299,0.086299,0.086299,0.086299,0.086299,,,,,,,0.089557,0.089929,0.088134,0.088408,0.09561,0.102539,0.086299,0.086299,0.086299,0.086299,0.035929,0.03604,0.035502,0.035584,0.037744,0.039823,0.034951,0.034951,0.018482,0.018482,33.726606,33.587033,34.271293,34.165218,31.591534,29.456816,35,35,35,35,,,,,,,,,,,7946,7946,0.086299,0.086299,0.086299,0.086299,0.086299,0.086299,0.086299,0.086299,0.034951,0.034951,35,35,, +7236,0,0.124988,1,1,0,2,4,,3,8,Main,St,940301,5.04,5.165,0,2.678315,6,4.5,0.227251,0.227251,0.227251,0.227251,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.323267,0.353578,0.227251,0.227251,0.323267,0.353578,0.345354,0.286671,0.227251,0.227251,0.345354,0.286671,0.515554,0.325768,0.227251,0.227251,0.515554,0.325768,0.227251,0.227251,0.227251,0.227251,0.227251,0.227251,,,,,,,0.323267,0.353578,0.345354,0.286671,0.515554,0.325768,0.227251,0.227251,0.227251,0.227251,0.119478,0.128571,0.126104,0.108499,0.177164,0.120228,0.090673,0.090673,0.047836,0.047836,23.198404,21.209675,21.714772,26.15991,14.546054,23.020345,33,33,33,33,,,,,,,,,,,2580,2580,0.227251,0.227251,0.227251,0.227251,0.227251,0.227251,0.227251,0.227251,0.090673,0.090673,33,33,, +37475,1,0.02163,3,0,0,2,4,,4,8,Lee,Rd,931610,0.21,0.232,0,0.46351,4.5,4.5,0.034153,,0.034153,,38,,27000,,6129,,13500,,8710,,9288,,9277,,0.035311,,0.034153,,0.035311,,0.034442,,0.034153,,0.034442,,0.036214,,0.034153,,0.036214,,0.034153,,0.034153,,0.034153,,,,,,,,0.035311,,0.034442,,0.036214,,0.034153,,0.034153,,0.014487,,0.014226,,0.014758,,0.014139,,0.007502,,36.754393,,37.681468,,35.837276,,38,,38,,,,,,,,,,,,9288,,0.034153,,0.034153,,0.034153,,0.034153,,0.014139,,38,,, +5695,1,0.237605,2,0,0,1,2,,4,8,N US 23,,931510,5.522,5.76,0,,0.8,7.5,0.203661,,0.203661,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.205924,,0.203661,,0.205924,,0.203743,,0.203661,,0.203743,,0.21288,,0.203661,,0.21288,,0.203661,,0.203661,,0.203661,,,,,,,,0.205924,,0.203743,,0.21288,,0.203661,,0.203661,,0.104546,,0.103892,,0.106633,,0.103867,,0.056686,,69.230989,,69.971844,,66.968765,,70,,70,,,,,,,,,,,,15136,,0.203661,,0.203661,,0.203661,,0.203661,,0.103867,,70,,, +37476,1,0.01864,2,0,0,2,4,,4,8,Whitmore Lake,Rd,932204,5.744,5.763,0,0.399431,4.5,4.5,0.029432,,0.029432,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.029432,,0.029432,,0.029432,,0.029432,,0.029432,,0.029432,,0.029432,,0.029432,,0.029432,,0.029432,,0.029432,,0.029432,,,,,,,,0.029432,,0.029432,,0.029432,,0.029432,,0.029432,,0.012185,,0.012185,,0.012185,,0.012185,,0.006465,,37.999965,,37.999997,,37.999302,,38,,38,,,,,,,,,,,,6192,,0.029432,,0.029432,,0.029432,,0.029432,,0.012185,,38,,, +37478,-1,0.117783,0,3,0,2,4,,4,8,Whitmore Lake,Rd,4104576,0.061,0.178,0,2.52393,4.5,4.5,,0.185974,,0.185974,,38,,27000,,6129,,13500,,8710,,9288,,9277,,0.186296,,0.185974,,0.186296,,0.186042,,0.185974,,0.186042,,0.186655,,0.185974,,0.186655,,0.185974,,0.185974,,0.185974,,,,,,,,0.186296,,0.186042,,0.186655,,0.185974,,0.185974,,0.07709,,0.077014,,0.077198,,0.076993,,0.040852,,37.934367,,37.986124,,37.861303,,38,,38,,,,,,,,,,,,9288,,0.185974,,0.185974,,0.185974,,0.185974,,0.076993,,38,, +5988,-1,0.461987,0,2,0,1,2,,4,8,S US 23,,932002,5.294,5.756,0,,0.8,7.5,,0.395989,,0.395989,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.426297,,0.395989,,0.426297,,0.396169,,0.395989,,0.396169,,0.40034,,0.395989,,0.40034,,0.395989,,0.395989,,0.395989,,,,,,,,0.426297,,0.396169,,0.40034,,0.395989,,0.395989,,0.211047,,0.202008,,0.203259,,0.201954,,0.110217,,65.023219,,69.968093,,69.239197,,70,,70,,,,,,,,,,,,15136,,0.395989,,0.395989,,0.395989,,0.395989,,0.201954,,70,, +7432,0,0.603719,1,1,0,2,4,,4,8,Rickett,Rd,940304,3.008,3.611,0,12.936836,4.5,4.5,0.953241,0.953241,0.953241,0.953241,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.068848,1.01706,0.953241,0.953241,1.068848,1.01706,1.007813,1.001928,0.953241,0.953241,1.007813,1.001928,1.182231,1.169035,0.953241,0.953241,1.182231,1.169035,0.953241,0.953241,0.953241,0.953241,0.953241,0.953241,,,,,,,1.068848,1.01706,1.007813,1.001928,1.182231,1.169035,0.953241,0.953241,0.953241,0.953241,0.429324,0.413787,0.411013,0.409248,0.463339,0.45938,0.394642,0.394642,0.209395,0.209395,33.88989,35.615556,35.942318,36.153454,30.63965,30.98551,38,38,38,38,,,,,,,,,,,3096,3096,0.953241,0.953241,0.953241,0.953241,0.953241,0.953241,0.953241,0.953241,0.394642,0.394642,38,38,, +7685,0,0.509907,1,1,0,2,5,,4,8,Maltby,Rd,940204,1.662,2.172,0,10.926577,5.8,4.5,1.133127,1.133127,1.133127,1.133127,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.289671,1.134432,1.133127,1.133127,1.289671,1.134432,1.135907,1.134775,1.133127,1.133127,1.135907,1.134775,1.13793,1.222331,1.133127,1.133127,1.13793,1.222331,1.133127,1.133127,1.133127,1.133127,1.133127,1.133127,,,,,,,1.289671,1.134432,1.135907,1.134775,1.13793,1.222331,1.133127,1.133127,1.133127,1.133127,0.478684,0.432113,0.432555,0.432216,0.433162,0.458483,0.431721,0.431721,0.226059,0.226059,23.722661,26.968927,26.933917,26.960768,26.886026,25.029559,27,27,27,27,,,,,,,,,,,2580,2580,1.133127,1.133127,1.133127,1.133127,1.133127,1.133127,1.133127,1.133127,0.431721,0.431721,27,27,, +7433,0,0.504889,1,1,0,2,5,,4,8,Rickett,Rd,940304,2.503,3.008,0,10.819049,5.8,4.5,1.121975,1.121975,1.121975,1.121975,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.126896,1.122086,1.121975,1.121975,1.126896,1.122086,1.122164,1.122099,1.121975,1.121975,1.122164,1.122099,1.123977,1.135158,1.121975,1.121975,1.123977,1.135158,1.121975,1.121975,1.121975,1.121975,1.121975,1.121975,,,,,,,1.126896,1.122086,1.122164,1.122099,1.123977,1.135158,1.121975,1.121975,1.121975,1.121975,0.428949,0.427506,0.427529,0.42751,0.428073,0.431427,0.427473,0.427473,0.223834,0.223834,26.882096,26.997329,26.995467,26.997023,26.951926,26.686456,27,27,27,27,,,,,,,,,,,2580,2580,1.121975,1.121975,1.121975,1.121975,1.121975,1.121975,1.121975,1.121975,0.427473,0.427473,27,27,, +19947,0,0.261256,1,1,0,2,4,,4,8,Lee,Rd,4102625,1.593,1.854,0,5.598351,4.5,4.5,0.41251,0.41251,0.41251,0.41251,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.69645,0.715259,0.41251,0.41251,0.69645,0.715259,0.584142,0.581323,0.41251,0.41251,0.584142,0.581323,0.914211,1.090146,0.41251,0.41251,0.914211,1.090146,0.41251,0.41251,0.41251,0.41251,0.41251,0.41251,,,,,,,0.69645,0.715259,0.584142,0.581323,0.914211,1.090146,0.41251,0.41251,0.41251,0.41251,0.255961,0.261604,0.222269,0.221423,0.32129,0.37407,0.170779,0.170779,0.090615,0.090615,22.507556,21.915684,26.834891,26.964997,17.146346,14.379164,38,38,38,38,,,,,,,,,,,3096,3096,0.41251,0.41251,0.41251,0.41251,0.41251,0.41251,0.41251,0.41251,0.170779,0.170779,38,38,, +37473,-1,0.064615,0,2,0,2,4,,4,8,Lee,Rd,4104575,0,0.065,0,1.384613,4.5,4.5,,0.102024,,0.102024,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.105333,,0.102024,,0.105333,,0.103869,,0.102024,,0.103869,,0.109425,,0.102024,,0.109425,,0.102024,,0.102024,,0.102024,,,,,,,,0.105333,,0.103869,,0.109425,,0.102024,,0.102024,,0.043231,,0.042792,,0.044458,,0.042238,,0.022411,,36.806195,,37.324949,,35.429845,,38,,38,,,,,,,,,,,,6192,,0.102024,,0.102024,,0.102024,,0.102024,,0.042238,,38,, +37470,0,0.251455,1,1,0,2,7,,4,8,Old Lee,Rd,4102625,1.854,2.105,0,5.388314,6.55,4.5,0.603491,0.603491,0.603491,0.603491,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.603597,0.603491,0.603491,0.603491,0.603597,0.603491,0.604143,0.603491,0.603491,0.603491,0.604143,0.603491,0.604265,0.603491,0.603491,0.603491,0.604265,0.603491,0.603491,0.603491,0.603491,0.603491,0.603491,0.603491,,,,,,,0.603597,0.603491,0.604143,0.603491,0.604265,0.603491,0.603491,0.603491,0.603491,0.603491,0.226341,0.226309,0.226505,0.226309,0.226541,0.226309,0.226309,0.226309,0.118184,0.118184,24.995612,25,24.97304,25,24.967974,25,25,25,25,25,,,,,,,,,,,2064,2064,0.603491,0.603491,0.603491,0.603491,0.603491,0.603491,0.603491,0.603491,0.226309,0.226309,25,25,, +37472,1,0.066812,2,0,0,2,4,,4,8,Lee,Rd,931610,0.144,0.21,0,1.431691,4.5,4.5,0.105493,,0.105493,,38,,18000,,4086,,9000,,5807,,6192,,6185,,0.107515,,0.105493,,0.107515,,0.106362,,0.105493,,0.106362,,0.108462,,0.105493,,0.108462,,0.105493,,0.105493,,0.105493,,,,,,,,0.107515,,0.106362,,0.108462,,0.105493,,0.105493,,0.044281,,0.043935,,0.044565,,0.043674,,0.023173,,37.285287,,37.689352,,36.959702,,38,,38,,,,,,,,,,,,6192,,0.105493,,0.105493,,0.105493,,0.105493,,0.043674,,38,,, +37471,0,0.143537,2,2,1,2,4,,4,8,Lee,Rd,931610,0,0.144,0,3.075793,4.5,4.5,0.226637,0.226637,0.226637,0.226637,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.230126,0.232541,0.226637,0.226637,0.230126,0.232541,0.228137,0.229928,0.226637,0.226637,0.228137,0.229928,0.23176,0.239841,0.226637,0.226637,0.23176,0.239841,0.226637,0.226637,0.226637,0.226637,0.226637,0.226637,,,,,,,0.230126,0.232541,0.228137,0.229928,0.23176,0.239841,0.226637,0.226637,0.226637,0.226637,0.094875,0.095599,0.094278,0.094815,0.095365,0.097789,0.093828,0.093828,0.049785,0.049785,37.423861,37.035255,37.750186,37.456114,37.160026,35.908091,38,38,38,38,,,,,,,,,,,6502,6502,0.226637,0.226637,0.226637,0.226637,0.226637,0.226637,0.226637,0.226637,0.093828,0.093828,38,38,, +37474,-1,0.016217,0,3,0,2,4,,4,8,Whitmore Lake,Rd,4104576,0.044,0.061,0,0.347501,4.5,4.5,,0.025605,,0.025605,,38,,27000,,6129,,13500,,8710,,9288,,9277,,0.02572,,0.025605,,0.02572,,0.025627,,0.025605,,0.025627,,0.026095,,0.025605,,0.026095,,0.025605,,0.025605,,0.025605,,,,,,,,0.02572,,0.025627,,0.026095,,0.025605,,0.025605,,0.010635,,0.010607,,0.010748,,0.010601,,0.005625,,37.831091,,37.96849,,37.28687,,38,,38,,,,,,,,,,,,9288,,0.025605,,0.025605,,0.025605,,0.025605,,0.010601,,38,, +5510,-1,0.274743,0,2,0,1,2,,4,8,S US 23,,932002,6.609,6.884,0,,0.8,7.5,,0.235494,,0.235494,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.23665,,0.235494,,0.23665,,0.235515,,0.235494,,0.235515,,0.236397,,0.235494,,0.236397,,0.235494,,0.235494,,0.235494,,,,,,,,0.23665,,0.235515,,0.236397,,0.235494,,0.235494,,0.120449,,0.120108,,0.120373,,0.120102,,0.065546,,69.657963,,69.993697,,69.732484,,70,,70,,,,,,,,,,,,15136,,0.235494,,0.235494,,0.235494,,0.235494,,0.120102,,70,, +7128,0,0.423006,2,2,1,2,3,,3,8,Grand River,Ave,932910,23.343,23.766,0,9.064412,5,5,0.725153,0.725153,0.725153,0.725153,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.726099,0.729443,0.725153,0.725153,0.726099,0.729443,0.72529,0.72562,0.725153,0.725153,0.72529,0.72562,0.729202,0.736105,0.725153,0.725153,0.729202,0.736105,0.725153,0.725153,0.725153,0.725153,0.725153,0.725153,,,,,,,0.726099,0.729443,0.72529,0.72562,0.729202,0.736105,0.725153,0.725153,0.725153,0.725153,0.293971,0.294974,0.293728,0.293827,0.294902,0.296972,0.293687,0.293687,0.155304,0.155304,34.95438,34.794141,34.993408,34.977486,34.805642,34.47927,35,35,35,35,,,,,,,,,,,7946,7946,0.725153,0.725153,0.725153,0.725153,0.725153,0.725153,0.725153,0.725153,0.293687,0.293687,35,35,, +7535,-1,0.420757,0,3,0,1,1,,3,8,W I 96,,935207,22.232,22.653,0,,0.58,7,,0.388391,,0.388391,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.38867,,0.388391,,0.38867,,0.388454,,0.388391,,0.388454,,0.394313,,0.388391,,0.394313,,0.388391,,0.388391,,0.388391,,,,,,,,0.38867,,0.388454,,0.394313,,0.388391,,0.388391,,0.192337,,0.192272,,0.19403,,0.192254,,0.104542,,64.953353,,64.989486,,64.023722,,65,,65,,,,,,,,,,,,22704,,0.388391,,0.388391,,0.388391,,0.388391,,0.192254,,65,, +7729,1,0.128847,3,0,0,1,1,,3,8,E I 96,,935105,22.469,22.599,0,,0.58,7,0.118935,,0.118935,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.127561,,0.118935,,0.127561,,0.119071,,0.118935,,0.119071,,0.119957,,0.118935,,0.119957,,0.118935,,0.118935,,0.118935,,,,,,,,0.127561,,0.119071,,0.119957,,0.118935,,0.118935,,0.061461,,0.058914,,0.05918,,0.058873,,0.032013,,60.604834,,64.926185,,64.446156,,65,,65,,,,,,,,,,,,22704,,0.118935,,0.118935,,0.118935,,0.118935,,0.058873,,65,,, +27037,0,0.243739,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.222985,0.15,4,1.462436,1.462436,1.462436,1.462436,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,1.462437,1.462436,1.462436,1.462436,1.462437,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,,,,,,,1.462436,1.462436,1.462436,1.462436,1.462437,1.462436,1.462436,1.462436,1.462436,1.462436,0.482604,0.482604,0.482604,0.482604,0.482604,0.482604,0.482604,0.482604,0.246177,0.246177,10,9.999999,9.999998,9.999999,9.999994,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,1.462436,0.482604,0.482604,10,10,, +7129,0,0.132291,2,2,1,2,3,,3,8,Grand River,Ave,932910,23.21,23.343,0,2.834811,5,5,0.226785,0.226785,0.226785,0.226785,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.22924,0.231218,0.226785,0.226785,0.22924,0.231218,0.227738,0.228041,0.226785,0.226785,0.227738,0.228041,0.236806,0.245401,0.226785,0.226785,0.236806,0.245401,0.226785,0.226785,0.226785,0.226785,0.226785,0.226785,,,,,,,0.22924,0.231218,0.227738,0.228041,0.236806,0.245401,0.226785,0.226785,0.226785,0.226785,0.092584,0.093178,0.092134,0.092225,0.094854,0.097433,0.091848,0.091848,0.04857,0.04857,34.625146,34.328995,34.853556,34.807226,33.518942,32.344868,35,35,35,35,,,,,,,,,,,7946,7946,0.226785,0.226785,0.226785,0.226785,0.226785,0.226785,0.226785,0.226785,0.091848,0.091848,35,35,, +27047,0,0.263957,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.656214,0.15,4,1.58374,1.58374,1.58374,1.58374,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,,,,,,,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,0.522634,0.522634,0.522634,0.522634,0.522634,0.522634,0.522634,0.522634,0.266596,0.266596,10,9.999999,9.999999,9.999999,9.999998,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,1.58374,0.522634,0.522634,10,10,, +27012,0,0.202583,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.341057,0.15,4,1.215496,1.215496,1.215496,1.215496,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,,,,,,,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,0.401114,0.401114,0.401114,0.401114,0.401114,0.401114,0.401114,0.401114,0.204608,0.204608,10,10,10,9.999999,9.999999,9.999999,10,10,10,10,,,,,,,,,,,34400,34400,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,1.215496,0.401114,0.401114,10,10,, +7659,1,0.324259,1,0,0,1,1,RON,3,8,Spencer/E I 96,RAMP,935202,0,0.324,0,,1.09,4,0.486388,,0.486388,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.499375,,0.486388,,0.499375,,0.491702,,0.486388,,0.491702,,0.502333,,0.486388,,0.502333,,0.486388,,0.486388,,0.486388,,,,,,,,0.499375,,0.491702,,0.502333,,0.486388,,0.486388,,0.208179,,0.205877,,0.209066,,0.204283,,0.108627,,38.959708,,39.567686,,38.730327,,40,,40,,,,,,,,,,,,5074,,0.486388,,0.486388,,0.486388,,0.486388,,0.204283,,40,,, +7667,1,0.197697,1,0,0,1,1,ROF,3,8,E I 96/Spencer,RAMP,935201,0,0.198,0,,2.24,5,0.33891,,0.33891,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.338966,,0.33891,,0.338966,,0.338911,,0.33891,,0.338911,,0.338934,,0.33891,,0.338934,,0.33891,,0.33891,,0.33891,,,,,,,,0.338966,,0.338911,,0.338934,,0.33891,,0.33891,,0.137275,,0.137259,,0.137266,,0.137259,,0.072583,,34.994211,,34.999884,,34.997465,,35,,35,,,,,,,,,,,,5074,,0.33891,,0.33891,,0.33891,,0.33891,,0.137259,,35,,, +7730,1,0.241304,3,0,0,1,1,,3,8,E I 96,,935105,22.228,22.469,0,,0.58,7,0.222742,,0.222742,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.229397,,0.222742,,0.229397,,0.222809,,0.222742,,0.222809,,0.223262,,0.222742,,0.223262,,0.222742,,0.222742,,0.222742,,,,,,,,0.229397,,0.222809,,0.223262,,0.222742,,0.222742,,0.112254,,0.110277,,0.110413,,0.110257,,0.059955,,63.114258,,64.980341,,64.848586,,65,,65,,,,,,,,,,,,22704,,0.222742,,0.222742,,0.222742,,0.222742,,0.110257,,65,,, +7011,0,0.037402,1,1,1,2,4,,3,8,Spencer,Rd,933908,0.622,0.659,0,0.801476,6,4.5,0.068004,0.068004,0.068004,0.068004,33,33,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.068085,0.308692,0.068004,0.068004,0.068085,0.308692,0.0682,0.137169,0.068004,0.068004,0.0682,0.137169,0.068432,0.240306,0.068004,0.068004,0.068432,0.240306,0.068004,0.068004,0.068004,0.068004,0.068004,0.068004,,,,,,,0.068085,0.308692,0.0682,0.137169,0.068432,0.240306,0.068004,0.068004,0.068004,0.068004,0.027158,0.09934,0.027192,0.047883,0.027262,0.078824,0.027134,0.027134,0.014315,0.014315,32.960695,7.269812,32.905055,16.360352,32.793659,9.338643,33,33,33,33,,,,,,,,,,,2838,2838,0.068004,0.068004,0.068004,0.068004,0.068004,0.068004,0.068004,0.068004,0.027134,0.027134,33,33,, +5704,1,0.252688,1,0,0,1,1,RFF,3,8,E I 96/S US 23,RAMP,932102,0,0.253,0,,0.58,7,0.275659,,0.275659,,55,,19000,,4313,,9500,,6129,,6536,,6528,,0.320602,,0.275659,,0.320602,,0.275994,,0.275659,,0.275994,,0.278843,,0.275659,,0.278843,,0.275659,,0.275659,,0.275659,,,,,,,,0.320602,,0.275994,,0.278843,,0.275659,,0.275659,,0.141664,,0.128282,,0.129137,,0.128182,,0.069145,,47.28995,,54.933259,,54.37213,,55,,55,,,,,,,,,,,,6536,,0.275659,,0.275659,,0.275659,,0.275659,,0.128182,,55,,, +37909,1,0.019575,2,0,0,2,5,DIV,4,2,Smith,Rd,1682506,0,0.02,0,0.419463,5.8,4.5,0.036703,,0.036703,,32,,17000,,3859,,8500,,5484,,5848,,5841,,0.0369,,0.036703,,0.0369,,0.036976,,0.036703,,0.036976,,0.03855,,0.036703,,0.03855,,0.036703,,0.036703,,0.036703,,,,,,,,0.0369,,0.036976,,0.03855,,0.036703,,0.036703,,0.014594,,0.014616,,0.015088,,0.014534,,0.007659,,31.828781,,31.763995,,30.466898,,32,,32,,,,,,,,,,,,5848,,0.036703,,0.036703,,0.036703,,0.036703,,0.014534,,32,,, +7533,-1,0.130471,0,2,0,1,1,FCD,4,8,W I 96 CD,,935207,22.846,22.977,0,,0.8,7.5,,0.120435,,0.120435,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.120443,,0.120435,,0.120443,,0.120436,,0.120435,,0.120436,,0.120619,,0.120435,,0.120619,,0.120435,,0.120435,,0.120435,,,,,,,,0.120443,,0.120436,,0.120619,,0.120435,,0.120435,,0.059618,,0.059616,,0.05967,,0.059615,,0.032417,,64.995539,,64.999211,,64.900825,,65,,65,,,,,,,,,,,,14448,,0.120435,,0.120435,,0.120435,,0.120435,,0.059615,,65,, +5706,1,0.241341,1,0,0,1,1,RFS,4,8,W I 96/S US 23,RAMP,932104,0,0.241,0,,0.22,6,0.321788,,0.321788,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.322004,,0.321788,,0.322004,,0.321869,,0.321788,,0.321869,,0.331335,,0.321788,,0.331335,,0.321788,,0.321788,,0.321788,,,,,,,,0.322004,,0.321869,,0.331335,,0.321788,,0.321788,,0.140042,,0.140002,,0.142842,,0.139978,,0.074816,,44.969829,,44.988626,,43.703346,,45,,45,,,,,,,,,,,,5160,,0.321788,,0.321788,,0.321788,,0.321788,,0.139978,,45,,, +5142,-1,0.073141,0,2,0,1,2,,4,8,S US 23,,932002,6.884,6.957,0,,0.8,7.5,,0.062692,,0.062692,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.072915,,0.062692,,0.072915,,0.062889,,0.062692,,0.062889,,0.066387,,0.062692,,0.066387,,0.062692,,0.062692,,0.062692,,,,,,,,0.072915,,0.062889,,0.066387,,0.062692,,0.062692,,0.03504,,0.032032,,0.033081,,0.031973,,0.017449,,60.186044,,69.781029,,66.104017,,70,,70,,,,,,,,,,,,15136,,0.062692,,0.062692,,0.062692,,0.062692,,0.031973,,70,, +5425,0,1.162866,1,1,0,2,5,,4,8,Hyne,Rd,931705,0,1.163,0,24.918562,5.8,4.5,2.584147,2.584147,2.584147,2.584147,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.590105,2.585014,2.584147,2.584147,2.590105,2.585014,2.584356,2.584195,2.584147,2.584147,2.584356,2.584195,2.58616,2.586249,2.584147,2.584147,2.58616,2.586249,2.584147,2.584147,2.584147,2.584147,2.584147,2.584147,,,,,,,2.590105,2.585014,2.584356,2.584195,2.58616,2.586249,2.584147,2.584147,2.584147,2.584147,0.986347,0.98482,0.984623,0.984574,0.985164,0.985191,0.98456,0.98456,0.515537,0.515537,26.937898,26.990948,26.997818,26.999504,26.978991,26.978059,27,27,27,27,,,,,,,,,,,2580,2580,2.584147,2.584147,2.584147,2.584147,2.584147,2.584147,2.584147,2.584147,0.98456,0.98456,27,27,, +5818,1,0.183725,1,0,0,1,1,RON,3,8,Grand River/W I 96,RAMP,932001,0.063,0.247,0,,1.09,4,0.275588,,0.275588,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.27773,,0.275588,,0.27773,,0.278388,,0.275588,,0.278388,,0.293534,,0.275588,,0.293534,,0.275588,,0.275588,,0.275588,,,,,,,,0.27773,,0.278388,,0.293534,,0.275588,,0.275588,,0.11639,,0.116587,,0.121131,,0.115747,,0.061548,,39.691472,,39.597723,,37.554504,,40,,40,,,,,,,,,,,,5074,,0.275588,,0.275588,,0.275588,,0.275588,,0.115747,,40,,, +7018,1,0.372496,1,0,0,1,1,ROF,3,8,W I 96/Grand River,RAMP,933807,0,0.372,0,,2.24,5,0.638565,,0.638565,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.716852,,0.638565,,0.716852,,0.658789,,0.638565,,0.658789,,1.013836,,0.638565,,1.013836,,0.638565,,0.638565,,0.638565,,,,,,,,0.716852,,0.658789,,1.013836,,0.638565,,0.638565,,0.282105,,0.264686,,0.3712,,0.258619,,0.136759,,31.177687,,33.925565,,22.044768,,35,,35,,,,,,,,,,,,5074,,0.638565,,0.638565,,0.638565,,0.638565,,0.258619,,35,,, +7023,0,0.582081,1,1,0,2,4,,4,8,Hilton,Rd,933806,0,0.582,0,12.473162,4.5,4.5,0.919075,0.919075,0.919075,0.919075,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.932318,0.967967,0.919075,0.919075,0.932318,0.967967,0.935903,0.937884,0.919075,0.919075,0.935903,0.937884,1.028356,1.003421,0.919075,0.919075,1.028356,1.003421,0.919075,0.919075,0.919075,0.919075,0.919075,0.919075,,,,,,,0.932318,0.967967,0.935903,0.937884,1.028356,1.003421,0.919075,0.919075,0.919075,0.919075,0.38447,0.395165,0.385545,0.38614,0.413281,0.405801,0.380497,0.380497,0.20189,0.20189,37.460223,36.08062,37.316762,37.237914,33.961824,34.805785,38,38,38,38,,,,,,,,,,,3096,3096,0.919075,0.919075,0.919075,0.919075,0.919075,0.919075,0.919075,0.919075,0.380497,0.380497,38,38,, +7140,0,0.275079,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.379,21.654,0,5.89455,5,5,0.471564,0.471564,0.471564,0.471564,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.566652,0.47534,0.471564,0.471564,0.566652,0.47534,0.500369,0.500723,0.471564,0.471564,0.500369,0.500723,0.524772,0.662157,0.471564,0.471564,0.524772,0.662157,0.471564,0.471564,0.471564,0.471564,0.471564,0.471564,,,,,,,0.566652,0.47534,0.500369,0.500723,0.524772,0.662157,0.471564,0.471564,0.471564,0.471564,0.21951,0.192116,0.199625,0.199731,0.206946,0.248161,0.190983,0.190983,0.100993,0.100993,29.126741,34.721978,32.985119,32.961789,31.451272,24.925729,35,35,35,35,,,,,,,,,,,7946,7946,0.471564,0.471564,0.471564,0.471564,0.471564,0.471564,0.471564,0.471564,0.190983,0.190983,35,35,, +7151,0,0.565653,2,2,1,2,3,,4,8,Grand River,Ave,932910,19.26,19.826,0,12.121141,3.7,5,0.84848,0.84848,0.84848,0.84848,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.871077,0.853735,0.84848,0.84848,0.871077,0.853735,0.852194,0.852168,0.84848,0.84848,0.852194,0.852168,0.872856,0.900699,0.84848,0.84848,0.872856,0.900699,0.84848,0.84848,0.84848,0.84848,0.84848,0.84848,,,,,,,0.871077,0.853735,0.852194,0.852168,0.872856,0.900699,0.84848,0.84848,0.84848,0.84848,0.363141,0.357938,0.357476,0.357468,0.363675,0.372027,0.356362,0.356362,0.189494,0.189494,38.962348,39.753798,39.825648,39.826888,38.88291,37.68094,40,40,40,40,,,,,,,,,,,7946,7946,0.84848,0.84848,0.84848,0.84848,0.84848,0.84848,0.84848,0.84848,0.356362,0.356362,40,40,, +7372,0,0.483586,1,1,0,2,5,,4,8,Hacker,Rd,940803,0.395,0.878,0,10.362561,5.8,4.5,1.074636,1.074636,1.074636,1.074636,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.113792,1.83301,1.074636,1.074636,1.113792,1.83301,1.106996,1.105722,1.074636,1.074636,1.106996,1.105722,1.8901,1.233711,1.074636,1.074636,1.8901,1.233711,1.074636,1.074636,1.074636,1.074636,1.074636,1.074636,,,,,,,1.113792,1.83301,1.106996,1.105722,1.8901,1.233711,1.074636,1.074636,1.074636,1.074636,0.421183,0.636948,0.419144,0.418762,0.654076,0.457159,0.409436,0.409436,0.21439,0.21439,26.050794,15.82925,26.210722,26.240937,15.351128,23.518607,27,27,27,27,,,,,,,,,,,2580,2580,1.074636,1.074636,1.074636,1.074636,1.074636,1.074636,1.074636,1.074636,0.409436,0.409436,27,27,, +7444,0,0.704736,1,1,0,2,6,,4,8,Hunter,Rd,936005,1.01,1.714,0,15.101496,6.55,4.5,1.566081,1.566081,1.566081,1.566081,27,27,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.566083,1.566287,1.566081,1.566081,1.566083,1.566287,1.566089,1.566088,1.566081,1.566081,1.566089,1.566088,1.566646,1.566104,1.566081,1.566081,1.566646,1.566104,1.566081,1.566081,1.566081,1.566081,1.566081,1.566081,,,,,,,1.566083,1.566287,1.566089,1.566088,1.566646,1.566104,1.566081,1.566081,1.566081,1.566081,0.596678,0.596739,0.596679,0.596679,0.596846,0.596684,0.596677,0.596677,0.312433,0.312433,26.99996,26.996448,26.999855,26.999872,26.990259,26.999597,27,27,27,27,,,,,,,,,,,2236,2236,1.566081,1.566081,1.566081,1.566081,1.566081,1.566081,1.566081,1.566081,0.596677,0.596677,27,27,, +7539,-1,0.269356,0,3,0,1,1,,3,8,W I 96,,935207,20.626,20.895,0,,0.58,7,,0.248636,,0.248636,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.248659,,0.248636,,0.248659,,0.248643,,0.248636,,0.248643,,0.249471,,0.248636,,0.249471,,0.248636,,0.248636,,0.248636,,,,,,,,0.248659,,0.248643,,0.249471,,0.248636,,0.248636,,0.123082,,0.123077,,0.123325,,0.123075,,0.066925,,64.994059,,64.998265,,64.782565,,65,,65,,,,,,,,,,,,22704,,0.248636,,0.248636,,0.248636,,0.248636,,0.123075,,65,, +7738,1,0.305821,3,0,0,1,1,,3,8,E I 96,,935105,20.52,20.826,0,,0.58,7,0.282297,,0.282297,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.286842,,0.282297,,0.286842,,0.282319,,0.282297,,0.282319,,0.282489,,0.282297,,0.282489,,0.282297,,0.282297,,0.282297,,,,,,,,0.286842,,0.282319,,0.282489,,0.282297,,0.282297,,0.1411,,0.139744,,0.139795,,0.139737,,0.075985,,63.969948,,64.994811,,64.955704,,65,,65,,,,,,,,,,,,22704,,0.282297,,0.282297,,0.282297,,0.282297,,0.139737,,65,,, +19652,0,0.207102,1,1,0,2,5,,3,8,Orndorf,Dr,1833119,0,0.207,0,4.437904,8,4.5,0.497045,0.497045,0.497045,0.497045,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.673218,0.49706,0.497045,0.497045,0.673218,0.49706,0.554414,0.560499,0.497045,0.497045,0.554414,0.560499,0.573858,0.886937,0.497045,0.497045,0.573858,0.886937,0.497045,0.497045,0.497045,0.497045,0.497045,0.497045,,,,,,,0.673218,0.49706,0.554414,0.560499,0.573858,0.886937,0.497045,0.497045,0.497045,0.497045,0.239244,0.186396,0.203603,0.205428,0.209436,0.30336,0.186392,0.186392,0.097338,0.097338,18.457805,24.999281,22.413089,22.169783,21.653689,14.010159,25,25,25,25,,,,,,,,,,,2408,2408,0.497045,0.497045,0.497045,0.497045,0.497045,0.497045,0.497045,0.497045,0.186392,0.186392,25,25,, +19769,1,0.243346,1,0,0,1,1,RON,3,8,Grand River/E I 96,RAMP,4104146,0,0.243,0,,1.09,4,0.365019,,0.365019,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.37488,,0.365019,,0.37488,,0.369833,,0.365019,,0.369833,,0.382015,,0.365019,,0.382015,,0.365019,,0.365019,,0.365019,,,,,,,,0.37488,,0.369833,,0.382015,,0.365019,,0.365019,,0.156266,,0.154752,,0.158407,,0.153308,,0.081521,,38.947875,,39.479326,,38.220445,,40,,40,,,,,,,,,,,,5074,,0.365019,,0.365019,,0.365019,,0.365019,,0.153308,,40,,, +26047,0,0.929079,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.908827,0.15,4,3.716314,3.716314,3.716314,3.716314,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,,,,,,,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,1.282128,1.282128,1.282128,1.282128,1.282128,1.282128,1.282128,1.282128,0.659646,0.659646,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,3.716314,1.282128,1.282128,15,15,, +26996,0,1.503607,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,32.220158,0.15,4,6.01443,6.01443,6.01443,6.01443,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,,,,,,,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,2.074978,2.074978,2.074978,2.074978,2.074978,2.074978,2.074978,2.074978,1.067561,1.067561,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,6.01443,2.074978,2.074978,15,15,, +27002,0,0.436676,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.357339,0.15,4,1.746703,1.746703,1.746703,1.746703,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.746706,1.746707,1.746703,1.746703,1.746706,1.746707,1.746706,1.746706,1.746703,1.746703,1.746706,1.746706,1.746712,1.746713,1.746703,1.746703,1.746712,1.746713,1.746703,1.746703,1.746703,1.746703,1.746703,1.746703,,,,,,,1.746706,1.746707,1.746706,1.746706,1.746712,1.746713,1.746703,1.746703,1.746703,1.746703,0.602613,0.602614,0.602613,0.602614,0.602615,0.602615,0.602613,0.602613,0.31004,0.31004,14.999979,14.999971,14.999977,14.999975,14.999921,14.99992,15,15,15,15,,,,,,,,,,,34400,34400,1.746703,1.746703,1.746703,1.746703,1.746703,1.746703,1.746703,1.746703,0.602613,0.602613,15,15,, +27017,0,0.225298,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.827812,0.15,4,1.351787,1.351787,1.351787,1.351787,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.351788,1.351788,1.351787,1.351787,1.351788,1.351788,1.351788,1.351788,1.351787,1.351787,1.351788,1.351788,1.351788,1.351788,1.351787,1.351787,1.351788,1.351788,1.351787,1.351787,1.351787,1.351787,1.351787,1.351787,,,,,,,1.351788,1.351788,1.351788,1.351788,1.351788,1.351788,1.351787,1.351787,1.351787,1.351787,0.44609,0.44609,0.44609,0.44609,0.44609,0.44609,0.44609,0.44609,0.227551,0.227551,10,9.999998,9.999999,9.999999,9.999995,9.999997,10,10,10,10,,,,,,,,,,,34400,34400,1.351787,1.351787,1.351787,1.351787,1.351787,1.351787,1.351787,1.351787,0.44609,0.44609,10,10,, +29842,0,1.452199,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.11856,0.15,4,5.808798,5.808798,5.808798,5.808798,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,,,,,,,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,2.004035,2.004035,2.004035,2.004035,2.004035,2.004035,2.004035,2.004035,1.031062,1.031062,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,5.808798,2.004035,2.004035,15,15,, +5816,1,0.438663,1,0,0,1,1,ROF,3,8,E I 96/Grand River,RAMP,931910,0,0.439,0,,2.24,5,0.751993,,0.751993,,35,,14750,,3348,,7375,,4758,,5074,,5068,,0.823022,,0.751993,,0.823022,,0.761191,,0.751993,,0.761191,,0.769726,,0.751993,,0.769726,,0.751993,,0.751993,,0.751993,,,,,,,,0.823022,,0.761191,,0.769726,,0.751993,,0.751993,,0.325866,,0.307317,,0.309877,,0.304557,,0.161052,,31.979401,,34.577077,,34.193684,,35,,35,,,,,,,,,,,,5074,,0.751993,,0.751993,,0.751993,,0.751993,,0.304557,,35,,, +7147,0,0.041211,2,2,1,2,3,,3,8,Grand River,Ave,932910,20.968,21.009,0,0.883086,5,5,0.070647,0.070647,0.070647,0.070647,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.089183,0.072001,0.070647,0.070647,0.089183,0.072001,0.073353,0.073243,0.070647,0.070647,0.073353,0.073243,0.079615,0.104845,0.070647,0.070647,0.079615,0.104845,0.070647,0.070647,0.070647,0.070647,0.070647,0.070647,,,,,,,0.089183,0.072001,0.073353,0.073243,0.079615,0.104845,0.070647,0.070647,0.070647,0.070647,0.034173,0.029018,0.029424,0.029391,0.031302,0.038871,0.028612,0.028612,0.01513,0.01513,27.725589,34.341788,33.708702,33.759553,31.057479,23.583856,35,35,35,35,,,,,,,,,,,7946,7946,0.070647,0.070647,0.070647,0.070647,0.070647,0.070647,0.070647,0.070647,0.028612,0.028612,35,35,, +7743,1,0.319251,3,0,0,1,1,,3,8,E I 96,,935105,20.201,20.52,0,,0.58,7,0.294693,,0.294693,,65,,66000,,14982,,33000,,21292,,22704,,22678,,0.296385,,0.294693,,0.296385,,0.294703,,0.294693,,0.294703,,0.294763,,0.294693,,0.294763,,0.294693,,0.294693,,0.294693,,,,,,,,0.296385,,0.294703,,0.294763,,0.294693,,0.294693,,0.146381,,0.145876,,0.145894,,0.145873,,0.079322,,64.628815,,64.997841,,64.984458,,65,,65,,,,,,,,,,,,22704,,0.294693,,0.294693,,0.294693,,0.294693,,0.145873,,65,,, +19918,0,0.774165,1,1,0,2,4,,3,8,Challis,Rd,4103152,0.417,1.191,0,16.589246,6,4.5,1.407572,1.407572,1.407572,1.407572,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.859059,1.450297,1.407572,1.407572,2.859059,1.450297,1.604982,1.530189,1.407572,1.407572,1.604982,1.530189,1.817511,2.494668,1.407572,1.407572,1.817511,2.494668,1.407572,1.407572,1.407572,1.407572,1.407572,1.407572,,,,,,,2.859059,1.450297,1.604982,1.530189,1.817511,2.494668,1.407572,1.407572,1.407572,1.407572,0.997068,0.574439,0.620844,0.598406,0.684603,0.88775,0.561621,0.561621,0.296294,0.296294,16.246562,32.027854,28.941073,30.355661,25.556873,18.619668,33,33,33,33,,,,,,,,,,,2580,2580,1.407572,1.407572,1.407572,1.407572,1.407572,1.407572,1.407572,1.407572,0.561621,0.561621,33,33,, +27003,0,1.413539,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,30.29013,0.15,4,5.654158,5.654158,5.654158,5.654158,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,,,,,,,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,1.950684,1.950684,1.950684,1.950684,1.950684,1.950684,1.950684,1.950684,1.003613,1.003613,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,5.654158,1.950684,1.950684,15,15,, +27051,0,0.376609,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,8.070198,0.15,4,2.259655,2.259655,2.259655,2.259655,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,,,,,,,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,0.745686,0.745686,0.745686,0.745686,0.745686,0.745686,0.745686,0.745686,0.380375,0.380375,10,10,10,10,10,10,10,10,10,10,,,,,,,,,,,34400,34400,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,2.259655,0.745686,0.745686,10,10,, +7766,0,0.419903,1,1,0,2,4,,5,8,Bauer,Rd,940108,3.025,3.445,0,8.997929,3,4,0.629855,0.629855,0.629855,0.629855,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.651424,0.634879,0.629855,0.629855,0.651424,0.634879,0.641488,0.636401,0.629855,0.629855,0.641488,0.636401,0.664345,0.673991,0.629855,0.629855,0.664345,0.673991,0.629855,0.629855,0.629855,0.629855,0.629855,0.629855,,,,,,,0.651424,0.634879,0.641488,0.636401,0.664345,0.673991,0.629855,0.629855,0.629855,0.629855,0.27101,0.266046,0.268029,0.266503,0.274886,0.27778,0.264539,0.264539,0.140668,0.140668,38.675571,39.683471,39.274598,39.588581,37.923348,37.380606,40,40,40,40,,,,,,,,,,,3096,3096,0.629855,0.629855,0.629855,0.629855,0.629855,0.629855,0.629855,0.629855,0.264539,0.264539,40,40,, +19919,0,0.416888,1,1,0,2,4,,5,8,Challis,Rd,4103152,0,0.417,0,8.933311,3,4,0.625332,0.625332,0.625332,0.625332,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.996487,0.636024,0.625332,0.625332,0.996487,0.636024,0.690949,0.662221,0.625332,0.625332,0.690949,0.662221,0.733485,1.007351,0.625332,0.625332,0.733485,1.007351,0.625332,0.625332,0.625332,0.625332,0.625332,0.625332,,,,,,,0.996487,0.636024,0.690949,0.662221,0.733485,1.007351,0.625332,0.625332,0.625332,0.625332,0.373986,0.265847,0.282325,0.273706,0.295085,0.377245,0.262639,0.262639,0.139657,0.139657,25.101443,39.327534,36.201303,37.771776,34.101943,24.830747,40,40,40,40,,,,,,,,,,,3096,3096,0.625332,0.625332,0.625332,0.625332,0.625332,0.625332,0.625332,0.625332,0.262639,0.262639,40,40,, +7764,0,0.085752,1,1,0,2,5,,5,8,Bauer,Rd,940108,3.445,3.53,0,1.837545,3.7,5,0.171504,0.171504,0.171504,0.171504,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.171516,0.185204,0.171504,0.171504,0.171516,0.185204,0.171661,0.171792,0.171504,0.171504,0.171661,0.171792,0.182356,0.172165,0.171504,0.171504,0.182356,0.172165,0.171504,0.171504,0.171504,0.171504,0.171504,0.171504,,,,,,,0.171516,0.185204,0.171661,0.171792,0.182356,0.172165,0.171504,0.171504,0.171504,0.171504,0.06689,0.070996,0.066934,0.066973,0.070142,0.067085,0.066887,0.066887,0.035158,0.035158,29.9979,27.780929,29.972627,29.949732,28.214738,29.884889,30,30,30,30,,,,,,,,,,,2580,2580,0.171504,0.171504,0.171504,0.171504,0.171504,0.171504,0.171504,0.171504,0.066887,0.066887,30,30,, +19763,0,0.264614,1,1,1,2,5,,3,8,Library,Dr,4104207,0,0.265,0,5.670295,8,4.5,0.635073,0.635073,0.635073,0.635073,25,25,7700,7700,1748,1748,3850,3850,2484,2484,2649,2649,2646,2646,0.709457,1.018695,0.635073,0.635073,0.709457,1.018695,0.793205,0.803243,0.635073,0.635073,0.793205,0.803243,1.340951,0.877299,0.635073,0.635073,1.340951,0.877299,0.635073,0.635073,0.635073,0.635073,0.635073,0.635073,,,,,,,0.709457,1.018695,0.793205,0.803243,1.340951,0.877299,0.635073,0.635073,0.635073,0.635073,0.260468,0.353239,0.285592,0.288604,0.449916,0.31082,0.238152,0.238152,0.124368,0.124368,22.378839,15.585461,20.016049,19.765897,11.839972,18.097385,25,25,25,25,,,,,,,,,,,2649,2649,0.635073,0.635073,0.635073,0.635073,0.635073,0.635073,0.635073,0.635073,0.238152,0.238152,25,25,, +27050,0,0.679761,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,14.566307,0.15,4,4.078566,4.078566,4.078566,4.078566,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.078566,4.078567,4.078566,4.078566,4.078566,4.078567,4.078567,4.078567,4.078566,4.078566,4.078567,4.078567,4.078569,4.078568,4.078566,4.078566,4.078569,4.078568,4.078566,4.078566,4.078566,4.078566,4.078566,4.078566,,,,,,,4.078566,4.078567,4.078567,4.078567,4.078569,4.078568,4.078566,4.078566,4.078566,4.078566,1.345927,1.345927,1.345927,1.345927,1.345928,1.345927,1.345927,1.345927,0.686559,0.686559,10,9.999998,9.999998,9.999998,9.999992,9.999995,10,10,10,10,,,,,,,,,,,34400,34400,4.078566,4.078566,4.078566,4.078566,4.078566,4.078566,4.078566,4.078566,1.345927,1.345927,10,10,, +27018,0,0.211785,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.538251,0.15,4,1.27071,1.27071,1.27071,1.27071,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.27071,1.270717,1.27071,1.27071,1.27071,1.270717,1.270713,1.270713,1.27071,1.27071,1.270713,1.270713,1.270724,1.270714,1.27071,1.27071,1.270724,1.270714,1.27071,1.27071,1.27071,1.27071,1.27071,1.27071,,,,,,,1.27071,1.270717,1.270713,1.270713,1.270724,1.270714,1.27071,1.27071,1.27071,1.27071,0.419334,0.419337,0.419335,0.419335,0.419338,0.419336,0.419334,0.419334,0.213903,0.213903,9.999998,9.999943,9.999976,9.999976,9.999895,9.999967,10,10,10,10,,,,,,,,,,,34400,34400,1.27071,1.27071,1.27071,1.27071,1.27071,1.27071,1.27071,1.27071,0.419334,0.419334,10,10,, +7141,0,0.190303,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.188,21.379,0,4.077927,5,5,0.326234,0.326234,0.326234,0.326234,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.843004,0.40534,0.326234,0.326234,0.843004,0.40534,0.437593,0.441294,0.326234,0.326234,0.437593,0.441294,0.642928,1.186028,0.326234,0.326234,0.642928,1.186028,0.326234,0.326234,0.326234,0.326234,0.326234,0.326234,,,,,,,0.843004,0.40534,0.437593,0.441294,0.642928,1.186028,0.326234,0.326234,0.326234,0.326234,0.287156,0.155857,0.165532,0.166643,0.227133,0.390063,0.132125,0.132125,0.069868,0.069868,13.54466,28.169431,26.093208,25.874338,17.759685,9.627257,35,35,35,35,,,,,,,,,,,7946,7946,0.326234,0.326234,0.326234,0.326234,0.326234,0.326234,0.326234,0.326234,0.132125,0.132125,35,35,, +19917,0,0.127165,2,2,1,2,4,,3,8,Challis,Rd,4103152,1.191,1.318,0,2.724962,6,4.5,0.231209,0.231209,0.231209,0.231209,33,33,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.260502,0.241117,0.231209,0.231209,0.260502,0.241117,0.234874,0.233905,0.231209,0.231209,0.234874,0.233905,0.257732,0.255547,0.231209,0.231209,0.257732,0.255547,0.231209,0.231209,0.231209,0.231209,0.231209,0.231209,,,,,,,0.260502,0.241117,0.234874,0.233905,0.257732,0.255547,0.231209,0.231209,0.231209,0.231209,0.10104,0.095225,0.093352,0.093061,0.100209,0.099554,0.092252,0.092252,0.048669,0.048669,29.289191,31.643888,32.485088,32.619692,29.603987,29.857136,33,33,33,33,,,,,,,,,,,5418,5418,0.231209,0.231209,0.231209,0.231209,0.231209,0.231209,0.231209,0.231209,0.092252,0.092252,33,33,, +7016,1,0.250218,1,0,0,1,1,RON,3,8,Grand River/E I 96,RAMP,933808,0,0.25,0,,1.09,4,0.375327,,0.375327,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.382769,,0.375327,,0.382769,,0.375523,,0.375327,,0.375523,,0.376625,,0.375327,,0.376625,,0.375327,,0.375327,,0.375327,,,,,,,,0.382769,,0.375523,,0.376625,,0.375327,,0.375327,,0.15987,,0.157696,,0.158027,,0.157638,,0.083823,,39.222345,,39.979129,,39.862177,,40,,40,,,,,,,,,,,,5074,,0.375327,,0.375327,,0.375327,,0.375327,,0.157638,,40,,, +7143,0,0.062254,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.119,21.181,0,1.334012,5,5,0.106721,0.106721,0.106721,0.106721,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.124487,0.109266,0.106721,0.106721,0.124487,0.109266,0.112274,0.113578,0.106721,0.106721,0.112274,0.113578,0.125121,0.162154,0.106721,0.106721,0.125121,0.162154,0.106721,0.106721,0.106721,0.106721,0.106721,0.106721,,,,,,,0.124487,0.109266,0.112274,0.113578,0.125121,0.162154,0.106721,0.106721,0.106721,0.106721,0.048552,0.043985,0.044888,0.045279,0.048742,0.059852,0.043222,0.043222,0.022856,0.022856,30.004979,34.184802,33.269024,32.887078,29.853007,23.035166,35,35,35,35,,,,,,,,,,,7946,7946,0.106721,0.106721,0.106721,0.106721,0.106721,0.106721,0.106721,0.106721,0.043222,0.043222,35,35,, +7142,0,0.007156,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.181,21.188,0,0.153343,5,5,0.012267,0.012267,0.012267,0.012267,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.0317,0.012399,0.012267,0.012267,0.0317,0.012399,0.016455,0.012732,0.012267,0.012267,0.016455,0.012732,0.024176,0.016635,0.012267,0.012267,0.024176,0.016635,0.012267,0.012267,0.012267,0.012267,0.012267,0.012267,,,,,,,0.0317,0.012399,0.016455,0.012732,0.024176,0.016635,0.012267,0.012267,0.012267,0.012267,0.010798,0.005008,0.006225,0.005108,0.008541,0.006279,0.004968,0.004968,0.002627,0.002627,13.54466,34.628527,26.093208,33.721996,17.759685,25.810891,35,35,35,35,,,,,,,,,,,7946,7946,0.012267,0.012267,0.012267,0.012267,0.012267,0.012267,0.012267,0.012267,0.004968,0.004968,35,35,, +5817,1,0.062967,1,0,0,1,1,RON,3,8,Grand River/W I 96,RAMP,932001,0,0.063,0,,1.09,4,0.094451,,0.094451,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.094682,,0.094451,,0.094682,,0.094801,,0.094451,,0.094801,,0.097086,,0.094451,,0.097086,,0.094451,,0.094451,,0.094451,,,,,,,,0.094682,,0.094801,,0.097086,,0.094451,,0.094451,,0.039739,,0.039774,,0.04046,,0.039669,,0.021094,,39.902451,,39.85228,,38.914331,,40,,40,,,,,,,,,,,,5074,,0.094451,,0.094451,,0.094451,,0.094451,,0.039669,,40,,, +7144,0,0.05806,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.061,21.119,0,1.244145,5,5,0.099532,0.099532,0.099532,0.099532,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.210593,0.101905,0.099532,0.099532,0.210593,0.101905,0.114433,0.105926,0.099532,0.099532,0.114433,0.105926,0.16255,0.15123,0.099532,0.099532,0.16255,0.15123,0.099532,0.099532,0.099532,0.099532,0.099532,0.099532,,,,,,,0.210593,0.101905,0.114433,0.105926,0.16255,0.15123,0.099532,0.099532,0.099532,0.099532,0.073629,0.041022,0.044781,0.042229,0.059216,0.05582,0.04031,0.04031,0.021316,0.021316,16.54187,34.184802,30.44221,32.887078,21.430998,23.035166,35,35,35,35,,,,,,,,,,,7946,7946,0.099532,0.099532,0.099532,0.099532,0.099532,0.099532,0.099532,0.099532,0.04031,0.04031,35,35,, +19925,1,0.042371,1,0,0,1,1,RON,3,8,Grand River/W I 96,RAMP,4103114,0,0.042,0,,1.09,4,0.063556,,0.063556,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.063558,,0.063556,,0.063558,,0.063558,,0.063556,,0.063558,,0.063562,,0.063556,,0.063562,,0.063556,,0.063556,,0.063556,,,,,,,,0.063558,,0.063558,,0.063562,,0.063556,,0.063556,,0.026694,,0.026694,,0.026695,,0.026694,,0.014194,,39.998763,,39.998999,,39.996537,,40,,40,,,,,,,,,,,,5074,,0.063556,,0.063556,,0.063556,,0.063556,,0.026694,,40,,, +7145,0,0.04253,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.018,21.061,0,0.911357,5,5,0.072909,0.072909,0.072909,0.072909,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.154263,0.073039,0.072909,0.072909,0.154263,0.073039,0.083824,0.073379,0.072909,0.072909,0.083824,0.073379,0.119071,0.075812,0.072909,0.072909,0.119071,0.075812,0.072909,0.072909,0.072909,0.072909,0.072909,0.072909,,,,,,,0.154263,0.073039,0.083824,0.073379,0.119071,0.075812,0.072909,0.072909,0.072909,0.072909,0.053934,0.029567,0.032803,0.029669,0.043377,0.030399,0.029528,0.029528,0.015615,0.015615,16.54187,34.93771,30.44221,34.775394,21.430998,33.659456,35,35,35,35,,,,,,,,,,,7946,7946,0.072909,0.072909,0.072909,0.072909,0.072909,0.072909,0.072909,0.072909,0.029528,0.029528,35,35,, +7146,0,0.009112,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.009,21.018,0,0.195266,5,5,0.015621,0.015621,0.015621,0.015621,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.039268,0.015649,0.015621,0.015621,0.039268,0.015649,0.019206,0.015722,0.015621,0.015621,0.019206,0.015722,0.030918,0.016243,0.015621,0.015621,0.030918,0.016243,0.015621,0.015621,0.015621,0.015621,0.015621,0.015621,,,,,,,0.039268,0.015649,0.019206,0.015722,0.030918,0.016243,0.015621,0.015621,0.015621,0.015621,0.013421,0.006335,0.007402,0.006357,0.010916,0.006513,0.006327,0.006327,0.003346,0.003346,13.923564,34.93771,28.467316,34.775394,17.683645,33.659456,35,35,35,35,,,,,,,,,,,7946,7946,0.015621,0.015621,0.015621,0.015621,0.015621,0.015621,0.015621,0.015621,0.006327,0.006327,35,35,, +7024,0,0.265916,1,1,0,2,5,,4,8,Bendix,Rd,933803,0,0.266,0,5.698192,5.8,4.5,0.590924,0.590924,0.590924,0.590924,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.592209,0.592705,0.590924,0.590924,0.592209,0.592705,0.59108,0.590999,0.590924,0.590924,0.59108,0.590999,0.593728,0.592118,0.590924,0.590924,0.593728,0.592118,0.590924,0.590924,0.590924,0.590924,0.590924,0.590924,,,,,,,0.592209,0.592705,0.59108,0.590999,0.593728,0.592118,0.590924,0.590924,0.590924,0.590924,0.225528,0.225676,0.225189,0.225164,0.225983,0.2255,0.225142,0.225142,0.117889,0.117889,26.941386,26.918838,26.992875,26.99657,26.872481,26.94552,27,27,27,27,,,,,,,,,,,2580,2580,0.590924,0.590924,0.590924,0.590924,0.590924,0.590924,0.590924,0.590924,0.225142,0.225142,27,27,, +7149,0,0.116804,2,2,1,2,3,,4,8,Grand River,Ave,932910,20.319,20.436,0,2.502933,3.7,5,0.175205,0.175205,0.175205,0.175205,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.183564,0.175618,0.175205,0.175205,0.183564,0.175618,0.176072,0.176068,0.175205,0.175205,0.176072,0.176068,0.177923,0.190407,0.175205,0.175205,0.177923,0.190407,0.175205,0.175205,0.175205,0.175205,0.175205,0.175205,,,,,,,0.183564,0.175618,0.176072,0.176068,0.177923,0.190407,0.175205,0.175205,0.175205,0.175205,0.076094,0.07371,0.073846,0.073845,0.074402,0.078147,0.073586,0.073586,0.039129,0.039129,38.178547,39.905991,39.803035,39.803996,39.388942,36.806496,40,40,40,40,,,,,,,,,,,7946,7946,0.175205,0.175205,0.175205,0.175205,0.175205,0.175205,0.175205,0.175205,0.073586,0.073586,40,40,, +7150,0,0.493803,2,2,1,2,3,,4,8,Grand River,Ave,932910,19.826,20.319,0,10.581486,3.7,5,0.740704,0.740704,0.740704,0.740704,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.749408,0.742052,0.740704,0.740704,0.749408,0.742052,0.74227,0.742448,0.740704,0.740704,0.74227,0.742448,0.748749,0.764006,0.740704,0.740704,0.748749,0.764006,0.740704,0.740704,0.740704,0.740704,0.740704,0.740704,,,,,,,0.749408,0.742052,0.74227,0.742448,0.748749,0.764006,0.740704,0.740704,0.740704,0.740704,0.313707,0.3115,0.311565,0.311619,0.313509,0.318086,0.311096,0.311096,0.165424,0.165424,39.5354,39.927349,39.915626,39.906017,39.57024,38.779997,40,40,40,40,,,,,,,,,,,7946,7946,0.740704,0.740704,0.740704,0.740704,0.740704,0.740704,0.740704,0.740704,0.311096,0.311096,40,40,, +7148,0,0.532365,2,2,1,2,3,,4,8,Grand River,Ave,932910,20.436,20.968,0,11.407814,3.7,5,0.798547,0.798547,0.798547,0.798547,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.836645,0.800428,0.798547,0.798547,0.836645,0.800428,0.802499,0.802479,0.798547,0.798547,0.802499,0.802479,0.810935,0.867833,0.798547,0.798547,0.810935,0.867833,0.798547,0.798547,0.798547,0.798547,0.798547,0.798547,,,,,,,0.836645,0.800428,0.802499,0.802479,0.810935,0.867833,0.798547,0.798547,0.798547,0.798547,0.346819,0.335954,0.336575,0.336569,0.339106,0.356175,0.33539,0.33539,0.178342,0.178342,38.178547,39.905991,39.803035,39.803996,39.388942,36.806496,40,40,40,40,,,,,,,,,,,7946,7946,0.798547,0.798547,0.798547,0.798547,0.798547,0.798547,0.798547,0.798547,0.33539,0.33539,40,40,, +7378,0,0.303689,1,1,0,2,5,,4,8,Hacker,Rd,940803,0.091,0.395,0,6.507627,5.8,4.5,0.674865,0.674865,0.674865,0.674865,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.675652,0.772085,0.674865,0.674865,0.675652,0.772085,0.67781,0.678804,0.674865,0.674865,0.67781,0.678804,0.762921,0.686059,0.674865,0.674865,0.762921,0.686059,0.674865,0.674865,0.674865,0.674865,0.674865,0.674865,,,,,,,0.675652,0.772085,0.67781,0.678804,0.762921,0.686059,0.674865,0.674865,0.674865,0.674865,0.25736,0.286289,0.258007,0.258305,0.28354,0.260482,0.257124,0.257124,0.134636,0.134636,26.968543,23.600205,26.882695,26.843337,23.883682,26.559472,27,27,27,27,,,,,,,,,,,2580,2580,0.674865,0.674865,0.674865,0.674865,0.674865,0.674865,0.674865,0.674865,0.257124,0.257124,27,27,, +7388,0,0.091327,1,1,0,2,5,,4,8,Hacker,Rd,940803,0,0.091,0,1.957001,5.8,4.5,0.202948,0.202948,0.202948,0.202948,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.20651,0.286268,0.202948,0.202948,0.20651,0.286268,0.207411,0.208626,0.202948,0.202948,0.207411,0.208626,0.351737,0.230883,0.202948,0.202948,0.351737,0.230883,0.202948,0.202948,0.202948,0.202948,0.202948,0.202948,,,,,,,0.20651,0.286268,0.207411,0.208626,0.351737,0.230883,0.202948,0.202948,0.202948,0.202948,0.078392,0.102319,0.078662,0.079027,0.12196,0.085704,0.077323,0.077323,0.040488,0.040488,26.534365,19.1415,26.418999,26.265149,15.578679,23.733241,27,27,27,27,,,,,,,,,,,2580,2580,0.202948,0.202948,0.202948,0.202948,0.202948,0.202948,0.202948,0.202948,0.077323,0.077323,27,27,, +7354,0,0.82534,1,1,0,2,5,,4,8,Hacker,Rd,940803,1.237,2.062,0,17.685858,5.8,4.5,1.834089,1.834089,1.834089,1.834089,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.836479,2.139638,1.834089,1.834089,1.836479,2.139638,1.842416,1.844336,1.834089,1.834089,1.842416,1.844336,2.141711,1.873039,1.834089,1.834089,2.141711,1.873039,1.834089,1.834089,1.834089,1.834089,1.834089,1.834089,,,,,,,1.836479,2.139638,1.842416,1.844336,2.141711,1.873039,1.834089,1.834089,1.834089,1.834089,0.699505,0.790452,0.701286,0.701862,0.791074,0.710473,0.698788,0.698788,0.365901,0.365901,26.964867,23.144294,26.877964,26.849982,23.121892,26.438539,27,27,27,27,,,,,,,,,,,2580,2580,1.834089,1.834089,1.834089,1.834089,1.834089,1.834089,1.834089,1.834089,0.698788,0.698788,27,27,, +27004,0,0.933236,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,19.997922,0.15,4,3.732945,3.732945,3.732945,3.732945,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,,,,,,,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,1.287866,1.287866,1.287866,1.287866,1.287866,1.287866,1.287866,1.287866,0.662598,0.662598,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,3.732945,1.287866,1.287866,15,15,, +7152,0,0.2693,2,2,1,2,3,,4,8,Grand River,Ave,932910,18.991,19.26,0,5.770708,3.7,5,0.40395,0.40395,0.40395,0.40395,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.409885,0.405392,0.40395,0.40395,0.409885,0.405392,0.404797,0.404853,0.40395,0.40395,0.404797,0.404853,0.410571,0.418742,0.40395,0.40395,0.410571,0.418742,0.40395,0.40395,0.40395,0.40395,0.40395,0.40395,,,,,,,0.409885,0.405392,0.404797,0.404853,0.410571,0.418742,0.40395,0.40395,0.40395,0.40395,0.17144,0.170092,0.169913,0.16993,0.171645,0.174097,0.169659,0.169659,0.090215,0.090215,39.420741,39.85764,39.916257,39.910748,39.354881,38.586966,40,40,40,40,,,,,,,,,,,7946,7946,0.40395,0.40395,0.40395,0.40395,0.40395,0.40395,0.40395,0.40395,0.169659,0.169659,40,40,, +27006,0,0.73591,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,15.769503,0.15,4,2.94364,2.94364,2.94364,2.94364,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.943641,2.943641,2.94364,2.94364,2.943641,2.943641,2.943641,2.943641,2.94364,2.94364,2.943641,2.943641,2.943642,2.943642,2.94364,2.94364,2.943642,2.943642,2.94364,2.94364,2.94364,2.94364,2.94364,2.94364,,,,,,,2.943641,2.943641,2.943641,2.943641,2.943642,2.943642,2.94364,2.94364,2.94364,2.94364,1.015556,1.015556,1.015556,1.015556,1.015556,1.015556,1.015556,1.015556,0.522496,0.522496,14.999998,14.999998,14.999998,14.999998,14.999993,14.999993,15,15,15,15,,,,,,,,,,,34400,34400,2.94364,2.94364,2.94364,2.94364,2.94364,2.94364,2.94364,2.94364,1.015556,1.015556,15,15,, +7370,0,0.358833,1,1,0,2,5,,4,8,Hacker,Rd,940803,0.878,1.237,0,7.689271,5.8,4.5,0.797406,0.797406,0.797406,0.797406,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.800966,1.155957,0.797406,0.797406,0.800966,1.155957,0.808531,0.813055,0.797406,0.797406,0.808531,0.813055,1.152395,0.850202,0.797406,0.797406,1.152395,0.850202,0.797406,0.797406,0.797406,0.797406,0.797406,0.797406,,,,,,,0.800966,1.155957,0.808531,0.813055,1.152395,0.850202,0.797406,0.797406,0.797406,0.797406,0.30488,0.411377,0.307149,0.308507,0.410308,0.31965,0.303812,0.303812,0.159082,0.159082,26.879988,18.625225,26.628493,26.480306,18.682801,25.323343,27,27,27,27,,,,,,,,,,,2580,2580,0.797406,0.797406,0.797406,0.797406,0.797406,0.797406,0.797406,0.797406,0.303812,0.303812,27,27,, +7022,0,0.433284,1,1,0,2,4,,4,8,Hilton,Rd,933806,0.582,1.015,0,9.284654,4.5,4.5,0.684132,0.684132,0.684132,0.684132,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.692448,0.714507,0.684132,0.684132,0.692448,0.714507,0.695028,0.696001,0.684132,0.684132,0.695028,0.696001,0.752744,0.738651,0.684132,0.684132,0.752744,0.738651,0.684132,0.684132,0.684132,0.684132,0.684132,0.684132,,,,,,,0.692448,0.714507,0.695028,0.696001,0.752744,0.738651,0.684132,0.684132,0.684132,0.684132,0.285725,0.292343,0.2865,0.286791,0.303814,0.299587,0.283231,0.283231,0.150281,0.150281,37.543672,36.384595,37.404274,37.352015,34.536372,35.195261,38,38,38,38,,,,,,,,,,,3096,3096,0.684132,0.684132,0.684132,0.684132,0.684132,0.684132,0.684132,0.684132,0.283231,0.283231,38,38,, +7240,0,0.753666,1,1,0,2,5,,4,8,Flint,Rd,938605,1.114,1.868,0,16.149996,5.8,4.5,1.674814,1.674814,1.674814,1.674814,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.674869,1.680335,1.674814,1.674814,1.674869,1.680335,1.674828,1.674868,1.674814,1.674814,1.674828,1.674868,1.679638,1.675625,1.674814,1.674814,1.679638,1.675625,1.674814,1.674814,1.674814,1.674814,1.674814,1.674814,,,,,,,1.674869,1.680335,1.674828,1.674868,1.679638,1.675625,1.674814,1.674814,1.674814,1.674814,0.638121,0.639761,0.638108,0.63812,0.639551,0.638347,0.638104,0.638104,0.334125,0.334125,26.999114,26.911289,26.999781,26.999141,26.922455,26.986946,27,27,27,27,,,,,,,,,,,2580,2580,1.674814,1.674814,1.674814,1.674814,1.674814,1.674814,1.674814,1.674814,0.638104,0.638104,27,27,, +7242,0,0.365246,1,1,0,2,5,,3,8,Flint,Rd,938605,0.614,0.98,0,7.826709,8,4.5,0.876591,0.876591,0.876591,0.876591,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.88007,0.913917,0.876591,0.876591,0.88007,0.913917,0.878488,0.87855,0.876591,0.876591,0.878488,0.87855,0.932097,0.899212,0.876591,0.876591,0.932097,0.899212,0.876591,0.876591,0.876591,0.876591,0.876591,0.876591,,,,,,,0.88007,0.913917,0.878488,0.87855,0.932097,0.899212,0.876591,0.876591,0.876591,0.876591,0.329765,0.33992,0.329291,0.329309,0.345374,0.335508,0.328722,0.328722,0.171666,0.171666,24.901195,23.978956,24.946019,24.944274,23.511267,24.371091,25,25,25,25,,,,,,,,,,,2408,2408,0.876591,0.876591,0.876591,0.876591,0.876591,0.876591,0.876591,0.876591,0.328722,0.328722,25,25,, +7537,-1,1.087134,0,3,0,1,1,,3,8,W I 96,,935207,20.895,21.982,0,,0.58,7,,1.003508,,1.003508,,65,,66000,,14982,,33000,,21292,,22704,,22678,,1.004667,,1.003508,,1.004667,,1.003787,,1.003508,,1.003787,,1.032044,,1.003508,,1.032044,,1.003508,,1.003508,,1.003508,,,,,,,,1.004667,,1.003787,,1.032044,,1.003508,,1.003508,,0.497084,,0.49682,,0.505297,,0.496737,,0.270111,,64.925057,,64.981981,,63.202747,,65,,65,,,,,,,,,,,,22704,,1.003508,,1.003508,,1.003508,,1.003508,,0.496737,,65,, +27013,0,0.824344,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,17.664519,0.15,4,3.297377,3.297377,3.297377,3.297377,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,,,,,,,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,1.137595,1.137595,1.137595,1.137595,1.137595,1.137595,1.137595,1.137595,0.585284,0.585284,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,3.297377,1.137595,1.137595,15,15,, +27045,0,0.545874,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,11.697301,0.15,4,2.183496,2.183496,2.183496,2.183496,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,,,,,,,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,0.753306,0.753306,0.753306,0.753306,0.753306,0.753306,0.753306,0.753306,0.387571,0.387571,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,2.183496,0.753306,0.753306,15,15,, +27049,0,0.237205,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,5.082963,0.15,4,0.94882,0.94882,0.94882,0.94882,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,,,,,,,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.327343,0.327343,0.327343,0.327343,0.327343,0.327343,0.327343,0.327343,0.168416,0.168416,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.94882,0.327343,0.327343,15,15,, +7251,0,0.359855,1,1,0,2,5,,3,8,Flint,Rd,938605,0.255,0.614,0,7.711168,8,4.5,0.863651,0.863651,0.863651,0.863651,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.866087,0.881763,0.863651,0.863651,0.866087,0.881763,0.864752,0.8647,0.863651,0.863651,0.864752,0.8647,0.887357,0.872861,0.863651,0.863651,0.887357,0.872861,0.863651,0.863651,0.863651,0.863651,0.863651,0.863651,,,,,,,0.866087,0.881763,0.864752,0.8647,0.887357,0.872861,0.863651,0.863651,0.863651,0.863651,0.3246,0.329303,0.324199,0.324184,0.330981,0.326632,0.323869,0.323869,0.169132,0.169132,24.929685,24.486476,24.968166,24.969676,24.332103,24.736218,25,25,25,25,,,,,,,,,,,2408,2408,0.863651,0.863651,0.863651,0.863651,0.863651,0.863651,0.863651,0.863651,0.323869,0.323869,25,25,, +7137,0,0.297835,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.847,22.145,0,6.38218,5,5,0.510574,0.510574,0.510574,0.510574,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.527357,0.538811,0.510574,0.510574,0.527357,0.538811,0.530292,0.534191,0.510574,0.510574,0.530292,0.534191,0.583128,0.60507,0.510574,0.510574,0.583128,0.60507,0.510574,0.510574,0.510574,0.510574,0.510574,0.510574,,,,,,,0.527357,0.538811,0.530292,0.534191,0.583128,0.60507,0.510574,0.510574,0.510574,0.510574,0.211817,0.215254,0.212698,0.213868,0.228549,0.235131,0.206783,0.206783,0.109348,0.109348,33.886182,33.165798,33.698587,33.452619,30.645258,29.533933,35,35,35,35,,,,,,,,,,,7946,7946,0.510574,0.510574,0.510574,0.510574,0.510574,0.510574,0.510574,0.510574,0.206783,0.206783,35,35,, +27029,0,0.253773,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.437989,0.15,4,1.522637,1.522637,1.522637,1.522637,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,,,,,,,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,0.50247,0.50247,0.50247,0.50247,0.50247,0.50247,0.50247,0.50247,0.256311,0.256311,10,9.999999,10,9.999999,9.999999,9.999998,10,10,10,10,,,,,,,,,,,34400,34400,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,1.522637,0.50247,0.50247,10,10,, +27031,0,0.221361,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.743441,0.15,4,1.328164,1.328164,1.328164,1.328164,10,10,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.328164,1.328164,1.328164,1.328164,1.328164,1.328164,1.328164,1.328164,1.328164,1.328164,1.328164,1.328164,1.328167,1.328165,1.328164,1.328164,1.328167,1.328165,1.328164,1.328164,1.328164,1.328164,1.328164,1.328164,,,,,,,1.328164,1.328164,1.328164,1.328164,1.328167,1.328165,1.328164,1.328164,1.328164,1.328164,0.438294,0.438294,0.438294,0.438294,0.438295,0.438294,0.438294,0.438294,0.223574,0.223574,9.999998,9.999994,9.999995,9.999997,9.999975,9.999992,10,10,10,10,,,,,,,,,,,34400,34400,1.328164,1.328164,1.328164,1.328164,1.328164,1.328164,1.328164,1.328164,0.438294,0.438294,10,10,, +7015,0,0.100503,1,1,1,2,7,,3,8,Cross,St,933810,0,0.101,0,2.153641,7,4.5,0.30151,0.30151,0.30151,0.30151,20,20,6050,6050,1373,1373,3025,3025,1952,1952,2081,2081,2079,2079,0.324216,0.476417,0.30151,0.30151,0.324216,0.476417,0.372646,0.387213,0.30151,0.30151,0.372646,0.387213,0.701839,0.555028,0.30151,0.30151,0.701839,0.555028,0.30151,0.30151,0.30151,0.30151,0.30151,0.30151,,,,,,,0.324216,0.476417,0.372646,0.387213,0.701839,0.555028,0.30151,0.30151,0.30151,0.30151,0.115355,0.161016,0.129884,0.134255,0.228642,0.184599,0.108544,0.108544,0.056282,0.056282,18.599303,12.657391,16.18212,15.573312,8.591989,10.864663,20,20,20,20,,,,,,,,,,,2081,2081,0.30151,0.30151,0.30151,0.30151,0.30151,0.30151,0.30151,0.30151,0.108544,0.108544,20,20,, +7139,0,0.193449,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.654,21.847,0,4.145339,5,5,0.331627,0.331627,0.331627,0.331627,35,35,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.332379,0.331763,0.331627,0.331627,0.332379,0.331763,0.331906,0.331771,0.331627,0.331627,0.331906,0.331771,0.332151,0.332361,0.331627,0.331627,0.332151,0.332361,0.331627,0.331627,0.331627,0.331627,0.331627,0.331627,,,,,,,0.332379,0.331763,0.331906,0.331771,0.332151,0.332361,0.331627,0.331627,0.331627,0.331627,0.134534,0.13435,0.134393,0.134352,0.134466,0.134529,0.134309,0.134309,0.071023,0.071023,34.920859,34.98568,34.970582,34.984775,34.944774,34.922677,35,35,35,35,,,,,,,,,,,7946,7946,0.331627,0.331627,0.331627,0.331627,0.331627,0.331627,0.331627,0.331627,0.134309,0.134309,35,35,, +40178,0,0.788545,1,1,0,2,5,,5,8,Hartland,Rd,4105279,0.428,1.216,0,16.897389,3.7,5,1.57709,1.57709,1.57709,1.57709,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.5771,1.577099,1.57709,1.57709,1.5771,1.577099,1.577126,1.577093,1.57709,1.57709,1.577126,1.577093,1.577212,1.577125,1.57709,1.57709,1.577212,1.577125,1.57709,1.57709,1.57709,1.57709,1.57709,1.57709,,,,,,,1.5771,1.577099,1.577126,1.577093,1.577212,1.577125,1.57709,1.57709,1.57709,1.57709,0.615068,0.615068,0.615076,0.615066,0.615102,0.615076,0.615065,0.615065,0.323303,0.323303,29.99981,29.99982,29.999315,29.999936,29.99767,29.999326,30,30,30,30,,,,,,,,,,,2580,2580,1.57709,1.57709,1.57709,1.57709,1.57709,1.57709,1.57709,1.57709,0.615065,0.615065,30,30,, +7014,0,0.070063,1,1,0,2,5,,3,8,Liberty,,933901,0,0.07,0,1.501359,8,4.5,0.168152,0.168152,0.168152,0.168152,25,25,7000,7000,1589,1589,3500,3500,2258,2258,2408,2408,2405,2405,0.168626,0.171679,0.168152,0.168152,0.168626,0.171679,0.168367,0.168356,0.168152,0.168152,0.168367,0.168356,0.172768,0.169945,0.168152,0.168152,0.172768,0.169945,0.168152,0.168152,0.168152,0.168152,0.168152,0.168152,,,,,,,0.168626,0.171679,0.168367,0.168356,0.172768,0.169945,0.168152,0.168152,0.168152,0.168152,0.063199,0.064115,0.063121,0.063118,0.064442,0.063595,0.063057,0.063057,0.03293,0.03293,24.929685,24.486476,24.968166,24.969676,24.332103,24.736218,25,25,25,25,,,,,,,,,,,2408,2408,0.168152,0.168152,0.168152,0.168152,0.168152,0.168152,0.168152,0.168152,0.063057,0.063057,25,25,, +7008,0,0.19183,1,1,1,2,4,,4,8,Spencer,Rd,933908,0.868,1.06,0,4.110644,4.5,4.5,0.30289,0.30289,0.30289,0.30289,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.601581,0.491324,0.30289,0.30289,0.601581,0.491324,0.378262,0.367789,0.30289,0.30289,0.378262,0.367789,0.790629,0.66175,0.30289,0.30289,0.790629,0.66175,0.30289,0.30289,0.30289,0.30289,0.30289,0.30289,,,,,,,0.601581,0.491324,0.378262,0.367789,0.790629,0.66175,0.30289,0.30289,0.30289,0.30289,0.215004,0.181926,0.148008,0.144866,0.271718,0.233054,0.125396,0.125396,0.066535,0.066535,19.132592,23.426114,30.428128,31.294606,14.557786,17.392983,38,38,38,38,,,,,,,,,,,3406,3406,0.30289,0.30289,0.30289,0.30289,0.30289,0.30289,0.30289,0.30289,0.125396,0.125396,38,38,, +7241,0,0.134718,1,1,0,2,5,,4,8,Flint,Rd,938605,0.98,1.114,0,2.886815,5.8,4.5,0.299373,0.299373,0.299373,0.299373,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.299947,0.305628,0.299373,0.299373,0.299947,0.305628,0.299664,0.29968,0.299373,0.299373,0.299664,0.29968,0.308068,0.303084,0.299373,0.299373,0.308068,0.303084,0.299373,0.299373,0.299373,0.299373,0.299373,0.299373,,,,,,,0.299947,0.305628,0.299664,0.29968,0.308068,0.303084,0.299373,0.299373,0.299373,0.299373,0.114233,0.115938,0.114148,0.114153,0.11667,0.115174,0.114061,0.114061,0.059725,0.059725,26.948355,26.447454,26.97384,26.972333,26.237945,26.669482,27,27,27,27,,,,,,,,,,,2580,2580,0.299373,0.299373,0.299373,0.299373,0.299373,0.299373,0.299373,0.299373,0.114061,0.114061,27,27,, +26070,0,0.416339,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.921551,0.15,4,1.665356,1.665356,1.665356,1.665356,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,,,,,,,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,0.574548,0.574548,0.574548,0.574548,0.574548,0.574548,0.574548,0.574548,0.295601,0.295601,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,1.665356,0.574548,0.574548,15,15,, +7788,1,0.318282,1,0,0,1,1,RON,3,8,Spencer/W I 96,RAMP,935103,0,0.318,0,,1.09,4,0.477422,,0.477422,,40,,14750,,3348,,7375,,4758,,5074,,5068,,0.477533,,0.477422,,0.477533,,0.477502,,0.477422,,0.477502,,0.479383,,0.477422,,0.479383,,0.477422,,0.477422,,0.477422,,,,,,,,0.477533,,0.477502,,0.479383,,0.477422,,0.477422,,0.20055,,0.200541,,0.201106,,0.200517,,0.106624,,39.99077,,39.993334,,39.836376,,40,,40,,,,,,,,,,,,5074,,0.477422,,0.477422,,0.477422,,0.477422,,0.200517,,40,,, +7009,0,0.008036,1,1,1,2,4,,4,8,Spencer,Rd,933908,0.86,0.868,0,0.172191,4.5,4.5,0.012688,0.012688,0.012688,0.012688,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.0252,0.014499,0.012688,0.012688,0.0252,0.014499,0.015845,0.013149,0.012688,0.012688,0.015845,0.013149,0.040785,0.014004,0.012688,0.012688,0.040785,0.014004,0.012688,0.012688,0.012688,0.012688,0.012688,0.012688,,,,,,,0.0252,0.014499,0.015845,0.013149,0.040785,0.014004,0.012688,0.012688,0.012688,0.012688,0.009006,0.005796,0.0062,0.005391,0.013682,0.005648,0.005253,0.005253,0.002787,0.002787,19.132592,33.253048,30.428128,36.668093,11.821533,34.428404,38,38,38,38,,,,,,,,,,,3406,3406,0.012688,0.012688,0.012688,0.012688,0.012688,0.012688,0.012688,0.012688,0.005253,0.005253,38,38,, +7007,0,0.250614,1,1,1,2,4,,4,8,Spencer,Rd,933908,1.06,1.31,0,5.370307,4.5,4.5,0.395707,0.395707,0.395707,0.395707,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.576385,0.486136,0.395707,0.395707,0.576385,0.486136,0.449647,0.432952,0.395707,0.395707,0.449647,0.432952,0.709046,0.664319,0.395707,0.395707,0.709046,0.664319,0.395707,0.395707,0.395707,0.395707,0.395707,0.395707,,,,,,,0.576385,0.486136,0.449647,0.432952,0.709046,0.664319,0.395707,0.395707,0.395707,0.395707,0.218026,0.190951,0.180005,0.174996,0.257824,0.244406,0.163823,0.163823,0.086924,0.086924,26.088228,30.931368,33.441478,34.730998,21.207184,22.635011,38,38,38,38,,,,,,,,,,,3406,3406,0.395707,0.395707,0.395707,0.395707,0.395707,0.395707,0.395707,0.395707,0.163823,0.163823,38,38,, +26995,0,0.444313,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.520996,0.15,4,1.777253,1.777253,1.777253,1.777253,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,,,,,,,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,0.613152,0.613152,0.613152,0.613152,0.613152,0.613152,0.613152,0.613152,0.315462,0.315462,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,1.777253,0.613152,0.613152,15,15,, +7020,0,0.292709,1,1,0,2,4,,4,8,Hilton,Rd,933806,1.259,1.552,0,6.272329,4.5,4.5,0.462172,0.462172,0.462172,0.462172,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.462253,0.462528,0.462172,0.462172,0.462253,0.462528,0.462173,0.462175,0.462172,0.462172,0.462173,0.462175,0.46256,0.462351,0.462172,0.462172,0.46256,0.462351,0.462172,0.462172,0.462172,0.462172,0.462172,0.462172,,,,,,,0.462253,0.462528,0.462173,0.462175,0.46256,0.462351,0.462172,0.462172,0.462172,0.462172,0.191363,0.191446,0.191339,0.19134,0.191456,0.191393,0.191339,0.191339,0.101524,0.101524,37.993338,37.97069,37.999894,37.999737,37.96807,37.985292,38,38,38,38,,,,,,,,,,,3096,3096,0.462172,0.462172,0.462172,0.462172,0.462172,0.462172,0.462172,0.462172,0.191339,0.191339,38,38,, +7445,0,1.009889,1,1,0,2,6,,4,8,Hunter,Rd,936005,0,1.01,0,21.640476,6.55,4.5,2.244198,2.244198,2.244198,2.244198,27,27,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.309452,2.942459,2.244198,2.244198,2.309452,2.942459,2.440797,2.478127,2.244198,2.244198,2.440797,2.478127,3.312905,2.846948,2.244198,2.244198,3.312905,2.846948,2.244198,2.244198,2.244198,2.244198,2.244198,2.244198,,,,,,,2.309452,2.942459,2.440797,2.478127,3.312905,2.846948,2.244198,2.244198,2.244198,2.244198,0.874616,1.064518,0.914019,0.925218,1.175651,1.035864,0.855039,0.855039,0.447717,0.447717,26.237106,20.592753,24.825223,24.451265,18.290092,21.283614,27,27,27,27,,,,,,,,,,,2236,2236,2.244198,2.244198,2.244198,2.244198,2.244198,2.244198,2.244198,2.244198,0.855039,0.855039,27,27,, +7021,0,0.244577,1,1,0,2,4,,4,8,Hilton,Rd,933806,1.015,1.259,0,5.240942,4.5,4.5,0.386175,0.386175,0.386175,0.386175,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.394466,0.460283,0.386175,0.386175,0.394466,0.460283,0.395791,0.398901,0.386175,0.386175,0.395791,0.398901,0.494825,0.443406,0.386175,0.386175,0.494825,0.443406,0.386175,0.386175,0.386175,0.386175,0.386175,0.386175,,,,,,,0.394466,0.460283,0.395791,0.398901,0.494825,0.443406,0.386175,0.386175,0.386175,0.386175,0.162364,0.182109,0.162761,0.163694,0.192472,0.177046,0.159876,0.159876,0.08483,0.08483,37.201312,31.881762,37.076758,36.787659,29.656192,33.09524,38,38,38,38,,,,,,,,,,,3096,3096,0.386175,0.386175,0.386175,0.386175,0.386175,0.386175,0.386175,0.386175,0.159876,0.159876,38,38,, +26061,0,0.301389,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,6.458334,0.15,4,1.205556,1.205556,1.205556,1.205556,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,,,,,,,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,0.415917,0.415917,0.415917,0.415917,0.415917,0.415917,0.415917,0.415917,0.213986,0.213986,14.999997,14.999999,14.999999,14.999999,14.999996,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,1.205556,0.415917,0.415917,15,15,, +7443,0,0.377591,1,1,0,2,5,,4,8,Hyne,Rd,936005,1.714,2.091,0,8.091237,5.8,4.5,0.839091,0.839091,0.839091,0.839091,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.840578,0.840162,0.839091,0.839091,0.840578,0.840162,0.83919,0.839115,0.839091,0.839091,0.83919,0.839115,0.841463,0.83969,0.839091,0.839091,0.841463,0.83969,0.839091,0.839091,0.839091,0.839091,0.839091,0.839091,,,,,,,0.840578,0.840162,0.83919,0.839115,0.841463,0.83969,0.839091,0.839091,0.839091,0.839091,0.32014,0.320015,0.319723,0.319701,0.320405,0.319873,0.319694,0.319694,0.167399,0.167399,26.952255,26.965593,26.996816,26.999225,26.923885,26.980737,27,27,27,27,,,,,,,,,,,2580,2580,0.839091,0.839091,0.839091,0.839091,0.839091,0.839091,0.839091,0.839091,0.319694,0.319694,27,27,, +26065,0,0.340279,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,7.291691,0.15,4,1.361116,1.361116,1.361116,1.361116,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,,,,,,,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,0.469585,0.469585,0.469585,0.469585,0.469585,0.469585,0.469585,0.469585,0.241598,0.241598,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,1.361116,0.469585,0.469585,15,15,, +6738,0,1.540588,1,1,0,2,5,,5,8,Old US 23,,932204,16.285,17.825,0,33.012611,3.7,5,3.081177,3.081177,3.081177,3.081177,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,,,,,,,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,1.201659,1.201659,1.201659,1.201659,1.201659,1.201659,1.201659,1.201659,0.631641,0.631641,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,3.081177,1.201659,1.201659,30,30,, +6988,0,1.01205,1,1,0,2,4,,5,8,Argentine,Rd,934310,4.044,5.056,0,21.686794,3,4,1.518076,1.518076,1.518076,1.518076,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.527493,1.543499,1.518076,1.518076,1.527493,1.543499,1.520804,1.523991,1.518076,1.518076,1.520804,1.523991,1.544848,1.536668,1.518076,1.518076,1.544848,1.536668,1.518076,1.518076,1.518076,1.518076,1.518076,1.518076,,,,,,,1.527493,1.543499,1.520804,1.523991,1.544848,1.536668,1.518076,1.518076,1.518076,1.518076,0.640417,0.645219,0.63841,0.639367,0.645624,0.643169,0.637592,0.637592,0.339037,0.339037,39.753401,39.341144,39.928228,39.844727,39.306791,39.516034,40,40,40,40,,,,,,,,,,,3096,3096,1.518076,1.518076,1.518076,1.518076,1.518076,1.518076,1.518076,1.518076,0.637592,0.637592,40,40,, +7038,0,2.02713,1,1,0,2,5,,5,8,Latson,Rd,5490669,4.567,6.593,0,43.438493,3.7,5,4.054259,4.054259,4.054259,4.054259,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.05426,4.054303,4.054259,4.054259,4.05426,4.054303,4.054278,4.05429,4.054259,4.054259,4.054278,4.05429,4.054426,4.054357,4.054259,4.054259,4.054426,4.054357,4.054259,4.054259,4.054259,4.054259,4.054259,4.054259,,,,,,,4.05426,4.054303,4.054278,4.05429,4.054426,4.054357,4.054259,4.054259,4.054259,4.054259,1.581161,1.581174,1.581167,1.58117,1.581211,1.58119,1.581161,1.581161,0.831123,0.831123,29.999991,29.999676,29.999862,29.999771,29.998767,29.999276,30,30,30,30,,,,,,,,,,,2580,2580,4.054259,4.054259,4.054259,4.054259,4.054259,4.054259,4.054259,4.054259,1.581161,1.581161,30,30,, +7048,0,0.993488,1,1,0,2,7,GRV,5,8,Golf Club,Rd,933602,3.959,4.952,0,21.289037,5.55,5,2.980465,2.980465,2.980465,2.980465,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.980512,2.981063,2.980465,2.980465,2.980512,2.981063,2.980472,2.98048,2.980465,2.980465,2.980472,2.98048,2.981675,2.98071,2.980465,2.980465,2.981675,2.98071,2.980465,2.980465,2.980465,2.980465,2.980465,2.980465,,,,,,,2.980512,2.981063,2.980472,2.98048,2.981675,2.98071,2.980465,2.980465,2.980465,2.980465,1.072981,1.073147,1.07297,1.072972,1.07333,1.073041,1.072967,1.072967,0.556353,0.556353,19.999688,19.995987,19.999951,19.999898,19.991885,19.998357,20,20,20,20,,,,,,,,,,,2236,2236,2.980465,2.980465,2.980465,2.980465,2.980465,2.980465,2.980465,2.980465,1.072967,1.072967,20,20,, +7088,0,1.007504,1,1,0,2,3,,5,8,Highland,Rd,933209,8.269,9.276,0,21.589376,1.7,4,1.209005,1.209005,1.209005,1.209005,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.778864,1.574182,1.209005,1.209005,1.778864,1.574182,1.523457,1.468976,1.209005,1.209005,1.523457,1.468976,1.691566,1.747809,1.209005,1.209005,1.691566,1.747809,1.209005,1.209005,1.209005,1.209005,1.209005,1.209005,,,,,,,1.778864,1.574182,1.523457,1.468976,1.691566,1.747809,1.209005,1.209005,1.209005,1.209005,0.71501,0.653605,0.638388,0.622044,0.688821,0.705694,0.544052,0.544052,0.292176,0.292176,33.9825,38.401064,39.67965,41.151286,35.736261,34.586294,50,50,50,50,,,,,,,,,,,3096,3096,1.209005,1.209005,1.209005,1.209005,1.209005,1.209005,1.209005,1.209005,0.544052,0.544052,50,50,, +8005,0,2.016766,1,1,0,2,5,GRV,5,8,Faussett,Rd,934509,5.168,7.184,0,43.216406,5.55,5,6.050297,6.050297,6.050297,6.050297,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,6.050302,6.050337,6.050297,6.050297,6.050302,6.050337,6.050297,6.050297,6.050297,6.050297,6.050297,6.050297,6.050323,6.050303,6.050297,6.050297,6.050323,6.050303,6.050297,6.050297,6.050297,6.050297,6.050297,6.050297,,,,,,,6.050302,6.050337,6.050297,6.050297,6.050323,6.050303,6.050297,6.050297,6.050297,6.050297,2.178108,2.178119,2.178107,2.178107,2.178115,2.178109,2.178107,2.178107,1.129389,1.129389,19.999983,19.999868,19.999998,19.999998,19.999913,19.999978,20,20,20,20,,,,,,,,,,,2236,2236,6.050297,6.050297,6.050297,6.050297,6.050297,6.050297,6.050297,6.050297,2.178107,2.178107,20,20,, +8030,0,0.988008,1,1,0,2,4,,5,8,Clyde,Rd,939905,3.987,4.974,0,21.171593,3,4,1.482011,1.482011,1.482011,1.482011,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.65313,1.571939,1.482011,1.482011,1.65313,1.571939,1.496087,1.500764,1.482011,1.482011,1.496087,1.500764,1.567574,1.672714,1.482011,1.482011,1.567574,1.672714,1.482011,1.482011,1.482011,1.482011,1.482011,1.482011,,,,,,,1.65313,1.571939,1.496087,1.500764,1.567574,1.672714,1.482011,1.482011,1.482011,1.482011,0.67378,0.649423,0.626667,0.628071,0.648114,0.679656,0.622445,0.622445,0.330983,0.330983,35.85952,37.711686,39.62368,39.500189,37.816678,35.439685,40,40,40,40,,,,,,,,,,,3096,3096,1.482011,1.482011,1.482011,1.482011,1.482011,1.482011,1.482011,1.482011,0.622445,0.622445,40,40,, +24818,0,0.948257,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.319785,0.15,4,3.793026,3.793026,3.793026,3.793026,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,,,,,,,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,1.308594,1.308594,1.308594,1.308594,1.308594,1.308594,1.308594,1.308594,0.673262,0.673262,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,3.793026,1.308594,1.308594,15,15,, +26042,0,1.828519,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.182555,0.15,4,7.314077,7.314077,7.314077,7.314077,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,,,,,,,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,2.523357,2.523357,2.523357,2.523357,2.523357,2.523357,2.523357,2.523357,1.298249,1.298249,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,7.314077,2.523357,2.523357,15,15,, +26915,0,1.121792,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.038394,0.15,4,4.487167,4.487167,4.487167,4.487167,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,,,,,,,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,1.548073,1.548073,1.548073,1.548073,1.548073,1.548073,1.548073,1.548073,0.796472,0.796472,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,4.487167,1.548073,1.548073,15,15,, +27053,0,0.97333,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.857069,0.15,4,3.89332,3.89332,3.89332,3.89332,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,,,,,,,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,1.343195,1.343195,1.343195,1.343195,1.343195,1.343195,1.343195,1.343195,0.691064,0.691064,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,3.89332,1.343195,1.343195,15,15,, +27055,0,1.452008,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.114455,0.15,4,5.808032,5.808032,5.808032,5.808032,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,,,,,,,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,2.003771,2.003771,2.003771,2.003771,2.003771,2.003771,2.003771,2.003771,1.030926,1.030926,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,5.808032,2.003771,2.003771,15,15,, +27056,0,1.014165,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.732103,0.15,4,4.056659,4.056659,4.056659,4.056659,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,,,,,,,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,1.399547,1.399547,1.399547,1.399547,1.399547,1.399547,1.399547,1.399547,0.720057,0.720057,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,4.056659,1.399547,1.399547,15,15,, +6990,0,1.015249,1,1,0,2,4,,5,8,Argentine,Rd,934310,2.019,3.033,0,21.755331,3,4,1.522873,1.522873,1.522873,1.522873,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.532084,1.583811,1.522873,1.522873,1.532084,1.583811,1.527098,1.53222,1.522873,1.522873,1.527098,1.53222,1.582738,1.547428,1.522873,1.522873,1.582738,1.547428,1.522873,1.522873,1.522873,1.522873,1.522873,1.522873,,,,,,,1.532084,1.583811,1.527098,1.53222,1.582738,1.547428,1.522873,1.522873,1.522873,1.522873,0.64237,0.657888,0.640874,0.642411,0.657566,0.646973,0.639607,0.639607,0.340108,0.340108,39.759523,38.460972,39.889333,39.755996,38.487068,39.365275,40,40,40,40,,,,,,,,,,,3096,3096,1.522873,1.522873,1.522873,1.522873,1.522873,1.522873,1.522873,1.522873,0.639607,0.639607,40,40,, +7039,0,1.038017,1,1,0,2,5,,5,8,Latson,Rd,5490669,3.529,4.567,0,22.24322,3.7,5,2.076034,2.076034,2.076034,2.076034,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.078451,3.066973,2.076034,2.076034,2.078451,3.066973,2.094908,2.110238,2.076034,2.076034,2.094908,2.110238,2.909366,2.159493,2.076034,2.076034,2.909366,2.159493,2.076034,2.076034,2.076034,2.076034,2.076034,2.076034,,,,,,,2.078451,3.066973,2.094908,2.110238,2.909366,2.159493,2.076034,2.076034,2.076034,2.076034,0.810378,1.106935,0.815315,0.819914,1.059653,0.834691,0.809653,0.809653,0.425587,0.425587,29.965109,20.307001,29.729718,29.513738,21.407073,28.840568,30,30,30,30,,,,,,,,,,,2580,2580,2.076034,2.076034,2.076034,2.076034,2.076034,2.076034,2.076034,2.076034,0.809653,0.809653,30,30,, +7049,0,1.004851,1,1,0,2,7,GRV,5,8,Golf Club,Rd,933602,2.955,3.959,0,21.532521,5.55,5,3.014553,3.014553,3.014553,3.014553,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.014563,3.014951,3.014553,3.014553,3.014563,3.014951,3.014558,3.014565,3.014553,3.014553,3.014558,3.014565,3.015236,3.014657,3.014553,3.014553,3.015236,3.014657,3.014553,3.014553,3.014553,3.014553,3.014553,3.014553,,,,,,,3.014563,3.014951,3.014558,3.014565,3.015236,3.014657,3.014553,3.014553,3.014553,3.014553,1.085242,1.085358,1.08524,1.085243,1.085444,1.08527,1.085239,1.085239,0.562717,0.562717,19.99993,19.99736,19.999969,19.999921,19.995471,19.999311,20,20,20,20,,,,,,,,,,,2236,2236,3.014553,3.014553,3.014553,3.014553,3.014553,3.014553,3.014553,3.014553,1.085239,1.085239,20,20,, +7089,0,1.000426,1,1,0,2,3,,5,8,Highland,Rd,933209,7.269,8.269,0,21.437706,1.7,4,1.200512,1.200512,1.200512,1.200512,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.256771,2.537884,1.200512,1.200512,2.256771,2.537884,1.825903,1.857549,1.200512,1.200512,1.825903,1.857549,2.721779,2.430292,1.200512,1.200512,2.721779,2.430292,1.200512,1.200512,1.200512,1.200512,1.200512,1.200512,,,,,,,2.256771,2.537884,1.825903,1.857549,2.721779,2.430292,1.200512,1.200512,1.200512,1.200512,0.857108,0.941442,0.727848,0.737342,0.996611,0.909164,0.54023,0.54023,0.290124,0.290124,26.597996,23.651818,32.874462,32.314393,22.053801,24.698912,50,50,50,50,,,,,,,,,,,3096,3096,1.200512,1.200512,1.200512,1.200512,1.200512,1.200512,1.200512,1.200512,0.54023,0.54023,50,50,, +27054,0,1.000965,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.44925,0.15,4,4.00386,4.00386,4.00386,4.00386,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,,,,,,,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,1.381332,1.381332,1.381332,1.381332,1.381332,1.381332,1.381332,1.381332,0.710685,0.710685,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,4.00386,1.381332,1.381332,15,15,, +30162,0,1.25452,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.882575,0.15,4,5.018081,5.018081,5.018081,5.018081,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,,,,,,,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,1.731238,1.731238,1.731238,1.731238,1.731238,1.731238,1.731238,1.731238,0.890709,0.890709,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,5.018081,1.731238,1.731238,15,15,, +7026,0,1.393019,1,1,0,2,6,GRV,5,8,Hughes,Rd,933708,3.09,4.483,0,29.850401,5.55,5,3.343245,3.343245,3.343245,3.343245,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.343571,3.343345,3.343245,3.343245,3.343571,3.343345,3.343279,3.343276,3.343245,3.343245,3.343279,3.343276,3.343543,3.343352,3.343245,3.343245,3.343543,3.343352,3.343245,3.343245,3.343245,3.343245,3.343245,3.343245,,,,,,,3.343571,3.343345,3.343279,3.343276,3.343543,3.343352,3.343245,3.343245,3.343245,3.343245,1.253815,1.253747,1.253727,1.253726,1.253806,1.253749,1.253717,1.253717,0.654719,0.654719,24.997559,24.999253,24.999743,24.999771,24.997774,24.999197,25,25,25,25,,,,,,,,,,,2236,2236,3.343245,3.343245,3.343245,3.343245,3.343245,3.343245,3.343245,3.343245,1.253717,1.253717,25,25,, +7040,0,1.989313,1,1,0,2,4,,5,8,Latson,Rd,5490669,1.541,3.529,0,42.628133,3,4,2.983969,2.983969,2.983969,2.983969,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.997269,3.582609,2.983969,2.983969,2.997269,3.582609,3.042906,3.069179,2.983969,2.983969,3.042906,3.069179,3.751021,3.083979,2.983969,2.983969,3.751021,3.083979,2.983969,2.983969,2.983969,2.983969,2.983969,2.983969,,,,,,,2.997269,3.582609,3.042906,3.069179,3.751021,3.083979,2.983969,2.983969,2.983969,2.983969,1.257257,1.432859,1.270948,1.27883,1.483383,1.28327,1.253267,1.253267,0.66642,0.66642,39.822507,33.316164,39.225258,38.889474,31.820342,38.702853,40,40,40,40,,,,,,,,,,,3096,3096,2.983969,2.983969,2.983969,2.983969,2.983969,2.983969,2.983969,2.983969,1.253267,1.253267,40,40,, +7051,0,0.509569,1,1,0,2,5,,4,8,Golf Club,Rd,933602,1.942,2.452,0,10.919328,5.8,4.5,1.132375,1.132375,1.132375,1.132375,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.137204,1.166326,1.132375,1.132375,1.137204,1.166326,1.140593,1.144613,1.132375,1.132375,1.140593,1.144613,1.187612,1.169941,1.132375,1.132375,1.187612,1.169941,1.132375,1.132375,1.132375,1.132375,1.132375,1.132375,,,,,,,1.137204,1.166326,1.140593,1.144613,1.187612,1.169941,1.132375,1.132375,1.132375,1.132375,0.432884,0.44162,0.4339,0.435106,0.448006,0.442705,0.431435,0.431435,0.225909,0.225909,26.885343,26.21404,26.805455,26.711304,25.744192,26.133042,27,27,27,27,,,,,,,,,,,2580,2580,1.132375,1.132375,1.132375,1.132375,1.132375,1.132375,1.132375,1.132375,0.431435,0.431435,27,27,, +7091,0,0.492047,1,1,0,2,3,,5,8,Highland,Rd,933209,6.275,6.767,0,10.543861,1.7,4,0.590456,0.590456,0.590456,0.590456,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.976671,1.113383,0.590456,0.590456,0.976671,1.113383,0.849155,0.857847,0.590456,0.590456,0.849155,0.857847,1.178107,1.080636,0.590456,0.590456,1.178107,1.080636,0.590456,0.590456,0.590456,0.590456,0.590456,0.590456,,,,,,,0.976671,1.113383,0.849155,0.857847,1.178107,1.080636,0.590456,0.590456,0.590456,0.590456,0.38157,0.422583,0.343315,0.345922,0.442,0.412759,0.265705,0.265705,0.142694,0.142694,30.228007,26.516302,34.767276,34.415024,25.059539,27.319855,50,50,50,50,,,,,,,,,,,3096,3096,0.590456,0.590456,0.590456,0.590456,0.590456,0.590456,0.590456,0.590456,0.265705,0.265705,50,50,, +30161,0,1.312653,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.128283,0.15,4,5.250613,5.250613,5.250613,5.250613,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,,,,,,,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,1.811461,1.811461,1.811461,1.811461,1.811461,1.811461,1.811461,1.811461,0.931984,0.931984,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,5.250613,1.811461,1.811461,15,15,, +7027,0,0.629888,1,1,0,2,6,GRV,5,8,Hughes,Rd,933708,2.46,3.09,0,13.497608,5.55,5,1.511732,1.511732,1.511732,1.511732,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.51488,1.91339,1.511732,1.511732,1.51488,1.91339,1.519221,1.523163,1.511732,1.511732,1.519221,1.523163,1.814233,1.528598,1.511732,1.511732,1.814233,1.528598,1.511732,1.511732,1.511732,1.511732,1.511732,1.511732,,,,,,,1.51488,1.91339,1.519221,1.523163,1.814233,1.528598,1.511732,1.511732,1.511732,1.511732,0.567844,0.687397,0.569146,0.570329,0.65765,0.571959,0.5669,0.5669,0.296048,0.296048,24.948045,19.752008,24.876757,24.812375,20.831563,24.724165,25,25,25,25,,,,,,,,,,,2236,2236,1.511732,1.511732,1.511732,1.511732,1.511732,1.511732,1.511732,1.511732,0.5669,0.5669,25,25,, +7050,0,0.503154,1,1,0,2,5,,4,8,Golf Club,Rd,933602,2.452,2.955,0,10.781868,5.8,4.5,1.11812,1.11812,1.11812,1.11812,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.120314,1.144301,1.11812,1.11812,1.120314,1.144301,1.123113,1.126172,1.11812,1.11812,1.123113,1.126172,1.152064,1.137389,1.11812,1.11812,1.152064,1.137389,1.11812,1.11812,1.11812,1.11812,1.11812,1.11812,,,,,,,1.120314,1.144301,1.123113,1.126172,1.152064,1.137389,1.11812,1.11812,1.11812,1.11812,0.426662,0.433858,0.427502,0.428419,0.436187,0.431785,0.426004,0.426004,0.223065,0.223065,26.947117,26.382239,26.879953,26.806954,26.204481,26.542566,27,27,27,27,,,,,,,,,,,2580,2580,1.11812,1.11812,1.11812,1.11812,1.11812,1.11812,1.11812,1.11812,0.426004,0.426004,27,27,, +27061,0,0.225408,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,4.830174,0.15,4,0.901632,0.901632,0.901632,0.901632,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.901633,0.901632,0.901632,0.901632,0.901633,0.901632,0.901632,0.901632,0.901632,0.901632,0.901632,0.901632,0.901632,0.901633,0.901632,0.901632,0.901632,0.901633,0.901632,0.901632,0.901632,0.901632,0.901632,0.901632,,,,,,,0.901633,0.901632,0.901632,0.901632,0.901632,0.901633,0.901632,0.901632,0.901632,0.901632,0.311063,0.311063,0.311063,0.311063,0.311063,0.311063,0.311063,0.311063,0.16004,0.16004,14.999996,15,15,15,15,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,0.901632,0.901632,0.901632,0.901632,0.901632,0.901632,0.901632,0.901632,0.311063,0.311063,15,15,, +7090,0,0.502041,1,1,0,2,3,,5,8,Highland,Rd,933209,6.767,7.269,0,10.758029,1.7,4,0.60245,0.60245,0.60245,0.60245,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.957436,1.102451,0.60245,0.60245,0.957436,1.102451,0.837952,0.852407,0.60245,0.60245,0.837952,0.852407,1.136506,1.057186,0.60245,0.60245,1.136506,1.057186,0.60245,0.60245,0.60245,0.60245,0.60245,0.60245,,,,,,,0.957436,1.102451,0.837952,0.852407,1.136506,1.057186,0.60245,0.60245,0.60245,0.60245,0.377598,0.421103,0.341753,0.34609,0.431319,0.407523,0.271102,0.271102,0.145592,0.145592,31.461597,27.323182,35.947742,35.338127,26.504469,28.493088,50,50,50,50,,,,,,,,,,,3096,3096,0.60245,0.60245,0.60245,0.60245,0.60245,0.60245,0.60245,0.60245,0.271102,0.271102,50,50,, +24794,0,1.443256,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.926922,0.15,4,5.773026,5.773026,5.773026,5.773026,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,,,,,,,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,1.991694,1.991694,1.991694,1.991694,1.991694,1.991694,1.991694,1.991694,1.024712,1.024712,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,5.773026,1.991694,1.991694,15,15,, +6989,0,1.011145,1,1,0,2,4,,5,8,Argentine,Rd,934310,3.033,4.044,0,21.667383,3,4,1.516717,1.516717,1.516717,1.516717,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.523141,1.551218,1.516717,1.516717,1.523141,1.551218,1.518862,1.522183,1.516717,1.516717,1.518862,1.522183,1.548035,1.531182,1.516717,1.516717,1.548035,1.531182,1.516717,1.516717,1.516717,1.516717,1.516717,1.516717,,,,,,,1.523141,1.551218,1.518862,1.522183,1.548035,1.531182,1.516717,1.516717,1.516717,1.516717,0.638948,0.647371,0.637665,0.638661,0.646417,0.641361,0.637021,0.637021,0.338733,0.338733,39.831277,39.110346,39.943502,39.856352,39.190752,39.622111,40,40,40,40,,,,,,,,,,,3096,3096,1.516717,1.516717,1.516717,1.516717,1.516717,1.516717,1.516717,1.516717,0.637021,0.637021,40,40,, +6987,0,2.143359,1,1,0,2,4,,5,8,Argentine,Rd,934310,5.056,7.198,0,45.92912,3,4,3.215038,3.215038,3.215038,3.215038,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.232297,3.366033,3.215038,3.215038,3.232297,3.366033,3.228485,3.235818,3.215038,3.215038,3.228485,3.235818,3.429659,3.262538,3.215038,3.215038,3.429659,3.262538,3.215038,3.215038,3.215038,3.215038,3.215038,3.215038,,,,,,,3.232297,3.366033,3.228485,3.235818,3.429659,3.262538,3.215038,3.215038,3.215038,3.215038,1.355494,1.395614,1.35435,1.35655,1.414702,1.364566,1.350316,1.350316,0.718025,0.718025,39.78642,38.205671,39.833395,39.743131,37.496885,39.41763,40,40,40,40,,,,,,,,,,,3096,3096,3.215038,3.215038,3.215038,3.215038,3.215038,3.215038,3.215038,3.215038,1.350316,1.350316,40,40,, +7312,0,1.008452,1,1,0,2,5,,5,8,Latson,Rd,938109,0,1.008,0,21.609682,3.7,5,2.016904,2.016904,2.016904,2.016904,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.016906,2.017006,2.016904,2.016904,2.016906,2.017006,2.016924,2.016931,2.016904,2.016904,2.016924,2.016931,2.017152,2.01702,2.016904,2.016904,2.017152,2.01702,2.016904,2.016904,2.016904,2.016904,2.016904,2.016904,,,,,,,2.016906,2.017006,2.016924,2.016931,2.017152,2.01702,2.016904,2.016904,2.016904,2.016904,0.786593,0.786623,0.786599,0.786601,0.786667,0.786627,0.786592,0.786592,0.413465,0.413465,29.99997,29.998476,29.999697,29.999587,29.996304,29.998274,30,30,30,30,,,,,,,,,,,2580,2580,2.016904,2.016904,2.016904,2.016904,2.016904,2.016904,2.016904,2.016904,0.786592,0.786592,30,30,, +8010,0,0.992812,1,1,0,2,5,,5,8,Faussett,Rd,934509,4.176,5.168,0,21.274551,3.7,5,1.985625,1.985625,1.985625,1.985625,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.986506,1.985676,1.985625,1.985625,1.986506,1.985676,1.985631,1.985626,1.985625,1.985625,1.985631,1.985626,1.985644,1.986053,1.985625,1.985625,1.985644,1.986053,1.985625,1.985625,1.985625,1.985625,1.985625,1.985625,,,,,,,1.986506,1.985676,1.985631,1.985626,1.985644,1.986053,1.985625,1.985625,1.985625,1.985625,0.774658,0.774409,0.774396,0.774394,0.774399,0.774522,0.774394,0.774394,0.407053,0.407053,29.986698,29.999233,29.999906,29.999979,29.999707,29.993525,30,30,30,30,,,,,,,,,,,2580,2580,1.985625,1.985625,1.985625,1.985625,1.985625,1.985625,1.985625,1.985625,0.774394,0.774394,30,30,, +8038,0,1.006704,1,1,0,2,5,,5,8,Clyde,Rd,939905,2.98,3.987,0,21.572236,3.7,5,2.013409,2.013409,2.013409,2.013409,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.013917,2.014577,2.013409,2.013409,2.013917,2.014577,2.013422,2.013431,2.013409,2.013409,2.013422,2.013431,2.013918,2.013679,2.013409,2.013409,2.013918,2.013679,2.013409,2.013409,2.013409,2.013409,2.013409,2.013409,,,,,,,2.013917,2.014577,2.013422,2.013431,2.013918,2.013679,2.013409,2.013409,2.013409,2.013409,0.785382,0.78558,0.785233,0.785236,0.785382,0.785311,0.785229,0.785229,0.412749,0.412749,29.992425,29.982607,29.999803,29.999669,29.992409,29.995969,30,30,30,30,,,,,,,,,,,2580,2580,2.013409,2.013409,2.013409,2.013409,2.013409,2.013409,2.013409,2.013409,0.785229,0.785229,30,30,, +26430,0,1.98619,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,42.561216,0.15,4,7.94476,7.94476,7.94476,7.94476,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,,,,,,,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,2.740942,2.740942,2.740942,2.740942,2.740942,2.740942,2.740942,2.740942,1.410195,1.410195,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,7.94476,2.740942,2.740942,15,15,, +7037,0,1.061376,1,1,0,2,5,,5,8,Latson,Rd,5490669,6.593,7.654,0,22.743763,3.7,5,2.122751,2.122751,2.122751,2.122751,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.122753,2.122859,2.122751,2.122751,2.122753,2.122859,2.122773,2.12278,2.122751,2.122751,2.122773,2.12278,2.123013,2.122873,2.122751,2.122751,2.123013,2.122873,2.122751,2.122751,2.122751,2.122751,2.122751,2.122751,,,,,,,2.122753,2.122859,2.122773,2.12278,2.123013,2.122873,2.122751,2.122751,2.122751,2.122751,0.827874,0.827905,0.827879,0.827882,0.827951,0.82791,0.827873,0.827873,0.435164,0.435164,29.99997,29.998476,29.999697,29.999587,29.996304,29.998274,30,30,30,30,,,,,,,,,,,2580,2580,2.122751,2.122751,2.122751,2.122751,2.122751,2.122751,2.122751,2.122751,0.827873,0.827873,30,30,, +8051,0,0.991479,1,1,0,2,5,,5,8,Clyde,Rd,939905,1.989,2.98,0,21.245972,3.7,5,1.982957,1.982957,1.982957,1.982957,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.983576,1.984368,1.982957,1.982957,1.983576,1.984368,1.982974,1.98299,1.982957,1.982957,1.982974,1.98299,1.983671,1.983319,1.982957,1.982957,1.983671,1.983319,1.982957,1.982957,1.982957,1.982957,1.982957,1.982957,,,,,,,1.983576,1.984368,1.982974,1.98299,1.983671,1.983319,1.982957,1.982957,1.982957,1.982957,0.773539,0.773777,0.773359,0.773363,0.773568,0.773462,0.773353,0.773353,0.406506,0.406506,29.990638,29.978675,29.999741,29.999511,29.989205,29.994526,30,30,30,30,,,,,,,,,,,2580,2580,1.982957,1.982957,1.982957,1.982957,1.982957,1.982957,1.982957,1.982957,0.773353,0.773353,30,30,, +7311,0,1.00701,1,1,0,2,7,,5,8,Latson,Rd,938109,1.008,2.015,0,21.578775,5.8,6,2.416823,2.416823,2.416823,2.416823,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.416823,2.417168,2.416823,2.416823,2.416823,2.417168,2.416834,2.416839,2.416823,2.416823,2.416834,2.416839,2.417493,2.416906,2.416823,2.416823,2.417493,2.416906,2.416823,2.416823,2.416823,2.416823,2.416823,2.416823,,,,,,,2.416823,2.417168,2.416834,2.416839,2.417493,2.416906,2.416823,2.416823,2.416823,2.416823,0.906309,0.906412,0.906312,0.906313,0.90651,0.906333,0.906309,0.906309,0.473294,0.473294,24.999994,24.996428,24.999889,24.999833,24.993073,24.999144,25,25,25,25,,,,,,,,,,,2064,2064,2.416823,2.416823,2.416823,2.416823,2.416823,2.416823,2.416823,2.416823,0.906309,0.906309,25,25,, +8011,0,0.999141,1,1,0,2,5,,5,8,Faussett,Rd,934509,3.177,4.176,0,21.410161,3.7,5,1.998282,1.998282,1.998282,1.998282,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.99831,1.998304,1.998282,1.998282,1.99831,1.998304,1.998282,1.998282,1.998282,1.998282,1.998282,1.998282,1.998284,1.998293,1.998282,1.998282,1.998284,1.998293,1.998282,1.998282,1.998282,1.998282,1.998282,1.998282,,,,,,,1.99831,1.998304,1.998282,1.998282,1.998284,1.998293,1.998282,1.998282,1.998282,1.998282,0.779338,0.779337,0.77933,0.77933,0.779331,0.779333,0.77933,0.77933,0.409648,0.409648,29.999582,29.99966,29.999998,29.999999,29.999966,29.999834,30,30,30,30,,,,,,,,,,,2580,2580,1.998282,1.998282,1.998282,1.998282,1.998282,1.998282,1.998282,1.998282,0.77933,0.77933,30,30,, +24615,0,1.146814,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.57458,0.15,4,4.587255,4.587255,4.587255,4.587255,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,,,,,,,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,1.582603,1.582603,1.582603,1.582603,1.582603,1.582603,1.582603,1.582603,0.814238,0.814238,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,4.587255,1.582603,1.582603,15,15,, +30164,0,0.374618,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.027538,0.15,4,1.498474,1.498474,1.498474,1.498474,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,,,,,,,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,0.516973,0.516973,0.516973,0.516973,0.516973,0.516973,0.516973,0.516973,0.265979,0.265979,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,1.498474,0.516973,0.516973,15,15,, +6986,0,0.885786,1,1,0,2,4,,5,8,Argentine,Rd,934310,7.198,8.084,0,18.981135,3,4,1.328679,1.328679,1.328679,1.328679,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.332641,1.344263,1.328679,1.328679,1.332641,1.344263,1.331361,1.331976,1.328679,1.328679,1.331361,1.331976,1.349714,1.336965,1.328679,1.328679,1.349714,1.336965,1.328679,1.328679,1.328679,1.328679,1.328679,1.328679,,,,,,,1.332641,1.344263,1.331361,1.331976,1.349714,1.336965,1.328679,1.328679,1.328679,1.328679,0.559234,0.56272,0.55885,0.559034,0.564356,0.560531,0.558045,0.558045,0.296738,0.296738,39.881089,39.536289,39.919439,39.901014,39.376612,39.752121,40,40,40,40,,,,,,,,,,,3096,3096,1.328679,1.328679,1.328679,1.328679,1.328679,1.328679,1.328679,1.328679,0.558045,0.558045,40,40,, +24595,0,1.119021,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.979018,0.15,4,4.476083,4.476083,4.476083,4.476083,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,,,,,,,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,1.544249,1.544249,1.544249,1.544249,1.544249,1.544249,1.544249,1.544249,0.794505,0.794505,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,4.476083,1.544249,1.544249,15,15,, +6985,0,0.121839,1,1,0,2,4,,5,8,Argentine,Rd,934310,8.084,8.206,0,2.61083,3,4,0.182758,0.182758,0.182758,0.182758,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.183331,0.184954,0.182758,0.182758,0.183331,0.184954,0.183167,0.183242,0.182758,0.182758,0.183167,0.183242,0.185799,0.183988,0.182758,0.182758,0.185799,0.183988,0.182758,0.182758,0.182758,0.182758,0.182758,0.182758,,,,,,,0.183331,0.184954,0.183167,0.183242,0.185799,0.183988,0.182758,0.182758,0.182758,0.182758,0.07693,0.077417,0.076881,0.076904,0.077671,0.077127,0.076758,0.076758,0.040816,0.040816,39.875089,39.525016,39.910782,39.894329,39.345401,39.732636,40,40,40,40,,,,,,,,,,,3096,3096,0.182758,0.182758,0.182758,0.182758,0.182758,0.182758,0.182758,0.182758,0.076758,0.076758,40,40,, +7085,0,1.008054,1,1,0,2,3,,5,8,Highland,Rd,933209,10.265,11.273,0,21.601163,1.7,4,1.209665,1.209665,1.209665,1.209665,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.893624,1.610282,1.209665,1.209665,1.893624,1.610282,1.557875,1.500251,1.209665,1.209665,1.557875,1.500251,1.759098,1.887382,1.209665,1.209665,1.759098,1.887382,1.209665,1.209665,1.209665,1.209665,1.209665,1.209665,,,,,,,1.893624,1.610282,1.557875,1.500251,1.759098,1.887382,1.209665,1.209665,1.209665,1.209665,0.749537,0.664534,0.648812,0.631525,0.709179,0.747664,0.544349,0.544349,0.292336,0.292336,31.940479,37.560663,38.824211,40.315419,34.383103,32.046111,50,50,50,50,,,,,,,,,,,3096,3096,1.209665,1.209665,1.209665,1.209665,1.209665,1.209665,1.209665,1.209665,0.544349,0.544349,50,50,, +7086,0,0.497877,1,1,0,2,3,,5,8,Highland,Rd,933209,9.767,10.265,0,10.668793,1.7,4,0.597452,0.597452,0.597452,0.597452,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.970347,0.790849,0.597452,0.597452,0.970347,0.790849,0.778078,0.746555,0.597452,0.597452,0.778078,0.746555,0.875013,0.981892,0.597452,0.597452,0.875013,0.981892,0.597452,0.597452,0.597452,0.597452,0.597452,0.597452,,,,,,,0.970347,0.790849,0.778078,0.746555,0.875013,0.981892,0.597452,0.597452,0.597452,0.597452,0.380722,0.326872,0.323041,0.313584,0.352122,0.384186,0.268854,0.268854,0.144384,0.144384,30.785487,37.772862,38.39282,40.013943,34.139619,30.423518,50,50,50,50,,,,,,,,,,,3096,3096,0.597452,0.597452,0.597452,0.597452,0.597452,0.597452,0.597452,0.597452,0.268854,0.268854,50,50,, +7334,0,1.250265,1,1,0,2,6,GRV,5,8,Bergin,Rd,941010,2.06,3.31,0,26.79139,5.55,5,3.000636,3.000636,3.000636,3.000636,25,25,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.030307,3.072481,3.000636,3.000636,3.030307,3.072481,3.005271,3.006414,3.000636,3.000636,3.005271,3.006414,3.139315,3.091653,3.000636,3.000636,3.139315,3.091653,3.000636,3.000636,3.000636,3.000636,3.000636,3.000636,,,,,,,3.030307,3.072481,3.005271,3.006414,3.139315,3.091653,3.000636,3.000636,3.000636,3.000636,1.13414,1.146792,1.126629,1.126972,1.166842,1.152544,1.125238,1.125238,0.587624,0.587624,24.755215,24.415412,24.961443,24.951948,23.895626,24.264007,25,25,25,25,,,,,,,,,,,2236,2236,3.000636,3.000636,3.000636,3.000636,3.000636,3.000636,3.000636,3.000636,1.125238,1.125238,25,25,, +7336,0,1.009979,1,1,0,2,5,,5,8,Hacker,Rd,940803,4.22,5.229,0,21.642397,3.7,5,2.019957,2.019957,2.019957,2.019957,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.025256,2.029152,2.019957,2.019957,2.025256,2.029152,2.0208,2.020866,2.019957,2.019957,2.0208,2.020866,2.032598,2.027536,2.019957,2.019957,2.032598,2.027536,2.019957,2.019957,2.019957,2.019957,2.019957,2.019957,,,,,,,2.025256,2.029152,2.0208,2.020866,2.032598,2.027536,2.019957,2.019957,2.019957,2.019957,0.789373,0.790542,0.788036,0.788056,0.791576,0.790057,0.787783,0.787783,0.414091,0.414091,29.92151,29.864064,29.987479,29.986508,29.813425,29.887858,30,30,30,30,,,,,,,,,,,2580,2580,2.019957,2.019957,2.019957,2.019957,2.019957,2.019957,2.019957,2.019957,0.787783,0.787783,30,30,, +26045,0,1.059296,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.699208,0.15,4,4.237185,4.237185,4.237185,4.237185,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.237186,4.237185,4.237185,4.237185,4.237186,4.237185,4.237185,4.237185,4.237185,4.237185,4.237185,4.237185,4.237185,4.237186,4.237185,4.237185,4.237185,4.237186,4.237185,4.237185,4.237185,4.237185,4.237185,4.237185,,,,,,,4.237186,4.237185,4.237185,4.237185,4.237185,4.237186,4.237185,4.237185,4.237185,4.237185,1.461829,1.461829,1.461829,1.461829,1.461829,1.461829,1.461829,1.461829,0.7521,0.7521,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.237185,4.237185,4.237185,4.237185,4.237185,4.237185,4.237185,4.237185,1.461829,1.461829,15,15,, +27057,0,2.144965,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,45.963534,0.15,4,8.57986,8.57986,8.57986,8.57986,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,,,,,,,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,2.960052,2.960052,2.960052,2.960052,2.960052,2.960052,2.960052,2.960052,1.522925,1.522925,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,8.57986,2.960052,2.960052,15,15,, +7047,0,1.012496,1,1,0,2,7,GRV,5,8,Golf Club,Rd,933602,4.952,5.964,0,21.696345,5.55,5,3.037488,3.037488,3.037488,3.037488,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.037563,3.037643,3.037488,3.037488,3.037563,3.037643,3.037497,3.037501,3.037488,3.037488,3.037497,3.037501,3.0379,3.037662,3.037488,3.037488,3.0379,3.037662,3.037488,3.037488,3.037488,3.037488,3.037488,3.037488,,,,,,,3.037563,3.037643,3.037497,3.037501,3.0379,3.037662,3.037488,3.037488,3.037488,3.037488,1.093518,1.093542,1.093498,1.093499,1.093619,1.093548,1.093496,1.093496,0.566998,0.566998,19.999507,19.998981,19.999942,19.999919,19.997293,19.998855,20,20,20,20,,,,,,,,,,,2236,2236,3.037488,3.037488,3.037488,3.037488,3.037488,3.037488,3.037488,3.037488,1.093496,1.093496,20,20,, +7341,0,1.002651,1,1,0,2,5,,5,8,Hacker,Rd,940803,3.217,4.22,0,21.485383,3.7,5,2.005302,2.005302,2.005302,2.005302,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.013284,2.205814,2.005302,2.005302,2.013284,2.205814,2.011449,2.013799,2.005302,2.005302,2.011449,2.013799,2.289225,2.071058,2.005302,2.005302,2.289225,2.071058,2.005302,2.005302,2.005302,2.005302,2.005302,2.005302,,,,,,,2.013284,2.205814,2.011449,2.013799,2.289225,2.071058,2.005302,2.005302,2.005302,2.005302,0.784462,0.842221,0.783912,0.784617,0.867245,0.801795,0.782068,0.782068,0.411087,0.411087,29.881067,27.272961,29.908331,29.873425,26.279226,29.047509,30,30,30,30,,,,,,,,,,,2580,2580,2.005302,2.005302,2.005302,2.005302,2.005302,2.005302,2.005302,2.005302,0.782068,0.782068,30,30,, +27058,0,1.003124,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.495514,0.15,4,4.012496,4.012496,4.012496,4.012496,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,,,,,,,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,1.384311,1.384311,1.384311,1.384311,1.384311,1.384311,1.384311,1.384311,0.712218,0.712218,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,4.012496,1.384311,1.384311,15,15,, +30160,0,1.007969,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.599326,0.15,4,4.031874,4.031874,4.031874,4.031874,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,,,,,,,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,1.390997,1.390997,1.390997,1.390997,1.390997,1.390997,1.390997,1.390997,0.715658,0.715658,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,4.031874,1.390997,1.390997,15,15,, +7087,0,0.49131,1,1,0,2,3,,5,8,Highland,Rd,933209,9.276,9.767,0,10.528064,1.7,4,0.589572,0.589572,0.589572,0.589572,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.882284,0.77051,0.589572,0.589572,0.882284,0.77051,0.751592,0.722086,0.589572,0.589572,0.751592,0.722086,0.83492,0.893846,0.589572,0.589572,0.83492,0.893846,0.589572,0.589572,0.589572,0.589572,0.589572,0.589572,,,,,,,0.882284,0.77051,0.751592,0.722086,0.83492,0.893846,0.589572,0.589572,0.589572,0.589572,0.353121,0.319589,0.313913,0.305061,0.338912,0.356589,0.265307,0.265307,0.14248,0.14248,33.411677,38.258545,39.221493,40.82421,35.307061,32.979495,50,50,50,50,,,,,,,,,,,3096,3096,0.589572,0.589572,0.589572,0.589572,0.589572,0.589572,0.589572,0.589572,0.265307,0.265307,50,50,, +27059,0,1.007925,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.598399,0.15,4,4.031701,4.031701,4.031701,4.031701,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,,,,,,,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,1.390937,1.390937,1.390937,1.390937,1.390937,1.390937,1.390937,1.390937,0.715627,0.715627,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,4.031701,1.390937,1.390937,15,15,, +27089,0,0.061432,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,1.3164,0.15,4,0.245728,0.245728,0.245728,0.245728,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.245729,0.245728,0.245728,0.245728,0.245729,0.245728,0.245728,0.245728,0.245728,0.245728,0.245728,0.245728,0.245728,0.245729,0.245728,0.245728,0.245728,0.245729,0.245728,0.245728,0.245728,0.245728,0.245728,0.245728,,,,,,,0.245729,0.245728,0.245728,0.245728,0.245728,0.245729,0.245728,0.245728,0.245728,0.245728,0.084776,0.084776,0.084776,0.084776,0.084776,0.084776,0.084776,0.084776,0.043617,0.043617,14.999963,14.999991,14.999993,14.999994,14.999981,14.999957,15,15,15,15,,,,,,,,,,,34400,34400,0.245728,0.245728,0.245728,0.245728,0.245728,0.245728,0.245728,0.245728,0.084776,0.084776,15,15,, +7084,0,0.425353,1,1,0,2,3,,5,8,Highland,Rd,933209,11.273,11.698,0,9.114706,1.7,4,0.510424,0.510424,0.510424,0.510424,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.755574,0.664828,0.510424,0.510424,0.755574,0.664828,0.614548,0.596907,0.510424,0.510424,0.614548,0.596907,0.703803,0.740643,0.510424,0.510424,0.703803,0.740643,0.510424,0.510424,0.510424,0.510424,0.510424,0.510424,,,,,,,0.755574,0.664828,0.614548,0.596907,0.703803,0.740643,0.510424,0.510424,0.510424,0.510424,0.303236,0.276012,0.260928,0.255636,0.287704,0.298757,0.229691,0.229691,0.123352,0.123352,33.777194,38.387659,41.528376,42.755726,36.261829,34.458125,50,50,50,50,,,,,,,,,,,3096,3096,0.510424,0.510424,0.510424,0.510424,0.510424,0.510424,0.510424,0.510424,0.229691,0.229691,50,50,, +26043,0,2.025633,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,43.406418,0.15,4,8.102531,8.102531,8.102531,8.102531,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,,,,,,,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,2.795373,2.795373,2.795373,2.795373,2.795373,2.795373,2.795373,2.795373,1.438199,1.438199,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,8.102531,2.795373,2.795373,15,15,, +26044,0,1.047395,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.444189,0.15,4,4.189582,4.189582,4.189582,4.189582,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,,,,,,,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,1.445406,1.445406,1.445406,1.445406,1.445406,1.445406,1.445406,1.445406,0.743651,0.743651,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,4.189582,1.445406,1.445406,15,15,, +6186,0,1.037858,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,18.969,20.007,0,22.239825,3.7,5,2.075717,2.075717,2.075717,2.075717,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.075736,2.147867,2.075717,2.075717,2.075736,2.147867,2.075908,2.076906,2.075717,2.075717,2.075908,2.076906,2.099818,2.07958,2.075717,2.075717,2.099818,2.07958,2.075717,2.075717,2.075717,2.075717,2.075717,2.075717,,,,,,,2.075736,2.147867,2.075908,2.076906,2.099818,2.07958,2.075717,2.075717,2.075717,2.075717,0.809535,0.831175,0.809587,0.809886,0.81676,0.810689,0.80953,0.80953,0.425522,0.425522,29.999721,28.99226,29.997241,29.982828,29.655669,29.944272,30,30,30,30,,,,,,,,,,,2580,2580,2.075717,2.075717,2.075717,2.075717,2.075717,2.075717,2.075717,2.075717,0.80953,0.80953,30,30,, +7260,0,1.494966,1,1,0,2,4,,5,8,Clyde,Rd,939905,5.464,6.959,0,32.034991,3,4,2.242449,2.242449,2.242449,2.242449,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.745035,2.424987,2.242449,2.242449,2.745035,2.424987,2.287336,2.293231,2.242449,2.242449,2.287336,2.293231,2.466196,2.774076,2.242449,2.242449,2.466196,2.774076,2.242449,2.242449,2.242449,2.242449,2.242449,2.242449,,,,,,,2.745035,2.424987,2.287336,2.293231,2.466196,2.774076,2.242449,2.242449,2.242449,2.242449,1.092604,0.99659,0.955295,0.957063,1.008953,1.101317,0.941829,0.941829,0.500814,0.500814,32.676439,36.989059,39.215036,39.114231,36.370985,32.334359,40,40,40,40,,,,,,,,,,,3096,3096,2.242449,2.242449,2.242449,2.242449,2.242449,2.242449,2.242449,2.242449,0.941829,0.941829,40,40,, +7418,0,2.167669,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,0.706,2.873,0,46.450046,5.8,6,5.202405,5.202405,5.202405,5.202405,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,5.202405,5.202413,5.202405,5.202405,5.202405,5.202413,5.202405,5.202405,5.202405,5.202405,5.202405,5.202405,5.202475,5.202405,5.202405,5.202405,5.202475,5.202405,5.202405,5.202405,5.202405,5.202405,5.202405,5.202405,,,,,,,5.202405,5.202413,5.202405,5.202405,5.202475,5.202405,5.202405,5.202405,5.202405,5.202405,1.950902,1.950904,1.950902,1.950902,1.950923,1.950902,1.950902,1.950902,1.018804,1.018804,25,24.999964,24.999999,25,24.999666,25,25,25,25,25,,,,,,,,,,,2064,2064,5.202405,5.202405,5.202405,5.202405,5.202405,5.202405,5.202405,5.202405,1.950902,1.950902,25,25,, +8000,0,0.097809,1,1,0,2,5,,5,8,Faussett,Rd,934509,7.859,7.957,0,2.095899,3.7,5,0.195617,0.195617,0.195617,0.195617,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.197122,0.195628,0.195617,0.195617,0.197122,0.195628,0.195639,0.195629,0.195617,0.195617,0.195639,0.195629,0.195709,0.196681,0.195617,0.195617,0.195709,0.196681,0.195617,0.195617,0.195617,0.195617,0.195617,0.195617,,,,,,,0.197122,0.195628,0.195639,0.195629,0.195709,0.196681,0.195617,0.195617,0.195617,0.195617,0.076742,0.076294,0.076297,0.076294,0.076318,0.07661,0.076291,0.076291,0.040102,0.040102,29.770922,29.998384,29.996674,29.998206,29.985909,29.837692,30,30,30,30,,,,,,,,,,,2580,2580,0.195617,0.195617,0.195617,0.195617,0.195617,0.195617,0.195617,0.195617,0.076291,0.076291,30,30,, +27063,0,1.112626,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.84199,0.15,4,4.450505,4.450505,4.450505,4.450505,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,,,,,,,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,1.535424,1.535424,1.535424,1.535424,1.535424,1.535424,1.535424,1.535424,0.789965,0.789965,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,4.450505,1.535424,1.535424,15,15,, +8006,0,0.490338,1,1,0,2,4,,5,8,Clyde,Rd,939905,4.974,5.464,0,10.50724,3,4,0.735507,0.735507,0.735507,0.735507,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.953832,0.795378,0.735507,0.735507,0.953832,0.795378,0.750229,0.752163,0.735507,0.735507,0.750229,0.752163,0.808894,0.936366,0.735507,0.735507,0.808894,0.936366,0.735507,0.735507,0.735507,0.735507,0.735507,0.735507,,,,,,,0.953832,0.795378,0.750229,0.752163,0.808894,0.936366,0.735507,0.735507,0.735507,0.735507,0.37441,0.326874,0.31333,0.31391,0.330929,0.36917,0.308913,0.308913,0.164263,0.164263,30.844297,36.989059,39.215036,39.114231,36.370985,31.419643,40,40,40,40,,,,,,,,,,,3096,3096,0.735507,0.735507,0.735507,0.735507,0.735507,0.735507,0.735507,0.735507,0.308913,0.308913,40,40,, +26938,0,1.026114,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.988162,0.15,4,4.104457,4.104457,4.104457,4.104457,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,,,,,,,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,1.416038,1.416038,1.416038,1.416038,1.416038,1.416038,1.416038,1.416038,0.728541,0.728541,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,4.104457,1.416038,1.416038,15,15,, +8001,0,0.675493,1,1,0,2,5,,5,8,Faussett,Rd,934509,7.184,7.859,0,14.474847,3.7,5,1.350986,1.350986,1.350986,1.350986,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.351614,1.351027,1.350986,1.350986,1.351614,1.351027,1.350999,1.350997,1.350986,1.350986,1.350999,1.350997,1.351131,1.351457,1.350986,1.350986,1.351131,1.351457,1.350986,1.350986,1.350986,1.350986,1.350986,1.350986,,,,,,,1.351614,1.351027,1.350999,1.350997,1.351131,1.351457,1.350986,1.350986,1.350986,1.350986,0.527073,0.526897,0.526888,0.526888,0.526928,0.527026,0.526884,0.526884,0.276952,0.276952,29.98606,29.999095,29.999703,29.999744,29.996774,29.98955,30,30,30,30,,,,,,,,,,,2580,2580,1.350986,1.350986,1.350986,1.350986,1.350986,1.350986,1.350986,1.350986,0.526884,0.526884,30,30,, +6492,0,1.144311,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,17.825,18.969,0,24.520952,3.7,5,2.288622,2.288622,2.288622,2.288622,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.288759,2.585583,2.288622,2.288622,2.288759,2.585583,2.289773,2.293578,2.288622,2.288622,2.289773,2.293578,2.407617,2.304786,2.288622,2.288622,2.407617,2.304786,2.288622,2.288622,2.288622,2.288622,2.288622,2.288622,,,,,,,2.288759,2.585583,2.289773,2.293578,2.407617,2.304786,2.288622,2.288622,2.288622,2.288622,0.892604,0.981651,0.892908,0.894049,0.928261,0.897412,0.892563,0.892563,0.469168,0.469168,29.998212,26.554418,29.984916,29.935183,28.51727,29.78961,30,30,30,30,,,,,,,,,,,2580,2580,2.288622,2.288622,2.288622,2.288622,2.288622,2.288622,2.288622,2.288622,0.892563,0.892563,30,30,, +7984,0,0.899315,1,1,0,2,4,,5,8,Clyde,Rd,939905,6.959,7.858,0,19.271045,3,4,1.348973,1.348973,1.348973,1.348973,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.823506,1.58833,1.348973,1.348973,1.823506,1.58833,1.414525,1.43192,1.348973,1.348973,1.414525,1.43192,1.7281,1.946088,1.348973,1.348973,1.7281,1.946088,1.348973,1.348973,1.348973,1.348973,1.348973,1.348973,,,,,,,1.823506,1.58833,1.414525,1.43192,1.7281,1.946088,1.348973,1.348973,1.348973,1.348973,0.708929,0.638376,0.586234,0.591453,0.680307,0.745703,0.566569,0.566569,0.301271,0.301271,29.590755,33.972113,38.146316,37.68292,31.224428,27.726874,40,40,40,40,,,,,,,,,,,3096,3096,1.348973,1.348973,1.348973,1.348973,1.348973,1.348973,1.348973,1.348973,0.566569,0.566569,40,40,, +7419,0,0.705885,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,0,0.706,0,15.126111,5.8,6,1.694124,1.694124,1.694124,1.694124,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,,,,,,,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,0.635297,0.635297,0.635297,0.635297,0.635297,0.635297,0.635297,0.635297,0.331766,0.331766,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,1.694124,0.635297,0.635297,25,25,, +5422,1,0.424174,2,0,0,1,2,,5,8,N US 23,,931510,17.558,17.982,0,,1.02,7,0.363578,,0.363578,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.36547,,0.363578,,0.36547,,0.365167,,0.363578,,0.365167,,0.374404,,0.363578,,0.374404,,0.363578,,0.363578,,0.363578,,,,,,,,0.36547,,0.365167,,0.374404,,0.363578,,0.363578,,0.185992,,0.185901,,0.188672,,0.185425,,0.101196,,69.637591,,69.695425,,67.975988,,70,,70,,,,,,,,,,,,15136,,0.363578,,0.363578,,0.363578,,0.363578,,0.185425,,70,,, +5698,-1,0.439099,0,2,0,1,2,,5,8,S US 23,,932002,17.517,17.955,0,,1.02,7,,0.376371,,0.376371,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.383463,,0.376371,,0.383463,,0.378038,,0.376371,,0.378038,,0.381676,,0.376371,,0.381676,,0.376371,,0.376371,,0.376371,,,,,,,,0.383463,,0.378038,,0.381676,,0.376371,,0.376371,,0.194077,,0.192449,,0.193541,,0.191949,,0.104757,,68.705332,,69.691196,,69.027054,,70,,70,,,,,,,,,,,,15136,,0.376371,,0.376371,,0.376371,,0.376371,,0.191949,,70,, +6812,1,0.211618,1,0,0,1,2,ROF,5,8,N US 23/Clyde,RAMP,931808,0,0.212,0,,2.24,5,0.317427,,0.317427,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.317435,,0.317427,,0.317435,,0.317445,,0.317427,,0.317445,,0.320328,,0.317427,,0.320328,,0.317427,,0.317427,,0.317427,,,,,,,,0.317435,,0.317445,,0.320328,,0.317427,,0.317427,,0.133322,,0.133325,,0.13419,,0.133319,,0.070892,,39.998992,,39.997718,,39.637714,,40,,40,,,,,,,,,,,,5160,,0.317427,,0.317427,,0.317427,,0.317427,,0.133319,,40,,, +6813,1,0.233717,1,0,0,1,2,RON,5,8,Clyde/N US 23,RAMP,931810,0,0.234,0,,1.09,4,0.311623,,0.311623,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.31286,,0.311623,,0.31286,,0.311842,,0.311623,,0.311842,,0.314006,,0.311623,,0.314006,,0.311623,,0.311623,,0.311623,,,,,,,,0.31286,,0.311842,,0.314006,,0.311623,,0.311623,,0.135927,,0.135622,,0.136271,,0.135556,,0.072452,,44.822038,,44.968363,,44.6585,,45,,45,,,,,,,,,,,,5160,,0.311623,,0.311623,,0.311623,,0.311623,,0.135556,,45,,, +6898,1,0.242194,1,0,0,1,2,RON,5,8,Clyde/S US 23,RAMP,932108,0,0.242,0,,1.09,4,0.322925,,0.322925,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.331244,,0.322925,,0.331244,,0.323093,,0.322925,,0.323093,,0.323316,,0.322925,,0.323316,,0.322925,,0.322925,,0.322925,,,,,,,,0.331244,,0.323093,,0.323316,,0.322925,,0.322925,,0.142968,,0.140523,,0.14059,,0.140473,,0.07508,,43.869893,,44.976672,,44.945583,,45,,45,,,,,,,,,,,,5160,,0.322925,,0.322925,,0.322925,,0.322925,,0.140473,,45,,, +7979,0,0.156188,1,1,0,2,4,,5,8,Clyde,Rd,939905,7.883,8.04,0,3.346889,3,4,0.234282,0.234282,0.234282,0.234282,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.335564,0.245773,0.234282,0.234282,0.335564,0.245773,0.242694,0.237153,0.234282,0.234282,0.242694,0.237153,0.321586,0.339632,0.234282,0.234282,0.321586,0.339632,0.234282,0.234282,0.234282,0.234282,0.234282,0.234282,,,,,,,0.335564,0.245773,0.242694,0.237153,0.321586,0.339632,0.234282,0.234282,0.234282,0.234282,0.128783,0.101846,0.100922,0.09926,0.12459,0.130003,0.098399,0.098399,0.052323,0.052323,27.927003,38.129905,38.613661,39.515851,29.14081,27.592517,40,40,40,40,,,,,,,,,,,3096,3096,0.234282,0.234282,0.234282,0.234282,0.234282,0.234282,0.234282,0.234282,0.098399,0.098399,40,40,, +6899,1,0.228379,1,0,0,1,2,ROF,5,8,S US 23/Clyde,RAMP,932109,0,0.228,0,,2.24,5,0.342569,,0.342569,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.344257,,0.342569,,0.344257,,0.342709,,0.342569,,0.342709,,0.34375,,0.342569,,0.34375,,0.342569,,0.342569,,0.342569,,,,,,,,0.344257,,0.342709,,0.34375,,0.342569,,0.342569,,0.144385,,0.143921,,0.144233,,0.143879,,0.076507,,39.803804,,39.983599,,39.862536,,40,,40,,,,,,,,,,,,5160,,0.342569,,0.342569,,0.342569,,0.342569,,0.143879,,40,,, +7982,0,0.025742,1,1,0,2,4,,5,8,Clyde,Rd,939905,7.858,7.883,0,0.551622,3,4,0.038614,0.038614,0.038614,0.038614,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.130671,0.047236,0.038614,0.038614,0.130671,0.047236,0.043371,0.042364,0.038614,0.038614,0.043371,0.042364,0.062633,0.100658,0.038614,0.038614,0.062633,0.100658,0.038614,0.038614,0.038614,0.038614,0.038614,0.038614,,,,,,,0.130671,0.047236,0.043371,0.042364,0.062633,0.100658,0.038614,0.038614,0.038614,0.038614,0.043835,0.018804,0.017645,0.017343,0.023423,0.034831,0.016218,0.016218,0.008624,0.008624,11.820074,32.698653,35.612415,36.458983,24.660329,15.344485,40,40,40,40,,,,,,,,,,,3096,3096,0.038614,0.038614,0.038614,0.038614,0.038614,0.038614,0.038614,0.038614,0.016218,0.016218,40,40,, +7967,0,0.023938,1,1,0,2,5,,5,8,Clyde,Rd,939905,8.04,8.064,0,0.512964,3.7,5,0.047877,0.047877,0.047877,0.047877,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.053737,0.052488,0.047877,0.047877,0.053737,0.052488,0.0481,0.04804,0.047877,0.047877,0.0481,0.04804,0.058236,0.054252,0.047877,0.047877,0.058236,0.054252,0.047877,0.047877,0.047877,0.047877,0.047877,0.047877,,,,,,,0.053737,0.052488,0.0481,0.04804,0.058236,0.054252,0.047877,0.047877,0.047877,0.047877,0.02043,0.020055,0.018739,0.018721,0.02178,0.020584,0.018672,0.018672,0.009815,0.009815,26.728319,27.364263,29.860842,29.897968,24.663283,26.474577,30,30,30,30,,,,,,,,,,,2580,2580,0.047877,0.047877,0.047877,0.047877,0.047877,0.047877,0.047877,0.047877,0.018672,0.018672,30,30,, +5991,0,1.035628,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,20.007,21.042,0,22.192023,3.7,5,2.071255,2.071255,2.071255,2.071255,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.071258,2.071356,2.071255,2.071255,2.071258,2.071356,2.071261,2.071263,2.071255,2.071255,2.071261,2.071263,2.07138,2.071276,2.071255,2.071255,2.07138,2.071276,2.071255,2.071255,2.071255,2.071255,2.071255,2.071255,,,,,,,2.071258,2.071356,2.071261,2.071263,2.07138,2.071276,2.071255,2.071255,2.071255,2.071255,0.80779,0.80782,0.807791,0.807792,0.807827,0.807796,0.80779,0.80779,0.424607,0.424607,29.999966,29.998547,29.999916,29.999894,29.9982,29.999695,30,30,30,30,,,,,,,,,,,2580,2580,2.071255,2.071255,2.071255,2.071255,2.071255,2.071255,2.071255,2.071255,0.80779,0.80779,30,30,, +7994,0,0.912833,1,1,0,2,5,,5,8,Faussett,Rd,934509,8.161,9.074,0,19.560707,3.7,5,1.825666,1.825666,1.825666,1.825666,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.836345,1.825703,1.825666,1.825666,1.836345,1.825703,1.825785,1.825731,1.825666,1.825666,1.825785,1.825731,1.826122,1.832804,1.825666,1.825666,1.826122,1.832804,1.825666,1.825666,1.825666,1.825666,1.825666,1.825666,,,,,,,1.836345,1.825703,1.825785,1.825731,1.826122,1.832804,1.825666,1.825666,1.825666,1.825666,0.715213,0.712021,0.712046,0.712029,0.712147,0.714151,0.71201,0.71201,0.374262,0.374262,29.825541,29.999389,29.998036,29.998929,29.992501,29.883159,30,30,30,30,,,,,,,,,,,2580,2580,1.825666,1.825666,1.825666,1.825666,1.825666,1.825666,1.825666,1.825666,0.71201,0.71201,30,30,, +26939,0,0.48555,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.404637,0.15,4,1.942199,1.942199,1.942199,1.942199,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,,,,,,,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,0.670059,0.670059,0.670059,0.670059,0.670059,0.670059,0.670059,0.670059,0.34474,0.34474,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,1.942199,0.670059,0.670059,15,15,, +26940,0,1.083529,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.218476,0.15,4,4.334116,4.334116,4.334116,4.334116,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,,,,,,,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,1.49527,1.49527,1.49527,1.49527,1.49527,1.49527,1.49527,1.49527,0.769306,0.769306,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,4.334116,1.49527,1.49527,15,15,, +27062,0,0.560297,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.006358,0.15,4,2.241187,2.241187,2.241187,2.241187,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,,,,,,,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,0.773209,0.773209,0.773209,0.773209,0.773209,0.773209,0.773209,0.773209,0.397811,0.397811,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,2.241187,0.773209,0.773209,15,15,, +7998,0,0.203954,1,1,0,2,5,,5,8,Faussett,Rd,934509,7.957,8.161,0,4.370449,3.7,5,0.407909,0.407909,0.407909,0.407909,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.411075,0.407928,0.407909,0.407909,0.411075,0.407928,0.407954,0.407935,0.407909,0.407909,0.407954,0.407935,0.408106,0.410218,0.407909,0.407909,0.408106,0.410218,0.407909,0.407909,0.407909,0.407909,0.407909,0.407909,,,,,,,0.411075,0.407928,0.407954,0.407935,0.408106,0.410218,0.407909,0.407909,0.407909,0.407909,0.160034,0.15909,0.159098,0.159092,0.159144,0.159777,0.159084,0.159084,0.083621,0.083621,29.768935,29.998588,29.996634,29.998078,29.985474,29.831145,30,30,30,30,,,,,,,,,,,2580,2580,0.407909,0.407909,0.407909,0.407909,0.407909,0.407909,0.407909,0.407909,0.159084,0.159084,30,30,, +7991,0,0.223316,1,1,0,2,7,,5,8,Faussett,Rd,934509,9.074,9.297,0,4.785336,5.8,6,0.535958,0.535958,0.535958,0.535958,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.535958,0.535965,0.535958,0.535958,0.535958,0.535965,0.535958,0.535959,0.535958,0.535958,0.535958,0.535959,0.535958,0.535966,0.535958,0.535958,0.535958,0.535966,0.535958,0.535958,0.535958,0.535958,0.535958,0.535958,,,,,,,0.535958,0.535965,0.535958,0.535959,0.535958,0.535966,0.535958,0.535958,0.535958,0.535958,0.200984,0.200986,0.200984,0.200985,0.200984,0.200987,0.200984,0.200984,0.104958,0.104958,25,24.999647,24.999999,24.999921,24.99999,24.99961,25,25,25,25,,,,,,,,,,,2064,2064,0.535958,0.535958,0.535958,0.535958,0.535958,0.535958,0.535958,0.535958,0.200984,0.200984,25,25,, +7400,0,1.092803,1,1,0,2,4,,5,8,Kensington,Rd,942603,1.964,3.056,0,23.417197,3,4,1.639204,1.639204,1.639204,1.639204,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.893528,2.360266,1.639204,1.639204,1.893528,2.360266,1.672479,1.68428,1.639204,1.639204,1.672479,1.68428,2.427349,2.149001,1.639204,1.639204,2.427349,2.149001,1.639204,1.639204,1.639204,1.639204,1.639204,1.639204,,,,,,,1.893528,2.360266,1.672479,1.68428,2.427349,2.149001,1.639204,1.639204,1.639204,1.639204,0.764763,0.904784,0.698448,0.701989,0.924909,0.841405,0.688466,0.688466,0.366089,0.366089,34.627505,27.779981,39.204179,38.929479,27.01225,30.510993,40,40,40,40,,,,,,,,,,,3096,3096,1.639204,1.639204,1.639204,1.639204,1.639204,1.639204,1.639204,1.639204,0.688466,0.688466,40,40,, +7423,0,1.45014,1,1,0,2,7,,4,8,Culver,Rd,4105156,1.03,2.48,0,31.074439,6.55,4.5,3.480337,3.480337,3.480337,3.480337,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.482164,3.480649,3.480337,3.480337,3.482164,3.480649,3.480337,3.480337,3.480337,3.480337,3.480337,3.480337,3.508962,3.494793,3.480337,3.480337,3.508962,3.494793,3.480337,3.480337,3.480337,3.480337,3.480337,3.480337,,,,,,,3.482164,3.480649,3.480337,3.480337,3.508962,3.494793,3.480337,3.480337,3.480337,3.480337,1.305675,1.30522,1.305126,1.305126,1.313714,1.309463,1.305126,1.305126,0.681566,0.681566,24.986881,24.997763,25,25,24.796062,24.896593,25,25,25,25,,,,,,,,,,,2064,2064,3.480337,3.480337,3.480337,3.480337,3.480337,3.480337,3.480337,3.480337,1.305126,1.305126,25,25,, +7487,1,0.076022,1,0,0,1,1,ROF,5,8,W I 96/S Kensington,RAMP,935304,0.128,0.204,0,,2.24,5,0.114033,,0.114033,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.114035,,0.114033,,0.114035,,0.114033,,0.114033,,0.114033,,0.114033,,0.114033,,0.114033,,0.114033,,0.114033,,0.114033,,,,,,,,0.114035,,0.114033,,0.114033,,0.114033,,0.114033,,0.047895,,0.047894,,0.047894,,0.047894,,0.025467,,39.999187,,40,,39.99994,,40,,40,,,,,,,,,,,,5160,,0.114033,,0.114033,,0.114033,,0.114033,,0.047894,,40,,, +7494,1,0.213814,1,0,0,1,1,RON,5,8,Kensington/W I 96,RAMP,935303,0,0.214,0,,1.09,4,0.285086,,0.285086,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.285236,,0.285086,,0.285236,,0.285204,,0.285086,,0.285204,,0.285579,,0.285086,,0.285579,,0.285086,,0.285086,,0.285086,,,,,,,,0.285236,,0.285204,,0.285579,,0.285086,,0.285086,,0.124057,,0.124048,,0.12416,,0.124012,,0.066282,,44.976324,,44.981239,,44.922281,,45,,45,,,,,,,,,,,,5160,,0.285086,,0.285086,,0.285086,,0.285086,,0.124012,,45,,, +7510,-1,1.05074,0,3,0,1,1,,5,8,W I 96,,935207,26.432,27.482,0,,1.02,7,,0.900634,,0.900634,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.916439,,0.900634,,0.916439,,0.905955,,0.900634,,0.905955,,1.219376,,0.900634,,1.219376,,0.900634,,0.900634,,0.900634,,,,,,,,0.916439,,0.905955,,1.219376,,0.900634,,0.900634,,0.464065,,0.46092,,0.554946,,0.459323,,0.250676,,68.792759,,69.588838,,51.702168,,70,,70,,,,,,,,,,,,22704,,0.900634,,0.900634,,0.900634,,0.900634,,0.459323,,70,, +7688,1,1.391265,3,0,0,1,1,,5,8,E I 96,,935105,25.115,26.506,0,,1.02,7,1.192513,,1.192513,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.658431,,1.192513,,1.658431,,1.201134,,1.192513,,1.201134,,1.229469,,1.192513,,1.229469,,1.192513,,1.192513,,1.192513,,,,,,,,1.658431,,1.201134,,1.229469,,1.192513,,1.192513,,0.747957,,0.610768,,0.619268,,0.608181,,0.331916,,50.334261,,69.49758,,67.895872,,70,,70,,,,,,,,,,,,22704,,1.192513,,1.192513,,1.192513,,1.192513,,0.608181,,70,,, +8123,0,0.839217,1,1,0,2,4,,5,8,Stobart,Rd,943101,0,0.839,0,17.983232,3,4,1.258826,1.258826,1.258826,1.258826,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.734663,1.93564,1.258826,1.258826,1.734663,1.93564,1.290513,1.303327,1.258826,1.258826,1.290513,1.303327,2.031243,1.977811,1.258826,1.258826,2.031243,1.977811,1.258826,1.258826,1.258826,1.258826,1.258826,1.258826,,,,,,,1.734663,1.93564,1.290513,1.303327,2.031243,1.977811,1.258826,1.258826,1.258826,1.258826,0.671458,0.731751,0.538213,0.542057,0.760432,0.744402,0.528707,0.528707,0.281138,0.281138,29.027573,26.013638,39.017862,38.634232,24.789273,25.458983,40,40,40,40,,,,,,,,,,,3096,3096,1.258826,1.258826,1.258826,1.258826,1.258826,1.258826,1.258826,1.258826,0.528707,0.528707,40,40,, +8141,0,0.071697,1,1,0,2,4,,5,8,Kensington,Rd,942603,1.892,1.964,0,1.536375,3,4,0.107546,0.107546,0.107546,0.107546,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.152099,0.238909,0.107546,0.107546,0.152099,0.238909,0.11545,0.117959,0.107546,0.107546,0.11545,0.117959,0.246244,0.201968,0.107546,0.107546,0.246244,0.201968,0.107546,0.107546,0.107546,0.107546,0.107546,0.107546,,,,,,,0.152099,0.238909,0.11545,0.117959,0.246244,0.201968,0.107546,0.107546,0.107546,0.107546,0.058535,0.084578,0.04754,0.048293,0.086779,0.073496,0.045169,0.045169,0.024019,0.024019,28.283192,18.00624,37.261716,36.469061,17.469869,21.299698,40,40,40,40,,,,,,,,,,,3096,3096,0.107546,0.107546,0.107546,0.107546,0.107546,0.107546,0.107546,0.107546,0.045169,0.045169,40,40,, +8150,0,0.105061,2,2,0,2,3,,5,8,Kensington,Rd,942603,1.516,1.621,0,2.251313,1.7,4,0.126074,0.126074,0.126074,0.126074,50,50,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.126407,0.126621,0.126074,0.126074,0.126407,0.126621,0.126366,0.126076,0.126074,0.126074,0.126366,0.126076,0.127709,0.126108,0.126074,0.126074,0.127709,0.126108,0.126074,0.126074,0.126074,0.126074,0.126074,0.126074,,,,,,,0.126407,0.126621,0.126366,0.126076,0.127709,0.126108,0.126074,0.126074,0.126074,0.126074,0.056833,0.056897,0.056821,0.056734,0.057224,0.056743,0.056733,0.056733,0.030468,0.030468,49.86793,49.78397,49.884385,49.999157,49.359744,49.98649,50,50,50,50,,,,,,,,,,,6192,6192,0.126074,0.126074,0.126074,0.126074,0.126074,0.126074,0.126074,0.126074,0.056733,0.056733,50,50,, +8151,0,0.627236,1,1,0,2,5,,4,8,Kensington,Rd,942603,0.538,1.165,0,13.440781,5.8,4.5,1.393859,1.393859,1.393859,1.393859,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.396068,1.400429,1.393859,1.393859,1.396068,1.400429,1.394486,1.394654,1.393859,1.393859,1.394486,1.394654,1.401418,1.396586,1.393859,1.393859,1.401418,1.396586,1.393859,1.393859,1.393859,1.393859,1.393859,1.393859,,,,,,,1.396068,1.400429,1.394486,1.394654,1.401418,1.396586,1.393859,1.393859,1.393859,1.393859,0.531723,0.533031,0.531248,0.531299,0.533328,0.531878,0.53106,0.53106,0.278075,0.278075,26.957276,26.873333,26.987853,26.984613,26.854365,26.947265,27,27,27,27,,,,,,,,,,,2580,2580,1.393859,1.393859,1.393859,1.393859,1.393859,1.393859,1.393859,1.393859,0.53106,0.53106,27,27,, +8157,0,0.553962,1,1,0,2,5,,4,8,Silver Lake,Rd,942310,0,0.554,0,11.870606,5.8,4.5,1.231026,1.231026,1.231026,1.231026,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.310466,1.233677,1.231026,1.231026,1.310466,1.233677,1.232854,1.23214,1.231026,1.231026,1.232854,1.23214,1.246105,1.31722,1.231026,1.231026,1.246105,1.31722,1.231026,1.231026,1.231026,1.231026,1.231026,1.231026,,,,,,,1.310466,1.233677,1.232854,1.23214,1.246105,1.31722,1.231026,1.231026,1.231026,1.231026,0.492853,0.469816,0.469569,0.469355,0.473545,0.494879,0.469021,0.469021,0.24559,0.24559,25.363274,26.941975,26.959959,26.975587,26.673273,25.233209,27,27,27,27,,,,,,,,,,,2580,2580,1.231026,1.231026,1.231026,1.231026,1.231026,1.231026,1.231026,1.231026,0.469021,0.469021,27,27,, +19822,0,0.967407,1,1,0,2,4,,4,8,Grand River,Ave,4104142,0,0.967,0,20.730145,4.5,4.5,1.527484,1.527484,1.527484,1.527484,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.611914,1.5276,1.527484,1.527484,1.611914,1.5276,1.527484,1.527487,1.527484,1.527484,1.527484,1.527487,1.527484,1.653992,1.527484,1.527484,1.527484,1.653992,1.527484,1.527484,1.527484,1.527484,1.527484,1.527484,,,,,,,1.611914,1.5276,1.527484,1.527487,1.527484,1.653992,1.527484,1.527484,1.527484,1.527484,0.657707,0.632413,0.632379,0.632379,0.632379,0.670331,0.632379,0.632379,0.335537,0.335537,36.009623,37.997127,38,37.999942,38,35.093515,38,38,38,38,,,,,,,,,,,3096,3096,1.527484,1.527484,1.527484,1.527484,1.527484,1.527484,1.527484,1.527484,0.632379,0.632379,38,38,, +19875,1,0.043399,1,0,0,1,1,ROF,5,8,W I 96/S Kensington,RAMP,4104044,0,0.043,0,,2.24,5,0.065098,,0.065098,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.065141,,0.065098,,0.065141,,0.065101,,0.065098,,0.065101,,0.065663,,0.065098,,0.065663,,0.065098,,0.065098,,0.065098,,,,,,,,0.065141,,0.065101,,0.065663,,0.065098,,0.065098,,0.027354,,0.027342,,0.027511,,0.027341,,0.014539,,39.973378,,39.998025,,39.655962,,40,,40,,,,,,,,,,,,5160,,0.065098,,0.065098,,0.065098,,0.065098,,0.027341,,40,,, +19911,0,0.565097,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,1.086,1.651,0,12.109221,4.5,4.5,0.892258,0.892258,0.892258,0.892258,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.892715,0.915771,0.892258,0.892258,0.892715,0.915771,0.892364,0.892393,0.892258,0.892258,0.892364,0.892393,0.910676,0.89465,0.892258,0.892258,0.910676,0.89465,0.892258,0.892258,0.892258,0.892258,0.892258,0.892258,,,,,,,0.892715,0.915771,0.892364,0.892393,0.910676,0.89465,0.892258,0.892258,0.892258,0.892258,0.369532,0.376449,0.369427,0.369435,0.37492,0.370113,0.369395,0.369395,0.195999,0.195999,37.980556,37.024352,37.995497,37.99425,37.231492,37.8984,38,38,38,38,,,,,,,,,,,3096,3096,0.892258,0.892258,0.892258,0.892258,0.892258,0.892258,0.892258,0.892258,0.369395,0.369395,38,38,, +25939,0,1.068658,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.899804,0.15,4,4.27463,4.27463,4.27463,4.27463,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,,,,,,,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,1.474747,1.474747,1.474747,1.474747,1.474747,1.474747,1.474747,1.474747,0.758747,0.758747,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,4.27463,1.474747,1.474747,15,15,, +26139,0,2.028086,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,43.458995,0.15,4,8.112346,8.112346,8.112346,8.112346,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,,,,,,,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,2.798759,2.798759,2.798759,2.798759,2.798759,2.798759,2.798759,2.798759,1.439941,1.439941,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,8.112346,2.798759,2.798759,15,15,, +26997,0,0.793853,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,17.011143,0.15,4,3.175413,3.175413,3.175413,3.175413,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.175413,3.175414,3.175413,3.175413,3.175413,3.175414,3.175414,3.175414,3.175413,3.175413,3.175414,3.175414,3.175414,3.175414,3.175413,3.175413,3.175414,3.175414,3.175413,3.175413,3.175413,3.175413,3.175413,3.175413,,,,,,,3.175413,3.175414,3.175414,3.175414,3.175414,3.175414,3.175413,3.175413,3.175413,3.175413,1.095518,1.095518,1.095518,1.095518,1.095518,1.095518,1.095518,1.095518,0.563636,0.563636,14.999999,14.999999,14.999999,14.999999,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,3.175413,3.175413,3.175413,3.175413,3.175413,3.175413,3.175413,3.175413,1.095518,1.095518,15,15,, +27064,0,1.241282,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.59891,0.15,4,4.96513,4.96513,4.96513,4.96513,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,,,,,,,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,1.71297,1.71297,1.71297,1.71297,1.71297,1.71297,1.71297,1.71297,0.881311,0.881311,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,4.96513,1.71297,1.71297,15,15,, +27065,0,1.021834,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.896453,0.15,4,4.087338,4.087338,4.087338,4.087338,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,,,,,,,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,1.410132,1.410132,1.410132,1.410132,1.410132,1.410132,1.410132,1.410132,0.725502,0.725502,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,4.087338,1.410132,1.410132,15,15,, +27067,0,1.113193,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,23.854139,0.15,4,4.452773,4.452773,4.452773,4.452773,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,,,,,,,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,1.536207,1.536207,1.536207,1.536207,1.536207,1.536207,1.536207,1.536207,0.790367,0.790367,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,4.452773,1.536207,1.536207,15,15,, +27075,0,0.495782,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.623909,0.15,4,1.98313,1.98313,1.98313,1.98313,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,,,,,,,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,0.68418,0.68418,0.68418,0.68418,0.68418,0.68418,0.68418,0.68418,0.352006,0.352006,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,1.98313,0.68418,0.68418,15,15,, +27080,0,1.034486,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.167561,0.15,4,4.137945,4.137945,4.137945,4.137945,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,,,,,,,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,1.427591,1.427591,1.427591,1.427591,1.427591,1.427591,1.427591,1.427591,0.734485,0.734485,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,4.137945,1.427591,1.427591,15,15,, +29476,0,0.696521,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.92546,0.15,4,2.786086,2.786086,2.786086,2.786086,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,,,,,,,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,0.9612,0.9612,0.9612,0.9612,0.9612,0.9612,0.9612,0.9612,0.49453,0.49453,15,14.999999,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,2.786086,0.9612,0.9612,15,15,, +30228,0,1.84991,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,39.640919,0.15,4,7.399638,7.399638,7.399638,7.399638,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,,,,,,,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,2.552875,2.552875,2.552875,2.552875,2.552875,2.552875,2.552875,2.552875,1.313436,1.313436,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,7.399638,2.552875,2.552875,15,15,, +6391,0,1.024511,1,1,0,2,5,GRV,5,8,Silver Lake,Rd,931608,1.845,2.869,0,21.953807,5.55,5,3.073533,3.073533,3.073533,3.073533,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.073568,3.073533,3.073533,3.073533,3.073568,3.073533,3.073533,3.073533,3.073533,3.073533,3.073533,3.073533,3.073533,3.07357,3.073533,3.073533,3.073533,3.07357,3.073533,3.073533,3.073533,3.073533,3.073533,3.073533,,,,,,,3.073568,3.073533,3.073533,3.073533,3.073533,3.07357,3.073533,3.073533,3.073533,3.073533,1.106482,1.106472,1.106472,1.106472,1.106472,1.106483,1.106472,1.106472,0.573726,0.573726,19.999775,19.999999,19.999999,19.999999,19.999997,19.999759,20,20,20,20,,,,,,,,,,,2236,2236,3.073533,3.073533,3.073533,3.073533,3.073533,3.073533,3.073533,3.073533,1.106472,1.106472,20,20,, +7125,0,0.812156,1,1,1,2,3,,4,8,Grand River,Ave,932910,25.003,25.815,0,17.403342,3.7,5,1.218234,1.218234,1.218234,1.218234,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,1.328496,1.27063,1.218234,1.218234,1.328496,1.27063,1.227812,1.223288,1.218234,1.218234,1.227812,1.223288,1.284083,1.392458,1.218234,1.218234,1.284083,1.392458,1.218234,1.218234,1.218234,1.218234,1.218234,1.218234,,,,,,,1.328496,1.27063,1.227812,1.223288,1.284083,1.392458,1.218234,1.218234,1.218234,1.218234,0.544737,0.527377,0.514532,0.513175,0.531413,0.563926,0.511658,0.511658,0.272072,0.272072,36.680088,38.350563,39.687949,39.834726,37.948768,34.995202,40,40,40,40,,,,,,,,,,,4162,4162,1.218234,1.218234,1.218234,1.218234,1.218234,1.218234,1.218234,1.218234,0.511658,0.511658,40,40,, +37044,0,2.236703,1,1,0,2,5,,5,8,Oak Grove,Rd,4104402,3.085,5.321,0,47.929348,3.7,5,4.473406,4.473406,4.473406,4.473406,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.47392,4.573629,4.473406,4.473406,4.47392,4.573629,4.473936,4.474166,4.473406,4.473406,4.473936,4.474166,4.522538,4.476824,4.473406,4.473406,4.522538,4.476824,4.473406,4.473406,4.473406,4.473406,4.473406,4.473406,,,,,,,4.47392,4.573629,4.473936,4.474166,4.522538,4.476824,4.473406,4.473406,4.473406,4.473406,1.744783,1.774695,1.744787,1.744856,1.759368,1.745654,1.744628,1.744628,0.917048,0.917048,29.996552,29.342601,29.996444,29.9949,29.674083,29.977092,30,30,30,30,,,,,,,,,,,2580,2580,4.473406,4.473406,4.473406,4.473406,4.473406,4.473406,4.473406,4.473406,1.744628,1.744628,30,30,, +7527,-1,0.09545,0,2,0,1,1,FCD,4,8,W I 96 CD,,935207,23.528,23.622,0,,0.8,7.5,,0.088108,,0.088108,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.088182,,0.088108,,0.088182,,0.088147,,0.088108,,0.088147,,0.090932,,0.088108,,0.090932,,0.088108,,0.088108,,0.088108,,,,,,,,0.088182,,0.088147,,0.090932,,0.088108,,0.088108,,0.043636,,0.043625,,0.044461,,0.043613,,0.023716,,64.945359,,64.9712,,62.98153,,65,,65,,,,,,,,,,,,14448,,0.088108,,0.088108,,0.088108,,0.088108,,0.043613,,65,, +7690,1,0.07616,2,0,0,1,1,FCD,4,8,E I 96 CD,,935105,23.454,23.53,0,,0.8,7.5,0.070301,,0.070301,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.071328,,0.070301,,0.071328,,0.070313,,0.070301,,0.070313,,0.070384,,0.070301,,0.070384,,0.070301,,0.070301,,0.070301,,,,,,,,0.071328,,0.070313,,0.070384,,0.070301,,0.070301,,0.035107,,0.034803,,0.034824,,0.034799,,0.018923,,64.064494,,64.989254,,64.923424,,65,,65,,,,,,,,,,,,14448,,0.070301,,0.070301,,0.070301,,0.070301,,0.034799,,65,,, +25131,0,0.918602,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.684319,0.15,4,3.674406,3.674406,3.674406,3.674406,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,,,,,,,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,1.26767,1.26767,1.26767,1.26767,1.26767,1.26767,1.26767,1.26767,0.652207,0.652207,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,3.674406,1.26767,1.26767,15,15,, +26140,0,1.463301,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,31.356444,0.15,4,5.853203,5.853203,5.853203,5.853203,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.853204,5.853203,5.853203,5.853203,5.853204,5.853203,5.853204,5.853204,5.853203,5.853203,5.853204,5.853204,5.853205,5.853206,5.853203,5.853203,5.853205,5.853206,5.853203,5.853203,5.853203,5.853203,5.853203,5.853203,,,,,,,5.853204,5.853203,5.853204,5.853204,5.853205,5.853206,5.853203,5.853203,5.853203,5.853203,2.019355,2.019355,2.019355,2.019355,2.019356,2.019356,2.019355,2.019355,1.038944,1.038944,14.999997,14.999998,14.999997,14.999998,14.999993,14.999991,15,15,15,15,,,,,,,,,,,34400,34400,5.853203,5.853203,5.853203,5.853203,5.853203,5.853203,5.853203,5.853203,2.019355,2.019355,15,15,, +26727,0,0.913949,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,19.584623,0.15,4,3.655796,3.655796,3.655796,3.655796,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,,,,,,,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,1.26125,1.26125,1.26125,1.26125,1.26125,1.26125,1.26125,1.26125,0.648904,0.648904,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,3.655796,1.26125,1.26125,15,15,, +5509,0,0.715513,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,0.821,1.537,0,15.332428,3.7,5,1.431027,1.431027,1.431027,1.431027,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.441604,1.440609,1.431027,1.431027,1.441604,1.440609,1.43206,1.43234,1.431027,1.431027,1.43206,1.43234,1.463454,1.459948,1.431027,1.431027,1.463454,1.459948,1.431027,1.431027,1.431027,1.431027,1.431027,1.431027,,,,,,,1.441604,1.440609,1.43206,1.43234,1.463454,1.459948,1.431027,1.431027,1.431027,1.431027,0.561274,0.560975,0.55841,0.558494,0.567829,0.566777,0.5581,0.5581,0.29336,0.29336,29.779875,29.800449,29.978351,29.972492,29.335256,29.405702,30,30,30,30,,,,,,,,,,,2580,2580,1.431027,1.431027,1.431027,1.431027,1.431027,1.431027,1.431027,1.431027,0.5581,0.5581,30,30,, +26728,0,1.99525,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,42.755352,0.15,4,7.980999,7.980999,7.980999,7.980999,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,7.981,7.980999,7.980999,7.980999,7.981,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,,,,,,,7.980999,7.980999,7.980999,7.980999,7.981,7.980999,7.980999,7.980999,7.980999,7.980999,2.753445,2.753445,2.753445,2.753445,2.753445,2.753445,2.753445,2.753445,1.416627,1.416627,15,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,7.980999,2.753445,2.753445,15,15,, +6895,0,0.234375,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,1.537,1.771,0,5.022331,3.7,5,0.468751,0.468751,0.468751,0.468751,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.471657,0.471746,0.468751,0.468751,0.471657,0.471746,0.469048,0.469118,0.468751,0.468751,0.469048,0.469118,0.478209,0.477623,0.468751,0.468751,0.478209,0.477623,0.468751,0.468751,0.468751,0.468751,0.468751,0.468751,,,,,,,0.471657,0.471746,0.469048,0.469118,0.478209,0.477623,0.468751,0.468751,0.468751,0.468751,0.183685,0.183711,0.182902,0.182923,0.18565,0.185475,0.182813,0.182813,0.096094,0.096094,29.815126,29.809517,29.98101,29.976548,29.406648,29.442711,30,30,30,30,,,,,,,,,,,2580,2580,0.468751,0.468751,0.468751,0.468751,0.468751,0.468751,0.468751,0.468751,0.182813,0.182813,30,30,, +6735,0,0.074114,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,1.771,1.845,0,1.588161,3.7,5,0.148228,0.148228,0.148228,0.148228,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.148232,0.148229,0.148228,0.148228,0.148232,0.148229,0.148229,0.148229,0.148228,0.148228,0.148229,0.148229,0.14823,0.148236,0.148228,0.148228,0.14823,0.148236,0.148228,0.148228,0.148228,0.148228,0.148228,0.148228,,,,,,,0.148232,0.148229,0.148229,0.148229,0.14823,0.148236,0.148228,0.148228,0.148228,0.148228,0.05781,0.057809,0.057809,0.057809,0.05781,0.057811,0.057809,0.057809,0.030387,0.030387,29.999329,29.999901,29.999962,29.999951,29.999582,29.998554,30,30,30,30,,,,,,,,,,,2580,2580,0.148228,0.148228,0.148228,0.148228,0.148228,0.148228,0.148228,0.148228,0.057809,0.057809,30,30,, +7126,0,0.845456,2,2,1,2,3,,4,8,Grand River,Ave,932910,24.158,25.003,0,18.116911,3.7,5,1.268184,1.268184,1.268184,1.268184,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,1.269948,1.269518,1.268184,1.268184,1.269948,1.269518,1.268509,1.268394,1.268184,1.268184,1.268509,1.268394,1.270481,1.27299,1.268184,1.268184,1.270481,1.27299,1.268184,1.268184,1.268184,1.268184,1.268184,1.268184,,,,,,,1.269948,1.269518,1.268509,1.268394,1.270481,1.27299,1.268184,1.268184,1.268184,1.268184,0.533166,0.533037,0.532735,0.5327,0.533326,0.534079,0.532637,0.532637,0.283228,0.283228,39.944427,39.957973,39.989758,39.993364,39.927663,39.848982,40,40,40,40,,,,,,,,,,,7946,7946,1.268184,1.268184,1.268184,1.268184,1.268184,1.268184,1.268184,1.268184,0.532637,0.532637,40,40,, +27000,0,0.256977,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,5.506645,0.15,4,1.027907,1.027907,1.027907,1.027907,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,,,,,,,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,0.354628,0.354628,0.354628,0.354628,0.354628,0.354628,0.354628,0.354628,0.182454,0.182454,14.999999,14.999999,15,15,14.999997,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,1.027907,0.354628,0.354628,15,15,, +5428,1,0.278585,1,0,0,1,1,RFS,4,8,N US 23/W I 96,RAMP,931709,0,0.279,0,,0.22,6,0.371447,,0.371447,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.375107,,0.371447,,0.375107,,0.372148,,0.371447,,0.372148,,0.437224,,0.371447,,0.437224,,0.371447,,0.371447,,0.371447,,,,,,,,0.375107,,0.372148,,0.437224,,0.371447,,0.371447,,0.162677,,0.16179,,0.181312,,0.161579,,0.086361,,44.560927,,44.915175,,38.230064,,45,,45,,,,,,,,,,,,5160,,0.371447,,0.371447,,0.371447,,0.371447,,0.161579,,45,,, +5429,1,0.502283,1,0,0,1,1,RFF,4,8,W I 96/N US 23,RAMP,931801,0,0.502,0,,0.8,7.5,0.463646,,0.463646,,65,,21000,,4767,,10500,,6775,,7224,,7216,,0.463915,,0.463646,,0.463915,,0.463871,,0.463646,,0.463871,,0.472947,,0.463646,,0.472947,,0.463646,,0.463646,,0.463646,,,,,,,,0.463915,,0.463871,,0.472947,,0.463646,,0.463646,,0.229585,,0.229572,,0.232295,,0.229505,,0.124798,,64.962353,,64.968471,,63.721758,,65,,65,,,,,,,,,,,,7224,,0.463646,,0.463646,,0.463646,,0.463646,,0.229505,,65,,, +6390,1,0.452604,2,0,0,1,2,,4,8,N US 23,,931510,6.75,7.202,0,,0.8,7.5,0.387946,,0.387946,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.388015,,0.387946,,0.388015,,0.38795,,0.387946,,0.38795,,0.388549,,0.387946,,0.388549,,0.387946,,0.387946,,0.387946,,,,,,,,0.388015,,0.38795,,0.388549,,0.387946,,0.387946,,0.197873,,0.197854,,0.198033,,0.197853,,0.107978,,69.987681,,69.999303,,69.891456,,70,,70,,,,,,,,,,,,15136,,0.387946,,0.387946,,0.387946,,0.387946,,0.197853,,70,,, +7528,-1,0.467753,0,2,0,1,1,FCD,4,8,W I 96 CD,,935207,23.06,23.528,0,,0.8,7.5,,0.431772,,0.431772,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.431775,,0.431772,,0.431775,,0.431773,,0.431772,,0.431773,,0.431891,,0.431772,,0.431891,,0.431772,,0.431772,,0.431772,,,,,,,,0.431775,,0.431773,,0.431891,,0.431772,,0.431772,,0.213728,,0.213727,,0.213763,,0.213727,,0.116219,,64.999569,,64.999855,,64.982128,,65,,65,,,,,,,,,,,,14448,,0.431772,,0.431772,,0.431772,,0.431772,,0.213727,,65,, +5426,1,0.392235,1,0,0,1,1,RFS,4,8,N US 23/E I 96,RAMP,931706,0,0.392,0,,0.22,6,0.52298,,0.52298,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.544539,,0.52298,,0.544539,,0.5233,,0.52298,,0.5233,,0.525879,,0.52298,,0.525879,,0.52298,,0.52298,,0.52298,,,,,,,,0.544539,,0.5233,,0.525879,,0.52298,,0.52298,,0.233964,,0.227592,,0.228366,,0.227496,,0.121593,,43.218402,,44.972533,,44.751953,,45,,45,,,,,,,,,,,,5160,,0.52298,,0.52298,,0.52298,,0.52298,,0.227496,,45,,, +6894,1,0.140844,2,0,0,1,2,,4,8,N US 23,,931510,6.571,6.712,0,,0.8,7.5,0.120723,,0.120723,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.120941,,0.120723,,0.120941,,0.120747,,0.120723,,0.120747,,0.124286,,0.120723,,0.124286,,0.120723,,0.120723,,0.120723,,,,,,,,0.120941,,0.120747,,0.124286,,0.120723,,0.120723,,0.061634,,0.061576,,0.062638,,0.061569,,0.033601,,69.873829,,69.986155,,67.993677,,70,,70,,,,,,,,,,,,15136,,0.120723,,0.120723,,0.120723,,0.120723,,0.061569,,70,,, +7703,1,0.256261,2,0,0,1,1,FCD,4,8,E I 96 CD,,935105,23.197,23.454,0,,0.8,7.5,0.236549,,0.236549,,65,,42000,,9534,,21000,,13549,,14448,,14431,,0.236582,,0.236549,,0.236582,,0.236549,,0.236549,,0.236549,,0.236551,,0.236549,,0.236551,,0.236549,,0.236549,,0.236549,,,,,,,,0.236582,,0.236549,,0.236551,,0.236549,,0.236549,,0.117102,,0.117092,,0.117092,,0.117092,,0.063671,,64.990757,,64.999807,,64.999258,,65,,65,,,,,,,,,,,,14448,,0.236549,,0.236549,,0.236549,,0.236549,,0.117092,,65,,, +5427,1,0.253655,1,0,0,1,1,RFS,4,8,E I 96/N US 23,RAMP,931707,0,0.254,0,,0.22,6,0.338206,,0.338206,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.338224,,0.338206,,0.338224,,0.338207,,0.338206,,0.338207,,0.338346,,0.338206,,0.338346,,0.338206,,0.338206,,0.338206,,,,,,,,0.338224,,0.338207,,0.338346,,0.338206,,0.338206,,0.147125,,0.14712,,0.147162,,0.14712,,0.078633,,44.997665,,44.999943,,44.981467,,45,,45,,,,,,,,,,,,5160,,0.338206,,0.338206,,0.338206,,0.338206,,0.14712,,45,,, +6591,1,0.037439,2,0,0,1,2,,4,8,N US 23,,931510,6.712,6.75,0,,0.8,7.5,0.03209,,0.03209,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.032305,,0.03209,,0.032305,,0.032107,,0.03209,,0.032107,,0.035491,,0.03209,,0.035491,,0.03209,,0.03209,,0.03209,,,,,,,,0.032305,,0.032107,,0.035491,,0.03209,,0.03209,,0.016431,,0.016371,,0.017386,,0.016366,,0.008932,,69.534344,,69.963476,,63.293358,,70,,70,,,,,,,,,,,,15136,,0.03209,,0.03209,,0.03209,,0.03209,,0.016366,,70,,, +7714,1,0.083317,3,0,0,1,1,FCD,4,8,E I 96 CD,,935105,23.114,23.197,0,,0.8,7.5,0.076908,,0.076908,,65,,63000,,14301,,31500,,20324,,21672,,21647,,0.076912,,0.076908,,0.076912,,0.076908,,0.076908,,0.076908,,0.076909,,0.076908,,0.076909,,0.076908,,0.076908,,0.076908,,,,,,,,0.076912,,0.076908,,0.076909,,0.076908,,0.076908,,0.038071,,0.03807,,0.03807,,0.03807,,0.020701,,64.997174,,64.99995,,64.999028,,65,,65,,,,,,,,,,,,21672,,0.076908,,0.076908,,0.076908,,0.076908,,0.03807,,65,,, +6183,0,0.992648,1,1,0,2,5,GRV,5,8,Silver Lake,Rd,931608,2.869,3.861,0,21.271025,5.55,5,2.977943,2.977943,2.977943,2.977943,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.978237,2.977944,2.977943,2.977943,2.978237,2.977944,2.977947,2.977946,2.977943,2.977943,2.977947,2.977946,2.977949,2.978171,2.977943,2.977943,2.977949,2.978171,2.977943,2.977943,2.977943,2.977943,2.977943,2.977943,,,,,,,2.978237,2.977944,2.977947,2.977946,2.977949,2.978171,2.977943,2.977943,2.977943,2.977943,1.072148,1.07206,1.072061,1.07206,1.072061,1.072128,1.07206,1.07206,0.555883,0.555883,19.998026,19.999994,19.999974,19.999986,19.99996,19.998473,20,20,20,20,,,,,,,,,,,2236,2236,2.977943,2.977943,2.977943,2.977943,2.977943,2.977943,2.977943,2.977943,1.07206,1.07206,20,20,, +7655,0,0.50261,1,1,0,2,5,,4,8,Rushton,Rd,942101,3.523,4.025,0,10.770215,5.8,4.5,1.116911,1.116911,1.116911,1.116911,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.135027,1.117901,1.116911,1.116911,1.135027,1.117901,1.117345,1.117183,1.116911,1.116911,1.117345,1.117183,1.122662,1.138799,1.116911,1.116911,1.122662,1.138799,1.116911,1.116911,1.116911,1.116911,1.116911,1.116911,,,,,,,1.135027,1.117901,1.117345,1.117183,1.122662,1.138799,1.116911,1.116911,1.116911,1.116911,0.430978,0.42584,0.425673,0.425625,0.427269,0.432109,0.425543,0.425543,0.222824,0.222824,26.569069,26.976091,26.989529,26.993438,26.861683,26.481058,27,27,27,27,,,,,,,,,,,2580,2580,1.116911,1.116911,1.116911,1.116911,1.116911,1.116911,1.116911,1.116911,0.425543,0.425543,27,27,, +25130,0,0.655576,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.048052,0.15,4,2.622303,2.622303,2.622303,2.622303,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,,,,,,,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,0.904695,0.904695,0.904695,0.904695,0.904695,0.904695,0.904695,0.904695,0.465459,0.465459,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,2.622303,0.904695,0.904695,15,15,, +25132,0,0.752005,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.114396,0.15,4,3.008021,3.008021,3.008021,3.008021,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,,,,,,,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,1.037767,1.037767,1.037767,1.037767,1.037767,1.037767,1.037767,1.037767,0.533924,0.533924,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,3.008021,1.037767,1.037767,15,15,, +7387,0,0.854434,1,1,0,2,5,,5,8,Rushton,Rd,942101,2.669,3.523,0,18.309294,3.7,5,1.708867,1.708867,1.708867,1.708867,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.709108,1.708894,1.708867,1.708867,1.709108,1.708894,1.708869,1.708869,1.708867,1.708867,1.708869,1.708869,1.709042,1.709168,1.708867,1.708867,1.709042,1.709168,1.708867,1.708867,1.708867,1.708867,1.708867,1.708867,,,,,,,1.709108,1.708894,1.708869,1.708869,1.709042,1.709168,1.708867,1.708867,1.708867,1.708867,0.666531,0.666466,0.666459,0.666459,0.666511,0.666548,0.666458,0.666458,0.350318,0.350318,29.995769,29.999526,29.999971,29.999974,29.996941,29.994731,30,30,30,30,,,,,,,,,,,2580,2580,1.708867,1.708867,1.708867,1.708867,1.708867,1.708867,1.708867,1.708867,0.666458,0.666458,30,30,, +8065,0,0.291245,1,1,0,2,5,,4,8,Silver Lake,Rd,942101,4.025,4.317,0,6.240974,5.8,4.5,0.647212,0.647212,0.647212,0.647212,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.688978,0.648606,0.647212,0.647212,0.688978,0.648606,0.648173,0.647798,0.647212,0.647212,0.648173,0.647798,0.65514,0.692529,0.647212,0.647212,0.65514,0.692529,0.647212,0.647212,0.647212,0.647212,0.647212,0.647212,,,,,,,0.688978,0.648606,0.648173,0.647798,0.65514,0.692529,0.647212,0.647212,0.647212,0.647212,0.259117,0.247006,0.246876,0.246764,0.248966,0.260183,0.246588,0.246588,0.129119,0.129119,25.363274,26.941975,26.959959,26.975587,26.673273,25.233209,27,27,27,27,,,,,,,,,,,2580,2580,0.647212,0.647212,0.647212,0.647212,0.647212,0.647212,0.647212,0.647212,0.246588,0.246588,27,27,, +7124,0,1.58186,1,1,0,2,3,,5,8,Grand River,Ave,932910,25.815,27.396,0,33.897007,1.7,4,1.898232,1.898232,1.898232,1.898232,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.218728,1.919227,1.898232,1.898232,2.218728,1.919227,1.92794,1.898304,1.898232,1.898232,1.92794,1.898304,1.979612,2.135123,1.898232,1.898232,1.979612,2.135123,1.898232,1.898232,1.898232,1.898232,1.898232,1.898232,,,,,,,2.218728,1.919227,1.92794,1.898304,1.979612,2.135123,1.898232,1.898232,1.898232,1.898232,0.950353,0.860503,0.863117,0.854226,0.878619,0.925272,0.854205,0.854205,0.458739,0.458739,42.777482,49.453034,49.229542,49.998107,47.944545,44.452538,50,50,50,50,,,,,,,,,,,3096,3096,1.898232,1.898232,1.898232,1.898232,1.898232,1.898232,1.898232,1.898232,0.854205,0.854205,50,50,, +7522,-1,1.113184,0,3,0,1,1,,5,8,W I 96,,935207,25.177,26.29,0,,1.02,7,,0.954158,,0.954158,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.965044,,0.954158,,0.965044,,0.960235,,0.954158,,0.960235,,1.190539,,0.954158,,1.190539,,0.954158,,0.954158,,0.954158,,,,,,,,0.965044,,0.960235,,1.190539,,0.954158,,0.954158,,0.489886,,0.488444,,0.557535,,0.48662,,0.265574,,69.210353,,69.556984,,56.101517,,70,,70,,,,,,,,,,,,22704,,0.954158,,0.954158,,0.954158,,0.954158,,0.48662,,70,, +7883,0,0.351492,1,1,0,2,5,,4,8,Kensington,Rd,942603,1.165,1.516,0,7.531969,5.8,4.5,0.781093,0.781093,0.781093,0.781093,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.782331,0.785114,0.781093,0.781093,0.782331,0.785114,0.781445,0.781538,0.781093,0.781093,0.781445,0.781538,0.791955,0.782622,0.781093,0.781093,0.791955,0.782622,0.781093,0.781093,0.781093,0.781093,0.781093,0.781093,,,,,,,0.782331,0.785114,0.781445,0.781538,0.791955,0.782622,0.781093,0.781093,0.781093,0.781093,0.297968,0.298803,0.297702,0.29773,0.300855,0.298055,0.297596,0.297596,0.155828,0.155828,26.957276,26.861721,26.987853,26.984613,26.629671,26.947265,27,27,27,27,,,,,,,,,,,2580,2580,0.781093,0.781093,0.781093,0.781093,0.781093,0.781093,0.781093,0.781093,0.297596,0.297596,27,27,, +19916,0,0.400486,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0,0.4,0,8.581846,4.5,4.5,0.632347,0.632347,0.632347,0.632347,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.63238,0.64009,0.632347,0.632347,0.63238,0.64009,0.632385,0.64114,0.632347,0.632347,0.632385,0.64114,0.633579,0.633643,0.632347,0.632347,0.633579,0.633643,0.632347,0.632347,0.632347,0.632347,0.632347,0.632347,,,,,,,0.63238,0.64009,0.632385,0.64114,0.633579,0.633643,0.632347,0.632347,0.632347,0.632347,0.261802,0.264114,0.261803,0.26443,0.262161,0.26218,0.261791,0.261791,0.138905,0.138905,37.99799,37.540311,37.997674,37.478803,37.926065,37.922244,38,38,38,38,,,,,,,,,,,3096,3096,0.632347,0.632347,0.632347,0.632347,0.632347,0.632347,0.632347,0.632347,0.261791,0.261791,38,38,, +19912,0,0.500821,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.586,1.086,0,10.73188,4.5,4.5,0.79077,0.79077,0.79077,0.79077,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.790837,0.799087,0.79077,0.79077,0.790837,0.799087,0.790795,0.790804,0.79077,0.79077,0.790795,0.790804,0.797299,0.791353,0.79077,0.79077,0.797299,0.791353,0.79077,0.79077,0.79077,0.79077,0.79077,0.79077,,,,,,,0.790837,0.799087,0.790795,0.790804,0.797299,0.791353,0.79077,0.79077,0.79077,0.79077,0.327399,0.329874,0.327386,0.327389,0.329337,0.327554,0.327379,0.327379,0.173706,0.173706,37.996777,37.604472,37.998808,37.998377,37.688837,37.971988,38,38,38,38,,,,,,,,,,,3096,3096,0.79077,0.79077,0.79077,0.79077,0.79077,0.79077,0.79077,0.79077,0.327379,0.327379,38,38,, +7495,1,0.288734,1,0,0,1,1,ROF,4,8,W I 96/Pleasant Valley,RAMP,935302,0,0.289,0,,2.24,5,0.433101,,0.433101,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.433542,,0.433101,,0.433542,,0.433775,,0.433101,,0.433775,,0.43387,,0.433101,,0.43387,,0.433101,,0.433101,,0.433101,,,,,,,,0.433542,,0.433775,,0.43387,,0.433101,,0.433101,,0.182035,,0.182105,,0.182133,,0.181903,,0.096726,,39.959348,,39.937861,,39.929151,,40,,40,,,,,,,,,,,,5160,,0.433101,,0.433101,,0.433101,,0.433101,,0.181903,,40,,, +7635,1,0.240483,1,0,0,1,1,RON,4,8,Pleasant Valley/E I 96,RAMP,935204,0,0.24,0,,1.09,4,0.320644,,0.320644,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.321628,,0.320644,,0.321628,,0.320715,,0.320644,,0.320715,,0.320882,,0.320644,,0.320882,,0.320644,,0.320644,,0.320644,,,,,,,,0.321628,,0.320715,,0.320882,,0.320644,,0.320644,,0.139776,,0.139502,,0.139552,,0.13948,,0.07455,,44.862319,,44.990092,,44.966691,,45,,45,,,,,,,,,,,,5160,,0.320644,,0.320644,,0.320644,,0.320644,,0.13948,,45,,, +19915,0,0.129748,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.4,0.53,0,2.780304,4.5,4.5,0.204865,0.204865,0.204865,0.204865,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.204875,0.340354,0.204865,0.204865,0.204875,0.340354,0.204877,0.237375,0.204865,0.204865,0.204877,0.237375,0.205264,0.230236,0.204865,0.204865,0.205264,0.230236,0.204865,0.204865,0.204865,0.204865,0.204865,0.204865,,,,,,,0.204875,0.340354,0.204877,0.237375,0.205264,0.230236,0.204865,0.204865,0.204865,0.204865,0.084817,0.125461,0.084818,0.094567,0.084934,0.092425,0.084814,0.084814,0.045002,0.045002,37.99799,22.872796,37.997674,32.79553,37.926065,33.812455,38,38,38,38,,,,,,,,,,,3096,3096,0.204865,0.204865,0.204865,0.204865,0.204865,0.204865,0.204865,0.204865,0.084814,0.084814,38,38,, +19914,0,0.015492,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.53,0.546,0,0.331965,4.5,4.5,0.024461,0.024461,0.024461,0.024461,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.024462,0.037063,0.024461,0.024461,0.024462,0.037063,0.024462,0.027956,0.024461,0.024461,0.024462,0.027956,0.024486,0.027425,0.024461,0.024461,0.024486,0.027425,0.024461,0.024461,0.024461,0.024461,0.024461,0.024461,,,,,,,0.024462,0.037063,0.024462,0.027956,0.024486,0.027425,0.024461,0.024461,0.024461,0.024461,0.010127,0.013908,0.010127,0.011175,0.010134,0.011016,0.010127,0.010127,0.005373,0.005373,37.998569,25.078799,37.998569,33.249048,37.961339,33.892177,38,38,38,38,,,,,,,,,,,3096,3096,0.024461,0.024461,0.024461,0.024461,0.024461,0.024461,0.024461,0.024461,0.010127,0.010127,38,38,, +19913,0,0.040221,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.546,0.586,0,0.861868,4.5,4.5,0.063506,0.063506,0.063506,0.063506,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.063548,0.065371,0.063506,0.063506,0.063548,0.065371,0.063541,0.063542,0.063506,0.063506,0.063541,0.063542,0.065305,0.063805,0.063506,0.063506,0.065305,0.063805,0.063506,0.063506,0.063506,0.063506,0.063506,0.063506,,,,,,,0.063548,0.065371,0.063541,0.063542,0.065305,0.063805,0.063506,0.063506,0.063506,0.063506,0.026304,0.026851,0.026302,0.026302,0.026831,0.026381,0.026292,0.026292,0.01395,0.01395,37.974639,36.915967,37.97906,37.978393,36.953503,37.821878,38,38,38,38,,,,,,,,,,,3096,3096,0.063506,0.063506,0.063506,0.063506,0.063506,0.063506,0.063506,0.063506,0.026292,0.026292,38,38,, +7490,1,0.127991,1,0,0,1,1,ROF,5,8,W I 96/S Kensington,RAMP,935304,0,0.128,0,,2.24,5,0.191986,,0.191986,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.192949,,0.191986,,0.192949,,0.191996,,0.191986,,0.191996,,0.195744,,0.191986,,0.195744,,0.191986,,0.191986,,0.191986,,,,,,,,0.192949,,0.191996,,0.195744,,0.191986,,0.191986,,0.080923,,0.080637,,0.081761,,0.080634,,0.042877,,39.800303,,39.998025,,39.23217,,40,,40,,,,,,,,,,,,5160,,0.191986,,0.191986,,0.191986,,0.191986,,0.080634,,40,,, +7516,-1,0.142443,0,3,0,1,1,,5,8,W I 96,,935207,26.29,26.432,0,,1.02,7,,0.122094,,0.122094,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.122971,,0.122094,,0.122971,,0.122577,,0.122094,,0.122577,,0.142371,,0.122094,,0.142371,,0.122094,,0.122094,,0.122094,,,,,,,,0.122971,,0.122577,,0.142371,,0.122094,,0.122094,,0.062531,,0.062413,,0.068351,,0.062268,,0.033983,,69.500963,,69.723908,,60.030104,,70,,70,,,,,,,,,,,,22704,,0.122094,,0.122094,,0.122094,,0.122094,,0.062268,,70,, +5914,0,1.425158,1,1,0,2,5,,5,8,Hyne,Rd,931803,2.261,3.686,0,30.539101,3.7,5,2.850316,2.850316,2.850316,2.850316,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.925056,2.860223,2.850316,2.850316,2.925056,2.860223,2.850401,2.850366,2.850316,2.850316,2.850401,2.850366,2.867096,2.894681,2.850316,2.850316,2.867096,2.894681,2.850316,2.850316,2.850316,2.850316,2.850316,2.850316,,,,,,,2.925056,2.860223,2.850401,2.850366,2.867096,2.894681,2.850316,2.850316,2.850316,2.850316,1.134045,1.114595,1.111649,1.111638,1.116657,1.124933,1.111623,1.111623,0.584315,0.584315,29.233447,29.896086,29.999109,29.999475,29.824424,29.540205,30,30,30,30,,,,,,,,,,,2580,2580,2.850316,2.850316,2.850316,2.850316,2.850316,2.850316,2.850316,2.850316,1.111623,1.111623,30,30,, +6593,0,0.743058,1,1,0,2,4,,4,8,Spencer,Rd,931802,1.223,1.966,0,15.922669,4.5,4.5,1.173249,1.173249,1.173249,1.173249,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.247683,1.175308,1.173249,1.173249,1.247683,1.175308,1.174043,1.173941,1.173249,1.173249,1.174043,1.173941,1.176329,1.209796,1.173249,1.173249,1.176329,1.209796,1.173249,1.173249,1.173249,1.173249,1.173249,1.173249,,,,,,,1.247683,1.175308,1.174043,1.173941,1.176329,1.209796,1.173249,1.173249,1.173249,1.173249,0.508055,0.486343,0.485963,0.485933,0.486649,0.496689,0.485725,0.485725,0.257724,0.257724,35.733012,37.933423,37.974323,37.977623,37.900524,36.852073,38,38,38,38,,,,,,,,,,,3096,3096,1.173249,1.173249,1.173249,1.173249,1.173249,1.173249,1.173249,1.173249,0.485725,0.485725,38,38,, +8136,0,0.763262,1,1,0,2,5,,5,8,Kensington,Rd,942603,4.623,5.386,0,16.355614,3.7,5,1.526524,1.526524,1.526524,1.526524,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.528166,1.544382,1.526524,1.526524,1.528166,1.544382,1.526698,1.526697,1.526524,1.526524,1.526698,1.526697,1.531841,1.52773,1.526524,1.526524,1.531841,1.52773,1.526524,1.526524,1.526524,1.526524,1.526524,1.526524,,,,,,,1.528166,1.544382,1.526698,1.526697,1.531841,1.52773,1.526524,1.526524,1.526524,1.526524,0.595837,0.600702,0.595396,0.595396,0.59694,0.595706,0.595344,0.595344,0.312937,0.312937,29.967762,29.653102,29.996587,29.996606,29.895865,29.976322,30,30,30,30,,,,,,,,,,,2580,2580,1.526524,1.526524,1.526524,1.526524,1.526524,1.526524,1.526524,1.526524,0.595344,0.595344,30,30,, +26058,0,1.050024,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.500523,0.15,4,4.200098,4.200098,4.200098,4.200098,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,,,,,,,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,1.449034,1.449034,1.449034,1.449034,1.449034,1.449034,1.449034,1.449034,0.745517,0.745517,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,4.200098,1.449034,1.449034,15,15,, +27069,0,1.409274,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.198726,0.15,4,5.637095,5.637095,5.637095,5.637095,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,,,,,,,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,1.944798,1.944798,1.944798,1.944798,1.944798,1.944798,1.944798,1.944798,1.000584,1.000584,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,5.637095,1.944798,1.944798,15,15,, +27070,0,1.495521,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.04687,0.15,4,5.982082,5.982082,5.982082,5.982082,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,,,,,,,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,2.063818,2.063818,2.063818,2.063818,2.063818,2.063818,2.063818,2.063818,1.06182,1.06182,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,5.982082,2.063818,2.063818,15,15,, +5431,0,0.642309,1,1,0,2,4,,4,8,Spencer,Rd,931802,0.282,0.924,0,13.763759,4.5,4.5,1.014172,1.014172,1.014172,1.014172,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.386015,1.404848,1.014172,1.014172,1.386015,1.404848,1.212659,1.251615,1.014172,1.014172,1.212659,1.251615,1.445458,1.487571,1.014172,1.014172,1.445458,1.487571,1.014172,1.014172,1.014172,1.014172,1.014172,1.014172,,,,,,,1.386015,1.404848,1.212659,1.251615,1.445458,1.487571,1.014172,1.014172,1.014172,1.014172,0.53142,0.53707,0.479413,0.4911,0.549253,0.561887,0.419867,0.419867,0.22278,0.22278,27.805281,27.432526,31.780189,30.791047,26.661806,25.907018,38,38,38,38,,,,,,,,,,,3096,3096,1.014172,1.014172,1.014172,1.014172,1.014172,1.014172,1.014172,1.014172,0.419867,0.419867,38,38,, +5597,0,0.835734,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,8.2,9.035,0,17.908587,4.5,4.5,1.31958,1.31958,1.31958,1.31958,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.434699,1.862623,1.31958,1.31958,1.434699,1.862623,1.429516,1.410668,1.31958,1.31958,1.429516,1.410668,2.009029,1.517731,1.31958,1.31958,2.009029,1.517731,1.31958,1.31958,1.31958,1.31958,1.31958,1.31958,,,,,,,1.434699,1.862623,1.429516,1.410668,2.009029,1.517731,1.31958,1.31958,1.31958,1.31958,0.580842,0.709219,0.579287,0.573633,0.753141,0.605751,0.546306,0.546306,0.289868,0.289868,34.950911,26.921204,35.077649,35.546299,24.959349,33.038829,38,38,38,38,,,,,,,,,,,3096,3096,1.31958,1.31958,1.31958,1.31958,1.31958,1.31958,1.31958,1.31958,0.546306,0.546306,38,38,, +27071,0,1.626272,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.848682,0.15,4,6.505087,6.505087,6.505087,6.505087,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.505091,6.505088,6.505087,6.505087,6.505091,6.505088,6.505088,6.505088,6.505087,6.505087,6.505088,6.505088,6.505088,6.505091,6.505087,6.505087,6.505088,6.505091,6.505087,6.505087,6.505087,6.505087,6.505087,6.505087,,,,,,,6.505091,6.505088,6.505088,6.505088,6.505088,6.505091,6.505087,6.505087,6.505087,6.505087,2.244256,2.244255,2.244255,2.244255,2.244255,2.244256,2.244255,2.244255,1.154653,1.154653,14.999992,15,14.999999,15,14.999998,14.999992,15,15,15,15,,,,,,,,,,,34400,34400,6.505087,6.505087,6.505087,6.505087,6.505087,6.505087,6.505087,6.505087,2.244255,2.244255,15,15,, +5430,0,0.28241,1,1,0,2,4,,4,8,Spencer,Rd,931802,0,0.282,0,6.051649,4.5,4.5,0.445911,0.445911,0.445911,0.445911,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.693477,0.757567,0.445911,0.445911,0.693477,0.757567,0.533182,0.55031,0.445911,0.445911,0.533182,0.55031,0.908778,1.014188,0.445911,0.445911,0.908778,1.014188,0.445911,0.445911,0.445911,0.445911,0.445911,0.445911,,,,,,,0.693477,0.757567,0.533182,0.55031,0.908778,1.014188,0.445911,0.445911,0.445911,0.445911,0.258877,0.278104,0.210788,0.215927,0.323467,0.35509,0.184607,0.184607,0.097952,0.097952,24.43429,22.36716,31.780189,30.791047,18.645486,16.707572,38,38,38,38,,,,,,,,,,,3096,3096,0.445911,0.445911,0.445911,0.445911,0.445911,0.445911,0.445911,0.445911,0.184607,0.184607,38,38,, +5820,0,0.291687,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,7.908,8.2,0,6.250432,4.5,4.5,0.460558,0.460558,0.460558,0.460558,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.503978,0.638653,0.460558,0.460558,0.503978,0.638653,0.493475,0.48917,0.460558,0.460558,0.493475,0.48917,0.688445,0.543343,0.460558,0.460558,0.688445,0.543343,0.460558,0.460558,0.460558,0.460558,0.460558,0.460558,,,,,,,0.503978,0.638653,0.493475,0.48917,0.688445,0.543343,0.460558,0.460558,0.460558,0.460558,0.203697,0.2441,0.200546,0.199255,0.259037,0.215507,0.190671,0.190671,0.101169,0.101169,34.726107,27.403305,35.465253,35.777357,25.42137,32.21024,38,38,38,38,,,,,,,,,,,3096,3096,0.460558,0.460558,0.460558,0.460558,0.460558,0.460558,0.460558,0.460558,0.190671,0.190671,38,38,, +5143,0,0.279012,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,9.035,9.314,0,5.978827,4.5,4.5,0.440545,0.440545,0.440545,0.440545,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.532529,0.894137,0.440545,0.440545,0.532529,0.894137,0.4953,0.49089,0.440545,0.440545,0.4953,0.49089,1.012235,0.613897,0.440545,0.440545,1.012235,0.613897,0.440545,0.440545,0.440545,0.440545,0.440545,0.440545,,,,,,,0.532529,0.894137,0.4953,0.49089,1.012235,0.613897,0.440545,0.440545,0.440545,0.440545,0.209981,0.318463,0.198812,0.197489,0.353893,0.234391,0.182386,0.182386,0.096773,0.096773,31.43626,18.722756,33.799151,34.102814,16.538364,27.269579,38,38,38,38,,,,,,,,,,,3096,3096,0.440545,0.440545,0.440545,0.440545,0.440545,0.440545,0.440545,0.440545,0.182386,0.182386,38,38,, +6896,0,0.298913,1,1,0,2,4,,4,8,Spencer,Rd,931802,0.924,1.223,0,6.405281,4.5,4.5,0.471968,0.471968,0.471968,0.471968,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.48567,0.497512,0.471968,0.471968,0.48567,0.497512,0.474591,0.476378,0.471968,0.471968,0.474591,0.476378,0.49764,0.500723,0.471968,0.471968,0.49764,0.500723,0.471968,0.471968,0.471968,0.471968,0.471968,0.471968,,,,,,,0.48567,0.497512,0.474591,0.476378,0.49764,0.500723,0.471968,0.471968,0.471968,0.471968,0.199505,0.203058,0.196182,0.196718,0.203096,0.204021,0.195395,0.195395,0.103676,0.103676,36.927905,36.048964,37.789953,37.648267,36.039696,35.817791,38,38,38,38,,,,,,,,,,,3096,3096,0.471968,0.471968,0.471968,0.471968,0.471968,0.471968,0.471968,0.471968,0.195395,0.195395,38,38,, +6309,0,0.507514,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,11.092,11.599,0,10.875306,4.5,4.5,0.801338,0.801338,0.801338,0.801338,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.923679,1.013736,0.801338,0.801338,0.923679,1.013736,0.846515,0.845432,0.801338,0.801338,0.846515,0.845432,1.147127,0.993744,0.801338,0.801338,1.147127,0.993744,0.801338,0.801338,0.801338,0.801338,0.801338,0.801338,,,,,,,0.923679,1.013736,0.846515,0.845432,1.147127,0.993744,0.801338,0.801338,0.801338,0.801338,0.368456,0.395473,0.345307,0.344982,0.435491,0.389476,0.331754,0.331754,0.176027,0.176027,32.966933,30.038261,35.972032,36.018121,26.545332,30.642566,38,38,38,38,,,,,,,,,,,3096,3096,0.801338,0.801338,0.801338,0.801338,0.801338,0.801338,0.801338,0.801338,0.331754,0.331754,38,38,, +6393,0,1.007664,1,1,0,2,5,,4,8,Hyne,Rd,931803,1.001,2.009,0,21.592792,5.8,4.5,2.239252,2.239252,2.239252,2.239252,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.553437,2.500995,2.239252,2.239252,2.553437,2.500995,2.24974,2.250023,2.239252,2.239252,2.24974,2.250023,2.712229,2.698825,2.239252,2.239252,2.712229,2.698825,2.239252,2.239252,2.239252,2.239252,2.239252,2.239252,,,,,,,2.553437,2.500995,2.24974,2.250023,2.712229,2.698825,2.239252,2.239252,2.239252,2.239252,0.94741,0.931678,0.856301,0.856386,0.995048,0.991027,0.853155,0.853155,0.446731,0.446731,23.677822,24.174304,26.874139,26.870756,22.291557,22.402277,27,27,27,27,,,,,,,,,,,2580,2580,2.239252,2.239252,2.239252,2.239252,2.239252,2.239252,2.239252,2.239252,0.853155,0.853155,27,27,, +6491,0,0.570531,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,10.522,11.092,0,12.225672,4.5,4.5,0.900839,0.900839,0.900839,0.900839,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.017619,1.192722,0.900839,0.900839,1.017619,1.192722,0.949963,0.9607,0.900839,0.900839,0.949963,0.9607,1.353211,1.16792,0.900839,0.900839,1.353211,1.16792,0.900839,0.900839,0.900839,0.900839,0.900839,0.900839,,,,,,,1.017619,1.192722,0.949963,0.9607,1.353211,1.16792,0.900839,0.900839,0.900839,0.900839,0.407981,0.460512,0.387685,0.390906,0.508659,0.453072,0.372947,0.372947,0.197884,0.197884,33.6392,28.700642,36.034959,35.632217,25.296777,29.310131,38,38,38,38,,,,,,,,,,,3096,3096,0.900839,0.900839,0.900839,0.900839,0.900839,0.900839,0.900839,0.900839,0.372947,0.372947,38,38,, +6077,0,0.252651,1,1,0,2,5,,5,8,Hyne,Rd,931803,2.009,2.261,0,5.413941,3.7,5,0.505301,0.505301,0.505301,0.505301,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.546216,0.512452,0.505301,0.505301,0.546216,0.512452,0.505588,0.505515,0.505301,0.505301,0.505588,0.505515,0.522242,0.540613,0.505301,0.505301,0.522242,0.540613,0.505301,0.505301,0.505301,0.505301,0.505301,0.505301,,,,,,,0.546216,0.512452,0.505588,0.505515,0.522242,0.540613,0.505301,0.505301,0.505301,0.505301,0.209342,0.199213,0.197153,0.197132,0.20215,0.207661,0.197067,0.197067,0.103587,0.103587,27.752831,29.581383,29.982993,29.987304,29.026859,28.040434,30,30,30,30,,,,,,,,,,,2580,2580,0.505301,0.505301,0.505301,0.505301,0.505301,0.505301,0.505301,0.505301,0.197067,0.197067,30,30,, +7442,0,0.421257,1,1,0,2,5,,5,8,Pleasant Valley,Rd,936106,0.087,0.509,0,9.026945,3.7,5,0.842515,0.842515,0.842515,0.842515,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.850802,0.847138,0.842515,0.842515,0.850802,0.847138,0.842579,0.842605,0.842515,0.842515,0.842579,0.842605,0.846011,0.849465,0.842515,0.842515,0.846011,0.849465,0.842515,0.842515,0.842515,0.842515,0.842515,0.842515,,,,,,,0.850802,0.847138,0.842579,0.842605,0.846011,0.849465,0.842515,0.842515,0.842515,0.842515,0.331067,0.329968,0.3286,0.328608,0.32963,0.330666,0.328581,0.328581,0.172716,0.172716,29.707784,29.83627,29.997729,29.996776,29.876041,29.754553,30,30,30,30,,,,,,,,,,,2580,2580,0.842515,0.842515,0.842515,0.842515,0.842515,0.842515,0.842515,0.842515,0.328581,0.328581,30,30,, +7856,0,0.706113,1,1,0,2,5,,5,8,Jacoby,,943010,0,0.706,0,15.130996,3.7,5,1.412226,1.412226,1.412226,1.412226,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.426117,1.419976,1.412226,1.412226,1.426117,1.419976,1.412333,1.412378,1.412226,1.412226,1.412333,1.412378,1.418086,1.423876,1.412226,1.412226,1.418086,1.423876,1.412226,1.412226,1.412226,1.412226,1.412226,1.412226,,,,,,,1.426117,1.419976,1.412333,1.412378,1.418086,1.423876,1.412226,1.412226,1.412226,1.412226,0.554936,0.553093,0.5508,0.550814,0.552526,0.554263,0.550768,0.550768,0.289506,0.289506,29.707784,29.83627,29.997729,29.996776,29.876041,29.754553,30,30,30,30,,,,,,,,,,,2580,2580,1.412226,1.412226,1.412226,1.412226,1.412226,1.412226,1.412226,1.412226,0.550768,0.550768,30,30,, +8138,0,1.1445,1,1,0,2,4,,5,8,Kensington,Rd,942603,3.056,4.2,0,24.525005,3,4,1.71675,1.71675,1.71675,1.71675,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.907324,2.485355,1.71675,1.71675,1.907324,2.485355,1.736772,1.743888,1.71675,1.71675,1.736772,1.743888,2.448614,2.08567,1.71675,1.71675,2.448614,2.08567,1.71675,1.71675,1.71675,1.71675,1.71675,1.71675,,,,,,,1.907324,2.485355,1.736772,1.743888,2.448614,2.08567,1.71675,1.71675,1.71675,1.71675,0.778207,0.951617,0.727042,0.729177,0.940594,0.831711,0.721035,0.721035,0.383408,0.383408,36.003324,27.62986,39.538876,39.37753,28.044439,32.924675,40,40,40,40,,,,,,,,,,,3096,3096,1.71675,1.71675,1.71675,1.71675,1.71675,1.71675,1.71675,1.71675,0.721035,0.721035,40,40,, +27032,0,1.020874,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.875877,0.15,4,4.083497,4.083497,4.083497,4.083497,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,,,,,,,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,1.408806,1.408806,1.408806,1.408806,1.408806,1.408806,1.408806,1.408806,0.724821,0.724821,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,4.083497,1.408806,1.408806,15,15,, +19909,0,0.091124,1,1,0,2,5,,5,8,Buno,Rd,4103156,2.214,2.305,0,1.952655,3.7,5,0.182248,0.182248,0.182248,0.182248,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.183732,0.183077,0.182248,0.182248,0.183732,0.183077,0.18226,0.182261,0.182248,0.182248,0.18226,0.182261,0.182882,0.183492,0.182248,0.182248,0.182882,0.183492,0.182248,0.182248,0.182248,0.182248,0.182248,0.182248,,,,,,,0.183732,0.183077,0.18226,0.182261,0.182882,0.183492,0.182248,0.182248,0.182248,0.182248,0.071522,0.071325,0.07108,0.071081,0.071267,0.07145,0.071077,0.071077,0.037361,0.037361,29.757661,29.864101,29.997962,29.99784,29.895977,29.796604,30,30,30,30,,,,,,,,,,,2580,2580,0.182248,0.182248,0.182248,0.182248,0.182248,0.182248,0.182248,0.182248,0.071077,0.071077,30,30,, +19910,0,0.433377,1,1,0,2,5,,5,8,Pleasant Valley,Rd,4103155,1.651,2.085,0,9.286658,3.7,5,0.866755,0.866755,0.866755,0.866755,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.873813,0.870699,0.866755,0.866755,0.873813,0.870699,0.866814,0.866817,0.866755,0.866755,0.866814,0.866817,0.869771,0.872671,0.866755,0.866755,0.869771,0.872671,0.866755,0.866755,0.866755,0.866755,0.866755,0.866755,,,,,,,0.873813,0.870699,0.866814,0.866817,0.869771,0.872671,0.866755,0.866755,0.866755,0.866755,0.340152,0.339218,0.338052,0.338053,0.338939,0.339809,0.338034,0.338034,0.177685,0.177685,29.757661,29.864101,29.997962,29.99784,29.895977,29.796604,30,30,30,30,,,,,,,,,,,2580,2580,0.866755,0.866755,0.866755,0.866755,0.866755,0.866755,0.866755,0.866755,0.338034,0.338034,30,30,, +19945,0,0.106369,1,1,0,2,5,,5,8,Pleasant Valley,Rd,4102974,0,0.106,0,2.279339,3.7,5,0.212738,0.212738,0.212738,0.212738,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.214471,0.213706,0.212738,0.212738,0.214471,0.213706,0.212753,0.212754,0.212738,0.212738,0.212753,0.212754,0.213478,0.21419,0.212738,0.212738,0.213478,0.21419,0.212738,0.212738,0.212738,0.212738,0.212738,0.212738,,,,,,,0.214471,0.213706,0.212753,0.212754,0.213478,0.21419,0.212738,0.212738,0.212738,0.212738,0.083488,0.083258,0.082972,0.082973,0.08319,0.083404,0.082968,0.082968,0.043611,0.043611,29.757661,29.864101,29.997962,29.99784,29.895977,29.796604,30,30,30,30,,,,,,,,,,,2580,2580,0.212738,0.212738,0.212738,0.212738,0.212738,0.212738,0.212738,0.212738,0.082968,0.082968,30,30,, +19908,0,0.129885,1,1,0,2,5,,5,8,Pleasant Valley,Rd,4104009,0,0.13,0,2.783254,3.7,5,0.25977,0.25977,0.25977,0.25977,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.261886,0.260952,0.25977,0.25977,0.261886,0.260952,0.259788,0.259789,0.25977,0.25977,0.259788,0.259789,0.260674,0.261544,0.25977,0.25977,0.260674,0.261544,0.25977,0.25977,0.25977,0.25977,0.25977,0.25977,,,,,,,0.261886,0.260952,0.259788,0.259789,0.260674,0.261544,0.25977,0.25977,0.25977,0.25977,0.101945,0.101665,0.101316,0.101316,0.101582,0.101842,0.10131,0.10131,0.053253,0.053253,29.757661,29.864101,29.997962,29.99784,29.895977,29.796604,30,30,30,30,,,,,,,,,,,2580,2580,0.25977,0.25977,0.25977,0.25977,0.25977,0.25977,0.25977,0.25977,0.10131,0.10131,30,30,, +7398,0,0.362151,1,1,0,2,4,,5,8,Kensington,Rd,942603,4.261,4.623,0,7.760369,3,4,0.543226,0.543226,0.543226,0.543226,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.915931,1.379761,0.543226,0.543226,0.915931,1.379761,0.566236,0.574238,0.543226,0.543226,0.566236,0.574238,1.302804,1.090344,0.543226,0.543226,1.302804,1.090344,0.543226,0.543226,0.543226,0.543226,0.543226,0.543226,,,,,,,0.915931,1.379761,0.566236,0.574238,1.302804,1.090344,0.543226,0.543226,0.543226,0.543226,0.339967,0.479115,0.235058,0.237459,0.456028,0.39229,0.228155,0.228155,0.12132,0.12132,23.723427,15.748406,38.374512,37.83975,16.678669,19.928605,40,40,40,40,,,,,,,,,,,3096,3096,0.543226,0.543226,0.543226,0.543226,0.543226,0.543226,0.543226,0.543226,0.228155,0.228155,40,40,, +37460,-1,0.021826,0,1,0,2,4,,5,8,Jacoby,,4102973,0,0.022,0,0.467701,3,4,,0.032739,,0.032739,,40,,9000,,2043,,4500,,2903,,3096,,3092,,0.032998,,0.032739,,0.032998,,0.03275,,0.032739,,0.03275,,0.033098,,0.032739,,0.033098,,0.032739,,0.032739,,0.032739,,,,,,,,0.032998,,0.03275,,0.033098,,0.032739,,0.032739,,0.013828,,0.013754,,0.013858,,0.01375,,0.007312,,39.686315,,39.986422,,39.566604,,40,,40,,,,,,,,,,,,3096,,0.032739,,0.032739,,0.032739,,0.032739,,0.01375,,40,, +7397,0,0.86901,1,1,0,2,5,,5,8,Pleasant Valley,Rd,942603,5.386,6.254,0,18.621651,3.7,5,1.738021,1.738021,1.738021,1.738021,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.747155,1.76485,1.738021,1.738021,1.747155,1.76485,1.738236,1.738292,1.738021,1.738021,1.738236,1.738292,1.754758,1.745735,1.738021,1.738021,1.754758,1.745735,1.738021,1.738021,1.738021,1.738021,1.738021,1.738021,,,,,,,1.747155,1.76485,1.738236,1.738292,1.754758,1.745735,1.738021,1.738021,1.738021,1.738021,0.680568,0.685877,0.677893,0.67791,0.682849,0.680142,0.677828,0.677828,0.356294,0.356294,29.843162,29.543945,29.996284,29.995314,29.713862,29.86744,30,30,30,30,,,,,,,,,,,2580,2580,1.738021,1.738021,1.738021,1.738021,1.738021,1.738021,1.738021,1.738021,0.677828,0.677828,30,30,, +8135,0,0.195671,1,1,0,2,5,,5,8,Pleasant Valley,Rd,942603,6.254,6.45,0,4.192949,3.7,5,0.391342,0.391342,0.391342,0.391342,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.462511,0.431684,0.391342,0.391342,0.462511,0.431684,0.39162,0.391594,0.391342,0.391342,0.39162,0.391594,0.434926,0.442179,0.391342,0.391342,0.434926,0.442179,0.391342,0.391342,0.391342,0.391342,0.391342,0.391342,,,,,,,0.462511,0.431684,0.39162,0.391594,0.434926,0.442179,0.391342,0.391342,0.391342,0.391342,0.173974,0.164726,0.152707,0.152699,0.165698,0.167874,0.152623,0.152623,0.080225,0.080225,25.383734,27.196389,29.97868,29.980694,26.993707,26.550933,30,30,30,30,,,,,,,,,,,2580,2580,0.391342,0.391342,0.391342,0.391342,0.391342,0.391342,0.391342,0.391342,0.152623,0.152623,30,30,, +2446,-1,0.671063,0,3,0,1,1,,4,3,W I 96,,657304,0.614,1.285,0,,0.8,7.5,,0.575197,,0.575197,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.577871,,0.575197,,0.577871,,0.576175,,0.575197,,0.576175,,0.660684,,0.575197,,0.660684,,0.575197,,0.575197,,0.575197,,,,,,,,0.577871,,0.576175,,0.660684,,0.575197,,0.575197,,0.294153,,0.293644,,0.318997,,0.293351,,0.160097,,69.676127,,69.881162,,60.942612,,70,,70,,,,,,,,,,,,22704,,0.575197,,0.575197,,0.575197,,0.575197,,0.293351,,70,, +2930,1,0.190249,3,0,0,1,1,,4,3,E I 96,,657303,0.566,0.756,0,,0.8,7.5,0.16307,,0.16307,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.205847,,0.16307,,0.205847,,0.163607,,0.16307,,0.163607,,0.166082,,0.16307,,0.166082,,0.16307,,0.16307,,0.16307,,,,,,,,0.205847,,0.163607,,0.166082,,0.16307,,0.16307,,0.095999,,0.083327,,0.084069,,0.083166,,0.045388,,55.453528,,69.770468,,68.730536,,70,,70,,,,,,,,,,,,22704,,0.16307,,0.16307,,0.16307,,0.16307,,0.083166,,70,,, +2933,1,0.199785,1,0,0,1,1,ROF,4,3,E I 96/Kent Lake,RAMP,657210,0,0.2,0,,2.24,5,0.299678,,0.299678,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.301638,,0.299678,,0.301638,,0.299965,,0.299678,,0.299965,,0.30293,,0.299678,,0.30293,,0.299678,,0.299678,,0.299678,,,,,,,,0.301638,,0.299965,,0.30293,,0.299678,,0.299678,,0.126453,,0.125951,,0.12684,,0.125865,,0.066928,,39.740128,,39.961705,,39.570618,,40,,40,,,,,,,,,,,,5160,,0.299678,,0.299678,,0.299678,,0.299678,,0.125865,,40,,, +2946,0,0.284742,1,1,0,2,4,,4,3,Kensington Lake,Rd,656903,0.581,0.865,0,6.101621,4.5,4.5,0.449593,0.449593,0.449593,0.449593,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.727119,0.604368,0.449593,0.449593,0.727119,0.604368,0.508762,0.534024,0.449593,0.449593,0.508762,0.534024,0.73677,0.964053,0.449593,0.449593,0.73677,0.964053,0.449593,0.449593,0.449593,0.449593,0.449593,0.449593,,,,,,,0.727119,0.604368,0.508762,0.534024,0.73677,0.964053,0.449593,0.449593,0.449593,0.449593,0.269389,0.232564,0.203882,0.211461,0.272285,0.34047,0.186132,0.186132,0.098761,0.098761,23.496205,28.268453,33.580593,31.992092,23.188429,17.721576,38,38,38,38,,,,,,,,,,,3096,3096,0.449593,0.449593,0.449593,0.449593,0.449593,0.449593,0.449593,0.449593,0.186132,0.186132,38,38,, +3002,1,0.303733,1,0,0,1,1,RON,4,3,Kent Lake/W I 96,RAMP,657307,0.054,0.358,0,,1.09,4,0.404977,,0.404977,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.406641,,0.404977,,0.406641,,0.405354,,0.404977,,0.405354,,0.407221,,0.404977,,0.407221,,0.404977,,0.404977,,0.404977,,,,,,,,0.406641,,0.405354,,0.407221,,0.404977,,0.404977,,0.176664,,0.176278,,0.176838,,0.176165,,0.094157,,44.815836,,44.958093,,44.75198,,45,,45,,,,,,,,,,,,5160,,0.404977,,0.404977,,0.404977,,0.404977,,0.176165,,45,,, +3085,0,0.89217,1,1,0,2,5,GRV,5,3,Martindale,Rd,656802,1.746,2.637,0,19.117921,5.55,5,2.676509,2.676509,2.676509,2.676509,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,,,,,,,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,0.963543,0.963543,0.963543,0.963543,0.963543,0.963543,0.963543,0.963543,0.499615,0.499615,20,20,20,20,19.999999,19.999999,20,20,20,20,,,,,,,,,,,2236,2236,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,2.676509,0.963543,0.963543,20,20,, +3364,0,0.24969,1,1,0,2,4,,4,3,Silver Lake,Rd,656604,0.546,0.796,0,5.350501,4.5,4.5,0.394247,0.394247,0.394247,0.394247,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.449326,0.414517,0.394247,0.394247,0.449326,0.414517,0.409669,0.399143,0.394247,0.394247,0.409669,0.399143,0.432701,0.442789,0.394247,0.394247,0.432701,0.442789,0.394247,0.394247,0.394247,0.394247,0.394247,0.394247,,,,,,,0.449326,0.414517,0.409669,0.399143,0.432701,0.442789,0.394247,0.394247,0.394247,0.394247,0.179742,0.169299,0.167845,0.164687,0.174755,0.177781,0.163218,0.163218,0.086603,0.086603,33.341917,36.141824,36.56955,37.533968,34.622982,33.834191,38,38,38,38,,,,,,,,,,,3096,3096,0.394247,0.394247,0.394247,0.394247,0.394247,0.394247,0.394247,0.394247,0.163218,0.163218,38,38,, +3398,0,0.39089,1,1,0,2,7,,4,3,11 Mile,Rd,656603,0.422,0.813,0,8.37622,6.55,4.5,0.938137,0.938137,0.938137,0.938137,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.010962,0.939768,0.938137,0.938137,1.010962,0.939768,0.945549,0.941903,0.938137,0.938137,0.945549,0.941903,0.966229,1.058136,0.938137,0.938137,0.966229,1.058136,0.938137,0.938137,0.938137,0.938137,0.938137,0.938137,,,,,,,1.010962,0.939768,0.945549,0.941903,0.966229,1.058136,0.938137,0.938137,0.938137,0.938137,0.373649,0.352291,0.354025,0.352931,0.360229,0.387801,0.351801,0.351801,0.183718,0.183718,23.199111,24.9566,24.804012,24.900029,24.273149,22.164847,25,25,25,25,,,,,,,,,,,2064,2064,0.938137,0.938137,0.938137,0.938137,0.938137,0.938137,0.938137,0.938137,0.351801,0.351801,25,25,, +3573,0,0.703696,1,1,0,2,4,,5,3,Pontiac,Trl,656507,4.291,4.995,0,15.079191,3,4,1.055543,1.055543,1.055543,1.055543,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.616396,1.213952,1.055543,1.055543,1.616396,1.213952,1.152892,1.130115,1.055543,1.055543,1.152892,1.130115,1.4364,1.719221,1.055543,1.055543,1.4364,1.719221,1.055543,1.055543,1.055543,1.055543,1.055543,1.055543,,,,,,,1.616396,1.213952,1.152892,1.130115,1.4364,1.719221,1.055543,1.055543,1.055543,1.055543,0.611584,0.490851,0.472533,0.4657,0.557585,0.642431,0.443328,0.443328,0.235738,0.235738,26.120909,34.780396,36.622444,37.360567,29.394144,24.558651,40,40,40,40,,,,,,,,,,,3096,3096,1.055543,1.055543,1.055543,1.055543,1.055543,1.055543,1.055543,1.055543,0.443328,0.443328,40,40,, +7886,0,1.082406,1,1,0,2,5,,4,8,Silver Lake,Rd,942310,0.554,1.636,0,23.19442,5.8,4.5,2.405347,2.405347,2.405347,2.405347,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.458771,2.424469,2.405347,2.405347,2.458771,2.424469,2.411656,2.410052,2.405347,2.405347,2.411656,2.410052,2.432542,2.484572,2.405347,2.405347,2.432542,2.484572,2.405347,2.405347,2.405347,2.405347,2.405347,2.405347,,,,,,,2.458771,2.424469,2.411656,2.410052,2.432542,2.484572,2.405347,2.405347,2.405347,2.405347,0.932465,0.922174,0.91833,0.917849,0.924596,0.940205,0.916437,0.916437,0.479867,0.479867,26.413346,26.787047,26.929368,26.947294,26.698153,26.139055,27,27,27,27,,,,,,,,,,,2580,2580,2.405347,2.405347,2.405347,2.405347,2.405347,2.405347,2.405347,2.405347,0.916437,0.916437,27,27,, +8124,0,1.433504,1,1,0,2,7,GRV,5,8,Dixboro,Rd,942604,0.494,1.927,0,30.717932,5.55,5,4.300511,4.300511,4.300511,4.300511,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,,,,,,,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,1.548184,1.548184,1.548184,1.548184,1.548184,1.548184,1.548184,1.548184,0.802762,0.802762,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,4.300511,1.548184,1.548184,20,20,, +8156,0,0.537695,1,1,0,2,5,,4,8,Kensington,Rd,942603,0,0.538,0,11.522043,5.8,4.5,1.194879,1.194879,1.194879,1.194879,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.200888,1.209638,1.194879,1.194879,1.200888,1.209638,1.197694,1.197955,1.194879,1.194879,1.197694,1.197955,1.213176,1.205539,1.194879,1.194879,1.213176,1.205539,1.194879,1.194879,1.194879,1.194879,1.194879,1.194879,,,,,,,1.200888,1.209638,1.197694,1.197955,1.213176,1.205539,1.194879,1.194879,1.194879,1.194879,0.457052,0.459677,0.456094,0.456172,0.460738,0.458447,0.455249,0.455249,0.238378,0.238378,26.864885,26.670553,26.93652,26.930665,26.592787,26.761245,27,27,27,27,,,,,,,,,,,2580,2580,1.194879,1.194879,1.194879,1.194879,1.194879,1.194879,1.194879,1.194879,0.455249,0.455249,27,27,, +19821,0,0.753075,1,1,0,2,4,,4,3,Grand River,Ave,4104142,0.967,1.72,0,16.137332,4.5,4.5,1.189067,1.189067,1.189067,1.189067,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.25479,1.189156,1.189067,1.189067,1.25479,1.189156,1.189067,1.189068,1.189067,1.189067,1.189067,1.189068,1.189067,1.287546,1.189067,1.189067,1.189067,1.287546,1.189067,1.189067,1.189067,1.189067,1.189067,1.189067,,,,,,,1.25479,1.189156,1.189067,1.189068,1.189067,1.287546,1.189067,1.189067,1.189067,1.189067,0.511991,0.492301,0.492274,0.492274,0.492274,0.521818,0.492274,0.492274,0.261198,0.261198,36.009623,37.997127,38,37.999942,38,35.093515,38,38,38,38,,,,,,,,,,,3096,3096,1.189067,1.189067,1.189067,1.189067,1.189067,1.189067,1.189067,1.189067,0.492274,0.492274,38,38,, +25267,0,0.487212,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.44025,0.15,4,1.948847,1.948847,1.948847,1.948847,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,,,,,,,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,0.672352,0.672352,0.672352,0.672352,0.672352,0.672352,0.672352,0.672352,0.34592,0.34592,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,1.948847,0.672352,0.672352,15,15,, +26141,0,0.845079,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.10884,0.15,4,3.380317,3.380317,3.380317,3.380317,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,,,,,,,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,1.166209,1.166209,1.166209,1.166209,1.166209,1.166209,1.166209,1.166209,0.600006,0.600006,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,3.380317,1.166209,1.166209,15,15,, +26986,0,0.655221,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.04046,0.15,4,2.620886,2.620886,2.620886,2.620886,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,,,,,,,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,0.904206,0.904206,0.904206,0.904206,0.904206,0.904206,0.904206,0.904206,0.465207,0.465207,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,2.620886,0.904206,0.904206,15,15,, +27074,0,0.172813,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.703132,0.15,4,0.691251,0.691251,0.691251,0.691251,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,,,,,,,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.238482,0.238482,0.238482,0.238482,0.238482,0.238482,0.238482,0.238482,0.122697,0.122697,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.691251,0.238482,0.238482,15,15,, +27078,0,0.877236,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.797917,0.15,4,3.508945,3.508945,3.508945,3.508945,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,,,,,,,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,1.210586,1.210586,1.210586,1.210586,1.210586,1.210586,1.210586,1.210586,0.622838,0.622838,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,3.508945,1.210586,1.210586,15,15,, +27079,0,0.440443,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,9.438062,0.15,4,1.761772,1.761772,1.761772,1.761772,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,,,,,,,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,0.607811,0.607811,0.607811,0.607811,0.607811,0.607811,0.607811,0.607811,0.312714,0.312714,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,1.761772,0.607811,0.607811,15,15,, +27068,0,1.277301,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,27.370727,0.15,4,5.109202,5.109202,5.109202,5.109202,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,,,,,,,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,1.762675,1.762675,1.762675,1.762675,1.762675,1.762675,1.762675,1.762675,0.906883,0.906883,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,5.109202,1.762675,1.762675,15,15,, +27066,0,0.391916,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.398208,0.15,4,1.567666,1.567666,1.567666,1.567666,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,,,,,,,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,0.540845,0.540845,0.540845,0.540845,0.540845,0.540845,0.540845,0.540845,0.278261,0.278261,15,14.999999,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,1.567666,0.540845,0.540845,15,15,, +3403,0,0.422559,1,1,0,2,7,GRV,4,3,11 Mile,Rd,656603,0,0.422,0,9.054828,6.55,4.5,1.267676,1.267676,1.267676,1.267676,20,20,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.267681,1.267717,1.267676,1.267676,1.267681,1.267717,1.26768,1.267682,1.267676,1.267676,1.26768,1.267682,1.267763,1.267737,1.267676,1.267676,1.267763,1.267737,1.267676,1.267676,1.267676,1.267676,1.267676,1.267676,,,,,,,1.267681,1.267717,1.26768,1.267682,1.267763,1.267737,1.267676,1.267676,1.267676,1.267676,0.456365,0.456376,0.456364,0.456365,0.456389,0.456382,0.456363,0.456363,0.236633,0.236633,19.999918,19.999348,19.999941,19.999897,19.998628,19.999044,20,20,20,20,,,,,,,,,,,2064,2064,1.267676,1.267676,1.267676,1.267676,1.267676,1.267676,1.267676,1.267676,0.456363,0.456363,20,20,, +7864,0,0.494309,1,1,0,2,7,GRV,5,8,Dixboro,Rd,942604,0,0.494,0,10.592335,5.55,5,1.482927,1.482927,1.482927,1.482927,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.482934,1.482928,1.482927,1.482927,1.482934,1.482928,1.482928,1.482927,1.482927,1.482927,1.482928,1.482927,1.482938,1.482943,1.482927,1.482927,1.482938,1.482943,1.482927,1.482927,1.482927,1.482927,1.482927,1.482927,,,,,,,1.482934,1.482928,1.482928,1.482927,1.482938,1.482943,1.482927,1.482927,1.482927,1.482927,0.533856,0.533854,0.533854,0.533854,0.533857,0.533859,0.533854,0.533854,0.276813,0.276813,19.999905,19.999991,19.999988,19.999993,19.999854,19.999782,20,20,20,20,,,,,,,,,,,2236,2236,1.482927,1.482927,1.482927,1.482927,1.482927,1.482927,1.482927,1.482927,0.533854,0.533854,20,20,, +29803,0,0.110379,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.365269,0.15,4,0.441517,0.441517,0.441517,0.441517,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,,,,,,,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.152323,0.152323,0.152323,0.152323,0.152323,0.152323,0.152323,0.152323,0.078369,0.078369,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.441517,0.152323,0.152323,15,15,, +7681,1,0.767521,3,0,0,1,1,,5,8,E I 96,,935105,26.7,27.467,0,,1.02,7,0.657875,,0.657875,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.069544,,0.657875,,1.069544,,0.665642,,0.657875,,0.665642,,0.704548,,0.657875,,0.704548,,0.657875,,0.657875,,0.657875,,,,,,,,1.069544,,0.665642,,0.704548,,0.657875,,0.657875,,0.459017,,0.337846,,0.349518,,0.335516,,0.183109,,43.056945,,69.18327,,65.362899,,70,,70,,,,,,,,,,,,22704,,0.657875,,0.657875,,0.657875,,0.657875,,0.335516,,70,,, +7404,0,0.204532,2,2,0,2,3,,5,8,Kensington,Rd,942603,1.629,1.833,0,4.382836,1.7,4,0.245439,0.245439,0.245439,0.245439,50,50,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.245791,0.258303,0.245439,0.245439,0.245791,0.258303,0.245557,0.24554,0.245439,0.245439,0.245557,0.24554,0.246119,0.248696,0.245439,0.245439,0.246119,0.248696,0.245439,0.245439,0.245439,0.245439,0.245439,0.245439,,,,,,,0.245791,0.258303,0.245557,0.24554,0.246119,0.248696,0.245439,0.245439,0.245439,0.245439,0.110553,0.114307,0.110483,0.110478,0.110652,0.111425,0.110447,0.110447,0.059314,0.059314,49.928411,47.509818,49.975941,49.979324,49.861803,49.345122,50,50,50,50,,,,,,,,,,,6192,6192,0.245439,0.245439,0.245439,0.245439,0.245439,0.245439,0.245439,0.245439,0.110447,0.110447,50,50,, +7619,1,0.209973,1,0,0,1,1,RON,5,8,Kensington/E I 96,RAMP,935206,0,0.21,0,,1.09,4,0.279964,,0.279964,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.293258,,0.279964,,0.293258,,0.282318,,0.279964,,0.282318,,0.300249,,0.279964,,0.300249,,0.279964,,0.279964,,0.279964,,,,,,,,0.293258,,0.282318,,0.300249,,0.279964,,0.279964,,0.125773,,0.12249,,0.12787,,0.121784,,0.065092,,42.960011,,44.624858,,41.959844,,45,,45,,,,,,,,,,,,5160,,0.279964,,0.279964,,0.279964,,0.279964,,0.121784,,45,,, +7621,1,0.219341,1,0,0,1,1,ROF,5,8,E I 96/Kensington,RAMP,935205,0,0.219,0,,2.24,5,0.329012,,0.329012,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.329193,,0.329012,,0.329193,,0.32905,,0.329012,,0.32905,,0.329124,,0.329012,,0.329124,,0.329012,,0.329012,,0.329012,,,,,,,,0.329193,,0.32905,,0.329124,,0.329012,,0.329012,,0.138239,,0.138196,,0.138218,,0.138185,,0.073479,,39.977918,,39.995369,,39.98641,,40,,40,,,,,,,,,,,,5160,,0.329012,,0.329012,,0.329012,,0.329012,,0.138185,,40,,, +7682,1,0.194161,3,0,0,1,1,,5,8,E I 96,,935105,26.506,26.7,0,,1.02,7,0.166424,,0.166424,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.212004,,0.166424,,0.212004,,0.167181,,0.166424,,0.167181,,0.169658,,0.166424,,0.169658,,0.166424,,0.166424,,0.166424,,,,,,,,0.212004,,0.167181,,0.169658,,0.166424,,0.166424,,0.09855,,0.085103,,0.085846,,0.084876,,0.046321,,54.950288,,69.682976,,68.665571,,70,,70,,,,,,,,,,,,22704,,0.166424,,0.166424,,0.166424,,0.166424,,0.084876,,70,,, +7882,0,0.007853,2,2,0,2,3,,5,8,Kensington,Rd,942603,1.621,1.629,0,0.168273,1.7,4,0.009423,0.009423,0.009423,0.009423,50,50,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.009423,0.010156,0.009423,0.009423,0.009423,0.010156,0.009423,0.009434,0.009423,0.009423,0.009423,0.009434,0.009425,0.009628,0.009423,0.009423,0.009425,0.009628,0.009423,0.009423,0.009423,0.009423,0.009423,0.009423,,,,,,,0.009423,0.010156,0.009423,0.009434,0.009425,0.009628,0.009423,0.009423,0.009423,0.009423,0.004241,0.00446,0.004241,0.004244,0.004241,0.004302,0.00424,0.00424,0.002277,0.002277,49.999183,46.391633,49.999515,49.944627,49.992622,48.934855,50,50,50,50,,,,,,,,,,,6192,6192,0.009423,0.009423,0.009423,0.009423,0.009423,0.009423,0.009423,0.009423,0.00424,0.00424,50,50,, +8144,0,0.054382,1,1,0,2,3,,5,8,Kensington,Rd,942603,1.833,1.888,0,1.165324,1.7,4,0.065258,0.065258,0.065258,0.065258,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.066755,0.088236,0.065258,0.065258,0.066755,0.088236,0.065761,0.06569,0.065258,0.065258,0.065761,0.06569,0.068154,0.07206,0.065258,0.065258,0.068154,0.07206,0.065258,0.065258,0.065258,0.065258,0.065258,0.065258,,,,,,,0.066755,0.088236,0.065761,0.06569,0.068154,0.07206,0.065258,0.065258,0.065258,0.065258,0.029815,0.03626,0.029517,0.029496,0.030235,0.031407,0.029366,0.029366,0.015771,0.015771,48.878665,36.979334,49.617818,49.67123,47.875466,45.280635,50,50,50,50,,,,,,,,,,,3096,3096,0.065258,0.065258,0.065258,0.065258,0.065258,0.065258,0.065258,0.065258,0.029366,0.029366,50,50,, +7402,0,0.004642,1,1,0,2,3,,5,8,Kensington,Rd,942603,1.888,1.892,0,0.09948,1.7,4,0.005571,0.005571,0.005571,0.005571,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.007471,0.007532,0.005571,0.005571,0.007471,0.007532,0.005976,0.005608,0.005571,0.005571,0.005976,0.005608,0.013313,0.006152,0.005571,0.005571,0.013313,0.006152,0.005571,0.005571,0.005571,0.005571,0.005571,0.005571,,,,,,,0.007471,0.007532,0.005976,0.005608,0.013313,0.006152,0.005571,0.005571,0.005571,0.005571,0.003077,0.003095,0.002628,0.002518,0.00483,0.002681,0.002507,0.002507,0.001346,0.001346,37.281639,36.979334,46.613647,49.67123,20.922012,45.280635,50,50,50,50,,,,,,,,,,,3096,3096,0.005571,0.005571,0.005571,0.005571,0.005571,0.005571,0.005571,0.005571,0.002507,0.002507,50,50,, +2693,0,0.580731,1,1,0,2,4,,4,3,Kent Lake,Rd,656903,0,0.581,0,12.444233,4.5,4.5,0.916943,0.916943,0.916943,0.916943,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.04532,1.096002,0.916943,0.916943,1.04532,1.096002,0.952146,0.995823,0.916943,0.916943,0.952146,0.995823,1.145439,1.231536,0.916943,0.916943,1.145439,1.231536,0.916943,0.916943,0.916943,0.916943,0.916943,0.916943,,,,,,,1.04532,1.096002,0.952146,0.995823,1.145439,1.231536,0.916943,0.916943,0.916943,0.916943,0.418128,0.433332,0.390175,0.403278,0.448163,0.473992,0.379615,0.379615,0.201422,0.201422,33.333176,31.791788,36.595075,34.990008,30.419657,28.292992,38,38,38,38,,,,,,,,,,,3096,3096,0.916943,0.916943,0.916943,0.916943,0.916943,0.916943,0.916943,0.916943,0.379615,0.379615,38,38,, +3046,0,0.315832,1,1,0,2,5,,4,3,Silver Lake,Rd,656604,0.23,0.546,0,6.767828,5.8,4.5,0.701849,0.701849,0.701849,0.701849,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.71503,0.705622,0.701849,0.701849,0.71503,0.705622,0.70335,0.702924,0.701849,0.701849,0.70335,0.702924,0.706439,0.71857,0.701849,0.701849,0.706439,0.71857,0.701849,0.701849,0.701849,0.701849,0.701849,0.701849,,,,,,,0.71503,0.705622,0.70335,0.702924,0.706439,0.71857,0.701849,0.701849,0.701849,0.701849,0.271359,0.268536,0.267855,0.267727,0.268781,0.272421,0.267404,0.267404,0.140019,0.140019,26.502257,26.855629,26.942378,26.958714,26.824581,26.371695,27,27,27,27,,,,,,,,,,,2580,2580,0.701849,0.701849,0.701849,0.701849,0.701849,0.701849,0.701849,0.701849,0.267404,0.267404,27,27,, +3369,0,0.23027,1,1,0,2,5,,4,3,Silver Lake,Rd,656604,0,0.23,0,4.934356,5.8,4.5,0.511711,0.511711,0.511711,0.511711,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.522548,0.515111,0.511711,0.511711,0.522548,0.515111,0.513053,0.512712,0.511711,0.511711,0.513053,0.512712,0.516522,0.527297,0.511711,0.511711,0.516522,0.527297,0.511711,0.511711,0.511711,0.511711,0.511711,0.511711,,,,,,,0.522548,0.515111,0.513053,0.512712,0.516522,0.527297,0.511711,0.511711,0.511711,0.511711,0.198213,0.195982,0.195365,0.195262,0.196405,0.199638,0.194962,0.194962,0.102086,0.102086,26.440075,26.821784,26.929368,26.947294,26.748516,26.201938,27,27,27,27,,,,,,,,,,,2580,2580,0.511711,0.511711,0.511711,0.511711,0.511711,0.511711,0.511711,0.511711,0.194962,0.194962,27,27,, +2671,1,0.56618,3,0,0,1,1,,4,3,E I 96,,657303,0,0.566,0,,0.8,7.5,0.485298,,0.485298,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.715306,,0.485298,,0.715306,,0.488565,,0.485298,,0.488565,,0.507619,,0.485298,,0.507619,,0.485298,,0.485298,,0.485298,,,,,,,,0.715306,,0.488565,,0.507619,,0.485298,,0.485298,,0.316504,,0.248482,,0.254198,,0.247502,,0.135074,,47.491294,,69.531804,,66.921908,,70,,70,,,,,,,,,,,,22704,,0.485298,,0.485298,,0.485298,,0.485298,,0.247502,,70,,, +2721,-1,0.614082,0,3,0,1,1,,4,3,W I 96,,657304,0,0.614,0,,0.8,7.5,,0.526356,,0.526356,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.531776,,0.526356,,0.531776,,0.528044,,0.526356,,0.528044,,0.66182,,0.526356,,0.66182,,0.526356,,0.526356,,0.526356,,,,,,,,0.531776,,0.528044,,0.66182,,0.526356,,0.526356,,0.270068,,0.268948,,0.309081,,0.268442,,0.146502,,69.286547,,69.776192,,55.672116,,70,,70,,,,,,,,,,,,22704,,0.526356,,0.526356,,0.526356,,0.526356,,0.268442,,70,, +2797,0,0.753571,1,1,0,2,5,GRV,5,3,Martindale,Rd,656802,0.992,1.746,0,16.147952,5.55,5,2.260713,2.260713,2.260713,2.260713,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.260728,2.262137,2.260713,2.260713,2.260728,2.262137,2.26072,2.260722,2.260713,2.260713,2.26072,2.260722,2.262759,2.260943,2.260713,2.260713,2.262759,2.260943,2.260713,2.260713,2.260713,2.260713,2.260713,2.260713,,,,,,,2.260728,2.262137,2.26072,2.260722,2.262759,2.260943,2.260713,2.260713,2.260713,2.260713,0.813861,0.814284,0.813859,0.813859,0.814471,0.813926,0.813857,0.813857,0.422,0.422,19.999871,19.987415,19.999944,19.999924,19.981915,19.997966,20,20,20,20,,,,,,,,,,,2236,2236,2.260713,2.260713,2.260713,2.260713,2.260713,2.260713,2.260713,2.260713,0.813857,0.813857,20,20,, +3072,0,0.644462,1,1,1,2,5,,4,3,11 Mile,Rd,656603,0.813,1.457,0,13.809905,5.8,4.5,1.432138,1.432138,1.432138,1.432138,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,1.432668,1.432148,1.432138,1.432138,1.432668,1.432148,1.432183,1.432153,1.432138,1.432138,1.432183,1.432153,1.432253,1.43282,1.432138,1.432138,1.432253,1.43282,1.432138,1.432138,1.432138,1.432138,1.432138,1.432138,,,,,,,1.432668,1.432148,1.432183,1.432153,1.432253,1.43282,1.432138,1.432138,1.432138,1.432138,0.545804,0.545648,0.545658,0.545649,0.545679,0.545849,0.545645,0.545645,0.285712,0.285712,26.990022,26.999813,26.999157,26.999724,26.997832,26.98715,27,27,27,27,,,,,,,,,,,2838,2838,1.432138,1.432138,1.432138,1.432138,1.432138,1.432138,1.432138,1.432138,0.545645,0.545645,27,27,, +3577,0,1.065978,1,1,0,2,4,,4,3,Pontiac,Trl,656507,2.993,4.058,0,22.842389,4.5,4.5,1.683123,1.683123,1.683123,1.683123,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.119239,2.233804,1.683123,1.683123,2.119239,2.233804,1.807982,1.788157,1.683123,1.683123,1.807982,1.788157,2.706361,2.524065,1.683123,1.683123,2.706361,2.524065,1.683123,1.683123,1.683123,1.683123,1.683123,1.683123,,,,,,,2.119239,2.233804,1.807982,1.788157,2.706361,2.524065,1.683123,1.683123,1.683123,1.683123,0.827648,0.862017,0.734271,0.728323,1.003784,0.949096,0.696813,0.696813,0.369726,0.369726,30.180028,28.63218,35.375731,35.767942,23.632731,25.339557,38,38,38,38,,,,,,,,,,,3096,3096,1.683123,1.683123,1.683123,1.683123,1.683123,1.683123,1.683123,1.683123,0.696813,0.696813,38,38,, +25261,0,0.361195,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.739883,0.15,4,1.444778,1.444778,1.444778,1.444778,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,,,,,,,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,0.498448,0.498448,0.498448,0.498448,0.498448,0.498448,0.498448,0.498448,0.256448,0.256448,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,1.444778,0.498448,0.498448,15,15,, +25263,0,0.489357,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.486217,0.15,4,1.957427,1.957427,1.957427,1.957427,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,,,,,,,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,0.675312,0.675312,0.675312,0.675312,0.675312,0.675312,0.675312,0.675312,0.347443,0.347443,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,1.957427,0.675312,0.675312,15,15,, +25265,0,0.74478,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.959568,0.15,4,2.979119,2.979119,2.979119,2.979119,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,,,,,,,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,1.027796,1.027796,1.027796,1.027796,1.027796,1.027796,1.027796,1.027796,0.528794,0.528794,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,2.979119,1.027796,1.027796,15,15,, +27081,0,0.538459,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.53841,0.15,4,2.153836,2.153836,2.153836,2.153836,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,,,,,,,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,0.743074,0.743074,0.743074,0.743074,0.743074,0.743074,0.743074,0.743074,0.382306,0.382306,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,2.153836,0.743074,0.743074,15,15,, +25476,0,0.399951,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.570385,0.15,4,1.599805,1.599805,1.599805,1.599805,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.599805,1.599806,1.599805,1.599805,1.599805,1.599806,1.599805,1.599805,1.599805,1.599805,1.599805,1.599805,1.599806,1.599805,1.599805,1.599805,1.599806,1.599805,1.599805,1.599805,1.599805,1.599805,1.599805,1.599805,,,,,,,1.599805,1.599806,1.599805,1.599805,1.599806,1.599805,1.599805,1.599805,1.599805,1.599805,0.551933,0.551933,0.551933,0.551933,0.551933,0.551933,0.551933,0.551933,0.283965,0.283965,15,14.999995,14.999999,14.999999,14.999997,15,15,15,15,15,,,,,,,,,,,34400,34400,1.599805,1.599805,1.599805,1.599805,1.599805,1.599805,1.599805,1.599805,0.551933,0.551933,15,15,, +2614,0,0.433855,1,1,1,2,4,,4,3,Lafayette,St,656507,2.559,2.993,0,9.2969,4.5,4.5,0.685035,0.685035,0.685035,0.685035,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.71964,0.784431,0.685035,0.685035,0.71964,0.784431,0.700105,0.6986,0.685035,0.685035,0.700105,0.6986,0.81555,0.757339,0.685035,0.685035,0.81555,0.757339,0.685035,0.685035,0.685035,0.685035,0.685035,0.685035,,,,,,,0.71964,0.784431,0.700105,0.6986,0.81555,0.757339,0.685035,0.685035,0.685035,0.685035,0.293986,0.313423,0.288126,0.287674,0.322759,0.305296,0.283604,0.283604,0.150479,0.150479,36.172687,33.184961,37.181999,37.262137,31.918738,34.372071,38,38,38,38,,,,,,,,,,,3406,3406,0.685035,0.685035,0.685035,0.685035,0.685035,0.685035,0.685035,0.685035,0.283604,0.283604,38,38,, +3579,0,0.072139,1,1,1,2,4,,4,3,Lafayette,St,656507,2.487,2.559,0,1.545844,4.5,4.5,0.113904,0.113904,0.113904,0.113904,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.127524,0.218496,0.113904,0.113904,0.127524,0.218496,0.126384,0.125707,0.113904,0.113904,0.126384,0.125707,0.241321,0.16021,0.113904,0.113904,0.241321,0.16021,0.113904,0.113904,0.113904,0.113904,0.113904,0.113904,,,,,,,0.127524,0.218496,0.126384,0.125707,0.241321,0.16021,0.113904,0.113904,0.113904,0.113904,0.051242,0.078534,0.0509,0.050697,0.085381,0.061048,0.047156,0.047156,0.025021,0.025021,33.941436,19.809839,34.247665,34.43215,17.936158,27.016863,38,38,38,38,,,,,,,,,,,3406,3406,0.113904,0.113904,0.113904,0.113904,0.113904,0.113904,0.113904,0.113904,0.047156,0.047156,38,38,, +2611,0,0.232864,1,1,0,2,4,,5,3,Pontiac,Trl,656507,4.058,4.291,0,4.989944,3,4,0.349296,0.349296,0.349296,0.349296,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.429348,0.43138,0.349296,0.349296,0.429348,0.43138,0.373057,0.370406,0.349296,0.349296,0.373057,0.370406,0.498543,0.472696,0.349296,0.349296,0.498543,0.472696,0.349296,0.349296,0.349296,0.349296,0.349296,0.349296,,,,,,,0.429348,0.43138,0.373057,0.370406,0.498543,0.472696,0.349296,0.349296,0.349296,0.349296,0.17072,0.17133,0.153833,0.153037,0.191478,0.183724,0.146704,0.146704,0.078009,0.078009,32.542031,32.388679,37.452336,37.720313,28.025345,29.557794,40,40,40,40,,,,,,,,,,,3096,3096,0.349296,0.349296,0.349296,0.349296,0.349296,0.349296,0.349296,0.349296,0.146704,0.146704,40,40,, +27077,0,0.403024,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,8.636225,0.15,4,1.612095,1.612095,1.612095,1.612095,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,,,,,,,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,0.556173,0.556173,0.556173,0.556173,0.556173,0.556173,0.556173,0.556173,0.286147,0.286147,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,1.612095,0.556173,0.556173,15,15,, +3070,0,0.635844,1,1,0,2,5,,5,3,11 Mile,Rd,656603,1.564,2.2,0,13.625228,3.7,5,1.271688,1.271688,1.271688,1.271688,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.327762,1.275845,1.271688,1.271688,1.327762,1.275845,1.274702,1.272458,1.271688,1.271688,1.274702,1.272458,1.290627,1.360251,1.271688,1.271688,1.290627,1.360251,1.271688,1.271688,1.271688,1.271688,1.271688,1.271688,,,,,,,1.327762,1.275845,1.274702,1.272458,1.290627,1.360251,1.271688,1.271688,1.271688,1.271688,0.512781,0.497205,0.496863,0.496189,0.50164,0.522527,0.495958,0.495958,0.260696,0.260696,28.73303,29.902258,29.929058,29.981844,29.55977,28.046758,30,30,30,30,,,,,,,,,,,2580,2580,1.271688,1.271688,1.271688,1.271688,1.271688,1.271688,1.271688,1.271688,0.495958,0.495958,30,30,, +3089,0,0.431982,1,1,0,2,5,,4,3,Martindale,Rd,656802,0.56,0.992,0,9.256767,5.8,4.5,0.959961,0.959961,0.959961,0.959961,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.959962,0.960295,0.959961,0.959961,0.959962,0.960295,0.959961,0.959961,0.959961,0.959961,0.959961,0.959961,0.960244,0.960025,0.959961,0.959961,0.960244,0.960025,0.959961,0.959961,0.959961,0.959961,0.959961,0.959961,,,,,,,0.959962,0.960295,0.959961,0.959961,0.960244,0.960025,0.959961,0.959961,0.959961,0.959961,0.365745,0.365845,0.365745,0.365745,0.36583,0.365764,0.365745,0.365745,0.191512,0.191512,26.999973,26.990614,27,26.999998,26.992051,26.998194,27,27,27,27,,,,,,,,,,,2580,2580,0.959961,0.959961,0.959961,0.959961,0.959961,0.959961,0.959961,0.959961,0.365745,0.365745,27,27,, +3395,0,0.106587,1,1,1,2,5,,4,3,11 Mile,Rd,656603,1.457,1.564,0,2.284013,5.8,4.5,0.236861,0.236861,0.236861,0.236861,27,27,8250,8250,1873,1873,4125,4125,2661,2661,2838,2838,2835,2835,0.254524,0.238652,0.236861,0.236861,0.254524,0.238652,0.238582,0.237392,0.236861,0.236861,0.238582,0.237392,0.244338,0.259758,0.236861,0.236861,0.244338,0.259758,0.236861,0.236861,0.236861,0.236861,0.236861,0.236861,,,,,,,0.254524,0.238652,0.238582,0.237392,0.244338,0.259758,0.236861,0.236861,0.236861,0.236861,0.095543,0.090781,0.09076,0.090403,0.092487,0.097113,0.090244,0.090244,0.047254,0.047254,25.126276,26.797328,26.80515,26.939582,26.173722,24.619949,27,27,27,27,,,,,,,,,,,2838,2838,0.236861,0.236861,0.236861,0.236861,0.236861,0.236861,0.236861,0.236861,0.090244,0.090244,27,27,, +25260,0,0.501489,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.746187,0.15,4,2.005955,2.005955,2.005955,2.005955,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,,,,,,,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,0.692054,0.692054,0.692054,0.692054,0.692054,0.692054,0.692054,0.692054,0.356057,0.356057,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,2.005955,0.692054,0.692054,15,15,, +26839,0,0.621312,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,13.313821,0.15,4,2.485247,2.485247,2.485247,2.485247,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,,,,,,,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,0.85741,0.85741,0.85741,0.85741,0.85741,0.85741,0.85741,0.85741,0.441131,0.441131,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,2.485247,0.85741,0.85741,15,15,, +26987,0,0.952222,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.404759,0.15,4,3.808888,3.808888,3.808888,3.808888,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,,,,,,,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,1.314067,1.314067,1.314067,1.314067,1.314067,1.314067,1.314067,1.314067,0.676078,0.676078,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,3.808888,1.314067,1.314067,15,15,, +2673,1,0.299554,1,0,0,1,1,RON,4,3,N Kent Lake/E I 96,RAMP,657301,0,0.299,0,,1.09,4,0.399405,,0.399405,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.400713,,0.399405,,0.400713,,0.399473,,0.399405,,0.399473,,0.399494,,0.399405,,0.399494,,0.399405,,0.399405,,0.399405,,,,,,,,0.400713,,0.399473,,0.399494,,0.399405,,0.399405,,0.174134,,0.173762,,0.173768,,0.173741,,0.092862,,44.85313,,44.992363,,44.990011,,45,,45,,,,,,,,,,,,5160,,0.399405,,0.399405,,0.399405,,0.399405,,0.173741,,45,,, +2683,0,0.174727,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,0.902,1.077,0,3.744145,4.5,4.5,0.275884,0.275884,0.275884,0.275884,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.277244,0.275941,0.275884,0.275884,0.277244,0.275941,0.276122,0.275967,0.275884,0.275884,0.276122,0.275967,0.277983,0.279629,0.275884,0.275884,0.277983,0.279629,0.275884,0.275884,0.275884,0.275884,0.275884,0.275884,,,,,,,0.277244,0.275941,0.276122,0.275967,0.277983,0.279629,0.275884,0.275884,0.275884,0.275884,0.114624,0.114233,0.114287,0.114241,0.114846,0.115339,0.114216,0.114216,0.060603,0.060603,37.813627,37.992139,37.967327,37.988677,37.713104,37.491144,38,38,38,38,,,,,,,,,,,6192,6192,0.275884,0.275884,0.275884,0.275884,0.275884,0.275884,0.275884,0.275884,0.114216,0.114216,38,38,, +2932,1,0.153031,1,0,0,1,1,RON,4,3,S Kent Lake/E I 96,RAMP,657302,0,0.153,0,,1.09,4,0.204042,,0.204042,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.204042,,0.204042,,0.204042,,0.204042,,0.204042,,0.204042,,0.204042,,0.204042,,0.204042,,0.204042,,0.204042,,0.204042,,,,,,,,0.204042,,0.204042,,0.204042,,0.204042,,0.204042,,0.088758,,0.088758,,0.088758,,0.088758,,0.04744,,45,,45,,45,,45,,45,,,,,,,,,,,,5160,,0.204042,,0.204042,,0.204042,,0.204042,,0.088758,,45,,, +3075,0,0.335208,1,1,0,2,5,,4,3,Martindale,Rd,656802,3.495,3.83,0,7.183027,5.8,4.5,0.744907,0.744907,0.744907,0.744907,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,,,,,,,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.283809,0.283809,0.283809,0.283809,0.283809,0.283809,0.283809,0.283809,0.148609,0.148609,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.744907,0.283809,0.283809,27,27,, +3568,0,0.438688,1,1,0,2,4,,4,3,Pontiac,Trl,656507,5.309,5.747,0,9.400455,4.5,4.5,0.692665,0.692665,0.692665,0.692665,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.824183,0.694106,0.692665,0.692665,0.824183,0.694106,0.696765,0.692836,0.692665,0.692665,0.696765,0.692836,0.702713,0.763347,0.692665,0.692665,0.702713,0.763347,0.692665,0.692665,0.692665,0.692665,0.692665,0.692665,,,,,,,0.824183,0.694106,0.696765,0.692836,0.702713,0.763347,0.692665,0.692665,0.692665,0.692665,0.326219,0.287195,0.287993,0.286815,0.289778,0.307968,0.286763,0.286763,0.152155,0.152155,31.936215,37.921138,37.776397,37.990606,37.456627,34.481395,38,38,38,38,,,,,,,,,,,3096,3096,0.692665,0.692665,0.692665,0.692665,0.692665,0.692665,0.692665,0.692665,0.286763,0.286763,38,38,, +19817,0,0.702401,1,1,0,2,4,,4,3,Grand River,Ave,4104142,2.577,3.28,0,15.051443,4.5,4.5,1.109054,1.109054,1.109054,1.109054,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.203091,1.109616,1.109054,1.109054,1.203091,1.109616,1.109096,1.109067,1.109054,1.109054,1.109096,1.109067,1.110347,1.116927,1.109054,1.109054,1.110347,1.116927,1.109054,1.109054,1.109054,1.109054,1.109054,1.109054,,,,,,,1.203091,1.109616,1.109096,1.109067,1.110347,1.116927,1.109054,1.109054,1.109054,1.109054,0.48736,0.459317,0.459161,0.459152,0.459536,0.46151,0.459148,0.459148,0.243622,0.243622,35.029792,37.980738,37.998568,37.999557,37.955741,37.732123,38,38,38,38,,,,,,,,,,,3096,3096,1.109054,1.109054,1.109054,1.109054,1.109054,1.109054,1.109054,1.109054,0.459148,0.459148,38,38,, +19818,0,0.457225,1,1,0,2,4,,4,3,Grand River,Ave,4104142,2.12,2.577,0,9.79768,4.5,4.5,0.721934,0.721934,0.721934,0.721934,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.783148,0.7223,0.721934,0.721934,0.783148,0.7223,0.721961,0.721943,0.721934,0.721934,0.721961,0.721943,0.722776,0.72706,0.721934,0.721934,0.722776,0.72706,0.721934,0.721934,0.721934,0.721934,0.721934,0.721934,,,,,,,0.783148,0.7223,0.721961,0.721943,0.722776,0.72706,0.721934,0.721934,0.721934,0.721934,0.317245,0.298991,0.298889,0.298883,0.299133,0.300418,0.298881,0.298881,0.158585,0.158585,35.029792,37.980738,37.998568,37.999557,37.955741,37.732123,38,38,38,38,,,,,,,,,,,3096,3096,0.721934,0.721934,0.721934,0.721934,0.721934,0.721934,0.721934,0.721934,0.298881,0.298881,38,38,, +19819,0,0.351311,1,1,0,2,4,,4,3,Grand River,Ave,4104142,1.769,2.12,0,7.528083,4.5,4.5,0.554701,0.554701,0.554701,0.554701,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.584554,0.554797,0.554701,0.554701,0.584554,0.554797,0.554722,0.554703,0.554701,0.554701,0.554722,0.554703,0.554889,0.55608,0.554701,0.554701,0.554889,0.55608,0.554701,0.554701,0.554701,0.554701,0.554701,0.554701,,,,,,,0.584554,0.554797,0.554722,0.554703,0.554889,0.55608,0.554701,0.554701,0.554701,0.554701,0.238602,0.229675,0.229652,0.229647,0.229703,0.23006,0.229646,0.229646,0.121849,0.121849,36.059318,37.993436,37.998568,37.999866,37.987122,37.90572,38,38,38,38,,,,,,,,,,,3096,3096,0.554701,0.554701,0.554701,0.554701,0.554701,0.554701,0.554701,0.554701,0.229646,0.229646,38,38,, +26979,0,0.502232,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.762111,0.15,4,2.008927,2.008927,2.008927,2.008927,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,,,,,,,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,0.69308,0.69308,0.69308,0.69308,0.69308,0.69308,0.69308,0.69308,0.356585,0.356585,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,2.008927,0.69308,0.69308,15,15,, +26982,0,0.821448,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.602463,0.15,4,3.285793,3.285793,3.285793,3.285793,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,,,,,,,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,1.133599,1.133599,1.133599,1.133599,1.133599,1.133599,1.133599,1.133599,0.583228,0.583228,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,3.285793,1.133599,1.133599,15,15,, +2607,0,0.314097,1,1,0,2,4,,4,3,Pontiac,Trl,656507,4.995,5.309,0,6.73066,4.5,4.5,0.495943,0.495943,0.495943,0.495943,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.533091,0.496212,0.495943,0.495943,0.533091,0.496212,0.496954,0.495963,0.495943,0.495943,0.496954,0.495963,0.499873,0.516981,0.495943,0.495943,0.499873,0.516981,0.495943,0.495943,0.495943,0.495943,0.495943,0.495943,,,,,,,0.533091,0.496212,0.496954,0.495963,0.499873,0.516981,0.495943,0.495943,0.495943,0.495943,0.216465,0.205401,0.205624,0.205326,0.206499,0.211632,0.205321,0.205321,0.108942,0.108942,35.352057,37.97943,37.922686,37.998493,37.70127,36.453641,38,38,38,38,,,,,,,,,,,3096,3096,0.495943,0.495943,0.495943,0.495943,0.495943,0.495943,0.495943,0.495943,0.205321,0.205321,38,38,, +27076,0,0.64653,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.85421,0.15,4,2.586119,2.586119,2.586119,2.586119,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,,,,,,,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,0.892211,0.892211,0.892211,0.892211,0.892211,0.892211,0.892211,0.892211,0.459036,0.459036,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,2.586119,0.892211,0.892211,15,15,, +2684,0,0.030383,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,0.865,0.896,0,0.651069,4.5,4.5,0.047973,0.047973,0.047973,0.047973,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.052096,0.047983,0.047973,0.047973,0.052096,0.047983,0.048339,0.047988,0.047973,0.047973,0.048339,0.047988,0.049693,0.048584,0.047973,0.047973,0.049693,0.048584,0.047973,0.047973,0.047973,0.047973,0.047973,0.047973,,,,,,,0.052096,0.047983,0.048339,0.047988,0.049693,0.048584,0.047973,0.047973,0.047973,0.047973,0.021098,0.019864,0.019971,0.019865,0.020377,0.020044,0.019861,0.019861,0.010538,0.010538,34.993034,37.992793,37.712272,37.988677,36.685179,37.522318,38,38,38,38,,,,,,,,,,,6192,6192,0.047973,0.047973,0.047973,0.047973,0.047973,0.047973,0.047973,0.047973,0.019861,0.019861,38,38,, +19820,0,0.049383,1,1,0,2,4,,4,3,Grand River,Ave,4104142,1.72,1.769,0,1.05821,4.5,4.5,0.077973,0.077973,0.077973,0.077973,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.290827,0.077979,0.077973,0.077973,0.290827,0.077979,0.081221,0.077973,0.077973,0.077973,0.081221,0.077973,0.106843,0.084431,0.077973,0.077973,0.106843,0.084431,0.077973,0.077973,0.077973,0.077973,0.077973,0.077973,,,,,,,0.290827,0.077979,0.081221,0.077973,0.106843,0.084431,0.077973,0.077973,0.077973,0.077973,0.096137,0.032283,0.033255,0.032281,0.040942,0.034218,0.032281,0.032281,0.017128,0.017128,10.188141,37.997127,36.480428,37.999942,27.73205,35.093515,38,38,38,38,,,,,,,,,,,3096,3096,0.077973,0.077973,0.077973,0.077973,0.077973,0.077973,0.077973,0.077973,0.032281,0.032281,38,38,, +2945,0,0.006935,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,0.896,0.902,0,0.148598,4.5,4.5,0.010949,0.010949,0.010949,0.010949,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.011003,0.010951,0.010949,0.010949,0.011003,0.010951,0.010959,0.010953,0.010949,0.010949,0.010959,0.010953,0.011033,0.011089,0.010949,0.010949,0.011033,0.011089,0.010949,0.010949,0.010949,0.010949,0.010949,0.010949,,,,,,,0.011003,0.010951,0.010959,0.010953,0.011033,0.011089,0.010949,0.010949,0.010949,0.010949,0.004549,0.004534,0.004536,0.004534,0.004558,0.004575,0.004533,0.004533,0.002405,0.002405,37.813627,37.992793,37.967327,37.988677,37.713104,37.522318,38,38,38,38,,,,,,,,,,,6192,6192,0.010949,0.010949,0.010949,0.010949,0.010949,0.010949,0.010949,0.010949,0.004533,0.004533,38,38,, +2493,1,0.269462,2,0,0,1,1,ROF,4,3,W I 96/Kent Lake,RAMP,657308,0,0.269,0,,2.24,5,0.404193,,0.404193,,40,,30000,,6810,,15000,,9678,,10320,,10308,,0.404193,,0.404193,,0.404193,,0.404194,,0.404193,,0.404194,,0.404291,,0.404193,,0.404291,,0.404193,,0.404193,,0.404193,,,,,,,,0.404193,,0.404194,,0.404291,,0.404193,,0.404193,,0.169761,,0.169761,,0.169791,,0.169761,,0.09027,,39.99995,,39.999887,,39.990232,,40,,40,,,,,,,,,,,,10320,,0.404193,,0.404193,,0.404193,,0.404193,,0.169761,,40,,, +2623,1,0.104048,1,0,0,1,1,ROF,4,3,W I 96/S Kent Lake,RAMP,657305,0,0.104,0,,2.24,5,0.156072,,0.156072,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.156079,,0.156072,,0.156079,,0.156087,,0.156072,,0.156087,,0.157039,,0.156072,,0.157039,,0.156072,,0.156072,,0.156072,,,,,,,,0.156079,,0.156087,,0.157039,,0.156072,,0.156072,,0.065552,,0.065555,,0.065841,,0.06555,,0.034856,,39.99841,,39.996379,,39.753686,,40,,40,,,,,,,,,,,,5160,,0.156072,,0.156072,,0.156072,,0.156072,,0.06555,,40,,, +2668,1,0.319883,3,0,0,1,1,,4,3,E I 96,,657303,0.756,1.076,0,,0.8,7.5,0.274185,,0.274185,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.346465,,0.274185,,0.346465,,0.275087,,0.274185,,0.275087,,0.279317,,0.274185,,0.279317,,0.274185,,0.274185,,0.274185,,,,,,,,0.346465,,0.275087,,0.279317,,0.274185,,0.274185,,0.161518,,0.140105,,0.141374,,0.139835,,0.076315,,55.396629,,69.770468,,68.714048,,70,,70,,,,,,,,,,,,22704,,0.274185,,0.274185,,0.274185,,0.274185,,0.139835,,70,,, +2941,0,0.064897,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,1.132,1.197,0,1.390646,4.5,4.5,0.102469,0.102469,0.102469,0.102469,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,,,,,,,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.042422,0.042422,0.042422,0.042422,0.042422,0.042422,0.042422,0.042422,0.022509,0.022509,37.999966,37.999957,37.999989,37.999987,37.999893,37.999902,38,38,38,38,,,,,,,,,,,6192,6192,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.102469,0.042422,0.042422,38,38,, +3313,1,0.054116,1,0,0,1,1,RON,4,3,S Kent Lake/W I 96,RAMP,657307,0,0.054,0,,1.09,4,0.072155,,0.072155,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.072155,,0.072155,,0.072155,,0.072155,,0.072155,,0.072155,,0.072155,,0.072155,,0.072155,,0.072155,,0.072155,,0.072155,,,,,,,,0.072155,,0.072155,,0.072155,,0.072155,,0.072155,,0.031388,,0.031388,,0.031388,,0.031388,,0.016776,,44.999987,,44.999988,,44.999975,,45,,45,,,,,,,,,,,,5160,,0.072155,,0.072155,,0.072155,,0.072155,,0.031388,,45,,, +20250,1,0.042173,1,0,0,1,1,RON,4,3,N Kent Lake/W I 96,RAMP,4403524,0,0.042,0,,1.09,4,0.05623,,0.05623,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.056387,,0.05623,,0.056387,,0.05626,,0.05623,,0.05626,,0.056435,,0.05623,,0.056435,,0.05623,,0.05623,,0.05623,,,,,,,,0.056387,,0.05626,,0.056435,,0.05623,,0.05623,,0.024507,,0.024469,,0.024521,,0.02446,,0.013073,,44.874643,,44.975992,,44.836935,,45,,45,,,,,,,,,,,,5160,,0.05623,,0.05623,,0.05623,,0.05623,,0.02446,,45,,, +2943,0,0.031715,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,1.077,1.109,0,0.679608,4.5,4.5,0.050076,0.050076,0.050076,0.050076,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.050076,0.050087,0.050076,0.050076,0.050076,0.050087,0.050076,0.050091,0.050076,0.050076,0.050076,0.050091,0.050077,0.050756,0.050076,0.050076,0.050077,0.050756,0.050076,0.050076,0.050076,0.050076,0.050076,0.050076,,,,,,,0.050076,0.050087,0.050076,0.050091,0.050077,0.050756,0.050076,0.050076,0.050076,0.050076,0.020732,0.020735,0.020732,0.020736,0.020732,0.020936,0.020732,0.020732,0.011,0.011,37.999966,37.992139,37.999989,37.988677,37.999893,37.491144,38,38,38,38,,,,,,,,,,,6192,6192,0.050076,0.050076,0.050076,0.050076,0.050076,0.050076,0.050076,0.050076,0.020732,0.020732,38,38,, +2682,0,0.023233,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,1.109,1.132,0,0.497852,4.5,4.5,0.036684,0.036684,0.036684,0.036684,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,,,,,,,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.015187,0.015187,0.015187,0.015187,0.015187,0.015187,0.015187,0.015187,0.008058,0.008058,37.999966,37.999999,37.999989,38,37.999893,37.999997,38,38,38,38,,,,,,,,,,,6192,6192,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.036684,0.015187,0.015187,38,38,, +3466,1,0.122188,1,0,0,1,1,ROF,4,3,W I 96/N Kent Lake,RAMP,657308,0.269,0.392,0,,2.24,5,0.183282,,0.183282,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.183282,,0.183282,,0.183282,,0.183282,,0.183282,,0.183282,,0.183282,,0.183282,,0.183282,,0.183282,,0.183282,,0.183282,,,,,,,,0.183282,,0.183282,,0.183282,,0.183282,,0.183282,,0.076978,,0.076978,,0.076978,,0.076978,,0.040933,,40,,40,,40,,40,,40,,,,,,,,,,,,5160,,0.183282,,0.183282,,0.183282,,0.183282,,0.076978,,40,,, +2606,0,0.624136,1,1,0,2,4,,4,3,Pontiac,Trl,656507,5.747,6.371,0,13.374346,4.5,4.5,0.985478,0.985478,0.985478,0.985478,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.170388,0.987189,0.985478,0.985478,1.170388,0.987189,0.991044,0.985694,0.985478,0.985478,0.991044,0.985694,1.000071,1.087671,0.985478,0.985478,1.000071,1.087671,0.985478,0.985478,0.985478,0.985478,0.985478,0.985478,,,,,,,1.170388,0.987189,0.991044,0.985694,1.000071,1.087671,0.985478,0.985478,0.985478,0.985478,0.463461,0.408501,0.409658,0.408053,0.412366,0.438646,0.407988,0.407988,0.216477,0.216477,31.996383,37.934132,37.78657,37.991678,37.445512,34.429669,38,38,38,38,,,,,,,,,,,3096,3096,0.985478,0.985478,0.985478,0.985478,0.985478,0.985478,0.985478,0.985478,0.407988,0.407988,38,38,, +2792,0,0.509732,1,1,0,2,5,GRV,4,3,Martindale,Rd,656802,2.985,3.495,0,10.922835,6.55,4.5,2.038929,2.038929,2.038929,2.038929,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,,,,,,,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,0.703431,0.703431,0.703431,0.703431,0.703431,0.703431,0.703431,0.703431,0.36191,0.36191,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,2064,2064,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,2.038929,0.703431,0.703431,15,15,, +26980,0,0.493488,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.574744,0.15,4,1.973952,1.973952,1.973952,1.973952,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,,,,,,,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,0.681014,0.681014,0.681014,0.681014,0.681014,0.681014,0.681014,0.681014,0.350377,0.350377,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,1.973952,0.681014,0.681014,15,15,, +29806,0,0.619205,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.268677,0.15,4,2.47682,2.47682,2.47682,2.47682,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,,,,,,,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,0.854503,0.854503,0.854503,0.854503,0.854503,0.854503,0.854503,0.854503,0.439636,0.439636,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,2.47682,0.854503,0.854503,15,15,, +3567,0,0.100295,1,1,0,2,4,,4,3,Pontiac,Trl,656507,6.371,6.471,0,2.149171,4.5,4.5,0.15836,0.15836,0.15836,0.15836,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.183404,0.158504,0.15836,0.15836,0.183404,0.158504,0.158993,0.158378,0.15836,0.15836,0.158993,0.158378,0.15948,0.169671,0.15836,0.15836,0.15948,0.169671,0.15836,0.15836,0.15836,0.15836,0.15836,0.15836,,,,,,,0.183404,0.158504,0.158993,0.158378,0.15948,0.169671,0.15836,0.15836,0.15836,0.15836,0.073074,0.065604,0.065751,0.065566,0.065897,0.068954,0.065561,0.065561,0.034786,0.034786,32.811015,37.965487,37.84877,37.995784,37.733233,35.466731,38,38,38,38,,,,,,,,,,,3096,3096,0.15836,0.15836,0.15836,0.15836,0.15836,0.15836,0.15836,0.15836,0.065561,0.065561,38,38,, +26981,0,0.204388,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.379734,0.15,4,0.81755,0.81755,0.81755,0.81755,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.817551,0.81755,0.81755,0.81755,0.817551,0.81755,0.81755,0.81755,0.81755,0.81755,0.81755,0.81755,0.81755,0.817551,0.81755,0.81755,0.81755,0.817551,0.81755,0.81755,0.81755,0.81755,0.81755,0.81755,,,,,,,0.817551,0.81755,0.81755,0.81755,0.81755,0.817551,0.81755,0.81755,0.81755,0.81755,0.282055,0.282055,0.282055,0.282055,0.282055,0.282055,0.282055,0.282055,0.145115,0.145115,14.999997,15,15,15,14.999999,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,0.81755,0.81755,0.81755,0.81755,0.81755,0.81755,0.81755,0.81755,0.282055,0.282055,15,15,, +3587,0,1.003284,1,1,0,2,4,,5,3,General Motors,Rd,661208,0,1.003,0,21.49895,3,4,1.504927,1.504927,1.504927,1.504927,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.646691,1.686424,1.504927,1.504927,1.646691,1.686424,1.518071,1.525182,1.504927,1.504927,1.518071,1.525182,1.6308,1.622833,1.504927,1.504927,1.6308,1.622833,1.504927,1.504927,1.504927,1.504927,1.504927,1.504927,,,,,,,1.646691,1.686424,1.518071,1.525182,1.6308,1.622833,1.504927,1.504927,1.504927,1.504927,0.674598,0.686519,0.636012,0.638146,0.669831,0.667441,0.632069,0.632069,0.3361,0.3361,36.556383,35.695083,39.653652,39.468775,36.912587,37.093818,40,40,40,40,,,,,,,,,,,3096,3096,1.504927,1.504927,1.504927,1.504927,1.504927,1.504927,1.504927,1.504927,0.632069,0.632069,40,40,, +21011,0,0.883075,1,1,0,2,4,,5,3,Hickory Ridge,Trl,4410281,1.119,2.002,0,18.923027,3,4,1.324612,1.324612,1.324612,1.324612,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.736916,1.87358,1.324612,1.324612,1.736916,1.87358,1.351245,1.362908,1.324612,1.324612,1.351245,1.362908,2.053234,1.940297,1.324612,1.324612,2.053234,1.940297,1.324612,1.324612,1.324612,1.324612,1.324612,1.324612,,,,,,,1.736916,1.87358,1.351245,1.362908,2.053234,1.940297,1.324612,1.324612,1.324612,1.324612,0.680028,0.721028,0.564327,0.567826,0.774924,0.741043,0.556337,0.556337,0.29583,0.29583,30.504924,28.279797,39.211602,38.876049,25.80537,27.307404,40,40,40,40,,,,,,,,,,,3096,3096,1.324612,1.324612,1.324612,1.324612,1.324612,1.324612,1.324612,1.324612,0.556337,0.556337,40,40,, +26067,0,1.20984,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.925144,0.15,4,4.83936,4.83936,4.83936,4.83936,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,,,,,,,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,1.669579,1.669579,1.669579,1.669579,1.669579,1.669579,1.669579,1.669579,0.858986,0.858986,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,4.83936,1.669579,1.669579,15,15,, +27083,0,0.449157,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,9.624801,0.15,4,1.796629,1.796629,1.796629,1.796629,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,,,,,,,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,0.619837,0.619837,0.619837,0.619837,0.619837,0.619837,0.619837,0.619837,0.318902,0.318902,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,1.796629,0.619837,0.619837,15,15,, +27085,0,1.308652,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,28.042544,0.15,4,5.234608,5.234608,5.234608,5.234608,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,,,,,,,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,1.80594,1.80594,1.80594,1.80594,1.80594,1.80594,1.80594,1.80594,0.929143,0.929143,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,5.234608,1.80594,1.80594,15,15,, +27086,0,0.22329,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,4.784796,0.15,4,0.893162,0.893162,0.893162,0.893162,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,,,,,,,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.308141,0.308141,0.308141,0.308141,0.308141,0.308141,0.308141,0.308141,0.158536,0.158536,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.893162,0.308141,0.308141,15,15,, +29478,0,1.513585,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.433974,0.15,4,6.054342,6.054342,6.054342,6.054342,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,,,,,,,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,2.088748,2.088748,2.088748,2.088748,2.088748,2.088748,2.088748,2.088748,1.074646,1.074646,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,6.054342,2.088748,2.088748,15,15,, +3056,0,0.710129,1,1,0,2,4,,5,3,Stobart,Rd,661304,0,0.71,0,15.217053,3,4,1.065194,1.065194,1.065194,1.065194,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.5048,1.683046,1.065194,1.065194,1.5048,1.683046,1.097231,1.108933,1.065194,1.065194,1.097231,1.108933,1.778441,1.733386,1.065194,1.065194,1.778441,1.733386,1.065194,1.065194,1.065194,1.065194,1.065194,1.065194,,,,,,,1.5048,1.683046,1.097231,1.108933,1.778441,1.733386,1.065194,1.065194,1.065194,1.065194,0.579263,0.632737,0.456992,0.460503,0.661355,0.647839,0.447381,0.447381,0.237893,0.237893,28.314568,25.315858,38.832076,38.422285,23.957925,24.580651,40,40,40,40,,,,,,,,,,,3096,3096,1.065194,1.065194,1.065194,1.065194,1.065194,1.065194,1.065194,1.065194,0.447381,0.447381,40,40,, +26978,0,1.5876,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.020008,0.15,4,6.350401,6.350401,6.350401,6.350401,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,,,,,,,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,2.190888,2.190888,2.190888,2.190888,2.190888,2.190888,2.190888,2.190888,1.127196,1.127196,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,6.350401,2.190888,2.190888,15,15,, +7855,0,0.446271,1,1,0,2,4,,5,8,Stobart,Rd,943101,0.839,1.285,0,9.56295,3,4,0.669407,0.669407,0.669407,0.669407,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.924201,1.035892,0.669407,0.669407,0.924201,1.035892,0.687052,0.693711,0.669407,0.669407,0.687052,0.693711,1.083721,1.052426,0.669407,0.669407,1.083721,1.052426,0.669407,0.669407,0.669407,0.669407,0.669407,0.669407,,,,,,,0.924201,1.035892,0.687052,0.693711,1.083721,1.052426,0.669407,0.669407,0.669407,0.669407,0.357589,0.391096,0.286444,0.288442,0.405445,0.396057,0.281151,0.281151,0.149501,0.149501,28.972328,25.848508,38.972676,38.598584,24.707697,25.442412,40,40,40,40,,,,,,,,,,,3096,3096,0.669407,0.669407,0.669407,0.669407,0.669407,0.669407,0.669407,0.669407,0.281151,0.281151,40,40,, +3190,0,0.16428,1,1,0,2,4,,5,3,Stobart,Rd,661304,0.71,0.874,0,3.520286,3,4,0.24642,0.24642,0.24642,0.24642,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.306529,0.374085,0.24642,0.24642,0.306529,0.374085,0.251213,0.253413,0.24642,0.24642,0.251213,0.253413,0.398323,0.3533,0.24642,0.24642,0.398323,0.3533,0.24642,0.24642,0.24642,0.24642,0.24642,0.24642,,,,,,,0.306529,0.374085,0.251213,0.253413,0.398323,0.3533,0.24642,0.24642,0.24642,0.24642,0.121529,0.141796,0.104934,0.105594,0.149067,0.13556,0.103496,0.103496,0.055034,0.055034,32.156163,26.349105,39.236763,38.896205,24.745759,27.899261,40,40,40,40,,,,,,,,,,,3096,3096,0.24642,0.24642,0.24642,0.24642,0.24642,0.24642,0.24642,0.24642,0.103496,0.103496,40,40,, +21010,0,0.767392,1,1,0,2,4,,5,3,Hickory Ridge,Trl,4410281,2.002,2.769,0,16.444123,3,4,1.151089,1.151089,1.151089,1.151089,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.158437,1.330233,1.151089,1.151089,1.158437,1.330233,1.153525,1.15473,1.151089,1.151089,1.153525,1.15473,1.347725,1.177342,1.151089,1.151089,1.347725,1.177342,1.151089,1.151089,1.151089,1.151089,1.151089,1.151089,,,,,,,1.158437,1.330233,1.153525,1.15473,1.347725,1.177342,1.151089,1.151089,1.151089,1.151089,0.485662,0.537201,0.484188,0.48455,0.542448,0.491333,0.483457,0.483457,0.257076,0.257076,39.746277,34.613142,39.915515,39.873845,34.163889,39.108056,40,40,40,40,,,,,,,,,,,3096,3096,1.151089,1.151089,1.151089,1.151089,1.151089,1.151089,1.151089,1.151089,0.483457,0.483457,40,40,, +26068,0,0.958901,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.547886,0.15,4,3.835605,3.835605,3.835605,3.835605,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,,,,,,,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,1.323284,1.323284,1.323284,1.323284,1.323284,1.323284,1.323284,1.323284,0.68082,0.68082,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,3.835605,1.323284,1.323284,15,15,, +27082,0,0.689342,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.771613,0.15,4,2.757368,2.757368,2.757368,2.757368,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,,,,,,,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,0.951292,0.951292,0.951292,0.951292,0.951292,0.951292,0.951292,0.951292,0.489433,0.489433,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,2.757368,0.951292,0.951292,15,15,, +26974,0,0.263639,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,5.649405,0.15,4,1.054556,1.054556,1.054556,1.054556,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,,,,,,,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,0.363822,0.363822,0.363822,0.363822,0.363822,0.363822,0.363822,0.363822,0.187184,0.187184,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,1.054556,0.363822,0.363822,15,15,, +26976,0,1.042475,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.338747,0.15,4,4.169899,4.169899,4.169899,4.169899,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,,,,,,,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,1.438615,1.438615,1.438615,1.438615,1.438615,1.438615,1.438615,1.438615,0.740157,0.740157,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,4.169899,1.438615,1.438615,15,15,, +7073,1,0.711994,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,15.296,16.008,0,15.257013,1.7,4,0.776721,,0.776721,,55,,24000,,5448,,12000,,7742,,8256,,8246,,1.363106,,0.776721,,1.363106,,0.944938,,0.776721,,0.944938,,1.601854,,0.776721,,1.601854,,0.776721,,0.776721,,0.776721,,,,,,,,1.363106,,0.944938,,1.601854,,0.776721,,0.776721,,0.537091,,0.41164,,0.608715,,0.361175,,0.194827,,31.339929,,45.208944,,26.668862,,55,,55,,,,,,,,,,,,8256,,0.776721,,0.776721,,0.776721,,0.776721,,0.361175,,55,,, +7422,0,0.753447,1,1,0,2,5,,5,8,Commerce,Rd,936705,1.463,2.216,0,16.145288,3.7,5,1.506894,1.506894,1.506894,1.506894,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.64262,1.544147,1.506894,1.506894,1.64262,1.544147,1.506904,1.506903,1.506894,1.506894,1.506904,1.506903,1.595126,1.682571,1.506894,1.506894,1.595126,1.682571,1.506894,1.506894,1.506894,1.506894,1.506894,1.506894,,,,,,,1.64262,1.544147,1.506904,1.506903,1.595126,1.682571,1.506894,1.506894,1.506894,1.506894,0.628406,0.598864,0.587692,0.587691,0.614158,0.640392,0.587688,0.587688,0.308913,0.308913,27.521155,29.276236,29.999796,29.999808,28.340588,26.867689,30,30,30,30,,,,,,,,,,,2580,2580,1.506894,1.506894,1.506894,1.506894,1.506894,1.506894,1.506894,1.506894,0.587688,0.587688,30,30,, +7931,0,1.034868,1,1,0,2,5,GRV,5,8,Clyde,Rd,939905,10.913,11.947,0,22.17574,5.55,5,3.104604,3.104604,3.104604,3.104604,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,4.776613,4.30735,3.104604,3.104604,4.776613,4.30735,3.158977,3.157726,3.104604,3.104604,3.158977,3.157726,5.219148,5.468935,3.104604,3.104604,5.219148,5.468935,3.104604,3.104604,3.104604,3.104604,3.104604,3.104604,,,,,,,4.776613,4.30735,3.158977,3.157726,5.219148,5.468935,3.104604,3.104604,3.104604,3.104604,1.61926,1.478481,1.133969,1.133594,1.752021,1.826957,1.117657,1.117657,0.579526,0.579526,12.999185,14.415377,19.655755,19.663537,11.896975,11.353594,20,20,20,20,,,,,,,,,,,2236,2236,3.104604,3.104604,3.104604,3.104604,3.104604,3.104604,3.104604,3.104604,1.117657,1.117657,20,20,, +8149,0,1.012666,1,1,0,2,5,,5,8,Fenton,Rd,934505,3.139,4.151,0,21.699983,3.7,5,2.025332,2.025332,2.025332,2.025332,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.040087,2.129512,2.025332,2.025332,2.040087,2.129512,2.033754,2.038964,2.025332,2.025332,2.033754,2.038964,2.253873,2.130754,2.025332,2.025332,2.253873,2.130754,2.025332,2.025332,2.025332,2.025332,2.025332,2.025332,,,,,,,2.040087,2.129512,2.033754,2.038964,2.253873,2.130754,2.025332,2.025332,2.025332,2.025332,0.794306,0.821133,0.792406,0.793969,0.858442,0.821506,0.789879,0.789879,0.415193,0.415193,29.78302,28.532341,29.875767,29.799419,26.958023,28.515711,30,30,30,30,,,,,,,,,,,2580,2580,2.025332,2.025332,2.025332,2.025332,2.025332,2.025332,2.025332,2.025332,0.789879,0.789879,30,30,, +8165,0,0.646469,1,1,0,2,7,,5,8,Hartland,Rd,4105279,1.853,2.499,0,13.852912,5.8,6,1.551526,1.551526,1.551526,1.551526,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,,,,,,,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,0.581822,0.581822,0.581822,0.581822,0.581822,0.581822,0.581822,0.581822,0.303841,0.303841,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,1.551526,0.581822,0.581822,25,25,, +19921,-1,0.617568,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,2.86,3.477,0,13.233608,1.7,4,,0.673711,,0.673711,,55,,24000,,5448,,12000,,7742,,8256,,8246,,1.338539,,0.673711,,1.338539,,0.828984,,0.673711,,0.828984,,1.374022,,0.673711,,1.374022,,0.673711,,0.673711,,0.673711,,,,,,,,1.338539,,0.828984,,1.374022,,0.673711,,0.673711,,0.512724,,0.359858,,0.523369,,0.313276,,0.168989,,27.682493,,44.698197,,26.967612,,55,,55,,,,,,,,,,,,8256,,0.673711,,0.673711,,0.673711,,0.673711,,0.313276,,55,, +21004,0,1.004563,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,7.057,8.061,0,21.526352,3.7,5,2.009126,2.009126,2.009126,2.009126,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.015378,2.281855,2.009126,2.009126,2.015378,2.281855,2.011233,2.011652,2.009126,2.009126,2.011233,2.011652,2.570445,2.075921,2.009126,2.009126,2.570445,2.075921,2.009126,2.009126,2.009126,2.009126,2.009126,2.009126,,,,,,,2.015378,2.281855,2.011233,2.011652,2.570445,2.075921,2.009126,2.009126,2.009126,2.009126,0.785435,0.865378,0.784191,0.784317,0.951955,0.803598,0.783559,0.783559,0.411871,0.411871,29.906943,26.414384,29.968573,29.962336,23.448773,29.034717,30,30,30,30,,,,,,,,,,,2580,2580,2.009126,2.009126,2.009126,2.009126,2.009126,2.009126,2.009126,2.009126,0.783559,0.783559,30,30,, +26051,0,0.954643,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.456627,0.15,4,3.81857,3.81857,3.81857,3.81857,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.81857,3.818571,3.81857,3.81857,3.81857,3.818571,3.81857,3.81857,3.81857,3.81857,3.81857,3.81857,3.818571,3.818571,3.81857,3.81857,3.818571,3.818571,3.81857,3.81857,3.81857,3.81857,3.81857,3.81857,,,,,,,3.81857,3.818571,3.81857,3.81857,3.818571,3.818571,3.81857,3.81857,3.81857,3.81857,1.317407,1.317407,1.317407,1.317407,1.317407,1.317407,1.317407,1.317407,0.677796,0.677796,15,14.999997,15,15,14.999997,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,3.81857,3.81857,3.81857,3.81857,3.81857,3.81857,3.81857,3.81857,1.317407,1.317407,15,15,, +26052,0,0.989717,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.208232,0.15,4,3.95887,3.95887,3.95887,3.95887,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,,,,,,,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,1.36581,1.36581,1.36581,1.36581,1.36581,1.36581,1.36581,1.36581,0.702699,0.702699,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,3.95887,1.36581,1.36581,15,15,, +26950,0,1.229466,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.345702,0.15,4,4.917864,4.917864,4.917864,4.917864,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,,,,,,,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,1.696663,1.696663,1.696663,1.696663,1.696663,1.696663,1.696663,1.696663,0.872921,0.872921,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,4.917864,1.696663,1.696663,15,15,, +27094,0,0.463328,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,9.928455,0.15,4,1.853312,1.853312,1.853312,1.853312,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,,,,,,,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,0.639393,0.639393,0.639393,0.639393,0.639393,0.639393,0.639393,0.639393,0.328963,0.328963,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,1.853312,0.639393,0.639393,15,15,, +29851,0,1.083469,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.217201,0.15,4,4.333878,4.333878,4.333878,4.333878,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,,,,,,,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,1.495188,1.495188,1.495188,1.495188,1.495188,1.495188,1.495188,1.495188,0.769263,0.769263,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,4.333878,1.495188,1.495188,15,15,, +5512,0,1.04434,1,1,0,2,4,,5,8,Old US 23,,932204,13.673,14.717,0,22.37872,3,4,1.56651,1.56651,1.56651,1.56651,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.348021,2.300126,1.56651,1.56651,2.348021,2.300126,1.907801,1.802447,1.56651,1.56651,1.907801,1.802447,2.593111,2.289874,1.56651,1.56651,2.593111,2.289874,1.56651,1.56651,1.56651,1.56651,1.56651,1.56651,,,,,,,2.348021,2.300126,1.907801,1.802447,2.593111,2.289874,1.56651,1.56651,1.56651,1.56651,0.892388,0.878019,0.760321,0.728715,0.965914,0.874943,0.657934,0.657934,0.349854,0.349854,26.686476,27.24217,32.844321,34.76408,24.16419,27.364134,40,40,40,40,,,,,,,,,,,3096,3096,1.56651,1.56651,1.56651,1.56651,1.56651,1.56651,1.56651,1.56651,0.657934,0.657934,40,40,, +5591,1,0.251432,1,0,0,1,2,ROF,4,8,N US 23/Highland,RAMP,931804,0,0.251,0,,2.24,5,0.377148,,0.377148,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.429542,,0.377148,,0.429542,,0.379695,,0.377148,,0.379695,,0.704676,,0.377148,,0.704676,,0.377148,,0.377148,,0.377148,,,,,,,,0.429542,,0.379695,,0.704676,,0.377148,,0.377148,,0.17412,,0.159166,,0.25666,,0.158402,,0.08423,,35.120944,,39.731692,,21.408324,,40,,40,,,,,,,,,,,,5160,,0.377148,,0.377148,,0.377148,,0.377148,,0.158402,,40,,, +5709,1,0.21907,1,0,0,1,2,RON,4,8,Highland/S US 23,RAMP,932106,0.053,0.272,0,,1.09,4,0.292094,,0.292094,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.5966,,0.292094,,0.5966,,0.297632,,0.292094,,0.297632,,0.341888,,0.292094,,0.341888,,0.292094,,0.292094,,0.292094,,,,,,,,0.5966,,0.297632,,0.341888,,0.292094,,0.292094,,0.218413,,0.128722,,0.141999,,0.127061,,0.067912,,22.03188,,44.162721,,38.44596,,45,,45,,,,,,,,,,,,5160,,0.292094,,0.292094,,0.292094,,0.292094,,0.127061,,45,,, +5910,1,0.566022,2,0,0,1,2,,5,8,N US 23,,931510,14.38,14.946,0,,1.02,7,0.485162,,0.485162,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.485304,,0.485162,,0.485304,,0.485253,,0.485162,,0.485253,,0.486868,,0.485162,,0.486868,,0.485162,,0.485162,,0.485162,,,,,,,,0.485304,,0.485253,,0.486868,,0.485162,,0.485162,,0.247475,,0.24746,,0.247944,,0.247433,,0.135037,,69.979529,,69.98683,,69.754719,,70,,70,,,,,,,,,,,,15136,,0.485162,,0.485162,,0.485162,,0.485162,,0.247433,,70,,, +6184,-1,0.564217,0,2,0,1,2,,5,8,S US 23,,932002,14.42,14.984,0,,1.02,7,,0.483614,,0.483614,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.485618,,0.483614,,0.485618,,0.483741,,0.483614,,0.483741,,0.48408,,0.483614,,0.48408,,0.483614,,0.483614,,0.483614,,,,,,,,0.485618,,0.483741,,0.48408,,0.483614,,0.483614,,0.247244,,0.246681,,0.246783,,0.246643,,0.134606,,69.711224,,69.981716,,69.932599,,70,,70,,,,,,,,,,,,15136,,0.483614,,0.483614,,0.483614,,0.483614,,0.246643,,70,, +7075,1,1.544957,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,12.996,14.541,0,33.106225,1.7,4,1.685408,,1.685408,,55,,24000,,5448,,12000,,7742,,8256,,8246,,3.014566,,1.685408,,3.014566,,1.993764,,1.685408,,1.993764,,3.276506,,1.685408,,3.276506,,1.685408,,1.685408,,1.685408,,,,,,,,3.014566,,1.993764,,3.276506,,1.685408,,1.685408,,1.182462,,0.876221,,1.261044,,0.783715,,0.422756,,30.74984,,46.493689,,28.291545,,55,,55,,,,,,,,,,,,8256,,1.685408,,1.685408,,1.685408,,1.685408,,0.783715,,55,,, +8162,0,1.009278,1,1,0,2,5,,5,8,Pleasant Valley,Rd,934505,1.12,2.129,0,21.62739,3.7,5,2.018556,2.018556,2.018556,2.018556,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.02763,2.175793,2.018556,2.018556,2.02763,2.175793,2.018915,2.018872,2.018556,2.018556,2.018915,2.018872,2.215058,2.037366,2.018556,2.018556,2.215058,2.037366,2.018556,2.018556,2.018556,2.018556,2.018556,2.018556,,,,,,,2.02763,2.175793,2.018915,2.018872,2.215058,2.037366,2.018556,2.018556,2.018556,2.018556,0.789959,0.834408,0.787344,0.787332,0.846188,0.79288,0.787237,0.787237,0.413804,0.413804,29.865746,27.832011,29.994677,29.995313,27.338645,29.723033,30,30,30,30,,,,,,,,,,,2580,2580,2.018556,2.018556,2.018556,2.018556,2.018556,2.018556,2.018556,2.018556,0.787237,0.787237,30,30,, +37459,1,0.025939,1,0,0,2,4,,5,8,Jacoby,,943010,0.706,0.732,0,0.555834,3,4,0.038908,,0.038908,,40,,9000,,2043,,4500,,2903,,3096,,3092,,0.039399,,0.038908,,0.039399,,0.038918,,0.038908,,0.038918,,0.039154,,0.038908,,0.039154,,0.038908,,0.038908,,0.038908,,,,,,,,0.039399,,0.038918,,0.039154,,0.038908,,0.038908,,0.016489,,0.016345,,0.016415,,0.016342,,0.00869,,39.501998,,39.98974,,39.748742,,40,,40,,,,,,,,,,,,3096,,0.038908,,0.038908,,0.038908,,0.038908,,0.016342,,40,,, +26049,0,1.501309,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.170898,0.15,4,6.005234,6.005234,6.005234,6.005234,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.005235,6.005234,6.005234,6.005234,6.005235,6.005234,6.005234,6.005234,6.005234,6.005234,6.005234,6.005234,6.005235,6.005235,6.005234,6.005234,6.005235,6.005235,6.005234,6.005234,6.005234,6.005234,6.005234,6.005234,,,,,,,6.005235,6.005234,6.005234,6.005234,6.005235,6.005235,6.005234,6.005234,6.005234,6.005234,2.071806,2.071806,2.071806,2.071806,2.071806,2.071806,2.071806,2.071806,1.065929,1.065929,14.999999,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,6.005234,6.005234,6.005234,6.005234,6.005234,6.005234,6.005234,6.005234,2.071806,2.071806,15,15,, +26053,0,1.813282,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.856046,0.15,4,7.253129,7.253129,7.253129,7.253129,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,,,,,,,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,2.502329,2.502329,2.502329,2.502329,2.502329,2.502329,2.502329,2.502329,1.28743,1.28743,15,14.999999,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,7.253129,2.502329,2.502329,15,15,, +27090,0,1.115794,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.90988,0.15,4,4.463178,4.463178,4.463178,4.463178,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,,,,,,,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,1.539796,1.539796,1.539796,1.539796,1.539796,1.539796,1.539796,1.539796,0.792214,0.792214,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,4.463178,1.539796,1.539796,15,15,, +27091,0,1.279698,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.42209,0.15,4,5.11879,5.11879,5.11879,5.11879,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,,,,,,,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,1.765983,1.765983,1.765983,1.765983,1.765983,1.765983,1.765983,1.765983,0.908585,0.908585,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,5.11879,1.765983,1.765983,15,15,, +29852,0,1.134067,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.301437,0.15,4,4.536268,4.536268,4.536268,4.536268,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,,,,,,,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,1.565013,1.565013,1.565013,1.565013,1.565013,1.565013,1.565013,1.565013,0.805188,0.805188,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,4.536268,1.565013,1.565013,15,15,, +5821,0,1.301465,1,1,0,2,4,,5,8,Old US 23,Hwy,932204,12.372,13.673,0,27.888529,3,4,1.952197,1.952197,1.952197,1.952197,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.091318,2.500098,1.952197,1.952197,2.091318,2.500098,2.036674,2.013859,1.952197,1.952197,2.036674,2.013859,2.703923,2.155632,1.952197,1.952197,2.703923,2.155632,1.952197,1.952197,1.952197,1.952197,1.952197,1.952197,,,,,,,2.091318,2.500098,2.036674,2.013859,2.703923,2.155632,1.952197,1.952197,1.952197,1.952197,0.861659,0.984293,0.845266,0.838421,1.045441,0.880953,0.819923,0.819923,0.435991,0.435991,37.339067,31.233928,38.340889,38.775243,28.879476,36.225051,40,40,40,40,,,,,,,,,,,3096,3096,1.952197,1.952197,1.952197,1.952197,1.952197,1.952197,1.952197,1.952197,0.819923,0.819923,40,40,, +37455,0,0.021393,1,1,0,2,3,,5,8,Hartland,Rd,4105279,0,0.021,0,0.458412,1.7,4,0.025671,0.025671,0.025671,0.025671,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.025671,0.025672,0.025671,0.025671,0.025671,0.025672,0.025671,0.025671,0.025671,0.025671,0.025671,0.025671,0.025671,0.025672,0.025671,0.025671,0.025671,0.025672,0.025671,0.025671,0.025671,0.025671,0.025671,0.025671,,,,,,,0.025671,0.025672,0.025671,0.025671,0.025671,0.025672,0.025671,0.025671,0.025671,0.025671,0.011552,0.011552,0.011552,0.011552,0.011552,0.011552,0.011552,0.011552,0.006204,0.006204,49.999999,49.999043,49.999855,49.999645,50,49.997246,50,50,50,50,,,,,,,,,,,3096,3096,0.025671,0.025671,0.025671,0.025671,0.025671,0.025671,0.025671,0.025671,0.011552,0.011552,50,50,, +7077,0,0.033753,2,2,1,2,3,,5,8,Highland,Rd,933209,12.81,12.844,0,0.723275,1.7,4,0.040503,0.040503,0.040503,0.040503,50,50,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.152296,0.183259,0.040503,0.040503,0.152296,0.183259,0.070281,0.069278,0.040503,0.040503,0.070281,0.069278,0.190067,0.175837,0.040503,0.040503,0.190067,0.175837,0.040503,0.040503,0.040503,0.040503,0.040503,0.040503,,,,,,,0.152296,0.183259,0.070281,0.069278,0.190067,0.175837,0.040503,0.040503,0.040503,0.040503,0.051764,0.061053,0.02716,0.026859,0.063096,0.058827,0.018227,0.018227,0.009788,0.009788,13.297572,11.050872,28.815426,29.232609,10.655044,11.517336,50,50,50,50,,,,,,,,,,,6502,6502,0.040503,0.040503,0.040503,0.040503,0.040503,0.040503,0.040503,0.040503,0.018227,0.018227,50,50,, +5433,1,0.236613,1,0,0,1,2,RON,4,8,Highland/N US 23,RAMP,931806,0.064,0.301,0,,1.09,4,0.315484,,0.315484,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.3512,,0.315484,,0.3512,,0.362396,,0.315484,,0.362396,,0.455233,,0.315484,,0.455233,,0.315484,,0.315484,,0.315484,,,,,,,,0.3512,,0.362396,,0.455233,,0.315484,,0.315484,,0.14795,,0.151309,,0.17916,,0.137236,,0.07335,,40.423661,,39.174827,,31.185734,,45,,45,,,,,,,,,,,,5160,,0.315484,,0.315484,,0.315484,,0.315484,,0.137236,,45,,, +5434,1,0.262717,1,0,0,1,2,ROF,4,8,S US 23/Highland,RAMP,932107,0,0.263,0,,2.24,5,0.394075,,0.394075,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.558837,,0.394075,,0.558837,,0.460632,,0.394075,,0.460632,,0.531234,,0.394075,,0.531234,,0.394075,,0.394075,,0.394075,,,,,,,,0.558837,,0.460632,,0.531234,,0.394075,,0.394075,,0.21494,,0.185479,,0.206659,,0.165511,,0.08801,,28.206764,,34.220383,,29.672431,,40,,40,,,,,,,,,,,,5160,,0.394075,,0.394075,,0.394075,,0.394075,,0.165511,,40,,, +7082,0,0.134219,2,2,1,2,3,,5,8,Highland,Rd,933209,12.521,12.655,0,2.876126,1.7,4,0.161063,0.161063,0.161063,0.161063,50,50,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.250048,0.19978,0.161063,0.161063,0.250048,0.19978,0.1845,0.176247,0.161063,0.161063,0.1845,0.176247,0.220287,0.235784,0.161063,0.161063,0.220287,0.235784,0.161063,0.161063,0.161063,0.161063,0.161063,0.161063,,,,,,,0.250048,0.19978,0.1845,0.176247,0.220287,0.235784,0.161063,0.161063,0.161063,0.161063,0.099174,0.084093,0.079509,0.077034,0.090246,0.094895,0.072478,0.072478,0.038924,0.038924,32.20642,40.310082,43.648497,45.692317,36.557508,34.154837,50,50,50,50,,,,,,,,,,,6502,6502,0.161063,0.161063,0.161063,0.161063,0.161063,0.161063,0.161063,0.161063,0.072478,0.072478,50,50,, +5592,1,0.06583,1,0,0,1,2,ROF,4,8,N US 23/EB Highland,RAMP,931804,0.251,0.317,0,,2.24,5,0.098745,,0.098745,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.102793,,0.098745,,0.102793,,0.098973,,0.098745,,0.098973,,0.11624,,0.098745,,0.11624,,0.098745,,0.098745,,0.098745,,,,,,,,0.102793,,0.098973,,0.11624,,0.098745,,0.098745,,0.042687,,0.041541,,0.046721,,0.041473,,0.022053,,38.424687,,39.907661,,33.97958,,40,,40,,,,,,,,,,,,5160,,0.098745,,0.098745,,0.098745,,0.098745,,0.041473,,40,,, +5708,1,0.052978,1,0,0,1,2,RON,4,8,EB Highland/S US 23,RAMP,932106,0,0.053,0,,1.09,4,0.070637,,0.070637,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.071083,,0.070637,,0.071083,,0.070644,,0.070637,,0.070644,,0.070672,,0.070637,,0.070672,,0.070637,,0.070637,,0.070637,,,,,,,,0.071083,,0.070644,,0.070672,,0.070637,,0.070637,,0.030861,,0.030729,,0.030738,,0.030727,,0.016423,,44.718227,,44.995516,,44.978316,,45,,45,,,,,,,,,,,,5160,,0.070637,,0.070637,,0.070637,,0.070637,,0.030727,,45,,, +7079,0,0.057405,2,2,1,2,3,,5,8,Highland,Rd,933209,12.726,12.784,0,1.230097,1.7,4,0.068885,0.068885,0.068885,0.068885,50,50,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.110528,0.147924,0.068885,0.068885,0.110528,0.147924,0.08513,0.07598,0.068885,0.068885,0.08513,0.07598,0.103282,0.108165,0.068885,0.068885,0.103282,0.108165,0.068885,0.068885,0.068885,0.068885,0.068885,0.068885,,,,,,,0.110528,0.147924,0.08513,0.07598,0.103282,0.108165,0.068885,0.068885,0.068885,0.068885,0.043491,0.05471,0.035872,0.033127,0.041317,0.042782,0.030998,0.030998,0.016647,0.016647,31.161909,23.284102,40.459107,45.331086,33.34835,31.84271,50,50,50,50,,,,,,,,,,,6502,6502,0.068885,0.068885,0.068885,0.068885,0.068885,0.068885,0.068885,0.068885,0.030998,0.030998,50,50,, +20907,1,0.041249,1,0,0,1,2,RON,4,8,WB Highland/S US 23,RAMP,4104289,0,0.041,0,,1.09,4,0.054998,,0.054998,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.070507,,0.054998,,0.070507,,0.055295,,0.054998,,0.055295,,0.058284,,0.054998,,0.058284,,0.054998,,0.054998,,0.054998,,,,,,,,0.070507,,0.055295,,0.058284,,0.054998,,0.054998,,0.028577,,0.024013,,0.02491,,0.023924,,0.012787,,35.101727,,44.758043,,42.463316,,45,,45,,,,,,,,,,,,5160,,0.054998,,0.054998,,0.054998,,0.054998,,0.023924,,45,,, +20910,1,0.047319,1,0,0,1,2,RON,4,8,EB Highland/N US 23,RAMP,4104287,0,0.047,0,,1.09,4,0.063092,,0.063092,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.063198,,0.063092,,0.063198,,0.063253,,0.063092,,0.063253,,0.063434,,0.063092,,0.063434,,0.063092,,0.063092,,0.063092,,,,,,,,0.063198,,0.063253,,0.063434,,0.063092,,0.063092,,0.027477,,0.027493,,0.027548,,0.027445,,0.014669,,44.924989,,44.885811,,44.757802,,45,,45,,,,,,,,,,,,5160,,0.063092,,0.063092,,0.063092,,0.063092,,0.027445,,45,,, +20911,1,0.072538,1,0,0,1,2,ROF,4,8,N US 23/WB Highland,RAMP,4104286,0,0.073,0,,2.24,5,0.108807,,0.108807,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.108814,,0.108807,,0.108814,,0.108807,,0.108807,,0.108807,,0.108948,,0.108807,,0.108948,,0.108807,,0.108807,,0.108807,,,,,,,,0.108814,,0.108807,,0.108948,,0.108807,,0.108807,,0.045701,,0.045699,,0.045741,,0.045699,,0.0243,,39.997352,,39.999928,,39.948035,,40,,40,,,,,,,,,,,,5160,,0.108807,,0.108807,,0.108807,,0.108807,,0.045699,,40,,, +5435,1,0.059562,1,0,0,1,2,ROF,4,8,S US 23/WB Highland,RAMP,932107,0.263,0.322,0,,2.24,5,0.089343,,0.089343,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.089445,,0.089343,,0.089445,,0.089394,,0.089343,,0.089394,,0.089425,,0.089343,,0.089425,,0.089343,,0.089343,,0.089343,,,,,,,,0.089445,,0.089394,,0.089425,,0.089343,,0.089343,,0.037555,,0.037539,,0.037549,,0.037524,,0.019953,,39.95428,,39.977055,,39.963154,,40,,40,,,,,,,,,,,,5160,,0.089343,,0.089343,,0.089343,,0.089343,,0.037524,,40,,, +7080,0,0.057293,2,2,1,2,3,,5,8,Highland,Rd,933209,12.669,12.726,0,1.227702,1.7,4,0.068751,0.068751,0.068751,0.068751,50,50,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.078411,0.073089,0.068751,0.068751,0.078411,0.073089,0.074136,0.070196,0.068751,0.068751,0.074136,0.070196,0.08082,0.079908,0.068751,0.068751,0.08082,0.079908,0.068751,0.068751,0.068751,0.068751,0.068751,0.068751,,,,,,,0.078411,0.073089,0.074136,0.070196,0.08082,0.079908,0.068751,0.068751,0.068751,0.068751,0.033836,0.032239,0.032553,0.031372,0.034559,0.034285,0.030938,0.030938,0.016615,0.016615,43.840181,47.032798,46.368503,48.970827,42.533588,43.019255,50,50,50,50,,,,,,,,,,,6502,6502,0.068751,0.068751,0.068751,0.068751,0.068751,0.068751,0.068751,0.068751,0.030938,0.030938,50,50,, +7081,0,0.01378,2,2,1,2,3,,5,8,Highland,Rd,933209,12.655,12.669,0,0.295279,1.7,4,0.016536,0.016536,0.016536,0.016536,50,50,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.018859,0.020511,0.016536,0.016536,0.018859,0.020511,0.017831,0.018095,0.016536,0.016536,0.017831,0.018095,0.019438,0.024207,0.016536,0.016536,0.019438,0.024207,0.016536,0.016536,0.016536,0.016536,0.016536,0.016536,,,,,,,0.018859,0.020511,0.017831,0.018095,0.019438,0.024207,0.016536,0.016536,0.016536,0.016536,0.008138,0.008634,0.00783,0.007909,0.008312,0.009742,0.007441,0.007441,0.003996,0.003996,43.840181,40.310082,46.368503,45.692317,42.533588,34.154837,50,50,50,50,,,,,,,,,,,6502,6502,0.016536,0.016536,0.016536,0.016536,0.016536,0.016536,0.016536,0.016536,0.007441,0.007441,50,50,, +20909,1,0.062427,1,0,0,1,2,ROF,4,8,S US 23/EB Highland,RAMP,4104288,0,0.062,0,,2.24,5,0.093641,,0.093641,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.099888,,0.093641,,0.099888,,0.095926,,0.093641,,0.095926,,0.098917,,0.093641,,0.098917,,0.093641,,0.093641,,0.093641,,,,,,,,0.099888,,0.095926,,0.098917,,0.093641,,0.093641,,0.041203,,0.040015,,0.040912,,0.039329,,0.020913,,37.498155,,39.046881,,37.866346,,40,,40,,,,,,,,,,,,5160,,0.093641,,0.093641,,0.093641,,0.093641,,0.039329,,40,,, +5432,1,0.064148,1,0,0,1,2,RON,4,8,WB Highland/N US 23,RAMP,931806,0,0.064,0,,1.09,4,0.085531,,0.085531,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.087275,,0.085531,,0.087275,,0.087642,,0.085531,,0.087642,,0.093054,,0.085531,,0.093054,,0.085531,,0.085531,,0.085531,,,,,,,,0.087275,,0.087642,,0.093054,,0.085531,,0.085531,,0.037729,,0.037839,,0.039463,,0.037206,,0.019886,,44.100474,,43.915763,,41.361743,,45,,45,,,,,,,,,,,,5160,,0.085531,,0.085531,,0.085531,,0.085531,,0.037206,,45,,, +7078,0,0.026878,2,2,1,2,3,,5,8,Highland,Rd,933209,12.784,12.81,0,0.575947,1.7,4,0.032253,0.032253,0.032253,0.032253,50,50,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.121274,0.06926,0.032253,0.032253,0.121274,0.06926,0.055965,0.035575,0.032253,0.032253,0.055965,0.035575,0.151351,0.050644,0.032253,0.032253,0.151351,0.050644,0.032253,0.032253,0.032253,0.032253,0.032253,0.032253,,,,,,,0.121274,0.06926,0.055965,0.035575,0.151351,0.050644,0.032253,0.032253,0.032253,0.032253,0.04122,0.025616,0.021627,0.01551,0.050243,0.020031,0.014514,0.014514,0.007794,0.007794,13.297572,23.284102,28.815426,45.331086,10.655044,31.84271,50,50,50,50,,,,,,,,,,,6502,6502,0.032253,0.032253,0.032253,0.032253,0.032253,0.032253,0.032253,0.032253,0.014514,0.014514,50,50,, +37453,0,0.334436,2,2,1,2,5,,5,8,Hartland,Rd,4105279,0.021,0.356,0,7.166478,3.7,5,0.668871,0.668871,0.668871,0.668871,30,30,15750,15750,3575,3575,7875,7875,5081,5081,5418,5418,5412,5412,0.668871,0.668871,0.668871,0.668871,0.668871,0.668871,0.668872,0.668871,0.668871,0.668871,0.668872,0.668871,0.668873,0.668872,0.668871,0.668871,0.668873,0.668872,0.668871,0.668871,0.668871,0.668871,0.668871,0.668871,,,,,,,0.668871,0.668871,0.668872,0.668871,0.668873,0.668872,0.668871,0.668871,0.668871,0.668871,0.26086,0.26086,0.26086,0.26086,0.26086,0.26086,0.26086,0.26086,0.137119,0.137119,29.999995,29.999996,29.999983,29.999998,29.999943,29.999983,30,30,30,30,,,,,,,,,,,5418,5418,0.668871,0.668871,0.668871,0.668871,0.668871,0.668871,0.668871,0.668871,0.26086,0.26086,30,30,, +6978,0,0.121418,1,1,0,2,7,,5,8,Avon,St,4105279,1.732,1.853,0,2.601805,5.8,6,0.291402,0.291402,0.291402,0.291402,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.295733,0.292076,0.291402,0.291402,0.295733,0.292076,0.291428,0.291472,0.291402,0.291402,0.291428,0.291472,0.292263,0.295529,0.291402,0.291402,0.292263,0.295529,0.291402,0.291402,0.291402,0.291402,0.291402,0.291402,,,,,,,0.295733,0.292076,0.291428,0.291472,0.292263,0.295529,0.291402,0.291402,0.291402,0.291402,0.110575,0.109478,0.109283,0.109297,0.109534,0.110514,0.109276,0.109276,0.057066,0.057066,24.633884,24.942325,24.997803,24.993971,24.926398,24.650888,25,25,25,25,,,,,,,,,,,2064,2064,0.291402,0.291402,0.291402,0.291402,0.291402,0.291402,0.291402,0.291402,0.109276,0.109276,25,25,, +7753,0,1.120616,1,1,0,2,5,GRV,5,8,Pleasant Valley,Rd,934505,0,1.12,0,24.013191,5.55,5,3.361847,3.361847,3.361847,3.361847,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.385149,4.332455,3.361847,3.361847,3.385149,4.332455,3.363737,3.364693,3.361847,3.361847,3.363737,3.364693,4.333845,3.446475,3.361847,3.361847,4.333845,3.446475,3.361847,3.361847,3.361847,3.361847,3.361847,3.361847,,,,,,,3.385149,4.332455,3.363737,3.364693,4.333845,3.446475,3.361847,3.361847,3.361847,3.361847,1.217256,1.501447,1.210832,1.211119,1.501864,1.235653,1.210265,1.210265,0.627545,0.627545,19.862324,15.519362,19.988762,19.983079,15.514383,19.508898,20,20,20,20,,,,,,,,,,,2236,2236,3.361847,3.361847,3.361847,3.361847,3.361847,3.361847,3.361847,3.361847,1.210265,1.210265,20,20,, +7074,1,0.755602,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,14.541,15.296,0,16.19148,1.7,4,0.824294,,0.824294,,55,,24000,,5448,,12000,,7742,,8256,,8246,,1.482022,,0.824294,,1.482022,,0.98206,,0.824294,,0.98206,,1.600033,,0.824294,,1.600033,,0.824294,,0.824294,,0.824294,,,,,,,,1.482022,,0.98206,,1.600033,,0.824294,,0.824294,,0.580615,,0.430627,,0.616018,,0.383297,,0.20676,,30.590745,,46.164318,,28.334507,,55,,55,,,,,,,,,,,,8256,,0.824294,,0.824294,,0.824294,,0.824294,,0.383297,,55,,, +8153,0,0.989435,1,1,0,2,5,,5,8,Fenton,Rd,934505,2.15,3.139,0,21.202183,3.7,5,1.97887,1.97887,1.97887,1.97887,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.981361,1.991253,1.97887,1.97887,1.981361,1.991253,1.979603,1.980066,1.97887,1.97887,1.979603,1.980066,1.999231,1.992921,1.97887,1.97887,1.999231,1.992921,1.97887,1.97887,1.97887,1.97887,1.97887,1.97887,,,,,,,1.981361,1.991253,1.979603,1.980066,1.999231,1.992921,1.97887,1.97887,1.97887,1.97887,0.772507,0.775474,0.771979,0.772118,0.777868,0.775975,0.771759,0.771759,0.405668,0.405668,29.962287,29.813452,29.988904,29.98188,29.694473,29.788496,30,30,30,30,,,,,,,,,,,2580,2580,1.97887,1.97887,1.97887,1.97887,1.97887,1.97887,1.97887,1.97887,0.771759,0.771759,30,30,, +19923,-1,0.755752,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,1.699,2.454,0,16.194679,1.7,4,,0.824456,,0.824456,,55,,24000,,5448,,12000,,7742,,8256,,8246,,1.507002,,0.824456,,1.507002,,0.98724,,0.824456,,0.98724,,1.687261,,0.824456,,1.687261,,0.824456,,0.824456,,0.824456,,,,,,,,1.507002,,0.98724,,1.687261,,0.824456,,0.824456,,0.588136,,0.432207,,0.642214,,0.383372,,0.206801,,30.089613,,45.931177,,26.87498,,55,,55,,,,,,,,,,,,8256,,0.824456,,0.824456,,0.824456,,0.824456,,0.383372,,55,, +26048,0,0.888732,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.044252,0.15,4,3.554927,3.554927,3.554927,3.554927,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,,,,,,,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,1.22645,1.22645,1.22645,1.22645,1.22645,1.22645,1.22645,1.22645,0.631,0.631,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,3.554927,1.22645,1.22645,15,15,, +26050,0,0.494246,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.590981,0.15,4,1.976983,1.976983,1.976983,1.976983,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,,,,,,,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,0.682059,0.682059,0.682059,0.682059,0.682059,0.682059,0.682059,0.682059,0.350914,0.350914,15,14.999999,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,1.976983,0.682059,0.682059,15,15,, +30159,0,0.473262,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.141319,0.15,4,1.893046,1.893046,1.893046,1.893046,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,1.893047,1.893046,1.893046,1.893046,1.893047,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,,,,,,,1.893046,1.893046,1.893046,1.893046,1.893047,1.893046,1.893046,1.893046,1.893046,1.893046,0.653101,0.653101,0.653101,0.653101,0.653101,0.653101,0.653101,0.653101,0.336016,0.336016,14.999998,15,14.999999,15,14.999995,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,1.893046,0.653101,0.653101,15,15,, +19922,-1,0.405485,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,2.454,2.86,0,8.688966,1.7,4,,0.442347,,0.442347,,55,,24000,,5448,,12000,,7742,,8256,,8246,,0.859166,,0.442347,,0.859166,,0.537089,,0.442347,,0.537089,,0.858764,,0.442347,,0.858764,,0.442347,,0.442347,,0.442347,,,,,,,,0.859166,,0.537089,,0.858764,,0.442347,,0.442347,,0.330737,,0.234114,,0.330617,,0.205692,,0.110955,,28.317133,,45.298107,,28.330366,,55,,55,,,,,,,,,,,,8256,,0.442347,,0.442347,,0.442347,,0.442347,,0.205692,,55,, +8160,0,0.020684,1,1,0,2,5,,5,8,Fenton,Rd,934505,2.129,2.15,0,0.443236,3.7,5,0.041369,0.041369,0.041369,0.041369,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.041497,0.043077,0.041369,0.041369,0.041497,0.043077,0.041374,0.0414,0.041369,0.041369,0.041374,0.0414,0.042832,0.041731,0.041369,0.041369,0.042832,0.041731,0.041369,0.041369,0.041369,0.041369,0.041369,0.041369,,,,,,,0.041497,0.043077,0.041374,0.0414,0.042832,0.041731,0.041369,0.041369,0.041369,0.041369,0.016172,0.016646,0.016135,0.016143,0.016573,0.016243,0.016134,0.016134,0.008481,0.008481,29.907227,28.81031,29.996191,29.977423,28.975037,29.73929,30,30,30,30,,,,,,,,,,,2580,2580,0.041369,0.041369,0.041369,0.041369,0.041369,0.041369,0.041369,0.041369,0.016134,0.016134,30,30,, +8131,0,2.136941,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,5.669,7.806,0,45.791602,3.7,5,4.273883,4.273883,4.273883,4.273883,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.275283,4.828079,4.273883,4.273883,4.275283,4.828079,4.279182,4.281373,4.273883,4.273883,4.279182,4.281373,4.777196,4.295588,4.273883,4.273883,4.777196,4.295588,4.273883,4.273883,4.273883,4.273883,4.273883,4.273883,,,,,,,4.275283,4.828079,4.279182,4.281373,4.777196,4.295588,4.273883,4.273883,4.273883,4.273883,1.667234,1.833073,1.668404,1.669061,1.817808,1.673326,1.666814,1.666814,0.876146,0.876146,29.990173,26.556416,29.962852,29.947514,26.839278,29.848417,30,30,30,30,,,,,,,,,,,2580,2580,4.273883,4.273883,4.273883,4.273883,4.273883,4.273883,4.273883,4.273883,1.666814,1.666814,30,30,, +26916,0,1.139494,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.41772,0.15,4,4.557974,4.557974,4.557974,4.557974,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,,,,,,,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,1.572501,1.572501,1.572501,1.572501,1.572501,1.572501,1.572501,1.572501,0.80904,0.80904,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,4.557974,1.572501,1.572501,15,15,, +7939,0,1.010573,1,1,0,2,5,GRV,5,8,Clyde,Rd,939905,9.903,10.913,0,21.655136,5.55,5,3.031719,3.031719,3.031719,3.031719,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.079797,3.081241,3.031719,3.031719,3.079797,3.081241,3.032841,3.032951,3.031719,3.031719,3.032841,3.032951,3.107178,3.125404,3.031719,3.031719,3.107178,3.125404,3.031719,3.031719,3.031719,3.031719,3.031719,3.031719,,,,,,,3.079797,3.081241,3.032841,3.032951,3.107178,3.125404,3.031719,3.031719,3.031719,3.031719,1.105842,1.106275,1.091756,1.091788,1.114057,1.119524,1.091419,1.091419,0.565921,0.565921,19.687785,19.678558,19.992599,19.991879,19.514292,19.400494,20,20,20,20,,,,,,,,,,,2236,2236,3.031719,3.031719,3.031719,3.031719,3.031719,3.031719,3.031719,3.031719,1.091419,1.091419,20,20,, +8137,0,0.507553,1,1,0,2,5,,5,8,Fenton,Rd,934505,5.162,5.669,0,10.876139,3.7,5,1.015106,1.015106,1.015106,1.015106,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.015724,1.234892,1.015106,1.015106,1.015724,1.234892,1.017234,1.018403,1.015106,1.015106,1.017234,1.018403,1.218121,1.026065,1.015106,1.015106,1.218121,1.026065,1.015106,1.015106,1.015106,1.015106,1.015106,1.015106,,,,,,,1.015724,1.234892,1.017234,1.018403,1.218121,1.026065,1.015106,1.015106,1.015106,1.015106,0.396077,0.461827,0.39653,0.39688,0.456796,0.399179,0.395891,0.395891,0.208097,0.208097,29.981757,24.660602,29.937239,29.902894,25.000141,29.679597,30,30,30,30,,,,,,,,,,,2580,2580,1.015106,1.015106,1.015106,1.015106,1.015106,1.015106,1.015106,1.015106,0.395891,0.395891,30,30,, +26942,0,0.960763,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.587768,0.15,4,3.84305,3.84305,3.84305,3.84305,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,,,,,,,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,1.325852,1.325852,1.325852,1.325852,1.325852,1.325852,1.325852,1.325852,0.682141,0.682141,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,3.84305,1.325852,1.325852,15,15,, +26989,0,0.570476,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.224483,0.15,4,2.281904,2.281904,2.281904,2.281904,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,,,,,,,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,0.787257,0.787257,0.787257,0.787257,0.787257,0.787257,0.787257,0.787257,0.405038,0.405038,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,2.281904,0.787257,0.787257,15,15,, +8147,0,1.011176,1,1,0,2,5,,5,8,Fenton,Rd,934505,4.151,5.162,0,21.668062,3.7,5,2.022352,2.022352,2.022352,2.022352,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.022786,2.250603,2.022352,2.022352,2.022786,2.250603,2.024685,2.025856,2.022352,2.022352,2.024685,2.025856,2.279685,2.031733,2.022352,2.022352,2.279685,2.031733,2.022352,2.022352,2.022352,2.022352,2.022352,2.022352,,,,,,,2.022786,2.250603,2.024685,2.025856,2.279685,2.031733,2.022352,2.022352,2.022352,2.022352,0.788847,0.857193,0.789417,0.789769,0.865917,0.791532,0.788717,0.788717,0.414582,0.414582,29.993576,26.957471,29.965435,29.948116,26.613581,29.861488,30,30,30,30,,,,,,,,,,,2580,2580,2.022352,2.022352,2.022352,2.022352,2.022352,2.022352,2.022352,2.022352,0.788717,0.788717,30,30,, +2199,1,1.229685,2,0,0,2,3,DIV,5,3,Highland,Rd,648906,0.872,2.101,0,26.350392,1.7,4,1.341474,,1.341474,,55,,24000,,5448,,12000,,7742,,8256,,8246,,2.319175,,1.341474,,2.319175,,1.516361,,1.341474,,1.516361,,2.323291,,1.341474,,2.323291,,1.341474,,1.341474,,1.341474,,,,,,,,2.319175,,1.516361,,2.323291,,1.341474,,1.341474,,0.917096,,0.676252,,0.918331,,0.623786,,0.336487,,31.813513,,48.656692,,31.757151,,55,,55,,,,,,,,,,,,8256,,1.341474,,1.341474,,1.341474,,1.341474,,0.623786,,55,,, +2494,0,1.193215,1,1,0,2,5,GRV,5,3,Wardlow,Rd,650309,0,1.193,0,25.568896,5.55,5,3.579645,3.579645,3.579645,3.579645,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,3.579646,3.579646,3.579645,3.579645,3.579646,3.579646,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,,,,,,,3.579645,3.579645,3.579646,3.579646,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,1.288672,1.288672,1.288672,1.288672,1.288672,1.288672,1.288672,1.288672,0.6682,0.6682,20,20,19.999999,19.999999,20,20,20,20,20,20,,,,,,,,,,,2236,2236,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,3.579645,1.288672,1.288672,20,20,, +21007,0,1.000898,1,1,0,2,4,,5,3,Hickory Ridge,Rd,4410281,5.052,6.052,0,21.447807,3,4,1.501346,1.501346,1.501346,1.501346,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.69232,2.105187,1.501346,1.501346,1.69232,2.105187,1.608898,1.623861,1.501346,1.501346,1.608898,1.623861,2.120299,1.873929,1.501346,1.501346,2.120299,1.873929,1.501346,1.501346,1.501346,1.501346,1.501346,1.501346,,,,,,,1.69232,2.105187,1.608898,1.623861,2.120299,1.873929,1.501346,1.501346,1.501346,1.501346,0.687858,0.811718,0.662831,0.66732,0.816251,0.74234,0.630566,0.630566,0.335301,0.335301,35.486112,28.526614,37.326081,36.982138,28.323295,32.047034,40,40,40,40,,,,,,,,,,,3096,3096,1.501346,1.501346,1.501346,1.501346,1.501346,1.501346,1.501346,1.501346,0.630566,0.630566,40,40,, +21070,-1,1.130518,0,2,0,2,3,DIV,5,3,Highland,Rd,4410120,0.871,2.002,0,24.22539,1.7,4,,1.233293,,1.233293,,55,,24000,,5448,,12000,,7742,,8256,,8246,,2.118249,,1.233293,,2.118249,,1.394231,,1.233293,,1.394231,,2.238505,,1.233293,,2.238505,,1.233293,,1.233293,,1.233293,,,,,,,,2.118249,,1.394231,,2.238505,,1.233293,,1.233293,,0.838968,,0.621762,,0.875045,,0.573481,,0.309351,,32.022247,,48.651268,,30.301955,,55,,55,,,,,,,,,,,,8256,,1.233293,,1.233293,,1.233293,,1.233293,,0.573481,,55,, +26959,0,0.993688,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.293308,0.15,4,3.974751,3.974751,3.974751,3.974751,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,,,,,,,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,1.371289,1.371289,1.371289,1.371289,1.371289,1.371289,1.371289,1.371289,0.705518,0.705518,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,3.974751,1.371289,1.371289,15,15,, +26960,0,1.185012,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.393122,0.15,4,4.740049,4.740049,4.740049,4.740049,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,,,,,,,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,1.635317,1.635317,1.635317,1.635317,1.635317,1.635317,1.635317,1.635317,0.841359,0.841359,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,4.740049,1.635317,1.635317,15,15,, +27087,0,1.087976,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.313771,0.15,4,4.351904,4.351904,4.351904,4.351904,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,,,,,,,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,1.501407,1.501407,1.501407,1.501407,1.501407,1.501407,1.501407,1.501407,0.772463,0.772463,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,4.351904,1.501407,1.501407,15,15,, +27093,0,1.094186,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.446837,0.15,4,4.376743,4.376743,4.376743,4.376743,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,,,,,,,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,1.509976,1.509976,1.509976,1.509976,1.509976,1.509976,1.509976,1.509976,0.776872,0.776872,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,4.376743,1.509976,1.509976,15,15,, +29849,0,1.00025,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.433936,0.15,4,4.001001,4.001001,4.001001,4.001001,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.001001,4.001002,4.001001,4.001001,4.001001,4.001002,4.001001,4.001001,4.001001,4.001001,4.001001,4.001001,4.001002,4.001001,4.001001,4.001001,4.001002,4.001001,4.001001,4.001001,4.001001,4.001001,4.001001,4.001001,,,,,,,4.001001,4.001002,4.001001,4.001001,4.001002,4.001001,4.001001,4.001001,4.001001,4.001001,1.380345,1.380346,1.380345,1.380345,1.380346,1.380346,1.380345,1.380345,0.710178,0.710178,15,14.999998,15,15,14.999997,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,4.001001,4.001001,4.001001,4.001001,4.001001,4.001001,4.001001,4.001001,1.380345,1.380345,15,15,, +29850,0,1.112769,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.845055,0.15,4,4.451077,4.451077,4.451077,4.451077,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,,,,,,,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,1.535622,1.535622,1.535622,1.535622,1.535622,1.535622,1.535622,1.535622,0.790066,0.790066,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,4.451077,1.535622,1.535622,15,15,, +19854,0,0.543585,1,1,0,2,5,,5,3,Commerce,Rd,4104140,0.185,0.729,0,11.648244,3.7,5,1.087169,1.087169,1.087169,1.087169,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.259967,1.11853,1.087169,1.087169,1.259967,1.11853,1.087294,1.087298,1.087169,1.087169,1.087294,1.087298,1.162737,1.318174,1.087169,1.087169,1.162737,1.318174,1.087169,1.087169,1.087169,1.087169,1.087169,1.087169,,,,,,,1.259967,1.11853,1.087294,1.087298,1.162737,1.318174,1.087169,1.087169,1.087169,1.087169,0.475835,0.433404,0.424034,0.424035,0.446666,0.493297,0.423996,0.423996,0.22287,0.22287,25.885665,29.158883,29.996551,29.996453,28.050258,24.742628,30,30,30,30,,,,,,,,,,,2580,2580,1.087169,1.087169,1.087169,1.087169,1.087169,1.087169,1.087169,1.087169,0.423996,0.423996,30,30,, +21008,0,1.527124,1,1,0,2,4,,5,3,Hickory Ridge,Rd,4410281,3.525,5.052,0,32.724087,3,4,2.290686,2.290686,2.290686,2.290686,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.721642,5.01488,2.290686,2.290686,2.721642,5.01488,2.547742,2.607328,2.290686,2.290686,2.547742,2.607328,4.948113,3.251514,2.290686,2.290686,4.948113,3.251514,2.290686,2.290686,2.290686,2.290686,2.290686,2.290686,,,,,,,2.721642,5.01488,2.547742,2.607328,4.948113,3.251514,2.290686,2.290686,2.290686,2.290686,1.091375,1.779346,1.039205,1.057081,1.759316,1.250336,0.962088,0.962088,0.511587,0.511587,33.666242,18.271115,35.964179,35.142282,18.517653,28.179933,40,40,40,40,,,,,,,,,,,3096,3096,2.290686,2.290686,2.290686,2.290686,2.290686,2.290686,2.290686,2.290686,0.962088,0.962088,40,40,, +27088,0,0.955459,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.474119,0.15,4,3.821836,3.821836,3.821836,3.821836,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,,,,,,,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,1.318533,1.318533,1.318533,1.318533,1.318533,1.318533,1.318533,1.318533,0.678376,0.678376,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,3.821836,1.318533,1.318533,15,15,, +7421,0,0.349484,1,1,0,2,5,,5,8,Commerce,Rd,936705,2.216,2.565,0,7.488933,3.7,5,0.698967,0.698967,0.698967,0.698967,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.810063,0.719129,0.698967,0.698967,0.810063,0.719129,0.699047,0.69905,0.698967,0.698967,0.699047,0.69905,0.747552,0.847485,0.698967,0.698967,0.747552,0.847485,0.698967,0.698967,0.698967,0.698967,0.698967,0.698967,,,,,,,0.810063,0.719129,0.699047,0.69905,0.747552,0.847485,0.698967,0.698967,0.698967,0.698967,0.305926,0.278646,0.272621,0.272622,0.287172,0.317153,0.272597,0.272597,0.143288,0.143288,25.885665,29.158883,29.996551,29.996453,28.050258,24.742628,30,30,30,30,,,,,,,,,,,2580,2580,0.698967,0.698967,0.698967,0.698967,0.698967,0.698967,0.698967,0.698967,0.272597,0.272597,30,30,, +19855,0,0.185288,1,1,0,2,5,,5,8,Commerce,Rd,4104140,0,0.185,0,3.970464,3.7,5,0.370577,0.370577,0.370577,0.370577,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.429477,0.381266,0.370577,0.370577,0.429477,0.381266,0.370619,0.37062,0.370577,0.370577,0.370619,0.37062,0.396335,0.449318,0.370577,0.370577,0.396335,0.449318,0.370577,0.370577,0.370577,0.370577,0.370577,0.370577,,,,,,,0.429477,0.381266,0.370619,0.37062,0.396335,0.449318,0.370577,0.370577,0.370577,0.370577,0.162195,0.147732,0.144538,0.144538,0.152252,0.168147,0.144525,0.144525,0.075968,0.075968,25.885665,29.158883,29.996551,29.996453,28.050258,24.742628,30,30,30,30,,,,,,,,,,,2580,2580,0.370577,0.370577,0.370577,0.370577,0.370577,0.370577,0.370577,0.370577,0.144525,0.144525,30,30,, +19853,0,0.382268,1,1,0,2,5,,5,3,Commerce,Rd,4104140,0.729,1.111,0,8.191452,3.7,5,0.764536,0.764536,0.764536,0.764536,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.823124,0.85622,0.764536,0.764536,0.823124,0.85622,0.766534,0.766998,0.764536,0.764536,0.766534,0.766998,0.875653,0.862873,0.764536,0.764536,0.875653,0.862873,0.764536,0.764536,0.764536,0.764536,0.764536,0.764536,,,,,,,0.823124,0.85622,0.766534,0.766998,0.875653,0.862873,0.764536,0.764536,0.764536,0.764536,0.315745,0.325674,0.298768,0.298908,0.331504,0.32767,0.298169,0.298169,0.15673,0.15673,27.864648,26.787584,29.921797,29.903675,26.193088,26.581061,30,30,30,30,,,,,,,,,,,2580,2580,0.764536,0.764536,0.764536,0.764536,0.764536,0.764536,0.764536,0.764536,0.298169,0.298169,30,30,, +27092,0,0.431058,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,9.236956,0.15,4,1.724232,1.724232,1.724232,1.724232,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,,,,,,,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,0.59486,0.59486,0.59486,0.59486,0.59486,0.59486,0.59486,0.59486,0.306051,0.306051,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,1.724232,0.59486,0.59486,15,15,, +2200,1,0.872366,2,0,0,2,3,DIV,5,3,Highland,Rd,648906,0,0.872,0,18.693552,1.7,4,0.951672,,0.951672,,55,,24000,,5448,,12000,,7742,,8256,,8246,,1.68918,,0.951672,,1.68918,,1.150859,,0.951672,,1.150859,,1.913017,,0.951672,,1.913017,,0.951672,,0.951672,,0.951672,,,,,,,,1.68918,,1.150859,,1.913017,,0.951672,,0.951672,,0.66378,,0.502284,,0.730931,,0.442527,,0.238711,,30.986602,,45.48076,,27.360938,,55,,55,,,,,,,,,,,,8256,,0.951672,,0.951672,,0.951672,,0.951672,,0.442527,,55,,, +21005,0,0.983817,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,6.074,7.057,0,21.081784,3.7,5,1.967633,1.967633,1.967633,1.967633,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.972784,2.234729,1.967633,1.967633,1.972784,2.234729,1.968853,1.969124,1.967633,1.967633,1.968853,1.969124,2.51736,2.027759,1.967633,1.967633,2.51736,2.027759,1.967633,1.967633,1.967633,1.967633,1.967633,1.967633,,,,,,,1.972784,2.234729,1.968853,1.969124,2.51736,2.027759,1.967633,1.967633,1.967633,1.967633,0.768922,0.847506,0.767743,0.767824,0.932295,0.785415,0.767377,0.767377,0.403365,0.403365,29.921674,26.414384,29.981406,29.977292,23.448773,29.110451,30,30,30,30,,,,,,,,,,,2580,2580,1.967633,1.967633,1.967633,1.967633,1.967633,1.967633,1.967633,1.967633,0.767377,0.767377,30,30,, +21071,-1,0.871761,0,2,0,2,3,DIV,5,3,Highland,Rd,4410120,0,0.871,0,18.680588,1.7,4,,0.951012,,0.951012,,55,,24000,,5448,,12000,,7742,,8256,,8246,,1.794626,,0.951012,,1.794626,,1.146707,,0.951012,,1.146707,,1.837846,,0.951012,,1.837846,,0.951012,,0.951012,,0.951012,,,,,,,,1.794626,,1.146707,,1.837846,,0.951012,,0.951012,,0.695305,,0.500929,,0.708271,,0.44222,,0.238545,,29.145711,,45.61377,,28.460299,,55,,55,,,,,,,,,,,,8256,,0.951012,,0.951012,,0.951012,,0.951012,,0.44222,,55,, +7072,1,0.31025,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,16.008,16.318,0,6.648222,1.7,4,0.338455,,0.338455,,55,,24000,,5448,,12000,,7742,,8256,,8246,,0.623221,,0.338455,,0.623221,,0.41689,,0.338455,,0.41689,,0.725195,,0.338455,,0.725195,,0.338455,,0.338455,,0.338455,,,,,,,,0.623221,,0.41689,,0.725195,,0.338455,,0.338455,,0.242811,,0.180912,,0.273403,,0.157382,,0.084896,,29.869041,,44.65207,,25.669002,,55,,55,,,,,,,,,,,,8256,,0.338455,,0.338455,,0.338455,,0.338455,,0.157382,,55,,, +21006,0,0.021502,1,1,0,2,4,,5,3,Hickory Ridge,Rd,4410281,6.052,6.074,0,0.460752,3,4,0.032253,0.032253,0.032253,0.032253,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.035055,0.039917,0.032253,0.032253,0.035055,0.039917,0.033772,0.032381,0.032253,0.032253,0.033772,0.032381,0.042783,0.033275,0.032253,0.032253,0.042783,0.033275,0.032253,0.032253,0.032253,0.032253,0.032253,0.032253,,,,,,,0.035055,0.039917,0.033772,0.032381,0.042783,0.033275,0.032253,0.032253,0.032253,0.032253,0.014387,0.015845,0.014002,0.013584,0.016705,0.013853,0.013546,0.013546,0.007203,0.007203,36.801914,32.319977,38.200847,39.842022,30.154641,38.771503,40,40,40,40,,,,,,,,,,,3096,3096,0.032253,0.032253,0.032253,0.032253,0.032253,0.032253,0.032253,0.032253,0.013546,0.013546,40,40,, +26949,0,0.530727,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.372722,0.15,4,2.122908,2.122908,2.122908,2.122908,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,,,,,,,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,0.732403,0.732403,0.732403,0.732403,0.732403,0.732403,0.732403,0.732403,0.376816,0.376816,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,2.122908,0.732403,0.732403,15,15,, +28552,0,1.146263,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.562779,0.15,4,4.585052,4.585052,4.585052,4.585052,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,,,,,,,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,1.581843,1.581843,1.581843,1.581843,1.581843,1.581843,1.581843,1.581843,0.813847,0.813847,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,4.585052,1.581843,1.581843,15,15,, +29796,0,1.095817,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.4818,0.15,4,4.383269,4.383269,4.383269,4.383269,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.38327,4.383269,4.383269,4.383269,4.38327,4.383269,4.383269,4.383269,4.383269,4.383269,4.383269,4.383269,4.38327,4.38327,4.383269,4.383269,4.38327,4.38327,4.383269,4.383269,4.383269,4.383269,4.383269,4.383269,,,,,,,4.38327,4.383269,4.383269,4.383269,4.38327,4.38327,4.383269,4.383269,4.383269,4.383269,1.512228,1.512228,1.512228,1.512228,1.512228,1.512228,1.512228,1.512228,0.77803,0.77803,14.999997,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,4.383269,4.383269,4.383269,4.383269,4.383269,4.383269,4.383269,4.383269,1.512228,1.512228,15,15,, +2202,0,1.443732,1,1,0,2,5,,5,3,Middle,Rd,648808,0.878,2.321,0,30.937122,3.7,5,2.887465,2.887465,2.887465,2.887465,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.887467,2.887465,2.887465,2.887465,2.887467,2.887465,2.887465,2.887465,2.887465,2.887465,2.887465,2.887465,2.887468,2.887468,2.887465,2.887465,2.887468,2.887468,2.887465,2.887465,2.887465,2.887465,2.887465,2.887465,,,,,,,2.887467,2.887465,2.887465,2.887465,2.887468,2.887468,2.887465,2.887465,2.887465,2.887465,1.126112,1.126111,1.126111,1.126111,1.126112,1.126112,1.126111,1.126111,0.59193,0.59193,29.999976,29.999998,30,30,29.999971,29.999965,30,30,30,30,,,,,,,,,,,2580,2580,2.887465,2.887465,2.887465,2.887465,2.887465,2.887465,2.887465,2.887465,1.126111,1.126111,30,30,, +2205,0,1.023127,1,1,0,2,5,,5,3,Clyde,Rd,648706,0.884,1.907,0,21.924157,3.7,5,2.046255,2.046255,2.046255,2.046255,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.21852,2.36495,2.046255,2.046255,2.21852,2.36495,2.055477,2.055059,2.046255,2.046255,2.055477,2.055059,2.346091,2.326969,2.046255,2.046255,2.346091,2.326969,2.046255,2.046255,2.046255,2.046255,2.046255,2.046255,,,,,,,2.21852,2.36495,2.055477,2.055059,2.346091,2.326969,2.046255,2.046255,2.046255,2.046255,0.849719,0.893648,0.800806,0.800681,0.88799,0.882254,0.798039,0.798039,0.419482,0.419482,27.670537,25.95727,29.865392,29.871467,26.165919,26.380941,30,30,30,30,,,,,,,,,,,2580,2580,2.046255,2.046255,2.046255,2.046255,2.046255,2.046255,2.046255,2.046255,0.798039,0.798039,30,30,, +21001,0,2.135561,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,10.095,12.23,0,45.762021,3.7,5,4.271122,4.271122,4.271122,4.271122,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.310598,4.582405,4.271122,4.271122,4.310598,4.582405,4.277351,4.278483,4.271122,4.271122,4.277351,4.278483,5.138073,4.582701,4.271122,4.271122,5.138073,4.582701,4.271122,4.271122,4.271122,4.271122,4.271122,4.271122,,,,,,,4.310598,4.582405,4.277351,4.278483,5.138073,4.582701,4.271122,4.271122,4.271122,4.271122,1.67758,1.759123,1.667606,1.667946,1.925823,1.759211,1.665738,1.665738,0.87558,0.87558,29.725262,27.962097,29.95631,29.948387,24.938078,27.960293,30,30,30,30,,,,,,,,,,,2580,2580,4.271122,4.271122,4.271122,4.271122,4.271122,4.271122,4.271122,4.271122,1.665738,1.665738,30,30,, +26921,0,1.07011,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.930928,0.15,4,4.28044,4.28044,4.28044,4.28044,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,,,,,,,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,1.476752,1.476752,1.476752,1.476752,1.476752,1.476752,1.476752,1.476752,0.759778,0.759778,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,4.28044,1.476752,1.476752,15,15,, +26943,0,1.260961,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.020584,0.15,4,5.043842,5.043842,5.043842,5.043842,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,,,,,,,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,1.740126,1.740126,1.740126,1.740126,1.740126,1.740126,1.740126,1.740126,0.895282,0.895282,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,5.043842,1.740126,1.740126,15,15,, +29798,0,1.449295,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,31.05633,0.15,4,5.797182,5.797182,5.797182,5.797182,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,,,,,,,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,2.000028,2.000028,2.000028,2.000028,2.000028,2.000028,2.000028,2.000028,1.029,1.029,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,5.797182,2.000028,2.000028,15,15,, +2206,0,0.884257,1,1,0,2,5,,5,3,Clyde,Rd,648706,0,0.884,0,18.948357,3.7,5,1.768513,1.768513,1.768513,1.768513,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.079047,1.991893,1.768513,1.768513,2.079047,1.991893,1.778609,1.778377,1.768513,1.768513,1.778609,1.778377,2.160836,2.20718,1.768513,1.768513,2.160836,2.20718,1.768513,1.768513,1.768513,1.768513,1.768513,1.768513,,,,,,,2.079047,1.991893,1.778609,1.778377,2.160836,2.20718,1.768513,1.768513,1.768513,1.768513,0.78288,0.756734,0.692749,0.692679,0.807417,0.82132,0.68972,0.68972,0.362545,0.362545,25.519101,26.635668,29.829707,29.833601,24.553186,24.037641,30,30,30,30,,,,,,,,,,,2580,2580,1.768513,1.768513,1.768513,1.768513,1.768513,1.768513,1.768513,1.768513,0.68972,0.68972,30,30,, +21002,0,1.03104,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,9.065,10.095,0,22.093721,3.7,5,2.062081,2.062081,2.062081,2.062081,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.075744,2.186716,2.062081,2.062081,2.075744,2.186716,2.063911,2.064353,2.062081,2.062081,2.063911,2.064353,2.398643,2.17725,2.062081,2.062081,2.398643,2.17725,2.062081,2.062081,2.062081,2.062081,2.062081,2.062081,,,,,,,2.075744,2.186716,2.063911,2.064353,2.398643,2.17725,2.062081,2.062081,2.062081,2.062081,0.80831,0.841602,0.804761,0.804893,0.90518,0.838762,0.804211,0.804211,0.422727,0.422727,29.802535,28.290096,29.973393,29.966975,25.790593,28.413102,30,30,30,30,,,,,,,,,,,2580,2580,2.062081,2.062081,2.062081,2.062081,2.062081,2.062081,2.062081,2.062081,0.804211,0.804211,30,30,, +21003,0,1.003447,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,8.061,9.065,0,21.502432,3.7,5,2.006894,2.006894,2.006894,2.006894,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.014073,2.244878,2.006894,2.006894,2.014073,2.244878,2.008998,2.009416,2.006894,2.006894,2.008998,2.009416,2.323125,2.091669,2.006894,2.006894,2.323125,2.091669,2.006894,2.006894,2.006894,2.006894,2.006894,2.006894,,,,,,,2.014073,2.244878,2.008998,2.009416,2.323125,2.091669,2.006894,2.006894,2.006894,2.006894,0.784842,0.854084,0.78332,0.783445,0.877558,0.808121,0.782689,0.782689,0.411413,0.411413,29.893056,26.819635,29.968573,29.962336,25.916298,28.784106,30,30,30,30,,,,,,,,,,,2580,2580,2.006894,2.006894,2.006894,2.006894,2.006894,2.006894,2.006894,2.006894,0.782689,0.782689,30,30,, +26945,0,0.152134,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,3.260008,0.15,4,0.608535,0.608535,0.608535,0.608535,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,,,,,,,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.209945,0.209944,0.209945,0.209944,0.209945,0.209945,0.209944,0.209944,0.108015,0.108015,14.999994,14.999999,14.999999,14.999999,14.999998,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.608535,0.209944,0.209944,15,15,, +3400,0,0.491449,1,1,0,2,5,GRV,5,3,Halsey,Rd,651401,0,0.491,0,10.531049,5.55,5,1.474347,1.474347,1.474347,1.474347,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,,,,,,,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,0.530765,0.530765,0.530765,0.530765,0.530765,0.530765,0.530765,0.530765,0.275211,0.275211,19.999995,19.999995,19.999999,19.999999,19.999999,19.999999,20,20,20,20,,,,,,,,,,,2236,2236,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,1.474347,0.530765,0.530765,20,20,, +6300,1,2.107118,2,0,0,1,2,,5,8,N US 23,,931510,22.161,24.268,0,,1.02,7,1.806101,,1.806101,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.832944,,1.806101,,1.832944,,1.821542,,1.806101,,1.821542,,1.862397,,1.806101,,1.862397,,1.806101,,1.806101,,1.806101,,,,,,,,1.832944,,1.821542,,1.862397,,1.806101,,1.806101,,0.929164,,0.925744,,0.938,,0.921112,,0.502698,,68.974892,,69.406624,,67.884087,,70,,70,,,,,,,,,,,,15136,,1.806101,,1.806101,,1.806101,,1.806101,,0.921112,,70,,, +6488,0,0.956255,1,1,0,2,5,,5,8,White Lake,Rd,931905,4.043,4.999,0,20.49117,3.7,5,1.912509,1.912509,1.912509,1.912509,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.99146,2.36498,1.912509,1.912509,1.99146,2.36498,1.963057,1.986813,1.912509,1.912509,1.963057,1.986813,2.026811,2.090395,1.912509,1.912509,2.026811,2.090395,1.912509,1.912509,1.912509,1.912509,1.912509,1.912509,,,,,,,1.99146,2.36498,1.963057,1.986813,2.026811,2.090395,1.912509,1.912509,1.912509,1.912509,0.769564,0.88162,0.761043,0.76817,0.780169,0.799244,0.745879,0.745879,0.392064,0.392064,28.810656,24.260368,29.227507,28.878041,28.308147,27.447098,30,30,30,30,,,,,,,,,,,2580,2580,1.912509,1.912509,1.912509,1.912509,1.912509,1.912509,1.912509,1.912509,0.745879,0.745879,30,30,, +6737,-1,1.989793,0,2,0,1,2,,5,8,S US 23,,932002,22.107,24.096,0,,1.02,7,,1.705537,,1.705537,,70,,44000,,9988,,22000,,14194,,15136,,15118,,1.736191,,1.705537,,1.736191,,1.719793,,1.705537,,1.719793,,1.761801,,1.705537,,1.761801,,1.705537,,1.705537,,1.705537,,,,,,,,1.736191,,1.719793,,1.761801,,1.705537,,1.705537,,0.87902,,0.8741,,0.886703,,0.869824,,0.474708,,68.764091,,69.419748,,67.764491,,70,,70,,,,,,,,,,,,15136,,1.705537,,1.705537,,1.705537,,1.705537,,0.869824,,70,, +6739,0,0.681982,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,23.764,24.446,0,14.613897,3.7,5,1.363964,1.363964,1.363964,1.363964,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.363964,1.363965,1.363964,1.363964,1.363964,1.363965,1.363964,1.363965,1.363964,1.363964,1.363964,1.363965,1.363964,1.363965,1.363964,1.363964,1.363964,1.363965,1.363964,1.363964,1.363964,1.363964,1.363964,1.363964,,,,,,,1.363964,1.363965,1.363964,1.363965,1.363964,1.363965,1.363964,1.363964,1.363964,1.363964,0.531946,0.531946,0.531946,0.531946,0.531946,0.531946,0.531946,0.531946,0.279613,0.279613,30,29.999966,30,29.999976,30,29.99998,30,30,30,30,,,,,,,,,,,2580,2580,1.363964,1.363964,1.363964,1.363964,1.363964,1.363964,1.363964,1.363964,0.531946,0.531946,30,30,, +7276,0,0.888013,1,1,0,2,5,,5,8,Center,Rd,941603,6.142,7.03,0,19.028846,3.7,5,1.776026,1.776026,1.776026,1.776026,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.776077,1.828737,1.776026,1.776026,1.776077,1.828737,1.776129,1.776353,1.776026,1.776026,1.776129,1.776353,1.817928,1.777168,1.776026,1.776026,1.817928,1.777168,1.776026,1.776026,1.776026,1.776026,1.776026,1.776026,,,,,,,1.776077,1.828737,1.776129,1.776353,1.817928,1.777168,1.776026,1.776026,1.776026,1.776026,0.692665,0.708463,0.692681,0.692748,0.705221,0.692993,0.69265,0.69265,0.364085,0.364085,29.999136,29.135284,29.99826,29.99447,29.308518,29.980715,30,30,30,30,,,,,,,,,,,2580,2580,1.776026,1.776026,1.776026,1.776026,1.776026,1.776026,1.776026,1.776026,0.69265,0.69265,30,30,, +7383,0,2.38802,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,4.938,7.325,0,51.171848,5.8,6,5.731247,5.731247,5.731247,5.731247,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,,,,,,,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,2.149218,2.149218,2.149218,2.149218,2.149218,2.149218,2.149218,2.149218,1.122369,1.122369,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,5.731247,2.149218,2.149218,25,25,, +19983,0,1.26262,1,1,0,2,5,,5,8,Bennett Lake,Rd,3251563,0,1.262,0,27.05615,3.7,5,2.525241,2.525241,2.525241,2.525241,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,,,,,,,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,0.984844,0.984844,0.984844,0.984844,0.984844,0.984844,0.984844,0.984844,0.517674,0.517674,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,2.525241,0.984844,0.984844,30,30,, +21060,0,0.834021,1,1,0,2,4,,5,3,Holly,Rd,4410127,3.743,4.577,0,17.871878,3,4,1.251031,1.251031,1.251031,1.251031,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.333623,1.325132,1.251031,1.251031,1.333623,1.325132,1.269786,1.271699,1.251031,1.251031,1.269786,1.271699,1.278803,1.279434,1.251031,1.251031,1.278803,1.279434,1.251031,1.251031,1.251031,1.251031,1.251031,1.251031,,,,,,,1.333623,1.325132,1.269786,1.271699,1.278803,1.279434,1.251031,1.251031,1.251031,1.251031,0.550211,0.547663,0.53106,0.531633,0.533765,0.533954,0.525433,0.525433,0.279397,0.279397,37.522787,37.763228,39.409197,39.349931,39.131338,39.112035,40,40,40,40,,,,,,,,,,,3096,3096,1.251031,1.251031,1.251031,1.251031,1.251031,1.251031,1.251031,1.251031,0.525433,0.525433,40,40,, +7293,0,1.003116,1,1,0,2,7,GRV,5,8,Center,Rd,941603,3.01,4.013,0,21.495351,5.55,5,3.009349,3.009349,3.009349,3.009349,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.013936,3.009351,3.009349,3.009349,3.013936,3.009351,3.009366,3.009357,3.009349,3.009349,3.009366,3.009357,3.009448,3.011086,3.009349,3.009349,3.009448,3.011086,3.009349,3.009349,3.009349,3.009349,3.009349,3.009349,,,,,,,3.013936,3.009351,3.009366,3.009357,3.009448,3.011086,3.009349,3.009349,3.009349,3.009349,1.084742,1.083366,1.083371,1.083368,1.083395,1.083887,1.083366,1.083366,0.561745,0.561745,19.969562,19.999988,19.999889,19.999946,19.999342,19.988466,20,20,20,20,,,,,,,,,,,2236,2236,3.009349,3.009349,3.009349,3.009349,3.009349,3.009349,3.009349,3.009349,1.083366,1.083366,20,20,, +8104,0,2.240743,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,0.266,2.506,0,48.01593,3.7,5,4.481487,4.481487,4.481487,4.481487,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,4.487566,4.484281,4.481487,4.481487,4.487566,4.484281,4.481995,4.481989,4.481487,4.481487,4.481995,4.481989,4.482742,4.483146,4.481487,4.481487,4.482742,4.483146,4.481487,4.481487,4.481487,4.481487,4.481487,4.481487,,,,,,,4.487566,4.484281,4.481995,4.481989,4.482742,4.483146,4.481487,4.481487,4.481487,4.481487,1.749604,1.748618,1.747932,1.747931,1.748156,1.748277,1.74778,1.74778,0.918705,0.918705,29.95936,29.981304,29.996601,29.996636,29.991601,29.9889,30,30,30,30,,,,,,,,,,,2580,2580,4.481487,4.481487,4.481487,4.481487,4.481487,4.481487,4.481487,4.481487,1.74778,1.74778,30,30,, +6982,0,1.005731,1,1,0,2,4,,5,8,Argentine,Rd,934310,10.214,11.22,0,21.551368,3,4,1.508596,1.508596,1.508596,1.508596,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.511676,1.512173,1.508596,1.508596,1.511676,1.512173,1.510535,1.510761,1.508596,1.508596,1.510535,1.510761,1.519372,1.51512,1.508596,1.508596,1.519372,1.51512,1.508596,1.508596,1.508596,1.508596,1.508596,1.508596,,,,,,,1.511676,1.512173,1.510535,1.510761,1.519372,1.51512,1.508596,1.508596,1.508596,1.508596,0.634534,0.634684,0.634192,0.63426,0.636843,0.635568,0.63361,0.63361,0.33692,0.33692,39.918485,39.905363,39.948655,39.942683,39.7163,39.827749,40,40,40,40,,,,,,,,,,,3096,3096,1.508596,1.508596,1.508596,1.508596,1.508596,1.508596,1.508596,1.508596,0.63361,0.63361,40,40,, +7315,0,1.994695,1,1,0,2,7,,5,8,Center,Rd,941603,0,1.994,0,42.743463,5.8,6,4.787268,4.787268,4.787268,4.787268,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,,,,,,,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,1.795225,1.795225,1.795225,1.795225,1.795225,1.795225,1.795225,1.795225,0.937507,0.937507,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,4.787268,1.795225,1.795225,25,25,, +24596,0,2.11974,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,45.423,0.15,4,8.47896,8.47896,8.47896,8.47896,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,,,,,,,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,2.925241,2.925241,2.925241,2.925241,2.925241,2.925241,2.925241,2.925241,1.505015,1.505015,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,8.47896,2.925241,2.925241,15,15,, +27096,0,1.080081,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.144582,0.15,4,4.320322,4.320322,4.320322,4.320322,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,,,,,,,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,1.490511,1.490511,1.490511,1.490511,1.490511,1.490511,1.490511,1.490511,0.766857,0.766857,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,4.320322,1.490511,1.490511,15,15,, +27102,0,1.268654,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.185453,0.15,4,5.074618,5.074618,5.074618,5.074618,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,,,,,,,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,1.750743,1.750743,1.750743,1.750743,1.750743,1.750743,1.750743,1.750743,0.900745,0.900745,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,5.074618,1.750743,1.750743,15,15,, +30163,0,1.44954,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.061574,0.15,4,5.798161,5.798161,5.798161,5.798161,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,,,,,,,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,2.000365,2.000365,2.000365,2.000365,2.000365,2.000365,2.000365,2.000365,1.029173,1.029173,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,5.798161,2.000365,2.000365,15,15,, +6983,0,1.0071,1,1,0,2,4,,5,8,Argentine,Rd,934310,9.208,10.214,0,21.580711,3,4,1.51065,1.51065,1.51065,1.51065,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.514521,1.524796,1.51065,1.51065,1.514521,1.524796,1.51352,1.514347,1.51065,1.51065,1.51352,1.514347,1.533054,1.520737,1.51065,1.51065,1.533054,1.520737,1.51065,1.51065,1.51065,1.51065,1.51065,1.51065,,,,,,,1.514521,1.524796,1.51352,1.514347,1.533054,1.520737,1.51065,1.51065,1.51065,1.51065,0.635634,0.638717,0.635334,0.635582,0.641194,0.637499,0.634473,0.634473,0.337378,0.337378,39.897764,39.628897,39.92414,39.902339,39.415428,39.734683,40,40,40,40,,,,,,,,,,,3096,3096,1.51065,1.51065,1.51065,1.51065,1.51065,1.51065,1.51065,1.51065,0.634473,0.634473,40,40,, +7303,0,1.01633,1,1,0,2,7,GRV,5,8,Center,Rd,941603,1.994,3.01,0,21.778495,5.55,5,3.048989,3.048989,3.048989,3.048989,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.04899,3.048989,3.048989,3.048989,3.04899,3.048989,3.048989,3.048989,3.048989,3.048989,3.048989,3.048989,3.04899,3.04899,3.048989,3.048989,3.04899,3.04899,3.048989,3.048989,3.048989,3.048989,3.048989,3.048989,,,,,,,3.04899,3.048989,3.048989,3.048989,3.04899,3.04899,3.048989,3.048989,3.048989,3.048989,1.097636,1.097636,1.097636,1.097636,1.097636,1.097636,1.097636,1.097636,0.569145,0.569145,19.999997,20,20,20,19.999998,19.999999,20,20,20,20,,,,,,,,,,,2236,2236,3.048989,3.048989,3.048989,3.048989,3.048989,3.048989,3.048989,3.048989,1.097636,1.097636,20,20,, +30165,0,1.605094,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.394876,0.15,4,6.420377,6.420377,6.420377,6.420377,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,,,,,,,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,2.21503,2.21503,2.21503,2.21503,2.21503,2.21503,2.21503,2.21503,1.139617,1.139617,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,6.420377,2.21503,2.21503,15,15,, +6980,0,0.743566,1,1,0,2,4,,5,8,Argentine,Rd,934310,11.723,12.467,0,15.933555,3,4,1.115349,1.115349,1.115349,1.115349,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.117464,1.1173,1.115349,1.115349,1.117464,1.1173,1.116278,1.116215,1.115349,1.115349,1.116278,1.116215,1.117533,1.117498,1.115349,1.115349,1.117533,1.117498,1.115349,1.115349,1.115349,1.115349,1.115349,1.115349,,,,,,,1.117464,1.1173,1.116278,1.116215,1.117533,1.117498,1.115349,1.115349,1.115349,1.115349,0.469081,0.469032,0.468725,0.468706,0.469102,0.469091,0.468447,0.468447,0.249095,0.249095,39.924282,39.930139,39.966703,39.968961,39.921808,39.923063,40,40,40,40,,,,,,,,,,,3096,3096,1.115349,1.115349,1.115349,1.115349,1.115349,1.115349,1.115349,1.115349,0.468447,0.468447,40,40,, +7258,0,0.493318,1,1,0,2,5,,5,8,Bennett Lake,Rd,941606,0,0.493,0,10.571093,3.7,5,0.986635,0.986635,0.986635,0.986635,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.987347,0.986968,0.986635,0.986635,0.987347,0.986968,0.986677,0.986683,0.986635,0.986635,0.986677,0.986683,0.986737,0.986753,0.986635,0.986635,0.986737,0.986753,0.986635,0.986635,0.986635,0.986635,0.986635,0.986635,,,,,,,0.987347,0.986968,0.986677,0.986683,0.986737,0.986753,0.986635,0.986635,0.986635,0.986635,0.385001,0.384888,0.3848,0.384802,0.384818,0.384823,0.384788,0.384788,0.20226,0.20226,29.978381,29.989885,29.998734,29.998539,29.996917,29.996419,30,30,30,30,,,,,,,,,,,2580,2580,0.986635,0.986635,0.986635,0.986635,0.986635,0.986635,0.986635,0.986635,0.384788,0.384788,30,30,, +6981,0,0.503766,1,1,0,2,4,,5,8,Argentine,Rd,934310,11.22,11.723,0,10.794992,3,4,0.755649,0.755649,0.755649,0.755649,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.75965,0.758056,0.755649,0.755649,0.75965,0.758056,0.757351,0.757361,0.755649,0.755649,0.757351,0.757361,0.760163,0.760377,0.755649,0.755649,0.760163,0.760377,0.755649,0.755649,0.755649,0.755649,0.755649,0.755649,,,,,,,0.75965,0.758056,0.757351,0.757361,0.760163,0.760377,0.755649,0.755649,0.755649,0.755649,0.318573,0.318095,0.317883,0.317886,0.318727,0.318791,0.317373,0.317373,0.168762,0.168762,39.789325,39.872989,39.910145,39.909606,39.762521,39.751322,40,40,40,40,,,,,,,,,,,3096,3096,0.755649,0.755649,0.755649,0.755649,0.755649,0.755649,0.755649,0.755649,0.317373,0.317373,40,40,, +34063,0,0.694764,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.779057,2.779057,2.779057,2.779057,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,,,,,,,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,0.958775,0.958775,0.958775,0.958775,0.958775,0.958775,0.958775,0.958775,0.493283,0.493283,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,2.779057,0.958775,0.958775,15,15,, +7817,0,0.311705,1,1,0,2,5,,5,8,Bennett Lake,Rd,941905,0.514,0.825,0,6.6794,3.7,5,0.623411,0.623411,0.623411,0.623411,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.62386,0.623621,0.623411,0.623411,0.62386,0.623621,0.623437,0.623441,0.623411,0.623411,0.623437,0.623441,0.623475,0.623485,0.623411,0.623411,0.623475,0.623485,0.623411,0.623411,0.623411,0.623411,0.623411,0.623411,,,,,,,0.62386,0.623621,0.623437,0.623441,0.623475,0.623485,0.623411,0.623411,0.623411,0.623411,0.243265,0.243193,0.243138,0.243139,0.243149,0.243152,0.24313,0.24313,0.127799,0.127799,29.978381,29.989885,29.998734,29.998539,29.996917,29.996419,30,30,30,30,,,,,,,,,,,2580,2580,0.623411,0.623411,0.623411,0.623411,0.623411,0.623411,0.623411,0.623411,0.24313,0.24313,30,30,, +7862,0,0.265627,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,0,0.266,0,5.692002,3.7,5,0.531254,0.531254,0.531254,0.531254,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.531637,0.531433,0.531254,0.531254,0.531637,0.531433,0.531276,0.531279,0.531254,0.531254,0.531276,0.531279,0.531308,0.531317,0.531254,0.531254,0.531308,0.531317,0.531254,0.531254,0.531254,0.531254,0.531254,0.531254,,,,,,,0.531637,0.531433,0.531276,0.531279,0.531308,0.531317,0.531254,0.531254,0.531254,0.531254,0.207304,0.207243,0.207196,0.207197,0.207205,0.207208,0.207189,0.207189,0.108907,0.108907,29.978381,29.989885,29.998734,29.998539,29.996917,29.996419,30,30,30,30,,,,,,,,,,,2580,2580,0.531254,0.531254,0.531254,0.531254,0.531254,0.531254,0.531254,0.531254,0.207189,0.207189,30,30,, +7289,0,1.005371,1,1,0,2,7,GRV,5,8,Center,Rd,941603,4.013,5.018,0,21.543671,5.55,5,3.016114,3.016114,3.016114,3.016114,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.022462,3.016124,3.016114,3.016114,3.022462,3.016124,3.016167,3.01615,3.016114,3.016114,3.016167,3.01615,3.016371,3.019237,3.016114,3.016114,3.016371,3.019237,3.016114,3.016114,3.016114,3.016114,3.016114,3.016114,,,,,,,3.022462,3.016124,3.016167,3.01615,3.016371,3.019237,3.016114,3.016114,3.016114,3.016114,1.087706,1.085804,1.085817,1.085812,1.085878,1.086738,1.085801,1.085801,0.563008,0.563008,19.957992,19.99993,19.999646,19.999764,19.998295,19.979314,20,20,20,20,,,,,,,,,,,2236,2236,3.016114,3.016114,3.016114,3.016114,3.016114,3.016114,3.016114,3.016114,1.085801,1.085801,20,20,, +27097,0,0.810858,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.375528,0.15,4,3.243432,3.243432,3.243432,3.243432,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,,,,,,,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,1.118984,1.118984,1.118984,1.118984,1.118984,1.118984,1.118984,1.118984,0.575709,0.575709,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,3.243432,1.118984,1.118984,15,15,, +27104,0,0.864951,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.534668,0.15,4,3.459805,3.459805,3.459805,3.459805,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,,,,,,,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,1.193633,1.193633,1.193633,1.193633,1.193633,1.193633,1.193633,1.193633,0.614115,0.614115,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,3.459805,1.193633,1.193633,15,15,, +5513,0,1.006878,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,22.063,23.069,0,21.575952,3.7,5,2.013756,2.013756,2.013756,2.013756,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.013756,2.013844,2.013756,2.013756,2.013756,2.013844,2.013756,2.013756,2.013756,2.013756,2.013756,2.013756,2.015771,2.013756,2.013756,2.013756,2.015771,2.013756,2.013756,2.013756,2.013756,2.013756,2.013756,2.013756,,,,,,,2.013756,2.013844,2.013756,2.013756,2.015771,2.013756,2.013756,2.013756,2.013756,2.013756,0.785365,0.785391,0.785365,0.785365,0.785969,0.785365,0.785365,0.785365,0.41282,0.41282,29.999993,29.998687,30,30,29.970004,30,30,30,30,30,,,,,,,,,,,2580,2580,2.013756,2.013756,2.013756,2.013756,2.013756,2.013756,2.013756,2.013756,0.785365,0.785365,30,30,, +7283,0,0.93304,1,1,0,2,7,,5,8,Center,Rd,941603,5.018,5.95,0,19.993716,5.8,6,2.239296,2.239296,2.239296,2.239296,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.276845,2.239315,2.239296,2.239296,2.276845,2.239315,2.239531,2.239321,2.239296,2.239296,2.239531,2.239321,2.241897,2.249527,2.239296,2.239296,2.241897,2.249527,2.239296,2.239296,2.239296,2.239296,2.239296,2.239296,,,,,,,2.276845,2.239315,2.239531,2.239321,2.241897,2.249527,2.239296,2.239296,2.239296,2.239296,0.851001,0.839742,0.839807,0.839743,0.840516,0.842805,0.839736,0.839736,0.438529,0.438529,24.587713,24.999794,24.997377,24.999724,24.971002,24.886301,25,25,25,25,,,,,,,,,,,2064,2064,2.239296,2.239296,2.239296,2.239296,2.239296,2.239296,2.239296,2.239296,0.839736,0.839736,25,25,, +29479,0,1.070676,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.943049,0.15,4,4.282702,4.282702,4.282702,4.282702,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,,,,,,,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,1.477532,1.477532,1.477532,1.477532,1.477532,1.477532,1.477532,1.477532,0.76018,0.76018,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,4.282702,1.477532,1.477532,15,15,, +30169,0,0.548776,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.75949,0.15,4,2.195105,2.195105,2.195105,2.195105,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,,,,,,,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,0.757311,0.757311,0.757311,0.757311,0.757311,0.757311,0.757311,0.757311,0.389631,0.389631,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,2.195105,0.757311,0.757311,15,15,, +6592,1,0.478211,2,0,0,1,2,,5,8,N US 23,,931510,21.683,22.161,0,,1.02,7,0.409895,,0.409895,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.414839,,0.409895,,0.414839,,0.412736,,0.409895,,0.412736,,0.420177,,0.409895,,0.420177,,0.409895,,0.409895,,0.409895,,,,,,,,0.414839,,0.412736,,0.420177,,0.409895,,0.409895,,0.21053,,0.209899,,0.212131,,0.209046,,0.114087,,69.165739,,69.518098,,68.287097,,70,,70,,,,,,,,,,,,15136,,0.409895,,0.409895,,0.409895,,0.409895,,0.209046,,70,,, +6814,1,0.251189,1,0,0,1,2,ROF,5,8,N US 23/Center,RAMP,931902,0,0.251,0,,2.24,5,0.376783,,0.376783,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.376784,,0.376783,,0.376784,,0.376784,,0.376783,,0.376784,,0.3802,,0.376783,,0.3802,,0.376783,,0.376783,,0.376783,,,,,,,,0.376784,,0.376784,,0.3802,,0.376783,,0.376783,,0.158249,,0.158249,,0.159274,,0.158249,,0.084148,,39.999854,,39.999873,,39.640482,,40,,40,,,,,,,,,,,,5160,,0.376783,,0.376783,,0.376783,,0.376783,,0.158249,,40,,, +6815,1,0.254349,1,0,0,1,2,RON,5,8,Center/N US 23,RAMP,931904,0,0.254,0,,1.09,4,0.339131,,0.339131,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.339133,,0.339131,,0.339133,,0.339133,,0.339131,,0.339133,,0.339135,,0.339131,,0.339135,,0.339131,,0.339131,,0.339131,,,,,,,,0.339133,,0.339133,,0.339135,,0.339131,,0.339131,,0.147523,,0.147523,,0.147523,,0.147522,,0.078848,,44.999758,,44.999821,,44.999569,,45,,45,,,,,,,,,,,,5160,,0.339131,,0.339131,,0.339131,,0.339131,,0.147522,,45,,, +6897,-1,0.408703,0,2,0,1,2,,5,8,S US 23,,932002,21.698,22.107,0,,1.02,7,,0.350317,,0.350317,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.355777,,0.350317,,0.355777,,0.352765,,0.350317,,0.352765,,0.360267,,0.350317,,0.360267,,0.350317,,0.350317,,0.350317,,,,,,,,0.355777,,0.352765,,0.360267,,0.350317,,0.350317,,0.1803,,0.179396,,0.181646,,0.178661,,0.097505,,68.925681,,69.514257,,68.066738,,70,,70,,,,,,,,,,,,15136,,0.350317,,0.350317,,0.350317,,0.350317,,0.178661,,70,, +6901,1,0.207537,1,0,0,1,2,ROF,5,8,S US 23/Center,RAMP,932201,0,0.208,0,,2.24,5,0.311305,,0.311305,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.311306,,0.311305,,0.311306,,0.311306,,0.311305,,0.311306,,0.311306,,0.311305,,0.311306,,0.311305,,0.311305,,0.311305,,,,,,,,0.311306,,0.311306,,0.311306,,0.311305,,0.311305,,0.130748,,0.130748,,0.130748,,0.130748,,0.069525,,39.999996,,39.999994,,39.999993,,40,,40,,,,,,,,,,,,5160,,0.311305,,0.311305,,0.311305,,0.311305,,0.130748,,40,,, +7278,0,0.128252,1,1,0,2,5,,5,8,Center,Rd,941603,5.976,6.104,0,2.748267,3.7,5,0.256505,0.256505,0.256505,0.256505,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.256529,0.274249,0.256505,0.256505,0.256529,0.274249,0.256519,0.25671,0.256505,0.256505,0.256519,0.25671,0.256611,0.296465,0.256505,0.256505,0.256611,0.296465,0.256505,0.256505,0.256505,0.256505,0.256505,0.256505,,,,,,,0.256529,0.274249,0.256519,0.25671,0.256611,0.296465,0.256505,0.256505,0.256505,0.256505,0.100044,0.10536,0.100041,0.100099,0.100069,0.112025,0.100037,0.100037,0.052584,0.052584,29.997189,28.058954,29.998327,29.976002,29.987598,25.956314,30,30,30,30,,,,,,,,,,,2580,2580,0.256505,0.256505,0.256505,0.256505,0.256505,0.256505,0.256505,0.256505,0.100037,0.100037,30,30,, +6900,1,0.213428,1,0,0,1,2,RON,5,8,Center/S US 23,RAMP,932110,0,0.213,0,,1.09,4,0.284571,,0.284571,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.288642,,0.284571,,0.288642,,0.28459,,0.284571,,0.28459,,0.284611,,0.284571,,0.284611,,0.284571,,0.284571,,0.284571,,,,,,,,0.288642,,0.28459,,0.284611,,0.284571,,0.284571,,0.12501,,0.123794,,0.1238,,0.123788,,0.066163,,44.365365,,44.997033,,44.993732,,45,,45,,,,,,,,,,,,5160,,0.284571,,0.284571,,0.284571,,0.284571,,0.123788,,45,,, +7279,0,0.025353,1,1,0,2,5,,5,8,Center,Rd,941603,5.95,5.976,0,0.54328,3.7,5,0.050706,0.050706,0.050706,0.050706,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.053745,0.050725,0.050706,0.050706,0.053745,0.050725,0.05073,0.050717,0.050706,0.050706,0.05073,0.050717,0.050853,0.055064,0.050706,0.050706,0.050853,0.055064,0.050706,0.050706,0.050706,0.050706,0.050706,0.050706,,,,,,,0.053745,0.050725,0.05073,0.050717,0.050853,0.055064,0.050706,0.050706,0.050706,0.050706,0.020687,0.019781,0.019783,0.019779,0.019819,0.021083,0.019775,0.019775,0.010395,0.010395,28.303536,29.988789,29.985658,29.993709,29.913474,27.625774,30,30,30,30,,,,,,,,,,,2580,2580,0.050706,0.050706,0.050706,0.050706,0.050706,0.050706,0.050706,0.050706,0.019775,0.019775,30,30,, +7277,0,0.038585,1,1,0,2,5,,5,8,Center,Rd,941603,6.104,6.142,0,0.826818,3.7,5,0.07717,0.07717,0.07717,0.07717,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.077172,0.07946,0.07717,0.07717,0.077172,0.07946,0.077174,0.077184,0.07717,0.07717,0.077174,0.077184,0.07899,0.077219,0.07717,0.07717,0.07899,0.077219,0.07717,0.07717,0.07717,0.07717,0.07717,0.07717,,,,,,,0.077172,0.07946,0.077174,0.077184,0.07899,0.077219,0.07717,0.07717,0.07717,0.07717,0.030097,0.030783,0.030098,0.0301,0.030642,0.030111,0.030096,0.030096,0.01582,0.01582,29.999136,29.135284,29.99826,29.99447,29.308518,29.980715,30,30,30,30,,,,,,,,,,,2580,2580,0.07717,0.07717,0.07717,0.07717,0.07717,0.07717,0.07717,0.07717,0.030096,0.030096,30,30,, +6906,0,0.694803,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,23.069,23.764,0,14.888642,3.7,5,1.389607,1.389607,1.389607,1.389607,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.389608,1.390176,1.389607,1.389607,1.389608,1.390176,1.389607,1.389609,1.389607,1.389607,1.389607,1.389609,1.391789,1.389614,1.389607,1.389607,1.391789,1.389614,1.389607,1.389607,1.389607,1.389607,1.389607,1.389607,,,,,,,1.389608,1.390176,1.389607,1.389609,1.391789,1.389614,1.389607,1.389607,1.389607,1.389607,0.541947,0.542118,0.541947,0.541947,0.542601,0.541949,0.541947,0.541947,0.284869,0.284869,29.999977,29.987701,29.999996,29.999957,29.952958,29.999844,30,30,30,30,,,,,,,,,,,2580,2580,1.389607,1.389607,1.389607,1.389607,1.389607,1.389607,1.389607,1.389607,0.541947,0.541947,30,30,, +7329,0,0.168909,1,1,0,2,5,,5,8,Linden,Rd,937506,4.749,4.918,0,3.619481,3.7,5,0.337818,0.337818,0.337818,0.337818,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.339107,0.339042,0.337818,0.337818,0.339107,0.339042,0.338187,0.338184,0.337818,0.337818,0.338187,0.338184,0.339214,0.339222,0.337818,0.337818,0.339214,0.339222,0.337818,0.337818,0.337818,0.337818,0.337818,0.337818,,,,,,,0.339107,0.339042,0.338187,0.338184,0.339214,0.339222,0.337818,0.337818,0.337818,0.337818,0.132136,0.132116,0.13186,0.131859,0.132168,0.13217,0.131749,0.131749,0.069253,0.069253,29.885975,29.89175,29.967331,29.967593,29.876584,29.875825,30,30,30,30,,,,,,,,,,,2580,2580,0.337818,0.337818,0.337818,0.337818,0.337818,0.337818,0.337818,0.337818,0.131749,0.131749,30,30,, +7985,0,0.511836,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,3.04,3.552,0,10.967909,3.7,5,1.023672,1.023672,1.023672,1.023672,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,,,,,,,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,0.399232,0.399232,0.399232,0.399232,0.399232,0.399232,0.399232,0.399232,0.209853,0.209853,30,30,30,30,30,30,30,30,30,30,,,,,,,,,,,2580,2580,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,1.023672,0.399232,0.399232,30,30,, +27095,0,0.349818,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,7.496101,0.15,4,1.399272,1.399272,1.399272,1.399272,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,,,,,,,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,0.482749,0.482749,0.482749,0.482749,0.482749,0.482749,0.482749,0.482749,0.248371,0.248371,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,1.399272,0.482749,0.482749,15,15,, +8081,0,0.534768,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,2.506,3.04,0,11.459322,3.7,5,1.069537,1.069537,1.069537,1.069537,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.121938,1.095247,1.069537,1.069537,1.121938,1.095247,1.076319,1.075923,1.069537,1.069537,1.076319,1.075923,1.091045,1.101146,1.069537,1.069537,1.091045,1.101146,1.069537,1.069537,1.069537,1.069537,1.069537,1.069537,,,,,,,1.121938,1.095247,1.076319,1.075923,1.091045,1.101146,1.069537,1.069537,1.069537,1.069537,0.43284,0.424832,0.419154,0.419035,0.423572,0.426602,0.417119,0.417119,0.219255,0.219255,28.598823,29.295774,29.810956,29.821928,29.408594,29.13882,30,30,30,30,,,,,,,,,,,2580,2580,1.069537,1.069537,1.069537,1.069537,1.069537,1.069537,1.069537,1.069537,0.417119,0.417119,30,30,, +6303,0,0.36823,1,1,0,2,5,,5,8,White Lake,Rd,931905,4.999,5.367,0,7.890639,3.7,5,0.73646,0.73646,0.73646,0.73646,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.753992,0.771891,0.73646,0.73646,0.753992,0.771891,0.740751,0.741018,0.73646,0.73646,0.740751,0.741018,0.757683,0.750872,0.73646,0.73646,0.757683,0.750872,0.73646,0.73646,0.73646,0.73646,0.73646,0.73646,,,,,,,0.753992,0.771891,0.740751,0.741018,0.757683,0.750872,0.73646,0.73646,0.73646,0.73646,0.292479,0.297849,0.288507,0.288587,0.293586,0.291543,0.287219,0.287219,0.150974,0.150974,29.302419,28.622951,29.826216,29.815453,29.159672,29.424188,30,30,30,30,,,,,,,,,,,2580,2580,0.73646,0.73646,0.73646,0.73646,0.73646,0.73646,0.73646,0.73646,0.287219,0.287219,30,30,, +34062,0,0.821763,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.287053,3.287053,3.287053,3.287053,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,,,,,,,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,1.134033,1.134033,1.134033,1.134033,1.134033,1.134033,1.134033,1.134033,0.583452,0.583452,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,3.287053,1.134033,1.134033,15,15,, +19984,0,0.168073,1,1,0,2,5,,5,8,Linden,Rd,3251558,0,0.168,0,3.601559,3.7,5,0.336145,0.336145,0.336145,0.336145,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.337428,0.337363,0.336145,0.336145,0.337428,0.337363,0.336512,0.336509,0.336145,0.336145,0.336512,0.336509,0.337534,0.337543,0.336145,0.336145,0.337534,0.337543,0.336145,0.336145,0.336145,0.336145,0.336145,0.336145,,,,,,,0.337428,0.337363,0.336512,0.336509,0.337534,0.337543,0.336145,0.336145,0.336145,0.336145,0.131481,0.131462,0.131207,0.131206,0.131513,0.131516,0.131097,0.131097,0.06891,0.06891,29.885975,29.89175,29.967331,29.967593,29.876584,29.875825,30,30,30,30,,,,,,,,,,,2580,2580,0.336145,0.336145,0.336145,0.336145,0.336145,0.336145,0.336145,0.336145,0.131097,0.131097,30,30,, +2998,0,0.173246,2,2,0,2,4,,4,3,Saginaw,,650602,0.381,0.555,0,3.712418,4.5,4.5,0.273547,0.273547,0.273547,0.273547,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.31864,0.314115,0.273547,0.273547,0.31864,0.314115,0.292534,0.292615,0.273547,0.273547,0.292534,0.292615,0.3113,0.312114,0.273547,0.273547,0.3113,0.312114,0.273547,0.273547,0.273547,0.273547,0.273547,0.273547,,,,,,,0.31864,0.314115,0.292534,0.292615,0.3113,0.312114,0.273547,0.273547,0.273547,0.273547,0.126776,0.125419,0.118945,0.118969,0.124574,0.124819,0.113248,0.113248,0.060089,0.060089,32.622321,33.092291,35.533548,35.523673,33.39153,33.304405,38,38,38,38,,,,,,,,,,,6192,6192,0.273547,0.273547,0.273547,0.273547,0.273547,0.273547,0.273547,0.273547,0.113248,0.113248,38,38,, +3079,0,0.900846,1,1,0,2,5,,5,3,Fish Lake,Rd,649104,7.654,8.555,0,19.303837,3.7,5,1.801691,1.801691,1.801691,1.801691,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.865917,1.871493,1.801691,1.801691,1.865917,1.871493,1.802523,1.803378,1.801691,1.801691,1.802523,1.803378,1.840882,1.86302,1.801691,1.801691,1.840882,1.86302,1.801691,1.801691,1.801691,1.801691,1.801691,1.801691,,,,,,,1.865917,1.871493,1.802523,1.803378,1.840882,1.86302,1.801691,1.801691,1.801691,1.801691,0.721927,0.7236,0.702909,0.703166,0.714417,0.721058,0.70266,0.70266,0.369347,0.369347,28.967385,28.881074,29.986163,29.971937,29.361326,29.012434,30,30,30,30,,,,,,,,,,,2580,2580,1.801691,1.801691,1.801691,1.801691,1.801691,1.801691,1.801691,1.801691,0.70266,0.70266,30,30,, +6816,0,1.388111,1,1,0,2,5,,5,8,White Lake,Rd,931905,0,1.388,0,29.745225,3.7,5,2.776221,2.776221,2.776221,2.776221,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.767103,6.761825,2.776221,2.776221,5.767103,6.761825,3.874014,3.870996,2.776221,2.776221,3.874014,3.870996,6.711704,5.82763,2.776221,2.776221,6.711704,5.82763,2.776221,2.776221,2.776221,2.776221,2.776221,2.776221,,,,,,,5.767103,6.761825,3.874014,3.870996,6.711704,5.82763,2.776221,2.776221,2.776221,2.776221,1.979991,2.278407,1.412064,1.411159,2.263371,1.998149,1.082726,1.082726,0.569125,0.569125,14.441676,12.317183,21.498795,21.515558,12.409164,14.291681,30,30,30,30,,,,,,,,,,,2580,2580,2.776221,2.776221,2.776221,2.776221,2.776221,2.776221,2.776221,2.776221,1.082726,1.082726,30,30,, +34065,0,0.665997,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.663989,2.663989,2.663989,2.663989,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,,,,,,,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,0.919076,0.919076,0.919076,0.919076,0.919076,0.919076,0.919076,0.919076,0.472858,0.472858,14.999999,14.999999,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,2.663989,0.919076,0.919076,15,15,, +34066,0,0.641218,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.564874,2.564874,2.564874,2.564874,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.564878,2.564879,2.564874,2.564874,2.564878,2.564879,2.564875,2.564875,2.564874,2.564874,2.564875,2.564875,2.564876,2.564875,2.564874,2.564874,2.564876,2.564875,2.564874,2.564874,2.564874,2.564874,2.564874,2.564874,,,,,,,2.564878,2.564879,2.564875,2.564875,2.564876,2.564875,2.564874,2.564874,2.564874,2.564874,0.884883,0.884883,0.884882,0.884882,0.884882,0.884882,0.884881,0.884881,0.455265,0.455265,14.999973,14.999972,14.999992,14.999993,14.999989,14.999989,15,15,15,15,,,,,,,,,,,34400,34400,2.564874,2.564874,2.564874,2.564874,2.564874,2.564874,2.564874,2.564874,0.884881,0.884881,15,15,, +6594,0,1.168799,1,1,0,2,5,,5,8,White Lake,Rd,931905,1.441,2.61,0,25.045686,3.7,5,2.337597,2.337597,2.337597,2.337597,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.782352,2.819763,2.337597,2.337597,2.782352,2.819763,2.660306,2.659708,2.337597,2.337597,2.660306,2.659708,3.334207,3.186836,2.337597,2.337597,3.334207,3.186836,2.337597,2.337597,2.337597,2.337597,2.337597,2.337597,,,,,,,2.782352,2.819763,2.660306,2.659708,3.334207,3.186836,2.337597,2.337597,2.337597,2.337597,1.045089,1.056313,1.008476,1.008296,1.210646,1.166434,0.911663,0.911663,0.479207,0.479207,25.204546,24.870149,26.360849,26.36677,21.032866,22.005503,30,30,30,30,,,,,,,,,,,2580,2580,2.337597,2.337597,2.337597,2.337597,2.337597,2.337597,2.337597,2.337597,0.911663,0.911663,30,30,, +7274,0,1.009689,1,1,0,2,5,GRV,5,8,Center,Rd,941603,8.031,9.041,0,21.636195,5.55,5,3.029067,3.029067,3.029067,3.029067,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,,,,,,,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,1.090464,1.090464,1.090464,1.090464,1.090464,1.090464,1.090464,1.090464,0.565426,0.565426,20,20,20,20,20,20,20,20,20,20,,,,,,,,,,,2236,2236,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,3.029067,1.090464,1.090464,20,20,, +7344,0,1.668068,1,1,0,2,5,,5,8,Denton Hill,Rd,937306,0,1.668,0,35.744305,3.7,5,3.336135,3.336135,3.336135,3.336135,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.351884,3.351732,3.336135,3.336135,3.351884,3.351732,3.337437,3.337434,3.336135,3.336135,3.337437,3.337434,3.338081,3.338072,3.336135,3.336135,3.338081,3.338072,3.336135,3.336135,3.336135,3.336135,3.336135,3.336135,,,,,,,3.351884,3.351732,3.337437,3.337434,3.338081,3.338072,3.336135,3.336135,3.336135,3.336135,1.305817,1.305772,1.301483,1.301482,1.301676,1.301674,1.301093,1.301093,0.683908,0.683908,29.859044,29.860402,29.988294,29.988324,29.982513,29.98259,30,30,30,30,,,,,,,,,,,2580,2580,3.336135,3.336135,3.336135,3.336135,3.336135,3.336135,3.336135,3.336135,1.301093,1.301093,30,30,, +7351,0,1.014283,1,1,0,2,7,,5,8,Carmer,Rd,937206,0,1.014,0,21.734627,5.8,6,2.434278,2.434278,2.434278,2.434278,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,,,,,,,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,0.912854,0.912854,0.912854,0.912854,0.912854,0.912854,0.912854,0.912854,0.476713,0.476713,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,2.434278,0.912854,0.912854,25,25,, +7352,0,1.545926,1,1,0,2,7,,5,8,Hartland,Rd,937104,7.081,8.626,0,33.12698,5.8,6,3.710222,3.710222,3.710222,3.710222,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,,,,,,,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,1.391333,1.391333,1.391333,1.391333,1.391333,1.391333,1.391333,1.391333,0.726585,0.726585,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,3.710222,1.391333,1.391333,25,25,, +7359,0,0.179634,1,1,0,2,7,,5,8,Hartland,Rd,937104,6.901,7.081,0,3.84931,5.8,6,0.431123,0.431123,0.431123,0.431123,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.431129,0.431126,0.431123,0.431123,0.431129,0.431126,0.431198,0.431177,0.431123,0.431123,0.431198,0.431177,0.431158,0.43114,0.431123,0.431123,0.431158,0.43114,0.431123,0.431123,0.431123,0.431123,0.431123,0.431123,,,,,,,0.431129,0.431126,0.431198,0.431177,0.431158,0.43114,0.431123,0.431123,0.431123,0.431123,0.161673,0.161672,0.161693,0.161687,0.161682,0.161676,0.161671,0.161671,0.084428,0.084428,24.999662,24.999824,24.995659,24.996861,24.997927,24.999024,25,25,25,25,,,,,,,,,,,2064,2064,0.431123,0.431123,0.431123,0.431123,0.431123,0.431123,0.431123,0.431123,0.161671,0.161671,25,25,, +26906,0,0.612052,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.115409,0.15,4,2.44821,2.44821,2.44821,2.44821,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,,,,,,,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,0.844632,0.844632,0.844632,0.844632,0.844632,0.844632,0.844632,0.844632,0.434557,0.434557,14.999998,15,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,2.44821,0.844632,0.844632,15,15,, +26907,0,1.513296,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.427774,0.15,4,6.053185,6.053185,6.053185,6.053185,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,,,,,,,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,2.088349,2.088349,2.088349,2.088349,2.088349,2.088349,2.088349,2.088349,1.07444,1.07444,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,6.053185,2.088349,2.088349,15,15,, +34106,0,1.435657,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,5.742628,5.742628,5.742628,5.742628,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,,,,,,,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,1.981207,1.981207,1.981207,1.981207,1.981207,1.981207,1.981207,1.981207,1.019316,1.019316,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,5.742628,1.981207,1.981207,15,15,, +7275,0,1.001607,1,1,0,2,5,GRV,5,8,Center,Rd,941603,7.03,8.031,0,21.463016,5.55,5,3.004822,3.004822,3.004822,3.004822,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.004822,3.004822,3.004822,3.004822,3.004822,3.004822,3.004822,3.004822,3.004822,3.004822,3.004822,3.004822,3.004823,3.004823,3.004822,3.004822,3.004823,3.004823,3.004822,3.004822,3.004822,3.004822,3.004822,3.004822,,,,,,,3.004822,3.004822,3.004822,3.004822,3.004823,3.004823,3.004822,3.004822,3.004822,3.004822,1.081736,1.081736,1.081736,1.081736,1.081736,1.081736,1.081736,1.081736,0.5609,0.5609,19.999999,19.999999,19.999999,19.999999,19.999995,19.999995,20,20,20,20,,,,,,,,,,,2236,2236,3.004822,3.004822,3.004822,3.004822,3.004822,3.004822,3.004822,3.004822,1.081736,1.081736,20,20,, +7361,0,0.747198,1,1,0,2,7,,5,8,Hartland,Rd,937104,6.154,6.901,0,16.011393,5.8,6,1.793276,1.793276,1.793276,1.793276,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.793282,1.827179,1.793276,1.793276,1.793282,1.827179,1.793297,1.79338,1.793276,1.793276,1.793297,1.79338,1.827,1.793696,1.793276,1.793276,1.827,1.793696,1.793276,1.793276,1.793276,1.793276,1.793276,1.793276,,,,,,,1.793282,1.827179,1.793297,1.79338,1.827,1.793696,1.793276,1.793276,1.793276,1.793276,0.67248,0.682649,0.672485,0.67251,0.682596,0.672605,0.672479,0.672479,0.351183,0.351183,24.999912,24.53613,24.999712,24.998548,24.538535,24.994145,25,25,25,25,,,,,,,,,,,2064,2064,1.793276,1.793276,1.793276,1.793276,1.793276,1.793276,1.793276,1.793276,0.672479,0.672479,25,25,, +7368,0,0.607973,1,1,0,2,7,,5,8,Hartland,Rd,937104,5.547,6.154,0,13.027985,5.8,6,1.459134,1.459134,1.459134,1.459134,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.459139,1.48672,1.459134,1.459134,1.459139,1.48672,1.459151,1.459219,1.459134,1.459134,1.459151,1.459219,1.486574,1.459476,1.459134,1.459134,1.486574,1.459476,1.459134,1.459134,1.459134,1.459134,1.459134,1.459134,,,,,,,1.459139,1.48672,1.459151,1.459219,1.486574,1.459476,1.459134,1.459134,1.459134,1.459134,0.547177,0.555451,0.54718,0.547201,0.555407,0.547278,0.547175,0.547175,0.285747,0.285747,24.999912,24.53613,24.999712,24.998548,24.538535,24.994145,25,25,25,25,,,,,,,,,,,2064,2064,1.459134,1.459134,1.459134,1.459134,1.459134,1.459134,1.459134,1.459134,0.547175,0.547175,25,25,, +7374,0,0.50973,1,1,0,2,7,,5,8,Hartland,Rd,937104,5.037,5.547,0,10.922775,5.8,6,1.223351,1.223351,1.223351,1.223351,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.223355,1.282202,1.223351,1.223351,1.223355,1.282202,1.223365,1.223422,1.223351,1.223351,1.223365,1.223422,1.261012,1.223637,1.223351,1.223351,1.261012,1.223637,1.223351,1.223351,1.223351,1.223351,1.223351,1.223351,,,,,,,1.223355,1.282202,1.223365,1.223422,1.261012,1.223637,1.223351,1.223351,1.223351,1.223351,0.458758,0.476412,0.458761,0.458778,0.470055,0.458843,0.458757,0.458757,0.239573,0.239573,24.999912,23.852533,24.999712,24.998548,24.253349,24.994145,25,25,25,25,,,,,,,,,,,2064,2064,1.223351,1.223351,1.223351,1.223351,1.223351,1.223351,1.223351,1.223351,0.458757,0.458757,25,25,, +5813,1,0.756573,2,0,0,1,2,,5,8,N US 23,,931510,24.519,25.275,0,,1.02,7,0.648491,,0.648491,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.668651,,0.648491,,0.668651,,0.656983,,0.648491,,0.656983,,0.682919,,0.648491,,0.682919,,0.648491,,0.648491,,0.648491,,,,,,,,0.668651,,0.656983,,0.682919,,0.648491,,0.648491,,0.336778,,0.333278,,0.341059,,0.33073,,0.180497,,67.889458,,69.095168,,66.471097,,70,,70,,,,,,,,,,,,15136,,0.648491,,0.648491,,0.648491,,0.648491,,0.33073,,70,,, +6185,-1,0.790754,0,2,0,1,2,,5,8,S US 23,,932002,24.47,25.261,0,,1.02,7,,0.677789,,0.677789,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.6967,,0.677789,,0.6967,,0.685791,,0.677789,,0.685791,,0.712601,,0.677789,,0.712601,,0.677789,,0.677789,,0.677789,,,,,,,,0.6967,,0.685791,,0.712601,,0.677789,,0.677789,,0.351346,,0.348073,,0.356116,,0.345673,,0.188651,,68.100003,,69.183222,,66.580396,,70,,70,,,,,,,,,,,,15136,,0.677789,,0.677789,,0.677789,,0.677789,,0.345673,,70,, +6302,0,0.773605,1,1,0,2,5,,5,8,White Lake,Rd,931905,2.61,3.383,0,16.577256,3.7,5,1.547211,1.547211,1.547211,1.547211,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.152402,2.153437,1.547211,1.547211,2.152402,2.153437,1.907702,1.878978,1.547211,1.547211,1.907702,1.878978,2.969547,2.663469,1.547211,1.547211,2.969547,2.663469,1.547211,1.547211,1.547211,1.547211,1.547211,1.547211,,,,,,,2.152402,2.153437,1.907702,1.878978,2.969547,2.663469,1.547211,1.547211,1.547211,1.547211,0.78497,0.78528,0.71156,0.702942,1.030113,0.93829,0.603412,0.603412,0.317178,0.317178,21.564888,21.554531,24.331008,24.702955,15.630775,17.427013,30,30,30,30,,,,,,,,,,,2580,2580,1.547211,1.547211,1.547211,1.547211,1.547211,1.547211,1.547211,1.547211,0.603412,0.603412,30,30,, +6396,0,1.031024,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,24.446,25.476,0,22.093371,3.7,5,2.062048,2.062048,2.062048,2.062048,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.062937,2.063519,2.062048,2.062048,2.062937,2.063519,2.062572,2.063271,2.062048,2.062048,2.062572,2.063271,2.062765,2.063018,2.062048,2.062048,2.062765,2.063018,2.062048,2.062048,2.062048,2.062048,2.062048,2.062048,,,,,,,2.062937,2.063519,2.062572,2.063271,2.062765,2.063018,2.062048,2.062048,2.062048,2.062048,0.804465,0.80464,0.804356,0.804566,0.804414,0.80449,0.804199,0.804199,0.42272,0.42272,29.987068,29.978618,29.992379,29.982222,29.989572,29.985895,30,30,30,30,,,,,,,,,,,2580,2580,2.062048,2.062048,2.062048,2.062048,2.062048,2.062048,2.062048,2.062048,0.804199,0.804199,30,30,, +7381,0,1.095923,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,7.325,8.421,0,23.484071,5.8,6,2.630216,2.630216,2.630216,2.630216,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.630233,2.630234,2.630216,2.630216,2.630233,2.630234,2.630222,2.630222,2.630216,2.630216,2.630222,2.630222,2.630264,2.630263,2.630216,2.630216,2.630264,2.630263,2.630216,2.630216,2.630216,2.630216,2.630216,2.630216,,,,,,,2.630233,2.630234,2.630222,2.630222,2.630264,2.630263,2.630216,2.630216,2.630216,2.630216,0.986336,0.986337,0.986333,0.986333,0.986345,0.986345,0.986331,0.986331,0.515084,0.515084,24.999835,24.999824,24.99994,24.99994,24.999543,24.99955,25,25,25,25,,,,,,,,,,,2064,2064,2.630216,2.630216,2.630216,2.630216,2.630216,2.630216,2.630216,2.630216,0.986331,0.986331,25,25,, +34067,1,0.751512,2,0,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.006049,,3.006049,,15,,100000,,22700,,50000,,32260,,34400,,34360,,3.008211,,3.006049,,3.008211,,3.007372,,3.006049,,3.007372,,3.009112,,3.006049,,3.009112,,3.006049,,3.006049,,3.006049,,,,,,,,3.008211,,3.007372,,3.009112,,3.006049,,3.006049,,1.037735,,1.037484,,1.038006,,1.037087,,0.533574,,14.989222,,14.993405,,14.984731,,15,,15,,,,,,,,,,,,34400,,3.006049,,3.006049,,3.006049,,3.006049,,1.037087,,15,,, +34068,-1,0.743693,0,2,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,,2.974771,,2.974771,,15,,100000,,22700,,50000,,32260,,34400,,34360,,2.977046,,2.974771,,2.977046,,2.976159,,2.974771,,2.976159,,2.97786,,2.974771,,2.97786,,2.974771,,2.974771,,2.974771,,,,,,,,2.977046,,2.976159,,2.97786,,2.974771,,2.974771,,1.026978,,1.026712,,1.027223,,1.026296,,0.528022,,14.988535,,14.993002,,14.98444,,15,,15,,,,,,,,,,,,34400,,2.974771,,2.974771,,2.974771,,2.974771,,1.026296,,15,, +6076,1,0.251004,2,0,0,1,2,,5,8,N US 23,,931510,24.268,24.519,0,,1.02,7,0.215146,,0.215146,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.216595,,0.215146,,0.216595,,0.215885,,0.215146,,0.215885,,0.218056,,0.215146,,0.218056,,0.215146,,0.215146,,0.215146,,,,,,,,0.216595,,0.215885,,0.218056,,0.215146,,0.215146,,0.110159,,0.109946,,0.110598,,0.109725,,0.059882,,69.53181,,69.760343,,69.065864,,70,,70,,,,,,,,,,,,15136,,0.215146,,0.215146,,0.215146,,0.215146,,0.109725,,70,,, +6078,0,0.334222,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.383,3.717,0,7.161899,3.7,5,0.668444,0.668444,0.668444,0.668444,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.929906,0.930353,0.668444,0.668444,0.929906,0.930353,0.824188,0.811778,0.668444,0.668444,0.824188,0.811778,1.282938,1.150703,0.668444,0.668444,1.282938,1.150703,0.668444,0.668444,0.668444,0.668444,0.668444,0.668444,,,,,,,0.929906,0.930353,0.824188,0.811778,1.282938,1.150703,0.668444,0.668444,0.668444,0.668444,0.339132,0.339266,0.307416,0.303693,0.445041,0.405371,0.260693,0.260693,0.137031,0.137031,21.564888,21.554531,24.331008,24.702955,15.630775,17.427013,30,30,30,30,,,,,,,,,,,2580,2580,0.668444,0.668444,0.668444,0.668444,0.668444,0.668444,0.668444,0.668444,0.260693,0.260693,30,30,, +6304,1,0.29464,1,0,0,1,2,RON,5,8,White Lake/N US 23,RAMP,931907,0,0.295,0,,1.09,4,0.392854,,0.392854,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.399259,,0.392854,,0.399259,,0.395266,,0.392854,,0.395266,,0.39866,,0.392854,,0.39866,,0.392854,,0.392854,,0.392854,,,,,,,,0.399259,,0.395266,,0.39866,,0.392854,,0.392854,,0.172813,,0.171615,,0.172633,,0.170891,,0.091338,,44.278101,,44.725352,,44.344645,,45,,45,,,,,,,,,,,,5160,,0.392854,,0.392854,,0.392854,,0.392854,,0.170891,,45,,, +6394,-1,0.374285,0,2,0,1,2,,5,8,S US 23,,932002,24.096,24.47,0,,1.02,7,,0.320816,,0.320816,,70,,44000,,9988,,22000,,14194,,15136,,15118,,0.322584,,0.320816,,0.322584,,0.321732,,0.320816,,0.321732,,0.32469,,0.320816,,0.32469,,0.320816,,0.320816,,0.320816,,,,,,,,0.322584,,0.321732,,0.32469,,0.320816,,0.320816,,0.164147,,0.163891,,0.164778,,0.163616,,0.089294,,69.616192,,69.800664,,69.164646,,70,,70,,,,,,,,,,,,15136,,0.320816,,0.320816,,0.320816,,0.320816,,0.163616,,70,, +6903,1,0.265402,1,0,0,1,2,ROF,5,8,S US 23/White Lake,RAMP,932203,0,0.265,0,,2.24,5,0.398103,,0.398103,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.403702,,0.398103,,0.403702,,0.399772,,0.398103,,0.399772,,0.403313,,0.398103,,0.403313,,0.398103,,0.398103,,0.398103,,,,,,,,0.403702,,0.399772,,0.403313,,0.398103,,0.398103,,0.168883,,0.167704,,0.168766,,0.167203,,0.08891,,39.445308,,39.833088,,39.483291,,40,,40,,,,,,,,,,,,5160,,0.398103,,0.398103,,0.398103,,0.398103,,0.167203,,40,,, +5140,0,0.204072,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.816,4.02,0,4.372964,3.7,5,0.408143,0.408143,0.408143,0.408143,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.44218,0.982424,0.408143,0.408143,0.44218,0.982424,0.450007,0.604177,0.408143,0.408143,0.450007,0.604177,0.505691,0.982663,0.408143,0.408143,0.505691,0.982663,0.408143,0.408143,0.408143,0.408143,0.408143,0.408143,,,,,,,0.44218,0.982424,0.450007,0.604177,0.505691,0.982663,0.408143,0.408143,0.408143,0.408143,0.169387,0.33146,0.171735,0.217986,0.18844,0.331532,0.159176,0.159176,0.083669,0.083669,27.690783,12.463361,27.209162,20.266075,24.213016,12.460331,30,30,30,30,,,,,,,,,,,2580,2580,0.408143,0.408143,0.408143,0.408143,0.408143,0.408143,0.408143,0.408143,0.159176,0.159176,30,30,, +5987,1,0.181664,1,0,0,1,2,ROF,5,8,N US 23/White Lake,RAMP,931906,0,0.182,0,,2.24,5,0.272495,,0.272495,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.272586,,0.272495,,0.272586,,0.272614,,0.272495,,0.272614,,0.272692,,0.272495,,0.272692,,0.272495,,0.272495,,0.272495,,,,,,,,0.272586,,0.272614,,0.272692,,0.272495,,0.272495,,0.114475,,0.114484,,0.114507,,0.114448,,0.060857,,39.986729,,39.982642,,39.971086,,40,,40,,,,,,,,,,,,5160,,0.272495,,0.272495,,0.272495,,0.272495,,0.114448,,40,,, +6902,1,0.17388,1,0,0,1,2,RON,5,8,White Lake/S US 23,RAMP,932202,0,0.174,0,,1.09,4,0.231839,,0.231839,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.232923,,0.231839,,0.232923,,0.232331,,0.231839,,0.232331,,0.232681,,0.231839,,0.232681,,0.231839,,0.231839,,0.231839,,,,,,,,0.232923,,0.232331,,0.232681,,0.231839,,0.231839,,0.101175,,0.100998,,0.101103,,0.10085,,0.053903,,44.790635,,44.904748,,44.837193,,45,,45,,,,,,,,,,,,5160,,0.231839,,0.231839,,0.231839,,0.231839,,0.10085,,45,,, +6818,0,0.022372,1,1,0,2,5,,5,8,White Lake,Rd,931905,4.02,4.043,0,0.479396,3.7,5,0.044744,0.044744,0.044744,0.044744,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.059036,0.085341,0.044744,0.044744,0.059036,0.085341,0.053618,0.056012,0.044744,0.044744,0.053618,0.056012,0.060843,0.062383,0.044744,0.044744,0.060843,0.062383,0.044744,0.044744,0.044744,0.044744,0.044744,0.044744,,,,,,,0.059036,0.085341,0.053618,0.056012,0.060843,0.062383,0.044744,0.044744,0.044744,0.044744,0.021738,0.029629,0.020112,0.020831,0.02228,0.022742,0.01745,0.01745,0.009172,0.009172,22.736975,15.728855,25.034583,23.964702,22.061681,21.517145,30,30,30,30,,,,,,,,,,,2580,2580,0.044744,0.044744,0.044744,0.044744,0.044744,0.044744,0.044744,0.044744,0.01745,0.01745,30,30,, +5815,0,0.08676,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.717,3.804,0,1.859153,3.7,5,0.173521,0.173521,0.173521,0.173521,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.298262,0.297738,0.173521,0.173521,0.298262,0.297738,0.244758,0.239654,0.173521,0.173521,0.244758,0.239654,0.464395,0.408618,0.173521,0.173521,0.464395,0.408618,0.173521,0.173521,0.173521,0.173521,0.173521,0.173521,,,,,,,0.298262,0.297738,0.244758,0.239654,0.464395,0.408618,0.173521,0.173521,0.173521,0.173521,0.105095,0.104938,0.089044,0.087513,0.154935,0.138202,0.067673,0.067673,0.035572,0.035572,17.453221,17.483948,21.268443,21.721434,11.209492,12.739613,30,30,30,30,,,,,,,,,,,2580,2580,0.173521,0.173521,0.173521,0.173521,0.173521,0.173521,0.173521,0.173521,0.067673,0.067673,30,30,, +5593,0,0.012652,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.804,3.816,0,0.271116,3.7,5,0.025304,0.025304,0.025304,0.025304,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.025333,0.079537,0.025304,0.025304,0.025333,0.079537,0.025332,0.045368,0.025304,0.025304,0.025332,0.045368,0.025434,0.085328,0.025304,0.025304,0.025434,0.085328,0.025304,0.025304,0.025304,0.025304,0.025304,0.025304,,,,,,,0.025333,0.079537,0.025332,0.045368,0.025434,0.085328,0.025304,0.025304,0.025304,0.025304,0.009877,0.026139,0.009877,0.015888,0.009908,0.027876,0.009869,0.009869,0.005187,0.005187,29.966318,9.544232,29.967569,16.732447,29.846812,8.89656,30,30,30,30,,,,,,,,,,,2580,2580,0.025304,0.025304,0.025304,0.025304,0.025304,0.025304,0.025304,0.025304,0.009869,0.009869,30,30,, +34105,0,0.600079,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.400318,2.400318,2.400318,2.400318,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,,,,,,,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,0.82811,0.82811,0.82811,0.82811,0.82811,0.82811,0.82811,0.82811,0.426056,0.426056,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,2.400318,0.82811,0.82811,15,15,, +19982,0,0.014274,1,1,0,2,5,,5,8,Shiawassee,Ave,3251563,1.262,1.276,0,0.305878,3.7,5,0.028549,0.028549,0.028549,0.028549,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.028562,0.02857,0.028549,0.028549,0.028562,0.02857,0.028556,0.028566,0.028549,0.028549,0.028556,0.028566,0.028559,0.028563,0.028549,0.028549,0.028559,0.028563,0.028549,0.028549,0.028549,0.028549,0.028549,0.028549,,,,,,,0.028562,0.02857,0.028556,0.028566,0.028559,0.028563,0.028549,0.028549,0.028549,0.028549,0.011138,0.01114,0.011136,0.011139,0.011137,0.011138,0.011134,0.011134,0.005852,0.005852,29.98611,29.977698,29.992022,29.981522,29.988919,29.985064,30,30,30,30,,,,,,,,,,,2580,2580,0.028549,0.028549,0.028549,0.028549,0.028549,0.028549,0.028549,0.028549,0.011134,0.011134,30,30,, +11031,0,0.187272,1,1,0,2,7,,5,8,Shiawassee,Ave,1530104,0.046,0.233,0,4.012975,5.8,6,0.449453,0.449453,0.449453,0.449453,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.449456,0.449456,0.449453,0.449453,0.449456,0.449456,0.449454,0.449454,0.449453,0.449453,0.449454,0.449454,0.449461,0.449461,0.449453,0.449453,0.449461,0.449461,0.449453,0.449453,0.449453,0.449453,0.449453,0.449453,,,,,,,0.449456,0.449456,0.449454,0.449454,0.449461,0.449461,0.449453,0.449453,0.449453,0.449453,0.168546,0.168546,0.168545,0.168545,0.168547,0.168547,0.168545,0.168545,0.088018,0.088018,24.999835,24.999824,24.99994,24.99994,24.999543,24.99955,25,25,25,25,,,,,,,,,,,2064,2064,0.449453,0.449453,0.449453,0.449453,0.449453,0.449453,0.449453,0.449453,0.168545,0.168545,25,25,, +11028,0,0.184768,1,1,0,2,7,,5,8,Shiawassee,Ave,1530104,0.236,0.421,0,3.959315,5.8,6,0.443443,0.443443,0.443443,0.443443,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.443446,0.443446,0.443443,0.443443,0.443446,0.443446,0.443444,0.443444,0.443443,0.443443,0.443444,0.443444,0.443451,0.443451,0.443443,0.443443,0.443451,0.443451,0.443443,0.443443,0.443443,0.443443,0.443443,0.443443,,,,,,,0.443446,0.443446,0.443444,0.443444,0.443451,0.443451,0.443443,0.443443,0.443443,0.443443,0.166292,0.166292,0.166292,0.166292,0.166294,0.166294,0.166291,0.166291,0.086841,0.086841,24.999835,24.999824,24.99994,24.99994,24.999543,24.99955,25,25,25,25,,,,,,,,,,,2064,2064,0.443443,0.443443,0.443443,0.443443,0.443443,0.443443,0.443443,0.443443,0.166291,0.166291,25,25,, +8096,0,0.503183,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,9.332,9.835,0,10.782499,3.7,5,1.006367,1.006367,1.006367,1.006367,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.006521,1.039639,1.006367,1.006367,1.006521,1.039639,1.00679,1.006925,1.006367,1.006367,1.00679,1.006925,1.038716,1.008005,1.006367,1.006367,1.038716,1.008005,1.006367,1.006367,1.006367,1.006367,1.006367,1.006367,,,,,,,1.006521,1.039639,1.00679,1.006925,1.038716,1.008005,1.006367,1.006367,1.006367,1.006367,0.392529,0.402465,0.39261,0.39265,0.402188,0.392974,0.392483,0.392483,0.206305,0.206305,29.995397,29.039886,29.98739,29.983367,29.065691,29.951244,30,30,30,30,,,,,,,,,,,2580,2580,1.006367,1.006367,1.006367,1.006367,1.006367,1.006367,1.006367,1.006367,0.392483,0.392483,30,30,, +26908,0,1.036778,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.216681,0.15,4,4.147114,4.147114,4.147114,4.147114,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,,,,,,,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,1.430754,1.430754,1.430754,1.430754,1.430754,1.430754,1.430754,1.430754,0.736113,0.736113,14.999998,15,15,15,15,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,4.147114,1.430754,1.430754,15,15,, +8090,0,0.847796,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,9.835,10.683,0,18.167061,3.7,5,1.695592,1.695592,1.695592,1.695592,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.695777,1.695623,1.695592,1.695592,1.695777,1.695623,1.695597,1.695597,1.695592,1.695592,1.695597,1.695597,1.695815,1.696056,1.695592,1.695592,1.695815,1.696056,1.695592,1.695592,1.695592,1.695592,1.695592,1.695592,,,,,,,1.695777,1.695623,1.695597,1.695597,1.695815,1.696056,1.695592,1.695592,1.695592,1.695592,0.661336,0.66129,0.661283,0.661283,0.661348,0.66142,0.661281,0.661281,0.347596,0.347596,29.996739,29.999467,29.999913,29.999913,29.996058,29.991794,30,30,30,30,,,,,,,,,,,2580,2580,1.695592,1.695592,1.695592,1.695592,1.695592,1.695592,1.695592,1.695592,0.661281,0.661281,30,30,, +6817,0,0.053527,1,1,0,2,5,,5,8,White Lake,Rd,931905,1.388,1.441,0,1.147005,3.7,5,0.107054,0.107054,0.107054,0.107054,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.250445,0.258053,0.107054,0.107054,0.250445,0.258053,0.163903,0.163788,0.107054,0.107054,0.163903,0.163788,0.256328,0.238553,0.107054,0.107054,0.256328,0.238553,0.107054,0.107054,0.107054,0.107054,0.107054,0.107054,,,,,,,0.250445,0.258053,0.163903,0.163788,0.256328,0.238553,0.107054,0.107054,0.107054,0.107054,0.084768,0.087051,0.058806,0.058771,0.086533,0.081201,0.041751,0.041751,0.021946,0.021946,12.823623,12.445547,19.594633,19.608389,12.529297,13.462874,30,30,30,30,,,,,,,,,,,2580,2580,0.107054,0.107054,0.107054,0.107054,0.107054,0.107054,0.107054,0.107054,0.041751,0.041751,30,30,, +34064,0,0.652562,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.61025,2.61025,2.61025,2.61025,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,,,,,,,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,0.900536,0.900536,0.900536,0.900536,0.900536,0.900536,0.900536,0.900536,0.463319,0.463319,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,2.61025,0.900536,0.900536,15,15,, +34107,0,0.722954,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,2.891815,2.891815,2.891815,2.891815,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,,,,,,,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,0.997676,0.997676,0.997676,0.997676,0.997676,0.997676,0.997676,0.997676,0.513297,0.513297,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,2.891815,0.997676,0.997676,15,15,, +19976,0,0.069244,1,1,0,2,7,,5,8,Hartland,Rd,3251928,0,0.069,0,1.483798,5.8,6,0.166185,0.166185,0.166185,0.166185,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,,,,,,,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.06232,0.06232,0.06232,0.06232,0.06232,0.06232,0.06232,0.06232,0.032545,0.032545,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.166185,0.06232,0.06232,25,25,, +2667,0,1.024176,1,1,0,2,5,GRV,5,3,Rose Center,Rd,649409,1.099,2.123,0,21.946618,5.55,5,3.072527,3.072527,3.072527,3.072527,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.24457,3.245524,3.072527,3.072527,3.24457,3.245524,3.114838,3.118771,3.072527,3.072527,3.114838,3.118771,3.492112,3.412847,3.072527,3.072527,3.492112,3.412847,3.072527,3.072527,3.072527,3.072527,3.072527,3.072527,,,,,,,3.24457,3.245524,3.114838,3.118771,3.492112,3.412847,3.072527,3.072527,3.072527,3.072527,1.157723,1.158009,1.118803,1.119983,1.231985,1.208206,1.10611,1.10611,0.573538,0.573538,18.9395,18.933934,19.728325,19.703442,17.596956,18.005649,20,20,20,20,,,,,,,,,,,2236,2236,3.072527,3.072527,3.072527,3.072527,3.072527,3.072527,3.072527,3.072527,1.10611,1.10611,20,20,, +19980,0,1.034459,1,1,0,2,5,,5,3,Fenton,Rd,3251564,1.151,2.186,0,22.166968,3.7,5,2.068917,2.068917,2.068917,2.068917,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.142639,4.443798,2.068917,2.068917,5.142639,4.443798,2.478072,2.467235,2.068917,2.068917,2.478072,2.467235,3.919264,4.729568,2.068917,2.068917,3.919264,4.729568,2.068917,2.068917,2.068917,2.068917,2.068917,2.068917,,,,,,,5.142639,4.443798,2.478072,2.467235,3.919264,4.729568,2.068917,2.068917,2.068917,2.068917,1.728994,1.519342,0.929624,0.926373,1.361982,1.605073,0.806878,0.806878,0.424128,0.424128,12.069194,13.967221,25.046695,25.15671,15.836521,13.123293,30,30,30,30,,,,,,,,,,,2580,2580,2.068917,2.068917,2.068917,2.068917,2.068917,2.068917,2.068917,2.068917,0.806878,0.806878,30,30,, +20998,0,1.098694,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,14.737,15.835,0,23.54345,3.7,5,2.197389,2.197389,2.197389,2.197389,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.656461,3.175038,2.197389,2.197389,3.656461,3.175038,2.408984,2.406789,2.197389,2.197389,2.408984,2.406789,3.469472,4.119932,2.197389,2.197389,3.469472,4.119932,2.197389,2.197389,2.197389,2.197389,2.197389,2.197389,,,,,,,3.656461,3.175038,2.408984,2.406789,3.469472,4.119932,2.197389,2.197389,2.197389,2.197389,1.294703,1.150276,0.92046,0.919802,1.238607,1.433745,0.856982,0.856982,0.450465,0.450465,18.028815,20.762482,27.364919,27.389879,19.000485,16.000666,30,30,30,30,,,,,,,,,,,2580,2580,2.197389,2.197389,2.197389,2.197389,2.197389,2.197389,2.197389,2.197389,0.856982,0.856982,30,30,, +26909,0,1.073802,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.010045,0.15,4,4.295208,4.295208,4.295208,4.295208,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,,,,,,,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,1.481847,1.481847,1.481847,1.481847,1.481847,1.481847,1.481847,1.481847,0.7624,0.7624,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,4.295208,1.481847,1.481847,15,15,, +26910,0,0.764417,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.380368,0.15,4,3.057669,3.057669,3.057669,3.057669,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,,,,,,,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,1.054896,1.054896,1.054896,1.054896,1.054896,1.054896,1.054896,1.054896,0.542736,0.542736,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,3.057669,1.054896,1.054896,15,15,, +2669,0,1.099832,1,1,0,2,5,GRV,5,3,Rose Center,Rd,649409,0,1.099,0,23.56782,5.55,5,3.299495,3.299495,3.299495,3.299495,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,13.197979,13.197979,3.299495,3.299495,13.197979,13.197979,7.291112,7.302117,3.299495,3.299495,7.291112,7.302117,13.197979,13.197979,3.299495,3.299495,13.197979,13.197979,3.299495,3.299495,3.299495,3.299495,3.299495,3.299495,,,,,,,13.197979,13.197979,7.291112,7.302117,13.197979,13.197979,3.299495,3.299495,3.299495,3.299495,4.157363,4.157363,2.385303,2.388605,4.157363,4.157363,1.187818,1.187818,0.615906,0.615906,5,5,9.050731,9.037091,5,5,20,20,20,20,,,,,,,,,,,2236,2236,3.299495,3.299495,3.299495,3.299495,3.299495,3.299495,3.299495,3.299495,1.187818,1.187818,20,20,, +20999,0,1.502551,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,13.235,14.737,0,32.197523,3.7,5,3.005102,3.005102,3.005102,3.005102,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,5.631139,6.101693,3.005102,3.005102,5.631139,6.101693,3.487314,3.513468,3.005102,3.005102,3.487314,3.513468,6.42533,6.589674,3.005102,3.005102,6.42533,6.589674,3.005102,3.005102,3.005102,3.005102,3.005102,3.005102,,,,,,,5.631139,6.101693,3.487314,3.513468,6.42533,6.589674,3.005102,3.005102,3.005102,3.005102,1.959801,2.100967,1.316654,1.3245,2.198058,2.247361,1.17199,1.17199,0.616046,0.616046,16.00974,14.775089,25.851716,25.659282,14.030885,13.68096,30,30,30,30,,,,,,,,,,,2580,2580,3.005102,3.005102,3.005102,3.005102,3.005102,3.005102,3.005102,3.005102,1.17199,1.17199,30,30,, +19981,0,1.100123,1,1,0,2,5,,5,3,Holly,Rd,3251564,0.052,1.151,0,23.574055,3.7,5,2.200245,2.200245,2.200245,2.200245,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.217983,2.222163,2.200245,2.200245,2.217983,2.222163,2.203667,2.20351,2.200245,2.200245,2.203667,2.20351,2.205857,2.20554,2.200245,2.200245,2.205857,2.20554,2.200245,2.200245,2.200245,2.200245,2.200245,2.200245,,,,,,,2.217983,2.222163,2.203667,2.20351,2.205857,2.20554,2.200245,2.200245,2.200245,2.200245,0.863417,0.864671,0.859122,0.859075,0.859779,0.859684,0.858096,0.858096,0.45105,0.45105,29.760087,29.704105,29.953416,29.955551,29.923674,29.927983,30,30,30,30,,,,,,,,,,,2580,2580,2.200245,2.200245,2.200245,2.200245,2.200245,2.200245,2.200245,2.200245,0.858096,0.858096,30,30,, +26912,0,1.567096,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.580628,0.15,4,6.268384,6.268384,6.268384,6.268384,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,,,,,,,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,2.162592,2.162592,2.162592,2.162592,2.162592,2.162592,2.162592,2.162592,1.112638,1.112638,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,6.268384,2.162592,2.162592,15,15,, +2481,0,0.512579,1,1,0,2,4,,5,3,Milford,Rd,679302,3.383,3.895,0,10.983843,3,4,0.768869,0.768869,0.768869,0.768869,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.477194,1.357841,0.768869,0.768869,1.477194,1.357841,1.009196,0.997113,0.768869,0.768869,1.009196,0.997113,1.482672,1.729149,0.768869,0.768869,1.482672,1.729149,0.768869,0.768869,0.768869,0.768869,0.768869,0.768869,,,,,,,1.477194,1.357841,1.009196,0.997113,1.482672,1.729149,0.768869,0.768869,0.768869,0.768869,0.535423,0.499616,0.395023,0.391398,0.537066,0.611009,0.322925,0.322925,0.171714,0.171714,20.819709,22.649758,30.474513,30.843806,20.742796,17.786063,40,40,40,40,,,,,,,,,,,3096,3096,0.768869,0.768869,0.768869,0.768869,0.768869,0.768869,0.768869,0.768869,0.322925,0.322925,40,40,, +2663,0,0.499533,1,1,0,2,5,,5,3,Academy,,649503,0.367,0.866,0,10.704268,3.7,5,0.999065,0.999065,0.999065,0.999065,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.059979,1.042281,0.999065,0.999065,1.059979,1.042281,1.005843,1.003554,0.999065,0.999065,1.005843,1.003554,1.011668,1.015401,0.999065,0.999065,1.011668,1.015401,0.999065,0.999065,0.999065,0.999065,0.999065,0.999065,,,,,,,1.059979,1.042281,1.005843,1.003554,1.011668,1.015401,0.999065,0.999065,0.999065,0.999065,0.40791,0.4026,0.391669,0.390982,0.393416,0.394536,0.389635,0.389635,0.204808,0.204808,28.275982,28.756111,29.797845,29.865795,29.626268,29.517347,30,30,30,30,,,,,,,,,,,2580,2580,0.999065,0.999065,0.999065,0.999065,0.999065,0.999065,0.999065,0.999065,0.389635,0.389635,30,30,, +3091,0,1.050585,1,1,0,2,5,,5,3,Fish Lake,Rd,649104,6.604,7.654,0,22.512526,3.7,5,2.101169,2.101169,2.101169,2.101169,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,3.52358,3.312124,2.101169,2.101169,3.52358,3.312124,2.243382,2.247798,2.101169,2.101169,2.243382,2.247798,3.219512,3.703906,2.101169,2.101169,3.219512,3.703906,2.101169,2.101169,2.101169,2.101169,2.101169,2.101169,,,,,,,3.52358,3.312124,2.243382,2.247798,3.219512,3.703906,2.101169,2.101169,2.101169,2.101169,1.246179,1.182742,0.86212,0.863445,1.154959,1.300277,0.819456,0.819456,0.43074,0.43074,17.889499,19.031617,28.09824,28.043032,19.579076,17.01854,30,30,30,30,,,,,,,,,,,2580,2580,2.101169,2.101169,2.101169,2.101169,2.101169,2.101169,2.101169,2.101169,0.819456,0.819456,30,30,, +19979,0,1.109481,1,1,0,2,5,,5,3,Fenton,Rd,3251564,2.186,3.295,0,23.774595,3.7,5,2.218962,2.218962,2.218962,2.218962,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.326595,2.252973,2.218962,2.218962,2.326595,2.252973,2.231224,2.227552,2.218962,2.218962,2.231224,2.227552,2.259055,2.308248,2.218962,2.218962,2.259055,2.308248,2.218962,2.218962,2.218962,2.218962,2.218962,2.218962,,,,,,,2.326595,2.252973,2.231224,2.227552,2.259055,2.308248,2.218962,2.218962,2.218962,2.218962,0.897685,0.875599,0.869074,0.867972,0.877423,0.892181,0.865395,0.865395,0.454887,0.454887,28.612143,29.54712,29.835138,29.884309,29.467573,28.83957,30,30,30,30,,,,,,,,,,,2580,2580,2.218962,2.218962,2.218962,2.218962,2.218962,2.218962,2.218962,2.218962,0.865395,0.865395,30,30,, +2571,0,0.297304,1,1,0,2,4,,4,3,Broad,,650710,0,0.297,0,6.370806,4.5,4.5,0.469428,0.469428,0.469428,0.469428,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.029118,0.924198,0.469428,0.469428,1.029118,0.924198,0.635325,0.625971,0.469428,0.469428,0.635325,0.625971,1.03399,1.257623,0.469428,0.469428,1.03399,1.257623,0.469428,0.469428,0.469428,0.469428,0.469428,0.469428,,,,,,,1.029118,0.924198,0.635325,0.625971,1.03399,1.257623,0.469428,0.469428,0.469428,0.469428,0.36225,0.330774,0.244112,0.241306,0.363712,0.430802,0.194343,0.194343,0.103118,0.103118,17.333532,19.301333,28.077371,28.49692,17.25187,14.184103,38,38,38,38,,,,,,,,,,,3096,3096,0.469428,0.469428,0.469428,0.469428,0.469428,0.469428,0.469428,0.469428,0.194343,0.194343,38,38,, +3505,0,0.131604,1,1,0,2,5,,4,3,Oakland,,651008,0,0.132,0,2.820084,5.8,4.5,0.292453,0.292453,0.292453,0.292453,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.334595,0.323395,0.292453,0.292453,0.334595,0.323395,0.298294,0.296484,0.292453,0.292453,0.298294,0.296484,0.30266,0.305345,0.292453,0.292453,0.30266,0.305345,0.292453,0.292453,0.292453,0.292453,0.292453,0.292453,,,,,,,0.334595,0.323395,0.298294,0.296484,0.30266,0.305345,0.292453,0.292453,0.292453,0.292453,0.124067,0.120707,0.113177,0.112634,0.114487,0.115292,0.111425,0.111425,0.058344,0.058344,23.599376,24.416675,26.471346,26.632888,26.089445,25.86007,27,27,27,27,,,,,,,,,,,2580,2580,0.292453,0.292453,0.292453,0.292453,0.292453,0.292453,0.292453,0.292453,0.111425,0.111425,27,27,, +3506,0,0.262017,1,1,0,2,5,,4,3,Academy,Rd,651002,0,0.262,0,5.614654,5.8,4.5,0.58226,0.58226,0.58226,0.58226,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.666163,0.643865,0.58226,0.58226,0.666163,0.643865,0.593889,0.590286,0.58226,0.58226,0.593889,0.590286,0.602582,0.607927,0.58226,0.58226,0.602582,0.607927,0.58226,0.58226,0.58226,0.58226,0.58226,0.58226,,,,,,,0.666163,0.643865,0.593889,0.590286,0.602582,0.607927,0.58226,0.58226,0.58226,0.58226,0.247012,0.240322,0.22533,0.224249,0.227938,0.229541,0.221841,0.221841,0.116161,0.116161,23.599376,24.416675,26.471346,26.632888,26.089445,25.86007,27,27,27,27,,,,,,,,,,,2580,2580,0.58226,0.58226,0.58226,0.58226,0.58226,0.58226,0.58226,0.58226,0.221841,0.221841,27,27,, +2542,0,0.114638,1,1,0,2,7,,4,3,Maple,,650805,0,0.115,0,2.456535,6.55,4.5,0.275132,0.275132,0.275132,0.275132,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,,,,,,,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.103174,0.103174,0.103174,0.103174,0.103174,0.103174,0.103174,0.103174,0.05388,0.05388,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.275132,0.103174,0.103174,25,25,, +2563,0,0.24808,1,1,0,2,4,,4,3,Broad,,650710,0.297,0.545,0,5.31599,4.5,4.5,0.391705,0.391705,0.391705,0.391705,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.543314,0.54168,0.391705,0.391705,0.543314,0.54168,0.457476,0.457216,0.391705,0.391705,0.457476,0.457216,0.549076,0.586363,0.391705,0.391705,0.549076,0.586363,0.391705,0.391705,0.391705,0.391705,0.391705,0.391705,,,,,,,0.543314,0.54168,0.457476,0.457216,0.549076,0.586363,0.391705,0.391705,0.391705,0.391705,0.207649,0.207158,0.181897,0.181819,0.209377,0.220563,0.162166,0.162166,0.086044,0.086044,27.396264,27.478912,32.53672,32.555267,27.108769,25.38491,38,38,38,38,,,,,,,,,,,3096,3096,0.391705,0.391705,0.391705,0.391705,0.391705,0.391705,0.391705,0.391705,0.162166,0.162166,38,38,, +3138,0,0.251705,1,1,0,2,7,,4,3,Saginaw,,650602,0.056,0.308,0,5.393678,6.55,4.5,0.604092,0.604092,0.604092,0.604092,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.60416,0.604103,0.604092,0.604092,0.60416,0.604103,0.604092,0.604092,0.604092,0.604092,0.604092,0.604092,0.604123,0.604196,0.604092,0.604092,0.604123,0.604196,0.604092,0.604092,0.604092,0.604092,0.604092,0.604092,,,,,,,0.60416,0.604103,0.604092,0.604092,0.604123,0.604196,0.604092,0.604092,0.604092,0.604092,0.226555,0.226538,0.226534,0.226534,0.226544,0.226566,0.226534,0.226534,0.118301,0.118301,24.997173,24.999533,25,25,24.998736,24.995708,25,25,25,25,,,,,,,,,,,2064,2064,0.604092,0.604092,0.604092,0.604092,0.604092,0.604092,0.604092,0.604092,0.226534,0.226534,25,25,, +3407,0,0.118714,1,1,0,2,5,,4,3,Oakland,,651008,0.132,0.25,0,2.54387,5.8,4.5,0.263809,0.263809,0.263809,0.263809,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.301279,0.29172,0.263809,0.263809,0.301279,0.29172,0.269077,0.267445,0.263809,0.263809,0.269077,0.267445,0.273016,0.275438,0.263809,0.263809,0.273016,0.275438,0.263809,0.263809,0.263809,0.263809,0.263809,0.263809,,,,,,,0.301279,0.29172,0.269077,0.267445,0.273016,0.275438,0.263809,0.263809,0.263809,0.263809,0.111752,0.108885,0.102092,0.101602,0.103273,0.104,0.100511,0.100511,0.05263,0.05263,23.641959,24.416675,26.471346,26.632888,26.089445,25.86007,27,27,27,27,,,,,,,,,,,2580,2580,0.263809,0.263809,0.263809,0.263809,0.263809,0.263809,0.263809,0.263809,0.100511,0.100511,27,27,, +3404,0,0.06991,1,1,0,2,7,,4,3,Michigan,,651207,0,0.07,0,1.498072,6.55,4.5,0.167784,0.167784,0.167784,0.167784,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,,,,,,,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.062919,0.062919,0.062919,0.062919,0.062919,0.062919,0.062919,0.062919,0.032858,0.032858,25,25,25,25,25,25,25,25,25,25,,,,,,,,,,,2064,2064,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.167784,0.062919,0.062919,25,25,, +2552,0,0.064149,1,1,0,2,7,,4,3,Sherman,,650802,0.124,0.188,0,1.374612,6.55,4.5,0.153957,0.153957,0.153957,0.153957,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.153959,0.153974,0.153957,0.153957,0.153959,0.153974,0.153957,0.153957,0.153957,0.153957,0.153957,0.153957,0.153983,0.153964,0.153957,0.153957,0.153983,0.153964,0.153957,0.153957,0.153957,0.153957,0.153957,0.153957,,,,,,,0.153959,0.153974,0.153957,0.153957,0.153983,0.153964,0.153957,0.153957,0.153957,0.153957,0.057735,0.057739,0.057734,0.057734,0.057742,0.057736,0.057734,0.057734,0.03015,0.03015,24.999533,24.997173,25,25,24.995708,24.998736,25,25,25,25,,,,,,,,,,,2064,2064,0.153957,0.153957,0.153957,0.153957,0.153957,0.153957,0.153957,0.153957,0.057734,0.057734,25,25,, +3082,0,0.073724,2,2,0,2,4,,4,3,Saginaw,,650602,0.308,0.381,0,1.57981,4.5,4.5,0.116407,0.116407,0.116407,0.116407,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.120911,0.120937,0.116407,0.116407,0.120911,0.120937,0.118045,0.118319,0.116407,0.116407,0.118045,0.118319,0.119865,0.119637,0.116407,0.116407,0.119865,0.119637,0.116407,0.116407,0.116407,0.116407,0.116407,0.116407,,,,,,,0.120911,0.120937,0.118045,0.118319,0.119865,0.119637,0.116407,0.116407,0.116407,0.116407,0.049544,0.049552,0.048684,0.048766,0.04923,0.049162,0.048193,0.048193,0.025571,0.025571,36.584382,36.576597,37.47272,37.385809,36.903634,36.974023,38,38,38,38,,,,,,,,,,,6192,6192,0.116407,0.116407,0.116407,0.116407,0.116407,0.116407,0.116407,0.116407,0.048193,0.048193,38,38,, +2517,0,0.062226,1,1,0,2,4,,4,3,Maple,,650805,0.115,0.177,0,1.333417,4.5,4.5,0.098252,0.098252,0.098252,0.098252,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.1655,0.156259,0.098252,0.098252,0.1655,0.156259,0.134775,0.129534,0.098252,0.098252,0.134775,0.129534,0.136858,0.144937,0.098252,0.098252,0.136858,0.144937,0.098252,0.098252,0.098252,0.098252,0.098252,0.098252,,,,,,,0.1655,0.156259,0.134775,0.129534,0.136858,0.144937,0.098252,0.098252,0.098252,0.098252,0.060851,0.058078,0.051633,0.050061,0.052258,0.054682,0.040676,0.040676,0.021583,0.021583,22.55929,23.893434,27.702171,28.823002,27.280559,25.759982,38,38,38,38,,,,,,,,,,,3096,3096,0.098252,0.098252,0.098252,0.098252,0.098252,0.098252,0.098252,0.098252,0.040676,0.040676,38,38,, +2523,0,1.795292,1,1,0,2,5,GRV,5,3,Belford,Rd,649602,0.51,2.305,0,38.470543,5.55,5,5.385876,5.385876,5.385876,5.385876,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,5.385877,5.385877,5.385876,5.385876,5.385877,5.385877,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,,,,,,,5.385877,5.385877,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,1.938916,1.938916,1.938915,1.938915,1.938915,1.938915,1.938915,1.938915,1.005364,1.005364,19.999995,19.999995,19.999999,19.999999,19.999999,19.999999,20,20,20,20,,,,,,,,,,,2236,2236,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,5.385876,1.938915,1.938915,20,20,, +2662,0,2.080217,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,0,2.08,0,44.576076,3,4,3.120325,3.120325,3.120325,3.120325,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,4.836761,4.926607,3.120325,3.120325,4.836761,4.926607,3.62479,3.576273,3.120325,3.120325,3.62479,3.576273,3.834909,3.789074,3.120325,3.120325,3.834909,3.789074,3.120325,3.120325,3.120325,3.120325,3.120325,3.120325,,,,,,,4.836761,4.926607,3.62479,3.576273,3.834909,3.789074,3.120325,3.120325,3.120325,3.120325,1.825467,1.852421,1.461876,1.447321,1.524912,1.511161,1.310537,1.310537,0.696873,0.696873,25.805082,25.334477,34.433167,34.900305,32.546542,32.94024,40,40,40,40,,,,,,,,,,,3096,3096,3.120325,3.120325,3.120325,3.120325,3.120325,3.120325,3.120325,3.120325,1.310537,1.310537,40,40,, +21063,0,0.999842,1,1,0,2,4,,5,3,Holly,Rd,4410127,0.501,1.5,0,21.425192,3,4,1.499763,1.499763,1.499763,1.499763,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.607606,1.625807,1.499763,1.499763,1.607606,1.625807,1.525552,1.522515,1.499763,1.499763,1.525552,1.522515,1.633559,1.586685,1.499763,1.499763,1.633559,1.586685,1.499763,1.499763,1.499763,1.499763,1.499763,1.499763,,,,,,,1.607606,1.625807,1.525552,1.522515,1.633559,1.586685,1.499763,1.499763,1.499763,1.499763,0.662254,0.667714,0.637637,0.636726,0.670039,0.655977,0.629901,0.629901,0.334947,0.334947,37.31668,36.898932,39.323835,39.402258,36.723826,37.808714,40,40,40,40,,,,,,,,,,,3096,3096,1.499763,1.499763,1.499763,1.499763,1.499763,1.499763,1.499763,1.499763,0.629901,0.629901,40,40,, +27100,0,1.293909,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.726628,0.15,4,5.175637,5.175637,5.175637,5.175637,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,,,,,,,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,1.785595,1.785595,1.785595,1.785595,1.785595,1.785595,1.785595,1.785595,0.918676,0.918676,14.999999,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,5.175637,1.785595,1.785595,15,15,, +28610,0,1.5851,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.966422,0.15,4,6.340399,6.340399,6.340399,6.340399,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,,,,,,,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,2.187438,2.187438,2.187438,2.187438,2.187438,2.187438,2.187438,2.187438,1.125421,1.125421,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,6.340399,2.187438,2.187438,15,15,, +27099,0,1.855646,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,39.763848,0.15,4,7.422585,7.422585,7.422585,7.422585,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,,,,,,,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,2.560792,2.560792,2.560792,2.560792,2.560792,2.560792,2.560792,2.560792,1.317509,1.317509,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,7.422585,2.560792,2.560792,15,15,, +2582,0,0.995906,1,1,0,2,5,GRV,5,3,Quick,Rd,649505,0,0.996,0,21.340833,5.55,5,2.987717,2.987717,2.987717,2.987717,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.987796,2.987717,2.987717,2.987717,2.987796,2.987717,2.987717,2.987717,2.987717,2.987717,2.987717,2.987717,2.987717,2.987749,2.987717,2.987717,2.987717,2.987749,2.987717,2.987717,2.987717,2.987717,2.987717,2.987717,,,,,,,2.987796,2.987717,2.987717,2.987717,2.987717,2.987749,2.987717,2.987717,2.987717,2.987717,1.075602,1.075578,1.075578,1.075578,1.075578,1.075588,1.075578,1.075578,0.557707,0.557707,19.999468,20,20,20,20,19.999784,20,20,20,20,,,,,,,,,,,2236,2236,2.987717,2.987717,2.987717,2.987717,2.987717,2.987717,2.987717,2.987717,1.075578,1.075578,20,20,, +2661,0,0.591164,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,2.08,2.671,0,12.667802,3,4,0.886746,0.886746,0.886746,0.886746,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.402309,1.25946,0.886746,0.886746,1.402309,1.25946,1.083846,1.092311,0.886746,0.886746,1.083846,1.092311,1.194528,1.217899,0.886746,0.886746,1.194528,1.217899,0.886746,0.886746,0.886746,0.886746,0.886746,0.886746,,,,,,,1.402309,1.25946,1.083846,1.092311,1.194528,1.217899,0.886746,0.886746,0.886746,0.886746,0.527102,0.484247,0.431563,0.434103,0.464768,0.471779,0.372433,0.372433,0.19804,0.19804,25.29388,28.16275,32.725916,32.472295,29.693619,29.12379,40,40,40,40,,,,,,,,,,,3096,3096,0.886746,0.886746,0.886746,0.886746,0.886746,0.886746,0.886746,0.886746,0.372433,0.372433,40,40,, +3059,0,0.60188,1,1,0,2,5,,5,3,Fish Lake,Rd,649104,8.555,9.156,0,12.897429,3.7,5,1.20376,1.20376,1.20376,1.20376,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.203985,1.205903,1.20376,1.20376,1.203985,1.205903,1.203932,1.203961,1.20376,1.20376,1.203932,1.203961,1.205556,1.206041,1.20376,1.20376,1.205556,1.206041,1.20376,1.20376,1.20376,1.20376,1.20376,1.20376,,,,,,,1.203985,1.205903,1.203932,1.203961,1.205556,1.206041,1.20376,1.20376,1.20376,1.20376,0.469534,0.470109,0.469518,0.469527,0.470005,0.470151,0.469466,0.469466,0.246771,0.246771,29.994389,29.946679,29.99571,29.99499,29.955305,29.943259,30,30,30,30,,,,,,,,,,,2580,2580,1.20376,1.20376,1.20376,1.20376,1.20376,1.20376,1.20376,1.20376,0.469466,0.469466,30,30,, +21064,0,0.164607,1,1,1,2,4,,4,3,Holly,Rd,4410127,0.336,0.501,0,3.527286,4.5,4.5,0.259905,0.259905,0.259905,0.259905,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.269556,0.264869,0.259905,0.259905,0.269556,0.264869,0.260505,0.260436,0.259905,0.259905,0.260505,0.260436,0.267453,0.264522,0.259905,0.259905,0.267453,0.264522,0.259905,0.259905,0.259905,0.259905,0.259905,0.259905,,,,,,,0.269556,0.264869,0.260505,0.260436,0.267453,0.264522,0.259905,0.259905,0.259905,0.259905,0.110496,0.10909,0.107781,0.10776,0.109865,0.108986,0.107601,0.107601,0.057093,0.057093,36.639474,37.287908,37.912487,37.922579,36.927626,37.336772,38,38,38,38,,,,,,,,,,,3406,3406,0.259905,0.259905,0.259905,0.259905,0.259905,0.259905,0.259905,0.259905,0.107601,0.107601,38,38,, +26936,0,0.04544,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,0.973722,0.15,4,0.181762,0.181762,0.181762,0.181762,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,,,,,,,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.062708,0.062708,0.062708,0.062708,0.062708,0.062708,0.062708,0.062708,0.032263,0.032263,14.999998,14.999996,14.999999,14.999999,14.999991,14.999995,15,15,15,15,,,,,,,,,,,34400,34400,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.181762,0.062708,0.062708,15,15,, +27375,0,0.364006,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.800138,0.15,4,1.456026,1.456026,1.456026,1.456026,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,,,,,,,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,0.502329,0.502329,0.502329,0.502329,0.502329,0.502329,0.502329,0.502329,0.258445,0.258445,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,1.456026,0.502329,0.502329,15,15,, +2659,0,0.418512,1,1,0,2,4,,4,3,Grange Hall,Rd,649504,2.671,3.089,0,8.96811,4.5,4.5,0.660808,0.660808,0.660808,0.660808,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.995324,0.922577,0.660808,0.660808,0.995324,0.922577,0.818375,0.827656,0.660808,0.660808,0.818375,0.827656,0.841261,0.878317,0.660808,0.660808,0.841261,0.878317,0.660808,0.660808,0.660808,0.660808,0.660808,0.660808,,,,,,,0.995324,0.922577,0.818375,0.827656,0.841261,0.878317,0.660808,0.660808,0.660808,0.660808,0.373929,0.352105,0.320845,0.323629,0.327711,0.338827,0.273575,0.273575,0.145158,0.145158,25.228666,27.218013,30.683609,30.33956,29.848878,28.589589,38,38,38,38,,,,,,,,,,,3096,3096,0.660808,0.660808,0.660808,0.660808,0.660808,0.660808,0.660808,0.660808,0.273575,0.273575,38,38,, +2819,0,0.571425,2,2,0,2,4,,4,3,Saginaw,,650602,0.743,1.314,0,12.244813,4.5,4.5,0.902249,0.902249,0.902249,0.902249,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,1.092204,1.062985,0.902249,0.902249,1.092204,1.062985,0.977142,0.975989,0.902249,0.902249,0.977142,0.975989,1.037889,1.061601,0.902249,0.902249,1.037889,1.061601,0.902249,0.902249,0.902249,0.902249,0.902249,0.902249,,,,,,,1.092204,1.062985,0.977142,0.975989,1.037889,1.061601,0.902249,0.902249,0.902249,0.902249,0.430518,0.421752,0.395999,0.395653,0.414223,0.421337,0.373531,0.373531,0.198194,0.198194,31.391086,32.253958,35.087505,35.128959,33.033845,32.296015,38,38,38,38,,,,,,,,,,,6192,6192,0.902249,0.902249,0.902249,0.902249,0.902249,0.902249,0.902249,0.902249,0.373531,0.373531,38,38,, +26935,0,0.728293,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.606286,0.15,4,2.913173,2.913173,2.913173,2.913173,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,,,,,,,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,1.005045,1.005045,1.005045,1.005045,1.005045,1.005045,1.005045,1.005045,0.517088,0.517088,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,2.913173,1.005045,1.005045,15,15,, +26932,0,0.17257,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.697931,0.15,4,0.69028,0.69028,0.69028,0.69028,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.69028,0.69028,0.69028,0.69028,0.69028,0.69028,0.690281,0.690281,0.69028,0.69028,0.690281,0.690281,0.690281,0.690281,0.69028,0.69028,0.690281,0.690281,0.69028,0.69028,0.69028,0.69028,0.69028,0.69028,,,,,,,0.69028,0.69028,0.690281,0.690281,0.690281,0.690281,0.69028,0.69028,0.69028,0.69028,0.238147,0.238147,0.238147,0.238147,0.238147,0.238147,0.238147,0.238147,0.122525,0.122525,14.999999,14.999999,14.999998,14.999999,14.999997,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,0.69028,0.69028,0.69028,0.69028,0.69028,0.69028,0.69028,0.69028,0.238147,0.238147,15,15,, +2852,0,0.188625,2,2,0,2,4,,4,3,Saginaw,,650602,0.555,0.743,0,4.041963,4.5,4.5,0.297829,0.297829,0.297829,0.297829,38,38,18000,18000,4086,4086,9000,9000,5807,5807,6192,6192,6185,6185,0.380801,0.377624,0.297829,0.297829,0.380801,0.377624,0.323005,0.323327,0.297829,0.297829,0.323005,0.323327,0.356842,0.364136,0.297829,0.297829,0.356842,0.364136,0.297829,0.297829,0.297829,0.297829,0.297829,0.297829,,,,,,,0.380801,0.377624,0.323005,0.323327,0.356842,0.364136,0.297829,0.297829,0.297829,0.297829,0.148193,0.14724,0.130854,0.130951,0.141005,0.143193,0.123301,0.123301,0.065423,0.065423,29.720266,29.970316,35.038142,35.0032,31.715701,31.080439,38,38,38,38,,,,,,,,,,,6192,6192,0.297829,0.297829,0.297829,0.297829,0.297829,0.297829,0.297829,0.297829,0.123301,0.123301,38,38,, +2656,0,0.104361,1,1,1,2,4,,4,3,Grange Hall,Rd,649504,3.089,3.193,0,2.236307,4.5,4.5,0.164781,0.164781,0.164781,0.164781,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.248678,0.293909,0.164781,0.164781,0.248678,0.293909,0.205012,0.205259,0.164781,0.164781,0.205012,0.205259,0.221971,0.228866,0.164781,0.164781,0.221971,0.228866,0.164781,0.164781,0.164781,0.164781,0.164781,0.164781,,,,,,,0.248678,0.293909,0.205012,0.205259,0.221971,0.228866,0.164781,0.164781,0.164781,0.164781,0.093389,0.106958,0.080289,0.080363,0.085376,0.087445,0.068219,0.068219,0.036197,0.036197,25.179745,21.304735,30.542873,30.506146,28.209365,27.359533,38,38,38,38,,,,,,,,,,,3406,3406,0.164781,0.164781,0.164781,0.164781,0.164781,0.164781,0.164781,0.164781,0.068219,0.068219,38,38,, +21065,0,0.336041,1,1,1,2,4,,4,3,Holly,Rd,4410127,0,0.336,0,7.200879,4.5,4.5,0.530591,0.530591,0.530591,0.530591,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.685238,0.578297,0.530591,0.530591,0.685238,0.578297,0.545181,0.545754,0.530591,0.530591,0.545181,0.545754,0.605745,0.63705,0.530591,0.530591,0.605745,0.63705,0.530591,0.530591,0.530591,0.530591,0.530591,0.530591,,,,,,,0.685238,0.578297,0.545181,0.545754,0.605745,0.63705,0.530591,0.530591,0.530591,0.530591,0.266059,0.233977,0.224042,0.224214,0.242211,0.251602,0.219665,0.219665,0.116553,0.116553,29.424037,34.865214,36.98303,36.944216,33.285396,31.649728,38,38,38,38,,,,,,,,,,,3406,3406,0.530591,0.530591,0.530591,0.530591,0.530591,0.530591,0.530591,0.530591,0.219665,0.219665,38,38,, +21061,0,1.46469,1,1,0,2,4,,5,3,Holly,Rd,4410127,2.279,3.743,0,31.386214,3,4,2.197035,2.197035,2.197035,2.197035,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.274557,2.216431,2.197035,2.197035,2.274557,2.216431,2.204182,2.201015,2.197035,2.197035,2.204182,2.201015,2.210418,2.212373,2.197035,2.197035,2.210418,2.212373,2.197035,2.197035,2.197035,2.197035,2.197035,2.197035,,,,,,,2.274557,2.216431,2.204182,2.201015,2.210418,2.212373,2.197035,2.197035,2.197035,2.197035,0.946011,0.928573,0.924899,0.923949,0.92677,0.927356,0.922755,0.922755,0.490671,0.490671,38.636704,39.649963,39.870294,39.927672,39.757824,39.722691,40,40,40,40,,,,,,,,,,,3096,3096,2.197035,2.197035,2.197035,2.197035,2.197035,2.197035,2.197035,2.197035,0.922755,0.922755,40,40,, +21062,0,0.77945,1,1,0,2,4,,5,3,Holly,Rd,4410127,1.5,2.279,0,16.702495,3,4,1.169175,1.169175,1.169175,1.169175,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.2335,1.219525,1.169175,1.169175,1.2335,1.219525,1.179951,1.176829,1.169175,1.169175,1.179951,1.176829,1.210172,1.197684,1.169175,1.169175,1.210172,1.197684,1.169175,1.169175,1.169175,1.169175,1.169175,1.169175,,,,,,,1.2335,1.219525,1.179951,1.176829,1.210172,1.197684,1.169175,1.169175,1.169175,1.169175,0.510351,0.506158,0.494286,0.49335,0.503352,0.499606,0.491053,0.491053,0.261116,0.261116,37.914046,38.348538,39.634681,39.739826,38.644919,39.047859,40,40,40,40,,,,,,,,,,,3096,3096,1.169175,1.169175,1.169175,1.169175,1.169175,1.169175,1.169175,1.169175,0.491053,0.491053,40,40,, +34108,0,0.931477,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,3.725907,3.725907,3.725907,3.725907,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,,,,,,,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,1.285438,1.285438,1.285438,1.285438,1.285438,1.285438,1.285438,1.285438,0.661349,0.661349,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,3.725907,1.285438,1.285438,15,15,, +19978,0,1.258343,1,1,0,2,5,GRV,5,3,Thompson,Rd,3251565,0.383,1.64,0,26.964492,5.55,5,3.775029,3.775029,3.775029,3.775029,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.77503,3.77503,3.775029,3.775029,3.77503,3.77503,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,,,,,,,3.77503,3.77503,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,1.359011,1.359011,1.35901,1.35901,1.359011,1.359011,1.35901,1.35901,0.704672,0.704672,19.999995,19.999995,19.999999,19.999999,19.999999,19.999999,20,20,20,20,,,,,,,,,,,2236,2236,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,3.775029,1.35901,1.35901,20,20,, +34081,0,1.14127,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4,4.565078,4.565078,4.565078,4.565078,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.565079,4.565079,4.565078,4.565078,4.565079,4.565079,4.565079,4.565078,4.565078,4.565078,4.565079,4.565078,4.565079,4.565079,4.565078,4.565078,4.565079,4.565079,4.565078,4.565078,4.565078,4.565078,4.565078,4.565078,,,,,,,4.565079,4.565079,4.565079,4.565078,4.565079,4.565079,4.565078,4.565078,4.565078,4.565078,1.574952,1.574952,1.574952,1.574952,1.574952,1.574952,1.574952,1.574952,0.810301,0.810301,14.999997,14.999997,14.999999,14.999999,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,4.565078,4.565078,4.565078,4.565078,4.565078,4.565078,4.565078,4.565078,1.574952,1.574952,15,15,, +477,0,0.500129,1,1,0,2,4,,4,3,Wise,Rd,630008,0,0.5,0,10.717052,4.5,4.5,0.789678,0.789678,0.789678,0.789678,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.466628,1.177611,0.789678,0.789678,1.466628,1.177611,0.983822,0.937048,0.789678,0.789678,0.983822,0.937048,1.423192,1.555198,0.789678,0.789678,1.423192,1.555198,0.789678,0.789678,0.789678,0.789678,0.789678,0.789678,,,,,,,1.466628,1.177611,0.983822,0.937048,1.423192,1.555198,0.789678,0.789678,0.789678,0.789678,0.530012,0.443306,0.38517,0.371137,0.516981,0.556583,0.326926,0.326926,0.173466,0.173466,20.460363,25.481887,30.501194,32.023719,21.084818,19.295124,38,38,38,38,,,,,,,,,,,3096,3096,0.789678,0.789678,0.789678,0.789678,0.789678,0.789678,0.789678,0.789678,0.326926,0.326926,38,38,, +518,0,0.914966,1,1,0,2,4,,4,3,Bogie Lake,Rd,630007,0,0.915,0,19.60641,4.5,4.5,1.444683,1.444683,1.444683,1.444683,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.920374,3.349114,1.444683,1.444683,1.920374,3.349114,1.801764,1.815764,1.444683,1.444683,1.801764,1.815764,3.363408,2.370619,1.444683,1.444683,3.363408,2.370619,1.444683,1.444683,1.444683,1.444683,1.444683,1.444683,,,,,,,1.920374,3.349114,1.801764,1.815764,3.363408,2.370619,1.444683,1.444683,1.444683,1.444683,0.740806,1.169428,0.705223,0.709423,1.173716,0.87588,0.598099,0.598099,0.317349,0.317349,28.587109,16.391783,30.469008,30.234079,16.322119,23.157642,38,38,38,38,,,,,,,,,,,3096,3096,1.444683,1.444683,1.444683,1.444683,1.444683,1.444683,1.444683,1.444683,0.598099,0.598099,38,38,, +698,0,0.580369,1,1,0,2,5,,4,3,Carey,Rd,630309,0,0.58,0,12.436484,5.8,4.5,1.289709,1.289709,1.289709,1.289709,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.28971,1.291308,1.289709,1.289709,1.28971,1.291308,1.289709,1.289709,1.289709,1.289709,1.289709,1.289709,1.291033,1.289735,1.289709,1.289709,1.291033,1.289735,1.289709,1.289709,1.289709,1.289709,1.289709,1.289709,,,,,,,1.28971,1.291308,1.289709,1.289709,1.291033,1.289735,1.289709,1.289709,1.289709,1.289709,0.491379,0.491859,0.491379,0.491379,0.491776,0.491387,0.491379,0.491379,0.257297,0.257297,26.999993,26.966577,26.999998,27,26.972312,26.999473,27,27,27,27,,,,,,,,,,,2580,2580,1.289709,1.289709,1.289709,1.289709,1.289709,1.289709,1.289709,1.289709,0.491379,0.491379,27,27,, +1012,0,0.19248,1,1,0,2,5,,4,3,Lake,Dr,631101,0.394,0.587,0,4.124564,5.8,4.5,0.427733,0.427733,0.427733,0.427733,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.167408,0.461715,0.427733,0.427733,1.167408,0.461715,0.509738,0.490693,0.427733,0.427733,0.509738,0.490693,0.597654,1.088544,0.427733,0.427733,0.597654,1.088544,0.427733,0.427733,0.427733,0.427733,0.427733,0.427733,,,,,,,1.167408,0.461715,0.509738,0.490693,0.597654,1.088544,0.427733,0.427733,0.427733,0.427733,0.384869,0.173161,0.187568,0.181854,0.213942,0.361209,0.162966,0.162966,0.085333,0.085333,9.892667,25.01277,22.656297,23.535641,19.323525,10.609384,27,27,27,27,,,,,,,,,,,2580,2580,0.427733,0.427733,0.427733,0.427733,0.427733,0.427733,0.427733,0.427733,0.162966,0.162966,27,27,, +1033,0,0.539552,1,1,0,2,5,,4,3,Willow,Rd,629505,1.962,2.501,0,11.561838,5.8,4.5,1.199005,1.199005,1.199005,1.199005,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.360786,1.201984,1.199005,1.199005,1.360786,1.201984,1.20319,1.203536,1.199005,1.199005,1.20319,1.203536,1.213326,1.314993,1.199005,1.199005,1.213326,1.314993,1.199005,1.199005,1.199005,1.199005,1.199005,1.199005,,,,,,,1.360786,1.201984,1.20319,1.203536,1.213326,1.314993,1.199005,1.199005,1.199005,1.199005,0.505355,0.457715,0.458076,0.45818,0.461117,0.491617,0.456821,0.456821,0.239202,0.239202,23.790037,26.933084,26.906097,26.898353,26.681324,24.618501,27,27,27,27,,,,,,,,,,,2580,2580,1.199005,1.199005,1.199005,1.199005,1.199005,1.199005,1.199005,1.199005,0.456821,0.456821,27,27,, +1138,0,1.172071,1,1,0,2,4,,4,3,Glengary,Rd,630108,2.294,3.466,0,25.115799,4.5,4.5,1.850638,1.850638,1.850638,1.850638,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.001728,1.89556,1.850638,1.850638,3.001728,1.89556,1.899895,1.884014,1.850638,1.850638,1.899895,1.884014,2.107202,2.862102,1.850638,1.850638,2.107202,2.862102,1.850638,1.850638,1.850638,1.850638,1.850638,1.850638,,,,,,,3.001728,1.89556,1.899895,1.884014,2.107202,2.862102,1.850638,1.850638,1.850638,1.850638,1.111491,0.779641,0.780941,0.776177,0.843133,1.069603,0.766164,0.766164,0.406523,0.406523,23.427916,37.099456,37.0148,37.326821,33.373279,24.570834,38,38,38,38,,,,,,,,,,,3096,3096,1.850638,1.850638,1.850638,1.850638,1.850638,1.850638,1.850638,1.850638,0.766164,0.766164,38,38,, +1188,0,0.187961,1,1,1,2,3,,4,3,Union Lake,Rd,629405,1.263,1.451,0,4.027729,3.7,5,0.281941,0.281941,0.281941,0.281941,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.559985,1.674457,0.281941,0.281941,0.559985,1.674457,0.44521,0.473931,0.281941,0.281941,0.44521,0.473931,1.648073,0.83926,0.281941,0.281941,1.648073,0.83926,0.281941,0.281941,0.281941,0.281941,0.281941,0.281941,,,,,,,0.559985,1.674457,0.44521,0.473931,1.648073,0.83926,0.281941,0.281941,0.281941,0.281941,0.201828,0.53617,0.167396,0.176012,0.528255,0.285611,0.118415,0.118415,0.062967,0.062967,20.139182,6.735103,25.331032,23.795963,6.842925,13.437592,40,40,40,40,,,,,,,,,,,4162,4162,0.281941,0.281941,0.281941,0.281941,0.281941,0.281941,0.281941,0.281941,0.118415,0.118415,40,40,, +1277,0,0.16335,1,1,0,2,4,,4,3,Sleeth,Rd,629507,3.734,3.897,0,3.500347,4.5,4.5,0.25792,0.25792,0.25792,0.25792,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.536941,0.429833,0.25792,0.25792,0.536941,0.429833,0.287569,0.284094,0.25792,0.25792,0.287569,0.284094,0.593324,0.62665,0.25792,0.25792,0.593324,0.62665,0.25792,0.25792,0.25792,0.25792,0.25792,0.25792,,,,,,,0.536941,0.429833,0.287569,0.284094,0.593324,0.62665,0.25792,0.25792,0.25792,0.25792,0.190485,0.158353,0.115674,0.114631,0.2074,0.217398,0.106779,0.106779,0.056656,0.056656,18.253331,22.80183,34.082194,34.49905,16.518741,15.640268,38,38,38,38,,,,,,,,,,,3096,3096,0.25792,0.25792,0.25792,0.25792,0.25792,0.25792,0.25792,0.25792,0.106779,0.106779,38,38,, +1334,0,0.360847,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,0.752,1.113,0,7.732446,4.5,4.5,0.569759,0.569759,0.569759,0.569759,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.97567,0.877659,0.569759,0.569759,0.97567,0.877659,0.697445,0.695761,0.569759,0.569759,0.697445,0.695761,1.094808,1.221916,0.569759,0.569759,1.094808,1.221916,0.569759,0.569759,0.569759,0.569759,0.569759,0.569759,,,,,,,0.97567,0.877659,0.697445,0.695761,1.094808,1.221916,0.569759,0.569759,0.569759,0.569759,0.357653,0.32825,0.274186,0.273681,0.393395,0.431527,0.23588,0.23588,0.125157,0.125157,22.190756,24.668849,31.04309,31.118216,19.77593,17.718769,38,38,38,38,,,,,,,,,,,3096,3096,0.569759,0.569759,0.569759,0.569759,0.569759,0.569759,0.569759,0.569759,0.23588,0.23588,38,38,, +1375,0,0.670391,1,1,0,2,4,,4,3,Hiller,Rd,632709,0.502,1.173,0,14.365521,4.5,4.5,1.058512,1.058512,1.058512,1.058512,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.25087,3.001984,1.058512,1.058512,1.25087,3.001984,1.327036,1.364064,1.058512,1.058512,1.327036,1.364064,2.837289,1.588849,1.058512,1.058512,2.837289,1.588849,1.058512,1.058512,1.058512,1.058512,1.058512,1.058512,,,,,,,1.25087,3.001984,1.327036,1.364064,2.837289,1.588849,1.058512,1.058512,1.058512,1.058512,0.495931,1.021265,0.518781,0.52989,0.971857,0.597325,0.438224,0.438224,0.23252,0.23252,32.156395,13.39896,30.310752,29.487959,14.176724,25.3161,38,38,38,38,,,,,,,,,,,3096,3096,1.058512,1.058512,1.058512,1.058512,1.058512,1.058512,1.058512,1.058512,0.438224,0.438224,38,38,, +37667,0,0.953051,1,1,0,2,5,,4,3,Oxbow Lake,Rd,630010,0.06,1.013,0,20.422521,5.8,4.5,2.117891,2.117891,2.117891,2.117891,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.900734,3.497861,2.117891,2.117891,2.900734,3.497861,2.32777,2.270997,2.117891,2.117891,2.32777,2.270997,4.058353,3.279703,2.117891,2.117891,4.058353,3.279703,2.117891,2.117891,2.117891,2.117891,2.117891,2.117891,,,,,,,2.900734,3.497861,2.32777,2.270997,4.058353,3.279703,2.117891,2.117891,2.117891,2.117891,1.041769,1.220907,0.86988,0.852848,1.389055,1.15546,0.806916,0.806916,0.422519,0.422519,19.713308,16.348009,24.565597,25.179719,14.090212,17.435436,27,27,27,27,,,,,,,,,,,2580,2580,2.117891,2.117891,2.117891,2.117891,2.117891,2.117891,2.117891,2.117891,0.806916,0.806916,27,27,, +1981,0,0.326537,1,1,0,2,5,,4,3,Carroll Lake,Rd,629303,0.171,0.498,0,6.997227,5.8,4.5,0.725638,0.725638,0.725638,0.725638,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.105546,2.740578,0.725638,0.725638,1.105546,2.740578,1.050571,1.075711,0.725638,0.725638,1.050571,1.075711,2.435402,1.414391,0.725638,0.725638,2.435402,1.414391,0.725638,0.725638,0.725638,0.725638,0.725638,0.725638,,,,,,,1.105546,2.740578,1.050571,1.075711,2.435402,1.414391,0.725638,0.725638,0.725638,0.725638,0.39044,0.88095,0.373948,0.38149,0.789397,0.483094,0.276468,0.276468,0.144765,0.144765,17.721779,7.148944,18.649124,18.213292,8.044765,13.852064,27,27,27,27,,,,,,,,,,,2580,2580,0.725638,0.725638,0.725638,0.725638,0.725638,0.725638,0.725638,0.725638,0.276468,0.276468,27,27,, +2042,0,0.784078,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,0.549,1.333,0,16.801664,4.5,4.5,1.238017,1.238017,1.238017,1.238017,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.080997,1.30334,1.238017,1.238017,2.080997,1.30334,1.276271,1.265424,1.238017,1.238017,1.276271,1.265424,1.612839,2.090703,1.238017,1.238017,1.612839,2.090703,1.238017,1.238017,1.238017,1.238017,1.238017,1.238017,,,,,,,2.080997,1.30334,1.276271,1.265424,1.612839,2.090703,1.238017,1.238017,1.238017,1.238017,0.765433,0.532136,0.524015,0.520761,0.624986,0.768345,0.512539,0.512539,0.271951,0.271951,22.606789,36.09547,36.86102,37.176997,29.168842,22.501832,38,38,38,38,,,,,,,,,,,3096,3096,1.238017,1.238017,1.238017,1.238017,1.238017,1.238017,1.238017,1.238017,0.512539,0.512539,38,38,, +2096,0,0.741714,1,1,0,2,5,,4,3,Ladd,Rd,629608,0.537,1.278,0,15.893878,5.8,4.5,1.648254,1.648254,1.648254,1.648254,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.651219,3.18599,1.648254,1.648254,1.651219,3.18599,1.652435,1.659295,1.648254,1.648254,1.652435,1.659295,2.830482,1.772008,1.648254,1.648254,2.830482,1.772008,1.648254,1.648254,1.648254,1.648254,1.648254,1.648254,,,,,,,1.651219,3.18599,1.652435,1.659295,2.830482,1.772008,1.648254,1.648254,1.648254,1.648254,0.628874,1.089306,0.629239,0.631297,0.982653,0.665111,0.627985,0.627985,0.328827,0.328827,26.951523,13.968298,26.93168,26.820345,15.722713,25.114372,27,27,27,27,,,,,,,,,,,2580,2580,1.648254,1.648254,1.648254,1.648254,1.648254,1.648254,1.648254,1.648254,0.627985,0.627985,27,27,, +2184,0,1.385346,2,2,1,2,3,,4,3,Highland,Rd,648906,9.938,11.323,0,29.685992,3.7,5,2.078019,2.078019,2.078019,2.078019,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,3.432775,2.500664,2.078019,2.078019,3.432775,2.500664,2.19989,2.168089,2.078019,2.078019,2.19989,2.168089,2.95673,3.169866,2.078019,2.078019,2.95673,3.169866,2.078019,2.078019,2.078019,2.078019,2.078019,2.078019,,,,,,,3.432775,2.500664,2.19989,2.168089,2.95673,3.169866,2.078019,2.078019,2.078019,2.078019,1.279195,0.999561,0.909329,0.899789,1.136381,1.200322,0.872768,0.872768,0.464091,0.464091,24.213876,33.239484,37.784067,38.338268,28.112403,26.222173,40,40,40,40,,,,,,,,,,,7946,7946,2.078019,2.078019,2.078019,2.078019,2.078019,2.078019,2.078019,2.078019,0.872768,0.872768,40,40,, +2439,0,0.49601,1,1,0,2,4,,3,3,West Maple,Rd,657406,6.93,7.426,0,10.628786,6,4.5,0.901836,0.901836,0.901836,0.901836,33,33,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.945964,1.599436,0.901836,0.901836,2.945964,1.599436,1.471368,1.414372,0.901836,0.901836,1.471368,1.414372,2.224715,2.995322,0.901836,0.901836,2.224715,2.995322,0.901836,0.901836,0.901836,0.901836,0.901836,0.901836,,,,,,,2.945964,1.599436,1.471368,1.414372,2.224715,2.995322,0.901836,0.901836,0.901836,0.901836,0.973071,0.569113,0.530692,0.513594,0.756696,0.987878,0.359833,0.359833,0.189837,0.189837,10.102162,18.606933,20.226489,21.041562,13.377263,9.935693,33,33,33,33,,,,,,,,,,,2580,2580,0.901836,0.901836,0.901836,0.901836,0.901836,0.901836,0.901836,0.901836,0.359833,0.359833,33,33,, +2477,0,1.303272,1,1,0,2,5,,4,3,Teggerdine,Rd,650405,0,1.303,0,27.927255,5.8,4.5,2.89616,2.89616,2.89616,2.89616,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.964598,3.112853,2.89616,2.89616,2.964598,3.112853,2.909615,2.912685,2.89616,2.89616,2.909615,2.912685,3.124106,3.079882,2.89616,2.89616,3.124106,3.079882,2.89616,2.89616,2.89616,2.89616,2.89616,2.89616,,,,,,,2.964598,3.112853,2.909615,2.912685,3.124106,3.079882,2.89616,2.89616,2.89616,2.89616,1.123968,1.168445,1.107473,1.108394,1.171821,1.158554,1.103437,1.103437,0.577784,0.577784,26.376701,25.120462,26.875142,26.846816,25.029984,25.389386,27,27,27,27,,,,,,,,,,,2580,2580,2.89616,2.89616,2.89616,2.89616,2.89616,2.89616,2.89616,2.89616,1.103437,1.103437,27,27,, +2695,-1,1.416117,0,3,0,1,1,,4,3,W I 96,,657304,8.639,10.055,0,,0.8,7.5,,1.213814,,1.213814,,70,,66000,,14982,,33000,,21292,,22704,,22678,,1.454157,,1.213814,,1.454157,,1.269705,,1.213814,,1.269705,,2.8056,,1.213814,,2.8056,,1.213814,,1.213814,,1.213814,,,,,,,,1.454157,,1.269705,,2.8056,,1.213814,,1.213814,,0.691148,,0.635813,,1.096581,,0.619045,,0.337845,,58.430428,,66.918687,,30.284791,,70,,70,,,,,,,,,,,,22704,,1.213814,,1.213814,,1.213814,,1.213814,,0.619045,,70,, +2771,0,1.252545,1,1,0,2,4,,5,3,White Lake,Rd,649303,4.871,6.124,0,26.840253,3,4,1.878818,1.878818,1.878818,1.878818,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,4.287224,2.299321,1.878818,1.878818,4.287224,2.299321,2.083016,2.038531,1.878818,1.878818,2.083016,2.038531,2.754293,3.655638,1.878818,1.878818,2.754293,3.655638,1.878818,1.878818,1.878818,1.878818,1.878818,1.878818,,,,,,,4.287224,2.299321,2.083016,2.038531,2.754293,3.655638,1.878818,1.878818,1.878818,1.878818,1.511625,0.915254,0.850363,0.837017,1.051746,1.32215,0.789103,0.789103,0.419603,0.419603,17.529458,32.684739,36.078788,36.866118,27.285663,20.558028,40,40,40,40,,,,,,,,,,,3096,3096,1.878818,1.878818,1.878818,1.878818,1.878818,1.878818,1.878818,1.878818,0.789103,0.789103,40,40,, +2787,0,1.0784,1,1,0,2,4,,5,3,Milford,Rd,660504,0.356,1.434,0,23.108574,3,4,1.6176,1.6176,1.6176,1.6176,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.16727,3.738329,1.6176,1.6176,2.16727,3.738329,2.014662,2.101002,1.6176,1.6176,2.014662,2.101002,3.849609,2.871346,1.6176,1.6176,3.849609,2.871346,1.6176,1.6176,1.6176,1.6176,1.6176,1.6176,,,,,,,2.16727,3.738329,2.014662,2.101002,3.849609,2.871346,1.6176,1.6176,1.6176,1.6176,0.844293,1.315611,0.798511,0.824413,1.348995,1.055516,0.679392,0.679392,0.361264,0.361264,29.85507,17.308271,32.116551,30.796738,16.807945,22.53438,40,40,40,40,,,,,,,,,,,3096,3096,1.6176,1.6176,1.6176,1.6176,1.6176,1.6176,1.6176,1.6176,0.679392,0.679392,40,40,, +2877,1,0.765205,3,0,0,1,1,,4,3,E I 96,,657303,7.931,8.696,0,,0.8,7.5,0.65589,,0.65589,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.935639,,0.65589,,0.935639,,0.666914,,0.65589,,0.666914,,0.709238,,0.65589,,0.709238,,0.65589,,0.65589,,0.65589,,,,,,,,0.935639,,0.666914,,0.709238,,0.65589,,0.65589,,0.418429,,0.337811,,0.350508,,0.334504,,0.182556,,49.070528,,68.842961,,64.734721,,70,,70,,,,,,,,,,,,22704,,0.65589,,0.65589,,0.65589,,0.65589,,0.334504,,70,,, +3009,0,1.232689,1,1,0,2,3,,4,3,Pontiac,Trl,657404,5.187,6.419,0,26.414775,3.7,5,1.849034,1.849034,1.849034,1.849034,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,2.338813,2.020496,1.849034,1.849034,2.338813,2.020496,1.907237,1.894649,1.849034,1.849034,1.907237,1.894649,2.264711,2.325081,1.849034,1.849034,2.264711,2.325081,1.849034,1.849034,1.849034,1.849034,1.849034,1.849034,,,,,,,2.338813,2.020496,1.907237,1.894649,2.264711,2.325081,1.849034,1.849034,1.849034,1.849034,0.923528,0.828033,0.794055,0.790279,0.901297,0.919408,0.776594,0.776594,0.412951,0.412951,31.623467,36.605553,38.779323,39.036985,32.658198,31.810239,40,40,40,40,,,,,,,,,,,3784,3784,1.849034,1.849034,1.849034,1.849034,1.849034,1.849034,1.849034,1.849034,0.776594,0.776594,40,40,, +3086,0,0.998559,1,1,0,2,5,,5,3,Duck Lake,Rd,661010,0,0.998,0,21.397699,3.7,5,1.997119,1.997119,1.997119,1.997119,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.37463,3.304201,1.997119,1.997119,2.37463,3.304201,2.009767,2.026163,1.997119,1.997119,2.009767,2.026163,3.125724,2.700305,1.997119,1.997119,3.125724,2.700305,1.997119,1.997119,1.997119,1.997119,1.997119,1.997119,,,,,,,2.37463,3.304201,2.009767,2.026163,3.125724,2.700305,1.997119,1.997119,1.997119,1.997119,0.89213,1.171001,0.782671,0.78759,1.117458,0.989832,0.778876,0.778876,0.409409,0.409409,25.230689,18.132538,29.811197,29.569956,19.167895,22.187699,30,30,30,30,,,,,,,,,,,2580,2580,1.997119,1.997119,1.997119,1.997119,1.997119,1.997119,1.997119,1.997119,0.778876,0.778876,30,30,, +3204,0,0.311282,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,1.025,1.336,0,6.670328,3.7,5,0.466923,0.466923,0.466923,0.466923,40,40,11000,11000,2497,2497,5500,5500,3549,3549,3784,3784,3780,3780,1.006073,0.482392,0.466923,0.466923,1.006073,0.482392,0.58507,0.518461,0.466923,0.466923,0.58507,0.518461,0.640215,0.953198,0.466923,0.466923,0.640215,0.953198,0.466923,0.466923,0.466923,0.466923,0.466923,0.466923,,,,,,,1.006073,0.482392,0.58507,0.518461,0.640215,0.953198,0.466923,0.466923,0.466923,0.466923,0.357853,0.200748,0.231552,0.211569,0.248095,0.34199,0.196108,0.196108,0.104279,0.104279,18.564173,38.717317,31.922545,36.023764,29.17289,19.593949,40,40,40,40,,,,,,,,,,,3784,3784,0.466923,0.466923,0.466923,0.466923,0.466923,0.466923,0.466923,0.466923,0.196108,0.196108,40,40,, +3868,0,0.646257,1,1,0,2,4,,4,3,Park,Dr,705704,2.327,2.973,0,13.848361,4.5,4.5,1.020406,1.020406,1.020406,1.020406,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.345343,1.854496,1.020406,1.020406,1.345343,1.854496,1.226786,1.281304,1.020406,1.020406,1.226786,1.281304,2.081016,1.791809,1.020406,1.020406,2.081016,1.791809,1.020406,1.020406,1.020406,1.020406,1.020406,1.020406,,,,,,,1.345343,1.854496,1.226786,1.281304,2.081016,1.791809,1.020406,1.020406,1.020406,1.020406,0.519929,0.672675,0.484362,0.500717,0.740631,0.653869,0.422448,0.422448,0.224149,0.224149,28.821946,20.908873,31.607323,30.262468,18.632927,21.640367,38,38,38,38,,,,,,,,,,,3096,3096,1.020406,1.020406,1.020406,1.020406,1.020406,1.020406,1.020406,1.020406,0.422448,0.422448,38,38,, +4886,0,0.183436,1,1,0,2,7,,4,3,Keith,Rd,709003,0.319,0.503,0,3.930765,6.55,4.5,0.440246,0.440246,0.440246,0.440246,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,0.5649,1.67419,0.440246,0.440246,0.5649,1.67419,0.543445,0.562948,0.440246,0.440246,0.543445,0.562948,1.738838,0.836577,0.440246,0.440246,1.738838,0.836577,0.440246,0.440246,0.440246,0.440246,0.440246,0.440246,,,,,,,0.5649,1.67419,0.543445,0.562948,1.738838,0.836577,0.440246,0.440246,0.440246,0.440246,0.202489,0.535275,0.196052,0.201903,0.55467,0.283991,0.165092,0.165092,0.086215,0.086215,19.483334,6.574012,20.252543,19.550919,6.329596,13.156166,25,25,25,25,,,,,,,,,,,2064,2064,0.440246,0.440246,0.440246,0.440246,0.440246,0.440246,0.440246,0.440246,0.165092,0.165092,25,25,, +19803,0,0.44979,2,2,1,2,4,,4,3,Grand River,Ave,4104142,10.289,10.739,0,9.638361,4.5,4.5,0.710195,0.710195,0.710195,0.710195,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,1.1889,0.71556,0.710195,0.710195,1.1889,0.71556,0.720813,0.713057,0.710195,0.710195,0.720813,0.713057,0.83968,0.949457,0.710195,0.710195,0.83968,0.949457,0.710195,0.710195,0.710195,0.710195,0.710195,0.710195,,,,,,,1.1889,0.71556,0.720813,0.713057,0.83968,0.949457,0.710195,0.710195,0.710195,0.710195,0.437632,0.29563,0.297206,0.294879,0.332866,0.365799,0.294021,0.294021,0.156006,0.156006,22.699478,37.715067,37.440228,37.847478,32.140128,28.424037,38,38,38,38,,,,,,,,,,,6502,6502,0.710195,0.710195,0.710195,0.710195,0.710195,0.710195,0.710195,0.710195,0.294021,0.294021,38,38,, +19838,0,0.504656,1,1,0,2,4,,4,3,Commerce,Rd,4104140,9.686,10.19,0,10.814065,4.5,4.5,0.796826,0.796826,0.796826,0.796826,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.161682,1.074331,0.796826,0.796826,1.161682,1.074331,1.099777,1.025044,0.796826,0.796826,1.099777,1.025044,1.086521,1.147097,0.796826,0.796826,1.086521,1.147097,0.796826,0.796826,0.796826,0.796826,0.796826,0.796826,,,,,,,1.161682,1.074331,1.099777,1.025044,1.086521,1.147097,0.796826,0.796826,0.796826,0.796826,0.439343,0.413138,0.420771,0.398351,0.416794,0.434967,0.329886,0.329886,0.175036,0.175036,26.06513,28.184395,27.532295,29.539589,27.868201,26.396523,38,38,38,38,,,,,,,,,,,3096,3096,0.796826,0.796826,0.796826,0.796826,0.796826,0.796826,0.796826,0.796826,0.329886,0.329886,38,38,, +25713,0,0.829942,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.784472,0.15,4,3.319768,3.319768,3.319768,3.319768,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,,,,,,,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,1.14532,1.14532,1.14532,1.14532,1.14532,1.14532,1.14532,1.14532,0.589259,0.589259,15,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,3.319768,1.14532,1.14532,15,15,, +25719,0,0.217961,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,4.670592,0.15,4,0.871844,0.871844,0.871844,0.871844,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,,,,,,,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.300786,0.300786,0.300786,0.300786,0.300786,0.300786,0.300786,0.300786,0.154752,0.154752,14.999999,15,15,15,15,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.871844,0.300786,0.300786,15,15,, +25720,0,0.737997,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.814229,0.15,4,2.951989,2.951989,2.951989,2.951989,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.95199,2.95199,2.951989,2.951989,2.95199,2.95199,2.951989,2.951989,2.951989,2.951989,2.951989,2.951989,2.95199,2.95199,2.951989,2.951989,2.95199,2.95199,2.951989,2.951989,2.951989,2.951989,2.951989,2.951989,,,,,,,2.95199,2.95199,2.951989,2.951989,2.95199,2.95199,2.951989,2.951989,2.951989,2.951989,1.018436,1.018436,1.018436,1.018436,1.018436,1.018436,1.018436,1.018436,0.523978,0.523978,14.999999,14.999999,15,15,14.999998,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.951989,2.951989,2.951989,2.951989,2.951989,2.951989,2.951989,2.951989,1.018436,1.018436,15,15,, +25722,0,0.329719,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.065408,0.15,4,1.318876,1.318876,1.318876,1.318876,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,,,,,,,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,0.455012,0.455012,0.455012,0.455012,0.455012,0.455012,0.455012,0.455012,0.234101,0.234101,15,14.999996,14.999997,14.999997,14.999997,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,1.318876,0.455012,0.455012,15,15,, +25724,0,1.356825,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,29.074832,0.15,4,5.427302,5.427302,5.427302,5.427302,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,,,,,,,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,1.872419,1.872419,1.872419,1.872419,1.872419,1.872419,1.872419,1.872419,0.963346,0.963346,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,5.427302,1.872419,1.872419,15,15,, +25737,0,0.51249,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.981923,0.15,4,2.049959,2.049959,2.049959,2.049959,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,,,,,,,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,0.707236,0.707236,0.707236,0.707236,0.707236,0.707236,0.707236,0.707236,0.363868,0.363868,14.999997,15,14.999999,15,14.999999,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,2.049959,0.707236,0.707236,15,15,, +25738,0,0.866686,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.57185,0.15,4,3.466745,3.466745,3.466745,3.466745,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,,,,,,,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,1.196027,1.196027,1.196027,1.196027,1.196027,1.196027,1.196027,1.196027,0.615347,0.615347,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,3.466745,1.196027,1.196027,15,15,, +26880,0,0.512616,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.984624,0.15,4,2.050463,2.050463,2.050463,2.050463,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,,,,,,,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,0.70741,0.70741,0.70741,0.70741,0.70741,0.70741,0.70741,0.70741,0.363957,0.363957,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,2.050463,0.70741,0.70741,15,15,, +26954,0,1.968445,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,42.180966,0.15,4,7.87378,7.87378,7.87378,7.87378,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,,,,,,,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,2.716454,2.716454,2.716454,2.716454,2.716454,2.716454,2.716454,2.716454,1.397596,1.397596,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,7.87378,2.716454,2.716454,15,15,, +27107,0,1.401789,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,30.038327,0.15,4,5.607154,5.607154,5.607154,5.607154,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,,,,,,,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,1.934468,1.934468,1.934468,1.934468,1.934468,1.934468,1.934468,1.934468,0.99527,0.99527,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,5.607154,1.934468,1.934468,15,15,, +27111,0,0.426729,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.144197,0.15,4,1.706917,1.706917,1.706917,1.706917,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,,,,,,,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,0.588886,0.588886,0.588886,0.588886,0.588886,0.588886,0.588886,0.588886,0.302978,0.302978,15,14.999997,15,14.999999,14.999995,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,1.706917,0.588886,0.588886,15,15,, +27119,0,0.650182,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.932461,0.15,4,2.600726,2.600726,2.600726,2.600726,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,,,,,,,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,0.897251,0.897251,0.897251,0.897251,0.897251,0.897251,0.897251,0.897251,0.461629,0.461629,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,2.600726,0.897251,0.897251,15,15,, +27120,0,0.576586,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.355417,0.15,4,2.306345,2.306345,2.306345,2.306345,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,,,,,,,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,0.795689,0.795689,0.795689,0.795689,0.795689,0.795689,0.795689,0.795689,0.409376,0.409376,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,2.306345,0.795689,0.795689,15,15,, +27123,0,0.64146,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.745563,0.15,4,2.565838,2.565838,2.565838,2.565838,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,,,,,,,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,0.885214,0.885214,0.885214,0.885214,0.885214,0.885214,0.885214,0.885214,0.455436,0.455436,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,2.565838,0.885214,0.885214,15,15,, +27137,0,0.68766,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.735571,0.15,4,2.75064,2.75064,2.75064,2.75064,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,,,,,,,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,0.948971,0.948971,0.948971,0.948971,0.948971,0.948971,0.948971,0.948971,0.488239,0.488239,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,2.75064,0.948971,0.948971,15,15,, +27140,0,0.627794,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.452733,0.15,4,2.511177,2.511177,2.511177,2.511177,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.511178,2.511177,2.511177,2.511177,2.511178,2.511177,2.511177,2.511177,2.511177,2.511177,2.511177,2.511177,2.511177,2.511178,2.511177,2.511177,2.511177,2.511178,2.511177,2.511177,2.511177,2.511177,2.511177,2.511177,,,,,,,2.511178,2.511177,2.511177,2.511177,2.511177,2.511178,2.511177,2.511177,2.511177,2.511177,0.866356,0.866356,0.866356,0.866356,0.866356,0.866356,0.866356,0.866356,0.445734,0.445734,14.999995,14.999999,14.999998,14.999998,14.999997,14.999992,15,15,15,15,,,,,,,,,,,34400,34400,2.511177,2.511177,2.511177,2.511177,2.511177,2.511177,2.511177,2.511177,0.866356,0.866356,15,15,, +27195,0,0.866067,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.558586,0.15,4,3.464269,3.464269,3.464269,3.464269,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,,,,,,,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,1.195173,1.195173,1.195173,1.195173,1.195173,1.195173,1.195173,1.195173,0.614908,0.614908,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,3.464269,1.195173,1.195173,15,15,, +30230,0,0.828249,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.748192,0.15,4,3.312996,3.312996,3.312996,3.312996,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.312998,3.312996,3.312996,3.312996,3.312998,3.312996,3.312996,3.312996,3.312996,3.312996,3.312996,3.312996,3.312997,3.312999,3.312996,3.312996,3.312997,3.312999,3.312996,3.312996,3.312996,3.312996,3.312996,3.312996,,,,,,,3.312998,3.312996,3.312996,3.312996,3.312997,3.312999,3.312996,3.312996,3.312996,3.312996,1.142984,1.142984,1.142984,1.142984,1.142984,1.142985,1.142984,1.142984,0.588057,0.588057,14.99999,14.999999,15,15,14.999995,14.999986,15,15,15,15,,,,,,,,,,,34400,34400,3.312996,3.312996,3.312996,3.312996,3.312996,3.312996,3.312996,3.312996,1.142984,1.142984,15,15,, +730,0,0.976402,1,1,0,2,5,,4,3,Sleeth,Rd,629507,0.024,1,0,20.922902,5.8,4.5,2.169782,2.169782,2.169782,2.169782,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,2.306435,2.272146,2.169782,2.169782,2.306435,2.272146,2.173428,2.172652,2.169782,2.169782,2.173428,2.172652,2.37837,2.39971,2.169782,2.169782,2.37837,2.39971,2.169782,2.169782,2.169782,2.169782,2.169782,2.169782,,,,,,,2.306435,2.272146,2.173428,2.172652,2.37837,2.39971,2.169782,2.169782,2.169782,2.169782,0.867683,0.857396,0.827781,0.827548,0.889263,0.895665,0.826687,0.826687,0.432872,0.432872,25.400298,25.783614,26.954707,26.964342,24.632049,24.413,27,27,27,27,,,,,,,,,,,2580,2580,2.169782,2.169782,2.169782,2.169782,2.169782,2.169782,2.169782,2.169782,0.826687,0.826687,27,27,, +821,0,0.397614,1,1,0,2,4,,4,3,Benstein,Rd,629509,0,0.398,0,8.520301,4.5,4.5,0.627812,0.627812,0.627812,0.627812,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.016272,2.386056,0.627812,0.627812,1.016272,2.386056,0.850442,0.893447,0.627812,0.627812,0.850442,0.893447,2.220897,1.404414,0.627812,0.627812,2.220897,1.404414,0.627812,0.627812,0.627812,0.627812,0.627812,0.627812,,,,,,,1.016272,2.386056,0.850442,0.893447,2.220897,1.404414,0.627812,0.627812,0.627812,0.627812,0.376452,0.787387,0.326703,0.339605,0.73784,0.492895,0.259914,0.259914,0.137909,0.137909,23.474852,9.998441,28.052281,26.702021,10.741985,16.987042,38,38,38,38,,,,,,,,,,,3096,3096,0.627812,0.627812,0.627812,0.627812,0.627812,0.627812,0.627812,0.627812,0.259914,0.259914,38,38,, +1246,0,0.502206,1,1,0,2,4,,4,3,Wixom,Rd,631910,0.499,1.001,0,10.761558,4.5,4.5,0.792957,0.792957,0.792957,0.792957,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.570313,6.026472,0.792957,0.792957,1.570313,6.026472,1.37647,1.632498,0.792957,0.792957,1.37647,1.632498,5.547995,2.678527,0.792957,0.792957,5.547995,2.678527,0.792957,0.792957,0.792957,0.792957,0.792957,0.792957,,,,,,,1.570313,6.026472,1.37647,1.632498,5.547995,2.678527,0.792957,0.792957,0.792957,0.792957,0.561491,1.898339,0.503338,0.580146,1.754796,0.893955,0.328284,0.328284,0.174186,0.174186,19.188756,5,21.891037,18.457827,5.431216,11.249602,38,38,38,38,,,,,,,,,,,3096,3096,0.792957,0.792957,0.792957,0.792957,0.792957,0.792957,0.792957,0.792957,0.328284,0.328284,38,38,, +1913,0,0.974422,1,1,0,2,4,,5,3,Wixom,Rd,631910,2.557,3.531,0,20.880476,3,4,1.461633,1.461633,1.461633,1.461633,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.825044,2.285491,1.461633,1.461633,1.825044,2.285491,1.602239,1.670888,1.461633,1.461633,1.602239,1.670888,2.070286,2.096994,1.461633,1.461633,2.070286,2.096994,1.461633,1.461633,1.461633,1.461633,1.461633,1.461633,,,,,,,1.825044,2.285491,1.602239,1.670888,2.070286,2.096994,1.461633,1.461633,1.461633,1.461633,0.722909,0.861043,0.656068,0.676662,0.796482,0.804494,0.613886,0.613886,0.326431,0.326431,32.035021,25.58108,36.48978,34.990574,28.240227,27.880549,40,40,40,40,,,,,,,,,,,3096,3096,1.461633,1.461633,1.461633,1.461633,1.461633,1.461633,1.461633,1.461633,0.613886,0.613886,40,40,, +2040,0,0.390107,1,1,0,2,4,,4,3,Beck,Rd,629604,0.288,0.677,0,8.359429,4.5,4.5,0.615958,0.615958,0.615958,0.615958,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.737811,1.427933,0.615958,0.615958,0.737811,1.427933,0.686117,0.732942,0.615958,0.615958,0.686117,0.732942,1.424134,1.072422,0.615958,0.615958,1.424134,1.072422,0.615958,0.615958,0.615958,0.615958,0.615958,0.615958,,,,,,,0.737811,1.427933,0.686117,0.732942,1.424134,1.072422,0.615958,0.615958,0.615958,0.615958,0.291563,0.498599,0.276054,0.290102,0.497459,0.391946,0.255007,0.255007,0.135305,0.135305,31.724116,16.391805,34.114291,31.934879,16.435535,21.825738,38,38,38,38,,,,,,,,,,,3096,3096,0.615958,0.615958,0.615958,0.615958,0.615958,0.615958,0.615958,0.615958,0.255007,0.255007,38,38,, +2634,0,0.569091,1,1,0,2,4,,4,3,West Maple,Rd,657406,5.084,5.653,0,12.194806,4.5,4.5,0.898565,0.898565,0.898565,0.898565,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.914921,0.913065,0.898565,0.898565,0.914921,0.913065,0.90118,0.899817,0.898565,0.898565,0.90118,0.899817,0.930619,0.922012,0.898565,0.898565,0.930619,0.922012,0.898565,0.898565,0.898565,0.898565,0.898565,0.898565,,,,,,,0.914921,0.913065,0.90118,0.899817,0.930619,0.922012,0.898565,0.898565,0.898565,0.898565,0.376913,0.376356,0.37279,0.372381,0.381622,0.37904,0.372006,0.372006,0.197385,0.197385,37.320673,37.396507,37.889723,37.947114,36.69113,37.033649,38,38,38,38,,,,,,,,,,,3096,3096,0.898565,0.898565,0.898565,0.898565,0.898565,0.898565,0.898565,0.898565,0.372006,0.372006,38,38,, +2649,1,3.803202,3,0,0,1,1,,4,3,E I 96,,657303,3.153,6.955,0,,0.8,7.5,3.259888,,3.259888,,70,,66000,,14982,,33000,,21292,,22704,,22678,,6.664989,,3.259888,,6.664989,,3.298456,,3.259888,,3.298456,,3.479689,,3.259888,,3.479689,,3.259888,,3.259888,,3.259888,,,,,,,,6.664989,,3.298456,,3.479689,,3.259888,,3.259888,,2.684073,,1.674113,,1.728483,,1.662543,,0.907335,,34.237433,,69.181495,,65.578305,,70,,70,,,,,,,,,,,,22704,,3.259888,,3.259888,,3.259888,,3.259888,,1.662543,,70,,, +2965,0,0.959447,1,1,0,2,4,,5,3,Milford,Rd,656804,4.189,5.148,0,20.559569,3,4,1.43917,1.43917,1.43917,1.43917,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.755036,4.396256,1.43917,1.43917,2.755036,4.396256,2.090024,2.092669,1.43917,1.43917,2.090024,2.092669,4.603429,3.579236,1.43917,1.43917,4.603429,3.579236,1.43917,1.43917,1.43917,1.43917,1.43917,1.43917,,,,,,,2.755036,4.396256,2.090024,2.092669,4.603429,3.579236,1.43917,1.43917,1.43917,1.43917,0.999211,1.491577,0.799708,0.800501,1.553729,1.246471,0.604451,0.604451,0.321415,0.321415,20.895113,13.094504,27.543602,27.508795,12.505199,16.083542,40,40,40,40,,,,,,,,,,,3096,3096,1.43917,1.43917,1.43917,1.43917,1.43917,1.43917,1.43917,1.43917,0.604451,0.604451,40,40,, +3124,0,0.998138,1,1,0,2,5,GRV,5,3,Hill,Rd,657608,0,0.998,0,21.388661,5.55,5,2.994413,2.994413,2.994413,2.994413,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,3.087482,4.241321,2.994413,2.994413,3.087482,4.241321,3.002779,3.001327,2.994413,2.994413,3.002779,3.001327,4.291456,3.39665,2.994413,2.994413,4.291456,3.39665,2.994413,2.994413,2.994413,2.994413,2.994413,2.994413,,,,,,,3.087482,4.241321,3.002779,3.001327,4.291456,3.39665,2.994413,2.994413,2.994413,2.994413,1.105909,1.452061,1.080498,1.080063,1.467102,1.19866,1.077989,1.077989,0.558957,0.558957,19.397116,14.120187,19.944277,19.953923,13.955228,17.631565,20,20,20,20,,,,,,,,,,,2236,2236,2.994413,2.994413,2.994413,2.994413,2.994413,2.994413,2.994413,2.994413,1.077989,1.077989,20,20,, +3168,0,1.38505,1,1,0,2,4,,4,3,Pontiac,Trl,657404,2.108,3.492,0,29.679644,4.5,4.5,2.186921,2.186921,2.186921,2.186921,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,6.51413,3.517662,2.186921,2.186921,6.51413,3.517662,2.704902,2.842593,2.186921,2.186921,2.704902,2.842593,3.986784,6.221801,2.186921,2.186921,3.986784,6.221801,2.186921,2.186921,2.186921,2.186921,2.186921,2.186921,,,,,,,6.51413,3.517662,2.704902,2.842593,3.986784,6.221801,2.186921,2.186921,2.186921,2.186921,2.203548,1.304608,1.06078,1.102087,1.445344,2.115849,0.905385,0.905385,0.480394,0.480394,12.757345,23.6245,30.723106,29.23493,20.844623,13.356744,38,38,38,38,,,,,,,,,,,3096,3096,2.186921,2.186921,2.186921,2.186921,2.186921,2.186921,2.186921,2.186921,0.905385,0.905385,38,38,, +3428,0,0.80482,1,1,0,2,4,,4,3,West Maple,Rd,657406,6.126,6.93,0,17.246153,4.5,4.5,1.270769,1.270769,1.270769,1.270769,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.450089,1.752751,1.270769,1.270769,1.450089,1.752751,1.368552,1.381155,1.270769,1.270769,1.368552,1.381155,1.878056,1.63734,1.270769,1.270769,1.878056,1.63734,1.270769,1.270769,1.270769,1.270769,1.270769,1.270769,,,,,,,1.450089,1.752751,1.368552,1.381155,1.878056,1.63734,1.270769,1.270769,1.270769,1.270769,0.579894,0.670693,0.555433,0.559214,0.708284,0.63607,0.526098,0.526098,0.279146,0.279146,33.300873,27.550533,35.284915,34.962933,25.712349,29.492488,38,38,38,38,,,,,,,,,,,3096,3096,1.270769,1.270769,1.270769,1.270769,1.270769,1.270769,1.270769,1.270769,0.526098,0.526098,38,38,, +3516,-1,3.596748,0,3,0,1,1,,4,3,W I 96,,657304,3.179,6.775,0,,0.8,7.5,,3.082927,,3.082927,,70,,66000,,14982,,33000,,21292,,22704,,22678,,3.120333,,3.082927,,3.120333,,3.097182,,3.082927,,3.097182,,5.095336,,3.082927,,5.095336,,3.082927,,3.082927,,3.082927,,,,,,,,3.120333,,3.097182,,5.095336,,3.082927,,3.082927,,1.583514,,1.576569,,2.176015,,1.572293,,0.858081,,69.16084,,69.677815,,42.353415,,70,,70,,,,,,,,,,,,22704,,3.082927,,3.082927,,3.082927,,3.082927,,1.572293,,70,, +4009,0,0.85999,1,1,0,2,7,,4,3,Charms,Rd,705705,0,0.86,0,18.428349,6.55,4.5,2.063975,2.063975,2.063975,2.063975,25,25,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,2.795325,2.06842,2.063975,2.063975,2.795325,2.06842,2.066166,2.065428,2.063975,2.063975,2.066166,2.065428,2.072986,2.433769,2.063975,2.063975,2.072986,2.433769,2.063975,2.063975,2.063975,2.063975,2.063975,2.063975,,,,,,,2.795325,2.06842,2.066166,2.065428,2.072986,2.433769,2.063975,2.063975,2.063975,2.063975,0.993396,0.775324,0.774648,0.774427,0.776694,0.884929,0.773991,0.773991,0.404195,0.404195,18.45917,24.946281,24.973488,24.982415,24.891334,21.201432,25,25,25,25,,,,,,,,,,,2064,2064,2.063975,2.063975,2.063975,2.063975,2.063975,2.063975,2.063975,2.063975,0.773991,0.773991,25,25,, +19812,0,1.058822,1,1,0,2,4,,4,3,Grand River,Ave,4104142,6.039,7.097,0,22.689051,4.5,4.5,1.671825,1.671825,1.671825,1.671825,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,3.211511,2.572525,1.671825,1.671825,3.211511,2.572525,1.969423,1.999926,1.671825,1.671825,1.969423,1.999926,2.977432,3.175615,1.671825,1.671825,2.977432,3.175615,1.671825,1.671825,1.671825,1.671825,1.671825,1.671825,,,,,,,3.211511,2.572525,1.969423,1.999926,2.977432,3.175615,1.671825,1.671825,1.671825,1.671825,1.154041,0.962346,0.781415,0.790566,1.083818,1.143273,0.692135,0.692135,0.367244,0.367244,19.781764,24.695323,32.257841,31.765851,21.33696,20.005364,38,38,38,38,,,,,,,,,,,3096,3096,1.671825,1.671825,1.671825,1.671825,1.671825,1.671825,1.671825,1.671825,0.692135,0.692135,38,38,, +19842,0,1.05651,1,1,0,2,4,,4,3,Commerce,Rd,4104140,6.589,7.645,0,22.63951,4.5,4.5,1.668174,1.668174,1.668174,1.668174,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.186029,2.386348,1.668174,1.668174,2.186029,2.386348,1.85313,1.855428,1.668174,1.668174,1.85313,1.855428,2.606498,2.472245,1.668174,1.668174,2.606498,2.472245,1.668174,1.668174,1.668174,1.668174,1.668174,1.668174,,,,,,,2.186029,2.386348,1.85313,1.855428,2.606498,2.472245,1.668174,1.668174,1.668174,1.668174,0.845981,0.906076,0.746111,0.7468,0.972121,0.931846,0.690624,0.690624,0.366442,0.366442,28.998067,26.56387,34.207331,34.164971,24.320232,25.640911,38,38,38,38,,,,,,,,,,,3096,3096,1.668174,1.668174,1.668174,1.668174,1.668174,1.668174,1.668174,1.668174,0.690624,0.690624,38,38,, +25975,0,1.50198,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.185282,0.15,4,6.007919,6.007919,6.007919,6.007919,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,,,,,,,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,2.072732,2.072732,2.072732,2.072732,2.072732,2.072732,2.072732,2.072732,1.066406,1.066406,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,6.007919,2.072732,2.072732,15,15,, +26998,0,1.200954,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.734728,0.15,4,4.803816,4.803816,4.803816,4.803816,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,,,,,,,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,1.657316,1.657316,1.657316,1.657316,1.657316,1.657316,1.657316,1.657316,0.852677,0.852677,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,4.803816,1.657316,1.657316,15,15,, +26999,0,1.259251,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.983953,0.15,4,5.037004,5.037004,5.037004,5.037004,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,,,,,,,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,1.737767,1.737767,1.737767,1.737767,1.737767,1.737767,1.737767,1.737767,0.894068,0.894068,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,5.037004,1.737767,1.737767,15,15,, +27150,0,1.128157,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.174788,0.15,4,4.512627,4.512627,4.512627,4.512627,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.512628,4.512627,4.512627,4.512627,4.512628,4.512627,4.512627,4.512627,4.512627,4.512627,4.512627,4.512627,4.512627,4.512628,4.512627,4.512627,4.512627,4.512628,4.512627,4.512627,4.512627,4.512627,4.512627,4.512627,,,,,,,4.512628,4.512627,4.512627,4.512627,4.512627,4.512628,4.512627,4.512627,4.512627,4.512627,1.556857,1.556856,1.556856,1.556856,1.556856,1.556857,1.556856,1.556856,0.800991,0.800991,14.999997,15,15,15,15,14.999997,15,15,15,15,,,,,,,,,,,34400,34400,4.512627,4.512627,4.512627,4.512627,4.512627,4.512627,4.512627,4.512627,1.556856,1.556856,15,15,, +27159,0,1.235771,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,26.480811,0.15,4,4.943085,4.943085,4.943085,4.943085,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,,,,,,,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,1.705364,1.705364,1.705364,1.705364,1.705364,1.705364,1.705364,1.705364,0.877398,0.877398,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,4.943085,1.705364,1.705364,15,15,, +27162,0,0.659108,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.123749,0.15,4,2.636433,2.636433,2.636433,2.636433,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,,,,,,,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,0.909569,0.909569,0.909569,0.909569,0.909569,0.909569,0.909569,0.909569,0.467967,0.467967,15,15,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,2.636433,0.909569,0.909569,15,15,, +27163,0,0.152891,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.276242,0.15,4,0.611565,0.611565,0.611565,0.611565,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,,,,,,,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.21099,0.21099,0.21099,0.21099,0.21099,0.21099,0.21099,0.21099,0.108553,0.108553,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.611565,0.21099,0.21099,15,15,, +27164,0,0.149062,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.194175,0.15,4,0.596246,0.596246,0.596246,0.596246,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,,,,,,,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.205705,0.205705,0.205705,0.205705,0.205705,0.205705,0.205705,0.205705,0.105834,0.105834,14.999999,15,15,15,14.999999,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.596246,0.205705,0.205705,15,15,, +3019,0,0.636648,1,1,0,2,3,,5,3,Milford,Rd,656804,2.019,2.655,0,13.642461,1.7,4,0.763978,0.763978,0.763978,0.763978,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.01201,0.97399,0.763978,0.763978,1.01201,0.97399,0.809657,0.783549,0.763978,0.763978,0.809657,0.783549,1.094348,1.144932,0.763978,0.763978,1.094348,1.144932,0.763978,0.763978,0.763978,0.763978,0.763978,0.763978,,,,,,,1.01201,0.97399,0.809657,0.783549,1.094348,1.144932,0.763978,0.763978,0.763978,0.763978,0.4182,0.406794,0.357494,0.349661,0.442901,0.458076,0.34379,0.34379,0.184628,0.184628,37.745585,39.218972,47.179101,48.751115,34.9056,33.363472,50,50,50,50,,,,,,,,,,,3096,3096,0.763978,0.763978,0.763978,0.763978,0.763978,0.763978,0.763978,0.763978,0.34379,0.34379,50,50,, +3498,0,0.998559,1,1,0,2,4,,4,3,Pontiac,Trl,657404,1.109,2.108,0,21.39769,4.5,4.5,1.576672,1.576672,1.576672,1.576672,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.019176,1.665639,1.576672,1.576672,2.019176,1.665639,1.581306,1.584938,1.576672,1.576672,1.581306,1.584938,1.636733,1.909494,1.576672,1.576672,1.636733,1.909494,1.576672,1.576672,1.576672,1.576672,1.576672,1.576672,,,,,,,2.019176,1.665639,1.581306,1.584938,1.636733,1.909494,1.576672,1.576672,1.576672,1.576672,0.785493,0.679432,0.654132,0.655222,0.670761,0.752589,0.652742,0.652742,0.346342,0.346342,29.67227,35.97031,37.888647,37.801813,36.605562,31.376658,38,38,38,38,,,,,,,,,,,3096,3096,1.576672,1.576672,1.576672,1.576672,1.576672,1.576672,1.576672,1.576672,0.652742,0.652742,38,38,, +19814,0,0.819147,1,1,0,2,4,,4,3,Grand River,Ave,4104142,4.956,5.775,0,17.553145,4.5,4.5,1.29339,1.29339,1.29339,1.29339,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.756312,1.294276,1.29339,1.29339,1.756312,1.294276,1.294432,1.294275,1.29339,1.29339,1.294432,1.294275,1.298967,1.456247,1.29339,1.29339,1.298967,1.456247,1.29339,1.29339,1.29339,1.29339,1.29339,1.29339,,,,,,,1.756312,1.294276,1.294432,1.294275,1.298967,1.456247,1.29339,1.29339,1.29339,1.29339,0.67434,0.535729,0.535776,0.535729,0.537136,0.584321,0.535463,0.535463,0.284115,0.284115,27.984096,37.973972,37.969393,37.974005,37.836848,33.750314,38,38,38,38,,,,,,,,,,,3096,3096,1.29339,1.29339,1.29339,1.29339,1.29339,1.29339,1.29339,1.29339,0.535463,0.535463,38,38,, +24622,0,1.510357,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.364801,0.15,4,6.04143,6.04143,6.04143,6.04143,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,,,,,,,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,2.084293,2.084293,2.084293,2.084293,2.084293,2.084293,2.084293,2.084293,1.072354,1.072354,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,6.04143,2.084293,2.084293,15,15,, +27156,0,0.429516,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.203917,0.15,4,1.718064,1.718064,1.718064,1.718064,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,,,,,,,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,0.592732,0.592732,0.592732,0.592732,0.592732,0.592732,0.592732,0.592732,0.304956,0.304956,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,1.718064,0.592732,0.592732,15,15,, +27157,0,0.793806,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,17.010134,0.15,4,3.175225,3.175225,3.175225,3.175225,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,,,,,,,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,1.095453,1.095453,1.095453,1.095453,1.095453,1.095453,1.095453,1.095453,0.563602,0.563602,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,3.175225,1.095453,1.095453,15,15,, +30229,0,0.74839,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.036938,0.15,4,2.993562,2.993562,2.993562,2.993562,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,,,,,,,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,1.032779,1.032779,1.032779,1.032779,1.032779,1.032779,1.032779,1.032779,0.531357,0.531357,15,14.999997,15,14.999999,14.999997,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,2.993562,1.032779,1.032779,15,15,, +2775,0,1.023073,1,1,0,2,3,,5,3,Milford,Rd,656804,0.996,2.019,0,21.922984,1.7,4,1.227687,1.227687,1.227687,1.227687,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.502952,1.416949,1.227687,1.227687,1.502952,1.416949,1.283636,1.251728,1.227687,1.227687,1.283636,1.251728,1.64435,1.694041,1.227687,1.227687,1.64435,1.694041,1.227687,1.227687,1.227687,1.227687,1.227687,1.227687,,,,,,,1.502952,1.416949,1.283636,1.251728,1.64435,1.694041,1.227687,1.227687,1.227687,1.227687,0.635039,0.609238,0.569244,0.559672,0.677458,0.692365,0.552459,0.552459,0.296691,0.296691,40.842516,43.321493,47.820695,49.039679,37.330472,36.235465,50,50,50,50,,,,,,,,,,,3096,3096,1.227687,1.227687,1.227687,1.227687,1.227687,1.227687,1.227687,1.227687,0.552459,0.552459,50,50,, +3055,0,0.250747,1,1,0,2,5,,5,3,11 Mile,Rd,656603,2.559,2.81,0,5.373147,3.7,5,0.501494,0.501494,0.501494,0.501494,30,30,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.534458,0.502232,0.501494,0.501494,0.534458,0.502232,0.502488,0.501699,0.501494,0.501494,0.502488,0.501699,0.505338,0.54379,0.501494,0.501494,0.505338,0.54379,0.501494,0.501494,0.501494,0.501494,0.501494,0.501494,,,,,,,0.534458,0.502232,0.502488,0.501699,0.505338,0.54379,0.501494,0.501494,0.501494,0.501494,0.205472,0.195804,0.195881,0.195644,0.196736,0.208272,0.195583,0.195583,0.102806,0.102806,28.149663,29.955916,29.940642,29.987735,29.771777,27.666557,30,30,30,30,,,,,,,,,,,2580,2580,0.501494,0.501494,0.501494,0.501494,0.501494,0.501494,0.501494,0.501494,0.195583,0.195583,30,30,, +3057,0,0.363017,1,1,0,2,3,,5,3,Milford,Rd,656804,0.633,0.996,0,7.77893,1.7,4,0.43562,0.43562,0.43562,0.43562,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.461917,0.486792,0.43562,0.43562,0.461917,0.486792,0.442135,0.43994,0.43562,0.43562,0.442135,0.43994,0.547599,0.498163,0.43562,0.43562,0.547599,0.498163,0.43562,0.43562,0.43562,0.43562,0.43562,0.43562,,,,,,,0.461917,0.486792,0.442135,0.43994,0.547599,0.498163,0.43562,0.43562,0.43562,0.43562,0.203918,0.21138,0.197983,0.197325,0.229623,0.214792,0.196029,0.196029,0.105275,0.105275,47.153453,44.744003,49.263267,49.509042,39.775494,43.722676,50,50,50,50,,,,,,,,,,,3096,3096,0.43562,0.43562,0.43562,0.43562,0.43562,0.43562,0.43562,0.43562,0.196029,0.196029,50,50,, +2955,0,0.437637,1,1,0,2,5,GRV,4,3,Hill,Rd,656805,2.69,3.127,0,9.377941,6.55,4.5,1.750549,1.750549,1.750549,1.750549,15,15,6000,6000,1362,1362,3000,3000,1936,1936,2064,2064,2062,2062,1.7635,2.161722,1.750549,1.750549,1.7635,2.161722,1.769729,1.75072,1.750549,1.750549,1.769729,1.75072,2.095508,1.771031,1.750549,1.750549,2.095508,1.771031,1.750549,1.750549,1.750549,1.750549,1.750549,1.750549,,,,,,,1.7635,2.161722,1.769729,1.75072,2.095508,1.771031,1.750549,1.750549,1.750549,1.750549,0.607825,0.727291,0.609694,0.603991,0.707427,0.610084,0.603939,0.603939,0.310722,0.310722,14.889839,12.146905,14.837429,14.998535,12.530723,14.826525,15,15,15,15,,,,,,,,,,,2064,2064,1.750549,1.750549,1.750549,1.750549,1.750549,1.750549,1.750549,1.750549,0.603939,0.603939,15,15,, +3016,0,0.240579,2,2,0,2,3,,4,3,Milford,Rd,656804,3.448,3.688,0,5.155267,3.7,5,0.360869,0.360869,0.360869,0.360869,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.397353,0.364758,0.360869,0.360869,0.397353,0.364758,0.363638,0.362357,0.360869,0.360869,0.363638,0.362357,0.386828,0.412511,0.360869,0.360869,0.386828,0.412511,0.360869,0.360869,0.360869,0.360869,0.360869,0.360869,,,,,,,0.397353,0.364758,0.363638,0.362357,0.386828,0.412511,0.360869,0.360869,0.360869,0.360869,0.16251,0.152732,0.152396,0.152011,0.159353,0.167058,0.151565,0.151565,0.080594,0.080594,36.327266,39.573475,39.695343,39.83569,37.315715,34.992409,40,40,40,40,,,,,,,,,,,7568,7568,0.360869,0.360869,0.360869,0.360869,0.360869,0.360869,0.360869,0.360869,0.151565,0.151565,40,40,, +3510,0,1.07719,1,1,0,2,4,,4,3,Pontiac,Trl,657404,0,1.077,0,23.082639,4.5,4.5,1.700826,1.700826,1.700826,1.700826,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.551592,1.923205,1.700826,1.700826,2.551592,1.923205,1.71436,1.788225,1.700826,1.700826,1.71436,1.788225,1.868184,2.728903,1.700826,1.700826,1.868184,2.728903,1.700826,1.700826,1.700826,1.700826,1.700826,1.700826,,,,,,,2.551592,1.923205,1.71436,1.788225,1.868184,2.728903,1.700826,1.700826,1.700826,1.700826,0.959372,0.770856,0.708202,0.730362,0.754349,1.012565,0.704142,0.704142,0.373615,0.373615,25.329826,33.606087,37.700013,36.142767,34.59583,23.684019,38,38,38,38,,,,,,,,,,,3096,3096,1.700826,1.700826,1.700826,1.700826,1.700826,1.700826,1.700826,1.700826,0.704142,0.704142,38,38,, +19815,0,0.417929,1,1,1,2,4,,4,3,Grand River,Ave,4104142,3.885,4.302,0,8.955617,4.5,4.5,0.659888,0.659888,0.659888,0.659888,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.936597,0.66007,0.659888,0.659888,0.936597,0.66007,0.679433,0.6621,0.659888,0.659888,0.679433,0.6621,0.675859,0.871875,0.659888,0.659888,0.675859,0.871875,0.659888,0.659888,0.659888,0.659888,0.659888,0.659888,,,,,,,0.936597,0.66007,0.679433,0.6621,0.675859,0.871875,0.659888,0.659888,0.659888,0.659888,0.356206,0.273248,0.279057,0.273857,0.277985,0.33679,0.273193,0.273193,0.144955,0.144955,26.77322,37.989522,36.906846,37.872997,37.102036,28.760689,38,38,38,38,,,,,,,,,,,3406,3406,0.659888,0.659888,0.659888,0.659888,0.659888,0.659888,0.659888,0.659888,0.273193,0.273193,38,38,, +2749,0,0.4993,1,1,0,2,3,,5,3,Milford,Rd,656804,2.655,3.154,0,10.69929,1.7,4,0.59916,0.59916,0.59916,0.59916,50,50,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.960105,0.711649,0.59916,0.59916,0.960105,0.711649,0.655344,0.633263,0.59916,0.59916,0.655344,0.633263,0.788274,0.914597,0.59916,0.59916,0.788274,0.914597,0.59916,0.59916,0.59916,0.59916,0.59916,0.59916,,,,,,,0.960105,0.711649,0.655344,0.633263,0.788274,0.914597,0.59916,0.59916,0.59916,0.59916,0.377906,0.303369,0.286477,0.279853,0.326356,0.364253,0.269622,0.269622,0.144797,0.144797,31.202842,42.096591,45.713426,47.307405,38.004565,32.755422,50,50,50,50,,,,,,,,,,,3096,3096,0.59916,0.59916,0.59916,0.59916,0.59916,0.59916,0.59916,0.59916,0.269622,0.269622,50,50,, +2540,-1,0.327353,0,3,0,1,1,,4,3,W I 96,,657304,2.852,3.179,0,,0.8,7.5,,0.280589,,0.280589,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.281848,,0.280589,,0.281848,,0.281104,,0.280589,,0.281104,,0.362411,,0.280589,,0.362411,,0.280589,,0.280589,,0.280589,,,,,,,,0.281848,,0.281104,,0.362411,,0.280589,,0.280589,,0.143478,,0.143255,,0.167647,,0.1431,,0.078097,,69.687302,,69.87171,,54.195965,,70,,70,,,,,,,,,,,,22704,,0.280589,,0.280589,,0.280589,,0.280589,,0.1431,,70,, +2706,0,0.098138,2,2,1,2,4,,4,3,Milford,Rd,656804,4.091,4.189,0,2.102961,4.5,4.5,0.154955,0.154955,0.154955,0.154955,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,0.242538,0.245088,0.154955,0.154955,0.242538,0.245088,0.164363,0.173054,0.154955,0.154955,0.164363,0.173054,0.237155,0.279492,0.154955,0.154955,0.237155,0.279492,0.154955,0.154955,0.154955,0.154955,0.154955,0.154955,,,,,,,0.242538,0.245088,0.164363,0.173054,0.237155,0.279492,0.154955,0.154955,0.154955,0.154955,0.090426,0.091191,0.066974,0.069581,0.088811,0.101512,0.064151,0.064151,0.034038,0.034038,24.27783,24.025224,35.824871,34.025814,24.828897,21.067841,38,38,38,38,,,,,,,,,,,6502,6502,0.154955,0.154955,0.154955,0.154955,0.154955,0.154955,0.154955,0.154955,0.064151,0.064151,38,38,, +2919,1,0.314042,3,0,0,1,1,,4,3,E I 96,,657303,2.839,3.153,0,,0.8,7.5,0.269179,,0.269179,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.381488,,0.269179,,0.381488,,0.270572,,0.269179,,0.270572,,0.276856,,0.269179,,0.276856,,0.269179,,0.269179,,0.269179,,,,,,,,0.381488,,0.270572,,0.276856,,0.269179,,0.269179,,0.170974,,0.137699,,0.139584,,0.137281,,0.074921,,49.392099,,69.639591,,68.058777,,70,,70,,,,,,,,,,,,22704,,0.269179,,0.269179,,0.269179,,0.269179,,0.137281,,70,,, +3844,1,0.377454,1,0,0,1,1,ROF,4,3,W I 96/N Milford,RAMP,683801,0,0.377,0,,2.24,5,0.566181,,0.566181,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.569971,,0.566181,,0.569971,,0.567588,,0.566181,,0.567588,,0.586218,,0.566181,,0.586218,,0.566181,,0.566181,,0.566181,,,,,,,,0.569971,,0.567588,,0.586218,,0.566181,,0.566181,,0.238933,,0.238218,,0.243807,,0.237796,,0.126447,,39.734064,,39.900861,,38.63282,,40,,40,,,,,,,,,,,,5160,,0.566181,,0.566181,,0.566181,,0.566181,,0.237796,,40,,, +20793,1,0.280773,1,0,0,1,1,RON,4,3,N Milford/E I 96,RAMP,4405372,0,0.281,0,,1.09,4,0.374364,,0.374364,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.405386,,0.374364,,0.405386,,0.376283,,0.374364,,0.376283,,0.380005,,0.374364,,0.380005,,0.374364,,0.374364,,0.374364,,,,,,,,0.405386,,0.376283,,0.380005,,0.374364,,0.374364,,0.172155,,0.163424,,0.164541,,0.162848,,0.08704,,41.556401,,44.770512,,44.331992,,45,,45,,,,,,,,,,,,5160,,0.374364,,0.374364,,0.374364,,0.374364,,0.162848,,45,,, +2437,-1,0.338487,0,3,0,1,1,,4,3,W I 96,,657304,2.514,2.852,0,,0.8,7.5,,0.290131,,0.290131,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.290828,,0.290131,,0.290828,,0.290452,,0.290131,,0.290452,,0.322196,,0.290131,,0.322196,,0.290131,,0.290131,,0.290131,,,,,,,,0.290828,,0.290452,,0.322196,,0.290131,,0.290131,,0.148176,,0.148063,,0.157586,,0.147967,,0.080753,,69.832312,,69.922727,,63.03377,,70,,70,,,,,,,,,,,,22704,,0.290131,,0.290131,,0.290131,,0.290131,,0.147967,,70,, +2665,1,0.230882,3,0,0,1,1,,4,3,E I 96,,657303,2.609,2.839,0,,0.8,7.5,0.197899,,0.197899,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.238316,,0.197899,,0.238316,,0.198338,,0.197899,,0.198338,,0.200107,,0.197899,,0.200107,,0.197899,,0.197899,,0.197899,,,,,,,,0.238316,,0.198338,,0.200107,,0.197899,,0.197899,,0.113053,,0.10106,,0.101591,,0.100929,,0.055082,,58.128519,,69.84511,,69.227489,,70,,70,,,,,,,,,,,,22704,,0.197899,,0.197899,,0.197899,,0.197899,,0.100929,,70,,, +2969,0,0.199537,2,2,0,2,3,,4,3,Milford,Rd,656804,3.884,4.084,0,4.275793,3.7,5,0.299305,0.299305,0.299305,0.299305,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.308809,0.341088,0.299305,0.299305,0.308809,0.341088,0.299714,0.305607,0.299305,0.299305,0.299714,0.305607,0.306548,0.514013,0.299305,0.299305,0.306548,0.514013,0.299305,0.299305,0.299305,0.299305,0.299305,0.299305,,,,,,,0.308809,0.341088,0.299714,0.305607,0.306548,0.514013,0.299305,0.299305,0.299305,0.299305,0.128559,0.138243,0.125831,0.127599,0.127881,0.190121,0.125708,0.125708,0.066845,0.066845,38.769012,35.10011,39.945509,39.175162,39.055021,23.291673,40,40,40,40,,,,,,,,,,,7568,7568,0.299305,0.299305,0.299305,0.299305,0.299305,0.299305,0.299305,0.299305,0.125708,0.125708,40,40,, +3266,1,0.326445,1,0,0,1,1,ROF,4,3,E I 96/Milford,RAMP,657403,0,0.326,0,,2.24,5,0.489668,,0.489668,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.4964,,0.489668,,0.4964,,0.490234,,0.489668,,0.490234,,0.492208,,0.489668,,0.492208,,0.489668,,0.489668,,0.489668,,,,,,,,0.4964,,0.490234,,0.492208,,0.489668,,0.489668,,0.20768,,0.20583,,0.206422,,0.20566,,0.109359,,39.457461,,39.953813,,39.793561,,40,,40,,,,,,,,,,,,5160,,0.489668,,0.489668,,0.489668,,0.489668,,0.20566,,40,,, +3843,1,0.351968,1,0,0,1,1,RON,4,3,Milford/W I 96,RAMP,683802,0,0.352,0,,1.09,4,0.469291,,0.469291,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.473372,,0.469291,,0.473372,,0.470999,,0.469291,,0.470999,,0.49193,,0.469291,,0.49193,,0.469291,,0.469291,,0.469291,,,,,,,,0.473372,,0.470999,,0.49193,,0.469291,,0.469291,,0.205366,,0.204654,,0.210933,,0.204142,,0.10911,,44.612046,,44.836776,,42.929048,,45,,45,,,,,,,,,,,,5160,,0.469291,,0.469291,,0.469291,,0.469291,,0.204142,,45,,, +20549,1,0.262089,1,0,0,1,1,ROF,4,3,W I 96/S Milford,RAMP,4407799,0,0.262,0,,2.24,5,0.393133,,0.393133,,40,,15000,,3405,,7500,,4839,,5160,,5154,,0.393283,,0.393133,,0.393283,,0.393163,,0.393133,,0.393163,,0.412635,,0.393133,,0.412635,,0.393133,,0.393133,,0.393133,,,,,,,,0.393283,,0.393163,,0.412635,,0.393133,,0.393133,,0.165161,,0.165125,,0.170966,,0.165116,,0.0878,,39.984738,,39.996912,,38.109521,,40,,40,,,,,,,,,,,,5160,,0.393133,,0.393133,,0.393133,,0.393133,,0.165116,,40,,, +3576,1,0.271446,1,0,0,1,1,RON,4,3,S Milford/E I 96,RAMP,657402,0,0.271,0,,1.09,4,0.361928,,0.361928,,45,,15000,,3405,,7500,,4839,,5160,,5154,,0.369049,,0.361928,,0.369049,,0.363238,,0.361928,,0.363238,,0.366709,,0.361928,,0.366709,,0.361928,,0.361928,,0.361928,,,,,,,,0.369049,,0.363238,,0.366709,,0.361928,,0.361928,,0.159575,,0.157832,,0.158873,,0.157439,,0.084148,,44.131735,,44.837683,,44.413287,,45,,45,,,,,,,,,,,,5160,,0.361928,,0.361928,,0.361928,,0.361928,,0.157439,,45,,, +2748,0,0.040611,2,2,0,2,3,,4,3,Milford,Rd,656804,3.844,3.884,0,0.870239,3.7,5,0.060917,0.060917,0.060917,0.060917,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.062851,0.061236,0.060917,0.060917,0.062851,0.061236,0.061,0.060976,0.060917,0.060917,0.061,0.060976,0.062391,0.067551,0.060917,0.060917,0.062391,0.067551,0.060917,0.060917,0.060917,0.060917,0.060917,0.060917,,,,,,,0.062851,0.061236,0.061,0.060976,0.062391,0.067551,0.060917,0.060917,0.060917,0.060917,0.026165,0.025681,0.02561,0.025603,0.026027,0.027575,0.025585,0.025585,0.013605,0.013605,38.769012,39.791512,39.945509,39.961443,39.055021,36.07131,40,40,40,40,,,,,,,,,,,7568,7568,0.060917,0.060917,0.060917,0.060917,0.060917,0.060917,0.060917,0.060917,0.025585,0.025585,40,40,, +2711,0,0.003544,2,2,0,2,3,,4,3,Milford,Rd,656804,4.084,4.087,0,0.07594,3.7,5,0.005316,0.005316,0.005316,0.005316,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.005485,0.005515,0.005316,0.005316,0.005485,0.005515,0.005323,0.005343,0.005316,0.005316,0.005323,0.005343,0.005444,0.005522,0.005316,0.005316,0.005444,0.005522,0.005316,0.005316,0.005316,0.005316,0.005316,0.005316,,,,,,,0.005485,0.005515,0.005323,0.005343,0.005444,0.005522,0.005316,0.005316,0.005316,0.005316,0.002283,0.002292,0.002235,0.002241,0.002271,0.002295,0.002233,0.002233,0.001187,0.001187,38.769012,38.557584,39.945509,39.795174,39.055021,38.503244,40,40,40,40,,,,,,,,,,,7568,7568,0.005316,0.005316,0.005316,0.005316,0.005316,0.005316,0.005316,0.005316,0.002233,0.002233,40,40,, +2966,0,0.003936,2,2,0,2,3,,4,3,Milford,Rd,656804,4.087,4.091,0,0.08434,3.7,5,0.005904,0.005904,0.005904,0.005904,40,40,22000,22000,4994,4994,11000,11000,7097,7097,7568,7568,7559,7559,0.007592,0.006125,0.005904,0.005904,0.007592,0.006125,0.006078,0.005934,0.005904,0.005904,0.006078,0.005934,0.008705,0.006133,0.005904,0.005904,0.008705,0.006133,0.005904,0.005904,0.005904,0.005904,0.005904,0.005904,,,,,,,0.007592,0.006125,0.006078,0.005934,0.008705,0.006133,0.005904,0.005904,0.005904,0.005904,0.002986,0.002546,0.002532,0.002489,0.00332,0.002548,0.00248,0.00248,0.001319,0.001319,31.103876,38.557584,38.851984,39.795174,27.128652,38.503244,40,40,40,40,,,,,,,,,,,7568,7568,0.005904,0.005904,0.005904,0.005904,0.005904,0.005904,0.005904,0.005904,0.00248,0.00248,40,40,, +2697,0,0.605034,1,1,0,2,5,,4,3,Hill,Rd,656805,2.085,2.69,0,12.965017,5.8,4.5,1.34452,1.34452,1.34452,1.34452,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.574802,1.437236,1.34452,1.34452,1.574802,1.437236,1.38173,1.345826,1.34452,1.34452,1.38173,1.345826,1.619815,1.526372,1.34452,1.34452,1.619815,1.526372,1.34452,1.34452,1.34452,1.34452,1.34452,1.34452,,,,,,,1.574802,1.437236,1.38173,1.345826,1.619815,1.526372,1.34452,1.34452,1.34452,1.34452,0.581347,0.540077,0.523425,0.512654,0.594851,0.566818,0.512262,0.512262,0.268232,0.268232,23.051822,25.258239,26.27289,26.973802,22.41123,23.783222,27,27,27,27,,,,,,,,,,,2580,2580,1.34452,1.34452,1.34452,1.34452,1.34452,1.34452,1.34452,1.34452,0.512262,0.512262,27,27,, +27168,0,0.692542,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.840196,0.15,4,2.77017,2.77017,2.77017,2.77017,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,,,,,,,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,0.955709,0.955709,0.955709,0.955709,0.955709,0.955709,0.955709,0.955709,0.491705,0.491705,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,2.77017,0.955709,0.955709,15,15,, +3182,0,0.032534,1,1,0,2,4,,4,3,Pontiac,Trl,657404,1.077,1.109,0,0.697164,4.5,4.5,0.05137,0.05137,0.05137,0.05137,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.095035,0.098677,0.05137,0.05137,0.095035,0.098677,0.051821,0.052019,0.05137,0.05137,0.051821,0.052019,0.069679,0.082183,0.05137,0.05137,0.069679,0.082183,0.05137,0.05137,0.05137,0.05137,0.05137,0.05137,,,,,,,0.095035,0.098677,0.051821,0.052019,0.069679,0.082183,0.05137,0.05137,0.05137,0.05137,0.034367,0.035459,0.021403,0.021462,0.02676,0.030511,0.021267,0.021267,0.011284,0.011284,20.540401,19.782376,37.669072,37.52616,28.014862,23.752532,38,38,38,38,,,,,,,,,,,3096,3096,0.05137,0.05137,0.05137,0.05137,0.05137,0.05137,0.05137,0.05137,0.021267,0.021267,38,38,, +27148,0,0.725145,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.538813,0.15,4,2.900578,2.900578,2.900578,2.900578,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.900579,2.900579,2.900578,2.900578,2.900579,2.900579,2.900579,2.900579,2.900578,2.900578,2.900579,2.900579,2.900579,2.900579,2.900578,2.900578,2.900579,2.900579,2.900578,2.900578,2.900578,2.900578,2.900578,2.900578,,,,,,,2.900579,2.900579,2.900579,2.900579,2.900579,2.900579,2.900578,2.900578,2.900578,2.900578,1.0007,1.0007,1.0007,1.0007,1.0007,1.0007,1.0007,1.0007,0.514853,0.514853,15,14.999999,14.999999,14.999999,14.999996,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.900578,2.900578,2.900578,2.900578,2.900578,2.900578,2.900578,2.900578,1.0007,1.0007,15,15,, +27158,0,0.808659,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.32841,0.15,4,3.234637,3.234637,3.234637,3.234637,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,3.234637,3.234638,3.234637,3.234637,3.234637,3.234638,3.234637,3.234637,3.234637,3.234637,3.234637,3.234637,3.234638,3.234637,3.234637,3.234637,3.234638,3.234637,3.234637,3.234637,3.234637,3.234637,3.234637,3.234637,,,,,,,3.234637,3.234638,3.234637,3.234637,3.234638,3.234637,3.234637,3.234637,3.234637,3.234637,1.11595,1.11595,1.11595,1.11595,1.11595,1.11595,1.11595,1.11595,0.574148,0.574148,15,14.999995,14.999998,14.999998,14.999993,14.999998,15,15,15,15,,,,,,,,,,,34400,34400,3.234637,3.234637,3.234637,3.234637,3.234637,3.234637,3.234637,3.234637,1.11595,1.11595,15,15,, +19813,0,0.264223,1,1,0,2,4,,4,3,Grand River,Ave,4104142,5.775,6.039,0,5.661927,4.5,4.5,0.417195,0.417195,0.417195,0.417195,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.486994,0.419006,0.417195,0.417195,0.486994,0.419006,0.418004,0.417952,0.417195,0.417195,0.418004,0.417952,0.419362,0.43533,0.417195,0.417195,0.419362,0.43533,0.417195,0.417195,0.417195,0.417195,0.417195,0.417195,,,,,,,0.486994,0.419006,0.418004,0.417952,0.419362,0.43533,0.417195,0.417195,0.417195,0.417195,0.193658,0.173262,0.172961,0.172946,0.173369,0.178159,0.172719,0.172719,0.091644,0.091644,32.553575,37.835758,37.926399,37.931158,37.803623,36.416991,38,38,38,38,,,,,,,,,,,3096,3096,0.417195,0.417195,0.417195,0.417195,0.417195,0.417195,0.417195,0.417195,0.172719,0.172719,38,38,, +1397,0,0.73566,1,1,0,2,4,,5,3,Wixom,Rd,631910,3.531,4.267,0,15.764144,3,4,1.10349,1.10349,1.10349,1.10349,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.418155,3.176128,1.10349,1.10349,1.418155,3.176128,1.222155,1.269572,1.10349,1.10349,1.222155,1.269572,2.637618,1.784938,1.10349,1.10349,2.637618,1.784938,1.10349,1.10349,1.10349,1.10349,1.10349,1.10349,,,,,,,1.418155,3.176128,1.222155,1.269572,2.637618,1.784938,1.10349,1.10349,1.10349,1.10349,0.557865,1.085257,0.499065,0.51329,0.923704,0.6679,0.463466,0.463466,0.246446,0.246446,31.124666,13.897302,36.116216,34.767325,16.734647,24.728924,40,40,40,40,,,,,,,,,,,3096,3096,1.10349,1.10349,1.10349,1.10349,1.10349,1.10349,1.10349,1.10349,0.463466,0.463466,40,40,, +2699,0,0.978782,1,1,0,2,4,,4,3,Milford,Rd,656804,7.169,8.148,0,20.973905,4.5,4.5,1.545446,1.545446,1.545446,1.545446,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.726307,3.87287,1.545446,1.545446,2.726307,3.87287,1.996129,2.024089,1.545446,1.545446,1.996129,2.024089,3.886671,2.921335,1.545446,1.545446,3.886671,2.921335,1.545446,1.545446,1.545446,1.545446,1.545446,1.545446,,,,,,,2.726307,3.87287,1.996129,2.024089,3.886671,2.921335,1.545446,1.545446,1.545446,1.545446,0.994073,1.338042,0.775019,0.783407,1.342182,1.052581,0.639814,0.639814,0.339483,0.339483,21.540839,15.163672,29.420415,29.014009,15.10983,20.10277,38,38,38,38,,,,,,,,,,,3096,3096,1.545446,1.545446,1.545446,1.545446,1.545446,1.545446,1.545446,1.545446,0.639814,0.639814,38,38,, +2830,0,2.033656,1,1,0,2,5,GRV,5,3,Hill,Rd,657608,0.998,3.031,0,43.578351,5.55,5,6.100969,6.100969,6.100969,6.100969,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,6.110846,9.164461,6.100969,6.100969,6.110846,9.164461,6.10414,6.106692,6.100969,6.100969,6.10414,6.106692,8.35824,6.257816,6.100969,6.100969,8.35824,6.257816,6.100969,6.100969,6.100969,6.100969,6.100969,6.100969,,,,,,,6.110846,9.164461,6.10414,6.106692,8.35824,6.257816,6.100969,6.100969,6.100969,6.100969,2.199312,3.115396,2.1973,2.198066,2.87353,2.243403,2.196349,2.196349,1.138848,1.138848,19.967675,13.314409,19.989611,19.981257,14.598693,19.498718,20,20,20,20,,,,,,,,,,,2236,2236,6.100969,6.100969,6.100969,6.100969,6.100969,6.100969,6.100969,6.100969,2.196349,2.196349,20,20,, +2901,0,0.332613,1,1,0,2,4,,4,3,Atlantic,St,660202,0,0.333,0,7.12742,4.5,4.5,0.525178,0.525178,0.525178,0.525178,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.722379,0.640355,0.525178,0.525178,0.722379,0.640355,0.538343,0.535812,0.525178,0.525178,0.538343,0.535812,0.687495,0.684045,0.525178,0.525178,0.687495,0.684045,0.525178,0.525178,0.525178,0.525178,0.525178,0.525178,,,,,,,0.722379,0.640355,0.538343,0.535812,0.687495,0.684045,0.525178,0.525178,0.525178,0.525178,0.276584,0.251977,0.221373,0.220614,0.266119,0.265084,0.217424,0.217424,0.115364,0.115364,27.626448,31.165185,37.070749,37.245864,29.028263,29.174654,38,38,38,38,,,,,,,,,,,3096,3096,0.525178,0.525178,0.525178,0.525178,0.525178,0.525178,0.525178,0.525178,0.217424,0.217424,38,38,, +19846,0,0.577021,1,1,0,2,4,,4,3,Commerce,St,4104140,4.602,5.179,0,12.364728,4.5,4.5,0.911085,0.911085,0.911085,0.911085,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.095106,1.352015,0.911085,0.911085,1.095106,1.352015,0.939169,0.950773,0.911085,0.911085,0.939169,0.950773,1.298435,1.172293,0.911085,0.911085,1.298435,1.172293,0.911085,0.911085,0.911085,0.911085,0.911085,0.911085,,,,,,,1.095106,1.352015,0.939169,0.950773,1.298435,1.172293,0.911085,0.911085,0.911085,0.911085,0.432396,0.509468,0.385614,0.389096,0.493394,0.455552,0.377189,0.377189,0.200135,0.200135,31.614504,25.607141,36.863707,36.413785,26.663811,29.53292,38,38,38,38,,,,,,,,,,,3096,3096,0.911085,0.911085,0.911085,0.911085,0.911085,0.911085,0.911085,0.911085,0.377189,0.377189,38,38,, +25731,0,0.304099,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.516409,0.15,4,1.216396,1.216396,1.216396,1.216396,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,,,,,,,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,0.419657,0.419657,0.419657,0.419657,0.419657,0.419657,0.419657,0.419657,0.21591,0.21591,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,1.216396,0.419657,0.419657,15,15,, +26977,0,1.551322,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.242622,0.15,4,6.205289,6.205289,6.205289,6.205289,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,,,,,,,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,2.140825,2.140825,2.140825,2.140825,2.140825,2.140825,2.140825,2.140825,1.101439,1.101439,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,6.205289,2.140825,2.140825,15,15,, +27149,0,0.479699,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.279257,0.15,4,1.918795,1.918795,1.918795,1.918795,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,,,,,,,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,0.661984,0.661984,0.661984,0.661984,0.661984,0.661984,0.661984,0.661984,0.340586,0.340586,15,14.999999,15,15,14.999999,15,15,15,15,15,,,,,,,,,,,34400,34400,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,1.918795,0.661984,0.661984,15,15,, +27169,0,1.152524,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.696945,0.15,4,4.610096,4.610096,4.610096,4.610096,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,,,,,,,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,1.590483,1.590483,1.590483,1.590483,1.590483,1.590483,1.590483,1.590483,0.818292,0.818292,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,4.610096,1.590483,1.590483,15,15,, +27170,0,0.649644,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,13.920952,0.15,4,2.598578,2.598578,2.598578,2.598578,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,,,,,,,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,0.896509,0.896509,0.896509,0.896509,0.896509,0.896509,0.896509,0.896509,0.461248,0.461248,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,2.598578,0.896509,0.896509,15,15,, +27173,0,0.431388,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.244039,0.15,4,1.725554,1.725554,1.725554,1.725554,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,,,,,,,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,0.595316,0.595316,0.595316,0.595316,0.595316,0.595316,0.595316,0.595316,0.306286,0.306286,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,1.725554,0.595316,0.595316,15,15,, +27359,0,1.89242,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,40.551866,0.15,4,7.569682,7.569682,7.569682,7.569682,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,,,,,,,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,2.61154,2.61154,2.61154,2.61154,2.61154,2.61154,2.61154,2.61154,1.343618,1.343618,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,7.569682,2.61154,2.61154,15,15,, +2705,0,0.998711,1,1,0,2,4,,5,3,Milford,Rd,656804,5.148,6.147,0,21.40096,3,4,1.498067,1.498067,1.498067,1.498067,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.511537,3.455343,1.498067,1.498067,2.511537,3.455343,1.923229,1.916614,1.498067,1.498067,1.923229,1.916614,3.736496,2.944568,1.498067,1.498067,3.736496,2.944568,1.498067,1.498067,1.498067,1.498067,1.498067,1.498067,,,,,,,2.511537,3.455343,1.923229,1.916614,3.736496,2.944568,1.498067,1.498067,1.498067,1.498067,0.933229,1.216371,0.756737,0.754752,1.300717,1.063139,0.629188,0.629188,0.334568,0.334568,23.858967,17.342038,31.157329,31.264874,16.037133,20.350244,40,40,40,40,,,,,,,,,,,3096,3096,1.498067,1.498067,1.498067,1.498067,1.498067,1.498067,1.498067,1.498067,0.629188,0.629188,40,40,, +2959,0,1.02271,1,1,0,2,4,,5,3,Milford,Rd,656804,6.147,7.169,0,21.915211,3,4,1.534065,1.534065,1.534065,1.534065,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.276164,2.992163,1.534065,1.534065,2.276164,2.992163,1.844679,1.860725,1.534065,1.534065,1.844679,1.860725,2.84086,2.346186,1.534065,1.534065,2.84086,2.346186,1.534065,1.534065,1.534065,1.534065,1.534065,1.534065,,,,,,,2.276164,2.992163,1.844679,1.860725,2.84086,2.346186,1.534065,1.534065,1.534065,1.534065,0.866937,1.081737,0.737492,0.742305,1.036346,0.887944,0.644307,0.644307,0.342608,0.342608,26.958768,20.507771,33.264638,32.977786,21.600004,26.154189,40,40,40,40,,,,,,,,,,,3096,3096,1.534065,1.534065,1.534065,1.534065,1.534065,1.534065,1.534065,1.534065,0.644307,0.644307,40,40,, +2958,0,0.284537,1,1,0,2,4,,4,3,Milford,Rd,656804,8.148,8.432,0,6.097213,4.5,4.5,0.449268,0.449268,0.449268,0.449268,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.755237,0.957396,0.449268,0.449268,0.755237,0.957396,0.541167,0.544946,0.449268,0.449268,0.541167,0.544946,0.927877,0.75949,0.449268,0.449268,0.927877,0.75949,0.449268,0.449268,0.449268,0.449268,0.449268,0.449268,,,,,,,0.755237,0.957396,0.541167,0.544946,0.927877,0.75949,0.449268,0.449268,0.449268,0.449268,0.277788,0.338436,0.213567,0.2147,0.32958,0.279064,0.185997,0.185997,0.098689,0.098689,22.605078,17.831899,31.546975,31.328253,18.399202,22.478503,38,38,38,38,,,,,,,,,,,3096,3096,0.449268,0.449268,0.449268,0.449268,0.449268,0.449268,0.449268,0.449268,0.185997,0.185997,38,38,, +3125,0,0.458495,1,1,0,2,5,,4,3,Main,St,660502,0.035,0.493,0,9.824882,5.8,4.5,1.018877,1.018877,1.018877,1.018877,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.066564,1.427988,1.018877,1.018877,1.066564,1.427988,1.020868,1.023128,1.018877,1.018877,1.020868,1.023128,1.503702,1.190202,1.018877,1.018877,1.503702,1.190202,1.018877,1.018877,1.018877,1.018877,1.018877,1.018877,,,,,,,1.066564,1.427988,1.020868,1.023128,1.503702,1.190202,1.018877,1.018877,1.018877,1.018877,0.402498,0.510925,0.388789,0.389467,0.53364,0.43959,0.388192,0.388192,0.203266,0.203266,25.792792,19.264634,26.947333,26.88782,18.294625,23.113451,27,27,27,27,,,,,,,,,,,2580,2580,1.018877,1.018877,1.018877,1.018877,1.018877,1.018877,1.018877,1.018877,0.388192,0.388192,27,27,, +3380,0,0.29501,1,1,0,2,4,,4,3,General Motors,Rd,661208,2.521,2.816,0,6.32164,4.5,4.5,0.465805,0.465805,0.465805,0.465805,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.980041,1.051911,0.465805,0.465805,0.980041,1.051911,0.591581,0.626304,0.465805,0.465805,0.591581,0.626304,1.084343,0.985553,0.465805,0.465805,1.084343,0.985553,0.465805,0.465805,0.465805,0.465805,0.465805,0.465805,,,,,,,0.980041,1.051911,0.591581,0.626304,1.084343,0.985553,0.465805,0.465805,0.465805,0.465805,0.347114,0.368675,0.230576,0.240993,0.378405,0.348768,0.192843,0.192843,0.102322,0.102322,18.061069,16.827086,29.920806,28.261961,16.323792,17.960055,38,38,38,38,,,,,,,,,,,3096,3096,0.465805,0.465805,0.465805,0.465805,0.465805,0.465805,0.465805,0.465805,0.192843,0.192843,38,38,, +25728,0,0.249932,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.355695,0.15,4,0.99973,0.99973,0.99973,0.99973,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,,,,,,,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.344907,0.344907,0.344907,0.344907,0.344907,0.344907,0.344907,0.344907,0.177452,0.177452,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.99973,0.344907,0.344907,15,15,, +25729,0,0.365035,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.822175,0.15,4,1.460139,1.460139,1.460139,1.460139,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,,,,,,,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,0.503748,0.503748,0.503748,0.503748,0.503748,0.503748,0.503748,0.503748,0.259175,0.259175,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,1.460139,0.503748,0.503748,15,15,, +27174,0,0.447532,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.589975,0.15,4,1.790129,1.790129,1.790129,1.790129,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,,,,,,,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,0.617594,0.617594,0.617594,0.617594,0.617594,0.617594,0.617594,0.617594,0.317748,0.317748,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,1.790129,0.617594,0.617594,15,15,, +27176,0,0.272711,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.843797,0.15,4,1.090842,1.090842,1.090842,1.090842,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,,,,,,,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,0.376341,0.376341,0.376341,0.376341,0.376341,0.376341,0.376341,0.376341,0.193624,0.193624,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,1.090842,0.376341,0.376341,15,15,, +27178,0,0.255622,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.477609,0.15,4,1.022487,1.022487,1.022487,1.022487,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,,,,,,,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,0.352758,0.352758,0.352758,0.352758,0.352758,0.352758,0.352758,0.352758,0.181491,0.181491,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,1.022487,0.352758,0.352758,15,15,, +27180,0,0.236019,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.057546,0.15,4,0.944075,0.944075,0.944075,0.944075,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,,,,,,,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.325706,0.325706,0.325706,0.325706,0.325706,0.325706,0.325706,0.325706,0.167573,0.167573,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.944075,0.325706,0.325706,15,15,, +27358,0,0.448044,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.600936,0.15,4,1.792175,1.792175,1.792175,1.792175,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,,,,,,,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,0.6183,0.6183,0.6183,0.6183,0.6183,0.6183,0.6183,0.6183,0.318111,0.318111,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,1.792175,0.6183,0.6183,15,15,, +2982,0,0.738288,1,1,0,2,5,GRV,5,3,Hill,Rd,657608,3.031,3.769,0,15.820456,5.55,5,2.214864,2.214864,2.214864,2.214864,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,2.233324,3.524252,2.214864,2.214864,2.233324,3.524252,2.220005,2.224553,2.214864,2.214864,2.220005,2.224553,3.347028,2.372521,2.214864,2.214864,3.347028,2.372521,2.214864,2.214864,2.214864,2.214864,2.214864,2.214864,,,,,,,2.233324,3.524252,2.220005,2.224553,3.347028,2.372521,2.214864,2.214864,2.214864,2.214864,0.802889,1.190167,0.798893,0.800258,1.137,0.844648,0.797351,0.797351,0.413441,0.413441,19.834682,12.56927,19.953681,19.912891,13.234808,18.670977,20,20,20,20,,,,,,,,,,,2236,2236,2.214864,2.214864,2.214864,2.214864,2.214864,2.214864,2.214864,2.214864,0.797351,0.797351,20,20,, +27179,0,0.36567,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.835779,0.15,4,1.462679,1.462679,1.462679,1.462679,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,,,,,,,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,0.504624,0.504624,0.504624,0.504624,0.504624,0.504624,0.504624,0.504624,0.259625,0.259625,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,1.462679,0.504624,0.504624,15,15,, +2970,0,0.034557,1,1,0,2,5,,4,3,Main,St,660502,0,0.035,0,0.740502,5.8,4.5,0.076793,0.076793,0.076793,0.076793,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.077466,0.107971,0.076793,0.076793,0.077466,0.107971,0.077006,0.07717,0.076793,0.076793,0.077006,0.07717,0.104121,0.081428,0.076793,0.076793,0.104121,0.081428,0.076793,0.076793,0.076793,0.076793,0.076793,0.076793,,,,,,,0.077466,0.107971,0.077006,0.07717,0.104121,0.081428,0.076793,0.076793,0.076793,0.076793,0.02946,0.038612,0.029322,0.029371,0.037457,0.030649,0.029258,0.029258,0.01532,0.01532,26.76538,19.203283,26.925317,26.868183,19.913378,25.463158,27,27,27,27,,,,,,,,,,,2580,2580,0.076793,0.076793,0.076793,0.076793,0.076793,0.076793,0.076793,0.076793,0.029258,0.029258,27,27,, +3064,0,0.150165,1,1,0,2,4,,4,3,Main,St,660502,0.903,1.053,0,3.217831,4.5,4.5,0.237103,0.237103,0.237103,0.237103,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.371344,0.596276,0.237103,0.237103,0.371344,0.596276,0.297436,0.309629,0.237103,0.237103,0.297436,0.309629,0.651711,0.484436,0.237103,0.237103,0.651711,0.484436,0.237103,0.237103,0.237103,0.237103,0.237103,0.237103,,,,,,,0.371344,0.596276,0.297436,0.309629,0.651711,0.484436,0.237103,0.237103,0.237103,0.237103,0.138433,0.205913,0.116261,0.119918,0.222543,0.172361,0.098161,0.098161,0.052084,0.052084,24.263015,15.110327,30.291981,29.099148,13.825023,18.598801,38,38,38,38,,,,,,,,,,,3096,3096,0.237103,0.237103,0.237103,0.237103,0.237103,0.237103,0.237103,0.237103,0.098161,0.098161,38,38,, +3388,0,0.20858,1,1,0,2,4,,4,3,Huron,St,660605,0.275,0.484,0,4.469574,4.5,4.5,0.329337,0.329337,0.329337,0.329337,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.375255,0.408398,0.329337,0.329337,0.375255,0.408398,0.33028,0.331218,0.329337,0.329337,0.33028,0.331218,0.420212,0.388491,0.329337,0.329337,0.420212,0.388491,0.329337,0.329337,0.329337,0.329337,0.329337,0.329337,,,,,,,0.375255,0.408398,0.33028,0.331218,0.420212,0.388491,0.329337,0.329337,0.329337,0.329337,0.150121,0.160064,0.136628,0.13691,0.163608,0.154092,0.136346,0.136346,0.072344,0.072344,33.350143,30.64362,37.891559,37.78421,29.782099,32.213863,38,38,38,38,,,,,,,,,,,3096,3096,0.329337,0.329337,0.329337,0.329337,0.329337,0.329337,0.329337,0.329337,0.136346,0.136346,38,38,, +3482,0,0.239868,1,1,0,2,5,,4,3,1st,St,660203,0.05,0.29,0,5.140028,5.8,4.5,0.53304,0.53304,0.53304,0.53304,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.969319,1.641172,0.53304,0.53304,0.969319,1.641172,0.584285,0.6255,0.53304,0.53304,0.584285,0.6255,1.544441,1.258409,0.53304,0.53304,1.544441,1.258409,0.53304,0.53304,0.53304,0.53304,0.53304,0.53304,,,,,,,0.969319,1.641172,0.584285,0.6255,1.544441,1.258409,0.53304,0.53304,0.53304,0.53304,0.333972,0.535528,0.218462,0.230826,0.506509,0.420699,0.203088,0.203088,0.106341,0.106341,14.84762,8.769392,24.631966,23.008907,9.318632,11.436729,27,27,27,27,,,,,,,,,,,2580,2580,0.53304,0.53304,0.53304,0.53304,0.53304,0.53304,0.53304,0.53304,0.203088,0.203088,27,27,, +19848,0,0.187096,1,1,0,2,4,,4,3,Commerce,St,4104140,4.367,4.554,0,4.0092,4.5,4.5,0.295415,0.295415,0.295415,0.295415,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.697608,0.630722,0.295415,0.295415,0.697608,0.630722,0.381809,0.37871,0.295415,0.295415,0.381809,0.37871,0.755138,0.745793,0.295415,0.295415,0.755138,0.745793,0.295415,0.295415,0.295415,0.295415,0.295415,0.295415,,,,,,,0.697608,0.630722,0.381809,0.37871,0.755138,0.745793,0.295415,0.295415,0.295415,0.295415,0.24296,0.222894,0.14822,0.14729,0.260219,0.257415,0.122302,0.122302,0.064893,0.064893,16.09179,17.798256,29.401505,29.642127,14.865834,15.052111,38,38,38,38,,,,,,,,,,,3096,3096,0.295415,0.295415,0.295415,0.295415,0.295415,0.295415,0.295415,0.295415,0.122302,0.122302,38,38,, +25730,0,0.38396,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.227714,0.15,4,1.53584,1.53584,1.53584,1.53584,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,,,,,,,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,0.529865,0.529865,0.529865,0.529865,0.529865,0.529865,0.529865,0.529865,0.272612,0.272612,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,1.53584,0.529865,0.529865,15,15,, +25732,0,0.394188,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.446892,0.15,4,1.576753,1.576753,1.576753,1.576753,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,,,,,,,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,0.54398,0.54398,0.54398,0.54398,0.54398,0.54398,0.54398,0.54398,0.279874,0.279874,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,1.576753,0.54398,0.54398,15,15,, +2921,0,0.243099,1,1,0,2,4,,4,3,Huron,St,660605,0.032,0.275,0,5.209262,4.5,4.5,0.38384,0.38384,0.38384,0.38384,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.881865,1.237318,0.38384,0.38384,0.881865,1.237318,0.611522,0.67146,0.38384,0.38384,0.611522,0.67146,1.403063,1.084447,0.38384,0.38384,1.403063,1.084447,0.38384,0.38384,0.38384,0.38384,0.38384,0.38384,,,,,,,0.881865,1.237318,0.611522,0.67146,1.403063,1.084447,0.38384,0.38384,0.38384,0.38384,0.308317,0.414953,0.227214,0.245196,0.464677,0.369092,0.15891,0.15891,0.084317,0.084317,16.539876,11.788352,23.851851,21.722709,10.395783,13.450113,38,38,38,38,,,,,,,,,,,3096,3096,0.38384,0.38384,0.38384,0.38384,0.38384,0.38384,0.38384,0.38384,0.15891,0.15891,38,38,, +3387,0,0.285665,1,1,0,2,4,,4,3,Main,St,660502,0.617,0.903,0,6.121396,4.5,4.5,0.45105,0.45105,0.45105,0.45105,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.706421,1.134317,0.45105,0.45105,0.706421,1.134317,0.565823,0.589018,0.45105,0.45105,0.565823,0.589018,1.239774,0.92156,0.45105,0.45105,1.239774,0.92156,0.45105,0.45105,0.45105,0.45105,0.45105,0.45105,,,,,,,0.706421,1.134317,0.565823,0.589018,1.239774,0.92156,0.45105,0.45105,0.45105,0.45105,0.263346,0.391715,0.221167,0.228125,0.423352,0.327888,0.186735,0.186735,0.099081,0.099081,24.263015,15.110327,30.291981,29.099148,13.825023,18.598801,38,38,38,38,,,,,,,,,,,3096,3096,0.45105,0.45105,0.45105,0.45105,0.45105,0.45105,0.45105,0.45105,0.186735,0.186735,38,38,, +3229,0,0.032319,1,1,0,2,4,,4,3,General Motors,Rd,660605,0,0.032,0,0.692559,4.5,4.5,0.051031,0.051031,0.051031,0.051031,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.131229,0.196024,0.051031,0.051031,0.131229,0.196024,0.090056,0.098287,0.051031,0.051031,0.090056,0.098287,0.217935,0.160586,0.051031,0.051031,0.217935,0.160586,0.051031,0.051031,0.051031,0.051031,0.051031,0.051031,,,,,,,0.131229,0.196024,0.090056,0.098287,0.217935,0.160586,0.051031,0.051031,0.051031,0.051031,0.045186,0.064625,0.032834,0.035304,0.071198,0.053993,0.021127,0.021127,0.01121,0.01121,14.777019,9.892482,21.532896,19.729624,8.897919,12.075528,38,38,38,38,,,,,,,,,,,3096,3096,0.051031,0.051031,0.051031,0.051031,0.051031,0.051031,0.051031,0.051031,0.021127,0.021127,38,38,, +2832,0,0.124494,1,1,0,2,5,,4,3,Main,St,660502,0.493,0.617,0,2.667737,5.8,4.5,0.276654,0.276654,0.276654,0.276654,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.320197,0.42496,0.276654,0.276654,0.320197,0.42496,0.279287,0.280727,0.276654,0.276654,0.279287,0.280727,0.45141,0.370467,0.276654,0.276654,0.45141,0.370467,0.276654,0.276654,0.276654,0.276654,0.276654,0.276654,,,,,,,0.320197,0.42496,0.279287,0.280727,0.45141,0.370467,0.276654,0.276654,0.276654,0.276654,0.118468,0.149897,0.106195,0.106627,0.157832,0.133549,0.105405,0.105405,0.055193,0.055193,23.328339,17.57734,26.74551,26.608317,16.54741,20.162828,27,27,27,27,,,,,,,,,,,2580,2580,0.276654,0.276654,0.276654,0.276654,0.276654,0.276654,0.276654,0.276654,0.105405,0.105405,27,27,, +2528,0,0.184536,1,1,0,2,4,,4,3,Milford,Rd,660504,0,0.185,0,3.954348,4.5,4.5,0.291373,0.291373,0.291373,0.291373,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.393995,0.500164,0.291373,0.291373,0.393995,0.500164,0.35195,0.357809,0.291373,0.291373,0.35195,0.357809,0.467016,0.432152,0.291373,0.291373,0.467016,0.432152,0.291373,0.291373,0.291373,0.291373,0.291373,0.291373,,,,,,,0.393995,0.500164,0.35195,0.357809,0.467016,0.432152,0.291373,0.291373,0.291373,0.291373,0.151415,0.183266,0.138801,0.140559,0.173321,0.162862,0.120628,0.120628,0.064005,0.064005,28.102342,22.137089,31.459537,30.944331,23.708328,25.621012,38,38,38,38,,,,,,,,,,,3096,3096,0.291373,0.291373,0.291373,0.291373,0.291373,0.291373,0.291373,0.291373,0.120628,0.120628,38,38,, +3076,0,0.171331,1,1,0,2,4,,4,3,Summit,St,660504,0.185,0.356,0,3.671386,4.5,4.5,0.270523,0.270523,0.270523,0.270523,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.442909,0.669222,0.270523,0.270523,0.442909,0.669222,0.384434,0.395131,0.270523,0.270523,0.384434,0.395131,0.697578,0.581629,0.270523,0.270523,0.697578,0.581629,0.270523,0.270523,0.270523,0.270523,0.270523,0.270523,,,,,,,0.442909,0.669222,0.384434,0.395131,0.697578,0.581629,0.270523,0.270523,0.270523,0.270523,0.163712,0.231606,0.14617,0.149379,0.240113,0.205328,0.111997,0.111997,0.059425,0.059425,23.209911,15.360949,26.740328,26.01637,14.736532,17.674305,38,38,38,38,,,,,,,,,,,3096,3096,0.270523,0.270523,0.270523,0.270523,0.270523,0.270523,0.270523,0.270523,0.111997,0.111997,38,38,, +19849,0,0.272221,1,1,0,2,4,,4,3,Commerce,Rd,4104140,4.095,4.367,0,5.83331,4.5,4.5,0.429823,0.429823,0.429823,0.429823,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.623237,0.524891,0.429823,0.429823,0.623237,0.524891,0.456542,0.451912,0.429823,0.429823,0.456542,0.451912,0.663714,0.768498,0.429823,0.429823,0.663714,0.768498,0.429823,0.429823,0.429823,0.429823,0.429823,0.429823,,,,,,,0.623237,0.524891,0.456542,0.451912,0.663714,0.768498,0.429823,0.429823,0.429823,0.429823,0.235971,0.206467,0.185962,0.184573,0.248114,0.279549,0.177947,0.177947,0.094418,0.094418,26.207157,31.117469,35.776079,36.142581,24.608887,21.253506,38,38,38,38,,,,,,,,,,,3096,3096,0.429823,0.429823,0.429823,0.429823,0.429823,0.429823,0.429823,0.429823,0.177947,0.177947,38,38,, +19850,0,0.083349,1,1,0,2,4,,4,3,Commerce,Rd,4104140,4.012,4.095,0,1.786043,4.5,4.5,0.131603,0.131603,0.131603,0.131603,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.179002,0.163005,0.131603,0.131603,0.179002,0.163005,0.138707,0.138543,0.131603,0.131603,0.138707,0.138543,0.192483,0.198272,0.131603,0.131603,0.192483,0.198272,0.131603,0.131603,0.131603,0.131603,0.131603,0.131603,,,,,,,0.179002,0.163005,0.138707,0.138543,0.192483,0.198272,0.131603,0.131603,0.131603,0.131603,0.068703,0.063904,0.056615,0.056566,0.072748,0.074484,0.054484,0.054484,0.028909,0.028909,27.937815,30.679611,36.053825,36.096435,25.981066,25.222518,38,38,38,38,,,,,,,,,,,3096,3096,0.131603,0.131603,0.131603,0.131603,0.131603,0.131603,0.131603,0.131603,0.054484,0.054484,38,38,, +2818,0,0.037066,1,1,0,2,4,,4,3,Main,St,660502,1.053,1.09,0,0.794282,4.5,4.5,0.058526,0.058526,0.058526,0.058526,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.079139,0.100464,0.058526,0.058526,0.079139,0.100464,0.070694,0.071871,0.058526,0.058526,0.070694,0.071871,0.093806,0.086803,0.058526,0.058526,0.093806,0.086803,0.058526,0.058526,0.058526,0.058526,0.058526,0.058526,,,,,,,0.079139,0.100464,0.070694,0.071871,0.093806,0.086803,0.058526,0.058526,0.058526,0.058526,0.030414,0.036811,0.02788,0.028233,0.034814,0.032713,0.02423,0.02423,0.012856,0.012856,28.102342,22.137089,31.459537,30.944331,23.708328,25.621012,38,38,38,38,,,,,,,,,,,3096,3096,0.058526,0.058526,0.058526,0.058526,0.058526,0.058526,0.058526,0.058526,0.02423,0.02423,38,38,, +2492,0,0.050198,1,1,0,2,5,,4,3,1st,St,660203,0,0.05,0,1.075661,5.8,4.5,0.11155,0.11155,0.11155,0.11155,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.202851,0.12506,0.11155,0.11155,0.202851,0.12506,0.122274,0.113848,0.11155,0.11155,0.122274,0.113848,0.323207,0.121673,0.11155,0.11155,0.323207,0.121673,0.11155,0.11155,0.11155,0.11155,0.11155,0.11155,,,,,,,0.202851,0.12506,0.122274,0.113848,0.323207,0.121673,0.11155,0.11155,0.11155,0.11155,0.069891,0.046554,0.045718,0.04319,0.105998,0.045538,0.042501,0.042501,0.022254,0.022254,14.84762,24.083166,24.631966,26.454932,9.318632,24.7536,27,27,27,27,,,,,,,,,,,2580,2580,0.11155,0.11155,0.11155,0.11155,0.11155,0.11155,0.11155,0.11155,0.042501,0.042501,27,27,, +3149,0,0.14159,1,1,0,2,4,,4,3,River,Dr,660204,0,0.142,0,3.034079,4.5,4.5,0.223564,0.223564,0.223564,0.223564,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.254734,0.277233,0.223564,0.223564,0.254734,0.277233,0.224204,0.224841,0.223564,0.223564,0.224204,0.224841,0.285253,0.263719,0.223564,0.223564,0.285253,0.263719,0.223564,0.223564,0.223564,0.223564,0.223564,0.223564,,,,,,,0.254734,0.277233,0.224204,0.224841,0.285253,0.263719,0.223564,0.223564,0.223564,0.223564,0.101907,0.108656,0.092747,0.092938,0.111062,0.104602,0.092555,0.092555,0.049109,0.049109,33.350143,30.64362,37.891559,37.78421,29.782099,32.213863,38,38,38,38,,,,,,,,,,,3096,3096,0.223564,0.223564,0.223564,0.223564,0.223564,0.223564,0.223564,0.223564,0.092555,0.092555,38,38,, +3268,0,0.02296,1,1,0,2,4,,4,3,River,Dr,660204,0.142,0.165,0,0.491997,4.5,4.5,0.036252,0.036252,0.036252,0.036252,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.041307,0.0364,0.036252,0.036252,0.041307,0.0364,0.036356,0.036255,0.036252,0.036252,0.036356,0.036255,0.046256,0.036416,0.036252,0.036252,0.046256,0.036416,0.036252,0.036252,0.036252,0.036252,0.036252,0.036252,,,,,,,0.041307,0.0364,0.036356,0.036255,0.046256,0.036416,0.036252,0.036252,0.036252,0.036252,0.016525,0.015053,0.01504,0.015009,0.018009,0.015058,0.015009,0.015009,0.007963,0.007963,33.350143,37.846398,37.891559,37.997652,29.782099,37.8288,38,38,38,38,,,,,,,,,,,3096,3096,0.036252,0.036252,0.036252,0.036252,0.036252,0.036252,0.036252,0.036252,0.015009,0.015009,38,38,, +20601,-1,0.05867,0,1,0,2,5,,4,3,River/1st Cutoff,,4401618,0,0.059,0,1.257215,5.8,4.5,,0.130378,,0.130378,,27,,7500,,1703,,3750,,2420,,2580,,2577,,0.139302,,0.130378,,0.139302,,0.130659,,0.130378,,0.130659,,0.135363,,0.130378,,0.135363,,0.130378,,0.130378,,0.130378,,,,,,,,0.139302,,0.130659,,0.135363,,0.130378,,0.130378,,0.052351,,0.049758,,0.05117,,0.049674,,0.02601,,25.270369,,26.941937,,26.005625,,27,,27,,,,,,,,,,,,2580,,0.130378,,0.130378,,0.130378,,0.130378,,0.049674,,27,, +25734,0,0.17488,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.747437,0.15,4,0.699522,0.699522,0.699522,0.699522,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,,,,,,,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.241335,0.241335,0.241335,0.241335,0.241335,0.241335,0.241335,0.241335,0.124165,0.124165,14.999998,14.999997,14.999999,14.999999,14.999994,14.999994,15,15,15,15,,,,,,,,,,,34400,34400,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.699522,0.241335,0.241335,15,15,, +19847,0,0.047759,1,1,0,2,4,,4,3,Commerce,St,4104140,4.554,4.602,0,1.023411,4.5,4.5,0.075409,0.075409,0.075409,0.075409,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.107118,0.103292,0.075409,0.075409,0.107118,0.103292,0.083444,0.081872,0.075409,0.075409,0.083444,0.081872,0.116048,0.115084,0.075409,0.075409,0.116048,0.115084,0.075409,0.075409,0.075409,0.075409,0.075409,0.075409,,,,,,,0.107118,0.103292,0.083444,0.081872,0.116048,0.115084,0.075409,0.075409,0.075409,0.075409,0.040732,0.039584,0.03363,0.033158,0.043411,0.043122,0.031219,0.031219,0.016565,0.016565,26.751457,27.742214,34.340826,35.000349,24.692767,24.899563,38,38,38,38,,,,,,,,,,,3096,3096,0.075409,0.075409,0.075409,0.075409,0.075409,0.075409,0.075409,0.075409,0.031219,0.031219,38,38,, +27172,0,1.651262,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.384179,0.15,4,6.605047,6.605047,6.605047,6.605047,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,,,,,,,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,2.278741,2.278741,2.278741,2.278741,2.278741,2.278741,2.278741,2.278741,1.172396,1.172396,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,6.605047,2.278741,2.278741,15,15,, +3065,0,0.517547,1,1,0,2,7,GRV,5,3,Charms,Rd,660802,0,0.517,0,11.090299,5.55,5,1.552642,1.552642,1.552642,1.552642,20,20,6500,6500,1476,1476,3250,3250,2097,2097,2236,2236,2233,2233,1.612417,1.552664,1.552642,1.552642,1.612417,1.552664,1.552647,1.552652,1.552642,1.552642,1.552647,1.552652,1.553281,1.610898,1.552642,1.552642,1.553281,1.610898,1.552642,1.552642,1.552642,1.552642,1.552642,1.552642,,,,,,,1.612417,1.552664,1.552647,1.552652,1.553281,1.610898,1.552642,1.552642,1.552642,1.552642,0.576884,0.558958,0.558953,0.558954,0.559143,0.576428,0.558951,0.558951,0.289826,0.289826,19.258562,19.999719,19.999934,19.999868,19.991776,19.276729,20,20,20,20,,,,,,,,,,,2236,2236,1.552642,1.552642,1.552642,1.552642,1.552642,1.552642,1.552642,1.552642,0.558951,0.558951,20,20,, +617,0,0.996976,1,1,0,2,4,,5,3,Wixom,Trl,631910,5,5.997,0,21.363768,3,4,1.495464,1.495464,1.495464,1.495464,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.962105,2.24838,1.495464,1.495464,1.962105,2.24838,1.545961,1.557024,1.495464,1.495464,1.545961,1.557024,2.127272,2.096948,1.495464,1.495464,2.127272,2.096948,1.495464,1.495464,1.495464,1.495464,1.495464,1.495464,,,,,,,1.962105,2.24838,1.545961,1.557024,2.127272,2.096948,1.495464,1.495464,1.495464,1.495464,0.768087,0.85397,0.643244,0.646563,0.817637,0.80854,0.628095,0.628095,0.333987,0.333987,30.486921,26.605183,38.693451,38.418524,28.119846,28.526485,40,40,40,40,,,,,,,,,,,3096,3096,1.495464,1.495464,1.495464,1.495464,1.495464,1.495464,1.495464,1.495464,0.628095,0.628095,40,40,, +2147,0,0.758504,1,1,0,2,4,,5,3,Wixom,Trl,631910,5.997,6.755,0,16.253663,3,4,1.137756,1.137756,1.137756,1.137756,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.38084,1.665325,1.137756,1.137756,1.38084,1.665325,1.165355,1.171652,1.137756,1.137756,1.165355,1.171652,1.573465,1.472599,1.137756,1.137756,1.573465,1.472599,1.137756,1.137756,1.137756,1.137756,1.137756,1.137756,,,,,,,1.38084,1.665325,1.165355,1.171652,1.573465,1.472599,1.137756,1.137756,1.137756,1.137756,0.550783,0.636128,0.486137,0.488026,0.60857,0.57831,0.477858,0.477858,0.254099,0.254099,32.958391,27.328156,39.052686,38.842797,28.923587,30.904725,40,40,40,40,,,,,,,,,,,3096,3096,1.137756,1.137756,1.137756,1.137756,1.137756,1.137756,1.137756,1.137756,0.477858,0.477858,40,40,, +19844,0,0.754231,1,1,0,2,4,,5,3,Commerce,Rd,4104140,5.584,6.338,0,16.162097,3,4,1.131347,1.131347,1.131347,1.131347,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,2.020197,1.888615,1.131347,1.131347,2.020197,1.888615,1.301505,1.321308,1.131347,1.131347,1.301505,1.321308,2.001497,2.132147,1.131347,1.131347,2.001497,2.132147,1.131347,1.131347,1.131347,1.131347,1.131347,1.131347,,,,,,,2.020197,1.888615,1.301505,1.321308,2.001497,2.132147,1.131347,1.131347,1.131347,1.131347,0.741821,0.702346,0.526213,0.532154,0.736211,0.775406,0.475166,0.475166,0.252667,0.252667,22.400725,23.96141,34.770417,34.249295,22.610014,21.224552,40,40,40,40,,,,,,,,,,,3096,3096,1.131347,1.131347,1.131347,1.131347,1.131347,1.131347,1.131347,1.131347,0.475166,0.475166,40,40,, +21907,0,0.643653,1,1,0,2,5,,4,3,Duck Lake,Rd,4413156,0,0.644,0,13.792569,5.8,4.5,1.43034,1.43034,1.43034,1.43034,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.625489,2.833732,1.43034,1.43034,1.625489,2.833732,1.470637,1.496973,1.43034,1.43034,1.470637,1.496973,2.728005,1.967438,1.43034,1.43034,2.728005,1.967438,1.43034,1.43034,1.43034,1.43034,1.43034,1.43034,,,,,,,1.625489,2.833732,1.470637,1.496973,2.728005,1.967438,1.43034,1.43034,1.43034,1.43034,0.603504,0.965977,0.557049,0.564949,0.934259,0.706089,0.54496,0.54496,0.285353,0.285353,23.758512,13.628386,26.260174,25.798196,14.156567,19.629184,27,27,27,27,,,,,,,,,,,2580,2580,1.43034,1.43034,1.43034,1.43034,1.43034,1.43034,1.43034,1.43034,0.54496,0.54496,27,27,, +19845,0,0.405183,1,1,0,2,4,,4,3,Commerce,Rd,4104140,5.179,5.584,0,8.682495,4.5,4.5,0.639763,0.639763,0.639763,0.639763,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.104022,1.593225,0.639763,0.639763,1.104022,1.593225,0.734811,0.766033,0.639763,0.639763,0.734811,0.766033,1.670014,1.412532,0.639763,0.639763,1.670014,1.412532,0.639763,0.639763,0.639763,0.639763,0.639763,0.639763,,,,,,,1.104022,1.593225,0.734811,0.766033,1.670014,1.412532,0.639763,0.639763,0.639763,0.639763,0.40414,0.5509,0.293376,0.302743,0.573937,0.496693,0.264862,0.264862,0.140535,0.140535,22.020375,15.258982,33.084699,31.736202,14.557352,17.210924,38,38,38,38,,,,,,,,,,,3096,3096,0.639763,0.639763,0.639763,0.639763,0.639763,0.639763,0.639763,0.639763,0.264862,0.264862,38,38,, +2776,0,0.125746,1,1,0,2,4,,4,3,Atlantic,St,660202,0.333,0.458,0,2.694559,4.5,4.5,0.198546,0.198546,0.198546,0.198546,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.307897,0.24428,0.198546,0.198546,0.307897,0.24428,0.203532,0.202503,0.198546,0.198546,0.203532,0.202503,0.264116,0.286723,0.198546,0.198546,0.264116,0.286723,0.198546,0.198546,0.198546,0.198546,0.198546,0.198546,,,,,,,0.307897,0.24428,0.203532,0.202503,0.264116,0.286723,0.198546,0.198546,0.198546,0.198546,0.115003,0.095918,0.083694,0.083385,0.101869,0.108651,0.082198,0.082198,0.043614,0.043614,24.504177,30.88576,37.069264,37.25764,28.56609,26.313767,38,38,38,38,,,,,,,,,,,3096,3096,0.198546,0.198546,0.198546,0.198546,0.198546,0.198546,0.198546,0.198546,0.082198,0.082198,38,38,, +1068,0,0.733878,1,1,0,2,4,,5,3,Wixom,Rd,631910,4.267,5,0,15.725952,3,4,1.100817,1.100817,1.100817,1.100817,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.644554,3.168433,1.100817,1.100817,1.644554,3.168433,1.268501,1.331911,1.100817,1.100817,1.268501,1.331911,2.634301,2.023719,1.100817,1.100817,2.634301,2.023719,1.100817,1.100817,1.100817,1.100817,1.100817,1.100817,,,,,,,1.644554,3.168433,1.268501,1.331911,2.634301,2.023719,1.100817,1.100817,1.100817,1.100817,0.625464,1.082628,0.512648,0.531671,0.922388,0.739214,0.462343,0.462343,0.245849,0.245849,26.77483,13.897302,34.712365,33.059757,16.715121,21.758291,40,40,40,40,,,,,,,,,,,3096,3096,1.100817,1.100817,1.100817,1.100817,1.100817,1.100817,1.100817,1.100817,0.462343,0.462343,40,40,, +1169,0,0.023698,1,1,0,2,5,,4,3,Sleeth,Rd,629507,0,0.024,0,0.507804,5.8,4.5,0.052661,0.052661,0.052661,0.052661,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.138295,0.28437,0.052661,0.052661,0.138295,0.28437,0.061522,0.064221,0.052661,0.052661,0.061522,0.064221,0.28437,0.205177,0.052661,0.052661,0.28437,0.205177,0.052661,0.052661,0.052661,0.052661,0.052661,0.052661,,,,,,,0.138295,0.28437,0.061522,0.064221,0.28437,0.205177,0.052661,0.052661,0.052661,0.052661,0.045754,0.089577,0.022722,0.023532,0.089577,0.065819,0.020064,0.020064,0.010506,0.010506,10.281301,5,23.111094,22.1399,5,6.929887,27,27,27,27,,,,,,,,,,,2580,2580,0.052661,0.052661,0.052661,0.052661,0.052661,0.052661,0.052661,0.052661,0.020064,0.020064,27,27,, +19843,0,0.251475,1,1,0,2,4,,5,3,Commerce,Rd,4104140,6.338,6.589,0,5.38876,3,4,0.377213,0.377213,0.377213,0.377213,40,40,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.307935,0.828265,0.377213,0.377213,1.307935,0.828265,0.529783,0.502646,0.377213,0.377213,0.529783,0.502646,0.980779,1.229557,0.377213,0.377213,0.980779,1.229557,0.377213,0.377213,0.377213,0.377213,0.377213,0.377213,,,,,,,1.307935,0.828265,0.529783,0.502646,0.980779,1.229557,0.377213,0.377213,0.377213,0.377213,0.437646,0.293745,0.204201,0.196059,0.339499,0.414133,0.15843,0.15843,0.084244,0.084244,11.536142,18.217038,28.480556,30.01822,15.384221,12.271512,40,40,40,40,,,,,,,,,,,3096,3096,0.377213,0.377213,0.377213,0.377213,0.377213,0.377213,0.377213,0.377213,0.15843,0.15843,40,40,, +21905,0,0.381146,1,1,0,2,5,,4,3,Duck Lake,Rd,4413156,0.644,1.025,0,8.167415,5.8,4.5,0.846991,0.846991,0.846991,0.846991,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,0.96255,1.678024,0.846991,0.846991,0.96255,1.678024,0.870853,0.886448,0.846991,0.846991,0.870853,0.886448,1.615417,1.165039,0.846991,0.846991,1.615417,1.165039,0.846991,0.846991,0.846991,0.846991,0.846991,0.846991,,,,,,,0.96255,1.678024,0.870853,0.886448,1.615417,1.165039,0.846991,0.846991,0.846991,0.846991,0.357371,0.572014,0.329862,0.334541,0.553231,0.418118,0.322704,0.322704,0.168975,0.168975,23.758512,13.628386,26.260174,25.798196,14.156567,19.629184,27,27,27,27,,,,,,,,,,,2580,2580,0.846991,0.846991,0.846991,0.846991,0.846991,0.846991,0.846991,0.846991,0.322704,0.322704,27,27,, +558,0,0.05919,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.543,2.602,0,1.268348,3.7,5,0.088784,0.088784,0.088784,0.088784,40,40,23100,23100,5244,5244,11550,11550,7452,7452,7946,7946,7937,7937,0.097404,0.113974,0.088784,0.088784,0.097404,0.113974,0.089292,0.094801,0.088784,0.088784,0.089292,0.094801,0.096339,0.11243,0.088784,0.088784,0.096339,0.11243,0.088784,0.088784,0.088784,0.088784,0.088784,0.088784,,,,,,,0.097404,0.113974,0.089292,0.094801,0.096339,0.11243,0.088784,0.088784,0.088784,0.088784,0.039875,0.044846,0.037442,0.039094,0.039556,0.044383,0.037289,0.037289,0.019828,0.019828,36.460242,31.159458,39.772589,37.461396,36.863237,31.587538,40,40,40,40,,,,,,,,,,,7946,7946,0.088784,0.088784,0.088784,0.088784,0.088784,0.088784,0.088784,0.088784,0.037289,0.037289,40,40,, +1881,0,0.619238,1,1,0,2,5,,4,3,12 Mile,Rd,639102,0,0.619,0,13.269382,5.8,4.5,1.376084,1.376084,1.376084,1.376084,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,,,,,,,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,0.524288,0.524288,0.524288,0.524288,0.524288,0.524288,0.524288,0.524288,0.274529,0.274529,27,27,27,27,27,27,27,27,27,27,,,,,,,,,,,2580,2580,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,1.376084,0.524288,0.524288,27,27,, +2622,0,0.310388,1,1,1,2,4,,4,3,Beck,Rd,662105,0.361,0.671,0,6.651177,4.5,4.5,0.490087,0.490087,0.490087,0.490087,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,1.032849,0.888314,0.490087,0.490087,1.032849,0.888314,0.713343,0.693026,0.490087,0.490087,0.713343,0.693026,1.136777,1.249629,0.490087,0.490087,1.136777,1.249629,0.490087,0.490087,0.490087,0.490087,0.490087,0.490087,,,,,,,1.032849,0.888314,0.713343,0.693026,1.136777,1.249629,0.490087,0.490087,0.490087,0.490087,0.365725,0.322364,0.269873,0.263778,0.396903,0.430759,0.202896,0.202896,0.107656,0.107656,18.030994,20.964773,26.107081,26.872442,16.382545,14.903061,38,38,38,38,,,,,,,,,,,3406,3406,0.490087,0.490087,0.490087,0.490087,0.490087,0.490087,0.490087,0.490087,0.202896,0.202896,38,38,, +2648,1,0.547452,3,0,0,1,1,,4,3,E I 96,,657303,6.955,7.502,0,,0.8,7.5,0.469245,,0.469245,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.622275,,0.469245,,0.622275,,0.471496,,0.469245,,0.471496,,0.481788,,0.469245,,0.481788,,0.469245,,0.469245,,0.469245,,,,,,,,0.622275,,0.471496,,0.481788,,0.469245,,0.469245,,0.285224,,0.23999,,0.243078,,0.239315,,0.130607,,52.785615,,69.665812,,68.177643,,70,,70,,,,,,,,,,,,22704,,0.469245,,0.469245,,0.469245,,0.469245,,0.239315,,70,,, +2823,0,0.600269,1,1,1,2,3,,4,3,Pontiac,Trl,657404,4.181,4.781,0,12.862917,3.7,5,0.900404,0.900404,0.900404,0.900404,40,40,12100,12100,2747,2747,6050,6050,3903,3903,4162,4162,4158,4158,0.98152,1.87067,0.900404,0.900404,0.98152,1.87067,0.932551,0.940739,0.900404,0.900404,0.932551,0.940739,1.881146,1.229232,0.900404,0.900404,1.881146,1.229232,0.900404,0.900404,0.900404,0.900404,0.900404,0.900404,,,,,,,0.98152,1.87067,0.932551,0.940739,1.881146,1.229232,0.900404,0.900404,0.900404,0.900404,0.402504,0.669249,0.387814,0.39027,0.672392,0.476818,0.37817,0.37817,0.20109,0.20109,36.694288,19.253087,38.621104,38.28499,19.145868,29.299735,40,40,40,40,,,,,,,,,,,4162,4162,0.900404,0.900404,0.900404,0.900404,0.900404,0.900404,0.900404,0.900404,0.37817,0.37817,40,40,, +2845,-1,0.406175,0,3,0,1,1,,4,3,W I 96,,657304,7.607,8.013,0,,0.8,7.5,,0.34815,,0.34815,,70,,66000,,14982,,33000,,21292,,22704,,22678,,0.376692,,0.34815,,0.376692,,0.358124,,0.34815,,0.358124,,0.752479,,0.34815,,0.752479,,0.34815,,0.34815,,0.34815,,,,,,,,0.376692,,0.358124,,0.752479,,0.34815,,0.34815,,0.186119,,0.180549,,0.298855,,0.177557,,0.096902,,64.696069,,68.050483,,32.386965,,70,,70,,,,,,,,,,,,22704,,0.34815,,0.34815,,0.34815,,0.34815,,0.177557,,70,, +2888,0,0.725039,1,1,0,2,5,,4,3,11 Mile,Rd,661506,0,0.725,0,15.536544,5.8,4.5,1.611197,1.611197,1.611197,1.611197,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.711333,1.611216,1.611197,1.611197,1.711333,1.611216,1.611241,1.61123,1.611197,1.611197,1.611241,1.61123,1.612334,1.628461,1.611197,1.611197,1.612334,1.628461,1.611197,1.611197,1.611197,1.611197,1.611197,1.611197,,,,,,,1.711333,1.611216,1.611241,1.61123,1.612334,1.628461,1.611197,1.611197,1.611197,1.611197,0.643907,0.613872,0.613879,0.613876,0.614207,0.619045,0.613866,0.613866,0.321434,0.321434,25.420143,26.999686,26.999263,26.999446,26.980964,26.713772,27,27,27,27,,,,,,,,,,,2580,2580,1.611197,1.611197,1.611197,1.611197,1.611197,1.611197,1.611197,1.611197,0.613866,0.613866,27,27,, +3885,0,0.710141,1,1,0,2,5,,4,3,West,Rd,705704,0,0.71,0,15.217307,5.8,4.5,1.578091,1.578091,1.578091,1.578091,27,27,7500,7500,1703,1703,3750,3750,2420,2420,2580,2580,2577,2577,1.619372,1.578096,1.578091,1.578091,1.619372,1.578096,1.578127,1.578098,1.578091,1.578091,1.578127,1.578098,1.578401,1.58138,1.578091,1.578091,1.578401,1.58138,1.578091,1.578091,1.578091,1.578091,1.578091,1.578091,,,,,,,1.619372,1.578096,1.578127,1.578098,1.578401,1.58138,1.578091,1.578091,1.578091,1.578091,0.613637,0.601254,0.601264,0.601255,0.601346,0.602239,0.601253,0.601253,0.314829,0.314829,26.311723,26.99991,26.999384,26.999884,26.994699,26.943844,27,27,27,27,,,,,,,,,,,2580,2580,1.578091,1.578091,1.578091,1.578091,1.578091,1.578091,1.578091,1.578091,0.601253,0.601253,27,27,, +19807,0,0.655215,2,2,1,2,4,,4,3,Grand River,Ave,4104142,8.324,8.979,0,14.040314,4.5,4.5,1.034549,1.034549,1.034549,1.034549,38,38,18900,18900,4290,4290,9450,9450,6097,6097,6502,6502,6494,6494,1.153726,1.034629,1.034549,1.034549,1.153726,1.034629,1.034559,1.034554,1.034549,1.034549,1.034559,1.034554,1.037949,1.067564,1.034549,1.034549,1.037949,1.067564,1.034549,1.034549,1.034549,1.034549,1.034549,1.034549,,,,,,,1.153726,1.034629,1.034559,1.034554,1.037949,1.067564,1.034549,1.034549,1.034549,1.034549,0.464056,0.428327,0.428306,0.428305,0.429323,0.438208,0.428303,0.428303,0.227256,0.227256,34.074716,37.997092,37.999646,37.999833,37.875527,36.824839,38,38,38,38,,,,,,,,,,,6502,6502,1.034549,1.034549,1.034549,1.034549,1.034549,1.034549,1.034549,1.034549,0.428303,0.428303,38,38,, +21902,0,0.50716,1,1,1,2,4,,4,3,Park,Dr,4413388,0,0.507,0,10.867714,4.5,4.5,0.800779,0.800779,0.800779,0.800779,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.807605,1.077054,0.800779,0.800779,0.807605,1.077054,0.834601,0.860076,0.800779,0.800779,0.834601,0.860076,1.193543,0.952451,0.800779,0.800779,1.193543,0.952451,0.800779,0.800779,0.800779,0.800779,0.800779,0.800779,,,,,,,0.807605,1.077054,0.834601,0.860076,1.193543,0.952451,0.800779,0.800779,0.800779,0.800779,0.33357,0.414405,0.341669,0.349312,0.449352,0.377024,0.331522,0.331522,0.175904,0.175904,37.678816,28.252634,36.460053,35.380139,25.495184,31.948744,38,38,38,38,,,,,,,,,,,3406,3406,0.800779,0.800779,0.800779,0.800779,0.800779,0.800779,0.800779,0.800779,0.331522,0.331522,38,38,, +25979,0,0.676739,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.501558,0.15,4,2.706958,2.706958,2.706958,2.706958,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,,,,,,,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,0.9339,0.9339,0.9339,0.9339,0.9339,0.9339,0.9339,0.9339,0.480485,0.480485,15,14.999998,14.999999,14.999999,14.999998,15,15,15,15,15,,,,,,,,,,,34400,34400,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,2.706958,0.9339,0.9339,15,15,, +27154,0,0.509295,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.913465,0.15,4,2.03718,2.03718,2.03718,2.03718,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.037181,2.03718,2.03718,2.03718,2.037181,2.03718,2.03718,2.03718,2.03718,2.03718,2.03718,2.03718,2.03718,2.037181,2.03718,2.03718,2.03718,2.037181,2.03718,2.03718,2.03718,2.03718,2.03718,2.03718,,,,,,,2.037181,2.03718,2.03718,2.03718,2.03718,2.037181,2.03718,2.03718,2.03718,2.03718,0.702827,0.702827,0.702827,0.702827,0.702827,0.702827,0.702827,0.702827,0.361599,0.361599,14.999996,15,15,15,14.999999,14.999996,15,15,15,15,,,,,,,,,,,34400,34400,2.03718,2.03718,2.03718,2.03718,2.03718,2.03718,2.03718,2.03718,0.702827,0.702827,15,15,, +27166,0,0.579438,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.416536,0.15,4,2.317753,2.317753,2.317753,2.317753,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,,,,,,,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,0.799625,0.799625,0.799625,0.799625,0.799625,0.799625,0.799625,0.799625,0.411401,0.411401,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,2.317753,0.799625,0.799625,15,15,, +27167,0,0.545281,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.684603,0.15,4,2.181126,2.181126,2.181126,2.181126,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,,,,,,,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,0.752488,0.752488,0.752488,0.752488,0.752488,0.752488,0.752488,0.752488,0.38715,0.38715,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,2.181126,0.752488,0.752488,15,15,, +27187,0,0.530668,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.371455,0.15,4,2.122672,2.122672,2.122672,2.122672,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,,,,,,,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,0.732322,0.732322,0.732322,0.732322,0.732322,0.732322,0.732322,0.732322,0.376774,0.376774,15,14.999995,14.999998,14.999997,14.999994,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,2.122672,0.732322,0.732322,15,15,, +27189,0,0.580394,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.437019,0.15,4,2.321577,2.321577,2.321577,2.321577,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,,,,,,,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,0.800944,0.800944,0.800944,0.800944,0.800944,0.800944,0.800944,0.800944,0.41208,0.41208,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,2.321577,0.800944,0.800944,15,15,, +27190,0,0.477778,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.238097,0.15,4,1.911111,1.911111,1.911111,1.911111,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,,,,,,,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,0.659333,0.659333,0.659333,0.659333,0.659333,0.659333,0.659333,0.659333,0.339222,0.339222,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,1.911111,0.659333,0.659333,15,15,, +1125,0,0.456613,1,1,1,2,4,,4,3,Wixom,Rd,639101,1.244,1.701,0,9.784566,4.5,4.5,0.720968,0.720968,0.720968,0.720968,38,38,9900,9900,2247,2247,4950,4950,3194,3194,3406,3406,3402,3402,0.838149,0.742004,0.720968,0.720968,0.838149,0.742004,0.75506,0.750134,0.720968,0.720968,0.75506,0.750134,0.776742,0.91168,0.720968,0.720968,0.776742,0.91168,0.720968,0.720968,0.720968,0.720968,0.720968,0.720968,,,,,,,0.838149,0.742004,0.75506,0.750134,0.776742,0.91168,0.720968,0.720968,0.720968,0.720968,0.333635,0.304791,0.308708,0.307231,0.315213,0.355694,0.298481,0.298481,0.158373,0.158373,32.687242,36.922711,36.284246,36.52251,35.271401,30.050869,38,38,38,38,,,,,,,,,,,3406,3406,0.720968,0.720968,0.720968,0.720968,0.720968,0.720968,0.720968,0.720968,0.298481,0.298481,38,38,, +1596,0,0.686751,1,1,0,2,4,,4,3,Napier,Rd,621905,3.297,3.983,0,14.716089,4.5,4.5,1.084343,1.084343,1.084343,1.084343,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,1.406993,1.158695,1.084343,1.084343,1.406993,1.158695,1.098561,1.093688,1.084343,1.084343,1.098561,1.093688,1.284185,1.4824,1.084343,1.084343,1.284185,1.4824,1.084343,1.084343,1.084343,1.084343,1.084343,1.084343,,,,,,,1.406993,1.158695,1.098561,1.093688,1.284185,1.4824,1.084343,1.084343,1.084343,1.084343,0.545713,0.471224,0.453184,0.451722,0.508871,0.568335,0.448918,0.448918,0.238194,0.238194,29.285903,35.561597,37.508195,37.675309,32.086529,27.796182,38,38,38,38,,,,,,,,,,,3096,3096,1.084343,1.084343,1.084343,1.084343,1.084343,1.084343,1.084343,1.084343,0.448918,0.448918,38,38,, +19810,0,0.330048,1,1,0,2,4,,4,3,Grand River,Ave,4104142,7.548,7.878,0,7.072449,4.5,4.5,0.521128,0.521128,0.521128,0.521128,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.958695,0.969715,0.521128,0.521128,0.958695,0.969715,0.849583,0.885617,0.521128,0.521128,0.849583,0.885617,1.028637,1.052573,0.521128,0.521128,1.028637,1.052573,0.521128,0.521128,0.521128,0.521128,0.521128,0.521128,,,,,,,0.958695,0.969715,0.849583,0.885617,1.028637,1.052573,0.521128,0.521128,0.521128,0.521128,0.347017,0.350323,0.314283,0.325094,0.368,0.37518,0.215747,0.215747,0.114474,0.114474,20.65606,20.421328,23.308916,22.360523,19.251553,18.813764,38,38,38,38,,,,,,,,,,,3096,3096,0.521128,0.521128,0.521128,0.521128,0.521128,0.521128,0.521128,0.521128,0.215747,0.215747,38,38,, +25978,0,0.704536,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.097202,0.15,4,2.818144,2.818144,2.818144,2.818144,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.81816,2.818145,2.818144,2.818144,2.81816,2.818145,2.818145,2.818145,2.818144,2.818144,2.818145,2.818145,2.818147,2.818155,2.818144,2.818144,2.818147,2.818155,2.818144,2.818144,2.818144,2.818144,2.818144,2.818144,,,,,,,2.81816,2.818145,2.818145,2.818145,2.818147,2.818155,2.818144,2.818144,2.818144,2.818144,0.972264,0.97226,0.97226,0.97226,0.972261,0.972263,0.97226,0.97226,0.500221,0.500221,14.999918,14.999996,14.999996,14.999998,14.999984,14.999941,15,15,15,15,,,,,,,,,,,34400,34400,2.818144,2.818144,2.818144,2.818144,2.818144,2.818144,2.818144,2.818144,0.97226,0.97226,15,15,, +27185,0,0.324242,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.948041,0.15,4,1.296968,1.296968,1.296968,1.296968,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,,,,,,,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,0.447454,0.447454,0.447454,0.447454,0.447454,0.447454,0.447454,0.447454,0.230212,0.230212,15,15,15,15,15,15,15,15,15,15,,,,,,,,,,,34400,34400,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,1.296968,0.447454,0.447454,15,15,, +25977,0,0.585863,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.554207,0.15,4,2.343452,2.343452,2.343452,2.343452,15,15,100000,100000,22700,22700,50000,50000,32260,32260,34400,34400,34360,34360,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,,,,,,,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,0.808491,0.808491,0.808491,0.808491,0.808491,0.808491,0.808491,0.808491,0.415963,0.415963,14.999999,15,15,15,14.999999,14.999999,15,15,15,15,,,,,,,,,,,34400,34400,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,2.343452,0.808491,0.808491,15,15,, +1290,0,0.307548,1,1,0,2,4,,4,3,Napier,Rd,621905,2.989,3.297,0,6.590312,4.5,4.5,0.485602,0.485602,0.485602,0.485602,38,38,9000,9000,2043,2043,4500,4500,2903,2903,3096,3096,3092,3092,0.622284,0.526977,0.485602,0.485602,0.622284,0.526977,0.48948,0.488,0.485602,0.485602,0.48948,0.488,0.563552,0.639731,0.485602,0.485602,0.563552,0.639731,0.485602,0.485602,0.485602,0.485602,0.485602,0.485602,,,,,,,0.622284,0.526977,0.48948,0.488,0.563552,0.639731,0.485602,0.485602,0.485602,0.485602,0.242044,0.213452,0.202203,0.201759,0.224424,0.247278,0.201039,0.201039,0.106671,0.106671,29.653482,35.016502,37.69895,37.813252,32.743851,28.844717,38,38,38,38,,,,,,,,,,,3096,3096,0.485602,0.485602,0.485602,0.485602,0.485602,0.485602,0.485602,0.485602,0.201039,0.201039,38,38,, diff --git a/activitysim/examples/production_semcog/data/households.csv b/activitysim/examples/production_semcog/data/households.csv new file mode 100644 index 000000000..d0cdbfe9f --- /dev/null +++ b/activitysim/examples/production_semcog/data/households.csv @@ -0,0 +1,19549 @@ +Unnamed: 0.1,Unnamed: 0,household_id,persons,age_of_head,race_id,cars,children,type,hincp,adjinc,hht,maz,taz +1065161,1065161,1065162,1,75.0,4.0,1.0,1.0,1,0.0,1010145,6.0,22688.0,2109.0 +1065162,1065162,1065163,1,75.0,4.0,1.0,0.0,1,8000.0,1054606,6.0,22688.0,2109.0 +1065163,1065163,1065164,1,75.0,4.0,1.0,0.0,1,0.0,1010145,6.0,22687.0,2109.0 +1065164,1065164,1065165,1,75.0,4.0,1.0,0.0,1,0.0,1010145,6.0,22688.0,2109.0 +1065165,1065165,1065166,1,75.0,4.0,1.0,0.0,1,0.0,1010145,6.0,22688.0,2109.0 +1065166,1065166,1065167,1,75.0,4.0,1.0,0.0,1,0.0,1010145,6.0,22688.0,2109.0 +1065167,1065167,1065168,1,75.0,4.0,1.0,0.0,1,0.0,1010145,6.0,22686.0,2109.0 +1065168,1065168,1065169,1,75.0,4.0,1.0,0.0,1,8000.0,1054606,6.0,22685.0,2109.0 +1065169,1065169,1065170,1,75.0,4.0,1.0,0.0,1,0.0,1010145,6.0,22688.0,2109.0 +1065170,1065170,1065171,1,75.0,4.0,1.0,0.0,1,8000.0,1054606,6.0,22688.0,2109.0 +1065171,1065171,1065172,1,75.0,4.0,1.0,0.0,1,0.0,1010145,6.0,22688.0,2109.0 +1065172,1065172,1065173,1,75.0,4.0,1.0,0.0,1,0.0,1010145,6.0,22688.0,2109.0 +1065173,1065173,1065174,1,75.0,4.0,1.0,0.0,1,0.0,1010145,6.0,22688.0,2109.0 +1065174,1065174,1065175,1,75.0,4.0,1.0,0.0,1,0.0,1010145,6.0,22688.0,2109.0 +1065175,1065175,1065176,1,72.0,2.0,1.0,0.0,1,4900.0,1080470,6.0,22688.0,2109.0 +1065176,1065176,1065177,1,65.0,2.0,1.0,0.0,1,8800.0,1054606,4.0,22687.0,2109.0 +1065177,1065177,1065178,2,66.0,2.0,0.0,0.0,1,25100.0,1031452,3.0,22688.0,2109.0 +1065178,1065178,1065179,1,78.0,2.0,0.0,0.0,1,9900.0,1073449,6.0,22688.0,2109.0 +1065179,1065179,1065180,1,68.0,2.0,0.0,0.0,1,9000.0,1031452,6.0,22688.0,2109.0 +1065180,1065180,1065181,1,66.0,3.0,1.0,0.0,1,9500.0,1010145,6.0,22688.0,2109.0 +1065181,1065181,1065182,1,66.0,3.0,1.0,0.0,1,9500.0,1010145,6.0,22688.0,2109.0 +1065182,1065182,1065183,1,66.0,3.0,1.0,0.0,1,9500.0,1010145,6.0,22688.0,2109.0 +1065183,1065183,1065184,1,66.0,3.0,1.0,0.0,1,9500.0,1010145,6.0,22686.0,2109.0 +1065184,1065184,1065185,1,66.0,3.0,1.0,0.0,1,9500.0,1010145,6.0,22688.0,2109.0 +1065185,1065185,1065186,1,66.0,3.0,1.0,0.0,1,9500.0,1010145,6.0,22688.0,2109.0 +1065186,1065186,1065187,1,66.0,3.0,1.0,0.0,1,9500.0,1010145,6.0,22685.0,2109.0 +1065187,1065187,1065188,1,66.0,3.0,1.0,0.0,1,9500.0,1010145,6.0,22688.0,2109.0 +1065188,1065188,1065189,1,66.0,3.0,1.0,0.0,1,9500.0,1010145,6.0,22686.0,2109.0 +1065189,1065189,1065190,1,66.0,3.0,1.0,0.0,1,9500.0,1010145,6.0,22688.0,2109.0 +1065190,1065190,1065191,1,84.0,3.0,0.0,0.0,1,9300.0,1010145,6.0,22688.0,2109.0 +1065191,1065191,1065192,1,84.0,3.0,0.0,0.0,1,9300.0,1010145,6.0,22688.0,2109.0 +1065192,1065192,1065193,1,84.0,3.0,0.0,0.0,1,9300.0,1010145,6.0,22688.0,2109.0 +1065193,1065193,1065194,1,84.0,3.0,0.0,0.0,1,9300.0,1010145,6.0,22686.0,2109.0 +1065194,1065194,1065195,2,74.0,1.0,1.0,0.0,1,28500.0,1073449,3.0,22688.0,2109.0 +1065195,1065195,1065196,1,71.0,1.0,1.0,0.0,1,10400.0,1080470,6.0,22688.0,2109.0 +1065196,1065196,1065197,1,78.0,1.0,1.0,0.0,1,23300.0,1031452,6.0,22688.0,2109.0 +1065197,1065197,1065198,1,80.0,1.0,1.0,0.0,1,22500.0,1031452,6.0,22686.0,2109.0 +1065198,1065198,1065199,1,71.0,1.0,1.0,0.0,1,8800.0,1073449,4.0,22688.0,2109.0 +1065199,1065199,1065200,1,66.0,1.0,1.0,0.0,1,16300.0,1073449,4.0,22688.0,2109.0 +1065200,1065200,1065201,1,88.0,1.0,0.0,0.0,1,23780.0,1010145,6.0,22688.0,2109.0 +1065201,1065201,1065202,1,94.0,1.0,0.0,0.0,1,14020.0,1073449,6.0,22688.0,2109.0 +1065202,1065202,1065203,1,88.0,1.0,0.0,0.0,1,23780.0,1010145,6.0,22688.0,2109.0 +1065203,1065203,1065204,1,70.0,1.0,0.0,0.0,1,22400.0,1054606,4.0,22688.0,2109.0 +1065204,1065204,1065205,2,49.0,4.0,2.0,0.0,1,57000.0,1031452,3.0,22685.0,2109.0 +1065205,1065205,1065206,2,49.0,4.0,2.0,0.0,1,57000.0,1031452,3.0,22688.0,2109.0 +1065206,1065206,1065207,2,49.0,4.0,2.0,0.0,1,57000.0,1031452,3.0,22687.0,2109.0 +1065207,1065207,1065208,2,49.0,4.0,2.0,0.0,1,57000.0,1031452,3.0,22688.0,2109.0 +1065208,1065208,1065209,5,59.0,4.0,1.0,0.0,1,27600.0,1010145,2.0,22687.0,2109.0 +1065209,1065209,1065210,1,54.0,4.0,1.0,2.0,1,62000.0,1031452,4.0,22688.0,2109.0 +1065210,1065210,1065211,1,54.0,4.0,1.0,0.0,1,62000.0,1031452,4.0,22688.0,2109.0 +1065211,1065211,1065212,1,54.0,4.0,1.0,0.0,1,62000.0,1031452,4.0,22686.0,2109.0 +1065212,1065212,1065213,5,49.0,4.0,2.0,0.0,1,94000.0,1031452,1.0,22688.0,2109.0 +1065213,1065213,1065214,2,51.0,4.0,1.0,3.0,1,0.0,1080470,3.0,22688.0,2109.0 +1065214,1065214,1065215,2,51.0,4.0,1.0,1.0,1,0.0,1080470,3.0,22687.0,2109.0 +1065215,1065215,1065216,2,45.0,2.0,1.0,1.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065216,1065216,1065217,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065217,1065217,1065218,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22685.0,2109.0 +1065218,1065218,1065219,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065219,1065219,1065220,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22685.0,2109.0 +1065220,1065220,1065221,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065221,1065221,1065222,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065222,1065222,1065223,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065223,1065223,1065224,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065224,1065224,1065225,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065225,1065225,1065226,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065226,1065226,1065227,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065227,1065227,1065228,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065228,1065228,1065229,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065229,1065229,1065230,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22687.0,2109.0 +1065230,1065230,1065231,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065231,1065231,1065232,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22686.0,2109.0 +1065232,1065232,1065233,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065233,1065233,1065234,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065234,1065234,1065235,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065235,1065235,1065236,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065236,1065236,1065237,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065237,1065237,1065238,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065238,1065238,1065239,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22685.0,2109.0 +1065239,1065239,1065240,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22686.0,2109.0 +1065240,1065240,1065241,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22686.0,2109.0 +1065241,1065241,1065242,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065242,1065242,1065243,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065243,1065243,1065244,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065244,1065244,1065245,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22685.0,2109.0 +1065245,1065245,1065246,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065246,1065246,1065247,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065247,1065247,1065248,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065248,1065248,1065249,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22686.0,2109.0 +1065249,1065249,1065250,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22685.0,2109.0 +1065250,1065250,1065251,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22686.0,2109.0 +1065251,1065251,1065252,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065252,1065252,1065253,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22686.0,2109.0 +1065253,1065253,1065254,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22687.0,2109.0 +1065254,1065254,1065255,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065255,1065255,1065256,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065256,1065256,1065257,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065257,1065257,1065258,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065258,1065258,1065259,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065259,1065259,1065260,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065260,1065260,1065261,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22686.0,2109.0 +1065261,1065261,1065262,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065262,1065262,1065263,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22688.0,2109.0 +1065263,1065263,1065264,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22688.0,2109.0 +1065264,1065264,1065265,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22686.0,2109.0 +1065265,1065265,1065266,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22686.0,2109.0 +1065266,1065266,1065267,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22687.0,2109.0 +1065267,1065267,1065268,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22688.0,2109.0 +1065268,1065268,1065269,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22688.0,2109.0 +1065269,1065269,1065270,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22688.0,2109.0 +1065270,1065270,1065271,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22688.0,2109.0 +1065271,1065271,1065272,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22687.0,2109.0 +1065272,1065272,1065273,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22688.0,2109.0 +1065273,1065273,1065274,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22688.0,2109.0 +1065274,1065274,1065275,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22688.0,2109.0 +1065275,1065275,1065276,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22688.0,2109.0 +1065276,1065276,1065277,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22686.0,2109.0 +1065277,1065277,1065278,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22688.0,2109.0 +1065278,1065278,1065279,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22685.0,2109.0 +1065279,1065279,1065280,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22688.0,2109.0 +1065280,1065280,1065281,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22685.0,2109.0 +1065281,1065281,1065282,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22686.0,2109.0 +1065282,1065282,1065283,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22688.0,2109.0 +1065283,1065283,1065284,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22688.0,2109.0 +1065284,1065284,1065285,4,57.0,2.0,2.0,0.0,1,43630.0,1073449,1.0,22688.0,2109.0 +1065285,1065285,1065286,1,63.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065286,1065286,1065287,1,64.0,2.0,1.0,0.0,1,35600.0,1010145,6.0,22685.0,2109.0 +1065287,1065287,1065288,1,64.0,2.0,1.0,0.0,1,35600.0,1010145,6.0,22688.0,2109.0 +1065288,1065288,1065289,1,64.0,2.0,1.0,0.0,1,35600.0,1010145,6.0,22688.0,2109.0 +1065289,1065289,1065290,1,63.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065290,1065290,1065291,1,63.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22687.0,2109.0 +1065291,1065291,1065292,1,63.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065292,1065292,1065293,1,63.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065293,1065293,1065294,1,54.0,2.0,1.0,0.0,1,25000.0,1031452,6.0,22686.0,2109.0 +1065294,1065294,1065295,1,56.0,2.0,1.0,0.0,1,25000.0,1080470,6.0,22688.0,2109.0 +1065295,1065295,1065296,1,54.0,2.0,1.0,0.0,1,25000.0,1031452,6.0,22687.0,2109.0 +1065296,1065296,1065297,1,54.0,2.0,1.0,0.0,1,25000.0,1031452,6.0,22688.0,2109.0 +1065297,1065297,1065298,1,56.0,2.0,1.0,0.0,1,25000.0,1080470,6.0,22688.0,2109.0 +1065298,1065298,1065299,1,54.0,2.0,1.0,0.0,1,25000.0,1031452,6.0,22688.0,2109.0 +1065299,1065299,1065300,1,56.0,2.0,1.0,0.0,1,25000.0,1080470,6.0,22688.0,2109.0 +1065300,1065300,1065301,1,56.0,2.0,1.0,0.0,1,25000.0,1080470,6.0,22688.0,2109.0 +1065301,1065301,1065302,1,56.0,2.0,1.0,0.0,1,25000.0,1080470,6.0,22688.0,2109.0 +1065302,1065302,1065303,1,56.0,2.0,1.0,0.0,1,25000.0,1080470,6.0,22688.0,2109.0 +1065303,1065303,1065304,1,56.0,2.0,1.0,0.0,1,25000.0,1080470,6.0,22688.0,2109.0 +1065304,1065304,1065305,2,60.0,2.0,1.0,0.0,1,24100.0,1054606,1.0,22686.0,2109.0 +1065305,1065305,1065306,2,60.0,2.0,1.0,0.0,1,24100.0,1054606,1.0,22686.0,2109.0 +1065306,1065306,1065307,2,60.0,2.0,1.0,0.0,1,24100.0,1054606,1.0,22688.0,2109.0 +1065307,1065307,1065308,1,48.0,2.0,1.0,0.0,1,8800.0,1073449,6.0,22688.0,2109.0 +1065308,1065308,1065309,1,63.0,2.0,1.0,0.0,1,27500.0,1080470,6.0,22688.0,2109.0 +1065309,1065309,1065310,1,48.0,2.0,1.0,0.0,1,8800.0,1073449,6.0,22688.0,2109.0 +1065310,1065310,1065311,1,63.0,2.0,1.0,0.0,1,27500.0,1080470,6.0,22688.0,2109.0 +1065311,1065311,1065312,1,59.0,2.0,1.0,0.0,1,10000.0,1054606,4.0,22686.0,2109.0 +1065312,1065312,1065313,1,59.0,2.0,1.0,0.0,1,10000.0,1054606,4.0,22686.0,2109.0 +1065313,1065313,1065314,1,59.0,2.0,1.0,0.0,1,10000.0,1054606,4.0,22688.0,2109.0 +1065314,1065314,1065315,1,59.0,2.0,1.0,0.0,1,10000.0,1054606,4.0,22688.0,2109.0 +1065315,1065315,1065316,1,60.0,2.0,1.0,0.0,1,13000.0,1031452,4.0,22685.0,2109.0 +1065316,1065316,1065317,1,62.0,2.0,1.0,0.0,1,0.0,1073449,4.0,22688.0,2109.0 +1065317,1065317,1065318,1,59.0,2.0,1.0,0.0,1,10000.0,1054606,4.0,22688.0,2109.0 +1065318,1065318,1065319,1,59.0,2.0,1.0,0.0,1,10000.0,1054606,4.0,22685.0,2109.0 +1065319,1065319,1065320,1,60.0,2.0,1.0,0.0,1,13000.0,1031452,4.0,22686.0,2109.0 +1065320,1065320,1065321,1,59.0,2.0,0.0,0.0,1,17200.0,1080470,6.0,22688.0,2109.0 +1065321,1065321,1065322,1,53.0,2.0,0.0,0.0,1,1200.0,1073449,6.0,22688.0,2109.0 +1065322,1065322,1065323,1,64.0,2.0,0.0,0.0,1,7700.0,1073449,4.0,22686.0,2109.0 +1065323,1065323,1065324,1,64.0,2.0,0.0,0.0,1,7700.0,1073449,4.0,22685.0,2109.0 +1065324,1065324,1065325,1,64.0,2.0,0.0,0.0,1,7700.0,1073449,4.0,22688.0,2109.0 +1065325,1065325,1065326,1,64.0,2.0,0.0,0.0,1,7700.0,1073449,4.0,22688.0,2109.0 +1065326,1065326,1065327,1,56.0,2.0,0.0,0.0,1,5400.0,1080470,4.0,22688.0,2109.0 +1065327,1065327,1065328,1,62.0,2.0,0.0,0.0,1,12000.0,1010145,4.0,22686.0,2109.0 +1065328,1065328,1065329,1,64.0,2.0,0.0,0.0,1,7700.0,1073449,4.0,22688.0,2109.0 +1065329,1065329,1065330,3,56.0,2.0,2.0,0.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065330,1065330,1065331,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22687.0,2109.0 +1065331,1065331,1065332,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065332,1065332,1065333,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065333,1065333,1065334,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065334,1065334,1065335,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22686.0,2109.0 +1065335,1065335,1065336,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22686.0,2109.0 +1065336,1065336,1065337,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22687.0,2109.0 +1065337,1065337,1065338,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065338,1065338,1065339,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065339,1065339,1065340,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065340,1065340,1065341,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065341,1065341,1065342,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065342,1065342,1065343,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065343,1065343,1065344,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22686.0,2109.0 +1065344,1065344,1065345,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22685.0,2109.0 +1065345,1065345,1065346,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065346,1065346,1065347,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065347,1065347,1065348,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065348,1065348,1065349,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065349,1065349,1065350,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065350,1065350,1065351,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22685.0,2109.0 +1065351,1065351,1065352,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065352,1065352,1065353,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065353,1065353,1065354,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065354,1065354,1065355,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065355,1065355,1065356,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22687.0,2109.0 +1065356,1065356,1065357,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22685.0,2109.0 +1065357,1065357,1065358,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22686.0,2109.0 +1065358,1065358,1065359,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22685.0,2109.0 +1065359,1065359,1065360,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065360,1065360,1065361,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065361,1065361,1065362,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22686.0,2109.0 +1065362,1065362,1065363,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065363,1065363,1065364,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22686.0,2109.0 +1065364,1065364,1065365,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065365,1065365,1065366,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22686.0,2109.0 +1065366,1065366,1065367,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065367,1065367,1065368,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065368,1065368,1065369,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065369,1065369,1065370,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065370,1065370,1065371,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065371,1065371,1065372,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065372,1065372,1065373,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065373,1065373,1065374,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065374,1065374,1065375,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22686.0,2109.0 +1065375,1065375,1065376,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22687.0,2109.0 +1065376,1065376,1065377,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065377,1065377,1065378,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22686.0,2109.0 +1065378,1065378,1065379,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065379,1065379,1065380,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065380,1065380,1065381,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065381,1065381,1065382,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065382,1065382,1065383,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22688.0,2109.0 +1065383,1065383,1065384,2,46.0,2.0,1.0,1.0,1,75000.0,1080470,3.0,22688.0,2109.0 +1065384,1065384,1065385,5,45.0,2.0,2.0,1.0,1,42000.0,1080470,1.0,22688.0,2109.0 +1065385,1065385,1065386,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22686.0,2109.0 +1065386,1065386,1065387,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22686.0,2109.0 +1065387,1065387,1065388,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22688.0,2109.0 +1065388,1065388,1065389,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22688.0,2109.0 +1065389,1065389,1065390,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22685.0,2109.0 +1065390,1065390,1065391,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22688.0,2109.0 +1065391,1065391,1065392,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22688.0,2109.0 +1065392,1065392,1065393,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22688.0,2109.0 +1065393,1065393,1065394,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22685.0,2109.0 +1065394,1065394,1065395,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22686.0,2109.0 +1065395,1065395,1065396,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22688.0,2109.0 +1065396,1065396,1065397,3,54.0,2.0,1.0,3.0,1,15200.0,1073449,3.0,22685.0,2109.0 +1065397,1065397,1065398,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22686.0,2109.0 +1065398,1065398,1065399,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22685.0,2109.0 +1065399,1065399,1065400,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22688.0,2109.0 +1065400,1065400,1065401,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22688.0,2109.0 +1065401,1065401,1065402,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22688.0,2109.0 +1065402,1065402,1065403,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22688.0,2109.0 +1065403,1065403,1065404,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22686.0,2109.0 +1065404,1065404,1065405,2,48.0,3.0,1.0,1.0,1,19200.0,1080470,1.0,22688.0,2109.0 +1065405,1065405,1065406,1,48.0,3.0,1.0,0.0,1,8600.0,1080470,6.0,22688.0,2109.0 +1065406,1065406,1065407,1,48.0,3.0,1.0,0.0,1,8600.0,1080470,6.0,22686.0,2109.0 +1065407,1065407,1065408,1,64.0,3.0,0.0,0.0,1,11600.0,1054606,4.0,22688.0,2109.0 +1065408,1065408,1065409,1,64.0,3.0,0.0,0.0,1,11600.0,1054606,4.0,22688.0,2109.0 +1065409,1065409,1065410,1,64.0,3.0,0.0,0.0,1,11600.0,1054606,4.0,22687.0,2109.0 +1065410,1065410,1065411,1,64.0,3.0,0.0,0.0,1,11600.0,1054606,4.0,22688.0,2109.0 +1065411,1065411,1065412,1,64.0,3.0,0.0,0.0,1,11600.0,1054606,4.0,22688.0,2109.0 +1065412,1065412,1065413,1,64.0,3.0,0.0,0.0,1,11600.0,1054606,4.0,22688.0,2109.0 +1065413,1065413,1065414,1,64.0,3.0,0.0,0.0,1,11600.0,1054606,4.0,22687.0,2109.0 +1065414,1065414,1065415,5,52.0,1.0,4.0,0.0,1,100300.0,1010145,5.0,22688.0,2109.0 +1065415,1065415,1065416,5,52.0,1.0,4.0,0.0,1,100300.0,1010145,5.0,22688.0,2109.0 +1065416,1065416,1065417,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22688.0,2109.0 +1065417,1065417,1065418,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22688.0,2109.0 +1065418,1065418,1065419,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22688.0,2109.0 +1065419,1065419,1065420,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22688.0,2109.0 +1065420,1065420,1065421,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22688.0,2109.0 +1065421,1065421,1065422,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22688.0,2109.0 +1065422,1065422,1065423,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22688.0,2109.0 +1065423,1065423,1065424,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22688.0,2109.0 +1065424,1065424,1065425,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22688.0,2109.0 +1065425,1065425,1065426,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22688.0,2109.0 +1065426,1065426,1065427,2,50.0,1.0,2.0,0.0,1,86600.0,1031452,3.0,22688.0,2109.0 +1065427,1065427,1065428,2,50.0,1.0,2.0,0.0,1,86600.0,1031452,3.0,22688.0,2109.0 +1065428,1065428,1065429,2,50.0,1.0,2.0,0.0,1,86600.0,1031452,3.0,22688.0,2109.0 +1065429,1065429,1065430,2,50.0,1.0,2.0,0.0,1,86600.0,1031452,3.0,22688.0,2109.0 +1065430,1065430,1065431,2,50.0,1.0,2.0,0.0,1,86600.0,1031452,3.0,22688.0,2109.0 +1065431,1065431,1065432,2,50.0,1.0,2.0,0.0,1,86600.0,1031452,3.0,22685.0,2109.0 +1065432,1065432,1065433,2,50.0,1.0,2.0,0.0,1,86600.0,1031452,3.0,22688.0,2109.0 +1065433,1065433,1065434,2,50.0,1.0,2.0,0.0,1,86600.0,1031452,3.0,22688.0,2109.0 +1065434,1065434,1065435,2,47.0,1.0,2.0,0.0,1,87000.0,1054606,1.0,22688.0,2109.0 +1065435,1065435,1065436,2,53.0,1.0,2.0,0.0,1,67000.0,1073449,5.0,22688.0,2109.0 +1065436,1065436,1065437,2,53.0,1.0,2.0,0.0,1,67000.0,1073449,5.0,22685.0,2109.0 +1065437,1065437,1065438,2,53.0,1.0,2.0,0.0,1,67000.0,1073449,5.0,22688.0,2109.0 +1065438,1065438,1065439,2,53.0,1.0,2.0,0.0,1,67000.0,1073449,5.0,22688.0,2109.0 +1065439,1065439,1065440,2,47.0,1.0,1.0,0.0,1,96700.0,1080470,1.0,22685.0,2109.0 +1065440,1065440,1065441,2,47.0,1.0,1.0,0.0,1,96700.0,1080470,1.0,22688.0,2109.0 +1065441,1065441,1065442,2,47.0,1.0,1.0,0.0,1,96700.0,1080470,1.0,22685.0,2109.0 +1065442,1065442,1065443,2,47.0,1.0,1.0,0.0,1,96700.0,1080470,1.0,22688.0,2109.0 +1065443,1065443,1065444,2,47.0,1.0,1.0,0.0,1,96700.0,1080470,1.0,22688.0,2109.0 +1065444,1065444,1065445,2,47.0,1.0,1.0,0.0,1,96700.0,1080470,1.0,22688.0,2109.0 +1065445,1065445,1065446,2,47.0,1.0,1.0,0.0,1,96700.0,1080470,1.0,22686.0,2109.0 +1065446,1065446,1065447,2,47.0,1.0,1.0,0.0,1,96700.0,1080470,1.0,22685.0,2109.0 +1065447,1065447,1065448,2,47.0,1.0,1.0,0.0,1,96700.0,1080470,1.0,22687.0,2109.0 +1065448,1065448,1065449,2,47.0,1.0,1.0,0.0,1,96700.0,1080470,1.0,22687.0,2109.0 +1065449,1065449,1065450,1,52.0,1.0,1.0,0.0,1,89000.0,1010145,6.0,22688.0,2109.0 +1065450,1065450,1065451,1,52.0,1.0,1.0,0.0,1,89000.0,1010145,6.0,22688.0,2109.0 +1065451,1065451,1065452,1,58.0,1.0,1.0,0.0,1,72000.0,1080470,6.0,22685.0,2109.0 +1065452,1065452,1065453,1,54.0,1.0,1.0,0.0,1,82000.0,1073449,6.0,22686.0,2109.0 +1065453,1065453,1065454,1,52.0,1.0,1.0,0.0,1,89000.0,1010145,6.0,22688.0,2109.0 +1065454,1065454,1065455,1,54.0,1.0,1.0,0.0,1,82000.0,1073449,6.0,22688.0,2109.0 +1065455,1065455,1065456,1,58.0,1.0,1.0,0.0,1,76000.0,1031452,6.0,22688.0,2109.0 +1065456,1065456,1065457,1,58.0,1.0,1.0,0.0,1,76000.0,1031452,6.0,22688.0,2109.0 +1065457,1065457,1065458,1,58.0,1.0,1.0,0.0,1,72000.0,1080470,6.0,22688.0,2109.0 +1065458,1065458,1065459,1,55.0,1.0,1.0,0.0,1,72000.0,1010145,4.0,22685.0,2109.0 +1065459,1065459,1065460,1,55.0,1.0,1.0,0.0,1,72000.0,1010145,4.0,22688.0,2109.0 +1065460,1065460,1065461,1,55.0,1.0,1.0,0.0,1,72000.0,1010145,4.0,22688.0,2109.0 +1065461,1065461,1065462,1,55.0,1.0,1.0,0.0,1,72000.0,1010145,4.0,22685.0,2109.0 +1065462,1065462,1065463,1,55.0,1.0,1.0,0.0,1,72000.0,1010145,4.0,22688.0,2109.0 +1065463,1065463,1065464,1,55.0,1.0,1.0,0.0,1,72000.0,1010145,4.0,22688.0,2109.0 +1065464,1065464,1065465,1,57.0,1.0,1.0,0.0,1,75000.0,1031452,4.0,22688.0,2109.0 +1065465,1065465,1065466,1,57.0,1.0,1.0,0.0,1,75000.0,1031452,4.0,22685.0,2109.0 +1065466,1065466,1065467,1,58.0,1.0,1.0,0.0,1,88000.0,1080470,4.0,22688.0,2109.0 +1065467,1065467,1065468,1,58.0,1.0,1.0,0.0,1,88000.0,1080470,4.0,22688.0,2109.0 +1065468,1065468,1065469,1,58.0,1.0,1.0,0.0,1,88000.0,1080470,4.0,22686.0,2109.0 +1065469,1065469,1065470,1,58.0,1.0,1.0,0.0,1,88000.0,1080470,4.0,22688.0,2109.0 +1065470,1065470,1065471,1,58.0,1.0,1.0,0.0,1,88000.0,1080470,4.0,22688.0,2109.0 +1065471,1065471,1065472,1,58.0,1.0,1.0,0.0,1,88000.0,1080470,4.0,22688.0,2109.0 +1065472,1065472,1065473,1,58.0,1.0,1.0,0.0,1,88000.0,1080470,4.0,22688.0,2109.0 +1065473,1065473,1065474,1,52.0,1.0,0.0,0.0,1,83000.0,1073449,6.0,22688.0,2109.0 +1065474,1065474,1065475,2,46.0,1.0,1.0,0.0,1,45000.0,1073449,1.0,22688.0,2109.0 +1065475,1065475,1065476,1,47.0,1.0,1.0,0.0,1,60000.0,1031452,6.0,22688.0,2109.0 +1065476,1065476,1065477,1,49.0,1.0,1.0,0.0,1,60000.0,1054606,6.0,22688.0,2109.0 +1065477,1065477,1065478,1,61.0,1.0,1.0,0.0,1,33000.0,1010145,6.0,22688.0,2109.0 +1065478,1065478,1065479,1,56.0,1.0,1.0,0.0,1,31000.0,1080470,6.0,22688.0,2109.0 +1065479,1065479,1065480,1,45.0,1.0,1.0,0.0,1,57000.0,1080470,4.0,22688.0,2109.0 +1065480,1065480,1065481,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22688.0,2109.0 +1065481,1065481,1065482,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22688.0,2109.0 +1065482,1065482,1065483,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22686.0,2109.0 +1065483,1065483,1065484,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22688.0,2109.0 +1065484,1065484,1065485,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22688.0,2109.0 +1065485,1065485,1065486,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22685.0,2109.0 +1065486,1065486,1065487,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22688.0,2109.0 +1065487,1065487,1065488,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22688.0,2109.0 +1065488,1065488,1065489,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22687.0,2109.0 +1065489,1065489,1065490,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22688.0,2109.0 +1065490,1065490,1065491,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22688.0,2109.0 +1065491,1065491,1065492,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22688.0,2109.0 +1065492,1065492,1065493,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22686.0,2109.0 +1065493,1065493,1065494,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22686.0,2109.0 +1065494,1065494,1065495,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22688.0,2109.0 +1065495,1065495,1065496,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22688.0,2109.0 +1065496,1065496,1065497,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22687.0,2109.0 +1065497,1065497,1065498,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22685.0,2109.0 +1065498,1065498,1065499,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22688.0,2109.0 +1065499,1065499,1065500,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22688.0,2109.0 +1065500,1065500,1065501,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22688.0,2109.0 +1065501,1065501,1065502,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22688.0,2109.0 +1065502,1065502,1065503,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22688.0,2109.0 +1065503,1065503,1065504,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22686.0,2109.0 +1065504,1065504,1065505,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22686.0,2109.0 +1065505,1065505,1065506,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22687.0,2109.0 +1065506,1065506,1065507,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22688.0,2109.0 +1065507,1065507,1065508,1,63.0,1.0,1.0,0.0,1,36700.0,1054606,4.0,22688.0,2109.0 +1065508,1065508,1065509,1,63.0,1.0,1.0,0.0,1,36700.0,1054606,4.0,22686.0,2109.0 +1065509,1065509,1065510,1,63.0,1.0,1.0,0.0,1,36700.0,1054606,4.0,22686.0,2109.0 +1065510,1065510,1065511,1,61.0,1.0,1.0,0.0,1,36000.0,1054606,4.0,22688.0,2109.0 +1065511,1065511,1065512,1,60.0,1.0,0.0,0.0,1,40000.0,1010145,4.0,22688.0,2109.0 +1065512,1065512,1065513,1,45.0,1.0,2.0,0.0,1,9000.0,1054606,6.0,22688.0,2109.0 +1065513,1065513,1065514,1,45.0,1.0,1.0,0.0,1,23000.0,1080470,6.0,22685.0,2109.0 +1065514,1065514,1065515,1,45.0,1.0,1.0,0.0,1,23000.0,1080470,6.0,22688.0,2109.0 +1065515,1065515,1065516,1,61.0,1.0,1.0,0.0,1,27000.0,1080470,6.0,22688.0,2109.0 +1065516,1065516,1065517,1,61.0,1.0,1.0,0.0,1,27000.0,1080470,6.0,22688.0,2109.0 +1065517,1065517,1065518,1,45.0,1.0,1.0,0.0,1,23000.0,1080470,6.0,22688.0,2109.0 +1065518,1065518,1065519,1,60.0,1.0,1.0,0.0,1,14000.0,1080470,6.0,22688.0,2109.0 +1065519,1065519,1065520,1,45.0,1.0,1.0,0.0,1,23000.0,1080470,6.0,22688.0,2109.0 +1065520,1065520,1065521,1,45.0,1.0,1.0,0.0,1,23000.0,1080470,6.0,22688.0,2109.0 +1065521,1065521,1065522,1,45.0,1.0,1.0,0.0,1,23000.0,1080470,6.0,22688.0,2109.0 +1065522,1065522,1065523,1,61.0,1.0,1.0,0.0,1,27000.0,1080470,6.0,22688.0,2109.0 +1065523,1065523,1065524,1,61.0,1.0,1.0,0.0,1,27000.0,1080470,6.0,22688.0,2109.0 +1065524,1065524,1065525,1,61.0,1.0,1.0,0.0,1,27000.0,1080470,6.0,22688.0,2109.0 +1065525,1065525,1065526,1,62.0,1.0,1.0,0.0,1,16000.0,1073449,6.0,22688.0,2109.0 +1065526,1065526,1065527,1,45.0,1.0,1.0,0.0,1,23000.0,1080470,6.0,22685.0,2109.0 +1065527,1065527,1065528,1,61.0,1.0,1.0,0.0,1,27000.0,1080470,6.0,22688.0,2109.0 +1065528,1065528,1065529,1,55.0,1.0,1.0,0.0,1,16000.0,1031452,6.0,22688.0,2109.0 +1065529,1065529,1065530,1,64.0,1.0,1.0,0.0,1,22000.0,1073449,6.0,22688.0,2109.0 +1065530,1065530,1065531,1,51.0,1.0,1.0,0.0,1,21040.0,1031452,4.0,22688.0,2109.0 +1065531,1065531,1065532,1,59.0,1.0,1.0,0.0,1,15000.0,1080470,4.0,22687.0,2109.0 +1065532,1065532,1065533,1,51.0,1.0,1.0,0.0,1,21040.0,1031452,4.0,22688.0,2109.0 +1065533,1065533,1065534,1,51.0,1.0,1.0,0.0,1,21040.0,1031452,4.0,22688.0,2109.0 +1065534,1065534,1065535,1,59.0,1.0,1.0,0.0,1,15000.0,1080470,4.0,22688.0,2109.0 +1065535,1065535,1065536,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22686.0,2109.0 +1065536,1065536,1065537,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22688.0,2109.0 +1065537,1065537,1065538,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22688.0,2109.0 +1065538,1065538,1065539,1,59.0,1.0,1.0,0.0,1,340.0,1073449,4.0,22688.0,2109.0 +1065539,1065539,1065540,1,59.0,1.0,1.0,0.0,1,340.0,1073449,4.0,22686.0,2109.0 +1065540,1065540,1065541,1,59.0,1.0,1.0,0.0,1,14000.0,1031452,4.0,22688.0,2109.0 +1065541,1065541,1065542,1,58.0,1.0,1.0,0.0,1,5000.0,1010145,4.0,22688.0,2109.0 +1065542,1065542,1065543,1,58.0,1.0,1.0,0.0,1,5000.0,1010145,4.0,22687.0,2109.0 +1065543,1065543,1065544,1,58.0,1.0,1.0,0.0,1,5000.0,1010145,4.0,22685.0,2109.0 +1065544,1065544,1065545,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065545,1065545,1065546,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065546,1065546,1065547,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065547,1065547,1065548,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22687.0,2109.0 +1065548,1065548,1065549,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065549,1065549,1065550,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22687.0,2109.0 +1065550,1065550,1065551,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22686.0,2109.0 +1065551,1065551,1065552,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065552,1065552,1065553,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065553,1065553,1065554,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065554,1065554,1065555,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065555,1065555,1065556,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065556,1065556,1065557,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22685.0,2109.0 +1065557,1065557,1065558,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065558,1065558,1065559,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22686.0,2109.0 +1065559,1065559,1065560,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065560,1065560,1065561,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22686.0,2109.0 +1065561,1065561,1065562,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065562,1065562,1065563,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22685.0,2109.0 +1065563,1065563,1065564,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22685.0,2109.0 +1065564,1065564,1065565,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065565,1065565,1065566,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22686.0,2109.0 +1065566,1065566,1065567,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065567,1065567,1065568,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065568,1065568,1065569,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22688.0,2109.0 +1065569,1065569,1065570,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065570,1065570,1065571,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065571,1065571,1065572,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22688.0,2109.0 +1065572,1065572,1065573,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22688.0,2109.0 +1065573,1065573,1065574,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065574,1065574,1065575,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065575,1065575,1065576,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22688.0,2109.0 +1065576,1065576,1065577,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22687.0,2109.0 +1065577,1065577,1065578,1,57.0,1.0,1.0,0.0,1,0.0,1073449,6.0,22688.0,2109.0 +1065578,1065578,1065579,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065579,1065579,1065580,1,62.0,1.0,1.0,0.0,1,0.0,1073449,6.0,22688.0,2109.0 +1065580,1065580,1065581,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065581,1065581,1065582,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22688.0,2109.0 +1065582,1065582,1065583,1,62.0,1.0,1.0,0.0,1,0.0,1073449,6.0,22688.0,2109.0 +1065583,1065583,1065584,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065584,1065584,1065585,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065585,1065585,1065586,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22688.0,2109.0 +1065586,1065586,1065587,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22687.0,2109.0 +1065587,1065587,1065588,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22686.0,2109.0 +1065588,1065588,1065589,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065589,1065589,1065590,1,62.0,1.0,1.0,0.0,1,0.0,1073449,6.0,22688.0,2109.0 +1065590,1065590,1065591,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22688.0,2109.0 +1065591,1065591,1065592,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065592,1065592,1065593,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065593,1065593,1065594,1,62.0,1.0,1.0,0.0,1,0.0,1073449,6.0,22688.0,2109.0 +1065594,1065594,1065595,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22688.0,2109.0 +1065595,1065595,1065596,1,62.0,1.0,1.0,0.0,1,0.0,1073449,6.0,22688.0,2109.0 +1065596,1065596,1065597,1,57.0,1.0,1.0,0.0,1,0.0,1073449,6.0,22687.0,2109.0 +1065597,1065597,1065598,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22686.0,2109.0 +1065598,1065598,1065599,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22685.0,2109.0 +1065599,1065599,1065600,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22688.0,2109.0 +1065600,1065600,1065601,1,51.0,1.0,1.0,0.0,1,0.0,1054606,4.0,22688.0,2109.0 +1065601,1065601,1065602,1,60.0,1.0,1.0,0.0,1,18500.0,1031452,4.0,22688.0,2109.0 +1065602,1065602,1065603,1,60.0,1.0,1.0,0.0,1,18500.0,1031452,4.0,22687.0,2109.0 +1065603,1065603,1065604,1,60.0,1.0,1.0,0.0,1,18500.0,1031452,4.0,22686.0,2109.0 +1065604,1065604,1065605,1,51.0,1.0,1.0,0.0,1,0.0,1054606,4.0,22688.0,2109.0 +1065605,1065605,1065606,1,55.0,1.0,1.0,0.0,1,4.0,1073449,4.0,22687.0,2109.0 +1065606,1065606,1065607,1,55.0,1.0,1.0,0.0,1,4.0,1073449,4.0,22685.0,2109.0 +1065607,1065607,1065608,1,60.0,1.0,1.0,0.0,1,18500.0,1031452,4.0,22686.0,2109.0 +1065608,1065608,1065609,1,51.0,1.0,1.0,0.0,1,0.0,1054606,4.0,22688.0,2109.0 +1065609,1065609,1065610,1,60.0,1.0,1.0,0.0,1,18500.0,1031452,4.0,22686.0,2109.0 +1065610,1065610,1065611,1,62.0,1.0,0.0,0.0,1,10330.0,1073449,6.0,22685.0,2109.0 +1065611,1065611,1065612,1,58.0,1.0,0.0,0.0,1,8800.0,1080470,6.0,22687.0,2109.0 +1065612,1065612,1065613,1,62.0,1.0,0.0,0.0,1,10330.0,1073449,6.0,22688.0,2109.0 +1065613,1065613,1065614,1,52.0,1.0,0.0,0.0,1,8800.0,1054606,4.0,22688.0,2109.0 +1065614,1065614,1065615,1,56.0,1.0,0.0,0.0,1,0.0,1080470,4.0,22688.0,2109.0 +1065615,1065615,1065616,1,52.0,1.0,0.0,0.0,1,8800.0,1054606,4.0,22688.0,2109.0 +1065616,1065616,1065617,1,52.0,1.0,0.0,0.0,1,8800.0,1054606,4.0,22686.0,2109.0 +1065617,1065617,1065618,1,54.0,1.0,0.0,0.0,1,9300.0,1031452,4.0,22688.0,2109.0 +1065618,1065618,1065619,1,56.0,1.0,0.0,0.0,1,0.0,1080470,4.0,22688.0,2109.0 +1065619,1065619,1065620,4,45.0,1.0,2.0,0.0,1,82000.0,1010145,1.0,22688.0,2109.0 +1065620,1065620,1065621,4,51.0,1.0,1.0,2.0,1,61600.0,1054606,3.0,22688.0,2109.0 +1065621,1065621,1065622,4,51.0,1.0,1.0,1.0,1,61600.0,1054606,3.0,22688.0,2109.0 +1065622,1065622,1065623,4,51.0,1.0,1.0,1.0,1,61600.0,1054606,3.0,22685.0,2109.0 +1065623,1065623,1065624,4,51.0,1.0,1.0,1.0,1,61600.0,1054606,3.0,22688.0,2109.0 +1065624,1065624,1065625,4,51.0,1.0,1.0,1.0,1,61600.0,1054606,3.0,22688.0,2109.0 +1065625,1065625,1065626,4,51.0,1.0,1.0,1.0,1,61600.0,1054606,3.0,22688.0,2109.0 +1065626,1065626,1065627,4,51.0,1.0,1.0,1.0,1,61600.0,1054606,3.0,22688.0,2109.0 +1065627,1065627,1065628,4,51.0,1.0,1.0,1.0,1,61600.0,1054606,3.0,22688.0,2109.0 +1065628,1065628,1065629,4,51.0,1.0,1.0,1.0,1,61600.0,1054606,3.0,22688.0,2109.0 +1065629,1065629,1065630,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22685.0,2109.0 +1065630,1065630,1065631,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22686.0,2109.0 +1065631,1065631,1065632,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065632,1065632,1065633,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065633,1065633,1065634,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065634,1065634,1065635,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065635,1065635,1065636,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065636,1065636,1065637,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22685.0,2109.0 +1065637,1065637,1065638,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22686.0,2109.0 +1065638,1065638,1065639,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065639,1065639,1065640,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065640,1065640,1065641,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065641,1065641,1065642,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22685.0,2109.0 +1065642,1065642,1065643,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065643,1065643,1065644,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065644,1065644,1065645,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065645,1065645,1065646,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065646,1065646,1065647,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065647,1065647,1065648,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065648,1065648,1065649,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22685.0,2109.0 +1065649,1065649,1065650,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065650,1065650,1065651,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065651,1065651,1065652,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065652,1065652,1065653,4,49.0,1.0,2.0,1.0,1,38400.0,1010145,1.0,22688.0,2109.0 +1065653,1065653,1065654,2,46.0,1.0,2.0,1.0,1,14000.0,1073449,7.0,22688.0,2109.0 +1065654,1065654,1065655,1,31.0,3.0,0.0,1.0,1,0.0,1080470,4.0,22688.0,2109.0 +1065655,1065655,1065656,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22686.0,2109.0 +1065656,1065656,1065657,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22686.0,2109.0 +1065657,1065657,1065658,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22688.0,2109.0 +1065658,1065658,1065659,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22688.0,2109.0 +1065659,1065659,1065660,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22688.0,2109.0 +1065660,1065660,1065661,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22688.0,2109.0 +1065661,1065661,1065662,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22688.0,2109.0 +1065662,1065662,1065663,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22686.0,2109.0 +1065663,1065663,1065664,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22686.0,2109.0 +1065664,1065664,1065665,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22688.0,2109.0 +1065665,1065665,1065666,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22685.0,2109.0 +1065666,1065666,1065667,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22688.0,2109.0 +1065667,1065667,1065668,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065668,1065668,1065669,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065669,1065669,1065670,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22686.0,2109.0 +1065670,1065670,1065671,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065671,1065671,1065672,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065672,1065672,1065673,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22687.0,2109.0 +1065673,1065673,1065674,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065674,1065674,1065675,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065675,1065675,1065676,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065676,1065676,1065677,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22687.0,2109.0 +1065677,1065677,1065678,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065678,1065678,1065679,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065679,1065679,1065680,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22685.0,2109.0 +1065680,1065680,1065681,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065681,1065681,1065682,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065682,1065682,1065683,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065683,1065683,1065684,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065684,1065684,1065685,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22685.0,2109.0 +1065685,1065685,1065686,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22688.0,2109.0 +1065686,1065686,1065687,2,25.0,4.0,1.0,0.0,1,134000.0,1031452,5.0,22688.0,2109.0 +1065687,1065687,1065688,2,29.0,4.0,2.0,0.0,1,78500.0,1080470,1.0,22688.0,2109.0 +1065688,1065688,1065689,2,29.0,4.0,2.0,0.0,1,78500.0,1080470,1.0,22687.0,2109.0 +1065689,1065689,1065690,2,29.0,4.0,2.0,0.0,1,78500.0,1080470,1.0,22688.0,2109.0 +1065690,1065690,1065691,2,29.0,4.0,2.0,0.0,1,78500.0,1080470,1.0,22687.0,2109.0 +1065691,1065691,1065692,2,29.0,4.0,2.0,0.0,1,78500.0,1080470,1.0,22688.0,2109.0 +1065692,1065692,1065693,2,31.0,4.0,1.0,0.0,1,100000.0,1080470,1.0,22685.0,2109.0 +1065693,1065693,1065694,2,31.0,4.0,1.0,0.0,1,100000.0,1080470,1.0,22688.0,2109.0 +1065694,1065694,1065695,2,31.0,4.0,1.0,0.0,1,100000.0,1080470,1.0,22687.0,2109.0 +1065695,1065695,1065696,2,31.0,4.0,1.0,0.0,1,100000.0,1080470,1.0,22688.0,2109.0 +1065696,1065696,1065697,2,31.0,4.0,1.0,0.0,1,100000.0,1080470,1.0,22688.0,2109.0 +1065697,1065697,1065698,2,31.0,4.0,1.0,0.0,1,100000.0,1080470,1.0,22688.0,2109.0 +1065698,1065698,1065699,2,31.0,4.0,1.0,0.0,1,100000.0,1080470,1.0,22688.0,2109.0 +1065699,1065699,1065700,2,31.0,4.0,1.0,0.0,1,100000.0,1080470,1.0,22685.0,2109.0 +1065700,1065700,1065701,2,33.0,4.0,1.0,0.0,1,70020.0,1080470,1.0,22688.0,2109.0 +1065701,1065701,1065702,2,33.0,4.0,1.0,0.0,1,70020.0,1080470,1.0,22688.0,2109.0 +1065702,1065702,1065703,2,33.0,4.0,1.0,0.0,1,70020.0,1080470,1.0,22688.0,2109.0 +1065703,1065703,1065704,2,33.0,4.0,1.0,0.0,1,70020.0,1080470,1.0,22688.0,2109.0 +1065704,1065704,1065705,2,33.0,4.0,1.0,0.0,1,70020.0,1080470,1.0,22686.0,2109.0 +1065705,1065705,1065706,1,31.0,4.0,1.0,0.0,1,75000.0,1080470,4.0,22686.0,2109.0 +1065706,1065706,1065707,1,28.0,4.0,1.0,0.0,1,79500.0,1010145,4.0,22688.0,2109.0 +1065707,1065707,1065708,3,29.0,4.0,0.0,0.0,1,73000.0,1031452,7.0,22688.0,2109.0 +1065708,1065708,1065709,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065709,1065709,1065710,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065710,1065710,1065711,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065711,1065711,1065712,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065712,1065712,1065713,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065713,1065713,1065714,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065714,1065714,1065715,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22685.0,2109.0 +1065715,1065715,1065716,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22685.0,2109.0 +1065716,1065716,1065717,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065717,1065717,1065718,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065718,1065718,1065719,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065719,1065719,1065720,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065720,1065720,1065721,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065721,1065721,1065722,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065722,1065722,1065723,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22685.0,2109.0 +1065723,1065723,1065724,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065724,1065724,1065725,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22685.0,2109.0 +1065725,1065725,1065726,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065726,1065726,1065727,2,26.0,4.0,2.0,0.0,1,40000.0,1031452,5.0,22688.0,2109.0 +1065727,1065727,1065728,2,36.0,4.0,2.0,0.0,1,50000.0,1054606,5.0,22688.0,2109.0 +1065728,1065728,1065729,2,36.0,4.0,2.0,0.0,1,50000.0,1054606,5.0,22688.0,2109.0 +1065729,1065729,1065730,2,36.0,4.0,2.0,0.0,1,50000.0,1054606,5.0,22688.0,2109.0 +1065730,1065730,1065731,2,36.0,4.0,2.0,0.0,1,50000.0,1054606,5.0,22686.0,2109.0 +1065731,1065731,1065732,1,28.0,4.0,2.0,0.0,1,40000.0,1010145,4.0,22688.0,2109.0 +1065732,1065732,1065733,2,27.0,4.0,1.0,0.0,1,50000.0,1054606,5.0,22688.0,2109.0 +1065733,1065733,1065734,2,27.0,4.0,1.0,0.0,1,50000.0,1054606,5.0,22688.0,2109.0 +1065734,1065734,1065735,2,27.0,4.0,1.0,0.0,1,50000.0,1054606,5.0,22688.0,2109.0 +1065735,1065735,1065736,2,27.0,4.0,1.0,0.0,1,50000.0,1054606,5.0,22685.0,2109.0 +1065736,1065736,1065737,2,27.0,4.0,1.0,0.0,1,50000.0,1054606,5.0,22685.0,2109.0 +1065737,1065737,1065738,1,35.0,4.0,1.0,0.0,1,40000.0,1054606,6.0,22687.0,2109.0 +1065738,1065738,1065739,1,35.0,4.0,1.0,0.0,1,40000.0,1054606,6.0,22688.0,2109.0 +1065739,1065739,1065740,1,32.0,4.0,1.0,0.0,1,31000.0,1010145,6.0,22688.0,2109.0 +1065740,1065740,1065741,1,32.0,4.0,1.0,0.0,1,31000.0,1010145,6.0,22688.0,2109.0 +1065741,1065741,1065742,1,32.0,4.0,1.0,0.0,1,31000.0,1010145,6.0,22688.0,2109.0 +1065742,1065742,1065743,1,32.0,4.0,1.0,0.0,1,31000.0,1010145,6.0,22688.0,2109.0 +1065743,1065743,1065744,1,32.0,4.0,1.0,0.0,1,31000.0,1010145,6.0,22688.0,2109.0 +1065744,1065744,1065745,1,32.0,4.0,1.0,0.0,1,31000.0,1010145,6.0,22688.0,2109.0 +1065745,1065745,1065746,1,32.0,4.0,1.0,0.0,1,31000.0,1010145,6.0,22688.0,2109.0 +1065746,1065746,1065747,1,31.0,4.0,1.0,0.0,1,50000.0,1073449,4.0,22686.0,2109.0 +1065747,1065747,1065748,1,31.0,4.0,1.0,0.0,1,50000.0,1073449,4.0,22688.0,2109.0 +1065748,1065748,1065749,1,31.0,4.0,1.0,0.0,1,50000.0,1073449,4.0,22688.0,2109.0 +1065749,1065749,1065750,1,31.0,4.0,1.0,0.0,1,50000.0,1073449,4.0,22688.0,2109.0 +1065750,1065750,1065751,1,31.0,4.0,1.0,0.0,1,50000.0,1073449,4.0,22688.0,2109.0 +1065751,1065751,1065752,1,31.0,4.0,1.0,0.0,1,50000.0,1073449,4.0,22688.0,2109.0 +1065752,1065752,1065753,1,42.0,4.0,1.0,0.0,1,51000.0,1010145,4.0,22686.0,2109.0 +1065753,1065753,1065754,1,42.0,4.0,1.0,0.0,1,51000.0,1010145,4.0,22688.0,2109.0 +1065754,1065754,1065755,1,42.0,4.0,1.0,0.0,1,51000.0,1010145,4.0,22687.0,2109.0 +1065755,1065755,1065756,1,42.0,4.0,1.0,0.0,1,51000.0,1010145,4.0,22688.0,2109.0 +1065756,1065756,1065757,1,42.0,4.0,1.0,0.0,1,51000.0,1010145,4.0,22688.0,2109.0 +1065757,1065757,1065758,1,42.0,4.0,1.0,0.0,1,51000.0,1010145,4.0,22688.0,2109.0 +1065758,1065758,1065759,1,42.0,4.0,1.0,0.0,1,51000.0,1010145,4.0,22685.0,2109.0 +1065759,1065759,1065760,1,25.0,4.0,0.0,0.0,1,57000.0,1031452,4.0,22688.0,2109.0 +1065760,1065760,1065761,1,42.0,4.0,1.0,0.0,1,25000.0,1031452,4.0,22688.0,2109.0 +1065761,1065761,1065762,1,42.0,4.0,1.0,0.0,1,25000.0,1031452,4.0,22688.0,2109.0 +1065762,1065762,1065763,1,42.0,4.0,1.0,0.0,1,25000.0,1031452,4.0,22688.0,2109.0 +1065763,1065763,1065764,1,27.0,4.0,1.0,0.0,1,30000.0,1080470,4.0,22685.0,2109.0 +1065764,1065764,1065765,1,42.0,4.0,1.0,0.0,1,25000.0,1031452,4.0,22686.0,2109.0 +1065765,1065765,1065766,1,27.0,4.0,1.0,0.0,1,30000.0,1080470,4.0,22688.0,2109.0 +1065766,1065766,1065767,1,27.0,4.0,1.0,0.0,1,30000.0,1080470,4.0,22686.0,2109.0 +1065767,1065767,1065768,1,27.0,4.0,1.0,0.0,1,30000.0,1080470,4.0,22688.0,2109.0 +1065768,1065768,1065769,1,31.0,4.0,1.0,0.0,1,15600.0,1054606,4.0,22686.0,2109.0 +1065769,1065769,1065770,1,31.0,4.0,1.0,0.0,1,15600.0,1054606,4.0,22688.0,2109.0 +1065770,1065770,1065771,1,31.0,4.0,1.0,0.0,1,15600.0,1054606,4.0,22688.0,2109.0 +1065771,1065771,1065772,1,31.0,4.0,1.0,0.0,1,4500.0,1031452,4.0,22686.0,2109.0 +1065772,1065772,1065773,4,37.0,4.0,2.0,0.0,1,150000.0,1031452,1.0,22688.0,2109.0 +1065773,1065773,1065774,4,37.0,4.0,2.0,2.0,1,150000.0,1031452,1.0,22685.0,2109.0 +1065774,1065774,1065775,4,37.0,4.0,2.0,2.0,1,150000.0,1031452,1.0,22688.0,2109.0 +1065775,1065775,1065776,4,36.0,4.0,2.0,2.0,1,70000.0,1080470,1.0,22688.0,2109.0 +1065776,1065776,1065777,4,36.0,4.0,2.0,2.0,1,70000.0,1080470,1.0,22688.0,2109.0 +1065777,1065777,1065778,4,36.0,4.0,2.0,2.0,1,70000.0,1080470,1.0,22688.0,2109.0 +1065778,1065778,1065779,4,36.0,4.0,2.0,2.0,1,70000.0,1080470,1.0,22688.0,2109.0 +1065779,1065779,1065780,4,36.0,4.0,2.0,2.0,1,70000.0,1080470,1.0,22688.0,2109.0 +1065780,1065780,1065781,4,36.0,4.0,2.0,2.0,1,70000.0,1080470,1.0,22688.0,2109.0 +1065781,1065781,1065782,4,36.0,4.0,2.0,2.0,1,70000.0,1080470,1.0,22688.0,2109.0 +1065782,1065782,1065783,4,36.0,4.0,2.0,2.0,1,70000.0,1080470,1.0,22688.0,2109.0 +1065783,1065783,1065784,1,31.0,3.0,2.0,2.0,1,65000.0,1073449,4.0,22688.0,2109.0 +1065784,1065784,1065785,1,31.0,3.0,2.0,0.0,1,65000.0,1073449,4.0,22688.0,2109.0 +1065785,1065785,1065786,1,31.0,3.0,2.0,0.0,1,65000.0,1073449,4.0,22686.0,2109.0 +1065786,1065786,1065787,1,31.0,3.0,2.0,0.0,1,65000.0,1073449,4.0,22688.0,2109.0 +1065787,1065787,1065788,1,31.0,3.0,2.0,0.0,1,65000.0,1073449,4.0,22688.0,2109.0 +1065788,1065788,1065789,1,31.0,3.0,2.0,0.0,1,65000.0,1073449,4.0,22688.0,2109.0 +1065789,1065789,1065790,1,31.0,3.0,2.0,0.0,1,65000.0,1073449,4.0,22688.0,2109.0 +1065790,1065790,1065791,1,31.0,3.0,2.0,0.0,1,65000.0,1073449,4.0,22685.0,2109.0 +1065791,1065791,1065792,1,31.0,3.0,2.0,0.0,1,65000.0,1073449,4.0,22686.0,2109.0 +1065792,1065792,1065793,1,31.0,3.0,2.0,0.0,1,65000.0,1073449,4.0,22685.0,2109.0 +1065793,1065793,1065794,1,31.0,3.0,2.0,0.0,1,65000.0,1073449,4.0,22688.0,2109.0 +1065794,1065794,1065795,1,31.0,3.0,2.0,0.0,1,65000.0,1073449,4.0,22688.0,2109.0 +1065795,1065795,1065796,2,26.0,3.0,1.0,0.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065796,1065796,1065797,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22686.0,2109.0 +1065797,1065797,1065798,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065798,1065798,1065799,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065799,1065799,1065800,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065800,1065800,1065801,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065801,1065801,1065802,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065802,1065802,1065803,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065803,1065803,1065804,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065804,1065804,1065805,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065805,1065805,1065806,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22685.0,2109.0 +1065806,1065806,1065807,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065807,1065807,1065808,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065808,1065808,1065809,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065809,1065809,1065810,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065810,1065810,1065811,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065811,1065811,1065812,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065812,1065812,1065813,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065813,1065813,1065814,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065814,1065814,1065815,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22688.0,2109.0 +1065815,1065815,1065816,2,39.0,2.0,1.0,1.0,1,67900.0,1010145,5.0,22688.0,2109.0 +1065816,1065816,1065817,2,39.0,2.0,1.0,0.0,1,67900.0,1010145,5.0,22688.0,2109.0 +1065817,1065817,1065818,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22688.0,2109.0 +1065818,1065818,1065819,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22688.0,2109.0 +1065819,1065819,1065820,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065820,1065820,1065821,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22687.0,2109.0 +1065821,1065821,1065822,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22685.0,2109.0 +1065822,1065822,1065823,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065823,1065823,1065824,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065824,1065824,1065825,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065825,1065825,1065826,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065826,1065826,1065827,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065827,1065827,1065828,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065828,1065828,1065829,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065829,1065829,1065830,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22687.0,2109.0 +1065830,1065830,1065831,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065831,1065831,1065832,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22686.0,2109.0 +1065832,1065832,1065833,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065833,1065833,1065834,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065834,1065834,1065835,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065835,1065835,1065836,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065836,1065836,1065837,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065837,1065837,1065838,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065838,1065838,1065839,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065839,1065839,1065840,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22686.0,2109.0 +1065840,1065840,1065841,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065841,1065841,1065842,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065842,1065842,1065843,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065843,1065843,1065844,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22686.0,2109.0 +1065844,1065844,1065845,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065845,1065845,1065846,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065846,1065846,1065847,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065847,1065847,1065848,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22688.0,2109.0 +1065848,1065848,1065849,1,31.0,2.0,1.0,0.0,1,45000.0,1080470,6.0,22685.0,2109.0 +1065849,1065849,1065850,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065850,1065850,1065851,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065851,1065851,1065852,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065852,1065852,1065853,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065853,1065853,1065854,1,31.0,2.0,1.0,0.0,1,45000.0,1080470,6.0,22688.0,2109.0 +1065854,1065854,1065855,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22685.0,2109.0 +1065855,1065855,1065856,1,31.0,2.0,1.0,0.0,1,45000.0,1080470,6.0,22688.0,2109.0 +1065856,1065856,1065857,1,31.0,2.0,1.0,0.0,1,45000.0,1080470,6.0,22688.0,2109.0 +1065857,1065857,1065858,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065858,1065858,1065859,1,31.0,2.0,1.0,0.0,1,45000.0,1080470,6.0,22688.0,2109.0 +1065859,1065859,1065860,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065860,1065860,1065861,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22686.0,2109.0 +1065861,1065861,1065862,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22686.0,2109.0 +1065862,1065862,1065863,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065863,1065863,1065864,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22685.0,2109.0 +1065864,1065864,1065865,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22688.0,2109.0 +1065865,1065865,1065866,1,32.0,2.0,1.0,0.0,1,50000.0,1073449,6.0,22686.0,2109.0 +1065866,1065866,1065867,1,43.0,2.0,1.0,0.0,1,38500.0,1031452,6.0,22686.0,2109.0 +1065867,1065867,1065868,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22688.0,2109.0 +1065868,1065868,1065869,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22688.0,2109.0 +1065869,1065869,1065870,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22688.0,2109.0 +1065870,1065870,1065871,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22685.0,2109.0 +1065871,1065871,1065872,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22688.0,2109.0 +1065872,1065872,1065873,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22688.0,2109.0 +1065873,1065873,1065874,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22688.0,2109.0 +1065874,1065874,1065875,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22688.0,2109.0 +1065875,1065875,1065876,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22688.0,2109.0 +1065876,1065876,1065877,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22688.0,2109.0 +1065877,1065877,1065878,1,39.0,2.0,1.0,0.0,1,47000.0,1031452,4.0,22688.0,2109.0 +1065878,1065878,1065879,1,30.0,2.0,1.0,0.0,1,45000.0,1054606,4.0,22686.0,2109.0 +1065879,1065879,1065880,1,30.0,2.0,1.0,0.0,1,45000.0,1054606,4.0,22688.0,2109.0 +1065880,1065880,1065881,1,30.0,2.0,1.0,0.0,1,45000.0,1054606,4.0,22685.0,2109.0 +1065881,1065881,1065882,1,39.0,2.0,1.0,0.0,1,47000.0,1031452,4.0,22688.0,2109.0 +1065882,1065882,1065883,1,30.0,2.0,1.0,0.0,1,45000.0,1054606,4.0,22688.0,2109.0 +1065883,1065883,1065884,1,39.0,2.0,1.0,0.0,1,47000.0,1031452,4.0,22688.0,2109.0 +1065884,1065884,1065885,1,26.0,2.0,1.0,0.0,1,34200.0,1054606,4.0,22685.0,2109.0 +1065885,1065885,1065886,1,30.0,2.0,1.0,0.0,1,50000.0,1073449,4.0,22686.0,2109.0 +1065886,1065886,1065887,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065887,1065887,1065888,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22686.0,2109.0 +1065888,1065888,1065889,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22688.0,2109.0 +1065889,1065889,1065890,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22687.0,2109.0 +1065890,1065890,1065891,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22685.0,2109.0 +1065891,1065891,1065892,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065892,1065892,1065893,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22688.0,2109.0 +1065893,1065893,1065894,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065894,1065894,1065895,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22686.0,2109.0 +1065895,1065895,1065896,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065896,1065896,1065897,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065897,1065897,1065898,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065898,1065898,1065899,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065899,1065899,1065900,1,25.0,2.0,1.0,0.0,1,12000.0,1010145,6.0,22688.0,2109.0 +1065900,1065900,1065901,1,25.0,2.0,1.0,0.0,1,12000.0,1010145,6.0,22688.0,2109.0 +1065901,1065901,1065902,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065902,1065902,1065903,1,25.0,2.0,1.0,0.0,1,12000.0,1010145,6.0,22687.0,2109.0 +1065903,1065903,1065904,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065904,1065904,1065905,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22688.0,2109.0 +1065905,1065905,1065906,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065906,1065906,1065907,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22686.0,2109.0 +1065907,1065907,1065908,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065908,1065908,1065909,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065909,1065909,1065910,1,25.0,2.0,1.0,0.0,1,12000.0,1010145,6.0,22687.0,2109.0 +1065910,1065910,1065911,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065911,1065911,1065912,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065912,1065912,1065913,1,25.0,2.0,1.0,0.0,1,12000.0,1010145,6.0,22688.0,2109.0 +1065913,1065913,1065914,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065914,1065914,1065915,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065915,1065915,1065916,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22687.0,2109.0 +1065916,1065916,1065917,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22685.0,2109.0 +1065917,1065917,1065918,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22688.0,2109.0 +1065918,1065918,1065919,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22688.0,2109.0 +1065919,1065919,1065920,1,25.0,2.0,1.0,0.0,1,12000.0,1010145,6.0,22688.0,2109.0 +1065920,1065920,1065921,1,35.0,2.0,1.0,0.0,1,20000.0,1080470,4.0,22686.0,2109.0 +1065921,1065921,1065922,1,29.0,2.0,1.0,0.0,1,28000.0,1054606,4.0,22688.0,2109.0 +1065922,1065922,1065923,1,35.0,2.0,1.0,0.0,1,20000.0,1080470,4.0,22688.0,2109.0 +1065923,1065923,1065924,1,32.0,2.0,1.0,0.0,1,14000.0,1054606,4.0,22688.0,2109.0 +1065924,1065924,1065925,1,41.0,2.0,1.0,0.0,1,14000.0,1080470,4.0,22688.0,2109.0 +1065925,1065925,1065926,1,41.0,2.0,1.0,0.0,1,14000.0,1080470,4.0,22685.0,2109.0 +1065926,1065926,1065927,1,41.0,2.0,1.0,0.0,1,14000.0,1080470,4.0,22688.0,2109.0 +1065927,1065927,1065928,1,41.0,2.0,1.0,0.0,1,14000.0,1080470,4.0,22688.0,2109.0 +1065928,1065928,1065929,1,29.0,2.0,1.0,0.0,1,12600.0,1010145,6.0,22685.0,2109.0 +1065929,1065929,1065930,1,29.0,2.0,1.0,0.0,1,12600.0,1010145,6.0,22686.0,2109.0 +1065930,1065930,1065931,1,30.0,2.0,1.0,0.0,1,340.0,1054606,6.0,22686.0,2109.0 +1065931,1065931,1065932,1,30.0,2.0,1.0,0.0,1,340.0,1054606,6.0,22688.0,2109.0 +1065932,1065932,1065933,1,30.0,2.0,1.0,0.0,1,4200.0,1031452,4.0,22687.0,2109.0 +1065933,1065933,1065934,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065934,1065934,1065935,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065935,1065935,1065936,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065936,1065936,1065937,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065937,1065937,1065938,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065938,1065938,1065939,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065939,1065939,1065940,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065940,1065940,1065941,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22687.0,2109.0 +1065941,1065941,1065942,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065942,1065942,1065943,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065943,1065943,1065944,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065944,1065944,1065945,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22685.0,2109.0 +1065945,1065945,1065946,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065946,1065946,1065947,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065947,1065947,1065948,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22687.0,2109.0 +1065948,1065948,1065949,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22688.0,2109.0 +1065949,1065949,1065950,1,37.0,2.0,0.0,0.0,1,27000.0,1080470,4.0,22688.0,2109.0 +1065950,1065950,1065951,1,30.0,2.0,0.0,0.0,1,11500.0,1073449,4.0,22688.0,2109.0 +1065951,1065951,1065952,1,30.0,2.0,0.0,0.0,1,11500.0,1073449,4.0,22688.0,2109.0 +1065952,1065952,1065953,1,44.0,2.0,0.0,0.0,1,19600.0,1031452,4.0,22685.0,2109.0 +1065953,1065953,1065954,1,44.0,2.0,0.0,0.0,1,19600.0,1031452,4.0,22688.0,2109.0 +1065954,1065954,1065955,1,44.0,2.0,0.0,0.0,1,19600.0,1031452,4.0,22688.0,2109.0 +1065955,1065955,1065956,1,44.0,2.0,0.0,0.0,1,19600.0,1031452,4.0,22686.0,2109.0 +1065956,1065956,1065957,1,44.0,2.0,0.0,0.0,1,19600.0,1031452,4.0,22688.0,2109.0 +1065957,1065957,1065958,1,44.0,2.0,0.0,0.0,1,19600.0,1031452,4.0,22688.0,2109.0 +1065958,1065958,1065959,1,44.0,2.0,0.0,0.0,1,19600.0,1031452,4.0,22688.0,2109.0 +1065959,1065959,1065960,1,44.0,2.0,0.0,0.0,1,19600.0,1031452,4.0,22686.0,2109.0 +1065960,1065960,1065961,1,32.0,2.0,0.0,0.0,1,17500.0,1073449,4.0,22688.0,2109.0 +1065961,1065961,1065962,1,32.0,2.0,0.0,0.0,1,17500.0,1073449,4.0,22688.0,2109.0 +1065962,1065962,1065963,3,35.0,2.0,1.0,0.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065963,1065963,1065964,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065964,1065964,1065965,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065965,1065965,1065966,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065966,1065966,1065967,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065967,1065967,1065968,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065968,1065968,1065969,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065969,1065969,1065970,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065970,1065970,1065971,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065971,1065971,1065972,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065972,1065972,1065973,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065973,1065973,1065974,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065974,1065974,1065975,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065975,1065975,1065976,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22686.0,2109.0 +1065976,1065976,1065977,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065977,1065977,1065978,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065978,1065978,1065979,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065979,1065979,1065980,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065980,1065980,1065981,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1065981,1065981,1065982,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065982,1065982,1065983,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1065983,1065983,1065984,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065984,1065984,1065985,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065985,1065985,1065986,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065986,1065986,1065987,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065987,1065987,1065988,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22687.0,2109.0 +1065988,1065988,1065989,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065989,1065989,1065990,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065990,1065990,1065991,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22686.0,2109.0 +1065991,1065991,1065992,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22687.0,2109.0 +1065992,1065992,1065993,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065993,1065993,1065994,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1065994,1065994,1065995,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1065995,1065995,1065996,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065996,1065996,1065997,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1065997,1065997,1065998,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22686.0,2109.0 +1065998,1065998,1065999,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1065999,1065999,1066000,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22686.0,2109.0 +1066000,1066000,1066001,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1066001,1066001,1066002,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066002,1066002,1066003,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066003,1066003,1066004,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066004,1066004,1066005,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1066005,1066005,1066006,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066006,1066006,1066007,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066007,1066007,1066008,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066008,1066008,1066009,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1066009,1066009,1066010,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066010,1066010,1066011,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066011,1066011,1066012,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066012,1066012,1066013,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066013,1066013,1066014,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066014,1066014,1066015,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066015,1066015,1066016,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22687.0,2109.0 +1066016,1066016,1066017,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066017,1066017,1066018,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066018,1066018,1066019,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066019,1066019,1066020,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22686.0,2109.0 +1066020,1066020,1066021,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1066021,1066021,1066022,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1066022,1066022,1066023,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066023,1066023,1066024,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066024,1066024,1066025,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066025,1066025,1066026,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066026,1066026,1066027,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066027,1066027,1066028,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066028,1066028,1066029,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066029,1066029,1066030,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066030,1066030,1066031,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066031,1066031,1066032,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1066032,1066032,1066033,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066033,1066033,1066034,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22686.0,2109.0 +1066034,1066034,1066035,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22685.0,2109.0 +1066035,1066035,1066036,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22686.0,2109.0 +1066036,1066036,1066037,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066037,1066037,1066038,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066038,1066038,1066039,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22688.0,2109.0 +1066039,1066039,1066040,2,40.0,2.0,1.0,1.0,1,32000.0,1010145,3.0,22688.0,2109.0 +1066040,1066040,1066041,2,40.0,2.0,1.0,1.0,1,32000.0,1010145,3.0,22685.0,2109.0 +1066041,1066041,1066042,2,40.0,2.0,1.0,1.0,1,32000.0,1010145,3.0,22688.0,2109.0 +1066042,1066042,1066043,2,40.0,2.0,1.0,1.0,1,32000.0,1010145,3.0,22688.0,2109.0 +1066043,1066043,1066044,4,34.0,2.0,1.0,1.0,1,4890.0,1073449,3.0,22686.0,2109.0 +1066044,1066044,1066045,4,34.0,2.0,1.0,3.0,1,4890.0,1073449,3.0,22688.0,2109.0 +1066045,1066045,1066046,4,34.0,2.0,1.0,3.0,1,4890.0,1073449,3.0,22685.0,2109.0 +1066046,1066046,1066047,4,35.0,2.0,1.0,3.0,1,14370.0,1080470,3.0,22686.0,2109.0 +1066047,1066047,1066048,4,35.0,2.0,1.0,3.0,1,14370.0,1080470,3.0,22688.0,2109.0 +1066048,1066048,1066049,4,35.0,2.0,1.0,3.0,1,14370.0,1080470,3.0,22688.0,2109.0 +1066049,1066049,1066050,2,36.0,2.0,1.0,3.0,1,23000.0,1073449,3.0,22687.0,2109.0 +1066050,1066050,1066051,2,28.0,2.0,1.0,1.0,1,8000.0,1031452,3.0,22688.0,2109.0 +1066051,1066051,1066052,2,36.0,2.0,1.0,1.0,1,23000.0,1073449,3.0,22688.0,2109.0 +1066052,1066052,1066053,2,36.0,2.0,1.0,1.0,1,23000.0,1073449,3.0,22688.0,2109.0 +1066053,1066053,1066054,2,28.0,2.0,1.0,1.0,1,8000.0,1031452,3.0,22688.0,2109.0 +1066054,1066054,1066055,4,42.0,2.0,0.0,1.0,1,18200.0,1073449,3.0,22686.0,2109.0 +1066055,1066055,1066056,3,36.0,2.0,0.0,2.0,1,25320.0,1031452,3.0,22688.0,2109.0 +1066056,1066056,1066057,3,29.0,2.0,0.0,1.0,1,8800.0,1073449,3.0,22685.0,2109.0 +1066057,1066057,1066058,3,29.0,2.0,0.0,2.0,1,8800.0,1073449,3.0,22688.0,2109.0 +1066058,1066058,1066059,2,27.0,3.0,2.0,2.0,1,75500.0,1031452,1.0,22688.0,2109.0 +1066059,1066059,1066060,2,27.0,3.0,2.0,0.0,1,75500.0,1031452,1.0,22688.0,2109.0 +1066060,1066060,1066061,2,27.0,3.0,2.0,0.0,1,75500.0,1031452,1.0,22688.0,2109.0 +1066061,1066061,1066062,2,27.0,3.0,2.0,0.0,1,75500.0,1031452,1.0,22688.0,2109.0 +1066062,1066062,1066063,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066063,1066063,1066064,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22686.0,2109.0 +1066064,1066064,1066065,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22685.0,2109.0 +1066065,1066065,1066066,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066066,1066066,1066067,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066067,1066067,1066068,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066068,1066068,1066069,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066069,1066069,1066070,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22685.0,2109.0 +1066070,1066070,1066071,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066071,1066071,1066072,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22686.0,2109.0 +1066072,1066072,1066073,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066073,1066073,1066074,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22687.0,2109.0 +1066074,1066074,1066075,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066075,1066075,1066076,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066076,1066076,1066077,1,30.0,3.0,2.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066077,1066077,1066078,1,26.0,3.0,2.0,0.0,1,58000.0,1073449,4.0,22688.0,2109.0 +1066078,1066078,1066079,1,26.0,3.0,2.0,0.0,1,58000.0,1073449,4.0,22688.0,2109.0 +1066079,1066079,1066080,1,26.0,3.0,2.0,0.0,1,58000.0,1073449,4.0,22688.0,2109.0 +1066080,1066080,1066081,1,26.0,3.0,2.0,0.0,1,58000.0,1073449,4.0,22688.0,2109.0 +1066081,1066081,1066082,1,26.0,3.0,2.0,0.0,1,58000.0,1073449,4.0,22685.0,2109.0 +1066082,1066082,1066083,2,33.0,3.0,1.0,0.0,1,42200.0,1073449,1.0,22688.0,2109.0 +1066083,1066083,1066084,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22688.0,2109.0 +1066084,1066084,1066085,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22688.0,2109.0 +1066085,1066085,1066086,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22687.0,2109.0 +1066086,1066086,1066087,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22686.0,2109.0 +1066087,1066087,1066088,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22688.0,2109.0 +1066088,1066088,1066089,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22688.0,2109.0 +1066089,1066089,1066090,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22685.0,2109.0 +1066090,1066090,1066091,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22685.0,2109.0 +1066091,1066091,1066092,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22685.0,2109.0 +1066092,1066092,1066093,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22688.0,2109.0 +1066093,1066093,1066094,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22685.0,2109.0 +1066094,1066094,1066095,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22688.0,2109.0 +1066095,1066095,1066096,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22688.0,2109.0 +1066096,1066096,1066097,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22688.0,2109.0 +1066097,1066097,1066098,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22688.0,2109.0 +1066098,1066098,1066099,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22688.0,2109.0 +1066099,1066099,1066100,1,35.0,3.0,1.0,0.0,1,35000.0,1031452,6.0,22685.0,2109.0 +1066100,1066100,1066101,1,25.0,3.0,1.0,0.0,1,42000.0,1054606,6.0,22686.0,2109.0 +1066101,1066101,1066102,1,25.0,3.0,1.0,0.0,1,42000.0,1054606,6.0,22688.0,2109.0 +1066102,1066102,1066103,1,25.0,3.0,1.0,0.0,1,42000.0,1054606,6.0,22686.0,2109.0 +1066103,1066103,1066104,1,25.0,3.0,1.0,0.0,1,42000.0,1054606,6.0,22688.0,2109.0 +1066104,1066104,1066105,1,25.0,3.0,1.0,0.0,1,42000.0,1054606,6.0,22688.0,2109.0 +1066105,1066105,1066106,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22686.0,2109.0 +1066106,1066106,1066107,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22688.0,2109.0 +1066107,1066107,1066108,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22688.0,2109.0 +1066108,1066108,1066109,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22688.0,2109.0 +1066109,1066109,1066110,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22688.0,2109.0 +1066110,1066110,1066111,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22688.0,2109.0 +1066111,1066111,1066112,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22688.0,2109.0 +1066112,1066112,1066113,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22686.0,2109.0 +1066113,1066113,1066114,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22688.0,2109.0 +1066114,1066114,1066115,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22688.0,2109.0 +1066115,1066115,1066116,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22686.0,2109.0 +1066116,1066116,1066117,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22688.0,2109.0 +1066117,1066117,1066118,1,40.0,3.0,1.0,0.0,1,34000.0,1031452,4.0,22685.0,2109.0 +1066118,1066118,1066119,1,28.0,3.0,1.0,0.0,1,33000.0,1054606,4.0,22686.0,2109.0 +1066119,1066119,1066120,1,28.0,3.0,1.0,0.0,1,33000.0,1054606,4.0,22687.0,2109.0 +1066120,1066120,1066121,1,28.0,3.0,1.0,0.0,1,33000.0,1054606,4.0,22688.0,2109.0 +1066121,1066121,1066122,1,28.0,3.0,1.0,0.0,1,33000.0,1054606,4.0,22688.0,2109.0 +1066122,1066122,1066123,1,28.0,3.0,1.0,0.0,1,33000.0,1054606,4.0,22688.0,2109.0 +1066123,1066123,1066124,1,28.0,3.0,1.0,0.0,1,33000.0,1054606,4.0,22688.0,2109.0 +1066124,1066124,1066125,1,28.0,3.0,1.0,0.0,1,33000.0,1054606,4.0,22688.0,2109.0 +1066125,1066125,1066126,1,28.0,3.0,1.0,0.0,1,33000.0,1054606,4.0,22685.0,2109.0 +1066126,1066126,1066127,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066127,1066127,1066128,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066128,1066128,1066129,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066129,1066129,1066130,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066130,1066130,1066131,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066131,1066131,1066132,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066132,1066132,1066133,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066133,1066133,1066134,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066134,1066134,1066135,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066135,1066135,1066136,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066136,1066136,1066137,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22686.0,2109.0 +1066137,1066137,1066138,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066138,1066138,1066139,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066139,1066139,1066140,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066140,1066140,1066141,1,31.0,3.0,1.0,0.0,1,50000.0,1010145,4.0,22688.0,2109.0 +1066141,1066141,1066142,5,35.0,3.0,3.0,0.0,1,64000.0,1054606,1.0,22688.0,2109.0 +1066142,1066142,1066143,2,25.0,3.0,1.0,3.0,1,51000.0,1080470,2.0,22686.0,2109.0 +1066143,1066143,1066144,2,25.0,3.0,1.0,1.0,1,51000.0,1080470,2.0,22688.0,2109.0 +1066144,1066144,1066145,2,25.0,3.0,1.0,1.0,1,51000.0,1080470,2.0,22688.0,2109.0 +1066145,1066145,1066146,2,25.0,3.0,1.0,1.0,1,51000.0,1080470,2.0,22686.0,2109.0 +1066146,1066146,1066147,3,28.0,1.0,3.0,1.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066147,1066147,1066148,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22686.0,2109.0 +1066148,1066148,1066149,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22686.0,2109.0 +1066149,1066149,1066150,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22687.0,2109.0 +1066150,1066150,1066151,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066151,1066151,1066152,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066152,1066152,1066153,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22686.0,2109.0 +1066153,1066153,1066154,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066154,1066154,1066155,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066155,1066155,1066156,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22685.0,2109.0 +1066156,1066156,1066157,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066157,1066157,1066158,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066158,1066158,1066159,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22685.0,2109.0 +1066159,1066159,1066160,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22686.0,2109.0 +1066160,1066160,1066161,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066161,1066161,1066162,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066162,1066162,1066163,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22686.0,2109.0 +1066163,1066163,1066164,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22686.0,2109.0 +1066164,1066164,1066165,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22685.0,2109.0 +1066165,1066165,1066166,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066166,1066166,1066167,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22685.0,2109.0 +1066167,1066167,1066168,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066168,1066168,1066169,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066169,1066169,1066170,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066170,1066170,1066171,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066171,1066171,1066172,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066172,1066172,1066173,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066173,1066173,1066174,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066174,1066174,1066175,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066175,1066175,1066176,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066176,1066176,1066177,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066177,1066177,1066178,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066178,1066178,1066179,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066179,1066179,1066180,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066180,1066180,1066181,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066181,1066181,1066182,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066182,1066182,1066183,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066183,1066183,1066184,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066184,1066184,1066185,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22688.0,2109.0 +1066185,1066185,1066186,2,40.0,1.0,2.0,0.0,1,61400.0,1080470,5.0,22687.0,2109.0 +1066186,1066186,1066187,1,30.0,1.0,2.0,0.0,1,100000.0,1031452,4.0,22687.0,2109.0 +1066187,1066187,1066188,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22688.0,2109.0 +1066188,1066188,1066189,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22688.0,2109.0 +1066189,1066189,1066190,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22688.0,2109.0 +1066190,1066190,1066191,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22688.0,2109.0 +1066191,1066191,1066192,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22688.0,2109.0 +1066192,1066192,1066193,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22688.0,2109.0 +1066193,1066193,1066194,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22688.0,2109.0 +1066194,1066194,1066195,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22688.0,2109.0 +1066195,1066195,1066196,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22688.0,2109.0 +1066196,1066196,1066197,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22685.0,2109.0 +1066197,1066197,1066198,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22686.0,2109.0 +1066198,1066198,1066199,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22688.0,2109.0 +1066199,1066199,1066200,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22685.0,2109.0 +1066200,1066200,1066201,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22688.0,2109.0 +1066201,1066201,1066202,2,42.0,1.0,1.0,0.0,1,75000.0,1073449,2.0,22685.0,2109.0 +1066202,1066202,1066203,1,33.0,1.0,1.0,0.0,1,71000.0,1010145,6.0,22688.0,2109.0 +1066203,1066203,1066204,1,39.0,1.0,1.0,0.0,1,65020.0,1080470,6.0,22688.0,2109.0 +1066204,1066204,1066205,1,33.0,1.0,1.0,0.0,1,71000.0,1010145,6.0,22688.0,2109.0 +1066205,1066205,1066206,1,39.0,1.0,1.0,0.0,1,65020.0,1080470,6.0,22686.0,2109.0 +1066206,1066206,1066207,1,33.0,1.0,1.0,0.0,1,69150.0,1080470,6.0,22688.0,2109.0 +1066207,1066207,1066208,1,33.0,1.0,1.0,0.0,1,71000.0,1010145,6.0,22688.0,2109.0 +1066208,1066208,1066209,1,33.0,1.0,1.0,0.0,1,71000.0,1010145,6.0,22686.0,2109.0 +1066209,1066209,1066210,1,44.0,1.0,1.0,0.0,1,65000.0,1073449,6.0,22688.0,2109.0 +1066210,1066210,1066211,1,39.0,1.0,1.0,0.0,1,65020.0,1080470,6.0,22685.0,2109.0 +1066211,1066211,1066212,1,44.0,1.0,1.0,0.0,1,65000.0,1073449,6.0,22687.0,2109.0 +1066212,1066212,1066213,1,25.0,1.0,1.0,0.0,1,62000.0,1031452,6.0,22688.0,2109.0 +1066213,1066213,1066214,1,34.0,1.0,1.0,0.0,1,70000.0,1073449,6.0,22688.0,2109.0 +1066214,1066214,1066215,1,35.0,1.0,1.0,0.0,1,70000.0,1010145,4.0,22686.0,2109.0 +1066215,1066215,1066216,1,34.0,1.0,1.0,0.0,1,86500.0,1010145,4.0,22688.0,2109.0 +1066216,1066216,1066217,1,35.0,1.0,1.0,0.0,1,70000.0,1010145,4.0,22688.0,2109.0 +1066217,1066217,1066218,1,27.0,1.0,1.0,0.0,1,83000.0,1073449,4.0,22688.0,2109.0 +1066218,1066218,1066219,1,31.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22688.0,2109.0 +1066219,1066219,1066220,1,42.0,1.0,1.0,0.0,1,82000.0,1073449,4.0,22688.0,2109.0 +1066220,1066220,1066221,1,27.0,1.0,1.0,0.0,1,83000.0,1073449,4.0,22688.0,2109.0 +1066221,1066221,1066222,1,36.0,1.0,1.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066222,1066222,1066223,1,36.0,1.0,1.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066223,1066223,1066224,1,36.0,1.0,1.0,0.0,1,67000.0,1031452,4.0,22688.0,2109.0 +1066224,1066224,1066225,2,34.0,1.0,0.0,0.0,1,60400.0,1054606,7.0,22688.0,2109.0 +1066225,1066225,1066226,2,34.0,1.0,0.0,0.0,1,60400.0,1054606,7.0,22686.0,2109.0 +1066226,1066226,1066227,2,34.0,1.0,0.0,0.0,1,60400.0,1054606,7.0,22688.0,2109.0 +1066227,1066227,1066228,2,34.0,1.0,0.0,0.0,1,60400.0,1054606,7.0,22686.0,2109.0 +1066228,1066228,1066229,2,34.0,1.0,0.0,0.0,1,60400.0,1054606,7.0,22688.0,2109.0 +1066229,1066229,1066230,2,34.0,1.0,0.0,0.0,1,60400.0,1054606,7.0,22688.0,2109.0 +1066230,1066230,1066231,2,34.0,1.0,0.0,0.0,1,60400.0,1054606,7.0,22688.0,2109.0 +1066231,1066231,1066232,2,34.0,1.0,0.0,0.0,1,60400.0,1054606,7.0,22687.0,2109.0 +1066232,1066232,1066233,2,26.0,1.0,2.0,0.0,1,42700.0,1073449,7.0,22688.0,2109.0 +1066233,1066233,1066234,1,27.0,1.0,1.0,0.0,1,60000.0,1080470,6.0,22688.0,2109.0 +1066234,1066234,1066235,1,44.0,1.0,1.0,0.0,1,41000.0,1080470,6.0,22686.0,2109.0 +1066235,1066235,1066236,1,35.0,1.0,1.0,0.0,1,56000.0,1080470,6.0,22688.0,2109.0 +1066236,1066236,1066237,1,25.0,1.0,1.0,0.0,1,44600.0,1010145,6.0,22688.0,2109.0 +1066237,1066237,1066238,1,27.0,1.0,1.0,0.0,1,60000.0,1080470,6.0,22687.0,2109.0 +1066238,1066238,1066239,1,35.0,1.0,1.0,0.0,1,56000.0,1080470,6.0,22687.0,2109.0 +1066239,1066239,1066240,1,26.0,1.0,1.0,0.0,1,53000.0,1031452,6.0,22688.0,2109.0 +1066240,1066240,1066241,1,27.0,1.0,1.0,0.0,1,60000.0,1080470,6.0,22688.0,2109.0 +1066241,1066241,1066242,1,41.0,1.0,1.0,0.0,1,50000.0,1054606,6.0,22688.0,2109.0 +1066242,1066242,1066243,1,28.0,1.0,1.0,0.0,1,34000.0,1073449,6.0,22688.0,2109.0 +1066243,1066243,1066244,1,41.0,1.0,1.0,0.0,1,50000.0,1054606,6.0,22688.0,2109.0 +1066244,1066244,1066245,1,27.0,1.0,1.0,0.0,1,60000.0,1080470,6.0,22688.0,2109.0 +1066245,1066245,1066246,1,25.0,1.0,1.0,0.0,1,44600.0,1010145,6.0,22688.0,2109.0 +1066246,1066246,1066247,1,35.0,1.0,1.0,0.0,1,56000.0,1080470,6.0,22688.0,2109.0 +1066247,1066247,1066248,1,27.0,1.0,1.0,0.0,1,60000.0,1080470,6.0,22688.0,2109.0 +1066248,1066248,1066249,1,25.0,1.0,1.0,0.0,1,38000.0,1080470,6.0,22688.0,2109.0 +1066249,1066249,1066250,1,27.0,1.0,1.0,0.0,1,60000.0,1080470,6.0,22688.0,2109.0 +1066250,1066250,1066251,1,28.0,1.0,1.0,0.0,1,34500.0,1073449,6.0,22688.0,2109.0 +1066251,1066251,1066252,1,29.0,1.0,1.0,0.0,1,40000.0,1073449,6.0,22686.0,2109.0 +1066252,1066252,1066253,1,28.0,1.0,1.0,0.0,1,34500.0,1073449,6.0,22688.0,2109.0 +1066253,1066253,1066254,1,28.0,1.0,1.0,0.0,1,45000.0,1073449,6.0,22688.0,2109.0 +1066254,1066254,1066255,1,27.0,1.0,1.0,0.0,1,45400.0,1080470,6.0,22688.0,2109.0 +1066255,1066255,1066256,1,32.0,1.0,1.0,0.0,1,49500.0,1031452,4.0,22688.0,2109.0 +1066256,1066256,1066257,1,34.0,1.0,1.0,0.0,1,35250.0,1031452,4.0,22688.0,2109.0 +1066257,1066257,1066258,1,34.0,1.0,1.0,0.0,1,35250.0,1031452,4.0,22685.0,2109.0 +1066258,1066258,1066259,1,39.0,1.0,1.0,0.0,1,45000.0,1054606,4.0,22688.0,2109.0 +1066259,1066259,1066260,1,34.0,1.0,1.0,0.0,1,35250.0,1031452,4.0,22688.0,2109.0 +1066260,1066260,1066261,1,28.0,1.0,1.0,0.0,1,40000.0,1073449,4.0,22685.0,2109.0 +1066261,1066261,1066262,1,39.0,1.0,1.0,0.0,1,45000.0,1054606,4.0,22688.0,2109.0 +1066262,1066262,1066263,1,29.0,1.0,1.0,0.0,1,41100.0,1031452,4.0,22688.0,2109.0 +1066263,1066263,1066264,1,25.0,1.0,1.0,0.0,1,52000.0,1054606,4.0,22688.0,2109.0 +1066264,1066264,1066265,1,26.0,1.0,1.0,0.0,1,55000.0,1073449,4.0,22685.0,2109.0 +1066265,1066265,1066266,1,32.0,1.0,1.0,0.0,1,36000.0,1080470,4.0,22688.0,2109.0 +1066266,1066266,1066267,1,29.0,1.0,1.0,0.0,1,55000.0,1010145,4.0,22688.0,2109.0 +1066267,1066267,1066268,1,39.0,1.0,1.0,0.0,1,53000.0,1073449,4.0,22688.0,2109.0 +1066268,1066268,1066269,2,26.0,1.0,0.0,0.0,1,32000.0,1073449,3.0,22688.0,2109.0 +1066269,1066269,1066270,2,26.0,1.0,0.0,0.0,1,32000.0,1073449,3.0,22688.0,2109.0 +1066270,1066270,1066271,1,25.0,1.0,0.0,0.0,1,53004.0,1080470,4.0,22688.0,2109.0 +1066271,1066271,1066272,2,28.0,1.0,2.0,0.0,1,21600.0,1010145,1.0,22688.0,2109.0 +1066272,1066272,1066273,1,42.0,1.0,3.0,0.0,1,30000.0,1031452,4.0,22687.0,2109.0 +1066273,1066273,1066274,1,42.0,1.0,3.0,0.0,1,30000.0,1031452,4.0,22685.0,2109.0 +1066274,1066274,1066275,1,42.0,1.0,3.0,0.0,1,30000.0,1031452,4.0,22688.0,2109.0 +1066275,1066275,1066276,1,42.0,1.0,3.0,0.0,1,30000.0,1031452,4.0,22688.0,2109.0 +1066276,1066276,1066277,2,34.0,1.0,1.0,0.0,1,15000.0,1010145,1.0,22688.0,2109.0 +1066277,1066277,1066278,2,27.0,1.0,1.0,0.0,1,12700.0,1010145,1.0,22687.0,2109.0 +1066278,1066278,1066279,2,28.0,1.0,1.0,0.0,1,20000.0,1073449,3.0,22688.0,2109.0 +1066279,1066279,1066280,2,44.0,1.0,1.0,0.0,1,15400.0,1031452,1.0,22688.0,2109.0 +1066280,1066280,1066281,2,27.0,1.0,1.0,0.0,1,13620.0,1010145,1.0,22688.0,2109.0 +1066281,1066281,1066282,2,27.0,1.0,1.0,0.0,1,13620.0,1010145,1.0,22688.0,2109.0 +1066282,1066282,1066283,2,27.0,1.0,1.0,0.0,1,13620.0,1010145,1.0,22686.0,2109.0 +1066283,1066283,1066284,1,32.0,1.0,1.0,0.0,1,12000.0,1054606,6.0,22686.0,2109.0 +1066284,1066284,1066285,1,25.0,1.0,1.0,0.0,1,22000.0,1080470,6.0,22688.0,2109.0 +1066285,1066285,1066286,1,32.0,1.0,1.0,0.0,1,12000.0,1054606,6.0,22688.0,2109.0 +1066286,1066286,1066287,1,32.0,1.0,1.0,0.0,1,12000.0,1054606,6.0,22688.0,2109.0 +1066287,1066287,1066288,1,29.0,1.0,1.0,0.0,1,19000.0,1031452,6.0,22687.0,2109.0 +1066288,1066288,1066289,1,25.0,1.0,1.0,0.0,1,22000.0,1080470,6.0,22688.0,2109.0 +1066289,1066289,1066290,1,31.0,1.0,1.0,0.0,1,25600.0,1010145,6.0,22686.0,2109.0 +1066290,1066290,1066291,1,32.0,1.0,1.0,0.0,1,12000.0,1054606,6.0,22688.0,2109.0 +1066291,1066291,1066292,1,32.0,1.0,1.0,0.0,1,12000.0,1054606,6.0,22687.0,2109.0 +1066292,1066292,1066293,1,29.0,1.0,1.0,0.0,1,19000.0,1031452,6.0,22688.0,2109.0 +1066293,1066293,1066294,1,32.0,1.0,1.0,0.0,1,12000.0,1054606,6.0,22688.0,2109.0 +1066294,1066294,1066295,1,32.0,1.0,1.0,0.0,1,12000.0,1054606,6.0,22688.0,2109.0 +1066295,1066295,1066296,1,29.0,1.0,1.0,0.0,1,19000.0,1031452,6.0,22686.0,2109.0 +1066296,1066296,1066297,1,32.0,1.0,1.0,0.0,1,12000.0,1054606,6.0,22688.0,2109.0 +1066297,1066297,1066298,1,29.0,1.0,1.0,0.0,1,20000.0,1010145,6.0,22688.0,2109.0 +1066298,1066298,1066299,1,29.0,1.0,1.0,0.0,1,20000.0,1010145,6.0,22686.0,2109.0 +1066299,1066299,1066300,1,32.0,1.0,1.0,0.0,1,1400.0,1010145,6.0,22688.0,2109.0 +1066300,1066300,1066301,1,33.0,1.0,1.0,0.0,1,24000.0,1010145,6.0,22688.0,2109.0 +1066301,1066301,1066302,1,33.0,1.0,1.0,0.0,1,24000.0,1010145,6.0,22686.0,2109.0 +1066302,1066302,1066303,1,26.0,1.0,1.0,0.0,1,26000.0,1031452,6.0,22688.0,2109.0 +1066303,1066303,1066304,1,26.0,1.0,1.0,0.0,1,26000.0,1031452,6.0,22688.0,2109.0 +1066304,1066304,1066305,1,26.0,1.0,1.0,0.0,1,20000.0,1031452,6.0,22688.0,2109.0 +1066305,1066305,1066306,1,33.0,1.0,1.0,0.0,1,24000.0,1010145,6.0,22686.0,2109.0 +1066306,1066306,1066307,1,26.0,1.0,1.0,0.0,1,20000.0,1031452,6.0,22688.0,2109.0 +1066307,1066307,1066308,1,26.0,1.0,1.0,0.0,1,26000.0,1031452,6.0,22688.0,2109.0 +1066308,1066308,1066309,1,30.0,1.0,1.0,0.0,1,25000.0,1080470,4.0,22685.0,2109.0 +1066309,1066309,1066310,1,30.0,1.0,1.0,0.0,1,25000.0,1080470,4.0,22688.0,2109.0 +1066310,1066310,1066311,1,30.0,1.0,1.0,0.0,1,25000.0,1080470,4.0,22688.0,2109.0 +1066311,1066311,1066312,1,30.0,1.0,1.0,0.0,1,25000.0,1080470,4.0,22688.0,2109.0 +1066312,1066312,1066313,1,30.0,1.0,1.0,0.0,1,25000.0,1080470,4.0,22686.0,2109.0 +1066313,1066313,1066314,1,30.0,1.0,1.0,0.0,1,25000.0,1080470,4.0,22686.0,2109.0 +1066314,1066314,1066315,1,30.0,1.0,1.0,0.0,1,25000.0,1080470,4.0,22688.0,2109.0 +1066315,1066315,1066316,1,27.0,1.0,1.0,0.0,1,30000.0,1073449,4.0,22688.0,2109.0 +1066316,1066316,1066317,1,27.0,1.0,1.0,0.0,1,30000.0,1073449,4.0,22685.0,2109.0 +1066317,1066317,1066318,1,25.0,1.0,1.0,0.0,1,30000.0,1010145,4.0,22688.0,2109.0 +1066318,1066318,1066319,1,29.0,1.0,1.0,0.0,1,11000.0,1080470,4.0,22685.0,2109.0 +1066319,1066319,1066320,1,25.0,1.0,1.0,0.0,1,20400.0,1010145,4.0,22688.0,2109.0 +1066320,1066320,1066321,1,25.0,1.0,1.0,0.0,1,30000.0,1054606,4.0,22688.0,2109.0 +1066321,1066321,1066322,1,25.0,1.0,1.0,0.0,1,30000.0,1054606,4.0,22687.0,2109.0 +1066322,1066322,1066323,1,25.0,1.0,1.0,0.0,1,30000.0,1054606,4.0,22688.0,2109.0 +1066323,1066323,1066324,1,25.0,1.0,1.0,0.0,1,30000.0,1054606,4.0,22688.0,2109.0 +1066324,1066324,1066325,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066325,1066325,1066326,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22685.0,2109.0 +1066326,1066326,1066327,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22686.0,2109.0 +1066327,1066327,1066328,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066328,1066328,1066329,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066329,1066329,1066330,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066330,1066330,1066331,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22687.0,2109.0 +1066331,1066331,1066332,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22685.0,2109.0 +1066332,1066332,1066333,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066333,1066333,1066334,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066334,1066334,1066335,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066335,1066335,1066336,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066336,1066336,1066337,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066337,1066337,1066338,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066338,1066338,1066339,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066339,1066339,1066340,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22688.0,2109.0 +1066340,1066340,1066341,2,44.0,1.0,1.0,0.0,1,20700.0,1080470,2.0,22687.0,2109.0 +1066341,1066341,1066342,1,28.0,1.0,1.0,0.0,1,14570.0,1073449,6.0,22688.0,2109.0 +1066342,1066342,1066343,1,28.0,1.0,1.0,0.0,1,14570.0,1073449,6.0,22688.0,2109.0 +1066343,1066343,1066344,1,28.0,1.0,1.0,0.0,1,14570.0,1073449,6.0,22688.0,2109.0 +1066344,1066344,1066345,1,30.0,1.0,1.0,0.0,1,0.0,1080470,4.0,22685.0,2109.0 +1066345,1066345,1066346,1,30.0,1.0,1.0,0.0,1,0.0,1080470,4.0,22688.0,2109.0 +1066346,1066346,1066347,4,41.0,1.0,2.0,0.0,1,100000.0,1073449,1.0,22688.0,2109.0 +1066347,1066347,1066348,4,37.0,1.0,2.0,2.0,1,57100.0,1073449,3.0,22688.0,2109.0 +1066348,1066348,1066349,4,37.0,1.0,2.0,1.0,1,57100.0,1073449,3.0,22688.0,2109.0 +1066349,1066349,1066350,4,37.0,1.0,2.0,1.0,1,57100.0,1073449,3.0,22688.0,2109.0 +1066350,1066350,1066351,4,37.0,1.0,2.0,1.0,1,57100.0,1073449,3.0,22688.0,2109.0 +1066351,1066351,1066352,4,37.0,1.0,2.0,1.0,1,57100.0,1073449,3.0,22688.0,2109.0 +1066352,1066352,1066353,4,37.0,1.0,2.0,1.0,1,57100.0,1073449,3.0,22688.0,2109.0 +1066353,1066353,1066354,4,37.0,1.0,2.0,1.0,1,57100.0,1073449,3.0,22688.0,2109.0 +1066354,1066354,1066355,4,37.0,1.0,2.0,1.0,1,57100.0,1073449,3.0,22688.0,2109.0 +1066355,1066355,1066356,4,37.0,1.0,2.0,1.0,1,57100.0,1073449,3.0,22686.0,2109.0 +1066356,1066356,1066357,4,37.0,1.0,2.0,1.0,1,57100.0,1073449,3.0,22688.0,2109.0 +1066357,1066357,1066358,4,37.0,1.0,2.0,1.0,1,57100.0,1073449,3.0,22687.0,2109.0 +1066358,1066358,1066359,4,37.0,1.0,2.0,1.0,1,57100.0,1073449,3.0,22688.0,2109.0 +1066359,1066359,1066360,4,44.0,1.0,2.0,1.0,1,31000.0,1054606,1.0,22685.0,2109.0 +1066360,1066360,1066361,2,33.0,1.0,1.0,2.0,1,16000.0,1010145,3.0,22688.0,2109.0 +1066361,1066361,1066362,2,33.0,1.0,1.0,1.0,1,16000.0,1010145,3.0,22688.0,2109.0 +1066362,1066362,1066363,2,27.0,1.0,1.0,1.0,1,9900.0,1080470,3.0,22688.0,2109.0 +1066363,1066363,1066364,2,27.0,1.0,1.0,1.0,1,9900.0,1080470,3.0,22688.0,2109.0 +1066364,1066364,1066365,2,19.0,4.0,2.0,1.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066365,1066365,1066366,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066366,1066366,1066367,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066367,1066367,1066368,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066368,1066368,1066369,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066369,1066369,1066370,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066370,1066370,1066371,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066371,1066371,1066372,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066372,1066372,1066373,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22686.0,2109.0 +1066373,1066373,1066374,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066374,1066374,1066375,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066375,1066375,1066376,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066376,1066376,1066377,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22686.0,2109.0 +1066377,1066377,1066378,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066378,1066378,1066379,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22685.0,2109.0 +1066379,1066379,1066380,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066380,1066380,1066381,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066381,1066381,1066382,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066382,1066382,1066383,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066383,1066383,1066384,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066384,1066384,1066385,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066385,1066385,1066386,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066386,1066386,1066387,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066387,1066387,1066388,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066388,1066388,1066389,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066389,1066389,1066390,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066390,1066390,1066391,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066391,1066391,1066392,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066392,1066392,1066393,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066393,1066393,1066394,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066394,1066394,1066395,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066395,1066395,1066396,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066396,1066396,1066397,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22686.0,2109.0 +1066397,1066397,1066398,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22685.0,2109.0 +1066398,1066398,1066399,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066399,1066399,1066400,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22685.0,2109.0 +1066400,1066400,1066401,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066401,1066401,1066402,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066402,1066402,1066403,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066403,1066403,1066404,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22688.0,2109.0 +1066404,1066404,1066405,1,24.0,4.0,1.0,0.0,1,35000.0,1080470,4.0,22688.0,2109.0 +1066405,1066405,1066406,2,24.0,4.0,2.0,0.0,1,18740.0,1031452,7.0,22688.0,2109.0 +1066406,1066406,1066407,1,24.0,4.0,1.0,0.0,1,15000.0,1054606,4.0,22688.0,2109.0 +1066407,1066407,1066408,1,24.0,4.0,1.0,0.0,1,15000.0,1054606,4.0,22688.0,2109.0 +1066408,1066408,1066409,1,24.0,4.0,1.0,0.0,1,15000.0,1054606,4.0,22685.0,2109.0 +1066409,1066409,1066410,1,24.0,4.0,1.0,0.0,1,15000.0,1054606,4.0,22688.0,2109.0 +1066410,1066410,1066411,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22685.0,2109.0 +1066411,1066411,1066412,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22688.0,2109.0 +1066412,1066412,1066413,1,23.0,4.0,0.0,0.0,1,4100.0,1080470,6.0,22686.0,2109.0 +1066413,1066413,1066414,3,24.0,2.0,3.0,0.0,1,76000.0,1010145,5.0,22688.0,2109.0 +1066414,1066414,1066415,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066415,1066415,1066416,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066416,1066416,1066417,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066417,1066417,1066418,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22687.0,2109.0 +1066418,1066418,1066419,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066419,1066419,1066420,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066420,1066420,1066421,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066421,1066421,1066422,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066422,1066422,1066423,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066423,1066423,1066424,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066424,1066424,1066425,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066425,1066425,1066426,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066426,1066426,1066427,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066427,1066427,1066428,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066428,1066428,1066429,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066429,1066429,1066430,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066430,1066430,1066431,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22686.0,2109.0 +1066431,1066431,1066432,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22686.0,2109.0 +1066432,1066432,1066433,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066433,1066433,1066434,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066434,1066434,1066435,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066435,1066435,1066436,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066436,1066436,1066437,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066437,1066437,1066438,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066438,1066438,1066439,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066439,1066439,1066440,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066440,1066440,1066441,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066441,1066441,1066442,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066442,1066442,1066443,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22686.0,2109.0 +1066443,1066443,1066444,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066444,1066444,1066445,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066445,1066445,1066446,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066446,1066446,1066447,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066447,1066447,1066448,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22686.0,2109.0 +1066448,1066448,1066449,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066449,1066449,1066450,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066450,1066450,1066451,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066451,1066451,1066452,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066452,1066452,1066453,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22686.0,2109.0 +1066453,1066453,1066454,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066454,1066454,1066455,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066455,1066455,1066456,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066456,1066456,1066457,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066457,1066457,1066458,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066458,1066458,1066459,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066459,1066459,1066460,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066460,1066460,1066461,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066461,1066461,1066462,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22685.0,2109.0 +1066462,1066462,1066463,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066463,1066463,1066464,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066464,1066464,1066465,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22688.0,2109.0 +1066465,1066465,1066466,2,20.0,2.0,2.0,0.0,1,38400.0,1073449,7.0,22688.0,2109.0 +1066466,1066466,1066467,2,20.0,2.0,2.0,0.0,1,38400.0,1073449,7.0,22688.0,2109.0 +1066467,1066467,1066468,2,23.0,2.0,2.0,0.0,1,35000.0,1080470,5.0,22685.0,2109.0 +1066468,1066468,1066469,2,23.0,2.0,2.0,0.0,1,35000.0,1080470,5.0,22685.0,2109.0 +1066469,1066469,1066470,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22686.0,2109.0 +1066470,1066470,1066471,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22688.0,2109.0 +1066471,1066471,1066472,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22688.0,2109.0 +1066472,1066472,1066473,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22687.0,2109.0 +1066473,1066473,1066474,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22688.0,2109.0 +1066474,1066474,1066475,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22688.0,2109.0 +1066475,1066475,1066476,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22688.0,2109.0 +1066476,1066476,1066477,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22688.0,2109.0 +1066477,1066477,1066478,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22686.0,2109.0 +1066478,1066478,1066479,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22686.0,2109.0 +1066479,1066479,1066480,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22687.0,2109.0 +1066480,1066480,1066481,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22688.0,2109.0 +1066481,1066481,1066482,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22686.0,2109.0 +1066482,1066482,1066483,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22686.0,2109.0 +1066483,1066483,1066484,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22688.0,2109.0 +1066484,1066484,1066485,2,21.0,2.0,1.0,0.0,1,9000.0,1054606,5.0,22688.0,2109.0 +1066485,1066485,1066486,1,24.0,2.0,1.0,0.0,1,13300.0,1073449,6.0,22688.0,2109.0 +1066486,1066486,1066487,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22688.0,2109.0 +1066487,1066487,1066488,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22688.0,2109.0 +1066488,1066488,1066489,1,24.0,2.0,1.0,0.0,1,13300.0,1073449,6.0,22688.0,2109.0 +1066489,1066489,1066490,1,24.0,2.0,1.0,0.0,1,13300.0,1073449,6.0,22688.0,2109.0 +1066490,1066490,1066491,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22688.0,2109.0 +1066491,1066491,1066492,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22688.0,2109.0 +1066492,1066492,1066493,1,24.0,2.0,1.0,0.0,1,13300.0,1073449,6.0,22688.0,2109.0 +1066493,1066493,1066494,1,24.0,2.0,1.0,0.0,1,13300.0,1073449,6.0,22688.0,2109.0 +1066494,1066494,1066495,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22686.0,2109.0 +1066495,1066495,1066496,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22688.0,2109.0 +1066496,1066496,1066497,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22688.0,2109.0 +1066497,1066497,1066498,1,24.0,2.0,1.0,0.0,1,13300.0,1073449,6.0,22688.0,2109.0 +1066498,1066498,1066499,1,24.0,2.0,1.0,0.0,1,13300.0,1073449,6.0,22688.0,2109.0 +1066499,1066499,1066500,1,24.0,2.0,1.0,0.0,1,13300.0,1073449,6.0,22686.0,2109.0 +1066500,1066500,1066501,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22688.0,2109.0 +1066501,1066501,1066502,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22686.0,2109.0 +1066502,1066502,1066503,1,24.0,2.0,1.0,0.0,1,13300.0,1073449,6.0,22688.0,2109.0 +1066503,1066503,1066504,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22685.0,2109.0 +1066504,1066504,1066505,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22688.0,2109.0 +1066505,1066505,1066506,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22688.0,2109.0 +1066506,1066506,1066507,1,24.0,2.0,1.0,0.0,1,13300.0,1073449,6.0,22688.0,2109.0 +1066507,1066507,1066508,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22688.0,2109.0 +1066508,1066508,1066509,1,23.0,2.0,1.0,0.0,1,15000.0,1054606,6.0,22688.0,2109.0 +1066509,1066509,1066510,1,23.0,2.0,1.0,0.0,1,15000.0,1054606,6.0,22688.0,2109.0 +1066510,1066510,1066511,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22685.0,2109.0 +1066511,1066511,1066512,1,24.0,2.0,1.0,0.0,1,15000.0,1080470,4.0,22688.0,2109.0 +1066512,1066512,1066513,1,24.0,2.0,1.0,0.0,1,15000.0,1080470,4.0,22687.0,2109.0 +1066513,1066513,1066514,1,24.0,2.0,1.0,0.0,1,15000.0,1080470,4.0,22688.0,2109.0 +1066514,1066514,1066515,1,24.0,2.0,1.0,0.0,1,15000.0,1080470,4.0,22688.0,2109.0 +1066515,1066515,1066516,1,24.0,2.0,1.0,0.0,1,15000.0,1080470,4.0,22688.0,2109.0 +1066516,1066516,1066517,1,24.0,2.0,1.0,0.0,1,15000.0,1080470,4.0,22688.0,2109.0 +1066517,1066517,1066518,1,24.0,2.0,1.0,0.0,1,3200.0,1080470,4.0,22688.0,2109.0 +1066518,1066518,1066519,1,23.0,2.0,1.0,0.0,1,14190.0,1054606,4.0,22688.0,2109.0 +1066519,1066519,1066520,1,24.0,2.0,1.0,0.0,1,3200.0,1080470,4.0,22688.0,2109.0 +1066520,1066520,1066521,1,23.0,2.0,1.0,0.0,1,14190.0,1054606,4.0,22688.0,2109.0 +1066521,1066521,1066522,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22685.0,2109.0 +1066522,1066522,1066523,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22686.0,2109.0 +1066523,1066523,1066524,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22688.0,2109.0 +1066524,1066524,1066525,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22688.0,2109.0 +1066525,1066525,1066526,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22687.0,2109.0 +1066526,1066526,1066527,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22688.0,2109.0 +1066527,1066527,1066528,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22688.0,2109.0 +1066528,1066528,1066529,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22688.0,2109.0 +1066529,1066529,1066530,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22688.0,2109.0 +1066530,1066530,1066531,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22688.0,2109.0 +1066531,1066531,1066532,3,23.0,2.0,1.0,0.0,1,13200.0,1010145,3.0,22688.0,2109.0 +1066532,1066532,1066533,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22688.0,2109.0 +1066533,1066533,1066534,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22688.0,2109.0 +1066534,1066534,1066535,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22688.0,2109.0 +1066535,1066535,1066536,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22686.0,2109.0 +1066536,1066536,1066537,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22688.0,2109.0 +1066537,1066537,1066538,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22687.0,2109.0 +1066538,1066538,1066539,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22687.0,2109.0 +1066539,1066539,1066540,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22688.0,2109.0 +1066540,1066540,1066541,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22686.0,2109.0 +1066541,1066541,1066542,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22688.0,2109.0 +1066542,1066542,1066543,2,24.0,2.0,1.0,2.0,1,3600.0,1073449,3.0,22688.0,2109.0 +1066543,1066543,1066544,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066544,1066544,1066545,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066545,1066545,1066546,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066546,1066546,1066547,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22686.0,2109.0 +1066547,1066547,1066548,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22686.0,2109.0 +1066548,1066548,1066549,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22686.0,2109.0 +1066549,1066549,1066550,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22686.0,2109.0 +1066550,1066550,1066551,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22688.0,2109.0 +1066551,1066551,1066552,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066552,1066552,1066553,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066553,1066553,1066554,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22686.0,2109.0 +1066554,1066554,1066555,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22687.0,2109.0 +1066555,1066555,1066556,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066556,1066556,1066557,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22688.0,2109.0 +1066557,1066557,1066558,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066558,1066558,1066559,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066559,1066559,1066560,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066560,1066560,1066561,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22686.0,2109.0 +1066561,1066561,1066562,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066562,1066562,1066563,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22686.0,2109.0 +1066563,1066563,1066564,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22688.0,2109.0 +1066564,1066564,1066565,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066565,1066565,1066566,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066566,1066566,1066567,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22688.0,2109.0 +1066567,1066567,1066568,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22685.0,2109.0 +1066568,1066568,1066569,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066569,1066569,1066570,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22688.0,2109.0 +1066570,1066570,1066571,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22687.0,2109.0 +1066571,1066571,1066572,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22685.0,2109.0 +1066572,1066572,1066573,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066573,1066573,1066574,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22685.0,2109.0 +1066574,1066574,1066575,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22686.0,2109.0 +1066575,1066575,1066576,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066576,1066576,1066577,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066577,1066577,1066578,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22688.0,2109.0 +1066578,1066578,1066579,2,24.0,3.0,2.0,1.0,1,87000.0,1031452,7.0,22685.0,2109.0 +1066579,1066579,1066580,2,24.0,3.0,2.0,0.0,1,87000.0,1031452,7.0,22688.0,2109.0 +1066580,1066580,1066581,2,24.0,3.0,2.0,0.0,1,87000.0,1031452,7.0,22688.0,2109.0 +1066581,1066581,1066582,2,24.0,3.0,2.0,0.0,1,87000.0,1031452,7.0,22688.0,2109.0 +1066582,1066582,1066583,2,24.0,3.0,2.0,0.0,1,87000.0,1031452,7.0,22685.0,2109.0 +1066583,1066583,1066584,3,21.0,3.0,2.0,0.0,1,36640.0,1054606,3.0,22687.0,2109.0 +1066584,1066584,1066585,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066585,1066585,1066586,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22685.0,2109.0 +1066586,1066586,1066587,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066587,1066587,1066588,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066588,1066588,1066589,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22686.0,2109.0 +1066589,1066589,1066590,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066590,1066590,1066591,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066591,1066591,1066592,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066592,1066592,1066593,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066593,1066593,1066594,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066594,1066594,1066595,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22686.0,2109.0 +1066595,1066595,1066596,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066596,1066596,1066597,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22686.0,2109.0 +1066597,1066597,1066598,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22687.0,2109.0 +1066598,1066598,1066599,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22687.0,2109.0 +1066599,1066599,1066600,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066600,1066600,1066601,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066601,1066601,1066602,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22686.0,2109.0 +1066602,1066602,1066603,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066603,1066603,1066604,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066604,1066604,1066605,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066605,1066605,1066606,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066606,1066606,1066607,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22686.0,2109.0 +1066607,1066607,1066608,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066608,1066608,1066609,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066609,1066609,1066610,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066610,1066610,1066611,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066611,1066611,1066612,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066612,1066612,1066613,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066613,1066613,1066614,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066614,1066614,1066615,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22686.0,2109.0 +1066615,1066615,1066616,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22686.0,2109.0 +1066616,1066616,1066617,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066617,1066617,1066618,3,21.0,3.0,2.0,1.0,1,36640.0,1054606,3.0,22688.0,2109.0 +1066618,1066618,1066619,3,22.0,1.0,3.0,1.0,1,77600.0,1031452,5.0,22687.0,2109.0 +1066619,1066619,1066620,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22688.0,2109.0 +1066620,1066620,1066621,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22688.0,2109.0 +1066621,1066621,1066622,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22688.0,2109.0 +1066622,1066622,1066623,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22688.0,2109.0 +1066623,1066623,1066624,2,22.0,1.0,2.0,0.0,1,78000.0,1054606,5.0,22688.0,2109.0 +1066624,1066624,1066625,2,22.0,1.0,2.0,0.0,1,78000.0,1054606,5.0,22688.0,2109.0 +1066625,1066625,1066626,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22685.0,2109.0 +1066626,1066626,1066627,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22685.0,2109.0 +1066627,1066627,1066628,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22688.0,2109.0 +1066628,1066628,1066629,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22688.0,2109.0 +1066629,1066629,1066630,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22688.0,2109.0 +1066630,1066630,1066631,1,24.0,1.0,1.0,0.0,1,66000.0,1031452,4.0,22685.0,2109.0 +1066631,1066631,1066632,1,24.0,1.0,1.0,0.0,1,66000.0,1031452,4.0,22686.0,2109.0 +1066632,1066632,1066633,1,24.0,1.0,1.0,0.0,1,66000.0,1031452,4.0,22688.0,2109.0 +1066633,1066633,1066634,1,24.0,1.0,1.0,0.0,1,66000.0,1031452,4.0,22688.0,2109.0 +1066634,1066634,1066635,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066635,1066635,1066636,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22686.0,2109.0 +1066636,1066636,1066637,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22686.0,2109.0 +1066637,1066637,1066638,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22687.0,2109.0 +1066638,1066638,1066639,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066639,1066639,1066640,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22687.0,2109.0 +1066640,1066640,1066641,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066641,1066641,1066642,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22686.0,2109.0 +1066642,1066642,1066643,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22685.0,2109.0 +1066643,1066643,1066644,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066644,1066644,1066645,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066645,1066645,1066646,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066646,1066646,1066647,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22687.0,2109.0 +1066647,1066647,1066648,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066648,1066648,1066649,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066649,1066649,1066650,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066650,1066650,1066651,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066651,1066651,1066652,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066652,1066652,1066653,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066653,1066653,1066654,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22686.0,2109.0 +1066654,1066654,1066655,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066655,1066655,1066656,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066656,1066656,1066657,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22685.0,2109.0 +1066657,1066657,1066658,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066658,1066658,1066659,1,23.0,1.0,1.0,0.0,1,64000.0,1054606,6.0,22688.0,2109.0 +1066659,1066659,1066660,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066660,1066660,1066661,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066661,1066661,1066662,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066662,1066662,1066663,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066663,1066663,1066664,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066664,1066664,1066665,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066665,1066665,1066666,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066666,1066666,1066667,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066667,1066667,1066668,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066668,1066668,1066669,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22687.0,2109.0 +1066669,1066669,1066670,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066670,1066670,1066671,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066671,1066671,1066672,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066672,1066672,1066673,4,24.0,1.0,0.0,0.0,1,62270.0,1080470,5.0,22688.0,2109.0 +1066673,1066673,1066674,4,23.0,1.0,4.0,0.0,1,47000.0,1031452,7.0,22688.0,2109.0 +1066674,1066674,1066675,3,23.0,1.0,3.0,0.0,1,56000.0,1054606,7.0,22688.0,2109.0 +1066675,1066675,1066676,3,23.0,1.0,3.0,0.0,1,52300.0,1010145,7.0,22688.0,2109.0 +1066676,1066676,1066677,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066677,1066677,1066678,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066678,1066678,1066679,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066679,1066679,1066680,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066680,1066680,1066681,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066681,1066681,1066682,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22686.0,2109.0 +1066682,1066682,1066683,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066683,1066683,1066684,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22687.0,2109.0 +1066684,1066684,1066685,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22686.0,2109.0 +1066685,1066685,1066686,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066686,1066686,1066687,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22687.0,2109.0 +1066687,1066687,1066688,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066688,1066688,1066689,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22685.0,2109.0 +1066689,1066689,1066690,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22685.0,2109.0 +1066690,1066690,1066691,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066691,1066691,1066692,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066692,1066692,1066693,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066693,1066693,1066694,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066694,1066694,1066695,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066695,1066695,1066696,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22687.0,2109.0 +1066696,1066696,1066697,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066697,1066697,1066698,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22685.0,2109.0 +1066698,1066698,1066699,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22686.0,2109.0 +1066699,1066699,1066700,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066700,1066700,1066701,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066701,1066701,1066702,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066702,1066702,1066703,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066703,1066703,1066704,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22688.0,2109.0 +1066704,1066704,1066705,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22686.0,2109.0 +1066705,1066705,1066706,2,22.0,1.0,2.0,0.0,1,47100.0,1054606,1.0,22688.0,2109.0 +1066706,1066706,1066707,1,23.0,1.0,1.0,0.0,1,54000.0,1031452,6.0,22688.0,2109.0 +1066707,1066707,1066708,1,23.0,1.0,1.0,0.0,1,37000.0,1073449,6.0,22687.0,2109.0 +1066708,1066708,1066709,1,23.0,1.0,1.0,0.0,1,37000.0,1073449,6.0,22686.0,2109.0 +1066709,1066709,1066710,1,23.0,1.0,1.0,0.0,1,37000.0,1073449,6.0,22686.0,2109.0 +1066710,1066710,1066711,1,24.0,1.0,1.0,0.0,1,47000.0,1031452,6.0,22688.0,2109.0 +1066711,1066711,1066712,1,23.0,1.0,1.0,0.0,1,54000.0,1031452,6.0,22686.0,2109.0 +1066712,1066712,1066713,1,23.0,1.0,1.0,0.0,1,37000.0,1073449,6.0,22686.0,2109.0 +1066713,1066713,1066714,1,24.0,1.0,1.0,0.0,1,50000.0,1073449,6.0,22688.0,2109.0 +1066714,1066714,1066715,1,23.0,1.0,1.0,0.0,1,37000.0,1073449,6.0,22686.0,2109.0 +1066715,1066715,1066716,1,23.0,1.0,1.0,0.0,1,37000.0,1073449,6.0,22688.0,2109.0 +1066716,1066716,1066717,1,23.0,1.0,1.0,0.0,1,54000.0,1031452,6.0,22688.0,2109.0 +1066717,1066717,1066718,1,23.0,1.0,1.0,0.0,1,37000.0,1073449,6.0,22686.0,2109.0 +1066718,1066718,1066719,1,23.0,1.0,1.0,0.0,1,54000.0,1031452,6.0,22685.0,2109.0 +1066719,1066719,1066720,1,23.0,1.0,1.0,0.0,1,37000.0,1073449,6.0,22688.0,2109.0 +1066720,1066720,1066721,1,23.0,1.0,1.0,0.0,1,54000.0,1031452,6.0,22688.0,2109.0 +1066721,1066721,1066722,1,24.0,1.0,1.0,0.0,1,32000.0,1031452,6.0,22688.0,2109.0 +1066722,1066722,1066723,1,24.0,1.0,1.0,0.0,1,43000.0,1010145,4.0,22688.0,2109.0 +1066723,1066723,1066724,1,22.0,1.0,1.0,0.0,1,31500.0,1073449,4.0,22688.0,2109.0 +1066724,1066724,1066725,1,22.0,1.0,1.0,0.0,1,31500.0,1073449,4.0,22686.0,2109.0 +1066725,1066725,1066726,1,22.0,1.0,1.0,0.0,1,31500.0,1073449,4.0,22688.0,2109.0 +1066726,1066726,1066727,2,21.0,1.0,2.0,0.0,1,16000.0,1054606,1.0,22686.0,2109.0 +1066727,1066727,1066728,2,21.0,1.0,2.0,0.0,1,16000.0,1054606,1.0,22688.0,2109.0 +1066728,1066728,1066729,2,23.0,1.0,2.0,0.0,1,19000.0,1073449,2.0,22688.0,2109.0 +1066729,1066729,1066730,2,23.0,1.0,2.0,0.0,1,19000.0,1073449,2.0,22688.0,2109.0 +1066730,1066730,1066731,2,23.0,1.0,2.0,0.0,1,19000.0,1073449,2.0,22688.0,2109.0 +1066731,1066731,1066732,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22686.0,2109.0 +1066732,1066732,1066733,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22686.0,2109.0 +1066733,1066733,1066734,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066734,1066734,1066735,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066735,1066735,1066736,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066736,1066736,1066737,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066737,1066737,1066738,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066738,1066738,1066739,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066739,1066739,1066740,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22687.0,2109.0 +1066740,1066740,1066741,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066741,1066741,1066742,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066742,1066742,1066743,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066743,1066743,1066744,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22686.0,2109.0 +1066744,1066744,1066745,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066745,1066745,1066746,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22686.0,2109.0 +1066746,1066746,1066747,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22687.0,2109.0 +1066747,1066747,1066748,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066748,1066748,1066749,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066749,1066749,1066750,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066750,1066750,1066751,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066751,1066751,1066752,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22688.0,2109.0 +1066752,1066752,1066753,1,23.0,1.0,1.0,0.0,1,30000.0,1031452,6.0,22688.0,2109.0 +1066753,1066753,1066754,1,23.0,1.0,1.0,0.0,1,30000.0,1031452,6.0,22688.0,2109.0 +1066754,1066754,1066755,1,23.0,1.0,1.0,0.0,1,30000.0,1031452,6.0,22688.0,2109.0 +1066755,1066755,1066756,1,23.0,1.0,1.0,0.0,1,30000.0,1031452,6.0,22688.0,2109.0 +1066756,1066756,1066757,1,23.0,1.0,1.0,0.0,1,30000.0,1031452,6.0,22688.0,2109.0 +1066757,1066757,1066758,1,23.0,1.0,1.0,0.0,1,30000.0,1031452,6.0,22688.0,2109.0 +1066758,1066758,1066759,2,22.0,1.0,1.0,0.0,1,5000.0,1073449,3.0,22688.0,2109.0 +1066759,1066759,1066760,2,22.0,1.0,1.0,1.0,1,5000.0,1073449,3.0,22688.0,2109.0 +1066760,1066760,1066761,2,22.0,1.0,1.0,1.0,1,5000.0,1073449,3.0,22687.0,2109.0 +1066761,1066761,1066762,2,24.0,1.0,1.0,1.0,1,15000.0,1010145,2.0,22688.0,2109.0 +1066762,1066762,1066763,3,24.0,1.0,0.0,1.0,1,10000.0,1080470,3.0,22688.0,2109.0 +1069322,1069322,1069323,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22726.0,2113.0 +1069337,1069337,1069338,2,56.0,1.0,2.0,0.0,1,83000.0,1010145,3.0,22726.0,2113.0 +1069379,1069379,1069380,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22726.0,2113.0 +1069426,1069426,1069427,4,42.0,2.0,0.0,2.0,1,18200.0,1073449,3.0,22726.0,2113.0 +1069640,1069640,1069641,1,28.0,1.0,0.0,0.0,1,2000.0,1031452,4.0,22726.0,2113.0 +1069677,1069677,1069678,3,67.0,2.0,2.0,1.0,1,180000.0,1031452,3.0,22692.0,2110.0 +1069678,1069678,1069679,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22698.0,2110.0 +1069679,1069679,1069680,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22679.0,2107.0 +1069680,1069680,1069681,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22676.0,2107.0 +1069681,1069681,1069682,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22675.0,2107.0 +1069682,1069682,1069683,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22702.0,2110.0 +1069683,1069683,1069684,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22676.0,2107.0 +1069684,1069684,1069685,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22691.0,2110.0 +1069685,1069685,1069686,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22691.0,2110.0 +1069686,1069686,1069687,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22698.0,2110.0 +1069687,1069687,1069688,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22698.0,2110.0 +1069688,1069688,1069689,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22698.0,2110.0 +1069689,1069689,1069690,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22709.0,2110.0 +1069690,1069690,1069691,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22676.0,2107.0 +1069691,1069691,1069692,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22679.0,2107.0 +1069692,1069692,1069693,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22706.0,2110.0 +1069693,1069693,1069694,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22679.0,2107.0 +1069694,1069694,1069695,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22692.0,2110.0 +1069695,1069695,1069696,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22694.0,2110.0 +1069696,1069696,1069697,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22694.0,2110.0 +1069697,1069697,1069698,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22676.0,2107.0 +1069698,1069698,1069699,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22676.0,2107.0 +1069699,1069699,1069700,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22679.0,2107.0 +1069700,1069700,1069701,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22677.0,2107.0 +1069701,1069701,1069702,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22707.0,2110.0 +1069702,1069702,1069703,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22676.0,2107.0 +1069703,1069703,1069704,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22693.0,2110.0 +1069704,1069704,1069705,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22679.0,2107.0 +1069705,1069705,1069706,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22677.0,2107.0 +1069706,1069706,1069707,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22679.0,2107.0 +1069707,1069707,1069708,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22697.0,2110.0 +1069708,1069708,1069709,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22676.0,2107.0 +1069709,1069709,1069710,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22676.0,2107.0 +1069710,1069710,1069711,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22707.0,2110.0 +1069711,1069711,1069712,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22675.0,2107.0 +1069712,1069712,1069713,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22676.0,2107.0 +1069713,1069713,1069714,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22697.0,2110.0 +1069714,1069714,1069715,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22697.0,2110.0 +1069715,1069715,1069716,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22710.0,2110.0 +1069716,1069716,1069717,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22694.0,2110.0 +1069717,1069717,1069718,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22677.0,2107.0 +1069718,1069718,1069719,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22706.0,2110.0 +1069719,1069719,1069720,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22679.0,2107.0 +1069720,1069720,1069721,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22698.0,2110.0 +1069721,1069721,1069722,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22679.0,2107.0 +1069722,1069722,1069723,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22706.0,2110.0 +1069723,1069723,1069724,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22705.0,2110.0 +1069724,1069724,1069725,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22676.0,2107.0 +1069725,1069725,1069726,3,70.0,2.0,2.0,0.0,1,82700.0,1080470,3.0,22676.0,2107.0 +1069726,1069726,1069727,3,74.0,2.0,2.0,1.0,1,70300.0,1054606,3.0,22675.0,2107.0 +1069727,1069727,1069728,3,74.0,2.0,2.0,1.0,1,70300.0,1054606,3.0,22675.0,2107.0 +1069728,1069728,1069729,3,74.0,2.0,2.0,1.0,1,70300.0,1054606,3.0,22676.0,2107.0 +1069729,1069729,1069730,3,74.0,2.0,2.0,1.0,1,70300.0,1054606,3.0,22698.0,2110.0 +1069730,1069730,1069731,2,65.0,3.0,2.0,1.0,1,667000.0,1031452,1.0,22676.0,2107.0 +1069731,1069731,1069732,2,65.0,3.0,2.0,0.0,1,667000.0,1031452,1.0,22676.0,2107.0 +1069732,1069732,1069733,2,65.0,3.0,2.0,0.0,1,667000.0,1031452,1.0,22700.0,2110.0 +1069733,1069733,1069734,2,65.0,3.0,2.0,0.0,1,667000.0,1031452,1.0,22675.0,2107.0 +1069734,1069734,1069735,2,65.0,3.0,2.0,0.0,1,667000.0,1031452,1.0,22693.0,2110.0 +1069735,1069735,1069736,2,65.0,3.0,2.0,0.0,1,667000.0,1031452,1.0,22697.0,2110.0 +1069736,1069736,1069737,2,65.0,3.0,2.0,0.0,1,667000.0,1031452,1.0,22694.0,2110.0 +1069737,1069737,1069738,2,65.0,3.0,2.0,0.0,1,667000.0,1031452,1.0,22675.0,2107.0 +1069738,1069738,1069739,2,65.0,3.0,2.0,0.0,1,667000.0,1031452,1.0,22691.0,2110.0 +1069739,1069739,1069740,2,65.0,3.0,2.0,0.0,1,667000.0,1031452,1.0,22679.0,2107.0 +1069740,1069740,1069741,2,65.0,3.0,2.0,0.0,1,667000.0,1031452,1.0,22691.0,2110.0 +1069741,1069741,1069742,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22709.0,2110.0 +1069742,1069742,1069743,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22675.0,2107.0 +1069743,1069743,1069744,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22707.0,2110.0 +1069744,1069744,1069745,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22710.0,2110.0 +1069745,1069745,1069746,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22677.0,2107.0 +1069746,1069746,1069747,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22676.0,2107.0 +1069747,1069747,1069748,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22676.0,2107.0 +1069748,1069748,1069749,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22709.0,2110.0 +1069749,1069749,1069750,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22676.0,2107.0 +1069750,1069750,1069751,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22691.0,2110.0 +1069751,1069751,1069752,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22705.0,2110.0 +1069752,1069752,1069753,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22702.0,2110.0 +1069753,1069753,1069754,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22692.0,2110.0 +1069754,1069754,1069755,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22706.0,2110.0 +1069755,1069755,1069756,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22702.0,2110.0 +1069756,1069756,1069757,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22702.0,2110.0 +1069757,1069757,1069758,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22679.0,2107.0 +1069758,1069758,1069759,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22676.0,2107.0 +1069759,1069759,1069760,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22675.0,2107.0 +1069760,1069760,1069761,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22694.0,2110.0 +1069761,1069761,1069762,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22675.0,2107.0 +1069762,1069762,1069763,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22700.0,2110.0 +1069763,1069763,1069764,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22691.0,2110.0 +1069764,1069764,1069765,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22675.0,2107.0 +1069765,1069765,1069766,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22676.0,2107.0 +1069766,1069766,1069767,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22705.0,2110.0 +1069767,1069767,1069768,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22675.0,2107.0 +1069768,1069768,1069769,2,70.0,1.0,2.0,0.0,1,134150.0,1010145,7.0,22679.0,2107.0 +1069769,1069769,1069770,2,65.0,1.0,2.0,0.0,1,117400.0,1031452,1.0,22697.0,2110.0 +1069770,1069770,1069771,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22679.0,2107.0 +1069771,1069771,1069772,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22676.0,2107.0 +1069772,1069772,1069773,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22675.0,2107.0 +1069773,1069773,1069774,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22678.0,2107.0 +1069774,1069774,1069775,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22697.0,2110.0 +1069775,1069775,1069776,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22676.0,2107.0 +1069776,1069776,1069777,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22676.0,2107.0 +1069777,1069777,1069778,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22676.0,2107.0 +1069778,1069778,1069779,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22692.0,2110.0 +1069779,1069779,1069780,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22679.0,2107.0 +1069780,1069780,1069781,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22676.0,2107.0 +1069781,1069781,1069782,2,69.0,1.0,2.0,0.0,1,159550.0,1080470,1.0,22679.0,2107.0 +1069782,1069782,1069783,2,66.0,1.0,2.0,0.0,1,131720.0,1010145,1.0,22678.0,2107.0 +1069783,1069783,1069784,2,66.0,1.0,2.0,0.0,1,131720.0,1010145,1.0,22702.0,2110.0 +1069784,1069784,1069785,2,66.0,1.0,2.0,0.0,1,324000.0,1054606,1.0,22676.0,2107.0 +1069785,1069785,1069786,2,66.0,1.0,3.0,0.0,1,130200.0,1080470,1.0,22676.0,2107.0 +1069786,1069786,1069787,2,67.0,1.0,2.0,0.0,1,165800.0,1080470,1.0,22675.0,2107.0 +1069787,1069787,1069788,2,67.0,1.0,2.0,0.0,1,165800.0,1080470,1.0,22679.0,2107.0 +1069788,1069788,1069789,2,67.0,1.0,2.0,0.0,1,165800.0,1080470,1.0,22708.0,2110.0 +1069789,1069789,1069790,2,67.0,1.0,2.0,0.0,1,165800.0,1080470,1.0,22692.0,2110.0 +1069790,1069790,1069791,2,67.0,1.0,2.0,0.0,1,165800.0,1080470,1.0,22676.0,2107.0 +1069791,1069791,1069792,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22702.0,2110.0 +1069792,1069792,1069793,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22676.0,2107.0 +1069793,1069793,1069794,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22698.0,2110.0 +1069794,1069794,1069795,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22706.0,2110.0 +1069795,1069795,1069796,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22676.0,2107.0 +1069796,1069796,1069797,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22676.0,2107.0 +1069797,1069797,1069798,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22677.0,2107.0 +1069798,1069798,1069799,4,76.0,1.0,3.0,0.0,1,86400.0,1031452,1.0,22692.0,2110.0 +1069799,1069799,1069800,2,73.0,1.0,3.0,0.0,1,85000.0,1080470,1.0,22702.0,2110.0 +1069800,1069800,1069801,2,73.0,1.0,3.0,0.0,1,85000.0,1080470,1.0,22676.0,2107.0 +1069801,1069801,1069802,2,65.0,1.0,3.0,0.0,1,88100.0,1080470,1.0,22694.0,2110.0 +1069802,1069802,1069803,2,65.0,1.0,3.0,0.0,1,88100.0,1080470,1.0,22675.0,2107.0 +1069803,1069803,1069804,2,65.0,1.0,3.0,0.0,1,88100.0,1080470,1.0,22691.0,2110.0 +1069804,1069804,1069805,2,68.0,1.0,1.0,0.0,1,83760.0,1073449,1.0,22677.0,2107.0 +1069805,1069805,1069806,2,68.0,1.0,1.0,0.0,1,83760.0,1073449,1.0,22697.0,2110.0 +1069806,1069806,1069807,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22675.0,2107.0 +1069807,1069807,1069808,2,88.0,1.0,2.0,0.0,1,47800.0,1073449,3.0,22694.0,2110.0 +1069808,1069808,1069809,2,88.0,1.0,2.0,0.0,1,47800.0,1073449,3.0,22681.0,2107.0 +1069809,1069809,1069810,2,65.0,1.0,2.0,0.0,1,47900.0,1031452,1.0,22676.0,2107.0 +1069810,1069810,1069811,2,81.0,1.0,2.0,0.0,1,46400.0,1031452,3.0,22676.0,2107.0 +1069811,1069811,1069812,2,81.0,1.0,2.0,0.0,1,46400.0,1031452,3.0,22675.0,2107.0 +1069812,1069812,1069813,2,81.0,1.0,2.0,0.0,1,46400.0,1031452,3.0,22705.0,2110.0 +1069813,1069813,1069814,2,65.0,1.0,2.0,0.0,1,47900.0,1031452,1.0,22710.0,2110.0 +1069814,1069814,1069815,2,81.0,1.0,2.0,0.0,1,46400.0,1031452,3.0,22679.0,2107.0 +1069815,1069815,1069816,2,65.0,1.0,2.0,0.0,1,47900.0,1031452,1.0,22694.0,2110.0 +1069816,1069816,1069817,2,81.0,1.0,2.0,0.0,1,46400.0,1031452,3.0,22702.0,2110.0 +1069817,1069817,1069818,2,81.0,1.0,2.0,0.0,1,46400.0,1031452,3.0,22710.0,2110.0 +1069818,1069818,1069819,2,81.0,1.0,2.0,0.0,1,46400.0,1031452,3.0,22676.0,2107.0 +1069819,1069819,1069820,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22705.0,2110.0 +1069820,1069820,1069821,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22694.0,2110.0 +1069821,1069821,1069822,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22692.0,2110.0 +1069822,1069822,1069823,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22675.0,2107.0 +1069823,1069823,1069824,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22691.0,2110.0 +1069824,1069824,1069825,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22675.0,2107.0 +1069825,1069825,1069826,2,77.0,1.0,2.0,0.0,1,44000.0,1073449,2.0,22675.0,2107.0 +1069826,1069826,1069827,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22676.0,2107.0 +1069827,1069827,1069828,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22694.0,2110.0 +1069828,1069828,1069829,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22694.0,2110.0 +1069829,1069829,1069830,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22694.0,2110.0 +1069830,1069830,1069831,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22707.0,2110.0 +1069831,1069831,1069832,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22679.0,2107.0 +1069832,1069832,1069833,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22676.0,2107.0 +1069833,1069833,1069834,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22676.0,2107.0 +1069834,1069834,1069835,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22676.0,2107.0 +1069835,1069835,1069836,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22679.0,2107.0 +1069836,1069836,1069837,2,66.0,1.0,1.0,0.0,1,55000.0,1054606,1.0,22708.0,2110.0 +1069837,1069837,1069838,2,70.0,1.0,1.0,0.0,1,43300.0,1073449,5.0,22678.0,2107.0 +1069838,1069838,1069839,2,66.0,1.0,1.0,0.0,1,30500.0,1031452,7.0,22693.0,2110.0 +1069839,1069839,1069840,2,66.0,1.0,1.0,0.0,1,30500.0,1031452,7.0,22676.0,2107.0 +1069840,1069840,1069841,2,66.0,1.0,1.0,0.0,1,30500.0,1031452,7.0,22677.0,2107.0 +1069841,1069841,1069842,2,66.0,1.0,1.0,0.0,1,30500.0,1031452,7.0,22693.0,2110.0 +1069842,1069842,1069843,2,66.0,1.0,1.0,0.0,1,30500.0,1031452,7.0,22705.0,2110.0 +1069843,1069843,1069844,2,70.0,1.0,1.0,0.0,1,43300.0,1073449,5.0,22678.0,2107.0 +1069844,1069844,1069845,2,66.0,1.0,2.0,0.0,1,27400.0,1073449,3.0,22697.0,2110.0 +1069845,1069845,1069846,2,83.0,1.0,1.0,0.0,1,4100.0,1010145,3.0,22676.0,2107.0 +1069846,1069846,1069847,2,83.0,1.0,1.0,0.0,1,4100.0,1010145,3.0,22694.0,2110.0 +1069847,1069847,1069848,2,83.0,1.0,1.0,0.0,1,4100.0,1010145,3.0,22692.0,2110.0 +1069848,1069848,1069849,2,83.0,1.0,1.0,0.0,1,4100.0,1010145,3.0,22678.0,2107.0 +1069849,1069849,1069850,2,83.0,1.0,1.0,0.0,1,4100.0,1010145,3.0,22677.0,2107.0 +1069850,1069850,1069851,2,83.0,1.0,1.0,0.0,1,4100.0,1010145,3.0,22694.0,2110.0 +1069851,1069851,1069852,2,83.0,1.0,1.0,0.0,1,4100.0,1010145,3.0,22693.0,2110.0 +1069852,1069852,1069853,4,68.0,1.0,3.0,0.0,1,83650.0,1031452,1.0,22680.0,2107.0 +1069853,1069853,1069854,4,68.0,1.0,3.0,1.0,1,83650.0,1031452,1.0,22676.0,2107.0 +1069854,1069854,1069855,4,68.0,1.0,3.0,1.0,1,83650.0,1031452,1.0,22700.0,2110.0 +1069855,1069855,1069856,4,68.0,1.0,3.0,1.0,1,83650.0,1031452,1.0,22676.0,2107.0 +1069856,1069856,1069857,4,76.0,1.0,3.0,1.0,1,96100.0,1054606,3.0,22678.0,2107.0 +1069857,1069857,1069858,4,76.0,1.0,3.0,1.0,1,96100.0,1054606,3.0,22693.0,2110.0 +1069858,1069858,1069859,3,49.0,4.0,2.0,1.0,1,456000.0,1080470,1.0,22702.0,2110.0 +1069859,1069859,1069860,4,55.0,4.0,2.0,1.0,1,52000.0,1054606,1.0,22702.0,2110.0 +1069860,1069860,1069861,4,55.0,4.0,2.0,2.0,1,52000.0,1054606,1.0,22694.0,2110.0 +1069861,1069861,1069862,4,55.0,4.0,2.0,2.0,1,52000.0,1054606,1.0,22694.0,2110.0 +1069862,1069862,1069863,4,55.0,4.0,2.0,2.0,1,52000.0,1054606,1.0,22679.0,2107.0 +1069863,1069863,1069864,2,45.0,2.0,2.0,2.0,1,104600.0,1010145,5.0,22675.0,2107.0 +1069864,1069864,1069865,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22676.0,2107.0 +1069865,1069865,1069866,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22697.0,2110.0 +1069866,1069866,1069867,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22676.0,2107.0 +1069867,1069867,1069868,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22675.0,2107.0 +1069868,1069868,1069869,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22706.0,2110.0 +1069869,1069869,1069870,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22707.0,2110.0 +1069870,1069870,1069871,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22676.0,2107.0 +1069871,1069871,1069872,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22691.0,2110.0 +1069872,1069872,1069873,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22702.0,2110.0 +1069873,1069873,1069874,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22676.0,2107.0 +1069874,1069874,1069875,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22702.0,2110.0 +1069875,1069875,1069876,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22675.0,2107.0 +1069876,1069876,1069877,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22679.0,2107.0 +1069877,1069877,1069878,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22697.0,2110.0 +1069878,1069878,1069879,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22675.0,2107.0 +1069879,1069879,1069880,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22693.0,2110.0 +1069880,1069880,1069881,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22692.0,2110.0 +1069881,1069881,1069882,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22691.0,2110.0 +1069882,1069882,1069883,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22681.0,2107.0 +1069883,1069883,1069884,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22698.0,2110.0 +1069884,1069884,1069885,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22676.0,2107.0 +1069885,1069885,1069886,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22691.0,2110.0 +1069886,1069886,1069887,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22693.0,2110.0 +1069887,1069887,1069888,2,45.0,2.0,2.0,0.0,1,104600.0,1010145,5.0,22676.0,2107.0 +1069888,1069888,1069889,2,56.0,2.0,1.0,0.0,1,130000.0,1031452,2.0,22702.0,2110.0 +1069889,1069889,1069890,2,53.0,2.0,2.0,0.0,1,64300.0,1031452,3.0,22702.0,2110.0 +1069890,1069890,1069891,2,53.0,2.0,2.0,0.0,1,64300.0,1031452,3.0,22675.0,2107.0 +1069891,1069891,1069892,2,53.0,2.0,2.0,0.0,1,64300.0,1031452,3.0,22708.0,2110.0 +1069892,1069892,1069893,2,53.0,2.0,2.0,0.0,1,64300.0,1031452,3.0,22681.0,2107.0 +1069893,1069893,1069894,2,53.0,2.0,2.0,0.0,1,64300.0,1031452,3.0,22676.0,2107.0 +1069894,1069894,1069895,2,53.0,2.0,2.0,0.0,1,64300.0,1031452,3.0,22676.0,2107.0 +1069895,1069895,1069896,2,53.0,2.0,2.0,0.0,1,64300.0,1031452,3.0,22676.0,2107.0 +1069896,1069896,1069897,2,53.0,2.0,2.0,0.0,1,64300.0,1031452,3.0,22675.0,2107.0 +1069897,1069897,1069898,2,64.0,2.0,3.0,0.0,1,68600.0,1073449,1.0,22697.0,2110.0 +1069898,1069898,1069899,2,64.0,2.0,3.0,0.0,1,68600.0,1073449,1.0,22692.0,2110.0 +1069899,1069899,1069900,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22702.0,2110.0 +1069900,1069900,1069901,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22675.0,2107.0 +1069901,1069901,1069902,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22691.0,2110.0 +1069902,1069902,1069903,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22677.0,2107.0 +1069903,1069903,1069904,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22679.0,2107.0 +1069904,1069904,1069905,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22678.0,2107.0 +1069905,1069905,1069906,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22675.0,2107.0 +1069906,1069906,1069907,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22707.0,2110.0 +1069907,1069907,1069908,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22697.0,2110.0 +1069908,1069908,1069909,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22705.0,2110.0 +1069909,1069909,1069910,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22676.0,2107.0 +1069910,1069910,1069911,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22706.0,2110.0 +1069911,1069911,1069912,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22675.0,2107.0 +1069912,1069912,1069913,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22709.0,2110.0 +1069913,1069913,1069914,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22676.0,2107.0 +1069914,1069914,1069915,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22691.0,2110.0 +1069915,1069915,1069916,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22676.0,2107.0 +1069916,1069916,1069917,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22676.0,2107.0 +1069917,1069917,1069918,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22700.0,2110.0 +1069918,1069918,1069919,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22676.0,2107.0 +1069919,1069919,1069920,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22707.0,2110.0 +1069920,1069920,1069921,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22676.0,2107.0 +1069921,1069921,1069922,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22675.0,2107.0 +1069922,1069922,1069923,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22677.0,2107.0 +1069923,1069923,1069924,5,55.0,2.0,2.0,0.0,1,100800.0,1054606,1.0,22676.0,2107.0 +1069924,1069924,1069925,2,58.0,3.0,2.0,3.0,1,118000.0,1010145,3.0,22692.0,2110.0 +1069925,1069925,1069926,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22676.0,2107.0 +1069926,1069926,1069927,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22694.0,2110.0 +1069927,1069927,1069928,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22694.0,2110.0 +1069928,1069928,1069929,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22676.0,2107.0 +1069929,1069929,1069930,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22702.0,2110.0 +1069930,1069930,1069931,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22698.0,2110.0 +1069931,1069931,1069932,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22676.0,2107.0 +1069932,1069932,1069933,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22702.0,2110.0 +1069933,1069933,1069934,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22709.0,2110.0 +1069934,1069934,1069935,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22676.0,2107.0 +1069935,1069935,1069936,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22710.0,2110.0 +1069936,1069936,1069937,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22679.0,2107.0 +1069937,1069937,1069938,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22691.0,2110.0 +1069938,1069938,1069939,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22708.0,2110.0 +1069939,1069939,1069940,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22676.0,2107.0 +1069940,1069940,1069941,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22676.0,2107.0 +1069941,1069941,1069942,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22692.0,2110.0 +1069942,1069942,1069943,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22679.0,2107.0 +1069943,1069943,1069944,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22705.0,2110.0 +1069944,1069944,1069945,2,45.0,3.0,2.0,0.0,1,50800.0,1031452,3.0,22676.0,2107.0 +1069945,1069945,1069946,2,45.0,3.0,2.0,0.0,1,50800.0,1031452,3.0,22675.0,2107.0 +1069946,1069946,1069947,2,45.0,3.0,2.0,0.0,1,50800.0,1031452,3.0,22698.0,2110.0 +1069947,1069947,1069948,2,45.0,3.0,2.0,0.0,1,50800.0,1031452,3.0,22697.0,2110.0 +1069948,1069948,1069949,2,45.0,3.0,2.0,0.0,1,50800.0,1031452,3.0,22705.0,2110.0 +1069949,1069949,1069950,1,61.0,3.0,1.0,0.0,1,4800.0,1073449,6.0,22709.0,2110.0 +1069950,1069950,1069951,2,57.0,1.0,2.0,0.0,1,132000.0,1080470,1.0,22700.0,2110.0 +1069951,1069951,1069952,2,64.0,1.0,2.0,0.0,1,147000.0,1080470,1.0,22693.0,2110.0 +1069952,1069952,1069953,2,64.0,1.0,2.0,0.0,1,147000.0,1080470,1.0,22697.0,2110.0 +1069953,1069953,1069954,2,64.0,1.0,2.0,0.0,1,147000.0,1080470,1.0,22676.0,2107.0 +1069954,1069954,1069955,2,64.0,1.0,2.0,0.0,1,147000.0,1080470,1.0,22676.0,2107.0 +1069955,1069955,1069956,2,64.0,1.0,2.0,0.0,1,147000.0,1080470,1.0,22676.0,2107.0 +1069956,1069956,1069957,2,64.0,1.0,2.0,0.0,1,147000.0,1080470,1.0,22705.0,2110.0 +1069957,1069957,1069958,2,64.0,1.0,2.0,0.0,1,147000.0,1080470,1.0,22698.0,2110.0 +1069958,1069958,1069959,2,64.0,1.0,4.0,0.0,1,447500.0,1080470,7.0,22675.0,2107.0 +1069959,1069959,1069960,2,64.0,1.0,4.0,0.0,1,447500.0,1080470,7.0,22702.0,2110.0 +1069960,1069960,1069961,2,64.0,1.0,4.0,0.0,1,447500.0,1080470,7.0,22709.0,2110.0 +1069961,1069961,1069962,2,64.0,1.0,4.0,0.0,1,447500.0,1080470,7.0,22676.0,2107.0 +1069962,1069962,1069963,2,64.0,1.0,4.0,0.0,1,447500.0,1080470,7.0,22693.0,2110.0 +1069963,1069963,1069964,2,63.0,1.0,2.0,0.0,1,134300.0,1031452,1.0,22697.0,2110.0 +1069964,1069964,1069965,2,64.0,1.0,2.0,0.0,1,449000.0,1054606,1.0,22708.0,2110.0 +1069965,1069965,1069966,2,52.0,1.0,2.0,0.0,1,103700.0,1031452,1.0,22702.0,2110.0 +1069966,1069966,1069967,2,64.0,1.0,4.0,0.0,1,169800.0,1080470,1.0,22676.0,2107.0 +1069967,1069967,1069968,2,64.0,1.0,4.0,0.0,1,169800.0,1080470,1.0,22676.0,2107.0 +1069968,1069968,1069969,2,64.0,1.0,4.0,0.0,1,169800.0,1080470,1.0,22676.0,2107.0 +1069969,1069969,1069970,2,64.0,1.0,4.0,0.0,1,169800.0,1080470,1.0,22693.0,2110.0 +1069970,1069970,1069971,1,52.0,1.0,2.0,0.0,1,110100.0,1054606,4.0,22676.0,2107.0 +1069971,1069971,1069972,1,55.0,1.0,2.0,0.0,1,394000.0,1080470,4.0,22697.0,2110.0 +1069972,1069972,1069973,1,62.0,1.0,2.0,0.0,1,437100.0,1073449,4.0,22678.0,2107.0 +1069973,1069973,1069974,1,62.0,1.0,2.0,0.0,1,437100.0,1073449,4.0,22702.0,2110.0 +1069974,1069974,1069975,1,62.0,1.0,2.0,0.0,1,437100.0,1073449,4.0,22676.0,2107.0 +1069975,1069975,1069976,1,62.0,1.0,2.0,0.0,1,437100.0,1073449,4.0,22708.0,2110.0 +1069976,1069976,1069977,1,62.0,1.0,2.0,0.0,1,437100.0,1073449,4.0,22707.0,2110.0 +1069977,1069977,1069978,1,51.0,1.0,2.0,0.0,1,432000.0,1031452,4.0,22698.0,2110.0 +1069978,1069978,1069979,1,51.0,1.0,2.0,0.0,1,432000.0,1031452,4.0,22698.0,2110.0 +1069979,1069979,1069980,1,51.0,1.0,2.0,0.0,1,432000.0,1031452,4.0,22709.0,2110.0 +1069980,1069980,1069981,1,51.0,1.0,2.0,0.0,1,432000.0,1031452,4.0,22675.0,2107.0 +1069981,1069981,1069982,4,50.0,1.0,3.0,0.0,1,250300.0,1080470,1.0,22677.0,2107.0 +1069982,1069982,1069983,4,50.0,1.0,3.0,0.0,1,250300.0,1080470,1.0,22675.0,2107.0 +1069983,1069983,1069984,4,50.0,1.0,3.0,0.0,1,250300.0,1080470,1.0,22692.0,2110.0 +1069984,1069984,1069985,4,50.0,1.0,3.0,0.0,1,250300.0,1080470,1.0,22707.0,2110.0 +1069985,1069985,1069986,1,60.0,1.0,1.0,0.0,1,138600.0,1031452,6.0,22675.0,2107.0 +1069986,1069986,1069987,1,55.0,1.0,1.0,0.0,1,149000.0,1054606,6.0,22678.0,2107.0 +1069987,1069987,1069988,1,55.0,1.0,1.0,0.0,1,149000.0,1054606,6.0,22677.0,2107.0 +1069988,1069988,1069989,1,48.0,1.0,1.0,0.0,1,118000.0,1010145,6.0,22676.0,2107.0 +1069989,1069989,1069990,1,57.0,1.0,1.0,0.0,1,102000.0,1054606,4.0,22691.0,2110.0 +1069990,1069990,1069991,1,54.0,1.0,1.0,0.0,1,135000.0,1010145,4.0,22708.0,2110.0 +1069991,1069991,1069992,1,54.0,1.0,1.0,0.0,1,135000.0,1010145,4.0,22676.0,2107.0 +1069992,1069992,1069993,1,57.0,1.0,1.0,0.0,1,112000.0,1073449,4.0,22676.0,2107.0 +1069993,1069993,1069994,1,64.0,1.0,1.0,0.0,1,108200.0,1054606,6.0,22678.0,2107.0 +1069994,1069994,1069995,1,64.0,1.0,1.0,0.0,1,108200.0,1054606,6.0,22676.0,2107.0 +1069995,1069995,1069996,1,45.0,1.0,0.0,0.0,1,422000.0,1080470,4.0,22697.0,2110.0 +1069996,1069996,1069997,1,45.0,1.0,0.0,0.0,1,422000.0,1080470,4.0,22676.0,2107.0 +1069997,1069997,1069998,1,45.0,1.0,0.0,0.0,1,422000.0,1080470,4.0,22681.0,2107.0 +1069998,1069998,1069999,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22708.0,2110.0 +1069999,1069999,1070000,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22692.0,2110.0 +1070000,1070000,1070001,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22691.0,2110.0 +1070001,1070001,1070002,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22708.0,2110.0 +1070002,1070002,1070003,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22677.0,2107.0 +1070003,1070003,1070004,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22706.0,2110.0 +1070004,1070004,1070005,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22677.0,2107.0 +1070005,1070005,1070006,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22677.0,2107.0 +1070006,1070006,1070007,1,63.0,1.0,1.0,0.0,1,70000.0,1080470,6.0,22692.0,2110.0 +1070007,1070007,1070008,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22706.0,2110.0 +1070008,1070008,1070009,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22677.0,2107.0 +1070009,1070009,1070010,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22700.0,2110.0 +1070010,1070010,1070011,1,52.0,1.0,1.0,0.0,1,60100.0,1010145,4.0,22676.0,2107.0 +1070011,1070011,1070012,1,54.0,1.0,1.0,0.0,1,72040.0,1054606,4.0,22676.0,2107.0 +1070012,1070012,1070013,1,54.0,1.0,1.0,0.0,1,72040.0,1054606,4.0,22705.0,2110.0 +1070013,1070013,1070014,1,57.0,1.0,1.0,0.0,1,77000.0,1073449,4.0,22679.0,2107.0 +1070014,1070014,1070015,1,57.0,1.0,1.0,0.0,1,77000.0,1073449,4.0,22706.0,2110.0 +1070015,1070015,1070016,1,45.0,1.0,1.0,0.0,1,100000.0,1080470,4.0,22705.0,2110.0 +1070016,1070016,1070017,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22710.0,2110.0 +1070017,1070017,1070018,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22706.0,2110.0 +1070018,1070018,1070019,2,63.0,1.0,2.0,0.0,1,50000.0,1010145,1.0,22679.0,2107.0 +1070019,1070019,1070020,2,63.0,1.0,2.0,0.0,1,50000.0,1010145,1.0,22679.0,2107.0 +1070020,1070020,1070021,2,63.0,1.0,2.0,0.0,1,50000.0,1010145,1.0,22700.0,2110.0 +1070021,1070021,1070022,1,50.0,1.0,2.0,0.0,1,35000.0,1031452,4.0,22679.0,2107.0 +1070022,1070022,1070023,1,62.0,1.0,2.0,0.0,1,39200.0,1010145,4.0,22694.0,2110.0 +1070023,1070023,1070024,1,62.0,1.0,2.0,0.0,1,39200.0,1010145,4.0,22676.0,2107.0 +1070024,1070024,1070025,1,63.0,1.0,1.0,0.0,1,31000.0,1010145,6.0,22698.0,2110.0 +1070025,1070025,1070026,1,63.0,1.0,1.0,0.0,1,31000.0,1010145,6.0,22675.0,2107.0 +1070026,1070026,1070027,1,63.0,1.0,1.0,0.0,1,31000.0,1010145,6.0,22705.0,2110.0 +1070027,1070027,1070028,1,63.0,1.0,1.0,0.0,1,31000.0,1010145,6.0,22702.0,2110.0 +1070028,1070028,1070029,1,58.0,1.0,1.0,0.0,1,42900.0,1031452,6.0,22676.0,2107.0 +1070029,1070029,1070030,1,59.0,1.0,1.0,0.0,1,32700.0,1031452,6.0,22702.0,2110.0 +1070030,1070030,1070031,1,59.0,1.0,1.0,0.0,1,32700.0,1031452,6.0,22681.0,2107.0 +1070031,1070031,1070032,1,46.0,1.0,1.0,0.0,1,36000.0,1054606,4.0,22676.0,2107.0 +1070032,1070032,1070033,1,49.0,1.0,1.0,0.0,1,35000.0,1080470,4.0,22675.0,2107.0 +1070033,1070033,1070034,1,49.0,1.0,1.0,0.0,1,35000.0,1080470,4.0,22676.0,2107.0 +1070034,1070034,1070035,1,49.0,1.0,1.0,0.0,1,35000.0,1080470,4.0,22676.0,2107.0 +1070035,1070035,1070036,1,48.0,1.0,1.0,0.0,1,40000.0,1054606,4.0,22700.0,2110.0 +1070036,1070036,1070037,1,55.0,1.0,1.0,0.0,1,42000.0,1054606,4.0,22676.0,2107.0 +1070037,1070037,1070038,2,61.0,1.0,1.0,0.0,1,34000.0,1080470,1.0,22676.0,2107.0 +1070038,1070038,1070039,2,61.0,1.0,1.0,0.0,1,34000.0,1080470,1.0,22697.0,2110.0 +1070039,1070039,1070040,2,61.0,1.0,1.0,0.0,1,34000.0,1080470,1.0,22698.0,2110.0 +1070040,1070040,1070041,2,61.0,1.0,1.0,0.0,1,34000.0,1080470,1.0,22676.0,2107.0 +1070041,1070041,1070042,2,61.0,1.0,1.0,0.0,1,34000.0,1080470,1.0,22705.0,2110.0 +1070042,1070042,1070043,1,56.0,1.0,1.0,0.0,1,45000.0,1073449,6.0,22702.0,2110.0 +1070043,1070043,1070044,1,45.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22676.0,2107.0 +1070044,1070044,1070045,1,62.0,1.0,1.0,0.0,1,57000.0,1054606,6.0,22676.0,2107.0 +1070045,1070045,1070046,1,45.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22679.0,2107.0 +1070046,1070046,1070047,1,45.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22681.0,2107.0 +1070047,1070047,1070048,1,61.0,1.0,1.0,0.0,1,52500.0,1080470,6.0,22702.0,2110.0 +1070048,1070048,1070049,1,45.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22675.0,2107.0 +1070049,1070049,1070050,1,63.0,1.0,1.0,0.0,1,43000.0,1054606,4.0,22692.0,2110.0 +1070050,1070050,1070051,1,63.0,1.0,1.0,0.0,1,43000.0,1054606,4.0,22678.0,2107.0 +1070051,1070051,1070052,1,63.0,1.0,1.0,0.0,1,43000.0,1054606,4.0,22692.0,2110.0 +1070052,1070052,1070053,1,52.0,1.0,2.0,0.0,1,20100.0,1080470,6.0,22676.0,2107.0 +1070053,1070053,1070054,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22707.0,2110.0 +1070054,1070054,1070055,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22676.0,2107.0 +1070055,1070055,1070056,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22676.0,2107.0 +1070056,1070056,1070057,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22676.0,2107.0 +1070057,1070057,1070058,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22679.0,2107.0 +1070058,1070058,1070059,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22697.0,2110.0 +1070059,1070059,1070060,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22706.0,2110.0 +1070060,1070060,1070061,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22692.0,2110.0 +1070061,1070061,1070062,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22676.0,2107.0 +1070062,1070062,1070063,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22675.0,2107.0 +1070063,1070063,1070064,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22707.0,2110.0 +1070064,1070064,1070065,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22692.0,2110.0 +1070065,1070065,1070066,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22708.0,2110.0 +1070066,1070066,1070067,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22697.0,2110.0 +1070067,1070067,1070068,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22702.0,2110.0 +1070068,1070068,1070069,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22679.0,2107.0 +1070069,1070069,1070070,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22676.0,2107.0 +1070070,1070070,1070071,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22681.0,2107.0 +1070071,1070071,1070072,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22702.0,2110.0 +1070072,1070072,1070073,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22694.0,2110.0 +1070073,1070073,1070074,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22694.0,2110.0 +1070074,1070074,1070075,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22702.0,2110.0 +1070075,1070075,1070076,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22708.0,2110.0 +1070076,1070076,1070077,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22677.0,2107.0 +1070077,1070077,1070078,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22710.0,2110.0 +1070078,1070078,1070079,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22678.0,2107.0 +1070079,1070079,1070080,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22681.0,2107.0 +1070080,1070080,1070081,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22709.0,2110.0 +1070081,1070081,1070082,1,49.0,1.0,3.0,0.0,1,29300.0,1010145,4.0,22676.0,2107.0 +1070082,1070082,1070083,1,55.0,1.0,1.0,0.0,1,25000.0,1073449,6.0,22676.0,2107.0 +1070083,1070083,1070084,1,55.0,1.0,1.0,0.0,1,25000.0,1073449,6.0,22676.0,2107.0 +1070084,1070084,1070085,1,61.0,1.0,1.0,0.0,1,26150.0,1031452,6.0,22681.0,2107.0 +1070085,1070085,1070086,1,61.0,1.0,1.0,0.0,1,26150.0,1031452,6.0,22694.0,2110.0 +1070086,1070086,1070087,1,57.0,1.0,1.0,0.0,1,30000.0,1010145,6.0,22691.0,2110.0 +1070087,1070087,1070088,1,61.0,1.0,1.0,0.0,1,26150.0,1031452,6.0,22676.0,2107.0 +1070088,1070088,1070089,1,61.0,1.0,1.0,0.0,1,26150.0,1031452,6.0,22679.0,2107.0 +1070089,1070089,1070090,1,57.0,1.0,1.0,0.0,1,30000.0,1010145,6.0,22693.0,2110.0 +1070090,1070090,1070091,1,54.0,1.0,1.0,0.0,1,30000.0,1031452,6.0,22691.0,2110.0 +1070091,1070091,1070092,1,54.0,1.0,1.0,0.0,1,30000.0,1031452,6.0,22675.0,2107.0 +1070092,1070092,1070093,1,59.0,1.0,1.0,0.0,1,13200.0,1080470,6.0,22697.0,2110.0 +1070093,1070093,1070094,1,59.0,1.0,1.0,0.0,1,13200.0,1080470,6.0,22679.0,2107.0 +1070094,1070094,1070095,1,59.0,1.0,1.0,0.0,1,28000.0,1010145,6.0,22693.0,2110.0 +1070095,1070095,1070096,1,56.0,1.0,1.0,0.0,1,20800.0,1031452,6.0,22702.0,2110.0 +1070096,1070096,1070097,1,59.0,1.0,1.0,0.0,1,28000.0,1054606,6.0,22697.0,2110.0 +1070097,1070097,1070098,1,53.0,1.0,1.0,0.0,1,23000.0,1080470,4.0,22702.0,2110.0 +1070098,1070098,1070099,1,53.0,1.0,1.0,0.0,1,23000.0,1080470,4.0,22677.0,2107.0 +1070099,1070099,1070100,1,51.0,1.0,1.0,0.0,1,24000.0,1073449,4.0,22676.0,2107.0 +1070100,1070100,1070101,1,61.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22675.0,2107.0 +1070101,1070101,1070102,1,61.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22708.0,2110.0 +1070102,1070102,1070103,1,61.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22676.0,2107.0 +1070103,1070103,1070104,1,58.0,1.0,1.0,0.0,1,30000.0,1031452,4.0,22678.0,2107.0 +1070104,1070104,1070105,1,58.0,1.0,1.0,0.0,1,30000.0,1031452,4.0,22675.0,2107.0 +1070105,1070105,1070106,1,51.0,1.0,1.0,0.0,1,20000.0,1054606,4.0,22676.0,2107.0 +1070106,1070106,1070107,1,51.0,1.0,1.0,0.0,1,20000.0,1054606,4.0,22694.0,2110.0 +1070107,1070107,1070108,1,51.0,1.0,1.0,0.0,1,20000.0,1054606,4.0,22707.0,2110.0 +1070108,1070108,1070109,1,51.0,1.0,1.0,0.0,1,20000.0,1054606,4.0,22675.0,2107.0 +1070109,1070109,1070110,1,51.0,1.0,1.0,0.0,1,20000.0,1054606,4.0,22697.0,2110.0 +1070110,1070110,1070111,1,51.0,1.0,1.0,0.0,1,20000.0,1054606,4.0,22697.0,2110.0 +1070111,1070111,1070112,1,54.0,1.0,1.0,0.0,1,18970.0,1080470,4.0,22693.0,2110.0 +1070112,1070112,1070113,1,54.0,1.0,1.0,0.0,1,18970.0,1080470,4.0,22676.0,2107.0 +1070113,1070113,1070114,1,54.0,1.0,1.0,0.0,1,18970.0,1080470,4.0,22676.0,2107.0 +1070114,1070114,1070115,1,54.0,1.0,1.0,0.0,1,18970.0,1080470,4.0,22706.0,2110.0 +1070115,1070115,1070116,1,54.0,1.0,1.0,0.0,1,18970.0,1080470,4.0,22697.0,2110.0 +1070116,1070116,1070117,1,54.0,1.0,1.0,0.0,1,18970.0,1080470,4.0,22676.0,2107.0 +1070117,1070117,1070118,2,57.0,1.0,1.0,0.0,1,10800.0,1080470,3.0,22678.0,2107.0 +1070118,1070118,1070119,1,59.0,1.0,1.0,0.0,1,15900.0,1073449,6.0,22702.0,2110.0 +1070119,1070119,1070120,1,61.0,1.0,1.0,0.0,1,30000.0,1010145,6.0,22705.0,2110.0 +1070120,1070120,1070121,1,62.0,1.0,1.0,0.0,1,18900.0,1080470,6.0,22676.0,2107.0 +1070121,1070121,1070122,1,62.0,1.0,1.0,0.0,1,7000.0,1080470,6.0,22697.0,2110.0 +1070122,1070122,1070123,1,62.0,1.0,1.0,0.0,1,18900.0,1080470,6.0,22697.0,2110.0 +1070123,1070123,1070124,1,61.0,1.0,1.0,0.0,1,30000.0,1010145,6.0,22677.0,2107.0 +1070124,1070124,1070125,1,62.0,1.0,1.0,0.0,1,18900.0,1080470,6.0,22706.0,2110.0 +1070125,1070125,1070126,1,63.0,1.0,1.0,0.0,1,27200.0,1054606,4.0,22709.0,2110.0 +1070126,1070126,1070127,1,62.0,1.0,1.0,0.0,1,14950.0,1073449,4.0,22707.0,2110.0 +1070127,1070127,1070128,1,58.0,1.0,1.0,0.0,1,19800.0,1080470,4.0,22676.0,2107.0 +1070128,1070128,1070129,1,62.0,1.0,1.0,0.0,1,14950.0,1073449,4.0,22694.0,2110.0 +1070129,1070129,1070130,1,63.0,1.0,1.0,0.0,1,27200.0,1054606,4.0,22692.0,2110.0 +1070130,1070130,1070131,1,62.0,1.0,1.0,0.0,1,14950.0,1073449,4.0,22680.0,2107.0 +1070131,1070131,1070132,1,63.0,1.0,1.0,0.0,1,27200.0,1054606,4.0,22676.0,2107.0 +1070132,1070132,1070133,1,62.0,1.0,1.0,0.0,1,14950.0,1073449,4.0,22692.0,2110.0 +1070133,1070133,1070134,1,57.0,1.0,1.0,0.0,1,28600.0,1080470,4.0,22692.0,2110.0 +1070134,1070134,1070135,1,63.0,1.0,1.0,0.0,1,27200.0,1054606,4.0,22702.0,2110.0 +1070135,1070135,1070136,1,63.0,1.0,1.0,0.0,1,27200.0,1054606,4.0,22697.0,2110.0 +1070136,1070136,1070137,1,58.0,1.0,1.0,0.0,1,19800.0,1080470,4.0,22710.0,2110.0 +1070137,1070137,1070138,1,57.0,1.0,1.0,0.0,1,28600.0,1080470,4.0,22677.0,2107.0 +1070138,1070138,1070139,1,57.0,1.0,1.0,0.0,1,0.0,1031452,4.0,22694.0,2110.0 +1070139,1070139,1070140,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22707.0,2110.0 +1070140,1070140,1070141,5,56.0,1.0,2.0,0.0,1,178660.0,1073449,1.0,22676.0,2107.0 +1070141,1070141,1070142,5,64.0,1.0,2.0,2.0,1,91500.0,1073449,1.0,22705.0,2110.0 +1070142,1070142,1070143,5,64.0,1.0,2.0,2.0,1,91500.0,1073449,1.0,22706.0,2110.0 +1070143,1070143,1070144,5,64.0,1.0,2.0,2.0,1,91500.0,1073449,1.0,22705.0,2110.0 +1070144,1070144,1070145,4,45.0,1.0,2.0,2.0,1,82000.0,1010145,1.0,22677.0,2107.0 +1070145,1070145,1070146,4,51.0,1.0,2.0,2.0,1,71900.0,1073449,1.0,22679.0,2107.0 +1070146,1070146,1070147,4,51.0,1.0,2.0,2.0,1,71900.0,1073449,1.0,22676.0,2107.0 +1070147,1070147,1070148,4,51.0,1.0,2.0,2.0,1,71900.0,1073449,1.0,22694.0,2110.0 +1070148,1070148,1070149,4,51.0,1.0,2.0,2.0,1,71900.0,1073449,1.0,22677.0,2107.0 +1070149,1070149,1070150,2,46.0,1.0,2.0,2.0,1,14000.0,1073449,7.0,22692.0,2110.0 +1070150,1070150,1070151,2,46.0,1.0,2.0,1.0,1,14000.0,1073449,7.0,22705.0,2110.0 +1070151,1070151,1070152,1,40.0,3.0,2.0,1.0,1,65000.0,1031452,4.0,22675.0,2107.0 +1070152,1070152,1070153,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22697.0,2110.0 +1070153,1070153,1070154,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22678.0,2107.0 +1070154,1070154,1070155,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22705.0,2110.0 +1070155,1070155,1070156,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22694.0,2110.0 +1070156,1070156,1070157,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22678.0,2107.0 +1070157,1070157,1070158,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22702.0,2110.0 +1070158,1070158,1070159,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22694.0,2110.0 +1070159,1070159,1070160,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22678.0,2107.0 +1070160,1070160,1070161,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22705.0,2110.0 +1070161,1070161,1070162,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22675.0,2107.0 +1070162,1070162,1070163,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22677.0,2107.0 +1070163,1070163,1070164,2,34.0,4.0,4.0,0.0,1,478200.0,1031452,2.0,22710.0,2110.0 +1070164,1070164,1070165,2,34.0,4.0,4.0,0.0,1,478200.0,1031452,2.0,22676.0,2107.0 +1070165,1070165,1070166,4,44.0,4.0,2.0,0.0,1,192000.0,1010145,1.0,22693.0,2110.0 +1070166,1070166,1070167,3,30.0,4.0,2.0,2.0,1,203000.0,1010145,1.0,22697.0,2110.0 +1070167,1070167,1070168,3,30.0,4.0,2.0,1.0,1,203000.0,1010145,1.0,22692.0,2110.0 +1070168,1070168,1070169,3,30.0,4.0,2.0,1.0,1,203000.0,1010145,1.0,22676.0,2107.0 +1070169,1070169,1070170,3,29.0,4.0,1.0,1.0,1,115000.0,1010145,1.0,22675.0,2107.0 +1070170,1070170,1070171,3,29.0,4.0,1.0,1.0,1,115000.0,1010145,1.0,22675.0,2107.0 +1070171,1070171,1070172,3,29.0,4.0,1.0,1.0,1,115000.0,1010145,1.0,22677.0,2107.0 +1070172,1070172,1070173,3,41.0,4.0,1.0,1.0,1,80000.0,1080470,1.0,22709.0,2110.0 +1070173,1070173,1070174,3,41.0,4.0,1.0,1.0,1,80000.0,1080470,1.0,22676.0,2107.0 +1070174,1070174,1070175,3,41.0,4.0,1.0,1.0,1,80000.0,1080470,1.0,22678.0,2107.0 +1070175,1070175,1070176,3,41.0,4.0,1.0,1.0,1,80000.0,1080470,1.0,22694.0,2110.0 +1070176,1070176,1070177,2,29.0,2.0,2.0,1.0,1,75000.0,1080470,1.0,22675.0,2107.0 +1070177,1070177,1070178,2,29.0,2.0,2.0,0.0,1,75000.0,1080470,1.0,22676.0,2107.0 +1070178,1070178,1070179,2,29.0,2.0,2.0,0.0,1,75000.0,1080470,1.0,22679.0,2107.0 +1070179,1070179,1070180,2,39.0,2.0,1.0,0.0,1,67900.0,1010145,5.0,22676.0,2107.0 +1070180,1070180,1070181,2,39.0,2.0,1.0,0.0,1,67900.0,1010145,5.0,22691.0,2110.0 +1070181,1070181,1070182,2,39.0,2.0,1.0,0.0,1,67900.0,1010145,5.0,22675.0,2107.0 +1070182,1070182,1070183,2,39.0,2.0,1.0,0.0,1,67900.0,1010145,5.0,22706.0,2110.0 +1070183,1070183,1070184,2,44.0,2.0,0.0,0.0,1,72000.0,1054606,5.0,22697.0,2110.0 +1070184,1070184,1070185,2,44.0,2.0,0.0,0.0,1,72000.0,1054606,5.0,22698.0,2110.0 +1070185,1070185,1070186,5,44.0,2.0,2.0,0.0,1,462000.0,1080470,1.0,22676.0,2107.0 +1070186,1070186,1070187,5,42.0,3.0,2.0,3.0,1,219000.0,1010145,1.0,22678.0,2107.0 +1070187,1070187,1070188,5,42.0,3.0,2.0,3.0,1,219000.0,1010145,1.0,22697.0,2110.0 +1070188,1070188,1070189,5,42.0,3.0,2.0,3.0,1,219000.0,1010145,1.0,22702.0,2110.0 +1070189,1070189,1070190,5,42.0,3.0,2.0,3.0,1,219000.0,1010145,1.0,22697.0,2110.0 +1070190,1070190,1070191,5,42.0,3.0,2.0,3.0,1,219000.0,1010145,1.0,22700.0,2110.0 +1070191,1070191,1070192,4,37.0,3.0,2.0,3.0,1,122000.0,1080470,1.0,22705.0,2110.0 +1070192,1070192,1070193,4,37.0,3.0,2.0,2.0,1,122000.0,1080470,1.0,22700.0,2110.0 +1070193,1070193,1070194,2,42.0,1.0,2.0,2.0,1,123000.0,1073449,1.0,22700.0,2110.0 +1070194,1070194,1070195,2,27.0,1.0,2.0,0.0,1,103000.0,1073449,5.0,22698.0,2110.0 +1070195,1070195,1070196,2,37.0,1.0,2.0,0.0,1,136000.0,1031452,1.0,22700.0,2110.0 +1070196,1070196,1070197,1,30.0,1.0,2.0,0.0,1,110000.0,1080470,4.0,22676.0,2107.0 +1070197,1070197,1070198,1,30.0,1.0,2.0,0.0,1,110000.0,1080470,4.0,22693.0,2110.0 +1070198,1070198,1070199,2,38.0,1.0,1.0,0.0,1,487000.0,1031452,1.0,22677.0,2107.0 +1070199,1070199,1070200,1,29.0,1.0,1.0,0.0,1,140050.0,1031452,6.0,22694.0,2110.0 +1070200,1070200,1070201,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22697.0,2110.0 +1070201,1070201,1070202,1,28.0,1.0,1.0,0.0,1,423000.0,1010145,4.0,22702.0,2110.0 +1070202,1070202,1070203,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22694.0,2110.0 +1070203,1070203,1070204,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22679.0,2107.0 +1070204,1070204,1070205,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22694.0,2110.0 +1070205,1070205,1070206,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22678.0,2107.0 +1070206,1070206,1070207,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22700.0,2110.0 +1070207,1070207,1070208,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22697.0,2110.0 +1070208,1070208,1070209,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22676.0,2107.0 +1070209,1070209,1070210,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22675.0,2107.0 +1070210,1070210,1070211,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22691.0,2110.0 +1070211,1070211,1070212,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22706.0,2110.0 +1070212,1070212,1070213,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22697.0,2110.0 +1070213,1070213,1070214,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22676.0,2107.0 +1070214,1070214,1070215,1,33.0,1.0,1.0,0.0,1,91000.0,1073449,4.0,22676.0,2107.0 +1070215,1070215,1070216,1,33.0,1.0,1.0,0.0,1,91000.0,1073449,4.0,22706.0,2110.0 +1070216,1070216,1070217,1,33.0,1.0,1.0,0.0,1,91000.0,1073449,4.0,22709.0,2110.0 +1070217,1070217,1070218,1,33.0,1.0,1.0,0.0,1,91000.0,1073449,4.0,22676.0,2107.0 +1070218,1070218,1070219,1,39.0,1.0,1.0,0.0,1,93000.0,1080470,4.0,22705.0,2110.0 +1070219,1070219,1070220,1,35.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22708.0,2110.0 +1070220,1070220,1070221,1,35.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22694.0,2110.0 +1070221,1070221,1070222,1,35.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22697.0,2110.0 +1070222,1070222,1070223,1,39.0,1.0,1.0,0.0,1,93000.0,1080470,4.0,22677.0,2107.0 +1070223,1070223,1070224,1,39.0,1.0,1.0,0.0,1,93000.0,1080470,4.0,22676.0,2107.0 +1070224,1070224,1070225,1,39.0,1.0,1.0,0.0,1,93000.0,1080470,4.0,22677.0,2107.0 +1070225,1070225,1070226,1,39.0,1.0,1.0,0.0,1,93000.0,1080470,4.0,22681.0,2107.0 +1070226,1070226,1070227,1,39.0,1.0,1.0,0.0,1,93000.0,1080470,4.0,22676.0,2107.0 +1070227,1070227,1070228,1,35.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22692.0,2110.0 +1070228,1070228,1070229,1,35.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22679.0,2107.0 +1070229,1070229,1070230,1,35.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22694.0,2110.0 +1070230,1070230,1070231,1,35.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22694.0,2110.0 +1070231,1070231,1070232,1,40.0,1.0,1.0,0.0,1,83000.0,1031452,4.0,22676.0,2107.0 +1070232,1070232,1070233,1,40.0,1.0,1.0,0.0,1,83000.0,1031452,4.0,22676.0,2107.0 +1070233,1070233,1070234,1,27.0,1.0,1.0,0.0,1,90000.0,1031452,4.0,22676.0,2107.0 +1070234,1070234,1070235,1,33.0,1.0,1.0,0.0,1,90000.0,1010145,4.0,22697.0,2110.0 +1070235,1070235,1070236,1,33.0,1.0,1.0,0.0,1,90000.0,1010145,4.0,22705.0,2110.0 +1070236,1070236,1070237,1,40.0,1.0,1.0,0.0,1,83000.0,1031452,4.0,22706.0,2110.0 +1070237,1070237,1070238,1,38.0,1.0,2.0,0.0,1,58000.0,1031452,6.0,22676.0,2107.0 +1070238,1070238,1070239,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22702.0,2110.0 +1070239,1070239,1070240,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22702.0,2110.0 +1070240,1070240,1070241,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22702.0,2110.0 +1070241,1070241,1070242,2,26.0,1.0,1.0,0.0,1,38000.0,1054606,5.0,22676.0,2107.0 +1070242,1070242,1070243,1,39.0,1.0,1.0,0.0,1,43000.0,1080470,6.0,22679.0,2107.0 +1070243,1070243,1070244,1,37.0,1.0,1.0,0.0,1,51000.0,1054606,6.0,22675.0,2107.0 +1070244,1070244,1070245,2,25.0,1.0,2.0,0.0,1,24600.0,1080470,1.0,22676.0,2107.0 +1070245,1070245,1070246,1,30.0,1.0,2.0,0.0,1,28000.0,1010145,4.0,22676.0,2107.0 +1070246,1070246,1070247,1,30.0,1.0,2.0,0.0,1,28000.0,1010145,4.0,22694.0,2110.0 +1070247,1070247,1070248,1,30.0,1.0,2.0,0.0,1,28000.0,1010145,4.0,22694.0,2110.0 +1070248,1070248,1070249,1,30.0,1.0,2.0,0.0,1,28000.0,1010145,4.0,22700.0,2110.0 +1070249,1070249,1070250,1,30.0,1.0,2.0,0.0,1,28000.0,1010145,4.0,22676.0,2107.0 +1070250,1070250,1070251,1,30.0,1.0,2.0,0.0,1,28000.0,1010145,4.0,22705.0,2110.0 +1070251,1070251,1070252,1,30.0,1.0,2.0,0.0,1,28000.0,1010145,4.0,22692.0,2110.0 +1070252,1070252,1070253,1,30.0,1.0,2.0,0.0,1,28000.0,1010145,4.0,22691.0,2110.0 +1070253,1070253,1070254,1,30.0,1.0,2.0,0.0,1,28000.0,1010145,4.0,22676.0,2107.0 +1070254,1070254,1070255,2,27.0,1.0,1.0,0.0,1,12700.0,1010145,1.0,22678.0,2107.0 +1070255,1070255,1070256,5,38.0,1.0,2.0,0.0,1,200000.0,1080470,1.0,22705.0,2110.0 +1070256,1070256,1070257,5,36.0,1.0,2.0,3.0,1,182000.0,1054606,1.0,22675.0,2107.0 +1070257,1070257,1070258,5,36.0,1.0,2.0,3.0,1,182000.0,1054606,1.0,22677.0,2107.0 +1070258,1070258,1070259,5,36.0,1.0,2.0,3.0,1,182000.0,1054606,1.0,22676.0,2107.0 +1070259,1070259,1070260,5,36.0,1.0,2.0,3.0,1,182000.0,1054606,1.0,22675.0,2107.0 +1070260,1070260,1070261,5,37.0,1.0,2.0,3.0,1,138000.0,1010145,1.0,22694.0,2110.0 +1070261,1070261,1070262,4,37.0,1.0,3.0,3.0,1,124000.0,1054606,1.0,22697.0,2110.0 +1070262,1070262,1070263,5,40.0,1.0,3.0,2.0,1,96000.0,1010145,1.0,22698.0,2110.0 +1070263,1070263,1070264,5,40.0,1.0,3.0,2.0,1,96000.0,1010145,1.0,22678.0,2107.0 +1070264,1070264,1070265,5,40.0,1.0,3.0,2.0,1,96000.0,1010145,1.0,22702.0,2110.0 +1070265,1070265,1070266,5,40.0,1.0,3.0,2.0,1,96000.0,1010145,1.0,22678.0,2107.0 +1070266,1070266,1070267,5,40.0,1.0,3.0,2.0,1,96000.0,1010145,1.0,22676.0,2107.0 +1070267,1070267,1070268,5,38.0,1.0,3.0,2.0,1,68000.0,1054606,2.0,22693.0,2110.0 +1070268,1070268,1070269,4,42.0,1.0,2.0,3.0,1,80000.0,1031452,2.0,22707.0,2110.0 +1070269,1070269,1070270,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22702.0,2110.0 +1070270,1070270,1070271,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22697.0,2110.0 +1070271,1070271,1070272,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22694.0,2110.0 +1070272,1070272,1070273,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22692.0,2110.0 +1070273,1070273,1070274,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22675.0,2107.0 +1070274,1070274,1070275,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22676.0,2107.0 +1070275,1070275,1070276,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22705.0,2110.0 +1070276,1070276,1070277,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22702.0,2110.0 +1070277,1070277,1070278,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22702.0,2110.0 +1070278,1070278,1070279,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22698.0,2110.0 +1070279,1070279,1070280,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22697.0,2110.0 +1070280,1070280,1070281,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22677.0,2107.0 +1070281,1070281,1070282,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22675.0,2107.0 +1070282,1070282,1070283,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22697.0,2110.0 +1070283,1070283,1070284,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22675.0,2107.0 +1070284,1070284,1070285,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22702.0,2110.0 +1070285,1070285,1070286,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22679.0,2107.0 +1070286,1070286,1070287,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22708.0,2110.0 +1070287,1070287,1070288,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22697.0,2110.0 +1070288,1070288,1070289,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22675.0,2107.0 +1070289,1070289,1070290,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22694.0,2110.0 +1070290,1070290,1070291,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22700.0,2110.0 +1070291,1070291,1070292,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22676.0,2107.0 +1070292,1070292,1070293,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22675.0,2107.0 +1070293,1070293,1070294,5,43.0,1.0,2.0,2.0,1,47500.0,1054606,1.0,22681.0,2107.0 +1070294,1070294,1070295,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22693.0,2110.0 +1070295,1070295,1070296,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22702.0,2110.0 +1070296,1070296,1070297,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22698.0,2110.0 +1070297,1070297,1070298,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22706.0,2110.0 +1070298,1070298,1070299,4,41.0,1.0,2.0,1.0,1,17200.0,1080470,3.0,22676.0,2107.0 +1070299,1070299,1070300,4,41.0,1.0,2.0,2.0,1,17200.0,1080470,3.0,22710.0,2110.0 +1070300,1070300,1070301,4,41.0,1.0,2.0,2.0,1,17200.0,1080470,3.0,22680.0,2107.0 +1070301,1070301,1070302,4,41.0,1.0,2.0,2.0,1,17200.0,1080470,3.0,22676.0,2107.0 +1070302,1070302,1070303,4,41.0,1.0,2.0,2.0,1,17200.0,1080470,3.0,22702.0,2110.0 +1070303,1070303,1070304,4,41.0,1.0,2.0,2.0,1,17200.0,1080470,3.0,22676.0,2107.0 +1070304,1070304,1070305,4,41.0,1.0,2.0,2.0,1,17200.0,1080470,3.0,22675.0,2107.0 +1070305,1070305,1070306,4,41.0,1.0,2.0,2.0,1,18000.0,1073449,1.0,22679.0,2107.0 +1070306,1070306,1070307,2,37.0,1.0,1.0,2.0,1,26000.0,1031452,2.0,22676.0,2107.0 +1070307,1070307,1070308,2,37.0,1.0,1.0,1.0,1,26000.0,1031452,2.0,22697.0,2110.0 +1070308,1070308,1070309,2,37.0,1.0,1.0,1.0,1,26000.0,1031452,2.0,22693.0,2110.0 +1070309,1070309,1070310,2,37.0,1.0,1.0,1.0,1,26000.0,1031452,2.0,22707.0,2110.0 +1070310,1070310,1070311,2,37.0,1.0,1.0,1.0,1,26000.0,1031452,2.0,22694.0,2110.0 +1070311,1070311,1070312,2,37.0,1.0,1.0,1.0,1,26000.0,1031452,2.0,22694.0,2110.0 +1070312,1070312,1070313,2,37.0,1.0,1.0,1.0,1,26000.0,1031452,2.0,22706.0,2110.0 +1070313,1070313,1070314,2,37.0,1.0,1.0,1.0,1,26000.0,1031452,2.0,22679.0,2107.0 +1070314,1070314,1070315,4,44.0,1.0,0.0,1.0,1,26600.0,1010145,3.0,22676.0,2107.0 +1070315,1070315,1070316,3,81.0,4.0,1.0,3.0,1,149500.0,1031452,3.0,22715.0,2112.0 +1070316,1070316,1070317,3,81.0,4.0,1.0,0.0,1,149500.0,1031452,3.0,22690.0,2110.0 +1070317,1070317,1070318,3,81.0,4.0,1.0,0.0,1,149500.0,1031452,3.0,22714.0,2112.0 +1070318,1070318,1070319,3,69.0,1.0,2.0,0.0,1,173850.0,1054606,1.0,22704.0,2110.0 +1070319,1070319,1070320,3,69.0,1.0,2.0,0.0,1,173850.0,1054606,1.0,22718.0,2112.0 +1070320,1070320,1070321,3,69.0,1.0,2.0,0.0,1,173850.0,1054606,1.0,22718.0,2112.0 +1070321,1070321,1070322,2,70.0,1.0,2.0,0.0,1,134150.0,1010145,7.0,22717.0,2112.0 +1070322,1070322,1070323,2,70.0,1.0,2.0,0.0,1,134150.0,1010145,7.0,22714.0,2112.0 +1070323,1070323,1070324,2,70.0,1.0,2.0,0.0,1,134150.0,1010145,7.0,22716.0,2112.0 +1070324,1070324,1070325,2,70.0,1.0,2.0,0.0,1,134150.0,1010145,7.0,22716.0,2112.0 +1070325,1070325,1070326,2,70.0,1.0,2.0,0.0,1,134150.0,1010145,7.0,22690.0,2110.0 +1070326,1070326,1070327,2,70.0,1.0,2.0,0.0,1,134150.0,1010145,7.0,22716.0,2112.0 +1070327,1070327,1070328,2,70.0,1.0,2.0,0.0,1,134150.0,1010145,7.0,22719.0,2112.0 +1070328,1070328,1070329,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22717.0,2112.0 +1070329,1070329,1070330,2,67.0,1.0,2.0,0.0,1,165800.0,1080470,1.0,22715.0,2112.0 +1070330,1070330,1070331,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22704.0,2110.0 +1070331,1070331,1070332,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22717.0,2112.0 +1070332,1070332,1070333,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22715.0,2112.0 +1070333,1070333,1070334,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22699.0,2110.0 +1070334,1070334,1070335,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22714.0,2112.0 +1070335,1070335,1070336,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22683.0,2108.0 +1070336,1070336,1070337,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22704.0,2110.0 +1070337,1070337,1070338,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22714.0,2112.0 +1070338,1070338,1070339,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22690.0,2110.0 +1070339,1070339,1070340,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22719.0,2112.0 +1070340,1070340,1070341,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22716.0,2112.0 +1070341,1070341,1070342,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22717.0,2112.0 +1070342,1070342,1070343,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22715.0,2112.0 +1070343,1070343,1070344,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22714.0,2112.0 +1070344,1070344,1070345,2,73.0,1.0,3.0,0.0,1,85000.0,1080470,1.0,22714.0,2112.0 +1070345,1070345,1070346,2,73.0,1.0,3.0,0.0,1,85000.0,1080470,1.0,22715.0,2112.0 +1070346,1070346,1070347,2,73.0,1.0,3.0,0.0,1,85000.0,1080470,1.0,22699.0,2110.0 +1070347,1070347,1070348,2,65.0,1.0,3.0,0.0,1,88100.0,1080470,1.0,22717.0,2112.0 +1070348,1070348,1070349,2,65.0,1.0,3.0,0.0,1,88100.0,1080470,1.0,22690.0,2110.0 +1070349,1070349,1070350,2,65.0,1.0,3.0,0.0,1,88100.0,1080470,1.0,22683.0,2108.0 +1070350,1070350,1070351,2,65.0,1.0,3.0,0.0,1,88100.0,1080470,1.0,22715.0,2112.0 +1070351,1070351,1070352,2,65.0,1.0,3.0,0.0,1,88100.0,1080470,1.0,22714.0,2112.0 +1070352,1070352,1070353,2,65.0,1.0,3.0,0.0,1,88100.0,1080470,1.0,22704.0,2110.0 +1070353,1070353,1070354,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22704.0,2110.0 +1070354,1070354,1070355,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22718.0,2112.0 +1070355,1070355,1070356,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22690.0,2110.0 +1070356,1070356,1070357,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22718.0,2112.0 +1070357,1070357,1070358,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22714.0,2112.0 +1070358,1070358,1070359,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22717.0,2112.0 +1070359,1070359,1070360,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22699.0,2110.0 +1070360,1070360,1070361,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22716.0,2112.0 +1070361,1070361,1070362,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22719.0,2112.0 +1070362,1070362,1070363,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22719.0,2112.0 +1070363,1070363,1070364,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22690.0,2110.0 +1070364,1070364,1070365,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22715.0,2112.0 +1070365,1070365,1070366,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22717.0,2112.0 +1070366,1070366,1070367,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22718.0,2112.0 +1070367,1070367,1070368,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22716.0,2112.0 +1070368,1070368,1070369,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22718.0,2112.0 +1070369,1070369,1070370,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22715.0,2112.0 +1070370,1070370,1070371,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22715.0,2112.0 +1070371,1070371,1070372,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22704.0,2110.0 +1070372,1070372,1070373,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22715.0,2112.0 +1070373,1070373,1070374,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22690.0,2110.0 +1070374,1070374,1070375,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22690.0,2110.0 +1070375,1070375,1070376,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22704.0,2110.0 +1070376,1070376,1070377,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22719.0,2112.0 +1070377,1070377,1070378,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22716.0,2112.0 +1070378,1070378,1070379,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22682.0,2108.0 +1070379,1070379,1070380,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22714.0,2112.0 +1070380,1070380,1070381,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22715.0,2112.0 +1070381,1070381,1070382,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22715.0,2112.0 +1070382,1070382,1070383,2,89.0,1.0,2.0,0.0,1,56100.0,1031452,2.0,22690.0,2110.0 +1070383,1070383,1070384,2,77.0,1.0,2.0,0.0,1,44000.0,1073449,2.0,22715.0,2112.0 +1070384,1070384,1070385,2,77.0,1.0,2.0,0.0,1,44000.0,1073449,2.0,22715.0,2112.0 +1070385,1070385,1070386,2,65.0,1.0,1.0,0.0,1,53900.0,1073449,3.0,22699.0,2110.0 +1070386,1070386,1070387,2,65.0,1.0,1.0,0.0,1,53900.0,1073449,3.0,22699.0,2110.0 +1070387,1070387,1070388,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22718.0,2112.0 +1070388,1070388,1070389,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22699.0,2110.0 +1070389,1070389,1070390,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22719.0,2112.0 +1070390,1070390,1070391,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22715.0,2112.0 +1070391,1070391,1070392,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22717.0,2112.0 +1070392,1070392,1070393,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22704.0,2110.0 +1070393,1070393,1070394,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22699.0,2110.0 +1070394,1070394,1070395,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22704.0,2110.0 +1070395,1070395,1070396,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22717.0,2112.0 +1070396,1070396,1070397,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22690.0,2110.0 +1070397,1070397,1070398,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22714.0,2112.0 +1070398,1070398,1070399,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22715.0,2112.0 +1070399,1070399,1070400,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22716.0,2112.0 +1070400,1070400,1070401,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22718.0,2112.0 +1070401,1070401,1070402,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22704.0,2110.0 +1070402,1070402,1070403,4,68.0,1.0,3.0,0.0,1,83650.0,1031452,1.0,22704.0,2110.0 +1070403,1070403,1070404,4,68.0,1.0,3.0,1.0,1,83650.0,1031452,1.0,22690.0,2110.0 +1070404,1070404,1070405,4,68.0,1.0,3.0,1.0,1,83650.0,1031452,1.0,22704.0,2110.0 +1070405,1070405,1070406,4,68.0,1.0,3.0,1.0,1,83650.0,1031452,1.0,22704.0,2110.0 +1070406,1070406,1070407,4,68.0,1.0,3.0,1.0,1,83650.0,1031452,1.0,22715.0,2112.0 +1070407,1070407,1070408,4,68.0,1.0,3.0,1.0,1,83650.0,1031452,1.0,22715.0,2112.0 +1070408,1070408,1070409,4,76.0,1.0,3.0,1.0,1,96100.0,1054606,3.0,22719.0,2112.0 +1070409,1070409,1070410,4,76.0,1.0,3.0,1.0,1,96100.0,1054606,3.0,22715.0,2112.0 +1070410,1070410,1070411,3,56.0,3.0,4.0,1.0,1,183600.0,1031452,1.0,22690.0,2110.0 +1070411,1070411,1070412,1,53.0,4.0,3.0,0.0,1,39800.0,1031452,4.0,22704.0,2110.0 +1070412,1070412,1070413,4,46.0,4.0,1.0,0.0,1,57900.0,1010145,5.0,22717.0,2112.0 +1070413,1070413,1070414,2,60.0,4.0,1.0,0.0,1,53000.0,1010145,1.0,22717.0,2112.0 +1070414,1070414,1070415,2,60.0,4.0,1.0,0.0,1,53000.0,1010145,1.0,22690.0,2110.0 +1070415,1070415,1070416,2,60.0,4.0,1.0,0.0,1,53000.0,1010145,1.0,22714.0,2112.0 +1070416,1070416,1070417,2,60.0,4.0,1.0,0.0,1,53000.0,1010145,1.0,22714.0,2112.0 +1070417,1070417,1070418,1,54.0,4.0,1.0,0.0,1,5080.0,1080470,6.0,22690.0,2110.0 +1070418,1070418,1070419,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22690.0,2110.0 +1070419,1070419,1070420,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22715.0,2112.0 +1070420,1070420,1070421,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22682.0,2108.0 +1070421,1070421,1070422,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22704.0,2110.0 +1070422,1070422,1070423,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22714.0,2112.0 +1070423,1070423,1070424,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22714.0,2112.0 +1070424,1070424,1070425,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22714.0,2112.0 +1070425,1070425,1070426,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22716.0,2112.0 +1070426,1070426,1070427,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22716.0,2112.0 +1070427,1070427,1070428,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22704.0,2110.0 +1070428,1070428,1070429,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22715.0,2112.0 +1070429,1070429,1070430,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22714.0,2112.0 +1070430,1070430,1070431,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22699.0,2110.0 +1070431,1070431,1070432,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22690.0,2110.0 +1070432,1070432,1070433,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22717.0,2112.0 +1070433,1070433,1070434,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22718.0,2112.0 +1070434,1070434,1070435,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22682.0,2108.0 +1070435,1070435,1070436,3,48.0,1.0,6.0,0.0,1,1010000.0,1010145,1.0,22718.0,2112.0 +1070436,1070436,1070437,2,64.0,1.0,2.0,0.0,1,147000.0,1080470,1.0,22699.0,2110.0 +1070437,1070437,1070438,2,64.0,1.0,4.0,0.0,1,447500.0,1080470,7.0,22717.0,2112.0 +1070438,1070438,1070439,2,55.0,1.0,3.0,0.0,1,117000.0,1054606,7.0,22683.0,2108.0 +1070439,1070439,1070440,2,64.0,1.0,2.0,0.0,1,449000.0,1054606,1.0,22716.0,2112.0 +1070440,1070440,1070441,2,54.0,1.0,5.0,0.0,1,270000.0,1073449,1.0,22683.0,2108.0 +1070441,1070441,1070442,2,52.0,1.0,2.0,0.0,1,103700.0,1031452,1.0,22699.0,2110.0 +1070442,1070442,1070443,2,52.0,1.0,2.0,0.0,1,103700.0,1031452,1.0,22717.0,2112.0 +1070443,1070443,1070444,2,64.0,1.0,4.0,0.0,1,169800.0,1080470,1.0,22717.0,2112.0 +1070444,1070444,1070445,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22718.0,2112.0 +1070445,1070445,1070446,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22690.0,2110.0 +1070446,1070446,1070447,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22699.0,2110.0 +1070447,1070447,1070448,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22715.0,2112.0 +1070448,1070448,1070449,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22715.0,2112.0 +1070449,1070449,1070450,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22714.0,2112.0 +1070450,1070450,1070451,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22683.0,2108.0 +1070451,1070451,1070452,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22716.0,2112.0 +1070452,1070452,1070453,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22682.0,2108.0 +1070453,1070453,1070454,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22716.0,2112.0 +1070454,1070454,1070455,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22699.0,2110.0 +1070455,1070455,1070456,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22718.0,2112.0 +1070456,1070456,1070457,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22699.0,2110.0 +1070457,1070457,1070458,1,52.0,1.0,2.0,0.0,1,110100.0,1054606,4.0,22704.0,2110.0 +1070458,1070458,1070459,1,52.0,1.0,2.0,0.0,1,110100.0,1054606,4.0,22704.0,2110.0 +1070459,1070459,1070460,1,62.0,1.0,2.0,0.0,1,437100.0,1073449,4.0,22714.0,2112.0 +1070460,1070460,1070461,1,62.0,1.0,2.0,0.0,1,437100.0,1073449,4.0,22716.0,2112.0 +1070461,1070461,1070462,1,62.0,1.0,2.0,0.0,1,437100.0,1073449,4.0,22704.0,2110.0 +1070462,1070462,1070463,1,63.0,1.0,2.0,0.0,1,122060.0,1031452,4.0,22715.0,2112.0 +1070463,1070463,1070464,1,62.0,1.0,2.0,0.0,1,437100.0,1073449,4.0,22715.0,2112.0 +1070464,1070464,1070465,1,62.0,1.0,2.0,0.0,1,437100.0,1073449,4.0,22715.0,2112.0 +1070465,1070465,1070466,1,60.0,1.0,5.0,0.0,1,290000.0,1031452,4.0,22683.0,2108.0 +1070466,1070466,1070467,1,51.0,1.0,2.0,0.0,1,432000.0,1031452,4.0,22682.0,2108.0 +1070467,1070467,1070468,1,51.0,1.0,2.0,0.0,1,432000.0,1031452,4.0,22719.0,2112.0 +1070468,1070468,1070469,1,51.0,1.0,2.0,0.0,1,432000.0,1031452,4.0,22715.0,2112.0 +1070469,1070469,1070470,1,51.0,1.0,2.0,0.0,1,432000.0,1031452,4.0,22715.0,2112.0 +1070470,1070470,1070471,1,51.0,1.0,2.0,0.0,1,432000.0,1031452,4.0,22704.0,2110.0 +1070471,1070471,1070472,1,51.0,1.0,2.0,0.0,1,432000.0,1031452,4.0,22716.0,2112.0 +1070472,1070472,1070473,1,60.0,1.0,1.0,0.0,1,138600.0,1031452,6.0,22715.0,2112.0 +1070473,1070473,1070474,1,55.0,1.0,1.0,0.0,1,149000.0,1054606,6.0,22690.0,2110.0 +1070474,1070474,1070475,1,55.0,1.0,1.0,0.0,1,149000.0,1054606,6.0,22718.0,2112.0 +1070475,1070475,1070476,1,55.0,1.0,1.0,0.0,1,149000.0,1054606,6.0,22715.0,2112.0 +1070476,1070476,1070477,1,60.0,1.0,1.0,0.0,1,285000.0,1073449,6.0,22715.0,2112.0 +1070477,1070477,1070478,1,48.0,1.0,1.0,0.0,1,118000.0,1010145,6.0,22690.0,2110.0 +1070478,1070478,1070479,1,48.0,1.0,1.0,0.0,1,118000.0,1010145,6.0,22718.0,2112.0 +1070479,1070479,1070480,1,64.0,1.0,1.0,0.0,1,108200.0,1054606,6.0,22699.0,2110.0 +1070480,1070480,1070481,1,64.0,1.0,1.0,0.0,1,108200.0,1054606,6.0,22704.0,2110.0 +1070481,1070481,1070482,3,64.0,1.0,2.0,0.0,1,77300.0,1031452,3.0,22719.0,2112.0 +1070482,1070482,1070483,2,62.0,1.0,2.0,0.0,1,85600.0,1010145,1.0,22716.0,2112.0 +1070483,1070483,1070484,1,52.0,1.0,2.0,0.0,1,76000.0,1010145,6.0,22690.0,2110.0 +1070484,1070484,1070485,1,53.0,1.0,2.0,0.0,1,70000.0,1010145,4.0,22717.0,2112.0 +1070485,1070485,1070486,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22704.0,2110.0 +1070486,1070486,1070487,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22690.0,2110.0 +1070487,1070487,1070488,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22718.0,2112.0 +1070488,1070488,1070489,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22719.0,2112.0 +1070489,1070489,1070490,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22714.0,2112.0 +1070490,1070490,1070491,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22704.0,2110.0 +1070491,1070491,1070492,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22716.0,2112.0 +1070492,1070492,1070493,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22682.0,2108.0 +1070493,1070493,1070494,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22716.0,2112.0 +1070494,1070494,1070495,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22704.0,2110.0 +1070495,1070495,1070496,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22704.0,2110.0 +1070496,1070496,1070497,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22718.0,2112.0 +1070497,1070497,1070498,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22682.0,2108.0 +1070498,1070498,1070499,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22704.0,2110.0 +1070499,1070499,1070500,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22704.0,2110.0 +1070500,1070500,1070501,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22718.0,2112.0 +1070501,1070501,1070502,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22718.0,2112.0 +1070502,1070502,1070503,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22715.0,2112.0 +1070503,1070503,1070504,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22716.0,2112.0 +1070504,1070504,1070505,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22715.0,2112.0 +1070505,1070505,1070506,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22717.0,2112.0 +1070506,1070506,1070507,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22715.0,2112.0 +1070507,1070507,1070508,1,61.0,1.0,1.0,0.0,1,77000.0,1010145,6.0,22699.0,2110.0 +1070508,1070508,1070509,1,60.0,1.0,1.0,0.0,1,91000.0,1073449,6.0,22715.0,2112.0 +1070509,1070509,1070510,1,52.0,1.0,1.0,0.0,1,69000.0,1010145,6.0,22699.0,2110.0 +1070510,1070510,1070511,1,53.0,1.0,1.0,0.0,1,85000.0,1010145,6.0,22719.0,2112.0 +1070511,1070511,1070512,1,53.0,1.0,1.0,0.0,1,85000.0,1010145,6.0,22718.0,2112.0 +1070512,1070512,1070513,1,63.0,1.0,1.0,0.0,1,70000.0,1080470,6.0,22718.0,2112.0 +1070513,1070513,1070514,1,53.0,1.0,1.0,0.0,1,85000.0,1010145,6.0,22704.0,2110.0 +1070514,1070514,1070515,1,53.0,1.0,1.0,0.0,1,85000.0,1010145,6.0,22704.0,2110.0 +1070515,1070515,1070516,1,55.0,1.0,1.0,0.0,1,69000.0,1031452,6.0,22716.0,2112.0 +1070516,1070516,1070517,1,55.0,1.0,1.0,0.0,1,69000.0,1031452,6.0,22699.0,2110.0 +1070517,1070517,1070518,1,45.0,1.0,1.0,0.0,1,95000.0,1080470,6.0,22716.0,2112.0 +1070518,1070518,1070519,1,45.0,1.0,1.0,0.0,1,95000.0,1080470,6.0,22704.0,2110.0 +1070519,1070519,1070520,1,56.0,1.0,1.0,0.0,1,61400.0,1080470,6.0,22682.0,2108.0 +1070520,1070520,1070521,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22704.0,2110.0 +1070521,1070521,1070522,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22719.0,2112.0 +1070522,1070522,1070523,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22716.0,2112.0 +1070523,1070523,1070524,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22714.0,2112.0 +1070524,1070524,1070525,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22690.0,2110.0 +1070525,1070525,1070526,1,55.0,1.0,1.0,0.0,1,77000.0,1073449,4.0,22715.0,2112.0 +1070526,1070526,1070527,1,55.0,1.0,1.0,0.0,1,77000.0,1073449,4.0,22719.0,2112.0 +1070527,1070527,1070528,1,54.0,1.0,1.0,0.0,1,72040.0,1054606,4.0,22690.0,2110.0 +1070528,1070528,1070529,1,54.0,1.0,1.0,0.0,1,72040.0,1054606,4.0,22714.0,2112.0 +1070529,1070529,1070530,1,54.0,1.0,1.0,0.0,1,72040.0,1054606,4.0,22715.0,2112.0 +1070530,1070530,1070531,1,57.0,1.0,1.0,0.0,1,77000.0,1073449,4.0,22716.0,2112.0 +1070531,1070531,1070532,1,57.0,1.0,1.0,0.0,1,77000.0,1073449,4.0,22715.0,2112.0 +1070532,1070532,1070533,1,57.0,1.0,1.0,0.0,1,77000.0,1073449,4.0,22704.0,2110.0 +1070533,1070533,1070534,1,45.0,1.0,1.0,0.0,1,100000.0,1080470,4.0,22704.0,2110.0 +1070534,1070534,1070535,1,45.0,1.0,1.0,0.0,1,100000.0,1080470,4.0,22704.0,2110.0 +1070535,1070535,1070536,1,64.0,1.0,2.0,0.0,1,54500.0,1054606,6.0,22715.0,2112.0 +1070536,1070536,1070537,2,61.0,1.0,1.0,0.0,1,34000.0,1080470,1.0,22704.0,2110.0 +1070537,1070537,1070538,1,45.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22704.0,2110.0 +1070538,1070538,1070539,5,56.0,1.0,2.0,0.0,1,178660.0,1073449,1.0,22699.0,2110.0 +1070539,1070539,1070540,2,52.0,1.0,2.0,2.0,1,118100.0,1010145,7.0,22714.0,2112.0 +1070540,1070540,1070541,12,54.0,1.0,2.0,1.0,1,97200.0,1010145,1.0,22690.0,2110.0 +1070541,1070541,1070542,5,64.0,1.0,2.0,8.0,1,91500.0,1073449,1.0,22690.0,2110.0 +1070542,1070542,1070543,5,64.0,1.0,2.0,2.0,1,91500.0,1073449,1.0,22690.0,2110.0 +1070543,1070543,1070544,5,64.0,1.0,2.0,2.0,1,91500.0,1073449,1.0,22715.0,2112.0 +1070544,1070544,1070545,1,40.0,4.0,1.0,2.0,1,68000.0,1080470,4.0,22718.0,2112.0 +1070545,1070545,1070546,1,40.0,4.0,1.0,0.0,1,68000.0,1080470,4.0,22718.0,2112.0 +1070546,1070546,1070547,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22715.0,2112.0 +1070547,1070547,1070548,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22690.0,2110.0 +1070548,1070548,1070549,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22716.0,2112.0 +1070549,1070549,1070550,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22714.0,2112.0 +1070550,1070550,1070551,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22718.0,2112.0 +1070551,1070551,1070552,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22714.0,2112.0 +1070552,1070552,1070553,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22717.0,2112.0 +1070553,1070553,1070554,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22704.0,2110.0 +1070554,1070554,1070555,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22682.0,2108.0 +1070555,1070555,1070556,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22717.0,2112.0 +1070556,1070556,1070557,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22719.0,2112.0 +1070557,1070557,1070558,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22719.0,2112.0 +1070558,1070558,1070559,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22715.0,2112.0 +1070559,1070559,1070560,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22714.0,2112.0 +1070560,1070560,1070561,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22683.0,2108.0 +1070561,1070561,1070562,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22716.0,2112.0 +1070562,1070562,1070563,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22719.0,2112.0 +1070563,1070563,1070564,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22716.0,2112.0 +1070564,1070564,1070565,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22717.0,2112.0 +1070565,1070565,1070566,2,37.0,4.0,2.0,0.0,1,60000.0,1031452,5.0,22714.0,2112.0 +1070566,1070566,1070567,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22718.0,2112.0 +1070567,1070567,1070568,3,35.0,4.0,2.0,0.0,1,90000.0,1080470,1.0,22682.0,2108.0 +1070568,1070568,1070569,3,26.0,4.0,1.0,1.0,1,0.0,1054606,1.0,22718.0,2112.0 +1070569,1070569,1070570,3,26.0,4.0,1.0,1.0,1,0.0,1054606,1.0,22718.0,2112.0 +1070570,1070570,1070571,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22682.0,2108.0 +1070571,1070571,1070572,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22683.0,2108.0 +1070572,1070572,1070573,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22699.0,2110.0 +1070573,1070573,1070574,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22683.0,2108.0 +1070574,1070574,1070575,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22714.0,2112.0 +1070575,1070575,1070576,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22716.0,2112.0 +1070576,1070576,1070577,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22715.0,2112.0 +1070577,1070577,1070578,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22682.0,2108.0 +1070578,1070578,1070579,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22714.0,2112.0 +1070579,1070579,1070580,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22717.0,2112.0 +1070580,1070580,1070581,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22714.0,2112.0 +1070581,1070581,1070582,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22719.0,2112.0 +1070582,1070582,1070583,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22714.0,2112.0 +1070583,1070583,1070584,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22690.0,2110.0 +1070584,1070584,1070585,9,38.0,2.0,2.0,1.0,1,18500.0,1031452,3.0,22714.0,2112.0 +1070585,1070585,1070586,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22690.0,2110.0 +1070586,1070586,1070587,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22704.0,2110.0 +1070587,1070587,1070588,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22704.0,2110.0 +1070588,1070588,1070589,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22704.0,2110.0 +1070589,1070589,1070590,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22690.0,2110.0 +1070590,1070590,1070591,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22690.0,2110.0 +1070591,1070591,1070592,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22717.0,2112.0 +1070592,1070592,1070593,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22682.0,2108.0 +1070593,1070593,1070594,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22715.0,2112.0 +1070594,1070594,1070595,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22715.0,2112.0 +1070595,1070595,1070596,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22719.0,2112.0 +1070596,1070596,1070597,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22714.0,2112.0 +1070597,1070597,1070598,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22719.0,2112.0 +1070598,1070598,1070599,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22714.0,2112.0 +1070599,1070599,1070600,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22716.0,2112.0 +1070600,1070600,1070601,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22716.0,2112.0 +1070601,1070601,1070602,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22690.0,2110.0 +1070602,1070602,1070603,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22714.0,2112.0 +1070603,1070603,1070604,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22704.0,2110.0 +1070604,1070604,1070605,9,38.0,2.0,2.0,7.0,1,18500.0,1031452,3.0,22717.0,2112.0 +1070605,1070605,1070606,2,32.0,1.0,2.0,7.0,1,142000.0,1010145,7.0,22699.0,2110.0 +1070606,1070606,1070607,2,32.0,1.0,2.0,0.0,1,142000.0,1010145,7.0,22716.0,2112.0 +1070607,1070607,1070608,2,34.0,1.0,2.0,0.0,1,582000.0,1073449,1.0,22682.0,2108.0 +1070608,1070608,1070609,2,38.0,1.0,2.0,0.0,1,204450.0,1031452,1.0,22682.0,2108.0 +1070609,1070609,1070610,2,37.0,1.0,2.0,0.0,1,136000.0,1031452,1.0,22717.0,2112.0 +1070610,1070610,1070611,2,32.0,1.0,2.0,0.0,1,101000.0,1054606,2.0,22704.0,2110.0 +1070611,1070611,1070612,2,32.0,1.0,2.0,0.0,1,101000.0,1054606,2.0,22714.0,2112.0 +1070612,1070612,1070613,2,39.0,1.0,2.0,0.0,1,75000.0,1054606,1.0,22716.0,2112.0 +1070613,1070613,1070614,1,43.0,1.0,2.0,0.0,1,64070.0,1054606,6.0,22717.0,2112.0 +1070614,1070614,1070615,1,35.0,1.0,1.0,0.0,1,68000.0,1031452,6.0,22690.0,2110.0 +1070615,1070615,1070616,1,31.0,1.0,1.0,0.0,1,72000.0,1031452,6.0,22699.0,2110.0 +1070616,1070616,1070617,1,33.0,1.0,1.0,0.0,1,91000.0,1073449,4.0,22690.0,2110.0 +1070617,1070617,1070618,1,33.0,1.0,1.0,0.0,1,91000.0,1073449,4.0,22699.0,2110.0 +1070618,1070618,1070619,1,35.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22699.0,2110.0 +1070619,1070619,1070620,1,35.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22717.0,2112.0 +1070620,1070620,1070621,1,39.0,1.0,1.0,0.0,1,93000.0,1080470,4.0,22715.0,2112.0 +1070621,1070621,1070622,1,35.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22715.0,2112.0 +1070622,1070622,1070623,1,33.0,1.0,1.0,0.0,1,90000.0,1010145,4.0,22716.0,2112.0 +1070623,1070623,1070624,1,33.0,1.0,1.0,0.0,1,90000.0,1010145,4.0,22699.0,2110.0 +1070624,1070624,1070625,2,36.0,1.0,2.0,0.0,1,47000.0,1054606,7.0,22682.0,2108.0 +1070625,1070625,1070626,2,36.0,1.0,2.0,0.0,1,47000.0,1054606,7.0,22719.0,2112.0 +1070626,1070626,1070627,2,44.0,1.0,2.0,0.0,1,36700.0,1080470,5.0,22690.0,2110.0 +1070627,1070627,1070628,5,33.0,1.0,3.0,0.0,1,130000.0,1073449,1.0,22714.0,2112.0 +1070628,1070628,1070629,5,33.0,1.0,3.0,1.0,1,130000.0,1073449,1.0,22715.0,2112.0 +1070629,1070629,1070630,5,33.0,1.0,3.0,1.0,1,130000.0,1073449,1.0,22715.0,2112.0 +1070630,1070630,1070631,5,33.0,1.0,3.0,1.0,1,130000.0,1073449,1.0,22704.0,2110.0 +1070631,1070631,1070632,5,33.0,1.0,3.0,1.0,1,130000.0,1073449,1.0,22704.0,2110.0 +1070632,1070632,1070633,5,33.0,1.0,3.0,1.0,1,130000.0,1073449,1.0,22714.0,2112.0 +1070633,1070633,1070634,5,33.0,1.0,3.0,1.0,1,130000.0,1073449,1.0,22715.0,2112.0 +1070634,1070634,1070635,5,33.0,1.0,3.0,1.0,1,130000.0,1073449,1.0,22714.0,2112.0 +1070635,1070635,1070636,5,36.0,1.0,2.0,1.0,1,182000.0,1054606,1.0,22714.0,2112.0 +1070636,1070636,1070637,5,36.0,1.0,2.0,3.0,1,182000.0,1054606,1.0,22704.0,2110.0 +1070637,1070637,1070638,4,42.0,1.0,2.0,3.0,1,190000.0,1010145,1.0,22704.0,2110.0 +1070638,1070638,1070639,4,37.0,1.0,3.0,2.0,1,124000.0,1054606,1.0,22716.0,2112.0 +1070639,1070639,1070640,4,37.0,1.0,3.0,2.0,1,124000.0,1054606,1.0,22715.0,2112.0 +1070640,1070640,1070641,4,37.0,1.0,3.0,2.0,1,124000.0,1054606,1.0,22715.0,2112.0 +1070641,1070641,1070642,4,42.0,1.0,3.0,2.0,1,473000.0,1010145,1.0,22704.0,2110.0 +1070642,1070642,1070643,4,42.0,1.0,3.0,2.0,1,473000.0,1010145,1.0,22714.0,2112.0 +1070643,1070643,1070644,4,43.0,1.0,3.0,2.0,1,271600.0,1073449,1.0,22716.0,2112.0 +1070644,1070644,1070645,3,28.0,1.0,2.0,2.0,1,169000.0,1080470,1.0,22715.0,2112.0 +1070645,1070645,1070646,3,37.0,1.0,3.0,1.0,1,150000.0,1031452,1.0,22716.0,2112.0 +1070646,1070646,1070647,3,33.0,1.0,2.0,1.0,1,271000.0,1010145,1.0,22718.0,2112.0 +1070647,1070647,1070648,3,44.0,1.0,2.0,1.0,1,116000.0,1031452,1.0,22714.0,2112.0 +1070648,1070648,1070649,3,33.0,1.0,2.0,1.0,1,271000.0,1010145,1.0,22704.0,2110.0 +1070649,1070649,1070650,3,44.0,1.0,2.0,1.0,1,301700.0,1031452,1.0,22715.0,2112.0 +1070650,1070650,1070651,3,41.0,1.0,2.0,1.0,1,253800.0,1054606,1.0,22714.0,2112.0 +1070651,1070651,1070652,3,33.0,1.0,0.0,1.0,1,112000.0,1080470,1.0,22716.0,2112.0 +1070652,1070652,1070653,3,33.0,1.0,0.0,1.0,1,112000.0,1080470,1.0,22717.0,2112.0 +1070653,1070653,1070654,5,38.0,1.0,3.0,1.0,1,68000.0,1054606,2.0,22715.0,2112.0 +1070654,1070654,1070655,4,42.0,1.0,2.0,3.0,1,80000.0,1031452,2.0,22699.0,2110.0 +1070655,1070655,1070656,4,42.0,1.0,2.0,2.0,1,80000.0,1031452,2.0,22714.0,2112.0 +1070656,1070656,1070657,4,42.0,1.0,2.0,2.0,1,80000.0,1031452,2.0,22717.0,2112.0 +1070657,1070657,1070658,9,43.0,1.0,1.0,2.0,1,67000.0,1010145,3.0,22715.0,2112.0 +1070658,1070658,1070659,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22690.0,2110.0 +1070659,1070659,1070660,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22704.0,2110.0 +1070660,1070660,1070661,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22716.0,2112.0 +1070661,1070661,1070662,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22716.0,2112.0 +1070662,1070662,1070663,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22717.0,2112.0 +1070663,1070663,1070664,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22717.0,2112.0 +1070664,1070664,1070665,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22714.0,2112.0 +1070665,1070665,1070666,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22714.0,2112.0 +1070666,1070666,1070667,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22690.0,2110.0 +1070667,1070667,1070668,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22704.0,2110.0 +1070668,1070668,1070669,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22704.0,2110.0 +1070669,1070669,1070670,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22699.0,2110.0 +1070670,1070670,1070671,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22717.0,2112.0 +1070671,1070671,1070672,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22716.0,2112.0 +1070672,1070672,1070673,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22717.0,2112.0 +1070673,1070673,1070674,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22716.0,2112.0 +1070674,1070674,1070675,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22715.0,2112.0 +1070675,1070675,1070676,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22714.0,2112.0 +1070676,1070676,1070677,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22714.0,2112.0 +1070677,1070677,1070678,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22690.0,2110.0 +1070678,1070678,1070679,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22714.0,2112.0 +1070679,1070679,1070680,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22718.0,2112.0 +1070680,1070680,1070681,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22714.0,2112.0 +1070681,1070681,1070682,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22719.0,2112.0 +1070682,1070682,1070683,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22718.0,2112.0 +1070683,1070683,1070684,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22683.0,2108.0 +1070684,1070684,1070685,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22715.0,2112.0 +1070685,1070685,1070686,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22716.0,2112.0 +1070686,1070686,1070687,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22719.0,2112.0 +1070687,1070687,1070688,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22699.0,2110.0 +1070688,1070688,1070689,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22719.0,2112.0 +1070689,1070689,1070690,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22704.0,2110.0 +1070690,1070690,1070691,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22704.0,2110.0 +1070691,1070691,1070692,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22699.0,2110.0 +1070692,1070692,1070693,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22682.0,2108.0 +1070693,1070693,1070694,9,43.0,1.0,1.0,7.0,1,67000.0,1010145,3.0,22714.0,2112.0 +1070694,1070694,1070695,2,36.0,1.0,1.0,7.0,1,38000.0,1031452,3.0,22715.0,2112.0 +1070695,1070695,1070696,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22714.0,2112.0 +1070696,1070696,1070697,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22718.0,2112.0 +1070697,1070697,1070698,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22718.0,2112.0 +1070698,1070698,1070699,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22719.0,2112.0 +1070699,1070699,1070700,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22716.0,2112.0 +1070700,1070700,1070701,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22715.0,2112.0 +1070701,1070701,1070702,2,35.0,1.0,1.0,1.0,1,23000.0,1010145,3.0,22717.0,2112.0 +1070702,1070702,1070703,1,65.0,4.0,1.0,1.0,1,30000.0,1031452,6.0,22696.0,2110.0 +1070703,1070703,1070704,2,74.0,4.0,2.0,0.0,1,264400.0,1080470,1.0,22696.0,2110.0 +1070704,1070704,1070705,2,74.0,4.0,2.0,0.0,1,264400.0,1080470,1.0,22696.0,2110.0 +1070705,1070705,1070706,2,68.0,4.0,2.0,0.0,1,153000.0,1073449,1.0,22696.0,2110.0 +1070706,1070706,1070707,2,68.0,4.0,2.0,0.0,1,153000.0,1073449,1.0,22696.0,2110.0 +1070707,1070707,1070708,2,67.0,4.0,1.0,0.0,1,182800.0,1031452,1.0,22696.0,2110.0 +1070708,1070708,1070709,2,67.0,4.0,1.0,0.0,1,182800.0,1031452,1.0,22696.0,2110.0 +1070709,1070709,1070710,2,67.0,4.0,1.0,0.0,1,182800.0,1031452,1.0,22701.0,2110.0 +1070710,1070710,1070711,2,67.0,4.0,1.0,0.0,1,182800.0,1031452,1.0,22696.0,2110.0 +1070711,1070711,1070712,2,67.0,4.0,1.0,0.0,1,182800.0,1031452,1.0,22696.0,2110.0 +1070712,1070712,1070713,1,94.0,4.0,0.0,0.0,1,26200.0,1031452,4.0,22696.0,2110.0 +1070713,1070713,1070714,1,94.0,4.0,0.0,0.0,1,26200.0,1031452,4.0,22696.0,2110.0 +1070714,1070714,1070715,1,94.0,4.0,0.0,0.0,1,26200.0,1031452,4.0,22696.0,2110.0 +1070715,1070715,1070716,1,94.0,4.0,0.0,0.0,1,26200.0,1031452,4.0,22696.0,2110.0 +1070716,1070716,1070717,1,94.0,4.0,0.0,0.0,1,26200.0,1031452,4.0,22701.0,2110.0 +1070717,1070717,1070718,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070718,1070718,1070719,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070719,1070719,1070720,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22695.0,2110.0 +1070720,1070720,1070721,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070721,1070721,1070722,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070722,1070722,1070723,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070723,1070723,1070724,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22695.0,2110.0 +1070724,1070724,1070725,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070725,1070725,1070726,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22701.0,2110.0 +1070726,1070726,1070727,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070727,1070727,1070728,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070728,1070728,1070729,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070729,1070729,1070730,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070730,1070730,1070731,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070731,1070731,1070732,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070732,1070732,1070733,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22695.0,2110.0 +1070733,1070733,1070734,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070734,1070734,1070735,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070735,1070735,1070736,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22701.0,2110.0 +1070736,1070736,1070737,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22695.0,2110.0 +1070737,1070737,1070738,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070738,1070738,1070739,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22695.0,2110.0 +1070739,1070739,1070740,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22695.0,2110.0 +1070740,1070740,1070741,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070741,1070741,1070742,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070742,1070742,1070743,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070743,1070743,1070744,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070744,1070744,1070745,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070745,1070745,1070746,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070746,1070746,1070747,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070747,1070747,1070748,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22701.0,2110.0 +1070748,1070748,1070749,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070749,1070749,1070750,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070750,1070750,1070751,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070751,1070751,1070752,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070752,1070752,1070753,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070753,1070753,1070754,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070754,1070754,1070755,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22701.0,2110.0 +1070755,1070755,1070756,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070756,1070756,1070757,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22695.0,2110.0 +1070757,1070757,1070758,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070758,1070758,1070759,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070759,1070759,1070760,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070760,1070760,1070761,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070761,1070761,1070762,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070762,1070762,1070763,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22701.0,2110.0 +1070763,1070763,1070764,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070764,1070764,1070765,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070765,1070765,1070766,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070766,1070766,1070767,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070767,1070767,1070768,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22695.0,2110.0 +1070768,1070768,1070769,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070769,1070769,1070770,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070770,1070770,1070771,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070771,1070771,1070772,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22695.0,2110.0 +1070772,1070772,1070773,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070773,1070773,1070774,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22696.0,2110.0 +1070774,1070774,1070775,2,65.0,2.0,2.0,0.0,1,394000.0,1080470,1.0,22696.0,2110.0 +1070775,1070775,1070776,2,65.0,2.0,2.0,0.0,1,394000.0,1080470,1.0,22695.0,2110.0 +1070776,1070776,1070777,2,65.0,2.0,2.0,0.0,1,394000.0,1080470,1.0,22696.0,2110.0 +1070777,1070777,1070778,2,76.0,2.0,2.0,0.0,1,76700.0,1010145,3.0,22696.0,2110.0 +1070778,1070778,1070779,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22695.0,2110.0 +1070779,1070779,1070780,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22696.0,2110.0 +1070780,1070780,1070781,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22696.0,2110.0 +1070781,1070781,1070782,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22701.0,2110.0 +1070782,1070782,1070783,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22696.0,2110.0 +1070783,1070783,1070784,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22696.0,2110.0 +1070784,1070784,1070785,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22696.0,2110.0 +1070785,1070785,1070786,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22696.0,2110.0 +1070786,1070786,1070787,2,65.0,2.0,3.0,0.0,1,84850.0,1073449,1.0,22701.0,2110.0 +1070787,1070787,1070788,4,78.0,2.0,3.0,0.0,1,54100.0,1073449,3.0,22695.0,2110.0 +1070788,1070788,1070789,4,78.0,2.0,3.0,0.0,1,54100.0,1073449,3.0,22696.0,2110.0 +1070789,1070789,1070790,4,78.0,2.0,3.0,0.0,1,54100.0,1073449,3.0,22696.0,2110.0 +1070790,1070790,1070791,2,86.0,2.0,2.0,0.0,1,53600.0,1080470,3.0,22696.0,2110.0 +1070791,1070791,1070792,2,85.0,2.0,2.0,0.0,1,23400.0,1031452,3.0,22696.0,2110.0 +1070792,1070792,1070793,1,73.0,2.0,0.0,0.0,1,8700.0,1073449,6.0,22696.0,2110.0 +1070793,1070793,1070794,4,80.0,2.0,2.0,0.0,1,66000.0,1010145,2.0,22696.0,2110.0 +1070794,1070794,1070795,4,76.0,3.0,3.0,1.0,1,66700.0,1010145,1.0,22696.0,2110.0 +1070795,1070795,1070796,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22696.0,2110.0 +1070796,1070796,1070797,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22696.0,2110.0 +1070797,1070797,1070798,2,65.0,1.0,2.0,0.0,1,112400.0,1031452,1.0,22695.0,2110.0 +1070798,1070798,1070799,2,65.0,1.0,2.0,0.0,1,112400.0,1031452,1.0,22696.0,2110.0 +1070799,1070799,1070800,2,65.0,1.0,2.0,0.0,1,132400.0,1080470,1.0,22696.0,2110.0 +1070800,1070800,1070801,1,74.0,1.0,1.0,0.0,1,60990.0,1054606,6.0,22696.0,2110.0 +1070801,1070801,1070802,1,69.0,1.0,1.0,0.0,1,68000.0,1073449,4.0,22696.0,2110.0 +1070802,1070802,1070803,1,67.0,1.0,3.0,0.0,1,34900.0,1054606,4.0,22696.0,2110.0 +1070803,1070803,1070804,2,81.0,1.0,1.0,0.0,1,45100.0,1080470,3.0,22696.0,2110.0 +1070804,1070804,1070805,2,84.0,1.0,1.0,0.0,1,55200.0,1080470,3.0,22696.0,2110.0 +1070805,1070805,1070806,2,66.0,1.0,1.0,0.0,1,30500.0,1031452,7.0,22696.0,2110.0 +1070806,1070806,1070807,2,66.0,1.0,1.0,0.0,1,30500.0,1031452,7.0,22696.0,2110.0 +1070807,1070807,1070808,2,66.0,1.0,1.0,0.0,1,30500.0,1031452,7.0,22696.0,2110.0 +1070808,1070808,1070809,2,70.0,1.0,1.0,0.0,1,43300.0,1073449,5.0,22696.0,2110.0 +1070809,1070809,1070810,2,70.0,1.0,1.0,0.0,1,43300.0,1073449,5.0,22696.0,2110.0 +1070810,1070810,1070811,1,83.0,1.0,1.0,0.0,1,56800.0,1010145,6.0,22696.0,2110.0 +1070811,1070811,1070812,1,83.0,1.0,1.0,0.0,1,31000.0,1080470,6.0,22696.0,2110.0 +1070812,1070812,1070813,1,76.0,1.0,1.0,0.0,1,43000.0,1073449,4.0,22696.0,2110.0 +1070813,1070813,1070814,1,70.0,1.0,1.0,0.0,1,30050.0,1010145,4.0,22696.0,2110.0 +1070814,1070814,1070815,2,73.0,1.0,2.0,0.0,1,20310.0,1073449,3.0,22695.0,2110.0 +1070815,1070815,1070816,2,73.0,1.0,2.0,0.0,1,20310.0,1073449,3.0,22696.0,2110.0 +1070816,1070816,1070817,1,65.0,1.0,2.0,0.0,1,18310.0,1073449,6.0,22695.0,2110.0 +1070817,1070817,1070818,1,65.0,1.0,2.0,0.0,1,18310.0,1073449,6.0,22696.0,2110.0 +1070818,1070818,1070819,1,72.0,1.0,2.0,0.0,1,3100.0,1073449,4.0,22696.0,2110.0 +1070819,1070819,1070820,1,80.0,1.0,1.0,0.0,1,29400.0,1080470,6.0,22696.0,2110.0 +1070820,1070820,1070821,2,83.0,1.0,1.0,0.0,1,4100.0,1010145,3.0,22701.0,2110.0 +1070821,1070821,1070822,2,83.0,1.0,1.0,0.0,1,4100.0,1010145,3.0,22696.0,2110.0 +1070822,1070822,1070823,1,80.0,1.0,1.0,0.0,1,22500.0,1031452,6.0,22696.0,2110.0 +1070823,1070823,1070824,1,65.0,1.0,1.0,0.0,1,9000.0,1054606,4.0,22696.0,2110.0 +1070824,1070824,1070825,1,94.0,1.0,1.0,0.0,1,26100.0,1031452,6.0,22701.0,2110.0 +1070825,1070825,1070826,1,71.0,1.0,1.0,0.0,1,3500.0,1031452,6.0,22695.0,2110.0 +1070826,1070826,1070827,1,94.0,1.0,1.0,0.0,1,22000.0,1031452,6.0,22696.0,2110.0 +1070827,1070827,1070828,1,77.0,1.0,1.0,0.0,1,10000.0,1054606,6.0,22696.0,2110.0 +1070828,1070828,1070829,1,77.0,1.0,1.0,0.0,1,10000.0,1054606,6.0,22696.0,2110.0 +1070829,1070829,1070830,1,89.0,1.0,1.0,0.0,1,17400.0,1080470,6.0,22695.0,2110.0 +1070830,1070830,1070831,1,88.0,1.0,1.0,0.0,1,24500.0,1073449,6.0,22696.0,2110.0 +1070831,1070831,1070832,1,80.0,1.0,1.0,0.0,1,11060.0,1010145,6.0,22701.0,2110.0 +1070832,1070832,1070833,1,87.0,1.0,1.0,0.0,1,27620.0,1031452,6.0,22696.0,2110.0 +1070833,1070833,1070834,1,87.0,1.0,1.0,0.0,1,27620.0,1031452,6.0,22696.0,2110.0 +1070834,1070834,1070835,1,74.0,1.0,1.0,0.0,1,21260.0,1080470,6.0,22696.0,2110.0 +1070835,1070835,1070836,1,85.0,1.0,1.0,0.0,1,21800.0,1073449,6.0,22696.0,2110.0 +1070836,1070836,1070837,1,68.0,1.0,1.0,0.0,1,10300.0,1054606,6.0,22696.0,2110.0 +1070837,1070837,1070838,1,66.0,1.0,1.0,0.0,1,1600.0,1054606,6.0,22696.0,2110.0 +1070838,1070838,1070839,1,69.0,1.0,1.0,0.0,1,29500.0,1054606,4.0,22696.0,2110.0 +1070839,1070839,1070840,1,67.0,1.0,1.0,0.0,1,20900.0,1031452,4.0,22696.0,2110.0 +1070840,1070840,1070841,1,66.0,1.0,1.0,0.0,1,24800.0,1010145,4.0,22696.0,2110.0 +1070841,1070841,1070842,1,74.0,1.0,1.0,0.0,1,11400.0,1054606,4.0,22695.0,2110.0 +1070842,1070842,1070843,1,85.0,1.0,1.0,0.0,1,24500.0,1054606,4.0,22696.0,2110.0 +1070843,1070843,1070844,1,66.0,1.0,1.0,0.0,1,24800.0,1010145,4.0,22696.0,2110.0 +1070844,1070844,1070845,1,74.0,1.0,1.0,0.0,1,11400.0,1054606,4.0,22696.0,2110.0 +1070845,1070845,1070846,1,75.0,1.0,1.0,0.0,1,18800.0,1031452,4.0,22696.0,2110.0 +1070846,1070846,1070847,1,74.0,1.0,1.0,0.0,1,11400.0,1054606,4.0,22696.0,2110.0 +1070847,1070847,1070848,1,77.0,1.0,1.0,0.0,1,4850.0,1073449,4.0,22696.0,2110.0 +1070848,1070848,1070849,1,75.0,1.0,1.0,0.0,1,18800.0,1031452,4.0,22696.0,2110.0 +1070849,1070849,1070850,1,74.0,1.0,1.0,0.0,1,11400.0,1054606,4.0,22696.0,2110.0 +1070850,1070850,1070851,1,67.0,1.0,1.0,0.0,1,20900.0,1031452,4.0,22696.0,2110.0 +1070851,1070851,1070852,2,73.0,1.0,0.0,0.0,1,13600.0,1031452,1.0,22701.0,2110.0 +1070852,1070852,1070853,1,66.0,1.0,0.0,0.0,1,26600.0,1073449,6.0,22695.0,2110.0 +1070853,1070853,1070854,1,70.0,1.0,0.0,0.0,1,22400.0,1054606,4.0,22696.0,2110.0 +1070854,1070854,1070855,1,94.0,1.0,0.0,0.0,1,27600.0,1073449,6.0,22696.0,2110.0 +1070855,1070855,1070856,1,94.0,1.0,0.0,0.0,1,13300.0,1010145,6.0,22701.0,2110.0 +1070856,1070856,1070857,1,80.0,1.0,0.0,0.0,1,26310.0,1073449,6.0,22701.0,2110.0 +1070857,1070857,1070858,1,90.0,1.0,0.0,0.0,1,18600.0,1080470,4.0,22701.0,2110.0 +1070858,1070858,1070859,1,54.0,3.0,1.0,0.0,1,8400.0,1031452,6.0,22695.0,2110.0 +1070859,1070859,1070860,1,52.0,4.0,1.0,0.0,1,152900.0,1054606,4.0,22695.0,2110.0 +1070860,1070860,1070861,1,61.0,4.0,2.0,0.0,1,98000.0,1031452,4.0,22696.0,2110.0 +1070861,1070861,1070862,1,61.0,4.0,2.0,0.0,1,98000.0,1031452,4.0,22701.0,2110.0 +1070862,1070862,1070863,1,61.0,4.0,2.0,0.0,1,98000.0,1031452,4.0,22696.0,2110.0 +1070863,1070863,1070864,1,61.0,4.0,2.0,0.0,1,98000.0,1031452,4.0,22696.0,2110.0 +1070864,1070864,1070865,2,56.0,4.0,1.0,0.0,1,39700.0,1073449,1.0,22696.0,2110.0 +1070865,1070865,1070866,2,56.0,4.0,1.0,0.0,1,39700.0,1073449,1.0,22701.0,2110.0 +1070866,1070866,1070867,4,55.0,4.0,2.0,0.0,1,52000.0,1054606,1.0,22696.0,2110.0 +1070867,1070867,1070868,4,55.0,4.0,2.0,2.0,1,52000.0,1054606,1.0,22696.0,2110.0 +1070868,1070868,1070869,4,55.0,4.0,2.0,2.0,1,52000.0,1054606,1.0,22701.0,2110.0 +1070869,1070869,1070870,1,64.0,2.0,1.0,2.0,1,108230.0,1010145,4.0,22696.0,2110.0 +1070870,1070870,1070871,2,53.0,2.0,2.0,0.0,1,64300.0,1031452,3.0,22696.0,2110.0 +1070871,1070871,1070872,1,47.0,2.0,1.0,0.0,1,42000.0,1054606,4.0,22696.0,2110.0 +1070872,1070872,1070873,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22696.0,2110.0 +1070873,1070873,1070874,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22696.0,2110.0 +1070874,1070874,1070875,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22696.0,2110.0 +1070875,1070875,1070876,1,54.0,2.0,1.0,0.0,1,25000.0,1031452,6.0,22696.0,2110.0 +1070876,1070876,1070877,1,59.0,2.0,1.0,0.0,1,10000.0,1054606,4.0,22696.0,2110.0 +1070877,1070877,1070878,1,62.0,2.0,0.0,0.0,1,12000.0,1010145,4.0,22696.0,2110.0 +1070878,1070878,1070879,5,45.0,2.0,2.0,0.0,1,42000.0,1080470,1.0,22701.0,2110.0 +1070879,1070879,1070880,4,63.0,2.0,1.0,3.0,1,33500.0,1031452,3.0,22695.0,2110.0 +1070880,1070880,1070881,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22701.0,2110.0 +1070881,1070881,1070882,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22701.0,2110.0 +1070882,1070882,1070883,1,46.0,1.0,1.0,1.0,1,135000.0,1080470,4.0,22695.0,2110.0 +1070883,1070883,1070884,1,57.0,1.0,1.0,0.0,1,110080.0,1010145,4.0,22696.0,2110.0 +1070884,1070884,1070885,1,55.0,1.0,1.0,0.0,1,72000.0,1010145,4.0,22696.0,2110.0 +1070885,1070885,1070886,1,55.0,1.0,1.0,0.0,1,72000.0,1010145,4.0,22696.0,2110.0 +1070886,1070886,1070887,1,58.0,1.0,1.0,0.0,1,88000.0,1080470,4.0,22701.0,2110.0 +1070887,1070887,1070888,1,58.0,1.0,1.0,0.0,1,88000.0,1080470,4.0,22696.0,2110.0 +1070888,1070888,1070889,1,58.0,1.0,1.0,0.0,1,88000.0,1080470,4.0,22695.0,2110.0 +1070889,1070889,1070890,1,61.0,1.0,1.0,0.0,1,33000.0,1010145,6.0,22696.0,2110.0 +1070890,1070890,1070891,1,54.0,1.0,1.0,0.0,1,54000.0,1031452,6.0,22696.0,2110.0 +1070891,1070891,1070892,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22696.0,2110.0 +1070892,1070892,1070893,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22696.0,2110.0 +1070893,1070893,1070894,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22696.0,2110.0 +1070894,1070894,1070895,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22701.0,2110.0 +1070895,1070895,1070896,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22696.0,2110.0 +1070896,1070896,1070897,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22695.0,2110.0 +1070897,1070897,1070898,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22695.0,2110.0 +1070898,1070898,1070899,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22696.0,2110.0 +1070899,1070899,1070900,2,64.0,1.0,1.0,0.0,1,50800.0,1073449,3.0,22695.0,2110.0 +1070900,1070900,1070901,1,61.0,1.0,1.0,0.0,1,36000.0,1054606,4.0,22696.0,2110.0 +1070901,1070901,1070902,1,45.0,1.0,1.0,0.0,1,23000.0,1080470,6.0,22695.0,2110.0 +1070902,1070902,1070903,1,58.0,1.0,1.0,0.0,1,13500.0,1054606,6.0,22696.0,2110.0 +1070903,1070903,1070904,1,59.0,1.0,1.0,0.0,1,20550.0,1054606,4.0,22696.0,2110.0 +1070904,1070904,1070905,1,59.0,1.0,1.0,0.0,1,15000.0,1080470,4.0,22701.0,2110.0 +1070905,1070905,1070906,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22701.0,2110.0 +1070906,1070906,1070907,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22696.0,2110.0 +1070907,1070907,1070908,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22696.0,2110.0 +1070908,1070908,1070909,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22701.0,2110.0 +1070909,1070909,1070910,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22696.0,2110.0 +1070910,1070910,1070911,1,55.0,1.0,1.0,0.0,1,18000.0,1054606,4.0,22696.0,2110.0 +1070911,1070911,1070912,1,55.0,1.0,1.0,0.0,1,18000.0,1054606,4.0,22696.0,2110.0 +1070912,1070912,1070913,1,58.0,1.0,1.0,0.0,1,5000.0,1010145,4.0,22696.0,2110.0 +1070913,1070913,1070914,1,58.0,1.0,1.0,0.0,1,5000.0,1010145,4.0,22696.0,2110.0 +1070914,1070914,1070915,1,58.0,1.0,1.0,0.0,1,5000.0,1010145,4.0,22696.0,2110.0 +1070915,1070915,1070916,1,53.0,1.0,1.0,0.0,1,23000.0,1080470,4.0,22696.0,2110.0 +1070916,1070916,1070917,1,61.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22696.0,2110.0 +1070917,1070917,1070918,1,61.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22696.0,2110.0 +1070918,1070918,1070919,1,58.0,1.0,1.0,0.0,1,30000.0,1031452,4.0,22696.0,2110.0 +1070919,1070919,1070920,1,51.0,1.0,1.0,0.0,1,20000.0,1054606,4.0,22696.0,2110.0 +1070920,1070920,1070921,1,51.0,1.0,1.0,0.0,1,20000.0,1054606,4.0,22696.0,2110.0 +1070921,1070921,1070922,1,54.0,1.0,1.0,0.0,1,18970.0,1080470,4.0,22701.0,2110.0 +1070922,1070922,1070923,1,54.0,1.0,1.0,0.0,1,18970.0,1080470,4.0,22696.0,2110.0 +1070923,1070923,1070924,1,54.0,1.0,1.0,0.0,1,18970.0,1080470,4.0,22696.0,2110.0 +1070924,1070924,1070925,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22701.0,2110.0 +1070925,1070925,1070926,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22696.0,2110.0 +1070926,1070926,1070927,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22696.0,2110.0 +1070927,1070927,1070928,2,54.0,1.0,1.0,0.0,1,9400.0,1010145,2.0,22696.0,2110.0 +1070928,1070928,1070929,1,57.0,1.0,1.0,0.0,1,0.0,1073449,6.0,22696.0,2110.0 +1070929,1070929,1070930,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22696.0,2110.0 +1070930,1070930,1070931,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22696.0,2110.0 +1070931,1070931,1070932,1,51.0,1.0,1.0,0.0,1,0.0,1054606,4.0,22696.0,2110.0 +1070932,1070932,1070933,1,60.0,1.0,1.0,0.0,1,18500.0,1031452,4.0,22696.0,2110.0 +1070933,1070933,1070934,1,57.0,1.0,1.0,0.0,1,28600.0,1080470,4.0,22696.0,2110.0 +1070934,1070934,1070935,1,57.0,1.0,1.0,0.0,1,28600.0,1080470,4.0,22696.0,2110.0 +1070935,1070935,1070936,1,57.0,1.0,1.0,0.0,1,28600.0,1080470,4.0,22696.0,2110.0 +1070936,1070936,1070937,1,58.0,1.0,1.0,0.0,1,19800.0,1080470,4.0,22701.0,2110.0 +1070937,1070937,1070938,1,57.0,1.0,1.0,0.0,1,28600.0,1080470,4.0,22695.0,2110.0 +1070938,1070938,1070939,1,57.0,1.0,1.0,0.0,1,28600.0,1080470,4.0,22696.0,2110.0 +1070939,1070939,1070940,1,55.0,1.0,0.0,0.0,1,3000.0,1080470,4.0,22696.0,2110.0 +1070940,1070940,1070941,1,55.0,1.0,0.0,0.0,1,3000.0,1080470,4.0,22696.0,2110.0 +1070941,1070941,1070942,1,55.0,1.0,0.0,0.0,1,3000.0,1080470,4.0,22696.0,2110.0 +1070942,1070942,1070943,1,55.0,1.0,0.0,0.0,1,3000.0,1080470,4.0,22696.0,2110.0 +1070943,1070943,1070944,1,55.0,1.0,0.0,0.0,1,3000.0,1080470,4.0,22696.0,2110.0 +1070944,1070944,1070945,1,55.0,1.0,0.0,0.0,1,3000.0,1080470,4.0,22696.0,2110.0 +1070945,1070945,1070946,1,55.0,1.0,0.0,0.0,1,3000.0,1080470,4.0,22696.0,2110.0 +1070946,1070946,1070947,1,52.0,1.0,0.0,0.0,1,8800.0,1054606,4.0,22695.0,2110.0 +1070947,1070947,1070948,1,52.0,1.0,0.0,0.0,1,8800.0,1054606,4.0,22696.0,2110.0 +1070948,1070948,1070949,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22696.0,2110.0 +1070949,1070949,1070950,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22696.0,2110.0 +1070950,1070950,1070951,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22701.0,2110.0 +1070951,1070951,1070952,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22695.0,2110.0 +1070952,1070952,1070953,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22696.0,2110.0 +1070953,1070953,1070954,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22695.0,2110.0 +1070954,1070954,1070955,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22696.0,2110.0 +1070955,1070955,1070956,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22696.0,2110.0 +1070956,1070956,1070957,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22696.0,2110.0 +1070957,1070957,1070958,1,60.0,1.0,0.0,0.0,1,21500.0,1080470,4.0,22696.0,2110.0 +1070958,1070958,1070959,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22696.0,2110.0 +1070959,1070959,1070960,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22696.0,2110.0 +1070960,1070960,1070961,1,60.0,1.0,0.0,0.0,1,21500.0,1080470,4.0,22696.0,2110.0 +1070961,1070961,1070962,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22696.0,2110.0 +1070962,1070962,1070963,2,46.0,1.0,2.0,0.0,1,14000.0,1073449,7.0,22696.0,2110.0 +1070963,1070963,1070964,1,26.0,4.0,1.0,1.0,1,64630.0,1073449,4.0,22696.0,2110.0 +1070964,1070964,1070965,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22696.0,2110.0 +1070965,1070965,1070966,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22696.0,2110.0 +1070966,1070966,1070967,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22696.0,2110.0 +1070967,1070967,1070968,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22695.0,2110.0 +1070968,1070968,1070969,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22696.0,2110.0 +1070969,1070969,1070970,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22696.0,2110.0 +1070970,1070970,1070971,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22696.0,2110.0 +1070971,1070971,1070972,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22696.0,2110.0 +1070972,1070972,1070973,2,25.0,4.0,2.0,0.0,1,30000.0,1073449,5.0,22696.0,2110.0 +1070973,1070973,1070974,1,30.0,4.0,1.0,0.0,1,25000.0,1080470,6.0,22695.0,2110.0 +1070974,1070974,1070975,2,42.0,4.0,2.0,0.0,1,120000.0,1080470,5.0,22696.0,2110.0 +1070975,1070975,1070976,2,42.0,4.0,2.0,0.0,1,120000.0,1080470,5.0,22696.0,2110.0 +1070976,1070976,1070977,2,42.0,4.0,2.0,0.0,1,120000.0,1080470,5.0,22696.0,2110.0 +1070977,1070977,1070978,1,28.0,4.0,1.0,0.0,1,70000.0,1073449,6.0,22701.0,2110.0 +1070978,1070978,1070979,1,34.0,4.0,1.0,0.0,1,40000.0,1010145,4.0,22695.0,2110.0 +1070979,1070979,1070980,6,40.0,4.0,2.0,0.0,1,111500.0,1073449,1.0,22696.0,2110.0 +1070980,1070980,1070981,6,40.0,4.0,2.0,4.0,1,111500.0,1073449,1.0,22701.0,2110.0 +1070981,1070981,1070982,6,40.0,4.0,2.0,4.0,1,111500.0,1073449,1.0,22701.0,2110.0 +1070982,1070982,1070983,4,42.0,4.0,2.0,4.0,1,240000.0,1054606,1.0,22696.0,2110.0 +1070983,1070983,1070984,4,37.0,4.0,2.0,2.0,1,304000.0,1080470,1.0,22696.0,2110.0 +1070984,1070984,1070985,4,43.0,4.0,2.0,2.0,1,172000.0,1054606,1.0,22696.0,2110.0 +1070985,1070985,1070986,4,39.0,4.0,2.0,2.0,1,227000.0,1031452,1.0,22696.0,2110.0 +1070986,1070986,1070987,4,39.0,4.0,2.0,2.0,1,227000.0,1031452,1.0,22701.0,2110.0 +1070987,1070987,1070988,4,39.0,4.0,2.0,2.0,1,227000.0,1031452,1.0,22696.0,2110.0 +1070988,1070988,1070989,4,39.0,4.0,2.0,2.0,1,227000.0,1031452,1.0,22696.0,2110.0 +1070989,1070989,1070990,4,39.0,4.0,2.0,2.0,1,227000.0,1031452,1.0,22696.0,2110.0 +1070990,1070990,1070991,4,39.0,4.0,2.0,2.0,1,227000.0,1031452,1.0,22696.0,2110.0 +1070991,1070991,1070992,4,39.0,4.0,2.0,2.0,1,227000.0,1031452,1.0,22696.0,2110.0 +1070992,1070992,1070993,3,29.0,4.0,1.0,2.0,1,115000.0,1010145,1.0,22696.0,2110.0 +1070993,1070993,1070994,3,29.0,4.0,1.0,1.0,1,115000.0,1010145,1.0,22696.0,2110.0 +1070994,1070994,1070995,3,29.0,4.0,1.0,1.0,1,115000.0,1010145,1.0,22701.0,2110.0 +1070995,1070995,1070996,3,29.0,4.0,1.0,1.0,1,115000.0,1010145,1.0,22696.0,2110.0 +1070996,1070996,1070997,1,41.0,2.0,1.0,1.0,1,115000.0,1073449,4.0,22696.0,2110.0 +1070997,1070997,1070998,1,41.0,2.0,1.0,0.0,1,115000.0,1073449,4.0,22696.0,2110.0 +1070998,1070998,1070999,1,41.0,2.0,1.0,0.0,1,115000.0,1073449,4.0,22696.0,2110.0 +1070999,1070999,1071000,1,41.0,2.0,1.0,0.0,1,115000.0,1073449,4.0,22696.0,2110.0 +1071000,1071000,1071001,2,39.0,2.0,1.0,0.0,1,67900.0,1010145,5.0,22696.0,2110.0 +1071001,1071001,1071002,2,39.0,2.0,1.0,0.0,1,67900.0,1010145,5.0,22696.0,2110.0 +1071002,1071002,1071003,2,39.0,2.0,1.0,0.0,1,67900.0,1010145,5.0,22695.0,2110.0 +1071003,1071003,1071004,2,39.0,2.0,1.0,0.0,1,67900.0,1010145,5.0,22696.0,2110.0 +1071004,1071004,1071005,2,39.0,2.0,1.0,0.0,1,67900.0,1010145,5.0,22701.0,2110.0 +1071005,1071005,1071006,2,44.0,2.0,0.0,0.0,1,72000.0,1054606,5.0,22696.0,2110.0 +1071006,1071006,1071007,2,44.0,2.0,0.0,0.0,1,72000.0,1054606,5.0,22695.0,2110.0 +1071007,1071007,1071008,2,44.0,2.0,0.0,0.0,1,72000.0,1054606,5.0,22696.0,2110.0 +1071008,1071008,1071009,2,44.0,2.0,0.0,0.0,1,72000.0,1054606,5.0,22696.0,2110.0 +1071009,1071009,1071010,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22696.0,2110.0 +1071010,1071010,1071011,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22696.0,2110.0 +1071011,1071011,1071012,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22696.0,2110.0 +1071012,1071012,1071013,1,26.0,2.0,1.0,0.0,1,34200.0,1054606,4.0,22696.0,2110.0 +1071013,1071013,1071014,1,28.0,2.0,1.0,0.0,1,10200.0,1054606,4.0,22696.0,2110.0 +1071014,1071014,1071015,1,27.0,2.0,1.0,0.0,1,1400.0,1054606,4.0,22696.0,2110.0 +1071015,1071015,1071016,1,27.0,2.0,1.0,0.0,1,1400.0,1054606,4.0,22695.0,2110.0 +1071016,1071016,1071017,1,27.0,2.0,1.0,0.0,1,1400.0,1054606,4.0,22695.0,2110.0 +1071017,1071017,1071018,1,37.0,2.0,0.0,0.0,1,27000.0,1080470,4.0,22696.0,2110.0 +1071018,1071018,1071019,1,44.0,2.0,0.0,0.0,1,19600.0,1031452,4.0,22696.0,2110.0 +1071019,1071019,1071020,5,44.0,2.0,2.0,0.0,1,462000.0,1080470,1.0,22696.0,2110.0 +1071020,1071020,1071021,2,43.0,2.0,1.0,3.0,1,106000.0,1010145,3.0,22696.0,2110.0 +1071021,1071021,1071022,2,39.0,2.0,1.0,1.0,1,69000.0,1054606,3.0,22695.0,2110.0 +1071022,1071022,1071023,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071023,1071023,1071024,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071024,1071024,1071025,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071025,1071025,1071026,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22701.0,2110.0 +1071026,1071026,1071027,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071027,1071027,1071028,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071028,1071028,1071029,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071029,1071029,1071030,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071030,1071030,1071031,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071031,1071031,1071032,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071032,1071032,1071033,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071033,1071033,1071034,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071034,1071034,1071035,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22701.0,2110.0 +1071035,1071035,1071036,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22695.0,2110.0 +1071036,1071036,1071037,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071037,1071037,1071038,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22701.0,2110.0 +1071038,1071038,1071039,3,32.0,2.0,0.0,1.0,1,42000.0,1080470,1.0,22696.0,2110.0 +1071039,1071039,1071040,5,42.0,3.0,2.0,1.0,1,219000.0,1010145,1.0,22701.0,2110.0 +1071040,1071040,1071041,5,42.0,3.0,2.0,3.0,1,219000.0,1010145,1.0,22696.0,2110.0 +1071041,1071041,1071042,5,42.0,3.0,2.0,3.0,1,219000.0,1010145,1.0,22701.0,2110.0 +1071042,1071042,1071043,5,42.0,3.0,2.0,3.0,1,219000.0,1010145,1.0,22701.0,2110.0 +1071043,1071043,1071044,1,37.0,1.0,1.0,3.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071044,1071044,1071045,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071045,1071045,1071046,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22696.0,2110.0 +1071046,1071046,1071047,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071047,1071047,1071048,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071048,1071048,1071049,1,28.0,1.0,1.0,0.0,1,423000.0,1010145,4.0,22701.0,2110.0 +1071049,1071049,1071050,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071050,1071050,1071051,1,28.0,1.0,1.0,0.0,1,423000.0,1010145,4.0,22696.0,2110.0 +1071051,1071051,1071052,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22696.0,2110.0 +1071052,1071052,1071053,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071053,1071053,1071054,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22701.0,2110.0 +1071054,1071054,1071055,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071055,1071055,1071056,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071056,1071056,1071057,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22696.0,2110.0 +1071057,1071057,1071058,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071058,1071058,1071059,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071059,1071059,1071060,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22696.0,2110.0 +1071060,1071060,1071061,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071061,1071061,1071062,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22695.0,2110.0 +1071062,1071062,1071063,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071063,1071063,1071064,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071064,1071064,1071065,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22696.0,2110.0 +1071065,1071065,1071066,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071066,1071066,1071067,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071067,1071067,1071068,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22696.0,2110.0 +1071068,1071068,1071069,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071069,1071069,1071070,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22696.0,2110.0 +1071070,1071070,1071071,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22695.0,2110.0 +1071071,1071071,1071072,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22696.0,2110.0 +1071072,1071072,1071073,1,30.0,1.0,1.0,0.0,1,72000.0,1010145,6.0,22696.0,2110.0 +1071073,1071073,1071074,1,43.0,1.0,1.0,0.0,1,80000.0,1010145,4.0,22696.0,2110.0 +1071074,1071074,1071075,1,25.0,1.0,1.0,0.0,1,70000.0,1010145,4.0,22696.0,2110.0 +1071075,1071075,1071076,1,27.0,1.0,1.0,0.0,1,76000.0,1073449,4.0,22696.0,2110.0 +1071076,1071076,1071077,1,29.0,1.0,1.0,0.0,1,40000.0,1073449,6.0,22696.0,2110.0 +1071077,1071077,1071078,1,25.0,1.0,1.0,0.0,1,52000.0,1054606,4.0,22696.0,2110.0 +1071078,1071078,1071079,1,26.0,1.0,1.0,0.0,1,55000.0,1073449,4.0,22696.0,2110.0 +1071079,1071079,1071080,1,41.0,1.0,1.0,0.0,1,54000.0,1010145,4.0,22695.0,2110.0 +1071080,1071080,1071081,1,41.0,1.0,1.0,0.0,1,54000.0,1010145,4.0,22696.0,2110.0 +1071081,1071081,1071082,1,41.0,1.0,1.0,0.0,1,54000.0,1010145,4.0,22701.0,2110.0 +1071082,1071082,1071083,1,29.0,1.0,1.0,0.0,1,55000.0,1010145,4.0,22696.0,2110.0 +1071083,1071083,1071084,1,34.0,1.0,1.0,0.0,1,53000.0,1073449,6.0,22696.0,2110.0 +1071084,1071084,1071085,1,35.0,1.0,1.0,0.0,1,53000.0,1010145,6.0,22696.0,2110.0 +1071085,1071085,1071086,1,37.0,1.0,1.0,0.0,1,51000.0,1054606,6.0,22695.0,2110.0 +1071086,1071086,1071087,1,37.0,1.0,1.0,0.0,1,51000.0,1054606,6.0,22696.0,2110.0 +1071087,1071087,1071088,1,30.0,1.0,1.0,0.0,1,45000.0,1073449,6.0,22695.0,2110.0 +1071088,1071088,1071089,1,37.0,1.0,1.0,0.0,1,51000.0,1054606,6.0,22696.0,2110.0 +1071089,1071089,1071090,1,37.0,1.0,1.0,0.0,1,51000.0,1054606,6.0,22696.0,2110.0 +1071090,1071090,1071091,1,37.0,1.0,1.0,0.0,1,58000.0,1054606,6.0,22696.0,2110.0 +1071091,1071091,1071092,1,29.0,1.0,1.0,0.0,1,54400.0,1054606,4.0,22701.0,2110.0 +1071092,1071092,1071093,1,29.0,1.0,1.0,0.0,1,54400.0,1054606,4.0,22696.0,2110.0 +1071093,1071093,1071094,1,29.0,1.0,1.0,0.0,1,54400.0,1054606,4.0,22696.0,2110.0 +1071094,1071094,1071095,1,29.0,1.0,1.0,0.0,1,54400.0,1054606,4.0,22696.0,2110.0 +1071095,1071095,1071096,1,29.0,1.0,1.0,0.0,1,54400.0,1054606,4.0,22696.0,2110.0 +1071096,1071096,1071097,1,25.0,1.0,0.0,0.0,1,53004.0,1080470,4.0,22696.0,2110.0 +1071097,1071097,1071098,1,42.0,1.0,3.0,0.0,1,30000.0,1031452,4.0,22696.0,2110.0 +1071098,1071098,1071099,1,42.0,1.0,3.0,0.0,1,30000.0,1031452,4.0,22701.0,2110.0 +1071099,1071099,1071100,1,42.0,1.0,3.0,0.0,1,30000.0,1031452,4.0,22696.0,2110.0 +1071100,1071100,1071101,1,26.0,1.0,1.0,0.0,1,20000.0,1031452,6.0,22696.0,2110.0 +1071101,1071101,1071102,1,35.0,1.0,1.0,0.0,1,24500.0,1080470,6.0,22695.0,2110.0 +1071102,1071102,1071103,1,35.0,1.0,1.0,0.0,1,24500.0,1080470,6.0,22696.0,2110.0 +1071103,1071103,1071104,1,30.0,1.0,1.0,0.0,1,25000.0,1080470,4.0,22701.0,2110.0 +1071104,1071104,1071105,1,27.0,1.0,1.0,0.0,1,30000.0,1073449,4.0,22696.0,2110.0 +1071105,1071105,1071106,1,25.0,1.0,1.0,0.0,1,30000.0,1010145,4.0,22696.0,2110.0 +1071106,1071106,1071107,1,27.0,1.0,1.0,0.0,1,15000.0,1080470,4.0,22696.0,2110.0 +1071107,1071107,1071108,1,32.0,1.0,1.0,0.0,1,17500.0,1080470,4.0,22696.0,2110.0 +1071108,1071108,1071109,1,27.0,1.0,1.0,0.0,1,15000.0,1080470,4.0,22695.0,2110.0 +1071109,1071109,1071110,1,25.0,1.0,1.0,0.0,1,20400.0,1010145,4.0,22696.0,2110.0 +1071110,1071110,1071111,1,32.0,1.0,1.0,0.0,1,17500.0,1080470,4.0,22696.0,2110.0 +1071111,1071111,1071112,1,27.0,1.0,1.0,0.0,1,15000.0,1080470,4.0,22696.0,2110.0 +1071112,1071112,1071113,1,25.0,1.0,1.0,0.0,1,20400.0,1010145,4.0,22696.0,2110.0 +1071113,1071113,1071114,1,25.0,1.0,1.0,0.0,1,30000.0,1054606,4.0,22696.0,2110.0 +1071114,1071114,1071115,1,42.0,1.0,1.0,0.0,1,13600.0,1031452,6.0,22695.0,2110.0 +1071115,1071115,1071116,1,42.0,1.0,1.0,0.0,1,13600.0,1031452,6.0,22696.0,2110.0 +1071116,1071116,1071117,5,34.0,1.0,2.0,0.0,1,208000.0,1031452,1.0,22696.0,2110.0 +1071117,1071117,1071118,6,40.0,1.0,1.0,3.0,1,95570.0,1054606,1.0,22701.0,2110.0 +1071118,1071118,1071119,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071119,1071119,1071120,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071120,1071120,1071121,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071121,1071121,1071122,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22701.0,2110.0 +1071122,1071122,1071123,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22701.0,2110.0 +1071123,1071123,1071124,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071124,1071124,1071125,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071125,1071125,1071126,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071126,1071126,1071127,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071127,1071127,1071128,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071128,1071128,1071129,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071129,1071129,1071130,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071130,1071130,1071131,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071131,1071131,1071132,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22696.0,2110.0 +1071132,1071132,1071133,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22701.0,2110.0 +1071133,1071133,1071134,2,35.0,1.0,2.0,2.0,1,23600.0,1031452,3.0,22696.0,2110.0 +1071134,1071134,1071135,2,35.0,1.0,2.0,1.0,1,23600.0,1031452,3.0,22696.0,2110.0 +1071135,1071135,1071136,2,35.0,1.0,2.0,1.0,1,23600.0,1031452,3.0,22696.0,2110.0 +1071136,1071136,1071137,2,35.0,1.0,2.0,1.0,1,23600.0,1031452,3.0,22696.0,2110.0 +1071137,1071137,1071138,5,36.0,1.0,2.0,1.0,1,27000.0,1031452,1.0,22696.0,2110.0 +1071138,1071138,1071139,2,35.0,1.0,1.0,3.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071139,1071139,1071140,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071140,1071140,1071141,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071141,1071141,1071142,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22695.0,2110.0 +1071142,1071142,1071143,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22701.0,2110.0 +1071143,1071143,1071144,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071144,1071144,1071145,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22701.0,2110.0 +1071145,1071145,1071146,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22701.0,2110.0 +1071146,1071146,1071147,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071147,1071147,1071148,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071148,1071148,1071149,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071149,1071149,1071150,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22701.0,2110.0 +1071150,1071150,1071151,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22701.0,2110.0 +1071151,1071151,1071152,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071152,1071152,1071153,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071153,1071153,1071154,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071154,1071154,1071155,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071155,1071155,1071156,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071156,1071156,1071157,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22695.0,2110.0 +1071157,1071157,1071158,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22695.0,2110.0 +1071158,1071158,1071159,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071159,1071159,1071160,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071160,1071160,1071161,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071161,1071161,1071162,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071162,1071162,1071163,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071163,1071163,1071164,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071164,1071164,1071165,2,35.0,1.0,1.0,1.0,1,12600.0,1031452,3.0,22696.0,2110.0 +1071165,1071165,1071166,2,19.0,4.0,2.0,1.0,1,26400.0,1010145,2.0,22696.0,2110.0 +1071166,1071166,1071167,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22696.0,2110.0 +1071167,1071167,1071168,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22696.0,2110.0 +1071168,1071168,1071169,3,21.0,2.0,3.0,0.0,1,51500.0,1054606,3.0,22695.0,2110.0 +1071169,1071169,1071170,2,22.0,2.0,2.0,0.0,1,46000.0,1031452,7.0,22696.0,2110.0 +1071170,1071170,1071171,3,21.0,3.0,2.0,0.0,1,36640.0,1054606,3.0,22696.0,2110.0 +1071171,1071171,1071172,3,22.0,1.0,3.0,1.0,1,77600.0,1031452,5.0,22696.0,2110.0 +1071172,1071172,1071173,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22696.0,2110.0 +1071173,1071173,1071174,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22696.0,2110.0 +1071174,1071174,1071175,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22696.0,2110.0 +1071175,1071175,1071176,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22696.0,2110.0 +1071176,1071176,1071177,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22701.0,2110.0 +1071177,1071177,1071178,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22695.0,2110.0 +1071178,1071178,1071179,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22696.0,2110.0 +1071179,1071179,1071180,3,22.0,1.0,3.0,0.0,1,77600.0,1031452,5.0,22696.0,2110.0 +1071180,1071180,1071181,2,24.0,1.0,2.0,0.0,1,51000.0,1073449,1.0,22696.0,2110.0 +1071181,1071181,1071182,2,24.0,1.0,2.0,0.0,1,51000.0,1073449,1.0,22696.0,2110.0 +1071182,1071182,1071183,2,24.0,1.0,2.0,0.0,1,51000.0,1073449,1.0,22696.0,2110.0 +1071183,1071183,1071184,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22696.0,2110.0 +1071184,1071184,1071185,2,23.0,1.0,2.0,0.0,1,58000.0,1080470,7.0,22696.0,2110.0 +1071185,1071185,1071186,3,24.0,1.0,2.0,0.0,1,115000.0,1031452,3.0,22696.0,2110.0 +1071186,1071186,1071187,3,24.0,1.0,2.0,1.0,1,115000.0,1031452,3.0,22696.0,2110.0 +1071187,1071187,1071188,3,24.0,1.0,2.0,1.0,1,115000.0,1031452,3.0,22696.0,2110.0 +1071188,1071188,1071189,3,24.0,1.0,2.0,1.0,1,115000.0,1031452,3.0,22696.0,2110.0 +1071189,1071189,1071190,3,24.0,1.0,2.0,1.0,1,115000.0,1031452,3.0,22701.0,2110.0 +1071190,1071190,1071191,3,24.0,1.0,2.0,1.0,1,115000.0,1031452,3.0,22696.0,2110.0 +1071191,1071191,1071192,3,24.0,1.0,2.0,1.0,1,115000.0,1031452,3.0,22696.0,2110.0 +1071192,1071192,1071193,3,24.0,1.0,2.0,1.0,1,115000.0,1031452,3.0,22701.0,2110.0 +1071193,1071193,1071194,4,16.0,1.0,2.0,1.0,1,39980.0,1073449,2.0,22696.0,2110.0 +1071194,1071194,1071195,4,16.0,1.0,2.0,3.0,1,39980.0,1073449,2.0,22696.0,2110.0 +1071195,1071195,1071196,1,72.0,4.0,1.0,3.0,1,62300.0,1054606,6.0,22724.0,2113.0 +1071196,1071196,1071197,1,72.0,4.0,1.0,0.0,1,62300.0,1054606,6.0,22724.0,2113.0 +1071197,1071197,1071198,2,66.0,4.0,2.0,0.0,1,59100.0,1010145,1.0,22724.0,2113.0 +1071198,1071198,1071199,2,74.0,4.0,2.0,0.0,1,25300.0,1080470,1.0,22726.0,2113.0 +1071199,1071199,1071200,1,65.0,4.0,1.0,0.0,1,30000.0,1031452,6.0,22724.0,2113.0 +1071200,1071200,1071201,1,65.0,4.0,1.0,0.0,1,30000.0,1031452,6.0,22725.0,2113.0 +1071201,1071201,1071202,2,76.0,2.0,3.0,0.0,1,62600.0,1054606,1.0,22724.0,2113.0 +1071202,1071202,1071203,2,87.0,2.0,2.0,0.0,1,63230.0,1010145,2.0,22724.0,2113.0 +1071203,1071203,1071204,2,87.0,2.0,2.0,0.0,1,63230.0,1010145,2.0,22724.0,2113.0 +1071204,1071204,1071205,2,87.0,2.0,2.0,0.0,1,63230.0,1010145,2.0,22724.0,2113.0 +1071205,1071205,1071206,2,87.0,2.0,2.0,0.0,1,63230.0,1010145,2.0,22724.0,2113.0 +1071206,1071206,1071207,2,87.0,2.0,2.0,0.0,1,63230.0,1010145,2.0,22725.0,2113.0 +1071207,1071207,1071208,2,87.0,2.0,2.0,0.0,1,63230.0,1010145,2.0,22724.0,2113.0 +1071208,1071208,1071209,2,67.0,2.0,2.0,0.0,1,40300.0,1054606,1.0,22724.0,2113.0 +1071209,1071209,1071210,1,73.0,2.0,3.0,0.0,1,40000.0,1010145,6.0,22729.0,2113.0 +1071210,1071210,1071211,1,94.0,2.0,2.0,0.0,1,42800.0,1031452,4.0,22724.0,2113.0 +1071211,1071211,1071212,1,94.0,2.0,2.0,0.0,1,42800.0,1031452,4.0,22724.0,2113.0 +1071212,1071212,1071213,1,67.0,2.0,2.0,0.0,1,46200.0,1080470,4.0,22724.0,2113.0 +1071213,1071213,1071214,1,94.0,2.0,2.0,0.0,1,42800.0,1031452,4.0,22724.0,2113.0 +1071214,1071214,1071215,1,73.0,2.0,3.0,0.0,1,35400.0,1080470,4.0,22723.0,2113.0 +1071215,1071215,1071216,1,94.0,2.0,2.0,0.0,1,42800.0,1031452,4.0,22723.0,2113.0 +1071216,1071216,1071217,1,67.0,2.0,2.0,0.0,1,46200.0,1080470,4.0,22726.0,2113.0 +1071217,1071217,1071218,1,69.0,2.0,1.0,0.0,1,40000.0,1080470,6.0,22720.0,2113.0 +1071218,1071218,1071219,1,69.0,2.0,1.0,0.0,1,40000.0,1080470,6.0,22724.0,2113.0 +1071219,1071219,1071220,1,69.0,2.0,1.0,0.0,1,40000.0,1080470,6.0,22724.0,2113.0 +1071220,1071220,1071221,2,69.0,2.0,1.0,0.0,1,42800.0,1010145,1.0,22724.0,2113.0 +1071221,1071221,1071222,2,94.0,2.0,1.0,0.0,1,33700.0,1054606,3.0,22724.0,2113.0 +1071222,1071222,1071223,2,94.0,2.0,1.0,0.0,1,33700.0,1054606,3.0,22720.0,2113.0 +1071223,1071223,1071224,2,94.0,2.0,1.0,0.0,1,33700.0,1054606,3.0,22724.0,2113.0 +1071224,1071224,1071225,2,69.0,2.0,1.0,0.0,1,52600.0,1073449,1.0,22724.0,2113.0 +1071225,1071225,1071226,1,68.0,2.0,1.0,0.0,1,52600.0,1010145,6.0,22726.0,2113.0 +1071226,1071226,1071227,1,65.0,2.0,1.0,0.0,1,33000.0,1054606,6.0,22720.0,2113.0 +1071227,1071227,1071228,1,65.0,2.0,1.0,0.0,1,33000.0,1054606,6.0,22724.0,2113.0 +1071228,1071228,1071229,1,68.0,2.0,1.0,0.0,1,52600.0,1010145,6.0,22724.0,2113.0 +1071229,1071229,1071230,1,65.0,2.0,1.0,0.0,1,33000.0,1054606,6.0,22724.0,2113.0 +1071230,1071230,1071231,1,66.0,2.0,1.0,0.0,1,46100.0,1073449,6.0,22726.0,2113.0 +1071231,1071231,1071232,1,71.0,2.0,1.0,0.0,1,46700.0,1010145,6.0,22730.0,2113.0 +1071232,1071232,1071233,1,91.0,2.0,1.0,0.0,1,42000.0,1010145,6.0,22724.0,2113.0 +1071233,1071233,1071234,1,75.0,2.0,1.0,0.0,1,53300.0,1073449,6.0,22721.0,2113.0 +1071234,1071234,1071235,1,66.0,2.0,1.0,0.0,1,46100.0,1073449,6.0,22726.0,2113.0 +1071235,1071235,1071236,1,75.0,2.0,1.0,0.0,1,53300.0,1073449,6.0,22724.0,2113.0 +1071236,1071236,1071237,1,91.0,2.0,1.0,0.0,1,42000.0,1010145,6.0,22724.0,2113.0 +1071237,1071237,1071238,1,71.0,2.0,1.0,0.0,1,46700.0,1010145,6.0,22724.0,2113.0 +1071238,1071238,1071239,1,66.0,2.0,1.0,0.0,1,46100.0,1073449,6.0,22724.0,2113.0 +1071239,1071239,1071240,1,71.0,2.0,1.0,0.0,1,46700.0,1010145,6.0,22728.0,2113.0 +1071240,1071240,1071241,1,90.0,2.0,1.0,0.0,1,39180.0,1010145,4.0,22724.0,2113.0 +1071241,1071241,1071242,1,90.0,2.0,0.0,0.0,1,46700.0,1010145,6.0,22724.0,2113.0 +1071242,1071242,1071243,1,90.0,2.0,0.0,0.0,1,46700.0,1010145,6.0,22724.0,2113.0 +1071243,1071243,1071244,1,90.0,2.0,0.0,0.0,1,46700.0,1010145,6.0,22724.0,2113.0 +1071244,1071244,1071245,1,90.0,2.0,0.0,0.0,1,46700.0,1010145,6.0,22724.0,2113.0 +1071245,1071245,1071246,1,87.0,2.0,2.0,0.0,1,28500.0,1010145,4.0,22721.0,2113.0 +1071246,1071246,1071247,1,87.0,2.0,2.0,0.0,1,28500.0,1010145,4.0,22724.0,2113.0 +1071247,1071247,1071248,1,81.0,2.0,2.0,0.0,1,13400.0,1080470,4.0,22729.0,2113.0 +1071248,1071248,1071249,1,66.0,2.0,1.0,0.0,1,11000.0,1080470,6.0,22730.0,2113.0 +1071249,1071249,1071250,1,73.0,2.0,1.0,0.0,1,25600.0,1080470,6.0,22725.0,2113.0 +1071250,1071250,1071251,1,65.0,2.0,1.0,0.0,1,19400.0,1010145,6.0,22724.0,2113.0 +1071251,1071251,1071252,1,66.0,2.0,1.0,0.0,1,11000.0,1080470,6.0,22724.0,2113.0 +1071252,1071252,1071253,1,66.0,2.0,1.0,0.0,1,11000.0,1080470,6.0,22724.0,2113.0 +1071253,1071253,1071254,1,72.0,2.0,1.0,0.0,1,4900.0,1080470,6.0,22724.0,2113.0 +1071254,1071254,1071255,1,73.0,2.0,1.0,0.0,1,25600.0,1080470,6.0,22724.0,2113.0 +1071255,1071255,1071256,1,65.0,2.0,1.0,0.0,1,8800.0,1054606,4.0,22724.0,2113.0 +1071256,1071256,1071257,1,87.0,2.0,1.0,0.0,1,10800.0,1080470,6.0,22724.0,2113.0 +1071257,1071257,1071258,1,84.0,2.0,1.0,0.0,1,9200.0,1031452,6.0,22724.0,2113.0 +1071258,1071258,1071259,1,73.0,2.0,0.0,0.0,1,8700.0,1073449,6.0,22724.0,2113.0 +1071259,1071259,1071260,1,73.0,2.0,0.0,0.0,1,8700.0,1073449,6.0,22724.0,2113.0 +1071260,1071260,1071261,1,73.0,2.0,0.0,0.0,1,8700.0,1073449,6.0,22724.0,2113.0 +1071261,1071261,1071262,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22724.0,2113.0 +1071262,1071262,1071263,1,65.0,2.0,0.0,0.0,1,9000.0,1073449,6.0,22725.0,2113.0 +1071263,1071263,1071264,1,66.0,2.0,0.0,0.0,1,8500.0,1073449,6.0,22724.0,2113.0 +1071264,1071264,1071265,1,78.0,2.0,0.0,0.0,1,9900.0,1073449,6.0,22724.0,2113.0 +1071265,1071265,1071266,1,78.0,2.0,0.0,0.0,1,9900.0,1073449,6.0,22724.0,2113.0 +1071266,1071266,1071267,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22724.0,2113.0 +1071267,1071267,1071268,1,78.0,2.0,0.0,0.0,1,9900.0,1073449,6.0,22724.0,2113.0 +1071268,1071268,1071269,1,73.0,2.0,0.0,0.0,1,8700.0,1073449,6.0,22724.0,2113.0 +1071269,1071269,1071270,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22725.0,2113.0 +1071270,1071270,1071271,1,78.0,2.0,0.0,0.0,1,9900.0,1073449,6.0,22724.0,2113.0 +1071271,1071271,1071272,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22724.0,2113.0 +1071272,1071272,1071273,1,65.0,2.0,0.0,0.0,1,9000.0,1073449,6.0,22724.0,2113.0 +1071273,1071273,1071274,1,73.0,2.0,0.0,0.0,1,8700.0,1073449,6.0,22724.0,2113.0 +1071274,1071274,1071275,1,73.0,2.0,0.0,0.0,1,7320.0,1010145,6.0,22725.0,2113.0 +1071275,1071275,1071276,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22726.0,2113.0 +1071276,1071276,1071277,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22724.0,2113.0 +1071277,1071277,1071278,1,78.0,2.0,0.0,0.0,1,7900.0,1054606,6.0,22721.0,2113.0 +1071278,1071278,1071279,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22724.0,2113.0 +1071279,1071279,1071280,1,73.0,2.0,0.0,0.0,1,7320.0,1010145,6.0,22724.0,2113.0 +1071280,1071280,1071281,1,73.0,2.0,0.0,0.0,1,8700.0,1073449,6.0,22726.0,2113.0 +1071281,1071281,1071282,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22728.0,2113.0 +1071282,1071282,1071283,1,73.0,2.0,0.0,0.0,1,7320.0,1010145,6.0,22728.0,2113.0 +1071283,1071283,1071284,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22724.0,2113.0 +1071284,1071284,1071285,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22721.0,2113.0 +1071285,1071285,1071286,1,73.0,2.0,0.0,0.0,1,7320.0,1010145,6.0,22722.0,2113.0 +1071286,1071286,1071287,1,68.0,2.0,0.0,0.0,1,9000.0,1031452,6.0,22724.0,2113.0 +1071287,1071287,1071288,1,82.0,2.0,0.0,0.0,1,11700.0,1073449,4.0,22724.0,2113.0 +1071288,1071288,1071289,1,82.0,2.0,0.0,0.0,1,11700.0,1073449,4.0,22724.0,2113.0 +1071289,1071289,1071290,1,82.0,2.0,0.0,0.0,1,11700.0,1073449,4.0,22724.0,2113.0 +1071290,1071290,1071291,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071291,1071291,1071292,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22726.0,2113.0 +1071292,1071292,1071293,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071293,1071293,1071294,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071294,1071294,1071295,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22726.0,2113.0 +1071295,1071295,1071296,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22725.0,2113.0 +1071296,1071296,1071297,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071297,1071297,1071298,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22725.0,2113.0 +1071298,1071298,1071299,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22722.0,2113.0 +1071299,1071299,1071300,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071300,1071300,1071301,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071301,1071301,1071302,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22721.0,2113.0 +1071302,1071302,1071303,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22730.0,2113.0 +1071303,1071303,1071304,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071304,1071304,1071305,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22728.0,2113.0 +1071305,1071305,1071306,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071306,1071306,1071307,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071307,1071307,1071308,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071308,1071308,1071309,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071309,1071309,1071310,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071310,1071310,1071311,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071311,1071311,1071312,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071312,1071312,1071313,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071313,1071313,1071314,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22729.0,2113.0 +1071314,1071314,1071315,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071315,1071315,1071316,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071316,1071316,1071317,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071317,1071317,1071318,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071318,1071318,1071319,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071319,1071319,1071320,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22725.0,2113.0 +1071320,1071320,1071321,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22724.0,2113.0 +1071321,1071321,1071322,2,66.0,1.0,1.0,0.0,1,42700.0,1031452,3.0,22724.0,2113.0 +1071322,1071322,1071323,2,66.0,1.0,1.0,0.0,1,42700.0,1031452,3.0,22724.0,2113.0 +1071323,1071323,1071324,2,66.0,1.0,1.0,0.0,1,42700.0,1031452,3.0,22724.0,2113.0 +1071324,1071324,1071325,2,66.0,1.0,1.0,0.0,1,42700.0,1031452,3.0,22724.0,2113.0 +1071325,1071325,1071326,2,66.0,1.0,1.0,0.0,1,42700.0,1031452,3.0,22724.0,2113.0 +1071326,1071326,1071327,2,66.0,1.0,1.0,0.0,1,42700.0,1031452,3.0,22724.0,2113.0 +1071327,1071327,1071328,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22724.0,2113.0 +1071328,1071328,1071329,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22729.0,2113.0 +1071329,1071329,1071330,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22724.0,2113.0 +1071330,1071330,1071331,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22724.0,2113.0 +1071331,1071331,1071332,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22730.0,2113.0 +1071332,1071332,1071333,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22722.0,2113.0 +1071333,1071333,1071334,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22724.0,2113.0 +1071334,1071334,1071335,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22726.0,2113.0 +1071335,1071335,1071336,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22724.0,2113.0 +1071336,1071336,1071337,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22724.0,2113.0 +1071337,1071337,1071338,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22720.0,2113.0 +1071338,1071338,1071339,3,61.0,4.0,3.0,0.0,1,129000.0,1010145,1.0,22725.0,2113.0 +1071339,1071339,1071340,2,49.0,4.0,2.0,0.0,1,57000.0,1031452,3.0,22724.0,2113.0 +1071340,1071340,1071341,5,59.0,4.0,1.0,0.0,1,27600.0,1010145,2.0,22726.0,2113.0 +1071341,1071341,1071342,5,59.0,4.0,1.0,2.0,1,27600.0,1010145,2.0,22724.0,2113.0 +1071342,1071342,1071343,5,59.0,4.0,1.0,2.0,1,27600.0,1010145,2.0,22723.0,2113.0 +1071343,1071343,1071344,5,59.0,4.0,1.0,2.0,1,27600.0,1010145,2.0,22724.0,2113.0 +1071344,1071344,1071345,2,50.0,2.0,5.0,2.0,1,92000.0,1080470,3.0,22724.0,2113.0 +1071345,1071345,1071346,2,50.0,2.0,5.0,0.0,1,92000.0,1080470,3.0,22724.0,2113.0 +1071346,1071346,1071347,2,50.0,2.0,5.0,0.0,1,92000.0,1080470,3.0,22724.0,2113.0 +1071347,1071347,1071348,2,50.0,2.0,5.0,0.0,1,92000.0,1080470,3.0,22724.0,2113.0 +1071348,1071348,1071349,2,50.0,2.0,5.0,0.0,1,92000.0,1080470,3.0,22724.0,2113.0 +1071349,1071349,1071350,2,50.0,2.0,5.0,0.0,1,92000.0,1080470,3.0,22724.0,2113.0 +1071350,1071350,1071351,2,50.0,2.0,5.0,0.0,1,92000.0,1080470,3.0,22724.0,2113.0 +1071351,1071351,1071352,2,50.0,2.0,5.0,0.0,1,92000.0,1080470,3.0,22724.0,2113.0 +1071352,1071352,1071353,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071353,1071353,1071354,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071354,1071354,1071355,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071355,1071355,1071356,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071356,1071356,1071357,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071357,1071357,1071358,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071358,1071358,1071359,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071359,1071359,1071360,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22720.0,2113.0 +1071360,1071360,1071361,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22726.0,2113.0 +1071361,1071361,1071362,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071362,1071362,1071363,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071363,1071363,1071364,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071364,1071364,1071365,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071365,1071365,1071366,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071366,1071366,1071367,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071367,1071367,1071368,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071368,1071368,1071369,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22728.0,2113.0 +1071369,1071369,1071370,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22722.0,2113.0 +1071370,1071370,1071371,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22728.0,2113.0 +1071371,1071371,1071372,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22726.0,2113.0 +1071372,1071372,1071373,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071373,1071373,1071374,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071374,1071374,1071375,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071375,1071375,1071376,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071376,1071376,1071377,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22726.0,2113.0 +1071377,1071377,1071378,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071378,1071378,1071379,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22725.0,2113.0 +1071379,1071379,1071380,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071380,1071380,1071381,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071381,1071381,1071382,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22721.0,2113.0 +1071382,1071382,1071383,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22726.0,2113.0 +1071383,1071383,1071384,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22728.0,2113.0 +1071384,1071384,1071385,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22721.0,2113.0 +1071385,1071385,1071386,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071386,1071386,1071387,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071387,1071387,1071388,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22730.0,2113.0 +1071388,1071388,1071389,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071389,1071389,1071390,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071390,1071390,1071391,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22728.0,2113.0 +1071391,1071391,1071392,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22726.0,2113.0 +1071392,1071392,1071393,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071393,1071393,1071394,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22721.0,2113.0 +1071394,1071394,1071395,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071395,1071395,1071396,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071396,1071396,1071397,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071397,1071397,1071398,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071398,1071398,1071399,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22724.0,2113.0 +1071399,1071399,1071400,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22725.0,2113.0 +1071400,1071400,1071401,1,48.0,2.0,2.0,0.0,1,60000.0,1054606,6.0,22724.0,2113.0 +1071401,1071401,1071402,1,47.0,2.0,1.0,0.0,1,42000.0,1054606,4.0,22724.0,2113.0 +1071402,1071402,1071403,1,47.0,2.0,1.0,0.0,1,42000.0,1054606,4.0,22724.0,2113.0 +1071403,1071403,1071404,1,47.0,2.0,1.0,0.0,1,42000.0,1054606,4.0,22725.0,2113.0 +1071404,1071404,1071405,4,55.0,2.0,3.0,0.0,1,8150.0,1080470,1.0,22724.0,2113.0 +1071405,1071405,1071406,3,50.0,2.0,3.0,0.0,1,164000.0,1010145,3.0,22724.0,2113.0 +1071406,1071406,1071407,3,50.0,2.0,3.0,1.0,1,164000.0,1010145,3.0,22724.0,2113.0 +1071407,1071407,1071408,3,50.0,2.0,3.0,1.0,1,164000.0,1010145,3.0,22724.0,2113.0 +1071408,1071408,1071409,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22724.0,2113.0 +1071409,1071409,1071410,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22724.0,2113.0 +1071410,1071410,1071411,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22724.0,2113.0 +1071411,1071411,1071412,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22724.0,2113.0 +1071412,1071412,1071413,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22724.0,2113.0 +1071413,1071413,1071414,3,56.0,2.0,2.0,1.0,1,72000.0,1073449,2.0,22725.0,2113.0 +1071414,1071414,1071415,5,45.0,2.0,2.0,1.0,1,42000.0,1080470,1.0,22724.0,2113.0 +1071415,1071415,1071416,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22724.0,2113.0 +1071416,1071416,1071417,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22720.0,2113.0 +1071417,1071417,1071418,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22720.0,2113.0 +1071418,1071418,1071419,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22724.0,2113.0 +1071419,1071419,1071420,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22724.0,2113.0 +1071420,1071420,1071421,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22724.0,2113.0 +1071421,1071421,1071422,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22724.0,2113.0 +1071422,1071422,1071423,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22724.0,2113.0 +1071423,1071423,1071424,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22724.0,2113.0 +1071424,1071424,1071425,4,63.0,2.0,1.0,3.0,1,33500.0,1031452,3.0,22724.0,2113.0 +1071425,1071425,1071426,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22724.0,2113.0 +1071426,1071426,1071427,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22724.0,2113.0 +1071427,1071427,1071428,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22722.0,2113.0 +1071428,1071428,1071429,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22724.0,2113.0 +1071429,1071429,1071430,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22725.0,2113.0 +1071430,1071430,1071431,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22724.0,2113.0 +1071431,1071431,1071432,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22724.0,2113.0 +1071432,1071432,1071433,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22724.0,2113.0 +1071433,1071433,1071434,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22724.0,2113.0 +1071434,1071434,1071435,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22724.0,2113.0 +1071435,1071435,1071436,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22724.0,2113.0 +1071436,1071436,1071437,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071437,1071437,1071438,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22726.0,2113.0 +1071438,1071438,1071439,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22722.0,2113.0 +1071439,1071439,1071440,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22723.0,2113.0 +1071440,1071440,1071441,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22720.0,2113.0 +1071441,1071441,1071442,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22726.0,2113.0 +1071442,1071442,1071443,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071443,1071443,1071444,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071444,1071444,1071445,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071445,1071445,1071446,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071446,1071446,1071447,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071447,1071447,1071448,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22728.0,2113.0 +1071448,1071448,1071449,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22723.0,2113.0 +1071449,1071449,1071450,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22728.0,2113.0 +1071450,1071450,1071451,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071451,1071451,1071452,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071452,1071452,1071453,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071453,1071453,1071454,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071454,1071454,1071455,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22722.0,2113.0 +1071455,1071455,1071456,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071456,1071456,1071457,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071457,1071457,1071458,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22722.0,2113.0 +1071458,1071458,1071459,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071459,1071459,1071460,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071460,1071460,1071461,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071461,1071461,1071462,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071462,1071462,1071463,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071463,1071463,1071464,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071464,1071464,1071465,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071465,1071465,1071466,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22720.0,2113.0 +1071466,1071466,1071467,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22721.0,2113.0 +1071467,1071467,1071468,3,54.0,2.0,1.0,1.0,1,15200.0,1073449,3.0,22724.0,2113.0 +1071468,1071468,1071469,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22724.0,2113.0 +1071469,1071469,1071470,2,47.0,3.0,1.0,1.0,1,37400.0,1080470,1.0,22724.0,2113.0 +1071470,1071470,1071471,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071471,1071471,1071472,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22729.0,2113.0 +1071472,1071472,1071473,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071473,1071473,1071474,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22728.0,2113.0 +1071474,1071474,1071475,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071475,1071475,1071476,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071476,1071476,1071477,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071477,1071477,1071478,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22721.0,2113.0 +1071478,1071478,1071479,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22730.0,2113.0 +1071479,1071479,1071480,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22720.0,2113.0 +1071480,1071480,1071481,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071481,1071481,1071482,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071482,1071482,1071483,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22721.0,2113.0 +1071483,1071483,1071484,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071484,1071484,1071485,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22727.0,2113.0 +1071485,1071485,1071486,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071486,1071486,1071487,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22728.0,2113.0 +1071487,1071487,1071488,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22728.0,2113.0 +1071488,1071488,1071489,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071489,1071489,1071490,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22728.0,2113.0 +1071490,1071490,1071491,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22723.0,2113.0 +1071491,1071491,1071492,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22723.0,2113.0 +1071492,1071492,1071493,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071493,1071493,1071494,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071494,1071494,1071495,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071495,1071495,1071496,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22720.0,2113.0 +1071496,1071496,1071497,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071497,1071497,1071498,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22720.0,2113.0 +1071498,1071498,1071499,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22724.0,2113.0 +1071499,1071499,1071500,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22722.0,2113.0 +1071500,1071500,1071501,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22726.0,2113.0 +1071501,1071501,1071502,3,49.0,1.0,2.0,0.0,1,100000.0,1054606,1.0,22724.0,2113.0 +1071502,1071502,1071503,3,61.0,1.0,2.0,0.0,1,78600.0,1054606,3.0,22726.0,2113.0 +1071503,1071503,1071504,3,61.0,1.0,2.0,0.0,1,78600.0,1054606,3.0,22720.0,2113.0 +1071504,1071504,1071505,3,61.0,1.0,2.0,0.0,1,78600.0,1054606,3.0,22724.0,2113.0 +1071505,1071505,1071506,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22721.0,2113.0 +1071506,1071506,1071507,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22722.0,2113.0 +1071507,1071507,1071508,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22725.0,2113.0 +1071508,1071508,1071509,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071509,1071509,1071510,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071510,1071510,1071511,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071511,1071511,1071512,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22730.0,2113.0 +1071512,1071512,1071513,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071513,1071513,1071514,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22723.0,2113.0 +1071514,1071514,1071515,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071515,1071515,1071516,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22730.0,2113.0 +1071516,1071516,1071517,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071517,1071517,1071518,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071518,1071518,1071519,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071519,1071519,1071520,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071520,1071520,1071521,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22721.0,2113.0 +1071521,1071521,1071522,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071522,1071522,1071523,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22728.0,2113.0 +1071523,1071523,1071524,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071524,1071524,1071525,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22726.0,2113.0 +1071525,1071525,1071526,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22720.0,2113.0 +1071526,1071526,1071527,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071527,1071527,1071528,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22725.0,2113.0 +1071528,1071528,1071529,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22728.0,2113.0 +1071529,1071529,1071530,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071530,1071530,1071531,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071531,1071531,1071532,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071532,1071532,1071533,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22726.0,2113.0 +1071533,1071533,1071534,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071534,1071534,1071535,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22721.0,2113.0 +1071535,1071535,1071536,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071536,1071536,1071537,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071537,1071537,1071538,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071538,1071538,1071539,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22721.0,2113.0 +1071539,1071539,1071540,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071540,1071540,1071541,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22723.0,2113.0 +1071541,1071541,1071542,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22723.0,2113.0 +1071542,1071542,1071543,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071543,1071543,1071544,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071544,1071544,1071545,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071545,1071545,1071546,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071546,1071546,1071547,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22724.0,2113.0 +1071547,1071547,1071548,3,52.0,1.0,3.0,0.0,1,35000.0,1054606,3.0,22724.0,2113.0 +1071548,1071548,1071549,3,52.0,1.0,3.0,0.0,1,35000.0,1054606,3.0,22721.0,2113.0 +1071549,1071549,1071550,3,52.0,1.0,3.0,0.0,1,35000.0,1054606,3.0,22730.0,2113.0 +1071550,1071550,1071551,3,52.0,1.0,3.0,0.0,1,35000.0,1054606,3.0,22721.0,2113.0 +1071551,1071551,1071552,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22730.0,2113.0 +1071552,1071552,1071553,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22724.0,2113.0 +1071553,1071553,1071554,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22724.0,2113.0 +1071554,1071554,1071555,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22728.0,2113.0 +1071555,1071555,1071556,3,46.0,1.0,3.0,0.0,1,11000.0,1054606,1.0,22724.0,2113.0 +1071556,1071556,1071557,3,46.0,1.0,3.0,0.0,1,11000.0,1054606,1.0,22724.0,2113.0 +1071557,1071557,1071558,3,46.0,1.0,3.0,0.0,1,11000.0,1054606,1.0,22720.0,2113.0 +1071558,1071558,1071559,3,46.0,1.0,3.0,0.0,1,11000.0,1054606,1.0,22726.0,2113.0 +1071559,1071559,1071560,3,46.0,1.0,3.0,0.0,1,11000.0,1054606,1.0,22728.0,2113.0 +1071560,1071560,1071561,3,46.0,1.0,3.0,0.0,1,11000.0,1054606,1.0,22725.0,2113.0 +1071561,1071561,1071562,3,46.0,1.0,3.0,0.0,1,11000.0,1054606,1.0,22724.0,2113.0 +1071562,1071562,1071563,6,52.0,1.0,3.0,0.0,1,203000.0,1080470,1.0,22724.0,2113.0 +1071563,1071563,1071564,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22724.0,2113.0 +1071564,1071564,1071565,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22720.0,2113.0 +1071565,1071565,1071566,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22724.0,2113.0 +1071566,1071566,1071567,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22724.0,2113.0 +1071567,1071567,1071568,6,51.0,1.0,3.0,3.0,1,38100.0,1031452,1.0,22724.0,2113.0 +1071568,1071568,1071569,6,51.0,1.0,3.0,3.0,1,38100.0,1031452,1.0,22724.0,2113.0 +1071569,1071569,1071570,6,47.0,1.0,3.0,3.0,1,26510.0,1054606,3.0,22724.0,2113.0 +1071570,1071570,1071571,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22730.0,2113.0 +1071571,1071571,1071572,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22723.0,2113.0 +1071572,1071572,1071573,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22724.0,2113.0 +1071573,1071573,1071574,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22724.0,2113.0 +1071574,1071574,1071575,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22724.0,2113.0 +1071575,1071575,1071576,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22724.0,2113.0 +1071576,1071576,1071577,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22721.0,2113.0 +1071577,1071577,1071578,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22724.0,2113.0 +1071578,1071578,1071579,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22724.0,2113.0 +1071579,1071579,1071580,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22725.0,2113.0 +1071580,1071580,1071581,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22721.0,2113.0 +1071581,1071581,1071582,1,40.0,3.0,2.0,2.0,1,65000.0,1031452,4.0,22730.0,2113.0 +1071582,1071582,1071583,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22724.0,2113.0 +1071583,1071583,1071584,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22724.0,2113.0 +1071584,1071584,1071585,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22722.0,2113.0 +1071585,1071585,1071586,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22724.0,2113.0 +1071586,1071586,1071587,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22724.0,2113.0 +1071587,1071587,1071588,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22724.0,2113.0 +1071588,1071588,1071589,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22722.0,2113.0 +1071589,1071589,1071590,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22726.0,2113.0 +1071590,1071590,1071591,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22728.0,2113.0 +1071591,1071591,1071592,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22728.0,2113.0 +1071592,1071592,1071593,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22722.0,2113.0 +1071593,1071593,1071594,1,40.0,3.0,2.0,0.0,1,65000.0,1031452,4.0,22724.0,2113.0 +1071594,1071594,1071595,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071595,1071595,1071596,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071596,1071596,1071597,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22730.0,2113.0 +1071597,1071597,1071598,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071598,1071598,1071599,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071599,1071599,1071600,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071600,1071600,1071601,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071601,1071601,1071602,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071602,1071602,1071603,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071603,1071603,1071604,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071604,1071604,1071605,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22721.0,2113.0 +1071605,1071605,1071606,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071606,1071606,1071607,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071607,1071607,1071608,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071608,1071608,1071609,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22730.0,2113.0 +1071609,1071609,1071610,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071610,1071610,1071611,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071611,1071611,1071612,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071612,1071612,1071613,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071613,1071613,1071614,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071614,1071614,1071615,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22720.0,2113.0 +1071615,1071615,1071616,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071616,1071616,1071617,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22728.0,2113.0 +1071617,1071617,1071618,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22722.0,2113.0 +1071618,1071618,1071619,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22728.0,2113.0 +1071619,1071619,1071620,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071620,1071620,1071621,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071621,1071621,1071622,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22724.0,2113.0 +1071622,1071622,1071623,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071623,1071623,1071624,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22722.0,2113.0 +1071624,1071624,1071625,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071625,1071625,1071626,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071626,1071626,1071627,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22726.0,2113.0 +1071627,1071627,1071628,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071628,1071628,1071629,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071629,1071629,1071630,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071630,1071630,1071631,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22728.0,2113.0 +1071631,1071631,1071632,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071632,1071632,1071633,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22725.0,2113.0 +1071633,1071633,1071634,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071634,1071634,1071635,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071635,1071635,1071636,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071636,1071636,1071637,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071637,1071637,1071638,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071638,1071638,1071639,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22724.0,2113.0 +1071639,1071639,1071640,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22724.0,2113.0 +1071640,1071640,1071641,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22726.0,2113.0 +1071641,1071641,1071642,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22724.0,2113.0 +1071642,1071642,1071643,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22724.0,2113.0 +1071643,1071643,1071644,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22725.0,2113.0 +1071644,1071644,1071645,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22720.0,2113.0 +1071645,1071645,1071646,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22724.0,2113.0 +1071646,1071646,1071647,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22726.0,2113.0 +1071647,1071647,1071648,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22724.0,2113.0 +1071648,1071648,1071649,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22728.0,2113.0 +1071649,1071649,1071650,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22724.0,2113.0 +1071650,1071650,1071651,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22726.0,2113.0 +1071651,1071651,1071652,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22724.0,2113.0 +1071652,1071652,1071653,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22726.0,2113.0 +1071653,1071653,1071654,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22724.0,2113.0 +1071654,1071654,1071655,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22726.0,2113.0 +1071655,1071655,1071656,2,26.0,3.0,1.0,0.0,1,32000.0,1080470,3.0,22724.0,2113.0 +1071656,1071656,1071657,2,26.0,3.0,1.0,1.0,1,32000.0,1080470,3.0,22725.0,2113.0 +1071657,1071657,1071658,2,39.0,2.0,1.0,1.0,1,67000.0,1080470,3.0,22724.0,2113.0 +1071658,1071658,1071659,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22722.0,2113.0 +1071659,1071659,1071660,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22728.0,2113.0 +1071660,1071660,1071661,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071661,1071661,1071662,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22720.0,2113.0 +1071662,1071662,1071663,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071663,1071663,1071664,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071664,1071664,1071665,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071665,1071665,1071666,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071666,1071666,1071667,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071667,1071667,1071668,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22722.0,2113.0 +1071668,1071668,1071669,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071669,1071669,1071670,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22730.0,2113.0 +1071670,1071670,1071671,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071671,1071671,1071672,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22728.0,2113.0 +1071672,1071672,1071673,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071673,1071673,1071674,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22721.0,2113.0 +1071674,1071674,1071675,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071675,1071675,1071676,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071676,1071676,1071677,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22726.0,2113.0 +1071677,1071677,1071678,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22721.0,2113.0 +1071678,1071678,1071679,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071679,1071679,1071680,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071680,1071680,1071681,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071681,1071681,1071682,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071682,1071682,1071683,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071683,1071683,1071684,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22724.0,2113.0 +1071684,1071684,1071685,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071685,1071685,1071686,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071686,1071686,1071687,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071687,1071687,1071688,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22721.0,2113.0 +1071688,1071688,1071689,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22720.0,2113.0 +1071689,1071689,1071690,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071690,1071690,1071691,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071691,1071691,1071692,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071692,1071692,1071693,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071693,1071693,1071694,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071694,1071694,1071695,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071695,1071695,1071696,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22728.0,2113.0 +1071696,1071696,1071697,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071697,1071697,1071698,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071698,1071698,1071699,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22728.0,2113.0 +1071699,1071699,1071700,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071700,1071700,1071701,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071701,1071701,1071702,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071702,1071702,1071703,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071703,1071703,1071704,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22728.0,2113.0 +1071704,1071704,1071705,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071705,1071705,1071706,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071706,1071706,1071707,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071707,1071707,1071708,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071708,1071708,1071709,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071709,1071709,1071710,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071710,1071710,1071711,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071711,1071711,1071712,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071712,1071712,1071713,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22721.0,2113.0 +1071713,1071713,1071714,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22725.0,2113.0 +1071714,1071714,1071715,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22726.0,2113.0 +1071715,1071715,1071716,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071716,1071716,1071717,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071717,1071717,1071718,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22726.0,2113.0 +1071718,1071718,1071719,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071719,1071719,1071720,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071720,1071720,1071721,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071721,1071721,1071722,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071722,1071722,1071723,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071723,1071723,1071724,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071724,1071724,1071725,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071725,1071725,1071726,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071726,1071726,1071727,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071727,1071727,1071728,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22728.0,2113.0 +1071728,1071728,1071729,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071729,1071729,1071730,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071730,1071730,1071731,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071731,1071731,1071732,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071732,1071732,1071733,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071733,1071733,1071734,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22725.0,2113.0 +1071734,1071734,1071735,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071735,1071735,1071736,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22725.0,2113.0 +1071736,1071736,1071737,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071737,1071737,1071738,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071738,1071738,1071739,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071739,1071739,1071740,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071740,1071740,1071741,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22720.0,2113.0 +1071741,1071741,1071742,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071742,1071742,1071743,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071743,1071743,1071744,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071744,1071744,1071745,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071745,1071745,1071746,2,27.0,2.0,2.0,0.0,1,40000.0,1054606,5.0,22724.0,2113.0 +1071746,1071746,1071747,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22724.0,2113.0 +1071747,1071747,1071748,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22724.0,2113.0 +1071748,1071748,1071749,1,43.0,2.0,1.0,0.0,1,38500.0,1031452,6.0,22728.0,2113.0 +1071749,1071749,1071750,1,43.0,2.0,1.0,0.0,1,38500.0,1031452,6.0,22724.0,2113.0 +1071750,1071750,1071751,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22724.0,2113.0 +1071751,1071751,1071752,1,43.0,2.0,1.0,0.0,1,38500.0,1031452,6.0,22728.0,2113.0 +1071752,1071752,1071753,1,43.0,2.0,1.0,0.0,1,38500.0,1031452,6.0,22724.0,2113.0 +1071753,1071753,1071754,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22724.0,2113.0 +1071754,1071754,1071755,1,32.0,2.0,1.0,0.0,1,50000.0,1073449,6.0,22724.0,2113.0 +1071755,1071755,1071756,1,32.0,2.0,1.0,0.0,1,50000.0,1073449,6.0,22726.0,2113.0 +1071756,1071756,1071757,1,43.0,2.0,1.0,0.0,1,38500.0,1031452,6.0,22724.0,2113.0 +1071757,1071757,1071758,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22724.0,2113.0 +1071758,1071758,1071759,1,32.0,2.0,1.0,0.0,1,50000.0,1073449,6.0,22724.0,2113.0 +1071759,1071759,1071760,1,43.0,2.0,1.0,0.0,1,38500.0,1031452,6.0,22724.0,2113.0 +1071760,1071760,1071761,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22726.0,2113.0 +1071761,1071761,1071762,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22726.0,2113.0 +1071762,1071762,1071763,1,43.0,2.0,1.0,0.0,1,38500.0,1031452,6.0,22720.0,2113.0 +1071763,1071763,1071764,1,43.0,2.0,1.0,0.0,1,38500.0,1031452,6.0,22724.0,2113.0 +1071764,1071764,1071765,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22724.0,2113.0 +1071765,1071765,1071766,1,43.0,2.0,1.0,0.0,1,38500.0,1031452,6.0,22724.0,2113.0 +1071766,1071766,1071767,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22724.0,2113.0 +1071767,1071767,1071768,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22724.0,2113.0 +1071768,1071768,1071769,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22724.0,2113.0 +1071769,1071769,1071770,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22724.0,2113.0 +1071770,1071770,1071771,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22724.0,2113.0 +1071771,1071771,1071772,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22724.0,2113.0 +1071772,1071772,1071773,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22724.0,2113.0 +1071773,1071773,1071774,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22724.0,2113.0 +1071774,1071774,1071775,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22724.0,2113.0 +1071775,1071775,1071776,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22724.0,2113.0 +1071776,1071776,1071777,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22729.0,2113.0 +1071777,1071777,1071778,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22724.0,2113.0 +1071778,1071778,1071779,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22730.0,2113.0 +1071779,1071779,1071780,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22724.0,2113.0 +1071780,1071780,1071781,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22724.0,2113.0 +1071781,1071781,1071782,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22724.0,2113.0 +1071782,1071782,1071783,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22724.0,2113.0 +1071783,1071783,1071784,1,25.0,2.0,1.0,0.0,1,12000.0,1010145,6.0,22725.0,2113.0 +1071784,1071784,1071785,1,25.0,2.0,1.0,0.0,1,12000.0,1010145,6.0,22724.0,2113.0 +1071785,1071785,1071786,1,28.0,2.0,0.0,0.0,1,25300.0,1073449,6.0,22730.0,2113.0 +1071786,1071786,1071787,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22724.0,2113.0 +1071787,1071787,1071788,1,25.0,2.0,0.0,0.0,1,13000.0,1080470,4.0,22724.0,2113.0 +1071788,1071788,1071789,1,37.0,2.0,0.0,0.0,1,27000.0,1080470,4.0,22725.0,2113.0 +1071789,1071789,1071790,1,37.0,2.0,0.0,0.0,1,27000.0,1080470,4.0,22724.0,2113.0 +1071790,1071790,1071791,1,37.0,2.0,0.0,0.0,1,27000.0,1080470,4.0,22724.0,2113.0 +1071791,1071791,1071792,1,37.0,2.0,0.0,0.0,1,27000.0,1080470,4.0,22724.0,2113.0 +1071792,1071792,1071793,1,37.0,2.0,0.0,0.0,1,27000.0,1080470,4.0,22724.0,2113.0 +1071793,1071793,1071794,1,30.0,2.0,0.0,0.0,1,11500.0,1073449,4.0,22724.0,2113.0 +1071794,1071794,1071795,1,30.0,2.0,0.0,0.0,1,11500.0,1073449,4.0,22722.0,2113.0 +1071795,1071795,1071796,1,44.0,2.0,0.0,0.0,1,19600.0,1031452,4.0,22724.0,2113.0 +1071796,1071796,1071797,2,43.0,2.0,1.0,0.0,1,106000.0,1010145,3.0,22724.0,2113.0 +1071797,1071797,1071798,2,43.0,2.0,1.0,1.0,1,106000.0,1010145,3.0,22728.0,2113.0 +1071798,1071798,1071799,2,44.0,2.0,1.0,1.0,1,98000.0,1031452,3.0,22724.0,2113.0 +1071799,1071799,1071800,2,44.0,2.0,1.0,1.0,1,98000.0,1031452,3.0,22724.0,2113.0 +1071800,1071800,1071801,2,44.0,2.0,1.0,1.0,1,98000.0,1031452,3.0,22724.0,2113.0 +1071801,1071801,1071802,2,44.0,2.0,1.0,1.0,1,98000.0,1031452,3.0,22724.0,2113.0 +1071802,1071802,1071803,2,44.0,2.0,1.0,1.0,1,98000.0,1031452,3.0,22724.0,2113.0 +1071803,1071803,1071804,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22724.0,2113.0 +1071804,1071804,1071805,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22726.0,2113.0 +1071805,1071805,1071806,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22724.0,2113.0 +1071806,1071806,1071807,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22724.0,2113.0 +1071807,1071807,1071808,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22724.0,2113.0 +1071808,1071808,1071809,3,35.0,2.0,1.0,1.0,1,34000.0,1010145,3.0,22725.0,2113.0 +1071809,1071809,1071810,2,25.0,2.0,0.0,1.0,1,22000.0,1054606,3.0,22724.0,2113.0 +1071810,1071810,1071811,2,25.0,2.0,0.0,1.0,1,22000.0,1054606,3.0,22724.0,2113.0 +1071811,1071811,1071812,2,25.0,2.0,0.0,1.0,1,22000.0,1054606,3.0,22730.0,2113.0 +1071812,1071812,1071813,2,25.0,2.0,0.0,1.0,1,22000.0,1054606,3.0,22721.0,2113.0 +1071813,1071813,1071814,2,25.0,2.0,0.0,1.0,1,22000.0,1054606,3.0,22724.0,2113.0 +1071814,1071814,1071815,2,25.0,2.0,0.0,1.0,1,22000.0,1054606,3.0,22724.0,2113.0 +1071815,1071815,1071816,2,25.0,2.0,0.0,1.0,1,22000.0,1054606,3.0,22724.0,2113.0 +1071816,1071816,1071817,2,25.0,2.0,0.0,1.0,1,22000.0,1054606,3.0,22724.0,2113.0 +1071817,1071817,1071818,3,29.0,2.0,0.0,1.0,1,8800.0,1073449,3.0,22724.0,2113.0 +1071818,1071818,1071819,3,29.0,2.0,0.0,2.0,1,8800.0,1073449,3.0,22724.0,2113.0 +1071819,1071819,1071820,3,28.0,1.0,3.0,2.0,1,61300.0,1073449,5.0,22720.0,2113.0 +1071820,1071820,1071821,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22724.0,2113.0 +1071821,1071821,1071822,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22723.0,2113.0 +1071822,1071822,1071823,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22728.0,2113.0 +1071823,1071823,1071824,3,28.0,1.0,3.0,0.0,1,61300.0,1073449,5.0,22726.0,2113.0 +1071824,1071824,1071825,5,43.0,1.0,2.0,0.0,1,47500.0,1054606,1.0,22722.0,2113.0 +1071825,1071825,1071826,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22724.0,2113.0 +1071826,1071826,1071827,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22724.0,2113.0 +1071827,1071827,1071828,6,40.0,1.0,5.0,1.0,1,42600.0,1010145,1.0,22725.0,2113.0 +1071828,1071828,1071829,4,38.0,1.0,1.0,3.0,1,41000.0,1010145,2.0,22726.0,2113.0 +1071829,1071829,1071830,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22721.0,2113.0 +1071830,1071830,1071831,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071831,1071831,1071832,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071832,1071832,1071833,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071833,1071833,1071834,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071834,1071834,1071835,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071835,1071835,1071836,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071836,1071836,1071837,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071837,1071837,1071838,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071838,1071838,1071839,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22728.0,2113.0 +1071839,1071839,1071840,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071840,1071840,1071841,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071841,1071841,1071842,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22726.0,2113.0 +1071842,1071842,1071843,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071843,1071843,1071844,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22726.0,2113.0 +1071844,1071844,1071845,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071845,1071845,1071846,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22726.0,2113.0 +1071846,1071846,1071847,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22730.0,2113.0 +1071847,1071847,1071848,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071848,1071848,1071849,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071849,1071849,1071850,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071850,1071850,1071851,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071851,1071851,1071852,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071852,1071852,1071853,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22726.0,2113.0 +1071853,1071853,1071854,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071854,1071854,1071855,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071855,1071855,1071856,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071856,1071856,1071857,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071857,1071857,1071858,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071858,1071858,1071859,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22726.0,2113.0 +1071859,1071859,1071860,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071860,1071860,1071861,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071861,1071861,1071862,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071862,1071862,1071863,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22726.0,2113.0 +1071863,1071863,1071864,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071864,1071864,1071865,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071865,1071865,1071866,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071866,1071866,1071867,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071867,1071867,1071868,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071868,1071868,1071869,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071869,1071869,1071870,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071870,1071870,1071871,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071871,1071871,1071872,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22725.0,2113.0 +1071872,1071872,1071873,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22722.0,2113.0 +1071873,1071873,1071874,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071874,1071874,1071875,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22724.0,2113.0 +1071875,1071875,1071876,2,19.0,4.0,2.0,1.0,1,26400.0,1010145,2.0,22722.0,2113.0 +1071876,1071876,1071877,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22724.0,2113.0 +1071877,1071877,1071878,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22726.0,2113.0 +1071878,1071878,1071879,1,24.0,4.0,1.0,0.0,1,10400.0,1010145,6.0,22724.0,2113.0 +1071879,1071879,1071880,1,24.0,4.0,1.0,0.0,1,10400.0,1010145,6.0,22724.0,2113.0 +1071880,1071880,1071881,1,24.0,4.0,1.0,0.0,1,10400.0,1010145,6.0,22724.0,2113.0 +1071881,1071881,1071882,1,24.0,4.0,1.0,0.0,1,10400.0,1010145,6.0,22724.0,2113.0 +1071882,1071882,1071883,1,24.0,4.0,1.0,0.0,1,10400.0,1010145,6.0,22723.0,2113.0 +1071883,1071883,1071884,1,24.0,4.0,1.0,0.0,1,10400.0,1010145,6.0,22724.0,2113.0 +1071884,1071884,1071885,1,24.0,4.0,1.0,0.0,1,10400.0,1010145,6.0,22724.0,2113.0 +1071885,1071885,1071886,1,24.0,4.0,1.0,0.0,1,10400.0,1010145,6.0,22721.0,2113.0 +1071886,1071886,1071887,1,24.0,4.0,1.0,0.0,1,10400.0,1010145,6.0,22728.0,2113.0 +1071887,1071887,1071888,1,24.0,4.0,1.0,0.0,1,10400.0,1010145,6.0,22724.0,2113.0 +1071888,1071888,1071889,2,23.0,2.0,2.0,0.0,1,35000.0,1080470,5.0,22729.0,2113.0 +1071889,1071889,1071890,2,19.0,2.0,2.0,0.0,1,60000.0,1080470,5.0,22723.0,2113.0 +1071890,1071890,1071891,2,19.0,2.0,2.0,0.0,1,60000.0,1080470,5.0,22724.0,2113.0 +1071891,1071891,1071892,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22724.0,2113.0 +1071892,1071892,1071893,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22724.0,2113.0 +1071893,1071893,1071894,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22724.0,2113.0 +1071894,1071894,1071895,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22724.0,2113.0 +1071895,1071895,1071896,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22724.0,2113.0 +1071896,1071896,1071897,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22722.0,2113.0 +1071897,1071897,1071898,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22724.0,2113.0 +1071898,1071898,1071899,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22724.0,2113.0 +1071899,1071899,1071900,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22724.0,2113.0 +1071900,1071900,1071901,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22726.0,2113.0 +1071901,1071901,1071902,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22724.0,2113.0 +1071902,1071902,1071903,1,23.0,2.0,1.0,0.0,1,40000.0,1054606,6.0,22724.0,2113.0 +1071903,1071903,1071904,2,20.0,2.0,0.0,0.0,1,36000.0,1080470,2.0,22725.0,2113.0 +1071904,1071904,1071905,2,20.0,2.0,0.0,0.0,1,36000.0,1080470,2.0,22724.0,2113.0 +1071905,1071905,1071906,2,20.0,2.0,0.0,0.0,1,36000.0,1080470,2.0,22730.0,2113.0 +1071906,1071906,1071907,2,20.0,2.0,0.0,0.0,1,36000.0,1080470,2.0,22726.0,2113.0 +1071907,1071907,1071908,2,20.0,2.0,0.0,0.0,1,36000.0,1080470,2.0,22728.0,2113.0 +1071908,1071908,1071909,2,20.0,2.0,0.0,0.0,1,36000.0,1080470,2.0,22728.0,2113.0 +1071909,1071909,1071910,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22721.0,2113.0 +1071910,1071910,1071911,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22725.0,2113.0 +1071911,1071911,1071912,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22728.0,2113.0 +1071912,1071912,1071913,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071913,1071913,1071914,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22730.0,2113.0 +1071914,1071914,1071915,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071915,1071915,1071916,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071916,1071916,1071917,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22722.0,2113.0 +1071917,1071917,1071918,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071918,1071918,1071919,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071919,1071919,1071920,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071920,1071920,1071921,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071921,1071921,1071922,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071922,1071922,1071923,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071923,1071923,1071924,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071924,1071924,1071925,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22720.0,2113.0 +1071925,1071925,1071926,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071926,1071926,1071927,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22723.0,2113.0 +1071927,1071927,1071928,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22723.0,2113.0 +1071928,1071928,1071929,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071929,1071929,1071930,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22721.0,2113.0 +1071930,1071930,1071931,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071931,1071931,1071932,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071932,1071932,1071933,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071933,1071933,1071934,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22720.0,2113.0 +1071934,1071934,1071935,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071935,1071935,1071936,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22726.0,2113.0 +1071936,1071936,1071937,2,21.0,2.0,2.0,0.0,1,28000.0,1054606,5.0,22724.0,2113.0 +1071937,1071937,1071938,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22724.0,2113.0 +1071938,1071938,1071939,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22724.0,2113.0 +1071939,1071939,1071940,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22721.0,2113.0 +1071940,1071940,1071941,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22720.0,2113.0 +1071941,1071941,1071942,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22724.0,2113.0 +1071942,1071942,1071943,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22722.0,2113.0 +1071943,1071943,1071944,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22725.0,2113.0 +1071944,1071944,1071945,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22726.0,2113.0 +1071945,1071945,1071946,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22724.0,2113.0 +1071946,1071946,1071947,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22729.0,2113.0 +1071947,1071947,1071948,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22724.0,2113.0 +1071948,1071948,1071949,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22724.0,2113.0 +1071949,1071949,1071950,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22726.0,2113.0 +1071950,1071950,1071951,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22721.0,2113.0 +1071951,1071951,1071952,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22722.0,2113.0 +1071952,1071952,1071953,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22724.0,2113.0 +1071953,1071953,1071954,1,23.0,2.0,2.0,0.0,1,10700.0,1080470,6.0,22724.0,2113.0 +1071954,1071954,1071955,2,19.0,2.0,1.0,0.0,1,8000.0,1080470,7.0,22725.0,2113.0 +1071955,1071955,1071956,2,19.0,2.0,1.0,0.0,1,8000.0,1080470,7.0,22724.0,2113.0 +1071956,1071956,1071957,2,19.0,2.0,1.0,0.0,1,8000.0,1080470,7.0,22724.0,2113.0 +1071957,1071957,1071958,2,19.0,2.0,1.0,0.0,1,8000.0,1080470,7.0,22724.0,2113.0 +1071958,1071958,1071959,2,19.0,2.0,1.0,0.0,1,8000.0,1080470,7.0,22724.0,2113.0 +1071959,1071959,1071960,2,19.0,2.0,1.0,0.0,1,8000.0,1080470,7.0,22724.0,2113.0 +1071960,1071960,1071961,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22724.0,2113.0 +1071961,1071961,1071962,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22724.0,2113.0 +1071962,1071962,1071963,1,24.0,2.0,1.0,0.0,1,9000.0,1073449,6.0,22724.0,2113.0 +1071963,1071963,1071964,1,23.0,2.0,1.0,0.0,1,15000.0,1054606,6.0,22724.0,2113.0 +1071964,1071964,1071965,1,23.0,2.0,1.0,0.0,1,15000.0,1054606,6.0,22726.0,2113.0 +1071965,1071965,1071966,1,23.0,2.0,1.0,0.0,1,15000.0,1054606,6.0,22724.0,2113.0 +1071966,1071966,1071967,1,23.0,2.0,1.0,0.0,1,15000.0,1054606,6.0,22728.0,2113.0 +1071967,1071967,1071968,1,23.0,2.0,1.0,0.0,1,10800.0,1073449,4.0,22724.0,2113.0 +1071968,1071968,1071969,1,23.0,2.0,1.0,0.0,1,10800.0,1073449,4.0,22724.0,2113.0 +1071969,1071969,1071970,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22724.0,2113.0 +1071970,1071970,1071971,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22724.0,2113.0 +1071971,1071971,1071972,1,23.0,2.0,1.0,0.0,1,10800.0,1073449,4.0,22722.0,2113.0 +1071972,1071972,1071973,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22728.0,2113.0 +1071973,1071973,1071974,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22724.0,2113.0 +1071974,1071974,1071975,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22724.0,2113.0 +1071975,1071975,1071976,1,23.0,2.0,1.0,0.0,1,10800.0,1073449,4.0,22724.0,2113.0 +1071976,1071976,1071977,1,23.0,2.0,1.0,0.0,1,10800.0,1073449,4.0,22721.0,2113.0 +1071977,1071977,1071978,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22724.0,2113.0 +1071978,1071978,1071979,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22724.0,2113.0 +1071979,1071979,1071980,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22724.0,2113.0 +1071980,1071980,1071981,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22724.0,2113.0 +1071981,1071981,1071982,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22724.0,2113.0 +1071982,1071982,1071983,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22728.0,2113.0 +1071983,1071983,1071984,1,23.0,2.0,1.0,0.0,1,10800.0,1073449,4.0,22724.0,2113.0 +1071984,1071984,1071985,1,23.0,2.0,1.0,0.0,1,30000.0,1080470,4.0,22724.0,2113.0 +1071985,1071985,1071986,1,23.0,2.0,1.0,0.0,1,10800.0,1073449,4.0,22724.0,2113.0 +1071986,1071986,1071987,1,23.0,2.0,1.0,0.0,1,10800.0,1073449,4.0,22724.0,2113.0 +1071987,1071987,1071988,1,24.0,2.0,1.0,0.0,1,15000.0,1080470,4.0,22724.0,2113.0 +1071988,1071988,1071989,1,23.0,2.0,1.0,0.0,1,14190.0,1054606,4.0,22724.0,2113.0 +1071989,1071989,1071990,1,24.0,2.0,1.0,0.0,1,3200.0,1080470,4.0,22724.0,2113.0 +1071990,1071990,1071991,1,24.0,2.0,1.0,0.0,1,3200.0,1080470,4.0,22724.0,2113.0 +1071991,1071991,1071992,1,24.0,2.0,1.0,0.0,1,3200.0,1080470,4.0,22721.0,2113.0 +1071992,1071992,1071993,1,24.0,2.0,1.0,0.0,1,3200.0,1080470,4.0,22724.0,2113.0 +1071993,1071993,1071994,1,23.0,2.0,1.0,0.0,1,14190.0,1054606,4.0,22729.0,2113.0 +1071994,1071994,1071995,1,24.0,2.0,1.0,0.0,1,3200.0,1080470,4.0,22722.0,2113.0 +1071995,1071995,1071996,1,23.0,2.0,1.0,0.0,1,14190.0,1054606,4.0,22724.0,2113.0 +1071996,1071996,1071997,1,24.0,2.0,1.0,0.0,1,3200.0,1080470,4.0,22724.0,2113.0 +1071997,1071997,1071998,1,23.0,2.0,1.0,0.0,1,14190.0,1054606,4.0,22724.0,2113.0 +1071998,1071998,1071999,1,24.0,2.0,1.0,0.0,1,3200.0,1080470,4.0,22721.0,2113.0 +1071999,1071999,1072000,1,22.0,2.0,0.0,0.0,1,20100.0,1031452,6.0,22724.0,2113.0 +1072000,1072000,1072001,1,22.0,2.0,0.0,0.0,1,20100.0,1031452,6.0,22724.0,2113.0 +1072001,1072001,1072002,1,22.0,2.0,0.0,0.0,1,20100.0,1031452,6.0,22724.0,2113.0 +1072002,1072002,1072003,1,22.0,2.0,0.0,0.0,1,20100.0,1031452,6.0,22724.0,2113.0 +1072003,1072003,1072004,1,22.0,2.0,0.0,0.0,1,20100.0,1031452,6.0,22722.0,2113.0 +1072004,1072004,1072005,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22724.0,2113.0 +1072005,1072005,1072006,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22724.0,2113.0 +1072006,1072006,1072007,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22723.0,2113.0 +1072007,1072007,1072008,1,23.0,2.0,0.0,0.0,1,11000.0,1010145,4.0,22724.0,2113.0 +1072008,1072008,1072009,1,23.0,2.0,0.0,0.0,1,9300.0,1031452,4.0,22724.0,2113.0 +1072009,1072009,1072010,1,23.0,2.0,0.0,0.0,1,11000.0,1010145,4.0,22724.0,2113.0 +1072010,1072010,1072011,3,23.0,2.0,1.0,0.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072011,1072011,1072012,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22725.0,2113.0 +1072012,1072012,1072013,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072013,1072013,1072014,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072014,1072014,1072015,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22725.0,2113.0 +1072015,1072015,1072016,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22722.0,2113.0 +1072016,1072016,1072017,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072017,1072017,1072018,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22730.0,2113.0 +1072018,1072018,1072019,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072019,1072019,1072020,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072020,1072020,1072021,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22728.0,2113.0 +1072021,1072021,1072022,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072022,1072022,1072023,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22722.0,2113.0 +1072023,1072023,1072024,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072024,1072024,1072025,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072025,1072025,1072026,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072026,1072026,1072027,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22720.0,2113.0 +1072027,1072027,1072028,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072028,1072028,1072029,3,23.0,2.0,1.0,2.0,1,13200.0,1010145,3.0,22724.0,2113.0 +1072029,1072029,1072030,2,24.0,2.0,1.0,2.0,1,9700.0,1031452,3.0,22725.0,2113.0 +1072030,1072030,1072031,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22720.0,2113.0 +1072031,1072031,1072032,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22728.0,2113.0 +1072032,1072032,1072033,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22728.0,2113.0 +1072033,1072033,1072034,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22724.0,2113.0 +1072034,1072034,1072035,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22721.0,2113.0 +1072035,1072035,1072036,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22724.0,2113.0 +1072036,1072036,1072037,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22724.0,2113.0 +1072037,1072037,1072038,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22724.0,2113.0 +1072038,1072038,1072039,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22725.0,2113.0 +1072039,1072039,1072040,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22728.0,2113.0 +1072040,1072040,1072041,2,24.0,2.0,1.0,1.0,1,9700.0,1031452,3.0,22726.0,2113.0 +1072041,1072041,1072042,2,24.0,2.0,1.0,1.0,1,3600.0,1073449,3.0,22724.0,2113.0 +1072042,1072042,1072043,2,24.0,2.0,1.0,1.0,1,3000.0,1073449,3.0,22724.0,2113.0 +1072043,1072043,1072044,2,23.0,2.0,1.0,1.0,1,12000.0,1080470,3.0,22724.0,2113.0 +1072044,1072044,1072045,2,23.0,2.0,1.0,1.0,1,12000.0,1080470,3.0,22724.0,2113.0 +1072045,1072045,1072046,2,23.0,2.0,1.0,1.0,1,12000.0,1080470,3.0,22723.0,2113.0 +1072046,1072046,1072047,2,24.0,2.0,1.0,1.0,1,3000.0,1073449,3.0,22724.0,2113.0 +1072047,1072047,1072048,2,24.0,2.0,1.0,1.0,1,3000.0,1073449,3.0,22724.0,2113.0 +1072048,1072048,1072049,2,24.0,2.0,1.0,1.0,1,3000.0,1073449,3.0,22722.0,2113.0 +1072049,1072049,1072050,2,24.0,2.0,1.0,1.0,1,3000.0,1073449,3.0,22724.0,2113.0 +1072050,1072050,1072051,2,21.0,1.0,2.0,1.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072051,1072051,1072052,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072052,1072052,1072053,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072053,1072053,1072054,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072054,1072054,1072055,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072055,1072055,1072056,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072056,1072056,1072057,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072057,1072057,1072058,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072058,1072058,1072059,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072059,1072059,1072060,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072060,1072060,1072061,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22723.0,2113.0 +1072061,1072061,1072062,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072062,1072062,1072063,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072063,1072063,1072064,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22728.0,2113.0 +1072064,1072064,1072065,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072065,1072065,1072066,2,21.0,1.0,2.0,0.0,1,50100.0,1031452,7.0,22724.0,2113.0 +1072066,1072066,1072067,3,24.0,1.0,0.0,0.0,1,10000.0,1080470,3.0,22724.0,2113.0 +1072067,1072067,1072068,3,24.0,1.0,0.0,2.0,1,10000.0,1080470,3.0,22725.0,2113.0 +1072068,1072068,1072069,3,24.0,1.0,0.0,2.0,1,10000.0,1080470,3.0,22724.0,2113.0 +1072069,1072069,1072070,3,24.0,1.0,0.0,2.0,1,10000.0,1080470,3.0,22724.0,2113.0 +1072070,1072070,1072071,3,24.0,1.0,0.0,2.0,1,10000.0,1080470,3.0,22723.0,2113.0 +1072071,1072071,1072072,3,24.0,1.0,0.0,2.0,1,10000.0,1080470,3.0,22724.0,2113.0 +1072072,1072072,1072073,1,72.0,4.0,1.0,2.0,1,45000.0,1080470,6.0,22711.0,2111.0 +1072073,1072073,1072074,1,78.0,4.0,0.0,0.0,1,17600.0,1054606,6.0,22712.0,2111.0 +1072074,1072074,1072075,1,78.0,4.0,0.0,0.0,1,17600.0,1054606,6.0,22711.0,2111.0 +1072075,1072075,1072076,1,78.0,4.0,0.0,0.0,1,17600.0,1054606,6.0,22711.0,2111.0 +1072076,1072076,1072077,1,94.0,4.0,0.0,0.0,1,26200.0,1031452,4.0,22711.0,2111.0 +1072077,1072077,1072078,2,87.0,2.0,2.0,0.0,1,63230.0,1010145,2.0,22712.0,2111.0 +1072078,1072078,1072079,1,74.0,2.0,1.0,0.0,1,29900.0,1010145,4.0,22712.0,2111.0 +1072079,1072079,1072080,1,74.0,2.0,1.0,0.0,1,29900.0,1010145,4.0,22712.0,2111.0 +1072080,1072080,1072081,1,65.0,2.0,1.0,0.0,1,8800.0,1054606,4.0,22711.0,2111.0 +1072081,1072081,1072082,1,69.0,2.0,1.0,0.0,1,0.0,1073449,4.0,22711.0,2111.0 +1072082,1072082,1072083,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22712.0,2111.0 +1072083,1072083,1072084,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22711.0,2111.0 +1072084,1072084,1072085,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22711.0,2111.0 +1072085,1072085,1072086,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22711.0,2111.0 +1072086,1072086,1072087,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22713.0,2111.0 +1072087,1072087,1072088,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22711.0,2111.0 +1072088,1072088,1072089,4,76.0,3.0,3.0,0.0,1,66700.0,1010145,1.0,22711.0,2111.0 +1072089,1072089,1072090,1,68.0,1.0,1.0,0.0,1,87200.0,1080470,6.0,22711.0,2111.0 +1072090,1072090,1072091,1,68.0,1.0,1.0,0.0,1,93000.0,1080470,6.0,22711.0,2111.0 +1072091,1072091,1072092,1,68.0,1.0,1.0,0.0,1,93000.0,1080470,6.0,22712.0,2111.0 +1072092,1072092,1072093,1,68.0,1.0,1.0,0.0,1,87200.0,1080470,6.0,22711.0,2111.0 +1072093,1072093,1072094,1,76.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22711.0,2111.0 +1072094,1072094,1072095,1,76.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22712.0,2111.0 +1072095,1072095,1072096,1,76.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22731.0,2114.0 +1072096,1072096,1072097,1,76.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22731.0,2114.0 +1072097,1072097,1072098,2,69.0,1.0,2.0,0.0,1,57000.0,1073449,1.0,22711.0,2111.0 +1072098,1072098,1072099,2,72.0,1.0,2.0,0.0,1,44200.0,1080470,1.0,22712.0,2111.0 +1072099,1072099,1072100,1,70.0,1.0,1.0,0.0,1,59600.0,1080470,6.0,22711.0,2111.0 +1072100,1072100,1072101,1,70.0,1.0,1.0,0.0,1,59600.0,1080470,6.0,22712.0,2111.0 +1072101,1072101,1072102,1,70.0,1.0,1.0,0.0,1,59600.0,1080470,6.0,22731.0,2114.0 +1072102,1072102,1072103,1,70.0,1.0,1.0,0.0,1,59600.0,1080470,6.0,22711.0,2111.0 +1072103,1072103,1072104,1,70.0,1.0,1.0,0.0,1,59600.0,1080470,6.0,22712.0,2111.0 +1072104,1072104,1072105,1,81.0,1.0,1.0,0.0,1,38800.0,1031452,6.0,22711.0,2111.0 +1072105,1072105,1072106,1,83.0,1.0,1.0,0.0,1,31000.0,1080470,6.0,22711.0,2111.0 +1072106,1072106,1072107,1,66.0,1.0,1.0,0.0,1,36900.0,1010145,6.0,22712.0,2111.0 +1072107,1072107,1072108,1,80.0,1.0,1.0,0.0,1,43500.0,1031452,6.0,22731.0,2114.0 +1072108,1072108,1072109,1,70.0,1.0,1.0,0.0,1,30050.0,1010145,4.0,22711.0,2111.0 +1072109,1072109,1072110,1,87.0,1.0,0.0,0.0,1,43000.0,1031452,6.0,22712.0,2111.0 +1072110,1072110,1072111,1,65.0,1.0,2.0,0.0,1,18310.0,1073449,6.0,22711.0,2111.0 +1072111,1072111,1072112,1,80.0,1.0,1.0,0.0,1,29400.0,1080470,6.0,22711.0,2111.0 +1072112,1072112,1072113,1,65.0,1.0,1.0,0.0,1,13000.0,1010145,6.0,22711.0,2111.0 +1072113,1072113,1072114,1,65.0,1.0,1.0,0.0,1,13000.0,1010145,6.0,22711.0,2111.0 +1072114,1072114,1072115,1,80.0,1.0,1.0,0.0,1,29400.0,1080470,6.0,22711.0,2111.0 +1072115,1072115,1072116,1,80.0,1.0,1.0,0.0,1,29400.0,1080470,6.0,22711.0,2111.0 +1072116,1072116,1072117,1,65.0,1.0,1.0,0.0,1,29410.0,1054606,6.0,22712.0,2111.0 +1072117,1072117,1072118,1,65.0,1.0,1.0,0.0,1,29410.0,1054606,6.0,22712.0,2111.0 +1072118,1072118,1072119,1,80.0,1.0,1.0,0.0,1,29400.0,1080470,6.0,22711.0,2111.0 +1072119,1072119,1072120,1,65.0,1.0,1.0,0.0,1,13000.0,1010145,6.0,22711.0,2111.0 +1072120,1072120,1072121,1,94.0,1.0,1.0,0.0,1,26100.0,1031452,6.0,22711.0,2111.0 +1072121,1072121,1072122,1,77.0,1.0,1.0,0.0,1,27000.0,1010145,6.0,22711.0,2111.0 +1072122,1072122,1072123,1,67.0,1.0,1.0,0.0,1,20900.0,1031452,4.0,22712.0,2111.0 +1072123,1072123,1072124,1,88.0,1.0,0.0,0.0,1,23780.0,1010145,6.0,22711.0,2111.0 +1072124,1072124,1072125,1,70.0,1.0,0.0,0.0,1,22400.0,1054606,4.0,22711.0,2111.0 +1072125,1072125,1072126,1,85.0,1.0,0.0,0.0,1,26900.0,1010145,6.0,22711.0,2111.0 +1072126,1072126,1072127,1,53.0,4.0,3.0,0.0,1,39800.0,1031452,4.0,22711.0,2111.0 +1072127,1072127,1072128,3,50.0,4.0,2.0,0.0,1,76620.0,1073449,1.0,22711.0,2111.0 +1072128,1072128,1072129,1,54.0,2.0,2.0,0.0,1,83000.0,1010145,6.0,22712.0,2111.0 +1072129,1072129,1072130,1,54.0,2.0,2.0,0.0,1,83000.0,1010145,6.0,22712.0,2111.0 +1072130,1072130,1072131,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22713.0,2111.0 +1072131,1072131,1072132,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22711.0,2111.0 +1072132,1072132,1072133,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22712.0,2111.0 +1072133,1072133,1072134,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22713.0,2111.0 +1072134,1072134,1072135,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22712.0,2111.0 +1072135,1072135,1072136,1,59.0,2.0,2.0,0.0,1,53000.0,1073449,4.0,22712.0,2111.0 +1072136,1072136,1072137,1,59.0,2.0,2.0,0.0,1,53000.0,1073449,4.0,22712.0,2111.0 +1072137,1072137,1072138,1,59.0,2.0,2.0,0.0,1,53000.0,1073449,4.0,22712.0,2111.0 +1072138,1072138,1072139,2,46.0,2.0,1.0,0.0,1,39400.0,1073449,3.0,22712.0,2111.0 +1072139,1072139,1072140,1,63.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22711.0,2111.0 +1072140,1072140,1072141,1,48.0,2.0,1.0,0.0,1,40500.0,1080470,6.0,22712.0,2111.0 +1072141,1072141,1072142,1,46.0,2.0,1.0,0.0,1,34000.0,1080470,4.0,22711.0,2111.0 +1072142,1072142,1072143,2,53.0,2.0,1.0,0.0,1,14300.0,1054606,1.0,22711.0,2111.0 +1072143,1072143,1072144,1,62.0,2.0,0.0,0.0,1,10800.0,1031452,4.0,22712.0,2111.0 +1072144,1072144,1072145,1,49.0,2.0,0.0,0.0,1,7000.0,1080470,4.0,22711.0,2111.0 +1072145,1072145,1072146,1,49.0,2.0,0.0,0.0,1,7000.0,1080470,4.0,22711.0,2111.0 +1072146,1072146,1072147,1,49.0,2.0,0.0,0.0,1,7000.0,1080470,4.0,22711.0,2111.0 +1072147,1072147,1072148,1,49.0,2.0,0.0,0.0,1,7000.0,1080470,4.0,22712.0,2111.0 +1072148,1072148,1072149,1,56.0,2.0,0.0,0.0,1,5400.0,1080470,4.0,22711.0,2111.0 +1072149,1072149,1072150,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22711.0,2111.0 +1072150,1072150,1072151,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22711.0,2111.0 +1072151,1072151,1072152,2,58.0,3.0,2.0,0.0,1,118000.0,1010145,3.0,22712.0,2111.0 +1072152,1072152,1072153,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22712.0,2111.0 +1072153,1072153,1072154,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22712.0,2111.0 +1072154,1072154,1072155,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072155,1072155,1072156,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22712.0,2111.0 +1072156,1072156,1072157,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22712.0,2111.0 +1072157,1072157,1072158,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22712.0,2111.0 +1072158,1072158,1072159,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072159,1072159,1072160,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22712.0,2111.0 +1072160,1072160,1072161,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072161,1072161,1072162,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072162,1072162,1072163,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22712.0,2111.0 +1072163,1072163,1072164,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22731.0,2114.0 +1072164,1072164,1072165,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072165,1072165,1072166,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072166,1072166,1072167,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22731.0,2114.0 +1072167,1072167,1072168,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22712.0,2111.0 +1072168,1072168,1072169,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072169,1072169,1072170,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072170,1072170,1072171,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072171,1072171,1072172,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072172,1072172,1072173,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072173,1072173,1072174,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072174,1072174,1072175,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072175,1072175,1072176,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22712.0,2111.0 +1072176,1072176,1072177,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072177,1072177,1072178,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22711.0,2111.0 +1072178,1072178,1072179,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22712.0,2111.0 +1072179,1072179,1072180,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22711.0,2111.0 +1072180,1072180,1072181,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22711.0,2111.0 +1072181,1072181,1072182,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22711.0,2111.0 +1072182,1072182,1072183,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22711.0,2111.0 +1072183,1072183,1072184,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22711.0,2111.0 +1072184,1072184,1072185,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22731.0,2114.0 +1072185,1072185,1072186,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22712.0,2111.0 +1072186,1072186,1072187,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22711.0,2111.0 +1072187,1072187,1072188,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22711.0,2111.0 +1072188,1072188,1072189,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22711.0,2111.0 +1072189,1072189,1072190,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22711.0,2111.0 +1072190,1072190,1072191,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22711.0,2111.0 +1072191,1072191,1072192,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22711.0,2111.0 +1072192,1072192,1072193,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22712.0,2111.0 +1072193,1072193,1072194,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22712.0,2111.0 +1072194,1072194,1072195,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22712.0,2111.0 +1072195,1072195,1072196,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22712.0,2111.0 +1072196,1072196,1072197,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22712.0,2111.0 +1072197,1072197,1072198,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22711.0,2111.0 +1072198,1072198,1072199,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22731.0,2114.0 +1072199,1072199,1072200,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22712.0,2111.0 +1072200,1072200,1072201,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22711.0,2111.0 +1072201,1072201,1072202,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22712.0,2111.0 +1072202,1072202,1072203,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22712.0,2111.0 +1072203,1072203,1072204,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22711.0,2111.0 +1072204,1072204,1072205,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22712.0,2111.0 +1072205,1072205,1072206,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22711.0,2111.0 +1072206,1072206,1072207,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22711.0,2111.0 +1072207,1072207,1072208,1,55.0,1.0,1.0,0.0,1,72000.0,1010145,4.0,22711.0,2111.0 +1072208,1072208,1072209,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22711.0,2111.0 +1072209,1072209,1072210,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22712.0,2111.0 +1072210,1072210,1072211,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22711.0,2111.0 +1072211,1072211,1072212,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22712.0,2111.0 +1072212,1072212,1072213,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22711.0,2111.0 +1072213,1072213,1072214,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22711.0,2111.0 +1072214,1072214,1072215,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22711.0,2111.0 +1072215,1072215,1072216,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22712.0,2111.0 +1072216,1072216,1072217,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22711.0,2111.0 +1072217,1072217,1072218,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22711.0,2111.0 +1072218,1072218,1072219,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22712.0,2111.0 +1072219,1072219,1072220,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22712.0,2111.0 +1072220,1072220,1072221,2,46.0,1.0,3.0,0.0,1,18800.0,1080470,1.0,22731.0,2114.0 +1072221,1072221,1072222,1,61.0,1.0,1.0,0.0,1,26150.0,1031452,6.0,22712.0,2111.0 +1072222,1072222,1072223,1,61.0,1.0,1.0,0.0,1,26150.0,1031452,6.0,22712.0,2111.0 +1072223,1072223,1072224,5,49.0,1.0,2.0,0.0,1,10000.0,1054606,1.0,22711.0,2111.0 +1072224,1072224,1072225,2,28.0,4.0,2.0,2.0,1,112000.0,1080470,7.0,22711.0,2111.0 +1072225,1072225,1072226,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22711.0,2111.0 +1072226,1072226,1072227,2,28.0,4.0,2.0,0.0,1,112000.0,1080470,7.0,22711.0,2111.0 +1072227,1072227,1072228,1,39.0,4.0,1.0,0.0,1,75990.0,1031452,6.0,22731.0,2114.0 +1072228,1072228,1072229,1,26.0,4.0,1.0,0.0,1,64630.0,1073449,4.0,22711.0,2111.0 +1072229,1072229,1072230,1,26.0,4.0,1.0,0.0,1,64630.0,1073449,4.0,22712.0,2111.0 +1072230,1072230,1072231,1,41.0,4.0,2.0,0.0,1,57000.0,1073449,4.0,22712.0,2111.0 +1072231,1072231,1072232,1,41.0,4.0,2.0,0.0,1,57000.0,1073449,4.0,22712.0,2111.0 +1072232,1072232,1072233,1,41.0,4.0,2.0,0.0,1,57000.0,1073449,4.0,22712.0,2111.0 +1072233,1072233,1072234,1,41.0,4.0,2.0,0.0,1,57000.0,1073449,4.0,22712.0,2111.0 +1072234,1072234,1072235,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22712.0,2111.0 +1072235,1072235,1072236,2,28.0,4.0,1.0,0.0,1,36000.0,1073449,5.0,22712.0,2111.0 +1072236,1072236,1072237,1,38.0,4.0,1.0,0.0,1,12000.0,1054606,6.0,22712.0,2111.0 +1072237,1072237,1072238,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22711.0,2111.0 +1072238,1072238,1072239,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22711.0,2111.0 +1072239,1072239,1072240,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22712.0,2111.0 +1072240,1072240,1072241,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22711.0,2111.0 +1072241,1072241,1072242,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22712.0,2111.0 +1072242,1072242,1072243,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22712.0,2111.0 +1072243,1072243,1072244,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22731.0,2114.0 +1072244,1072244,1072245,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22713.0,2111.0 +1072245,1072245,1072246,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22711.0,2111.0 +1072246,1072246,1072247,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22711.0,2111.0 +1072247,1072247,1072248,1,30.0,2.0,0.0,0.0,1,77000.0,1073449,4.0,22711.0,2111.0 +1072248,1072248,1072249,1,32.0,2.0,1.0,0.0,1,50000.0,1073449,6.0,22711.0,2111.0 +1072249,1072249,1072250,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22711.0,2111.0 +1072250,1072250,1072251,1,32.0,2.0,1.0,0.0,1,50000.0,1073449,6.0,22711.0,2111.0 +1072251,1072251,1072252,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22711.0,2111.0 +1072252,1072252,1072253,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22731.0,2114.0 +1072253,1072253,1072254,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22711.0,2111.0 +1072254,1072254,1072255,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072255,1072255,1072256,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072256,1072256,1072257,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22712.0,2111.0 +1072257,1072257,1072258,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072258,1072258,1072259,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072259,1072259,1072260,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22712.0,2111.0 +1072260,1072260,1072261,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22712.0,2111.0 +1072261,1072261,1072262,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072262,1072262,1072263,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22712.0,2111.0 +1072263,1072263,1072264,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22712.0,2111.0 +1072264,1072264,1072265,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072265,1072265,1072266,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072266,1072266,1072267,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22731.0,2114.0 +1072267,1072267,1072268,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072268,1072268,1072269,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072269,1072269,1072270,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072270,1072270,1072271,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072271,1072271,1072272,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22712.0,2111.0 +1072272,1072272,1072273,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22712.0,2111.0 +1072273,1072273,1072274,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22712.0,2111.0 +1072274,1072274,1072275,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072275,1072275,1072276,1,35.0,2.0,1.0,0.0,1,56000.0,1010145,4.0,22711.0,2111.0 +1072276,1072276,1072277,1,43.0,2.0,1.0,0.0,1,34000.0,1073449,4.0,22712.0,2111.0 +1072277,1072277,1072278,1,39.0,2.0,1.0,0.0,1,47000.0,1031452,4.0,22711.0,2111.0 +1072278,1072278,1072279,1,26.0,2.0,1.0,0.0,1,34200.0,1054606,4.0,22711.0,2111.0 +1072279,1072279,1072280,1,30.0,2.0,1.0,0.0,1,50000.0,1073449,4.0,22711.0,2111.0 +1072280,1072280,1072281,1,30.0,2.0,1.0,0.0,1,50000.0,1073449,4.0,22711.0,2111.0 +1072281,1072281,1072282,1,26.0,2.0,1.0,0.0,1,34200.0,1054606,4.0,22712.0,2111.0 +1072282,1072282,1072283,1,30.0,2.0,1.0,0.0,1,50000.0,1073449,4.0,22711.0,2111.0 +1072283,1072283,1072284,1,30.0,2.0,1.0,0.0,1,50000.0,1073449,4.0,22711.0,2111.0 +1072284,1072284,1072285,1,26.0,2.0,1.0,0.0,1,34200.0,1054606,4.0,22713.0,2111.0 +1072285,1072285,1072286,1,26.0,2.0,1.0,0.0,1,34200.0,1054606,4.0,22711.0,2111.0 +1072286,1072286,1072287,1,30.0,2.0,1.0,0.0,1,50000.0,1073449,4.0,22711.0,2111.0 +1072287,1072287,1072288,1,30.0,2.0,1.0,0.0,1,50000.0,1073449,4.0,22711.0,2111.0 +1072288,1072288,1072289,1,26.0,2.0,1.0,0.0,1,34200.0,1054606,4.0,22711.0,2111.0 +1072289,1072289,1072290,1,26.0,2.0,1.0,0.0,1,34200.0,1054606,4.0,22712.0,2111.0 +1072290,1072290,1072291,1,26.0,2.0,1.0,0.0,1,34200.0,1054606,4.0,22712.0,2111.0 +1072291,1072291,1072292,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22711.0,2111.0 +1072292,1072292,1072293,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22712.0,2111.0 +1072293,1072293,1072294,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22712.0,2111.0 +1072294,1072294,1072295,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22711.0,2111.0 +1072295,1072295,1072296,1,25.0,2.0,1.0,0.0,1,12000.0,1010145,6.0,22711.0,2111.0 +1072296,1072296,1072297,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22712.0,2111.0 +1072297,1072297,1072298,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22711.0,2111.0 +1072298,1072298,1072299,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22711.0,2111.0 +1072299,1072299,1072300,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22711.0,2111.0 +1072300,1072300,1072301,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22711.0,2111.0 +1072301,1072301,1072302,1,25.0,2.0,1.0,0.0,1,12000.0,1010145,6.0,22711.0,2111.0 +1072302,1072302,1072303,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22712.0,2111.0 +1072303,1072303,1072304,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22712.0,2111.0 +1072304,1072304,1072305,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22711.0,2111.0 +1072305,1072305,1072306,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22712.0,2111.0 +1072306,1072306,1072307,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22711.0,2111.0 +1072307,1072307,1072308,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22712.0,2111.0 +1072308,1072308,1072309,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22712.0,2111.0 +1072309,1072309,1072310,1,32.0,2.0,1.0,0.0,1,14000.0,1054606,4.0,22712.0,2111.0 +1072310,1072310,1072311,1,32.0,2.0,1.0,0.0,1,14000.0,1054606,4.0,22711.0,2111.0 +1072311,1072311,1072312,1,32.0,2.0,1.0,0.0,1,14000.0,1054606,4.0,22712.0,2111.0 +1072312,1072312,1072313,1,32.0,2.0,1.0,0.0,1,14000.0,1054606,4.0,22711.0,2111.0 +1072313,1072313,1072314,1,32.0,2.0,1.0,0.0,1,14000.0,1054606,4.0,22711.0,2111.0 +1072314,1072314,1072315,1,32.0,2.0,1.0,0.0,1,14000.0,1054606,4.0,22712.0,2111.0 +1072315,1072315,1072316,1,32.0,2.0,1.0,0.0,1,14000.0,1054606,4.0,22711.0,2111.0 +1072316,1072316,1072317,1,28.0,2.0,1.0,0.0,1,10200.0,1054606,4.0,22711.0,2111.0 +1072317,1072317,1072318,2,43.0,2.0,1.0,0.0,1,106000.0,1010145,3.0,22711.0,2111.0 +1072318,1072318,1072319,2,39.0,2.0,1.0,1.0,1,69000.0,1054606,3.0,22711.0,2111.0 +1072319,1072319,1072320,2,39.0,2.0,1.0,1.0,1,69000.0,1054606,3.0,22711.0,2111.0 +1072320,1072320,1072321,2,40.0,2.0,1.0,1.0,1,32000.0,1010145,3.0,22712.0,2111.0 +1072321,1072321,1072322,5,35.0,3.0,3.0,1.0,1,64000.0,1054606,1.0,22731.0,2114.0 +1072322,1072322,1072323,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22712.0,2111.0 +1072323,1072323,1072324,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22711.0,2111.0 +1072324,1072324,1072325,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22711.0,2111.0 +1072325,1072325,1072326,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22711.0,2111.0 +1072326,1072326,1072327,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22711.0,2111.0 +1072327,1072327,1072328,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22711.0,2111.0 +1072328,1072328,1072329,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22711.0,2111.0 +1072329,1072329,1072330,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22711.0,2111.0 +1072330,1072330,1072331,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22711.0,2111.0 +1072331,1072331,1072332,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22712.0,2111.0 +1072332,1072332,1072333,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22711.0,2111.0 +1072333,1072333,1072334,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22712.0,2111.0 +1072334,1072334,1072335,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22711.0,2111.0 +1072335,1072335,1072336,3,31.0,1.0,3.0,3.0,1,81500.0,1054606,7.0,22712.0,2111.0 +1072336,1072336,1072337,3,31.0,1.0,3.0,0.0,1,81500.0,1054606,7.0,22712.0,2111.0 +1072337,1072337,1072338,3,31.0,1.0,3.0,0.0,1,81500.0,1054606,7.0,22712.0,2111.0 +1072338,1072338,1072339,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22711.0,2111.0 +1072339,1072339,1072340,1,39.0,1.0,1.0,0.0,1,93000.0,1080470,4.0,22711.0,2111.0 +1072340,1072340,1072341,2,34.0,1.0,0.0,0.0,1,60400.0,1054606,7.0,22711.0,2111.0 +1072341,1072341,1072342,2,36.0,1.0,2.0,0.0,1,47000.0,1054606,7.0,22731.0,2114.0 +1072342,1072342,1072343,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22731.0,2114.0 +1072343,1072343,1072344,1,25.0,1.0,1.0,0.0,1,52000.0,1054606,4.0,22712.0,2111.0 +1072344,1072344,1072345,1,29.0,1.0,1.0,0.0,1,55000.0,1010145,4.0,22711.0,2111.0 +1072345,1072345,1072346,1,28.0,1.0,1.0,0.0,1,48000.0,1054606,6.0,22711.0,2111.0 +1072346,1072346,1072347,1,30.0,1.0,1.0,0.0,1,45000.0,1073449,6.0,22711.0,2111.0 +1072347,1072347,1072348,1,37.0,1.0,1.0,0.0,1,58000.0,1054606,6.0,22712.0,2111.0 +1072348,1072348,1072349,1,37.0,1.0,1.0,0.0,1,58000.0,1054606,6.0,22712.0,2111.0 +1072349,1072349,1072350,1,37.0,1.0,1.0,0.0,1,58000.0,1054606,6.0,22711.0,2111.0 +1072350,1072350,1072351,4,38.0,1.0,1.0,0.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072351,1072351,1072352,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072352,1072352,1072353,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072353,1072353,1072354,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072354,1072354,1072355,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22712.0,2111.0 +1072355,1072355,1072356,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072356,1072356,1072357,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22731.0,2114.0 +1072357,1072357,1072358,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072358,1072358,1072359,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22712.0,2111.0 +1072359,1072359,1072360,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22712.0,2111.0 +1072360,1072360,1072361,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072361,1072361,1072362,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072362,1072362,1072363,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072363,1072363,1072364,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22712.0,2111.0 +1072364,1072364,1072365,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072365,1072365,1072366,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072366,1072366,1072367,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072367,1072367,1072368,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072368,1072368,1072369,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22712.0,2111.0 +1072369,1072369,1072370,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072370,1072370,1072371,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22712.0,2111.0 +1072371,1072371,1072372,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072372,1072372,1072373,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22713.0,2111.0 +1072373,1072373,1072374,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072374,1072374,1072375,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072375,1072375,1072376,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072376,1072376,1072377,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072377,1072377,1072378,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072378,1072378,1072379,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072379,1072379,1072380,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22712.0,2111.0 +1072380,1072380,1072381,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072381,1072381,1072382,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22712.0,2111.0 +1072382,1072382,1072383,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072383,1072383,1072384,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22712.0,2111.0 +1072384,1072384,1072385,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072385,1072385,1072386,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072386,1072386,1072387,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072387,1072387,1072388,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072388,1072388,1072389,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072389,1072389,1072390,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22711.0,2111.0 +1072390,1072390,1072391,2,37.0,1.0,1.0,1.0,1,26000.0,1031452,2.0,22711.0,2111.0 +1072391,1072391,1072392,2,37.0,1.0,1.0,1.0,1,26000.0,1031452,2.0,22711.0,2111.0 +1072392,1072392,1072393,2,19.0,4.0,2.0,1.0,1,26400.0,1010145,2.0,22711.0,2111.0 +1072393,1072393,1072394,2,19.0,4.0,2.0,0.0,1,26400.0,1010145,2.0,22712.0,2111.0 +1072394,1072394,1072395,1,23.0,4.0,2.0,0.0,1,34000.0,1073449,4.0,22712.0,2111.0 +1072395,1072395,1072396,1,23.0,4.0,2.0,0.0,1,34000.0,1073449,4.0,22711.0,2111.0 +1072396,1072396,1072397,1,23.0,4.0,2.0,0.0,1,34000.0,1073449,4.0,22712.0,2111.0 +1072397,1072397,1072398,1,23.0,4.0,2.0,0.0,1,34000.0,1073449,4.0,22712.0,2111.0 +1072398,1072398,1072399,1,23.0,4.0,2.0,0.0,1,34000.0,1073449,4.0,22712.0,2111.0 +1072399,1072399,1072400,1,23.0,4.0,2.0,0.0,1,34000.0,1073449,4.0,22711.0,2111.0 +1072400,1072400,1072401,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22711.0,2111.0 +1072401,1072401,1072402,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22712.0,2111.0 +1072402,1072402,1072403,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22731.0,2114.0 +1072403,1072403,1072404,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22711.0,2111.0 +1072404,1072404,1072405,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22712.0,2111.0 +1072405,1072405,1072406,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22711.0,2111.0 +1072406,1072406,1072407,1,23.0,1.0,1.0,0.0,1,65000.0,1031452,4.0,22711.0,2111.0 +1072407,1072407,1072408,3,23.0,1.0,3.0,0.0,1,52300.0,1010145,7.0,22712.0,2111.0 +1072408,1072408,1072409,3,23.0,1.0,3.0,0.0,1,52300.0,1010145,7.0,22711.0,2111.0 +1072409,1072409,1072410,2,22.0,1.0,2.0,0.0,1,45900.0,1031452,7.0,22711.0,2111.0 +1072410,1072410,1072411,2,21.0,1.0,2.0,0.0,1,40000.0,1054606,7.0,22711.0,2111.0 +1072411,1072411,1072412,2,21.0,1.0,2.0,0.0,1,40000.0,1054606,7.0,22712.0,2111.0 +1072412,1072412,1072413,2,22.0,1.0,2.0,0.0,1,47100.0,1054606,1.0,22712.0,2111.0 +1072413,1072413,1072414,1,23.0,1.0,1.0,0.0,1,54000.0,1031452,6.0,22712.0,2111.0 +1072414,1072414,1072415,1,24.0,1.0,1.0,0.0,1,32000.0,1031452,6.0,22711.0,2111.0 +1072415,1072415,1072416,1,24.0,1.0,1.0,0.0,1,43000.0,1010145,4.0,22711.0,2111.0 +1072416,1072416,1072417,1,24.0,1.0,1.0,0.0,1,43000.0,1010145,4.0,22711.0,2111.0 +1072417,1072417,1072418,1,24.0,1.0,1.0,0.0,1,43000.0,1010145,4.0,22711.0,2111.0 +1072418,1072418,1072419,1,24.0,1.0,1.0,0.0,1,43000.0,1010145,4.0,22731.0,2114.0 +1072419,1072419,1072420,1,24.0,1.0,1.0,0.0,1,43000.0,1010145,4.0,22712.0,2111.0 +1072420,1072420,1072421,1,24.0,1.0,1.0,0.0,1,43000.0,1010145,4.0,22712.0,2111.0 +1072421,1072421,1072422,1,24.0,1.0,1.0,0.0,1,43000.0,1010145,4.0,22712.0,2111.0 +1072422,1072422,1072423,1,24.0,1.0,1.0,0.0,1,43000.0,1010145,4.0,22712.0,2111.0 +1072423,1072423,1072424,1,22.0,1.0,1.0,0.0,1,31500.0,1073449,4.0,22711.0,2111.0 +1072424,1072424,1072425,2,23.0,1.0,2.0,0.0,1,19000.0,1073449,2.0,22711.0,2111.0 +1072425,1072425,1072426,2,23.0,1.0,2.0,0.0,1,19000.0,1073449,2.0,22711.0,2111.0 +1072426,1072426,1072427,2,23.0,1.0,2.0,0.0,1,19000.0,1073449,2.0,22711.0,2111.0 +1072427,1072427,1072428,2,23.0,1.0,2.0,0.0,1,19000.0,1073449,2.0,22712.0,2111.0 +1072428,1072428,1072429,2,23.0,1.0,2.0,0.0,1,19000.0,1073449,2.0,22711.0,2111.0 +1072429,1072429,1072430,2,23.0,1.0,2.0,0.0,1,19000.0,1073449,2.0,22711.0,2111.0 +1072430,1072430,1072431,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22711.0,2111.0 +1072431,1072431,1072432,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22712.0,2111.0 +1072432,1072432,1072433,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22711.0,2111.0 +1072433,1072433,1072434,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22712.0,2111.0 +1072434,1072434,1072435,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22711.0,2111.0 +1072435,1072435,1072436,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22712.0,2111.0 +1072436,1072436,1072437,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22712.0,2111.0 +1072437,1072437,1072438,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22711.0,2111.0 +1072438,1072438,1072439,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22713.0,2111.0 +1072439,1072439,1072440,1,23.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22711.0,2111.0 +1072440,1072440,1072441,1,23.0,1.0,1.0,0.0,1,30000.0,1031452,6.0,22711.0,2111.0 +1072441,1072441,1072442,4,23.0,1.0,1.0,0.0,1,17000.0,1073449,3.0,22712.0,2111.0 +1072442,1072442,1072443,4,23.0,1.0,1.0,3.0,1,17000.0,1073449,3.0,22711.0,2111.0 +1072443,1072443,1072444,4,23.0,1.0,1.0,3.0,1,17000.0,1073449,3.0,22711.0,2111.0 +1072444,1072444,1072445,2,22.0,1.0,1.0,3.0,1,5000.0,1073449,3.0,22711.0,2111.0 +1072445,1072445,1072446,2,22.0,1.0,1.0,1.0,1,5000.0,1073449,3.0,22711.0,2111.0 +1072446,1072446,1072447,2,22.0,1.0,1.0,1.0,1,5000.0,1073449,3.0,22713.0,2111.0 +1072447,1072447,1072448,2,22.0,1.0,1.0,1.0,1,5000.0,1073449,3.0,22711.0,2111.0 +1072448,1072448,1072449,2,24.0,1.0,1.0,1.0,1,15000.0,1010145,2.0,22711.0,2111.0 +1072449,1072449,1072450,3,24.0,1.0,0.0,1.0,1,10000.0,1080470,3.0,22711.0,2111.0 +1072596,1072596,1072597,2,54.0,1.0,0.0,0.0,1,21002.0,1080470,2.0,22728.0,2113.0 +1072800,1072800,1072801,2,19.0,2.0,2.0,0.0,1,60000.0,1080470,5.0,22728.0,2113.0 +1078696,1078696,1078697,2,81.0,1.0,1.0,3.0,1,45100.0,1080470,3.0,22655.0,2102.0 +1078697,1078697,1078698,2,90.0,1.0,1.0,0.0,1,37600.0,1080470,1.0,22650.0,2102.0 +1078698,1078698,1078699,2,74.0,1.0,1.0,0.0,1,28500.0,1073449,3.0,22650.0,2102.0 +1078699,1078699,1078700,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22650.0,2102.0 +1078700,1078700,1078701,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22651.0,2102.0 +1078701,1078701,1078702,2,58.0,1.0,2.0,0.0,1,41400.0,1073449,1.0,22650.0,2102.0 +1078702,1078702,1078703,2,58.0,1.0,2.0,0.0,1,41400.0,1073449,1.0,22650.0,2102.0 +1078703,1078703,1078704,2,58.0,1.0,2.0,0.0,1,41400.0,1073449,1.0,22655.0,2102.0 +1078704,1078704,1078705,2,58.0,1.0,2.0,0.0,1,41400.0,1073449,1.0,22650.0,2102.0 +1078705,1078705,1078706,2,58.0,1.0,2.0,0.0,1,41400.0,1073449,1.0,22651.0,2102.0 +1078706,1078706,1078707,2,60.0,1.0,3.0,0.0,1,42000.0,1054606,1.0,22655.0,2102.0 +1078707,1078707,1078708,2,60.0,1.0,3.0,0.0,1,42000.0,1054606,1.0,22650.0,2102.0 +1078708,1078708,1078709,2,59.0,1.0,2.0,0.0,1,31700.0,1073449,1.0,22655.0,2102.0 +1078709,1078709,1078710,2,48.0,1.0,5.0,0.0,1,34700.0,1073449,1.0,22650.0,2102.0 +1078710,1078710,1078711,2,46.0,1.0,1.0,0.0,1,45000.0,1073449,1.0,22650.0,2102.0 +1078711,1078711,1078712,2,48.0,1.0,2.0,0.0,1,22000.0,1031452,5.0,22654.0,2102.0 +1078712,1078712,1078713,2,64.0,1.0,2.0,0.0,1,20600.0,1073449,5.0,22650.0,2102.0 +1078713,1078713,1078714,2,64.0,1.0,2.0,0.0,1,20600.0,1073449,5.0,22655.0,2102.0 +1078714,1078714,1078715,2,64.0,1.0,2.0,0.0,1,15900.0,1054606,3.0,22651.0,2102.0 +1078715,1078715,1078716,2,64.0,1.0,2.0,0.0,1,15900.0,1054606,3.0,22655.0,2102.0 +1078716,1078716,1078717,2,64.0,1.0,2.0,0.0,1,25800.0,1080470,1.0,22651.0,2102.0 +1078717,1078717,1078718,2,64.0,1.0,2.0,0.0,1,25800.0,1080470,1.0,22650.0,2102.0 +1078718,1078718,1078719,2,64.0,1.0,2.0,0.0,1,25800.0,1080470,1.0,22651.0,2102.0 +1078719,1078719,1078720,2,63.0,1.0,1.0,0.0,1,21300.0,1080470,2.0,22650.0,2102.0 +1078720,1078720,1078721,1,59.0,1.0,1.0,0.0,1,20550.0,1054606,4.0,22651.0,2102.0 +1078721,1078721,1078722,1,59.0,1.0,1.0,0.0,1,20550.0,1054606,4.0,22651.0,2102.0 +1078722,1078722,1078723,1,59.0,1.0,1.0,0.0,1,20550.0,1054606,4.0,22651.0,2102.0 +1078723,1078723,1078724,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22655.0,2102.0 +1078724,1078724,1078725,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22651.0,2102.0 +1078725,1078725,1078726,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22650.0,2102.0 +1078726,1078726,1078727,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22651.0,2102.0 +1078727,1078727,1078728,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22651.0,2102.0 +1078728,1078728,1078729,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22651.0,2102.0 +1078729,1078729,1078730,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22651.0,2102.0 +1078730,1078730,1078731,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22650.0,2102.0 +1078731,1078731,1078732,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22650.0,2102.0 +1078732,1078732,1078733,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22650.0,2102.0 +1078733,1078733,1078734,1,59.0,1.0,1.0,0.0,1,340.0,1073449,4.0,22651.0,2102.0 +1078734,1078734,1078735,1,59.0,1.0,1.0,0.0,1,340.0,1073449,4.0,22650.0,2102.0 +1078735,1078735,1078736,1,59.0,1.0,1.0,0.0,1,340.0,1073449,4.0,22650.0,2102.0 +1078736,1078736,1078737,1,59.0,1.0,1.0,0.0,1,14000.0,1031452,4.0,22655.0,2102.0 +1078737,1078737,1078738,1,55.0,1.0,1.0,0.0,1,18000.0,1054606,4.0,22651.0,2102.0 +1078738,1078738,1078739,1,55.0,1.0,1.0,0.0,1,18000.0,1054606,4.0,22654.0,2102.0 +1078739,1078739,1078740,1,55.0,1.0,1.0,0.0,1,18000.0,1054606,4.0,22655.0,2102.0 +1078740,1078740,1078741,1,58.0,1.0,1.0,0.0,1,5000.0,1010145,4.0,22650.0,2102.0 +1078741,1078741,1078742,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22655.0,2102.0 +1078742,1078742,1078743,2,64.0,1.0,1.0,0.0,1,16800.0,1010145,1.0,22650.0,2102.0 +1078743,1078743,1078744,2,51.0,1.0,1.0,0.0,1,0.0,1010145,1.0,22651.0,2102.0 +1078744,1078744,1078745,1,60.0,1.0,1.0,0.0,1,18500.0,1031452,4.0,22651.0,2102.0 +1078745,1078745,1078746,1,60.0,1.0,1.0,0.0,1,18500.0,1031452,4.0,22655.0,2102.0 +1078746,1078746,1078747,1,60.0,1.0,1.0,0.0,1,18500.0,1031452,4.0,22650.0,2102.0 +1078747,1078747,1078748,2,46.0,1.0,1.0,0.0,1,32000.0,1054606,2.0,22655.0,2102.0 +1078748,1078748,1078749,2,46.0,1.0,2.0,1.0,1,14000.0,1073449,7.0,22650.0,2102.0 +1078749,1078749,1078750,2,61.0,1.0,2.0,1.0,1,29200.0,1073449,3.0,22650.0,2102.0 +1078750,1078750,1078751,4,78.0,2.0,3.0,1.0,1,54100.0,1073449,3.0,22640.0,2101.0 +1078751,1078751,1078752,1,68.0,2.0,1.0,0.0,1,52600.0,1010145,6.0,22640.0,2101.0 +1078752,1078752,1078753,2,65.0,2.0,0.0,0.0,1,13100.0,1080470,3.0,22647.0,2101.0 +1078753,1078753,1078754,2,65.0,2.0,0.0,1.0,1,13100.0,1080470,3.0,22647.0,2101.0 +1078754,1078754,1078755,3,90.0,1.0,2.0,1.0,1,69800.0,1054606,1.0,22654.0,2102.0 +1078755,1078755,1078756,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22654.0,2102.0 +1078756,1078756,1078757,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22639.0,2101.0 +1078757,1078757,1078758,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22647.0,2101.0 +1078758,1078758,1078759,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22647.0,2101.0 +1078759,1078759,1078760,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22643.0,2101.0 +1078760,1078760,1078761,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22654.0,2102.0 +1078761,1078761,1078762,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22654.0,2102.0 +1078762,1078762,1078763,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22648.0,2101.0 +1078763,1078763,1078764,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22646.0,2101.0 +1078764,1078764,1078765,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22654.0,2102.0 +1078765,1078765,1078766,2,80.0,1.0,2.0,0.0,1,83200.0,1054606,1.0,22647.0,2101.0 +1078766,1078766,1078767,2,69.0,1.0,6.0,0.0,1,88800.0,1073449,1.0,22647.0,2101.0 +1078767,1078767,1078768,2,75.0,1.0,2.0,0.0,1,71800.0,1031452,1.0,22654.0,2102.0 +1078768,1078768,1078769,2,84.0,1.0,2.0,0.0,1,89800.0,1073449,1.0,22648.0,2101.0 +1078769,1078769,1078770,2,77.0,1.0,3.0,0.0,1,82400.0,1080470,1.0,22643.0,2101.0 +1078770,1078770,1078771,3,82.0,1.0,3.0,0.0,1,49600.0,1031452,1.0,22640.0,2101.0 +1078771,1078771,1078772,2,69.0,1.0,2.0,0.0,1,57000.0,1073449,1.0,22648.0,2101.0 +1078772,1078772,1078773,2,72.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22639.0,2101.0 +1078773,1078773,1078774,2,72.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22646.0,2101.0 +1078774,1078774,1078775,2,72.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22640.0,2101.0 +1078775,1078775,1078776,2,72.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22654.0,2102.0 +1078776,1078776,1078777,2,72.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22646.0,2101.0 +1078777,1078777,1078778,2,72.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22648.0,2101.0 +1078778,1078778,1078779,2,88.0,1.0,2.0,0.0,1,47800.0,1073449,3.0,22643.0,2101.0 +1078779,1078779,1078780,2,88.0,1.0,2.0,0.0,1,47800.0,1073449,3.0,22654.0,2102.0 +1078780,1078780,1078781,3,66.0,1.0,2.0,0.0,1,37450.0,1080470,1.0,22648.0,2101.0 +1078781,1078781,1078782,2,76.0,1.0,3.0,0.0,1,56600.0,1031452,1.0,22648.0,2101.0 +1078782,1078782,1078783,2,73.0,1.0,2.0,0.0,1,55900.0,1073449,1.0,22639.0,2101.0 +1078783,1078783,1078784,2,81.0,1.0,2.0,0.0,1,46400.0,1031452,3.0,22640.0,2101.0 +1078784,1078784,1078785,2,65.0,1.0,2.0,0.0,1,47900.0,1031452,1.0,22646.0,2101.0 +1078785,1078785,1078786,2,81.0,1.0,2.0,0.0,1,46400.0,1031452,3.0,22654.0,2102.0 +1078786,1078786,1078787,2,65.0,1.0,2.0,0.0,1,47900.0,1031452,1.0,22640.0,2101.0 +1078787,1078787,1078788,2,81.0,1.0,2.0,0.0,1,46400.0,1031452,3.0,22646.0,2101.0 +1078788,1078788,1078789,2,65.0,1.0,2.0,0.0,1,47900.0,1031452,1.0,22654.0,2102.0 +1078789,1078789,1078790,1,81.0,1.0,2.0,0.0,1,35700.0,1073449,4.0,22654.0,2102.0 +1078790,1078790,1078791,1,73.0,1.0,2.0,0.0,1,37300.0,1010145,6.0,22645.0,2101.0 +1078791,1078791,1078792,1,67.0,1.0,3.0,0.0,1,34900.0,1054606,4.0,22648.0,2101.0 +1078792,1078792,1078793,1,82.0,1.0,2.0,0.0,1,47800.0,1010145,4.0,22640.0,2101.0 +1078793,1078793,1078794,1,67.0,1.0,3.0,0.0,1,34900.0,1054606,4.0,22639.0,2101.0 +1078794,1078794,1078795,1,67.0,1.0,3.0,0.0,1,34900.0,1054606,4.0,22645.0,2101.0 +1078795,1078795,1078796,2,77.0,1.0,1.0,0.0,1,36700.0,1073449,3.0,22654.0,2102.0 +1078796,1078796,1078797,1,67.0,1.0,1.0,0.0,1,33300.0,1010145,6.0,22639.0,2101.0 +1078797,1078797,1078798,2,90.0,1.0,1.0,0.0,1,51600.0,1054606,1.0,22640.0,2101.0 +1078798,1078798,1078799,2,70.0,1.0,1.0,0.0,1,43300.0,1073449,5.0,22639.0,2101.0 +1078799,1078799,1078800,1,82.0,1.0,1.0,0.0,1,42400.0,1073449,6.0,22654.0,2102.0 +1078800,1078800,1078801,1,74.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22648.0,2101.0 +1078801,1078801,1078802,1,65.0,1.0,1.0,0.0,1,46800.0,1031452,6.0,22646.0,2101.0 +1078802,1078802,1078803,1,83.0,1.0,1.0,0.0,1,56800.0,1010145,6.0,22643.0,2101.0 +1078803,1078803,1078804,1,66.0,1.0,1.0,0.0,1,60000.0,1031452,4.0,22645.0,2101.0 +1078804,1078804,1078805,1,76.0,1.0,1.0,0.0,1,43000.0,1073449,4.0,22654.0,2102.0 +1078805,1078805,1078806,1,76.0,1.0,1.0,0.0,1,43000.0,1073449,4.0,22639.0,2101.0 +1078806,1078806,1078807,1,76.0,1.0,0.0,0.0,1,37700.0,1054606,6.0,22648.0,2101.0 +1078807,1078807,1078808,1,87.0,1.0,0.0,0.0,1,43000.0,1031452,6.0,22644.0,2101.0 +1078808,1078808,1078809,1,86.0,1.0,2.0,0.0,1,22000.0,1031452,6.0,22654.0,2102.0 +1078809,1078809,1078810,1,70.0,1.0,2.0,0.0,1,11000.0,1010145,6.0,22654.0,2102.0 +1078810,1078810,1078811,1,73.0,1.0,2.0,0.0,1,10600.0,1054606,6.0,22644.0,2101.0 +1078811,1078811,1078812,1,65.0,1.0,2.0,0.0,1,18310.0,1073449,6.0,22648.0,2101.0 +1078812,1078812,1078813,1,71.0,1.0,2.0,0.0,1,14000.0,1054606,6.0,22648.0,2101.0 +1078813,1078813,1078814,1,71.0,1.0,2.0,0.0,1,14000.0,1054606,6.0,22646.0,2101.0 +1078814,1078814,1078815,1,73.0,1.0,2.0,0.0,1,10600.0,1054606,6.0,22644.0,2101.0 +1078815,1078815,1078816,1,80.0,1.0,1.0,0.0,1,29400.0,1080470,6.0,22639.0,2101.0 +1078816,1078816,1078817,1,67.0,1.0,1.0,0.0,1,12000.0,1073449,6.0,22643.0,2101.0 +1078817,1078817,1078818,1,85.0,1.0,1.0,0.0,1,27400.0,1080470,6.0,22643.0,2101.0 +1078818,1078818,1078819,1,71.0,1.0,1.0,0.0,1,8800.0,1073449,4.0,22647.0,2101.0 +1078819,1078819,1078820,1,66.0,1.0,1.0,0.0,1,16300.0,1073449,4.0,22646.0,2101.0 +1078820,1078820,1078821,1,70.0,1.0,1.0,0.0,1,23100.0,1054606,4.0,22648.0,2101.0 +1078821,1078821,1078822,1,77.0,1.0,1.0,0.0,1,27000.0,1010145,6.0,22639.0,2101.0 +1078822,1078822,1078823,1,71.0,1.0,1.0,0.0,1,21500.0,1054606,6.0,22643.0,2101.0 +1078823,1078823,1078824,1,74.0,1.0,1.0,0.0,1,21260.0,1080470,6.0,22643.0,2101.0 +1078824,1078824,1078825,1,73.0,1.0,1.0,0.0,1,5300.0,1073449,6.0,22651.0,2102.0 +1078825,1078825,1078826,1,74.0,1.0,1.0,0.0,1,21260.0,1080470,6.0,22648.0,2101.0 +1078826,1078826,1078827,1,87.0,1.0,1.0,0.0,1,27620.0,1031452,6.0,22643.0,2101.0 +1078827,1078827,1078828,1,79.0,1.0,1.0,0.0,1,28000.0,1073449,6.0,22648.0,2101.0 +1078828,1078828,1078829,1,68.0,1.0,1.0,0.0,1,10300.0,1054606,6.0,22643.0,2101.0 +1078829,1078829,1078830,1,94.0,1.0,1.0,0.0,1,26100.0,1031452,6.0,22651.0,2102.0 +1078830,1078830,1078831,1,94.0,1.0,1.0,0.0,1,26100.0,1031452,6.0,22640.0,2101.0 +1078831,1078831,1078832,1,73.0,1.0,1.0,0.0,1,5300.0,1073449,6.0,22654.0,2102.0 +1078832,1078832,1078833,1,77.0,1.0,1.0,0.0,1,10000.0,1054606,6.0,22640.0,2101.0 +1078833,1078833,1078834,1,69.0,1.0,1.0,0.0,1,29500.0,1054606,4.0,22651.0,2102.0 +1078834,1078834,1078835,1,66.0,1.0,1.0,0.0,1,24800.0,1010145,4.0,22654.0,2102.0 +1078835,1078835,1078836,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22654.0,2102.0 +1078836,1078836,1078837,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22646.0,2101.0 +1078837,1078837,1078838,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22639.0,2101.0 +1078838,1078838,1078839,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22639.0,2101.0 +1078839,1078839,1078840,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22654.0,2102.0 +1078840,1078840,1078841,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22643.0,2101.0 +1078841,1078841,1078842,1,64.0,2.0,1.0,0.0,1,35600.0,1010145,6.0,22647.0,2101.0 +1078842,1078842,1078843,1,46.0,2.0,1.0,0.0,1,34000.0,1080470,4.0,22654.0,2102.0 +1078843,1078843,1078844,1,46.0,2.0,1.0,0.0,1,34000.0,1080470,4.0,22646.0,2101.0 +1078844,1078844,1078845,4,55.0,2.0,3.0,0.0,1,8150.0,1080470,1.0,22654.0,2102.0 +1078845,1078845,1078846,2,47.0,2.0,0.0,0.0,1,8700.0,1054606,3.0,22645.0,2101.0 +1078846,1078846,1078847,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22640.0,2101.0 +1078847,1078847,1078848,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22651.0,2102.0 +1078848,1078848,1078849,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22654.0,2102.0 +1078849,1078849,1078850,3,52.0,1.0,3.0,1.0,1,107000.0,1031452,1.0,22644.0,2101.0 +1078850,1078850,1078851,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22647.0,2101.0 +1078851,1078851,1078852,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22640.0,2101.0 +1078852,1078852,1078853,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22643.0,2101.0 +1078853,1078853,1078854,2,52.0,1.0,2.0,0.0,1,103700.0,1031452,1.0,22654.0,2102.0 +1078854,1078854,1078855,1,63.0,1.0,2.0,0.0,1,122060.0,1031452,4.0,22639.0,2101.0 +1078855,1078855,1078856,1,51.0,1.0,2.0,0.0,1,432000.0,1031452,4.0,22640.0,2101.0 +1078856,1078856,1078857,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22654.0,2102.0 +1078857,1078857,1078858,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22643.0,2101.0 +1078858,1078858,1078859,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22643.0,2101.0 +1078859,1078859,1078860,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22654.0,2102.0 +1078860,1078860,1078861,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22647.0,2101.0 +1078861,1078861,1078862,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22639.0,2101.0 +1078862,1078862,1078863,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22640.0,2101.0 +1078863,1078863,1078864,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22639.0,2101.0 +1078864,1078864,1078865,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22645.0,2101.0 +1078865,1078865,1078866,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22639.0,2101.0 +1078866,1078866,1078867,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22648.0,2101.0 +1078867,1078867,1078868,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22654.0,2102.0 +1078868,1078868,1078869,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22644.0,2101.0 +1078869,1078869,1078870,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22648.0,2101.0 +1078870,1078870,1078871,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22654.0,2102.0 +1078871,1078871,1078872,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22648.0,2101.0 +1078872,1078872,1078873,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22639.0,2101.0 +1078873,1078873,1078874,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22654.0,2102.0 +1078874,1078874,1078875,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22639.0,2101.0 +1078875,1078875,1078876,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22654.0,2102.0 +1078876,1078876,1078877,2,47.0,1.0,2.0,0.0,1,87000.0,1054606,1.0,22651.0,2102.0 +1078877,1078877,1078878,2,62.0,1.0,2.0,0.0,1,77910.0,1073449,3.0,22654.0,2102.0 +1078878,1078878,1078879,2,62.0,1.0,2.0,0.0,1,77910.0,1073449,3.0,22646.0,2101.0 +1078879,1078879,1078880,2,56.0,1.0,2.0,0.0,1,66000.0,1054606,1.0,22654.0,2102.0 +1078880,1078880,1078881,2,56.0,1.0,2.0,0.0,1,66000.0,1054606,1.0,22648.0,2101.0 +1078881,1078881,1078882,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22639.0,2101.0 +1078882,1078882,1078883,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22643.0,2101.0 +1078883,1078883,1078884,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22645.0,2101.0 +1078884,1078884,1078885,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22639.0,2101.0 +1078885,1078885,1078886,2,63.0,1.0,2.0,0.0,1,96800.0,1054606,1.0,22644.0,2101.0 +1078886,1078886,1078887,2,62.0,1.0,1.0,0.0,1,84500.0,1010145,1.0,22648.0,2101.0 +1078887,1078887,1078888,1,55.0,1.0,1.0,0.0,1,72000.0,1010145,4.0,22639.0,2101.0 +1078888,1078888,1078889,1,55.0,1.0,1.0,0.0,1,72000.0,1010145,4.0,22648.0,2101.0 +1078889,1078889,1078890,1,62.0,1.0,1.0,0.0,1,62000.0,1080470,4.0,22643.0,2101.0 +1078890,1078890,1078891,1,53.0,1.0,1.0,0.0,1,85000.0,1010145,6.0,22645.0,2101.0 +1078891,1078891,1078892,1,53.0,1.0,1.0,0.0,1,85000.0,1010145,6.0,22644.0,2101.0 +1078892,1078892,1078893,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22645.0,2101.0 +1078893,1078893,1078894,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22647.0,2101.0 +1078894,1078894,1078895,1,48.0,1.0,1.0,0.0,1,82200.0,1080470,4.0,22646.0,2101.0 +1078895,1078895,1078896,1,54.0,1.0,1.0,0.0,1,72040.0,1054606,4.0,22654.0,2102.0 +1078896,1078896,1078897,1,54.0,1.0,1.0,0.0,1,72040.0,1054606,4.0,22654.0,2102.0 +1078897,1078897,1078898,1,45.0,1.0,1.0,0.0,1,100000.0,1080470,4.0,22646.0,2101.0 +1078898,1078898,1078899,2,58.0,1.0,2.0,0.0,1,41400.0,1073449,1.0,22648.0,2101.0 +1078899,1078899,1078900,2,58.0,1.0,2.0,0.0,1,41400.0,1073449,1.0,22646.0,2101.0 +1078900,1078900,1078901,2,58.0,1.0,2.0,0.0,1,41400.0,1073449,1.0,22648.0,2101.0 +1078901,1078901,1078902,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22640.0,2101.0 +1078902,1078902,1078903,2,63.0,1.0,2.0,0.0,1,50000.0,1010145,1.0,22639.0,2101.0 +1078903,1078903,1078904,2,60.0,1.0,3.0,0.0,1,42000.0,1054606,1.0,22643.0,2101.0 +1078904,1078904,1078905,2,60.0,1.0,3.0,0.0,1,42000.0,1054606,1.0,22643.0,2101.0 +1078905,1078905,1078906,2,59.0,1.0,2.0,0.0,1,31700.0,1073449,1.0,22647.0,2101.0 +1078906,1078906,1078907,2,48.0,1.0,5.0,0.0,1,34700.0,1073449,1.0,22640.0,2101.0 +1078907,1078907,1078908,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22640.0,2101.0 +1078908,1078908,1078909,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22643.0,2101.0 +1078909,1078909,1078910,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22647.0,2101.0 +1078910,1078910,1078911,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22646.0,2101.0 +1078911,1078911,1078912,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22646.0,2101.0 +1078912,1078912,1078913,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22643.0,2101.0 +1078913,1078913,1078914,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22640.0,2101.0 +1078914,1078914,1078915,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22644.0,2101.0 +1078915,1078915,1078916,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22648.0,2101.0 +1078916,1078916,1078917,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22644.0,2101.0 +1078917,1078917,1078918,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22645.0,2101.0 +1078918,1078918,1078919,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22645.0,2101.0 +1078919,1078919,1078920,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22654.0,2102.0 +1078920,1078920,1078921,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22654.0,2102.0 +1078921,1078921,1078922,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22645.0,2101.0 +1078922,1078922,1078923,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22639.0,2101.0 +1078923,1078923,1078924,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22647.0,2101.0 +1078924,1078924,1078925,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22643.0,2101.0 +1078925,1078925,1078926,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22654.0,2102.0 +1078926,1078926,1078927,1,54.0,1.0,2.0,0.0,1,35000.0,1054606,6.0,22640.0,2101.0 +1078927,1078927,1078928,1,56.0,1.0,2.0,0.0,1,30300.0,1054606,6.0,22644.0,2101.0 +1078928,1078928,1078929,1,56.0,1.0,2.0,0.0,1,30300.0,1054606,6.0,22648.0,2101.0 +1078929,1078929,1078930,1,56.0,1.0,2.0,0.0,1,30300.0,1054606,6.0,22639.0,2101.0 +1078930,1078930,1078931,1,50.0,1.0,2.0,0.0,1,35000.0,1031452,4.0,22643.0,2101.0 +1078931,1078931,1078932,1,50.0,1.0,2.0,0.0,1,35000.0,1031452,4.0,22644.0,2101.0 +1078932,1078932,1078933,1,50.0,1.0,2.0,0.0,1,35000.0,1031452,4.0,22640.0,2101.0 +1078933,1078933,1078934,1,50.0,1.0,2.0,0.0,1,35000.0,1031452,4.0,22654.0,2102.0 +1078934,1078934,1078935,1,50.0,1.0,2.0,0.0,1,35000.0,1031452,4.0,22643.0,2101.0 +1078935,1078935,1078936,1,50.0,1.0,2.0,0.0,1,35000.0,1031452,4.0,22643.0,2101.0 +1078936,1078936,1078937,1,62.0,1.0,2.0,0.0,1,39200.0,1010145,4.0,22645.0,2101.0 +1078937,1078937,1078938,1,62.0,1.0,2.0,0.0,1,39200.0,1010145,4.0,22645.0,2101.0 +1078938,1078938,1078939,1,62.0,1.0,2.0,0.0,1,39200.0,1010145,4.0,22654.0,2102.0 +1078939,1078939,1078940,1,62.0,1.0,2.0,0.0,1,39200.0,1010145,4.0,22654.0,2102.0 +1078940,1078940,1078941,1,62.0,1.0,2.0,0.0,1,39200.0,1010145,4.0,22648.0,2101.0 +1078941,1078941,1078942,1,62.0,1.0,2.0,0.0,1,39200.0,1010145,4.0,22654.0,2102.0 +1078942,1078942,1078943,1,62.0,1.0,2.0,0.0,1,39200.0,1010145,4.0,22643.0,2101.0 +1078943,1078943,1078944,1,64.0,1.0,2.0,0.0,1,39400.0,1073449,4.0,22644.0,2101.0 +1078944,1078944,1078945,1,62.0,1.0,2.0,0.0,1,39200.0,1010145,4.0,22646.0,2101.0 +1078945,1078945,1078946,1,61.0,1.0,1.0,0.0,1,33000.0,1010145,6.0,22646.0,2101.0 +1078946,1078946,1078947,1,61.0,1.0,1.0,0.0,1,33000.0,1010145,6.0,22646.0,2101.0 +1078947,1078947,1078948,1,61.0,1.0,1.0,0.0,1,33000.0,1010145,6.0,22648.0,2101.0 +1078948,1078948,1078949,1,56.0,1.0,1.0,0.0,1,31000.0,1080470,6.0,22654.0,2102.0 +1078949,1078949,1078950,1,60.0,1.0,1.0,0.0,1,32000.0,1080470,4.0,22648.0,2101.0 +1078950,1078950,1078951,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22640.0,2101.0 +1078951,1078951,1078952,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22646.0,2101.0 +1078952,1078952,1078953,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22645.0,2101.0 +1078953,1078953,1078954,1,63.0,1.0,1.0,0.0,1,31000.0,1010145,6.0,22639.0,2101.0 +1078954,1078954,1078955,1,59.0,1.0,1.0,0.0,1,32700.0,1031452,6.0,22640.0,2101.0 +1078955,1078955,1078956,1,58.0,1.0,1.0,0.0,1,42900.0,1031452,6.0,22646.0,2101.0 +1078956,1078956,1078957,1,58.0,1.0,1.0,0.0,1,42900.0,1031452,6.0,22648.0,2101.0 +1078957,1078957,1078958,1,58.0,1.0,1.0,0.0,1,42900.0,1031452,6.0,22648.0,2101.0 +1078958,1078958,1078959,1,46.0,1.0,1.0,0.0,1,59000.0,1073449,4.0,22643.0,2101.0 +1078959,1078959,1078960,1,50.0,1.0,1.0,0.0,1,47130.0,1031452,4.0,22643.0,2101.0 +1078960,1078960,1078961,1,62.0,1.0,1.0,0.0,1,35100.0,1031452,4.0,22654.0,2102.0 +1078961,1078961,1078962,1,58.0,1.0,1.0,0.0,1,60000.0,1054606,4.0,22654.0,2102.0 +1078962,1078962,1078963,1,58.0,1.0,1.0,0.0,1,60000.0,1054606,4.0,22639.0,2101.0 +1078963,1078963,1078964,1,58.0,1.0,1.0,0.0,1,60000.0,1054606,4.0,22654.0,2102.0 +1078964,1078964,1078965,1,58.0,1.0,1.0,0.0,1,60000.0,1054606,4.0,22648.0,2101.0 +1078965,1078965,1078966,1,58.0,1.0,1.0,0.0,1,60000.0,1054606,4.0,22640.0,2101.0 +1078966,1078966,1078967,2,61.0,1.0,1.0,0.0,1,34000.0,1080470,1.0,22654.0,2102.0 +1078967,1078967,1078968,1,63.0,1.0,1.0,0.0,1,36700.0,1054606,4.0,22644.0,2101.0 +1078968,1078968,1078969,1,63.0,1.0,1.0,0.0,1,36700.0,1054606,4.0,22654.0,2102.0 +1078969,1078969,1078970,1,45.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22648.0,2101.0 +1078970,1078970,1078971,1,45.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22646.0,2101.0 +1078971,1078971,1078972,1,45.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22647.0,2101.0 +1078972,1078972,1078973,1,45.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22646.0,2101.0 +1078973,1078973,1078974,1,62.0,1.0,1.0,0.0,1,57000.0,1054606,6.0,22654.0,2102.0 +1078974,1078974,1078975,1,63.0,1.0,1.0,0.0,1,43000.0,1054606,4.0,22648.0,2101.0 +1078975,1078975,1078976,1,63.0,1.0,1.0,0.0,1,43000.0,1054606,4.0,22639.0,2101.0 +1078976,1078976,1078977,1,49.0,1.0,0.0,0.0,1,30500.0,1010145,4.0,22643.0,2101.0 +1078977,1078977,1078978,1,64.0,1.0,0.0,0.0,1,50000.0,1031452,4.0,22646.0,2101.0 +1078978,1078978,1078979,1,64.0,1.0,0.0,0.0,1,50000.0,1031452,4.0,22639.0,2101.0 +1078979,1078979,1078980,1,52.0,1.0,2.0,0.0,1,20100.0,1080470,6.0,22648.0,2101.0 +1078980,1078980,1078981,1,52.0,1.0,2.0,0.0,1,20100.0,1080470,6.0,22643.0,2101.0 +1078981,1078981,1078982,1,56.0,1.0,1.0,0.0,1,21900.0,1054606,6.0,22654.0,2102.0 +1078982,1078982,1078983,1,56.0,1.0,1.0,0.0,1,21900.0,1054606,6.0,22648.0,2101.0 +1078983,1078983,1078984,1,64.0,1.0,1.0,0.0,1,22000.0,1073449,6.0,22639.0,2101.0 +1078984,1078984,1078985,1,58.0,1.0,1.0,0.0,1,13500.0,1054606,6.0,22639.0,2101.0 +1078985,1078985,1078986,1,58.0,1.0,1.0,0.0,1,13500.0,1054606,6.0,22639.0,2101.0 +1078986,1078986,1078987,1,59.0,1.0,1.0,0.0,1,20550.0,1054606,4.0,22644.0,2101.0 +1078987,1078987,1078988,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22645.0,2101.0 +1078988,1078988,1078989,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22646.0,2101.0 +1078989,1078989,1078990,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22639.0,2101.0 +1078990,1078990,1078991,1,55.0,1.0,1.0,0.0,1,18000.0,1054606,4.0,22648.0,2101.0 +1078991,1078991,1078992,1,57.0,1.0,1.0,0.0,1,30000.0,1010145,6.0,22646.0,2101.0 +1078992,1078992,1078993,1,61.0,1.0,1.0,0.0,1,26150.0,1031452,6.0,22654.0,2102.0 +1078993,1078993,1078994,1,61.0,1.0,1.0,0.0,1,26150.0,1031452,6.0,22654.0,2102.0 +1078994,1078994,1078995,1,55.0,1.0,1.0,0.0,1,25000.0,1073449,6.0,22645.0,2101.0 +1078995,1078995,1078996,1,57.0,1.0,1.0,0.0,1,30000.0,1010145,6.0,22643.0,2101.0 +1078996,1078996,1078997,1,55.0,1.0,1.0,0.0,1,25000.0,1073449,6.0,22639.0,2101.0 +1078997,1078997,1078998,1,55.0,1.0,1.0,0.0,1,25000.0,1073449,6.0,22647.0,2101.0 +1078998,1078998,1078999,1,61.0,1.0,1.0,0.0,1,26150.0,1031452,6.0,22639.0,2101.0 +1078999,1078999,1079000,1,48.0,1.0,1.0,0.0,1,29996.0,1031452,6.0,22647.0,2101.0 +1079000,1079000,1079001,1,48.0,1.0,1.0,0.0,1,29996.0,1031452,6.0,22654.0,2102.0 +1079001,1079001,1079002,1,59.0,1.0,1.0,0.0,1,28000.0,1010145,6.0,22646.0,2101.0 +1079002,1079002,1079003,1,56.0,1.0,1.0,0.0,1,20800.0,1031452,6.0,22645.0,2101.0 +1079003,1079003,1079004,1,59.0,1.0,1.0,0.0,1,28000.0,1054606,6.0,22647.0,2101.0 +1079004,1079004,1079005,1,53.0,1.0,1.0,0.0,1,23000.0,1080470,4.0,22654.0,2102.0 +1079005,1079005,1079006,1,50.0,1.0,1.0,0.0,1,16800.0,1054606,4.0,22646.0,2101.0 +1079006,1079006,1079007,1,51.0,1.0,1.0,0.0,1,24000.0,1073449,4.0,22639.0,2101.0 +1079007,1079007,1079008,1,51.0,1.0,1.0,0.0,1,24000.0,1073449,4.0,22646.0,2101.0 +1079008,1079008,1079009,1,51.0,1.0,1.0,0.0,1,24000.0,1073449,4.0,22639.0,2101.0 +1079009,1079009,1079010,1,51.0,1.0,1.0,0.0,1,24000.0,1073449,4.0,22648.0,2101.0 +1079010,1079010,1079011,1,51.0,1.0,1.0,0.0,1,20000.0,1054606,4.0,22646.0,2101.0 +1079011,1079011,1079012,1,51.0,1.0,1.0,0.0,1,20000.0,1054606,4.0,22648.0,2101.0 +1079012,1079012,1079013,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22639.0,2101.0 +1079013,1079013,1079014,1,62.0,1.0,1.0,0.0,1,0.0,1073449,6.0,22654.0,2102.0 +1079014,1079014,1079015,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22648.0,2101.0 +1079015,1079015,1079016,1,61.0,1.0,1.0,0.0,1,0.0,1031452,6.0,22648.0,2101.0 +1079016,1079016,1079017,1,62.0,1.0,1.0,0.0,1,0.0,1073449,6.0,22648.0,2101.0 +1079017,1079017,1079018,1,60.0,1.0,1.0,0.0,1,18500.0,1031452,4.0,22639.0,2101.0 +1079018,1079018,1079019,1,59.0,1.0,1.0,0.0,1,15900.0,1073449,6.0,22647.0,2101.0 +1079019,1079019,1079020,1,61.0,1.0,1.0,0.0,1,30000.0,1010145,6.0,22639.0,2101.0 +1079020,1079020,1079021,1,62.0,1.0,1.0,0.0,1,18900.0,1080470,6.0,22639.0,2101.0 +1079021,1079021,1079022,1,57.0,1.0,1.0,0.0,1,28600.0,1080470,4.0,22654.0,2102.0 +1079022,1079022,1079023,1,62.0,1.0,1.0,0.0,1,14950.0,1073449,4.0,22648.0,2101.0 +1079023,1079023,1079024,1,57.0,1.0,1.0,0.0,1,28600.0,1080470,4.0,22640.0,2101.0 +1079024,1079024,1079025,3,49.0,1.0,2.0,0.0,1,188000.0,1080470,1.0,22648.0,2101.0 +1079025,1079025,1079026,3,49.0,1.0,2.0,1.0,1,188000.0,1080470,1.0,22640.0,2101.0 +1079026,1079026,1079027,4,51.0,1.0,2.0,1.0,1,71900.0,1073449,1.0,22645.0,2101.0 +1079027,1079027,1079028,4,51.0,1.0,2.0,2.0,1,71900.0,1073449,1.0,22648.0,2101.0 +1079028,1079028,1079029,4,51.0,1.0,2.0,2.0,1,71900.0,1073449,1.0,22640.0,2101.0 +1079029,1079029,1079030,4,51.0,1.0,2.0,2.0,1,71900.0,1073449,1.0,22639.0,2101.0 +1079030,1079030,1079031,4,51.0,1.0,2.0,2.0,1,71900.0,1073449,1.0,22645.0,2101.0 +1079031,1079031,1079032,4,51.0,1.0,2.0,2.0,1,71900.0,1073449,1.0,22643.0,2101.0 +1079032,1079032,1079033,3,45.0,1.0,2.0,2.0,1,72300.0,1010145,1.0,22648.0,2101.0 +1079033,1079033,1079034,1,27.0,2.0,1.0,1.0,1,41000.0,1031452,6.0,22646.0,2101.0 +1079034,1079034,1079035,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22640.0,2101.0 +1079035,1079035,1079036,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22654.0,2102.0 +1079036,1079036,1079037,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22645.0,2101.0 +1079037,1079037,1079038,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22648.0,2101.0 +1079038,1079038,1079039,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22646.0,2101.0 +1079039,1079039,1079040,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22648.0,2101.0 +1079040,1079040,1079041,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22640.0,2101.0 +1079041,1079041,1079042,2,44.0,2.0,1.0,0.0,1,98000.0,1031452,3.0,22647.0,2101.0 +1079042,1079042,1079043,2,36.0,2.0,1.0,1.0,1,23000.0,1073449,3.0,22639.0,2101.0 +1079043,1079043,1079044,2,36.0,2.0,1.0,1.0,1,23000.0,1073449,3.0,22645.0,2101.0 +1079044,1079044,1079045,2,40.0,1.0,2.0,1.0,1,61400.0,1080470,5.0,22643.0,2101.0 +1079045,1079045,1079046,2,40.0,1.0,2.0,0.0,1,61400.0,1080470,5.0,22640.0,2101.0 +1079046,1079046,1079047,2,35.0,1.0,2.0,0.0,1,81200.0,1054606,7.0,22646.0,2101.0 +1079047,1079047,1079048,2,35.0,1.0,2.0,0.0,1,81200.0,1054606,7.0,22648.0,2101.0 +1079048,1079048,1079049,2,35.0,1.0,2.0,0.0,1,81200.0,1054606,7.0,22640.0,2101.0 +1079049,1079049,1079050,2,35.0,1.0,2.0,0.0,1,81200.0,1054606,7.0,22654.0,2102.0 +1079050,1079050,1079051,2,35.0,1.0,2.0,0.0,1,81200.0,1054606,7.0,22639.0,2101.0 +1079051,1079051,1079052,2,35.0,1.0,2.0,0.0,1,81200.0,1054606,7.0,22645.0,2101.0 +1079052,1079052,1079053,2,35.0,1.0,2.0,0.0,1,81200.0,1054606,7.0,22648.0,2101.0 +1079053,1079053,1079054,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22648.0,2101.0 +1079054,1079054,1079055,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22648.0,2101.0 +1079055,1079055,1079056,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22639.0,2101.0 +1079056,1079056,1079057,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22646.0,2101.0 +1079057,1079057,1079058,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22640.0,2101.0 +1079058,1079058,1079059,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22647.0,2101.0 +1079059,1079059,1079060,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22647.0,2101.0 +1079060,1079060,1079061,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22643.0,2101.0 +1079061,1079061,1079062,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22647.0,2101.0 +1079062,1079062,1079063,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22643.0,2101.0 +1079063,1079063,1079064,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22639.0,2101.0 +1079064,1079064,1079065,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22640.0,2101.0 +1079065,1079065,1079066,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22645.0,2101.0 +1079066,1079066,1079067,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22644.0,2101.0 +1079067,1079067,1079068,1,43.0,1.0,2.0,0.0,1,64070.0,1054606,6.0,22645.0,2101.0 +1079068,1079068,1079069,2,28.0,1.0,1.0,0.0,1,66600.0,1054606,1.0,22648.0,2101.0 +1079069,1079069,1079070,2,28.0,1.0,1.0,0.0,1,66600.0,1054606,1.0,22643.0,2101.0 +1079070,1079070,1079071,2,28.0,1.0,1.0,0.0,1,66600.0,1054606,1.0,22646.0,2101.0 +1079071,1079071,1079072,1,43.0,1.0,1.0,0.0,1,80000.0,1010145,4.0,22654.0,2102.0 +1079072,1079072,1079073,1,31.0,1.0,1.0,0.0,1,70000.0,1080470,4.0,22648.0,2101.0 +1079073,1079073,1079074,1,27.0,1.0,1.0,0.0,1,76000.0,1073449,4.0,22639.0,2101.0 +1079074,1079074,1079075,1,33.0,1.0,1.0,0.0,1,91000.0,1073449,4.0,22647.0,2101.0 +1079075,1079075,1079076,1,27.0,1.0,1.0,0.0,1,90000.0,1031452,4.0,22654.0,2102.0 +1079076,1079076,1079077,1,40.0,1.0,1.0,0.0,1,83000.0,1031452,4.0,22643.0,2101.0 +1079077,1079077,1079078,2,33.0,1.0,2.0,0.0,1,57000.0,1054606,7.0,22645.0,2101.0 +1079078,1079078,1079079,1,38.0,1.0,2.0,0.0,1,58000.0,1031452,6.0,22645.0,2101.0 +1079079,1079079,1079080,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22648.0,2101.0 +1079080,1079080,1079081,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22640.0,2101.0 +1079081,1079081,1079082,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22643.0,2101.0 +1079082,1079082,1079083,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22644.0,2101.0 +1079083,1079083,1079084,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22654.0,2102.0 +1079084,1079084,1079085,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22654.0,2102.0 +1079085,1079085,1079086,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22640.0,2101.0 +1079086,1079086,1079087,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22648.0,2101.0 +1079087,1079087,1079088,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22646.0,2101.0 +1079088,1079088,1079089,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22647.0,2101.0 +1079089,1079089,1079090,1,44.0,1.0,3.0,0.0,1,36400.0,1073449,4.0,22643.0,2101.0 +1079090,1079090,1079091,1,29.0,1.0,1.0,0.0,1,40000.0,1073449,6.0,22648.0,2101.0 +1079091,1079091,1079092,1,29.0,1.0,1.0,0.0,1,40000.0,1073449,6.0,22644.0,2101.0 +1079092,1079092,1079093,1,31.0,1.0,1.0,0.0,1,37500.0,1080470,4.0,22648.0,2101.0 +1079093,1079093,1079094,1,31.0,1.0,1.0,0.0,1,37500.0,1080470,4.0,22639.0,2101.0 +1079094,1079094,1079095,1,26.0,1.0,1.0,0.0,1,55000.0,1073449,4.0,22640.0,2101.0 +1079095,1079095,1079096,1,26.0,1.0,1.0,0.0,1,55000.0,1073449,4.0,22654.0,2102.0 +1079096,1079096,1079097,1,26.0,1.0,1.0,0.0,1,55000.0,1073449,4.0,22645.0,2101.0 +1079097,1079097,1079098,1,29.0,1.0,1.0,0.0,1,41100.0,1031452,4.0,22654.0,2102.0 +1079098,1079098,1079099,1,29.0,1.0,1.0,0.0,1,41100.0,1031452,4.0,22648.0,2101.0 +1079099,1079099,1079100,1,26.0,1.0,1.0,0.0,1,55000.0,1073449,4.0,22647.0,2101.0 +1079100,1079100,1079101,1,25.0,1.0,1.0,0.0,1,47500.0,1080470,4.0,22643.0,2101.0 +1079101,1079101,1079102,1,39.0,1.0,1.0,0.0,1,53000.0,1073449,4.0,22644.0,2101.0 +1079102,1079102,1079103,1,33.0,1.0,1.0,0.0,1,53000.0,1054606,4.0,22639.0,2101.0 +1079103,1079103,1079104,1,33.0,1.0,1.0,0.0,1,53000.0,1054606,4.0,22646.0,2101.0 +1079104,1079104,1079105,1,33.0,1.0,1.0,0.0,1,53000.0,1054606,4.0,22647.0,2101.0 +1079105,1079105,1079106,1,33.0,1.0,1.0,0.0,1,53000.0,1054606,4.0,22654.0,2102.0 +1079106,1079106,1079107,1,28.0,1.0,1.0,0.0,1,48000.0,1054606,6.0,22646.0,2101.0 +1079107,1079107,1079108,1,28.0,1.0,1.0,0.0,1,48000.0,1054606,6.0,22644.0,2101.0 +1079108,1079108,1079109,1,30.0,1.0,1.0,0.0,1,45000.0,1073449,6.0,22654.0,2102.0 +1079109,1079109,1079110,1,37.0,1.0,1.0,0.0,1,51000.0,1054606,6.0,22639.0,2101.0 +1079110,1079110,1079111,1,28.0,1.0,1.0,0.0,1,48000.0,1054606,6.0,22643.0,2101.0 +1079111,1079111,1079112,1,37.0,1.0,1.0,0.0,1,51000.0,1054606,6.0,22654.0,2102.0 +1079112,1079112,1079113,1,29.0,1.0,1.0,0.0,1,54400.0,1054606,4.0,22648.0,2101.0 +1079113,1079113,1079114,1,35.0,1.0,1.0,0.0,1,30000.0,1010145,6.0,22648.0,2101.0 +1079114,1079114,1079115,1,35.0,1.0,1.0,0.0,1,30000.0,1010145,6.0,22654.0,2102.0 +1079115,1079115,1079116,1,26.0,1.0,1.0,0.0,1,20000.0,1031452,6.0,22643.0,2101.0 +1079116,1079116,1079117,1,35.0,1.0,1.0,0.0,1,24500.0,1080470,6.0,22640.0,2101.0 +1079117,1079117,1079118,1,35.0,1.0,1.0,0.0,1,24500.0,1080470,6.0,22647.0,2101.0 +1079118,1079118,1079119,1,35.0,1.0,1.0,0.0,1,24500.0,1080470,6.0,22640.0,2101.0 +1079119,1079119,1079120,1,35.0,1.0,1.0,0.0,1,24500.0,1080470,6.0,22646.0,2101.0 +1079120,1079120,1079121,1,32.0,1.0,1.0,0.0,1,17500.0,1080470,4.0,22654.0,2102.0 +1079121,1079121,1079122,1,42.0,1.0,1.0,0.0,1,13600.0,1031452,6.0,22648.0,2101.0 +1079122,1079122,1079123,3,44.0,1.0,2.0,0.0,1,301700.0,1031452,1.0,22648.0,2101.0 +1079123,1079123,1079124,4,42.0,1.0,2.0,1.0,1,80000.0,1031452,2.0,22648.0,2101.0 +1079124,1079124,1079125,3,32.0,1.0,2.0,2.0,1,48800.0,1080470,1.0,22648.0,2101.0 +1079125,1079125,1079126,4,44.0,1.0,2.0,1.0,1,31000.0,1054606,1.0,22640.0,2101.0 +1079126,1079126,1079127,4,44.0,1.0,2.0,2.0,1,31000.0,1054606,1.0,22643.0,2101.0 +1079127,1079127,1079128,2,41.0,1.0,1.0,2.0,1,43100.0,1054606,3.0,22643.0,2101.0 +1079128,1079128,1079129,2,35.0,1.0,2.0,1.0,1,23600.0,1031452,3.0,22648.0,2101.0 +1079129,1079129,1079130,2,35.0,1.0,2.0,1.0,1,23600.0,1031452,3.0,22654.0,2102.0 +1079130,1079130,1079131,2,35.0,1.0,2.0,1.0,1,23600.0,1031452,3.0,22639.0,2101.0 +1079131,1079131,1079132,2,35.0,1.0,2.0,1.0,1,23600.0,1031452,3.0,22640.0,2101.0 +1079132,1079132,1079133,2,35.0,1.0,2.0,1.0,1,23600.0,1031452,3.0,22639.0,2101.0 +1079133,1079133,1079134,4,40.0,1.0,2.0,1.0,1,5000.0,1031452,1.0,22646.0,2101.0 +1079134,1079134,1079135,4,41.0,1.0,2.0,2.0,1,18000.0,1073449,1.0,22643.0,2101.0 +1079135,1079135,1079136,2,28.0,1.0,4.0,2.0,1,9450.0,1031452,7.0,22648.0,2101.0 +1079136,1079136,1079137,2,28.0,1.0,4.0,1.0,1,9450.0,1031452,7.0,22639.0,2101.0 +1079137,1079137,1079138,2,28.0,1.0,4.0,1.0,1,9450.0,1031452,7.0,22639.0,2101.0 +1079138,1079138,1079139,2,28.0,1.0,4.0,1.0,1,9450.0,1031452,7.0,22643.0,2101.0 +1079139,1079139,1079140,2,37.0,1.0,1.0,1.0,1,26000.0,1031452,2.0,22646.0,2101.0 +1079140,1079140,1079141,2,37.0,1.0,1.0,1.0,1,26000.0,1031452,2.0,22640.0,2101.0 +1079141,1079141,1079142,2,36.0,1.0,0.0,1.0,1,27800.0,1080470,2.0,22639.0,2101.0 +1079142,1079142,1079143,2,36.0,1.0,0.0,1.0,1,27800.0,1080470,2.0,22643.0,2101.0 +1079143,1079143,1079144,4,44.0,1.0,0.0,1.0,1,26600.0,1010145,3.0,22645.0,2101.0 +1079144,1079144,1079145,3,42.0,1.0,0.0,3.0,1,28800.0,1010145,5.0,22643.0,2101.0 +1080347,1080347,1080348,1,65.0,4.0,1.0,0.0,1,30000.0,1031452,6.0,22664.0,2103.0 +1080348,1080348,1080349,1,78.0,4.0,0.0,0.0,1,17600.0,1054606,6.0,22663.0,2103.0 +1080349,1080349,1080350,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22665.0,2103.0 +1080350,1080350,1080351,2,67.0,1.0,2.0,0.0,1,93100.0,1054606,1.0,22660.0,2103.0 +1080351,1080351,1080352,2,69.0,1.0,2.0,0.0,1,63600.0,1031452,1.0,22665.0,2103.0 +1080352,1080352,1080353,1,65.0,1.0,1.0,0.0,1,98000.0,1031452,6.0,22665.0,2103.0 +1080353,1080353,1080354,1,74.0,1.0,1.0,0.0,1,60990.0,1054606,6.0,22665.0,2103.0 +1080354,1080354,1080355,2,73.0,1.0,0.0,0.0,1,79800.0,1080470,1.0,22666.0,2103.0 +1080355,1080355,1080356,2,73.0,1.0,0.0,0.0,1,79800.0,1080470,1.0,22665.0,2103.0 +1080356,1080356,1080357,2,73.0,1.0,0.0,0.0,1,79800.0,1080470,1.0,22665.0,2103.0 +1080357,1080357,1080358,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22665.0,2103.0 +1080358,1080358,1080359,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22665.0,2103.0 +1080359,1080359,1080360,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22665.0,2103.0 +1080360,1080360,1080361,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22662.0,2103.0 +1080361,1080361,1080362,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22665.0,2103.0 +1080362,1080362,1080363,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22665.0,2103.0 +1080363,1080363,1080364,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22665.0,2103.0 +1080364,1080364,1080365,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22663.0,2103.0 +1080365,1080365,1080366,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22661.0,2103.0 +1080366,1080366,1080367,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22665.0,2103.0 +1080367,1080367,1080368,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22665.0,2103.0 +1080368,1080368,1080369,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22662.0,2103.0 +1080369,1080369,1080370,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22665.0,2103.0 +1080370,1080370,1080371,2,74.0,1.0,2.0,0.0,1,31500.0,1073449,1.0,22665.0,2103.0 +1080371,1080371,1080372,2,67.0,1.0,2.0,0.0,1,42100.0,1080470,1.0,22665.0,2103.0 +1080372,1080372,1080373,2,69.0,1.0,3.0,0.0,1,49900.0,1031452,1.0,22662.0,2103.0 +1080373,1080373,1080374,2,69.0,1.0,3.0,0.0,1,49900.0,1031452,1.0,22661.0,2103.0 +1080374,1080374,1080375,2,69.0,1.0,3.0,0.0,1,49900.0,1031452,1.0,22664.0,2103.0 +1080375,1080375,1080376,2,67.0,1.0,2.0,0.0,1,42100.0,1080470,1.0,22661.0,2103.0 +1080376,1080376,1080377,2,69.0,1.0,3.0,0.0,1,49900.0,1031452,1.0,22665.0,2103.0 +1080377,1080377,1080378,2,82.0,1.0,2.0,0.0,1,32600.0,1073449,1.0,22663.0,2103.0 +1080378,1080378,1080379,2,69.0,1.0,3.0,0.0,1,49900.0,1031452,1.0,22665.0,2103.0 +1080379,1080379,1080380,2,82.0,1.0,2.0,0.0,1,32600.0,1073449,1.0,22665.0,2103.0 +1080380,1080380,1080381,2,82.0,1.0,2.0,0.0,1,32600.0,1073449,1.0,22662.0,2103.0 +1080381,1080381,1080382,2,69.0,1.0,3.0,0.0,1,49900.0,1031452,1.0,22665.0,2103.0 +1080382,1080382,1080383,1,73.0,1.0,2.0,0.0,1,37300.0,1010145,6.0,22662.0,2103.0 +1080383,1080383,1080384,1,82.0,1.0,2.0,0.0,1,47800.0,1010145,4.0,22661.0,2103.0 +1080384,1080384,1080385,1,80.0,1.0,1.0,0.0,1,45910.0,1054606,6.0,22665.0,2103.0 +1080385,1080385,1080386,1,81.0,1.0,1.0,0.0,1,38800.0,1031452,6.0,22665.0,2103.0 +1080386,1080386,1080387,2,90.0,1.0,1.0,0.0,1,37600.0,1080470,1.0,22665.0,2103.0 +1080387,1080387,1080388,2,94.0,1.0,1.0,0.0,1,53600.0,1054606,1.0,22665.0,2103.0 +1080388,1080388,1080389,2,94.0,1.0,1.0,0.0,1,53600.0,1054606,1.0,22660.0,2103.0 +1080389,1080389,1080390,2,90.0,1.0,1.0,0.0,1,51600.0,1054606,1.0,22665.0,2103.0 +1080390,1080390,1080391,2,85.0,1.0,1.0,0.0,1,42200.0,1010145,1.0,22662.0,2103.0 +1080391,1080391,1080392,2,85.0,1.0,1.0,0.0,1,42200.0,1010145,1.0,22664.0,2103.0 +1080392,1080392,1080393,2,72.0,1.0,1.0,0.0,1,32000.0,1080470,1.0,22665.0,2103.0 +1080393,1080393,1080394,2,85.0,1.0,1.0,0.0,1,42200.0,1010145,1.0,22660.0,2103.0 +1080394,1080394,1080395,2,85.0,1.0,1.0,0.0,1,42200.0,1010145,1.0,22664.0,2103.0 +1080395,1080395,1080396,1,94.0,1.0,1.0,0.0,1,46800.0,1031452,6.0,22662.0,2103.0 +1080396,1080396,1080397,1,67.0,1.0,1.0,0.0,1,45200.0,1073449,6.0,22661.0,2103.0 +1080397,1080397,1080398,1,73.0,1.0,1.0,0.0,1,39900.0,1080470,6.0,22665.0,2103.0 +1080398,1080398,1080399,1,78.0,1.0,1.0,0.0,1,46200.0,1031452,6.0,22665.0,2103.0 +1080399,1080399,1080400,1,83.0,1.0,1.0,0.0,1,31000.0,1080470,6.0,22661.0,2103.0 +1080400,1080400,1080401,1,72.0,1.0,1.0,0.0,1,55100.0,1010145,6.0,22661.0,2103.0 +1080401,1080401,1080402,1,82.0,1.0,1.0,0.0,1,35200.0,1054606,6.0,22663.0,2103.0 +1080402,1080402,1080403,1,78.0,1.0,1.0,0.0,1,46200.0,1031452,6.0,22665.0,2103.0 +1080403,1080403,1080404,1,72.0,1.0,1.0,0.0,1,55100.0,1010145,6.0,22665.0,2103.0 +1080404,1080404,1080405,1,72.0,1.0,1.0,0.0,1,55100.0,1010145,6.0,22662.0,2103.0 +1080405,1080405,1080406,1,72.0,1.0,1.0,0.0,1,55100.0,1010145,6.0,22664.0,2103.0 +1080406,1080406,1080407,1,74.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22661.0,2103.0 +1080407,1080407,1080408,1,69.0,1.0,1.0,0.0,1,37900.0,1031452,4.0,22665.0,2103.0 +1080408,1080408,1080409,1,69.0,1.0,1.0,0.0,1,60000.0,1010145,4.0,22662.0,2103.0 +1080409,1080409,1080410,1,70.0,1.0,1.0,0.0,1,41680.0,1080470,4.0,22665.0,2103.0 +1080410,1080410,1080411,2,79.0,1.0,0.0,0.0,1,58900.0,1073449,1.0,22665.0,2103.0 +1080411,1080411,1080412,2,79.0,1.0,0.0,0.0,1,58900.0,1073449,1.0,22660.0,2103.0 +1080412,1080412,1080413,2,79.0,1.0,0.0,0.0,1,58900.0,1073449,1.0,22662.0,2103.0 +1080413,1080413,1080414,2,79.0,1.0,0.0,0.0,1,58900.0,1073449,1.0,22665.0,2103.0 +1080414,1080414,1080415,2,79.0,1.0,0.0,0.0,1,58900.0,1073449,1.0,22664.0,2103.0 +1080415,1080415,1080416,1,87.0,1.0,0.0,0.0,1,43000.0,1031452,6.0,22665.0,2103.0 +1080416,1080416,1080417,1,87.0,1.0,0.0,0.0,1,43000.0,1031452,6.0,22665.0,2103.0 +1080417,1080417,1080418,1,76.0,1.0,2.0,0.0,1,24000.0,1031452,4.0,22665.0,2103.0 +1080418,1080418,1080419,2,84.0,1.0,2.0,0.0,1,22500.0,1080470,1.0,22665.0,2103.0 +1080419,1080419,1080420,1,65.0,1.0,2.0,0.0,1,18310.0,1073449,6.0,22661.0,2103.0 +1080420,1080420,1080421,1,73.0,1.0,2.0,0.0,1,10600.0,1054606,6.0,22666.0,2103.0 +1080421,1080421,1080422,1,73.0,1.0,2.0,0.0,1,10600.0,1054606,6.0,22663.0,2103.0 +1080422,1080422,1080423,1,86.0,1.0,2.0,0.0,1,22000.0,1031452,6.0,22665.0,2103.0 +1080423,1080423,1080424,1,70.0,1.0,2.0,0.0,1,11000.0,1010145,6.0,22665.0,2103.0 +1080424,1080424,1080425,1,70.0,1.0,2.0,0.0,1,11000.0,1010145,6.0,22664.0,2103.0 +1080425,1080425,1080426,1,65.0,1.0,2.0,0.0,1,18310.0,1073449,6.0,22664.0,2103.0 +1080426,1080426,1080427,1,70.0,1.0,2.0,0.0,1,11000.0,1010145,6.0,22665.0,2103.0 +1080427,1080427,1080428,1,84.0,1.0,3.0,0.0,1,30000.0,1010145,6.0,22662.0,2103.0 +1080428,1080428,1080429,1,79.0,1.0,2.0,0.0,1,2000.0,1073449,4.0,22665.0,2103.0 +1080429,1080429,1080430,1,80.0,1.0,1.0,0.0,1,29400.0,1080470,6.0,22663.0,2103.0 +1080430,1080430,1080431,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22665.0,2103.0 +1080431,1080431,1080432,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22662.0,2103.0 +1080432,1080432,1080433,2,78.0,1.0,1.0,0.0,1,8980.0,1080470,1.0,22665.0,2103.0 +1080433,1080433,1080434,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22665.0,2103.0 +1080434,1080434,1080435,2,78.0,1.0,1.0,0.0,1,23500.0,1054606,1.0,22663.0,2103.0 +1080435,1080435,1080436,1,89.0,1.0,1.0,0.0,1,17400.0,1080470,6.0,22665.0,2103.0 +1080436,1080436,1080437,1,87.0,1.0,1.0,0.0,1,27620.0,1031452,6.0,22663.0,2103.0 +1080437,1080437,1080438,1,85.0,1.0,1.0,0.0,1,21800.0,1073449,6.0,22664.0,2103.0 +1080438,1080438,1080439,1,68.0,1.0,1.0,0.0,1,10300.0,1054606,6.0,22665.0,2103.0 +1080439,1080439,1080440,1,85.0,1.0,1.0,0.0,1,21800.0,1073449,6.0,22665.0,2103.0 +1080440,1080440,1080441,1,68.0,1.0,1.0,0.0,1,10300.0,1054606,6.0,22665.0,2103.0 +1080441,1080441,1080442,1,77.0,1.0,1.0,0.0,1,10000.0,1054606,6.0,22665.0,2103.0 +1080442,1080442,1080443,1,77.0,1.0,1.0,0.0,1,10000.0,1054606,6.0,22665.0,2103.0 +1080443,1080443,1080444,1,77.0,1.0,1.0,0.0,1,10000.0,1054606,6.0,22665.0,2103.0 +1080444,1080444,1080445,1,81.0,1.0,1.0,0.0,1,15000.0,1054606,6.0,22665.0,2103.0 +1080445,1080445,1080446,1,87.0,1.0,1.0,0.0,1,27620.0,1031452,6.0,22661.0,2103.0 +1080446,1080446,1080447,1,87.0,1.0,1.0,0.0,1,27620.0,1031452,6.0,22665.0,2103.0 +1080447,1080447,1080448,1,71.0,1.0,1.0,0.0,1,3500.0,1031452,6.0,22660.0,2103.0 +1080448,1080448,1080449,1,74.0,1.0,1.0,0.0,1,21260.0,1080470,6.0,22665.0,2103.0 +1080449,1080449,1080450,1,87.0,1.0,1.0,0.0,1,27620.0,1031452,6.0,22665.0,2103.0 +1080450,1080450,1080451,1,89.0,1.0,1.0,0.0,1,17400.0,1080470,6.0,22661.0,2103.0 +1080451,1080451,1080452,1,87.0,1.0,1.0,0.0,1,27620.0,1031452,6.0,22665.0,2103.0 +1080452,1080452,1080453,1,87.0,1.0,1.0,0.0,1,27620.0,1031452,6.0,22663.0,2103.0 +1080453,1080453,1080454,1,81.0,1.0,1.0,0.0,1,15000.0,1054606,6.0,22665.0,2103.0 +1080454,1080454,1080455,1,89.0,1.0,1.0,0.0,1,2300.0,1073449,6.0,22665.0,2103.0 +1080455,1080455,1080456,1,79.0,1.0,1.0,0.0,1,28000.0,1073449,6.0,22665.0,2103.0 +1080456,1080456,1080457,1,94.0,1.0,1.0,0.0,1,22000.0,1031452,6.0,22665.0,2103.0 +1080457,1080457,1080458,1,85.0,1.0,1.0,0.0,1,21800.0,1073449,6.0,22666.0,2103.0 +1080458,1080458,1080459,1,89.0,1.0,1.0,0.0,1,2300.0,1073449,6.0,22665.0,2103.0 +1080459,1080459,1080460,1,77.0,1.0,1.0,0.0,1,27000.0,1010145,6.0,22666.0,2103.0 +1080460,1080460,1080461,1,77.0,1.0,1.0,0.0,1,27000.0,1010145,6.0,22665.0,2103.0 +1080461,1080461,1080462,1,73.0,1.0,1.0,0.0,1,27730.0,1073449,6.0,22663.0,2103.0 +1080462,1080462,1080463,1,89.0,1.0,1.0,0.0,1,17400.0,1080470,6.0,22665.0,2103.0 +1080463,1080463,1080464,1,71.0,1.0,1.0,0.0,1,21500.0,1054606,6.0,22665.0,2103.0 +1080464,1080464,1080465,1,71.0,1.0,1.0,0.0,1,3500.0,1031452,6.0,22661.0,2103.0 +1080465,1080465,1080466,1,88.0,1.0,1.0,0.0,1,24500.0,1073449,6.0,22665.0,2103.0 +1080466,1080466,1080467,1,77.0,1.0,1.0,0.0,1,27000.0,1010145,6.0,22665.0,2103.0 +1080467,1080467,1080468,1,67.0,1.0,1.0,0.0,1,20900.0,1031452,4.0,22661.0,2103.0 +1080468,1080468,1080469,1,85.0,1.0,1.0,0.0,1,24500.0,1054606,4.0,22663.0,2103.0 +1080469,1080469,1080470,1,91.0,1.0,1.0,0.0,1,19720.0,1010145,4.0,22665.0,2103.0 +1080470,1080470,1080471,1,94.0,1.0,0.0,0.0,1,13300.0,1010145,6.0,22662.0,2103.0 +1080471,1080471,1080472,1,85.0,1.0,0.0,0.0,1,26900.0,1010145,6.0,22663.0,2103.0 +1080472,1080472,1080473,1,80.0,1.0,0.0,0.0,1,26310.0,1073449,6.0,22665.0,2103.0 +1080473,1080473,1080474,1,75.0,1.0,0.0,0.0,1,24000.0,1080470,6.0,22664.0,2103.0 +1080474,1080474,1080475,1,80.0,1.0,0.0,0.0,1,26310.0,1073449,6.0,22666.0,2103.0 +1080475,1080475,1080476,1,94.0,1.0,0.0,0.0,1,27600.0,1073449,6.0,22665.0,2103.0 +1080476,1080476,1080477,1,89.0,1.0,0.0,0.0,1,29000.0,1080470,6.0,22665.0,2103.0 +1080477,1080477,1080478,1,94.0,1.0,0.0,0.0,1,27600.0,1073449,6.0,22665.0,2103.0 +1080478,1080478,1080479,1,89.0,1.0,0.0,0.0,1,29000.0,1080470,6.0,22665.0,2103.0 +1080479,1080479,1080480,1,80.0,1.0,0.0,0.0,1,26310.0,1073449,6.0,22665.0,2103.0 +1080480,1080480,1080481,1,89.0,1.0,0.0,0.0,1,29000.0,1080470,6.0,22664.0,2103.0 +1080481,1080481,1080482,1,94.0,1.0,0.0,0.0,1,27600.0,1073449,6.0,22664.0,2103.0 +1080482,1080482,1080483,1,90.0,1.0,0.0,0.0,1,18600.0,1080470,4.0,22663.0,2103.0 +1080483,1080483,1080484,1,90.0,1.0,0.0,0.0,1,18600.0,1080470,4.0,22663.0,2103.0 +1080484,1080484,1080485,4,46.0,4.0,1.0,0.0,1,57900.0,1010145,5.0,22662.0,2103.0 +1080485,1080485,1080486,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22662.0,2103.0 +1080486,1080486,1080487,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22662.0,2103.0 +1080487,1080487,1080488,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22665.0,2103.0 +1080488,1080488,1080489,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22663.0,2103.0 +1080489,1080489,1080490,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22665.0,2103.0 +1080490,1080490,1080491,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22665.0,2103.0 +1080491,1080491,1080492,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22660.0,2103.0 +1080492,1080492,1080493,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22664.0,2103.0 +1080493,1080493,1080494,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22665.0,2103.0 +1080494,1080494,1080495,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22665.0,2103.0 +1080495,1080495,1080496,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22664.0,2103.0 +1080496,1080496,1080497,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22662.0,2103.0 +1080497,1080497,1080498,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22661.0,2103.0 +1080498,1080498,1080499,2,47.0,1.0,2.0,0.0,1,87000.0,1054606,1.0,22665.0,2103.0 +1080499,1080499,1080500,2,47.0,1.0,2.0,0.0,1,87000.0,1054606,1.0,22662.0,2103.0 +1080500,1080500,1080501,2,47.0,1.0,2.0,0.0,1,87000.0,1054606,1.0,22664.0,2103.0 +1080501,1080501,1080502,2,62.0,1.0,1.0,0.0,1,84500.0,1010145,1.0,22663.0,2103.0 +1080502,1080502,1080503,1,60.0,1.0,1.0,0.0,1,91000.0,1073449,6.0,22663.0,2103.0 +1080503,1080503,1080504,1,63.0,1.0,1.0,0.0,1,70000.0,1080470,6.0,22665.0,2103.0 +1080504,1080504,1080505,1,55.0,1.0,1.0,0.0,1,69000.0,1031452,6.0,22660.0,2103.0 +1080505,1080505,1080506,1,45.0,1.0,1.0,0.0,1,95000.0,1080470,6.0,22665.0,2103.0 +1080506,1080506,1080507,1,56.0,1.0,1.0,0.0,1,61400.0,1080470,6.0,22666.0,2103.0 +1080507,1080507,1080508,2,48.0,1.0,5.0,0.0,1,34700.0,1073449,1.0,22665.0,2103.0 +1080508,1080508,1080509,1,45.0,1.0,2.0,0.0,1,52000.0,1054606,4.0,22665.0,2103.0 +1080509,1080509,1080510,2,46.0,1.0,1.0,0.0,1,45000.0,1073449,1.0,22664.0,2103.0 +1080510,1080510,1080511,2,46.0,1.0,1.0,0.0,1,45000.0,1073449,1.0,22665.0,2103.0 +1080511,1080511,1080512,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22665.0,2103.0 +1080512,1080512,1080513,1,59.0,1.0,1.0,0.0,1,48000.0,1010145,6.0,22665.0,2103.0 +1080513,1080513,1080514,1,50.0,1.0,1.0,0.0,1,47130.0,1031452,4.0,22665.0,2103.0 +1080514,1080514,1080515,1,55.0,1.0,1.0,0.0,1,42000.0,1054606,4.0,22665.0,2103.0 +1080515,1080515,1080516,1,64.0,1.0,0.0,0.0,1,50000.0,1031452,4.0,22665.0,2103.0 +1080516,1080516,1080517,2,48.0,1.0,2.0,0.0,1,22000.0,1031452,5.0,22662.0,2103.0 +1080517,1080517,1080518,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22663.0,2103.0 +1080518,1080518,1080519,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22661.0,2103.0 +1080519,1080519,1080520,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22660.0,2103.0 +1080520,1080520,1080521,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22661.0,2103.0 +1080521,1080521,1080522,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080522,1080522,1080523,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080523,1080523,1080524,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080524,1080524,1080525,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22662.0,2103.0 +1080525,1080525,1080526,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080526,1080526,1080527,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080527,1080527,1080528,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22661.0,2103.0 +1080528,1080528,1080529,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080529,1080529,1080530,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080530,1080530,1080531,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22666.0,2103.0 +1080531,1080531,1080532,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22661.0,2103.0 +1080532,1080532,1080533,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080533,1080533,1080534,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080534,1080534,1080535,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22661.0,2103.0 +1080535,1080535,1080536,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080536,1080536,1080537,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080537,1080537,1080538,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22665.0,2103.0 +1080538,1080538,1080539,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22664.0,2103.0 +1080539,1080539,1080540,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22664.0,2103.0 +1080540,1080540,1080541,1,59.0,1.0,1.0,0.0,1,20550.0,1054606,4.0,22663.0,2103.0 +1080541,1080541,1080542,1,49.0,1.0,1.0,0.0,1,15000.0,1010145,4.0,22665.0,2103.0 +1080542,1080542,1080543,1,55.0,1.0,1.0,0.0,1,18000.0,1054606,4.0,22665.0,2103.0 +1080543,1080543,1080544,1,54.0,1.0,1.0,0.0,1,30000.0,1031452,6.0,22664.0,2103.0 +1080544,1080544,1080545,1,48.0,1.0,1.0,0.0,1,29996.0,1031452,6.0,22661.0,2103.0 +1080545,1080545,1080546,1,48.0,1.0,1.0,0.0,1,29996.0,1031452,6.0,22665.0,2103.0 +1080546,1080546,1080547,1,48.0,1.0,1.0,0.0,1,29996.0,1031452,6.0,22666.0,2103.0 +1080547,1080547,1080548,1,48.0,1.0,1.0,0.0,1,29996.0,1031452,6.0,22664.0,2103.0 +1080548,1080548,1080549,1,48.0,1.0,1.0,0.0,1,29996.0,1031452,6.0,22662.0,2103.0 +1080549,1080549,1080550,1,48.0,1.0,1.0,0.0,1,29996.0,1031452,6.0,22665.0,2103.0 +1080550,1080550,1080551,1,59.0,1.0,1.0,0.0,1,13200.0,1080470,6.0,22665.0,2103.0 +1080551,1080551,1080552,1,59.0,1.0,1.0,0.0,1,13200.0,1080470,6.0,22665.0,2103.0 +1080552,1080552,1080553,1,59.0,1.0,1.0,0.0,1,28000.0,1010145,6.0,22663.0,2103.0 +1080553,1080553,1080554,1,59.0,1.0,1.0,0.0,1,28000.0,1054606,6.0,22665.0,2103.0 +1080554,1080554,1080555,1,59.0,1.0,1.0,0.0,1,28000.0,1054606,6.0,22660.0,2103.0 +1080555,1080555,1080556,1,59.0,1.0,1.0,0.0,1,28000.0,1054606,6.0,22663.0,2103.0 +1080556,1080556,1080557,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22665.0,2103.0 +1080557,1080557,1080558,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22665.0,2103.0 +1080558,1080558,1080559,2,51.0,1.0,1.0,0.0,1,0.0,1010145,1.0,22665.0,2103.0 +1080559,1080559,1080560,2,51.0,1.0,1.0,0.0,1,0.0,1010145,1.0,22665.0,2103.0 +1080560,1080560,1080561,2,64.0,1.0,1.0,0.0,1,16800.0,1010145,1.0,22665.0,2103.0 +1080561,1080561,1080562,1,62.0,1.0,1.0,0.0,1,7000.0,1080470,6.0,22663.0,2103.0 +1080562,1080562,1080563,2,60.0,1.0,0.0,0.0,1,22700.0,1010145,1.0,22664.0,2103.0 +1080563,1080563,1080564,2,60.0,1.0,0.0,0.0,1,22700.0,1010145,1.0,22662.0,2103.0 +1080564,1080564,1080565,1,55.0,1.0,0.0,0.0,1,3000.0,1080470,4.0,22660.0,2103.0 +1080565,1080565,1080566,2,54.0,1.0,0.0,0.0,1,21002.0,1080470,2.0,22660.0,2103.0 +1080566,1080566,1080567,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22661.0,2103.0 +1080567,1080567,1080568,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22665.0,2103.0 +1080568,1080568,1080569,1,58.0,1.0,0.0,0.0,1,6200.0,1010145,4.0,22660.0,2103.0 +1080569,1080569,1080570,6,52.0,1.0,3.0,0.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080570,1080570,1080571,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080571,1080571,1080572,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22666.0,2103.0 +1080572,1080572,1080573,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080573,1080573,1080574,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22660.0,2103.0 +1080574,1080574,1080575,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22664.0,2103.0 +1080575,1080575,1080576,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080576,1080576,1080577,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080577,1080577,1080578,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080578,1080578,1080579,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22664.0,2103.0 +1080579,1080579,1080580,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080580,1080580,1080581,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080581,1080581,1080582,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22664.0,2103.0 +1080582,1080582,1080583,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080583,1080583,1080584,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080584,1080584,1080585,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22660.0,2103.0 +1080585,1080585,1080586,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080586,1080586,1080587,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080587,1080587,1080588,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080588,1080588,1080589,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22661.0,2103.0 +1080589,1080589,1080590,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22666.0,2103.0 +1080590,1080590,1080591,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22664.0,2103.0 +1080591,1080591,1080592,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080592,1080592,1080593,6,52.0,1.0,3.0,3.0,1,203000.0,1080470,1.0,22665.0,2103.0 +1080593,1080593,1080594,6,47.0,1.0,3.0,3.0,1,26510.0,1054606,3.0,22665.0,2103.0 +1080594,1080594,1080595,4,25.0,4.0,2.0,2.0,1,54600.0,1080470,5.0,22664.0,2103.0 +1080595,1080595,1080596,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22661.0,2103.0 +1080596,1080596,1080597,4,25.0,4.0,2.0,0.0,1,54600.0,1080470,5.0,22663.0,2103.0 +1080597,1080597,1080598,6,33.0,4.0,1.0,0.0,1,64000.0,1080470,1.0,22665.0,2103.0 +1080598,1080598,1080599,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22661.0,2103.0 +1080599,1080599,1080600,2,36.0,1.0,1.0,4.0,1,92200.0,1054606,5.0,22665.0,2103.0 +1080600,1080600,1080601,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22665.0,2103.0 +1080601,1080601,1080602,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22661.0,2103.0 +1080602,1080602,1080603,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22665.0,2103.0 +1080603,1080603,1080604,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22665.0,2103.0 +1080604,1080604,1080605,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22663.0,2103.0 +1080605,1080605,1080606,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22664.0,2103.0 +1080606,1080606,1080607,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22660.0,2103.0 +1080607,1080607,1080608,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22665.0,2103.0 +1080608,1080608,1080609,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22662.0,2103.0 +1080609,1080609,1080610,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22665.0,2103.0 +1080610,1080610,1080611,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22662.0,2103.0 +1080611,1080611,1080612,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22663.0,2103.0 +1080612,1080612,1080613,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22665.0,2103.0 +1080613,1080613,1080614,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22663.0,2103.0 +1080614,1080614,1080615,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22662.0,2103.0 +1080615,1080615,1080616,2,26.0,1.0,1.0,0.0,1,56000.0,1031452,7.0,22665.0,2103.0 +1080616,1080616,1080617,1,29.0,1.0,1.0,0.0,1,41100.0,1031452,4.0,22662.0,2103.0 +1080617,1080617,1080618,1,41.0,1.0,1.0,0.0,1,54000.0,1010145,4.0,22660.0,2103.0 +1080618,1080618,1080619,2,25.0,1.0,2.0,0.0,1,28000.0,1073449,5.0,22665.0,2103.0 +1080619,1080619,1080620,2,28.0,1.0,2.0,0.0,1,21600.0,1010145,1.0,22665.0,2103.0 +1080620,1080620,1080621,2,27.0,1.0,1.0,0.0,1,12700.0,1010145,1.0,22664.0,2103.0 +1080621,1080621,1080622,2,27.0,1.0,1.0,0.0,1,13620.0,1010145,1.0,22662.0,2103.0 +1080622,1080622,1080623,1,35.0,1.0,1.0,0.0,1,24500.0,1080470,6.0,22662.0,2103.0 +1080623,1080623,1080624,1,25.0,1.0,1.0,0.0,1,20400.0,1010145,4.0,22661.0,2103.0 +1080624,1080624,1080625,6,33.0,1.0,2.0,0.0,1,190000.0,1080470,1.0,22662.0,2103.0 +1080625,1080625,1080626,6,40.0,1.0,1.0,4.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080626,1080626,1080627,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22664.0,2103.0 +1080627,1080627,1080628,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080628,1080628,1080629,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080629,1080629,1080630,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22660.0,2103.0 +1080630,1080630,1080631,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22663.0,2103.0 +1080631,1080631,1080632,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22660.0,2103.0 +1080632,1080632,1080633,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22664.0,2103.0 +1080633,1080633,1080634,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22660.0,2103.0 +1080634,1080634,1080635,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22660.0,2103.0 +1080635,1080635,1080636,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080636,1080636,1080637,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22661.0,2103.0 +1080637,1080637,1080638,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22663.0,2103.0 +1080638,1080638,1080639,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080639,1080639,1080640,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22664.0,2103.0 +1080640,1080640,1080641,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22663.0,2103.0 +1080641,1080641,1080642,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22663.0,2103.0 +1080642,1080642,1080643,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22666.0,2103.0 +1080643,1080643,1080644,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080644,1080644,1080645,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22664.0,2103.0 +1080645,1080645,1080646,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080646,1080646,1080647,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22661.0,2103.0 +1080647,1080647,1080648,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080648,1080648,1080649,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080649,1080649,1080650,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22663.0,2103.0 +1080650,1080650,1080651,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080651,1080651,1080652,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22662.0,2103.0 +1080652,1080652,1080653,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080653,1080653,1080654,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080654,1080654,1080655,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22661.0,2103.0 +1080655,1080655,1080656,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22662.0,2103.0 +1080656,1080656,1080657,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080657,1080657,1080658,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22662.0,2103.0 +1080658,1080658,1080659,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22664.0,2103.0 +1080659,1080659,1080660,6,40.0,1.0,1.0,2.0,1,95570.0,1054606,1.0,22665.0,2103.0 +1080660,1080660,1080661,4,27.0,1.0,1.0,2.0,1,38000.0,1054606,3.0,22663.0,2103.0 +1080661,1080661,1080662,4,27.0,1.0,1.0,2.0,1,38000.0,1054606,3.0,22660.0,2103.0 +1080662,1080662,1080663,4,27.0,1.0,1.0,2.0,1,38000.0,1054606,3.0,22662.0,2103.0 +1080663,1080663,1080664,4,27.0,1.0,1.0,2.0,1,38000.0,1054606,3.0,22664.0,2103.0 +1080664,1080664,1080665,4,27.0,1.0,1.0,2.0,1,38000.0,1054606,3.0,22663.0,2103.0 +1080665,1080665,1080666,4,27.0,1.0,1.0,2.0,1,38000.0,1054606,3.0,22662.0,2103.0 +1080666,1080666,1080667,4,27.0,1.0,1.0,2.0,1,38000.0,1054606,3.0,22664.0,2103.0 +1080667,1080667,1080668,4,27.0,1.0,1.0,2.0,1,38000.0,1054606,3.0,22661.0,2103.0 +1080668,1080668,1080669,4,27.0,1.0,1.0,2.0,1,38000.0,1054606,3.0,22662.0,2103.0 +1080669,1080669,1080670,4,44.0,1.0,0.0,2.0,1,26600.0,1010145,3.0,22665.0,2103.0 +1080670,1080670,1080671,4,44.0,1.0,0.0,3.0,1,26600.0,1010145,3.0,22665.0,2103.0 +1080671,1080671,1080672,4,44.0,1.0,0.0,3.0,1,26600.0,1010145,3.0,22661.0,2103.0 +1080672,1080672,1080673,3,23.0,1.0,3.0,3.0,1,52300.0,1010145,7.0,22660.0,2103.0 +1080756,1080756,1080757,2,60.0,1.0,2.0,0.0,1,43400.0,1031452,1.0,22668.0,2103.0 +1080773,1080773,1080774,2,56.0,1.0,0.0,1.0,1,17000.0,1080470,3.0,22668.0,2103.0 +1080805,1080805,1080806,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22668.0,2103.0 +1080840,1080840,1080841,2,25.0,2.0,0.0,1.0,1,22000.0,1054606,3.0,22668.0,2103.0 +1080849,1080849,1080850,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22668.0,2103.0 +1080860,1080860,1080861,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22668.0,2103.0 +1080881,1080881,1080882,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22668.0,2103.0 +1080929,1080929,1080930,3,38.0,1.0,1.0,2.0,1,45000.0,1080470,3.0,22668.0,2103.0 +1080957,1080957,1080958,2,21.0,2.0,1.0,0.0,1,9000.0,1054606,5.0,22668.0,2103.0 +1080967,1080967,1080968,2,21.0,2.0,1.0,0.0,1,9000.0,1054606,5.0,22668.0,2103.0 +1081681,1081681,1081682,2,72.0,2.0,2.0,3.0,1,89000.0,1031452,1.0,22669.0,2104.0 +1081682,1081682,1081683,2,72.0,2.0,2.0,0.0,1,89000.0,1031452,1.0,22659.0,2103.0 +1081683,1081683,1081684,2,72.0,2.0,2.0,0.0,1,89000.0,1031452,1.0,22670.0,2104.0 +1081684,1081684,1081685,2,72.0,2.0,2.0,0.0,1,89000.0,1031452,1.0,22667.0,2103.0 +1081685,1081685,1081686,2,76.0,2.0,3.0,0.0,1,62600.0,1054606,1.0,22670.0,2104.0 +1081686,1081686,1081687,2,75.0,2.0,2.0,0.0,1,74000.0,1054606,1.0,22659.0,2103.0 +1081687,1081687,1081688,2,75.0,2.0,2.0,0.0,1,74000.0,1054606,1.0,22667.0,2103.0 +1081688,1081688,1081689,1,94.0,2.0,2.0,0.0,1,42800.0,1031452,4.0,22668.0,2103.0 +1081689,1081689,1081690,1,94.0,2.0,2.0,0.0,1,42800.0,1031452,4.0,22659.0,2103.0 +1081690,1081690,1081691,1,73.0,2.0,3.0,0.0,1,35400.0,1080470,4.0,22659.0,2103.0 +1081691,1081691,1081692,1,67.0,2.0,2.0,0.0,1,46200.0,1080470,4.0,22670.0,2104.0 +1081692,1081692,1081693,2,69.0,2.0,1.0,0.0,1,42800.0,1010145,1.0,22669.0,2104.0 +1081693,1081693,1081694,2,69.0,2.0,1.0,0.0,1,42800.0,1010145,1.0,22667.0,2103.0 +1081694,1081694,1081695,2,94.0,2.0,1.0,0.0,1,33700.0,1054606,3.0,22670.0,2104.0 +1081695,1081695,1081696,2,69.0,2.0,1.0,0.0,1,52600.0,1073449,1.0,22667.0,2103.0 +1081696,1081696,1081697,2,69.0,2.0,1.0,0.0,1,52600.0,1073449,1.0,22669.0,2104.0 +1081697,1081697,1081698,2,78.0,2.0,1.0,0.0,1,53700.0,1080470,1.0,22668.0,2103.0 +1081698,1081698,1081699,2,69.0,2.0,1.0,0.0,1,52600.0,1073449,1.0,22667.0,2103.0 +1081699,1081699,1081700,1,75.0,2.0,1.0,0.0,1,53300.0,1073449,6.0,22659.0,2103.0 +1081700,1081700,1081701,1,66.0,2.0,1.0,0.0,1,46100.0,1073449,6.0,22669.0,2104.0 +1081701,1081701,1081702,1,75.0,2.0,1.0,0.0,1,53300.0,1073449,6.0,22669.0,2104.0 +1081702,1081702,1081703,1,91.0,2.0,1.0,0.0,1,42000.0,1010145,6.0,22667.0,2103.0 +1081703,1081703,1081704,1,90.0,2.0,0.0,0.0,1,46700.0,1010145,6.0,22669.0,2104.0 +1081704,1081704,1081705,1,70.0,2.0,2.0,0.0,1,15500.0,1031452,4.0,22670.0,2104.0 +1081705,1081705,1081706,2,85.0,2.0,1.0,0.0,1,13600.0,1031452,1.0,22659.0,2103.0 +1081706,1081706,1081707,2,85.0,2.0,1.0,0.0,1,13600.0,1031452,1.0,22670.0,2104.0 +1081707,1081707,1081708,2,71.0,2.0,1.0,0.0,1,12100.0,1031452,1.0,22670.0,2104.0 +1081708,1081708,1081709,1,66.0,2.0,1.0,0.0,1,11000.0,1080470,6.0,22669.0,2104.0 +1081709,1081709,1081710,1,66.0,2.0,1.0,0.0,1,11000.0,1080470,6.0,22659.0,2103.0 +1081710,1081710,1081711,1,84.0,2.0,1.0,0.0,1,9200.0,1031452,6.0,22670.0,2104.0 +1081711,1081711,1081712,1,84.0,2.0,1.0,0.0,1,9200.0,1031452,6.0,22670.0,2104.0 +1081712,1081712,1081713,1,73.0,2.0,0.0,0.0,1,7320.0,1010145,6.0,22659.0,2103.0 +1081713,1081713,1081714,1,78.0,2.0,0.0,0.0,1,9900.0,1073449,6.0,22659.0,2103.0 +1081714,1081714,1081715,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22669.0,2104.0 +1081715,1081715,1081716,1,73.0,2.0,0.0,0.0,1,7320.0,1010145,6.0,22669.0,2104.0 +1081716,1081716,1081717,2,65.0,2.0,0.0,0.0,1,13100.0,1080470,3.0,22669.0,2104.0 +1081717,1081717,1081718,2,65.0,2.0,0.0,1.0,1,13100.0,1080470,3.0,22659.0,2103.0 +1081718,1081718,1081719,2,65.0,2.0,0.0,1.0,1,13100.0,1080470,3.0,22668.0,2103.0 +1081719,1081719,1081720,2,65.0,2.0,0.0,1.0,1,13100.0,1080470,3.0,22670.0,2104.0 +1081720,1081720,1081721,1,54.0,2.0,2.0,1.0,1,83000.0,1010145,6.0,22667.0,2103.0 +1081721,1081721,1081722,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22659.0,2103.0 +1081722,1081722,1081723,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22659.0,2103.0 +1081723,1081723,1081724,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22670.0,2104.0 +1081724,1081724,1081725,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22667.0,2103.0 +1081725,1081725,1081726,1,45.0,2.0,1.0,0.0,1,70000.0,1031452,6.0,22669.0,2104.0 +1081726,1081726,1081727,1,56.0,2.0,1.0,0.0,1,50000.0,1031452,6.0,22670.0,2104.0 +1081727,1081727,1081728,4,55.0,2.0,3.0,0.0,1,8150.0,1080470,1.0,22659.0,2103.0 +1081728,1081728,1081729,4,55.0,2.0,3.0,0.0,1,8150.0,1080470,1.0,22668.0,2103.0 +1081729,1081729,1081730,4,55.0,2.0,3.0,0.0,1,8150.0,1080470,1.0,22667.0,2103.0 +1081730,1081730,1081731,4,55.0,2.0,3.0,0.0,1,8150.0,1080470,1.0,22667.0,2103.0 +1081731,1081731,1081732,4,55.0,2.0,3.0,0.0,1,8150.0,1080470,1.0,22659.0,2103.0 +1081732,1081732,1081733,2,53.0,2.0,1.0,0.0,1,14300.0,1054606,1.0,22667.0,2103.0 +1081733,1081733,1081734,2,53.0,2.0,1.0,0.0,1,14300.0,1054606,1.0,22670.0,2104.0 +1081734,1081734,1081735,2,53.0,2.0,1.0,0.0,1,14300.0,1054606,1.0,22659.0,2103.0 +1081735,1081735,1081736,1,48.0,2.0,1.0,0.0,1,16000.0,1054606,6.0,22667.0,2103.0 +1081736,1081736,1081737,1,54.0,2.0,1.0,0.0,1,25000.0,1031452,6.0,22670.0,2104.0 +1081737,1081737,1081738,1,49.0,2.0,1.0,0.0,1,15400.0,1031452,4.0,22670.0,2104.0 +1081738,1081738,1081739,2,53.0,2.0,0.0,0.0,1,12300.0,1054606,5.0,22669.0,2104.0 +1081739,1081739,1081740,2,53.0,2.0,0.0,0.0,1,12300.0,1054606,5.0,22667.0,2103.0 +1081740,1081740,1081741,4,63.0,2.0,1.0,0.0,1,33500.0,1031452,3.0,22667.0,2103.0 +1081741,1081741,1081742,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22667.0,2103.0 +1081742,1081742,1081743,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22669.0,2104.0 +1081743,1081743,1081744,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22668.0,2103.0 +1081744,1081744,1081745,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22670.0,2104.0 +1081745,1081745,1081746,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22670.0,2104.0 +1081746,1081746,1081747,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22659.0,2103.0 +1081747,1081747,1081748,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22667.0,2103.0 +1081748,1081748,1081749,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22667.0,2103.0 +1081749,1081749,1081750,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22670.0,2104.0 +1081750,1081750,1081751,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22668.0,2103.0 +1081751,1081751,1081752,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22667.0,2103.0 +1081752,1081752,1081753,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22667.0,2103.0 +1081753,1081753,1081754,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22669.0,2104.0 +1081754,1081754,1081755,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22670.0,2104.0 +1081755,1081755,1081756,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22659.0,2103.0 +1081756,1081756,1081757,3,52.0,1.0,3.0,1.0,1,107000.0,1031452,1.0,22669.0,2104.0 +1081757,1081757,1081758,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22667.0,2103.0 +1081758,1081758,1081759,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22667.0,2103.0 +1081759,1081759,1081760,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22669.0,2104.0 +1081760,1081760,1081761,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22659.0,2103.0 +1081761,1081761,1081762,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22659.0,2103.0 +1081762,1081762,1081763,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22669.0,2104.0 +1081763,1081763,1081764,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22669.0,2104.0 +1081764,1081764,1081765,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22667.0,2103.0 +1081765,1081765,1081766,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22669.0,2104.0 +1081766,1081766,1081767,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22670.0,2104.0 +1081767,1081767,1081768,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22670.0,2104.0 +1081768,1081768,1081769,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22659.0,2103.0 +1081769,1081769,1081770,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22669.0,2104.0 +1081770,1081770,1081771,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22667.0,2103.0 +1081771,1081771,1081772,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22659.0,2103.0 +1081772,1081772,1081773,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22667.0,2103.0 +1081773,1081773,1081774,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22669.0,2104.0 +1081774,1081774,1081775,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22669.0,2104.0 +1081775,1081775,1081776,2,46.0,1.0,1.0,0.0,1,16800.0,1054606,7.0,22667.0,2103.0 +1081776,1081776,1081777,6,47.0,1.0,3.0,0.0,1,26510.0,1054606,3.0,22659.0,2103.0 +1081777,1081777,1081778,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22669.0,2104.0 +1081778,1081778,1081779,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22667.0,2103.0 +1081779,1081779,1081780,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22669.0,2104.0 +1081780,1081780,1081781,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22670.0,2104.0 +1081781,1081781,1081782,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22659.0,2103.0 +1081782,1081782,1081783,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22670.0,2104.0 +1081783,1081783,1081784,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22667.0,2103.0 +1081784,1081784,1081785,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22670.0,2104.0 +1081785,1081785,1081786,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22670.0,2104.0 +1081786,1081786,1081787,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22669.0,2104.0 +1081787,1081787,1081788,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22670.0,2104.0 +1081788,1081788,1081789,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22659.0,2103.0 +1081789,1081789,1081790,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22670.0,2104.0 +1081790,1081790,1081791,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22659.0,2103.0 +1081791,1081791,1081792,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22659.0,2103.0 +1081792,1081792,1081793,6,33.0,4.0,1.0,2.0,1,64000.0,1080470,1.0,22667.0,2103.0 +1081793,1081793,1081794,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22667.0,2103.0 +1081794,1081794,1081795,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22669.0,2104.0 +1081795,1081795,1081796,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22667.0,2103.0 +1081796,1081796,1081797,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22667.0,2103.0 +1081797,1081797,1081798,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22667.0,2103.0 +1081798,1081798,1081799,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22667.0,2103.0 +1081799,1081799,1081800,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22669.0,2104.0 +1081800,1081800,1081801,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22669.0,2104.0 +1081801,1081801,1081802,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22670.0,2104.0 +1081802,1081802,1081803,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22667.0,2103.0 +1081803,1081803,1081804,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22667.0,2103.0 +1081804,1081804,1081805,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22667.0,2103.0 +1081805,1081805,1081806,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22669.0,2104.0 +1081806,1081806,1081807,6,33.0,4.0,1.0,4.0,1,64000.0,1080470,1.0,22669.0,2104.0 +1081807,1081807,1081808,1,35.0,2.0,1.0,4.0,1,89000.0,1073449,6.0,22670.0,2104.0 +1081808,1081808,1081809,1,43.0,2.0,1.0,0.0,1,75000.0,1073449,4.0,22670.0,2104.0 +1081809,1081809,1081810,1,43.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22669.0,2104.0 +1081810,1081810,1081811,1,27.0,2.0,1.0,0.0,1,41000.0,1031452,6.0,22669.0,2104.0 +1081811,1081811,1081812,1,27.0,2.0,1.0,0.0,1,45000.0,1054606,6.0,22659.0,2103.0 +1081812,1081812,1081813,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22669.0,2104.0 +1081813,1081813,1081814,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22669.0,2104.0 +1081814,1081814,1081815,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22667.0,2103.0 +1081815,1081815,1081816,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22669.0,2104.0 +1081816,1081816,1081817,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22669.0,2104.0 +1081817,1081817,1081818,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22659.0,2103.0 +1081818,1081818,1081819,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22667.0,2103.0 +1081819,1081819,1081820,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22667.0,2103.0 +1081820,1081820,1081821,1,27.0,2.0,1.0,0.0,1,33100.0,1010145,6.0,22659.0,2103.0 +1081821,1081821,1081822,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22669.0,2104.0 +1081822,1081822,1081823,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22669.0,2104.0 +1081823,1081823,1081824,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22667.0,2103.0 +1081824,1081824,1081825,1,25.0,2.0,1.0,0.0,1,12000.0,1010145,6.0,22670.0,2104.0 +1081825,1081825,1081826,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22659.0,2103.0 +1081826,1081826,1081827,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22667.0,2103.0 +1081827,1081827,1081828,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22659.0,2103.0 +1081828,1081828,1081829,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22670.0,2104.0 +1081829,1081829,1081830,1,27.0,2.0,1.0,0.0,1,30000.0,1073449,6.0,22670.0,2104.0 +1081830,1081830,1081831,1,25.0,2.0,1.0,0.0,1,22900.0,1080470,6.0,22670.0,2104.0 +1081831,1081831,1081832,1,28.0,2.0,1.0,0.0,1,24000.0,1054606,6.0,22669.0,2104.0 +1081832,1081832,1081833,1,28.0,2.0,1.0,0.0,1,24000.0,1054606,6.0,22667.0,2103.0 +1081833,1081833,1081834,1,27.0,2.0,1.0,0.0,1,1400.0,1054606,4.0,22667.0,2103.0 +1081834,1081834,1081835,1,27.0,2.0,1.0,0.0,1,1400.0,1054606,4.0,22667.0,2103.0 +1081835,1081835,1081836,1,27.0,2.0,1.0,0.0,1,1400.0,1054606,4.0,22667.0,2103.0 +1081836,1081836,1081837,1,27.0,2.0,1.0,0.0,1,1400.0,1054606,4.0,22667.0,2103.0 +1081837,1081837,1081838,1,28.0,2.0,0.0,0.0,1,25300.0,1073449,6.0,22669.0,2104.0 +1081838,1081838,1081839,1,28.0,2.0,0.0,0.0,1,25300.0,1073449,6.0,22668.0,2103.0 +1081839,1081839,1081840,1,34.0,2.0,0.0,0.0,1,30000.0,1073449,6.0,22667.0,2103.0 +1081840,1081840,1081841,1,35.0,2.0,0.0,0.0,1,2900.0,1054606,6.0,22669.0,2104.0 +1081841,1081841,1081842,1,25.0,2.0,0.0,0.0,1,13000.0,1080470,4.0,22670.0,2104.0 +1081842,1081842,1081843,1,25.0,2.0,0.0,0.0,1,13000.0,1080470,4.0,22670.0,2104.0 +1081843,1081843,1081844,1,37.0,2.0,0.0,0.0,1,27000.0,1080470,4.0,22667.0,2103.0 +1081844,1081844,1081845,2,34.0,2.0,1.0,0.0,1,66000.0,1054606,3.0,22669.0,2104.0 +1081845,1081845,1081846,2,34.0,2.0,1.0,1.0,1,66000.0,1054606,3.0,22659.0,2103.0 +1081846,1081846,1081847,6,39.0,2.0,1.0,1.0,1,34360.0,1080470,1.0,22659.0,2103.0 +1081847,1081847,1081848,4,29.0,2.0,1.0,4.0,1,16700.0,1054606,3.0,22668.0,2103.0 +1081848,1081848,1081849,4,34.0,2.0,1.0,3.0,1,4890.0,1073449,3.0,22669.0,2104.0 +1081849,1081849,1081850,4,35.0,2.0,1.0,3.0,1,14370.0,1080470,3.0,22667.0,2103.0 +1081850,1081850,1081851,3,26.0,2.0,1.0,3.0,1,25300.0,1054606,3.0,22670.0,2104.0 +1081851,1081851,1081852,3,26.0,2.0,1.0,2.0,1,25300.0,1054606,3.0,22659.0,2103.0 +1081852,1081852,1081853,2,36.0,2.0,1.0,2.0,1,23000.0,1073449,3.0,22667.0,2103.0 +1081853,1081853,1081854,2,36.0,2.0,1.0,1.0,1,23000.0,1073449,3.0,22659.0,2103.0 +1081854,1081854,1081855,2,36.0,2.0,1.0,1.0,1,23000.0,1073449,3.0,22670.0,2104.0 +1081855,1081855,1081856,2,36.0,2.0,1.0,1.0,1,23000.0,1073449,3.0,22667.0,2103.0 +1081856,1081856,1081857,2,28.0,2.0,1.0,1.0,1,8000.0,1031452,3.0,22667.0,2103.0 +1081857,1081857,1081858,2,28.0,2.0,1.0,1.0,1,8000.0,1031452,3.0,22659.0,2103.0 +1081858,1081858,1081859,2,36.0,2.0,1.0,1.0,1,23000.0,1073449,3.0,22667.0,2103.0 +1081859,1081859,1081860,2,36.0,2.0,1.0,1.0,1,23000.0,1073449,3.0,22669.0,2104.0 +1081860,1081860,1081861,2,28.0,2.0,1.0,1.0,1,8000.0,1031452,3.0,22667.0,2103.0 +1081861,1081861,1081862,3,25.0,2.0,0.0,1.0,1,7100.0,1031452,3.0,22669.0,2104.0 +1081862,1081862,1081863,3,29.0,2.0,0.0,2.0,1,8800.0,1073449,3.0,22667.0,2103.0 +1081863,1081863,1081864,2,30.0,3.0,1.0,2.0,1,90000.0,1073449,7.0,22669.0,2104.0 +1081864,1081864,1081865,2,30.0,3.0,1.0,0.0,1,90000.0,1073449,7.0,22667.0,2103.0 +1081865,1081865,1081866,2,30.0,3.0,1.0,0.0,1,90000.0,1073449,7.0,22668.0,2103.0 +1081866,1081866,1081867,2,30.0,3.0,1.0,0.0,1,90000.0,1073449,7.0,22667.0,2103.0 +1081867,1081867,1081868,2,30.0,3.0,1.0,0.0,1,90000.0,1073449,7.0,22669.0,2104.0 +1081868,1081868,1081869,2,30.0,3.0,1.0,0.0,1,90000.0,1073449,7.0,22659.0,2103.0 +1081869,1081869,1081870,7,36.0,1.0,2.0,0.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081870,1081870,1081871,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22670.0,2104.0 +1081871,1081871,1081872,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081872,1081872,1081873,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081873,1081873,1081874,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081874,1081874,1081875,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081875,1081875,1081876,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081876,1081876,1081877,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22659.0,2103.0 +1081877,1081877,1081878,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081878,1081878,1081879,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081879,1081879,1081880,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22670.0,2104.0 +1081880,1081880,1081881,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081881,1081881,1081882,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081882,1081882,1081883,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22670.0,2104.0 +1081883,1081883,1081884,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081884,1081884,1081885,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081885,1081885,1081886,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22670.0,2104.0 +1081886,1081886,1081887,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081887,1081887,1081888,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081888,1081888,1081889,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081889,1081889,1081890,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081890,1081890,1081891,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081891,1081891,1081892,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081892,1081892,1081893,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22670.0,2104.0 +1081893,1081893,1081894,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081894,1081894,1081895,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22670.0,2104.0 +1081895,1081895,1081896,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22659.0,2103.0 +1081896,1081896,1081897,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081897,1081897,1081898,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22670.0,2104.0 +1081898,1081898,1081899,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081899,1081899,1081900,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081900,1081900,1081901,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081901,1081901,1081902,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22670.0,2104.0 +1081902,1081902,1081903,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22670.0,2104.0 +1081903,1081903,1081904,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081904,1081904,1081905,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081905,1081905,1081906,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081906,1081906,1081907,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22659.0,2103.0 +1081907,1081907,1081908,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22668.0,2103.0 +1081908,1081908,1081909,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081909,1081909,1081910,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081910,1081910,1081911,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081911,1081911,1081912,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22659.0,2103.0 +1081912,1081912,1081913,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22669.0,2104.0 +1081913,1081913,1081914,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081914,1081914,1081915,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22670.0,2104.0 +1081915,1081915,1081916,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22667.0,2103.0 +1081916,1081916,1081917,4,32.0,1.0,1.0,3.0,1,8000.0,1031452,3.0,22669.0,2104.0 +1081917,1081917,1081918,2,19.0,2.0,1.0,2.0,1,8000.0,1080470,7.0,22659.0,2103.0 +1081918,1081918,1081919,2,23.0,2.0,1.0,0.0,1,12000.0,1080470,3.0,22667.0,2103.0 +1081919,1081919,1081920,2,24.0,2.0,1.0,1.0,1,3000.0,1073449,3.0,22667.0,2103.0 +1081920,1081920,1081921,2,24.0,2.0,1.0,1.0,1,3000.0,1073449,3.0,22659.0,2103.0 +1081921,1081921,1081922,2,23.0,2.0,1.0,1.0,1,12000.0,1080470,3.0,22669.0,2104.0 +1081922,1081922,1081923,2,23.0,2.0,1.0,1.0,1,12000.0,1080470,3.0,22667.0,2103.0 +1082820,1082820,1082821,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22637.0,2100.0 +1082824,1082824,1082825,2,69.0,2.0,3.0,0.0,1,117200.0,1080470,1.0,22637.0,2100.0 +1082827,1082827,1082828,2,76.0,2.0,2.0,0.0,1,76700.0,1010145,3.0,22637.0,2100.0 +1082828,1082828,1082829,2,76.0,2.0,2.0,0.0,1,76700.0,1010145,3.0,22637.0,2100.0 +1082830,1082830,1082831,1,94.0,2.0,2.0,0.0,1,42800.0,1031452,4.0,22637.0,2100.0 +1082832,1082832,1082833,1,94.0,2.0,2.0,0.0,1,42800.0,1031452,4.0,22637.0,2100.0 +1082834,1082834,1082835,2,69.0,2.0,1.0,0.0,1,42800.0,1010145,1.0,22636.0,2100.0 +1082837,1082837,1082838,1,90.0,2.0,0.0,0.0,1,46700.0,1010145,6.0,22637.0,2100.0 +1082842,1082842,1082843,2,85.0,2.0,1.0,0.0,1,13600.0,1031452,1.0,22637.0,2100.0 +1082845,1082845,1082846,1,78.0,2.0,1.0,0.0,1,21000.0,1054606,6.0,22637.0,2100.0 +1082846,1082846,1082847,1,72.0,2.0,1.0,0.0,1,4900.0,1080470,6.0,22635.0,2100.0 +1082850,1082850,1082851,1,66.0,2.0,1.0,0.0,1,11000.0,1080470,6.0,22637.0,2100.0 +1082852,1082852,1082853,1,69.0,2.0,1.0,0.0,1,0.0,1073449,4.0,22636.0,2100.0 +1082854,1082854,1082855,1,76.0,2.0,1.0,0.0,1,18800.0,1031452,6.0,22637.0,2100.0 +1082857,1082857,1082858,1,76.0,2.0,1.0,0.0,1,18800.0,1031452,6.0,22637.0,2100.0 +1082862,1082862,1082863,2,66.0,2.0,0.0,0.0,1,25100.0,1031452,3.0,22637.0,2100.0 +1082863,1082863,1082864,2,66.0,2.0,0.0,0.0,1,25100.0,1031452,3.0,22637.0,2100.0 +1082864,1082864,1082865,2,66.0,2.0,0.0,0.0,1,25100.0,1031452,3.0,22637.0,2100.0 +1082866,1082866,1082867,2,66.0,2.0,0.0,0.0,1,25100.0,1031452,3.0,22637.0,2100.0 +1082868,1082868,1082869,2,66.0,2.0,0.0,0.0,1,25100.0,1031452,3.0,22637.0,2100.0 +1082871,1082871,1082872,1,73.0,2.0,0.0,0.0,1,8700.0,1073449,6.0,22637.0,2100.0 +1082873,1082873,1082874,1,80.0,2.0,0.0,0.0,1,16300.0,1054606,6.0,22637.0,2100.0 +1082882,1082882,1082883,1,68.0,2.0,0.0,0.0,1,9000.0,1031452,6.0,22637.0,2100.0 +1082883,1082883,1082884,1,90.0,2.0,0.0,0.0,1,18000.0,1080470,6.0,22637.0,2100.0 +1082885,1082885,1082886,2,65.0,2.0,0.0,0.0,1,13100.0,1080470,3.0,22637.0,2100.0 +1082886,1082886,1082887,4,76.0,3.0,3.0,1.0,1,66700.0,1010145,1.0,22636.0,2100.0 +1082890,1082890,1082891,2,76.0,1.0,3.0,0.0,1,137400.0,1073449,1.0,22637.0,2100.0 +1082895,1082895,1082896,1,74.0,1.0,1.0,0.0,1,60990.0,1054606,6.0,22637.0,2100.0 +1082906,1082906,1082907,2,94.0,1.0,1.0,0.0,1,53600.0,1054606,1.0,22637.0,2100.0 +1082913,1082913,1082914,1,67.0,1.0,1.0,0.0,1,45200.0,1073449,6.0,22636.0,2100.0 +1082917,1082917,1082918,1,74.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22637.0,2100.0 +1082918,1082918,1082919,1,67.0,1.0,1.0,0.0,1,45200.0,1073449,6.0,22637.0,2100.0 +1082919,1082919,1082920,1,72.0,1.0,1.0,0.0,1,55100.0,1010145,6.0,22636.0,2100.0 +1082926,1082926,1082927,1,87.0,1.0,0.0,0.0,1,43000.0,1031452,6.0,22637.0,2100.0 +1082933,1082933,1082934,1,71.0,1.0,2.0,0.0,1,14000.0,1054606,6.0,22637.0,2100.0 +1082942,1082942,1082943,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22636.0,2100.0 +1082946,1082946,1082947,2,78.0,1.0,1.0,0.0,1,8980.0,1080470,1.0,22636.0,2100.0 +1082947,1082947,1082948,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22637.0,2100.0 +1082948,1082948,1082949,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22635.0,2100.0 +1082950,1082950,1082951,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22637.0,2100.0 +1082952,1082952,1082953,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22635.0,2100.0 +1082954,1082954,1082955,2,78.0,1.0,1.0,0.0,1,8980.0,1080470,1.0,22637.0,2100.0 +1082955,1082955,1082956,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22635.0,2100.0 +1082957,1082957,1082958,2,78.0,1.0,1.0,0.0,1,23500.0,1054606,1.0,22637.0,2100.0 +1082958,1082958,1082959,2,87.0,1.0,1.0,0.0,1,18800.0,1080470,1.0,22637.0,2100.0 +1082959,1082959,1082960,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22637.0,2100.0 +1082960,1082960,1082961,2,83.0,1.0,1.0,0.0,1,30000.0,1031452,1.0,22637.0,2100.0 +1082964,1082964,1082965,1,81.0,1.0,1.0,0.0,1,9600.0,1080470,6.0,22637.0,2100.0 +1082966,1082966,1082967,1,81.0,1.0,1.0,0.0,1,9600.0,1080470,6.0,22637.0,2100.0 +1082971,1082971,1082972,1,68.0,1.0,1.0,0.0,1,10300.0,1054606,6.0,22637.0,2100.0 +1082973,1082973,1082974,1,85.0,1.0,1.0,0.0,1,21800.0,1073449,6.0,22637.0,2100.0 +1082976,1082976,1082977,1,73.0,1.0,1.0,0.0,1,5300.0,1073449,6.0,22636.0,2100.0 +1082978,1082978,1082979,1,85.0,1.0,1.0,0.0,1,21800.0,1073449,6.0,22637.0,2100.0 +1082981,1082981,1082982,1,89.0,1.0,1.0,0.0,1,2300.0,1073449,6.0,22637.0,2100.0 +1082983,1082983,1082984,1,87.0,1.0,1.0,0.0,1,27620.0,1031452,6.0,22637.0,2100.0 +1082989,1082989,1082990,1,77.0,1.0,1.0,0.0,1,10000.0,1054606,6.0,22637.0,2100.0 +1082992,1082992,1082993,1,68.0,1.0,1.0,0.0,1,10300.0,1054606,6.0,22637.0,2100.0 +1082993,1082993,1082994,1,89.0,1.0,1.0,0.0,1,2300.0,1073449,6.0,22637.0,2100.0 +1082998,1082998,1082999,1,81.0,1.0,1.0,0.0,1,15000.0,1054606,6.0,22637.0,2100.0 +1083003,1083003,1083004,1,72.0,1.0,1.0,0.0,1,26000.0,1073449,6.0,22636.0,2100.0 +1083004,1083004,1083005,1,72.0,1.0,1.0,0.0,1,26000.0,1073449,6.0,22637.0,2100.0 +1083012,1083012,1083013,1,77.0,1.0,1.0,0.0,1,27000.0,1010145,6.0,22637.0,2100.0 +1083014,1083014,1083015,1,72.0,1.0,1.0,0.0,1,26000.0,1073449,6.0,22637.0,2100.0 +1083015,1083015,1083016,1,73.0,1.0,1.0,0.0,1,27730.0,1073449,6.0,22637.0,2100.0 +1083017,1083017,1083018,1,73.0,1.0,1.0,0.0,1,5300.0,1073449,6.0,22636.0,2100.0 +1083019,1083019,1083020,1,77.0,1.0,1.0,0.0,1,10000.0,1054606,6.0,22637.0,2100.0 +1083021,1083021,1083022,1,67.0,1.0,1.0,0.0,1,20900.0,1031452,4.0,22636.0,2100.0 +1083022,1083022,1083023,1,74.0,1.0,1.0,0.0,1,11400.0,1054606,4.0,22635.0,2100.0 +1083025,1083025,1083026,1,80.0,1.0,1.0,0.0,1,16800.0,1031452,4.0,22637.0,2100.0 +1083033,1083033,1083034,1,66.0,1.0,0.0,0.0,1,13000.0,1010145,4.0,22637.0,2100.0 +1083036,1083036,1083037,1,94.0,1.0,0.0,0.0,1,13300.0,1010145,6.0,22636.0,2100.0 +1083037,1083037,1083038,1,87.0,1.0,0.0,0.0,1,18000.0,1080470,6.0,22637.0,2100.0 +1083038,1083038,1083039,1,85.0,1.0,0.0,0.0,1,26900.0,1010145,6.0,22637.0,2100.0 +1083040,1083040,1083041,1,85.0,1.0,0.0,0.0,1,26900.0,1010145,6.0,22637.0,2100.0 +1083057,1083057,1083058,2,59.0,2.0,2.0,0.0,1,46800.0,1054606,1.0,22637.0,2100.0 +1083064,1083064,1083065,2,46.0,2.0,1.0,0.0,1,39400.0,1073449,3.0,22635.0,2100.0 +1083065,1083065,1083066,2,46.0,2.0,1.0,0.0,1,39400.0,1073449,3.0,22637.0,2100.0 +1083071,1083071,1083072,1,63.0,2.0,1.0,0.0,1,40000.0,1031452,6.0,22637.0,2100.0 +1083078,1083078,1083079,4,55.0,2.0,3.0,0.0,1,8150.0,1080470,1.0,22637.0,2100.0 +1083089,1083089,1083090,1,48.0,2.0,1.0,0.0,1,16000.0,1054606,6.0,22635.0,2100.0 +1083091,1083091,1083092,1,62.0,2.0,1.0,0.0,1,18400.0,1073449,6.0,22637.0,2100.0 +1083092,1083092,1083093,1,56.0,2.0,1.0,0.0,1,25000.0,1080470,6.0,22636.0,2100.0 +1083093,1083093,1083094,1,56.0,2.0,1.0,0.0,1,25000.0,1080470,6.0,22636.0,2100.0 +1083095,1083095,1083096,1,56.0,2.0,1.0,0.0,1,25000.0,1080470,6.0,22637.0,2100.0 +1083100,1083100,1083101,1,59.0,2.0,1.0,0.0,1,10000.0,1054606,4.0,22637.0,2100.0 +1083102,1083102,1083103,2,53.0,2.0,0.0,0.0,1,12300.0,1054606,5.0,22637.0,2100.0 +1083104,1083104,1083105,1,56.0,2.0,0.0,0.0,1,5400.0,1080470,4.0,22637.0,2100.0 +1083105,1083105,1083106,1,62.0,2.0,0.0,0.0,1,12000.0,1010145,4.0,22637.0,2100.0 +1083112,1083112,1083113,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22637.0,2100.0 +1083122,1083122,1083123,5,45.0,2.0,2.0,3.0,1,42000.0,1080470,1.0,22635.0,2100.0 +1083123,1083123,1083124,2,47.0,2.0,0.0,3.0,1,8700.0,1054606,3.0,22637.0,2100.0 +1083127,1083127,1083128,2,47.0,2.0,0.0,1.0,1,8700.0,1054606,3.0,22637.0,2100.0 +1083135,1083135,1083136,3,52.0,1.0,3.0,0.0,1,107000.0,1031452,1.0,22637.0,2100.0 +1083141,1083141,1083142,1,48.0,1.0,1.0,0.0,1,130000.0,1054606,6.0,22637.0,2100.0 +1083142,1083142,1083143,1,48.0,1.0,1.0,0.0,1,130000.0,1054606,6.0,22637.0,2100.0 +1083145,1083145,1083146,2,59.0,1.0,0.0,0.0,1,110000.0,1010145,1.0,22636.0,2100.0 +1083148,1083148,1083149,1,58.0,1.0,1.0,0.0,1,88000.0,1080470,4.0,22637.0,2100.0 +1083149,1083149,1083150,2,46.0,1.0,1.0,0.0,1,45000.0,1073449,1.0,22637.0,2100.0 +1083151,1083151,1083152,1,54.0,1.0,1.0,0.0,1,54000.0,1031452,6.0,22636.0,2100.0 +1083152,1083152,1083153,1,52.0,1.0,1.0,0.0,1,50000.0,1054606,4.0,22637.0,2100.0 +1083156,1083156,1083157,1,58.0,1.0,1.0,0.0,1,13500.0,1054606,6.0,22637.0,2100.0 +1083157,1083157,1083158,1,52.0,1.0,1.0,0.0,1,20800.0,1073449,6.0,22636.0,2100.0 +1083160,1083160,1083161,2,60.0,1.0,0.0,0.0,1,22700.0,1010145,1.0,22637.0,2100.0 +1083161,1083161,1083162,1,58.0,1.0,0.0,0.0,1,8800.0,1080470,6.0,22636.0,2100.0 +1083167,1083167,1083168,2,44.0,2.0,0.0,0.0,1,72000.0,1054606,5.0,22637.0,2100.0 +1083168,1083168,1083169,2,44.0,2.0,0.0,0.0,1,72000.0,1054606,5.0,22637.0,2100.0 +1083176,1083176,1083177,1,28.0,2.0,1.0,0.0,1,10200.0,1054606,4.0,22637.0,2100.0 +1083177,1083177,1083178,1,27.0,2.0,1.0,0.0,1,1400.0,1054606,4.0,22636.0,2100.0 +1083178,1083178,1083179,1,27.0,2.0,1.0,0.0,1,1400.0,1054606,4.0,22637.0,2100.0 +1083179,1083179,1083180,1,27.0,2.0,1.0,0.0,1,1400.0,1054606,4.0,22637.0,2100.0 +1083180,1083180,1083181,1,27.0,2.0,1.0,0.0,1,1400.0,1054606,4.0,22637.0,2100.0 +1083182,1083182,1083183,1,28.0,2.0,0.0,0.0,1,25300.0,1073449,6.0,22637.0,2100.0 +1083187,1083187,1083188,1,28.0,2.0,0.0,0.0,1,25300.0,1073449,6.0,22636.0,2100.0 +1083192,1083192,1083193,1,25.0,2.0,0.0,0.0,1,13000.0,1080470,4.0,22637.0,2100.0 +1083197,1083197,1083198,4,29.0,2.0,1.0,3.0,1,16700.0,1054606,3.0,22637.0,2100.0 +1083205,1083205,1083206,3,29.0,2.0,0.0,2.0,1,8800.0,1073449,3.0,22637.0,2100.0 +1083207,1083207,1083208,4,37.0,3.0,2.0,2.0,1,122000.0,1080470,1.0,22636.0,2100.0 +1083212,1083212,1083213,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22637.0,2100.0 +1083215,1083215,1083216,1,41.0,1.0,1.0,0.0,1,54000.0,1010145,4.0,22636.0,2100.0 +1083219,1083219,1083220,4,40.0,1.0,2.0,0.0,1,5000.0,1031452,1.0,22637.0,2100.0 +1083222,1083222,1083223,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22637.0,2100.0 +1083225,1083225,1083226,4,44.0,1.0,0.0,2.0,1,26600.0,1010145,3.0,22637.0,2100.0 +1083226,1083226,1083227,4,44.0,1.0,0.0,3.0,1,26600.0,1010145,3.0,22637.0,2100.0 +1083227,1083227,1083228,4,44.0,1.0,0.0,3.0,1,26600.0,1010145,3.0,22637.0,2100.0 +1083228,1083228,1083229,4,44.0,1.0,0.0,3.0,1,26600.0,1010145,3.0,22637.0,2100.0 +1083229,1083229,1083230,4,44.0,1.0,0.0,3.0,1,26600.0,1010145,3.0,22637.0,2100.0 +1083246,1083246,1083247,2,23.0,1.0,2.0,0.0,1,19000.0,1073449,2.0,22637.0,2100.0 +1083247,1083247,1083248,4,23.0,1.0,1.0,0.0,1,17000.0,1073449,3.0,22637.0,2100.0 +1083249,1083249,1083250,4,23.0,1.0,1.0,3.0,1,17000.0,1073449,3.0,22637.0,2100.0 +1083250,1083250,1083251,2,60.0,3.0,1.0,3.0,1,99000.0,1054606,1.0,22638.0,2100.0 +1083251,1083251,1083252,2,60.0,3.0,1.0,0.0,1,99000.0,1054606,1.0,22638.0,2100.0 +1083252,1083252,1083253,2,60.0,3.0,1.0,0.0,1,99000.0,1054606,1.0,22638.0,2100.0 +1083253,1083253,1083254,1,61.0,3.0,1.0,0.0,1,4800.0,1073449,6.0,22638.0,2100.0 +1083254,1083254,1083255,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22638.0,2100.0 +1083255,1083255,1083256,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22638.0,2100.0 +1083256,1083256,1083257,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22638.0,2100.0 +1083257,1083257,1083258,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22638.0,2100.0 +1083258,1083258,1083259,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22638.0,2100.0 +1083259,1083259,1083260,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22638.0,2100.0 +1083260,1083260,1083261,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22638.0,2100.0 +1083261,1083261,1083262,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22638.0,2100.0 +1083262,1083262,1083263,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22638.0,2100.0 +1083263,1083263,1083264,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22638.0,2100.0 +1083264,1083264,1083265,2,54.0,1.0,2.0,0.0,1,84040.0,1080470,1.0,22638.0,2100.0 +1083265,1083265,1083266,2,56.0,1.0,2.0,0.0,1,66000.0,1054606,1.0,22638.0,2100.0 +1083266,1083266,1083267,2,62.0,1.0,1.0,0.0,1,84500.0,1010145,1.0,22638.0,2100.0 +1083267,1083267,1083268,2,62.0,1.0,1.0,0.0,1,84500.0,1010145,1.0,22638.0,2100.0 +1083268,1083268,1083269,2,62.0,1.0,1.0,0.0,1,84500.0,1010145,1.0,22638.0,2100.0 +1083269,1083269,1083270,2,62.0,1.0,1.0,0.0,1,84500.0,1010145,1.0,22638.0,2100.0 +1083270,1083270,1083271,3,52.0,1.0,3.0,0.0,1,35000.0,1054606,3.0,22638.0,2100.0 +1083271,1083271,1083272,2,61.0,1.0,2.0,0.0,1,48000.0,1073449,3.0,22638.0,2100.0 +1083272,1083272,1083273,2,61.0,1.0,2.0,0.0,1,48000.0,1073449,3.0,22638.0,2100.0 +1083273,1083273,1083274,2,58.0,1.0,2.0,0.0,1,41400.0,1073449,1.0,22638.0,2100.0 +1083274,1083274,1083275,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22638.0,2100.0 +1083275,1083275,1083276,2,45.0,1.0,3.0,0.0,1,40700.0,1073449,3.0,22638.0,2100.0 +1083281,1083281,1083282,2,54.0,1.0,1.0,0.0,1,43200.0,1010145,7.0,22638.0,2100.0 +1083282,1083282,1083283,2,54.0,1.0,1.0,0.0,1,43200.0,1010145,7.0,22638.0,2100.0 +1083283,1083283,1083284,2,54.0,1.0,1.0,0.0,1,43200.0,1010145,7.0,22638.0,2100.0 +1083285,1083285,1083286,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083286,1083286,1083287,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083287,1083287,1083288,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083288,1083288,1083289,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083290,1083290,1083291,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083291,1083291,1083292,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083292,1083292,1083293,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083293,1083293,1083294,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083294,1083294,1083295,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083295,1083295,1083296,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083296,1083296,1083297,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083297,1083297,1083298,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083298,1083298,1083299,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083299,1083299,1083300,2,54.0,1.0,1.0,0.0,1,23300.0,1031452,3.0,22638.0,2100.0 +1083300,1083300,1083301,5,37.0,4.0,2.0,0.0,1,5000.0,1031452,1.0,22638.0,2100.0 +1083301,1083301,1083302,5,35.0,3.0,3.0,2.0,1,64000.0,1054606,1.0,22638.0,2100.0 +1083302,1083302,1083303,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22638.0,2100.0 +1083303,1083303,1083304,5,35.0,3.0,3.0,3.0,1,64000.0,1054606,1.0,22638.0,2100.0 +1083304,1083304,1083305,2,39.0,1.0,2.0,3.0,1,75000.0,1054606,1.0,22638.0,2100.0 +1083305,1083305,1083306,2,34.0,1.0,2.0,0.0,1,86000.0,1073449,1.0,22638.0,2100.0 +1083306,1083306,1083307,2,34.0,1.0,2.0,0.0,1,86000.0,1073449,1.0,22638.0,2100.0 +1083307,1083307,1083308,2,39.0,1.0,2.0,0.0,1,75000.0,1054606,1.0,22638.0,2100.0 +1083308,1083308,1083309,2,39.0,1.0,2.0,0.0,1,75000.0,1054606,1.0,22638.0,2100.0 +1083309,1083309,1083310,2,36.0,1.0,2.0,0.0,1,80000.0,1010145,5.0,22638.0,2100.0 +1083310,1083310,1083311,2,39.0,1.0,2.0,0.0,1,75000.0,1054606,1.0,22638.0,2100.0 +1083311,1083311,1083312,2,39.0,1.0,2.0,0.0,1,75000.0,1054606,1.0,22638.0,2100.0 +1083312,1083312,1083313,2,36.0,1.0,2.0,0.0,1,80000.0,1010145,5.0,22638.0,2100.0 +1083313,1083313,1083314,2,39.0,1.0,2.0,0.0,1,75000.0,1054606,1.0,22638.0,2100.0 +1083315,1083315,1083316,2,39.0,1.0,2.0,0.0,1,75000.0,1054606,1.0,22638.0,2100.0 +1083316,1083316,1083317,2,34.0,1.0,2.0,0.0,1,86000.0,1073449,1.0,22638.0,2100.0 +1083317,1083317,1083318,2,36.0,1.0,2.0,0.0,1,80000.0,1010145,5.0,22638.0,2100.0 +1083318,1083318,1083319,2,39.0,1.0,2.0,0.0,1,75000.0,1054606,1.0,22638.0,2100.0 +1083319,1083319,1083320,2,36.0,1.0,2.0,0.0,1,80000.0,1010145,5.0,22638.0,2100.0 +1083320,1083320,1083321,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22638.0,2100.0 +1083321,1083321,1083322,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22638.0,2100.0 +1083322,1083322,1083323,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22638.0,2100.0 +1083323,1083323,1083324,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22638.0,2100.0 +1083325,1083325,1083326,2,36.0,1.0,1.0,0.0,1,92200.0,1054606,5.0,22638.0,2100.0 +1083326,1083326,1083327,1,37.0,1.0,1.0,0.0,1,80000.0,1073449,6.0,22638.0,2100.0 +1083327,1083327,1083328,1,37.0,1.0,1.0,0.0,1,80000.0,1073449,6.0,22638.0,2100.0 +1083328,1083328,1083329,1,33.0,1.0,1.0,0.0,1,70000.0,1080470,6.0,22638.0,2100.0 +1083329,1083329,1083330,1,31.0,1.0,1.0,0.0,1,72000.0,1031452,6.0,22638.0,2100.0 +1083330,1083330,1083331,2,33.0,1.0,2.0,0.0,1,57000.0,1054606,7.0,22638.0,2100.0 +1083332,1083332,1083333,2,36.0,1.0,2.0,0.0,1,47000.0,1054606,7.0,22638.0,2100.0 +1083333,1083333,1083334,2,36.0,1.0,2.0,0.0,1,47000.0,1054606,7.0,22638.0,2100.0 +1083334,1083334,1083335,2,36.0,1.0,2.0,0.0,1,47000.0,1054606,7.0,22638.0,2100.0 +1083335,1083335,1083336,2,44.0,1.0,2.0,0.0,1,36700.0,1080470,5.0,22638.0,2100.0 +1083336,1083336,1083337,2,44.0,1.0,2.0,0.0,1,36700.0,1080470,5.0,22638.0,2100.0 +1083337,1083337,1083338,2,26.0,1.0,1.0,0.0,1,38000.0,1054606,5.0,22638.0,2100.0 +1083340,1083340,1083341,1,34.0,1.0,1.0,0.0,1,53000.0,1073449,6.0,22638.0,2100.0 +1083341,1083341,1083342,1,34.0,1.0,1.0,0.0,1,53000.0,1073449,6.0,22638.0,2100.0 +1083344,1083344,1083345,1,37.0,1.0,1.0,0.0,1,51000.0,1054606,6.0,22638.0,2100.0 +1083346,1083346,1083347,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083347,1083347,1083348,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083349,1083349,1083350,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083350,1083350,1083351,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083352,1083352,1083353,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083353,1083353,1083354,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083354,1083354,1083355,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083355,1083355,1083356,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083356,1083356,1083357,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083357,1083357,1083358,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083358,1083358,1083359,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083359,1083359,1083360,2,36.0,1.0,1.0,0.0,1,18400.0,1031452,2.0,22638.0,2100.0 +1083360,1083360,1083361,4,38.0,1.0,2.0,0.0,1,61900.0,1010145,1.0,22638.0,2100.0 +1083361,1083361,1083362,5,43.0,1.0,2.0,2.0,1,47500.0,1054606,1.0,22638.0,2100.0 +1083362,1083362,1083363,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22638.0,2100.0 +1083363,1083363,1083364,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22638.0,2100.0 +1083364,1083364,1083365,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22638.0,2100.0 +1083365,1083365,1083366,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22638.0,2100.0 +1083366,1083366,1083367,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22638.0,2100.0 +1083367,1083367,1083368,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22638.0,2100.0 +1083368,1083368,1083369,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22638.0,2100.0 +1083369,1083369,1083370,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22638.0,2100.0 +1083370,1083370,1083371,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22638.0,2100.0 +1083371,1083371,1083372,5,43.0,1.0,2.0,1.0,1,47500.0,1054606,1.0,22638.0,2100.0 +1083372,1083372,1083373,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083373,1083373,1083374,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083374,1083374,1083375,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083375,1083375,1083376,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083376,1083376,1083377,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083377,1083377,1083378,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083378,1083378,1083379,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083379,1083379,1083380,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083382,1083382,1083383,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083384,1083384,1083385,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083385,1083385,1083386,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083386,1083386,1083387,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083388,1083388,1083389,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083389,1083389,1083390,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083390,1083390,1083391,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083391,1083391,1083392,4,38.0,1.0,1.0,1.0,1,41000.0,1010145,2.0,22638.0,2100.0 +1083392,1083392,1083393,4,41.0,1.0,2.0,1.0,1,18000.0,1073449,1.0,22638.0,2100.0 +1083394,1083394,1083395,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22638.0,2100.0 +1083395,1083395,1083396,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22638.0,2100.0 +1083396,1083396,1083397,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22638.0,2100.0 +1083398,1083398,1083399,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22638.0,2100.0 +1083400,1083400,1083401,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22638.0,2100.0 +1083401,1083401,1083402,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22638.0,2100.0 +1083402,1083402,1083403,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22638.0,2100.0 +1083403,1083403,1083404,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22638.0,2100.0 +1083404,1083404,1083405,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22638.0,2100.0 +1083405,1083405,1083406,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22638.0,2100.0 +1083406,1083406,1083407,4,32.0,1.0,1.0,2.0,1,8000.0,1031452,3.0,22638.0,2100.0 +1094368,1094368,1094369,2,68.0,4.0,2.0,0.0,1,153000.0,1073449,1.0,22734.0,2115.0 +1094370,1094370,1094371,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22734.0,2115.0 +1094371,1094371,1094372,3,67.0,2.0,2.0,0.0,1,180000.0,1031452,3.0,22734.0,2115.0 +1094376,1094376,1094377,2,65.0,2.0,2.0,0.0,1,394000.0,1080470,1.0,22734.0,2115.0 +1094378,1094378,1094379,2,65.0,2.0,2.0,0.0,1,394000.0,1080470,1.0,22734.0,2115.0 +1094379,1094379,1094380,2,65.0,2.0,2.0,0.0,1,394000.0,1080470,1.0,22734.0,2115.0 +1094382,1094382,1094383,4,78.0,2.0,3.0,0.0,1,54100.0,1073449,3.0,22734.0,2115.0 +1094383,1094383,1094384,4,78.0,2.0,3.0,0.0,1,54100.0,1073449,3.0,22734.0,2115.0 +1094384,1094384,1094385,3,73.0,2.0,0.0,0.0,1,186000.0,1010145,3.0,22734.0,2115.0 +1094385,1094385,1094386,4,66.0,1.0,4.0,1.0,1,168200.0,1080470,1.0,22734.0,2115.0 +1094386,1094386,1094387,3,69.0,1.0,2.0,0.0,1,173850.0,1054606,1.0,22734.0,2115.0 +1094387,1094387,1094388,3,69.0,1.0,2.0,0.0,1,173850.0,1054606,1.0,22734.0,2115.0 +1094389,1094389,1094390,3,69.0,1.0,2.0,0.0,1,173850.0,1054606,1.0,22734.0,2115.0 +1094390,1094390,1094391,3,69.0,1.0,2.0,0.0,1,173850.0,1054606,1.0,22734.0,2115.0 +1094393,1094393,1094394,3,70.0,1.0,3.0,0.0,1,256300.0,1080470,1.0,22734.0,2115.0 +1094402,1094402,1094403,2,70.0,1.0,2.0,0.0,1,435100.0,1054606,1.0,22734.0,2115.0 +1094404,1094404,1094405,2,69.0,1.0,2.0,0.0,1,159550.0,1080470,1.0,22734.0,2115.0 +1094406,1094406,1094407,2,65.0,1.0,3.0,0.0,1,102000.0,1073449,1.0,22734.0,2115.0 +1094407,1094407,1094408,2,65.0,1.0,3.0,0.0,1,102000.0,1073449,1.0,22734.0,2115.0 +1094408,1094408,1094409,2,65.0,1.0,3.0,0.0,1,102000.0,1073449,1.0,22734.0,2115.0 +1094413,1094413,1094414,2,66.0,1.0,2.0,0.0,1,324000.0,1054606,1.0,22734.0,2115.0 +1094414,1094414,1094415,2,66.0,1.0,2.0,0.0,1,324000.0,1054606,1.0,22734.0,2115.0 +1094417,1094417,1094418,2,66.0,1.0,2.0,0.0,1,324000.0,1054606,1.0,22734.0,2115.0 +1094418,1094418,1094419,2,66.0,1.0,3.0,0.0,1,130200.0,1080470,1.0,22734.0,2115.0 +1094419,1094419,1094420,2,66.0,1.0,3.0,0.0,1,130200.0,1080470,1.0,22734.0,2115.0 +1094420,1094420,1094421,2,66.0,1.0,3.0,0.0,1,130200.0,1080470,1.0,22734.0,2115.0 +1094425,1094425,1094426,3,73.0,1.0,3.0,0.0,1,218500.0,1054606,1.0,22734.0,2115.0 +1094426,1094426,1094427,2,67.0,1.0,2.0,0.0,1,165800.0,1080470,1.0,22734.0,2115.0 +1094427,1094427,1094428,2,67.0,1.0,2.0,0.0,1,165800.0,1080470,1.0,22734.0,2115.0 +1094431,1094431,1094432,2,67.0,1.0,2.0,0.0,1,165800.0,1080470,1.0,22734.0,2115.0 +1094432,1094432,1094433,2,67.0,1.0,2.0,0.0,1,165800.0,1080470,1.0,22734.0,2115.0 +1094433,1094433,1094434,2,67.0,1.0,2.0,0.0,1,165800.0,1080470,1.0,22734.0,2115.0 +1094439,1094439,1094440,2,65.0,1.0,2.0,0.0,1,78000.0,1080470,1.0,22734.0,2115.0 +1094440,1094440,1094441,2,66.0,1.0,2.0,0.0,1,69200.0,1054606,7.0,22734.0,2115.0 +1094441,1094441,1094442,3,90.0,1.0,2.0,0.0,1,69800.0,1054606,1.0,22734.0,2115.0 +1094444,1094444,1094445,2,73.0,1.0,3.0,0.0,1,85000.0,1080470,1.0,22734.0,2115.0 +1094445,1094445,1094446,2,73.0,1.0,3.0,0.0,1,85000.0,1080470,1.0,22734.0,2115.0 +1094447,1094447,1094448,2,73.0,1.0,3.0,0.0,1,85000.0,1080470,1.0,22734.0,2115.0 +1094448,1094448,1094449,2,73.0,1.0,3.0,0.0,1,85000.0,1080470,1.0,22734.0,2115.0 +1094451,1094451,1094452,2,65.0,1.0,3.0,0.0,1,88100.0,1080470,1.0,22734.0,2115.0 +1094452,1094452,1094453,2,65.0,1.0,3.0,0.0,1,88100.0,1080470,1.0,22734.0,2115.0 +1094457,1094457,1094458,3,81.0,1.0,1.0,0.0,1,68900.0,1080470,1.0,22734.0,2115.0 +1094462,1094462,1094463,2,65.0,1.0,1.0,0.0,1,63100.0,1031452,3.0,22734.0,2115.0 +1094465,1094465,1094466,2,68.0,1.0,1.0,0.0,1,83760.0,1073449,1.0,22734.0,2115.0 +1094466,1094466,1094467,2,68.0,1.0,1.0,0.0,1,83760.0,1073449,1.0,22734.0,2115.0 +1094468,1094468,1094469,2,72.0,1.0,1.0,0.0,1,81800.0,1010145,3.0,22734.0,2115.0 +1094469,1094469,1094470,2,77.0,1.0,2.0,0.0,1,44000.0,1073449,2.0,22734.0,2115.0 +1094470,1094470,1094471,2,65.0,1.0,1.0,0.0,1,53900.0,1073449,3.0,22734.0,2115.0 +1094471,1094471,1094472,2,66.0,1.0,1.0,0.0,1,55000.0,1054606,1.0,22734.0,2115.0 +1094473,1094473,1094474,2,66.0,1.0,1.0,0.0,1,30500.0,1031452,7.0,22734.0,2115.0 +1094477,1094477,1094478,1,75.0,1.0,1.0,0.0,1,18800.0,1031452,4.0,22734.0,2115.0 +1094478,1094478,1094479,1,69.0,1.0,1.0,0.0,1,30000.0,1010145,4.0,22734.0,2115.0 +1094479,1094479,1094480,4,68.0,1.0,3.0,0.0,1,83650.0,1031452,1.0,22734.0,2115.0 +1094482,1094482,1094483,4,68.0,1.0,3.0,1.0,1,83650.0,1031452,1.0,22734.0,2115.0 +1094483,1094483,1094484,4,68.0,1.0,3.0,1.0,1,83650.0,1031452,1.0,22734.0,2115.0 +1094485,1094485,1094486,3,55.0,4.0,3.0,1.0,1,176500.0,1054606,1.0,22734.0,2115.0 +1094488,1094488,1094489,4,48.0,4.0,2.0,1.0,1,130000.0,1073449,1.0,22734.0,2115.0 +1094491,1094491,1094492,2,45.0,2.0,2.0,1.0,1,104600.0,1010145,5.0,22734.0,2115.0 +1094492,1094492,1094493,2,56.0,2.0,1.0,0.0,1,130000.0,1031452,2.0,22734.0,2115.0 +1094494,1094494,1094495,2,45.0,2.0,1.0,0.0,1,61000.0,1080470,2.0,22734.0,2115.0 +1094495,1094495,1094496,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22734.0,2115.0 +1094496,1094496,1094497,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22734.0,2115.0 +1094498,1094498,1094499,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22734.0,2115.0 +1094499,1094499,1094500,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22734.0,2115.0 +1094505,1094505,1094506,3,60.0,2.0,0.0,0.0,1,32320.0,1080470,1.0,22734.0,2115.0 +1094507,1094507,1094508,4,45.0,2.0,3.0,1.0,1,189400.0,1073449,1.0,22734.0,2115.0 +1094508,1094508,1094509,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22734.0,2115.0 +1094509,1094509,1094510,4,63.0,2.0,1.0,1.0,1,33500.0,1031452,3.0,22734.0,2115.0 +1094512,1094512,1094513,3,54.0,1.0,3.0,0.0,1,199200.0,1080470,1.0,22734.0,2115.0 +1094513,1094513,1094514,3,50.0,1.0,3.0,0.0,1,121960.0,1073449,1.0,22734.0,2115.0 +1094515,1094515,1094516,3,56.0,1.0,2.0,0.0,1,117000.0,1073449,3.0,22734.0,2115.0 +1094516,1094516,1094517,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22734.0,2115.0 +1094522,1094522,1094523,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22734.0,2115.0 +1094523,1094523,1094524,3,54.0,1.0,4.0,0.0,1,444000.0,1054606,1.0,22734.0,2115.0 +1094526,1094526,1094527,2,53.0,1.0,2.0,0.0,1,132700.0,1054606,1.0,22734.0,2115.0 +1094527,1094527,1094528,1,58.0,1.0,2.0,0.0,1,135000.0,1073449,4.0,22734.0,2115.0 +1094528,1094528,1094529,1,62.0,1.0,2.0,0.0,1,437100.0,1073449,4.0,22734.0,2115.0 +1094530,1094530,1094531,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22734.0,2115.0 +1094531,1094531,1094532,2,63.0,1.0,1.0,0.0,1,248000.0,1010145,2.0,22734.0,2115.0 +1094533,1094533,1094534,2,52.0,1.0,1.0,0.0,1,123510.0,1073449,1.0,22734.0,2115.0 +1094534,1094534,1094535,3,52.0,1.0,3.0,0.0,1,80120.0,1080470,1.0,22734.0,2115.0 +1094539,1094539,1094540,3,54.0,1.0,3.0,0.0,1,94700.0,1054606,1.0,22734.0,2115.0 +1094540,1094540,1094541,2,46.0,1.0,2.0,0.0,1,81000.0,1031452,3.0,22734.0,2115.0 +1094542,1094542,1094543,2,47.0,1.0,4.0,0.0,1,69700.0,1080470,3.0,22734.0,2115.0 +1094546,1094546,1094547,1,51.0,1.0,1.0,0.0,1,20000.0,1054606,4.0,22734.0,2115.0 +1094548,1094548,1094549,6,52.0,1.0,2.0,3.0,1,143320.0,1054606,1.0,22734.0,2115.0 +1094554,1094554,1094555,4,46.0,1.0,3.0,1.0,1,255000.0,1054606,1.0,22734.0,2115.0 +1094556,1094556,1094557,5,51.0,1.0,3.0,2.0,1,185000.0,1010145,1.0,22734.0,2115.0 +1094559,1094559,1094560,5,51.0,1.0,3.0,2.0,1,185000.0,1010145,1.0,22734.0,2115.0 +1094560,1094560,1094561,5,51.0,1.0,3.0,2.0,1,185000.0,1010145,1.0,22734.0,2115.0 +1094566,1094566,1094567,6,47.0,1.0,3.0,1.0,1,26510.0,1054606,3.0,22734.0,2115.0 +1094567,1094567,1094568,6,47.0,1.0,3.0,2.0,1,26510.0,1054606,3.0,22734.0,2115.0 +1094569,1094569,1094570,1,41.0,2.0,1.0,2.0,1,115000.0,1073449,4.0,22734.0,2115.0 +1094572,1094572,1094573,2,43.0,2.0,1.0,1.0,1,106000.0,1010145,3.0,22734.0,2115.0 +1094574,1094574,1094575,5,30.0,2.0,2.0,3.0,1,26000.0,1080470,2.0,22734.0,2115.0 +1094575,1094575,1094576,2,34.0,1.0,3.0,3.0,1,133000.0,1010145,1.0,22734.0,2115.0 +1094576,1094576,1094577,2,32.0,1.0,2.0,0.0,1,101000.0,1054606,2.0,22734.0,2115.0 +1094579,1094579,1094580,2,40.0,1.0,1.0,0.0,1,141070.0,1073449,1.0,22734.0,2115.0 +1094580,1094580,1094581,2,40.0,1.0,1.0,0.0,1,141070.0,1073449,1.0,22734.0,2115.0 +1094582,1094582,1094583,2,38.0,1.0,1.0,0.0,1,487000.0,1031452,1.0,22734.0,2115.0 +1094584,1094584,1094585,2,30.0,1.0,1.0,0.0,1,123000.0,1054606,5.0,22734.0,2115.0 +1094585,1094585,1094586,2,30.0,1.0,1.0,0.0,1,123000.0,1054606,5.0,22734.0,2115.0 +1094587,1094587,1094588,2,30.0,1.0,1.0,0.0,1,123000.0,1054606,5.0,22734.0,2115.0 +1094592,1094592,1094593,2,30.0,1.0,1.0,0.0,1,123000.0,1054606,5.0,22734.0,2115.0 +1094593,1094593,1094594,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22734.0,2115.0 +1094594,1094594,1094595,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22734.0,2115.0 +1094597,1094597,1094598,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22734.0,2115.0 +1094598,1094598,1094599,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22734.0,2115.0 +1094599,1094599,1094600,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22734.0,2115.0 +1094603,1094603,1094604,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22734.0,2115.0 +1094606,1094606,1094607,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22734.0,2115.0 +1094607,1094607,1094608,1,37.0,1.0,1.0,0.0,1,324000.0,1010145,4.0,22734.0,2115.0 +1094608,1094608,1094609,1,42.0,1.0,1.0,0.0,1,160000.0,1054606,4.0,22734.0,2115.0 +1094609,1094609,1094610,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22734.0,2115.0 +1094610,1094610,1094611,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22734.0,2115.0 +1094611,1094611,1094612,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22734.0,2115.0 +1094612,1094612,1094613,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22734.0,2115.0 +1094613,1094613,1094614,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22734.0,2115.0 +1094614,1094614,1094615,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22734.0,2115.0 +1094615,1094615,1094616,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22734.0,2115.0 +1094617,1094617,1094618,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22734.0,2115.0 +1094618,1094618,1094619,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22734.0,2115.0 +1094619,1094619,1094620,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22734.0,2115.0 +1094620,1094620,1094621,2,28.0,1.0,2.0,0.0,1,78900.0,1054606,5.0,22734.0,2115.0 +1094623,1094623,1094624,1,26.0,1.0,1.0,0.0,1,80000.0,1054606,4.0,22734.0,2115.0 +1094625,1094625,1094626,1,26.0,1.0,1.0,0.0,1,80000.0,1054606,4.0,22734.0,2115.0 +1094626,1094626,1094627,1,33.0,1.0,1.0,0.0,1,91000.0,1073449,4.0,22734.0,2115.0 +1094629,1094629,1094630,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22734.0,2115.0 +1094630,1094630,1094631,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22734.0,2115.0 +1094636,1094636,1094637,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22734.0,2115.0 +1094637,1094637,1094638,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22734.0,2115.0 +1094639,1094639,1094640,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22734.0,2115.0 +1094642,1094642,1094643,7,36.0,1.0,2.0,3.0,1,119300.0,1054606,1.0,22734.0,2115.0 +1094645,1094645,1094646,4,42.0,1.0,2.0,4.0,1,190000.0,1010145,1.0,22734.0,2115.0 +1094646,1094646,1094647,4,37.0,1.0,3.0,2.0,1,124000.0,1054606,1.0,22734.0,2115.0 +1094648,1094648,1094649,4,43.0,1.0,3.0,2.0,1,271600.0,1073449,1.0,22734.0,2115.0 +1094652,1094652,1094653,3,44.0,1.0,2.0,1.0,1,116000.0,1031452,1.0,22734.0,2115.0 +1094653,1094653,1094654,3,33.0,1.0,2.0,1.0,1,271000.0,1010145,1.0,22734.0,2115.0 +1094655,1094655,1094656,3,40.0,1.0,1.0,2.0,1,261800.0,1080470,3.0,22734.0,2115.0 +1094657,1094657,1094658,3,33.0,1.0,0.0,3.0,1,112000.0,1080470,1.0,22734.0,2115.0 +1094658,1094658,1094659,3,33.0,1.0,0.0,1.0,1,112000.0,1080470,1.0,22734.0,2115.0 +1151641,1151641,1151642,1,89.0,4.0,0.0,0.0,1,8800.0,1031452,6.0,22747.0,2123.0 +1151642,1151642,1151643,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22767.0,2132.0 +1151643,1151643,1151644,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22747.0,2123.0 +1151644,1151644,1151645,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22768.0,2132.0 +1151645,1151645,1151646,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22768.0,2132.0 +1151646,1151646,1151647,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22768.0,2132.0 +1151647,1151647,1151648,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22767.0,2132.0 +1151648,1151648,1151649,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22767.0,2132.0 +1151649,1151649,1151650,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22770.0,2134.0 +1151650,1151650,1151651,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22767.0,2132.0 +1151651,1151651,1151652,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22771.0,2135.0 +1151652,1151652,1151653,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22767.0,2132.0 +1151653,1151653,1151654,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22770.0,2134.0 +1151654,1151654,1151655,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22767.0,2132.0 +1151655,1151655,1151656,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22767.0,2132.0 +1151656,1151656,1151657,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22770.0,2134.0 +1151657,1151657,1151658,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22767.0,2132.0 +1151658,1151658,1151659,1,87.0,1.0,0.0,0.0,1,148010.0,1010145,6.0,22771.0,2135.0 +1151659,1151659,1151660,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22768.0,2132.0 +1151660,1151660,1151661,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22747.0,2123.0 +1151661,1151661,1151662,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22767.0,2132.0 +1151662,1151662,1151663,1,87.0,1.0,0.0,0.0,1,148010.0,1010145,6.0,22770.0,2134.0 +1151663,1151663,1151664,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22747.0,2123.0 +1151664,1151664,1151665,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22768.0,2132.0 +1151665,1151665,1151666,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22770.0,2134.0 +1151666,1151666,1151667,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22770.0,2134.0 +1151667,1151667,1151668,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22767.0,2132.0 +1151668,1151668,1151669,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22773.0,2136.0 +1151669,1151669,1151670,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22748.0,2124.0 +1151670,1151670,1151671,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22771.0,2135.0 +1151671,1151671,1151672,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22770.0,2134.0 +1151672,1151672,1151673,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22768.0,2132.0 +1151673,1151673,1151674,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22747.0,2123.0 +1151674,1151674,1151675,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22767.0,2132.0 +1151675,1151675,1151676,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22771.0,2135.0 +1151676,1151676,1151677,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22771.0,2135.0 +1151677,1151677,1151678,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22767.0,2132.0 +1151678,1151678,1151679,1,87.0,1.0,0.0,0.0,1,148010.0,1010145,6.0,22767.0,2132.0 +1151679,1151679,1151680,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22768.0,2132.0 +1151680,1151680,1151681,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22773.0,2136.0 +1151681,1151681,1151682,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22767.0,2132.0 +1151682,1151682,1151683,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22768.0,2132.0 +1151683,1151683,1151684,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22767.0,2132.0 +1151684,1151684,1151685,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22767.0,2132.0 +1151685,1151685,1151686,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22768.0,2132.0 +1151686,1151686,1151687,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22768.0,2132.0 +1151687,1151687,1151688,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22768.0,2132.0 +1151688,1151688,1151689,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22770.0,2134.0 +1151689,1151689,1151690,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22771.0,2135.0 +1151690,1151690,1151691,1,87.0,1.0,0.0,0.0,1,148010.0,1010145,6.0,22768.0,2132.0 +1151691,1151691,1151692,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22769.0,2133.0 +1151692,1151692,1151693,1,86.0,1.0,0.0,0.0,1,108200.0,1080470,6.0,22768.0,2132.0 +1151693,1151693,1151694,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22767.0,2132.0 +1151694,1151694,1151695,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22770.0,2134.0 +1151695,1151695,1151696,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22770.0,2134.0 +1151696,1151696,1151697,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22770.0,2134.0 +1151697,1151697,1151698,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22767.0,2132.0 +1151698,1151698,1151699,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22767.0,2132.0 +1151699,1151699,1151700,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22771.0,2135.0 +1151700,1151700,1151701,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22767.0,2132.0 +1151701,1151701,1151702,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22771.0,2135.0 +1151702,1151702,1151703,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22747.0,2123.0 +1151703,1151703,1151704,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22767.0,2132.0 +1151704,1151704,1151705,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22770.0,2134.0 +1151705,1151705,1151706,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22769.0,2133.0 +1151706,1151706,1151707,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22767.0,2132.0 +1151707,1151707,1151708,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22767.0,2132.0 +1151708,1151708,1151709,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22767.0,2132.0 +1151709,1151709,1151710,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22745.0,2121.0 +1151710,1151710,1151711,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22770.0,2134.0 +1151711,1151711,1151712,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22769.0,2133.0 +1151712,1151712,1151713,1,86.0,1.0,0.0,0.0,1,265000.0,1054606,6.0,22767.0,2132.0 +1151713,1151713,1151714,4,81.0,1.0,1.0,0.0,1,34100.0,1080470,1.0,22767.0,2132.0 +1151714,1151714,1151715,1,66.0,1.0,1.0,0.0,1,59000.0,1080470,6.0,22767.0,2132.0 +1151715,1151715,1151716,1,66.0,1.0,1.0,0.0,1,59000.0,1080470,6.0,22767.0,2132.0 +1151716,1151716,1151717,1,82.0,1.0,0.0,0.0,1,41000.0,1073449,6.0,22768.0,2132.0 +1151717,1151717,1151718,1,82.0,1.0,0.0,0.0,1,41000.0,1073449,6.0,22767.0,2132.0 +1151718,1151718,1151719,1,82.0,1.0,0.0,0.0,1,49000.0,1054606,6.0,22767.0,2132.0 +1151719,1151719,1151720,1,88.0,1.0,0.0,0.0,1,50500.0,1010145,6.0,22767.0,2132.0 +1151720,1151720,1151721,1,79.0,1.0,0.0,0.0,1,3000.0,1073449,6.0,22767.0,2132.0 +1151721,1151721,1151722,4,48.0,4.0,1.0,0.0,1,15900.0,1031452,3.0,22770.0,2134.0 +1151722,1151722,1151723,4,48.0,4.0,1.0,2.0,1,15900.0,1031452,3.0,22767.0,2132.0 +1151723,1151723,1151724,4,48.0,4.0,1.0,2.0,1,15900.0,1031452,3.0,22767.0,2132.0 +1151724,1151724,1151725,4,48.0,4.0,1.0,2.0,1,15900.0,1031452,3.0,22767.0,2132.0 +1151725,1151725,1151726,4,48.0,4.0,1.0,2.0,1,15900.0,1031452,3.0,22767.0,2132.0 +1151726,1151726,1151727,4,49.0,2.0,2.0,2.0,1,78200.0,1080470,2.0,22768.0,2132.0 +1151727,1151727,1151728,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22767.0,2132.0 +1151728,1151728,1151729,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22767.0,2132.0 +1151729,1151729,1151730,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22767.0,2132.0 +1151730,1151730,1151731,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22767.0,2132.0 +1151731,1151731,1151732,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22771.0,2135.0 +1151732,1151732,1151733,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22768.0,2132.0 +1151733,1151733,1151734,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22767.0,2132.0 +1151734,1151734,1151735,4,62.0,1.0,4.0,0.0,1,248130.0,1010145,1.0,22767.0,2132.0 +1151735,1151735,1151736,4,63.0,1.0,4.0,0.0,1,664900.0,1010145,1.0,22767.0,2132.0 +1151736,1151736,1151737,4,63.0,1.0,4.0,0.0,1,664900.0,1010145,1.0,22768.0,2132.0 +1151737,1151737,1151738,4,63.0,1.0,4.0,0.0,1,664900.0,1010145,1.0,22771.0,2135.0 +1151738,1151738,1151739,4,63.0,1.0,4.0,0.0,1,664900.0,1010145,1.0,22770.0,2134.0 +1151739,1151739,1151740,4,63.0,1.0,4.0,0.0,1,664900.0,1010145,1.0,22768.0,2132.0 +1151740,1151740,1151741,4,63.0,1.0,4.0,0.0,1,664900.0,1010145,1.0,22767.0,2132.0 +1151741,1151741,1151742,4,63.0,1.0,4.0,0.0,1,664900.0,1010145,1.0,22768.0,2132.0 +1151742,1151742,1151743,4,63.0,1.0,4.0,0.0,1,664900.0,1010145,1.0,22767.0,2132.0 +1151743,1151743,1151744,4,63.0,1.0,4.0,0.0,1,664900.0,1010145,1.0,22767.0,2132.0 +1151744,1151744,1151745,4,63.0,1.0,4.0,0.0,1,664900.0,1010145,1.0,22770.0,2134.0 +1151745,1151745,1151746,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151746,1151746,1151747,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151747,1151747,1151748,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22770.0,2134.0 +1151748,1151748,1151749,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151749,1151749,1151750,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151750,1151750,1151751,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151751,1151751,1151752,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151752,1151752,1151753,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151753,1151753,1151754,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151754,1151754,1151755,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151755,1151755,1151756,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151756,1151756,1151757,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151757,1151757,1151758,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151758,1151758,1151759,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22771.0,2135.0 +1151759,1151759,1151760,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151760,1151760,1151761,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151761,1151761,1151762,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22747.0,2123.0 +1151762,1151762,1151763,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151763,1151763,1151764,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151764,1151764,1151765,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151765,1151765,1151766,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151766,1151766,1151767,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22769.0,2133.0 +1151767,1151767,1151768,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22747.0,2123.0 +1151768,1151768,1151769,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151769,1151769,1151770,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151770,1151770,1151771,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22770.0,2134.0 +1151771,1151771,1151772,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151772,1151772,1151773,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151773,1151773,1151774,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151774,1151774,1151775,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22771.0,2135.0 +1151775,1151775,1151776,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22770.0,2134.0 +1151776,1151776,1151777,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22770.0,2134.0 +1151777,1151777,1151778,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151778,1151778,1151779,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151779,1151779,1151780,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22745.0,2121.0 +1151780,1151780,1151781,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22770.0,2134.0 +1151781,1151781,1151782,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151782,1151782,1151783,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151783,1151783,1151784,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151784,1151784,1151785,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151785,1151785,1151786,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151786,1151786,1151787,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151787,1151787,1151788,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151788,1151788,1151789,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151789,1151789,1151790,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151790,1151790,1151791,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22771.0,2135.0 +1151791,1151791,1151792,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151792,1151792,1151793,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151793,1151793,1151794,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151794,1151794,1151795,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151795,1151795,1151796,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151796,1151796,1151797,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151797,1151797,1151798,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151798,1151798,1151799,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151799,1151799,1151800,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22769.0,2133.0 +1151800,1151800,1151801,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151801,1151801,1151802,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151802,1151802,1151803,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22770.0,2134.0 +1151803,1151803,1151804,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22747.0,2123.0 +1151804,1151804,1151805,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22747.0,2123.0 +1151805,1151805,1151806,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151806,1151806,1151807,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151807,1151807,1151808,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151808,1151808,1151809,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151809,1151809,1151810,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151810,1151810,1151811,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22769.0,2133.0 +1151811,1151811,1151812,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151812,1151812,1151813,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151813,1151813,1151814,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22771.0,2135.0 +1151814,1151814,1151815,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151815,1151815,1151816,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151816,1151816,1151817,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22747.0,2123.0 +1151817,1151817,1151818,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22771.0,2135.0 +1151818,1151818,1151819,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151819,1151819,1151820,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151820,1151820,1151821,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22769.0,2133.0 +1151821,1151821,1151822,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22745.0,2121.0 +1151822,1151822,1151823,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151823,1151823,1151824,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151824,1151824,1151825,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22769.0,2133.0 +1151825,1151825,1151826,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151826,1151826,1151827,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151827,1151827,1151828,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151828,1151828,1151829,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151829,1151829,1151830,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151830,1151830,1151831,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22770.0,2134.0 +1151831,1151831,1151832,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151832,1151832,1151833,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151833,1151833,1151834,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151834,1151834,1151835,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151835,1151835,1151836,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151836,1151836,1151837,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22771.0,2135.0 +1151837,1151837,1151838,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151838,1151838,1151839,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151839,1151839,1151840,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151840,1151840,1151841,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151841,1151841,1151842,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22769.0,2133.0 +1151842,1151842,1151843,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22770.0,2134.0 +1151843,1151843,1151844,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22770.0,2134.0 +1151844,1151844,1151845,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22770.0,2134.0 +1151845,1151845,1151846,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22771.0,2135.0 +1151846,1151846,1151847,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151847,1151847,1151848,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22747.0,2123.0 +1151848,1151848,1151849,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151849,1151849,1151850,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22772.0,2136.0 +1151850,1151850,1151851,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151851,1151851,1151852,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22771.0,2135.0 +1151852,1151852,1151853,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22771.0,2135.0 +1151853,1151853,1151854,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151854,1151854,1151855,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151855,1151855,1151856,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22767.0,2132.0 +1151856,1151856,1151857,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22747.0,2123.0 +1151857,1151857,1151858,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22770.0,2134.0 +1151858,1151858,1151859,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22768.0,2132.0 +1151859,1151859,1151860,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22747.0,2123.0 +1151860,1151860,1151861,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22768.0,2132.0 +1151861,1151861,1151862,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22747.0,2123.0 +1151862,1151862,1151863,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22767.0,2132.0 +1151863,1151863,1151864,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22768.0,2132.0 +1151864,1151864,1151865,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22767.0,2132.0 +1151865,1151865,1151866,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22770.0,2134.0 +1151866,1151866,1151867,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22767.0,2132.0 +1151867,1151867,1151868,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22768.0,2132.0 +1151868,1151868,1151869,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22771.0,2135.0 +1151869,1151869,1151870,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22747.0,2123.0 +1151870,1151870,1151871,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22767.0,2132.0 +1151871,1151871,1151872,4,55.0,1.0,3.0,0.0,1,240200.0,1073449,1.0,22768.0,2132.0 +1151872,1151872,1151873,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22770.0,2134.0 +1151873,1151873,1151874,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22767.0,2132.0 +1151874,1151874,1151875,2,26.0,4.0,2.0,1.0,1,34800.0,1080470,5.0,22745.0,2121.0 +1151875,1151875,1151876,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22770.0,2134.0 +1151876,1151876,1151877,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22748.0,2124.0 +1151877,1151877,1151878,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22767.0,2132.0 +1151878,1151878,1151879,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22770.0,2134.0 +1151879,1151879,1151880,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22770.0,2134.0 +1151880,1151880,1151881,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22773.0,2136.0 +1151881,1151881,1151882,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22771.0,2135.0 +1151882,1151882,1151883,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22771.0,2135.0 +1151883,1151883,1151884,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22767.0,2132.0 +1151884,1151884,1151885,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22770.0,2134.0 +1151885,1151885,1151886,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22768.0,2132.0 +1151886,1151886,1151887,2,26.0,4.0,2.0,0.0,1,34800.0,1080470,5.0,22767.0,2132.0 +1151887,1151887,1151888,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22769.0,2133.0 +1151888,1151888,1151889,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151889,1151889,1151890,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151890,1151890,1151891,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151891,1151891,1151892,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151892,1151892,1151893,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151893,1151893,1151894,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151894,1151894,1151895,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22770.0,2134.0 +1151895,1151895,1151896,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151896,1151896,1151897,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151897,1151897,1151898,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22745.0,2121.0 +1151898,1151898,1151899,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151899,1151899,1151900,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151900,1151900,1151901,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151901,1151901,1151902,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151902,1151902,1151903,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22770.0,2134.0 +1151903,1151903,1151904,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22770.0,2134.0 +1151904,1151904,1151905,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151905,1151905,1151906,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151906,1151906,1151907,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151907,1151907,1151908,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151908,1151908,1151909,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22771.0,2135.0 +1151909,1151909,1151910,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151910,1151910,1151911,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151911,1151911,1151912,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22770.0,2134.0 +1151912,1151912,1151913,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151913,1151913,1151914,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151914,1151914,1151915,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22773.0,2136.0 +1151915,1151915,1151916,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151916,1151916,1151917,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151917,1151917,1151918,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22769.0,2133.0 +1151918,1151918,1151919,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151919,1151919,1151920,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22771.0,2135.0 +1151920,1151920,1151921,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151921,1151921,1151922,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22771.0,2135.0 +1151922,1151922,1151923,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151923,1151923,1151924,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151924,1151924,1151925,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151925,1151925,1151926,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151926,1151926,1151927,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22770.0,2134.0 +1151927,1151927,1151928,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22772.0,2136.0 +1151928,1151928,1151929,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151929,1151929,1151930,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151930,1151930,1151931,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22773.0,2136.0 +1151931,1151931,1151932,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151932,1151932,1151933,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22770.0,2134.0 +1151933,1151933,1151934,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22770.0,2134.0 +1151934,1151934,1151935,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151935,1151935,1151936,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151936,1151936,1151937,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151937,1151937,1151938,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22770.0,2134.0 +1151938,1151938,1151939,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151939,1151939,1151940,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151940,1151940,1151941,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151941,1151941,1151942,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22747.0,2123.0 +1151942,1151942,1151943,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151943,1151943,1151944,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151944,1151944,1151945,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22747.0,2123.0 +1151945,1151945,1151946,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151946,1151946,1151947,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22768.0,2132.0 +1151947,1151947,1151948,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22770.0,2134.0 +1151948,1151948,1151949,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22770.0,2134.0 +1151949,1151949,1151950,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22767.0,2132.0 +1151950,1151950,1151951,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22768.0,2132.0 +1151951,1151951,1151952,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22768.0,2132.0 +1151952,1151952,1151953,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151953,1151953,1151954,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151954,1151954,1151955,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22768.0,2132.0 +1151955,1151955,1151956,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22771.0,2135.0 +1151956,1151956,1151957,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22768.0,2132.0 +1151957,1151957,1151958,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22768.0,2132.0 +1151958,1151958,1151959,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22771.0,2135.0 +1151959,1151959,1151960,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151960,1151960,1151961,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151961,1151961,1151962,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151962,1151962,1151963,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22747.0,2123.0 +1151963,1151963,1151964,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151964,1151964,1151965,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22770.0,2134.0 +1151965,1151965,1151966,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22768.0,2132.0 +1151966,1151966,1151967,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22771.0,2135.0 +1151967,1151967,1151968,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151968,1151968,1151969,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22771.0,2135.0 +1151969,1151969,1151970,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22768.0,2132.0 +1151970,1151970,1151971,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151971,1151971,1151972,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151972,1151972,1151973,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22771.0,2135.0 +1151973,1151973,1151974,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22771.0,2135.0 +1151974,1151974,1151975,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151975,1151975,1151976,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22747.0,2123.0 +1151976,1151976,1151977,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22770.0,2134.0 +1151977,1151977,1151978,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22770.0,2134.0 +1151978,1151978,1151979,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22770.0,2134.0 +1151979,1151979,1151980,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22770.0,2134.0 +1151980,1151980,1151981,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151981,1151981,1151982,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22769.0,2133.0 +1151982,1151982,1151983,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22767.0,2132.0 +1151983,1151983,1151984,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22770.0,2134.0 +1151984,1151984,1151985,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22768.0,2132.0 +1151985,1151985,1151986,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22767.0,2132.0 +1151986,1151986,1151987,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22768.0,2132.0 +1151987,1151987,1151988,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22771.0,2135.0 +1151988,1151988,1151989,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22768.0,2132.0 +1151989,1151989,1151990,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22748.0,2124.0 +1151990,1151990,1151991,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22767.0,2132.0 +1151991,1151991,1151992,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22770.0,2134.0 +1151992,1151992,1151993,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22747.0,2123.0 +1151993,1151993,1151994,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22767.0,2132.0 +1151994,1151994,1151995,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22767.0,2132.0 +1151995,1151995,1151996,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22769.0,2133.0 +1151996,1151996,1151997,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22747.0,2123.0 +1151997,1151997,1151998,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22771.0,2135.0 +1151998,1151998,1151999,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22771.0,2135.0 +1151999,1151999,1152000,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22768.0,2132.0 +1152000,1152000,1152001,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22770.0,2134.0 +1152001,1152001,1152002,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22767.0,2132.0 +1152002,1152002,1152003,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22747.0,2123.0 +1152003,1152003,1152004,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22767.0,2132.0 +1152004,1152004,1152005,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22768.0,2132.0 +1152005,1152005,1152006,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22770.0,2134.0 +1152006,1152006,1152007,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22767.0,2132.0 +1152007,1152007,1152008,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22770.0,2134.0 +1152008,1152008,1152009,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22767.0,2132.0 +1152009,1152009,1152010,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22768.0,2132.0 +1152010,1152010,1152011,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22767.0,2132.0 +1152011,1152011,1152012,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152012,1152012,1152013,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152013,1152013,1152014,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152014,1152014,1152015,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22747.0,2123.0 +1152015,1152015,1152016,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152016,1152016,1152017,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22748.0,2124.0 +1152017,1152017,1152018,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152018,1152018,1152019,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152019,1152019,1152020,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152020,1152020,1152021,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152021,1152021,1152022,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152022,1152022,1152023,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22747.0,2123.0 +1152023,1152023,1152024,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152024,1152024,1152025,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152025,1152025,1152026,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152026,1152026,1152027,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152027,1152027,1152028,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152028,1152028,1152029,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152029,1152029,1152030,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152030,1152030,1152031,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152031,1152031,1152032,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152032,1152032,1152033,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152033,1152033,1152034,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152034,1152034,1152035,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22771.0,2135.0 +1152035,1152035,1152036,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152036,1152036,1152037,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152037,1152037,1152038,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152038,1152038,1152039,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152039,1152039,1152040,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152040,1152040,1152041,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152041,1152041,1152042,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152042,1152042,1152043,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22771.0,2135.0 +1152043,1152043,1152044,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152044,1152044,1152045,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22771.0,2135.0 +1152045,1152045,1152046,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152046,1152046,1152047,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22771.0,2135.0 +1152047,1152047,1152048,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152048,1152048,1152049,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22747.0,2123.0 +1152049,1152049,1152050,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152050,1152050,1152051,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152051,1152051,1152052,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152052,1152052,1152053,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152053,1152053,1152054,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152054,1152054,1152055,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22769.0,2133.0 +1152055,1152055,1152056,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22747.0,2123.0 +1152056,1152056,1152057,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152057,1152057,1152058,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152058,1152058,1152059,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152059,1152059,1152060,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152060,1152060,1152061,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152061,1152061,1152062,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152062,1152062,1152063,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22747.0,2123.0 +1152063,1152063,1152064,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152064,1152064,1152065,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152065,1152065,1152066,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22745.0,2121.0 +1152066,1152066,1152067,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152067,1152067,1152068,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22771.0,2135.0 +1152068,1152068,1152069,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22747.0,2123.0 +1152069,1152069,1152070,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152070,1152070,1152071,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22771.0,2135.0 +1152071,1152071,1152072,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22771.0,2135.0 +1152072,1152072,1152073,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152073,1152073,1152074,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152074,1152074,1152075,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22773.0,2136.0 +1152075,1152075,1152076,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152076,1152076,1152077,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152077,1152077,1152078,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152078,1152078,1152079,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152079,1152079,1152080,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152080,1152080,1152081,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22745.0,2121.0 +1152081,1152081,1152082,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152082,1152082,1152083,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152083,1152083,1152084,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22771.0,2135.0 +1152084,1152084,1152085,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152085,1152085,1152086,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152086,1152086,1152087,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152087,1152087,1152088,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152088,1152088,1152089,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22769.0,2133.0 +1152089,1152089,1152090,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22771.0,2135.0 +1152090,1152090,1152091,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152091,1152091,1152092,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152092,1152092,1152093,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152093,1152093,1152094,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152094,1152094,1152095,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152095,1152095,1152096,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152096,1152096,1152097,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152097,1152097,1152098,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152098,1152098,1152099,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152099,1152099,1152100,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152100,1152100,1152101,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152101,1152101,1152102,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152102,1152102,1152103,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152103,1152103,1152104,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152104,1152104,1152105,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152105,1152105,1152106,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22769.0,2133.0 +1152106,1152106,1152107,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152107,1152107,1152108,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22771.0,2135.0 +1152108,1152108,1152109,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152109,1152109,1152110,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152110,1152110,1152111,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22768.0,2132.0 +1152111,1152111,1152112,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22767.0,2132.0 +1152112,1152112,1152113,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22745.0,2121.0 +1152113,1152113,1152114,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22770.0,2134.0 +1152114,1152114,1152115,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22747.0,2123.0 +1152115,1152115,1152116,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22747.0,2123.0 +1152116,1152116,1152117,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152117,1152117,1152118,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152118,1152118,1152119,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152119,1152119,1152120,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152120,1152120,1152121,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152121,1152121,1152122,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152122,1152122,1152123,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152123,1152123,1152124,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152124,1152124,1152125,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152125,1152125,1152126,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22770.0,2134.0 +1152126,1152126,1152127,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152127,1152127,1152128,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22770.0,2134.0 +1152128,1152128,1152129,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22771.0,2135.0 +1152129,1152129,1152130,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22747.0,2123.0 +1152130,1152130,1152131,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152131,1152131,1152132,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152132,1152132,1152133,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152133,1152133,1152134,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152134,1152134,1152135,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22771.0,2135.0 +1152135,1152135,1152136,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152136,1152136,1152137,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22769.0,2133.0 +1152137,1152137,1152138,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22771.0,2135.0 +1152138,1152138,1152139,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152139,1152139,1152140,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152140,1152140,1152141,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22771.0,2135.0 +1152141,1152141,1152142,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152142,1152142,1152143,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22770.0,2134.0 +1152143,1152143,1152144,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22771.0,2135.0 +1152144,1152144,1152145,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152145,1152145,1152146,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22771.0,2135.0 +1152146,1152146,1152147,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152147,1152147,1152148,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152148,1152148,1152149,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152149,1152149,1152150,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22747.0,2123.0 +1152150,1152150,1152151,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22771.0,2135.0 +1152151,1152151,1152152,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152152,1152152,1152153,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152153,1152153,1152154,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22747.0,2123.0 +1152154,1152154,1152155,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152155,1152155,1152156,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22767.0,2132.0 +1152156,1152156,1152157,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22771.0,2135.0 +1152157,1152157,1152158,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152158,1152158,1152159,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22768.0,2132.0 +1152159,1152159,1152160,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22771.0,2135.0 +1152160,1152160,1152161,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152161,1152161,1152162,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22771.0,2135.0 +1152162,1152162,1152163,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152163,1152163,1152164,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152164,1152164,1152165,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22768.0,2132.0 +1152165,1152165,1152166,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22747.0,2123.0 +1152166,1152166,1152167,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152167,1152167,1152168,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152168,1152168,1152169,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152169,1152169,1152170,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22771.0,2135.0 +1152170,1152170,1152171,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22768.0,2132.0 +1152171,1152171,1152172,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22768.0,2132.0 +1152172,1152172,1152173,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22771.0,2135.0 +1152173,1152173,1152174,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22768.0,2132.0 +1152174,1152174,1152175,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22768.0,2132.0 +1152175,1152175,1152176,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152176,1152176,1152177,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152177,1152177,1152178,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22771.0,2135.0 +1152178,1152178,1152179,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152179,1152179,1152180,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22769.0,2133.0 +1152180,1152180,1152181,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22768.0,2132.0 +1152181,1152181,1152182,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152182,1152182,1152183,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22771.0,2135.0 +1152183,1152183,1152184,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152184,1152184,1152185,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152185,1152185,1152186,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152186,1152186,1152187,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22768.0,2132.0 +1152187,1152187,1152188,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22768.0,2132.0 +1152188,1152188,1152189,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152189,1152189,1152190,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152190,1152190,1152191,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22745.0,2121.0 +1152191,1152191,1152192,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152192,1152192,1152193,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22769.0,2133.0 +1152193,1152193,1152194,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22770.0,2134.0 +1152194,1152194,1152195,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152195,1152195,1152196,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152196,1152196,1152197,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22767.0,2132.0 +1152197,1152197,1152198,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152198,1152198,1152199,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152199,1152199,1152200,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152200,1152200,1152201,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22770.0,2134.0 +1152201,1152201,1152202,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152202,1152202,1152203,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22770.0,2134.0 +1152203,1152203,1152204,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22770.0,2134.0 +1152204,1152204,1152205,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22771.0,2135.0 +1152205,1152205,1152206,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152206,1152206,1152207,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152207,1152207,1152208,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152208,1152208,1152209,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152209,1152209,1152210,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22768.0,2132.0 +1152210,1152210,1152211,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22768.0,2132.0 +1152211,1152211,1152212,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22747.0,2123.0 +1152212,1152212,1152213,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22769.0,2133.0 +1152213,1152213,1152214,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22747.0,2123.0 +1152214,1152214,1152215,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152215,1152215,1152216,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152216,1152216,1152217,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22770.0,2134.0 +1152217,1152217,1152218,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22768.0,2132.0 +1152218,1152218,1152219,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22771.0,2135.0 +1152219,1152219,1152220,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152220,1152220,1152221,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22768.0,2132.0 +1152221,1152221,1152222,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22768.0,2132.0 +1152222,1152222,1152223,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22768.0,2132.0 +1152223,1152223,1152224,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22771.0,2135.0 +1152224,1152224,1152225,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22768.0,2132.0 +1152225,1152225,1152226,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22768.0,2132.0 +1152226,1152226,1152227,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22769.0,2133.0 +1152227,1152227,1152228,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152228,1152228,1152229,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22748.0,2124.0 +1152229,1152229,1152230,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22747.0,2123.0 +1152230,1152230,1152231,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22768.0,2132.0 +1152231,1152231,1152232,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22773.0,2136.0 +1152232,1152232,1152233,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152233,1152233,1152234,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152234,1152234,1152235,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152235,1152235,1152236,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22771.0,2135.0 +1152236,1152236,1152237,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22770.0,2134.0 +1152237,1152237,1152238,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22771.0,2135.0 +1152238,1152238,1152239,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152239,1152239,1152240,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22770.0,2134.0 +1152240,1152240,1152241,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22770.0,2134.0 +1152241,1152241,1152242,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22771.0,2135.0 +1152242,1152242,1152243,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152243,1152243,1152244,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152244,1152244,1152245,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22769.0,2133.0 +1152245,1152245,1152246,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22747.0,2123.0 +1152246,1152246,1152247,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22770.0,2134.0 +1152247,1152247,1152248,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22771.0,2135.0 +1152248,1152248,1152249,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152249,1152249,1152250,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22770.0,2134.0 +1152250,1152250,1152251,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152251,1152251,1152252,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152252,1152252,1152253,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22747.0,2123.0 +1152253,1152253,1152254,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152254,1152254,1152255,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152255,1152255,1152256,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22773.0,2136.0 +1152256,1152256,1152257,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22768.0,2132.0 +1152257,1152257,1152258,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152258,1152258,1152259,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22747.0,2123.0 +1152259,1152259,1152260,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152260,1152260,1152261,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22771.0,2135.0 +1152261,1152261,1152262,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152262,1152262,1152263,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152263,1152263,1152264,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152264,1152264,1152265,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22767.0,2132.0 +1152265,1152265,1152266,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22771.0,2135.0 +1152266,1152266,1152267,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22773.0,2136.0 +1152267,1152267,1152268,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22767.0,2132.0 +1152268,1152268,1152269,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22767.0,2132.0 +1152269,1152269,1152270,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22770.0,2134.0 +1152270,1152270,1152271,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22767.0,2132.0 +1152271,1152271,1152272,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22769.0,2133.0 +1152272,1152272,1152273,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22768.0,2132.0 +1152273,1152273,1152274,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22768.0,2132.0 +1152274,1152274,1152275,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22768.0,2132.0 +1152275,1152275,1152276,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22768.0,2132.0 +1152276,1152276,1152277,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22747.0,2123.0 +1152277,1152277,1152278,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22767.0,2132.0 +1152278,1152278,1152279,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22767.0,2132.0 +1152279,1152279,1152280,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22771.0,2135.0 +1152280,1152280,1152281,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22770.0,2134.0 +1152281,1152281,1152282,1,26.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22771.0,2135.0 +1152282,1152282,1152283,1,36.0,1.0,1.0,0.0,1,5200.0,1054606,6.0,22768.0,2132.0 +1152283,1152283,1152284,1,36.0,1.0,1.0,0.0,1,5200.0,1054606,6.0,22768.0,2132.0 +1152284,1152284,1152285,1,26.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22770.0,2134.0 +1152285,1152285,1152286,1,36.0,1.0,1.0,0.0,1,5200.0,1054606,6.0,22767.0,2132.0 +1152286,1152286,1152287,1,36.0,1.0,1.0,0.0,1,5200.0,1054606,6.0,22771.0,2135.0 +1152287,1152287,1152288,1,36.0,1.0,1.0,0.0,1,5200.0,1054606,6.0,22747.0,2123.0 +1152288,1152288,1152289,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22768.0,2132.0 +1152289,1152289,1152290,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22767.0,2132.0 +1152290,1152290,1152291,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22770.0,2134.0 +1152291,1152291,1152292,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22769.0,2133.0 +1152292,1152292,1152293,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22767.0,2132.0 +1152293,1152293,1152294,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22768.0,2132.0 +1152294,1152294,1152295,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22767.0,2132.0 +1152295,1152295,1152296,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22767.0,2132.0 +1152296,1152296,1152297,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22769.0,2133.0 +1152297,1152297,1152298,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22767.0,2132.0 +1152298,1152298,1152299,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22769.0,2133.0 +1152299,1152299,1152300,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22771.0,2135.0 +1152300,1152300,1152301,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22747.0,2123.0 +1152301,1152301,1152302,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22771.0,2135.0 +1152302,1152302,1152303,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22771.0,2135.0 +1152303,1152303,1152304,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22770.0,2134.0 +1152304,1152304,1152305,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22768.0,2132.0 +1152305,1152305,1152306,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22770.0,2134.0 +1152306,1152306,1152307,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22768.0,2132.0 +1152307,1152307,1152308,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22767.0,2132.0 +1152308,1152308,1152309,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22771.0,2135.0 +1152309,1152309,1152310,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22767.0,2132.0 +1152310,1152310,1152311,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22768.0,2132.0 +1152311,1152311,1152312,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22769.0,2133.0 +1152312,1152312,1152313,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22747.0,2123.0 +1152313,1152313,1152314,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22770.0,2134.0 +1152314,1152314,1152315,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22770.0,2134.0 +1152315,1152315,1152316,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22767.0,2132.0 +1152316,1152316,1152317,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22771.0,2135.0 +1152317,1152317,1152318,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22767.0,2132.0 +1152318,1152318,1152319,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22768.0,2132.0 +1152319,1152319,1152320,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22747.0,2123.0 +1152320,1152320,1152321,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22771.0,2135.0 +1152321,1152321,1152322,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22771.0,2135.0 +1152322,1152322,1152323,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22771.0,2135.0 +1152323,1152323,1152324,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22767.0,2132.0 +1152324,1152324,1152325,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22770.0,2134.0 +1152325,1152325,1152326,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22770.0,2134.0 +1152326,1152326,1152327,1,24.0,3.0,0.0,0.0,1,2300.0,1054606,6.0,22768.0,2132.0 +1152327,1152327,1152328,1,24.0,3.0,0.0,0.0,1,2300.0,1054606,6.0,22767.0,2132.0 +1152328,1152328,1152329,1,24.0,3.0,0.0,0.0,1,2300.0,1054606,6.0,22768.0,2132.0 +1152329,1152329,1152330,1,24.0,3.0,0.0,0.0,1,2300.0,1054606,6.0,22767.0,2132.0 +1152330,1152330,1152331,1,24.0,3.0,0.0,0.0,1,2300.0,1054606,6.0,22767.0,2132.0 +1152331,1152331,1152332,1,24.0,3.0,0.0,0.0,1,2300.0,1054606,6.0,22771.0,2135.0 +1152332,1152332,1152333,1,24.0,3.0,0.0,0.0,1,2300.0,1054606,6.0,22770.0,2134.0 +1152333,1152333,1152334,1,24.0,3.0,0.0,0.0,1,2300.0,1054606,6.0,22771.0,2135.0 +1152334,1152334,1152335,1,24.0,3.0,0.0,0.0,1,2300.0,1054606,6.0,22767.0,2132.0 +1152335,1152335,1152336,1,24.0,3.0,0.0,0.0,1,2300.0,1054606,6.0,22747.0,2123.0 +1152336,1152336,1152337,1,24.0,3.0,0.0,0.0,1,2300.0,1054606,6.0,22767.0,2132.0 +1152337,1152337,1152338,1,24.0,4.0,1.0,0.0,1,32000.0,1031452,6.0,22747.0,2123.0 +1152338,1152338,1152339,1,23.0,4.0,0.0,0.0,1,800.0,1054606,4.0,22767.0,2132.0 +1152339,1152339,1152340,1,23.0,4.0,0.0,0.0,1,800.0,1054606,4.0,22768.0,2132.0 +1152340,1152340,1152341,1,22.0,4.0,0.0,0.0,1,8500.0,1080470,4.0,22769.0,2133.0 +1152341,1152341,1152342,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152342,1152342,1152343,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152343,1152343,1152344,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22770.0,2134.0 +1152344,1152344,1152345,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22768.0,2132.0 +1152345,1152345,1152346,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22767.0,2132.0 +1152346,1152346,1152347,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22747.0,2123.0 +1152347,1152347,1152348,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22768.0,2132.0 +1152348,1152348,1152349,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22767.0,2132.0 +1152349,1152349,1152350,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22770.0,2134.0 +1152350,1152350,1152351,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22770.0,2134.0 +1152351,1152351,1152352,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22770.0,2134.0 +1152352,1152352,1152353,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22769.0,2133.0 +1152353,1152353,1152354,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22767.0,2132.0 +1152354,1152354,1152355,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22768.0,2132.0 +1152355,1152355,1152356,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22747.0,2123.0 +1152356,1152356,1152357,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22768.0,2132.0 +1152357,1152357,1152358,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22767.0,2132.0 +1152358,1152358,1152359,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152359,1152359,1152360,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22747.0,2123.0 +1152360,1152360,1152361,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152361,1152361,1152362,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22770.0,2134.0 +1152362,1152362,1152363,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22770.0,2134.0 +1152363,1152363,1152364,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22747.0,2123.0 +1152364,1152364,1152365,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22770.0,2134.0 +1152365,1152365,1152366,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22773.0,2136.0 +1152366,1152366,1152367,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152367,1152367,1152368,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152368,1152368,1152369,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22747.0,2123.0 +1152369,1152369,1152370,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152370,1152370,1152371,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22768.0,2132.0 +1152371,1152371,1152372,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22768.0,2132.0 +1152372,1152372,1152373,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22771.0,2135.0 +1152373,1152373,1152374,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152374,1152374,1152375,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22767.0,2132.0 +1152375,1152375,1152376,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152376,1152376,1152377,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22769.0,2133.0 +1152377,1152377,1152378,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22745.0,2121.0 +1152378,1152378,1152379,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22769.0,2133.0 +1152379,1152379,1152380,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22771.0,2135.0 +1152380,1152380,1152381,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152381,1152381,1152382,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22771.0,2135.0 +1152382,1152382,1152383,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22770.0,2134.0 +1152383,1152383,1152384,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22770.0,2134.0 +1152384,1152384,1152385,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22768.0,2132.0 +1152385,1152385,1152386,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22747.0,2123.0 +1152386,1152386,1152387,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22770.0,2134.0 +1152387,1152387,1152388,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22767.0,2132.0 +1152388,1152388,1152389,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152389,1152389,1152390,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22748.0,2124.0 +1152390,1152390,1152391,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22768.0,2132.0 +1152391,1152391,1152392,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152392,1152392,1152393,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22767.0,2132.0 +1152393,1152393,1152394,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22769.0,2133.0 +1152394,1152394,1152395,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22747.0,2123.0 +1152395,1152395,1152396,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22771.0,2135.0 +1152396,1152396,1152397,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22748.0,2124.0 +1152397,1152397,1152398,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22768.0,2132.0 +1152398,1152398,1152399,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22771.0,2135.0 +1152399,1152399,1152400,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22747.0,2123.0 +1152400,1152400,1152401,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22748.0,2124.0 +1152401,1152401,1152402,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22768.0,2132.0 +1152402,1152402,1152403,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152403,1152403,1152404,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152404,1152404,1152405,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22771.0,2135.0 +1152405,1152405,1152406,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22767.0,2132.0 +1152406,1152406,1152407,1,24.0,2.0,0.0,0.0,1,7700.0,1010145,4.0,22767.0,2132.0 +1152407,1152407,1152408,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22768.0,2132.0 +1152408,1152408,1152409,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152409,1152409,1152410,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22771.0,2135.0 +1152410,1152410,1152411,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152411,1152411,1152412,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22768.0,2132.0 +1152412,1152412,1152413,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22770.0,2134.0 +1152413,1152413,1152414,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152414,1152414,1152415,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152415,1152415,1152416,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22770.0,2134.0 +1152416,1152416,1152417,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22748.0,2124.0 +1152417,1152417,1152418,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22770.0,2134.0 +1152418,1152418,1152419,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152419,1152419,1152420,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22771.0,2135.0 +1152420,1152420,1152421,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152421,1152421,1152422,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152422,1152422,1152423,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22768.0,2132.0 +1152423,1152423,1152424,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152424,1152424,1152425,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22768.0,2132.0 +1152425,1152425,1152426,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152426,1152426,1152427,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22768.0,2132.0 +1152427,1152427,1152428,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152428,1152428,1152429,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22771.0,2135.0 +1152429,1152429,1152430,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22770.0,2134.0 +1152430,1152430,1152431,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152431,1152431,1152432,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152432,1152432,1152433,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22771.0,2135.0 +1152433,1152433,1152434,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152434,1152434,1152435,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22768.0,2132.0 +1152435,1152435,1152436,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152436,1152436,1152437,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22770.0,2134.0 +1152437,1152437,1152438,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22768.0,2132.0 +1152438,1152438,1152439,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152439,1152439,1152440,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22747.0,2123.0 +1152440,1152440,1152441,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152441,1152441,1152442,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22771.0,2135.0 +1152442,1152442,1152443,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22747.0,2123.0 +1152443,1152443,1152444,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152444,1152444,1152445,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152445,1152445,1152446,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22769.0,2133.0 +1152446,1152446,1152447,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152447,1152447,1152448,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152448,1152448,1152449,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22770.0,2134.0 +1152449,1152449,1152450,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22771.0,2135.0 +1152450,1152450,1152451,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152451,1152451,1152452,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22768.0,2132.0 +1152452,1152452,1152453,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22745.0,2121.0 +1152453,1152453,1152454,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152454,1152454,1152455,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22771.0,2135.0 +1152455,1152455,1152456,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22772.0,2136.0 +1152456,1152456,1152457,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22771.0,2135.0 +1152457,1152457,1152458,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22768.0,2132.0 +1152458,1152458,1152459,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22768.0,2132.0 +1152459,1152459,1152460,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22771.0,2135.0 +1152460,1152460,1152461,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22770.0,2134.0 +1152461,1152461,1152462,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22768.0,2132.0 +1152462,1152462,1152463,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22747.0,2123.0 +1152463,1152463,1152464,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22767.0,2132.0 +1152464,1152464,1152465,1,23.0,3.0,0.0,0.0,1,31200.0,1080470,4.0,22768.0,2132.0 +1152465,1152465,1152466,1,23.0,3.0,0.0,0.0,1,31200.0,1080470,4.0,22767.0,2132.0 +1152466,1152466,1152467,1,23.0,3.0,0.0,0.0,1,31200.0,1080470,4.0,22768.0,2132.0 +1152467,1152467,1152468,1,23.0,3.0,0.0,0.0,1,31200.0,1080470,4.0,22770.0,2134.0 +1152468,1152468,1152469,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22767.0,2132.0 +1152469,1152469,1152470,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22748.0,2124.0 +1152470,1152470,1152471,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22767.0,2132.0 +1152471,1152471,1152472,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22768.0,2132.0 +1152472,1152472,1152473,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22768.0,2132.0 +1152473,1152473,1152474,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22768.0,2132.0 +1152474,1152474,1152475,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22773.0,2136.0 +1152475,1152475,1152476,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22767.0,2132.0 +1152476,1152476,1152477,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22768.0,2132.0 +1152477,1152477,1152478,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22769.0,2133.0 +1152478,1152478,1152479,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22767.0,2132.0 +1152479,1152479,1152480,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22767.0,2132.0 +1152480,1152480,1152481,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22767.0,2132.0 +1152481,1152481,1152482,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22767.0,2132.0 +1152482,1152482,1152483,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22768.0,2132.0 +1152483,1152483,1152484,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22770.0,2134.0 +1152484,1152484,1152485,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22767.0,2132.0 +1152485,1152485,1152486,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22769.0,2133.0 +1152486,1152486,1152487,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22767.0,2132.0 +1152487,1152487,1152488,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22771.0,2135.0 +1152488,1152488,1152489,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22768.0,2132.0 +1152489,1152489,1152490,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22767.0,2132.0 +1152490,1152490,1152491,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22747.0,2123.0 +1152491,1152491,1152492,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22770.0,2134.0 +1152492,1152492,1152493,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22769.0,2133.0 +1152493,1152493,1152494,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22768.0,2132.0 +1152494,1152494,1152495,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22770.0,2134.0 +1152495,1152495,1152496,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22747.0,2123.0 +1152496,1152496,1152497,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22767.0,2132.0 +1152497,1152497,1152498,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22767.0,2132.0 +1152498,1152498,1152499,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22768.0,2132.0 +1152499,1152499,1152500,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22767.0,2132.0 +1152500,1152500,1152501,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22771.0,2135.0 +1152501,1152501,1152502,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22768.0,2132.0 +1152502,1152502,1152503,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22767.0,2132.0 +1152503,1152503,1152504,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22771.0,2135.0 +1152504,1152504,1152505,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22768.0,2132.0 +1152505,1152505,1152506,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22768.0,2132.0 +1152506,1152506,1152507,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22770.0,2134.0 +1152507,1152507,1152508,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22767.0,2132.0 +1152508,1152508,1152509,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22771.0,2135.0 +1152509,1152509,1152510,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22768.0,2132.0 +1152510,1152510,1152511,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22770.0,2134.0 +1152511,1152511,1152512,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22767.0,2132.0 +1152512,1152512,1152513,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22768.0,2132.0 +1152513,1152513,1152514,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22767.0,2132.0 +1152514,1152514,1152515,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22767.0,2132.0 +1152515,1152515,1152516,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22770.0,2134.0 +1152516,1152516,1152517,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22767.0,2132.0 +1152517,1152517,1152518,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22771.0,2135.0 +1152518,1152518,1152519,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22770.0,2134.0 +1152519,1152519,1152520,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22767.0,2132.0 +1152520,1152520,1152521,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22768.0,2132.0 +1152521,1152521,1152522,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22745.0,2121.0 +1152522,1152522,1152523,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22767.0,2132.0 +1152523,1152523,1152524,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22770.0,2134.0 +1152524,1152524,1152525,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22748.0,2124.0 +1152525,1152525,1152526,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22767.0,2132.0 +1152526,1152526,1152527,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22770.0,2134.0 +1152527,1152527,1152528,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22747.0,2123.0 +1152528,1152528,1152529,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22771.0,2135.0 +1152529,1152529,1152530,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22767.0,2132.0 +1152530,1152530,1152531,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22747.0,2123.0 +1152531,1152531,1152532,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22771.0,2135.0 +1152532,1152532,1152533,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22767.0,2132.0 +1152533,1152533,1152534,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22767.0,2132.0 +1152534,1152534,1152535,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22768.0,2132.0 +1152535,1152535,1152536,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22770.0,2134.0 +1152536,1152536,1152537,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22767.0,2132.0 +1152537,1152537,1152538,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22767.0,2132.0 +1152538,1152538,1152539,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22770.0,2134.0 +1152539,1152539,1152540,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152540,1152540,1152541,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22773.0,2136.0 +1152541,1152541,1152542,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22770.0,2134.0 +1152542,1152542,1152543,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22767.0,2132.0 +1152543,1152543,1152544,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22767.0,2132.0 +1152544,1152544,1152545,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152545,1152545,1152546,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22767.0,2132.0 +1152546,1152546,1152547,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22767.0,2132.0 +1152547,1152547,1152548,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152548,1152548,1152549,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152549,1152549,1152550,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22770.0,2134.0 +1152550,1152550,1152551,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22771.0,2135.0 +1152551,1152551,1152552,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22747.0,2123.0 +1152552,1152552,1152553,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152553,1152553,1152554,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152554,1152554,1152555,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22748.0,2124.0 +1152555,1152555,1152556,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22747.0,2123.0 +1152556,1152556,1152557,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22771.0,2135.0 +1152557,1152557,1152558,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152558,1152558,1152559,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152559,1152559,1152560,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152560,1152560,1152561,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22767.0,2132.0 +1152561,1152561,1152562,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152562,1152562,1152563,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152563,1152563,1152564,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22767.0,2132.0 +1152564,1152564,1152565,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22747.0,2123.0 +1152565,1152565,1152566,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22745.0,2121.0 +1152566,1152566,1152567,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22770.0,2134.0 +1152567,1152567,1152568,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22770.0,2134.0 +1152568,1152568,1152569,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22770.0,2134.0 +1152569,1152569,1152570,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22747.0,2123.0 +1152570,1152570,1152571,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22771.0,2135.0 +1152571,1152571,1152572,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152572,1152572,1152573,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152573,1152573,1152574,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22767.0,2132.0 +1152574,1152574,1152575,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22772.0,2136.0 +1152575,1152575,1152576,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22768.0,2132.0 +1152576,1152576,1152577,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22771.0,2135.0 +1152577,1152577,1152578,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22767.0,2132.0 +1152578,1152578,1152579,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22767.0,2132.0 +1152579,1152579,1152580,1,24.0,1.0,1.0,0.0,1,54000.0,1073449,6.0,22767.0,2132.0 +1152580,1152580,1152581,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22771.0,2135.0 +1152581,1152581,1152582,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22767.0,2132.0 +1152582,1152582,1152583,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22768.0,2132.0 +1152583,1152583,1152584,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22770.0,2134.0 +1152584,1152584,1152585,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22747.0,2123.0 +1152585,1152585,1152586,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22768.0,2132.0 +1152586,1152586,1152587,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22769.0,2133.0 +1152587,1152587,1152588,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22768.0,2132.0 +1152588,1152588,1152589,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22768.0,2132.0 +1152589,1152589,1152590,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22770.0,2134.0 +1152590,1152590,1152591,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22767.0,2132.0 +1152591,1152591,1152592,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22767.0,2132.0 +1152592,1152592,1152593,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22767.0,2132.0 +1152593,1152593,1152594,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22768.0,2132.0 +1152594,1152594,1152595,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22768.0,2132.0 +1152595,1152595,1152596,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22769.0,2133.0 +1152596,1152596,1152597,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22768.0,2132.0 +1152597,1152597,1152598,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22747.0,2123.0 +1152598,1152598,1152599,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22767.0,2132.0 +1152599,1152599,1152600,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22770.0,2134.0 +1152600,1152600,1152601,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22767.0,2132.0 +1152601,1152601,1152602,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22768.0,2132.0 +1152602,1152602,1152603,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22745.0,2121.0 +1152603,1152603,1152604,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22768.0,2132.0 +1152604,1152604,1152605,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22747.0,2123.0 +1152605,1152605,1152606,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22767.0,2132.0 +1152606,1152606,1152607,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22767.0,2132.0 +1152607,1152607,1152608,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22771.0,2135.0 +1152608,1152608,1152609,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22767.0,2132.0 +1152609,1152609,1152610,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22771.0,2135.0 +1152610,1152610,1152611,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22771.0,2135.0 +1152611,1152611,1152612,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22771.0,2135.0 +1152612,1152612,1152613,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22747.0,2123.0 +1152613,1152613,1152614,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22767.0,2132.0 +1152614,1152614,1152615,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22767.0,2132.0 +1152615,1152615,1152616,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22747.0,2123.0 +1152616,1152616,1152617,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22767.0,2132.0 +1152617,1152617,1152618,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22768.0,2132.0 +1152618,1152618,1152619,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22771.0,2135.0 +1152619,1152619,1152620,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22767.0,2132.0 +1152620,1152620,1152621,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22768.0,2132.0 +1152621,1152621,1152622,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22767.0,2132.0 +1152622,1152622,1152623,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22768.0,2132.0 +1152623,1152623,1152624,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22767.0,2132.0 +1152624,1152624,1152625,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22767.0,2132.0 +1152625,1152625,1152626,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22770.0,2134.0 +1152626,1152626,1152627,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22767.0,2132.0 +1152627,1152627,1152628,1,21.0,1.0,1.0,0.0,1,35000.0,1054606,4.0,22773.0,2136.0 +1152628,1152628,1152629,1,23.0,1.0,1.0,0.0,1,39200.0,1073449,4.0,22770.0,2134.0 +1152629,1152629,1152630,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22747.0,2123.0 +1152630,1152630,1152631,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22767.0,2132.0 +1152631,1152631,1152632,1,21.0,1.0,1.0,0.0,1,5800.0,1080470,6.0,22771.0,2135.0 +1152632,1152632,1152633,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22767.0,2132.0 +1152633,1152633,1152634,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22770.0,2134.0 +1152634,1152634,1152635,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22767.0,2132.0 +1152635,1152635,1152636,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22771.0,2135.0 +1152636,1152636,1152637,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22747.0,2123.0 +1152637,1152637,1152638,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22768.0,2132.0 +1152638,1152638,1152639,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22770.0,2134.0 +1152639,1152639,1152640,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22767.0,2132.0 +1152640,1152640,1152641,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152641,1152641,1152642,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152642,1152642,1152643,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22770.0,2134.0 +1152643,1152643,1152644,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22770.0,2134.0 +1152644,1152644,1152645,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22770.0,2134.0 +1152645,1152645,1152646,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22770.0,2134.0 +1152646,1152646,1152647,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22770.0,2134.0 +1152647,1152647,1152648,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22767.0,2132.0 +1152648,1152648,1152649,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152649,1152649,1152650,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22768.0,2132.0 +1152650,1152650,1152651,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152651,1152651,1152652,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152652,1152652,1152653,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22771.0,2135.0 +1152653,1152653,1152654,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22771.0,2135.0 +1152654,1152654,1152655,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22768.0,2132.0 +1152655,1152655,1152656,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22767.0,2132.0 +1152656,1152656,1152657,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152657,1152657,1152658,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22770.0,2134.0 +1152658,1152658,1152659,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22770.0,2134.0 +1152659,1152659,1152660,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22768.0,2132.0 +1152660,1152660,1152661,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22773.0,2136.0 +1152661,1152661,1152662,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22748.0,2124.0 +1152662,1152662,1152663,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22767.0,2132.0 +1152663,1152663,1152664,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22768.0,2132.0 +1152664,1152664,1152665,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22771.0,2135.0 +1152665,1152665,1152666,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22768.0,2132.0 +1152666,1152666,1152667,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22767.0,2132.0 +1152667,1152667,1152668,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22747.0,2123.0 +1152668,1152668,1152669,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22770.0,2134.0 +1152669,1152669,1152670,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22767.0,2132.0 +1152670,1152670,1152671,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22747.0,2123.0 +1152671,1152671,1152672,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22770.0,2134.0 +1152672,1152672,1152673,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22772.0,2136.0 +1152673,1152673,1152674,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22767.0,2132.0 +1152674,1152674,1152675,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22767.0,2132.0 +1152675,1152675,1152676,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152676,1152676,1152677,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22767.0,2132.0 +1152677,1152677,1152678,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152678,1152678,1152679,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22769.0,2133.0 +1152679,1152679,1152680,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152680,1152680,1152681,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152681,1152681,1152682,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22767.0,2132.0 +1152682,1152682,1152683,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22769.0,2133.0 +1152683,1152683,1152684,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22770.0,2134.0 +1152684,1152684,1152685,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22767.0,2132.0 +1152685,1152685,1152686,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22767.0,2132.0 +1152686,1152686,1152687,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22767.0,2132.0 +1152687,1152687,1152688,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22768.0,2132.0 +1152688,1152688,1152689,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22767.0,2132.0 +1152689,1152689,1152690,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22767.0,2132.0 +1152690,1152690,1152691,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22771.0,2135.0 +1152691,1152691,1152692,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22768.0,2132.0 +1152692,1152692,1152693,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22767.0,2132.0 +1152693,1152693,1152694,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22768.0,2132.0 +1152694,1152694,1152695,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22745.0,2121.0 +1152695,1152695,1152696,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22767.0,2132.0 +1152696,1152696,1152697,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22747.0,2123.0 +1152697,1152697,1152698,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22768.0,2132.0 +1152698,1152698,1152699,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22767.0,2132.0 +1152699,1152699,1152700,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22768.0,2132.0 +1152700,1152700,1152701,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22769.0,2133.0 +1152701,1152701,1152702,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22769.0,2133.0 +1152702,1152702,1152703,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22747.0,2123.0 +1152703,1152703,1152704,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22770.0,2134.0 +1152704,1152704,1152705,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22773.0,2136.0 +1152705,1152705,1152706,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22768.0,2132.0 +1152706,1152706,1152707,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22771.0,2135.0 +1152707,1152707,1152708,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22769.0,2133.0 +1152708,1152708,1152709,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22768.0,2132.0 +1152709,1152709,1152710,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22768.0,2132.0 +1152710,1152710,1152711,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22768.0,2132.0 +1152711,1152711,1152712,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22770.0,2134.0 +1152712,1152712,1152713,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22768.0,2132.0 +1152713,1152713,1152714,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22767.0,2132.0 +1152714,1152714,1152715,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22767.0,2132.0 +1152715,1152715,1152716,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22767.0,2132.0 +1152716,1152716,1152717,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22771.0,2135.0 +1152717,1152717,1152718,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22768.0,2132.0 +1152718,1152718,1152719,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22768.0,2132.0 +1152719,1152719,1152720,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22747.0,2123.0 +1152720,1152720,1152721,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152721,1152721,1152722,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22770.0,2134.0 +1152722,1152722,1152723,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22767.0,2132.0 +1152723,1152723,1152724,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22747.0,2123.0 +1152724,1152724,1152725,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22770.0,2134.0 +1152725,1152725,1152726,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152726,1152726,1152727,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22747.0,2123.0 +1152727,1152727,1152728,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22747.0,2123.0 +1152728,1152728,1152729,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22769.0,2133.0 +1152729,1152729,1152730,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22767.0,2132.0 +1152730,1152730,1152731,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22769.0,2133.0 +1152731,1152731,1152732,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152732,1152732,1152733,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22770.0,2134.0 +1152733,1152733,1152734,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22767.0,2132.0 +1152734,1152734,1152735,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22767.0,2132.0 +1152735,1152735,1152736,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22771.0,2135.0 +1152736,1152736,1152737,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152737,1152737,1152738,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152738,1152738,1152739,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22768.0,2132.0 +1152739,1152739,1152740,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22747.0,2123.0 +1152740,1152740,1152741,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152741,1152741,1152742,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22747.0,2123.0 +1152742,1152742,1152743,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22767.0,2132.0 +1152743,1152743,1152744,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22747.0,2123.0 +1152744,1152744,1152745,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22767.0,2132.0 +1152745,1152745,1152746,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22768.0,2132.0 +1152746,1152746,1152747,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22767.0,2132.0 +1152747,1152747,1152748,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22771.0,2135.0 +1152748,1152748,1152749,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22771.0,2135.0 +1152749,1152749,1152750,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22768.0,2132.0 +1152750,1152750,1152751,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152751,1152751,1152752,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152752,1152752,1152753,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22768.0,2132.0 +1152753,1152753,1152754,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152754,1152754,1152755,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22770.0,2134.0 +1152755,1152755,1152756,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22768.0,2132.0 +1152756,1152756,1152757,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152757,1152757,1152758,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22747.0,2123.0 +1152758,1152758,1152759,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22769.0,2133.0 +1152759,1152759,1152760,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22769.0,2133.0 +1152760,1152760,1152761,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22768.0,2132.0 +1152761,1152761,1152762,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22745.0,2121.0 +1152762,1152762,1152763,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22768.0,2132.0 +1152763,1152763,1152764,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22767.0,2132.0 +1152764,1152764,1152765,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22768.0,2132.0 +1152765,1152765,1152766,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22768.0,2132.0 +1152766,1152766,1152767,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22747.0,2123.0 +1152767,1152767,1152768,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22773.0,2136.0 +1152768,1152768,1152769,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22767.0,2132.0 +1152769,1152769,1152770,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22770.0,2134.0 +1152770,1152770,1152771,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22769.0,2133.0 +1152771,1152771,1152772,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22771.0,2135.0 +1152772,1152772,1152773,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22747.0,2123.0 +1152773,1152773,1152774,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22767.0,2132.0 +1152774,1152774,1152775,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22767.0,2132.0 +1152775,1152775,1152776,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22771.0,2135.0 +1152776,1152776,1152777,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22770.0,2134.0 +1152777,1152777,1152778,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22767.0,2132.0 +1152778,1152778,1152779,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22767.0,2132.0 +1152779,1152779,1152780,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22768.0,2132.0 +1152780,1152780,1152781,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22748.0,2124.0 +1152781,1152781,1152782,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22747.0,2123.0 +1152782,1152782,1152783,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22747.0,2123.0 +1152783,1152783,1152784,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152784,1152784,1152785,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152785,1152785,1152786,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22771.0,2135.0 +1152786,1152786,1152787,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22767.0,2132.0 +1152787,1152787,1152788,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22748.0,2124.0 +1152788,1152788,1152789,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22770.0,2134.0 +1152789,1152789,1152790,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22747.0,2123.0 +1152790,1152790,1152791,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22768.0,2132.0 +1152791,1152791,1152792,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22773.0,2136.0 +1152792,1152792,1152793,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22767.0,2132.0 +1152793,1152793,1152794,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152794,1152794,1152795,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22767.0,2132.0 +1152795,1152795,1152796,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22771.0,2135.0 +1152796,1152796,1152797,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152797,1152797,1152798,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22769.0,2133.0 +1152798,1152798,1152799,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22767.0,2132.0 +1152799,1152799,1152800,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22768.0,2132.0 +1152800,1152800,1152801,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22770.0,2134.0 +1152801,1152801,1152802,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22747.0,2123.0 +1152802,1152802,1152803,1,24.0,1.0,1.0,0.0,1,10000.0,1073449,4.0,22767.0,2132.0 +1152803,1152803,1152804,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152804,1152804,1152805,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152805,1152805,1152806,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22770.0,2134.0 +1152806,1152806,1152807,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22747.0,2123.0 +1152807,1152807,1152808,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152808,1152808,1152809,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22747.0,2123.0 +1152809,1152809,1152810,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152810,1152810,1152811,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152811,1152811,1152812,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22771.0,2135.0 +1152812,1152812,1152813,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152813,1152813,1152814,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22770.0,2134.0 +1152814,1152814,1152815,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22769.0,2133.0 +1152815,1152815,1152816,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22770.0,2134.0 +1152816,1152816,1152817,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152817,1152817,1152818,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22747.0,2123.0 +1152818,1152818,1152819,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22773.0,2136.0 +1152819,1152819,1152820,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152820,1152820,1152821,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152821,1152821,1152822,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152822,1152822,1152823,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22771.0,2135.0 +1152823,1152823,1152824,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152824,1152824,1152825,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152825,1152825,1152826,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152826,1152826,1152827,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22771.0,2135.0 +1152827,1152827,1152828,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152828,1152828,1152829,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152829,1152829,1152830,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152830,1152830,1152831,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22770.0,2134.0 +1152831,1152831,1152832,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152832,1152832,1152833,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152833,1152833,1152834,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152834,1152834,1152835,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22771.0,2135.0 +1152835,1152835,1152836,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152836,1152836,1152837,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22747.0,2123.0 +1152837,1152837,1152838,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152838,1152838,1152839,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22771.0,2135.0 +1152839,1152839,1152840,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22747.0,2123.0 +1152840,1152840,1152841,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152841,1152841,1152842,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22747.0,2123.0 +1152842,1152842,1152843,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152843,1152843,1152844,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152844,1152844,1152845,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22771.0,2135.0 +1152845,1152845,1152846,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152846,1152846,1152847,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22769.0,2133.0 +1152847,1152847,1152848,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152848,1152848,1152849,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22747.0,2123.0 +1152849,1152849,1152850,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22747.0,2123.0 +1152850,1152850,1152851,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22768.0,2132.0 +1152851,1152851,1152852,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22767.0,2132.0 +1152852,1152852,1152853,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22747.0,2123.0 +1152853,1152853,1152854,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22769.0,2133.0 +1152854,1152854,1152855,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22747.0,2123.0 +1152855,1152855,1152856,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152856,1152856,1152857,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22768.0,2132.0 +1152857,1152857,1152858,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152858,1152858,1152859,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152859,1152859,1152860,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22747.0,2123.0 +1152860,1152860,1152861,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152861,1152861,1152862,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152862,1152862,1152863,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22747.0,2123.0 +1152863,1152863,1152864,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152864,1152864,1152865,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152865,1152865,1152866,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152866,1152866,1152867,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152867,1152867,1152868,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152868,1152868,1152869,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152869,1152869,1152870,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152870,1152870,1152871,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152871,1152871,1152872,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22768.0,2132.0 +1152872,1152872,1152873,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152873,1152873,1152874,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152874,1152874,1152875,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22768.0,2132.0 +1152875,1152875,1152876,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22768.0,2132.0 +1152876,1152876,1152877,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152877,1152877,1152878,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22768.0,2132.0 +1152878,1152878,1152879,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152879,1152879,1152880,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152880,1152880,1152881,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152881,1152881,1152882,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22770.0,2134.0 +1152882,1152882,1152883,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22770.0,2134.0 +1152883,1152883,1152884,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152884,1152884,1152885,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152885,1152885,1152886,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22747.0,2123.0 +1152886,1152886,1152887,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152887,1152887,1152888,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22773.0,2136.0 +1152888,1152888,1152889,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22770.0,2134.0 +1152889,1152889,1152890,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152890,1152890,1152891,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152891,1152891,1152892,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22768.0,2132.0 +1152892,1152892,1152893,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152893,1152893,1152894,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152894,1152894,1152895,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152895,1152895,1152896,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22770.0,2134.0 +1152896,1152896,1152897,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152897,1152897,1152898,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22747.0,2123.0 +1152898,1152898,1152899,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22770.0,2134.0 +1152899,1152899,1152900,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152900,1152900,1152901,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152901,1152901,1152902,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152902,1152902,1152903,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152903,1152903,1152904,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152904,1152904,1152905,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152905,1152905,1152906,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152906,1152906,1152907,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22770.0,2134.0 +1152907,1152907,1152908,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152908,1152908,1152909,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22745.0,2121.0 +1152909,1152909,1152910,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22771.0,2135.0 +1152910,1152910,1152911,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22768.0,2132.0 +1152911,1152911,1152912,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152912,1152912,1152913,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22768.0,2132.0 +1152913,1152913,1152914,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152914,1152914,1152915,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22747.0,2123.0 +1152915,1152915,1152916,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22770.0,2134.0 +1152916,1152916,1152917,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152917,1152917,1152918,1,22.0,1.0,1.0,0.0,1,5000.0,1080470,6.0,22767.0,2132.0 +1152918,1152918,1152919,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22770.0,2134.0 +1152919,1152919,1152920,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22768.0,2132.0 +1152920,1152920,1152921,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22771.0,2135.0 +1152921,1152921,1152922,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22771.0,2135.0 +1152922,1152922,1152923,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22767.0,2132.0 +1152923,1152923,1152924,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22768.0,2132.0 +1152924,1152924,1152925,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22771.0,2135.0 +1152925,1152925,1152926,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22771.0,2135.0 +1152926,1152926,1152927,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22767.0,2132.0 +1152927,1152927,1152928,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22772.0,2136.0 +1152928,1152928,1152929,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22770.0,2134.0 +1152929,1152929,1152930,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22771.0,2135.0 +1152930,1152930,1152931,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22747.0,2123.0 +1152931,1152931,1152932,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22767.0,2132.0 +1152932,1152932,1152933,1,23.0,1.0,0.0,0.0,1,12500.0,1010145,6.0,22767.0,2132.0 +1152933,1152933,1152934,1,23.0,1.0,0.0,0.0,1,12500.0,1010145,6.0,22767.0,2132.0 +1152934,1152934,1152935,1,23.0,1.0,0.0,0.0,1,12500.0,1010145,6.0,22767.0,2132.0 +1152935,1152935,1152936,1,23.0,1.0,0.0,0.0,1,12500.0,1010145,6.0,22768.0,2132.0 +1152936,1152936,1152937,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152937,1152937,1152938,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152938,1152938,1152939,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22745.0,2121.0 +1152939,1152939,1152940,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152940,1152940,1152941,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152941,1152941,1152942,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152942,1152942,1152943,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22771.0,2135.0 +1152943,1152943,1152944,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152944,1152944,1152945,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152945,1152945,1152946,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152946,1152946,1152947,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152947,1152947,1152948,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22770.0,2134.0 +1152948,1152948,1152949,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22747.0,2123.0 +1152949,1152949,1152950,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22771.0,2135.0 +1152950,1152950,1152951,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22747.0,2123.0 +1152951,1152951,1152952,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22771.0,2135.0 +1152952,1152952,1152953,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22768.0,2132.0 +1152953,1152953,1152954,1,24.0,1.0,0.0,0.0,1,4000.0,1080470,6.0,22767.0,2132.0 +1152954,1152954,1152955,1,24.0,1.0,0.0,0.0,1,4000.0,1080470,6.0,22767.0,2132.0 +1152955,1152955,1152956,1,24.0,1.0,0.0,0.0,1,4000.0,1080470,6.0,22767.0,2132.0 +1152956,1152956,1152957,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152957,1152957,1152958,1,24.0,1.0,0.0,0.0,1,4000.0,1080470,6.0,22768.0,2132.0 +1152958,1152958,1152959,1,24.0,1.0,0.0,0.0,1,4000.0,1080470,6.0,22770.0,2134.0 +1152959,1152959,1152960,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22768.0,2132.0 +1152960,1152960,1152961,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22768.0,2132.0 +1152961,1152961,1152962,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152962,1152962,1152963,1,24.0,1.0,0.0,0.0,1,4000.0,1080470,6.0,22767.0,2132.0 +1152963,1152963,1152964,1,24.0,1.0,0.0,0.0,1,4000.0,1080470,6.0,22771.0,2135.0 +1152964,1152964,1152965,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22771.0,2135.0 +1152965,1152965,1152966,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22770.0,2134.0 +1152966,1152966,1152967,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152967,1152967,1152968,1,24.0,1.0,0.0,0.0,1,4000.0,1080470,6.0,22767.0,2132.0 +1152968,1152968,1152969,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152969,1152969,1152970,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152970,1152970,1152971,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152971,1152971,1152972,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22767.0,2132.0 +1152972,1152972,1152973,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22770.0,2134.0 +1152973,1152973,1152974,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22768.0,2132.0 +1152974,1152974,1152975,1,21.0,1.0,0.0,0.0,1,1700.0,1031452,4.0,22768.0,2132.0 +1152975,1152975,1152976,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22770.0,2134.0 +1152976,1152976,1152977,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22768.0,2132.0 +1152977,1152977,1152978,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1152978,1152978,1152979,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22771.0,2135.0 +1152979,1152979,1152980,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22768.0,2132.0 +1152980,1152980,1152981,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1152981,1152981,1152982,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22747.0,2123.0 +1152982,1152982,1152983,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22747.0,2123.0 +1152983,1152983,1152984,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1152984,1152984,1152985,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22770.0,2134.0 +1152985,1152985,1152986,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1152986,1152986,1152987,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22747.0,2123.0 +1152987,1152987,1152988,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1152988,1152988,1152989,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1152989,1152989,1152990,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22770.0,2134.0 +1152990,1152990,1152991,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22768.0,2132.0 +1152991,1152991,1152992,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1152992,1152992,1152993,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22771.0,2135.0 +1152993,1152993,1152994,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22769.0,2133.0 +1152994,1152994,1152995,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1152995,1152995,1152996,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22768.0,2132.0 +1152996,1152996,1152997,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1152997,1152997,1152998,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22771.0,2135.0 +1152998,1152998,1152999,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1152999,1152999,1153000,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153000,1153000,1153001,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153001,1153001,1153002,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153002,1153002,1153003,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22771.0,2135.0 +1153003,1153003,1153004,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22770.0,2134.0 +1153004,1153004,1153005,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22768.0,2132.0 +1153005,1153005,1153006,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22773.0,2136.0 +1153006,1153006,1153007,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153007,1153007,1153008,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153008,1153008,1153009,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22771.0,2135.0 +1153009,1153009,1153010,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153010,1153010,1153011,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153011,1153011,1153012,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153012,1153012,1153013,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22771.0,2135.0 +1153013,1153013,1153014,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22771.0,2135.0 +1153014,1153014,1153015,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153015,1153015,1153016,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153016,1153016,1153017,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153017,1153017,1153018,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22767.0,2132.0 +1153018,1153018,1153019,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22770.0,2134.0 +1153996,1153996,1154012,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22815.0,2150.0 +1153997,1153997,1154013,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22814.0,2150.0 +1153998,1153998,1154014,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22808.0,2147.0 +1153999,1153999,1154015,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22815.0,2150.0 +1154000,1154000,1154016,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22815.0,2150.0 +1154001,1154001,1154017,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22808.0,2147.0 +1154002,1154002,1154018,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22815.0,2150.0 +1154003,1154003,1154019,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22815.0,2150.0 +1154005,1154005,1154021,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22814.0,2150.0 +1154006,1154006,1154022,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22814.0,2150.0 +1154007,1154007,1154023,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22808.0,2147.0 +1154008,1154008,1154024,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22815.0,2150.0 +1154009,1154009,1154025,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22814.0,2150.0 +1154010,1154010,1154026,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22815.0,2150.0 +1154011,1154011,1154027,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22808.0,2147.0 +1154012,1154012,1154028,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22814.0,2150.0 +1154013,1154013,1154029,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22808.0,2147.0 +1154014,1154014,1154030,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22814.0,2150.0 +1154015,1154015,1154031,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22814.0,2150.0 +1154016,1154016,1154032,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22815.0,2150.0 +1154018,1154018,1154034,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22814.0,2150.0 +1154021,1154021,1154037,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22814.0,2150.0 +1154024,1154024,1154040,6,45.0,4.0,2.0,0.0,1,17000.0,1010145,3.0,22815.0,2150.0 +1154026,1154026,1154042,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22808.0,2147.0 +1154027,1154027,1154043,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22808.0,2147.0 +1154028,1154028,1154044,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22808.0,2147.0 +1154029,1154029,1154045,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22815.0,2150.0 +1154030,1154030,1154046,2,48.0,2.0,1.0,3.0,1,41700.0,1010145,3.0,22814.0,2150.0 +1154031,1154031,1154047,2,48.0,2.0,1.0,0.0,1,41700.0,1010145,3.0,22815.0,2150.0 +1154032,1154032,1154048,2,48.0,2.0,1.0,0.0,1,41700.0,1010145,3.0,22808.0,2147.0 +1154033,1154033,1154049,2,48.0,2.0,1.0,0.0,1,41700.0,1010145,3.0,22814.0,2150.0 +1154034,1154034,1154050,2,48.0,2.0,1.0,0.0,1,41700.0,1010145,3.0,22808.0,2147.0 +1154035,1154035,1154051,2,48.0,2.0,1.0,0.0,1,41700.0,1010145,3.0,22815.0,2150.0 +1154037,1154037,1154053,2,48.0,2.0,1.0,0.0,1,41700.0,1010145,3.0,22815.0,2150.0 +1154039,1154039,1154055,2,48.0,2.0,1.0,0.0,1,41700.0,1010145,3.0,22808.0,2147.0 +1154041,1154041,1154057,2,48.0,2.0,1.0,0.0,1,41700.0,1010145,3.0,22814.0,2150.0 +1154042,1154042,1154058,2,48.0,2.0,1.0,0.0,1,41700.0,1010145,3.0,22808.0,2147.0 +1154044,1154044,1154060,4,63.0,1.0,4.0,0.0,1,664900.0,1010145,1.0,22814.0,2150.0 +1154046,1154046,1154062,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22815.0,2150.0 +1154047,1154047,1154063,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22814.0,2150.0 +1154048,1154048,1154064,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22808.0,2147.0 +1154049,1154049,1154065,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22815.0,2150.0 +1154051,1154051,1154067,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22815.0,2150.0 +1154052,1154052,1154068,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22814.0,2150.0 +1154053,1154053,1154069,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22815.0,2150.0 +1154055,1154055,1154071,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22815.0,2150.0 +1154056,1154056,1154072,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22815.0,2150.0 +1154058,1154058,1154074,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22808.0,2147.0 +1154059,1154059,1154075,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22815.0,2150.0 +1154061,1154061,1154077,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22814.0,2150.0 +1154062,1154062,1154078,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22814.0,2150.0 +1154063,1154063,1154079,4,56.0,1.0,4.0,0.0,1,238000.0,1080470,1.0,22814.0,2150.0 +1154064,1154064,1154080,3,60.0,1.0,2.0,0.0,1,11630.0,1073449,1.0,22815.0,2150.0 +1154065,1154065,1154081,3,60.0,1.0,2.0,0.0,1,11630.0,1073449,1.0,22814.0,2150.0 +1154067,1154067,1154083,3,60.0,1.0,2.0,0.0,1,11630.0,1073449,1.0,22815.0,2150.0 +1154068,1154068,1154084,3,60.0,1.0,2.0,0.0,1,11630.0,1073449,1.0,22808.0,2147.0 +1154070,1154070,1154086,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154073,1154073,1154089,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154074,1154074,1154090,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154076,1154076,1154092,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154077,1154077,1154093,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154079,1154079,1154095,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154080,1154080,1154096,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154081,1154081,1154097,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154082,1154082,1154098,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154083,1154083,1154099,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154084,1154084,1154100,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154085,1154085,1154101,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154086,1154086,1154102,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154087,1154087,1154103,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22808.0,2147.0 +1154089,1154089,1154105,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154090,1154090,1154106,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22808.0,2147.0 +1154091,1154091,1154107,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22808.0,2147.0 +1154092,1154092,1154108,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154093,1154093,1154109,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154095,1154095,1154111,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154096,1154096,1154112,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154097,1154097,1154113,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22808.0,2147.0 +1154098,1154098,1154114,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154099,1154099,1154115,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154100,1154100,1154116,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154101,1154101,1154117,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154103,1154103,1154119,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154104,1154104,1154120,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154106,1154106,1154122,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154107,1154107,1154123,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22808.0,2147.0 +1154108,1154108,1154124,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154109,1154109,1154125,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22808.0,2147.0 +1154110,1154110,1154126,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154112,1154112,1154128,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154113,1154113,1154129,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154114,1154114,1154130,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22808.0,2147.0 +1154115,1154115,1154131,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154116,1154116,1154132,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1154117,1154117,1154133,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154118,1154118,1154134,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22815.0,2150.0 +1154120,1154120,1154136,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22815.0,2150.0 +1154121,1154121,1154137,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22814.0,2150.0 +1154122,1154122,1154138,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22808.0,2147.0 +1154123,1154123,1154139,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22814.0,2150.0 +1154124,1154124,1154140,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22808.0,2147.0 +1154125,1154125,1154141,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22814.0,2150.0 +1154126,1154126,1154142,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22814.0,2150.0 +1154127,1154127,1154143,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22814.0,2150.0 +1154128,1154128,1154144,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22808.0,2147.0 +1154129,1154129,1154145,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22808.0,2147.0 +1154130,1154130,1154146,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22815.0,2150.0 +1154131,1154131,1154147,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22814.0,2150.0 +1154132,1154132,1154148,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22814.0,2150.0 +1154133,1154133,1154149,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22814.0,2150.0 +1154134,1154134,1154150,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22814.0,2150.0 +1154135,1154135,1154151,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22814.0,2150.0 +1154136,1154136,1154152,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22808.0,2147.0 +1154137,1154137,1154153,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22808.0,2147.0 +1154138,1154138,1154154,2,27.0,1.0,2.0,0.0,1,73510.0,1010145,5.0,22814.0,2150.0 +1154141,1154141,1154157,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154142,1154142,1154158,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154143,1154143,1154159,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154145,1154145,1154161,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154146,1154146,1154162,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154147,1154147,1154163,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154149,1154149,1154165,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154150,1154150,1154166,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154151,1154151,1154167,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154152,1154152,1154168,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154153,1154153,1154169,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154154,1154154,1154170,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154155,1154155,1154171,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154156,1154156,1154172,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154158,1154158,1154174,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154159,1154159,1154175,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154160,1154160,1154176,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154162,1154162,1154178,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154163,1154163,1154179,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154164,1154164,1154180,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154165,1154165,1154181,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154166,1154166,1154182,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154167,1154167,1154183,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154168,1154168,1154184,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154170,1154170,1154186,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154171,1154171,1154187,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154172,1154172,1154188,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154173,1154173,1154189,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154175,1154175,1154191,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154176,1154176,1154192,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154177,1154177,1154193,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154178,1154178,1154194,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154179,1154179,1154195,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154180,1154180,1154196,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154183,1154183,1154199,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154184,1154184,1154200,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154185,1154185,1154201,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154187,1154187,1154203,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154188,1154188,1154204,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154189,1154189,1154205,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154190,1154190,1154206,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154191,1154191,1154207,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154192,1154192,1154208,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154193,1154193,1154209,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154194,1154194,1154210,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154196,1154196,1154212,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154198,1154198,1154214,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154200,1154200,1154216,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154201,1154201,1154217,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154202,1154202,1154218,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154203,1154203,1154219,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154204,1154204,1154220,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154205,1154205,1154221,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154206,1154206,1154222,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154207,1154207,1154223,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154208,1154208,1154224,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154209,1154209,1154225,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154210,1154210,1154226,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154211,1154211,1154227,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154212,1154212,1154228,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154213,1154213,1154229,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154214,1154214,1154230,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1154215,1154215,1154231,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154216,1154216,1154232,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154217,1154217,1154233,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154218,1154218,1154234,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154220,1154220,1154236,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154221,1154221,1154237,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154224,1154224,1154240,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22808.0,2147.0 +1154225,1154225,1154241,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154226,1154226,1154242,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1154227,1154227,1154243,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154229,1154229,1154245,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154230,1154230,1154246,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154231,1154231,1154247,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154232,1154232,1154248,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22815.0,2150.0 +1154233,1154233,1154249,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154234,1154234,1154250,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22815.0,2150.0 +1154235,1154235,1154251,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22815.0,2150.0 +1154236,1154236,1154252,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22808.0,2147.0 +1154237,1154237,1154253,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154239,1154239,1154255,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22808.0,2147.0 +1154240,1154240,1154256,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22815.0,2150.0 +1154241,1154241,1154257,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22808.0,2147.0 +1154242,1154242,1154258,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22815.0,2150.0 +1154243,1154243,1154259,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154244,1154244,1154260,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154247,1154247,1154263,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154249,1154249,1154265,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22815.0,2150.0 +1154252,1154252,1154268,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22815.0,2150.0 +1154253,1154253,1154269,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154254,1154254,1154270,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22808.0,2147.0 +1154255,1154255,1154271,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154257,1154257,1154273,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22808.0,2147.0 +1154258,1154258,1154274,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154259,1154259,1154275,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22815.0,2150.0 +1154260,1154260,1154276,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22815.0,2150.0 +1154261,1154261,1154277,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154263,1154263,1154279,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22815.0,2150.0 +1154265,1154265,1154281,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154266,1154266,1154282,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22815.0,2150.0 +1154267,1154267,1154283,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154268,1154268,1154284,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22814.0,2150.0 +1154269,1154269,1154285,3,22.0,4.0,0.0,0.0,1,43100.0,1054606,7.0,22815.0,2150.0 +1154270,1154270,1154286,3,22.0,4.0,0.0,0.0,1,43100.0,1054606,7.0,22815.0,2150.0 +1154271,1154271,1154287,3,22.0,4.0,0.0,0.0,1,43100.0,1054606,7.0,22814.0,2150.0 +1154274,1154274,1154290,3,22.0,4.0,0.0,0.0,1,43100.0,1054606,7.0,22808.0,2147.0 +1154275,1154275,1154291,3,22.0,4.0,0.0,0.0,1,43100.0,1054606,7.0,22815.0,2150.0 +1154277,1154277,1154293,3,22.0,4.0,0.0,0.0,1,43100.0,1054606,7.0,22815.0,2150.0 +1154278,1154278,1154294,3,22.0,4.0,0.0,0.0,1,43100.0,1054606,7.0,22808.0,2147.0 +1154279,1154279,1154295,3,22.0,4.0,0.0,0.0,1,43100.0,1054606,7.0,22814.0,2150.0 +1154280,1154280,1154296,3,22.0,4.0,0.0,0.0,1,43100.0,1054606,7.0,22815.0,2150.0 +1154281,1154281,1154297,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22815.0,2150.0 +1154282,1154282,1154298,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154283,1154283,1154299,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154285,1154285,1154301,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22814.0,2150.0 +1154286,1154286,1154302,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22814.0,2150.0 +1154287,1154287,1154303,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22815.0,2150.0 +1154288,1154288,1154304,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22814.0,2150.0 +1154289,1154289,1154305,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22814.0,2150.0 +1154290,1154290,1154306,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22808.0,2147.0 +1154291,1154291,1154307,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22815.0,2150.0 +1154293,1154293,1154309,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22814.0,2150.0 +1154295,1154295,1154311,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154296,1154296,1154312,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22814.0,2150.0 +1154297,1154297,1154313,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154298,1154298,1154314,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22815.0,2150.0 +1154299,1154299,1154315,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154300,1154300,1154316,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22808.0,2147.0 +1154301,1154301,1154317,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22815.0,2150.0 +1154302,1154302,1154318,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154303,1154303,1154319,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22814.0,2150.0 +1154304,1154304,1154320,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22815.0,2150.0 +1154307,1154307,1154323,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22808.0,2147.0 +1154308,1154308,1154324,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22815.0,2150.0 +1154309,1154309,1154325,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22815.0,2150.0 +1154310,1154310,1154326,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22808.0,2147.0 +1154311,1154311,1154327,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154312,1154312,1154328,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22815.0,2150.0 +1154314,1154314,1154330,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154315,1154315,1154331,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22814.0,2150.0 +1154317,1154317,1154333,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22815.0,2150.0 +1154318,1154318,1154334,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22815.0,2150.0 +1154319,1154319,1154335,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154320,1154320,1154336,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22815.0,2150.0 +1154321,1154321,1154337,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22815.0,2150.0 +1154322,1154322,1154338,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22808.0,2147.0 +1154323,1154323,1154339,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22814.0,2150.0 +1154325,1154325,1154341,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154327,1154327,1154343,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154328,1154328,1154344,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154330,1154330,1154346,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22814.0,2150.0 +1154331,1154331,1154347,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22815.0,2150.0 +1154332,1154332,1154348,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22815.0,2150.0 +1154333,1154333,1154349,1,22.0,4.0,0.0,0.0,1,13200.0,1080470,6.0,22808.0,2147.0 +1154334,1154334,1154350,2,22.0,4.0,0.0,0.0,1,200.0,1031452,7.0,22808.0,2147.0 +1154335,1154335,1154351,2,22.0,4.0,0.0,0.0,1,200.0,1031452,7.0,22815.0,2150.0 +1154337,1154337,1154353,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22808.0,2147.0 +1154338,1154338,1154354,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22815.0,2150.0 +1154339,1154339,1154355,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22815.0,2150.0 +1154340,1154340,1154356,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22815.0,2150.0 +1154341,1154341,1154357,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22815.0,2150.0 +1154342,1154342,1154358,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22815.0,2150.0 +1154343,1154343,1154359,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22814.0,2150.0 +1154344,1154344,1154360,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22814.0,2150.0 +1154345,1154345,1154361,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22815.0,2150.0 +1154346,1154346,1154362,1,20.0,4.0,0.0,0.0,1,0.0,1073449,4.0,22808.0,2147.0 +1154347,1154347,1154363,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22814.0,2150.0 +1154348,1154348,1154364,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22815.0,2150.0 +1154351,1154351,1154367,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22814.0,2150.0 +1154352,1154352,1154368,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22808.0,2147.0 +1154353,1154353,1154369,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22808.0,2147.0 +1154354,1154354,1154370,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22815.0,2150.0 +1154355,1154355,1154371,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22814.0,2150.0 +1154356,1154356,1154372,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22814.0,2150.0 +1154357,1154357,1154373,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22808.0,2147.0 +1154358,1154358,1154374,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22814.0,2150.0 +1154359,1154359,1154375,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22815.0,2150.0 +1154360,1154360,1154376,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22815.0,2150.0 +1154361,1154361,1154377,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22815.0,2150.0 +1154362,1154362,1154378,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22815.0,2150.0 +1154363,1154363,1154379,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22814.0,2150.0 +1154364,1154364,1154380,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22815.0,2150.0 +1154365,1154365,1154381,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22808.0,2147.0 +1154366,1154366,1154382,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22814.0,2150.0 +1154367,1154367,1154383,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22814.0,2150.0 +1154368,1154368,1154384,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22815.0,2150.0 +1154369,1154369,1154385,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22814.0,2150.0 +1154371,1154371,1154387,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22815.0,2150.0 +1154372,1154372,1154388,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22815.0,2150.0 +1154374,1154374,1154390,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22815.0,2150.0 +1154375,1154375,1154391,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22815.0,2150.0 +1154376,1154376,1154392,1,24.0,2.0,0.0,0.0,1,7700.0,1010145,4.0,22815.0,2150.0 +1154377,1154377,1154393,1,24.0,2.0,0.0,0.0,1,7700.0,1010145,4.0,22814.0,2150.0 +1154379,1154379,1154395,1,24.0,2.0,0.0,0.0,1,7700.0,1010145,4.0,22808.0,2147.0 +1154380,1154380,1154396,1,24.0,2.0,0.0,0.0,1,7700.0,1010145,4.0,22814.0,2150.0 +1154381,1154381,1154397,1,24.0,2.0,0.0,0.0,1,7700.0,1010145,4.0,22815.0,2150.0 +1154382,1154382,1154398,1,24.0,2.0,0.0,0.0,1,7700.0,1010145,4.0,22815.0,2150.0 +1154383,1154383,1154399,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22808.0,2147.0 +1154384,1154384,1154400,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22815.0,2150.0 +1154385,1154385,1154401,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22814.0,2150.0 +1154386,1154386,1154402,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22814.0,2150.0 +1154387,1154387,1154403,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22815.0,2150.0 +1154389,1154389,1154405,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22815.0,2150.0 +1154390,1154390,1154406,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22808.0,2147.0 +1154391,1154391,1154407,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22808.0,2147.0 +1154392,1154392,1154408,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22808.0,2147.0 +1154393,1154393,1154409,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22814.0,2150.0 +1154394,1154394,1154410,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22808.0,2147.0 +1154396,1154396,1154412,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22814.0,2150.0 +1154398,1154398,1154414,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22814.0,2150.0 +1154399,1154399,1154415,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22814.0,2150.0 +1154400,1154400,1154416,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22814.0,2150.0 +1154402,1154402,1154418,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22808.0,2147.0 +1154403,1154403,1154419,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22814.0,2150.0 +1154404,1154404,1154420,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22815.0,2150.0 +1154405,1154405,1154421,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22815.0,2150.0 +1154406,1154406,1154422,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22814.0,2150.0 +1154409,1154409,1154425,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22814.0,2150.0 +1154410,1154410,1154426,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22814.0,2150.0 +1154411,1154411,1154427,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22815.0,2150.0 +1154412,1154412,1154428,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22808.0,2147.0 +1154413,1154413,1154429,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22814.0,2150.0 +1154414,1154414,1154430,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22815.0,2150.0 +1154415,1154415,1154431,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22814.0,2150.0 +1154416,1154416,1154432,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22814.0,2150.0 +1154417,1154417,1154433,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22814.0,2150.0 +1154418,1154418,1154434,1,23.0,3.0,0.0,0.0,1,31200.0,1080470,4.0,22815.0,2150.0 +1154419,1154419,1154435,1,23.0,3.0,0.0,0.0,1,31200.0,1080470,4.0,22815.0,2150.0 +1154420,1154420,1154436,1,23.0,3.0,0.0,0.0,1,31200.0,1080470,4.0,22815.0,2150.0 +1154421,1154421,1154437,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22815.0,2150.0 +1154422,1154422,1154438,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22814.0,2150.0 +1154423,1154423,1154439,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22814.0,2150.0 +1154424,1154424,1154440,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22815.0,2150.0 +1154425,1154425,1154441,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22814.0,2150.0 +1154426,1154426,1154442,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22815.0,2150.0 +1154427,1154427,1154443,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22815.0,2150.0 +1154429,1154429,1154445,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22814.0,2150.0 +1154431,1154431,1154447,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22815.0,2150.0 +1154432,1154432,1154448,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22808.0,2147.0 +1154435,1154435,1154451,2,24.0,1.0,1.0,0.0,1,190000.0,1054606,5.0,22814.0,2150.0 +1154436,1154436,1154452,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154437,1154437,1154453,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154438,1154438,1154454,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154440,1154440,1154456,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154441,1154441,1154457,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154442,1154442,1154458,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154443,1154443,1154459,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154444,1154444,1154460,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154447,1154447,1154463,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154448,1154448,1154464,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154449,1154449,1154465,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154451,1154451,1154467,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154452,1154452,1154468,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154453,1154453,1154469,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154455,1154455,1154471,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154456,1154456,1154472,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154457,1154457,1154473,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154458,1154458,1154474,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154459,1154459,1154475,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154460,1154460,1154476,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154461,1154461,1154477,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154462,1154462,1154478,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154463,1154463,1154479,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154464,1154464,1154480,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154465,1154465,1154481,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154466,1154466,1154482,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154467,1154467,1154483,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154468,1154468,1154484,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154469,1154469,1154485,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154470,1154470,1154486,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154472,1154472,1154488,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154473,1154473,1154489,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154475,1154475,1154491,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154476,1154476,1154492,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154480,1154480,1154496,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154481,1154481,1154497,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154482,1154482,1154498,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154483,1154483,1154499,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154484,1154484,1154500,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154485,1154485,1154501,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154486,1154486,1154502,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154487,1154487,1154503,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154488,1154488,1154504,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22808.0,2147.0 +1154489,1154489,1154505,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154491,1154491,1154507,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154493,1154493,1154509,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154494,1154494,1154510,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154495,1154495,1154511,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154496,1154496,1154512,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22815.0,2150.0 +1154497,1154497,1154513,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1154499,1154499,1154515,2,23.0,1.0,2.0,0.0,1,37320.0,1080470,7.0,22814.0,2150.0 +1154500,1154500,1154516,2,23.0,1.0,2.0,0.0,1,37320.0,1080470,7.0,22815.0,2150.0 +1154501,1154501,1154517,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22814.0,2150.0 +1154502,1154502,1154518,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22814.0,2150.0 +1154504,1154504,1154520,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22815.0,2150.0 +1154505,1154505,1154521,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22814.0,2150.0 +1154506,1154506,1154522,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22815.0,2150.0 +1154507,1154507,1154523,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154510,1154510,1154526,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154511,1154511,1154527,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154514,1154514,1154530,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154515,1154515,1154531,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154516,1154516,1154532,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154517,1154517,1154533,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22808.0,2147.0 +1154519,1154519,1154535,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154521,1154521,1154537,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154522,1154522,1154538,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154525,1154525,1154541,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22808.0,2147.0 +1154526,1154526,1154542,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154527,1154527,1154543,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154528,1154528,1154544,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154531,1154531,1154547,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154532,1154532,1154548,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154533,1154533,1154549,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154536,1154536,1154552,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154543,1154543,1154559,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154544,1154544,1154560,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154545,1154545,1154561,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154547,1154547,1154563,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154548,1154548,1154564,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154549,1154549,1154565,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154550,1154550,1154566,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154551,1154551,1154567,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22808.0,2147.0 +1154552,1154552,1154568,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154554,1154554,1154570,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154555,1154555,1154571,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154556,1154556,1154572,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22808.0,2147.0 +1154557,1154557,1154573,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154558,1154558,1154574,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154559,1154559,1154575,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22808.0,2147.0 +1154560,1154560,1154576,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154561,1154561,1154577,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22808.0,2147.0 +1154563,1154563,1154579,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154564,1154564,1154580,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154565,1154565,1154581,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154566,1154566,1154582,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154568,1154568,1154584,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154569,1154569,1154585,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154570,1154570,1154586,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22808.0,2147.0 +1154571,1154571,1154587,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154572,1154572,1154588,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154573,1154573,1154589,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154574,1154574,1154590,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154576,1154576,1154592,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22808.0,2147.0 +1154580,1154580,1154596,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1154581,1154581,1154597,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1154582,1154582,1154598,2,24.0,1.0,1.0,0.0,1,37300.0,1010145,7.0,22815.0,2150.0 +1154583,1154583,1154599,2,24.0,1.0,1.0,0.0,1,37300.0,1010145,7.0,22815.0,2150.0 +1154584,1154584,1154600,2,24.0,1.0,1.0,0.0,1,37300.0,1010145,7.0,22808.0,2147.0 +1154585,1154585,1154601,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22815.0,2150.0 +1154587,1154587,1154603,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22815.0,2150.0 +1154588,1154588,1154604,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22815.0,2150.0 +1154589,1154589,1154605,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22808.0,2147.0 +1154591,1154591,1154607,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22815.0,2150.0 +1154592,1154592,1154608,1,22.0,1.0,1.0,0.0,1,36000.0,1080470,6.0,22814.0,2150.0 +1154593,1154593,1154609,1,22.0,1.0,1.0,0.0,1,36000.0,1080470,6.0,22814.0,2150.0 +1154594,1154594,1154610,1,22.0,1.0,1.0,0.0,1,36000.0,1080470,6.0,22815.0,2150.0 +1154595,1154595,1154611,1,22.0,1.0,1.0,0.0,1,36000.0,1080470,6.0,22815.0,2150.0 +1154596,1154596,1154612,1,22.0,1.0,1.0,0.0,1,36000.0,1080470,6.0,22815.0,2150.0 +1154598,1154598,1154614,1,22.0,1.0,1.0,0.0,1,36000.0,1080470,6.0,22814.0,2150.0 +1154599,1154599,1154615,1,22.0,1.0,1.0,0.0,1,36000.0,1080470,6.0,22808.0,2147.0 +1154600,1154600,1154616,6,20.0,1.0,5.0,0.0,1,3400.0,1031452,5.0,22814.0,2150.0 +1154601,1154601,1154617,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22815.0,2150.0 +1154602,1154602,1154618,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22814.0,2150.0 +1154603,1154603,1154619,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22815.0,2150.0 +1154604,1154604,1154620,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22814.0,2150.0 +1154605,1154605,1154621,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22814.0,2150.0 +1154607,1154607,1154623,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22815.0,2150.0 +1154608,1154608,1154624,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22814.0,2150.0 +1154609,1154609,1154625,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22808.0,2147.0 +1154611,1154611,1154627,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22814.0,2150.0 +1154612,1154612,1154628,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22814.0,2150.0 +1154614,1154614,1154630,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22815.0,2150.0 +1154615,1154615,1154631,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22808.0,2147.0 +1154616,1154616,1154632,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22815.0,2150.0 +1154617,1154617,1154633,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22808.0,2147.0 +1154618,1154618,1154634,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22814.0,2150.0 +1154619,1154619,1154635,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22815.0,2150.0 +1154620,1154620,1154636,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22815.0,2150.0 +1154621,1154621,1154637,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22808.0,2147.0 +1154622,1154622,1154638,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22808.0,2147.0 +1154624,1154624,1154640,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22814.0,2150.0 +1154625,1154625,1154641,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22808.0,2147.0 +1154627,1154627,1154643,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22808.0,2147.0 +1154628,1154628,1154644,1,21.0,1.0,1.0,0.0,1,5800.0,1080470,6.0,22814.0,2150.0 +1154630,1154630,1154646,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22815.0,2150.0 +1154631,1154631,1154647,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22815.0,2150.0 +1154634,1154634,1154650,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22808.0,2147.0 +1154635,1154635,1154651,1,21.0,1.0,1.0,0.0,1,5800.0,1080470,6.0,22814.0,2150.0 +1154638,1154638,1154654,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22815.0,2150.0 +1154639,1154639,1154655,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22814.0,2150.0 +1154640,1154640,1154656,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22815.0,2150.0 +1154641,1154641,1154657,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22815.0,2150.0 +1154642,1154642,1154658,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22808.0,2147.0 +1154643,1154643,1154659,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22808.0,2147.0 +1154644,1154644,1154660,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22815.0,2150.0 +1154646,1154646,1154662,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22814.0,2150.0 +1154647,1154647,1154663,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22815.0,2150.0 +1154649,1154649,1154665,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22814.0,2150.0 +1154650,1154650,1154666,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22815.0,2150.0 +1154651,1154651,1154667,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22808.0,2147.0 +1154653,1154653,1154669,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22808.0,2147.0 +1154655,1154655,1154671,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22814.0,2150.0 +1154658,1154658,1154674,1,23.0,1.0,0.0,0.0,1,12500.0,1010145,6.0,22808.0,2147.0 +1154660,1154660,1154676,1,24.0,1.0,0.0,0.0,1,4000.0,1080470,6.0,22808.0,2147.0 +1154661,1154661,1154677,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22808.0,2147.0 +1154663,1154663,1154679,1,19.0,1.0,0.0,0.0,1,1300.0,1073449,4.0,22808.0,2147.0 +1154665,1154665,1154681,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22808.0,2147.0 +1154666,1154666,1154682,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22815.0,2150.0 +1154668,1154668,1154684,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22814.0,2150.0 +1154670,1154670,1154686,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22808.0,2147.0 +1154671,1154671,1154687,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22808.0,2147.0 +1154673,1154673,1154689,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22808.0,2147.0 +1154674,1154674,1154690,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22815.0,2150.0 +1154675,1154675,1154691,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22814.0,2150.0 +1154677,1154677,1154693,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22815.0,2150.0 +1154678,1154678,1154694,1,20.0,1.0,0.0,0.0,1,3000.0,1031452,6.0,22815.0,2150.0 +1154679,1154679,1154695,1,21.0,1.0,0.0,0.0,1,2150.0,1010145,4.0,22815.0,2150.0 +1156233,1156233,1156249,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22803.0,2144.0 +1156234,1156234,1156250,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156235,1156235,1156251,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156236,1156236,1156252,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156237,1156237,1156253,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156238,1156238,1156254,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22806.0,2146.0 +1156239,1156239,1156255,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156240,1156240,1156256,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22806.0,2146.0 +1156241,1156241,1156257,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22806.0,2146.0 +1156242,1156242,1156258,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156243,1156243,1156259,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22806.0,2146.0 +1156244,1156244,1156260,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22806.0,2146.0 +1156245,1156245,1156261,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156246,1156246,1156262,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22806.0,2146.0 +1156247,1156247,1156263,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156248,1156248,1156264,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156249,1156249,1156265,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156250,1156250,1156266,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156251,1156251,1156267,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156252,1156252,1156268,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156253,1156253,1156269,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156254,1156254,1156270,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156255,1156255,1156271,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22806.0,2146.0 +1156256,1156256,1156272,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156257,1156257,1156273,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156258,1156258,1156274,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22806.0,2146.0 +1156259,1156259,1156275,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156260,1156260,1156276,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22806.0,2146.0 +1156261,1156261,1156277,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22803.0,2144.0 +1156262,1156262,1156278,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156263,1156263,1156279,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156264,1156264,1156280,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156265,1156265,1156281,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156266,1156266,1156282,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156267,1156267,1156283,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156268,1156268,1156284,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156269,1156269,1156285,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156270,1156270,1156286,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156271,1156271,1156287,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22806.0,2146.0 +1156272,1156272,1156288,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22807.0,2146.0 +1156273,1156273,1156289,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22806.0,2146.0 +1156274,1156274,1156290,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22806.0,2146.0 +1156275,1156275,1156291,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22805.0,2145.0 +1156276,1156276,1156292,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22807.0,2146.0 +1156277,1156277,1156293,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22807.0,2146.0 +1156278,1156278,1156294,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22807.0,2146.0 +1156279,1156279,1156295,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22807.0,2146.0 +1156280,1156280,1156296,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22805.0,2145.0 +1156281,1156281,1156297,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22807.0,2146.0 +1156282,1156282,1156298,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22807.0,2146.0 +1156283,1156283,1156299,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22807.0,2146.0 +1156284,1156284,1156300,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22806.0,2146.0 +1156285,1156285,1156301,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22803.0,2144.0 +1156286,1156286,1156302,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22805.0,2145.0 +1156287,1156287,1156303,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22803.0,2144.0 +1156288,1156288,1156304,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22807.0,2146.0 +1156289,1156289,1156305,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22807.0,2146.0 +1156290,1156290,1156306,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22806.0,2146.0 +1156291,1156291,1156307,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22807.0,2146.0 +1156292,1156292,1156308,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22807.0,2146.0 +1156293,1156293,1156309,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22806.0,2146.0 +1156294,1156294,1156310,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22807.0,2146.0 +1156295,1156295,1156311,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22806.0,2146.0 +1156296,1156296,1156312,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22806.0,2146.0 +1156297,1156297,1156313,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22806.0,2146.0 +1156298,1156298,1156314,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22807.0,2146.0 +1156299,1156299,1156315,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156300,1156300,1156316,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156301,1156301,1156317,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156302,1156302,1156318,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156303,1156303,1156319,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22806.0,2146.0 +1156304,1156304,1156320,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156305,1156305,1156321,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22806.0,2146.0 +1156306,1156306,1156322,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22807.0,2146.0 +1156307,1156307,1156323,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22806.0,2146.0 +1156308,1156308,1156324,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22807.0,2146.0 +1156309,1156309,1156325,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22807.0,2146.0 +1156310,1156310,1156326,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22807.0,2146.0 +1156311,1156311,1156327,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156312,1156312,1156328,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22806.0,2146.0 +1156313,1156313,1156329,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156314,1156314,1156330,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22806.0,2146.0 +1156315,1156315,1156331,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156316,1156316,1156332,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156317,1156317,1156333,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156318,1156318,1156334,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156319,1156319,1156335,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22806.0,2146.0 +1156320,1156320,1156336,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156321,1156321,1156337,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156322,1156322,1156338,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156323,1156323,1156339,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156324,1156324,1156340,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156325,1156325,1156341,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156326,1156326,1156342,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156327,1156327,1156343,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156328,1156328,1156344,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156329,1156329,1156345,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156330,1156330,1156346,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156331,1156331,1156347,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156332,1156332,1156348,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156333,1156333,1156349,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156334,1156334,1156350,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156335,1156335,1156351,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156336,1156336,1156352,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22806.0,2146.0 +1156337,1156337,1156353,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22806.0,2146.0 +1156338,1156338,1156354,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22806.0,2146.0 +1156339,1156339,1156355,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22803.0,2144.0 +1156340,1156340,1156356,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156341,1156341,1156357,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156342,1156342,1156358,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156343,1156343,1156359,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156344,1156344,1156360,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22806.0,2146.0 +1156345,1156345,1156361,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156346,1156346,1156362,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156347,1156347,1156363,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156348,1156348,1156364,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22806.0,2146.0 +1156349,1156349,1156365,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22806.0,2146.0 +1156350,1156350,1156366,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156351,1156351,1156367,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156352,1156352,1156368,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22806.0,2146.0 +1156353,1156353,1156369,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156354,1156354,1156370,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156355,1156355,1156371,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156356,1156356,1156372,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156357,1156357,1156373,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156358,1156358,1156374,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156359,1156359,1156375,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156360,1156360,1156376,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156361,1156361,1156377,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156362,1156362,1156378,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156363,1156363,1156379,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156364,1156364,1156380,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156365,1156365,1156381,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156366,1156366,1156382,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22807.0,2146.0 +1156367,1156367,1156383,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22805.0,2145.0 +1156368,1156368,1156384,1,22.0,4.0,0.0,0.0,1,8500.0,1080470,4.0,22805.0,2145.0 +1156369,1156369,1156385,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22803.0,2144.0 +1156370,1156370,1156386,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22806.0,2146.0 +1156371,1156371,1156387,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22806.0,2146.0 +1156372,1156372,1156388,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22807.0,2146.0 +1156373,1156373,1156389,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22806.0,2146.0 +1156374,1156374,1156390,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22805.0,2145.0 +1156375,1156375,1156391,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22807.0,2146.0 +1156376,1156376,1156392,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22806.0,2146.0 +1156377,1156377,1156393,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22803.0,2144.0 +1156378,1156378,1156394,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22807.0,2146.0 +1156379,1156379,1156395,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22805.0,2145.0 +1156380,1156380,1156396,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22807.0,2146.0 +1156381,1156381,1156397,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22807.0,2146.0 +1156382,1156382,1156398,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22807.0,2146.0 +1156383,1156383,1156399,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22807.0,2146.0 +1156384,1156384,1156400,1,20.0,4.0,0.0,0.0,1,0.0,1073449,4.0,22807.0,2146.0 +1156385,1156385,1156401,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22806.0,2146.0 +1156386,1156386,1156402,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22805.0,2145.0 +1156387,1156387,1156403,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156388,1156388,1156404,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156389,1156389,1156405,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156390,1156390,1156406,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22806.0,2146.0 +1156391,1156391,1156407,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156392,1156392,1156408,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156393,1156393,1156409,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22803.0,2144.0 +1156394,1156394,1156410,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156395,1156395,1156411,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22806.0,2146.0 +1156396,1156396,1156412,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156397,1156397,1156413,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156398,1156398,1156414,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156399,1156399,1156415,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22806.0,2146.0 +1156400,1156400,1156416,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156401,1156401,1156417,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156402,1156402,1156418,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156403,1156403,1156419,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156404,1156404,1156420,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22806.0,2146.0 +1156405,1156405,1156421,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156406,1156406,1156422,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22806.0,2146.0 +1156407,1156407,1156423,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22803.0,2144.0 +1156408,1156408,1156424,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156409,1156409,1156425,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156410,1156410,1156426,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156411,1156411,1156427,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22806.0,2146.0 +1156412,1156412,1156428,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156413,1156413,1156429,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156414,1156414,1156430,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156415,1156415,1156431,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156416,1156416,1156432,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156417,1156417,1156433,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156418,1156418,1156434,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156419,1156419,1156435,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156420,1156420,1156436,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156421,1156421,1156437,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156422,1156422,1156438,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156423,1156423,1156439,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156424,1156424,1156440,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156425,1156425,1156441,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22807.0,2146.0 +1156426,1156426,1156442,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156427,1156427,1156443,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156428,1156428,1156444,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22805.0,2145.0 +1156429,1156429,1156445,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22806.0,2146.0 +1156430,1156430,1156446,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22803.0,2144.0 +1156431,1156431,1156447,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22807.0,2146.0 +1156432,1156432,1156448,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22807.0,2146.0 +1156433,1156433,1156449,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22806.0,2146.0 +1156434,1156434,1156450,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22807.0,2146.0 +1156435,1156435,1156451,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22806.0,2146.0 +1156436,1156436,1156452,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22806.0,2146.0 +1156437,1156437,1156453,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22806.0,2146.0 +1156438,1156438,1156454,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22807.0,2146.0 +1156439,1156439,1156455,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22805.0,2145.0 +1156440,1156440,1156456,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22805.0,2145.0 +1156441,1156441,1156457,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22807.0,2146.0 +1156442,1156442,1156458,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22805.0,2145.0 +1156443,1156443,1156459,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22805.0,2145.0 +1156444,1156444,1156460,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22807.0,2146.0 +1156445,1156445,1156461,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22807.0,2146.0 +1156446,1156446,1156462,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22805.0,2145.0 +1156447,1156447,1156463,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22807.0,2146.0 +1156448,1156448,1156464,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22806.0,2146.0 +1156449,1156449,1156465,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22806.0,2146.0 +1156450,1156450,1156466,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22805.0,2145.0 +1156451,1156451,1156467,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22805.0,2145.0 +1156452,1156452,1156468,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22807.0,2146.0 +1156453,1156453,1156469,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22805.0,2145.0 +1156454,1156454,1156470,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22805.0,2145.0 +1156455,1156455,1156471,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22805.0,2145.0 +1156456,1156456,1156472,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22806.0,2146.0 +1156457,1156457,1156473,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22805.0,2145.0 +1156458,1156458,1156474,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22807.0,2146.0 +1156459,1156459,1156475,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22807.0,2146.0 +1156460,1156460,1156476,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22805.0,2145.0 +1156461,1156461,1156477,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22807.0,2146.0 +1156462,1156462,1156478,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22805.0,2145.0 +1156463,1156463,1156479,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22807.0,2146.0 +1156464,1156464,1156480,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22803.0,2144.0 +1156465,1156465,1156481,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22807.0,2146.0 +1156466,1156466,1156482,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22806.0,2146.0 +1156467,1156467,1156483,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22806.0,2146.0 +1156468,1156468,1156484,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22805.0,2145.0 +1156469,1156469,1156485,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22805.0,2145.0 +1156470,1156470,1156486,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22805.0,2145.0 +1156471,1156471,1156487,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22807.0,2146.0 +1156472,1156472,1156488,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22806.0,2146.0 +1156473,1156473,1156489,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22806.0,2146.0 +1156474,1156474,1156490,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22805.0,2145.0 +1156475,1156475,1156491,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22807.0,2146.0 +1156476,1156476,1156492,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22807.0,2146.0 +1156477,1156477,1156493,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22806.0,2146.0 +1156478,1156478,1156494,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22806.0,2146.0 +1156479,1156479,1156495,1,21.0,1.0,1.0,0.0,1,5800.0,1080470,6.0,22806.0,2146.0 +1156480,1156480,1156496,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22805.0,2145.0 +1156481,1156481,1156497,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22803.0,2144.0 +1156482,1156482,1156498,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22806.0,2146.0 +1156483,1156483,1156499,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22805.0,2145.0 +1156484,1156484,1156500,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22807.0,2146.0 +1156485,1156485,1156501,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22807.0,2146.0 +1156486,1156486,1156502,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22805.0,2145.0 +1156487,1156487,1156503,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22806.0,2146.0 +1156488,1156488,1156504,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22806.0,2146.0 +1156489,1156489,1156505,1,21.0,1.0,1.0,0.0,1,5800.0,1080470,6.0,22805.0,2145.0 +1156490,1156490,1156506,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22805.0,2145.0 +1156491,1156491,1156507,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22806.0,2146.0 +1156492,1156492,1156508,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22806.0,2146.0 +1156493,1156493,1156509,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22807.0,2146.0 +1156494,1156494,1156510,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22805.0,2145.0 +1156495,1156495,1156511,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22805.0,2145.0 +1156496,1156496,1156512,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22805.0,2145.0 +1156497,1156497,1156513,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22805.0,2145.0 +1156498,1156498,1156514,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22807.0,2146.0 +1156499,1156499,1156515,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22806.0,2146.0 +1156500,1156500,1156516,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22805.0,2145.0 +1156501,1156501,1156517,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22806.0,2146.0 +1156502,1156502,1156518,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22807.0,2146.0 +1156503,1156503,1156519,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22806.0,2146.0 +1156504,1156504,1156520,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22807.0,2146.0 +1156505,1156505,1156521,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22805.0,2145.0 +1156506,1156506,1156522,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22807.0,2146.0 +1156507,1156507,1156523,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22807.0,2146.0 +1156508,1156508,1156524,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22807.0,2146.0 +1156509,1156509,1156525,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22805.0,2145.0 +1156510,1156510,1156526,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22807.0,2146.0 +1156511,1156511,1156527,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22807.0,2146.0 +1156512,1156512,1156528,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22806.0,2146.0 +1156513,1156513,1156529,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22807.0,2146.0 +1156514,1156514,1156530,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22805.0,2145.0 +1156515,1156515,1156531,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22807.0,2146.0 +1156516,1156516,1156532,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22807.0,2146.0 +1156517,1156517,1156533,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22807.0,2146.0 +1156518,1156518,1156534,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22803.0,2144.0 +1156519,1156519,1156535,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22805.0,2145.0 +1156520,1156520,1156536,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22805.0,2145.0 +1156521,1156521,1156537,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22803.0,2144.0 +1156522,1156522,1156538,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22807.0,2146.0 +1156523,1156523,1156539,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22806.0,2146.0 +1156524,1156524,1156540,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22807.0,2146.0 +1156525,1156525,1156541,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22805.0,2145.0 +1156526,1156526,1156542,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22805.0,2145.0 +1156527,1156527,1156543,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22807.0,2146.0 +1156528,1156528,1156544,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22807.0,2146.0 +1156529,1156529,1156545,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22807.0,2146.0 +1156530,1156530,1156546,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22805.0,2145.0 +1156531,1156531,1156547,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22807.0,2146.0 +1156532,1156532,1156548,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22803.0,2144.0 +1156533,1156533,1156549,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22803.0,2144.0 +1156534,1156534,1156550,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22805.0,2145.0 +1156535,1156535,1156551,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22806.0,2146.0 +1156536,1156536,1156552,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22805.0,2145.0 +1156537,1156537,1156553,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22807.0,2146.0 +1156538,1156538,1156554,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22806.0,2146.0 +1156539,1156539,1156555,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22807.0,2146.0 +1156540,1156540,1156556,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22805.0,2145.0 +1156541,1156541,1156557,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22805.0,2145.0 +1156542,1156542,1156558,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22803.0,2144.0 +1156543,1156543,1156559,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22807.0,2146.0 +1156544,1156544,1156560,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22807.0,2146.0 +1156545,1156545,1156561,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22806.0,2146.0 +1156546,1156546,1156562,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22807.0,2146.0 +1156547,1156547,1156563,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22806.0,2146.0 +1156548,1156548,1156564,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22805.0,2145.0 +1156549,1156549,1156565,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22807.0,2146.0 +1156550,1156550,1156566,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22807.0,2146.0 +1156551,1156551,1156567,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22807.0,2146.0 +1156552,1156552,1156568,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22807.0,2146.0 +1156553,1156553,1156569,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22805.0,2145.0 +1156554,1156554,1156570,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22807.0,2146.0 +1156555,1156555,1156571,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22805.0,2145.0 +1156556,1156556,1156572,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22805.0,2145.0 +1156557,1156557,1156573,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22807.0,2146.0 +1156558,1156558,1156574,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22806.0,2146.0 +1156559,1156559,1156575,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22807.0,2146.0 +1156560,1156560,1156576,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22807.0,2146.0 +1156561,1156561,1156577,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22805.0,2145.0 +1156562,1156562,1156578,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22806.0,2146.0 +1156563,1156563,1156579,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22807.0,2146.0 +1156564,1156564,1156580,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22807.0,2146.0 +1156565,1156565,1156581,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22805.0,2145.0 +1156566,1156566,1156582,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22805.0,2145.0 +1156567,1156567,1156583,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22807.0,2146.0 +1156568,1156568,1156584,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22807.0,2146.0 +1156569,1156569,1156585,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22807.0,2146.0 +1156570,1156570,1156586,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22805.0,2145.0 +1156571,1156571,1156587,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22807.0,2146.0 +1156572,1156572,1156588,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22807.0,2146.0 +1156573,1156573,1156589,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22806.0,2146.0 +1156574,1156574,1156590,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22806.0,2146.0 +1156575,1156575,1156591,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22807.0,2146.0 +1156576,1156576,1156592,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22805.0,2145.0 +1156577,1156577,1156593,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22806.0,2146.0 +1156578,1156578,1156594,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22807.0,2146.0 +1156579,1156579,1156595,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22806.0,2146.0 +1156580,1156580,1156596,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22807.0,2146.0 +1156581,1156581,1156597,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22807.0,2146.0 +1156582,1156582,1156598,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22805.0,2145.0 +1156583,1156583,1156599,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22805.0,2145.0 +1156584,1156584,1156600,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22807.0,2146.0 +1156585,1156585,1156601,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22805.0,2145.0 +1156586,1156586,1156602,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22806.0,2146.0 +1156587,1156587,1156603,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22806.0,2146.0 +1156588,1156588,1156604,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22807.0,2146.0 +1156589,1156589,1156605,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22805.0,2145.0 +1156590,1156590,1156606,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22807.0,2146.0 +1156591,1156591,1156607,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22805.0,2145.0 +1156592,1156592,1156608,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22807.0,2146.0 +1156593,1156593,1156609,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22805.0,2145.0 +1156594,1156594,1156610,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22806.0,2146.0 +1156595,1156595,1156611,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22807.0,2146.0 +1156596,1156596,1156612,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22805.0,2145.0 +1156597,1156597,1156613,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22806.0,2146.0 +1156598,1156598,1156614,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22803.0,2144.0 +1156599,1156599,1156615,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22807.0,2146.0 +1156600,1156600,1156616,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22803.0,2144.0 +1156601,1156601,1156617,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22806.0,2146.0 +1156602,1156602,1156618,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22805.0,2145.0 +1156603,1156603,1156619,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22807.0,2146.0 +1156604,1156604,1156620,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22805.0,2145.0 +1156605,1156605,1156621,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22805.0,2145.0 +1156606,1156606,1156622,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22803.0,2144.0 +1156607,1156607,1156623,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22806.0,2146.0 +1156608,1156608,1156624,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22805.0,2145.0 +1156609,1156609,1156625,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22806.0,2146.0 +1156610,1156610,1156626,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22805.0,2145.0 +1156611,1156611,1156627,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22806.0,2146.0 +1156612,1156612,1156628,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22807.0,2146.0 +1156613,1156613,1156629,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22807.0,2146.0 +1156614,1156614,1156630,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22803.0,2144.0 +1156615,1156615,1156631,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22805.0,2145.0 +1156616,1156616,1156632,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22805.0,2145.0 +1156617,1156617,1156633,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22805.0,2145.0 +1156618,1156618,1156634,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22805.0,2145.0 +1156619,1156619,1156635,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22807.0,2146.0 +1156620,1156620,1156636,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22805.0,2145.0 +1156621,1156621,1156637,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22805.0,2145.0 +1156622,1156622,1156638,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22806.0,2146.0 +1156623,1156623,1156639,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22807.0,2146.0 +1156624,1156624,1156640,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22803.0,2144.0 +1156625,1156625,1156641,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22807.0,2146.0 +1156626,1156626,1156642,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22803.0,2144.0 +1156627,1156627,1156643,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22806.0,2146.0 +1156628,1156628,1156644,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22805.0,2145.0 +1156629,1156629,1156645,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22807.0,2146.0 +1156630,1156630,1156646,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22805.0,2145.0 +1156631,1156631,1156647,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22805.0,2145.0 +1156632,1156632,1156648,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22805.0,2145.0 +1156633,1156633,1156649,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22806.0,2146.0 +1156634,1156634,1156650,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22805.0,2145.0 +1156635,1156635,1156651,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22806.0,2146.0 +1156636,1156636,1156652,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22803.0,2144.0 +1156637,1156637,1156653,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22807.0,2146.0 +1156638,1156638,1156654,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22806.0,2146.0 +1156639,1156639,1156655,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22807.0,2146.0 +1156640,1156640,1156656,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22807.0,2146.0 +1156641,1156641,1156657,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22806.0,2146.0 +1156642,1156642,1156658,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22807.0,2146.0 +1156643,1156643,1156659,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22807.0,2146.0 +1156644,1156644,1156660,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22806.0,2146.0 +1156645,1156645,1156661,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22807.0,2146.0 +1156646,1156646,1156662,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22807.0,2146.0 +1156647,1156647,1156663,1,23.0,1.0,0.0,0.0,1,12500.0,1010145,6.0,22805.0,2145.0 +1156648,1156648,1156664,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22807.0,2146.0 +1156649,1156649,1156665,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22807.0,2146.0 +1156650,1156650,1156666,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22807.0,2146.0 +1156651,1156651,1156667,1,24.0,1.0,0.0,0.0,1,4000.0,1080470,6.0,22805.0,2145.0 +1156652,1156652,1156668,1,19.0,1.0,0.0,0.0,1,1300.0,1073449,4.0,22806.0,2146.0 +1156653,1156653,1156669,1,21.0,1.0,0.0,0.0,1,1700.0,1031452,4.0,22807.0,2146.0 +1156654,1156654,1156670,1,21.0,1.0,0.0,0.0,1,1700.0,1031452,4.0,22807.0,2146.0 +1156655,1156655,1156671,1,21.0,1.0,0.0,0.0,1,1700.0,1031452,4.0,22803.0,2144.0 +1156656,1156656,1156672,1,21.0,1.0,0.0,0.0,1,1700.0,1031452,4.0,22805.0,2145.0 +1156657,1156657,1156673,1,21.0,1.0,0.0,0.0,1,1700.0,1031452,4.0,22807.0,2146.0 +1156658,1156658,1156674,1,21.0,1.0,0.0,0.0,1,2150.0,1010145,4.0,22805.0,2145.0 +1156659,1156659,1156675,1,21.0,1.0,0.0,0.0,1,2150.0,1010145,4.0,22807.0,2146.0 +1156660,1156660,1156676,1,21.0,1.0,0.0,0.0,1,2150.0,1010145,4.0,22807.0,2146.0 +1156661,1156661,1156677,1,21.0,1.0,0.0,0.0,1,2150.0,1010145,4.0,22805.0,2145.0 +1156662,1156662,1156678,1,21.0,1.0,0.0,0.0,1,2150.0,1010145,4.0,22805.0,2145.0 +1156663,1156663,1156679,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22802.0,2144.0 +1156664,1156664,1156680,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22804.0,2144.0 +1156665,1156665,1156681,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22802.0,2144.0 +1156666,1156666,1156682,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22802.0,2144.0 +1156667,1156667,1156683,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22801.0,2143.0 +1156668,1156668,1156684,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22802.0,2144.0 +1156669,1156669,1156685,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22802.0,2144.0 +1156670,1156670,1156686,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22804.0,2144.0 +1156671,1156671,1156687,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22804.0,2144.0 +1156672,1156672,1156688,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22804.0,2144.0 +1156673,1156673,1156689,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22801.0,2143.0 +1156674,1156674,1156690,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22802.0,2144.0 +1156675,1156675,1156691,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22804.0,2144.0 +1156676,1156676,1156692,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22801.0,2143.0 +1156677,1156677,1156693,4,49.0,2.0,2.0,0.0,1,78200.0,1080470,2.0,22801.0,2143.0 +1156678,1156678,1156694,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22802.0,2144.0 +1156679,1156679,1156695,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22801.0,2143.0 +1156680,1156680,1156696,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22802.0,2144.0 +1156681,1156681,1156697,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22804.0,2144.0 +1156682,1156682,1156698,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22802.0,2144.0 +1156683,1156683,1156699,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22802.0,2144.0 +1156684,1156684,1156700,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22801.0,2143.0 +1156685,1156685,1156701,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22802.0,2144.0 +1156686,1156686,1156702,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22801.0,2143.0 +1156687,1156687,1156703,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22802.0,2144.0 +1156688,1156688,1156704,4,45.0,1.0,4.0,0.0,1,123200.0,1054606,7.0,22805.0,2145.0 +1156689,1156689,1156705,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22801.0,2143.0 +1156690,1156690,1156706,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22801.0,2143.0 +1156691,1156691,1156707,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22801.0,2143.0 +1156692,1156692,1156708,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156693,1156693,1156709,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22804.0,2144.0 +1156694,1156694,1156710,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156695,1156695,1156711,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22801.0,2143.0 +1156696,1156696,1156712,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156697,1156697,1156713,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22804.0,2144.0 +1156698,1156698,1156714,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22804.0,2144.0 +1156699,1156699,1156715,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22801.0,2143.0 +1156700,1156700,1156716,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156701,1156701,1156717,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22801.0,2143.0 +1156702,1156702,1156718,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22804.0,2144.0 +1156703,1156703,1156719,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22804.0,2144.0 +1156704,1156704,1156720,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156705,1156705,1156721,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156706,1156706,1156722,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156707,1156707,1156723,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156708,1156708,1156724,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22804.0,2144.0 +1156709,1156709,1156725,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22804.0,2144.0 +1156710,1156710,1156726,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156711,1156711,1156727,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22804.0,2144.0 +1156712,1156712,1156728,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156713,1156713,1156729,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22801.0,2143.0 +1156714,1156714,1156730,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22805.0,2145.0 +1156715,1156715,1156731,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156716,1156716,1156732,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22805.0,2145.0 +1156717,1156717,1156733,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22801.0,2143.0 +1156718,1156718,1156734,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22804.0,2144.0 +1156719,1156719,1156735,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156720,1156720,1156736,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22804.0,2144.0 +1156721,1156721,1156737,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22802.0,2144.0 +1156722,1156722,1156738,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22802.0,2144.0 +1156723,1156723,1156739,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22804.0,2144.0 +1156724,1156724,1156740,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22801.0,2143.0 +1156725,1156725,1156741,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22801.0,2143.0 +1156726,1156726,1156742,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22801.0,2143.0 +1156727,1156727,1156743,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22801.0,2143.0 +1156728,1156728,1156744,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22801.0,2143.0 +1156729,1156729,1156745,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22801.0,2143.0 +1156730,1156730,1156746,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22801.0,2143.0 +1156731,1156731,1156747,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22804.0,2144.0 +1156732,1156732,1156748,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22804.0,2144.0 +1156733,1156733,1156749,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22801.0,2143.0 +1156734,1156734,1156750,5,53.0,1.0,6.0,0.0,1,172800.0,1080470,2.0,22804.0,2144.0 +1156735,1156735,1156751,2,26.0,4.0,2.0,1.0,1,96200.0,1010145,7.0,22801.0,2143.0 +1156736,1156736,1156752,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22802.0,2144.0 +1156737,1156737,1156753,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22801.0,2143.0 +1156738,1156738,1156754,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22804.0,2144.0 +1156739,1156739,1156755,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22801.0,2143.0 +1156740,1156740,1156756,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22801.0,2143.0 +1156741,1156741,1156757,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22801.0,2143.0 +1156742,1156742,1156758,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22802.0,2144.0 +1156743,1156743,1156759,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22801.0,2143.0 +1156744,1156744,1156760,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22801.0,2143.0 +1156745,1156745,1156761,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22801.0,2143.0 +1156746,1156746,1156762,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22805.0,2145.0 +1156747,1156747,1156763,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22802.0,2144.0 +1156748,1156748,1156764,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22804.0,2144.0 +1156749,1156749,1156765,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22801.0,2143.0 +1156750,1156750,1156766,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22802.0,2144.0 +1156751,1156751,1156767,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22801.0,2143.0 +1156752,1156752,1156768,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22802.0,2144.0 +1156753,1156753,1156769,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22801.0,2143.0 +1156754,1156754,1156770,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22802.0,2144.0 +1156755,1156755,1156771,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22804.0,2144.0 +1156756,1156756,1156772,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22804.0,2144.0 +1156757,1156757,1156773,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22802.0,2144.0 +1156758,1156758,1156774,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22804.0,2144.0 +1156759,1156759,1156775,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22802.0,2144.0 +1156760,1156760,1156776,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22802.0,2144.0 +1156761,1156761,1156777,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22801.0,2143.0 +1156762,1156762,1156778,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22805.0,2145.0 +1156763,1156763,1156779,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22801.0,2143.0 +1156764,1156764,1156780,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22805.0,2145.0 +1156765,1156765,1156781,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22801.0,2143.0 +1156766,1156766,1156782,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22801.0,2143.0 +1156767,1156767,1156783,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22801.0,2143.0 +1156768,1156768,1156784,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22802.0,2144.0 +1156769,1156769,1156785,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22805.0,2145.0 +1156770,1156770,1156786,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22802.0,2144.0 +1156771,1156771,1156787,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22805.0,2145.0 +1156772,1156772,1156788,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156773,1156773,1156789,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156774,1156774,1156790,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156775,1156775,1156791,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156776,1156776,1156792,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156777,1156777,1156793,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156778,1156778,1156794,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156779,1156779,1156795,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22805.0,2145.0 +1156780,1156780,1156796,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156781,1156781,1156797,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156782,1156782,1156798,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156783,1156783,1156799,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156784,1156784,1156800,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156785,1156785,1156801,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156786,1156786,1156802,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156787,1156787,1156803,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156788,1156788,1156804,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156789,1156789,1156805,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156790,1156790,1156806,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156791,1156791,1156807,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156792,1156792,1156808,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156793,1156793,1156809,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156794,1156794,1156810,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156795,1156795,1156811,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156796,1156796,1156812,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156797,1156797,1156813,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156798,1156798,1156814,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156799,1156799,1156815,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156800,1156800,1156816,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156801,1156801,1156817,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156802,1156802,1156818,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156803,1156803,1156819,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156804,1156804,1156820,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156805,1156805,1156821,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156806,1156806,1156822,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156807,1156807,1156823,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156808,1156808,1156824,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22805.0,2145.0 +1156809,1156809,1156825,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156810,1156810,1156826,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156811,1156811,1156827,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156812,1156812,1156828,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156813,1156813,1156829,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22805.0,2145.0 +1156814,1156814,1156830,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156815,1156815,1156831,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156816,1156816,1156832,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22805.0,2145.0 +1156817,1156817,1156833,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156818,1156818,1156834,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156819,1156819,1156835,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156820,1156820,1156836,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156821,1156821,1156837,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156822,1156822,1156838,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156823,1156823,1156839,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156824,1156824,1156840,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156825,1156825,1156841,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156826,1156826,1156842,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156827,1156827,1156843,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156828,1156828,1156844,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156829,1156829,1156845,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156830,1156830,1156846,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156831,1156831,1156847,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156832,1156832,1156848,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22805.0,2145.0 +1156833,1156833,1156849,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156834,1156834,1156850,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156835,1156835,1156851,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156836,1156836,1156852,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156837,1156837,1156853,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156838,1156838,1156854,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156839,1156839,1156855,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156840,1156840,1156856,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156841,1156841,1156857,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156842,1156842,1156858,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156843,1156843,1156859,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156844,1156844,1156860,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156845,1156845,1156861,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156846,1156846,1156862,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156847,1156847,1156863,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156848,1156848,1156864,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156849,1156849,1156865,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156850,1156850,1156866,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156851,1156851,1156867,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156852,1156852,1156868,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156853,1156853,1156869,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156854,1156854,1156870,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156855,1156855,1156871,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22805.0,2145.0 +1156856,1156856,1156872,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156857,1156857,1156873,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156858,1156858,1156874,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156859,1156859,1156875,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156860,1156860,1156876,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156861,1156861,1156877,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22805.0,2145.0 +1156862,1156862,1156878,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156863,1156863,1156879,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156864,1156864,1156880,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156865,1156865,1156881,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156866,1156866,1156882,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156867,1156867,1156883,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156868,1156868,1156884,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156869,1156869,1156885,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156870,1156870,1156886,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156871,1156871,1156887,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156872,1156872,1156888,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156873,1156873,1156889,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156874,1156874,1156890,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22805.0,2145.0 +1156875,1156875,1156891,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156876,1156876,1156892,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156877,1156877,1156893,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156878,1156878,1156894,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156879,1156879,1156895,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156880,1156880,1156896,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156881,1156881,1156897,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156882,1156882,1156898,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156883,1156883,1156899,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156884,1156884,1156900,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156885,1156885,1156901,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156886,1156886,1156902,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156887,1156887,1156903,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156888,1156888,1156904,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156889,1156889,1156905,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156890,1156890,1156906,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156891,1156891,1156907,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156892,1156892,1156908,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156893,1156893,1156909,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156894,1156894,1156910,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156895,1156895,1156911,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156896,1156896,1156912,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22805.0,2145.0 +1156897,1156897,1156913,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156898,1156898,1156914,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156899,1156899,1156915,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156900,1156900,1156916,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156901,1156901,1156917,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156902,1156902,1156918,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156903,1156903,1156919,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156904,1156904,1156920,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156905,1156905,1156921,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156906,1156906,1156922,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156907,1156907,1156923,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156908,1156908,1156924,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156909,1156909,1156925,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156910,1156910,1156926,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156911,1156911,1156927,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156912,1156912,1156928,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156913,1156913,1156929,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156914,1156914,1156930,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156915,1156915,1156931,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156916,1156916,1156932,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156917,1156917,1156933,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22805.0,2145.0 +1156918,1156918,1156934,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156919,1156919,1156935,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156920,1156920,1156936,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156921,1156921,1156937,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156922,1156922,1156938,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22805.0,2145.0 +1156923,1156923,1156939,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156924,1156924,1156940,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156925,1156925,1156941,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156926,1156926,1156942,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156927,1156927,1156943,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156928,1156928,1156944,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22804.0,2144.0 +1156929,1156929,1156945,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156930,1156930,1156946,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156931,1156931,1156947,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22801.0,2143.0 +1156932,1156932,1156948,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22802.0,2144.0 +1156933,1156933,1156949,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22802.0,2144.0 +1156934,1156934,1156950,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22802.0,2144.0 +1156935,1156935,1156951,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156936,1156936,1156952,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22802.0,2144.0 +1156937,1156937,1156953,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156938,1156938,1156954,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156939,1156939,1156955,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156940,1156940,1156956,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156941,1156941,1156957,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156942,1156942,1156958,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156943,1156943,1156959,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156944,1156944,1156960,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22802.0,2144.0 +1156945,1156945,1156961,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22802.0,2144.0 +1156946,1156946,1156962,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156947,1156947,1156963,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156948,1156948,1156964,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156949,1156949,1156965,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156950,1156950,1156966,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22802.0,2144.0 +1156951,1156951,1156967,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22804.0,2144.0 +1156952,1156952,1156968,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22804.0,2144.0 +1156953,1156953,1156969,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22804.0,2144.0 +1156954,1156954,1156970,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156955,1156955,1156971,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156956,1156956,1156972,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156957,1156957,1156973,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156958,1156958,1156974,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22804.0,2144.0 +1156959,1156959,1156975,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22804.0,2144.0 +1156960,1156960,1156976,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156961,1156961,1156977,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22802.0,2144.0 +1156962,1156962,1156978,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156963,1156963,1156979,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156964,1156964,1156980,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156965,1156965,1156981,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22802.0,2144.0 +1156966,1156966,1156982,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156967,1156967,1156983,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22802.0,2144.0 +1156968,1156968,1156984,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22805.0,2145.0 +1156969,1156969,1156985,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156970,1156970,1156986,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156971,1156971,1156987,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156972,1156972,1156988,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156973,1156973,1156989,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156974,1156974,1156990,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22804.0,2144.0 +1156975,1156975,1156991,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22802.0,2144.0 +1156976,1156976,1156992,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22802.0,2144.0 +1156977,1156977,1156993,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156978,1156978,1156994,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22802.0,2144.0 +1156979,1156979,1156995,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22801.0,2143.0 +1156980,1156980,1156996,7,30.0,1.0,3.0,0.0,1,92200.0,1080470,3.0,22802.0,2144.0 +1156981,1156981,1156997,7,30.0,1.0,3.0,2.0,1,92200.0,1080470,3.0,22801.0,2143.0 +1156982,1156982,1156998,7,30.0,1.0,3.0,2.0,1,92200.0,1080470,3.0,22804.0,2144.0 +1156983,1156983,1156999,7,30.0,1.0,3.0,2.0,1,92200.0,1080470,3.0,22801.0,2143.0 +1156984,1156984,1157000,7,30.0,1.0,3.0,2.0,1,92200.0,1080470,3.0,22804.0,2144.0 +1156985,1156985,1157001,7,30.0,1.0,3.0,2.0,1,92200.0,1080470,3.0,22801.0,2143.0 +1156986,1156986,1157002,7,30.0,1.0,3.0,2.0,1,92200.0,1080470,3.0,22802.0,2144.0 +1156987,1156987,1157003,7,30.0,1.0,3.0,2.0,1,92200.0,1080470,3.0,22804.0,2144.0 +1156988,1156988,1157004,7,30.0,1.0,3.0,2.0,1,92200.0,1080470,3.0,22801.0,2143.0 +1156989,1156989,1157005,7,30.0,1.0,3.0,2.0,1,92200.0,1080470,3.0,22801.0,2143.0 +1156990,1156990,1157006,1,24.0,4.0,6.0,2.0,1,5500.0,1073449,6.0,22802.0,2144.0 +1156991,1156991,1157007,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22802.0,2144.0 +1156992,1156992,1157008,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1156993,1156993,1157009,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1156994,1156994,1157010,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1156995,1156995,1157011,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22804.0,2144.0 +1156996,1156996,1157012,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1156997,1156997,1157013,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1156998,1156998,1157014,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1156999,1156999,1157015,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22804.0,2144.0 +1157000,1157000,1157016,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157001,1157001,1157017,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157002,1157002,1157018,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157003,1157003,1157019,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22802.0,2144.0 +1157004,1157004,1157020,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157005,1157005,1157021,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22802.0,2144.0 +1157006,1157006,1157022,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157007,1157007,1157023,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157008,1157008,1157024,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157009,1157009,1157025,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22802.0,2144.0 +1157010,1157010,1157026,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157011,1157011,1157027,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22804.0,2144.0 +1157012,1157012,1157028,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22804.0,2144.0 +1157013,1157013,1157029,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22802.0,2144.0 +1157014,1157014,1157030,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22802.0,2144.0 +1157015,1157015,1157031,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22804.0,2144.0 +1157016,1157016,1157032,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157017,1157017,1157033,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157018,1157018,1157034,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22802.0,2144.0 +1157019,1157019,1157035,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22804.0,2144.0 +1157020,1157020,1157036,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157021,1157021,1157037,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157022,1157022,1157038,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157023,1157023,1157039,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22802.0,2144.0 +1157024,1157024,1157040,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157025,1157025,1157041,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22804.0,2144.0 +1157026,1157026,1157042,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157027,1157027,1157043,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22802.0,2144.0 +1157028,1157028,1157044,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22802.0,2144.0 +1157029,1157029,1157045,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157030,1157030,1157046,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157031,1157031,1157047,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157032,1157032,1157048,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22802.0,2144.0 +1157033,1157033,1157049,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157034,1157034,1157050,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157035,1157035,1157051,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22804.0,2144.0 +1157036,1157036,1157052,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22804.0,2144.0 +1157037,1157037,1157053,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22802.0,2144.0 +1157038,1157038,1157054,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22802.0,2144.0 +1157039,1157039,1157055,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22802.0,2144.0 +1157040,1157040,1157056,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157041,1157041,1157057,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157042,1157042,1157058,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157043,1157043,1157059,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157044,1157044,1157060,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22804.0,2144.0 +1157045,1157045,1157061,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22804.0,2144.0 +1157046,1157046,1157062,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22804.0,2144.0 +1157047,1157047,1157063,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22805.0,2145.0 +1157048,1157048,1157064,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22802.0,2144.0 +1157049,1157049,1157065,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22804.0,2144.0 +1157050,1157050,1157066,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22802.0,2144.0 +1157051,1157051,1157067,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22801.0,2143.0 +1157052,1157052,1157068,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22801.0,2143.0 +1157053,1157053,1157069,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22802.0,2144.0 +1157054,1157054,1157070,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22802.0,2144.0 +1157055,1157055,1157071,1,23.0,4.0,0.0,0.0,1,800.0,1054606,4.0,22805.0,2145.0 +1157056,1157056,1157072,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22801.0,2143.0 +1157057,1157057,1157073,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22802.0,2144.0 +1157058,1157058,1157074,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22801.0,2143.0 +1157059,1157059,1157075,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22801.0,2143.0 +1157060,1157060,1157076,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22805.0,2145.0 +1157061,1157061,1157077,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22805.0,2145.0 +1157062,1157062,1157078,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22804.0,2144.0 +1157063,1157063,1157079,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22801.0,2143.0 +1157064,1157064,1157080,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22802.0,2144.0 +1157065,1157065,1157081,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22802.0,2144.0 +1157066,1157066,1157082,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157067,1157067,1157083,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22804.0,2144.0 +1157068,1157068,1157084,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22802.0,2144.0 +1157069,1157069,1157085,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157070,1157070,1157086,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157071,1157071,1157087,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22802.0,2144.0 +1157072,1157072,1157088,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22802.0,2144.0 +1157073,1157073,1157089,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157074,1157074,1157090,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22802.0,2144.0 +1157075,1157075,1157091,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157076,1157076,1157092,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22802.0,2144.0 +1157077,1157077,1157093,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22804.0,2144.0 +1157078,1157078,1157094,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157079,1157079,1157095,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157080,1157080,1157096,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22805.0,2145.0 +1157081,1157081,1157097,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157082,1157082,1157098,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157083,1157083,1157099,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22802.0,2144.0 +1157084,1157084,1157100,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22802.0,2144.0 +1157085,1157085,1157101,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22802.0,2144.0 +1157086,1157086,1157102,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22804.0,2144.0 +1157087,1157087,1157103,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22804.0,2144.0 +1157088,1157088,1157104,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157089,1157089,1157105,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22802.0,2144.0 +1157090,1157090,1157106,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22804.0,2144.0 +1157091,1157091,1157107,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22804.0,2144.0 +1157092,1157092,1157108,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157093,1157093,1157109,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22802.0,2144.0 +1157094,1157094,1157110,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157095,1157095,1157111,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22801.0,2143.0 +1157096,1157096,1157112,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22804.0,2144.0 +1157097,1157097,1157113,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22801.0,2143.0 +1157098,1157098,1157114,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22802.0,2144.0 +1157099,1157099,1157115,1,24.0,2.0,0.0,0.0,1,7700.0,1010145,4.0,22805.0,2145.0 +1157100,1157100,1157116,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22802.0,2144.0 +1157101,1157101,1157117,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22802.0,2144.0 +1157102,1157102,1157118,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22802.0,2144.0 +1157103,1157103,1157119,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22804.0,2144.0 +1157104,1157104,1157120,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22801.0,2143.0 +1157105,1157105,1157121,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22801.0,2143.0 +1157106,1157106,1157122,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22805.0,2145.0 +1157107,1157107,1157123,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22804.0,2144.0 +1157108,1157108,1157124,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22801.0,2143.0 +1157109,1157109,1157125,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22801.0,2143.0 +1157110,1157110,1157126,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22801.0,2143.0 +1157111,1157111,1157127,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22801.0,2143.0 +1157112,1157112,1157128,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22804.0,2144.0 +1157113,1157113,1157129,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22802.0,2144.0 +1157114,1157114,1157130,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22804.0,2144.0 +1157115,1157115,1157131,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22801.0,2143.0 +1157116,1157116,1157132,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22801.0,2143.0 +1157117,1157117,1157133,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22802.0,2144.0 +1157118,1157118,1157134,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22802.0,2144.0 +1157119,1157119,1157135,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22804.0,2144.0 +1157120,1157120,1157136,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22801.0,2143.0 +1157121,1157121,1157137,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22801.0,2143.0 +1157122,1157122,1157138,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22801.0,2143.0 +1157123,1157123,1157139,1,23.0,3.0,0.0,0.0,1,52000.0,1080470,4.0,22802.0,2144.0 +1157124,1157124,1157140,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22804.0,2144.0 +1157125,1157125,1157141,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22802.0,2144.0 +1157126,1157126,1157142,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22801.0,2143.0 +1157127,1157127,1157143,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22801.0,2143.0 +1157128,1157128,1157144,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22802.0,2144.0 +1157129,1157129,1157145,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157130,1157130,1157146,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157131,1157131,1157147,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157132,1157132,1157148,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157133,1157133,1157149,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22802.0,2144.0 +1157134,1157134,1157150,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22802.0,2144.0 +1157135,1157135,1157151,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157136,1157136,1157152,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22804.0,2144.0 +1157137,1157137,1157153,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22804.0,2144.0 +1157138,1157138,1157154,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22804.0,2144.0 +1157139,1157139,1157155,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157140,1157140,1157156,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22804.0,2144.0 +1157141,1157141,1157157,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157142,1157142,1157158,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157143,1157143,1157159,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22804.0,2144.0 +1157144,1157144,1157160,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157145,1157145,1157161,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157146,1157146,1157162,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22804.0,2144.0 +1157147,1157147,1157163,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157148,1157148,1157164,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22805.0,2145.0 +1157149,1157149,1157165,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157150,1157150,1157166,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157151,1157151,1157167,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22804.0,2144.0 +1157152,1157152,1157168,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157153,1157153,1157169,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22802.0,2144.0 +1157154,1157154,1157170,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22802.0,2144.0 +1157155,1157155,1157171,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22805.0,2145.0 +1157156,1157156,1157172,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22802.0,2144.0 +1157157,1157157,1157173,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22805.0,2145.0 +1157158,1157158,1157174,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157159,1157159,1157175,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22802.0,2144.0 +1157160,1157160,1157176,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157161,1157161,1157177,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157162,1157162,1157178,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22804.0,2144.0 +1157163,1157163,1157179,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22802.0,2144.0 +1157164,1157164,1157180,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157165,1157165,1157181,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22804.0,2144.0 +1157166,1157166,1157182,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22801.0,2143.0 +1157167,1157167,1157183,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22802.0,2144.0 +1157168,1157168,1157184,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22802.0,2144.0 +1157169,1157169,1157185,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22804.0,2144.0 +1157170,1157170,1157186,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22801.0,2143.0 +1157171,1157171,1157187,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22801.0,2143.0 +1157172,1157172,1157188,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22802.0,2144.0 +1157173,1157173,1157189,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22801.0,2143.0 +1157174,1157174,1157190,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22804.0,2144.0 +1157175,1157175,1157191,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22802.0,2144.0 +1157176,1157176,1157192,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22801.0,2143.0 +1157177,1157177,1157193,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22802.0,2144.0 +1157178,1157178,1157194,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22801.0,2143.0 +1157179,1157179,1157195,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22801.0,2143.0 +1157180,1157180,1157196,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22804.0,2144.0 +1157181,1157181,1157197,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22802.0,2144.0 +1157182,1157182,1157198,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157183,1157183,1157199,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157184,1157184,1157200,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157185,1157185,1157201,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157186,1157186,1157202,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157187,1157187,1157203,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22802.0,2144.0 +1157188,1157188,1157204,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157189,1157189,1157205,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157190,1157190,1157206,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22802.0,2144.0 +1157191,1157191,1157207,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157192,1157192,1157208,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157193,1157193,1157209,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157194,1157194,1157210,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157195,1157195,1157211,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157196,1157196,1157212,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157197,1157197,1157213,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157198,1157198,1157214,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22805.0,2145.0 +1157199,1157199,1157215,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157200,1157200,1157216,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157201,1157201,1157217,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22805.0,2145.0 +1157202,1157202,1157218,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22805.0,2145.0 +1157203,1157203,1157219,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157204,1157204,1157220,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157205,1157205,1157221,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157206,1157206,1157222,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157207,1157207,1157223,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157208,1157208,1157224,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22802.0,2144.0 +1157209,1157209,1157225,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157210,1157210,1157226,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157211,1157211,1157227,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22805.0,2145.0 +1157212,1157212,1157228,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157213,1157213,1157229,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157214,1157214,1157230,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157215,1157215,1157231,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157216,1157216,1157232,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157217,1157217,1157233,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22802.0,2144.0 +1157218,1157218,1157234,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157219,1157219,1157235,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22805.0,2145.0 +1157220,1157220,1157236,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22802.0,2144.0 +1157221,1157221,1157237,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157222,1157222,1157238,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157223,1157223,1157239,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157224,1157224,1157240,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157225,1157225,1157241,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157226,1157226,1157242,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157227,1157227,1157243,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157228,1157228,1157244,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157229,1157229,1157245,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157230,1157230,1157246,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22802.0,2144.0 +1157231,1157231,1157247,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22802.0,2144.0 +1157232,1157232,1157248,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157233,1157233,1157249,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157234,1157234,1157250,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157235,1157235,1157251,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22802.0,2144.0 +1157236,1157236,1157252,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22804.0,2144.0 +1157237,1157237,1157253,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157238,1157238,1157254,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22802.0,2144.0 +1157239,1157239,1157255,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22801.0,2143.0 +1157240,1157240,1157256,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22802.0,2144.0 +1157241,1157241,1157257,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22801.0,2143.0 +1157242,1157242,1157258,1,21.0,1.0,1.0,0.0,1,5800.0,1080470,6.0,22801.0,2143.0 +1157243,1157243,1157259,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22801.0,2143.0 +1157244,1157244,1157260,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22802.0,2144.0 +1157245,1157245,1157261,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22805.0,2145.0 +1157246,1157246,1157262,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22802.0,2144.0 +1157247,1157247,1157263,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22804.0,2144.0 +1157248,1157248,1157264,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22804.0,2144.0 +1157249,1157249,1157265,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22802.0,2144.0 +1157250,1157250,1157266,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22802.0,2144.0 +1157251,1157251,1157267,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22801.0,2143.0 +1157252,1157252,1157268,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22802.0,2144.0 +1157253,1157253,1157269,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22802.0,2144.0 +1157254,1157254,1157270,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22802.0,2144.0 +1157255,1157255,1157271,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22804.0,2144.0 +1157256,1157256,1157272,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22802.0,2144.0 +1157257,1157257,1157273,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22801.0,2143.0 +1157258,1157258,1157274,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22804.0,2144.0 +1157259,1157259,1157275,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22801.0,2143.0 +1157260,1157260,1157276,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22801.0,2143.0 +1157261,1157261,1157277,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22801.0,2143.0 +1157262,1157262,1157278,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22801.0,2143.0 +1157263,1157263,1157279,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22804.0,2144.0 +1157264,1157264,1157280,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22802.0,2144.0 +1157265,1157265,1157281,2,19.0,1.0,0.0,0.0,1,29410.0,1031452,5.0,22802.0,2144.0 +1157266,1157266,1157282,1,23.0,1.0,0.0,0.0,1,12500.0,1010145,6.0,22801.0,2143.0 +1157267,1157267,1157283,1,23.0,1.0,0.0,0.0,1,21000.0,1073449,6.0,22802.0,2144.0 +1157268,1157268,1157284,1,24.0,1.0,0.0,0.0,1,4000.0,1080470,6.0,22802.0,2144.0 +1157269,1157269,1157285,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22811.0,2148.0 +1157270,1157270,1157286,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22810.0,2148.0 +1157271,1157271,1157287,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22810.0,2148.0 +1157272,1157272,1157288,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22811.0,2148.0 +1157273,1157273,1157289,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22810.0,2148.0 +1157274,1157274,1157290,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157275,1157275,1157291,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157276,1157276,1157292,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157277,1157277,1157293,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157278,1157278,1157294,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157279,1157279,1157295,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157280,1157280,1157296,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157281,1157281,1157297,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157282,1157282,1157298,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157283,1157283,1157299,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157284,1157284,1157300,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157285,1157285,1157301,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157286,1157286,1157302,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157287,1157287,1157303,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157288,1157288,1157304,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157289,1157289,1157305,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157290,1157290,1157306,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157291,1157291,1157307,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157292,1157292,1157308,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157293,1157293,1157309,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157294,1157294,1157310,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157295,1157295,1157311,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157296,1157296,1157312,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157297,1157297,1157313,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157298,1157298,1157314,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157299,1157299,1157315,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157300,1157300,1157316,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157301,1157301,1157317,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157302,1157302,1157318,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157303,1157303,1157319,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157304,1157304,1157320,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157305,1157305,1157321,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157306,1157306,1157322,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157307,1157307,1157323,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157308,1157308,1157324,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157309,1157309,1157325,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157310,1157310,1157326,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157311,1157311,1157327,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157312,1157312,1157328,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157313,1157313,1157329,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157314,1157314,1157330,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157315,1157315,1157331,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157316,1157316,1157332,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157317,1157317,1157333,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157318,1157318,1157334,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157319,1157319,1157335,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157320,1157320,1157336,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157321,1157321,1157337,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157322,1157322,1157338,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157323,1157323,1157339,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157324,1157324,1157340,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157325,1157325,1157341,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157326,1157326,1157342,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157327,1157327,1157343,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157328,1157328,1157344,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157329,1157329,1157345,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157330,1157330,1157346,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157331,1157331,1157347,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157332,1157332,1157348,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157333,1157333,1157349,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157334,1157334,1157350,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157335,1157335,1157351,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157336,1157336,1157352,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157337,1157337,1157353,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157338,1157338,1157354,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157339,1157339,1157355,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157340,1157340,1157356,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157341,1157341,1157357,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157342,1157342,1157358,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157343,1157343,1157359,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157344,1157344,1157360,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157345,1157345,1157361,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157346,1157346,1157362,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157347,1157347,1157363,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157348,1157348,1157364,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157349,1157349,1157365,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157350,1157350,1157366,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157351,1157351,1157367,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157352,1157352,1157368,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157353,1157353,1157369,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157354,1157354,1157370,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157355,1157355,1157371,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157356,1157356,1157372,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157357,1157357,1157373,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157358,1157358,1157374,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157359,1157359,1157375,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22811.0,2148.0 +1157360,1157360,1157376,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22810.0,2148.0 +1157361,1157361,1157377,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157362,1157362,1157378,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157363,1157363,1157379,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157364,1157364,1157380,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157365,1157365,1157381,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157366,1157366,1157382,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157367,1157367,1157383,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157368,1157368,1157384,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157369,1157369,1157385,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157370,1157370,1157386,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157371,1157371,1157387,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157372,1157372,1157388,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157373,1157373,1157389,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157374,1157374,1157390,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157375,1157375,1157391,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157376,1157376,1157392,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157377,1157377,1157393,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157378,1157378,1157394,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157379,1157379,1157395,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157380,1157380,1157396,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157381,1157381,1157397,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157382,1157382,1157398,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157383,1157383,1157399,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157384,1157384,1157400,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157385,1157385,1157401,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157386,1157386,1157402,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157387,1157387,1157403,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157388,1157388,1157404,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157389,1157389,1157405,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157390,1157390,1157406,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157391,1157391,1157407,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157392,1157392,1157408,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157393,1157393,1157409,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157394,1157394,1157410,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157395,1157395,1157411,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157396,1157396,1157412,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157397,1157397,1157413,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157398,1157398,1157414,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157399,1157399,1157415,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157400,1157400,1157416,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157401,1157401,1157417,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157402,1157402,1157418,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157403,1157403,1157419,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157404,1157404,1157420,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157405,1157405,1157421,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157406,1157406,1157422,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157407,1157407,1157423,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157408,1157408,1157424,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157409,1157409,1157425,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157410,1157410,1157426,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22810.0,2148.0 +1157411,1157411,1157427,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22811.0,2148.0 +1157412,1157412,1157428,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22812.0,2149.0 +1157413,1157413,1157429,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22812.0,2149.0 +1157414,1157414,1157430,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157415,1157415,1157431,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22810.0,2148.0 +1157416,1157416,1157432,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157417,1157417,1157433,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22810.0,2148.0 +1157418,1157418,1157434,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157419,1157419,1157435,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22810.0,2148.0 +1157420,1157420,1157436,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22810.0,2148.0 +1157421,1157421,1157437,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22812.0,2149.0 +1157422,1157422,1157438,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157423,1157423,1157439,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157424,1157424,1157440,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157425,1157425,1157441,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157426,1157426,1157442,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22812.0,2149.0 +1157427,1157427,1157443,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22810.0,2148.0 +1157428,1157428,1157444,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22810.0,2148.0 +1157429,1157429,1157445,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157430,1157430,1157446,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22810.0,2148.0 +1157431,1157431,1157447,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157432,1157432,1157448,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22812.0,2149.0 +1157433,1157433,1157449,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22812.0,2149.0 +1157434,1157434,1157450,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157435,1157435,1157451,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22812.0,2149.0 +1157436,1157436,1157452,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22812.0,2149.0 +1157437,1157437,1157453,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157438,1157438,1157454,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157439,1157439,1157455,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22810.0,2148.0 +1157440,1157440,1157456,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157441,1157441,1157457,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157442,1157442,1157458,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22812.0,2149.0 +1157443,1157443,1157459,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22810.0,2148.0 +1157444,1157444,1157460,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22811.0,2148.0 +1157445,1157445,1157461,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22812.0,2149.0 +1157446,1157446,1157462,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22810.0,2148.0 +1157447,1157447,1157463,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22810.0,2148.0 +1157448,1157448,1157464,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22812.0,2149.0 +1157449,1157449,1157465,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22811.0,2148.0 +1157450,1157450,1157466,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22812.0,2149.0 +1157451,1157451,1157467,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22810.0,2148.0 +1157452,1157452,1157468,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22811.0,2148.0 +1157453,1157453,1157469,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22812.0,2149.0 +1157454,1157454,1157470,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22812.0,2149.0 +1157455,1157455,1157471,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22812.0,2149.0 +1157456,1157456,1157472,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22812.0,2149.0 +1157457,1157457,1157473,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22812.0,2149.0 +1157458,1157458,1157474,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157459,1157459,1157475,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157460,1157460,1157476,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22811.0,2148.0 +1157461,1157461,1157477,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22811.0,2148.0 +1157462,1157462,1157478,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22812.0,2149.0 +1157463,1157463,1157479,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157464,1157464,1157480,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157465,1157465,1157481,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157466,1157466,1157482,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22811.0,2148.0 +1157467,1157467,1157483,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22810.0,2148.0 +1157468,1157468,1157484,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22810.0,2148.0 +1157469,1157469,1157485,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22811.0,2148.0 +1157470,1157470,1157486,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22810.0,2148.0 +1157471,1157471,1157487,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157472,1157472,1157488,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157473,1157473,1157489,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22812.0,2149.0 +1157474,1157474,1157490,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157475,1157475,1157491,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157476,1157476,1157492,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157477,1157477,1157493,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157478,1157478,1157494,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22812.0,2149.0 +1157479,1157479,1157495,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22811.0,2148.0 +1157480,1157480,1157496,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22811.0,2148.0 +1157481,1157481,1157497,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157482,1157482,1157498,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22811.0,2148.0 +1157483,1157483,1157499,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22811.0,2148.0 +1157484,1157484,1157500,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22812.0,2149.0 +1157485,1157485,1157501,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157486,1157486,1157502,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157487,1157487,1157503,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22812.0,2149.0 +1157488,1157488,1157504,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22812.0,2149.0 +1157489,1157489,1157505,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22810.0,2148.0 +1157490,1157490,1157506,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22810.0,2148.0 +1157491,1157491,1157507,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22810.0,2148.0 +1157492,1157492,1157508,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22810.0,2148.0 +1157493,1157493,1157509,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157494,1157494,1157510,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157495,1157495,1157511,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22812.0,2149.0 +1157496,1157496,1157512,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157497,1157497,1157513,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157498,1157498,1157514,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157499,1157499,1157515,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22812.0,2149.0 +1157500,1157500,1157516,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22812.0,2149.0 +1157501,1157501,1157517,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157502,1157502,1157518,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157503,1157503,1157519,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22812.0,2149.0 +1157504,1157504,1157520,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22810.0,2148.0 +1157505,1157505,1157521,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22812.0,2149.0 +1157506,1157506,1157522,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22812.0,2149.0 +1157507,1157507,1157523,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22810.0,2148.0 +1157508,1157508,1157524,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22812.0,2149.0 +1157509,1157509,1157525,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22810.0,2148.0 +1157510,1157510,1157526,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22812.0,2149.0 +1157511,1157511,1157527,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22811.0,2148.0 +1157512,1157512,1157528,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157513,1157513,1157529,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157514,1157514,1157530,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22811.0,2148.0 +1157515,1157515,1157531,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22811.0,2148.0 +1157516,1157516,1157532,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22811.0,2148.0 +1157517,1157517,1157533,1,23.0,4.0,0.0,0.0,1,0.0,1010145,6.0,22812.0,2149.0 +1157518,1157518,1157534,1,24.0,2.0,0.0,0.0,1,7700.0,1010145,4.0,22811.0,2148.0 +1157519,1157519,1157535,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22811.0,2148.0 +1157520,1157520,1157536,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22812.0,2149.0 +1157521,1157521,1157537,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22811.0,2148.0 +1157522,1157522,1157538,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22812.0,2149.0 +1157523,1157523,1157539,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22810.0,2148.0 +1157524,1157524,1157540,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22810.0,2148.0 +1157525,1157525,1157541,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22811.0,2148.0 +1157526,1157526,1157542,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22812.0,2149.0 +1157527,1157527,1157543,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22810.0,2148.0 +1157528,1157528,1157544,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1157529,1157529,1157545,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157530,1157530,1157546,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157531,1157531,1157547,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1157532,1157532,1157548,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157533,1157533,1157549,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157534,1157534,1157550,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157535,1157535,1157551,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157536,1157536,1157552,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157537,1157537,1157553,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157538,1157538,1157554,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157539,1157539,1157555,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157540,1157540,1157556,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157541,1157541,1157557,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157542,1157542,1157558,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157543,1157543,1157559,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1157544,1157544,1157560,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157545,1157545,1157561,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1157546,1157546,1157562,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157547,1157547,1157563,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1157548,1157548,1157564,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1157549,1157549,1157565,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157550,1157550,1157566,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1157551,1157551,1157567,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157552,1157552,1157568,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1157553,1157553,1157569,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157554,1157554,1157570,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157555,1157555,1157571,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1157556,1157556,1157572,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157557,1157557,1157573,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157558,1157558,1157574,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157559,1157559,1157575,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157560,1157560,1157576,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157561,1157561,1157577,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157562,1157562,1157578,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157563,1157563,1157579,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157564,1157564,1157580,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157565,1157565,1157581,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157566,1157566,1157582,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157567,1157567,1157583,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22810.0,2148.0 +1157568,1157568,1157584,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157569,1157569,1157585,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22811.0,2148.0 +1157570,1157570,1157586,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157571,1157571,1157587,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157572,1157572,1157588,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157573,1157573,1157589,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22812.0,2149.0 +1157574,1157574,1157590,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157575,1157575,1157591,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22811.0,2148.0 +1157576,1157576,1157592,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157577,1157577,1157593,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157578,1157578,1157594,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157579,1157579,1157595,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157580,1157580,1157596,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22811.0,2148.0 +1157581,1157581,1157597,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157582,1157582,1157598,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157583,1157583,1157599,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157584,1157584,1157600,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22810.0,2148.0 +1157585,1157585,1157601,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22811.0,2148.0 +1157586,1157586,1157602,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157587,1157587,1157603,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157588,1157588,1157604,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157589,1157589,1157605,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157590,1157590,1157606,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157591,1157591,1157607,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157592,1157592,1157608,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157593,1157593,1157609,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157594,1157594,1157610,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157595,1157595,1157611,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157596,1157596,1157612,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157597,1157597,1157613,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157598,1157598,1157614,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157599,1157599,1157615,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157600,1157600,1157616,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157601,1157601,1157617,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157602,1157602,1157618,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157603,1157603,1157619,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157604,1157604,1157620,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157605,1157605,1157621,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157606,1157606,1157622,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157607,1157607,1157623,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157608,1157608,1157624,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157609,1157609,1157625,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157610,1157610,1157626,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157611,1157611,1157627,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157612,1157612,1157628,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157613,1157613,1157629,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157614,1157614,1157630,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157615,1157615,1157631,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157616,1157616,1157632,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157617,1157617,1157633,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157618,1157618,1157634,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157619,1157619,1157635,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157620,1157620,1157636,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157621,1157621,1157637,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157622,1157622,1157638,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157623,1157623,1157639,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157624,1157624,1157640,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157625,1157625,1157641,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157626,1157626,1157642,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157627,1157627,1157643,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157628,1157628,1157644,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157629,1157629,1157645,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157630,1157630,1157646,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157631,1157631,1157647,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157632,1157632,1157648,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157633,1157633,1157649,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157634,1157634,1157650,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157635,1157635,1157651,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157636,1157636,1157652,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22811.0,2148.0 +1157637,1157637,1157653,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157638,1157638,1157654,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157639,1157639,1157655,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22810.0,2148.0 +1157640,1157640,1157656,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22810.0,2148.0 +1157641,1157641,1157657,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22810.0,2148.0 +1157642,1157642,1157658,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22810.0,2148.0 +1157643,1157643,1157659,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22811.0,2148.0 +1157644,1157644,1157660,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22811.0,2148.0 +1157645,1157645,1157661,1,21.0,1.0,1.0,0.0,1,5800.0,1080470,6.0,22812.0,2149.0 +1157646,1157646,1157662,1,21.0,1.0,1.0,0.0,1,5800.0,1080470,6.0,22812.0,2149.0 +1157647,1157647,1157663,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22811.0,2148.0 +1157648,1157648,1157664,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22811.0,2148.0 +1157649,1157649,1157665,1,21.0,1.0,1.0,0.0,1,5800.0,1080470,6.0,22811.0,2148.0 +1157650,1157650,1157666,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22810.0,2148.0 +1157651,1157651,1157667,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22811.0,2148.0 +1157652,1157652,1157668,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22811.0,2148.0 +1157653,1157653,1157669,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22810.0,2148.0 +1157654,1157654,1157670,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22810.0,2148.0 +1157655,1157655,1157671,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22810.0,2148.0 +1157656,1157656,1157672,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22811.0,2148.0 +1157657,1157657,1157673,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22811.0,2148.0 +1157658,1157658,1157674,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22812.0,2149.0 +1157659,1157659,1157675,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22811.0,2148.0 +1157660,1157660,1157676,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1157661,1157661,1157677,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22811.0,2148.0 +1157662,1157662,1157678,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1157663,1157663,1157679,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22811.0,2148.0 +1157664,1157664,1157680,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22810.0,2148.0 +1157665,1157665,1157681,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22811.0,2148.0 +1157666,1157666,1157682,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1157667,1157667,1157683,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22812.0,2149.0 +1157668,1157668,1157684,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22810.0,2148.0 +1157669,1157669,1157685,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22812.0,2149.0 +1157670,1157670,1157686,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22811.0,2148.0 +1157671,1157671,1157687,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22810.0,2148.0 +1157672,1157672,1157688,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22810.0,2148.0 +1157673,1157673,1157689,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22811.0,2148.0 +1157674,1157674,1157690,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1157675,1157675,1157691,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22812.0,2149.0 +1157676,1157676,1157692,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22811.0,2148.0 +1157677,1157677,1157693,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22810.0,2148.0 +1157678,1157678,1157694,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22810.0,2148.0 +1157679,1157679,1157695,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22810.0,2148.0 +1157680,1157680,1157696,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22810.0,2148.0 +1157681,1157681,1157697,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22811.0,2148.0 +1157682,1157682,1157698,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22811.0,2148.0 +1157683,1157683,1157699,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22812.0,2149.0 +1157684,1157684,1157700,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22810.0,2148.0 +1157685,1157685,1157701,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22810.0,2148.0 +1157686,1157686,1157702,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22811.0,2148.0 +1157687,1157687,1157703,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22812.0,2149.0 +1157688,1157688,1157704,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22810.0,2148.0 +1157689,1157689,1157705,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1157690,1157690,1157706,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22810.0,2148.0 +1157691,1157691,1157707,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22812.0,2149.0 +1157692,1157692,1157708,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22810.0,2148.0 +1157693,1157693,1157709,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22810.0,2148.0 +1157694,1157694,1157710,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1157695,1157695,1157711,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22812.0,2149.0 +1157696,1157696,1157712,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22811.0,2148.0 +1157697,1157697,1157713,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22810.0,2148.0 +1157698,1157698,1157714,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22810.0,2148.0 +1157699,1157699,1157715,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22810.0,2148.0 +1157700,1157700,1157716,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22811.0,2148.0 +1157701,1157701,1157717,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22811.0,2148.0 +1157702,1157702,1157718,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22810.0,2148.0 +1157703,1157703,1157719,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1157704,1157704,1157720,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22810.0,2148.0 +1157705,1157705,1157721,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1157706,1157706,1157722,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22811.0,2148.0 +1157707,1157707,1157723,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22811.0,2148.0 +1157708,1157708,1157724,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22812.0,2149.0 +1157709,1157709,1157725,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22810.0,2148.0 +1157710,1157710,1157726,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22810.0,2148.0 +1157711,1157711,1157727,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22811.0,2148.0 +1157712,1157712,1157728,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22811.0,2148.0 +1157713,1157713,1157729,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22811.0,2148.0 +1157714,1157714,1157730,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22810.0,2148.0 +1157715,1157715,1157731,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22810.0,2148.0 +1157716,1157716,1157732,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22811.0,2148.0 +1157717,1157717,1157733,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1157718,1157718,1157734,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22810.0,2148.0 +1157719,1157719,1157735,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22810.0,2148.0 +1157720,1157720,1157736,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22810.0,2148.0 +1157721,1157721,1157737,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22811.0,2148.0 +1157722,1157722,1157738,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22810.0,2148.0 +1157723,1157723,1157739,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22810.0,2148.0 +1157724,1157724,1157740,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22811.0,2148.0 +1157725,1157725,1157741,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22810.0,2148.0 +1157726,1157726,1157742,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22812.0,2149.0 +1157727,1157727,1157743,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22810.0,2148.0 +1157728,1157728,1157744,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22810.0,2148.0 +1157729,1157729,1157745,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22811.0,2148.0 +1157730,1157730,1157746,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22812.0,2149.0 +1157731,1157731,1157747,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22810.0,2148.0 +1157732,1157732,1157748,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22810.0,2148.0 +1157733,1157733,1157749,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22810.0,2148.0 +1157734,1157734,1157750,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22811.0,2148.0 +1157735,1157735,1157751,3,60.0,1.0,2.0,0.0,1,11630.0,1073449,1.0,22814.0,2150.0 +1157736,1157736,1157752,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22813.0,2150.0 +1157737,1157737,1157753,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22812.0,2149.0 +1157738,1157738,1157754,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22812.0,2149.0 +1157739,1157739,1157755,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1157740,1157740,1157756,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22813.0,2150.0 +1157741,1157741,1157757,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22818.0,2150.0 +1157742,1157742,1157758,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1157743,1157743,1157759,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1157744,1157744,1157760,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1157745,1157745,1157761,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22818.0,2150.0 +1157746,1157746,1157762,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22816.0,2150.0 +1157747,1157747,1157763,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22813.0,2150.0 +1157748,1157748,1157764,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22816.0,2150.0 +1157749,1157749,1157765,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22813.0,2150.0 +1157750,1157750,1157766,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22812.0,2149.0 +1157751,1157751,1157767,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22813.0,2150.0 +1157752,1157752,1157768,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22818.0,2150.0 +1157753,1157753,1157769,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22814.0,2150.0 +1157754,1157754,1157770,3,47.0,1.0,0.0,0.0,1,15400.0,1080470,1.0,22813.0,2150.0 +1157755,1157755,1157771,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157756,1157756,1157772,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157757,1157757,1157773,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157758,1157758,1157774,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157759,1157759,1157775,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157760,1157760,1157776,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157761,1157761,1157777,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157762,1157762,1157778,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157763,1157763,1157779,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157764,1157764,1157780,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157765,1157765,1157781,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157766,1157766,1157782,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157767,1157767,1157783,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157768,1157768,1157784,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157769,1157769,1157785,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157770,1157770,1157786,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157771,1157771,1157787,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157772,1157772,1157788,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157773,1157773,1157789,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157774,1157774,1157790,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157775,1157775,1157791,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157776,1157776,1157792,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157777,1157777,1157793,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157778,1157778,1157794,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157779,1157779,1157795,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157780,1157780,1157796,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157781,1157781,1157797,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157782,1157782,1157798,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157783,1157783,1157799,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157784,1157784,1157800,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157785,1157785,1157801,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157786,1157786,1157802,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157787,1157787,1157803,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157788,1157788,1157804,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157789,1157789,1157805,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157790,1157790,1157806,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157791,1157791,1157807,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157792,1157792,1157808,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157793,1157793,1157809,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157794,1157794,1157810,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157795,1157795,1157811,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157796,1157796,1157812,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157797,1157797,1157813,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157798,1157798,1157814,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157799,1157799,1157815,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157800,1157800,1157816,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157801,1157801,1157817,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157802,1157802,1157818,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157803,1157803,1157819,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157804,1157804,1157820,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157805,1157805,1157821,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157806,1157806,1157822,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157807,1157807,1157823,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157808,1157808,1157824,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157809,1157809,1157825,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157810,1157810,1157826,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157811,1157811,1157827,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157812,1157812,1157828,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157813,1157813,1157829,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157814,1157814,1157830,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157815,1157815,1157831,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157816,1157816,1157832,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157817,1157817,1157833,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157818,1157818,1157834,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157819,1157819,1157835,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157820,1157820,1157836,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157821,1157821,1157837,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157822,1157822,1157838,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157823,1157823,1157839,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157824,1157824,1157840,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157825,1157825,1157841,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157826,1157826,1157842,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157827,1157827,1157843,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157828,1157828,1157844,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157829,1157829,1157845,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157830,1157830,1157846,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157831,1157831,1157847,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157832,1157832,1157848,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157833,1157833,1157849,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157834,1157834,1157850,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157835,1157835,1157851,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22813.0,2150.0 +1157836,1157836,1157852,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1157837,1157837,1157853,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22814.0,2150.0 +1157838,1157838,1157854,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1157839,1157839,1157855,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1157840,1157840,1157856,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22818.0,2150.0 +1157841,1157841,1157857,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22812.0,2149.0 +1157842,1157842,1157858,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22812.0,2149.0 +1157843,1157843,1157859,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22812.0,2149.0 +1157844,1157844,1157860,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22814.0,2150.0 +1157845,1157845,1157861,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22814.0,2150.0 +1157846,1157846,1157862,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22813.0,2150.0 +1157847,1157847,1157863,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22818.0,2150.0 +1157848,1157848,1157864,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22816.0,2150.0 +1157849,1157849,1157865,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22816.0,2150.0 +1157850,1157850,1157866,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22813.0,2150.0 +1157851,1157851,1157867,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22813.0,2150.0 +1157852,1157852,1157868,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22816.0,2150.0 +1157853,1157853,1157869,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22813.0,2150.0 +1157854,1157854,1157870,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22818.0,2150.0 +1157855,1157855,1157871,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22813.0,2150.0 +1157856,1157856,1157872,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22814.0,2150.0 +1157857,1157857,1157873,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22818.0,2150.0 +1157858,1157858,1157874,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22818.0,2150.0 +1157859,1157859,1157875,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22814.0,2150.0 +1157860,1157860,1157876,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22818.0,2150.0 +1157861,1157861,1157877,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22812.0,2149.0 +1157862,1157862,1157878,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22813.0,2150.0 +1157863,1157863,1157879,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22813.0,2150.0 +1157864,1157864,1157880,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22818.0,2150.0 +1157865,1157865,1157881,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22818.0,2150.0 +1157866,1157866,1157882,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22818.0,2150.0 +1157867,1157867,1157883,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22818.0,2150.0 +1157868,1157868,1157884,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22813.0,2150.0 +1157869,1157869,1157885,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22812.0,2149.0 +1157870,1157870,1157886,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22814.0,2150.0 +1157871,1157871,1157887,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22813.0,2150.0 +1157872,1157872,1157888,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22818.0,2150.0 +1157873,1157873,1157889,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22814.0,2150.0 +1157874,1157874,1157890,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22818.0,2150.0 +1157875,1157875,1157891,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22813.0,2150.0 +1157876,1157876,1157892,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22816.0,2150.0 +1157877,1157877,1157893,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157878,1157878,1157894,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22813.0,2150.0 +1157879,1157879,1157895,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22816.0,2150.0 +1157880,1157880,1157896,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157881,1157881,1157897,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22813.0,2150.0 +1157882,1157882,1157898,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22813.0,2150.0 +1157883,1157883,1157899,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22813.0,2150.0 +1157884,1157884,1157900,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22813.0,2150.0 +1157885,1157885,1157901,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22818.0,2150.0 +1157886,1157886,1157902,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157887,1157887,1157903,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22816.0,2150.0 +1157888,1157888,1157904,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22814.0,2150.0 +1157889,1157889,1157905,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22814.0,2150.0 +1157890,1157890,1157906,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157891,1157891,1157907,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22816.0,2150.0 +1157892,1157892,1157908,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22816.0,2150.0 +1157893,1157893,1157909,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22816.0,2150.0 +1157894,1157894,1157910,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22814.0,2150.0 +1157895,1157895,1157911,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22813.0,2150.0 +1157896,1157896,1157912,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22813.0,2150.0 +1157897,1157897,1157913,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22816.0,2150.0 +1157898,1157898,1157914,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157899,1157899,1157915,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22813.0,2150.0 +1157900,1157900,1157916,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22813.0,2150.0 +1157901,1157901,1157917,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1157902,1157902,1157918,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22813.0,2150.0 +1157903,1157903,1157919,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22813.0,2150.0 +1157904,1157904,1157920,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22818.0,2150.0 +1157905,1157905,1157921,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22813.0,2150.0 +1157906,1157906,1157922,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22812.0,2149.0 +1157907,1157907,1157923,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22813.0,2150.0 +1157908,1157908,1157924,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22813.0,2150.0 +1157909,1157909,1157925,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22818.0,2150.0 +1157910,1157910,1157926,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22814.0,2150.0 +1157911,1157911,1157927,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22816.0,2150.0 +1157912,1157912,1157928,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22812.0,2149.0 +1157913,1157913,1157929,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22812.0,2149.0 +1157914,1157914,1157930,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22814.0,2150.0 +1157915,1157915,1157931,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22814.0,2150.0 +1157916,1157916,1157932,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22813.0,2150.0 +1157917,1157917,1157933,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22813.0,2150.0 +1157918,1157918,1157934,1,23.0,4.0,0.0,0.0,1,800.0,1054606,4.0,22813.0,2150.0 +1157919,1157919,1157935,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22814.0,2150.0 +1157920,1157920,1157936,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22814.0,2150.0 +1157921,1157921,1157937,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22814.0,2150.0 +1157922,1157922,1157938,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22818.0,2150.0 +1157923,1157923,1157939,1,20.0,4.0,0.0,0.0,1,0.0,1010145,4.0,22813.0,2150.0 +1157924,1157924,1157940,1,20.0,4.0,0.0,0.0,1,0.0,1073449,4.0,22812.0,2149.0 +1157925,1157925,1157941,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22814.0,2150.0 +1157926,1157926,1157942,1,22.0,1.0,2.0,0.0,1,88000.0,1054606,6.0,22814.0,2150.0 +1157927,1157927,1157943,1,22.0,1.0,2.0,0.0,1,88000.0,1054606,6.0,22813.0,2150.0 +1157928,1157928,1157944,1,22.0,1.0,2.0,0.0,1,88000.0,1054606,6.0,22814.0,2150.0 +1157929,1157929,1157945,1,22.0,1.0,2.0,0.0,1,88000.0,1054606,6.0,22816.0,2150.0 +1157930,1157930,1157946,1,22.0,1.0,2.0,0.0,1,88000.0,1054606,6.0,22814.0,2150.0 +1157931,1157931,1157947,1,22.0,1.0,2.0,0.0,1,88000.0,1054606,6.0,22816.0,2150.0 +1157932,1157932,1157948,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1157933,1157933,1157949,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22812.0,2149.0 +1157934,1157934,1157950,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22812.0,2149.0 +1157935,1157935,1157951,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1157936,1157936,1157952,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157937,1157937,1157953,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157938,1157938,1157954,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22812.0,2149.0 +1157939,1157939,1157955,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157940,1157940,1157956,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1157941,1157941,1157957,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157942,1157942,1157958,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22812.0,2149.0 +1157943,1157943,1157959,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22812.0,2149.0 +1157944,1157944,1157960,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157945,1157945,1157961,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157946,1157946,1157962,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22812.0,2149.0 +1157947,1157947,1157963,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157948,1157948,1157964,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22812.0,2149.0 +1157949,1157949,1157965,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1157950,1157950,1157966,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157951,1157951,1157967,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1157952,1157952,1157968,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157953,1157953,1157969,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1157954,1157954,1157970,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157955,1157955,1157971,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157956,1157956,1157972,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22812.0,2149.0 +1157957,1157957,1157973,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157958,1157958,1157974,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22816.0,2150.0 +1157959,1157959,1157975,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22816.0,2150.0 +1157960,1157960,1157976,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22812.0,2149.0 +1157961,1157961,1157977,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22812.0,2149.0 +1157962,1157962,1157978,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22813.0,2150.0 +1157963,1157963,1157979,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22812.0,2149.0 +1157964,1157964,1157980,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22814.0,2150.0 +1157965,1157965,1157981,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22818.0,2150.0 +1157966,1157966,1157982,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22814.0,2150.0 +1157967,1157967,1157983,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22813.0,2150.0 +1157968,1157968,1157984,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22814.0,2150.0 +1157969,1157969,1157985,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22812.0,2149.0 +1157970,1157970,1157986,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22812.0,2149.0 +1157971,1157971,1157987,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22814.0,2150.0 +1157972,1157972,1157988,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22814.0,2150.0 +1157973,1157973,1157989,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157974,1157974,1157990,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1157975,1157975,1157991,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157976,1157976,1157992,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1157977,1157977,1157993,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1157978,1157978,1157994,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22816.0,2150.0 +1157979,1157979,1157995,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1157980,1157980,1157996,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22816.0,2150.0 +1157981,1157981,1157997,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1157982,1157982,1157998,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157983,1157983,1157999,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157984,1157984,1158000,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1157985,1157985,1158001,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1157986,1157986,1158002,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1157987,1157987,1158003,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22816.0,2150.0 +1157988,1157988,1158004,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157989,1157989,1158005,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157990,1157990,1158006,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1157991,1157991,1158007,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1157992,1157992,1158008,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1157993,1157993,1158009,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157994,1157994,1158010,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157995,1157995,1158011,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1157996,1157996,1158012,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1157997,1157997,1158013,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1157998,1157998,1158014,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1157999,1157999,1158015,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1158000,1158000,1158016,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158001,1158001,1158017,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1158002,1158002,1158018,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158003,1158003,1158019,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1158004,1158004,1158020,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158005,1158005,1158021,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158006,1158006,1158022,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1158007,1158007,1158023,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22816.0,2150.0 +1158008,1158008,1158024,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158009,1158009,1158025,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1158010,1158010,1158026,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1158011,1158011,1158027,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1158012,1158012,1158028,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1158013,1158013,1158029,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1158014,1158014,1158030,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158015,1158015,1158031,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158016,1158016,1158032,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158017,1158017,1158033,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158018,1158018,1158034,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1158019,1158019,1158035,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158020,1158020,1158036,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1158021,1158021,1158037,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22814.0,2150.0 +1158022,1158022,1158038,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1158023,1158023,1158039,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22816.0,2150.0 +1158024,1158024,1158040,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22816.0,2150.0 +1158025,1158025,1158041,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22813.0,2150.0 +1158026,1158026,1158042,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22816.0,2150.0 +1158027,1158027,1158043,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22813.0,2150.0 +1158028,1158028,1158044,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22812.0,2149.0 +1158029,1158029,1158045,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22818.0,2150.0 +1158030,1158030,1158046,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22813.0,2150.0 +1158031,1158031,1158047,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22813.0,2150.0 +1158032,1158032,1158048,2,23.0,1.0,2.0,0.0,1,0.0,1073449,5.0,22818.0,2150.0 +1158033,1158033,1158049,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22813.0,2150.0 +1158034,1158034,1158050,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22813.0,2150.0 +1158035,1158035,1158051,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22812.0,2149.0 +1158036,1158036,1158052,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22818.0,2150.0 +1158037,1158037,1158053,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158038,1158038,1158054,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22813.0,2150.0 +1158039,1158039,1158055,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22812.0,2149.0 +1158040,1158040,1158056,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22813.0,2150.0 +1158041,1158041,1158057,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22816.0,2150.0 +1158042,1158042,1158058,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158043,1158043,1158059,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22813.0,2150.0 +1158044,1158044,1158060,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22812.0,2149.0 +1158045,1158045,1158061,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22816.0,2150.0 +1158046,1158046,1158062,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1158047,1158047,1158063,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22814.0,2150.0 +1158048,1158048,1158064,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22813.0,2150.0 +1158049,1158049,1158065,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22814.0,2150.0 +1158050,1158050,1158066,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22813.0,2150.0 +1158051,1158051,1158067,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22814.0,2150.0 +1158052,1158052,1158068,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22812.0,2149.0 +1158053,1158053,1158069,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22813.0,2150.0 +1158054,1158054,1158070,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22813.0,2150.0 +1158055,1158055,1158071,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22814.0,2150.0 +1158056,1158056,1158072,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22813.0,2150.0 +1158057,1158057,1158073,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22818.0,2150.0 +1158058,1158058,1158074,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22818.0,2150.0 +1158059,1158059,1158075,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22814.0,2150.0 +1158060,1158060,1158076,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22816.0,2150.0 +1158061,1158061,1158077,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22818.0,2150.0 +1158062,1158062,1158078,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22816.0,2150.0 +1158063,1158063,1158079,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22816.0,2150.0 +1158064,1158064,1158080,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22813.0,2150.0 +1158065,1158065,1158081,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22813.0,2150.0 +1158066,1158066,1158082,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22812.0,2149.0 +1158067,1158067,1158083,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22812.0,2149.0 +1158068,1158068,1158084,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158069,1158069,1158085,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158070,1158070,1158086,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22814.0,2150.0 +1158071,1158071,1158087,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22812.0,2149.0 +1158072,1158072,1158088,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22813.0,2150.0 +1158073,1158073,1158089,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22814.0,2150.0 +1158074,1158074,1158090,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22814.0,2150.0 +1158075,1158075,1158091,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22813.0,2150.0 +1158076,1158076,1158092,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1158077,1158077,1158093,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22816.0,2150.0 +1158078,1158078,1158094,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1158079,1158079,1158095,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1158080,1158080,1158096,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22814.0,2150.0 +1158081,1158081,1158097,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22814.0,2150.0 +1158082,1158082,1158098,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22814.0,2150.0 +1158083,1158083,1158099,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1158084,1158084,1158100,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22816.0,2150.0 +1158085,1158085,1158101,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22813.0,2150.0 +1158086,1158086,1158102,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22813.0,2150.0 +1158087,1158087,1158103,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22812.0,2149.0 +1158088,1158088,1158104,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22814.0,2150.0 +1158089,1158089,1158105,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22812.0,2149.0 +1158090,1158090,1158106,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22814.0,2150.0 +1158091,1158091,1158107,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22814.0,2150.0 +1158092,1158092,1158108,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22813.0,2150.0 +1158093,1158093,1158109,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22814.0,2150.0 +1158094,1158094,1158110,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22812.0,2149.0 +1158095,1158095,1158111,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22813.0,2150.0 +1158096,1158096,1158112,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22814.0,2150.0 +1158097,1158097,1158113,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22814.0,2150.0 +1158098,1158098,1158114,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22813.0,2150.0 +1158099,1158099,1158115,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22814.0,2150.0 +1158100,1158100,1158116,1,23.0,1.0,1.0,0.0,1,4300.0,1080470,4.0,22818.0,2150.0 +1158101,1158101,1158117,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22818.0,2150.0 +1158102,1158102,1158118,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22816.0,2150.0 +1158103,1158103,1158119,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22816.0,2150.0 +1158104,1158104,1158120,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22816.0,2150.0 +1158105,1158105,1158121,1,19.0,1.0,0.0,0.0,1,1300.0,1073449,4.0,22813.0,2150.0 +1158106,1158106,1158122,1,21.0,1.0,0.0,0.0,1,1700.0,1031452,4.0,22814.0,2150.0 +1158107,1158107,1158123,1,21.0,1.0,0.0,0.0,1,1700.0,1031452,4.0,22814.0,2150.0 +1158108,1158108,1158124,1,21.0,1.0,0.0,0.0,1,2150.0,1010145,4.0,22812.0,2149.0 +1158109,1158109,1158125,1,21.0,1.0,0.0,0.0,1,2150.0,1010145,4.0,22814.0,2150.0 +1158110,1158110,1158126,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22817.0,2150.0 +1158111,1158111,1158127,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22816.0,2150.0 +1158112,1158112,1158128,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22818.0,2150.0 +1158113,1158113,1158129,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22812.0,2149.0 +1158114,1158114,1158130,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22818.0,2150.0 +1158115,1158115,1158131,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22812.0,2149.0 +1158116,1158116,1158132,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22818.0,2150.0 +1158117,1158117,1158133,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22812.0,2149.0 +1158118,1158118,1158134,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22817.0,2150.0 +1158119,1158119,1158135,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22815.0,2150.0 +1158120,1158120,1158136,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22816.0,2150.0 +1158121,1158121,1158137,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22812.0,2149.0 +1158122,1158122,1158138,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22818.0,2150.0 +1158123,1158123,1158139,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22817.0,2150.0 +1158124,1158124,1158140,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22817.0,2150.0 +1158125,1158125,1158141,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22816.0,2150.0 +1158126,1158126,1158142,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22812.0,2149.0 +1158127,1158127,1158143,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22817.0,2150.0 +1158128,1158128,1158144,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22812.0,2149.0 +1158129,1158129,1158145,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22818.0,2150.0 +1158130,1158130,1158146,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22816.0,2150.0 +1158131,1158131,1158147,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22812.0,2149.0 +1158132,1158132,1158148,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22815.0,2150.0 +1158133,1158133,1158149,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22818.0,2150.0 +1158134,1158134,1158150,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22817.0,2150.0 +1158135,1158135,1158151,3,65.0,1.0,3.0,0.0,1,248400.0,1010145,1.0,22812.0,2149.0 +1158136,1158136,1158152,6,45.0,4.0,2.0,0.0,1,17000.0,1010145,3.0,22818.0,2150.0 +1158137,1158137,1158153,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158138,1158138,1158154,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158139,1158139,1158155,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158140,1158140,1158156,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22818.0,2150.0 +1158141,1158141,1158157,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22818.0,2150.0 +1158142,1158142,1158158,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158143,1158143,1158159,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22818.0,2150.0 +1158144,1158144,1158160,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22818.0,2150.0 +1158145,1158145,1158161,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22816.0,2150.0 +1158146,1158146,1158162,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158147,1158147,1158163,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22817.0,2150.0 +1158148,1158148,1158164,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158149,1158149,1158165,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158150,1158150,1158166,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22817.0,2150.0 +1158151,1158151,1158167,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158152,1158152,1158168,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22818.0,2150.0 +1158153,1158153,1158169,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158154,1158154,1158170,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22816.0,2150.0 +1158155,1158155,1158171,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158156,1158156,1158172,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158157,1158157,1158173,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22818.0,2150.0 +1158158,1158158,1158174,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22817.0,2150.0 +1158159,1158159,1158175,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22812.0,2149.0 +1158160,1158160,1158176,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22818.0,2150.0 +1158161,1158161,1158177,3,49.0,1.0,3.0,3.0,1,188000.0,1054606,1.0,22815.0,2150.0 +1158162,1158162,1158178,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22818.0,2150.0 +1158163,1158163,1158179,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22817.0,2150.0 +1158164,1158164,1158180,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22817.0,2150.0 +1158165,1158165,1158181,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22817.0,2150.0 +1158166,1158166,1158182,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22812.0,2149.0 +1158167,1158167,1158183,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22818.0,2150.0 +1158168,1158168,1158184,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22812.0,2149.0 +1158169,1158169,1158185,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22816.0,2150.0 +1158170,1158170,1158186,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22812.0,2149.0 +1158171,1158171,1158187,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22817.0,2150.0 +1158172,1158172,1158188,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22818.0,2150.0 +1158173,1158173,1158189,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22818.0,2150.0 +1158174,1158174,1158190,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22812.0,2149.0 +1158175,1158175,1158191,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22817.0,2150.0 +1158176,1158176,1158192,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22817.0,2150.0 +1158177,1158177,1158193,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22817.0,2150.0 +1158178,1158178,1158194,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22818.0,2150.0 +1158179,1158179,1158195,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22818.0,2150.0 +1158180,1158180,1158196,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22816.0,2150.0 +1158181,1158181,1158197,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22817.0,2150.0 +1158182,1158182,1158198,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22818.0,2150.0 +1158183,1158183,1158199,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22818.0,2150.0 +1158184,1158184,1158200,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22816.0,2150.0 +1158185,1158185,1158201,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22812.0,2149.0 +1158186,1158186,1158202,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22816.0,2150.0 +1158187,1158187,1158203,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22817.0,2150.0 +1158188,1158188,1158204,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22818.0,2150.0 +1158189,1158189,1158205,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22815.0,2150.0 +1158190,1158190,1158206,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22817.0,2150.0 +1158191,1158191,1158207,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22817.0,2150.0 +1158192,1158192,1158208,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22816.0,2150.0 +1158193,1158193,1158209,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22818.0,2150.0 +1158194,1158194,1158210,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22812.0,2149.0 +1158195,1158195,1158211,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22812.0,2149.0 +1158196,1158196,1158212,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22818.0,2150.0 +1158197,1158197,1158213,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22818.0,2150.0 +1158198,1158198,1158214,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22817.0,2150.0 +1158199,1158199,1158215,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22816.0,2150.0 +1158200,1158200,1158216,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22818.0,2150.0 +1158201,1158201,1158217,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22817.0,2150.0 +1158202,1158202,1158218,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22817.0,2150.0 +1158203,1158203,1158219,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22818.0,2150.0 +1158204,1158204,1158220,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22818.0,2150.0 +1158205,1158205,1158221,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22816.0,2150.0 +1158206,1158206,1158222,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22818.0,2150.0 +1158207,1158207,1158223,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22816.0,2150.0 +1158208,1158208,1158224,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22817.0,2150.0 +1158209,1158209,1158225,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22812.0,2149.0 +1158210,1158210,1158226,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22816.0,2150.0 +1158211,1158211,1158227,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22816.0,2150.0 +1158212,1158212,1158228,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22817.0,2150.0 +1158213,1158213,1158229,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22812.0,2149.0 +1158214,1158214,1158230,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22812.0,2149.0 +1158215,1158215,1158231,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22817.0,2150.0 +1158216,1158216,1158232,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22815.0,2150.0 +1158217,1158217,1158233,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22816.0,2150.0 +1158218,1158218,1158234,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22812.0,2149.0 +1158219,1158219,1158235,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22818.0,2150.0 +1158220,1158220,1158236,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22815.0,2150.0 +1158221,1158221,1158237,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22816.0,2150.0 +1158222,1158222,1158238,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22818.0,2150.0 +1158223,1158223,1158239,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22817.0,2150.0 +1158224,1158224,1158240,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22812.0,2149.0 +1158225,1158225,1158241,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22816.0,2150.0 +1158226,1158226,1158242,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22816.0,2150.0 +1158227,1158227,1158243,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22817.0,2150.0 +1158228,1158228,1158244,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22812.0,2149.0 +1158229,1158229,1158245,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22818.0,2150.0 +1158230,1158230,1158246,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22812.0,2149.0 +1158231,1158231,1158247,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22817.0,2150.0 +1158232,1158232,1158248,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22817.0,2150.0 +1158233,1158233,1158249,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22818.0,2150.0 +1158234,1158234,1158250,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22812.0,2149.0 +1158235,1158235,1158251,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22812.0,2149.0 +1158236,1158236,1158252,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158237,1158237,1158253,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1158238,1158238,1158254,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158239,1158239,1158255,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158240,1158240,1158256,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158241,1158241,1158257,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158242,1158242,1158258,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158243,1158243,1158259,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158244,1158244,1158260,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158245,1158245,1158261,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158246,1158246,1158262,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1158247,1158247,1158263,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158248,1158248,1158264,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158249,1158249,1158265,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158250,1158250,1158266,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158251,1158251,1158267,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158252,1158252,1158268,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158253,1158253,1158269,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1158254,1158254,1158270,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1158255,1158255,1158271,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1158256,1158256,1158272,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158257,1158257,1158273,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158258,1158258,1158274,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158259,1158259,1158275,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158260,1158260,1158276,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158261,1158261,1158277,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158262,1158262,1158278,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158263,1158263,1158279,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158264,1158264,1158280,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158265,1158265,1158281,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158266,1158266,1158282,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158267,1158267,1158283,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158268,1158268,1158284,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158269,1158269,1158285,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1158270,1158270,1158286,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158271,1158271,1158287,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158272,1158272,1158288,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1158273,1158273,1158289,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158274,1158274,1158290,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1158275,1158275,1158291,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1158276,1158276,1158292,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1158277,1158277,1158293,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158278,1158278,1158294,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158279,1158279,1158295,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158280,1158280,1158296,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158281,1158281,1158297,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158282,1158282,1158298,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158283,1158283,1158299,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158284,1158284,1158300,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158285,1158285,1158301,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1158286,1158286,1158302,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158287,1158287,1158303,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158288,1158288,1158304,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158289,1158289,1158305,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158290,1158290,1158306,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158291,1158291,1158307,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158292,1158292,1158308,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158293,1158293,1158309,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158294,1158294,1158310,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158295,1158295,1158311,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158296,1158296,1158312,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158297,1158297,1158313,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158298,1158298,1158314,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158299,1158299,1158315,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1158300,1158300,1158316,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1158301,1158301,1158317,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158302,1158302,1158318,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158303,1158303,1158319,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1158304,1158304,1158320,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158305,1158305,1158321,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158306,1158306,1158322,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22816.0,2150.0 +1158307,1158307,1158323,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22818.0,2150.0 +1158308,1158308,1158324,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22817.0,2150.0 +1158309,1158309,1158325,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1158310,1158310,1158326,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22815.0,2150.0 +1158311,1158311,1158327,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22812.0,2149.0 +1158312,1158312,1158328,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22812.0,2149.0 +1158313,1158313,1158329,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22818.0,2150.0 +1158314,1158314,1158330,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22816.0,2150.0 +1158315,1158315,1158331,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22812.0,2149.0 +1158316,1158316,1158332,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22817.0,2150.0 +1158317,1158317,1158333,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22817.0,2150.0 +1158318,1158318,1158334,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22818.0,2150.0 +1158319,1158319,1158335,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22818.0,2150.0 +1158320,1158320,1158336,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22817.0,2150.0 +1158321,1158321,1158337,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22817.0,2150.0 +1158322,1158322,1158338,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22817.0,2150.0 +1158323,1158323,1158339,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22817.0,2150.0 +1158324,1158324,1158340,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22812.0,2149.0 +1158325,1158325,1158341,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22816.0,2150.0 +1158326,1158326,1158342,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22812.0,2149.0 +1158327,1158327,1158343,1,24.0,4.0,6.0,0.0,1,5500.0,1073449,6.0,22815.0,2150.0 +1158328,1158328,1158344,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22816.0,2150.0 +1158329,1158329,1158345,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22812.0,2149.0 +1158330,1158330,1158346,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22812.0,2149.0 +1158331,1158331,1158347,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22818.0,2150.0 +1158332,1158332,1158348,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22817.0,2150.0 +1158333,1158333,1158349,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22816.0,2150.0 +1158334,1158334,1158350,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22815.0,2150.0 +1158335,1158335,1158351,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22817.0,2150.0 +1158336,1158336,1158352,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22812.0,2149.0 +1158337,1158337,1158353,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22817.0,2150.0 +1158338,1158338,1158354,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22812.0,2149.0 +1158339,1158339,1158355,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22817.0,2150.0 +1158340,1158340,1158356,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22812.0,2149.0 +1158341,1158341,1158357,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22812.0,2149.0 +1158342,1158342,1158358,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22818.0,2150.0 +1158343,1158343,1158359,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22812.0,2149.0 +1158344,1158344,1158360,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22817.0,2150.0 +1158345,1158345,1158361,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22817.0,2150.0 +1158346,1158346,1158362,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22817.0,2150.0 +1158347,1158347,1158363,2,23.0,3.0,2.0,0.0,1,58500.0,1054606,7.0,22818.0,2150.0 +1158348,1158348,1158364,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22818.0,2150.0 +1158349,1158349,1158365,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22818.0,2150.0 +1158350,1158350,1158366,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22812.0,2149.0 +1158351,1158351,1158367,2,24.0,3.0,2.0,0.0,1,46400.0,1010145,1.0,22816.0,2150.0 +1158352,1158352,1158368,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22818.0,2150.0 +1158353,1158353,1158369,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22818.0,2150.0 +1158354,1158354,1158370,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22817.0,2150.0 +1158355,1158355,1158371,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1158356,1158356,1158372,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22818.0,2150.0 +1158357,1158357,1158373,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22816.0,2150.0 +1158358,1158358,1158374,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22816.0,2150.0 +1158359,1158359,1158375,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22817.0,2150.0 +1158360,1158360,1158376,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22818.0,2150.0 +1158361,1158361,1158377,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22818.0,2150.0 +1158362,1158362,1158378,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1158363,1158363,1158379,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1158364,1158364,1158380,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22816.0,2150.0 +1158365,1158365,1158381,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1158366,1158366,1158382,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1158367,1158367,1158383,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1158368,1158368,1158384,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1158369,1158369,1158385,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22815.0,2150.0 +1158370,1158370,1158386,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22817.0,2150.0 +1158371,1158371,1158387,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22812.0,2149.0 +1158372,1158372,1158388,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22816.0,2150.0 +1158373,1158373,1158389,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22817.0,2150.0 +1158374,1158374,1158390,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22812.0,2149.0 +1158375,1158375,1158391,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22818.0,2150.0 +1158376,1158376,1158392,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22817.0,2150.0 +1158377,1158377,1158393,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22817.0,2150.0 +1158378,1158378,1158394,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22812.0,2149.0 +1158379,1158379,1158395,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22816.0,2150.0 +1158380,1158380,1158396,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22812.0,2149.0 +1158381,1158381,1158397,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22815.0,2150.0 +1158382,1158382,1158398,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22817.0,2150.0 +1158383,1158383,1158399,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22817.0,2150.0 +1158384,1158384,1158400,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22812.0,2149.0 +1158385,1158385,1158401,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22817.0,2150.0 +1158386,1158386,1158402,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22812.0,2149.0 +1158387,1158387,1158403,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22812.0,2149.0 +1158388,1158388,1158404,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22812.0,2149.0 +1158389,1158389,1158405,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22817.0,2150.0 +1158390,1158390,1158406,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22817.0,2150.0 +1158391,1158391,1158407,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22818.0,2150.0 +1158392,1158392,1158408,2,24.0,1.0,2.0,0.0,1,84000.0,1073449,7.0,22812.0,2149.0 +1158393,1158393,1158409,1,22.0,1.0,2.0,0.0,1,88000.0,1054606,6.0,22812.0,2149.0 +1158394,1158394,1158410,1,22.0,1.0,2.0,0.0,1,88000.0,1054606,6.0,22812.0,2149.0 +1158395,1158395,1158411,1,22.0,1.0,2.0,0.0,1,88000.0,1054606,6.0,22817.0,2150.0 +1158396,1158396,1158412,1,22.0,1.0,2.0,0.0,1,88000.0,1054606,6.0,22817.0,2150.0 +1158397,1158397,1158413,1,22.0,1.0,2.0,0.0,1,88000.0,1054606,6.0,22812.0,2149.0 +1158398,1158398,1158414,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22817.0,2150.0 +1158399,1158399,1158415,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22812.0,2149.0 +1158400,1158400,1158416,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22818.0,2150.0 +1158401,1158401,1158417,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22812.0,2149.0 +1158402,1158402,1158418,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22812.0,2149.0 +1158403,1158403,1158419,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22817.0,2150.0 +1158404,1158404,1158420,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158405,1158405,1158421,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22816.0,2150.0 +1158406,1158406,1158422,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22817.0,2150.0 +1158407,1158407,1158423,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158408,1158408,1158424,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158409,1158409,1158425,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158410,1158410,1158426,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1158411,1158411,1158427,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1158412,1158412,1158428,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22817.0,2150.0 +1158413,1158413,1158429,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22817.0,2150.0 +1158414,1158414,1158430,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22815.0,2150.0 +1158415,1158415,1158431,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22816.0,2150.0 +1158416,1158416,1158432,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22816.0,2150.0 +1158417,1158417,1158433,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22816.0,2150.0 +1158418,1158418,1158434,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158419,1158419,1158435,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22817.0,2150.0 +1158420,1158420,1158436,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1158421,1158421,1158437,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158422,1158422,1158438,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1158423,1158423,1158439,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22816.0,2150.0 +1158424,1158424,1158440,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1158425,1158425,1158441,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158426,1158426,1158442,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22817.0,2150.0 +1158427,1158427,1158443,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1158428,1158428,1158444,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158429,1158429,1158445,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1158430,1158430,1158446,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1158431,1158431,1158447,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22812.0,2149.0 +1158432,1158432,1158448,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22818.0,2150.0 +1158433,1158433,1158449,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22812.0,2149.0 +1158434,1158434,1158450,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22818.0,2150.0 +1158435,1158435,1158451,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22816.0,2150.0 +1158436,1158436,1158452,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22812.0,2149.0 +1158437,1158437,1158453,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22812.0,2149.0 +1158438,1158438,1158454,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22817.0,2150.0 +1158439,1158439,1158455,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22818.0,2150.0 +1158440,1158440,1158456,1,21.0,1.0,1.0,0.0,1,5800.0,1080470,6.0,22818.0,2150.0 +1158441,1158441,1158457,1,22.0,1.0,1.0,0.0,1,11900.0,1010145,6.0,22812.0,2149.0 +1158442,1158442,1158458,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22817.0,2150.0 +1158443,1158443,1158459,1,22.0,1.0,1.0,0.0,1,21000.0,1054606,6.0,22812.0,2149.0 +1158444,1158444,1158460,1,21.0,1.0,1.0,0.0,1,5800.0,1080470,6.0,22818.0,2150.0 +1158445,1158445,1158461,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22816.0,2150.0 +1158446,1158446,1158462,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22818.0,2150.0 +1158447,1158447,1158463,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22817.0,2150.0 +1158448,1158448,1158464,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22818.0,2150.0 +1158449,1158449,1158465,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22812.0,2149.0 +1158450,1158450,1158466,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22816.0,2150.0 +1158451,1158451,1158467,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22816.0,2150.0 +1158452,1158452,1158468,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22818.0,2150.0 +1158453,1158453,1158469,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22817.0,2150.0 +1158454,1158454,1158470,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22818.0,2150.0 +1158455,1158455,1158471,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22812.0,2149.0 +1158456,1158456,1158472,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22818.0,2150.0 +1158457,1158457,1158473,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22817.0,2150.0 +1158458,1158458,1158474,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22818.0,2150.0 +1158459,1158459,1158475,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22817.0,2150.0 +1158460,1158460,1158476,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158461,1158461,1158477,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22816.0,2150.0 +1158462,1158462,1158478,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158463,1158463,1158479,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22818.0,2150.0 +1158464,1158464,1158480,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22816.0,2150.0 +1158465,1158465,1158481,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1158466,1158466,1158482,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22816.0,2150.0 +1158467,1158467,1158483,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158468,1158468,1158484,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22817.0,2150.0 +1158469,1158469,1158485,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22812.0,2149.0 +1158470,1158470,1158486,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22812.0,2149.0 +1158471,1158471,1158487,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22818.0,2150.0 +1158472,1158472,1158488,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22818.0,2150.0 +1158473,1158473,1158489,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22812.0,2149.0 +1158474,1158474,1158490,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22816.0,2150.0 +1158475,1158475,1158491,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22817.0,2150.0 +1158476,1158476,1158492,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22816.0,2150.0 +1158477,1158477,1158493,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22817.0,2150.0 +1158478,1158478,1158494,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22815.0,2150.0 +1158479,1158479,1158495,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22818.0,2150.0 +1158480,1158480,1158496,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22818.0,2150.0 +1158481,1158481,1158497,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22817.0,2150.0 +1158482,1158482,1158498,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158483,1158483,1158499,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22812.0,2149.0 +1158484,1158484,1158500,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22817.0,2150.0 +1158485,1158485,1158501,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22818.0,2150.0 +1158486,1158486,1158502,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22817.0,2150.0 +1158487,1158487,1158503,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22812.0,2149.0 +1158488,1158488,1158504,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22817.0,2150.0 +1158489,1158489,1158505,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22815.0,2150.0 +1158490,1158490,1158506,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22817.0,2150.0 +1158491,1158491,1158507,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22818.0,2150.0 +1158492,1158492,1158508,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22817.0,2150.0 +1158493,1158493,1158509,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22818.0,2150.0 +1158494,1158494,1158510,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22812.0,2149.0 +1158495,1158495,1158511,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158496,1158496,1158512,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22818.0,2150.0 +1158497,1158497,1158513,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22816.0,2150.0 +1158498,1158498,1158514,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22818.0,2150.0 +1158499,1158499,1158515,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22815.0,2150.0 +1158500,1158500,1158516,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22816.0,2150.0 +1158501,1158501,1158517,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158502,1158502,1158518,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22817.0,2150.0 +1158503,1158503,1158519,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22816.0,2150.0 +1158504,1158504,1158520,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1158505,1158505,1158521,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22816.0,2150.0 +1158506,1158506,1158522,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22818.0,2150.0 +1158507,1158507,1158523,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22817.0,2150.0 +1158508,1158508,1158524,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22818.0,2150.0 +1158509,1158509,1158525,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1158510,1158510,1158526,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22817.0,2150.0 +1158511,1158511,1158527,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1158512,1158512,1158528,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158513,1158513,1158529,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22818.0,2150.0 +1158514,1158514,1158530,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22818.0,2150.0 +1158515,1158515,1158531,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22817.0,2150.0 +1158516,1158516,1158532,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22816.0,2150.0 +1158517,1158517,1158533,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22817.0,2150.0 +1158518,1158518,1158534,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22816.0,2150.0 +1158519,1158519,1158535,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22816.0,2150.0 +1158520,1158520,1158536,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22816.0,2150.0 +1158521,1158521,1158537,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1158522,1158522,1158538,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1158523,1158523,1158539,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22818.0,2150.0 +1158524,1158524,1158540,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1158525,1158525,1158541,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22812.0,2149.0 +1158526,1158526,1158542,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158527,1158527,1158543,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22816.0,2150.0 +1158528,1158528,1158544,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22817.0,2150.0 +1158529,1158529,1158545,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22818.0,2150.0 +1158530,1158530,1158546,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22817.0,2150.0 +1158531,1158531,1158547,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22816.0,2150.0 +1158532,1158532,1158548,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22817.0,2150.0 +1158533,1158533,1158549,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22817.0,2150.0 +1158534,1158534,1158550,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1158535,1158535,1158551,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22818.0,2150.0 +1158536,1158536,1158552,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22818.0,2150.0 +1158537,1158537,1158553,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22817.0,2150.0 +1158538,1158538,1158554,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22817.0,2150.0 +1158539,1158539,1158555,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22816.0,2150.0 +1158540,1158540,1158556,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22818.0,2150.0 +1158541,1158541,1158557,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22818.0,2150.0 +1158542,1158542,1158558,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22817.0,2150.0 +1158543,1158543,1158559,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1158544,1158544,1158560,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1158545,1158545,1158561,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1158546,1158546,1158562,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158547,1158547,1158563,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22812.0,2149.0 +1158548,1158548,1158564,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22818.0,2150.0 +1158549,1158549,1158565,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22812.0,2149.0 +1158550,1158550,1158566,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22818.0,2150.0 +1158551,1158551,1158567,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1158552,1158552,1158568,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22816.0,2150.0 +1158553,1158553,1158569,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22812.0,2149.0 +1158554,1158554,1158570,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1158555,1158555,1158571,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22818.0,2150.0 +1158556,1158556,1158572,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22816.0,2150.0 +1158557,1158557,1158573,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22818.0,2150.0 +1158558,1158558,1158574,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22817.0,2150.0 +1158559,1158559,1158575,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22817.0,2150.0 +1158560,1158560,1158576,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22812.0,2149.0 +1158561,1158561,1158577,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22817.0,2150.0 +1158562,1158562,1158578,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22812.0,2149.0 +1158563,1158563,1158579,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22817.0,2150.0 +1158564,1158564,1158580,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22818.0,2150.0 +1158565,1158565,1158581,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22812.0,2149.0 +1158566,1158566,1158582,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22815.0,2150.0 +1158567,1158567,1158583,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22818.0,2150.0 +1158568,1158568,1158584,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22812.0,2149.0 +1158569,1158569,1158585,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22812.0,2149.0 +1158570,1158570,1158586,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22818.0,2150.0 +1158571,1158571,1158587,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22817.0,2150.0 +1158572,1158572,1158588,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22817.0,2150.0 +1158573,1158573,1158589,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22816.0,2150.0 +1158574,1158574,1158590,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22817.0,2150.0 +1158575,1158575,1158591,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22812.0,2149.0 +1158576,1158576,1158592,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22812.0,2149.0 +1158577,1158577,1158593,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22817.0,2150.0 +1158578,1158578,1158594,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22816.0,2150.0 +1158579,1158579,1158595,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22818.0,2150.0 +1158580,1158580,1158596,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22815.0,2150.0 +1158581,1158581,1158597,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22818.0,2150.0 +1158582,1158582,1158598,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22812.0,2149.0 +1158583,1158583,1158599,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22818.0,2150.0 +1158584,1158584,1158600,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22812.0,2149.0 +1158585,1158585,1158601,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22818.0,2150.0 +1158586,1158586,1158602,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22812.0,2149.0 +1158587,1158587,1158603,1,24.0,1.0,1.0,0.0,1,0.0,1080470,6.0,22818.0,2150.0 +1158588,1158588,1158604,2,19.0,1.0,0.0,0.0,1,29410.0,1031452,5.0,22812.0,2149.0 +1158589,1158589,1158605,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22783.0,2138.0 +1158590,1158590,1158606,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22774.0,2137.0 +1158591,1158591,1158607,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22783.0,2138.0 +1158592,1158592,1158608,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22782.0,2138.0 +1158593,1158593,1158609,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22775.0,2137.0 +1158594,1158594,1158610,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22783.0,2138.0 +1158595,1158595,1158611,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22783.0,2138.0 +1158596,1158596,1158612,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22799.0,2142.0 +1158597,1158597,1158613,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22783.0,2138.0 +1158598,1158598,1158614,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22781.0,2138.0 +1158599,1158599,1158615,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22778.0,2137.0 +1158600,1158600,1158616,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22776.0,2137.0 +1158601,1158601,1158617,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22783.0,2138.0 +1158602,1158602,1158618,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22780.0,2138.0 +1158603,1158603,1158619,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22781.0,2138.0 +1158604,1158604,1158620,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22783.0,2138.0 +1158605,1158605,1158621,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22775.0,2137.0 +1158606,1158606,1158622,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22774.0,2137.0 +1158607,1158607,1158623,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22780.0,2138.0 +1158608,1158608,1158624,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22779.0,2138.0 +1158609,1158609,1158625,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22780.0,2138.0 +1158610,1158610,1158626,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22781.0,2138.0 +1158611,1158611,1158627,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22782.0,2138.0 +1158612,1158612,1158628,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22778.0,2137.0 +1158613,1158613,1158629,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22780.0,2138.0 +1158614,1158614,1158630,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22799.0,2142.0 +1158615,1158615,1158631,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22780.0,2138.0 +1158616,1158616,1158632,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22783.0,2138.0 +1158617,1158617,1158633,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22783.0,2138.0 +1158618,1158618,1158634,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22782.0,2138.0 +1158619,1158619,1158635,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22780.0,2138.0 +1158620,1158620,1158636,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22782.0,2138.0 +1158621,1158621,1158637,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22780.0,2138.0 +1158622,1158622,1158638,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22781.0,2138.0 +1158623,1158623,1158639,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22799.0,2142.0 +1158624,1158624,1158640,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22782.0,2138.0 +1158625,1158625,1158641,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22775.0,2137.0 +1158626,1158626,1158642,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22799.0,2142.0 +1158627,1158627,1158643,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22781.0,2138.0 +1158628,1158628,1158644,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22776.0,2137.0 +1158629,1158629,1158645,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22775.0,2137.0 +1158630,1158630,1158646,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22783.0,2138.0 +1158631,1158631,1158647,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22778.0,2137.0 +1158632,1158632,1158648,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22780.0,2138.0 +1158633,1158633,1158649,1,87.0,1.0,1.0,0.0,1,14120.0,1010145,6.0,22781.0,2138.0 +1158634,1158634,1158650,1,89.0,1.0,1.0,0.0,1,27300.0,1054606,6.0,22782.0,2138.0 +1158635,1158635,1158651,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22781.0,2138.0 +1158636,1158636,1158652,1,89.0,1.0,1.0,0.0,1,27300.0,1054606,6.0,22799.0,2142.0 +1158637,1158637,1158653,1,94.0,1.0,1.0,0.0,1,25400.0,1073449,6.0,22782.0,2138.0 +1158638,1158638,1158654,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22780.0,2138.0 +1158639,1158639,1158655,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22782.0,2138.0 +1158640,1158640,1158656,1,84.0,1.0,1.0,0.0,1,15000.0,1054606,6.0,22775.0,2137.0 +1158641,1158641,1158657,1,76.0,1.0,1.0,0.0,1,10200.0,1080470,6.0,22783.0,2138.0 +1158642,1158642,1158658,1,84.0,1.0,1.0,0.0,1,15000.0,1054606,6.0,22782.0,2138.0 +1158643,1158643,1158659,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22780.0,2138.0 +1158644,1158644,1158660,1,94.0,1.0,1.0,0.0,1,25400.0,1073449,6.0,22783.0,2138.0 +1158645,1158645,1158661,1,94.0,1.0,1.0,0.0,1,25400.0,1073449,6.0,22782.0,2138.0 +1158646,1158646,1158662,1,89.0,1.0,1.0,0.0,1,27300.0,1054606,6.0,22783.0,2138.0 +1158647,1158647,1158663,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22777.0,2137.0 +1158648,1158648,1158664,1,71.0,1.0,1.0,0.0,1,16400.0,1080470,6.0,22776.0,2137.0 +1158649,1158649,1158665,1,87.0,1.0,1.0,0.0,1,14120.0,1010145,6.0,22780.0,2138.0 +1158650,1158650,1158666,1,87.0,1.0,1.0,0.0,1,14120.0,1010145,6.0,22780.0,2138.0 +1158651,1158651,1158667,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22780.0,2138.0 +1158652,1158652,1158668,1,87.0,1.0,1.0,0.0,1,14120.0,1010145,6.0,22774.0,2137.0 +1158653,1158653,1158669,1,89.0,1.0,1.0,0.0,1,27300.0,1054606,6.0,22775.0,2137.0 +1158654,1158654,1158670,1,87.0,1.0,1.0,0.0,1,14120.0,1010145,6.0,22780.0,2138.0 +1158655,1158655,1158671,1,94.0,1.0,1.0,0.0,1,25400.0,1073449,6.0,22777.0,2137.0 +1158656,1158656,1158672,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22779.0,2138.0 +1158657,1158657,1158673,4,73.0,1.0,1.0,0.0,1,15600.0,1080470,3.0,22783.0,2138.0 +1158658,1158658,1158674,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22775.0,2137.0 +1158659,1158659,1158675,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22782.0,2138.0 +1158660,1158660,1158676,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22799.0,2142.0 +1158661,1158661,1158677,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22776.0,2137.0 +1158662,1158662,1158678,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22780.0,2138.0 +1158663,1158663,1158679,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22778.0,2137.0 +1158664,1158664,1158680,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22780.0,2138.0 +1158665,1158665,1158681,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22781.0,2138.0 +1158666,1158666,1158682,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22776.0,2137.0 +1158667,1158667,1158683,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22780.0,2138.0 +1158668,1158668,1158684,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22783.0,2138.0 +1158669,1158669,1158685,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22776.0,2137.0 +1158670,1158670,1158686,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22782.0,2138.0 +1158671,1158671,1158687,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22777.0,2137.0 +1158672,1158672,1158688,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22780.0,2138.0 +1158673,1158673,1158689,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22777.0,2137.0 +1158674,1158674,1158690,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22775.0,2137.0 +1158675,1158675,1158691,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22776.0,2137.0 +1158676,1158676,1158692,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22776.0,2137.0 +1158677,1158677,1158693,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22783.0,2138.0 +1158678,1158678,1158694,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22777.0,2137.0 +1158679,1158679,1158695,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22781.0,2138.0 +1158680,1158680,1158696,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22777.0,2137.0 +1158681,1158681,1158697,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22780.0,2138.0 +1158682,1158682,1158698,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22776.0,2137.0 +1158683,1158683,1158699,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22783.0,2138.0 +1158684,1158684,1158700,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22775.0,2137.0 +1158685,1158685,1158701,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22782.0,2138.0 +1158686,1158686,1158702,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22780.0,2138.0 +1158687,1158687,1158703,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22783.0,2138.0 +1158688,1158688,1158704,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22781.0,2138.0 +1158689,1158689,1158705,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22780.0,2138.0 +1158690,1158690,1158706,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22775.0,2137.0 +1158691,1158691,1158707,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22777.0,2137.0 +1158692,1158692,1158708,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22780.0,2138.0 +1158693,1158693,1158709,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22774.0,2137.0 +1158694,1158694,1158710,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22783.0,2138.0 +1158695,1158695,1158711,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22775.0,2137.0 +1158696,1158696,1158712,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22776.0,2137.0 +1158697,1158697,1158713,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22775.0,2137.0 +1158698,1158698,1158714,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22780.0,2138.0 +1158699,1158699,1158715,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22776.0,2137.0 +1158700,1158700,1158716,4,54.0,1.0,4.0,2.0,1,308000.0,1054606,1.0,22799.0,2142.0 +1158701,1158701,1158717,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22779.0,2138.0 +1158702,1158702,1158718,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22777.0,2137.0 +1158703,1158703,1158719,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22783.0,2138.0 +1158704,1158704,1158720,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22782.0,2138.0 +1158705,1158705,1158721,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22780.0,2138.0 +1158706,1158706,1158722,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22775.0,2137.0 +1158707,1158707,1158723,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22779.0,2138.0 +1158708,1158708,1158724,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22783.0,2138.0 +1158709,1158709,1158725,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22775.0,2137.0 +1158710,1158710,1158726,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22782.0,2138.0 +1158711,1158711,1158727,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22775.0,2137.0 +1158712,1158712,1158728,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22780.0,2138.0 +1158713,1158713,1158729,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22799.0,2142.0 +1158714,1158714,1158730,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22780.0,2138.0 +1158715,1158715,1158731,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22777.0,2137.0 +1158716,1158716,1158732,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22782.0,2138.0 +1158717,1158717,1158733,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22777.0,2137.0 +1158718,1158718,1158734,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22782.0,2138.0 +1158719,1158719,1158735,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22782.0,2138.0 +1158720,1158720,1158736,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22775.0,2137.0 +1158721,1158721,1158737,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22780.0,2138.0 +1158722,1158722,1158738,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22783.0,2138.0 +1158723,1158723,1158739,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22783.0,2138.0 +1158724,1158724,1158740,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22783.0,2138.0 +1158725,1158725,1158741,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22780.0,2138.0 +1158726,1158726,1158742,3,56.0,1.0,3.0,0.0,1,294000.0,1080470,1.0,22776.0,2137.0 +1158727,1158727,1158743,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22783.0,2138.0 +1158728,1158728,1158744,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22781.0,2138.0 +1158729,1158729,1158745,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22799.0,2142.0 +1158730,1158730,1158746,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22782.0,2138.0 +1158731,1158731,1158747,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22780.0,2138.0 +1158732,1158732,1158748,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22780.0,2138.0 +1158733,1158733,1158749,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22774.0,2137.0 +1158734,1158734,1158750,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22783.0,2138.0 +1158735,1158735,1158751,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22783.0,2138.0 +1158736,1158736,1158752,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22782.0,2138.0 +1158737,1158737,1158753,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22782.0,2138.0 +1158738,1158738,1158754,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22783.0,2138.0 +1158739,1158739,1158755,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22780.0,2138.0 +1158740,1158740,1158756,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22780.0,2138.0 +1158741,1158741,1158757,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22775.0,2137.0 +1158742,1158742,1158758,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22782.0,2138.0 +1158743,1158743,1158759,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22774.0,2137.0 +1158744,1158744,1158760,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22783.0,2138.0 +1158745,1158745,1158761,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22782.0,2138.0 +1158746,1158746,1158762,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22799.0,2142.0 +1158747,1158747,1158763,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22778.0,2137.0 +1158748,1158748,1158764,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22780.0,2138.0 +1158749,1158749,1158765,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22799.0,2142.0 +1158750,1158750,1158766,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22776.0,2137.0 +1158751,1158751,1158767,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22799.0,2142.0 +1158752,1158752,1158768,1,51.0,1.0,2.0,0.0,1,110000.0,1031452,6.0,22781.0,2138.0 +1158753,1158753,1158769,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22783.0,2138.0 +1158754,1158754,1158770,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22783.0,2138.0 +1158755,1158755,1158771,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22780.0,2138.0 +1158756,1158756,1158772,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22778.0,2137.0 +1158757,1158757,1158773,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22780.0,2138.0 +1158758,1158758,1158774,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22799.0,2142.0 +1158759,1158759,1158775,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22783.0,2138.0 +1158760,1158760,1158776,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22780.0,2138.0 +1158761,1158761,1158777,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22780.0,2138.0 +1158762,1158762,1158778,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22783.0,2138.0 +1158763,1158763,1158779,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22783.0,2138.0 +1158764,1158764,1158780,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22780.0,2138.0 +1158765,1158765,1158781,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22782.0,2138.0 +1158766,1158766,1158782,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22780.0,2138.0 +1158767,1158767,1158783,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22799.0,2142.0 +1158768,1158768,1158784,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22781.0,2138.0 +1158769,1158769,1158785,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22783.0,2138.0 +1158770,1158770,1158786,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22776.0,2137.0 +1158771,1158771,1158787,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22774.0,2137.0 +1158772,1158772,1158788,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22781.0,2138.0 +1158773,1158773,1158789,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22783.0,2138.0 +1158774,1158774,1158790,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22782.0,2138.0 +1158775,1158775,1158791,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22776.0,2137.0 +1158776,1158776,1158792,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22775.0,2137.0 +1158777,1158777,1158793,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22783.0,2138.0 +1158778,1158778,1158794,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22799.0,2142.0 +1158779,1158779,1158795,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22781.0,2138.0 +1158780,1158780,1158796,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22783.0,2138.0 +1158781,1158781,1158797,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22781.0,2138.0 +1158782,1158782,1158798,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22783.0,2138.0 +1158783,1158783,1158799,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22783.0,2138.0 +1158784,1158784,1158800,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22781.0,2138.0 +1158785,1158785,1158801,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22782.0,2138.0 +1158786,1158786,1158802,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22782.0,2138.0 +1158787,1158787,1158803,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22783.0,2138.0 +1158788,1158788,1158804,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22779.0,2138.0 +1158789,1158789,1158805,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22776.0,2137.0 +1158790,1158790,1158806,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22783.0,2138.0 +1158791,1158791,1158807,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22780.0,2138.0 +1158792,1158792,1158808,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22775.0,2137.0 +1158793,1158793,1158809,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22778.0,2137.0 +1158794,1158794,1158810,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22774.0,2137.0 +1158795,1158795,1158811,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22783.0,2138.0 +1158796,1158796,1158812,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22780.0,2138.0 +1158797,1158797,1158813,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22799.0,2142.0 +1158798,1158798,1158814,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22781.0,2138.0 +1158799,1158799,1158815,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22777.0,2137.0 +1158800,1158800,1158816,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22783.0,2138.0 +1158801,1158801,1158817,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22774.0,2137.0 +1158802,1158802,1158818,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22782.0,2138.0 +1158803,1158803,1158819,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22781.0,2138.0 +1158804,1158804,1158820,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22774.0,2137.0 +1158805,1158805,1158821,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22799.0,2142.0 +1158806,1158806,1158822,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22776.0,2137.0 +1158807,1158807,1158823,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22779.0,2138.0 +1158808,1158808,1158824,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22783.0,2138.0 +1158809,1158809,1158825,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22782.0,2138.0 +1158810,1158810,1158826,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22782.0,2138.0 +1158811,1158811,1158827,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22783.0,2138.0 +1158812,1158812,1158828,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22775.0,2137.0 +1158813,1158813,1158829,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22780.0,2138.0 +1158814,1158814,1158830,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22781.0,2138.0 +1158815,1158815,1158831,1,56.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22780.0,2138.0 +1158816,1158816,1158832,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22780.0,2138.0 +1158817,1158817,1158833,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22782.0,2138.0 +1158818,1158818,1158834,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22775.0,2137.0 +1158819,1158819,1158835,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22781.0,2138.0 +1158820,1158820,1158836,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22780.0,2138.0 +1158821,1158821,1158837,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22780.0,2138.0 +1158822,1158822,1158838,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22775.0,2137.0 +1158823,1158823,1158839,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22779.0,2138.0 +1158824,1158824,1158840,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22780.0,2138.0 +1158825,1158825,1158841,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22783.0,2138.0 +1158826,1158826,1158842,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22777.0,2137.0 +1158827,1158827,1158843,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22783.0,2138.0 +1158828,1158828,1158844,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22783.0,2138.0 +1158829,1158829,1158845,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22778.0,2137.0 +1158830,1158830,1158846,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22783.0,2138.0 +1158831,1158831,1158847,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22781.0,2138.0 +1158832,1158832,1158848,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22778.0,2137.0 +1158833,1158833,1158849,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22782.0,2138.0 +1158834,1158834,1158850,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22781.0,2138.0 +1158835,1158835,1158851,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22799.0,2142.0 +1158836,1158836,1158852,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22783.0,2138.0 +1158837,1158837,1158853,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22777.0,2137.0 +1158838,1158838,1158854,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22783.0,2138.0 +1158839,1158839,1158855,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22783.0,2138.0 +1158840,1158840,1158856,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22780.0,2138.0 +1158841,1158841,1158857,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22777.0,2137.0 +1158842,1158842,1158858,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22776.0,2137.0 +1158843,1158843,1158859,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22776.0,2137.0 +1158844,1158844,1158860,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22782.0,2138.0 +1158845,1158845,1158861,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22783.0,2138.0 +1158846,1158846,1158862,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22783.0,2138.0 +1158847,1158847,1158863,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22780.0,2138.0 +1158848,1158848,1158864,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22782.0,2138.0 +1158849,1158849,1158865,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22782.0,2138.0 +1158850,1158850,1158866,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22782.0,2138.0 +1158851,1158851,1158867,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22775.0,2137.0 +1158852,1158852,1158868,2,64.0,1.0,2.0,0.0,1,50500.0,1010145,7.0,22775.0,2137.0 +1158853,1158853,1158869,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22783.0,2138.0 +1158854,1158854,1158870,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22781.0,2138.0 +1158855,1158855,1158871,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22780.0,2138.0 +1158856,1158856,1158872,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22781.0,2138.0 +1158857,1158857,1158873,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22780.0,2138.0 +1158858,1158858,1158874,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22776.0,2137.0 +1158859,1158859,1158875,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22799.0,2142.0 +1158860,1158860,1158876,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22776.0,2137.0 +1158861,1158861,1158877,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22774.0,2137.0 +1158862,1158862,1158878,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22775.0,2137.0 +1158863,1158863,1158879,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22799.0,2142.0 +1158864,1158864,1158880,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22783.0,2138.0 +1158865,1158865,1158881,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22782.0,2138.0 +1158866,1158866,1158882,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22776.0,2137.0 +1158867,1158867,1158883,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22780.0,2138.0 +1158868,1158868,1158884,5,53.0,1.0,6.0,0.0,1,172800.0,1080470,2.0,22782.0,2138.0 +1158869,1158869,1158885,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22775.0,2137.0 +1158870,1158870,1158886,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22781.0,2138.0 +1158871,1158871,1158887,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22780.0,2138.0 +1158872,1158872,1158888,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22799.0,2142.0 +1158873,1158873,1158889,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22779.0,2138.0 +1158874,1158874,1158890,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22780.0,2138.0 +1158875,1158875,1158891,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22782.0,2138.0 +1158876,1158876,1158892,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22799.0,2142.0 +1158877,1158877,1158893,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22779.0,2138.0 +1158878,1158878,1158894,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22780.0,2138.0 +1158879,1158879,1158895,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22780.0,2138.0 +1158880,1158880,1158896,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22780.0,2138.0 +1158881,1158881,1158897,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22779.0,2138.0 +1158882,1158882,1158898,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22780.0,2138.0 +1158883,1158883,1158899,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22780.0,2138.0 +1158884,1158884,1158900,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22780.0,2138.0 +1158885,1158885,1158901,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22782.0,2138.0 +1158886,1158886,1158902,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22775.0,2137.0 +1158887,1158887,1158903,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22782.0,2138.0 +1158888,1158888,1158904,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22782.0,2138.0 +1158889,1158889,1158905,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22777.0,2137.0 +1158890,1158890,1158906,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22799.0,2142.0 +1158891,1158891,1158907,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22777.0,2137.0 +1158892,1158892,1158908,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22781.0,2138.0 +1158893,1158893,1158909,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22779.0,2138.0 +1158894,1158894,1158910,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22774.0,2137.0 +1158895,1158895,1158911,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22781.0,2138.0 +1158896,1158896,1158912,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22774.0,2137.0 +1158897,1158897,1158913,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22779.0,2138.0 +1158898,1158898,1158914,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22799.0,2142.0 +1158899,1158899,1158915,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22774.0,2137.0 +1158900,1158900,1158916,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22783.0,2138.0 +1158901,1158901,1158917,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22783.0,2138.0 +1158902,1158902,1158918,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22777.0,2137.0 +1158903,1158903,1158919,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22799.0,2142.0 +1158904,1158904,1158920,2,26.0,4.0,2.0,1.0,1,96200.0,1010145,7.0,22782.0,2138.0 +1158905,1158905,1158921,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22780.0,2138.0 +1158906,1158906,1158922,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22782.0,2138.0 +1158907,1158907,1158923,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22777.0,2137.0 +1158908,1158908,1158924,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22781.0,2138.0 +1158909,1158909,1158925,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22783.0,2138.0 +1158910,1158910,1158926,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22783.0,2138.0 +1158911,1158911,1158927,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22777.0,2137.0 +1158912,1158912,1158928,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22775.0,2137.0 +1158913,1158913,1158929,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22779.0,2138.0 +1158914,1158914,1158930,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22777.0,2137.0 +1158915,1158915,1158931,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22782.0,2138.0 +1158916,1158916,1158932,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22776.0,2137.0 +1158917,1158917,1158933,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22779.0,2138.0 +1158918,1158918,1158934,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22781.0,2138.0 +1158919,1158919,1158935,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22782.0,2138.0 +1158920,1158920,1158936,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22780.0,2138.0 +1158921,1158921,1158937,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22777.0,2137.0 +1158922,1158922,1158938,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22782.0,2138.0 +1158923,1158923,1158939,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22783.0,2138.0 +1158924,1158924,1158940,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22783.0,2138.0 +1158925,1158925,1158941,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22799.0,2142.0 +1158926,1158926,1158942,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22782.0,2138.0 +1158927,1158927,1158943,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22783.0,2138.0 +1158928,1158928,1158944,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22774.0,2137.0 +1158929,1158929,1158945,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22776.0,2137.0 +1158930,1158930,1158946,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22783.0,2138.0 +1158931,1158931,1158947,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22776.0,2137.0 +1158932,1158932,1158948,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22777.0,2137.0 +1158933,1158933,1158949,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22782.0,2138.0 +1158934,1158934,1158950,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22775.0,2137.0 +1158935,1158935,1158951,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22780.0,2138.0 +1158936,1158936,1158952,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22775.0,2137.0 +1158937,1158937,1158953,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22782.0,2138.0 +1158938,1158938,1158954,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22782.0,2138.0 +1158939,1158939,1158955,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22781.0,2138.0 +1158940,1158940,1158956,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22782.0,2138.0 +1158941,1158941,1158957,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22775.0,2137.0 +1158942,1158942,1158958,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22774.0,2137.0 +1158943,1158943,1158959,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22781.0,2138.0 +1158944,1158944,1158960,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22783.0,2138.0 +1158945,1158945,1158961,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22777.0,2137.0 +1158946,1158946,1158962,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22783.0,2138.0 +1158947,1158947,1158963,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22799.0,2142.0 +1158948,1158948,1158964,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22780.0,2138.0 +1158949,1158949,1158965,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22780.0,2138.0 +1158950,1158950,1158966,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22778.0,2137.0 +1158951,1158951,1158967,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22780.0,2138.0 +1158952,1158952,1158968,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22783.0,2138.0 +1158953,1158953,1158969,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22776.0,2137.0 +1158954,1158954,1158970,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22783.0,2138.0 +1158955,1158955,1158971,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22799.0,2142.0 +1158956,1158956,1158972,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22799.0,2142.0 +1158957,1158957,1158973,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22782.0,2138.0 +1158958,1158958,1158974,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22779.0,2138.0 +1158959,1158959,1158975,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22783.0,2138.0 +1158960,1158960,1158976,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22783.0,2138.0 +1158961,1158961,1158977,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22776.0,2137.0 +1158962,1158962,1158978,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22780.0,2138.0 +1158963,1158963,1158979,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22780.0,2138.0 +1158964,1158964,1158980,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22799.0,2142.0 +1158965,1158965,1158981,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22782.0,2138.0 +1158966,1158966,1158982,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22780.0,2138.0 +1158967,1158967,1158983,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22778.0,2137.0 +1158968,1158968,1158984,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22780.0,2138.0 +1158969,1158969,1158985,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22783.0,2138.0 +1158970,1158970,1158986,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22780.0,2138.0 +1158971,1158971,1158987,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22780.0,2138.0 +1158972,1158972,1158988,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22799.0,2142.0 +1158973,1158973,1158989,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22779.0,2138.0 +1158974,1158974,1158990,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22781.0,2138.0 +1158975,1158975,1158991,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22783.0,2138.0 +1158976,1158976,1158992,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22779.0,2138.0 +1158977,1158977,1158993,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22781.0,2138.0 +1158978,1158978,1158994,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22776.0,2137.0 +1158979,1158979,1158995,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22779.0,2138.0 +1158980,1158980,1158996,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22780.0,2138.0 +1158981,1158981,1158997,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22776.0,2137.0 +1158982,1158982,1158998,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22783.0,2138.0 +1158983,1158983,1158999,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22783.0,2138.0 +1158984,1158984,1159000,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22779.0,2138.0 +1158985,1158985,1159001,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22779.0,2138.0 +1158986,1158986,1159002,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22782.0,2138.0 +1158987,1158987,1159003,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22777.0,2137.0 +1158988,1158988,1159004,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22781.0,2138.0 +1158989,1158989,1159005,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22775.0,2137.0 +1158990,1158990,1159006,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22799.0,2142.0 +1158991,1158991,1159007,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22781.0,2138.0 +1158992,1158992,1159008,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22775.0,2137.0 +1158993,1158993,1159009,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22774.0,2137.0 +1158994,1158994,1159010,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22777.0,2137.0 +1158995,1158995,1159011,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22780.0,2138.0 +1158996,1158996,1159012,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22774.0,2137.0 +1158997,1158997,1159013,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22780.0,2138.0 +1158998,1158998,1159014,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22782.0,2138.0 +1158999,1158999,1159015,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22782.0,2138.0 +1159000,1159000,1159016,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22774.0,2137.0 +1159001,1159001,1159017,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22781.0,2138.0 +1159002,1159002,1159018,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22777.0,2137.0 +1159003,1159003,1159019,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22783.0,2138.0 +1159004,1159004,1159020,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22776.0,2137.0 +1159005,1159005,1159021,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22774.0,2137.0 +1159006,1159006,1159022,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22779.0,2138.0 +1159007,1159007,1159023,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22799.0,2142.0 +1159008,1159008,1159024,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22775.0,2137.0 +1159009,1159009,1159025,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22799.0,2142.0 +1159010,1159010,1159026,2,35.0,1.0,1.0,0.0,1,62000.0,1054606,3.0,22781.0,2138.0 +1159011,1159011,1159027,2,35.0,1.0,1.0,0.0,1,62000.0,1054606,3.0,22781.0,2138.0 +1159012,1159012,1159028,2,35.0,1.0,1.0,0.0,1,62000.0,1054606,3.0,22783.0,2138.0 +1159013,1159013,1159029,2,35.0,1.0,1.0,0.0,1,62000.0,1054606,3.0,22783.0,2138.0 +1159014,1159014,1159030,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22780.0,2138.0 +1159015,1159015,1159031,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22782.0,2138.0 +1159016,1159016,1159032,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22799.0,2142.0 +1159017,1159017,1159033,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22799.0,2142.0 +1159018,1159018,1159034,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22780.0,2138.0 +1159019,1159019,1159035,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22779.0,2138.0 +1159020,1159020,1159036,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22782.0,2138.0 +1159021,1159021,1159037,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22782.0,2138.0 +1159022,1159022,1159038,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22777.0,2137.0 +1159023,1159023,1159039,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22775.0,2137.0 +1159024,1159024,1159040,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22799.0,2142.0 +1159025,1159025,1159041,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22781.0,2138.0 +1159026,1159026,1159042,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22776.0,2137.0 +1159027,1159027,1159043,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22777.0,2137.0 +1159028,1159028,1159044,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22776.0,2137.0 +1159029,1159029,1159045,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22778.0,2137.0 +1159030,1159030,1159046,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22777.0,2137.0 +1159031,1159031,1159047,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22781.0,2138.0 +1159032,1159032,1159048,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22781.0,2138.0 +1159033,1159033,1159049,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22775.0,2137.0 +1159034,1159034,1159050,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22781.0,2138.0 +1159035,1159035,1159051,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22783.0,2138.0 +1159036,1159036,1159052,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22774.0,2137.0 +1159037,1159037,1159053,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22799.0,2142.0 +1159038,1159038,1159054,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22799.0,2142.0 +1159039,1159039,1159055,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22774.0,2137.0 +1159040,1159040,1159056,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22777.0,2137.0 +1159041,1159041,1159057,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22777.0,2137.0 +1159042,1159042,1159058,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22779.0,2138.0 +1159043,1159043,1159059,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22779.0,2138.0 +1159044,1159044,1159060,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22777.0,2137.0 +1159045,1159045,1159061,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22781.0,2138.0 +1159046,1159046,1159062,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22779.0,2138.0 +1159047,1159047,1159063,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22778.0,2137.0 +1159048,1159048,1159064,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22799.0,2142.0 +1159049,1159049,1159065,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22777.0,2137.0 +1159050,1159050,1159066,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22780.0,2138.0 +1159051,1159051,1159067,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22783.0,2138.0 +1159052,1159052,1159068,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22780.0,2138.0 +1159053,1159053,1159069,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22780.0,2138.0 +1159054,1159054,1159070,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22776.0,2137.0 +1159055,1159055,1159071,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22780.0,2138.0 +1159056,1159056,1159072,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22777.0,2137.0 +1159057,1159057,1159073,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22783.0,2138.0 +1159058,1159058,1159074,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22799.0,2142.0 +1159059,1159059,1159075,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22777.0,2137.0 +1159060,1159060,1159076,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22782.0,2138.0 +1159061,1159061,1159077,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22782.0,2138.0 +1159062,1159062,1159078,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22783.0,2138.0 +1159063,1159063,1159079,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22780.0,2138.0 +1159064,1159064,1159080,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22780.0,2138.0 +1159065,1159065,1159081,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22799.0,2142.0 +1159066,1159066,1159082,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22780.0,2138.0 +1159067,1159067,1159083,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22780.0,2138.0 +1159068,1159068,1159084,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22783.0,2138.0 +1159069,1159069,1159085,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22782.0,2138.0 +1159070,1159070,1159086,1,41.0,1.0,3.0,0.0,1,38000.0,1080470,6.0,22781.0,2138.0 +1159071,1159071,1159087,1,41.0,1.0,3.0,0.0,1,38000.0,1080470,6.0,22782.0,2138.0 +1159072,1159072,1159088,1,41.0,1.0,3.0,0.0,1,38000.0,1080470,6.0,22783.0,2138.0 +1159073,1159073,1159089,1,41.0,1.0,3.0,0.0,1,38000.0,1080470,6.0,22780.0,2138.0 +1159074,1159074,1159090,1,41.0,1.0,3.0,0.0,1,38000.0,1080470,6.0,22782.0,2138.0 +1159075,1159075,1159091,1,41.0,1.0,3.0,0.0,1,38000.0,1080470,6.0,22774.0,2137.0 +1159076,1159076,1159092,1,41.0,1.0,3.0,0.0,1,38000.0,1080470,6.0,22774.0,2137.0 +1159077,1159077,1159093,1,41.0,1.0,3.0,0.0,1,38000.0,1080470,6.0,22783.0,2138.0 +1159078,1159078,1159094,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22782.0,2138.0 +1159079,1159079,1159095,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22780.0,2138.0 +1159080,1159080,1159096,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22782.0,2138.0 +1159081,1159081,1159097,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22779.0,2138.0 +1159082,1159082,1159098,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22799.0,2142.0 +1159083,1159083,1159099,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22783.0,2138.0 +1159084,1159084,1159100,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22783.0,2138.0 +1159085,1159085,1159101,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22775.0,2137.0 +1159086,1159086,1159102,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22775.0,2137.0 +1159087,1159087,1159103,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22783.0,2138.0 +1159088,1159088,1159104,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22777.0,2137.0 +1159089,1159089,1159105,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22781.0,2138.0 +1159090,1159090,1159106,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22781.0,2138.0 +1159091,1159091,1159107,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22781.0,2138.0 +1159092,1159092,1159108,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22783.0,2138.0 +1159093,1159093,1159109,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22782.0,2138.0 +1159094,1159094,1159110,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22799.0,2142.0 +1159095,1159095,1159111,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22783.0,2138.0 +1159096,1159096,1159112,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22780.0,2138.0 +1159097,1159097,1159113,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22782.0,2138.0 +1159098,1159098,1159114,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22783.0,2138.0 +1159099,1159099,1159115,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22777.0,2137.0 +1159100,1159100,1159116,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22782.0,2138.0 +1159101,1159101,1159117,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22783.0,2138.0 +1159102,1159102,1159118,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22799.0,2142.0 +1159103,1159103,1159119,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22781.0,2138.0 +1159104,1159104,1159120,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22782.0,2138.0 +1159105,1159105,1159121,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22782.0,2138.0 +1159106,1159106,1159122,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22777.0,2137.0 +1159107,1159107,1159123,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22774.0,2137.0 +1159108,1159108,1159124,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22782.0,2138.0 +1159109,1159109,1159125,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22777.0,2137.0 +1159110,1159110,1159126,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22782.0,2138.0 +1159111,1159111,1159127,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22782.0,2138.0 +1159112,1159112,1159128,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22776.0,2137.0 +1159113,1159113,1159129,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22783.0,2138.0 +1159114,1159114,1159130,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22782.0,2138.0 +1159115,1159115,1159131,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22781.0,2138.0 +1159116,1159116,1159132,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22783.0,2138.0 +1159117,1159117,1159133,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22779.0,2138.0 +1159118,1159118,1159134,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22783.0,2138.0 +1159119,1159119,1159135,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22799.0,2142.0 +1159120,1159120,1159136,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22782.0,2138.0 +1159121,1159121,1159137,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22777.0,2137.0 +1159122,1159122,1159138,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22775.0,2137.0 +1159123,1159123,1159139,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22777.0,2137.0 +1159124,1159124,1159140,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22783.0,2138.0 +1159125,1159125,1159141,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22783.0,2138.0 +1159126,1159126,1159142,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22783.0,2138.0 +1159127,1159127,1159143,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22799.0,2142.0 +1159128,1159128,1159144,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22783.0,2138.0 +1159129,1159129,1159145,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22781.0,2138.0 +1159130,1159130,1159146,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22774.0,2137.0 +1159131,1159131,1159147,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22780.0,2138.0 +1159132,1159132,1159148,1,35.0,1.0,1.0,0.0,1,47900.0,1031452,6.0,22776.0,2137.0 +1159133,1159133,1159149,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22782.0,2138.0 +1159134,1159134,1159150,5,43.0,1.0,3.0,0.0,1,171000.0,1031452,2.0,22781.0,2138.0 +1159135,1159135,1159151,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22777.0,2137.0 +1159136,1159136,1159152,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22782.0,2138.0 +1159137,1159137,1159153,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22779.0,2138.0 +1159138,1159138,1159154,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22782.0,2138.0 +1159139,1159139,1159155,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22780.0,2138.0 +1159140,1159140,1159156,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22783.0,2138.0 +1159141,1159141,1159157,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22780.0,2138.0 +1159142,1159142,1159158,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22783.0,2138.0 +1159143,1159143,1159159,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22777.0,2137.0 +1159144,1159144,1159160,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22776.0,2137.0 +1159145,1159145,1159161,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22780.0,2138.0 +1159146,1159146,1159162,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22783.0,2138.0 +1159147,1159147,1159163,2,19.0,3.0,2.0,2.0,1,47000.0,1031452,5.0,22777.0,2137.0 +1159148,1159148,1159164,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22783.0,2138.0 +1159149,1159149,1159165,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22774.0,2137.0 +1159150,1159150,1159166,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22780.0,2138.0 +1159151,1159151,1159167,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22780.0,2138.0 +1159152,1159152,1159168,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22783.0,2138.0 +1159153,1159153,1159169,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22799.0,2142.0 +1159154,1159154,1159170,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22780.0,2138.0 +1159155,1159155,1159171,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22782.0,2138.0 +1159156,1159156,1159172,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22782.0,2138.0 +1159157,1159157,1159173,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22783.0,2138.0 +1159158,1159158,1159174,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22782.0,2138.0 +1159159,1159159,1159175,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22777.0,2137.0 +1159160,1159160,1159176,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22782.0,2138.0 +1159161,1159161,1159177,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22782.0,2138.0 +1159162,1159162,1159178,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22774.0,2137.0 +1159163,1159163,1159179,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22783.0,2138.0 +1159164,1159164,1159180,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22781.0,2138.0 +1159165,1159165,1159181,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22780.0,2138.0 +1159166,1159166,1159182,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22782.0,2138.0 +1159167,1159167,1159183,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22779.0,2138.0 +1159168,1159168,1159184,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22780.0,2138.0 +1159169,1159169,1159185,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22799.0,2142.0 +1159170,1159170,1159186,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22775.0,2137.0 +1159171,1159171,1159187,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22775.0,2137.0 +1159172,1159172,1159188,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22783.0,2138.0 +1159173,1159173,1159189,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22780.0,2138.0 +1159174,1159174,1159190,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22780.0,2138.0 +1159175,1159175,1159191,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22775.0,2137.0 +1159176,1159176,1159192,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22780.0,2138.0 +1159177,1159177,1159193,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22799.0,2142.0 +1159178,1159178,1159194,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22783.0,2138.0 +1159179,1159179,1159195,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22775.0,2137.0 +1159180,1159180,1159196,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22776.0,2137.0 +1159181,1159181,1159197,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22782.0,2138.0 +1159182,1159182,1159198,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22776.0,2137.0 +1159183,1159183,1159199,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22799.0,2142.0 +1159184,1159184,1159200,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22799.0,2142.0 +1159185,1159185,1159201,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22777.0,2137.0 +1159186,1159186,1159202,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22779.0,2138.0 +1159187,1159187,1159203,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22799.0,2142.0 +1159188,1159188,1159204,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22780.0,2138.0 +1159189,1159189,1159205,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22780.0,2138.0 +1159190,1159190,1159206,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22774.0,2137.0 +1159191,1159191,1159207,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22781.0,2138.0 +1159192,1159192,1159208,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159193,1159193,1159209,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159194,1159194,1159210,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159195,1159195,1159211,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22793.0,2140.0 +1159196,1159196,1159212,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159197,1159197,1159213,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22790.0,2140.0 +1159198,1159198,1159214,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159199,1159199,1159215,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159200,1159200,1159216,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22791.0,2140.0 +1159201,1159201,1159217,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159202,1159202,1159218,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22789.0,2140.0 +1159203,1159203,1159219,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159204,1159204,1159220,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159205,1159205,1159221,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22790.0,2140.0 +1159206,1159206,1159222,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159207,1159207,1159223,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22791.0,2140.0 +1159208,1159208,1159224,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159209,1159209,1159225,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159210,1159210,1159226,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159211,1159211,1159227,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22789.0,2140.0 +1159212,1159212,1159228,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159213,1159213,1159229,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22793.0,2140.0 +1159214,1159214,1159230,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159215,1159215,1159231,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22789.0,2140.0 +1159216,1159216,1159232,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159217,1159217,1159233,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159218,1159218,1159234,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159219,1159219,1159235,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22797.0,2141.0 +1159220,1159220,1159236,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22797.0,2141.0 +1159221,1159221,1159237,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22793.0,2140.0 +1159222,1159222,1159238,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159223,1159223,1159239,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22789.0,2140.0 +1159224,1159224,1159240,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159225,1159225,1159241,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22793.0,2140.0 +1159226,1159226,1159242,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159227,1159227,1159243,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159228,1159228,1159244,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159229,1159229,1159245,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159230,1159230,1159246,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159231,1159231,1159247,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159232,1159232,1159248,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22797.0,2141.0 +1159233,1159233,1159249,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22793.0,2140.0 +1159234,1159234,1159250,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159235,1159235,1159251,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22789.0,2140.0 +1159236,1159236,1159252,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159237,1159237,1159253,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22793.0,2140.0 +1159238,1159238,1159254,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22792.0,2140.0 +1159239,1159239,1159255,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22788.0,2139.0 +1159240,1159240,1159256,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22790.0,2140.0 +1159241,1159241,1159257,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22791.0,2140.0 +1159242,1159242,1159258,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159243,1159243,1159259,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22791.0,2140.0 +1159244,1159244,1159260,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22789.0,2140.0 +1159245,1159245,1159261,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159246,1159246,1159262,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159247,1159247,1159263,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159248,1159248,1159264,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159249,1159249,1159265,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159250,1159250,1159266,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159251,1159251,1159267,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22793.0,2140.0 +1159252,1159252,1159268,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22793.0,2140.0 +1159253,1159253,1159269,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159254,1159254,1159270,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159255,1159255,1159271,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22797.0,2141.0 +1159256,1159256,1159272,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22793.0,2140.0 +1159257,1159257,1159273,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159258,1159258,1159274,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159259,1159259,1159275,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22789.0,2140.0 +1159260,1159260,1159276,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22792.0,2140.0 +1159261,1159261,1159277,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159262,1159262,1159278,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159263,1159263,1159279,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22789.0,2140.0 +1159264,1159264,1159280,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22798.0,2142.0 +1159265,1159265,1159281,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22794.0,2141.0 +1159266,1159266,1159282,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22792.0,2140.0 +1159267,1159267,1159283,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22789.0,2140.0 +1159268,1159268,1159284,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22791.0,2140.0 +1159269,1159269,1159285,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22798.0,2142.0 +1159270,1159270,1159286,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22798.0,2142.0 +1159271,1159271,1159287,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22790.0,2140.0 +1159272,1159272,1159288,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22797.0,2141.0 +1159273,1159273,1159289,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22792.0,2140.0 +1159274,1159274,1159290,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22798.0,2142.0 +1159275,1159275,1159291,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22793.0,2140.0 +1159276,1159276,1159292,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22798.0,2142.0 +1159277,1159277,1159293,1,89.0,1.0,1.0,0.0,1,27300.0,1054606,6.0,22798.0,2142.0 +1159278,1159278,1159294,4,73.0,1.0,1.0,0.0,1,15600.0,1080470,3.0,22792.0,2140.0 +1159279,1159279,1159295,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22790.0,2140.0 +1159280,1159280,1159296,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22798.0,2142.0 +1159281,1159281,1159297,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22794.0,2141.0 +1159282,1159282,1159298,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22798.0,2142.0 +1159283,1159283,1159299,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22791.0,2140.0 +1159284,1159284,1159300,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22798.0,2142.0 +1159285,1159285,1159301,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22793.0,2140.0 +1159286,1159286,1159302,4,73.0,1.0,1.0,2.0,1,15600.0,1080470,3.0,22792.0,2140.0 +1159287,1159287,1159303,2,53.0,3.0,2.0,2.0,1,34600.0,1073449,3.0,22798.0,2142.0 +1159288,1159288,1159304,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22790.0,2140.0 +1159289,1159289,1159305,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22789.0,2140.0 +1159290,1159290,1159306,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22794.0,2141.0 +1159291,1159291,1159307,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22793.0,2140.0 +1159292,1159292,1159308,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22789.0,2140.0 +1159293,1159293,1159309,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22791.0,2140.0 +1159294,1159294,1159310,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22798.0,2142.0 +1159295,1159295,1159311,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22790.0,2140.0 +1159296,1159296,1159312,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22791.0,2140.0 +1159297,1159297,1159313,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22790.0,2140.0 +1159298,1159298,1159314,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22798.0,2142.0 +1159299,1159299,1159315,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22791.0,2140.0 +1159300,1159300,1159316,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22794.0,2141.0 +1159301,1159301,1159317,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22790.0,2140.0 +1159302,1159302,1159318,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22798.0,2142.0 +1159303,1159303,1159319,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22789.0,2140.0 +1159304,1159304,1159320,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22798.0,2142.0 +1159305,1159305,1159321,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22793.0,2140.0 +1159306,1159306,1159322,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22798.0,2142.0 +1159307,1159307,1159323,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22794.0,2141.0 +1159308,1159308,1159324,4,55.0,1.0,3.0,0.0,1,240200.0,1073449,1.0,22792.0,2140.0 +1159309,1159309,1159325,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159310,1159310,1159326,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22792.0,2140.0 +1159311,1159311,1159327,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159312,1159312,1159328,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159313,1159313,1159329,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159314,1159314,1159330,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159315,1159315,1159331,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159316,1159316,1159332,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159317,1159317,1159333,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159318,1159318,1159334,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159319,1159319,1159335,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159320,1159320,1159336,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159321,1159321,1159337,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159322,1159322,1159338,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159323,1159323,1159339,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22792.0,2140.0 +1159324,1159324,1159340,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159325,1159325,1159341,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159326,1159326,1159342,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159327,1159327,1159343,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22797.0,2141.0 +1159328,1159328,1159344,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159329,1159329,1159345,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22797.0,2141.0 +1159330,1159330,1159346,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159331,1159331,1159347,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159332,1159332,1159348,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159333,1159333,1159349,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22797.0,2141.0 +1159334,1159334,1159350,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159335,1159335,1159351,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159336,1159336,1159352,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159337,1159337,1159353,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159338,1159338,1159354,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159339,1159339,1159355,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159340,1159340,1159356,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159341,1159341,1159357,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159342,1159342,1159358,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159343,1159343,1159359,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159344,1159344,1159360,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159345,1159345,1159361,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159346,1159346,1159362,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22792.0,2140.0 +1159347,1159347,1159363,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159348,1159348,1159364,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159349,1159349,1159365,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159350,1159350,1159366,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22797.0,2141.0 +1159351,1159351,1159367,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159352,1159352,1159368,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159353,1159353,1159369,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159354,1159354,1159370,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22791.0,2140.0 +1159355,1159355,1159371,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22791.0,2140.0 +1159356,1159356,1159372,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159357,1159357,1159373,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159358,1159358,1159374,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159359,1159359,1159375,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159360,1159360,1159376,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22797.0,2141.0 +1159361,1159361,1159377,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159362,1159362,1159378,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159363,1159363,1159379,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159364,1159364,1159380,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159365,1159365,1159381,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159366,1159366,1159382,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159367,1159367,1159383,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159368,1159368,1159384,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22797.0,2141.0 +1159369,1159369,1159385,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159370,1159370,1159386,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159371,1159371,1159387,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159372,1159372,1159388,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159373,1159373,1159389,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159374,1159374,1159390,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159375,1159375,1159391,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159376,1159376,1159392,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22797.0,2141.0 +1159377,1159377,1159393,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159378,1159378,1159394,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159379,1159379,1159395,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159380,1159380,1159396,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22797.0,2141.0 +1159381,1159381,1159397,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159382,1159382,1159398,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159383,1159383,1159399,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22797.0,2141.0 +1159384,1159384,1159400,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159385,1159385,1159401,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159386,1159386,1159402,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159387,1159387,1159403,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159388,1159388,1159404,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159389,1159389,1159405,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159390,1159390,1159406,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159391,1159391,1159407,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22797.0,2141.0 +1159392,1159392,1159408,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22791.0,2140.0 +1159393,1159393,1159409,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159394,1159394,1159410,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159395,1159395,1159411,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159396,1159396,1159412,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159397,1159397,1159413,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159398,1159398,1159414,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159399,1159399,1159415,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159400,1159400,1159416,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159401,1159401,1159417,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159402,1159402,1159418,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159403,1159403,1159419,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159404,1159404,1159420,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159405,1159405,1159421,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159406,1159406,1159422,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159407,1159407,1159423,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159408,1159408,1159424,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159409,1159409,1159425,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159410,1159410,1159426,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159411,1159411,1159427,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159412,1159412,1159428,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159413,1159413,1159429,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159414,1159414,1159430,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159415,1159415,1159431,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159416,1159416,1159432,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159417,1159417,1159433,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22790.0,2140.0 +1159418,1159418,1159434,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159419,1159419,1159435,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159420,1159420,1159436,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159421,1159421,1159437,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22789.0,2140.0 +1159422,1159422,1159438,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159423,1159423,1159439,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159424,1159424,1159440,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159425,1159425,1159441,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22793.0,2140.0 +1159426,1159426,1159442,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159427,1159427,1159443,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22794.0,2141.0 +1159428,1159428,1159444,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159429,1159429,1159445,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1159430,1159430,1159446,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22798.0,2142.0 +1159431,1159431,1159447,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22798.0,2142.0 +1159432,1159432,1159448,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22794.0,2141.0 +1159433,1159433,1159449,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22790.0,2140.0 +1159434,1159434,1159450,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22791.0,2140.0 +1159435,1159435,1159451,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22793.0,2140.0 +1159436,1159436,1159452,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22789.0,2140.0 +1159437,1159437,1159453,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22794.0,2141.0 +1159438,1159438,1159454,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22793.0,2140.0 +1159439,1159439,1159455,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22798.0,2142.0 +1159440,1159440,1159456,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22798.0,2142.0 +1159441,1159441,1159457,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22790.0,2140.0 +1159442,1159442,1159458,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22792.0,2140.0 +1159443,1159443,1159459,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22791.0,2140.0 +1159444,1159444,1159460,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22798.0,2142.0 +1159445,1159445,1159461,4,47.0,1.0,2.0,1.0,1,201120.0,1073449,1.0,22798.0,2142.0 +1159446,1159446,1159462,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22794.0,2141.0 +1159447,1159447,1159463,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22798.0,2142.0 +1159448,1159448,1159464,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22789.0,2140.0 +1159449,1159449,1159465,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22797.0,2141.0 +1159450,1159450,1159466,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22798.0,2142.0 +1159451,1159451,1159467,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22797.0,2141.0 +1159452,1159452,1159468,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22790.0,2140.0 +1159453,1159453,1159469,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22798.0,2142.0 +1159454,1159454,1159470,2,26.0,4.0,2.0,1.0,1,96200.0,1010145,7.0,22798.0,2142.0 +1159455,1159455,1159471,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22789.0,2140.0 +1159456,1159456,1159472,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22790.0,2140.0 +1159457,1159457,1159473,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22798.0,2142.0 +1159458,1159458,1159474,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22794.0,2141.0 +1159459,1159459,1159475,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22798.0,2142.0 +1159460,1159460,1159476,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22798.0,2142.0 +1159461,1159461,1159477,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22794.0,2141.0 +1159462,1159462,1159478,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22794.0,2141.0 +1159463,1159463,1159479,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22798.0,2142.0 +1159464,1159464,1159480,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22797.0,2141.0 +1159465,1159465,1159481,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22791.0,2140.0 +1159466,1159466,1159482,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22793.0,2140.0 +1159467,1159467,1159483,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22798.0,2142.0 +1159468,1159468,1159484,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22797.0,2141.0 +1159469,1159469,1159485,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22794.0,2141.0 +1159470,1159470,1159486,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22793.0,2140.0 +1159471,1159471,1159487,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22793.0,2140.0 +1159472,1159472,1159488,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159473,1159473,1159489,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159474,1159474,1159490,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22789.0,2140.0 +1159475,1159475,1159491,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22793.0,2140.0 +1159476,1159476,1159492,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159477,1159477,1159493,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159478,1159478,1159494,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159479,1159479,1159495,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22794.0,2141.0 +1159480,1159480,1159496,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159481,1159481,1159497,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159482,1159482,1159498,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22794.0,2141.0 +1159483,1159483,1159499,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159484,1159484,1159500,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22794.0,2141.0 +1159485,1159485,1159501,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22793.0,2140.0 +1159486,1159486,1159502,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22792.0,2140.0 +1159487,1159487,1159503,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159488,1159488,1159504,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22791.0,2140.0 +1159489,1159489,1159505,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22797.0,2141.0 +1159490,1159490,1159506,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159491,1159491,1159507,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22789.0,2140.0 +1159492,1159492,1159508,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22790.0,2140.0 +1159493,1159493,1159509,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22791.0,2140.0 +1159494,1159494,1159510,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159495,1159495,1159511,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22797.0,2141.0 +1159496,1159496,1159512,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22792.0,2140.0 +1159497,1159497,1159513,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22794.0,2141.0 +1159498,1159498,1159514,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159499,1159499,1159515,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22793.0,2140.0 +1159500,1159500,1159516,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22792.0,2140.0 +1159501,1159501,1159517,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22798.0,2142.0 +1159502,1159502,1159518,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22790.0,2140.0 +1159503,1159503,1159519,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22794.0,2141.0 +1159504,1159504,1159520,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22798.0,2142.0 +1159505,1159505,1159521,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22790.0,2140.0 +1159506,1159506,1159522,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22789.0,2140.0 +1159507,1159507,1159523,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22791.0,2140.0 +1159508,1159508,1159524,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22790.0,2140.0 +1159509,1159509,1159525,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159510,1159510,1159526,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22797.0,2141.0 +1159511,1159511,1159527,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22789.0,2140.0 +1159512,1159512,1159528,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22790.0,2140.0 +1159513,1159513,1159529,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22789.0,2140.0 +1159514,1159514,1159530,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22797.0,2141.0 +1159515,1159515,1159531,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159516,1159516,1159532,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22790.0,2140.0 +1159517,1159517,1159533,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159518,1159518,1159534,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22797.0,2141.0 +1159519,1159519,1159535,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159520,1159520,1159536,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159521,1159521,1159537,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22789.0,2140.0 +1159522,1159522,1159538,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159523,1159523,1159539,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159524,1159524,1159540,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159525,1159525,1159541,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22791.0,2140.0 +1159526,1159526,1159542,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159527,1159527,1159543,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159528,1159528,1159544,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159529,1159529,1159545,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159530,1159530,1159546,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159531,1159531,1159547,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159532,1159532,1159548,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22790.0,2140.0 +1159533,1159533,1159549,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159534,1159534,1159550,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159535,1159535,1159551,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159536,1159536,1159552,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159537,1159537,1159553,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22791.0,2140.0 +1159538,1159538,1159554,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159539,1159539,1159555,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22792.0,2140.0 +1159540,1159540,1159556,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159541,1159541,1159557,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159542,1159542,1159558,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22792.0,2140.0 +1159543,1159543,1159559,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159544,1159544,1159560,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159545,1159545,1159561,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159546,1159546,1159562,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159547,1159547,1159563,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159548,1159548,1159564,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22791.0,2140.0 +1159549,1159549,1159565,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22797.0,2141.0 +1159550,1159550,1159566,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22790.0,2140.0 +1159551,1159551,1159567,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159552,1159552,1159568,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159553,1159553,1159569,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22797.0,2141.0 +1159554,1159554,1159570,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22797.0,2141.0 +1159555,1159555,1159571,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159556,1159556,1159572,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22792.0,2140.0 +1159557,1159557,1159573,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22791.0,2140.0 +1159558,1159558,1159574,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159559,1159559,1159575,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159560,1159560,1159576,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22789.0,2140.0 +1159561,1159561,1159577,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159562,1159562,1159578,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159563,1159563,1159579,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159564,1159564,1159580,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159565,1159565,1159581,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159566,1159566,1159582,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159567,1159567,1159583,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159568,1159568,1159584,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159569,1159569,1159585,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22788.0,2139.0 +1159570,1159570,1159586,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159571,1159571,1159587,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159572,1159572,1159588,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22789.0,2140.0 +1159573,1159573,1159589,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159574,1159574,1159590,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159575,1159575,1159591,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159576,1159576,1159592,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159577,1159577,1159593,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159578,1159578,1159594,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159579,1159579,1159595,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22791.0,2140.0 +1159580,1159580,1159596,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22791.0,2140.0 +1159581,1159581,1159597,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159582,1159582,1159598,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159583,1159583,1159599,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159584,1159584,1159600,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159585,1159585,1159601,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159586,1159586,1159602,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159587,1159587,1159603,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22791.0,2140.0 +1159588,1159588,1159604,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159589,1159589,1159605,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22794.0,2141.0 +1159590,1159590,1159606,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159591,1159591,1159607,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22789.0,2140.0 +1159592,1159592,1159608,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159593,1159593,1159609,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22793.0,2140.0 +1159594,1159594,1159610,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22798.0,2142.0 +1159595,1159595,1159611,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22797.0,2141.0 +1159596,1159596,1159612,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22797.0,2141.0 +1159597,1159597,1159613,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22789.0,2140.0 +1159598,1159598,1159614,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159599,1159599,1159615,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22789.0,2140.0 +1159600,1159600,1159616,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159601,1159601,1159617,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22792.0,2140.0 +1159602,1159602,1159618,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159603,1159603,1159619,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22797.0,2141.0 +1159604,1159604,1159620,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22789.0,2140.0 +1159605,1159605,1159621,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22789.0,2140.0 +1159606,1159606,1159622,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159607,1159607,1159623,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159608,1159608,1159624,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22792.0,2140.0 +1159609,1159609,1159625,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159610,1159610,1159626,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22789.0,2140.0 +1159611,1159611,1159627,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159612,1159612,1159628,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159613,1159613,1159629,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22793.0,2140.0 +1159614,1159614,1159630,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22793.0,2140.0 +1159615,1159615,1159631,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22790.0,2140.0 +1159616,1159616,1159632,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22790.0,2140.0 +1159617,1159617,1159633,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22793.0,2140.0 +1159618,1159618,1159634,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22797.0,2141.0 +1159619,1159619,1159635,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22789.0,2140.0 +1159620,1159620,1159636,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22792.0,2140.0 +1159621,1159621,1159637,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22789.0,2140.0 +1159622,1159622,1159638,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22789.0,2140.0 +1159623,1159623,1159639,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22797.0,2141.0 +1159624,1159624,1159640,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22789.0,2140.0 +1159625,1159625,1159641,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22797.0,2141.0 +1159626,1159626,1159642,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159627,1159627,1159643,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22797.0,2141.0 +1159628,1159628,1159644,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22791.0,2140.0 +1159629,1159629,1159645,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159630,1159630,1159646,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22789.0,2140.0 +1159631,1159631,1159647,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159632,1159632,1159648,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159633,1159633,1159649,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22790.0,2140.0 +1159634,1159634,1159650,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159635,1159635,1159651,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22792.0,2140.0 +1159636,1159636,1159652,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159637,1159637,1159653,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22797.0,2141.0 +1159638,1159638,1159654,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22794.0,2141.0 +1159639,1159639,1159655,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22793.0,2140.0 +1159640,1159640,1159656,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22793.0,2140.0 +1159641,1159641,1159657,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22798.0,2142.0 +1159642,1159642,1159658,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22797.0,2141.0 +1159643,1159643,1159659,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22798.0,2142.0 +1159644,1159644,1159660,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22791.0,2140.0 +1159645,1159645,1159661,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22794.0,2141.0 +1159646,1159646,1159662,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22798.0,2142.0 +1159647,1159647,1159663,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22793.0,2140.0 +1159648,1159648,1159664,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22798.0,2142.0 +1159649,1159649,1159665,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22794.0,2141.0 +1159650,1159650,1159666,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22790.0,2140.0 +1159651,1159651,1159667,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22798.0,2142.0 +1159652,1159652,1159668,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22794.0,2141.0 +1159653,1159653,1159669,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22797.0,2141.0 +1159654,1159654,1159670,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22794.0,2141.0 +1159655,1159655,1159671,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22792.0,2140.0 +1159656,1159656,1159672,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22798.0,2142.0 +1159657,1159657,1159673,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22793.0,2140.0 +1159658,1159658,1159674,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22794.0,2141.0 +1159659,1159659,1159675,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22794.0,2141.0 +1159660,1159660,1159676,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22791.0,2140.0 +1159661,1159661,1159677,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22790.0,2140.0 +1159662,1159662,1159678,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22798.0,2142.0 +1159663,1159663,1159679,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22798.0,2142.0 +1159664,1159664,1159680,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22794.0,2141.0 +1159665,1159665,1159681,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22793.0,2140.0 +1159666,1159666,1159682,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22794.0,2141.0 +1159667,1159667,1159683,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22798.0,2142.0 +1159668,1159668,1159684,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22798.0,2142.0 +1159669,1159669,1159685,1,41.0,1.0,3.0,0.0,1,38000.0,1080470,6.0,22794.0,2141.0 +1159670,1159670,1159686,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22798.0,2142.0 +1159671,1159671,1159687,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22794.0,2141.0 +1159672,1159672,1159688,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22797.0,2141.0 +1159673,1159673,1159689,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22790.0,2140.0 +1159674,1159674,1159690,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22792.0,2140.0 +1159675,1159675,1159691,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22793.0,2140.0 +1159676,1159676,1159692,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22793.0,2140.0 +1159677,1159677,1159693,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22797.0,2141.0 +1159678,1159678,1159694,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22791.0,2140.0 +1159679,1159679,1159695,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22790.0,2140.0 +1159680,1159680,1159696,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159681,1159681,1159697,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22791.0,2140.0 +1159682,1159682,1159698,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159683,1159683,1159699,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159684,1159684,1159700,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22789.0,2140.0 +1159685,1159685,1159701,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22789.0,2140.0 +1159686,1159686,1159702,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22797.0,2141.0 +1159687,1159687,1159703,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22790.0,2140.0 +1159688,1159688,1159704,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22797.0,2141.0 +1159689,1159689,1159705,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22790.0,2140.0 +1159690,1159690,1159706,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159691,1159691,1159707,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22790.0,2140.0 +1159692,1159692,1159708,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159693,1159693,1159709,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159694,1159694,1159710,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22794.0,2141.0 +1159695,1159695,1159711,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22792.0,2140.0 +1159696,1159696,1159712,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159697,1159697,1159713,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22793.0,2140.0 +1159698,1159698,1159714,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22790.0,2140.0 +1159699,1159699,1159715,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159700,1159700,1159716,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159701,1159701,1159717,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22794.0,2141.0 +1159702,1159702,1159718,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22789.0,2140.0 +1159703,1159703,1159719,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159704,1159704,1159720,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22789.0,2140.0 +1159705,1159705,1159721,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22789.0,2140.0 +1159706,1159706,1159722,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22794.0,2141.0 +1159707,1159707,1159723,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22790.0,2140.0 +1159708,1159708,1159724,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159709,1159709,1159725,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159710,1159710,1159726,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22794.0,2141.0 +1159711,1159711,1159727,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22791.0,2140.0 +1159712,1159712,1159728,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22789.0,2140.0 +1159713,1159713,1159729,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22797.0,2141.0 +1159714,1159714,1159730,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22794.0,2141.0 +1159715,1159715,1159731,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159716,1159716,1159732,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22792.0,2140.0 +1159717,1159717,1159733,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22793.0,2140.0 +1159718,1159718,1159734,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1159719,1159719,1159735,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22794.0,2141.0 +1159720,1159720,1159736,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22798.0,2142.0 +1159721,1159721,1159737,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22793.0,2140.0 +1159722,1159722,1159738,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22789.0,2140.0 +1159723,1159723,1159739,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22789.0,2140.0 +1159724,1159724,1159740,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22794.0,2141.0 +1159725,1159725,1159741,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22792.0,2140.0 +1159726,1159726,1159742,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22789.0,2140.0 +1159727,1159727,1159743,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22798.0,2142.0 +1159728,1159728,1159744,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22794.0,2141.0 +1159729,1159729,1159745,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22790.0,2140.0 +1159730,1159730,1159746,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22789.0,2140.0 +1159731,1159731,1159747,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22797.0,2141.0 +1159732,1159732,1159748,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159733,1159733,1159749,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159734,1159734,1159750,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22793.0,2140.0 +1159735,1159735,1159751,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159736,1159736,1159752,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22797.0,2141.0 +1159737,1159737,1159753,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22790.0,2140.0 +1159738,1159738,1159754,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159739,1159739,1159755,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22791.0,2140.0 +1159740,1159740,1159756,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159741,1159741,1159757,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22789.0,2140.0 +1159742,1159742,1159758,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22797.0,2141.0 +1159743,1159743,1159759,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159744,1159744,1159760,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159745,1159745,1159761,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159746,1159746,1159762,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159747,1159747,1159763,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22793.0,2140.0 +1159748,1159748,1159764,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159749,1159749,1159765,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22793.0,2140.0 +1159750,1159750,1159766,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159751,1159751,1159767,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159752,1159752,1159768,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22797.0,2141.0 +1159753,1159753,1159769,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22793.0,2140.0 +1159754,1159754,1159770,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22797.0,2141.0 +1159755,1159755,1159771,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22793.0,2140.0 +1159756,1159756,1159772,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22797.0,2141.0 +1159757,1159757,1159773,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159758,1159758,1159774,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159759,1159759,1159775,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159760,1159760,1159776,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159761,1159761,1159777,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159762,1159762,1159778,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159763,1159763,1159779,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159764,1159764,1159780,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159765,1159765,1159781,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159766,1159766,1159782,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22789.0,2140.0 +1159767,1159767,1159783,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22793.0,2140.0 +1159768,1159768,1159784,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159769,1159769,1159785,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22790.0,2140.0 +1159770,1159770,1159786,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22789.0,2140.0 +1159771,1159771,1159787,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22791.0,2140.0 +1159772,1159772,1159788,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22789.0,2140.0 +1159773,1159773,1159789,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22793.0,2140.0 +1159774,1159774,1159790,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159775,1159775,1159791,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159776,1159776,1159792,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22789.0,2140.0 +1159777,1159777,1159793,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22791.0,2140.0 +1159778,1159778,1159794,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159779,1159779,1159795,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22793.0,2140.0 +1159780,1159780,1159796,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159781,1159781,1159797,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159782,1159782,1159798,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22797.0,2141.0 +1159783,1159783,1159799,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22793.0,2140.0 +1159784,1159784,1159800,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159785,1159785,1159801,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159786,1159786,1159802,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159787,1159787,1159803,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159788,1159788,1159804,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159789,1159789,1159805,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22789.0,2140.0 +1159790,1159790,1159806,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159791,1159791,1159807,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22790.0,2140.0 +1159792,1159792,1159808,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159793,1159793,1159809,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159794,1159794,1159810,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159795,1159795,1159811,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22797.0,2141.0 +1159796,1159796,1159812,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159797,1159797,1159813,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159798,1159798,1159814,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159799,1159799,1159815,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159800,1159800,1159816,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22790.0,2140.0 +1159801,1159801,1159817,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22793.0,2140.0 +1159802,1159802,1159818,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22789.0,2140.0 +1159803,1159803,1159819,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159804,1159804,1159820,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22797.0,2141.0 +1159805,1159805,1159821,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159806,1159806,1159822,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159807,1159807,1159823,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22791.0,2140.0 +1159808,1159808,1159824,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159809,1159809,1159825,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159810,1159810,1159826,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159811,1159811,1159827,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22797.0,2141.0 +1159812,1159812,1159828,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159813,1159813,1159829,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159814,1159814,1159830,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159815,1159815,1159831,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22789.0,2140.0 +1159816,1159816,1159832,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159817,1159817,1159833,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159818,1159818,1159834,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22792.0,2140.0 +1159819,1159819,1159835,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159820,1159820,1159836,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22791.0,2140.0 +1159821,1159821,1159837,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159822,1159822,1159838,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22794.0,2141.0 +1159823,1159823,1159839,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1159824,1159824,1159840,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22790.0,2140.0 +1159825,1159825,1159841,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159826,1159826,1159842,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22789.0,2140.0 +1159827,1159827,1159843,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159828,1159828,1159844,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22792.0,2140.0 +1159829,1159829,1159845,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22797.0,2141.0 +1159830,1159830,1159846,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22793.0,2140.0 +1159831,1159831,1159847,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159832,1159832,1159848,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22789.0,2140.0 +1159833,1159833,1159849,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22794.0,2141.0 +1159834,1159834,1159850,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22793.0,2140.0 +1159835,1159835,1159851,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159836,1159836,1159852,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22793.0,2140.0 +1159837,1159837,1159853,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22793.0,2140.0 +1159838,1159838,1159854,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22794.0,2141.0 +1159839,1159839,1159855,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159840,1159840,1159856,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22793.0,2140.0 +1159841,1159841,1159857,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159842,1159842,1159858,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22789.0,2140.0 +1159843,1159843,1159859,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22794.0,2141.0 +1159844,1159844,1159860,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159845,1159845,1159861,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159846,1159846,1159862,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159847,1159847,1159863,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22793.0,2140.0 +1159848,1159848,1159864,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159849,1159849,1159865,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159850,1159850,1159866,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22789.0,2140.0 +1159851,1159851,1159867,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22797.0,2141.0 +1159852,1159852,1159868,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22790.0,2140.0 +1159853,1159853,1159869,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159854,1159854,1159870,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22793.0,2140.0 +1159855,1159855,1159871,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22794.0,2141.0 +1159856,1159856,1159872,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22789.0,2140.0 +1159857,1159857,1159873,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159858,1159858,1159874,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22794.0,2141.0 +1159859,1159859,1159875,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22794.0,2141.0 +1159860,1159860,1159876,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22789.0,2140.0 +1159861,1159861,1159877,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159862,1159862,1159878,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22790.0,2140.0 +1159863,1159863,1159879,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22789.0,2140.0 +1159864,1159864,1159880,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22793.0,2140.0 +1159865,1159865,1159881,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1159866,1159866,1159882,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22792.0,2140.0 +1159867,1159867,1159883,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22792.0,2140.0 +1159868,1159868,1159884,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22792.0,2140.0 +1159869,1159869,1159885,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22794.0,2141.0 +1159870,1159870,1159886,1,65.0,1.0,1.0,0.0,1,110000.0,1073449,6.0,22798.0,2142.0 +1159871,1159871,1159887,1,65.0,1.0,1.0,0.0,1,110000.0,1073449,6.0,22784.0,2139.0 +1159872,1159872,1159888,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22784.0,2139.0 +1159873,1159873,1159889,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22798.0,2142.0 +1159874,1159874,1159890,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22788.0,2139.0 +1159875,1159875,1159891,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22798.0,2142.0 +1159876,1159876,1159892,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22786.0,2139.0 +1159877,1159877,1159893,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22788.0,2139.0 +1159878,1159878,1159894,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22786.0,2139.0 +1159879,1159879,1159895,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22784.0,2139.0 +1159880,1159880,1159896,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22798.0,2142.0 +1159881,1159881,1159897,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22788.0,2139.0 +1159882,1159882,1159898,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22788.0,2139.0 +1159883,1159883,1159899,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22788.0,2139.0 +1159884,1159884,1159900,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22798.0,2142.0 +1159885,1159885,1159901,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22788.0,2139.0 +1159886,1159886,1159902,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22788.0,2139.0 +1159887,1159887,1159903,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22788.0,2139.0 +1159888,1159888,1159904,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22788.0,2139.0 +1159889,1159889,1159905,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22788.0,2139.0 +1159890,1159890,1159906,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22788.0,2139.0 +1159891,1159891,1159907,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22788.0,2139.0 +1159892,1159892,1159908,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22798.0,2142.0 +1159893,1159893,1159909,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22798.0,2142.0 +1159894,1159894,1159910,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22798.0,2142.0 +1159895,1159895,1159911,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22798.0,2142.0 +1159896,1159896,1159912,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22798.0,2142.0 +1159897,1159897,1159913,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22798.0,2142.0 +1159898,1159898,1159914,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22798.0,2142.0 +1159899,1159899,1159915,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22788.0,2139.0 +1159900,1159900,1159916,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22788.0,2139.0 +1159901,1159901,1159917,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22788.0,2139.0 +1159902,1159902,1159918,1,67.0,1.0,1.0,0.0,1,139700.0,1054606,6.0,22788.0,2139.0 +1159903,1159903,1159919,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22786.0,2139.0 +1159904,1159904,1159920,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22798.0,2142.0 +1159905,1159905,1159921,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22798.0,2142.0 +1159906,1159906,1159922,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22788.0,2139.0 +1159907,1159907,1159923,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22788.0,2139.0 +1159908,1159908,1159924,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22788.0,2139.0 +1159909,1159909,1159925,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22788.0,2139.0 +1159910,1159910,1159926,1,67.0,1.0,1.0,0.0,1,139700.0,1054606,6.0,22788.0,2139.0 +1159911,1159911,1159927,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22798.0,2142.0 +1159912,1159912,1159928,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22788.0,2139.0 +1159913,1159913,1159929,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22788.0,2139.0 +1159914,1159914,1159930,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22798.0,2142.0 +1159915,1159915,1159931,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22788.0,2139.0 +1159916,1159916,1159932,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22798.0,2142.0 +1159917,1159917,1159933,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22788.0,2139.0 +1159918,1159918,1159934,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22788.0,2139.0 +1159919,1159919,1159935,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22788.0,2139.0 +1159920,1159920,1159936,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22798.0,2142.0 +1159921,1159921,1159937,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22798.0,2142.0 +1159922,1159922,1159938,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22788.0,2139.0 +1159923,1159923,1159939,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22788.0,2139.0 +1159924,1159924,1159940,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22798.0,2142.0 +1159925,1159925,1159941,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22798.0,2142.0 +1159926,1159926,1159942,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22784.0,2139.0 +1159927,1159927,1159943,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22798.0,2142.0 +1159928,1159928,1159944,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22798.0,2142.0 +1159929,1159929,1159945,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22798.0,2142.0 +1159930,1159930,1159946,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22788.0,2139.0 +1159931,1159931,1159947,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22788.0,2139.0 +1159932,1159932,1159948,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22798.0,2142.0 +1159933,1159933,1159949,1,77.0,1.0,1.0,0.0,1,38600.0,1031452,6.0,22798.0,2142.0 +1159934,1159934,1159950,1,75.0,1.0,1.0,0.0,1,30500.0,1073449,6.0,22788.0,2139.0 +1159935,1159935,1159951,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22798.0,2142.0 +1159936,1159936,1159952,1,76.0,1.0,1.0,0.0,1,10200.0,1080470,6.0,22788.0,2139.0 +1159937,1159937,1159953,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22784.0,2139.0 +1159938,1159938,1159954,1,87.0,1.0,1.0,0.0,1,14120.0,1010145,6.0,22788.0,2139.0 +1159939,1159939,1159955,1,71.0,1.0,1.0,0.0,1,16400.0,1080470,6.0,22798.0,2142.0 +1159940,1159940,1159956,1,71.0,1.0,1.0,0.0,1,16400.0,1080470,6.0,22786.0,2139.0 +1159941,1159941,1159957,1,84.0,1.0,1.0,0.0,1,15000.0,1054606,6.0,22788.0,2139.0 +1159942,1159942,1159958,1,89.0,1.0,1.0,0.0,1,27300.0,1054606,6.0,22798.0,2142.0 +1159943,1159943,1159959,1,71.0,1.0,1.0,0.0,1,16400.0,1080470,6.0,22786.0,2139.0 +1159944,1159944,1159960,1,71.0,1.0,1.0,0.0,1,16400.0,1080470,6.0,22784.0,2139.0 +1159945,1159945,1159961,1,84.0,1.0,1.0,0.0,1,15000.0,1054606,6.0,22786.0,2139.0 +1159946,1159946,1159962,1,71.0,1.0,1.0,0.0,1,16400.0,1080470,6.0,22798.0,2142.0 +1159947,1159947,1159963,1,94.0,1.0,1.0,0.0,1,25400.0,1073449,6.0,22788.0,2139.0 +1159948,1159948,1159964,1,94.0,1.0,1.0,0.0,1,25400.0,1073449,6.0,22798.0,2142.0 +1159949,1159949,1159965,1,94.0,1.0,1.0,0.0,1,25400.0,1073449,6.0,22798.0,2142.0 +1159950,1159950,1159966,1,94.0,1.0,1.0,0.0,1,25400.0,1073449,6.0,22798.0,2142.0 +1159951,1159951,1159967,1,84.0,1.0,1.0,0.0,1,15000.0,1054606,6.0,22798.0,2142.0 +1159952,1159952,1159968,1,87.0,1.0,1.0,0.0,1,14120.0,1010145,6.0,22798.0,2142.0 +1159953,1159953,1159969,1,89.0,1.0,1.0,0.0,1,27300.0,1054606,6.0,22798.0,2142.0 +1159954,1159954,1159970,1,76.0,1.0,1.0,0.0,1,10200.0,1080470,6.0,22788.0,2139.0 +1159955,1159955,1159971,1,84.0,1.0,1.0,0.0,1,15000.0,1054606,6.0,22788.0,2139.0 +1159956,1159956,1159972,1,76.0,1.0,1.0,0.0,1,10200.0,1080470,6.0,22788.0,2139.0 +1159957,1159957,1159973,1,76.0,1.0,1.0,0.0,1,10200.0,1080470,6.0,22788.0,2139.0 +1159958,1159958,1159974,1,76.0,1.0,1.0,0.0,1,10200.0,1080470,6.0,22788.0,2139.0 +1159959,1159959,1159975,1,87.0,1.0,1.0,0.0,1,14120.0,1010145,6.0,22788.0,2139.0 +1159960,1159960,1159976,1,84.0,1.0,1.0,0.0,1,15000.0,1054606,6.0,22798.0,2142.0 +1159961,1159961,1159977,1,89.0,1.0,1.0,0.0,1,27300.0,1054606,6.0,22798.0,2142.0 +1159962,1159962,1159978,1,87.0,1.0,1.0,0.0,1,14120.0,1010145,6.0,22788.0,2139.0 +1159963,1159963,1159979,1,94.0,1.0,1.0,0.0,1,25400.0,1073449,6.0,22788.0,2139.0 +1159964,1159964,1159980,1,71.0,1.0,1.0,0.0,1,16400.0,1080470,6.0,22788.0,2139.0 +1159965,1159965,1159981,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22786.0,2139.0 +1159966,1159966,1159982,1,84.0,1.0,1.0,0.0,1,15000.0,1054606,6.0,22784.0,2139.0 +1159967,1159967,1159983,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22798.0,2142.0 +1159968,1159968,1159984,1,94.0,1.0,1.0,0.0,1,25400.0,1073449,6.0,22788.0,2139.0 +1159969,1159969,1159985,1,87.0,1.0,1.0,0.0,1,14120.0,1010145,6.0,22788.0,2139.0 +1159970,1159970,1159986,1,94.0,1.0,1.0,0.0,1,25400.0,1073449,6.0,22788.0,2139.0 +1159971,1159971,1159987,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22798.0,2142.0 +1159972,1159972,1159988,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22798.0,2142.0 +1159973,1159973,1159989,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22788.0,2139.0 +1159974,1159974,1159990,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22788.0,2139.0 +1159975,1159975,1159991,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22798.0,2142.0 +1159976,1159976,1159992,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22788.0,2139.0 +1159977,1159977,1159993,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22788.0,2139.0 +1159978,1159978,1159994,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22784.0,2139.0 +1159979,1159979,1159995,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22788.0,2139.0 +1159980,1159980,1159996,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22788.0,2139.0 +1159981,1159981,1159997,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22788.0,2139.0 +1159982,1159982,1159998,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22798.0,2142.0 +1159983,1159983,1159999,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22788.0,2139.0 +1159984,1159984,1160000,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22798.0,2142.0 +1159985,1159985,1160001,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22798.0,2142.0 +1159986,1159986,1160002,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22788.0,2139.0 +1159987,1159987,1160003,1,59.0,1.0,1.0,0.0,1,165000.0,1031452,6.0,22784.0,2139.0 +1159988,1159988,1160004,1,59.0,1.0,1.0,0.0,1,119300.0,1080470,6.0,22788.0,2139.0 +1159989,1159989,1160005,1,61.0,1.0,1.0,0.0,1,246100.0,1031452,6.0,22788.0,2139.0 +1159990,1159990,1160006,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22788.0,2139.0 +1159991,1159991,1160007,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22784.0,2139.0 +1159992,1159992,1160008,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22784.0,2139.0 +1159993,1159993,1160009,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22788.0,2139.0 +1159994,1159994,1160010,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22798.0,2142.0 +1159995,1159995,1160011,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22788.0,2139.0 +1159996,1159996,1160012,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22788.0,2139.0 +1159997,1159997,1160013,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22788.0,2139.0 +1159998,1159998,1160014,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22798.0,2142.0 +1159999,1159999,1160015,1,57.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22798.0,2142.0 +1160000,1160000,1160016,4,55.0,1.0,3.0,0.0,1,240200.0,1073449,1.0,22798.0,2142.0 +1160001,1160001,1160017,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22788.0,2139.0 +1160002,1160002,1160018,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22784.0,2139.0 +1160003,1160003,1160019,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22788.0,2139.0 +1160004,1160004,1160020,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22788.0,2139.0 +1160005,1160005,1160021,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22788.0,2139.0 +1160006,1160006,1160022,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22786.0,2139.0 +1160007,1160007,1160023,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22784.0,2139.0 +1160008,1160008,1160024,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22798.0,2142.0 +1160009,1160009,1160025,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22788.0,2139.0 +1160010,1160010,1160026,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22798.0,2142.0 +1160011,1160011,1160027,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22788.0,2139.0 +1160012,1160012,1160028,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22798.0,2142.0 +1160013,1160013,1160029,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22788.0,2139.0 +1160014,1160014,1160030,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22786.0,2139.0 +1160015,1160015,1160031,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22798.0,2142.0 +1160016,1160016,1160032,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22798.0,2142.0 +1160017,1160017,1160033,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22786.0,2139.0 +1160018,1160018,1160034,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22788.0,2139.0 +1160019,1160019,1160035,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22788.0,2139.0 +1160020,1160020,1160036,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22798.0,2142.0 +1160021,1160021,1160037,4,55.0,1.0,1.0,1.0,1,133500.0,1010145,1.0,22788.0,2139.0 +1160022,1160022,1160038,2,35.0,4.0,1.0,1.0,1,75000.0,1054606,1.0,22798.0,2142.0 +1160023,1160023,1160039,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160024,1160024,1160040,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22798.0,2142.0 +1160025,1160025,1160041,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160026,1160026,1160042,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22798.0,2142.0 +1160027,1160027,1160043,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22798.0,2142.0 +1160028,1160028,1160044,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160029,1160029,1160045,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160030,1160030,1160046,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160031,1160031,1160047,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160032,1160032,1160048,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22798.0,2142.0 +1160033,1160033,1160049,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160034,1160034,1160050,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160035,1160035,1160051,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160036,1160036,1160052,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160037,1160037,1160053,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160038,1160038,1160054,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22798.0,2142.0 +1160039,1160039,1160055,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160040,1160040,1160056,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22784.0,2139.0 +1160041,1160041,1160057,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160042,1160042,1160058,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22798.0,2142.0 +1160043,1160043,1160059,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22788.0,2139.0 +1160044,1160044,1160060,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22784.0,2139.0 +1160045,1160045,1160061,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22798.0,2142.0 +1160046,1160046,1160062,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22784.0,2139.0 +1160047,1160047,1160063,2,35.0,4.0,1.0,0.0,1,75000.0,1054606,1.0,22786.0,2139.0 +1160048,1160048,1160064,1,25.0,1.0,1.0,0.0,1,110000.0,1031452,6.0,22798.0,2142.0 +1160049,1160049,1160065,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22784.0,2139.0 +1160050,1160050,1160066,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160051,1160051,1160067,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160052,1160052,1160068,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160053,1160053,1160069,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160054,1160054,1160070,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160055,1160055,1160071,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160056,1160056,1160072,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160057,1160057,1160073,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160058,1160058,1160074,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22784.0,2139.0 +1160059,1160059,1160075,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160060,1160060,1160076,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160061,1160061,1160077,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160062,1160062,1160078,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160063,1160063,1160079,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160064,1160064,1160080,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160065,1160065,1160081,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22784.0,2139.0 +1160066,1160066,1160082,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160067,1160067,1160083,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160068,1160068,1160084,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160069,1160069,1160085,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160070,1160070,1160086,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160071,1160071,1160087,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160072,1160072,1160088,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160073,1160073,1160089,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22786.0,2139.0 +1160074,1160074,1160090,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160075,1160075,1160091,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160076,1160076,1160092,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160077,1160077,1160093,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160078,1160078,1160094,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160079,1160079,1160095,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22786.0,2139.0 +1160080,1160080,1160096,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160081,1160081,1160097,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22798.0,2142.0 +1160082,1160082,1160098,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160083,1160083,1160099,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160084,1160084,1160100,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160085,1160085,1160101,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22784.0,2139.0 +1160086,1160086,1160102,2,29.0,1.0,1.0,0.0,1,64000.0,1010145,5.0,22788.0,2139.0 +1160087,1160087,1160103,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22788.0,2139.0 +1160088,1160088,1160104,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22788.0,2139.0 +1160089,1160089,1160105,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22788.0,2139.0 +1160090,1160090,1160106,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22798.0,2142.0 +1160091,1160091,1160107,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22798.0,2142.0 +1160092,1160092,1160108,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22784.0,2139.0 +1160093,1160093,1160109,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160094,1160094,1160110,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160095,1160095,1160111,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160096,1160096,1160112,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160097,1160097,1160113,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160098,1160098,1160114,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160099,1160099,1160115,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160100,1160100,1160116,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160101,1160101,1160117,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160102,1160102,1160118,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160103,1160103,1160119,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160104,1160104,1160120,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160105,1160105,1160121,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160106,1160106,1160122,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160107,1160107,1160123,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160108,1160108,1160124,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160109,1160109,1160125,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160110,1160110,1160126,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22784.0,2139.0 +1160111,1160111,1160127,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22784.0,2139.0 +1160112,1160112,1160128,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160113,1160113,1160129,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160114,1160114,1160130,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22784.0,2139.0 +1160115,1160115,1160131,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160116,1160116,1160132,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160117,1160117,1160133,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160118,1160118,1160134,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160119,1160119,1160135,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160120,1160120,1160136,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160121,1160121,1160137,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160122,1160122,1160138,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22798.0,2142.0 +1160123,1160123,1160139,2,26.0,1.0,2.0,0.0,1,47500.0,1080470,7.0,22788.0,2139.0 +1160124,1160124,1160140,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22784.0,2139.0 +1160125,1160125,1160141,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22788.0,2139.0 +1160126,1160126,1160142,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22786.0,2139.0 +1160127,1160127,1160143,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22798.0,2142.0 +1160128,1160128,1160144,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22788.0,2139.0 +1160129,1160129,1160145,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22788.0,2139.0 +1160130,1160130,1160146,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22798.0,2142.0 +1160131,1160131,1160147,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22798.0,2142.0 +1160132,1160132,1160148,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22788.0,2139.0 +1160133,1160133,1160149,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22798.0,2142.0 +1160134,1160134,1160150,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160135,1160135,1160151,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22798.0,2142.0 +1160136,1160136,1160152,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22786.0,2139.0 +1160137,1160137,1160153,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22798.0,2142.0 +1160138,1160138,1160154,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22788.0,2139.0 +1160139,1160139,1160155,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160140,1160140,1160156,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160141,1160141,1160157,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22784.0,2139.0 +1160142,1160142,1160158,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22798.0,2142.0 +1160143,1160143,1160159,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22784.0,2139.0 +1160144,1160144,1160160,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160145,1160145,1160161,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22798.0,2142.0 +1160146,1160146,1160162,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22798.0,2142.0 +1160147,1160147,1160163,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22798.0,2142.0 +1160148,1160148,1160164,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160149,1160149,1160165,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160150,1160150,1160166,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22798.0,2142.0 +1160151,1160151,1160167,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22788.0,2139.0 +1160152,1160152,1160168,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22798.0,2142.0 +1160153,1160153,1160169,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160154,1160154,1160170,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160155,1160155,1160171,1,25.0,1.0,1.0,0.0,1,58000.0,1080470,6.0,22788.0,2139.0 +1160156,1160156,1160172,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22798.0,2142.0 +1160157,1160157,1160173,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22788.0,2139.0 +1160158,1160158,1160174,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160159,1160159,1160175,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22798.0,2142.0 +1160160,1160160,1160176,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160161,1160161,1160177,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22788.0,2139.0 +1160162,1160162,1160178,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22798.0,2142.0 +1160163,1160163,1160179,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160164,1160164,1160180,1,32.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22788.0,2139.0 +1160165,1160165,1160181,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22798.0,2142.0 +1160166,1160166,1160182,1,25.0,1.0,1.0,0.0,1,38000.0,1054606,6.0,22788.0,2139.0 +1160167,1160167,1160183,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1160168,1160168,1160184,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160169,1160169,1160185,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160170,1160170,1160186,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160171,1160171,1160187,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1160172,1160172,1160188,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1160173,1160173,1160189,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160174,1160174,1160190,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160175,1160175,1160191,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1160176,1160176,1160192,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160177,1160177,1160193,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160178,1160178,1160194,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160179,1160179,1160195,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160180,1160180,1160196,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160181,1160181,1160197,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1160182,1160182,1160198,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160183,1160183,1160199,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1160184,1160184,1160200,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1160185,1160185,1160201,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1160186,1160186,1160202,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160187,1160187,1160203,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1160188,1160188,1160204,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160189,1160189,1160205,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160190,1160190,1160206,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160191,1160191,1160207,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1160192,1160192,1160208,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160193,1160193,1160209,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160194,1160194,1160210,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160195,1160195,1160211,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160196,1160196,1160212,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160197,1160197,1160213,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160198,1160198,1160214,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160199,1160199,1160215,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22798.0,2142.0 +1160200,1160200,1160216,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22788.0,2139.0 +1160201,1160201,1160217,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22798.0,2142.0 +1160202,1160202,1160218,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22798.0,2142.0 +1160203,1160203,1160219,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22798.0,2142.0 +1160204,1160204,1160220,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22786.0,2139.0 +1160205,1160205,1160221,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22788.0,2139.0 +1160206,1160206,1160222,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22798.0,2142.0 +1160207,1160207,1160223,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22798.0,2142.0 +1160208,1160208,1160224,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22798.0,2142.0 +1160209,1160209,1160225,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22788.0,2139.0 +1160210,1160210,1160226,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22788.0,2139.0 +1160211,1160211,1160227,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22788.0,2139.0 +1160212,1160212,1160228,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22788.0,2139.0 +1160213,1160213,1160229,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22788.0,2139.0 +1160214,1160214,1160230,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22788.0,2139.0 +1160215,1160215,1160231,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22788.0,2139.0 +1160216,1160216,1160232,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22798.0,2142.0 +1160217,1160217,1160233,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22784.0,2139.0 +1160218,1160218,1160234,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22798.0,2142.0 +1160219,1160219,1160235,1,41.0,1.0,1.0,0.0,1,15400.0,1073449,4.0,22788.0,2139.0 +1160220,1160220,1160236,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22798.0,2142.0 +1160221,1160221,1160237,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22784.0,2139.0 +1160222,1160222,1160238,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22798.0,2142.0 +1160223,1160223,1160239,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22788.0,2139.0 +1160224,1160224,1160240,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22798.0,2142.0 +1160225,1160225,1160241,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22788.0,2139.0 +1160226,1160226,1160242,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22798.0,2142.0 +1160227,1160227,1160243,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160228,1160228,1160244,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22784.0,2139.0 +1160229,1160229,1160245,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160230,1160230,1160246,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22784.0,2139.0 +1160231,1160231,1160247,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22798.0,2142.0 +1160232,1160232,1160248,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160233,1160233,1160249,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160234,1160234,1160250,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22784.0,2139.0 +1160235,1160235,1160251,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160236,1160236,1160252,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22798.0,2142.0 +1160237,1160237,1160253,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22798.0,2142.0 +1160238,1160238,1160254,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22784.0,2139.0 +1160239,1160239,1160255,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160240,1160240,1160256,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160241,1160241,1160257,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22798.0,2142.0 +1160242,1160242,1160258,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22784.0,2139.0 +1160243,1160243,1160259,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160244,1160244,1160260,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22798.0,2142.0 +1160245,1160245,1160261,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160246,1160246,1160262,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160247,1160247,1160263,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22798.0,2142.0 +1160248,1160248,1160264,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160249,1160249,1160265,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160250,1160250,1160266,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22788.0,2139.0 +1160251,1160251,1160267,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160252,1160252,1160268,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160253,1160253,1160269,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160254,1160254,1160270,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160255,1160255,1160271,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160256,1160256,1160272,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160257,1160257,1160273,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1160258,1160258,1160274,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160259,1160259,1160275,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160260,1160260,1160276,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1160261,1160261,1160277,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160262,1160262,1160278,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160263,1160263,1160279,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1160264,1160264,1160280,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1160265,1160265,1160281,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160266,1160266,1160282,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1160267,1160267,1160283,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1160268,1160268,1160284,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160269,1160269,1160285,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160270,1160270,1160286,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160271,1160271,1160287,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160272,1160272,1160288,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1160273,1160273,1160289,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160274,1160274,1160290,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1160275,1160275,1160291,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160276,1160276,1160292,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160277,1160277,1160293,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22788.0,2139.0 +1160278,1160278,1160294,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22798.0,2142.0 +1160279,1160279,1160295,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22788.0,2139.0 +1160280,1160280,1160296,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22798.0,2142.0 +1160281,1160281,1160297,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22784.0,2139.0 +1160282,1160282,1160298,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22798.0,2142.0 +1160283,1160283,1160299,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22784.0,2139.0 +1160284,1160284,1160300,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22784.0,2139.0 +1160285,1160285,1160301,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160286,1160286,1160302,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160287,1160287,1160303,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160288,1160288,1160304,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160289,1160289,1160305,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22798.0,2142.0 +1160290,1160290,1160306,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22798.0,2142.0 +1160291,1160291,1160307,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22798.0,2142.0 +1160292,1160292,1160308,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22798.0,2142.0 +1160293,1160293,1160309,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22784.0,2139.0 +1160294,1160294,1160310,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160295,1160295,1160311,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160296,1160296,1160312,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160297,1160297,1160313,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160298,1160298,1160314,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160299,1160299,1160315,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160300,1160300,1160316,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22798.0,2142.0 +1160301,1160301,1160317,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22798.0,2142.0 +1160302,1160302,1160318,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160303,1160303,1160319,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160304,1160304,1160320,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22784.0,2139.0 +1160305,1160305,1160321,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160306,1160306,1160322,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160307,1160307,1160323,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160308,1160308,1160324,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160309,1160309,1160325,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22798.0,2142.0 +1160310,1160310,1160326,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160311,1160311,1160327,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160312,1160312,1160328,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160313,1160313,1160329,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160314,1160314,1160330,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22788.0,2139.0 +1160315,1160315,1160331,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22784.0,2139.0 +1160316,1160316,1160332,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22798.0,2142.0 +1160317,1160317,1160333,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160318,1160318,1160334,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22798.0,2142.0 +1160319,1160319,1160335,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22798.0,2142.0 +1160320,1160320,1160336,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160321,1160321,1160337,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160322,1160322,1160338,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160323,1160323,1160339,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22786.0,2139.0 +1160324,1160324,1160340,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22784.0,2139.0 +1160325,1160325,1160341,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160326,1160326,1160342,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160327,1160327,1160343,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22798.0,2142.0 +1160328,1160328,1160344,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160329,1160329,1160345,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160330,1160330,1160346,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22784.0,2139.0 +1160331,1160331,1160347,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22784.0,2139.0 +1160332,1160332,1160348,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22798.0,2142.0 +1160333,1160333,1160349,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22784.0,2139.0 +1160334,1160334,1160350,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22798.0,2142.0 +1160335,1160335,1160351,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160336,1160336,1160352,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160337,1160337,1160353,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160338,1160338,1160354,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160339,1160339,1160355,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22786.0,2139.0 +1160340,1160340,1160356,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160341,1160341,1160357,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22798.0,2142.0 +1160342,1160342,1160358,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22798.0,2142.0 +1160343,1160343,1160359,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22798.0,2142.0 +1160344,1160344,1160360,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160345,1160345,1160361,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160346,1160346,1160362,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22786.0,2139.0 +1160347,1160347,1160363,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22788.0,2139.0 +1160348,1160348,1160364,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22784.0,2139.0 +1160349,1160349,1160365,2,20.0,1.0,1.0,0.0,1,10000.0,1080470,5.0,22788.0,2139.0 +1160350,1160350,1160366,2,20.0,1.0,1.0,0.0,1,10000.0,1080470,5.0,22788.0,2139.0 +1160351,1160351,1160367,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160352,1160352,1160368,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160353,1160353,1160369,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160354,1160354,1160370,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160355,1160355,1160371,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160356,1160356,1160372,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160357,1160357,1160373,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160358,1160358,1160374,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22784.0,2139.0 +1160359,1160359,1160375,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160360,1160360,1160376,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22784.0,2139.0 +1160361,1160361,1160377,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160362,1160362,1160378,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160363,1160363,1160379,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160364,1160364,1160380,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22786.0,2139.0 +1160365,1160365,1160381,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160366,1160366,1160382,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160367,1160367,1160383,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160368,1160368,1160384,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160369,1160369,1160385,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160370,1160370,1160386,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160371,1160371,1160387,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160372,1160372,1160388,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160373,1160373,1160389,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22784.0,2139.0 +1160374,1160374,1160390,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160375,1160375,1160391,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160376,1160376,1160392,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160377,1160377,1160393,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160378,1160378,1160394,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160379,1160379,1160395,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160380,1160380,1160396,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160381,1160381,1160397,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22798.0,2142.0 +1160382,1160382,1160398,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160383,1160383,1160399,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160384,1160384,1160400,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160385,1160385,1160401,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22788.0,2139.0 +1160386,1160386,1160402,1,65.0,1.0,1.0,0.0,1,110000.0,1073449,6.0,22784.0,2139.0 +1160387,1160387,1160403,1,65.0,1.0,1.0,0.0,1,110000.0,1073449,6.0,22787.0,2139.0 +1160388,1160388,1160404,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22787.0,2139.0 +1160389,1160389,1160405,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22784.0,2139.0 +1160390,1160390,1160406,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22787.0,2139.0 +1160391,1160391,1160407,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22787.0,2139.0 +1160392,1160392,1160408,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22784.0,2139.0 +1160393,1160393,1160409,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22787.0,2139.0 +1160394,1160394,1160410,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22786.0,2139.0 +1160395,1160395,1160411,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22786.0,2139.0 +1160396,1160396,1160412,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22786.0,2139.0 +1160397,1160397,1160413,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22787.0,2139.0 +1160398,1160398,1160414,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22784.0,2139.0 +1160399,1160399,1160415,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22787.0,2139.0 +1160400,1160400,1160416,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22787.0,2139.0 +1160401,1160401,1160417,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22784.0,2139.0 +1160402,1160402,1160418,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22786.0,2139.0 +1160403,1160403,1160419,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22786.0,2139.0 +1160404,1160404,1160420,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22787.0,2139.0 +1160405,1160405,1160421,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22784.0,2139.0 +1160406,1160406,1160422,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22784.0,2139.0 +1160407,1160407,1160423,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22784.0,2139.0 +1160408,1160408,1160424,1,82.0,1.0,1.0,0.0,1,200000.0,1080470,6.0,22785.0,2139.0 +1160409,1160409,1160425,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22784.0,2139.0 +1160410,1160410,1160426,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22784.0,2139.0 +1160411,1160411,1160427,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22784.0,2139.0 +1160412,1160412,1160428,1,82.0,1.0,1.0,0.0,1,200000.0,1080470,6.0,22784.0,2139.0 +1160413,1160413,1160429,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22785.0,2139.0 +1160414,1160414,1160430,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22787.0,2139.0 +1160415,1160415,1160431,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22785.0,2139.0 +1160416,1160416,1160432,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22786.0,2139.0 +1160417,1160417,1160433,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22787.0,2139.0 +1160418,1160418,1160434,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22786.0,2139.0 +1160419,1160419,1160435,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22784.0,2139.0 +1160420,1160420,1160436,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22785.0,2139.0 +1160421,1160421,1160437,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22784.0,2139.0 +1160422,1160422,1160438,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22785.0,2139.0 +1160423,1160423,1160439,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22787.0,2139.0 +1160424,1160424,1160440,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22784.0,2139.0 +1160425,1160425,1160441,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22784.0,2139.0 +1160426,1160426,1160442,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22784.0,2139.0 +1160427,1160427,1160443,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22787.0,2139.0 +1160428,1160428,1160444,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22785.0,2139.0 +1160429,1160429,1160445,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22787.0,2139.0 +1160430,1160430,1160446,1,82.0,1.0,1.0,0.0,1,200000.0,1080470,6.0,22784.0,2139.0 +1160431,1160431,1160447,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22786.0,2139.0 +1160432,1160432,1160448,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22784.0,2139.0 +1160433,1160433,1160449,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22784.0,2139.0 +1160434,1160434,1160450,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22787.0,2139.0 +1160435,1160435,1160451,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22784.0,2139.0 +1160436,1160436,1160452,1,67.0,1.0,1.0,0.0,1,139700.0,1054606,6.0,22787.0,2139.0 +1160437,1160437,1160453,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22785.0,2139.0 +1160438,1160438,1160454,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22787.0,2139.0 +1160439,1160439,1160455,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22784.0,2139.0 +1160440,1160440,1160456,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22785.0,2139.0 +1160441,1160441,1160457,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22787.0,2139.0 +1160442,1160442,1160458,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22785.0,2139.0 +1160443,1160443,1160459,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22784.0,2139.0 +1160444,1160444,1160460,1,82.0,1.0,1.0,0.0,1,200000.0,1080470,6.0,22785.0,2139.0 +1160445,1160445,1160461,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22784.0,2139.0 +1160446,1160446,1160462,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22787.0,2139.0 +1160447,1160447,1160463,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22786.0,2139.0 +1160448,1160448,1160464,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22787.0,2139.0 +1160449,1160449,1160465,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22784.0,2139.0 +1160450,1160450,1160466,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22787.0,2139.0 +1160451,1160451,1160467,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22786.0,2139.0 +1160452,1160452,1160468,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22784.0,2139.0 +1160453,1160453,1160469,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22784.0,2139.0 +1160454,1160454,1160470,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22784.0,2139.0 +1160455,1160455,1160471,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22786.0,2139.0 +1160456,1160456,1160472,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22786.0,2139.0 +1160457,1160457,1160473,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22784.0,2139.0 +1160458,1160458,1160474,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22784.0,2139.0 +1160459,1160459,1160475,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22787.0,2139.0 +1160460,1160460,1160476,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22786.0,2139.0 +1160461,1160461,1160477,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22787.0,2139.0 +1160462,1160462,1160478,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22785.0,2139.0 +1160463,1160463,1160479,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22786.0,2139.0 +1160464,1160464,1160480,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22784.0,2139.0 +1160465,1160465,1160481,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22787.0,2139.0 +1160466,1160466,1160482,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22786.0,2139.0 +1160467,1160467,1160483,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22786.0,2139.0 +1160468,1160468,1160484,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22784.0,2139.0 +1160469,1160469,1160485,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22784.0,2139.0 +1160470,1160470,1160486,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22787.0,2139.0 +1160471,1160471,1160487,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22787.0,2139.0 +1160472,1160472,1160488,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22787.0,2139.0 +1160473,1160473,1160489,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22787.0,2139.0 +1160474,1160474,1160490,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22787.0,2139.0 +1160475,1160475,1160491,2,78.0,1.0,1.0,0.0,1,39700.0,1010145,2.0,22787.0,2139.0 +1160476,1160476,1160492,1,69.0,1.0,1.0,0.0,1,45000.0,1073449,6.0,22787.0,2139.0 +1160477,1160477,1160493,1,81.0,1.0,1.0,0.0,1,45500.0,1054606,6.0,22784.0,2139.0 +1160478,1160478,1160494,1,80.0,1.0,1.0,0.0,1,50800.0,1010145,6.0,22784.0,2139.0 +1160479,1160479,1160495,1,80.0,1.0,1.0,0.0,1,50800.0,1010145,6.0,22787.0,2139.0 +1160480,1160480,1160496,1,79.0,1.0,1.0,0.0,1,44700.0,1073449,6.0,22785.0,2139.0 +1160481,1160481,1160497,1,76.0,1.0,1.0,0.0,1,53300.0,1031452,6.0,22786.0,2139.0 +1160482,1160482,1160498,1,79.0,1.0,1.0,0.0,1,51000.0,1010145,6.0,22785.0,2139.0 +1160483,1160483,1160499,1,80.0,1.0,1.0,0.0,1,50800.0,1010145,6.0,22787.0,2139.0 +1160484,1160484,1160500,1,76.0,1.0,1.0,0.0,1,53300.0,1031452,6.0,22784.0,2139.0 +1160485,1160485,1160501,1,85.0,1.0,1.0,0.0,1,37300.0,1080470,6.0,22784.0,2139.0 +1160486,1160486,1160502,1,76.0,1.0,1.0,0.0,1,53300.0,1031452,6.0,22785.0,2139.0 +1160487,1160487,1160503,1,76.0,1.0,1.0,0.0,1,53300.0,1031452,6.0,22784.0,2139.0 +1160488,1160488,1160504,1,71.0,1.0,1.0,0.0,1,16400.0,1080470,6.0,22784.0,2139.0 +1160489,1160489,1160505,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22785.0,2139.0 +1160490,1160490,1160506,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22785.0,2139.0 +1160491,1160491,1160507,2,59.0,1.0,2.0,0.0,1,110000.0,1080470,3.0,22786.0,2139.0 +1160492,1160492,1160508,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160493,1160493,1160509,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22784.0,2139.0 +1160494,1160494,1160510,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160495,1160495,1160511,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22784.0,2139.0 +1160496,1160496,1160512,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22785.0,2139.0 +1160497,1160497,1160513,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22786.0,2139.0 +1160498,1160498,1160514,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160499,1160499,1160515,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22786.0,2139.0 +1160500,1160500,1160516,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160501,1160501,1160517,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160502,1160502,1160518,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22786.0,2139.0 +1160503,1160503,1160519,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160504,1160504,1160520,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22786.0,2139.0 +1160505,1160505,1160521,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22784.0,2139.0 +1160506,1160506,1160522,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22786.0,2139.0 +1160507,1160507,1160523,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22785.0,2139.0 +1160508,1160508,1160524,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22785.0,2139.0 +1160509,1160509,1160525,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22786.0,2139.0 +1160510,1160510,1160526,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160511,1160511,1160527,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160512,1160512,1160528,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22785.0,2139.0 +1160513,1160513,1160529,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22786.0,2139.0 +1160514,1160514,1160530,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22786.0,2139.0 +1160515,1160515,1160531,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160516,1160516,1160532,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22786.0,2139.0 +1160517,1160517,1160533,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22785.0,2139.0 +1160518,1160518,1160534,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160519,1160519,1160535,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160520,1160520,1160536,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22785.0,2139.0 +1160521,1160521,1160537,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22787.0,2139.0 +1160522,1160522,1160538,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22784.0,2139.0 +1160523,1160523,1160539,5,53.0,1.0,6.0,0.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160524,1160524,1160540,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22785.0,2139.0 +1160525,1160525,1160541,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22784.0,2139.0 +1160526,1160526,1160542,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22785.0,2139.0 +1160527,1160527,1160543,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22785.0,2139.0 +1160528,1160528,1160544,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22784.0,2139.0 +1160529,1160529,1160545,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22786.0,2139.0 +1160530,1160530,1160546,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160531,1160531,1160547,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22786.0,2139.0 +1160532,1160532,1160548,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160533,1160533,1160549,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160534,1160534,1160550,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160535,1160535,1160551,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22786.0,2139.0 +1160536,1160536,1160552,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160537,1160537,1160553,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22786.0,2139.0 +1160538,1160538,1160554,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22785.0,2139.0 +1160539,1160539,1160555,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22786.0,2139.0 +1160540,1160540,1160556,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160541,1160541,1160557,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160542,1160542,1160558,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160543,1160543,1160559,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22784.0,2139.0 +1160544,1160544,1160560,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160545,1160545,1160561,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160546,1160546,1160562,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22784.0,2139.0 +1160547,1160547,1160563,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160548,1160548,1160564,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22784.0,2139.0 +1160549,1160549,1160565,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160550,1160550,1160566,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160551,1160551,1160567,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22786.0,2139.0 +1160552,1160552,1160568,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160553,1160553,1160569,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160554,1160554,1160570,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22786.0,2139.0 +1160555,1160555,1160571,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22785.0,2139.0 +1160556,1160556,1160572,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22787.0,2139.0 +1160557,1160557,1160573,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22786.0,2139.0 +1160558,1160558,1160574,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22786.0,2139.0 +1160559,1160559,1160575,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22786.0,2139.0 +1160560,1160560,1160576,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22784.0,2139.0 +1160561,1160561,1160577,2,27.0,1.0,2.0,1.0,1,79000.0,1054606,7.0,22787.0,2139.0 +1160562,1160562,1160578,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22785.0,2139.0 +1160563,1160563,1160579,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22787.0,2139.0 +1160564,1160564,1160580,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22786.0,2139.0 +1160565,1160565,1160581,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22784.0,2139.0 +1160566,1160566,1160582,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22784.0,2139.0 +1160567,1160567,1160583,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22787.0,2139.0 +1160568,1160568,1160584,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22785.0,2139.0 +1160569,1160569,1160585,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22786.0,2139.0 +1160570,1160570,1160586,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22787.0,2139.0 +1160571,1160571,1160587,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22785.0,2139.0 +1160572,1160572,1160588,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22784.0,2139.0 +1160573,1160573,1160589,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22785.0,2139.0 +1160574,1160574,1160590,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22784.0,2139.0 +1160575,1160575,1160591,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22784.0,2139.0 +1160576,1160576,1160592,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22785.0,2139.0 +1160577,1160577,1160593,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22787.0,2139.0 +1160578,1160578,1160594,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22784.0,2139.0 +1160579,1160579,1160595,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22786.0,2139.0 +1160580,1160580,1160596,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22787.0,2139.0 +1160581,1160581,1160597,2,26.0,1.0,2.0,0.0,1,51060.0,1080470,5.0,22784.0,2139.0 +1160582,1160582,1160598,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160583,1160583,1160599,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22784.0,2139.0 +1160584,1160584,1160600,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22785.0,2139.0 +1160585,1160585,1160601,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160586,1160586,1160602,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22784.0,2139.0 +1160587,1160587,1160603,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160588,1160588,1160604,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160589,1160589,1160605,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160590,1160590,1160606,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22784.0,2139.0 +1160591,1160591,1160607,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22785.0,2139.0 +1160592,1160592,1160608,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22786.0,2139.0 +1160593,1160593,1160609,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160594,1160594,1160610,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22786.0,2139.0 +1160595,1160595,1160611,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22785.0,2139.0 +1160596,1160596,1160612,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22784.0,2139.0 +1160597,1160597,1160613,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22786.0,2139.0 +1160598,1160598,1160614,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160599,1160599,1160615,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22785.0,2139.0 +1160600,1160600,1160616,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22786.0,2139.0 +1160601,1160601,1160617,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160602,1160602,1160618,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22786.0,2139.0 +1160603,1160603,1160619,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22786.0,2139.0 +1160604,1160604,1160620,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22784.0,2139.0 +1160605,1160605,1160621,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22786.0,2139.0 +1160606,1160606,1160622,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22784.0,2139.0 +1160607,1160607,1160623,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22785.0,2139.0 +1160608,1160608,1160624,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22784.0,2139.0 +1160609,1160609,1160625,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22786.0,2139.0 +1160610,1160610,1160626,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160611,1160611,1160627,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160612,1160612,1160628,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160613,1160613,1160629,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22786.0,2139.0 +1160614,1160614,1160630,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22785.0,2139.0 +1160615,1160615,1160631,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22784.0,2139.0 +1160616,1160616,1160632,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22787.0,2139.0 +1160617,1160617,1160633,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160618,1160618,1160634,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160619,1160619,1160635,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160620,1160620,1160636,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160621,1160621,1160637,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160622,1160622,1160638,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160623,1160623,1160639,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160624,1160624,1160640,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160625,1160625,1160641,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160626,1160626,1160642,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160627,1160627,1160643,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160628,1160628,1160644,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160629,1160629,1160645,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160630,1160630,1160646,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160631,1160631,1160647,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160632,1160632,1160648,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160633,1160633,1160649,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160634,1160634,1160650,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160635,1160635,1160651,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160636,1160636,1160652,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160637,1160637,1160653,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160638,1160638,1160654,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160639,1160639,1160655,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160640,1160640,1160656,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160641,1160641,1160657,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160642,1160642,1160658,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160643,1160643,1160659,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160644,1160644,1160660,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160645,1160645,1160661,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160646,1160646,1160662,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160647,1160647,1160663,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160648,1160648,1160664,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160649,1160649,1160665,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160650,1160650,1160666,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160651,1160651,1160667,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160652,1160652,1160668,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160653,1160653,1160669,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160654,1160654,1160670,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160655,1160655,1160671,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160656,1160656,1160672,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160657,1160657,1160673,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160658,1160658,1160674,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160659,1160659,1160675,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160660,1160660,1160676,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160661,1160661,1160677,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160662,1160662,1160678,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160663,1160663,1160679,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160664,1160664,1160680,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160665,1160665,1160681,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160666,1160666,1160682,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160667,1160667,1160683,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160668,1160668,1160684,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160669,1160669,1160685,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160670,1160670,1160686,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160671,1160671,1160687,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160672,1160672,1160688,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160673,1160673,1160689,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160674,1160674,1160690,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160675,1160675,1160691,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160676,1160676,1160692,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160677,1160677,1160693,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160678,1160678,1160694,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160679,1160679,1160695,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160680,1160680,1160696,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160681,1160681,1160697,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160682,1160682,1160698,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160683,1160683,1160699,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160684,1160684,1160700,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160685,1160685,1160701,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160686,1160686,1160702,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160687,1160687,1160703,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160688,1160688,1160704,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160689,1160689,1160705,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160690,1160690,1160706,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160691,1160691,1160707,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160692,1160692,1160708,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160693,1160693,1160709,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160694,1160694,1160710,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160695,1160695,1160711,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160696,1160696,1160712,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160697,1160697,1160713,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160698,1160698,1160714,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160699,1160699,1160715,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160700,1160700,1160716,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160701,1160701,1160717,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160702,1160702,1160718,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160703,1160703,1160719,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160704,1160704,1160720,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160705,1160705,1160721,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160706,1160706,1160722,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160707,1160707,1160723,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160708,1160708,1160724,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160709,1160709,1160725,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160710,1160710,1160726,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160711,1160711,1160727,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160712,1160712,1160728,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160713,1160713,1160729,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160714,1160714,1160730,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160715,1160715,1160731,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160716,1160716,1160732,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160717,1160717,1160733,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160718,1160718,1160734,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160719,1160719,1160735,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160720,1160720,1160736,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160721,1160721,1160737,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160722,1160722,1160738,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160723,1160723,1160739,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160724,1160724,1160740,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22785.0,2139.0 +1160725,1160725,1160741,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22787.0,2139.0 +1160726,1160726,1160742,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22786.0,2139.0 +1160727,1160727,1160743,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22784.0,2139.0 +1160728,1160728,1160744,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22786.0,2139.0 +1160729,1160729,1160745,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22785.0,2139.0 +1160730,1160730,1160746,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22787.0,2139.0 +1160731,1160731,1160747,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22787.0,2139.0 +1160732,1160732,1160748,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22785.0,2139.0 +1160733,1160733,1160749,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22785.0,2139.0 +1160734,1160734,1160750,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22784.0,2139.0 +1160735,1160735,1160751,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22784.0,2139.0 +1160736,1160736,1160752,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22785.0,2139.0 +1160737,1160737,1160753,5,43.0,1.0,3.0,0.0,1,171000.0,1031452,2.0,22787.0,2139.0 +1160738,1160738,1160754,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22786.0,2139.0 +1160739,1160739,1160755,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22785.0,2139.0 +1160740,1160740,1160756,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22787.0,2139.0 +1160741,1160741,1160757,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22786.0,2139.0 +1160742,1160742,1160758,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22787.0,2139.0 +1160743,1160743,1160759,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22787.0,2139.0 +1160744,1160744,1160760,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22787.0,2139.0 +1160745,1160745,1160761,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22786.0,2139.0 +1160746,1160746,1160762,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22784.0,2139.0 +1160747,1160747,1160763,5,43.0,1.0,3.0,2.0,1,171000.0,1031452,2.0,22784.0,2139.0 +1160748,1160748,1160764,2,23.0,1.0,1.0,2.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160749,1160749,1160765,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160750,1160750,1160766,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160751,1160751,1160767,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160752,1160752,1160768,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160753,1160753,1160769,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22785.0,2139.0 +1160754,1160754,1160770,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160755,1160755,1160771,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160756,1160756,1160772,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160757,1160757,1160773,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160758,1160758,1160774,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160759,1160759,1160775,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160760,1160760,1160776,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160761,1160761,1160777,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160762,1160762,1160778,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160763,1160763,1160779,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160764,1160764,1160780,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160765,1160765,1160781,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22785.0,2139.0 +1160766,1160766,1160782,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160767,1160767,1160783,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160768,1160768,1160784,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160769,1160769,1160785,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22785.0,2139.0 +1160770,1160770,1160786,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160771,1160771,1160787,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160772,1160772,1160788,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160773,1160773,1160789,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160774,1160774,1160790,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160775,1160775,1160791,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160776,1160776,1160792,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160777,1160777,1160793,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160778,1160778,1160794,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160779,1160779,1160795,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160780,1160780,1160796,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22785.0,2139.0 +1160781,1160781,1160797,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22785.0,2139.0 +1160782,1160782,1160798,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160783,1160783,1160799,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160784,1160784,1160800,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160785,1160785,1160801,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160786,1160786,1160802,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160787,1160787,1160803,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160788,1160788,1160804,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160789,1160789,1160805,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160790,1160790,1160806,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160791,1160791,1160807,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160792,1160792,1160808,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160793,1160793,1160809,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160794,1160794,1160810,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160795,1160795,1160811,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160796,1160796,1160812,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160797,1160797,1160813,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160798,1160798,1160814,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160799,1160799,1160815,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160800,1160800,1160816,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22785.0,2139.0 +1160801,1160801,1160817,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22785.0,2139.0 +1160802,1160802,1160818,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160803,1160803,1160819,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160804,1160804,1160820,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160805,1160805,1160821,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22785.0,2139.0 +1160806,1160806,1160822,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160807,1160807,1160823,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22785.0,2139.0 +1160808,1160808,1160824,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160809,1160809,1160825,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160810,1160810,1160826,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160811,1160811,1160827,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22786.0,2139.0 +1160812,1160812,1160828,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160813,1160813,1160829,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160814,1160814,1160830,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160815,1160815,1160831,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22784.0,2139.0 +1160816,1160816,1160832,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22787.0,2139.0 +1160817,1160817,1160833,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22784.0,2139.0 +1160818,1160818,1160834,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22786.0,2139.0 +1160819,1160819,1160835,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22785.0,2139.0 +1160820,1160820,1160836,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22787.0,2139.0 +1160821,1160821,1160837,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22786.0,2139.0 +1160822,1160822,1160838,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22785.0,2139.0 +1160823,1160823,1160839,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22787.0,2139.0 +1160824,1160824,1160840,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22787.0,2139.0 +1160825,1160825,1160841,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22787.0,2139.0 +1160826,1160826,1160842,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22786.0,2139.0 +1160827,1160827,1160843,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22785.0,2139.0 +1160828,1160828,1160844,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22787.0,2139.0 +1160829,1160829,1160845,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22787.0,2139.0 +1160830,1160830,1160846,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22785.0,2139.0 +1160831,1160831,1160847,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22787.0,2139.0 +1160832,1160832,1160848,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22786.0,2139.0 +1160833,1160833,1160849,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22784.0,2139.0 +1160834,1160834,1160850,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22785.0,2139.0 +1160835,1160835,1160851,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22787.0,2139.0 +1160836,1160836,1160852,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22786.0,2139.0 +1160837,1160837,1160853,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22738.0,2117.0 +1160838,1160838,1160854,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22744.0,2120.0 +1160839,1160839,1160855,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22745.0,2121.0 +1160840,1160840,1160856,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22744.0,2120.0 +1160841,1160841,1160857,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22744.0,2120.0 +1160842,1160842,1160858,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22738.0,2117.0 +1160843,1160843,1160859,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22737.0,2116.0 +1160844,1160844,1160860,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22744.0,2120.0 +1160845,1160845,1160861,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22737.0,2116.0 +1160846,1160846,1160862,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22737.0,2116.0 +1160847,1160847,1160863,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22747.0,2123.0 +1160848,1160848,1160864,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22740.0,2119.0 +1160849,1160849,1160865,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22740.0,2119.0 +1160850,1160850,1160866,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22740.0,2119.0 +1160851,1160851,1160867,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22744.0,2120.0 +1160852,1160852,1160868,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22745.0,2121.0 +1160853,1160853,1160869,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22737.0,2116.0 +1160854,1160854,1160870,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22745.0,2121.0 +1160855,1160855,1160871,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22744.0,2120.0 +1160856,1160856,1160872,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22747.0,2123.0 +1160857,1160857,1160873,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22738.0,2117.0 +1160858,1160858,1160874,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22747.0,2123.0 +1160859,1160859,1160875,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22740.0,2119.0 +1160860,1160860,1160876,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22738.0,2117.0 +1160861,1160861,1160877,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22737.0,2116.0 +1160862,1160862,1160878,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22738.0,2117.0 +1160863,1160863,1160879,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22745.0,2121.0 +1160864,1160864,1160880,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22747.0,2123.0 +1160865,1160865,1160881,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22740.0,2119.0 +1160866,1160866,1160882,1,66.0,1.0,1.0,0.0,1,114000.0,1031452,6.0,22744.0,2120.0 +1160867,1160867,1160883,1,66.0,1.0,1.0,0.0,1,114000.0,1031452,6.0,22737.0,2116.0 +1160868,1160868,1160884,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22737.0,2116.0 +1160869,1160869,1160885,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22740.0,2119.0 +1160870,1160870,1160886,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22741.0,2119.0 +1160871,1160871,1160887,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22745.0,2121.0 +1160872,1160872,1160888,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22738.0,2117.0 +1160873,1160873,1160889,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22747.0,2123.0 +1160874,1160874,1160890,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22740.0,2119.0 +1160875,1160875,1160891,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22743.0,2119.0 +1160876,1160876,1160892,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22744.0,2120.0 +1160877,1160877,1160893,1,67.0,1.0,1.0,0.0,1,139700.0,1054606,6.0,22737.0,2116.0 +1160878,1160878,1160894,6,45.0,4.0,2.0,0.0,1,17000.0,1010145,3.0,22738.0,2117.0 +1160879,1160879,1160895,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22740.0,2119.0 +1160880,1160880,1160896,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22744.0,2120.0 +1160881,1160881,1160897,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22740.0,2119.0 +1160882,1160882,1160898,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22741.0,2119.0 +1160883,1160883,1160899,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22747.0,2123.0 +1160884,1160884,1160900,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22737.0,2116.0 +1160885,1160885,1160901,2,53.0,3.0,2.0,3.0,1,34600.0,1073449,3.0,22738.0,2117.0 +1160886,1160886,1160902,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22745.0,2121.0 +1160887,1160887,1160903,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22737.0,2116.0 +1160888,1160888,1160904,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22745.0,2121.0 +1160889,1160889,1160905,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22740.0,2119.0 +1160890,1160890,1160906,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22747.0,2123.0 +1160891,1160891,1160907,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22742.0,2119.0 +1160892,1160892,1160908,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22745.0,2121.0 +1160893,1160893,1160909,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22740.0,2119.0 +1160894,1160894,1160910,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22737.0,2116.0 +1160895,1160895,1160911,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22744.0,2120.0 +1160896,1160896,1160912,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22743.0,2119.0 +1160897,1160897,1160913,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22743.0,2119.0 +1160898,1160898,1160914,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22745.0,2121.0 +1160899,1160899,1160915,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22745.0,2121.0 +1160900,1160900,1160916,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22742.0,2119.0 +1160901,1160901,1160917,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22740.0,2119.0 +1160902,1160902,1160918,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22741.0,2119.0 +1160903,1160903,1160919,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22737.0,2116.0 +1160904,1160904,1160920,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22747.0,2123.0 +1160905,1160905,1160921,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22737.0,2116.0 +1160906,1160906,1160922,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22740.0,2119.0 +1160907,1160907,1160923,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22744.0,2120.0 +1160908,1160908,1160924,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22744.0,2120.0 +1160909,1160909,1160925,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22738.0,2117.0 +1160910,1160910,1160926,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22740.0,2119.0 +1160911,1160911,1160927,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22745.0,2121.0 +1160912,1160912,1160928,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22740.0,2119.0 +1160913,1160913,1160929,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22745.0,2121.0 +1160914,1160914,1160930,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22747.0,2123.0 +1160915,1160915,1160931,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22747.0,2123.0 +1160916,1160916,1160932,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22737.0,2116.0 +1160917,1160917,1160933,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22744.0,2120.0 +1160918,1160918,1160934,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22742.0,2119.0 +1160919,1160919,1160935,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22737.0,2116.0 +1160920,1160920,1160936,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22737.0,2116.0 +1160921,1160921,1160937,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22744.0,2120.0 +1160922,1160922,1160938,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22739.0,2118.0 +1160923,1160923,1160939,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22740.0,2119.0 +1160924,1160924,1160940,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22740.0,2119.0 +1160925,1160925,1160941,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22739.0,2118.0 +1160926,1160926,1160942,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22744.0,2120.0 +1160927,1160927,1160943,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22740.0,2119.0 +1160928,1160928,1160944,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22744.0,2120.0 +1160929,1160929,1160945,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22744.0,2120.0 +1160930,1160930,1160946,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22738.0,2117.0 +1160931,1160931,1160947,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22745.0,2121.0 +1160932,1160932,1160948,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22740.0,2119.0 +1160933,1160933,1160949,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22745.0,2121.0 +1160934,1160934,1160950,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22738.0,2117.0 +1160935,1160935,1160951,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22741.0,2119.0 +1160936,1160936,1160952,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22745.0,2121.0 +1160937,1160937,1160953,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22745.0,2121.0 +1160938,1160938,1160954,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22740.0,2119.0 +1160939,1160939,1160955,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22740.0,2119.0 +1160940,1160940,1160956,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22741.0,2119.0 +1160941,1160941,1160957,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22740.0,2119.0 +1160942,1160942,1160958,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22740.0,2119.0 +1160943,1160943,1160959,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22738.0,2117.0 +1160944,1160944,1160960,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22740.0,2119.0 +1160945,1160945,1160961,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22738.0,2117.0 +1160946,1160946,1160962,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22744.0,2120.0 +1160947,1160947,1160963,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22739.0,2118.0 +1160948,1160948,1160964,2,49.0,1.0,1.0,0.0,1,64000.0,1080470,3.0,22737.0,2116.0 +1160949,1160949,1160965,2,49.0,1.0,1.0,0.0,1,64000.0,1080470,3.0,22741.0,2119.0 +1160950,1160950,1160966,2,49.0,1.0,1.0,0.0,1,64000.0,1080470,3.0,22741.0,2119.0 +1160951,1160951,1160967,2,49.0,1.0,1.0,0.0,1,64000.0,1080470,3.0,22742.0,2119.0 +1160952,1160952,1160968,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22741.0,2119.0 +1160953,1160953,1160969,5,45.0,1.0,1.0,0.0,1,43400.0,1010145,1.0,22737.0,2116.0 +1160954,1160954,1160970,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22744.0,2120.0 +1160955,1160955,1160971,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22745.0,2121.0 +1160956,1160956,1160972,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22743.0,2119.0 +1160957,1160957,1160973,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22744.0,2120.0 +1160958,1160958,1160974,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22737.0,2116.0 +1160959,1160959,1160975,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22740.0,2119.0 +1160960,1160960,1160976,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22740.0,2119.0 +1160961,1160961,1160977,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22737.0,2116.0 +1160962,1160962,1160978,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22741.0,2119.0 +1160963,1160963,1160979,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22738.0,2117.0 +1160964,1160964,1160980,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22744.0,2120.0 +1160965,1160965,1160981,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22747.0,2123.0 +1160966,1160966,1160982,2,26.0,4.0,2.0,1.0,1,96200.0,1010145,7.0,22740.0,2119.0 +1160967,1160967,1160983,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22744.0,2120.0 +1160968,1160968,1160984,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22742.0,2119.0 +1160969,1160969,1160985,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22741.0,2119.0 +1160970,1160970,1160986,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22744.0,2120.0 +1160971,1160971,1160987,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22738.0,2117.0 +1160972,1160972,1160988,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22745.0,2121.0 +1160973,1160973,1160989,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22741.0,2119.0 +1160974,1160974,1160990,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22740.0,2119.0 +1160975,1160975,1160991,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22741.0,2119.0 +1160976,1160976,1160992,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22740.0,2119.0 +1160977,1160977,1160993,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22737.0,2116.0 +1160978,1160978,1160994,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22737.0,2116.0 +1160979,1160979,1160995,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22741.0,2119.0 +1160980,1160980,1160996,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22740.0,2119.0 +1160981,1160981,1160997,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22744.0,2120.0 +1160982,1160982,1160998,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22744.0,2120.0 +1160983,1160983,1160999,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22737.0,2116.0 +1160984,1160984,1161000,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22747.0,2123.0 +1160985,1160985,1161001,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22747.0,2123.0 +1160986,1160986,1161002,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22737.0,2116.0 +1160987,1160987,1161003,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22740.0,2119.0 +1160988,1160988,1161004,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22737.0,2116.0 +1160989,1160989,1161005,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22742.0,2119.0 +1160990,1160990,1161006,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22741.0,2119.0 +1160991,1160991,1161007,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22738.0,2117.0 +1160992,1160992,1161008,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22745.0,2121.0 +1160993,1160993,1161009,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22738.0,2117.0 +1160994,1160994,1161010,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22740.0,2119.0 +1160995,1160995,1161011,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22737.0,2116.0 +1160996,1160996,1161012,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22747.0,2123.0 +1160997,1160997,1161013,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22742.0,2119.0 +1160998,1160998,1161014,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22741.0,2119.0 +1160999,1160999,1161015,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22745.0,2121.0 +1161000,1161000,1161016,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22739.0,2118.0 +1161001,1161001,1161017,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22740.0,2119.0 +1161002,1161002,1161018,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22740.0,2119.0 +1161003,1161003,1161019,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22743.0,2119.0 +1161004,1161004,1161020,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22747.0,2123.0 +1161005,1161005,1161021,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22743.0,2119.0 +1161006,1161006,1161022,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22740.0,2119.0 +1161007,1161007,1161023,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22747.0,2123.0 +1161008,1161008,1161024,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22745.0,2121.0 +1161009,1161009,1161025,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22744.0,2120.0 +1161010,1161010,1161026,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22737.0,2116.0 +1161011,1161011,1161027,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22737.0,2116.0 +1161012,1161012,1161028,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22740.0,2119.0 +1161013,1161013,1161029,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22745.0,2121.0 +1161014,1161014,1161030,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22740.0,2119.0 +1161015,1161015,1161031,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22747.0,2123.0 +1161016,1161016,1161032,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22747.0,2123.0 +1161017,1161017,1161033,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22742.0,2119.0 +1161018,1161018,1161034,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22739.0,2118.0 +1161019,1161019,1161035,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161020,1161020,1161036,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161021,1161021,1161037,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22739.0,2118.0 +1161022,1161022,1161038,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22742.0,2119.0 +1161023,1161023,1161039,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22741.0,2119.0 +1161024,1161024,1161040,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22739.0,2118.0 +1161025,1161025,1161041,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161026,1161026,1161042,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161027,1161027,1161043,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161028,1161028,1161044,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22745.0,2121.0 +1161029,1161029,1161045,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161030,1161030,1161046,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22741.0,2119.0 +1161031,1161031,1161047,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22745.0,2121.0 +1161032,1161032,1161048,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161033,1161033,1161049,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22747.0,2123.0 +1161034,1161034,1161050,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161035,1161035,1161051,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161036,1161036,1161052,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161037,1161037,1161053,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22747.0,2123.0 +1161038,1161038,1161054,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22741.0,2119.0 +1161039,1161039,1161055,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161040,1161040,1161056,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161041,1161041,1161057,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161042,1161042,1161058,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161043,1161043,1161059,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22738.0,2117.0 +1161044,1161044,1161060,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22747.0,2123.0 +1161045,1161045,1161061,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161046,1161046,1161062,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161047,1161047,1161063,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161048,1161048,1161064,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22747.0,2123.0 +1161049,1161049,1161065,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161050,1161050,1161066,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161051,1161051,1161067,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22741.0,2119.0 +1161052,1161052,1161068,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161053,1161053,1161069,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161054,1161054,1161070,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161055,1161055,1161071,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22741.0,2119.0 +1161056,1161056,1161072,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161057,1161057,1161073,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161058,1161058,1161074,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22747.0,2123.0 +1161059,1161059,1161075,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161060,1161060,1161076,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22741.0,2119.0 +1161061,1161061,1161077,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22741.0,2119.0 +1161062,1161062,1161078,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22743.0,2119.0 +1161063,1161063,1161079,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22742.0,2119.0 +1161064,1161064,1161080,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161065,1161065,1161081,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161066,1161066,1161082,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22739.0,2118.0 +1161067,1161067,1161083,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161068,1161068,1161084,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161069,1161069,1161085,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161070,1161070,1161086,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161071,1161071,1161087,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161072,1161072,1161088,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22745.0,2121.0 +1161073,1161073,1161089,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161074,1161074,1161090,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161075,1161075,1161091,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22745.0,2121.0 +1161076,1161076,1161092,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161077,1161077,1161093,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22741.0,2119.0 +1161078,1161078,1161094,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161079,1161079,1161095,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22745.0,2121.0 +1161080,1161080,1161096,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22738.0,2117.0 +1161081,1161081,1161097,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161082,1161082,1161098,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22745.0,2121.0 +1161083,1161083,1161099,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22738.0,2117.0 +1161084,1161084,1161100,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161085,1161085,1161101,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22747.0,2123.0 +1161086,1161086,1161102,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161087,1161087,1161103,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161088,1161088,1161104,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161089,1161089,1161105,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22742.0,2119.0 +1161090,1161090,1161106,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161091,1161091,1161107,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161092,1161092,1161108,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22747.0,2123.0 +1161093,1161093,1161109,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22742.0,2119.0 +1161094,1161094,1161110,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161095,1161095,1161111,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161096,1161096,1161112,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22745.0,2121.0 +1161097,1161097,1161113,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22747.0,2123.0 +1161098,1161098,1161114,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161099,1161099,1161115,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22741.0,2119.0 +1161100,1161100,1161116,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22747.0,2123.0 +1161101,1161101,1161117,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161102,1161102,1161118,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161103,1161103,1161119,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161104,1161104,1161120,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22744.0,2120.0 +1161105,1161105,1161121,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161106,1161106,1161122,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22737.0,2116.0 +1161107,1161107,1161123,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22741.0,2119.0 +1161108,1161108,1161124,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22747.0,2123.0 +1161109,1161109,1161125,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22739.0,2118.0 +1161110,1161110,1161126,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161111,1161111,1161127,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22740.0,2119.0 +1161112,1161112,1161128,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22741.0,2119.0 +1161113,1161113,1161129,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22740.0,2119.0 +1161114,1161114,1161130,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22741.0,2119.0 +1161115,1161115,1161131,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22745.0,2121.0 +1161116,1161116,1161132,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22740.0,2119.0 +1161117,1161117,1161133,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22740.0,2119.0 +1161118,1161118,1161134,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22744.0,2120.0 +1161119,1161119,1161135,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22737.0,2116.0 +1161120,1161120,1161136,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22741.0,2119.0 +1161121,1161121,1161137,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22741.0,2119.0 +1161122,1161122,1161138,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22742.0,2119.0 +1161123,1161123,1161139,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22738.0,2117.0 +1161124,1161124,1161140,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22745.0,2121.0 +1161125,1161125,1161141,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22744.0,2120.0 +1161126,1161126,1161142,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22738.0,2117.0 +1161127,1161127,1161143,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22737.0,2116.0 +1161128,1161128,1161144,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22737.0,2116.0 +1161129,1161129,1161145,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22743.0,2119.0 +1161130,1161130,1161146,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22741.0,2119.0 +1161131,1161131,1161147,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22747.0,2123.0 +1161132,1161132,1161148,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22740.0,2119.0 +1161133,1161133,1161149,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22739.0,2118.0 +1161134,1161134,1161150,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22741.0,2119.0 +1161135,1161135,1161151,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22740.0,2119.0 +1161136,1161136,1161152,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22743.0,2119.0 +1161137,1161137,1161153,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22741.0,2119.0 +1161138,1161138,1161154,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22745.0,2121.0 +1161139,1161139,1161155,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22740.0,2119.0 +1161140,1161140,1161156,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22744.0,2120.0 +1161141,1161141,1161157,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22744.0,2120.0 +1161142,1161142,1161158,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22740.0,2119.0 +1161143,1161143,1161159,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22744.0,2120.0 +1161144,1161144,1161160,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22737.0,2116.0 +1161145,1161145,1161161,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22747.0,2123.0 +1161146,1161146,1161162,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22741.0,2119.0 +1161147,1161147,1161163,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22741.0,2119.0 +1161148,1161148,1161164,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22745.0,2121.0 +1161149,1161149,1161165,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22740.0,2119.0 +1161150,1161150,1161166,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22745.0,2121.0 +1161151,1161151,1161167,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22745.0,2121.0 +1161152,1161152,1161168,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22740.0,2119.0 +1161153,1161153,1161169,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22745.0,2121.0 +1161154,1161154,1161170,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22741.0,2119.0 +1161155,1161155,1161171,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22737.0,2116.0 +1161156,1161156,1161172,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22740.0,2119.0 +1161157,1161157,1161173,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22740.0,2119.0 +1161158,1161158,1161174,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22737.0,2116.0 +1161159,1161159,1161175,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22737.0,2116.0 +1161160,1161160,1161176,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22737.0,2116.0 +1161161,1161161,1161177,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22741.0,2119.0 +1161162,1161162,1161178,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22738.0,2117.0 +1161163,1161163,1161179,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22741.0,2119.0 +1161164,1161164,1161180,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22740.0,2119.0 +1161165,1161165,1161181,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22740.0,2119.0 +1161166,1161166,1161182,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22744.0,2120.0 +1161167,1161167,1161183,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22741.0,2119.0 +1161168,1161168,1161184,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22740.0,2119.0 +1161169,1161169,1161185,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22744.0,2120.0 +1161170,1161170,1161186,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22737.0,2116.0 +1161171,1161171,1161187,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22737.0,2116.0 +1161172,1161172,1161188,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22742.0,2119.0 +1161173,1161173,1161189,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22743.0,2119.0 +1161174,1161174,1161190,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22740.0,2119.0 +1161175,1161175,1161191,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22737.0,2116.0 +1161176,1161176,1161192,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22741.0,2119.0 +1161177,1161177,1161193,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22741.0,2119.0 +1161178,1161178,1161194,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22737.0,2116.0 +1161179,1161179,1161195,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22740.0,2119.0 +1161180,1161180,1161196,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22740.0,2119.0 +1161181,1161181,1161197,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22740.0,2119.0 +1161182,1161182,1161198,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22737.0,2116.0 +1161183,1161183,1161199,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22745.0,2121.0 +1161184,1161184,1161200,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22744.0,2120.0 +1161185,1161185,1161201,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22741.0,2119.0 +1161186,1161186,1161202,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22739.0,2118.0 +1161187,1161187,1161203,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22744.0,2120.0 +1161188,1161188,1161204,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22737.0,2116.0 +1161189,1161189,1161205,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22741.0,2119.0 +1161190,1161190,1161206,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22744.0,2120.0 +1161191,1161191,1161207,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22741.0,2119.0 +1161192,1161192,1161208,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22741.0,2119.0 +1161193,1161193,1161209,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22740.0,2119.0 +1161194,1161194,1161210,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22741.0,2119.0 +1161195,1161195,1161211,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22740.0,2119.0 +1161196,1161196,1161212,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22737.0,2116.0 +1161197,1161197,1161213,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22738.0,2117.0 +1161198,1161198,1161214,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22744.0,2120.0 +1161199,1161199,1161215,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22738.0,2117.0 +1161200,1161200,1161216,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22747.0,2123.0 +1161201,1161201,1161217,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22744.0,2120.0 +1161202,1161202,1161218,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22745.0,2121.0 +1161203,1161203,1161219,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22737.0,2116.0 +1161204,1161204,1161220,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22737.0,2116.0 +1161205,1161205,1161221,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22739.0,2118.0 +1161206,1161206,1161222,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22742.0,2119.0 +1161207,1161207,1161223,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22743.0,2119.0 +1161208,1161208,1161224,2,25.0,1.0,1.0,0.0,1,32600.0,1010145,5.0,22745.0,2121.0 +1161209,1161209,1161225,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22745.0,2121.0 +1161210,1161210,1161226,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22741.0,2119.0 +1161211,1161211,1161227,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22740.0,2119.0 +1161212,1161212,1161228,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22747.0,2123.0 +1161213,1161213,1161229,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22744.0,2120.0 +1161214,1161214,1161230,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22740.0,2119.0 +1161215,1161215,1161231,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22740.0,2119.0 +1161216,1161216,1161232,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22741.0,2119.0 +1161217,1161217,1161233,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22738.0,2117.0 +1161218,1161218,1161234,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22737.0,2116.0 +1161219,1161219,1161235,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22740.0,2119.0 +1161220,1161220,1161236,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22747.0,2123.0 +1161221,1161221,1161237,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22740.0,2119.0 +1161222,1161222,1161238,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22743.0,2119.0 +1161223,1161223,1161239,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22744.0,2120.0 +1161224,1161224,1161240,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22744.0,2120.0 +1161225,1161225,1161241,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22744.0,2120.0 +1161226,1161226,1161242,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22740.0,2119.0 +1161227,1161227,1161243,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22747.0,2123.0 +1161228,1161228,1161244,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22737.0,2116.0 +1161229,1161229,1161245,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22742.0,2119.0 +1161230,1161230,1161246,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22747.0,2123.0 +1161231,1161231,1161247,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22741.0,2119.0 +1161232,1161232,1161248,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22740.0,2119.0 +1161233,1161233,1161249,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22740.0,2119.0 +1161234,1161234,1161250,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22743.0,2119.0 +1161235,1161235,1161251,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22747.0,2123.0 +1161236,1161236,1161252,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22738.0,2117.0 +1161237,1161237,1161253,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22740.0,2119.0 +1161238,1161238,1161254,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22745.0,2121.0 +1161239,1161239,1161255,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22741.0,2119.0 +1161240,1161240,1161256,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22745.0,2121.0 +1161241,1161241,1161257,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22745.0,2121.0 +1161242,1161242,1161258,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22745.0,2121.0 +1161243,1161243,1161259,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22737.0,2116.0 +1161244,1161244,1161260,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22744.0,2120.0 +1161245,1161245,1161261,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22745.0,2121.0 +1161246,1161246,1161262,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22737.0,2116.0 +1161247,1161247,1161263,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22740.0,2119.0 +1161248,1161248,1161264,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22740.0,2119.0 +1161249,1161249,1161265,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22744.0,2120.0 +1161250,1161250,1161266,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22744.0,2120.0 +1161251,1161251,1161267,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22740.0,2119.0 +1161252,1161252,1161268,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22744.0,2120.0 +1161253,1161253,1161269,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22737.0,2116.0 +1161254,1161254,1161270,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22741.0,2119.0 +1161255,1161255,1161271,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22737.0,2116.0 +1161256,1161256,1161272,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22747.0,2123.0 +1161257,1161257,1161273,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22741.0,2119.0 +1161258,1161258,1161274,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22742.0,2119.0 +1161259,1161259,1161275,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161260,1161260,1161276,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22741.0,2119.0 +1161261,1161261,1161277,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161262,1161262,1161278,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22747.0,2123.0 +1161263,1161263,1161279,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22744.0,2120.0 +1161264,1161264,1161280,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22737.0,2116.0 +1161265,1161265,1161281,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161266,1161266,1161282,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161267,1161267,1161283,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161268,1161268,1161284,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161269,1161269,1161285,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22737.0,2116.0 +1161270,1161270,1161286,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161271,1161271,1161287,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22737.0,2116.0 +1161272,1161272,1161288,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22741.0,2119.0 +1161273,1161273,1161289,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22744.0,2120.0 +1161274,1161274,1161290,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22741.0,2119.0 +1161275,1161275,1161291,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161276,1161276,1161292,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22739.0,2118.0 +1161277,1161277,1161293,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22741.0,2119.0 +1161278,1161278,1161294,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22744.0,2120.0 +1161279,1161279,1161295,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22737.0,2116.0 +1161280,1161280,1161296,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22745.0,2121.0 +1161281,1161281,1161297,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22737.0,2116.0 +1161282,1161282,1161298,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161283,1161283,1161299,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22737.0,2116.0 +1161284,1161284,1161300,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22747.0,2123.0 +1161285,1161285,1161301,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161286,1161286,1161302,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22742.0,2119.0 +1161287,1161287,1161303,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22744.0,2120.0 +1161288,1161288,1161304,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22737.0,2116.0 +1161289,1161289,1161305,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22741.0,2119.0 +1161290,1161290,1161306,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22737.0,2116.0 +1161291,1161291,1161307,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22745.0,2121.0 +1161292,1161292,1161308,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161293,1161293,1161309,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22737.0,2116.0 +1161294,1161294,1161310,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161295,1161295,1161311,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22738.0,2117.0 +1161296,1161296,1161312,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22747.0,2123.0 +1161297,1161297,1161313,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22740.0,2119.0 +1161298,1161298,1161314,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22744.0,2120.0 +1161299,1161299,1161315,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22745.0,2121.0 +1161300,1161300,1161316,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22744.0,2120.0 +1161301,1161301,1161317,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22740.0,2119.0 +1161302,1161302,1161318,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22741.0,2119.0 +1161303,1161303,1161319,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22738.0,2117.0 +1161304,1161304,1161320,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22741.0,2119.0 +1161305,1161305,1161321,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22738.0,2117.0 +1161306,1161306,1161322,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22740.0,2119.0 +1161307,1161307,1161323,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22741.0,2119.0 +1161308,1161308,1161324,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22739.0,2118.0 +1161309,1161309,1161325,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22740.0,2119.0 +1161310,1161310,1161326,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22737.0,2116.0 +1161311,1161311,1161327,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22741.0,2119.0 +1161312,1161312,1161328,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22741.0,2119.0 +1161313,1161313,1161329,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22738.0,2117.0 +1161314,1161314,1161330,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22744.0,2120.0 +1161315,1161315,1161331,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22739.0,2118.0 +1161316,1161316,1161332,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22739.0,2118.0 +1161317,1161317,1161333,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22744.0,2120.0 +1161318,1161318,1161334,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22745.0,2121.0 +1161319,1161319,1161335,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22744.0,2120.0 +1161320,1161320,1161336,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22741.0,2119.0 +1161321,1161321,1161337,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22737.0,2116.0 +1161322,1161322,1161338,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22747.0,2123.0 +1161323,1161323,1161339,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22740.0,2119.0 +1161324,1161324,1161340,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22744.0,2120.0 +1161325,1161325,1161341,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22743.0,2119.0 +1161326,1161326,1161342,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22737.0,2116.0 +1161327,1161327,1161343,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22741.0,2119.0 +1161328,1161328,1161344,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22737.0,2116.0 +1161329,1161329,1161345,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22742.0,2119.0 +1161330,1161330,1161346,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22744.0,2120.0 +1161331,1161331,1161347,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22738.0,2117.0 +1161332,1161332,1161348,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22737.0,2116.0 +1161333,1161333,1161349,2,24.0,1.0,2.0,0.0,1,45000.0,1010145,1.0,22747.0,2123.0 +1161334,1161334,1161350,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22745.0,2121.0 +1161335,1161335,1161351,2,20.0,1.0,1.0,0.0,1,10000.0,1080470,5.0,22744.0,2120.0 +1161336,1161336,1161352,2,20.0,1.0,1.0,0.0,1,10000.0,1080470,5.0,22740.0,2119.0 +1161337,1161337,1161353,2,20.0,1.0,1.0,0.0,1,10000.0,1080470,5.0,22743.0,2119.0 +1161338,1161338,1161354,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22747.0,2123.0 +1161339,1161339,1161355,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22737.0,2116.0 +1161340,1161340,1161356,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22737.0,2116.0 +1161341,1161341,1161357,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22744.0,2120.0 +1161342,1161342,1161358,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22740.0,2119.0 +1161343,1161343,1161359,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22737.0,2116.0 +1161344,1161344,1161360,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22740.0,2119.0 +1161345,1161345,1161361,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22747.0,2123.0 +1161346,1161346,1161362,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22743.0,2119.0 +1161347,1161347,1161363,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22743.0,2119.0 +1161348,1161348,1161364,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22744.0,2120.0 +1161349,1161349,1161365,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22741.0,2119.0 +1161350,1161350,1161366,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22747.0,2123.0 +1161351,1161351,1161367,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22747.0,2123.0 +1161352,1161352,1161368,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22739.0,2118.0 +1161353,1161353,1161369,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22738.0,2117.0 +1161354,1161354,1161370,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22740.0,2119.0 +1161355,1161355,1161371,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22745.0,2121.0 +1161356,1161356,1161372,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22744.0,2120.0 +1161357,1161357,1161373,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22740.0,2119.0 +1161358,1161358,1161374,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22741.0,2119.0 +1161359,1161359,1161375,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22740.0,2119.0 +1161360,1161360,1161376,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22742.0,2119.0 +1161361,1161361,1161377,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22741.0,2119.0 +1161362,1161362,1161378,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22737.0,2116.0 +1161363,1161363,1161379,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22742.0,2119.0 +1161364,1161364,1161380,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22740.0,2119.0 +1161365,1161365,1161381,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22745.0,2121.0 +1161366,1161366,1161382,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22740.0,2119.0 +1161367,1161367,1161383,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22741.0,2119.0 +1161368,1161368,1161384,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22744.0,2120.0 +1161369,1161369,1161385,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22740.0,2119.0 +1161370,1161370,1161386,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22740.0,2119.0 +1161371,1161371,1161387,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22744.0,2120.0 +1161372,1161372,1161388,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22744.0,2120.0 +1161373,1161373,1161389,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22747.0,2123.0 +1161374,1161374,1161390,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22740.0,2119.0 +1161375,1161375,1161391,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22741.0,2119.0 +1161376,1161376,1161392,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22740.0,2119.0 +1161377,1161377,1161393,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22741.0,2119.0 +1161378,1161378,1161394,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22737.0,2116.0 +1161379,1161379,1161395,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22740.0,2119.0 +1161380,1161380,1161396,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22741.0,2119.0 +1161381,1161381,1161397,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22742.0,2119.0 +1161382,1161382,1161398,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22745.0,2121.0 +1161383,1161383,1161399,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22741.0,2119.0 +1161384,1161384,1161400,1,24.0,1.0,1.0,0.0,1,25000.0,1031452,4.0,22738.0,2117.0 +1161385,1161385,1161401,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22738.0,2117.0 +1161386,1161386,1161402,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22741.0,2119.0 +1161387,1161387,1161403,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22737.0,2116.0 +1161388,1161388,1161404,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22743.0,2119.0 +1161389,1161389,1161405,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22747.0,2123.0 +1161390,1161390,1161406,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22743.0,2119.0 +1161391,1161391,1161407,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22737.0,2116.0 +1161392,1161392,1161408,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22738.0,2117.0 +1161393,1161393,1161409,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22737.0,2116.0 +1161394,1161394,1161410,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22741.0,2119.0 +1161395,1161395,1161411,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22737.0,2116.0 +1161396,1161396,1161412,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22737.0,2116.0 +1161397,1161397,1161413,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22741.0,2119.0 +1161398,1161398,1161414,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22741.0,2119.0 +1161399,1161399,1161415,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22741.0,2119.0 +1161400,1161400,1161416,1,22.0,1.0,1.0,0.0,1,1500.0,1031452,6.0,22741.0,2119.0 +1161401,1161401,1161417,1,24.0,1.0,1.0,0.0,1,29400.0,1031452,4.0,22739.0,2118.0 +1161402,1161402,1161418,1,24.0,1.0,1.0,0.0,1,29400.0,1031452,4.0,22741.0,2119.0 +1161403,1161403,1161419,1,24.0,1.0,1.0,0.0,1,29400.0,1031452,4.0,22737.0,2116.0 +1161404,1161404,1161420,1,24.0,1.0,1.0,0.0,1,29400.0,1031452,4.0,22741.0,2119.0 +1161405,1161405,1161421,1,24.0,1.0,1.0,0.0,1,29400.0,1031452,4.0,22740.0,2119.0 +1161406,1161406,1161422,1,24.0,1.0,1.0,0.0,1,29400.0,1031452,4.0,22741.0,2119.0 +1161407,1161407,1161423,1,24.0,1.0,1.0,0.0,1,29400.0,1031452,4.0,22744.0,2120.0 +1161408,1161408,1161424,1,24.0,1.0,1.0,0.0,1,29400.0,1031452,4.0,22740.0,2119.0 +1161409,1161409,1161425,1,24.0,1.0,1.0,0.0,1,29400.0,1031452,4.0,22743.0,2119.0 +1161410,1161410,1161426,1,24.0,1.0,1.0,0.0,1,29400.0,1031452,4.0,22740.0,2119.0 +1161411,1161411,1161427,1,75.0,2.0,1.0,0.0,1,36900.0,1073449,6.0,22753.0,2125.0 +1161412,1161412,1161428,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22752.0,2125.0 +1161413,1161413,1161429,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22754.0,2125.0 +1161414,1161414,1161430,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22749.0,2125.0 +1161415,1161415,1161431,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22754.0,2125.0 +1161416,1161416,1161432,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22750.0,2125.0 +1161417,1161417,1161433,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22752.0,2125.0 +1161418,1161418,1161434,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22750.0,2125.0 +1161419,1161419,1161435,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22749.0,2125.0 +1161420,1161420,1161436,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22752.0,2125.0 +1161421,1161421,1161437,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22751.0,2125.0 +1161422,1161422,1161438,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22750.0,2125.0 +1161423,1161423,1161439,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22749.0,2125.0 +1161424,1161424,1161440,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22751.0,2125.0 +1161425,1161425,1161441,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22752.0,2125.0 +1161426,1161426,1161442,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22751.0,2125.0 +1161427,1161427,1161443,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22750.0,2125.0 +1161428,1161428,1161444,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22751.0,2125.0 +1161429,1161429,1161445,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22750.0,2125.0 +1161430,1161430,1161446,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22752.0,2125.0 +1161431,1161431,1161447,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22752.0,2125.0 +1161432,1161432,1161448,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22751.0,2125.0 +1161433,1161433,1161449,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22751.0,2125.0 +1161434,1161434,1161450,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22754.0,2125.0 +1161435,1161435,1161451,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22753.0,2125.0 +1161436,1161436,1161452,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22750.0,2125.0 +1161437,1161437,1161453,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22750.0,2125.0 +1161438,1161438,1161454,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22751.0,2125.0 +1161439,1161439,1161455,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22754.0,2125.0 +1161440,1161440,1161456,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22753.0,2125.0 +1161441,1161441,1161457,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22751.0,2125.0 +1161442,1161442,1161458,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22753.0,2125.0 +1161443,1161443,1161459,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22749.0,2125.0 +1161444,1161444,1161460,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22751.0,2125.0 +1161445,1161445,1161461,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22750.0,2125.0 +1161446,1161446,1161462,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22750.0,2125.0 +1161447,1161447,1161463,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22754.0,2125.0 +1161448,1161448,1161464,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22754.0,2125.0 +1161449,1161449,1161465,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22751.0,2125.0 +1161450,1161450,1161466,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22750.0,2125.0 +1161451,1161451,1161467,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22754.0,2125.0 +1161452,1161452,1161468,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22752.0,2125.0 +1161453,1161453,1161469,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22754.0,2125.0 +1161454,1161454,1161470,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22750.0,2125.0 +1161455,1161455,1161471,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22750.0,2125.0 +1161456,1161456,1161472,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22754.0,2125.0 +1161457,1161457,1161473,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22752.0,2125.0 +1161458,1161458,1161474,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22752.0,2125.0 +1161459,1161459,1161475,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22751.0,2125.0 +1161460,1161460,1161476,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22752.0,2125.0 +1161461,1161461,1161477,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22754.0,2125.0 +1161462,1161462,1161478,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22751.0,2125.0 +1161463,1161463,1161479,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22749.0,2125.0 +1161464,1161464,1161480,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22754.0,2125.0 +1161465,1161465,1161481,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22751.0,2125.0 +1161466,1161466,1161482,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22751.0,2125.0 +1161467,1161467,1161483,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22750.0,2125.0 +1161468,1161468,1161484,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22752.0,2125.0 +1161469,1161469,1161485,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22749.0,2125.0 +1161470,1161470,1161486,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22752.0,2125.0 +1161471,1161471,1161487,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22753.0,2125.0 +1161472,1161472,1161488,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22754.0,2125.0 +1161473,1161473,1161489,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22751.0,2125.0 +1161474,1161474,1161490,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22751.0,2125.0 +1161475,1161475,1161491,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22752.0,2125.0 +1161476,1161476,1161492,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22751.0,2125.0 +1161477,1161477,1161493,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22752.0,2125.0 +1161478,1161478,1161494,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22749.0,2125.0 +1161479,1161479,1161495,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22754.0,2125.0 +1161480,1161480,1161496,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22750.0,2125.0 +1161481,1161481,1161497,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22750.0,2125.0 +1161482,1161482,1161498,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22750.0,2125.0 +1161483,1161483,1161499,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22750.0,2125.0 +1161484,1161484,1161500,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22750.0,2125.0 +1161485,1161485,1161501,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22751.0,2125.0 +1161486,1161486,1161502,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22752.0,2125.0 +1161487,1161487,1161503,3,66.0,1.0,2.0,0.0,1,114280.0,1080470,2.0,22749.0,2125.0 +1161488,1161488,1161504,2,66.0,1.0,2.0,0.0,1,106020.0,1010145,1.0,22753.0,2125.0 +1161489,1161489,1161505,2,66.0,1.0,2.0,0.0,1,106020.0,1010145,1.0,22753.0,2125.0 +1161490,1161490,1161506,2,66.0,1.0,2.0,0.0,1,106020.0,1010145,1.0,22749.0,2125.0 +1161491,1161491,1161507,2,66.0,1.0,2.0,0.0,1,106020.0,1010145,1.0,22749.0,2125.0 +1161492,1161492,1161508,2,66.0,1.0,2.0,0.0,1,106020.0,1010145,1.0,22754.0,2125.0 +1161493,1161493,1161509,1,65.0,1.0,1.0,0.0,1,102000.0,1010145,6.0,22750.0,2125.0 +1161494,1161494,1161510,1,66.0,1.0,1.0,0.0,1,114000.0,1031452,6.0,22749.0,2125.0 +1161495,1161495,1161511,1,66.0,1.0,1.0,0.0,1,114000.0,1031452,6.0,22752.0,2125.0 +1161496,1161496,1161512,1,67.0,1.0,1.0,0.0,1,139700.0,1054606,6.0,22750.0,2125.0 +1161497,1161497,1161513,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22751.0,2125.0 +1161498,1161498,1161514,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22751.0,2125.0 +1161499,1161499,1161515,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22752.0,2125.0 +1161500,1161500,1161516,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22750.0,2125.0 +1161501,1161501,1161517,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22754.0,2125.0 +1161502,1161502,1161518,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22750.0,2125.0 +1161503,1161503,1161519,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22751.0,2125.0 +1161504,1161504,1161520,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22749.0,2125.0 +1161505,1161505,1161521,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22750.0,2125.0 +1161506,1161506,1161522,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22754.0,2125.0 +1161507,1161507,1161523,1,82.0,1.0,1.0,0.0,1,200000.0,1080470,6.0,22754.0,2125.0 +1161508,1161508,1161524,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22749.0,2125.0 +1161509,1161509,1161525,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22750.0,2125.0 +1161510,1161510,1161526,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22753.0,2125.0 +1161511,1161511,1161527,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22750.0,2125.0 +1161512,1161512,1161528,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22752.0,2125.0 +1161513,1161513,1161529,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22752.0,2125.0 +1161514,1161514,1161530,4,48.0,4.0,1.0,0.0,1,15900.0,1031452,3.0,22753.0,2125.0 +1161515,1161515,1161531,4,48.0,4.0,1.0,2.0,1,15900.0,1031452,3.0,22749.0,2125.0 +1161516,1161516,1161532,4,48.0,4.0,1.0,2.0,1,15900.0,1031452,3.0,22754.0,2125.0 +1161517,1161517,1161533,4,48.0,4.0,1.0,2.0,1,15900.0,1031452,3.0,22752.0,2125.0 +1161518,1161518,1161534,4,48.0,4.0,1.0,2.0,1,15900.0,1031452,3.0,22754.0,2125.0 +1161519,1161519,1161535,4,48.0,4.0,1.0,2.0,1,15900.0,1031452,3.0,22752.0,2125.0 +1161520,1161520,1161536,4,48.0,4.0,1.0,2.0,1,15900.0,1031452,3.0,22752.0,2125.0 +1161521,1161521,1161537,4,48.0,4.0,1.0,2.0,1,15900.0,1031452,3.0,22750.0,2125.0 +1161522,1161522,1161538,2,53.0,3.0,2.0,2.0,1,34600.0,1073449,3.0,22754.0,2125.0 +1161523,1161523,1161539,1,55.0,3.0,1.0,0.0,1,11630.0,1080470,4.0,22749.0,2125.0 +1161524,1161524,1161540,1,55.0,3.0,1.0,0.0,1,11630.0,1080470,4.0,22751.0,2125.0 +1161525,1161525,1161541,1,55.0,3.0,1.0,0.0,1,11630.0,1080470,4.0,22754.0,2125.0 +1161526,1161526,1161542,3,56.0,1.0,3.0,0.0,1,294000.0,1080470,1.0,22751.0,2125.0 +1161527,1161527,1161543,3,56.0,1.0,3.0,0.0,1,294000.0,1080470,1.0,22754.0,2125.0 +1161528,1161528,1161544,3,56.0,1.0,3.0,0.0,1,294000.0,1080470,1.0,22750.0,2125.0 +1161529,1161529,1161545,3,56.0,1.0,3.0,0.0,1,294000.0,1080470,1.0,22751.0,2125.0 +1161530,1161530,1161546,3,58.0,1.0,3.0,0.0,1,172000.0,1073449,1.0,22750.0,2125.0 +1161531,1161531,1161547,3,60.0,1.0,2.0,0.0,1,170200.0,1073449,1.0,22750.0,2125.0 +1161532,1161532,1161548,3,58.0,1.0,3.0,0.0,1,172000.0,1073449,1.0,22752.0,2125.0 +1161533,1161533,1161549,3,60.0,1.0,2.0,0.0,1,170200.0,1073449,1.0,22752.0,2125.0 +1161534,1161534,1161550,3,60.0,1.0,2.0,0.0,1,170200.0,1073449,1.0,22754.0,2125.0 +1161535,1161535,1161551,3,58.0,1.0,3.0,0.0,1,172000.0,1073449,1.0,22752.0,2125.0 +1161536,1161536,1161552,3,60.0,1.0,2.0,0.0,1,170200.0,1073449,1.0,22751.0,2125.0 +1161537,1161537,1161553,3,60.0,1.0,2.0,0.0,1,170200.0,1073449,1.0,22750.0,2125.0 +1161538,1161538,1161554,3,60.0,1.0,2.0,0.0,1,170200.0,1073449,1.0,22749.0,2125.0 +1161539,1161539,1161555,3,58.0,1.0,3.0,0.0,1,172000.0,1073449,1.0,22750.0,2125.0 +1161540,1161540,1161556,3,60.0,1.0,2.0,0.0,1,170200.0,1073449,1.0,22751.0,2125.0 +1161541,1161541,1161557,3,60.0,1.0,2.0,0.0,1,170200.0,1073449,1.0,22753.0,2125.0 +1161542,1161542,1161558,3,60.0,1.0,2.0,0.0,1,170200.0,1073449,1.0,22750.0,2125.0 +1161543,1161543,1161559,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22750.0,2125.0 +1161544,1161544,1161560,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22750.0,2125.0 +1161545,1161545,1161561,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22751.0,2125.0 +1161546,1161546,1161562,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22753.0,2125.0 +1161547,1161547,1161563,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22752.0,2125.0 +1161548,1161548,1161564,1,63.0,1.0,1.0,0.0,1,114000.0,1010145,6.0,22753.0,2125.0 +1161549,1161549,1161565,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22754.0,2125.0 +1161550,1161550,1161566,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22749.0,2125.0 +1161551,1161551,1161567,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22750.0,2125.0 +1161552,1161552,1161568,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22750.0,2125.0 +1161553,1161553,1161569,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22750.0,2125.0 +1161554,1161554,1161570,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22750.0,2125.0 +1161555,1161555,1161571,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22750.0,2125.0 +1161556,1161556,1161572,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22751.0,2125.0 +1161557,1161557,1161573,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22750.0,2125.0 +1161558,1161558,1161574,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22750.0,2125.0 +1161559,1161559,1161575,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22751.0,2125.0 +1161560,1161560,1161576,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22754.0,2125.0 +1161561,1161561,1161577,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22749.0,2125.0 +1161562,1161562,1161578,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22754.0,2125.0 +1161563,1161563,1161579,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22750.0,2125.0 +1161564,1161564,1161580,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22751.0,2125.0 +1161565,1161565,1161581,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22751.0,2125.0 +1161566,1161566,1161582,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22754.0,2125.0 +1161567,1161567,1161583,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22751.0,2125.0 +1161568,1161568,1161584,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22754.0,2125.0 +1161569,1161569,1161585,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22753.0,2125.0 +1161570,1161570,1161586,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22754.0,2125.0 +1161571,1161571,1161587,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22753.0,2125.0 +1161572,1161572,1161588,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22751.0,2125.0 +1161573,1161573,1161589,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22752.0,2125.0 +1161574,1161574,1161590,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22749.0,2125.0 +1161575,1161575,1161591,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22752.0,2125.0 +1161576,1161576,1161592,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22750.0,2125.0 +1161577,1161577,1161593,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22749.0,2125.0 +1161578,1161578,1161594,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22751.0,2125.0 +1161579,1161579,1161595,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22754.0,2125.0 +1161580,1161580,1161596,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22753.0,2125.0 +1161581,1161581,1161597,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22752.0,2125.0 +1161582,1161582,1161598,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22751.0,2125.0 +1161583,1161583,1161599,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22749.0,2125.0 +1161584,1161584,1161600,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22752.0,2125.0 +1161585,1161585,1161601,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22751.0,2125.0 +1161586,1161586,1161602,3,61.0,1.0,3.0,0.0,1,92870.0,1031452,1.0,22752.0,2125.0 +1161587,1161587,1161603,5,53.0,1.0,6.0,0.0,1,172800.0,1080470,2.0,22751.0,2125.0 +1161588,1161588,1161604,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22752.0,2125.0 +1161589,1161589,1161605,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22750.0,2125.0 +1161590,1161590,1161606,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22751.0,2125.0 +1161591,1161591,1161607,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22749.0,2125.0 +1161592,1161592,1161608,5,53.0,1.0,6.0,1.0,1,172800.0,1080470,2.0,22752.0,2125.0 +1161593,1161593,1161609,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22751.0,2125.0 +1161594,1161594,1161610,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22754.0,2125.0 +1161595,1161595,1161611,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22750.0,2125.0 +1161596,1161596,1161612,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22751.0,2125.0 +1161597,1161597,1161613,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22749.0,2125.0 +1161598,1161598,1161614,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22754.0,2125.0 +1161599,1161599,1161615,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22750.0,2125.0 +1161600,1161600,1161616,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22749.0,2125.0 +1161601,1161601,1161617,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22753.0,2125.0 +1161602,1161602,1161618,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22753.0,2125.0 +1161603,1161603,1161619,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22751.0,2125.0 +1161604,1161604,1161620,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22753.0,2125.0 +1161605,1161605,1161621,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22750.0,2125.0 +1161606,1161606,1161622,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22750.0,2125.0 +1161607,1161607,1161623,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22752.0,2125.0 +1161608,1161608,1161624,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22754.0,2125.0 +1161609,1161609,1161625,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22750.0,2125.0 +1161610,1161610,1161626,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22751.0,2125.0 +1161611,1161611,1161627,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22750.0,2125.0 +1161612,1161612,1161628,4,55.0,1.0,3.0,1.0,1,240200.0,1073449,1.0,22754.0,2125.0 +1161613,1161613,1161629,4,51.0,1.0,3.0,1.0,1,90520.0,1031452,1.0,22751.0,2125.0 +1161614,1161614,1161630,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22750.0,2125.0 +1161615,1161615,1161631,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22751.0,2125.0 +1161616,1161616,1161632,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22754.0,2125.0 +1161617,1161617,1161633,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22754.0,2125.0 +1161618,1161618,1161634,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22753.0,2125.0 +1161619,1161619,1161635,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22753.0,2125.0 +1161620,1161620,1161636,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22750.0,2125.0 +1161621,1161621,1161637,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22749.0,2125.0 +1161622,1161622,1161638,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22753.0,2125.0 +1161623,1161623,1161639,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22753.0,2125.0 +1161624,1161624,1161640,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22753.0,2125.0 +1161625,1161625,1161641,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22754.0,2125.0 +1161626,1161626,1161642,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22749.0,2125.0 +1161627,1161627,1161643,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22754.0,2125.0 +1161628,1161628,1161644,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22752.0,2125.0 +1161629,1161629,1161645,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22754.0,2125.0 +1161630,1161630,1161646,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22753.0,2125.0 +1161631,1161631,1161647,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22749.0,2125.0 +1161632,1161632,1161648,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22752.0,2125.0 +1161633,1161633,1161649,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22750.0,2125.0 +1161634,1161634,1161650,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22749.0,2125.0 +1161635,1161635,1161651,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22752.0,2125.0 +1161636,1161636,1161652,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22752.0,2125.0 +1161637,1161637,1161653,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22754.0,2125.0 +1161638,1161638,1161654,4,54.0,1.0,2.0,1.0,1,41800.0,1080470,1.0,22751.0,2125.0 +1161639,1161639,1161655,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22750.0,2125.0 +1161640,1161640,1161656,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22752.0,2125.0 +1161641,1161641,1161657,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22750.0,2125.0 +1161642,1161642,1161658,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22750.0,2125.0 +1161643,1161643,1161659,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22750.0,2125.0 +1161644,1161644,1161660,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22753.0,2125.0 +1161645,1161645,1161661,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22750.0,2125.0 +1161646,1161646,1161662,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22749.0,2125.0 +1161647,1161647,1161663,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22750.0,2125.0 +1161648,1161648,1161664,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22752.0,2125.0 +1161649,1161649,1161665,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22750.0,2125.0 +1161650,1161650,1161666,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22753.0,2125.0 +1161651,1161651,1161667,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22754.0,2125.0 +1161652,1161652,1161668,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22753.0,2125.0 +1161653,1161653,1161669,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22749.0,2125.0 +1161654,1161654,1161670,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22754.0,2125.0 +1161655,1161655,1161671,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22749.0,2125.0 +1161656,1161656,1161672,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22754.0,2125.0 +1161657,1161657,1161673,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22754.0,2125.0 +1161658,1161658,1161674,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22750.0,2125.0 +1161659,1161659,1161675,2,26.0,4.0,2.0,1.0,1,96200.0,1010145,7.0,22752.0,2125.0 +1161660,1161660,1161676,1,27.0,3.0,1.0,0.0,1,45000.0,1080470,6.0,22751.0,2125.0 +1161661,1161661,1161677,1,27.0,3.0,1.0,0.0,1,45000.0,1080470,6.0,22754.0,2125.0 +1161662,1161662,1161678,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22753.0,2125.0 +1161663,1161663,1161679,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22752.0,2125.0 +1161664,1161664,1161680,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22754.0,2125.0 +1161665,1161665,1161681,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22754.0,2125.0 +1161666,1161666,1161682,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22749.0,2125.0 +1161667,1161667,1161683,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22753.0,2125.0 +1161668,1161668,1161684,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22750.0,2125.0 +1161669,1161669,1161685,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22749.0,2125.0 +1161670,1161670,1161686,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22750.0,2125.0 +1161671,1161671,1161687,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22753.0,2125.0 +1161672,1161672,1161688,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22753.0,2125.0 +1161673,1161673,1161689,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22754.0,2125.0 +1161674,1161674,1161690,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22749.0,2125.0 +1161675,1161675,1161691,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22752.0,2125.0 +1161676,1161676,1161692,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22753.0,2125.0 +1161677,1161677,1161693,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22751.0,2125.0 +1161678,1161678,1161694,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22752.0,2125.0 +1161679,1161679,1161695,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22750.0,2125.0 +1161680,1161680,1161696,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22749.0,2125.0 +1161681,1161681,1161697,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22754.0,2125.0 +1161682,1161682,1161698,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22750.0,2125.0 +1161683,1161683,1161699,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22750.0,2125.0 +1161684,1161684,1161700,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161685,1161685,1161701,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22749.0,2125.0 +1161686,1161686,1161702,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22750.0,2125.0 +1161687,1161687,1161703,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161688,1161688,1161704,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22751.0,2125.0 +1161689,1161689,1161705,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22751.0,2125.0 +1161690,1161690,1161706,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161691,1161691,1161707,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161692,1161692,1161708,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161693,1161693,1161709,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22751.0,2125.0 +1161694,1161694,1161710,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22754.0,2125.0 +1161695,1161695,1161711,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161696,1161696,1161712,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22750.0,2125.0 +1161697,1161697,1161713,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22750.0,2125.0 +1161698,1161698,1161714,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161699,1161699,1161715,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22749.0,2125.0 +1161700,1161700,1161716,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22751.0,2125.0 +1161701,1161701,1161717,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22754.0,2125.0 +1161702,1161702,1161718,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161703,1161703,1161719,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22754.0,2125.0 +1161704,1161704,1161720,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22751.0,2125.0 +1161705,1161705,1161721,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161706,1161706,1161722,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161707,1161707,1161723,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22754.0,2125.0 +1161708,1161708,1161724,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22753.0,2125.0 +1161709,1161709,1161725,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22754.0,2125.0 +1161710,1161710,1161726,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161711,1161711,1161727,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22750.0,2125.0 +1161712,1161712,1161728,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161713,1161713,1161729,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22749.0,2125.0 +1161714,1161714,1161730,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22753.0,2125.0 +1161715,1161715,1161731,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22753.0,2125.0 +1161716,1161716,1161732,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22753.0,2125.0 +1161717,1161717,1161733,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22753.0,2125.0 +1161718,1161718,1161734,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22749.0,2125.0 +1161719,1161719,1161735,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22750.0,2125.0 +1161720,1161720,1161736,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22749.0,2125.0 +1161721,1161721,1161737,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22751.0,2125.0 +1161722,1161722,1161738,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22751.0,2125.0 +1161723,1161723,1161739,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22750.0,2125.0 +1161724,1161724,1161740,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22754.0,2125.0 +1161725,1161725,1161741,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22752.0,2125.0 +1161726,1161726,1161742,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22754.0,2125.0 +1161727,1161727,1161743,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22750.0,2125.0 +1161728,1161728,1161744,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22750.0,2125.0 +1161729,1161729,1161745,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22754.0,2125.0 +1161730,1161730,1161746,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22750.0,2125.0 +1161731,1161731,1161747,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22751.0,2125.0 +1161732,1161732,1161748,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22750.0,2125.0 +1161733,1161733,1161749,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22754.0,2125.0 +1161734,1161734,1161750,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22750.0,2125.0 +1161735,1161735,1161751,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22753.0,2125.0 +1161736,1161736,1161752,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22751.0,2125.0 +1161737,1161737,1161753,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22752.0,2125.0 +1161738,1161738,1161754,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22753.0,2125.0 +1161739,1161739,1161755,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22754.0,2125.0 +1161740,1161740,1161756,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22751.0,2125.0 +1161741,1161741,1161757,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22753.0,2125.0 +1161742,1161742,1161758,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22752.0,2125.0 +1161743,1161743,1161759,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22754.0,2125.0 +1161744,1161744,1161760,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22753.0,2125.0 +1161745,1161745,1161761,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22749.0,2125.0 +1161746,1161746,1161762,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22752.0,2125.0 +1161747,1161747,1161763,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22753.0,2125.0 +1161748,1161748,1161764,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22751.0,2125.0 +1161749,1161749,1161765,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22751.0,2125.0 +1161750,1161750,1161766,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22750.0,2125.0 +1161751,1161751,1161767,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22750.0,2125.0 +1161752,1161752,1161768,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22753.0,2125.0 +1161753,1161753,1161769,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22750.0,2125.0 +1161754,1161754,1161770,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22751.0,2125.0 +1161755,1161755,1161771,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22753.0,2125.0 +1161756,1161756,1161772,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22750.0,2125.0 +1161757,1161757,1161773,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22752.0,2125.0 +1161758,1161758,1161774,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22751.0,2125.0 +1161759,1161759,1161775,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22752.0,2125.0 +1161760,1161760,1161776,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22749.0,2125.0 +1161761,1161761,1161777,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22754.0,2125.0 +1161762,1161762,1161778,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22752.0,2125.0 +1161763,1161763,1161779,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22749.0,2125.0 +1161764,1161764,1161780,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22750.0,2125.0 +1161765,1161765,1161781,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22750.0,2125.0 +1161766,1161766,1161782,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22754.0,2125.0 +1161767,1161767,1161783,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22749.0,2125.0 +1161768,1161768,1161784,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22752.0,2125.0 +1161769,1161769,1161785,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22750.0,2125.0 +1161770,1161770,1161786,2,23.0,1.0,1.0,0.0,1,132000.0,1010145,1.0,22750.0,2125.0 +1161771,1161771,1161787,1,75.0,2.0,1.0,0.0,1,36900.0,1073449,6.0,22755.0,2126.0 +1161772,1161772,1161788,1,75.0,2.0,1.0,0.0,1,36900.0,1073449,6.0,22756.0,2126.0 +1161773,1161773,1161789,1,75.0,2.0,1.0,0.0,1,36900.0,1073449,6.0,22755.0,2126.0 +1161774,1161774,1161790,1,75.0,2.0,1.0,0.0,1,36900.0,1073449,6.0,22755.0,2126.0 +1161775,1161775,1161791,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22755.0,2126.0 +1161776,1161776,1161792,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22755.0,2126.0 +1161777,1161777,1161793,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22755.0,2126.0 +1161778,1161778,1161794,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22755.0,2126.0 +1161779,1161779,1161795,1,80.0,2.0,1.0,0.0,1,35600.0,1031452,6.0,22755.0,2126.0 +1161780,1161780,1161796,1,72.0,2.0,1.0,0.0,1,34100.0,1010145,6.0,22755.0,2126.0 +1161781,1161781,1161797,4,79.0,2.0,3.0,0.0,1,27700.0,1073449,3.0,22755.0,2126.0 +1161782,1161782,1161798,4,79.0,2.0,3.0,0.0,1,27700.0,1073449,3.0,22755.0,2126.0 +1161783,1161783,1161799,4,79.0,2.0,3.0,0.0,1,27700.0,1073449,3.0,22756.0,2126.0 +1161784,1161784,1161800,4,79.0,2.0,3.0,0.0,1,27700.0,1073449,3.0,22755.0,2126.0 +1161785,1161785,1161801,4,79.0,2.0,3.0,0.0,1,27700.0,1073449,3.0,22755.0,2126.0 +1161786,1161786,1161802,4,79.0,2.0,3.0,0.0,1,27700.0,1073449,3.0,22755.0,2126.0 +1161787,1161787,1161803,1,66.0,1.0,1.0,0.0,1,349000.0,1054606,6.0,22755.0,2126.0 +1161788,1161788,1161804,1,66.0,1.0,1.0,0.0,1,349000.0,1054606,6.0,22755.0,2126.0 +1161789,1161789,1161805,1,65.0,1.0,1.0,0.0,1,108000.0,1010145,4.0,22755.0,2126.0 +1161790,1161790,1161806,1,65.0,1.0,1.0,0.0,1,102000.0,1010145,6.0,22755.0,2126.0 +1161791,1161791,1161807,1,66.0,1.0,1.0,0.0,1,100400.0,1010145,6.0,22755.0,2126.0 +1161792,1161792,1161808,1,65.0,1.0,1.0,0.0,1,102000.0,1010145,6.0,22755.0,2126.0 +1161793,1161793,1161809,1,66.0,1.0,1.0,0.0,1,100400.0,1010145,6.0,22755.0,2126.0 +1161794,1161794,1161810,1,66.0,1.0,1.0,0.0,1,100400.0,1010145,6.0,22755.0,2126.0 +1161795,1161795,1161811,1,66.0,1.0,1.0,0.0,1,114000.0,1031452,6.0,22755.0,2126.0 +1161796,1161796,1161812,1,66.0,1.0,1.0,0.0,1,114000.0,1031452,6.0,22755.0,2126.0 +1161797,1161797,1161813,1,66.0,1.0,1.0,0.0,1,114000.0,1031452,6.0,22755.0,2126.0 +1161798,1161798,1161814,1,66.0,1.0,1.0,0.0,1,100400.0,1010145,6.0,22755.0,2126.0 +1161799,1161799,1161815,1,66.0,1.0,1.0,0.0,1,114000.0,1031452,6.0,22755.0,2126.0 +1161800,1161800,1161816,1,65.0,1.0,1.0,0.0,1,102000.0,1010145,6.0,22755.0,2126.0 +1161801,1161801,1161817,1,66.0,1.0,1.0,0.0,1,114000.0,1031452,6.0,22755.0,2126.0 +1161802,1161802,1161818,1,66.0,1.0,1.0,0.0,1,100400.0,1010145,6.0,22755.0,2126.0 +1161803,1161803,1161819,1,66.0,1.0,1.0,0.0,1,114000.0,1031452,6.0,22755.0,2126.0 +1161804,1161804,1161820,1,66.0,1.0,1.0,0.0,1,100400.0,1010145,6.0,22755.0,2126.0 +1161805,1161805,1161821,1,66.0,1.0,1.0,0.0,1,100400.0,1010145,6.0,22755.0,2126.0 +1161806,1161806,1161822,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22755.0,2126.0 +1161807,1161807,1161823,1,82.0,1.0,1.0,0.0,1,200000.0,1080470,6.0,22755.0,2126.0 +1161808,1161808,1161824,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22755.0,2126.0 +1161809,1161809,1161825,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22755.0,2126.0 +1161810,1161810,1161826,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22755.0,2126.0 +1161811,1161811,1161827,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161812,1161812,1161828,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161813,1161813,1161829,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161814,1161814,1161830,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22755.0,2126.0 +1161815,1161815,1161831,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22755.0,2126.0 +1161816,1161816,1161832,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22755.0,2126.0 +1161817,1161817,1161833,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22755.0,2126.0 +1161818,1161818,1161834,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22755.0,2126.0 +1161819,1161819,1161835,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22755.0,2126.0 +1161820,1161820,1161836,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22755.0,2126.0 +1161821,1161821,1161837,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22755.0,2126.0 +1161822,1161822,1161838,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161823,1161823,1161839,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161824,1161824,1161840,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22755.0,2126.0 +1161825,1161825,1161841,1,82.0,1.0,1.0,0.0,1,200000.0,1080470,6.0,22755.0,2126.0 +1161826,1161826,1161842,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22755.0,2126.0 +1161827,1161827,1161843,1,82.0,1.0,1.0,0.0,1,200000.0,1080470,6.0,22755.0,2126.0 +1161828,1161828,1161844,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22755.0,2126.0 +1161829,1161829,1161845,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22755.0,2126.0 +1161830,1161830,1161846,1,67.0,1.0,1.0,0.0,1,139700.0,1054606,6.0,22755.0,2126.0 +1161831,1161831,1161847,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22756.0,2126.0 +1161832,1161832,1161848,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161833,1161833,1161849,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22755.0,2126.0 +1161834,1161834,1161850,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161835,1161835,1161851,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22755.0,2126.0 +1161836,1161836,1161852,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22755.0,2126.0 +1161837,1161837,1161853,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22755.0,2126.0 +1161838,1161838,1161854,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22755.0,2126.0 +1161839,1161839,1161855,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22755.0,2126.0 +1161840,1161840,1161856,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22755.0,2126.0 +1161841,1161841,1161857,1,67.0,1.0,1.0,0.0,1,139700.0,1054606,6.0,22755.0,2126.0 +1161842,1161842,1161858,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22755.0,2126.0 +1161843,1161843,1161859,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161844,1161844,1161860,1,67.0,1.0,1.0,0.0,1,139700.0,1054606,6.0,22755.0,2126.0 +1161845,1161845,1161861,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22755.0,2126.0 +1161846,1161846,1161862,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22755.0,2126.0 +1161847,1161847,1161863,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22755.0,2126.0 +1161848,1161848,1161864,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161849,1161849,1161865,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22755.0,2126.0 +1161850,1161850,1161866,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22755.0,2126.0 +1161851,1161851,1161867,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161852,1161852,1161868,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161853,1161853,1161869,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22755.0,2126.0 +1161854,1161854,1161870,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161855,1161855,1161871,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161856,1161856,1161872,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161857,1161857,1161873,1,88.0,1.0,1.0,0.0,1,151800.0,1073449,6.0,22755.0,2126.0 +1161858,1161858,1161874,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161859,1161859,1161875,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22755.0,2126.0 +1161860,1161860,1161876,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22755.0,2126.0 +1161861,1161861,1161877,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22755.0,2126.0 +1161862,1161862,1161878,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22755.0,2126.0 +1161863,1161863,1161879,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161864,1161864,1161880,1,69.0,1.0,1.0,0.0,1,153000.0,1031452,6.0,22755.0,2126.0 +1161865,1161865,1161881,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22755.0,2126.0 +1161866,1161866,1161882,1,67.0,1.0,1.0,0.0,1,139700.0,1054606,6.0,22755.0,2126.0 +1161867,1161867,1161883,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22755.0,2126.0 +1161868,1161868,1161884,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22755.0,2126.0 +1161869,1161869,1161885,1,80.0,1.0,1.0,0.0,1,162000.0,1031452,6.0,22756.0,2126.0 +1161870,1161870,1161886,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22755.0,2126.0 +1161871,1161871,1161887,1,76.0,1.0,1.0,0.0,1,245000.0,1073449,6.0,22755.0,2126.0 +1161872,1161872,1161888,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22755.0,2126.0 +1161873,1161873,1161889,1,79.0,1.0,1.0,0.0,1,229800.0,1073449,6.0,22755.0,2126.0 +1161874,1161874,1161890,1,67.0,1.0,1.0,0.0,1,139700.0,1054606,6.0,22755.0,2126.0 +1161875,1161875,1161891,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22755.0,2126.0 +1161876,1161876,1161892,1,94.0,1.0,1.0,0.0,1,117100.0,1073449,6.0,22755.0,2126.0 +1161877,1161877,1161893,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161878,1161878,1161894,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22755.0,2126.0 +1161879,1161879,1161895,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161880,1161880,1161896,1,67.0,1.0,1.0,0.0,1,198400.0,1080470,6.0,22755.0,2126.0 +1161881,1161881,1161897,1,79.0,1.0,1.0,0.0,1,242000.0,1080470,6.0,22755.0,2126.0 +1161882,1161882,1161898,1,80.0,1.0,1.0,0.0,1,126800.0,1010145,6.0,22755.0,2126.0 +1161883,1161883,1161899,1,65.0,1.0,1.0,0.0,1,80000.0,1054606,6.0,22755.0,2126.0 +1161884,1161884,1161900,1,75.0,1.0,1.0,0.0,1,94000.0,1080470,6.0,22755.0,2126.0 +1161885,1161885,1161901,1,75.0,1.0,1.0,0.0,1,37000.0,1031452,6.0,22755.0,2126.0 +1161886,1161886,1161902,1,65.0,1.0,1.0,0.0,1,58030.0,1073449,6.0,22755.0,2126.0 +1161887,1161887,1161903,1,75.0,1.0,1.0,0.0,1,37000.0,1031452,6.0,22755.0,2126.0 +1161888,1161888,1161904,1,65.0,1.0,1.0,0.0,1,58030.0,1073449,6.0,22755.0,2126.0 +1161889,1161889,1161905,1,81.0,1.0,1.0,0.0,1,37500.0,1080470,6.0,22755.0,2126.0 +1161890,1161890,1161906,1,87.0,1.0,1.0,0.0,1,55000.0,1054606,6.0,22755.0,2126.0 +1161891,1161891,1161907,1,79.0,1.0,1.0,0.0,1,28520.0,1080470,6.0,22755.0,2126.0 +1161892,1161892,1161908,1,76.0,1.0,1.0,0.0,1,10200.0,1080470,6.0,22756.0,2126.0 +1161893,1161893,1161909,1,89.0,1.0,1.0,0.0,1,27300.0,1054606,6.0,22755.0,2126.0 +1161894,1161894,1161910,1,74.0,1.0,1.0,0.0,1,28600.0,1031452,6.0,22755.0,2126.0 +1161895,1161895,1161911,1,71.0,1.0,1.0,0.0,1,19600.0,1080470,6.0,22755.0,2126.0 +1161896,1161896,1161912,6,45.0,4.0,2.0,0.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161897,1161897,1161913,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161898,1161898,1161914,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161899,1161899,1161915,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161900,1161900,1161916,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161901,1161901,1161917,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161902,1161902,1161918,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161903,1161903,1161919,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161904,1161904,1161920,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161905,1161905,1161921,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161906,1161906,1161922,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161907,1161907,1161923,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161908,1161908,1161924,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161909,1161909,1161925,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161910,1161910,1161926,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161911,1161911,1161927,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161912,1161912,1161928,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161913,1161913,1161929,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161914,1161914,1161930,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161915,1161915,1161931,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161916,1161916,1161932,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161917,1161917,1161933,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161918,1161918,1161934,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161919,1161919,1161935,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161920,1161920,1161936,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161921,1161921,1161937,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161922,1161922,1161938,6,45.0,4.0,2.0,3.0,1,17000.0,1010145,3.0,22755.0,2126.0 +1161923,1161923,1161939,1,61.0,2.0,1.0,3.0,1,37500.0,1080470,6.0,22755.0,2126.0 +1161924,1161924,1161940,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22755.0,2126.0 +1161925,1161925,1161941,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22755.0,2126.0 +1161926,1161926,1161942,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22755.0,2126.0 +1161927,1161927,1161943,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22755.0,2126.0 +1161928,1161928,1161944,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22755.0,2126.0 +1161929,1161929,1161945,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22755.0,2126.0 +1161930,1161930,1161946,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22755.0,2126.0 +1161931,1161931,1161947,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22755.0,2126.0 +1161932,1161932,1161948,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22755.0,2126.0 +1161933,1161933,1161949,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22755.0,2126.0 +1161934,1161934,1161950,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22756.0,2126.0 +1161935,1161935,1161951,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22755.0,2126.0 +1161936,1161936,1161952,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22755.0,2126.0 +1161937,1161937,1161953,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22755.0,2126.0 +1161938,1161938,1161954,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22755.0,2126.0 +1161939,1161939,1161955,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22755.0,2126.0 +1161940,1161940,1161956,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22755.0,2126.0 +1161941,1161941,1161957,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22755.0,2126.0 +1161942,1161942,1161958,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22755.0,2126.0 +1161943,1161943,1161959,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22755.0,2126.0 +1161944,1161944,1161960,2,47.0,1.0,2.0,0.0,1,120300.0,1054606,2.0,22755.0,2126.0 +1161945,1161945,1161961,1,63.0,1.0,1.0,0.0,1,423200.0,1010145,6.0,22755.0,2126.0 +1161946,1161946,1161962,1,63.0,1.0,1.0,0.0,1,135000.0,1073449,6.0,22755.0,2126.0 +1161947,1161947,1161963,1,63.0,1.0,1.0,0.0,1,135000.0,1073449,6.0,22755.0,2126.0 +1161948,1161948,1161964,1,63.0,1.0,1.0,0.0,1,135000.0,1073449,6.0,22755.0,2126.0 +1161949,1161949,1161965,1,63.0,1.0,1.0,0.0,1,135000.0,1073449,6.0,22755.0,2126.0 +1161950,1161950,1161966,1,63.0,1.0,1.0,0.0,1,135000.0,1073449,6.0,22755.0,2126.0 +1161951,1161951,1161967,1,60.0,1.0,1.0,0.0,1,424000.0,1054606,4.0,22755.0,2126.0 +1161952,1161952,1161968,1,58.0,1.0,1.0,0.0,1,374000.0,1054606,6.0,22755.0,2126.0 +1161953,1161953,1161969,1,58.0,1.0,1.0,0.0,1,70000.0,1073449,6.0,22755.0,2126.0 +1161954,1161954,1161970,1,58.0,1.0,1.0,0.0,1,70000.0,1073449,6.0,22755.0,2126.0 +1161955,1161955,1161971,1,51.0,1.0,1.0,0.0,1,90000.0,1080470,4.0,22755.0,2126.0 +1161956,1161956,1161972,1,53.0,1.0,1.0,0.0,1,56400.0,1031452,6.0,22755.0,2126.0 +1161957,1161957,1161973,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22755.0,2126.0 +1161958,1161958,1161974,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22755.0,2126.0 +1161959,1161959,1161975,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22755.0,2126.0 +1161960,1161960,1161976,1,57.0,1.0,1.0,0.0,1,51000.0,1073449,6.0,22755.0,2126.0 +1161961,1161961,1161977,1,61.0,1.0,0.0,0.0,1,41000.0,1010145,6.0,22755.0,2126.0 +1161962,1161962,1161978,1,60.0,1.0,1.0,0.0,1,9900.0,1080470,6.0,22755.0,2126.0 +1161963,1161963,1161979,1,48.0,1.0,1.0,0.0,1,24000.0,1010145,6.0,22755.0,2126.0 +1161964,1161964,1161980,1,59.0,1.0,1.0,0.0,1,28000.0,1080470,6.0,22755.0,2126.0 +1161965,1161965,1161981,1,64.0,1.0,1.0,0.0,1,1900.0,1054606,6.0,22755.0,2126.0 +1161966,1161966,1161982,5,45.0,1.0,1.0,0.0,1,43400.0,1010145,1.0,22755.0,2126.0 +1161967,1161967,1161983,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22755.0,2126.0 +1161968,1161968,1161984,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22755.0,2126.0 +1161969,1161969,1161985,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22755.0,2126.0 +1161970,1161970,1161986,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22755.0,2126.0 +1161971,1161971,1161987,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22755.0,2126.0 +1161972,1161972,1161988,5,45.0,1.0,1.0,1.0,1,43400.0,1010145,1.0,22755.0,2126.0 +1161973,1161973,1161989,2,26.0,4.0,2.0,1.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161974,1161974,1161990,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161975,1161975,1161991,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161976,1161976,1161992,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161977,1161977,1161993,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161978,1161978,1161994,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161979,1161979,1161995,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161980,1161980,1161996,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161981,1161981,1161997,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161982,1161982,1161998,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161983,1161983,1161999,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161984,1161984,1162000,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161985,1161985,1162001,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22755.0,2126.0 +1161986,1161986,1162002,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161987,1161987,1162003,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161988,1161988,1162004,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161989,1161989,1162005,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161990,1161990,1162006,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161991,1161991,1162007,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161992,1161992,1162008,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161993,1161993,1162009,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161994,1161994,1162010,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161995,1161995,1162011,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161996,1161996,1162012,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161997,1161997,1162013,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161998,1161998,1162014,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22755.0,2126.0 +1161999,1161999,1162015,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162000,1162000,1162016,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162001,1162001,1162017,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162002,1162002,1162018,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162003,1162003,1162019,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162004,1162004,1162020,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162005,1162005,1162021,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162006,1162006,1162022,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162007,1162007,1162023,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162008,1162008,1162024,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162009,1162009,1162025,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162010,1162010,1162026,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162011,1162011,1162027,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162012,1162012,1162028,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162013,1162013,1162029,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162014,1162014,1162030,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162015,1162015,1162031,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162016,1162016,1162032,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162017,1162017,1162033,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162018,1162018,1162034,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22755.0,2126.0 +1162019,1162019,1162035,1,30.0,1.0,1.0,0.0,1,25000.0,1073449,6.0,22755.0,2126.0 +1162020,1162020,1162036,1,30.0,1.0,1.0,0.0,1,25000.0,1073449,6.0,22755.0,2126.0 +1162021,1162021,1162037,1,30.0,1.0,1.0,0.0,1,25000.0,1073449,6.0,22755.0,2126.0 +1162022,1162022,1162038,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162023,1162023,1162039,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162024,1162024,1162040,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162025,1162025,1162041,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162026,1162026,1162042,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162027,1162027,1162043,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162028,1162028,1162044,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162029,1162029,1162045,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162030,1162030,1162046,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162031,1162031,1162047,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162032,1162032,1162048,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162033,1162033,1162049,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162034,1162034,1162050,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162035,1162035,1162051,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162036,1162036,1162052,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162037,1162037,1162053,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162038,1162038,1162054,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162039,1162039,1162055,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162040,1162040,1162056,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162041,1162041,1162057,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162042,1162042,1162058,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162043,1162043,1162059,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162044,1162044,1162060,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162045,1162045,1162061,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162046,1162046,1162062,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162047,1162047,1162063,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162048,1162048,1162064,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162049,1162049,1162065,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162050,1162050,1162066,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162051,1162051,1162067,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162052,1162052,1162068,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162053,1162053,1162069,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162054,1162054,1162070,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162055,1162055,1162071,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162056,1162056,1162072,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162057,1162057,1162073,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162058,1162058,1162074,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162059,1162059,1162075,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162060,1162060,1162076,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162061,1162061,1162077,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162062,1162062,1162078,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162063,1162063,1162079,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162064,1162064,1162080,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162065,1162065,1162081,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162066,1162066,1162082,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162067,1162067,1162083,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162068,1162068,1162084,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162069,1162069,1162085,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162070,1162070,1162086,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162071,1162071,1162087,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162072,1162072,1162088,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162073,1162073,1162089,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162074,1162074,1162090,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162075,1162075,1162091,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162076,1162076,1162092,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162077,1162077,1162093,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162078,1162078,1162094,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22755.0,2126.0 +1162079,1162079,1162095,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162080,1162080,1162096,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22755.0,2126.0 +1162081,1162081,1162097,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22755.0,2126.0 +1162082,1162082,1162098,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162083,1162083,1162099,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162084,1162084,1162100,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162085,1162085,1162101,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162086,1162086,1162102,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162087,1162087,1162103,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162088,1162088,1162104,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162089,1162089,1162105,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162090,1162090,1162106,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162091,1162091,1162107,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162092,1162092,1162108,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22755.0,2126.0 +1162093,1162093,1162109,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162094,1162094,1162110,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22755.0,2126.0 +1162095,1162095,1162111,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22755.0,2126.0 +1162096,1162096,1162112,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162097,1162097,1162113,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162098,1162098,1162114,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162099,1162099,1162115,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162100,1162100,1162116,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162101,1162101,1162117,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22755.0,2126.0 +1162102,1162102,1162118,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162103,1162103,1162119,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22755.0,2126.0 +1162104,1162104,1162120,1,24.0,2.0,1.0,0.0,1,30000.0,1054606,6.0,22755.0,2126.0 +1162105,1162105,1162121,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162106,1162106,1162122,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22756.0,2126.0 +1162107,1162107,1162123,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162108,1162108,1162124,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162109,1162109,1162125,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162110,1162110,1162126,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162111,1162111,1162127,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162112,1162112,1162128,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162113,1162113,1162129,1,19.0,2.0,1.0,0.0,1,500.0,1054606,6.0,22755.0,2126.0 +1162114,1162114,1162130,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162115,1162115,1162131,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162116,1162116,1162132,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162117,1162117,1162133,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162118,1162118,1162134,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162119,1162119,1162135,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162120,1162120,1162136,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162121,1162121,1162137,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162122,1162122,1162138,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162123,1162123,1162139,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162124,1162124,1162140,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162125,1162125,1162141,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162126,1162126,1162142,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162127,1162127,1162143,1,20.0,2.0,0.0,0.0,1,22000.0,1073449,4.0,22755.0,2126.0 +1162128,1162128,1162144,1,24.0,1.0,1.0,0.0,1,67000.0,1054606,4.0,22755.0,2126.0 +1162129,1162129,1162145,1,21.0,1.0,0.0,0.0,1,60150.0,1010145,4.0,22755.0,2126.0 +1162130,1162130,1162146,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22757.0,2127.0 +1162131,1162131,1162147,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22757.0,2127.0 +1162132,1162132,1162148,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22757.0,2127.0 +1162133,1162133,1162149,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162134,1162134,1162150,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162135,1162135,1162151,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162136,1162136,1162152,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162137,1162137,1162153,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162138,1162138,1162154,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162139,1162139,1162155,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162140,1162140,1162156,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162141,1162141,1162157,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162142,1162142,1162158,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162143,1162143,1162159,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162144,1162144,1162160,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162145,1162145,1162161,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162146,1162146,1162162,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162147,1162147,1162163,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162148,1162148,1162164,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162149,1162149,1162165,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162150,1162150,1162166,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162151,1162151,1162167,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162152,1162152,1162168,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162153,1162153,1162169,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162154,1162154,1162170,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162155,1162155,1162171,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162156,1162156,1162172,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162157,1162157,1162173,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162158,1162158,1162174,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162159,1162159,1162175,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162160,1162160,1162176,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162161,1162161,1162177,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162162,1162162,1162178,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162163,1162163,1162179,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162164,1162164,1162180,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162165,1162165,1162181,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162166,1162166,1162182,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162167,1162167,1162183,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162168,1162168,1162184,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162169,1162169,1162185,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162170,1162170,1162186,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162171,1162171,1162187,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162172,1162172,1162188,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162173,1162173,1162189,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162174,1162174,1162190,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162175,1162175,1162191,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1162176,1162176,1162192,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22757.0,2127.0 +1162177,1162177,1162193,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22761.0,2128.0 +1162178,1162178,1162194,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22761.0,2128.0 +1162179,1162179,1162195,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22757.0,2127.0 +1162180,1162180,1162196,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22761.0,2128.0 +1162181,1162181,1162197,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1162182,1162182,1162198,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1162183,1162183,1162199,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1162184,1162184,1162200,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1162185,1162185,1162201,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1162186,1162186,1162202,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1162187,1162187,1162203,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1162188,1162188,1162204,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1162189,1162189,1162205,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22757.0,2127.0 +1162190,1162190,1162206,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162191,1162191,1162207,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162192,1162192,1162208,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162193,1162193,1162209,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22757.0,2127.0 +1162194,1162194,1162210,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162195,1162195,1162211,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162196,1162196,1162212,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22757.0,2127.0 +1162197,1162197,1162213,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162198,1162198,1162214,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22757.0,2127.0 +1162199,1162199,1162215,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162200,1162200,1162216,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162201,1162201,1162217,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162202,1162202,1162218,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162203,1162203,1162219,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162204,1162204,1162220,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22757.0,2127.0 +1162205,1162205,1162221,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22757.0,2127.0 +1162206,1162206,1162222,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162207,1162207,1162223,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22757.0,2127.0 +1162208,1162208,1162224,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162209,1162209,1162225,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162210,1162210,1162226,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162211,1162211,1162227,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162212,1162212,1162228,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162213,1162213,1162229,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162214,1162214,1162230,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22757.0,2127.0 +1162215,1162215,1162231,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22757.0,2127.0 +1162216,1162216,1162232,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22757.0,2127.0 +1162217,1162217,1162233,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162218,1162218,1162234,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162219,1162219,1162235,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162220,1162220,1162236,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162221,1162221,1162237,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22757.0,2127.0 +1162222,1162222,1162238,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162223,1162223,1162239,2,40.0,2.0,1.0,0.0,1,49000.0,1073449,3.0,22761.0,2128.0 +1162224,1162224,1162240,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162225,1162225,1162241,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22757.0,2127.0 +1162226,1162226,1162242,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162227,1162227,1162243,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162228,1162228,1162244,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22757.0,2127.0 +1162229,1162229,1162245,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22757.0,2127.0 +1162230,1162230,1162246,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162231,1162231,1162247,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162232,1162232,1162248,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22757.0,2127.0 +1162233,1162233,1162249,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162234,1162234,1162250,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162235,1162235,1162251,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22757.0,2127.0 +1162236,1162236,1162252,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162237,1162237,1162253,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162238,1162238,1162254,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162239,1162239,1162255,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22757.0,2127.0 +1162240,1162240,1162256,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162241,1162241,1162257,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22757.0,2127.0 +1162242,1162242,1162258,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162243,1162243,1162259,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1162244,1162244,1162260,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22761.0,2128.0 +1162245,1162245,1162261,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162246,1162246,1162262,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162247,1162247,1162263,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162248,1162248,1162264,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162249,1162249,1162265,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162250,1162250,1162266,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162251,1162251,1162267,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162252,1162252,1162268,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162253,1162253,1162269,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162254,1162254,1162270,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162255,1162255,1162271,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162256,1162256,1162272,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162257,1162257,1162273,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162258,1162258,1162274,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162259,1162259,1162275,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162260,1162260,1162276,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162261,1162261,1162277,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162262,1162262,1162278,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162263,1162263,1162279,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162264,1162264,1162280,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162265,1162265,1162281,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162266,1162266,1162282,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162267,1162267,1162283,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162268,1162268,1162284,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162269,1162269,1162285,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162270,1162270,1162286,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162271,1162271,1162287,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162272,1162272,1162288,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162273,1162273,1162289,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162274,1162274,1162290,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162275,1162275,1162291,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162276,1162276,1162292,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162277,1162277,1162293,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162278,1162278,1162294,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162279,1162279,1162295,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162280,1162280,1162296,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162281,1162281,1162297,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162282,1162282,1162298,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162283,1162283,1162299,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162284,1162284,1162300,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162285,1162285,1162301,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162286,1162286,1162302,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162287,1162287,1162303,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162288,1162288,1162304,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162289,1162289,1162305,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162290,1162290,1162306,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162291,1162291,1162307,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162292,1162292,1162308,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162293,1162293,1162309,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162294,1162294,1162310,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162295,1162295,1162311,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162296,1162296,1162312,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162297,1162297,1162313,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162298,1162298,1162314,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162299,1162299,1162315,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162300,1162300,1162316,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162301,1162301,1162317,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162302,1162302,1162318,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162303,1162303,1162319,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162304,1162304,1162320,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162305,1162305,1162321,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162306,1162306,1162322,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22757.0,2127.0 +1162307,1162307,1162323,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162308,1162308,1162324,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1162309,1162309,1162325,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162310,1162310,1162326,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162311,1162311,1162327,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162312,1162312,1162328,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162313,1162313,1162329,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162314,1162314,1162330,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22757.0,2127.0 +1162315,1162315,1162331,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162316,1162316,1162332,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162317,1162317,1162333,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162318,1162318,1162334,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162319,1162319,1162335,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162320,1162320,1162336,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162321,1162321,1162337,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162322,1162322,1162338,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162323,1162323,1162339,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162324,1162324,1162340,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162325,1162325,1162341,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162326,1162326,1162342,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162327,1162327,1162343,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162328,1162328,1162344,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162329,1162329,1162345,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162330,1162330,1162346,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162331,1162331,1162347,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162332,1162332,1162348,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162333,1162333,1162349,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162334,1162334,1162350,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22757.0,2127.0 +1162335,1162335,1162351,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162336,1162336,1162352,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162337,1162337,1162353,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22757.0,2127.0 +1162338,1162338,1162354,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162339,1162339,1162355,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162340,1162340,1162356,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162341,1162341,1162357,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22757.0,2127.0 +1162342,1162342,1162358,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162343,1162343,1162359,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162344,1162344,1162360,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162345,1162345,1162361,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162346,1162346,1162362,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22757.0,2127.0 +1162347,1162347,1162363,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162348,1162348,1162364,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162349,1162349,1162365,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162350,1162350,1162366,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162351,1162351,1162367,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162352,1162352,1162368,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22757.0,2127.0 +1162353,1162353,1162369,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162354,1162354,1162370,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162355,1162355,1162371,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162356,1162356,1162372,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162357,1162357,1162373,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162358,1162358,1162374,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22761.0,2128.0 +1162359,1162359,1162375,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162360,1162360,1162376,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162361,1162361,1162377,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22757.0,2127.0 +1162362,1162362,1162378,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22757.0,2127.0 +1162363,1162363,1162379,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162364,1162364,1162380,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162365,1162365,1162381,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162366,1162366,1162382,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22757.0,2127.0 +1162367,1162367,1162383,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162368,1162368,1162384,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22757.0,2127.0 +1162369,1162369,1162385,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162370,1162370,1162386,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162371,1162371,1162387,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162372,1162372,1162388,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162373,1162373,1162389,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162374,1162374,1162390,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22757.0,2127.0 +1162375,1162375,1162391,2,27.0,1.0,2.0,0.0,1,13000.0,1073449,7.0,22761.0,2128.0 +1162376,1162376,1162392,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22757.0,2127.0 +1162377,1162377,1162393,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22761.0,2128.0 +1162378,1162378,1162394,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22757.0,2127.0 +1162379,1162379,1162395,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22761.0,2128.0 +1162380,1162380,1162396,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22757.0,2127.0 +1162381,1162381,1162397,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22761.0,2128.0 +1162382,1162382,1162398,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22761.0,2128.0 +1162383,1162383,1162399,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162384,1162384,1162400,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162385,1162385,1162401,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162386,1162386,1162402,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22757.0,2127.0 +1162387,1162387,1162403,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162388,1162388,1162404,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162389,1162389,1162405,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162390,1162390,1162406,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22757.0,2127.0 +1162391,1162391,1162407,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22757.0,2127.0 +1162392,1162392,1162408,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162393,1162393,1162409,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162394,1162394,1162410,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162395,1162395,1162411,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162396,1162396,1162412,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162397,1162397,1162413,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162398,1162398,1162414,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162399,1162399,1162415,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162400,1162400,1162416,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162401,1162401,1162417,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162402,1162402,1162418,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162403,1162403,1162419,2,19.0,3.0,2.0,0.0,1,47000.0,1031452,5.0,22761.0,2128.0 +1162404,1162404,1162420,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22761.0,2128.0 +1162405,1162405,1162421,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22761.0,2128.0 +1162406,1162406,1162422,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22761.0,2128.0 +1162407,1162407,1162423,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22757.0,2127.0 +1162408,1162408,1162424,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22761.0,2128.0 +1162409,1162409,1162425,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22761.0,2128.0 +1162410,1162410,1162426,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22757.0,2127.0 +1162411,1162411,1162427,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22757.0,2127.0 +1162412,1162412,1162428,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22761.0,2128.0 +1162413,1162413,1162429,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22761.0,2128.0 +1162414,1162414,1162430,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22761.0,2128.0 +1162415,1162415,1162431,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22761.0,2128.0 +1162416,1162416,1162432,2,24.0,3.0,1.0,0.0,1,47000.0,1031452,7.0,22757.0,2127.0 +1162417,1162417,1162433,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22761.0,2128.0 +1162418,1162418,1162434,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22761.0,2128.0 +1162419,1162419,1162435,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22761.0,2128.0 +1162420,1162420,1162436,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22757.0,2127.0 +1162421,1162421,1162437,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22757.0,2127.0 +1162422,1162422,1162438,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22757.0,2127.0 +1162423,1162423,1162439,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22761.0,2128.0 +1162424,1162424,1162440,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162425,1162425,1162441,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22761.0,2128.0 +1162426,1162426,1162442,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22761.0,2128.0 +1162427,1162427,1162443,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162428,1162428,1162444,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22761.0,2128.0 +1162429,1162429,1162445,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22757.0,2127.0 +1162430,1162430,1162446,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162431,1162431,1162447,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22761.0,2128.0 +1162432,1162432,1162448,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162433,1162433,1162449,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22757.0,2127.0 +1162434,1162434,1162450,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162435,1162435,1162451,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162436,1162436,1162452,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162437,1162437,1162453,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22761.0,2128.0 +1162438,1162438,1162454,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162439,1162439,1162455,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22757.0,2127.0 +1162440,1162440,1162456,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162441,1162441,1162457,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22757.0,2127.0 +1162442,1162442,1162458,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162443,1162443,1162459,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162444,1162444,1162460,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22761.0,2128.0 +1162445,1162445,1162461,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162446,1162446,1162462,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162447,1162447,1162463,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162448,1162448,1162464,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162449,1162449,1162465,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22757.0,2127.0 +1162450,1162450,1162466,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162451,1162451,1162467,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162452,1162452,1162468,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162453,1162453,1162469,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162454,1162454,1162470,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162455,1162455,1162471,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22761.0,2128.0 +1162456,1162456,1162472,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22757.0,2127.0 +1162457,1162457,1162473,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22761.0,2128.0 +1162458,1162458,1162474,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22761.0,2128.0 +1162459,1162459,1162475,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22757.0,2127.0 +1162460,1162460,1162476,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22757.0,2127.0 +1162461,1162461,1162477,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162462,1162462,1162478,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22761.0,2128.0 +1162463,1162463,1162479,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22761.0,2128.0 +1162464,1162464,1162480,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162465,1162465,1162481,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22757.0,2127.0 +1162466,1162466,1162482,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22761.0,2128.0 +1162467,1162467,1162483,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22761.0,2128.0 +1162468,1162468,1162484,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22761.0,2128.0 +1162469,1162469,1162485,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22761.0,2128.0 +1162470,1162470,1162486,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162471,1162471,1162487,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22761.0,2128.0 +1162472,1162472,1162488,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22757.0,2127.0 +1162473,1162473,1162489,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22757.0,2127.0 +1162474,1162474,1162490,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162475,1162475,1162491,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22761.0,2128.0 +1162476,1162476,1162492,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22761.0,2128.0 +1162477,1162477,1162493,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22757.0,2127.0 +1162478,1162478,1162494,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22761.0,2128.0 +1162479,1162479,1162495,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22761.0,2128.0 +1162480,1162480,1162496,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22761.0,2128.0 +1162481,1162481,1162497,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22761.0,2128.0 +1162482,1162482,1162498,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22757.0,2127.0 +1162483,1162483,1162499,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162484,1162484,1162500,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22761.0,2128.0 +1162485,1162485,1162501,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22761.0,2128.0 +1162486,1162486,1162502,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22757.0,2127.0 +1162487,1162487,1162503,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22761.0,2128.0 +1162488,1162488,1162504,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22761.0,2128.0 +1162489,1162489,1162505,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22757.0,2127.0 +1162490,1162490,1162506,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22761.0,2128.0 +1162491,1162491,1162507,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22761.0,2128.0 +1162492,1162492,1162508,1,85.0,4.0,0.0,0.0,1,9600.0,1054606,6.0,22758.0,2127.0 +1162493,1162493,1162509,2,46.0,4.0,1.0,0.0,1,34000.0,1010145,3.0,22763.0,2129.0 +1162494,1162494,1162510,2,46.0,4.0,1.0,0.0,1,34000.0,1010145,3.0,22763.0,2129.0 +1162495,1162495,1162511,2,46.0,4.0,1.0,0.0,1,34000.0,1010145,3.0,22758.0,2127.0 +1162496,1162496,1162512,2,46.0,4.0,1.0,0.0,1,34000.0,1010145,3.0,22758.0,2127.0 +1162497,1162497,1162513,2,46.0,4.0,1.0,0.0,1,34000.0,1010145,3.0,22763.0,2129.0 +1162498,1162498,1162514,4,50.0,3.0,4.0,0.0,1,169900.0,1054606,1.0,22763.0,2129.0 +1162499,1162499,1162515,2,53.0,3.0,2.0,0.0,1,34600.0,1073449,3.0,22758.0,2127.0 +1162500,1162500,1162516,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22763.0,2129.0 +1162501,1162501,1162517,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22763.0,2129.0 +1162502,1162502,1162518,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22758.0,2127.0 +1162503,1162503,1162519,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22758.0,2127.0 +1162504,1162504,1162520,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22758.0,2127.0 +1162505,1162505,1162521,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22758.0,2127.0 +1162506,1162506,1162522,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22758.0,2127.0 +1162507,1162507,1162523,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22763.0,2129.0 +1162508,1162508,1162524,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22763.0,2129.0 +1162509,1162509,1162525,5,58.0,1.0,4.0,0.0,1,186980.0,1031452,1.0,22763.0,2129.0 +1162510,1162510,1162526,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22763.0,2129.0 +1162511,1162511,1162527,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22758.0,2127.0 +1162512,1162512,1162528,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22763.0,2129.0 +1162513,1162513,1162529,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22763.0,2129.0 +1162514,1162514,1162530,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22763.0,2129.0 +1162515,1162515,1162531,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22758.0,2127.0 +1162516,1162516,1162532,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22758.0,2127.0 +1162517,1162517,1162533,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22758.0,2127.0 +1162518,1162518,1162534,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22763.0,2129.0 +1162519,1162519,1162535,3,59.0,1.0,4.0,0.0,1,262300.0,1073449,1.0,22763.0,2129.0 +1162520,1162520,1162536,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22758.0,2127.0 +1162521,1162521,1162537,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22763.0,2129.0 +1162522,1162522,1162538,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22758.0,2127.0 +1162523,1162523,1162539,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22758.0,2127.0 +1162524,1162524,1162540,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22763.0,2129.0 +1162525,1162525,1162541,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22758.0,2127.0 +1162526,1162526,1162542,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22758.0,2127.0 +1162527,1162527,1162543,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22763.0,2129.0 +1162528,1162528,1162544,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162529,1162529,1162545,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162530,1162530,1162546,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162531,1162531,1162547,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162532,1162532,1162548,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162533,1162533,1162549,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162534,1162534,1162550,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162535,1162535,1162551,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162536,1162536,1162552,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162537,1162537,1162553,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162538,1162538,1162554,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162539,1162539,1162555,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162540,1162540,1162556,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162541,1162541,1162557,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162542,1162542,1162558,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162543,1162543,1162559,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162544,1162544,1162560,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162545,1162545,1162561,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162546,1162546,1162562,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162547,1162547,1162563,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162548,1162548,1162564,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162549,1162549,1162565,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162550,1162550,1162566,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162551,1162551,1162567,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162552,1162552,1162568,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162553,1162553,1162569,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162554,1162554,1162570,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162555,1162555,1162571,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162556,1162556,1162572,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162557,1162557,1162573,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162558,1162558,1162574,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162559,1162559,1162575,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162560,1162560,1162576,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22763.0,2129.0 +1162561,1162561,1162577,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22758.0,2127.0 +1162562,1162562,1162578,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22763.0,2129.0 +1162563,1162563,1162579,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22763.0,2129.0 +1162564,1162564,1162580,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22758.0,2127.0 +1162565,1162565,1162581,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22763.0,2129.0 +1162566,1162566,1162582,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22763.0,2129.0 +1162567,1162567,1162583,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22758.0,2127.0 +1162568,1162568,1162584,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22758.0,2127.0 +1162569,1162569,1162585,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22763.0,2129.0 +1162570,1162570,1162586,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22763.0,2129.0 +1162571,1162571,1162587,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22758.0,2127.0 +1162572,1162572,1162588,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22758.0,2127.0 +1162573,1162573,1162589,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22763.0,2129.0 +1162574,1162574,1162590,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22758.0,2127.0 +1162575,1162575,1162591,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22763.0,2129.0 +1162576,1162576,1162592,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22763.0,2129.0 +1162577,1162577,1162593,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22763.0,2129.0 +1162578,1162578,1162594,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22758.0,2127.0 +1162579,1162579,1162595,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22763.0,2129.0 +1162580,1162580,1162596,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22758.0,2127.0 +1162581,1162581,1162597,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22763.0,2129.0 +1162582,1162582,1162598,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22758.0,2127.0 +1162583,1162583,1162599,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22763.0,2129.0 +1162584,1162584,1162600,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22763.0,2129.0 +1162585,1162585,1162601,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22763.0,2129.0 +1162586,1162586,1162602,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22763.0,2129.0 +1162587,1162587,1162603,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22763.0,2129.0 +1162588,1162588,1162604,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22763.0,2129.0 +1162589,1162589,1162605,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22763.0,2129.0 +1162590,1162590,1162606,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22763.0,2129.0 +1162591,1162591,1162607,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22758.0,2127.0 +1162592,1162592,1162608,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22763.0,2129.0 +1162593,1162593,1162609,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22758.0,2127.0 +1162594,1162594,1162610,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22763.0,2129.0 +1162595,1162595,1162611,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22763.0,2129.0 +1162596,1162596,1162612,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22763.0,2129.0 +1162597,1162597,1162613,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162598,1162598,1162614,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162599,1162599,1162615,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162600,1162600,1162616,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162601,1162601,1162617,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162602,1162602,1162618,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162603,1162603,1162619,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162604,1162604,1162620,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162605,1162605,1162621,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162606,1162606,1162622,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162607,1162607,1162623,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162608,1162608,1162624,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162609,1162609,1162625,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162610,1162610,1162626,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162611,1162611,1162627,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162612,1162612,1162628,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162613,1162613,1162629,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162614,1162614,1162630,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162615,1162615,1162631,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162616,1162616,1162632,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162617,1162617,1162633,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162618,1162618,1162634,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162619,1162619,1162635,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162620,1162620,1162636,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162621,1162621,1162637,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162622,1162622,1162638,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162623,1162623,1162639,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162624,1162624,1162640,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162625,1162625,1162641,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162626,1162626,1162642,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162627,1162627,1162643,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162628,1162628,1162644,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162629,1162629,1162645,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162630,1162630,1162646,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162631,1162631,1162647,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162632,1162632,1162648,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162633,1162633,1162649,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162634,1162634,1162650,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162635,1162635,1162651,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162636,1162636,1162652,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162637,1162637,1162653,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162638,1162638,1162654,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162639,1162639,1162655,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162640,1162640,1162656,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162641,1162641,1162657,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162642,1162642,1162658,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162643,1162643,1162659,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162644,1162644,1162660,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162645,1162645,1162661,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162646,1162646,1162662,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162647,1162647,1162663,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162648,1162648,1162664,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162649,1162649,1162665,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162650,1162650,1162666,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162651,1162651,1162667,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162652,1162652,1162668,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162653,1162653,1162669,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162654,1162654,1162670,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162655,1162655,1162671,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162656,1162656,1162672,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162657,1162657,1162673,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162658,1162658,1162674,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162659,1162659,1162675,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162660,1162660,1162676,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162661,1162661,1162677,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162662,1162662,1162678,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162663,1162663,1162679,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162664,1162664,1162680,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162665,1162665,1162681,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162666,1162666,1162682,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162667,1162667,1162683,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162668,1162668,1162684,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162669,1162669,1162685,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162670,1162670,1162686,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162671,1162671,1162687,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162672,1162672,1162688,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162673,1162673,1162689,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22758.0,2127.0 +1162674,1162674,1162690,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1162675,1162675,1162691,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22758.0,2127.0 +1162676,1162676,1162692,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22758.0,2127.0 +1162677,1162677,1162693,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22763.0,2129.0 +1162678,1162678,1162694,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22758.0,2127.0 +1162679,1162679,1162695,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22758.0,2127.0 +1162680,1162680,1162696,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22758.0,2127.0 +1162681,1162681,1162697,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22763.0,2129.0 +1162682,1162682,1162698,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22763.0,2129.0 +1162683,1162683,1162699,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22763.0,2129.0 +1162684,1162684,1162700,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22758.0,2127.0 +1162685,1162685,1162701,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22763.0,2129.0 +1162686,1162686,1162702,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22763.0,2129.0 +1162687,1162687,1162703,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22758.0,2127.0 +1162688,1162688,1162704,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22763.0,2129.0 +1162689,1162689,1162705,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22758.0,2127.0 +1162690,1162690,1162706,2,27.0,1.0,2.0,0.0,1,49000.0,1010145,7.0,22763.0,2129.0 +1162691,1162691,1162707,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162692,1162692,1162708,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162693,1162693,1162709,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22758.0,2127.0 +1162694,1162694,1162710,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22758.0,2127.0 +1162695,1162695,1162711,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22758.0,2127.0 +1162696,1162696,1162712,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162697,1162697,1162713,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162698,1162698,1162714,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22758.0,2127.0 +1162699,1162699,1162715,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162700,1162700,1162716,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162701,1162701,1162717,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162702,1162702,1162718,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22758.0,2127.0 +1162703,1162703,1162719,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162704,1162704,1162720,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22758.0,2127.0 +1162705,1162705,1162721,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22758.0,2127.0 +1162706,1162706,1162722,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162707,1162707,1162723,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22758.0,2127.0 +1162708,1162708,1162724,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22758.0,2127.0 +1162709,1162709,1162725,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162710,1162710,1162726,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162711,1162711,1162727,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22758.0,2127.0 +1162712,1162712,1162728,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22758.0,2127.0 +1162713,1162713,1162729,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162714,1162714,1162730,2,31.0,1.0,0.0,0.0,1,30000.0,1073449,1.0,22763.0,2129.0 +1162715,1162715,1162731,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162716,1162716,1162732,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162717,1162717,1162733,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22763.0,2129.0 +1162718,1162718,1162734,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162719,1162719,1162735,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22763.0,2129.0 +1162720,1162720,1162736,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162721,1162721,1162737,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162722,1162722,1162738,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162723,1162723,1162739,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162724,1162724,1162740,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162725,1162725,1162741,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162726,1162726,1162742,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162727,1162727,1162743,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162728,1162728,1162744,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162729,1162729,1162745,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22763.0,2129.0 +1162730,1162730,1162746,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22763.0,2129.0 +1162731,1162731,1162747,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162732,1162732,1162748,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162733,1162733,1162749,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162734,1162734,1162750,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162735,1162735,1162751,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162736,1162736,1162752,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22763.0,2129.0 +1162737,1162737,1162753,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162738,1162738,1162754,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162739,1162739,1162755,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22758.0,2127.0 +1162740,1162740,1162756,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162741,1162741,1162757,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162742,1162742,1162758,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22763.0,2129.0 +1162743,1162743,1162759,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162744,1162744,1162760,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162745,1162745,1162761,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22763.0,2129.0 +1162746,1162746,1162762,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22763.0,2129.0 +1162747,1162747,1162763,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162748,1162748,1162764,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162749,1162749,1162765,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162750,1162750,1162766,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162751,1162751,1162767,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162752,1162752,1162768,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22763.0,2129.0 +1162753,1162753,1162769,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162754,1162754,1162770,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162755,1162755,1162771,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22758.0,2127.0 +1162756,1162756,1162772,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162757,1162757,1162773,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1162758,1162758,1162774,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22758.0,2127.0 +1162759,1162759,1162775,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22763.0,2129.0 +1162760,1162760,1162776,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22758.0,2127.0 +1162761,1162761,1162777,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22763.0,2129.0 +1162762,1162762,1162778,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22763.0,2129.0 +1162763,1162763,1162779,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22763.0,2129.0 +1162764,1162764,1162780,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22763.0,2129.0 +1162765,1162765,1162781,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22763.0,2129.0 +1162766,1162766,1162782,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22763.0,2129.0 +1162767,1162767,1162783,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22758.0,2127.0 +1162768,1162768,1162784,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22758.0,2127.0 +1162769,1162769,1162785,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22763.0,2129.0 +1162770,1162770,1162786,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22758.0,2127.0 +1162771,1162771,1162787,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162772,1162772,1162788,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162773,1162773,1162789,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22758.0,2127.0 +1162774,1162774,1162790,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162775,1162775,1162791,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162776,1162776,1162792,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22758.0,2127.0 +1162777,1162777,1162793,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22758.0,2127.0 +1162778,1162778,1162794,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162779,1162779,1162795,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162780,1162780,1162796,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162781,1162781,1162797,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162782,1162782,1162798,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22758.0,2127.0 +1162783,1162783,1162799,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22758.0,2127.0 +1162784,1162784,1162800,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22758.0,2127.0 +1162785,1162785,1162801,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162786,1162786,1162802,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22758.0,2127.0 +1162787,1162787,1162803,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162788,1162788,1162804,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22758.0,2127.0 +1162789,1162789,1162805,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22758.0,2127.0 +1162790,1162790,1162806,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162791,1162791,1162807,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22758.0,2127.0 +1162792,1162792,1162808,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22763.0,2129.0 +1162793,1162793,1162809,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22763.0,2129.0 +1162794,1162794,1162810,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162795,1162795,1162811,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162796,1162796,1162812,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162797,1162797,1162813,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162798,1162798,1162814,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162799,1162799,1162815,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162800,1162800,1162816,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162801,1162801,1162817,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162802,1162802,1162818,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162803,1162803,1162819,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162804,1162804,1162820,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162805,1162805,1162821,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162806,1162806,1162822,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162807,1162807,1162823,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162808,1162808,1162824,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162809,1162809,1162825,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162810,1162810,1162826,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162811,1162811,1162827,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162812,1162812,1162828,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162813,1162813,1162829,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162814,1162814,1162830,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162815,1162815,1162831,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162816,1162816,1162832,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162817,1162817,1162833,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162818,1162818,1162834,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162819,1162819,1162835,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162820,1162820,1162836,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162821,1162821,1162837,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162822,1162822,1162838,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162823,1162823,1162839,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162824,1162824,1162840,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162825,1162825,1162841,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162826,1162826,1162842,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162827,1162827,1162843,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162828,1162828,1162844,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162829,1162829,1162845,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162830,1162830,1162846,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162831,1162831,1162847,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162832,1162832,1162848,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162833,1162833,1162849,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162834,1162834,1162850,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162835,1162835,1162851,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162836,1162836,1162852,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162837,1162837,1162853,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162838,1162838,1162854,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162839,1162839,1162855,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162840,1162840,1162856,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162841,1162841,1162857,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162842,1162842,1162858,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162843,1162843,1162859,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162844,1162844,1162860,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162845,1162845,1162861,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162846,1162846,1162862,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162847,1162847,1162863,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162848,1162848,1162864,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162849,1162849,1162865,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162850,1162850,1162866,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162851,1162851,1162867,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162852,1162852,1162868,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162853,1162853,1162869,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22758.0,2127.0 +1162854,1162854,1162870,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162855,1162855,1162871,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162856,1162856,1162872,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1162857,1162857,1162873,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22763.0,2129.0 +1162858,1162858,1162874,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22758.0,2127.0 +1162859,1162859,1162875,2,23.0,1.0,1.0,0.0,1,36000.0,1054606,7.0,22763.0,2129.0 +1162860,1162860,1162876,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22758.0,2127.0 +1162861,1162861,1162877,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162862,1162862,1162878,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162863,1162863,1162879,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22758.0,2127.0 +1162864,1162864,1162880,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22758.0,2127.0 +1162865,1162865,1162881,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22758.0,2127.0 +1162866,1162866,1162882,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162867,1162867,1162883,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162868,1162868,1162884,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22758.0,2127.0 +1162869,1162869,1162885,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162870,1162870,1162886,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162871,1162871,1162887,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162872,1162872,1162888,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162873,1162873,1162889,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162874,1162874,1162890,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162875,1162875,1162891,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22758.0,2127.0 +1162876,1162876,1162892,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162877,1162877,1162893,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22758.0,2127.0 +1162878,1162878,1162894,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162879,1162879,1162895,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1162880,1162880,1162896,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22758.0,2127.0 +1162881,1162881,1162897,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22758.0,2127.0 +1162882,1162882,1162898,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22763.0,2129.0 +1162883,1162883,1162899,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22763.0,2129.0 +1162884,1162884,1162900,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22763.0,2129.0 +1162885,1162885,1162901,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22758.0,2127.0 +1162886,1162886,1162902,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22763.0,2129.0 +1162887,1162887,1162903,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22758.0,2127.0 +1162888,1162888,1162904,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22763.0,2129.0 +1162889,1162889,1162905,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22758.0,2127.0 +1162890,1162890,1162906,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22758.0,2127.0 +1162891,1162891,1162907,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22763.0,2129.0 +1162892,1162892,1162908,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22763.0,2129.0 +1162893,1162893,1162909,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22758.0,2127.0 +1162894,1162894,1162910,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22758.0,2127.0 +1162895,1162895,1162911,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22763.0,2129.0 +1162896,1162896,1162912,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22758.0,2127.0 +1162897,1162897,1162913,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22763.0,2129.0 +1162898,1162898,1162914,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22763.0,2129.0 +1162899,1162899,1162915,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22763.0,2129.0 +1162900,1162900,1162916,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22758.0,2127.0 +1162901,1162901,1162917,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22763.0,2129.0 +1162902,1162902,1162918,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22763.0,2129.0 +1162903,1162903,1162919,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22758.0,2127.0 +1162904,1162904,1162920,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22763.0,2129.0 +1162905,1162905,1162921,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22763.0,2129.0 +1162906,1162906,1162922,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22763.0,2129.0 +1162907,1162907,1162923,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22763.0,2129.0 +1162908,1162908,1162924,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22763.0,2129.0 +1162909,1162909,1162925,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22763.0,2129.0 +1162910,1162910,1162926,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22763.0,2129.0 +1162911,1162911,1162927,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22763.0,2129.0 +1162912,1162912,1162928,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22763.0,2129.0 +1162913,1162913,1162929,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22758.0,2127.0 +1162914,1162914,1162930,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22763.0,2129.0 +1162915,1162915,1162931,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22758.0,2127.0 +1162916,1162916,1162932,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22763.0,2129.0 +1162917,1162917,1162933,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22763.0,2129.0 +1162918,1162918,1162934,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22763.0,2129.0 +1162919,1162919,1162935,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22763.0,2129.0 +1162920,1162920,1162936,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22763.0,2129.0 +1162921,1162921,1162937,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22763.0,2129.0 +1162922,1162922,1162938,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22758.0,2127.0 +1162923,1162923,1162939,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22763.0,2129.0 +1162924,1162924,1162940,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22763.0,2129.0 +1162925,1162925,1162941,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22758.0,2127.0 +1162926,1162926,1162942,1,21.0,1.0,1.0,0.0,1,4000.0,1031452,6.0,22763.0,2129.0 +1162927,1162927,1162943,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22763.0,2129.0 +1162928,1162928,1162944,1,22.0,1.0,1.0,0.0,1,3400.0,1073449,6.0,22758.0,2127.0 +1162929,1162929,1162945,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22758.0,2127.0 +1162930,1162930,1162946,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22763.0,2129.0 +1162931,1162931,1162947,1,24.0,1.0,1.0,0.0,1,530.0,1080470,6.0,22763.0,2129.0 +1162932,1162932,1162948,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22763.0,2129.0 +1162933,1162933,1162949,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22758.0,2127.0 +1162934,1162934,1162950,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22763.0,2129.0 +1162935,1162935,1162951,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22763.0,2129.0 +1162936,1162936,1162952,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22763.0,2129.0 +1162937,1162937,1162953,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22763.0,2129.0 +1162938,1162938,1162954,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22758.0,2127.0 +1162939,1162939,1162955,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22763.0,2129.0 +1162940,1162940,1162956,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22758.0,2127.0 +1162941,1162941,1162957,1,23.0,1.0,1.0,0.0,1,15000.0,1073449,6.0,22763.0,2129.0 +1162942,1162942,1162958,1,23.0,1.0,1.0,0.0,1,8000.0,1010145,6.0,22763.0,2129.0 +1162943,1162943,1162959,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22763.0,2129.0 +1162944,1162944,1162960,1,22.0,1.0,1.0,0.0,1,6000.0,1010145,6.0,22763.0,2129.0 +1162945,1162945,1162961,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22763.0,2129.0 +1162946,1162946,1162962,1,21.0,1.0,1.0,0.0,1,5000.0,1054606,6.0,22763.0,2129.0 +1162947,1162947,1162963,1,21.0,1.0,1.0,0.0,1,13500.0,1073449,6.0,22763.0,2129.0 +1162948,1162948,1162964,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22758.0,2127.0 +1162949,1162949,1162965,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22758.0,2127.0 +1162950,1162950,1162966,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22763.0,2129.0 +1162951,1162951,1162967,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22758.0,2127.0 +1162952,1162952,1162968,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22758.0,2127.0 +1162953,1162953,1162969,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22758.0,2127.0 +1162954,1162954,1162970,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22758.0,2127.0 +1162955,1162955,1162971,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22758.0,2127.0 +1162956,1162956,1162972,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22763.0,2129.0 +1162957,1162957,1162973,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22763.0,2129.0 +1162958,1162958,1162974,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22758.0,2127.0 +1162959,1162959,1162975,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22763.0,2129.0 +1162960,1162960,1162976,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22758.0,2127.0 +1162961,1162961,1162977,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22758.0,2127.0 +1162962,1162962,1162978,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22763.0,2129.0 +1162963,1162963,1162979,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22763.0,2129.0 +1162964,1162964,1162980,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22763.0,2129.0 +1162965,1162965,1162981,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22763.0,2129.0 +1162966,1162966,1162982,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22763.0,2129.0 +1162967,1162967,1162983,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22763.0,2129.0 +1162968,1162968,1162984,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22758.0,2127.0 +1162969,1162969,1162985,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22763.0,2129.0 +1162970,1162970,1162986,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22758.0,2127.0 +1162971,1162971,1162987,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22763.0,2129.0 +1162972,1162972,1162988,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22758.0,2127.0 +1162973,1162973,1162989,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22758.0,2127.0 +1162974,1162974,1162990,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22763.0,2129.0 +1162975,1162975,1162991,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22758.0,2127.0 +1162976,1162976,1162992,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22758.0,2127.0 +1162977,1162977,1162993,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22763.0,2129.0 +1162978,1162978,1162994,1,94.0,4.0,0.0,0.0,1,0.0,1080470,6.0,22759.0,2128.0 +1162979,1162979,1162995,1,85.0,4.0,0.0,0.0,1,9600.0,1054606,6.0,22760.0,2128.0 +1162980,1162980,1162996,1,85.0,4.0,0.0,0.0,1,9600.0,1054606,6.0,22761.0,2128.0 +1162981,1162981,1162997,1,89.0,4.0,0.0,0.0,1,8800.0,1031452,6.0,22760.0,2128.0 +1162982,1162982,1162998,1,85.0,4.0,0.0,0.0,1,9600.0,1054606,6.0,22758.0,2127.0 +1162983,1162983,1162999,1,81.0,1.0,1.0,0.0,1,148010.0,1010145,6.0,22759.0,2128.0 +1162984,1162984,1163000,2,46.0,4.0,1.0,0.0,1,34000.0,1010145,3.0,22759.0,2128.0 +1162985,1162985,1163001,2,46.0,4.0,1.0,0.0,1,34000.0,1010145,3.0,22760.0,2128.0 +1162986,1162986,1163002,2,46.0,4.0,1.0,0.0,1,34000.0,1010145,3.0,22760.0,2128.0 +1162987,1162987,1163003,2,46.0,4.0,1.0,0.0,1,34000.0,1010145,3.0,22761.0,2128.0 +1162988,1162988,1163004,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22761.0,2128.0 +1162989,1162989,1163005,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22760.0,2128.0 +1162990,1162990,1163006,4,49.0,1.0,2.0,0.0,1,235000.0,1010145,1.0,22760.0,2128.0 +1162991,1162991,1163007,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22760.0,2128.0 +1162992,1162992,1163008,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22761.0,2128.0 +1162993,1162993,1163009,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22759.0,2128.0 +1162994,1162994,1163010,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22759.0,2128.0 +1162995,1162995,1163011,4,54.0,1.0,4.0,0.0,1,308000.0,1054606,1.0,22759.0,2128.0 +1162996,1162996,1163012,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22760.0,2128.0 +1162997,1162997,1163013,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22760.0,2128.0 +1162998,1162998,1163014,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22760.0,2128.0 +1162999,1162999,1163015,3,49.0,1.0,3.0,0.0,1,188000.0,1054606,1.0,22760.0,2128.0 +1163000,1163000,1163016,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22759.0,2128.0 +1163001,1163001,1163017,2,26.0,4.0,2.0,0.0,1,96200.0,1010145,7.0,22761.0,2128.0 +1163002,1163002,1163018,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22760.0,2128.0 +1163003,1163003,1163019,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22760.0,2128.0 +1163004,1163004,1163020,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22759.0,2128.0 +1163005,1163005,1163021,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22759.0,2128.0 +1163006,1163006,1163022,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22759.0,2128.0 +1163007,1163007,1163023,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22759.0,2128.0 +1163008,1163008,1163024,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22760.0,2128.0 +1163009,1163009,1163025,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22760.0,2128.0 +1163010,1163010,1163026,2,40.0,4.0,1.0,0.0,1,37000.0,1080470,5.0,22759.0,2128.0 +1163011,1163011,1163027,2,25.0,4.0,0.0,0.0,1,27600.0,1080470,5.0,22759.0,2128.0 +1163012,1163012,1163028,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22760.0,2128.0 +1163013,1163013,1163029,2,25.0,4.0,0.0,0.0,1,16900.0,1073449,5.0,22760.0,2128.0 +1163014,1163014,1163030,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163015,1163015,1163031,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163016,1163016,1163032,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163017,1163017,1163033,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163018,1163018,1163034,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163019,1163019,1163035,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22759.0,2128.0 +1163020,1163020,1163036,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163021,1163021,1163037,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163022,1163022,1163038,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1163023,1163023,1163039,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163024,1163024,1163040,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22759.0,2128.0 +1163025,1163025,1163041,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1163026,1163026,1163042,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163027,1163027,1163043,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22759.0,2128.0 +1163028,1163028,1163044,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22759.0,2128.0 +1163029,1163029,1163045,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163030,1163030,1163046,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163031,1163031,1163047,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163032,1163032,1163048,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163033,1163033,1163049,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163034,1163034,1163050,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163035,1163035,1163051,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163036,1163036,1163052,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163037,1163037,1163053,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163038,1163038,1163054,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1163039,1163039,1163055,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1163040,1163040,1163056,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163041,1163041,1163057,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1163042,1163042,1163058,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22759.0,2128.0 +1163043,1163043,1163059,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22759.0,2128.0 +1163044,1163044,1163060,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22759.0,2128.0 +1163045,1163045,1163061,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163046,1163046,1163062,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1163047,1163047,1163063,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163048,1163048,1163064,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22759.0,2128.0 +1163049,1163049,1163065,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163050,1163050,1163066,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22761.0,2128.0 +1163051,1163051,1163067,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22758.0,2127.0 +1163052,1163052,1163068,2,26.0,4.0,0.0,0.0,1,4500.0,1054606,2.0,22760.0,2128.0 +1163053,1163053,1163069,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22763.0,2129.0 +1163054,1163054,1163070,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22761.0,2128.0 +1163055,1163055,1163071,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22761.0,2128.0 +1163056,1163056,1163072,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22759.0,2128.0 +1163057,1163057,1163073,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22760.0,2128.0 +1163058,1163058,1163074,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22760.0,2128.0 +1163059,1163059,1163075,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22760.0,2128.0 +1163060,1163060,1163076,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22759.0,2128.0 +1163061,1163061,1163077,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22760.0,2128.0 +1163062,1163062,1163078,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22759.0,2128.0 +1163063,1163063,1163079,4,26.0,1.0,2.0,0.0,1,120000.0,1031452,7.0,22761.0,2128.0 +1163064,1163064,1163080,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163065,1163065,1163081,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22759.0,2128.0 +1163066,1163066,1163082,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1163067,1163067,1163083,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1163068,1163068,1163084,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22759.0,2128.0 +1163069,1163069,1163085,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163070,1163070,1163086,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22759.0,2128.0 +1163071,1163071,1163087,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22759.0,2128.0 +1163072,1163072,1163088,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163073,1163073,1163089,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22759.0,2128.0 +1163074,1163074,1163090,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163075,1163075,1163091,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163076,1163076,1163092,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163077,1163077,1163093,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1163078,1163078,1163094,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1163079,1163079,1163095,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163080,1163080,1163096,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1163081,1163081,1163097,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1163082,1163082,1163098,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163083,1163083,1163099,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22759.0,2128.0 +1163084,1163084,1163100,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163085,1163085,1163101,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163086,1163086,1163102,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163087,1163087,1163103,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1163088,1163088,1163104,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163089,1163089,1163105,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163090,1163090,1163106,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22759.0,2128.0 +1163091,1163091,1163107,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163092,1163092,1163108,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22759.0,2128.0 +1163093,1163093,1163109,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22759.0,2128.0 +1163094,1163094,1163110,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22759.0,2128.0 +1163095,1163095,1163111,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163096,1163096,1163112,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1163097,1163097,1163113,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1163098,1163098,1163114,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163099,1163099,1163115,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163100,1163100,1163116,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1163101,1163101,1163117,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22759.0,2128.0 +1163102,1163102,1163118,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163103,1163103,1163119,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22761.0,2128.0 +1163104,1163104,1163120,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163105,1163105,1163121,2,31.0,1.0,2.0,0.0,1,111000.0,1010145,5.0,22760.0,2128.0 +1163106,1163106,1163122,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163107,1163107,1163123,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163108,1163108,1163124,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163109,1163109,1163125,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22761.0,2128.0 +1163110,1163110,1163126,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163111,1163111,1163127,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163112,1163112,1163128,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163113,1163113,1163129,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163114,1163114,1163130,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163115,1163115,1163131,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163116,1163116,1163132,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163117,1163117,1163133,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163118,1163118,1163134,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163119,1163119,1163135,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163120,1163120,1163136,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163121,1163121,1163137,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22761.0,2128.0 +1163122,1163122,1163138,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22763.0,2129.0 +1163123,1163123,1163139,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163124,1163124,1163140,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163125,1163125,1163141,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22761.0,2128.0 +1163126,1163126,1163142,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163127,1163127,1163143,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163128,1163128,1163144,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163129,1163129,1163145,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163130,1163130,1163146,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163131,1163131,1163147,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163132,1163132,1163148,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163133,1163133,1163149,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22761.0,2128.0 +1163134,1163134,1163150,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22761.0,2128.0 +1163135,1163135,1163151,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22759.0,2128.0 +1163136,1163136,1163152,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22763.0,2129.0 +1163137,1163137,1163153,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163138,1163138,1163154,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163139,1163139,1163155,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163140,1163140,1163156,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22760.0,2128.0 +1163141,1163141,1163157,2,27.0,1.0,2.0,0.0,1,79000.0,1054606,7.0,22763.0,2129.0 +1163142,1163142,1163158,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163143,1163143,1163159,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163144,1163144,1163160,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163145,1163145,1163161,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163146,1163146,1163162,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1163147,1163147,1163163,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163148,1163148,1163164,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1163149,1163149,1163165,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163150,1163150,1163166,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163151,1163151,1163167,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1163152,1163152,1163168,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163153,1163153,1163169,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163154,1163154,1163170,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163155,1163155,1163171,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163156,1163156,1163172,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1163157,1163157,1163173,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163158,1163158,1163174,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163159,1163159,1163175,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163160,1163160,1163176,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163161,1163161,1163177,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163162,1163162,1163178,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163163,1163163,1163179,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1163164,1163164,1163180,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163165,1163165,1163181,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163166,1163166,1163182,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163167,1163167,1163183,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163168,1163168,1163184,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163169,1163169,1163185,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163170,1163170,1163186,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163171,1163171,1163187,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22763.0,2129.0 +1163172,1163172,1163188,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163173,1163173,1163189,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163174,1163174,1163190,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163175,1163175,1163191,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1163176,1163176,1163192,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163177,1163177,1163193,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1163178,1163178,1163194,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163179,1163179,1163195,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163180,1163180,1163196,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163181,1163181,1163197,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163182,1163182,1163198,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163183,1163183,1163199,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163184,1163184,1163200,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1163185,1163185,1163201,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1163186,1163186,1163202,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163187,1163187,1163203,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1163188,1163188,1163204,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163189,1163189,1163205,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163190,1163190,1163206,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163191,1163191,1163207,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163192,1163192,1163208,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163193,1163193,1163209,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22759.0,2128.0 +1163194,1163194,1163210,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22760.0,2128.0 +1163195,1163195,1163211,3,25.0,1.0,0.0,0.0,1,64000.0,1073449,2.0,22761.0,2128.0 +1163196,1163196,1163212,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22760.0,2128.0 +1163197,1163197,1163213,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22759.0,2128.0 +1163198,1163198,1163214,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22760.0,2128.0 +1163199,1163199,1163215,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22763.0,2129.0 +1163200,1163200,1163216,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22759.0,2128.0 +1163201,1163201,1163217,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22760.0,2128.0 +1163202,1163202,1163218,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1163203,1163203,1163219,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22761.0,2128.0 +1163204,1163204,1163220,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22760.0,2128.0 +1163205,1163205,1163221,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22763.0,2129.0 +1163206,1163206,1163222,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22761.0,2128.0 +1163207,1163207,1163223,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22759.0,2128.0 +1163208,1163208,1163224,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22760.0,2128.0 +1163209,1163209,1163225,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22760.0,2128.0 +1163210,1163210,1163226,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22761.0,2128.0 +1163211,1163211,1163227,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22761.0,2128.0 +1163212,1163212,1163228,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22760.0,2128.0 +1163213,1163213,1163229,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22761.0,2128.0 +1163214,1163214,1163230,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22763.0,2129.0 +1163215,1163215,1163231,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22759.0,2128.0 +1163216,1163216,1163232,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22760.0,2128.0 +1163217,1163217,1163233,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22760.0,2128.0 +1163218,1163218,1163234,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22760.0,2128.0 +1163219,1163219,1163235,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22760.0,2128.0 +1163220,1163220,1163236,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22760.0,2128.0 +1163221,1163221,1163237,1,20.0,4.0,1.0,0.0,1,-1400.0,1031452,6.0,22759.0,2128.0 +1163222,1163222,1163238,1,24.0,4.0,1.0,0.0,1,29400.0,1054606,6.0,22760.0,2128.0 +1163223,1163223,1163239,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22759.0,2128.0 +1163224,1163224,1163240,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22760.0,2128.0 +1163225,1163225,1163241,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22760.0,2128.0 +1163226,1163226,1163242,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22760.0,2128.0 +1163227,1163227,1163243,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22760.0,2128.0 +1163228,1163228,1163244,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22759.0,2128.0 +1163229,1163229,1163245,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22761.0,2128.0 +1163230,1163230,1163246,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22763.0,2129.0 +1163231,1163231,1163247,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22760.0,2128.0 +1163232,1163232,1163248,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22760.0,2128.0 +1163233,1163233,1163249,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22759.0,2128.0 +1163234,1163234,1163250,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22761.0,2128.0 +1163235,1163235,1163251,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22759.0,2128.0 +1163236,1163236,1163252,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22759.0,2128.0 +1163237,1163237,1163253,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22761.0,2128.0 +1163238,1163238,1163254,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22760.0,2128.0 +1163239,1163239,1163255,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22759.0,2128.0 +1163240,1163240,1163256,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22760.0,2128.0 +1163241,1163241,1163257,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22761.0,2128.0 +1163242,1163242,1163258,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22760.0,2128.0 +1163243,1163243,1163259,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22759.0,2128.0 +1163244,1163244,1163260,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22760.0,2128.0 +1163245,1163245,1163261,1,24.0,4.0,1.0,0.0,1,0.0,1080470,4.0,22759.0,2128.0 +1163246,1163246,1163262,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22760.0,2128.0 +1163247,1163247,1163263,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22759.0,2128.0 +1163248,1163248,1163264,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22760.0,2128.0 +1163249,1163249,1163265,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22761.0,2128.0 +1163250,1163250,1163266,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22761.0,2128.0 +1163251,1163251,1163267,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22761.0,2128.0 +1163252,1163252,1163268,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22760.0,2128.0 +1163253,1163253,1163269,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22760.0,2128.0 +1163254,1163254,1163270,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22760.0,2128.0 +1163255,1163255,1163271,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22760.0,2128.0 +1163256,1163256,1163272,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22761.0,2128.0 +1163257,1163257,1163273,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22760.0,2128.0 +1163258,1163258,1163274,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22761.0,2128.0 +1163259,1163259,1163275,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22760.0,2128.0 +1163260,1163260,1163276,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22759.0,2128.0 +1163261,1163261,1163277,1,22.0,3.0,1.0,0.0,1,460.0,1010145,4.0,22760.0,2128.0 +1163262,1163262,1163278,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22760.0,2128.0 +1163263,1163263,1163279,4,23.0,1.0,4.0,0.0,1,149500.0,1080470,5.0,22760.0,2128.0 +1163264,1163264,1163280,1,23.0,1.0,1.0,0.0,1,64000.0,1080470,4.0,22761.0,2128.0 +1163265,1163265,1163281,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22760.0,2128.0 +1163266,1163266,1163282,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22760.0,2128.0 +1163267,1163267,1163283,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22761.0,2128.0 +1163268,1163268,1163284,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22761.0,2128.0 +1163269,1163269,1163285,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22759.0,2128.0 +1163270,1163270,1163286,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22760.0,2128.0 +1163271,1163271,1163287,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22760.0,2128.0 +1163272,1163272,1163288,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1163273,1163273,1163289,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22759.0,2128.0 +1163274,1163274,1163290,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22763.0,2129.0 +1163275,1163275,1163291,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22759.0,2128.0 +1163276,1163276,1163292,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22760.0,2128.0 +1163277,1163277,1163293,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22761.0,2128.0 +1163278,1163278,1163294,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22761.0,2128.0 +1163279,1163279,1163295,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22759.0,2128.0 +1163280,1163280,1163296,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22761.0,2128.0 +1163281,1163281,1163297,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22759.0,2128.0 +1163282,1163282,1163298,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22759.0,2128.0 +1163283,1163283,1163299,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22760.0,2128.0 +1163284,1163284,1163300,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22759.0,2128.0 +1163285,1163285,1163301,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22759.0,2128.0 +1163286,1163286,1163302,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22759.0,2128.0 +1163287,1163287,1163303,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22760.0,2128.0 +1163288,1163288,1163304,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22759.0,2128.0 +1163289,1163289,1163305,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22761.0,2128.0 +1163290,1163290,1163306,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22760.0,2128.0 +1163291,1163291,1163307,2,24.0,1.0,1.0,0.0,1,60000.0,1031452,5.0,22759.0,2128.0 +1163292,1163292,1163308,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22760.0,2128.0 +1163293,1163293,1163309,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22760.0,2128.0 +1163294,1163294,1163310,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22759.0,2128.0 +1163295,1163295,1163311,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22763.0,2129.0 +1163296,1163296,1163312,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22761.0,2128.0 +1163297,1163297,1163313,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22760.0,2128.0 +1163298,1163298,1163314,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22761.0,2128.0 +1163299,1163299,1163315,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22760.0,2128.0 +1163300,1163300,1163316,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22760.0,2128.0 +1163301,1163301,1163317,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22760.0,2128.0 +1163302,1163302,1163318,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22759.0,2128.0 +1163303,1163303,1163319,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22759.0,2128.0 +1163304,1163304,1163320,1,24.0,1.0,1.0,0.0,1,50000.0,1031452,6.0,22759.0,2128.0 +1163305,1163305,1163321,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163306,1163306,1163322,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22761.0,2128.0 +1163307,1163307,1163323,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22760.0,2128.0 +1163308,1163308,1163324,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22760.0,2128.0 +1163309,1163309,1163325,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22763.0,2129.0 +1163310,1163310,1163326,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22758.0,2127.0 +1163311,1163311,1163327,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22760.0,2128.0 +1163312,1163312,1163328,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163313,1163313,1163329,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22760.0,2128.0 +1163314,1163314,1163330,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163315,1163315,1163331,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22761.0,2128.0 +1163316,1163316,1163332,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163317,1163317,1163333,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22761.0,2128.0 +1163318,1163318,1163334,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22761.0,2128.0 +1163319,1163319,1163335,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22760.0,2128.0 +1163320,1163320,1163336,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163321,1163321,1163337,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22761.0,2128.0 +1163322,1163322,1163338,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22760.0,2128.0 +1163323,1163323,1163339,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163324,1163324,1163340,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22760.0,2128.0 +1163325,1163325,1163341,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22760.0,2128.0 +1163326,1163326,1163342,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163327,1163327,1163343,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22760.0,2128.0 +1163328,1163328,1163344,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163329,1163329,1163345,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163330,1163330,1163346,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163331,1163331,1163347,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22760.0,2128.0 +1163332,1163332,1163348,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22761.0,2128.0 +1163333,1163333,1163349,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22761.0,2128.0 +1163334,1163334,1163350,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163335,1163335,1163351,1,22.0,1.0,1.0,0.0,1,37500.0,1054606,4.0,22759.0,2128.0 +1163336,1163336,1163352,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22761.0,2128.0 +1163337,1163337,1163353,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22760.0,2128.0 +1163338,1163338,1163354,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22760.0,2128.0 +1163339,1163339,1163355,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22759.0,2128.0 +1163340,1163340,1163356,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22761.0,2128.0 +1163341,1163341,1163357,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22760.0,2128.0 +1163342,1163342,1163358,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22759.0,2128.0 +1163343,1163343,1163359,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22761.0,2128.0 +1163344,1163344,1163360,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22760.0,2128.0 +1163345,1163345,1163361,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22759.0,2128.0 +1163346,1163346,1163362,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22759.0,2128.0 +1163347,1163347,1163363,1,23.0,1.0,1.0,0.0,1,28000.0,1080470,4.0,22759.0,2128.0 +1163348,1163348,1163364,1,20.0,1.0,1.0,0.0,1,4500.0,1031452,4.0,22760.0,2128.0 +1163349,1163349,1163365,1,20.0,1.0,1.0,0.0,1,8000.0,1054606,4.0,22760.0,2128.0 +1163350,1163350,1163366,1,24.0,1.0,1.0,0.0,1,4000.0,1073449,4.0,22760.0,2128.0 +1163351,1163351,1163367,1,24.0,1.0,1.0,0.0,1,23000.0,1054606,4.0,22759.0,2128.0 +1163352,1163352,1163368,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22759.0,2128.0 +1163353,1163353,1163369,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22759.0,2128.0 +1163354,1163354,1163370,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22760.0,2128.0 +1163355,1163355,1163371,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22760.0,2128.0 +1163356,1163356,1163372,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22760.0,2128.0 +1163357,1163357,1163373,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22760.0,2128.0 +1163358,1163358,1163374,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22760.0,2128.0 +1163359,1163359,1163375,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22759.0,2128.0 +1163360,1163360,1163376,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22759.0,2128.0 +1163361,1163361,1163377,1,23.0,1.0,1.0,0.0,1,3500.0,1054606,6.0,22759.0,2128.0 +1914044,1914044,1935434,1,17.0,1.0,-9.0,1.0,3,9800.0,1035838,0.0,22808.0,2147.0 +1914045,1914045,1935435,1,17.0,1.0,-9.0,1.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1914046,1914046,1935436,1,17.0,1.0,-9.0,1.0,3,9800.0,1035838,0.0,22808.0,2147.0 +1914047,1914047,1935437,1,17.0,1.0,-9.0,1.0,3,1000.0,1061242,0.0,22808.0,2147.0 +1914048,1914048,1935438,1,17.0,1.0,-9.0,1.0,3,12830.0,1013097,0.0,22814.0,2150.0 +1914049,1914049,1935439,1,17.0,1.0,-9.0,1.0,3,1000.0,1061242,0.0,22808.0,2147.0 +1914053,1914053,1935443,1,17.0,1.0,-9.0,1.0,3,7800.0,1070673,0.0,22808.0,2147.0 +1914056,1914056,1935446,1,17.0,1.0,-9.0,1.0,3,1000.0,1061242,0.0,22808.0,2147.0 +1914059,1914059,1935449,1,17.0,1.0,-9.0,1.0,3,15100.0,1054346,0.0,22808.0,2147.0 +1914062,1914062,1935452,1,17.0,1.0,-9.0,1.0,3,9800.0,1035838,0.0,22814.0,2150.0 +1914064,1914064,1935454,1,17.0,1.0,-9.0,1.0,3,25000.0,1061242,0.0,22808.0,2147.0 +1914066,1914066,1935456,1,17.0,1.0,-9.0,1.0,3,7800.0,1070673,0.0,22808.0,2147.0 +1914072,1914072,1935462,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1914076,1914076,1935466,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22808.0,2147.0 +1914077,1914077,1935467,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22806.0,2146.0 +1914081,1914081,1935471,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1914082,1914082,1935472,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22808.0,2147.0 +1914087,1914087,1935477,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22806.0,2146.0 +1914090,1914090,1935480,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1914092,1914092,1935482,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1914096,1914096,1935486,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22810.0,2148.0 +1914102,1914102,1935492,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22806.0,2146.0 +1914103,1914103,1935493,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22765.0,2130.0 +1914106,1914106,1935496,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22806.0,2146.0 +1914107,1914107,1935497,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22758.0,2127.0 +1914108,1914108,1935498,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1914113,1914113,1935503,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22760.0,2128.0 +1914119,1914119,1935509,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22806.0,2146.0 +1914129,1914129,1935519,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22808.0,2147.0 +1914133,1914133,1935523,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22814.0,2150.0 +1914136,1914136,1935526,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1914139,1914139,1935529,1,17.0,1.0,-9.0,1.0,3,2000.0,1035838,0.0,22765.0,2130.0 +1914145,1914145,1935535,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1914146,1914146,1935536,1,17.0,3.0,-9.0,1.0,3,30000.0,1070673,0.0,22808.0,2147.0 +1914149,1914149,1935539,1,18.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22808.0,2147.0 +1914150,1914150,1935540,1,18.0,1.0,-9.0,-9.0,3,22500.0,1013097,0.0,22808.0,2147.0 +1914158,1914158,1935548,1,18.0,1.0,-9.0,-9.0,3,8000.0,1054346,0.0,22806.0,2146.0 +1914160,1914160,1935550,1,18.0,1.0,-9.0,-9.0,3,29500.0,1013097,0.0,22806.0,2146.0 +1914172,1914172,1935562,1,18.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22808.0,2147.0 +1914175,1914175,1935565,1,18.0,1.0,-9.0,-9.0,3,5500.0,1061242,0.0,22765.0,2130.0 +1914177,1914177,1935567,1,18.0,1.0,-9.0,-9.0,3,38000.0,1054346,0.0,22815.0,2150.0 +1914180,1914180,1935570,1,18.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1914182,1914182,1935572,1,18.0,1.0,-9.0,-9.0,3,21100.0,1061242,0.0,22808.0,2147.0 +1914183,1914183,1935573,1,18.0,1.0,-9.0,-9.0,3,64130.0,1061242,0.0,22808.0,2147.0 +1914185,1914185,1935575,1,18.0,1.0,-9.0,-9.0,3,7200.0,1013097,0.0,22808.0,2147.0 +1914188,1914188,1935578,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1914189,1914189,1935579,1,18.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22808.0,2147.0 +1914192,1914192,1935582,1,18.0,1.0,-9.0,-9.0,3,600.0,1061242,0.0,22765.0,2130.0 +1914194,1914194,1935584,1,18.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22806.0,2146.0 +1914195,1914195,1935585,1,18.0,1.0,-9.0,-9.0,3,31300.0,1061242,0.0,22808.0,2147.0 +1914196,1914196,1935586,1,18.0,1.0,-9.0,-9.0,3,15800.0,1054346,0.0,22806.0,2146.0 +1914198,1914198,1935588,1,18.0,1.0,-9.0,-9.0,3,64250.0,1061242,0.0,22808.0,2147.0 +1914199,1914199,1935589,1,18.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22808.0,2147.0 +1914205,1914205,1935595,1,18.0,1.0,-9.0,-9.0,3,66000.0,1054346,0.0,22808.0,2147.0 +1914206,1914206,1935596,1,18.0,1.0,-9.0,-9.0,3,2500.0,1013097,0.0,22806.0,2146.0 +1914207,1914207,1935597,1,18.0,1.0,-9.0,-9.0,3,22000.0,1061242,0.0,22806.0,2146.0 +1914209,1914209,1935599,1,18.0,1.0,-9.0,-9.0,3,6000.0,1035838,0.0,22808.0,2147.0 +1914211,1914211,1935601,1,18.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22808.0,2147.0 +1914213,1914213,1935603,1,18.0,1.0,-9.0,-9.0,3,65000.0,1035838,0.0,22806.0,2146.0 +1914222,1914222,1935612,1,18.0,1.0,-9.0,-9.0,3,7000.0,1035838,0.0,22765.0,2130.0 +1914223,1914223,1935613,1,18.0,1.0,-9.0,-9.0,3,43000.0,1054346,0.0,22808.0,2147.0 +1914226,1914226,1935616,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22808.0,2147.0 +1914228,1914228,1935618,1,18.0,1.0,-9.0,-9.0,3,23540.0,1061242,0.0,22806.0,2146.0 +1914230,1914230,1935620,1,18.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22806.0,2146.0 +1914232,1914232,1935622,1,18.0,1.0,-9.0,-9.0,3,77900.0,1013097,0.0,22808.0,2147.0 +1914233,1914233,1935623,1,18.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22806.0,2146.0 +1914234,1914234,1935624,1,18.0,1.0,-9.0,-9.0,3,68800.0,1061242,0.0,22806.0,2146.0 +1914235,1914235,1935625,1,18.0,1.0,-9.0,-9.0,3,22380.0,1061242,0.0,22806.0,2146.0 +1914242,1914242,1935632,1,18.0,1.0,-9.0,-9.0,3,25000.0,1061242,0.0,22806.0,2146.0 +1914245,1914245,1935635,1,18.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22765.0,2130.0 +1914248,1914248,1935638,1,18.0,1.0,-9.0,-9.0,3,75500.0,1013097,0.0,22808.0,2147.0 +1914255,1914255,1935645,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22818.0,2150.0 +1914261,1914261,1935651,1,18.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1914268,1914268,1935658,1,18.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22810.0,2148.0 +1914271,1914271,1935661,1,18.0,1.0,-9.0,-9.0,3,3700.0,1070673,0.0,22808.0,2147.0 +1914273,1914273,1935663,1,18.0,1.0,-9.0,-9.0,3,32500.0,1013097,0.0,22808.0,2147.0 +1914274,1914274,1935664,1,18.0,1.0,-9.0,-9.0,3,68800.0,1061242,0.0,22810.0,2148.0 +1914276,1914276,1935666,1,18.0,1.0,-9.0,-9.0,3,52000.0,1013097,0.0,22808.0,2147.0 +1914278,1914278,1935668,1,18.0,1.0,-9.0,-9.0,3,26000.0,1070673,0.0,22810.0,2148.0 +1914282,1914282,1935672,1,18.0,1.0,-9.0,-9.0,3,26200.0,1054346,0.0,22765.0,2130.0 +1914283,1914283,1935673,1,18.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22765.0,2130.0 +1914284,1914284,1935674,1,18.0,1.0,-9.0,-9.0,3,64250.0,1061242,0.0,22815.0,2150.0 +1914286,1914286,1935676,1,18.0,1.0,-9.0,-9.0,3,2300.0,1013097,0.0,22808.0,2147.0 +1914288,1914288,1935678,1,18.0,1.0,-9.0,-9.0,3,10400.0,1035838,0.0,22808.0,2147.0 +1914292,1914292,1935682,1,18.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22806.0,2146.0 +1914295,1914295,1935685,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22808.0,2147.0 +1914296,1914296,1935686,1,18.0,1.0,-9.0,-9.0,3,72600.0,1070673,0.0,22806.0,2146.0 +1914298,1914298,1935688,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1914304,1914304,1935694,1,18.0,1.0,-9.0,-9.0,3,9500.0,1054346,0.0,22760.0,2128.0 +1914306,1914306,1935696,1,18.0,1.0,-9.0,-9.0,3,2000.0,1061242,0.0,22806.0,2146.0 +1914310,1914310,1935700,1,18.0,1.0,-9.0,-9.0,3,8500.0,1070673,0.0,22814.0,2150.0 +1914311,1914311,1935701,1,18.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22810.0,2148.0 +1914316,1914316,1935706,1,18.0,1.0,-9.0,-9.0,3,1100.0,1035838,0.0,22765.0,2130.0 +1914321,1914321,1935711,1,18.0,1.0,-9.0,-9.0,3,30020.0,1070673,0.0,22765.0,2130.0 +1914322,1914322,1935712,1,18.0,1.0,-9.0,-9.0,3,30400.0,1035838,0.0,22808.0,2147.0 +1914324,1914324,1935714,1,18.0,1.0,-9.0,-9.0,3,2500.0,1013097,0.0,22765.0,2130.0 +1914336,1914336,1935726,1,18.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1914337,1914337,1935727,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1914338,1914338,1935728,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22815.0,2150.0 +1914341,1914341,1935731,1,18.0,1.0,-9.0,-9.0,3,69100.0,1035838,0.0,22806.0,2146.0 +1914345,1914345,1935735,1,18.0,1.0,-9.0,-9.0,3,3000.0,1061242,0.0,22765.0,2130.0 +1914348,1914348,1935738,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1914349,1914349,1935739,1,18.0,1.0,-9.0,-9.0,3,26800.0,1061242,0.0,22808.0,2147.0 +1914351,1914351,1935741,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1914353,1914353,1935743,1,18.0,1.0,-9.0,-9.0,3,28600.0,1070673,0.0,22808.0,2147.0 +1914355,1914355,1935745,1,18.0,1.0,-9.0,-9.0,3,300.0,1054346,0.0,22765.0,2130.0 +1914356,1914356,1935746,1,18.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22806.0,2146.0 +1914358,1914358,1935748,1,18.0,1.0,-9.0,-9.0,3,20000.0,1061242,0.0,22806.0,2146.0 +1914361,1914361,1935751,1,18.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1914364,1914364,1935754,1,18.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22765.0,2130.0 +1914369,1914369,1935759,1,18.0,1.0,-9.0,-9.0,3,29500.0,1035838,0.0,22808.0,2147.0 +1914371,1914371,1935761,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22808.0,2147.0 +1914372,1914372,1935762,1,18.0,1.0,-9.0,-9.0,3,6900.0,1013097,0.0,22813.0,2150.0 +1914373,1914373,1935763,1,18.0,1.0,-9.0,-9.0,3,21000.0,1035838,0.0,22765.0,2130.0 +1914376,1914376,1935766,1,18.0,1.0,-9.0,-9.0,3,3401.0,1054346,0.0,22806.0,2146.0 +1914378,1914378,1935768,1,18.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22760.0,2128.0 +1914385,1914385,1935775,1,18.0,1.0,-9.0,-9.0,3,9500.0,1054346,0.0,22808.0,2147.0 +1914386,1914386,1935776,1,18.0,1.0,-9.0,-9.0,3,10000.0,1070673,0.0,22813.0,2150.0 +1914391,1914391,1935781,1,18.0,1.0,-9.0,-9.0,3,62780.0,1070673,0.0,22808.0,2147.0 +1914393,1914393,1935783,1,18.0,1.0,-9.0,-9.0,3,28300.0,1054346,0.0,22765.0,2130.0 +1914394,1914394,1935784,1,18.0,1.0,-9.0,-9.0,3,12000.0,1061242,0.0,22808.0,2147.0 +1914398,1914398,1935788,1,18.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22806.0,2146.0 +1914400,1914400,1935790,1,18.0,1.0,-9.0,-9.0,3,32500.0,1035838,0.0,22806.0,2146.0 +1914402,1914402,1935792,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22808.0,2147.0 +1914403,1914403,1935793,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22806.0,2146.0 +1914405,1914405,1935795,1,18.0,1.0,-9.0,-9.0,3,3000.0,1054346,0.0,22808.0,2147.0 +1914406,1914406,1935796,1,18.0,1.0,-9.0,-9.0,3,1600.0,1061242,0.0,22813.0,2150.0 +1914414,1914414,1935804,1,18.0,1.0,-9.0,-9.0,3,35800.0,1035838,0.0,22808.0,2147.0 +1914415,1914415,1935805,1,18.0,1.0,-9.0,-9.0,3,190.0,1054346,0.0,22808.0,2147.0 +1914417,1914417,1935807,1,18.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1914435,1914435,1935825,1,18.0,1.0,-9.0,-9.0,3,31900.0,1070673,0.0,22808.0,2147.0 +1914436,1914436,1935826,1,18.0,1.0,-9.0,-9.0,3,17000.0,1070673,0.0,22808.0,2147.0 +1914438,1914438,1935828,1,18.0,1.0,-9.0,-9.0,3,3000.0,1035838,0.0,22808.0,2147.0 +1914439,1914439,1935829,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22760.0,2128.0 +1914442,1914442,1935832,1,18.0,1.0,-9.0,-9.0,3,21100.0,1070673,0.0,22808.0,2147.0 +1914447,1914447,1935837,1,18.0,1.0,-9.0,-9.0,3,4950.0,1054346,0.0,22808.0,2147.0 +1914449,1914449,1935839,1,18.0,1.0,-9.0,-9.0,3,73000.0,1013097,0.0,22806.0,2146.0 +1914451,1914451,1935841,1,18.0,1.0,-9.0,-9.0,3,20000.0,1061242,0.0,22808.0,2147.0 +1914452,1914452,1935842,1,18.0,1.0,-9.0,-9.0,3,3600.0,1035838,0.0,22808.0,2147.0 +1914454,1914454,1935844,1,18.0,1.0,-9.0,-9.0,3,35000.0,1070673,0.0,22808.0,2147.0 +1914459,1914459,1935849,1,18.0,1.0,-9.0,-9.0,3,33500.0,1070673,0.0,22815.0,2150.0 +1914460,1914460,1935850,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22765.0,2130.0 +1914465,1914465,1935855,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1914468,1914468,1935858,1,18.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22806.0,2146.0 +1914471,1914471,1935861,1,18.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22808.0,2147.0 +1914481,1914481,1935871,1,18.0,1.0,-9.0,-9.0,3,4300.0,1061242,0.0,22808.0,2147.0 +1914484,1914484,1935874,1,18.0,1.0,-9.0,-9.0,3,2300.0,1013097,0.0,22765.0,2130.0 +1914486,1914486,1935876,1,18.0,1.0,-9.0,-9.0,3,21000.0,1013097,0.0,22808.0,2147.0 +1914487,1914487,1935877,1,18.0,1.0,-9.0,-9.0,3,7500.0,1070673,0.0,22808.0,2147.0 +1914488,1914488,1935878,1,18.0,1.0,-9.0,-9.0,3,300.0,1054346,0.0,22808.0,2147.0 +1914489,1914489,1935879,1,18.0,1.0,-9.0,-9.0,3,27500.0,1070673,0.0,22760.0,2128.0 +1914491,1914491,1935881,1,18.0,1.0,-9.0,-9.0,3,72600.0,1070673,0.0,22808.0,2147.0 +1914497,1914497,1935887,1,18.0,1.0,-9.0,-9.0,3,62000.0,1070673,0.0,22806.0,2146.0 +1914502,1914502,1935892,1,18.0,1.0,-9.0,-9.0,3,16000.0,1035838,0.0,22808.0,2147.0 +1914503,1914503,1935893,1,18.0,1.0,-9.0,-9.0,3,4500.0,1054346,0.0,22815.0,2150.0 +1914505,1914505,1935895,1,18.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22808.0,2147.0 +1914506,1914506,1935896,1,18.0,1.0,-9.0,-9.0,3,72000.0,1054346,0.0,22808.0,2147.0 +1914508,1914508,1935898,1,18.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22806.0,2146.0 +1914510,1914510,1935900,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22815.0,2150.0 +1914511,1914511,1935901,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1914512,1914512,1935902,1,18.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22814.0,2150.0 +1914513,1914513,1935903,1,18.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1914515,1914515,1935905,1,18.0,1.0,-9.0,-9.0,3,4500.0,1054346,0.0,22808.0,2147.0 +1914517,1914517,1935907,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22765.0,2130.0 +1914518,1914518,1935908,1,18.0,1.0,-9.0,-9.0,3,1900.0,1013097,0.0,22806.0,2146.0 +1914521,1914521,1935911,1,18.0,1.0,-9.0,-9.0,3,30500.0,1035838,0.0,22808.0,2147.0 +1914522,1914522,1935912,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22758.0,2127.0 +1914524,1914524,1935914,1,18.0,1.0,-9.0,-9.0,3,19000.0,1061242,0.0,22808.0,2147.0 +1914525,1914525,1935915,1,18.0,1.0,-9.0,-9.0,3,25200.0,1061242,0.0,22808.0,2147.0 +1914530,1914530,1935920,1,18.0,1.0,-9.0,-9.0,3,25000.0,1061242,0.0,22758.0,2127.0 +1914532,1914532,1935922,1,18.0,1.0,-9.0,-9.0,3,30800.0,1070673,0.0,22758.0,2127.0 +1914535,1914535,1935925,1,18.0,1.0,-9.0,-9.0,3,10820.0,1061242,0.0,22806.0,2146.0 +1914539,1914539,1935929,1,18.0,1.0,-9.0,-9.0,3,21100.0,1061242,0.0,22808.0,2147.0 +1914541,1914541,1935931,1,18.0,1.0,-9.0,-9.0,3,28800.0,1035838,0.0,22808.0,2147.0 +1914542,1914542,1935932,1,18.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1914547,1914547,1935937,1,18.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22808.0,2147.0 +1914552,1914552,1935942,1,18.0,1.0,-9.0,-9.0,3,15850.0,1013097,0.0,22808.0,2147.0 +1914556,1914556,1935946,1,18.0,1.0,-9.0,-9.0,3,13000.0,1035838,0.0,22758.0,2127.0 +1914557,1914557,1935947,1,18.0,1.0,-9.0,-9.0,3,190.0,1054346,0.0,22810.0,2148.0 +1914560,1914560,1935950,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1914563,1914563,1935953,1,18.0,1.0,-9.0,-9.0,3,31300.0,1061242,0.0,22808.0,2147.0 +1914566,1914566,1935956,1,18.0,1.0,-9.0,-9.0,3,1000.0,1013097,0.0,22808.0,2147.0 +1914571,1914571,1935961,1,18.0,1.0,-9.0,-9.0,3,26200.0,1054346,0.0,22808.0,2147.0 +1914574,1914574,1935964,1,18.0,1.0,-9.0,-9.0,3,38000.0,1013097,0.0,22765.0,2130.0 +1914576,1914576,1935966,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22765.0,2130.0 +1914577,1914577,1935967,1,18.0,1.0,-9.0,-9.0,3,35700.0,1054346,0.0,22808.0,2147.0 +1914578,1914578,1935968,1,18.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22808.0,2147.0 +1914581,1914581,1935971,1,18.0,1.0,-9.0,-9.0,3,25200.0,1013097,0.0,22808.0,2147.0 +1914584,1914584,1935974,1,18.0,1.0,-9.0,-9.0,3,33500.0,1070673,0.0,22808.0,2147.0 +1914587,1914587,1935977,1,18.0,1.0,-9.0,-9.0,3,16000.0,1035838,0.0,22808.0,2147.0 +1914588,1914588,1935978,1,18.0,1.0,-9.0,-9.0,3,14300.0,1054346,0.0,22806.0,2146.0 +1914589,1914589,1935979,1,18.0,1.0,-9.0,-9.0,3,1000.0,1054346,0.0,22808.0,2147.0 +1914594,1914594,1935984,1,18.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22808.0,2147.0 +1914595,1914595,1935985,1,18.0,1.0,-9.0,-9.0,3,18500.0,1070673,0.0,22808.0,2147.0 +1914601,1914601,1935991,1,18.0,1.0,-9.0,-9.0,3,28500.0,1013097,0.0,22808.0,2147.0 +1914602,1914602,1935992,1,18.0,1.0,-9.0,-9.0,3,13150.0,1061242,0.0,22765.0,2130.0 +1914605,1914605,1935995,1,18.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22808.0,2147.0 +1914622,1914622,1936012,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1914623,1914623,1936013,1,18.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1914624,1914624,1936014,1,18.0,1.0,-9.0,-9.0,3,37500.0,1013097,0.0,22808.0,2147.0 +1914630,1914630,1936020,1,18.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22808.0,2147.0 +1914634,1914634,1936024,1,18.0,1.0,-9.0,-9.0,3,6030.0,1070673,0.0,22758.0,2127.0 +1914640,1914640,1936030,1,18.0,1.0,-9.0,-9.0,3,17500.0,1061242,0.0,22808.0,2147.0 +1914641,1914641,1936031,1,18.0,1.0,-9.0,-9.0,3,2200.0,1061242,0.0,22808.0,2147.0 +1914652,1914652,1936042,1,18.0,1.0,-9.0,-9.0,3,2100.0,1054346,0.0,22806.0,2146.0 +1914654,1914654,1936044,1,18.0,1.0,-9.0,-9.0,3,3000.0,1013097,0.0,22765.0,2130.0 +1914668,1914668,1936058,1,18.0,1.0,-9.0,-9.0,3,26500.0,1070673,0.0,22806.0,2146.0 +1914670,1914670,1936060,1,18.0,1.0,-9.0,-9.0,3,21000.0,1035838,0.0,22808.0,2147.0 +1914671,1914671,1936061,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22765.0,2130.0 +1914672,1914672,1936062,1,18.0,1.0,-9.0,-9.0,3,41200.0,1035838,0.0,22808.0,2147.0 +1914673,1914673,1936063,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1914676,1914676,1936066,1,18.0,1.0,-9.0,-9.0,3,65300.0,1070673,0.0,22808.0,2147.0 +1914677,1914677,1936067,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22806.0,2146.0 +1914678,1914678,1936068,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1914680,1914680,1936070,1,18.0,1.0,-9.0,-9.0,3,1000.0,1035838,0.0,22758.0,2127.0 +1914685,1914685,1936075,1,18.0,1.0,-9.0,-9.0,3,66500.0,1035838,0.0,22808.0,2147.0 +1914686,1914686,1936076,1,18.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22806.0,2146.0 +1914687,1914687,1936077,1,18.0,1.0,-9.0,-9.0,3,42500.0,1035838,0.0,22806.0,2146.0 +1914688,1914688,1936078,1,18.0,1.0,-9.0,-9.0,3,22500.0,1054346,0.0,22808.0,2147.0 +1914692,1914692,1936082,1,18.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22808.0,2147.0 +1914694,1914694,1936084,1,18.0,1.0,-9.0,-9.0,3,43500.0,1035838,0.0,22765.0,2130.0 +1914701,1914701,1936091,1,18.0,1.0,-9.0,-9.0,3,32300.0,1070673,0.0,22808.0,2147.0 +1914702,1914702,1936092,1,18.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1914703,1914703,1936093,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1914712,1914712,1936102,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1914713,1914713,1936103,1,18.0,1.0,-9.0,-9.0,3,26500.0,1070673,0.0,22765.0,2130.0 +1914714,1914714,1936104,1,18.0,1.0,-9.0,-9.0,3,8500.0,1013097,0.0,22808.0,2147.0 +1914716,1914716,1936106,1,18.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22808.0,2147.0 +1914719,1914719,1936109,1,18.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22808.0,2147.0 +1914720,1914720,1936110,1,18.0,1.0,-9.0,-9.0,3,76000.0,1061242,0.0,22808.0,2147.0 +1914721,1914721,1936111,1,18.0,1.0,-9.0,-9.0,3,64500.0,1035838,0.0,22810.0,2148.0 +1914734,1914734,1936124,1,18.0,1.0,-9.0,-9.0,3,22800.0,1013097,0.0,22808.0,2147.0 +1914737,1914737,1936127,1,18.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22758.0,2127.0 +1914739,1914739,1936129,1,18.0,1.0,-9.0,-9.0,3,3400.0,1054346,0.0,22808.0,2147.0 +1914741,1914741,1936131,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22814.0,2150.0 +1914743,1914743,1936133,1,18.0,1.0,-9.0,-9.0,3,15500.0,1070673,0.0,22765.0,2130.0 +1914748,1914748,1936138,1,18.0,1.0,-9.0,-9.0,3,21000.0,1035838,0.0,22808.0,2147.0 +1914761,1914761,1936151,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22818.0,2150.0 +1914766,1914766,1936156,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1914767,1914767,1936157,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22814.0,2150.0 +1914771,1914771,1936161,1,18.0,1.0,-9.0,-9.0,3,52000.0,1013097,0.0,22808.0,2147.0 +1914774,1914774,1936164,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22758.0,2127.0 +1914775,1914775,1936165,1,18.0,1.0,-9.0,-9.0,3,28100.0,1061242,0.0,22808.0,2147.0 +1914781,1914781,1936171,1,18.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1914783,1914783,1936173,1,18.0,1.0,-9.0,-9.0,3,65300.0,1070673,0.0,22765.0,2130.0 +1914787,1914787,1936177,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1914792,1914792,1936182,1,18.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22814.0,2150.0 +1914793,1914793,1936183,1,18.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22808.0,2147.0 +1914794,1914794,1936184,1,18.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22806.0,2146.0 +1914796,1914796,1936186,1,18.0,1.0,-9.0,-9.0,3,26200.0,1054346,0.0,22808.0,2147.0 +1914798,1914798,1936188,1,18.0,1.0,-9.0,-9.0,3,66500.0,1035838,0.0,22808.0,2147.0 +1914800,1914800,1936190,1,18.0,1.0,-9.0,-9.0,3,670.0,1035838,0.0,22806.0,2146.0 +1914803,1914803,1936193,1,18.0,1.0,-9.0,-9.0,3,16700.0,1013097,0.0,22808.0,2147.0 +1914806,1914806,1936196,1,18.0,1.0,-9.0,-9.0,3,12000.0,1061242,0.0,22808.0,2147.0 +1914807,1914807,1936197,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1914810,1914810,1936200,1,18.0,1.0,-9.0,-9.0,3,31900.0,1070673,0.0,22808.0,2147.0 +1914811,1914811,1936201,1,18.0,1.0,-9.0,-9.0,3,28800.0,1035838,0.0,22765.0,2130.0 +1914812,1914812,1936202,1,18.0,1.0,-9.0,-9.0,3,27150.0,1013097,0.0,22808.0,2147.0 +1914815,1914815,1936205,1,18.0,1.0,-9.0,-9.0,3,530.0,1035838,0.0,22808.0,2147.0 +1914816,1914816,1936206,1,18.0,1.0,-9.0,-9.0,3,43000.0,1054346,0.0,22808.0,2147.0 +1914820,1914820,1936210,1,18.0,1.0,-9.0,-9.0,3,8800.0,1035838,0.0,22815.0,2150.0 +1914821,1914821,1936211,1,18.0,1.0,-9.0,-9.0,3,28500.0,1013097,0.0,22765.0,2130.0 +1914826,1914826,1936216,1,18.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1914827,1914827,1936217,1,18.0,1.0,-9.0,-9.0,3,15000.0,1054346,0.0,22808.0,2147.0 +1914829,1914829,1936219,1,18.0,1.0,-9.0,-9.0,3,7500.0,1035838,0.0,22758.0,2127.0 +1914831,1914831,1936221,1,18.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22815.0,2150.0 +1914839,1914839,1936229,1,18.0,1.0,-9.0,-9.0,3,10000.0,1013097,0.0,22808.0,2147.0 +1914841,1914841,1936231,1,18.0,1.0,-9.0,-9.0,3,22000.0,1061242,0.0,22808.0,2147.0 +1914846,1914846,1936236,1,18.0,1.0,-9.0,-9.0,3,65010.0,1054346,0.0,22808.0,2147.0 +1914849,1914849,1936239,1,18.0,1.0,-9.0,-9.0,3,29500.0,1035838,0.0,22808.0,2147.0 +1914856,1914856,1936246,1,18.0,1.0,-9.0,-9.0,3,5300.0,1013097,0.0,22808.0,2147.0 +1914862,1914862,1936252,1,18.0,1.0,-9.0,-9.0,3,27150.0,1013097,0.0,22806.0,2146.0 +1914867,1914867,1936257,1,18.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22765.0,2130.0 +1914874,1914874,1936264,1,18.0,1.0,-9.0,-9.0,3,7500.0,1070673,0.0,22765.0,2130.0 +1914875,1914875,1936265,1,18.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22808.0,2147.0 +1914876,1914876,1936266,1,18.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1914880,1914880,1936270,1,18.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1914882,1914882,1936272,1,18.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1914884,1914884,1936274,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1914885,1914885,1936275,1,18.0,1.0,-9.0,-9.0,3,55000.0,1013097,0.0,22758.0,2127.0 +1914888,1914888,1936278,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1914891,1914891,1936281,1,18.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22808.0,2147.0 +1914893,1914893,1936283,1,18.0,1.0,-9.0,-9.0,3,26500.0,1061242,0.0,22813.0,2150.0 +1914895,1914895,1936285,1,18.0,1.0,-9.0,-9.0,3,2500.0,1013097,0.0,22808.0,2147.0 +1914900,1914900,1936290,1,18.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22808.0,2147.0 +1914901,1914901,1936291,1,18.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1914905,1914905,1936295,1,18.0,1.0,-9.0,-9.0,3,28000.0,1035838,0.0,22808.0,2147.0 +1914912,1914912,1936302,1,18.0,1.0,-9.0,-9.0,3,25500.0,1061242,0.0,22808.0,2147.0 +1914913,1914913,1936303,1,18.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22760.0,2128.0 +1914917,1914917,1936307,1,18.0,1.0,-9.0,-9.0,3,5500.0,1035838,0.0,22808.0,2147.0 +1914920,1914920,1936310,1,18.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22814.0,2150.0 +1914921,1914921,1936311,1,18.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22808.0,2147.0 +1914922,1914922,1936312,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22808.0,2147.0 +1914927,1914927,1936317,1,18.0,1.0,-9.0,-9.0,3,17000.0,1054346,0.0,22765.0,2130.0 +1914929,1914929,1936319,1,18.0,1.0,-9.0,-9.0,3,5800.0,1013097,0.0,22806.0,2146.0 +1914934,1914934,1936324,1,18.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22806.0,2146.0 +1914936,1914936,1936326,1,18.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22808.0,2147.0 +1914941,1914941,1936331,1,18.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22814.0,2150.0 +1914942,1914942,1936332,1,18.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1914945,1914945,1936335,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1914946,1914946,1936336,1,18.0,1.0,-9.0,-9.0,3,67200.0,1054346,0.0,22806.0,2146.0 +1914952,1914952,1936342,1,18.0,1.0,-9.0,-9.0,3,3000.0,1013097,0.0,22808.0,2147.0 +1914954,1914954,1936344,1,18.0,1.0,-9.0,-9.0,3,46000.0,1061242,0.0,22806.0,2146.0 +1914958,1914958,1936348,1,18.0,1.0,-9.0,-9.0,3,26500.0,1054346,0.0,22765.0,2130.0 +1914959,1914959,1936349,1,18.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22806.0,2146.0 +1914961,1914961,1936351,1,18.0,1.0,-9.0,-9.0,3,7000.0,1054346,0.0,22808.0,2147.0 +1914964,1914964,1936354,1,18.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22810.0,2148.0 +1914966,1914966,1936356,1,18.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22806.0,2146.0 +1914967,1914967,1936357,1,18.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22808.0,2147.0 +1914969,1914969,1936359,1,18.0,1.0,-9.0,-9.0,3,6000.0,1061242,0.0,22808.0,2147.0 +1914973,1914973,1936363,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22806.0,2146.0 +1914974,1914974,1936364,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1914976,1914976,1936366,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22815.0,2150.0 +1914978,1914978,1936368,1,18.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22806.0,2146.0 +1914988,1914988,1936378,1,18.0,1.0,-9.0,-9.0,3,12500.0,1013097,0.0,22806.0,2146.0 +1914990,1914990,1936380,1,18.0,1.0,-9.0,-9.0,3,29500.0,1035838,0.0,22808.0,2147.0 +1914991,1914991,1936381,1,18.0,1.0,-9.0,-9.0,3,10200.0,1061242,0.0,22765.0,2130.0 +1914993,1914993,1936383,1,18.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1914996,1914996,1936386,1,18.0,1.0,-9.0,-9.0,3,66300.0,1061242,0.0,22808.0,2147.0 +1914997,1914997,1936387,1,18.0,1.0,-9.0,-9.0,3,32500.0,1013097,0.0,22806.0,2146.0 +1915001,1915001,1936391,1,18.0,1.0,-9.0,-9.0,3,30020.0,1070673,0.0,22808.0,2147.0 +1915006,1915006,1936396,1,18.0,1.0,-9.0,-9.0,3,3700.0,1070673,0.0,22808.0,2147.0 +1915009,1915009,1936399,1,18.0,1.0,-9.0,-9.0,3,2600.0,1035838,0.0,22813.0,2150.0 +1915010,1915010,1936400,1,18.0,1.0,-9.0,-9.0,3,34700.0,1061242,0.0,22806.0,2146.0 +1915012,1915012,1936402,1,18.0,1.0,-9.0,-9.0,3,3400.0,1054346,0.0,22808.0,2147.0 +1915013,1915013,1936403,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22808.0,2147.0 +1915014,1915014,1936404,1,18.0,1.0,-9.0,-9.0,3,3000.0,1061242,0.0,22806.0,2146.0 +1915015,1915015,1936405,1,18.0,1.0,-9.0,-9.0,3,3000.0,1054346,0.0,22765.0,2130.0 +1915016,1915016,1936406,1,18.0,1.0,-9.0,-9.0,3,24500.0,1061242,0.0,22808.0,2147.0 +1915017,1915017,1936407,1,18.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22808.0,2147.0 +1915019,1915019,1936409,1,18.0,1.0,-9.0,-9.0,3,36800.0,1035838,0.0,22806.0,2146.0 +1915020,1915020,1936410,1,18.0,1.0,-9.0,-9.0,3,36800.0,1035838,0.0,22808.0,2147.0 +1915021,1915021,1936411,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22806.0,2146.0 +1915022,1915022,1936412,1,18.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22765.0,2130.0 +1915026,1915026,1936416,1,18.0,1.0,-9.0,-9.0,3,29200.0,1035838,0.0,22808.0,2147.0 +1915027,1915027,1936417,1,18.0,1.0,-9.0,-9.0,3,4300.0,1061242,0.0,22806.0,2146.0 +1915033,1915033,1936423,1,18.0,1.0,-9.0,-9.0,3,21100.0,1061242,0.0,22808.0,2147.0 +1915034,1915034,1936424,1,18.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1915037,1915037,1936427,1,18.0,1.0,-9.0,-9.0,3,8800.0,1035838,0.0,22808.0,2147.0 +1915038,1915038,1936428,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1915045,1915045,1936435,1,18.0,1.0,-9.0,-9.0,3,66000.0,1070673,0.0,22808.0,2147.0 +1915057,1915057,1936447,1,18.0,1.0,-9.0,-9.0,3,27600.0,1061242,0.0,22808.0,2147.0 +1915060,1915060,1936450,1,18.0,1.0,-9.0,-9.0,3,65000.0,1070673,0.0,22765.0,2130.0 +1915063,1915063,1936453,1,18.0,1.0,-9.0,-9.0,3,31500.0,1054346,0.0,22808.0,2147.0 +1915065,1915065,1936455,1,18.0,1.0,-9.0,-9.0,3,2200.0,1061242,0.0,22765.0,2130.0 +1915067,1915067,1936457,1,18.0,1.0,-9.0,-9.0,3,21000.0,1013097,0.0,22808.0,2147.0 +1915069,1915069,1936459,1,18.0,1.0,-9.0,-9.0,3,65300.0,1070673,0.0,22760.0,2128.0 +1915071,1915071,1936461,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22765.0,2130.0 +1915076,1915076,1936466,1,18.0,1.0,-9.0,-9.0,3,22000.0,1061242,0.0,22808.0,2147.0 +1915081,1915081,1936471,1,18.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22814.0,2150.0 +1915082,1915082,1936472,1,18.0,1.0,-9.0,-9.0,3,30000.0,1054346,0.0,22806.0,2146.0 +1915085,1915085,1936475,1,18.0,1.0,-9.0,-9.0,3,16000.0,1013097,0.0,22808.0,2147.0 +1915088,1915088,1936478,1,18.0,1.0,-9.0,-9.0,3,28001.0,1070673,0.0,22810.0,2148.0 +1915090,1915090,1936480,1,18.0,1.0,-9.0,-9.0,3,29500.0,1054346,0.0,22808.0,2147.0 +1915092,1915092,1936482,1,18.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1915093,1915093,1936483,1,18.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22808.0,2147.0 +1915095,1915095,1936485,1,18.0,1.0,-9.0,-9.0,3,4300.0,1035838,0.0,22808.0,2147.0 +1915103,1915103,1936493,1,18.0,1.0,-9.0,-9.0,3,7000.0,1054346,0.0,22808.0,2147.0 +1915107,1915107,1936497,1,18.0,1.0,-9.0,-9.0,3,62200.0,1070673,0.0,22808.0,2147.0 +1915114,1915114,1936504,1,18.0,1.0,-9.0,-9.0,3,15460.0,1013097,0.0,22808.0,2147.0 +1915116,1915116,1936506,1,18.0,1.0,-9.0,-9.0,3,15500.0,1061242,0.0,22806.0,2146.0 +1915120,1915120,1936510,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1915121,1915121,1936511,1,18.0,1.0,-9.0,-9.0,3,30000.0,1054346,0.0,22810.0,2148.0 +1915122,1915122,1936512,1,18.0,1.0,-9.0,-9.0,3,4950.0,1054346,0.0,22808.0,2147.0 +1915128,1915128,1936518,1,18.0,1.0,-9.0,-9.0,3,29000.0,1061242,0.0,22808.0,2147.0 +1915130,1915130,1936520,1,18.0,1.0,-9.0,-9.0,3,31000.0,1054346,0.0,22808.0,2147.0 +1915132,1915132,1936522,1,18.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22765.0,2130.0 +1915134,1915134,1936524,1,18.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22765.0,2130.0 +1915138,1915138,1936528,1,18.0,1.0,-9.0,-9.0,3,7500.0,1035838,0.0,22765.0,2130.0 +1915139,1915139,1936529,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22808.0,2147.0 +1915140,1915140,1936530,1,18.0,1.0,-9.0,-9.0,3,26000.0,1054346,0.0,22765.0,2130.0 +1915141,1915141,1936531,1,18.0,1.0,-9.0,-9.0,3,1000.0,1070673,0.0,22765.0,2130.0 +1915143,1915143,1936533,1,18.0,1.0,-9.0,-9.0,3,41200.0,1035838,0.0,22761.0,2128.0 +1915148,1915148,1936538,1,18.0,1.0,-9.0,-9.0,3,2100.0,1054346,0.0,22808.0,2147.0 +1915154,1915154,1936544,1,18.0,1.0,-9.0,-9.0,3,250.0,1070673,0.0,22808.0,2147.0 +1915156,1915156,1936546,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22808.0,2147.0 +1915158,1915158,1936548,1,18.0,1.0,-9.0,-9.0,3,15500.0,1061242,0.0,22808.0,2147.0 +1915161,1915161,1936551,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1915164,1915164,1936554,1,18.0,1.0,-9.0,-9.0,3,15800.0,1054346,0.0,22808.0,2147.0 +1915167,1915167,1936557,1,18.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1915168,1915168,1936558,1,18.0,1.0,-9.0,-9.0,3,33500.0,1070673,0.0,22806.0,2146.0 +1915169,1915169,1936559,1,18.0,1.0,-9.0,-9.0,3,15000.0,1054346,0.0,22808.0,2147.0 +1915174,1915174,1936564,1,18.0,1.0,-9.0,-9.0,3,27000.0,1061242,0.0,22806.0,2146.0 +1915175,1915175,1936565,1,18.0,1.0,-9.0,-9.0,3,3200.0,1054346,0.0,22808.0,2147.0 +1915185,1915185,1936575,1,18.0,1.0,-9.0,-9.0,3,14300.0,1013097,0.0,22813.0,2150.0 +1915186,1915186,1936576,1,18.0,1.0,-9.0,-9.0,3,4000.0,1013097,0.0,22808.0,2147.0 +1915188,1915188,1936578,1,18.0,1.0,-9.0,-9.0,3,51000.0,1061242,0.0,22815.0,2150.0 +1915192,1915192,1936582,1,18.0,1.0,-9.0,-9.0,3,65300.0,1054346,0.0,22808.0,2147.0 +1915193,1915193,1936583,1,18.0,1.0,-9.0,-9.0,3,8800.0,1013097,0.0,22808.0,2147.0 +1915194,1915194,1936584,1,18.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22808.0,2147.0 +1915197,1915197,1936587,1,18.0,1.0,-9.0,-9.0,3,27000.0,1054346,0.0,22808.0,2147.0 +1915212,1915212,1936602,1,18.0,1.0,-9.0,-9.0,3,2100.0,1054346,0.0,22808.0,2147.0 +1915214,1915214,1936604,1,18.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22808.0,2147.0 +1915219,1915219,1936609,1,18.0,1.0,-9.0,-9.0,3,31500.0,1054346,0.0,22806.0,2146.0 +1915221,1915221,1936611,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22810.0,2148.0 +1915225,1915225,1936615,1,18.0,1.0,-9.0,-9.0,3,23301.0,1070673,0.0,22814.0,2150.0 +1915226,1915226,1936616,1,18.0,1.0,-9.0,-9.0,3,62200.0,1070673,0.0,22765.0,2130.0 +1915227,1915227,1936617,1,18.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22814.0,2150.0 +1915230,1915230,1936620,1,18.0,1.0,-9.0,-9.0,3,12000.0,1013097,0.0,22808.0,2147.0 +1915233,1915233,1936623,1,18.0,1.0,-9.0,-9.0,3,31500.0,1054346,0.0,22815.0,2150.0 +1915238,1915238,1936628,1,18.0,1.0,-9.0,-9.0,3,16300.0,1035838,0.0,22808.0,2147.0 +1915239,1915239,1936629,1,18.0,1.0,-9.0,-9.0,3,64400.0,1035838,0.0,22806.0,2146.0 +1915240,1915240,1936630,1,18.0,1.0,-9.0,-9.0,3,32200.0,1070673,0.0,22808.0,2147.0 +1915244,1915244,1936634,1,18.0,1.0,-9.0,-9.0,3,91000.0,1013097,0.0,22806.0,2146.0 +1915245,1915245,1936635,1,18.0,1.0,-9.0,-9.0,3,250.0,1070673,0.0,22765.0,2130.0 +1915249,1915249,1936639,1,18.0,1.0,-9.0,-9.0,3,23500.0,1070673,0.0,22815.0,2150.0 +1915250,1915250,1936640,1,18.0,1.0,-9.0,-9.0,3,29000.0,1061242,0.0,22808.0,2147.0 +1915253,1915253,1936643,1,18.0,1.0,-9.0,-9.0,3,4300.0,1070673,0.0,22806.0,2146.0 +1915254,1915254,1936644,1,18.0,1.0,-9.0,-9.0,3,250.0,1061242,0.0,22814.0,2150.0 +1915257,1915257,1936647,1,18.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1915262,1915262,1936652,1,18.0,1.0,-9.0,-9.0,3,49200.0,1035838,0.0,22806.0,2146.0 +1915263,1915263,1936653,1,18.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22808.0,2147.0 +1915271,1915271,1936661,1,18.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22806.0,2146.0 +1915272,1915272,1936662,1,18.0,1.0,-9.0,-9.0,3,76000.0,1013097,0.0,22808.0,2147.0 +1915275,1915275,1936665,1,18.0,1.0,-9.0,-9.0,3,6000.0,1035838,0.0,22808.0,2147.0 +1915290,1915290,1936680,1,18.0,1.0,-9.0,-9.0,3,10000.0,1013097,0.0,22808.0,2147.0 +1915293,1915293,1936683,1,18.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22808.0,2147.0 +1915298,1915298,1936688,1,18.0,1.0,-9.0,-9.0,3,28200.0,1054346,0.0,22808.0,2147.0 +1915300,1915300,1936690,1,18.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1915301,1915301,1936691,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1915304,1915304,1936694,1,18.0,1.0,-9.0,-9.0,3,1400.0,1035838,0.0,22808.0,2147.0 +1915307,1915307,1936697,1,18.0,1.0,-9.0,-9.0,3,67600.0,1054346,0.0,22808.0,2147.0 +1915320,1915320,1936710,1,18.0,1.0,-9.0,-9.0,3,24500.0,1061242,0.0,22808.0,2147.0 +1915324,1915324,1936714,1,18.0,1.0,-9.0,-9.0,3,15000.0,1070673,0.0,22808.0,2147.0 +1915327,1915327,1936717,1,18.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1915333,1915333,1936723,1,18.0,2.0,-9.0,-9.0,3,68500.0,1054346,0.0,22765.0,2130.0 +1915335,1915335,1936725,1,18.0,2.0,-9.0,-9.0,3,10600.0,1061242,0.0,22808.0,2147.0 +1915339,1915339,1936729,1,18.0,2.0,-9.0,-9.0,3,360.0,1035838,0.0,22808.0,2147.0 +1915343,1915343,1936733,1,18.0,2.0,-9.0,-9.0,3,520.0,1070673,0.0,22808.0,2147.0 +1915345,1915345,1936735,1,18.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1915350,1915350,1936740,1,18.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1915354,1915354,1936744,1,18.0,2.0,-9.0,-9.0,3,31000.0,1035838,0.0,22815.0,2150.0 +1915356,1915356,1936746,1,18.0,2.0,-9.0,-9.0,3,30000.0,1013097,0.0,22814.0,2150.0 +1915357,1915357,1936747,1,18.0,2.0,-9.0,-9.0,3,31000.0,1035838,0.0,22806.0,2146.0 +1915358,1915358,1936748,1,18.0,2.0,-9.0,-9.0,3,400.0,1070673,0.0,22808.0,2147.0 +1915366,1915366,1936756,1,18.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22760.0,2128.0 +1915367,1915367,1936757,1,18.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22765.0,2130.0 +1915368,1915368,1936758,1,18.0,2.0,-9.0,-9.0,3,8000.0,1070673,0.0,22765.0,2130.0 +1915374,1915374,1936764,1,18.0,2.0,-9.0,-9.0,3,9000.0,1013097,0.0,22806.0,2146.0 +1915379,1915379,1936769,1,18.0,2.0,-9.0,-9.0,3,68500.0,1054346,0.0,22808.0,2147.0 +1915387,1915387,1936777,1,18.0,2.0,-9.0,-9.0,3,9000.0,1013097,0.0,22765.0,2130.0 +1915391,1915391,1936781,1,18.0,2.0,-9.0,-9.0,3,7200.0,1061242,0.0,22808.0,2147.0 +1915392,1915392,1936782,1,18.0,2.0,-9.0,-9.0,3,430.0,1013097,0.0,22808.0,2147.0 +1915393,1915393,1936783,1,18.0,2.0,-9.0,-9.0,3,3000.0,1035838,0.0,22808.0,2147.0 +1915396,1915396,1936786,1,18.0,2.0,-9.0,-9.0,3,26400.0,1054346,0.0,22806.0,2146.0 +1915398,1915398,1936788,1,18.0,2.0,-9.0,-9.0,3,52400.0,1013097,0.0,22808.0,2147.0 +1915401,1915401,1936791,1,18.0,2.0,-9.0,-9.0,3,5500.0,1054346,0.0,22808.0,2147.0 +1915404,1915404,1936794,1,18.0,2.0,-9.0,-9.0,3,7400.0,1054346,0.0,22765.0,2130.0 +1915405,1915405,1936795,1,18.0,2.0,-9.0,-9.0,3,15560.0,1070673,0.0,22808.0,2147.0 +1915408,1915408,1936798,1,18.0,2.0,-9.0,-9.0,3,7400.0,1061242,0.0,22808.0,2147.0 +1915411,1915411,1936801,1,18.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1915414,1915414,1936804,1,18.0,2.0,-9.0,-9.0,3,22000.0,1061242,0.0,22818.0,2150.0 +1915416,1915416,1936806,1,18.0,2.0,-9.0,-9.0,3,3000.0,1035838,0.0,22808.0,2147.0 +1915419,1915419,1936809,1,18.0,2.0,-9.0,-9.0,3,210.0,1070673,0.0,22765.0,2130.0 +1915422,1915422,1936812,1,18.0,2.0,-9.0,-9.0,3,13200.0,1061242,0.0,22808.0,2147.0 +1915423,1915423,1936813,1,18.0,2.0,-9.0,-9.0,3,13200.0,1054346,0.0,22814.0,2150.0 +1915428,1915428,1936818,1,18.0,2.0,-9.0,-9.0,3,69500.0,1061242,0.0,22808.0,2147.0 +1915430,1915430,1936820,1,18.0,2.0,-9.0,-9.0,3,8000.0,1070673,0.0,22808.0,2147.0 +1915435,1915435,1936825,1,18.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1915436,1915436,1936826,1,18.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1915438,1915438,1936828,1,18.0,2.0,-9.0,-9.0,3,13200.0,1061242,0.0,22808.0,2147.0 +1915439,1915439,1936829,1,18.0,2.0,-9.0,-9.0,3,13000.0,1070673,0.0,22765.0,2130.0 +1915442,1915442,1936832,1,18.0,2.0,-9.0,-9.0,3,13000.0,1070673,0.0,22808.0,2147.0 +1915443,1915443,1936833,1,18.0,2.0,-9.0,-9.0,3,930.0,1035838,0.0,22806.0,2146.0 +1915445,1915445,1936835,1,18.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1915447,1915447,1936837,1,18.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22806.0,2146.0 +1915452,1915452,1936842,1,18.0,2.0,-9.0,-9.0,3,4600.0,1061242,0.0,22808.0,2147.0 +1915455,1915455,1936845,1,18.0,2.0,-9.0,-9.0,3,65010.0,1054346,0.0,22808.0,2147.0 +1915461,1915461,1936851,1,18.0,2.0,-9.0,-9.0,3,10500.0,1070673,0.0,22806.0,2146.0 +1915463,1915463,1936853,1,18.0,2.0,-9.0,-9.0,3,36000.0,1013097,0.0,22808.0,2147.0 +1915466,1915466,1936856,1,18.0,2.0,-9.0,-9.0,3,5000.0,1061242,0.0,22808.0,2147.0 +1915471,1915471,1936861,1,18.0,2.0,-9.0,-9.0,3,13200.0,1061242,0.0,22808.0,2147.0 +1915473,1915473,1936863,1,18.0,2.0,-9.0,-9.0,3,13000.0,1061242,0.0,22808.0,2147.0 +1915474,1915474,1936864,1,18.0,2.0,-9.0,-9.0,3,2200.0,1035838,0.0,22765.0,2130.0 +1915477,1915477,1936867,1,18.0,2.0,-9.0,-9.0,3,3000.0,1035838,0.0,22806.0,2146.0 +1915478,1915478,1936868,1,18.0,2.0,-9.0,-9.0,3,27000.0,1013097,0.0,22806.0,2146.0 +1915484,1915484,1936874,1,18.0,2.0,-9.0,-9.0,3,210.0,1070673,0.0,22813.0,2150.0 +1915485,1915485,1936875,1,18.0,2.0,-9.0,-9.0,3,1400.0,1035838,0.0,22806.0,2146.0 +1915490,1915490,1936880,1,18.0,2.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1915492,1915492,1936882,1,18.0,4.0,-9.0,-9.0,3,75500.0,1054346,0.0,22808.0,2147.0 +1915494,1915494,1936884,1,18.0,4.0,-9.0,-9.0,3,19000.0,1070673,0.0,22808.0,2147.0 +1915495,1915495,1936885,1,18.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22808.0,2147.0 +1915497,1915497,1936887,1,18.0,4.0,-9.0,-9.0,3,18000.0,1070673,0.0,22808.0,2147.0 +1915501,1915501,1936891,1,18.0,4.0,-9.0,-9.0,3,29130.0,1035838,0.0,22808.0,2147.0 +1915504,1915504,1936894,1,18.0,4.0,-9.0,-9.0,3,28500.0,1054346,0.0,22813.0,2150.0 +1915507,1915507,1936897,1,18.0,4.0,-9.0,-9.0,3,29400.0,1013097,0.0,22758.0,2127.0 +1915508,1915508,1936898,1,18.0,4.0,-9.0,-9.0,3,65300.0,1061242,0.0,22808.0,2147.0 +1915511,1915511,1936901,1,18.0,4.0,-9.0,-9.0,3,30800.0,1035838,0.0,22808.0,2147.0 +1915521,1915521,1936911,1,18.0,4.0,-9.0,-9.0,3,28000.0,1013097,0.0,22808.0,2147.0 +1915526,1915526,1936916,1,18.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1915528,1915528,1936918,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22813.0,2150.0 +1915535,1915535,1936925,1,18.0,4.0,-9.0,-9.0,3,29300.0,1035838,0.0,22808.0,2147.0 +1915538,1915538,1936928,1,18.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22765.0,2130.0 +1915539,1915539,1936929,1,18.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22765.0,2130.0 +1915540,1915540,1936930,1,18.0,4.0,-9.0,-9.0,3,14800.0,1035838,0.0,22765.0,2130.0 +1915541,1915541,1936931,1,18.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22758.0,2127.0 +1915545,1915545,1936935,1,18.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22815.0,2150.0 +1915546,1915546,1936936,1,18.0,4.0,-9.0,-9.0,3,23100.0,1070673,0.0,22806.0,2146.0 +1915548,1915548,1936938,1,18.0,4.0,-9.0,-9.0,3,46500.0,1013097,0.0,22808.0,2147.0 +1915552,1915552,1936942,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1915555,1915555,1936945,1,18.0,4.0,-9.0,-9.0,3,23100.0,1070673,0.0,22765.0,2130.0 +1915556,1915556,1936946,1,18.0,4.0,-9.0,-9.0,3,19000.0,1070673,0.0,22808.0,2147.0 +1915560,1915560,1936950,1,18.0,4.0,-9.0,-9.0,3,26200.0,1035838,0.0,22808.0,2147.0 +1915561,1915561,1936951,1,18.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1915563,1915563,1936953,1,18.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1915566,1915566,1936956,1,18.0,4.0,-9.0,-9.0,3,62001.0,1070673,0.0,22808.0,2147.0 +1915568,1915568,1936958,1,18.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22806.0,2146.0 +1915571,1915571,1936961,1,18.0,4.0,-9.0,-9.0,3,30000.0,1070673,0.0,22808.0,2147.0 +1915582,1915582,1936972,1,18.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1915583,1915583,1936973,1,18.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1915591,1915591,1936981,1,18.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22808.0,2147.0 +1915593,1915593,1936983,1,18.0,4.0,-9.0,-9.0,3,26000.0,1013097,0.0,22758.0,2127.0 +1915598,1915598,1936988,1,18.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1915600,1915600,1936990,1,18.0,4.0,-9.0,-9.0,3,25450.0,1035838,0.0,22808.0,2147.0 +1915601,1915601,1936991,1,18.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22765.0,2130.0 +1915602,1915602,1936992,1,18.0,4.0,-9.0,-9.0,3,66000.0,1070673,0.0,22808.0,2147.0 +1915606,1915606,1936996,1,18.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22808.0,2147.0 +1915607,1915607,1936997,1,18.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1915611,1915611,1937001,1,18.0,4.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1915613,1915613,1937003,1,18.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22765.0,2130.0 +1915614,1915614,1937004,1,18.0,4.0,-9.0,-9.0,3,65000.0,1070673,0.0,22806.0,2146.0 +1915618,1915618,1937008,1,18.0,4.0,-9.0,-9.0,3,900.0,1035838,0.0,22808.0,2147.0 +1915619,1915619,1937009,1,18.0,4.0,-9.0,-9.0,3,75000.0,1013097,0.0,22808.0,2147.0 +1915621,1915621,1937011,1,18.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1915626,1915626,1937016,1,18.0,4.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1915628,1915628,1937018,1,18.0,4.0,-9.0,-9.0,3,30800.0,1035838,0.0,22808.0,2147.0 +1915635,1915635,1937025,1,18.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22765.0,2130.0 +1915636,1915636,1937026,1,18.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1915638,1915638,1937028,1,18.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22806.0,2146.0 +1915640,1915640,1937030,1,18.0,4.0,-9.0,-9.0,3,2800.0,1035838,0.0,22808.0,2147.0 +1915646,1915646,1937036,1,18.0,4.0,-9.0,-9.0,3,26630.0,1070673,0.0,22808.0,2147.0 +1915647,1915647,1937037,1,18.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22806.0,2146.0 +1915652,1915652,1937042,1,18.0,4.0,-9.0,-9.0,3,73480.0,1013097,0.0,22808.0,2147.0 +1915656,1915656,1937046,1,18.0,4.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1915659,1915659,1937049,1,18.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1915660,1915660,1937050,1,18.0,4.0,-9.0,-9.0,3,20600.0,1061242,0.0,22808.0,2147.0 +1915666,1915666,1937056,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1915675,1915675,1937065,1,18.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1915676,1915676,1937066,1,18.0,4.0,-9.0,-9.0,3,18000.0,1054346,0.0,22806.0,2146.0 +1915677,1915677,1937067,1,18.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1915678,1915678,1937068,1,18.0,4.0,-9.0,-9.0,3,28000.0,1013097,0.0,22808.0,2147.0 +1915681,1915681,1937071,1,18.0,4.0,-9.0,-9.0,3,5000.0,1035838,0.0,22808.0,2147.0 +1915682,1915682,1937072,1,18.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22808.0,2147.0 +1915685,1915685,1937075,1,18.0,4.0,-9.0,-9.0,3,30000.0,1054346,0.0,22808.0,2147.0 +1915686,1915686,1937076,1,18.0,4.0,-9.0,-9.0,3,15000.0,1061242,0.0,22760.0,2128.0 +1915688,1915688,1937078,1,18.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1915690,1915690,1937080,1,18.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22765.0,2130.0 +1915692,1915692,1937082,1,18.0,4.0,-9.0,-9.0,3,28000.0,1035838,0.0,22806.0,2146.0 +1915701,1915701,1937091,1,18.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22758.0,2127.0 +1915705,1915705,1937095,1,18.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1915707,1915707,1937097,1,18.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22808.0,2147.0 +1915709,1915709,1937099,1,18.0,4.0,-9.0,-9.0,3,11000.0,1035838,0.0,22808.0,2147.0 +1915711,1915711,1937101,1,18.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1915712,1915712,1937102,1,18.0,4.0,-9.0,-9.0,3,18000.0,1070673,0.0,22808.0,2147.0 +1915714,1915714,1937104,1,18.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1915716,1915716,1937106,1,18.0,4.0,-9.0,-9.0,3,26200.0,1035838,0.0,22808.0,2147.0 +1915719,1915719,1937109,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1915723,1915723,1937113,1,18.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22806.0,2146.0 +1915724,1915724,1937114,1,18.0,4.0,-9.0,-9.0,3,40800.0,1061242,0.0,22806.0,2146.0 +1915728,1915728,1937118,1,18.0,4.0,-9.0,-9.0,3,68000.0,1054346,0.0,22808.0,2147.0 +1915729,1915729,1937119,1,18.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22815.0,2150.0 +1915732,1915732,1937122,1,18.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1915733,1915733,1937123,1,18.0,4.0,-9.0,-9.0,3,64000.0,1061242,0.0,22765.0,2130.0 +1915737,1915737,1937127,1,18.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1915738,1915738,1937128,1,18.0,3.0,-9.0,-9.0,3,1200.0,1061242,0.0,22806.0,2146.0 +1915744,1915744,1937134,1,18.0,3.0,-9.0,-9.0,3,44200.0,1035838,0.0,22815.0,2150.0 +1915745,1915745,1937135,1,18.0,3.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1915746,1915746,1937136,1,18.0,3.0,-9.0,-9.0,3,13600.0,1070673,0.0,22808.0,2147.0 +1915751,1915751,1937141,1,18.0,3.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1915756,1915756,1937146,1,18.0,3.0,-9.0,-9.0,3,3500.0,1070673,0.0,22765.0,2130.0 +1915757,1915757,1937147,1,18.0,3.0,-9.0,-9.0,3,22500.0,1013097,0.0,22818.0,2150.0 +1915760,1915760,1937150,1,18.0,3.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1915765,1915765,1937155,1,18.0,3.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1915769,1915769,1937159,1,18.0,3.0,-9.0,-9.0,3,29800.0,1054346,0.0,22808.0,2147.0 +1915772,1915772,1937162,1,18.0,3.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1915779,1915779,1937169,1,18.0,3.0,-9.0,-9.0,3,75500.0,1013097,0.0,22814.0,2150.0 +1915787,1915787,1937177,1,18.0,3.0,-9.0,-9.0,3,27500.0,1035838,0.0,22765.0,2130.0 +1915789,1915789,1937179,1,18.0,3.0,-9.0,-9.0,3,3500.0,1070673,0.0,22808.0,2147.0 +1915794,1915794,1937184,1,18.0,3.0,-9.0,-9.0,3,9200.0,1035838,0.0,22806.0,2146.0 +1915795,1915795,1937185,1,18.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22815.0,2150.0 +1915797,1915797,1937187,1,18.0,1.0,-9.0,-9.0,3,16000.0,1054346,0.0,22808.0,2147.0 +1915798,1915798,1937188,1,18.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22818.0,2150.0 +1915800,1915800,1937190,1,18.0,1.0,-9.0,-9.0,3,29000.0,1061242,0.0,22808.0,2147.0 +1915801,1915801,1937191,1,18.0,1.0,-9.0,-9.0,3,14000.0,1013097,0.0,22808.0,2147.0 +1915802,1915802,1937192,1,18.0,1.0,-9.0,-9.0,3,7200.0,1013097,0.0,22814.0,2150.0 +1915807,1915807,1937197,1,18.0,1.0,-9.0,-9.0,3,14200.0,1054346,0.0,22808.0,2147.0 +1915808,1915808,1937198,1,18.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22765.0,2130.0 +1915809,1915809,1937199,1,18.0,1.0,-9.0,-9.0,3,22000.0,1061242,0.0,22765.0,2130.0 +1915811,1915811,1937201,1,18.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22808.0,2147.0 +1915815,1915815,1937205,1,18.0,3.0,-9.0,-9.0,3,5000.0,1013097,0.0,22808.0,2147.0 +1915818,1915818,1937208,1,18.0,2.0,-9.0,-9.0,3,7800.0,1035838,0.0,22806.0,2146.0 +1915819,1915819,1937209,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22765.0,2130.0 +1915822,1915822,1937212,1,18.0,2.0,-9.0,-9.0,3,20000.0,1054346,0.0,22815.0,2150.0 +1915824,1915824,1937214,1,18.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1915825,1915825,1937215,1,18.0,2.0,-9.0,-9.0,3,19400.0,1070673,0.0,22806.0,2146.0 +1915826,1915826,1937216,1,18.0,1.0,-9.0,-9.0,3,15100.0,1070673,0.0,22808.0,2147.0 +1915827,1915827,1937217,1,18.0,4.0,-9.0,-9.0,3,62000.0,1070673,0.0,22808.0,2147.0 +1915829,1915829,1937219,1,18.0,1.0,-9.0,-9.0,3,64130.0,1061242,0.0,22808.0,2147.0 +1915833,1915833,1937223,1,18.0,1.0,-9.0,-9.0,3,29400.0,1061242,0.0,22806.0,2146.0 +1915836,1915836,1937226,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22765.0,2130.0 +1915837,1915837,1937227,1,18.0,1.0,-9.0,-9.0,3,64500.0,1035838,0.0,22765.0,2130.0 +1915841,1915841,1937231,1,18.0,1.0,-9.0,-9.0,3,65000.0,1070673,0.0,22808.0,2147.0 +1915843,1915843,1937233,1,18.0,1.0,-9.0,-9.0,3,28300.0,1054346,0.0,22808.0,2147.0 +1915846,1915846,1937236,1,18.0,1.0,-9.0,-9.0,3,16700.0,1013097,0.0,22808.0,2147.0 +1915851,1915851,1937241,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22765.0,2130.0 +1915853,1915853,1937243,1,18.0,2.0,-9.0,-9.0,3,3000.0,1013097,0.0,22808.0,2147.0 +1915858,1915858,1937248,1,18.0,4.0,-9.0,-9.0,3,6700.0,1035838,0.0,22808.0,2147.0 +1915869,1915869,1937259,1,18.0,1.0,-9.0,-9.0,3,4500.0,1054346,0.0,22758.0,2127.0 +1915875,1915875,1937265,1,18.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22765.0,2130.0 +1915878,1915878,1937268,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22758.0,2127.0 +1915880,1915880,1937270,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1915883,1915883,1937273,1,18.0,4.0,-9.0,-9.0,3,10.0,1035838,0.0,22806.0,2146.0 +1915886,1915886,1937276,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22806.0,2146.0 +1915887,1915887,1937277,1,18.0,1.0,-9.0,-9.0,3,67300.0,1061242,0.0,22808.0,2147.0 +1915889,1915889,1937279,1,18.0,1.0,-9.0,-9.0,3,3400.0,1054346,0.0,22808.0,2147.0 +1915892,1915892,1937282,1,18.0,2.0,-9.0,-9.0,3,370.0,1070673,0.0,22808.0,2147.0 +1915896,1915896,1937286,1,18.0,4.0,-9.0,-9.0,3,18100.0,1035838,0.0,22815.0,2150.0 +1915900,1915900,1937290,1,18.0,1.0,-9.0,-9.0,3,26000.0,1070673,0.0,22810.0,2148.0 +1915906,1915906,1937296,1,18.0,2.0,-9.0,-9.0,3,6100.0,1070673,0.0,22806.0,2146.0 +1915908,1915908,1937298,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22815.0,2150.0 +1915910,1915910,1937300,1,18.0,4.0,-9.0,-9.0,3,30300.0,1035838,0.0,22808.0,2147.0 +1915915,1915915,1937305,1,18.0,1.0,-9.0,-9.0,3,500.0,1035838,0.0,22808.0,2147.0 +1915917,1915917,1937307,1,18.0,1.0,-9.0,-9.0,3,73200.0,1013097,0.0,22808.0,2147.0 +1915921,1915921,1937311,1,18.0,2.0,-9.0,-9.0,3,27000.0,1013097,0.0,22808.0,2147.0 +1915922,1915922,1937312,1,18.0,4.0,-9.0,-9.0,3,24020.0,1061242,0.0,22806.0,2146.0 +1915928,1915928,1937318,1,18.0,4.0,-9.0,-9.0,3,29600.0,1035838,0.0,22808.0,2147.0 +1915930,1915930,1937320,1,18.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22765.0,2130.0 +1915932,1915932,1937322,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1915935,1915935,1937325,1,18.0,1.0,-9.0,-9.0,3,12500.0,1013097,0.0,22808.0,2147.0 +1915940,1915940,1937330,1,18.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22810.0,2148.0 +1915941,1915941,1937331,1,18.0,1.0,-9.0,-9.0,3,22000.0,1061242,0.0,22808.0,2147.0 +1915942,1915942,1937332,1,18.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22810.0,2148.0 +1915945,1915945,1937335,1,18.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22765.0,2130.0 +1915946,1915946,1937336,1,18.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1915947,1915947,1937337,1,18.0,2.0,-9.0,-9.0,3,4600.0,1061242,0.0,22806.0,2146.0 +1915949,1915949,1937339,1,18.0,2.0,-9.0,-9.0,3,930.0,1035838,0.0,22806.0,2146.0 +1915951,1915951,1937341,1,18.0,1.0,-9.0,-9.0,3,6000.0,1070673,0.0,22806.0,2146.0 +1915952,1915952,1937342,1,18.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22765.0,2130.0 +1915956,1915956,1937346,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1915959,1915959,1937349,1,18.0,2.0,-9.0,-9.0,3,4600.0,1061242,0.0,22808.0,2147.0 +1915960,1915960,1937350,1,18.0,2.0,-9.0,-9.0,3,4600.0,1061242,0.0,22808.0,2147.0 +1915963,1915963,1937353,1,18.0,2.0,-9.0,-9.0,3,32000.0,1035838,0.0,22760.0,2128.0 +1915964,1915964,1937354,1,18.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22765.0,2130.0 +1915965,1915965,1937355,1,18.0,4.0,-9.0,-9.0,3,36000.0,1070673,0.0,22806.0,2146.0 +1915966,1915966,1937356,1,18.0,2.0,-9.0,-9.0,3,2500.0,1035838,0.0,22765.0,2130.0 +1915973,1915973,1937363,1,18.0,1.0,-9.0,-9.0,3,10900.0,1013097,0.0,22808.0,2147.0 +1915974,1915974,1937364,1,18.0,4.0,-9.0,-9.0,3,19500.0,1035838,0.0,22814.0,2150.0 +1915976,1915976,1937366,1,18.0,1.0,-9.0,-9.0,3,22800.0,1013097,0.0,22808.0,2147.0 +1915978,1915978,1937368,1,18.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1915984,1915984,1937374,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1915988,1915988,1937378,1,18.0,4.0,-9.0,-9.0,3,10900.0,1035838,0.0,22758.0,2127.0 +1915989,1915989,1937379,1,18.0,1.0,-9.0,-9.0,3,6900.0,1013097,0.0,22815.0,2150.0 +1915991,1915991,1937381,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22758.0,2127.0 +1915992,1915992,1937382,1,18.0,1.0,-9.0,-9.0,3,6400.0,1070673,0.0,22808.0,2147.0 +1915996,1915996,1937386,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22806.0,2146.0 +1915998,1915998,1937388,1,18.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22808.0,2147.0 +1916000,1916000,1937390,1,18.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22808.0,2147.0 +1916003,1916003,1937393,1,18.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22806.0,2146.0 +1916005,1916005,1937395,1,18.0,1.0,-9.0,-9.0,3,18500.0,1054346,0.0,22765.0,2130.0 +1916007,1916007,1937397,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22758.0,2127.0 +1916008,1916008,1937398,1,18.0,1.0,-9.0,-9.0,3,4500.0,1061242,0.0,22815.0,2150.0 +1916012,1916012,1937402,1,18.0,1.0,-9.0,-9.0,3,4500.0,1070673,0.0,22808.0,2147.0 +1916013,1916013,1937403,1,18.0,4.0,-9.0,-9.0,3,13500.0,1054346,0.0,22808.0,2147.0 +1916014,1916014,1937404,1,18.0,1.0,-9.0,-9.0,3,4500.0,1061242,0.0,22765.0,2130.0 +1916015,1916015,1937405,1,18.0,1.0,-9.0,-9.0,3,13000.0,1070673,0.0,22808.0,2147.0 +1916016,1916016,1937406,1,18.0,1.0,-9.0,-9.0,3,7000.0,1035838,0.0,22814.0,2150.0 +1916018,1916018,1937408,1,18.0,1.0,-9.0,-9.0,3,1100.0,1035838,0.0,22808.0,2147.0 +1916020,1916020,1937410,1,18.0,1.0,-9.0,-9.0,3,25300.0,1061242,0.0,22806.0,2146.0 +1916021,1916021,1937411,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1916024,1916024,1937414,1,18.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22806.0,2146.0 +1916026,1916026,1937416,1,18.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22765.0,2130.0 +1916028,1916028,1937418,1,18.0,1.0,-9.0,-9.0,3,7000.0,1054346,0.0,22808.0,2147.0 +1916030,1916030,1937420,1,18.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22808.0,2147.0 +1916031,1916031,1937421,1,18.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22814.0,2150.0 +1916035,1916035,1937425,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1916037,1916037,1937427,1,18.0,1.0,-9.0,-9.0,3,18500.0,1070673,0.0,22814.0,2150.0 +1916038,1916038,1937428,1,18.0,1.0,-9.0,-9.0,3,13000.0,1070673,0.0,22808.0,2147.0 +1916043,1916043,1937433,1,18.0,4.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1916046,1916046,1937436,1,18.0,1.0,-9.0,-9.0,3,3700.0,1070673,0.0,22808.0,2147.0 +1916048,1916048,1937438,1,18.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22808.0,2147.0 +1916050,1916050,1937440,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22765.0,2130.0 +1916052,1916052,1937442,1,18.0,1.0,-9.0,-9.0,3,30200.0,1013097,0.0,22808.0,2147.0 +1916053,1916053,1937443,1,18.0,2.0,-9.0,-9.0,3,17000.0,1035838,0.0,22808.0,2147.0 +1916054,1916054,1937444,1,18.0,1.0,-9.0,-9.0,3,25000.0,1035838,0.0,22808.0,2147.0 +1916055,1916055,1937445,1,18.0,1.0,-9.0,-9.0,3,22380.0,1061242,0.0,22808.0,2147.0 +1916058,1916058,1937448,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1916060,1916060,1937450,1,18.0,1.0,-9.0,-9.0,3,28550.0,1054346,0.0,22808.0,2147.0 +1916061,1916061,1937451,1,18.0,4.0,-9.0,-9.0,3,7000.0,1054346,0.0,22808.0,2147.0 +1916064,1916064,1937454,1,18.0,1.0,-9.0,-9.0,3,1000.0,1054346,0.0,22808.0,2147.0 +1916065,1916065,1937455,1,18.0,1.0,-9.0,-9.0,3,43000.0,1061242,0.0,22814.0,2150.0 +1916066,1916066,1937456,1,18.0,1.0,-9.0,-9.0,3,4500.0,1061242,0.0,22808.0,2147.0 +1916068,1916068,1937458,1,18.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22808.0,2147.0 +1916070,1916070,1937460,1,18.0,1.0,-9.0,-9.0,3,28200.0,1054346,0.0,22808.0,2147.0 +1916071,1916071,1937461,1,18.0,1.0,-9.0,-9.0,3,5500.0,1035838,0.0,22808.0,2147.0 +1916073,1916073,1937463,1,18.0,1.0,-9.0,-9.0,3,3000.0,1061242,0.0,22806.0,2146.0 +1916075,1916075,1937465,1,18.0,1.0,-9.0,-9.0,3,67400.0,1061242,0.0,22808.0,2147.0 +1916076,1916076,1937466,1,18.0,2.0,-9.0,-9.0,3,430.0,1013097,0.0,22808.0,2147.0 +1916079,1916079,1937469,1,18.0,1.0,-9.0,-9.0,3,4700.0,1054346,0.0,22808.0,2147.0 +1916081,1916081,1937471,1,18.0,1.0,-9.0,-9.0,3,1900.0,1013097,0.0,22758.0,2127.0 +1916084,1916084,1937474,1,18.0,1.0,-9.0,-9.0,3,36000.0,1061242,0.0,22808.0,2147.0 +1916085,1916085,1937475,1,18.0,1.0,-9.0,-9.0,3,66660.0,1070673,0.0,22765.0,2130.0 +1916087,1916087,1937477,1,18.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1916089,1916089,1937479,1,18.0,1.0,-9.0,-9.0,3,29000.0,1061242,0.0,22765.0,2130.0 +1916091,1916091,1937481,1,18.0,1.0,-9.0,-9.0,3,15100.0,1070673,0.0,22808.0,2147.0 +1916095,1916095,1937485,1,18.0,3.0,-9.0,-9.0,3,69100.0,1035838,0.0,22814.0,2150.0 +1916096,1916096,1937486,1,18.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22765.0,2130.0 +1916097,1916097,1937487,1,18.0,1.0,-9.0,-9.0,3,4700.0,1054346,0.0,22765.0,2130.0 +1916099,1916099,1937489,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1916102,1916102,1937492,1,18.0,1.0,-9.0,-9.0,3,1700.0,1035838,0.0,22808.0,2147.0 +1916108,1916108,1937498,1,18.0,4.0,-9.0,-9.0,3,10900.0,1035838,0.0,22808.0,2147.0 +1916111,1916111,1937501,1,18.0,4.0,-9.0,-9.0,3,2800.0,1035838,0.0,22808.0,2147.0 +1916112,1916112,1937502,1,18.0,1.0,-9.0,-9.0,3,5000.0,1013097,0.0,22808.0,2147.0 +1916114,1916114,1937504,1,18.0,1.0,-9.0,-9.0,3,32200.0,1070673,0.0,22806.0,2146.0 +1916115,1916115,1937505,1,18.0,2.0,-9.0,-9.0,3,1000.0,1070673,0.0,22806.0,2146.0 +1916122,1916122,1937512,1,18.0,1.0,-9.0,-9.0,3,10200.0,1035838,0.0,22808.0,2147.0 +1916123,1916123,1937513,1,18.0,1.0,-9.0,-9.0,3,190.0,1054346,0.0,22808.0,2147.0 +1916132,1916132,1937522,1,18.0,3.0,-9.0,-9.0,3,41600.0,1054346,0.0,22808.0,2147.0 +1916134,1916134,1937524,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1916138,1916138,1937528,1,18.0,1.0,-9.0,-9.0,3,10500.0,1061242,0.0,22808.0,2147.0 +1916143,1916143,1937533,1,18.0,1.0,-9.0,-9.0,3,2500.0,1070673,0.0,22815.0,2150.0 +1916144,1916144,1937534,1,18.0,1.0,-9.0,-9.0,3,65700.0,1054346,0.0,22765.0,2130.0 +1916145,1916145,1937535,1,18.0,4.0,-9.0,-9.0,3,2650.0,1061242,0.0,22808.0,2147.0 +1916151,1916151,1937541,1,18.0,1.0,-9.0,-9.0,3,28500.0,1061242,0.0,22808.0,2147.0 +1916153,1916153,1937543,1,18.0,1.0,-9.0,-9.0,3,10900.0,1013097,0.0,22765.0,2130.0 +1916154,1916154,1937544,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1916156,1916156,1937546,1,18.0,1.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1916159,1916159,1937549,1,18.0,1.0,-9.0,-9.0,3,9000.0,1013097,0.0,22808.0,2147.0 +1916162,1916162,1937552,1,18.0,1.0,-9.0,-9.0,3,15500.0,1035838,0.0,22806.0,2146.0 +1916165,1916165,1937555,1,18.0,1.0,-9.0,-9.0,3,9500.0,1054346,0.0,22808.0,2147.0 +1916166,1916166,1937556,1,18.0,1.0,-9.0,-9.0,3,31100.0,1013097,0.0,22806.0,2146.0 +1916167,1916167,1937557,1,18.0,4.0,-9.0,-9.0,3,30000.0,1054346,0.0,22808.0,2147.0 +1916168,1916168,1937558,1,18.0,1.0,-9.0,-9.0,3,69200.0,1070673,0.0,22808.0,2147.0 +1916169,1916169,1937559,1,18.0,1.0,-9.0,-9.0,3,26000.0,1054346,0.0,22808.0,2147.0 +1916172,1916172,1937562,1,18.0,4.0,-9.0,-9.0,3,12000.0,1054346,0.0,22808.0,2147.0 +1916174,1916174,1937564,1,18.0,1.0,-9.0,-9.0,3,13000.0,1070673,0.0,22815.0,2150.0 +1916178,1916178,1937568,1,18.0,1.0,-9.0,-9.0,3,900.0,1035838,0.0,22758.0,2127.0 +1916182,1916182,1937572,1,18.0,1.0,-9.0,-9.0,3,67200.0,1054346,0.0,22806.0,2146.0 +1916184,1916184,1937574,1,18.0,1.0,-9.0,-9.0,3,3000.0,1061242,0.0,22758.0,2127.0 +1916189,1916189,1937579,1,18.0,1.0,-9.0,-9.0,3,39000.0,1054346,0.0,22808.0,2147.0 +1916191,1916191,1937581,1,18.0,4.0,-9.0,-9.0,3,2800.0,1035838,0.0,22808.0,2147.0 +1916195,1916195,1937585,1,18.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22808.0,2147.0 +1916198,1916198,1937588,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22765.0,2130.0 +1916199,1916199,1937589,1,18.0,1.0,-9.0,-9.0,3,16300.0,1035838,0.0,22758.0,2127.0 +1916200,1916200,1937590,1,18.0,1.0,-9.0,-9.0,3,24500.0,1061242,0.0,22808.0,2147.0 +1916207,1916207,1937597,1,18.0,1.0,-9.0,-9.0,3,18900.0,1061242,0.0,22806.0,2146.0 +1916208,1916208,1937598,1,18.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22765.0,2130.0 +1916209,1916209,1937599,1,18.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22808.0,2147.0 +1916215,1916215,1937605,1,18.0,1.0,-9.0,-9.0,3,5800.0,1013097,0.0,22808.0,2147.0 +1916219,1916219,1937609,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22758.0,2127.0 +1916222,1916222,1937612,1,18.0,1.0,-9.0,-9.0,3,16000.0,1054346,0.0,22808.0,2147.0 +1916226,1916226,1937616,1,18.0,1.0,-9.0,-9.0,3,42500.0,1035838,0.0,22806.0,2146.0 +1916231,1916231,1937621,1,18.0,1.0,-9.0,-9.0,3,3700.0,1061242,0.0,22808.0,2147.0 +1916236,1916236,1937626,1,18.0,1.0,-9.0,-9.0,3,29500.0,1035838,0.0,22808.0,2147.0 +1916239,1916239,1937629,1,18.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22808.0,2147.0 +1916240,1916240,1937630,1,18.0,2.0,-9.0,-9.0,3,3000.0,1035838,0.0,22808.0,2147.0 +1916243,1916243,1937633,1,19.0,1.0,-9.0,-9.0,3,29500.0,1054346,0.0,22808.0,2147.0 +1916244,1916244,1937634,1,19.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1916245,1916245,1937635,1,19.0,1.0,-9.0,-9.0,3,29500.0,1013097,0.0,22808.0,2147.0 +1916248,1916248,1937638,1,19.0,1.0,-9.0,-9.0,3,25300.0,1061242,0.0,22808.0,2147.0 +1916251,1916251,1937641,1,19.0,1.0,-9.0,-9.0,3,69000.0,1035838,0.0,22814.0,2150.0 +1916253,1916253,1937643,1,19.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1916258,1916258,1937648,1,19.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1916260,1916260,1937650,1,19.0,1.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1916261,1916261,1937651,1,19.0,1.0,-9.0,-9.0,3,7500.0,1070673,0.0,22808.0,2147.0 +1916264,1916264,1937654,1,19.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22815.0,2150.0 +1916268,1916268,1937658,1,19.0,1.0,-9.0,-9.0,3,9500.0,1054346,0.0,22808.0,2147.0 +1916276,1916276,1937666,1,19.0,1.0,-9.0,-9.0,3,3000.0,1054346,0.0,22808.0,2147.0 +1916279,1916279,1937669,1,19.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1916285,1916285,1937675,1,19.0,1.0,-9.0,-9.0,3,14300.0,1054346,0.0,22814.0,2150.0 +1916286,1916286,1937676,1,19.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1916287,1916287,1937677,1,19.0,1.0,-9.0,-9.0,3,55000.0,1013097,0.0,22808.0,2147.0 +1916290,1916290,1937680,1,19.0,1.0,-9.0,-9.0,3,65000.0,1035838,0.0,22808.0,2147.0 +1916298,1916298,1937688,1,19.0,1.0,-9.0,-9.0,3,6900.0,1013097,0.0,22808.0,2147.0 +1916299,1916299,1937689,1,19.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22808.0,2147.0 +1916301,1916301,1937691,1,19.0,1.0,-9.0,-9.0,3,64300.0,1061242,0.0,22758.0,2127.0 +1916305,1916305,1937695,1,19.0,1.0,-9.0,-9.0,3,4000.0,1013097,0.0,22765.0,2130.0 +1916306,1916306,1937696,1,19.0,1.0,-9.0,-9.0,3,710.0,1013097,0.0,22808.0,2147.0 +1916307,1916307,1937697,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22765.0,2130.0 +1916310,1916310,1937700,1,19.0,1.0,-9.0,-9.0,3,66300.0,1061242,0.0,22808.0,2147.0 +1916312,1916312,1937702,1,19.0,1.0,-9.0,-9.0,3,19770.0,1061242,0.0,22808.0,2147.0 +1916315,1916315,1937705,1,19.0,1.0,-9.0,-9.0,3,4300.0,1070673,0.0,22808.0,2147.0 +1916316,1916316,1937706,1,19.0,1.0,-9.0,-9.0,3,30500.0,1054346,0.0,22808.0,2147.0 +1916318,1916318,1937708,1,19.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22808.0,2147.0 +1916322,1916322,1937712,1,19.0,1.0,-9.0,-9.0,3,8800.0,1013097,0.0,22808.0,2147.0 +1916325,1916325,1937715,1,19.0,1.0,-9.0,-9.0,3,25300.0,1061242,0.0,22808.0,2147.0 +1916327,1916327,1937717,1,19.0,1.0,-9.0,-9.0,3,190.0,1054346,0.0,22758.0,2127.0 +1916328,1916328,1937718,1,19.0,1.0,-9.0,-9.0,3,62780.0,1070673,0.0,22808.0,2147.0 +1916329,1916329,1937719,1,19.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22765.0,2130.0 +1916336,1916336,1937726,1,19.0,1.0,-9.0,-9.0,3,1400.0,1061242,0.0,22806.0,2146.0 +1916339,1916339,1937729,1,19.0,1.0,-9.0,-9.0,3,66000.0,1061242,0.0,22808.0,2147.0 +1916342,1916342,1937732,1,19.0,1.0,-9.0,-9.0,3,31300.0,1061242,0.0,22806.0,2146.0 +1916343,1916343,1937733,1,19.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1916347,1916347,1937737,1,19.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22758.0,2127.0 +1916348,1916348,1937738,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1916349,1916349,1937739,1,19.0,1.0,-9.0,-9.0,3,72000.0,1054346,0.0,22808.0,2147.0 +1916351,1916351,1937741,1,19.0,1.0,-9.0,-9.0,3,500.0,1035838,0.0,22808.0,2147.0 +1916357,1916357,1937747,1,19.0,1.0,-9.0,-9.0,3,64500.0,1070673,0.0,22808.0,2147.0 +1916358,1916358,1937748,1,19.0,1.0,-9.0,-9.0,3,70500.0,1054346,0.0,22815.0,2150.0 +1916360,1916360,1937750,1,19.0,1.0,-9.0,-9.0,3,36000.0,1061242,0.0,22814.0,2150.0 +1916361,1916361,1937751,1,19.0,1.0,-9.0,-9.0,3,64300.0,1061242,0.0,22808.0,2147.0 +1916362,1916362,1937752,1,19.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22806.0,2146.0 +1916363,1916363,1937753,1,19.0,1.0,-9.0,-9.0,3,16000.0,1035838,0.0,22806.0,2146.0 +1916373,1916373,1937763,1,19.0,1.0,-9.0,-9.0,3,15000.0,1070673,0.0,22806.0,2146.0 +1916379,1916379,1937769,1,19.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1916380,1916380,1937770,1,19.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22813.0,2150.0 +1916382,1916382,1937772,1,19.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22765.0,2130.0 +1916384,1916384,1937774,1,19.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1916385,1916385,1937775,1,19.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22806.0,2146.0 +1916386,1916386,1937776,1,19.0,1.0,-9.0,-9.0,3,38000.0,1054346,0.0,22806.0,2146.0 +1916387,1916387,1937777,1,19.0,1.0,-9.0,-9.0,3,30800.0,1070673,0.0,22806.0,2146.0 +1916392,1916392,1937782,1,19.0,1.0,-9.0,-9.0,3,15000.0,1013097,0.0,22806.0,2146.0 +1916393,1916393,1937783,1,19.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1916394,1916394,1937784,1,19.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22806.0,2146.0 +1916401,1916401,1937791,1,19.0,1.0,-9.0,-9.0,3,13000.0,1054346,0.0,22808.0,2147.0 +1916402,1916402,1937792,1,19.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22808.0,2147.0 +1916404,1916404,1937794,1,19.0,1.0,-9.0,-9.0,3,2300.0,1013097,0.0,22808.0,2147.0 +1916409,1916409,1937799,1,19.0,1.0,-9.0,-9.0,3,12000.0,1061242,0.0,22806.0,2146.0 +1916411,1916411,1937801,1,19.0,1.0,-9.0,-9.0,3,600.0,1061242,0.0,22808.0,2147.0 +1916412,1916412,1937802,1,19.0,1.0,-9.0,-9.0,3,43000.0,1054346,0.0,22806.0,2146.0 +1916413,1916413,1937803,1,19.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22808.0,2147.0 +1916415,1916415,1937805,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1916416,1916416,1937806,1,19.0,1.0,-9.0,-9.0,3,36000.0,1035838,0.0,22815.0,2150.0 +1916417,1916417,1937807,1,19.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22806.0,2146.0 +1916420,1916420,1937810,1,19.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22808.0,2147.0 +1916428,1916428,1937818,1,19.0,1.0,-9.0,-9.0,3,1350.0,1035838,0.0,22808.0,2147.0 +1916429,1916429,1937819,1,19.0,1.0,-9.0,-9.0,3,12500.0,1013097,0.0,22814.0,2150.0 +1916435,1916435,1937825,1,19.0,1.0,-9.0,-9.0,3,36000.0,1061242,0.0,22806.0,2146.0 +1916438,1916438,1937828,1,19.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1916447,1916447,1937837,1,19.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22808.0,2147.0 +1916457,1916457,1937847,1,19.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22806.0,2146.0 +1916462,1916462,1937852,1,19.0,1.0,-9.0,-9.0,3,74500.0,1013097,0.0,22806.0,2146.0 +1916463,1916463,1937853,1,19.0,1.0,-9.0,-9.0,3,20480.0,1035838,0.0,22808.0,2147.0 +1916467,1916467,1937857,1,19.0,1.0,-9.0,-9.0,3,6100.0,1061242,0.0,22808.0,2147.0 +1916468,1916468,1937858,1,19.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1916476,1916476,1937866,1,19.0,1.0,-9.0,-9.0,3,30200.0,1013097,0.0,22808.0,2147.0 +1916481,1916481,1937871,1,19.0,1.0,-9.0,-9.0,3,2000.0,1061242,0.0,22808.0,2147.0 +1916483,1916483,1937873,1,19.0,1.0,-9.0,-9.0,3,2400.0,1013097,0.0,22765.0,2130.0 +1916484,1916484,1937874,1,19.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22808.0,2147.0 +1916487,1916487,1937877,1,19.0,1.0,-9.0,-9.0,3,500.0,1035838,0.0,22806.0,2146.0 +1916488,1916488,1937878,1,19.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22806.0,2146.0 +1916490,1916490,1937880,1,19.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22814.0,2150.0 +1916495,1916495,1937885,1,19.0,1.0,-9.0,-9.0,3,13000.0,1070673,0.0,22765.0,2130.0 +1916497,1916497,1937887,1,19.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22765.0,2130.0 +1916498,1916498,1937888,1,19.0,1.0,-9.0,-9.0,3,30300.0,1054346,0.0,22808.0,2147.0 +1916499,1916499,1937889,1,19.0,1.0,-9.0,-9.0,3,65500.0,1070673,0.0,22806.0,2146.0 +1916500,1916500,1937890,1,19.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22806.0,2146.0 +1916501,1916501,1937891,1,19.0,1.0,-9.0,-9.0,3,20000.0,1061242,0.0,22814.0,2150.0 +1916502,1916502,1937892,1,19.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1916506,1916506,1937896,1,19.0,1.0,-9.0,-9.0,3,32500.0,1035838,0.0,22760.0,2128.0 +1916507,1916507,1937897,1,19.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22808.0,2147.0 +1916510,1916510,1937900,1,19.0,1.0,-9.0,-9.0,3,12000.0,1035838,0.0,22806.0,2146.0 +1916515,1916515,1937905,1,19.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22806.0,2146.0 +1916521,1916521,1937911,1,19.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22806.0,2146.0 +1916527,1916527,1937917,1,19.0,1.0,-9.0,-9.0,3,27600.0,1061242,0.0,22808.0,2147.0 +1916530,1916530,1937920,1,19.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22806.0,2146.0 +1916532,1916532,1937922,1,19.0,1.0,-9.0,-9.0,3,38000.0,1054346,0.0,22808.0,2147.0 +1916546,1916546,1937936,1,19.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22808.0,2147.0 +1916549,1916549,1937939,1,19.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1916552,1916552,1937942,1,19.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22808.0,2147.0 +1916554,1916554,1937944,1,19.0,1.0,-9.0,-9.0,3,16000.0,1054346,0.0,22808.0,2147.0 +1916558,1916558,1937948,1,19.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1916560,1916560,1937950,1,19.0,1.0,-9.0,-9.0,3,29200.0,1035838,0.0,22810.0,2148.0 +1916563,1916563,1937953,1,19.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22808.0,2147.0 +1916565,1916565,1937955,1,19.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1916567,1916567,1937957,1,19.0,1.0,-9.0,-9.0,3,3200.0,1035838,0.0,22758.0,2127.0 +1916568,1916568,1937958,1,19.0,1.0,-9.0,-9.0,3,89000.0,1054346,0.0,22808.0,2147.0 +1916571,1916571,1937961,1,19.0,1.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1916575,1916575,1937965,1,19.0,1.0,-9.0,-9.0,3,4500.0,1054346,0.0,22808.0,2147.0 +1916577,1916577,1937967,1,19.0,1.0,-9.0,-9.0,3,65000.0,1054346,0.0,22808.0,2147.0 +1916580,1916580,1937970,1,19.0,1.0,-9.0,-9.0,3,41600.0,1054346,0.0,22808.0,2147.0 +1916582,1916582,1937972,1,19.0,1.0,-9.0,-9.0,3,6000.0,1035838,0.0,22808.0,2147.0 +1916589,1916589,1937979,1,19.0,1.0,-9.0,-9.0,3,6000.0,1054346,0.0,22808.0,2147.0 +1916594,1916594,1937984,1,19.0,1.0,-9.0,-9.0,3,34000.0,1054346,0.0,22808.0,2147.0 +1916597,1916597,1937987,1,19.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22765.0,2130.0 +1916598,1916598,1937988,1,19.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1916600,1916600,1937990,1,19.0,1.0,-9.0,-9.0,3,6400.0,1070673,0.0,22761.0,2128.0 +1916606,1916606,1937996,1,19.0,1.0,-9.0,-9.0,3,12500.0,1013097,0.0,22806.0,2146.0 +1916607,1916607,1937997,1,19.0,1.0,-9.0,-9.0,3,1000.0,1070673,0.0,22808.0,2147.0 +1916616,1916616,1938006,1,19.0,1.0,-9.0,-9.0,3,3600.0,1035838,0.0,22808.0,2147.0 +1916618,1916618,1938008,1,19.0,1.0,-9.0,-9.0,3,68500.0,1054346,0.0,22765.0,2130.0 +1916624,1916624,1938014,1,19.0,1.0,-9.0,-9.0,3,5404.0,1061242,0.0,22806.0,2146.0 +1916625,1916625,1938015,1,19.0,1.0,-9.0,-9.0,3,26500.0,1070673,0.0,22815.0,2150.0 +1916626,1916626,1938016,1,19.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22806.0,2146.0 +1916633,1916633,1938023,1,19.0,1.0,-9.0,-9.0,3,27600.0,1061242,0.0,22808.0,2147.0 +1916634,1916634,1938024,1,19.0,1.0,-9.0,-9.0,3,29500.0,1013097,0.0,22808.0,2147.0 +1916636,1916636,1938026,1,19.0,1.0,-9.0,-9.0,3,66660.0,1070673,0.0,22808.0,2147.0 +1916637,1916637,1938027,1,19.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1916646,1916646,1938036,1,19.0,1.0,-9.0,-9.0,3,16000.0,1013097,0.0,22808.0,2147.0 +1916650,1916650,1938040,1,19.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22808.0,2147.0 +1916652,1916652,1938042,1,19.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22808.0,2147.0 +1916654,1916654,1938044,1,19.0,1.0,-9.0,-9.0,3,30050.0,1035838,0.0,22808.0,2147.0 +1916655,1916655,1938045,1,19.0,1.0,-9.0,-9.0,3,8100.0,1013097,0.0,22806.0,2146.0 +1916660,1916660,1938050,1,19.0,1.0,-9.0,-9.0,3,65350.0,1061242,0.0,22808.0,2147.0 +1916661,1916661,1938051,1,19.0,1.0,-9.0,-9.0,3,10820.0,1061242,0.0,22765.0,2130.0 +1916662,1916662,1938052,1,19.0,1.0,-9.0,-9.0,3,8500.0,1070673,0.0,22765.0,2130.0 +1916666,1916666,1938056,1,19.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22808.0,2147.0 +1916670,1916670,1938060,1,19.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1916675,1916675,1938065,1,19.0,1.0,-9.0,-9.0,3,3000.0,1054346,0.0,22808.0,2147.0 +1916676,1916676,1938066,1,19.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1916679,1916679,1938069,1,19.0,1.0,-9.0,-9.0,3,4100.0,1035838,0.0,22808.0,2147.0 +1916682,1916682,1938072,1,19.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22808.0,2147.0 +1916683,1916683,1938073,1,19.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22808.0,2147.0 +1916686,1916686,1938076,1,19.0,1.0,-9.0,-9.0,3,24500.0,1061242,0.0,22808.0,2147.0 +1916687,1916687,1938077,1,19.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22808.0,2147.0 +1916689,1916689,1938079,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1916693,1916693,1938083,1,19.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22808.0,2147.0 +1916694,1916694,1938084,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1916697,1916697,1938087,1,19.0,1.0,-9.0,-9.0,3,22000.0,1035838,0.0,22808.0,2147.0 +1916698,1916698,1938088,1,19.0,1.0,-9.0,-9.0,3,2100.0,1054346,0.0,22808.0,2147.0 +1916700,1916700,1938090,1,19.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1916707,1916707,1938097,1,19.0,1.0,-9.0,-9.0,3,14000.0,1013097,0.0,22808.0,2147.0 +1916709,1916709,1938099,1,19.0,1.0,-9.0,-9.0,3,22500.0,1070673,0.0,22808.0,2147.0 +1916714,1916714,1938104,1,19.0,1.0,-9.0,-9.0,3,3700.0,1070673,0.0,22808.0,2147.0 +1916717,1916717,1938107,1,19.0,1.0,-9.0,-9.0,3,67000.0,1061242,0.0,22808.0,2147.0 +1916719,1916719,1938109,1,19.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22808.0,2147.0 +1916727,1916727,1938117,1,19.0,1.0,-9.0,-9.0,3,32200.0,1070673,0.0,22765.0,2130.0 +1916728,1916728,1938118,1,19.0,1.0,-9.0,-9.0,3,30500.0,1061242,0.0,22806.0,2146.0 +1916736,1916736,1938126,1,19.0,1.0,-9.0,-9.0,3,1000.0,1070673,0.0,22808.0,2147.0 +1916737,1916737,1938127,1,19.0,1.0,-9.0,-9.0,3,600.0,1061242,0.0,22814.0,2150.0 +1916742,1916742,1938132,1,19.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22818.0,2150.0 +1916746,1916746,1938136,1,19.0,1.0,-9.0,-9.0,3,2500.0,1070673,0.0,22814.0,2150.0 +1916748,1916748,1938138,1,19.0,1.0,-9.0,-9.0,3,34000.0,1054346,0.0,22808.0,2147.0 +1916749,1916749,1938139,1,19.0,1.0,-9.0,-9.0,3,27600.0,1061242,0.0,22808.0,2147.0 +1916750,1916750,1938140,1,19.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1916752,1916752,1938142,1,19.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22765.0,2130.0 +1916753,1916753,1938143,1,19.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22808.0,2147.0 +1916759,1916759,1938149,1,19.0,1.0,-9.0,-9.0,3,13150.0,1061242,0.0,22808.0,2147.0 +1916760,1916760,1938150,1,19.0,1.0,-9.0,-9.0,3,26500.0,1054346,0.0,22765.0,2130.0 +1916763,1916763,1938153,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1916764,1916764,1938154,1,19.0,1.0,-9.0,-9.0,3,23301.0,1070673,0.0,22808.0,2147.0 +1916776,1916776,1938166,1,19.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22806.0,2146.0 +1916779,1916779,1938169,1,19.0,1.0,-9.0,-9.0,3,3000.0,1013097,0.0,22808.0,2147.0 +1916784,1916784,1938174,1,19.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1916786,1916786,1938176,1,19.0,1.0,-9.0,-9.0,3,15500.0,1061242,0.0,22808.0,2147.0 +1916795,1916795,1938185,1,19.0,1.0,-9.0,-9.0,3,33000.0,1035838,0.0,22808.0,2147.0 +1916798,1916798,1938188,1,19.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22806.0,2146.0 +1916804,1916804,1938194,1,19.0,1.0,-9.0,-9.0,3,64400.0,1061242,0.0,22808.0,2147.0 +1916808,1916808,1938198,1,19.0,1.0,-9.0,-9.0,3,7500.0,1070673,0.0,22814.0,2150.0 +1916809,1916809,1938199,1,19.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22808.0,2147.0 +1916812,1916812,1938202,1,19.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1916817,1916817,1938207,1,19.0,1.0,-9.0,-9.0,3,22000.0,1061242,0.0,22808.0,2147.0 +1916821,1916821,1938211,1,19.0,1.0,-9.0,-9.0,3,66800.0,1035838,0.0,22808.0,2147.0 +1916823,1916823,1938213,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1916830,1916830,1938220,1,19.0,1.0,-9.0,-9.0,3,13000.0,1035838,0.0,22810.0,2148.0 +1916832,1916832,1938222,1,19.0,1.0,-9.0,-9.0,3,3700.0,1061242,0.0,22806.0,2146.0 +1916833,1916833,1938223,1,19.0,1.0,-9.0,-9.0,3,2500.0,1013097,0.0,22808.0,2147.0 +1916834,1916834,1938224,1,19.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22806.0,2146.0 +1916844,1916844,1938234,1,19.0,1.0,-9.0,-9.0,3,10000.0,1035838,0.0,22808.0,2147.0 +1916854,1916854,1938244,1,19.0,1.0,-9.0,-9.0,3,6030.0,1070673,0.0,22808.0,2147.0 +1916860,1916860,1938250,1,19.0,1.0,-9.0,-9.0,3,62000.0,1070673,0.0,22758.0,2127.0 +1916862,1916862,1938252,1,19.0,1.0,-9.0,-9.0,3,21000.0,1013097,0.0,22808.0,2147.0 +1916863,1916863,1938253,1,19.0,1.0,-9.0,-9.0,3,27000.0,1061242,0.0,22765.0,2130.0 +1916868,1916868,1938258,1,19.0,1.0,-9.0,-9.0,3,64500.0,1035838,0.0,22808.0,2147.0 +1916876,1916876,1938266,1,19.0,1.0,-9.0,-9.0,3,3200.0,1035838,0.0,22808.0,2147.0 +1916877,1916877,1938267,1,19.0,1.0,-9.0,-9.0,3,8200.0,1070673,0.0,22808.0,2147.0 +1916878,1916878,1938268,1,19.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1916880,1916880,1938270,1,19.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22765.0,2130.0 +1916885,1916885,1938275,1,19.0,1.0,-9.0,-9.0,3,31100.0,1013097,0.0,22808.0,2147.0 +1916887,1916887,1938277,1,19.0,1.0,-9.0,-9.0,3,10400.0,1035838,0.0,22765.0,2130.0 +1916892,1916892,1938282,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22765.0,2130.0 +1916896,1916896,1938286,1,19.0,1.0,-9.0,-9.0,3,5000.0,1013097,0.0,22808.0,2147.0 +1916898,1916898,1938288,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22765.0,2130.0 +1916899,1916899,1938289,1,19.0,1.0,-9.0,-9.0,3,31750.0,1035838,0.0,22765.0,2130.0 +1916900,1916900,1938290,1,19.0,1.0,-9.0,-9.0,3,15500.0,1061242,0.0,22808.0,2147.0 +1916907,1916907,1938297,1,19.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1916911,1916911,1938301,1,19.0,1.0,-9.0,-9.0,3,2300.0,1013097,0.0,22806.0,2146.0 +1916917,1916917,1938307,1,19.0,1.0,-9.0,-9.0,3,31000.0,1061242,0.0,22758.0,2127.0 +1916920,1916920,1938310,1,19.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22806.0,2146.0 +1916927,1916927,1938317,1,19.0,1.0,-9.0,-9.0,3,10000.0,1035838,0.0,22765.0,2130.0 +1916931,1916931,1938321,1,19.0,1.0,-9.0,-9.0,3,41600.0,1054346,0.0,22808.0,2147.0 +1916932,1916932,1938322,1,19.0,1.0,-9.0,-9.0,3,22500.0,1013097,0.0,22765.0,2130.0 +1916935,1916935,1938325,1,19.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1916937,1916937,1938327,1,19.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22808.0,2147.0 +1916943,1916943,1938333,1,19.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1916950,1916950,1938340,1,19.0,1.0,-9.0,-9.0,3,74500.0,1013097,0.0,22758.0,2127.0 +1916951,1916951,1938341,1,19.0,1.0,-9.0,-9.0,3,62000.0,1070673,0.0,22765.0,2130.0 +1916954,1916954,1938344,1,19.0,1.0,-9.0,-9.0,3,3200.0,1035838,0.0,22814.0,2150.0 +1916955,1916955,1938345,1,19.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1916959,1916959,1938349,1,19.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1916960,1916960,1938350,1,19.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22808.0,2147.0 +1916962,1916962,1938352,1,19.0,1.0,-9.0,-9.0,3,13000.0,1054346,0.0,22808.0,2147.0 +1916970,1916970,1938360,1,19.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22808.0,2147.0 +1916981,1916981,1938371,1,19.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22765.0,2130.0 +1916987,1916987,1938377,1,19.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1916994,1916994,1938384,1,19.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22808.0,2147.0 +1917001,1917001,1938391,1,19.0,1.0,-9.0,-9.0,3,4000.0,1013097,0.0,22814.0,2150.0 +1917006,1917006,1938396,1,19.0,1.0,-9.0,-9.0,3,30500.0,1035838,0.0,22808.0,2147.0 +1917007,1917007,1938397,1,19.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22765.0,2130.0 +1917010,1917010,1938400,1,19.0,1.0,-9.0,-9.0,3,11600.0,1013097,0.0,22765.0,2130.0 +1917012,1917012,1938402,1,19.0,1.0,-9.0,-9.0,3,4300.0,1013097,0.0,22808.0,2147.0 +1917014,1917014,1938404,1,19.0,1.0,-9.0,-9.0,3,30400.0,1035838,0.0,22765.0,2130.0 +1917016,1917016,1938406,1,19.0,1.0,-9.0,-9.0,3,22500.0,1070673,0.0,22810.0,2148.0 +1917020,1917020,1938410,1,19.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22765.0,2130.0 +1917022,1917022,1938412,1,19.0,1.0,-9.0,-9.0,3,3400.0,1054346,0.0,22765.0,2130.0 +1917023,1917023,1938413,1,19.0,1.0,-9.0,-9.0,3,20480.0,1035838,0.0,22808.0,2147.0 +1917030,1917030,1938420,1,19.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22765.0,2130.0 +1917031,1917031,1938421,1,19.0,1.0,-9.0,-9.0,3,30300.0,1054346,0.0,22806.0,2146.0 +1917037,1917037,1938427,1,19.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22806.0,2146.0 +1917039,1917039,1938429,1,19.0,1.0,-9.0,-9.0,3,18900.0,1061242,0.0,22808.0,2147.0 +1917041,1917041,1938431,1,19.0,1.0,-9.0,-9.0,3,10600.0,1054346,0.0,22806.0,2146.0 +1917042,1917042,1938432,1,19.0,1.0,-9.0,-9.0,3,66500.0,1035838,0.0,22813.0,2150.0 +1917045,1917045,1938435,1,19.0,1.0,-9.0,-9.0,3,7000.0,1035838,0.0,22765.0,2130.0 +1917049,1917049,1938439,1,19.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1917052,1917052,1938442,1,19.0,1.0,-9.0,-9.0,3,24500.0,1061242,0.0,22806.0,2146.0 +1917053,1917053,1938443,1,19.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22808.0,2147.0 +1917054,1917054,1938444,1,19.0,1.0,-9.0,-9.0,3,21000.0,1035838,0.0,22808.0,2147.0 +1917059,1917059,1938449,1,19.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22814.0,2150.0 +1917062,1917062,1938452,1,19.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22760.0,2128.0 +1917067,1917067,1938457,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22810.0,2148.0 +1917072,1917072,1938462,1,19.0,1.0,-9.0,-9.0,3,62000.0,1070673,0.0,22808.0,2147.0 +1917075,1917075,1938465,1,19.0,1.0,-9.0,-9.0,3,13500.0,1054346,0.0,22815.0,2150.0 +1917080,1917080,1938470,1,19.0,1.0,-9.0,-9.0,3,18020.0,1013097,0.0,22765.0,2130.0 +1917081,1917081,1938471,1,19.0,1.0,-9.0,-9.0,3,13000.0,1054346,0.0,22808.0,2147.0 +1917082,1917082,1938472,1,19.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22808.0,2147.0 +1917083,1917083,1938473,1,19.0,1.0,-9.0,-9.0,3,30300.0,1054346,0.0,22815.0,2150.0 +1917085,1917085,1938475,1,19.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22806.0,2146.0 +1917086,1917086,1938476,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1917089,1917089,1938479,1,19.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1917092,1917092,1938482,1,19.0,1.0,-9.0,-9.0,3,68800.0,1061242,0.0,22808.0,2147.0 +1917093,1917093,1938483,1,19.0,1.0,-9.0,-9.0,3,4300.0,1061242,0.0,22808.0,2147.0 +1917094,1917094,1938484,1,19.0,1.0,-9.0,-9.0,3,33000.0,1035838,0.0,22815.0,2150.0 +1917095,1917095,1938485,1,19.0,1.0,-9.0,-9.0,3,10600.0,1070673,0.0,22808.0,2147.0 +1917096,1917096,1938486,1,19.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22765.0,2130.0 +1917097,1917097,1938487,1,19.0,1.0,-9.0,-9.0,3,6400.0,1070673,0.0,22760.0,2128.0 +1917103,1917103,1938493,1,19.0,1.0,-9.0,-9.0,3,65300.0,1061242,0.0,22808.0,2147.0 +1917106,1917106,1938496,1,19.0,1.0,-9.0,-9.0,3,19770.0,1061242,0.0,22808.0,2147.0 +1917108,1917108,1938498,1,19.0,1.0,-9.0,-9.0,3,3200.0,1054346,0.0,22808.0,2147.0 +1917110,1917110,1938500,1,19.0,1.0,-9.0,-9.0,3,29500.0,1013097,0.0,22814.0,2150.0 +1917116,1917116,1938506,1,19.0,1.0,-9.0,-9.0,3,7500.0,1070673,0.0,22806.0,2146.0 +1917117,1917117,1938507,1,19.0,1.0,-9.0,-9.0,3,31000.0,1054346,0.0,22808.0,2147.0 +1917121,1917121,1938511,1,19.0,2.0,-9.0,-9.0,3,5000.0,1035838,0.0,22808.0,2147.0 +1917122,1917122,1938512,1,19.0,2.0,-9.0,-9.0,3,27000.0,1013097,0.0,22808.0,2147.0 +1917123,1917123,1938513,1,19.0,2.0,-9.0,-9.0,3,3700.0,1054346,0.0,22808.0,2147.0 +1917125,1917125,1938515,1,19.0,2.0,-9.0,-9.0,3,6700.0,1061242,0.0,22808.0,2147.0 +1917126,1917126,1938516,1,19.0,2.0,-9.0,-9.0,3,11000.0,1061242,0.0,22765.0,2130.0 +1917131,1917131,1938521,1,19.0,2.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1917134,1917134,1938524,1,19.0,2.0,-9.0,-9.0,3,13200.0,1061242,0.0,22808.0,2147.0 +1917136,1917136,1938526,1,19.0,2.0,-9.0,-9.0,3,5000.0,1061242,0.0,22765.0,2130.0 +1917139,1917139,1938529,1,19.0,2.0,-9.0,-9.0,3,16700.0,1035838,0.0,22806.0,2146.0 +1917140,1917140,1938530,1,19.0,2.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1917143,1917143,1938533,1,19.0,2.0,-9.0,-9.0,3,29700.0,1035838,0.0,22808.0,2147.0 +1917144,1917144,1938534,1,19.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1917151,1917151,1938541,1,19.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1917154,1917154,1938544,1,19.0,2.0,-9.0,-9.0,3,3000.0,1013097,0.0,22808.0,2147.0 +1917157,1917157,1938547,1,19.0,2.0,-9.0,-9.0,3,31000.0,1035838,0.0,22808.0,2147.0 +1917158,1917158,1938548,1,19.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1917159,1917159,1938549,1,19.0,2.0,-9.0,-9.0,3,1400.0,1035838,0.0,22808.0,2147.0 +1917162,1917162,1938552,1,19.0,2.0,-9.0,-9.0,3,3000.0,1035838,0.0,22808.0,2147.0 +1917166,1917166,1938556,1,19.0,2.0,-9.0,-9.0,3,360.0,1035838,0.0,22765.0,2130.0 +1917170,1917170,1938560,1,19.0,2.0,-9.0,-9.0,3,27000.0,1013097,0.0,22810.0,2148.0 +1917172,1917172,1938562,1,19.0,2.0,-9.0,-9.0,3,30000.0,1013097,0.0,22814.0,2150.0 +1917173,1917173,1938563,1,19.0,2.0,-9.0,-9.0,3,7300.0,1035838,0.0,22808.0,2147.0 +1917175,1917175,1938565,1,19.0,2.0,-9.0,-9.0,3,1400.0,1035838,0.0,22808.0,2147.0 +1917176,1917176,1938566,1,19.0,2.0,-9.0,-9.0,3,400.0,1070673,0.0,22806.0,2146.0 +1917178,1917178,1938568,1,19.0,2.0,-9.0,-9.0,3,520.0,1070673,0.0,22808.0,2147.0 +1917181,1917181,1938571,1,19.0,2.0,-9.0,-9.0,3,930.0,1035838,0.0,22808.0,2147.0 +1917182,1917182,1938572,1,19.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22806.0,2146.0 +1917185,1917185,1938575,1,19.0,4.0,-9.0,-9.0,3,30800.0,1035838,0.0,22765.0,2130.0 +1917186,1917186,1938576,1,19.0,4.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1917187,1917187,1938577,1,19.0,4.0,-9.0,-9.0,3,30300.0,1035838,0.0,22808.0,2147.0 +1917192,1917192,1938582,1,19.0,4.0,-9.0,-9.0,3,29300.0,1035838,0.0,22808.0,2147.0 +1917193,1917193,1938583,1,19.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22758.0,2127.0 +1917194,1917194,1938584,1,19.0,4.0,-9.0,-9.0,3,23100.0,1070673,0.0,22808.0,2147.0 +1917196,1917196,1938586,1,19.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22806.0,2146.0 +1917197,1917197,1938587,1,19.0,4.0,-9.0,-9.0,3,9000.0,1035838,0.0,22808.0,2147.0 +1917198,1917198,1938588,1,19.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1917199,1917199,1938589,1,19.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22765.0,2130.0 +1917201,1917201,1938591,1,19.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22765.0,2130.0 +1917208,1917208,1938598,1,19.0,4.0,-9.0,-9.0,3,13500.0,1054346,0.0,22808.0,2147.0 +1917209,1917209,1938599,1,19.0,4.0,-9.0,-9.0,3,62001.0,1070673,0.0,22808.0,2147.0 +1917212,1917212,1938602,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1917213,1917213,1938603,1,19.0,4.0,-9.0,-9.0,3,62001.0,1070673,0.0,22815.0,2150.0 +1917214,1917214,1938604,1,19.0,4.0,-9.0,-9.0,3,19000.0,1070673,0.0,22765.0,2130.0 +1917217,1917217,1938607,1,19.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22761.0,2128.0 +1917218,1917218,1938608,1,19.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22808.0,2147.0 +1917221,1917221,1938611,1,19.0,4.0,-9.0,-9.0,3,31500.0,1013097,0.0,22765.0,2130.0 +1917225,1917225,1938615,1,19.0,4.0,-9.0,-9.0,3,7000.0,1054346,0.0,22808.0,2147.0 +1917232,1917232,1938622,1,19.0,4.0,-9.0,-9.0,3,12000.0,1054346,0.0,22808.0,2147.0 +1917233,1917233,1938623,1,19.0,4.0,-9.0,-9.0,3,25000.0,1070673,0.0,22818.0,2150.0 +1917240,1917240,1938630,1,19.0,4.0,-9.0,-9.0,3,31500.0,1013097,0.0,22808.0,2147.0 +1917242,1917242,1938632,1,19.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1917243,1917243,1938633,1,19.0,4.0,-9.0,-9.0,3,45060.0,1070673,0.0,22806.0,2146.0 +1917246,1917246,1938636,1,19.0,4.0,-9.0,-9.0,3,30000.0,1054346,0.0,22808.0,2147.0 +1917256,1917256,1938646,1,19.0,4.0,-9.0,-9.0,3,29130.0,1035838,0.0,22808.0,2147.0 +1917259,1917259,1938649,1,19.0,4.0,-9.0,-9.0,3,3550.0,1054346,0.0,22808.0,2147.0 +1917261,1917261,1938651,1,19.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22806.0,2146.0 +1917263,1917263,1938653,1,19.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22808.0,2147.0 +1917264,1917264,1938654,1,19.0,4.0,-9.0,-9.0,3,64000.0,1070673,0.0,22808.0,2147.0 +1917265,1917265,1938655,1,19.0,4.0,-9.0,-9.0,3,64001.0,1061242,0.0,22808.0,2147.0 +1917267,1917267,1938657,1,19.0,4.0,-9.0,-9.0,3,5600.0,1013097,0.0,22806.0,2146.0 +1917270,1917270,1938660,1,19.0,4.0,-9.0,-9.0,3,29300.0,1035838,0.0,22765.0,2130.0 +1917272,1917272,1938662,1,19.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22806.0,2146.0 +1917275,1917275,1938665,1,19.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22808.0,2147.0 +1917276,1917276,1938666,1,19.0,4.0,-9.0,-9.0,3,75500.0,1054346,0.0,22808.0,2147.0 +1917279,1917279,1938669,1,19.0,4.0,-9.0,-9.0,3,66000.0,1035838,0.0,22765.0,2130.0 +1917281,1917281,1938671,1,19.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1917285,1917285,1938675,1,19.0,4.0,-9.0,-9.0,3,12000.0,1054346,0.0,22760.0,2128.0 +1917293,1917293,1938683,1,19.0,4.0,-9.0,-9.0,3,40800.0,1061242,0.0,22814.0,2150.0 +1917295,1917295,1938685,1,19.0,4.0,-9.0,-9.0,3,28000.0,1035838,0.0,22808.0,2147.0 +1917296,1917296,1938686,1,19.0,4.0,-9.0,-9.0,3,69300.0,1061242,0.0,22808.0,2147.0 +1917298,1917298,1938688,1,19.0,4.0,-9.0,-9.0,3,5600.0,1013097,0.0,22765.0,2130.0 +1917299,1917299,1938689,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1917301,1917301,1938691,1,19.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22760.0,2128.0 +1917302,1917302,1938692,1,19.0,4.0,-9.0,-9.0,3,7610.0,1061242,0.0,22808.0,2147.0 +1917303,1917303,1938693,1,19.0,4.0,-9.0,-9.0,3,22400.0,1070673,0.0,22808.0,2147.0 +1917305,1917305,1938695,1,19.0,4.0,-9.0,-9.0,3,35030.0,1054346,0.0,22808.0,2147.0 +1917306,1917306,1938696,1,19.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22760.0,2128.0 +1917311,1917311,1938701,1,19.0,4.0,-9.0,-9.0,3,18100.0,1035838,0.0,22808.0,2147.0 +1917319,1917319,1938709,1,19.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1917320,1917320,1938710,1,19.0,4.0,-9.0,-9.0,3,66000.0,1035838,0.0,22765.0,2130.0 +1917321,1917321,1938711,1,19.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22806.0,2146.0 +1917323,1917323,1938713,1,19.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22806.0,2146.0 +1917324,1917324,1938714,1,19.0,4.0,-9.0,-9.0,3,26000.0,1013097,0.0,22814.0,2150.0 +1917325,1917325,1938715,1,19.0,4.0,-9.0,-9.0,3,22400.0,1070673,0.0,22765.0,2130.0 +1917326,1917326,1938716,1,19.0,4.0,-9.0,-9.0,3,900.0,1035838,0.0,22808.0,2147.0 +1917328,1917328,1938718,1,19.0,4.0,-9.0,-9.0,3,320.0,1054346,0.0,22806.0,2146.0 +1917332,1917332,1938722,1,19.0,4.0,-9.0,-9.0,3,26400.0,1061242,0.0,22808.0,2147.0 +1917333,1917333,1938723,1,19.0,4.0,-9.0,-9.0,3,75500.0,1054346,0.0,22808.0,2147.0 +1917340,1917340,1938730,1,19.0,4.0,-9.0,-9.0,3,45060.0,1070673,0.0,22808.0,2147.0 +1917341,1917341,1938731,1,19.0,4.0,-9.0,-9.0,3,46500.0,1013097,0.0,22765.0,2130.0 +1917342,1917342,1938732,1,19.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22808.0,2147.0 +1917347,1917347,1938737,1,19.0,4.0,-9.0,-9.0,3,28000.0,1013097,0.0,22810.0,2148.0 +1917349,1917349,1938739,1,19.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22808.0,2147.0 +1917351,1917351,1938741,1,19.0,4.0,-9.0,-9.0,3,35030.0,1054346,0.0,22808.0,2147.0 +1917359,1917359,1938749,1,19.0,4.0,-9.0,-9.0,3,26350.0,1061242,0.0,22814.0,2150.0 +1917360,1917360,1938750,1,19.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22758.0,2127.0 +1917375,1917375,1938765,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1917376,1917376,1938766,1,19.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1917379,1917379,1938769,1,19.0,4.0,-9.0,-9.0,3,31300.0,1035838,0.0,22808.0,2147.0 +1917380,1917380,1938770,1,19.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22808.0,2147.0 +1917381,1917381,1938771,1,19.0,4.0,-9.0,-9.0,3,64300.0,1061242,0.0,22814.0,2150.0 +1917382,1917382,1938772,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22806.0,2146.0 +1917383,1917383,1938773,1,19.0,4.0,-9.0,-9.0,3,75000.0,1013097,0.0,22806.0,2146.0 +1917395,1917395,1938785,1,19.0,4.0,-9.0,-9.0,3,26200.0,1035838,0.0,22808.0,2147.0 +1917397,1917397,1938787,1,19.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22808.0,2147.0 +1917403,1917403,1938793,1,19.0,4.0,-9.0,-9.0,3,28000.0,1035838,0.0,22808.0,2147.0 +1917405,1917405,1938795,1,19.0,4.0,-9.0,-9.0,3,18000.0,1054346,0.0,22808.0,2147.0 +1917413,1917413,1938803,1,19.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1917417,1917417,1938807,1,19.0,4.0,-9.0,-9.0,3,2650.0,1061242,0.0,22808.0,2147.0 +1917420,1917420,1938810,1,19.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22806.0,2146.0 +1917425,1917425,1938815,1,19.0,4.0,-9.0,-9.0,3,11000.0,1035838,0.0,22758.0,2127.0 +1917428,1917428,1938818,1,19.0,4.0,-9.0,-9.0,3,14000.0,1013097,0.0,22765.0,2130.0 +1917431,1917431,1938821,1,19.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1917432,1917432,1938822,1,19.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22810.0,2148.0 +1917439,1917439,1938829,1,19.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1917441,1917441,1938831,1,19.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22814.0,2150.0 +1917443,1917443,1938833,1,19.0,4.0,-9.0,-9.0,3,6800.0,1061242,0.0,22765.0,2130.0 +1917450,1917450,1938840,1,19.0,4.0,-9.0,-9.0,3,67000.0,1054346,0.0,22808.0,2147.0 +1917454,1917454,1938844,1,19.0,4.0,-9.0,-9.0,3,5600.0,1013097,0.0,22808.0,2147.0 +1917455,1917455,1938845,1,19.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22808.0,2147.0 +1917457,1917457,1938847,1,19.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22806.0,2146.0 +1917458,1917458,1938848,1,19.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22806.0,2146.0 +1917459,1917459,1938849,1,19.0,4.0,-9.0,-9.0,3,10800.0,1070673,0.0,22806.0,2146.0 +1917460,1917460,1938850,1,19.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22808.0,2147.0 +1917462,1917462,1938852,1,19.0,4.0,-9.0,-9.0,3,64000.0,1070673,0.0,22758.0,2127.0 +1917463,1917463,1938853,1,19.0,4.0,-9.0,-9.0,3,35030.0,1054346,0.0,22808.0,2147.0 +1917464,1917464,1938854,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1917465,1917465,1938855,1,19.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1917466,1917466,1938856,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1917468,1917468,1938858,1,19.0,4.0,-9.0,-9.0,3,25800.0,1035838,0.0,22806.0,2146.0 +1917473,1917473,1938863,1,19.0,4.0,-9.0,-9.0,3,25800.0,1035838,0.0,22813.0,2150.0 +1917474,1917474,1938864,1,19.0,4.0,-9.0,-9.0,3,29500.0,1013097,0.0,22808.0,2147.0 +1917477,1917477,1938867,1,19.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22808.0,2147.0 +1917481,1917481,1938871,1,19.0,4.0,-9.0,-9.0,3,5000.0,1013097,0.0,22806.0,2146.0 +1917485,1917485,1938875,1,19.0,4.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1917487,1917487,1938877,1,19.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22765.0,2130.0 +1917488,1917488,1938878,1,19.0,4.0,-9.0,-9.0,3,25800.0,1035838,0.0,22765.0,2130.0 +1917490,1917490,1938880,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1917492,1917492,1938882,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22814.0,2150.0 +1917494,1917494,1938884,1,19.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1917497,1917497,1938887,1,19.0,4.0,-9.0,-9.0,3,19500.0,1035838,0.0,22808.0,2147.0 +1917498,1917498,1938888,1,19.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1917499,1917499,1938889,1,19.0,4.0,-9.0,-9.0,3,18000.0,1070673,0.0,22814.0,2150.0 +1917500,1917500,1938890,1,19.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1917501,1917501,1938891,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1917507,1917507,1938897,1,19.0,4.0,-9.0,-9.0,3,18100.0,1035838,0.0,22808.0,2147.0 +1917510,1917510,1938900,1,19.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22808.0,2147.0 +1917513,1917513,1938903,1,19.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22761.0,2128.0 +1917514,1917514,1938904,1,19.0,4.0,-9.0,-9.0,3,900.0,1035838,0.0,22765.0,2130.0 +1917515,1917515,1938905,1,19.0,4.0,-9.0,-9.0,3,29600.0,1035838,0.0,22815.0,2150.0 +1917517,1917517,1938907,1,19.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22806.0,2146.0 +1917525,1917525,1938915,1,19.0,4.0,-9.0,-9.0,3,30000.0,1054346,0.0,22808.0,2147.0 +1917531,1917531,1938921,1,19.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22808.0,2147.0 +1917532,1917532,1938922,1,19.0,4.0,-9.0,-9.0,3,5600.0,1013097,0.0,22806.0,2146.0 +1917533,1917533,1938923,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1917540,1917540,1938930,1,19.0,4.0,-9.0,-9.0,3,320.0,1054346,0.0,22758.0,2127.0 +1917541,1917541,1938931,1,19.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22808.0,2147.0 +1917544,1917544,1938934,1,19.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22806.0,2146.0 +1917547,1917547,1938937,1,19.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22765.0,2130.0 +1917551,1917551,1938941,1,19.0,4.0,-9.0,-9.0,3,35000.0,1070673,0.0,22806.0,2146.0 +1917552,1917552,1938942,1,19.0,4.0,-9.0,-9.0,3,75500.0,1054346,0.0,22818.0,2150.0 +1917560,1917560,1938950,1,19.0,4.0,-9.0,-9.0,3,320.0,1054346,0.0,22806.0,2146.0 +1917571,1917571,1938961,1,19.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1917573,1917573,1938963,1,19.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22808.0,2147.0 +1917575,1917575,1938965,1,19.0,4.0,-9.0,-9.0,3,64500.0,1070673,0.0,22815.0,2150.0 +1917576,1917576,1938966,1,19.0,3.0,-9.0,-9.0,3,66600.0,1035838,0.0,22808.0,2147.0 +1917583,1917583,1938973,1,19.0,3.0,-9.0,-9.0,3,14000.0,1054346,0.0,22806.0,2146.0 +1917587,1917587,1938977,1,19.0,3.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1917589,1917589,1938979,1,19.0,3.0,-9.0,-9.0,3,2000.0,1061242,0.0,22806.0,2146.0 +1917597,1917597,1938987,1,19.0,3.0,-9.0,-9.0,3,13000.0,1013097,0.0,22808.0,2147.0 +1917599,1917599,1938989,1,19.0,3.0,-9.0,-9.0,3,7000.0,1061242,0.0,22808.0,2147.0 +1917601,1917601,1938991,1,19.0,3.0,-9.0,-9.0,3,6000.0,1061242,0.0,22808.0,2147.0 +1917603,1917603,1938993,1,19.0,3.0,-9.0,-9.0,3,5000.0,1070673,0.0,22765.0,2130.0 +1917604,1917604,1938994,1,19.0,3.0,-9.0,-9.0,3,8000.0,1070673,0.0,22808.0,2147.0 +1917607,1917607,1938997,1,19.0,3.0,-9.0,-9.0,3,5000.0,1013097,0.0,22808.0,2147.0 +1917608,1917608,1938998,1,19.0,3.0,-9.0,-9.0,3,9500.0,1013097,0.0,22808.0,2147.0 +1917612,1917612,1939002,1,19.0,3.0,-9.0,-9.0,3,9500.0,1013097,0.0,22808.0,2147.0 +1917614,1917614,1939004,1,19.0,3.0,-9.0,-9.0,3,5000.0,1013097,0.0,22806.0,2146.0 +1917616,1917616,1939006,1,19.0,3.0,-9.0,-9.0,3,7000.0,1061242,0.0,22765.0,2130.0 +1917618,1917618,1939008,1,19.0,3.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1917623,1917623,1939013,1,19.0,3.0,-9.0,-9.0,3,9890.0,1035838,0.0,22806.0,2146.0 +1917626,1917626,1939016,1,19.0,3.0,-9.0,-9.0,3,3500.0,1070673,0.0,22806.0,2146.0 +1917627,1917627,1939017,1,19.0,3.0,-9.0,-9.0,3,9890.0,1035838,0.0,22806.0,2146.0 +1917631,1917631,1939021,1,19.0,3.0,-9.0,-9.0,3,8000.0,1070673,0.0,22808.0,2147.0 +1917632,1917632,1939022,1,19.0,3.0,-9.0,-9.0,3,41600.0,1054346,0.0,22808.0,2147.0 +1917635,1917635,1939025,1,19.0,3.0,-9.0,-9.0,3,27500.0,1035838,0.0,22808.0,2147.0 +1917637,1917637,1939027,1,19.0,3.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1917644,1917644,1939034,1,19.0,3.0,-9.0,-9.0,3,6000.0,1061242,0.0,22808.0,2147.0 +1917650,1917650,1939040,1,19.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22806.0,2146.0 +1917651,1917651,1939041,1,19.0,4.0,-9.0,-9.0,3,73480.0,1013097,0.0,22814.0,2150.0 +1917652,1917652,1939042,1,19.0,2.0,-9.0,-9.0,3,31000.0,1035838,0.0,22808.0,2147.0 +1917655,1917655,1939045,1,19.0,4.0,-9.0,-9.0,3,14800.0,1035838,0.0,22808.0,2147.0 +1917657,1917657,1939047,1,19.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22765.0,2130.0 +1917660,1917660,1939050,1,19.0,3.0,-9.0,-9.0,3,6000.0,1061242,0.0,22808.0,2147.0 +1917664,1917664,1939054,1,19.0,1.0,-9.0,-9.0,3,1200.0,1070673,0.0,22765.0,2130.0 +1917667,1917667,1939057,1,19.0,4.0,-9.0,-9.0,3,64000.0,1070673,0.0,22808.0,2147.0 +1917669,1917669,1939059,1,19.0,1.0,-9.0,-9.0,3,4000.0,1013097,0.0,22808.0,2147.0 +1917672,1917672,1939062,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1917677,1917677,1939067,1,19.0,1.0,-9.0,-9.0,3,3700.0,1061242,0.0,22808.0,2147.0 +1917680,1917680,1939070,1,19.0,4.0,-9.0,-9.0,3,2800.0,1035838,0.0,22808.0,2147.0 +1917681,1917681,1939071,1,19.0,1.0,-9.0,-9.0,3,68500.0,1054346,0.0,22758.0,2127.0 +1917685,1917685,1939075,1,19.0,4.0,-9.0,-9.0,3,25800.0,1035838,0.0,22808.0,2147.0 +1917688,1917688,1939078,1,19.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22806.0,2146.0 +1917692,1917692,1939082,1,19.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1917694,1917694,1939084,1,19.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22806.0,2146.0 +1917695,1917695,1939085,1,19.0,1.0,-9.0,-9.0,3,4000.0,1013097,0.0,22765.0,2130.0 +1917696,1917696,1939086,1,19.0,1.0,-9.0,-9.0,3,29400.0,1061242,0.0,22808.0,2147.0 +1917701,1917701,1939091,1,19.0,1.0,-9.0,-9.0,3,74300.0,1013097,0.0,22765.0,2130.0 +1917702,1917702,1939092,1,19.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1917707,1917707,1939097,1,19.0,1.0,-9.0,-9.0,3,65000.0,1054346,0.0,22808.0,2147.0 +1917708,1917708,1939098,1,19.0,1.0,-9.0,-9.0,3,6100.0,1061242,0.0,22808.0,2147.0 +1917709,1917709,1939099,1,19.0,1.0,-9.0,-9.0,3,14200.0,1054346,0.0,22808.0,2147.0 +1917712,1917712,1939102,1,19.0,4.0,-9.0,-9.0,3,6700.0,1035838,0.0,22765.0,2130.0 +1917713,1917713,1939103,1,19.0,1.0,-9.0,-9.0,3,10820.0,1061242,0.0,22806.0,2146.0 +1917714,1917714,1939104,1,19.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1917716,1917716,1939106,1,19.0,1.0,-9.0,-9.0,3,41200.0,1035838,0.0,22818.0,2150.0 +1917717,1917717,1939107,1,19.0,1.0,-9.0,-9.0,3,20480.0,1035838,0.0,22808.0,2147.0 +1917718,1917718,1939108,1,19.0,2.0,-9.0,-9.0,3,5000.0,1061242,0.0,22810.0,2148.0 +1917720,1917720,1939110,1,19.0,1.0,-9.0,-9.0,3,17000.0,1013097,0.0,22808.0,2147.0 +1917721,1917721,1939111,1,19.0,1.0,-9.0,-9.0,3,4950.0,1054346,0.0,22808.0,2147.0 +1917722,1917722,1939112,1,19.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22806.0,2146.0 +1917724,1917724,1939114,1,19.0,1.0,-9.0,-9.0,3,2100.0,1054346,0.0,22808.0,2147.0 +1917728,1917728,1939118,1,19.0,1.0,-9.0,-9.0,3,16000.0,1013097,0.0,22806.0,2146.0 +1917729,1917729,1939119,1,19.0,1.0,-9.0,-9.0,3,15500.0,1035838,0.0,22815.0,2150.0 +1917731,1917731,1939121,1,19.0,1.0,-9.0,-9.0,3,7610.0,1061242,0.0,22808.0,2147.0 +1917732,1917732,1939122,1,19.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22806.0,2146.0 +1917733,1917733,1939123,1,19.0,1.0,-9.0,-9.0,3,13150.0,1061242,0.0,22814.0,2150.0 +1917738,1917738,1939128,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1917740,1917740,1939130,1,19.0,1.0,-9.0,-9.0,3,65200.0,1070673,0.0,22808.0,2147.0 +1917741,1917741,1939131,1,19.0,1.0,-9.0,-9.0,3,14200.0,1054346,0.0,22815.0,2150.0 +1917743,1917743,1939133,1,19.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22808.0,2147.0 +1917751,1917751,1939141,1,19.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22808.0,2147.0 +1917756,1917756,1939146,1,19.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22815.0,2150.0 +1917757,1917757,1939147,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1917759,1917759,1939149,1,19.0,4.0,-9.0,-9.0,3,800.0,1035838,0.0,22806.0,2146.0 +1917765,1917765,1939155,1,19.0,1.0,-9.0,-9.0,3,28500.0,1013097,0.0,22808.0,2147.0 +1917767,1917767,1939157,1,19.0,1.0,-9.0,-9.0,3,7500.0,1035838,0.0,22808.0,2147.0 +1917771,1917771,1939161,1,19.0,4.0,-9.0,-9.0,3,5600.0,1013097,0.0,22808.0,2147.0 +1917772,1917772,1939162,1,19.0,1.0,-9.0,-9.0,3,25000.0,1035838,0.0,22808.0,2147.0 +1917774,1917774,1939164,1,19.0,1.0,-9.0,-9.0,3,7000.0,1054346,0.0,22808.0,2147.0 +1917775,1917775,1939165,1,19.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1917778,1917778,1939168,1,19.0,4.0,-9.0,-9.0,3,5000.0,1035838,0.0,22808.0,2147.0 +1917786,1917786,1939176,1,19.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22808.0,2147.0 +1917802,1917802,1939192,1,19.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1917803,1917803,1939193,1,19.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1917805,1917805,1939195,1,19.0,1.0,-9.0,-9.0,3,22800.0,1013097,0.0,22808.0,2147.0 +1917813,1917813,1939203,1,19.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22806.0,2146.0 +1917814,1917814,1939204,1,19.0,2.0,-9.0,-9.0,3,370.0,1070673,0.0,22806.0,2146.0 +1917816,1917816,1939206,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1917818,1917818,1939208,1,19.0,1.0,-9.0,-9.0,3,26500.0,1070673,0.0,22765.0,2130.0 +1917819,1917819,1939209,1,19.0,2.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1917822,1917822,1939212,1,19.0,1.0,-9.0,-9.0,3,30000.0,1061242,0.0,22808.0,2147.0 +1917823,1917823,1939213,1,19.0,4.0,-9.0,-9.0,3,30300.0,1035838,0.0,22808.0,2147.0 +1917824,1917824,1939214,1,19.0,4.0,-9.0,-9.0,3,3550.0,1054346,0.0,22808.0,2147.0 +1917825,1917825,1939215,1,19.0,4.0,-9.0,-9.0,3,30000.0,1070673,0.0,22808.0,2147.0 +1917826,1917826,1939216,1,19.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1917828,1917828,1939218,1,19.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1917831,1917831,1939221,1,19.0,1.0,-9.0,-9.0,3,26000.0,1070673,0.0,22808.0,2147.0 +1917833,1917833,1939223,1,19.0,4.0,-9.0,-9.0,3,30000.0,1070673,0.0,22814.0,2150.0 +1917835,1917835,1939225,1,19.0,3.0,-9.0,-9.0,3,6000.0,1061242,0.0,22806.0,2146.0 +1917838,1917838,1939228,1,19.0,4.0,-9.0,-9.0,3,39600.0,1061242,0.0,22808.0,2147.0 +1917841,1917841,1939231,1,19.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22765.0,2130.0 +1917842,1917842,1939232,1,19.0,1.0,-9.0,-9.0,3,26500.0,1054346,0.0,22808.0,2147.0 +1917844,1917844,1939234,1,19.0,1.0,-9.0,-9.0,3,5320.0,1054346,0.0,22808.0,2147.0 +1917846,1917846,1939236,1,19.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22808.0,2147.0 +1917847,1917847,1939237,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1917848,1917848,1939238,1,19.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22806.0,2146.0 +1917849,1917849,1939239,1,19.0,4.0,-9.0,-9.0,3,18100.0,1035838,0.0,22808.0,2147.0 +1917853,1917853,1939243,1,19.0,1.0,-9.0,-9.0,3,16404.0,1070673,0.0,22808.0,2147.0 +1917857,1917857,1939247,1,19.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22758.0,2127.0 +1917864,1917864,1939254,1,19.0,4.0,-9.0,-9.0,3,39600.0,1061242,0.0,22808.0,2147.0 +1917865,1917865,1939255,1,19.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22806.0,2146.0 +1917867,1917867,1939257,1,19.0,1.0,-9.0,-9.0,3,31210.0,1054346,0.0,22808.0,2147.0 +1917872,1917872,1939262,1,19.0,1.0,-9.0,-9.0,3,27500.0,1070673,0.0,22808.0,2147.0 +1917873,1917873,1939263,1,19.0,1.0,-9.0,-9.0,3,62000.0,1070673,0.0,22808.0,2147.0 +1917874,1917874,1939264,1,19.0,2.0,-9.0,-9.0,3,65010.0,1054346,0.0,22808.0,2147.0 +1917875,1917875,1939265,1,19.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22808.0,2147.0 +1917876,1917876,1939266,1,19.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22808.0,2147.0 +1917878,1917878,1939268,1,19.0,1.0,-9.0,-9.0,3,39500.0,1054346,0.0,22808.0,2147.0 +1917881,1917881,1939271,1,19.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1917882,1917882,1939272,1,19.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22806.0,2146.0 +1917884,1917884,1939274,1,19.0,4.0,-9.0,-9.0,3,26000.0,1013097,0.0,22808.0,2147.0 +1917886,1917886,1939276,1,19.0,1.0,-9.0,-9.0,3,64000.0,1054346,0.0,22810.0,2148.0 +1917890,1917890,1939280,1,19.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22765.0,2130.0 +1917893,1917893,1939283,1,19.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22808.0,2147.0 +1917895,1917895,1939285,1,19.0,1.0,-9.0,-9.0,3,21100.0,1061242,0.0,22808.0,2147.0 +1917896,1917896,1939286,1,19.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22765.0,2130.0 +1917897,1917897,1939287,1,19.0,4.0,-9.0,-9.0,3,6700.0,1035838,0.0,22806.0,2146.0 +1917900,1917900,1939290,1,19.0,1.0,-9.0,-9.0,3,33500.0,1035838,0.0,22808.0,2147.0 +1917901,1917901,1939291,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1917907,1917907,1939297,1,19.0,1.0,-9.0,-9.0,3,400.0,1054346,0.0,22808.0,2147.0 +1917908,1917908,1939298,1,19.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22806.0,2146.0 +1917909,1917909,1939299,1,19.0,4.0,-9.0,-9.0,3,25450.0,1035838,0.0,22808.0,2147.0 +1917914,1917914,1939304,1,19.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22808.0,2147.0 +1917921,1917921,1939311,1,19.0,1.0,-9.0,-9.0,3,69000.0,1035838,0.0,22808.0,2147.0 +1917923,1917923,1939313,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22765.0,2130.0 +1917927,1917927,1939317,1,19.0,1.0,-9.0,-9.0,3,18000.0,1035838,0.0,22808.0,2147.0 +1917928,1917928,1939318,1,19.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22815.0,2150.0 +1917939,1917939,1939329,1,19.0,1.0,-9.0,-9.0,3,25000.0,1035838,0.0,22806.0,2146.0 +1917942,1917942,1939332,1,19.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22808.0,2147.0 +1917944,1917944,1939334,1,19.0,3.0,-9.0,-9.0,3,5000.0,1070673,0.0,22808.0,2147.0 +1917951,1917951,1939341,1,19.0,1.0,-9.0,-9.0,3,500.0,1035838,0.0,22810.0,2148.0 +1917953,1917953,1939343,1,19.0,1.0,-9.0,-9.0,3,13000.0,1070673,0.0,22808.0,2147.0 +1917955,1917955,1939345,1,19.0,1.0,-9.0,-9.0,3,28200.0,1054346,0.0,22815.0,2150.0 +1917962,1917962,1939352,1,19.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1917963,1917963,1939353,1,19.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22765.0,2130.0 +1917965,1917965,1939355,1,19.0,2.0,-9.0,-9.0,3,69500.0,1061242,0.0,22806.0,2146.0 +1917966,1917966,1939356,1,19.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1917970,1917970,1939360,1,19.0,1.0,-9.0,-9.0,3,65000.0,1035838,0.0,22808.0,2147.0 +1917977,1917977,1939367,1,19.0,1.0,-9.0,-9.0,3,73200.0,1013097,0.0,22808.0,2147.0 +1917979,1917979,1939369,1,19.0,4.0,-9.0,-9.0,3,66000.0,1070673,0.0,22808.0,2147.0 +1917980,1917980,1939370,1,19.0,1.0,-9.0,-9.0,3,29200.0,1035838,0.0,22808.0,2147.0 +1917981,1917981,1939371,1,19.0,3.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1917982,1917982,1939372,1,19.0,1.0,-9.0,-9.0,3,26500.0,1061242,0.0,22808.0,2147.0 +1917983,1917983,1939373,1,19.0,4.0,-9.0,-9.0,3,14000.0,1013097,0.0,22808.0,2147.0 +1917987,1917987,1939377,1,19.0,3.0,-9.0,-9.0,3,13600.0,1070673,0.0,22808.0,2147.0 +1917992,1917992,1939382,1,19.0,1.0,-9.0,-9.0,3,3400.0,1054346,0.0,22808.0,2147.0 +1917999,1917999,1939389,1,19.0,4.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1918000,1918000,1939390,1,19.0,4.0,-9.0,-9.0,3,65000.0,1070673,0.0,22814.0,2150.0 +1918003,1918003,1939393,1,19.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22760.0,2128.0 +1918008,1918008,1939398,1,19.0,1.0,-9.0,-9.0,3,28600.0,1070673,0.0,22810.0,2148.0 +1918016,1918016,1939406,1,19.0,3.0,-9.0,-9.0,3,30000.0,1035838,0.0,22808.0,2147.0 +1918032,1918032,1939422,1,19.0,1.0,-9.0,-9.0,3,21000.0,1035838,0.0,22808.0,2147.0 +1918033,1918033,1939423,1,19.0,1.0,-9.0,-9.0,3,8500.0,1013097,0.0,22808.0,2147.0 +1918035,1918035,1939425,1,20.0,1.0,-9.0,-9.0,3,20500.0,1070673,0.0,22806.0,2146.0 +1918037,1918037,1939427,1,20.0,1.0,-9.0,-9.0,3,65050.0,1054346,0.0,22810.0,2148.0 +1918041,1918041,1939431,1,20.0,1.0,-9.0,-9.0,3,42100.0,1035838,0.0,22808.0,2147.0 +1918042,1918042,1939432,1,20.0,1.0,-9.0,-9.0,3,4300.0,1070673,0.0,22806.0,2146.0 +1918048,1918048,1939438,1,20.0,1.0,-9.0,-9.0,3,27000.0,1054346,0.0,22808.0,2147.0 +1918053,1918053,1939443,1,20.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22808.0,2147.0 +1918056,1918056,1939446,1,20.0,1.0,-9.0,-9.0,3,22800.0,1013097,0.0,22765.0,2130.0 +1918058,1918058,1939448,1,20.0,1.0,-9.0,-9.0,3,4000.0,1013097,0.0,22808.0,2147.0 +1918063,1918063,1939453,1,20.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22806.0,2146.0 +1918066,1918066,1939456,1,20.0,1.0,-9.0,-9.0,3,24600.0,1061242,0.0,22765.0,2130.0 +1918068,1918068,1939458,1,20.0,1.0,-9.0,-9.0,3,29000.0,1070673,0.0,22808.0,2147.0 +1918071,1918071,1939461,1,20.0,1.0,-9.0,-9.0,3,64130.0,1061242,0.0,22808.0,2147.0 +1918074,1918074,1939464,1,20.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1918076,1918076,1939466,1,20.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22806.0,2146.0 +1918077,1918077,1939467,1,20.0,1.0,-9.0,-9.0,3,64500.0,1035838,0.0,22765.0,2130.0 +1918082,1918082,1939472,1,20.0,1.0,-9.0,-9.0,3,33500.0,1035838,0.0,22808.0,2147.0 +1918086,1918086,1939476,1,20.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22808.0,2147.0 +1918091,1918091,1939481,1,20.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1918092,1918092,1939482,1,20.0,1.0,-9.0,-9.0,3,38000.0,1054346,0.0,22808.0,2147.0 +1918095,1918095,1939485,1,20.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22806.0,2146.0 +1918096,1918096,1939486,1,20.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1918097,1918097,1939487,1,20.0,1.0,-9.0,-9.0,3,76000.0,1013097,0.0,22808.0,2147.0 +1918101,1918101,1939491,1,20.0,1.0,-9.0,-9.0,3,1350.0,1035838,0.0,22808.0,2147.0 +1918106,1918106,1939496,1,20.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22808.0,2147.0 +1918113,1918113,1939503,1,20.0,1.0,-9.0,-9.0,3,51000.0,1061242,0.0,22808.0,2147.0 +1918114,1918114,1939504,1,20.0,1.0,-9.0,-9.0,3,42500.0,1035838,0.0,22808.0,2147.0 +1918123,1918123,1939513,1,20.0,1.0,-9.0,-9.0,3,710.0,1013097,0.0,22765.0,2130.0 +1918125,1918125,1939515,1,20.0,1.0,-9.0,-9.0,3,15850.0,1013097,0.0,22806.0,2146.0 +1918127,1918127,1939517,1,20.0,1.0,-9.0,-9.0,3,49200.0,1035838,0.0,22808.0,2147.0 +1918128,1918128,1939518,1,20.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22806.0,2146.0 +1918129,1918129,1939519,1,20.0,1.0,-9.0,-9.0,3,9500.0,1054346,0.0,22818.0,2150.0 +1918132,1918132,1939522,1,20.0,1.0,-9.0,-9.0,3,26500.0,1061242,0.0,22808.0,2147.0 +1918136,1918136,1939526,1,20.0,1.0,-9.0,-9.0,3,14300.0,1054346,0.0,22808.0,2147.0 +1918139,1918139,1939529,1,20.0,1.0,-9.0,-9.0,3,81000.0,1013097,0.0,22808.0,2147.0 +1918140,1918140,1939530,1,20.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22813.0,2150.0 +1918143,1918143,1939533,1,20.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22808.0,2147.0 +1918144,1918144,1939534,1,20.0,1.0,-9.0,-9.0,3,30000.0,1054346,0.0,22806.0,2146.0 +1918145,1918145,1939535,1,20.0,1.0,-9.0,-9.0,3,66300.0,1061242,0.0,22808.0,2147.0 +1918147,1918147,1939537,1,20.0,1.0,-9.0,-9.0,3,32800.0,1061242,0.0,22806.0,2146.0 +1918149,1918149,1939539,1,20.0,1.0,-9.0,-9.0,3,12000.0,1061242,0.0,22808.0,2147.0 +1918154,1918154,1939544,1,20.0,1.0,-9.0,-9.0,3,68800.0,1061242,0.0,22806.0,2146.0 +1918155,1918155,1939545,1,20.0,1.0,-9.0,-9.0,3,43000.0,1061242,0.0,22808.0,2147.0 +1918156,1918156,1939546,1,20.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1918159,1918159,1939549,1,20.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22814.0,2150.0 +1918160,1918160,1939550,1,20.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1918164,1918164,1939554,1,20.0,1.0,-9.0,-9.0,3,1540.0,1035838,0.0,22808.0,2147.0 +1918165,1918165,1939555,1,20.0,1.0,-9.0,-9.0,3,2500.0,1070673,0.0,22808.0,2147.0 +1918167,1918167,1939557,1,20.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22765.0,2130.0 +1918170,1918170,1939560,1,20.0,1.0,-9.0,-9.0,3,12500.0,1013097,0.0,22808.0,2147.0 +1918171,1918171,1939561,1,20.0,1.0,-9.0,-9.0,3,64130.0,1061242,0.0,22808.0,2147.0 +1918173,1918173,1939563,1,20.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22808.0,2147.0 +1918175,1918175,1939565,1,20.0,1.0,-9.0,-9.0,3,72000.0,1054346,0.0,22806.0,2146.0 +1918177,1918177,1939567,1,20.0,1.0,-9.0,-9.0,3,4300.0,1013097,0.0,22808.0,2147.0 +1918180,1918180,1939570,1,20.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22806.0,2146.0 +1918181,1918181,1939571,1,20.0,1.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1918183,1918183,1939573,1,20.0,1.0,-9.0,-9.0,3,1400.0,1035838,0.0,22765.0,2130.0 +1918184,1918184,1939574,1,20.0,1.0,-9.0,-9.0,3,31100.0,1013097,0.0,22808.0,2147.0 +1918190,1918190,1939580,1,20.0,1.0,-9.0,-9.0,3,14400.0,1035838,0.0,22808.0,2147.0 +1918194,1918194,1939584,1,20.0,1.0,-9.0,-9.0,3,10900.0,1013097,0.0,22806.0,2146.0 +1918198,1918198,1939588,1,20.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1918200,1918200,1939590,1,20.0,1.0,-9.0,-9.0,3,10700.0,1013097,0.0,22808.0,2147.0 +1918201,1918201,1939591,1,20.0,1.0,-9.0,-9.0,3,89000.0,1054346,0.0,22808.0,2147.0 +1918207,1918207,1939597,1,20.0,1.0,-9.0,-9.0,3,66000.0,1054346,0.0,22808.0,2147.0 +1918210,1918210,1939600,1,20.0,1.0,-9.0,-9.0,3,4000.0,1035838,0.0,22808.0,2147.0 +1918215,1918215,1939605,1,20.0,1.0,-9.0,-9.0,3,27150.0,1013097,0.0,22808.0,2147.0 +1918221,1918221,1939611,1,20.0,2.0,-9.0,-9.0,3,10000.0,1070673,0.0,22765.0,2130.0 +1918225,1918225,1939615,1,20.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1918227,1918227,1939617,1,20.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1918230,1918230,1939620,1,20.0,2.0,-9.0,-9.0,3,10600.0,1061242,0.0,22808.0,2147.0 +1918232,1918232,1939622,1,20.0,2.0,-9.0,-9.0,3,16700.0,1035838,0.0,22758.0,2127.0 +1918233,1918233,1939623,1,20.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1918237,1918237,1939627,1,20.0,2.0,-9.0,-9.0,3,2500.0,1035838,0.0,22808.0,2147.0 +1918241,1918241,1939631,1,20.0,2.0,-9.0,-9.0,3,1000.0,1070673,0.0,22808.0,2147.0 +1918244,1918244,1939634,1,20.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22765.0,2130.0 +1918251,1918251,1939641,1,20.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1918255,1918255,1939645,1,20.0,2.0,-9.0,-9.0,3,2400.0,1070673,0.0,22808.0,2147.0 +1918256,1918256,1939646,1,20.0,2.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1918261,1918261,1939651,1,20.0,2.0,-9.0,-9.0,3,5000.0,1061242,0.0,22765.0,2130.0 +1918263,1918263,1939653,1,20.0,2.0,-9.0,-9.0,3,3000.0,1035838,0.0,22808.0,2147.0 +1918264,1918264,1939654,1,20.0,2.0,-9.0,-9.0,3,370.0,1070673,0.0,22808.0,2147.0 +1918265,1918265,1939655,1,20.0,2.0,-9.0,-9.0,3,430.0,1013097,0.0,22806.0,2146.0 +1918266,1918266,1939656,1,20.0,2.0,-9.0,-9.0,3,360.0,1035838,0.0,22765.0,2130.0 +1918269,1918269,1939659,1,20.0,2.0,-9.0,-9.0,3,25000.0,1035838,0.0,22806.0,2146.0 +1918273,1918273,1939663,1,20.0,2.0,-9.0,-9.0,3,2200.0,1054346,0.0,22814.0,2150.0 +1918278,1918278,1939668,1,20.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22814.0,2150.0 +1918281,1918281,1939671,1,20.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1918283,1918283,1939673,1,20.0,4.0,-9.0,-9.0,3,45060.0,1070673,0.0,22808.0,2147.0 +1918285,1918285,1939675,1,20.0,4.0,-9.0,-9.0,3,3550.0,1054346,0.0,22808.0,2147.0 +1918287,1918287,1939677,1,20.0,4.0,-9.0,-9.0,3,32000.0,1070673,0.0,22808.0,2147.0 +1918290,1918290,1939680,1,20.0,4.0,-9.0,-9.0,3,35000.0,1070673,0.0,22808.0,2147.0 +1918292,1918292,1939682,1,20.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22806.0,2146.0 +1918294,1918294,1939684,1,20.0,4.0,-9.0,-9.0,3,72000.0,1013097,0.0,22815.0,2150.0 +1918296,1918296,1939686,1,20.0,4.0,-9.0,-9.0,3,26630.0,1070673,0.0,22808.0,2147.0 +1918298,1918298,1939688,1,20.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22808.0,2147.0 +1918302,1918302,1939692,1,20.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22806.0,2146.0 +1918307,1918307,1939697,1,20.0,4.0,-9.0,-9.0,3,25800.0,1035838,0.0,22765.0,2130.0 +1918314,1918314,1939704,1,20.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22808.0,2147.0 +1918316,1918316,1939706,1,20.0,4.0,-9.0,-9.0,3,5000.0,1035838,0.0,22808.0,2147.0 +1918320,1918320,1939710,1,20.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22818.0,2150.0 +1918321,1918321,1939711,1,20.0,4.0,-9.0,-9.0,3,10.0,1035838,0.0,22808.0,2147.0 +1918323,1918323,1939713,1,20.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22808.0,2147.0 +1918324,1918324,1939714,1,20.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1918326,1918326,1939716,1,20.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22808.0,2147.0 +1918327,1918327,1939717,1,20.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22806.0,2146.0 +1918328,1918328,1939718,1,20.0,4.0,-9.0,-9.0,3,40800.0,1061242,0.0,22808.0,2147.0 +1918331,1918331,1939721,1,20.0,4.0,-9.0,-9.0,3,68000.0,1054346,0.0,22810.0,2148.0 +1918332,1918332,1939722,1,20.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1918334,1918334,1939724,1,20.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22765.0,2130.0 +1918335,1918335,1939725,1,20.0,4.0,-9.0,-9.0,3,6700.0,1035838,0.0,22814.0,2150.0 +1918337,1918337,1939727,1,20.0,4.0,-9.0,-9.0,3,62150.0,1070673,0.0,22806.0,2146.0 +1918351,1918351,1939741,1,20.0,4.0,-9.0,-9.0,3,30300.0,1035838,0.0,22808.0,2147.0 +1918355,1918355,1939745,1,20.0,4.0,-9.0,-9.0,3,70000.0,1061242,0.0,22818.0,2150.0 +1918356,1918356,1939746,1,20.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22808.0,2147.0 +1918360,1918360,1939750,1,20.0,4.0,-9.0,-9.0,3,31500.0,1013097,0.0,22808.0,2147.0 +1918361,1918361,1939751,1,20.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22808.0,2147.0 +1918365,1918365,1939755,1,20.0,4.0,-9.0,-9.0,3,2000.0,1035838,0.0,22765.0,2130.0 +1918367,1918367,1939757,1,20.0,4.0,-9.0,-9.0,3,13500.0,1054346,0.0,22808.0,2147.0 +1918372,1918372,1939762,1,20.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22808.0,2147.0 +1918374,1918374,1939764,1,20.0,4.0,-9.0,-9.0,3,26630.0,1070673,0.0,22814.0,2150.0 +1918378,1918378,1939768,1,20.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22808.0,2147.0 +1918379,1918379,1939769,1,20.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1918385,1918385,1939775,1,20.0,4.0,-9.0,-9.0,3,2000.0,1035838,0.0,22806.0,2146.0 +1918387,1918387,1939777,1,20.0,4.0,-9.0,-9.0,3,17000.0,1013097,0.0,22808.0,2147.0 +1918389,1918389,1939779,1,20.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1918394,1918394,1939784,1,20.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1918397,1918397,1939787,1,20.0,4.0,-9.0,-9.0,3,14800.0,1035838,0.0,22765.0,2130.0 +1918400,1918400,1939790,1,20.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22813.0,2150.0 +1918402,1918402,1939792,1,20.0,4.0,-9.0,-9.0,3,11000.0,1035838,0.0,22808.0,2147.0 +1918403,1918403,1939793,1,20.0,4.0,-9.0,-9.0,3,26630.0,1070673,0.0,22808.0,2147.0 +1918408,1918408,1939798,1,20.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22806.0,2146.0 +1918409,1918409,1939799,1,20.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22808.0,2147.0 +1918412,1918412,1939802,1,20.0,4.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1918413,1918413,1939803,1,20.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1918415,1918415,1939805,1,20.0,4.0,-9.0,-9.0,3,0.0,1054346,0.0,22806.0,2146.0 +1918417,1918417,1939807,1,20.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1918421,1918421,1939811,1,20.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22806.0,2146.0 +1918422,1918422,1939812,1,20.0,4.0,-9.0,-9.0,3,15000.0,1061242,0.0,22808.0,2147.0 +1918426,1918426,1939816,1,20.0,4.0,-9.0,-9.0,3,30000.0,1054346,0.0,22808.0,2147.0 +1918427,1918427,1939817,1,20.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1918430,1918430,1939820,1,20.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1918431,1918431,1939821,1,20.0,1.0,-9.0,-9.0,3,8200.0,1070673,0.0,22806.0,2146.0 +1918434,1918434,1939824,1,20.0,4.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1918436,1918436,1939826,1,20.0,1.0,-9.0,-9.0,3,22800.0,1013097,0.0,22808.0,2147.0 +1918437,1918437,1939827,1,20.0,1.0,-9.0,-9.0,3,600.0,1061242,0.0,22808.0,2147.0 +1918438,1918438,1939828,1,20.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22765.0,2130.0 +1918439,1918439,1939829,1,20.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22815.0,2150.0 +1918442,1918442,1939832,1,20.0,2.0,-9.0,-9.0,3,2000.0,1061242,0.0,22808.0,2147.0 +1918445,1918445,1939835,1,20.0,4.0,-9.0,-9.0,3,75500.0,1054346,0.0,22808.0,2147.0 +1918448,1918448,1939838,1,20.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1918449,1918449,1939839,1,20.0,2.0,-9.0,-9.0,3,37000.0,1013097,0.0,22808.0,2147.0 +1918451,1918451,1939841,1,20.0,2.0,-9.0,-9.0,3,520.0,1070673,0.0,22806.0,2146.0 +1918455,1918455,1939845,1,20.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22806.0,2146.0 +1918457,1918457,1939847,1,20.0,4.0,-9.0,-9.0,3,2800.0,1035838,0.0,22808.0,2147.0 +1918460,1918460,1939850,1,20.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1918461,1918461,1939851,1,20.0,4.0,-9.0,-9.0,3,14800.0,1035838,0.0,22808.0,2147.0 +1918462,1918462,1939852,1,20.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1918464,1918464,1939854,1,20.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22758.0,2127.0 +1918466,1918466,1939856,1,20.0,1.0,-9.0,-9.0,3,11500.0,1070673,0.0,22810.0,2148.0 +1918468,1918468,1939858,1,20.0,2.0,-9.0,-9.0,3,9600.0,1013097,0.0,22808.0,2147.0 +1918470,1918470,1939860,1,20.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1918471,1918471,1939861,1,20.0,1.0,-9.0,-9.0,3,13150.0,1061242,0.0,22808.0,2147.0 +1918472,1918472,1939862,1,20.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22765.0,2130.0 +1918485,1918485,1939875,1,20.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1918494,1918494,1939884,1,20.0,4.0,-9.0,-9.0,3,40800.0,1061242,0.0,22808.0,2147.0 +1918497,1918497,1939887,1,20.0,4.0,-9.0,-9.0,3,13000.0,1054346,0.0,22806.0,2146.0 +1918499,1918499,1939889,1,20.0,1.0,-9.0,-9.0,3,3000.0,1061242,0.0,22806.0,2146.0 +1918510,1918510,1939900,1,20.0,1.0,-9.0,-9.0,3,6000.0,1035838,0.0,22808.0,2147.0 +1918511,1918511,1939901,1,20.0,4.0,-9.0,-9.0,3,75500.0,1054346,0.0,22810.0,2148.0 +1918513,1918513,1939903,1,20.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1918515,1918515,1939905,1,20.0,4.0,-9.0,-9.0,3,26630.0,1070673,0.0,22806.0,2146.0 +1918518,1918518,1939908,1,20.0,2.0,-9.0,-9.0,3,13000.0,1070673,0.0,22814.0,2150.0 +1918524,1918524,1939914,1,20.0,1.0,-9.0,-9.0,3,31500.0,1013097,0.0,22808.0,2147.0 +1918525,1918525,1939915,1,20.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22808.0,2147.0 +1918528,1918528,1939918,1,20.0,2.0,-9.0,-9.0,3,200.0,1035838,0.0,22808.0,2147.0 +1918529,1918529,1939919,1,20.0,4.0,-9.0,-9.0,3,46000.0,1061242,0.0,22808.0,2147.0 +1918533,1918533,1939923,1,20.0,4.0,-9.0,-9.0,3,29300.0,1035838,0.0,22806.0,2146.0 +1918536,1918536,1939926,1,20.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1918538,1918538,1939928,1,20.0,4.0,-9.0,-9.0,3,14000.0,1013097,0.0,22814.0,2150.0 +1918540,1918540,1939930,1,20.0,4.0,-9.0,-9.0,3,73480.0,1013097,0.0,22806.0,2146.0 +1918541,1918541,1939931,1,20.0,1.0,-9.0,-9.0,3,64500.0,1035838,0.0,22808.0,2147.0 +1918544,1918544,1939934,1,21.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22760.0,2128.0 +1918548,1918548,1939938,1,21.0,1.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1918549,1918549,1939939,1,21.0,1.0,-9.0,-9.0,3,27000.0,1061242,0.0,22808.0,2147.0 +1918554,1918554,1939944,1,21.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22765.0,2130.0 +1918555,1918555,1939945,1,21.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22808.0,2147.0 +1918559,1918559,1939949,1,21.0,1.0,-9.0,-9.0,3,70500.0,1054346,0.0,22808.0,2147.0 +1918560,1918560,1939950,1,21.0,1.0,-9.0,-9.0,3,3000.0,1054346,0.0,22808.0,2147.0 +1918565,1918565,1939955,1,21.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22808.0,2147.0 +1918569,1918569,1939959,1,21.0,1.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1918574,1918574,1939964,1,21.0,1.0,-9.0,-9.0,3,5800.0,1013097,0.0,22806.0,2146.0 +1918578,1918578,1939968,1,21.0,1.0,-9.0,-9.0,3,500.0,1035838,0.0,22815.0,2150.0 +1918579,1918579,1939969,1,21.0,1.0,-9.0,-9.0,3,17000.0,1013097,0.0,22765.0,2130.0 +1918582,1918582,1939972,1,21.0,1.0,-9.0,-9.0,3,1900.0,1054346,0.0,22808.0,2147.0 +1918583,1918583,1939973,1,21.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22760.0,2128.0 +1918585,1918585,1939975,1,21.0,1.0,-9.0,-9.0,3,19000.0,1061242,0.0,22765.0,2130.0 +1918588,1918588,1939978,1,21.0,1.0,-9.0,-9.0,3,31100.0,1013097,0.0,22765.0,2130.0 +1918590,1918590,1939980,1,21.0,1.0,-9.0,-9.0,3,30000.0,1061242,0.0,22808.0,2147.0 +1918591,1918591,1939981,1,21.0,1.0,-9.0,-9.0,3,37000.0,1070673,0.0,22810.0,2148.0 +1918592,1918592,1939982,1,21.0,1.0,-9.0,-9.0,3,4300.0,1070673,0.0,22806.0,2146.0 +1918598,1918598,1939988,1,21.0,1.0,-9.0,-9.0,3,12000.0,1035838,0.0,22808.0,2147.0 +1918600,1918600,1939990,1,21.0,3.0,-9.0,-9.0,3,13600.0,1070673,0.0,22808.0,2147.0 +1918601,1918601,1939991,1,21.0,3.0,-9.0,-9.0,3,13000.0,1013097,0.0,22808.0,2147.0 +1918603,1918603,1939993,1,21.0,3.0,-9.0,-9.0,3,7000.0,1061242,0.0,22808.0,2147.0 +1918604,1918604,1939994,1,21.0,3.0,-9.0,-9.0,3,9200.0,1035838,0.0,22818.0,2150.0 +1918606,1918606,1939996,1,21.0,1.0,-9.0,-9.0,3,28000.0,1061242,0.0,22815.0,2150.0 +1918607,1918607,1939997,1,21.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22808.0,2147.0 +1918608,1918608,1939998,1,21.0,1.0,-9.0,-9.0,3,2400.0,1061242,0.0,22808.0,2147.0 +1918610,1918610,1940000,1,21.0,1.0,-9.0,-9.0,3,41600.0,1054346,0.0,22765.0,2130.0 +1918612,1918612,1940002,1,21.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1918615,1918615,1940005,1,21.0,1.0,-9.0,-9.0,3,72600.0,1070673,0.0,22818.0,2150.0 +1918617,1918617,1940007,1,22.0,1.0,-9.0,-9.0,3,16700.0,1013097,0.0,22808.0,2147.0 +1918620,1918620,1940010,1,22.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1918621,1918621,1940011,1,22.0,1.0,-9.0,-9.0,3,70500.0,1054346,0.0,22808.0,2147.0 +1918626,1918626,1940016,1,22.0,1.0,-9.0,-9.0,3,710.0,1013097,0.0,22808.0,2147.0 +1918629,1918629,1940019,1,22.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22760.0,2128.0 +1918630,1918630,1940020,1,22.0,1.0,-9.0,-9.0,3,29500.0,1013097,0.0,22815.0,2150.0 +1918631,1918631,1940021,1,22.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1918636,1918636,1940026,1,22.0,1.0,-9.0,-9.0,3,15850.0,1013097,0.0,22808.0,2147.0 +1918637,1918637,1940027,1,22.0,1.0,-9.0,-9.0,3,15800.0,1054346,0.0,22808.0,2147.0 +1918640,1918640,1940030,1,22.0,1.0,-9.0,-9.0,3,34000.0,1054346,0.0,22808.0,2147.0 +1918642,1918642,1940032,1,22.0,1.0,-9.0,-9.0,3,4300.0,1061242,0.0,22808.0,2147.0 +1918645,1918645,1940035,1,22.0,1.0,-9.0,-9.0,3,13210.0,1054346,0.0,22806.0,2146.0 +1918646,1918646,1940036,1,22.0,1.0,-9.0,-9.0,3,65500.0,1035838,0.0,22808.0,2147.0 +1918647,1918647,1940037,1,22.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1918659,1918659,1940049,1,22.0,1.0,-9.0,-9.0,3,400.0,1054346,0.0,22808.0,2147.0 +1918668,1918668,1940058,1,22.0,1.0,-9.0,-9.0,3,4500.0,1035838,0.0,22806.0,2146.0 +1918670,1918670,1940060,1,22.0,1.0,-9.0,-9.0,3,10000.0,1035838,0.0,22808.0,2147.0 +1918671,1918671,1940061,1,22.0,1.0,-9.0,-9.0,3,15500.0,1061242,0.0,22806.0,2146.0 +1918676,1918676,1940066,1,22.0,1.0,-9.0,-9.0,3,2400.0,1013097,0.0,22808.0,2147.0 +1918682,1918682,1940072,1,22.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1918688,1918688,1940078,1,22.0,1.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1918690,1918690,1940080,1,23.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1918692,1918692,1940082,1,23.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22808.0,2147.0 +1918695,1918695,1940085,1,23.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22806.0,2146.0 +1918696,1918696,1940086,1,23.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22806.0,2146.0 +1918702,1918702,1940092,1,23.0,1.0,-9.0,-9.0,3,14600.0,1054346,0.0,22765.0,2130.0 +1918706,1918706,1940096,1,23.0,1.0,-9.0,-9.0,3,4000.0,1035838,0.0,22808.0,2147.0 +1918715,1918715,1940105,1,23.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1918720,1918720,1940110,1,23.0,1.0,-9.0,-9.0,3,5200.0,1061242,0.0,22765.0,2130.0 +1918729,1918729,1940119,1,24.0,4.0,-9.0,-9.0,3,64500.0,1070673,0.0,22808.0,2147.0 +1918731,1918731,1940121,1,24.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22815.0,2150.0 +1918732,1918732,1940122,1,24.0,4.0,-9.0,-9.0,3,28000.0,1013097,0.0,22806.0,2146.0 +1918737,1918737,1940127,1,24.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22808.0,2147.0 +1918739,1918739,1940129,1,24.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1918740,1918740,1940130,1,24.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22808.0,2147.0 +1918741,1918741,1940131,1,24.0,4.0,-9.0,-9.0,3,26400.0,1061242,0.0,22813.0,2150.0 +1918747,1918747,1940137,1,24.0,4.0,-9.0,-9.0,3,31500.0,1013097,0.0,22815.0,2150.0 +1918756,1918756,1940146,1,24.0,4.0,-9.0,-9.0,3,18100.0,1035838,0.0,22808.0,2147.0 +1918757,1918757,1940147,1,24.0,4.0,-9.0,-9.0,3,64300.0,1061242,0.0,22808.0,2147.0 +1918759,1918759,1940149,1,24.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22815.0,2150.0 +1918760,1918760,1940150,1,24.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22814.0,2150.0 +1918762,1918762,1940152,1,24.0,4.0,-9.0,-9.0,3,14800.0,1035838,0.0,22808.0,2147.0 +1918764,1918764,1940154,1,24.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1918774,1918774,1940164,1,24.0,4.0,-9.0,-9.0,3,15000.0,1054346,0.0,22808.0,2147.0 +1918784,1918784,1940174,1,24.0,4.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1918785,1918785,1940175,1,24.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22815.0,2150.0 +1918786,1918786,1940176,1,24.0,4.0,-9.0,-9.0,3,3500.0,1013097,0.0,22808.0,2147.0 +1918788,1918788,1940178,1,24.0,4.0,-9.0,-9.0,3,3500.0,1013097,0.0,22808.0,2147.0 +1918789,1918789,1940179,1,24.0,4.0,-9.0,-9.0,3,65000.0,1070673,0.0,22808.0,2147.0 +1918795,1918795,1940185,1,24.0,4.0,-9.0,-9.0,3,31300.0,1035838,0.0,22806.0,2146.0 +1918801,1918801,1940191,1,24.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1918802,1918802,1940192,1,24.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22815.0,2150.0 +1918803,1918803,1940193,1,24.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22806.0,2146.0 +1918804,1918804,1940194,1,24.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22810.0,2148.0 +1918805,1918805,1940195,1,24.0,4.0,-9.0,-9.0,3,39600.0,1061242,0.0,22808.0,2147.0 +1918810,1918810,1940200,1,24.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1918812,1918812,1940202,1,24.0,4.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1918813,1918813,1940203,1,24.0,4.0,-9.0,-9.0,3,5600.0,1013097,0.0,22806.0,2146.0 +1918814,1918814,1940204,1,24.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22808.0,2147.0 +1918816,1918816,1940206,1,24.0,4.0,-9.0,-9.0,3,14500.0,1070673,0.0,22810.0,2148.0 +1918819,1918819,1940209,1,24.0,4.0,-9.0,-9.0,3,31500.0,1013097,0.0,22808.0,2147.0 +1918824,1918824,1940214,1,24.0,4.0,-9.0,-9.0,3,7610.0,1061242,0.0,22808.0,2147.0 +1918828,1918828,1940218,1,24.0,4.0,-9.0,-9.0,3,10.0,1035838,0.0,22808.0,2147.0 +1918831,1918831,1940221,1,25.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22806.0,2146.0 +1918832,1918832,1940222,1,25.0,1.0,-9.0,-9.0,3,9500.0,1013097,0.0,22815.0,2150.0 +1918838,1918838,1940228,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22760.0,2128.0 +1918839,1918839,1940229,1,25.0,2.0,-9.0,-9.0,3,55000.0,1054346,0.0,22814.0,2150.0 +1918842,1918842,1940232,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1918843,1918843,1940233,1,25.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22765.0,2130.0 +1918848,1918848,1940238,1,25.0,2.0,-9.0,-9.0,3,20000.0,1035838,0.0,22765.0,2130.0 +1918851,1918851,1940241,1,25.0,2.0,-9.0,-9.0,3,63000.0,1061242,0.0,22808.0,2147.0 +1918854,1918854,1940244,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1918858,1918858,1940248,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1918859,1918859,1940249,1,25.0,2.0,-9.0,-9.0,3,1500.0,1054346,0.0,22806.0,2146.0 +1918860,1918860,1940250,1,25.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22758.0,2127.0 +1918862,1918862,1940252,1,25.0,2.0,-9.0,-9.0,3,40000.0,1061242,0.0,22806.0,2146.0 +1918870,1918870,1940260,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1918871,1918871,1940261,1,25.0,2.0,-9.0,-9.0,3,8300.0,1054346,0.0,22808.0,2147.0 +1918874,1918874,1940264,1,25.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22765.0,2130.0 +1918875,1918875,1940265,1,25.0,2.0,-9.0,-9.0,3,22000.0,1035838,0.0,22814.0,2150.0 +1918878,1918878,1940268,1,25.0,2.0,-9.0,-9.0,3,40000.0,1061242,0.0,22765.0,2130.0 +1918888,1918888,1940278,1,25.0,2.0,-9.0,-9.0,3,1500.0,1054346,0.0,22814.0,2150.0 +1918889,1918889,1940279,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1918891,1918891,1940281,1,25.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1918892,1918892,1940282,1,25.0,2.0,-9.0,-9.0,3,8000.0,1061242,0.0,22808.0,2147.0 +1918893,1918893,1940283,1,25.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1918895,1918895,1940285,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1918911,1918911,1940301,1,25.0,4.0,-9.0,-9.0,3,90400.0,1061242,0.0,22758.0,2127.0 +1918912,1918912,1940302,1,25.0,4.0,-9.0,-9.0,3,29100.0,1035838,0.0,22806.0,2146.0 +1918916,1918916,1940306,1,25.0,4.0,-9.0,-9.0,3,6200.0,1013097,0.0,22808.0,2147.0 +1918918,1918918,1940308,1,25.0,4.0,-9.0,-9.0,3,18000.0,1061242,0.0,22808.0,2147.0 +1918919,1918919,1940309,1,25.0,4.0,-9.0,-9.0,3,34600.0,1070673,0.0,22808.0,2147.0 +1918920,1918920,1940310,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22765.0,2130.0 +1918921,1918921,1940311,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22814.0,2150.0 +1918927,1918927,1940317,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1918928,1918928,1940318,1,25.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1918931,1918931,1940321,1,25.0,2.0,-9.0,-9.0,3,8300.0,1013097,0.0,22808.0,2147.0 +1918932,1918932,1940322,1,25.0,2.0,-9.0,-9.0,3,63000.0,1061242,0.0,22806.0,2146.0 +1918933,1918933,1940323,1,25.0,2.0,-9.0,-9.0,3,1500.0,1054346,0.0,22808.0,2147.0 +1918936,1918936,1940326,1,25.0,2.0,-9.0,-9.0,3,69000.0,1054346,0.0,22808.0,2147.0 +1918940,1918940,1940330,1,25.0,2.0,-9.0,-9.0,3,8300.0,1054346,0.0,22808.0,2147.0 +1918945,1918945,1941302,1,17.0,1.0,-9.0,1.0,3,7800.0,1070673,0.0,22808.0,2147.0 +1918946,1918946,1941303,1,17.0,1.0,-9.0,1.0,3,7800.0,1070673,0.0,22808.0,2147.0 +1918949,1918949,1941306,1,17.0,1.0,-9.0,1.0,3,1000.0,1061242,0.0,22808.0,2147.0 +1918957,1918957,1941314,1,17.0,1.0,-9.0,1.0,3,9800.0,1035838,0.0,22808.0,2147.0 +1918959,1918959,1941316,1,17.0,1.0,-9.0,1.0,3,1000.0,1061242,0.0,22808.0,2147.0 +1918966,1918966,1941323,1,17.0,1.0,-9.0,1.0,3,9800.0,1035838,0.0,22806.0,2146.0 +1918968,1918968,1941325,1,17.0,1.0,-9.0,1.0,3,1000.0,1061242,0.0,22808.0,2147.0 +1918971,1918971,1941328,1,17.0,1.0,-9.0,1.0,3,279000.0,1035838,0.0,22808.0,2147.0 +1918974,1918974,1941331,1,17.0,1.0,-9.0,1.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1918983,1918983,1941340,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22765.0,2130.0 +1918985,1918985,1941342,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22765.0,2130.0 +1918986,1918986,1941343,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1918987,1918987,1941344,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1918991,1918991,1941348,1,17.0,3.0,-9.0,1.0,3,30000.0,1070673,0.0,22808.0,2147.0 +1918996,1918996,1941353,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1918997,1918997,1941354,1,17.0,3.0,-9.0,1.0,3,30000.0,1070673,0.0,22815.0,2150.0 +1918999,1918999,1941356,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22806.0,2146.0 +1919000,1919000,1941357,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22765.0,2130.0 +1919001,1919001,1941358,1,17.0,3.0,-9.0,1.0,3,30000.0,1070673,0.0,22808.0,2147.0 +1919004,1919004,1941361,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22758.0,2127.0 +1919008,1919008,1941365,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22808.0,2147.0 +1919009,1919009,1941366,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22815.0,2150.0 +1919013,1919013,1941370,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1919017,1919017,1941374,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1919019,1919019,1941376,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1919026,1919026,1941383,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22758.0,2127.0 +1919028,1919028,1941385,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22808.0,2147.0 +1919031,1919031,1941388,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1919032,1919032,1941389,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1919034,1919034,1941391,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22806.0,2146.0 +1919035,1919035,1941392,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1919043,1919043,1941400,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1919045,1919045,1941402,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22765.0,2130.0 +1919046,1919046,1941403,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1919047,1919047,1941404,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22806.0,2146.0 +1919048,1919048,1941405,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1919049,1919049,1941406,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1919053,1919053,1941410,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1919055,1919055,1941412,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1919056,1919056,1941413,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22808.0,2147.0 +1919058,1919058,1941415,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1919062,1919062,1941419,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1919063,1919063,1941420,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1919067,1919067,1941424,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22808.0,2147.0 +1919069,1919069,1941426,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22806.0,2146.0 +1919071,1919071,1941428,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22808.0,2147.0 +1919073,1919073,1941430,1,17.0,3.0,-9.0,1.0,3,30000.0,1070673,0.0,22815.0,2150.0 +1919077,1919077,1941434,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22765.0,2130.0 +1919079,1919079,1941436,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22806.0,2146.0 +1919080,1919080,1941437,1,17.0,3.0,-9.0,1.0,3,30000.0,1070673,0.0,22808.0,2147.0 +1919081,1919081,1941438,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22806.0,2146.0 +1919089,1919089,1941446,1,17.0,1.0,-9.0,1.0,3,12830.0,1013097,0.0,22765.0,2130.0 +1919090,1919090,1941447,1,17.0,1.0,-9.0,1.0,3,7800.0,1070673,0.0,22808.0,2147.0 +1919091,1919091,1941448,1,17.0,1.0,-9.0,1.0,3,7800.0,1070673,0.0,22808.0,2147.0 +1919096,1919096,1941453,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22808.0,2147.0 +1919097,1919097,1941454,1,17.0,1.0,-9.0,1.0,3,4500.0,1035838,0.0,22808.0,2147.0 +1919102,1919102,1941459,1,17.0,3.0,-9.0,1.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1919103,1919103,1941460,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22765.0,2130.0 +1919104,1919104,1941461,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22815.0,2150.0 +1919105,1919105,1941462,1,17.0,1.0,-9.0,1.0,3,25000.0,1061242,0.0,22806.0,2146.0 +1919106,1919106,1941463,1,17.0,3.0,-9.0,1.0,3,30000.0,1070673,0.0,22765.0,2130.0 +1919110,1919110,1941467,1,18.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1919111,1919111,1941468,1,18.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22810.0,2148.0 +1919113,1919113,1941470,1,18.0,1.0,-9.0,-9.0,3,10550.0,1013097,0.0,22814.0,2150.0 +1919124,1919124,1941481,1,18.0,1.0,-9.0,-9.0,3,5500.0,1035838,0.0,22815.0,2150.0 +1919127,1919127,1941484,1,18.0,1.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1919132,1919132,1941489,1,18.0,1.0,-9.0,-9.0,3,31750.0,1035838,0.0,22808.0,2147.0 +1919137,1919137,1941494,1,18.0,1.0,-9.0,-9.0,3,35540.0,1035838,0.0,22758.0,2127.0 +1919139,1919139,1941496,1,18.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22808.0,2147.0 +1919145,1919145,1941502,1,18.0,1.0,-9.0,-9.0,3,30400.0,1061242,0.0,22808.0,2147.0 +1919146,1919146,1941503,1,18.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22808.0,2147.0 +1919154,1919154,1941511,1,18.0,1.0,-9.0,-9.0,3,43500.0,1035838,0.0,22808.0,2147.0 +1919155,1919155,1941512,1,18.0,1.0,-9.0,-9.0,3,14300.0,1054346,0.0,22808.0,2147.0 +1919156,1919156,1941513,1,18.0,1.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1919158,1919158,1941515,1,18.0,1.0,-9.0,-9.0,3,4000.0,1054346,0.0,22814.0,2150.0 +1919160,1919160,1941517,1,18.0,1.0,-9.0,-9.0,3,39500.0,1054346,0.0,22808.0,2147.0 +1919169,1919169,1941526,1,18.0,1.0,-9.0,-9.0,3,30000.0,1061242,0.0,22765.0,2130.0 +1919172,1919172,1941529,1,18.0,1.0,-9.0,-9.0,3,14200.0,1054346,0.0,22806.0,2146.0 +1919173,1919173,1941530,1,18.0,1.0,-9.0,-9.0,3,46000.0,1061242,0.0,22808.0,2147.0 +1919175,1919175,1941532,1,18.0,1.0,-9.0,-9.0,3,35800.0,1035838,0.0,22815.0,2150.0 +1919177,1919177,1941534,1,18.0,1.0,-9.0,-9.0,3,22500.0,1013097,0.0,22806.0,2146.0 +1919181,1919181,1941538,1,18.0,1.0,-9.0,-9.0,3,4300.0,1061242,0.0,22765.0,2130.0 +1919183,1919183,1941540,1,18.0,1.0,-9.0,-9.0,3,28600.0,1013097,0.0,22808.0,2147.0 +1919185,1919185,1941542,1,18.0,1.0,-9.0,-9.0,3,14400.0,1035838,0.0,22808.0,2147.0 +1919187,1919187,1941544,1,18.0,1.0,-9.0,-9.0,3,6000.0,1070673,0.0,22806.0,2146.0 +1919193,1919193,1941550,1,18.0,1.0,-9.0,-9.0,3,34500.0,1061242,0.0,22808.0,2147.0 +1919209,1919209,1941566,1,18.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22808.0,2147.0 +1919218,1919218,1941575,1,18.0,1.0,-9.0,-9.0,3,34000.0,1054346,0.0,22758.0,2127.0 +1919224,1919224,1941581,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22765.0,2130.0 +1919225,1919225,1941582,1,18.0,1.0,-9.0,-9.0,3,15000.0,1061242,0.0,22808.0,2147.0 +1919227,1919227,1941584,1,18.0,1.0,-9.0,-9.0,3,4200.0,1061242,0.0,22808.0,2147.0 +1919228,1919228,1941585,1,18.0,1.0,-9.0,-9.0,3,21100.0,1061242,0.0,22808.0,2147.0 +1919232,1919232,1941589,1,18.0,1.0,-9.0,-9.0,3,33500.0,1035838,0.0,22806.0,2146.0 +1919234,1919234,1941591,1,18.0,1.0,-9.0,-9.0,3,75000.0,1013097,0.0,22808.0,2147.0 +1919235,1919235,1941592,1,18.0,1.0,-9.0,-9.0,3,250.0,1061242,0.0,22814.0,2150.0 +1919242,1919242,1941599,1,18.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22810.0,2148.0 +1919243,1919243,1941600,1,18.0,1.0,-9.0,-9.0,3,18900.0,1061242,0.0,22808.0,2147.0 +1919244,1919244,1941601,1,18.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22808.0,2147.0 +1919245,1919245,1941602,1,18.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1919246,1919246,1941603,1,18.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1919247,1919247,1941604,1,18.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22808.0,2147.0 +1919248,1919248,1941605,1,18.0,1.0,-9.0,-9.0,3,69000.0,1035838,0.0,22808.0,2147.0 +1919251,1919251,1941608,1,18.0,1.0,-9.0,-9.0,3,18300.0,1061242,0.0,22765.0,2130.0 +1919252,1919252,1941609,1,18.0,1.0,-9.0,-9.0,3,6000.0,1061242,0.0,22808.0,2147.0 +1919255,1919255,1941612,1,18.0,1.0,-9.0,-9.0,3,41600.0,1054346,0.0,22806.0,2146.0 +1919258,1919258,1941615,1,18.0,1.0,-9.0,-9.0,3,62200.0,1070673,0.0,22808.0,2147.0 +1919264,1919264,1941621,1,18.0,1.0,-9.0,-9.0,3,25200.0,1013097,0.0,22765.0,2130.0 +1919265,1919265,1941622,1,18.0,1.0,-9.0,-9.0,3,15000.0,1013097,0.0,22765.0,2130.0 +1919268,1919268,1941625,1,18.0,1.0,-9.0,-9.0,3,5500.0,1013097,0.0,22808.0,2147.0 +1919270,1919270,1941627,1,18.0,1.0,-9.0,-9.0,3,24500.0,1054346,0.0,22808.0,2147.0 +1919272,1919272,1941629,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22808.0,2147.0 +1919276,1919276,1941633,1,18.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22808.0,2147.0 +1919282,1919282,1941639,1,18.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1919283,1919283,1941640,1,18.0,1.0,-9.0,-9.0,3,8200.0,1070673,0.0,22808.0,2147.0 +1919291,1919291,1941648,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1919292,1919292,1941649,1,18.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22808.0,2147.0 +1919297,1919297,1941654,1,18.0,1.0,-9.0,-9.0,3,4300.0,1035838,0.0,22808.0,2147.0 +1919306,1919306,1941663,1,18.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22808.0,2147.0 +1919307,1919307,1941664,1,18.0,1.0,-9.0,-9.0,3,43000.0,1061242,0.0,22808.0,2147.0 +1919308,1919308,1941665,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22808.0,2147.0 +1919309,1919309,1941666,1,18.0,1.0,-9.0,-9.0,3,32200.0,1070673,0.0,22806.0,2146.0 +1919317,1919317,1941674,1,18.0,1.0,-9.0,-9.0,3,23500.0,1070673,0.0,22765.0,2130.0 +1919318,1919318,1941675,1,18.0,1.0,-9.0,-9.0,3,18900.0,1061242,0.0,22808.0,2147.0 +1919328,1919328,1941685,1,18.0,1.0,-9.0,-9.0,3,32300.0,1070673,0.0,22765.0,2130.0 +1919331,1919331,1941688,1,18.0,1.0,-9.0,-9.0,3,32200.0,1070673,0.0,22808.0,2147.0 +1919336,1919336,1941693,1,18.0,1.0,-9.0,-9.0,3,31750.0,1035838,0.0,22814.0,2150.0 +1919340,1919340,1941697,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1919344,1919344,1941701,1,18.0,1.0,-9.0,-9.0,3,64130.0,1061242,0.0,22806.0,2146.0 +1919351,1919351,1941708,1,18.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22808.0,2147.0 +1919353,1919353,1941710,1,18.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1919357,1919357,1941714,1,18.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1919359,1919359,1941716,1,18.0,1.0,-9.0,-9.0,3,15000.0,1054346,0.0,22808.0,2147.0 +1919361,1919361,1941718,1,18.0,1.0,-9.0,-9.0,3,22500.0,1054346,0.0,22808.0,2147.0 +1919362,1919362,1941719,1,18.0,1.0,-9.0,-9.0,3,25000.0,1035838,0.0,22808.0,2147.0 +1919363,1919363,1941720,1,18.0,1.0,-9.0,-9.0,3,10600.0,1070673,0.0,22808.0,2147.0 +1919365,1919365,1941722,1,18.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1919367,1919367,1941724,1,18.0,1.0,-9.0,-9.0,3,17000.0,1070673,0.0,22808.0,2147.0 +1919373,1919373,1941730,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22808.0,2147.0 +1919378,1919378,1941735,1,18.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22808.0,2147.0 +1919382,1919382,1941739,1,18.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1919384,1919384,1941741,1,18.0,1.0,-9.0,-9.0,3,67000.0,1035838,0.0,22808.0,2147.0 +1919386,1919386,1941743,1,18.0,1.0,-9.0,-9.0,3,64400.0,1061242,0.0,22808.0,2147.0 +1919388,1919388,1941745,1,18.0,1.0,-9.0,-9.0,3,31210.0,1054346,0.0,22808.0,2147.0 +1919393,1919393,1941750,1,18.0,1.0,-9.0,-9.0,3,28800.0,1035838,0.0,22765.0,2130.0 +1919401,1919401,1941758,1,18.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22808.0,2147.0 +1919402,1919402,1941759,1,18.0,1.0,-9.0,-9.0,3,12000.0,1035838,0.0,22808.0,2147.0 +1919412,1919412,1941769,1,18.0,1.0,-9.0,-9.0,3,17000.0,1070673,0.0,22808.0,2147.0 +1919414,1919414,1941771,1,18.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1919415,1919415,1941772,1,18.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1919418,1919418,1941775,1,18.0,1.0,-9.0,-9.0,3,64300.0,1061242,0.0,22808.0,2147.0 +1919419,1919419,1941776,1,18.0,1.0,-9.0,-9.0,3,11000.0,1013097,0.0,22808.0,2147.0 +1919421,1919421,1941778,1,18.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22806.0,2146.0 +1919426,1919426,1941783,1,18.0,1.0,-9.0,-9.0,3,4000.0,1035838,0.0,22808.0,2147.0 +1919427,1919427,1941784,1,18.0,1.0,-9.0,-9.0,3,41600.0,1054346,0.0,22814.0,2150.0 +1919431,1919431,1941788,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22806.0,2146.0 +1919436,1919436,1941793,1,18.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1919437,1919437,1941794,1,18.0,1.0,-9.0,-9.0,3,5000.0,1013097,0.0,22808.0,2147.0 +1919441,1919441,1941798,1,18.0,1.0,-9.0,-9.0,3,31200.0,1070673,0.0,22815.0,2150.0 +1919443,1919443,1941800,1,18.0,1.0,-9.0,-9.0,3,91000.0,1013097,0.0,22808.0,2147.0 +1919445,1919445,1941802,1,18.0,1.0,-9.0,-9.0,3,31000.0,1054346,0.0,22808.0,2147.0 +1919447,1919447,1941804,1,18.0,1.0,-9.0,-9.0,3,10600.0,1054346,0.0,22808.0,2147.0 +1919448,1919448,1941805,1,18.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1919464,1919464,1941821,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22765.0,2130.0 +1919470,1919470,1941827,1,18.0,1.0,-9.0,-9.0,3,13200.0,1054346,0.0,22808.0,2147.0 +1919472,1919472,1941829,1,18.0,1.0,-9.0,-9.0,3,75500.0,1013097,0.0,22808.0,2147.0 +1919474,1919474,1941831,1,18.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22765.0,2130.0 +1919475,1919475,1941832,1,18.0,1.0,-9.0,-9.0,3,91000.0,1013097,0.0,22806.0,2146.0 +1919477,1919477,1941834,1,18.0,1.0,-9.0,-9.0,3,81000.0,1013097,0.0,22808.0,2147.0 +1919481,1919481,1941838,1,18.0,1.0,-9.0,-9.0,3,65300.0,1054346,0.0,22808.0,2147.0 +1919482,1919482,1941839,1,18.0,1.0,-9.0,-9.0,3,30000.0,1061242,0.0,22808.0,2147.0 +1919489,1919489,1941846,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1919491,1919491,1941848,1,18.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22806.0,2146.0 +1919492,1919492,1941849,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22806.0,2146.0 +1919500,1919500,1941857,1,18.0,1.0,-9.0,-9.0,3,15850.0,1013097,0.0,22758.0,2127.0 +1919501,1919501,1941858,1,18.0,1.0,-9.0,-9.0,3,3401.0,1054346,0.0,22808.0,2147.0 +1919504,1919504,1941861,1,18.0,1.0,-9.0,-9.0,3,1600.0,1061242,0.0,22808.0,2147.0 +1919509,1919509,1941866,1,18.0,1.0,-9.0,-9.0,3,66000.0,1054346,0.0,22808.0,2147.0 +1919511,1919511,1941868,1,18.0,1.0,-9.0,-9.0,3,30400.0,1035838,0.0,22808.0,2147.0 +1919512,1919512,1941869,1,18.0,1.0,-9.0,-9.0,3,31200.0,1070673,0.0,22808.0,2147.0 +1919513,1919513,1941870,1,18.0,1.0,-9.0,-9.0,3,29000.0,1061242,0.0,22808.0,2147.0 +1919514,1919514,1941871,1,18.0,1.0,-9.0,-9.0,3,2840.0,1013097,0.0,22808.0,2147.0 +1919515,1919515,1941872,1,18.0,1.0,-9.0,-9.0,3,21100.0,1061242,0.0,22808.0,2147.0 +1919516,1919516,1941873,1,18.0,1.0,-9.0,-9.0,3,27150.0,1013097,0.0,22806.0,2146.0 +1919522,1919522,1941879,1,18.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22806.0,2146.0 +1919523,1919523,1941880,1,18.0,1.0,-9.0,-9.0,3,19500.0,1035838,0.0,22808.0,2147.0 +1919525,1919525,1941882,1,18.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22806.0,2146.0 +1919526,1919526,1941883,1,18.0,1.0,-9.0,-9.0,3,65000.0,1054346,0.0,22765.0,2130.0 +1919527,1919527,1941884,1,18.0,1.0,-9.0,-9.0,3,5000.0,1013097,0.0,22806.0,2146.0 +1919533,1919533,1941890,1,18.0,1.0,-9.0,-9.0,3,3000.0,1013097,0.0,22758.0,2127.0 +1919534,1919534,1941891,1,18.0,1.0,-9.0,-9.0,3,27000.0,1061242,0.0,22808.0,2147.0 +1919536,1919536,1941893,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22814.0,2150.0 +1919539,1919539,1941896,1,18.0,1.0,-9.0,-9.0,3,400.0,1054346,0.0,22758.0,2127.0 +1919540,1919540,1941897,1,18.0,1.0,-9.0,-9.0,3,35800.0,1035838,0.0,22808.0,2147.0 +1919542,1919542,1941899,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1919543,1919543,1941900,1,18.0,1.0,-9.0,-9.0,3,24500.0,1054346,0.0,22808.0,2147.0 +1919546,1919546,1941903,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22808.0,2147.0 +1919551,1919551,1941908,1,18.0,1.0,-9.0,-9.0,3,16000.0,1013097,0.0,22765.0,2130.0 +1919555,1919555,1941912,1,18.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22808.0,2147.0 +1919557,1919557,1941914,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22765.0,2130.0 +1919558,1919558,1941915,1,18.0,1.0,-9.0,-9.0,3,23500.0,1070673,0.0,22765.0,2130.0 +1919559,1919559,1941916,1,18.0,1.0,-9.0,-9.0,3,15200.0,1070673,0.0,22806.0,2146.0 +1919563,1919563,1941920,1,18.0,1.0,-9.0,-9.0,3,32500.0,1013097,0.0,22808.0,2147.0 +1919564,1919564,1941921,1,18.0,1.0,-9.0,-9.0,3,900.0,1035838,0.0,22806.0,2146.0 +1919565,1919565,1941922,1,18.0,1.0,-9.0,-9.0,3,89000.0,1054346,0.0,22806.0,2146.0 +1919569,1919569,1941926,1,18.0,1.0,-9.0,-9.0,3,4300.0,1070673,0.0,22808.0,2147.0 +1919570,1919570,1941927,1,18.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22765.0,2130.0 +1919574,1919574,1941931,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1919577,1919577,1941934,1,18.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22808.0,2147.0 +1919578,1919578,1941935,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22806.0,2146.0 +1919580,1919580,1941937,1,18.0,1.0,-9.0,-9.0,3,65010.0,1054346,0.0,22808.0,2147.0 +1919581,1919581,1941938,1,18.0,1.0,-9.0,-9.0,3,19000.0,1061242,0.0,22808.0,2147.0 +1919582,1919582,1941939,1,18.0,1.0,-9.0,-9.0,3,900.0,1035838,0.0,22808.0,2147.0 +1919588,1919588,1941945,1,18.0,1.0,-9.0,-9.0,3,24600.0,1061242,0.0,22808.0,2147.0 +1919594,1919594,1941951,1,18.0,1.0,-9.0,-9.0,3,3401.0,1054346,0.0,22808.0,2147.0 +1919595,1919595,1941952,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1919596,1919596,1941953,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1919599,1919599,1941956,1,18.0,1.0,-9.0,-9.0,3,43500.0,1035838,0.0,22808.0,2147.0 +1919600,1919600,1941957,1,18.0,1.0,-9.0,-9.0,3,23540.0,1061242,0.0,22806.0,2146.0 +1919603,1919603,1941960,1,18.0,1.0,-9.0,-9.0,3,1000.0,1035838,0.0,22808.0,2147.0 +1919604,1919604,1941961,1,18.0,1.0,-9.0,-9.0,3,49200.0,1035838,0.0,22808.0,2147.0 +1919606,1919606,1941963,1,18.0,1.0,-9.0,-9.0,3,64250.0,1061242,0.0,22808.0,2147.0 +1919607,1919607,1941964,1,18.0,1.0,-9.0,-9.0,3,14600.0,1054346,0.0,22814.0,2150.0 +1919609,1919609,1941966,1,18.0,1.0,-9.0,-9.0,3,10000.0,1013097,0.0,22758.0,2127.0 +1919610,1919610,1941967,1,18.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22815.0,2150.0 +1919612,1919612,1941969,1,18.0,1.0,-9.0,-9.0,3,14200.0,1054346,0.0,22808.0,2147.0 +1919623,1919623,1941980,1,18.0,1.0,-9.0,-9.0,3,35000.0,1070673,0.0,22808.0,2147.0 +1919624,1919624,1941981,1,18.0,1.0,-9.0,-9.0,3,32500.0,1013097,0.0,22808.0,2147.0 +1919628,1919628,1941985,1,18.0,1.0,-9.0,-9.0,3,64300.0,1061242,0.0,22808.0,2147.0 +1919630,1919630,1941987,1,18.0,1.0,-9.0,-9.0,3,15800.0,1054346,0.0,22765.0,2130.0 +1919632,1919632,1941989,1,18.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22806.0,2146.0 +1919633,1919633,1941990,1,18.0,1.0,-9.0,-9.0,3,8200.0,1070673,0.0,22808.0,2147.0 +1919634,1919634,1941991,1,18.0,1.0,-9.0,-9.0,3,14300.0,1013097,0.0,22765.0,2130.0 +1919636,1919636,1941993,1,18.0,1.0,-9.0,-9.0,3,4950.0,1054346,0.0,22808.0,2147.0 +1919637,1919637,1941994,1,18.0,1.0,-9.0,-9.0,3,32000.0,1061242,0.0,22808.0,2147.0 +1919638,1919638,1941995,1,18.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22814.0,2150.0 +1919642,1919642,1941999,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1919645,1919645,1942002,1,18.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22806.0,2146.0 +1919646,1919646,1942003,1,18.0,1.0,-9.0,-9.0,3,23540.0,1061242,0.0,22810.0,2148.0 +1919647,1919647,1942004,1,18.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1919650,1919650,1942007,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1919652,1919652,1942009,1,18.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22808.0,2147.0 +1919659,1919659,1942016,1,18.0,1.0,-9.0,-9.0,3,29500.0,1013097,0.0,22765.0,2130.0 +1919660,1919660,1942017,1,18.0,1.0,-9.0,-9.0,3,19000.0,1061242,0.0,22808.0,2147.0 +1919661,1919661,1942018,1,18.0,1.0,-9.0,-9.0,3,62780.0,1070673,0.0,22815.0,2150.0 +1919664,1919664,1942021,1,18.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22808.0,2147.0 +1919667,1919667,1942024,1,18.0,1.0,-9.0,-9.0,3,24000.0,1054346,0.0,22808.0,2147.0 +1919669,1919669,1942026,1,18.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1919672,1919672,1942029,1,18.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22765.0,2130.0 +1919679,1919679,1942036,1,18.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1919680,1919680,1942037,1,18.0,1.0,-9.0,-9.0,3,25000.0,1035838,0.0,22806.0,2146.0 +1919681,1919681,1942038,1,18.0,1.0,-9.0,-9.0,3,7500.0,1035838,0.0,22808.0,2147.0 +1919682,1919682,1942039,1,18.0,1.0,-9.0,-9.0,3,64250.0,1061242,0.0,22808.0,2147.0 +1919683,1919683,1942040,1,18.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1919684,1919684,1942041,1,18.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22808.0,2147.0 +1919687,1919687,1942044,1,18.0,1.0,-9.0,-9.0,3,6700.0,1070673,0.0,22765.0,2130.0 +1919688,1919688,1942045,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1919693,1919693,1942050,1,18.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22806.0,2146.0 +1919694,1919694,1942051,1,18.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1919696,1919696,1942053,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1919698,1919698,1942055,1,18.0,1.0,-9.0,-9.0,3,1100.0,1035838,0.0,22808.0,2147.0 +1919701,1919701,1942058,1,18.0,1.0,-9.0,-9.0,3,5200.0,1061242,0.0,22765.0,2130.0 +1919702,1919702,1942059,1,18.0,1.0,-9.0,-9.0,3,65050.0,1054346,0.0,22808.0,2147.0 +1919703,1919703,1942060,1,18.0,1.0,-9.0,-9.0,3,30500.0,1061242,0.0,22765.0,2130.0 +1919711,1919711,1942068,1,18.0,1.0,-9.0,-9.0,3,10000.0,1013097,0.0,22806.0,2146.0 +1919716,1919716,1942073,1,18.0,1.0,-9.0,-9.0,3,3000.0,1013097,0.0,22818.0,2150.0 +1919724,1919724,1942081,1,18.0,1.0,-9.0,-9.0,3,32800.0,1035838,0.0,22810.0,2148.0 +1919725,1919725,1942082,1,18.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22808.0,2147.0 +1919726,1919726,1942083,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22758.0,2127.0 +1919729,1919729,1942086,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1919733,1919733,1942090,1,18.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22806.0,2146.0 +1919734,1919734,1942091,1,18.0,1.0,-9.0,-9.0,3,22000.0,1061242,0.0,22806.0,2146.0 +1919736,1919736,1942093,1,18.0,1.0,-9.0,-9.0,3,66300.0,1061242,0.0,22808.0,2147.0 +1919738,1919738,1942095,1,18.0,1.0,-9.0,-9.0,3,62780.0,1070673,0.0,22808.0,2147.0 +1919740,1919740,1942097,1,18.0,1.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1919741,1919741,1942098,1,18.0,1.0,-9.0,-9.0,3,1900.0,1054346,0.0,22808.0,2147.0 +1919745,1919745,1942102,1,18.0,1.0,-9.0,-9.0,3,35540.0,1035838,0.0,22808.0,2147.0 +1919750,1919750,1942107,1,18.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22808.0,2147.0 +1919753,1919753,1942110,1,18.0,1.0,-9.0,-9.0,3,30500.0,1035838,0.0,22808.0,2147.0 +1919763,1919763,1942120,1,18.0,1.0,-9.0,-9.0,3,24600.0,1061242,0.0,22808.0,2147.0 +1919764,1919764,1942121,1,18.0,1.0,-9.0,-9.0,3,32200.0,1070673,0.0,22808.0,2147.0 +1919765,1919765,1942122,1,18.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22808.0,2147.0 +1919767,1919767,1942124,1,18.0,1.0,-9.0,-9.0,3,25500.0,1061242,0.0,22765.0,2130.0 +1919773,1919773,1942130,1,18.0,1.0,-9.0,-9.0,3,1600.0,1061242,0.0,22765.0,2130.0 +1919775,1919775,1942132,1,18.0,1.0,-9.0,-9.0,3,15000.0,1070673,0.0,22808.0,2147.0 +1919783,1919783,1942140,1,18.0,1.0,-9.0,-9.0,3,15000.0,1061242,0.0,22765.0,2130.0 +1919791,1919791,1942148,1,18.0,1.0,-9.0,-9.0,3,1000.0,1070673,0.0,22808.0,2147.0 +1919792,1919792,1942149,1,18.0,1.0,-9.0,-9.0,3,13000.0,1054346,0.0,22808.0,2147.0 +1919794,1919794,1942151,1,18.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22808.0,2147.0 +1919796,1919796,1942153,1,18.0,1.0,-9.0,-9.0,3,21000.0,1013097,0.0,22808.0,2147.0 +1919798,1919798,1942155,1,18.0,1.0,-9.0,-9.0,3,65000.0,1054346,0.0,22808.0,2147.0 +1919799,1919799,1942156,1,18.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22808.0,2147.0 +1919800,1919800,1942157,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22814.0,2150.0 +1919801,1919801,1942158,1,18.0,1.0,-9.0,-9.0,3,2200.0,1061242,0.0,22808.0,2147.0 +1919803,1919803,1942160,1,18.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22808.0,2147.0 +1919804,1919804,1942161,1,18.0,1.0,-9.0,-9.0,3,4000.0,1054346,0.0,22808.0,2147.0 +1919807,1919807,1942164,1,18.0,1.0,-9.0,-9.0,3,16600.0,1013097,0.0,22808.0,2147.0 +1919808,1919808,1942165,1,18.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22765.0,2130.0 +1919810,1919810,1942167,1,18.0,1.0,-9.0,-9.0,3,27000.0,1013097,0.0,22806.0,2146.0 +1919819,1919819,1942176,1,18.0,1.0,-9.0,-9.0,3,4000.0,1013097,0.0,22808.0,2147.0 +1919821,1919821,1942178,1,18.0,1.0,-9.0,-9.0,3,13150.0,1061242,0.0,22815.0,2150.0 +1919822,1919822,1942179,1,18.0,1.0,-9.0,-9.0,3,30000.0,1061242,0.0,22808.0,2147.0 +1919824,1919824,1942181,1,18.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22765.0,2130.0 +1919826,1919826,1942183,1,18.0,1.0,-9.0,-9.0,3,15200.0,1070673,0.0,22808.0,2147.0 +1919827,1919827,1942184,1,18.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22808.0,2147.0 +1919828,1919828,1942185,1,18.0,1.0,-9.0,-9.0,3,46000.0,1061242,0.0,22765.0,2130.0 +1919832,1919832,1942189,1,18.0,1.0,-9.0,-9.0,3,66800.0,1035838,0.0,22765.0,2130.0 +1919833,1919833,1942190,1,18.0,1.0,-9.0,-9.0,3,35000.0,1035838,0.0,22808.0,2147.0 +1919837,1919837,1942194,1,18.0,1.0,-9.0,-9.0,3,35700.0,1054346,0.0,22765.0,2130.0 +1919844,1919844,1942201,1,18.0,1.0,-9.0,-9.0,3,6000.0,1054346,0.0,22808.0,2147.0 +1919847,1919847,1942204,1,18.0,1.0,-9.0,-9.0,3,40500.0,1013097,0.0,22808.0,2147.0 +1919849,1919849,1942206,1,18.0,1.0,-9.0,-9.0,3,4950.0,1054346,0.0,22808.0,2147.0 +1919853,1919853,1942210,1,18.0,1.0,-9.0,-9.0,3,31500.0,1013097,0.0,22808.0,2147.0 +1919854,1919854,1942211,1,18.0,1.0,-9.0,-9.0,3,250.0,1070673,0.0,22765.0,2130.0 +1919855,1919855,1942212,1,18.0,1.0,-9.0,-9.0,3,17500.0,1061242,0.0,22808.0,2147.0 +1919860,1919860,1942217,1,18.0,1.0,-9.0,-9.0,3,6400.0,1070673,0.0,22808.0,2147.0 +1919861,1919861,1942218,1,18.0,1.0,-9.0,-9.0,3,24000.0,1070673,0.0,22808.0,2147.0 +1919868,1919868,1942225,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1919875,1919875,1942232,1,18.0,1.0,-9.0,-9.0,3,46000.0,1061242,0.0,22808.0,2147.0 +1919876,1919876,1942233,1,18.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1919880,1919880,1942237,1,18.0,1.0,-9.0,-9.0,3,72600.0,1070673,0.0,22808.0,2147.0 +1919883,1919883,1942240,1,18.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22808.0,2147.0 +1919886,1919886,1942243,1,18.0,1.0,-9.0,-9.0,3,43000.0,1054346,0.0,22808.0,2147.0 +1919891,1919891,1942248,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22808.0,2147.0 +1919894,1919894,1942251,1,18.0,1.0,-9.0,-9.0,3,500.0,1035838,0.0,22808.0,2147.0 +1919897,1919897,1942254,1,18.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1919899,1919899,1942256,1,18.0,1.0,-9.0,-9.0,3,25200.0,1061242,0.0,22808.0,2147.0 +1919905,1919905,1942262,1,18.0,1.0,-9.0,-9.0,3,27500.0,1061242,0.0,22806.0,2146.0 +1919906,1919906,1942263,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1919907,1919907,1942264,1,18.0,1.0,-9.0,-9.0,3,68000.0,1061242,0.0,22808.0,2147.0 +1919915,1919915,1942272,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1919916,1919916,1942273,1,18.0,1.0,-9.0,-9.0,3,12000.0,1013097,0.0,22806.0,2146.0 +1919922,1919922,1942279,1,18.0,1.0,-9.0,-9.0,3,24600.0,1061242,0.0,22808.0,2147.0 +1919929,1919929,1942286,1,18.0,1.0,-9.0,-9.0,3,22500.0,1054346,0.0,22808.0,2147.0 +1919935,1919935,1942292,1,18.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22806.0,2146.0 +1919948,1919948,1942305,1,18.0,1.0,-9.0,-9.0,3,6000.0,1070673,0.0,22758.0,2127.0 +1919949,1919949,1942306,1,18.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22818.0,2150.0 +1919954,1919954,1942311,1,18.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22765.0,2130.0 +1919957,1919957,1942314,1,18.0,1.0,-9.0,-9.0,3,29000.0,1070673,0.0,22808.0,2147.0 +1919960,1919960,1942317,1,18.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1919963,1919963,1942320,1,18.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22806.0,2146.0 +1919967,1919967,1942324,1,18.0,1.0,-9.0,-9.0,3,5500.0,1013097,0.0,22808.0,2147.0 +1919968,1919968,1942325,1,18.0,1.0,-9.0,-9.0,3,8200.0,1070673,0.0,22806.0,2146.0 +1919969,1919969,1942326,1,18.0,1.0,-9.0,-9.0,3,4200.0,1035838,0.0,22815.0,2150.0 +1919970,1919970,1942327,1,18.0,1.0,-9.0,-9.0,3,6000.0,1013097,0.0,22808.0,2147.0 +1919972,1919972,1942329,1,18.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1919974,1919974,1942331,1,18.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22806.0,2146.0 +1919975,1919975,1942332,1,18.0,1.0,-9.0,-9.0,3,7600.0,1013097,0.0,22808.0,2147.0 +1919977,1919977,1942334,1,18.0,1.0,-9.0,-9.0,3,5500.0,1035838,0.0,22808.0,2147.0 +1919979,1919979,1942336,1,18.0,1.0,-9.0,-9.0,3,3600.0,1035838,0.0,22808.0,2147.0 +1919982,1919982,1942339,1,18.0,1.0,-9.0,-9.0,3,64500.0,1070673,0.0,22808.0,2147.0 +1919985,1919985,1942342,1,18.0,1.0,-9.0,-9.0,3,16530.0,1070673,0.0,22806.0,2146.0 +1919987,1919987,1942344,1,18.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22806.0,2146.0 +1919988,1919988,1942345,1,18.0,1.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1919989,1919989,1942346,1,18.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22808.0,2147.0 +1919998,1919998,1942355,1,18.0,1.0,-9.0,-9.0,3,2400.0,1061242,0.0,22808.0,2147.0 +1920000,1920000,1942357,1,18.0,1.0,-9.0,-9.0,3,26000.0,1070673,0.0,22760.0,2128.0 +1920003,1920003,1942360,1,18.0,1.0,-9.0,-9.0,3,27500.0,1070673,0.0,22808.0,2147.0 +1920011,1920011,1942368,1,18.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22808.0,2147.0 +1920012,1920012,1942369,1,18.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1920013,1920013,1942370,1,18.0,1.0,-9.0,-9.0,3,23301.0,1070673,0.0,22806.0,2146.0 +1920014,1920014,1942371,1,18.0,1.0,-9.0,-9.0,3,35700.0,1054346,0.0,22808.0,2147.0 +1920016,1920016,1942373,1,18.0,1.0,-9.0,-9.0,3,28000.0,1035838,0.0,22808.0,2147.0 +1920020,1920020,1942377,1,18.0,1.0,-9.0,-9.0,3,34000.0,1054346,0.0,22808.0,2147.0 +1920023,1920023,1942380,1,18.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1920030,1920030,1942387,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22758.0,2127.0 +1920032,1920032,1942389,1,18.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1920035,1920035,1942392,1,18.0,1.0,-9.0,-9.0,3,64250.0,1061242,0.0,22806.0,2146.0 +1920038,1920038,1942395,1,18.0,1.0,-9.0,-9.0,3,250.0,1070673,0.0,22808.0,2147.0 +1920042,1920042,1942399,1,18.0,1.0,-9.0,-9.0,3,26100.0,1070673,0.0,22808.0,2147.0 +1920043,1920043,1942400,1,18.0,1.0,-9.0,-9.0,3,15800.0,1054346,0.0,22808.0,2147.0 +1920046,1920046,1942403,1,18.0,1.0,-9.0,-9.0,3,500.0,1054346,0.0,22808.0,2147.0 +1920053,1920053,1942410,1,18.0,1.0,-9.0,-9.0,3,6000.0,1061242,0.0,22808.0,2147.0 +1920054,1920054,1942411,1,18.0,1.0,-9.0,-9.0,3,1000.0,1035838,0.0,22758.0,2127.0 +1920056,1920056,1942413,1,18.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22806.0,2146.0 +1920057,1920057,1942414,1,18.0,1.0,-9.0,-9.0,3,1000.0,1035838,0.0,22765.0,2130.0 +1920061,1920061,1942418,1,18.0,1.0,-9.0,-9.0,3,42500.0,1035838,0.0,22808.0,2147.0 +1920064,1920064,1942421,1,18.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22808.0,2147.0 +1920066,1920066,1942423,1,18.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1920068,1920068,1942425,1,18.0,1.0,-9.0,-9.0,3,3000.0,1013097,0.0,22808.0,2147.0 +1920074,1920074,1942431,1,18.0,1.0,-9.0,-9.0,3,26000.0,1054346,0.0,22808.0,2147.0 +1920078,1920078,1942435,1,18.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22808.0,2147.0 +1920079,1920079,1942436,1,18.0,1.0,-9.0,-9.0,3,19000.0,1061242,0.0,22765.0,2130.0 +1920080,1920080,1942437,1,18.0,1.0,-9.0,-9.0,3,10600.0,1054346,0.0,22760.0,2128.0 +1920083,1920083,1942440,1,18.0,1.0,-9.0,-9.0,3,3200.0,1054346,0.0,22808.0,2147.0 +1920085,1920085,1942442,1,18.0,1.0,-9.0,-9.0,3,6030.0,1070673,0.0,22808.0,2147.0 +1920090,1920090,1942447,1,18.0,1.0,-9.0,-9.0,3,4000.0,1013097,0.0,22808.0,2147.0 +1920098,1920098,1942455,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22808.0,2147.0 +1920101,1920101,1942458,1,18.0,1.0,-9.0,-9.0,3,36900.0,1013097,0.0,22765.0,2130.0 +1920103,1920103,1942460,1,18.0,1.0,-9.0,-9.0,3,27600.0,1061242,0.0,22808.0,2147.0 +1920106,1920106,1942463,1,18.0,1.0,-9.0,-9.0,3,72000.0,1054346,0.0,22808.0,2147.0 +1920111,1920111,1942468,1,18.0,1.0,-9.0,-9.0,3,33500.0,1070673,0.0,22808.0,2147.0 +1920112,1920112,1942469,1,18.0,1.0,-9.0,-9.0,3,6000.0,1070673,0.0,22808.0,2147.0 +1920113,1920113,1942470,1,18.0,1.0,-9.0,-9.0,3,33000.0,1061242,0.0,22765.0,2130.0 +1920114,1920114,1942471,1,18.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1920117,1920117,1942474,1,18.0,1.0,-9.0,-9.0,3,10000.0,1070673,0.0,22806.0,2146.0 +1920118,1920118,1942475,1,18.0,1.0,-9.0,-9.0,3,14300.0,1061242,0.0,22806.0,2146.0 +1920122,1920122,1942479,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1920128,1920128,1942485,1,18.0,1.0,-9.0,-9.0,3,65300.0,1061242,0.0,22808.0,2147.0 +1920129,1920129,1942486,1,18.0,1.0,-9.0,-9.0,3,1400.0,1061242,0.0,22808.0,2147.0 +1920130,1920130,1942487,1,18.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22808.0,2147.0 +1920134,1920134,1942491,1,18.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22760.0,2128.0 +1920135,1920135,1942492,1,18.0,1.0,-9.0,-9.0,3,91000.0,1013097,0.0,22765.0,2130.0 +1920137,1920137,1942494,1,18.0,1.0,-9.0,-9.0,3,28300.0,1013097,0.0,22814.0,2150.0 +1920142,1920142,1942499,1,18.0,1.0,-9.0,-9.0,3,13000.0,1070673,0.0,22765.0,2130.0 +1920147,1920147,1942504,1,18.0,1.0,-9.0,-9.0,3,3401.0,1054346,0.0,22808.0,2147.0 +1920149,1920149,1942506,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1920150,1920150,1942507,1,18.0,1.0,-9.0,-9.0,3,14400.0,1035838,0.0,22806.0,2146.0 +1920158,1920158,1942515,1,18.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22765.0,2130.0 +1920159,1920159,1942516,1,18.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22765.0,2130.0 +1920162,1920162,1942519,1,18.0,1.0,-9.0,-9.0,3,30400.0,1035838,0.0,22806.0,2146.0 +1920163,1920163,1942520,1,18.0,1.0,-9.0,-9.0,3,14300.0,1013097,0.0,22806.0,2146.0 +1920164,1920164,1942521,1,18.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22810.0,2148.0 +1920170,1920170,1942527,1,18.0,1.0,-9.0,-9.0,3,37000.0,1070673,0.0,22808.0,2147.0 +1920171,1920171,1942528,1,18.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1920174,1920174,1942531,1,18.0,1.0,-9.0,-9.0,3,30020.0,1070673,0.0,22808.0,2147.0 +1920177,1920177,1942534,1,18.0,1.0,-9.0,-9.0,3,6000.0,1061242,0.0,22814.0,2150.0 +1920179,1920179,1942536,1,18.0,1.0,-9.0,-9.0,3,67600.0,1054346,0.0,22808.0,2147.0 +1920183,1920183,1942540,1,18.0,1.0,-9.0,-9.0,3,6000.0,1061242,0.0,22808.0,2147.0 +1920185,1920185,1942542,1,18.0,1.0,-9.0,-9.0,3,30000.0,1054346,0.0,22808.0,2147.0 +1920189,1920189,1942546,1,18.0,1.0,-9.0,-9.0,3,400.0,1054346,0.0,22808.0,2147.0 +1920190,1920190,1942547,1,18.0,1.0,-9.0,-9.0,3,15850.0,1013097,0.0,22808.0,2147.0 +1920192,1920192,1942549,1,18.0,1.0,-9.0,-9.0,3,4200.0,1035838,0.0,22808.0,2147.0 +1920194,1920194,1942551,1,18.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1920196,1920196,1942553,1,18.0,1.0,-9.0,-9.0,3,31600.0,1061242,0.0,22808.0,2147.0 +1920197,1920197,1942554,1,18.0,1.0,-9.0,-9.0,3,30000.0,1061242,0.0,22765.0,2130.0 +1920200,1920200,1942557,1,18.0,1.0,-9.0,-9.0,3,600.0,1054346,0.0,22808.0,2147.0 +1920204,1920204,1942561,1,18.0,1.0,-9.0,-9.0,3,41500.0,1070673,0.0,22808.0,2147.0 +1920206,1920206,1942563,1,18.0,1.0,-9.0,-9.0,3,69400.0,1035838,0.0,22808.0,2147.0 +1920210,1920210,1942567,1,18.0,1.0,-9.0,-9.0,3,10900.0,1013097,0.0,22806.0,2146.0 +1920215,1920215,1942572,1,18.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22808.0,2147.0 +1920216,1920216,1942573,1,18.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22806.0,2146.0 +1920223,1920223,1942580,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1920231,1920231,1942588,1,18.0,1.0,-9.0,-9.0,3,28300.0,1054346,0.0,22808.0,2147.0 +1920234,1920234,1942591,1,18.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22808.0,2147.0 +1920238,1920238,1942595,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1920239,1920239,1942596,1,18.0,1.0,-9.0,-9.0,3,10700.0,1070673,0.0,22806.0,2146.0 +1920242,1920242,1942599,1,18.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22808.0,2147.0 +1920245,1920245,1942602,1,18.0,1.0,-9.0,-9.0,3,76000.0,1061242,0.0,22758.0,2127.0 +1920247,1920247,1942604,1,18.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22808.0,2147.0 +1920248,1920248,1942605,1,18.0,1.0,-9.0,-9.0,3,1000.0,1070673,0.0,22808.0,2147.0 +1920250,1920250,1942607,1,18.0,1.0,-9.0,-9.0,3,1000.0,1054346,0.0,22765.0,2130.0 +1920253,1920253,1942610,1,18.0,1.0,-9.0,-9.0,3,66000.0,1054346,0.0,22808.0,2147.0 +1920260,1920260,1942617,1,18.0,1.0,-9.0,-9.0,3,66000.0,1061242,0.0,22806.0,2146.0 +1920261,1920261,1942618,1,18.0,1.0,-9.0,-9.0,3,65000.0,1035838,0.0,22808.0,2147.0 +1920267,1920267,1942624,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22808.0,2147.0 +1920268,1920268,1942625,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1920269,1920269,1942626,1,18.0,1.0,-9.0,-9.0,3,29500.0,1013097,0.0,22808.0,2147.0 +1920272,1920272,1942629,1,18.0,1.0,-9.0,-9.0,3,72000.0,1054346,0.0,22808.0,2147.0 +1920273,1920273,1942630,1,18.0,1.0,-9.0,-9.0,3,4500.0,1070673,0.0,22808.0,2147.0 +1920274,1920274,1942631,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22806.0,2146.0 +1920277,1920277,1942634,1,18.0,1.0,-9.0,-9.0,3,64300.0,1035838,0.0,22806.0,2146.0 +1920278,1920278,1942635,1,18.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22765.0,2130.0 +1920279,1920279,1942636,1,18.0,1.0,-9.0,-9.0,3,66000.0,1061242,0.0,22808.0,2147.0 +1920285,1920285,1942642,1,18.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22808.0,2147.0 +1920286,1920286,1942643,1,18.0,1.0,-9.0,-9.0,3,34700.0,1061242,0.0,22808.0,2147.0 +1920287,1920287,1942644,1,18.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22808.0,2147.0 +1920288,1920288,1942645,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1920290,1920290,1942647,1,18.0,1.0,-9.0,-9.0,3,25000.0,1061242,0.0,22813.0,2150.0 +1920294,1920294,1942651,1,18.0,1.0,-9.0,-9.0,3,5404.0,1061242,0.0,22808.0,2147.0 +1920297,1920297,1942654,1,18.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22806.0,2146.0 +1920300,1920300,1942657,1,18.0,1.0,-9.0,-9.0,3,29500.0,1035838,0.0,22806.0,2146.0 +1920301,1920301,1942658,1,18.0,1.0,-9.0,-9.0,3,5404.0,1061242,0.0,22813.0,2150.0 +1920303,1920303,1942660,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22806.0,2146.0 +1920304,1920304,1942661,1,18.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22808.0,2147.0 +1920307,1920307,1942664,1,18.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22808.0,2147.0 +1920310,1920310,1942667,1,18.0,1.0,-9.0,-9.0,3,33000.0,1035838,0.0,22808.0,2147.0 +1920311,1920311,1942668,1,18.0,1.0,-9.0,-9.0,3,1000.0,1054346,0.0,22765.0,2130.0 +1920316,1920316,1942673,1,18.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22765.0,2130.0 +1920318,1920318,1942675,1,18.0,1.0,-9.0,-9.0,3,1400.0,1061242,0.0,22808.0,2147.0 +1920321,1920321,1942678,1,18.0,1.0,-9.0,-9.0,3,32500.0,1013097,0.0,22806.0,2146.0 +1920322,1920322,1942679,1,18.0,1.0,-9.0,-9.0,3,68800.0,1061242,0.0,22808.0,2147.0 +1920327,1920327,1942684,1,18.0,1.0,-9.0,-9.0,3,24000.0,1054346,0.0,22808.0,2147.0 +1920335,1920335,1942692,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1920340,1920340,1942697,1,18.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22810.0,2148.0 +1920341,1920341,1942698,1,18.0,1.0,-9.0,-9.0,3,10000.0,1054346,0.0,22806.0,2146.0 +1920342,1920342,1942699,1,18.0,1.0,-9.0,-9.0,3,31000.0,1054346,0.0,22808.0,2147.0 +1920343,1920343,1942700,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22810.0,2148.0 +1920344,1920344,1942701,1,18.0,1.0,-9.0,-9.0,3,72600.0,1070673,0.0,22808.0,2147.0 +1920345,1920345,1942702,1,18.0,1.0,-9.0,-9.0,3,66500.0,1035838,0.0,22808.0,2147.0 +1920348,1920348,1942705,1,18.0,1.0,-9.0,-9.0,3,29500.0,1035838,0.0,22808.0,2147.0 +1920354,1920354,1942711,1,18.0,1.0,-9.0,-9.0,3,2000.0,1061242,0.0,22808.0,2147.0 +1920356,1920356,1942713,1,18.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22765.0,2130.0 +1920358,1920358,1942715,1,18.0,1.0,-9.0,-9.0,3,8500.0,1070673,0.0,22765.0,2130.0 +1920367,1920367,1942724,1,18.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22808.0,2147.0 +1920374,1920374,1942731,1,18.0,1.0,-9.0,-9.0,3,67000.0,1061242,0.0,22765.0,2130.0 +1920376,1920376,1942733,1,18.0,1.0,-9.0,-9.0,3,44100.0,1054346,0.0,22765.0,2130.0 +1920381,1920381,1942738,1,18.0,1.0,-9.0,-9.0,3,38000.0,1054346,0.0,22765.0,2130.0 +1920382,1920382,1942739,1,18.0,1.0,-9.0,-9.0,3,7600.0,1013097,0.0,22808.0,2147.0 +1920384,1920384,1942741,1,18.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1920389,1920389,1942746,1,18.0,1.0,-9.0,-9.0,3,69100.0,1035838,0.0,22806.0,2146.0 +1920390,1920390,1942747,1,18.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22808.0,2147.0 +1920391,1920391,1942748,1,18.0,1.0,-9.0,-9.0,3,68000.0,1061242,0.0,22808.0,2147.0 +1920394,1920394,1942751,1,18.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22806.0,2146.0 +1920395,1920395,1942752,1,18.0,1.0,-9.0,-9.0,3,12000.0,1013097,0.0,22808.0,2147.0 +1920396,1920396,1942753,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1920397,1920397,1942754,1,18.0,1.0,-9.0,-9.0,3,26800.0,1061242,0.0,22808.0,2147.0 +1920406,1920406,1942763,1,18.0,1.0,-9.0,-9.0,3,20000.0,1061242,0.0,22814.0,2150.0 +1920408,1920408,1942765,1,18.0,1.0,-9.0,-9.0,3,19270.0,1054346,0.0,22808.0,2147.0 +1920410,1920410,1942767,1,18.0,1.0,-9.0,-9.0,3,66000.0,1070673,0.0,22808.0,2147.0 +1920411,1920411,1942768,1,18.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22806.0,2146.0 +1920412,1920412,1942769,1,18.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1920416,1920416,1942773,1,18.0,1.0,-9.0,-9.0,3,3600.0,1035838,0.0,22808.0,2147.0 +1920423,1920423,1942780,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22765.0,2130.0 +1920428,1920428,1942785,1,18.0,1.0,-9.0,-9.0,3,670.0,1035838,0.0,22765.0,2130.0 +1920433,1920433,1942790,1,18.0,1.0,-9.0,-9.0,3,9500.0,1054346,0.0,22806.0,2146.0 +1920438,1920438,1942795,1,18.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22765.0,2130.0 +1920439,1920439,1942796,1,18.0,1.0,-9.0,-9.0,3,62780.0,1070673,0.0,22808.0,2147.0 +1920442,1920442,1942799,1,18.0,1.0,-9.0,-9.0,3,12000.0,1061242,0.0,22813.0,2150.0 +1920448,1920448,1942805,1,18.0,1.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1920449,1920449,1942806,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1920453,1920453,1942810,1,18.0,1.0,-9.0,-9.0,3,3000.0,1054346,0.0,22758.0,2127.0 +1920458,1920458,1942815,1,18.0,1.0,-9.0,-9.0,3,2840.0,1013097,0.0,22808.0,2147.0 +1920462,1920462,1942819,1,18.0,1.0,-9.0,-9.0,3,35800.0,1035838,0.0,22808.0,2147.0 +1920466,1920466,1942823,1,18.0,1.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1920469,1920469,1942826,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1920473,1920473,1942830,1,18.0,1.0,-9.0,-9.0,3,10900.0,1013097,0.0,22808.0,2147.0 +1920474,1920474,1942831,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1920480,1920480,1942837,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22814.0,2150.0 +1920483,1920483,1942840,1,18.0,1.0,-9.0,-9.0,3,31900.0,1070673,0.0,22808.0,2147.0 +1920488,1920488,1942845,1,18.0,1.0,-9.0,-9.0,3,4000.0,1054346,0.0,22808.0,2147.0 +1920491,1920491,1942848,1,18.0,1.0,-9.0,-9.0,3,9500.0,1054346,0.0,22808.0,2147.0 +1920492,1920492,1942849,1,18.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22806.0,2146.0 +1920493,1920493,1942850,1,18.0,1.0,-9.0,-9.0,3,35700.0,1054346,0.0,22808.0,2147.0 +1920495,1920495,1942852,1,18.0,1.0,-9.0,-9.0,3,4950.0,1054346,0.0,22806.0,2146.0 +1920496,1920496,1942853,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1920503,1920503,1942860,1,18.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22808.0,2147.0 +1920508,1920508,1942865,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1920510,1920510,1942867,1,18.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22806.0,2146.0 +1920521,1920521,1942878,1,18.0,1.0,-9.0,-9.0,3,31000.0,1061242,0.0,22808.0,2147.0 +1920526,1920526,1942883,1,18.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22765.0,2130.0 +1920529,1920529,1942886,1,18.0,1.0,-9.0,-9.0,3,4300.0,1061242,0.0,22808.0,2147.0 +1920531,1920531,1942888,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22815.0,2150.0 +1920532,1920532,1942889,1,18.0,1.0,-9.0,-9.0,3,2300.0,1013097,0.0,22806.0,2146.0 +1920533,1920533,1942890,1,18.0,1.0,-9.0,-9.0,3,5500.0,1035838,0.0,22808.0,2147.0 +1920534,1920534,1942891,1,18.0,1.0,-9.0,-9.0,3,21000.0,1013097,0.0,22808.0,2147.0 +1920538,1920538,1942895,1,18.0,1.0,-9.0,-9.0,3,28200.0,1054346,0.0,22806.0,2146.0 +1920539,1920539,1942896,1,18.0,1.0,-9.0,-9.0,3,72600.0,1070673,0.0,22765.0,2130.0 +1920540,1920540,1942897,1,18.0,1.0,-9.0,-9.0,3,66660.0,1070673,0.0,22808.0,2147.0 +1920541,1920541,1942898,1,18.0,1.0,-9.0,-9.0,3,30500.0,1035838,0.0,22810.0,2148.0 +1920546,1920546,1942903,1,18.0,1.0,-9.0,-9.0,3,6700.0,1070673,0.0,22808.0,2147.0 +1920550,1920550,1942907,1,18.0,1.0,-9.0,-9.0,3,16000.0,1035838,0.0,22808.0,2147.0 +1920552,1920552,1942909,1,18.0,1.0,-9.0,-9.0,3,3200.0,1054346,0.0,22815.0,2150.0 +1920555,1920555,1942912,1,18.0,1.0,-9.0,-9.0,3,67600.0,1054346,0.0,22808.0,2147.0 +1920557,1920557,1942914,1,18.0,1.0,-9.0,-9.0,3,24500.0,1054346,0.0,22814.0,2150.0 +1920558,1920558,1942915,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22765.0,2130.0 +1920559,1920559,1942916,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1920564,1920564,1942921,1,18.0,1.0,-9.0,-9.0,3,2400.0,1013097,0.0,22765.0,2130.0 +1920565,1920565,1942922,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1920566,1920566,1942923,1,18.0,1.0,-9.0,-9.0,3,1900.0,1013097,0.0,22808.0,2147.0 +1920569,1920569,1942926,1,18.0,1.0,-9.0,-9.0,3,30500.0,1035838,0.0,22806.0,2146.0 +1920571,1920571,1942928,1,18.0,1.0,-9.0,-9.0,3,72000.0,1054346,0.0,22808.0,2147.0 +1920572,1920572,1942929,1,18.0,1.0,-9.0,-9.0,3,19000.0,1061242,0.0,22815.0,2150.0 +1920573,1920573,1942930,1,18.0,1.0,-9.0,-9.0,3,25200.0,1061242,0.0,22808.0,2147.0 +1920574,1920574,1942931,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22815.0,2150.0 +1920578,1920578,1942935,1,18.0,1.0,-9.0,-9.0,3,25000.0,1061242,0.0,22808.0,2147.0 +1920580,1920580,1942937,1,18.0,1.0,-9.0,-9.0,3,30800.0,1070673,0.0,22808.0,2147.0 +1920582,1920582,1942939,1,18.0,1.0,-9.0,-9.0,3,1000.0,1035838,0.0,22808.0,2147.0 +1920584,1920584,1942941,1,18.0,1.0,-9.0,-9.0,3,33500.0,1035838,0.0,22814.0,2150.0 +1920585,1920585,1942942,1,18.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22765.0,2130.0 +1920586,1920586,1942943,1,18.0,1.0,-9.0,-9.0,3,17500.0,1061242,0.0,22808.0,2147.0 +1920588,1920588,1942945,1,18.0,1.0,-9.0,-9.0,3,26800.0,1061242,0.0,22808.0,2147.0 +1920589,1920589,1942946,1,18.0,1.0,-9.0,-9.0,3,28800.0,1035838,0.0,22806.0,2146.0 +1920590,1920590,1942947,1,18.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22765.0,2130.0 +1920596,1920596,1942953,1,18.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1920597,1920597,1942954,1,18.0,1.0,-9.0,-9.0,3,29500.0,1013097,0.0,22808.0,2147.0 +1920602,1920602,1942959,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1920605,1920605,1942962,1,18.0,1.0,-9.0,-9.0,3,190.0,1054346,0.0,22808.0,2147.0 +1920606,1920606,1942963,1,18.0,1.0,-9.0,-9.0,3,15500.0,1061242,0.0,22808.0,2147.0 +1920627,1920627,1942984,1,18.0,1.0,-9.0,-9.0,3,33500.0,1035838,0.0,22808.0,2147.0 +1920631,1920631,1942988,1,18.0,1.0,-9.0,-9.0,3,24700.0,1013097,0.0,22808.0,2147.0 +1920633,1920633,1942990,1,18.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22808.0,2147.0 +1920637,1920637,1942994,1,18.0,1.0,-9.0,-9.0,3,1000.0,1054346,0.0,22808.0,2147.0 +1920642,1920642,1942999,1,18.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22806.0,2146.0 +1920646,1920646,1943003,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1920650,1920650,1943007,1,18.0,1.0,-9.0,-9.0,3,13150.0,1061242,0.0,22808.0,2147.0 +1920660,1920660,1943017,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22814.0,2150.0 +1920662,1920662,1943019,1,18.0,1.0,-9.0,-9.0,3,1400.0,1061242,0.0,22765.0,2130.0 +1920663,1920663,1943020,1,18.0,1.0,-9.0,-9.0,3,64500.0,1070673,0.0,22815.0,2150.0 +1920666,1920666,1943023,1,18.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22806.0,2146.0 +1920668,1920668,1943025,1,18.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1920670,1920670,1943027,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1920673,1920673,1943030,1,18.0,1.0,-9.0,-9.0,3,29500.0,1013097,0.0,22806.0,2146.0 +1920674,1920674,1943031,1,18.0,1.0,-9.0,-9.0,3,13000.0,1070673,0.0,22806.0,2146.0 +1920678,1920678,1943035,1,18.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22808.0,2147.0 +1920685,1920685,1943042,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1920686,1920686,1943043,1,18.0,1.0,-9.0,-9.0,3,62200.0,1070673,0.0,22806.0,2146.0 +1920688,1920688,1943045,1,18.0,1.0,-9.0,-9.0,3,17500.0,1061242,0.0,22808.0,2147.0 +1920689,1920689,1943046,1,18.0,1.0,-9.0,-9.0,3,2200.0,1061242,0.0,22808.0,2147.0 +1920690,1920690,1943047,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1920691,1920691,1943048,1,18.0,1.0,-9.0,-9.0,3,15000.0,1013097,0.0,22806.0,2146.0 +1920698,1920698,1943055,1,18.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22806.0,2146.0 +1920701,1920701,1943058,1,18.0,1.0,-9.0,-9.0,3,19000.0,1061242,0.0,22765.0,2130.0 +1920704,1920704,1943061,1,18.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22808.0,2147.0 +1920706,1920706,1943063,1,18.0,1.0,-9.0,-9.0,3,16000.0,1035838,0.0,22808.0,2147.0 +1920707,1920707,1943064,1,18.0,1.0,-9.0,-9.0,3,3000.0,1013097,0.0,22765.0,2130.0 +1920708,1920708,1943065,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22808.0,2147.0 +1920713,1920713,1943070,1,18.0,1.0,-9.0,-9.0,3,65300.0,1061242,0.0,22765.0,2130.0 +1920717,1920717,1943074,1,18.0,1.0,-9.0,-9.0,3,17500.0,1061242,0.0,22808.0,2147.0 +1920719,1920719,1943076,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22808.0,2147.0 +1920720,1920720,1943077,1,18.0,1.0,-9.0,-9.0,3,41200.0,1035838,0.0,22806.0,2146.0 +1920722,1920722,1943079,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1920724,1920724,1943081,1,18.0,1.0,-9.0,-9.0,3,65300.0,1070673,0.0,22808.0,2147.0 +1920725,1920725,1943082,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1920730,1920730,1943087,1,18.0,1.0,-9.0,-9.0,3,15100.0,1054346,0.0,22808.0,2147.0 +1920732,1920732,1943089,1,18.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22808.0,2147.0 +1920735,1920735,1943092,1,18.0,1.0,-9.0,-9.0,3,42500.0,1035838,0.0,22765.0,2130.0 +1920740,1920740,1943097,1,18.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22808.0,2147.0 +1920744,1920744,1943101,1,18.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1920747,1920747,1943104,1,18.0,1.0,-9.0,-9.0,3,62780.0,1070673,0.0,22808.0,2147.0 +1920749,1920749,1943106,1,18.0,1.0,-9.0,-9.0,3,32300.0,1070673,0.0,22808.0,2147.0 +1920751,1920751,1943108,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1920752,1920752,1943109,1,18.0,1.0,-9.0,-9.0,3,14300.0,1054346,0.0,22808.0,2147.0 +1920756,1920756,1943113,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22765.0,2130.0 +1920759,1920759,1943116,1,18.0,1.0,-9.0,-9.0,3,4000.0,1013097,0.0,22808.0,2147.0 +1920768,1920768,1943125,1,18.0,1.0,-9.0,-9.0,3,76000.0,1061242,0.0,22808.0,2147.0 +1920769,1920769,1943126,1,18.0,1.0,-9.0,-9.0,3,64500.0,1035838,0.0,22808.0,2147.0 +1920773,1920773,1943130,1,18.0,1.0,-9.0,-9.0,3,65700.0,1054346,0.0,22808.0,2147.0 +1920775,1920775,1943132,1,18.0,1.0,-9.0,-9.0,3,3500.0,1035838,0.0,22808.0,2147.0 +1920778,1920778,1943135,1,18.0,1.0,-9.0,-9.0,3,26800.0,1061242,0.0,22808.0,2147.0 +1920786,1920786,1943143,1,18.0,1.0,-9.0,-9.0,3,1800.0,1035838,0.0,22815.0,2150.0 +1920791,1920791,1943148,1,18.0,1.0,-9.0,-9.0,3,15500.0,1070673,0.0,22808.0,2147.0 +1920792,1920792,1943149,1,18.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22808.0,2147.0 +1920793,1920793,1943150,1,18.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1920794,1920794,1943151,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1920795,1920795,1943152,1,18.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22814.0,2150.0 +1920797,1920797,1943154,1,18.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22808.0,2147.0 +1920799,1920799,1943156,1,18.0,1.0,-9.0,-9.0,3,13000.0,1035838,0.0,22808.0,2147.0 +1920807,1920807,1943164,1,18.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22808.0,2147.0 +1920808,1920808,1943165,1,18.0,1.0,-9.0,-9.0,3,81000.0,1013097,0.0,22765.0,2130.0 +1920813,1920813,1943170,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22806.0,2146.0 +1920816,1920816,1943173,1,18.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22808.0,2147.0 +1920818,1920818,1943175,1,18.0,1.0,-9.0,-9.0,3,1000.0,1054346,0.0,22808.0,2147.0 +1920822,1920822,1943179,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1920824,1920824,1943181,1,18.0,1.0,-9.0,-9.0,3,27000.0,1054346,0.0,22808.0,2147.0 +1920826,1920826,1943183,1,18.0,1.0,-9.0,-9.0,3,29000.0,1070673,0.0,22808.0,2147.0 +1920834,1920834,1943191,1,18.0,1.0,-9.0,-9.0,3,41200.0,1035838,0.0,22808.0,2147.0 +1920835,1920835,1943192,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22806.0,2146.0 +1920837,1920837,1943194,1,18.0,1.0,-9.0,-9.0,3,31500.0,1013097,0.0,22808.0,2147.0 +1920840,1920840,1943197,1,18.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22806.0,2146.0 +1920843,1920843,1943200,1,18.0,1.0,-9.0,-9.0,3,69400.0,1035838,0.0,22758.0,2127.0 +1920848,1920848,1943205,1,18.0,1.0,-9.0,-9.0,3,670.0,1035838,0.0,22808.0,2147.0 +1920850,1920850,1943207,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1920854,1920854,1943211,1,18.0,1.0,-9.0,-9.0,3,12000.0,1061242,0.0,22808.0,2147.0 +1920864,1920864,1943221,1,18.0,1.0,-9.0,-9.0,3,43000.0,1054346,0.0,22808.0,2147.0 +1920867,1920867,1943224,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22765.0,2130.0 +1920869,1920869,1943226,1,18.0,1.0,-9.0,-9.0,3,28500.0,1013097,0.0,22765.0,2130.0 +1920872,1920872,1943229,1,18.0,1.0,-9.0,-9.0,3,31300.0,1061242,0.0,22808.0,2147.0 +1920874,1920874,1943231,1,18.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1920876,1920876,1943233,1,18.0,1.0,-9.0,-9.0,3,21000.0,1035838,0.0,22808.0,2147.0 +1920877,1920877,1943234,1,18.0,1.0,-9.0,-9.0,3,7500.0,1035838,0.0,22806.0,2146.0 +1920879,1920879,1943236,1,18.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22806.0,2146.0 +1920881,1920881,1943238,1,18.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1920885,1920885,1943242,1,18.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22808.0,2147.0 +1920898,1920898,1943255,1,18.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22806.0,2146.0 +1920901,1920901,1943258,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1920902,1920902,1943259,1,18.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1920906,1920906,1943263,1,18.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22810.0,2148.0 +1920909,1920909,1943266,1,18.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22808.0,2147.0 +1920915,1920915,1943272,1,18.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1920916,1920916,1943273,1,18.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22808.0,2147.0 +1920921,1920921,1943278,1,18.0,1.0,-9.0,-9.0,3,40500.0,1013097,0.0,22808.0,2147.0 +1920923,1920923,1943280,1,18.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22808.0,2147.0 +1920930,1920930,1943287,1,18.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1920934,1920934,1943291,1,18.0,1.0,-9.0,-9.0,3,11600.0,1013097,0.0,22808.0,2147.0 +1920938,1920938,1943295,1,18.0,1.0,-9.0,-9.0,3,28600.0,1070673,0.0,22808.0,2147.0 +1920942,1920942,1943299,1,18.0,1.0,-9.0,-9.0,3,67600.0,1054346,0.0,22808.0,2147.0 +1920947,1920947,1943304,1,18.0,1.0,-9.0,-9.0,3,2400.0,1061242,0.0,22808.0,2147.0 +1920951,1920951,1943308,1,18.0,1.0,-9.0,-9.0,3,28600.0,1070673,0.0,22808.0,2147.0 +1920957,1920957,1943314,1,18.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22808.0,2147.0 +1920961,1920961,1943318,1,18.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22806.0,2146.0 +1920962,1920962,1943319,1,18.0,1.0,-9.0,-9.0,3,27000.0,1061242,0.0,22806.0,2146.0 +1920965,1920965,1943322,1,18.0,1.0,-9.0,-9.0,3,5500.0,1035838,0.0,22808.0,2147.0 +1920966,1920966,1943323,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22765.0,2130.0 +1920967,1920967,1943324,1,18.0,1.0,-9.0,-9.0,3,64300.0,1035838,0.0,22808.0,2147.0 +1920968,1920968,1943325,1,18.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22808.0,2147.0 +1920970,1920970,1943327,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22808.0,2147.0 +1920971,1920971,1943328,1,18.0,1.0,-9.0,-9.0,3,46000.0,1061242,0.0,22765.0,2130.0 +1920972,1920972,1943329,1,18.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1920973,1920973,1943330,1,18.0,1.0,-9.0,-9.0,3,72000.0,1061242,0.0,22808.0,2147.0 +1920974,1920974,1943331,1,18.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22808.0,2147.0 +1920976,1920976,1943333,1,18.0,1.0,-9.0,-9.0,3,30500.0,1054346,0.0,22765.0,2130.0 +1920977,1920977,1943334,1,18.0,1.0,-9.0,-9.0,3,5800.0,1013097,0.0,22808.0,2147.0 +1920979,1920979,1943336,1,18.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22808.0,2147.0 +1920982,1920982,1943339,1,18.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22808.0,2147.0 +1920988,1920988,1943345,1,18.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1920990,1920990,1943347,1,18.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1920993,1920993,1943350,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1921001,1921001,1943358,1,18.0,2.0,-9.0,-9.0,3,3000.0,1013097,0.0,22765.0,2130.0 +1921007,1921007,1943364,1,18.0,2.0,-9.0,-9.0,3,52400.0,1013097,0.0,22810.0,2148.0 +1921008,1921008,1943365,1,18.0,2.0,-9.0,-9.0,3,37000.0,1013097,0.0,22765.0,2130.0 +1921009,1921009,1943366,1,18.0,2.0,-9.0,-9.0,3,3000.0,1061242,0.0,22808.0,2147.0 +1921014,1921014,1943371,1,18.0,2.0,-9.0,-9.0,3,2200.0,1035838,0.0,22808.0,2147.0 +1921031,1921031,1943388,1,18.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22813.0,2150.0 +1921035,1921035,1943392,1,18.0,2.0,-9.0,-9.0,3,3700.0,1054346,0.0,22806.0,2146.0 +1921036,1921036,1943393,1,18.0,2.0,-9.0,-9.0,3,27000.0,1013097,0.0,22808.0,2147.0 +1921042,1921042,1943399,1,18.0,2.0,-9.0,-9.0,3,360.0,1035838,0.0,22810.0,2148.0 +1921043,1921043,1943400,1,18.0,2.0,-9.0,-9.0,3,3000.0,1035838,0.0,22808.0,2147.0 +1921048,1921048,1943405,1,18.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1921049,1921049,1943406,1,18.0,2.0,-9.0,-9.0,3,68500.0,1054346,0.0,22806.0,2146.0 +1921050,1921050,1943407,1,18.0,2.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1921051,1921051,1943408,1,18.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22758.0,2127.0 +1921061,1921061,1943418,1,18.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1921064,1921064,1943421,1,18.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1921070,1921070,1943427,1,18.0,2.0,-9.0,-9.0,3,7400.0,1061242,0.0,22808.0,2147.0 +1921071,1921071,1943428,1,18.0,2.0,-9.0,-9.0,3,3000.0,1035838,0.0,22808.0,2147.0 +1921073,1921073,1943430,1,18.0,2.0,-9.0,-9.0,3,13200.0,1061242,0.0,22806.0,2146.0 +1921074,1921074,1943431,1,18.0,2.0,-9.0,-9.0,3,960.0,1054346,0.0,22765.0,2130.0 +1921075,1921075,1943432,1,18.0,2.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1921076,1921076,1943433,1,18.0,2.0,-9.0,-9.0,3,2200.0,1035838,0.0,22808.0,2147.0 +1921077,1921077,1943434,1,18.0,2.0,-9.0,-9.0,3,13200.0,1061242,0.0,22808.0,2147.0 +1921078,1921078,1943435,1,18.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1921086,1921086,1943443,1,18.0,2.0,-9.0,-9.0,3,7400.0,1054346,0.0,22815.0,2150.0 +1921088,1921088,1943445,1,18.0,2.0,-9.0,-9.0,3,400.0,1070673,0.0,22808.0,2147.0 +1921091,1921091,1943448,1,18.0,2.0,-9.0,-9.0,3,10000.0,1070673,0.0,22808.0,2147.0 +1921093,1921093,1943450,1,18.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1921095,1921095,1943452,1,18.0,2.0,-9.0,-9.0,3,9600.0,1013097,0.0,22808.0,2147.0 +1921097,1921097,1943454,1,18.0,2.0,-9.0,-9.0,3,8000.0,1061242,0.0,22806.0,2146.0 +1921098,1921098,1943455,1,18.0,2.0,-9.0,-9.0,3,330.0,1013097,0.0,22808.0,2147.0 +1921100,1921100,1943457,1,18.0,2.0,-9.0,-9.0,3,2100.0,1061242,0.0,22806.0,2146.0 +1921101,1921101,1943458,1,18.0,2.0,-9.0,-9.0,3,7200.0,1061242,0.0,22808.0,2147.0 +1921102,1921102,1943459,1,18.0,2.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1921107,1921107,1943464,1,18.0,2.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1921110,1921110,1943467,1,18.0,2.0,-9.0,-9.0,3,5000.0,1061242,0.0,22806.0,2146.0 +1921111,1921111,1943468,1,18.0,2.0,-9.0,-9.0,3,15000.0,1054346,0.0,22806.0,2146.0 +1921112,1921112,1943469,1,18.0,2.0,-9.0,-9.0,3,26500.0,1054346,0.0,22765.0,2130.0 +1921116,1921116,1943473,1,18.0,2.0,-9.0,-9.0,3,930.0,1035838,0.0,22765.0,2130.0 +1921119,1921119,1943476,1,18.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22765.0,2130.0 +1921122,1921122,1943479,1,18.0,2.0,-9.0,-9.0,3,37000.0,1013097,0.0,22806.0,2146.0 +1921127,1921127,1943484,1,18.0,2.0,-9.0,-9.0,3,14000.0,1013097,0.0,22806.0,2146.0 +1921137,1921137,1943494,1,18.0,2.0,-9.0,-9.0,3,16404.0,1070673,0.0,22808.0,2147.0 +1921140,1921140,1943497,1,18.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1921146,1921146,1943503,1,18.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1921148,1921148,1943505,1,18.0,2.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1921149,1921149,1943506,1,18.0,2.0,-9.0,-9.0,3,5500.0,1054346,0.0,22808.0,2147.0 +1921153,1921153,1943510,1,18.0,2.0,-9.0,-9.0,3,26230.0,1054346,0.0,22808.0,2147.0 +1921155,1921155,1943512,1,18.0,2.0,-9.0,-9.0,3,960.0,1054346,0.0,22808.0,2147.0 +1921158,1921158,1943515,1,18.0,2.0,-9.0,-9.0,3,35400.0,1054346,0.0,22758.0,2127.0 +1921159,1921159,1943516,1,18.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1921162,1921162,1943519,1,18.0,2.0,-9.0,-9.0,3,22000.0,1061242,0.0,22765.0,2130.0 +1921164,1921164,1943521,1,18.0,2.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1921165,1921165,1943522,1,18.0,2.0,-9.0,-9.0,3,65010.0,1054346,0.0,22814.0,2150.0 +1921170,1921170,1943527,1,18.0,2.0,-9.0,-9.0,3,3000.0,1061242,0.0,22808.0,2147.0 +1921171,1921171,1943528,1,18.0,2.0,-9.0,-9.0,3,52400.0,1013097,0.0,22808.0,2147.0 +1921174,1921174,1943531,1,18.0,2.0,-9.0,-9.0,3,29700.0,1035838,0.0,22808.0,2147.0 +1921175,1921175,1943532,1,18.0,2.0,-9.0,-9.0,3,4700.0,1013097,0.0,22814.0,2150.0 +1921177,1921177,1943534,1,18.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1921180,1921180,1943537,1,18.0,2.0,-9.0,-9.0,3,26400.0,1054346,0.0,22808.0,2147.0 +1921181,1921181,1943538,1,18.0,2.0,-9.0,-9.0,3,10000.0,1070673,0.0,22808.0,2147.0 +1921185,1921185,1943542,1,18.0,2.0,-9.0,-9.0,3,3000.0,1013097,0.0,22808.0,2147.0 +1921191,1921191,1943548,1,18.0,2.0,-9.0,-9.0,3,1000.0,1070673,0.0,22808.0,2147.0 +1921193,1921193,1943550,1,18.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1921194,1921194,1943551,1,18.0,2.0,-9.0,-9.0,3,16700.0,1035838,0.0,22808.0,2147.0 +1921198,1921198,1943555,1,18.0,2.0,-9.0,-9.0,3,35400.0,1061242,0.0,22808.0,2147.0 +1921199,1921199,1943556,1,18.0,2.0,-9.0,-9.0,3,3000.0,1013097,0.0,22806.0,2146.0 +1921201,1921201,1943558,1,18.0,2.0,-9.0,-9.0,3,3000.0,1013097,0.0,22808.0,2147.0 +1921209,1921209,1943566,1,18.0,2.0,-9.0,-9.0,3,7000.0,1054346,0.0,22808.0,2147.0 +1921210,1921210,1943567,1,18.0,2.0,-9.0,-9.0,3,17000.0,1035838,0.0,22806.0,2146.0 +1921216,1921216,1943573,1,18.0,2.0,-9.0,-9.0,3,430.0,1013097,0.0,22806.0,2146.0 +1921217,1921217,1943574,1,18.0,2.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1921218,1921218,1943575,1,18.0,2.0,-9.0,-9.0,3,2200.0,1054346,0.0,22808.0,2147.0 +1921220,1921220,1943577,1,18.0,2.0,-9.0,-9.0,3,4600.0,1061242,0.0,22808.0,2147.0 +1921222,1921222,1943579,1,18.0,2.0,-9.0,-9.0,3,15000.0,1054346,0.0,22806.0,2146.0 +1921225,1921225,1943582,1,18.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1921228,1921228,1943585,1,18.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22806.0,2146.0 +1921229,1921229,1943586,1,18.0,2.0,-9.0,-9.0,3,14000.0,1013097,0.0,22765.0,2130.0 +1921233,1921233,1943590,1,18.0,2.0,-9.0,-9.0,3,2500.0,1035838,0.0,22815.0,2150.0 +1921235,1921235,1943592,1,18.0,2.0,-9.0,-9.0,3,4000.0,1035838,0.0,22808.0,2147.0 +1921238,1921238,1943595,1,18.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22765.0,2130.0 +1921239,1921239,1943596,1,18.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22814.0,2150.0 +1921245,1921245,1943602,1,18.0,2.0,-9.0,-9.0,3,5500.0,1054346,0.0,22765.0,2130.0 +1921256,1921256,1943613,1,18.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22808.0,2147.0 +1921258,1921258,1943615,1,18.0,4.0,-9.0,-9.0,3,26000.0,1013097,0.0,22758.0,2127.0 +1921260,1921260,1943617,1,18.0,4.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1921263,1921263,1943620,1,18.0,4.0,-9.0,-9.0,3,35030.0,1054346,0.0,22806.0,2146.0 +1921266,1921266,1943623,1,18.0,4.0,-9.0,-9.0,3,26600.0,1054346,0.0,22758.0,2127.0 +1921267,1921267,1943624,1,18.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1921287,1921287,1943644,1,18.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22808.0,2147.0 +1921288,1921288,1943645,1,18.0,4.0,-9.0,-9.0,3,5600.0,1013097,0.0,22808.0,2147.0 +1921294,1921294,1943651,1,18.0,4.0,-9.0,-9.0,3,26200.0,1035838,0.0,22806.0,2146.0 +1921297,1921297,1943654,1,18.0,4.0,-9.0,-9.0,3,35030.0,1054346,0.0,22806.0,2146.0 +1921298,1921298,1943655,1,18.0,4.0,-9.0,-9.0,3,18100.0,1035838,0.0,22808.0,2147.0 +1921299,1921299,1943656,1,18.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22765.0,2130.0 +1921301,1921301,1943658,1,18.0,4.0,-9.0,-9.0,3,25000.0,1070673,0.0,22808.0,2147.0 +1921305,1921305,1943662,1,18.0,4.0,-9.0,-9.0,3,40800.0,1061242,0.0,22808.0,2147.0 +1921306,1921306,1943663,1,18.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22808.0,2147.0 +1921311,1921311,1943668,1,18.0,4.0,-9.0,-9.0,3,29000.0,1054346,0.0,22806.0,2146.0 +1921318,1921318,1943675,1,18.0,4.0,-9.0,-9.0,3,72000.0,1013097,0.0,22765.0,2130.0 +1921319,1921319,1943676,1,18.0,4.0,-9.0,-9.0,3,11000.0,1035838,0.0,22808.0,2147.0 +1921321,1921321,1943678,1,18.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22806.0,2146.0 +1921325,1921325,1943682,1,18.0,4.0,-9.0,-9.0,3,22400.0,1070673,0.0,22808.0,2147.0 +1921326,1921326,1943683,1,18.0,4.0,-9.0,-9.0,3,26350.0,1061242,0.0,22806.0,2146.0 +1921331,1921331,1943688,1,18.0,4.0,-9.0,-9.0,3,69000.0,1054346,0.0,22808.0,2147.0 +1921332,1921332,1943689,1,18.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22806.0,2146.0 +1921334,1921334,1943691,1,18.0,4.0,-9.0,-9.0,3,14800.0,1035838,0.0,22808.0,2147.0 +1921337,1921337,1943694,1,18.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22806.0,2146.0 +1921342,1921342,1943699,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22813.0,2150.0 +1921347,1921347,1943704,1,18.0,4.0,-9.0,-9.0,3,6700.0,1035838,0.0,22765.0,2130.0 +1921349,1921349,1943706,1,18.0,4.0,-9.0,-9.0,3,65000.0,1070673,0.0,22808.0,2147.0 +1921353,1921353,1943710,1,18.0,4.0,-9.0,-9.0,3,26600.0,1054346,0.0,22765.0,2130.0 +1921355,1921355,1943712,1,18.0,4.0,-9.0,-9.0,3,3500.0,1013097,0.0,22808.0,2147.0 +1921356,1921356,1943713,1,18.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1921358,1921358,1943715,1,18.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1921363,1921363,1943720,1,18.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22806.0,2146.0 +1921364,1921364,1943721,1,18.0,4.0,-9.0,-9.0,3,29600.0,1035838,0.0,22808.0,2147.0 +1921368,1921368,1943725,1,18.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22808.0,2147.0 +1921373,1921373,1943730,1,18.0,4.0,-9.0,-9.0,3,69000.0,1054346,0.0,22808.0,2147.0 +1921379,1921379,1943736,1,18.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22806.0,2146.0 +1921387,1921387,1943744,1,18.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22815.0,2150.0 +1921392,1921392,1943749,1,18.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22760.0,2128.0 +1921395,1921395,1943752,1,18.0,4.0,-9.0,-9.0,3,65000.0,1070673,0.0,22808.0,2147.0 +1921396,1921396,1943753,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1921397,1921397,1943754,1,18.0,4.0,-9.0,-9.0,3,22400.0,1070673,0.0,22806.0,2146.0 +1921400,1921400,1943757,1,18.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22765.0,2130.0 +1921401,1921401,1943758,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1921402,1921402,1943759,1,18.0,4.0,-9.0,-9.0,3,26350.0,1061242,0.0,22760.0,2128.0 +1921406,1921406,1943763,1,18.0,4.0,-9.0,-9.0,3,26400.0,1061242,0.0,22808.0,2147.0 +1921408,1921408,1943765,1,18.0,4.0,-9.0,-9.0,3,64000.0,1061242,0.0,22806.0,2146.0 +1921410,1921410,1943767,1,18.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22808.0,2147.0 +1921411,1921411,1943768,1,18.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1921415,1921415,1943772,1,18.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22808.0,2147.0 +1921417,1921417,1943774,1,18.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1921431,1921431,1943788,1,18.0,4.0,-9.0,-9.0,3,3550.0,1054346,0.0,22806.0,2146.0 +1921433,1921433,1943790,1,18.0,4.0,-9.0,-9.0,3,7000.0,1054346,0.0,22808.0,2147.0 +1921435,1921435,1943792,1,18.0,4.0,-9.0,-9.0,3,26600.0,1054346,0.0,22808.0,2147.0 +1921437,1921437,1943794,1,18.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1921445,1921445,1943802,1,18.0,4.0,-9.0,-9.0,3,28500.0,1054346,0.0,22808.0,2147.0 +1921449,1921449,1943806,1,18.0,4.0,-9.0,-9.0,3,32000.0,1070673,0.0,22808.0,2147.0 +1921452,1921452,1943809,1,18.0,4.0,-9.0,-9.0,3,20600.0,1061242,0.0,22806.0,2146.0 +1921455,1921455,1943812,1,18.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22810.0,2148.0 +1921458,1921458,1943815,1,18.0,4.0,-9.0,-9.0,3,64500.0,1070673,0.0,22814.0,2150.0 +1921459,1921459,1943816,1,18.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22758.0,2127.0 +1921463,1921463,1943820,1,18.0,4.0,-9.0,-9.0,3,26200.0,1035838,0.0,22808.0,2147.0 +1921464,1921464,1943821,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1921469,1921469,1943826,1,18.0,4.0,-9.0,-9.0,3,5000.0,1035838,0.0,22808.0,2147.0 +1921470,1921470,1943827,1,18.0,4.0,-9.0,-9.0,3,69000.0,1054346,0.0,22808.0,2147.0 +1921474,1921474,1943831,1,18.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1921478,1921478,1943835,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1921481,1921481,1943838,1,18.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22810.0,2148.0 +1921483,1921483,1943840,1,18.0,4.0,-9.0,-9.0,3,69300.0,1061242,0.0,22758.0,2127.0 +1921486,1921486,1943843,1,18.0,4.0,-9.0,-9.0,3,29600.0,1035838,0.0,22808.0,2147.0 +1921487,1921487,1943844,1,18.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22808.0,2147.0 +1921490,1921490,1943847,1,18.0,4.0,-9.0,-9.0,3,24020.0,1061242,0.0,22808.0,2147.0 +1921496,1921496,1943853,1,18.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22808.0,2147.0 +1921498,1921498,1943855,1,18.0,4.0,-9.0,-9.0,3,62000.0,1070673,0.0,22765.0,2130.0 +1921502,1921502,1943859,1,18.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1921508,1921508,1943865,1,18.0,4.0,-9.0,-9.0,3,650.0,1013097,0.0,22808.0,2147.0 +1921512,1921512,1943869,1,18.0,4.0,-9.0,-9.0,3,66000.0,1070673,0.0,22808.0,2147.0 +1921514,1921514,1943871,1,18.0,4.0,-9.0,-9.0,3,64500.0,1061242,0.0,22765.0,2130.0 +1921518,1921518,1943875,1,18.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22760.0,2128.0 +1921526,1921526,1943883,1,18.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22806.0,2146.0 +1921527,1921527,1943884,1,18.0,4.0,-9.0,-9.0,3,45060.0,1070673,0.0,22808.0,2147.0 +1921535,1921535,1943892,1,18.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1921536,1921536,1943893,1,18.0,4.0,-9.0,-9.0,3,28500.0,1054346,0.0,22765.0,2130.0 +1921538,1921538,1943895,1,18.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22815.0,2150.0 +1921541,1921541,1943898,1,18.0,4.0,-9.0,-9.0,3,72000.0,1013097,0.0,22808.0,2147.0 +1921546,1921546,1943903,1,18.0,4.0,-9.0,-9.0,3,16000.0,1035838,0.0,22815.0,2150.0 +1921551,1921551,1943908,1,18.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1921555,1921555,1943912,1,18.0,4.0,-9.0,-9.0,3,35000.0,1070673,0.0,22808.0,2147.0 +1921556,1921556,1943913,1,18.0,4.0,-9.0,-9.0,3,11000.0,1035838,0.0,22808.0,2147.0 +1921557,1921557,1943914,1,18.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22808.0,2147.0 +1921558,1921558,1943915,1,18.0,4.0,-9.0,-9.0,3,30000.0,1054346,0.0,22808.0,2147.0 +1921561,1921561,1943918,1,18.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22765.0,2130.0 +1921563,1921563,1943920,1,18.0,4.0,-9.0,-9.0,3,24020.0,1061242,0.0,22808.0,2147.0 +1921565,1921565,1943922,1,18.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22765.0,2130.0 +1921567,1921567,1943924,1,18.0,4.0,-9.0,-9.0,3,18100.0,1035838,0.0,22808.0,2147.0 +1921572,1921572,1943929,1,18.0,4.0,-9.0,-9.0,3,30000.0,1054346,0.0,22808.0,2147.0 +1921573,1921573,1943930,1,18.0,4.0,-9.0,-9.0,3,62001.0,1070673,0.0,22808.0,2147.0 +1921574,1921574,1943931,1,18.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1921575,1921575,1943932,1,18.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22808.0,2147.0 +1921579,1921579,1943936,1,18.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1921580,1921580,1943937,1,18.0,4.0,-9.0,-9.0,3,30800.0,1035838,0.0,22810.0,2148.0 +1921583,1921583,1943940,1,18.0,4.0,-9.0,-9.0,3,18000.0,1070673,0.0,22808.0,2147.0 +1921586,1921586,1943943,1,18.0,4.0,-9.0,-9.0,3,26600.0,1054346,0.0,22808.0,2147.0 +1921589,1921589,1943946,1,18.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22765.0,2130.0 +1921591,1921591,1943948,1,18.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1921592,1921592,1943949,1,18.0,4.0,-9.0,-9.0,3,66200.0,1061242,0.0,22810.0,2148.0 +1921603,1921603,1943960,1,18.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1921604,1921604,1943961,1,18.0,4.0,-9.0,-9.0,3,6800.0,1061242,0.0,22808.0,2147.0 +1921614,1921614,1943971,1,18.0,4.0,-9.0,-9.0,3,13500.0,1013097,0.0,22808.0,2147.0 +1921615,1921615,1943972,1,18.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22808.0,2147.0 +1921619,1921619,1943976,1,18.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1921622,1921622,1943979,1,18.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22813.0,2150.0 +1921626,1921626,1943983,1,18.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1921631,1921631,1943988,1,18.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1921634,1921634,1943991,1,18.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22806.0,2146.0 +1921637,1921637,1943994,1,18.0,4.0,-9.0,-9.0,3,18000.0,1070673,0.0,22808.0,2147.0 +1921639,1921639,1943996,1,18.0,4.0,-9.0,-9.0,3,69000.0,1054346,0.0,22808.0,2147.0 +1921641,1921641,1943998,1,18.0,4.0,-9.0,-9.0,3,29400.0,1013097,0.0,22808.0,2147.0 +1921644,1921644,1944001,1,18.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22765.0,2130.0 +1921646,1921646,1944003,1,18.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22808.0,2147.0 +1921647,1921647,1944004,1,18.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22810.0,2148.0 +1921651,1921651,1944008,1,18.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22808.0,2147.0 +1921659,1921659,1944016,1,18.0,4.0,-9.0,-9.0,3,32000.0,1070673,0.0,22806.0,2146.0 +1921662,1921662,1944019,1,18.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1921664,1921664,1944021,1,18.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22813.0,2150.0 +1921665,1921665,1944022,1,18.0,4.0,-9.0,-9.0,3,36000.0,1070673,0.0,22765.0,2130.0 +1921668,1921668,1944025,1,18.0,4.0,-9.0,-9.0,3,69000.0,1054346,0.0,22808.0,2147.0 +1921670,1921670,1944027,1,18.0,4.0,-9.0,-9.0,3,6800.0,1061242,0.0,22808.0,2147.0 +1921673,1921673,1944030,1,18.0,4.0,-9.0,-9.0,3,26000.0,1013097,0.0,22765.0,2130.0 +1921676,1921676,1944033,1,18.0,4.0,-9.0,-9.0,3,64001.0,1061242,0.0,22806.0,2146.0 +1921677,1921677,1944034,1,18.0,4.0,-9.0,-9.0,3,64500.0,1070673,0.0,22808.0,2147.0 +1921680,1921680,1944037,1,18.0,4.0,-9.0,-9.0,3,40800.0,1061242,0.0,22808.0,2147.0 +1921682,1921682,1944039,1,18.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1921683,1921683,1944040,1,18.0,4.0,-9.0,-9.0,3,46000.0,1061242,0.0,22808.0,2147.0 +1921684,1921684,1944041,1,18.0,4.0,-9.0,-9.0,3,13500.0,1013097,0.0,22808.0,2147.0 +1921685,1921685,1944042,1,18.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22808.0,2147.0 +1921691,1921691,1944048,1,18.0,3.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1921692,1921692,1944049,1,18.0,3.0,-9.0,-9.0,3,13600.0,1070673,0.0,22808.0,2147.0 +1921694,1921694,1944051,1,18.0,3.0,-9.0,-9.0,3,30000.0,1035838,0.0,22808.0,2147.0 +1921695,1921695,1944052,1,18.0,3.0,-9.0,-9.0,3,13000.0,1013097,0.0,22758.0,2127.0 +1921697,1921697,1944054,1,18.0,3.0,-9.0,-9.0,3,15750.0,1013097,0.0,22808.0,2147.0 +1921699,1921699,1944056,1,18.0,3.0,-9.0,-9.0,3,8000.0,1035838,0.0,22806.0,2146.0 +1921704,1921704,1944061,1,18.0,3.0,-9.0,-9.0,3,30000.0,1035838,0.0,22808.0,2147.0 +1921705,1921705,1944062,1,18.0,3.0,-9.0,-9.0,3,5000.0,1013097,0.0,22758.0,2127.0 +1921710,1921710,1944067,1,18.0,3.0,-9.0,-9.0,3,3500.0,1070673,0.0,22814.0,2150.0 +1921711,1921711,1944068,1,18.0,3.0,-9.0,-9.0,3,5000.0,1070673,0.0,22808.0,2147.0 +1921712,1921712,1944069,1,18.0,3.0,-9.0,-9.0,3,9890.0,1035838,0.0,22760.0,2128.0 +1921713,1921713,1944070,1,18.0,3.0,-9.0,-9.0,3,5000.0,1061242,0.0,22808.0,2147.0 +1921715,1921715,1944072,1,18.0,3.0,-9.0,-9.0,3,26000.0,1061242,0.0,22806.0,2146.0 +1921720,1921720,1944077,1,18.0,3.0,-9.0,-9.0,3,1400.0,1035838,0.0,22808.0,2147.0 +1921722,1921722,1944079,1,18.0,3.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1921727,1921727,1944084,1,18.0,3.0,-9.0,-9.0,3,35000.0,1070673,0.0,22765.0,2130.0 +1921732,1921732,1944089,1,18.0,3.0,-9.0,-9.0,3,69100.0,1035838,0.0,22808.0,2147.0 +1921733,1921733,1944090,1,18.0,3.0,-9.0,-9.0,3,75500.0,1013097,0.0,22808.0,2147.0 +1921734,1921734,1944091,1,18.0,3.0,-9.0,-9.0,3,27500.0,1035838,0.0,22808.0,2147.0 +1921736,1921736,1944093,1,18.0,3.0,-9.0,-9.0,3,32200.0,1070673,0.0,22806.0,2146.0 +1921737,1921737,1944094,1,18.0,3.0,-9.0,-9.0,3,5000.0,1061242,0.0,22808.0,2147.0 +1921738,1921738,1944095,1,18.0,3.0,-9.0,-9.0,3,69100.0,1035838,0.0,22808.0,2147.0 +1921739,1921739,1944096,1,18.0,3.0,-9.0,-9.0,3,22000.0,1013097,0.0,22806.0,2146.0 +1921740,1921740,1944097,1,18.0,3.0,-9.0,-9.0,3,69100.0,1035838,0.0,22808.0,2147.0 +1921743,1921743,1944100,1,18.0,3.0,-9.0,-9.0,3,66600.0,1035838,0.0,22810.0,2148.0 +1921745,1921745,1944102,1,18.0,3.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1921747,1921747,1944104,1,18.0,3.0,-9.0,-9.0,3,44200.0,1035838,0.0,22808.0,2147.0 +1921752,1921752,1944109,1,18.0,3.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1921754,1921754,1944111,1,18.0,3.0,-9.0,-9.0,3,600.0,1054346,0.0,22808.0,2147.0 +1921756,1921756,1944113,1,18.0,3.0,-9.0,-9.0,3,13000.0,1013097,0.0,22808.0,2147.0 +1921757,1921757,1944114,1,18.0,3.0,-9.0,-9.0,3,10400.0,1070673,0.0,22808.0,2147.0 +1921758,1921758,1944115,1,18.0,3.0,-9.0,-9.0,3,3500.0,1070673,0.0,22808.0,2147.0 +1921760,1921760,1944117,1,18.0,3.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1921761,1921761,1944118,1,18.0,3.0,-9.0,-9.0,3,71500.0,1035838,0.0,22808.0,2147.0 +1921775,1921775,1944132,1,18.0,3.0,-9.0,-9.0,3,7000.0,1061242,0.0,22808.0,2147.0 +1921777,1921777,1944134,1,18.0,3.0,-9.0,-9.0,3,220.0,1054346,0.0,22806.0,2146.0 +1921779,1921779,1944136,1,18.0,3.0,-9.0,-9.0,3,32200.0,1070673,0.0,22808.0,2147.0 +1921781,1921781,1944138,1,18.0,3.0,-9.0,-9.0,3,41600.0,1054346,0.0,22806.0,2146.0 +1921782,1921782,1944139,1,18.0,3.0,-9.0,-9.0,3,220.0,1054346,0.0,22808.0,2147.0 +1921786,1921786,1944143,1,18.0,1.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1921790,1921790,1944147,1,18.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22810.0,2148.0 +1921800,1921800,1944157,1,18.0,3.0,-9.0,-9.0,3,64000.0,1054346,0.0,22818.0,2150.0 +1921801,1921801,1944158,1,18.0,2.0,-9.0,-9.0,3,26100.0,1054346,0.0,22818.0,2150.0 +1921803,1921803,1944160,1,18.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1921804,1921804,1944161,1,18.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22808.0,2147.0 +1921805,1921805,1944162,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1921806,1921806,1944163,1,18.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22808.0,2147.0 +1921810,1921810,1944167,1,18.0,1.0,-9.0,-9.0,3,10000.0,1035838,0.0,22808.0,2147.0 +1921813,1921813,1944170,1,18.0,1.0,-9.0,-9.0,3,15000.0,1070673,0.0,22806.0,2146.0 +1921814,1921814,1944171,1,18.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22765.0,2130.0 +1921815,1921815,1944172,1,18.0,1.0,-9.0,-9.0,3,13200.0,1054346,0.0,22815.0,2150.0 +1921816,1921816,1944173,1,18.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22765.0,2130.0 +1921820,1921820,1944177,1,18.0,1.0,-9.0,-9.0,3,10000.0,1070673,0.0,22806.0,2146.0 +1921821,1921821,1944178,1,18.0,1.0,-9.0,-9.0,3,24700.0,1013097,0.0,22765.0,2130.0 +1921824,1921824,1944181,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1921825,1921825,1944182,1,18.0,1.0,-9.0,-9.0,3,62000.0,1070673,0.0,22806.0,2146.0 +1921829,1921829,1944186,1,18.0,1.0,-9.0,-9.0,3,33000.0,1013097,0.0,22806.0,2146.0 +1921831,1921831,1944188,1,18.0,1.0,-9.0,-9.0,3,28200.0,1054346,0.0,22808.0,2147.0 +1921832,1921832,1944189,1,18.0,1.0,-9.0,-9.0,3,34500.0,1054346,0.0,22808.0,2147.0 +1921837,1921837,1944194,1,18.0,1.0,-9.0,-9.0,3,4500.0,1070673,0.0,22813.0,2150.0 +1921842,1921842,1944199,1,18.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22808.0,2147.0 +1921844,1921844,1944201,1,18.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22765.0,2130.0 +1921845,1921845,1944202,1,18.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1921846,1921846,1944203,1,18.0,1.0,-9.0,-9.0,3,44100.0,1054346,0.0,22806.0,2146.0 +1921847,1921847,1944204,1,18.0,4.0,-9.0,-9.0,3,16000.0,1035838,0.0,22808.0,2147.0 +1921855,1921855,1944212,1,18.0,1.0,-9.0,-9.0,3,27000.0,1054346,0.0,22765.0,2130.0 +1921856,1921856,1944213,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1921861,1921861,1944218,1,18.0,1.0,-9.0,-9.0,3,35000.0,1070673,0.0,22808.0,2147.0 +1921865,1921865,1944222,1,18.0,1.0,-9.0,-9.0,3,64130.0,1061242,0.0,22806.0,2146.0 +1921869,1921869,1944226,1,18.0,1.0,-9.0,-9.0,3,8800.0,1013097,0.0,22808.0,2147.0 +1921871,1921871,1944228,1,18.0,2.0,-9.0,-9.0,3,35400.0,1054346,0.0,22765.0,2130.0 +1921872,1921872,1944229,1,18.0,1.0,-9.0,-9.0,3,23301.0,1070673,0.0,22765.0,2130.0 +1921873,1921873,1944230,1,18.0,1.0,-9.0,-9.0,3,69400.0,1035838,0.0,22808.0,2147.0 +1921876,1921876,1944233,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22761.0,2128.0 +1921878,1921878,1944235,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1921880,1921880,1944237,1,18.0,1.0,-9.0,-9.0,3,66800.0,1035838,0.0,22808.0,2147.0 +1921883,1921883,1944240,1,18.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22806.0,2146.0 +1921895,1921895,1944252,1,18.0,1.0,-9.0,-9.0,3,64500.0,1070673,0.0,22808.0,2147.0 +1921896,1921896,1944253,1,18.0,4.0,-9.0,-9.0,3,20600.0,1061242,0.0,22808.0,2147.0 +1921900,1921900,1944257,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1921901,1921901,1944258,1,18.0,1.0,-9.0,-9.0,3,72000.0,1061242,0.0,22806.0,2146.0 +1921908,1921908,1944265,1,18.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22808.0,2147.0 +1921918,1921918,1944275,1,18.0,1.0,-9.0,-9.0,3,7000.0,1054346,0.0,22808.0,2147.0 +1921919,1921919,1944276,1,18.0,1.0,-9.0,-9.0,3,600.0,1061242,0.0,22808.0,2147.0 +1921920,1921920,1944277,1,18.0,1.0,-9.0,-9.0,3,76000.0,1013097,0.0,22765.0,2130.0 +1921921,1921921,1944278,1,18.0,4.0,-9.0,-9.0,3,2000.0,1070673,0.0,22808.0,2147.0 +1921925,1921925,1944282,1,18.0,1.0,-9.0,-9.0,3,62780.0,1070673,0.0,22808.0,2147.0 +1921928,1921928,1944285,1,18.0,1.0,-9.0,-9.0,3,41600.0,1061242,0.0,22808.0,2147.0 +1921932,1921932,1944289,1,18.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22808.0,2147.0 +1921937,1921937,1944294,1,18.0,1.0,-9.0,-9.0,3,69200.0,1070673,0.0,22808.0,2147.0 +1921940,1921940,1944297,1,18.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22806.0,2146.0 +1921941,1921941,1944298,1,18.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22808.0,2147.0 +1921942,1921942,1944299,1,18.0,1.0,-9.0,-9.0,3,62780.0,1070673,0.0,22806.0,2146.0 +1921947,1921947,1944304,1,18.0,3.0,-9.0,-9.0,3,12000.0,1013097,0.0,22760.0,2128.0 +1921950,1921950,1944307,1,18.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22814.0,2150.0 +1921951,1921951,1944308,1,18.0,1.0,-9.0,-9.0,3,12100.0,1013097,0.0,22806.0,2146.0 +1921955,1921955,1944312,1,18.0,1.0,-9.0,-9.0,3,76000.0,1013097,0.0,22808.0,2147.0 +1921957,1921957,1944314,1,18.0,2.0,-9.0,-9.0,3,17000.0,1035838,0.0,22808.0,2147.0 +1921959,1921959,1944316,1,18.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22765.0,2130.0 +1921961,1921961,1944318,1,18.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22808.0,2147.0 +1921966,1921966,1944323,1,18.0,1.0,-9.0,-9.0,3,26400.0,1070673,0.0,22808.0,2147.0 +1921970,1921970,1944327,1,18.0,4.0,-9.0,-9.0,3,36000.0,1070673,0.0,22808.0,2147.0 +1921978,1921978,1944335,1,18.0,1.0,-9.0,-9.0,3,32200.0,1070673,0.0,22813.0,2150.0 +1921981,1921981,1944338,1,18.0,1.0,-9.0,-9.0,3,32500.0,1013097,0.0,22808.0,2147.0 +1921985,1921985,1944342,1,18.0,1.0,-9.0,-9.0,3,30400.0,1035838,0.0,22758.0,2127.0 +1921987,1921987,1944344,1,18.0,1.0,-9.0,-9.0,3,68500.0,1054346,0.0,22808.0,2147.0 +1921991,1921991,1944348,1,18.0,3.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1921993,1921993,1944350,1,18.0,2.0,-9.0,-9.0,3,9800.0,1035838,0.0,22765.0,2130.0 +1921995,1921995,1944352,1,18.0,2.0,-9.0,-9.0,3,7200.0,1061242,0.0,22765.0,2130.0 +1922003,1922003,1944360,1,18.0,4.0,-9.0,-9.0,3,29300.0,1035838,0.0,22808.0,2147.0 +1922004,1922004,1944361,1,18.0,1.0,-9.0,-9.0,3,65050.0,1054346,0.0,22765.0,2130.0 +1922006,1922006,1944363,1,18.0,4.0,-9.0,-9.0,3,26630.0,1070673,0.0,22808.0,2147.0 +1922007,1922007,1944364,1,18.0,4.0,-9.0,-9.0,3,23100.0,1070673,0.0,22765.0,2130.0 +1922014,1922014,1944371,1,18.0,2.0,-9.0,-9.0,3,14200.0,1013097,0.0,22808.0,2147.0 +1922019,1922019,1944376,1,18.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22808.0,2147.0 +1922023,1922023,1944380,1,18.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1922025,1922025,1944382,1,18.0,2.0,-9.0,-9.0,3,14200.0,1013097,0.0,22760.0,2128.0 +1922027,1922027,1944384,1,18.0,1.0,-9.0,-9.0,3,32000.0,1054346,0.0,22808.0,2147.0 +1922032,1922032,1944389,1,18.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22808.0,2147.0 +1922041,1922041,1944398,1,18.0,4.0,-9.0,-9.0,3,62001.0,1070673,0.0,22808.0,2147.0 +1922050,1922050,1944407,1,18.0,4.0,-9.0,-9.0,3,650.0,1013097,0.0,22808.0,2147.0 +1922058,1922058,1944415,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1922059,1922059,1944416,1,18.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22808.0,2147.0 +1922065,1922065,1944422,1,18.0,3.0,-9.0,-9.0,3,3300.0,1035838,0.0,22765.0,2130.0 +1922066,1922066,1944423,1,18.0,1.0,-9.0,-9.0,3,3401.0,1054346,0.0,22808.0,2147.0 +1922067,1922067,1944424,1,18.0,1.0,-9.0,-9.0,3,35800.0,1035838,0.0,22808.0,2147.0 +1922069,1922069,1944426,1,18.0,1.0,-9.0,-9.0,3,12000.0,1013097,0.0,22806.0,2146.0 +1922073,1922073,1944430,1,18.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22806.0,2146.0 +1922078,1922078,1944435,1,18.0,1.0,-9.0,-9.0,3,33500.0,1070673,0.0,22808.0,2147.0 +1922084,1922084,1944441,1,18.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1922085,1922085,1944442,1,18.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22806.0,2146.0 +1922086,1922086,1944443,1,18.0,1.0,-9.0,-9.0,3,17500.0,1054346,0.0,22808.0,2147.0 +1922089,1922089,1944446,1,18.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22808.0,2147.0 +1922093,1922093,1944450,1,18.0,1.0,-9.0,-9.0,3,32200.0,1070673,0.0,22765.0,2130.0 +1922097,1922097,1944454,1,18.0,1.0,-9.0,-9.0,3,41500.0,1070673,0.0,22808.0,2147.0 +1922098,1922098,1944455,1,18.0,1.0,-9.0,-9.0,3,14000.0,1035838,0.0,22808.0,2147.0 +1922101,1922101,1944458,1,18.0,1.0,-9.0,-9.0,3,7000.0,1035838,0.0,22808.0,2147.0 +1922105,1922105,1944462,1,18.0,1.0,-9.0,-9.0,3,45020.0,1054346,0.0,22815.0,2150.0 +1922107,1922107,1944464,1,18.0,1.0,-9.0,-9.0,3,25300.0,1035838,0.0,22808.0,2147.0 +1922113,1922113,1944470,1,18.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22808.0,2147.0 +1922116,1922116,1944473,1,18.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1922117,1922117,1944474,1,18.0,1.0,-9.0,-9.0,3,21100.0,1070673,0.0,22808.0,2147.0 +1922118,1922118,1944475,1,18.0,1.0,-9.0,-9.0,3,13000.0,1054346,0.0,22806.0,2146.0 +1922125,1922125,1944482,1,18.0,2.0,-9.0,-9.0,3,1400.0,1035838,0.0,22808.0,2147.0 +1922127,1922127,1944484,1,18.0,1.0,-9.0,-9.0,3,29000.0,1070673,0.0,22808.0,2147.0 +1922131,1922131,1944488,1,18.0,1.0,-9.0,-9.0,3,64250.0,1061242,0.0,22806.0,2146.0 +1922132,1922132,1944489,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1922135,1922135,1944492,1,18.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22808.0,2147.0 +1922136,1922136,1944493,1,18.0,2.0,-9.0,-9.0,3,430.0,1013097,0.0,22808.0,2147.0 +1922146,1922146,1944503,1,18.0,1.0,-9.0,-9.0,3,38000.0,1013097,0.0,22808.0,2147.0 +1922151,1922151,1944508,1,18.0,1.0,-9.0,-9.0,3,13000.0,1054346,0.0,22808.0,2147.0 +1922152,1922152,1944509,1,18.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22808.0,2147.0 +1922153,1922153,1944510,1,18.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22806.0,2146.0 +1922157,1922157,1944514,1,18.0,1.0,-9.0,-9.0,3,26100.0,1070673,0.0,22808.0,2147.0 +1922162,1922162,1944519,1,18.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1922164,1922164,1944521,1,18.0,1.0,-9.0,-9.0,3,55000.0,1013097,0.0,22808.0,2147.0 +1922167,1922167,1944524,1,18.0,1.0,-9.0,-9.0,3,2500.0,1013097,0.0,22808.0,2147.0 +1922169,1922169,1944526,1,18.0,1.0,-9.0,-9.0,3,1000.0,1013097,0.0,22808.0,2147.0 +1922174,1922174,1944531,1,18.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22808.0,2147.0 +1922177,1922177,1944534,1,18.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1922178,1922178,1944535,1,18.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1922180,1922180,1944537,1,18.0,2.0,-9.0,-9.0,3,52400.0,1013097,0.0,22808.0,2147.0 +1922185,1922185,1944542,1,18.0,1.0,-9.0,-9.0,3,28550.0,1054346,0.0,22808.0,2147.0 +1922189,1922189,1944546,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22810.0,2148.0 +1922190,1922190,1944547,1,18.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22808.0,2147.0 +1922191,1922191,1944548,1,18.0,1.0,-9.0,-9.0,3,81000.0,1013097,0.0,22808.0,2147.0 +1922193,1922193,1944550,1,18.0,1.0,-9.0,-9.0,3,21000.0,1035838,0.0,22758.0,2127.0 +1922194,1922194,1944551,1,18.0,2.0,-9.0,-9.0,3,13200.0,1061242,0.0,22808.0,2147.0 +1922198,1922198,1944555,1,18.0,1.0,-9.0,-9.0,3,13000.0,1035838,0.0,22815.0,2150.0 +1922203,1922203,1944560,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22813.0,2150.0 +1922205,1922205,1944562,1,18.0,1.0,-9.0,-9.0,3,16000.0,1013097,0.0,22808.0,2147.0 +1922206,1922206,1944563,1,18.0,1.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1922212,1922212,1944569,1,18.0,1.0,-9.0,-9.0,3,530.0,1035838,0.0,22808.0,2147.0 +1922213,1922213,1944570,1,18.0,2.0,-9.0,-9.0,3,17000.0,1013097,0.0,22808.0,2147.0 +1922214,1922214,1944571,1,18.0,1.0,-9.0,-9.0,3,12000.0,1035838,0.0,22765.0,2130.0 +1922218,1922218,1944575,1,18.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22808.0,2147.0 +1922220,1922220,1944577,1,18.0,2.0,-9.0,-9.0,3,29700.0,1035838,0.0,22815.0,2150.0 +1922226,1922226,1944583,1,18.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1922228,1922228,1944585,1,18.0,1.0,-9.0,-9.0,3,69200.0,1070673,0.0,22808.0,2147.0 +1922233,1922233,1944590,1,18.0,1.0,-9.0,-9.0,3,4300.0,1035838,0.0,22808.0,2147.0 +1922239,1922239,1944596,1,18.0,1.0,-9.0,-9.0,3,16404.0,1070673,0.0,22765.0,2130.0 +1922240,1922240,1944597,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1922241,1922241,1944598,1,18.0,1.0,-9.0,-9.0,3,5000.0,1013097,0.0,22808.0,2147.0 +1922244,1922244,1944601,1,18.0,1.0,-9.0,-9.0,3,42500.0,1035838,0.0,22808.0,2147.0 +1922253,1922253,1944610,1,18.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22808.0,2147.0 +1922254,1922254,1944611,1,18.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22765.0,2130.0 +1922255,1922255,1944612,1,18.0,4.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1922257,1922257,1944614,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1922259,1922259,1944616,1,18.0,1.0,-9.0,-9.0,3,35000.0,1070673,0.0,22806.0,2146.0 +1922261,1922261,1944618,1,18.0,1.0,-9.0,-9.0,3,26500.0,1061242,0.0,22806.0,2146.0 +1922262,1922262,1944619,1,18.0,1.0,-9.0,-9.0,3,18500.0,1054346,0.0,22808.0,2147.0 +1922263,1922263,1944620,1,18.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22765.0,2130.0 +1922264,1922264,1944621,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1922265,1922265,1944622,1,18.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22808.0,2147.0 +1922267,1922267,1944624,1,18.0,1.0,-9.0,-9.0,3,25500.0,1061242,0.0,22808.0,2147.0 +1922270,1922270,1944627,1,18.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22808.0,2147.0 +1922278,1922278,1944635,1,18.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22813.0,2150.0 +1922283,1922283,1944640,1,18.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22814.0,2150.0 +1922286,1922286,1944643,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1922291,1922291,1944648,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1922293,1922293,1944650,1,18.0,1.0,-9.0,-9.0,3,35540.0,1035838,0.0,22808.0,2147.0 +1922296,1922296,1944653,1,18.0,1.0,-9.0,-9.0,3,27500.0,1061242,0.0,22765.0,2130.0 +1922297,1922297,1944654,1,18.0,3.0,-9.0,-9.0,3,73000.0,1013097,0.0,22806.0,2146.0 +1922300,1922300,1944657,1,18.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22815.0,2150.0 +1922304,1922304,1944661,1,18.0,2.0,-9.0,-9.0,3,4200.0,1070673,0.0,22808.0,2147.0 +1922305,1922305,1944662,1,18.0,1.0,-9.0,-9.0,3,12500.0,1013097,0.0,22808.0,2147.0 +1922306,1922306,1944663,1,18.0,1.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1922313,1922313,1944670,1,18.0,1.0,-9.0,-9.0,3,74500.0,1013097,0.0,22806.0,2146.0 +1922314,1922314,1944671,1,18.0,1.0,-9.0,-9.0,3,65300.0,1061242,0.0,22808.0,2147.0 +1922316,1922316,1944673,1,18.0,1.0,-9.0,-9.0,3,16000.0,1035838,0.0,22813.0,2150.0 +1922318,1922318,1944675,1,18.0,1.0,-9.0,-9.0,3,5500.0,1035838,0.0,22808.0,2147.0 +1922320,1922320,1944677,1,18.0,2.0,-9.0,-9.0,3,6100.0,1070673,0.0,22760.0,2128.0 +1922321,1922321,1944678,1,18.0,2.0,-9.0,-9.0,3,3000.0,1013097,0.0,22808.0,2147.0 +1922326,1922326,1944683,1,18.0,4.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1922331,1922331,1944688,1,18.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22806.0,2146.0 +1922333,1922333,1944690,1,18.0,1.0,-9.0,-9.0,3,1400.0,1035838,0.0,22808.0,2147.0 +1922335,1922335,1944692,1,18.0,2.0,-9.0,-9.0,3,400.0,1070673,0.0,22808.0,2147.0 +1922336,1922336,1944693,1,18.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22808.0,2147.0 +1922343,1922343,1944700,1,18.0,1.0,-9.0,-9.0,3,32000.0,1061242,0.0,22814.0,2150.0 +1922344,1922344,1944701,1,18.0,1.0,-9.0,-9.0,3,28500.0,1013097,0.0,22806.0,2146.0 +1922346,1922346,1944703,1,18.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22814.0,2150.0 +1922356,1922356,1944713,1,18.0,1.0,-9.0,-9.0,3,52000.0,1013097,0.0,22808.0,2147.0 +1922358,1922358,1944715,1,18.0,2.0,-9.0,-9.0,3,15560.0,1070673,0.0,22814.0,2150.0 +1922359,1922359,1944716,1,18.0,2.0,-9.0,-9.0,3,8000.0,1070673,0.0,22808.0,2147.0 +1922360,1922360,1944717,1,18.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22808.0,2147.0 +1922365,1922365,1944722,1,18.0,1.0,-9.0,-9.0,3,8200.0,1070673,0.0,22814.0,2150.0 +1922366,1922366,1944723,1,18.0,4.0,-9.0,-9.0,3,62150.0,1070673,0.0,22808.0,2147.0 +1922367,1922367,1944724,1,18.0,1.0,-9.0,-9.0,3,15000.0,1061242,0.0,22808.0,2147.0 +1922377,1922377,1944734,1,18.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1922386,1922386,1944743,1,18.0,1.0,-9.0,-9.0,3,22000.0,1035838,0.0,22808.0,2147.0 +1922389,1922389,1944746,1,18.0,1.0,-9.0,-9.0,3,3200.0,1035838,0.0,22808.0,2147.0 +1922390,1922390,1944747,1,18.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22810.0,2148.0 +1922395,1922395,1944752,1,18.0,1.0,-9.0,-9.0,3,65300.0,1061242,0.0,22808.0,2147.0 +1922397,1922397,1944754,1,18.0,3.0,-9.0,-9.0,3,5000.0,1070673,0.0,22806.0,2146.0 +1922398,1922398,1944755,1,18.0,1.0,-9.0,-9.0,3,5200.0,1061242,0.0,22806.0,2146.0 +1922399,1922399,1944756,1,18.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22814.0,2150.0 +1922400,1922400,1944757,1,18.0,2.0,-9.0,-9.0,3,27000.0,1013097,0.0,22815.0,2150.0 +1922401,1922401,1944758,1,18.0,4.0,-9.0,-9.0,3,12000.0,1054346,0.0,22806.0,2146.0 +1922405,1922405,1944762,1,18.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22806.0,2146.0 +1922407,1922407,1944764,1,18.0,1.0,-9.0,-9.0,3,4500.0,1054346,0.0,22808.0,2147.0 +1922412,1922412,1944769,1,18.0,1.0,-9.0,-9.0,3,31300.0,1061242,0.0,22808.0,2147.0 +1922415,1922415,1944772,1,18.0,1.0,-9.0,-9.0,3,1400.0,1061242,0.0,22806.0,2146.0 +1922416,1922416,1944773,1,18.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22808.0,2147.0 +1922418,1922418,1944775,1,18.0,1.0,-9.0,-9.0,3,24700.0,1013097,0.0,22808.0,2147.0 +1922422,1922422,1944779,1,18.0,1.0,-9.0,-9.0,3,500.0,1035838,0.0,22806.0,2146.0 +1922424,1922424,1944781,1,18.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22810.0,2148.0 +1922425,1922425,1944782,1,18.0,1.0,-9.0,-9.0,3,15000.0,1013097,0.0,22808.0,2147.0 +1922426,1922426,1944783,1,18.0,1.0,-9.0,-9.0,3,36000.0,1061242,0.0,22808.0,2147.0 +1922427,1922427,1944784,1,18.0,1.0,-9.0,-9.0,3,22000.0,1035838,0.0,22808.0,2147.0 +1922429,1922429,1944786,1,18.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22808.0,2147.0 +1922430,1922430,1944787,1,18.0,1.0,-9.0,-9.0,3,69400.0,1035838,0.0,22808.0,2147.0 +1922432,1922432,1944789,1,18.0,4.0,-9.0,-9.0,3,9000.0,1035838,0.0,22765.0,2130.0 +1922433,1922433,1944790,1,18.0,4.0,-9.0,-9.0,3,30000.0,1070673,0.0,22806.0,2146.0 +1922436,1922436,1944793,1,18.0,1.0,-9.0,-9.0,3,1700.0,1035838,0.0,22808.0,2147.0 +1922438,1922438,1944795,1,18.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1922439,1922439,1944796,1,18.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22806.0,2146.0 +1922440,1922440,1944797,1,18.0,1.0,-9.0,-9.0,3,4000.0,1013097,0.0,22808.0,2147.0 +1922441,1922441,1944798,1,18.0,3.0,-9.0,-9.0,3,44200.0,1035838,0.0,22808.0,2147.0 +1922443,1922443,1944800,1,18.0,1.0,-9.0,-9.0,3,20670.0,1061242,0.0,22808.0,2147.0 +1922460,1922460,1944817,1,18.0,1.0,-9.0,-9.0,3,52000.0,1013097,0.0,22808.0,2147.0 +1922461,1922461,1944818,1,18.0,1.0,-9.0,-9.0,3,3000.0,1061242,0.0,22806.0,2146.0 +1922468,1922468,1944825,1,18.0,1.0,-9.0,-9.0,3,38000.0,1054346,0.0,22808.0,2147.0 +1922475,1922475,1944832,1,18.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22806.0,2146.0 +1922477,1922477,1944834,1,18.0,1.0,-9.0,-9.0,3,24500.0,1061242,0.0,22808.0,2147.0 +1922478,1922478,1944835,1,18.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22808.0,2147.0 +1922479,1922479,1944836,1,18.0,1.0,-9.0,-9.0,3,27000.0,1054346,0.0,22808.0,2147.0 +1922480,1922480,1944837,1,18.0,4.0,-9.0,-9.0,3,19500.0,1035838,0.0,22765.0,2130.0 +1922485,1922485,1944842,1,18.0,3.0,-9.0,-9.0,3,9200.0,1035838,0.0,22808.0,2147.0 +1922486,1922486,1944843,1,18.0,1.0,-9.0,-9.0,3,2500.0,1070673,0.0,22808.0,2147.0 +1922487,1922487,1944844,1,19.0,1.0,-9.0,-9.0,3,66660.0,1070673,0.0,22808.0,2147.0 +1922490,1922490,1944847,1,19.0,1.0,-9.0,-9.0,3,15000.0,1070673,0.0,22808.0,2147.0 +1922491,1922491,1944848,1,19.0,1.0,-9.0,-9.0,3,1400.0,1061242,0.0,22761.0,2128.0 +1922493,1922493,1944850,1,19.0,1.0,-9.0,-9.0,3,34500.0,1054346,0.0,22765.0,2130.0 +1922496,1922496,1944853,1,19.0,1.0,-9.0,-9.0,3,64500.0,1035838,0.0,22808.0,2147.0 +1922500,1922500,1944857,1,19.0,1.0,-9.0,-9.0,3,30000.0,1054346,0.0,22765.0,2130.0 +1922505,1922505,1944862,1,19.0,1.0,-9.0,-9.0,3,72000.0,1054346,0.0,22806.0,2146.0 +1922506,1922506,1944863,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1922510,1922510,1944867,1,19.0,1.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1922511,1922511,1944868,1,19.0,1.0,-9.0,-9.0,3,37000.0,1054346,0.0,22806.0,2146.0 +1922512,1922512,1944869,1,19.0,1.0,-9.0,-9.0,3,13000.0,1035838,0.0,22808.0,2147.0 +1922513,1922513,1944870,1,19.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1922515,1922515,1944872,1,19.0,1.0,-9.0,-9.0,3,62000.0,1070673,0.0,22808.0,2147.0 +1922520,1922520,1944877,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22765.0,2130.0 +1922522,1922522,1944879,1,19.0,1.0,-9.0,-9.0,3,14200.0,1013097,0.0,22808.0,2147.0 +1922523,1922523,1944880,1,19.0,1.0,-9.0,-9.0,3,7600.0,1013097,0.0,22813.0,2150.0 +1922528,1922528,1944885,1,19.0,1.0,-9.0,-9.0,3,40500.0,1013097,0.0,22808.0,2147.0 +1922530,1922530,1944887,1,19.0,1.0,-9.0,-9.0,3,11600.0,1013097,0.0,22758.0,2127.0 +1922532,1922532,1944889,1,19.0,1.0,-9.0,-9.0,3,17500.0,1061242,0.0,22808.0,2147.0 +1922533,1922533,1944890,1,19.0,1.0,-9.0,-9.0,3,5800.0,1013097,0.0,22808.0,2147.0 +1922535,1922535,1944892,1,19.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22808.0,2147.0 +1922536,1922536,1944893,1,19.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22765.0,2130.0 +1922537,1922537,1944894,1,19.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22808.0,2147.0 +1922539,1922539,1944896,1,19.0,1.0,-9.0,-9.0,3,18300.0,1061242,0.0,22808.0,2147.0 +1922541,1922541,1944898,1,19.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22814.0,2150.0 +1922543,1922543,1944900,1,19.0,1.0,-9.0,-9.0,3,16000.0,1013097,0.0,22810.0,2148.0 +1922556,1922556,1944913,1,19.0,1.0,-9.0,-9.0,3,62000.0,1070673,0.0,22808.0,2147.0 +1922558,1922558,1944915,1,19.0,1.0,-9.0,-9.0,3,4500.0,1054346,0.0,22765.0,2130.0 +1922560,1922560,1944917,1,19.0,1.0,-9.0,-9.0,3,67150.0,1035838,0.0,22765.0,2130.0 +1922561,1922561,1944918,1,19.0,1.0,-9.0,-9.0,3,65050.0,1054346,0.0,22806.0,2146.0 +1922569,1922569,1944926,1,19.0,1.0,-9.0,-9.0,3,15000.0,1054346,0.0,22808.0,2147.0 +1922573,1922573,1944930,1,19.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1922578,1922578,1944935,1,19.0,1.0,-9.0,-9.0,3,65000.0,1054346,0.0,22765.0,2130.0 +1922580,1922580,1944937,1,19.0,1.0,-9.0,-9.0,3,10000.0,1035838,0.0,22806.0,2146.0 +1922583,1922583,1944940,1,19.0,1.0,-9.0,-9.0,3,5500.0,1013097,0.0,22806.0,2146.0 +1922585,1922585,1944942,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1922587,1922587,1944944,1,19.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22765.0,2130.0 +1922590,1922590,1944947,1,19.0,1.0,-9.0,-9.0,3,69200.0,1070673,0.0,22808.0,2147.0 +1922591,1922591,1944948,1,19.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22808.0,2147.0 +1922592,1922592,1944949,1,19.0,1.0,-9.0,-9.0,3,89000.0,1054346,0.0,22808.0,2147.0 +1922596,1922596,1944953,1,19.0,1.0,-9.0,-9.0,3,81000.0,1013097,0.0,22808.0,2147.0 +1922599,1922599,1944956,1,19.0,1.0,-9.0,-9.0,3,30200.0,1013097,0.0,22808.0,2147.0 +1922604,1922604,1944961,1,19.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22808.0,2147.0 +1922606,1922606,1944963,1,19.0,1.0,-9.0,-9.0,3,36800.0,1035838,0.0,22806.0,2146.0 +1922609,1922609,1944966,1,19.0,1.0,-9.0,-9.0,3,12000.0,1061242,0.0,22808.0,2147.0 +1922610,1922610,1944967,1,19.0,1.0,-9.0,-9.0,3,34700.0,1061242,0.0,22808.0,2147.0 +1922616,1922616,1944973,1,19.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22808.0,2147.0 +1922617,1922617,1944974,1,19.0,1.0,-9.0,-9.0,3,37500.0,1013097,0.0,22765.0,2130.0 +1922618,1922618,1944975,1,19.0,1.0,-9.0,-9.0,3,41200.0,1035838,0.0,22765.0,2130.0 +1922620,1922620,1944977,1,19.0,1.0,-9.0,-9.0,3,13000.0,1054346,0.0,22806.0,2146.0 +1922627,1922627,1944984,1,19.0,1.0,-9.0,-9.0,3,62200.0,1070673,0.0,22808.0,2147.0 +1922628,1922628,1944985,1,19.0,1.0,-9.0,-9.0,3,1000.0,1070673,0.0,22808.0,2147.0 +1922632,1922632,1944989,1,19.0,1.0,-9.0,-9.0,3,12000.0,1013097,0.0,22814.0,2150.0 +1922634,1922634,1944991,1,19.0,1.0,-9.0,-9.0,3,1100.0,1035838,0.0,22808.0,2147.0 +1922636,1922636,1944993,1,19.0,1.0,-9.0,-9.0,3,43000.0,1061242,0.0,22808.0,2147.0 +1922639,1922639,1944996,1,19.0,1.0,-9.0,-9.0,3,42100.0,1035838,0.0,22806.0,2146.0 +1922642,1922642,1944999,1,19.0,1.0,-9.0,-9.0,3,62000.0,1070673,0.0,22808.0,2147.0 +1922643,1922643,1945000,1,19.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22808.0,2147.0 +1922645,1922645,1945002,1,19.0,1.0,-9.0,-9.0,3,4200.0,1035838,0.0,22806.0,2146.0 +1922653,1922653,1945010,1,19.0,1.0,-9.0,-9.0,3,1000.0,1054346,0.0,22815.0,2150.0 +1922656,1922656,1945013,1,19.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1922658,1922658,1945015,1,19.0,1.0,-9.0,-9.0,3,29400.0,1061242,0.0,22808.0,2147.0 +1922661,1922661,1945018,1,19.0,1.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1922665,1922665,1945022,1,19.0,1.0,-9.0,-9.0,3,31750.0,1035838,0.0,22806.0,2146.0 +1922669,1922669,1945026,1,19.0,1.0,-9.0,-9.0,3,68000.0,1054346,0.0,22806.0,2146.0 +1922672,1922672,1945029,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1922676,1922676,1945033,1,19.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22806.0,2146.0 +1922683,1922683,1945040,1,19.0,1.0,-9.0,-9.0,3,68000.0,1054346,0.0,22806.0,2146.0 +1922684,1922684,1945041,1,19.0,1.0,-9.0,-9.0,3,33000.0,1061242,0.0,22815.0,2150.0 +1922686,1922686,1945043,1,19.0,1.0,-9.0,-9.0,3,62000.0,1070673,0.0,22808.0,2147.0 +1922690,1922690,1945047,1,19.0,1.0,-9.0,-9.0,3,22800.0,1013097,0.0,22808.0,2147.0 +1922693,1922693,1945050,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1922699,1922699,1945056,1,19.0,1.0,-9.0,-9.0,3,25300.0,1061242,0.0,22808.0,2147.0 +1922700,1922700,1945057,1,19.0,1.0,-9.0,-9.0,3,1000.0,1035838,0.0,22808.0,2147.0 +1922704,1922704,1945061,1,19.0,1.0,-9.0,-9.0,3,68500.0,1054346,0.0,22806.0,2146.0 +1922716,1922716,1945073,1,19.0,1.0,-9.0,-9.0,3,16300.0,1035838,0.0,22808.0,2147.0 +1922723,1922723,1945080,1,19.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22808.0,2147.0 +1922724,1922724,1945081,1,19.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22808.0,2147.0 +1922726,1922726,1945083,1,19.0,1.0,-9.0,-9.0,3,10700.0,1013097,0.0,22808.0,2147.0 +1922727,1922727,1945084,1,19.0,1.0,-9.0,-9.0,3,66660.0,1070673,0.0,22808.0,2147.0 +1922728,1922728,1945085,1,19.0,1.0,-9.0,-9.0,3,18300.0,1061242,0.0,22808.0,2147.0 +1922732,1922732,1945089,1,19.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22808.0,2147.0 +1922740,1922740,1945097,1,19.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22808.0,2147.0 +1922745,1922745,1945102,1,19.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22806.0,2146.0 +1922746,1922746,1945103,1,19.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22818.0,2150.0 +1922747,1922747,1945104,1,19.0,1.0,-9.0,-9.0,3,30300.0,1054346,0.0,22808.0,2147.0 +1922750,1922750,1945107,1,19.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22808.0,2147.0 +1922752,1922752,1945109,1,19.0,1.0,-9.0,-9.0,3,4500.0,1054346,0.0,22806.0,2146.0 +1922760,1922760,1945117,1,19.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22808.0,2147.0 +1922764,1922764,1945121,1,19.0,1.0,-9.0,-9.0,3,2300.0,1013097,0.0,22808.0,2147.0 +1922766,1922766,1945123,1,19.0,1.0,-9.0,-9.0,3,26000.0,1054346,0.0,22808.0,2147.0 +1922768,1922768,1945125,1,19.0,1.0,-9.0,-9.0,3,22800.0,1013097,0.0,22765.0,2130.0 +1922769,1922769,1945126,1,19.0,1.0,-9.0,-9.0,3,68500.0,1054346,0.0,22808.0,2147.0 +1922772,1922772,1945129,1,19.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22815.0,2150.0 +1922778,1922778,1945135,1,19.0,1.0,-9.0,-9.0,3,73000.0,1013097,0.0,22765.0,2130.0 +1922779,1922779,1945136,1,19.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22806.0,2146.0 +1922784,1922784,1945141,1,19.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22808.0,2147.0 +1922786,1922786,1945143,1,19.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22758.0,2127.0 +1922789,1922789,1945146,1,19.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22806.0,2146.0 +1922790,1922790,1945147,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22765.0,2130.0 +1922792,1922792,1945149,1,19.0,1.0,-9.0,-9.0,3,34700.0,1061242,0.0,22815.0,2150.0 +1922802,1922802,1945159,1,19.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22808.0,2147.0 +1922807,1922807,1945164,1,19.0,1.0,-9.0,-9.0,3,10600.0,1070673,0.0,22808.0,2147.0 +1922809,1922809,1945166,1,19.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22761.0,2128.0 +1922812,1922812,1945169,1,19.0,1.0,-9.0,-9.0,3,15500.0,1035838,0.0,22806.0,2146.0 +1922814,1922814,1945171,1,19.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22806.0,2146.0 +1922818,1922818,1945175,1,19.0,1.0,-9.0,-9.0,3,600.0,1061242,0.0,22808.0,2147.0 +1922819,1922819,1945176,1,19.0,1.0,-9.0,-9.0,3,15800.0,1054346,0.0,22808.0,2147.0 +1922822,1922822,1945179,1,19.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22808.0,2147.0 +1922826,1922826,1945183,1,19.0,1.0,-9.0,-9.0,3,28500.0,1061242,0.0,22765.0,2130.0 +1922832,1922832,1945189,1,19.0,1.0,-9.0,-9.0,3,34800.0,1070673,0.0,22806.0,2146.0 +1922838,1922838,1945195,1,19.0,1.0,-9.0,-9.0,3,22500.0,1013097,0.0,22808.0,2147.0 +1922842,1922842,1945199,1,19.0,1.0,-9.0,-9.0,3,29200.0,1035838,0.0,22808.0,2147.0 +1922843,1922843,1945200,1,19.0,1.0,-9.0,-9.0,3,70500.0,1054346,0.0,22806.0,2146.0 +1922845,1922845,1945202,1,19.0,1.0,-9.0,-9.0,3,28100.0,1061242,0.0,22808.0,2147.0 +1922847,1922847,1945204,1,19.0,1.0,-9.0,-9.0,3,27000.0,1013097,0.0,22808.0,2147.0 +1922851,1922851,1945208,1,19.0,1.0,-9.0,-9.0,3,65010.0,1054346,0.0,22765.0,2130.0 +1922852,1922852,1945209,1,19.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1922853,1922853,1945210,1,19.0,1.0,-9.0,-9.0,3,4300.0,1070673,0.0,22765.0,2130.0 +1922854,1922854,1945211,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1922855,1922855,1945212,1,19.0,1.0,-9.0,-9.0,3,41200.0,1035838,0.0,22808.0,2147.0 +1922856,1922856,1945213,1,19.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1922859,1922859,1945216,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22806.0,2146.0 +1922864,1922864,1945221,1,19.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22808.0,2147.0 +1922869,1922869,1945226,1,19.0,1.0,-9.0,-9.0,3,900.0,1035838,0.0,22808.0,2147.0 +1922875,1922875,1945232,1,19.0,1.0,-9.0,-9.0,3,65500.0,1035838,0.0,22808.0,2147.0 +1922876,1922876,1945233,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22765.0,2130.0 +1922883,1922883,1945240,1,19.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22808.0,2147.0 +1922884,1922884,1945241,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1922886,1922886,1945243,1,19.0,1.0,-9.0,-9.0,3,25300.0,1035838,0.0,22808.0,2147.0 +1922887,1922887,1945244,1,19.0,1.0,-9.0,-9.0,3,7000.0,1054346,0.0,22814.0,2150.0 +1922889,1922889,1945246,1,19.0,1.0,-9.0,-9.0,3,10000.0,1035838,0.0,22806.0,2146.0 +1922893,1922893,1945250,1,19.0,1.0,-9.0,-9.0,3,4300.0,1070673,0.0,22765.0,2130.0 +1922894,1922894,1945251,1,19.0,1.0,-9.0,-9.0,3,33500.0,1035838,0.0,22808.0,2147.0 +1922895,1922895,1945252,1,19.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22806.0,2146.0 +1922896,1922896,1945253,1,19.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22806.0,2146.0 +1922898,1922898,1945255,1,19.0,1.0,-9.0,-9.0,3,25200.0,1013097,0.0,22806.0,2146.0 +1922899,1922899,1945256,1,19.0,1.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1922901,1922901,1945258,1,19.0,1.0,-9.0,-9.0,3,11500.0,1070673,0.0,22808.0,2147.0 +1922902,1922902,1945259,1,19.0,1.0,-9.0,-9.0,3,30050.0,1035838,0.0,22808.0,2147.0 +1922903,1922903,1945260,1,19.0,1.0,-9.0,-9.0,3,64250.0,1061242,0.0,22765.0,2130.0 +1922904,1922904,1945261,1,19.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22808.0,2147.0 +1922914,1922914,1945271,1,19.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22758.0,2127.0 +1922915,1922915,1945272,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1922917,1922917,1945274,1,19.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22765.0,2130.0 +1922929,1922929,1945286,1,19.0,1.0,-9.0,-9.0,3,10600.0,1070673,0.0,22765.0,2130.0 +1922930,1922930,1945287,1,19.0,1.0,-9.0,-9.0,3,710.0,1013097,0.0,22808.0,2147.0 +1922933,1922933,1945290,1,19.0,1.0,-9.0,-9.0,3,31000.0,1013097,0.0,22808.0,2147.0 +1922935,1922935,1945292,1,19.0,1.0,-9.0,-9.0,3,1100.0,1035838,0.0,22765.0,2130.0 +1922936,1922936,1945293,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1922937,1922937,1945294,1,19.0,1.0,-9.0,-9.0,3,29400.0,1061242,0.0,22813.0,2150.0 +1922939,1922939,1945296,1,19.0,1.0,-9.0,-9.0,3,31500.0,1061242,0.0,22808.0,2147.0 +1922940,1922940,1945297,1,19.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1922944,1922944,1945301,1,19.0,1.0,-9.0,-9.0,3,8000.0,1013097,0.0,22810.0,2148.0 +1922954,1922954,1945311,1,19.0,1.0,-9.0,-9.0,3,9500.0,1054346,0.0,22808.0,2147.0 +1922958,1922958,1945315,1,19.0,1.0,-9.0,-9.0,3,24000.0,1070673,0.0,22808.0,2147.0 +1922961,1922961,1945318,1,19.0,1.0,-9.0,-9.0,3,29200.0,1061242,0.0,22808.0,2147.0 +1922962,1922962,1945319,1,19.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22808.0,2147.0 +1922969,1922969,1945326,1,19.0,1.0,-9.0,-9.0,3,34000.0,1070673,0.0,22808.0,2147.0 +1922970,1922970,1945327,1,19.0,1.0,-9.0,-9.0,3,20000.0,1061242,0.0,22806.0,2146.0 +1922971,1922971,1945328,1,19.0,1.0,-9.0,-9.0,3,25000.0,1054346,0.0,22808.0,2147.0 +1922972,1922972,1945329,1,19.0,1.0,-9.0,-9.0,3,33500.0,1070673,0.0,22815.0,2150.0 +1922975,1922975,1945332,1,19.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22808.0,2147.0 +1922976,1922976,1945333,1,19.0,1.0,-9.0,-9.0,3,15200.0,1070673,0.0,22806.0,2146.0 +1922978,1922978,1945335,1,19.0,1.0,-9.0,-9.0,3,3000.0,1054346,0.0,22806.0,2146.0 +1922979,1922979,1945336,1,19.0,1.0,-9.0,-9.0,3,65500.0,1035838,0.0,22808.0,2147.0 +1922982,1922982,1945339,1,19.0,1.0,-9.0,-9.0,3,3000.0,1061242,0.0,22808.0,2147.0 +1922985,1922985,1945342,1,19.0,1.0,-9.0,-9.0,3,76700.0,1061242,0.0,22808.0,2147.0 +1922986,1922986,1945343,1,19.0,1.0,-9.0,-9.0,3,16404.0,1070673,0.0,22806.0,2146.0 +1922994,1922994,1945351,1,19.0,1.0,-9.0,-9.0,3,15200.0,1070673,0.0,22808.0,2147.0 +1923002,1923002,1945359,1,19.0,1.0,-9.0,-9.0,3,6900.0,1013097,0.0,22760.0,2128.0 +1923005,1923005,1945362,1,19.0,1.0,-9.0,-9.0,3,28500.0,1013097,0.0,22808.0,2147.0 +1923010,1923010,1945367,1,19.0,1.0,-9.0,-9.0,3,30050.0,1035838,0.0,22808.0,2147.0 +1923013,1923013,1945370,1,19.0,1.0,-9.0,-9.0,3,67300.0,1061242,0.0,22808.0,2147.0 +1923016,1923016,1945373,1,19.0,1.0,-9.0,-9.0,3,65350.0,1061242,0.0,22808.0,2147.0 +1923017,1923017,1945374,1,19.0,1.0,-9.0,-9.0,3,10820.0,1061242,0.0,22815.0,2150.0 +1923021,1923021,1945378,1,19.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1923026,1923026,1945383,1,19.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1923027,1923027,1945384,1,19.0,1.0,-9.0,-9.0,3,28200.0,1054346,0.0,22814.0,2150.0 +1923028,1923028,1945385,1,19.0,1.0,-9.0,-9.0,3,33500.0,1070673,0.0,22808.0,2147.0 +1923030,1923030,1945387,1,19.0,1.0,-9.0,-9.0,3,35800.0,1035838,0.0,22808.0,2147.0 +1923033,1923033,1945390,1,19.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22806.0,2146.0 +1923040,1923040,1945397,1,19.0,1.0,-9.0,-9.0,3,64500.0,1035838,0.0,22765.0,2130.0 +1923046,1923046,1945403,1,19.0,1.0,-9.0,-9.0,3,27150.0,1013097,0.0,22765.0,2130.0 +1923049,1923049,1945406,1,19.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22808.0,2147.0 +1923051,1923051,1945408,1,19.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1923055,1923055,1945412,1,19.0,1.0,-9.0,-9.0,3,15500.0,1070673,0.0,22814.0,2150.0 +1923059,1923059,1945416,1,19.0,1.0,-9.0,-9.0,3,30050.0,1035838,0.0,22808.0,2147.0 +1923060,1923060,1945417,1,19.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22765.0,2130.0 +1923064,1923064,1945421,1,19.0,1.0,-9.0,-9.0,3,64500.0,1035838,0.0,22808.0,2147.0 +1923066,1923066,1945423,1,19.0,1.0,-9.0,-9.0,3,17500.0,1061242,0.0,22765.0,2130.0 +1923069,1923069,1945426,1,19.0,1.0,-9.0,-9.0,3,74300.0,1013097,0.0,22808.0,2147.0 +1923070,1923070,1945427,1,19.0,1.0,-9.0,-9.0,3,3700.0,1070673,0.0,22808.0,2147.0 +1923072,1923072,1945429,1,19.0,1.0,-9.0,-9.0,3,30000.0,1054346,0.0,22765.0,2130.0 +1923073,1923073,1945430,1,19.0,1.0,-9.0,-9.0,3,67000.0,1061242,0.0,22808.0,2147.0 +1923077,1923077,1945434,1,19.0,1.0,-9.0,-9.0,3,74700.0,1013097,0.0,22765.0,2130.0 +1923082,1923082,1945439,1,19.0,1.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1923087,1923087,1945444,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1923090,1923090,1945447,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1923093,1923093,1945450,1,19.0,1.0,-9.0,-9.0,3,600.0,1061242,0.0,22808.0,2147.0 +1923096,1923096,1945453,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1923098,1923098,1945455,1,19.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22808.0,2147.0 +1923099,1923099,1945456,1,19.0,1.0,-9.0,-9.0,3,18500.0,1054346,0.0,22808.0,2147.0 +1923102,1923102,1945459,1,19.0,1.0,-9.0,-9.0,3,2500.0,1070673,0.0,22808.0,2147.0 +1923104,1923104,1945461,1,19.0,1.0,-9.0,-9.0,3,34000.0,1054346,0.0,22765.0,2130.0 +1923105,1923105,1945462,1,19.0,1.0,-9.0,-9.0,3,27600.0,1061242,0.0,22765.0,2130.0 +1923106,1923106,1945463,1,19.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1923107,1923107,1945464,1,19.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22758.0,2127.0 +1923114,1923114,1945471,1,19.0,1.0,-9.0,-9.0,3,10000.0,1035838,0.0,22808.0,2147.0 +1923117,1923117,1945474,1,19.0,1.0,-9.0,-9.0,3,2400.0,1013097,0.0,22808.0,2147.0 +1923119,1923119,1945476,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1923121,1923121,1945478,1,19.0,1.0,-9.0,-9.0,3,76000.0,1013097,0.0,22806.0,2146.0 +1923122,1923122,1945479,1,19.0,1.0,-9.0,-9.0,3,30800.0,1070673,0.0,22808.0,2147.0 +1923127,1923127,1945484,1,19.0,1.0,-9.0,-9.0,3,7000.0,1035838,0.0,22808.0,2147.0 +1923128,1923128,1945485,1,19.0,1.0,-9.0,-9.0,3,66800.0,1035838,0.0,22808.0,2147.0 +1923134,1923134,1945491,1,19.0,1.0,-9.0,-9.0,3,6900.0,1013097,0.0,22808.0,2147.0 +1923136,1923136,1945493,1,19.0,1.0,-9.0,-9.0,3,6000.0,1013097,0.0,22815.0,2150.0 +1923144,1923144,1945501,1,19.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22808.0,2147.0 +1923149,1923149,1945506,1,19.0,1.0,-9.0,-9.0,3,16000.0,1035838,0.0,22808.0,2147.0 +1923152,1923152,1945509,1,19.0,1.0,-9.0,-9.0,3,1600.0,1061242,0.0,22808.0,2147.0 +1923153,1923153,1945510,1,19.0,1.0,-9.0,-9.0,3,69000.0,1035838,0.0,22808.0,2147.0 +1923154,1923154,1945511,1,19.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22765.0,2130.0 +1923156,1923156,1945513,1,19.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22808.0,2147.0 +1923157,1923157,1945514,1,19.0,1.0,-9.0,-9.0,3,65200.0,1070673,0.0,22808.0,2147.0 +1923158,1923158,1945515,1,19.0,1.0,-9.0,-9.0,3,2000.0,1061242,0.0,22808.0,2147.0 +1923162,1923162,1945519,1,19.0,1.0,-9.0,-9.0,3,14600.0,1054346,0.0,22765.0,2130.0 +1923163,1923163,1945520,1,19.0,1.0,-9.0,-9.0,3,22800.0,1013097,0.0,22808.0,2147.0 +1923165,1923165,1945522,1,19.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22808.0,2147.0 +1923167,1923167,1945524,1,19.0,1.0,-9.0,-9.0,3,41200.0,1035838,0.0,22808.0,2147.0 +1923168,1923168,1945525,1,19.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1923170,1923170,1945527,1,19.0,1.0,-9.0,-9.0,3,22800.0,1013097,0.0,22808.0,2147.0 +1923173,1923173,1945530,1,19.0,1.0,-9.0,-9.0,3,22000.0,1061242,0.0,22810.0,2148.0 +1923174,1923174,1945531,1,19.0,1.0,-9.0,-9.0,3,7000.0,1035838,0.0,22808.0,2147.0 +1923179,1923179,1945536,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1923185,1923185,1945542,1,19.0,1.0,-9.0,-9.0,3,22380.0,1061242,0.0,22808.0,2147.0 +1923189,1923189,1945546,1,19.0,1.0,-9.0,-9.0,3,2500.0,1013097,0.0,22808.0,2147.0 +1923191,1923191,1945548,1,19.0,1.0,-9.0,-9.0,3,69100.0,1035838,0.0,22808.0,2147.0 +1923193,1923193,1945550,1,19.0,1.0,-9.0,-9.0,3,34500.0,1054346,0.0,22760.0,2128.0 +1923197,1923197,1945554,1,19.0,1.0,-9.0,-9.0,3,49200.0,1035838,0.0,22808.0,2147.0 +1923201,1923201,1945558,1,19.0,1.0,-9.0,-9.0,3,900.0,1035838,0.0,22808.0,2147.0 +1923206,1923206,1945563,1,19.0,1.0,-9.0,-9.0,3,67100.0,1054346,0.0,22806.0,2146.0 +1923210,1923210,1945567,1,19.0,1.0,-9.0,-9.0,3,6030.0,1070673,0.0,22808.0,2147.0 +1923211,1923211,1945568,1,19.0,1.0,-9.0,-9.0,3,55000.0,1013097,0.0,22810.0,2148.0 +1923214,1923214,1945571,1,19.0,1.0,-9.0,-9.0,3,7000.0,1013097,0.0,22808.0,2147.0 +1923218,1923218,1945575,1,19.0,1.0,-9.0,-9.0,3,21000.0,1013097,0.0,22808.0,2147.0 +1923222,1923222,1945579,1,19.0,1.0,-9.0,-9.0,3,65000.0,1070673,0.0,22808.0,2147.0 +1923239,1923239,1945596,1,19.0,1.0,-9.0,-9.0,3,530.0,1035838,0.0,22806.0,2146.0 +1923243,1923243,1945600,1,19.0,1.0,-9.0,-9.0,3,10400.0,1035838,0.0,22806.0,2146.0 +1923245,1923245,1945602,1,19.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22813.0,2150.0 +1923246,1923246,1945603,1,19.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22808.0,2147.0 +1923248,1923248,1945605,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22806.0,2146.0 +1923251,1923251,1945608,1,19.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1923260,1923260,1945617,1,19.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22808.0,2147.0 +1923264,1923264,1945621,1,19.0,1.0,-9.0,-9.0,3,7000.0,1054346,0.0,22808.0,2147.0 +1923267,1923267,1945624,1,19.0,1.0,-9.0,-9.0,3,2300.0,1013097,0.0,22806.0,2146.0 +1923268,1923268,1945625,1,19.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22808.0,2147.0 +1923270,1923270,1945627,1,19.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22765.0,2130.0 +1923276,1923276,1945633,1,19.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22818.0,2150.0 +1923279,1923279,1945636,1,19.0,1.0,-9.0,-9.0,3,30000.0,1061242,0.0,22806.0,2146.0 +1923280,1923280,1945637,1,19.0,1.0,-9.0,-9.0,3,9000.0,1035838,0.0,22808.0,2147.0 +1923281,1923281,1945638,1,19.0,1.0,-9.0,-9.0,3,1400.0,1061242,0.0,22806.0,2146.0 +1923282,1923282,1945639,1,19.0,1.0,-9.0,-9.0,3,10820.0,1061242,0.0,22760.0,2128.0 +1923286,1923286,1945643,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1923287,1923287,1945644,1,19.0,1.0,-9.0,-9.0,3,41600.0,1054346,0.0,22815.0,2150.0 +1923297,1923297,1945654,1,19.0,1.0,-9.0,-9.0,3,31000.0,1061242,0.0,22808.0,2147.0 +1923299,1923299,1945656,1,19.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22758.0,2127.0 +1923300,1923300,1945657,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1923303,1923303,1945660,1,19.0,1.0,-9.0,-9.0,3,4000.0,1035838,0.0,22808.0,2147.0 +1923317,1923317,1945674,1,19.0,1.0,-9.0,-9.0,3,45020.0,1054346,0.0,22806.0,2146.0 +1923321,1923321,1945678,1,19.0,1.0,-9.0,-9.0,3,21000.0,1013097,0.0,22808.0,2147.0 +1923326,1923326,1945683,1,19.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22808.0,2147.0 +1923327,1923327,1945684,1,19.0,1.0,-9.0,-9.0,3,29000.0,1070673,0.0,22808.0,2147.0 +1923329,1923329,1945686,1,19.0,1.0,-9.0,-9.0,3,38000.0,1054346,0.0,22808.0,2147.0 +1923340,1923340,1945697,1,19.0,1.0,-9.0,-9.0,3,10700.0,1070673,0.0,22808.0,2147.0 +1923345,1923345,1945702,1,19.0,1.0,-9.0,-9.0,3,6000.0,1070673,0.0,22806.0,2146.0 +1923349,1923349,1945706,1,19.0,1.0,-9.0,-9.0,3,77900.0,1013097,0.0,22808.0,2147.0 +1923351,1923351,1945708,1,19.0,1.0,-9.0,-9.0,3,14300.0,1061242,0.0,22806.0,2146.0 +1923352,1923352,1945709,1,19.0,1.0,-9.0,-9.0,3,34000.0,1054346,0.0,22808.0,2147.0 +1923355,1923355,1945712,1,19.0,1.0,-9.0,-9.0,3,21100.0,1061242,0.0,22808.0,2147.0 +1923362,1923362,1945719,1,19.0,1.0,-9.0,-9.0,3,30500.0,1035838,0.0,22808.0,2147.0 +1923363,1923363,1945720,1,19.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22814.0,2150.0 +1923368,1923368,1945725,1,19.0,1.0,-9.0,-9.0,3,4300.0,1013097,0.0,22808.0,2147.0 +1923371,1923371,1945728,1,19.0,1.0,-9.0,-9.0,3,5000.0,1013097,0.0,22806.0,2146.0 +1923375,1923375,1945732,1,19.0,1.0,-9.0,-9.0,3,8800.0,1035838,0.0,22814.0,2150.0 +1923376,1923376,1945733,1,19.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1923381,1923381,1945738,1,19.0,1.0,-9.0,-9.0,3,18900.0,1061242,0.0,22806.0,2146.0 +1923394,1923394,1945751,1,19.0,1.0,-9.0,-9.0,3,28500.0,1061242,0.0,22806.0,2146.0 +1923395,1923395,1945752,1,19.0,1.0,-9.0,-9.0,3,18900.0,1061242,0.0,22808.0,2147.0 +1923396,1923396,1945753,1,19.0,1.0,-9.0,-9.0,3,4200.0,1061242,0.0,22758.0,2127.0 +1923398,1923398,1945755,1,19.0,1.0,-9.0,-9.0,3,66500.0,1035838,0.0,22808.0,2147.0 +1923399,1923399,1945756,1,19.0,1.0,-9.0,-9.0,3,33500.0,1070673,0.0,22808.0,2147.0 +1923400,1923400,1945757,1,19.0,1.0,-9.0,-9.0,3,34000.0,1061242,0.0,22808.0,2147.0 +1923405,1923405,1945762,1,19.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1923407,1923407,1945764,1,19.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22765.0,2130.0 +1923409,1923409,1945766,1,19.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22806.0,2146.0 +1923413,1923413,1945770,1,19.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1923419,1923419,1945776,1,19.0,1.0,-9.0,-9.0,3,5200.0,1061242,0.0,22818.0,2150.0 +1923431,1923431,1945788,1,19.0,1.0,-9.0,-9.0,3,13500.0,1054346,0.0,22806.0,2146.0 +1923432,1923432,1945789,1,19.0,1.0,-9.0,-9.0,3,30200.0,1013097,0.0,22808.0,2147.0 +1923434,1923434,1945791,1,19.0,1.0,-9.0,-9.0,3,42100.0,1035838,0.0,22808.0,2147.0 +1923435,1923435,1945792,1,19.0,1.0,-9.0,-9.0,3,600.0,1061242,0.0,22808.0,2147.0 +1923439,1923439,1945796,1,19.0,1.0,-9.0,-9.0,3,30300.0,1054346,0.0,22808.0,2147.0 +1923442,1923442,1945799,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22806.0,2146.0 +1923443,1923443,1945800,1,19.0,1.0,-9.0,-9.0,3,14600.0,1054346,0.0,22808.0,2147.0 +1923444,1923444,1945801,1,19.0,1.0,-9.0,-9.0,3,64300.0,1061242,0.0,22806.0,2146.0 +1923451,1923451,1945808,1,19.0,1.0,-9.0,-9.0,3,10600.0,1070673,0.0,22765.0,2130.0 +1923453,1923453,1945810,1,19.0,1.0,-9.0,-9.0,3,6400.0,1070673,0.0,22765.0,2130.0 +1923456,1923456,1945813,1,19.0,1.0,-9.0,-9.0,3,21100.0,1061242,0.0,22814.0,2150.0 +1923463,1923463,1945820,1,19.0,1.0,-9.0,-9.0,3,3000.0,1061242,0.0,22808.0,2147.0 +1923468,1923468,1945825,1,19.0,1.0,-9.0,-9.0,3,1900.0,1054346,0.0,22765.0,2130.0 +1923470,1923470,1945827,1,19.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22806.0,2146.0 +1923477,1923477,1945834,1,19.0,1.0,-9.0,-9.0,3,1600.0,1061242,0.0,22808.0,2147.0 +1923478,1923478,1945835,1,19.0,1.0,-9.0,-9.0,3,66000.0,1061242,0.0,22765.0,2130.0 +1923479,1923479,1945836,1,19.0,1.0,-9.0,-9.0,3,500.0,1035838,0.0,22808.0,2147.0 +1923480,1923480,1945837,1,19.0,1.0,-9.0,-9.0,3,36000.0,1061242,0.0,22808.0,2147.0 +1923481,1923481,1945838,1,19.0,1.0,-9.0,-9.0,3,5500.0,1035838,0.0,22808.0,2147.0 +1923483,1923483,1945840,1,19.0,1.0,-9.0,-9.0,3,33300.0,1035838,0.0,22815.0,2150.0 +1923496,1923496,1945853,1,19.0,1.0,-9.0,-9.0,3,22100.0,1054346,0.0,22808.0,2147.0 +1923499,1923499,1945856,1,19.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22808.0,2147.0 +1923500,1923500,1945857,1,19.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1923502,1923502,1945859,1,19.0,1.0,-9.0,-9.0,3,34000.0,1070673,0.0,22806.0,2146.0 +1923506,1923506,1945863,1,19.0,1.0,-9.0,-9.0,3,9000.0,1035838,0.0,22808.0,2147.0 +1923509,1923509,1945866,1,19.0,1.0,-9.0,-9.0,3,26500.0,1061242,0.0,22806.0,2146.0 +1923511,1923511,1945868,1,19.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1923514,1923514,1945871,1,19.0,1.0,-9.0,-9.0,3,67400.0,1061242,0.0,22815.0,2150.0 +1923518,1923518,1945875,1,19.0,1.0,-9.0,-9.0,3,34000.0,1054346,0.0,22808.0,2147.0 +1923520,1923520,1945877,1,19.0,1.0,-9.0,-9.0,3,5300.0,1013097,0.0,22808.0,2147.0 +1923521,1923521,1945878,1,19.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22806.0,2146.0 +1923522,1923522,1945879,1,19.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22808.0,2147.0 +1923529,1923529,1945886,1,19.0,1.0,-9.0,-9.0,3,27150.0,1013097,0.0,22806.0,2146.0 +1923533,1923533,1945890,1,19.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22813.0,2150.0 +1923537,1923537,1945894,1,19.0,1.0,-9.0,-9.0,3,64500.0,1070673,0.0,22808.0,2147.0 +1923540,1923540,1945897,1,19.0,1.0,-9.0,-9.0,3,22000.0,1035838,0.0,22808.0,2147.0 +1923541,1923541,1945898,1,19.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22808.0,2147.0 +1923544,1923544,1945901,1,19.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1923545,1923545,1945902,1,19.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22808.0,2147.0 +1923547,1923547,1945904,1,19.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1923548,1923548,1945905,1,19.0,1.0,-9.0,-9.0,3,12000.0,1061242,0.0,22806.0,2146.0 +1923552,1923552,1945909,1,19.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1923555,1923555,1945912,1,19.0,1.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1923556,1923556,1945913,1,19.0,1.0,-9.0,-9.0,3,66660.0,1070673,0.0,22765.0,2130.0 +1923560,1923560,1945917,1,19.0,1.0,-9.0,-9.0,3,30200.0,1013097,0.0,22765.0,2130.0 +1923562,1923562,1945919,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1923568,1923568,1945925,1,19.0,1.0,-9.0,-9.0,3,4300.0,1013097,0.0,22808.0,2147.0 +1923572,1923572,1945929,1,19.0,1.0,-9.0,-9.0,3,190.0,1054346,0.0,22808.0,2147.0 +1923577,1923577,1945934,1,19.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22765.0,2130.0 +1923583,1923583,1945940,1,19.0,1.0,-9.0,-9.0,3,26504.0,1070673,0.0,22808.0,2147.0 +1923584,1923584,1945941,1,19.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22808.0,2147.0 +1923586,1923586,1945943,1,19.0,1.0,-9.0,-9.0,3,30500.0,1035838,0.0,22808.0,2147.0 +1923592,1923592,1945949,1,19.0,1.0,-9.0,-9.0,3,22000.0,1061242,0.0,22808.0,2147.0 +1923594,1923594,1945951,1,19.0,1.0,-9.0,-9.0,3,22380.0,1061242,0.0,22808.0,2147.0 +1923598,1923598,1945955,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1923601,1923601,1945958,1,19.0,1.0,-9.0,-9.0,3,5300.0,1013097,0.0,22808.0,2147.0 +1923603,1923603,1945960,1,19.0,1.0,-9.0,-9.0,3,20500.0,1070673,0.0,22808.0,2147.0 +1923605,1923605,1945962,1,19.0,1.0,-9.0,-9.0,3,4300.0,1070673,0.0,22808.0,2147.0 +1923610,1923610,1945967,1,19.0,1.0,-9.0,-9.0,3,31210.0,1054346,0.0,22806.0,2146.0 +1923612,1923612,1945969,1,19.0,1.0,-9.0,-9.0,3,32500.0,1013097,0.0,22808.0,2147.0 +1923613,1923613,1945970,1,19.0,1.0,-9.0,-9.0,3,16000.0,1013097,0.0,22810.0,2148.0 +1923615,1923615,1945972,1,19.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22808.0,2147.0 +1923622,1923622,1945979,1,19.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1923636,1923636,1945993,1,19.0,1.0,-9.0,-9.0,3,34000.0,1061242,0.0,22808.0,2147.0 +1923641,1923641,1945998,1,19.0,1.0,-9.0,-9.0,3,38000.0,1054346,0.0,22808.0,2147.0 +1923643,1923643,1946000,1,19.0,1.0,-9.0,-9.0,3,73650.0,1013097,0.0,22808.0,2147.0 +1923647,1923647,1946004,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1923648,1923648,1946005,1,19.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22808.0,2147.0 +1923651,1923651,1946008,1,19.0,1.0,-9.0,-9.0,3,91000.0,1013097,0.0,22808.0,2147.0 +1923656,1923656,1946013,1,19.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1923659,1923659,1946016,1,19.0,1.0,-9.0,-9.0,3,11600.0,1013097,0.0,22808.0,2147.0 +1923660,1923660,1946017,1,19.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1923665,1923665,1946022,1,19.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22765.0,2130.0 +1923666,1923666,1946023,1,19.0,1.0,-9.0,-9.0,3,15800.0,1054346,0.0,22808.0,2147.0 +1923667,1923667,1946024,1,19.0,1.0,-9.0,-9.0,3,7200.0,1013097,0.0,22808.0,2147.0 +1923671,1923671,1946028,1,19.0,1.0,-9.0,-9.0,3,29200.0,1061242,0.0,22808.0,2147.0 +1923673,1923673,1946030,1,19.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22808.0,2147.0 +1923681,1923681,1946038,1,19.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22810.0,2148.0 +1923683,1923683,1946040,1,19.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1923684,1923684,1946041,1,19.0,1.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1923688,1923688,1946045,1,19.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22806.0,2146.0 +1923689,1923689,1946046,1,19.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22806.0,2146.0 +1923691,1923691,1946048,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22765.0,2130.0 +1923693,1923693,1946050,1,19.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1923694,1923694,1946051,1,19.0,1.0,-9.0,-9.0,3,31750.0,1035838,0.0,22808.0,2147.0 +1923696,1923696,1946053,1,19.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22808.0,2147.0 +1923697,1923697,1946054,1,19.0,1.0,-9.0,-9.0,3,28600.0,1013097,0.0,22808.0,2147.0 +1923699,1923699,1946056,1,19.0,1.0,-9.0,-9.0,3,10820.0,1061242,0.0,22808.0,2147.0 +1923705,1923705,1946062,1,19.0,1.0,-9.0,-9.0,3,15500.0,1035838,0.0,22808.0,2147.0 +1923706,1923706,1946063,1,19.0,1.0,-9.0,-9.0,3,32300.0,1070673,0.0,22806.0,2146.0 +1923707,1923707,1946064,1,19.0,1.0,-9.0,-9.0,3,13210.0,1054346,0.0,22808.0,2147.0 +1923708,1923708,1946065,1,19.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22814.0,2150.0 +1923710,1923710,1946067,1,19.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1923722,1923722,1946079,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1923725,1923725,1946082,1,19.0,1.0,-9.0,-9.0,3,13200.0,1054346,0.0,22808.0,2147.0 +1923730,1923730,1946087,1,19.0,1.0,-9.0,-9.0,3,28600.0,1013097,0.0,22808.0,2147.0 +1923734,1923734,1946091,1,19.0,1.0,-9.0,-9.0,3,2400.0,1013097,0.0,22808.0,2147.0 +1923735,1923735,1946092,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1923753,1923753,1946110,1,19.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1923754,1923754,1946111,1,19.0,1.0,-9.0,-9.0,3,34500.0,1054346,0.0,22808.0,2147.0 +1923759,1923759,1946116,1,19.0,1.0,-9.0,-9.0,3,34500.0,1061242,0.0,22808.0,2147.0 +1923760,1923760,1946117,1,19.0,1.0,-9.0,-9.0,3,10500.0,1061242,0.0,22808.0,2147.0 +1923764,1923764,1946121,1,19.0,1.0,-9.0,-9.0,3,16000.0,1013097,0.0,22808.0,2147.0 +1923765,1923765,1946122,1,19.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22806.0,2146.0 +1923766,1923766,1946123,1,19.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1923772,1923772,1946129,1,19.0,1.0,-9.0,-9.0,3,12000.0,1013097,0.0,22765.0,2130.0 +1923776,1923776,1946133,1,19.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22808.0,2147.0 +1923777,1923777,1946134,1,19.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22815.0,2150.0 +1923778,1923778,1946135,1,19.0,1.0,-9.0,-9.0,3,6000.0,1013097,0.0,22808.0,2147.0 +1923779,1923779,1946136,1,19.0,1.0,-9.0,-9.0,3,26800.0,1061242,0.0,22808.0,2147.0 +1923781,1923781,1946138,1,19.0,1.0,-9.0,-9.0,3,6700.0,1070673,0.0,22806.0,2146.0 +1923786,1923786,1946143,1,19.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22808.0,2147.0 +1923790,1923790,1946147,1,19.0,1.0,-9.0,-9.0,3,52000.0,1013097,0.0,22808.0,2147.0 +1923795,1923795,1946152,1,19.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22808.0,2147.0 +1923799,1923799,1946156,1,19.0,1.0,-9.0,-9.0,3,10700.0,1013097,0.0,22808.0,2147.0 +1923801,1923801,1946158,1,19.0,1.0,-9.0,-9.0,3,30400.0,1035838,0.0,22806.0,2146.0 +1923802,1923802,1946159,1,19.0,1.0,-9.0,-9.0,3,25300.0,1061242,0.0,22808.0,2147.0 +1923803,1923803,1946160,1,19.0,1.0,-9.0,-9.0,3,26000.0,1054346,0.0,22808.0,2147.0 +1923804,1923804,1946161,1,19.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1923806,1923806,1946163,1,19.0,1.0,-9.0,-9.0,3,5200.0,1061242,0.0,22810.0,2148.0 +1923807,1923807,1946164,1,19.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22808.0,2147.0 +1923808,1923808,1946165,1,19.0,2.0,-9.0,-9.0,3,2200.0,1035838,0.0,22808.0,2147.0 +1923809,1923809,1946166,1,19.0,2.0,-9.0,-9.0,3,15100.0,1061242,0.0,22815.0,2150.0 +1923817,1923817,1946174,1,19.0,2.0,-9.0,-9.0,3,5500.0,1054346,0.0,22808.0,2147.0 +1923818,1923818,1946175,1,19.0,2.0,-9.0,-9.0,3,400.0,1070673,0.0,22815.0,2150.0 +1923822,1923822,1946179,1,19.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22815.0,2150.0 +1923828,1923828,1946185,1,19.0,2.0,-9.0,-9.0,3,200.0,1035838,0.0,22808.0,2147.0 +1923841,1923841,1946198,1,19.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1923843,1923843,1946200,1,19.0,2.0,-9.0,-9.0,3,65010.0,1054346,0.0,22808.0,2147.0 +1923844,1923844,1946201,1,19.0,2.0,-9.0,-9.0,3,3000.0,1035838,0.0,22806.0,2146.0 +1923849,1923849,1946206,1,19.0,2.0,-9.0,-9.0,3,35400.0,1061242,0.0,22765.0,2130.0 +1923850,1923850,1946207,1,19.0,2.0,-9.0,-9.0,3,430.0,1013097,0.0,22758.0,2127.0 +1923854,1923854,1946211,1,19.0,2.0,-9.0,-9.0,3,13000.0,1035838,0.0,22810.0,2148.0 +1923855,1923855,1946212,1,19.0,2.0,-9.0,-9.0,3,2600.0,1035838,0.0,22815.0,2150.0 +1923858,1923858,1946215,1,19.0,2.0,-9.0,-9.0,3,4600.0,1061242,0.0,22814.0,2150.0 +1923861,1923861,1946218,1,19.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22806.0,2146.0 +1923871,1923871,1946228,1,19.0,2.0,-9.0,-9.0,3,7000.0,1054346,0.0,22758.0,2127.0 +1923874,1923874,1946231,1,19.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1923881,1923881,1946238,1,19.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1923882,1923882,1946239,1,19.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22815.0,2150.0 +1923883,1923883,1946240,1,19.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22758.0,2127.0 +1923884,1923884,1946241,1,19.0,2.0,-9.0,-9.0,3,20000.0,1054346,0.0,22806.0,2146.0 +1923886,1923886,1946243,1,19.0,2.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1923887,1923887,1946244,1,19.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1923890,1923890,1946247,1,19.0,2.0,-9.0,-9.0,3,37000.0,1013097,0.0,22758.0,2127.0 +1923894,1923894,1946251,1,19.0,2.0,-9.0,-9.0,3,15100.0,1061242,0.0,22808.0,2147.0 +1923898,1923898,1946255,1,19.0,2.0,-9.0,-9.0,3,35400.0,1054346,0.0,22765.0,2130.0 +1923905,1923905,1946262,1,19.0,2.0,-9.0,-9.0,3,65000.0,1070673,0.0,22808.0,2147.0 +1923909,1923909,1946266,1,19.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22806.0,2146.0 +1923910,1923910,1946267,1,19.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22808.0,2147.0 +1923914,1923914,1946271,1,19.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22814.0,2150.0 +1923915,1923915,1946272,1,19.0,4.0,-9.0,-9.0,3,14500.0,1070673,0.0,22806.0,2146.0 +1923917,1923917,1946274,1,19.0,4.0,-9.0,-9.0,3,26400.0,1061242,0.0,22808.0,2147.0 +1923918,1923918,1946275,1,19.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22806.0,2146.0 +1923923,1923923,1946280,1,19.0,4.0,-9.0,-9.0,3,26600.0,1054346,0.0,22808.0,2147.0 +1923925,1923925,1946282,1,19.0,4.0,-9.0,-9.0,3,64500.0,1070673,0.0,22808.0,2147.0 +1923926,1923926,1946283,1,19.0,4.0,-9.0,-9.0,3,46500.0,1013097,0.0,22808.0,2147.0 +1923928,1923928,1946285,1,19.0,4.0,-9.0,-9.0,3,6700.0,1035838,0.0,22806.0,2146.0 +1923929,1923929,1946286,1,19.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22808.0,2147.0 +1923932,1923932,1946289,1,19.0,4.0,-9.0,-9.0,3,26400.0,1061242,0.0,22814.0,2150.0 +1923933,1923933,1946290,1,19.0,4.0,-9.0,-9.0,3,31300.0,1035838,0.0,22765.0,2130.0 +1923936,1923936,1946293,1,19.0,4.0,-9.0,-9.0,3,69000.0,1054346,0.0,22808.0,2147.0 +1923937,1923937,1946294,1,19.0,4.0,-9.0,-9.0,3,17000.0,1013097,0.0,22808.0,2147.0 +1923939,1923939,1946296,1,19.0,4.0,-9.0,-9.0,3,68000.0,1054346,0.0,22808.0,2147.0 +1923947,1923947,1946304,1,19.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22808.0,2147.0 +1923948,1923948,1946305,1,19.0,4.0,-9.0,-9.0,3,30000.0,1070673,0.0,22808.0,2147.0 +1923952,1923952,1946309,1,19.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1923956,1923956,1946313,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1923957,1923957,1946314,1,19.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22808.0,2147.0 +1923960,1923960,1946317,1,19.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1923961,1923961,1946318,1,19.0,4.0,-9.0,-9.0,3,800.0,1035838,0.0,22808.0,2147.0 +1923962,1923962,1946319,1,19.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22765.0,2130.0 +1923969,1923969,1946326,1,19.0,4.0,-9.0,-9.0,3,19000.0,1070673,0.0,22765.0,2130.0 +1923971,1923971,1946328,1,19.0,4.0,-9.0,-9.0,3,65000.0,1070673,0.0,22808.0,2147.0 +1923972,1923972,1946329,1,19.0,4.0,-9.0,-9.0,3,29300.0,1035838,0.0,22808.0,2147.0 +1923974,1923974,1946331,1,19.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1923985,1923985,1946342,1,19.0,4.0,-9.0,-9.0,3,14000.0,1013097,0.0,22808.0,2147.0 +1923990,1923990,1946347,1,19.0,4.0,-9.0,-9.0,3,46000.0,1061242,0.0,22808.0,2147.0 +1923991,1923991,1946348,1,19.0,4.0,-9.0,-9.0,3,6800.0,1061242,0.0,22806.0,2146.0 +1923994,1923994,1946351,1,19.0,4.0,-9.0,-9.0,3,13500.0,1054346,0.0,22806.0,2146.0 +1924007,1924007,1946364,1,19.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22815.0,2150.0 +1924010,1924010,1946367,1,19.0,4.0,-9.0,-9.0,3,14000.0,1013097,0.0,22808.0,2147.0 +1924014,1924014,1946371,1,19.0,4.0,-9.0,-9.0,3,29400.0,1013097,0.0,22765.0,2130.0 +1924020,1924020,1946377,1,19.0,4.0,-9.0,-9.0,3,75000.0,1013097,0.0,22806.0,2146.0 +1924021,1924021,1946378,1,19.0,4.0,-9.0,-9.0,3,75500.0,1054346,0.0,22815.0,2150.0 +1924024,1924024,1946381,1,19.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22758.0,2127.0 +1924032,1924032,1946389,1,19.0,4.0,-9.0,-9.0,3,65300.0,1061242,0.0,22808.0,2147.0 +1924033,1924033,1946390,1,19.0,4.0,-9.0,-9.0,3,23100.0,1070673,0.0,22808.0,2147.0 +1924034,1924034,1946391,1,19.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22808.0,2147.0 +1924035,1924035,1946392,1,19.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22765.0,2130.0 +1924036,1924036,1946393,1,19.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22806.0,2146.0 +1924038,1924038,1946395,1,19.0,4.0,-9.0,-9.0,3,28000.0,1013097,0.0,22808.0,2147.0 +1924039,1924039,1946396,1,19.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1924041,1924041,1946398,1,19.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22806.0,2146.0 +1924043,1924043,1946400,1,19.0,4.0,-9.0,-9.0,3,2650.0,1061242,0.0,22808.0,2147.0 +1924046,1924046,1946403,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1924049,1924049,1946406,1,19.0,4.0,-9.0,-9.0,3,31500.0,1013097,0.0,22808.0,2147.0 +1924053,1924053,1946410,1,19.0,4.0,-9.0,-9.0,3,2650.0,1061242,0.0,22808.0,2147.0 +1924054,1924054,1946411,1,19.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22806.0,2146.0 +1924057,1924057,1946414,1,19.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22810.0,2148.0 +1924059,1924059,1946416,1,19.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22765.0,2130.0 +1924060,1924060,1946417,1,19.0,4.0,-9.0,-9.0,3,72000.0,1013097,0.0,22758.0,2127.0 +1924069,1924069,1946426,1,19.0,4.0,-9.0,-9.0,3,69000.0,1054346,0.0,22814.0,2150.0 +1924070,1924070,1946427,1,19.0,4.0,-9.0,-9.0,3,69000.0,1054346,0.0,22765.0,2130.0 +1924072,1924072,1946429,1,19.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22808.0,2147.0 +1924092,1924092,1946449,1,19.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22808.0,2147.0 +1924096,1924096,1946453,1,19.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1924113,1924113,1946470,1,19.0,4.0,-9.0,-9.0,3,3550.0,1054346,0.0,22808.0,2147.0 +1924117,1924117,1946474,1,19.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22808.0,2147.0 +1924119,1924119,1946476,1,19.0,4.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1924121,1924121,1946478,1,19.0,4.0,-9.0,-9.0,3,29300.0,1035838,0.0,22813.0,2150.0 +1924123,1924123,1946480,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1924125,1924125,1946482,1,19.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22808.0,2147.0 +1924131,1924131,1946488,1,19.0,4.0,-9.0,-9.0,3,25000.0,1013097,0.0,22808.0,2147.0 +1924139,1924139,1946496,1,19.0,4.0,-9.0,-9.0,3,25000.0,1070673,0.0,22808.0,2147.0 +1924143,1924143,1946500,1,19.0,4.0,-9.0,-9.0,3,69300.0,1061242,0.0,22765.0,2130.0 +1924145,1924145,1946502,1,19.0,4.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1924146,1924146,1946503,1,19.0,4.0,-9.0,-9.0,3,35000.0,1070673,0.0,22808.0,2147.0 +1924148,1924148,1946505,1,19.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22808.0,2147.0 +1924150,1924150,1946507,1,19.0,4.0,-9.0,-9.0,3,46500.0,1013097,0.0,22808.0,2147.0 +1924153,1924153,1946510,1,19.0,4.0,-9.0,-9.0,3,66000.0,1070673,0.0,22765.0,2130.0 +1924155,1924155,1946512,1,19.0,4.0,-9.0,-9.0,3,67000.0,1054346,0.0,22808.0,2147.0 +1924159,1924159,1946516,1,19.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22808.0,2147.0 +1924161,1924161,1946518,1,19.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1924166,1924166,1946523,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22765.0,2130.0 +1924170,1924170,1946527,1,19.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22765.0,2130.0 +1924172,1924172,1946529,1,19.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22808.0,2147.0 +1924174,1924174,1946531,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22806.0,2146.0 +1924175,1924175,1946532,1,19.0,4.0,-9.0,-9.0,3,14000.0,1013097,0.0,22808.0,2147.0 +1924181,1924181,1946538,1,19.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1924183,1924183,1946540,1,19.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22806.0,2146.0 +1924184,1924184,1946541,1,19.0,4.0,-9.0,-9.0,3,28000.0,1013097,0.0,22808.0,2147.0 +1924187,1924187,1946544,1,19.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22808.0,2147.0 +1924189,1924189,1946546,1,19.0,4.0,-9.0,-9.0,3,25000.0,1070673,0.0,22808.0,2147.0 +1924190,1924190,1946547,1,19.0,4.0,-9.0,-9.0,3,29600.0,1035838,0.0,22808.0,2147.0 +1924191,1924191,1946548,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22806.0,2146.0 +1924192,1924192,1946549,1,19.0,4.0,-9.0,-9.0,3,46500.0,1013097,0.0,22765.0,2130.0 +1924194,1924194,1946551,1,19.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22808.0,2147.0 +1924196,1924196,1946553,1,19.0,4.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1924198,1924198,1946555,1,19.0,4.0,-9.0,-9.0,3,26000.0,1061242,0.0,22813.0,2150.0 +1924200,1924200,1946557,1,19.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1924211,1924211,1946568,1,19.0,4.0,-9.0,-9.0,3,2800.0,1035838,0.0,22808.0,2147.0 +1924216,1924216,1946573,1,19.0,4.0,-9.0,-9.0,3,70000.0,1061242,0.0,22808.0,2147.0 +1924219,1924219,1946576,1,19.0,4.0,-9.0,-9.0,3,26400.0,1061242,0.0,22808.0,2147.0 +1924224,1924224,1946581,1,19.0,4.0,-9.0,-9.0,3,65300.0,1061242,0.0,22808.0,2147.0 +1924226,1924226,1946583,1,19.0,4.0,-9.0,-9.0,3,39600.0,1061242,0.0,22808.0,2147.0 +1924230,1924230,1946587,1,19.0,4.0,-9.0,-9.0,3,46500.0,1013097,0.0,22808.0,2147.0 +1924232,1924232,1946589,1,19.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22808.0,2147.0 +1924238,1924238,1946595,1,19.0,4.0,-9.0,-9.0,3,75000.0,1013097,0.0,22808.0,2147.0 +1924244,1924244,1946601,1,19.0,4.0,-9.0,-9.0,3,26600.0,1054346,0.0,22765.0,2130.0 +1924247,1924247,1946604,1,19.0,4.0,-9.0,-9.0,3,29400.0,1013097,0.0,22808.0,2147.0 +1924248,1924248,1946605,1,19.0,4.0,-9.0,-9.0,3,62000.0,1070673,0.0,22808.0,2147.0 +1924253,1924253,1946610,1,19.0,4.0,-9.0,-9.0,3,800.0,1035838,0.0,22808.0,2147.0 +1924254,1924254,1946611,1,19.0,4.0,-9.0,-9.0,3,6800.0,1061242,0.0,22808.0,2147.0 +1924256,1924256,1946613,1,19.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1924261,1924261,1946618,1,19.0,4.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1924262,1924262,1946619,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1924264,1924264,1946621,1,19.0,4.0,-9.0,-9.0,3,29400.0,1013097,0.0,22808.0,2147.0 +1924266,1924266,1946623,1,19.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22810.0,2148.0 +1924274,1924274,1946631,1,19.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1924279,1924279,1946636,1,19.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22806.0,2146.0 +1924280,1924280,1946637,1,19.0,4.0,-9.0,-9.0,3,2800.0,1035838,0.0,22806.0,2146.0 +1924286,1924286,1946643,1,19.0,4.0,-9.0,-9.0,3,46000.0,1061242,0.0,22808.0,2147.0 +1924287,1924287,1946644,1,19.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22765.0,2130.0 +1924289,1924289,1946646,1,19.0,4.0,-9.0,-9.0,3,62150.0,1070673,0.0,22808.0,2147.0 +1924292,1924292,1946649,1,19.0,4.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1924293,1924293,1946650,1,19.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22815.0,2150.0 +1924295,1924295,1946652,1,19.0,4.0,-9.0,-9.0,3,28500.0,1054346,0.0,22808.0,2147.0 +1924298,1924298,1946655,1,19.0,4.0,-9.0,-9.0,3,11000.0,1035838,0.0,22808.0,2147.0 +1924302,1924302,1946659,1,19.0,4.0,-9.0,-9.0,3,65000.0,1070673,0.0,22808.0,2147.0 +1924310,1924310,1946667,1,19.0,4.0,-9.0,-9.0,3,25000.0,1013097,0.0,22808.0,2147.0 +1924311,1924311,1946668,1,19.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22808.0,2147.0 +1924314,1924314,1946671,1,19.0,4.0,-9.0,-9.0,3,16000.0,1035838,0.0,22808.0,2147.0 +1924315,1924315,1946672,1,19.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22808.0,2147.0 +1924316,1924316,1946673,1,19.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1924318,1924318,1946675,1,19.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22806.0,2146.0 +1924320,1924320,1946677,1,19.0,4.0,-9.0,-9.0,3,30800.0,1035838,0.0,22808.0,2147.0 +1924325,1924325,1946682,1,19.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1924334,1924334,1946691,1,19.0,4.0,-9.0,-9.0,3,12000.0,1054346,0.0,22765.0,2130.0 +1924337,1924337,1946694,1,19.0,4.0,-9.0,-9.0,3,13500.0,1013097,0.0,22758.0,2127.0 +1924338,1924338,1946695,1,19.0,4.0,-9.0,-9.0,3,65000.0,1070673,0.0,22808.0,2147.0 +1924339,1924339,1946696,1,19.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22765.0,2130.0 +1924347,1924347,1946704,1,19.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22806.0,2146.0 +1924350,1924350,1946707,1,19.0,4.0,-9.0,-9.0,3,13000.0,1054346,0.0,22808.0,2147.0 +1924351,1924351,1946708,1,19.0,4.0,-9.0,-9.0,3,28500.0,1054346,0.0,22806.0,2146.0 +1924355,1924355,1946712,1,19.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22758.0,2127.0 +1924357,1924357,1946714,1,19.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1924359,1924359,1946716,1,19.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1924360,1924360,1946717,1,19.0,4.0,-9.0,-9.0,3,5000.0,1013097,0.0,22808.0,2147.0 +1924361,1924361,1946718,1,19.0,4.0,-9.0,-9.0,3,69000.0,1054346,0.0,22808.0,2147.0 +1924364,1924364,1946721,1,19.0,4.0,-9.0,-9.0,3,28000.0,1013097,0.0,22808.0,2147.0 +1924367,1924367,1946724,1,19.0,4.0,-9.0,-9.0,3,46500.0,1013097,0.0,22808.0,2147.0 +1924371,1924371,1946728,1,19.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22808.0,2147.0 +1924372,1924372,1946729,1,19.0,4.0,-9.0,-9.0,3,14500.0,1070673,0.0,22806.0,2146.0 +1924373,1924373,1946730,1,19.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22808.0,2147.0 +1924375,1924375,1946732,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1924380,1924380,1946737,1,19.0,4.0,-9.0,-9.0,3,64001.0,1061242,0.0,22808.0,2147.0 +1924381,1924381,1946738,1,19.0,4.0,-9.0,-9.0,3,26000.0,1061242,0.0,22806.0,2146.0 +1924383,1924383,1946740,1,19.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1924384,1924384,1946741,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22765.0,2130.0 +1924387,1924387,1946744,1,19.0,4.0,-9.0,-9.0,3,10.0,1035838,0.0,22810.0,2148.0 +1924390,1924390,1946747,1,19.0,4.0,-9.0,-9.0,3,62150.0,1070673,0.0,22806.0,2146.0 +1924395,1924395,1946752,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22814.0,2150.0 +1924398,1924398,1946755,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1924399,1924399,1946756,1,19.0,4.0,-9.0,-9.0,3,10.0,1035838,0.0,22808.0,2147.0 +1924403,1924403,1946760,1,19.0,4.0,-9.0,-9.0,3,62000.0,1070673,0.0,22808.0,2147.0 +1924406,1924406,1946763,1,19.0,4.0,-9.0,-9.0,3,12000.0,1054346,0.0,22765.0,2130.0 +1924411,1924411,1946768,1,19.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22813.0,2150.0 +1924413,1924413,1946770,1,19.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22758.0,2127.0 +1924414,1924414,1946771,1,19.0,4.0,-9.0,-9.0,3,2650.0,1061242,0.0,22808.0,2147.0 +1924427,1924427,1946784,1,19.0,4.0,-9.0,-9.0,3,13000.0,1054346,0.0,22808.0,2147.0 +1924428,1924428,1946785,1,19.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22808.0,2147.0 +1924435,1924435,1946792,1,19.0,4.0,-9.0,-9.0,3,29600.0,1035838,0.0,22808.0,2147.0 +1924437,1924437,1946794,1,19.0,4.0,-9.0,-9.0,3,29300.0,1035838,0.0,22815.0,2150.0 +1924441,1924441,1946798,1,19.0,4.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1924443,1924443,1946800,1,19.0,4.0,-9.0,-9.0,3,320.0,1054346,0.0,22808.0,2147.0 +1924450,1924450,1946807,1,19.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22808.0,2147.0 +1924454,1924454,1946811,1,19.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22806.0,2146.0 +1924457,1924457,1946814,1,19.0,4.0,-9.0,-9.0,3,31500.0,1013097,0.0,22808.0,2147.0 +1924463,1924463,1946820,1,19.0,4.0,-9.0,-9.0,3,26200.0,1035838,0.0,22808.0,2147.0 +1924464,1924464,1946821,1,19.0,4.0,-9.0,-9.0,3,65300.0,1061242,0.0,22806.0,2146.0 +1924468,1924468,1946825,1,19.0,3.0,-9.0,-9.0,3,6000.0,1061242,0.0,22806.0,2146.0 +1924469,1924469,1946826,1,19.0,3.0,-9.0,-9.0,3,3500.0,1070673,0.0,22808.0,2147.0 +1924474,1924474,1946831,1,19.0,3.0,-9.0,-9.0,3,30000.0,1035838,0.0,22808.0,2147.0 +1924475,1924475,1946832,1,19.0,3.0,-9.0,-9.0,3,75500.0,1013097,0.0,22815.0,2150.0 +1924476,1924476,1946833,1,19.0,3.0,-9.0,-9.0,3,35000.0,1070673,0.0,22808.0,2147.0 +1924487,1924487,1946844,1,19.0,3.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1924491,1924491,1946848,1,19.0,3.0,-9.0,-9.0,3,10400.0,1070673,0.0,22765.0,2130.0 +1924493,1924493,1946850,1,19.0,3.0,-9.0,-9.0,3,30000.0,1035838,0.0,22808.0,2147.0 +1924497,1924497,1946854,1,19.0,3.0,-9.0,-9.0,3,7000.0,1061242,0.0,22808.0,2147.0 +1924504,1924504,1946861,1,19.0,3.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1924505,1924505,1946862,1,19.0,3.0,-9.0,-9.0,3,13600.0,1070673,0.0,22808.0,2147.0 +1924506,1924506,1946863,1,19.0,3.0,-9.0,-9.0,3,22500.0,1013097,0.0,22808.0,2147.0 +1924510,1924510,1946867,1,19.0,3.0,-9.0,-9.0,3,30000.0,1035838,0.0,22808.0,2147.0 +1924511,1924511,1946868,1,19.0,3.0,-9.0,-9.0,3,13600.0,1070673,0.0,22806.0,2146.0 +1924512,1924512,1946869,1,19.0,3.0,-9.0,-9.0,3,44200.0,1035838,0.0,22808.0,2147.0 +1924513,1924513,1946870,1,19.0,3.0,-9.0,-9.0,3,5000.0,1061242,0.0,22810.0,2148.0 +1924518,1924518,1946875,1,19.0,3.0,-9.0,-9.0,3,66600.0,1035838,0.0,22813.0,2150.0 +1924520,1924520,1946877,1,19.0,3.0,-9.0,-9.0,3,22500.0,1013097,0.0,22806.0,2146.0 +1924521,1924521,1946878,1,19.0,3.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1924527,1924527,1946884,1,19.0,3.0,-9.0,-9.0,3,13600.0,1070673,0.0,22808.0,2147.0 +1924531,1924531,1946888,1,19.0,3.0,-9.0,-9.0,3,0.0,1013097,0.0,22765.0,2130.0 +1924536,1924536,1946893,1,19.0,3.0,-9.0,-9.0,3,5000.0,1013097,0.0,22808.0,2147.0 +1924541,1924541,1946898,1,19.0,3.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1924544,1924544,1946901,1,19.0,3.0,-9.0,-9.0,3,9500.0,1013097,0.0,22808.0,2147.0 +1924545,1924545,1946902,1,19.0,3.0,-9.0,-9.0,3,5000.0,1061242,0.0,22808.0,2147.0 +1924556,1924556,1946913,1,19.0,3.0,-9.0,-9.0,3,28000.0,1061242,0.0,22808.0,2147.0 +1924559,1924559,1946916,1,19.0,3.0,-9.0,-9.0,3,35330.0,1013097,0.0,22806.0,2146.0 +1924565,1924565,1946922,1,19.0,3.0,-9.0,-9.0,3,7000.0,1061242,0.0,22808.0,2147.0 +1924566,1924566,1946923,1,19.0,3.0,-9.0,-9.0,3,27500.0,1035838,0.0,22806.0,2146.0 +1924573,1924573,1946930,1,19.0,3.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1924576,1924576,1946933,1,19.0,3.0,-9.0,-9.0,3,600.0,1054346,0.0,22806.0,2146.0 +1924577,1924577,1946934,1,19.0,3.0,-9.0,-9.0,3,18330.0,1070673,0.0,22808.0,2147.0 +1924581,1924581,1946938,1,19.0,3.0,-9.0,-9.0,3,12000.0,1013097,0.0,22808.0,2147.0 +1924583,1924583,1946940,1,19.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1924586,1924586,1946943,1,19.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22808.0,2147.0 +1924587,1924587,1946944,1,19.0,2.0,-9.0,-9.0,3,37000.0,1013097,0.0,22808.0,2147.0 +1924588,1924588,1946945,1,19.0,4.0,-9.0,-9.0,3,3500.0,1013097,0.0,22808.0,2147.0 +1924589,1924589,1946946,1,19.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1924593,1924593,1946950,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22765.0,2130.0 +1924594,1924594,1946951,1,19.0,4.0,-9.0,-9.0,3,17000.0,1013097,0.0,22808.0,2147.0 +1924598,1924598,1946955,1,19.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22808.0,2147.0 +1924608,1924608,1946965,1,19.0,2.0,-9.0,-9.0,3,4850.0,1035838,0.0,22808.0,2147.0 +1924611,1924611,1946968,1,19.0,3.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1924612,1924612,1946969,1,19.0,4.0,-9.0,-9.0,3,18000.0,1070673,0.0,22806.0,2146.0 +1924616,1924616,1946973,1,19.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22808.0,2147.0 +1924618,1924618,1946975,1,19.0,1.0,-9.0,-9.0,3,26500.0,1070673,0.0,22808.0,2147.0 +1924620,1924620,1946977,1,19.0,4.0,-9.0,-9.0,3,22400.0,1070673,0.0,22808.0,2147.0 +1924622,1924622,1946979,1,19.0,4.0,-9.0,-9.0,3,40800.0,1061242,0.0,22765.0,2130.0 +1924625,1924625,1946982,1,19.0,3.0,-9.0,-9.0,3,5000.0,1061242,0.0,22808.0,2147.0 +1924626,1924626,1946983,1,19.0,4.0,-9.0,-9.0,3,7610.0,1061242,0.0,22760.0,2128.0 +1924628,1924628,1946985,1,19.0,3.0,-9.0,-9.0,3,9890.0,1035838,0.0,22808.0,2147.0 +1924629,1924629,1946986,1,19.0,1.0,-9.0,-9.0,3,36900.0,1013097,0.0,22806.0,2146.0 +1924631,1924631,1946988,1,19.0,1.0,-9.0,-9.0,3,13000.0,1070673,0.0,22806.0,2146.0 +1924633,1924633,1946990,1,19.0,1.0,-9.0,-9.0,3,2100.0,1054346,0.0,22815.0,2150.0 +1924641,1924641,1946998,1,19.0,1.0,-9.0,-9.0,3,28600.0,1013097,0.0,22808.0,2147.0 +1924646,1924646,1947003,1,19.0,1.0,-9.0,-9.0,3,6000.0,1070673,0.0,22808.0,2147.0 +1924653,1924653,1947010,1,19.0,3.0,-9.0,-9.0,3,13600.0,1070673,0.0,22808.0,2147.0 +1924654,1924654,1947011,1,19.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1924655,1924655,1947012,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1924659,1924659,1947016,1,19.0,1.0,-9.0,-9.0,3,67100.0,1054346,0.0,22808.0,2147.0 +1924661,1924661,1947018,1,19.0,1.0,-9.0,-9.0,3,29500.0,1054346,0.0,22808.0,2147.0 +1924663,1924663,1947020,1,19.0,4.0,-9.0,-9.0,3,29300.0,1035838,0.0,22758.0,2127.0 +1924666,1924666,1947023,1,19.0,1.0,-9.0,-9.0,3,6000.0,1070673,0.0,22808.0,2147.0 +1924668,1924668,1947025,1,19.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22815.0,2150.0 +1924669,1924669,1947026,1,19.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22808.0,2147.0 +1924670,1924670,1947027,1,19.0,4.0,-9.0,-9.0,3,5600.0,1013097,0.0,22765.0,2130.0 +1924674,1924674,1947031,1,19.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1924678,1924678,1947035,1,19.0,1.0,-9.0,-9.0,3,5320.0,1054346,0.0,22808.0,2147.0 +1924681,1924681,1947038,1,19.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22765.0,2130.0 +1924682,1924682,1947039,1,19.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22808.0,2147.0 +1924689,1924689,1947046,1,19.0,1.0,-9.0,-9.0,3,4500.0,1054346,0.0,22760.0,2128.0 +1924692,1924692,1947049,1,19.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22808.0,2147.0 +1924693,1924693,1947050,1,19.0,1.0,-9.0,-9.0,3,20000.0,1061242,0.0,22808.0,2147.0 +1924695,1924695,1947052,1,19.0,2.0,-9.0,-9.0,3,26000.0,1070673,0.0,22808.0,2147.0 +1924698,1924698,1947055,1,19.0,1.0,-9.0,-9.0,3,7000.0,1013097,0.0,22808.0,2147.0 +1924699,1924699,1947056,1,19.0,3.0,-9.0,-9.0,3,13600.0,1070673,0.0,22808.0,2147.0 +1924703,1924703,1947060,1,19.0,1.0,-9.0,-9.0,3,15000.0,1054346,0.0,22808.0,2147.0 +1924704,1924704,1947061,1,19.0,1.0,-9.0,-9.0,3,9000.0,1035838,0.0,22808.0,2147.0 +1924705,1924705,1947062,1,19.0,4.0,-9.0,-9.0,3,26600.0,1054346,0.0,22808.0,2147.0 +1924710,1924710,1947067,1,19.0,1.0,-9.0,-9.0,3,66000.0,1070673,0.0,22810.0,2148.0 +1924712,1924712,1947069,1,19.0,1.0,-9.0,-9.0,3,65200.0,1070673,0.0,22765.0,2130.0 +1924713,1924713,1947070,1,19.0,1.0,-9.0,-9.0,3,11000.0,1013097,0.0,22765.0,2130.0 +1924734,1924734,1947091,1,19.0,4.0,-9.0,-9.0,3,30000.0,1070673,0.0,22806.0,2146.0 +1924736,1924736,1947093,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1924738,1924738,1947095,1,19.0,1.0,-9.0,-9.0,3,27600.0,1061242,0.0,22808.0,2147.0 +1924739,1924739,1947096,1,19.0,3.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1924747,1924747,1947104,1,19.0,3.0,-9.0,-9.0,3,3500.0,1070673,0.0,22806.0,2146.0 +1924752,1924752,1947109,1,19.0,1.0,-9.0,-9.0,3,5000.0,1013097,0.0,22765.0,2130.0 +1924754,1924754,1947111,1,19.0,1.0,-9.0,-9.0,3,39500.0,1054346,0.0,22808.0,2147.0 +1924760,1924760,1947117,1,19.0,1.0,-9.0,-9.0,3,34000.0,1070673,0.0,22806.0,2146.0 +1924763,1924763,1947120,1,19.0,1.0,-9.0,-9.0,3,2200.0,1061242,0.0,22808.0,2147.0 +1924771,1924771,1947128,1,19.0,1.0,-9.0,-9.0,3,34700.0,1061242,0.0,22808.0,2147.0 +1924774,1924774,1947131,1,19.0,4.0,-9.0,-9.0,3,31500.0,1013097,0.0,22808.0,2147.0 +1924775,1924775,1947132,1,19.0,1.0,-9.0,-9.0,3,4000.0,1035838,0.0,22765.0,2130.0 +1924777,1924777,1947134,1,19.0,3.0,-9.0,-9.0,3,6000.0,1061242,0.0,22808.0,2147.0 +1924778,1924778,1947135,1,19.0,1.0,-9.0,-9.0,3,250.0,1061242,0.0,22808.0,2147.0 +1924779,1924779,1947136,1,19.0,3.0,-9.0,-9.0,3,10400.0,1070673,0.0,22765.0,2130.0 +1924787,1924787,1947144,1,19.0,1.0,-9.0,-9.0,3,65500.0,1035838,0.0,22806.0,2146.0 +1924788,1924788,1947145,1,19.0,4.0,-9.0,-9.0,3,18100.0,1035838,0.0,22808.0,2147.0 +1924793,1924793,1947150,1,19.0,1.0,-9.0,-9.0,3,32000.0,1054346,0.0,22808.0,2147.0 +1924794,1924794,1947151,1,19.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22806.0,2146.0 +1924796,1924796,1947153,1,19.0,1.0,-9.0,-9.0,3,3000.0,1054346,0.0,22765.0,2130.0 +1924797,1924797,1947154,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1924800,1924800,1947157,1,19.0,1.0,-9.0,-9.0,3,64000.0,1054346,0.0,22815.0,2150.0 +1924801,1924801,1947158,1,19.0,1.0,-9.0,-9.0,3,5000.0,1013097,0.0,22808.0,2147.0 +1924806,1924806,1947163,1,19.0,1.0,-9.0,-9.0,3,30000.0,1054346,0.0,22806.0,2146.0 +1924807,1924807,1947164,1,19.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1924813,1924813,1947170,1,19.0,1.0,-9.0,-9.0,3,31100.0,1013097,0.0,22758.0,2127.0 +1924817,1924817,1947174,1,19.0,2.0,-9.0,-9.0,3,10600.0,1061242,0.0,22808.0,2147.0 +1924819,1924819,1947176,1,19.0,1.0,-9.0,-9.0,3,7000.0,1013097,0.0,22806.0,2146.0 +1924820,1924820,1947177,1,19.0,1.0,-9.0,-9.0,3,6000.0,1054346,0.0,22806.0,2146.0 +1924823,1924823,1947180,1,19.0,1.0,-9.0,-9.0,3,31500.0,1054346,0.0,22808.0,2147.0 +1924824,1924824,1947181,1,19.0,4.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1924826,1924826,1947183,1,19.0,1.0,-9.0,-9.0,3,67000.0,1061242,0.0,22808.0,2147.0 +1924827,1924827,1947184,1,19.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22806.0,2146.0 +1924829,1924829,1947186,1,19.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22808.0,2147.0 +1924830,1924830,1947187,1,19.0,1.0,-9.0,-9.0,3,3600.0,1035838,0.0,22808.0,2147.0 +1924836,1924836,1947193,1,19.0,4.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1924839,1924839,1947196,1,19.0,4.0,-9.0,-9.0,3,30000.0,1070673,0.0,22808.0,2147.0 +1924840,1924840,1947197,1,19.0,4.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1924841,1924841,1947198,1,19.0,1.0,-9.0,-9.0,3,6000.0,1061242,0.0,22760.0,2128.0 +1924842,1924842,1947199,1,19.0,1.0,-9.0,-9.0,3,1900.0,1013097,0.0,22808.0,2147.0 +1924843,1924843,1947200,1,19.0,4.0,-9.0,-9.0,3,18000.0,1070673,0.0,22810.0,2148.0 +1924845,1924845,1947202,1,19.0,2.0,-9.0,-9.0,3,36000.0,1013097,0.0,22808.0,2147.0 +1924847,1924847,1947204,1,19.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22808.0,2147.0 +1924850,1924850,1947207,1,19.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22808.0,2147.0 +1924852,1924852,1947209,1,19.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22806.0,2146.0 +1924853,1924853,1947210,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1924854,1924854,1947211,1,19.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22806.0,2146.0 +1924858,1924858,1947215,1,19.0,1.0,-9.0,-9.0,3,13150.0,1061242,0.0,22806.0,2146.0 +1924861,1924861,1947218,1,19.0,4.0,-9.0,-9.0,3,14000.0,1013097,0.0,22806.0,2146.0 +1924866,1924866,1947223,1,19.0,1.0,-9.0,-9.0,3,30400.0,1035838,0.0,22808.0,2147.0 +1924867,1924867,1947224,1,19.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22806.0,2146.0 +1924868,1924868,1947225,1,19.0,4.0,-9.0,-9.0,3,9000.0,1035838,0.0,22808.0,2147.0 +1924876,1924876,1947233,1,19.0,1.0,-9.0,-9.0,3,10000.0,1070673,0.0,22813.0,2150.0 +1924882,1924882,1947239,1,19.0,4.0,-9.0,-9.0,3,18000.0,1054346,0.0,22808.0,2147.0 +1924883,1924883,1947240,1,19.0,1.0,-9.0,-9.0,3,27600.0,1061242,0.0,22810.0,2148.0 +1924884,1924884,1947241,1,19.0,1.0,-9.0,-9.0,3,28800.0,1035838,0.0,22806.0,2146.0 +1924887,1924887,1947244,1,19.0,1.0,-9.0,-9.0,3,3200.0,1054346,0.0,22808.0,2147.0 +1924888,1924888,1947245,1,19.0,3.0,-9.0,-9.0,3,9500.0,1013097,0.0,22760.0,2128.0 +1924892,1924892,1947249,1,19.0,3.0,-9.0,-9.0,3,27000.0,1054346,0.0,22808.0,2147.0 +1924899,1924899,1947256,1,19.0,1.0,-9.0,-9.0,3,70500.0,1054346,0.0,22806.0,2146.0 +1924908,1924908,1947265,1,19.0,1.0,-9.0,-9.0,3,29500.0,1035838,0.0,22808.0,2147.0 +1924909,1924909,1947266,1,19.0,1.0,-9.0,-9.0,3,21100.0,1070673,0.0,22806.0,2146.0 +1924910,1924910,1947267,1,19.0,1.0,-9.0,-9.0,3,4500.0,1035838,0.0,22765.0,2130.0 +1924911,1924911,1947268,1,19.0,1.0,-9.0,-9.0,3,76000.0,1013097,0.0,22808.0,2147.0 +1924912,1924912,1947269,1,19.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22808.0,2147.0 +1924916,1924916,1947273,1,19.0,1.0,-9.0,-9.0,3,22000.0,1061242,0.0,22808.0,2147.0 +1924923,1924923,1947280,1,19.0,1.0,-9.0,-9.0,3,530.0,1035838,0.0,22808.0,2147.0 +1924924,1924924,1947281,1,19.0,1.0,-9.0,-9.0,3,990.0,1070673,0.0,22765.0,2130.0 +1924927,1924927,1947284,1,19.0,1.0,-9.0,-9.0,3,89000.0,1054346,0.0,22765.0,2130.0 +1924930,1924930,1947287,1,19.0,1.0,-9.0,-9.0,3,52000.0,1013097,0.0,22808.0,2147.0 +1924932,1924932,1947289,1,19.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22808.0,2147.0 +1924933,1924933,1947290,1,19.0,4.0,-9.0,-9.0,3,65000.0,1070673,0.0,22808.0,2147.0 +1924939,1924939,1947296,1,19.0,1.0,-9.0,-9.0,3,530.0,1035838,0.0,22808.0,2147.0 +1924940,1924940,1947297,1,19.0,3.0,-9.0,-9.0,3,22000.0,1013097,0.0,22808.0,2147.0 +1924944,1924944,1947301,1,19.0,1.0,-9.0,-9.0,3,24700.0,1013097,0.0,22808.0,2147.0 +1924946,1924946,1947303,1,19.0,4.0,-9.0,-9.0,3,30800.0,1035838,0.0,22765.0,2130.0 +1924947,1924947,1947304,1,19.0,1.0,-9.0,-9.0,3,41600.0,1061242,0.0,22758.0,2127.0 +1924951,1924951,1947308,1,19.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22808.0,2147.0 +1924952,1924952,1947309,1,19.0,1.0,-9.0,-9.0,3,31000.0,1061242,0.0,22808.0,2147.0 +1924954,1924954,1947311,1,19.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22806.0,2146.0 +1924955,1924955,1947312,1,19.0,4.0,-9.0,-9.0,3,68000.0,1054346,0.0,22806.0,2146.0 +1924961,1924961,1947318,1,19.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22808.0,2147.0 +1924962,1924962,1947319,1,19.0,4.0,-9.0,-9.0,3,30000.0,1070673,0.0,22808.0,2147.0 +1924964,1924964,1947321,1,19.0,1.0,-9.0,-9.0,3,37500.0,1013097,0.0,22808.0,2147.0 +1924965,1924965,1947322,1,19.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22808.0,2147.0 +1924971,1924971,1947328,1,19.0,4.0,-9.0,-9.0,3,3500.0,1013097,0.0,22765.0,2130.0 +1924972,1924972,1947329,1,19.0,3.0,-9.0,-9.0,3,24000.0,1054346,0.0,22808.0,2147.0 +1924980,1924980,1947337,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1924981,1924981,1947338,1,19.0,1.0,-9.0,-9.0,3,32200.0,1070673,0.0,22808.0,2147.0 +1924986,1924986,1947343,1,19.0,2.0,-9.0,-9.0,3,22000.0,1061242,0.0,22806.0,2146.0 +1925007,1925007,1947364,1,19.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1925008,1925008,1947365,1,19.0,4.0,-9.0,-9.0,3,15000.0,1054346,0.0,22808.0,2147.0 +1925015,1925015,1947372,1,19.0,2.0,-9.0,-9.0,3,10700.0,1070673,0.0,22808.0,2147.0 +1925016,1925016,1947373,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1925019,1925019,1947376,1,19.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1925022,1925022,1947379,1,19.0,1.0,-9.0,-9.0,3,7600.0,1013097,0.0,22808.0,2147.0 +1925023,1925023,1947380,1,19.0,1.0,-9.0,-9.0,3,27000.0,1054346,0.0,22765.0,2130.0 +1925024,1925024,1947381,1,19.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22806.0,2146.0 +1925028,1925028,1947385,1,19.0,4.0,-9.0,-9.0,3,75000.0,1013097,0.0,22765.0,2130.0 +1925044,1925044,1947401,1,19.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22808.0,2147.0 +1925049,1925049,1947406,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1925053,1925053,1947410,1,19.0,1.0,-9.0,-9.0,3,2500.0,1013097,0.0,22815.0,2150.0 +1925058,1925058,1947415,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1925062,1925062,1947419,1,19.0,4.0,-9.0,-9.0,3,65000.0,1070673,0.0,22815.0,2150.0 +1925063,1925063,1947420,1,19.0,1.0,-9.0,-9.0,3,3000.0,1013097,0.0,22806.0,2146.0 +1925076,1925076,1947433,1,19.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22813.0,2150.0 +1925083,1925083,1947440,1,19.0,2.0,-9.0,-9.0,3,65010.0,1054346,0.0,22814.0,2150.0 +1925095,1925095,1947452,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1925097,1925097,1947454,1,19.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1925098,1925098,1947455,1,19.0,4.0,-9.0,-9.0,3,15000.0,1054346,0.0,22808.0,2147.0 +1925101,1925101,1947458,1,19.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22758.0,2127.0 +1925104,1925104,1947461,1,19.0,1.0,-9.0,-9.0,3,20480.0,1035838,0.0,22765.0,2130.0 +1925106,1925106,1947463,1,19.0,1.0,-9.0,-9.0,3,21000.0,1035838,0.0,22815.0,2150.0 +1925109,1925109,1947466,1,19.0,1.0,-9.0,-9.0,3,1000.0,1070673,0.0,22808.0,2147.0 +1925111,1925111,1947468,1,19.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22808.0,2147.0 +1925113,1925113,1947470,1,19.0,1.0,-9.0,-9.0,3,18900.0,1061242,0.0,22808.0,2147.0 +1925116,1925116,1947473,1,19.0,1.0,-9.0,-9.0,3,2400.0,1061242,0.0,22806.0,2146.0 +1925121,1925121,1947478,1,19.0,1.0,-9.0,-9.0,3,72000.0,1054346,0.0,22808.0,2147.0 +1925125,1925125,1947482,1,19.0,2.0,-9.0,-9.0,3,9800.0,1035838,0.0,22765.0,2130.0 +1925128,1925128,1947485,1,19.0,4.0,-9.0,-9.0,3,2650.0,1061242,0.0,22818.0,2150.0 +1925130,1925130,1947487,1,19.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1925134,1925134,1947491,1,19.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1925136,1925136,1947493,1,19.0,1.0,-9.0,-9.0,3,15800.0,1054346,0.0,22808.0,2147.0 +1925138,1925138,1947495,1,19.0,1.0,-9.0,-9.0,3,76000.0,1061242,0.0,22808.0,2147.0 +1925142,1925142,1947499,1,19.0,1.0,-9.0,-9.0,3,10400.0,1035838,0.0,22765.0,2130.0 +1925144,1925144,1947501,1,19.0,1.0,-9.0,-9.0,3,12500.0,1013097,0.0,22808.0,2147.0 +1925146,1925146,1947503,1,19.0,1.0,-9.0,-9.0,3,14000.0,1013097,0.0,22765.0,2130.0 +1925151,1925151,1947508,1,19.0,3.0,-9.0,-9.0,3,220.0,1054346,0.0,22808.0,2147.0 +1925153,1925153,1947510,1,19.0,1.0,-9.0,-9.0,3,31300.0,1061242,0.0,22808.0,2147.0 +1925158,1925158,1947515,1,19.0,1.0,-9.0,-9.0,3,7000.0,1013097,0.0,22808.0,2147.0 +1925159,1925159,1947516,1,19.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1925164,1925164,1947521,1,19.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22808.0,2147.0 +1925170,1925170,1947527,1,19.0,3.0,-9.0,-9.0,3,23700.0,1061242,0.0,22808.0,2147.0 +1925171,1925171,1947528,1,19.0,1.0,-9.0,-9.0,3,64130.0,1061242,0.0,22808.0,2147.0 +1925174,1925174,1947531,1,19.0,4.0,-9.0,-9.0,3,15000.0,1054346,0.0,22808.0,2147.0 +1925179,1925179,1947536,1,19.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22808.0,2147.0 +1925185,1925185,1947542,1,19.0,1.0,-9.0,-9.0,3,35540.0,1035838,0.0,22808.0,2147.0 +1925186,1925186,1947543,1,19.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22765.0,2130.0 +1925190,1925190,1947547,1,19.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1925192,1925192,1947549,1,19.0,2.0,-9.0,-9.0,3,400.0,1070673,0.0,22808.0,2147.0 +1925193,1925193,1947550,1,19.0,1.0,-9.0,-9.0,3,67150.0,1035838,0.0,22808.0,2147.0 +1925196,1925196,1947553,1,19.0,1.0,-9.0,-9.0,3,1400.0,1061242,0.0,22808.0,2147.0 +1925197,1925197,1947554,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1925201,1925201,1947558,1,20.0,1.0,-9.0,-9.0,3,28200.0,1054346,0.0,22808.0,2147.0 +1925202,1925202,1947559,1,20.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22808.0,2147.0 +1925212,1925212,1947569,1,20.0,1.0,-9.0,-9.0,3,21000.0,1035838,0.0,22808.0,2147.0 +1925216,1925216,1947573,1,20.0,1.0,-9.0,-9.0,3,28000.0,1061242,0.0,22813.0,2150.0 +1925217,1925217,1947574,1,20.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22765.0,2130.0 +1925222,1925222,1947579,1,20.0,1.0,-9.0,-9.0,3,26100.0,1070673,0.0,22808.0,2147.0 +1925225,1925225,1947582,1,20.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22806.0,2146.0 +1925229,1925229,1947586,1,20.0,1.0,-9.0,-9.0,3,91000.0,1013097,0.0,22815.0,2150.0 +1925232,1925232,1947589,1,20.0,1.0,-9.0,-9.0,3,69100.0,1035838,0.0,22765.0,2130.0 +1925233,1925233,1947590,1,20.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1925234,1925234,1947591,1,20.0,1.0,-9.0,-9.0,3,18020.0,1013097,0.0,22808.0,2147.0 +1925235,1925235,1947592,1,20.0,1.0,-9.0,-9.0,3,28600.0,1070673,0.0,22808.0,2147.0 +1925236,1925236,1947593,1,20.0,1.0,-9.0,-9.0,3,76000.0,1061242,0.0,22808.0,2147.0 +1925237,1925237,1947594,1,20.0,1.0,-9.0,-9.0,3,10820.0,1061242,0.0,22765.0,2130.0 +1925238,1925238,1947595,1,20.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22806.0,2146.0 +1925239,1925239,1947596,1,20.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22806.0,2146.0 +1925243,1925243,1947600,1,20.0,1.0,-9.0,-9.0,3,2300.0,1013097,0.0,22806.0,2146.0 +1925246,1925246,1947603,1,20.0,1.0,-9.0,-9.0,3,8200.0,1070673,0.0,22808.0,2147.0 +1925248,1925248,1947605,1,20.0,1.0,-9.0,-9.0,3,6400.0,1070673,0.0,22808.0,2147.0 +1925249,1925249,1947606,1,20.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22813.0,2150.0 +1925251,1925251,1947608,1,20.0,1.0,-9.0,-9.0,3,16700.0,1013097,0.0,22808.0,2147.0 +1925252,1925252,1947609,1,20.0,1.0,-9.0,-9.0,3,66300.0,1061242,0.0,22808.0,2147.0 +1925257,1925257,1947614,1,20.0,1.0,-9.0,-9.0,3,7000.0,1054346,0.0,22765.0,2130.0 +1925260,1925260,1947617,1,20.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22806.0,2146.0 +1925261,1925261,1947618,1,20.0,1.0,-9.0,-9.0,3,10200.0,1061242,0.0,22808.0,2147.0 +1925263,1925263,1947620,1,20.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22808.0,2147.0 +1925265,1925265,1947622,1,20.0,1.0,-9.0,-9.0,3,62780.0,1070673,0.0,22758.0,2127.0 +1925269,1925269,1947626,1,20.0,1.0,-9.0,-9.0,3,34000.0,1054346,0.0,22806.0,2146.0 +1925274,1925274,1947631,1,20.0,1.0,-9.0,-9.0,3,24400.0,1070673,0.0,22808.0,2147.0 +1925277,1925277,1947634,1,20.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22806.0,2146.0 +1925278,1925278,1947635,1,20.0,1.0,-9.0,-9.0,3,26500.0,1054346,0.0,22808.0,2147.0 +1925280,1925280,1947637,1,20.0,1.0,-9.0,-9.0,3,69400.0,1035838,0.0,22806.0,2146.0 +1925284,1925284,1947641,1,20.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1925287,1925287,1947644,1,20.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22808.0,2147.0 +1925288,1925288,1947645,1,20.0,1.0,-9.0,-9.0,3,10900.0,1013097,0.0,22808.0,2147.0 +1925290,1925290,1947647,1,20.0,1.0,-9.0,-9.0,3,67400.0,1061242,0.0,22765.0,2130.0 +1925292,1925292,1947649,1,20.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22765.0,2130.0 +1925296,1925296,1947653,1,20.0,1.0,-9.0,-9.0,3,41500.0,1070673,0.0,22765.0,2130.0 +1925297,1925297,1947654,1,20.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22765.0,2130.0 +1925298,1925298,1947655,1,20.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22814.0,2150.0 +1925299,1925299,1947656,1,20.0,1.0,-9.0,-9.0,3,17500.0,1054346,0.0,22808.0,2147.0 +1925300,1925300,1947657,1,20.0,1.0,-9.0,-9.0,3,10000.0,1035838,0.0,22806.0,2146.0 +1925302,1925302,1947659,1,20.0,1.0,-9.0,-9.0,3,4300.0,1070673,0.0,22808.0,2147.0 +1925304,1925304,1947661,1,20.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22810.0,2148.0 +1925306,1925306,1947663,1,20.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22765.0,2130.0 +1925308,1925308,1947665,1,20.0,1.0,-9.0,-9.0,3,24000.0,1070673,0.0,22808.0,2147.0 +1925309,1925309,1947666,1,20.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22765.0,2130.0 +1925314,1925314,1947671,1,20.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22808.0,2147.0 +1925318,1925318,1947675,1,20.0,1.0,-9.0,-9.0,3,26500.0,1054346,0.0,22808.0,2147.0 +1925322,1925322,1947679,1,20.0,1.0,-9.0,-9.0,3,30500.0,1035838,0.0,22808.0,2147.0 +1925324,1925324,1947681,1,20.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22806.0,2146.0 +1925327,1925327,1947684,1,20.0,1.0,-9.0,-9.0,3,8500.0,1070673,0.0,22765.0,2130.0 +1925328,1925328,1947685,1,20.0,1.0,-9.0,-9.0,3,31200.0,1070673,0.0,22808.0,2147.0 +1925331,1925331,1947688,1,20.0,1.0,-9.0,-9.0,3,65200.0,1070673,0.0,22806.0,2146.0 +1925339,1925339,1947696,1,20.0,1.0,-9.0,-9.0,3,12100.0,1013097,0.0,22765.0,2130.0 +1925341,1925341,1947698,1,20.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22808.0,2147.0 +1925343,1925343,1947700,1,20.0,1.0,-9.0,-9.0,3,16530.0,1070673,0.0,22808.0,2147.0 +1925347,1925347,1947704,1,20.0,1.0,-9.0,-9.0,3,31000.0,1061242,0.0,22808.0,2147.0 +1925348,1925348,1947705,1,20.0,1.0,-9.0,-9.0,3,73000.0,1013097,0.0,22806.0,2146.0 +1925355,1925355,1947712,1,20.0,1.0,-9.0,-9.0,3,1000.0,1070673,0.0,22806.0,2146.0 +1925356,1925356,1947713,1,20.0,1.0,-9.0,-9.0,3,12500.0,1035838,0.0,22808.0,2147.0 +1925357,1925357,1947714,1,20.0,1.0,-9.0,-9.0,3,29000.0,1061242,0.0,22808.0,2147.0 +1925362,1925362,1947719,1,20.0,1.0,-9.0,-9.0,3,14400.0,1035838,0.0,22808.0,2147.0 +1925368,1925368,1947725,1,20.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22808.0,2147.0 +1925371,1925371,1947728,1,20.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22806.0,2146.0 +1925376,1925376,1947733,1,20.0,1.0,-9.0,-9.0,3,4950.0,1054346,0.0,22806.0,2146.0 +1925384,1925384,1947741,1,20.0,1.0,-9.0,-9.0,3,4300.0,1061242,0.0,22808.0,2147.0 +1925385,1925385,1947742,1,20.0,1.0,-9.0,-9.0,3,77900.0,1013097,0.0,22806.0,2146.0 +1925390,1925390,1947747,1,20.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22815.0,2150.0 +1925395,1925395,1947752,1,20.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1925396,1925396,1947753,1,20.0,1.0,-9.0,-9.0,3,64300.0,1035838,0.0,22806.0,2146.0 +1925397,1925397,1947754,1,20.0,1.0,-9.0,-9.0,3,10600.0,1054346,0.0,22806.0,2146.0 +1925398,1925398,1947755,1,20.0,1.0,-9.0,-9.0,3,26800.0,1061242,0.0,22808.0,2147.0 +1925408,1925408,1947765,1,20.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22808.0,2147.0 +1925420,1925420,1947777,1,20.0,1.0,-9.0,-9.0,3,43000.0,1061242,0.0,22765.0,2130.0 +1925423,1925423,1947780,1,20.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22808.0,2147.0 +1925424,1925424,1947781,1,20.0,1.0,-9.0,-9.0,3,35000.0,1070673,0.0,22808.0,2147.0 +1925425,1925425,1947782,1,20.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22808.0,2147.0 +1925427,1925427,1947784,1,20.0,1.0,-9.0,-9.0,3,43000.0,1054346,0.0,22808.0,2147.0 +1925431,1925431,1947788,1,20.0,1.0,-9.0,-9.0,3,34500.0,1054346,0.0,22806.0,2146.0 +1925442,1925442,1947799,1,20.0,1.0,-9.0,-9.0,3,26500.0,1061242,0.0,22808.0,2147.0 +1925444,1925444,1947801,1,20.0,1.0,-9.0,-9.0,3,74300.0,1013097,0.0,22806.0,2146.0 +1925445,1925445,1947802,1,20.0,1.0,-9.0,-9.0,3,6400.0,1070673,0.0,22808.0,2147.0 +1925453,1925453,1947810,1,20.0,1.0,-9.0,-9.0,3,28200.0,1054346,0.0,22808.0,2147.0 +1925461,1925461,1947818,1,20.0,1.0,-9.0,-9.0,3,15500.0,1061242,0.0,22813.0,2150.0 +1925462,1925462,1947819,1,20.0,1.0,-9.0,-9.0,3,18020.0,1013097,0.0,22808.0,2147.0 +1925463,1925463,1947820,1,20.0,1.0,-9.0,-9.0,3,46000.0,1061242,0.0,22808.0,2147.0 +1925464,1925464,1947821,1,20.0,1.0,-9.0,-9.0,3,29500.0,1054346,0.0,22765.0,2130.0 +1925465,1925465,1947822,1,20.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1925467,1925467,1947824,1,20.0,1.0,-9.0,-9.0,3,22380.0,1061242,0.0,22808.0,2147.0 +1925472,1925472,1947829,1,20.0,1.0,-9.0,-9.0,3,5500.0,1035838,0.0,22808.0,2147.0 +1925476,1925476,1947833,1,20.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22765.0,2130.0 +1925477,1925477,1947834,1,20.0,1.0,-9.0,-9.0,3,670.0,1035838,0.0,22808.0,2147.0 +1925479,1925479,1947836,1,20.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1925480,1925480,1947837,1,20.0,1.0,-9.0,-9.0,3,2500.0,1070673,0.0,22810.0,2148.0 +1925484,1925484,1947841,1,20.0,1.0,-9.0,-9.0,3,91000.0,1013097,0.0,22808.0,2147.0 +1925485,1925485,1947842,1,20.0,1.0,-9.0,-9.0,3,10000.0,1013097,0.0,22806.0,2146.0 +1925486,1925486,1947843,1,20.0,1.0,-9.0,-9.0,3,25300.0,1061242,0.0,22808.0,2147.0 +1925488,1925488,1947845,1,20.0,1.0,-9.0,-9.0,3,67150.0,1035838,0.0,22765.0,2130.0 +1925489,1925489,1947846,1,20.0,1.0,-9.0,-9.0,3,40500.0,1013097,0.0,22808.0,2147.0 +1925492,1925492,1947849,1,20.0,1.0,-9.0,-9.0,3,14000.0,1035838,0.0,22808.0,2147.0 +1925494,1925494,1947851,1,20.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22808.0,2147.0 +1925495,1925495,1947852,1,20.0,1.0,-9.0,-9.0,3,75000.0,1013097,0.0,22808.0,2147.0 +1925497,1925497,1947854,1,20.0,1.0,-9.0,-9.0,3,1000.0,1054346,0.0,22758.0,2127.0 +1925500,1925500,1947857,1,20.0,1.0,-9.0,-9.0,3,21100.0,1070673,0.0,22808.0,2147.0 +1925505,1925505,1947862,1,20.0,1.0,-9.0,-9.0,3,22100.0,1054346,0.0,22808.0,2147.0 +1925508,1925508,1947865,1,20.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22808.0,2147.0 +1925512,1925512,1947869,1,20.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22814.0,2150.0 +1925513,1925513,1947870,1,20.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1925515,1925515,1947872,1,20.0,1.0,-9.0,-9.0,3,5300.0,1013097,0.0,22806.0,2146.0 +1925516,1925516,1947873,1,20.0,1.0,-9.0,-9.0,3,42500.0,1035838,0.0,22765.0,2130.0 +1925522,1925522,1947879,1,20.0,2.0,-9.0,-9.0,3,15000.0,1054346,0.0,22814.0,2150.0 +1925524,1925524,1947881,1,20.0,2.0,-9.0,-9.0,3,31000.0,1035838,0.0,22808.0,2147.0 +1925528,1925528,1947885,1,20.0,2.0,-9.0,-9.0,3,26400.0,1054346,0.0,22808.0,2147.0 +1925533,1925533,1947890,1,20.0,2.0,-9.0,-9.0,3,65000.0,1070673,0.0,22808.0,2147.0 +1925535,1925535,1947892,1,20.0,2.0,-9.0,-9.0,3,520.0,1070673,0.0,22808.0,2147.0 +1925536,1925536,1947893,1,20.0,2.0,-9.0,-9.0,3,37000.0,1013097,0.0,22806.0,2146.0 +1925537,1925537,1947894,1,20.0,2.0,-9.0,-9.0,3,4600.0,1061242,0.0,22808.0,2147.0 +1925538,1925538,1947895,1,20.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1925539,1925539,1947896,1,20.0,2.0,-9.0,-9.0,3,1400.0,1035838,0.0,22765.0,2130.0 +1925540,1925540,1947897,1,20.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22808.0,2147.0 +1925545,1925545,1947902,1,20.0,2.0,-9.0,-9.0,3,26500.0,1054346,0.0,22808.0,2147.0 +1925561,1925561,1947918,1,20.0,2.0,-9.0,-9.0,3,23600.0,1035838,0.0,22806.0,2146.0 +1925562,1925562,1947919,1,20.0,2.0,-9.0,-9.0,3,13000.0,1035838,0.0,22758.0,2127.0 +1925565,1925565,1947922,1,20.0,2.0,-9.0,-9.0,3,370.0,1070673,0.0,22808.0,2147.0 +1925570,1925570,1947927,1,20.0,2.0,-9.0,-9.0,3,15000.0,1054346,0.0,22808.0,2147.0 +1925572,1925572,1947929,1,20.0,2.0,-9.0,-9.0,3,16700.0,1035838,0.0,22808.0,2147.0 +1925573,1925573,1947930,1,20.0,2.0,-9.0,-9.0,3,200.0,1035838,0.0,22808.0,2147.0 +1925574,1925574,1947931,1,20.0,2.0,-9.0,-9.0,3,17200.0,1070673,0.0,22808.0,2147.0 +1925575,1925575,1947932,1,20.0,2.0,-9.0,-9.0,3,13200.0,1054346,0.0,22808.0,2147.0 +1925582,1925582,1947939,1,20.0,2.0,-9.0,-9.0,3,7300.0,1035838,0.0,22808.0,2147.0 +1925584,1925584,1947941,1,20.0,2.0,-9.0,-9.0,3,430.0,1013097,0.0,22814.0,2150.0 +1925587,1925587,1947944,1,20.0,2.0,-9.0,-9.0,3,1400.0,1035838,0.0,22808.0,2147.0 +1925588,1925588,1947945,1,20.0,2.0,-9.0,-9.0,3,10000.0,1061242,0.0,22815.0,2150.0 +1925591,1925591,1947948,1,20.0,2.0,-9.0,-9.0,3,27500.0,1054346,0.0,22808.0,2147.0 +1925602,1925602,1947959,1,20.0,2.0,-9.0,-9.0,3,67000.0,1061242,0.0,22765.0,2130.0 +1925604,1925604,1947961,1,20.0,2.0,-9.0,-9.0,3,330.0,1013097,0.0,22808.0,2147.0 +1925605,1925605,1947962,1,20.0,2.0,-9.0,-9.0,3,29700.0,1035838,0.0,22808.0,2147.0 +1925614,1925614,1947971,1,20.0,2.0,-9.0,-9.0,3,31000.0,1035838,0.0,22806.0,2146.0 +1925615,1925615,1947972,1,20.0,2.0,-9.0,-9.0,3,7800.0,1035838,0.0,22808.0,2147.0 +1925616,1925616,1947973,1,20.0,2.0,-9.0,-9.0,3,13200.0,1061242,0.0,22808.0,2147.0 +1925617,1925617,1947974,1,20.0,2.0,-9.0,-9.0,3,8000.0,1061242,0.0,22808.0,2147.0 +1925625,1925625,1947982,1,20.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1925631,1925631,1947988,1,20.0,2.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1925632,1925632,1947989,1,20.0,2.0,-9.0,-9.0,3,29000.0,1054346,0.0,22758.0,2127.0 +1925633,1925633,1947990,1,20.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22765.0,2130.0 +1925643,1925643,1948000,1,20.0,4.0,-9.0,-9.0,3,18100.0,1035838,0.0,22765.0,2130.0 +1925645,1925645,1948002,1,20.0,4.0,-9.0,-9.0,3,25450.0,1035838,0.0,22814.0,2150.0 +1925646,1925646,1948003,1,20.0,4.0,-9.0,-9.0,3,23100.0,1070673,0.0,22808.0,2147.0 +1925650,1925650,1948007,1,20.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1925652,1925652,1948009,1,20.0,4.0,-9.0,-9.0,3,64000.0,1061242,0.0,22808.0,2147.0 +1925653,1925653,1948010,1,20.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22808.0,2147.0 +1925655,1925655,1948012,1,20.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1925658,1925658,1948015,1,20.0,4.0,-9.0,-9.0,3,25000.0,1070673,0.0,22808.0,2147.0 +1925660,1925660,1948017,1,20.0,4.0,-9.0,-9.0,3,40800.0,1061242,0.0,22808.0,2147.0 +1925663,1925663,1948020,1,20.0,4.0,-9.0,-9.0,3,32000.0,1070673,0.0,22806.0,2146.0 +1925672,1925672,1948029,1,20.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1925674,1925674,1948031,1,20.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22813.0,2150.0 +1925678,1925678,1948035,1,20.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22808.0,2147.0 +1925680,1925680,1948037,1,20.0,4.0,-9.0,-9.0,3,64000.0,1061242,0.0,22765.0,2130.0 +1925686,1925686,1948043,1,20.0,4.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1925688,1925688,1948045,1,20.0,4.0,-9.0,-9.0,3,13000.0,1054346,0.0,22808.0,2147.0 +1925689,1925689,1948046,1,20.0,4.0,-9.0,-9.0,3,26000.0,1013097,0.0,22808.0,2147.0 +1925690,1925690,1948047,1,20.0,4.0,-9.0,-9.0,3,75000.0,1013097,0.0,22808.0,2147.0 +1925691,1925691,1948048,1,20.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22808.0,2147.0 +1925693,1925693,1948050,1,20.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1925695,1925695,1948052,1,20.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22808.0,2147.0 +1925702,1925702,1948059,1,20.0,4.0,-9.0,-9.0,3,6700.0,1035838,0.0,22815.0,2150.0 +1925706,1925706,1948063,1,20.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22808.0,2147.0 +1925707,1925707,1948064,1,20.0,4.0,-9.0,-9.0,3,25000.0,1013097,0.0,22814.0,2150.0 +1925708,1925708,1948065,1,20.0,4.0,-9.0,-9.0,3,35030.0,1054346,0.0,22806.0,2146.0 +1925711,1925711,1948068,1,20.0,4.0,-9.0,-9.0,3,66000.0,1070673,0.0,22808.0,2147.0 +1925713,1925713,1948070,1,20.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22765.0,2130.0 +1925714,1925714,1948071,1,20.0,4.0,-9.0,-9.0,3,28000.0,1035838,0.0,22765.0,2130.0 +1925715,1925715,1948072,1,20.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22808.0,2147.0 +1925716,1925716,1948073,1,20.0,4.0,-9.0,-9.0,3,6800.0,1061242,0.0,22808.0,2147.0 +1925722,1925722,1948079,1,20.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22810.0,2148.0 +1925723,1925723,1948080,1,20.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1925731,1925731,1948088,1,20.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22806.0,2146.0 +1925733,1925733,1948090,1,20.0,4.0,-9.0,-9.0,3,29600.0,1035838,0.0,22806.0,2146.0 +1925734,1925734,1948091,1,20.0,4.0,-9.0,-9.0,3,28000.0,1013097,0.0,22806.0,2146.0 +1925743,1925743,1948100,1,20.0,4.0,-9.0,-9.0,3,29500.0,1013097,0.0,22808.0,2147.0 +1925745,1925745,1948102,1,20.0,4.0,-9.0,-9.0,3,14000.0,1013097,0.0,22808.0,2147.0 +1925746,1925746,1948103,1,20.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22815.0,2150.0 +1925748,1925748,1948105,1,20.0,4.0,-9.0,-9.0,3,26000.0,1013097,0.0,22810.0,2148.0 +1925749,1925749,1948106,1,20.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22761.0,2128.0 +1925750,1925750,1948107,1,20.0,4.0,-9.0,-9.0,3,23100.0,1070673,0.0,22806.0,2146.0 +1925756,1925756,1948113,1,20.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22765.0,2130.0 +1925757,1925757,1948114,1,20.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22808.0,2147.0 +1925762,1925762,1948119,1,20.0,4.0,-9.0,-9.0,3,2650.0,1061242,0.0,22806.0,2146.0 +1925764,1925764,1948121,1,20.0,4.0,-9.0,-9.0,3,26000.0,1013097,0.0,22808.0,2147.0 +1925771,1925771,1948128,1,20.0,4.0,-9.0,-9.0,3,62400.0,1070673,0.0,22806.0,2146.0 +1925774,1925774,1948131,1,20.0,4.0,-9.0,-9.0,3,900.0,1035838,0.0,22808.0,2147.0 +1925775,1925775,1948132,1,20.0,4.0,-9.0,-9.0,3,36000.0,1070673,0.0,22808.0,2147.0 +1925779,1925779,1948136,1,20.0,4.0,-9.0,-9.0,3,30000.0,1070673,0.0,22808.0,2147.0 +1925783,1925783,1948140,1,20.0,4.0,-9.0,-9.0,3,18000.0,1054346,0.0,22808.0,2147.0 +1925785,1925785,1948142,1,20.0,4.0,-9.0,-9.0,3,29130.0,1035838,0.0,22808.0,2147.0 +1925788,1925788,1948145,1,20.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22808.0,2147.0 +1925796,1925796,1948153,1,20.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22806.0,2146.0 +1925797,1925797,1948154,1,20.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1925798,1925798,1948155,1,20.0,4.0,-9.0,-9.0,3,320.0,1054346,0.0,22765.0,2130.0 +1925800,1925800,1948157,1,20.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1925805,1925805,1948162,1,20.0,4.0,-9.0,-9.0,3,62001.0,1070673,0.0,22808.0,2147.0 +1925806,1925806,1948163,1,20.0,4.0,-9.0,-9.0,3,31500.0,1013097,0.0,22814.0,2150.0 +1925807,1925807,1948164,1,20.0,4.0,-9.0,-9.0,3,7610.0,1061242,0.0,22806.0,2146.0 +1925808,1925808,1948165,1,20.0,4.0,-9.0,-9.0,3,29500.0,1013097,0.0,22808.0,2147.0 +1925817,1925817,1948174,1,20.0,4.0,-9.0,-9.0,3,3550.0,1054346,0.0,22808.0,2147.0 +1925818,1925818,1948175,1,20.0,4.0,-9.0,-9.0,3,5000.0,1035838,0.0,22808.0,2147.0 +1925820,1925820,1948177,1,20.0,4.0,-9.0,-9.0,3,26200.0,1035838,0.0,22806.0,2146.0 +1925821,1925821,1948178,1,20.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22808.0,2147.0 +1925828,1925828,1948185,1,20.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22815.0,2150.0 +1925831,1925831,1948188,1,20.0,4.0,-9.0,-9.0,3,19000.0,1070673,0.0,22806.0,2146.0 +1925836,1925836,1948193,1,20.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22808.0,2147.0 +1925840,1925840,1948197,1,20.0,4.0,-9.0,-9.0,3,23100.0,1070673,0.0,22808.0,2147.0 +1925841,1925841,1948198,1,20.0,4.0,-9.0,-9.0,3,26000.0,1061242,0.0,22814.0,2150.0 +1925843,1925843,1948200,1,20.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1925844,1925844,1948201,1,20.0,4.0,-9.0,-9.0,3,83500.0,1013097,0.0,22808.0,2147.0 +1925845,1925845,1948202,1,20.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1925846,1925846,1948203,1,20.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1925848,1925848,1948205,1,20.0,4.0,-9.0,-9.0,3,26600.0,1054346,0.0,22808.0,2147.0 +1925851,1925851,1948208,1,20.0,4.0,-9.0,-9.0,3,62000.0,1070673,0.0,22808.0,2147.0 +1925856,1925856,1948213,1,20.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1925869,1925869,1948226,1,20.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22808.0,2147.0 +1925874,1925874,1948231,1,20.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1925878,1925878,1948235,1,20.0,4.0,-9.0,-9.0,3,69300.0,1061242,0.0,22815.0,2150.0 +1925880,1925880,1948237,1,20.0,4.0,-9.0,-9.0,3,14000.0,1054346,0.0,22765.0,2130.0 +1925881,1925881,1948238,1,20.0,4.0,-9.0,-9.0,3,26000.0,1013097,0.0,22808.0,2147.0 +1925882,1925882,1948239,1,20.0,4.0,-9.0,-9.0,3,23100.0,1070673,0.0,22765.0,2130.0 +1925883,1925883,1948240,1,20.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1925889,1925889,1948246,1,20.0,4.0,-9.0,-9.0,3,29130.0,1035838,0.0,22765.0,2130.0 +1925897,1925897,1948254,1,20.0,4.0,-9.0,-9.0,3,5600.0,1013097,0.0,22808.0,2147.0 +1925899,1925899,1948256,1,20.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22814.0,2150.0 +1925900,1925900,1948257,1,20.0,4.0,-9.0,-9.0,3,25000.0,1013097,0.0,22808.0,2147.0 +1925901,1925901,1948258,1,20.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22765.0,2130.0 +1925903,1925903,1948260,1,20.0,4.0,-9.0,-9.0,3,26600.0,1054346,0.0,22808.0,2147.0 +1925906,1925906,1948263,1,20.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22765.0,2130.0 +1925907,1925907,1948264,1,20.0,4.0,-9.0,-9.0,3,29130.0,1035838,0.0,22808.0,2147.0 +1925909,1925909,1948266,1,20.0,1.0,-9.0,-9.0,3,4000.0,1054346,0.0,22808.0,2147.0 +1925916,1925916,1948273,1,20.0,4.0,-9.0,-9.0,3,39600.0,1061242,0.0,22808.0,2147.0 +1925919,1925919,1948276,1,20.0,4.0,-9.0,-9.0,3,69300.0,1061242,0.0,22758.0,2127.0 +1925920,1925920,1948277,1,20.0,4.0,-9.0,-9.0,3,7610.0,1061242,0.0,22808.0,2147.0 +1925921,1925921,1948278,1,20.0,1.0,-9.0,-9.0,3,30300.0,1054346,0.0,22808.0,2147.0 +1925924,1925924,1948281,1,20.0,1.0,-9.0,-9.0,3,29000.0,1061242,0.0,22808.0,2147.0 +1925926,1925926,1948283,1,20.0,1.0,-9.0,-9.0,3,17800.0,1054346,0.0,22806.0,2146.0 +1925931,1925931,1948288,1,20.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22815.0,2150.0 +1925932,1925932,1948289,1,20.0,4.0,-9.0,-9.0,3,17000.0,1013097,0.0,22760.0,2128.0 +1925938,1925938,1948295,1,20.0,1.0,-9.0,-9.0,3,15000.0,1061242,0.0,22806.0,2146.0 +1925939,1925939,1948296,1,20.0,2.0,-9.0,-9.0,3,30300.0,1035838,0.0,22806.0,2146.0 +1925940,1925940,1948297,1,20.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22815.0,2150.0 +1925941,1925941,1948298,1,20.0,4.0,-9.0,-9.0,3,14800.0,1035838,0.0,22808.0,2147.0 +1925946,1925946,1948303,1,20.0,1.0,-9.0,-9.0,3,28500.0,1013097,0.0,22808.0,2147.0 +1925950,1925950,1948307,1,20.0,4.0,-9.0,-9.0,3,18000.0,1070673,0.0,22808.0,2147.0 +1925952,1925952,1948309,1,20.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22806.0,2146.0 +1925953,1925953,1948310,1,20.0,1.0,-9.0,-9.0,3,4500.0,1061242,0.0,22808.0,2147.0 +1925955,1925955,1948312,1,20.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1925958,1925958,1948315,1,20.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22813.0,2150.0 +1925961,1925961,1948318,1,20.0,4.0,-9.0,-9.0,3,6800.0,1061242,0.0,22808.0,2147.0 +1925962,1925962,1948319,1,20.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1925965,1925965,1948322,1,20.0,4.0,-9.0,-9.0,3,69300.0,1061242,0.0,22765.0,2130.0 +1925966,1925966,1948323,1,20.0,1.0,-9.0,-9.0,3,89000.0,1054346,0.0,22808.0,2147.0 +1925970,1925970,1948327,1,20.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22808.0,2147.0 +1925971,1925971,1948328,1,20.0,1.0,-9.0,-9.0,3,68500.0,1054346,0.0,22808.0,2147.0 +1925979,1925979,1948336,1,20.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1925982,1925982,1948339,1,20.0,1.0,-9.0,-9.0,3,1000.0,1035838,0.0,22808.0,2147.0 +1925985,1925985,1948342,1,20.0,1.0,-9.0,-9.0,3,67600.0,1054346,0.0,22808.0,2147.0 +1925986,1925986,1948343,1,20.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1925988,1925988,1948345,1,20.0,4.0,-9.0,-9.0,3,25000.0,1013097,0.0,22808.0,2147.0 +1925996,1925996,1948353,1,20.0,4.0,-9.0,-9.0,3,23700.0,1054346,0.0,22758.0,2127.0 +1925999,1925999,1948356,1,20.0,2.0,-9.0,-9.0,3,8000.0,1070673,0.0,22806.0,2146.0 +1926000,1926000,1948357,1,20.0,1.0,-9.0,-9.0,3,69200.0,1070673,0.0,22808.0,2147.0 +1926003,1926003,1948360,1,20.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22808.0,2147.0 +1926006,1926006,1948363,1,20.0,4.0,-9.0,-9.0,3,5000.0,1035838,0.0,22808.0,2147.0 +1926011,1926011,1948368,1,20.0,2.0,-9.0,-9.0,3,370.0,1070673,0.0,22808.0,2147.0 +1926013,1926013,1948370,1,20.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22758.0,2127.0 +1926017,1926017,1948374,1,20.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22810.0,2148.0 +1926018,1926018,1948375,1,20.0,4.0,-9.0,-9.0,3,31500.0,1013097,0.0,22808.0,2147.0 +1926019,1926019,1948376,1,20.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22806.0,2146.0 +1926021,1926021,1948378,1,20.0,2.0,-9.0,-9.0,3,8000.0,1070673,0.0,22806.0,2146.0 +1926022,1926022,1948379,1,20.0,1.0,-9.0,-9.0,3,1100.0,1035838,0.0,22808.0,2147.0 +1926024,1926024,1948381,1,20.0,2.0,-9.0,-9.0,3,10000.0,1061242,0.0,22765.0,2130.0 +1926025,1926025,1948382,1,20.0,4.0,-9.0,-9.0,3,46500.0,1013097,0.0,22814.0,2150.0 +1926027,1926027,1948384,1,20.0,1.0,-9.0,-9.0,3,170.0,1070673,0.0,22806.0,2146.0 +1926028,1926028,1948385,1,20.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1926032,1926032,1948389,1,20.0,2.0,-9.0,-9.0,3,30300.0,1035838,0.0,22808.0,2147.0 +1926033,1926033,1948390,1,20.0,1.0,-9.0,-9.0,3,13500.0,1054346,0.0,22808.0,2147.0 +1926034,1926034,1948391,1,20.0,1.0,-9.0,-9.0,3,29400.0,1061242,0.0,22808.0,2147.0 +1926036,1926036,1948393,1,20.0,4.0,-9.0,-9.0,3,26200.0,1035838,0.0,22808.0,2147.0 +1926043,1926043,1948400,1,20.0,1.0,-9.0,-9.0,3,190.0,1054346,0.0,22765.0,2130.0 +1926045,1926045,1948402,1,20.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1926046,1926046,1948403,1,20.0,4.0,-9.0,-9.0,3,40800.0,1061242,0.0,22806.0,2146.0 +1926049,1926049,1948406,1,20.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22814.0,2150.0 +1926051,1926051,1948408,1,20.0,1.0,-9.0,-9.0,3,34500.0,1061242,0.0,22808.0,2147.0 +1926057,1926057,1948414,1,20.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22808.0,2147.0 +1926064,1926064,1948421,1,20.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22808.0,2147.0 +1926067,1926067,1948424,1,20.0,1.0,-9.0,-9.0,3,35000.0,1070673,0.0,22808.0,2147.0 +1926069,1926069,1948426,1,20.0,1.0,-9.0,-9.0,3,33000.0,1061242,0.0,22808.0,2147.0 +1926070,1926070,1948427,1,20.0,1.0,-9.0,-9.0,3,77900.0,1013097,0.0,22765.0,2130.0 +1926071,1926071,1948428,1,20.0,4.0,-9.0,-9.0,3,15000.0,1061242,0.0,22808.0,2147.0 +1926072,1926072,1948429,1,20.0,4.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1926074,1926074,1948431,1,20.0,2.0,-9.0,-9.0,3,3000.0,1013097,0.0,22765.0,2130.0 +1926075,1926075,1948432,1,20.0,2.0,-9.0,-9.0,3,930.0,1035838,0.0,22808.0,2147.0 +1926076,1926076,1948433,1,20.0,1.0,-9.0,-9.0,3,15500.0,1061242,0.0,22765.0,2130.0 +1926078,1926078,1948435,1,20.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22760.0,2128.0 +1926082,1926082,1948439,1,21.0,1.0,-9.0,-9.0,3,67150.0,1035838,0.0,22808.0,2147.0 +1926083,1926083,1948440,1,21.0,1.0,-9.0,-9.0,3,18300.0,1061242,0.0,22808.0,2147.0 +1926089,1926089,1948446,1,21.0,1.0,-9.0,-9.0,3,16000.0,1035838,0.0,22808.0,2147.0 +1926092,1926092,1948449,1,21.0,1.0,-9.0,-9.0,3,15500.0,1061242,0.0,22808.0,2147.0 +1926094,1926094,1948451,1,21.0,1.0,-9.0,-9.0,3,62000.0,1070673,0.0,22808.0,2147.0 +1926100,1926100,1948457,1,21.0,1.0,-9.0,-9.0,3,4500.0,1061242,0.0,22806.0,2146.0 +1926107,1926107,1948464,1,21.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22765.0,2130.0 +1926111,1926111,1948468,1,21.0,1.0,-9.0,-9.0,3,9000.0,1035838,0.0,22808.0,2147.0 +1926117,1926117,1948474,1,21.0,1.0,-9.0,-9.0,3,26500.0,1061242,0.0,22814.0,2150.0 +1926118,1926118,1948475,1,21.0,1.0,-9.0,-9.0,3,34000.0,1061242,0.0,22808.0,2147.0 +1926120,1926120,1948477,1,21.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22806.0,2146.0 +1926121,1926121,1948478,1,21.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22806.0,2146.0 +1926122,1926122,1948479,1,21.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22808.0,2147.0 +1926127,1926127,1948484,1,21.0,1.0,-9.0,-9.0,3,1900.0,1054346,0.0,22806.0,2146.0 +1926131,1926131,1948488,1,21.0,1.0,-9.0,-9.0,3,10900.0,1013097,0.0,22806.0,2146.0 +1926147,1926147,1948504,1,21.0,1.0,-9.0,-9.0,3,28000.0,1035838,0.0,22806.0,2146.0 +1926153,1926153,1948510,1,21.0,1.0,-9.0,-9.0,3,31500.0,1013097,0.0,22808.0,2147.0 +1926156,1926156,1948513,1,21.0,1.0,-9.0,-9.0,3,34000.0,1054346,0.0,22808.0,2147.0 +1926159,1926159,1948516,1,21.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1926161,1926161,1948518,1,21.0,1.0,-9.0,-9.0,3,670.0,1035838,0.0,22808.0,2147.0 +1926165,1926165,1948522,1,21.0,1.0,-9.0,-9.0,3,530.0,1035838,0.0,22808.0,2147.0 +1926168,1926168,1948525,1,21.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1926169,1926169,1948526,1,21.0,1.0,-9.0,-9.0,3,33000.0,1054346,0.0,22765.0,2130.0 +1926170,1926170,1948527,1,21.0,1.0,-9.0,-9.0,3,5404.0,1061242,0.0,22808.0,2147.0 +1926171,1926171,1948528,1,21.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22760.0,2128.0 +1926172,1926172,1948529,1,21.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22806.0,2146.0 +1926173,1926173,1948530,1,21.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22765.0,2130.0 +1926177,1926177,1948534,1,21.0,1.0,-9.0,-9.0,3,10550.0,1013097,0.0,22806.0,2146.0 +1926178,1926178,1948535,1,21.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22808.0,2147.0 +1926180,1926180,1948537,1,21.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1926182,1926182,1948539,1,21.0,1.0,-9.0,-9.0,3,31000.0,1070673,0.0,22808.0,2147.0 +1926188,1926188,1948545,1,21.0,3.0,-9.0,-9.0,3,13600.0,1070673,0.0,22808.0,2147.0 +1926189,1926189,1948546,1,21.0,3.0,-9.0,-9.0,3,75500.0,1013097,0.0,22806.0,2146.0 +1926194,1926194,1948551,1,21.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22813.0,2150.0 +1926196,1926196,1948553,1,21.0,1.0,-9.0,-9.0,3,1000.0,1054346,0.0,22814.0,2150.0 +1926199,1926199,1948556,1,21.0,1.0,-9.0,-9.0,3,32500.0,1013097,0.0,22808.0,2147.0 +1926202,1926202,1948559,1,21.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22765.0,2130.0 +1926209,1926209,1948566,1,21.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22808.0,2147.0 +1926215,1926215,1948572,1,21.0,3.0,-9.0,-9.0,3,71500.0,1035838,0.0,22808.0,2147.0 +1926219,1926219,1948576,1,22.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1926224,1926224,1948581,1,22.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22814.0,2150.0 +1926230,1926230,1948587,1,22.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22806.0,2146.0 +1926231,1926231,1948588,1,22.0,1.0,-9.0,-9.0,3,20500.0,1070673,0.0,22808.0,2147.0 +1926233,1926233,1948590,1,22.0,1.0,-9.0,-9.0,3,14600.0,1054346,0.0,22808.0,2147.0 +1926235,1926235,1948592,1,22.0,1.0,-9.0,-9.0,3,51000.0,1061242,0.0,22806.0,2146.0 +1926236,1926236,1948593,1,22.0,1.0,-9.0,-9.0,3,43000.0,1061242,0.0,22808.0,2147.0 +1926239,1926239,1948596,1,22.0,1.0,-9.0,-9.0,3,10700.0,1070673,0.0,22808.0,2147.0 +1926246,1926246,1948603,1,22.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22815.0,2150.0 +1926247,1926247,1948604,1,22.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22808.0,2147.0 +1926248,1926248,1948605,1,22.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22806.0,2146.0 +1926250,1926250,1948607,1,22.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22806.0,2146.0 +1926252,1926252,1948609,1,22.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22808.0,2147.0 +1926255,1926255,1948612,1,22.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22808.0,2147.0 +1926256,1926256,1948613,1,22.0,1.0,-9.0,-9.0,3,10000.0,1013097,0.0,22806.0,2146.0 +1926261,1926261,1948618,1,22.0,1.0,-9.0,-9.0,3,20300.0,1070673,0.0,22808.0,2147.0 +1926264,1926264,1948621,1,22.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22808.0,2147.0 +1926265,1926265,1948622,1,22.0,1.0,-9.0,-9.0,3,43500.0,1035838,0.0,22806.0,2146.0 +1926266,1926266,1948623,1,22.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22808.0,2147.0 +1926268,1926268,1948625,1,22.0,1.0,-9.0,-9.0,3,26500.0,1054346,0.0,22808.0,2147.0 +1926271,1926271,1948628,1,22.0,1.0,-9.0,-9.0,3,15500.0,1054346,0.0,22808.0,2147.0 +1926274,1926274,1948631,1,22.0,1.0,-9.0,-9.0,3,62400.0,1070673,0.0,22808.0,2147.0 +1926277,1926277,1948634,1,22.0,1.0,-9.0,-9.0,3,25000.0,1035838,0.0,22810.0,2148.0 +1926278,1926278,1948635,1,22.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22765.0,2130.0 +1926279,1926279,1948636,1,22.0,1.0,-9.0,-9.0,3,14300.0,1061242,0.0,22808.0,2147.0 +1926282,1926282,1948639,1,22.0,1.0,-9.0,-9.0,3,32800.0,1061242,0.0,22806.0,2146.0 +1926284,1926284,1948641,1,22.0,1.0,-9.0,-9.0,3,7600.0,1013097,0.0,22808.0,2147.0 +1926285,1926285,1948642,1,22.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1926286,1926286,1948643,1,22.0,1.0,-9.0,-9.0,3,18000.0,1035838,0.0,22808.0,2147.0 +1926287,1926287,1948644,1,22.0,1.0,-9.0,-9.0,3,31500.0,1061242,0.0,22808.0,2147.0 +1926288,1926288,1948645,1,22.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22808.0,2147.0 +1926289,1926289,1948646,1,22.0,1.0,-9.0,-9.0,3,25300.0,1061242,0.0,22808.0,2147.0 +1926293,1926293,1948650,1,22.0,1.0,-9.0,-9.0,3,11200.0,1054346,0.0,22808.0,2147.0 +1926296,1926296,1948653,1,22.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22808.0,2147.0 +1926300,1926300,1948657,1,22.0,1.0,-9.0,-9.0,3,3900.0,1035838,0.0,22806.0,2146.0 +1926302,1926302,1948659,1,22.0,1.0,-9.0,-9.0,3,5500.0,1013097,0.0,22808.0,2147.0 +1926304,1926304,1948661,1,22.0,1.0,-9.0,-9.0,3,46000.0,1061242,0.0,22808.0,2147.0 +1926306,1926306,1948663,1,22.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22808.0,2147.0 +1926307,1926307,1948664,1,22.0,1.0,-9.0,-9.0,3,12000.0,1013097,0.0,22808.0,2147.0 +1926309,1926309,1948666,1,22.0,1.0,-9.0,-9.0,3,74500.0,1013097,0.0,22808.0,2147.0 +1926310,1926310,1948667,1,22.0,1.0,-9.0,-9.0,3,10000.0,1035838,0.0,22765.0,2130.0 +1926312,1926312,1948669,1,22.0,1.0,-9.0,-9.0,3,24500.0,1054346,0.0,22808.0,2147.0 +1926313,1926313,1948670,1,22.0,1.0,-9.0,-9.0,3,1540.0,1035838,0.0,22808.0,2147.0 +1926315,1926315,1948672,1,22.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22806.0,2146.0 +1926316,1926316,1948673,1,22.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22806.0,2146.0 +1926322,1926322,1948679,1,22.0,1.0,-9.0,-9.0,3,31000.0,1035838,0.0,22808.0,2147.0 +1926324,1926324,1948681,1,22.0,1.0,-9.0,-9.0,3,170.0,1070673,0.0,22808.0,2147.0 +1926327,1926327,1948684,1,22.0,1.0,-9.0,-9.0,3,5320.0,1054346,0.0,22808.0,2147.0 +1926329,1926329,1948686,1,22.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22808.0,2147.0 +1926330,1926330,1948687,1,22.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1926334,1926334,1948691,1,22.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22808.0,2147.0 +1926336,1926336,1948693,1,22.0,1.0,-9.0,-9.0,3,66000.0,1061242,0.0,22808.0,2147.0 +1926342,1926342,1948699,1,22.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22815.0,2150.0 +1926345,1926345,1948702,1,22.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22808.0,2147.0 +1926347,1926347,1948704,1,22.0,1.0,-9.0,-9.0,3,77900.0,1013097,0.0,22808.0,2147.0 +1926349,1926349,1948706,1,22.0,1.0,-9.0,-9.0,3,900.0,1035838,0.0,22818.0,2150.0 +1926351,1926351,1948708,1,22.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22808.0,2147.0 +1926354,1926354,1948711,1,22.0,1.0,-9.0,-9.0,3,670.0,1035838,0.0,22808.0,2147.0 +1926363,1926363,1948720,1,22.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22806.0,2146.0 +1926368,1926368,1948725,1,23.0,1.0,-9.0,-9.0,3,30400.0,1035838,0.0,22758.0,2127.0 +1926371,1926371,1948728,1,23.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22806.0,2146.0 +1926372,1926372,1948729,1,23.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22808.0,2147.0 +1926373,1926373,1948730,1,23.0,1.0,-9.0,-9.0,3,1400.0,1061242,0.0,22758.0,2127.0 +1926375,1926375,1948732,1,23.0,1.0,-9.0,-9.0,3,5200.0,1061242,0.0,22815.0,2150.0 +1926377,1926377,1948734,1,23.0,1.0,-9.0,-9.0,3,26500.0,1070673,0.0,22806.0,2146.0 +1926382,1926382,1948739,1,23.0,1.0,-9.0,-9.0,3,69400.0,1035838,0.0,22808.0,2147.0 +1926384,1926384,1948741,1,23.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22808.0,2147.0 +1926390,1926390,1948747,1,23.0,1.0,-9.0,-9.0,3,5500.0,1061242,0.0,22808.0,2147.0 +1926395,1926395,1948752,1,23.0,1.0,-9.0,-9.0,3,6000.0,1070673,0.0,22806.0,2146.0 +1926400,1926400,1948757,1,23.0,1.0,-9.0,-9.0,3,22800.0,1013097,0.0,22806.0,2146.0 +1926403,1926403,1948760,1,23.0,1.0,-9.0,-9.0,3,14300.0,1054346,0.0,22808.0,2147.0 +1926405,1926405,1948762,1,23.0,1.0,-9.0,-9.0,3,2500.0,1013097,0.0,22808.0,2147.0 +1926406,1926406,1948763,1,23.0,1.0,-9.0,-9.0,3,4100.0,1035838,0.0,22815.0,2150.0 +1926407,1926407,1948764,1,23.0,1.0,-9.0,-9.0,3,14200.0,1054346,0.0,22765.0,2130.0 +1926409,1926409,1948766,1,24.0,1.0,-9.0,-9.0,3,67500.0,1054346,0.0,22765.0,2130.0 +1926410,1926410,1948767,1,24.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22815.0,2150.0 +1926412,1926412,1948769,1,24.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22808.0,2147.0 +1926414,1926414,1948771,1,24.0,4.0,-9.0,-9.0,3,26000.0,1061242,0.0,22808.0,2147.0 +1926415,1926415,1948772,1,24.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22806.0,2146.0 +1926417,1926417,1948774,1,24.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22806.0,2146.0 +1926420,1926420,1948777,1,24.0,4.0,-9.0,-9.0,3,39600.0,1061242,0.0,22808.0,2147.0 +1926426,1926426,1948783,1,24.0,4.0,-9.0,-9.0,3,17000.0,1013097,0.0,22808.0,2147.0 +1926427,1926427,1948784,1,24.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1926428,1926428,1948785,1,24.0,4.0,-9.0,-9.0,3,30500.0,1054346,0.0,22815.0,2150.0 +1926434,1926434,1948791,1,24.0,4.0,-9.0,-9.0,3,25000.0,1013097,0.0,22806.0,2146.0 +1926435,1926435,1948792,1,24.0,4.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1926442,1926442,1948799,1,24.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1926445,1926445,1948802,1,24.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1926446,1926446,1948803,1,24.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1926450,1926450,1948807,1,24.0,4.0,-9.0,-9.0,3,39600.0,1061242,0.0,22808.0,2147.0 +1926461,1926461,1948818,1,24.0,4.0,-9.0,-9.0,3,29600.0,1035838,0.0,22806.0,2146.0 +1926462,1926462,1948819,1,24.0,4.0,-9.0,-9.0,3,20600.0,1061242,0.0,22808.0,2147.0 +1926464,1926464,1948821,1,24.0,4.0,-9.0,-9.0,3,26000.0,1061242,0.0,22806.0,2146.0 +1926467,1926467,1948824,1,24.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22808.0,2147.0 +1926468,1926468,1948825,1,24.0,4.0,-9.0,-9.0,3,66200.0,1061242,0.0,22808.0,2147.0 +1926469,1926469,1948826,1,24.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1926471,1926471,1948828,1,24.0,4.0,-9.0,-9.0,3,64001.0,1061242,0.0,22808.0,2147.0 +1926472,1926472,1948829,1,24.0,4.0,-9.0,-9.0,3,29130.0,1035838,0.0,22808.0,2147.0 +1926473,1926473,1948830,1,24.0,4.0,-9.0,-9.0,3,18000.0,1054346,0.0,22765.0,2130.0 +1926476,1926476,1948833,1,24.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22806.0,2146.0 +1926477,1926477,1948834,1,24.0,4.0,-9.0,-9.0,3,2000.0,1035838,0.0,22808.0,2147.0 +1926480,1926480,1948837,1,24.0,4.0,-9.0,-9.0,3,5000.0,1013097,0.0,22808.0,2147.0 +1926483,1926483,1948840,1,24.0,4.0,-9.0,-9.0,3,23100.0,1070673,0.0,22808.0,2147.0 +1926484,1926484,1948841,1,24.0,4.0,-9.0,-9.0,3,29500.0,1013097,0.0,22808.0,2147.0 +1926486,1926486,1948843,1,24.0,4.0,-9.0,-9.0,3,5600.0,1013097,0.0,22808.0,2147.0 +1926489,1926489,1948846,1,24.0,4.0,-9.0,-9.0,3,5000.0,1035838,0.0,22808.0,2147.0 +1926494,1926494,1948851,1,24.0,4.0,-9.0,-9.0,3,1300.0,1061242,0.0,22808.0,2147.0 +1926495,1926495,1948852,1,24.0,4.0,-9.0,-9.0,3,65300.0,1061242,0.0,22808.0,2147.0 +1926497,1926497,1948854,1,24.0,4.0,-9.0,-9.0,3,65300.0,1061242,0.0,22806.0,2146.0 +1926499,1926499,1948856,1,24.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22810.0,2148.0 +1926502,1926502,1948859,1,24.0,4.0,-9.0,-9.0,3,64001.0,1061242,0.0,22814.0,2150.0 +1926503,1926503,1948860,1,24.0,4.0,-9.0,-9.0,3,10900.0,1035838,0.0,22808.0,2147.0 +1926505,1926505,1948862,1,24.0,4.0,-9.0,-9.0,3,24020.0,1061242,0.0,22808.0,2147.0 +1926506,1926506,1948863,1,24.0,4.0,-9.0,-9.0,3,67000.0,1054346,0.0,22806.0,2146.0 +1926507,1926507,1948864,1,24.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1926510,1926510,1948867,1,24.0,4.0,-9.0,-9.0,3,320.0,1054346,0.0,22808.0,2147.0 +1926512,1926512,1948869,1,24.0,4.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1926517,1926517,1948874,1,24.0,4.0,-9.0,-9.0,3,28000.0,1013097,0.0,22808.0,2147.0 +1926524,1926524,1948881,1,24.0,4.0,-9.0,-9.0,3,2650.0,1061242,0.0,22758.0,2127.0 +1926532,1926532,1948889,1,24.0,4.0,-9.0,-9.0,3,29000.0,1054346,0.0,22808.0,2147.0 +1926536,1926536,1948893,1,24.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1926537,1926537,1948894,1,24.0,4.0,-9.0,-9.0,3,2800.0,1035838,0.0,22815.0,2150.0 +1926539,1926539,1948896,1,24.0,4.0,-9.0,-9.0,3,0.0,1054346,0.0,22808.0,2147.0 +1926545,1926545,1948902,1,24.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1926550,1926550,1948907,1,24.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22806.0,2146.0 +1926553,1926553,1948910,1,24.0,4.0,-9.0,-9.0,3,70000.0,1061242,0.0,22765.0,2130.0 +1926554,1926554,1948911,1,24.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22808.0,2147.0 +1926556,1926556,1948913,1,24.0,4.0,-9.0,-9.0,3,64000.0,1061242,0.0,22765.0,2130.0 +1926559,1926559,1948916,1,24.0,4.0,-9.0,-9.0,3,5000.0,1035838,0.0,22806.0,2146.0 +1926564,1926564,1948921,1,24.0,4.0,-9.0,-9.0,3,320.0,1054346,0.0,22806.0,2146.0 +1926569,1926569,1948926,1,24.0,4.0,-9.0,-9.0,3,2000.0,1054346,0.0,22808.0,2147.0 +1926571,1926571,1948928,1,24.0,4.0,-9.0,-9.0,3,35000.0,1070673,0.0,22808.0,2147.0 +1926573,1926573,1948930,1,24.0,4.0,-9.0,-9.0,3,66000.0,1035838,0.0,22808.0,2147.0 +1926578,1926578,1948935,1,24.0,4.0,-9.0,-9.0,3,30800.0,1035838,0.0,22808.0,2147.0 +1926580,1926580,1948937,1,24.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22808.0,2147.0 +1926584,1926584,1948941,1,24.0,4.0,-9.0,-9.0,3,29300.0,1035838,0.0,22808.0,2147.0 +1926585,1926585,1948942,1,24.0,4.0,-9.0,-9.0,3,28500.0,1054346,0.0,22808.0,2147.0 +1926586,1926586,1948943,1,24.0,4.0,-9.0,-9.0,3,25000.0,1070673,0.0,22808.0,2147.0 +1926593,1926593,1948950,1,24.0,4.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1926598,1926598,1948955,1,25.0,1.0,-9.0,-9.0,3,29500.0,1070673,0.0,22808.0,2147.0 +1926602,1926602,1948959,1,25.0,2.0,-9.0,-9.0,3,22000.0,1035838,0.0,22761.0,2128.0 +1926603,1926603,1948960,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1926605,1926605,1948962,1,25.0,2.0,-9.0,-9.0,3,20500.0,1054346,0.0,22806.0,2146.0 +1926606,1926606,1948963,1,25.0,2.0,-9.0,-9.0,3,63000.0,1061242,0.0,22814.0,2150.0 +1926608,1926608,1948965,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1926614,1926614,1948971,1,25.0,2.0,-9.0,-9.0,3,8300.0,1054346,0.0,22806.0,2146.0 +1926615,1926615,1948972,1,25.0,2.0,-9.0,-9.0,3,0.0,1054346,0.0,22806.0,2146.0 +1926616,1926616,1948973,1,25.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22808.0,2147.0 +1926620,1926620,1948977,1,25.0,2.0,-9.0,-9.0,3,1500.0,1054346,0.0,22808.0,2147.0 +1926631,1926631,1948988,1,25.0,2.0,-9.0,-9.0,3,13000.0,1061242,0.0,22808.0,2147.0 +1926634,1926634,1948991,1,25.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22815.0,2150.0 +1926640,1926640,1948997,1,25.0,2.0,-9.0,-9.0,3,63000.0,1061242,0.0,22808.0,2147.0 +1926642,1926642,1948999,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22806.0,2146.0 +1926645,1926645,1949002,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1926646,1926646,1949003,1,25.0,2.0,-9.0,-9.0,3,8300.0,1054346,0.0,22808.0,2147.0 +1926647,1926647,1949004,1,25.0,2.0,-9.0,-9.0,3,20500.0,1054346,0.0,22765.0,2130.0 +1926648,1926648,1949005,1,25.0,2.0,-9.0,-9.0,3,63000.0,1061242,0.0,22808.0,2147.0 +1926652,1926652,1949009,1,25.0,2.0,-9.0,-9.0,3,8300.0,1054346,0.0,22808.0,2147.0 +1926655,1926655,1949012,1,25.0,2.0,-9.0,-9.0,3,8300.0,1054346,0.0,22808.0,2147.0 +1926662,1926662,1949019,1,25.0,2.0,-9.0,-9.0,3,15000.0,1061242,0.0,22758.0,2127.0 +1926663,1926663,1949020,1,25.0,2.0,-9.0,-9.0,3,9000.0,1013097,0.0,22765.0,2130.0 +1926670,1926670,1949027,1,25.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22806.0,2146.0 +1926673,1926673,1949030,1,25.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22808.0,2147.0 +1926674,1926674,1949031,1,25.0,4.0,-9.0,-9.0,3,24000.0,1035838,0.0,22808.0,2147.0 +1926677,1926677,1949034,1,25.0,4.0,-9.0,-9.0,3,2200.0,1013097,0.0,22760.0,2128.0 +1926678,1926678,1949035,1,25.0,4.0,-9.0,-9.0,3,700.0,1013097,0.0,22808.0,2147.0 +1926688,1926688,1949045,1,25.0,4.0,-9.0,-9.0,3,69000.0,1013097,0.0,22808.0,2147.0 +1926691,1926691,1949048,1,25.0,4.0,-9.0,-9.0,3,720.0,1035838,0.0,22808.0,2147.0 +1926692,1926692,1949049,1,25.0,4.0,-9.0,-9.0,3,24000.0,1035838,0.0,22808.0,2147.0 +1926699,1926699,1949056,1,25.0,4.0,-9.0,-9.0,3,46200.0,1061242,0.0,22808.0,2147.0 +1926701,1926701,1949058,1,25.0,4.0,-9.0,-9.0,3,6200.0,1013097,0.0,22760.0,2128.0 +1926706,1926706,1949063,1,25.0,4.0,-9.0,-9.0,3,54000.0,1054346,0.0,22808.0,2147.0 +1926710,1926710,1949067,1,25.0,2.0,-9.0,-9.0,3,63000.0,1061242,0.0,22760.0,2128.0 +1926711,1926711,1949068,1,25.0,4.0,-9.0,-9.0,3,36000.0,1013097,0.0,22765.0,2130.0 +1926717,1926717,1949074,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22815.0,2150.0 +1926719,1926719,1949076,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22806.0,2146.0 +1926720,1926720,1949077,1,25.0,4.0,-9.0,-9.0,3,45000.0,1035838,0.0,22806.0,2146.0 +1926723,1926723,1949080,1,25.0,2.0,-9.0,-9.0,3,8000.0,1061242,0.0,22814.0,2150.0 +1926726,1926726,1949083,1,25.0,2.0,-9.0,-9.0,3,15000.0,1061242,0.0,22808.0,2147.0 +1926728,1926728,1949085,1,25.0,2.0,-9.0,-9.0,3,55000.0,1054346,0.0,22808.0,2147.0 +1926733,1926733,1949090,1,25.0,4.0,-9.0,-9.0,3,31000.0,1054346,0.0,22813.0,2150.0 +1926734,1926734,1949091,1,25.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22815.0,2150.0 +1926737,1926737,1949094,1,25.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22808.0,2147.0 +1926739,1926739,1949096,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22745.0,2121.0 +1926740,1926740,1949097,1,17.0,1.0,-9.0,1.0,3,1000.0,1061242,0.0,22745.0,2121.0 +1926741,1926741,1949098,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22745.0,2121.0 +1926742,1926742,1949099,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22745.0,2121.0 +1926743,1926743,1949100,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22745.0,2121.0 +1926744,1926744,1949101,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22745.0,2121.0 +1926745,1926745,1949102,1,18.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22745.0,2121.0 +1926746,1926746,1949103,1,18.0,1.0,-9.0,-9.0,3,19500.0,1070673,0.0,22745.0,2121.0 +1926747,1926747,1949104,1,18.0,1.0,-9.0,-9.0,3,12500.0,1013097,0.0,22745.0,2121.0 +1926748,1926748,1949105,1,18.0,4.0,-9.0,-9.0,3,64000.0,1061242,0.0,22745.0,2121.0 +1926749,1926749,1949106,1,18.0,1.0,-9.0,-9.0,3,2300.0,1013097,0.0,22745.0,2121.0 +1926750,1926750,1949107,1,18.0,1.0,-9.0,-9.0,3,19770.0,1061242,0.0,22745.0,2121.0 +1926751,1926751,1949108,1,18.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22745.0,2121.0 +1926752,1926752,1949109,1,18.0,1.0,-9.0,-9.0,3,4300.0,1013097,0.0,22745.0,2121.0 +1926753,1926753,1949110,1,18.0,4.0,-9.0,-9.0,3,18000.0,1054346,0.0,22745.0,2121.0 +1926754,1926754,1949111,1,18.0,1.0,-9.0,-9.0,3,5500.0,1013097,0.0,22745.0,2121.0 +1926755,1926755,1949112,1,18.0,1.0,-9.0,-9.0,3,31500.0,1013097,0.0,22745.0,2121.0 +1926756,1926756,1949113,1,18.0,4.0,-9.0,-9.0,3,10.0,1035838,0.0,22745.0,2121.0 +1926757,1926757,1949114,1,18.0,2.0,-9.0,-9.0,3,10600.0,1061242,0.0,22745.0,2121.0 +1926758,1926758,1949115,1,18.0,2.0,-9.0,-9.0,3,8000.0,1070673,0.0,22745.0,2121.0 +1926759,1926759,1949116,1,18.0,1.0,-9.0,-9.0,3,22380.0,1061242,0.0,22745.0,2121.0 +1926760,1926760,1949117,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22745.0,2121.0 +1926761,1926761,1949118,1,18.0,4.0,-9.0,-9.0,3,34500.0,1061242,0.0,22745.0,2121.0 +1926762,1926762,1949119,1,18.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22745.0,2121.0 +1926763,1926763,1949120,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22745.0,2121.0 +1926764,1926764,1949121,1,18.0,1.0,-9.0,-9.0,3,1200.0,1070673,0.0,22745.0,2121.0 +1926765,1926765,1949122,1,18.0,1.0,-9.0,-9.0,3,7610.0,1061242,0.0,22745.0,2121.0 +1926766,1926766,1949123,1,18.0,1.0,-9.0,-9.0,3,10400.0,1070673,0.0,22745.0,2121.0 +1926767,1926767,1949124,1,18.0,1.0,-9.0,-9.0,3,76000.0,1013097,0.0,22745.0,2121.0 +1926768,1926768,1949125,1,18.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22745.0,2121.0 +1926769,1926769,1949126,1,18.0,1.0,-9.0,-9.0,3,28000.0,1061242,0.0,22745.0,2121.0 +1926770,1926770,1949127,1,18.0,4.0,-9.0,-9.0,3,17000.0,1013097,0.0,22745.0,2121.0 +1926771,1926771,1949128,1,18.0,1.0,-9.0,-9.0,3,66500.0,1035838,0.0,22745.0,2121.0 +1926772,1926772,1949129,1,18.0,4.0,-9.0,-9.0,3,25000.0,1070673,0.0,22745.0,2121.0 +1926773,1926773,1949130,1,18.0,2.0,-9.0,-9.0,3,26400.0,1054346,0.0,22745.0,2121.0 +1926774,1926774,1949131,1,18.0,1.0,-9.0,-9.0,3,20500.0,1070673,0.0,22745.0,2121.0 +1926775,1926775,1949132,1,18.0,1.0,-9.0,-9.0,3,64500.0,1070673,0.0,22745.0,2121.0 +1926776,1926776,1949133,1,18.0,1.0,-9.0,-9.0,3,24500.0,1054346,0.0,22745.0,2121.0 +1926777,1926777,1949134,1,18.0,4.0,-9.0,-9.0,3,68000.0,1061242,0.0,22745.0,2121.0 +1926778,1926778,1949135,1,18.0,1.0,-9.0,-9.0,3,10600.0,1070673,0.0,22745.0,2121.0 +1926779,1926779,1949136,1,18.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22745.0,2121.0 +1926780,1926780,1949137,1,18.0,1.0,-9.0,-9.0,3,30000.0,1061242,0.0,22745.0,2121.0 +1926781,1926781,1949138,1,18.0,4.0,-9.0,-9.0,3,10800.0,1070673,0.0,22745.0,2121.0 +1926782,1926782,1949139,1,18.0,1.0,-9.0,-9.0,3,17500.0,1061242,0.0,22745.0,2121.0 +1926783,1926783,1949140,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22745.0,2121.0 +1926784,1926784,1949141,1,18.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22745.0,2121.0 +1926785,1926785,1949142,1,18.0,1.0,-9.0,-9.0,3,28550.0,1054346,0.0,22745.0,2121.0 +1926786,1926786,1949143,1,18.0,4.0,-9.0,-9.0,3,72000.0,1013097,0.0,22745.0,2121.0 +1926787,1926787,1949144,1,18.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22745.0,2121.0 +1926788,1926788,1949145,1,18.0,3.0,-9.0,-9.0,3,13600.0,1070673,0.0,22745.0,2121.0 +1926789,1926789,1949146,1,18.0,1.0,-9.0,-9.0,3,4300.0,1061242,0.0,22745.0,2121.0 +1926790,1926790,1949147,1,18.0,4.0,-9.0,-9.0,3,650.0,1013097,0.0,22745.0,2121.0 +1926791,1926791,1949148,1,18.0,4.0,-9.0,-9.0,3,65000.0,1070673,0.0,22745.0,2121.0 +1926792,1926792,1949149,1,18.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22745.0,2121.0 +1926793,1926793,1949150,1,18.0,2.0,-9.0,-9.0,3,37000.0,1013097,0.0,22745.0,2121.0 +1926794,1926794,1949151,1,18.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22745.0,2121.0 +1926795,1926795,1949152,1,18.0,1.0,-9.0,-9.0,3,7600.0,1013097,0.0,22745.0,2121.0 +1926796,1926796,1949153,1,18.0,1.0,-9.0,-9.0,3,14000.0,1054346,0.0,22745.0,2121.0 +1926797,1926797,1949154,1,18.0,2.0,-9.0,-9.0,3,67000.0,1061242,0.0,22745.0,2121.0 +1926798,1926798,1949155,1,18.0,1.0,-9.0,-9.0,3,14200.0,1054346,0.0,22745.0,2121.0 +1926799,1926799,1949156,1,18.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22745.0,2121.0 +1926800,1926800,1949157,1,18.0,4.0,-9.0,-9.0,3,15000.0,1054346,0.0,22745.0,2121.0 +1926801,1926801,1949158,1,18.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22745.0,2121.0 +1926802,1926802,1949159,1,18.0,1.0,-9.0,-9.0,3,27000.0,1061242,0.0,22745.0,2121.0 +1926803,1926803,1949160,1,18.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22745.0,2121.0 +1926804,1926804,1949161,1,18.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22745.0,2121.0 +1926805,1926805,1949162,1,18.0,2.0,-9.0,-9.0,3,400.0,1070673,0.0,22745.0,2121.0 +1926806,1926806,1949163,1,18.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22745.0,2121.0 +1926807,1926807,1949164,1,18.0,1.0,-9.0,-9.0,3,27150.0,1013097,0.0,22745.0,2121.0 +1926808,1926808,1949165,1,18.0,1.0,-9.0,-9.0,3,35000.0,1035838,0.0,22745.0,2121.0 +1926809,1926809,1949166,1,18.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22745.0,2121.0 +1926810,1926810,1949167,1,18.0,1.0,-9.0,-9.0,3,31750.0,1035838,0.0,22745.0,2121.0 +1926811,1926811,1949168,1,18.0,1.0,-9.0,-9.0,3,1000.0,1054346,0.0,22745.0,2121.0 +1926812,1926812,1949169,1,18.0,4.0,-9.0,-9.0,3,29300.0,1035838,0.0,22745.0,2121.0 +1926813,1926813,1949170,1,18.0,1.0,-9.0,-9.0,3,500.0,1054346,0.0,22745.0,2121.0 +1926814,1926814,1949171,1,18.0,1.0,-9.0,-9.0,3,2600.0,1054346,0.0,22745.0,2121.0 +1926815,1926815,1949172,1,18.0,1.0,-9.0,-9.0,3,20000.0,1061242,0.0,22745.0,2121.0 +1926816,1926816,1949173,1,18.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22745.0,2121.0 +1926817,1926817,1949174,1,18.0,2.0,-9.0,-9.0,3,27000.0,1013097,0.0,22745.0,2121.0 +1926818,1926818,1949175,1,18.0,1.0,-9.0,-9.0,3,3400.0,1054346,0.0,22745.0,2121.0 +1926819,1926819,1949176,1,18.0,2.0,-9.0,-9.0,3,9000.0,1013097,0.0,22745.0,2121.0 +1926820,1926820,1949177,1,18.0,1.0,-9.0,-9.0,3,38000.0,1013097,0.0,22745.0,2121.0 +1926821,1926821,1949178,1,18.0,1.0,-9.0,-9.0,3,30000.0,1061242,0.0,22745.0,2121.0 +1926822,1926822,1949179,1,18.0,4.0,-9.0,-9.0,3,64001.0,1061242,0.0,22745.0,2121.0 +1926823,1926823,1949180,1,18.0,1.0,-9.0,-9.0,3,24500.0,1054346,0.0,22745.0,2121.0 +1926824,1926824,1949181,1,18.0,1.0,-9.0,-9.0,3,30100.0,1013097,0.0,22745.0,2121.0 +1926825,1926825,1949182,1,18.0,4.0,-9.0,-9.0,3,13000.0,1054346,0.0,22745.0,2121.0 +1926826,1926826,1949183,1,18.0,1.0,-9.0,-9.0,3,5800.0,1013097,0.0,22745.0,2121.0 +1926827,1926827,1949184,1,18.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22745.0,2121.0 +1926828,1926828,1949185,1,18.0,2.0,-9.0,-9.0,3,400.0,1070673,0.0,22745.0,2121.0 +1926829,1926829,1949186,1,18.0,4.0,-9.0,-9.0,3,62001.0,1070673,0.0,22745.0,2121.0 +1926830,1926830,1949187,1,18.0,2.0,-9.0,-9.0,3,10000.0,1070673,0.0,22745.0,2121.0 +1926831,1926831,1949188,1,18.0,1.0,-9.0,-9.0,3,7200.0,1013097,0.0,22745.0,2121.0 +1926832,1926832,1949189,1,18.0,1.0,-9.0,-9.0,3,2000.0,1013097,0.0,22745.0,2121.0 +1926833,1926833,1949190,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22745.0,2121.0 +1926834,1926834,1949191,1,18.0,1.0,-9.0,-9.0,3,5800.0,1013097,0.0,22745.0,2121.0 +1926835,1926835,1949192,1,18.0,1.0,-9.0,-9.0,3,13150.0,1061242,0.0,22745.0,2121.0 +1926836,1926836,1949193,1,18.0,2.0,-9.0,-9.0,3,2200.0,1035838,0.0,22745.0,2121.0 +1926837,1926837,1949194,1,18.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22745.0,2121.0 +1926838,1926838,1949195,1,18.0,1.0,-9.0,-9.0,3,0.0,1054346,0.0,22745.0,2121.0 +1926839,1926839,1949196,1,18.0,1.0,-9.0,-9.0,3,30400.0,1035838,0.0,22745.0,2121.0 +1926840,1926840,1949197,1,18.0,4.0,-9.0,-9.0,3,35030.0,1054346,0.0,22745.0,2121.0 +1926841,1926841,1949198,1,18.0,1.0,-9.0,-9.0,3,530.0,1035838,0.0,22745.0,2121.0 +1926842,1926842,1949199,1,18.0,1.0,-9.0,-9.0,3,1200.0,1070673,0.0,22745.0,2121.0 +1926843,1926843,1949200,1,18.0,1.0,-9.0,-9.0,3,17000.0,1054346,0.0,22745.0,2121.0 +1926844,1926844,1949201,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22745.0,2121.0 +1926845,1926845,1949202,1,18.0,1.0,-9.0,-9.0,3,8000.0,1013097,0.0,22745.0,2121.0 +1926846,1926846,1949203,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22745.0,2121.0 +1926847,1926847,1949204,1,18.0,2.0,-9.0,-9.0,3,30000.0,1013097,0.0,22745.0,2121.0 +1926848,1926848,1949205,1,18.0,1.0,-9.0,-9.0,3,30500.0,1061242,0.0,22745.0,2121.0 +1926849,1926849,1949206,1,18.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22745.0,2121.0 +1926850,1926850,1949207,1,18.0,1.0,-9.0,-9.0,3,28000.0,1054346,0.0,22745.0,2121.0 +1926851,1926851,1949208,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22745.0,2121.0 +1926852,1926852,1949209,1,18.0,4.0,-9.0,-9.0,3,45060.0,1070673,0.0,22745.0,2121.0 +1926853,1926853,1949210,1,18.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22745.0,2121.0 +1926854,1926854,1949211,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22745.0,2121.0 +1926855,1926855,1949212,1,18.0,4.0,-9.0,-9.0,3,32000.0,1070673,0.0,22745.0,2121.0 +1926856,1926856,1949213,1,18.0,1.0,-9.0,-9.0,3,30500.0,1061242,0.0,22745.0,2121.0 +1926857,1926857,1949214,1,18.0,2.0,-9.0,-9.0,3,15500.0,1061242,0.0,22745.0,2121.0 +1926858,1926858,1949215,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22745.0,2121.0 +1926859,1926859,1949216,1,18.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22745.0,2121.0 +1926860,1926860,1949217,1,18.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22745.0,2121.0 +1926861,1926861,1949218,1,18.0,1.0,-9.0,-9.0,3,22000.0,1035838,0.0,22745.0,2121.0 +1926862,1926862,1949219,1,18.0,1.0,-9.0,-9.0,3,8000.0,1054346,0.0,22745.0,2121.0 +1926863,1926863,1949220,1,18.0,1.0,-9.0,-9.0,3,29000.0,1061242,0.0,22745.0,2121.0 +1926864,1926864,1949221,1,18.0,1.0,-9.0,-9.0,3,16300.0,1035838,0.0,22745.0,2121.0 +1926865,1926865,1949222,1,18.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22745.0,2121.0 +1926866,1926866,1949223,1,18.0,4.0,-9.0,-9.0,3,26000.0,1061242,0.0,22745.0,2121.0 +1926867,1926867,1949224,1,18.0,1.0,-9.0,-9.0,3,22380.0,1061242,0.0,22745.0,2121.0 +1926868,1926868,1949225,1,18.0,1.0,-9.0,-9.0,3,5000.0,1070673,0.0,22745.0,2121.0 +1926869,1926869,1949226,1,18.0,3.0,-9.0,-9.0,3,30000.0,1013097,0.0,22745.0,2121.0 +1926870,1926870,1949227,1,18.0,4.0,-9.0,-9.0,3,32000.0,1070673,0.0,22745.0,2121.0 +1926871,1926871,1949228,1,18.0,1.0,-9.0,-9.0,3,32000.0,1054346,0.0,22745.0,2121.0 +1926872,1926872,1949229,1,18.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22745.0,2121.0 +1926873,1926873,1949230,1,18.0,4.0,-9.0,-9.0,3,6700.0,1035838,0.0,22745.0,2121.0 +1926874,1926874,1949231,1,18.0,2.0,-9.0,-9.0,3,400.0,1070673,0.0,22745.0,2121.0 +1926875,1926875,1949232,1,18.0,1.0,-9.0,-9.0,3,1000.0,1070673,0.0,22745.0,2121.0 +1926876,1926876,1949233,1,18.0,3.0,-9.0,-9.0,3,9890.0,1035838,0.0,22745.0,2121.0 +1926877,1926877,1949234,1,18.0,1.0,-9.0,-9.0,3,1100.0,1035838,0.0,22745.0,2121.0 +1926878,1926878,1949235,1,18.0,3.0,-9.0,-9.0,3,44200.0,1035838,0.0,22745.0,2121.0 +1926879,1926879,1949236,1,18.0,3.0,-9.0,-9.0,3,9500.0,1013097,0.0,22745.0,2121.0 +1926880,1926880,1949237,1,18.0,2.0,-9.0,-9.0,3,0.0,1061242,0.0,22745.0,2121.0 +1926881,1926881,1949238,1,18.0,1.0,-9.0,-9.0,3,27000.0,1054346,0.0,22745.0,2121.0 +1926882,1926882,1949239,1,18.0,1.0,-9.0,-9.0,3,65050.0,1054346,0.0,22745.0,2121.0 +1926883,1926883,1949240,1,18.0,1.0,-9.0,-9.0,3,24500.0,1054346,0.0,22745.0,2121.0 +1926884,1926884,1949241,1,18.0,2.0,-9.0,-9.0,3,7300.0,1035838,0.0,22745.0,2121.0 +1926885,1926885,1949242,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22745.0,2121.0 +1926886,1926886,1949243,1,18.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22745.0,2121.0 +1926887,1926887,1949244,1,18.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22745.0,2121.0 +1926888,1926888,1949245,1,18.0,2.0,-9.0,-9.0,3,13000.0,1070673,0.0,22745.0,2121.0 +1926889,1926889,1949246,1,18.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22745.0,2121.0 +1926890,1926890,1949247,1,18.0,2.0,-9.0,-9.0,3,7400.0,1054346,0.0,22745.0,2121.0 +1926891,1926891,1949248,1,18.0,1.0,-9.0,-9.0,3,15500.0,1070673,0.0,22745.0,2121.0 +1926892,1926892,1949249,1,18.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22745.0,2121.0 +1926893,1926893,1949250,1,18.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22745.0,2121.0 +1926894,1926894,1949251,1,18.0,3.0,-9.0,-9.0,3,69100.0,1035838,0.0,22745.0,2121.0 +1926895,1926895,1949252,1,18.0,1.0,-9.0,-9.0,3,27000.0,1054346,0.0,22745.0,2121.0 +1926896,1926896,1949253,1,19.0,1.0,-9.0,-9.0,3,21000.0,1013097,0.0,22745.0,2121.0 +1926897,1926897,1949254,1,19.0,2.0,-9.0,-9.0,3,4850.0,1035838,0.0,22745.0,2121.0 +1926898,1926898,1949255,1,19.0,1.0,-9.0,-9.0,3,65000.0,1070673,0.0,22745.0,2121.0 +1926899,1926899,1949256,1,19.0,2.0,-9.0,-9.0,3,10000.0,1061242,0.0,22745.0,2121.0 +1926900,1926900,1949257,1,19.0,1.0,-9.0,-9.0,3,8200.0,1070673,0.0,22745.0,2121.0 +1926901,1926901,1949258,1,19.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22745.0,2121.0 +1926902,1926902,1949259,1,19.0,1.0,-9.0,-9.0,3,22000.0,1061242,0.0,22745.0,2121.0 +1926903,1926903,1949260,1,19.0,1.0,-9.0,-9.0,3,13200.0,1054346,0.0,22745.0,2121.0 +1926904,1926904,1949261,1,19.0,2.0,-9.0,-9.0,3,2600.0,1035838,0.0,22745.0,2121.0 +1926905,1926905,1949262,1,19.0,1.0,-9.0,-9.0,3,14300.0,1013097,0.0,22745.0,2121.0 +1926906,1926906,1949263,1,19.0,1.0,-9.0,-9.0,3,65300.0,1061242,0.0,22745.0,2121.0 +1926907,1926907,1949264,1,19.0,2.0,-9.0,-9.0,3,9800.0,1035838,0.0,22745.0,2121.0 +1926908,1926908,1949265,1,19.0,4.0,-9.0,-9.0,3,69300.0,1061242,0.0,22745.0,2121.0 +1926909,1926909,1949266,1,19.0,1.0,-9.0,-9.0,3,3000.0,1061242,0.0,22745.0,2121.0 +1926910,1926910,1949267,1,19.0,3.0,-9.0,-9.0,3,28000.0,1061242,0.0,22745.0,2121.0 +1926911,1926911,1949268,1,19.0,1.0,-9.0,-9.0,3,73650.0,1013097,0.0,22745.0,2121.0 +1926912,1926912,1949269,1,19.0,1.0,-9.0,-9.0,3,20480.0,1035838,0.0,22745.0,2121.0 +1926913,1926913,1949270,1,19.0,1.0,-9.0,-9.0,3,31500.0,1061242,0.0,22745.0,2121.0 +1926914,1926914,1949271,1,19.0,1.0,-9.0,-9.0,3,8000.0,1013097,0.0,22745.0,2121.0 +1926915,1926915,1949272,1,19.0,3.0,-9.0,-9.0,3,24000.0,1054346,0.0,22745.0,2121.0 +1926916,1926916,1949273,1,19.0,4.0,-9.0,-9.0,3,14000.0,1013097,0.0,22745.0,2121.0 +1926917,1926917,1949274,1,19.0,1.0,-9.0,-9.0,3,11000.0,1061242,0.0,22745.0,2121.0 +1926918,1926918,1949275,1,19.0,1.0,-9.0,-9.0,3,2000.0,1054346,0.0,22745.0,2121.0 +1926919,1926919,1949276,1,19.0,1.0,-9.0,-9.0,3,26000.0,1061242,0.0,22745.0,2121.0 +1926920,1926920,1949277,1,19.0,3.0,-9.0,-9.0,3,8000.0,1070673,0.0,22745.0,2121.0 +1926921,1926921,1949278,1,19.0,1.0,-9.0,-9.0,3,15000.0,1061242,0.0,22745.0,2121.0 +1926922,1926922,1949279,1,19.0,1.0,-9.0,-9.0,3,13000.0,1070673,0.0,22745.0,2121.0 +1926923,1926923,1949280,1,19.0,1.0,-9.0,-9.0,3,26500.0,1070673,0.0,22745.0,2121.0 +1926924,1926924,1949281,1,19.0,1.0,-9.0,-9.0,3,20000.0,1061242,0.0,22745.0,2121.0 +1926925,1926925,1949282,1,19.0,4.0,-9.0,-9.0,3,29000.0,1035838,0.0,22745.0,2121.0 +1926926,1926926,1949283,1,19.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22745.0,2121.0 +1926927,1926927,1949284,1,19.0,1.0,-9.0,-9.0,3,32000.0,1013097,0.0,22745.0,2121.0 +1926928,1926928,1949285,1,19.0,1.0,-9.0,-9.0,3,35000.0,1035838,0.0,22745.0,2121.0 +1926929,1926929,1949286,1,19.0,1.0,-9.0,-9.0,3,3500.0,1035838,0.0,22745.0,2121.0 +1926930,1926930,1949287,1,19.0,1.0,-9.0,-9.0,3,7500.0,1070673,0.0,22745.0,2121.0 +1926931,1926931,1949288,1,19.0,4.0,-9.0,-9.0,3,13000.0,1054346,0.0,22745.0,2121.0 +1926932,1926932,1949289,1,19.0,1.0,-9.0,-9.0,3,35500.0,1013097,0.0,22745.0,2121.0 +1926933,1926933,1949290,1,19.0,1.0,-9.0,-9.0,3,65200.0,1061242,0.0,22745.0,2121.0 +1926934,1926934,1949291,1,19.0,1.0,-9.0,-9.0,3,9500.0,1054346,0.0,22745.0,2121.0 +1926935,1926935,1949292,1,19.0,1.0,-9.0,-9.0,3,76700.0,1061242,0.0,22745.0,2121.0 +1926936,1926936,1949293,1,19.0,1.0,-9.0,-9.0,3,500.0,1061242,0.0,22745.0,2121.0 +1926937,1926937,1949294,1,19.0,1.0,-9.0,-9.0,3,32500.0,1013097,0.0,22745.0,2121.0 +1926938,1926938,1949295,1,19.0,1.0,-9.0,-9.0,3,13150.0,1061242,0.0,22745.0,2121.0 +1926939,1926939,1949296,1,19.0,4.0,-9.0,-9.0,3,650.0,1013097,0.0,22745.0,2121.0 +1926940,1926940,1949297,1,19.0,2.0,-9.0,-9.0,3,68500.0,1054346,0.0,22745.0,2121.0 +1926941,1926941,1949298,1,19.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22745.0,2121.0 +1926942,1926942,1949299,1,19.0,4.0,-9.0,-9.0,3,15000.0,1070673,0.0,22745.0,2121.0 +1926943,1926943,1949300,1,19.0,1.0,-9.0,-9.0,3,1600.0,1061242,0.0,22745.0,2121.0 +1926944,1926944,1949301,1,19.0,1.0,-9.0,-9.0,3,66500.0,1035838,0.0,22745.0,2121.0 +1926945,1926945,1949302,1,19.0,1.0,-9.0,-9.0,3,10000.0,1061242,0.0,22745.0,2121.0 +1926946,1926946,1949303,1,19.0,4.0,-9.0,-9.0,3,28500.0,1054346,0.0,22745.0,2121.0 +1926947,1926947,1949304,1,19.0,1.0,-9.0,-9.0,3,13000.0,1070673,0.0,22745.0,2121.0 +1926948,1926948,1949305,1,19.0,4.0,-9.0,-9.0,3,69300.0,1061242,0.0,22745.0,2121.0 +1926949,1926949,1949306,1,19.0,4.0,-9.0,-9.0,3,70000.0,1061242,0.0,22745.0,2121.0 +1926950,1926950,1949307,1,19.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22745.0,2121.0 +1926951,1926951,1949308,1,19.0,1.0,-9.0,-9.0,3,5200.0,1061242,0.0,22745.0,2121.0 +1926952,1926952,1949309,1,19.0,1.0,-9.0,-9.0,3,5200.0,1061242,0.0,22745.0,2121.0 +1926953,1926953,1949310,1,19.0,1.0,-9.0,-9.0,3,20000.0,1061242,0.0,22745.0,2121.0 +1926954,1926954,1949311,1,19.0,1.0,-9.0,-9.0,3,15500.0,1061242,0.0,22745.0,2121.0 +1926955,1926955,1949312,1,19.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22745.0,2121.0 +1926956,1926956,1949313,1,19.0,1.0,-9.0,-9.0,3,5320.0,1054346,0.0,22745.0,2121.0 +1926957,1926957,1949314,1,19.0,1.0,-9.0,-9.0,3,69200.0,1070673,0.0,22745.0,2121.0 +1926958,1926958,1949315,1,19.0,1.0,-9.0,-9.0,3,24000.0,1054346,0.0,22745.0,2121.0 +1926959,1926959,1949316,1,19.0,1.0,-9.0,-9.0,3,17500.0,1054346,0.0,22745.0,2121.0 +1926960,1926960,1949317,1,19.0,1.0,-9.0,-9.0,3,26400.0,1070673,0.0,22745.0,2121.0 +1926961,1926961,1949318,1,19.0,1.0,-9.0,-9.0,3,65000.0,1054346,0.0,22745.0,2121.0 +1926962,1926962,1949319,1,19.0,1.0,-9.0,-9.0,3,66000.0,1070673,0.0,22745.0,2121.0 +1926963,1926963,1949320,1,19.0,4.0,-9.0,-9.0,3,45060.0,1070673,0.0,22745.0,2121.0 +1926964,1926964,1949321,1,19.0,1.0,-9.0,-9.0,3,19250.0,1070673,0.0,22745.0,2121.0 +1926965,1926965,1949322,1,19.0,1.0,-9.0,-9.0,3,25000.0,1061242,0.0,22745.0,2121.0 +1926966,1926966,1949323,1,19.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22745.0,2121.0 +1926967,1926967,1949324,1,19.0,3.0,-9.0,-9.0,3,10400.0,1070673,0.0,22745.0,2121.0 +1926968,1926968,1949325,1,19.0,1.0,-9.0,-9.0,3,28100.0,1061242,0.0,22745.0,2121.0 +1926969,1926969,1949326,1,19.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22745.0,2121.0 +1926970,1926970,1949327,1,19.0,4.0,-9.0,-9.0,3,31000.0,1013097,0.0,22745.0,2121.0 +1926971,1926971,1949328,1,19.0,1.0,-9.0,-9.0,3,13000.0,1054346,0.0,22745.0,2121.0 +1926972,1926972,1949329,1,19.0,4.0,-9.0,-9.0,3,30000.0,1013097,0.0,22745.0,2121.0 +1926973,1926973,1949330,1,19.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22745.0,2121.0 +1926974,1926974,1949331,1,19.0,1.0,-9.0,-9.0,3,43500.0,1035838,0.0,22745.0,2121.0 +1926975,1926975,1949332,1,19.0,1.0,-9.0,-9.0,3,75000.0,1013097,0.0,22745.0,2121.0 +1926976,1926976,1949333,1,19.0,2.0,-9.0,-9.0,3,9800.0,1035838,0.0,22745.0,2121.0 +1926977,1926977,1949334,1,19.0,4.0,-9.0,-9.0,3,10000.0,1013097,0.0,22745.0,2121.0 +1926978,1926978,1949335,1,19.0,1.0,-9.0,-9.0,3,65000.0,1035838,0.0,22745.0,2121.0 +1926979,1926979,1949336,1,19.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22745.0,2121.0 +1926980,1926980,1949337,1,19.0,4.0,-9.0,-9.0,3,23100.0,1070673,0.0,22745.0,2121.0 +1926981,1926981,1949338,1,19.0,1.0,-9.0,-9.0,3,0.0,1035838,0.0,22745.0,2121.0 +1926982,1926982,1949339,1,19.0,2.0,-9.0,-9.0,3,14000.0,1013097,0.0,22745.0,2121.0 +1926983,1926983,1949340,1,19.0,1.0,-9.0,-9.0,3,34000.0,1013097,0.0,22745.0,2121.0 +1926984,1926984,1949341,1,19.0,1.0,-9.0,-9.0,3,74500.0,1013097,0.0,22745.0,2121.0 +1926985,1926985,1949342,1,19.0,1.0,-9.0,-9.0,3,10500.0,1061242,0.0,22745.0,2121.0 +1926986,1926986,1949343,1,19.0,1.0,-9.0,-9.0,3,10700.0,1013097,0.0,22745.0,2121.0 +1926987,1926987,1949344,1,19.0,1.0,-9.0,-9.0,3,16000.0,1013097,0.0,22745.0,2121.0 +1926988,1926988,1949345,1,19.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22745.0,2121.0 +1926989,1926989,1949346,1,19.0,1.0,-9.0,-9.0,3,14000.0,1035838,0.0,22745.0,2121.0 +1926990,1926990,1949347,1,19.0,1.0,-9.0,-9.0,3,66300.0,1061242,0.0,22745.0,2121.0 +1926991,1926991,1949348,1,19.0,1.0,-9.0,-9.0,3,31300.0,1061242,0.0,22745.0,2121.0 +1926992,1926992,1949349,1,19.0,1.0,-9.0,-9.0,3,6000.0,1013097,0.0,22745.0,2121.0 +1926993,1926993,1949350,1,19.0,1.0,-9.0,-9.0,3,36500.0,1061242,0.0,22745.0,2121.0 +1926994,1926994,1949351,1,19.0,1.0,-9.0,-9.0,3,1800.0,1054346,0.0,22745.0,2121.0 +1926995,1926995,1949352,1,19.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22745.0,2121.0 +1926996,1926996,1949353,1,19.0,1.0,-9.0,-9.0,3,10700.0,1013097,0.0,22745.0,2121.0 +1926997,1926997,1949354,1,19.0,3.0,-9.0,-9.0,3,5000.0,1013097,0.0,22745.0,2121.0 +1926998,1926998,1949355,1,19.0,1.0,-9.0,-9.0,3,91000.0,1013097,0.0,22745.0,2121.0 +1926999,1926999,1949356,1,19.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22745.0,2121.0 +1927000,1927000,1949357,1,19.0,4.0,-9.0,-9.0,3,30300.0,1035838,0.0,22745.0,2121.0 +1927001,1927001,1949358,1,19.0,1.0,-9.0,-9.0,3,29400.0,1061242,0.0,22745.0,2121.0 +1927002,1927002,1949359,1,19.0,1.0,-9.0,-9.0,3,2000.0,1035838,0.0,22745.0,2121.0 +1927003,1927003,1949360,1,19.0,1.0,-9.0,-9.0,3,32500.0,1035838,0.0,22745.0,2121.0 +1927004,1927004,1949361,1,19.0,2.0,-9.0,-9.0,3,2200.0,1054346,0.0,22745.0,2121.0 +1927005,1927005,1949362,1,20.0,1.0,-9.0,-9.0,3,29000.0,1054346,0.0,22745.0,2121.0 +1927006,1927006,1949363,1,20.0,1.0,-9.0,-9.0,3,26000.0,1054346,0.0,22745.0,2121.0 +1927007,1927007,1949364,1,20.0,1.0,-9.0,-9.0,3,28600.0,1070673,0.0,22745.0,2121.0 +1927008,1927008,1949365,1,20.0,1.0,-9.0,-9.0,3,15500.0,1013097,0.0,22745.0,2121.0 +1927009,1927009,1949366,1,20.0,4.0,-9.0,-9.0,3,65300.0,1061242,0.0,22745.0,2121.0 +1927010,1927010,1949367,1,20.0,2.0,-9.0,-9.0,3,30000.0,1013097,0.0,22745.0,2121.0 +1927011,1927011,1949368,1,20.0,1.0,-9.0,-9.0,3,29000.0,1035838,0.0,22745.0,2121.0 +1927012,1927012,1949369,1,20.0,4.0,-9.0,-9.0,3,26600.0,1054346,0.0,22745.0,2121.0 +1927013,1927013,1949370,1,20.0,2.0,-9.0,-9.0,3,13000.0,1070673,0.0,22745.0,2121.0 +1927014,1927014,1949371,1,20.0,4.0,-9.0,-9.0,3,2000.0,1035838,0.0,22745.0,2121.0 +1927015,1927015,1949372,1,20.0,1.0,-9.0,-9.0,3,29000.0,1070673,0.0,22745.0,2121.0 +1927016,1927016,1949373,1,20.0,1.0,-9.0,-9.0,3,16000.0,1035838,0.0,22745.0,2121.0 +1927017,1927017,1949374,1,20.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22745.0,2121.0 +1927018,1927018,1949375,1,20.0,2.0,-9.0,-9.0,3,200.0,1035838,0.0,22745.0,2121.0 +1927019,1927019,1949376,1,20.0,4.0,-9.0,-9.0,3,64000.0,1054346,0.0,22745.0,2121.0 +1927020,1927020,1949377,1,20.0,2.0,-9.0,-9.0,3,35400.0,1054346,0.0,22745.0,2121.0 +1927021,1927021,1949378,1,20.0,1.0,-9.0,-9.0,3,20500.0,1070673,0.0,22745.0,2121.0 +1927022,1927022,1949379,1,20.0,2.0,-9.0,-9.0,3,6100.0,1070673,0.0,22745.0,2121.0 +1927023,1927023,1949380,1,20.0,1.0,-9.0,-9.0,3,27000.0,1061242,0.0,22745.0,2121.0 +1927024,1927024,1949381,1,20.0,4.0,-9.0,-9.0,3,73000.0,1013097,0.0,22745.0,2121.0 +1927025,1927025,1949382,1,20.0,1.0,-9.0,-9.0,3,30000.0,1013097,0.0,22745.0,2121.0 +1927026,1927026,1949383,1,20.0,1.0,-9.0,-9.0,3,18900.0,1061242,0.0,22745.0,2121.0 +1927027,1927027,1949384,1,20.0,2.0,-9.0,-9.0,3,6700.0,1061242,0.0,22745.0,2121.0 +1927028,1927028,1949385,1,20.0,4.0,-9.0,-9.0,3,11000.0,1035838,0.0,22745.0,2121.0 +1927029,1927029,1949386,1,20.0,1.0,-9.0,-9.0,3,41600.0,1054346,0.0,22745.0,2121.0 +1927030,1927030,1949387,1,20.0,2.0,-9.0,-9.0,3,330.0,1013097,0.0,22745.0,2121.0 +1927031,1927031,1949388,1,20.0,2.0,-9.0,-9.0,3,4800.0,1035838,0.0,22745.0,2121.0 +1927032,1927032,1949389,1,20.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22745.0,2121.0 +1927033,1927033,1949390,1,20.0,1.0,-9.0,-9.0,3,66000.0,1035838,0.0,22745.0,2121.0 +1927034,1927034,1949391,1,20.0,1.0,-9.0,-9.0,3,22500.0,1054346,0.0,22745.0,2121.0 +1927035,1927035,1949392,1,20.0,4.0,-9.0,-9.0,3,36000.0,1070673,0.0,22745.0,2121.0 +1927036,1927036,1949393,1,20.0,2.0,-9.0,-9.0,3,430.0,1013097,0.0,22745.0,2121.0 +1927037,1927037,1949394,1,20.0,4.0,-9.0,-9.0,3,30000.0,1070673,0.0,22745.0,2121.0 +1927038,1927038,1949395,1,20.0,1.0,-9.0,-9.0,3,15000.0,1054346,0.0,22745.0,2121.0 +1927039,1927039,1949396,1,20.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22745.0,2121.0 +1927040,1927040,1949397,1,21.0,1.0,-9.0,-9.0,3,6000.0,1013097,0.0,22745.0,2121.0 +1927041,1927041,1949398,1,21.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22745.0,2121.0 +1927042,1927042,1949399,1,21.0,1.0,-9.0,-9.0,3,65300.0,1070673,0.0,22745.0,2121.0 +1927043,1927043,1949400,1,21.0,1.0,-9.0,-9.0,3,66000.0,1070673,0.0,22745.0,2121.0 +1927044,1927044,1949401,1,21.0,3.0,-9.0,-9.0,3,8000.0,1070673,0.0,22745.0,2121.0 +1927045,1927045,1949402,1,21.0,1.0,-9.0,-9.0,3,24500.0,1061242,0.0,22745.0,2121.0 +1927046,1927046,1949403,1,21.0,2.0,-9.0,-9.0,3,2100.0,1061242,0.0,22745.0,2121.0 +1927047,1927047,1949404,1,21.0,1.0,-9.0,-9.0,3,42500.0,1035838,0.0,22745.0,2121.0 +1927048,1927048,1949405,1,21.0,1.0,-9.0,-9.0,3,30400.0,1061242,0.0,22745.0,2121.0 +1927049,1927049,1949406,1,22.0,4.0,-9.0,-9.0,3,14000.0,1013097,0.0,22745.0,2121.0 +1927050,1927050,1949407,1,22.0,1.0,-9.0,-9.0,3,36000.0,1035838,0.0,22745.0,2121.0 +1927051,1927051,1949408,1,22.0,1.0,-9.0,-9.0,3,1700.0,1035838,0.0,22745.0,2121.0 +1927052,1927052,1949409,1,22.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22745.0,2121.0 +1927053,1927053,1949410,1,22.0,1.0,-9.0,-9.0,3,3000.0,1061242,0.0,22745.0,2121.0 +1927054,1927054,1949411,1,22.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22745.0,2121.0 +1927055,1927055,1949412,1,22.0,1.0,-9.0,-9.0,3,22800.0,1013097,0.0,22745.0,2121.0 +1927056,1927056,1949413,1,22.0,1.0,-9.0,-9.0,3,18020.0,1013097,0.0,22745.0,2121.0 +1927057,1927057,1949414,1,22.0,1.0,-9.0,-9.0,3,38000.0,1054346,0.0,22745.0,2121.0 +1927058,1927058,1949415,1,22.0,1.0,-9.0,-9.0,3,31800.0,1035838,0.0,22745.0,2121.0 +1927059,1927059,1949416,1,22.0,1.0,-9.0,-9.0,3,13000.0,1070673,0.0,22745.0,2121.0 +1927060,1927060,1949417,1,24.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22745.0,2121.0 +1927061,1927061,1949418,1,24.0,4.0,-9.0,-9.0,3,73480.0,1013097,0.0,22745.0,2121.0 +1927062,1927062,1949419,1,25.0,2.0,-9.0,-9.0,3,52100.0,1054346,0.0,22745.0,2121.0 +1927063,1927063,1949420,1,25.0,2.0,-9.0,-9.0,3,0.0,1035838,0.0,22745.0,2121.0 +1927064,1927064,1949421,1,25.0,2.0,-9.0,-9.0,3,8000.0,1061242,0.0,22745.0,2121.0 +1927065,1927065,1949422,1,25.0,2.0,-9.0,-9.0,3,8300.0,1054346,0.0,22745.0,2121.0 +1927066,1927066,1949423,1,25.0,1.0,-9.0,-9.0,3,8800.0,1061242,0.0,22745.0,2121.0 +1927067,1927067,1949424,1,28.0,1.0,-9.0,-9.0,3,15500.0,1054346,0.0,22745.0,2121.0 +1927068,1927068,1949425,1,29.0,4.0,-9.0,-9.0,3,700.0,1013097,0.0,22745.0,2121.0 +1927069,1927069,1949426,1,29.0,4.0,-9.0,-9.0,3,24000.0,1035838,0.0,22745.0,2121.0 +1927070,1927070,1949427,1,29.0,4.0,-9.0,-9.0,3,6200.0,1013097,0.0,22745.0,2121.0 +1927071,1927071,1949428,1,29.0,4.0,-9.0,-9.0,3,0.0,1061242,0.0,22745.0,2121.0 +1927072,1927072,1949429,1,29.0,4.0,-9.0,-9.0,3,3600.0,1061242,0.0,22745.0,2121.0 +1927073,1927073,1949430,1,29.0,4.0,-9.0,-9.0,3,24000.0,1035838,0.0,22745.0,2121.0 +1927074,1927074,1949431,1,34.0,2.0,-9.0,-9.0,3,0.0,1070673,0.0,22745.0,2121.0 +1927075,1927075,1949432,1,35.0,4.0,-9.0,-9.0,3,2200.0,1054346,0.0,22745.0,2121.0 +1927076,1927076,1949433,1,35.0,4.0,-9.0,-9.0,3,2200.0,1054346,0.0,22745.0,2121.0 +1927077,1927077,1949434,1,37.0,2.0,-9.0,-9.0,3,6000.0,1070673,0.0,22745.0,2121.0 +1927078,1927078,1949435,1,42.0,1.0,-9.0,-9.0,3,8400.0,1035838,0.0,22745.0,2121.0 +1927079,1927079,1949436,1,42.0,1.0,-9.0,-9.0,3,9400.0,1054346,0.0,22745.0,2121.0 +1927080,1927080,1949437,1,42.0,1.0,-9.0,-9.0,3,10700.0,1035838,0.0,22745.0,2121.0 +1927081,1927081,1949438,1,51.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22745.0,2121.0 +1927082,1927082,1949439,1,51.0,1.0,-9.0,-9.0,3,11000.0,1035838,0.0,22745.0,2121.0 +1927083,1927083,1949440,1,51.0,4.0,-9.0,-9.0,3,9700.0,1035838,0.0,22745.0,2121.0 +1927084,1927084,1949441,1,51.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22745.0,2121.0 +1927085,1927085,1949442,1,51.0,1.0,-9.0,-9.0,3,15900.0,1070673,0.0,22745.0,2121.0 +1927086,1927086,1949443,1,51.0,1.0,-9.0,-9.0,3,28500.0,1061242,0.0,22745.0,2121.0 +1927087,1927087,1949444,1,51.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22745.0,2121.0 +1927088,1927088,1949445,1,51.0,1.0,-9.0,-9.0,3,10500.0,1070673,0.0,22745.0,2121.0 +1927089,1927089,1949446,1,51.0,1.0,-9.0,-9.0,3,30000.0,1035838,0.0,22745.0,2121.0 +1927090,1927090,1949447,1,51.0,1.0,-9.0,-9.0,3,25000.0,1013097,0.0,22745.0,2121.0 +1927091,1927091,1949448,1,51.0,1.0,-9.0,-9.0,3,10700.0,1035838,0.0,22745.0,2121.0 +1927092,1927092,1949449,1,53.0,1.0,-9.0,-9.0,3,24100.0,1013097,0.0,22745.0,2121.0 +1927093,1927093,1949450,1,54.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22745.0,2121.0 +1927094,1927094,1949451,1,54.0,1.0,-9.0,-9.0,3,10500.0,1070673,0.0,22745.0,2121.0 +1927095,1927095,1949452,1,58.0,1.0,-9.0,-9.0,3,10100.0,1061242,0.0,22745.0,2121.0 +1927096,1927096,1949453,1,58.0,1.0,-9.0,-9.0,3,14900.0,1054346,0.0,22745.0,2121.0 +1927097,1927097,1949454,1,60.0,1.0,-9.0,-9.0,3,15100.0,1054346,0.0,22745.0,2121.0 +1927098,1927098,1949455,1,60.0,1.0,-9.0,-9.0,3,6600.0,1061242,0.0,22745.0,2121.0 +1927099,1927099,1949456,1,62.0,1.0,-9.0,-9.0,3,11600.0,1013097,0.0,22745.0,2121.0 +1927100,1927100,1949457,1,64.0,3.0,-9.0,-9.0,3,0.0,1070673,0.0,22745.0,2121.0 +1927101,1927101,1949458,1,64.0,3.0,-9.0,-9.0,3,0.0,1013097,0.0,22745.0,2121.0 +1927102,1927102,1949459,1,64.0,3.0,-9.0,-9.0,3,26000.0,1035838,0.0,22745.0,2121.0 +1927103,1927103,1949460,1,64.0,3.0,-9.0,-9.0,3,8000.0,1061242,0.0,22745.0,2121.0 +1927104,1927104,1949461,1,64.0,3.0,-9.0,-9.0,3,26000.0,1035838,0.0,22745.0,2121.0 +1927105,1927105,1949462,1,64.0,3.0,-9.0,-9.0,3,8000.0,1061242,0.0,22745.0,2121.0 +1927106,1927106,1949463,1,64.0,3.0,-9.0,-9.0,3,7800.0,1070673,0.0,22745.0,2121.0 +1927107,1927107,1949464,1,64.0,3.0,-9.0,-9.0,3,8400.0,1061242,0.0,22745.0,2121.0 +1927108,1927108,1949465,1,64.0,3.0,-9.0,-9.0,3,8000.0,1061242,0.0,22745.0,2121.0 +1927109,1927109,1949466,1,78.0,1.0,-9.0,-9.0,3,12600.0,1061242,0.0,22745.0,2121.0 +1927114,1927114,1949770,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22757.0,2127.0 +1927154,1927154,1949810,1,18.0,1.0,-9.0,-9.0,3,81000.0,1013097,0.0,22757.0,2127.0 +1927198,1927198,1949854,1,18.0,2.0,-9.0,-9.0,3,360.0,1035838,0.0,22791.0,2140.0 +1927207,1927207,1949863,1,18.0,1.0,-9.0,-9.0,3,20000.0,1061242,0.0,22757.0,2127.0 +1927300,1927300,1949956,1,18.0,3.0,-9.0,-9.0,3,66600.0,1035838,0.0,22757.0,2127.0 +1927381,1927381,1950037,1,18.0,4.0,-9.0,-9.0,3,17000.0,1061242,0.0,22757.0,2127.0 +1927410,1927410,1950066,1,18.0,1.0,-9.0,-9.0,3,0.0,1061242,0.0,22757.0,2127.0 +1927447,1927447,1950103,1,19.0,1.0,-9.0,-9.0,3,28000.0,1070673,0.0,22757.0,2127.0 +1927490,1927490,1950146,1,19.0,1.0,-9.0,-9.0,3,67300.0,1061242,0.0,22757.0,2127.0 +1927535,1927535,1950191,1,19.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22791.0,2140.0 +1927555,1927555,1950211,1,19.0,1.0,-9.0,-9.0,3,2840.0,1013097,0.0,22757.0,2127.0 +1927580,1927580,1950236,1,19.0,1.0,-9.0,-9.0,3,1600.0,1013097,0.0,22757.0,2127.0 +1927636,1927636,1950292,1,19.0,4.0,-9.0,-9.0,3,790.0,1035838,0.0,22791.0,2140.0 +1927941,1927941,1950597,1,24.0,4.0,-9.0,-9.0,3,67150.0,1035838,0.0,22791.0,2140.0 +1927976,1927976,1950632,1,25.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22757.0,2127.0 +1928050,1928050,1950706,1,42.0,1.0,-9.0,-9.0,3,4000.0,1070673,0.0,22791.0,2140.0 +1932567,1932567,1959374,1,18.0,4.0,-9.0,-9.0,3,650.0,1013097,0.0,22734.0,2115.0 +1932568,1932568,1959375,1,18.0,2.0,-9.0,-9.0,3,13000.0,1061242,0.0,22702.0,2110.0 +1932570,1932570,1959377,1,18.0,4.0,-9.0,-9.0,3,30800.0,1035838,0.0,22681.0,2107.0 +1932571,1932571,1959378,1,18.0,1.0,-9.0,-9.0,3,5500.0,1035838,0.0,22681.0,2107.0 +1932573,1932573,1959380,1,18.0,3.0,-9.0,-9.0,3,0.0,1054346,0.0,22681.0,2107.0 +1932679,1932679,1959486,1,19.0,1.0,-9.0,-9.0,3,1000.0,1013097,0.0,22734.0,2115.0 +1932683,1932683,1959490,1,19.0,1.0,-9.0,-9.0,3,70500.0,1054346,0.0,22681.0,2107.0 +1932687,1932687,1959494,1,19.0,1.0,-9.0,-9.0,3,40000.0,1070673,0.0,22702.0,2110.0 +1932691,1932691,1959498,1,19.0,1.0,-9.0,-9.0,3,1500.0,1061242,0.0,22681.0,2107.0 +1932697,1932697,1959504,1,19.0,1.0,-9.0,-9.0,3,31100.0,1013097,0.0,22734.0,2115.0 +1932987,1932987,1959794,1,65.0,1.0,-9.0,-9.0,3,10200.0,1070673,0.0,22734.0,2115.0 +1935132,1935132,1965277,1,18.0,2.0,-9.0,-9.0,3,13200.0,1054346,0.0,22745.0,2121.0 +1935133,1935133,1965278,1,18.0,1.0,-9.0,-9.0,3,26200.0,1054346,0.0,22745.0,2121.0 +1935134,1935134,1965280,1,18.0,3.0,-9.0,-9.0,3,12000.0,1013097,0.0,22745.0,2121.0 +1935135,1935135,1965281,1,18.0,4.0,-9.0,-9.0,3,30000.0,1054346,0.0,22745.0,2121.0 +1935136,1935136,1965282,1,18.0,4.0,-9.0,-9.0,3,75500.0,1054346,0.0,22745.0,2121.0 +1935137,1935137,1965285,1,18.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22745.0,2121.0 +1935138,1935138,1965286,1,18.0,1.0,-9.0,-9.0,3,6400.0,1070673,0.0,22745.0,2121.0 +1935139,1935139,1965288,1,42.0,1.0,-9.0,-9.0,3,8800.0,1054346,0.0,22745.0,2121.0 +1935140,1935140,1965291,1,18.0,4.0,-9.0,-9.0,3,13500.0,1054346,0.0,22745.0,2121.0 +1935141,1935141,1965295,1,29.0,4.0,-9.0,-9.0,3,70000.0,1013097,0.0,22745.0,2121.0 +1935142,1935142,1965296,1,17.0,3.0,-9.0,1.0,3,0.0,1070673,0.0,22745.0,2121.0 +1935143,1935143,1965298,1,19.0,2.0,-9.0,-9.0,3,7400.0,1054346,0.0,22745.0,2121.0 +1935144,1935144,1965299,1,18.0,4.0,-9.0,-9.0,3,68000.0,1054346,0.0,22745.0,2121.0 +1935145,1935145,1965301,1,21.0,1.0,-9.0,-9.0,3,31300.0,1061242,0.0,22745.0,2121.0 +1935146,1935146,1965303,1,20.0,1.0,-9.0,-9.0,3,28500.0,1061242,0.0,22745.0,2121.0 +1935147,1935147,1965304,1,19.0,1.0,-9.0,-9.0,3,66500.0,1035838,0.0,22745.0,2121.0 +1935148,1935148,1965306,1,18.0,1.0,-9.0,-9.0,3,32500.0,1070673,0.0,22745.0,2121.0 +1935149,1935149,1965307,1,20.0,4.0,-9.0,-9.0,3,26000.0,1013097,0.0,22745.0,2121.0 +1935150,1935150,1965308,1,18.0,4.0,-9.0,-9.0,3,18000.0,1070673,0.0,22745.0,2121.0 +1935151,1935151,1965309,1,18.0,3.0,-9.0,-9.0,3,29800.0,1054346,0.0,22745.0,2121.0 +1935152,1935152,1965310,1,18.0,1.0,-9.0,-9.0,3,31000.0,1054346,0.0,22745.0,2121.0 +1935153,1935153,1965312,1,18.0,3.0,-9.0,-9.0,3,13000.0,1013097,0.0,22745.0,2121.0 +1935154,1935154,1965313,1,22.0,4.0,-9.0,-9.0,3,0.0,1013097,0.0,22745.0,2121.0 +1935155,1935155,1965314,1,19.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22745.0,2121.0 +1935156,1935156,1965315,1,18.0,1.0,-9.0,-9.0,3,51000.0,1061242,0.0,22745.0,2121.0 +1935157,1935157,1965316,1,24.0,4.0,-9.0,-9.0,3,68000.0,1054346,0.0,22745.0,2121.0 +1935158,1935158,1965317,1,18.0,1.0,-9.0,-9.0,3,600.0,1035838,0.0,22745.0,2121.0 +1935374,1935374,1965897,1,18.0,1.0,-9.0,-9.0,3,9000.0,1061242,0.0,22745.0,2121.0 +1935375,1935375,1965901,1,18.0,1.0,-9.0,-9.0,3,39500.0,1054346,0.0,22745.0,2121.0 +1935376,1935376,1965903,1,51.0,1.0,-9.0,-9.0,3,0.0,1013097,0.0,22745.0,2121.0 +1935377,1935377,1965904,1,19.0,1.0,-9.0,-9.0,3,1000.0,1013097,0.0,22745.0,2121.0 +1935378,1935378,1965905,1,19.0,4.0,-9.0,-9.0,3,25000.0,1061242,0.0,22745.0,2121.0 +1935379,1935379,1965907,1,19.0,1.0,-9.0,-9.0,3,15500.0,1061242,0.0,22745.0,2121.0 +1935380,1935380,1965910,1,17.0,3.0,-9.0,1.0,3,0.0,1054346,0.0,22745.0,2121.0 +1935381,1935381,1965911,1,19.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22745.0,2121.0 +1935382,1935382,1965913,1,21.0,1.0,-9.0,-9.0,3,31500.0,1054346,0.0,22745.0,2121.0 +1935383,1935383,1965915,1,19.0,2.0,-9.0,-9.0,3,200.0,1035838,0.0,22745.0,2121.0 +1935384,1935384,1965916,1,18.0,4.0,-9.0,-9.0,3,29000.0,1054346,0.0,22745.0,2121.0 +1935385,1935385,1965917,1,22.0,2.0,-9.0,-9.0,3,27500.0,1054346,0.0,22745.0,2121.0 +1935386,1935386,1965918,1,19.0,1.0,-9.0,-9.0,3,5000.0,1054346,0.0,22745.0,2121.0 +1935387,1935387,1965920,1,18.0,1.0,-9.0,-9.0,3,43000.0,1054346,0.0,22745.0,2121.0 +1935388,1935388,1965921,1,19.0,1.0,-9.0,-9.0,3,5300.0,1013097,0.0,22745.0,2121.0 +1935389,1935389,1965922,1,35.0,4.0,-9.0,-9.0,3,980.0,1070673,0.0,22745.0,2121.0 +1935390,1935390,1965923,1,19.0,1.0,-9.0,-9.0,3,46000.0,1061242,0.0,22745.0,2121.0 +1935391,1935391,1965925,1,19.0,4.0,-9.0,-9.0,3,62400.0,1070673,0.0,22745.0,2121.0 +1935392,1935392,1965929,1,19.0,4.0,-9.0,-9.0,3,28000.0,1013097,0.0,22745.0,2121.0 +1935393,1935393,1965930,1,18.0,1.0,-9.0,-9.0,3,64000.0,1061242,0.0,22745.0,2121.0 +1935394,1935394,1965932,1,19.0,1.0,-9.0,-9.0,3,68000.0,1054346,0.0,22745.0,2121.0 +1935395,1935395,1965933,1,21.0,1.0,-9.0,-9.0,3,73200.0,1013097,0.0,22745.0,2121.0 +1935396,1935396,1965934,1,18.0,4.0,-9.0,-9.0,3,69000.0,1054346,0.0,22745.0,2121.0 +1935397,1935397,1965935,1,19.0,4.0,-9.0,-9.0,3,18000.0,1054346,0.0,22745.0,2121.0 +1935398,1935398,1965936,1,19.0,1.0,-9.0,-9.0,3,69400.0,1035838,0.0,22745.0,2121.0 +1935399,1935399,1965937,1,18.0,1.0,-9.0,-9.0,3,28500.0,1061242,0.0,22745.0,2121.0 +1935697,1935697,1966895,1,24.0,4.0,-9.0,-9.0,3,66000.0,1070673,0.0,22745.0,2121.0 +1935698,1935698,1966896,1,18.0,1.0,-9.0,-9.0,3,10600.0,1070673,0.0,22745.0,2121.0 +1935699,1935699,1966899,1,18.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22745.0,2121.0 +1935700,1935700,1966900,1,18.0,1.0,-9.0,-9.0,3,0.0,1070673,0.0,22745.0,2121.0 +1935701,1935701,1966901,1,18.0,1.0,-9.0,-9.0,3,5500.0,1061242,0.0,22745.0,2121.0 +1938022,1938022,1970854,1,18.0,4.0,-9.0,-9.0,3,64001.0,1061242,0.0,22745.0,2121.0 +1938023,1938023,1970856,1,19.0,1.0,-9.0,-9.0,3,64000.0,1070673,0.0,22745.0,2121.0 +1938024,1938024,1970857,1,19.0,3.0,-9.0,-9.0,3,600.0,1054346,0.0,22745.0,2121.0 +1938025,1938025,1970858,1,19.0,1.0,-9.0,-9.0,3,35700.0,1054346,0.0,22745.0,2121.0 +1938026,1938026,1970860,1,19.0,2.0,-9.0,-9.0,3,5000.0,1035838,0.0,22745.0,2121.0 +1938027,1938027,1970861,1,18.0,1.0,-9.0,-9.0,3,8200.0,1070673,0.0,22745.0,2121.0 +1938028,1938028,1970862,1,21.0,1.0,-9.0,-9.0,3,8100.0,1013097,0.0,22745.0,2121.0 +1938029,1938029,1970863,1,18.0,4.0,-9.0,-9.0,3,32500.0,1035838,0.0,22745.0,2121.0 +1938030,1938030,1970865,1,18.0,1.0,-9.0,-9.0,3,26800.0,1061242,0.0,22745.0,2121.0 +1938031,1938031,1970866,1,18.0,1.0,-9.0,-9.0,3,7200.0,1035838,0.0,22745.0,2121.0 +1938032,1938032,1970867,1,18.0,4.0,-9.0,-9.0,3,26000.0,1061242,0.0,22745.0,2121.0 +1938033,1938033,1970868,1,18.0,1.0,-9.0,-9.0,3,7500.0,1035838,0.0,22745.0,2121.0 +1938034,1938034,1970869,1,21.0,3.0,-9.0,-9.0,3,5000.0,1070673,0.0,22745.0,2121.0 +1938035,1938035,1970870,1,18.0,4.0,-9.0,-9.0,3,29000.0,1013097,0.0,22745.0,2121.0 +1938036,1938036,1970871,1,28.0,1.0,-9.0,-9.0,3,3600.0,1013097,0.0,22745.0,2121.0 +1938037,1938037,1970876,1,21.0,1.0,-9.0,-9.0,3,65200.0,1070673,0.0,22745.0,2121.0 +1938038,1938038,1970877,1,19.0,1.0,-9.0,-9.0,3,14300.0,1013097,0.0,22745.0,2121.0 +1938039,1938039,1970879,1,19.0,1.0,-9.0,-9.0,3,2500.0,1035838,0.0,22745.0,2121.0 +1938040,1938040,1970880,1,20.0,1.0,-9.0,-9.0,3,32500.0,1013097,0.0,22745.0,2121.0 +1938041,1938041,1970883,1,18.0,1.0,-9.0,-9.0,3,31000.0,1054346,0.0,22745.0,2121.0 +1938042,1938042,1970884,1,24.0,4.0,-9.0,-9.0,3,35030.0,1054346,0.0,22745.0,2121.0 +1938043,1938043,1970885,1,21.0,1.0,-9.0,-9.0,3,7500.0,1070673,0.0,22745.0,2121.0 +1938044,1938044,1970886,1,18.0,1.0,-9.0,-9.0,3,29000.0,1061242,0.0,22745.0,2121.0 +1938045,1938045,1970887,1,19.0,4.0,-9.0,-9.0,3,32000.0,1035838,0.0,22745.0,2121.0 +1938046,1938046,1970890,1,18.0,2.0,-9.0,-9.0,3,0.0,1013097,0.0,22745.0,2121.0 +1938047,1938047,1970891,1,18.0,1.0,-9.0,-9.0,3,4500.0,1035838,0.0,22745.0,2121.0 +1938048,1938048,1970892,1,20.0,1.0,-9.0,-9.0,3,8000.0,1035838,0.0,22745.0,2121.0 +1938049,1938049,1970893,1,18.0,1.0,-9.0,-9.0,3,81000.0,1013097,0.0,22745.0,2121.0 +1938050,1938050,1970894,1,19.0,1.0,-9.0,-9.0,3,36000.0,1013097,0.0,22745.0,2121.0 +1938145,1938145,1971155,1,61.0,1.0,-9.0,-9.0,3,14600.0,1054346,0.0,22765.0,2130.0 +1938207,1938207,1971342,1,53.0,1.0,-9.0,-9.0,3,7700.0,1013097,0.0,22808.0,2147.0 diff --git a/activitysim/examples/production_semcog/data/land_use.csv b/activitysim/examples/production_semcog/data/land_use.csv new file mode 100644 index 000000000..0474903a4 --- /dev/null +++ b/activitysim/examples/production_semcog/data/land_use.csv @@ -0,0 +1,185 @@ +MAZ,TAZ,tot_acres,tot_hhs,hhs_pop,grppop,tot_pop,K_8,G9_12,e01_nrm,e02_constr,e03_manuf,e04_whole,e05_retail,e06_trans,e07_utility,e08_infor,e09_finan,e10_pstsvc,e11_compmgt,e12_admsvc,e13_edusvc,e14_medfac,e15_hospit,e16_leisure,e17_othsvc,e18_pubadm,tot_emp,parking_spaces,Univ_Enrollment,Univ_Tier,AreaType,COUNTY,TERMINAL,DISTRICT20,parking_daily,parking_hourly,AE_LOCAL,AE_PRM +22635,2100,102.4,8,16,0,16,0,0,0,0,0,0,3,0,0,0,1,1,0,4,49,2,0,2,2,0,64,0,0,0,4,5,0,16,0.0,,0.38669140625,26.76169140625 +22636,2100,6.4,22,32,0,32,0,0,2,0,2,4,4,0,0,0,2,1,0,3,0,0,0,7,7,0,32,0,0,0,4,5,0,16,0.0,,0.5015712890624999,26.8185712890625 +22637,2100,89.6,99,175,0,175,0,0,0,1,1,1,4,0,0,0,3,1,0,15,0,3,0,1,4,0,34,0,0,0,4,5,0,16,0.0,,0.58439404296875,26.90139404296875 +22638,2100,166.4,133,372,0,372,0,0,0,13,9,1,12,3,0,0,2,1,0,11,0,0,0,1,3,0,56,0,0,0,4,5,0,16,0.0,,0.38133154296875,26.79333154296875 +22639,2101,32.0,53,78,0,78,151,0,0,1,0,20,1,2,0,0,0,0,0,4,0,0,0,0,1,0,29,0,0,0,4,5,0,16,0.0,,0.3137628784179687,27.69176287841797 +22640,2101,96.0,40,69,0,69,496,0,0,23,20,273,149,4,0,5,36,9,0,15,106,40,0,34,21,0,735,0,0,0,4,5,0,16,0.0,,0.29151123046875,27.66951123046875 +22641,2101,6.4,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,6,3,0,15,0,0,0,4,5,0,16,0.0,,0.10795947265625,27.87495947265625 +22642,2101,6.4,0,0,0,0,0,0,0,0,0,0,16,0,0,1,0,0,0,0,0,0,0,0,0,0,17,0,0,0,4,5,0,16,0.0,,0.109191650390625,27.738191650390625 +22643,2101,12.8,47,78,0,78,0,0,0,2,1,9,24,0,0,0,2,0,0,1,0,0,0,0,0,0,39,0,0,0,4,5,0,16,0.0,,0.177680419921875,28.145680419921877 +22644,2101,12.8,19,24,0,24,0,0,0,4,2,7,0,0,0,0,0,0,0,0,0,0,0,0,2,0,15,0,0,0,4,5,0,16,0.0,,0.29286328125,27.89386328125 +22645,2101,12.8,28,44,0,44,0,0,0,0,0,4,0,0,0,0,2,0,0,9,0,1,0,5,2,0,23,0,0,0,4,5,0,16,0.0,,0.216169921875,28.119169921875 +22646,2101,19.2,41,57,0,57,0,0,0,0,2,25,0,8,0,0,16,0,0,2,0,1,0,0,5,0,59,0,0,0,4,5,0,16,0.0,,0.1902174072265625,27.79121740722656 +22647,2101,12.8,28,45,0,45,0,0,0,1,2,9,6,2,0,0,0,1,0,2,0,2,0,0,0,0,25,0,0,0,4,5,0,16,0.0,,0.2961298828124999,27.8661298828125 +22648,2101,19.2,65,101,0,101,0,0,4,3,0,21,0,0,0,1,13,0,0,6,0,2,0,1,9,0,60,0,0,0,4,5,0,16,0.0,,0.1935591125488281,27.76355911254883 +22649,2102,44.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,16,0.0,,0.69795068359375,26.76995068359375 +22650,2102,25.6,23,38,0,38,0,0,0,33,0,1,9,0,0,0,7,2,0,41,0,12,0,9,16,0,130,0,0,0,4,5,0,16,0.0,,0.28917041015625,26.72417041015625 +22651,2102,198.4,22,30,0,30,0,0,0,12,19,30,44,4,0,0,16,6,1,33,0,28,0,28,37,0,258,0,0,0,4,5,0,16,0.0,,0.1806083984374999,26.6026083984375 +22652,2102,19.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,16,0.0,,0.16640185546875,27.56740185546875 +22653,2102,38.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,16,0.0,,0.64412890625,28.22912890625 +22654,2102,44.8,71,107,0,107,0,0,0,5,0,0,0,2,0,0,0,1,0,17,33,4,0,7,3,0,72,0,0,0,4,5,0,16,0.0,,0.367466796875,27.198466796875 +22655,2102,12.8,12,20,0,20,0,0,0,1,0,0,1,0,0,0,0,0,0,8,0,9,0,6,0,0,25,0,0,0,4,5,0,16,0.0,,0.23894482421875,26.92594482421875 +22656,2102,44.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,16,0.0,,1.1204708251953126,26.232470825195318 +22657,2102,6.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,10,4,0,16,0,0,0,4,5,0,16,0.0,,0.06146240234375,26.48346240234375 +22658,2103,12.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,16,0.0,,0.19815185546875,27.78315185546875 +22659,2103,19.2,43,128,0,128,0,0,0,0,5,0,9,1,0,0,1,1,0,0,0,1,0,3,7,42,70,0,0,0,4,5,0,16,0.0,,0.36702978515625,28.38402978515625 +22660,2103,12.8,22,66,0,66,0,0,0,2,0,10,8,2,0,0,0,6,0,15,0,2,0,0,9,0,54,0,0,0,4,5,0,16,0.0,,0.42438916015625,28.40138916015625 +22661,2103,12.8,31,76,0,76,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,1,0,0,5,0,0,0,4,5,0,16,0.0,,0.414578125,28.157578125 +22662,2103,6.4,35,88,0,88,0,0,0,1,2,1,0,0,0,0,2,2,0,2,0,0,0,0,0,0,10,0,0,0,4,5,0,16,0.0,,0.4736767578125,28.1006767578125 +22663,2103,6.4,33,77,0,77,0,0,2,0,2,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,7,0,0,0,4,5,0,16,0.0,,0.4194326171875,28.2734326171875 +22664,2103,6.4,35,104,0,104,0,0,0,0,0,0,1,0,0,0,3,1,0,2,0,0,0,0,0,0,7,0,0,0,4,5,0,16,0.0,,0.3826904296875,27.9676904296875 +22665,2103,185.6,159,390,0,390,0,0,3,9,16,10,32,1,0,2,20,20,0,20,27,7,0,14,5,0,186,0,0,0,4,5,0,16,0.0,,0.566583984375,28.151583984375 +22666,2103,12.8,11,28,0,28,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,4,0,0,0,4,5,0,16,0.0,,0.3872509765625,28.0142509765625 +22667,2103,25.6,78,297,0,297,0,0,0,0,4,1,3,1,0,0,5,9,0,10,0,0,0,19,5,0,57,0,0,0,4,5,0,16,0.0,,0.162783203125,28.330783203125 +22668,2103,19.2,20,51,0,51,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,5,0,16,0.0,,0.1740732421875,28.4830732421875 +22669,2104,51.2,63,223,0,223,0,0,0,1,1,0,3,0,0,0,4,2,0,2,0,1,0,0,1,0,15,0,0,0,4,5,0,16,0.0,,0.318708740234375,28.486708740234373 +22670,2104,12.8,48,167,0,167,0,0,0,0,0,3,1,2,0,0,2,0,0,24,0,0,0,0,1,0,33,0,0,0,4,5,0,16,0.0,,0.10001708984375,28.26801708984375 +22671,2105,160.0,0,0,0,0,0,0,0,8,0,0,0,166,0,0,0,0,8,3,0,9,0,3,18,0,215,0,0,0,4,5,0,16,0.0,,0.6324677734374999,28.3454677734375 +22672,2106,473.6,0,0,0,0,0,0,0,1,15,7,0,243,0,2,12,96,0,64,18,8,0,0,9,5,480,0,0,0,4,5,0,16,0.0,,0.94994189453125,26.93194189453125 +22673,2106,12.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,16,0.0,,0.3511708984375,28.0611708984375 +22674,2106,19.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,16,0.0,,0.19748095703125,27.78948095703125 +22675,2107,25.6,58,152,0,152,0,0,0,0,0,0,4,1,0,0,8,3,0,9,2,41,0,53,3,0,124,0,0,0,4,5,0,16,0.0,,0.2279410400390625,31.722941040039064 +22676,2107,51.2,143,299,0,299,0,0,0,6,0,1,26,2,0,2,29,12,0,14,0,53,0,177,19,0,341,0,0,0,4,5,0,16,0.0,,0.2721038055419922,31.834103805541996 +22677,2107,12.8,29,69,0,69,0,0,0,0,1,0,2,2,0,0,3,1,0,3,0,23,0,14,1,0,50,0,0,0,4,5,0,16,0.0,,0.2665443725585937,31.878544372558597 +22678,2107,12.8,23,58,0,58,0,0,0,3,0,2,3,0,0,0,4,2,0,0,0,12,0,9,2,0,37,0,0,0,4,5,0,16,0.0,,0.22810546875,31.54210546875 +22679,2107,19.2,40,87,0,87,0,0,0,0,0,0,0,0,0,0,7,4,0,11,0,31,0,40,4,0,97,0,0,0,4,5,0,16,0.0,,0.246106689453125,31.504106689453124 +22680,2107,6.4,3,9,0,9,0,0,3,1,0,1,0,0,0,0,7,1,0,0,0,8,0,1,6,0,28,0,0,0,4,5,0,16,0.0,,0.075927734375,31.348927734375 +22681,2107,12.8,11,18,5,23,0,0,0,1,0,0,0,3,0,1,11,1,0,4,0,19,0,10,8,0,58,0,0,0,4,5,0,16,0.0,,0.06685595703125,31.61685595703125 +22682,2108,12.8,17,51,0,51,0,0,0,0,1,0,30,0,0,0,4,2,0,4,3,22,0,8,11,0,85,0,0,0,4,5,0,16,0.0,,0.220478271484375,31.073478271484376 +22683,2108,6.4,10,30,0,30,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,45,1,0,0,0,63,0,0,0,4,5,0,16,0.0,,0.186689697265625,31.147689697265623 +22684,2108,19.2,0,0,0,0,0,0,0,3,1,6,91,0,0,0,13,0,0,4,0,15,0,2,5,0,140,0,0,0,4,5,0,16,0.0,,0.19406884765625,31.44806884765625 +22685,2109,6.4,147,284,0,284,0,0,0,0,0,0,6,0,0,0,0,2,0,0,0,14,0,2,0,0,24,0,0,0,4,5,0,16,0.0,,0.3506103515625,32.5226103515625 +22686,2109,6.4,201,372,0,372,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,5,0,16,0.0,,0.44925634765625,32.71725634765625 +22687,2109,6.4,94,167,0,167,0,0,0,2,0,0,5,0,0,0,5,0,0,1,0,13,0,3,0,0,29,0,0,0,4,5,0,16,0.0,,0.277393310546875,32.071393310546874 +22688,2109,230.4,1160,2213,0,2213,0,0,0,47,3,2,103,6,0,5,103,39,1,15,4,374,0,182,28,0,912,0,0,0,4,5,0,16,0.0,,0.34147607421875,32.55047607421875 +22689,2109,6.4,0,0,0,0,0,0,0,1,0,0,55,0,0,0,3,1,0,0,0,14,0,14,3,0,91,0,0,0,4,5,0,16,0.0,,0.055389404296875,31.50438940429688 +22690,2110,6.4,38,140,0,140,0,0,2,0,0,0,3,1,0,0,3,1,0,0,0,0,0,0,1,0,11,0,0,0,4,5,0,16,0.0,,0.45902734375,31.61302734375 +22691,2110,12.8,21,45,0,45,0,0,0,9,0,0,0,0,0,0,2,4,0,0,0,0,0,0,2,0,17,0,0,0,4,5,0,16,0.0,,0.51243603515625,31.67243603515625 +22692,2110,12.8,27,57,0,57,0,0,0,3,0,0,0,1,0,0,3,2,0,5,1,0,0,1,6,0,22,0,0,0,4,5,0,16,0.0,,0.437149169921875,31.597149169921877 +22693,2110,12.8,19,44,0,44,0,0,1,0,0,0,2,0,0,0,0,2,0,1,0,1,0,0,1,0,8,0,0,0,4,5,0,16,0.0,,0.51861474609375,31.88661474609375 +22694,2110,198.4,42,95,0,95,768,0,0,4,1,4,10,0,0,0,2,2,0,8,43,4,0,2,52,39,171,0,0,0,4,5,0,16,0.0,,0.6246738281249999,32.560673828125 +22695,2110,12.8,54,96,0,96,0,0,0,2,0,0,4,0,0,0,6,3,0,0,0,1,0,1,9,0,26,0,0,0,4,5,0,16,0.0,,0.3188364868164062,31.755836486816406 +22696,2110,32.0,378,757,0,757,0,0,5,1,1,0,0,0,0,0,5,8,0,7,0,0,0,1,2,0,30,0,0,0,4,5,0,16,0.0,,0.305319091796875,31.74231909179688 +22697,2110,12.8,44,96,0,96,0,0,0,0,0,0,1,0,0,0,4,2,0,4,0,0,1,12,1,0,25,0,0,0,4,5,0,16,0.0,,0.2552517395019531,31.503251739501952 +22698,2110,12.8,20,52,0,52,0,0,0,2,1,0,0,1,0,0,2,1,0,0,0,0,0,0,3,0,10,0,0,0,4,5,0,16,0.0,,0.209982421875,31.457982421875 +22699,2110,12.8,28,75,0,75,0,0,0,0,0,0,0,2,0,0,3,3,0,1,0,1,1,0,1,0,12,0,0,0,4,5,0,16,0.0,,0.27290966796875,31.52090966796875 +22700,2110,6.4,15,40,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,4,5,0,16,0.0,,0.56068310546875,31.93568310546875 +22701,2110,12.8,61,154,0,154,0,0,0,0,1,1,0,0,0,0,2,2,0,2,0,0,0,8,2,0,18,0,0,0,4,5,0,16,0.0,,0.3779569091796875,31.62595690917969 +22702,2110,44.8,44,112,2,114,0,0,0,2,0,0,1,0,1,0,1,5,0,8,0,0,0,1,5,0,24,0,0,0,4,5,0,16,0.0,,0.26040185546875,31.80740185546875 +22703,2110,6.4,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,4,3,0,14,0,0,0,4,5,0,16,0.0,,0.0721435546875,31.4761435546875 +22704,2110,19.2,53,178,0,178,0,0,0,0,1,0,0,0,0,0,11,3,0,1,0,0,0,2,5,0,23,0,0,0,4,5,0,16,0.0,,0.3663302001953125,31.520330200195318 +22705,2110,19.2,26,69,0,69,0,0,0,2,0,0,0,4,0,0,2,5,0,6,0,0,1,1,3,0,24,0,0,0,4,5,0,16,0.0,,0.4773544921875,31.6313544921875 +22706,2110,12.8,21,44,0,44,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,2,0,7,0,0,0,4,5,0,16,0.0,,0.43828515625,31.69228515625 +22707,2110,6.4,16,34,0,34,0,0,0,4,0,0,0,0,0,0,2,1,0,2,0,0,0,0,1,0,10,0,0,0,4,5,0,16,0.0,,0.45144091796875,31.86344091796875 +22708,2110,6.4,14,26,0,26,0,0,0,0,1,0,2,0,0,0,5,0,0,4,0,0,0,0,1,0,13,0,0,0,4,5,0,16,0.0,,0.45943505859375,31.74843505859375 +22709,2110,12.8,12,26,0,26,0,0,0,2,0,0,2,1,1,0,2,2,0,0,0,0,0,0,0,0,10,0,0,0,4,5,0,16,0.0,,0.42064599609375,31.67464599609375 +22710,2110,6.4,10,22,0,22,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,3,0,0,0,4,5,0,16,0.0,,0.180093017578125,31.613093017578127 +22711,2111,192.0,223,464,0,464,0,0,0,4,2,10,176,5,0,11,19,8,0,4,2,5,0,100,23,0,369,0,0,0,4,5,0,16,0.0,,0.746142578125,31.882142578125 +22712,2111,6.4,128,226,0,226,0,0,0,0,0,0,18,3,0,0,12,3,0,1,0,0,0,11,1,0,49,0,0,0,4,5,0,16,0.0,,0.4155751953125,32.3655751953125 +22713,2111,12.8,8,15,0,15,0,0,0,3,0,0,10,0,0,15,0,3,0,1,0,0,0,9,4,0,45,0,0,0,4,5,0,16,0.0,,0.20155615234375,31.22355615234375 +22714,2112,12.8,51,206,0,206,0,0,0,5,6,5,6,4,0,3,25,12,0,3,99,16,0,15,17,16,232,0,0,0,4,5,0,16,0.0,,0.20653515625,31.37553515625 +22715,2112,6.4,60,173,0,173,0,0,0,3,0,0,1,0,0,0,1,1,0,1,112,0,1,0,1,0,121,0,0,0,4,5,0,16,0.0,,0.2383007812499999,31.23730078125 +22716,2112,108.8,42,139,0,139,0,611,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,1,2,0,7,0,0,0,4,5,0,16,0.0,,0.39198291015625,31.39098291015625 +22717,2112,6.4,33,117,0,117,0,0,0,0,0,0,0,2,0,0,0,1,0,3,39,0,0,0,0,0,45,0,0,0,4,5,0,16,0.0,,0.296,31.295 +22718,2112,12.8,31,77,0,77,0,0,0,0,0,1,0,0,0,0,2,1,0,6,2,0,0,0,0,0,12,0,0,0,4,5,0,16,0.0,,0.3716201171875,31.3706201171875 +22719,2112,12.8,24,89,0,89,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,1,1,0,5,0,0,0,4,5,0,16,0.0,,0.43785888671875,31.43685888671875 +22720,2113,6.4,28,71,0,71,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,3,0,0,0,4,5,0,16,0.0,,0.3607548828125,31.0197548828125 +22721,2113,6.4,35,79,0,79,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,4,0,0,0,4,5,0,16,0.0,,0.28636083984375,30.71036083984375 +22722,2113,6.4,31,66,0,66,0,0,0,4,0,0,2,0,0,0,0,1,0,2,0,0,0,0,2,0,11,0,0,0,4,5,0,16,0.0,,0.3245625,30.6455625 +22723,2113,6.4,20,52,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,3,0,0,0,4,5,0,16,0.0,,0.37064208984375,30.69164208984375 +22724,2113,160.0,592,1321,0,1321,0,289,1,8,3,1,1,8,0,1,25,1,0,17,0,23,0,1,11,0,101,0,0,0,4,5,0,16,0.0,,0.26881005859375,31.13381005859375 +22725,2113,6.4,39,95,0,95,0,0,3,0,2,0,0,0,0,0,0,1,0,5,0,3,0,0,0,0,14,0,0,0,4,5,0,16,0.0,,0.283727294921875,30.72372729492188 +22726,2113,6.4,58,128,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,5,108,1,0,0,0,0,114,0,0,0,4,5,0,16,0.0,,0.35258935546875,30.73758935546875 +22727,2113,6.4,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,16,0.0,,0.08856201171875,31.37856201171875 +22728,2113,12.8,49,99,0,99,0,0,0,0,0,0,6,0,0,0,2,0,0,3,0,1,0,1,1,0,14,0,0,0,4,5,0,16,0.0,,0.3910546875,30.8180546875 +22729,2113,6.4,9,17,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,2,0,0,0,4,5,0,16,0.0,,0.168806884765625,30.704806884765624 +22730,2113,6.4,22,52,0,52,0,0,0,16,0,0,0,0,0,0,3,0,0,0,0,2,0,0,0,0,21,0,0,0,4,5,0,16,0.0,,0.2705278320312499,30.64352783203125 +22731,2114,64.0,19,35,0,35,0,0,0,0,1,3,2,1,0,0,0,3,0,4,0,38,0,29,3,0,84,0,0,0,4,5,0,16,0.0,,0.12445068359375,31.14645068359375 +22732,2114,44.8,0,0,0,0,0,0,0,0,0,0,4,0,0,2,0,0,0,3,0,33,0,36,0,0,78,0,0,0,4,5,0,16,0.0,,0.47312109375,31.60912109375 +22733,2115,51.2,0,0,0,0,0,0,0,4,181,4,30,5,0,0,9,13,0,7,0,3,0,76,8,0,340,0,0,0,4,5,0,16,0.0,,0.26762841796875,30.94662841796875 +22734,2115,1305.6,141,376,4,380,0,0,0,15,168,22,101,45,0,5,35,393,0,24,1,16,0,325,54,0,1204,0,0,0,4,5,0,16,0.0,,1.735798828125,33.819798828125 +22735,2115,19.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,16,0.0,,0.17137939453125,30.85037939453125 +22736,2115,32.0,0,0,0,0,0,0,0,6,7,1,77,1,0,1,13,17,0,29,3,4,0,113,0,0,272,0,0,0,4,5,0,16,0.0,,0.46615625,31.66915625 +22737,2116,19.2,93,198,0,198,0,0,0,50,29,10,25,0,0,2,81,104,1,49,0,14,0,4,50,0,419,0,0,0,2,5,3,15,8.181818,1.2,0.1033818359375,36.1603818359375 +22738,2117,12.8,36,83,0,83,0,409,0,7,10,7,42,2,0,32,166,136,1,13,0,36,0,139,17,0,608,0,0,0,1,5,5,15,17.1,1.9,0.075688232421875,36.08068823242188 +22739,2118,6.4,18,35,0,35,0,0,0,4,0,5,2,0,0,3,7,18,3,6,58,14,12,128,7,0,267,0,0,0,1,5,5,15,17.1,1.9,0.0552978515625,36.0322978515625 +22740,2119,12.8,118,252,0,252,0,0,2,3,0,0,8,0,0,1,2,66,0,8,0,22,0,26,1,0,139,0,0,0,2,5,3,15,17.1,1.9,0.029693603515625,36.19169360351562 +22741,2119,12.8,80,152,0,152,0,0,5,4,0,0,3,0,0,0,6,25,0,1,0,38,0,5,2,0,89,0,0,0,2,5,3,15,17.1,1.9,0.115717041015625,36.02071704101562 +22742,2119,12.8,22,44,0,44,0,0,0,1,1,0,4,0,0,1,1,31,0,7,0,8,0,12,4,5,75,0,0,0,2,5,3,15,17.1,1.9,0.15195166015625,36.30695166015625 +22743,2119,32.0,20,39,0,39,0,0,0,25,10,4,9,4,0,5,18,268,0,21,0,8,0,61,11,0,444,0,0,0,2,5,3,15,17.1,1.9,0.06549072265625,35.95449072265625 +22744,2120,12.8,86,185,0,185,0,0,0,0,3,11,17,3,0,0,7,17,0,0,0,7,0,2,4,0,71,0,0,0,2,5,3,15,17.1,1.9,0.056966552734375,35.87196655273438 +22745,2121,12.8,71,150,458,608,0,0,0,4,21,11,49,8,0,19,57,54,1,18,0,31,0,67,23,794,1157,0,0,0,1,5,5,15,8.181818,1.9,0.032562255859375,36.16556225585938 +22746,2122,6.4,0,0,0,0,0,0,0,0,1,4,7,1,0,0,2,31,0,2,3,4,0,7,22,283,367,0,0,0,1,5,5,15,17.1,1.9,0.0309295654296875,36.18192956542969 +22747,2123,12.8,161,279,0,279,0,0,0,1,4,4,17,0,0,5,16,158,0,14,0,67,33,60,66,0,445,0,0,0,1,5,5,15,8.181818,1.2,0.0020732879638671,36.341073287963866 +22748,2124,6.4,15,21,0,21,0,0,0,8,0,4,43,0,0,2,21,100,0,0,0,0,0,56,13,0,247,0,0,0,1,5,5,15,17.1,1.9,0.031341552734375,36.24534155273437 +22749,2125,6.4,44,116,0,116,0,0,0,4,1,0,1,0,0,2,2,6,0,2,0,2,0,3,1,0,24,0,0,0,3,5,0,15,0.0,,0.13672998046875,36.59572998046875 +22750,2125,12.8,85,221,0,221,0,0,0,0,0,0,0,0,0,7,4,4,0,1,0,8,0,0,5,0,29,0,0,0,3,5,0,15,0.0,,0.1555791015625,36.5735791015625 +22751,2125,12.8,61,147,0,147,0,0,2,0,3,0,3,1,0,1,6,10,0,0,0,4,12,11,3,0,56,0,0,0,3,5,0,15,0.0,,0.1638626098632812,36.60586260986328 +22752,2125,12.8,64,161,0,161,0,0,0,0,1,1,3,16,0,0,4,5,0,3,0,30,0,0,1,0,64,0,0,0,3,5,0,15,0.0,,0.1399219970703125,36.29592199707032 +22753,2125,12.8,44,116,0,116,0,0,6,0,1,0,2,0,0,0,9,5,0,8,0,7,0,0,2,0,40,0,0,0,3,5,0,15,0.0,,0.2565322265624999,36.4125322265625 +22754,2125,12.8,62,161,0,161,0,0,0,0,3,0,4,0,0,0,8,13,0,2,0,9,0,11,34,0,84,0,0,0,3,5,0,15,8.181818,1.2,0.1265339965820312,36.45053399658203 +22755,2126,44.8,352,691,0,691,0,0,0,3,0,2,1,1,0,4,10,11,0,8,3,65,0,6,18,20,152,0,0,0,2,5,3,15,0.0,,0.129150390625,36.715150390625 +22756,2126,6.4,7,11,0,11,0,0,1,18,0,2,7,0,0,3,5,6,0,3,3,2,0,1,8,0,59,0,0,0,2,5,3,15,12.6,1.4,0.101135498046875,36.44013549804688 +22757,2127,12.8,96,195,11,206,206,0,25,1,1,1,3,0,0,0,3,8,0,2,29,4,0,5,38,0,120,0,0,0,2,5,3,15,17.1,1.9,0.1683261718749999,35.947326171875 +22758,2127,25.6,201,396,98,494,0,0,0,0,1,1,8,2,0,3,16,9,0,10,32,7,1,103,28,0,221,0,0,0,2,5,3,15,17.1,1.9,0.09949462890625,36.14949462890625 +22759,2128,6.4,121,229,0,229,0,0,0,1,5,0,15,1,0,0,29,5,0,4,36,8,0,21,10,0,135,24,0,1,2,5,3,15,8.181818,1.2,0.039794921875,36.275794921875 +22760,2128,6.4,171,325,44,369,0,0,0,1,0,1,2,0,0,1,4,2,0,13,426,15,0,41,12,0,518,7,0,1,2,5,3,15,8.181818,,0.12663623046875,36.30263623046875 +22761,2128,32.0,341,665,9,674,0,0,0,0,0,0,1,1,0,7,13,3,0,10,674,18,0,23,4,0,754,1260,0,1,2,5,3,15,17.1,,0.1301796875,36.2441796875 +22762,2128,25.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,110,0,0,113,0,0,0,2,5,3,15,0.0,,0.194052734375,36.058052734375 +22763,2129,6.4,302,560,0,560,0,0,0,3,0,0,2,2,0,0,7,12,0,4,13,27,0,51,42,0,163,0,0,0,2,5,3,15,8.181818,1.2,0.0538330078125,36.2768330078125 +22764,2130,12.8,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,14,1005,0,0,2,0,0,1023,0,3151,0,2,5,3,15,8.181818,1.2,0.0943603515625,36.3933603515625 +22765,2130,6.4,0,0,451,451,0,0,0,0,1,0,0,0,0,1,1,1,0,2,276,1,0,0,0,0,283,0,0,0,2,5,3,15,8.181818,1.2,0.0474853515625,36.3464853515625 +22766,2131,25.6,0,0,0,0,0,0,0,7,11,7,0,2,0,4,16,0,0,34,2479,267,0,0,1,0,2828,2004,6302,1,2,5,3,15,0.0,,0.2494974365234375,36.45749743652344 +22767,2132,25.6,538,940,0,940,0,0,0,23,71,8,373,18,0,316,59,199,2,59,357,131,22,858,183,19,2698,436,0,1,1,5,5,15,8.181818,1.2,0.0196685791015625,36.402668579101565 +22768,2132,6.4,274,474,0,474,0,0,0,15,4,0,14,2,0,9,8,15,0,3,0,6,0,40,20,0,136,0,0,0,1,5,5,15,8.181818,1.2,0.0899658203125,36.3759658203125 +22769,2133,19.2,53,92,0,92,0,0,0,24,57,16,98,12,0,90,200,220,0,5,49,53,14,136,88,6,1068,0,0,0,1,5,5,15,8.181818,1.2,0.054962158203125,36.33596215820312 +22770,2134,19.2,176,295,0,295,0,0,0,34,177,24,272,89,0,52,310,514,1,81,60,239,11,610,127,155,2756,0,0,0,1,5,5,15,8.181818,1.2,0.0108795166015625,36.35287951660156 +22771,2135,12.8,165,263,0,263,0,0,0,20,16,11,116,2,0,48,84,321,1,27,14,108,0,707,69,206,1750,0,0,0,1,5,5,15,12.6,1.4,0.019927978515625,36.42392797851563 +22772,2136,6.4,6,10,0,10,0,0,0,0,1,0,4,1,0,0,4,75,0,0,1,20,0,65,38,5,214,0,0,0,1,5,5,15,6.363636,1.4,0.042877197265625,36.61687719726562 +22773,2136,6.4,20,29,0,29,0,0,0,3,2,1,39,0,0,5,35,218,0,5,8,9,0,193,36,0,554,0,0,0,1,5,5,15,12.6,1.4,0.0703125,36.4743125 +22774,2137,6.4,29,60,0,60,0,0,0,0,0,2,1,0,0,1,1,9,0,5,0,25,0,0,1,0,45,168,0,1,2,5,3,15,5.227273,1.2,0.1725809020996093,36.71558090209961 +22775,2137,12.8,43,102,0,102,0,0,0,2,2,0,6,6,0,2,5,17,0,6,0,25,0,1,0,0,72,0,0,0,2,5,3,15,5.227273,,0.194623779296875,36.75162377929688 +22776,2137,6.4,38,85,0,85,0,0,0,12,0,0,0,2,0,0,5,6,0,0,0,12,0,1,3,0,41,0,0,0,2,5,3,15,5.227273,1.2,0.11023779296875,36.87623779296875 +22777,2137,6.4,46,115,0,115,0,0,2,0,0,0,1,0,0,0,8,5,0,5,0,22,0,0,6,0,49,0,0,0,2,5,3,15,5.227273,,0.15155908203125,36.98055908203125 +22778,2137,12.8,13,28,0,28,0,0,0,1,2,1,12,6,0,1,3,18,0,6,0,216,0,2,23,0,291,0,0,0,2,5,3,15,5.227273,1.2,0.1582460937499999,36.56224609375 +22779,2138,12.8,30,70,0,70,420,0,0,1,5,1,2,0,0,27,8,13,0,6,240,5,0,6,5,0,319,1,0,1,2,5,3,15,8.181818,,0.1754521484375,36.9564521484375 +22780,2138,25.6,102,229,0,229,0,0,0,6,1,1,3,0,0,3,15,10,2,7,0,7,0,2,2,0,59,0,0,0,2,5,3,15,0.0,,0.2106729736328125,37.040672973632816 +22781,2138,12.8,54,109,0,109,0,0,0,1,4,0,19,0,0,0,2,5,0,9,292,7,0,2,20,0,361,12,0,1,2,5,3,15,8.181818,,0.245234130859375,36.915234130859375 +22782,2138,12.8,87,184,0,184,0,0,2,3,0,1,1,0,0,1,4,9,0,8,0,10,0,4,1,0,44,0,0,0,2,5,3,15,8.181818,1.4,0.24067333984375,36.86967333984375 +22783,2138,12.8,108,213,0,213,0,0,2,2,2,0,5,0,0,10,5,11,0,8,32,10,0,2,2,0,91,48,0,1,2,5,3,15,8.181818,1.4,0.167727294921875,36.80372729492188 +22784,2139,19.2,178,338,0,338,0,0,0,0,0,0,2,2,0,1,13,6,0,6,0,14,0,4,3,0,51,0,0,0,3,5,0,15,0.0,,0.197571533203125,37.15057153320313 +22785,2139,12.8,74,159,0,159,0,0,0,7,0,0,7,4,0,1,2,10,0,15,0,6,0,0,1,0,53,0,0,0,3,5,0,15,0.0,,0.162539306640625,37.30153930664063 +22786,2139,25.6,120,275,0,275,0,0,0,0,1,0,2,2,0,0,17,7,0,7,0,15,0,0,1,0,52,0,0,0,3,5,0,15,0.0,,0.20096875,37.11196875 +22787,2139,19.2,155,366,0,366,0,0,0,3,0,0,3,2,0,5,2,2,0,5,0,4,0,3,4,0,33,0,0,0,3,5,0,15,0.0,,0.20212890625,37.28412890625 +22788,2139,19.2,262,430,0,430,0,0,2,3,0,0,5,0,0,2,14,8,0,5,0,7,0,0,3,0,49,0,0,0,3,5,0,15,7.272727,,0.1549552001953125,37.10695520019532 +22789,2140,19.2,72,178,0,178,0,0,0,2,0,5,13,0,0,1,41,15,1,2,1,15,0,0,8,0,104,0,0,0,3,5,0,15,0.0,,0.161148193359375,36.85114819335938 +22790,2140,25.6,55,146,0,146,0,0,2,2,0,0,7,0,0,2,3,9,0,5,0,5,0,1,3,0,39,0,0,0,3,5,0,15,0.0,,0.161895751953125,37.14289575195313 +22791,2140,6.4,36,88,5,93,0,0,0,0,0,0,1,0,0,1,5,1,0,2,0,4,0,0,1,0,15,0,0,0,3,5,0,15,0.0,,0.114642822265625,37.06564282226562 +22792,2140,6.4,31,77,0,77,0,0,0,3,1,0,1,3,0,0,5,4,0,1,0,6,0,0,0,0,24,0,0,0,3,5,0,15,0.0,,0.1599638671875,37.0029638671875 +22793,2140,19.2,80,196,0,196,0,0,2,2,2,0,1,4,0,1,8,10,0,27,0,15,0,0,9,0,81,5,0,1,3,5,0,15,0.0,,0.1546075439453125,37.03360754394532 +22794,2141,19.2,115,285,0,285,0,0,0,3,0,0,3,0,0,1,8,6,0,0,5,5,0,6,5,0,42,82,0,1,2,5,3,15,7.272727,,0.0876429443359375,36.900642944335935 +22795,2141,38.4,0,0,0,0,0,0,0,1,1,4,7,0,0,2,8,9,0,26,1958,15,0,14,12,0,2057,729,0,1,2,5,3,15,0.0,,0.23596240234375,36.67996240234375 +22796,2141,32.0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,5,1,0,0,0,0,0,1,0,0,11,832,0,1,2,5,3,15,0.0,,0.203748046875,36.612748046875 +22797,2141,12.8,54,138,0,138,0,0,0,2,1,0,1,0,0,4,2,0,0,41,0,9,0,0,7,0,67,571,0,1,2,5,3,15,0.0,,0.1274424438476562,36.93744244384766 +22798,2142,19.2,413,888,0,888,29,29,4,4,1,14,41,2,0,2,16,25,0,3,0,9,0,45,26,0,192,21,0,1,2,5,3,15,7.272727,,0.0099716186523437,36.88197161865234 +22799,2142,12.8,53,112,0,112,0,0,3,2,0,0,2,1,0,1,34,4,0,6,0,5,0,15,13,0,86,0,0,0,2,5,3,15,7.272727,1.5,0.1180537109375,36.7540537109375 +22800,2143,6.4,0,0,0,0,0,0,0,3,37,0,55,0,0,1,2,26,0,2,0,2,0,0,0,0,128,143,0,1,2,5,3,15,7.272727,,0.106858154296875,36.79885815429687 +22801,2143,25.6,258,559,0,559,0,0,22,15,20,5,34,47,165,6,25,38,0,22,71,22,0,17,37,13,559,22,0,1,2,5,3,15,7.272727,1.5,0.03082275390625,36.66682275390625 +22802,2144,6.4,177,410,0,410,0,0,2,4,1,2,4,2,0,1,12,11,0,9,355,20,0,14,10,0,447,6,0,1,2,5,3,15,7.272727,,0.042816162109375,36.691816162109376 +22803,2144,6.4,25,32,0,32,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,32,0,1,2,5,3,15,7.272727,1.5,0.0670166015625,36.7590166015625 +22804,2144,12.8,130,299,0,299,0,0,0,0,1,0,11,0,0,2,2,2,0,5,55,2,0,5,4,0,89,194,0,1,2,5,3,15,7.272727,,0.175373046875,36.771373046875 +22805,2145,12.8,181,289,0,289,0,0,0,2,0,0,4,0,0,1,5,15,0,4,0,15,0,6,27,0,79,2,0,1,2,5,3,15,11.363636,1.2,0.0631103515625,36.6101103515625 +22806,2146,12.8,93,133,642,775,0,0,0,1,2,0,6,0,0,0,15,0,0,94,744,5,0,4,7,0,878,1084,0,1,2,5,3,15,7.272727,1.2,0.13803076171875,36.69803076171875 +22807,2146,6.4,172,242,0,242,0,0,0,3,1,0,1,0,0,0,8,0,0,7,242,23,0,88,3,0,376,105,0,1,2,5,3,15,8.181818,1.2,0.0660400390625,36.6090400390625 +22808,2147,12.8,117,245,2578,2823,0,0,0,2,0,1,1,0,0,0,9,0,0,18,1582,2,0,4,13,0,1632,15,0,1,2,5,3,15,7.272727,,0.058135986328125,36.63313598632813 +22809,2147,12.8,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,5,3151,1,2,5,3,15,8.181818,1.2,0.1233182373046875,36.66631823730469 +22810,2148,57.6,190,387,75,462,0,0,0,0,1,1,2,2,0,3,14,10,0,22,910,4,0,33,6,0,1008,14,0,1,2,5,3,15,0.0,,0.09320068359375,36.45920068359375 +22811,2148,12.8,167,334,0,334,0,0,0,0,0,0,3,0,0,0,5,7,0,9,483,1,0,7,14,0,529,46,0,1,2,5,3,15,0.0,,0.101434814453125,36.697434814453125 +22812,2149,32.0,354,742,0,742,0,0,2,0,2,0,11,6,0,0,33,9,0,4,0,15,0,11,2,0,95,0,0,0,2,5,3,15,0.0,,0.09680419921875,36.34280419921875 +22813,2150,6.4,110,204,44,248,0,0,3,1,1,0,4,0,0,1,4,4,0,2,0,4,0,54,26,0,104,0,0,0,2,5,3,15,8.181818,,0.12824560546875,36.47824560546875 +22814,2150,19.2,298,603,122,725,0,0,0,1,0,0,1,0,0,2,17,0,0,1,94,12,0,3,29,0,160,10,0,1,2,5,3,15,0.0,,0.138511474609375,36.415511474609374 +22815,2150,12.8,221,454,124,578,0,0,0,0,0,0,1,2,0,0,9,1,0,7,0,8,0,5,16,0,49,0,0,0,2,5,3,15,8.181818,1.2,0.18280029296875,36.24480029296875 +22816,2150,12.8,117,254,0,254,0,0,3,0,0,0,0,0,0,0,7,4,0,6,0,7,0,62,5,0,94,0,0,0,2,5,3,15,0.0,,0.077393798828125,36.19239379882813 +22817,2150,12.8,111,241,0,241,0,0,0,0,1,0,3,0,0,1,4,3,0,8,2,3,0,6,5,0,36,0,0,0,2,5,3,15,0.0,,0.2008304443359375,36.19883044433594 +22818,2150,12.8,169,388,23,411,0,0,0,1,1,0,0,2,0,1,12,1,0,3,12,9,0,2,26,0,70,0,0,0,2,5,3,15,0.0,,0.1878402099609375,36.32184020996094 diff --git a/activitysim/examples/production_semcog/data/maz_to_maz_bike.csv b/activitysim/examples/production_semcog/data/maz_to_maz_bike.csv new file mode 100644 index 000000000..8997b7443 --- /dev/null +++ b/activitysim/examples/production_semcog/data/maz_to_maz_bike.csv @@ -0,0 +1,15111 @@ +OMAZ,DMAZ,DISTBIKE +22635.0,22635.0,0.3173828125 +22635.0,22636.0,1.2082626953125 +22635.0,22637.0,1.29108544921875 +22635.0,22638.0,1.08802294921875 +22635.0,22639.0,1.2474542846679688 +22635.0,22640.0,1.22520263671875 +22635.0,22641.0,1.63365087890625 +22635.0,22642.0,1.496883056640625 +22635.0,22643.0,1.770371826171875 +22635.0,22644.0,1.6175546875 +22635.0,22645.0,1.674861328125 +22635.0,22646.0,1.5149088134765625 +22635.0,22647.0,1.4218212890625 +22635.0,22648.0,1.3192505187988282 +22635.0,22649.0,3.08264208984375 +22635.0,22650.0,0.27986181640625 +22635.0,22651.0,0.6542998046874999 +22635.0,22652.0,3.03209326171875 +22635.0,22653.0,3.4698203125 +22635.0,22654.0,0.754158203125 +22635.0,22655.0,0.48163623046875 +22635.0,22656.0,2.5451622314453126 +22635.0,22657.0,0.53515380859375 +22635.0,22658.0,2.84184326171875 +22635.0,22659.0,2.57072119140625 +22635.0,22660.0,2.58808056640625 +22635.0,22661.0,2.57826953125 +22635.0,22662.0,2.6373681640625 +22635.0,22663.0,2.4821240234375 +22635.0,22664.0,2.7483818359375 +22635.0,22665.0,3.392275390625 +22635.0,22666.0,2.5509423828125 +22635.0,22667.0,2.664474609375 +22635.0,22668.0,2.0387646484375 +22635.0,22669.0,2.820400146484375 +22635.0,22670.0,2.60170849609375 +22635.0,22671.0,4.0361591796875 +22635.0,22672.0,3.27963330078125 +22635.0,22673.0,3.9408623046875 +22635.0,22674.0,3.82217236328125 +22635.0,22682.0,4.828169677734375 +22635.0,22683.0,4.902381103515625 +22635.0,22715.0,4.9959921875 +22635.0,22720.0,4.7784462890625 +22635.0,22721.0,4.46905224609375 +22635.0,22722.0,4.40425390625 +22635.0,22723.0,4.45033349609375 +22635.0,22724.0,4.89250146484375 +22635.0,22725.0,4.482418701171875 +22635.0,22726.0,4.49628076171875 +22635.0,22728.0,4.57674609375 +22635.0,22729.0,4.463498291015625 +22635.0,22730.0,4.40221923828125 +22635.0,22731.0,4.90514208984375 +22635.0,22733.0,4.79931982421875 +22635.0,22735.0,4.70307080078125 +22636.0,22635.0,1.2082626953125 +22636.0,22636.0,0.171142578125 +22636.0,22637.0,0.28096533203125 +22636.0,22638.0,0.73590283203125 +22636.0,22639.0,2.1133341674804687 +22636.0,22640.0,2.09108251953125 +22636.0,22641.0,2.39653076171875 +22636.0,22642.0,2.259762939453125 +22636.0,22643.0,2.636251708984375 +22636.0,22644.0,2.4154345703125 +22636.0,22645.0,2.5407412109375 +22636.0,22646.0,2.3127886962890627 +22636.0,22647.0,2.287701171875 +22636.0,22648.0,2.185130401611328 +22636.0,22649.0,3.43952197265625 +22636.0,22650.0,1.17074169921875 +22636.0,22651.0,1.1241796875 +22636.0,22652.0,3.89797314453125 +22636.0,22653.0,4.3357001953125 +22636.0,22654.0,1.6450380859375 +22636.0,22655.0,1.37251611328125 +22636.0,22656.0,2.9020421142578123 +22636.0,22657.0,1.00503369140625 +22636.0,22658.0,3.70772314453125 +22636.0,22659.0,3.43660107421875 +22636.0,22660.0,3.45396044921875 +22636.0,22661.0,3.4441494140625 +22636.0,22662.0,3.503248046875 +22636.0,22663.0,3.34800390625 +22636.0,22664.0,3.61426171875 +22636.0,22665.0,4.2581552734375006 +22636.0,22666.0,3.416822265625 +22636.0,22667.0,3.5303544921875 +22636.0,22668.0,2.90464453125 +22636.0,22669.0,3.686280029296875 +22636.0,22670.0,3.46758837890625 +22636.0,22671.0,4.9020390625 +22636.0,22672.0,3.63651318359375 +22636.0,22673.0,4.7657421875 +22636.0,22674.0,4.49405224609375 +22637.0,22635.0,1.29108544921875 +22637.0,22636.0,0.28096533203125 +22637.0,22637.0,0.2327880859375 +22637.0,22638.0,0.8187255859375 +22637.0,22639.0,2.1961569213867187 +22637.0,22640.0,2.1739052734375 +22637.0,22641.0,2.479353515625 +22637.0,22642.0,2.342585693359375 +22637.0,22643.0,2.719074462890625 +22637.0,22644.0,2.49825732421875 +22637.0,22645.0,2.62356396484375 +22637.0,22646.0,2.3956114501953123 +22637.0,22647.0,2.37052392578125 +22637.0,22648.0,2.2679531555175783 +22637.0,22649.0,3.5223447265625 +22637.0,22650.0,1.253564453125 +22637.0,22651.0,1.20700244140625 +22637.0,22652.0,3.9807958984375 +22637.0,22653.0,4.41852294921875 +22637.0,22654.0,1.72786083984375 +22637.0,22655.0,1.4553388671875 +22637.0,22656.0,2.9848648681640624 +22637.0,22657.0,1.0878564453125 +22637.0,22658.0,3.7905458984375 +22637.0,22659.0,3.519423828125 +22637.0,22660.0,3.536783203125 +22637.0,22661.0,3.52697216796875 +22637.0,22662.0,3.58607080078125 +22637.0,22663.0,3.43082666015625 +22637.0,22664.0,3.69708447265625 +22637.0,22665.0,4.34097802734375 +22637.0,22666.0,3.49964501953125 +22637.0,22667.0,3.61317724609375 +22637.0,22668.0,2.98746728515625 +22637.0,22669.0,3.769102783203125 +22637.0,22670.0,3.5504111328125 +22637.0,22671.0,4.98486181640625 +22637.0,22672.0,3.7193359375 +22637.0,22673.0,4.84856494140625 +22637.0,22674.0,4.576875 +22638.0,22635.0,1.08802294921875 +22638.0,22636.0,0.73590283203125 +22638.0,22637.0,0.8187255859375 +22638.0,22638.0,0.1546630859375 +22638.0,22639.0,1.9930944213867188 +22638.0,22640.0,1.9708427734375 +22638.0,22641.0,2.276291015625 +22638.0,22642.0,2.139523193359375 +22638.0,22643.0,2.516011962890625 +22638.0,22644.0,2.29519482421875 +22638.0,22645.0,2.42050146484375 +22638.0,22646.0,2.1925489501953126 +22638.0,22647.0,2.16746142578125 +22638.0,22648.0,2.064890655517578 +22638.0,22649.0,3.3192822265625 +22638.0,22650.0,1.050501953125 +22638.0,22651.0,1.00393994140625 +22638.0,22652.0,3.7777333984375 +22638.0,22653.0,4.21546044921875 +22638.0,22654.0,1.52479833984375 +22638.0,22655.0,1.2522763671875 +22638.0,22656.0,2.7818023681640627 +22638.0,22657.0,0.8847939453125 +22638.0,22658.0,3.5874833984375 +22638.0,22659.0,3.316361328125 +22638.0,22660.0,3.333720703125 +22638.0,22661.0,3.32390966796875 +22638.0,22662.0,3.38300830078125 +22638.0,22663.0,3.22776416015625 +22638.0,22664.0,3.49402197265625 +22638.0,22665.0,4.137915527343751 +22638.0,22666.0,3.29658251953125 +22638.0,22667.0,3.41011474609375 +22638.0,22668.0,2.78440478515625 +22638.0,22669.0,3.566040283203125 +22638.0,22670.0,3.3473486328125 +22638.0,22671.0,4.78179931640625 +22638.0,22672.0,3.5162734375 +22638.0,22673.0,4.64550244140625 +22638.0,22674.0,4.3738125 +22639.0,22635.0,1.2474542846679688 +22639.0,22636.0,2.1133341674804687 +22639.0,22637.0,2.1961569213867187 +22639.0,22638.0,1.9930944213867188 +22639.0,22639.0,0.0295257568359375 +22639.0,22640.0,0.4452741088867187 +22639.0,22641.0,0.6947223510742188 +22639.0,22642.0,0.5579545288085938 +22639.0,22643.0,0.6814432983398437 +22639.0,22644.0,0.5296261596679688 +22639.0,22645.0,0.5859328002929687 +22639.0,22646.0,0.4269802856445313 +22639.0,22647.0,0.2818927612304687 +22639.0,22648.0,0.1793219909667968 +22639.0,22649.0,2.7157135620117185 +22639.0,22650.0,1.1499332885742188 +22639.0,22651.0,1.5843712768554687 +22639.0,22652.0,1.9431647338867188 +22639.0,22653.0,2.380891784667969 +22639.0,22654.0,0.9802296752929688 +22639.0,22655.0,1.0997077026367188 +22639.0,22656.0,3.138233703613281 +22639.0,22657.0,1.4652252807617188 +22639.0,22658.0,1.7529147338867188 +22639.0,22659.0,1.481792663574219 +22639.0,22660.0,1.4991520385742187 +22639.0,22661.0,1.4893410034179688 +22639.0,22662.0,1.5484396362304689 +22639.0,22663.0,1.3931954956054688 +22639.0,22664.0,1.6594533081054688 +22639.0,22665.0,2.303346862792969 +22639.0,22666.0,1.4620138549804689 +22639.0,22667.0,1.5755460815429687 +22639.0,22668.0,0.9498361206054688 +22639.0,22669.0,1.7314716186523438 +22639.0,22670.0,1.512779968261719 +22639.0,22671.0,2.947230651855469 +22639.0,22672.0,3.309704772949219 +22639.0,22673.0,2.8519337768554687 +22639.0,22674.0,2.7332438354492186 +22639.0,22675.0,4.388703918457031 +22639.0,22676.0,4.499866683959961 +22639.0,22677.0,4.544307250976562 +22639.0,22678.0,4.2078683471679685 +22639.0,22679.0,4.1698695678710935 +22639.0,22680.0,4.014690612792968 +22639.0,22681.0,4.2826188354492185 +22639.0,22682.0,3.739241149902344 +22639.0,22683.0,3.813452575683594 +22639.0,22684.0,4.113831726074219 +22639.0,22687.0,4.538156188964844 +22639.0,22689.0,4.170152282714843 +22639.0,22690.0,4.432790222167969 +22639.0,22691.0,4.492198913574219 +22639.0,22692.0,4.416912048339844 +22639.0,22693.0,4.706377624511719 +22639.0,22695.0,4.575599365234375 +22639.0,22696.0,4.562081970214844 +22639.0,22697.0,4.323014617919922 +22639.0,22698.0,4.277745300292969 +22639.0,22699.0,4.340672546386719 +22639.0,22700.0,4.755445983886719 +22639.0,22701.0,4.445719787597656 +22639.0,22702.0,4.627164733886719 +22639.0,22703.0,4.295906433105468 +22639.0,22704.0,4.340093078613282 +22639.0,22705.0,4.401117370605469 +22639.0,22706.0,4.358048034667969 +22639.0,22707.0,4.529203796386719 +22639.0,22708.0,4.414197937011719 +22639.0,22709.0,4.340408874511719 +22639.0,22710.0,4.278855895996093 +22639.0,22711.0,4.701905456542969 +22639.0,22713.0,4.043319030761719 +22639.0,22714.0,4.195298034667969 +22639.0,22715.0,4.057063659667969 +22639.0,22716.0,4.2107457885742186 +22639.0,22717.0,4.114762878417968 +22639.0,22718.0,4.190382995605469 +22639.0,22719.0,4.256621765136718 +22639.0,22720.0,3.8395177612304687 +22639.0,22721.0,3.5301237182617187 +22639.0,22722.0,3.465325378417969 +22639.0,22723.0,3.5114049682617186 +22639.0,22724.0,3.953572937011719 +22639.0,22725.0,3.543490173339844 +22639.0,22726.0,3.5573522338867187 +22639.0,22727.0,4.198324890136719 +22639.0,22728.0,3.637817565917969 +22639.0,22729.0,3.5245697631835937 +22639.0,22730.0,3.4632907104492188 +22639.0,22731.0,3.966213562011719 +22639.0,22732.0,4.428883972167969 +22639.0,22733.0,3.860391296386719 +22639.0,22735.0,3.764142272949219 +22639.0,22736.0,4.582919128417969 +22640.0,22635.0,1.22520263671875 +22640.0,22636.0,2.09108251953125 +22640.0,22637.0,2.1739052734375 +22640.0,22638.0,1.9708427734375 +22640.0,22639.0,0.4452741088867187 +22640.0,22640.0,0.2230224609375 +22640.0,22641.0,0.780470703125 +22640.0,22642.0,0.643702880859375 +22640.0,22643.0,0.768191650390625 +22640.0,22644.0,0.61537451171875 +22640.0,22645.0,0.6726811523437499 +22640.0,22646.0,0.5127286376953125 +22640.0,22647.0,0.61964111328125 +22640.0,22648.0,0.5170703430175781 +22640.0,22649.0,2.8024619140625 +22640.0,22650.0,1.127681640625 +22640.0,22651.0,1.56211962890625 +22640.0,22652.0,2.0299130859375003 +22640.0,22653.0,2.46764013671875 +22640.0,22654.0,0.95797802734375 +22640.0,22655.0,1.0774560546875 +22640.0,22656.0,3.2249820556640625 +22640.0,22657.0,1.4429736328125 +22640.0,22658.0,1.8396630859375 +22640.0,22659.0,1.568541015625 +22640.0,22660.0,1.585900390625 +22640.0,22661.0,1.57608935546875 +22640.0,22662.0,1.63518798828125 +22640.0,22663.0,1.47994384765625 +22640.0,22664.0,1.74620166015625 +22640.0,22665.0,2.39009521484375 +22640.0,22666.0,1.54876220703125 +22640.0,22667.0,1.66229443359375 +22640.0,22668.0,1.03658447265625 +22640.0,22669.0,1.818219970703125 +22640.0,22670.0,1.5995283203125 +22640.0,22671.0,3.03397900390625 +22640.0,22672.0,3.396453125 +22640.0,22673.0,2.93868212890625 +22640.0,22674.0,2.8199921875 +22640.0,22675.0,4.475452270507812 +22640.0,22676.0,4.586615036010742 +22640.0,22677.0,4.631055603027344 +22640.0,22678.0,4.29461669921875 +22640.0,22679.0,4.256617919921875 +22640.0,22680.0,4.10143896484375 +22640.0,22681.0,4.3693671875 +22640.0,22682.0,3.825989501953125 +22640.0,22683.0,3.900200927734375 +22640.0,22684.0,4.200580078125 +22640.0,22687.0,4.624904541015625 +22640.0,22689.0,4.256900634765625 +22640.0,22690.0,4.51853857421875 +22640.0,22691.0,4.577947265625 +22640.0,22692.0,4.502660400390625 +22640.0,22693.0,4.7921259765625 +22640.0,22695.0,4.661347717285156 +22640.0,22696.0,4.647830322265625 +22640.0,22697.0,4.408762969970703 +22640.0,22698.0,4.36349365234375 +22640.0,22699.0,4.4264208984375 +22640.0,22700.0,4.8411943359375 +22640.0,22701.0,4.531468139648437 +22640.0,22702.0,4.7129130859375 +22640.0,22703.0,4.38165478515625 +22640.0,22704.0,4.425841430664063 +22640.0,22705.0,4.48786572265625 +22640.0,22706.0,4.44479638671875 +22640.0,22707.0,4.6159521484375 +22640.0,22708.0,4.5009462890625 +22640.0,22709.0,4.4271572265625 +22640.0,22710.0,4.365604248046875 +22640.0,22711.0,4.78765380859375 +22640.0,22713.0,4.1290673828125 +22640.0,22714.0,4.28104638671875 +22640.0,22715.0,4.14281201171875 +22640.0,22716.0,4.296494140625 +22640.0,22717.0,4.20051123046875 +22640.0,22718.0,4.27613134765625 +22640.0,22719.0,4.3423701171875 +22640.0,22720.0,3.92526611328125 +22640.0,22721.0,3.6158720703125 +22640.0,22722.0,3.55107373046875 +22640.0,22723.0,3.5971533203125 +22640.0,22724.0,4.039321289062499 +22640.0,22725.0,3.629238525390625 +22640.0,22726.0,3.6431005859375 +22640.0,22727.0,4.2840732421875 +22640.0,22728.0,3.72356591796875 +22640.0,22729.0,3.610318115234375 +22640.0,22730.0,3.5490390625 +22640.0,22731.0,4.0519619140625 +22640.0,22732.0,4.51463232421875 +22640.0,22733.0,3.9461396484375 +22640.0,22735.0,3.849890625 +22640.0,22736.0,4.66866748046875 +22641.0,22635.0,1.63365087890625 +22641.0,22636.0,2.39653076171875 +22641.0,22637.0,2.479353515625 +22641.0,22638.0,2.276291015625 +22641.0,22639.0,0.6947223510742188 +22641.0,22640.0,0.780470703125 +22641.0,22641.0,0.0919189453125 +22641.0,22642.0,0.217151123046875 +22641.0,22643.0,0.362639892578125 +22641.0,22644.0,0.41482275390625 +22641.0,22645.0,0.47912939453125 +22641.0,22646.0,0.3121768798828125 +22641.0,22647.0,0.65608935546875 +22641.0,22648.0,0.5535185852050781 +22641.0,22649.0,2.74691015625 +22641.0,22650.0,1.5361298828125 +22641.0,22651.0,1.63356787109375 +22641.0,22652.0,1.974361328125 +22641.0,22653.0,2.41208837890625 +22641.0,22654.0,1.44642626953125 +22641.0,22655.0,1.489904296875 +22641.0,22656.0,3.1694302978515627 +22641.0,22657.0,1.514421875 +22641.0,22658.0,1.784111328125 +22641.0,22659.0,1.5129892578125 +22641.0,22660.0,1.5303486328125 +22641.0,22661.0,1.52053759765625 +22641.0,22662.0,1.57963623046875 +22641.0,22663.0,1.42439208984375 +22641.0,22664.0,1.69064990234375 +22641.0,22665.0,2.33454345703125 +22641.0,22666.0,1.49321044921875 +22641.0,22667.0,1.60674267578125 +22641.0,22668.0,0.98103271484375 +22641.0,22669.0,1.762668212890625 +22641.0,22670.0,1.5439765625 +22641.0,22671.0,2.97842724609375 +22641.0,22672.0,3.3409013671875 +22641.0,22673.0,2.88313037109375 +22641.0,22674.0,2.7644404296875 +22641.0,22675.0,3.9399005126953126 +22641.0,22676.0,4.051063278198242 +22641.0,22677.0,4.095503845214844 +22641.0,22678.0,3.75906494140625 +22641.0,22679.0,3.721066162109375 +22641.0,22680.0,3.56588720703125 +22641.0,22681.0,3.8338154296875 +22641.0,22682.0,3.290437744140625 +22641.0,22683.0,3.364649169921875 +22641.0,22684.0,3.6650283203125 +22641.0,22685.0,4.73956982421875 +22641.0,22687.0,4.379352783203125 +22641.0,22688.0,4.767435546875 +22641.0,22689.0,3.721348876953125 +22641.0,22690.0,3.82998681640625 +22641.0,22691.0,3.8893955078125 +22641.0,22692.0,3.814108642578125 +22641.0,22693.0,4.10357421875 +22641.0,22694.0,4.77763330078125 +22641.0,22695.0,3.972795959472656 +22641.0,22696.0,3.959278564453125 +22641.0,22697.0,3.720211212158203 +22641.0,22698.0,3.67494189453125 +22641.0,22699.0,3.737869140625 +22641.0,22700.0,4.152642578125 +22641.0,22701.0,3.842916381835937 +22641.0,22702.0,4.024361328125 +22641.0,22703.0,3.69310302734375 +22641.0,22704.0,3.7372896728515625 +22641.0,22705.0,3.84831396484375 +22641.0,22706.0,3.90924462890625 +22641.0,22707.0,4.080400390625 +22641.0,22708.0,3.96539453125 +22641.0,22709.0,3.89160546875 +22641.0,22710.0,3.830052490234375 +22641.0,22711.0,4.09910205078125 +22641.0,22712.0,4.58253466796875 +22641.0,22713.0,3.440515625 +22641.0,22714.0,3.59249462890625 +22641.0,22715.0,3.45426025390625 +22641.0,22716.0,3.6079423828125 +22641.0,22717.0,3.51195947265625 +22641.0,22718.0,3.58757958984375 +22641.0,22719.0,3.653818359375 +22641.0,22720.0,3.23671435546875 +22641.0,22721.0,2.9273203125 +22641.0,22722.0,2.86252197265625 +22641.0,22723.0,2.9086015625 +22641.0,22724.0,3.35076953125 +22641.0,22725.0,2.940686767578125 +22641.0,22726.0,2.954548828125 +22641.0,22727.0,3.595521484375 +22641.0,22728.0,3.03501416015625 +22641.0,22729.0,2.921766357421875 +22641.0,22730.0,2.8604873046875 +22641.0,22731.0,3.36341015625 +22641.0,22732.0,3.82608056640625 +22641.0,22733.0,3.257587890625 +22641.0,22735.0,3.1613388671875 +22641.0,22736.0,3.98011572265625 +22642.0,22635.0,1.496883056640625 +22642.0,22636.0,2.259762939453125 +22642.0,22637.0,2.342585693359375 +22642.0,22638.0,2.139523193359375 +22642.0,22639.0,0.5579545288085938 +22642.0,22640.0,0.643702880859375 +22642.0,22641.0,0.217151123046875 +22642.0,22642.0,0.08038330078125 +22642.0,22643.0,0.4878720703125 +22642.0,22644.0,0.278054931640625 +22642.0,22645.0,0.569361572265625 +22642.0,22646.0,0.1754090576171875 +22642.0,22647.0,0.519321533203125 +22642.0,22648.0,0.4167507629394531 +22642.0,22649.0,2.699142333984375 +22642.0,22650.0,1.399362060546875 +22642.0,22651.0,1.496800048828125 +22642.0,22652.0,1.926593505859375 +22642.0,22653.0,2.364320556640625 +22642.0,22654.0,1.309658447265625 +22642.0,22655.0,1.353136474609375 +22642.0,22656.0,3.121662475585937 +22642.0,22657.0,1.377654052734375 +22642.0,22658.0,1.736343505859375 +22642.0,22659.0,1.465221435546875 +22642.0,22660.0,1.482580810546875 +22642.0,22661.0,1.472769775390625 +22642.0,22662.0,1.531868408203125 +22642.0,22663.0,1.376624267578125 +22642.0,22664.0,1.642882080078125 +22642.0,22665.0,2.286775634765625 +22642.0,22666.0,1.445442626953125 +22642.0,22667.0,1.558974853515625 +22642.0,22668.0,0.933264892578125 +22642.0,22669.0,1.714900390625 +22642.0,22670.0,1.496208740234375 +22642.0,22671.0,2.930659423828125 +22642.0,22672.0,3.293133544921875 +22642.0,22673.0,2.835362548828125 +22642.0,22674.0,2.716672607421875 +22642.0,22675.0,4.065132690429688 +22642.0,22676.0,4.1762954559326175 +22642.0,22677.0,4.220736022949219 +22642.0,22678.0,3.884297119140625 +22642.0,22679.0,3.84629833984375 +22642.0,22680.0,3.691119384765625 +22642.0,22681.0,3.959047607421875 +22642.0,22682.0,3.415669921875 +22642.0,22683.0,3.48988134765625 +22642.0,22684.0,3.790260498046875 +22642.0,22685.0,4.864802001953125 +22642.0,22687.0,4.5045849609375 +22642.0,22688.0,4.892667724609375 +22642.0,22689.0,3.8465810546875 +22642.0,22690.0,3.955218994140625 +22642.0,22691.0,4.014627685546875 +22642.0,22692.0,3.9393408203125 +22642.0,22693.0,4.228806396484375 +22642.0,22694.0,4.902865478515625 +22642.0,22695.0,4.098028137207031 +22642.0,22696.0,4.084510742187501 +22642.0,22697.0,3.845443389892578 +22642.0,22698.0,3.800174072265625 +22642.0,22699.0,3.863101318359375 +22642.0,22700.0,4.277874755859375 +22642.0,22701.0,3.968148559570313 +22642.0,22702.0,4.149593505859375 +22642.0,22703.0,3.818335205078125 +22642.0,22704.0,3.862521850585937 +22642.0,22705.0,3.973546142578125 +22642.0,22706.0,4.034476806640625 +22642.0,22707.0,4.205632568359375 +22642.0,22708.0,4.090626708984376 +22642.0,22709.0,4.016837646484375 +22642.0,22710.0,3.95528466796875 +22642.0,22711.0,4.224334228515625 +22642.0,22712.0,4.707766845703125 +22642.0,22713.0,3.565747802734375 +22642.0,22714.0,3.717726806640625 +22642.0,22715.0,3.579492431640625 +22642.0,22716.0,3.733174560546875 +22642.0,22717.0,3.637191650390625 +22642.0,22718.0,3.712811767578125 +22642.0,22719.0,3.779050537109375 +22642.0,22720.0,3.361946533203125 +22642.0,22721.0,3.052552490234375 +22642.0,22722.0,2.987754150390625 +22642.0,22723.0,3.033833740234375 +22642.0,22724.0,3.476001708984375 +22642.0,22725.0,3.0659189453125 +22642.0,22726.0,3.079781005859375 +22642.0,22727.0,3.720753662109375 +22642.0,22728.0,3.160246337890625 +22642.0,22729.0,3.04699853515625 +22642.0,22730.0,2.985719482421875 +22642.0,22731.0,3.488642333984375 +22642.0,22732.0,3.951312744140625 +22642.0,22733.0,3.382820068359375 +22642.0,22735.0,3.286571044921875 +22642.0,22736.0,4.105347900390624 +22643.0,22635.0,1.770371826171875 +22643.0,22636.0,2.636251708984375 +22643.0,22637.0,2.719074462890625 +22643.0,22638.0,2.516011962890625 +22643.0,22639.0,0.6814432983398437 +22643.0,22640.0,0.768191650390625 +22643.0,22641.0,0.362639892578125 +22643.0,22642.0,0.4878720703125 +22643.0,22643.0,0.10736083984375 +22643.0,22644.0,0.6065437011718751 +22643.0,22645.0,0.393850341796875 +22643.0,22646.0,0.5038978271484376 +22643.0,22647.0,0.611810302734375 +22643.0,22648.0,0.5092395324707031 +22643.0,22649.0,2.661631103515625 +22643.0,22650.0,1.672850830078125 +22643.0,22651.0,1.904288818359375 +22643.0,22652.0,1.889082275390625 +22643.0,22653.0,2.326809326171875 +22643.0,22654.0,1.503147216796875 +22643.0,22655.0,1.622625244140625 +22643.0,22656.0,3.0841512451171877 +22643.0,22657.0,1.785142822265625 +22643.0,22658.0,1.698832275390625 +22643.0,22659.0,1.427710205078125 +22643.0,22660.0,1.445069580078125 +22643.0,22661.0,1.435258544921875 +22643.0,22662.0,1.494357177734375 +22643.0,22663.0,1.339113037109375 +22643.0,22664.0,1.605370849609375 +22643.0,22665.0,2.249264404296875 +22643.0,22666.0,1.407931396484375 +22643.0,22667.0,1.521463623046875 +22643.0,22668.0,0.895753662109375 +22643.0,22669.0,1.67738916015625 +22643.0,22670.0,1.458697509765625 +22643.0,22671.0,2.893148193359375 +22643.0,22672.0,3.255622314453125 +22643.0,22673.0,2.797851318359375 +22643.0,22674.0,2.679161376953125 +22643.0,22675.0,3.9326214599609375 +22643.0,22676.0,4.043784225463867 +22643.0,22677.0,4.088224792480469 +22643.0,22678.0,3.751785888671875 +22643.0,22679.0,3.713787109375 +22643.0,22680.0,3.558608154296875 +22643.0,22681.0,3.826536376953125 +22643.0,22682.0,3.28315869140625 +22643.0,22683.0,3.3573701171875 +22643.0,22684.0,3.657749267578125 +22643.0,22685.0,4.732290771484375 +22643.0,22686.0,4.857936767578125 +22643.0,22687.0,4.21207373046875 +22643.0,22688.0,4.760156494140625 +22643.0,22689.0,3.71406982421875 +22643.0,22690.0,3.936707763671875 +22643.0,22691.0,3.996116455078125 +22643.0,22692.0,3.92082958984375 +22643.0,22693.0,4.210295166015625 +22643.0,22694.0,4.770354248046875 +22643.0,22695.0,4.079516906738281 +22643.0,22696.0,4.065999511718751 +22643.0,22697.0,3.826932159423828 +22643.0,22698.0,3.781662841796875 +22643.0,22699.0,3.844590087890625 +22643.0,22700.0,4.259363525390625 +22643.0,22701.0,3.9496373291015625 +22643.0,22702.0,4.131082275390625 +22643.0,22703.0,3.799823974609375 +22643.0,22704.0,3.8440106201171873 +22643.0,22705.0,3.945034912109375 +22643.0,22706.0,3.901965576171875 +22643.0,22707.0,4.073121337890624 +22643.0,22708.0,3.958115478515625 +22643.0,22709.0,3.884326416015625 +22643.0,22710.0,3.8227734375 +22643.0,22711.0,4.205822998046875 +22643.0,22712.0,4.689255615234375 +22643.0,22713.0,3.547236572265625 +22643.0,22714.0,3.699215576171875 +22643.0,22715.0,3.560981201171875 +22643.0,22716.0,3.714663330078125 +22643.0,22717.0,3.618680419921875 +22643.0,22718.0,3.694300537109375 +22643.0,22719.0,3.760539306640625 +22643.0,22720.0,3.343435302734375 +22643.0,22721.0,3.034041259765625 +22643.0,22722.0,2.969242919921875 +22643.0,22723.0,3.015322509765625 +22643.0,22724.0,3.457490478515625 +22643.0,22725.0,3.04740771484375 +22643.0,22726.0,3.061269775390625 +22643.0,22727.0,3.702242431640625 +22643.0,22728.0,3.141735107421875 +22643.0,22729.0,3.0284873046875 +22643.0,22730.0,2.967208251953125 +22643.0,22731.0,3.470131103515625 +22643.0,22732.0,3.932801513671875 +22643.0,22733.0,3.364308837890625 +22643.0,22735.0,3.268059814453125 +22643.0,22736.0,4.086836669921875 +22644.0,22635.0,1.6175546875 +22644.0,22636.0,2.4154345703125 +22644.0,22637.0,2.49825732421875 +22644.0,22638.0,2.29519482421875 +22644.0,22639.0,0.5296261596679688 +22644.0,22640.0,0.61537451171875 +22644.0,22641.0,0.41482275390625 +22644.0,22642.0,0.278054931640625 +22644.0,22643.0,0.6065437011718751 +22644.0,22644.0,0.2197265625 +22644.0,22645.0,0.511033203125 +22644.0,22646.0,0.1170806884765625 +22644.0,22647.0,0.4609931640625 +22644.0,22648.0,0.3584223937988281 +22644.0,22649.0,2.64081396484375 +22644.0,22650.0,1.52003369140625 +22644.0,22651.0,1.6524716796875 +22644.0,22652.0,1.86826513671875 +22644.0,22653.0,2.3059921875 +22644.0,22654.0,1.350330078125 +22644.0,22655.0,1.46980810546875 +22644.0,22656.0,3.0633341064453123 +22644.0,22657.0,1.53332568359375 +22644.0,22658.0,1.67801513671875 +22644.0,22659.0,1.40689306640625 +22644.0,22660.0,1.42425244140625 +22644.0,22661.0,1.41444140625 +22644.0,22662.0,1.4735400390625 +22644.0,22663.0,1.3182958984375 +22644.0,22664.0,1.5845537109375 +22644.0,22665.0,2.2284472656250003 +22644.0,22666.0,1.3871142578125 +22644.0,22667.0,1.500646484375 +22644.0,22668.0,0.8749365234375 +22644.0,22669.0,1.656572021484375 +22644.0,22670.0,1.43788037109375 +22644.0,22671.0,2.8723310546875 +22644.0,22672.0,3.23480517578125 +22644.0,22673.0,2.7770341796875 +22644.0,22674.0,2.65834423828125 +22644.0,22675.0,4.262804321289062 +22644.0,22676.0,4.373967086791992 +22644.0,22677.0,4.418407653808594 +22644.0,22678.0,4.08196875 +22644.0,22679.0,4.043969970703126 +22644.0,22680.0,3.888791015625 +22644.0,22681.0,4.15671923828125 +22644.0,22682.0,3.613341552734375 +22644.0,22683.0,3.687552978515625 +22644.0,22684.0,3.98793212890625 +22644.0,22687.0,4.463256591796875 +22644.0,22689.0,4.044252685546875 +22644.0,22690.0,4.152890625 +22644.0,22691.0,4.21229931640625 +22644.0,22692.0,4.137012451171875 +22644.0,22693.0,4.42647802734375 +22644.0,22695.0,4.295699768066406 +22644.0,22696.0,4.282182373046875 +22644.0,22697.0,4.043115020751953 +22644.0,22698.0,3.997845703125 +22644.0,22699.0,4.06077294921875 +22644.0,22700.0,4.47554638671875 +22644.0,22701.0,4.165820190429687 +22644.0,22702.0,4.34726513671875 +22644.0,22703.0,4.0160068359375 +22644.0,22704.0,4.060193481445312 +22644.0,22705.0,4.1712177734375 +22644.0,22706.0,4.2321484375 +22644.0,22707.0,4.40330419921875 +22644.0,22708.0,4.28829833984375 +22644.0,22709.0,4.21450927734375 +22644.0,22710.0,4.152956298828125 +22644.0,22711.0,4.422005859375 +22644.0,22712.0,4.9054384765625 +22644.0,22713.0,3.76341943359375 +22644.0,22714.0,3.9153984375 +22644.0,22715.0,3.7771640625 +22644.0,22716.0,3.93084619140625 +22644.0,22717.0,3.83486328125 +22644.0,22718.0,3.9104833984375 +22644.0,22719.0,3.97672216796875 +22644.0,22720.0,3.5596181640625 +22644.0,22721.0,3.25022412109375 +22644.0,22722.0,3.18542578125 +22644.0,22723.0,3.23150537109375 +22644.0,22724.0,3.67367333984375 +22644.0,22725.0,3.263590576171875 +22644.0,22726.0,3.27745263671875 +22644.0,22727.0,3.91842529296875 +22644.0,22728.0,3.35791796875 +22644.0,22729.0,3.244670166015625 +22644.0,22730.0,3.18339111328125 +22644.0,22731.0,3.68631396484375 +22644.0,22732.0,4.148984375 +22644.0,22733.0,3.58049169921875 +22644.0,22735.0,3.48424267578125 +22644.0,22736.0,4.30301953125 +22645.0,22635.0,1.674861328125 +22645.0,22636.0,2.5407412109375 +22645.0,22637.0,2.62356396484375 +22645.0,22638.0,2.42050146484375 +22645.0,22639.0,0.5859328002929687 +22645.0,22640.0,0.6726811523437499 +22645.0,22641.0,0.47912939453125 +22645.0,22642.0,0.569361572265625 +22645.0,22643.0,0.393850341796875 +22645.0,22644.0,0.511033203125 +22645.0,22645.0,0.29833984375 +22645.0,22646.0,0.4083873291015625 +22645.0,22647.0,0.5162998046875 +22645.0,22648.0,0.4137290344238281 +22645.0,22649.0,2.56612060546875 +22645.0,22650.0,1.57734033203125 +22645.0,22651.0,1.9417783203125 +22645.0,22652.0,1.79357177734375 +22645.0,22653.0,2.231298828125 +22645.0,22654.0,1.40763671875 +22645.0,22655.0,1.52711474609375 +22645.0,22656.0,2.9886407470703125 +22645.0,22657.0,1.82263232421875 +22645.0,22658.0,1.60332177734375 +22645.0,22659.0,1.33219970703125 +22645.0,22660.0,1.34955908203125 +22645.0,22661.0,1.339748046875 +22645.0,22662.0,1.3988466796875 +22645.0,22663.0,1.2436025390625 +22645.0,22664.0,1.5098603515625 +22645.0,22665.0,2.15375390625 +22645.0,22666.0,1.3124208984375 +22645.0,22667.0,1.425953125 +22645.0,22668.0,0.8002431640625 +22645.0,22669.0,1.581878662109375 +22645.0,22670.0,1.36318701171875 +22645.0,22671.0,2.7976376953125 +22645.0,22672.0,3.16011181640625 +22645.0,22673.0,2.7023408203125 +22645.0,22674.0,2.58365087890625 +22645.0,22675.0,4.101110961914062 +22645.0,22676.0,4.212273727416992 +22645.0,22677.0,4.256714294433594 +22645.0,22678.0,3.920275390625 +22645.0,22679.0,3.882276611328125 +22645.0,22680.0,3.72709765625 +22645.0,22681.0,3.99502587890625 +22645.0,22682.0,3.451648193359375 +22645.0,22683.0,3.525859619140625 +22645.0,22684.0,3.82623876953125 +22645.0,22685.0,4.9007802734375 +22645.0,22686.0,4.89642626953125 +22645.0,22687.0,4.250563232421875 +22645.0,22688.0,4.92864599609375 +22645.0,22689.0,3.882559326171875 +22645.0,22690.0,4.217197265625 +22645.0,22691.0,4.27660595703125 +22645.0,22692.0,4.201319091796875 +22645.0,22693.0,4.43378466796875 +22645.0,22694.0,4.93884375 +22645.0,22695.0,4.360006408691406 +22645.0,22696.0,4.346489013671875 +22645.0,22697.0,4.107421661376954 +22645.0,22698.0,4.06215234375 +22645.0,22699.0,4.12507958984375 +22645.0,22700.0,4.53985302734375 +22645.0,22701.0,4.230126831054688 +22645.0,22702.0,4.41157177734375 +22645.0,22703.0,4.0803134765625 +22645.0,22704.0,4.124500122070312 +22645.0,22705.0,4.1135244140625 +22645.0,22706.0,4.070455078125001 +22645.0,22707.0,4.24161083984375 +22645.0,22708.0,4.12660498046875 +22645.0,22709.0,4.052815917968751 +22645.0,22710.0,3.991262939453125 +22645.0,22711.0,4.4863125 +22645.0,22712.0,4.9697451171875 +22645.0,22713.0,3.82772607421875 +22645.0,22714.0,3.979705078125 +22645.0,22715.0,3.841470703125 +22645.0,22716.0,3.99515283203125 +22645.0,22717.0,3.899169921875 +22645.0,22718.0,3.9747900390625 +22645.0,22719.0,4.04102880859375 +22645.0,22720.0,3.6239248046875 +22645.0,22721.0,3.31453076171875 +22645.0,22722.0,3.249732421875 +22645.0,22723.0,3.29581201171875 +22645.0,22724.0,3.73797998046875 +22645.0,22725.0,3.327897216796875 +22645.0,22726.0,3.34175927734375 +22645.0,22727.0,3.98273193359375 +22645.0,22728.0,3.422224609375 +22645.0,22729.0,3.308976806640625 +22645.0,22730.0,3.24769775390625 +22645.0,22731.0,3.75062060546875 +22645.0,22732.0,4.213291015625 +22645.0,22733.0,3.64479833984375 +22645.0,22735.0,3.54854931640625 +22645.0,22736.0,4.367326171875 +22646.0,22635.0,1.5149088134765625 +22646.0,22636.0,2.3127886962890627 +22646.0,22637.0,2.3956114501953123 +22646.0,22638.0,2.1925489501953126 +22646.0,22639.0,0.4269802856445313 +22646.0,22640.0,0.5127286376953125 +22646.0,22641.0,0.3121768798828125 +22646.0,22642.0,0.1754090576171875 +22646.0,22643.0,0.5038978271484376 +22646.0,22644.0,0.1170806884765625 +22646.0,22645.0,0.4083873291015625 +22646.0,22646.0,0.014434814453125 +22646.0,22647.0,0.3583472900390625 +22646.0,22648.0,0.2557765197753906 +22646.0,22649.0,2.5381680908203124 +22646.0,22650.0,1.4173878173828125 +22646.0,22651.0,1.5498258056640626 +22646.0,22652.0,1.7656192626953124 +22646.0,22653.0,2.2033463134765623 +22646.0,22654.0,1.2476842041015626 +22646.0,22655.0,1.3671622314453125 +22646.0,22656.0,2.960688232421875 +22646.0,22657.0,1.4306798095703126 +22646.0,22658.0,1.5753692626953124 +22646.0,22659.0,1.3042471923828125 +22646.0,22660.0,1.3216065673828126 +22646.0,22661.0,1.3117955322265624 +22646.0,22662.0,1.3708941650390625 +22646.0,22663.0,1.2156500244140624 +22646.0,22664.0,1.4819078369140626 +22646.0,22665.0,2.125801391601563 +22646.0,22666.0,1.2844683837890625 +22646.0,22667.0,1.3980006103515623 +22646.0,22668.0,0.7722906494140624 +22646.0,22669.0,1.5539261474609376 +22646.0,22670.0,1.3352344970703125 +22646.0,22671.0,2.7696851806640623 +22646.0,22672.0,3.1321593017578127 +22646.0,22673.0,2.6743883056640625 +22646.0,22674.0,2.5556983642578124 +22646.0,22675.0,4.160158447265625 +22646.0,22676.0,4.271321212768554 +22646.0,22677.0,4.315761779785157 +22646.0,22678.0,3.979322875976562 +22646.0,22679.0,3.941324096679688 +22646.0,22680.0,3.7861451416015615 +22646.0,22681.0,4.054073364257812 +22646.0,22682.0,3.5106956787109374 +22646.0,22683.0,3.584907104492188 +22646.0,22684.0,3.885286254882813 +22646.0,22685.0,4.959827758789063 +22646.0,22687.0,4.3606107177734375 +22646.0,22688.0,4.987693481445312 +22646.0,22689.0,3.9416068115234375 +22646.0,22690.0,4.050244750976562 +22646.0,22691.0,4.109653442382813 +22646.0,22692.0,4.034366577148438 +22646.0,22693.0,4.323832153320312 +22646.0,22694.0,4.997891235351562 +22646.0,22695.0,4.1930538940429685 +22646.0,22696.0,4.179536499023437 +22646.0,22697.0,3.940469146728516 +22646.0,22698.0,3.8951998291015615 +22646.0,22699.0,3.958127075195312 +22646.0,22700.0,4.372900512695312 +22646.0,22701.0,4.06317431640625 +22646.0,22702.0,4.244619262695313 +22646.0,22703.0,3.913360961914063 +22646.0,22704.0,3.957547607421875 +22646.0,22705.0,4.068571899414063 +22646.0,22706.0,4.129502563476563 +22646.0,22707.0,4.300658325195313 +22646.0,22708.0,4.185652465820312 +22646.0,22709.0,4.111863403320313 +22646.0,22710.0,4.050310424804687 +22646.0,22711.0,4.3193599853515625 +22646.0,22712.0,4.802792602539062 +22646.0,22713.0,3.6607735595703126 +22646.0,22714.0,3.8127525634765616 +22646.0,22715.0,3.6745181884765614 +22646.0,22716.0,3.828200317382812 +22646.0,22717.0,3.7322174072265626 +22646.0,22718.0,3.807837524414063 +22646.0,22719.0,3.8740762939453126 +22646.0,22720.0,3.4569722900390625 +22646.0,22721.0,3.1475782470703124 +22646.0,22722.0,3.0827799072265627 +22646.0,22723.0,3.1288594970703123 +22646.0,22724.0,3.5710274658203125 +22646.0,22725.0,3.1609447021484374 +22646.0,22726.0,3.1748067626953125 +22646.0,22727.0,3.8157794189453127 +22646.0,22728.0,3.2552720947265623 +22646.0,22729.0,3.1420242919921875 +22646.0,22730.0,3.0807452392578125 +22646.0,22731.0,3.5836680908203125 +22646.0,22732.0,4.046338500976562 +22646.0,22733.0,3.4778458251953124 +22646.0,22735.0,3.3815968017578126 +22646.0,22736.0,4.200373657226563 +22647.0,22635.0,1.4218212890625 +22647.0,22636.0,2.287701171875 +22647.0,22637.0,2.37052392578125 +22647.0,22638.0,2.16746142578125 +22647.0,22639.0,0.2818927612304687 +22647.0,22640.0,0.61964111328125 +22647.0,22641.0,0.65608935546875 +22647.0,22642.0,0.519321533203125 +22647.0,22643.0,0.611810302734375 +22647.0,22644.0,0.4609931640625 +22647.0,22645.0,0.5162998046875 +22647.0,22646.0,0.3583472900390625 +22647.0,22647.0,0.166259765625 +22647.0,22648.0,0.1096889953613281 +22647.0,22649.0,2.64608056640625 +22647.0,22650.0,1.32430029296875 +22647.0,22651.0,1.75873828125 +22647.0,22652.0,1.87353173828125 +22647.0,22653.0,2.3112587890625 +22647.0,22654.0,1.1545966796875 +22647.0,22655.0,1.27407470703125 +22647.0,22656.0,3.0686007080078124 +22647.0,22657.0,1.63959228515625 +22647.0,22658.0,1.68328173828125 +22647.0,22659.0,1.41215966796875 +22647.0,22660.0,1.42951904296875 +22647.0,22661.0,1.4197080078125 +22647.0,22662.0,1.478806640625 +22647.0,22663.0,1.3235625 +22647.0,22664.0,1.5898203125 +22647.0,22665.0,2.2337138671875003 +22647.0,22666.0,1.392380859375 +22647.0,22667.0,1.5059130859375 +22647.0,22668.0,0.880203125 +22647.0,22669.0,1.661838623046875 +22647.0,22670.0,1.44314697265625 +22647.0,22671.0,2.87759765625 +22647.0,22672.0,3.24007177734375 +22647.0,22673.0,2.78230078125 +22647.0,22674.0,2.66361083984375 +22647.0,22675.0,4.319070922851562 +22647.0,22676.0,4.430233688354492 +22647.0,22677.0,4.474674255371093 +22647.0,22678.0,4.1382353515625 +22647.0,22679.0,4.100236572265625 +22647.0,22680.0,3.9450576171875 +22647.0,22681.0,4.21298583984375 +22647.0,22682.0,3.669608154296875 +22647.0,22683.0,3.743819580078125 +22647.0,22684.0,4.04419873046875 +22647.0,22687.0,4.468523193359375 +22647.0,22689.0,4.100519287109375 +22647.0,22690.0,4.3941572265625 +22647.0,22691.0,4.45356591796875 +22647.0,22692.0,4.378279052734375 +22647.0,22693.0,4.65174462890625 +22647.0,22695.0,4.536966369628907 +22647.0,22696.0,4.523448974609375 +22647.0,22697.0,4.284381622314453 +22647.0,22698.0,4.2391123046875 +22647.0,22699.0,4.30203955078125 +22647.0,22700.0,4.71681298828125 +22647.0,22701.0,4.407086791992188 +22647.0,22702.0,4.58853173828125 +22647.0,22703.0,4.2572734375 +22647.0,22704.0,4.301460083007813 +22647.0,22705.0,4.331484375 +22647.0,22706.0,4.2884150390625 +22647.0,22707.0,4.45957080078125 +22647.0,22708.0,4.34456494140625 +22647.0,22709.0,4.27077587890625 +22647.0,22710.0,4.209222900390625 +22647.0,22711.0,4.6632724609375 +22647.0,22713.0,4.00468603515625 +22647.0,22714.0,4.1566650390625 +22647.0,22715.0,4.0184306640625 +22647.0,22716.0,4.17211279296875 +22647.0,22717.0,4.0761298828125 +22647.0,22718.0,4.15175 +22647.0,22719.0,4.21798876953125 +22647.0,22720.0,3.800884765625 +22647.0,22721.0,3.49149072265625 +22647.0,22722.0,3.4266923828125 +22647.0,22723.0,3.47277197265625 +22647.0,22724.0,3.91493994140625 +22647.0,22725.0,3.504857177734375 +22647.0,22726.0,3.51871923828125 +22647.0,22727.0,4.1596918945312495 +22647.0,22728.0,3.5991845703125 +22647.0,22729.0,3.485936767578125 +22647.0,22730.0,3.42465771484375 +22647.0,22731.0,3.92758056640625 +22647.0,22732.0,4.3902509765625 +22647.0,22733.0,3.82175830078125 +22647.0,22735.0,3.72550927734375 +22647.0,22736.0,4.5442861328125 +22648.0,22635.0,1.3192505187988282 +22648.0,22636.0,2.185130401611328 +22648.0,22637.0,2.2679531555175783 +22648.0,22638.0,2.064890655517578 +22648.0,22639.0,0.1793219909667968 +22648.0,22640.0,0.5170703430175781 +22648.0,22641.0,0.5535185852050781 +22648.0,22642.0,0.4167507629394531 +22648.0,22643.0,0.5092395324707031 +22648.0,22644.0,0.3584223937988281 +22648.0,22645.0,0.4137290344238281 +22648.0,22646.0,0.2557765197753906 +22648.0,22647.0,0.1096889953613281 +22648.0,22648.0,0.0071182250976562 +22648.0,22649.0,2.5435097961425783 +22648.0,22650.0,1.2217295227050782 +22648.0,22651.0,1.656167510986328 +22648.0,22652.0,1.7709609680175782 +22648.0,22653.0,2.2086880187988283 +22648.0,22654.0,1.0520259094238282 +22648.0,22655.0,1.171503936767578 +22648.0,22656.0,2.966029937744141 +22648.0,22657.0,1.537021514892578 +22648.0,22658.0,1.5807109680175782 +22648.0,22659.0,1.309588897705078 +22648.0,22660.0,1.326948272705078 +22648.0,22661.0,1.3171372375488282 +22648.0,22662.0,1.3762358703613282 +22648.0,22663.0,1.2209917297363282 +22648.0,22664.0,1.487249542236328 +22648.0,22665.0,2.131143096923828 +22648.0,22666.0,1.2898100891113282 +22648.0,22667.0,1.403342315673828 +22648.0,22668.0,0.7776323547363281 +22648.0,22669.0,1.5592678527832031 +22648.0,22670.0,1.340576202392578 +22648.0,22671.0,2.7750268859863283 +22648.0,22672.0,3.137501007080078 +22648.0,22673.0,2.679730010986328 +22648.0,22674.0,2.561040069580078 +22648.0,22675.0,4.216500152587891 +22648.0,22676.0,4.32766291809082 +22648.0,22677.0,4.372103485107422 +22648.0,22678.0,4.035664581298828 +22648.0,22679.0,3.997665802001953 +22648.0,22680.0,3.842486846923828 +22648.0,22681.0,4.110415069580078 +22648.0,22682.0,3.567037384033203 +22648.0,22683.0,3.641248809814453 +22648.0,22684.0,3.941627960205078 +22648.0,22687.0,4.365952423095703 +22648.0,22689.0,3.997948516845703 +22648.0,22690.0,4.291586456298828 +22648.0,22691.0,4.350995147705079 +22648.0,22692.0,4.275708282470704 +22648.0,22693.0,4.549173858642578 +22648.0,22695.0,4.434395599365234 +22648.0,22696.0,4.420878204345703 +22648.0,22697.0,4.1818108520507815 +22648.0,22698.0,4.136541534423828 +22648.0,22699.0,4.199468780517578 +22648.0,22700.0,4.614242218017578 +22648.0,22701.0,4.304516021728515 +22648.0,22702.0,4.4859609680175785 +22648.0,22703.0,4.154702667236328 +22648.0,22704.0,4.19888931274414 +22648.0,22705.0,4.228913604736328 +22648.0,22706.0,4.185844268798828 +22648.0,22707.0,4.357000030517578 +22648.0,22708.0,4.241994171142578 +22648.0,22709.0,4.168205108642578 +22648.0,22710.0,4.106652130126953 +22648.0,22711.0,4.560701690673828 +22648.0,22713.0,3.9021152648925774 +22648.0,22714.0,4.054094268798828 +22648.0,22715.0,3.915859893798828 +22648.0,22716.0,4.069542022705078 +22648.0,22717.0,3.973559112548828 +22648.0,22718.0,4.049179229736328 +22648.0,22719.0,4.115417999267578 +22648.0,22720.0,3.698313995361328 +22648.0,22721.0,3.388919952392578 +22648.0,22722.0,3.324121612548828 +22648.0,22723.0,3.370201202392578 +22648.0,22724.0,3.812369171142578 +22648.0,22725.0,3.402286407470703 +22648.0,22726.0,3.416148468017578 +22648.0,22727.0,4.057121124267578 +22648.0,22728.0,3.496613800048828 +22648.0,22729.0,3.383365997314453 +22648.0,22730.0,3.3220869445800782 +22648.0,22731.0,3.825009796142578 +22648.0,22732.0,4.287680206298828 +22648.0,22733.0,3.719187530517578 +22648.0,22735.0,3.622938507080078 +22648.0,22736.0,4.441715362548828 +22649.0,22635.0,3.08264208984375 +22649.0,22636.0,3.43952197265625 +22649.0,22637.0,3.5223447265625 +22649.0,22638.0,3.3192822265625 +22649.0,22639.0,2.7157135620117185 +22649.0,22640.0,2.8024619140625 +22649.0,22641.0,2.74691015625 +22649.0,22642.0,2.699142333984375 +22649.0,22643.0,2.661631103515625 +22649.0,22644.0,2.64081396484375 +22649.0,22645.0,2.56612060546875 +22649.0,22646.0,2.5381680908203124 +22649.0,22647.0,2.64608056640625 +22649.0,22648.0,2.5435097961425783 +22649.0,22649.0,0.1239013671875 +22649.0,22650.0,3.04512109375 +22649.0,22651.0,2.92355908203125 +22649.0,22652.0,0.9213525390625 +22649.0,22653.0,1.58307958984375 +22649.0,22654.0,3.51941748046875 +22649.0,22655.0,3.2468955078125 +22649.0,22656.0,0.5464215087890625 +22649.0,22657.0,2.8044130859375 +22649.0,22658.0,1.1371025390625 +22649.0,22659.0,1.73798046875 +22649.0,22660.0,1.75533984375 +22649.0,22661.0,1.51152880859375 +22649.0,22662.0,1.45462744140625 +22649.0,22663.0,1.62738330078125 +22649.0,22664.0,1.32164111328125 +22649.0,22665.0,1.50553466796875 +22649.0,22666.0,1.36820166015625 +22649.0,22667.0,1.69373388671875 +22649.0,22668.0,1.91602392578125 +22649.0,22669.0,1.849659423828125 +22649.0,22670.0,1.6309677734375 +22649.0,22671.0,1.96541845703125 +22649.0,22672.0,0.875892578125 +22649.0,22673.0,1.68112158203125 +22649.0,22674.0,1.415431640625 +22649.0,22720.0,4.90670556640625 +22649.0,22721.0,4.5973115234375 +22649.0,22722.0,4.53251318359375 +22649.0,22723.0,4.5785927734375 +22649.0,22725.0,4.610677978515625 +22649.0,22726.0,4.6245400390625 +22649.0,22728.0,4.70500537109375 +22649.0,22729.0,4.591757568359375 +22649.0,22730.0,4.530478515625 +22649.0,22733.0,4.3655791015625 +22649.0,22735.0,4.269330078125 +22650.0,22635.0,0.27986181640625 +22650.0,22636.0,1.17074169921875 +22650.0,22637.0,1.253564453125 +22650.0,22638.0,1.050501953125 +22650.0,22639.0,1.1499332885742188 +22650.0,22640.0,1.127681640625 +22650.0,22641.0,1.5361298828125 +22650.0,22642.0,1.399362060546875 +22650.0,22643.0,1.672850830078125 +22650.0,22644.0,1.52003369140625 +22650.0,22645.0,1.57734033203125 +22650.0,22646.0,1.4173878173828125 +22650.0,22647.0,1.32430029296875 +22650.0,22648.0,1.2217295227050782 +22650.0,22649.0,3.04512109375 +22650.0,22650.0,0.0743408203125 +22650.0,22651.0,0.61677880859375 +22650.0,22652.0,2.934572265625 +22650.0,22653.0,3.37229931640625 +22650.0,22654.0,0.65663720703125 +22650.0,22655.0,0.384115234375 +22650.0,22656.0,2.5076412353515627 +22650.0,22657.0,0.4976328125 +22650.0,22658.0,2.744322265625 +22650.0,22659.0,2.4732001953125 +22650.0,22660.0,2.4905595703125 +22650.0,22661.0,2.48074853515625 +22650.0,22662.0,2.53984716796875 +22650.0,22663.0,2.38460302734375 +22650.0,22664.0,2.65086083984375 +22650.0,22665.0,3.29475439453125 +22650.0,22666.0,2.45342138671875 +22650.0,22667.0,2.56695361328125 +22650.0,22668.0,1.94124365234375 +22650.0,22669.0,2.722879150390625 +22650.0,22670.0,2.5041875 +22650.0,22671.0,3.93863818359375 +22650.0,22672.0,3.2421123046875 +22650.0,22673.0,3.84334130859375 +22650.0,22674.0,3.7246513671875 +22650.0,22682.0,4.730648681640625 +22650.0,22683.0,4.804860107421875 +22650.0,22715.0,4.89847119140625 +22650.0,22717.0,4.95617041015625 +22650.0,22720.0,4.68092529296875 +22650.0,22721.0,4.37153125 +22650.0,22722.0,4.30673291015625 +22650.0,22723.0,4.3528125 +22650.0,22724.0,4.79498046875 +22650.0,22725.0,4.384897705078125 +22650.0,22726.0,4.398759765625 +22650.0,22728.0,4.47922509765625 +22650.0,22729.0,4.365977294921875 +22650.0,22730.0,4.3046982421875 +22650.0,22731.0,4.80762109375 +22650.0,22733.0,4.701798828125 +22650.0,22735.0,4.6055498046875 +22651.0,22635.0,0.6542998046874999 +22651.0,22636.0,1.1241796875 +22651.0,22637.0,1.20700244140625 +22651.0,22638.0,1.00393994140625 +22651.0,22639.0,1.5843712768554687 +22651.0,22640.0,1.56211962890625 +22651.0,22641.0,1.63356787109375 +22651.0,22642.0,1.496800048828125 +22651.0,22643.0,1.904288818359375 +22651.0,22644.0,1.6524716796875 +22651.0,22645.0,1.9417783203125 +22651.0,22646.0,1.5498258056640626 +22651.0,22647.0,1.75873828125 +22651.0,22648.0,1.656167510986328 +22651.0,22649.0,2.92355908203125 +22651.0,22650.0,0.61677880859375 +22651.0,22651.0,0.147216796875 +22651.0,22652.0,3.29901025390625 +22651.0,22653.0,3.7367373046875 +22651.0,22654.0,1.0910751953125 +22651.0,22655.0,0.81855322265625 +22651.0,22656.0,2.3860792236328123 +22651.0,22657.0,0.2420708007812499 +22651.0,22658.0,3.10876025390625 +22651.0,22659.0,2.83763818359375 +22651.0,22660.0,2.85499755859375 +22651.0,22661.0,2.8451865234375 +22651.0,22662.0,2.90428515625 +22651.0,22663.0,2.749041015625 +22651.0,22664.0,3.015298828125 +22651.0,22665.0,3.6591923828125 +22651.0,22666.0,2.817859375 +22651.0,22667.0,2.9313916015625 +22651.0,22668.0,2.305681640625 +22651.0,22669.0,3.087317138671875 +22651.0,22670.0,2.86862548828125 +22651.0,22671.0,4.303076171875 +22651.0,22672.0,3.12055029296875 +22651.0,22673.0,4.207779296875 +22651.0,22674.0,3.97808935546875 +22651.0,22720.0,4.77836328125 +22651.0,22721.0,4.46896923828125 +22651.0,22722.0,4.4041708984375 +22651.0,22723.0,4.45025048828125 +22651.0,22724.0,4.89241845703125 +22651.0,22725.0,4.482335693359375 +22651.0,22726.0,4.49619775390625 +22651.0,22728.0,4.5766630859375 +22651.0,22729.0,4.463415283203125 +22651.0,22730.0,4.40213623046875 +22651.0,22733.0,4.79923681640625 +22651.0,22735.0,4.70298779296875 +22652.0,22635.0,3.03209326171875 +22652.0,22636.0,3.89797314453125 +22652.0,22637.0,3.9807958984375 +22652.0,22638.0,3.7777333984375 +22652.0,22639.0,1.9431647338867188 +22652.0,22640.0,2.0299130859375003 +22652.0,22641.0,1.974361328125 +22652.0,22642.0,1.926593505859375 +22652.0,22643.0,1.889082275390625 +22652.0,22644.0,1.86826513671875 +22652.0,22645.0,1.79357177734375 +22652.0,22646.0,1.7656192626953124 +22652.0,22647.0,1.87353173828125 +22652.0,22648.0,1.7709609680175782 +22652.0,22649.0,0.9213525390625 +22652.0,22650.0,2.934572265625 +22652.0,22651.0,3.29901025390625 +22652.0,22652.0,0.1488037109375 +22652.0,22653.0,0.81053076171875 +22652.0,22654.0,2.76486865234375 +22652.0,22655.0,2.8843466796875 +22652.0,22656.0,1.3438726806640624 +22652.0,22657.0,3.1798642578125 +22652.0,22658.0,0.3645537109375 +22652.0,22659.0,0.965431640625 +22652.0,22660.0,0.982791015625 +22652.0,22661.0,0.73897998046875 +22652.0,22662.0,0.68207861328125 +22652.0,22663.0,0.85483447265625 +22652.0,22664.0,0.5490922851562501 +22652.0,22665.0,0.73298583984375 +22652.0,22666.0,0.59565283203125 +22652.0,22667.0,0.92118505859375 +22652.0,22668.0,1.14347509765625 +22652.0,22669.0,1.0771105957031248 +22652.0,22670.0,0.8584189453125 +22652.0,22671.0,1.54686962890625 +22652.0,22672.0,1.54134375 +22652.0,22673.0,1.26257275390625 +22652.0,22674.0,0.9908828125 +22652.0,22678.0,4.85350732421875 +22652.0,22679.0,4.815508544921875 +22652.0,22680.0,4.66032958984375 +22652.0,22681.0,4.9282578125 +22652.0,22682.0,4.384880126953125 +22652.0,22683.0,4.459091552734375 +22652.0,22684.0,4.759470703125 +22652.0,22689.0,4.815791259765625 +22652.0,22690.0,4.72742919921875 +22652.0,22691.0,4.786837890625 +22652.0,22692.0,4.711551025390625 +22652.0,22695.0,4.870238342285156 +22652.0,22696.0,4.856720947265625 +22652.0,22697.0,4.617653594970703 +22652.0,22698.0,4.57238427734375 +22652.0,22699.0,4.6353115234375 +22652.0,22701.0,4.7403587646484375 +22652.0,22702.0,4.9218037109375 +22652.0,22703.0,4.59054541015625 +22652.0,22704.0,4.634732055664062 +22652.0,22705.0,4.74575634765625 +22652.0,22706.0,4.85168701171875 +22652.0,22708.0,4.9558369140625 +22652.0,22709.0,4.8340478515625 +22652.0,22710.0,4.924494873046875 +22652.0,22711.0,4.99054443359375 +22652.0,22713.0,4.3379580078125 +22652.0,22714.0,4.48993701171875 +22652.0,22715.0,4.35170263671875 +22652.0,22716.0,4.505384765625 +22652.0,22717.0,4.40940185546875 +22652.0,22718.0,4.48502197265625 +22652.0,22719.0,4.5512607421875 +22652.0,22720.0,4.13415673828125 +22652.0,22721.0,3.8247626953125 +22652.0,22722.0,3.75996435546875 +22652.0,22723.0,3.8060439453125 +22652.0,22724.0,4.2482119140625 +22652.0,22725.0,3.838129150390625 +22652.0,22726.0,3.8519912109375 +22652.0,22727.0,4.4929638671875 +22652.0,22728.0,3.93245654296875 +22652.0,22729.0,3.819208740234375 +22652.0,22730.0,3.7579296875 +22652.0,22731.0,4.2608525390625 +22652.0,22732.0,4.72352294921875 +22652.0,22733.0,3.5930302734375 +22652.0,22735.0,3.49678125 +22652.0,22736.0,4.31555810546875 +22653.0,22635.0,3.4698203125 +22653.0,22636.0,4.3357001953125 +22653.0,22637.0,4.41852294921875 +22653.0,22638.0,4.21546044921875 +22653.0,22639.0,2.380891784667969 +22653.0,22640.0,2.46764013671875 +22653.0,22641.0,2.41208837890625 +22653.0,22642.0,2.364320556640625 +22653.0,22643.0,2.326809326171875 +22653.0,22644.0,2.3059921875 +22653.0,22645.0,2.231298828125 +22653.0,22646.0,2.2033463134765623 +22653.0,22647.0,2.3112587890625 +22653.0,22648.0,2.2086880187988283 +22653.0,22649.0,1.58307958984375 +22653.0,22650.0,3.37229931640625 +22653.0,22651.0,3.7367373046875 +22653.0,22652.0,0.81053076171875 +22653.0,22653.0,0.1142578125 +22653.0,22654.0,3.202595703125 +22653.0,22655.0,3.32207373046875 +22653.0,22656.0,2.0055997314453125 +22653.0,22657.0,3.61759130859375 +22653.0,22658.0,0.84228076171875 +22653.0,22659.0,1.40315869140625 +22653.0,22660.0,1.42051806640625 +22653.0,22661.0,1.17670703125 +22653.0,22662.0,1.1198056640625 +22653.0,22663.0,1.2925615234375 +22653.0,22664.0,0.9868193359375 +22653.0,22665.0,1.170712890625 +22653.0,22666.0,1.0333798828125 +22653.0,22667.0,1.398912109375 +22653.0,22668.0,1.5812021484375 +22653.0,22669.0,1.554837646484375 +22653.0,22670.0,1.33614599609375 +22653.0,22671.0,2.2085966796875 +22653.0,22672.0,2.20307080078125 +22653.0,22673.0,1.9242998046875 +22653.0,22674.0,1.65260986328125 +22653.0,22682.0,4.822607177734375 +22653.0,22683.0,4.896818603515625 +22653.0,22713.0,4.77568505859375 +22653.0,22714.0,4.9276640625 +22653.0,22715.0,4.7894296875 +22653.0,22716.0,4.94311181640625 +22653.0,22717.0,4.84712890625 +22653.0,22718.0,4.9227490234375 +22653.0,22719.0,4.98898779296875 +22653.0,22720.0,4.5718837890625 +22653.0,22721.0,4.26248974609375 +22653.0,22722.0,4.19769140625 +22653.0,22723.0,4.24377099609375 +22653.0,22724.0,4.68593896484375 +22653.0,22725.0,4.275856201171875 +22653.0,22726.0,4.28971826171875 +22653.0,22727.0,4.93069091796875 +22653.0,22728.0,4.37018359375 +22653.0,22729.0,4.256935791015625 +22653.0,22730.0,4.19565673828125 +22653.0,22731.0,4.69857958984375 +22653.0,22733.0,4.07075732421875 +22653.0,22735.0,3.97450830078125 +22653.0,22736.0,4.79328515625 +22654.0,22635.0,0.754158203125 +22654.0,22636.0,1.6450380859375 +22654.0,22637.0,1.72786083984375 +22654.0,22638.0,1.52479833984375 +22654.0,22639.0,0.9802296752929688 +22654.0,22640.0,0.95797802734375 +22654.0,22641.0,1.44642626953125 +22654.0,22642.0,1.309658447265625 +22654.0,22643.0,1.503147216796875 +22654.0,22644.0,1.350330078125 +22654.0,22645.0,1.40763671875 +22654.0,22646.0,1.2476842041015626 +22654.0,22647.0,1.1545966796875 +22654.0,22648.0,1.0520259094238282 +22654.0,22649.0,3.51941748046875 +22654.0,22650.0,0.65663720703125 +22654.0,22651.0,1.0910751953125 +22654.0,22652.0,2.76486865234375 +22654.0,22653.0,3.202595703125 +22654.0,22654.0,0.10693359375 +22654.0,22655.0,0.60641162109375 +22654.0,22656.0,2.9819376220703124 +22654.0,22657.0,0.97192919921875 +22654.0,22658.0,2.57461865234375 +22654.0,22659.0,2.30349658203125 +22654.0,22660.0,2.32085595703125 +22654.0,22661.0,2.311044921875 +22654.0,22662.0,2.3701435546875 +22654.0,22663.0,2.2148994140625 +22654.0,22664.0,2.4811572265625 +22654.0,22665.0,3.12505078125 +22654.0,22666.0,2.2837177734375 +22654.0,22667.0,2.39725 +22654.0,22668.0,1.7715400390625 +22654.0,22669.0,2.553175537109375 +22654.0,22670.0,2.33448388671875 +22654.0,22671.0,3.7689345703125 +22654.0,22672.0,3.71640869140625 +22654.0,22673.0,3.6736376953125 +22654.0,22674.0,3.55494775390625 +22654.0,22679.0,4.991573486328125 +22654.0,22680.0,4.83639453125 +22654.0,22682.0,4.560945068359375 +22654.0,22683.0,4.635156494140625 +22654.0,22684.0,4.93553564453125 +22654.0,22689.0,4.991856201171875 +22654.0,22713.0,4.79502294921875 +22654.0,22714.0,4.947001953125 +22654.0,22715.0,4.808767578125 +22654.0,22716.0,4.96244970703125 +22654.0,22717.0,4.866466796875 +22654.0,22718.0,4.9420869140625 +22654.0,22720.0,4.5912216796875 +22654.0,22721.0,4.28182763671875 +22654.0,22722.0,4.217029296875 +22654.0,22723.0,4.26310888671875 +22654.0,22724.0,4.70527685546875 +22654.0,22725.0,4.295194091796875 +22654.0,22726.0,4.30905615234375 +22654.0,22727.0,4.95002880859375 +22654.0,22728.0,4.389521484375 +22654.0,22729.0,4.276273681640625 +22654.0,22730.0,4.21499462890625 +22654.0,22731.0,4.71791748046875 +22654.0,22733.0,4.61209521484375 +22654.0,22735.0,4.51584619140625 +22655.0,22635.0,0.48163623046875 +22655.0,22636.0,1.37251611328125 +22655.0,22637.0,1.4553388671875 +22655.0,22638.0,1.2522763671875 +22655.0,22639.0,1.0997077026367188 +22655.0,22640.0,1.0774560546875 +22655.0,22641.0,1.489904296875 +22655.0,22642.0,1.353136474609375 +22655.0,22643.0,1.622625244140625 +22655.0,22644.0,1.46980810546875 +22655.0,22645.0,1.52711474609375 +22655.0,22646.0,1.3671622314453125 +22655.0,22647.0,1.27407470703125 +22655.0,22648.0,1.171503936767578 +22655.0,22649.0,3.2468955078125 +22655.0,22650.0,0.384115234375 +22655.0,22651.0,0.81855322265625 +22655.0,22652.0,2.8843466796875 +22655.0,22653.0,3.32207373046875 +22655.0,22654.0,0.60641162109375 +22655.0,22655.0,0.0618896484375 +22655.0,22656.0,2.7094156494140624 +22655.0,22657.0,0.6994072265625 +22655.0,22658.0,2.6940966796875 +22655.0,22659.0,2.422974609375 +22655.0,22660.0,2.440333984375 +22655.0,22661.0,2.43052294921875 +22655.0,22662.0,2.48962158203125 +22655.0,22663.0,2.33437744140625 +22655.0,22664.0,2.60063525390625 +22655.0,22665.0,3.24452880859375 +22655.0,22666.0,2.40319580078125 +22655.0,22667.0,2.51672802734375 +22655.0,22668.0,1.89101806640625 +22655.0,22669.0,2.672653564453125 +22655.0,22670.0,2.4539619140625 +22655.0,22671.0,3.88841259765625 +22655.0,22672.0,3.44388671875 +22655.0,22673.0,3.79311572265625 +22655.0,22674.0,3.67442578125 +22655.0,22680.0,4.95587255859375 +22655.0,22682.0,4.680423095703125 +22655.0,22683.0,4.754634521484375 +22655.0,22713.0,4.8385009765625 +22655.0,22715.0,4.85224560546875 +22655.0,22717.0,4.90994482421875 +22655.0,22718.0,4.98556494140625 +22655.0,22720.0,4.63469970703125 +22655.0,22721.0,4.3253056640625 +22655.0,22722.0,4.26050732421875 +22655.0,22723.0,4.3065869140625 +22655.0,22724.0,4.7487548828125 +22655.0,22725.0,4.338672119140625 +22655.0,22726.0,4.3525341796875 +22655.0,22728.0,4.43299951171875 +22655.0,22729.0,4.319751708984375 +22655.0,22730.0,4.25847265625 +22655.0,22731.0,4.7613955078125 +22655.0,22733.0,4.6555732421875 +22655.0,22735.0,4.55932421875 +22656.0,22635.0,2.5451622314453126 +22656.0,22636.0,2.9020421142578123 +22656.0,22637.0,2.9848648681640624 +22656.0,22638.0,2.7818023681640627 +22656.0,22639.0,3.138233703613281 +22656.0,22640.0,3.2249820556640625 +22656.0,22641.0,3.1694302978515627 +22656.0,22642.0,3.121662475585937 +22656.0,22643.0,3.0841512451171877 +22656.0,22644.0,3.0633341064453123 +22656.0,22645.0,2.9886407470703125 +22656.0,22646.0,2.960688232421875 +22656.0,22647.0,3.0686007080078124 +22656.0,22648.0,2.966029937744141 +22656.0,22649.0,0.5464215087890625 +22656.0,22650.0,2.5076412353515627 +22656.0,22651.0,2.3860792236328123 +22656.0,22652.0,1.3438726806640624 +22656.0,22653.0,2.0055997314453125 +22656.0,22654.0,2.9819376220703124 +22656.0,22655.0,2.7094156494140624 +22656.0,22656.0,0.008941650390625 +22656.0,22657.0,2.2669332275390626 +22656.0,22658.0,1.5596226806640625 +22656.0,22659.0,2.1605006103515625 +22656.0,22660.0,2.1778599853515623 +22656.0,22661.0,1.9340489501953124 +22656.0,22662.0,1.8771475830078128 +22656.0,22663.0,2.0499034423828126 +22656.0,22664.0,1.7441612548828125 +22656.0,22665.0,1.9280548095703125 +22656.0,22666.0,1.7907218017578126 +22656.0,22667.0,2.1162540283203124 +22656.0,22668.0,2.3385440673828124 +22656.0,22669.0,2.2721795654296875 +22656.0,22670.0,2.053487915039063 +22656.0,22671.0,2.1569385986328125 +22656.0,22672.0,0.7434127197265625 +22656.0,22673.0,1.8726417236328128 +22656.0,22674.0,1.6009517822265624 +22656.0,22722.0,4.955033325195313 +22656.0,22730.0,4.952998657226562 +22656.0,22733.0,4.788099243164062 +22656.0,22735.0,4.691850219726563 +22657.0,22635.0,0.53515380859375 +22657.0,22636.0,1.00503369140625 +22657.0,22637.0,1.0878564453125 +22657.0,22638.0,0.8847939453125 +22657.0,22639.0,1.4652252807617188 +22657.0,22640.0,1.4429736328125 +22657.0,22641.0,1.514421875 +22657.0,22642.0,1.377654052734375 +22657.0,22643.0,1.785142822265625 +22657.0,22644.0,1.53332568359375 +22657.0,22645.0,1.82263232421875 +22657.0,22646.0,1.4306798095703126 +22657.0,22647.0,1.63959228515625 +22657.0,22648.0,1.537021514892578 +22657.0,22649.0,2.8044130859375 +22657.0,22650.0,0.4976328125 +22657.0,22651.0,0.2420708007812499 +22657.0,22652.0,3.1798642578125 +22657.0,22653.0,3.61759130859375 +22657.0,22654.0,0.97192919921875 +22657.0,22655.0,0.6994072265625 +22657.0,22656.0,2.2669332275390626 +22657.0,22657.0,0.1229248046875 +22657.0,22658.0,2.9896142578125 +22657.0,22659.0,2.7184921875 +22657.0,22660.0,2.7358515625 +22657.0,22661.0,2.72604052734375 +22657.0,22662.0,2.78513916015625 +22657.0,22663.0,2.62989501953125 +22657.0,22664.0,2.89615283203125 +22657.0,22665.0,3.54004638671875 +22657.0,22666.0,2.69871337890625 +22657.0,22667.0,2.81224560546875 +22657.0,22668.0,2.18653564453125 +22657.0,22669.0,2.968171142578125 +22657.0,22670.0,2.7494794921875 +22657.0,22671.0,4.18393017578125 +22657.0,22672.0,3.001404296875 +22657.0,22673.0,4.08863330078125 +22657.0,22674.0,3.858943359375 +22657.0,22720.0,4.65921728515625 +22657.0,22721.0,4.3498232421875 +22657.0,22722.0,4.28502490234375 +22657.0,22723.0,4.3311044921875 +22657.0,22724.0,4.7732724609375 +22657.0,22725.0,4.363189697265625 +22657.0,22726.0,4.3770517578125 +22657.0,22728.0,4.45751708984375 +22657.0,22729.0,4.344269287109375 +22657.0,22730.0,4.282990234375 +22657.0,22733.0,4.6800908203125 +22657.0,22735.0,4.583841796875 +22658.0,22635.0,2.84184326171875 +22658.0,22636.0,3.70772314453125 +22658.0,22637.0,3.7905458984375 +22658.0,22638.0,3.5874833984375 +22658.0,22639.0,1.7529147338867188 +22658.0,22640.0,1.8396630859375 +22658.0,22641.0,1.784111328125 +22658.0,22642.0,1.736343505859375 +22658.0,22643.0,1.698832275390625 +22658.0,22644.0,1.67801513671875 +22658.0,22645.0,1.60332177734375 +22658.0,22646.0,1.5753692626953124 +22658.0,22647.0,1.68328173828125 +22658.0,22648.0,1.5807109680175782 +22658.0,22649.0,1.1371025390625 +22658.0,22650.0,2.744322265625 +22658.0,22651.0,3.10876025390625 +22658.0,22652.0,0.3645537109375 +22658.0,22653.0,0.84228076171875 +22658.0,22654.0,2.57461865234375 +22658.0,22655.0,2.6940966796875 +22658.0,22656.0,1.5596226806640625 +22658.0,22657.0,2.9896142578125 +22658.0,22658.0,0.0863037109375 +22658.0,22659.0,0.775181640625 +22658.0,22660.0,0.792541015625 +22658.0,22661.0,0.77072998046875 +22658.0,22662.0,0.71382861328125 +22658.0,22663.0,0.88658447265625 +22658.0,22664.0,0.58084228515625 +22658.0,22665.0,0.76473583984375 +22658.0,22666.0,0.62740283203125 +22658.0,22667.0,0.64293505859375 +22658.0,22668.0,0.95322509765625 +22658.0,22669.0,0.798860595703125 +22658.0,22670.0,0.5801689453125001 +22658.0,22671.0,1.73261962890625 +22658.0,22672.0,1.75709375 +22658.0,22673.0,1.47832275390625 +22658.0,22674.0,1.2066328125 +22658.0,22675.0,4.844092895507813 +22658.0,22676.0,4.955255661010742 +22658.0,22678.0,4.66325732421875 +22658.0,22679.0,4.625258544921875 +22658.0,22680.0,4.47007958984375 +22658.0,22681.0,4.7380078125 +22658.0,22682.0,4.194630126953125 +22658.0,22683.0,4.268841552734375 +22658.0,22684.0,4.569220703125 +22658.0,22689.0,4.625541259765625 +22658.0,22690.0,4.53717919921875 +22658.0,22691.0,4.596587890625 +22658.0,22692.0,4.521301025390625 +22658.0,22693.0,4.8107666015625 +22658.0,22695.0,4.6799883422851565 +22658.0,22696.0,4.666470947265625 +22658.0,22697.0,4.427403594970703 +22658.0,22698.0,4.38213427734375 +22658.0,22699.0,4.4450615234375 +22658.0,22700.0,4.8598349609375 +22658.0,22701.0,4.550108764648438 +22658.0,22702.0,4.7315537109375 +22658.0,22703.0,4.40029541015625 +22658.0,22704.0,4.444482055664063 +22658.0,22705.0,4.55550634765625 +22658.0,22706.0,4.66143701171875 +22658.0,22707.0,4.8685927734375 +22658.0,22708.0,4.7655869140625 +22658.0,22709.0,4.6437978515625 +22658.0,22710.0,4.734244873046875 +22658.0,22711.0,4.71229443359375 +22658.0,22713.0,4.1477080078125 +22658.0,22714.0,4.29968701171875 +22658.0,22715.0,4.161452636718749 +22658.0,22716.0,4.315134765625 +22658.0,22717.0,4.21915185546875 +22658.0,22718.0,4.29477197265625 +22658.0,22719.0,4.3610107421875 +22658.0,22720.0,3.94390673828125 +22658.0,22721.0,3.6345126953125 +22658.0,22722.0,3.56971435546875 +22658.0,22723.0,3.6157939453125 +22658.0,22724.0,4.0579619140625 +22658.0,22725.0,3.647879150390625 +22658.0,22726.0,3.6617412109375 +22658.0,22727.0,4.3027138671875 +22658.0,22728.0,3.74220654296875 +22658.0,22729.0,3.628958740234375 +22658.0,22730.0,3.5676796875 +22658.0,22731.0,4.0706025390625005 +22658.0,22732.0,4.53327294921875 +22658.0,22733.0,3.3147802734375 +22658.0,22735.0,3.21853125 +22658.0,22736.0,4.03730810546875 +22659.0,22635.0,2.57072119140625 +22659.0,22636.0,3.43660107421875 +22659.0,22637.0,3.519423828125 +22659.0,22638.0,3.316361328125 +22659.0,22639.0,1.481792663574219 +22659.0,22640.0,1.568541015625 +22659.0,22641.0,1.5129892578125 +22659.0,22642.0,1.465221435546875 +22659.0,22643.0,1.427710205078125 +22659.0,22644.0,1.40689306640625 +22659.0,22645.0,1.33219970703125 +22659.0,22646.0,1.3042471923828125 +22659.0,22647.0,1.41215966796875 +22659.0,22648.0,1.309588897705078 +22659.0,22649.0,1.73798046875 +22659.0,22650.0,2.4732001953125 +22659.0,22651.0,2.83763818359375 +22659.0,22652.0,0.965431640625 +22659.0,22653.0,1.40315869140625 +22659.0,22654.0,2.30349658203125 +22659.0,22655.0,2.422974609375 +22659.0,22656.0,2.1605006103515625 +22659.0,22657.0,2.7184921875 +22659.0,22658.0,0.775181640625 +22659.0,22659.0,0.0860595703125 +22659.0,22660.0,0.3794189453125 +22659.0,22661.0,0.5116079101562501 +22659.0,22662.0,0.57070654296875 +22659.0,22663.0,0.87646240234375 +22659.0,22664.0,0.68172021484375 +22659.0,22665.0,1.32561376953125 +22659.0,22666.0,0.48428076171875 +22659.0,22667.0,0.46581298828125 +22659.0,22668.0,0.68210302734375 +22659.0,22669.0,0.741738525390625 +22659.0,22670.0,0.523046875 +22659.0,22671.0,1.96949755859375 +22659.0,22672.0,2.3319716796875 +22659.0,22673.0,1.87420068359375 +22659.0,22674.0,1.7555107421875 +22659.0,22675.0,4.3329708251953125 +22659.0,22676.0,4.444133590698242 +22659.0,22677.0,4.488574157714844 +22659.0,22678.0,4.15213525390625 +22659.0,22679.0,4.114136474609375 +22659.0,22680.0,3.95895751953125 +22659.0,22681.0,4.2268857421875 +22659.0,22682.0,3.683508056640625 +22659.0,22683.0,3.757719482421875 +22659.0,22684.0,4.0580986328125 +22659.0,22687.0,4.874423095703125 +22659.0,22689.0,4.114419189453125 +22659.0,22690.0,4.02605712890625 +22659.0,22691.0,4.0854658203125 +22659.0,22692.0,4.010178955078125 +22659.0,22693.0,4.29964453125 +22659.0,22695.0,4.168866271972656 +22659.0,22696.0,4.155348876953125 +22659.0,22697.0,3.9162815246582032 +22659.0,22698.0,3.87101220703125 +22659.0,22699.0,3.933939453125 +22659.0,22700.0,4.348712890625 +22659.0,22701.0,4.038986694335938 +22659.0,22702.0,4.220431640625 +22659.0,22703.0,3.88917333984375 +22659.0,22704.0,3.9333599853515615 +22659.0,22705.0,4.044384277343751 +22659.0,22706.0,4.15031494140625 +22659.0,22707.0,4.357470703125 +22659.0,22708.0,4.25446484375 +22659.0,22709.0,4.13267578125 +22659.0,22710.0,4.223122802734375 +22659.0,22711.0,4.29517236328125 +22659.0,22712.0,4.77860498046875 +22659.0,22713.0,3.6365859375 +22659.0,22714.0,3.78856494140625 +22659.0,22715.0,3.65033056640625 +22659.0,22716.0,3.8040126953125 +22659.0,22717.0,3.70802978515625 +22659.0,22718.0,3.78364990234375 +22659.0,22719.0,3.849888671875 +22659.0,22720.0,3.43278466796875 +22659.0,22721.0,3.123390625 +22659.0,22722.0,3.05859228515625 +22659.0,22723.0,3.104671875 +22659.0,22724.0,3.54683984375 +22659.0,22725.0,3.136757080078125 +22659.0,22726.0,3.150619140625 +22659.0,22727.0,3.791591796875 +22659.0,22728.0,3.23108447265625 +22659.0,22729.0,3.117836669921875 +22659.0,22730.0,3.0565576171875 +22659.0,22731.0,3.55948046875 +22659.0,22732.0,4.02215087890625 +22659.0,22733.0,3.045658203125 +22659.0,22735.0,2.9494091796875 +22659.0,22736.0,3.76818603515625 +22660.0,22635.0,2.58808056640625 +22660.0,22636.0,3.45396044921875 +22660.0,22637.0,3.536783203125 +22660.0,22638.0,3.333720703125 +22660.0,22639.0,1.4991520385742187 +22660.0,22640.0,1.585900390625 +22660.0,22641.0,1.5303486328125 +22660.0,22642.0,1.482580810546875 +22660.0,22643.0,1.445069580078125 +22660.0,22644.0,1.42425244140625 +22660.0,22645.0,1.34955908203125 +22660.0,22646.0,1.3216065673828126 +22660.0,22647.0,1.42951904296875 +22660.0,22648.0,1.326948272705078 +22660.0,22649.0,1.75533984375 +22660.0,22650.0,2.4905595703125 +22660.0,22651.0,2.85499755859375 +22660.0,22652.0,0.982791015625 +22660.0,22653.0,1.42051806640625 +22660.0,22654.0,2.32085595703125 +22660.0,22655.0,2.440333984375 +22660.0,22656.0,2.1778599853515623 +22660.0,22657.0,2.7358515625 +22660.0,22658.0,0.792541015625 +22660.0,22659.0,0.3794189453125 +22660.0,22660.0,0.2227783203125 +22660.0,22661.0,0.52896728515625 +22660.0,22662.0,0.58806591796875 +22660.0,22663.0,0.89382177734375 +22660.0,22664.0,0.6990795898437501 +22660.0,22665.0,1.34297314453125 +22660.0,22666.0,0.50164013671875 +22660.0,22667.0,0.48317236328125 +22660.0,22668.0,0.69946240234375 +22660.0,22669.0,0.759097900390625 +22660.0,22670.0,0.54040625 +22660.0,22671.0,1.98685693359375 +22660.0,22672.0,2.3493310546875 +22660.0,22673.0,1.89156005859375 +22660.0,22674.0,1.7728701171875 +22660.0,22675.0,4.448330200195312 +22660.0,22676.0,4.559492965698242 +22660.0,22677.0,4.603933532714843 +22660.0,22678.0,4.26749462890625 +22660.0,22679.0,4.229495849609375 +22660.0,22680.0,4.0743168945312505 +22660.0,22681.0,4.3422451171875 +22660.0,22682.0,3.798867431640625 +22660.0,22683.0,3.873078857421875 +22660.0,22684.0,4.1734580078125 +22660.0,22687.0,4.989782470703125 +22660.0,22689.0,4.229778564453125 +22660.0,22690.0,4.14141650390625 +22660.0,22691.0,4.2008251953125 +22660.0,22692.0,4.125538330078125 +22660.0,22693.0,4.41500390625 +22660.0,22695.0,4.284225646972656 +22660.0,22696.0,4.270708251953125 +22660.0,22697.0,4.031640899658203 +22660.0,22698.0,3.98637158203125 +22660.0,22699.0,4.049298828125 +22660.0,22700.0,4.464072265625 +22660.0,22701.0,4.154346069335937 +22660.0,22702.0,4.335791015625 +22660.0,22703.0,4.00453271484375 +22660.0,22704.0,4.048719360351562 +22660.0,22705.0,4.159743652343749 +22660.0,22706.0,4.26567431640625 +22660.0,22707.0,4.472830078125 +22660.0,22708.0,4.36982421875 +22660.0,22709.0,4.24803515625 +22660.0,22710.0,4.338482177734375 +22660.0,22711.0,4.41053173828125 +22660.0,22712.0,4.89396435546875 +22660.0,22713.0,3.7519453125 +22660.0,22714.0,3.90392431640625 +22660.0,22715.0,3.76568994140625 +22660.0,22716.0,3.9193720703125 +22660.0,22717.0,3.82338916015625 +22660.0,22718.0,3.89900927734375 +22660.0,22719.0,3.965248046875 +22660.0,22720.0,3.54814404296875 +22660.0,22721.0,3.23875 +22660.0,22722.0,3.17395166015625 +22660.0,22723.0,3.22003125 +22660.0,22724.0,3.66219921875 +22660.0,22725.0,3.252116455078125 +22660.0,22726.0,3.265978515625 +22660.0,22727.0,3.906951171875 +22660.0,22728.0,3.34644384765625 +22660.0,22729.0,3.233196044921875 +22660.0,22730.0,3.1719169921875 +22660.0,22731.0,3.67483984375 +22660.0,22732.0,4.13751025390625 +22660.0,22733.0,3.161017578125 +22660.0,22735.0,3.0647685546875 +22660.0,22736.0,3.88354541015625 +22661.0,22635.0,2.57826953125 +22661.0,22636.0,3.4441494140625 +22661.0,22637.0,3.52697216796875 +22661.0,22638.0,3.32390966796875 +22661.0,22639.0,1.4893410034179688 +22661.0,22640.0,1.57608935546875 +22661.0,22641.0,1.52053759765625 +22661.0,22642.0,1.472769775390625 +22661.0,22643.0,1.435258544921875 +22661.0,22644.0,1.41444140625 +22661.0,22645.0,1.339748046875 +22661.0,22646.0,1.3117955322265624 +22661.0,22647.0,1.4197080078125 +22661.0,22648.0,1.3171372375488282 +22661.0,22649.0,1.51152880859375 +22661.0,22650.0,2.48074853515625 +22661.0,22651.0,2.8451865234375 +22661.0,22652.0,0.73897998046875 +22661.0,22653.0,1.17670703125 +22661.0,22654.0,2.311044921875 +22661.0,22655.0,2.43052294921875 +22661.0,22656.0,1.9340489501953124 +22661.0,22657.0,2.72604052734375 +22661.0,22658.0,0.77072998046875 +22661.0,22659.0,0.5116079101562501 +22661.0,22660.0,0.52896728515625 +22661.0,22661.0,0.28515625 +22661.0,22662.0,0.3442548828125 +22661.0,22663.0,0.6500107421875 +22661.0,22664.0,0.4552685546875 +22661.0,22665.0,1.099162109375 +22661.0,22666.0,0.2578291015625 +22661.0,22667.0,0.605361328125 +22661.0,22668.0,0.6896513671875 +22661.0,22669.0,0.761286865234375 +22661.0,22670.0,0.5425952148437501 +22661.0,22671.0,1.9770458984375 +22661.0,22672.0,2.13152001953125 +22661.0,22673.0,1.8527490234375 +22661.0,22674.0,1.58105908203125 +22661.0,22675.0,4.580519165039062 +22661.0,22676.0,4.691681930541992 +22661.0,22677.0,4.736122497558593 +22661.0,22678.0,4.39968359375 +22661.0,22679.0,4.361684814453125 +22661.0,22680.0,4.206505859375 +22661.0,22681.0,4.47443408203125 +22661.0,22682.0,3.931056396484375 +22661.0,22683.0,4.005267822265624 +22661.0,22684.0,4.30564697265625 +22661.0,22689.0,4.361967529296875 +22661.0,22690.0,4.27360546875 +22661.0,22691.0,4.33301416015625 +22661.0,22692.0,4.257727294921875 +22661.0,22693.0,4.54719287109375 +22661.0,22695.0,4.416414611816406 +22661.0,22696.0,4.402897216796875 +22661.0,22697.0,4.163829864501953 +22661.0,22698.0,4.118560546875 +22661.0,22699.0,4.18148779296875 +22661.0,22700.0,4.59626123046875 +22661.0,22701.0,4.286535034179687 +22661.0,22702.0,4.46797998046875 +22661.0,22703.0,4.136721679687501 +22661.0,22704.0,4.180908325195312 +22661.0,22705.0,4.2919326171875 +22661.0,22706.0,4.39786328125 +22661.0,22707.0,4.60501904296875 +22661.0,22708.0,4.50201318359375 +22661.0,22709.0,4.38022412109375 +22661.0,22710.0,4.470671142578125 +22661.0,22711.0,4.542720703125 +22661.0,22713.0,3.88413427734375 +22661.0,22714.0,4.03611328125 +22661.0,22715.0,3.89787890625 +22661.0,22716.0,4.05156103515625 +22661.0,22717.0,3.955578125 +22661.0,22718.0,4.0311982421875 +22661.0,22719.0,4.09743701171875 +22661.0,22720.0,3.6803330078125 +22661.0,22721.0,3.37093896484375 +22661.0,22722.0,3.306140625 +22661.0,22723.0,3.35222021484375 +22661.0,22724.0,3.79438818359375 +22661.0,22725.0,3.384305419921875 +22661.0,22726.0,3.39816748046875 +22661.0,22727.0,4.03914013671875 +22661.0,22728.0,3.4786328125 +22661.0,22729.0,3.365385009765625 +22661.0,22730.0,3.30410595703125 +22661.0,22731.0,3.80702880859375 +22661.0,22732.0,4.26969921875 +22661.0,22733.0,3.29320654296875 +22661.0,22735.0,3.19695751953125 +22661.0,22736.0,4.015734375 +22662.0,22635.0,2.6373681640625 +22662.0,22636.0,3.503248046875 +22662.0,22637.0,3.58607080078125 +22662.0,22638.0,3.38300830078125 +22662.0,22639.0,1.5484396362304689 +22662.0,22640.0,1.63518798828125 +22662.0,22641.0,1.57963623046875 +22662.0,22642.0,1.531868408203125 +22662.0,22643.0,1.494357177734375 +22662.0,22644.0,1.4735400390625 +22662.0,22645.0,1.3988466796875 +22662.0,22646.0,1.3708941650390625 +22662.0,22647.0,1.478806640625 +22662.0,22648.0,1.3762358703613282 +22662.0,22649.0,1.45462744140625 +22662.0,22650.0,2.53984716796875 +22662.0,22651.0,2.90428515625 +22662.0,22652.0,0.68207861328125 +22662.0,22653.0,1.1198056640625 +22662.0,22654.0,2.3701435546875 +22662.0,22655.0,2.48962158203125 +22662.0,22656.0,1.8771475830078128 +22662.0,22657.0,2.78513916015625 +22662.0,22658.0,0.71382861328125 +22662.0,22659.0,0.57070654296875 +22662.0,22660.0,0.58806591796875 +22662.0,22661.0,0.3442548828125 +22662.0,22662.0,0.287353515625 +22662.0,22663.0,0.593109375 +22662.0,22664.0,0.3983671875 +22662.0,22665.0,1.0422607421875 +22662.0,22666.0,0.200927734375 +22662.0,22667.0,0.6644599609374999 +22662.0,22668.0,0.74875 +22662.0,22669.0,0.820385498046875 +22662.0,22670.0,0.60169384765625 +22662.0,22671.0,2.03614453125 +22662.0,22672.0,2.0746186523437498 +22662.0,22673.0,1.79584765625 +22662.0,22674.0,1.52415771484375 +22662.0,22675.0,4.639617797851563 +22662.0,22676.0,4.750780563354493 +22662.0,22677.0,4.795221130371094 +22662.0,22678.0,4.4587822265625 +22662.0,22679.0,4.420783447265625 +22662.0,22680.0,4.2656044921875 +22662.0,22681.0,4.53353271484375 +22662.0,22682.0,3.990155029296875 +22662.0,22683.0,4.064366455078125 +22662.0,22684.0,4.36474560546875 +22662.0,22689.0,4.421066162109375 +22662.0,22690.0,4.3327041015625 +22662.0,22691.0,4.39211279296875 +22662.0,22692.0,4.316825927734375 +22662.0,22693.0,4.60629150390625 +22662.0,22695.0,4.475513244628906 +22662.0,22696.0,4.461995849609375 +22662.0,22697.0,4.222928497314453 +22662.0,22698.0,4.1776591796875 +22662.0,22699.0,4.24058642578125 +22662.0,22700.0,4.65535986328125 +22662.0,22701.0,4.345633666992187 +22662.0,22702.0,4.52707861328125 +22662.0,22703.0,4.1958203125 +22662.0,22704.0,4.240006958007813 +22662.0,22705.0,4.35103125 +22662.0,22706.0,4.4569619140625 +22662.0,22707.0,4.66411767578125 +22662.0,22708.0,4.56111181640625 +22662.0,22709.0,4.43932275390625 +22662.0,22710.0,4.529769775390625 +22662.0,22711.0,4.6018193359375 +22662.0,22713.0,3.94323291015625 +22662.0,22714.0,4.095211914062499 +22662.0,22715.0,3.9569775390625 +22662.0,22716.0,4.110659667968751 +22662.0,22717.0,4.0146767578125 +22662.0,22718.0,4.090296875 +22662.0,22719.0,4.15653564453125 +22662.0,22720.0,3.739431640625 +22662.0,22721.0,3.43003759765625 +22662.0,22722.0,3.3652392578125 +22662.0,22723.0,3.41131884765625 +22662.0,22724.0,3.85348681640625 +22662.0,22725.0,3.443404052734375 +22662.0,22726.0,3.45726611328125 +22662.0,22727.0,4.09823876953125 +22662.0,22728.0,3.5377314453125 +22662.0,22729.0,3.424483642578125 +22662.0,22730.0,3.36320458984375 +22662.0,22731.0,3.86612744140625 +22662.0,22732.0,4.3287978515625 +22662.0,22733.0,3.35230517578125 +22662.0,22735.0,3.25605615234375 +22662.0,22736.0,4.0748330078125 +22663.0,22635.0,2.4821240234375 +22663.0,22636.0,3.34800390625 +22663.0,22637.0,3.43082666015625 +22663.0,22638.0,3.22776416015625 +22663.0,22639.0,1.3931954956054688 +22663.0,22640.0,1.47994384765625 +22663.0,22641.0,1.42439208984375 +22663.0,22642.0,1.376624267578125 +22663.0,22643.0,1.339113037109375 +22663.0,22644.0,1.3182958984375 +22663.0,22645.0,1.2436025390625 +22663.0,22646.0,1.2156500244140624 +22663.0,22647.0,1.3235625 +22663.0,22648.0,1.2209917297363282 +22663.0,22649.0,1.62738330078125 +22663.0,22650.0,2.38460302734375 +22663.0,22651.0,2.749041015625 +22663.0,22652.0,0.85483447265625 +22663.0,22653.0,1.2925615234375 +22663.0,22654.0,2.2148994140625 +22663.0,22655.0,2.33437744140625 +22663.0,22656.0,2.0499034423828126 +22663.0,22657.0,2.62989501953125 +22663.0,22658.0,0.88658447265625 +22663.0,22659.0,0.87646240234375 +22663.0,22660.0,0.89382177734375 +22663.0,22661.0,0.6500107421875 +22663.0,22662.0,0.593109375 +22663.0,22663.0,0.286865234375 +22663.0,22664.0,0.5711230468749999 +22663.0,22665.0,1.2150166015625 +22663.0,22666.0,0.50668359375 +22663.0,22667.0,0.9702158203125 +22663.0,22668.0,0.593505859375 +22663.0,22669.0,1.126141357421875 +22663.0,22670.0,0.90744970703125 +22663.0,22671.0,2.252900390625 +22663.0,22672.0,2.24737451171875 +22663.0,22673.0,1.968603515625 +22663.0,22674.0,1.69691357421875 +22663.0,22675.0,4.8003736572265625 +22663.0,22676.0,4.911536422729492 +22663.0,22677.0,4.955976989746094 +22663.0,22678.0,4.6195380859375 +22663.0,22679.0,4.581539306640625 +22663.0,22680.0,4.4263603515625 +22663.0,22681.0,4.69428857421875 +22663.0,22682.0,4.150910888671875 +22663.0,22683.0,4.225122314453125 +22663.0,22684.0,4.52550146484375 +22663.0,22689.0,4.581822021484375 +22663.0,22690.0,4.4934599609375 +22663.0,22691.0,4.55286865234375 +22663.0,22692.0,4.477581787109375 +22663.0,22693.0,4.76704736328125 +22663.0,22695.0,4.636269104003906 +22663.0,22696.0,4.622751708984375 +22663.0,22697.0,4.383684356689453 +22663.0,22698.0,4.3384150390625 +22663.0,22699.0,4.40134228515625 +22663.0,22700.0,4.81611572265625 +22663.0,22701.0,4.506389526367188 +22663.0,22702.0,4.68783447265625 +22663.0,22703.0,4.356576171875 +22663.0,22704.0,4.400762817382812 +22663.0,22705.0,4.511787109375 +22663.0,22706.0,4.6177177734375 +22663.0,22707.0,4.82487353515625 +22663.0,22708.0,4.72186767578125 +22663.0,22709.0,4.60007861328125 +22663.0,22710.0,4.690525634765625 +22663.0,22711.0,4.7625751953125 +22663.0,22713.0,4.1039887695312505 +22663.0,22714.0,4.2559677734375 +22663.0,22715.0,4.1177333984375 +22663.0,22716.0,4.27141552734375 +22663.0,22717.0,4.1754326171875 +22663.0,22718.0,4.251052734375 +22663.0,22719.0,4.31729150390625 +22663.0,22720.0,3.9001875 +22663.0,22721.0,3.59079345703125 +22663.0,22722.0,3.5259951171875 +22663.0,22723.0,3.57207470703125 +22663.0,22724.0,4.01424267578125 +22663.0,22725.0,3.604159912109375 +22663.0,22726.0,3.61802197265625 +22663.0,22727.0,4.25899462890625 +22663.0,22728.0,3.6984873046875 +22663.0,22729.0,3.585239501953125 +22663.0,22730.0,3.52396044921875 +22663.0,22731.0,4.02688330078125 +22663.0,22732.0,4.4895537109375 +22663.0,22733.0,3.65006103515625 +22663.0,22735.0,3.55381201171875 +22663.0,22736.0,4.3725888671875 +22664.0,22635.0,2.7483818359375 +22664.0,22636.0,3.61426171875 +22664.0,22637.0,3.69708447265625 +22664.0,22638.0,3.49402197265625 +22664.0,22639.0,1.6594533081054688 +22664.0,22640.0,1.74620166015625 +22664.0,22641.0,1.69064990234375 +22664.0,22642.0,1.642882080078125 +22664.0,22643.0,1.605370849609375 +22664.0,22644.0,1.5845537109375 +22664.0,22645.0,1.5098603515625 +22664.0,22646.0,1.4819078369140626 +22664.0,22647.0,1.5898203125 +22664.0,22648.0,1.487249542236328 +22664.0,22649.0,1.32164111328125 +22664.0,22650.0,2.65086083984375 +22664.0,22651.0,3.015298828125 +22664.0,22652.0,0.5490922851562501 +22664.0,22653.0,0.9868193359375 +22664.0,22654.0,2.4811572265625 +22664.0,22655.0,2.60063525390625 +22664.0,22656.0,1.7441612548828125 +22664.0,22657.0,2.89615283203125 +22664.0,22658.0,0.58084228515625 +22664.0,22659.0,0.68172021484375 +22664.0,22660.0,0.6990795898437501 +22664.0,22661.0,0.4552685546875 +22664.0,22662.0,0.3983671875 +22664.0,22663.0,0.5711230468749999 +22664.0,22664.0,0.265380859375 +22664.0,22665.0,0.9092744140625 +22664.0,22666.0,0.31194140625 +22664.0,22667.0,0.7754736328125 +22664.0,22668.0,0.859763671875 +22664.0,22669.0,0.931399169921875 +22664.0,22670.0,0.71270751953125 +22664.0,22671.0,1.947158203125 +22664.0,22672.0,1.94163232421875 +22664.0,22673.0,1.662861328125 +22664.0,22674.0,1.39117138671875 +22664.0,22675.0,4.750631469726563 +22664.0,22676.0,4.8617942352294925 +22664.0,22677.0,4.906234802246094 +22664.0,22678.0,4.5697958984375 +22664.0,22679.0,4.531797119140625 +22664.0,22680.0,4.3766181640625 +22664.0,22681.0,4.64454638671875 +22664.0,22682.0,4.101168701171876 +22664.0,22683.0,4.175380126953125 +22664.0,22684.0,4.47575927734375 +22664.0,22689.0,4.532079833984375 +22664.0,22690.0,4.4437177734375 +22664.0,22691.0,4.50312646484375 +22664.0,22692.0,4.427839599609375 +22664.0,22693.0,4.71730517578125 +22664.0,22695.0,4.586526916503907 +22664.0,22696.0,4.573009521484375 +22664.0,22697.0,4.333942169189453 +22664.0,22698.0,4.2886728515625 +22664.0,22699.0,4.35160009765625 +22664.0,22700.0,4.76637353515625 +22664.0,22701.0,4.456647338867188 +22664.0,22702.0,4.63809228515625 +22664.0,22703.0,4.306833984375 +22664.0,22704.0,4.351020629882813 +22664.0,22705.0,4.462044921875 +22664.0,22706.0,4.5679755859375 +22664.0,22707.0,4.77513134765625 +22664.0,22708.0,4.67212548828125 +22664.0,22709.0,4.55033642578125 +22664.0,22710.0,4.640783447265625 +22664.0,22711.0,4.7128330078125 +22664.0,22713.0,4.05424658203125 +22664.0,22714.0,4.2062255859375 +22664.0,22715.0,4.0679912109375 +22664.0,22716.0,4.22167333984375 +22664.0,22717.0,4.1256904296875 +22664.0,22718.0,4.201310546875 +22664.0,22719.0,4.26754931640625 +22664.0,22720.0,3.8504453125 +22664.0,22721.0,3.54105126953125 +22664.0,22722.0,3.4762529296875 +22664.0,22723.0,3.52233251953125 +22664.0,22724.0,3.96450048828125 +22664.0,22725.0,3.554417724609375 +22664.0,22726.0,3.56827978515625 +22664.0,22727.0,4.2092524414062495 +22664.0,22728.0,3.6487451171875 +22664.0,22729.0,3.535497314453125 +22664.0,22730.0,3.47421826171875 +22664.0,22731.0,3.97714111328125 +22664.0,22732.0,4.4398115234375 +22664.0,22733.0,3.46331884765625 +22664.0,22735.0,3.36706982421875 +22664.0,22736.0,4.1858466796875 +22665.0,22635.0,3.392275390625 +22665.0,22636.0,4.2581552734375006 +22665.0,22637.0,4.34097802734375 +22665.0,22638.0,4.137915527343751 +22665.0,22639.0,2.303346862792969 +22665.0,22640.0,2.39009521484375 +22665.0,22641.0,2.33454345703125 +22665.0,22642.0,2.286775634765625 +22665.0,22643.0,2.249264404296875 +22665.0,22644.0,2.2284472656250003 +22665.0,22645.0,2.15375390625 +22665.0,22646.0,2.125801391601563 +22665.0,22647.0,2.2337138671875003 +22665.0,22648.0,2.131143096923828 +22665.0,22649.0,1.50553466796875 +22665.0,22650.0,3.29475439453125 +22665.0,22651.0,3.6591923828125 +22665.0,22652.0,0.73298583984375 +22665.0,22653.0,1.170712890625 +22665.0,22654.0,3.12505078125 +22665.0,22655.0,3.24452880859375 +22665.0,22656.0,1.9280548095703125 +22665.0,22657.0,3.54004638671875 +22665.0,22658.0,0.76473583984375 +22665.0,22659.0,1.32561376953125 +22665.0,22660.0,1.34297314453125 +22665.0,22661.0,1.099162109375 +22665.0,22662.0,1.0422607421875 +22665.0,22663.0,1.2150166015625 +22665.0,22664.0,0.9092744140625 +22665.0,22665.0,0.34716796875 +22665.0,22666.0,0.9558349609375 +22665.0,22667.0,1.3213671875 +22665.0,22668.0,1.5036572265625 +22665.0,22669.0,1.477292724609375 +22665.0,22670.0,1.25860107421875 +22665.0,22671.0,2.1310517578125 +22665.0,22672.0,2.12552587890625 +22665.0,22673.0,1.8467548828125 +22665.0,22674.0,1.57506494140625 +22665.0,22682.0,4.745062255859375 +22665.0,22683.0,4.819273681640625 +22665.0,22697.0,4.977835723876953 +22665.0,22698.0,4.93256640625 +22665.0,22699.0,4.99549365234375 +22665.0,22703.0,4.9507275390625 +22665.0,22704.0,4.994914184570312 +22665.0,22713.0,4.69814013671875 +22665.0,22714.0,4.850119140625 +22665.0,22715.0,4.711884765625 +22665.0,22716.0,4.86556689453125 +22665.0,22717.0,4.769583984375 +22665.0,22718.0,4.8452041015625 +22665.0,22719.0,4.91144287109375 +22665.0,22720.0,4.4943388671875 +22665.0,22721.0,4.18494482421875 +22665.0,22722.0,4.120146484375001 +22665.0,22723.0,4.16622607421875 +22665.0,22724.0,4.60839404296875 +22665.0,22725.0,4.198311279296875 +22665.0,22726.0,4.2121733398437495 +22665.0,22727.0,4.85314599609375 +22665.0,22728.0,4.292638671875 +22665.0,22729.0,4.179390869140625 +22665.0,22730.0,4.11811181640625 +22665.0,22731.0,4.62103466796875 +22665.0,22733.0,3.99321240234375 +22665.0,22735.0,3.89696337890625 +22665.0,22736.0,4.715740234375 +22666.0,22635.0,2.5509423828125 +22666.0,22636.0,3.416822265625 +22666.0,22637.0,3.49964501953125 +22666.0,22638.0,3.29658251953125 +22666.0,22639.0,1.4620138549804689 +22666.0,22640.0,1.54876220703125 +22666.0,22641.0,1.49321044921875 +22666.0,22642.0,1.445442626953125 +22666.0,22643.0,1.407931396484375 +22666.0,22644.0,1.3871142578125 +22666.0,22645.0,1.3124208984375 +22666.0,22646.0,1.2844683837890625 +22666.0,22647.0,1.392380859375 +22666.0,22648.0,1.2898100891113282 +22666.0,22649.0,1.36820166015625 +22666.0,22650.0,2.45342138671875 +22666.0,22651.0,2.817859375 +22666.0,22652.0,0.59565283203125 +22666.0,22653.0,1.0333798828125 +22666.0,22654.0,2.2837177734375 +22666.0,22655.0,2.40319580078125 +22666.0,22656.0,1.7907218017578126 +22666.0,22657.0,2.69871337890625 +22666.0,22658.0,0.62740283203125 +22666.0,22659.0,0.48428076171875 +22666.0,22660.0,0.50164013671875 +22666.0,22661.0,0.2578291015625 +22666.0,22662.0,0.200927734375 +22666.0,22663.0,0.50668359375 +22666.0,22664.0,0.31194140625 +22666.0,22665.0,0.9558349609375 +22666.0,22666.0,0.114501953125 +22666.0,22667.0,0.5780341796874999 +22666.0,22668.0,0.66232421875 +22666.0,22669.0,0.733959716796875 +22666.0,22670.0,0.51526806640625 +22666.0,22671.0,1.94971875 +22666.0,22672.0,1.98819287109375 +22666.0,22673.0,1.709421875 +22666.0,22674.0,1.43773193359375 +22666.0,22675.0,4.553192016601563 +22666.0,22676.0,4.664354782104493 +22666.0,22677.0,4.708795349121094 +22666.0,22678.0,4.3723564453125 +22666.0,22679.0,4.334357666015625 +22666.0,22680.0,4.1791787109375 +22666.0,22681.0,4.44710693359375 +22666.0,22682.0,3.903729248046875 +22666.0,22683.0,3.977940673828125 +22666.0,22684.0,4.27831982421875 +22666.0,22689.0,4.334640380859375 +22666.0,22690.0,4.2462783203125 +22666.0,22691.0,4.30568701171875 +22666.0,22692.0,4.230400146484375 +22666.0,22693.0,4.51986572265625 +22666.0,22695.0,4.389087463378906 +22666.0,22696.0,4.375570068359375 +22666.0,22697.0,4.136502716064453 +22666.0,22698.0,4.0912333984375 +22666.0,22699.0,4.15416064453125 +22666.0,22700.0,4.56893408203125 +22666.0,22701.0,4.259207885742187 +22666.0,22702.0,4.44065283203125 +22666.0,22703.0,4.10939453125 +22666.0,22704.0,4.153581176757813 +22666.0,22705.0,4.26460546875 +22666.0,22706.0,4.3705361328125 +22666.0,22707.0,4.57769189453125 +22666.0,22708.0,4.47468603515625 +22666.0,22709.0,4.35289697265625 +22666.0,22710.0,4.443343994140625 +22666.0,22711.0,4.5153935546875 +22666.0,22712.0,4.998826171875 +22666.0,22713.0,3.85680712890625 +22666.0,22714.0,4.008786132812499 +22666.0,22715.0,3.8705517578125 +22666.0,22716.0,4.024233886718751 +22666.0,22717.0,3.9282509765625 +22666.0,22718.0,4.00387109375 +22666.0,22719.0,4.07010986328125 +22666.0,22720.0,3.653005859375 +22666.0,22721.0,3.34361181640625 +22666.0,22722.0,3.2788134765625 +22666.0,22723.0,3.32489306640625 +22666.0,22724.0,3.76706103515625 +22666.0,22725.0,3.356978271484375 +22666.0,22726.0,3.37084033203125 +22666.0,22727.0,4.01181298828125 +22666.0,22728.0,3.4513056640625 +22666.0,22729.0,3.338057861328125 +22666.0,22730.0,3.27677880859375 +22666.0,22731.0,3.77970166015625 +22666.0,22732.0,4.2423720703125 +22666.0,22733.0,3.26587939453125 +22666.0,22735.0,3.16963037109375 +22666.0,22736.0,3.9884072265625 +22667.0,22635.0,2.664474609375 +22667.0,22636.0,3.5303544921875 +22667.0,22637.0,3.61317724609375 +22667.0,22638.0,3.41011474609375 +22667.0,22639.0,1.5755460815429687 +22667.0,22640.0,1.66229443359375 +22667.0,22641.0,1.60674267578125 +22667.0,22642.0,1.558974853515625 +22667.0,22643.0,1.521463623046875 +22667.0,22644.0,1.500646484375 +22667.0,22645.0,1.425953125 +22667.0,22646.0,1.3980006103515623 +22667.0,22647.0,1.5059130859375 +22667.0,22648.0,1.403342315673828 +22667.0,22649.0,1.69373388671875 +22667.0,22650.0,2.56695361328125 +22667.0,22651.0,2.9313916015625 +22667.0,22652.0,0.92118505859375 +22667.0,22653.0,1.398912109375 +22667.0,22654.0,2.39725 +22667.0,22655.0,2.51672802734375 +22667.0,22656.0,2.1162540283203124 +22667.0,22657.0,2.81224560546875 +22667.0,22658.0,0.64293505859375 +22667.0,22659.0,0.46581298828125 +22667.0,22660.0,0.48317236328125 +22667.0,22661.0,0.605361328125 +22667.0,22662.0,0.6644599609374999 +22667.0,22663.0,0.9702158203125 +22667.0,22664.0,0.7754736328125 +22667.0,22665.0,1.3213671875 +22667.0,22666.0,0.5780341796874999 +22667.0,22667.0,0.20556640625 +22667.0,22668.0,0.7758564453125 +22667.0,22669.0,0.481491943359375 +22667.0,22670.0,0.26280029296875 +22667.0,22671.0,1.8372509765625 +22667.0,22672.0,2.19972509765625 +22667.0,22673.0,1.7419541015625 +22667.0,22674.0,1.62326416015625 +22667.0,22675.0,4.478724243164063 +22667.0,22676.0,4.5898870086669925 +22667.0,22677.0,4.634327575683594 +22667.0,22678.0,4.297888671875 +22667.0,22679.0,4.259889892578125 +22667.0,22680.0,4.1047109375 +22667.0,22681.0,4.37263916015625 +22667.0,22682.0,3.829261474609375 +22667.0,22683.0,3.903472900390625 +22667.0,22684.0,4.20385205078125 +22667.0,22689.0,4.260172607421875 +22667.0,22690.0,4.171810546875 +22667.0,22691.0,4.23121923828125 +22667.0,22692.0,4.155932373046875 +22667.0,22693.0,4.44539794921875 +22667.0,22695.0,4.314619689941407 +22667.0,22696.0,4.301102294921875 +22667.0,22697.0,4.062034942626953 +22667.0,22698.0,4.016765625 +22667.0,22699.0,4.07969287109375 +22667.0,22700.0,4.49446630859375 +22667.0,22701.0,4.184740112304688 +22667.0,22702.0,4.36618505859375 +22667.0,22703.0,3.9709267578125 +22667.0,22704.0,4.079113403320313 +22667.0,22705.0,4.1901376953125 +22667.0,22706.0,4.296068359375 +22667.0,22707.0,4.50322412109375 +22667.0,22708.0,4.40021826171875 +22667.0,22709.0,4.27842919921875 +22667.0,22710.0,4.368876220703125 +22667.0,22711.0,4.37692578125 +22667.0,22712.0,4.8603583984375 +22667.0,22713.0,3.71833935546875 +22667.0,22714.0,3.934318359375 +22667.0,22715.0,3.796083984375 +22667.0,22716.0,3.94976611328125 +22667.0,22717.0,3.853783203125 +22667.0,22718.0,3.9294033203125 +22667.0,22719.0,3.99564208984375 +22667.0,22720.0,3.5145380859375 +22667.0,22721.0,3.20514404296875 +22667.0,22722.0,3.140345703125 +22667.0,22723.0,3.18642529296875 +22667.0,22724.0,3.69259326171875 +22667.0,22725.0,3.282510498046875 +22667.0,22726.0,3.29637255859375 +22667.0,22727.0,3.87334521484375 +22667.0,22728.0,3.312837890625 +22667.0,22729.0,3.199590087890625 +22667.0,22730.0,3.13831103515625 +22667.0,22731.0,3.64123388671875 +22667.0,22732.0,4.103904296875 +22667.0,22733.0,2.89541162109375 +22667.0,22735.0,2.79916259765625 +22667.0,22736.0,3.617939453125 +22668.0,22635.0,2.0387646484375 +22668.0,22636.0,2.90464453125 +22668.0,22637.0,2.98746728515625 +22668.0,22638.0,2.78440478515625 +22668.0,22639.0,0.9498361206054688 +22668.0,22640.0,1.03658447265625 +22668.0,22641.0,0.98103271484375 +22668.0,22642.0,0.933264892578125 +22668.0,22643.0,0.895753662109375 +22668.0,22644.0,0.8749365234375 +22668.0,22645.0,0.8002431640625 +22668.0,22646.0,0.7722906494140624 +22668.0,22647.0,0.880203125 +22668.0,22648.0,0.7776323547363281 +22668.0,22649.0,1.91602392578125 +22668.0,22650.0,1.94124365234375 +22668.0,22651.0,2.305681640625 +22668.0,22652.0,1.14347509765625 +22668.0,22653.0,1.5812021484375 +22668.0,22654.0,1.7715400390625 +22668.0,22655.0,1.89101806640625 +22668.0,22656.0,2.3385440673828124 +22668.0,22657.0,2.18653564453125 +22668.0,22658.0,0.95322509765625 +22668.0,22659.0,0.68210302734375 +22668.0,22660.0,0.69946240234375 +22668.0,22661.0,0.6896513671875 +22668.0,22662.0,0.74875 +22668.0,22663.0,0.593505859375 +22668.0,22664.0,0.859763671875 +22668.0,22665.0,1.5036572265625 +22668.0,22666.0,0.66232421875 +22668.0,22667.0,0.7758564453125 +22668.0,22668.0,0.150146484375 +22668.0,22669.0,0.931781982421875 +22668.0,22670.0,0.71309033203125 +22668.0,22671.0,2.1475410156250003 +22668.0,22672.0,2.51001513671875 +22668.0,22673.0,2.052244140625 +22668.0,22674.0,1.93355419921875 +22668.0,22675.0,4.555014282226563 +22668.0,22676.0,4.666177047729493 +22668.0,22677.0,4.710617614746094 +22668.0,22678.0,4.3741787109375 +22668.0,22679.0,4.336179931640625 +22668.0,22680.0,4.1810009765625 +22668.0,22681.0,4.44892919921875 +22668.0,22682.0,3.905551513671875 +22668.0,22683.0,3.979762939453125 +22668.0,22684.0,4.28014208984375 +22668.0,22687.0,4.752466552734375 +22668.0,22689.0,4.336462646484375 +22668.0,22690.0,4.2481005859375 +22668.0,22691.0,4.30750927734375 +22668.0,22692.0,4.232222412109375 +22668.0,22693.0,4.52168798828125 +22668.0,22695.0,4.390909729003906 +22668.0,22696.0,4.377392333984375 +22668.0,22697.0,4.138324981689453 +22668.0,22698.0,4.093055664062501 +22668.0,22699.0,4.155982910156251 +22668.0,22700.0,4.57075634765625 +22668.0,22701.0,4.261030151367187 +22668.0,22702.0,4.44247509765625 +22668.0,22703.0,4.111216796875 +22668.0,22704.0,4.155403442382813 +22668.0,22705.0,4.266427734375 +22668.0,22706.0,4.3723583984375 +22668.0,22707.0,4.57951416015625 +22668.0,22708.0,4.47650830078125 +22668.0,22709.0,4.35471923828125 +22668.0,22710.0,4.445166259765625 +22668.0,22711.0,4.5172158203125 +22668.0,22713.0,3.85862939453125 +22668.0,22714.0,4.010608398437499 +22668.0,22715.0,3.8723740234375 +22668.0,22716.0,4.026056152343751 +22668.0,22717.0,3.9300732421875 +22668.0,22718.0,4.005693359375 +22668.0,22719.0,4.07193212890625 +22668.0,22720.0,3.654828125 +22668.0,22721.0,3.34543408203125 +22668.0,22722.0,3.2806357421875 +22668.0,22723.0,3.32671533203125 +22668.0,22724.0,3.76888330078125 +22668.0,22725.0,3.358800537109375 +22668.0,22726.0,3.37266259765625 +22668.0,22727.0,4.01363525390625 +22668.0,22728.0,3.4531279296875 +22668.0,22729.0,3.339880126953125 +22668.0,22730.0,3.27860107421875 +22668.0,22731.0,3.78152392578125 +22668.0,22732.0,4.2441943359375 +22668.0,22733.0,3.40470166015625 +22668.0,22735.0,3.30845263671875 +22668.0,22736.0,4.1272294921875 +22669.0,22635.0,2.820400146484375 +22669.0,22636.0,3.686280029296875 +22669.0,22637.0,3.769102783203125 +22669.0,22638.0,3.566040283203125 +22669.0,22639.0,1.7314716186523438 +22669.0,22640.0,1.818219970703125 +22669.0,22641.0,1.762668212890625 +22669.0,22642.0,1.714900390625 +22669.0,22643.0,1.67738916015625 +22669.0,22644.0,1.656572021484375 +22669.0,22645.0,1.581878662109375 +22669.0,22646.0,1.5539261474609376 +22669.0,22647.0,1.661838623046875 +22669.0,22648.0,1.5592678527832031 +22669.0,22649.0,1.849659423828125 +22669.0,22650.0,2.722879150390625 +22669.0,22651.0,3.087317138671875 +22669.0,22652.0,1.0771105957031248 +22669.0,22653.0,1.554837646484375 +22669.0,22654.0,2.553175537109375 +22669.0,22655.0,2.672653564453125 +22669.0,22656.0,2.2721795654296875 +22669.0,22657.0,2.968171142578125 +22669.0,22658.0,0.798860595703125 +22669.0,22659.0,0.741738525390625 +22669.0,22660.0,0.759097900390625 +22669.0,22661.0,0.761286865234375 +22669.0,22662.0,0.820385498046875 +22669.0,22663.0,1.126141357421875 +22669.0,22664.0,0.931399169921875 +22669.0,22665.0,1.477292724609375 +22669.0,22666.0,0.733959716796875 +22669.0,22667.0,0.481491943359375 +22669.0,22668.0,0.931781982421875 +22669.0,22669.0,0.11541748046875 +22669.0,22670.0,0.378725830078125 +22669.0,22671.0,1.993176513671875 +22669.0,22672.0,2.355650634765625 +22669.0,22673.0,1.897879638671875 +22669.0,22674.0,1.779189697265625 +22669.0,22675.0,4.7546497802734375 +22669.0,22676.0,4.865812545776367 +22669.0,22677.0,4.910253112792969 +22669.0,22678.0,4.573814208984375 +22669.0,22679.0,4.5358154296875 +22669.0,22680.0,4.380636474609375 +22669.0,22681.0,4.648564697265625 +22669.0,22682.0,4.10518701171875 +22669.0,22683.0,4.1793984375 +22669.0,22684.0,4.479777587890625 +22669.0,22689.0,4.53609814453125 +22669.0,22690.0,4.447736083984375 +22669.0,22691.0,4.507144775390625 +22669.0,22692.0,4.43185791015625 +22669.0,22693.0,4.721323486328125 +22669.0,22695.0,4.590545227050781 +22669.0,22696.0,4.57702783203125 +22669.0,22697.0,4.337960479736328 +22669.0,22698.0,4.292691162109375 +22669.0,22699.0,4.355618408203125 +22669.0,22700.0,4.770391845703125 +22669.0,22701.0,4.460665649414063 +22669.0,22702.0,4.642110595703125 +22669.0,22703.0,4.246852294921875 +22669.0,22704.0,4.355038940429687 +22669.0,22705.0,4.466063232421875 +22669.0,22706.0,4.571993896484375 +22669.0,22707.0,4.779149658203125 +22669.0,22708.0,4.676143798828125 +22669.0,22709.0,4.554354736328125 +22669.0,22710.0,4.6448017578125 +22669.0,22711.0,4.652851318359375 +22669.0,22713.0,3.994264892578125 +22669.0,22714.0,4.210243896484375 +22669.0,22715.0,4.072009521484375 +22669.0,22716.0,4.225691650390625 +22669.0,22717.0,4.129708740234375 +22669.0,22718.0,4.205328857421875 +22669.0,22719.0,4.271567626953125 +22669.0,22720.0,3.790463623046875 +22669.0,22721.0,3.481069580078125 +22669.0,22722.0,3.416271240234375 +22669.0,22723.0,3.462350830078125 +22669.0,22724.0,3.968518798828125 +22669.0,22725.0,3.55843603515625 +22669.0,22726.0,3.572298095703125 +22669.0,22727.0,4.149270751953125 +22669.0,22728.0,3.588763427734375 +22669.0,22729.0,3.475515625 +22669.0,22730.0,3.414236572265625 +22669.0,22731.0,3.917159423828125 +22669.0,22732.0,4.379829833984375 +22669.0,22733.0,3.171337158203125 +22669.0,22735.0,3.075088134765625 +22669.0,22736.0,3.893864990234375 +22670.0,22635.0,2.60170849609375 +22670.0,22636.0,3.46758837890625 +22670.0,22637.0,3.5504111328125 +22670.0,22638.0,3.3473486328125 +22670.0,22639.0,1.512779968261719 +22670.0,22640.0,1.5995283203125 +22670.0,22641.0,1.5439765625 +22670.0,22642.0,1.496208740234375 +22670.0,22643.0,1.458697509765625 +22670.0,22644.0,1.43788037109375 +22670.0,22645.0,1.36318701171875 +22670.0,22646.0,1.3352344970703125 +22670.0,22647.0,1.44314697265625 +22670.0,22648.0,1.340576202392578 +22670.0,22649.0,1.6309677734375 +22670.0,22650.0,2.5041875 +22670.0,22651.0,2.86862548828125 +22670.0,22652.0,0.8584189453125 +22670.0,22653.0,1.33614599609375 +22670.0,22654.0,2.33448388671875 +22670.0,22655.0,2.4539619140625 +22670.0,22656.0,2.053487915039063 +22670.0,22657.0,2.7494794921875 +22670.0,22658.0,0.5801689453125001 +22670.0,22659.0,0.523046875 +22670.0,22660.0,0.54040625 +22670.0,22661.0,0.5425952148437501 +22670.0,22662.0,0.60169384765625 +22670.0,22663.0,0.90744970703125 +22670.0,22664.0,0.71270751953125 +22670.0,22665.0,1.25860107421875 +22670.0,22666.0,0.51526806640625 +22670.0,22667.0,0.26280029296875 +22670.0,22668.0,0.71309033203125 +22670.0,22669.0,0.378725830078125 +22670.0,22670.0,0.1600341796875 +22670.0,22671.0,1.77448486328125 +22670.0,22672.0,2.136958984375 +22670.0,22673.0,1.67918798828125 +22670.0,22674.0,1.560498046875 +22670.0,22675.0,4.535958129882813 +22670.0,22676.0,4.647120895385743 +22670.0,22677.0,4.691561462402344 +22670.0,22678.0,4.35512255859375 +22670.0,22679.0,4.317123779296875 +22670.0,22680.0,4.16194482421875 +22670.0,22681.0,4.429873046875 +22670.0,22682.0,3.886495361328125 +22670.0,22683.0,3.960706787109375 +22670.0,22684.0,4.2610859375 +22670.0,22689.0,4.317406494140625 +22670.0,22690.0,4.22904443359375 +22670.0,22691.0,4.288453125 +22670.0,22692.0,4.213166259765625 +22670.0,22693.0,4.5026318359375 +22670.0,22695.0,4.371853576660156 +22670.0,22696.0,4.358336181640625 +22670.0,22697.0,4.119268829345703 +22670.0,22698.0,4.07399951171875 +22670.0,22699.0,4.1369267578125 +22670.0,22700.0,4.5517001953125 +22670.0,22701.0,4.241973999023437 +22670.0,22702.0,4.4234189453125 +22670.0,22703.0,4.0281606445312494 +22670.0,22704.0,4.136347290039063 +22670.0,22705.0,4.24737158203125 +22670.0,22706.0,4.35330224609375 +22670.0,22707.0,4.5604580078125 +22670.0,22708.0,4.4574521484375 +22670.0,22709.0,4.3356630859375 +22670.0,22710.0,4.426110107421875 +22670.0,22711.0,4.43415966796875 +22670.0,22712.0,4.91759228515625 +22670.0,22713.0,3.7755732421875 +22670.0,22714.0,3.99155224609375 +22670.0,22715.0,3.85331787109375 +22670.0,22716.0,4.007 +22670.0,22717.0,3.91101708984375 +22670.0,22718.0,3.98663720703125 +22670.0,22719.0,4.0528759765625 +22670.0,22720.0,3.57177197265625 +22670.0,22721.0,3.2623779296875 +22670.0,22722.0,3.19757958984375 +22670.0,22723.0,3.2436591796875 +22670.0,22724.0,3.7498271484375 +22670.0,22725.0,3.339744384765625 +22670.0,22726.0,3.3536064453125 +22670.0,22727.0,3.9305791015625 +22670.0,22728.0,3.37007177734375 +22670.0,22729.0,3.256823974609375 +22670.0,22730.0,3.195544921875 +22670.0,22731.0,3.6984677734375 +22670.0,22732.0,4.16113818359375 +22670.0,22733.0,2.9526455078125 +22670.0,22735.0,2.856396484375 +22670.0,22736.0,3.67517333984375 +22671.0,22635.0,4.0361591796875 +22671.0,22636.0,4.9020390625 +22671.0,22637.0,4.98486181640625 +22671.0,22638.0,4.78179931640625 +22671.0,22639.0,2.947230651855469 +22671.0,22640.0,3.03397900390625 +22671.0,22641.0,2.97842724609375 +22671.0,22642.0,2.930659423828125 +22671.0,22643.0,2.893148193359375 +22671.0,22644.0,2.8723310546875 +22671.0,22645.0,2.7976376953125 +22671.0,22646.0,2.7696851806640623 +22671.0,22647.0,2.87759765625 +22671.0,22648.0,2.7750268859863283 +22671.0,22649.0,1.96541845703125 +22671.0,22650.0,3.93863818359375 +22671.0,22651.0,4.303076171875 +22671.0,22652.0,1.54686962890625 +22671.0,22653.0,2.2085966796875 +22671.0,22654.0,3.7689345703125 +22671.0,22655.0,3.88841259765625 +22671.0,22656.0,2.1569385986328125 +22671.0,22657.0,4.18393017578125 +22671.0,22658.0,1.73261962890625 +22671.0,22659.0,1.96949755859375 +22671.0,22660.0,1.98685693359375 +22671.0,22661.0,1.9770458984375 +22671.0,22662.0,2.03614453125 +22671.0,22663.0,2.252900390625 +22671.0,22664.0,1.947158203125 +22671.0,22665.0,2.1310517578125 +22671.0,22666.0,1.94971875 +22671.0,22667.0,1.8372509765625 +22671.0,22668.0,2.1475410156250003 +22671.0,22669.0,1.993176513671875 +22671.0,22670.0,1.77448486328125 +22671.0,22671.0,0.408935546875 +22671.0,22672.0,1.73540966796875 +22671.0,22673.0,0.631638671875 +22671.0,22674.0,0.66694873046875 +22671.0,22721.0,4.82882861328125 +22671.0,22722.0,4.7640302734375 +22671.0,22723.0,4.81010986328125 +22671.0,22725.0,4.842195068359375 +22671.0,22726.0,4.85605712890625 +22671.0,22728.0,4.9365224609375 +22671.0,22729.0,4.823274658203125 +22671.0,22730.0,4.76199560546875 +22671.0,22733.0,4.2190961914062495 +22671.0,22735.0,4.12284716796875 +22671.0,22736.0,4.9416240234375 +22672.0,22635.0,3.27963330078125 +22672.0,22636.0,3.63651318359375 +22672.0,22637.0,3.7193359375 +22672.0,22638.0,3.5162734375 +22672.0,22639.0,3.309704772949219 +22672.0,22640.0,3.396453125 +22672.0,22641.0,3.3409013671875 +22672.0,22642.0,3.293133544921875 +22672.0,22643.0,3.255622314453125 +22672.0,22644.0,3.23480517578125 +22672.0,22645.0,3.16011181640625 +22672.0,22646.0,3.1321593017578127 +22672.0,22647.0,3.24007177734375 +22672.0,22648.0,3.137501007080078 +22672.0,22649.0,0.875892578125 +22672.0,22650.0,3.2421123046875 +22672.0,22651.0,3.12055029296875 +22672.0,22652.0,1.54134375 +22672.0,22653.0,2.20307080078125 +22672.0,22654.0,3.71640869140625 +22672.0,22655.0,3.44388671875 +22672.0,22656.0,0.7434127197265625 +22672.0,22657.0,3.001404296875 +22672.0,22658.0,1.75709375 +22672.0,22659.0,2.3319716796875 +22672.0,22660.0,2.3493310546875 +22672.0,22661.0,2.13152001953125 +22672.0,22662.0,2.0746186523437498 +22672.0,22663.0,2.24737451171875 +22672.0,22664.0,1.94163232421875 +22672.0,22665.0,2.12552587890625 +22672.0,22666.0,1.98819287109375 +22672.0,22667.0,2.19972509765625 +22672.0,22668.0,2.51001513671875 +22672.0,22669.0,2.355650634765625 +22672.0,22670.0,2.136958984375 +22672.0,22671.0,1.73540966796875 +22672.0,22672.0,0.1558837890625 +22672.0,22673.0,1.45111279296875 +22672.0,22674.0,1.1794228515625 +22672.0,22733.0,4.8155703125 +22672.0,22735.0,4.7193212890625 +22673.0,22635.0,3.9408623046875 +22673.0,22636.0,4.7657421875 +22673.0,22637.0,4.84856494140625 +22673.0,22638.0,4.64550244140625 +22673.0,22639.0,2.8519337768554687 +22673.0,22640.0,2.93868212890625 +22673.0,22641.0,2.88313037109375 +22673.0,22642.0,2.835362548828125 +22673.0,22643.0,2.797851318359375 +22673.0,22644.0,2.7770341796875 +22673.0,22645.0,2.7023408203125 +22673.0,22646.0,2.6743883056640625 +22673.0,22647.0,2.78230078125 +22673.0,22648.0,2.679730010986328 +22673.0,22649.0,1.68112158203125 +22673.0,22650.0,3.84334130859375 +22673.0,22651.0,4.207779296875 +22673.0,22652.0,1.26257275390625 +22673.0,22653.0,1.9242998046875 +22673.0,22654.0,3.6736376953125 +22673.0,22655.0,3.79311572265625 +22673.0,22656.0,1.8726417236328128 +22673.0,22657.0,4.08863330078125 +22673.0,22658.0,1.47832275390625 +22673.0,22659.0,1.87420068359375 +22673.0,22660.0,1.89156005859375 +22673.0,22661.0,1.8527490234375 +22673.0,22662.0,1.79584765625 +22673.0,22663.0,1.968603515625 +22673.0,22664.0,1.662861328125 +22673.0,22665.0,1.8467548828125 +22673.0,22666.0,1.709421875 +22673.0,22667.0,1.7419541015625 +22673.0,22668.0,2.052244140625 +22673.0,22669.0,1.897879638671875 +22673.0,22670.0,1.67918798828125 +22673.0,22671.0,0.631638671875 +22673.0,22672.0,1.45111279296875 +22673.0,22673.0,0.100341796875 +22673.0,22674.0,0.38265185546875 +22673.0,22721.0,4.73353173828125 +22673.0,22722.0,4.6687333984375 +22673.0,22723.0,4.71481298828125 +22673.0,22725.0,4.746898193359375 +22673.0,22726.0,4.76076025390625 +22673.0,22728.0,4.8412255859375 +22673.0,22729.0,4.727977783203125 +22673.0,22730.0,4.66669873046875 +22673.0,22733.0,4.1237993164062505 +22673.0,22735.0,4.027550292968749 +22673.0,22736.0,4.8463271484375 +22674.0,22635.0,3.82217236328125 +22674.0,22636.0,4.49405224609375 +22674.0,22637.0,4.576875 +22674.0,22638.0,4.3738125 +22674.0,22639.0,2.7332438354492186 +22674.0,22640.0,2.8199921875 +22674.0,22641.0,2.7644404296875 +22674.0,22642.0,2.716672607421875 +22674.0,22643.0,2.679161376953125 +22674.0,22644.0,2.65834423828125 +22674.0,22645.0,2.58365087890625 +22674.0,22646.0,2.5556983642578124 +22674.0,22647.0,2.66361083984375 +22674.0,22648.0,2.561040069580078 +22674.0,22649.0,1.415431640625 +22674.0,22650.0,3.7246513671875 +22674.0,22651.0,3.97808935546875 +22674.0,22652.0,0.9908828125 +22674.0,22653.0,1.65260986328125 +22674.0,22654.0,3.55494775390625 +22674.0,22655.0,3.67442578125 +22674.0,22656.0,1.6009517822265624 +22674.0,22657.0,3.858943359375 +22674.0,22658.0,1.2066328125 +22674.0,22659.0,1.7555107421875 +22674.0,22660.0,1.7728701171875 +22674.0,22661.0,1.58105908203125 +22674.0,22662.0,1.52415771484375 +22674.0,22663.0,1.69691357421875 +22674.0,22664.0,1.39117138671875 +22674.0,22665.0,1.57506494140625 +22674.0,22666.0,1.43773193359375 +22674.0,22667.0,1.62326416015625 +22674.0,22668.0,1.93355419921875 +22674.0,22669.0,1.779189697265625 +22674.0,22670.0,1.560498046875 +22674.0,22671.0,0.66694873046875 +22674.0,22672.0,1.1794228515625 +22674.0,22673.0,0.38265185546875 +22674.0,22674.0,0.1109619140625 +22674.0,22720.0,4.92423583984375 +22674.0,22721.0,4.614841796875 +22674.0,22722.0,4.55004345703125 +22674.0,22723.0,4.596123046875 +22674.0,22725.0,4.628208251953125 +22674.0,22726.0,4.6420703125 +22674.0,22728.0,4.72253564453125 +22674.0,22729.0,4.609287841796875 +22674.0,22730.0,4.5480087890625 +22674.0,22733.0,4.060109375 +22674.0,22735.0,3.9638603515625 +22674.0,22736.0,4.78263720703125 +22675.0,22639.0,4.388703918457031 +22675.0,22640.0,4.475452270507812 +22675.0,22641.0,3.9399005126953126 +22675.0,22642.0,4.065132690429688 +22675.0,22643.0,3.9326214599609375 +22675.0,22644.0,4.262804321289062 +22675.0,22645.0,4.101110961914062 +22675.0,22646.0,4.160158447265625 +22675.0,22647.0,4.319070922851562 +22675.0,22648.0,4.216500152587891 +22675.0,22658.0,4.844092895507813 +22675.0,22659.0,4.3329708251953125 +22675.0,22660.0,4.448330200195312 +22675.0,22661.0,4.580519165039062 +22675.0,22662.0,4.639617797851563 +22675.0,22663.0,4.8003736572265625 +22675.0,22664.0,4.750631469726563 +22675.0,22666.0,4.553192016601563 +22675.0,22667.0,4.478724243164063 +22675.0,22668.0,4.555014282226563 +22675.0,22669.0,4.7546497802734375 +22675.0,22670.0,4.535958129882813 +22675.0,22675.0,0.047882080078125 +22675.0,22676.0,0.2040448455810546 +22675.0,22677.0,0.2034854125976562 +22675.0,22678.0,0.2970465087890624 +22675.0,22679.0,0.5990477294921875 +22675.0,22680.0,0.6608687744140626 +22675.0,22681.0,0.2677969970703124 +22675.0,22682.0,0.8594193115234375 +22675.0,22683.0,0.7936307373046875 +22675.0,22684.0,0.6630098876953125 +22675.0,22685.0,1.3875513916015625 +22675.0,22686.0,1.6701973876953125 +22675.0,22687.0,1.7623343505859377 +22675.0,22688.0,1.4154171142578125 +22675.0,22689.0,0.4643304443359375 +22675.0,22690.0,0.9349683837890626 +22675.0,22691.0,0.9893770751953124 +22675.0,22692.0,0.9140902099609376 +22675.0,22693.0,0.7735557861328125 +22675.0,22694.0,1.0976148681640625 +22675.0,22695.0,1.4707775268554688 +22675.0,22696.0,1.4572601318359375 +22675.0,22697.0,1.3321927795410156 +22675.0,22698.0,1.1729234619140625 +22675.0,22699.0,1.2358507080078125 +22675.0,22700.0,1.1216241455078124 +22675.0,22701.0,1.34089794921875 +22675.0,22702.0,1.5223428955078124 +22675.0,22703.0,1.4480845947265626 +22675.0,22704.0,0.842271240234375 +22675.0,22705.0,0.8292955322265625 +22675.0,22706.0,0.6862261962890625 +22675.0,22707.0,0.7063819580078124 +22675.0,22708.0,0.6823760986328125 +22675.0,22709.0,0.6685870361328125 +22675.0,22710.0,0.4350340576171875 +22675.0,22711.0,2.2360836181640624 +22675.0,22712.0,1.8315162353515624 +22675.0,22713.0,1.8354971923828125 +22675.0,22714.0,1.1564761962890624 +22675.0,22715.0,1.2682418212890625 +22675.0,22716.0,1.0339239501953124 +22675.0,22717.0,1.1939410400390624 +22675.0,22718.0,1.1395611572265625 +22675.0,22719.0,1.0377999267578124 +22675.0,22720.0,2.1876959228515624 +22675.0,22721.0,1.9513018798828128 +22675.0,22722.0,1.9255035400390623 +22675.0,22723.0,1.9695831298828128 +22675.0,22724.0,1.6427510986328124 +22675.0,22725.0,1.6986683349609375 +22675.0,22726.0,1.7595303955078123 +22675.0,22727.0,1.5785030517578125 +22675.0,22728.0,2.2099957275390625 +22675.0,22729.0,1.8457479248046875 +22675.0,22730.0,2.0474688720703123 +22675.0,22731.0,1.8823917236328125 +22675.0,22732.0,1.9630621337890624 +22675.0,22733.0,3.757569458007812 +22675.0,22735.0,3.661320434570313 +22675.0,22736.0,4.480097290039063 +22676.0,22639.0,4.499866683959961 +22676.0,22640.0,4.586615036010742 +22676.0,22641.0,4.051063278198242 +22676.0,22642.0,4.1762954559326175 +22676.0,22643.0,4.043784225463867 +22676.0,22644.0,4.373967086791992 +22676.0,22645.0,4.212273727416992 +22676.0,22646.0,4.271321212768554 +22676.0,22647.0,4.430233688354492 +22676.0,22648.0,4.32766291809082 +22676.0,22658.0,4.955255661010742 +22676.0,22659.0,4.444133590698242 +22676.0,22660.0,4.559492965698242 +22676.0,22661.0,4.691681930541992 +22676.0,22662.0,4.750780563354493 +22676.0,22663.0,4.911536422729492 +22676.0,22664.0,4.8617942352294925 +22676.0,22666.0,4.664354782104493 +22676.0,22667.0,4.5898870086669925 +22676.0,22668.0,4.666177047729493 +22676.0,22669.0,4.865812545776367 +22676.0,22670.0,4.647120895385743 +22676.0,22675.0,0.2040448455810546 +22676.0,22676.0,0.0042076110839843 +22676.0,22677.0,0.1346481781005859 +22676.0,22678.0,0.4532092742919922 +22676.0,22679.0,0.6312104949951172 +22676.0,22680.0,0.6370315399169922 +22676.0,22681.0,0.4239597625732422 +22676.0,22682.0,1.0155820770263673 +22676.0,22683.0,0.9497935028076172 +22676.0,22684.0,0.7731726531982421 +22676.0,22685.0,1.3187141571044922 +22676.0,22686.0,1.6013601531982422 +22676.0,22687.0,1.6934971160888672 +22676.0,22688.0,1.3465798797607422 +22676.0,22689.0,0.4404932098388672 +22676.0,22690.0,1.0911311492919922 +22676.0,22691.0,1.120539840698242 +22676.0,22692.0,1.045252975463867 +22676.0,22693.0,0.8767185516357422 +22676.0,22694.0,1.028777633666992 +22676.0,22695.0,1.6019402923583983 +22676.0,22696.0,1.5884228973388672 +22676.0,22697.0,1.4633555450439453 +22676.0,22698.0,1.3040862274169922 +22676.0,22699.0,1.3670134735107422 +22676.0,22700.0,1.224786911010742 +22676.0,22701.0,1.4720607147216798 +22676.0,22702.0,1.653505661010742 +22676.0,22703.0,1.6042473602294922 +22676.0,22704.0,0.9984340057373048 +22676.0,22705.0,0.9854582977294922 +22676.0,22706.0,0.8423889617919922 +22676.0,22707.0,0.8095447235107421 +22676.0,22708.0,0.8175388641357422 +22676.0,22709.0,0.8247498016357422 +22676.0,22710.0,0.5381968231201172 +22676.0,22711.0,2.392246383666992 +22676.0,22712.0,1.9346790008544923 +22676.0,22713.0,1.991659957885742 +22676.0,22714.0,1.3126389617919922 +22676.0,22715.0,1.424404586791992 +22676.0,22716.0,1.1900867156982422 +22676.0,22717.0,1.3501038055419925 +22676.0,22718.0,1.295723922729492 +22676.0,22719.0,1.1939626922607425 +22676.0,22720.0,2.343858688354492 +22676.0,22721.0,2.1074646453857424 +22676.0,22722.0,2.081666305541992 +22676.0,22723.0,2.125745895385742 +22676.0,22724.0,1.7989138641357425 +22676.0,22725.0,1.8548311004638671 +22676.0,22726.0,1.9156931610107424 +22676.0,22727.0,1.734665817260742 +22676.0,22728.0,2.366158493041992 +22676.0,22729.0,2.001910690307617 +22676.0,22730.0,2.2036316375732423 +22676.0,22731.0,2.038554489135742 +22676.0,22732.0,2.119224899291992 +22676.0,22733.0,3.868732223510742 +22676.0,22735.0,3.772483200073242 +22676.0,22736.0,4.5912600555419925 +22676.0,22816.0,4.988497604370117 +22676.0,22817.0,4.99493424987793 +22677.0,22639.0,4.544307250976562 +22677.0,22640.0,4.631055603027344 +22677.0,22641.0,4.095503845214844 +22677.0,22642.0,4.220736022949219 +22677.0,22643.0,4.088224792480469 +22677.0,22644.0,4.418407653808594 +22677.0,22645.0,4.256714294433594 +22677.0,22646.0,4.315761779785157 +22677.0,22647.0,4.474674255371093 +22677.0,22648.0,4.372103485107422 +22677.0,22659.0,4.488574157714844 +22677.0,22660.0,4.603933532714843 +22677.0,22661.0,4.736122497558593 +22677.0,22662.0,4.795221130371094 +22677.0,22663.0,4.955976989746094 +22677.0,22664.0,4.906234802246094 +22677.0,22666.0,4.708795349121094 +22677.0,22667.0,4.634327575683594 +22677.0,22668.0,4.710617614746094 +22677.0,22669.0,4.910253112792969 +22677.0,22670.0,4.691561462402344 +22677.0,22675.0,0.2034854125976562 +22677.0,22676.0,0.1346481781005859 +22677.0,22677.0,0.0190887451171875 +22677.0,22678.0,0.4526498413085937 +22677.0,22679.0,0.7546510620117187 +22677.0,22680.0,0.7664721069335938 +22677.0,22681.0,0.4194003295898437 +22677.0,22682.0,1.0150226440429688 +22677.0,22683.0,0.9492340698242188 +22677.0,22684.0,0.8186132202148437 +22677.0,22685.0,1.2031547241210938 +22677.0,22686.0,1.4858007202148438 +22677.0,22687.0,1.5779376831054688 +22677.0,22688.0,1.2310204467773438 +22677.0,22689.0,0.5699337768554688 +22677.0,22690.0,1.0875717163085938 +22677.0,22691.0,1.1149804077148435 +22677.0,22692.0,1.0396935424804687 +22677.0,22693.0,0.8711591186523437 +22677.0,22694.0,0.9132182006835936 +22677.0,22695.0,1.596380859375 +22677.0,22696.0,1.5828634643554689 +22677.0,22697.0,1.457796112060547 +22677.0,22698.0,1.2985267944335936 +22677.0,22699.0,1.3614540405273436 +22677.0,22700.0,1.2192274780273438 +22677.0,22701.0,1.4665012817382812 +22677.0,22702.0,1.6479462280273438 +22677.0,22703.0,1.6006879272460937 +22677.0,22704.0,0.9948745727539062 +22677.0,22705.0,0.9818988647460938 +22677.0,22706.0,0.8388295288085937 +22677.0,22707.0,0.8039852905273438 +22677.0,22708.0,0.8119794311523437 +22677.0,22709.0,0.8211903686523437 +22677.0,22710.0,0.5326373901367187 +22677.0,22711.0,2.388686950683594 +22677.0,22712.0,1.9031195678710937 +22677.0,22713.0,1.988100524902344 +22677.0,22714.0,1.3090795288085937 +22677.0,22715.0,1.4208451538085938 +22677.0,22716.0,1.1865272827148436 +22677.0,22717.0,1.3465443725585935 +22677.0,22718.0,1.2921644897460938 +22677.0,22719.0,1.1904032592773437 +22677.0,22720.0,2.3432992553710936 +22677.0,22721.0,2.106905212402344 +22677.0,22722.0,2.081106872558593 +22677.0,22723.0,2.125186462402344 +22677.0,22724.0,1.7953544311523435 +22677.0,22725.0,1.854271667480469 +22677.0,22726.0,1.915133728027344 +22677.0,22727.0,1.7311063842773438 +22677.0,22728.0,2.3655990600585937 +22677.0,22729.0,2.0013512573242185 +22677.0,22730.0,2.203072204589844 +22677.0,22731.0,2.034995056152344 +22677.0,22732.0,2.115665466308594 +22677.0,22733.0,3.913172790527344 +22677.0,22735.0,3.816923767089844 +22677.0,22736.0,4.635700622558594 +22677.0,22815.0,4.925344665527343 +22677.0,22816.0,4.872938171386719 +22677.0,22817.0,4.879374816894531 +22678.0,22639.0,4.2078683471679685 +22678.0,22640.0,4.29461669921875 +22678.0,22641.0,3.75906494140625 +22678.0,22642.0,3.884297119140625 +22678.0,22643.0,3.751785888671875 +22678.0,22644.0,4.08196875 +22678.0,22645.0,3.920275390625 +22678.0,22646.0,3.979322875976562 +22678.0,22647.0,4.1382353515625 +22678.0,22648.0,4.035664581298828 +22678.0,22652.0,4.85350732421875 +22678.0,22658.0,4.66325732421875 +22678.0,22659.0,4.15213525390625 +22678.0,22660.0,4.26749462890625 +22678.0,22661.0,4.39968359375 +22678.0,22662.0,4.4587822265625 +22678.0,22663.0,4.6195380859375 +22678.0,22664.0,4.5697958984375 +22678.0,22666.0,4.3723564453125 +22678.0,22667.0,4.297888671875 +22678.0,22668.0,4.3741787109375 +22678.0,22669.0,4.573814208984375 +22678.0,22670.0,4.35512255859375 +22678.0,22675.0,0.2970465087890624 +22678.0,22676.0,0.4532092742919922 +22678.0,22677.0,0.4526498413085937 +22678.0,22678.0,0.1162109375 +22678.0,22679.0,0.418212158203125 +22678.0,22680.0,0.480033203125 +22678.0,22681.0,0.40496142578125 +22678.0,22682.0,0.678583740234375 +22678.0,22683.0,0.612795166015625 +22678.0,22684.0,0.48217431640625 +22678.0,22685.0,1.3017158203125 +22678.0,22686.0,1.58436181640625 +22678.0,22687.0,1.589498779296875 +22678.0,22688.0,1.32958154296875 +22678.0,22689.0,0.283494873046875 +22678.0,22690.0,0.8531328125 +22678.0,22691.0,0.90754150390625 +22678.0,22692.0,0.832254638671875 +22678.0,22693.0,0.90772021484375 +22678.0,22694.0,1.346779296875 +22678.0,22695.0,1.3889419555664062 +22678.0,22696.0,1.375424560546875 +22678.0,22697.0,1.195357208251953 +22678.0,22698.0,1.091087890625 +22678.0,22699.0,1.15401513671875 +22678.0,22700.0,1.25578857421875 +22678.0,22701.0,1.2590623779296874 +22678.0,22702.0,1.44050732421875 +22678.0,22703.0,1.2722490234375 +22678.0,22704.0,0.7604356689453124 +22678.0,22705.0,0.7474599609375 +22678.0,22706.0,0.604390625 +22678.0,22707.0,0.71554638671875 +22678.0,22708.0,0.6005405273437501 +22678.0,22709.0,0.58675146484375 +22678.0,22710.0,0.465198486328125 +22678.0,22711.0,2.060248046875 +22678.0,22712.0,1.9656806640625 +22678.0,22713.0,1.65966162109375 +22678.0,22714.0,0.980640625 +22678.0,22715.0,1.09240625 +22678.0,22716.0,0.85808837890625 +22678.0,22717.0,1.01810546875 +22678.0,22718.0,0.9637255859375 +22678.0,22719.0,0.86196435546875 +22678.0,22720.0,2.0068603515625 +22678.0,22721.0,1.77046630859375 +22678.0,22722.0,1.74466796875 +22678.0,22723.0,1.78874755859375 +22678.0,22724.0,1.46691552734375 +22678.0,22725.0,1.517832763671875 +22678.0,22726.0,1.57869482421875 +22678.0,22727.0,1.40266748046875 +22678.0,22728.0,2.02916015625 +22678.0,22729.0,1.664912353515625 +22678.0,22730.0,1.86663330078125 +22678.0,22731.0,1.70655615234375 +22678.0,22732.0,1.7872265625 +22678.0,22733.0,3.57673388671875 +22678.0,22735.0,3.48048486328125 +22678.0,22736.0,4.29926171875 +22679.0,22639.0,4.1698695678710935 +22679.0,22640.0,4.256617919921875 +22679.0,22641.0,3.721066162109375 +22679.0,22642.0,3.84629833984375 +22679.0,22643.0,3.713787109375 +22679.0,22644.0,4.043969970703126 +22679.0,22645.0,3.882276611328125 +22679.0,22646.0,3.941324096679688 +22679.0,22647.0,4.100236572265625 +22679.0,22648.0,3.997665802001953 +22679.0,22652.0,4.815508544921875 +22679.0,22654.0,4.991573486328125 +22679.0,22658.0,4.625258544921875 +22679.0,22659.0,4.114136474609375 +22679.0,22660.0,4.229495849609375 +22679.0,22661.0,4.361684814453125 +22679.0,22662.0,4.420783447265625 +22679.0,22663.0,4.581539306640625 +22679.0,22664.0,4.531797119140625 +22679.0,22666.0,4.334357666015625 +22679.0,22667.0,4.259889892578125 +22679.0,22668.0,4.336179931640625 +22679.0,22669.0,4.5358154296875 +22679.0,22670.0,4.317123779296875 +22679.0,22675.0,0.5990477294921875 +22679.0,22676.0,0.6312104949951172 +22679.0,22677.0,0.7546510620117187 +22679.0,22678.0,0.418212158203125 +22679.0,22679.0,0.05621337890625 +22679.0,22680.0,0.344034423828125 +22679.0,22681.0,0.492962646484375 +22679.0,22682.0,0.6405849609375 +22679.0,22683.0,0.57479638671875 +22679.0,22684.0,0.222175537109375 +22679.0,22685.0,1.319717041015625 +22679.0,22686.0,1.602363037109375 +22679.0,22687.0,1.4535 +22679.0,22688.0,1.347582763671875 +22679.0,22689.0,0.3014960937499999 +22679.0,22690.0,0.837134033203125 +22679.0,22691.0,0.931542724609375 +22679.0,22692.0,0.856255859375 +22679.0,22693.0,0.931721435546875 +22679.0,22694.0,1.436780517578125 +22679.0,22695.0,1.359943176269531 +22679.0,22696.0,1.34642578125 +22679.0,22697.0,1.1573584289550782 +22679.0,22698.0,1.062089111328125 +22679.0,22699.0,1.125016357421875 +22679.0,22700.0,1.279789794921875 +22679.0,22701.0,1.2300635986328126 +22679.0,22702.0,1.411508544921875 +22679.0,22703.0,1.234250244140625 +22679.0,22704.0,0.7444368896484375 +22679.0,22705.0,0.731461181640625 +22679.0,22706.0,0.628391845703125 +22679.0,22707.0,0.739547607421875 +22679.0,22708.0,0.624541748046875 +22679.0,22709.0,0.610752685546875 +22679.0,22710.0,0.48919970703125 +22679.0,22711.0,2.022249267578125 +22679.0,22712.0,1.989681884765625 +22679.0,22713.0,1.621662841796875 +22679.0,22714.0,0.942641845703125 +22679.0,22715.0,1.054407470703125 +22679.0,22716.0,0.820089599609375 +22679.0,22717.0,0.980106689453125 +22679.0,22718.0,0.925726806640625 +22679.0,22719.0,0.823965576171875 +22679.0,22720.0,1.968861572265625 +22679.0,22721.0,1.732467529296875 +22679.0,22722.0,1.706669189453125 +22679.0,22723.0,1.750748779296875 +22679.0,22724.0,1.428916748046875 +22679.0,22725.0,1.479833984375 +22679.0,22726.0,1.540696044921875 +22679.0,22727.0,1.364668701171875 +22679.0,22728.0,1.991161376953125 +22679.0,22729.0,1.62691357421875 +22679.0,22730.0,1.828634521484375 +22679.0,22731.0,1.668557373046875 +22679.0,22732.0,1.749227783203125 +22679.0,22733.0,3.538735107421875 +22679.0,22735.0,3.442486083984375 +22679.0,22736.0,4.261262939453125 +22680.0,22639.0,4.014690612792968 +22680.0,22640.0,4.10143896484375 +22680.0,22641.0,3.56588720703125 +22680.0,22642.0,3.691119384765625 +22680.0,22643.0,3.558608154296875 +22680.0,22644.0,3.888791015625 +22680.0,22645.0,3.72709765625 +22680.0,22646.0,3.7861451416015615 +22680.0,22647.0,3.9450576171875 +22680.0,22648.0,3.842486846923828 +22680.0,22652.0,4.66032958984375 +22680.0,22654.0,4.83639453125 +22680.0,22655.0,4.95587255859375 +22680.0,22658.0,4.47007958984375 +22680.0,22659.0,3.95895751953125 +22680.0,22660.0,4.0743168945312505 +22680.0,22661.0,4.206505859375 +22680.0,22662.0,4.2656044921875 +22680.0,22663.0,4.4263603515625 +22680.0,22664.0,4.3766181640625 +22680.0,22666.0,4.1791787109375 +22680.0,22667.0,4.1047109375 +22680.0,22668.0,4.1810009765625 +22680.0,22669.0,4.380636474609375 +22680.0,22670.0,4.16194482421875 +22680.0,22675.0,0.6608687744140626 +22680.0,22676.0,0.6370315399169922 +22680.0,22677.0,0.7664721069335938 +22680.0,22678.0,0.480033203125 +22680.0,22679.0,0.344034423828125 +22680.0,22680.0,0.15185546875 +22680.0,22681.0,0.67878369140625 +22680.0,22682.0,0.5404060058593749 +22680.0,22683.0,0.475617431640625 +22680.0,22684.0,0.28799658203125 +22680.0,22685.0,1.3255380859375 +22680.0,22686.0,1.60818408203125 +22680.0,22687.0,1.261321044921875 +22680.0,22688.0,1.35340380859375 +22680.0,22689.0,0.307317138671875 +22680.0,22690.0,0.902955078125 +22680.0,22691.0,1.11736376953125 +22680.0,22692.0,1.042076904296875 +22680.0,22693.0,1.11754248046875 +22680.0,22694.0,1.6226015625 +22680.0,22695.0,1.4257642211914063 +22680.0,22696.0,1.412246826171875 +22680.0,22697.0,1.223179473876953 +22680.0,22698.0,1.12791015625 +22680.0,22699.0,1.19083740234375 +22680.0,22700.0,1.46561083984375 +22680.0,22701.0,1.2958846435546876 +22680.0,22702.0,1.47732958984375 +22680.0,22703.0,1.3000712890625 +22680.0,22704.0,0.8102579345703125 +22680.0,22705.0,0.7972822265625 +22680.0,22706.0,0.754212890625 +22680.0,22707.0,0.92536865234375 +22680.0,22708.0,0.81036279296875 +22680.0,22709.0,0.73657373046875 +22680.0,22710.0,0.675020751953125 +22680.0,22711.0,2.0880703125 +22680.0,22712.0,2.1755029296875 +22680.0,22713.0,1.68748388671875 +22680.0,22714.0,1.0084628906250002 +22680.0,22715.0,1.120228515625 +22680.0,22716.0,0.88591064453125 +22680.0,22717.0,1.045927734375 +22680.0,22718.0,0.9915478515625 +22680.0,22719.0,0.88978662109375 +22680.0,22720.0,1.9496826171875 +22680.0,22721.0,1.71328857421875 +22680.0,22722.0,1.673490234375 +22680.0,22723.0,1.71756982421875 +22680.0,22724.0,1.49473779296875 +22680.0,22725.0,1.460655029296875 +22680.0,22726.0,1.50751708984375 +22680.0,22727.0,1.43048974609375 +22680.0,22728.0,1.969982421875 +22680.0,22729.0,1.607734619140625 +22680.0,22730.0,1.79545556640625 +22680.0,22731.0,1.73437841796875 +22680.0,22732.0,1.815048828125 +22680.0,22733.0,3.38355615234375 +22680.0,22735.0,3.28730712890625 +22680.0,22736.0,4.106083984375 +22681.0,22639.0,4.2826188354492185 +22681.0,22640.0,4.3693671875 +22681.0,22641.0,3.8338154296875 +22681.0,22642.0,3.959047607421875 +22681.0,22643.0,3.826536376953125 +22681.0,22644.0,4.15671923828125 +22681.0,22645.0,3.99502587890625 +22681.0,22646.0,4.054073364257812 +22681.0,22647.0,4.21298583984375 +22681.0,22648.0,4.110415069580078 +22681.0,22652.0,4.9282578125 +22681.0,22658.0,4.7380078125 +22681.0,22659.0,4.2268857421875 +22681.0,22660.0,4.3422451171875 +22681.0,22661.0,4.47443408203125 +22681.0,22662.0,4.53353271484375 +22681.0,22663.0,4.69428857421875 +22681.0,22664.0,4.64454638671875 +22681.0,22666.0,4.44710693359375 +22681.0,22667.0,4.37263916015625 +22681.0,22668.0,4.44892919921875 +22681.0,22669.0,4.648564697265625 +22681.0,22670.0,4.429873046875 +22681.0,22675.0,0.2677969970703124 +22681.0,22676.0,0.4239597625732422 +22681.0,22677.0,0.4194003295898437 +22681.0,22678.0,0.40496142578125 +22681.0,22679.0,0.492962646484375 +22681.0,22680.0,0.67878369140625 +22681.0,22681.0,0.0797119140625 +22681.0,22682.0,0.753334228515625 +22681.0,22683.0,0.687545654296875 +22681.0,22684.0,0.5569248046874999 +22681.0,22685.0,1.31346630859375 +22681.0,22686.0,1.5961123046875 +22681.0,22687.0,1.688249267578125 +22681.0,22688.0,1.34133203125 +22681.0,22689.0,0.572245361328125 +22681.0,22690.0,0.74988330078125 +22681.0,22691.0,0.8042919921875 +22681.0,22692.0,0.729005126953125 +22681.0,22693.0,0.5854707031249999 +22681.0,22694.0,1.02352978515625 +22681.0,22695.0,1.2856924438476562 +22681.0,22696.0,1.272175048828125 +22681.0,22697.0,1.1471076965332032 +22681.0,22698.0,0.98783837890625 +22681.0,22699.0,1.050765625 +22681.0,22700.0,0.9335390625 +22681.0,22701.0,1.1558128662109377 +22681.0,22702.0,1.3372578125 +22681.0,22703.0,1.26299951171875 +22681.0,22704.0,0.6571861572265625 +22681.0,22705.0,0.64421044921875 +22681.0,22706.0,0.50114111328125 +22681.0,22707.0,0.518296875 +22681.0,22708.0,0.497291015625 +22681.0,22709.0,0.483501953125 +22681.0,22710.0,0.246948974609375 +22681.0,22711.0,2.05099853515625 +22681.0,22712.0,1.64343115234375 +22681.0,22713.0,1.650412109375 +22681.0,22714.0,0.97139111328125 +22681.0,22715.0,1.08315673828125 +22681.0,22716.0,0.8488388671875 +22681.0,22717.0,1.00885595703125 +22681.0,22718.0,0.95447607421875 +22681.0,22719.0,0.85271484375 +22681.0,22720.0,2.08161083984375 +22681.0,22721.0,1.845216796875 +22681.0,22722.0,1.81941845703125 +22681.0,22723.0,1.863498046875 +22681.0,22724.0,1.457666015625 +22681.0,22725.0,1.592583251953125 +22681.0,22726.0,1.6534453125 +22681.0,22727.0,1.39341796875 +22681.0,22728.0,2.10391064453125 +22681.0,22729.0,1.739662841796875 +22681.0,22730.0,1.9413837890625 +22681.0,22731.0,1.697306640625 +22681.0,22732.0,1.77797705078125 +22681.0,22733.0,3.651484375 +22681.0,22735.0,3.5552353515625 +22681.0,22736.0,4.37401220703125 +22682.0,22635.0,4.828169677734375 +22682.0,22639.0,3.739241149902344 +22682.0,22640.0,3.825989501953125 +22682.0,22641.0,3.290437744140625 +22682.0,22642.0,3.415669921875 +22682.0,22643.0,3.28315869140625 +22682.0,22644.0,3.613341552734375 +22682.0,22645.0,3.451648193359375 +22682.0,22646.0,3.5106956787109374 +22682.0,22647.0,3.669608154296875 +22682.0,22648.0,3.567037384033203 +22682.0,22650.0,4.730648681640625 +22682.0,22652.0,4.384880126953125 +22682.0,22653.0,4.822607177734375 +22682.0,22654.0,4.560945068359375 +22682.0,22655.0,4.680423095703125 +22682.0,22658.0,4.194630126953125 +22682.0,22659.0,3.683508056640625 +22682.0,22660.0,3.798867431640625 +22682.0,22661.0,3.931056396484375 +22682.0,22662.0,3.990155029296875 +22682.0,22663.0,4.150910888671875 +22682.0,22664.0,4.101168701171876 +22682.0,22665.0,4.745062255859375 +22682.0,22666.0,3.903729248046875 +22682.0,22667.0,3.829261474609375 +22682.0,22668.0,3.905551513671875 +22682.0,22669.0,4.10518701171875 +22682.0,22670.0,3.886495361328125 +22682.0,22675.0,0.8594193115234375 +22682.0,22676.0,1.0155820770263673 +22682.0,22677.0,1.0150226440429688 +22682.0,22678.0,0.678583740234375 +22682.0,22679.0,0.6405849609375 +22682.0,22680.0,0.5404060058593749 +22682.0,22681.0,0.753334228515625 +22682.0,22682.0,0.09295654296875 +22682.0,22683.0,0.16716796875 +22682.0,22684.0,0.5845471191406251 +22682.0,22685.0,1.714088623046875 +22682.0,22686.0,1.996734619140625 +22682.0,22687.0,1.64987158203125 +22682.0,22688.0,1.741954345703125 +22682.0,22689.0,0.69586767578125 +22682.0,22690.0,0.977505615234375 +22682.0,22691.0,1.191914306640625 +22682.0,22692.0,1.11662744140625 +22682.0,22693.0,1.192093017578125 +22682.0,22694.0,1.697152099609375 +22682.0,22695.0,1.5003147583007812 +22682.0,22696.0,1.48679736328125 +22682.0,22697.0,1.297730010986328 +22682.0,22698.0,1.202460693359375 +22682.0,22699.0,1.265387939453125 +22682.0,22700.0,1.540161376953125 +22682.0,22701.0,1.3704351806640624 +22682.0,22702.0,1.551880126953125 +22682.0,22703.0,1.374621826171875 +22682.0,22704.0,0.8848084716796875 +22682.0,22705.0,0.871832763671875 +22682.0,22706.0,0.828763427734375 +22682.0,22707.0,0.999919189453125 +22682.0,22708.0,0.884913330078125 +22682.0,22709.0,0.811124267578125 +22682.0,22710.0,0.7495712890625 +22682.0,22711.0,2.1626208496093757 +22682.0,22712.0,2.250053466796875 +22682.0,22713.0,1.742034423828125 +22682.0,22714.0,1.083013427734375 +22682.0,22715.0,1.194779052734375 +22682.0,22716.0,0.960461181640625 +22682.0,22717.0,1.1204782714843748 +22682.0,22718.0,1.066098388671875 +22682.0,22719.0,0.964337158203125 +22682.0,22720.0,1.538233154296875 +22682.0,22721.0,1.301839111328125 +22682.0,22722.0,1.276040771484375 +22682.0,22723.0,1.320120361328125 +22682.0,22724.0,1.249288330078125 +22682.0,22725.0,1.04920556640625 +22682.0,22726.0,1.1100676269531249 +22682.0,22727.0,1.505040283203125 +22682.0,22728.0,1.560532958984375 +22682.0,22729.0,1.19628515625 +22682.0,22730.0,1.398006103515625 +22682.0,22731.0,1.664928955078125 +22682.0,22732.0,1.889599365234375 +22682.0,22733.0,3.108106689453125 +22682.0,22735.0,3.011857666015625 +22682.0,22736.0,3.830634521484375 +22683.0,22635.0,4.902381103515625 +22683.0,22639.0,3.813452575683594 +22683.0,22640.0,3.900200927734375 +22683.0,22641.0,3.364649169921875 +22683.0,22642.0,3.48988134765625 +22683.0,22643.0,3.3573701171875 +22683.0,22644.0,3.687552978515625 +22683.0,22645.0,3.525859619140625 +22683.0,22646.0,3.584907104492188 +22683.0,22647.0,3.743819580078125 +22683.0,22648.0,3.641248809814453 +22683.0,22650.0,4.804860107421875 +22683.0,22652.0,4.459091552734375 +22683.0,22653.0,4.896818603515625 +22683.0,22654.0,4.635156494140625 +22683.0,22655.0,4.754634521484375 +22683.0,22658.0,4.268841552734375 +22683.0,22659.0,3.757719482421875 +22683.0,22660.0,3.873078857421875 +22683.0,22661.0,4.005267822265624 +22683.0,22662.0,4.064366455078125 +22683.0,22663.0,4.225122314453125 +22683.0,22664.0,4.175380126953125 +22683.0,22665.0,4.819273681640625 +22683.0,22666.0,3.977940673828125 +22683.0,22667.0,3.903472900390625 +22683.0,22668.0,3.979762939453125 +22683.0,22669.0,4.1793984375 +22683.0,22670.0,3.960706787109375 +22683.0,22675.0,0.7936307373046875 +22683.0,22676.0,0.9497935028076172 +22683.0,22677.0,0.9492340698242188 +22683.0,22678.0,0.612795166015625 +22683.0,22679.0,0.57479638671875 +22683.0,22680.0,0.475617431640625 +22683.0,22681.0,0.687545654296875 +22683.0,22682.0,0.16716796875 +22683.0,22683.0,0.10137939453125 +22683.0,22684.0,0.518758544921875 +22683.0,22685.0,1.649300048828125 +22683.0,22686.0,1.931946044921875 +22683.0,22687.0,1.5850830078125 +22683.0,22688.0,1.677165771484375 +22683.0,22689.0,0.6310791015625 +22683.0,22690.0,0.911717041015625 +22683.0,22691.0,1.126125732421875 +22683.0,22692.0,1.0508388671875 +22683.0,22693.0,1.126304443359375 +22683.0,22694.0,1.631363525390625 +22683.0,22695.0,1.4345261840820311 +22683.0,22696.0,1.4210087890625 +22683.0,22697.0,1.231941436767578 +22683.0,22698.0,1.136672119140625 +22683.0,22699.0,1.199599365234375 +22683.0,22700.0,1.474372802734375 +22683.0,22701.0,1.3046466064453126 +22683.0,22702.0,1.486091552734375 +22683.0,22703.0,1.308833251953125 +22683.0,22704.0,0.8190198974609375 +22683.0,22705.0,0.806044189453125 +22683.0,22706.0,0.762974853515625 +22683.0,22707.0,0.934130615234375 +22683.0,22708.0,0.819124755859375 +22683.0,22709.0,0.745335693359375 +22683.0,22710.0,0.68378271484375 +22683.0,22711.0,2.096832275390625 +22683.0,22712.0,2.184264892578125 +22683.0,22713.0,1.696245849609375 +22683.0,22714.0,1.017224853515625 +22683.0,22715.0,1.1289904785156248 +22683.0,22716.0,0.894672607421875 +22683.0,22717.0,1.054689697265625 +22683.0,22718.0,1.000309814453125 +22683.0,22719.0,0.898548583984375 +22683.0,22720.0,1.612444580078125 +22683.0,22721.0,1.376050537109375 +22683.0,22722.0,1.350252197265625 +22683.0,22723.0,1.394331787109375 +22683.0,22724.0,1.323499755859375 +22683.0,22725.0,1.1234169921875 +22683.0,22726.0,1.184279052734375 +22683.0,22727.0,1.439251708984375 +22683.0,22728.0,1.634744384765625 +22683.0,22729.0,1.27049658203125 +22683.0,22730.0,1.472217529296875 +22683.0,22731.0,1.739140380859375 +22683.0,22732.0,1.823810791015625 +22683.0,22733.0,3.182318115234375 +22683.0,22735.0,3.086069091796875 +22683.0,22736.0,3.904845947265625 +22684.0,22639.0,4.113831726074219 +22684.0,22640.0,4.200580078125 +22684.0,22641.0,3.6650283203125 +22684.0,22642.0,3.790260498046875 +22684.0,22643.0,3.657749267578125 +22684.0,22644.0,3.98793212890625 +22684.0,22645.0,3.82623876953125 +22684.0,22646.0,3.885286254882813 +22684.0,22647.0,4.04419873046875 +22684.0,22648.0,3.941627960205078 +22684.0,22652.0,4.759470703125 +22684.0,22654.0,4.93553564453125 +22684.0,22658.0,4.569220703125 +22684.0,22659.0,4.0580986328125 +22684.0,22660.0,4.1734580078125 +22684.0,22661.0,4.30564697265625 +22684.0,22662.0,4.36474560546875 +22684.0,22663.0,4.52550146484375 +22684.0,22664.0,4.47575927734375 +22684.0,22666.0,4.27831982421875 +22684.0,22667.0,4.20385205078125 +22684.0,22668.0,4.28014208984375 +22684.0,22669.0,4.479777587890625 +22684.0,22670.0,4.2610859375 +22684.0,22675.0,0.6630098876953125 +22684.0,22676.0,0.7731726531982421 +22684.0,22677.0,0.8186132202148437 +22684.0,22678.0,0.48217431640625 +22684.0,22679.0,0.222175537109375 +22684.0,22680.0,0.28799658203125 +22684.0,22681.0,0.5569248046874999 +22684.0,22682.0,0.5845471191406251 +22684.0,22683.0,0.518758544921875 +22684.0,22684.0,0.1661376953125 +22684.0,22685.0,1.46167919921875 +22684.0,22686.0,1.7443251953125 +22684.0,22687.0,1.397462158203125 +22684.0,22688.0,1.489544921875 +22684.0,22689.0,0.443458251953125 +22684.0,22690.0,0.78109619140625 +22684.0,22691.0,0.9955048828125 +22684.0,22692.0,0.920218017578125 +22684.0,22693.0,0.99568359375 +22684.0,22694.0,1.50074267578125 +22684.0,22695.0,1.3039053344726563 +22684.0,22696.0,1.290387939453125 +22684.0,22697.0,1.101320587158203 +22684.0,22698.0,1.00605126953125 +22684.0,22699.0,1.068978515625 +22684.0,22700.0,1.343751953125 +22684.0,22701.0,1.1740257568359376 +22684.0,22702.0,1.355470703125 +22684.0,22703.0,1.17821240234375 +22684.0,22704.0,0.6883990478515625 +22684.0,22705.0,0.67542333984375 +22684.0,22706.0,0.6323540039062501 +22684.0,22707.0,0.803509765625 +22684.0,22708.0,0.68850390625 +22684.0,22709.0,0.6147148437500001 +22684.0,22710.0,0.553161865234375 +22684.0,22711.0,1.96621142578125 +22684.0,22712.0,2.0536440429687497 +22684.0,22713.0,1.565625 +22684.0,22714.0,0.88660400390625 +22684.0,22715.0,0.99836962890625 +22684.0,22716.0,0.7640517578125 +22684.0,22717.0,0.92406884765625 +22684.0,22718.0,0.86968896484375 +22684.0,22719.0,0.767927734375 +22684.0,22720.0,1.91282373046875 +22684.0,22721.0,1.6764296875 +22684.0,22722.0,1.65063134765625 +22684.0,22723.0,1.6947109375 +22684.0,22724.0,1.37287890625 +22684.0,22725.0,1.423796142578125 +22684.0,22726.0,1.484658203125 +22684.0,22727.0,1.308630859375 +22684.0,22728.0,1.93512353515625 +22684.0,22729.0,1.570875732421875 +22684.0,22730.0,1.7725966796875 +22684.0,22731.0,1.61251953125 +22684.0,22732.0,1.69318994140625 +22684.0,22733.0,3.482697265625 +22684.0,22735.0,3.3864482421875 +22684.0,22736.0,4.20522509765625 +22685.0,22641.0,4.73956982421875 +22685.0,22642.0,4.864802001953125 +22685.0,22643.0,4.732290771484375 +22685.0,22645.0,4.9007802734375 +22685.0,22646.0,4.959827758789063 +22685.0,22675.0,1.3875513916015625 +22685.0,22676.0,1.3187141571044922 +22685.0,22677.0,1.2031547241210938 +22685.0,22678.0,1.3017158203125 +22685.0,22679.0,1.319717041015625 +22685.0,22680.0,1.3255380859375 +22685.0,22681.0,1.31346630859375 +22685.0,22682.0,1.714088623046875 +22685.0,22683.0,1.649300048828125 +22685.0,22684.0,1.46167919921875 +22685.0,22685.0,0.251220703125 +22685.0,22686.0,0.98286669921875 +22685.0,22687.0,1.075003662109375 +22685.0,22688.0,0.27908642578125 +22685.0,22689.0,1.128999755859375 +22685.0,22690.0,1.9816376953125 +22685.0,22691.0,2.00904638671875 +22685.0,22692.0,1.933759521484375 +22685.0,22693.0,1.76522509765625 +22685.0,22694.0,1.5392841796875 +22685.0,22695.0,2.4904468383789062 +22685.0,22696.0,2.476929443359375 +22685.0,22697.0,2.351862091064453 +22685.0,22698.0,2.1925927734375 +22685.0,22699.0,2.25552001953125 +22685.0,22700.0,2.11329345703125 +22685.0,22701.0,2.3605672607421875 +22685.0,22702.0,2.54201220703125 +22685.0,22703.0,2.45775390625 +22685.0,22704.0,1.8889405517578124 +22685.0,22705.0,1.87596484375 +22685.0,22706.0,1.7348955078125 +22685.0,22707.0,1.69805126953125 +22685.0,22708.0,1.70604541015625 +22685.0,22709.0,1.71725634765625 +22685.0,22710.0,1.426703369140625 +22685.0,22711.0,3.2457529296875 +22685.0,22712.0,2.529185546875 +22685.0,22713.0,2.84516650390625 +22685.0,22714.0,2.1661455078125 +22685.0,22715.0,2.2779111328125 +22685.0,22716.0,2.04359326171875 +22685.0,22717.0,2.2036103515625003 +22685.0,22718.0,2.14923046875 +22685.0,22719.0,2.0474692382812503 +22685.0,22720.0,3.123365234375 +22685.0,22721.0,2.88697119140625 +22685.0,22722.0,2.8471728515625 +22685.0,22723.0,2.89125244140625 +22685.0,22724.0,2.65242041015625 +22685.0,22725.0,2.634337646484375 +22685.0,22726.0,2.68119970703125 +22685.0,22727.0,2.58817236328125 +22685.0,22728.0,3.1436650390625 +22685.0,22729.0,2.781417236328125 +22685.0,22730.0,2.96913818359375 +22685.0,22731.0,2.89206103515625 +22685.0,22732.0,2.9727314453125 +22685.0,22733.0,4.55723876953125 +22685.0,22735.0,4.46098974609375 +22685.0,22812.0,4.93541455078125 +22685.0,22815.0,4.83741064453125 +22685.0,22816.0,4.785004150390625 +22685.0,22817.0,4.7914407958984375 +22685.0,22818.0,4.914450561523437 +22686.0,22643.0,4.857936767578125 +22686.0,22645.0,4.89642626953125 +22686.0,22675.0,1.6701973876953125 +22686.0,22676.0,1.6013601531982422 +22686.0,22677.0,1.4858007202148438 +22686.0,22678.0,1.58436181640625 +22686.0,22679.0,1.602363037109375 +22686.0,22680.0,1.60818408203125 +22686.0,22681.0,1.5961123046875 +22686.0,22682.0,1.996734619140625 +22686.0,22683.0,1.931946044921875 +22686.0,22684.0,1.7443251953125 +22686.0,22685.0,0.98286669921875 +22686.0,22686.0,0.1505126953125 +22686.0,22687.0,0.746649658203125 +22686.0,22688.0,0.908732421875 +22686.0,22689.0,1.411645751953125 +22686.0,22690.0,2.26428369140625 +22686.0,22691.0,2.2916923828125 +22686.0,22692.0,2.216405517578125 +22686.0,22693.0,2.04787109375 +22686.0,22694.0,1.82193017578125 +22686.0,22695.0,2.7730928344726564 +22686.0,22696.0,2.759575439453125 +22686.0,22697.0,2.634508087158203 +22686.0,22698.0,2.47523876953125 +22686.0,22699.0,2.538166015625 +22686.0,22700.0,2.395939453125 +22686.0,22701.0,2.6432132568359377 +22686.0,22702.0,2.824658203125 +22686.0,22703.0,2.74039990234375 +22686.0,22704.0,2.1715865478515624 +22686.0,22705.0,2.15861083984375 +22686.0,22706.0,2.01754150390625 +22686.0,22707.0,1.980697265625 +22686.0,22708.0,1.98869140625 +22686.0,22709.0,1.99990234375 +22686.0,22710.0,1.709349365234375 +22686.0,22711.0,3.52839892578125 +22686.0,22712.0,2.81183154296875 +22686.0,22713.0,3.1278125 +22686.0,22714.0,2.44879150390625 +22686.0,22715.0,2.56055712890625 +22686.0,22716.0,2.3262392578125 +22686.0,22717.0,2.48625634765625 +22686.0,22718.0,2.43187646484375 +22686.0,22719.0,2.330115234375 +22686.0,22720.0,3.40601123046875 +22686.0,22721.0,3.1696171875 +22686.0,22722.0,3.12981884765625 +22686.0,22723.0,3.1738984375 +22686.0,22724.0,2.93506640625 +22686.0,22725.0,2.916983642578125 +22686.0,22726.0,2.963845703125 +22686.0,22727.0,2.870818359375 +22686.0,22728.0,3.42631103515625 +22686.0,22729.0,3.064063232421875 +22686.0,22730.0,3.2517841796875 +22686.0,22731.0,3.17470703125 +22686.0,22732.0,3.25537744140625 +22686.0,22733.0,4.839884765625 +22686.0,22735.0,4.7436357421875 +22686.0,22816.0,4.961650146484375 +22686.0,22817.0,4.968086791992188 +22687.0,22639.0,4.538156188964844 +22687.0,22640.0,4.624904541015625 +22687.0,22641.0,4.379352783203125 +22687.0,22642.0,4.5045849609375 +22687.0,22643.0,4.21207373046875 +22687.0,22644.0,4.463256591796875 +22687.0,22645.0,4.250563232421875 +22687.0,22646.0,4.3606107177734375 +22687.0,22647.0,4.468523193359375 +22687.0,22648.0,4.365952423095703 +22687.0,22659.0,4.874423095703125 +22687.0,22660.0,4.989782470703125 +22687.0,22668.0,4.752466552734375 +22687.0,22675.0,1.7623343505859377 +22687.0,22676.0,1.6934971160888672 +22687.0,22677.0,1.5779376831054688 +22687.0,22678.0,1.589498779296875 +22687.0,22679.0,1.4535 +22687.0,22680.0,1.261321044921875 +22687.0,22681.0,1.688249267578125 +22687.0,22682.0,1.64987158203125 +22687.0,22683.0,1.5850830078125 +22687.0,22684.0,1.397462158203125 +22687.0,22685.0,1.075003662109375 +22687.0,22686.0,0.746649658203125 +22687.0,22687.0,0.06878662109375 +22687.0,22688.0,1.000869384765625 +22687.0,22689.0,1.41678271484375 +22687.0,22690.0,2.012420654296875 +22687.0,22691.0,2.226829345703125 +22687.0,22692.0,2.15154248046875 +22687.0,22693.0,2.140008056640625 +22687.0,22694.0,1.914067138671875 +22687.0,22695.0,2.5352297973632814 +22687.0,22696.0,2.52171240234375 +22687.0,22697.0,2.332645050048828 +22687.0,22698.0,2.237375732421875 +22687.0,22699.0,2.300302978515625 +22687.0,22700.0,2.488076416015625 +22687.0,22701.0,2.4053502197265626 +22687.0,22702.0,2.586795166015625 +22687.0,22703.0,2.409536865234375 +22687.0,22704.0,1.9197235107421875 +22687.0,22705.0,1.906747802734375 +22687.0,22706.0,1.863678466796875 +22687.0,22707.0,2.034834228515625 +22687.0,22708.0,1.919828369140625 +22687.0,22709.0,1.846039306640625 +22687.0,22710.0,1.784486328125 +22687.0,22711.0,3.197535888671875 +22687.0,22712.0,2.903968505859375 +22687.0,22713.0,2.796949462890625 +22687.0,22714.0,2.117928466796875 +22687.0,22715.0,2.229694091796875 +22687.0,22716.0,1.995376220703125 +22687.0,22717.0,2.155393310546875 +22687.0,22718.0,2.101013427734375 +22687.0,22719.0,1.999252197265625 +22687.0,22720.0,3.059148193359375 +22687.0,22721.0,2.822754150390625 +22687.0,22722.0,2.782955810546875 +22687.0,22723.0,2.827035400390625 +22687.0,22724.0,2.604203369140625 +22687.0,22725.0,2.57012060546875 +22687.0,22726.0,2.616982666015625 +22687.0,22727.0,2.539955322265625 +22687.0,22728.0,3.079447998046875 +22687.0,22729.0,2.7172001953125 +22687.0,22730.0,2.904921142578125 +22687.0,22731.0,2.843843994140625 +22687.0,22732.0,2.924514404296875 +22687.0,22733.0,4.476021728515625 +22687.0,22735.0,4.379772705078125 +22687.0,22812.0,4.960197509765625 +22687.0,22815.0,4.862193603515625 +22687.0,22816.0,4.809787109375 +22687.0,22817.0,4.816223754882812 +22687.0,22818.0,4.939233520507813 +22688.0,22641.0,4.767435546875 +22688.0,22642.0,4.892667724609375 +22688.0,22643.0,4.760156494140625 +22688.0,22645.0,4.92864599609375 +22688.0,22646.0,4.987693481445312 +22688.0,22675.0,1.4154171142578125 +22688.0,22676.0,1.3465798797607422 +22688.0,22677.0,1.2310204467773438 +22688.0,22678.0,1.32958154296875 +22688.0,22679.0,1.347582763671875 +22688.0,22680.0,1.35340380859375 +22688.0,22681.0,1.34133203125 +22688.0,22682.0,1.741954345703125 +22688.0,22683.0,1.677165771484375 +22688.0,22684.0,1.489544921875 +22688.0,22685.0,0.27908642578125 +22688.0,22686.0,0.908732421875 +22688.0,22687.0,1.000869384765625 +22688.0,22688.0,0.1009521484375 +22688.0,22689.0,1.156865478515625 +22688.0,22690.0,2.00950341796875 +22688.0,22691.0,2.036912109375 +22688.0,22692.0,1.961625244140625 +22688.0,22693.0,1.7930908203125 +22688.0,22694.0,1.56714990234375 +22688.0,22695.0,2.5183125610351564 +22688.0,22696.0,2.504795166015625 +22688.0,22697.0,2.379727813720703 +22688.0,22698.0,2.22045849609375 +22688.0,22699.0,2.2833857421875 +22688.0,22700.0,2.1411591796875 +22688.0,22701.0,2.3884329833984377 +22688.0,22702.0,2.5698779296875 +22688.0,22703.0,2.48561962890625 +22688.0,22704.0,1.9168062744140624 +22688.0,22705.0,1.90383056640625 +22688.0,22706.0,1.76276123046875 +22688.0,22707.0,1.7259169921875 +22688.0,22708.0,1.7339111328125 +22688.0,22709.0,1.7451220703125 +22688.0,22710.0,1.454569091796875 +22688.0,22711.0,3.27361865234375 +22688.0,22712.0,2.55705126953125 +22688.0,22713.0,2.8730322265625 +22688.0,22714.0,2.19401123046875 +22688.0,22715.0,2.30577685546875 +22688.0,22716.0,2.071458984375 +22688.0,22717.0,2.23147607421875 +22688.0,22718.0,2.17709619140625 +22688.0,22719.0,2.0753349609375 +22688.0,22720.0,3.15123095703125 +22688.0,22721.0,2.9148369140625 +22688.0,22722.0,2.87503857421875 +22688.0,22723.0,2.9191181640625 +22688.0,22724.0,2.6802861328125 +22688.0,22725.0,2.662203369140625 +22688.0,22726.0,2.7090654296875 +22688.0,22727.0,2.6160380859375 +22688.0,22728.0,3.17153076171875 +22688.0,22729.0,2.809282958984375 +22688.0,22730.0,2.99700390625 +22688.0,22731.0,2.9199267578125 +22688.0,22732.0,3.00059716796875 +22688.0,22733.0,4.5851044921875 +22688.0,22735.0,4.48885546875 +22688.0,22812.0,4.9632802734375 +22688.0,22815.0,4.8652763671875 +22688.0,22816.0,4.812869873046875 +22688.0,22817.0,4.819306518554687 +22688.0,22818.0,4.942316284179688 +22689.0,22639.0,4.170152282714843 +22689.0,22640.0,4.256900634765625 +22689.0,22641.0,3.721348876953125 +22689.0,22642.0,3.8465810546875 +22689.0,22643.0,3.71406982421875 +22689.0,22644.0,4.044252685546875 +22689.0,22645.0,3.882559326171875 +22689.0,22646.0,3.9416068115234375 +22689.0,22647.0,4.100519287109375 +22689.0,22648.0,3.997948516845703 +22689.0,22652.0,4.815791259765625 +22689.0,22654.0,4.991856201171875 +22689.0,22658.0,4.625541259765625 +22689.0,22659.0,4.114419189453125 +22689.0,22660.0,4.229778564453125 +22689.0,22661.0,4.361967529296875 +22689.0,22662.0,4.421066162109375 +22689.0,22663.0,4.581822021484375 +22689.0,22664.0,4.532079833984375 +22689.0,22666.0,4.334640380859375 +22689.0,22667.0,4.260172607421875 +22689.0,22668.0,4.336462646484375 +22689.0,22669.0,4.53609814453125 +22689.0,22670.0,4.317406494140625 +22689.0,22675.0,0.4643304443359375 +22689.0,22676.0,0.4404932098388672 +22689.0,22677.0,0.5699337768554688 +22689.0,22678.0,0.283494873046875 +22689.0,22679.0,0.3014960937499999 +22689.0,22680.0,0.307317138671875 +22689.0,22681.0,0.572245361328125 +22689.0,22682.0,0.69586767578125 +22689.0,22683.0,0.6310791015625 +22689.0,22684.0,0.443458251953125 +22689.0,22685.0,1.128999755859375 +22689.0,22686.0,1.411645751953125 +22689.0,22687.0,1.41678271484375 +22689.0,22688.0,1.156865478515625 +22689.0,22689.0,0.11077880859375 +22689.0,22690.0,1.020416748046875 +22689.0,22691.0,1.0748254394531251 +22689.0,22692.0,0.99953857421875 +22689.0,22693.0,1.0750041503906251 +22689.0,22694.0,1.464063232421875 +22689.0,22695.0,1.5562258911132814 +22689.0,22696.0,1.54270849609375 +22689.0,22697.0,1.3626411437988282 +22689.0,22698.0,1.258371826171875 +22689.0,22699.0,1.321299072265625 +22689.0,22700.0,1.423072509765625 +22689.0,22701.0,1.4263463134765626 +22689.0,22702.0,1.607791259765625 +22689.0,22703.0,1.439532958984375 +22689.0,22704.0,0.9277196044921876 +22689.0,22705.0,0.914743896484375 +22689.0,22706.0,0.771674560546875 +22689.0,22707.0,0.882830322265625 +22689.0,22708.0,0.767824462890625 +22689.0,22709.0,0.754035400390625 +22689.0,22710.0,0.632482421875 +22689.0,22711.0,2.227531982421875 +22689.0,22712.0,2.132964599609375 +22689.0,22713.0,1.826945556640625 +22689.0,22714.0,1.1479245605468749 +22689.0,22715.0,1.259690185546875 +22689.0,22716.0,1.025372314453125 +22689.0,22717.0,1.185389404296875 +22689.0,22718.0,1.131009521484375 +22689.0,22719.0,1.0292482910156249 +22689.0,22720.0,2.105144287109375 +22689.0,22721.0,1.868750244140625 +22689.0,22722.0,1.828951904296875 +22689.0,22723.0,1.873031494140625 +22689.0,22724.0,1.634199462890625 +22689.0,22725.0,1.61611669921875 +22689.0,22726.0,1.662978759765625 +22689.0,22727.0,1.569951416015625 +22689.0,22728.0,2.125444091796875 +22689.0,22729.0,1.7631962890625 +22689.0,22730.0,1.950917236328125 +22689.0,22731.0,1.873840087890625 +22689.0,22732.0,1.954510498046875 +22689.0,22733.0,3.539017822265625 +22689.0,22735.0,3.442768798828125 +22689.0,22736.0,4.261545654296875 +22690.0,22639.0,4.432790222167969 +22690.0,22640.0,4.51853857421875 +22690.0,22641.0,3.82998681640625 +22690.0,22642.0,3.955218994140625 +22690.0,22643.0,3.936707763671875 +22690.0,22644.0,4.152890625 +22690.0,22645.0,4.217197265625 +22690.0,22646.0,4.050244750976562 +22690.0,22647.0,4.3941572265625 +22690.0,22648.0,4.291586456298828 +22690.0,22652.0,4.72742919921875 +22690.0,22658.0,4.53717919921875 +22690.0,22659.0,4.02605712890625 +22690.0,22660.0,4.14141650390625 +22690.0,22661.0,4.27360546875 +22690.0,22662.0,4.3327041015625 +22690.0,22663.0,4.4934599609375 +22690.0,22664.0,4.4437177734375 +22690.0,22666.0,4.2462783203125 +22690.0,22667.0,4.171810546875 +22690.0,22668.0,4.2481005859375 +22690.0,22669.0,4.447736083984375 +22690.0,22670.0,4.22904443359375 +22690.0,22675.0,0.9349683837890626 +22690.0,22676.0,1.0911311492919922 +22690.0,22677.0,1.0875717163085938 +22690.0,22678.0,0.8531328125 +22690.0,22679.0,0.837134033203125 +22690.0,22680.0,0.902955078125 +22690.0,22681.0,0.74988330078125 +22690.0,22682.0,0.977505615234375 +22690.0,22683.0,0.911717041015625 +22690.0,22684.0,0.78109619140625 +22690.0,22685.0,1.9816376953125 +22690.0,22686.0,2.26428369140625 +22690.0,22687.0,2.012420654296875 +22690.0,22688.0,2.00950341796875 +22690.0,22689.0,1.020416748046875 +22690.0,22690.0,0.2060546875 +22690.0,22691.0,0.45446337890625 +22690.0,22692.0,0.379176513671875 +22690.0,22693.0,0.47964208984375 +22690.0,22694.0,1.691701171875 +22690.0,22695.0,0.9168638305664064 +22690.0,22696.0,0.903346435546875 +22690.0,22697.0,0.7142790832519531 +22690.0,22698.0,0.619009765625 +22690.0,22699.0,0.68193701171875 +22690.0,22700.0,0.81571044921875 +22690.0,22701.0,0.7869842529296875 +22690.0,22702.0,0.96842919921875 +22690.0,22703.0,0.7911708984375 +22690.0,22704.0,0.1133575439453125 +22690.0,22705.0,0.2323818359375 +22690.0,22706.0,0.4333125 +22690.0,22707.0,0.5374682617187501 +22690.0,22708.0,0.44246240234375 +22690.0,22709.0,0.41567333984375 +22690.0,22710.0,0.633120361328125 +22690.0,22711.0,1.579169921875 +22690.0,22712.0,1.5256025390625 +22690.0,22713.0,1.17858349609375 +22690.0,22714.0,0.4995625 +22690.0,22715.0,0.642328125 +22690.0,22716.0,0.66301025390625 +22690.0,22717.0,0.5680273437500001 +22690.0,22718.0,0.6426474609375 +22690.0,22719.0,0.68488623046875 +22690.0,22720.0,1.7247822265625 +22690.0,22721.0,1.49938818359375 +22690.0,22722.0,1.53258984375 +22690.0,22723.0,1.57666943359375 +22690.0,22724.0,1.01683740234375 +22690.0,22725.0,1.246754638671875 +22690.0,22726.0,1.36661669921875 +22690.0,22727.0,0.92158935546875 +22690.0,22728.0,1.75808203125 +22690.0,22729.0,1.393834228515625 +22690.0,22730.0,1.63755517578125 +22690.0,22731.0,1.22547802734375 +22690.0,22732.0,1.3061484375 +22690.0,22733.0,3.40865576171875 +22690.0,22735.0,3.31240673828125 +22690.0,22736.0,4.13118359375 +22691.0,22639.0,4.492198913574219 +22691.0,22640.0,4.577947265625 +22691.0,22641.0,3.8893955078125 +22691.0,22642.0,4.014627685546875 +22691.0,22643.0,3.996116455078125 +22691.0,22644.0,4.21229931640625 +22691.0,22645.0,4.27660595703125 +22691.0,22646.0,4.109653442382813 +22691.0,22647.0,4.45356591796875 +22691.0,22648.0,4.350995147705079 +22691.0,22652.0,4.786837890625 +22691.0,22658.0,4.596587890625 +22691.0,22659.0,4.0854658203125 +22691.0,22660.0,4.2008251953125 +22691.0,22661.0,4.33301416015625 +22691.0,22662.0,4.39211279296875 +22691.0,22663.0,4.55286865234375 +22691.0,22664.0,4.50312646484375 +22691.0,22666.0,4.30568701171875 +22691.0,22667.0,4.23121923828125 +22691.0,22668.0,4.30750927734375 +22691.0,22669.0,4.507144775390625 +22691.0,22670.0,4.288453125 +22691.0,22675.0,0.9893770751953124 +22691.0,22676.0,1.120539840698242 +22691.0,22677.0,1.1149804077148435 +22691.0,22678.0,0.90754150390625 +22691.0,22679.0,0.931542724609375 +22691.0,22680.0,1.11736376953125 +22691.0,22681.0,0.8042919921875 +22691.0,22682.0,1.191914306640625 +22691.0,22683.0,1.126125732421875 +22691.0,22684.0,0.9955048828125 +22691.0,22685.0,2.00904638671875 +22691.0,22686.0,2.2916923828125 +22691.0,22687.0,2.226829345703125 +22691.0,22688.0,2.036912109375 +22691.0,22689.0,1.0748254394531251 +22691.0,22690.0,0.45446337890625 +22691.0,22691.0,0.2188720703125 +22691.0,22692.0,0.143585205078125 +22691.0,22693.0,0.48205078125 +22691.0,22694.0,1.71910986328125 +22691.0,22695.0,0.7002725219726562 +22691.0,22696.0,0.686755126953125 +22691.0,22697.0,0.5616877746582032 +22691.0,22698.0,0.40241845703125 +22691.0,22699.0,0.465345703125 +22691.0,22700.0,0.5801191406249999 +22691.0,22701.0,0.5703929443359375 +22691.0,22702.0,0.751837890625 +22691.0,22703.0,0.84457958984375 +22691.0,22704.0,0.3617662353515625 +22691.0,22705.0,0.46979052734375 +22691.0,22706.0,0.61872119140625 +22691.0,22707.0,0.5398769531250001 +22691.0,22708.0,0.47387109375 +22691.0,22709.0,0.60108203125 +22691.0,22710.0,0.664529052734375 +22691.0,22711.0,1.63257861328125 +22691.0,22712.0,1.29001123046875 +22691.0,22713.0,1.2319921875 +22691.0,22714.0,0.5529711914062501 +22691.0,22715.0,0.79273681640625 +22691.0,22716.0,0.9004189453125 +22691.0,22717.0,0.81643603515625 +22691.0,22718.0,0.88005615234375 +22691.0,22719.0,0.922294921875 +22691.0,22720.0,1.77819091796875 +22691.0,22721.0,1.558796875 +22691.0,22722.0,1.59199853515625 +22691.0,22723.0,1.636078125 +22691.0,22724.0,1.07624609375 +22691.0,22725.0,1.306163330078125 +22691.0,22726.0,1.426025390625 +22691.0,22727.0,0.974998046875 +22691.0,22728.0,1.81749072265625 +22691.0,22729.0,1.453242919921875 +22691.0,22730.0,1.6969638671875 +22691.0,22731.0,1.27888671875 +22691.0,22732.0,1.35955712890625 +22691.0,22733.0,3.468064453125 +22691.0,22735.0,3.3718154296875 +22691.0,22736.0,4.190592285156249 +22692.0,22639.0,4.416912048339844 +22692.0,22640.0,4.502660400390625 +22692.0,22641.0,3.814108642578125 +22692.0,22642.0,3.9393408203125 +22692.0,22643.0,3.92082958984375 +22692.0,22644.0,4.137012451171875 +22692.0,22645.0,4.201319091796875 +22692.0,22646.0,4.034366577148438 +22692.0,22647.0,4.378279052734375 +22692.0,22648.0,4.275708282470704 +22692.0,22652.0,4.711551025390625 +22692.0,22658.0,4.521301025390625 +22692.0,22659.0,4.010178955078125 +22692.0,22660.0,4.125538330078125 +22692.0,22661.0,4.257727294921875 +22692.0,22662.0,4.316825927734375 +22692.0,22663.0,4.477581787109375 +22692.0,22664.0,4.427839599609375 +22692.0,22666.0,4.230400146484375 +22692.0,22667.0,4.155932373046875 +22692.0,22668.0,4.232222412109375 +22692.0,22669.0,4.43185791015625 +22692.0,22670.0,4.213166259765625 +22692.0,22675.0,0.9140902099609376 +22692.0,22676.0,1.045252975463867 +22692.0,22677.0,1.0396935424804687 +22692.0,22678.0,0.832254638671875 +22692.0,22679.0,0.856255859375 +22692.0,22680.0,1.042076904296875 +22692.0,22681.0,0.729005126953125 +22692.0,22682.0,1.11662744140625 +22692.0,22683.0,1.0508388671875 +22692.0,22684.0,0.920218017578125 +22692.0,22685.0,1.933759521484375 +22692.0,22686.0,2.216405517578125 +22692.0,22687.0,2.15154248046875 +22692.0,22688.0,1.961625244140625 +22692.0,22689.0,0.99953857421875 +22692.0,22690.0,0.379176513671875 +22692.0,22691.0,0.143585205078125 +22692.0,22692.0,0.06829833984375 +22692.0,22693.0,0.406763916015625 +22692.0,22694.0,1.643822998046875 +22692.0,22695.0,0.6249856567382812 +22692.0,22696.0,0.61146826171875 +22692.0,22697.0,0.4864009094238281 +22692.0,22698.0,0.327131591796875 +22692.0,22699.0,0.390058837890625 +22692.0,22700.0,0.5048322753906249 +22692.0,22701.0,0.4951060791015625 +22692.0,22702.0,0.676551025390625 +22692.0,22703.0,0.769292724609375 +22692.0,22704.0,0.2864793701171875 +22692.0,22705.0,0.394503662109375 +22692.0,22706.0,0.543434326171875 +22692.0,22707.0,0.464590087890625 +22692.0,22708.0,0.398584228515625 +22692.0,22709.0,0.525795166015625 +22692.0,22710.0,0.5892421875 +22692.0,22711.0,1.557291748046875 +22692.0,22712.0,1.214724365234375 +22692.0,22713.0,1.156705322265625 +22692.0,22714.0,0.477684326171875 +22692.0,22715.0,0.717449951171875 +22692.0,22716.0,0.825132080078125 +22692.0,22717.0,0.741149169921875 +22692.0,22718.0,0.804769287109375 +22692.0,22719.0,0.847008056640625 +22692.0,22720.0,1.702904052734375 +22692.0,22721.0,1.483510009765625 +22692.0,22722.0,1.516711669921875 +22692.0,22723.0,1.560791259765625 +22692.0,22724.0,1.000959228515625 +22692.0,22725.0,1.23087646484375 +22692.0,22726.0,1.350738525390625 +22692.0,22727.0,0.899711181640625 +22692.0,22728.0,1.742203857421875 +22692.0,22729.0,1.3779560546875 +22692.0,22730.0,1.621677001953125 +22692.0,22731.0,1.203599853515625 +22692.0,22732.0,1.284270263671875 +22692.0,22733.0,3.392777587890625 +22692.0,22735.0,3.296528564453125 +22692.0,22736.0,4.115305419921874 +22693.0,22639.0,4.706377624511719 +22693.0,22640.0,4.7921259765625 +22693.0,22641.0,4.10357421875 +22693.0,22642.0,4.228806396484375 +22693.0,22643.0,4.210295166015625 +22693.0,22644.0,4.42647802734375 +22693.0,22645.0,4.43378466796875 +22693.0,22646.0,4.323832153320312 +22693.0,22647.0,4.65174462890625 +22693.0,22648.0,4.549173858642578 +22693.0,22658.0,4.8107666015625 +22693.0,22659.0,4.29964453125 +22693.0,22660.0,4.41500390625 +22693.0,22661.0,4.54719287109375 +22693.0,22662.0,4.60629150390625 +22693.0,22663.0,4.76704736328125 +22693.0,22664.0,4.71730517578125 +22693.0,22666.0,4.51986572265625 +22693.0,22667.0,4.44539794921875 +22693.0,22668.0,4.52168798828125 +22693.0,22669.0,4.721323486328125 +22693.0,22670.0,4.5026318359375 +22693.0,22675.0,0.7735557861328125 +22693.0,22676.0,0.8767185516357422 +22693.0,22677.0,0.8711591186523437 +22693.0,22678.0,0.90772021484375 +22693.0,22679.0,0.931721435546875 +22693.0,22680.0,1.11754248046875 +22693.0,22681.0,0.5854707031249999 +22693.0,22682.0,1.192093017578125 +22693.0,22683.0,1.126304443359375 +22693.0,22684.0,0.99568359375 +22693.0,22685.0,1.76522509765625 +22693.0,22686.0,2.04787109375 +22693.0,22687.0,2.140008056640625 +22693.0,22688.0,1.7930908203125 +22693.0,22689.0,1.0750041503906251 +22693.0,22690.0,0.47964208984375 +22693.0,22691.0,0.48205078125 +22693.0,22692.0,0.406763916015625 +22693.0,22693.0,0.2352294921875 +22693.0,22694.0,1.47528857421875 +22693.0,22695.0,0.9634512329101562 +22693.0,22696.0,0.949933837890625 +22693.0,22697.0,0.8248664855957031 +22693.0,22698.0,0.66559716796875 +22693.0,22699.0,0.7285244140625 +22693.0,22700.0,0.5832978515625 +22693.0,22701.0,0.8335716552734375 +22693.0,22702.0,1.0150166015625 +22693.0,22703.0,1.06475830078125 +22693.0,22704.0,0.3869449462890625 +22693.0,22705.0,0.49496923828125 +22693.0,22706.0,0.61889990234375 +22693.0,22707.0,0.4210556640625 +22693.0,22708.0,0.4740498046875 +22693.0,22709.0,0.6012607421875 +22693.0,22710.0,0.545707763671875 +22693.0,22711.0,1.85275732421875 +22693.0,22712.0,1.29318994140625 +22693.0,22713.0,1.4521708984375 +22693.0,22714.0,0.77314990234375 +22693.0,22715.0,0.91591552734375 +22693.0,22716.0,0.92559765625 +22693.0,22717.0,0.84161474609375 +22693.0,22718.0,0.90523486328125 +22693.0,22719.0,0.9474736328125 +22693.0,22720.0,1.99836962890625 +22693.0,22721.0,1.7729755859375 +22693.0,22722.0,1.80617724609375 +22693.0,22723.0,1.8502568359375 +22693.0,22724.0,1.2904248046875 +22693.0,22725.0,1.520342041015625 +22693.0,22726.0,1.6402041015625 +22693.0,22727.0,1.1951767578125 +22693.0,22728.0,2.03166943359375 +22693.0,22729.0,1.667421630859375 +22693.0,22730.0,1.911142578125 +22693.0,22731.0,1.4990654296875 +22693.0,22732.0,1.57973583984375 +22693.0,22733.0,3.6822431640625 +22693.0,22735.0,3.585994140625 +22693.0,22736.0,4.40477099609375 +22694.0,22641.0,4.77763330078125 +22694.0,22642.0,4.902865478515625 +22694.0,22643.0,4.770354248046875 +22694.0,22645.0,4.93884375 +22694.0,22646.0,4.997891235351562 +22694.0,22675.0,1.0976148681640625 +22694.0,22676.0,1.028777633666992 +22694.0,22677.0,0.9132182006835936 +22694.0,22678.0,1.346779296875 +22694.0,22679.0,1.436780517578125 +22694.0,22680.0,1.6226015625 +22694.0,22681.0,1.02352978515625 +22694.0,22682.0,1.697152099609375 +22694.0,22683.0,1.631363525390625 +22694.0,22684.0,1.50074267578125 +22694.0,22685.0,1.5392841796875 +22694.0,22686.0,1.82193017578125 +22694.0,22687.0,1.914067138671875 +22694.0,22688.0,1.56714990234375 +22694.0,22689.0,1.464063232421875 +22694.0,22690.0,1.691701171875 +22694.0,22691.0,1.71910986328125 +22694.0,22692.0,1.643822998046875 +22694.0,22693.0,1.47528857421875 +22694.0,22694.0,0.38134765625 +22694.0,22695.0,1.5845103149414062 +22694.0,22696.0,1.570992919921875 +22694.0,22697.0,1.833925567626953 +22694.0,22698.0,1.79065625 +22694.0,22699.0,1.85358349609375 +22694.0,22700.0,1.51635693359375 +22694.0,22701.0,1.7286307373046874 +22694.0,22702.0,1.52607568359375 +22694.0,22703.0,1.7818173828125 +22694.0,22704.0,1.5990040283203124 +22694.0,22705.0,1.5860283203125 +22694.0,22706.0,1.444958984375 +22694.0,22707.0,1.40811474609375 +22694.0,22708.0,1.41610888671875 +22694.0,22709.0,1.42731982421875 +22694.0,22710.0,1.136766845703125 +22694.0,22711.0,2.36181640625 +22694.0,22712.0,1.3712490234375 +22694.0,22713.0,1.96122998046875 +22694.0,22714.0,1.915208984375 +22694.0,22715.0,2.0269746093750003 +22694.0,22716.0,1.79265673828125 +22694.0,22717.0,1.952673828125 +22694.0,22718.0,1.8982939453125 +22694.0,22719.0,1.79653271484375 +22694.0,22720.0,2.5074287109375 +22694.0,22721.0,2.53303466796875 +22694.0,22722.0,2.586236328125 +22694.0,22723.0,2.63231591796875 +22694.0,22724.0,2.40148388671875 +22694.0,22725.0,2.536401123046875 +22694.0,22726.0,2.59726318359375 +22694.0,22727.0,1.70423583984375 +22694.0,22728.0,2.637728515625 +22694.0,22729.0,2.415480712890625 +22694.0,22730.0,2.51720166015625 +22694.0,22731.0,2.00812451171875 +22694.0,22732.0,2.088794921875 +22694.0,22733.0,4.44430224609375 +22694.0,22735.0,4.34805322265625 +22695.0,22639.0,4.575599365234375 +22695.0,22640.0,4.661347717285156 +22695.0,22641.0,3.972795959472656 +22695.0,22642.0,4.098028137207031 +22695.0,22643.0,4.079516906738281 +22695.0,22644.0,4.295699768066406 +22695.0,22645.0,4.360006408691406 +22695.0,22646.0,4.1930538940429685 +22695.0,22647.0,4.536966369628907 +22695.0,22648.0,4.434395599365234 +22695.0,22652.0,4.870238342285156 +22695.0,22658.0,4.6799883422851565 +22695.0,22659.0,4.168866271972656 +22695.0,22660.0,4.284225646972656 +22695.0,22661.0,4.416414611816406 +22695.0,22662.0,4.475513244628906 +22695.0,22663.0,4.636269104003906 +22695.0,22664.0,4.586526916503907 +22695.0,22666.0,4.389087463378906 +22695.0,22667.0,4.314619689941407 +22695.0,22668.0,4.390909729003906 +22695.0,22669.0,4.590545227050781 +22695.0,22670.0,4.371853576660156 +22695.0,22675.0,1.4707775268554688 +22695.0,22676.0,1.6019402923583983 +22695.0,22677.0,1.596380859375 +22695.0,22678.0,1.3889419555664062 +22695.0,22679.0,1.359943176269531 +22695.0,22680.0,1.4257642211914063 +22695.0,22681.0,1.2856924438476562 +22695.0,22682.0,1.5003147583007812 +22695.0,22683.0,1.4345261840820311 +22695.0,22684.0,1.3039053344726563 +22695.0,22685.0,2.4904468383789062 +22695.0,22686.0,2.7730928344726564 +22695.0,22687.0,2.5352297973632814 +22695.0,22688.0,2.5183125610351564 +22695.0,22689.0,1.5562258911132814 +22695.0,22690.0,0.9168638305664064 +22695.0,22691.0,0.7002725219726562 +22695.0,22692.0,0.6249856567382812 +22695.0,22693.0,0.9634512329101562 +22695.0,22694.0,1.5845103149414062 +22695.0,22695.0,0.0116729736328125 +22695.0,22696.0,0.1301555786132812 +22695.0,22697.0,0.4050882263183594 +22695.0,22698.0,0.3618189086914062 +22695.0,22699.0,0.4247461547851562 +22695.0,22700.0,0.8395195922851563 +22695.0,22701.0,0.4137933959960937 +22695.0,22702.0,0.3422383422851562 +22695.0,22703.0,0.7139800415039063 +22695.0,22704.0,0.8241666870117188 +22695.0,22705.0,0.9351909790039062 +22695.0,22706.0,1.0721216430664062 +22695.0,22707.0,1.0212774047851565 +22695.0,22708.0,0.9552715454101562 +22695.0,22709.0,1.0544824829101562 +22695.0,22710.0,1.1459295043945312 +22695.0,22711.0,1.4149790649414062 +22695.0,22712.0,1.0444116821289062 +22695.0,22713.0,1.0143926391601563 +22695.0,22714.0,0.6643716430664063 +22695.0,22715.0,0.9951372680664062 +22695.0,22716.0,1.1488193969726563 +22695.0,22717.0,1.0528364868164064 +22695.0,22718.0,1.1284566040039063 +22695.0,22719.0,1.1946953735351562 +22695.0,22720.0,1.5605913696289062 +22695.0,22721.0,1.5861973266601563 +22695.0,22722.0,1.6393989868164065 +22695.0,22723.0,1.6854785766601563 +22695.0,22724.0,1.1596465454101563 +22695.0,22725.0,1.389563781738281 +22695.0,22726.0,1.5094258422851563 +22695.0,22727.0,0.7573984985351563 +22695.0,22728.0,1.6908911743164063 +22695.0,22729.0,1.4686433715820313 +22695.0,22730.0,1.570364318847656 +22695.0,22731.0,1.0612871704101563 +22695.0,22732.0,1.1419575805664062 +22695.0,22733.0,3.497464904785156 +22695.0,22735.0,3.4012158813476563 +22695.0,22736.0,4.219992736816407 +22696.0,22639.0,4.562081970214844 +22696.0,22640.0,4.647830322265625 +22696.0,22641.0,3.959278564453125 +22696.0,22642.0,4.084510742187501 +22696.0,22643.0,4.065999511718751 +22696.0,22644.0,4.282182373046875 +22696.0,22645.0,4.346489013671875 +22696.0,22646.0,4.179536499023437 +22696.0,22647.0,4.523448974609375 +22696.0,22648.0,4.420878204345703 +22696.0,22652.0,4.856720947265625 +22696.0,22658.0,4.666470947265625 +22696.0,22659.0,4.155348876953125 +22696.0,22660.0,4.270708251953125 +22696.0,22661.0,4.402897216796875 +22696.0,22662.0,4.461995849609375 +22696.0,22663.0,4.622751708984375 +22696.0,22664.0,4.573009521484375 +22696.0,22666.0,4.375570068359375 +22696.0,22667.0,4.301102294921875 +22696.0,22668.0,4.377392333984375 +22696.0,22669.0,4.57702783203125 +22696.0,22670.0,4.358336181640625 +22696.0,22675.0,1.4572601318359375 +22696.0,22676.0,1.5884228973388672 +22696.0,22677.0,1.5828634643554689 +22696.0,22678.0,1.375424560546875 +22696.0,22679.0,1.34642578125 +22696.0,22680.0,1.412246826171875 +22696.0,22681.0,1.272175048828125 +22696.0,22682.0,1.48679736328125 +22696.0,22683.0,1.4210087890625 +22696.0,22684.0,1.290387939453125 +22696.0,22685.0,2.476929443359375 +22696.0,22686.0,2.759575439453125 +22696.0,22687.0,2.52171240234375 +22696.0,22688.0,2.504795166015625 +22696.0,22689.0,1.54270849609375 +22696.0,22690.0,0.903346435546875 +22696.0,22691.0,0.686755126953125 +22696.0,22692.0,0.61146826171875 +22696.0,22693.0,0.949933837890625 +22696.0,22694.0,1.570992919921875 +22696.0,22695.0,0.1301555786132812 +22696.0,22696.0,0.11663818359375 +22696.0,22697.0,0.3915708312988281 +22696.0,22698.0,0.348301513671875 +22696.0,22699.0,0.411228759765625 +22696.0,22700.0,0.826002197265625 +22696.0,22701.0,0.4002760009765625 +22696.0,22702.0,0.328720947265625 +22696.0,22703.0,0.700462646484375 +22696.0,22704.0,0.8106492919921875 +22696.0,22705.0,0.921673583984375 +22696.0,22706.0,1.058604248046875 +22696.0,22707.0,1.007760009765625 +22696.0,22708.0,0.941754150390625 +22696.0,22709.0,1.040965087890625 +22696.0,22710.0,1.132412109375 +22696.0,22711.0,1.401461669921875 +22696.0,22712.0,1.030894287109375 +22696.0,22713.0,1.000875244140625 +22696.0,22714.0,0.650854248046875 +22696.0,22715.0,0.981619873046875 +22696.0,22716.0,1.135302001953125 +22696.0,22717.0,1.0393190917968749 +22696.0,22718.0,1.114939208984375 +22696.0,22719.0,1.181177978515625 +22696.0,22720.0,1.547073974609375 +22696.0,22721.0,1.572679931640625 +22696.0,22722.0,1.625881591796875 +22696.0,22723.0,1.671961181640625 +22696.0,22724.0,1.146129150390625 +22696.0,22725.0,1.37604638671875 +22696.0,22726.0,1.495908447265625 +22696.0,22727.0,0.743881103515625 +22696.0,22728.0,1.677373779296875 +22696.0,22729.0,1.4551259765625 +22696.0,22730.0,1.556846923828125 +22696.0,22731.0,1.047769775390625 +22696.0,22732.0,1.128440185546875 +22696.0,22733.0,3.483947509765625 +22696.0,22735.0,3.387698486328125 +22696.0,22736.0,4.2064753417968745 +22697.0,22639.0,4.323014617919922 +22697.0,22640.0,4.408762969970703 +22697.0,22641.0,3.720211212158203 +22697.0,22642.0,3.845443389892578 +22697.0,22643.0,3.826932159423828 +22697.0,22644.0,4.043115020751953 +22697.0,22645.0,4.107421661376954 +22697.0,22646.0,3.940469146728516 +22697.0,22647.0,4.284381622314453 +22697.0,22648.0,4.1818108520507815 +22697.0,22652.0,4.617653594970703 +22697.0,22658.0,4.427403594970703 +22697.0,22659.0,3.9162815246582032 +22697.0,22660.0,4.031640899658203 +22697.0,22661.0,4.163829864501953 +22697.0,22662.0,4.222928497314453 +22697.0,22663.0,4.383684356689453 +22697.0,22664.0,4.333942169189453 +22697.0,22665.0,4.977835723876953 +22697.0,22666.0,4.136502716064453 +22697.0,22667.0,4.062034942626953 +22697.0,22668.0,4.138324981689453 +22697.0,22669.0,4.337960479736328 +22697.0,22670.0,4.119268829345703 +22697.0,22675.0,1.3321927795410156 +22697.0,22676.0,1.4633555450439453 +22697.0,22677.0,1.457796112060547 +22697.0,22678.0,1.195357208251953 +22697.0,22679.0,1.1573584289550782 +22697.0,22680.0,1.223179473876953 +22697.0,22681.0,1.1471076965332032 +22697.0,22682.0,1.297730010986328 +22697.0,22683.0,1.231941436767578 +22697.0,22684.0,1.101320587158203 +22697.0,22685.0,2.351862091064453 +22697.0,22686.0,2.634508087158203 +22697.0,22687.0,2.332645050048828 +22697.0,22688.0,2.379727813720703 +22697.0,22689.0,1.3626411437988282 +22697.0,22690.0,0.7142790832519531 +22697.0,22691.0,0.5616877746582032 +22697.0,22692.0,0.4864009094238281 +22697.0,22693.0,0.8248664855957031 +22697.0,22694.0,1.833925567626953 +22697.0,22695.0,0.4050882263183594 +22697.0,22696.0,0.3915708312988281 +22697.0,22697.0,0.0145034790039062 +22697.0,22698.0,0.2232341613769531 +22697.0,22699.0,0.2861614074707031 +22697.0,22700.0,0.7009348449707031 +22697.0,22701.0,0.2752086486816406 +22697.0,22702.0,0.4566535949707031 +22697.0,22703.0,0.3933952941894531 +22697.0,22704.0,0.6215819396972656 +22697.0,22705.0,0.7326062316894532 +22697.0,22706.0,0.8695368957519531 +22697.0,22707.0,0.8826926574707031 +22697.0,22708.0,0.8166867980957031 +22697.0,22709.0,0.8518977355957031 +22697.0,22710.0,1.007344757080078 +22697.0,22711.0,1.181394317626953 +22697.0,22712.0,1.293826934814453 +22697.0,22713.0,0.7808078918457031 +22697.0,22714.0,0.4617868957519531 +22697.0,22715.0,0.7425525207519531 +22697.0,22716.0,0.8962346496582031 +22697.0,22717.0,0.8002517395019532 +22697.0,22718.0,0.8758718566894531 +22697.0,22719.0,0.9421106262207032 +22697.0,22720.0,1.3270066223144532 +22697.0,22721.0,1.3526125793457031 +22697.0,22722.0,1.405814239501953 +22697.0,22723.0,1.451893829345703 +22697.0,22724.0,0.9070617980957032 +22697.0,22725.0,1.1369790344238282 +22697.0,22726.0,1.2568410949707032 +22697.0,22727.0,0.5238137512207031 +22697.0,22728.0,1.4573064270019531 +22697.0,22729.0,1.235058624267578 +22697.0,22730.0,1.3367795715332031 +22697.0,22731.0,0.8277024230957031 +22697.0,22732.0,0.9083728332519532 +22697.0,22733.0,3.263880157470703 +22697.0,22735.0,3.1676311340332037 +22697.0,22736.0,3.986407989501953 +22698.0,22639.0,4.277745300292969 +22698.0,22640.0,4.36349365234375 +22698.0,22641.0,3.67494189453125 +22698.0,22642.0,3.800174072265625 +22698.0,22643.0,3.781662841796875 +22698.0,22644.0,3.997845703125 +22698.0,22645.0,4.06215234375 +22698.0,22646.0,3.8951998291015615 +22698.0,22647.0,4.2391123046875 +22698.0,22648.0,4.136541534423828 +22698.0,22652.0,4.57238427734375 +22698.0,22658.0,4.38213427734375 +22698.0,22659.0,3.87101220703125 +22698.0,22660.0,3.98637158203125 +22698.0,22661.0,4.118560546875 +22698.0,22662.0,4.1776591796875 +22698.0,22663.0,4.3384150390625 +22698.0,22664.0,4.2886728515625 +22698.0,22665.0,4.93256640625 +22698.0,22666.0,4.0912333984375 +22698.0,22667.0,4.016765625 +22698.0,22668.0,4.093055664062501 +22698.0,22669.0,4.292691162109375 +22698.0,22670.0,4.07399951171875 +22698.0,22675.0,1.1729234619140625 +22698.0,22676.0,1.3040862274169922 +22698.0,22677.0,1.2985267944335936 +22698.0,22678.0,1.091087890625 +22698.0,22679.0,1.062089111328125 +22698.0,22680.0,1.12791015625 +22698.0,22681.0,0.98783837890625 +22698.0,22682.0,1.202460693359375 +22698.0,22683.0,1.136672119140625 +22698.0,22684.0,1.00605126953125 +22698.0,22685.0,2.1925927734375 +22698.0,22686.0,2.47523876953125 +22698.0,22687.0,2.237375732421875 +22698.0,22688.0,2.22045849609375 +22698.0,22689.0,1.258371826171875 +22698.0,22690.0,0.619009765625 +22698.0,22691.0,0.40241845703125 +22698.0,22692.0,0.327131591796875 +22698.0,22693.0,0.66559716796875 +22698.0,22694.0,1.79065625 +22698.0,22695.0,0.3618189086914062 +22698.0,22696.0,0.348301513671875 +22698.0,22697.0,0.2232341613769531 +22698.0,22698.0,0.06396484375 +22698.0,22699.0,0.12689208984375 +22698.0,22700.0,0.5416655273437501 +22698.0,22701.0,0.2319393310546875 +22698.0,22702.0,0.41338427734375 +22698.0,22703.0,0.5321259765624999 +22698.0,22704.0,0.5263126220703125 +22698.0,22705.0,0.6373369140625 +22698.0,22706.0,0.774267578125 +22698.0,22707.0,0.72342333984375 +22698.0,22708.0,0.65741748046875 +22698.0,22709.0,0.75662841796875 +22698.0,22710.0,0.848075439453125 +22698.0,22711.0,1.320125 +22698.0,22712.0,1.2505576171875 +22698.0,22713.0,0.91953857421875 +22698.0,22714.0,0.3665175781249999 +22698.0,22715.0,0.697283203125 +22698.0,22716.0,0.85096533203125 +22698.0,22717.0,0.754982421875 +22698.0,22718.0,0.8306025390625 +22698.0,22719.0,0.89684130859375 +22698.0,22720.0,1.4657373046875 +22698.0,22721.0,1.34434326171875 +22698.0,22722.0,1.377544921875 +22698.0,22723.0,1.42162451171875 +22698.0,22724.0,0.86179248046875 +22698.0,22725.0,1.091709716796875 +22698.0,22726.0,1.21157177734375 +22698.0,22727.0,0.66254443359375 +22698.0,22728.0,1.596037109375 +22698.0,22729.0,1.238789306640625 +22698.0,22730.0,1.47551025390625 +22698.0,22731.0,0.96643310546875 +22698.0,22732.0,1.047103515625 +22698.0,22733.0,3.25361083984375 +22698.0,22735.0,3.15736181640625 +22698.0,22736.0,3.976138671875 +22699.0,22639.0,4.340672546386719 +22699.0,22640.0,4.4264208984375 +22699.0,22641.0,3.737869140625 +22699.0,22642.0,3.863101318359375 +22699.0,22643.0,3.844590087890625 +22699.0,22644.0,4.06077294921875 +22699.0,22645.0,4.12507958984375 +22699.0,22646.0,3.958127075195312 +22699.0,22647.0,4.30203955078125 +22699.0,22648.0,4.199468780517578 +22699.0,22652.0,4.6353115234375 +22699.0,22658.0,4.4450615234375 +22699.0,22659.0,3.933939453125 +22699.0,22660.0,4.049298828125 +22699.0,22661.0,4.18148779296875 +22699.0,22662.0,4.24058642578125 +22699.0,22663.0,4.40134228515625 +22699.0,22664.0,4.35160009765625 +22699.0,22665.0,4.99549365234375 +22699.0,22666.0,4.15416064453125 +22699.0,22667.0,4.07969287109375 +22699.0,22668.0,4.155982910156251 +22699.0,22669.0,4.355618408203125 +22699.0,22670.0,4.1369267578125 +22699.0,22675.0,1.2358507080078125 +22699.0,22676.0,1.3670134735107422 +22699.0,22677.0,1.3614540405273436 +22699.0,22678.0,1.15401513671875 +22699.0,22679.0,1.125016357421875 +22699.0,22680.0,1.19083740234375 +22699.0,22681.0,1.050765625 +22699.0,22682.0,1.265387939453125 +22699.0,22683.0,1.199599365234375 +22699.0,22684.0,1.068978515625 +22699.0,22685.0,2.25552001953125 +22699.0,22686.0,2.538166015625 +22699.0,22687.0,2.300302978515625 +22699.0,22688.0,2.2833857421875 +22699.0,22689.0,1.321299072265625 +22699.0,22690.0,0.68193701171875 +22699.0,22691.0,0.465345703125 +22699.0,22692.0,0.390058837890625 +22699.0,22693.0,0.7285244140625 +22699.0,22694.0,1.85358349609375 +22699.0,22695.0,0.4247461547851562 +22699.0,22696.0,0.411228759765625 +22699.0,22697.0,0.2861614074707031 +22699.0,22698.0,0.12689208984375 +22699.0,22699.0,0.1898193359375 +22699.0,22700.0,0.6045927734375001 +22699.0,22701.0,0.2948665771484375 +22699.0,22702.0,0.4763115234375 +22699.0,22703.0,0.5950532226562499 +22699.0,22704.0,0.5892398681640625 +22699.0,22705.0,0.70026416015625 +22699.0,22706.0,0.83719482421875 +22699.0,22707.0,0.7863505859375 +22699.0,22708.0,0.7203447265625 +22699.0,22709.0,0.8195556640625 +22699.0,22710.0,0.911002685546875 +22699.0,22711.0,1.38305224609375 +22699.0,22712.0,1.31348486328125 +22699.0,22713.0,0.9824658203125 +22699.0,22714.0,0.4294448242187499 +22699.0,22715.0,0.76021044921875 +22699.0,22716.0,0.913892578125 +22699.0,22717.0,0.81790966796875 +22699.0,22718.0,0.89352978515625 +22699.0,22719.0,0.9597685546875 +22699.0,22720.0,1.52866455078125 +22699.0,22721.0,1.4072705078125 +22699.0,22722.0,1.44047216796875 +22699.0,22723.0,1.4845517578125 +22699.0,22724.0,0.9247197265625 +22699.0,22725.0,1.154636962890625 +22699.0,22726.0,1.2744990234375 +22699.0,22727.0,0.7254716796875 +22699.0,22728.0,1.65896435546875 +22699.0,22729.0,1.301716552734375 +22699.0,22730.0,1.5384375 +22699.0,22731.0,1.0293603515625 +22699.0,22732.0,1.11003076171875 +22699.0,22733.0,3.3165380859375 +22699.0,22735.0,3.2202890625 +22699.0,22736.0,4.03906591796875 +22700.0,22639.0,4.755445983886719 +22700.0,22640.0,4.8411943359375 +22700.0,22641.0,4.152642578125 +22700.0,22642.0,4.277874755859375 +22700.0,22643.0,4.259363525390625 +22700.0,22644.0,4.47554638671875 +22700.0,22645.0,4.53985302734375 +22700.0,22646.0,4.372900512695312 +22700.0,22647.0,4.71681298828125 +22700.0,22648.0,4.614242218017578 +22700.0,22658.0,4.8598349609375 +22700.0,22659.0,4.348712890625 +22700.0,22660.0,4.464072265625 +22700.0,22661.0,4.59626123046875 +22700.0,22662.0,4.65535986328125 +22700.0,22663.0,4.81611572265625 +22700.0,22664.0,4.76637353515625 +22700.0,22666.0,4.56893408203125 +22700.0,22667.0,4.49446630859375 +22700.0,22668.0,4.57075634765625 +22700.0,22669.0,4.770391845703125 +22700.0,22670.0,4.5517001953125 +22700.0,22675.0,1.1216241455078124 +22700.0,22676.0,1.224786911010742 +22700.0,22677.0,1.2192274780273438 +22700.0,22678.0,1.25578857421875 +22700.0,22679.0,1.279789794921875 +22700.0,22680.0,1.46561083984375 +22700.0,22681.0,0.9335390625 +22700.0,22682.0,1.540161376953125 +22700.0,22683.0,1.474372802734375 +22700.0,22684.0,1.343751953125 +22700.0,22685.0,2.11329345703125 +22700.0,22686.0,2.395939453125 +22700.0,22687.0,2.488076416015625 +22700.0,22688.0,2.1411591796875 +22700.0,22689.0,1.423072509765625 +22700.0,22690.0,0.81571044921875 +22700.0,22691.0,0.5801191406249999 +22700.0,22692.0,0.5048322753906249 +22700.0,22693.0,0.5832978515625 +22700.0,22694.0,1.51635693359375 +22700.0,22695.0,0.8395195922851563 +22700.0,22696.0,0.826002197265625 +22700.0,22697.0,0.7009348449707031 +22700.0,22698.0,0.5416655273437501 +22700.0,22699.0,0.6045927734375001 +22700.0,22700.0,0.1253662109375 +22700.0,22701.0,0.7096400146484375 +22700.0,22702.0,0.8590849609375 +22700.0,22703.0,1.00982666015625 +22700.0,22704.0,0.7230133056640625 +22700.0,22705.0,0.83103759765625 +22700.0,22706.0,0.96696826171875 +22700.0,22707.0,0.7691240234375 +22700.0,22708.0,0.8221181640625 +22700.0,22709.0,0.9493291015625 +22700.0,22710.0,0.893776123046875 +22700.0,22711.0,1.69482568359375 +22700.0,22712.0,0.97625830078125 +22700.0,22713.0,1.2942392578125 +22700.0,22714.0,0.82221826171875 +22700.0,22715.0,1.15398388671875 +22700.0,22716.0,1.261666015625 +22700.0,22717.0,1.17768310546875 +22700.0,22718.0,1.24130322265625 +22700.0,22719.0,1.2835419921875 +22700.0,22720.0,1.84043798828125 +22700.0,22721.0,1.8220439453125 +22700.0,22722.0,1.85524560546875 +22700.0,22723.0,1.8993251953125 +22700.0,22724.0,1.3394931640625 +22700.0,22725.0,1.569410400390625 +22700.0,22726.0,1.6892724609375 +22700.0,22727.0,1.0372451171875 +22700.0,22728.0,1.97073779296875 +22700.0,22729.0,1.716489990234375 +22700.0,22730.0,1.8502109375 +22700.0,22731.0,1.3411337890625 +22700.0,22732.0,1.42180419921875 +22700.0,22733.0,3.7313115234375 +22700.0,22735.0,3.6350625 +22700.0,22736.0,4.45383935546875 +22701.0,22639.0,4.445719787597656 +22701.0,22640.0,4.531468139648437 +22701.0,22641.0,3.842916381835937 +22701.0,22642.0,3.968148559570313 +22701.0,22643.0,3.9496373291015625 +22701.0,22644.0,4.165820190429687 +22701.0,22645.0,4.230126831054688 +22701.0,22646.0,4.06317431640625 +22701.0,22647.0,4.407086791992188 +22701.0,22648.0,4.304516021728515 +22701.0,22652.0,4.7403587646484375 +22701.0,22658.0,4.550108764648438 +22701.0,22659.0,4.038986694335938 +22701.0,22660.0,4.154346069335937 +22701.0,22661.0,4.286535034179687 +22701.0,22662.0,4.345633666992187 +22701.0,22663.0,4.506389526367188 +22701.0,22664.0,4.456647338867188 +22701.0,22666.0,4.259207885742187 +22701.0,22667.0,4.184740112304688 +22701.0,22668.0,4.261030151367187 +22701.0,22669.0,4.460665649414063 +22701.0,22670.0,4.241973999023437 +22701.0,22675.0,1.34089794921875 +22701.0,22676.0,1.4720607147216798 +22701.0,22677.0,1.4665012817382812 +22701.0,22678.0,1.2590623779296874 +22701.0,22679.0,1.2300635986328126 +22701.0,22680.0,1.2958846435546876 +22701.0,22681.0,1.1558128662109377 +22701.0,22682.0,1.3704351806640624 +22701.0,22683.0,1.3046466064453126 +22701.0,22684.0,1.1740257568359376 +22701.0,22685.0,2.3605672607421875 +22701.0,22686.0,2.6432132568359377 +22701.0,22687.0,2.4053502197265626 +22701.0,22688.0,2.3884329833984377 +22701.0,22689.0,1.4263463134765626 +22701.0,22690.0,0.7869842529296875 +22701.0,22691.0,0.5703929443359375 +22701.0,22692.0,0.4951060791015625 +22701.0,22693.0,0.8335716552734375 +22701.0,22694.0,1.7286307373046874 +22701.0,22695.0,0.4137933959960937 +22701.0,22696.0,0.4002760009765625 +22701.0,22697.0,0.2752086486816406 +22701.0,22698.0,0.2319393310546875 +22701.0,22699.0,0.2948665771484375 +22701.0,22700.0,0.7096400146484375 +22701.0,22701.0,0.017913818359375 +22701.0,22702.0,0.3513587646484375 +22701.0,22703.0,0.5841004638671875 +22701.0,22704.0,0.694287109375 +22701.0,22705.0,0.8053114013671875 +22701.0,22706.0,0.9422420654296876 +22701.0,22707.0,0.8913978271484375 +22701.0,22708.0,0.8253919677734375 +22701.0,22709.0,0.9246029052734376 +22701.0,22710.0,1.0160499267578125 +22701.0,22711.0,1.3720994873046874 +22701.0,22712.0,1.1885321044921875 +22701.0,22713.0,0.9715130615234376 +22701.0,22714.0,0.5344920654296875 +22701.0,22715.0,0.8652576904296875 +22701.0,22716.0,1.0189398193359374 +22701.0,22717.0,0.9229569091796876 +22701.0,22718.0,0.9985770263671876 +22701.0,22719.0,1.0648157958984374 +22701.0,22720.0,1.5177117919921874 +22701.0,22721.0,1.5123177490234374 +22701.0,22722.0,1.5455194091796876 +22701.0,22723.0,1.5895989990234376 +22701.0,22724.0,1.0297669677734371 +22701.0,22725.0,1.2596842041015626 +22701.0,22726.0,1.3795462646484375 +22701.0,22727.0,0.7145189208984375 +22701.0,22728.0,1.6480115966796876 +22701.0,22729.0,1.4067637939453126 +22701.0,22730.0,1.5274847412109376 +22701.0,22731.0,1.0184075927734375 +22701.0,22732.0,1.0990780029296876 +22701.0,22733.0,3.421585327148437 +22701.0,22735.0,3.3253363037109374 +22701.0,22736.0,4.144113159179687 +22702.0,22639.0,4.627164733886719 +22702.0,22640.0,4.7129130859375 +22702.0,22641.0,4.024361328125 +22702.0,22642.0,4.149593505859375 +22702.0,22643.0,4.131082275390625 +22702.0,22644.0,4.34726513671875 +22702.0,22645.0,4.41157177734375 +22702.0,22646.0,4.244619262695313 +22702.0,22647.0,4.58853173828125 +22702.0,22648.0,4.4859609680175785 +22702.0,22652.0,4.9218037109375 +22702.0,22658.0,4.7315537109375 +22702.0,22659.0,4.220431640625 +22702.0,22660.0,4.335791015625 +22702.0,22661.0,4.46797998046875 +22702.0,22662.0,4.52707861328125 +22702.0,22663.0,4.68783447265625 +22702.0,22664.0,4.63809228515625 +22702.0,22666.0,4.44065283203125 +22702.0,22667.0,4.36618505859375 +22702.0,22668.0,4.44247509765625 +22702.0,22669.0,4.642110595703125 +22702.0,22670.0,4.4234189453125 +22702.0,22675.0,1.5223428955078124 +22702.0,22676.0,1.653505661010742 +22702.0,22677.0,1.6479462280273438 +22702.0,22678.0,1.44050732421875 +22702.0,22679.0,1.411508544921875 +22702.0,22680.0,1.47732958984375 +22702.0,22681.0,1.3372578125 +22702.0,22682.0,1.551880126953125 +22702.0,22683.0,1.486091552734375 +22702.0,22684.0,1.355470703125 +22702.0,22685.0,2.54201220703125 +22702.0,22686.0,2.824658203125 +22702.0,22687.0,2.586795166015625 +22702.0,22688.0,2.5698779296875 +22702.0,22689.0,1.607791259765625 +22702.0,22690.0,0.96842919921875 +22702.0,22691.0,0.751837890625 +22702.0,22692.0,0.676551025390625 +22702.0,22693.0,1.0150166015625 +22702.0,22694.0,1.52607568359375 +22702.0,22695.0,0.3422383422851562 +22702.0,22696.0,0.328720947265625 +22702.0,22697.0,0.4566535949707031 +22702.0,22698.0,0.41338427734375 +22702.0,22699.0,0.4763115234375 +22702.0,22700.0,0.8590849609375 +22702.0,22701.0,0.3513587646484375 +22702.0,22702.0,0.1488037109375 +22702.0,22703.0,0.76554541015625 +22702.0,22704.0,0.8757320556640625 +22702.0,22705.0,0.98675634765625 +22702.0,22706.0,1.12368701171875 +22702.0,22707.0,1.0728427734375 +22702.0,22708.0,1.0068369140625 +22702.0,22709.0,1.1060478515625 +22702.0,22710.0,1.197494873046875 +22702.0,22711.0,1.35654443359375 +22702.0,22712.0,0.98597705078125 +22702.0,22713.0,0.9559580078125 +22702.0,22714.0,0.71593701171875 +22702.0,22715.0,1.04670263671875 +22702.0,22716.0,1.200384765625 +22702.0,22717.0,1.10440185546875 +22702.0,22718.0,1.18002197265625 +22702.0,22719.0,1.2462607421875 +22702.0,22720.0,1.50215673828125 +22702.0,22721.0,1.5277626953125 +22702.0,22722.0,1.58096435546875 +22702.0,22723.0,1.6270439453125 +22702.0,22724.0,1.2112119140625 +22702.0,22725.0,1.441129150390625 +22702.0,22726.0,1.5609912109375 +22702.0,22727.0,0.6989638671875 +22702.0,22728.0,1.63245654296875 +22702.0,22729.0,1.410208740234375 +22702.0,22730.0,1.5119296875 +22702.0,22731.0,1.0028525390625 +22702.0,22732.0,1.08352294921875 +22702.0,22733.0,3.4390302734375 +22702.0,22735.0,3.34278125 +22702.0,22736.0,4.16155810546875 +22703.0,22639.0,4.295906433105468 +22703.0,22640.0,4.38165478515625 +22703.0,22641.0,3.69310302734375 +22703.0,22642.0,3.818335205078125 +22703.0,22643.0,3.799823974609375 +22703.0,22644.0,4.0160068359375 +22703.0,22645.0,4.0803134765625 +22703.0,22646.0,3.913360961914063 +22703.0,22647.0,4.2572734375 +22703.0,22648.0,4.154702667236328 +22703.0,22652.0,4.59054541015625 +22703.0,22658.0,4.40029541015625 +22703.0,22659.0,3.88917333984375 +22703.0,22660.0,4.00453271484375 +22703.0,22661.0,4.136721679687501 +22703.0,22662.0,4.1958203125 +22703.0,22663.0,4.356576171875 +22703.0,22664.0,4.306833984375 +22703.0,22665.0,4.9507275390625 +22703.0,22666.0,4.10939453125 +22703.0,22667.0,3.9709267578125 +22703.0,22668.0,4.111216796875 +22703.0,22669.0,4.246852294921875 +22703.0,22670.0,4.0281606445312494 +22703.0,22675.0,1.4480845947265626 +22703.0,22676.0,1.6042473602294922 +22703.0,22677.0,1.6006879272460937 +22703.0,22678.0,1.2722490234375 +22703.0,22679.0,1.234250244140625 +22703.0,22680.0,1.3000712890625 +22703.0,22681.0,1.26299951171875 +22703.0,22682.0,1.374621826171875 +22703.0,22683.0,1.308833251953125 +22703.0,22684.0,1.17821240234375 +22703.0,22685.0,2.45775390625 +22703.0,22686.0,2.74039990234375 +22703.0,22687.0,2.409536865234375 +22703.0,22688.0,2.48561962890625 +22703.0,22689.0,1.439532958984375 +22703.0,22690.0,0.7911708984375 +22703.0,22691.0,0.84457958984375 +22703.0,22692.0,0.769292724609375 +22703.0,22693.0,1.06475830078125 +22703.0,22694.0,1.7818173828125 +22703.0,22695.0,0.7139800415039063 +22703.0,22696.0,0.700462646484375 +22703.0,22697.0,0.3933952941894531 +22703.0,22698.0,0.5321259765624999 +22703.0,22699.0,0.5950532226562499 +22703.0,22700.0,1.00982666015625 +22703.0,22701.0,0.5841004638671875 +22703.0,22702.0,0.76554541015625 +22703.0,22703.0,0.144287109375 +22703.0,22704.0,0.6984737548828125 +22703.0,22705.0,0.809498046875 +22703.0,22706.0,0.9464287109375 +22703.0,22707.0,1.12258447265625 +22703.0,22708.0,1.01957861328125 +22703.0,22709.0,0.92878955078125 +22703.0,22710.0,1.210236572265625 +22703.0,22711.0,0.9322861328125 +22703.0,22712.0,1.24171875 +22703.0,22713.0,0.53169970703125 +22703.0,22714.0,0.5386787109375 +22703.0,22715.0,0.8194443359375 +22703.0,22716.0,0.97312646484375 +22703.0,22717.0,0.8771435546875 +22703.0,22718.0,0.952763671875 +22703.0,22719.0,1.01900244140625 +22703.0,22720.0,1.0778984375 +22703.0,22721.0,1.10350439453125 +22703.0,22722.0,1.1567060546875 +22703.0,22723.0,1.20278564453125 +22703.0,22724.0,0.98395361328125 +22703.0,22725.0,1.213870849609375 +22703.0,22726.0,1.33373291015625 +22703.0,22727.0,0.27470556640625 +22703.0,22728.0,1.2081982421875 +22703.0,22729.0,0.985950439453125 +22703.0,22730.0,1.08767138671875 +22703.0,22731.0,0.57859423828125 +22703.0,22732.0,0.6592646484375 +22703.0,22733.0,3.01477197265625 +22703.0,22734.0,4.7929423828125 +22703.0,22735.0,2.91852294921875 +22703.0,22736.0,3.7372998046875 +22704.0,22639.0,4.340093078613282 +22704.0,22640.0,4.425841430664063 +22704.0,22641.0,3.7372896728515625 +22704.0,22642.0,3.862521850585937 +22704.0,22643.0,3.8440106201171873 +22704.0,22644.0,4.060193481445312 +22704.0,22645.0,4.124500122070312 +22704.0,22646.0,3.957547607421875 +22704.0,22647.0,4.301460083007813 +22704.0,22648.0,4.19888931274414 +22704.0,22652.0,4.634732055664062 +22704.0,22658.0,4.444482055664063 +22704.0,22659.0,3.9333599853515615 +22704.0,22660.0,4.048719360351562 +22704.0,22661.0,4.180908325195312 +22704.0,22662.0,4.240006958007813 +22704.0,22663.0,4.400762817382812 +22704.0,22664.0,4.351020629882813 +22704.0,22665.0,4.994914184570312 +22704.0,22666.0,4.153581176757813 +22704.0,22667.0,4.079113403320313 +22704.0,22668.0,4.155403442382813 +22704.0,22669.0,4.355038940429687 +22704.0,22670.0,4.136347290039063 +22704.0,22675.0,0.842271240234375 +22704.0,22676.0,0.9984340057373048 +22704.0,22677.0,0.9948745727539062 +22704.0,22678.0,0.7604356689453124 +22704.0,22679.0,0.7444368896484375 +22704.0,22680.0,0.8102579345703125 +22704.0,22681.0,0.6571861572265625 +22704.0,22682.0,0.8848084716796875 +22704.0,22683.0,0.8190198974609375 +22704.0,22684.0,0.6883990478515625 +22704.0,22685.0,1.8889405517578124 +22704.0,22686.0,2.1715865478515624 +22704.0,22687.0,1.9197235107421875 +22704.0,22688.0,1.9168062744140624 +22704.0,22689.0,0.9277196044921876 +22704.0,22690.0,0.1133575439453125 +22704.0,22691.0,0.3617662353515625 +22704.0,22692.0,0.2864793701171875 +22704.0,22693.0,0.3869449462890625 +22704.0,22694.0,1.5990040283203124 +22704.0,22695.0,0.8241666870117188 +22704.0,22696.0,0.8106492919921875 +22704.0,22697.0,0.6215819396972656 +22704.0,22698.0,0.5263126220703125 +22704.0,22699.0,0.5892398681640625 +22704.0,22700.0,0.7230133056640625 +22704.0,22701.0,0.694287109375 +22704.0,22702.0,0.8757320556640625 +22704.0,22703.0,0.6984737548828125 +22704.0,22704.0,0.020660400390625 +22704.0,22705.0,0.1396846923828125 +22704.0,22706.0,0.3406153564453125 +22704.0,22707.0,0.4447711181640625 +22704.0,22708.0,0.3497652587890625 +22704.0,22709.0,0.3229761962890625 +22704.0,22710.0,0.5404232177734375 +22704.0,22711.0,1.4864727783203124 +22704.0,22712.0,1.4329053955078126 +22704.0,22713.0,1.0858863525390623 +22704.0,22714.0,0.4068653564453125 +22704.0,22715.0,0.5496309814453125 +22704.0,22716.0,0.5703131103515625 +22704.0,22717.0,0.4753302001953125 +22704.0,22718.0,0.5499503173828125 +22704.0,22719.0,0.5921890869140625 +22704.0,22720.0,1.6320850830078124 +22704.0,22721.0,1.4066910400390624 +22704.0,22722.0,1.4398927001953126 +22704.0,22723.0,1.4839722900390624 +22704.0,22724.0,0.9241402587890624 +22704.0,22725.0,1.1540574951171876 +22704.0,22726.0,1.2739195556640626 +22704.0,22727.0,0.8288922119140625 +22704.0,22728.0,1.6653848876953126 +22704.0,22729.0,1.3011370849609376 +22704.0,22730.0,1.5448580322265626 +22704.0,22731.0,1.1327808837890625 +22704.0,22732.0,1.2134512939453126 +22704.0,22733.0,3.3159586181640623 +22704.0,22735.0,3.2197095947265626 +22704.0,22736.0,4.038486450195313 +22705.0,22639.0,4.401117370605469 +22705.0,22640.0,4.48786572265625 +22705.0,22641.0,3.84831396484375 +22705.0,22642.0,3.973546142578125 +22705.0,22643.0,3.945034912109375 +22705.0,22644.0,4.1712177734375 +22705.0,22645.0,4.1135244140625 +22705.0,22646.0,4.068571899414063 +22705.0,22647.0,4.331484375 +22705.0,22648.0,4.228913604736328 +22705.0,22652.0,4.74575634765625 +22705.0,22658.0,4.55550634765625 +22705.0,22659.0,4.044384277343751 +22705.0,22660.0,4.159743652343749 +22705.0,22661.0,4.2919326171875 +22705.0,22662.0,4.35103125 +22705.0,22663.0,4.511787109375 +22705.0,22664.0,4.462044921875 +22705.0,22666.0,4.26460546875 +22705.0,22667.0,4.1901376953125 +22705.0,22668.0,4.266427734375 +22705.0,22669.0,4.466063232421875 +22705.0,22670.0,4.24737158203125 +22705.0,22675.0,0.8292955322265625 +22705.0,22676.0,0.9854582977294922 +22705.0,22677.0,0.9818988647460938 +22705.0,22678.0,0.7474599609375 +22705.0,22679.0,0.731461181640625 +22705.0,22680.0,0.7972822265625 +22705.0,22681.0,0.64421044921875 +22705.0,22682.0,0.871832763671875 +22705.0,22683.0,0.806044189453125 +22705.0,22684.0,0.67542333984375 +22705.0,22685.0,1.87596484375 +22705.0,22686.0,2.15861083984375 +22705.0,22687.0,1.906747802734375 +22705.0,22688.0,1.90383056640625 +22705.0,22689.0,0.914743896484375 +22705.0,22690.0,0.2323818359375 +22705.0,22691.0,0.46979052734375 +22705.0,22692.0,0.394503662109375 +22705.0,22693.0,0.49496923828125 +22705.0,22694.0,1.5860283203125 +22705.0,22695.0,0.9351909790039062 +22705.0,22696.0,0.921673583984375 +22705.0,22697.0,0.7326062316894532 +22705.0,22698.0,0.6373369140625 +22705.0,22699.0,0.70026416015625 +22705.0,22700.0,0.83103759765625 +22705.0,22701.0,0.8053114013671875 +22705.0,22702.0,0.98675634765625 +22705.0,22703.0,0.809498046875 +22705.0,22704.0,0.1396846923828125 +22705.0,22705.0,0.126708984375 +22705.0,22706.0,0.3276396484375 +22705.0,22707.0,0.45179541015625 +22705.0,22708.0,0.33678955078125 +22705.0,22709.0,0.31000048828125 +22705.0,22710.0,0.527447509765625 +22705.0,22711.0,1.5974970703125 +22705.0,22712.0,1.5409296875 +22705.0,22713.0,1.19691064453125 +22705.0,22714.0,0.5178896484375 +22705.0,22715.0,0.6606552734375 +22705.0,22716.0,0.5573374023437501 +22705.0,22717.0,0.5863544921875 +22705.0,22718.0,0.5369746093750001 +22705.0,22719.0,0.57921337890625 +22705.0,22720.0,1.743109375 +22705.0,22721.0,1.51771533203125 +22705.0,22722.0,1.5509169921875 +22705.0,22723.0,1.59499658203125 +22705.0,22724.0,1.03516455078125 +22705.0,22725.0,1.265081787109375 +22705.0,22726.0,1.38494384765625 +22705.0,22727.0,0.93991650390625 +22705.0,22728.0,1.7764091796875 +22705.0,22729.0,1.412161376953125 +22705.0,22730.0,1.65588232421875 +22705.0,22731.0,1.24380517578125 +22705.0,22732.0,1.3244755859375 +22705.0,22733.0,3.42698291015625 +22705.0,22735.0,3.33073388671875 +22705.0,22736.0,4.1495107421875 +22706.0,22639.0,4.358048034667969 +22706.0,22640.0,4.44479638671875 +22706.0,22641.0,3.90924462890625 +22706.0,22642.0,4.034476806640625 +22706.0,22643.0,3.901965576171875 +22706.0,22644.0,4.2321484375 +22706.0,22645.0,4.070455078125001 +22706.0,22646.0,4.129502563476563 +22706.0,22647.0,4.2884150390625 +22706.0,22648.0,4.185844268798828 +22706.0,22652.0,4.85168701171875 +22706.0,22658.0,4.66143701171875 +22706.0,22659.0,4.15031494140625 +22706.0,22660.0,4.26567431640625 +22706.0,22661.0,4.39786328125 +22706.0,22662.0,4.4569619140625 +22706.0,22663.0,4.6177177734375 +22706.0,22664.0,4.5679755859375 +22706.0,22666.0,4.3705361328125 +22706.0,22667.0,4.296068359375 +22706.0,22668.0,4.3723583984375 +22706.0,22669.0,4.571993896484375 +22706.0,22670.0,4.35330224609375 +22706.0,22675.0,0.6862261962890625 +22706.0,22676.0,0.8423889617919922 +22706.0,22677.0,0.8388295288085937 +22706.0,22678.0,0.604390625 +22706.0,22679.0,0.628391845703125 +22706.0,22680.0,0.754212890625 +22706.0,22681.0,0.50114111328125 +22706.0,22682.0,0.828763427734375 +22706.0,22683.0,0.762974853515625 +22706.0,22684.0,0.6323540039062501 +22706.0,22685.0,1.7348955078125 +22706.0,22686.0,2.01754150390625 +22706.0,22687.0,1.863678466796875 +22706.0,22688.0,1.76276123046875 +22706.0,22689.0,0.771674560546875 +22706.0,22690.0,0.4333125 +22706.0,22691.0,0.61872119140625 +22706.0,22692.0,0.543434326171875 +22706.0,22693.0,0.61889990234375 +22706.0,22694.0,1.444958984375 +22706.0,22695.0,1.0721216430664062 +22706.0,22696.0,1.058604248046875 +22706.0,22697.0,0.8695368957519531 +22706.0,22698.0,0.774267578125 +22706.0,22699.0,0.83719482421875 +22706.0,22700.0,0.96696826171875 +22706.0,22701.0,0.9422420654296876 +22706.0,22702.0,1.12368701171875 +22706.0,22703.0,0.9464287109375 +22706.0,22704.0,0.3406153564453125 +22706.0,22705.0,0.3276396484375 +22706.0,22706.0,0.1845703125 +22706.0,22707.0,0.42672607421875 +22706.0,22708.0,0.31172021484375 +22706.0,22709.0,0.16693115234375 +22706.0,22710.0,0.461378173828125 +22706.0,22711.0,1.734427734375 +22706.0,22712.0,1.6768603515625 +22706.0,22713.0,1.33384130859375 +22706.0,22714.0,0.6548203125000001 +22706.0,22715.0,0.7665859375 +22706.0,22716.0,0.53226806640625 +22706.0,22717.0,0.69228515625 +22706.0,22718.0,0.6379052734374999 +22706.0,22719.0,0.5361440429687501 +22706.0,22720.0,1.8600400390625 +22706.0,22721.0,1.62364599609375 +22706.0,22722.0,1.65684765625 +22706.0,22723.0,1.70092724609375 +22706.0,22724.0,1.14109521484375 +22706.0,22725.0,1.371012451171875 +22706.0,22726.0,1.49087451171875 +22706.0,22727.0,1.07684716796875 +22706.0,22728.0,1.88233984375 +22706.0,22729.0,1.518092041015625 +22706.0,22730.0,1.76181298828125 +22706.0,22731.0,1.38073583984375 +22706.0,22732.0,1.46140625 +22706.0,22733.0,3.53291357421875 +22706.0,22735.0,3.43666455078125 +22706.0,22736.0,4.25544140625 +22707.0,22639.0,4.529203796386719 +22707.0,22640.0,4.6159521484375 +22707.0,22641.0,4.080400390625 +22707.0,22642.0,4.205632568359375 +22707.0,22643.0,4.073121337890624 +22707.0,22644.0,4.40330419921875 +22707.0,22645.0,4.24161083984375 +22707.0,22646.0,4.300658325195313 +22707.0,22647.0,4.45957080078125 +22707.0,22648.0,4.357000030517578 +22707.0,22658.0,4.8685927734375 +22707.0,22659.0,4.357470703125 +22707.0,22660.0,4.472830078125 +22707.0,22661.0,4.60501904296875 +22707.0,22662.0,4.66411767578125 +22707.0,22663.0,4.82487353515625 +22707.0,22664.0,4.77513134765625 +22707.0,22666.0,4.57769189453125 +22707.0,22667.0,4.50322412109375 +22707.0,22668.0,4.57951416015625 +22707.0,22669.0,4.779149658203125 +22707.0,22670.0,4.5604580078125 +22707.0,22675.0,0.7063819580078124 +22707.0,22676.0,0.8095447235107421 +22707.0,22677.0,0.8039852905273438 +22707.0,22678.0,0.71554638671875 +22707.0,22679.0,0.739547607421875 +22707.0,22680.0,0.92536865234375 +22707.0,22681.0,0.518296875 +22707.0,22682.0,0.999919189453125 +22707.0,22683.0,0.934130615234375 +22707.0,22684.0,0.803509765625 +22707.0,22685.0,1.69805126953125 +22707.0,22686.0,1.980697265625 +22707.0,22687.0,2.034834228515625 +22707.0,22688.0,1.7259169921875 +22707.0,22689.0,0.882830322265625 +22707.0,22690.0,0.5374682617187501 +22707.0,22691.0,0.5398769531250001 +22707.0,22692.0,0.464590087890625 +22707.0,22693.0,0.4210556640625 +22707.0,22694.0,1.40811474609375 +22707.0,22695.0,1.0212774047851565 +22707.0,22696.0,1.007760009765625 +22707.0,22697.0,0.8826926574707031 +22707.0,22698.0,0.72342333984375 +22707.0,22699.0,0.7863505859375 +22707.0,22700.0,0.7691240234375 +22707.0,22701.0,0.8913978271484375 +22707.0,22702.0,1.0728427734375 +22707.0,22703.0,1.12258447265625 +22707.0,22704.0,0.4447711181640625 +22707.0,22705.0,0.45179541015625 +22707.0,22706.0,0.42672607421875 +22707.0,22707.0,0.2288818359375 +22707.0,22708.0,0.2818759765625 +22707.0,22709.0,0.4090869140625 +22707.0,22710.0,0.353533935546875 +22707.0,22711.0,1.91058349609375 +22707.0,22712.0,1.47901611328125 +22707.0,22713.0,1.5099970703125 +22707.0,22714.0,0.83097607421875 +22707.0,22715.0,0.97374169921875 +22707.0,22716.0,0.774423828125 +22707.0,22717.0,0.89944091796875 +22707.0,22718.0,0.86206103515625 +22707.0,22719.0,0.7782998046875 +22707.0,22720.0,2.05619580078125 +22707.0,22721.0,1.8308017578125 +22707.0,22722.0,1.86400341796875 +22707.0,22723.0,1.9080830078125 +22707.0,22724.0,1.3482509765625 +22707.0,22725.0,1.578168212890625 +22707.0,22726.0,1.6980302734375 +22707.0,22727.0,1.2530029296875 +22707.0,22728.0,2.08949560546875 +22707.0,22729.0,1.725247802734375 +22707.0,22730.0,1.96896875 +22707.0,22731.0,1.5568916015625 +22707.0,22732.0,1.63756201171875 +22707.0,22733.0,3.7400693359375 +22707.0,22735.0,3.6438203125 +22707.0,22736.0,4.46259716796875 +22708.0,22639.0,4.414197937011719 +22708.0,22640.0,4.5009462890625 +22708.0,22641.0,3.96539453125 +22708.0,22642.0,4.090626708984376 +22708.0,22643.0,3.958115478515625 +22708.0,22644.0,4.28829833984375 +22708.0,22645.0,4.12660498046875 +22708.0,22646.0,4.185652465820312 +22708.0,22647.0,4.34456494140625 +22708.0,22648.0,4.241994171142578 +22708.0,22652.0,4.9558369140625 +22708.0,22658.0,4.7655869140625 +22708.0,22659.0,4.25446484375 +22708.0,22660.0,4.36982421875 +22708.0,22661.0,4.50201318359375 +22708.0,22662.0,4.56111181640625 +22708.0,22663.0,4.72186767578125 +22708.0,22664.0,4.67212548828125 +22708.0,22666.0,4.47468603515625 +22708.0,22667.0,4.40021826171875 +22708.0,22668.0,4.47650830078125 +22708.0,22669.0,4.676143798828125 +22708.0,22670.0,4.4574521484375 +22708.0,22675.0,0.6823760986328125 +22708.0,22676.0,0.8175388641357422 +22708.0,22677.0,0.8119794311523437 +22708.0,22678.0,0.6005405273437501 +22708.0,22679.0,0.624541748046875 +22708.0,22680.0,0.81036279296875 +22708.0,22681.0,0.497291015625 +22708.0,22682.0,0.884913330078125 +22708.0,22683.0,0.819124755859375 +22708.0,22684.0,0.68850390625 +22708.0,22685.0,1.70604541015625 +22708.0,22686.0,1.98869140625 +22708.0,22687.0,1.919828369140625 +22708.0,22688.0,1.7339111328125 +22708.0,22689.0,0.767824462890625 +22708.0,22690.0,0.44246240234375 +22708.0,22691.0,0.47387109375 +22708.0,22692.0,0.398584228515625 +22708.0,22693.0,0.4740498046875 +22708.0,22694.0,1.41610888671875 +22708.0,22695.0,0.9552715454101562 +22708.0,22696.0,0.941754150390625 +22708.0,22697.0,0.8166867980957031 +22708.0,22698.0,0.65741748046875 +22708.0,22699.0,0.7203447265625 +22708.0,22700.0,0.8221181640625 +22708.0,22701.0,0.8253919677734375 +22708.0,22702.0,1.0068369140625 +22708.0,22703.0,1.01957861328125 +22708.0,22704.0,0.3497652587890625 +22708.0,22705.0,0.33678955078125 +22708.0,22706.0,0.31172021484375 +22708.0,22707.0,0.2818759765625 +22708.0,22708.0,0.1668701171875 +22708.0,22709.0,0.2940810546875 +22708.0,22710.0,0.357528076171875 +22708.0,22711.0,1.80757763671875 +22708.0,22712.0,1.53201025390625 +22708.0,22713.0,1.4069912109375 +22708.0,22714.0,0.72797021484375 +22708.0,22715.0,0.87073583984375 +22708.0,22716.0,0.65941796875 +22708.0,22717.0,0.79643505859375 +22708.0,22718.0,0.74705517578125 +22708.0,22719.0,0.6632939453125 +22708.0,22720.0,1.95318994140625 +22708.0,22721.0,1.7277958984375 +22708.0,22722.0,1.76099755859375 +22708.0,22723.0,1.8050771484375 +22708.0,22724.0,1.2452451171875 +22708.0,22725.0,1.475162353515625 +22708.0,22726.0,1.5950244140625 +22708.0,22727.0,1.1499970703125 +22708.0,22728.0,1.98648974609375 +22708.0,22729.0,1.622241943359375 +22708.0,22730.0,1.865962890625 +22708.0,22731.0,1.4538857421875 +22708.0,22732.0,1.53455615234375 +22708.0,22733.0,3.6370634765625 +22708.0,22735.0,3.540814453125 +22708.0,22736.0,4.35959130859375 +22709.0,22639.0,4.340408874511719 +22709.0,22640.0,4.4271572265625 +22709.0,22641.0,3.89160546875 +22709.0,22642.0,4.016837646484375 +22709.0,22643.0,3.884326416015625 +22709.0,22644.0,4.21450927734375 +22709.0,22645.0,4.052815917968751 +22709.0,22646.0,4.111863403320313 +22709.0,22647.0,4.27077587890625 +22709.0,22648.0,4.168205108642578 +22709.0,22652.0,4.8340478515625 +22709.0,22658.0,4.6437978515625 +22709.0,22659.0,4.13267578125 +22709.0,22660.0,4.24803515625 +22709.0,22661.0,4.38022412109375 +22709.0,22662.0,4.43932275390625 +22709.0,22663.0,4.60007861328125 +22709.0,22664.0,4.55033642578125 +22709.0,22666.0,4.35289697265625 +22709.0,22667.0,4.27842919921875 +22709.0,22668.0,4.35471923828125 +22709.0,22669.0,4.554354736328125 +22709.0,22670.0,4.3356630859375 +22709.0,22675.0,0.6685870361328125 +22709.0,22676.0,0.8247498016357422 +22709.0,22677.0,0.8211903686523437 +22709.0,22678.0,0.58675146484375 +22709.0,22679.0,0.610752685546875 +22709.0,22680.0,0.73657373046875 +22709.0,22681.0,0.483501953125 +22709.0,22682.0,0.811124267578125 +22709.0,22683.0,0.745335693359375 +22709.0,22684.0,0.6147148437500001 +22709.0,22685.0,1.71725634765625 +22709.0,22686.0,1.99990234375 +22709.0,22687.0,1.846039306640625 +22709.0,22688.0,1.7451220703125 +22709.0,22689.0,0.754035400390625 +22709.0,22690.0,0.41567333984375 +22709.0,22691.0,0.60108203125 +22709.0,22692.0,0.525795166015625 +22709.0,22693.0,0.6012607421875 +22709.0,22694.0,1.42731982421875 +22709.0,22695.0,1.0544824829101562 +22709.0,22696.0,1.040965087890625 +22709.0,22697.0,0.8518977355957031 +22709.0,22698.0,0.75662841796875 +22709.0,22699.0,0.8195556640625 +22709.0,22700.0,0.9493291015625 +22709.0,22701.0,0.9246029052734376 +22709.0,22702.0,1.1060478515625 +22709.0,22703.0,0.92878955078125 +22709.0,22704.0,0.3229761962890625 +22709.0,22705.0,0.31000048828125 +22709.0,22706.0,0.16693115234375 +22709.0,22707.0,0.4090869140625 +22709.0,22708.0,0.2940810546875 +22709.0,22709.0,0.1492919921875 +22709.0,22710.0,0.443739013671875 +22709.0,22711.0,1.71678857421875 +22709.0,22712.0,1.65922119140625 +22709.0,22713.0,1.3162021484375 +22709.0,22714.0,0.6371811523437501 +22709.0,22715.0,0.74894677734375 +22709.0,22716.0,0.51462890625 +22709.0,22717.0,0.67464599609375 +22709.0,22718.0,0.6202661132812499 +22709.0,22719.0,0.5185048828125001 +22709.0,22720.0,1.84240087890625 +22709.0,22721.0,1.6060068359375 +22709.0,22722.0,1.63920849609375 +22709.0,22723.0,1.6832880859375 +22709.0,22724.0,1.1234560546875 +22709.0,22725.0,1.353373291015625 +22709.0,22726.0,1.4732353515625 +22709.0,22727.0,1.0592080078125 +22709.0,22728.0,1.86470068359375 +22709.0,22729.0,1.500452880859375 +22709.0,22730.0,1.744173828125 +22709.0,22731.0,1.3630966796875 +22709.0,22732.0,1.44376708984375 +22709.0,22733.0,3.5152744140625 +22709.0,22735.0,3.419025390625 +22709.0,22736.0,4.23780224609375 +22710.0,22639.0,4.278855895996093 +22710.0,22640.0,4.365604248046875 +22710.0,22641.0,3.830052490234375 +22710.0,22642.0,3.95528466796875 +22710.0,22643.0,3.8227734375 +22710.0,22644.0,4.152956298828125 +22710.0,22645.0,3.991262939453125 +22710.0,22646.0,4.050310424804687 +22710.0,22647.0,4.209222900390625 +22710.0,22648.0,4.106652130126953 +22710.0,22652.0,4.924494873046875 +22710.0,22658.0,4.734244873046875 +22710.0,22659.0,4.223122802734375 +22710.0,22660.0,4.338482177734375 +22710.0,22661.0,4.470671142578125 +22710.0,22662.0,4.529769775390625 +22710.0,22663.0,4.690525634765625 +22710.0,22664.0,4.640783447265625 +22710.0,22666.0,4.443343994140625 +22710.0,22667.0,4.368876220703125 +22710.0,22668.0,4.445166259765625 +22710.0,22669.0,4.6448017578125 +22710.0,22670.0,4.426110107421875 +22710.0,22675.0,0.4350340576171875 +22710.0,22676.0,0.5381968231201172 +22710.0,22677.0,0.5326373901367187 +22710.0,22678.0,0.465198486328125 +22710.0,22679.0,0.48919970703125 +22710.0,22680.0,0.675020751953125 +22710.0,22681.0,0.246948974609375 +22710.0,22682.0,0.7495712890625 +22710.0,22683.0,0.68378271484375 +22710.0,22684.0,0.553161865234375 +22710.0,22685.0,1.426703369140625 +22710.0,22686.0,1.709349365234375 +22710.0,22687.0,1.784486328125 +22710.0,22688.0,1.454569091796875 +22710.0,22689.0,0.632482421875 +22710.0,22690.0,0.633120361328125 +22710.0,22691.0,0.664529052734375 +22710.0,22692.0,0.5892421875 +22710.0,22693.0,0.545707763671875 +22710.0,22694.0,1.136766845703125 +22710.0,22695.0,1.1459295043945312 +22710.0,22696.0,1.132412109375 +22710.0,22697.0,1.007344757080078 +22710.0,22698.0,0.848075439453125 +22710.0,22699.0,0.911002685546875 +22710.0,22700.0,0.893776123046875 +22710.0,22701.0,1.0160499267578125 +22710.0,22702.0,1.197494873046875 +22710.0,22703.0,1.210236572265625 +22710.0,22704.0,0.5404232177734375 +22710.0,22705.0,0.527447509765625 +22710.0,22706.0,0.461378173828125 +22710.0,22707.0,0.353533935546875 +22710.0,22708.0,0.357528076171875 +22710.0,22709.0,0.443739013671875 +22710.0,22710.0,0.07818603515625 +22710.0,22711.0,1.998235595703125 +22710.0,22712.0,1.603668212890625 +22710.0,22713.0,1.597649169921875 +22710.0,22714.0,0.918628173828125 +22710.0,22715.0,1.043393798828125 +22710.0,22716.0,0.809075927734375 +22710.0,22717.0,0.969093017578125 +22710.0,22718.0,0.914713134765625 +22710.0,22719.0,0.812951904296875 +22710.0,22720.0,2.077847900390625 +22710.0,22721.0,1.841453857421875 +22710.0,22722.0,1.815655517578125 +22710.0,22723.0,1.859735107421875 +22710.0,22724.0,1.417903076171875 +22710.0,22725.0,1.5888203125 +22710.0,22726.0,1.649682373046875 +22710.0,22727.0,1.340655029296875 +22710.0,22728.0,2.100147705078125 +22710.0,22729.0,1.73589990234375 +22710.0,22730.0,1.937620849609375 +22710.0,22731.0,1.644543701171875 +22710.0,22732.0,1.725214111328125 +22710.0,22733.0,3.647721435546875 +22710.0,22735.0,3.551472412109375 +22710.0,22736.0,4.370249267578125 +22711.0,22639.0,4.701905456542969 +22711.0,22640.0,4.78765380859375 +22711.0,22641.0,4.09910205078125 +22711.0,22642.0,4.224334228515625 +22711.0,22643.0,4.205822998046875 +22711.0,22644.0,4.422005859375 +22711.0,22645.0,4.4863125 +22711.0,22646.0,4.3193599853515625 +22711.0,22647.0,4.6632724609375 +22711.0,22648.0,4.560701690673828 +22711.0,22652.0,4.99054443359375 +22711.0,22658.0,4.71229443359375 +22711.0,22659.0,4.29517236328125 +22711.0,22660.0,4.41053173828125 +22711.0,22661.0,4.542720703125 +22711.0,22662.0,4.6018193359375 +22711.0,22663.0,4.7625751953125 +22711.0,22664.0,4.7128330078125 +22711.0,22666.0,4.5153935546875 +22711.0,22667.0,4.37692578125 +22711.0,22668.0,4.5172158203125 +22711.0,22669.0,4.652851318359375 +22711.0,22670.0,4.43415966796875 +22711.0,22675.0,2.2360836181640624 +22711.0,22676.0,2.392246383666992 +22711.0,22677.0,2.388686950683594 +22711.0,22678.0,2.060248046875 +22711.0,22679.0,2.022249267578125 +22711.0,22680.0,2.0880703125 +22711.0,22681.0,2.05099853515625 +22711.0,22682.0,2.1626208496093757 +22711.0,22683.0,2.096832275390625 +22711.0,22684.0,1.96621142578125 +22711.0,22685.0,3.2457529296875 +22711.0,22686.0,3.52839892578125 +22711.0,22687.0,3.197535888671875 +22711.0,22688.0,3.27361865234375 +22711.0,22689.0,2.227531982421875 +22711.0,22690.0,1.579169921875 +22711.0,22691.0,1.63257861328125 +22711.0,22692.0,1.557291748046875 +22711.0,22693.0,1.85275732421875 +22711.0,22694.0,2.36181640625 +22711.0,22695.0,1.4149790649414062 +22711.0,22696.0,1.401461669921875 +22711.0,22697.0,1.181394317626953 +22711.0,22698.0,1.320125 +22711.0,22699.0,1.38305224609375 +22711.0,22700.0,1.69482568359375 +22711.0,22701.0,1.3720994873046874 +22711.0,22702.0,1.35654443359375 +22711.0,22703.0,0.9322861328125 +22711.0,22704.0,1.4864727783203124 +22711.0,22705.0,1.5974970703125 +22711.0,22706.0,1.734427734375 +22711.0,22707.0,1.91058349609375 +22711.0,22708.0,1.80757763671875 +22711.0,22709.0,1.71678857421875 +22711.0,22710.0,1.998235595703125 +22711.0,22711.0,0.34228515625 +22711.0,22712.0,1.8217177734375 +22711.0,22713.0,0.77369873046875 +22711.0,22714.0,1.326677734375 +22711.0,22715.0,1.607443359375 +22711.0,22716.0,1.76112548828125 +22711.0,22717.0,1.665142578125 +22711.0,22718.0,1.7407626953125 +22711.0,22719.0,1.80700146484375 +22711.0,22720.0,1.4838974609375 +22711.0,22721.0,1.50950341796875 +22711.0,22722.0,1.562705078125 +22711.0,22723.0,1.60878466796875 +22711.0,22724.0,1.77195263671875 +22711.0,22725.0,1.650869873046875 +22711.0,22726.0,1.76073193359375 +22711.0,22727.0,0.83470458984375 +22711.0,22728.0,1.614197265625 +22711.0,22729.0,1.391949462890625 +22711.0,22730.0,1.49367041015625 +22711.0,22731.0,0.98459326171875 +22711.0,22732.0,0.471263671875 +22711.0,22733.0,3.21077099609375 +22711.0,22734.0,4.35094140625 +22711.0,22735.0,3.11452197265625 +22711.0,22736.0,3.933298828125 +22712.0,22641.0,4.58253466796875 +22712.0,22642.0,4.707766845703125 +22712.0,22643.0,4.689255615234375 +22712.0,22644.0,4.9054384765625 +22712.0,22645.0,4.9697451171875 +22712.0,22646.0,4.802792602539062 +22712.0,22659.0,4.77860498046875 +22712.0,22660.0,4.89396435546875 +22712.0,22666.0,4.998826171875 +22712.0,22667.0,4.8603583984375 +22712.0,22670.0,4.91759228515625 +22712.0,22675.0,1.8315162353515624 +22712.0,22676.0,1.9346790008544923 +22712.0,22677.0,1.9031195678710937 +22712.0,22678.0,1.9656806640625 +22712.0,22679.0,1.989681884765625 +22712.0,22680.0,2.1755029296875 +22712.0,22681.0,1.64343115234375 +22712.0,22682.0,2.250053466796875 +22712.0,22683.0,2.184264892578125 +22712.0,22684.0,2.0536440429687497 +22712.0,22685.0,2.529185546875 +22712.0,22686.0,2.81183154296875 +22712.0,22687.0,2.903968505859375 +22712.0,22688.0,2.55705126953125 +22712.0,22689.0,2.132964599609375 +22712.0,22690.0,1.5256025390625 +22712.0,22691.0,1.29001123046875 +22712.0,22692.0,1.214724365234375 +22712.0,22693.0,1.29318994140625 +22712.0,22694.0,1.3712490234375 +22712.0,22695.0,1.0444116821289062 +22712.0,22696.0,1.030894287109375 +22712.0,22697.0,1.293826934814453 +22712.0,22698.0,1.2505576171875 +22712.0,22699.0,1.31348486328125 +22712.0,22700.0,0.97625830078125 +22712.0,22701.0,1.1885321044921875 +22712.0,22702.0,0.98597705078125 +22712.0,22703.0,1.24171875 +22712.0,22704.0,1.4329053955078126 +22712.0,22705.0,1.5409296875 +22712.0,22706.0,1.6768603515625 +22712.0,22707.0,1.47901611328125 +22712.0,22708.0,1.53201025390625 +22712.0,22709.0,1.65922119140625 +22712.0,22710.0,1.603668212890625 +22712.0,22711.0,1.8217177734375 +22712.0,22712.0,0.129150390625 +22712.0,22713.0,1.42113134765625 +22712.0,22714.0,1.5321103515625 +22712.0,22715.0,1.8638759765625 +22712.0,22716.0,1.97155810546875 +22712.0,22717.0,1.8875751953125 +22712.0,22718.0,1.9511953125 +22712.0,22719.0,1.99343408203125 +22712.0,22720.0,1.967330078125 +22712.0,22721.0,1.99293603515625 +22712.0,22722.0,2.0461376953125 +22712.0,22723.0,2.09221728515625 +22712.0,22724.0,2.04838525390625 +22712.0,22725.0,2.134302490234375 +22712.0,22726.0,2.24416455078125 +22712.0,22727.0,1.16413720703125 +22712.0,22728.0,2.0976298828125 +22712.0,22729.0,1.875382080078125 +22712.0,22730.0,1.97710302734375 +22712.0,22731.0,1.46802587890625 +22712.0,22732.0,1.5486962890625 +22712.0,22733.0,3.90420361328125 +22712.0,22735.0,3.80795458984375 +22712.0,22736.0,4.6267314453125 +22713.0,22639.0,4.043319030761719 +22713.0,22640.0,4.1290673828125 +22713.0,22641.0,3.440515625 +22713.0,22642.0,3.565747802734375 +22713.0,22643.0,3.547236572265625 +22713.0,22644.0,3.76341943359375 +22713.0,22645.0,3.82772607421875 +22713.0,22646.0,3.6607735595703126 +22713.0,22647.0,4.00468603515625 +22713.0,22648.0,3.9021152648925774 +22713.0,22652.0,4.3379580078125 +22713.0,22653.0,4.77568505859375 +22713.0,22654.0,4.79502294921875 +22713.0,22655.0,4.8385009765625 +22713.0,22658.0,4.1477080078125 +22713.0,22659.0,3.6365859375 +22713.0,22660.0,3.7519453125 +22713.0,22661.0,3.88413427734375 +22713.0,22662.0,3.94323291015625 +22713.0,22663.0,4.1039887695312505 +22713.0,22664.0,4.05424658203125 +22713.0,22665.0,4.69814013671875 +22713.0,22666.0,3.85680712890625 +22713.0,22667.0,3.71833935546875 +22713.0,22668.0,3.85862939453125 +22713.0,22669.0,3.994264892578125 +22713.0,22670.0,3.7755732421875 +22713.0,22675.0,1.8354971923828125 +22713.0,22676.0,1.991659957885742 +22713.0,22677.0,1.988100524902344 +22713.0,22678.0,1.65966162109375 +22713.0,22679.0,1.621662841796875 +22713.0,22680.0,1.68748388671875 +22713.0,22681.0,1.650412109375 +22713.0,22682.0,1.742034423828125 +22713.0,22683.0,1.696245849609375 +22713.0,22684.0,1.565625 +22713.0,22685.0,2.84516650390625 +22713.0,22686.0,3.1278125 +22713.0,22687.0,2.796949462890625 +22713.0,22688.0,2.8730322265625 +22713.0,22689.0,1.826945556640625 +22713.0,22690.0,1.17858349609375 +22713.0,22691.0,1.2319921875 +22713.0,22692.0,1.156705322265625 +22713.0,22693.0,1.4521708984375 +22713.0,22694.0,1.96122998046875 +22713.0,22695.0,1.0143926391601563 +22713.0,22696.0,1.000875244140625 +22713.0,22697.0,0.7808078918457031 +22713.0,22698.0,0.91953857421875 +22713.0,22699.0,0.9824658203125 +22713.0,22700.0,1.2942392578125 +22713.0,22701.0,0.9715130615234376 +22713.0,22702.0,0.9559580078125 +22713.0,22703.0,0.53169970703125 +22713.0,22704.0,1.0858863525390623 +22713.0,22705.0,1.19691064453125 +22713.0,22706.0,1.33384130859375 +22713.0,22707.0,1.5099970703125 +22713.0,22708.0,1.4069912109375 +22713.0,22709.0,1.3162021484375 +22713.0,22710.0,1.597649169921875 +22713.0,22711.0,0.77369873046875 +22713.0,22712.0,1.42113134765625 +22713.0,22713.0,0.1151123046875 +22713.0,22714.0,0.92609130859375 +22713.0,22715.0,1.20685693359375 +22713.0,22716.0,1.3605390625 +22713.0,22717.0,1.26455615234375 +22713.0,22718.0,1.34017626953125 +22713.0,22719.0,1.4064150390625 +22713.0,22720.0,0.82531103515625 +22713.0,22721.0,0.8509169921875 +22713.0,22722.0,0.90411865234375 +22713.0,22723.0,0.9501982421875 +22713.0,22724.0,1.3713662109375 +22713.0,22725.0,0.992283447265625 +22713.0,22726.0,1.1021455078125 +22713.0,22727.0,0.4341181640625 +22713.0,22728.0,0.95561083984375 +22713.0,22729.0,0.733363037109375 +22713.0,22730.0,0.835083984375 +22713.0,22731.0,0.3260068359375 +22713.0,22732.0,0.50067724609375 +22713.0,22733.0,2.7621845703125 +22713.0,22734.0,4.63435498046875 +22713.0,22735.0,2.665935546875 +22713.0,22736.0,3.48471240234375 +22714.0,22639.0,4.195298034667969 +22714.0,22640.0,4.28104638671875 +22714.0,22641.0,3.59249462890625 +22714.0,22642.0,3.717726806640625 +22714.0,22643.0,3.699215576171875 +22714.0,22644.0,3.9153984375 +22714.0,22645.0,3.979705078125 +22714.0,22646.0,3.8127525634765616 +22714.0,22647.0,4.1566650390625 +22714.0,22648.0,4.054094268798828 +22714.0,22652.0,4.48993701171875 +22714.0,22653.0,4.9276640625 +22714.0,22654.0,4.947001953125 +22714.0,22658.0,4.29968701171875 +22714.0,22659.0,3.78856494140625 +22714.0,22660.0,3.90392431640625 +22714.0,22661.0,4.03611328125 +22714.0,22662.0,4.095211914062499 +22714.0,22663.0,4.2559677734375 +22714.0,22664.0,4.2062255859375 +22714.0,22665.0,4.850119140625 +22714.0,22666.0,4.008786132812499 +22714.0,22667.0,3.934318359375 +22714.0,22668.0,4.010608398437499 +22714.0,22669.0,4.210243896484375 +22714.0,22670.0,3.99155224609375 +22714.0,22675.0,1.1564761962890624 +22714.0,22676.0,1.3126389617919922 +22714.0,22677.0,1.3090795288085937 +22714.0,22678.0,0.980640625 +22714.0,22679.0,0.942641845703125 +22714.0,22680.0,1.0084628906250002 +22714.0,22681.0,0.97139111328125 +22714.0,22682.0,1.083013427734375 +22714.0,22683.0,1.017224853515625 +22714.0,22684.0,0.88660400390625 +22714.0,22685.0,2.1661455078125 +22714.0,22686.0,2.44879150390625 +22714.0,22687.0,2.117928466796875 +22714.0,22688.0,2.19401123046875 +22714.0,22689.0,1.1479245605468749 +22714.0,22690.0,0.4995625 +22714.0,22691.0,0.5529711914062501 +22714.0,22692.0,0.477684326171875 +22714.0,22693.0,0.77314990234375 +22714.0,22694.0,1.915208984375 +22714.0,22695.0,0.6643716430664063 +22714.0,22696.0,0.650854248046875 +22714.0,22697.0,0.4617868957519531 +22714.0,22698.0,0.3665175781249999 +22714.0,22699.0,0.4294448242187499 +22714.0,22700.0,0.82221826171875 +22714.0,22701.0,0.5344920654296875 +22714.0,22702.0,0.71593701171875 +22714.0,22703.0,0.5386787109375 +22714.0,22704.0,0.4068653564453125 +22714.0,22705.0,0.5178896484375 +22714.0,22706.0,0.6548203125000001 +22714.0,22707.0,0.83097607421875 +22714.0,22708.0,0.72797021484375 +22714.0,22709.0,0.6371811523437501 +22714.0,22710.0,0.918628173828125 +22714.0,22711.0,1.326677734375 +22714.0,22712.0,1.5321103515625 +22714.0,22713.0,0.92609130859375 +22714.0,22714.0,0.2470703125 +22714.0,22715.0,0.6148359375 +22714.0,22716.0,0.76151806640625 +22714.0,22717.0,0.66553515625 +22714.0,22718.0,0.7411552734375 +22714.0,22719.0,0.79039404296875 +22714.0,22720.0,1.4722900390625 +22714.0,22721.0,1.26189599609375 +22714.0,22722.0,1.29509765625 +22714.0,22723.0,1.33917724609375 +22714.0,22724.0,0.77934521484375 +22714.0,22725.0,1.009262451171875 +22714.0,22726.0,1.12912451171875 +22714.0,22727.0,0.6690971679687501 +22714.0,22728.0,1.52058984375 +22714.0,22729.0,1.156342041015625 +22714.0,22730.0,1.40006298828125 +22714.0,22731.0,0.97298583984375 +22714.0,22732.0,1.05365625 +22714.0,22733.0,3.17116357421875 +22714.0,22735.0,3.07491455078125 +22714.0,22736.0,3.89369140625 +22715.0,22635.0,4.9959921875 +22715.0,22639.0,4.057063659667969 +22715.0,22640.0,4.14281201171875 +22715.0,22641.0,3.45426025390625 +22715.0,22642.0,3.579492431640625 +22715.0,22643.0,3.560981201171875 +22715.0,22644.0,3.7771640625 +22715.0,22645.0,3.841470703125 +22715.0,22646.0,3.6745181884765614 +22715.0,22647.0,4.0184306640625 +22715.0,22648.0,3.915859893798828 +22715.0,22650.0,4.89847119140625 +22715.0,22652.0,4.35170263671875 +22715.0,22653.0,4.7894296875 +22715.0,22654.0,4.808767578125 +22715.0,22655.0,4.85224560546875 +22715.0,22658.0,4.161452636718749 +22715.0,22659.0,3.65033056640625 +22715.0,22660.0,3.76568994140625 +22715.0,22661.0,3.89787890625 +22715.0,22662.0,3.9569775390625 +22715.0,22663.0,4.1177333984375 +22715.0,22664.0,4.0679912109375 +22715.0,22665.0,4.711884765625 +22715.0,22666.0,3.8705517578125 +22715.0,22667.0,3.796083984375 +22715.0,22668.0,3.8723740234375 +22715.0,22669.0,4.072009521484375 +22715.0,22670.0,3.85331787109375 +22715.0,22675.0,1.2682418212890625 +22715.0,22676.0,1.424404586791992 +22715.0,22677.0,1.4208451538085938 +22715.0,22678.0,1.09240625 +22715.0,22679.0,1.054407470703125 +22715.0,22680.0,1.120228515625 +22715.0,22681.0,1.08315673828125 +22715.0,22682.0,1.194779052734375 +22715.0,22683.0,1.1289904785156248 +22715.0,22684.0,0.99836962890625 +22715.0,22685.0,2.2779111328125 +22715.0,22686.0,2.56055712890625 +22715.0,22687.0,2.229694091796875 +22715.0,22688.0,2.30577685546875 +22715.0,22689.0,1.259690185546875 +22715.0,22690.0,0.642328125 +22715.0,22691.0,0.79273681640625 +22715.0,22692.0,0.717449951171875 +22715.0,22693.0,0.91591552734375 +22715.0,22694.0,2.0269746093750003 +22715.0,22695.0,0.9951372680664062 +22715.0,22696.0,0.981619873046875 +22715.0,22697.0,0.7425525207519531 +22715.0,22698.0,0.697283203125 +22715.0,22699.0,0.76021044921875 +22715.0,22700.0,1.15398388671875 +22715.0,22701.0,0.8652576904296875 +22715.0,22702.0,1.04670263671875 +22715.0,22703.0,0.8194443359375 +22715.0,22704.0,0.5496309814453125 +22715.0,22705.0,0.6606552734375 +22715.0,22706.0,0.7665859375 +22715.0,22707.0,0.97374169921875 +22715.0,22708.0,0.87073583984375 +22715.0,22709.0,0.74894677734375 +22715.0,22710.0,1.043393798828125 +22715.0,22711.0,1.607443359375 +22715.0,22712.0,1.8638759765625 +22715.0,22713.0,1.20685693359375 +22715.0,22714.0,0.6148359375 +22715.0,22715.0,0.2666015625 +22715.0,22716.0,0.42028369140625 +22715.0,22717.0,0.32430078125 +22715.0,22718.0,0.3999208984375 +22715.0,22719.0,0.4661596679687499 +22715.0,22720.0,1.3600556640625 +22715.0,22721.0,1.12366162109375 +22715.0,22722.0,1.1568632812500002 +22715.0,22723.0,1.20094287109375 +22715.0,22724.0,0.64111083984375 +22715.0,22725.0,0.871028076171875 +22715.0,22726.0,0.99089013671875 +22715.0,22727.0,0.94986279296875 +22715.0,22728.0,1.38235546875 +22715.0,22729.0,1.018107666015625 +22715.0,22730.0,1.26182861328125 +22715.0,22731.0,1.25375146484375 +22715.0,22732.0,1.334421875 +22715.0,22733.0,3.03292919921875 +22715.0,22735.0,2.93668017578125 +22715.0,22736.0,3.75545703125 +22716.0,22639.0,4.2107457885742186 +22716.0,22640.0,4.296494140625 +22716.0,22641.0,3.6079423828125 +22716.0,22642.0,3.733174560546875 +22716.0,22643.0,3.714663330078125 +22716.0,22644.0,3.93084619140625 +22716.0,22645.0,3.99515283203125 +22716.0,22646.0,3.828200317382812 +22716.0,22647.0,4.17211279296875 +22716.0,22648.0,4.069542022705078 +22716.0,22652.0,4.505384765625 +22716.0,22653.0,4.94311181640625 +22716.0,22654.0,4.96244970703125 +22716.0,22658.0,4.315134765625 +22716.0,22659.0,3.8040126953125 +22716.0,22660.0,3.9193720703125 +22716.0,22661.0,4.05156103515625 +22716.0,22662.0,4.110659667968751 +22716.0,22663.0,4.27141552734375 +22716.0,22664.0,4.22167333984375 +22716.0,22665.0,4.86556689453125 +22716.0,22666.0,4.024233886718751 +22716.0,22667.0,3.94976611328125 +22716.0,22668.0,4.026056152343751 +22716.0,22669.0,4.225691650390625 +22716.0,22670.0,4.007 +22716.0,22675.0,1.0339239501953124 +22716.0,22676.0,1.1900867156982422 +22716.0,22677.0,1.1865272827148436 +22716.0,22678.0,0.85808837890625 +22716.0,22679.0,0.820089599609375 +22716.0,22680.0,0.88591064453125 +22716.0,22681.0,0.8488388671875 +22716.0,22682.0,0.960461181640625 +22716.0,22683.0,0.894672607421875 +22716.0,22684.0,0.7640517578125 +22716.0,22685.0,2.04359326171875 +22716.0,22686.0,2.3262392578125 +22716.0,22687.0,1.995376220703125 +22716.0,22688.0,2.071458984375 +22716.0,22689.0,1.025372314453125 +22716.0,22690.0,0.66301025390625 +22716.0,22691.0,0.9004189453125 +22716.0,22692.0,0.825132080078125 +22716.0,22693.0,0.92559765625 +22716.0,22694.0,1.79265673828125 +22716.0,22695.0,1.1488193969726563 +22716.0,22696.0,1.135302001953125 +22716.0,22697.0,0.8962346496582031 +22716.0,22698.0,0.85096533203125 +22716.0,22699.0,0.913892578125 +22716.0,22700.0,1.261666015625 +22716.0,22701.0,1.0189398193359374 +22716.0,22702.0,1.200384765625 +22716.0,22703.0,0.97312646484375 +22716.0,22704.0,0.5703131103515625 +22716.0,22705.0,0.5573374023437501 +22716.0,22706.0,0.53226806640625 +22716.0,22707.0,0.774423828125 +22716.0,22708.0,0.65941796875 +22716.0,22709.0,0.51462890625 +22716.0,22710.0,0.809075927734375 +22716.0,22711.0,1.76112548828125 +22716.0,22712.0,1.97155810546875 +22716.0,22713.0,1.3605390625 +22716.0,22714.0,0.76151806640625 +22716.0,22715.0,0.42028369140625 +22716.0,22716.0,0.0899658203125 +22716.0,22717.0,0.34598291015625 +22716.0,22718.0,0.29160302734375 +22716.0,22719.0,0.231841796875 +22716.0,22720.0,1.51373779296875 +22716.0,22721.0,1.27734375 +22716.0,22722.0,1.31054541015625 +22716.0,22723.0,1.354625 +22716.0,22724.0,0.79479296875 +22716.0,22725.0,1.024710205078125 +22716.0,22726.0,1.144572265625 +22716.0,22727.0,1.103544921875 +22716.0,22728.0,1.53603759765625 +22716.0,22729.0,1.171789794921875 +22716.0,22730.0,1.4155107421875 +22716.0,22731.0,1.40743359375 +22716.0,22732.0,1.48810400390625 +22716.0,22733.0,3.186611328125 +22716.0,22735.0,3.0903623046875 +22716.0,22736.0,3.90913916015625 +22717.0,22639.0,4.114762878417968 +22717.0,22640.0,4.20051123046875 +22717.0,22641.0,3.51195947265625 +22717.0,22642.0,3.637191650390625 +22717.0,22643.0,3.618680419921875 +22717.0,22644.0,3.83486328125 +22717.0,22645.0,3.899169921875 +22717.0,22646.0,3.7322174072265626 +22717.0,22647.0,4.0761298828125 +22717.0,22648.0,3.973559112548828 +22717.0,22650.0,4.95617041015625 +22717.0,22652.0,4.40940185546875 +22717.0,22653.0,4.84712890625 +22717.0,22654.0,4.866466796875 +22717.0,22655.0,4.90994482421875 +22717.0,22658.0,4.21915185546875 +22717.0,22659.0,3.70802978515625 +22717.0,22660.0,3.82338916015625 +22717.0,22661.0,3.955578125 +22717.0,22662.0,4.0146767578125 +22717.0,22663.0,4.1754326171875 +22717.0,22664.0,4.1256904296875 +22717.0,22665.0,4.769583984375 +22717.0,22666.0,3.9282509765625 +22717.0,22667.0,3.853783203125 +22717.0,22668.0,3.9300732421875 +22717.0,22669.0,4.129708740234375 +22717.0,22670.0,3.91101708984375 +22717.0,22675.0,1.1939410400390624 +22717.0,22676.0,1.3501038055419925 +22717.0,22677.0,1.3465443725585935 +22717.0,22678.0,1.01810546875 +22717.0,22679.0,0.980106689453125 +22717.0,22680.0,1.045927734375 +22717.0,22681.0,1.00885595703125 +22717.0,22682.0,1.1204782714843748 +22717.0,22683.0,1.054689697265625 +22717.0,22684.0,0.92406884765625 +22717.0,22685.0,2.2036103515625003 +22717.0,22686.0,2.48625634765625 +22717.0,22687.0,2.155393310546875 +22717.0,22688.0,2.23147607421875 +22717.0,22689.0,1.185389404296875 +22717.0,22690.0,0.5680273437500001 +22717.0,22691.0,0.81643603515625 +22717.0,22692.0,0.741149169921875 +22717.0,22693.0,0.84161474609375 +22717.0,22694.0,1.952673828125 +22717.0,22695.0,1.0528364868164064 +22717.0,22696.0,1.0393190917968749 +22717.0,22697.0,0.8002517395019532 +22717.0,22698.0,0.754982421875 +22717.0,22699.0,0.81790966796875 +22717.0,22700.0,1.17768310546875 +22717.0,22701.0,0.9229569091796876 +22717.0,22702.0,1.10440185546875 +22717.0,22703.0,0.8771435546875 +22717.0,22704.0,0.4753302001953125 +22717.0,22705.0,0.5863544921875 +22717.0,22706.0,0.69228515625 +22717.0,22707.0,0.89944091796875 +22717.0,22708.0,0.79643505859375 +22717.0,22709.0,0.67464599609375 +22717.0,22710.0,0.969093017578125 +22717.0,22711.0,1.665142578125 +22717.0,22712.0,1.8875751953125 +22717.0,22713.0,1.26455615234375 +22717.0,22714.0,0.66553515625 +22717.0,22715.0,0.32430078125 +22717.0,22716.0,0.34598291015625 +22717.0,22717.0,0.25 +22717.0,22718.0,0.3256201171875 +22717.0,22719.0,0.39185888671875 +22717.0,22720.0,1.4177548828125 +22717.0,22721.0,1.1813608398437498 +22717.0,22722.0,1.2145625 +22717.0,22723.0,1.25864208984375 +22717.0,22724.0,0.69881005859375 +22717.0,22725.0,0.928727294921875 +22717.0,22726.0,1.04858935546875 +22717.0,22727.0,1.00756201171875 +22717.0,22728.0,1.4400546875 +22717.0,22729.0,1.075806884765625 +22717.0,22730.0,1.31952783203125 +22717.0,22731.0,1.31145068359375 +22717.0,22732.0,1.39212109375 +22717.0,22733.0,3.09062841796875 +22717.0,22735.0,2.99437939453125 +22717.0,22736.0,3.81315625 +22718.0,22639.0,4.190382995605469 +22718.0,22640.0,4.27613134765625 +22718.0,22641.0,3.58757958984375 +22718.0,22642.0,3.712811767578125 +22718.0,22643.0,3.694300537109375 +22718.0,22644.0,3.9104833984375 +22718.0,22645.0,3.9747900390625 +22718.0,22646.0,3.807837524414063 +22718.0,22647.0,4.15175 +22718.0,22648.0,4.049179229736328 +22718.0,22652.0,4.48502197265625 +22718.0,22653.0,4.9227490234375 +22718.0,22654.0,4.9420869140625 +22718.0,22655.0,4.98556494140625 +22718.0,22658.0,4.29477197265625 +22718.0,22659.0,3.78364990234375 +22718.0,22660.0,3.89900927734375 +22718.0,22661.0,4.0311982421875 +22718.0,22662.0,4.090296875 +22718.0,22663.0,4.251052734375 +22718.0,22664.0,4.201310546875 +22718.0,22665.0,4.8452041015625 +22718.0,22666.0,4.00387109375 +22718.0,22667.0,3.9294033203125 +22718.0,22668.0,4.005693359375 +22718.0,22669.0,4.205328857421875 +22718.0,22670.0,3.98663720703125 +22718.0,22675.0,1.1395611572265625 +22718.0,22676.0,1.295723922729492 +22718.0,22677.0,1.2921644897460938 +22718.0,22678.0,0.9637255859375 +22718.0,22679.0,0.925726806640625 +22718.0,22680.0,0.9915478515625 +22718.0,22681.0,0.95447607421875 +22718.0,22682.0,1.066098388671875 +22718.0,22683.0,1.000309814453125 +22718.0,22684.0,0.86968896484375 +22718.0,22685.0,2.14923046875 +22718.0,22686.0,2.43187646484375 +22718.0,22687.0,2.101013427734375 +22718.0,22688.0,2.17709619140625 +22718.0,22689.0,1.131009521484375 +22718.0,22690.0,0.6426474609375 +22718.0,22691.0,0.88005615234375 +22718.0,22692.0,0.804769287109375 +22718.0,22693.0,0.90523486328125 +22718.0,22694.0,1.8982939453125 +22718.0,22695.0,1.1284566040039063 +22718.0,22696.0,1.114939208984375 +22718.0,22697.0,0.8758718566894531 +22718.0,22698.0,0.8306025390625 +22718.0,22699.0,0.89352978515625 +22718.0,22700.0,1.24130322265625 +22718.0,22701.0,0.9985770263671876 +22718.0,22702.0,1.18002197265625 +22718.0,22703.0,0.952763671875 +22718.0,22704.0,0.5499503173828125 +22718.0,22705.0,0.5369746093750001 +22718.0,22706.0,0.6379052734374999 +22718.0,22707.0,0.86206103515625 +22718.0,22708.0,0.74705517578125 +22718.0,22709.0,0.6202661132812499 +22718.0,22710.0,0.914713134765625 +22718.0,22711.0,1.7407626953125 +22718.0,22712.0,1.9511953125 +22718.0,22713.0,1.34017626953125 +22718.0,22714.0,0.7411552734375 +22718.0,22715.0,0.3999208984375 +22718.0,22716.0,0.29160302734375 +22718.0,22717.0,0.3256201171875 +22718.0,22718.0,0.271240234375 +22718.0,22719.0,0.33747900390625 +22718.0,22720.0,1.493375 +22718.0,22721.0,1.25698095703125 +22718.0,22722.0,1.2901826171875 +22718.0,22723.0,1.33426220703125 +22718.0,22724.0,0.77443017578125 +22718.0,22725.0,1.004347412109375 +22718.0,22726.0,1.1242094726562502 +22718.0,22727.0,1.08318212890625 +22718.0,22728.0,1.5156748046875 +22718.0,22729.0,1.151427001953125 +22718.0,22730.0,1.39514794921875 +22718.0,22731.0,1.38707080078125 +22718.0,22732.0,1.4677412109375 +22718.0,22733.0,3.16624853515625 +22718.0,22735.0,3.06999951171875 +22718.0,22736.0,3.8887763671875 +22719.0,22639.0,4.256621765136718 +22719.0,22640.0,4.3423701171875 +22719.0,22641.0,3.653818359375 +22719.0,22642.0,3.779050537109375 +22719.0,22643.0,3.760539306640625 +22719.0,22644.0,3.97672216796875 +22719.0,22645.0,4.04102880859375 +22719.0,22646.0,3.8740762939453126 +22719.0,22647.0,4.21798876953125 +22719.0,22648.0,4.115417999267578 +22719.0,22652.0,4.5512607421875 +22719.0,22653.0,4.98898779296875 +22719.0,22658.0,4.3610107421875 +22719.0,22659.0,3.849888671875 +22719.0,22660.0,3.965248046875 +22719.0,22661.0,4.09743701171875 +22719.0,22662.0,4.15653564453125 +22719.0,22663.0,4.31729150390625 +22719.0,22664.0,4.26754931640625 +22719.0,22665.0,4.91144287109375 +22719.0,22666.0,4.07010986328125 +22719.0,22667.0,3.99564208984375 +22719.0,22668.0,4.07193212890625 +22719.0,22669.0,4.271567626953125 +22719.0,22670.0,4.0528759765625 +22719.0,22675.0,1.0377999267578124 +22719.0,22676.0,1.1939626922607425 +22719.0,22677.0,1.1904032592773437 +22719.0,22678.0,0.86196435546875 +22719.0,22679.0,0.823965576171875 +22719.0,22680.0,0.88978662109375 +22719.0,22681.0,0.85271484375 +22719.0,22682.0,0.964337158203125 +22719.0,22683.0,0.898548583984375 +22719.0,22684.0,0.767927734375 +22719.0,22685.0,2.0474692382812503 +22719.0,22686.0,2.330115234375 +22719.0,22687.0,1.999252197265625 +22719.0,22688.0,2.0753349609375 +22719.0,22689.0,1.0292482910156249 +22719.0,22690.0,0.68488623046875 +22719.0,22691.0,0.922294921875 +22719.0,22692.0,0.847008056640625 +22719.0,22693.0,0.9474736328125 +22719.0,22694.0,1.79653271484375 +22719.0,22695.0,1.1946953735351562 +22719.0,22696.0,1.181177978515625 +22719.0,22697.0,0.9421106262207032 +22719.0,22698.0,0.89684130859375 +22719.0,22699.0,0.9597685546875 +22719.0,22700.0,1.2835419921875 +22719.0,22701.0,1.0648157958984374 +22719.0,22702.0,1.2462607421875 +22719.0,22703.0,1.01900244140625 +22719.0,22704.0,0.5921890869140625 +22719.0,22705.0,0.57921337890625 +22719.0,22706.0,0.5361440429687501 +22719.0,22707.0,0.7782998046875 +22719.0,22708.0,0.6632939453125 +22719.0,22709.0,0.5185048828125001 +22719.0,22710.0,0.812951904296875 +22719.0,22711.0,1.80700146484375 +22719.0,22712.0,1.99343408203125 +22719.0,22713.0,1.4064150390625 +22719.0,22714.0,0.79039404296875 +22719.0,22715.0,0.4661596679687499 +22719.0,22716.0,0.231841796875 +22719.0,22717.0,0.39185888671875 +22719.0,22718.0,0.33747900390625 +22719.0,22719.0,0.2357177734375 +22719.0,22720.0,1.55961376953125 +22719.0,22721.0,1.3232197265625 +22719.0,22722.0,1.35642138671875 +22719.0,22723.0,1.4005009765625 +22719.0,22724.0,0.8406689453125 +22719.0,22725.0,1.070586181640625 +22719.0,22726.0,1.1904482421875 +22719.0,22727.0,1.1494208984375 +22719.0,22728.0,1.58191357421875 +22719.0,22729.0,1.217665771484375 +22719.0,22730.0,1.46138671875 +22719.0,22731.0,1.4533095703125 +22719.0,22732.0,1.53397998046875 +22719.0,22733.0,3.2324873046875 +22719.0,22735.0,3.13623828125 +22719.0,22736.0,3.95501513671875 +22720.0,22635.0,4.7784462890625 +22720.0,22639.0,3.8395177612304687 +22720.0,22640.0,3.92526611328125 +22720.0,22641.0,3.23671435546875 +22720.0,22642.0,3.361946533203125 +22720.0,22643.0,3.343435302734375 +22720.0,22644.0,3.5596181640625 +22720.0,22645.0,3.6239248046875 +22720.0,22646.0,3.4569722900390625 +22720.0,22647.0,3.800884765625 +22720.0,22648.0,3.698313995361328 +22720.0,22649.0,4.90670556640625 +22720.0,22650.0,4.68092529296875 +22720.0,22651.0,4.77836328125 +22720.0,22652.0,4.13415673828125 +22720.0,22653.0,4.5718837890625 +22720.0,22654.0,4.5912216796875 +22720.0,22655.0,4.63469970703125 +22720.0,22657.0,4.65921728515625 +22720.0,22658.0,3.94390673828125 +22720.0,22659.0,3.43278466796875 +22720.0,22660.0,3.54814404296875 +22720.0,22661.0,3.6803330078125 +22720.0,22662.0,3.739431640625 +22720.0,22663.0,3.9001875 +22720.0,22664.0,3.8504453125 +22720.0,22665.0,4.4943388671875 +22720.0,22666.0,3.653005859375 +22720.0,22667.0,3.5145380859375 +22720.0,22668.0,3.654828125 +22720.0,22669.0,3.790463623046875 +22720.0,22670.0,3.57177197265625 +22720.0,22674.0,4.92423583984375 +22720.0,22675.0,2.1876959228515624 +22720.0,22676.0,2.343858688354492 +22720.0,22677.0,2.3432992553710936 +22720.0,22678.0,2.0068603515625 +22720.0,22679.0,1.968861572265625 +22720.0,22680.0,1.9496826171875 +22720.0,22681.0,2.08161083984375 +22720.0,22682.0,1.538233154296875 +22720.0,22683.0,1.612444580078125 +22720.0,22684.0,1.91282373046875 +22720.0,22685.0,3.123365234375 +22720.0,22686.0,3.40601123046875 +22720.0,22687.0,3.059148193359375 +22720.0,22688.0,3.15123095703125 +22720.0,22689.0,2.105144287109375 +22720.0,22690.0,1.7247822265625 +22720.0,22691.0,1.77819091796875 +22720.0,22692.0,1.702904052734375 +22720.0,22693.0,1.99836962890625 +22720.0,22694.0,2.5074287109375 +22720.0,22695.0,1.5605913696289062 +22720.0,22696.0,1.547073974609375 +22720.0,22697.0,1.3270066223144532 +22720.0,22698.0,1.4657373046875 +22720.0,22699.0,1.52866455078125 +22720.0,22700.0,1.84043798828125 +22720.0,22701.0,1.5177117919921874 +22720.0,22702.0,1.50215673828125 +22720.0,22703.0,1.0778984375 +22720.0,22704.0,1.6320850830078124 +22720.0,22705.0,1.743109375 +22720.0,22706.0,1.8600400390625 +22720.0,22707.0,2.05619580078125 +22720.0,22708.0,1.95318994140625 +22720.0,22709.0,1.84240087890625 +22720.0,22710.0,2.077847900390625 +22720.0,22711.0,1.4838974609375 +22720.0,22712.0,1.967330078125 +22720.0,22713.0,0.82531103515625 +22720.0,22714.0,1.4722900390625 +22720.0,22715.0,1.3600556640625 +22720.0,22716.0,1.51373779296875 +22720.0,22717.0,1.4177548828125 +22720.0,22718.0,1.493375 +22720.0,22719.0,1.55961376953125 +22720.0,22720.0,0.197509765625 +22720.0,22721.0,0.6471157226562501 +22720.0,22722.0,0.7003173828125 +22720.0,22723.0,0.74639697265625 +22720.0,22724.0,1.25656494140625 +22720.0,22725.0,0.788482177734375 +22720.0,22726.0,0.89834423828125 +22720.0,22727.0,0.98031689453125 +22720.0,22728.0,0.7518095703125 +22720.0,22729.0,0.529561767578125 +22720.0,22730.0,0.63128271484375 +22720.0,22731.0,0.74820556640625 +22720.0,22732.0,1.2108759765625 +22720.0,22733.0,2.55838330078125 +22720.0,22735.0,2.46213427734375 +22720.0,22736.0,3.2809111328125 +22721.0,22635.0,4.46905224609375 +22721.0,22639.0,3.5301237182617187 +22721.0,22640.0,3.6158720703125 +22721.0,22641.0,2.9273203125 +22721.0,22642.0,3.052552490234375 +22721.0,22643.0,3.034041259765625 +22721.0,22644.0,3.25022412109375 +22721.0,22645.0,3.31453076171875 +22721.0,22646.0,3.1475782470703124 +22721.0,22647.0,3.49149072265625 +22721.0,22648.0,3.388919952392578 +22721.0,22649.0,4.5973115234375 +22721.0,22650.0,4.37153125 +22721.0,22651.0,4.46896923828125 +22721.0,22652.0,3.8247626953125 +22721.0,22653.0,4.26248974609375 +22721.0,22654.0,4.28182763671875 +22721.0,22655.0,4.3253056640625 +22721.0,22657.0,4.3498232421875 +22721.0,22658.0,3.6345126953125 +22721.0,22659.0,3.123390625 +22721.0,22660.0,3.23875 +22721.0,22661.0,3.37093896484375 +22721.0,22662.0,3.43003759765625 +22721.0,22663.0,3.59079345703125 +22721.0,22664.0,3.54105126953125 +22721.0,22665.0,4.18494482421875 +22721.0,22666.0,3.34361181640625 +22721.0,22667.0,3.20514404296875 +22721.0,22668.0,3.34543408203125 +22721.0,22669.0,3.481069580078125 +22721.0,22670.0,3.2623779296875 +22721.0,22671.0,4.82882861328125 +22721.0,22673.0,4.73353173828125 +22721.0,22674.0,4.614841796875 +22721.0,22675.0,1.9513018798828128 +22721.0,22676.0,2.1074646453857424 +22721.0,22677.0,2.106905212402344 +22721.0,22678.0,1.77046630859375 +22721.0,22679.0,1.732467529296875 +22721.0,22680.0,1.71328857421875 +22721.0,22681.0,1.845216796875 +22721.0,22682.0,1.301839111328125 +22721.0,22683.0,1.376050537109375 +22721.0,22684.0,1.6764296875 +22721.0,22685.0,2.88697119140625 +22721.0,22686.0,3.1696171875 +22721.0,22687.0,2.822754150390625 +22721.0,22688.0,2.9148369140625 +22721.0,22689.0,1.868750244140625 +22721.0,22690.0,1.49938818359375 +22721.0,22691.0,1.558796875 +22721.0,22692.0,1.483510009765625 +22721.0,22693.0,1.7729755859375 +22721.0,22694.0,2.53303466796875 +22721.0,22695.0,1.5861973266601563 +22721.0,22696.0,1.572679931640625 +22721.0,22697.0,1.3526125793457031 +22721.0,22698.0,1.34434326171875 +22721.0,22699.0,1.4072705078125 +22721.0,22700.0,1.8220439453125 +22721.0,22701.0,1.5123177490234374 +22721.0,22702.0,1.5277626953125 +22721.0,22703.0,1.10350439453125 +22721.0,22704.0,1.4066910400390624 +22721.0,22705.0,1.51771533203125 +22721.0,22706.0,1.62364599609375 +22721.0,22707.0,1.8308017578125 +22721.0,22708.0,1.7277958984375 +22721.0,22709.0,1.6060068359375 +22721.0,22710.0,1.841453857421875 +22721.0,22711.0,1.50950341796875 +22721.0,22712.0,1.99293603515625 +22721.0,22713.0,0.8509169921875 +22721.0,22714.0,1.26189599609375 +22721.0,22715.0,1.12366162109375 +22721.0,22716.0,1.27734375 +22721.0,22717.0,1.1813608398437498 +22721.0,22718.0,1.25698095703125 +22721.0,22719.0,1.3232197265625 +22721.0,22720.0,0.6471157226562501 +22721.0,22721.0,0.2147216796875 +22721.0,22722.0,0.26792333984375 +22721.0,22723.0,0.3140029296875 +22721.0,22724.0,1.0201708984375 +22721.0,22725.0,0.356088134765625 +22721.0,22726.0,0.4659501953125 +22721.0,22727.0,1.0059228515625 +22721.0,22728.0,0.56441552734375 +22721.0,22729.0,0.209167724609375 +22721.0,22730.0,0.389888671875 +22721.0,22731.0,0.7738115234375 +22721.0,22732.0,1.23648193359375 +22721.0,22733.0,2.2489892578125 +22721.0,22735.0,2.152740234375 +22721.0,22736.0,2.97151708984375 +22722.0,22635.0,4.40425390625 +22722.0,22639.0,3.465325378417969 +22722.0,22640.0,3.55107373046875 +22722.0,22641.0,2.86252197265625 +22722.0,22642.0,2.987754150390625 +22722.0,22643.0,2.969242919921875 +22722.0,22644.0,3.18542578125 +22722.0,22645.0,3.249732421875 +22722.0,22646.0,3.0827799072265627 +22722.0,22647.0,3.4266923828125 +22722.0,22648.0,3.324121612548828 +22722.0,22649.0,4.53251318359375 +22722.0,22650.0,4.30673291015625 +22722.0,22651.0,4.4041708984375 +22722.0,22652.0,3.75996435546875 +22722.0,22653.0,4.19769140625 +22722.0,22654.0,4.217029296875 +22722.0,22655.0,4.26050732421875 +22722.0,22656.0,4.955033325195313 +22722.0,22657.0,4.28502490234375 +22722.0,22658.0,3.56971435546875 +22722.0,22659.0,3.05859228515625 +22722.0,22660.0,3.17395166015625 +22722.0,22661.0,3.306140625 +22722.0,22662.0,3.3652392578125 +22722.0,22663.0,3.5259951171875 +22722.0,22664.0,3.4762529296875 +22722.0,22665.0,4.120146484375001 +22722.0,22666.0,3.2788134765625 +22722.0,22667.0,3.140345703125 +22722.0,22668.0,3.2806357421875 +22722.0,22669.0,3.416271240234375 +22722.0,22670.0,3.19757958984375 +22722.0,22671.0,4.7640302734375 +22722.0,22673.0,4.6687333984375 +22722.0,22674.0,4.55004345703125 +22722.0,22675.0,1.9255035400390623 +22722.0,22676.0,2.081666305541992 +22722.0,22677.0,2.081106872558593 +22722.0,22678.0,1.74466796875 +22722.0,22679.0,1.706669189453125 +22722.0,22680.0,1.673490234375 +22722.0,22681.0,1.81941845703125 +22722.0,22682.0,1.276040771484375 +22722.0,22683.0,1.350252197265625 +22722.0,22684.0,1.65063134765625 +22722.0,22685.0,2.8471728515625 +22722.0,22686.0,3.12981884765625 +22722.0,22687.0,2.782955810546875 +22722.0,22688.0,2.87503857421875 +22722.0,22689.0,1.828951904296875 +22722.0,22690.0,1.53258984375 +22722.0,22691.0,1.59199853515625 +22722.0,22692.0,1.516711669921875 +22722.0,22693.0,1.80617724609375 +22722.0,22694.0,2.586236328125 +22722.0,22695.0,1.6393989868164065 +22722.0,22696.0,1.625881591796875 +22722.0,22697.0,1.405814239501953 +22722.0,22698.0,1.377544921875 +22722.0,22699.0,1.44047216796875 +22722.0,22700.0,1.85524560546875 +22722.0,22701.0,1.5455194091796876 +22722.0,22702.0,1.58096435546875 +22722.0,22703.0,1.1567060546875 +22722.0,22704.0,1.4398927001953126 +22722.0,22705.0,1.5509169921875 +22722.0,22706.0,1.65684765625 +22722.0,22707.0,1.86400341796875 +22722.0,22708.0,1.76099755859375 +22722.0,22709.0,1.63920849609375 +22722.0,22710.0,1.815655517578125 +22722.0,22711.0,1.562705078125 +22722.0,22712.0,2.0461376953125 +22722.0,22713.0,0.90411865234375 +22722.0,22714.0,1.29509765625 +22722.0,22715.0,1.1568632812500002 +22722.0,22716.0,1.31054541015625 +22722.0,22717.0,1.2145625 +22722.0,22718.0,1.2901826171875 +22722.0,22719.0,1.35642138671875 +22722.0,22720.0,0.7003173828125 +22722.0,22721.0,0.26792333984375 +22722.0,22722.0,0.203125 +22722.0,22723.0,0.24920458984375 +22722.0,22724.0,1.05337255859375 +22722.0,22725.0,0.395289794921875 +22722.0,22726.0,0.40115185546875 +22722.0,22727.0,1.05912451171875 +22722.0,22728.0,0.4996171875 +22722.0,22729.0,0.262369384765625 +22722.0,22730.0,0.32509033203125 +22722.0,22731.0,0.82701318359375 +22722.0,22732.0,1.28968359375 +22722.0,22733.0,2.18419091796875 +22722.0,22735.0,2.08794189453125 +22722.0,22736.0,2.90671875 +22723.0,22635.0,4.45033349609375 +22723.0,22639.0,3.5114049682617186 +22723.0,22640.0,3.5971533203125 +22723.0,22641.0,2.9086015625 +22723.0,22642.0,3.033833740234375 +22723.0,22643.0,3.015322509765625 +22723.0,22644.0,3.23150537109375 +22723.0,22645.0,3.29581201171875 +22723.0,22646.0,3.1288594970703123 +22723.0,22647.0,3.47277197265625 +22723.0,22648.0,3.370201202392578 +22723.0,22649.0,4.5785927734375 +22723.0,22650.0,4.3528125 +22723.0,22651.0,4.45025048828125 +22723.0,22652.0,3.8060439453125 +22723.0,22653.0,4.24377099609375 +22723.0,22654.0,4.26310888671875 +22723.0,22655.0,4.3065869140625 +22723.0,22657.0,4.3311044921875 +22723.0,22658.0,3.6157939453125 +22723.0,22659.0,3.104671875 +22723.0,22660.0,3.22003125 +22723.0,22661.0,3.35222021484375 +22723.0,22662.0,3.41131884765625 +22723.0,22663.0,3.57207470703125 +22723.0,22664.0,3.52233251953125 +22723.0,22665.0,4.16622607421875 +22723.0,22666.0,3.32489306640625 +22723.0,22667.0,3.18642529296875 +22723.0,22668.0,3.32671533203125 +22723.0,22669.0,3.462350830078125 +22723.0,22670.0,3.2436591796875 +22723.0,22671.0,4.81010986328125 +22723.0,22673.0,4.71481298828125 +22723.0,22674.0,4.596123046875 +22723.0,22675.0,1.9695831298828128 +22723.0,22676.0,2.125745895385742 +22723.0,22677.0,2.125186462402344 +22723.0,22678.0,1.78874755859375 +22723.0,22679.0,1.750748779296875 +22723.0,22680.0,1.71756982421875 +22723.0,22681.0,1.863498046875 +22723.0,22682.0,1.320120361328125 +22723.0,22683.0,1.394331787109375 +22723.0,22684.0,1.6947109375 +22723.0,22685.0,2.89125244140625 +22723.0,22686.0,3.1738984375 +22723.0,22687.0,2.827035400390625 +22723.0,22688.0,2.9191181640625 +22723.0,22689.0,1.873031494140625 +22723.0,22690.0,1.57666943359375 +22723.0,22691.0,1.636078125 +22723.0,22692.0,1.560791259765625 +22723.0,22693.0,1.8502568359375 +22723.0,22694.0,2.63231591796875 +22723.0,22695.0,1.6854785766601563 +22723.0,22696.0,1.671961181640625 +22723.0,22697.0,1.451893829345703 +22723.0,22698.0,1.42162451171875 +22723.0,22699.0,1.4845517578125 +22723.0,22700.0,1.8993251953125 +22723.0,22701.0,1.5895989990234376 +22723.0,22702.0,1.6270439453125 +22723.0,22703.0,1.20278564453125 +22723.0,22704.0,1.4839722900390624 +22723.0,22705.0,1.59499658203125 +22723.0,22706.0,1.70092724609375 +22723.0,22707.0,1.9080830078125 +22723.0,22708.0,1.8050771484375 +22723.0,22709.0,1.6832880859375 +22723.0,22710.0,1.859735107421875 +22723.0,22711.0,1.60878466796875 +22723.0,22712.0,2.09221728515625 +22723.0,22713.0,0.9501982421875 +22723.0,22714.0,1.33917724609375 +22723.0,22715.0,1.20094287109375 +22723.0,22716.0,1.354625 +22723.0,22717.0,1.25864208984375 +22723.0,22718.0,1.33426220703125 +22723.0,22719.0,1.4005009765625 +22723.0,22720.0,0.74639697265625 +22723.0,22721.0,0.3140029296875 +22723.0,22722.0,0.24920458984375 +22723.0,22723.0,0.1912841796875 +22723.0,22724.0,1.0974521484375002 +22723.0,22725.0,0.439369384765625 +22723.0,22726.0,0.3432314453125 +22723.0,22727.0,1.1052041015625 +22723.0,22728.0,0.54569677734375 +22723.0,22729.0,0.308448974609375 +22723.0,22730.0,0.371169921875 +22723.0,22731.0,0.8730927734375 +22723.0,22732.0,1.33576318359375 +22723.0,22733.0,2.2302705078125 +22723.0,22735.0,2.1340214843750003 +22723.0,22736.0,2.95279833984375 +22724.0,22635.0,4.89250146484375 +22724.0,22639.0,3.953572937011719 +22724.0,22640.0,4.039321289062499 +22724.0,22641.0,3.35076953125 +22724.0,22642.0,3.476001708984375 +22724.0,22643.0,3.457490478515625 +22724.0,22644.0,3.67367333984375 +22724.0,22645.0,3.73797998046875 +22724.0,22646.0,3.5710274658203125 +22724.0,22647.0,3.91493994140625 +22724.0,22648.0,3.812369171142578 +22724.0,22650.0,4.79498046875 +22724.0,22651.0,4.89241845703125 +22724.0,22652.0,4.2482119140625 +22724.0,22653.0,4.68593896484375 +22724.0,22654.0,4.70527685546875 +22724.0,22655.0,4.7487548828125 +22724.0,22657.0,4.7732724609375 +22724.0,22658.0,4.0579619140625 +22724.0,22659.0,3.54683984375 +22724.0,22660.0,3.66219921875 +22724.0,22661.0,3.79438818359375 +22724.0,22662.0,3.85348681640625 +22724.0,22663.0,4.01424267578125 +22724.0,22664.0,3.96450048828125 +22724.0,22665.0,4.60839404296875 +22724.0,22666.0,3.76706103515625 +22724.0,22667.0,3.69259326171875 +22724.0,22668.0,3.76888330078125 +22724.0,22669.0,3.968518798828125 +22724.0,22670.0,3.7498271484375 +22724.0,22675.0,1.6427510986328124 +22724.0,22676.0,1.7989138641357425 +22724.0,22677.0,1.7953544311523435 +22724.0,22678.0,1.46691552734375 +22724.0,22679.0,1.428916748046875 +22724.0,22680.0,1.49473779296875 +22724.0,22681.0,1.457666015625 +22724.0,22682.0,1.249288330078125 +22724.0,22683.0,1.323499755859375 +22724.0,22684.0,1.37287890625 +22724.0,22685.0,2.65242041015625 +22724.0,22686.0,2.93506640625 +22724.0,22687.0,2.604203369140625 +22724.0,22688.0,2.6802861328125 +22724.0,22689.0,1.634199462890625 +22724.0,22690.0,1.01683740234375 +22724.0,22691.0,1.07624609375 +22724.0,22692.0,1.000959228515625 +22724.0,22693.0,1.2904248046875 +22724.0,22694.0,2.40148388671875 +22724.0,22695.0,1.1596465454101563 +22724.0,22696.0,1.146129150390625 +22724.0,22697.0,0.9070617980957032 +22724.0,22698.0,0.86179248046875 +22724.0,22699.0,0.9247197265625 +22724.0,22700.0,1.3394931640625 +22724.0,22701.0,1.0297669677734371 +22724.0,22702.0,1.2112119140625 +22724.0,22703.0,0.98395361328125 +22724.0,22704.0,0.9241402587890624 +22724.0,22705.0,1.03516455078125 +22724.0,22706.0,1.14109521484375 +22724.0,22707.0,1.3482509765625 +22724.0,22708.0,1.2452451171875 +22724.0,22709.0,1.1234560546875 +22724.0,22710.0,1.417903076171875 +22724.0,22711.0,1.77195263671875 +22724.0,22712.0,2.04838525390625 +22724.0,22713.0,1.3713662109375 +22724.0,22714.0,0.77934521484375 +22724.0,22715.0,0.64111083984375 +22724.0,22716.0,0.79479296875 +22724.0,22717.0,0.69881005859375 +22724.0,22718.0,0.77443017578125 +22724.0,22719.0,0.8406689453125 +22724.0,22720.0,1.25656494140625 +22724.0,22721.0,1.0201708984375 +22724.0,22722.0,1.05337255859375 +22724.0,22723.0,1.0974521484375002 +22724.0,22724.0,0.1356201171875 +22724.0,22725.0,0.767537353515625 +22724.0,22726.0,0.8873994140625 +22724.0,22727.0,1.1143720703125 +22724.0,22728.0,1.27886474609375 +22724.0,22729.0,0.914616943359375 +22724.0,22730.0,1.158337890625 +22724.0,22731.0,1.3832607421875 +22724.0,22732.0,1.49893115234375 +22724.0,22733.0,2.9294384765625 +22724.0,22735.0,2.833189453125 +22724.0,22736.0,3.65196630859375 +22725.0,22635.0,4.482418701171875 +22725.0,22639.0,3.543490173339844 +22725.0,22640.0,3.629238525390625 +22725.0,22641.0,2.940686767578125 +22725.0,22642.0,3.0659189453125 +22725.0,22643.0,3.04740771484375 +22725.0,22644.0,3.263590576171875 +22725.0,22645.0,3.327897216796875 +22725.0,22646.0,3.1609447021484374 +22725.0,22647.0,3.504857177734375 +22725.0,22648.0,3.402286407470703 +22725.0,22649.0,4.610677978515625 +22725.0,22650.0,4.384897705078125 +22725.0,22651.0,4.482335693359375 +22725.0,22652.0,3.838129150390625 +22725.0,22653.0,4.275856201171875 +22725.0,22654.0,4.295194091796875 +22725.0,22655.0,4.338672119140625 +22725.0,22657.0,4.363189697265625 +22725.0,22658.0,3.647879150390625 +22725.0,22659.0,3.136757080078125 +22725.0,22660.0,3.252116455078125 +22725.0,22661.0,3.384305419921875 +22725.0,22662.0,3.443404052734375 +22725.0,22663.0,3.604159912109375 +22725.0,22664.0,3.554417724609375 +22725.0,22665.0,4.198311279296875 +22725.0,22666.0,3.356978271484375 +22725.0,22667.0,3.282510498046875 +22725.0,22668.0,3.358800537109375 +22725.0,22669.0,3.55843603515625 +22725.0,22670.0,3.339744384765625 +22725.0,22671.0,4.842195068359375 +22725.0,22673.0,4.746898193359375 +22725.0,22674.0,4.628208251953125 +22725.0,22675.0,1.6986683349609375 +22725.0,22676.0,1.8548311004638671 +22725.0,22677.0,1.854271667480469 +22725.0,22678.0,1.517832763671875 +22725.0,22679.0,1.479833984375 +22725.0,22680.0,1.460655029296875 +22725.0,22681.0,1.592583251953125 +22725.0,22682.0,1.04920556640625 +22725.0,22683.0,1.1234169921875 +22725.0,22684.0,1.423796142578125 +22725.0,22685.0,2.634337646484375 +22725.0,22686.0,2.916983642578125 +22725.0,22687.0,2.57012060546875 +22725.0,22688.0,2.662203369140625 +22725.0,22689.0,1.61611669921875 +22725.0,22690.0,1.246754638671875 +22725.0,22691.0,1.306163330078125 +22725.0,22692.0,1.23087646484375 +22725.0,22693.0,1.520342041015625 +22725.0,22694.0,2.536401123046875 +22725.0,22695.0,1.389563781738281 +22725.0,22696.0,1.37604638671875 +22725.0,22697.0,1.1369790344238282 +22725.0,22698.0,1.091709716796875 +22725.0,22699.0,1.154636962890625 +22725.0,22700.0,1.569410400390625 +22725.0,22701.0,1.2596842041015626 +22725.0,22702.0,1.441129150390625 +22725.0,22703.0,1.213870849609375 +22725.0,22704.0,1.1540574951171876 +22725.0,22705.0,1.265081787109375 +22725.0,22706.0,1.371012451171875 +22725.0,22707.0,1.578168212890625 +22725.0,22708.0,1.475162353515625 +22725.0,22709.0,1.353373291015625 +22725.0,22710.0,1.5888203125 +22725.0,22711.0,1.650869873046875 +22725.0,22712.0,2.134302490234375 +22725.0,22713.0,0.992283447265625 +22725.0,22714.0,1.009262451171875 +22725.0,22715.0,0.871028076171875 +22725.0,22716.0,1.024710205078125 +22725.0,22717.0,0.928727294921875 +22725.0,22718.0,1.004347412109375 +22725.0,22719.0,1.070586181640625 +22725.0,22720.0,0.788482177734375 +22725.0,22721.0,0.356088134765625 +22725.0,22722.0,0.395289794921875 +22725.0,22723.0,0.439369384765625 +22725.0,22724.0,0.767537353515625 +22725.0,22725.0,0.10345458984375 +22725.0,22726.0,0.229316650390625 +22725.0,22727.0,1.147289306640625 +22725.0,22728.0,0.691781982421875 +22725.0,22729.0,0.3505341796875 +22725.0,22730.0,0.5172551269531249 +22725.0,22731.0,0.915177978515625 +22725.0,22732.0,1.377848388671875 +22725.0,22733.0,2.376355712890625 +22725.0,22735.0,2.280106689453125 +22725.0,22736.0,3.098883544921875 +22726.0,22635.0,4.49628076171875 +22726.0,22639.0,3.5573522338867187 +22726.0,22640.0,3.6431005859375 +22726.0,22641.0,2.954548828125 +22726.0,22642.0,3.079781005859375 +22726.0,22643.0,3.061269775390625 +22726.0,22644.0,3.27745263671875 +22726.0,22645.0,3.34175927734375 +22726.0,22646.0,3.1748067626953125 +22726.0,22647.0,3.51871923828125 +22726.0,22648.0,3.416148468017578 +22726.0,22649.0,4.6245400390625 +22726.0,22650.0,4.398759765625 +22726.0,22651.0,4.49619775390625 +22726.0,22652.0,3.8519912109375 +22726.0,22653.0,4.28971826171875 +22726.0,22654.0,4.30905615234375 +22726.0,22655.0,4.3525341796875 +22726.0,22657.0,4.3770517578125 +22726.0,22658.0,3.6617412109375 +22726.0,22659.0,3.150619140625 +22726.0,22660.0,3.265978515625 +22726.0,22661.0,3.39816748046875 +22726.0,22662.0,3.45726611328125 +22726.0,22663.0,3.61802197265625 +22726.0,22664.0,3.56827978515625 +22726.0,22665.0,4.2121733398437495 +22726.0,22666.0,3.37084033203125 +22726.0,22667.0,3.29637255859375 +22726.0,22668.0,3.37266259765625 +22726.0,22669.0,3.572298095703125 +22726.0,22670.0,3.3536064453125 +22726.0,22671.0,4.85605712890625 +22726.0,22673.0,4.76076025390625 +22726.0,22674.0,4.6420703125 +22726.0,22675.0,1.7595303955078123 +22726.0,22676.0,1.9156931610107424 +22726.0,22677.0,1.915133728027344 +22726.0,22678.0,1.57869482421875 +22726.0,22679.0,1.540696044921875 +22726.0,22680.0,1.50751708984375 +22726.0,22681.0,1.6534453125 +22726.0,22682.0,1.1100676269531249 +22726.0,22683.0,1.184279052734375 +22726.0,22684.0,1.484658203125 +22726.0,22685.0,2.68119970703125 +22726.0,22686.0,2.963845703125 +22726.0,22687.0,2.616982666015625 +22726.0,22688.0,2.7090654296875 +22726.0,22689.0,1.662978759765625 +22726.0,22690.0,1.36661669921875 +22726.0,22691.0,1.426025390625 +22726.0,22692.0,1.350738525390625 +22726.0,22693.0,1.6402041015625 +22726.0,22694.0,2.59726318359375 +22726.0,22695.0,1.5094258422851563 +22726.0,22696.0,1.495908447265625 +22726.0,22697.0,1.2568410949707032 +22726.0,22698.0,1.21157177734375 +22726.0,22699.0,1.2744990234375 +22726.0,22700.0,1.6892724609375 +22726.0,22701.0,1.3795462646484375 +22726.0,22702.0,1.5609912109375 +22726.0,22703.0,1.33373291015625 +22726.0,22704.0,1.2739195556640626 +22726.0,22705.0,1.38494384765625 +22726.0,22706.0,1.49087451171875 +22726.0,22707.0,1.6980302734375 +22726.0,22708.0,1.5950244140625 +22726.0,22709.0,1.4732353515625 +22726.0,22710.0,1.649682373046875 +22726.0,22711.0,1.76073193359375 +22726.0,22712.0,2.24416455078125 +22726.0,22713.0,1.1021455078125 +22726.0,22714.0,1.12912451171875 +22726.0,22715.0,0.99089013671875 +22726.0,22716.0,1.144572265625 +22726.0,22717.0,1.04858935546875 +22726.0,22718.0,1.1242094726562502 +22726.0,22719.0,1.1904482421875 +22726.0,22720.0,0.89834423828125 +22726.0,22721.0,0.4659501953125 +22726.0,22722.0,0.40115185546875 +22726.0,22723.0,0.3432314453125 +22726.0,22724.0,0.8873994140625 +22726.0,22725.0,0.229316650390625 +22726.0,22726.0,0.1331787109375 +22726.0,22727.0,1.2571513671875 +22726.0,22728.0,0.69764404296875 +22726.0,22729.0,0.460396240234375 +22726.0,22730.0,0.5231171875 +22726.0,22731.0,1.0250400390625 +22726.0,22732.0,1.48771044921875 +22726.0,22733.0,2.3822177734375 +22726.0,22735.0,2.28596875 +22726.0,22736.0,3.10474560546875 +22727.0,22639.0,4.198324890136719 +22727.0,22640.0,4.2840732421875 +22727.0,22641.0,3.595521484375 +22727.0,22642.0,3.720753662109375 +22727.0,22643.0,3.702242431640625 +22727.0,22644.0,3.91842529296875 +22727.0,22645.0,3.98273193359375 +22727.0,22646.0,3.8157794189453127 +22727.0,22647.0,4.1596918945312495 +22727.0,22648.0,4.057121124267578 +22727.0,22652.0,4.4929638671875 +22727.0,22653.0,4.93069091796875 +22727.0,22654.0,4.95002880859375 +22727.0,22658.0,4.3027138671875 +22727.0,22659.0,3.791591796875 +22727.0,22660.0,3.906951171875 +22727.0,22661.0,4.03914013671875 +22727.0,22662.0,4.09823876953125 +22727.0,22663.0,4.25899462890625 +22727.0,22664.0,4.2092524414062495 +22727.0,22665.0,4.85314599609375 +22727.0,22666.0,4.01181298828125 +22727.0,22667.0,3.87334521484375 +22727.0,22668.0,4.01363525390625 +22727.0,22669.0,4.149270751953125 +22727.0,22670.0,3.9305791015625 +22727.0,22675.0,1.5785030517578125 +22727.0,22676.0,1.734665817260742 +22727.0,22677.0,1.7311063842773438 +22727.0,22678.0,1.40266748046875 +22727.0,22679.0,1.364668701171875 +22727.0,22680.0,1.43048974609375 +22727.0,22681.0,1.39341796875 +22727.0,22682.0,1.505040283203125 +22727.0,22683.0,1.439251708984375 +22727.0,22684.0,1.308630859375 +22727.0,22685.0,2.58817236328125 +22727.0,22686.0,2.870818359375 +22727.0,22687.0,2.539955322265625 +22727.0,22688.0,2.6160380859375 +22727.0,22689.0,1.569951416015625 +22727.0,22690.0,0.92158935546875 +22727.0,22691.0,0.974998046875 +22727.0,22692.0,0.899711181640625 +22727.0,22693.0,1.1951767578125 +22727.0,22694.0,1.70423583984375 +22727.0,22695.0,0.7573984985351563 +22727.0,22696.0,0.743881103515625 +22727.0,22697.0,0.5238137512207031 +22727.0,22698.0,0.66254443359375 +22727.0,22699.0,0.7254716796875 +22727.0,22700.0,1.0372451171875 +22727.0,22701.0,0.7145189208984375 +22727.0,22702.0,0.6989638671875 +22727.0,22703.0,0.27470556640625 +22727.0,22704.0,0.8288922119140625 +22727.0,22705.0,0.93991650390625 +22727.0,22706.0,1.07684716796875 +22727.0,22707.0,1.2530029296875 +22727.0,22708.0,1.1499970703125 +22727.0,22709.0,1.0592080078125 +22727.0,22710.0,1.340655029296875 +22727.0,22711.0,0.83470458984375 +22727.0,22712.0,1.16413720703125 +22727.0,22713.0,0.4341181640625 +22727.0,22714.0,0.6690971679687501 +22727.0,22715.0,0.94986279296875 +22727.0,22716.0,1.103544921875 +22727.0,22717.0,1.00756201171875 +22727.0,22718.0,1.08318212890625 +22727.0,22719.0,1.1494208984375 +22727.0,22720.0,0.98031689453125 +22727.0,22721.0,1.0059228515625 +22727.0,22722.0,1.05912451171875 +22727.0,22723.0,1.1052041015625 +22727.0,22724.0,1.1143720703125 +22727.0,22725.0,1.147289306640625 +22727.0,22726.0,1.2571513671875 +22727.0,22727.0,0.1771240234375 +22727.0,22728.0,1.1106166992187498 +22727.0,22729.0,0.888368896484375 +22727.0,22730.0,0.99008984375 +22727.0,22731.0,0.4810126953125 +22727.0,22732.0,0.56168310546875 +22727.0,22733.0,2.9171904296875 +22727.0,22734.0,4.69536083984375 +22727.0,22735.0,2.82094140625 +22727.0,22736.0,3.63971826171875 +22728.0,22635.0,4.57674609375 +22728.0,22639.0,3.637817565917969 +22728.0,22640.0,3.72356591796875 +22728.0,22641.0,3.03501416015625 +22728.0,22642.0,3.160246337890625 +22728.0,22643.0,3.141735107421875 +22728.0,22644.0,3.35791796875 +22728.0,22645.0,3.422224609375 +22728.0,22646.0,3.2552720947265623 +22728.0,22647.0,3.5991845703125 +22728.0,22648.0,3.496613800048828 +22728.0,22649.0,4.70500537109375 +22728.0,22650.0,4.47922509765625 +22728.0,22651.0,4.5766630859375 +22728.0,22652.0,3.93245654296875 +22728.0,22653.0,4.37018359375 +22728.0,22654.0,4.389521484375 +22728.0,22655.0,4.43299951171875 +22728.0,22657.0,4.45751708984375 +22728.0,22658.0,3.74220654296875 +22728.0,22659.0,3.23108447265625 +22728.0,22660.0,3.34644384765625 +22728.0,22661.0,3.4786328125 +22728.0,22662.0,3.5377314453125 +22728.0,22663.0,3.6984873046875 +22728.0,22664.0,3.6487451171875 +22728.0,22665.0,4.292638671875 +22728.0,22666.0,3.4513056640625 +22728.0,22667.0,3.312837890625 +22728.0,22668.0,3.4531279296875 +22728.0,22669.0,3.588763427734375 +22728.0,22670.0,3.37007177734375 +22728.0,22671.0,4.9365224609375 +22728.0,22673.0,4.8412255859375 +22728.0,22674.0,4.72253564453125 +22728.0,22675.0,2.2099957275390625 +22728.0,22676.0,2.366158493041992 +22728.0,22677.0,2.3655990600585937 +22728.0,22678.0,2.02916015625 +22728.0,22679.0,1.991161376953125 +22728.0,22680.0,1.969982421875 +22728.0,22681.0,2.10391064453125 +22728.0,22682.0,1.560532958984375 +22728.0,22683.0,1.634744384765625 +22728.0,22684.0,1.93512353515625 +22728.0,22685.0,3.1436650390625 +22728.0,22686.0,3.42631103515625 +22728.0,22687.0,3.079447998046875 +22728.0,22688.0,3.17153076171875 +22728.0,22689.0,2.125444091796875 +22728.0,22690.0,1.75808203125 +22728.0,22691.0,1.81749072265625 +22728.0,22692.0,1.742203857421875 +22728.0,22693.0,2.03166943359375 +22728.0,22694.0,2.637728515625 +22728.0,22695.0,1.6908911743164063 +22728.0,22696.0,1.677373779296875 +22728.0,22697.0,1.4573064270019531 +22728.0,22698.0,1.596037109375 +22728.0,22699.0,1.65896435546875 +22728.0,22700.0,1.97073779296875 +22728.0,22701.0,1.6480115966796876 +22728.0,22702.0,1.63245654296875 +22728.0,22703.0,1.2081982421875 +22728.0,22704.0,1.6653848876953126 +22728.0,22705.0,1.7764091796875 +22728.0,22706.0,1.88233984375 +22728.0,22707.0,2.08949560546875 +22728.0,22708.0,1.98648974609375 +22728.0,22709.0,1.86470068359375 +22728.0,22710.0,2.100147705078125 +22728.0,22711.0,1.614197265625 +22728.0,22712.0,2.0976298828125 +22728.0,22713.0,0.95561083984375 +22728.0,22714.0,1.52058984375 +22728.0,22715.0,1.38235546875 +22728.0,22716.0,1.53603759765625 +22728.0,22717.0,1.4400546875 +22728.0,22718.0,1.5156748046875 +22728.0,22719.0,1.58191357421875 +22728.0,22720.0,0.7518095703125 +22728.0,22721.0,0.56441552734375 +22728.0,22722.0,0.4996171875 +22728.0,22723.0,0.54569677734375 +22728.0,22724.0,1.27886474609375 +22728.0,22725.0,0.691781982421875 +22728.0,22726.0,0.69764404296875 +22728.0,22727.0,1.1106166992187498 +22728.0,22728.0,0.162109375 +22728.0,22729.0,0.551861572265625 +22728.0,22730.0,0.28158251953125 +22728.0,22731.0,0.87850537109375 +22728.0,22732.0,1.34117578125 +22728.0,22733.0,2.35668310546875 +22728.0,22735.0,2.26043408203125 +22728.0,22736.0,3.0792109375 +22729.0,22635.0,4.463498291015625 +22729.0,22639.0,3.5245697631835937 +22729.0,22640.0,3.610318115234375 +22729.0,22641.0,2.921766357421875 +22729.0,22642.0,3.04699853515625 +22729.0,22643.0,3.0284873046875 +22729.0,22644.0,3.244670166015625 +22729.0,22645.0,3.308976806640625 +22729.0,22646.0,3.1420242919921875 +22729.0,22647.0,3.485936767578125 +22729.0,22648.0,3.383365997314453 +22729.0,22649.0,4.591757568359375 +22729.0,22650.0,4.365977294921875 +22729.0,22651.0,4.463415283203125 +22729.0,22652.0,3.819208740234375 +22729.0,22653.0,4.256935791015625 +22729.0,22654.0,4.276273681640625 +22729.0,22655.0,4.319751708984375 +22729.0,22657.0,4.344269287109375 +22729.0,22658.0,3.628958740234375 +22729.0,22659.0,3.117836669921875 +22729.0,22660.0,3.233196044921875 +22729.0,22661.0,3.365385009765625 +22729.0,22662.0,3.424483642578125 +22729.0,22663.0,3.585239501953125 +22729.0,22664.0,3.535497314453125 +22729.0,22665.0,4.179390869140625 +22729.0,22666.0,3.338057861328125 +22729.0,22667.0,3.199590087890625 +22729.0,22668.0,3.339880126953125 +22729.0,22669.0,3.475515625 +22729.0,22670.0,3.256823974609375 +22729.0,22671.0,4.823274658203125 +22729.0,22673.0,4.727977783203125 +22729.0,22674.0,4.609287841796875 +22729.0,22675.0,1.8457479248046875 +22729.0,22676.0,2.001910690307617 +22729.0,22677.0,2.0013512573242185 +22729.0,22678.0,1.664912353515625 +22729.0,22679.0,1.62691357421875 +22729.0,22680.0,1.607734619140625 +22729.0,22681.0,1.739662841796875 +22729.0,22682.0,1.19628515625 +22729.0,22683.0,1.27049658203125 +22729.0,22684.0,1.570875732421875 +22729.0,22685.0,2.781417236328125 +22729.0,22686.0,3.064063232421875 +22729.0,22687.0,2.7172001953125 +22729.0,22688.0,2.809282958984375 +22729.0,22689.0,1.7631962890625 +22729.0,22690.0,1.393834228515625 +22729.0,22691.0,1.453242919921875 +22729.0,22692.0,1.3779560546875 +22729.0,22693.0,1.667421630859375 +22729.0,22694.0,2.415480712890625 +22729.0,22695.0,1.4686433715820313 +22729.0,22696.0,1.4551259765625 +22729.0,22697.0,1.235058624267578 +22729.0,22698.0,1.238789306640625 +22729.0,22699.0,1.301716552734375 +22729.0,22700.0,1.716489990234375 +22729.0,22701.0,1.4067637939453126 +22729.0,22702.0,1.410208740234375 +22729.0,22703.0,0.985950439453125 +22729.0,22704.0,1.3011370849609376 +22729.0,22705.0,1.412161376953125 +22729.0,22706.0,1.518092041015625 +22729.0,22707.0,1.725247802734375 +22729.0,22708.0,1.622241943359375 +22729.0,22709.0,1.500452880859375 +22729.0,22710.0,1.73589990234375 +22729.0,22711.0,1.391949462890625 +22729.0,22712.0,1.875382080078125 +22729.0,22713.0,0.733363037109375 +22729.0,22714.0,1.156342041015625 +22729.0,22715.0,1.018107666015625 +22729.0,22716.0,1.171789794921875 +22729.0,22717.0,1.075806884765625 +22729.0,22718.0,1.151427001953125 +22729.0,22719.0,1.217665771484375 +22729.0,22720.0,0.529561767578125 +22729.0,22721.0,0.209167724609375 +22729.0,22722.0,0.262369384765625 +22729.0,22723.0,0.308448974609375 +22729.0,22724.0,0.914616943359375 +22729.0,22725.0,0.3505341796875 +22729.0,22726.0,0.460396240234375 +22729.0,22727.0,0.888368896484375 +22729.0,22728.0,0.551861572265625 +22729.0,22729.0,0.09161376953125 +22729.0,22730.0,0.384334716796875 +22729.0,22731.0,0.656257568359375 +22729.0,22732.0,1.118927978515625 +22729.0,22733.0,2.243435302734375 +22729.0,22735.0,2.147186279296875 +22729.0,22736.0,2.965963134765625 +22730.0,22635.0,4.40221923828125 +22730.0,22639.0,3.4632907104492188 +22730.0,22640.0,3.5490390625 +22730.0,22641.0,2.8604873046875 +22730.0,22642.0,2.985719482421875 +22730.0,22643.0,2.967208251953125 +22730.0,22644.0,3.18339111328125 +22730.0,22645.0,3.24769775390625 +22730.0,22646.0,3.0807452392578125 +22730.0,22647.0,3.42465771484375 +22730.0,22648.0,3.3220869445800782 +22730.0,22649.0,4.530478515625 +22730.0,22650.0,4.3046982421875 +22730.0,22651.0,4.40213623046875 +22730.0,22652.0,3.7579296875 +22730.0,22653.0,4.19565673828125 +22730.0,22654.0,4.21499462890625 +22730.0,22655.0,4.25847265625 +22730.0,22656.0,4.952998657226562 +22730.0,22657.0,4.282990234375 +22730.0,22658.0,3.5676796875 +22730.0,22659.0,3.0565576171875 +22730.0,22660.0,3.1719169921875 +22730.0,22661.0,3.30410595703125 +22730.0,22662.0,3.36320458984375 +22730.0,22663.0,3.52396044921875 +22730.0,22664.0,3.47421826171875 +22730.0,22665.0,4.11811181640625 +22730.0,22666.0,3.27677880859375 +22730.0,22667.0,3.13831103515625 +22730.0,22668.0,3.27860107421875 +22730.0,22669.0,3.414236572265625 +22730.0,22670.0,3.195544921875 +22730.0,22671.0,4.76199560546875 +22730.0,22673.0,4.66669873046875 +22730.0,22674.0,4.5480087890625 +22730.0,22675.0,2.0474688720703123 +22730.0,22676.0,2.2036316375732423 +22730.0,22677.0,2.203072204589844 +22730.0,22678.0,1.86663330078125 +22730.0,22679.0,1.828634521484375 +22730.0,22680.0,1.79545556640625 +22730.0,22681.0,1.9413837890625 +22730.0,22682.0,1.398006103515625 +22730.0,22683.0,1.472217529296875 +22730.0,22684.0,1.7725966796875 +22730.0,22685.0,2.96913818359375 +22730.0,22686.0,3.2517841796875 +22730.0,22687.0,2.904921142578125 +22730.0,22688.0,2.99700390625 +22730.0,22689.0,1.950917236328125 +22730.0,22690.0,1.63755517578125 +22730.0,22691.0,1.6969638671875 +22730.0,22692.0,1.621677001953125 +22730.0,22693.0,1.911142578125 +22730.0,22694.0,2.51720166015625 +22730.0,22695.0,1.570364318847656 +22730.0,22696.0,1.556846923828125 +22730.0,22697.0,1.3367795715332031 +22730.0,22698.0,1.47551025390625 +22730.0,22699.0,1.5384375 +22730.0,22700.0,1.8502109375 +22730.0,22701.0,1.5274847412109376 +22730.0,22702.0,1.5119296875 +22730.0,22703.0,1.08767138671875 +22730.0,22704.0,1.5448580322265626 +22730.0,22705.0,1.65588232421875 +22730.0,22706.0,1.76181298828125 +22730.0,22707.0,1.96896875 +22730.0,22708.0,1.865962890625 +22730.0,22709.0,1.744173828125 +22730.0,22710.0,1.937620849609375 +22730.0,22711.0,1.49367041015625 +22730.0,22712.0,1.97710302734375 +22730.0,22713.0,0.835083984375 +22730.0,22714.0,1.40006298828125 +22730.0,22715.0,1.26182861328125 +22730.0,22716.0,1.4155107421875 +22730.0,22717.0,1.31952783203125 +22730.0,22718.0,1.39514794921875 +22730.0,22719.0,1.46138671875 +22730.0,22720.0,0.63128271484375 +22730.0,22721.0,0.389888671875 +22730.0,22722.0,0.32509033203125 +22730.0,22723.0,0.371169921875 +22730.0,22724.0,1.158337890625 +22730.0,22725.0,0.5172551269531249 +22730.0,22726.0,0.5231171875 +22730.0,22727.0,0.99008984375 +22730.0,22728.0,0.28158251953125 +22730.0,22729.0,0.384334716796875 +22730.0,22730.0,0.1070556640625 +22730.0,22731.0,0.757978515625 +22730.0,22732.0,1.22064892578125 +22730.0,22733.0,2.18215625 +22730.0,22735.0,2.0859072265625 +22730.0,22736.0,2.90468408203125 +22731.0,22635.0,4.90514208984375 +22731.0,22639.0,3.966213562011719 +22731.0,22640.0,4.0519619140625 +22731.0,22641.0,3.36341015625 +22731.0,22642.0,3.488642333984375 +22731.0,22643.0,3.470131103515625 +22731.0,22644.0,3.68631396484375 +22731.0,22645.0,3.75062060546875 +22731.0,22646.0,3.5836680908203125 +22731.0,22647.0,3.92758056640625 +22731.0,22648.0,3.825009796142578 +22731.0,22650.0,4.80762109375 +22731.0,22652.0,4.2608525390625 +22731.0,22653.0,4.69857958984375 +22731.0,22654.0,4.71791748046875 +22731.0,22655.0,4.7613955078125 +22731.0,22658.0,4.0706025390625005 +22731.0,22659.0,3.55948046875 +22731.0,22660.0,3.67483984375 +22731.0,22661.0,3.80702880859375 +22731.0,22662.0,3.86612744140625 +22731.0,22663.0,4.02688330078125 +22731.0,22664.0,3.97714111328125 +22731.0,22665.0,4.62103466796875 +22731.0,22666.0,3.77970166015625 +22731.0,22667.0,3.64123388671875 +22731.0,22668.0,3.78152392578125 +22731.0,22669.0,3.917159423828125 +22731.0,22670.0,3.6984677734375 +22731.0,22675.0,1.8823917236328125 +22731.0,22676.0,2.038554489135742 +22731.0,22677.0,2.034995056152344 +22731.0,22678.0,1.70655615234375 +22731.0,22679.0,1.668557373046875 +22731.0,22680.0,1.73437841796875 +22731.0,22681.0,1.697306640625 +22731.0,22682.0,1.664928955078125 +22731.0,22683.0,1.739140380859375 +22731.0,22684.0,1.61251953125 +22731.0,22685.0,2.89206103515625 +22731.0,22686.0,3.17470703125 +22731.0,22687.0,2.843843994140625 +22731.0,22688.0,2.9199267578125 +22731.0,22689.0,1.873840087890625 +22731.0,22690.0,1.22547802734375 +22731.0,22691.0,1.27888671875 +22731.0,22692.0,1.203599853515625 +22731.0,22693.0,1.4990654296875 +22731.0,22694.0,2.00812451171875 +22731.0,22695.0,1.0612871704101563 +22731.0,22696.0,1.047769775390625 +22731.0,22697.0,0.8277024230957031 +22731.0,22698.0,0.96643310546875 +22731.0,22699.0,1.0293603515625 +22731.0,22700.0,1.3411337890625 +22731.0,22701.0,1.0184075927734375 +22731.0,22702.0,1.0028525390625 +22731.0,22703.0,0.57859423828125 +22731.0,22704.0,1.1327808837890625 +22731.0,22705.0,1.24380517578125 +22731.0,22706.0,1.38073583984375 +22731.0,22707.0,1.5568916015625 +22731.0,22708.0,1.4538857421875 +22731.0,22709.0,1.3630966796875 +22731.0,22710.0,1.644543701171875 +22731.0,22711.0,0.98459326171875 +22731.0,22712.0,1.46802587890625 +22731.0,22713.0,0.3260068359375 +22731.0,22714.0,0.97298583984375 +22731.0,22715.0,1.25375146484375 +22731.0,22716.0,1.40743359375 +22731.0,22717.0,1.31145068359375 +22731.0,22718.0,1.38707080078125 +22731.0,22719.0,1.4533095703125 +22731.0,22720.0,0.74820556640625 +22731.0,22721.0,0.7738115234375 +22731.0,22722.0,0.82701318359375 +22731.0,22723.0,0.8730927734375 +22731.0,22724.0,1.3832607421875 +22731.0,22725.0,0.915177978515625 +22731.0,22726.0,1.0250400390625 +22731.0,22727.0,0.4810126953125 +22731.0,22728.0,0.87850537109375 +22731.0,22729.0,0.656257568359375 +22731.0,22730.0,0.757978515625 +22731.0,22731.0,0.2489013671875 +22731.0,22732.0,0.71157177734375 +22731.0,22733.0,2.6850791015625 +22731.0,22734.0,4.84524951171875 +22731.0,22735.0,2.588830078125 +22731.0,22736.0,3.40760693359375 +22732.0,22639.0,4.428883972167969 +22732.0,22640.0,4.51463232421875 +22732.0,22641.0,3.82608056640625 +22732.0,22642.0,3.951312744140625 +22732.0,22643.0,3.932801513671875 +22732.0,22644.0,4.148984375 +22732.0,22645.0,4.213291015625 +22732.0,22646.0,4.046338500976562 +22732.0,22647.0,4.3902509765625 +22732.0,22648.0,4.287680206298828 +22732.0,22652.0,4.72352294921875 +22732.0,22658.0,4.53327294921875 +22732.0,22659.0,4.02215087890625 +22732.0,22660.0,4.13751025390625 +22732.0,22661.0,4.26969921875 +22732.0,22662.0,4.3287978515625 +22732.0,22663.0,4.4895537109375 +22732.0,22664.0,4.4398115234375 +22732.0,22666.0,4.2423720703125 +22732.0,22667.0,4.103904296875 +22732.0,22668.0,4.2441943359375 +22732.0,22669.0,4.379829833984375 +22732.0,22670.0,4.16113818359375 +22732.0,22675.0,1.9630621337890624 +22732.0,22676.0,2.119224899291992 +22732.0,22677.0,2.115665466308594 +22732.0,22678.0,1.7872265625 +22732.0,22679.0,1.749227783203125 +22732.0,22680.0,1.815048828125 +22732.0,22681.0,1.77797705078125 +22732.0,22682.0,1.889599365234375 +22732.0,22683.0,1.823810791015625 +22732.0,22684.0,1.69318994140625 +22732.0,22685.0,2.9727314453125 +22732.0,22686.0,3.25537744140625 +22732.0,22687.0,2.924514404296875 +22732.0,22688.0,3.00059716796875 +22732.0,22689.0,1.954510498046875 +22732.0,22690.0,1.3061484375 +22732.0,22691.0,1.35955712890625 +22732.0,22692.0,1.284270263671875 +22732.0,22693.0,1.57973583984375 +22732.0,22694.0,2.088794921875 +22732.0,22695.0,1.1419575805664062 +22732.0,22696.0,1.128440185546875 +22732.0,22697.0,0.9083728332519532 +22732.0,22698.0,1.047103515625 +22732.0,22699.0,1.11003076171875 +22732.0,22700.0,1.42180419921875 +22732.0,22701.0,1.0990780029296876 +22732.0,22702.0,1.08352294921875 +22732.0,22703.0,0.6592646484375 +22732.0,22704.0,1.2134512939453126 +22732.0,22705.0,1.3244755859375 +22732.0,22706.0,1.46140625 +22732.0,22707.0,1.63756201171875 +22732.0,22708.0,1.53455615234375 +22732.0,22709.0,1.44376708984375 +22732.0,22710.0,1.725214111328125 +22732.0,22711.0,0.471263671875 +22732.0,22712.0,1.5486962890625 +22732.0,22713.0,0.50067724609375 +22732.0,22714.0,1.05365625 +22732.0,22715.0,1.334421875 +22732.0,22716.0,1.48810400390625 +22732.0,22717.0,1.39212109375 +22732.0,22718.0,1.4677412109375 +22732.0,22719.0,1.53397998046875 +22732.0,22720.0,1.2108759765625 +22732.0,22721.0,1.23648193359375 +22732.0,22722.0,1.28968359375 +22732.0,22723.0,1.33576318359375 +22732.0,22724.0,1.49893115234375 +22732.0,22725.0,1.377848388671875 +22732.0,22726.0,1.48771044921875 +22732.0,22727.0,0.56168310546875 +22732.0,22728.0,1.34117578125 +22732.0,22729.0,1.118927978515625 +22732.0,22730.0,1.22064892578125 +22732.0,22731.0,0.71157177734375 +22732.0,22732.0,0.1982421875 +22732.0,22733.0,3.14774951171875 +22732.0,22734.0,4.331919921875 +22732.0,22735.0,3.05150048828125 +22732.0,22736.0,3.87027734375 +22733.0,22635.0,4.79931982421875 +22733.0,22639.0,3.860391296386719 +22733.0,22640.0,3.9461396484375 +22733.0,22641.0,3.257587890625 +22733.0,22642.0,3.382820068359375 +22733.0,22643.0,3.364308837890625 +22733.0,22644.0,3.58049169921875 +22733.0,22645.0,3.64479833984375 +22733.0,22646.0,3.4778458251953124 +22733.0,22647.0,3.82175830078125 +22733.0,22648.0,3.719187530517578 +22733.0,22649.0,4.3655791015625 +22733.0,22650.0,4.701798828125 +22733.0,22651.0,4.79923681640625 +22733.0,22652.0,3.5930302734375 +22733.0,22653.0,4.07075732421875 +22733.0,22654.0,4.61209521484375 +22733.0,22655.0,4.6555732421875 +22733.0,22656.0,4.788099243164062 +22733.0,22657.0,4.6800908203125 +22733.0,22658.0,3.3147802734375 +22733.0,22659.0,3.045658203125 +22733.0,22660.0,3.161017578125 +22733.0,22661.0,3.29320654296875 +22733.0,22662.0,3.35230517578125 +22733.0,22663.0,3.65006103515625 +22733.0,22664.0,3.46331884765625 +22733.0,22665.0,3.99321240234375 +22733.0,22666.0,3.26587939453125 +22733.0,22667.0,2.89541162109375 +22733.0,22668.0,3.40470166015625 +22733.0,22669.0,3.171337158203125 +22733.0,22670.0,2.9526455078125 +22733.0,22671.0,4.2190961914062495 +22733.0,22672.0,4.8155703125 +22733.0,22673.0,4.1237993164062505 +22733.0,22674.0,4.060109375 +22733.0,22675.0,3.757569458007812 +22733.0,22676.0,3.868732223510742 +22733.0,22677.0,3.913172790527344 +22733.0,22678.0,3.57673388671875 +22733.0,22679.0,3.538735107421875 +22733.0,22680.0,3.38355615234375 +22733.0,22681.0,3.651484375 +22733.0,22682.0,3.108106689453125 +22733.0,22683.0,3.182318115234375 +22733.0,22684.0,3.482697265625 +22733.0,22685.0,4.55723876953125 +22733.0,22686.0,4.839884765625 +22733.0,22687.0,4.476021728515625 +22733.0,22688.0,4.5851044921875 +22733.0,22689.0,3.539017822265625 +22733.0,22690.0,3.40865576171875 +22733.0,22691.0,3.468064453125 +22733.0,22692.0,3.392777587890625 +22733.0,22693.0,3.6822431640625 +22733.0,22694.0,4.44430224609375 +22733.0,22695.0,3.497464904785156 +22733.0,22696.0,3.483947509765625 +22733.0,22697.0,3.263880157470703 +22733.0,22698.0,3.25361083984375 +22733.0,22699.0,3.3165380859375 +22733.0,22700.0,3.7313115234375 +22733.0,22701.0,3.421585327148437 +22733.0,22702.0,3.4390302734375 +22733.0,22703.0,3.01477197265625 +22733.0,22704.0,3.3159586181640623 +22733.0,22705.0,3.42698291015625 +22733.0,22706.0,3.53291357421875 +22733.0,22707.0,3.7400693359375 +22733.0,22708.0,3.6370634765625 +22733.0,22709.0,3.5152744140625 +22733.0,22710.0,3.647721435546875 +22733.0,22711.0,3.21077099609375 +22733.0,22712.0,3.90420361328125 +22733.0,22713.0,2.7621845703125 +22733.0,22714.0,3.17116357421875 +22733.0,22715.0,3.03292919921875 +22733.0,22716.0,3.186611328125 +22733.0,22717.0,3.09062841796875 +22733.0,22718.0,3.16624853515625 +22733.0,22719.0,3.2324873046875 +22733.0,22720.0,2.55838330078125 +22733.0,22721.0,2.2489892578125 +22733.0,22722.0,2.18419091796875 +22733.0,22723.0,2.2302705078125 +22733.0,22724.0,2.9294384765625 +22733.0,22725.0,2.376355712890625 +22733.0,22726.0,2.3822177734375 +22733.0,22727.0,2.9171904296875 +22733.0,22728.0,2.35668310546875 +22733.0,22729.0,2.243435302734375 +22733.0,22730.0,2.18215625 +22733.0,22731.0,2.6850791015625 +22733.0,22732.0,3.14774951171875 +22733.0,22733.0,0.2132568359375 +22733.0,22734.0,3.40442724609375 +22733.0,22735.0,0.2990078124999999 +22733.0,22736.0,1.25378466796875 +22734.0,22703.0,4.7929423828125 +22734.0,22711.0,4.35094140625 +22734.0,22713.0,4.63435498046875 +22734.0,22727.0,4.69536083984375 +22734.0,22731.0,4.84524951171875 +22734.0,22732.0,4.331919921875 +22734.0,22733.0,3.40442724609375 +22734.0,22734.0,0.53759765625 +22734.0,22735.0,3.30917822265625 +22734.0,22736.0,2.470955078125 +22735.0,22635.0,4.70307080078125 +22735.0,22639.0,3.764142272949219 +22735.0,22640.0,3.849890625 +22735.0,22641.0,3.1613388671875 +22735.0,22642.0,3.286571044921875 +22735.0,22643.0,3.268059814453125 +22735.0,22644.0,3.48424267578125 +22735.0,22645.0,3.54854931640625 +22735.0,22646.0,3.3815968017578126 +22735.0,22647.0,3.72550927734375 +22735.0,22648.0,3.622938507080078 +22735.0,22649.0,4.269330078125 +22735.0,22650.0,4.6055498046875 +22735.0,22651.0,4.70298779296875 +22735.0,22652.0,3.49678125 +22735.0,22653.0,3.97450830078125 +22735.0,22654.0,4.51584619140625 +22735.0,22655.0,4.55932421875 +22735.0,22656.0,4.691850219726563 +22735.0,22657.0,4.583841796875 +22735.0,22658.0,3.21853125 +22735.0,22659.0,2.9494091796875 +22735.0,22660.0,3.0647685546875 +22735.0,22661.0,3.19695751953125 +22735.0,22662.0,3.25605615234375 +22735.0,22663.0,3.55381201171875 +22735.0,22664.0,3.36706982421875 +22735.0,22665.0,3.89696337890625 +22735.0,22666.0,3.16963037109375 +22735.0,22667.0,2.79916259765625 +22735.0,22668.0,3.30845263671875 +22735.0,22669.0,3.075088134765625 +22735.0,22670.0,2.856396484375 +22735.0,22671.0,4.12284716796875 +22735.0,22672.0,4.7193212890625 +22735.0,22673.0,4.027550292968749 +22735.0,22674.0,3.9638603515625 +22735.0,22675.0,3.661320434570313 +22735.0,22676.0,3.772483200073242 +22735.0,22677.0,3.816923767089844 +22735.0,22678.0,3.48048486328125 +22735.0,22679.0,3.442486083984375 +22735.0,22680.0,3.28730712890625 +22735.0,22681.0,3.5552353515625 +22735.0,22682.0,3.011857666015625 +22735.0,22683.0,3.086069091796875 +22735.0,22684.0,3.3864482421875 +22735.0,22685.0,4.46098974609375 +22735.0,22686.0,4.7436357421875 +22735.0,22687.0,4.379772705078125 +22735.0,22688.0,4.48885546875 +22735.0,22689.0,3.442768798828125 +22735.0,22690.0,3.31240673828125 +22735.0,22691.0,3.3718154296875 +22735.0,22692.0,3.296528564453125 +22735.0,22693.0,3.585994140625 +22735.0,22694.0,4.34805322265625 +22735.0,22695.0,3.4012158813476563 +22735.0,22696.0,3.387698486328125 +22735.0,22697.0,3.1676311340332037 +22735.0,22698.0,3.15736181640625 +22735.0,22699.0,3.2202890625 +22735.0,22700.0,3.6350625 +22735.0,22701.0,3.3253363037109374 +22735.0,22702.0,3.34278125 +22735.0,22703.0,2.91852294921875 +22735.0,22704.0,3.2197095947265626 +22735.0,22705.0,3.33073388671875 +22735.0,22706.0,3.43666455078125 +22735.0,22707.0,3.6438203125 +22735.0,22708.0,3.540814453125 +22735.0,22709.0,3.419025390625 +22735.0,22710.0,3.551472412109375 +22735.0,22711.0,3.11452197265625 +22735.0,22712.0,3.80795458984375 +22735.0,22713.0,2.665935546875 +22735.0,22714.0,3.07491455078125 +22735.0,22715.0,2.93668017578125 +22735.0,22716.0,3.0903623046875 +22735.0,22717.0,2.99437939453125 +22735.0,22718.0,3.06999951171875 +22735.0,22719.0,3.13623828125 +22735.0,22720.0,2.46213427734375 +22735.0,22721.0,2.152740234375 +22735.0,22722.0,2.08794189453125 +22735.0,22723.0,2.1340214843750003 +22735.0,22724.0,2.833189453125 +22735.0,22725.0,2.280106689453125 +22735.0,22726.0,2.28596875 +22735.0,22727.0,2.82094140625 +22735.0,22728.0,2.26043408203125 +22735.0,22729.0,2.147186279296875 +22735.0,22730.0,2.0859072265625 +22735.0,22731.0,2.588830078125 +22735.0,22732.0,3.05150048828125 +22735.0,22733.0,0.2990078124999999 +22735.0,22734.0,3.30917822265625 +22735.0,22735.0,0.2027587890625 +22735.0,22736.0,1.15853564453125 +22736.0,22639.0,4.582919128417969 +22736.0,22640.0,4.66866748046875 +22736.0,22641.0,3.98011572265625 +22736.0,22642.0,4.105347900390624 +22736.0,22643.0,4.086836669921875 +22736.0,22644.0,4.30301953125 +22736.0,22645.0,4.367326171875 +22736.0,22646.0,4.200373657226563 +22736.0,22647.0,4.5442861328125 +22736.0,22648.0,4.441715362548828 +22736.0,22652.0,4.31555810546875 +22736.0,22653.0,4.79328515625 +22736.0,22658.0,4.03730810546875 +22736.0,22659.0,3.76818603515625 +22736.0,22660.0,3.88354541015625 +22736.0,22661.0,4.015734375 +22736.0,22662.0,4.0748330078125 +22736.0,22663.0,4.3725888671875 +22736.0,22664.0,4.1858466796875 +22736.0,22665.0,4.715740234375 +22736.0,22666.0,3.9884072265625 +22736.0,22667.0,3.617939453125 +22736.0,22668.0,4.1272294921875 +22736.0,22669.0,3.893864990234375 +22736.0,22670.0,3.67517333984375 +22736.0,22671.0,4.9416240234375 +22736.0,22673.0,4.8463271484375 +22736.0,22674.0,4.78263720703125 +22736.0,22675.0,4.480097290039063 +22736.0,22676.0,4.5912600555419925 +22736.0,22677.0,4.635700622558594 +22736.0,22678.0,4.29926171875 +22736.0,22679.0,4.261262939453125 +22736.0,22680.0,4.106083984375 +22736.0,22681.0,4.37401220703125 +22736.0,22682.0,3.830634521484375 +22736.0,22683.0,3.904845947265625 +22736.0,22684.0,4.20522509765625 +22736.0,22689.0,4.261545654296875 +22736.0,22690.0,4.13118359375 +22736.0,22691.0,4.190592285156249 +22736.0,22692.0,4.115305419921874 +22736.0,22693.0,4.40477099609375 +22736.0,22695.0,4.219992736816407 +22736.0,22696.0,4.2064753417968745 +22736.0,22697.0,3.986407989501953 +22736.0,22698.0,3.976138671875 +22736.0,22699.0,4.03906591796875 +22736.0,22700.0,4.45383935546875 +22736.0,22701.0,4.144113159179687 +22736.0,22702.0,4.16155810546875 +22736.0,22703.0,3.7372998046875 +22736.0,22704.0,4.038486450195313 +22736.0,22705.0,4.1495107421875 +22736.0,22706.0,4.25544140625 +22736.0,22707.0,4.46259716796875 +22736.0,22708.0,4.35959130859375 +22736.0,22709.0,4.23780224609375 +22736.0,22710.0,4.370249267578125 +22736.0,22711.0,3.933298828125 +22736.0,22712.0,4.6267314453125 +22736.0,22713.0,3.48471240234375 +22736.0,22714.0,3.89369140625 +22736.0,22715.0,3.75545703125 +22736.0,22716.0,3.90913916015625 +22736.0,22717.0,3.81315625 +22736.0,22718.0,3.8887763671875 +22736.0,22719.0,3.95501513671875 +22736.0,22720.0,3.2809111328125 +22736.0,22721.0,2.97151708984375 +22736.0,22722.0,2.90671875 +22736.0,22723.0,2.95279833984375 +22736.0,22724.0,3.65196630859375 +22736.0,22725.0,3.098883544921875 +22736.0,22726.0,3.10474560546875 +22736.0,22727.0,3.63971826171875 +22736.0,22728.0,3.0792109375 +22736.0,22729.0,2.965963134765625 +22736.0,22730.0,2.90468408203125 +22736.0,22731.0,3.40760693359375 +22736.0,22732.0,3.87027734375 +22736.0,22733.0,1.25378466796875 +22736.0,22734.0,2.470955078125 +22736.0,22735.0,1.15853564453125 +22736.0,22736.0,0.3203125 +22737.0,22737.0,0.082763671875 +22737.0,22738.0,0.229070068359375 +22737.0,22739.0,0.4586796875 +22737.0,22740.0,0.235075439453125 +22737.0,22741.0,0.293098876953125 +22737.0,22742.0,0.22933349609375 +22737.0,22743.0,0.47687255859375 +22737.0,22744.0,0.431348388671875 +22737.0,22745.0,0.432944091796875 +22737.0,22746.0,0.3683114013671875 +22737.0,22747.0,0.2764551239013672 +22737.0,22748.0,0.308723388671875 +22737.0,22749.0,0.5181118164062499 +22737.0,22750.0,0.5749609375 +22737.0,22751.0,0.6072444458007813 +22737.0,22752.0,0.4733038330078125 +22737.0,22753.0,0.4139140625 +22737.0,22754.0,0.3729158325195312 +22737.0,22755.0,0.6385322265625 +22737.0,22756.0,0.375517333984375 +22737.0,22757.0,0.5627080078125 +22737.0,22758.0,0.57587646484375 +22737.0,22759.0,0.9391767578125 +22737.0,22760.0,0.83901806640625 +22737.0,22761.0,0.6705615234375 +22737.0,22762.0,0.9714345703125 +22737.0,22763.0,0.70321484375 +22737.0,22764.0,1.0567421875 +22737.0,22765.0,0.8838671875 +22737.0,22766.0,1.3078792724609376 +22737.0,22767.0,0.8170504150390625 +22737.0,22768.0,0.80234765625 +22737.0,22769.0,0.750343994140625 +22737.0,22770.0,0.5392613525390625 +22737.0,22771.0,0.363309814453125 +22737.0,22772.0,0.556259033203125 +22737.0,22773.0,0.5376943359374999 +22737.0,22774.0,0.6519627380371094 +22737.0,22775.0,0.688005615234375 +22737.0,22776.0,0.81561962890625 +22737.0,22777.0,0.91694091796875 +22737.0,22778.0,0.4986279296875 +22737.0,22779.0,0.895833984375 +22737.0,22780.0,0.9800548095703124 +22737.0,22781.0,0.854615966796875 +22737.0,22782.0,0.80905517578125 +22737.0,22783.0,0.744109130859375 +22737.0,22784.0,1.251953369140625 +22737.0,22785.0,1.402921142578125 +22737.0,22786.0,1.0763505859375 +22737.0,22787.0,1.2235107421875 +22737.0,22788.0,1.0873370361328123 +22737.0,22789.0,1.577530029296875 +22737.0,22790.0,1.643277587890625 +22737.0,22791.0,1.829024658203125 +22737.0,22792.0,1.485345703125 +22737.0,22793.0,1.4179893798828125 +22737.0,22794.0,1.2030247802734375 +22737.0,22795.0,1.73634423828125 +22737.0,22796.0,1.8371298828125 +22737.0,22797.0,1.2658242797851562 +22737.0,22798.0,0.9183534545898436 +22737.0,22799.0,0.694435546875 +22737.0,22800.0,1.013239990234375 +22737.0,22801.0,0.73020458984375 +22737.0,22802.0,1.090197998046875 +22737.0,22803.0,0.9733984375 +22737.0,22804.0,1.0827548828125 +22737.0,22805.0,0.8774921875 +22737.0,22806.0,1.00941259765625 +22737.0,22807.0,1.023421875 +22737.0,22808.0,1.255517822265625 +22737.0,22809.0,1.0807000732421874 +22737.0,22810.0,1.56058251953125 +22737.0,22811.0,1.194816650390625 +22737.0,22812.0,1.56018603515625 +22737.0,22813.0,1.36562744140625 +22737.0,22814.0,1.460893310546875 +22737.0,22815.0,1.63618212890625 +22737.0,22816.0,1.605775634765625 +22737.0,22817.0,1.7112122802734375 +22737.0,22818.0,1.5702220458984375 +22738.0,22737.0,0.229070068359375 +22738.0,22738.0,0.02337646484375 +22738.0,22739.0,0.351986083984375 +22738.0,22740.0,0.2603818359375 +22738.0,22741.0,0.2134052734375 +22738.0,22742.0,0.375639892578125 +22738.0,22743.0,0.397178955078125 +22738.0,22744.0,0.32465478515625 +22738.0,22745.0,0.23125048828125 +22738.0,22746.0,0.1666177978515625 +22738.0,22747.0,0.3247615203857422 +22738.0,22748.0,0.22902978515625 +22738.0,22749.0,0.664418212890625 +22738.0,22750.0,0.721267333984375 +22738.0,22751.0,0.7465508422851562 +22738.0,22752.0,0.5886102294921876 +22738.0,22753.0,0.560220458984375 +22738.0,22754.0,0.4692222290039062 +22738.0,22755.0,0.686838623046875 +22738.0,22756.0,0.42382373046875 +22738.0,22757.0,0.456014404296875 +22738.0,22758.0,0.469182861328125 +22738.0,22759.0,0.750483154296875 +22738.0,22760.0,0.650324462890625 +22738.0,22761.0,0.563867919921875 +22738.0,22762.0,0.864740966796875 +22738.0,22763.0,0.5145212402343751 +22738.0,22764.0,0.868048583984375 +22738.0,22765.0,0.695173583984375 +22738.0,22766.0,1.1201856689453125 +22738.0,22767.0,0.6153568115234375 +22738.0,22768.0,0.613654052734375 +22738.0,22769.0,0.548650390625 +22738.0,22770.0,0.3375677490234375 +22738.0,22771.0,0.4076162109375 +22738.0,22772.0,0.6005654296875 +22738.0,22773.0,0.458000732421875 +22738.0,22774.0,0.6992691345214844 +22738.0,22775.0,0.73531201171875 +22738.0,22776.0,0.859926025390625 +22738.0,22777.0,0.964247314453125 +22738.0,22778.0,0.545934326171875 +22738.0,22779.0,0.940140380859375 +22738.0,22780.0,1.0243612060546874 +22738.0,22781.0,0.89892236328125 +22738.0,22782.0,0.853361572265625 +22738.0,22783.0,0.78741552734375 +22738.0,22784.0,1.239259765625 +22738.0,22785.0,1.3902275390625 +22738.0,22786.0,1.095656982421875 +22738.0,22787.0,1.267817138671875 +22738.0,22788.0,1.0906434326171874 +22738.0,22789.0,1.52483642578125 +22738.0,22790.0,1.590583984375 +22738.0,22791.0,1.8173310546875 +22738.0,22792.0,1.432652099609375 +22738.0,22793.0,1.3652957763671876 +22738.0,22794.0,1.0633311767578124 +22738.0,22795.0,1.683650634765625 +22738.0,22796.0,1.697436279296875 +22738.0,22797.0,1.2131306762695313 +22738.0,22798.0,0.8656598510742187 +22738.0,22799.0,0.737741943359375 +22738.0,22800.0,0.83754638671875 +22738.0,22801.0,0.650510986328125 +22738.0,22802.0,0.91450439453125 +22738.0,22803.0,0.797704833984375 +22738.0,22804.0,0.907061279296875 +22738.0,22805.0,0.675798583984375 +22738.0,22806.0,0.833718994140625 +22738.0,22807.0,0.821728271484375 +22738.0,22808.0,1.07982421875 +22738.0,22809.0,0.8790064697265625 +22738.0,22810.0,1.384888916015625 +22738.0,22811.0,1.019123046875 +22738.0,22812.0,1.384492431640625 +22738.0,22813.0,1.189933837890625 +22738.0,22814.0,1.28519970703125 +22738.0,22815.0,1.460488525390625 +22738.0,22816.0,1.43008203125 +22738.0,22817.0,1.5355186767578124 +22738.0,22818.0,1.3945284423828126 +22739.0,22737.0,0.4586796875 +22739.0,22738.0,0.351986083984375 +22739.0,22739.0,0.110595703125 +22739.0,22740.0,0.489991455078125 +22739.0,22741.0,0.425014892578125 +22739.0,22742.0,0.60524951171875 +22739.0,22743.0,0.44878857421875 +22739.0,22744.0,0.274264404296875 +22739.0,22745.0,0.309860107421875 +22739.0,22746.0,0.3622274169921875 +22739.0,22747.0,0.5213711395263672 +22739.0,22748.0,0.425639404296875 +22739.0,22749.0,0.89402783203125 +22739.0,22750.0,0.950876953125 +22739.0,22751.0,0.9551604614257811 +22739.0,22752.0,0.7902198486328125 +22739.0,22753.0,0.789830078125 +22739.0,22754.0,0.6778318481445312 +22739.0,22755.0,0.8954482421875 +22739.0,22756.0,0.620433349609375 +22739.0,22757.0,0.3856240234375 +22739.0,22758.0,0.23779248046875 +22739.0,22759.0,0.6010927734375 +22739.0,22760.0,0.50093408203125 +22739.0,22761.0,0.3914775390625 +22739.0,22762.0,0.7943505859375 +22739.0,22763.0,0.365130859375 +22739.0,22764.0,0.718658203125 +22739.0,22765.0,0.5457832031250001 +22739.0,22766.0,0.9697952880859376 +22739.0,22767.0,0.4809664306640625 +22739.0,22768.0,0.464263671875 +22739.0,22769.0,0.414260009765625 +22739.0,22770.0,0.5331773681640626 +22739.0,22771.0,0.604225830078125 +22739.0,22772.0,0.797175048828125 +22739.0,22773.0,0.6546103515625 +22739.0,22774.0,0.8958787536621093 +22739.0,22775.0,0.931921630859375 +22739.0,22776.0,1.05653564453125 +22739.0,22777.0,1.16085693359375 +22739.0,22778.0,0.7425439453125 +22739.0,22779.0,1.13675 +22739.0,22780.0,1.2209708251953124 +22739.0,22781.0,1.095531982421875 +22739.0,22782.0,1.04997119140625 +22739.0,22783.0,0.984025146484375 +22739.0,22784.0,1.430869384765625 +22739.0,22785.0,1.581837158203125 +22739.0,22786.0,1.2872666015625 +22739.0,22787.0,1.4644267578125 +22739.0,22788.0,1.2822530517578126 +22739.0,22789.0,1.716446044921875 +22739.0,22790.0,1.782193603515625 +22739.0,22791.0,2.008940673828125 +22739.0,22792.0,1.62426171875 +22739.0,22793.0,1.5569053955078125 +22739.0,22794.0,1.1599407958984376 +22739.0,22795.0,1.87526025390625 +22739.0,22796.0,1.7870458984375 +22739.0,22797.0,1.3187402954101564 +22739.0,22798.0,1.0572694702148435 +22739.0,22799.0,0.9343515625 +22739.0,22800.0,0.934156005859375 +22739.0,22801.0,0.84712060546875 +22739.0,22802.0,0.857114013671875 +22739.0,22803.0,0.894314453125 +22739.0,22804.0,0.8496708984375 +22739.0,22805.0,0.750408203125 +22739.0,22806.0,0.77632861328125 +22739.0,22807.0,0.687337890625 +22739.0,22808.0,0.973433837890625 +22739.0,22809.0,0.7446160888671876 +22739.0,22810.0,1.32749853515625 +22739.0,22811.0,0.961732666015625 +22739.0,22812.0,1.32710205078125 +22739.0,22813.0,1.13254345703125 +22739.0,22814.0,1.227809326171875 +22739.0,22815.0,1.40309814453125 +22739.0,22816.0,1.372691650390625 +22739.0,22817.0,1.4781282958984374 +22739.0,22818.0,1.3371380615234374 +22740.0,22737.0,0.235075439453125 +22740.0,22738.0,0.2603818359375 +22740.0,22739.0,0.489991455078125 +22740.0,22740.0,0.05938720703125 +22740.0,22741.0,0.32441064453125 +22740.0,22742.0,0.181645263671875 +22740.0,22743.0,0.423184326171875 +22740.0,22744.0,0.46266015625 +22740.0,22745.0,0.464255859375 +22740.0,22746.0,0.3996231689453125 +22740.0,22747.0,0.4287668914794922 +22740.0,22748.0,0.34003515625 +22740.0,22749.0,0.470423583984375 +22740.0,22750.0,0.527272705078125 +22740.0,22751.0,0.5595562133789063 +22740.0,22752.0,0.4026156005859375 +22740.0,22753.0,0.366225830078125 +22740.0,22754.0,0.3252276000976563 +22740.0,22755.0,0.614843994140625 +22740.0,22756.0,0.5278291015625001 +22740.0,22757.0,0.594019775390625 +22740.0,22758.0,0.607188232421875 +22740.0,22759.0,0.970488525390625 +22740.0,22760.0,0.870329833984375 +22740.0,22761.0,0.701873291015625 +22740.0,22762.0,0.994746337890625 +22740.0,22763.0,0.734526611328125 +22740.0,22764.0,1.088053955078125 +22740.0,22765.0,0.915178955078125 +22740.0,22766.0,1.3391910400390623 +22740.0,22767.0,0.8483621826171875 +22740.0,22768.0,0.833659423828125 +22740.0,22769.0,0.78165576171875 +22740.0,22770.0,0.5705731201171875 +22740.0,22771.0,0.51562158203125 +22740.0,22772.0,0.70857080078125 +22740.0,22773.0,0.569006103515625 +22740.0,22774.0,0.8042745056152344 +22740.0,22775.0,0.8403173828125 +22740.0,22776.0,0.967931396484375 +22740.0,22777.0,1.051252685546875 +22740.0,22778.0,0.650939697265625 +22740.0,22779.0,1.048145751953125 +22740.0,22780.0,1.1323665771484377 +22740.0,22781.0,1.006927734375 +22740.0,22782.0,0.961366943359375 +22740.0,22783.0,0.8964208984375 +22740.0,22784.0,1.35026513671875 +22740.0,22785.0,1.50123291015625 +22740.0,22786.0,1.206662353515625 +22740.0,22787.0,1.375822509765625 +22740.0,22788.0,1.2016488037109374 +22740.0,22789.0,1.635841796875 +22740.0,22790.0,1.70158935546875 +22740.0,22791.0,1.92833642578125 +22740.0,22792.0,1.543657470703125 +22740.0,22793.0,1.4763011474609375 +22740.0,22794.0,1.2613365478515626 +22740.0,22795.0,1.794656005859375 +22740.0,22796.0,1.895441650390625 +22740.0,22797.0,1.3241360473632813 +22740.0,22798.0,0.9766652221679688 +22740.0,22799.0,0.846747314453125 +22740.0,22800.0,1.0445517578125 +22740.0,22801.0,0.761516357421875 +22740.0,22802.0,1.121509765625 +22740.0,22803.0,1.004710205078125 +22740.0,22804.0,1.114066650390625 +22740.0,22805.0,0.908803955078125 +22740.0,22806.0,1.040724365234375 +22740.0,22807.0,1.054733642578125 +22740.0,22808.0,1.28682958984375 +22740.0,22809.0,1.1120118408203126 +22740.0,22810.0,1.591894287109375 +22740.0,22811.0,1.22612841796875 +22740.0,22812.0,1.591497802734375 +22740.0,22813.0,1.396939208984375 +22740.0,22814.0,1.492205078125 +22740.0,22815.0,1.667493896484375 +22740.0,22816.0,1.63708740234375 +22740.0,22817.0,1.7425240478515625 +22740.0,22818.0,1.6015338134765624 +22741.0,22737.0,0.293098876953125 +22741.0,22738.0,0.2134052734375 +22741.0,22739.0,0.425014892578125 +22741.0,22740.0,0.32441064453125 +22741.0,22741.0,0.05743408203125 +22741.0,22742.0,0.439668701171875 +22741.0,22743.0,0.337207763671875 +22741.0,22744.0,0.34668359375 +22741.0,22745.0,0.403279296875 +22741.0,22746.0,0.3566466064453125 +22741.0,22747.0,0.4867903289794922 +22741.0,22748.0,0.39505859375 +22741.0,22749.0,0.728447021484375 +22741.0,22750.0,0.785296142578125 +22741.0,22751.0,0.8175796508789063 +22741.0,22752.0,0.6006390380859375 +22741.0,22753.0,0.624249267578125 +22741.0,22754.0,0.5832510375976563 +22741.0,22755.0,0.848867431640625 +22741.0,22756.0,0.5858525390625 +22741.0,22757.0,0.442043212890625 +22741.0,22758.0,0.542211669921875 +22741.0,22759.0,0.905511962890625 +22741.0,22760.0,0.805353271484375 +22741.0,22761.0,0.636896728515625 +22741.0,22762.0,0.850769775390625 +22741.0,22763.0,0.669550048828125 +22741.0,22764.0,1.023077392578125 +22741.0,22765.0,0.850202392578125 +22741.0,22766.0,1.2742144775390625 +22741.0,22767.0,0.7873856201171875 +22741.0,22768.0,0.768682861328125 +22741.0,22769.0,0.72067919921875 +22741.0,22770.0,0.5275965576171875 +22741.0,22771.0,0.57364501953125 +22741.0,22772.0,0.76659423828125 +22741.0,22773.0,0.624029541015625 +22741.0,22774.0,0.8622979431152343 +22741.0,22775.0,0.8983408203125 +22741.0,22776.0,1.025954833984375 +22741.0,22777.0,1.127276123046875 +22741.0,22778.0,0.708963134765625 +22741.0,22779.0,1.106169189453125 +22741.0,22780.0,1.1903900146484374 +22741.0,22781.0,1.064951171875 +22741.0,22782.0,1.019390380859375 +22741.0,22783.0,0.9534443359375 +22741.0,22784.0,1.40528857421875 +22741.0,22785.0,1.55625634765625 +22741.0,22786.0,1.261685791015625 +22741.0,22787.0,1.433845947265625 +22741.0,22788.0,1.2566722412109377 +22741.0,22789.0,1.690865234375 +22741.0,22790.0,1.75661279296875 +22741.0,22791.0,1.98335986328125 +22741.0,22792.0,1.598680908203125 +22741.0,22793.0,1.5313245849609376 +22741.0,22794.0,1.2533599853515625 +22741.0,22795.0,1.849679443359375 +22741.0,22796.0,1.887465087890625 +22741.0,22797.0,1.379159484863281 +22741.0,22798.0,1.0316886596679686 +22741.0,22799.0,0.903770751953125 +22741.0,22800.0,1.0275751953125 +22741.0,22801.0,0.816539794921875 +22741.0,22802.0,1.104533203125 +22741.0,22803.0,0.987733642578125 +22741.0,22804.0,1.097090087890625 +22741.0,22805.0,0.847827392578125 +22741.0,22806.0,1.0237478027343752 +22741.0,22807.0,0.993757080078125 +22741.0,22808.0,1.26985302734375 +22741.0,22809.0,1.0510352783203123 +22741.0,22810.0,1.574917724609375 +22741.0,22811.0,1.20915185546875 +22741.0,22812.0,1.574521240234375 +22741.0,22813.0,1.379962646484375 +22741.0,22814.0,1.475228515625 +22741.0,22815.0,1.650517333984375 +22741.0,22816.0,1.62011083984375 +22741.0,22817.0,1.7255474853515624 +22741.0,22818.0,1.5845572509765624 +22742.0,22737.0,0.22933349609375 +22742.0,22738.0,0.375639892578125 +22742.0,22739.0,0.60524951171875 +22742.0,22740.0,0.181645263671875 +22742.0,22741.0,0.439668701171875 +22742.0,22742.0,0.1759033203125 +22742.0,22743.0,0.5454423828125 +22742.0,22744.0,0.5779182128906251 +22742.0,22745.0,0.5795139160156251 +22742.0,22746.0,0.5148812255859375 +22742.0,22747.0,0.4230249481201172 +22742.0,22748.0,0.455293212890625 +22742.0,22749.0,0.464681640625 +22742.0,22750.0,0.52153076171875 +22742.0,22751.0,0.5538142700195312 +22742.0,22752.0,0.4198736572265625 +22742.0,22753.0,0.36048388671875 +22742.0,22754.0,0.3194856567382812 +22742.0,22755.0,0.60910205078125 +22742.0,22756.0,0.522087158203125 +22742.0,22757.0,0.70927783203125 +22742.0,22758.0,0.7224462890625 +22742.0,22759.0,1.08574658203125 +22742.0,22760.0,0.985587890625 +22742.0,22761.0,0.81713134765625 +22742.0,22762.0,1.11700439453125 +22742.0,22763.0,0.84978466796875 +22742.0,22764.0,1.20331201171875 +22742.0,22765.0,1.03043701171875 +22742.0,22766.0,1.4544490966796877 +22742.0,22767.0,0.9636202392578124 +22742.0,22768.0,0.94891748046875 +22742.0,22769.0,0.896913818359375 +22742.0,22770.0,0.6858311767578125 +22742.0,22771.0,0.509879638671875 +22742.0,22772.0,0.702828857421875 +22742.0,22773.0,0.68426416015625 +22742.0,22774.0,0.7985325622558593 +22742.0,22775.0,0.834575439453125 +22742.0,22776.0,0.962189453125 +22742.0,22777.0,1.0455107421875 +22742.0,22778.0,0.64519775390625 +22742.0,22779.0,1.04240380859375 +22742.0,22780.0,1.1266246337890624 +22742.0,22781.0,1.001185791015625 +22742.0,22782.0,0.955625 +22742.0,22783.0,0.890678955078125 +22742.0,22784.0,1.398523193359375 +22742.0,22785.0,1.549490966796875 +22742.0,22786.0,1.22292041015625 +22742.0,22787.0,1.37008056640625 +22742.0,22788.0,1.2339068603515626 +22742.0,22789.0,1.724099853515625 +22742.0,22790.0,1.789847412109375 +22742.0,22791.0,1.975594482421875 +22742.0,22792.0,1.63191552734375 +22742.0,22793.0,1.5645592041015626 +22742.0,22794.0,1.3495946044921876 +22742.0,22795.0,1.8829140625 +22742.0,22796.0,1.98369970703125 +22742.0,22797.0,1.4123941040039063 +22742.0,22798.0,1.0649232788085938 +22742.0,22799.0,0.84100537109375 +22742.0,22800.0,1.159809814453125 +22742.0,22801.0,0.8767744140625 +22742.0,22802.0,1.236767822265625 +22742.0,22803.0,1.11996826171875 +22742.0,22804.0,1.22932470703125 +22742.0,22805.0,1.02406201171875 +22742.0,22806.0,1.155982421875 +22742.0,22807.0,1.16999169921875 +22742.0,22808.0,1.402087646484375 +22742.0,22809.0,1.2272698974609375 +22742.0,22810.0,1.70715234375 +22742.0,22811.0,1.341386474609375 +22742.0,22812.0,1.706755859375 +22742.0,22813.0,1.512197265625 +22742.0,22814.0,1.607463134765625 +22742.0,22815.0,1.782751953125 +22742.0,22816.0,1.752345458984375 +22742.0,22817.0,1.8577821044921876 +22742.0,22818.0,1.7167918701171876 +22743.0,22737.0,0.47687255859375 +22743.0,22738.0,0.397178955078125 +22743.0,22739.0,0.44878857421875 +22743.0,22740.0,0.423184326171875 +22743.0,22741.0,0.337207763671875 +22743.0,22742.0,0.5454423828125 +22743.0,22743.0,0.1309814453125 +22743.0,22744.0,0.280457275390625 +22743.0,22745.0,0.509052978515625 +22743.0,22746.0,0.5254202880859375 +22743.0,22747.0,0.6705640106201172 +22743.0,22748.0,0.578832275390625 +22743.0,22749.0,0.834220703125 +22743.0,22750.0,0.75006982421875 +22743.0,22751.0,0.7823533325195312 +22743.0,22752.0,0.4724127197265625 +22743.0,22753.0,0.58902294921875 +22743.0,22754.0,0.6890247192382812 +22743.0,22755.0,0.97864111328125 +22743.0,22756.0,0.769626220703125 +22743.0,22757.0,0.37581689453125 +22743.0,22758.0,0.5239853515624999 +22743.0,22759.0,0.88528564453125 +22743.0,22760.0,0.785126953125 +22743.0,22761.0,0.59467041015625 +22743.0,22762.0,0.70254345703125 +22743.0,22763.0,0.65132373046875 +22743.0,22764.0,1.00285107421875 +22743.0,22765.0,0.82997607421875 +22743.0,22766.0,1.2019881591796877 +22743.0,22767.0,0.8191593017578125 +22743.0,22768.0,0.75045654296875 +22743.0,22769.0,0.752452880859375 +22743.0,22770.0,0.6963702392578125 +22743.0,22771.0,0.757418701171875 +22743.0,22772.0,0.950367919921875 +22743.0,22773.0,0.80780322265625 +22743.0,22774.0,1.0460716247558597 +22743.0,22775.0,1.082114501953125 +22743.0,22776.0,1.209728515625 +22743.0,22777.0,1.3110498046875 +22743.0,22778.0,0.89273681640625 +22743.0,22779.0,1.28994287109375 +22743.0,22780.0,1.3741636962890624 +22743.0,22781.0,1.248724853515625 +22743.0,22782.0,1.2031640625 +22743.0,22783.0,1.137218017578125 +22743.0,22784.0,1.589062255859375 +22743.0,22785.0,1.740030029296875 +22743.0,22786.0,1.44545947265625 +22743.0,22787.0,1.61761962890625 +22743.0,22788.0,1.4404459228515625 +22743.0,22789.0,1.874638916015625 +22743.0,22790.0,1.940386474609375 +22743.0,22791.0,2.167133544921875 +22743.0,22792.0,1.78245458984375 +22743.0,22793.0,1.7150982666015624 +22743.0,22794.0,1.3681336669921875 +22743.0,22795.0,2.0334531250000003 +22743.0,22796.0,2.00223876953125 +22743.0,22797.0,1.5299331665039062 +22743.0,22798.0,1.2154623413085937 +22743.0,22799.0,1.08754443359375 +22743.0,22800.0,1.142348876953125 +22743.0,22801.0,1.0003134765625 +22743.0,22802.0,1.195306884765625 +22743.0,22803.0,1.10250732421875 +22743.0,22804.0,1.18786376953125 +22743.0,22805.0,0.95360107421875 +22743.0,22806.0,1.114521484375 +22743.0,22807.0,1.02553076171875 +22743.0,22808.0,1.259626708984375 +22743.0,22809.0,1.0828089599609374 +22743.0,22810.0,1.66569140625 +22743.0,22811.0,1.299925537109375 +22743.0,22812.0,1.665294921875 +22743.0,22813.0,1.465736328125 +22743.0,22814.0,1.561002197265625 +22743.0,22815.0,1.725291015625 +22743.0,22816.0,1.710884521484375 +22743.0,22817.0,1.8043211669921877 +22743.0,22818.0,1.6593309326171874 +22744.0,22737.0,0.431348388671875 +22744.0,22738.0,0.32465478515625 +22744.0,22739.0,0.274264404296875 +22744.0,22740.0,0.46266015625 +22744.0,22741.0,0.34668359375 +22744.0,22742.0,0.5779182128906251 +22744.0,22743.0,0.280457275390625 +22744.0,22744.0,0.09393310546875 +22744.0,22745.0,0.38752880859375 +22744.0,22746.0,0.4038961181640625 +22744.0,22747.0,0.5630398406982422 +22744.0,22748.0,0.46730810546875 +22744.0,22749.0,0.866696533203125 +22744.0,22750.0,0.899545654296875 +22744.0,22751.0,0.9318291625976562 +22744.0,22752.0,0.6218885498046876 +22744.0,22753.0,0.738498779296875 +22744.0,22754.0,0.7195005493164063 +22744.0,22755.0,0.937116943359375 +22744.0,22756.0,0.66210205078125 +22744.0,22757.0,0.225292724609375 +22744.0,22758.0,0.391461181640625 +22744.0,22759.0,0.754761474609375 +22744.0,22760.0,0.654602783203125 +22744.0,22761.0,0.486146240234375 +22744.0,22762.0,0.634019287109375 +22744.0,22763.0,0.5187995605468749 +22744.0,22764.0,0.872326904296875 +22744.0,22765.0,0.699451904296875 +22744.0,22766.0,1.1234639892578124 +22744.0,22767.0,0.6446351318359375 +22744.0,22768.0,0.617932373046875 +22744.0,22769.0,0.5779287109375 +22744.0,22770.0,0.5748460693359375 +22744.0,22771.0,0.64589453125 +22744.0,22772.0,0.83884375 +22744.0,22773.0,0.696279052734375 +22744.0,22774.0,0.9375474548339844 +22744.0,22775.0,0.97359033203125 +22744.0,22776.0,1.098204345703125 +22744.0,22777.0,1.202525634765625 +22744.0,22778.0,0.784212646484375 +22744.0,22779.0,1.178418701171875 +22744.0,22780.0,1.2626395263671877 +22744.0,22781.0,1.13720068359375 +22744.0,22782.0,1.091639892578125 +22744.0,22783.0,1.02569384765625 +22744.0,22784.0,1.4775380859375 +22744.0,22785.0,1.628505859375 +22744.0,22786.0,1.333935302734375 +22744.0,22787.0,1.506095458984375 +22744.0,22788.0,1.3289217529296875 +22744.0,22789.0,1.76311474609375 +22744.0,22790.0,1.8288623046875 +22744.0,22791.0,2.055609375 +22744.0,22792.0,1.670930419921875 +22744.0,22793.0,1.6035740966796874 +22744.0,22794.0,1.2466094970703123 +22744.0,22795.0,1.921928955078125 +22744.0,22796.0,1.880714599609375 +22744.0,22797.0,1.4084089965820312 +22744.0,22798.0,1.103938171386719 +22744.0,22799.0,0.976020263671875 +22744.0,22800.0,1.02082470703125 +22744.0,22801.0,0.888789306640625 +22744.0,22802.0,1.02078271484375 +22744.0,22803.0,0.980983154296875 +22744.0,22804.0,1.013339599609375 +22744.0,22805.0,0.832076904296875 +22744.0,22806.0,0.939997314453125 +22744.0,22807.0,0.851006591796875 +22744.0,22808.0,1.1271025390625 +22744.0,22809.0,0.9082847900390624 +22744.0,22810.0,1.491167236328125 +22744.0,22811.0,1.1254013671875 +22744.0,22812.0,1.490770751953125 +22744.0,22813.0,1.296212158203125 +22744.0,22814.0,1.39147802734375 +22744.0,22815.0,1.566766845703125 +22744.0,22816.0,1.5363603515625 +22744.0,22817.0,1.6417969970703126 +22744.0,22818.0,1.5008067626953123 +22745.0,22737.0,0.432944091796875 +22745.0,22738.0,0.23125048828125 +22745.0,22739.0,0.309860107421875 +22745.0,22740.0,0.464255859375 +22745.0,22741.0,0.403279296875 +22745.0,22742.0,0.5795139160156251 +22745.0,22743.0,0.509052978515625 +22745.0,22744.0,0.38752880859375 +22745.0,22745.0,0.06512451171875 +22745.0,22746.0,0.1264918212890625 +22745.0,22747.0,0.2856355438232422 +22745.0,22748.0,0.18990380859375 +22745.0,22749.0,0.776292236328125 +22745.0,22750.0,0.835141357421875 +22745.0,22751.0,0.8284248657226563 +22745.0,22752.0,0.7794842529296875 +22745.0,22753.0,0.720094482421875 +22745.0,22754.0,0.5510962524414063 +22745.0,22755.0,0.768712646484375 +22745.0,22756.0,0.38469775390625 +22745.0,22757.0,0.518888427734375 +22745.0,22758.0,0.437056884765625 +22745.0,22759.0,0.587357177734375 +22745.0,22760.0,0.490198486328125 +22745.0,22761.0,0.590741943359375 +22745.0,22762.0,0.927614990234375 +22745.0,22763.0,0.354395263671875 +22745.0,22764.0,0.703922607421875 +22745.0,22765.0,0.532047607421875 +22745.0,22766.0,0.9570596923828124 +22745.0,22767.0,0.4492308349609375 +22745.0,22768.0,0.448528076171875 +22745.0,22769.0,0.3825244140625 +22745.0,22770.0,0.2954417724609375 +22745.0,22771.0,0.368490234375 +22745.0,22772.0,0.561439453125 +22745.0,22773.0,0.416874755859375 +22745.0,22774.0,0.6601431579589844 +22745.0,22775.0,0.69618603515625 +22745.0,22776.0,0.820800048828125 +22745.0,22777.0,0.925121337890625 +22745.0,22778.0,0.5068083496093749 +22745.0,22779.0,0.901014404296875 +22745.0,22780.0,0.9852352294921874 +22745.0,22781.0,0.85979638671875 +22745.0,22782.0,0.814235595703125 +22745.0,22783.0,0.74628955078125 +22745.0,22784.0,1.1951337890625 +22745.0,22785.0,1.3461015625 +22745.0,22786.0,1.051531005859375 +22745.0,22787.0,1.228691162109375 +22745.0,22788.0,1.0465174560546875 +22745.0,22789.0,1.48071044921875 +22745.0,22790.0,1.5464580078125 +22745.0,22791.0,1.773205078125 +22745.0,22792.0,1.388526123046875 +22745.0,22793.0,1.3211697998046874 +22745.0,22794.0,0.9242052001953124 +22745.0,22795.0,1.639524658203125 +22745.0,22796.0,1.558310302734375 +22745.0,22797.0,1.0860046997070312 +22745.0,22798.0,0.8215338745117188 +22745.0,22799.0,0.696615966796875 +22745.0,22800.0,0.69842041015625 +22745.0,22801.0,0.609385009765625 +22745.0,22802.0,0.77537841796875 +22745.0,22803.0,0.658578857421875 +22745.0,22804.0,0.767935302734375 +22745.0,22805.0,0.5096726074218749 +22745.0,22806.0,0.694593017578125 +22745.0,22807.0,0.655602294921875 +22745.0,22808.0,0.9406982421875 +22745.0,22809.0,0.7128804931640625 +22745.0,22810.0,1.245762939453125 +22745.0,22811.0,0.8799970703125 +22745.0,22812.0,1.245366455078125 +22745.0,22813.0,1.050807861328125 +22745.0,22814.0,1.14607373046875 +22745.0,22815.0,1.321362548828125 +22745.0,22816.0,1.2909560546875 +22745.0,22817.0,1.3963927001953125 +22745.0,22818.0,1.2554024658203125 +22746.0,22737.0,0.3683114013671875 +22746.0,22738.0,0.1666177978515625 +22746.0,22739.0,0.3622274169921875 +22746.0,22740.0,0.3996231689453125 +22746.0,22741.0,0.3566466064453125 +22746.0,22742.0,0.5148812255859375 +22746.0,22743.0,0.5254202880859375 +22746.0,22744.0,0.4038961181640625 +22746.0,22745.0,0.1264918212890625 +22746.0,22746.0,0.061859130859375 +22746.0,22747.0,0.2210028533935547 +22746.0,22748.0,0.1252711181640625 +22746.0,22749.0,0.7116595458984375 +22746.0,22750.0,0.7705086669921875 +22746.0,22751.0,0.7637921752929687 +22746.0,22752.0,0.7148515625 +22746.0,22753.0,0.6554617919921875 +22746.0,22754.0,0.4864635620117187 +22746.0,22755.0,0.7040799560546875 +22746.0,22756.0,0.3200650634765625 +22746.0,22757.0,0.5352557373046876 +22746.0,22758.0,0.4894241943359375 +22746.0,22759.0,0.6487244873046875 +22746.0,22760.0,0.5515657958984375 +22746.0,22761.0,0.6431092529296875 +22746.0,22762.0,0.9439822998046876 +22746.0,22763.0,0.4157625732421875 +22746.0,22764.0,0.7652899169921875 +22746.0,22765.0,0.5934149169921875 +22746.0,22766.0,1.018427001953125 +22746.0,22767.0,0.51059814453125 +22746.0,22768.0,0.5098953857421875 +22746.0,22769.0,0.4438917236328125 +22746.0,22770.0,0.23280908203125 +22746.0,22771.0,0.3038575439453125 +22746.0,22772.0,0.4968067626953125 +22746.0,22773.0,0.3542420654296875 +22746.0,22774.0,0.5955104675292969 +22746.0,22775.0,0.6315533447265625 +22746.0,22776.0,0.7561673583984375 +22746.0,22777.0,0.8604886474609375 +22746.0,22778.0,0.4421756591796875 +22746.0,22779.0,0.8363817138671875 +22746.0,22780.0,0.9206025390625 +22746.0,22781.0,0.7951636962890625 +22746.0,22782.0,0.7496029052734375 +22746.0,22783.0,0.6836568603515625 +22746.0,22784.0,1.1355010986328125 +22746.0,22785.0,1.2864688720703126 +22746.0,22786.0,0.9918983154296876 +22746.0,22787.0,1.1640584716796876 +22746.0,22788.0,0.986884765625 +22746.0,22789.0,1.4210777587890624 +22746.0,22790.0,1.4868253173828123 +22746.0,22791.0,1.7135723876953124 +22746.0,22792.0,1.3288934326171875 +22746.0,22793.0,1.261537109375 +22746.0,22794.0,0.958572509765625 +22746.0,22795.0,1.5798919677734375 +22746.0,22796.0,1.5926776123046875 +22746.0,22797.0,1.1093720092773438 +22746.0,22798.0,0.7619011840820312 +22746.0,22799.0,0.6339832763671875 +22746.0,22800.0,0.7327877197265625 +22746.0,22801.0,0.5467523193359375 +22746.0,22802.0,0.8097457275390625 +22746.0,22803.0,0.6929461669921875 +22746.0,22804.0,0.8023026123046875 +22746.0,22805.0,0.5710399169921875 +22746.0,22806.0,0.7289603271484375 +22746.0,22807.0,0.7169696044921875 +22746.0,22808.0,0.9750655517578124 +22746.0,22809.0,0.774247802734375 +22746.0,22810.0,1.2801302490234374 +22746.0,22811.0,0.9143643798828124 +22746.0,22812.0,1.2797337646484377 +22746.0,22813.0,1.0851751708984374 +22746.0,22814.0,1.1804410400390626 +22746.0,22815.0,1.3557298583984374 +22746.0,22816.0,1.3253233642578126 +22746.0,22817.0,1.430760009765625 +22746.0,22818.0,1.289769775390625 +22747.0,22737.0,0.2764551239013672 +22747.0,22738.0,0.3247615203857422 +22747.0,22739.0,0.5213711395263672 +22747.0,22740.0,0.4287668914794922 +22747.0,22741.0,0.4867903289794922 +22747.0,22742.0,0.4230249481201172 +22747.0,22743.0,0.6705640106201172 +22747.0,22744.0,0.5630398406982422 +22747.0,22745.0,0.2856355438232422 +22747.0,22746.0,0.2210028533935547 +22747.0,22747.0,0.0041465759277343 +22747.0,22748.0,0.1584148406982422 +22747.0,22749.0,0.4978032684326172 +22747.0,22750.0,0.5566523895263672 +22747.0,22751.0,0.5499358978271485 +22747.0,22752.0,0.5009952850341797 +22747.0,22753.0,0.4416055145263672 +22747.0,22754.0,0.2726072845458984 +22747.0,22755.0,0.4902236785888672 +22747.0,22756.0,0.1032087860107421 +22747.0,22757.0,0.6943994598388672 +22747.0,22758.0,0.6485679168701172 +22747.0,22759.0,0.8068682098388672 +22747.0,22760.0,0.7107095184326172 +22747.0,22761.0,0.8022529754638672 +22747.0,22762.0,1.1031260223388673 +22747.0,22763.0,0.5749062957763672 +22747.0,22764.0,0.9234336395263671 +22747.0,22765.0,0.7515586395263671 +22747.0,22766.0,1.1765707244873047 +22747.0,22767.0,0.6667418670654297 +22747.0,22768.0,0.6680391082763671 +22747.0,22769.0,0.6000354461669922 +22747.0,22770.0,0.3879528045654297 +22747.0,22771.0,0.2090012664794922 +22747.0,22772.0,0.2899504852294922 +22747.0,22773.0,0.3853857879638672 +22747.0,22774.0,0.3796541900634765 +22747.0,22775.0,0.4156970672607422 +22747.0,22776.0,0.5493110809326172 +22747.0,22777.0,0.6446323699951172 +22747.0,22778.0,0.2263193817138671 +22747.0,22779.0,0.6295254364013672 +22747.0,22780.0,0.7137462615966796 +22747.0,22781.0,0.5883074188232422 +22747.0,22782.0,0.5427466278076172 +22747.0,22783.0,0.4818005828857422 +22747.0,22784.0,0.9926448211669922 +22747.0,22785.0,1.1436125946044922 +22747.0,22786.0,0.8100420379638672 +22747.0,22787.0,0.9572021942138672 +22747.0,22788.0,0.8280284881591797 +22747.0,22789.0,1.4152214813232422 +22747.0,22790.0,1.430969039916992 +22747.0,22791.0,1.5627161102294922 +22747.0,22792.0,1.323037155151367 +22747.0,22793.0,1.2556808319091797 +22747.0,22794.0,1.0407162322998047 +22747.0,22795.0,1.5740356903076171 +22747.0,22796.0,1.6748213348388672 +22747.0,22797.0,1.1035157318115234 +22747.0,22798.0,0.7560449066162109 +22747.0,22799.0,0.5381269989013672 +22747.0,22800.0,0.8609314422607421 +22747.0,22801.0,0.5768960418701172 +22747.0,22802.0,0.9378894500732422 +22747.0,22803.0,0.8210898895263672 +22747.0,22804.0,0.9304463348388672 +22747.0,22805.0,0.7271836395263672 +22747.0,22806.0,0.8571040496826172 +22747.0,22807.0,0.8731133270263672 +22747.0,22808.0,1.103209274291992 +22747.0,22809.0,0.9303915252685548 +22747.0,22810.0,1.4082739715576171 +22747.0,22811.0,1.0425081024169922 +22747.0,22812.0,1.4078774871826172 +22747.0,22813.0,1.2133188934326171 +22747.0,22814.0,1.308584762573242 +22747.0,22815.0,1.4838735809326171 +22747.0,22816.0,1.453467086791992 +22747.0,22817.0,1.5589037322998047 +22747.0,22818.0,1.4179134979248047 +22748.0,22737.0,0.308723388671875 +22748.0,22738.0,0.22902978515625 +22748.0,22739.0,0.425639404296875 +22748.0,22740.0,0.34003515625 +22748.0,22741.0,0.39505859375 +22748.0,22742.0,0.455293212890625 +22748.0,22743.0,0.578832275390625 +22748.0,22744.0,0.46730810546875 +22748.0,22745.0,0.18990380859375 +22748.0,22746.0,0.1252711181640625 +22748.0,22747.0,0.1584148406982422 +22748.0,22748.0,0.06268310546875 +22748.0,22749.0,0.652071533203125 +22748.0,22750.0,0.710920654296875 +22748.0,22751.0,0.7042041625976563 +22748.0,22752.0,0.6552635498046875 +22748.0,22753.0,0.595873779296875 +22748.0,22754.0,0.4268755493164062 +22748.0,22755.0,0.644491943359375 +22748.0,22756.0,0.25747705078125 +22748.0,22757.0,0.598667724609375 +22748.0,22758.0,0.552836181640625 +22748.0,22759.0,0.712136474609375 +22748.0,22760.0,0.614977783203125 +22748.0,22761.0,0.706521240234375 +22748.0,22762.0,1.007394287109375 +22748.0,22763.0,0.479174560546875 +22748.0,22764.0,0.828701904296875 +22748.0,22765.0,0.656826904296875 +22748.0,22766.0,1.0818389892578124 +22748.0,22767.0,0.5730101318359375 +22748.0,22768.0,0.573307373046875 +22748.0,22769.0,0.5063037109374999 +22748.0,22770.0,0.2942210693359375 +22748.0,22771.0,0.24126953125 +22748.0,22772.0,0.43421875 +22748.0,22773.0,0.291654052734375 +22748.0,22774.0,0.5329224548339844 +22748.0,22775.0,0.56896533203125 +22748.0,22776.0,0.693579345703125 +22748.0,22777.0,0.797900634765625 +22748.0,22778.0,0.379587646484375 +22748.0,22779.0,0.773793701171875 +22748.0,22780.0,0.8580145263671874 +22748.0,22781.0,0.73257568359375 +22748.0,22782.0,0.687014892578125 +22748.0,22783.0,0.62106884765625 +22748.0,22784.0,1.0729130859375 +22748.0,22785.0,1.223880859375 +22748.0,22786.0,0.929310302734375 +22748.0,22787.0,1.101470458984375 +22748.0,22788.0,0.9242967529296876 +22748.0,22789.0,1.35848974609375 +22748.0,22790.0,1.4242373046875 +22748.0,22791.0,1.650984375 +22748.0,22792.0,1.266305419921875 +22748.0,22793.0,1.1989490966796874 +22748.0,22794.0,0.9839844970703124 +22748.0,22795.0,1.517303955078125 +22748.0,22796.0,1.618089599609375 +22748.0,22797.0,1.0467839965820311 +22748.0,22798.0,0.6993131713867188 +22748.0,22799.0,0.571395263671875 +22748.0,22800.0,0.76719970703125 +22748.0,22801.0,0.484164306640625 +22748.0,22802.0,0.84415771484375 +22748.0,22803.0,0.727358154296875 +22748.0,22804.0,0.836714599609375 +22748.0,22805.0,0.633451904296875 +22748.0,22806.0,0.763372314453125 +22748.0,22807.0,0.779381591796875 +22748.0,22808.0,1.0094775390625 +22748.0,22809.0,0.8366597900390625 +22748.0,22810.0,1.314542236328125 +22748.0,22811.0,0.9487763671875 +22748.0,22812.0,1.314145751953125 +22748.0,22813.0,1.119587158203125 +22748.0,22814.0,1.21485302734375 +22748.0,22815.0,1.390141845703125 +22748.0,22816.0,1.3597353515625 +22748.0,22817.0,1.4651719970703123 +22748.0,22818.0,1.3241817626953123 +22749.0,22737.0,0.5181118164062499 +22749.0,22738.0,0.664418212890625 +22749.0,22739.0,0.89402783203125 +22749.0,22740.0,0.470423583984375 +22749.0,22741.0,0.728447021484375 +22749.0,22742.0,0.464681640625 +22749.0,22743.0,0.834220703125 +22749.0,22744.0,0.866696533203125 +22749.0,22745.0,0.776292236328125 +22749.0,22746.0,0.7116595458984375 +22749.0,22747.0,0.4978032684326172 +22749.0,22748.0,0.652071533203125 +22749.0,22749.0,0.1214599609375 +22749.0,22750.0,0.18030908203125 +22749.0,22751.0,0.2105925903320312 +22749.0,22752.0,0.4006519775390625 +22749.0,22753.0,0.34126220703125 +22749.0,22754.0,0.2992639770507812 +22749.0,22755.0,0.26588037109375 +22749.0,22756.0,0.596865478515625 +22749.0,22757.0,0.99805615234375 +22749.0,22758.0,1.011224609375 +22749.0,22759.0,1.29552490234375 +22749.0,22760.0,1.1953662109375 +22749.0,22761.0,1.10590966796875 +22749.0,22762.0,1.40578271484375 +22749.0,22763.0,1.0595629882812498 +22749.0,22764.0,1.41309033203125 +22749.0,22765.0,1.24021533203125 +22749.0,22766.0,1.6652274169921877 +22749.0,22767.0,1.1603985595703126 +22749.0,22768.0,1.15869580078125 +22749.0,22769.0,1.093692138671875 +22749.0,22770.0,0.8816094970703126 +22749.0,22771.0,0.702657958984375 +22749.0,22772.0,0.783607177734375 +22749.0,22773.0,0.87904248046875 +22749.0,22774.0,0.6773108825683594 +22749.0,22775.0,0.713353759765625 +22749.0,22776.0,0.8909677734375 +22749.0,22777.0,0.7922890625 +22749.0,22778.0,0.70797607421875 +22749.0,22779.0,0.97118212890625 +22749.0,22780.0,1.0554029541015626 +22749.0,22781.0,0.929964111328125 +22749.0,22782.0,0.9994033203125 +22749.0,22783.0,0.975457275390625 +22749.0,22784.0,1.397301513671875 +22749.0,22785.0,1.486269287109375 +22749.0,22786.0,1.15969873046875 +22749.0,22787.0,1.29885888671875 +22749.0,22788.0,1.3216851806640626 +22749.0,22789.0,1.908878173828125 +22749.0,22790.0,1.772625732421875 +22749.0,22791.0,1.904372802734375 +22749.0,22792.0,1.81669384765625 +22749.0,22793.0,1.7483375244140624 +22749.0,22794.0,1.5343729248046876 +22749.0,22795.0,2.0676923828125 +22749.0,22796.0,2.16847802734375 +22749.0,22797.0,1.5971724243164065 +22749.0,22798.0,1.2497015991210938 +22749.0,22799.0,1.03178369140625 +22749.0,22800.0,1.354588134765625 +22749.0,22801.0,1.070552734375 +22749.0,22802.0,1.431546142578125 +22749.0,22803.0,1.31474658203125 +22749.0,22804.0,1.42410302734375 +22749.0,22805.0,1.22084033203125 +22749.0,22806.0,1.3507607421875 +22749.0,22807.0,1.36677001953125 +22749.0,22808.0,1.596865966796875 +22749.0,22809.0,1.4240482177734377 +22749.0,22810.0,1.9019306640625 +22749.0,22811.0,1.536164794921875 +22749.0,22812.0,1.9015341796875 +22749.0,22813.0,1.7069755859375 +22749.0,22814.0,1.802241455078125 +22749.0,22815.0,1.9775302734375 +22749.0,22816.0,1.947123779296875 +22749.0,22817.0,2.052560424804688 +22749.0,22818.0,1.911570190429688 +22750.0,22737.0,0.5749609375 +22750.0,22738.0,0.721267333984375 +22750.0,22739.0,0.950876953125 +22750.0,22740.0,0.527272705078125 +22750.0,22741.0,0.785296142578125 +22750.0,22742.0,0.52153076171875 +22750.0,22743.0,0.75006982421875 +22750.0,22744.0,0.899545654296875 +22750.0,22745.0,0.835141357421875 +22750.0,22746.0,0.7705086669921875 +22750.0,22747.0,0.5566523895263672 +22750.0,22748.0,0.710920654296875 +22750.0,22749.0,0.18030908203125 +22750.0,22750.0,0.087158203125 +22750.0,22751.0,0.1194417114257812 +22750.0,22752.0,0.3115010986328125 +22750.0,22753.0,0.252111328125 +22750.0,22754.0,0.3581130981445312 +22750.0,22755.0,0.3247294921875 +22750.0,22756.0,0.655714599609375 +22750.0,22757.0,0.9949052734375 +22750.0,22758.0,1.06807373046875 +22750.0,22759.0,1.3543740234375 +22750.0,22760.0,1.25421533203125 +22750.0,22761.0,1.1627587890625 +22750.0,22762.0,1.3216318359375 +22750.0,22763.0,1.118412109375 +22750.0,22764.0,1.471939453125 +22750.0,22765.0,1.299064453125 +22750.0,22766.0,1.7240765380859375 +22750.0,22767.0,1.2192476806640624 +22750.0,22768.0,1.217544921875 +22750.0,22769.0,1.152541259765625 +22750.0,22770.0,0.9404586181640624 +22750.0,22771.0,0.761507080078125 +22750.0,22772.0,0.842456298828125 +22750.0,22773.0,0.9378916015625 +22750.0,22774.0,0.7361600036621094 +22750.0,22775.0,0.772202880859375 +22750.0,22776.0,0.94981689453125 +22750.0,22777.0,0.81813818359375 +22750.0,22778.0,0.7668251953125 +22750.0,22779.0,1.03003125 +22750.0,22780.0,1.0972520751953123 +22750.0,22781.0,0.988813232421875 +22750.0,22782.0,1.05825244140625 +22750.0,22783.0,1.034306396484375 +22750.0,22784.0,1.456150634765625 +22750.0,22785.0,1.545118408203125 +22750.0,22786.0,1.2185478515625 +22750.0,22787.0,1.3577080078125 +22750.0,22788.0,1.3805343017578124 +22750.0,22789.0,1.967727294921875 +22750.0,22790.0,1.825474853515625 +22750.0,22791.0,1.957221923828125 +22750.0,22792.0,1.87554296875 +22750.0,22793.0,1.8071866455078125 +22750.0,22794.0,1.5932220458984374 +22750.0,22795.0,2.12654150390625 +22750.0,22796.0,2.2273271484375 +22750.0,22797.0,1.6560215454101563 +22750.0,22798.0,1.3085507202148436 +22750.0,22799.0,1.0906328125 +22750.0,22800.0,1.413437255859375 +22750.0,22801.0,1.12940185546875 +22750.0,22802.0,1.490395263671875 +22750.0,22803.0,1.373595703125 +22750.0,22804.0,1.4829521484375 +22750.0,22805.0,1.279689453125 +22750.0,22806.0,1.40960986328125 +22750.0,22807.0,1.425619140625 +22750.0,22808.0,1.655715087890625 +22750.0,22809.0,1.4828973388671876 +22750.0,22810.0,1.96077978515625 +22750.0,22811.0,1.595013916015625 +22750.0,22812.0,1.96038330078125 +22750.0,22813.0,1.76582470703125 +22750.0,22814.0,1.861090576171875 +22750.0,22815.0,2.03637939453125 +22750.0,22816.0,2.005972900390625 +22750.0,22817.0,2.1114095458984377 +22750.0,22818.0,1.9704193115234372 +22751.0,22737.0,0.6072444458007813 +22751.0,22738.0,0.7465508422851562 +22751.0,22739.0,0.9551604614257811 +22751.0,22740.0,0.5595562133789063 +22751.0,22741.0,0.8175796508789063 +22751.0,22742.0,0.5538142700195312 +22751.0,22743.0,0.7823533325195312 +22751.0,22744.0,0.9318291625976562 +22751.0,22745.0,0.8284248657226563 +22751.0,22746.0,0.7637921752929687 +22751.0,22747.0,0.5499358978271485 +22751.0,22748.0,0.7042041625976563 +22751.0,22749.0,0.2105925903320312 +22751.0,22750.0,0.1194417114257812 +22751.0,22751.0,0.0277252197265625 +22751.0,22752.0,0.3437846069335937 +22751.0,22753.0,0.2843948364257812 +22751.0,22754.0,0.3883966064453125 +22751.0,22755.0,0.3180130004882812 +22751.0,22756.0,0.6489981079101562 +22751.0,22757.0,1.0271887817382812 +22751.0,22758.0,1.0823572387695313 +22751.0,22759.0,1.3476575317382813 +22751.0,22760.0,1.2474988403320313 +22751.0,22761.0,1.1950422973632813 +22751.0,22762.0,1.3539153442382812 +22751.0,22763.0,1.1116956176757813 +22751.0,22764.0,1.4652229614257812 +22751.0,22765.0,1.2923479614257811 +22751.0,22766.0,1.717360046386719 +22751.0,22767.0,1.2125311889648438 +22751.0,22768.0,1.2108284301757812 +22751.0,22769.0,1.1458247680664062 +22751.0,22770.0,0.9337421264648438 +22751.0,22771.0,0.7547905883789062 +22751.0,22772.0,0.8357398071289063 +22751.0,22773.0,0.9311751098632812 +22751.0,22774.0,0.7294435119628906 +22751.0,22775.0,0.7654863891601562 +22751.0,22776.0,0.9431004028320312 +22751.0,22777.0,0.7264216918945312 +22751.0,22778.0,0.7601087036132812 +22751.0,22779.0,1.0233147583007811 +22751.0,22780.0,1.0055355834960935 +22751.0,22781.0,0.9820967407226564 +22751.0,22782.0,1.0515359497070311 +22751.0,22783.0,1.0275899047851562 +22751.0,22784.0,1.4494341430664062 +22751.0,22785.0,1.5384019165039062 +22751.0,22786.0,1.2118313598632813 +22751.0,22787.0,1.2729915161132812 +22751.0,22788.0,1.3738178100585938 +22751.0,22789.0,1.9610108032226563 +22751.0,22790.0,1.7337583618164063 +22751.0,22791.0,1.8655054321289064 +22751.0,22792.0,1.8688264770507808 +22751.0,22793.0,1.8004701538085937 +22751.0,22794.0,1.5865055541992188 +22751.0,22795.0,2.1198250122070315 +22751.0,22796.0,2.2206106567382813 +22751.0,22797.0,1.6493050537109375 +22751.0,22798.0,1.301834228515625 +22751.0,22799.0,1.0839163208007812 +22751.0,22800.0,1.4067207641601562 +22751.0,22801.0,1.122685363769531 +22751.0,22802.0,1.4836787719726563 +22751.0,22803.0,1.3668792114257813 +22751.0,22804.0,1.4762356567382813 +22751.0,22805.0,1.2729729614257812 +22751.0,22806.0,1.402893371582031 +22751.0,22807.0,1.4189026489257812 +22751.0,22808.0,1.6489985961914062 +22751.0,22809.0,1.4761808471679687 +22751.0,22810.0,1.9540632934570312 +22751.0,22811.0,1.5882974243164063 +22751.0,22812.0,1.9536668090820315 +22751.0,22813.0,1.7591082153320312 +22751.0,22814.0,1.854374084472656 +22751.0,22815.0,2.0296629028320314 +22751.0,22816.0,1.9992564086914064 +22751.0,22817.0,2.1046930541992186 +22751.0,22818.0,1.9637028198242188 +22752.0,22737.0,0.4733038330078125 +22752.0,22738.0,0.5886102294921876 +22752.0,22739.0,0.7902198486328125 +22752.0,22740.0,0.4026156005859375 +22752.0,22741.0,0.6006390380859375 +22752.0,22742.0,0.4198736572265625 +22752.0,22743.0,0.4724127197265625 +22752.0,22744.0,0.6218885498046876 +22752.0,22745.0,0.7794842529296875 +22752.0,22746.0,0.7148515625 +22752.0,22747.0,0.5009952850341797 +22752.0,22748.0,0.6552635498046875 +22752.0,22749.0,0.4006519775390625 +22752.0,22750.0,0.3115010986328125 +22752.0,22751.0,0.3437846069335937 +22752.0,22752.0,0.033843994140625 +22752.0,22753.0,0.1504542236328125 +22752.0,22754.0,0.2574559936523437 +22752.0,22755.0,0.5450723876953125 +22752.0,22756.0,0.6000574951171875 +22752.0,22757.0,0.7172481689453125 +22752.0,22758.0,0.8654166259765625 +22752.0,22759.0,1.2267169189453124 +22752.0,22760.0,1.1265582275390624 +22752.0,22761.0,0.9361016845703124 +22752.0,22762.0,1.0439747314453125 +22752.0,22763.0,0.9927550048828124 +22752.0,22764.0,1.3442823486328126 +22752.0,22765.0,1.1714073486328125 +22752.0,22766.0,1.54341943359375 +22752.0,22767.0,1.160590576171875 +22752.0,22768.0,1.0918878173828124 +22752.0,22769.0,1.0938841552734375 +22752.0,22770.0,0.884801513671875 +22752.0,22771.0,0.7058499755859375 +22752.0,22772.0,0.7867991943359375 +22752.0,22773.0,0.8822344970703125 +22752.0,22774.0,0.7365028991699218 +22752.0,22775.0,0.7725457763671875 +22752.0,22776.0,0.9501597900390624 +22752.0,22777.0,0.9834810791015623 +22752.0,22778.0,0.7231680908203125 +22752.0,22779.0,1.0303741455078126 +22752.0,22780.0,1.114594970703125 +22752.0,22781.0,0.9891561279296875 +22752.0,22782.0,1.0395953369140625 +22752.0,22783.0,0.9786492919921876 +22752.0,22784.0,1.4564935302734374 +22752.0,22785.0,1.5454613037109377 +22752.0,22786.0,1.2188907470703123 +22752.0,22787.0,1.3580509033203123 +22752.0,22788.0,1.324877197265625 +22752.0,22789.0,1.9120701904296875 +22752.0,22790.0,1.8318177490234373 +22752.0,22791.0,1.9635648193359372 +22752.0,22792.0,1.8198858642578124 +22752.0,22793.0,1.752529541015625 +22752.0,22794.0,1.53756494140625 +22752.0,22795.0,2.070884399414062 +22752.0,22796.0,2.1716700439453125 +22752.0,22797.0,1.6003644409179687 +22752.0,22798.0,1.2528936157226562 +22752.0,22799.0,1.0349757080078126 +22752.0,22800.0,1.3577801513671874 +22752.0,22801.0,1.0737447509765623 +22752.0,22802.0,1.4347381591796875 +22752.0,22803.0,1.3179385986328125 +22752.0,22804.0,1.4272950439453125 +22752.0,22805.0,1.2240323486328124 +22752.0,22806.0,1.3539527587890623 +22752.0,22807.0,1.3669620361328123 +22752.0,22808.0,1.6000579833984374 +22752.0,22809.0,1.424240234375 +22752.0,22810.0,1.9051226806640624 +22752.0,22811.0,1.5393568115234375 +22752.0,22812.0,1.9047261962890625 +22752.0,22813.0,1.7101676025390624 +22752.0,22814.0,1.805433471679688 +22752.0,22815.0,1.9807222900390624 +22752.0,22816.0,1.9503157958984372 +22752.0,22817.0,2.05575244140625 +22752.0,22818.0,1.91476220703125 +22753.0,22737.0,0.4139140625 +22753.0,22738.0,0.560220458984375 +22753.0,22739.0,0.789830078125 +22753.0,22740.0,0.366225830078125 +22753.0,22741.0,0.624249267578125 +22753.0,22742.0,0.36048388671875 +22753.0,22743.0,0.58902294921875 +22753.0,22744.0,0.738498779296875 +22753.0,22745.0,0.720094482421875 +22753.0,22746.0,0.6554617919921875 +22753.0,22747.0,0.4416055145263672 +22753.0,22748.0,0.595873779296875 +22753.0,22749.0,0.34126220703125 +22753.0,22750.0,0.252111328125 +22753.0,22751.0,0.2843948364257812 +22753.0,22752.0,0.1504542236328125 +22753.0,22753.0,0.091064453125 +22753.0,22754.0,0.1980662231445312 +22753.0,22755.0,0.4856826171875 +22753.0,22756.0,0.540667724609375 +22753.0,22757.0,0.8338583984375 +22753.0,22758.0,0.90702685546875 +22753.0,22759.0,1.2393271484375 +22753.0,22760.0,1.13916845703125 +22753.0,22761.0,1.0017119140625002 +22753.0,22762.0,1.1605849609375 +22753.0,22763.0,1.003365234375 +22753.0,22764.0,1.356892578125 +22753.0,22765.0,1.184017578125 +22753.0,22766.0,1.6090296630859375 +22753.0,22767.0,1.1042008056640624 +22753.0,22768.0,1.102498046875 +22753.0,22769.0,1.037494384765625 +22753.0,22770.0,0.8254117431640625 +22753.0,22771.0,0.646460205078125 +22753.0,22772.0,0.727409423828125 +22753.0,22773.0,0.8228447265625 +22753.0,22774.0,0.6771131286621094 +22753.0,22775.0,0.713156005859375 +22753.0,22776.0,0.89077001953125 +22753.0,22777.0,0.92409130859375 +22753.0,22778.0,0.6637783203125 +22753.0,22779.0,0.970984375 +22753.0,22780.0,1.0552052001953125 +22753.0,22781.0,0.929766357421875 +22753.0,22782.0,0.98020556640625 +22753.0,22783.0,0.919259521484375 +22753.0,22784.0,1.397103759765625 +22753.0,22785.0,1.486071533203125 +22753.0,22786.0,1.1595009765625 +22753.0,22787.0,1.2986611328125 +22753.0,22788.0,1.2654874267578125 +22753.0,22789.0,1.852680419921875 +22753.0,22790.0,1.772427978515625 +22753.0,22791.0,1.904175048828125 +22753.0,22792.0,1.76049609375 +22753.0,22793.0,1.6931397705078124 +22753.0,22794.0,1.4781751708984374 +22753.0,22795.0,2.01149462890625 +22753.0,22796.0,2.1122802734375 +22753.0,22797.0,1.5409746704101563 +22753.0,22798.0,1.1935038452148437 +22753.0,22799.0,0.9755859375 +22753.0,22800.0,1.298390380859375 +22753.0,22801.0,1.01435498046875 +22753.0,22802.0,1.375348388671875 +22753.0,22803.0,1.258548828125 +22753.0,22804.0,1.3679052734375 +22753.0,22805.0,1.164642578125 +22753.0,22806.0,1.29456298828125 +22753.0,22807.0,1.310572265625 +22753.0,22808.0,1.540668212890625 +22753.0,22809.0,1.3678504638671876 +22753.0,22810.0,1.84573291015625 +22753.0,22811.0,1.479967041015625 +22753.0,22812.0,1.84533642578125 +22753.0,22813.0,1.65077783203125 +22753.0,22814.0,1.746043701171875 +22753.0,22815.0,1.92133251953125 +22753.0,22816.0,1.890926025390625 +22753.0,22817.0,1.9963626708984372 +22753.0,22818.0,1.8553724365234372 +22754.0,22737.0,0.3729158325195312 +22754.0,22738.0,0.4692222290039062 +22754.0,22739.0,0.6778318481445312 +22754.0,22740.0,0.3252276000976563 +22754.0,22741.0,0.5832510375976563 +22754.0,22742.0,0.3194856567382812 +22754.0,22743.0,0.6890247192382812 +22754.0,22744.0,0.7195005493164063 +22754.0,22745.0,0.5510962524414063 +22754.0,22746.0,0.4864635620117187 +22754.0,22747.0,0.2726072845458984 +22754.0,22748.0,0.4268755493164062 +22754.0,22749.0,0.2992639770507812 +22754.0,22750.0,0.3581130981445312 +22754.0,22751.0,0.3883966064453125 +22754.0,22752.0,0.2574559936523437 +22754.0,22753.0,0.1980662231445312 +22754.0,22754.0,0.0290679931640625 +22754.0,22755.0,0.4166843872070312 +22754.0,22756.0,0.3716694946289062 +22754.0,22757.0,0.8508601684570313 +22754.0,22758.0,0.8050286254882812 +22754.0,22759.0,1.0703289184570313 +22754.0,22760.0,0.9701702270507812 +22754.0,22761.0,0.9587136840820312 +22754.0,22762.0,1.2595867309570312 +22754.0,22763.0,0.8343670043945313 +22754.0,22764.0,1.1878943481445312 +22754.0,22765.0,1.015019348144531 +22754.0,22766.0,1.4400314331054689 +22754.0,22767.0,0.9352025756835938 +22754.0,22768.0,0.9334998168945312 +22754.0,22769.0,0.8684961547851563 +22754.0,22770.0,0.6564135131835938 +22754.0,22771.0,0.4774619750976562 +22754.0,22772.0,0.5584111938476563 +22754.0,22773.0,0.6538464965820312 +22754.0,22774.0,0.5081148986816406 +22754.0,22775.0,0.5441577758789062 +22754.0,22776.0,0.7217717895507813 +22754.0,22777.0,0.7550930786132812 +22754.0,22778.0,0.4947800903320312 +22754.0,22779.0,0.8019861450195312 +22754.0,22780.0,0.8862069702148437 +22754.0,22781.0,0.7607681274414062 +22754.0,22782.0,0.8112073364257812 +22754.0,22783.0,0.7502612915039063 +22754.0,22784.0,1.2281055297851562 +22754.0,22785.0,1.3170733032226565 +22754.0,22786.0,0.9905027465820312 +22754.0,22787.0,1.1296629028320313 +22754.0,22788.0,1.0964891967773438 +22754.0,22789.0,1.6836821899414065 +22754.0,22790.0,1.6034297485351563 +22754.0,22791.0,1.7351768188476562 +22754.0,22792.0,1.5914978637695312 +22754.0,22793.0,1.5241415405273435 +22754.0,22794.0,1.3091769409179688 +22754.0,22795.0,1.8424963989257808 +22754.0,22796.0,1.9432820434570317 +22754.0,22797.0,1.3719764404296877 +22754.0,22798.0,1.024505615234375 +22754.0,22799.0,0.8065877075195312 +22754.0,22800.0,1.1293921508789062 +22754.0,22801.0,0.8453567504882813 +22754.0,22802.0,1.2063501586914065 +22754.0,22803.0,1.0895505981445313 +22754.0,22804.0,1.1989070434570313 +22754.0,22805.0,0.9956443481445312 +22754.0,22806.0,1.1255647583007813 +22754.0,22807.0,1.1415740356445312 +22754.0,22808.0,1.3716699829101562 +22754.0,22809.0,1.198852233886719 +22754.0,22810.0,1.6767346801757812 +22754.0,22811.0,1.3109688110351565 +22754.0,22812.0,1.6763381958007812 +22754.0,22813.0,1.4817796020507812 +22754.0,22814.0,1.577045471191406 +22754.0,22815.0,1.7523342895507812 +22754.0,22816.0,1.7219277954101562 +22754.0,22817.0,1.8273644409179688 +22754.0,22818.0,1.6863742065429688 +22755.0,22737.0,0.6385322265625 +22755.0,22738.0,0.686838623046875 +22755.0,22739.0,0.8954482421875 +22755.0,22740.0,0.614843994140625 +22755.0,22741.0,0.848867431640625 +22755.0,22742.0,0.60910205078125 +22755.0,22743.0,0.97864111328125 +22755.0,22744.0,0.937116943359375 +22755.0,22745.0,0.768712646484375 +22755.0,22746.0,0.7040799560546875 +22755.0,22747.0,0.4902236785888672 +22755.0,22748.0,0.644491943359375 +22755.0,22749.0,0.26588037109375 +22755.0,22750.0,0.3247294921875 +22755.0,22751.0,0.3180130004882812 +22755.0,22752.0,0.5450723876953125 +22755.0,22753.0,0.4856826171875 +22755.0,22754.0,0.4166843872070312 +22755.0,22755.0,0.25830078125 +22755.0,22756.0,0.589285888671875 +22755.0,22757.0,1.0684765625 +22755.0,22758.0,1.02264501953125 +22755.0,22759.0,1.2879453125 +22755.0,22760.0,1.18778662109375 +22755.0,22761.0,1.176330078125 +22755.0,22762.0,1.477203125 +22755.0,22763.0,1.0519833984375 +22755.0,22764.0,1.4055107421875 +22755.0,22765.0,1.2326357421875 +22755.0,22766.0,1.6576478271484374 +22755.0,22767.0,1.1528189697265625 +22755.0,22768.0,1.1511162109375 +22755.0,22769.0,1.0861125488281251 +22755.0,22770.0,0.8740299072265625 +22755.0,22771.0,0.695078369140625 +22755.0,22772.0,0.776027587890625 +22755.0,22773.0,0.871462890625 +22755.0,22774.0,0.6697312927246094 +22755.0,22775.0,0.705774169921875 +22755.0,22776.0,0.88338818359375 +22755.0,22777.0,0.80770947265625 +22755.0,22778.0,0.700396484375 +22755.0,22779.0,0.9636025390625 +22755.0,22780.0,1.0478233642578123 +22755.0,22781.0,0.922384521484375 +22755.0,22782.0,0.99182373046875 +22755.0,22783.0,0.967877685546875 +22755.0,22784.0,1.389721923828125 +22755.0,22785.0,1.478689697265625 +22755.0,22786.0,1.152119140625 +22755.0,22787.0,1.291279296875 +22755.0,22788.0,1.3141055908203123 +22755.0,22789.0,1.901298583984375 +22755.0,22790.0,1.765046142578125 +22755.0,22791.0,1.896793212890625 +22755.0,22792.0,1.8091142578125 +22755.0,22793.0,1.7407579345703126 +22755.0,22794.0,1.5267933349609375 +22755.0,22795.0,2.06011279296875 +22755.0,22796.0,2.1608984375 +22755.0,22797.0,1.5895928344726562 +22755.0,22798.0,1.2421220092773435 +22755.0,22799.0,1.0242041015625 +22755.0,22800.0,1.347008544921875 +22755.0,22801.0,1.06297314453125 +22755.0,22802.0,1.423966552734375 +22755.0,22803.0,1.3071669921875 +22755.0,22804.0,1.4165234375 +22755.0,22805.0,1.2132607421875 +22755.0,22806.0,1.34318115234375 +22755.0,22807.0,1.3591904296875 +22755.0,22808.0,1.589286376953125 +22755.0,22809.0,1.4164686279296874 +22755.0,22810.0,1.89435107421875 +22755.0,22811.0,1.528585205078125 +22755.0,22812.0,1.89395458984375 +22755.0,22813.0,1.69939599609375 +22755.0,22814.0,1.794661865234375 +22755.0,22815.0,1.96995068359375 +22755.0,22816.0,1.939544189453125 +22755.0,22817.0,2.044980834960937 +22755.0,22818.0,1.9039906005859373 +22756.0,22737.0,0.375517333984375 +22756.0,22738.0,0.42382373046875 +22756.0,22739.0,0.620433349609375 +22756.0,22740.0,0.5278291015625001 +22756.0,22741.0,0.5858525390625 +22756.0,22742.0,0.522087158203125 +22756.0,22743.0,0.769626220703125 +22756.0,22744.0,0.66210205078125 +22756.0,22745.0,0.38469775390625 +22756.0,22746.0,0.3200650634765625 +22756.0,22747.0,0.1032087860107421 +22756.0,22748.0,0.25747705078125 +22756.0,22749.0,0.596865478515625 +22756.0,22750.0,0.655714599609375 +22756.0,22751.0,0.6489981079101562 +22756.0,22752.0,0.6000574951171875 +22756.0,22753.0,0.540667724609375 +22756.0,22754.0,0.3716694946289062 +22756.0,22755.0,0.589285888671875 +22756.0,22756.0,0.09027099609375 +22756.0,22757.0,0.793461669921875 +22756.0,22758.0,0.747630126953125 +22756.0,22759.0,0.905930419921875 +22756.0,22760.0,0.809771728515625 +22756.0,22761.0,0.901315185546875 +22756.0,22762.0,1.202188232421875 +22756.0,22763.0,0.673968505859375 +22756.0,22764.0,1.022495849609375 +22756.0,22765.0,0.850620849609375 +22756.0,22766.0,1.2756329345703126 +22756.0,22767.0,0.7658040771484375 +22756.0,22768.0,0.767101318359375 +22756.0,22769.0,0.69909765625 +22756.0,22770.0,0.4870150146484375 +22756.0,22771.0,0.3080634765625 +22756.0,22772.0,0.3890126953125 +22756.0,22773.0,0.484447998046875 +22756.0,22774.0,0.4787164001464843 +22756.0,22775.0,0.5147592773437499 +22756.0,22776.0,0.648373291015625 +22756.0,22777.0,0.743694580078125 +22756.0,22778.0,0.325381591796875 +22756.0,22779.0,0.728587646484375 +22756.0,22780.0,0.8128084716796875 +22756.0,22781.0,0.68736962890625 +22756.0,22782.0,0.641808837890625 +22756.0,22783.0,0.58086279296875 +22756.0,22784.0,1.09170703125 +22756.0,22785.0,1.2426748046875 +22756.0,22786.0,0.909104248046875 +22756.0,22787.0,1.056264404296875 +22756.0,22788.0,0.9270906982421876 +22756.0,22789.0,1.51428369140625 +22756.0,22790.0,1.53003125 +22756.0,22791.0,1.6617783203125 +22756.0,22792.0,1.422099365234375 +22756.0,22793.0,1.3547430419921875 +22756.0,22794.0,1.1397784423828126 +22756.0,22795.0,1.673097900390625 +22756.0,22796.0,1.773883544921875 +22756.0,22797.0,1.2025779418945313 +22756.0,22798.0,0.8551071166992188 +22756.0,22799.0,0.637189208984375 +22756.0,22800.0,0.95999365234375 +22756.0,22801.0,0.675958251953125 +22756.0,22802.0,1.0369516601562498 +22756.0,22803.0,0.920152099609375 +22756.0,22804.0,1.029508544921875 +22756.0,22805.0,0.826245849609375 +22756.0,22806.0,0.956166259765625 +22756.0,22807.0,0.972175537109375 +22756.0,22808.0,1.202271484375 +22756.0,22809.0,1.0294537353515625 +22756.0,22810.0,1.507336181640625 +22756.0,22811.0,1.1415703125 +22756.0,22812.0,1.506939697265625 +22756.0,22813.0,1.312381103515625 +22756.0,22814.0,1.40764697265625 +22756.0,22815.0,1.582935791015625 +22756.0,22816.0,1.552529296875 +22756.0,22817.0,1.6579659423828126 +22756.0,22818.0,1.5169757080078126 +22757.0,22737.0,0.5627080078125 +22757.0,22738.0,0.456014404296875 +22757.0,22739.0,0.3856240234375 +22757.0,22740.0,0.594019775390625 +22757.0,22741.0,0.442043212890625 +22757.0,22742.0,0.70927783203125 +22757.0,22743.0,0.37581689453125 +22757.0,22744.0,0.225292724609375 +22757.0,22745.0,0.518888427734375 +22757.0,22746.0,0.5352557373046876 +22757.0,22747.0,0.6943994598388672 +22757.0,22748.0,0.598667724609375 +22757.0,22749.0,0.99805615234375 +22757.0,22750.0,0.9949052734375 +22757.0,22751.0,1.0271887817382812 +22757.0,22752.0,0.7172481689453125 +22757.0,22753.0,0.8338583984375 +22757.0,22754.0,0.8508601684570313 +22757.0,22755.0,1.0684765625 +22757.0,22756.0,0.793461669921875 +22757.0,22757.0,0.11865234375 +22757.0,22758.0,0.32682080078125 +22757.0,22759.0,0.69012109375 +22757.0,22760.0,0.58996240234375 +22757.0,22761.0,0.419505859375 +22757.0,22762.0,0.5273789062500001 +22757.0,22763.0,0.4541591796875 +22757.0,22764.0,0.8076865234375 +22757.0,22765.0,0.6348115234375 +22757.0,22766.0,1.0268236083984374 +22757.0,22767.0,0.6709947509765625 +22757.0,22768.0,0.5532919921875 +22757.0,22769.0,0.689288330078125 +22757.0,22770.0,0.7062056884765625 +22757.0,22771.0,0.777254150390625 +22757.0,22772.0,0.970203369140625 +22757.0,22773.0,0.827638671875 +22757.0,22774.0,1.0689070739746094 +22757.0,22775.0,1.104949951171875 +22757.0,22776.0,1.22956396484375 +22757.0,22777.0,1.33388525390625 +22757.0,22778.0,0.915572265625 +22757.0,22779.0,1.3097783203125 +22757.0,22780.0,1.3939991455078125 +22757.0,22781.0,1.268560302734375 +22757.0,22782.0,1.22299951171875 +22757.0,22783.0,1.157053466796875 +22757.0,22784.0,1.608897705078125 +22757.0,22785.0,1.759865478515625 +22757.0,22786.0,1.465294921875 +22757.0,22787.0,1.637455078125 +22757.0,22788.0,1.4602813720703125 +22757.0,22789.0,1.894474365234375 +22757.0,22790.0,1.960221923828125 +22757.0,22791.0,2.186968994140625 +22757.0,22792.0,1.8022900390625 +22757.0,22793.0,1.7349337158203124 +22757.0,22794.0,1.3779691162109375 +22757.0,22795.0,2.05328857421875 +22757.0,22796.0,2.01207421875 +22757.0,22797.0,1.5397686157226562 +22757.0,22798.0,1.2352977905273437 +22757.0,22799.0,1.1073798828125 +22757.0,22800.0,1.152184326171875 +22757.0,22801.0,1.0201489257812502 +22757.0,22802.0,1.132142333984375 +22757.0,22803.0,1.1123427734375 +22757.0,22804.0,1.12469921875 +22757.0,22805.0,0.9634365234375 +22757.0,22806.0,1.05135693359375 +22757.0,22807.0,0.9623662109375 +22757.0,22808.0,1.0624621582031248 +22757.0,22809.0,1.0196444091796877 +22757.0,22810.0,1.48552685546875 +22757.0,22811.0,1.236760986328125 +22757.0,22812.0,1.48513037109375 +22757.0,22813.0,1.26857177734375 +22757.0,22814.0,1.363837646484375 +22757.0,22815.0,1.52812646484375 +22757.0,22816.0,1.530719970703125 +22757.0,22817.0,1.6071566162109374 +22757.0,22818.0,1.4621663818359374 +22758.0,22737.0,0.57587646484375 +22758.0,22738.0,0.469182861328125 +22758.0,22739.0,0.23779248046875 +22758.0,22740.0,0.607188232421875 +22758.0,22741.0,0.542211669921875 +22758.0,22742.0,0.7224462890625 +22758.0,22743.0,0.5239853515624999 +22758.0,22744.0,0.391461181640625 +22758.0,22745.0,0.437056884765625 +22758.0,22746.0,0.4894241943359375 +22758.0,22747.0,0.6485679168701172 +22758.0,22748.0,0.552836181640625 +22758.0,22749.0,1.011224609375 +22758.0,22750.0,1.06807373046875 +22758.0,22751.0,1.0823572387695313 +22758.0,22752.0,0.8654166259765625 +22758.0,22753.0,0.90702685546875 +22758.0,22754.0,0.8050286254882812 +22758.0,22755.0,1.02264501953125 +22758.0,22756.0,0.747630126953125 +22758.0,22757.0,0.32682080078125 +22758.0,22758.0,0.0889892578125 +22758.0,22759.0,0.45228955078125 +22758.0,22760.0,0.352130859375 +22758.0,22761.0,0.24267431640625 +22758.0,22762.0,0.6515473632812501 +22758.0,22763.0,0.21632763671875 +22758.0,22764.0,0.56985498046875 +22758.0,22765.0,0.39697998046875 +22758.0,22766.0,0.8209920654296875 +22758.0,22767.0,0.4331632080078125 +22758.0,22768.0,0.31546044921875 +22758.0,22769.0,0.541456787109375 +22758.0,22770.0,0.6603741455078125 +22758.0,22771.0,0.731422607421875 +22758.0,22772.0,0.924371826171875 +22758.0,22773.0,0.78180712890625 +22758.0,22774.0,1.0230755310058592 +22758.0,22775.0,1.0591184082031249 +22758.0,22776.0,1.183732421875 +22758.0,22777.0,1.2880537109375 +22758.0,22778.0,0.86974072265625 +22758.0,22779.0,1.26394677734375 +22758.0,22780.0,1.3481676025390623 +22758.0,22781.0,1.222728759765625 +22758.0,22782.0,1.17716796875 +22758.0,22783.0,1.111221923828125 +22758.0,22784.0,1.558066162109375 +22758.0,22785.0,1.709033935546875 +22758.0,22786.0,1.41446337890625 +22758.0,22787.0,1.59162353515625 +22758.0,22788.0,1.4094498291015625 +22758.0,22789.0,1.843642822265625 +22758.0,22790.0,1.909390380859375 +22758.0,22791.0,2.136137451171875 +22758.0,22792.0,1.75145849609375 +22758.0,22793.0,1.6841021728515626 +22758.0,22794.0,1.2871375732421877 +22758.0,22795.0,2.00245703125 +22758.0,22796.0,1.91424267578125 +22758.0,22797.0,1.4459370727539065 +22758.0,22798.0,1.1844662475585936 +22758.0,22799.0,1.06154833984375 +22758.0,22800.0,1.0613527832031249 +22758.0,22801.0,0.9743173828125 +22758.0,22802.0,0.949310791015625 +22758.0,22803.0,1.02151123046875 +22758.0,22804.0,0.97686767578125 +22758.0,22805.0,0.87760498046875 +22758.0,22806.0,0.903525390625 +22758.0,22807.0,0.75453466796875 +22758.0,22808.0,0.824630615234375 +22758.0,22809.0,0.8118128662109375 +22758.0,22810.0,1.2476953125 +22758.0,22811.0,1.088929443359375 +22758.0,22812.0,1.247298828125 +22758.0,22813.0,1.030740234375 +22758.0,22814.0,1.126006103515625 +22758.0,22815.0,1.290294921875 +22758.0,22816.0,1.292888427734375 +22758.0,22817.0,1.3693250732421876 +22758.0,22818.0,1.2243348388671875 +22759.0,22737.0,0.9391767578125 +22759.0,22738.0,0.750483154296875 +22759.0,22739.0,0.6010927734375 +22759.0,22740.0,0.970488525390625 +22759.0,22741.0,0.905511962890625 +22759.0,22742.0,1.08574658203125 +22759.0,22743.0,0.88528564453125 +22759.0,22744.0,0.754761474609375 +22759.0,22745.0,0.587357177734375 +22759.0,22746.0,0.6487244873046875 +22759.0,22747.0,0.8068682098388672 +22759.0,22748.0,0.712136474609375 +22759.0,22749.0,1.29552490234375 +22759.0,22750.0,1.3543740234375 +22759.0,22751.0,1.3476575317382813 +22759.0,22752.0,1.2267169189453124 +22759.0,22753.0,1.2393271484375 +22759.0,22754.0,1.0703289184570313 +22759.0,22755.0,1.2879453125 +22759.0,22756.0,0.905930419921875 +22759.0,22757.0,0.69012109375 +22759.0,22758.0,0.45228955078125 +22759.0,22759.0,0.07958984375 +22759.0,22760.0,0.22943115234375 +22759.0,22761.0,0.358974609375 +22759.0,22762.0,0.6058476562499999 +22759.0,22763.0,0.3436279296875 +22759.0,22764.0,0.1971552734375 +22759.0,22765.0,0.1502802734375 +22759.0,22766.0,0.4492923583984375 +22759.0,22767.0,0.4364635009765625 +22759.0,22768.0,0.3187607421875 +22759.0,22769.0,0.564757080078125 +22759.0,22770.0,0.6876744384765625 +22759.0,22771.0,0.761722900390625 +22759.0,22772.0,0.953672119140625 +22759.0,22773.0,0.809107421875 +22759.0,22774.0,1.0533758239746094 +22759.0,22775.0,1.089418701171875 +22759.0,22776.0,1.21303271484375 +22759.0,22777.0,1.31835400390625 +22759.0,22778.0,0.900041015625 +22759.0,22779.0,1.2932470703125 +22759.0,22780.0,1.3774678955078126 +22759.0,22781.0,1.252029052734375 +22759.0,22782.0,1.20646826171875 +22759.0,22783.0,1.138522216796875 +22759.0,22784.0,1.581366455078125 +22759.0,22785.0,1.732334228515625 +22759.0,22786.0,1.437763671875 +22759.0,22787.0,1.620923828125 +22759.0,22788.0,1.4327501220703125 +22759.0,22789.0,1.866943115234375 +22759.0,22790.0,1.932690673828125 +22759.0,22791.0,2.159437744140625 +22759.0,22792.0,1.7747587890625 +22759.0,22793.0,1.7074024658203124 +22759.0,22794.0,1.3104378662109375 +22759.0,22795.0,2.02575732421875 +22759.0,22796.0,1.93754296875 +22759.0,22797.0,1.4692373657226565 +22759.0,22798.0,1.2077665405273437 +22759.0,22799.0,1.0888486328125 +22759.0,22800.0,1.084653076171875 +22759.0,22801.0,1.00161767578125 +22759.0,22802.0,0.952611083984375 +22759.0,22803.0,1.0448115234375 +22759.0,22804.0,1.00016796875 +22759.0,22805.0,0.9009052734375 +22759.0,22806.0,0.92682568359375 +22759.0,22807.0,0.7578349609375 +22759.0,22808.0,0.827930908203125 +22759.0,22809.0,0.8151131591796875 +22759.0,22810.0,1.25099560546875 +22759.0,22811.0,1.112229736328125 +22759.0,22812.0,1.25059912109375 +22759.0,22813.0,1.03404052734375 +22759.0,22814.0,1.111306396484375 +22759.0,22815.0,0.94359521484375 +22759.0,22816.0,1.239188720703125 +22759.0,22817.0,1.0596253662109374 +22759.0,22818.0,1.0176351318359376 +22760.0,22737.0,0.83901806640625 +22760.0,22738.0,0.650324462890625 +22760.0,22739.0,0.50093408203125 +22760.0,22740.0,0.870329833984375 +22760.0,22741.0,0.805353271484375 +22760.0,22742.0,0.985587890625 +22760.0,22743.0,0.785126953125 +22760.0,22744.0,0.654602783203125 +22760.0,22745.0,0.490198486328125 +22760.0,22746.0,0.5515657958984375 +22760.0,22747.0,0.7107095184326172 +22760.0,22748.0,0.614977783203125 +22760.0,22749.0,1.1953662109375 +22760.0,22750.0,1.25421533203125 +22760.0,22751.0,1.2474988403320313 +22760.0,22752.0,1.1265582275390624 +22760.0,22753.0,1.13916845703125 +22760.0,22754.0,0.9701702270507812 +22760.0,22755.0,1.18778662109375 +22760.0,22756.0,0.809771728515625 +22760.0,22757.0,0.58996240234375 +22760.0,22758.0,0.352130859375 +22760.0,22759.0,0.22943115234375 +22760.0,22760.0,0.1292724609375 +22760.0,22761.0,0.25881591796875 +22760.0,22762.0,0.6326889648437499 +22760.0,22763.0,0.24346923828125 +22760.0,22764.0,0.34699658203125 +22760.0,22765.0,0.17412158203125 +22760.0,22766.0,0.5991336669921875 +22760.0,22767.0,0.4593048095703125 +22760.0,22768.0,0.34160205078125 +22760.0,22769.0,0.587598388671875 +22760.0,22770.0,0.7105157470703125 +22760.0,22771.0,0.784564208984375 +22760.0,22772.0,0.976513427734375 +22760.0,22773.0,0.83194873046875 +22760.0,22774.0,1.0762171325683594 +22760.0,22775.0,1.112260009765625 +22760.0,22776.0,1.2358740234375 +22760.0,22777.0,1.3411953125 +22760.0,22778.0,0.92288232421875 +22760.0,22779.0,1.31608837890625 +22760.0,22780.0,1.4003092041015626 +22760.0,22781.0,1.274870361328125 +22760.0,22782.0,1.2293095703125 +22760.0,22783.0,1.161363525390625 +22760.0,22784.0,1.604207763671875 +22760.0,22785.0,1.755175537109375 +22760.0,22786.0,1.46060498046875 +22760.0,22787.0,1.64376513671875 +22760.0,22788.0,1.4555914306640625 +22760.0,22789.0,1.889784423828125 +22760.0,22790.0,1.955531982421875 +22760.0,22791.0,2.182279052734375 +22760.0,22792.0,1.79760009765625 +22760.0,22793.0,1.7302437744140624 +22760.0,22794.0,1.3332791748046875 +22760.0,22795.0,2.0485986328125003 +22760.0,22796.0,1.96038427734375 +22760.0,22797.0,1.4920786743164065 +22760.0,22798.0,1.2306078491210937 +22760.0,22799.0,1.11168994140625 +22760.0,22800.0,1.107494384765625 +22760.0,22801.0,1.024458984375 +22760.0,22802.0,0.975452392578125 +22760.0,22803.0,1.06765283203125 +22760.0,22804.0,1.02300927734375 +22760.0,22805.0,0.92374658203125 +22760.0,22806.0,0.9496669921875 +22760.0,22807.0,0.78067626953125 +22760.0,22808.0,0.850772216796875 +22760.0,22809.0,0.8379544677734375 +22760.0,22810.0,1.2738369140625 +22760.0,22811.0,1.135071044921875 +22760.0,22812.0,1.2734404296875 +22760.0,22813.0,1.0568818359374998 +22760.0,22814.0,1.152147705078125 +22760.0,22815.0,1.0934365234375 +22760.0,22816.0,1.319030029296875 +22760.0,22817.0,1.2094666748046874 +22760.0,22818.0,1.1674764404296876 +22761.0,22737.0,0.6705615234375 +22761.0,22738.0,0.563867919921875 +22761.0,22739.0,0.3914775390625 +22761.0,22740.0,0.701873291015625 +22761.0,22741.0,0.636896728515625 +22761.0,22742.0,0.81713134765625 +22761.0,22743.0,0.59467041015625 +22761.0,22744.0,0.486146240234375 +22761.0,22745.0,0.590741943359375 +22761.0,22746.0,0.6431092529296875 +22761.0,22747.0,0.8022529754638672 +22761.0,22748.0,0.706521240234375 +22761.0,22749.0,1.10590966796875 +22761.0,22750.0,1.1627587890625 +22761.0,22751.0,1.1950422973632813 +22761.0,22752.0,0.9361016845703124 +22761.0,22753.0,1.0017119140625002 +22761.0,22754.0,0.9587136840820312 +22761.0,22755.0,1.176330078125 +22761.0,22756.0,0.901315185546875 +22761.0,22757.0,0.419505859375 +22761.0,22758.0,0.24267431640625 +22761.0,22759.0,0.358974609375 +22761.0,22760.0,0.25881591796875 +22761.0,22761.0,0.068359375 +22761.0,22762.0,0.6352324218750001 +22761.0,22763.0,0.3700126953125 +22761.0,22764.0,0.4765400390625 +22761.0,22765.0,0.3036650390625 +22761.0,22766.0,0.7266771240234375 +22761.0,22767.0,0.5868482666015625 +22761.0,22768.0,0.4691455078125 +22761.0,22769.0,0.695141845703125 +22761.0,22770.0,0.8140592041015625 +22761.0,22771.0,0.885107666015625 +22761.0,22772.0,1.078056884765625 +22761.0,22773.0,0.9354921875 +22761.0,22774.0,1.1767605895996094 +22761.0,22775.0,1.212803466796875 +22761.0,22776.0,1.33741748046875 +22761.0,22777.0,1.44173876953125 +22761.0,22778.0,1.02342578125 +22761.0,22779.0,1.4176318359375 +22761.0,22780.0,1.5018526611328125 +22761.0,22781.0,1.376413818359375 +22761.0,22782.0,1.33085302734375 +22761.0,22783.0,1.264906982421875 +22761.0,22784.0,1.711751220703125 +22761.0,22785.0,1.862718994140625 +22761.0,22786.0,1.5681484375 +22761.0,22787.0,1.74530859375 +22761.0,22788.0,1.5631348876953124 +22761.0,22789.0,1.997327880859375 +22761.0,22790.0,2.063075439453125 +22761.0,22791.0,2.289822509765625 +22761.0,22792.0,1.9051435546875 +22761.0,22793.0,1.8377872314453123 +22761.0,22794.0,1.4408226318359374 +22761.0,22795.0,2.15614208984375 +22761.0,22796.0,2.067927734375 +22761.0,22797.0,1.5996221313476562 +22761.0,22798.0,1.3381513061523438 +22761.0,22799.0,1.2152333984375 +22761.0,22800.0,1.215037841796875 +22761.0,22801.0,1.12800244140625 +22761.0,22802.0,1.102995849609375 +22761.0,22803.0,1.1751962890625 +22761.0,22804.0,1.130552734375 +22761.0,22805.0,1.0312900390625002 +22761.0,22806.0,1.05721044921875 +22761.0,22807.0,0.9082197265625 +22761.0,22808.0,0.978315673828125 +22761.0,22809.0,0.9654979248046875 +22761.0,22810.0,1.40138037109375 +22761.0,22811.0,1.242614501953125 +22761.0,22812.0,1.40098388671875 +22761.0,22813.0,1.18442529296875 +22761.0,22814.0,1.279691162109375 +22761.0,22815.0,1.22297998046875 +22761.0,22816.0,1.446573486328125 +22761.0,22817.0,1.3390101318359375 +22761.0,22818.0,1.2970198974609377 +22762.0,22737.0,0.9714345703125 +22762.0,22738.0,0.864740966796875 +22762.0,22739.0,0.7943505859375 +22762.0,22740.0,0.994746337890625 +22762.0,22741.0,0.850769775390625 +22762.0,22742.0,1.11700439453125 +22762.0,22743.0,0.70254345703125 +22762.0,22744.0,0.634019287109375 +22762.0,22745.0,0.927614990234375 +22762.0,22746.0,0.9439822998046876 +22762.0,22747.0,1.1031260223388673 +22762.0,22748.0,1.007394287109375 +22762.0,22749.0,1.40578271484375 +22762.0,22750.0,1.3216318359375 +22762.0,22751.0,1.3539153442382812 +22762.0,22752.0,1.0439747314453125 +22762.0,22753.0,1.1605849609375 +22762.0,22754.0,1.2595867309570312 +22762.0,22755.0,1.477203125 +22762.0,22756.0,1.202188232421875 +22762.0,22757.0,0.5273789062500001 +22762.0,22758.0,0.6515473632812501 +22762.0,22759.0,0.6058476562499999 +22762.0,22760.0,0.6326889648437499 +22762.0,22761.0,0.6352324218750001 +22762.0,22762.0,0.30810546875 +22762.0,22763.0,0.7448857421875 +22762.0,22764.0,0.7234130859375 +22762.0,22765.0,0.6765380859375 +22762.0,22766.0,0.8075501708984375 +22762.0,22767.0,0.9617213134765624 +22762.0,22768.0,0.8440185546875 +22762.0,22769.0,1.0730148925781249 +22762.0,22770.0,1.1149322509765625 +22762.0,22771.0,1.185980712890625 +22762.0,22772.0,1.378929931640625 +22762.0,22773.0,1.236365234375 +22762.0,22774.0,1.4776336364746094 +22762.0,22775.0,1.513676513671875 +22762.0,22776.0,1.63829052734375 +22762.0,22777.0,1.74261181640625 +22762.0,22778.0,1.324298828125 +22762.0,22779.0,1.7185048828125 +22762.0,22780.0,1.8027257080078125 +22762.0,22781.0,1.677286865234375 +22762.0,22782.0,1.63172607421875 +22762.0,22783.0,1.565780029296875 +22762.0,22784.0,2.017624267578125 +22762.0,22785.0,2.168592041015625 +22762.0,22786.0,1.874021484375 +22762.0,22787.0,2.046181640625 +22762.0,22788.0,1.8690079345703128 +22762.0,22789.0,2.303200927734375 +22762.0,22790.0,2.368948486328125 +22762.0,22791.0,2.595695556640625 +22762.0,22792.0,2.2110166015625 +22762.0,22793.0,2.1436602783203123 +22762.0,22794.0,1.7866956787109376 +22762.0,22795.0,2.46201513671875 +22762.0,22796.0,2.42080078125 +22762.0,22797.0,1.9484951782226565 +22762.0,22798.0,1.6440243530273435 +22762.0,22799.0,1.5161064453125 +22762.0,22800.0,1.560910888671875 +22762.0,22801.0,1.42887548828125 +22762.0,22802.0,1.477868896484375 +22762.0,22803.0,1.5210693359375 +22762.0,22804.0,1.50842578125 +22762.0,22805.0,1.3721630859375 +22762.0,22806.0,1.43508349609375 +22762.0,22807.0,1.2830927734375 +22762.0,22808.0,1.353188720703125 +22762.0,22809.0,1.3403709716796874 +22762.0,22810.0,1.77625341796875 +22762.0,22811.0,1.620487548828125 +22762.0,22812.0,1.77585693359375 +22762.0,22813.0,1.55929833984375 +22762.0,22814.0,1.613564208984375 +22762.0,22815.0,1.44585302734375 +22762.0,22816.0,1.741446533203125 +22762.0,22817.0,1.5618831787109375 +22762.0,22818.0,1.5198929443359377 +22763.0,22737.0,0.70321484375 +22763.0,22738.0,0.5145212402343751 +22763.0,22739.0,0.365130859375 +22763.0,22740.0,0.734526611328125 +22763.0,22741.0,0.669550048828125 +22763.0,22742.0,0.84978466796875 +22763.0,22743.0,0.65132373046875 +22763.0,22744.0,0.5187995605468749 +22763.0,22745.0,0.354395263671875 +22763.0,22746.0,0.4157625732421875 +22763.0,22747.0,0.5749062957763672 +22763.0,22748.0,0.479174560546875 +22763.0,22749.0,1.0595629882812498 +22763.0,22750.0,1.118412109375 +22763.0,22751.0,1.1116956176757813 +22763.0,22752.0,0.9927550048828124 +22763.0,22753.0,1.003365234375 +22763.0,22754.0,0.8343670043945313 +22763.0,22755.0,1.0519833984375 +22763.0,22756.0,0.673968505859375 +22763.0,22757.0,0.4541591796875 +22763.0,22758.0,0.21632763671875 +22763.0,22759.0,0.3436279296875 +22763.0,22760.0,0.24346923828125 +22763.0,22761.0,0.3700126953125 +22763.0,22762.0,0.7448857421875 +22763.0,22763.0,0.107666015625 +22763.0,22764.0,0.461193359375 +22763.0,22765.0,0.288318359375 +22763.0,22766.0,0.7133304443359375 +22763.0,22767.0,0.3245015869140625 +22763.0,22768.0,0.206798828125 +22763.0,22769.0,0.452795166015625 +22763.0,22770.0,0.5757125244140625 +22763.0,22771.0,0.649760986328125 +22763.0,22772.0,0.841710205078125 +22763.0,22773.0,0.6971455078125 +22763.0,22774.0,0.9414139099121094 +22763.0,22775.0,0.977456787109375 +22763.0,22776.0,1.10107080078125 +22763.0,22777.0,1.20639208984375 +22763.0,22778.0,0.7880791015625 +22763.0,22779.0,1.18128515625 +22763.0,22780.0,1.2655059814453125 +22763.0,22781.0,1.140067138671875 +22763.0,22782.0,1.09450634765625 +22763.0,22783.0,1.026560302734375 +22763.0,22784.0,1.469404541015625 +22763.0,22785.0,1.620372314453125 +22763.0,22786.0,1.3258017578125 +22763.0,22787.0,1.5089619140625 +22763.0,22788.0,1.3207882080078126 +22763.0,22789.0,1.754981201171875 +22763.0,22790.0,1.820728759765625 +22763.0,22791.0,2.047475830078125 +22763.0,22792.0,1.662796875 +22763.0,22793.0,1.5954405517578123 +22763.0,22794.0,1.1984759521484376 +22763.0,22795.0,1.91379541015625 +22763.0,22796.0,1.8255810546875 +22763.0,22797.0,1.3572754516601562 +22763.0,22798.0,1.0958046264648438 +22763.0,22799.0,0.97688671875 +22763.0,22800.0,0.972691162109375 +22763.0,22801.0,0.88965576171875 +22763.0,22802.0,0.840649169921875 +22763.0,22803.0,0.932849609375 +22763.0,22804.0,0.8882060546875 +22763.0,22805.0,0.788943359375 +22763.0,22806.0,0.81486376953125 +22763.0,22807.0,0.645873046875 +22763.0,22808.0,0.715968994140625 +22763.0,22809.0,0.7031512451171875 +22763.0,22810.0,1.13903369140625 +22763.0,22811.0,1.000267822265625 +22763.0,22812.0,1.13863720703125 +22763.0,22813.0,0.92207861328125 +22763.0,22814.0,1.017344482421875 +22763.0,22815.0,1.18163330078125 +22763.0,22816.0,1.184226806640625 +22763.0,22817.0,1.2606634521484374 +22763.0,22818.0,1.1156732177734374 +22764.0,22737.0,1.0567421875 +22764.0,22738.0,0.868048583984375 +22764.0,22739.0,0.718658203125 +22764.0,22740.0,1.088053955078125 +22764.0,22741.0,1.023077392578125 +22764.0,22742.0,1.20331201171875 +22764.0,22743.0,1.00285107421875 +22764.0,22744.0,0.872326904296875 +22764.0,22745.0,0.703922607421875 +22764.0,22746.0,0.7652899169921875 +22764.0,22747.0,0.9234336395263671 +22764.0,22748.0,0.828701904296875 +22764.0,22749.0,1.41309033203125 +22764.0,22750.0,1.471939453125 +22764.0,22751.0,1.4652229614257812 +22764.0,22752.0,1.3442823486328126 +22764.0,22753.0,1.356892578125 +22764.0,22754.0,1.1878943481445312 +22764.0,22755.0,1.4055107421875 +22764.0,22756.0,1.022495849609375 +22764.0,22757.0,0.8076865234375 +22764.0,22758.0,0.56985498046875 +22764.0,22759.0,0.1971552734375 +22764.0,22760.0,0.34699658203125 +22764.0,22761.0,0.4765400390625 +22764.0,22762.0,0.7234130859375 +22764.0,22763.0,0.461193359375 +22764.0,22764.0,0.188720703125 +22764.0,22765.0,0.267845703125 +22764.0,22766.0,0.5668577880859376 +22764.0,22767.0,0.4290289306640625 +22764.0,22768.0,0.435326171875 +22764.0,22769.0,0.562322509765625 +22764.0,22770.0,0.6852398681640625 +22764.0,22771.0,0.759288330078125 +22764.0,22772.0,0.951237548828125 +22764.0,22773.0,0.8066728515625 +22764.0,22774.0,1.0509412536621094 +22764.0,22775.0,1.086984130859375 +22764.0,22776.0,1.21059814453125 +22764.0,22777.0,1.31591943359375 +22764.0,22778.0,0.8976064453125 +22764.0,22779.0,1.2908125 +22764.0,22780.0,1.3750333251953124 +22764.0,22781.0,1.249594482421875 +22764.0,22782.0,1.20403369140625 +22764.0,22783.0,1.136087646484375 +22764.0,22784.0,1.578931884765625 +22764.0,22785.0,1.729899658203125 +22764.0,22786.0,1.4353291015625 +22764.0,22787.0,1.6184892578125 +22764.0,22788.0,1.4303155517578126 +22764.0,22789.0,1.864508544921875 +22764.0,22790.0,1.930256103515625 +22764.0,22791.0,2.157003173828125 +22764.0,22792.0,1.77232421875 +22764.0,22793.0,1.7049678955078125 +22764.0,22794.0,1.3080032958984376 +22764.0,22795.0,2.0233227539062497 +22764.0,22796.0,1.9351083984375 +22764.0,22797.0,1.4668027954101563 +22764.0,22798.0,1.2053319702148435 +22764.0,22799.0,1.0864140625 +22764.0,22800.0,1.082218505859375 +22764.0,22801.0,0.99918310546875 +22764.0,22802.0,0.945176513671875 +22764.0,22803.0,1.042376953125 +22764.0,22804.0,0.9977333984375 +22764.0,22805.0,0.898470703125 +22764.0,22806.0,0.92439111328125 +22764.0,22807.0,0.750400390625 +22764.0,22808.0,0.820496337890625 +22764.0,22809.0,0.8076785888671875 +22764.0,22810.0,1.24356103515625 +22764.0,22811.0,1.109795166015625 +22764.0,22812.0,1.24316455078125 +22764.0,22813.0,1.02660595703125 +22764.0,22814.0,1.1028718261718748 +22764.0,22815.0,0.93516064453125 +22764.0,22816.0,1.230754150390625 +22764.0,22817.0,1.0511907958984374 +22764.0,22818.0,1.0092005615234374 +22765.0,22737.0,0.8838671875 +22765.0,22738.0,0.695173583984375 +22765.0,22739.0,0.5457832031250001 +22765.0,22740.0,0.915178955078125 +22765.0,22741.0,0.850202392578125 +22765.0,22742.0,1.03043701171875 +22765.0,22743.0,0.82997607421875 +22765.0,22744.0,0.699451904296875 +22765.0,22745.0,0.532047607421875 +22765.0,22746.0,0.5934149169921875 +22765.0,22747.0,0.7515586395263671 +22765.0,22748.0,0.656826904296875 +22765.0,22749.0,1.24021533203125 +22765.0,22750.0,1.299064453125 +22765.0,22751.0,1.2923479614257811 +22765.0,22752.0,1.1714073486328125 +22765.0,22753.0,1.184017578125 +22765.0,22754.0,1.015019348144531 +22765.0,22755.0,1.2326357421875 +22765.0,22756.0,0.850620849609375 +22765.0,22757.0,0.6348115234375 +22765.0,22758.0,0.39697998046875 +22765.0,22759.0,0.1502802734375 +22765.0,22760.0,0.17412158203125 +22765.0,22761.0,0.3036650390625 +22765.0,22762.0,0.6765380859375 +22765.0,22763.0,0.288318359375 +22765.0,22764.0,0.267845703125 +22765.0,22765.0,0.094970703125 +22765.0,22766.0,0.5199827880859376 +22765.0,22767.0,0.3811539306640625 +22765.0,22768.0,0.263451171875 +22765.0,22769.0,0.509447509765625 +22765.0,22770.0,0.6323648681640625 +22765.0,22771.0,0.706413330078125 +22765.0,22772.0,0.898362548828125 +22765.0,22773.0,0.7537978515625 +22765.0,22774.0,0.9980662536621092 +22765.0,22775.0,1.0341091308593748 +22765.0,22776.0,1.15772314453125 +22765.0,22777.0,1.26304443359375 +22765.0,22778.0,0.8447314453125 +22765.0,22779.0,1.2379375 +22765.0,22780.0,1.3221583251953124 +22765.0,22781.0,1.196719482421875 +22765.0,22782.0,1.15115869140625 +22765.0,22783.0,1.083212646484375 +22765.0,22784.0,1.526056884765625 +22765.0,22785.0,1.677024658203125 +22765.0,22786.0,1.3824541015625 +22765.0,22787.0,1.5656142578125 +22765.0,22788.0,1.3774405517578123 +22765.0,22789.0,1.811633544921875 +22765.0,22790.0,1.877381103515625 +22765.0,22791.0,2.104128173828125 +22765.0,22792.0,1.71944921875 +22765.0,22793.0,1.6520928955078125 +22765.0,22794.0,1.2551282958984376 +22765.0,22795.0,1.97044775390625 +22765.0,22796.0,1.8822333984375 +22765.0,22797.0,1.4139277954101563 +22765.0,22798.0,1.1524569702148435 +22765.0,22799.0,1.0335390625 +22765.0,22800.0,1.029343505859375 +22765.0,22801.0,0.94630810546875 +22765.0,22802.0,0.897301513671875 +22765.0,22803.0,0.989501953125 +22765.0,22804.0,0.9448583984375 +22765.0,22805.0,0.845595703125 +22765.0,22806.0,0.87151611328125 +22765.0,22807.0,0.702525390625 +22765.0,22808.0,0.772621337890625 +22765.0,22809.0,0.7598035888671875 +22765.0,22810.0,1.19568603515625 +22765.0,22811.0,1.056920166015625 +22765.0,22812.0,1.19528955078125 +22765.0,22813.0,0.97873095703125 +22765.0,22814.0,1.073996826171875 +22765.0,22815.0,1.01428564453125 +22765.0,22816.0,1.240879150390625 +22765.0,22817.0,1.1303157958984376 +22765.0,22818.0,1.0883255615234375 +22766.0,22737.0,1.3078792724609376 +22766.0,22738.0,1.1201856689453125 +22766.0,22739.0,0.9697952880859376 +22766.0,22740.0,1.3391910400390623 +22766.0,22741.0,1.2742144775390625 +22766.0,22742.0,1.4544490966796877 +22766.0,22743.0,1.2019881591796877 +22766.0,22744.0,1.1234639892578124 +22766.0,22745.0,0.9570596923828124 +22766.0,22746.0,1.018427001953125 +22766.0,22747.0,1.1765707244873047 +22766.0,22748.0,1.0818389892578124 +22766.0,22749.0,1.6652274169921877 +22766.0,22750.0,1.7240765380859375 +22766.0,22751.0,1.717360046386719 +22766.0,22752.0,1.54341943359375 +22766.0,22753.0,1.6090296630859375 +22766.0,22754.0,1.4400314331054689 +22766.0,22755.0,1.6576478271484374 +22766.0,22756.0,1.2756329345703126 +22766.0,22757.0,1.0268236083984374 +22766.0,22758.0,0.8209920654296875 +22766.0,22759.0,0.4492923583984375 +22766.0,22760.0,0.5991336669921875 +22766.0,22761.0,0.7266771240234375 +22766.0,22762.0,0.8075501708984375 +22766.0,22763.0,0.7133304443359375 +22766.0,22764.0,0.5668577880859376 +22766.0,22765.0,0.5199827880859376 +22766.0,22766.0,0.050994873046875 +22766.0,22767.0,0.806166015625 +22766.0,22768.0,0.6884632568359375 +22766.0,22769.0,0.9344595947265624 +22766.0,22770.0,1.057376953125 +22766.0,22771.0,1.1314254150390626 +22766.0,22772.0,1.3233746337890624 +22766.0,22773.0,1.1788099365234377 +22766.0,22774.0,1.4230783386230468 +22766.0,22775.0,1.4591212158203124 +22766.0,22776.0,1.5827352294921877 +22766.0,22777.0,1.6880565185546874 +22766.0,22778.0,1.2697435302734374 +22766.0,22779.0,1.6629495849609377 +22766.0,22780.0,1.74717041015625 +22766.0,22781.0,1.6217315673828123 +22766.0,22782.0,1.5761707763671875 +22766.0,22783.0,1.5052247314453124 +22766.0,22784.0,1.8490689697265623 +22766.0,22785.0,2.0000367431640624 +22766.0,22786.0,1.7054661865234375 +22766.0,22787.0,1.9116263427734372 +22766.0,22788.0,1.70045263671875 +22766.0,22789.0,2.1346456298828125 +22766.0,22790.0,2.2003931884765624 +22766.0,22791.0,2.4271402587890627 +22766.0,22792.0,2.0424613037109376 +22766.0,22793.0,1.97510498046875 +22766.0,22794.0,1.571140380859375 +22766.0,22795.0,2.2624598388671875 +22766.0,22796.0,2.1932454833984374 +22766.0,22797.0,1.7249398803710938 +22766.0,22798.0,1.4754690551757812 +22766.0,22799.0,1.4555511474609375 +22766.0,22800.0,1.3523555908203124 +22766.0,22801.0,1.3683201904296876 +22766.0,22802.0,1.2033135986328125 +22766.0,22803.0,1.3125140380859377 +22766.0,22804.0,1.2678704833984376 +22766.0,22805.0,1.2666077880859374 +22766.0,22806.0,1.2165281982421876 +22766.0,22807.0,1.1165374755859374 +22766.0,22808.0,1.0716334228515625 +22766.0,22809.0,1.173815673828125 +22766.0,22810.0,1.4466981201171876 +22766.0,22811.0,1.3679322509765626 +22766.0,22812.0,1.3413016357421874 +22766.0,22813.0,1.1457430419921877 +22766.0,22814.0,1.1430089111328126 +22766.0,22815.0,0.9752977294921876 +22766.0,22816.0,1.2708912353515625 +22766.0,22817.0,1.091327880859375 +22766.0,22818.0,1.0493376464843749 +22767.0,22737.0,0.8170504150390625 +22767.0,22738.0,0.6153568115234375 +22767.0,22739.0,0.4809664306640625 +22767.0,22740.0,0.8483621826171875 +22767.0,22741.0,0.7873856201171875 +22767.0,22742.0,0.9636202392578124 +22767.0,22743.0,0.8191593017578125 +22767.0,22744.0,0.6446351318359375 +22767.0,22745.0,0.4492308349609375 +22767.0,22746.0,0.51059814453125 +22767.0,22747.0,0.6667418670654297 +22767.0,22748.0,0.5730101318359375 +22767.0,22749.0,1.1603985595703126 +22767.0,22750.0,1.2192476806640624 +22767.0,22751.0,1.2125311889648438 +22767.0,22752.0,1.160590576171875 +22767.0,22753.0,1.1042008056640624 +22767.0,22754.0,0.9352025756835938 +22767.0,22755.0,1.1528189697265625 +22767.0,22756.0,0.7658040771484375 +22767.0,22757.0,0.6709947509765625 +22767.0,22758.0,0.4331632080078125 +22767.0,22759.0,0.4364635009765625 +22767.0,22760.0,0.4593048095703125 +22767.0,22761.0,0.5868482666015625 +22767.0,22762.0,0.9617213134765624 +22767.0,22763.0,0.3245015869140625 +22767.0,22764.0,0.4290289306640625 +22767.0,22765.0,0.3811539306640625 +22767.0,22766.0,0.806166015625 +22767.0,22767.0,0.039337158203125 +22767.0,22768.0,0.2976343994140625 +22767.0,22769.0,0.1766307373046874 +22767.0,22770.0,0.301548095703125 +22767.0,22771.0,0.4985965576171875 +22767.0,22772.0,0.5675457763671875 +22767.0,22773.0,0.4229810791015625 +22767.0,22774.0,0.7232494812011718 +22767.0,22775.0,0.8262923583984375 +22767.0,22776.0,0.8269063720703125 +22767.0,22777.0,1.0272276611328124 +22767.0,22778.0,0.6369146728515624 +22767.0,22779.0,0.9071207275390624 +22767.0,22780.0,0.991341552734375 +22767.0,22781.0,0.8659027099609375 +22767.0,22782.0,0.8203419189453125 +22767.0,22783.0,0.7513958740234375 +22767.0,22784.0,1.1932401123046874 +22767.0,22785.0,1.3442078857421875 +22767.0,22786.0,1.0496373291015626 +22767.0,22787.0,1.2347974853515624 +22767.0,22788.0,1.044623779296875 +22767.0,22789.0,1.4788167724609376 +22767.0,22790.0,1.5445643310546875 +22767.0,22791.0,1.7713114013671876 +22767.0,22792.0,1.3866324462890625 +22767.0,22793.0,1.319276123046875 +22767.0,22794.0,0.9223115234375 +22767.0,22795.0,1.6376309814453125 +22767.0,22796.0,1.5494166259765625 +22767.0,22797.0,1.081111022949219 +22767.0,22798.0,0.8196401977539063 +22767.0,22799.0,0.7017222900390625 +22767.0,22800.0,0.6965267333984375 +22767.0,22801.0,0.6144913330078124 +22767.0,22802.0,0.5584847412109375 +22767.0,22803.0,0.6566851806640625 +22767.0,22804.0,0.6120416259765625 +22767.0,22805.0,0.5127789306640624 +22767.0,22806.0,0.5386993408203125 +22767.0,22807.0,0.3637086181640625 +22767.0,22808.0,0.5548045654296875 +22767.0,22809.0,0.42098681640625 +22767.0,22810.0,0.9778692626953124 +22767.0,22811.0,0.7241033935546874 +22767.0,22812.0,0.9774727783203124 +22767.0,22813.0,0.7609141845703125 +22767.0,22814.0,0.8561800537109375 +22767.0,22815.0,1.0204688720703126 +22767.0,22816.0,1.0230623779296877 +22767.0,22817.0,1.0994990234375 +22767.0,22818.0,0.9545087890625 +22768.0,22737.0,0.80234765625 +22768.0,22738.0,0.613654052734375 +22768.0,22739.0,0.464263671875 +22768.0,22740.0,0.833659423828125 +22768.0,22741.0,0.768682861328125 +22768.0,22742.0,0.94891748046875 +22768.0,22743.0,0.75045654296875 +22768.0,22744.0,0.617932373046875 +22768.0,22745.0,0.448528076171875 +22768.0,22746.0,0.5098953857421875 +22768.0,22747.0,0.6680391082763671 +22768.0,22748.0,0.573307373046875 +22768.0,22749.0,1.15869580078125 +22768.0,22750.0,1.217544921875 +22768.0,22751.0,1.2108284301757812 +22768.0,22752.0,1.0918878173828124 +22768.0,22753.0,1.102498046875 +22768.0,22754.0,0.9334998168945312 +22768.0,22755.0,1.1511162109375 +22768.0,22756.0,0.767101318359375 +22768.0,22757.0,0.5532919921875 +22768.0,22758.0,0.31546044921875 +22768.0,22759.0,0.3187607421875 +22768.0,22760.0,0.34160205078125 +22768.0,22761.0,0.4691455078125 +22768.0,22762.0,0.8440185546875 +22768.0,22763.0,0.206798828125 +22768.0,22764.0,0.435326171875 +22768.0,22765.0,0.263451171875 +22768.0,22766.0,0.6884632568359375 +22768.0,22767.0,0.2976343994140625 +22768.0,22768.0,0.179931640625 +22768.0,22769.0,0.425927978515625 +22768.0,22770.0,0.5488453369140625 +22768.0,22771.0,0.622893798828125 +22768.0,22772.0,0.814843017578125 +22768.0,22773.0,0.6702783203125 +22768.0,22774.0,0.9145467224121092 +22768.0,22775.0,0.950589599609375 +22768.0,22776.0,1.07420361328125 +22768.0,22777.0,1.17952490234375 +22768.0,22778.0,0.7612119140625 +22768.0,22779.0,1.15441796875 +22768.0,22780.0,1.2386387939453125 +22768.0,22781.0,1.1131999511718749 +22768.0,22782.0,1.06763916015625 +22768.0,22783.0,0.999693115234375 +22768.0,22784.0,1.442537353515625 +22768.0,22785.0,1.593505126953125 +22768.0,22786.0,1.2989345703125 +22768.0,22787.0,1.4820947265625 +22768.0,22788.0,1.2939210205078124 +22768.0,22789.0,1.728114013671875 +22768.0,22790.0,1.793861572265625 +22768.0,22791.0,2.020608642578125 +22768.0,22792.0,1.6359296875 +22768.0,22793.0,1.5685733642578126 +22768.0,22794.0,1.1716087646484374 +22768.0,22795.0,1.88692822265625 +22768.0,22796.0,1.7987138671875 +22768.0,22797.0,1.3304082641601562 +22768.0,22798.0,1.0689374389648436 +22768.0,22799.0,0.95001953125 +22768.0,22800.0,0.945823974609375 +22768.0,22801.0,0.86278857421875 +22768.0,22802.0,0.813781982421875 +22768.0,22803.0,0.905982421875 +22768.0,22804.0,0.8613388671875 +22768.0,22805.0,0.762076171875 +22768.0,22806.0,0.78799658203125 +22768.0,22807.0,0.6190058593750001 +22768.0,22808.0,0.689101806640625 +22768.0,22809.0,0.6762840576171875 +22768.0,22810.0,1.11216650390625 +22768.0,22811.0,0.973400634765625 +22768.0,22812.0,1.11177001953125 +22768.0,22813.0,0.89521142578125 +22768.0,22814.0,0.990477294921875 +22768.0,22815.0,1.15476611328125 +22768.0,22816.0,1.157359619140625 +22768.0,22817.0,1.2337962646484375 +22768.0,22818.0,1.0888060302734377 +22769.0,22737.0,0.750343994140625 +22769.0,22738.0,0.548650390625 +22769.0,22739.0,0.414260009765625 +22769.0,22740.0,0.78165576171875 +22769.0,22741.0,0.72067919921875 +22769.0,22742.0,0.896913818359375 +22769.0,22743.0,0.752452880859375 +22769.0,22744.0,0.5779287109375 +22769.0,22745.0,0.3825244140625 +22769.0,22746.0,0.4438917236328125 +22769.0,22747.0,0.6000354461669922 +22769.0,22748.0,0.5063037109374999 +22769.0,22749.0,1.093692138671875 +22769.0,22750.0,1.152541259765625 +22769.0,22751.0,1.1458247680664062 +22769.0,22752.0,1.0938841552734375 +22769.0,22753.0,1.037494384765625 +22769.0,22754.0,0.8684961547851563 +22769.0,22755.0,1.0861125488281251 +22769.0,22756.0,0.69909765625 +22769.0,22757.0,0.689288330078125 +22769.0,22758.0,0.541456787109375 +22769.0,22759.0,0.564757080078125 +22769.0,22760.0,0.587598388671875 +22769.0,22761.0,0.695141845703125 +22769.0,22762.0,1.0730148925781249 +22769.0,22763.0,0.452795166015625 +22769.0,22764.0,0.562322509765625 +22769.0,22765.0,0.509447509765625 +22769.0,22766.0,0.9344595947265624 +22769.0,22767.0,0.1766307373046874 +22769.0,22768.0,0.425927978515625 +22769.0,22769.0,0.10992431640625 +22769.0,22770.0,0.2348416748046875 +22769.0,22771.0,0.43189013671875 +22769.0,22772.0,0.50083935546875 +22769.0,22773.0,0.356274658203125 +22769.0,22774.0,0.6565430603027343 +22769.0,22775.0,0.7595859375 +22769.0,22776.0,0.760199951171875 +22769.0,22777.0,0.960521240234375 +22769.0,22778.0,0.5702082519531251 +22769.0,22779.0,0.840414306640625 +22769.0,22780.0,0.9246351318359376 +22769.0,22781.0,0.7991962890625 +22769.0,22782.0,0.753635498046875 +22769.0,22783.0,0.684689453125 +22769.0,22784.0,1.12653369140625 +22769.0,22785.0,1.27750146484375 +22769.0,22786.0,0.982930908203125 +22769.0,22787.0,1.168091064453125 +22769.0,22788.0,0.9779173583984376 +22769.0,22789.0,1.4121103515625 +22769.0,22790.0,1.47785791015625 +22769.0,22791.0,1.70460498046875 +22769.0,22792.0,1.319926025390625 +22769.0,22793.0,1.2525697021484374 +22769.0,22794.0,0.8556051025390625 +22769.0,22795.0,1.570924560546875 +22769.0,22796.0,1.482710205078125 +22769.0,22797.0,1.014404602050781 +22769.0,22798.0,0.7529337768554687 +22769.0,22799.0,0.635015869140625 +22769.0,22800.0,0.6298203125 +22769.0,22801.0,0.547784912109375 +22769.0,22802.0,0.5527783203125001 +22769.0,22803.0,0.589978759765625 +22769.0,22804.0,0.545335205078125 +22769.0,22805.0,0.446072509765625 +22769.0,22806.0,0.471992919921875 +22769.0,22807.0,0.383002197265625 +22769.0,22808.0,0.69209814453125 +22769.0,22809.0,0.4402803955078125 +22769.0,22810.0,1.023162841796875 +22769.0,22811.0,0.65739697265625 +22769.0,22812.0,1.022766357421875 +22769.0,22813.0,0.828207763671875 +22769.0,22814.0,0.9234736328125 +22769.0,22815.0,1.098762451171875 +22769.0,22816.0,1.06835595703125 +22769.0,22817.0,1.1737926025390626 +22769.0,22818.0,1.0328023681640626 +22770.0,22737.0,0.5392613525390625 +22770.0,22738.0,0.3375677490234375 +22770.0,22739.0,0.5331773681640626 +22770.0,22740.0,0.5705731201171875 +22770.0,22741.0,0.5275965576171875 +22770.0,22742.0,0.6858311767578125 +22770.0,22743.0,0.6963702392578125 +22770.0,22744.0,0.5748460693359375 +22770.0,22745.0,0.2954417724609375 +22770.0,22746.0,0.23280908203125 +22770.0,22747.0,0.3879528045654297 +22770.0,22748.0,0.2942210693359375 +22770.0,22749.0,0.8816094970703126 +22770.0,22750.0,0.9404586181640624 +22770.0,22751.0,0.9337421264648438 +22770.0,22752.0,0.884801513671875 +22770.0,22753.0,0.8254117431640625 +22770.0,22754.0,0.6564135131835938 +22770.0,22755.0,0.8740299072265625 +22770.0,22756.0,0.4870150146484375 +22770.0,22757.0,0.7062056884765625 +22770.0,22758.0,0.6603741455078125 +22770.0,22759.0,0.6876744384765625 +22770.0,22760.0,0.7105157470703125 +22770.0,22761.0,0.8140592041015625 +22770.0,22762.0,1.1149322509765625 +22770.0,22763.0,0.5757125244140625 +22770.0,22764.0,0.6852398681640625 +22770.0,22765.0,0.6323648681640625 +22770.0,22766.0,1.057376953125 +22770.0,22767.0,0.301548095703125 +22770.0,22768.0,0.5488453369140625 +22770.0,22769.0,0.2348416748046875 +22770.0,22770.0,0.021759033203125 +22770.0,22771.0,0.2188074951171875 +22770.0,22772.0,0.2877567138671875 +22770.0,22773.0,0.1431920166015625 +22770.0,22774.0,0.4434604187011718 +22770.0,22775.0,0.5465032958984375 +22770.0,22776.0,0.5471173095703126 +22770.0,22777.0,0.7474385986328125 +22770.0,22778.0,0.3571256103515625 +22770.0,22779.0,0.6273316650390625 +22770.0,22780.0,0.711552490234375 +22770.0,22781.0,0.5861136474609375 +22770.0,22782.0,0.5405528564453125 +22770.0,22783.0,0.4726068115234375 +22770.0,22784.0,0.9244510498046876 +22770.0,22785.0,1.0754188232421875 +22770.0,22786.0,0.7808482666015625 +22770.0,22787.0,0.9550084228515624 +22770.0,22788.0,0.775834716796875 +22770.0,22789.0,1.2100277099609376 +22770.0,22790.0,1.2757752685546877 +22770.0,22791.0,1.5025223388671876 +22770.0,22792.0,1.1178433837890625 +22770.0,22793.0,1.050487060546875 +22770.0,22794.0,0.7475224609375 +22770.0,22795.0,1.3688419189453125 +22770.0,22796.0,1.3816275634765625 +22770.0,22797.0,0.8983219604492187 +22770.0,22798.0,0.5508511352539063 +22770.0,22799.0,0.4229332275390625 +22770.0,22800.0,0.5217376708984375 +22770.0,22801.0,0.3357022705078125 +22770.0,22802.0,0.5986956787109375 +22770.0,22803.0,0.4818961181640625 +22770.0,22804.0,0.5912525634765625 +22770.0,22805.0,0.3609898681640625 +22770.0,22806.0,0.5179102783203124 +22770.0,22807.0,0.5079195556640625 +22770.0,22808.0,0.7640155029296875 +22770.0,22809.0,0.56519775390625 +22770.0,22810.0,1.0690802001953124 +22770.0,22811.0,0.7033143310546875 +22770.0,22812.0,1.0686837158203124 +22770.0,22813.0,0.8741251220703125 +22770.0,22814.0,0.9693909912109376 +22770.0,22815.0,1.1446798095703126 +22770.0,22816.0,1.1142733154296875 +22770.0,22817.0,1.2197099609375 +22770.0,22818.0,1.0787197265625 +22771.0,22737.0,0.363309814453125 +22771.0,22738.0,0.4076162109375 +22771.0,22739.0,0.604225830078125 +22771.0,22740.0,0.51562158203125 +22771.0,22741.0,0.57364501953125 +22771.0,22742.0,0.509879638671875 +22771.0,22743.0,0.757418701171875 +22771.0,22744.0,0.64589453125 +22771.0,22745.0,0.368490234375 +22771.0,22746.0,0.3038575439453125 +22771.0,22747.0,0.2090012664794922 +22771.0,22748.0,0.24126953125 +22771.0,22749.0,0.702657958984375 +22771.0,22750.0,0.761507080078125 +22771.0,22751.0,0.7547905883789062 +22771.0,22752.0,0.7058499755859375 +22771.0,22753.0,0.646460205078125 +22771.0,22754.0,0.4774619750976562 +22771.0,22755.0,0.695078369140625 +22771.0,22756.0,0.3080634765625 +22771.0,22757.0,0.777254150390625 +22771.0,22758.0,0.731422607421875 +22771.0,22759.0,0.761722900390625 +22771.0,22760.0,0.784564208984375 +22771.0,22761.0,0.885107666015625 +22771.0,22762.0,1.185980712890625 +22771.0,22763.0,0.649760986328125 +22771.0,22764.0,0.759288330078125 +22771.0,22765.0,0.706413330078125 +22771.0,22766.0,1.1314254150390626 +22771.0,22767.0,0.4985965576171875 +22771.0,22768.0,0.622893798828125 +22771.0,22769.0,0.43189013671875 +22771.0,22770.0,0.2188074951171875 +22771.0,22771.0,0.03985595703125 +22771.0,22772.0,0.23280517578125 +22771.0,22773.0,0.216240478515625 +22771.0,22774.0,0.3315088806152343 +22771.0,22775.0,0.3675517578125 +22771.0,22776.0,0.492165771484375 +22771.0,22777.0,0.596487060546875 +22771.0,22778.0,0.1781740722656249 +22771.0,22779.0,0.572380126953125 +22771.0,22780.0,0.6566009521484375 +22771.0,22781.0,0.5311621093750001 +22771.0,22782.0,0.485601318359375 +22771.0,22783.0,0.4206552734375 +22771.0,22784.0,0.92849951171875 +22771.0,22785.0,1.07946728515625 +22771.0,22786.0,0.752896728515625 +22771.0,22787.0,0.900056884765625 +22771.0,22788.0,0.7638831787109375 +22771.0,22789.0,1.254076171875 +22771.0,22790.0,1.31982373046875 +22771.0,22791.0,1.50557080078125 +22771.0,22792.0,1.161891845703125 +22771.0,22793.0,1.0945355224609374 +22771.0,22794.0,0.8795709228515625 +22771.0,22795.0,1.412890380859375 +22771.0,22796.0,1.513676025390625 +22771.0,22797.0,0.9423704223632812 +22771.0,22798.0,0.5948995971679687 +22771.0,22799.0,0.370981689453125 +22771.0,22800.0,0.6917861328125 +22771.0,22801.0,0.408750732421875 +22771.0,22802.0,0.768744140625 +22771.0,22803.0,0.651944580078125 +22771.0,22804.0,0.761301025390625 +22771.0,22805.0,0.558038330078125 +22771.0,22806.0,0.687958740234375 +22771.0,22807.0,0.704968017578125 +22771.0,22808.0,0.93406396484375 +22771.0,22809.0,0.7622462158203125 +22771.0,22810.0,1.239128662109375 +22771.0,22811.0,0.87336279296875 +22771.0,22812.0,1.238732177734375 +22771.0,22813.0,1.0441735839843749 +22771.0,22814.0,1.139439453125 +22771.0,22815.0,1.314728271484375 +22771.0,22816.0,1.28432177734375 +22771.0,22817.0,1.3897584228515625 +22771.0,22818.0,1.2487681884765625 +22772.0,22737.0,0.556259033203125 +22772.0,22738.0,0.6005654296875 +22772.0,22739.0,0.797175048828125 +22772.0,22740.0,0.70857080078125 +22772.0,22741.0,0.76659423828125 +22772.0,22742.0,0.702828857421875 +22772.0,22743.0,0.950367919921875 +22772.0,22744.0,0.83884375 +22772.0,22745.0,0.561439453125 +22772.0,22746.0,0.4968067626953125 +22772.0,22747.0,0.2899504852294922 +22772.0,22748.0,0.43421875 +22772.0,22749.0,0.783607177734375 +22772.0,22750.0,0.842456298828125 +22772.0,22751.0,0.8357398071289063 +22772.0,22752.0,0.7867991943359375 +22772.0,22753.0,0.727409423828125 +22772.0,22754.0,0.5584111938476563 +22772.0,22755.0,0.776027587890625 +22772.0,22756.0,0.3890126953125 +22772.0,22757.0,0.970203369140625 +22772.0,22758.0,0.924371826171875 +22772.0,22759.0,0.953672119140625 +22772.0,22760.0,0.976513427734375 +22772.0,22761.0,1.078056884765625 +22772.0,22762.0,1.378929931640625 +22772.0,22763.0,0.841710205078125 +22772.0,22764.0,0.951237548828125 +22772.0,22765.0,0.898362548828125 +22772.0,22766.0,1.3233746337890624 +22772.0,22767.0,0.5675457763671875 +22772.0,22768.0,0.814843017578125 +22772.0,22769.0,0.50083935546875 +22772.0,22770.0,0.2877567138671875 +22772.0,22771.0,0.23280517578125 +22772.0,22772.0,0.08575439453125 +22772.0,22773.0,0.285189697265625 +22772.0,22774.0,0.3314580993652343 +22772.0,22775.0,0.4455009765625 +22772.0,22776.0,0.435114990234375 +22772.0,22777.0,0.635436279296875 +22772.0,22778.0,0.256123291015625 +22772.0,22779.0,0.463329345703125 +22772.0,22780.0,0.5625501708984375 +22772.0,22781.0,0.407111328125 +22772.0,22782.0,0.350550537109375 +22772.0,22783.0,0.2776044921875 +22772.0,22784.0,0.78844873046875 +22772.0,22785.0,0.93941650390625 +22772.0,22786.0,0.615845947265625 +22772.0,22787.0,0.802006103515625 +22772.0,22788.0,0.6238323974609375 +22772.0,22789.0,1.211025390625 +22772.0,22790.0,1.22877294921875 +22772.0,22791.0,1.36652001953125 +22772.0,22792.0,1.118841064453125 +22772.0,22793.0,1.0514847412109374 +22772.0,22794.0,0.8365201416015625 +22772.0,22795.0,1.369839599609375 +22772.0,22796.0,1.470625244140625 +22772.0,22797.0,0.8993196411132812 +22772.0,22798.0,0.5518488159179687 +22772.0,22799.0,0.333930908203125 +22772.0,22800.0,0.6577353515625 +22772.0,22801.0,0.372699951171875 +22772.0,22802.0,0.734693359375 +22772.0,22803.0,0.617893798828125 +22772.0,22804.0,0.727250244140625 +22772.0,22805.0,0.524987548828125 +22772.0,22806.0,0.653907958984375 +22772.0,22807.0,0.680917236328125 +22772.0,22808.0,0.90001318359375 +22772.0,22809.0,0.7381954345703124 +22772.0,22810.0,1.205077880859375 +22772.0,22811.0,0.83931201171875 +22772.0,22812.0,1.204681396484375 +22772.0,22813.0,1.010122802734375 +22772.0,22814.0,1.105388671875 +22772.0,22815.0,1.280677490234375 +22772.0,22816.0,1.25027099609375 +22772.0,22817.0,1.3557076416015623 +22772.0,22818.0,1.2147174072265623 +22773.0,22737.0,0.5376943359374999 +22773.0,22738.0,0.458000732421875 +22773.0,22739.0,0.6546103515625 +22773.0,22740.0,0.569006103515625 +22773.0,22741.0,0.624029541015625 +22773.0,22742.0,0.68426416015625 +22773.0,22743.0,0.80780322265625 +22773.0,22744.0,0.696279052734375 +22773.0,22745.0,0.416874755859375 +22773.0,22746.0,0.3542420654296875 +22773.0,22747.0,0.3853857879638672 +22773.0,22748.0,0.291654052734375 +22773.0,22749.0,0.87904248046875 +22773.0,22750.0,0.9378916015625 +22773.0,22751.0,0.9311751098632812 +22773.0,22752.0,0.8822344970703125 +22773.0,22753.0,0.8228447265625 +22773.0,22754.0,0.6538464965820312 +22773.0,22755.0,0.871462890625 +22773.0,22756.0,0.484447998046875 +22773.0,22757.0,0.827638671875 +22773.0,22758.0,0.78180712890625 +22773.0,22759.0,0.809107421875 +22773.0,22760.0,0.83194873046875 +22773.0,22761.0,0.9354921875 +22773.0,22762.0,1.236365234375 +22773.0,22763.0,0.6971455078125 +22773.0,22764.0,0.8066728515625 +22773.0,22765.0,0.7537978515625 +22773.0,22766.0,1.1788099365234377 +22773.0,22767.0,0.4229810791015625 +22773.0,22768.0,0.6702783203125 +22773.0,22769.0,0.356274658203125 +22773.0,22770.0,0.1431920166015625 +22773.0,22771.0,0.216240478515625 +22773.0,22772.0,0.285189697265625 +22773.0,22773.0,0.140625 +22773.0,22774.0,0.4408934020996093 +22773.0,22775.0,0.5439362792968749 +22773.0,22776.0,0.54455029296875 +22773.0,22777.0,0.74487158203125 +22773.0,22778.0,0.35455859375 +22773.0,22779.0,0.6247646484375 +22773.0,22780.0,0.7089854736328125 +22773.0,22781.0,0.5835466308593751 +22773.0,22782.0,0.53798583984375 +22773.0,22783.0,0.470039794921875 +22773.0,22784.0,0.921884033203125 +22773.0,22785.0,1.072851806640625 +22773.0,22786.0,0.77828125 +22773.0,22787.0,0.95244140625 +22773.0,22788.0,0.7732677001953125 +22773.0,22789.0,1.207460693359375 +22773.0,22790.0,1.273208251953125 +22773.0,22791.0,1.499955322265625 +22773.0,22792.0,1.1152763671875 +22773.0,22793.0,1.0479200439453125 +22773.0,22794.0,0.8329554443359375 +22773.0,22795.0,1.36627490234375 +22773.0,22796.0,1.467060546875 +22773.0,22797.0,0.8957549438476563 +22773.0,22798.0,0.5482841186523437 +22773.0,22799.0,0.4203662109375 +22773.0,22800.0,0.616170654296875 +22773.0,22801.0,0.33313525390625 +22773.0,22802.0,0.693128662109375 +22773.0,22803.0,0.5763291015625001 +22773.0,22804.0,0.685685546875 +22773.0,22805.0,0.4824228515625 +22773.0,22806.0,0.61234326171875 +22773.0,22807.0,0.6293525390625 +22773.0,22808.0,0.858448486328125 +22773.0,22809.0,0.6866307373046875 +22773.0,22810.0,1.16351318359375 +22773.0,22811.0,0.797747314453125 +22773.0,22812.0,1.16311669921875 +22773.0,22813.0,0.96855810546875 +22773.0,22814.0,1.063823974609375 +22773.0,22815.0,1.23911279296875 +22773.0,22816.0,1.208706298828125 +22773.0,22817.0,1.3141429443359376 +22773.0,22818.0,1.1731527099609376 +22774.0,22737.0,0.6519627380371094 +22774.0,22738.0,0.6992691345214844 +22774.0,22739.0,0.8958787536621093 +22774.0,22740.0,0.8042745056152344 +22774.0,22741.0,0.8622979431152343 +22774.0,22742.0,0.7985325622558593 +22774.0,22743.0,1.0460716247558597 +22774.0,22744.0,0.9375474548339844 +22774.0,22745.0,0.6601431579589844 +22774.0,22746.0,0.5955104675292969 +22774.0,22747.0,0.3796541900634765 +22774.0,22748.0,0.5329224548339844 +22774.0,22749.0,0.6773108825683594 +22774.0,22750.0,0.7361600036621094 +22774.0,22751.0,0.7294435119628906 +22774.0,22752.0,0.7365028991699218 +22774.0,22753.0,0.6771131286621094 +22774.0,22754.0,0.5081148986816406 +22774.0,22755.0,0.6697312927246094 +22774.0,22756.0,0.4787164001464843 +22774.0,22757.0,1.0689070739746094 +22774.0,22758.0,1.0230755310058592 +22774.0,22759.0,1.0533758239746094 +22774.0,22760.0,1.0762171325683594 +22774.0,22761.0,1.1767605895996094 +22774.0,22762.0,1.4776336364746094 +22774.0,22763.0,0.9414139099121094 +22774.0,22764.0,1.0509412536621094 +22774.0,22765.0,0.9980662536621092 +22774.0,22766.0,1.4230783386230468 +22774.0,22767.0,0.7232494812011718 +22774.0,22768.0,0.9145467224121092 +22774.0,22769.0,0.6565430603027343 +22774.0,22770.0,0.4434604187011718 +22774.0,22771.0,0.3315088806152343 +22774.0,22772.0,0.3314580993652343 +22774.0,22773.0,0.4408934020996093 +22774.0,22774.0,0.0111618041992187 +22774.0,22775.0,0.2632046813964843 +22774.0,22776.0,0.3168186950683593 +22774.0,22777.0,0.4921399841308593 +22774.0,22778.0,0.2578269958496094 +22774.0,22779.0,0.3970330505371093 +22774.0,22780.0,0.4812538757324219 +22774.0,22781.0,0.3558150329589843 +22774.0,22782.0,0.4252542419433593 +22774.0,22783.0,0.4763081970214843 +22774.0,22784.0,0.8231524353027344 +22774.0,22785.0,0.9121202087402344 +22774.0,22786.0,0.5855496520996094 +22774.0,22787.0,0.7247098083496094 +22774.0,22788.0,0.7885361022949219 +22774.0,22789.0,1.3377290954589844 +22774.0,22790.0,1.1984766540527343 +22774.0,22791.0,1.3302237243652344 +22774.0,22792.0,1.245544769287109 +22774.0,22793.0,1.174188446044922 +22774.0,22794.0,1.0342238464355469 +22774.0,22795.0,1.5375433044433593 +22774.0,22796.0,1.6683289489746094 +22774.0,22797.0,1.0830233459472656 +22774.0,22798.0,0.7495525207519531 +22774.0,22799.0,0.5326346130371094 +22774.0,22800.0,0.8564390563964843 +22774.0,22801.0,0.5714036560058594 +22774.0,22802.0,0.9333970642089844 +22774.0,22803.0,0.8165975036621094 +22774.0,22804.0,0.9259539489746094 +22774.0,22805.0,0.7236912536621094 +22774.0,22806.0,0.8526116638183594 +22774.0,22807.0,0.8796209411621094 +22774.0,22808.0,1.0987168884277343 +22774.0,22809.0,0.9368991394042968 +22774.0,22810.0,1.403781585693359 +22774.0,22811.0,1.0380157165527344 +22774.0,22812.0,1.4033851013183594 +22774.0,22813.0,1.2088265075683593 +22774.0,22814.0,1.3040923767089845 +22774.0,22815.0,1.4793811950683593 +22774.0,22816.0,1.4489747009277345 +22774.0,22817.0,1.554411346435547 +22774.0,22818.0,1.4134211120605469 +22775.0,22737.0,0.688005615234375 +22775.0,22738.0,0.73531201171875 +22775.0,22739.0,0.931921630859375 +22775.0,22740.0,0.8403173828125 +22775.0,22741.0,0.8983408203125 +22775.0,22742.0,0.834575439453125 +22775.0,22743.0,1.082114501953125 +22775.0,22744.0,0.97359033203125 +22775.0,22745.0,0.69618603515625 +22775.0,22746.0,0.6315533447265625 +22775.0,22747.0,0.4156970672607422 +22775.0,22748.0,0.56896533203125 +22775.0,22749.0,0.713353759765625 +22775.0,22750.0,0.772202880859375 +22775.0,22751.0,0.7654863891601562 +22775.0,22752.0,0.7725457763671875 +22775.0,22753.0,0.713156005859375 +22775.0,22754.0,0.5441577758789062 +22775.0,22755.0,0.705774169921875 +22775.0,22756.0,0.5147592773437499 +22775.0,22757.0,1.104949951171875 +22775.0,22758.0,1.0591184082031249 +22775.0,22759.0,1.089418701171875 +22775.0,22760.0,1.112260009765625 +22775.0,22761.0,1.212803466796875 +22775.0,22762.0,1.513676513671875 +22775.0,22763.0,0.977456787109375 +22775.0,22764.0,1.086984130859375 +22775.0,22765.0,1.0341091308593748 +22775.0,22766.0,1.4591212158203124 +22775.0,22767.0,0.8262923583984375 +22775.0,22768.0,0.950589599609375 +22775.0,22769.0,0.7595859375 +22775.0,22770.0,0.5465032958984375 +22775.0,22771.0,0.3675517578125 +22775.0,22772.0,0.4455009765625 +22775.0,22773.0,0.5439362792968749 +22775.0,22774.0,0.2632046813964843 +22775.0,22775.0,0.09124755859375 +22775.0,22776.0,0.304861572265625 +22775.0,22777.0,0.320182861328125 +22775.0,22778.0,0.293869873046875 +22775.0,22779.0,0.453075927734375 +22775.0,22780.0,0.4692967529296875 +22775.0,22781.0,0.5158579101562499 +22775.0,22782.0,0.585297119140625 +22775.0,22783.0,0.63635107421875 +22775.0,22784.0,0.9831953125 +22775.0,22785.0,0.9001630859375 +22775.0,22786.0,0.745592529296875 +22775.0,22787.0,0.712752685546875 +22775.0,22788.0,0.9485789794921876 +22775.0,22789.0,1.32577197265625 +22775.0,22790.0,1.18651953125 +22775.0,22791.0,1.3182666015625 +22775.0,22792.0,1.233587646484375 +22775.0,22793.0,1.1622313232421877 +22775.0,22794.0,1.1942667236328126 +22775.0,22795.0,1.697586181640625 +22775.0,22796.0,1.828371826171875 +22775.0,22797.0,1.2430662231445313 +22775.0,22798.0,0.9095953979492188 +22775.0,22799.0,0.692677490234375 +22775.0,22800.0,1.01648193359375 +22775.0,22801.0,0.731446533203125 +22775.0,22802.0,1.09343994140625 +22775.0,22803.0,0.976640380859375 +22775.0,22804.0,1.085996826171875 +22775.0,22805.0,0.883734130859375 +22775.0,22806.0,1.0126545410156251 +22775.0,22807.0,1.032663818359375 +22775.0,22808.0,1.258759765625 +22775.0,22809.0,1.0899420166015623 +22775.0,22810.0,1.563824462890625 +22775.0,22811.0,1.19805859375 +22775.0,22812.0,1.563427978515625 +22775.0,22813.0,1.368869384765625 +22775.0,22814.0,1.46413525390625 +22775.0,22815.0,1.639424072265625 +22775.0,22816.0,1.609017578125 +22775.0,22817.0,1.7144542236328124 +22775.0,22818.0,1.5734639892578124 +22776.0,22737.0,0.81561962890625 +22776.0,22738.0,0.859926025390625 +22776.0,22739.0,1.05653564453125 +22776.0,22740.0,0.967931396484375 +22776.0,22741.0,1.025954833984375 +22776.0,22742.0,0.962189453125 +22776.0,22743.0,1.209728515625 +22776.0,22744.0,1.098204345703125 +22776.0,22745.0,0.820800048828125 +22776.0,22746.0,0.7561673583984375 +22776.0,22747.0,0.5493110809326172 +22776.0,22748.0,0.693579345703125 +22776.0,22749.0,0.8909677734375 +22776.0,22750.0,0.94981689453125 +22776.0,22751.0,0.9431004028320312 +22776.0,22752.0,0.9501597900390624 +22776.0,22753.0,0.89077001953125 +22776.0,22754.0,0.7217717895507813 +22776.0,22755.0,0.88338818359375 +22776.0,22756.0,0.648373291015625 +22776.0,22757.0,1.22956396484375 +22776.0,22758.0,1.183732421875 +22776.0,22759.0,1.21303271484375 +22776.0,22760.0,1.2358740234375 +22776.0,22761.0,1.33741748046875 +22776.0,22762.0,1.63829052734375 +22776.0,22763.0,1.10107080078125 +22776.0,22764.0,1.21059814453125 +22776.0,22765.0,1.15772314453125 +22776.0,22766.0,1.5827352294921877 +22776.0,22767.0,0.8269063720703125 +22776.0,22768.0,1.07420361328125 +22776.0,22769.0,0.760199951171875 +22776.0,22770.0,0.5471173095703126 +22776.0,22771.0,0.492165771484375 +22776.0,22772.0,0.435114990234375 +22776.0,22773.0,0.54455029296875 +22776.0,22774.0,0.3168186950683593 +22776.0,22775.0,0.304861572265625 +22776.0,22776.0,0.1624755859375 +22776.0,22777.0,0.362796875 +22776.0,22778.0,0.47148388671875 +22776.0,22779.0,0.35368994140625 +22776.0,22780.0,0.3269107666015625 +22776.0,22781.0,0.425471923828125 +22776.0,22782.0,0.4949111328125 +22776.0,22783.0,0.5589650878906249 +22776.0,22784.0,0.864809326171875 +22776.0,22785.0,0.757777099609375 +22776.0,22786.0,0.65320654296875 +22776.0,22787.0,0.5703666992187499 +22776.0,22788.0,0.8561929931640625 +22776.0,22789.0,1.183385986328125 +22776.0,22790.0,1.0441335449218752 +22776.0,22791.0,1.175880615234375 +22776.0,22792.0,1.09120166015625 +22776.0,22793.0,1.0198453369140623 +22776.0,22794.0,1.0868807373046874 +22776.0,22795.0,1.5792001953125 +22776.0,22796.0,1.72098583984375 +22776.0,22797.0,1.1296802368164065 +22776.0,22798.0,0.8172094116210937 +22776.0,22799.0,0.61529150390625 +22776.0,22800.0,0.939095947265625 +22776.0,22801.0,0.654060546875 +22776.0,22802.0,1.016053955078125 +22776.0,22803.0,0.89925439453125 +22776.0,22804.0,1.00861083984375 +22776.0,22805.0,0.80634814453125 +22776.0,22806.0,0.9352685546875 +22776.0,22807.0,0.96227783203125 +22776.0,22808.0,1.181373779296875 +22776.0,22809.0,1.0195560302734377 +22776.0,22810.0,1.4864384765625 +22776.0,22811.0,1.120672607421875 +22776.0,22812.0,1.4860419921875 +22776.0,22813.0,1.2914833984375 +22776.0,22814.0,1.386749267578125 +22776.0,22815.0,1.5620380859375 +22776.0,22816.0,1.531631591796875 +22776.0,22817.0,1.6370682373046874 +22776.0,22818.0,1.4960780029296874 +22777.0,22737.0,0.91694091796875 +22777.0,22738.0,0.964247314453125 +22777.0,22739.0,1.16085693359375 +22777.0,22740.0,1.051252685546875 +22777.0,22741.0,1.127276123046875 +22777.0,22742.0,1.0455107421875 +22777.0,22743.0,1.3110498046875 +22777.0,22744.0,1.202525634765625 +22777.0,22745.0,0.925121337890625 +22777.0,22746.0,0.8604886474609375 +22777.0,22747.0,0.6446323699951172 +22777.0,22748.0,0.797900634765625 +22777.0,22749.0,0.7922890625 +22777.0,22750.0,0.81813818359375 +22777.0,22751.0,0.7264216918945312 +22777.0,22752.0,0.9834810791015623 +22777.0,22753.0,0.92409130859375 +22777.0,22754.0,0.7550930786132812 +22777.0,22755.0,0.80770947265625 +22777.0,22756.0,0.743694580078125 +22777.0,22757.0,1.33388525390625 +22777.0,22758.0,1.2880537109375 +22777.0,22759.0,1.31835400390625 +22777.0,22760.0,1.3411953125 +22777.0,22761.0,1.44173876953125 +22777.0,22762.0,1.74261181640625 +22777.0,22763.0,1.20639208984375 +22777.0,22764.0,1.31591943359375 +22777.0,22765.0,1.26304443359375 +22777.0,22766.0,1.6880565185546874 +22777.0,22767.0,1.0272276611328124 +22777.0,22768.0,1.17952490234375 +22777.0,22769.0,0.960521240234375 +22777.0,22770.0,0.7474385986328125 +22777.0,22771.0,0.596487060546875 +22777.0,22772.0,0.635436279296875 +22777.0,22773.0,0.74487158203125 +22777.0,22774.0,0.4921399841308593 +22777.0,22775.0,0.320182861328125 +22777.0,22776.0,0.362796875 +22777.0,22777.0,0.0211181640625 +22777.0,22778.0,0.52280517578125 +22777.0,22779.0,0.51501123046875 +22777.0,22780.0,0.3622320556640625 +22777.0,22781.0,0.586793212890625 +22777.0,22782.0,0.656232421875 +22777.0,22783.0,0.727286376953125 +22777.0,22784.0,1.026130615234375 +22777.0,22785.0,0.919098388671875 +22777.0,22786.0,0.81452783203125 +22777.0,22787.0,0.62968798828125 +22777.0,22788.0,1.0175142822265624 +22777.0,22789.0,1.324707275390625 +22777.0,22790.0,1.090454833984375 +22777.0,22791.0,1.222201904296875 +22777.0,22792.0,1.25052294921875 +22777.0,22793.0,1.1811666259765623 +22777.0,22794.0,1.2482020263671876 +22777.0,22795.0,1.727521484375 +22777.0,22796.0,1.88230712890625 +22777.0,22797.0,1.2910015258789065 +22777.0,22798.0,0.9785307006835936 +22777.0,22799.0,0.78361279296875 +22777.0,22800.0,1.139417236328125 +22777.0,22801.0,0.8223818359375 +22777.0,22802.0,1.216375244140625 +22777.0,22803.0,1.09957568359375 +22777.0,22804.0,1.20893212890625 +22777.0,22805.0,1.00666943359375 +22777.0,22806.0,1.13558984375 +22777.0,22807.0,1.16259912109375 +22777.0,22808.0,1.381695068359375 +22777.0,22809.0,1.2198773193359376 +22777.0,22810.0,1.686759765625 +22777.0,22811.0,1.320993896484375 +22777.0,22812.0,1.68636328125 +22777.0,22813.0,1.4918046875 +22777.0,22814.0,1.587070556640625 +22777.0,22815.0,1.762359375 +22777.0,22816.0,1.731952880859375 +22777.0,22817.0,1.837389526367188 +22777.0,22818.0,1.6963992919921875 +22778.0,22737.0,0.4986279296875 +22778.0,22738.0,0.545934326171875 +22778.0,22739.0,0.7425439453125 +22778.0,22740.0,0.650939697265625 +22778.0,22741.0,0.708963134765625 +22778.0,22742.0,0.64519775390625 +22778.0,22743.0,0.89273681640625 +22778.0,22744.0,0.784212646484375 +22778.0,22745.0,0.5068083496093749 +22778.0,22746.0,0.4421756591796875 +22778.0,22747.0,0.2263193817138671 +22778.0,22748.0,0.379587646484375 +22778.0,22749.0,0.70797607421875 +22778.0,22750.0,0.7668251953125 +22778.0,22751.0,0.7601087036132812 +22778.0,22752.0,0.7231680908203125 +22778.0,22753.0,0.6637783203125 +22778.0,22754.0,0.4947800903320312 +22778.0,22755.0,0.700396484375 +22778.0,22756.0,0.325381591796875 +22778.0,22757.0,0.915572265625 +22778.0,22758.0,0.86974072265625 +22778.0,22759.0,0.900041015625 +22778.0,22760.0,0.92288232421875 +22778.0,22761.0,1.02342578125 +22778.0,22762.0,1.324298828125 +22778.0,22763.0,0.7880791015625 +22778.0,22764.0,0.8976064453125 +22778.0,22765.0,0.8447314453125 +22778.0,22766.0,1.2697435302734374 +22778.0,22767.0,0.6369146728515624 +22778.0,22768.0,0.7612119140625 +22778.0,22769.0,0.5702082519531251 +22778.0,22770.0,0.3571256103515625 +22778.0,22771.0,0.1781740722656249 +22778.0,22772.0,0.256123291015625 +22778.0,22773.0,0.35455859375 +22778.0,22774.0,0.2578269958496094 +22778.0,22775.0,0.293869873046875 +22778.0,22776.0,0.47148388671875 +22778.0,22777.0,0.52280517578125 +22778.0,22778.0,0.1044921875 +22778.0,22779.0,0.5516982421875001 +22778.0,22780.0,0.6359190673828125 +22778.0,22781.0,0.5104802246093749 +22778.0,22782.0,0.50891943359375 +22778.0,22783.0,0.447973388671875 +22778.0,22784.0,0.958817626953125 +22778.0,22785.0,1.066785400390625 +22778.0,22786.0,0.74021484375 +22778.0,22787.0,0.879375 +22778.0,22788.0,0.7942012939453125 +22778.0,22789.0,1.381394287109375 +22778.0,22790.0,1.353141845703125 +22778.0,22791.0,1.484888916015625 +22778.0,22792.0,1.2892099609375 +22778.0,22793.0,1.2218536376953124 +22778.0,22794.0,1.0068890380859377 +22778.0,22795.0,1.54020849609375 +22778.0,22796.0,1.640994140625 +22778.0,22797.0,1.069688537597656 +22778.0,22798.0,0.7222177124023438 +22778.0,22799.0,0.5042998046875 +22778.0,22800.0,0.828104248046875 +22778.0,22801.0,0.54306884765625 +22778.0,22802.0,0.905062255859375 +22778.0,22803.0,0.7882626953125 +22778.0,22804.0,0.897619140625 +22778.0,22805.0,0.6953564453125 +22778.0,22806.0,0.82427685546875 +22778.0,22807.0,0.8432861328125 +22778.0,22808.0,1.070382080078125 +22778.0,22809.0,0.9005643310546875 +22778.0,22810.0,1.37544677734375 +22778.0,22811.0,1.009680908203125 +22778.0,22812.0,1.37505029296875 +22778.0,22813.0,1.18049169921875 +22778.0,22814.0,1.275757568359375 +22778.0,22815.0,1.45104638671875 +22778.0,22816.0,1.420639892578125 +22778.0,22817.0,1.5260765380859376 +22778.0,22818.0,1.3850863037109375 +22779.0,22737.0,0.895833984375 +22779.0,22738.0,0.940140380859375 +22779.0,22739.0,1.13675 +22779.0,22740.0,1.048145751953125 +22779.0,22741.0,1.106169189453125 +22779.0,22742.0,1.04240380859375 +22779.0,22743.0,1.28994287109375 +22779.0,22744.0,1.178418701171875 +22779.0,22745.0,0.901014404296875 +22779.0,22746.0,0.8363817138671875 +22779.0,22747.0,0.6295254364013672 +22779.0,22748.0,0.773793701171875 +22779.0,22749.0,0.97118212890625 +22779.0,22750.0,1.03003125 +22779.0,22751.0,1.0233147583007811 +22779.0,22752.0,1.0303741455078126 +22779.0,22753.0,0.970984375 +22779.0,22754.0,0.8019861450195312 +22779.0,22755.0,0.9636025390625 +22779.0,22756.0,0.728587646484375 +22779.0,22757.0,1.3097783203125 +22779.0,22758.0,1.26394677734375 +22779.0,22759.0,1.2932470703125 +22779.0,22760.0,1.31608837890625 +22779.0,22761.0,1.4176318359375 +22779.0,22762.0,1.7185048828125 +22779.0,22763.0,1.18128515625 +22779.0,22764.0,1.2908125 +22779.0,22765.0,1.2379375 +22779.0,22766.0,1.6629495849609377 +22779.0,22767.0,0.9071207275390624 +22779.0,22768.0,1.15441796875 +22779.0,22769.0,0.840414306640625 +22779.0,22770.0,0.6273316650390625 +22779.0,22771.0,0.572380126953125 +22779.0,22772.0,0.463329345703125 +22779.0,22773.0,0.6247646484375 +22779.0,22774.0,0.3970330505371093 +22779.0,22775.0,0.453075927734375 +22779.0,22776.0,0.35368994140625 +22779.0,22777.0,0.51501123046875 +22779.0,22778.0,0.5516982421875001 +22779.0,22779.0,0.076904296875 +22779.0,22780.0,0.1761251220703125 +22779.0,22781.0,0.148686279296875 +22779.0,22782.0,0.21812548828125 +22779.0,22783.0,0.289179443359375 +22779.0,22784.0,0.614023681640625 +22779.0,22785.0,0.605991455078125 +22779.0,22786.0,0.3764208984375 +22779.0,22787.0,0.4185810546875 +22779.0,22788.0,0.5794073486328125 +22779.0,22789.0,1.0316003417968749 +22779.0,22790.0,0.892347900390625 +22779.0,22791.0,1.024094970703125 +22779.0,22792.0,0.939416015625 +22779.0,22793.0,0.8680596923828126 +22779.0,22794.0,0.8250950927734375 +22779.0,22795.0,1.32841455078125 +22779.0,22796.0,1.4592001953125 +22779.0,22797.0,0.8738945922851562 +22779.0,22798.0,0.5404237670898437 +22779.0,22799.0,0.345505859375 +22779.0,22800.0,0.705310302734375 +22779.0,22801.0,0.38427490234375 +22779.0,22802.0,0.826268310546875 +22779.0,22803.0,0.66546875 +22779.0,22804.0,0.8188251953125 +22779.0,22805.0,0.6505625 +22779.0,22806.0,0.74548291015625 +22779.0,22807.0,0.8124921875 +22779.0,22808.0,0.991588134765625 +22779.0,22809.0,0.8697703857421875 +22779.0,22810.0,1.29665283203125 +22779.0,22811.0,0.930886962890625 +22779.0,22812.0,1.29625634765625 +22779.0,22813.0,1.10169775390625 +22779.0,22814.0,1.196963623046875 +22779.0,22815.0,1.37225244140625 +22779.0,22816.0,1.341845947265625 +22779.0,22817.0,1.4472825927734374 +22779.0,22818.0,1.3062923583984376 +22780.0,22737.0,0.9800548095703124 +22780.0,22738.0,1.0243612060546874 +22780.0,22739.0,1.2209708251953124 +22780.0,22740.0,1.1323665771484377 +22780.0,22741.0,1.1903900146484374 +22780.0,22742.0,1.1266246337890624 +22780.0,22743.0,1.3741636962890624 +22780.0,22744.0,1.2626395263671877 +22780.0,22745.0,0.9852352294921874 +22780.0,22746.0,0.9206025390625 +22780.0,22747.0,0.7137462615966796 +22780.0,22748.0,0.8580145263671874 +22780.0,22749.0,1.0554029541015626 +22780.0,22750.0,1.0972520751953123 +22780.0,22751.0,1.0055355834960935 +22780.0,22752.0,1.114594970703125 +22780.0,22753.0,1.0552052001953125 +22780.0,22754.0,0.8862069702148437 +22780.0,22755.0,1.0478233642578123 +22780.0,22756.0,0.8128084716796875 +22780.0,22757.0,1.3939991455078125 +22780.0,22758.0,1.3481676025390623 +22780.0,22759.0,1.3774678955078126 +22780.0,22760.0,1.4003092041015626 +22780.0,22761.0,1.5018526611328125 +22780.0,22762.0,1.8027257080078125 +22780.0,22763.0,1.2655059814453125 +22780.0,22764.0,1.3750333251953124 +22780.0,22765.0,1.3221583251953124 +22780.0,22766.0,1.74717041015625 +22780.0,22767.0,0.991341552734375 +22780.0,22768.0,1.2386387939453125 +22780.0,22769.0,0.9246351318359376 +22780.0,22770.0,0.711552490234375 +22780.0,22771.0,0.6566009521484375 +22780.0,22772.0,0.5625501708984375 +22780.0,22773.0,0.7089854736328125 +22780.0,22774.0,0.4812538757324219 +22780.0,22775.0,0.4692967529296875 +22780.0,22776.0,0.3269107666015625 +22780.0,22777.0,0.3622320556640625 +22780.0,22778.0,0.6359190673828125 +22780.0,22779.0,0.1761251220703125 +22780.0,22780.0,0.023345947265625 +22780.0,22781.0,0.2479071044921875 +22780.0,22782.0,0.3173463134765625 +22780.0,22783.0,0.3884002685546875 +22780.0,22784.0,0.6872445068359375 +22780.0,22785.0,0.5802122802734375 +22780.0,22786.0,0.4756417236328125 +22780.0,22787.0,0.3928018798828125 +22780.0,22788.0,0.678628173828125 +22780.0,22789.0,1.0058211669921877 +22780.0,22790.0,0.8665687255859374 +22780.0,22791.0,0.9983157958984376 +22780.0,22792.0,0.9136368408203124 +22780.0,22793.0,0.842280517578125 +22780.0,22794.0,0.90931591796875 +22780.0,22795.0,1.4016353759765623 +22780.0,22796.0,1.5434210205078125 +22780.0,22797.0,0.9521154174804688 +22780.0,22798.0,0.6396445922851562 +22780.0,22799.0,0.4447266845703125 +22780.0,22800.0,0.8045311279296875 +22780.0,22801.0,0.4834957275390625 +22780.0,22802.0,0.9254891357421876 +22780.0,22803.0,0.7646895751953126 +22780.0,22804.0,0.9180460205078124 +22780.0,22805.0,0.7497833251953125 +22780.0,22806.0,0.8447037353515625 +22780.0,22807.0,0.9117130126953124 +22780.0,22808.0,1.0908089599609374 +22780.0,22809.0,0.9689912109375 +22780.0,22810.0,1.3958736572265624 +22780.0,22811.0,1.0301077880859375 +22780.0,22812.0,1.3954771728515625 +22780.0,22813.0,1.2009185791015624 +22780.0,22814.0,1.2961844482421876 +22780.0,22815.0,1.4714732666015624 +22780.0,22816.0,1.4410667724609374 +22780.0,22817.0,1.54650341796875 +22780.0,22818.0,1.40551318359375 +22781.0,22737.0,0.854615966796875 +22781.0,22738.0,0.89892236328125 +22781.0,22739.0,1.095531982421875 +22781.0,22740.0,1.006927734375 +22781.0,22741.0,1.064951171875 +22781.0,22742.0,1.001185791015625 +22781.0,22743.0,1.248724853515625 +22781.0,22744.0,1.13720068359375 +22781.0,22745.0,0.85979638671875 +22781.0,22746.0,0.7951636962890625 +22781.0,22747.0,0.5883074188232422 +22781.0,22748.0,0.73257568359375 +22781.0,22749.0,0.929964111328125 +22781.0,22750.0,0.988813232421875 +22781.0,22751.0,0.9820967407226564 +22781.0,22752.0,0.9891561279296875 +22781.0,22753.0,0.929766357421875 +22781.0,22754.0,0.7607681274414062 +22781.0,22755.0,0.922384521484375 +22781.0,22756.0,0.68736962890625 +22781.0,22757.0,1.268560302734375 +22781.0,22758.0,1.222728759765625 +22781.0,22759.0,1.252029052734375 +22781.0,22760.0,1.274870361328125 +22781.0,22761.0,1.376413818359375 +22781.0,22762.0,1.677286865234375 +22781.0,22763.0,1.140067138671875 +22781.0,22764.0,1.249594482421875 +22781.0,22765.0,1.196719482421875 +22781.0,22766.0,1.6217315673828123 +22781.0,22767.0,0.8659027099609375 +22781.0,22768.0,1.1131999511718749 +22781.0,22769.0,0.7991962890625 +22781.0,22770.0,0.5861136474609375 +22781.0,22771.0,0.5311621093750001 +22781.0,22772.0,0.407111328125 +22781.0,22773.0,0.5835466308593751 +22781.0,22774.0,0.3558150329589843 +22781.0,22775.0,0.5158579101562499 +22781.0,22776.0,0.425471923828125 +22781.0,22777.0,0.586793212890625 +22781.0,22778.0,0.5104802246093749 +22781.0,22779.0,0.148686279296875 +22781.0,22780.0,0.2479071044921875 +22781.0,22781.0,0.09246826171875 +22781.0,22782.0,0.161907470703125 +22781.0,22783.0,0.23296142578125 +22781.0,22784.0,0.5598056640625 +22781.0,22785.0,0.6757734375 +22781.0,22786.0,0.322202880859375 +22781.0,22787.0,0.488363037109375 +22781.0,22788.0,0.5251893310546876 +22781.0,22789.0,1.10138232421875 +22781.0,22790.0,0.9621298828125 +22781.0,22791.0,1.093876953125 +22781.0,22792.0,1.009197998046875 +22781.0,22793.0,0.9378416748046876 +22781.0,22794.0,0.7708770751953125 +22781.0,22795.0,1.274196533203125 +22781.0,22796.0,1.404982177734375 +22781.0,22797.0,0.8196765747070313 +22781.0,22798.0,0.4862057495117187 +22781.0,22799.0,0.289287841796875 +22781.0,22800.0,0.65109228515625 +22781.0,22801.0,0.328056884765625 +22781.0,22802.0,0.77005029296875 +22781.0,22803.0,0.611250732421875 +22781.0,22804.0,0.762607177734375 +22781.0,22805.0,0.594344482421875 +22781.0,22806.0,0.689264892578125 +22781.0,22807.0,0.756274169921875 +22781.0,22808.0,0.9353701171875 +22781.0,22809.0,0.8135523681640625 +22781.0,22810.0,1.240434814453125 +22781.0,22811.0,0.8746689453125 +22781.0,22812.0,1.240038330078125 +22781.0,22813.0,1.045479736328125 +22781.0,22814.0,1.14074560546875 +22781.0,22815.0,1.316034423828125 +22781.0,22816.0,1.2856279296875 +22781.0,22817.0,1.3910645751953126 +22781.0,22818.0,1.2500743408203123 +22782.0,22737.0,0.80905517578125 +22782.0,22738.0,0.853361572265625 +22782.0,22739.0,1.04997119140625 +22782.0,22740.0,0.961366943359375 +22782.0,22741.0,1.019390380859375 +22782.0,22742.0,0.955625 +22782.0,22743.0,1.2031640625 +22782.0,22744.0,1.091639892578125 +22782.0,22745.0,0.814235595703125 +22782.0,22746.0,0.7496029052734375 +22782.0,22747.0,0.5427466278076172 +22782.0,22748.0,0.687014892578125 +22782.0,22749.0,0.9994033203125 +22782.0,22750.0,1.05825244140625 +22782.0,22751.0,1.0515359497070311 +22782.0,22752.0,1.0395953369140625 +22782.0,22753.0,0.98020556640625 +22782.0,22754.0,0.8112073364257812 +22782.0,22755.0,0.99182373046875 +22782.0,22756.0,0.641808837890625 +22782.0,22757.0,1.22299951171875 +22782.0,22758.0,1.17716796875 +22782.0,22759.0,1.20646826171875 +22782.0,22760.0,1.2293095703125 +22782.0,22761.0,1.33085302734375 +22782.0,22762.0,1.63172607421875 +22782.0,22763.0,1.09450634765625 +22782.0,22764.0,1.20403369140625 +22782.0,22765.0,1.15115869140625 +22782.0,22766.0,1.5761707763671875 +22782.0,22767.0,0.8203419189453125 +22782.0,22768.0,1.06763916015625 +22782.0,22769.0,0.753635498046875 +22782.0,22770.0,0.5405528564453125 +22782.0,22771.0,0.485601318359375 +22782.0,22772.0,0.350550537109375 +22782.0,22773.0,0.53798583984375 +22782.0,22774.0,0.4252542419433593 +22782.0,22775.0,0.585297119140625 +22782.0,22776.0,0.4949111328125 +22782.0,22777.0,0.656232421875 +22782.0,22778.0,0.50891943359375 +22782.0,22779.0,0.21812548828125 +22782.0,22780.0,0.3173463134765625 +22782.0,22781.0,0.161907470703125 +22782.0,22782.0,0.1053466796875 +22782.0,22783.0,0.176400634765625 +22782.0,22784.0,0.610244873046875 +22782.0,22785.0,0.738212646484375 +22782.0,22786.0,0.37264208984375 +22782.0,22787.0,0.55780224609375 +22782.0,22788.0,0.4736285400390625 +22782.0,22789.0,1.067821533203125 +22782.0,22790.0,1.027569091796875 +22782.0,22791.0,1.163316162109375 +22782.0,22792.0,0.97563720703125 +22782.0,22793.0,0.9082808837890624 +22782.0,22794.0,0.7153162841796875 +22782.0,22795.0,1.2266357421875 +22782.0,22796.0,1.34942138671875 +22782.0,22797.0,0.7681157836914062 +22782.0,22798.0,0.4306449584960937 +22782.0,22799.0,0.23272705078125 +22782.0,22800.0,0.595531494140625 +22782.0,22801.0,0.27149609375 +22782.0,22802.0,0.713489501953125 +22782.0,22803.0,0.5556899414062499 +22782.0,22804.0,0.70604638671875 +22782.0,22805.0,0.5377836914062499 +22782.0,22806.0,0.6327041015625 +22782.0,22807.0,0.69971337890625 +22782.0,22808.0,0.878809326171875 +22782.0,22809.0,0.7569915771484375 +22782.0,22810.0,1.1838740234375 +22782.0,22811.0,0.818108154296875 +22782.0,22812.0,1.1834775390625 +22782.0,22813.0,0.9889189453125 +22782.0,22814.0,1.084184814453125 +22782.0,22815.0,1.2594736328125 +22782.0,22816.0,1.229067138671875 +22782.0,22817.0,1.3345037841796874 +22782.0,22818.0,1.1935135498046876 +22783.0,22737.0,0.744109130859375 +22783.0,22738.0,0.78741552734375 +22783.0,22739.0,0.984025146484375 +22783.0,22740.0,0.8964208984375 +22783.0,22741.0,0.9534443359375 +22783.0,22742.0,0.890678955078125 +22783.0,22743.0,1.137218017578125 +22783.0,22744.0,1.02569384765625 +22783.0,22745.0,0.74628955078125 +22783.0,22746.0,0.6836568603515625 +22783.0,22747.0,0.4818005828857422 +22783.0,22748.0,0.62106884765625 +22783.0,22749.0,0.975457275390625 +22783.0,22750.0,1.034306396484375 +22783.0,22751.0,1.0275899047851562 +22783.0,22752.0,0.9786492919921876 +22783.0,22753.0,0.919259521484375 +22783.0,22754.0,0.7502612915039063 +22783.0,22755.0,0.967877685546875 +22783.0,22756.0,0.58086279296875 +22783.0,22757.0,1.157053466796875 +22783.0,22758.0,1.111221923828125 +22783.0,22759.0,1.138522216796875 +22783.0,22760.0,1.161363525390625 +22783.0,22761.0,1.264906982421875 +22783.0,22762.0,1.565780029296875 +22783.0,22763.0,1.026560302734375 +22783.0,22764.0,1.136087646484375 +22783.0,22765.0,1.083212646484375 +22783.0,22766.0,1.5052247314453124 +22783.0,22767.0,0.7513958740234375 +22783.0,22768.0,0.999693115234375 +22783.0,22769.0,0.684689453125 +22783.0,22770.0,0.4726068115234375 +22783.0,22771.0,0.4206552734375 +22783.0,22772.0,0.2776044921875 +22783.0,22773.0,0.470039794921875 +22783.0,22774.0,0.4763081970214843 +22783.0,22775.0,0.63635107421875 +22783.0,22776.0,0.5589650878906249 +22783.0,22777.0,0.727286376953125 +22783.0,22778.0,0.447973388671875 +22783.0,22779.0,0.289179443359375 +22783.0,22780.0,0.3884002685546875 +22783.0,22781.0,0.23296142578125 +22783.0,22782.0,0.176400634765625 +22783.0,22783.0,0.10345458984375 +22783.0,22784.0,0.614298828125 +22783.0,22785.0,0.7652666015625 +22783.0,22786.0,0.441696044921875 +22783.0,22787.0,0.627856201171875 +22783.0,22788.0,0.4496824951171875 +22783.0,22789.0,1.03687548828125 +22783.0,22790.0,1.054623046875 +22783.0,22791.0,1.1923701171875 +22783.0,22792.0,0.944691162109375 +22783.0,22793.0,0.8773348388671875 +22783.0,22794.0,0.6623702392578125 +22783.0,22795.0,1.195689697265625 +22783.0,22796.0,1.296475341796875 +22783.0,22797.0,0.7251697387695313 +22783.0,22798.0,0.3776989135742187 +22783.0,22799.0,0.159781005859375 +22783.0,22800.0,0.5425854492187501 +22783.0,22801.0,0.198550048828125 +22783.0,22802.0,0.64054345703125 +22783.0,22803.0,0.502743896484375 +22783.0,22804.0,0.633100341796875 +22783.0,22805.0,0.464837646484375 +22783.0,22806.0,0.5597580566406251 +22783.0,22807.0,0.626767333984375 +22783.0,22808.0,0.80586328125 +22783.0,22809.0,0.6840455322265625 +22783.0,22810.0,1.110927978515625 +22783.0,22811.0,0.745162109375 +22783.0,22812.0,1.110531494140625 +22783.0,22813.0,0.915972900390625 +22783.0,22814.0,1.01123876953125 +22783.0,22815.0,1.186527587890625 +22783.0,22816.0,1.15612109375 +22783.0,22817.0,1.2615577392578126 +22783.0,22818.0,1.1205675048828123 +22784.0,22737.0,1.251953369140625 +22784.0,22738.0,1.239259765625 +22784.0,22739.0,1.430869384765625 +22784.0,22740.0,1.35026513671875 +22784.0,22741.0,1.40528857421875 +22784.0,22742.0,1.398523193359375 +22784.0,22743.0,1.589062255859375 +22784.0,22744.0,1.4775380859375 +22784.0,22745.0,1.1951337890625 +22784.0,22746.0,1.1355010986328125 +22784.0,22747.0,0.9926448211669922 +22784.0,22748.0,1.0729130859375 +22784.0,22749.0,1.397301513671875 +22784.0,22750.0,1.456150634765625 +22784.0,22751.0,1.4494341430664062 +22784.0,22752.0,1.4564935302734374 +22784.0,22753.0,1.397103759765625 +22784.0,22754.0,1.2281055297851562 +22784.0,22755.0,1.389721923828125 +22784.0,22756.0,1.09170703125 +22784.0,22757.0,1.608897705078125 +22784.0,22758.0,1.558066162109375 +22784.0,22759.0,1.581366455078125 +22784.0,22760.0,1.604207763671875 +22784.0,22761.0,1.711751220703125 +22784.0,22762.0,2.017624267578125 +22784.0,22763.0,1.469404541015625 +22784.0,22764.0,1.578931884765625 +22784.0,22765.0,1.526056884765625 +22784.0,22766.0,1.8490689697265623 +22784.0,22767.0,1.1932401123046874 +22784.0,22768.0,1.442537353515625 +22784.0,22769.0,1.12653369140625 +22784.0,22770.0,0.9244510498046876 +22784.0,22771.0,0.92849951171875 +22784.0,22772.0,0.78844873046875 +22784.0,22773.0,0.921884033203125 +22784.0,22774.0,0.8231524353027344 +22784.0,22775.0,0.9831953125 +22784.0,22776.0,0.864809326171875 +22784.0,22777.0,1.026130615234375 +22784.0,22778.0,0.958817626953125 +22784.0,22779.0,0.614023681640625 +22784.0,22780.0,0.6872445068359375 +22784.0,22781.0,0.5598056640625 +22784.0,22782.0,0.610244873046875 +22784.0,22783.0,0.614298828125 +22784.0,22784.0,0.05914306640625 +22784.0,22785.0,0.21011083984375 +22784.0,22786.0,0.323540283203125 +22784.0,22787.0,0.5127004394531249 +22784.0,22788.0,0.2165267333984375 +22784.0,22789.0,0.6257197265625 +22784.0,22790.0,0.49946728515625 +22784.0,22791.0,0.63721435546875 +22784.0,22792.0,0.533535400390625 +22784.0,22793.0,0.4661790771484375 +22784.0,22794.0,0.3632144775390625 +22784.0,22795.0,0.784533935546875 +22784.0,22796.0,0.933319580078125 +22784.0,22797.0,0.3350139770507812 +22784.0,22798.0,0.3935431518554687 +22784.0,22799.0,0.667625244140625 +22784.0,22800.0,0.5974296875 +22784.0,22801.0,0.650394287109375 +22784.0,22802.0,0.7583876953125 +22784.0,22803.0,0.670588134765625 +22784.0,22804.0,0.725944580078125 +22784.0,22805.0,0.811681884765625 +22784.0,22806.0,0.792602294921875 +22784.0,22807.0,0.968611572265625 +22784.0,22808.0,0.92270751953125 +22784.0,22809.0,0.9498897705078124 +22784.0,22810.0,0.923772216796875 +22784.0,22811.0,0.59600634765625 +22784.0,22812.0,0.927375732421875 +22784.0,22813.0,0.904817138671875 +22784.0,22814.0,0.9540830078125 +22784.0,22815.0,1.129371826171875 +22784.0,22816.0,1.05296533203125 +22784.0,22817.0,1.1584019775390626 +22784.0,22818.0,1.0454117431640624 +22785.0,22737.0,1.402921142578125 +22785.0,22738.0,1.3902275390625 +22785.0,22739.0,1.581837158203125 +22785.0,22740.0,1.50123291015625 +22785.0,22741.0,1.55625634765625 +22785.0,22742.0,1.549490966796875 +22785.0,22743.0,1.740030029296875 +22785.0,22744.0,1.628505859375 +22785.0,22745.0,1.3461015625 +22785.0,22746.0,1.2864688720703126 +22785.0,22747.0,1.1436125946044922 +22785.0,22748.0,1.223880859375 +22785.0,22749.0,1.486269287109375 +22785.0,22750.0,1.545118408203125 +22785.0,22751.0,1.5384019165039062 +22785.0,22752.0,1.5454613037109377 +22785.0,22753.0,1.486071533203125 +22785.0,22754.0,1.3170733032226565 +22785.0,22755.0,1.478689697265625 +22785.0,22756.0,1.2426748046875 +22785.0,22757.0,1.759865478515625 +22785.0,22758.0,1.709033935546875 +22785.0,22759.0,1.732334228515625 +22785.0,22760.0,1.755175537109375 +22785.0,22761.0,1.862718994140625 +22785.0,22762.0,2.168592041015625 +22785.0,22763.0,1.620372314453125 +22785.0,22764.0,1.729899658203125 +22785.0,22765.0,1.677024658203125 +22785.0,22766.0,2.0000367431640624 +22785.0,22767.0,1.3442078857421875 +22785.0,22768.0,1.593505126953125 +22785.0,22769.0,1.27750146484375 +22785.0,22770.0,1.0754188232421875 +22785.0,22771.0,1.07946728515625 +22785.0,22772.0,0.93941650390625 +22785.0,22773.0,1.072851806640625 +22785.0,22774.0,0.9121202087402344 +22785.0,22775.0,0.9001630859375 +22785.0,22776.0,0.757777099609375 +22785.0,22777.0,0.919098388671875 +22785.0,22778.0,1.066785400390625 +22785.0,22779.0,0.605991455078125 +22785.0,22780.0,0.5802122802734375 +22785.0,22781.0,0.6757734375 +22785.0,22782.0,0.738212646484375 +22785.0,22783.0,0.7652666015625 +22785.0,22784.0,0.21011083984375 +22785.0,22785.0,0.09307861328125 +22785.0,22786.0,0.451508056640625 +22785.0,22787.0,0.405668212890625 +22785.0,22788.0,0.3674945068359375 +22785.0,22789.0,0.5186875 +22785.0,22790.0,0.38243505859375 +22785.0,22791.0,0.52018212890625 +22785.0,22792.0,0.426503173828125 +22785.0,22793.0,0.3551468505859375 +22785.0,22794.0,0.5141822509765626 +22785.0,22795.0,0.917501708984375 +22785.0,22796.0,1.084287353515625 +22785.0,22797.0,0.4859817504882812 +22785.0,22798.0,0.5445109252929687 +22785.0,22799.0,0.818593017578125 +22785.0,22800.0,0.7483974609375 +22785.0,22801.0,0.801362060546875 +22785.0,22802.0,0.90935546875 +22785.0,22803.0,0.821555908203125 +22785.0,22804.0,0.876912353515625 +22785.0,22805.0,0.962649658203125 +22785.0,22806.0,0.943570068359375 +22785.0,22807.0,1.119579345703125 +22785.0,22808.0,1.07367529296875 +22785.0,22809.0,1.1008575439453123 +22785.0,22810.0,1.074739990234375 +22785.0,22811.0,0.74697412109375 +22785.0,22812.0,1.078343505859375 +22785.0,22813.0,1.055784912109375 +22785.0,22814.0,1.10505078125 +22785.0,22815.0,1.280339599609375 +22785.0,22816.0,1.20393310546875 +22785.0,22817.0,1.3093697509765625 +22785.0,22818.0,1.1963795166015625 +22786.0,22737.0,1.0763505859375 +22786.0,22738.0,1.095656982421875 +22786.0,22739.0,1.2872666015625 +22786.0,22740.0,1.206662353515625 +22786.0,22741.0,1.261685791015625 +22786.0,22742.0,1.22292041015625 +22786.0,22743.0,1.44545947265625 +22786.0,22744.0,1.333935302734375 +22786.0,22745.0,1.051531005859375 +22786.0,22746.0,0.9918983154296876 +22786.0,22747.0,0.8100420379638672 +22786.0,22748.0,0.929310302734375 +22786.0,22749.0,1.15969873046875 +22786.0,22750.0,1.2185478515625 +22786.0,22751.0,1.2118313598632813 +22786.0,22752.0,1.2188907470703123 +22786.0,22753.0,1.1595009765625 +22786.0,22754.0,0.9905027465820312 +22786.0,22755.0,1.152119140625 +22786.0,22756.0,0.909104248046875 +22786.0,22757.0,1.465294921875 +22786.0,22758.0,1.41446337890625 +22786.0,22759.0,1.437763671875 +22786.0,22760.0,1.46060498046875 +22786.0,22761.0,1.5681484375 +22786.0,22762.0,1.874021484375 +22786.0,22763.0,1.3258017578125 +22786.0,22764.0,1.4353291015625 +22786.0,22765.0,1.3824541015625 +22786.0,22766.0,1.7054661865234375 +22786.0,22767.0,1.0496373291015626 +22786.0,22768.0,1.2989345703125 +22786.0,22769.0,0.982930908203125 +22786.0,22770.0,0.7808482666015625 +22786.0,22771.0,0.752896728515625 +22786.0,22772.0,0.615845947265625 +22786.0,22773.0,0.77828125 +22786.0,22774.0,0.5855496520996094 +22786.0,22775.0,0.745592529296875 +22786.0,22776.0,0.65320654296875 +22786.0,22777.0,0.81452783203125 +22786.0,22778.0,0.74021484375 +22786.0,22779.0,0.3764208984375 +22786.0,22780.0,0.4756417236328125 +22786.0,22781.0,0.322202880859375 +22786.0,22782.0,0.37264208984375 +22786.0,22783.0,0.441696044921875 +22786.0,22784.0,0.323540283203125 +22786.0,22785.0,0.451508056640625 +22786.0,22786.0,0.0859375 +22786.0,22787.0,0.44409765625 +22786.0,22788.0,0.2889239501953125 +22786.0,22789.0,0.877116943359375 +22786.0,22790.0,0.740864501953125 +22786.0,22791.0,0.878611572265625 +22786.0,22792.0,0.7849326171875 +22786.0,22793.0,0.7135762939453125 +22786.0,22794.0,0.5346116943359376 +22786.0,22795.0,1.03793115234375 +22786.0,22796.0,1.168716796875 +22786.0,22797.0,0.5834111938476563 +22786.0,22798.0,0.2499403686523437 +22786.0,22799.0,0.4960224609375 +22786.0,22800.0,0.566826904296875 +22786.0,22801.0,0.50679150390625 +22786.0,22802.0,0.707784912109375 +22786.0,22803.0,0.5269853515625 +22786.0,22804.0,0.694341796875 +22786.0,22805.0,0.6680791015625 +22786.0,22806.0,0.64899951171875 +22786.0,22807.0,0.8250087890625 +22786.0,22808.0,0.873104736328125 +22786.0,22809.0,0.8062869873046875 +22786.0,22810.0,1.12116943359375 +22786.0,22811.0,0.654403564453125 +22786.0,22812.0,1.12077294921875 +22786.0,22813.0,0.92621435546875 +22786.0,22814.0,1.021480224609375 +22786.0,22815.0,1.19676904296875 +22786.0,22816.0,1.166362548828125 +22786.0,22817.0,1.2717991943359377 +22786.0,22818.0,1.1308089599609374 +22787.0,22737.0,1.2235107421875 +22787.0,22738.0,1.267817138671875 +22787.0,22739.0,1.4644267578125 +22787.0,22740.0,1.375822509765625 +22787.0,22741.0,1.433845947265625 +22787.0,22742.0,1.37008056640625 +22787.0,22743.0,1.61761962890625 +22787.0,22744.0,1.506095458984375 +22787.0,22745.0,1.228691162109375 +22787.0,22746.0,1.1640584716796876 +22787.0,22747.0,0.9572021942138672 +22787.0,22748.0,1.101470458984375 +22787.0,22749.0,1.29885888671875 +22787.0,22750.0,1.3577080078125 +22787.0,22751.0,1.2729915161132812 +22787.0,22752.0,1.3580509033203123 +22787.0,22753.0,1.2986611328125 +22787.0,22754.0,1.1296629028320313 +22787.0,22755.0,1.291279296875 +22787.0,22756.0,1.056264404296875 +22787.0,22757.0,1.637455078125 +22787.0,22758.0,1.59162353515625 +22787.0,22759.0,1.620923828125 +22787.0,22760.0,1.64376513671875 +22787.0,22761.0,1.74530859375 +22787.0,22762.0,2.046181640625 +22787.0,22763.0,1.5089619140625 +22787.0,22764.0,1.6184892578125 +22787.0,22765.0,1.5656142578125 +22787.0,22766.0,1.9116263427734372 +22787.0,22767.0,1.2347974853515624 +22787.0,22768.0,1.4820947265625 +22787.0,22769.0,1.168091064453125 +22787.0,22770.0,0.9550084228515624 +22787.0,22771.0,0.900056884765625 +22787.0,22772.0,0.802006103515625 +22787.0,22773.0,0.95244140625 +22787.0,22774.0,0.7247098083496094 +22787.0,22775.0,0.712752685546875 +22787.0,22776.0,0.5703666992187499 +22787.0,22777.0,0.62968798828125 +22787.0,22778.0,0.879375 +22787.0,22779.0,0.4185810546875 +22787.0,22780.0,0.3928018798828125 +22787.0,22781.0,0.488363037109375 +22787.0,22782.0,0.55780224609375 +22787.0,22783.0,0.627856201171875 +22787.0,22784.0,0.5127004394531249 +22787.0,22785.0,0.405668212890625 +22787.0,22786.0,0.44409765625 +22787.0,22787.0,0.1142578125 +22787.0,22788.0,0.5880841064453125 +22787.0,22789.0,0.822277099609375 +22787.0,22790.0,0.588024658203125 +22787.0,22791.0,0.719771728515625 +22787.0,22792.0,0.7390927734375 +22787.0,22793.0,0.6677364501953125 +22787.0,22794.0,0.7347718505859375 +22787.0,22795.0,1.22509130859375 +22787.0,22796.0,1.368876953125 +22787.0,22797.0,0.7775713500976562 +22787.0,22798.0,0.6081005249023438 +22787.0,22799.0,0.6821826171875 +22787.0,22800.0,0.772987060546875 +22787.0,22801.0,0.71295166015625 +22787.0,22802.0,0.913945068359375 +22787.0,22803.0,0.7331455078125 +22787.0,22804.0,0.900501953125 +22787.0,22805.0,0.8742392578125 +22787.0,22806.0,0.85515966796875 +22787.0,22807.0,1.0311689453125 +22787.0,22808.0,1.079264892578125 +22787.0,22809.0,1.0124471435546876 +22787.0,22810.0,1.35932958984375 +22787.0,22811.0,1.0125637207031248 +22787.0,22812.0,1.36293310546875 +22787.0,22813.0,1.18937451171875 +22787.0,22814.0,1.284640380859375 +22787.0,22815.0,1.45992919921875 +22787.0,22816.0,1.429522705078125 +22787.0,22817.0,1.5349593505859376 +22787.0,22818.0,1.3939691162109376 +22788.0,22737.0,1.0873370361328123 +22788.0,22738.0,1.0906434326171874 +22788.0,22739.0,1.2822530517578126 +22788.0,22740.0,1.2016488037109374 +22788.0,22741.0,1.2566722412109377 +22788.0,22742.0,1.2339068603515626 +22788.0,22743.0,1.4404459228515625 +22788.0,22744.0,1.3289217529296875 +22788.0,22745.0,1.0465174560546875 +22788.0,22746.0,0.986884765625 +22788.0,22747.0,0.8280284881591797 +22788.0,22748.0,0.9242967529296876 +22788.0,22749.0,1.3216851806640626 +22788.0,22750.0,1.3805343017578124 +22788.0,22751.0,1.3738178100585938 +22788.0,22752.0,1.324877197265625 +22788.0,22753.0,1.2654874267578125 +22788.0,22754.0,1.0964891967773438 +22788.0,22755.0,1.3141055908203123 +22788.0,22756.0,0.9270906982421876 +22788.0,22757.0,1.4602813720703125 +22788.0,22758.0,1.4094498291015625 +22788.0,22759.0,1.4327501220703125 +22788.0,22760.0,1.4555914306640625 +22788.0,22761.0,1.5631348876953124 +22788.0,22762.0,1.8690079345703128 +22788.0,22763.0,1.3207882080078126 +22788.0,22764.0,1.4303155517578126 +22788.0,22765.0,1.3774405517578123 +22788.0,22766.0,1.70045263671875 +22788.0,22767.0,1.044623779296875 +22788.0,22768.0,1.2939210205078124 +22788.0,22769.0,0.9779173583984376 +22788.0,22770.0,0.775834716796875 +22788.0,22771.0,0.7638831787109375 +22788.0,22772.0,0.6238323974609375 +22788.0,22773.0,0.7732677001953125 +22788.0,22774.0,0.7885361022949219 +22788.0,22775.0,0.9485789794921876 +22788.0,22776.0,0.8561929931640625 +22788.0,22777.0,1.0175142822265624 +22788.0,22778.0,0.7942012939453125 +22788.0,22779.0,0.5794073486328125 +22788.0,22780.0,0.678628173828125 +22788.0,22781.0,0.5251893310546876 +22788.0,22782.0,0.4736285400390625 +22788.0,22783.0,0.4496824951171875 +22788.0,22784.0,0.2165267333984375 +22788.0,22785.0,0.3674945068359375 +22788.0,22786.0,0.2889239501953125 +22788.0,22787.0,0.5880841064453125 +22788.0,22788.0,0.051910400390625 +22788.0,22789.0,0.6461033935546875 +22788.0,22790.0,0.6568509521484375 +22788.0,22791.0,0.7945980224609375 +22788.0,22792.0,0.5539190673828125 +22788.0,22793.0,0.486562744140625 +22788.0,22794.0,0.31259814453125 +22788.0,22795.0,0.8049176025390625 +22788.0,22796.0,0.9467032470703124 +22788.0,22797.0,0.3553976440429687 +22788.0,22798.0,0.2449268188476562 +22788.0,22799.0,0.5030089111328124 +22788.0,22800.0,0.5008133544921876 +22788.0,22801.0,0.5017779541015626 +22788.0,22802.0,0.6617713623046875 +22788.0,22803.0,0.5219718017578125 +22788.0,22804.0,0.6293282470703125 +22788.0,22805.0,0.6630655517578125 +22788.0,22806.0,0.6439859619140625 +22788.0,22807.0,0.8199952392578125 +22788.0,22808.0,0.8260911865234375 +22788.0,22809.0,0.8012734375 +22788.0,22810.0,0.9371558837890624 +22788.0,22811.0,0.5563900146484375 +22788.0,22812.0,0.9407593994140624 +22788.0,22813.0,0.8282008056640625 +22788.0,22814.0,0.9234666748046876 +22788.0,22815.0,1.0987554931640624 +22788.0,22816.0,1.0663489990234374 +22788.0,22817.0,1.17178564453125 +22788.0,22818.0,1.03279541015625 +22789.0,22737.0,1.577530029296875 +22789.0,22738.0,1.52483642578125 +22789.0,22739.0,1.716446044921875 +22789.0,22740.0,1.635841796875 +22789.0,22741.0,1.690865234375 +22789.0,22742.0,1.724099853515625 +22789.0,22743.0,1.874638916015625 +22789.0,22744.0,1.76311474609375 +22789.0,22745.0,1.48071044921875 +22789.0,22746.0,1.4210777587890624 +22789.0,22747.0,1.4152214813232422 +22789.0,22748.0,1.35848974609375 +22789.0,22749.0,1.908878173828125 +22789.0,22750.0,1.967727294921875 +22789.0,22751.0,1.9610108032226563 +22789.0,22752.0,1.9120701904296875 +22789.0,22753.0,1.852680419921875 +22789.0,22754.0,1.6836821899414065 +22789.0,22755.0,1.901298583984375 +22789.0,22756.0,1.51428369140625 +22789.0,22757.0,1.894474365234375 +22789.0,22758.0,1.843642822265625 +22789.0,22759.0,1.866943115234375 +22789.0,22760.0,1.889784423828125 +22789.0,22761.0,1.997327880859375 +22789.0,22762.0,2.303200927734375 +22789.0,22763.0,1.754981201171875 +22789.0,22764.0,1.864508544921875 +22789.0,22765.0,1.811633544921875 +22789.0,22766.0,2.1346456298828125 +22789.0,22767.0,1.4788167724609376 +22789.0,22768.0,1.728114013671875 +22789.0,22769.0,1.4121103515625 +22789.0,22770.0,1.2100277099609376 +22789.0,22771.0,1.254076171875 +22789.0,22772.0,1.211025390625 +22789.0,22773.0,1.207460693359375 +22789.0,22774.0,1.3377290954589844 +22789.0,22775.0,1.32577197265625 +22789.0,22776.0,1.183385986328125 +22789.0,22777.0,1.324707275390625 +22789.0,22778.0,1.381394287109375 +22789.0,22779.0,1.0316003417968749 +22789.0,22780.0,1.0058211669921877 +22789.0,22781.0,1.10138232421875 +22789.0,22782.0,1.067821533203125 +22789.0,22783.0,1.03687548828125 +22789.0,22784.0,0.6257197265625 +22789.0,22785.0,0.5186875 +22789.0,22786.0,0.877116943359375 +22789.0,22787.0,0.822277099609375 +22789.0,22788.0,0.6461033935546875 +22789.0,22789.0,0.01629638671875 +22789.0,22790.0,0.3080439453125 +22789.0,22791.0,0.334791015625 +22789.0,22792.0,0.169112060546875 +22789.0,22793.0,0.2057557373046875 +22789.0,22794.0,0.6487911376953125 +22789.0,22795.0,0.419110595703125 +22789.0,22796.0,0.624896240234375 +22789.0,22797.0,0.4795906372070312 +22789.0,22798.0,0.6791198120117188 +22789.0,22799.0,0.993201904296875 +22789.0,22800.0,0.88300634765625 +22789.0,22801.0,0.935970947265625 +22789.0,22802.0,1.04396435546875 +22789.0,22803.0,0.956164794921875 +22789.0,22804.0,1.011521240234375 +22789.0,22805.0,1.097258544921875 +22789.0,22806.0,1.078178955078125 +22789.0,22807.0,1.254188232421875 +22789.0,22808.0,1.2082841796875 +22789.0,22809.0,1.2354664306640626 +22789.0,22810.0,1.154348876953125 +22789.0,22811.0,0.8265830078125 +22789.0,22812.0,1.157952392578125 +22789.0,22813.0,1.135393798828125 +22789.0,22814.0,1.18465966796875 +22789.0,22815.0,1.359948486328125 +22789.0,22816.0,1.2655419921875 +22789.0,22817.0,1.3889786376953126 +22789.0,22818.0,1.2759884033203126 +22790.0,22737.0,1.643277587890625 +22790.0,22738.0,1.590583984375 +22790.0,22739.0,1.782193603515625 +22790.0,22740.0,1.70158935546875 +22790.0,22741.0,1.75661279296875 +22790.0,22742.0,1.789847412109375 +22790.0,22743.0,1.940386474609375 +22790.0,22744.0,1.8288623046875 +22790.0,22745.0,1.5464580078125 +22790.0,22746.0,1.4868253173828123 +22790.0,22747.0,1.430969039916992 +22790.0,22748.0,1.4242373046875 +22790.0,22749.0,1.772625732421875 +22790.0,22750.0,1.825474853515625 +22790.0,22751.0,1.7337583618164063 +22790.0,22752.0,1.8318177490234373 +22790.0,22753.0,1.772427978515625 +22790.0,22754.0,1.6034297485351563 +22790.0,22755.0,1.765046142578125 +22790.0,22756.0,1.53003125 +22790.0,22757.0,1.960221923828125 +22790.0,22758.0,1.909390380859375 +22790.0,22759.0,1.932690673828125 +22790.0,22760.0,1.955531982421875 +22790.0,22761.0,2.063075439453125 +22790.0,22762.0,2.368948486328125 +22790.0,22763.0,1.820728759765625 +22790.0,22764.0,1.930256103515625 +22790.0,22765.0,1.877381103515625 +22790.0,22766.0,2.2003931884765624 +22790.0,22767.0,1.5445643310546875 +22790.0,22768.0,1.793861572265625 +22790.0,22769.0,1.47785791015625 +22790.0,22770.0,1.2757752685546877 +22790.0,22771.0,1.31982373046875 +22790.0,22772.0,1.22877294921875 +22790.0,22773.0,1.273208251953125 +22790.0,22774.0,1.1984766540527343 +22790.0,22775.0,1.18651953125 +22790.0,22776.0,1.0441335449218752 +22790.0,22777.0,1.090454833984375 +22790.0,22778.0,1.353141845703125 +22790.0,22779.0,0.892347900390625 +22790.0,22780.0,0.8665687255859374 +22790.0,22781.0,0.9621298828125 +22790.0,22782.0,1.027569091796875 +22790.0,22783.0,1.054623046875 +22790.0,22784.0,0.49946728515625 +22790.0,22785.0,0.38243505859375 +22790.0,22786.0,0.740864501953125 +22790.0,22787.0,0.588024658203125 +22790.0,22788.0,0.6568509521484375 +22790.0,22789.0,0.3080439453125 +22790.0,22790.0,0.07379150390625 +22790.0,22791.0,0.32753857421875 +22790.0,22792.0,0.233859619140625 +22790.0,22793.0,0.2705032958984374 +22790.0,22794.0,0.7145386962890625 +22790.0,22795.0,0.710858154296875 +22790.0,22796.0,0.916643798828125 +22790.0,22797.0,0.5453381958007812 +22790.0,22798.0,0.7448673706054687 +22790.0,22799.0,1.058949462890625 +22790.0,22800.0,0.94875390625 +22790.0,22801.0,1.0017185058593752 +22790.0,22802.0,1.1097119140625 +22790.0,22803.0,1.0219123535156251 +22790.0,22804.0,1.077268798828125 +22790.0,22805.0,1.163006103515625 +22790.0,22806.0,1.143926513671875 +22790.0,22807.0,1.319935791015625 +22790.0,22808.0,1.27403173828125 +22790.0,22809.0,1.3012139892578125 +22790.0,22810.0,1.220096435546875 +22790.0,22811.0,0.89233056640625 +22790.0,22812.0,1.223699951171875 +22790.0,22813.0,1.201141357421875 +22790.0,22814.0,1.2504072265625 +22790.0,22815.0,1.425696044921875 +22790.0,22816.0,1.34928955078125 +22790.0,22817.0,1.4547261962890623 +22790.0,22818.0,1.3417359619140623 +22791.0,22737.0,1.829024658203125 +22791.0,22738.0,1.8173310546875 +22791.0,22739.0,2.008940673828125 +22791.0,22740.0,1.92833642578125 +22791.0,22741.0,1.98335986328125 +22791.0,22742.0,1.975594482421875 +22791.0,22743.0,2.167133544921875 +22791.0,22744.0,2.055609375 +22791.0,22745.0,1.773205078125 +22791.0,22746.0,1.7135723876953124 +22791.0,22747.0,1.5627161102294922 +22791.0,22748.0,1.650984375 +22791.0,22749.0,1.904372802734375 +22791.0,22750.0,1.957221923828125 +22791.0,22751.0,1.8655054321289064 +22791.0,22752.0,1.9635648193359372 +22791.0,22753.0,1.904175048828125 +22791.0,22754.0,1.7351768188476562 +22791.0,22755.0,1.896793212890625 +22791.0,22756.0,1.6617783203125 +22791.0,22757.0,2.186968994140625 +22791.0,22758.0,2.136137451171875 +22791.0,22759.0,2.159437744140625 +22791.0,22760.0,2.182279052734375 +22791.0,22761.0,2.289822509765625 +22791.0,22762.0,2.595695556640625 +22791.0,22763.0,2.047475830078125 +22791.0,22764.0,2.157003173828125 +22791.0,22765.0,2.104128173828125 +22791.0,22766.0,2.4271402587890627 +22791.0,22767.0,1.7713114013671876 +22791.0,22768.0,2.020608642578125 +22791.0,22769.0,1.70460498046875 +22791.0,22770.0,1.5025223388671876 +22791.0,22771.0,1.50557080078125 +22791.0,22772.0,1.36652001953125 +22791.0,22773.0,1.499955322265625 +22791.0,22774.0,1.3302237243652344 +22791.0,22775.0,1.3182666015625 +22791.0,22776.0,1.175880615234375 +22791.0,22777.0,1.222201904296875 +22791.0,22778.0,1.484888916015625 +22791.0,22779.0,1.024094970703125 +22791.0,22780.0,0.9983157958984376 +22791.0,22781.0,1.093876953125 +22791.0,22782.0,1.163316162109375 +22791.0,22783.0,1.1923701171875 +22791.0,22784.0,0.63721435546875 +22791.0,22785.0,0.52018212890625 +22791.0,22786.0,0.878611572265625 +22791.0,22787.0,0.719771728515625 +22791.0,22788.0,0.7945980224609375 +22791.0,22789.0,0.334791015625 +22791.0,22790.0,0.32753857421875 +22791.0,22791.0,0.10528564453125 +22791.0,22792.0,0.486606689453125 +22791.0,22793.0,0.5232503662109376 +22791.0,22794.0,0.9412857666015624 +22791.0,22795.0,0.6336052246093751 +22791.0,22796.0,0.839390869140625 +22791.0,22797.0,0.7970852661132812 +22791.0,22798.0,0.9716144409179688 +22791.0,22799.0,1.245696533203125 +22791.0,22800.0,1.1755009765625 +22791.0,22801.0,1.228465576171875 +22791.0,22802.0,1.336458984375 +22791.0,22803.0,1.248659423828125 +22791.0,22804.0,1.304015869140625 +22791.0,22805.0,1.389753173828125 +22791.0,22806.0,1.370673583984375 +22791.0,22807.0,1.546682861328125 +22791.0,22808.0,1.50077880859375 +22791.0,22809.0,1.5279610595703126 +22791.0,22810.0,1.471843505859375 +22791.0,22811.0,1.14407763671875 +22791.0,22812.0,1.380447021484375 +22791.0,22813.0,1.452888427734375 +22791.0,22814.0,1.502154296875 +22791.0,22815.0,1.677443115234375 +22791.0,22816.0,1.48003662109375 +22791.0,22817.0,1.6654732666015626 +22791.0,22818.0,1.5934830322265623 +22792.0,22737.0,1.485345703125 +22792.0,22738.0,1.432652099609375 +22792.0,22739.0,1.62426171875 +22792.0,22740.0,1.543657470703125 +22792.0,22741.0,1.598680908203125 +22792.0,22742.0,1.63191552734375 +22792.0,22743.0,1.78245458984375 +22792.0,22744.0,1.670930419921875 +22792.0,22745.0,1.388526123046875 +22792.0,22746.0,1.3288934326171875 +22792.0,22747.0,1.323037155151367 +22792.0,22748.0,1.266305419921875 +22792.0,22749.0,1.81669384765625 +22792.0,22750.0,1.87554296875 +22792.0,22751.0,1.8688264770507808 +22792.0,22752.0,1.8198858642578124 +22792.0,22753.0,1.76049609375 +22792.0,22754.0,1.5914978637695312 +22792.0,22755.0,1.8091142578125 +22792.0,22756.0,1.422099365234375 +22792.0,22757.0,1.8022900390625 +22792.0,22758.0,1.75145849609375 +22792.0,22759.0,1.7747587890625 +22792.0,22760.0,1.79760009765625 +22792.0,22761.0,1.9051435546875 +22792.0,22762.0,2.2110166015625 +22792.0,22763.0,1.662796875 +22792.0,22764.0,1.77232421875 +22792.0,22765.0,1.71944921875 +22792.0,22766.0,2.0424613037109376 +22792.0,22767.0,1.3866324462890625 +22792.0,22768.0,1.6359296875 +22792.0,22769.0,1.319926025390625 +22792.0,22770.0,1.1178433837890625 +22792.0,22771.0,1.161891845703125 +22792.0,22772.0,1.118841064453125 +22792.0,22773.0,1.1152763671875 +22792.0,22774.0,1.245544769287109 +22792.0,22775.0,1.233587646484375 +22792.0,22776.0,1.09120166015625 +22792.0,22777.0,1.25052294921875 +22792.0,22778.0,1.2892099609375 +22792.0,22779.0,0.939416015625 +22792.0,22780.0,0.9136368408203124 +22792.0,22781.0,1.009197998046875 +22792.0,22782.0,0.97563720703125 +22792.0,22783.0,0.944691162109375 +22792.0,22784.0,0.533535400390625 +22792.0,22785.0,0.426503173828125 +22792.0,22786.0,0.7849326171875 +22792.0,22787.0,0.7390927734375 +22792.0,22788.0,0.5539190673828125 +22792.0,22789.0,0.169112060546875 +22792.0,22790.0,0.233859619140625 +22792.0,22791.0,0.486606689453125 +22792.0,22792.0,0.075927734375 +22792.0,22793.0,0.1125714111328125 +22792.0,22794.0,0.5566068115234375 +22792.0,22795.0,0.57092626953125 +22792.0,22796.0,0.7767119140625 +22792.0,22797.0,0.3874063110351562 +22792.0,22798.0,0.5869354858398438 +22792.0,22799.0,0.901017578125 +22792.0,22800.0,0.790822021484375 +22792.0,22801.0,0.84378662109375 +22792.0,22802.0,0.951780029296875 +22792.0,22803.0,0.86398046875 +22792.0,22804.0,0.9193369140625 +22792.0,22805.0,1.00507421875 +22792.0,22806.0,0.98599462890625 +22792.0,22807.0,1.16200390625 +22792.0,22808.0,1.116099853515625 +22792.0,22809.0,1.1432821044921877 +22792.0,22810.0,1.06216455078125 +22792.0,22811.0,0.734398681640625 +22792.0,22812.0,1.06576806640625 +22792.0,22813.0,1.04320947265625 +22792.0,22814.0,1.092475341796875 +22792.0,22815.0,1.26776416015625 +22792.0,22816.0,1.191357666015625 +22792.0,22817.0,1.2967943115234375 +22792.0,22818.0,1.1838040771484375 +22793.0,22737.0,1.4179893798828125 +22793.0,22738.0,1.3652957763671876 +22793.0,22739.0,1.5569053955078125 +22793.0,22740.0,1.4763011474609375 +22793.0,22741.0,1.5313245849609376 +22793.0,22742.0,1.5645592041015626 +22793.0,22743.0,1.7150982666015624 +22793.0,22744.0,1.6035740966796874 +22793.0,22745.0,1.3211697998046874 +22793.0,22746.0,1.261537109375 +22793.0,22747.0,1.2556808319091797 +22793.0,22748.0,1.1989490966796874 +22793.0,22749.0,1.7483375244140624 +22793.0,22750.0,1.8071866455078125 +22793.0,22751.0,1.8004701538085937 +22793.0,22752.0,1.752529541015625 +22793.0,22753.0,1.6931397705078124 +22793.0,22754.0,1.5241415405273435 +22793.0,22755.0,1.7407579345703126 +22793.0,22756.0,1.3547430419921875 +22793.0,22757.0,1.7349337158203124 +22793.0,22758.0,1.6841021728515626 +22793.0,22759.0,1.7074024658203124 +22793.0,22760.0,1.7302437744140624 +22793.0,22761.0,1.8377872314453123 +22793.0,22762.0,2.1436602783203123 +22793.0,22763.0,1.5954405517578123 +22793.0,22764.0,1.7049678955078125 +22793.0,22765.0,1.6520928955078125 +22793.0,22766.0,1.97510498046875 +22793.0,22767.0,1.319276123046875 +22793.0,22768.0,1.5685733642578126 +22793.0,22769.0,1.2525697021484374 +22793.0,22770.0,1.050487060546875 +22793.0,22771.0,1.0945355224609374 +22793.0,22772.0,1.0514847412109374 +22793.0,22773.0,1.0479200439453125 +22793.0,22774.0,1.174188446044922 +22793.0,22775.0,1.1622313232421877 +22793.0,22776.0,1.0198453369140623 +22793.0,22777.0,1.1811666259765623 +22793.0,22778.0,1.2218536376953124 +22793.0,22779.0,0.8680596923828126 +22793.0,22780.0,0.842280517578125 +22793.0,22781.0,0.9378416748046876 +22793.0,22782.0,0.9082808837890624 +22793.0,22783.0,0.8773348388671875 +22793.0,22784.0,0.4661790771484375 +22793.0,22785.0,0.3551468505859375 +22793.0,22786.0,0.7135762939453125 +22793.0,22787.0,0.6677364501953125 +22793.0,22788.0,0.486562744140625 +22793.0,22789.0,0.2057557373046875 +22793.0,22790.0,0.2705032958984374 +22793.0,22791.0,0.5232503662109376 +22793.0,22792.0,0.1125714111328125 +22793.0,22793.0,0.039215087890625 +22793.0,22794.0,0.48925048828125 +22793.0,22795.0,0.6015699462890625 +22793.0,22796.0,0.8073555908203125 +22793.0,22797.0,0.3200499877929687 +22793.0,22798.0,0.5195791625976562 +22793.0,22799.0,0.8336612548828125 +22793.0,22800.0,0.7234656982421875 +22793.0,22801.0,0.7764302978515625 +22793.0,22802.0,0.8844237060546875 +22793.0,22803.0,0.7966241455078125 +22793.0,22804.0,0.8519805908203125 +22793.0,22805.0,0.9377178955078124 +22793.0,22806.0,0.9186383056640623 +22793.0,22807.0,1.0946475830078124 +22793.0,22808.0,1.0487435302734376 +22793.0,22809.0,1.07592578125 +22793.0,22810.0,0.9948082275390624 +22793.0,22811.0,0.6670423583984375 +22793.0,22812.0,0.9984117431640624 +22793.0,22813.0,0.9758531494140624 +22793.0,22814.0,1.0251190185546877 +22793.0,22815.0,1.2004078369140625 +22793.0,22816.0,1.1240013427734374 +22793.0,22817.0,1.22943798828125 +22793.0,22818.0,1.11644775390625 +22794.0,22737.0,1.2030247802734375 +22794.0,22738.0,1.0633311767578124 +22794.0,22739.0,1.1599407958984376 +22794.0,22740.0,1.2613365478515626 +22794.0,22741.0,1.2533599853515625 +22794.0,22742.0,1.3495946044921876 +22794.0,22743.0,1.3681336669921875 +22794.0,22744.0,1.2466094970703123 +22794.0,22745.0,0.9242052001953124 +22794.0,22746.0,0.958572509765625 +22794.0,22747.0,1.0407162322998047 +22794.0,22748.0,0.9839844970703124 +22794.0,22749.0,1.5343729248046876 +22794.0,22750.0,1.5932220458984374 +22794.0,22751.0,1.5865055541992188 +22794.0,22752.0,1.53756494140625 +22794.0,22753.0,1.4781751708984374 +22794.0,22754.0,1.3091769409179688 +22794.0,22755.0,1.5267933349609375 +22794.0,22756.0,1.1397784423828126 +22794.0,22757.0,1.3779691162109375 +22794.0,22758.0,1.2871375732421877 +22794.0,22759.0,1.3104378662109375 +22794.0,22760.0,1.3332791748046875 +22794.0,22761.0,1.4408226318359374 +22794.0,22762.0,1.7866956787109376 +22794.0,22763.0,1.1984759521484376 +22794.0,22764.0,1.3080032958984376 +22794.0,22765.0,1.2551282958984376 +22794.0,22766.0,1.571140380859375 +22794.0,22767.0,0.9223115234375 +22794.0,22768.0,1.1716087646484374 +22794.0,22769.0,0.8556051025390625 +22794.0,22770.0,0.7475224609375 +22794.0,22771.0,0.8795709228515625 +22794.0,22772.0,0.8365201416015625 +22794.0,22773.0,0.8329554443359375 +22794.0,22774.0,1.0342238464355469 +22794.0,22775.0,1.1942667236328126 +22794.0,22776.0,1.0868807373046874 +22794.0,22777.0,1.2482020263671876 +22794.0,22778.0,1.0068890380859377 +22794.0,22779.0,0.8250950927734375 +22794.0,22780.0,0.90931591796875 +22794.0,22781.0,0.7708770751953125 +22794.0,22782.0,0.7153162841796875 +22794.0,22783.0,0.6623702392578125 +22794.0,22784.0,0.3632144775390625 +22794.0,22785.0,0.5141822509765626 +22794.0,22786.0,0.5346116943359376 +22794.0,22787.0,0.7347718505859375 +22794.0,22788.0,0.31259814453125 +22794.0,22789.0,0.6487911376953125 +22794.0,22790.0,0.7145386962890625 +22794.0,22791.0,0.9412857666015624 +22794.0,22792.0,0.5566068115234375 +22794.0,22793.0,0.48925048828125 +22794.0,22794.0,0.049285888671875 +22794.0,22795.0,0.8036053466796875 +22794.0,22796.0,0.6833909912109375 +22794.0,22797.0,0.2110853881835937 +22794.0,22798.0,0.3046145629882812 +22794.0,22799.0,0.6186966552734375 +22794.0,22800.0,0.2975010986328125 +22794.0,22801.0,0.5614656982421875 +22794.0,22802.0,0.4584591064453125 +22794.0,22803.0,0.3996595458984375 +22794.0,22804.0,0.4260159912109375 +22794.0,22805.0,0.5407532958984376 +22794.0,22806.0,0.5216737060546874 +22794.0,22807.0,0.6976829833984375 +22794.0,22808.0,0.6227789306640625 +22794.0,22809.0,0.676961181640625 +22794.0,22810.0,0.6738436279296875 +22794.0,22811.0,0.3460777587890625 +22794.0,22812.0,0.6774471435546875 +22794.0,22813.0,0.6248885498046876 +22794.0,22814.0,0.7041544189453125 +22794.0,22815.0,0.8794432373046875 +22794.0,22816.0,0.8030367431640625 +22794.0,22817.0,0.908473388671875 +22794.0,22818.0,0.795483154296875 +22795.0,22737.0,1.73634423828125 +22795.0,22738.0,1.683650634765625 +22795.0,22739.0,1.87526025390625 +22795.0,22740.0,1.794656005859375 +22795.0,22741.0,1.849679443359375 +22795.0,22742.0,1.8829140625 +22795.0,22743.0,2.0334531250000003 +22795.0,22744.0,1.921928955078125 +22795.0,22745.0,1.639524658203125 +22795.0,22746.0,1.5798919677734375 +22795.0,22747.0,1.5740356903076171 +22795.0,22748.0,1.517303955078125 +22795.0,22749.0,2.0676923828125 +22795.0,22750.0,2.12654150390625 +22795.0,22751.0,2.1198250122070315 +22795.0,22752.0,2.070884399414062 +22795.0,22753.0,2.01149462890625 +22795.0,22754.0,1.8424963989257808 +22795.0,22755.0,2.06011279296875 +22795.0,22756.0,1.673097900390625 +22795.0,22757.0,2.05328857421875 +22795.0,22758.0,2.00245703125 +22795.0,22759.0,2.02575732421875 +22795.0,22760.0,2.0485986328125003 +22795.0,22761.0,2.15614208984375 +22795.0,22762.0,2.46201513671875 +22795.0,22763.0,1.91379541015625 +22795.0,22764.0,2.0233227539062497 +22795.0,22765.0,1.97044775390625 +22795.0,22766.0,2.2624598388671875 +22795.0,22767.0,1.6376309814453125 +22795.0,22768.0,1.88692822265625 +22795.0,22769.0,1.570924560546875 +22795.0,22770.0,1.3688419189453125 +22795.0,22771.0,1.412890380859375 +22795.0,22772.0,1.369839599609375 +22795.0,22773.0,1.36627490234375 +22795.0,22774.0,1.5375433044433593 +22795.0,22775.0,1.697586181640625 +22795.0,22776.0,1.5792001953125 +22795.0,22777.0,1.727521484375 +22795.0,22778.0,1.54020849609375 +22795.0,22779.0,1.32841455078125 +22795.0,22780.0,1.4016353759765623 +22795.0,22781.0,1.274196533203125 +22795.0,22782.0,1.2266357421875 +22795.0,22783.0,1.195689697265625 +22795.0,22784.0,0.784533935546875 +22795.0,22785.0,0.917501708984375 +22795.0,22786.0,1.03793115234375 +22795.0,22787.0,1.22509130859375 +22795.0,22788.0,0.8049176025390625 +22795.0,22789.0,0.419110595703125 +22795.0,22790.0,0.710858154296875 +22795.0,22791.0,0.6336052246093751 +22795.0,22792.0,0.57092626953125 +22795.0,22793.0,0.6015699462890625 +22795.0,22794.0,0.8036053466796875 +22795.0,22795.0,0.2479248046875 +22795.0,22796.0,0.45371044921875 +22795.0,22797.0,0.6384048461914062 +22795.0,22798.0,0.8379340209960937 +22795.0,22799.0,1.15201611328125 +22795.0,22800.0,1.0418205566406251 +22795.0,22801.0,1.09478515625 +22795.0,22802.0,1.202778564453125 +22795.0,22803.0,1.11497900390625 +22795.0,22804.0,1.17033544921875 +22795.0,22805.0,1.25607275390625 +22795.0,22806.0,1.2369931640625 +22795.0,22807.0,1.41300244140625 +22795.0,22808.0,1.365098388671875 +22795.0,22809.0,1.3942806396484375 +22795.0,22810.0,1.0971630859375 +22795.0,22811.0,0.974397216796875 +22795.0,22812.0,0.9947666015625 +22795.0,22813.0,1.2832080078125 +22795.0,22814.0,1.251473876953125 +22795.0,22815.0,1.4057626953125 +22795.0,22816.0,1.094356201171875 +22795.0,22817.0,1.2797928466796875 +22795.0,22818.0,1.2668026123046876 +22796.0,22737.0,1.8371298828125 +22796.0,22738.0,1.697436279296875 +22796.0,22739.0,1.7870458984375 +22796.0,22740.0,1.895441650390625 +22796.0,22741.0,1.887465087890625 +22796.0,22742.0,1.98369970703125 +22796.0,22743.0,2.00223876953125 +22796.0,22744.0,1.880714599609375 +22796.0,22745.0,1.558310302734375 +22796.0,22746.0,1.5926776123046875 +22796.0,22747.0,1.6748213348388672 +22796.0,22748.0,1.618089599609375 +22796.0,22749.0,2.16847802734375 +22796.0,22750.0,2.2273271484375 +22796.0,22751.0,2.2206106567382813 +22796.0,22752.0,2.1716700439453125 +22796.0,22753.0,2.1122802734375 +22796.0,22754.0,1.9432820434570317 +22796.0,22755.0,2.1608984375 +22796.0,22756.0,1.773883544921875 +22796.0,22757.0,2.01207421875 +22796.0,22758.0,1.91424267578125 +22796.0,22759.0,1.93754296875 +22796.0,22760.0,1.96038427734375 +22796.0,22761.0,2.067927734375 +22796.0,22762.0,2.42080078125 +22796.0,22763.0,1.8255810546875 +22796.0,22764.0,1.9351083984375 +22796.0,22765.0,1.8822333984375 +22796.0,22766.0,2.1932454833984374 +22796.0,22767.0,1.5494166259765625 +22796.0,22768.0,1.7987138671875 +22796.0,22769.0,1.482710205078125 +22796.0,22770.0,1.3816275634765625 +22796.0,22771.0,1.513676025390625 +22796.0,22772.0,1.470625244140625 +22796.0,22773.0,1.467060546875 +22796.0,22774.0,1.6683289489746094 +22796.0,22775.0,1.828371826171875 +22796.0,22776.0,1.72098583984375 +22796.0,22777.0,1.88230712890625 +22796.0,22778.0,1.640994140625 +22796.0,22779.0,1.4592001953125 +22796.0,22780.0,1.5434210205078125 +22796.0,22781.0,1.404982177734375 +22796.0,22782.0,1.34942138671875 +22796.0,22783.0,1.296475341796875 +22796.0,22784.0,0.933319580078125 +22796.0,22785.0,1.084287353515625 +22796.0,22786.0,1.168716796875 +22796.0,22787.0,1.368876953125 +22796.0,22788.0,0.9467032470703124 +22796.0,22789.0,0.624896240234375 +22796.0,22790.0,0.916643798828125 +22796.0,22791.0,0.839390869140625 +22796.0,22792.0,0.7767119140625 +22796.0,22793.0,0.8073555908203125 +22796.0,22794.0,0.6833909912109375 +22796.0,22795.0,0.45371044921875 +22796.0,22796.0,0.33349609375 +22796.0,22797.0,0.6581904907226562 +22796.0,22798.0,0.9387196655273438 +22796.0,22799.0,1.2528017578125 +22796.0,22800.0,0.931606201171875 +22796.0,22801.0,1.19557080078125 +22796.0,22802.0,1.083564208984375 +22796.0,22803.0,1.0337646484375 +22796.0,22804.0,1.0521210937499998 +22796.0,22805.0,1.1748583984374998 +22796.0,22806.0,1.14877880859375 +22796.0,22807.0,1.3247880859375 +22796.0,22808.0,1.244884033203125 +22796.0,22809.0,1.3020662841796875 +22796.0,22810.0,1.02994873046875 +22796.0,22811.0,0.854182861328125 +22796.0,22812.0,0.92755224609375 +22796.0,22813.0,1.16299365234375 +22796.0,22814.0,1.184259521484375 +22796.0,22815.0,1.33854833984375 +22796.0,22816.0,1.027141845703125 +22796.0,22817.0,1.2125784912109374 +22796.0,22818.0,1.1995882568359375 +22797.0,22737.0,1.2658242797851562 +22797.0,22738.0,1.2131306762695313 +22797.0,22739.0,1.3187402954101564 +22797.0,22740.0,1.3241360473632813 +22797.0,22741.0,1.379159484863281 +22797.0,22742.0,1.4123941040039063 +22797.0,22743.0,1.5299331665039062 +22797.0,22744.0,1.4084089965820312 +22797.0,22745.0,1.0860046997070312 +22797.0,22746.0,1.1093720092773438 +22797.0,22747.0,1.1035157318115234 +22797.0,22748.0,1.0467839965820311 +22797.0,22749.0,1.5971724243164065 +22797.0,22750.0,1.6560215454101563 +22797.0,22751.0,1.6493050537109375 +22797.0,22752.0,1.6003644409179687 +22797.0,22753.0,1.5409746704101563 +22797.0,22754.0,1.3719764404296877 +22797.0,22755.0,1.5895928344726562 +22797.0,22756.0,1.2025779418945313 +22797.0,22757.0,1.5397686157226562 +22797.0,22758.0,1.4459370727539065 +22797.0,22759.0,1.4692373657226565 +22797.0,22760.0,1.4920786743164065 +22797.0,22761.0,1.5996221313476562 +22797.0,22762.0,1.9484951782226565 +22797.0,22763.0,1.3572754516601562 +22797.0,22764.0,1.4668027954101563 +22797.0,22765.0,1.4139277954101563 +22797.0,22766.0,1.7249398803710938 +22797.0,22767.0,1.081111022949219 +22797.0,22768.0,1.3304082641601562 +22797.0,22769.0,1.014404602050781 +22797.0,22770.0,0.8983219604492187 +22797.0,22771.0,0.9423704223632812 +22797.0,22772.0,0.8993196411132812 +22797.0,22773.0,0.8957549438476563 +22797.0,22774.0,1.0830233459472656 +22797.0,22775.0,1.2430662231445313 +22797.0,22776.0,1.1296802368164065 +22797.0,22777.0,1.2910015258789065 +22797.0,22778.0,1.069688537597656 +22797.0,22779.0,0.8738945922851562 +22797.0,22780.0,0.9521154174804688 +22797.0,22781.0,0.8196765747070313 +22797.0,22782.0,0.7681157836914062 +22797.0,22783.0,0.7251697387695313 +22797.0,22784.0,0.3350139770507812 +22797.0,22785.0,0.4859817504882812 +22797.0,22786.0,0.5834111938476563 +22797.0,22787.0,0.7775713500976562 +22797.0,22788.0,0.3553976440429687 +22797.0,22789.0,0.4795906372070312 +22797.0,22790.0,0.5453381958007812 +22797.0,22791.0,0.7970852661132812 +22797.0,22792.0,0.3874063110351562 +22797.0,22793.0,0.3200499877929687 +22797.0,22794.0,0.2110853881835937 +22797.0,22795.0,0.6384048461914062 +22797.0,22796.0,0.6581904907226562 +22797.0,22797.0,0.0288848876953125 +22797.0,22798.0,0.3674140625 +22797.0,22799.0,0.6814961547851562 +22797.0,22800.0,0.4593005981445312 +22797.0,22801.0,0.6242651977539062 +22797.0,22802.0,0.6152586059570313 +22797.0,22803.0,0.5614590454101562 +22797.0,22804.0,0.5838154907226563 +22797.0,22805.0,0.7025527954101562 +22797.0,22806.0,0.6804732055664062 +22797.0,22807.0,0.8564824829101563 +22797.0,22808.0,0.7765784301757812 +22797.0,22809.0,0.8337606811523437 +22797.0,22810.0,0.7136431274414062 +22797.0,22811.0,0.3858772583007812 +22797.0,22812.0,0.7172466430664063 +22797.0,22813.0,0.6946880493164063 +22797.0,22814.0,0.7439539184570313 +22797.0,22815.0,0.9192427368164062 +22797.0,22816.0,0.8428362426757813 +22797.0,22817.0,0.9482728881835938 +22797.0,22818.0,0.8352826538085938 +22798.0,22737.0,0.9183534545898436 +22798.0,22738.0,0.8656598510742187 +22798.0,22739.0,1.0572694702148435 +22798.0,22740.0,0.9766652221679688 +22798.0,22741.0,1.0316886596679686 +22798.0,22742.0,1.0649232788085938 +22798.0,22743.0,1.2154623413085937 +22798.0,22744.0,1.103938171386719 +22798.0,22745.0,0.8215338745117188 +22798.0,22746.0,0.7619011840820312 +22798.0,22747.0,0.7560449066162109 +22798.0,22748.0,0.6993131713867188 +22798.0,22749.0,1.2497015991210938 +22798.0,22750.0,1.3085507202148436 +22798.0,22751.0,1.301834228515625 +22798.0,22752.0,1.2528936157226562 +22798.0,22753.0,1.1935038452148437 +22798.0,22754.0,1.024505615234375 +22798.0,22755.0,1.2421220092773435 +22798.0,22756.0,0.8551071166992188 +22798.0,22757.0,1.2352977905273437 +22798.0,22758.0,1.1844662475585936 +22798.0,22759.0,1.2077665405273437 +22798.0,22760.0,1.2306078491210937 +22798.0,22761.0,1.3381513061523438 +22798.0,22762.0,1.6440243530273435 +22798.0,22763.0,1.0958046264648438 +22798.0,22764.0,1.2053319702148435 +22798.0,22765.0,1.1524569702148435 +22798.0,22766.0,1.4754690551757812 +22798.0,22767.0,0.8196401977539063 +22798.0,22768.0,1.0689374389648436 +22798.0,22769.0,0.7529337768554687 +22798.0,22770.0,0.5508511352539063 +22798.0,22771.0,0.5948995971679687 +22798.0,22772.0,0.5518488159179687 +22798.0,22773.0,0.5482841186523437 +22798.0,22774.0,0.7495525207519531 +22798.0,22775.0,0.9095953979492188 +22798.0,22776.0,0.8172094116210937 +22798.0,22777.0,0.9785307006835936 +22798.0,22778.0,0.7222177124023438 +22798.0,22779.0,0.5404237670898437 +22798.0,22780.0,0.6396445922851562 +22798.0,22781.0,0.4862057495117187 +22798.0,22782.0,0.4306449584960937 +22798.0,22783.0,0.3776989135742187 +22798.0,22784.0,0.3935431518554687 +22798.0,22785.0,0.5445109252929687 +22798.0,22786.0,0.2499403686523437 +22798.0,22787.0,0.6081005249023438 +22798.0,22788.0,0.2449268188476562 +22798.0,22789.0,0.6791198120117188 +22798.0,22790.0,0.7448673706054687 +22798.0,22791.0,0.9716144409179688 +22798.0,22792.0,0.5869354858398438 +22798.0,22793.0,0.5195791625976562 +22798.0,22794.0,0.3046145629882812 +22798.0,22795.0,0.8379340209960937 +22798.0,22796.0,0.9387196655273438 +22798.0,22797.0,0.3674140625 +22798.0,22798.0,0.0199432373046875 +22798.0,22799.0,0.3340253295898437 +22798.0,22800.0,0.3368297729492187 +22798.0,22801.0,0.2767943725585937 +22798.0,22802.0,0.4777877807617187 +22798.0,22803.0,0.2969882202148437 +22798.0,22804.0,0.4643446655273437 +22798.0,22805.0,0.4380819702148437 +22798.0,22806.0,0.4190023803710938 +22798.0,22807.0,0.5950116577148438 +22798.0,22808.0,0.6431076049804687 +22798.0,22809.0,0.5762898559570313 +22798.0,22810.0,0.8911723022460938 +22798.0,22811.0,0.4244064331054687 +22798.0,22812.0,0.8907758178710937 +22798.0,22813.0,0.6962172241210938 +22798.0,22814.0,0.7914830932617187 +22798.0,22815.0,0.9667719116210938 +22798.0,22816.0,0.9363654174804688 +22798.0,22817.0,1.0418020629882812 +22798.0,22818.0,0.9008118286132812 +22799.0,22737.0,0.694435546875 +22799.0,22738.0,0.737741943359375 +22799.0,22739.0,0.9343515625 +22799.0,22740.0,0.846747314453125 +22799.0,22741.0,0.903770751953125 +22799.0,22742.0,0.84100537109375 +22799.0,22743.0,1.08754443359375 +22799.0,22744.0,0.976020263671875 +22799.0,22745.0,0.696615966796875 +22799.0,22746.0,0.6339832763671875 +22799.0,22747.0,0.5381269989013672 +22799.0,22748.0,0.571395263671875 +22799.0,22749.0,1.03178369140625 +22799.0,22750.0,1.0906328125 +22799.0,22751.0,1.0839163208007812 +22799.0,22752.0,1.0349757080078126 +22799.0,22753.0,0.9755859375 +22799.0,22754.0,0.8065877075195312 +22799.0,22755.0,1.0242041015625 +22799.0,22756.0,0.637189208984375 +22799.0,22757.0,1.1073798828125 +22799.0,22758.0,1.06154833984375 +22799.0,22759.0,1.0888486328125 +22799.0,22760.0,1.11168994140625 +22799.0,22761.0,1.2152333984375 +22799.0,22762.0,1.5161064453125 +22799.0,22763.0,0.97688671875 +22799.0,22764.0,1.0864140625 +22799.0,22765.0,1.0335390625 +22799.0,22766.0,1.4555511474609375 +22799.0,22767.0,0.7017222900390625 +22799.0,22768.0,0.95001953125 +22799.0,22769.0,0.635015869140625 +22799.0,22770.0,0.4229332275390625 +22799.0,22771.0,0.370981689453125 +22799.0,22772.0,0.333930908203125 +22799.0,22773.0,0.4203662109375 +22799.0,22774.0,0.5326346130371094 +22799.0,22775.0,0.692677490234375 +22799.0,22776.0,0.61529150390625 +22799.0,22777.0,0.78361279296875 +22799.0,22778.0,0.5042998046875 +22799.0,22779.0,0.345505859375 +22799.0,22780.0,0.4447266845703125 +22799.0,22781.0,0.289287841796875 +22799.0,22782.0,0.23272705078125 +22799.0,22783.0,0.159781005859375 +22799.0,22784.0,0.667625244140625 +22799.0,22785.0,0.818593017578125 +22799.0,22786.0,0.4960224609375 +22799.0,22787.0,0.6821826171875 +22799.0,22788.0,0.5030089111328124 +22799.0,22789.0,0.993201904296875 +22799.0,22790.0,1.058949462890625 +22799.0,22791.0,1.245696533203125 +22799.0,22792.0,0.901017578125 +22799.0,22793.0,0.8336612548828125 +22799.0,22794.0,0.6186966552734375 +22799.0,22795.0,1.15201611328125 +22799.0,22796.0,1.2528017578125 +22799.0,22797.0,0.6814961547851562 +22799.0,22798.0,0.3340253295898437 +22799.0,22799.0,0.110107421875 +22799.0,22800.0,0.498911865234375 +22799.0,22801.0,0.14887646484375 +22799.0,22802.0,0.590869873046875 +22799.0,22803.0,0.4590703125 +22799.0,22804.0,0.5834267578125 +22799.0,22805.0,0.4151640625 +22799.0,22806.0,0.51008447265625 +22799.0,22807.0,0.57709375 +22799.0,22808.0,0.756189697265625 +22799.0,22809.0,0.6343719482421875 +22799.0,22810.0,1.06125439453125 +22799.0,22811.0,0.695488525390625 +22799.0,22812.0,1.06085791015625 +22799.0,22813.0,0.86629931640625 +22799.0,22814.0,0.961565185546875 +22799.0,22815.0,1.13685400390625 +22799.0,22816.0,1.106447509765625 +22799.0,22817.0,1.2118841552734374 +22799.0,22818.0,1.0708939208984374 +22800.0,22737.0,1.013239990234375 +22800.0,22738.0,0.83754638671875 +22800.0,22739.0,0.934156005859375 +22800.0,22740.0,1.0445517578125 +22800.0,22741.0,1.0275751953125 +22800.0,22742.0,1.159809814453125 +22800.0,22743.0,1.142348876953125 +22800.0,22744.0,1.02082470703125 +22800.0,22745.0,0.69842041015625 +22800.0,22746.0,0.7327877197265625 +22800.0,22747.0,0.8609314422607421 +22800.0,22748.0,0.76719970703125 +22800.0,22749.0,1.354588134765625 +22800.0,22750.0,1.413437255859375 +22800.0,22751.0,1.4067207641601562 +22800.0,22752.0,1.3577801513671874 +22800.0,22753.0,1.298390380859375 +22800.0,22754.0,1.1293921508789062 +22800.0,22755.0,1.347008544921875 +22800.0,22756.0,0.95999365234375 +22800.0,22757.0,1.152184326171875 +22800.0,22758.0,1.0613527832031249 +22800.0,22759.0,1.084653076171875 +22800.0,22760.0,1.107494384765625 +22800.0,22761.0,1.215037841796875 +22800.0,22762.0,1.560910888671875 +22800.0,22763.0,0.972691162109375 +22800.0,22764.0,1.082218505859375 +22800.0,22765.0,1.029343505859375 +22800.0,22766.0,1.3523555908203124 +22800.0,22767.0,0.6965267333984375 +22800.0,22768.0,0.945823974609375 +22800.0,22769.0,0.6298203125 +22800.0,22770.0,0.5217376708984375 +22800.0,22771.0,0.6917861328125 +22800.0,22772.0,0.6577353515625 +22800.0,22773.0,0.616170654296875 +22800.0,22774.0,0.8564390563964843 +22800.0,22775.0,1.01648193359375 +22800.0,22776.0,0.939095947265625 +22800.0,22777.0,1.139417236328125 +22800.0,22778.0,0.828104248046875 +22800.0,22779.0,0.705310302734375 +22800.0,22780.0,0.8045311279296875 +22800.0,22781.0,0.65109228515625 +22800.0,22782.0,0.595531494140625 +22800.0,22783.0,0.5425854492187501 +22800.0,22784.0,0.5974296875 +22800.0,22785.0,0.7483974609375 +22800.0,22786.0,0.566826904296875 +22800.0,22787.0,0.772987060546875 +22800.0,22788.0,0.5008133544921876 +22800.0,22789.0,0.88300634765625 +22800.0,22790.0,0.94875390625 +22800.0,22791.0,1.1755009765625 +22800.0,22792.0,0.790822021484375 +22800.0,22793.0,0.7234656982421875 +22800.0,22794.0,0.2975010986328125 +22800.0,22795.0,1.0418205566406251 +22800.0,22796.0,0.931606201171875 +22800.0,22797.0,0.4593005981445312 +22800.0,22798.0,0.3368297729492187 +22800.0,22799.0,0.498911865234375 +22800.0,22800.0,0.07171630859375 +22800.0,22801.0,0.415680908203125 +22800.0,22802.0,0.30367431640625 +22800.0,22803.0,0.173874755859375 +22800.0,22804.0,0.2002312011718749 +22800.0,22805.0,0.3149685058593749 +22800.0,22806.0,0.295888916015625 +22800.0,22807.0,0.471898193359375 +22800.0,22808.0,0.5199941406249999 +22800.0,22809.0,0.4531763916015625 +22800.0,22810.0,0.774058837890625 +22800.0,22811.0,0.31229296875 +22800.0,22812.0,0.773662353515625 +22800.0,22813.0,0.579103759765625 +22800.0,22814.0,0.67436962890625 +22800.0,22815.0,0.849658447265625 +22800.0,22816.0,0.819251953125 +22800.0,22817.0,0.9246885986328124 +22800.0,22818.0,0.7836983642578125 +22801.0,22737.0,0.73020458984375 +22801.0,22738.0,0.650510986328125 +22801.0,22739.0,0.84712060546875 +22801.0,22740.0,0.761516357421875 +22801.0,22741.0,0.816539794921875 +22801.0,22742.0,0.8767744140625 +22801.0,22743.0,1.0003134765625 +22801.0,22744.0,0.888789306640625 +22801.0,22745.0,0.609385009765625 +22801.0,22746.0,0.5467523193359375 +22801.0,22747.0,0.5768960418701172 +22801.0,22748.0,0.484164306640625 +22801.0,22749.0,1.070552734375 +22801.0,22750.0,1.12940185546875 +22801.0,22751.0,1.122685363769531 +22801.0,22752.0,1.0737447509765623 +22801.0,22753.0,1.01435498046875 +22801.0,22754.0,0.8453567504882813 +22801.0,22755.0,1.06297314453125 +22801.0,22756.0,0.675958251953125 +22801.0,22757.0,1.0201489257812502 +22801.0,22758.0,0.9743173828125 +22801.0,22759.0,1.00161767578125 +22801.0,22760.0,1.024458984375 +22801.0,22761.0,1.12800244140625 +22801.0,22762.0,1.42887548828125 +22801.0,22763.0,0.88965576171875 +22801.0,22764.0,0.99918310546875 +22801.0,22765.0,0.94630810546875 +22801.0,22766.0,1.3683201904296876 +22801.0,22767.0,0.6144913330078124 +22801.0,22768.0,0.86278857421875 +22801.0,22769.0,0.547784912109375 +22801.0,22770.0,0.3357022705078125 +22801.0,22771.0,0.408750732421875 +22801.0,22772.0,0.372699951171875 +22801.0,22773.0,0.33313525390625 +22801.0,22774.0,0.5714036560058594 +22801.0,22775.0,0.731446533203125 +22801.0,22776.0,0.654060546875 +22801.0,22777.0,0.8223818359375 +22801.0,22778.0,0.54306884765625 +22801.0,22779.0,0.38427490234375 +22801.0,22780.0,0.4834957275390625 +22801.0,22781.0,0.328056884765625 +22801.0,22782.0,0.27149609375 +22801.0,22783.0,0.198550048828125 +22801.0,22784.0,0.650394287109375 +22801.0,22785.0,0.801362060546875 +22801.0,22786.0,0.50679150390625 +22801.0,22787.0,0.71295166015625 +22801.0,22788.0,0.5017779541015626 +22801.0,22789.0,0.935970947265625 +22801.0,22790.0,1.0017185058593752 +22801.0,22791.0,1.228465576171875 +22801.0,22792.0,0.84378662109375 +22801.0,22793.0,0.7764302978515625 +22801.0,22794.0,0.5614656982421875 +22801.0,22795.0,1.09478515625 +22801.0,22796.0,1.19557080078125 +22801.0,22797.0,0.6242651977539062 +22801.0,22798.0,0.2767943725585937 +22801.0,22799.0,0.14887646484375 +22801.0,22800.0,0.415680908203125 +22801.0,22801.0,0.0616455078125 +22801.0,22802.0,0.5036389160156249 +22801.0,22803.0,0.37583935546875 +22801.0,22804.0,0.49619580078125 +22801.0,22805.0,0.32793310546875 +22801.0,22806.0,0.422853515625 +22801.0,22807.0,0.48986279296875 +22801.0,22808.0,0.668958740234375 +22801.0,22809.0,0.5471409912109375 +22801.0,22810.0,0.9740234375 +22801.0,22811.0,0.608257568359375 +22801.0,22812.0,0.973626953125 +22801.0,22813.0,0.779068359375 +22801.0,22814.0,0.874334228515625 +22801.0,22815.0,1.049623046875 +22801.0,22816.0,1.0192165527343748 +22801.0,22817.0,1.1246531982421877 +22801.0,22818.0,0.9836629638671875 +22802.0,22737.0,1.090197998046875 +22802.0,22738.0,0.91450439453125 +22802.0,22739.0,0.857114013671875 +22802.0,22740.0,1.121509765625 +22802.0,22741.0,1.104533203125 +22802.0,22742.0,1.236767822265625 +22802.0,22743.0,1.195306884765625 +22802.0,22744.0,1.02078271484375 +22802.0,22745.0,0.77537841796875 +22802.0,22746.0,0.8097457275390625 +22802.0,22747.0,0.9378894500732422 +22802.0,22748.0,0.84415771484375 +22802.0,22749.0,1.431546142578125 +22802.0,22750.0,1.490395263671875 +22802.0,22751.0,1.4836787719726563 +22802.0,22752.0,1.4347381591796875 +22802.0,22753.0,1.375348388671875 +22802.0,22754.0,1.2063501586914065 +22802.0,22755.0,1.423966552734375 +22802.0,22756.0,1.0369516601562498 +22802.0,22757.0,1.132142333984375 +22802.0,22758.0,0.949310791015625 +22802.0,22759.0,0.952611083984375 +22802.0,22760.0,0.975452392578125 +22802.0,22761.0,1.102995849609375 +22802.0,22762.0,1.477868896484375 +22802.0,22763.0,0.840649169921875 +22802.0,22764.0,0.945176513671875 +22802.0,22765.0,0.897301513671875 +22802.0,22766.0,1.2033135986328125 +22802.0,22767.0,0.5584847412109375 +22802.0,22768.0,0.813781982421875 +22802.0,22769.0,0.5527783203125001 +22802.0,22770.0,0.5986956787109375 +22802.0,22771.0,0.768744140625 +22802.0,22772.0,0.734693359375 +22802.0,22773.0,0.693128662109375 +22802.0,22774.0,0.9333970642089844 +22802.0,22775.0,1.09343994140625 +22802.0,22776.0,1.016053955078125 +22802.0,22777.0,1.216375244140625 +22802.0,22778.0,0.905062255859375 +22802.0,22779.0,0.826268310546875 +22802.0,22780.0,0.9254891357421876 +22802.0,22781.0,0.77005029296875 +22802.0,22782.0,0.713489501953125 +22802.0,22783.0,0.64054345703125 +22802.0,22784.0,0.7583876953125 +22802.0,22785.0,0.90935546875 +22802.0,22786.0,0.707784912109375 +22802.0,22787.0,0.913945068359375 +22802.0,22788.0,0.6617713623046875 +22802.0,22789.0,1.04396435546875 +22802.0,22790.0,1.1097119140625 +22802.0,22791.0,1.336458984375 +22802.0,22792.0,0.951780029296875 +22802.0,22793.0,0.8844237060546875 +22802.0,22794.0,0.4584591064453125 +22802.0,22795.0,1.202778564453125 +22802.0,22796.0,1.083564208984375 +22802.0,22797.0,0.6152586059570313 +22802.0,22798.0,0.4777877807617187 +22802.0,22799.0,0.590869873046875 +22802.0,22800.0,0.30367431640625 +22802.0,22801.0,0.5036389160156249 +22802.0,22802.0,0.08563232421875 +22802.0,22803.0,0.3148327636718749 +22802.0,22804.0,0.218189208984375 +22802.0,22805.0,0.391926513671875 +22802.0,22806.0,0.2188469238281249 +22802.0,22807.0,0.3268562011718749 +22802.0,22808.0,0.3589521484375 +22802.0,22809.0,0.3041343994140625 +22802.0,22810.0,0.5560168457031249 +22802.0,22811.0,0.2582509765625 +22802.0,22812.0,0.555620361328125 +22802.0,22813.0,0.361061767578125 +22802.0,22814.0,0.45632763671875 +22802.0,22815.0,0.631616455078125 +22802.0,22816.0,0.6012099609375 +22802.0,22817.0,0.7066466064453125 +22802.0,22818.0,0.5656563720703125 +22803.0,22737.0,0.9733984375 +22803.0,22738.0,0.797704833984375 +22803.0,22739.0,0.894314453125 +22803.0,22740.0,1.004710205078125 +22803.0,22741.0,0.987733642578125 +22803.0,22742.0,1.11996826171875 +22803.0,22743.0,1.10250732421875 +22803.0,22744.0,0.980983154296875 +22803.0,22745.0,0.658578857421875 +22803.0,22746.0,0.6929461669921875 +22803.0,22747.0,0.8210898895263672 +22803.0,22748.0,0.727358154296875 +22803.0,22749.0,1.31474658203125 +22803.0,22750.0,1.373595703125 +22803.0,22751.0,1.3668792114257813 +22803.0,22752.0,1.3179385986328125 +22803.0,22753.0,1.258548828125 +22803.0,22754.0,1.0895505981445313 +22803.0,22755.0,1.3071669921875 +22803.0,22756.0,0.920152099609375 +22803.0,22757.0,1.1123427734375 +22803.0,22758.0,1.02151123046875 +22803.0,22759.0,1.0448115234375 +22803.0,22760.0,1.06765283203125 +22803.0,22761.0,1.1751962890625 +22803.0,22762.0,1.5210693359375 +22803.0,22763.0,0.932849609375 +22803.0,22764.0,1.042376953125 +22803.0,22765.0,0.989501953125 +22803.0,22766.0,1.3125140380859377 +22803.0,22767.0,0.6566851806640625 +22803.0,22768.0,0.905982421875 +22803.0,22769.0,0.589978759765625 +22803.0,22770.0,0.4818961181640625 +22803.0,22771.0,0.651944580078125 +22803.0,22772.0,0.617893798828125 +22803.0,22773.0,0.5763291015625001 +22803.0,22774.0,0.8165975036621094 +22803.0,22775.0,0.976640380859375 +22803.0,22776.0,0.89925439453125 +22803.0,22777.0,1.09957568359375 +22803.0,22778.0,0.7882626953125 +22803.0,22779.0,0.66546875 +22803.0,22780.0,0.7646895751953126 +22803.0,22781.0,0.611250732421875 +22803.0,22782.0,0.5556899414062499 +22803.0,22783.0,0.502743896484375 +22803.0,22784.0,0.670588134765625 +22803.0,22785.0,0.821555908203125 +22803.0,22786.0,0.5269853515625 +22803.0,22787.0,0.7331455078125 +22803.0,22788.0,0.5219718017578125 +22803.0,22789.0,0.956164794921875 +22803.0,22790.0,1.0219123535156251 +22803.0,22791.0,1.248659423828125 +22803.0,22792.0,0.86398046875 +22803.0,22793.0,0.7966241455078125 +22803.0,22794.0,0.3996595458984375 +22803.0,22795.0,1.11497900390625 +22803.0,22796.0,1.0337646484375 +22803.0,22797.0,0.5614590454101562 +22803.0,22798.0,0.2969882202148437 +22803.0,22799.0,0.4590703125 +22803.0,22800.0,0.173874755859375 +22803.0,22801.0,0.37583935546875 +22803.0,22802.0,0.3148327636718749 +22803.0,22803.0,0.134033203125 +22803.0,22804.0,0.3013896484375 +22803.0,22805.0,0.275126953125 +22803.0,22806.0,0.25604736328125 +22803.0,22807.0,0.432056640625 +22803.0,22808.0,0.480152587890625 +22803.0,22809.0,0.4133348388671875 +22803.0,22810.0,0.78521728515625 +22803.0,22811.0,0.413451416015625 +22803.0,22812.0,0.78482080078125 +22803.0,22813.0,0.59026220703125 +22803.0,22814.0,0.685528076171875 +22803.0,22815.0,0.86081689453125 +22803.0,22816.0,0.830410400390625 +22803.0,22817.0,0.9358470458984376 +22803.0,22818.0,0.7948568115234375 +22804.0,22737.0,1.0827548828125 +22804.0,22738.0,0.907061279296875 +22804.0,22739.0,0.8496708984375 +22804.0,22740.0,1.114066650390625 +22804.0,22741.0,1.097090087890625 +22804.0,22742.0,1.22932470703125 +22804.0,22743.0,1.18786376953125 +22804.0,22744.0,1.013339599609375 +22804.0,22745.0,0.767935302734375 +22804.0,22746.0,0.8023026123046875 +22804.0,22747.0,0.9304463348388672 +22804.0,22748.0,0.836714599609375 +22804.0,22749.0,1.42410302734375 +22804.0,22750.0,1.4829521484375 +22804.0,22751.0,1.4762356567382813 +22804.0,22752.0,1.4272950439453125 +22804.0,22753.0,1.3679052734375 +22804.0,22754.0,1.1989070434570313 +22804.0,22755.0,1.4165234375 +22804.0,22756.0,1.029508544921875 +22804.0,22757.0,1.12469921875 +22804.0,22758.0,0.97686767578125 +22804.0,22759.0,1.00016796875 +22804.0,22760.0,1.02300927734375 +22804.0,22761.0,1.130552734375 +22804.0,22762.0,1.50842578125 +22804.0,22763.0,0.8882060546875 +22804.0,22764.0,0.9977333984375 +22804.0,22765.0,0.9448583984375 +22804.0,22766.0,1.2678704833984376 +22804.0,22767.0,0.6120416259765625 +22804.0,22768.0,0.8613388671875 +22804.0,22769.0,0.545335205078125 +22804.0,22770.0,0.5912525634765625 +22804.0,22771.0,0.761301025390625 +22804.0,22772.0,0.727250244140625 +22804.0,22773.0,0.685685546875 +22804.0,22774.0,0.9259539489746094 +22804.0,22775.0,1.085996826171875 +22804.0,22776.0,1.00861083984375 +22804.0,22777.0,1.20893212890625 +22804.0,22778.0,0.897619140625 +22804.0,22779.0,0.8188251953125 +22804.0,22780.0,0.9180460205078124 +22804.0,22781.0,0.762607177734375 +22804.0,22782.0,0.70604638671875 +22804.0,22783.0,0.633100341796875 +22804.0,22784.0,0.725944580078125 +22804.0,22785.0,0.876912353515625 +22804.0,22786.0,0.694341796875 +22804.0,22787.0,0.900501953125 +22804.0,22788.0,0.6293282470703125 +22804.0,22789.0,1.011521240234375 +22804.0,22790.0,1.077268798828125 +22804.0,22791.0,1.304015869140625 +22804.0,22792.0,0.9193369140625 +22804.0,22793.0,0.8519805908203125 +22804.0,22794.0,0.4260159912109375 +22804.0,22795.0,1.17033544921875 +22804.0,22796.0,1.0521210937499998 +22804.0,22797.0,0.5838154907226563 +22804.0,22798.0,0.4643446655273437 +22804.0,22799.0,0.5834267578125 +22804.0,22800.0,0.2002312011718749 +22804.0,22801.0,0.49619580078125 +22804.0,22802.0,0.218189208984375 +22804.0,22803.0,0.3013896484375 +22804.0,22804.0,0.11474609375 +22804.0,22805.0,0.3844833984375 +22804.0,22806.0,0.21140380859375 +22804.0,22807.0,0.3874130859375 +22804.0,22808.0,0.435509033203125 +22804.0,22809.0,0.3686912841796875 +22804.0,22810.0,0.68857373046875 +22804.0,22811.0,0.226807861328125 +22804.0,22812.0,0.68817724609375 +22804.0,22813.0,0.49361865234375 +22804.0,22814.0,0.588884521484375 +22804.0,22815.0,0.76417333984375 +22804.0,22816.0,0.733766845703125 +22804.0,22817.0,0.8392034912109375 +22804.0,22818.0,0.6982132568359375 +22805.0,22737.0,0.8774921875 +22805.0,22738.0,0.675798583984375 +22805.0,22739.0,0.750408203125 +22805.0,22740.0,0.908803955078125 +22805.0,22741.0,0.847827392578125 +22805.0,22742.0,1.02406201171875 +22805.0,22743.0,0.95360107421875 +22805.0,22744.0,0.832076904296875 +22805.0,22745.0,0.5096726074218749 +22805.0,22746.0,0.5710399169921875 +22805.0,22747.0,0.7271836395263672 +22805.0,22748.0,0.633451904296875 +22805.0,22749.0,1.22084033203125 +22805.0,22750.0,1.279689453125 +22805.0,22751.0,1.2729729614257812 +22805.0,22752.0,1.2240323486328124 +22805.0,22753.0,1.164642578125 +22805.0,22754.0,0.9956443481445312 +22805.0,22755.0,1.2132607421875 +22805.0,22756.0,0.826245849609375 +22805.0,22757.0,0.9634365234375 +22805.0,22758.0,0.87760498046875 +22805.0,22759.0,0.9009052734375 +22805.0,22760.0,0.92374658203125 +22805.0,22761.0,1.0312900390625002 +22805.0,22762.0,1.3721630859375 +22805.0,22763.0,0.788943359375 +22805.0,22764.0,0.898470703125 +22805.0,22765.0,0.845595703125 +22805.0,22766.0,1.2666077880859374 +22805.0,22767.0,0.5127789306640624 +22805.0,22768.0,0.762076171875 +22805.0,22769.0,0.446072509765625 +22805.0,22770.0,0.3609898681640625 +22805.0,22771.0,0.558038330078125 +22805.0,22772.0,0.524987548828125 +22805.0,22773.0,0.4824228515625 +22805.0,22774.0,0.7236912536621094 +22805.0,22775.0,0.883734130859375 +22805.0,22776.0,0.80634814453125 +22805.0,22777.0,1.00666943359375 +22805.0,22778.0,0.6953564453125 +22805.0,22779.0,0.6505625 +22805.0,22780.0,0.7497833251953125 +22805.0,22781.0,0.594344482421875 +22805.0,22782.0,0.5377836914062499 +22805.0,22783.0,0.464837646484375 +22805.0,22784.0,0.811681884765625 +22805.0,22785.0,0.962649658203125 +22805.0,22786.0,0.6680791015625 +22805.0,22787.0,0.8742392578125 +22805.0,22788.0,0.6630655517578125 +22805.0,22789.0,1.097258544921875 +22805.0,22790.0,1.163006103515625 +22805.0,22791.0,1.389753173828125 +22805.0,22792.0,1.00507421875 +22805.0,22793.0,0.9377178955078124 +22805.0,22794.0,0.5407532958984376 +22805.0,22795.0,1.25607275390625 +22805.0,22796.0,1.1748583984374998 +22805.0,22797.0,0.7025527954101562 +22805.0,22798.0,0.4380819702148437 +22805.0,22799.0,0.4151640625 +22805.0,22800.0,0.3149685058593749 +22805.0,22801.0,0.32793310546875 +22805.0,22802.0,0.391926513671875 +22805.0,22803.0,0.275126953125 +22805.0,22804.0,0.3844833984375 +22805.0,22805.0,0.126220703125 +22805.0,22806.0,0.31114111328125 +22805.0,22807.0,0.288150390625 +22805.0,22808.0,0.5572463378906249 +22805.0,22809.0,0.3454285888671875 +22805.0,22810.0,0.86231103515625 +22805.0,22811.0,0.496545166015625 +22805.0,22812.0,0.86191455078125 +22805.0,22813.0,0.66735595703125 +22805.0,22814.0,0.762621826171875 +22805.0,22815.0,0.93791064453125 +22805.0,22816.0,0.907504150390625 +22805.0,22817.0,1.0129407958984376 +22805.0,22818.0,0.8719505615234375 +22806.0,22737.0,1.00941259765625 +22806.0,22738.0,0.833718994140625 +22806.0,22739.0,0.77632861328125 +22806.0,22740.0,1.040724365234375 +22806.0,22741.0,1.0237478027343752 +22806.0,22742.0,1.155982421875 +22806.0,22743.0,1.114521484375 +22806.0,22744.0,0.939997314453125 +22806.0,22745.0,0.694593017578125 +22806.0,22746.0,0.7289603271484375 +22806.0,22747.0,0.8571040496826172 +22806.0,22748.0,0.763372314453125 +22806.0,22749.0,1.3507607421875 +22806.0,22750.0,1.40960986328125 +22806.0,22751.0,1.402893371582031 +22806.0,22752.0,1.3539527587890623 +22806.0,22753.0,1.29456298828125 +22806.0,22754.0,1.1255647583007813 +22806.0,22755.0,1.34318115234375 +22806.0,22756.0,0.956166259765625 +22806.0,22757.0,1.05135693359375 +22806.0,22758.0,0.903525390625 +22806.0,22759.0,0.92682568359375 +22806.0,22760.0,0.9496669921875 +22806.0,22761.0,1.05721044921875 +22806.0,22762.0,1.43508349609375 +22806.0,22763.0,0.81486376953125 +22806.0,22764.0,0.92439111328125 +22806.0,22765.0,0.87151611328125 +22806.0,22766.0,1.2165281982421876 +22806.0,22767.0,0.5386993408203125 +22806.0,22768.0,0.78799658203125 +22806.0,22769.0,0.471992919921875 +22806.0,22770.0,0.5179102783203124 +22806.0,22771.0,0.687958740234375 +22806.0,22772.0,0.653907958984375 +22806.0,22773.0,0.61234326171875 +22806.0,22774.0,0.8526116638183594 +22806.0,22775.0,1.0126545410156251 +22806.0,22776.0,0.9352685546875 +22806.0,22777.0,1.13558984375 +22806.0,22778.0,0.82427685546875 +22806.0,22779.0,0.74548291015625 +22806.0,22780.0,0.8447037353515625 +22806.0,22781.0,0.689264892578125 +22806.0,22782.0,0.6327041015625 +22806.0,22783.0,0.5597580566406251 +22806.0,22784.0,0.792602294921875 +22806.0,22785.0,0.943570068359375 +22806.0,22786.0,0.64899951171875 +22806.0,22787.0,0.85515966796875 +22806.0,22788.0,0.6439859619140625 +22806.0,22789.0,1.078178955078125 +22806.0,22790.0,1.143926513671875 +22806.0,22791.0,1.370673583984375 +22806.0,22792.0,0.98599462890625 +22806.0,22793.0,0.9186383056640623 +22806.0,22794.0,0.5216737060546874 +22806.0,22795.0,1.2369931640625 +22806.0,22796.0,1.14877880859375 +22806.0,22797.0,0.6804732055664062 +22806.0,22798.0,0.4190023803710938 +22806.0,22799.0,0.51008447265625 +22806.0,22800.0,0.295888916015625 +22806.0,22801.0,0.422853515625 +22806.0,22802.0,0.2188469238281249 +22806.0,22803.0,0.25604736328125 +22806.0,22804.0,0.21140380859375 +22806.0,22805.0,0.31114111328125 +22806.0,22806.0,0.1380615234375 +22806.0,22807.0,0.31407080078125 +22806.0,22808.0,0.384166748046875 +22806.0,22809.0,0.3173489990234375 +22806.0,22810.0,0.6892314453125 +22806.0,22811.0,0.323465576171875 +22806.0,22812.0,0.6888349609375 +22806.0,22813.0,0.4942763671875 +22806.0,22814.0,0.5895422363281251 +22806.0,22815.0,0.7648310546875 +22806.0,22816.0,0.734424560546875 +22806.0,22817.0,0.8398612060546875 +22806.0,22818.0,0.6988709716796875 +22807.0,22737.0,1.023421875 +22807.0,22738.0,0.821728271484375 +22807.0,22739.0,0.687337890625 +22807.0,22740.0,1.054733642578125 +22807.0,22741.0,0.993757080078125 +22807.0,22742.0,1.16999169921875 +22807.0,22743.0,1.02553076171875 +22807.0,22744.0,0.851006591796875 +22807.0,22745.0,0.655602294921875 +22807.0,22746.0,0.7169696044921875 +22807.0,22747.0,0.8731133270263672 +22807.0,22748.0,0.779381591796875 +22807.0,22749.0,1.36677001953125 +22807.0,22750.0,1.425619140625 +22807.0,22751.0,1.4189026489257812 +22807.0,22752.0,1.3669620361328123 +22807.0,22753.0,1.310572265625 +22807.0,22754.0,1.1415740356445312 +22807.0,22755.0,1.3591904296875 +22807.0,22756.0,0.972175537109375 +22807.0,22757.0,0.9623662109375 +22807.0,22758.0,0.75453466796875 +22807.0,22759.0,0.7578349609375 +22807.0,22760.0,0.78067626953125 +22807.0,22761.0,0.9082197265625 +22807.0,22762.0,1.2830927734375 +22807.0,22763.0,0.645873046875 +22807.0,22764.0,0.750400390625 +22807.0,22765.0,0.702525390625 +22807.0,22766.0,1.1165374755859374 +22807.0,22767.0,0.3637086181640625 +22807.0,22768.0,0.6190058593750001 +22807.0,22769.0,0.383002197265625 +22807.0,22770.0,0.5079195556640625 +22807.0,22771.0,0.704968017578125 +22807.0,22772.0,0.680917236328125 +22807.0,22773.0,0.6293525390625 +22807.0,22774.0,0.8796209411621094 +22807.0,22775.0,1.032663818359375 +22807.0,22776.0,0.96227783203125 +22807.0,22777.0,1.16259912109375 +22807.0,22778.0,0.8432861328125 +22807.0,22779.0,0.8124921875 +22807.0,22780.0,0.9117130126953124 +22807.0,22781.0,0.756274169921875 +22807.0,22782.0,0.69971337890625 +22807.0,22783.0,0.626767333984375 +22807.0,22784.0,0.968611572265625 +22807.0,22785.0,1.119579345703125 +22807.0,22786.0,0.8250087890625 +22807.0,22787.0,1.0311689453125 +22807.0,22788.0,0.8199952392578125 +22807.0,22789.0,1.254188232421875 +22807.0,22790.0,1.319935791015625 +22807.0,22791.0,1.546682861328125 +22807.0,22792.0,1.16200390625 +22807.0,22793.0,1.0946475830078124 +22807.0,22794.0,0.6976829833984375 +22807.0,22795.0,1.41300244140625 +22807.0,22796.0,1.3247880859375 +22807.0,22797.0,0.8564824829101563 +22807.0,22798.0,0.5950116577148438 +22807.0,22799.0,0.57709375 +22807.0,22800.0,0.471898193359375 +22807.0,22801.0,0.48986279296875 +22807.0,22802.0,0.3268562011718749 +22807.0,22803.0,0.432056640625 +22807.0,22804.0,0.3874130859375 +22807.0,22805.0,0.288150390625 +22807.0,22806.0,0.31407080078125 +22807.0,22807.0,0.132080078125 +22807.0,22808.0,0.448176025390625 +22807.0,22809.0,0.1893582763671875 +22807.0,22810.0,0.79724072265625 +22807.0,22811.0,0.499474853515625 +22807.0,22812.0,0.79684423828125 +22807.0,22813.0,0.60228564453125 +22807.0,22814.0,0.697551513671875 +22807.0,22815.0,0.87284033203125 +22807.0,22816.0,0.842433837890625 +22807.0,22817.0,0.9478704833984376 +22807.0,22818.0,0.8068802490234375 +22808.0,22737.0,1.255517822265625 +22808.0,22738.0,1.07982421875 +22808.0,22739.0,0.973433837890625 +22808.0,22740.0,1.28682958984375 +22808.0,22741.0,1.26985302734375 +22808.0,22742.0,1.402087646484375 +22808.0,22743.0,1.259626708984375 +22808.0,22744.0,1.1271025390625 +22808.0,22745.0,0.9406982421875 +22808.0,22746.0,0.9750655517578124 +22808.0,22747.0,1.103209274291992 +22808.0,22748.0,1.0094775390625 +22808.0,22749.0,1.596865966796875 +22808.0,22750.0,1.655715087890625 +22808.0,22751.0,1.6489985961914062 +22808.0,22752.0,1.6000579833984374 +22808.0,22753.0,1.540668212890625 +22808.0,22754.0,1.3716699829101562 +22808.0,22755.0,1.589286376953125 +22808.0,22756.0,1.202271484375 +22808.0,22757.0,1.0624621582031248 +22808.0,22758.0,0.824630615234375 +22808.0,22759.0,0.827930908203125 +22808.0,22760.0,0.850772216796875 +22808.0,22761.0,0.978315673828125 +22808.0,22762.0,1.353188720703125 +22808.0,22763.0,0.715968994140625 +22808.0,22764.0,0.820496337890625 +22808.0,22765.0,0.772621337890625 +22808.0,22766.0,1.0716334228515625 +22808.0,22767.0,0.5548045654296875 +22808.0,22768.0,0.689101806640625 +22808.0,22769.0,0.69209814453125 +22808.0,22770.0,0.7640155029296875 +22808.0,22771.0,0.93406396484375 +22808.0,22772.0,0.90001318359375 +22808.0,22773.0,0.858448486328125 +22808.0,22774.0,1.0987168884277343 +22808.0,22775.0,1.258759765625 +22808.0,22776.0,1.181373779296875 +22808.0,22777.0,1.381695068359375 +22808.0,22778.0,1.070382080078125 +22808.0,22779.0,0.991588134765625 +22808.0,22780.0,1.0908089599609374 +22808.0,22781.0,0.9353701171875 +22808.0,22782.0,0.878809326171875 +22808.0,22783.0,0.80586328125 +22808.0,22784.0,0.92270751953125 +22808.0,22785.0,1.07367529296875 +22808.0,22786.0,0.873104736328125 +22808.0,22787.0,1.079264892578125 +22808.0,22788.0,0.8260911865234375 +22808.0,22789.0,1.2082841796875 +22808.0,22790.0,1.27403173828125 +22808.0,22791.0,1.50077880859375 +22808.0,22792.0,1.116099853515625 +22808.0,22793.0,1.0487435302734376 +22808.0,22794.0,0.6227789306640625 +22808.0,22795.0,1.365098388671875 +22808.0,22796.0,1.244884033203125 +22808.0,22797.0,0.7765784301757812 +22808.0,22798.0,0.6431076049804687 +22808.0,22799.0,0.756189697265625 +22808.0,22800.0,0.5199941406249999 +22808.0,22801.0,0.668958740234375 +22808.0,22802.0,0.3589521484375 +22808.0,22803.0,0.480152587890625 +22808.0,22804.0,0.435509033203125 +22808.0,22805.0,0.5572463378906249 +22808.0,22806.0,0.384166748046875 +22808.0,22807.0,0.448176025390625 +22808.0,22808.0,0.11627197265625 +22808.0,22809.0,0.4254542236328125 +22808.0,22810.0,0.539336669921875 +22808.0,22811.0,0.41957080078125 +22808.0,22812.0,0.538940185546875 +22808.0,22813.0,0.322381591796875 +22808.0,22814.0,0.4176474609375 +22808.0,22815.0,0.581936279296875 +22808.0,22816.0,0.58452978515625 +22808.0,22817.0,0.6609664306640625 +22808.0,22818.0,0.5159761962890625 +22809.0,22737.0,1.0807000732421874 +22809.0,22738.0,0.8790064697265625 +22809.0,22739.0,0.7446160888671876 +22809.0,22740.0,1.1120118408203126 +22809.0,22741.0,1.0510352783203123 +22809.0,22742.0,1.2272698974609375 +22809.0,22743.0,1.0828089599609374 +22809.0,22744.0,0.9082847900390624 +22809.0,22745.0,0.7128804931640625 +22809.0,22746.0,0.774247802734375 +22809.0,22747.0,0.9303915252685548 +22809.0,22748.0,0.8366597900390625 +22809.0,22749.0,1.4240482177734377 +22809.0,22750.0,1.4828973388671876 +22809.0,22751.0,1.4761808471679687 +22809.0,22752.0,1.424240234375 +22809.0,22753.0,1.3678504638671876 +22809.0,22754.0,1.198852233886719 +22809.0,22755.0,1.4164686279296874 +22809.0,22756.0,1.0294537353515625 +22809.0,22757.0,1.0196444091796877 +22809.0,22758.0,0.8118128662109375 +22809.0,22759.0,0.8151131591796875 +22809.0,22760.0,0.8379544677734375 +22809.0,22761.0,0.9654979248046875 +22809.0,22762.0,1.3403709716796874 +22809.0,22763.0,0.7031512451171875 +22809.0,22764.0,0.8076785888671875 +22809.0,22765.0,0.7598035888671875 +22809.0,22766.0,1.173815673828125 +22809.0,22767.0,0.42098681640625 +22809.0,22768.0,0.6762840576171875 +22809.0,22769.0,0.4402803955078125 +22809.0,22770.0,0.56519775390625 +22809.0,22771.0,0.7622462158203125 +22809.0,22772.0,0.7381954345703124 +22809.0,22773.0,0.6866307373046875 +22809.0,22774.0,0.9368991394042968 +22809.0,22775.0,1.0899420166015623 +22809.0,22776.0,1.0195560302734377 +22809.0,22777.0,1.2198773193359376 +22809.0,22778.0,0.9005643310546875 +22809.0,22779.0,0.8697703857421875 +22809.0,22780.0,0.9689912109375 +22809.0,22781.0,0.8135523681640625 +22809.0,22782.0,0.7569915771484375 +22809.0,22783.0,0.6840455322265625 +22809.0,22784.0,0.9498897705078124 +22809.0,22785.0,1.1008575439453123 +22809.0,22786.0,0.8062869873046875 +22809.0,22787.0,1.0124471435546876 +22809.0,22788.0,0.8012734375 +22809.0,22789.0,1.2354664306640626 +22809.0,22790.0,1.3012139892578125 +22809.0,22791.0,1.5279610595703126 +22809.0,22792.0,1.1432821044921877 +22809.0,22793.0,1.07592578125 +22809.0,22794.0,0.676961181640625 +22809.0,22795.0,1.3942806396484375 +22809.0,22796.0,1.3020662841796875 +22809.0,22797.0,0.8337606811523437 +22809.0,22798.0,0.5762898559570313 +22809.0,22799.0,0.6343719482421875 +22809.0,22800.0,0.4531763916015625 +22809.0,22801.0,0.5471409912109375 +22809.0,22802.0,0.3041343994140625 +22809.0,22803.0,0.4133348388671875 +22809.0,22804.0,0.3686912841796875 +22809.0,22805.0,0.3454285888671875 +22809.0,22806.0,0.3173489990234375 +22809.0,22807.0,0.1893582763671875 +22809.0,22808.0,0.4254542236328125 +22809.0,22809.0,0.008636474609375 +22809.0,22810.0,0.7745189208984375 +22809.0,22811.0,0.4767530517578125 +22809.0,22812.0,0.7741224365234375 +22809.0,22813.0,0.5795638427734375 +22809.0,22814.0,0.6748297119140625 +22809.0,22815.0,0.8501185302734375 +22809.0,22816.0,0.8197120361328125 +22809.0,22817.0,0.925148681640625 +22809.0,22818.0,0.784158447265625 +22810.0,22737.0,1.56058251953125 +22810.0,22738.0,1.384888916015625 +22810.0,22739.0,1.32749853515625 +22810.0,22740.0,1.591894287109375 +22810.0,22741.0,1.574917724609375 +22810.0,22742.0,1.70715234375 +22810.0,22743.0,1.66569140625 +22810.0,22744.0,1.491167236328125 +22810.0,22745.0,1.245762939453125 +22810.0,22746.0,1.2801302490234374 +22810.0,22747.0,1.4082739715576171 +22810.0,22748.0,1.314542236328125 +22810.0,22749.0,1.9019306640625 +22810.0,22750.0,1.96077978515625 +22810.0,22751.0,1.9540632934570312 +22810.0,22752.0,1.9051226806640624 +22810.0,22753.0,1.84573291015625 +22810.0,22754.0,1.6767346801757812 +22810.0,22755.0,1.89435107421875 +22810.0,22756.0,1.507336181640625 +22810.0,22757.0,1.48552685546875 +22810.0,22758.0,1.2476953125 +22810.0,22759.0,1.25099560546875 +22810.0,22760.0,1.2738369140625 +22810.0,22761.0,1.40138037109375 +22810.0,22762.0,1.77625341796875 +22810.0,22763.0,1.13903369140625 +22810.0,22764.0,1.24356103515625 +22810.0,22765.0,1.19568603515625 +22810.0,22766.0,1.4466981201171876 +22810.0,22767.0,0.9778692626953124 +22810.0,22768.0,1.11216650390625 +22810.0,22769.0,1.023162841796875 +22810.0,22770.0,1.0690802001953124 +22810.0,22771.0,1.239128662109375 +22810.0,22772.0,1.205077880859375 +22810.0,22773.0,1.16351318359375 +22810.0,22774.0,1.403781585693359 +22810.0,22775.0,1.563824462890625 +22810.0,22776.0,1.4864384765625 +22810.0,22777.0,1.686759765625 +22810.0,22778.0,1.37544677734375 +22810.0,22779.0,1.29665283203125 +22810.0,22780.0,1.3958736572265624 +22810.0,22781.0,1.240434814453125 +22810.0,22782.0,1.1838740234375 +22810.0,22783.0,1.110927978515625 +22810.0,22784.0,0.923772216796875 +22810.0,22785.0,1.074739990234375 +22810.0,22786.0,1.12116943359375 +22810.0,22787.0,1.35932958984375 +22810.0,22788.0,0.9371558837890624 +22810.0,22789.0,1.154348876953125 +22810.0,22790.0,1.220096435546875 +22810.0,22791.0,1.471843505859375 +22810.0,22792.0,1.06216455078125 +22810.0,22793.0,0.9948082275390624 +22810.0,22794.0,0.6738436279296875 +22810.0,22795.0,1.0971630859375 +22810.0,22796.0,1.02994873046875 +22810.0,22797.0,0.7136431274414062 +22810.0,22798.0,0.8911723022460938 +22810.0,22799.0,1.06125439453125 +22810.0,22800.0,0.774058837890625 +22810.0,22801.0,0.9740234375 +22810.0,22802.0,0.5560168457031249 +22810.0,22803.0,0.78521728515625 +22810.0,22804.0,0.68857373046875 +22810.0,22805.0,0.86231103515625 +22810.0,22806.0,0.6892314453125 +22810.0,22807.0,0.79724072265625 +22810.0,22808.0,0.539336669921875 +22810.0,22809.0,0.7745189208984375 +22810.0,22810.0,0.1864013671875 +22810.0,22811.0,0.5276354980468749 +22810.0,22812.0,0.1900048828125 +22810.0,22813.0,0.4514462890625 +22810.0,22814.0,0.414712158203125 +22810.0,22815.0,0.5900009765625001 +22810.0,22816.0,0.361594482421875 +22810.0,22817.0,0.4750311279296875 +22810.0,22818.0,0.4620408935546875 +22811.0,22737.0,1.194816650390625 +22811.0,22738.0,1.019123046875 +22811.0,22739.0,0.961732666015625 +22811.0,22740.0,1.22612841796875 +22811.0,22741.0,1.20915185546875 +22811.0,22742.0,1.341386474609375 +22811.0,22743.0,1.299925537109375 +22811.0,22744.0,1.1254013671875 +22811.0,22745.0,0.8799970703125 +22811.0,22746.0,0.9143643798828124 +22811.0,22747.0,1.0425081024169922 +22811.0,22748.0,0.9487763671875 +22811.0,22749.0,1.536164794921875 +22811.0,22750.0,1.595013916015625 +22811.0,22751.0,1.5882974243164063 +22811.0,22752.0,1.5393568115234375 +22811.0,22753.0,1.479967041015625 +22811.0,22754.0,1.3109688110351565 +22811.0,22755.0,1.528585205078125 +22811.0,22756.0,1.1415703125 +22811.0,22757.0,1.236760986328125 +22811.0,22758.0,1.088929443359375 +22811.0,22759.0,1.112229736328125 +22811.0,22760.0,1.135071044921875 +22811.0,22761.0,1.242614501953125 +22811.0,22762.0,1.620487548828125 +22811.0,22763.0,1.000267822265625 +22811.0,22764.0,1.109795166015625 +22811.0,22765.0,1.056920166015625 +22811.0,22766.0,1.3679322509765626 +22811.0,22767.0,0.7241033935546874 +22811.0,22768.0,0.973400634765625 +22811.0,22769.0,0.65739697265625 +22811.0,22770.0,0.7033143310546875 +22811.0,22771.0,0.87336279296875 +22811.0,22772.0,0.83931201171875 +22811.0,22773.0,0.797747314453125 +22811.0,22774.0,1.0380157165527344 +22811.0,22775.0,1.19805859375 +22811.0,22776.0,1.120672607421875 +22811.0,22777.0,1.320993896484375 +22811.0,22778.0,1.009680908203125 +22811.0,22779.0,0.930886962890625 +22811.0,22780.0,1.0301077880859375 +22811.0,22781.0,0.8746689453125 +22811.0,22782.0,0.818108154296875 +22811.0,22783.0,0.745162109375 +22811.0,22784.0,0.59600634765625 +22811.0,22785.0,0.74697412109375 +22811.0,22786.0,0.654403564453125 +22811.0,22787.0,1.0125637207031248 +22811.0,22788.0,0.5563900146484375 +22811.0,22789.0,0.8265830078125 +22811.0,22790.0,0.89233056640625 +22811.0,22791.0,1.14407763671875 +22811.0,22792.0,0.734398681640625 +22811.0,22793.0,0.6670423583984375 +22811.0,22794.0,0.3460777587890625 +22811.0,22795.0,0.974397216796875 +22811.0,22796.0,0.854182861328125 +22811.0,22797.0,0.3858772583007812 +22811.0,22798.0,0.4244064331054687 +22811.0,22799.0,0.695488525390625 +22811.0,22800.0,0.31229296875 +22811.0,22801.0,0.608257568359375 +22811.0,22802.0,0.2582509765625 +22811.0,22803.0,0.413451416015625 +22811.0,22804.0,0.226807861328125 +22811.0,22805.0,0.496545166015625 +22811.0,22806.0,0.323465576171875 +22811.0,22807.0,0.499474853515625 +22811.0,22808.0,0.41957080078125 +22811.0,22809.0,0.4767530517578125 +22811.0,22810.0,0.5276354980468749 +22811.0,22811.0,0.02886962890625 +22811.0,22812.0,0.531239013671875 +22811.0,22813.0,0.359680419921875 +22811.0,22814.0,0.4549462890625 +22811.0,22815.0,0.630235107421875 +22811.0,22816.0,0.59982861328125 +22811.0,22817.0,0.7052652587890625 +22811.0,22818.0,0.5642750244140625 +22812.0,22685.0,4.93541455078125 +22812.0,22687.0,4.960197509765625 +22812.0,22688.0,4.9632802734375 +22812.0,22737.0,1.56018603515625 +22812.0,22738.0,1.384492431640625 +22812.0,22739.0,1.32710205078125 +22812.0,22740.0,1.591497802734375 +22812.0,22741.0,1.574521240234375 +22812.0,22742.0,1.706755859375 +22812.0,22743.0,1.665294921875 +22812.0,22744.0,1.490770751953125 +22812.0,22745.0,1.245366455078125 +22812.0,22746.0,1.2797337646484377 +22812.0,22747.0,1.4078774871826172 +22812.0,22748.0,1.314145751953125 +22812.0,22749.0,1.9015341796875 +22812.0,22750.0,1.96038330078125 +22812.0,22751.0,1.9536668090820315 +22812.0,22752.0,1.9047261962890625 +22812.0,22753.0,1.84533642578125 +22812.0,22754.0,1.6763381958007812 +22812.0,22755.0,1.89395458984375 +22812.0,22756.0,1.506939697265625 +22812.0,22757.0,1.48513037109375 +22812.0,22758.0,1.247298828125 +22812.0,22759.0,1.25059912109375 +22812.0,22760.0,1.2734404296875 +22812.0,22761.0,1.40098388671875 +22812.0,22762.0,1.77585693359375 +22812.0,22763.0,1.13863720703125 +22812.0,22764.0,1.24316455078125 +22812.0,22765.0,1.19528955078125 +22812.0,22766.0,1.3413016357421874 +22812.0,22767.0,0.9774727783203124 +22812.0,22768.0,1.11177001953125 +22812.0,22769.0,1.022766357421875 +22812.0,22770.0,1.0686837158203124 +22812.0,22771.0,1.238732177734375 +22812.0,22772.0,1.204681396484375 +22812.0,22773.0,1.16311669921875 +22812.0,22774.0,1.4033851013183594 +22812.0,22775.0,1.563427978515625 +22812.0,22776.0,1.4860419921875 +22812.0,22777.0,1.68636328125 +22812.0,22778.0,1.37505029296875 +22812.0,22779.0,1.29625634765625 +22812.0,22780.0,1.3954771728515625 +22812.0,22781.0,1.240038330078125 +22812.0,22782.0,1.1834775390625 +22812.0,22783.0,1.110531494140625 +22812.0,22784.0,0.927375732421875 +22812.0,22785.0,1.078343505859375 +22812.0,22786.0,1.12077294921875 +22812.0,22787.0,1.36293310546875 +22812.0,22788.0,0.9407593994140624 +22812.0,22789.0,1.157952392578125 +22812.0,22790.0,1.223699951171875 +22812.0,22791.0,1.380447021484375 +22812.0,22792.0,1.06576806640625 +22812.0,22793.0,0.9984117431640624 +22812.0,22794.0,0.6774471435546875 +22812.0,22795.0,0.9947666015625 +22812.0,22796.0,0.92755224609375 +22812.0,22797.0,0.7172466430664063 +22812.0,22798.0,0.8907758178710937 +22812.0,22799.0,1.06085791015625 +22812.0,22800.0,0.773662353515625 +22812.0,22801.0,0.973626953125 +22812.0,22802.0,0.555620361328125 +22812.0,22803.0,0.78482080078125 +22812.0,22804.0,0.68817724609375 +22812.0,22805.0,0.86191455078125 +22812.0,22806.0,0.6888349609375 +22812.0,22807.0,0.79684423828125 +22812.0,22808.0,0.538940185546875 +22812.0,22809.0,0.7741224365234375 +22812.0,22810.0,0.1900048828125 +22812.0,22811.0,0.531239013671875 +22812.0,22812.0,0.0736083984375 +22812.0,22813.0,0.3930498046875 +22812.0,22814.0,0.330315673828125 +22812.0,22815.0,0.4846044921875 +22812.0,22816.0,0.245197998046875 +22812.0,22817.0,0.3586346435546875 +22812.0,22818.0,0.3456444091796875 +22813.0,22737.0,1.36562744140625 +22813.0,22738.0,1.189933837890625 +22813.0,22739.0,1.13254345703125 +22813.0,22740.0,1.396939208984375 +22813.0,22741.0,1.379962646484375 +22813.0,22742.0,1.512197265625 +22813.0,22743.0,1.465736328125 +22813.0,22744.0,1.296212158203125 +22813.0,22745.0,1.050807861328125 +22813.0,22746.0,1.0851751708984374 +22813.0,22747.0,1.2133188934326171 +22813.0,22748.0,1.119587158203125 +22813.0,22749.0,1.7069755859375 +22813.0,22750.0,1.76582470703125 +22813.0,22751.0,1.7591082153320312 +22813.0,22752.0,1.7101676025390624 +22813.0,22753.0,1.65077783203125 +22813.0,22754.0,1.4817796020507812 +22813.0,22755.0,1.69939599609375 +22813.0,22756.0,1.312381103515625 +22813.0,22757.0,1.26857177734375 +22813.0,22758.0,1.030740234375 +22813.0,22759.0,1.03404052734375 +22813.0,22760.0,1.0568818359374998 +22813.0,22761.0,1.18442529296875 +22813.0,22762.0,1.55929833984375 +22813.0,22763.0,0.92207861328125 +22813.0,22764.0,1.02660595703125 +22813.0,22765.0,0.97873095703125 +22813.0,22766.0,1.1457430419921877 +22813.0,22767.0,0.7609141845703125 +22813.0,22768.0,0.89521142578125 +22813.0,22769.0,0.828207763671875 +22813.0,22770.0,0.8741251220703125 +22813.0,22771.0,1.0441735839843749 +22813.0,22772.0,1.010122802734375 +22813.0,22773.0,0.96855810546875 +22813.0,22774.0,1.2088265075683593 +22813.0,22775.0,1.368869384765625 +22813.0,22776.0,1.2914833984375 +22813.0,22777.0,1.4918046875 +22813.0,22778.0,1.18049169921875 +22813.0,22779.0,1.10169775390625 +22813.0,22780.0,1.2009185791015624 +22813.0,22781.0,1.045479736328125 +22813.0,22782.0,0.9889189453125 +22813.0,22783.0,0.915972900390625 +22813.0,22784.0,0.904817138671875 +22813.0,22785.0,1.055784912109375 +22813.0,22786.0,0.92621435546875 +22813.0,22787.0,1.18937451171875 +22813.0,22788.0,0.8282008056640625 +22813.0,22789.0,1.135393798828125 +22813.0,22790.0,1.201141357421875 +22813.0,22791.0,1.452888427734375 +22813.0,22792.0,1.04320947265625 +22813.0,22793.0,0.9758531494140624 +22813.0,22794.0,0.6248885498046876 +22813.0,22795.0,1.2832080078125 +22813.0,22796.0,1.16299365234375 +22813.0,22797.0,0.6946880493164063 +22813.0,22798.0,0.6962172241210938 +22813.0,22799.0,0.86629931640625 +22813.0,22800.0,0.579103759765625 +22813.0,22801.0,0.779068359375 +22813.0,22802.0,0.361061767578125 +22813.0,22803.0,0.59026220703125 +22813.0,22804.0,0.49361865234375 +22813.0,22805.0,0.66735595703125 +22813.0,22806.0,0.4942763671875 +22813.0,22807.0,0.60228564453125 +22813.0,22808.0,0.322381591796875 +22813.0,22809.0,0.5795638427734375 +22813.0,22810.0,0.4514462890625 +22813.0,22811.0,0.359680419921875 +22813.0,22812.0,0.3930498046875 +22813.0,22813.0,0.0784912109375 +22813.0,22814.0,0.173757080078125 +22813.0,22815.0,0.3490458984375 +22813.0,22816.0,0.438639404296875 +22813.0,22817.0,0.4280760498046875 +22813.0,22818.0,0.2830858154296874 +22814.0,22737.0,1.460893310546875 +22814.0,22738.0,1.28519970703125 +22814.0,22739.0,1.227809326171875 +22814.0,22740.0,1.492205078125 +22814.0,22741.0,1.475228515625 +22814.0,22742.0,1.607463134765625 +22814.0,22743.0,1.561002197265625 +22814.0,22744.0,1.39147802734375 +22814.0,22745.0,1.14607373046875 +22814.0,22746.0,1.1804410400390626 +22814.0,22747.0,1.308584762573242 +22814.0,22748.0,1.21485302734375 +22814.0,22749.0,1.802241455078125 +22814.0,22750.0,1.861090576171875 +22814.0,22751.0,1.854374084472656 +22814.0,22752.0,1.805433471679688 +22814.0,22753.0,1.746043701171875 +22814.0,22754.0,1.577045471191406 +22814.0,22755.0,1.794661865234375 +22814.0,22756.0,1.40764697265625 +22814.0,22757.0,1.363837646484375 +22814.0,22758.0,1.126006103515625 +22814.0,22759.0,1.111306396484375 +22814.0,22760.0,1.152147705078125 +22814.0,22761.0,1.279691162109375 +22814.0,22762.0,1.613564208984375 +22814.0,22763.0,1.017344482421875 +22814.0,22764.0,1.1028718261718748 +22814.0,22765.0,1.073996826171875 +22814.0,22766.0,1.1430089111328126 +22814.0,22767.0,0.8561800537109375 +22814.0,22768.0,0.990477294921875 +22814.0,22769.0,0.9234736328125 +22814.0,22770.0,0.9693909912109376 +22814.0,22771.0,1.139439453125 +22814.0,22772.0,1.105388671875 +22814.0,22773.0,1.063823974609375 +22814.0,22774.0,1.3040923767089845 +22814.0,22775.0,1.46413525390625 +22814.0,22776.0,1.386749267578125 +22814.0,22777.0,1.587070556640625 +22814.0,22778.0,1.275757568359375 +22814.0,22779.0,1.196963623046875 +22814.0,22780.0,1.2961844482421876 +22814.0,22781.0,1.14074560546875 +22814.0,22782.0,1.084184814453125 +22814.0,22783.0,1.01123876953125 +22814.0,22784.0,0.9540830078125 +22814.0,22785.0,1.10505078125 +22814.0,22786.0,1.021480224609375 +22814.0,22787.0,1.284640380859375 +22814.0,22788.0,0.9234666748046876 +22814.0,22789.0,1.18465966796875 +22814.0,22790.0,1.2504072265625 +22814.0,22791.0,1.502154296875 +22814.0,22792.0,1.092475341796875 +22814.0,22793.0,1.0251190185546877 +22814.0,22794.0,0.7041544189453125 +22814.0,22795.0,1.251473876953125 +22814.0,22796.0,1.184259521484375 +22814.0,22797.0,0.7439539184570313 +22814.0,22798.0,0.7914830932617187 +22814.0,22799.0,0.961565185546875 +22814.0,22800.0,0.67436962890625 +22814.0,22801.0,0.874334228515625 +22814.0,22802.0,0.45632763671875 +22814.0,22803.0,0.685528076171875 +22814.0,22804.0,0.588884521484375 +22814.0,22805.0,0.762621826171875 +22814.0,22806.0,0.5895422363281251 +22814.0,22807.0,0.697551513671875 +22814.0,22808.0,0.4176474609375 +22814.0,22809.0,0.6748297119140625 +22814.0,22810.0,0.414712158203125 +22814.0,22811.0,0.4549462890625 +22814.0,22812.0,0.330315673828125 +22814.0,22813.0,0.173757080078125 +22814.0,22814.0,0.11102294921875 +22814.0,22815.0,0.286311767578125 +22814.0,22816.0,0.3759052734375 +22814.0,22817.0,0.3653419189453125 +22814.0,22818.0,0.2203516845703125 +22815.0,22677.0,4.925344665527343 +22815.0,22685.0,4.83741064453125 +22815.0,22687.0,4.862193603515625 +22815.0,22688.0,4.8652763671875 +22815.0,22737.0,1.63618212890625 +22815.0,22738.0,1.460488525390625 +22815.0,22739.0,1.40309814453125 +22815.0,22740.0,1.667493896484375 +22815.0,22741.0,1.650517333984375 +22815.0,22742.0,1.782751953125 +22815.0,22743.0,1.725291015625 +22815.0,22744.0,1.566766845703125 +22815.0,22745.0,1.321362548828125 +22815.0,22746.0,1.3557298583984374 +22815.0,22747.0,1.4838735809326171 +22815.0,22748.0,1.390141845703125 +22815.0,22749.0,1.9775302734375 +22815.0,22750.0,2.03637939453125 +22815.0,22751.0,2.0296629028320314 +22815.0,22752.0,1.9807222900390624 +22815.0,22753.0,1.92133251953125 +22815.0,22754.0,1.7523342895507812 +22815.0,22755.0,1.96995068359375 +22815.0,22756.0,1.582935791015625 +22815.0,22757.0,1.52812646484375 +22815.0,22758.0,1.290294921875 +22815.0,22759.0,0.94359521484375 +22815.0,22760.0,1.0934365234375 +22815.0,22761.0,1.22297998046875 +22815.0,22762.0,1.44585302734375 +22815.0,22763.0,1.18163330078125 +22815.0,22764.0,0.93516064453125 +22815.0,22765.0,1.01428564453125 +22815.0,22766.0,0.9752977294921876 +22815.0,22767.0,1.0204688720703126 +22815.0,22768.0,1.15476611328125 +22815.0,22769.0,1.098762451171875 +22815.0,22770.0,1.1446798095703126 +22815.0,22771.0,1.314728271484375 +22815.0,22772.0,1.280677490234375 +22815.0,22773.0,1.23911279296875 +22815.0,22774.0,1.4793811950683593 +22815.0,22775.0,1.639424072265625 +22815.0,22776.0,1.5620380859375 +22815.0,22777.0,1.762359375 +22815.0,22778.0,1.45104638671875 +22815.0,22779.0,1.37225244140625 +22815.0,22780.0,1.4714732666015624 +22815.0,22781.0,1.316034423828125 +22815.0,22782.0,1.2594736328125 +22815.0,22783.0,1.186527587890625 +22815.0,22784.0,1.129371826171875 +22815.0,22785.0,1.280339599609375 +22815.0,22786.0,1.19676904296875 +22815.0,22787.0,1.45992919921875 +22815.0,22788.0,1.0987554931640624 +22815.0,22789.0,1.359948486328125 +22815.0,22790.0,1.425696044921875 +22815.0,22791.0,1.677443115234375 +22815.0,22792.0,1.26776416015625 +22815.0,22793.0,1.2004078369140625 +22815.0,22794.0,0.8794432373046875 +22815.0,22795.0,1.4057626953125 +22815.0,22796.0,1.33854833984375 +22815.0,22797.0,0.9192427368164062 +22815.0,22798.0,0.9667719116210938 +22815.0,22799.0,1.13685400390625 +22815.0,22800.0,0.849658447265625 +22815.0,22801.0,1.049623046875 +22815.0,22802.0,0.631616455078125 +22815.0,22803.0,0.86081689453125 +22815.0,22804.0,0.76417333984375 +22815.0,22805.0,0.93791064453125 +22815.0,22806.0,0.7648310546875 +22815.0,22807.0,0.87284033203125 +22815.0,22808.0,0.581936279296875 +22815.0,22809.0,0.8501185302734375 +22815.0,22810.0,0.5900009765625001 +22815.0,22811.0,0.630235107421875 +22815.0,22812.0,0.4846044921875 +22815.0,22813.0,0.3490458984375 +22815.0,22814.0,0.286311767578125 +22815.0,22815.0,0.1156005859375 +22815.0,22816.0,0.414194091796875 +22815.0,22817.0,0.2316307373046875 +22815.0,22818.0,0.1926405029296874 +22816.0,22676.0,4.988497604370117 +22816.0,22677.0,4.872938171386719 +22816.0,22685.0,4.785004150390625 +22816.0,22686.0,4.961650146484375 +22816.0,22687.0,4.809787109375 +22816.0,22688.0,4.812869873046875 +22816.0,22737.0,1.605775634765625 +22816.0,22738.0,1.43008203125 +22816.0,22739.0,1.372691650390625 +22816.0,22740.0,1.63708740234375 +22816.0,22741.0,1.62011083984375 +22816.0,22742.0,1.752345458984375 +22816.0,22743.0,1.710884521484375 +22816.0,22744.0,1.5363603515625 +22816.0,22745.0,1.2909560546875 +22816.0,22746.0,1.3253233642578126 +22816.0,22747.0,1.453467086791992 +22816.0,22748.0,1.3597353515625 +22816.0,22749.0,1.947123779296875 +22816.0,22750.0,2.005972900390625 +22816.0,22751.0,1.9992564086914064 +22816.0,22752.0,1.9503157958984372 +22816.0,22753.0,1.890926025390625 +22816.0,22754.0,1.7219277954101562 +22816.0,22755.0,1.939544189453125 +22816.0,22756.0,1.552529296875 +22816.0,22757.0,1.530719970703125 +22816.0,22758.0,1.292888427734375 +22816.0,22759.0,1.239188720703125 +22816.0,22760.0,1.319030029296875 +22816.0,22761.0,1.446573486328125 +22816.0,22762.0,1.741446533203125 +22816.0,22763.0,1.184226806640625 +22816.0,22764.0,1.230754150390625 +22816.0,22765.0,1.240879150390625 +22816.0,22766.0,1.2708912353515625 +22816.0,22767.0,1.0230623779296877 +22816.0,22768.0,1.157359619140625 +22816.0,22769.0,1.06835595703125 +22816.0,22770.0,1.1142733154296875 +22816.0,22771.0,1.28432177734375 +22816.0,22772.0,1.25027099609375 +22816.0,22773.0,1.208706298828125 +22816.0,22774.0,1.4489747009277345 +22816.0,22775.0,1.609017578125 +22816.0,22776.0,1.531631591796875 +22816.0,22777.0,1.731952880859375 +22816.0,22778.0,1.420639892578125 +22816.0,22779.0,1.341845947265625 +22816.0,22780.0,1.4410667724609374 +22816.0,22781.0,1.2856279296875 +22816.0,22782.0,1.229067138671875 +22816.0,22783.0,1.15612109375 +22816.0,22784.0,1.05296533203125 +22816.0,22785.0,1.20393310546875 +22816.0,22786.0,1.166362548828125 +22816.0,22787.0,1.429522705078125 +22816.0,22788.0,1.0663489990234374 +22816.0,22789.0,1.2655419921875 +22816.0,22790.0,1.34928955078125 +22816.0,22791.0,1.48003662109375 +22816.0,22792.0,1.191357666015625 +22816.0,22793.0,1.1240013427734374 +22816.0,22794.0,0.8030367431640625 +22816.0,22795.0,1.094356201171875 +22816.0,22796.0,1.027141845703125 +22816.0,22797.0,0.8428362426757813 +22816.0,22798.0,0.9363654174804688 +22816.0,22799.0,1.106447509765625 +22816.0,22800.0,0.819251953125 +22816.0,22801.0,1.0192165527343748 +22816.0,22802.0,0.6012099609375 +22816.0,22803.0,0.830410400390625 +22816.0,22804.0,0.733766845703125 +22816.0,22805.0,0.907504150390625 +22816.0,22806.0,0.734424560546875 +22816.0,22807.0,0.842433837890625 +22816.0,22808.0,0.58452978515625 +22816.0,22809.0,0.8197120361328125 +22816.0,22810.0,0.361594482421875 +22816.0,22811.0,0.59982861328125 +22816.0,22812.0,0.245197998046875 +22816.0,22813.0,0.438639404296875 +22816.0,22814.0,0.3759052734375 +22816.0,22815.0,0.414194091796875 +22816.0,22816.0,0.09478759765625 +22816.0,22817.0,0.2882242431640625 +22816.0,22818.0,0.2752340087890625 +22817.0,22676.0,4.99493424987793 +22817.0,22677.0,4.879374816894531 +22817.0,22685.0,4.7914407958984375 +22817.0,22686.0,4.968086791992188 +22817.0,22687.0,4.816223754882812 +22817.0,22688.0,4.819306518554687 +22817.0,22737.0,1.7112122802734375 +22817.0,22738.0,1.5355186767578124 +22817.0,22739.0,1.4781282958984374 +22817.0,22740.0,1.7425240478515625 +22817.0,22741.0,1.7255474853515624 +22817.0,22742.0,1.8577821044921876 +22817.0,22743.0,1.8043211669921877 +22817.0,22744.0,1.6417969970703126 +22817.0,22745.0,1.3963927001953125 +22817.0,22746.0,1.430760009765625 +22817.0,22747.0,1.5589037322998047 +22817.0,22748.0,1.4651719970703123 +22817.0,22749.0,2.052560424804688 +22817.0,22750.0,2.1114095458984377 +22817.0,22751.0,2.1046930541992186 +22817.0,22752.0,2.05575244140625 +22817.0,22753.0,1.9963626708984372 +22817.0,22754.0,1.8273644409179688 +22817.0,22755.0,2.044980834960937 +22817.0,22756.0,1.6579659423828126 +22817.0,22757.0,1.6071566162109374 +22817.0,22758.0,1.3693250732421876 +22817.0,22759.0,1.0596253662109374 +22817.0,22760.0,1.2094666748046874 +22817.0,22761.0,1.3390101318359375 +22817.0,22762.0,1.5618831787109375 +22817.0,22763.0,1.2606634521484374 +22817.0,22764.0,1.0511907958984374 +22817.0,22765.0,1.1303157958984376 +22817.0,22766.0,1.091327880859375 +22817.0,22767.0,1.0994990234375 +22817.0,22768.0,1.2337962646484375 +22817.0,22769.0,1.1737926025390626 +22817.0,22770.0,1.2197099609375 +22817.0,22771.0,1.3897584228515625 +22817.0,22772.0,1.3557076416015623 +22817.0,22773.0,1.3141429443359376 +22817.0,22774.0,1.554411346435547 +22817.0,22775.0,1.7144542236328124 +22817.0,22776.0,1.6370682373046874 +22817.0,22777.0,1.837389526367188 +22817.0,22778.0,1.5260765380859376 +22817.0,22779.0,1.4472825927734374 +22817.0,22780.0,1.54650341796875 +22817.0,22781.0,1.3910645751953126 +22817.0,22782.0,1.3345037841796874 +22817.0,22783.0,1.2615577392578126 +22817.0,22784.0,1.1584019775390626 +22817.0,22785.0,1.3093697509765625 +22817.0,22786.0,1.2717991943359377 +22817.0,22787.0,1.5349593505859376 +22817.0,22788.0,1.17178564453125 +22817.0,22789.0,1.3889786376953126 +22817.0,22790.0,1.4547261962890623 +22817.0,22791.0,1.6654732666015626 +22817.0,22792.0,1.2967943115234375 +22817.0,22793.0,1.22943798828125 +22817.0,22794.0,0.908473388671875 +22817.0,22795.0,1.2797928466796875 +22817.0,22796.0,1.2125784912109374 +22817.0,22797.0,0.9482728881835938 +22817.0,22798.0,1.0418020629882812 +22817.0,22799.0,1.2118841552734374 +22817.0,22800.0,0.9246885986328124 +22817.0,22801.0,1.1246531982421877 +22817.0,22802.0,0.7066466064453125 +22817.0,22803.0,0.9358470458984376 +22817.0,22804.0,0.8392034912109375 +22817.0,22805.0,1.0129407958984376 +22817.0,22806.0,0.8398612060546875 +22817.0,22807.0,0.9478704833984376 +22817.0,22808.0,0.6609664306640625 +22817.0,22809.0,0.925148681640625 +22817.0,22810.0,0.4750311279296875 +22817.0,22811.0,0.7052652587890625 +22817.0,22812.0,0.3586346435546875 +22817.0,22813.0,0.4280760498046875 +22817.0,22814.0,0.3653419189453125 +22817.0,22815.0,0.2316307373046875 +22817.0,22816.0,0.2882242431640625 +22817.0,22817.0,0.033660888671875 +22817.0,22818.0,0.198670654296875 +22818.0,22685.0,4.914450561523437 +22818.0,22687.0,4.939233520507813 +22818.0,22688.0,4.942316284179688 +22818.0,22737.0,1.5702220458984375 +22818.0,22738.0,1.3945284423828126 +22818.0,22739.0,1.3371380615234374 +22818.0,22740.0,1.6015338134765624 +22818.0,22741.0,1.5845572509765624 +22818.0,22742.0,1.7167918701171876 +22818.0,22743.0,1.6593309326171874 +22818.0,22744.0,1.5008067626953123 +22818.0,22745.0,1.2554024658203125 +22818.0,22746.0,1.289769775390625 +22818.0,22747.0,1.4179134979248047 +22818.0,22748.0,1.3241817626953123 +22818.0,22749.0,1.911570190429688 +22818.0,22750.0,1.9704193115234372 +22818.0,22751.0,1.9637028198242188 +22818.0,22752.0,1.91476220703125 +22818.0,22753.0,1.8553724365234372 +22818.0,22754.0,1.6863742065429688 +22818.0,22755.0,1.9039906005859373 +22818.0,22756.0,1.5169757080078126 +22818.0,22757.0,1.4621663818359374 +22818.0,22758.0,1.2243348388671875 +22818.0,22759.0,1.0176351318359376 +22818.0,22760.0,1.1674764404296876 +22818.0,22761.0,1.2970198974609377 +22818.0,22762.0,1.5198929443359377 +22818.0,22763.0,1.1156732177734374 +22818.0,22764.0,1.0092005615234374 +22818.0,22765.0,1.0883255615234375 +22818.0,22766.0,1.0493376464843749 +22818.0,22767.0,0.9545087890625 +22818.0,22768.0,1.0888060302734377 +22818.0,22769.0,1.0328023681640626 +22818.0,22770.0,1.0787197265625 +22818.0,22771.0,1.2487681884765625 +22818.0,22772.0,1.2147174072265623 +22818.0,22773.0,1.1731527099609376 +22818.0,22774.0,1.4134211120605469 +22818.0,22775.0,1.5734639892578124 +22818.0,22776.0,1.4960780029296874 +22818.0,22777.0,1.6963992919921875 +22818.0,22778.0,1.3850863037109375 +22818.0,22779.0,1.3062923583984376 +22818.0,22780.0,1.40551318359375 +22818.0,22781.0,1.2500743408203123 +22818.0,22782.0,1.1935135498046876 +22818.0,22783.0,1.1205675048828123 +22818.0,22784.0,1.0454117431640624 +22818.0,22785.0,1.1963795166015625 +22818.0,22786.0,1.1308089599609374 +22818.0,22787.0,1.3939691162109376 +22818.0,22788.0,1.03279541015625 +22818.0,22789.0,1.2759884033203126 +22818.0,22790.0,1.3417359619140623 +22818.0,22791.0,1.5934830322265623 +22818.0,22792.0,1.1838040771484375 +22818.0,22793.0,1.11644775390625 +22818.0,22794.0,0.795483154296875 +22818.0,22795.0,1.2668026123046876 +22818.0,22796.0,1.1995882568359375 +22818.0,22797.0,0.8352826538085938 +22818.0,22798.0,0.9008118286132812 +22818.0,22799.0,1.0708939208984374 +22818.0,22800.0,0.7836983642578125 +22818.0,22801.0,0.9836629638671875 +22818.0,22802.0,0.5656563720703125 +22818.0,22803.0,0.7948568115234375 +22818.0,22804.0,0.6982132568359375 +22818.0,22805.0,0.8719505615234375 +22818.0,22806.0,0.6988709716796875 +22818.0,22807.0,0.8068802490234375 +22818.0,22808.0,0.5159761962890625 +22818.0,22809.0,0.784158447265625 +22818.0,22810.0,0.4620408935546875 +22818.0,22811.0,0.5642750244140625 +22818.0,22812.0,0.3456444091796875 +22818.0,22813.0,0.2830858154296874 +22818.0,22814.0,0.2203516845703125 +22818.0,22815.0,0.1926405029296874 +22818.0,22816.0,0.2752340087890625 +22818.0,22817.0,0.198670654296875 +22818.0,22818.0,0.053680419921875 diff --git a/activitysim/examples/production_semcog/data/maz_to_maz_walk.csv b/activitysim/examples/production_semcog/data/maz_to_maz_walk.csv new file mode 100644 index 000000000..4260a067b --- /dev/null +++ b/activitysim/examples/production_semcog/data/maz_to_maz_walk.csv @@ -0,0 +1,4977 @@ +OMAZ,DMAZ,DISTWALK +22635.0,22650.0,0.27986181640625 +22635.0,22651.0,0.6542998046874999 +22635.0,22654.0,0.754158203125 +22635.0,22655.0,0.48163623046875 +22635.0,22657.0,0.53515380859375 +22636.0,22637.0,0.28096533203125 +22636.0,22638.0,0.73590283203125 +22637.0,22636.0,0.28096533203125 +22637.0,22638.0,0.8187255859375 +22638.0,22636.0,0.73590283203125 +22638.0,22637.0,0.8187255859375 +22638.0,22657.0,0.8847939453125 +22639.0,22640.0,0.4452741088867187 +22639.0,22641.0,0.6947223510742188 +22639.0,22642.0,0.5579545288085938 +22639.0,22643.0,0.6814432983398437 +22639.0,22644.0,0.5296261596679688 +22639.0,22645.0,0.5859328002929687 +22639.0,22646.0,0.4269802856445313 +22639.0,22647.0,0.2818927612304687 +22639.0,22648.0,0.1793219909667968 +22639.0,22654.0,0.9802296752929688 +22639.0,22668.0,0.9498361206054688 +22640.0,22639.0,0.4452741088867187 +22640.0,22641.0,0.780470703125 +22640.0,22642.0,0.643702880859375 +22640.0,22643.0,0.768191650390625 +22640.0,22644.0,0.61537451171875 +22640.0,22645.0,0.6726811523437499 +22640.0,22646.0,0.5127286376953125 +22640.0,22647.0,0.61964111328125 +22640.0,22648.0,0.5170703430175781 +22640.0,22654.0,0.95797802734375 +22641.0,22639.0,0.6947223510742188 +22641.0,22640.0,0.780470703125 +22641.0,22642.0,0.217151123046875 +22641.0,22643.0,0.362639892578125 +22641.0,22644.0,0.41482275390625 +22641.0,22645.0,0.47912939453125 +22641.0,22646.0,0.3121768798828125 +22641.0,22647.0,0.65608935546875 +22641.0,22648.0,0.5535185852050781 +22641.0,22668.0,0.98103271484375 +22642.0,22639.0,0.5579545288085938 +22642.0,22640.0,0.643702880859375 +22642.0,22641.0,0.217151123046875 +22642.0,22643.0,0.4878720703125 +22642.0,22644.0,0.278054931640625 +22642.0,22645.0,0.569361572265625 +22642.0,22646.0,0.1754090576171875 +22642.0,22647.0,0.519321533203125 +22642.0,22648.0,0.4167507629394531 +22642.0,22668.0,0.933264892578125 +22643.0,22639.0,0.6814432983398437 +22643.0,22640.0,0.768191650390625 +22643.0,22641.0,0.362639892578125 +22643.0,22642.0,0.4878720703125 +22643.0,22644.0,0.6065437011718751 +22643.0,22645.0,0.393850341796875 +22643.0,22646.0,0.5038978271484376 +22643.0,22647.0,0.611810302734375 +22643.0,22648.0,0.5092395324707031 +22643.0,22668.0,0.895753662109375 +22644.0,22639.0,0.5296261596679688 +22644.0,22640.0,0.61537451171875 +22644.0,22641.0,0.41482275390625 +22644.0,22642.0,0.278054931640625 +22644.0,22643.0,0.6065437011718751 +22644.0,22645.0,0.511033203125 +22644.0,22646.0,0.1170806884765625 +22644.0,22647.0,0.4609931640625 +22644.0,22648.0,0.3584223937988281 +22644.0,22668.0,0.8749365234375 +22645.0,22639.0,0.5859328002929687 +22645.0,22640.0,0.6726811523437499 +22645.0,22641.0,0.47912939453125 +22645.0,22642.0,0.569361572265625 +22645.0,22643.0,0.393850341796875 +22645.0,22644.0,0.511033203125 +22645.0,22646.0,0.4083873291015625 +22645.0,22647.0,0.5162998046875 +22645.0,22648.0,0.4137290344238281 +22645.0,22668.0,0.8002431640625 +22646.0,22639.0,0.4269802856445313 +22646.0,22640.0,0.5127286376953125 +22646.0,22641.0,0.3121768798828125 +22646.0,22642.0,0.1754090576171875 +22646.0,22643.0,0.5038978271484376 +22646.0,22644.0,0.1170806884765625 +22646.0,22645.0,0.4083873291015625 +22646.0,22647.0,0.3583472900390625 +22646.0,22648.0,0.2557765197753906 +22646.0,22668.0,0.7722906494140624 +22647.0,22639.0,0.2818927612304687 +22647.0,22640.0,0.61964111328125 +22647.0,22641.0,0.65608935546875 +22647.0,22642.0,0.519321533203125 +22647.0,22643.0,0.611810302734375 +22647.0,22644.0,0.4609931640625 +22647.0,22645.0,0.5162998046875 +22647.0,22646.0,0.3583472900390625 +22647.0,22648.0,0.1096889953613281 +22647.0,22668.0,0.880203125 +22648.0,22639.0,0.1793219909667968 +22648.0,22640.0,0.5170703430175781 +22648.0,22641.0,0.5535185852050781 +22648.0,22642.0,0.4167507629394531 +22648.0,22643.0,0.5092395324707031 +22648.0,22644.0,0.3584223937988281 +22648.0,22645.0,0.4137290344238281 +22648.0,22646.0,0.2557765197753906 +22648.0,22647.0,0.1096889953613281 +22648.0,22668.0,0.7776323547363281 +22649.0,22652.0,0.9213525390625 +22649.0,22656.0,0.5464215087890625 +22649.0,22672.0,0.875892578125 +22650.0,22635.0,0.27986181640625 +22650.0,22651.0,0.61677880859375 +22650.0,22654.0,0.65663720703125 +22650.0,22655.0,0.384115234375 +22650.0,22657.0,0.4976328125 +22651.0,22635.0,0.6542998046874999 +22651.0,22650.0,0.61677880859375 +22651.0,22655.0,0.81855322265625 +22651.0,22657.0,0.2420708007812499 +22652.0,22649.0,0.9213525390625 +22652.0,22653.0,0.81053076171875 +22652.0,22658.0,0.3645537109375 +22652.0,22659.0,0.965431640625 +22652.0,22660.0,0.982791015625 +22652.0,22661.0,0.73897998046875 +22652.0,22662.0,0.68207861328125 +22652.0,22663.0,0.85483447265625 +22652.0,22664.0,0.5490922851562501 +22652.0,22665.0,0.73298583984375 +22652.0,22666.0,0.59565283203125 +22652.0,22667.0,0.92118505859375 +22652.0,22670.0,0.8584189453125 +22652.0,22674.0,0.9908828125 +22653.0,22652.0,0.81053076171875 +22653.0,22658.0,0.84228076171875 +22653.0,22664.0,0.9868193359375 +22654.0,22635.0,0.754158203125 +22654.0,22639.0,0.9802296752929688 +22654.0,22640.0,0.95797802734375 +22654.0,22650.0,0.65663720703125 +22654.0,22655.0,0.60641162109375 +22654.0,22657.0,0.97192919921875 +22655.0,22635.0,0.48163623046875 +22655.0,22650.0,0.384115234375 +22655.0,22651.0,0.81855322265625 +22655.0,22654.0,0.60641162109375 +22655.0,22657.0,0.6994072265625 +22656.0,22649.0,0.5464215087890625 +22656.0,22672.0,0.7434127197265625 +22657.0,22635.0,0.53515380859375 +22657.0,22638.0,0.8847939453125 +22657.0,22650.0,0.4976328125 +22657.0,22651.0,0.2420708007812499 +22657.0,22654.0,0.97192919921875 +22657.0,22655.0,0.6994072265625 +22658.0,22652.0,0.3645537109375 +22658.0,22653.0,0.84228076171875 +22658.0,22659.0,0.775181640625 +22658.0,22660.0,0.792541015625 +22658.0,22661.0,0.77072998046875 +22658.0,22662.0,0.71382861328125 +22658.0,22663.0,0.88658447265625 +22658.0,22664.0,0.58084228515625 +22658.0,22665.0,0.76473583984375 +22658.0,22666.0,0.62740283203125 +22658.0,22667.0,0.64293505859375 +22658.0,22668.0,0.95322509765625 +22658.0,22669.0,0.798860595703125 +22658.0,22670.0,0.5801689453125001 +22659.0,22652.0,0.965431640625 +22659.0,22658.0,0.775181640625 +22659.0,22660.0,0.3794189453125 +22659.0,22661.0,0.5116079101562501 +22659.0,22662.0,0.57070654296875 +22659.0,22663.0,0.87646240234375 +22659.0,22664.0,0.68172021484375 +22659.0,22666.0,0.48428076171875 +22659.0,22667.0,0.46581298828125 +22659.0,22668.0,0.68210302734375 +22659.0,22669.0,0.741738525390625 +22659.0,22670.0,0.523046875 +22660.0,22652.0,0.982791015625 +22660.0,22658.0,0.792541015625 +22660.0,22659.0,0.3794189453125 +22660.0,22661.0,0.52896728515625 +22660.0,22662.0,0.58806591796875 +22660.0,22663.0,0.89382177734375 +22660.0,22664.0,0.6990795898437501 +22660.0,22666.0,0.50164013671875 +22660.0,22667.0,0.48317236328125 +22660.0,22668.0,0.69946240234375 +22660.0,22669.0,0.759097900390625 +22660.0,22670.0,0.54040625 +22661.0,22652.0,0.73897998046875 +22661.0,22658.0,0.77072998046875 +22661.0,22659.0,0.5116079101562501 +22661.0,22660.0,0.52896728515625 +22661.0,22662.0,0.3442548828125 +22661.0,22663.0,0.6500107421875 +22661.0,22664.0,0.4552685546875 +22661.0,22666.0,0.2578291015625 +22661.0,22667.0,0.605361328125 +22661.0,22668.0,0.6896513671875 +22661.0,22669.0,0.761286865234375 +22661.0,22670.0,0.5425952148437501 +22662.0,22652.0,0.68207861328125 +22662.0,22658.0,0.71382861328125 +22662.0,22659.0,0.57070654296875 +22662.0,22660.0,0.58806591796875 +22662.0,22661.0,0.3442548828125 +22662.0,22663.0,0.593109375 +22662.0,22664.0,0.3983671875 +22662.0,22666.0,0.200927734375 +22662.0,22667.0,0.6644599609374999 +22662.0,22668.0,0.74875 +22662.0,22669.0,0.820385498046875 +22662.0,22670.0,0.60169384765625 +22663.0,22652.0,0.85483447265625 +22663.0,22658.0,0.88658447265625 +22663.0,22659.0,0.87646240234375 +22663.0,22660.0,0.89382177734375 +22663.0,22661.0,0.6500107421875 +22663.0,22662.0,0.593109375 +22663.0,22664.0,0.5711230468749999 +22663.0,22666.0,0.50668359375 +22663.0,22667.0,0.9702158203125 +22663.0,22668.0,0.593505859375 +22663.0,22670.0,0.90744970703125 +22664.0,22652.0,0.5490922851562501 +22664.0,22653.0,0.9868193359375 +22664.0,22658.0,0.58084228515625 +22664.0,22659.0,0.68172021484375 +22664.0,22660.0,0.6990795898437501 +22664.0,22661.0,0.4552685546875 +22664.0,22662.0,0.3983671875 +22664.0,22663.0,0.5711230468749999 +22664.0,22665.0,0.9092744140625 +22664.0,22666.0,0.31194140625 +22664.0,22667.0,0.7754736328125 +22664.0,22668.0,0.859763671875 +22664.0,22669.0,0.931399169921875 +22664.0,22670.0,0.71270751953125 +22665.0,22652.0,0.73298583984375 +22665.0,22658.0,0.76473583984375 +22665.0,22664.0,0.9092744140625 +22665.0,22666.0,0.9558349609375 +22666.0,22652.0,0.59565283203125 +22666.0,22658.0,0.62740283203125 +22666.0,22659.0,0.48428076171875 +22666.0,22660.0,0.50164013671875 +22666.0,22661.0,0.2578291015625 +22666.0,22662.0,0.200927734375 +22666.0,22663.0,0.50668359375 +22666.0,22664.0,0.31194140625 +22666.0,22665.0,0.9558349609375 +22666.0,22667.0,0.5780341796874999 +22666.0,22668.0,0.66232421875 +22666.0,22669.0,0.733959716796875 +22666.0,22670.0,0.51526806640625 +22667.0,22652.0,0.92118505859375 +22667.0,22658.0,0.64293505859375 +22667.0,22659.0,0.46581298828125 +22667.0,22660.0,0.48317236328125 +22667.0,22661.0,0.605361328125 +22667.0,22662.0,0.6644599609374999 +22667.0,22663.0,0.9702158203125 +22667.0,22664.0,0.7754736328125 +22667.0,22666.0,0.5780341796874999 +22667.0,22668.0,0.7758564453125 +22667.0,22669.0,0.481491943359375 +22667.0,22670.0,0.26280029296875 +22668.0,22639.0,0.9498361206054688 +22668.0,22641.0,0.98103271484375 +22668.0,22642.0,0.933264892578125 +22668.0,22643.0,0.895753662109375 +22668.0,22644.0,0.8749365234375 +22668.0,22645.0,0.8002431640625 +22668.0,22646.0,0.7722906494140624 +22668.0,22647.0,0.880203125 +22668.0,22648.0,0.7776323547363281 +22668.0,22658.0,0.95322509765625 +22668.0,22659.0,0.68210302734375 +22668.0,22660.0,0.69946240234375 +22668.0,22661.0,0.6896513671875 +22668.0,22662.0,0.74875 +22668.0,22663.0,0.593505859375 +22668.0,22664.0,0.859763671875 +22668.0,22666.0,0.66232421875 +22668.0,22667.0,0.7758564453125 +22668.0,22669.0,0.931781982421875 +22668.0,22670.0,0.71309033203125 +22669.0,22658.0,0.798860595703125 +22669.0,22659.0,0.741738525390625 +22669.0,22660.0,0.759097900390625 +22669.0,22661.0,0.761286865234375 +22669.0,22662.0,0.820385498046875 +22669.0,22664.0,0.931399169921875 +22669.0,22666.0,0.733959716796875 +22669.0,22667.0,0.481491943359375 +22669.0,22668.0,0.931781982421875 +22669.0,22670.0,0.378725830078125 +22670.0,22652.0,0.8584189453125 +22670.0,22658.0,0.5801689453125001 +22670.0,22659.0,0.523046875 +22670.0,22660.0,0.54040625 +22670.0,22661.0,0.5425952148437501 +22670.0,22662.0,0.60169384765625 +22670.0,22663.0,0.90744970703125 +22670.0,22664.0,0.71270751953125 +22670.0,22666.0,0.51526806640625 +22670.0,22667.0,0.26280029296875 +22670.0,22668.0,0.71309033203125 +22670.0,22669.0,0.378725830078125 +22671.0,22673.0,0.631638671875 +22671.0,22674.0,0.66694873046875 +22672.0,22649.0,0.875892578125 +22672.0,22656.0,0.7434127197265625 +22673.0,22671.0,0.631638671875 +22673.0,22674.0,0.38265185546875 +22674.0,22652.0,0.9908828125 +22674.0,22671.0,0.66694873046875 +22674.0,22673.0,0.38265185546875 +22675.0,22676.0,0.2040448455810546 +22675.0,22677.0,0.2034854125976562 +22675.0,22678.0,0.2970465087890624 +22675.0,22679.0,0.5990477294921875 +22675.0,22680.0,0.6608687744140626 +22675.0,22681.0,0.2677969970703124 +22675.0,22682.0,0.8594193115234375 +22675.0,22683.0,0.7936307373046875 +22675.0,22684.0,0.6630098876953125 +22675.0,22689.0,0.4643304443359375 +22675.0,22690.0,0.9349683837890626 +22675.0,22691.0,0.9893770751953124 +22675.0,22692.0,0.9140902099609376 +22675.0,22693.0,0.7735557861328125 +22675.0,22704.0,0.842271240234375 +22675.0,22705.0,0.8292955322265625 +22675.0,22706.0,0.6862261962890625 +22675.0,22707.0,0.7063819580078124 +22675.0,22708.0,0.6823760986328125 +22675.0,22709.0,0.6685870361328125 +22675.0,22710.0,0.4350340576171875 +22676.0,22675.0,0.2040448455810546 +22676.0,22677.0,0.1346481781005859 +22676.0,22678.0,0.4532092742919922 +22676.0,22679.0,0.6312104949951172 +22676.0,22680.0,0.6370315399169922 +22676.0,22681.0,0.4239597625732422 +22676.0,22683.0,0.9497935028076172 +22676.0,22684.0,0.7731726531982421 +22676.0,22689.0,0.4404932098388672 +22676.0,22693.0,0.8767185516357422 +22676.0,22704.0,0.9984340057373048 +22676.0,22705.0,0.9854582977294922 +22676.0,22706.0,0.8423889617919922 +22676.0,22707.0,0.8095447235107421 +22676.0,22708.0,0.8175388641357422 +22676.0,22709.0,0.8247498016357422 +22676.0,22710.0,0.5381968231201172 +22677.0,22675.0,0.2034854125976562 +22677.0,22676.0,0.1346481781005859 +22677.0,22678.0,0.4526498413085937 +22677.0,22679.0,0.7546510620117187 +22677.0,22680.0,0.7664721069335938 +22677.0,22681.0,0.4194003295898437 +22677.0,22683.0,0.9492340698242188 +22677.0,22684.0,0.8186132202148437 +22677.0,22689.0,0.5699337768554688 +22677.0,22693.0,0.8711591186523437 +22677.0,22694.0,0.9132182006835936 +22677.0,22704.0,0.9948745727539062 +22677.0,22705.0,0.9818988647460938 +22677.0,22706.0,0.8388295288085937 +22677.0,22707.0,0.8039852905273438 +22677.0,22708.0,0.8119794311523437 +22677.0,22709.0,0.8211903686523437 +22677.0,22710.0,0.5326373901367187 +22678.0,22675.0,0.2970465087890624 +22678.0,22676.0,0.4532092742919922 +22678.0,22677.0,0.4526498413085937 +22678.0,22679.0,0.418212158203125 +22678.0,22680.0,0.480033203125 +22678.0,22681.0,0.40496142578125 +22678.0,22682.0,0.678583740234375 +22678.0,22683.0,0.612795166015625 +22678.0,22684.0,0.48217431640625 +22678.0,22689.0,0.283494873046875 +22678.0,22690.0,0.8531328125 +22678.0,22691.0,0.90754150390625 +22678.0,22692.0,0.832254638671875 +22678.0,22693.0,0.90772021484375 +22678.0,22704.0,0.7604356689453124 +22678.0,22705.0,0.7474599609375 +22678.0,22706.0,0.604390625 +22678.0,22707.0,0.71554638671875 +22678.0,22708.0,0.6005405273437501 +22678.0,22709.0,0.58675146484375 +22678.0,22710.0,0.465198486328125 +22678.0,22714.0,0.980640625 +22678.0,22716.0,0.85808837890625 +22678.0,22718.0,0.9637255859375 +22678.0,22719.0,0.86196435546875 +22679.0,22675.0,0.5990477294921875 +22679.0,22676.0,0.6312104949951172 +22679.0,22677.0,0.7546510620117187 +22679.0,22678.0,0.418212158203125 +22679.0,22680.0,0.344034423828125 +22679.0,22681.0,0.492962646484375 +22679.0,22682.0,0.6405849609375 +22679.0,22683.0,0.57479638671875 +22679.0,22684.0,0.222175537109375 +22679.0,22689.0,0.3014960937499999 +22679.0,22690.0,0.837134033203125 +22679.0,22691.0,0.931542724609375 +22679.0,22692.0,0.856255859375 +22679.0,22693.0,0.931721435546875 +22679.0,22704.0,0.7444368896484375 +22679.0,22705.0,0.731461181640625 +22679.0,22706.0,0.628391845703125 +22679.0,22707.0,0.739547607421875 +22679.0,22708.0,0.624541748046875 +22679.0,22709.0,0.610752685546875 +22679.0,22710.0,0.48919970703125 +22679.0,22714.0,0.942641845703125 +22679.0,22716.0,0.820089599609375 +22679.0,22717.0,0.980106689453125 +22679.0,22718.0,0.925726806640625 +22679.0,22719.0,0.823965576171875 +22680.0,22675.0,0.6608687744140626 +22680.0,22676.0,0.6370315399169922 +22680.0,22677.0,0.7664721069335938 +22680.0,22678.0,0.480033203125 +22680.0,22679.0,0.344034423828125 +22680.0,22681.0,0.67878369140625 +22680.0,22682.0,0.5404060058593749 +22680.0,22683.0,0.475617431640625 +22680.0,22684.0,0.28799658203125 +22680.0,22689.0,0.307317138671875 +22680.0,22690.0,0.902955078125 +22680.0,22704.0,0.8102579345703125 +22680.0,22705.0,0.7972822265625 +22680.0,22706.0,0.754212890625 +22680.0,22707.0,0.92536865234375 +22680.0,22708.0,0.81036279296875 +22680.0,22709.0,0.73657373046875 +22680.0,22710.0,0.675020751953125 +22680.0,22716.0,0.88591064453125 +22680.0,22718.0,0.9915478515625 +22680.0,22719.0,0.88978662109375 +22681.0,22675.0,0.2677969970703124 +22681.0,22676.0,0.4239597625732422 +22681.0,22677.0,0.4194003295898437 +22681.0,22678.0,0.40496142578125 +22681.0,22679.0,0.492962646484375 +22681.0,22680.0,0.67878369140625 +22681.0,22682.0,0.753334228515625 +22681.0,22683.0,0.687545654296875 +22681.0,22684.0,0.5569248046874999 +22681.0,22689.0,0.572245361328125 +22681.0,22690.0,0.74988330078125 +22681.0,22691.0,0.8042919921875 +22681.0,22692.0,0.729005126953125 +22681.0,22693.0,0.5854707031249999 +22681.0,22698.0,0.98783837890625 +22681.0,22700.0,0.9335390625 +22681.0,22704.0,0.6571861572265625 +22681.0,22705.0,0.64421044921875 +22681.0,22706.0,0.50114111328125 +22681.0,22707.0,0.518296875 +22681.0,22708.0,0.497291015625 +22681.0,22709.0,0.483501953125 +22681.0,22710.0,0.246948974609375 +22681.0,22714.0,0.97139111328125 +22681.0,22716.0,0.8488388671875 +22681.0,22718.0,0.95447607421875 +22681.0,22719.0,0.85271484375 +22682.0,22675.0,0.8594193115234375 +22682.0,22678.0,0.678583740234375 +22682.0,22679.0,0.6405849609375 +22682.0,22680.0,0.5404060058593749 +22682.0,22681.0,0.753334228515625 +22682.0,22683.0,0.16716796875 +22682.0,22684.0,0.5845471191406251 +22682.0,22689.0,0.69586767578125 +22682.0,22690.0,0.977505615234375 +22682.0,22704.0,0.8848084716796875 +22682.0,22705.0,0.871832763671875 +22682.0,22706.0,0.828763427734375 +22682.0,22707.0,0.999919189453125 +22682.0,22708.0,0.884913330078125 +22682.0,22709.0,0.811124267578125 +22682.0,22710.0,0.7495712890625 +22682.0,22716.0,0.960461181640625 +22682.0,22719.0,0.964337158203125 +22683.0,22675.0,0.7936307373046875 +22683.0,22676.0,0.9497935028076172 +22683.0,22677.0,0.9492340698242188 +22683.0,22678.0,0.612795166015625 +22683.0,22679.0,0.57479638671875 +22683.0,22680.0,0.475617431640625 +22683.0,22681.0,0.687545654296875 +22683.0,22682.0,0.16716796875 +22683.0,22684.0,0.518758544921875 +22683.0,22689.0,0.6310791015625 +22683.0,22690.0,0.911717041015625 +22683.0,22704.0,0.8190198974609375 +22683.0,22705.0,0.806044189453125 +22683.0,22706.0,0.762974853515625 +22683.0,22707.0,0.934130615234375 +22683.0,22708.0,0.819124755859375 +22683.0,22709.0,0.745335693359375 +22683.0,22710.0,0.68378271484375 +22683.0,22716.0,0.894672607421875 +22683.0,22719.0,0.898548583984375 +22684.0,22675.0,0.6630098876953125 +22684.0,22676.0,0.7731726531982421 +22684.0,22677.0,0.8186132202148437 +22684.0,22678.0,0.48217431640625 +22684.0,22679.0,0.222175537109375 +22684.0,22680.0,0.28799658203125 +22684.0,22681.0,0.5569248046874999 +22684.0,22682.0,0.5845471191406251 +22684.0,22683.0,0.518758544921875 +22684.0,22689.0,0.443458251953125 +22684.0,22690.0,0.78109619140625 +22684.0,22691.0,0.9955048828125 +22684.0,22692.0,0.920218017578125 +22684.0,22693.0,0.99568359375 +22684.0,22704.0,0.6883990478515625 +22684.0,22705.0,0.67542333984375 +22684.0,22706.0,0.6323540039062501 +22684.0,22707.0,0.803509765625 +22684.0,22708.0,0.68850390625 +22684.0,22709.0,0.6147148437500001 +22684.0,22710.0,0.553161865234375 +22684.0,22714.0,0.88660400390625 +22684.0,22715.0,0.99836962890625 +22684.0,22716.0,0.7640517578125 +22684.0,22717.0,0.92406884765625 +22684.0,22718.0,0.86968896484375 +22684.0,22719.0,0.767927734375 +22685.0,22686.0,0.98286669921875 +22685.0,22688.0,0.27908642578125 +22686.0,22685.0,0.98286669921875 +22686.0,22687.0,0.746649658203125 +22686.0,22688.0,0.908732421875 +22687.0,22686.0,0.746649658203125 +22688.0,22685.0,0.27908642578125 +22688.0,22686.0,0.908732421875 +22689.0,22675.0,0.4643304443359375 +22689.0,22676.0,0.4404932098388672 +22689.0,22677.0,0.5699337768554688 +22689.0,22678.0,0.283494873046875 +22689.0,22679.0,0.3014960937499999 +22689.0,22680.0,0.307317138671875 +22689.0,22681.0,0.572245361328125 +22689.0,22682.0,0.69586767578125 +22689.0,22683.0,0.6310791015625 +22689.0,22684.0,0.443458251953125 +22689.0,22692.0,0.99953857421875 +22689.0,22704.0,0.9277196044921876 +22689.0,22705.0,0.914743896484375 +22689.0,22706.0,0.771674560546875 +22689.0,22707.0,0.882830322265625 +22689.0,22708.0,0.767824462890625 +22689.0,22709.0,0.754035400390625 +22689.0,22710.0,0.632482421875 +22690.0,22675.0,0.9349683837890626 +22690.0,22678.0,0.8531328125 +22690.0,22679.0,0.837134033203125 +22690.0,22680.0,0.902955078125 +22690.0,22681.0,0.74988330078125 +22690.0,22682.0,0.977505615234375 +22690.0,22683.0,0.911717041015625 +22690.0,22684.0,0.78109619140625 +22690.0,22691.0,0.45446337890625 +22690.0,22692.0,0.379176513671875 +22690.0,22693.0,0.47964208984375 +22690.0,22695.0,0.9168638305664064 +22690.0,22696.0,0.903346435546875 +22690.0,22697.0,0.7142790832519531 +22690.0,22698.0,0.619009765625 +22690.0,22699.0,0.68193701171875 +22690.0,22700.0,0.81571044921875 +22690.0,22701.0,0.7869842529296875 +22690.0,22702.0,0.96842919921875 +22690.0,22703.0,0.7911708984375 +22690.0,22704.0,0.1133575439453125 +22690.0,22705.0,0.2323818359375 +22690.0,22706.0,0.4333125 +22690.0,22707.0,0.5374682617187501 +22690.0,22708.0,0.44246240234375 +22690.0,22709.0,0.41567333984375 +22690.0,22710.0,0.633120361328125 +22690.0,22714.0,0.4995625 +22690.0,22715.0,0.642328125 +22690.0,22716.0,0.66301025390625 +22690.0,22717.0,0.5680273437500001 +22690.0,22718.0,0.6426474609375 +22690.0,22719.0,0.68488623046875 +22690.0,22727.0,0.92158935546875 +22691.0,22675.0,0.9893770751953124 +22691.0,22678.0,0.90754150390625 +22691.0,22679.0,0.931542724609375 +22691.0,22681.0,0.8042919921875 +22691.0,22684.0,0.9955048828125 +22691.0,22690.0,0.45446337890625 +22691.0,22692.0,0.143585205078125 +22691.0,22693.0,0.48205078125 +22691.0,22695.0,0.7002725219726562 +22691.0,22696.0,0.686755126953125 +22691.0,22697.0,0.5616877746582032 +22691.0,22698.0,0.40241845703125 +22691.0,22699.0,0.465345703125 +22691.0,22700.0,0.5801191406249999 +22691.0,22701.0,0.5703929443359375 +22691.0,22702.0,0.751837890625 +22691.0,22703.0,0.84457958984375 +22691.0,22704.0,0.3617662353515625 +22691.0,22705.0,0.46979052734375 +22691.0,22706.0,0.61872119140625 +22691.0,22707.0,0.5398769531250001 +22691.0,22708.0,0.47387109375 +22691.0,22709.0,0.60108203125 +22691.0,22710.0,0.664529052734375 +22691.0,22714.0,0.5529711914062501 +22691.0,22715.0,0.79273681640625 +22691.0,22716.0,0.9004189453125 +22691.0,22717.0,0.81643603515625 +22691.0,22718.0,0.88005615234375 +22691.0,22719.0,0.922294921875 +22691.0,22727.0,0.974998046875 +22692.0,22675.0,0.9140902099609376 +22692.0,22678.0,0.832254638671875 +22692.0,22679.0,0.856255859375 +22692.0,22681.0,0.729005126953125 +22692.0,22684.0,0.920218017578125 +22692.0,22689.0,0.99953857421875 +22692.0,22690.0,0.379176513671875 +22692.0,22691.0,0.143585205078125 +22692.0,22693.0,0.406763916015625 +22692.0,22695.0,0.6249856567382812 +22692.0,22696.0,0.61146826171875 +22692.0,22697.0,0.4864009094238281 +22692.0,22698.0,0.327131591796875 +22692.0,22699.0,0.390058837890625 +22692.0,22700.0,0.5048322753906249 +22692.0,22701.0,0.4951060791015625 +22692.0,22702.0,0.676551025390625 +22692.0,22703.0,0.769292724609375 +22692.0,22704.0,0.2864793701171875 +22692.0,22705.0,0.394503662109375 +22692.0,22706.0,0.543434326171875 +22692.0,22707.0,0.464590087890625 +22692.0,22708.0,0.398584228515625 +22692.0,22709.0,0.525795166015625 +22692.0,22710.0,0.5892421875 +22692.0,22714.0,0.477684326171875 +22692.0,22715.0,0.717449951171875 +22692.0,22716.0,0.825132080078125 +22692.0,22717.0,0.741149169921875 +22692.0,22718.0,0.804769287109375 +22692.0,22719.0,0.847008056640625 +22692.0,22727.0,0.899711181640625 +22693.0,22675.0,0.7735557861328125 +22693.0,22676.0,0.8767185516357422 +22693.0,22677.0,0.8711591186523437 +22693.0,22678.0,0.90772021484375 +22693.0,22679.0,0.931721435546875 +22693.0,22681.0,0.5854707031249999 +22693.0,22684.0,0.99568359375 +22693.0,22690.0,0.47964208984375 +22693.0,22691.0,0.48205078125 +22693.0,22692.0,0.406763916015625 +22693.0,22695.0,0.9634512329101562 +22693.0,22696.0,0.949933837890625 +22693.0,22697.0,0.8248664855957031 +22693.0,22698.0,0.66559716796875 +22693.0,22699.0,0.7285244140625 +22693.0,22700.0,0.5832978515625 +22693.0,22701.0,0.8335716552734375 +22693.0,22704.0,0.3869449462890625 +22693.0,22705.0,0.49496923828125 +22693.0,22706.0,0.61889990234375 +22693.0,22707.0,0.4210556640625 +22693.0,22708.0,0.4740498046875 +22693.0,22709.0,0.6012607421875 +22693.0,22710.0,0.545707763671875 +22693.0,22714.0,0.77314990234375 +22693.0,22715.0,0.91591552734375 +22693.0,22716.0,0.92559765625 +22693.0,22717.0,0.84161474609375 +22693.0,22718.0,0.90523486328125 +22693.0,22719.0,0.9474736328125 +22694.0,22677.0,0.9132182006835936 +22695.0,22690.0,0.9168638305664064 +22695.0,22691.0,0.7002725219726562 +22695.0,22692.0,0.6249856567382812 +22695.0,22693.0,0.9634512329101562 +22695.0,22696.0,0.1301555786132812 +22695.0,22697.0,0.4050882263183594 +22695.0,22698.0,0.3618189086914062 +22695.0,22699.0,0.4247461547851562 +22695.0,22700.0,0.8395195922851563 +22695.0,22701.0,0.4137933959960937 +22695.0,22702.0,0.3422383422851562 +22695.0,22703.0,0.7139800415039063 +22695.0,22704.0,0.8241666870117188 +22695.0,22705.0,0.9351909790039062 +22695.0,22708.0,0.9552715454101562 +22695.0,22714.0,0.6643716430664063 +22695.0,22715.0,0.9951372680664062 +22695.0,22727.0,0.7573984985351563 +22696.0,22690.0,0.903346435546875 +22696.0,22691.0,0.686755126953125 +22696.0,22692.0,0.61146826171875 +22696.0,22693.0,0.949933837890625 +22696.0,22695.0,0.1301555786132812 +22696.0,22697.0,0.3915708312988281 +22696.0,22698.0,0.348301513671875 +22696.0,22699.0,0.411228759765625 +22696.0,22700.0,0.826002197265625 +22696.0,22701.0,0.4002760009765625 +22696.0,22702.0,0.328720947265625 +22696.0,22703.0,0.700462646484375 +22696.0,22704.0,0.8106492919921875 +22696.0,22705.0,0.921673583984375 +22696.0,22708.0,0.941754150390625 +22696.0,22714.0,0.650854248046875 +22696.0,22715.0,0.981619873046875 +22696.0,22727.0,0.743881103515625 +22697.0,22690.0,0.7142790832519531 +22697.0,22691.0,0.5616877746582032 +22697.0,22692.0,0.4864009094238281 +22697.0,22693.0,0.8248664855957031 +22697.0,22695.0,0.4050882263183594 +22697.0,22696.0,0.3915708312988281 +22697.0,22698.0,0.2232341613769531 +22697.0,22699.0,0.2861614074707031 +22697.0,22700.0,0.7009348449707031 +22697.0,22701.0,0.2752086486816406 +22697.0,22702.0,0.4566535949707031 +22697.0,22703.0,0.3933952941894531 +22697.0,22704.0,0.6215819396972656 +22697.0,22705.0,0.7326062316894532 +22697.0,22706.0,0.8695368957519531 +22697.0,22707.0,0.8826926574707031 +22697.0,22708.0,0.8166867980957031 +22697.0,22709.0,0.8518977355957031 +22697.0,22713.0,0.7808078918457031 +22697.0,22714.0,0.4617868957519531 +22697.0,22715.0,0.7425525207519531 +22697.0,22716.0,0.8962346496582031 +22697.0,22717.0,0.8002517395019532 +22697.0,22718.0,0.8758718566894531 +22697.0,22719.0,0.9421106262207032 +22697.0,22724.0,0.9070617980957032 +22697.0,22727.0,0.5238137512207031 +22697.0,22731.0,0.8277024230957031 +22697.0,22732.0,0.9083728332519532 +22698.0,22681.0,0.98783837890625 +22698.0,22690.0,0.619009765625 +22698.0,22691.0,0.40241845703125 +22698.0,22692.0,0.327131591796875 +22698.0,22693.0,0.66559716796875 +22698.0,22695.0,0.3618189086914062 +22698.0,22696.0,0.348301513671875 +22698.0,22697.0,0.2232341613769531 +22698.0,22699.0,0.12689208984375 +22698.0,22700.0,0.5416655273437501 +22698.0,22701.0,0.2319393310546875 +22698.0,22702.0,0.41338427734375 +22698.0,22703.0,0.5321259765624999 +22698.0,22704.0,0.5263126220703125 +22698.0,22705.0,0.6373369140625 +22698.0,22706.0,0.774267578125 +22698.0,22707.0,0.72342333984375 +22698.0,22708.0,0.65741748046875 +22698.0,22709.0,0.75662841796875 +22698.0,22710.0,0.848075439453125 +22698.0,22713.0,0.91953857421875 +22698.0,22714.0,0.3665175781249999 +22698.0,22715.0,0.697283203125 +22698.0,22716.0,0.85096533203125 +22698.0,22717.0,0.754982421875 +22698.0,22718.0,0.8306025390625 +22698.0,22719.0,0.89684130859375 +22698.0,22724.0,0.86179248046875 +22698.0,22727.0,0.66254443359375 +22698.0,22731.0,0.96643310546875 +22699.0,22690.0,0.68193701171875 +22699.0,22691.0,0.465345703125 +22699.0,22692.0,0.390058837890625 +22699.0,22693.0,0.7285244140625 +22699.0,22695.0,0.4247461547851562 +22699.0,22696.0,0.411228759765625 +22699.0,22697.0,0.2861614074707031 +22699.0,22698.0,0.12689208984375 +22699.0,22700.0,0.6045927734375001 +22699.0,22701.0,0.2948665771484375 +22699.0,22702.0,0.4763115234375 +22699.0,22703.0,0.5950532226562499 +22699.0,22704.0,0.5892398681640625 +22699.0,22705.0,0.70026416015625 +22699.0,22706.0,0.83719482421875 +22699.0,22707.0,0.7863505859375 +22699.0,22708.0,0.7203447265625 +22699.0,22709.0,0.8195556640625 +22699.0,22710.0,0.911002685546875 +22699.0,22713.0,0.9824658203125 +22699.0,22714.0,0.4294448242187499 +22699.0,22715.0,0.76021044921875 +22699.0,22716.0,0.913892578125 +22699.0,22717.0,0.81790966796875 +22699.0,22718.0,0.89352978515625 +22699.0,22719.0,0.9597685546875 +22699.0,22724.0,0.9247197265625 +22699.0,22727.0,0.7254716796875 +22700.0,22681.0,0.9335390625 +22700.0,22690.0,0.81571044921875 +22700.0,22691.0,0.5801191406249999 +22700.0,22692.0,0.5048322753906249 +22700.0,22693.0,0.5832978515625 +22700.0,22695.0,0.8395195922851563 +22700.0,22696.0,0.826002197265625 +22700.0,22697.0,0.7009348449707031 +22700.0,22698.0,0.5416655273437501 +22700.0,22699.0,0.6045927734375001 +22700.0,22701.0,0.7096400146484375 +22700.0,22702.0,0.8590849609375 +22700.0,22704.0,0.7230133056640625 +22700.0,22705.0,0.83103759765625 +22700.0,22706.0,0.96696826171875 +22700.0,22707.0,0.7691240234375 +22700.0,22708.0,0.8221181640625 +22700.0,22709.0,0.9493291015625 +22700.0,22710.0,0.893776123046875 +22700.0,22712.0,0.97625830078125 +22700.0,22714.0,0.82221826171875 +22701.0,22690.0,0.7869842529296875 +22701.0,22691.0,0.5703929443359375 +22701.0,22692.0,0.4951060791015625 +22701.0,22693.0,0.8335716552734375 +22701.0,22695.0,0.4137933959960937 +22701.0,22696.0,0.4002760009765625 +22701.0,22697.0,0.2752086486816406 +22701.0,22698.0,0.2319393310546875 +22701.0,22699.0,0.2948665771484375 +22701.0,22700.0,0.7096400146484375 +22701.0,22702.0,0.3513587646484375 +22701.0,22703.0,0.5841004638671875 +22701.0,22704.0,0.694287109375 +22701.0,22705.0,0.8053114013671875 +22701.0,22706.0,0.9422420654296876 +22701.0,22707.0,0.8913978271484375 +22701.0,22708.0,0.8253919677734375 +22701.0,22709.0,0.9246029052734376 +22701.0,22713.0,0.9715130615234376 +22701.0,22714.0,0.5344920654296875 +22701.0,22715.0,0.8652576904296875 +22701.0,22717.0,0.9229569091796876 +22701.0,22718.0,0.9985770263671876 +22701.0,22727.0,0.7145189208984375 +22702.0,22690.0,0.96842919921875 +22702.0,22691.0,0.751837890625 +22702.0,22692.0,0.676551025390625 +22702.0,22695.0,0.3422383422851562 +22702.0,22696.0,0.328720947265625 +22702.0,22697.0,0.4566535949707031 +22702.0,22698.0,0.41338427734375 +22702.0,22699.0,0.4763115234375 +22702.0,22700.0,0.8590849609375 +22702.0,22701.0,0.3513587646484375 +22702.0,22703.0,0.76554541015625 +22702.0,22704.0,0.8757320556640625 +22702.0,22705.0,0.98675634765625 +22702.0,22712.0,0.98597705078125 +22702.0,22713.0,0.9559580078125 +22702.0,22714.0,0.71593701171875 +22702.0,22727.0,0.6989638671875 +22703.0,22690.0,0.7911708984375 +22703.0,22691.0,0.84457958984375 +22703.0,22692.0,0.769292724609375 +22703.0,22695.0,0.7139800415039063 +22703.0,22696.0,0.700462646484375 +22703.0,22697.0,0.3933952941894531 +22703.0,22698.0,0.5321259765624999 +22703.0,22699.0,0.5950532226562499 +22703.0,22701.0,0.5841004638671875 +22703.0,22702.0,0.76554541015625 +22703.0,22704.0,0.6984737548828125 +22703.0,22705.0,0.809498046875 +22703.0,22706.0,0.9464287109375 +22703.0,22709.0,0.92878955078125 +22703.0,22711.0,0.9322861328125 +22703.0,22713.0,0.53169970703125 +22703.0,22714.0,0.5386787109375 +22703.0,22715.0,0.8194443359375 +22703.0,22716.0,0.97312646484375 +22703.0,22717.0,0.8771435546875 +22703.0,22718.0,0.952763671875 +22703.0,22724.0,0.98395361328125 +22703.0,22727.0,0.27470556640625 +22703.0,22729.0,0.985950439453125 +22703.0,22731.0,0.57859423828125 +22703.0,22732.0,0.6592646484375 +22704.0,22675.0,0.842271240234375 +22704.0,22676.0,0.9984340057373048 +22704.0,22677.0,0.9948745727539062 +22704.0,22678.0,0.7604356689453124 +22704.0,22679.0,0.7444368896484375 +22704.0,22680.0,0.8102579345703125 +22704.0,22681.0,0.6571861572265625 +22704.0,22682.0,0.8848084716796875 +22704.0,22683.0,0.8190198974609375 +22704.0,22684.0,0.6883990478515625 +22704.0,22689.0,0.9277196044921876 +22704.0,22690.0,0.1133575439453125 +22704.0,22691.0,0.3617662353515625 +22704.0,22692.0,0.2864793701171875 +22704.0,22693.0,0.3869449462890625 +22704.0,22695.0,0.8241666870117188 +22704.0,22696.0,0.8106492919921875 +22704.0,22697.0,0.6215819396972656 +22704.0,22698.0,0.5263126220703125 +22704.0,22699.0,0.5892398681640625 +22704.0,22700.0,0.7230133056640625 +22704.0,22701.0,0.694287109375 +22704.0,22702.0,0.8757320556640625 +22704.0,22703.0,0.6984737548828125 +22704.0,22705.0,0.1396846923828125 +22704.0,22706.0,0.3406153564453125 +22704.0,22707.0,0.4447711181640625 +22704.0,22708.0,0.3497652587890625 +22704.0,22709.0,0.3229761962890625 +22704.0,22710.0,0.5404232177734375 +22704.0,22714.0,0.4068653564453125 +22704.0,22715.0,0.5496309814453125 +22704.0,22716.0,0.5703131103515625 +22704.0,22717.0,0.4753302001953125 +22704.0,22718.0,0.5499503173828125 +22704.0,22719.0,0.5921890869140625 +22704.0,22724.0,0.9241402587890624 +22704.0,22727.0,0.8288922119140625 +22705.0,22675.0,0.8292955322265625 +22705.0,22676.0,0.9854582977294922 +22705.0,22677.0,0.9818988647460938 +22705.0,22678.0,0.7474599609375 +22705.0,22679.0,0.731461181640625 +22705.0,22680.0,0.7972822265625 +22705.0,22681.0,0.64421044921875 +22705.0,22682.0,0.871832763671875 +22705.0,22683.0,0.806044189453125 +22705.0,22684.0,0.67542333984375 +22705.0,22689.0,0.914743896484375 +22705.0,22690.0,0.2323818359375 +22705.0,22691.0,0.46979052734375 +22705.0,22692.0,0.394503662109375 +22705.0,22693.0,0.49496923828125 +22705.0,22695.0,0.9351909790039062 +22705.0,22696.0,0.921673583984375 +22705.0,22697.0,0.7326062316894532 +22705.0,22698.0,0.6373369140625 +22705.0,22699.0,0.70026416015625 +22705.0,22700.0,0.83103759765625 +22705.0,22701.0,0.8053114013671875 +22705.0,22702.0,0.98675634765625 +22705.0,22703.0,0.809498046875 +22705.0,22704.0,0.1396846923828125 +22705.0,22706.0,0.3276396484375 +22705.0,22707.0,0.45179541015625 +22705.0,22708.0,0.33678955078125 +22705.0,22709.0,0.31000048828125 +22705.0,22710.0,0.527447509765625 +22705.0,22714.0,0.5178896484375 +22705.0,22715.0,0.6606552734375 +22705.0,22716.0,0.5573374023437501 +22705.0,22717.0,0.5863544921875 +22705.0,22718.0,0.5369746093750001 +22705.0,22719.0,0.57921337890625 +22705.0,22727.0,0.93991650390625 +22706.0,22675.0,0.6862261962890625 +22706.0,22676.0,0.8423889617919922 +22706.0,22677.0,0.8388295288085937 +22706.0,22678.0,0.604390625 +22706.0,22679.0,0.628391845703125 +22706.0,22680.0,0.754212890625 +22706.0,22681.0,0.50114111328125 +22706.0,22682.0,0.828763427734375 +22706.0,22683.0,0.762974853515625 +22706.0,22684.0,0.6323540039062501 +22706.0,22689.0,0.771674560546875 +22706.0,22690.0,0.4333125 +22706.0,22691.0,0.61872119140625 +22706.0,22692.0,0.543434326171875 +22706.0,22693.0,0.61889990234375 +22706.0,22697.0,0.8695368957519531 +22706.0,22698.0,0.774267578125 +22706.0,22699.0,0.83719482421875 +22706.0,22700.0,0.96696826171875 +22706.0,22701.0,0.9422420654296876 +22706.0,22703.0,0.9464287109375 +22706.0,22704.0,0.3406153564453125 +22706.0,22705.0,0.3276396484375 +22706.0,22707.0,0.42672607421875 +22706.0,22708.0,0.31172021484375 +22706.0,22709.0,0.16693115234375 +22706.0,22710.0,0.461378173828125 +22706.0,22714.0,0.6548203125000001 +22706.0,22715.0,0.7665859375 +22706.0,22716.0,0.53226806640625 +22706.0,22717.0,0.69228515625 +22706.0,22718.0,0.6379052734374999 +22706.0,22719.0,0.5361440429687501 +22707.0,22675.0,0.7063819580078124 +22707.0,22676.0,0.8095447235107421 +22707.0,22677.0,0.8039852905273438 +22707.0,22678.0,0.71554638671875 +22707.0,22679.0,0.739547607421875 +22707.0,22680.0,0.92536865234375 +22707.0,22681.0,0.518296875 +22707.0,22682.0,0.999919189453125 +22707.0,22683.0,0.934130615234375 +22707.0,22684.0,0.803509765625 +22707.0,22689.0,0.882830322265625 +22707.0,22690.0,0.5374682617187501 +22707.0,22691.0,0.5398769531250001 +22707.0,22692.0,0.464590087890625 +22707.0,22693.0,0.4210556640625 +22707.0,22697.0,0.8826926574707031 +22707.0,22698.0,0.72342333984375 +22707.0,22699.0,0.7863505859375 +22707.0,22700.0,0.7691240234375 +22707.0,22701.0,0.8913978271484375 +22707.0,22704.0,0.4447711181640625 +22707.0,22705.0,0.45179541015625 +22707.0,22706.0,0.42672607421875 +22707.0,22708.0,0.2818759765625 +22707.0,22709.0,0.4090869140625 +22707.0,22710.0,0.353533935546875 +22707.0,22714.0,0.83097607421875 +22707.0,22715.0,0.97374169921875 +22707.0,22716.0,0.774423828125 +22707.0,22717.0,0.89944091796875 +22707.0,22718.0,0.86206103515625 +22707.0,22719.0,0.7782998046875 +22708.0,22675.0,0.6823760986328125 +22708.0,22676.0,0.8175388641357422 +22708.0,22677.0,0.8119794311523437 +22708.0,22678.0,0.6005405273437501 +22708.0,22679.0,0.624541748046875 +22708.0,22680.0,0.81036279296875 +22708.0,22681.0,0.497291015625 +22708.0,22682.0,0.884913330078125 +22708.0,22683.0,0.819124755859375 +22708.0,22684.0,0.68850390625 +22708.0,22689.0,0.767824462890625 +22708.0,22690.0,0.44246240234375 +22708.0,22691.0,0.47387109375 +22708.0,22692.0,0.398584228515625 +22708.0,22693.0,0.4740498046875 +22708.0,22695.0,0.9552715454101562 +22708.0,22696.0,0.941754150390625 +22708.0,22697.0,0.8166867980957031 +22708.0,22698.0,0.65741748046875 +22708.0,22699.0,0.7203447265625 +22708.0,22700.0,0.8221181640625 +22708.0,22701.0,0.8253919677734375 +22708.0,22704.0,0.3497652587890625 +22708.0,22705.0,0.33678955078125 +22708.0,22706.0,0.31172021484375 +22708.0,22707.0,0.2818759765625 +22708.0,22709.0,0.2940810546875 +22708.0,22710.0,0.357528076171875 +22708.0,22714.0,0.72797021484375 +22708.0,22715.0,0.87073583984375 +22708.0,22716.0,0.65941796875 +22708.0,22717.0,0.79643505859375 +22708.0,22718.0,0.74705517578125 +22708.0,22719.0,0.6632939453125 +22709.0,22675.0,0.6685870361328125 +22709.0,22676.0,0.8247498016357422 +22709.0,22677.0,0.8211903686523437 +22709.0,22678.0,0.58675146484375 +22709.0,22679.0,0.610752685546875 +22709.0,22680.0,0.73657373046875 +22709.0,22681.0,0.483501953125 +22709.0,22682.0,0.811124267578125 +22709.0,22683.0,0.745335693359375 +22709.0,22684.0,0.6147148437500001 +22709.0,22689.0,0.754035400390625 +22709.0,22690.0,0.41567333984375 +22709.0,22691.0,0.60108203125 +22709.0,22692.0,0.525795166015625 +22709.0,22693.0,0.6012607421875 +22709.0,22697.0,0.8518977355957031 +22709.0,22698.0,0.75662841796875 +22709.0,22699.0,0.8195556640625 +22709.0,22700.0,0.9493291015625 +22709.0,22701.0,0.9246029052734376 +22709.0,22703.0,0.92878955078125 +22709.0,22704.0,0.3229761962890625 +22709.0,22705.0,0.31000048828125 +22709.0,22706.0,0.16693115234375 +22709.0,22707.0,0.4090869140625 +22709.0,22708.0,0.2940810546875 +22709.0,22710.0,0.443739013671875 +22709.0,22714.0,0.6371811523437501 +22709.0,22715.0,0.74894677734375 +22709.0,22716.0,0.51462890625 +22709.0,22717.0,0.67464599609375 +22709.0,22718.0,0.6202661132812499 +22709.0,22719.0,0.5185048828125001 +22710.0,22675.0,0.4350340576171875 +22710.0,22676.0,0.5381968231201172 +22710.0,22677.0,0.5326373901367187 +22710.0,22678.0,0.465198486328125 +22710.0,22679.0,0.48919970703125 +22710.0,22680.0,0.675020751953125 +22710.0,22681.0,0.246948974609375 +22710.0,22682.0,0.7495712890625 +22710.0,22683.0,0.68378271484375 +22710.0,22684.0,0.553161865234375 +22710.0,22689.0,0.632482421875 +22710.0,22690.0,0.633120361328125 +22710.0,22691.0,0.664529052734375 +22710.0,22692.0,0.5892421875 +22710.0,22693.0,0.545707763671875 +22710.0,22698.0,0.848075439453125 +22710.0,22699.0,0.911002685546875 +22710.0,22700.0,0.893776123046875 +22710.0,22704.0,0.5404232177734375 +22710.0,22705.0,0.527447509765625 +22710.0,22706.0,0.461378173828125 +22710.0,22707.0,0.353533935546875 +22710.0,22708.0,0.357528076171875 +22710.0,22709.0,0.443739013671875 +22710.0,22714.0,0.918628173828125 +22710.0,22716.0,0.809075927734375 +22710.0,22717.0,0.969093017578125 +22710.0,22718.0,0.914713134765625 +22710.0,22719.0,0.812951904296875 +22711.0,22703.0,0.9322861328125 +22711.0,22713.0,0.77369873046875 +22711.0,22727.0,0.83470458984375 +22711.0,22731.0,0.98459326171875 +22711.0,22732.0,0.471263671875 +22712.0,22700.0,0.97625830078125 +22712.0,22702.0,0.98597705078125 +22713.0,22697.0,0.7808078918457031 +22713.0,22698.0,0.91953857421875 +22713.0,22699.0,0.9824658203125 +22713.0,22701.0,0.9715130615234376 +22713.0,22702.0,0.9559580078125 +22713.0,22703.0,0.53169970703125 +22713.0,22711.0,0.77369873046875 +22713.0,22714.0,0.92609130859375 +22713.0,22720.0,0.82531103515625 +22713.0,22721.0,0.8509169921875 +22713.0,22722.0,0.90411865234375 +22713.0,22723.0,0.9501982421875 +22713.0,22725.0,0.992283447265625 +22713.0,22727.0,0.4341181640625 +22713.0,22728.0,0.95561083984375 +22713.0,22729.0,0.733363037109375 +22713.0,22730.0,0.835083984375 +22713.0,22731.0,0.3260068359375 +22713.0,22732.0,0.50067724609375 +22714.0,22678.0,0.980640625 +22714.0,22679.0,0.942641845703125 +22714.0,22681.0,0.97139111328125 +22714.0,22684.0,0.88660400390625 +22714.0,22690.0,0.4995625 +22714.0,22691.0,0.5529711914062501 +22714.0,22692.0,0.477684326171875 +22714.0,22693.0,0.77314990234375 +22714.0,22695.0,0.6643716430664063 +22714.0,22696.0,0.650854248046875 +22714.0,22697.0,0.4617868957519531 +22714.0,22698.0,0.3665175781249999 +22714.0,22699.0,0.4294448242187499 +22714.0,22700.0,0.82221826171875 +22714.0,22701.0,0.5344920654296875 +22714.0,22702.0,0.71593701171875 +22714.0,22703.0,0.5386787109375 +22714.0,22704.0,0.4068653564453125 +22714.0,22705.0,0.5178896484375 +22714.0,22706.0,0.6548203125000001 +22714.0,22707.0,0.83097607421875 +22714.0,22708.0,0.72797021484375 +22714.0,22709.0,0.6371811523437501 +22714.0,22710.0,0.918628173828125 +22714.0,22713.0,0.92609130859375 +22714.0,22715.0,0.6148359375 +22714.0,22716.0,0.76151806640625 +22714.0,22717.0,0.66553515625 +22714.0,22718.0,0.7411552734375 +22714.0,22719.0,0.79039404296875 +22714.0,22724.0,0.77934521484375 +22714.0,22727.0,0.6690971679687501 +22714.0,22731.0,0.97298583984375 +22715.0,22684.0,0.99836962890625 +22715.0,22690.0,0.642328125 +22715.0,22691.0,0.79273681640625 +22715.0,22692.0,0.717449951171875 +22715.0,22693.0,0.91591552734375 +22715.0,22695.0,0.9951372680664062 +22715.0,22696.0,0.981619873046875 +22715.0,22697.0,0.7425525207519531 +22715.0,22698.0,0.697283203125 +22715.0,22699.0,0.76021044921875 +22715.0,22701.0,0.8652576904296875 +22715.0,22703.0,0.8194443359375 +22715.0,22704.0,0.5496309814453125 +22715.0,22705.0,0.6606552734375 +22715.0,22706.0,0.7665859375 +22715.0,22707.0,0.97374169921875 +22715.0,22708.0,0.87073583984375 +22715.0,22709.0,0.74894677734375 +22715.0,22714.0,0.6148359375 +22715.0,22716.0,0.42028369140625 +22715.0,22717.0,0.32430078125 +22715.0,22718.0,0.3999208984375 +22715.0,22719.0,0.4661596679687499 +22715.0,22724.0,0.64111083984375 +22715.0,22725.0,0.871028076171875 +22715.0,22726.0,0.99089013671875 +22715.0,22727.0,0.94986279296875 +22716.0,22678.0,0.85808837890625 +22716.0,22679.0,0.820089599609375 +22716.0,22680.0,0.88591064453125 +22716.0,22681.0,0.8488388671875 +22716.0,22682.0,0.960461181640625 +22716.0,22683.0,0.894672607421875 +22716.0,22684.0,0.7640517578125 +22716.0,22690.0,0.66301025390625 +22716.0,22691.0,0.9004189453125 +22716.0,22692.0,0.825132080078125 +22716.0,22693.0,0.92559765625 +22716.0,22697.0,0.8962346496582031 +22716.0,22698.0,0.85096533203125 +22716.0,22699.0,0.913892578125 +22716.0,22703.0,0.97312646484375 +22716.0,22704.0,0.5703131103515625 +22716.0,22705.0,0.5573374023437501 +22716.0,22706.0,0.53226806640625 +22716.0,22707.0,0.774423828125 +22716.0,22708.0,0.65941796875 +22716.0,22709.0,0.51462890625 +22716.0,22710.0,0.809075927734375 +22716.0,22714.0,0.76151806640625 +22716.0,22715.0,0.42028369140625 +22716.0,22717.0,0.34598291015625 +22716.0,22718.0,0.29160302734375 +22716.0,22719.0,0.231841796875 +22716.0,22724.0,0.79479296875 +22717.0,22679.0,0.980106689453125 +22717.0,22684.0,0.92406884765625 +22717.0,22690.0,0.5680273437500001 +22717.0,22691.0,0.81643603515625 +22717.0,22692.0,0.741149169921875 +22717.0,22693.0,0.84161474609375 +22717.0,22697.0,0.8002517395019532 +22717.0,22698.0,0.754982421875 +22717.0,22699.0,0.81790966796875 +22717.0,22701.0,0.9229569091796876 +22717.0,22703.0,0.8771435546875 +22717.0,22704.0,0.4753302001953125 +22717.0,22705.0,0.5863544921875 +22717.0,22706.0,0.69228515625 +22717.0,22707.0,0.89944091796875 +22717.0,22708.0,0.79643505859375 +22717.0,22709.0,0.67464599609375 +22717.0,22710.0,0.969093017578125 +22717.0,22714.0,0.66553515625 +22717.0,22715.0,0.32430078125 +22717.0,22716.0,0.34598291015625 +22717.0,22718.0,0.3256201171875 +22717.0,22719.0,0.39185888671875 +22717.0,22724.0,0.69881005859375 +22717.0,22725.0,0.928727294921875 +22718.0,22678.0,0.9637255859375 +22718.0,22679.0,0.925726806640625 +22718.0,22680.0,0.9915478515625 +22718.0,22681.0,0.95447607421875 +22718.0,22684.0,0.86968896484375 +22718.0,22690.0,0.6426474609375 +22718.0,22691.0,0.88005615234375 +22718.0,22692.0,0.804769287109375 +22718.0,22693.0,0.90523486328125 +22718.0,22697.0,0.8758718566894531 +22718.0,22698.0,0.8306025390625 +22718.0,22699.0,0.89352978515625 +22718.0,22701.0,0.9985770263671876 +22718.0,22703.0,0.952763671875 +22718.0,22704.0,0.5499503173828125 +22718.0,22705.0,0.5369746093750001 +22718.0,22706.0,0.6379052734374999 +22718.0,22707.0,0.86206103515625 +22718.0,22708.0,0.74705517578125 +22718.0,22709.0,0.6202661132812499 +22718.0,22710.0,0.914713134765625 +22718.0,22714.0,0.7411552734375 +22718.0,22715.0,0.3999208984375 +22718.0,22716.0,0.29160302734375 +22718.0,22717.0,0.3256201171875 +22718.0,22719.0,0.33747900390625 +22718.0,22724.0,0.77443017578125 +22719.0,22678.0,0.86196435546875 +22719.0,22679.0,0.823965576171875 +22719.0,22680.0,0.88978662109375 +22719.0,22681.0,0.85271484375 +22719.0,22682.0,0.964337158203125 +22719.0,22683.0,0.898548583984375 +22719.0,22684.0,0.767927734375 +22719.0,22690.0,0.68488623046875 +22719.0,22691.0,0.922294921875 +22719.0,22692.0,0.847008056640625 +22719.0,22693.0,0.9474736328125 +22719.0,22697.0,0.9421106262207032 +22719.0,22698.0,0.89684130859375 +22719.0,22699.0,0.9597685546875 +22719.0,22704.0,0.5921890869140625 +22719.0,22705.0,0.57921337890625 +22719.0,22706.0,0.5361440429687501 +22719.0,22707.0,0.7782998046875 +22719.0,22708.0,0.6632939453125 +22719.0,22709.0,0.5185048828125001 +22719.0,22710.0,0.812951904296875 +22719.0,22714.0,0.79039404296875 +22719.0,22715.0,0.4661596679687499 +22719.0,22716.0,0.231841796875 +22719.0,22717.0,0.39185888671875 +22719.0,22718.0,0.33747900390625 +22719.0,22724.0,0.8406689453125 +22720.0,22713.0,0.82531103515625 +22720.0,22721.0,0.6471157226562501 +22720.0,22722.0,0.7003173828125 +22720.0,22723.0,0.74639697265625 +22720.0,22725.0,0.788482177734375 +22720.0,22726.0,0.89834423828125 +22720.0,22727.0,0.98031689453125 +22720.0,22728.0,0.7518095703125 +22720.0,22729.0,0.529561767578125 +22720.0,22730.0,0.63128271484375 +22720.0,22731.0,0.74820556640625 +22721.0,22713.0,0.8509169921875 +22721.0,22720.0,0.6471157226562501 +22721.0,22722.0,0.26792333984375 +22721.0,22723.0,0.3140029296875 +22721.0,22725.0,0.356088134765625 +22721.0,22726.0,0.4659501953125 +22721.0,22728.0,0.56441552734375 +22721.0,22729.0,0.209167724609375 +22721.0,22730.0,0.389888671875 +22721.0,22731.0,0.7738115234375 +22722.0,22713.0,0.90411865234375 +22722.0,22720.0,0.7003173828125 +22722.0,22721.0,0.26792333984375 +22722.0,22723.0,0.24920458984375 +22722.0,22725.0,0.395289794921875 +22722.0,22726.0,0.40115185546875 +22722.0,22728.0,0.4996171875 +22722.0,22729.0,0.262369384765625 +22722.0,22730.0,0.32509033203125 +22722.0,22731.0,0.82701318359375 +22723.0,22713.0,0.9501982421875 +22723.0,22720.0,0.74639697265625 +22723.0,22721.0,0.3140029296875 +22723.0,22722.0,0.24920458984375 +22723.0,22725.0,0.439369384765625 +22723.0,22726.0,0.3432314453125 +22723.0,22728.0,0.54569677734375 +22723.0,22729.0,0.308448974609375 +22723.0,22730.0,0.371169921875 +22723.0,22731.0,0.8730927734375 +22724.0,22697.0,0.9070617980957032 +22724.0,22698.0,0.86179248046875 +22724.0,22699.0,0.9247197265625 +22724.0,22703.0,0.98395361328125 +22724.0,22704.0,0.9241402587890624 +22724.0,22714.0,0.77934521484375 +22724.0,22715.0,0.64111083984375 +22724.0,22716.0,0.79479296875 +22724.0,22717.0,0.69881005859375 +22724.0,22718.0,0.77443017578125 +22724.0,22719.0,0.8406689453125 +22724.0,22725.0,0.767537353515625 +22724.0,22726.0,0.8873994140625 +22724.0,22729.0,0.914616943359375 +22725.0,22713.0,0.992283447265625 +22725.0,22715.0,0.871028076171875 +22725.0,22717.0,0.928727294921875 +22725.0,22720.0,0.788482177734375 +22725.0,22721.0,0.356088134765625 +22725.0,22722.0,0.395289794921875 +22725.0,22723.0,0.439369384765625 +22725.0,22724.0,0.767537353515625 +22725.0,22726.0,0.229316650390625 +22725.0,22728.0,0.691781982421875 +22725.0,22729.0,0.3505341796875 +22725.0,22730.0,0.5172551269531249 +22725.0,22731.0,0.915177978515625 +22726.0,22715.0,0.99089013671875 +22726.0,22720.0,0.89834423828125 +22726.0,22721.0,0.4659501953125 +22726.0,22722.0,0.40115185546875 +22726.0,22723.0,0.3432314453125 +22726.0,22724.0,0.8873994140625 +22726.0,22725.0,0.229316650390625 +22726.0,22728.0,0.69764404296875 +22726.0,22729.0,0.460396240234375 +22726.0,22730.0,0.5231171875 +22727.0,22690.0,0.92158935546875 +22727.0,22691.0,0.974998046875 +22727.0,22692.0,0.899711181640625 +22727.0,22695.0,0.7573984985351563 +22727.0,22696.0,0.743881103515625 +22727.0,22697.0,0.5238137512207031 +22727.0,22698.0,0.66254443359375 +22727.0,22699.0,0.7254716796875 +22727.0,22701.0,0.7145189208984375 +22727.0,22702.0,0.6989638671875 +22727.0,22703.0,0.27470556640625 +22727.0,22704.0,0.8288922119140625 +22727.0,22705.0,0.93991650390625 +22727.0,22711.0,0.83470458984375 +22727.0,22713.0,0.4341181640625 +22727.0,22714.0,0.6690971679687501 +22727.0,22715.0,0.94986279296875 +22727.0,22720.0,0.98031689453125 +22727.0,22729.0,0.888368896484375 +22727.0,22730.0,0.99008984375 +22727.0,22731.0,0.4810126953125 +22727.0,22732.0,0.56168310546875 +22728.0,22713.0,0.95561083984375 +22728.0,22720.0,0.7518095703125 +22728.0,22721.0,0.56441552734375 +22728.0,22722.0,0.4996171875 +22728.0,22723.0,0.54569677734375 +22728.0,22725.0,0.691781982421875 +22728.0,22726.0,0.69764404296875 +22728.0,22729.0,0.551861572265625 +22728.0,22730.0,0.28158251953125 +22728.0,22731.0,0.87850537109375 +22729.0,22703.0,0.985950439453125 +22729.0,22713.0,0.733363037109375 +22729.0,22720.0,0.529561767578125 +22729.0,22721.0,0.209167724609375 +22729.0,22722.0,0.262369384765625 +22729.0,22723.0,0.308448974609375 +22729.0,22724.0,0.914616943359375 +22729.0,22725.0,0.3505341796875 +22729.0,22726.0,0.460396240234375 +22729.0,22727.0,0.888368896484375 +22729.0,22728.0,0.551861572265625 +22729.0,22730.0,0.384334716796875 +22729.0,22731.0,0.656257568359375 +22730.0,22713.0,0.835083984375 +22730.0,22720.0,0.63128271484375 +22730.0,22721.0,0.389888671875 +22730.0,22722.0,0.32509033203125 +22730.0,22723.0,0.371169921875 +22730.0,22725.0,0.5172551269531249 +22730.0,22726.0,0.5231171875 +22730.0,22727.0,0.99008984375 +22730.0,22728.0,0.28158251953125 +22730.0,22729.0,0.384334716796875 +22730.0,22731.0,0.757978515625 +22731.0,22697.0,0.8277024230957031 +22731.0,22698.0,0.96643310546875 +22731.0,22703.0,0.57859423828125 +22731.0,22711.0,0.98459326171875 +22731.0,22713.0,0.3260068359375 +22731.0,22714.0,0.97298583984375 +22731.0,22720.0,0.74820556640625 +22731.0,22721.0,0.7738115234375 +22731.0,22722.0,0.82701318359375 +22731.0,22723.0,0.8730927734375 +22731.0,22725.0,0.915177978515625 +22731.0,22727.0,0.4810126953125 +22731.0,22728.0,0.87850537109375 +22731.0,22729.0,0.656257568359375 +22731.0,22730.0,0.757978515625 +22731.0,22732.0,0.71157177734375 +22732.0,22697.0,0.9083728332519532 +22732.0,22703.0,0.6592646484375 +22732.0,22711.0,0.471263671875 +22732.0,22713.0,0.50067724609375 +22732.0,22727.0,0.56168310546875 +22732.0,22731.0,0.71157177734375 +22733.0,22735.0,0.2990078124999999 +22735.0,22733.0,0.2990078124999999 +22737.0,22738.0,0.229070068359375 +22737.0,22739.0,0.4586796875 +22737.0,22740.0,0.235075439453125 +22737.0,22741.0,0.293098876953125 +22737.0,22742.0,0.22933349609375 +22737.0,22743.0,0.47687255859375 +22737.0,22744.0,0.431348388671875 +22737.0,22745.0,0.432944091796875 +22737.0,22746.0,0.3683114013671875 +22737.0,22747.0,0.2764551239013672 +22737.0,22748.0,0.308723388671875 +22737.0,22749.0,0.5181118164062499 +22737.0,22750.0,0.5749609375 +22737.0,22751.0,0.6072444458007813 +22737.0,22752.0,0.4733038330078125 +22737.0,22753.0,0.4139140625 +22737.0,22754.0,0.3729158325195312 +22737.0,22755.0,0.6385322265625 +22737.0,22756.0,0.375517333984375 +22737.0,22757.0,0.5627080078125 +22737.0,22758.0,0.57587646484375 +22737.0,22759.0,0.9391767578125 +22737.0,22760.0,0.83901806640625 +22737.0,22761.0,0.6705615234375 +22737.0,22762.0,0.9714345703125 +22737.0,22763.0,0.70321484375 +22737.0,22765.0,0.8838671875 +22737.0,22767.0,0.8170504150390625 +22737.0,22768.0,0.80234765625 +22737.0,22769.0,0.750343994140625 +22737.0,22770.0,0.5392613525390625 +22737.0,22771.0,0.363309814453125 +22737.0,22772.0,0.556259033203125 +22737.0,22773.0,0.5376943359374999 +22737.0,22774.0,0.6519627380371094 +22737.0,22775.0,0.688005615234375 +22737.0,22776.0,0.81561962890625 +22737.0,22777.0,0.91694091796875 +22737.0,22778.0,0.4986279296875 +22737.0,22779.0,0.895833984375 +22737.0,22780.0,0.9800548095703124 +22737.0,22781.0,0.854615966796875 +22737.0,22782.0,0.80905517578125 +22737.0,22783.0,0.744109130859375 +22737.0,22798.0,0.9183534545898436 +22737.0,22799.0,0.694435546875 +22737.0,22801.0,0.73020458984375 +22737.0,22803.0,0.9733984375 +22737.0,22805.0,0.8774921875 +22738.0,22737.0,0.229070068359375 +22738.0,22739.0,0.351986083984375 +22738.0,22740.0,0.2603818359375 +22738.0,22741.0,0.2134052734375 +22738.0,22742.0,0.375639892578125 +22738.0,22743.0,0.397178955078125 +22738.0,22744.0,0.32465478515625 +22738.0,22745.0,0.23125048828125 +22738.0,22746.0,0.1666177978515625 +22738.0,22747.0,0.3247615203857422 +22738.0,22748.0,0.22902978515625 +22738.0,22749.0,0.664418212890625 +22738.0,22750.0,0.721267333984375 +22738.0,22751.0,0.7465508422851562 +22738.0,22752.0,0.5886102294921876 +22738.0,22753.0,0.560220458984375 +22738.0,22754.0,0.4692222290039062 +22738.0,22755.0,0.686838623046875 +22738.0,22756.0,0.42382373046875 +22738.0,22757.0,0.456014404296875 +22738.0,22758.0,0.469182861328125 +22738.0,22759.0,0.750483154296875 +22738.0,22760.0,0.650324462890625 +22738.0,22761.0,0.563867919921875 +22738.0,22762.0,0.864740966796875 +22738.0,22763.0,0.5145212402343751 +22738.0,22764.0,0.868048583984375 +22738.0,22765.0,0.695173583984375 +22738.0,22767.0,0.6153568115234375 +22738.0,22768.0,0.613654052734375 +22738.0,22769.0,0.548650390625 +22738.0,22770.0,0.3375677490234375 +22738.0,22771.0,0.4076162109375 +22738.0,22772.0,0.6005654296875 +22738.0,22773.0,0.458000732421875 +22738.0,22774.0,0.6992691345214844 +22738.0,22775.0,0.73531201171875 +22738.0,22776.0,0.859926025390625 +22738.0,22777.0,0.964247314453125 +22738.0,22778.0,0.545934326171875 +22738.0,22779.0,0.940140380859375 +22738.0,22781.0,0.89892236328125 +22738.0,22782.0,0.853361572265625 +22738.0,22783.0,0.78741552734375 +22738.0,22798.0,0.8656598510742187 +22738.0,22799.0,0.737741943359375 +22738.0,22800.0,0.83754638671875 +22738.0,22801.0,0.650510986328125 +22738.0,22802.0,0.91450439453125 +22738.0,22803.0,0.797704833984375 +22738.0,22804.0,0.907061279296875 +22738.0,22805.0,0.675798583984375 +22738.0,22806.0,0.833718994140625 +22738.0,22807.0,0.821728271484375 +22738.0,22809.0,0.8790064697265625 +22739.0,22737.0,0.4586796875 +22739.0,22738.0,0.351986083984375 +22739.0,22740.0,0.489991455078125 +22739.0,22741.0,0.425014892578125 +22739.0,22742.0,0.60524951171875 +22739.0,22743.0,0.44878857421875 +22739.0,22744.0,0.274264404296875 +22739.0,22745.0,0.309860107421875 +22739.0,22746.0,0.3622274169921875 +22739.0,22747.0,0.5213711395263672 +22739.0,22748.0,0.425639404296875 +22739.0,22749.0,0.89402783203125 +22739.0,22750.0,0.950876953125 +22739.0,22751.0,0.9551604614257811 +22739.0,22752.0,0.7902198486328125 +22739.0,22753.0,0.789830078125 +22739.0,22754.0,0.6778318481445312 +22739.0,22755.0,0.8954482421875 +22739.0,22756.0,0.620433349609375 +22739.0,22757.0,0.3856240234375 +22739.0,22758.0,0.23779248046875 +22739.0,22759.0,0.6010927734375 +22739.0,22760.0,0.50093408203125 +22739.0,22761.0,0.3914775390625 +22739.0,22762.0,0.7943505859375 +22739.0,22763.0,0.365130859375 +22739.0,22764.0,0.718658203125 +22739.0,22765.0,0.5457832031250001 +22739.0,22766.0,0.9697952880859376 +22739.0,22767.0,0.4809664306640625 +22739.0,22768.0,0.464263671875 +22739.0,22769.0,0.414260009765625 +22739.0,22770.0,0.5331773681640626 +22739.0,22771.0,0.604225830078125 +22739.0,22772.0,0.797175048828125 +22739.0,22773.0,0.6546103515625 +22739.0,22774.0,0.8958787536621093 +22739.0,22775.0,0.931921630859375 +22739.0,22778.0,0.7425439453125 +22739.0,22783.0,0.984025146484375 +22739.0,22799.0,0.9343515625 +22739.0,22800.0,0.934156005859375 +22739.0,22801.0,0.84712060546875 +22739.0,22802.0,0.857114013671875 +22739.0,22803.0,0.894314453125 +22739.0,22804.0,0.8496708984375 +22739.0,22805.0,0.750408203125 +22739.0,22806.0,0.77632861328125 +22739.0,22807.0,0.687337890625 +22739.0,22808.0,0.973433837890625 +22739.0,22809.0,0.7446160888671876 +22740.0,22737.0,0.235075439453125 +22740.0,22738.0,0.2603818359375 +22740.0,22739.0,0.489991455078125 +22740.0,22741.0,0.32441064453125 +22740.0,22742.0,0.181645263671875 +22740.0,22743.0,0.423184326171875 +22740.0,22744.0,0.46266015625 +22740.0,22745.0,0.464255859375 +22740.0,22746.0,0.3996231689453125 +22740.0,22747.0,0.4287668914794922 +22740.0,22748.0,0.34003515625 +22740.0,22749.0,0.470423583984375 +22740.0,22750.0,0.527272705078125 +22740.0,22751.0,0.5595562133789063 +22740.0,22752.0,0.4026156005859375 +22740.0,22753.0,0.366225830078125 +22740.0,22754.0,0.3252276000976563 +22740.0,22755.0,0.614843994140625 +22740.0,22756.0,0.5278291015625001 +22740.0,22757.0,0.594019775390625 +22740.0,22758.0,0.607188232421875 +22740.0,22759.0,0.970488525390625 +22740.0,22760.0,0.870329833984375 +22740.0,22761.0,0.701873291015625 +22740.0,22762.0,0.994746337890625 +22740.0,22763.0,0.734526611328125 +22740.0,22765.0,0.915178955078125 +22740.0,22767.0,0.8483621826171875 +22740.0,22768.0,0.833659423828125 +22740.0,22769.0,0.78165576171875 +22740.0,22770.0,0.5705731201171875 +22740.0,22771.0,0.51562158203125 +22740.0,22772.0,0.70857080078125 +22740.0,22773.0,0.569006103515625 +22740.0,22774.0,0.8042745056152344 +22740.0,22775.0,0.8403173828125 +22740.0,22776.0,0.967931396484375 +22740.0,22778.0,0.650939697265625 +22740.0,22782.0,0.961366943359375 +22740.0,22783.0,0.8964208984375 +22740.0,22799.0,0.846747314453125 +22740.0,22801.0,0.761516357421875 +22740.0,22805.0,0.908803955078125 +22741.0,22737.0,0.293098876953125 +22741.0,22738.0,0.2134052734375 +22741.0,22739.0,0.425014892578125 +22741.0,22740.0,0.32441064453125 +22741.0,22742.0,0.439668701171875 +22741.0,22743.0,0.337207763671875 +22741.0,22744.0,0.34668359375 +22741.0,22745.0,0.403279296875 +22741.0,22746.0,0.3566466064453125 +22741.0,22747.0,0.4867903289794922 +22741.0,22748.0,0.39505859375 +22741.0,22749.0,0.728447021484375 +22741.0,22750.0,0.785296142578125 +22741.0,22751.0,0.8175796508789063 +22741.0,22752.0,0.6006390380859375 +22741.0,22753.0,0.624249267578125 +22741.0,22754.0,0.5832510375976563 +22741.0,22755.0,0.848867431640625 +22741.0,22756.0,0.5858525390625 +22741.0,22757.0,0.442043212890625 +22741.0,22758.0,0.542211669921875 +22741.0,22759.0,0.905511962890625 +22741.0,22760.0,0.805353271484375 +22741.0,22761.0,0.636896728515625 +22741.0,22762.0,0.850769775390625 +22741.0,22763.0,0.669550048828125 +22741.0,22765.0,0.850202392578125 +22741.0,22767.0,0.7873856201171875 +22741.0,22768.0,0.768682861328125 +22741.0,22769.0,0.72067919921875 +22741.0,22770.0,0.5275965576171875 +22741.0,22771.0,0.57364501953125 +22741.0,22772.0,0.76659423828125 +22741.0,22773.0,0.624029541015625 +22741.0,22774.0,0.8622979431152343 +22741.0,22775.0,0.8983408203125 +22741.0,22778.0,0.708963134765625 +22741.0,22783.0,0.9534443359375 +22741.0,22799.0,0.903770751953125 +22741.0,22801.0,0.816539794921875 +22741.0,22803.0,0.987733642578125 +22741.0,22805.0,0.847827392578125 +22741.0,22807.0,0.993757080078125 +22742.0,22737.0,0.22933349609375 +22742.0,22738.0,0.375639892578125 +22742.0,22739.0,0.60524951171875 +22742.0,22740.0,0.181645263671875 +22742.0,22741.0,0.439668701171875 +22742.0,22743.0,0.5454423828125 +22742.0,22744.0,0.5779182128906251 +22742.0,22745.0,0.5795139160156251 +22742.0,22746.0,0.5148812255859375 +22742.0,22747.0,0.4230249481201172 +22742.0,22748.0,0.455293212890625 +22742.0,22749.0,0.464681640625 +22742.0,22750.0,0.52153076171875 +22742.0,22751.0,0.5538142700195312 +22742.0,22752.0,0.4198736572265625 +22742.0,22753.0,0.36048388671875 +22742.0,22754.0,0.3194856567382812 +22742.0,22755.0,0.60910205078125 +22742.0,22756.0,0.522087158203125 +22742.0,22757.0,0.70927783203125 +22742.0,22758.0,0.7224462890625 +22742.0,22760.0,0.985587890625 +22742.0,22761.0,0.81713134765625 +22742.0,22763.0,0.84978466796875 +22742.0,22767.0,0.9636202392578124 +22742.0,22768.0,0.94891748046875 +22742.0,22769.0,0.896913818359375 +22742.0,22770.0,0.6858311767578125 +22742.0,22771.0,0.509879638671875 +22742.0,22772.0,0.702828857421875 +22742.0,22773.0,0.68426416015625 +22742.0,22774.0,0.7985325622558593 +22742.0,22775.0,0.834575439453125 +22742.0,22776.0,0.962189453125 +22742.0,22778.0,0.64519775390625 +22742.0,22782.0,0.955625 +22742.0,22783.0,0.890678955078125 +22742.0,22799.0,0.84100537109375 +22742.0,22801.0,0.8767744140625 +22743.0,22737.0,0.47687255859375 +22743.0,22738.0,0.397178955078125 +22743.0,22739.0,0.44878857421875 +22743.0,22740.0,0.423184326171875 +22743.0,22741.0,0.337207763671875 +22743.0,22742.0,0.5454423828125 +22743.0,22744.0,0.280457275390625 +22743.0,22745.0,0.509052978515625 +22743.0,22746.0,0.5254202880859375 +22743.0,22747.0,0.6705640106201172 +22743.0,22748.0,0.578832275390625 +22743.0,22749.0,0.834220703125 +22743.0,22750.0,0.75006982421875 +22743.0,22751.0,0.7823533325195312 +22743.0,22752.0,0.4724127197265625 +22743.0,22753.0,0.58902294921875 +22743.0,22754.0,0.6890247192382812 +22743.0,22755.0,0.97864111328125 +22743.0,22756.0,0.769626220703125 +22743.0,22757.0,0.37581689453125 +22743.0,22758.0,0.5239853515624999 +22743.0,22759.0,0.88528564453125 +22743.0,22760.0,0.785126953125 +22743.0,22761.0,0.59467041015625 +22743.0,22762.0,0.70254345703125 +22743.0,22763.0,0.65132373046875 +22743.0,22765.0,0.82997607421875 +22743.0,22767.0,0.8191593017578125 +22743.0,22768.0,0.75045654296875 +22743.0,22769.0,0.752452880859375 +22743.0,22770.0,0.6963702392578125 +22743.0,22771.0,0.757418701171875 +22743.0,22772.0,0.950367919921875 +22743.0,22773.0,0.80780322265625 +22743.0,22778.0,0.89273681640625 +22743.0,22805.0,0.95360107421875 +22744.0,22737.0,0.431348388671875 +22744.0,22738.0,0.32465478515625 +22744.0,22739.0,0.274264404296875 +22744.0,22740.0,0.46266015625 +22744.0,22741.0,0.34668359375 +22744.0,22742.0,0.5779182128906251 +22744.0,22743.0,0.280457275390625 +22744.0,22745.0,0.38752880859375 +22744.0,22746.0,0.4038961181640625 +22744.0,22747.0,0.5630398406982422 +22744.0,22748.0,0.46730810546875 +22744.0,22749.0,0.866696533203125 +22744.0,22750.0,0.899545654296875 +22744.0,22751.0,0.9318291625976562 +22744.0,22752.0,0.6218885498046876 +22744.0,22753.0,0.738498779296875 +22744.0,22754.0,0.7195005493164063 +22744.0,22755.0,0.937116943359375 +22744.0,22756.0,0.66210205078125 +22744.0,22757.0,0.225292724609375 +22744.0,22758.0,0.391461181640625 +22744.0,22759.0,0.754761474609375 +22744.0,22760.0,0.654602783203125 +22744.0,22761.0,0.486146240234375 +22744.0,22762.0,0.634019287109375 +22744.0,22763.0,0.5187995605468749 +22744.0,22764.0,0.872326904296875 +22744.0,22765.0,0.699451904296875 +22744.0,22767.0,0.6446351318359375 +22744.0,22768.0,0.617932373046875 +22744.0,22769.0,0.5779287109375 +22744.0,22770.0,0.5748460693359375 +22744.0,22771.0,0.64589453125 +22744.0,22772.0,0.83884375 +22744.0,22773.0,0.696279052734375 +22744.0,22774.0,0.9375474548339844 +22744.0,22775.0,0.97359033203125 +22744.0,22778.0,0.784212646484375 +22744.0,22799.0,0.976020263671875 +22744.0,22801.0,0.888789306640625 +22744.0,22803.0,0.980983154296875 +22744.0,22805.0,0.832076904296875 +22744.0,22806.0,0.939997314453125 +22744.0,22807.0,0.851006591796875 +22744.0,22809.0,0.9082847900390624 +22745.0,22737.0,0.432944091796875 +22745.0,22738.0,0.23125048828125 +22745.0,22739.0,0.309860107421875 +22745.0,22740.0,0.464255859375 +22745.0,22741.0,0.403279296875 +22745.0,22742.0,0.5795139160156251 +22745.0,22743.0,0.509052978515625 +22745.0,22744.0,0.38752880859375 +22745.0,22746.0,0.1264918212890625 +22745.0,22747.0,0.2856355438232422 +22745.0,22748.0,0.18990380859375 +22745.0,22749.0,0.776292236328125 +22745.0,22750.0,0.835141357421875 +22745.0,22751.0,0.8284248657226563 +22745.0,22752.0,0.7794842529296875 +22745.0,22753.0,0.720094482421875 +22745.0,22754.0,0.5510962524414063 +22745.0,22755.0,0.768712646484375 +22745.0,22756.0,0.38469775390625 +22745.0,22757.0,0.518888427734375 +22745.0,22758.0,0.437056884765625 +22745.0,22759.0,0.587357177734375 +22745.0,22760.0,0.490198486328125 +22745.0,22761.0,0.590741943359375 +22745.0,22762.0,0.927614990234375 +22745.0,22763.0,0.354395263671875 +22745.0,22764.0,0.703922607421875 +22745.0,22765.0,0.532047607421875 +22745.0,22766.0,0.9570596923828124 +22745.0,22767.0,0.4492308349609375 +22745.0,22768.0,0.448528076171875 +22745.0,22769.0,0.3825244140625 +22745.0,22770.0,0.2954417724609375 +22745.0,22771.0,0.368490234375 +22745.0,22772.0,0.561439453125 +22745.0,22773.0,0.416874755859375 +22745.0,22774.0,0.6601431579589844 +22745.0,22775.0,0.69618603515625 +22745.0,22776.0,0.820800048828125 +22745.0,22777.0,0.925121337890625 +22745.0,22778.0,0.5068083496093749 +22745.0,22779.0,0.901014404296875 +22745.0,22780.0,0.9852352294921874 +22745.0,22781.0,0.85979638671875 +22745.0,22782.0,0.814235595703125 +22745.0,22783.0,0.74628955078125 +22745.0,22794.0,0.9242052001953124 +22745.0,22798.0,0.8215338745117188 +22745.0,22799.0,0.696615966796875 +22745.0,22800.0,0.69842041015625 +22745.0,22801.0,0.609385009765625 +22745.0,22802.0,0.77537841796875 +22745.0,22803.0,0.658578857421875 +22745.0,22804.0,0.767935302734375 +22745.0,22805.0,0.5096726074218749 +22745.0,22806.0,0.694593017578125 +22745.0,22807.0,0.655602294921875 +22745.0,22808.0,0.9406982421875 +22745.0,22809.0,0.7128804931640625 +22745.0,22811.0,0.8799970703125 +22746.0,22737.0,0.3683114013671875 +22746.0,22738.0,0.1666177978515625 +22746.0,22739.0,0.3622274169921875 +22746.0,22740.0,0.3996231689453125 +22746.0,22741.0,0.3566466064453125 +22746.0,22742.0,0.5148812255859375 +22746.0,22743.0,0.5254202880859375 +22746.0,22744.0,0.4038961181640625 +22746.0,22745.0,0.1264918212890625 +22746.0,22747.0,0.2210028533935547 +22746.0,22748.0,0.1252711181640625 +22746.0,22749.0,0.7116595458984375 +22746.0,22750.0,0.7705086669921875 +22746.0,22751.0,0.7637921752929687 +22746.0,22752.0,0.7148515625 +22746.0,22753.0,0.6554617919921875 +22746.0,22754.0,0.4864635620117187 +22746.0,22755.0,0.7040799560546875 +22746.0,22756.0,0.3200650634765625 +22746.0,22757.0,0.5352557373046876 +22746.0,22758.0,0.4894241943359375 +22746.0,22759.0,0.6487244873046875 +22746.0,22760.0,0.5515657958984375 +22746.0,22761.0,0.6431092529296875 +22746.0,22762.0,0.9439822998046876 +22746.0,22763.0,0.4157625732421875 +22746.0,22764.0,0.7652899169921875 +22746.0,22765.0,0.5934149169921875 +22746.0,22767.0,0.51059814453125 +22746.0,22768.0,0.5098953857421875 +22746.0,22769.0,0.4438917236328125 +22746.0,22770.0,0.23280908203125 +22746.0,22771.0,0.3038575439453125 +22746.0,22772.0,0.4968067626953125 +22746.0,22773.0,0.3542420654296875 +22746.0,22774.0,0.5955104675292969 +22746.0,22775.0,0.6315533447265625 +22746.0,22776.0,0.7561673583984375 +22746.0,22777.0,0.8604886474609375 +22746.0,22778.0,0.4421756591796875 +22746.0,22779.0,0.8363817138671875 +22746.0,22780.0,0.9206025390625 +22746.0,22781.0,0.7951636962890625 +22746.0,22782.0,0.7496029052734375 +22746.0,22783.0,0.6836568603515625 +22746.0,22786.0,0.9918983154296876 +22746.0,22788.0,0.986884765625 +22746.0,22794.0,0.958572509765625 +22746.0,22798.0,0.7619011840820312 +22746.0,22799.0,0.6339832763671875 +22746.0,22800.0,0.7327877197265625 +22746.0,22801.0,0.5467523193359375 +22746.0,22802.0,0.8097457275390625 +22746.0,22803.0,0.6929461669921875 +22746.0,22804.0,0.8023026123046875 +22746.0,22805.0,0.5710399169921875 +22746.0,22806.0,0.7289603271484375 +22746.0,22807.0,0.7169696044921875 +22746.0,22808.0,0.9750655517578124 +22746.0,22809.0,0.774247802734375 +22746.0,22811.0,0.9143643798828124 +22747.0,22737.0,0.2764551239013672 +22747.0,22738.0,0.3247615203857422 +22747.0,22739.0,0.5213711395263672 +22747.0,22740.0,0.4287668914794922 +22747.0,22741.0,0.4867903289794922 +22747.0,22742.0,0.4230249481201172 +22747.0,22743.0,0.6705640106201172 +22747.0,22744.0,0.5630398406982422 +22747.0,22745.0,0.2856355438232422 +22747.0,22746.0,0.2210028533935547 +22747.0,22748.0,0.1584148406982422 +22747.0,22749.0,0.4978032684326172 +22747.0,22750.0,0.5566523895263672 +22747.0,22751.0,0.5499358978271485 +22747.0,22752.0,0.5009952850341797 +22747.0,22753.0,0.4416055145263672 +22747.0,22754.0,0.2726072845458984 +22747.0,22755.0,0.4902236785888672 +22747.0,22756.0,0.1032087860107421 +22747.0,22757.0,0.6943994598388672 +22747.0,22758.0,0.6485679168701172 +22747.0,22759.0,0.8068682098388672 +22747.0,22760.0,0.7107095184326172 +22747.0,22761.0,0.8022529754638672 +22747.0,22763.0,0.5749062957763672 +22747.0,22764.0,0.9234336395263671 +22747.0,22765.0,0.7515586395263671 +22747.0,22767.0,0.6667418670654297 +22747.0,22768.0,0.6680391082763671 +22747.0,22769.0,0.6000354461669922 +22747.0,22770.0,0.3879528045654297 +22747.0,22771.0,0.2090012664794922 +22747.0,22772.0,0.2899504852294922 +22747.0,22773.0,0.3853857879638672 +22747.0,22774.0,0.3796541900634765 +22747.0,22775.0,0.4156970672607422 +22747.0,22776.0,0.5493110809326172 +22747.0,22777.0,0.6446323699951172 +22747.0,22778.0,0.2263193817138671 +22747.0,22779.0,0.6295254364013672 +22747.0,22780.0,0.7137462615966796 +22747.0,22781.0,0.5883074188232422 +22747.0,22782.0,0.5427466278076172 +22747.0,22783.0,0.4818005828857422 +22747.0,22786.0,0.8100420379638672 +22747.0,22787.0,0.9572021942138672 +22747.0,22788.0,0.8280284881591797 +22747.0,22798.0,0.7560449066162109 +22747.0,22799.0,0.5381269989013672 +22747.0,22800.0,0.8609314422607421 +22747.0,22801.0,0.5768960418701172 +22747.0,22802.0,0.9378894500732422 +22747.0,22803.0,0.8210898895263672 +22747.0,22804.0,0.9304463348388672 +22747.0,22805.0,0.7271836395263672 +22747.0,22806.0,0.8571040496826172 +22747.0,22807.0,0.8731133270263672 +22747.0,22809.0,0.9303915252685548 +22748.0,22737.0,0.308723388671875 +22748.0,22738.0,0.22902978515625 +22748.0,22739.0,0.425639404296875 +22748.0,22740.0,0.34003515625 +22748.0,22741.0,0.39505859375 +22748.0,22742.0,0.455293212890625 +22748.0,22743.0,0.578832275390625 +22748.0,22744.0,0.46730810546875 +22748.0,22745.0,0.18990380859375 +22748.0,22746.0,0.1252711181640625 +22748.0,22747.0,0.1584148406982422 +22748.0,22749.0,0.652071533203125 +22748.0,22750.0,0.710920654296875 +22748.0,22751.0,0.7042041625976563 +22748.0,22752.0,0.6552635498046875 +22748.0,22753.0,0.595873779296875 +22748.0,22754.0,0.4268755493164062 +22748.0,22755.0,0.644491943359375 +22748.0,22756.0,0.25747705078125 +22748.0,22757.0,0.598667724609375 +22748.0,22758.0,0.552836181640625 +22748.0,22759.0,0.712136474609375 +22748.0,22760.0,0.614977783203125 +22748.0,22761.0,0.706521240234375 +22748.0,22763.0,0.479174560546875 +22748.0,22764.0,0.828701904296875 +22748.0,22765.0,0.656826904296875 +22748.0,22767.0,0.5730101318359375 +22748.0,22768.0,0.573307373046875 +22748.0,22769.0,0.5063037109374999 +22748.0,22770.0,0.2942210693359375 +22748.0,22771.0,0.24126953125 +22748.0,22772.0,0.43421875 +22748.0,22773.0,0.291654052734375 +22748.0,22774.0,0.5329224548339844 +22748.0,22775.0,0.56896533203125 +22748.0,22776.0,0.693579345703125 +22748.0,22777.0,0.797900634765625 +22748.0,22778.0,0.379587646484375 +22748.0,22779.0,0.773793701171875 +22748.0,22780.0,0.8580145263671874 +22748.0,22781.0,0.73257568359375 +22748.0,22782.0,0.687014892578125 +22748.0,22783.0,0.62106884765625 +22748.0,22786.0,0.929310302734375 +22748.0,22788.0,0.9242967529296876 +22748.0,22794.0,0.9839844970703124 +22748.0,22798.0,0.6993131713867188 +22748.0,22799.0,0.571395263671875 +22748.0,22800.0,0.76719970703125 +22748.0,22801.0,0.484164306640625 +22748.0,22802.0,0.84415771484375 +22748.0,22803.0,0.727358154296875 +22748.0,22804.0,0.836714599609375 +22748.0,22805.0,0.633451904296875 +22748.0,22806.0,0.763372314453125 +22748.0,22807.0,0.779381591796875 +22748.0,22809.0,0.8366597900390625 +22748.0,22811.0,0.9487763671875 +22749.0,22737.0,0.5181118164062499 +22749.0,22738.0,0.664418212890625 +22749.0,22739.0,0.89402783203125 +22749.0,22740.0,0.470423583984375 +22749.0,22741.0,0.728447021484375 +22749.0,22742.0,0.464681640625 +22749.0,22743.0,0.834220703125 +22749.0,22744.0,0.866696533203125 +22749.0,22745.0,0.776292236328125 +22749.0,22746.0,0.7116595458984375 +22749.0,22747.0,0.4978032684326172 +22749.0,22748.0,0.652071533203125 +22749.0,22750.0,0.18030908203125 +22749.0,22751.0,0.2105925903320312 +22749.0,22752.0,0.4006519775390625 +22749.0,22753.0,0.34126220703125 +22749.0,22754.0,0.2992639770507812 +22749.0,22755.0,0.26588037109375 +22749.0,22756.0,0.596865478515625 +22749.0,22757.0,0.99805615234375 +22749.0,22770.0,0.8816094970703126 +22749.0,22771.0,0.702657958984375 +22749.0,22772.0,0.783607177734375 +22749.0,22773.0,0.87904248046875 +22749.0,22774.0,0.6773108825683594 +22749.0,22775.0,0.713353759765625 +22749.0,22776.0,0.8909677734375 +22749.0,22777.0,0.7922890625 +22749.0,22778.0,0.70797607421875 +22749.0,22779.0,0.97118212890625 +22749.0,22781.0,0.929964111328125 +22749.0,22782.0,0.9994033203125 +22749.0,22783.0,0.975457275390625 +22750.0,22737.0,0.5749609375 +22750.0,22738.0,0.721267333984375 +22750.0,22739.0,0.950876953125 +22750.0,22740.0,0.527272705078125 +22750.0,22741.0,0.785296142578125 +22750.0,22742.0,0.52153076171875 +22750.0,22743.0,0.75006982421875 +22750.0,22744.0,0.899545654296875 +22750.0,22745.0,0.835141357421875 +22750.0,22746.0,0.7705086669921875 +22750.0,22747.0,0.5566523895263672 +22750.0,22748.0,0.710920654296875 +22750.0,22749.0,0.18030908203125 +22750.0,22751.0,0.1194417114257812 +22750.0,22752.0,0.3115010986328125 +22750.0,22753.0,0.252111328125 +22750.0,22754.0,0.3581130981445312 +22750.0,22755.0,0.3247294921875 +22750.0,22756.0,0.655714599609375 +22750.0,22757.0,0.9949052734375 +22750.0,22770.0,0.9404586181640624 +22750.0,22771.0,0.761507080078125 +22750.0,22772.0,0.842456298828125 +22750.0,22773.0,0.9378916015625 +22750.0,22774.0,0.7361600036621094 +22750.0,22775.0,0.772202880859375 +22750.0,22776.0,0.94981689453125 +22750.0,22777.0,0.81813818359375 +22750.0,22778.0,0.7668251953125 +22750.0,22781.0,0.988813232421875 +22751.0,22737.0,0.6072444458007813 +22751.0,22738.0,0.7465508422851562 +22751.0,22739.0,0.9551604614257811 +22751.0,22740.0,0.5595562133789063 +22751.0,22741.0,0.8175796508789063 +22751.0,22742.0,0.5538142700195312 +22751.0,22743.0,0.7823533325195312 +22751.0,22744.0,0.9318291625976562 +22751.0,22745.0,0.8284248657226563 +22751.0,22746.0,0.7637921752929687 +22751.0,22747.0,0.5499358978271485 +22751.0,22748.0,0.7042041625976563 +22751.0,22749.0,0.2105925903320312 +22751.0,22750.0,0.1194417114257812 +22751.0,22752.0,0.3437846069335937 +22751.0,22753.0,0.2843948364257812 +22751.0,22754.0,0.3883966064453125 +22751.0,22755.0,0.3180130004882812 +22751.0,22756.0,0.6489981079101562 +22751.0,22770.0,0.9337421264648438 +22751.0,22771.0,0.7547905883789062 +22751.0,22772.0,0.8357398071289063 +22751.0,22773.0,0.9311751098632812 +22751.0,22774.0,0.7294435119628906 +22751.0,22775.0,0.7654863891601562 +22751.0,22776.0,0.9431004028320312 +22751.0,22777.0,0.7264216918945312 +22751.0,22778.0,0.7601087036132812 +22751.0,22781.0,0.9820967407226564 +22752.0,22737.0,0.4733038330078125 +22752.0,22738.0,0.5886102294921876 +22752.0,22739.0,0.7902198486328125 +22752.0,22740.0,0.4026156005859375 +22752.0,22741.0,0.6006390380859375 +22752.0,22742.0,0.4198736572265625 +22752.0,22743.0,0.4724127197265625 +22752.0,22744.0,0.6218885498046876 +22752.0,22745.0,0.7794842529296875 +22752.0,22746.0,0.7148515625 +22752.0,22747.0,0.5009952850341797 +22752.0,22748.0,0.6552635498046875 +22752.0,22749.0,0.4006519775390625 +22752.0,22750.0,0.3115010986328125 +22752.0,22751.0,0.3437846069335937 +22752.0,22753.0,0.1504542236328125 +22752.0,22754.0,0.2574559936523437 +22752.0,22755.0,0.5450723876953125 +22752.0,22756.0,0.6000574951171875 +22752.0,22757.0,0.7172481689453125 +22752.0,22758.0,0.8654166259765625 +22752.0,22761.0,0.9361016845703124 +22752.0,22763.0,0.9927550048828124 +22752.0,22770.0,0.884801513671875 +22752.0,22771.0,0.7058499755859375 +22752.0,22772.0,0.7867991943359375 +22752.0,22773.0,0.8822344970703125 +22752.0,22774.0,0.7365028991699218 +22752.0,22775.0,0.7725457763671875 +22752.0,22776.0,0.9501597900390624 +22752.0,22777.0,0.9834810791015623 +22752.0,22778.0,0.7231680908203125 +22752.0,22781.0,0.9891561279296875 +22752.0,22783.0,0.9786492919921876 +22753.0,22737.0,0.4139140625 +22753.0,22738.0,0.560220458984375 +22753.0,22739.0,0.789830078125 +22753.0,22740.0,0.366225830078125 +22753.0,22741.0,0.624249267578125 +22753.0,22742.0,0.36048388671875 +22753.0,22743.0,0.58902294921875 +22753.0,22744.0,0.738498779296875 +22753.0,22745.0,0.720094482421875 +22753.0,22746.0,0.6554617919921875 +22753.0,22747.0,0.4416055145263672 +22753.0,22748.0,0.595873779296875 +22753.0,22749.0,0.34126220703125 +22753.0,22750.0,0.252111328125 +22753.0,22751.0,0.2843948364257812 +22753.0,22752.0,0.1504542236328125 +22753.0,22754.0,0.1980662231445312 +22753.0,22755.0,0.4856826171875 +22753.0,22756.0,0.540667724609375 +22753.0,22757.0,0.8338583984375 +22753.0,22758.0,0.90702685546875 +22753.0,22770.0,0.8254117431640625 +22753.0,22771.0,0.646460205078125 +22753.0,22772.0,0.727409423828125 +22753.0,22773.0,0.8228447265625 +22753.0,22774.0,0.6771131286621094 +22753.0,22775.0,0.713156005859375 +22753.0,22776.0,0.89077001953125 +22753.0,22777.0,0.92409130859375 +22753.0,22778.0,0.6637783203125 +22753.0,22779.0,0.970984375 +22753.0,22781.0,0.929766357421875 +22753.0,22782.0,0.98020556640625 +22753.0,22783.0,0.919259521484375 +22753.0,22799.0,0.9755859375 +22754.0,22737.0,0.3729158325195312 +22754.0,22738.0,0.4692222290039062 +22754.0,22739.0,0.6778318481445312 +22754.0,22740.0,0.3252276000976563 +22754.0,22741.0,0.5832510375976563 +22754.0,22742.0,0.3194856567382812 +22754.0,22743.0,0.6890247192382812 +22754.0,22744.0,0.7195005493164063 +22754.0,22745.0,0.5510962524414063 +22754.0,22746.0,0.4864635620117187 +22754.0,22747.0,0.2726072845458984 +22754.0,22748.0,0.4268755493164062 +22754.0,22749.0,0.2992639770507812 +22754.0,22750.0,0.3581130981445312 +22754.0,22751.0,0.3883966064453125 +22754.0,22752.0,0.2574559936523437 +22754.0,22753.0,0.1980662231445312 +22754.0,22755.0,0.4166843872070312 +22754.0,22756.0,0.3716694946289062 +22754.0,22757.0,0.8508601684570313 +22754.0,22758.0,0.8050286254882812 +22754.0,22760.0,0.9701702270507812 +22754.0,22761.0,0.9587136840820312 +22754.0,22763.0,0.8343670043945313 +22754.0,22767.0,0.9352025756835938 +22754.0,22768.0,0.9334998168945312 +22754.0,22769.0,0.8684961547851563 +22754.0,22770.0,0.6564135131835938 +22754.0,22771.0,0.4774619750976562 +22754.0,22772.0,0.5584111938476563 +22754.0,22773.0,0.6538464965820312 +22754.0,22774.0,0.5081148986816406 +22754.0,22775.0,0.5441577758789062 +22754.0,22776.0,0.7217717895507813 +22754.0,22777.0,0.7550930786132812 +22754.0,22778.0,0.4947800903320312 +22754.0,22779.0,0.8019861450195312 +22754.0,22780.0,0.8862069702148437 +22754.0,22781.0,0.7607681274414062 +22754.0,22782.0,0.8112073364257812 +22754.0,22783.0,0.7502612915039063 +22754.0,22786.0,0.9905027465820312 +22754.0,22799.0,0.8065877075195312 +22754.0,22801.0,0.8453567504882813 +22754.0,22805.0,0.9956443481445312 +22755.0,22737.0,0.6385322265625 +22755.0,22738.0,0.686838623046875 +22755.0,22739.0,0.8954482421875 +22755.0,22740.0,0.614843994140625 +22755.0,22741.0,0.848867431640625 +22755.0,22742.0,0.60910205078125 +22755.0,22743.0,0.97864111328125 +22755.0,22744.0,0.937116943359375 +22755.0,22745.0,0.768712646484375 +22755.0,22746.0,0.7040799560546875 +22755.0,22747.0,0.4902236785888672 +22755.0,22748.0,0.644491943359375 +22755.0,22749.0,0.26588037109375 +22755.0,22750.0,0.3247294921875 +22755.0,22751.0,0.3180130004882812 +22755.0,22752.0,0.5450723876953125 +22755.0,22753.0,0.4856826171875 +22755.0,22754.0,0.4166843872070312 +22755.0,22756.0,0.589285888671875 +22755.0,22770.0,0.8740299072265625 +22755.0,22771.0,0.695078369140625 +22755.0,22772.0,0.776027587890625 +22755.0,22773.0,0.871462890625 +22755.0,22774.0,0.6697312927246094 +22755.0,22775.0,0.705774169921875 +22755.0,22776.0,0.88338818359375 +22755.0,22777.0,0.80770947265625 +22755.0,22778.0,0.700396484375 +22755.0,22779.0,0.9636025390625 +22755.0,22781.0,0.922384521484375 +22755.0,22782.0,0.99182373046875 +22755.0,22783.0,0.967877685546875 +22756.0,22737.0,0.375517333984375 +22756.0,22738.0,0.42382373046875 +22756.0,22739.0,0.620433349609375 +22756.0,22740.0,0.5278291015625001 +22756.0,22741.0,0.5858525390625 +22756.0,22742.0,0.522087158203125 +22756.0,22743.0,0.769626220703125 +22756.0,22744.0,0.66210205078125 +22756.0,22745.0,0.38469775390625 +22756.0,22746.0,0.3200650634765625 +22756.0,22747.0,0.1032087860107421 +22756.0,22748.0,0.25747705078125 +22756.0,22749.0,0.596865478515625 +22756.0,22750.0,0.655714599609375 +22756.0,22751.0,0.6489981079101562 +22756.0,22752.0,0.6000574951171875 +22756.0,22753.0,0.540667724609375 +22756.0,22754.0,0.3716694946289062 +22756.0,22755.0,0.589285888671875 +22756.0,22757.0,0.793461669921875 +22756.0,22758.0,0.747630126953125 +22756.0,22759.0,0.905930419921875 +22756.0,22760.0,0.809771728515625 +22756.0,22761.0,0.901315185546875 +22756.0,22763.0,0.673968505859375 +22756.0,22765.0,0.850620849609375 +22756.0,22767.0,0.7658040771484375 +22756.0,22768.0,0.767101318359375 +22756.0,22769.0,0.69909765625 +22756.0,22770.0,0.4870150146484375 +22756.0,22771.0,0.3080634765625 +22756.0,22772.0,0.3890126953125 +22756.0,22773.0,0.484447998046875 +22756.0,22774.0,0.4787164001464843 +22756.0,22775.0,0.5147592773437499 +22756.0,22776.0,0.648373291015625 +22756.0,22777.0,0.743694580078125 +22756.0,22778.0,0.325381591796875 +22756.0,22779.0,0.728587646484375 +22756.0,22780.0,0.8128084716796875 +22756.0,22781.0,0.68736962890625 +22756.0,22782.0,0.641808837890625 +22756.0,22783.0,0.58086279296875 +22756.0,22786.0,0.909104248046875 +22756.0,22788.0,0.9270906982421876 +22756.0,22798.0,0.8551071166992188 +22756.0,22799.0,0.637189208984375 +22756.0,22800.0,0.95999365234375 +22756.0,22801.0,0.675958251953125 +22756.0,22803.0,0.920152099609375 +22756.0,22805.0,0.826245849609375 +22756.0,22806.0,0.956166259765625 +22756.0,22807.0,0.972175537109375 +22757.0,22737.0,0.5627080078125 +22757.0,22738.0,0.456014404296875 +22757.0,22739.0,0.3856240234375 +22757.0,22740.0,0.594019775390625 +22757.0,22741.0,0.442043212890625 +22757.0,22742.0,0.70927783203125 +22757.0,22743.0,0.37581689453125 +22757.0,22744.0,0.225292724609375 +22757.0,22745.0,0.518888427734375 +22757.0,22746.0,0.5352557373046876 +22757.0,22747.0,0.6943994598388672 +22757.0,22748.0,0.598667724609375 +22757.0,22749.0,0.99805615234375 +22757.0,22750.0,0.9949052734375 +22757.0,22752.0,0.7172481689453125 +22757.0,22753.0,0.8338583984375 +22757.0,22754.0,0.8508601684570313 +22757.0,22756.0,0.793461669921875 +22757.0,22758.0,0.32682080078125 +22757.0,22759.0,0.69012109375 +22757.0,22760.0,0.58996240234375 +22757.0,22761.0,0.419505859375 +22757.0,22762.0,0.5273789062500001 +22757.0,22763.0,0.4541591796875 +22757.0,22764.0,0.8076865234375 +22757.0,22765.0,0.6348115234375 +22757.0,22767.0,0.6709947509765625 +22757.0,22768.0,0.5532919921875 +22757.0,22769.0,0.689288330078125 +22757.0,22770.0,0.7062056884765625 +22757.0,22771.0,0.777254150390625 +22757.0,22772.0,0.970203369140625 +22757.0,22773.0,0.827638671875 +22757.0,22778.0,0.915572265625 +22757.0,22805.0,0.9634365234375 +22757.0,22807.0,0.9623662109375 +22758.0,22737.0,0.57587646484375 +22758.0,22738.0,0.469182861328125 +22758.0,22739.0,0.23779248046875 +22758.0,22740.0,0.607188232421875 +22758.0,22741.0,0.542211669921875 +22758.0,22742.0,0.7224462890625 +22758.0,22743.0,0.5239853515624999 +22758.0,22744.0,0.391461181640625 +22758.0,22745.0,0.437056884765625 +22758.0,22746.0,0.4894241943359375 +22758.0,22747.0,0.6485679168701172 +22758.0,22748.0,0.552836181640625 +22758.0,22752.0,0.8654166259765625 +22758.0,22753.0,0.90702685546875 +22758.0,22754.0,0.8050286254882812 +22758.0,22756.0,0.747630126953125 +22758.0,22757.0,0.32682080078125 +22758.0,22759.0,0.45228955078125 +22758.0,22760.0,0.352130859375 +22758.0,22761.0,0.24267431640625 +22758.0,22762.0,0.6515473632812501 +22758.0,22763.0,0.21632763671875 +22758.0,22764.0,0.56985498046875 +22758.0,22765.0,0.39697998046875 +22758.0,22766.0,0.8209920654296875 +22758.0,22767.0,0.4331632080078125 +22758.0,22768.0,0.31546044921875 +22758.0,22769.0,0.541456787109375 +22758.0,22770.0,0.6603741455078125 +22758.0,22771.0,0.731422607421875 +22758.0,22772.0,0.924371826171875 +22758.0,22773.0,0.78180712890625 +22758.0,22778.0,0.86974072265625 +22758.0,22801.0,0.9743173828125 +22758.0,22802.0,0.949310791015625 +22758.0,22804.0,0.97686767578125 +22758.0,22805.0,0.87760498046875 +22758.0,22806.0,0.903525390625 +22758.0,22807.0,0.75453466796875 +22758.0,22808.0,0.824630615234375 +22758.0,22809.0,0.8118128662109375 +22759.0,22737.0,0.9391767578125 +22759.0,22738.0,0.750483154296875 +22759.0,22739.0,0.6010927734375 +22759.0,22740.0,0.970488525390625 +22759.0,22741.0,0.905511962890625 +22759.0,22743.0,0.88528564453125 +22759.0,22744.0,0.754761474609375 +22759.0,22745.0,0.587357177734375 +22759.0,22746.0,0.6487244873046875 +22759.0,22747.0,0.8068682098388672 +22759.0,22748.0,0.712136474609375 +22759.0,22756.0,0.905930419921875 +22759.0,22757.0,0.69012109375 +22759.0,22758.0,0.45228955078125 +22759.0,22760.0,0.22943115234375 +22759.0,22761.0,0.358974609375 +22759.0,22762.0,0.6058476562499999 +22759.0,22763.0,0.3436279296875 +22759.0,22764.0,0.1971552734375 +22759.0,22765.0,0.1502802734375 +22759.0,22766.0,0.4492923583984375 +22759.0,22767.0,0.4364635009765625 +22759.0,22768.0,0.3187607421875 +22759.0,22769.0,0.564757080078125 +22759.0,22770.0,0.6876744384765625 +22759.0,22771.0,0.761722900390625 +22759.0,22772.0,0.953672119140625 +22759.0,22773.0,0.809107421875 +22759.0,22778.0,0.900041015625 +22759.0,22802.0,0.952611083984375 +22759.0,22805.0,0.9009052734375 +22759.0,22806.0,0.92682568359375 +22759.0,22807.0,0.7578349609375 +22759.0,22808.0,0.827930908203125 +22759.0,22809.0,0.8151131591796875 +22759.0,22815.0,0.94359521484375 +22760.0,22737.0,0.83901806640625 +22760.0,22738.0,0.650324462890625 +22760.0,22739.0,0.50093408203125 +22760.0,22740.0,0.870329833984375 +22760.0,22741.0,0.805353271484375 +22760.0,22742.0,0.985587890625 +22760.0,22743.0,0.785126953125 +22760.0,22744.0,0.654602783203125 +22760.0,22745.0,0.490198486328125 +22760.0,22746.0,0.5515657958984375 +22760.0,22747.0,0.7107095184326172 +22760.0,22748.0,0.614977783203125 +22760.0,22754.0,0.9701702270507812 +22760.0,22756.0,0.809771728515625 +22760.0,22757.0,0.58996240234375 +22760.0,22758.0,0.352130859375 +22760.0,22759.0,0.22943115234375 +22760.0,22761.0,0.25881591796875 +22760.0,22762.0,0.6326889648437499 +22760.0,22763.0,0.24346923828125 +22760.0,22764.0,0.34699658203125 +22760.0,22765.0,0.17412158203125 +22760.0,22766.0,0.5991336669921875 +22760.0,22767.0,0.4593048095703125 +22760.0,22768.0,0.34160205078125 +22760.0,22769.0,0.587598388671875 +22760.0,22770.0,0.7105157470703125 +22760.0,22771.0,0.784564208984375 +22760.0,22772.0,0.976513427734375 +22760.0,22773.0,0.83194873046875 +22760.0,22778.0,0.92288232421875 +22760.0,22802.0,0.975452392578125 +22760.0,22805.0,0.92374658203125 +22760.0,22806.0,0.9496669921875 +22760.0,22807.0,0.78067626953125 +22760.0,22808.0,0.850772216796875 +22760.0,22809.0,0.8379544677734375 +22761.0,22737.0,0.6705615234375 +22761.0,22738.0,0.563867919921875 +22761.0,22739.0,0.3914775390625 +22761.0,22740.0,0.701873291015625 +22761.0,22741.0,0.636896728515625 +22761.0,22742.0,0.81713134765625 +22761.0,22743.0,0.59467041015625 +22761.0,22744.0,0.486146240234375 +22761.0,22745.0,0.590741943359375 +22761.0,22746.0,0.6431092529296875 +22761.0,22747.0,0.8022529754638672 +22761.0,22748.0,0.706521240234375 +22761.0,22752.0,0.9361016845703124 +22761.0,22754.0,0.9587136840820312 +22761.0,22756.0,0.901315185546875 +22761.0,22757.0,0.419505859375 +22761.0,22758.0,0.24267431640625 +22761.0,22759.0,0.358974609375 +22761.0,22760.0,0.25881591796875 +22761.0,22762.0,0.6352324218750001 +22761.0,22763.0,0.3700126953125 +22761.0,22764.0,0.4765400390625 +22761.0,22765.0,0.3036650390625 +22761.0,22766.0,0.7266771240234375 +22761.0,22767.0,0.5868482666015625 +22761.0,22768.0,0.4691455078125 +22761.0,22769.0,0.695141845703125 +22761.0,22770.0,0.8140592041015625 +22761.0,22771.0,0.885107666015625 +22761.0,22773.0,0.9354921875 +22761.0,22807.0,0.9082197265625 +22761.0,22808.0,0.978315673828125 +22761.0,22809.0,0.9654979248046875 +22762.0,22737.0,0.9714345703125 +22762.0,22738.0,0.864740966796875 +22762.0,22739.0,0.7943505859375 +22762.0,22740.0,0.994746337890625 +22762.0,22741.0,0.850769775390625 +22762.0,22743.0,0.70254345703125 +22762.0,22744.0,0.634019287109375 +22762.0,22745.0,0.927614990234375 +22762.0,22746.0,0.9439822998046876 +22762.0,22757.0,0.5273789062500001 +22762.0,22758.0,0.6515473632812501 +22762.0,22759.0,0.6058476562499999 +22762.0,22760.0,0.6326889648437499 +22762.0,22761.0,0.6352324218750001 +22762.0,22763.0,0.7448857421875 +22762.0,22764.0,0.7234130859375 +22762.0,22765.0,0.6765380859375 +22762.0,22766.0,0.8075501708984375 +22762.0,22767.0,0.9617213134765624 +22762.0,22768.0,0.8440185546875 +22763.0,22737.0,0.70321484375 +22763.0,22738.0,0.5145212402343751 +22763.0,22739.0,0.365130859375 +22763.0,22740.0,0.734526611328125 +22763.0,22741.0,0.669550048828125 +22763.0,22742.0,0.84978466796875 +22763.0,22743.0,0.65132373046875 +22763.0,22744.0,0.5187995605468749 +22763.0,22745.0,0.354395263671875 +22763.0,22746.0,0.4157625732421875 +22763.0,22747.0,0.5749062957763672 +22763.0,22748.0,0.479174560546875 +22763.0,22752.0,0.9927550048828124 +22763.0,22754.0,0.8343670043945313 +22763.0,22756.0,0.673968505859375 +22763.0,22757.0,0.4541591796875 +22763.0,22758.0,0.21632763671875 +22763.0,22759.0,0.3436279296875 +22763.0,22760.0,0.24346923828125 +22763.0,22761.0,0.3700126953125 +22763.0,22762.0,0.7448857421875 +22763.0,22764.0,0.461193359375 +22763.0,22765.0,0.288318359375 +22763.0,22766.0,0.7133304443359375 +22763.0,22767.0,0.3245015869140625 +22763.0,22768.0,0.206798828125 +22763.0,22769.0,0.452795166015625 +22763.0,22770.0,0.5757125244140625 +22763.0,22771.0,0.649760986328125 +22763.0,22772.0,0.841710205078125 +22763.0,22773.0,0.6971455078125 +22763.0,22774.0,0.9414139099121094 +22763.0,22775.0,0.977456787109375 +22763.0,22778.0,0.7880791015625 +22763.0,22799.0,0.97688671875 +22763.0,22800.0,0.972691162109375 +22763.0,22801.0,0.88965576171875 +22763.0,22802.0,0.840649169921875 +22763.0,22803.0,0.932849609375 +22763.0,22804.0,0.8882060546875 +22763.0,22805.0,0.788943359375 +22763.0,22806.0,0.81486376953125 +22763.0,22807.0,0.645873046875 +22763.0,22808.0,0.715968994140625 +22763.0,22809.0,0.7031512451171875 +22763.0,22813.0,0.92207861328125 +22764.0,22738.0,0.868048583984375 +22764.0,22739.0,0.718658203125 +22764.0,22744.0,0.872326904296875 +22764.0,22745.0,0.703922607421875 +22764.0,22746.0,0.7652899169921875 +22764.0,22747.0,0.9234336395263671 +22764.0,22748.0,0.828701904296875 +22764.0,22757.0,0.8076865234375 +22764.0,22758.0,0.56985498046875 +22764.0,22759.0,0.1971552734375 +22764.0,22760.0,0.34699658203125 +22764.0,22761.0,0.4765400390625 +22764.0,22762.0,0.7234130859375 +22764.0,22763.0,0.461193359375 +22764.0,22765.0,0.267845703125 +22764.0,22766.0,0.5668577880859376 +22764.0,22767.0,0.4290289306640625 +22764.0,22768.0,0.435326171875 +22764.0,22769.0,0.562322509765625 +22764.0,22770.0,0.6852398681640625 +22764.0,22771.0,0.759288330078125 +22764.0,22772.0,0.951237548828125 +22764.0,22773.0,0.8066728515625 +22764.0,22778.0,0.8976064453125 +22764.0,22801.0,0.99918310546875 +22764.0,22802.0,0.945176513671875 +22764.0,22804.0,0.9977333984375 +22764.0,22805.0,0.898470703125 +22764.0,22806.0,0.92439111328125 +22764.0,22807.0,0.750400390625 +22764.0,22808.0,0.820496337890625 +22764.0,22809.0,0.8076785888671875 +22764.0,22815.0,0.93516064453125 +22765.0,22737.0,0.8838671875 +22765.0,22738.0,0.695173583984375 +22765.0,22739.0,0.5457832031250001 +22765.0,22740.0,0.915178955078125 +22765.0,22741.0,0.850202392578125 +22765.0,22743.0,0.82997607421875 +22765.0,22744.0,0.699451904296875 +22765.0,22745.0,0.532047607421875 +22765.0,22746.0,0.5934149169921875 +22765.0,22747.0,0.7515586395263671 +22765.0,22748.0,0.656826904296875 +22765.0,22756.0,0.850620849609375 +22765.0,22757.0,0.6348115234375 +22765.0,22758.0,0.39697998046875 +22765.0,22759.0,0.1502802734375 +22765.0,22760.0,0.17412158203125 +22765.0,22761.0,0.3036650390625 +22765.0,22762.0,0.6765380859375 +22765.0,22763.0,0.288318359375 +22765.0,22764.0,0.267845703125 +22765.0,22766.0,0.5199827880859376 +22765.0,22767.0,0.3811539306640625 +22765.0,22768.0,0.263451171875 +22765.0,22769.0,0.509447509765625 +22765.0,22770.0,0.6323648681640625 +22765.0,22771.0,0.706413330078125 +22765.0,22772.0,0.898362548828125 +22765.0,22773.0,0.7537978515625 +22765.0,22774.0,0.9980662536621092 +22765.0,22778.0,0.8447314453125 +22765.0,22801.0,0.94630810546875 +22765.0,22802.0,0.897301513671875 +22765.0,22803.0,0.989501953125 +22765.0,22804.0,0.9448583984375 +22765.0,22805.0,0.845595703125 +22765.0,22806.0,0.87151611328125 +22765.0,22807.0,0.702525390625 +22765.0,22808.0,0.772621337890625 +22765.0,22809.0,0.7598035888671875 +22765.0,22813.0,0.97873095703125 +22766.0,22739.0,0.9697952880859376 +22766.0,22745.0,0.9570596923828124 +22766.0,22758.0,0.8209920654296875 +22766.0,22759.0,0.4492923583984375 +22766.0,22760.0,0.5991336669921875 +22766.0,22761.0,0.7266771240234375 +22766.0,22762.0,0.8075501708984375 +22766.0,22763.0,0.7133304443359375 +22766.0,22764.0,0.5668577880859376 +22766.0,22765.0,0.5199827880859376 +22766.0,22767.0,0.806166015625 +22766.0,22768.0,0.6884632568359375 +22766.0,22769.0,0.9344595947265624 +22766.0,22815.0,0.9752977294921876 +22767.0,22737.0,0.8170504150390625 +22767.0,22738.0,0.6153568115234375 +22767.0,22739.0,0.4809664306640625 +22767.0,22740.0,0.8483621826171875 +22767.0,22741.0,0.7873856201171875 +22767.0,22742.0,0.9636202392578124 +22767.0,22743.0,0.8191593017578125 +22767.0,22744.0,0.6446351318359375 +22767.0,22745.0,0.4492308349609375 +22767.0,22746.0,0.51059814453125 +22767.0,22747.0,0.6667418670654297 +22767.0,22748.0,0.5730101318359375 +22767.0,22754.0,0.9352025756835938 +22767.0,22756.0,0.7658040771484375 +22767.0,22757.0,0.6709947509765625 +22767.0,22758.0,0.4331632080078125 +22767.0,22759.0,0.4364635009765625 +22767.0,22760.0,0.4593048095703125 +22767.0,22761.0,0.5868482666015625 +22767.0,22762.0,0.9617213134765624 +22767.0,22763.0,0.3245015869140625 +22767.0,22764.0,0.4290289306640625 +22767.0,22765.0,0.3811539306640625 +22767.0,22766.0,0.806166015625 +22767.0,22768.0,0.2976343994140625 +22767.0,22769.0,0.1766307373046874 +22767.0,22770.0,0.301548095703125 +22767.0,22771.0,0.4985965576171875 +22767.0,22772.0,0.5675457763671875 +22767.0,22773.0,0.4229810791015625 +22767.0,22774.0,0.7232494812011718 +22767.0,22775.0,0.8262923583984375 +22767.0,22776.0,0.8269063720703125 +22767.0,22778.0,0.6369146728515624 +22767.0,22779.0,0.9071207275390624 +22767.0,22780.0,0.991341552734375 +22767.0,22781.0,0.8659027099609375 +22767.0,22782.0,0.8203419189453125 +22767.0,22783.0,0.7513958740234375 +22767.0,22794.0,0.9223115234375 +22767.0,22798.0,0.8196401977539063 +22767.0,22799.0,0.7017222900390625 +22767.0,22800.0,0.6965267333984375 +22767.0,22801.0,0.6144913330078124 +22767.0,22802.0,0.5584847412109375 +22767.0,22803.0,0.6566851806640625 +22767.0,22804.0,0.6120416259765625 +22767.0,22805.0,0.5127789306640624 +22767.0,22806.0,0.5386993408203125 +22767.0,22807.0,0.3637086181640625 +22767.0,22808.0,0.5548045654296875 +22767.0,22809.0,0.42098681640625 +22767.0,22810.0,0.9778692626953124 +22767.0,22811.0,0.7241033935546874 +22767.0,22812.0,0.9774727783203124 +22767.0,22813.0,0.7609141845703125 +22767.0,22814.0,0.8561800537109375 +22767.0,22818.0,0.9545087890625 +22768.0,22737.0,0.80234765625 +22768.0,22738.0,0.613654052734375 +22768.0,22739.0,0.464263671875 +22768.0,22740.0,0.833659423828125 +22768.0,22741.0,0.768682861328125 +22768.0,22742.0,0.94891748046875 +22768.0,22743.0,0.75045654296875 +22768.0,22744.0,0.617932373046875 +22768.0,22745.0,0.448528076171875 +22768.0,22746.0,0.5098953857421875 +22768.0,22747.0,0.6680391082763671 +22768.0,22748.0,0.573307373046875 +22768.0,22754.0,0.9334998168945312 +22768.0,22756.0,0.767101318359375 +22768.0,22757.0,0.5532919921875 +22768.0,22758.0,0.31546044921875 +22768.0,22759.0,0.3187607421875 +22768.0,22760.0,0.34160205078125 +22768.0,22761.0,0.4691455078125 +22768.0,22762.0,0.8440185546875 +22768.0,22763.0,0.206798828125 +22768.0,22764.0,0.435326171875 +22768.0,22765.0,0.263451171875 +22768.0,22766.0,0.6884632568359375 +22768.0,22767.0,0.2976343994140625 +22768.0,22769.0,0.425927978515625 +22768.0,22770.0,0.5488453369140625 +22768.0,22771.0,0.622893798828125 +22768.0,22772.0,0.814843017578125 +22768.0,22773.0,0.6702783203125 +22768.0,22774.0,0.9145467224121092 +22768.0,22775.0,0.950589599609375 +22768.0,22778.0,0.7612119140625 +22768.0,22783.0,0.999693115234375 +22768.0,22799.0,0.95001953125 +22768.0,22800.0,0.945823974609375 +22768.0,22801.0,0.86278857421875 +22768.0,22802.0,0.813781982421875 +22768.0,22803.0,0.905982421875 +22768.0,22804.0,0.8613388671875 +22768.0,22805.0,0.762076171875 +22768.0,22806.0,0.78799658203125 +22768.0,22807.0,0.6190058593750001 +22768.0,22808.0,0.689101806640625 +22768.0,22809.0,0.6762840576171875 +22768.0,22811.0,0.973400634765625 +22768.0,22813.0,0.89521142578125 +22768.0,22814.0,0.990477294921875 +22769.0,22737.0,0.750343994140625 +22769.0,22738.0,0.548650390625 +22769.0,22739.0,0.414260009765625 +22769.0,22740.0,0.78165576171875 +22769.0,22741.0,0.72067919921875 +22769.0,22742.0,0.896913818359375 +22769.0,22743.0,0.752452880859375 +22769.0,22744.0,0.5779287109375 +22769.0,22745.0,0.3825244140625 +22769.0,22746.0,0.4438917236328125 +22769.0,22747.0,0.6000354461669922 +22769.0,22748.0,0.5063037109374999 +22769.0,22754.0,0.8684961547851563 +22769.0,22756.0,0.69909765625 +22769.0,22757.0,0.689288330078125 +22769.0,22758.0,0.541456787109375 +22769.0,22759.0,0.564757080078125 +22769.0,22760.0,0.587598388671875 +22769.0,22761.0,0.695141845703125 +22769.0,22763.0,0.452795166015625 +22769.0,22764.0,0.562322509765625 +22769.0,22765.0,0.509447509765625 +22769.0,22766.0,0.9344595947265624 +22769.0,22767.0,0.1766307373046874 +22769.0,22768.0,0.425927978515625 +22769.0,22770.0,0.2348416748046875 +22769.0,22771.0,0.43189013671875 +22769.0,22772.0,0.50083935546875 +22769.0,22773.0,0.356274658203125 +22769.0,22774.0,0.6565430603027343 +22769.0,22775.0,0.7595859375 +22769.0,22776.0,0.760199951171875 +22769.0,22777.0,0.960521240234375 +22769.0,22778.0,0.5702082519531251 +22769.0,22779.0,0.840414306640625 +22769.0,22780.0,0.9246351318359376 +22769.0,22781.0,0.7991962890625 +22769.0,22782.0,0.753635498046875 +22769.0,22783.0,0.684689453125 +22769.0,22786.0,0.982930908203125 +22769.0,22788.0,0.9779173583984376 +22769.0,22794.0,0.8556051025390625 +22769.0,22798.0,0.7529337768554687 +22769.0,22799.0,0.635015869140625 +22769.0,22800.0,0.6298203125 +22769.0,22801.0,0.547784912109375 +22769.0,22802.0,0.5527783203125001 +22769.0,22803.0,0.589978759765625 +22769.0,22804.0,0.545335205078125 +22769.0,22805.0,0.446072509765625 +22769.0,22806.0,0.471992919921875 +22769.0,22807.0,0.383002197265625 +22769.0,22808.0,0.69209814453125 +22769.0,22809.0,0.4402803955078125 +22769.0,22811.0,0.65739697265625 +22769.0,22813.0,0.828207763671875 +22769.0,22814.0,0.9234736328125 +22770.0,22737.0,0.5392613525390625 +22770.0,22738.0,0.3375677490234375 +22770.0,22739.0,0.5331773681640626 +22770.0,22740.0,0.5705731201171875 +22770.0,22741.0,0.5275965576171875 +22770.0,22742.0,0.6858311767578125 +22770.0,22743.0,0.6963702392578125 +22770.0,22744.0,0.5748460693359375 +22770.0,22745.0,0.2954417724609375 +22770.0,22746.0,0.23280908203125 +22770.0,22747.0,0.3879528045654297 +22770.0,22748.0,0.2942210693359375 +22770.0,22749.0,0.8816094970703126 +22770.0,22750.0,0.9404586181640624 +22770.0,22751.0,0.9337421264648438 +22770.0,22752.0,0.884801513671875 +22770.0,22753.0,0.8254117431640625 +22770.0,22754.0,0.6564135131835938 +22770.0,22755.0,0.8740299072265625 +22770.0,22756.0,0.4870150146484375 +22770.0,22757.0,0.7062056884765625 +22770.0,22758.0,0.6603741455078125 +22770.0,22759.0,0.6876744384765625 +22770.0,22760.0,0.7105157470703125 +22770.0,22761.0,0.8140592041015625 +22770.0,22763.0,0.5757125244140625 +22770.0,22764.0,0.6852398681640625 +22770.0,22765.0,0.6323648681640625 +22770.0,22767.0,0.301548095703125 +22770.0,22768.0,0.5488453369140625 +22770.0,22769.0,0.2348416748046875 +22770.0,22771.0,0.2188074951171875 +22770.0,22772.0,0.2877567138671875 +22770.0,22773.0,0.1431920166015625 +22770.0,22774.0,0.4434604187011718 +22770.0,22775.0,0.5465032958984375 +22770.0,22776.0,0.5471173095703126 +22770.0,22777.0,0.7474385986328125 +22770.0,22778.0,0.3571256103515625 +22770.0,22779.0,0.6273316650390625 +22770.0,22780.0,0.711552490234375 +22770.0,22781.0,0.5861136474609375 +22770.0,22782.0,0.5405528564453125 +22770.0,22783.0,0.4726068115234375 +22770.0,22784.0,0.9244510498046876 +22770.0,22786.0,0.7808482666015625 +22770.0,22787.0,0.9550084228515624 +22770.0,22788.0,0.775834716796875 +22770.0,22794.0,0.7475224609375 +22770.0,22797.0,0.8983219604492187 +22770.0,22798.0,0.5508511352539063 +22770.0,22799.0,0.4229332275390625 +22770.0,22800.0,0.5217376708984375 +22770.0,22801.0,0.3357022705078125 +22770.0,22802.0,0.5986956787109375 +22770.0,22803.0,0.4818961181640625 +22770.0,22804.0,0.5912525634765625 +22770.0,22805.0,0.3609898681640625 +22770.0,22806.0,0.5179102783203124 +22770.0,22807.0,0.5079195556640625 +22770.0,22808.0,0.7640155029296875 +22770.0,22809.0,0.56519775390625 +22770.0,22811.0,0.7033143310546875 +22770.0,22813.0,0.8741251220703125 +22770.0,22814.0,0.9693909912109376 +22771.0,22737.0,0.363309814453125 +22771.0,22738.0,0.4076162109375 +22771.0,22739.0,0.604225830078125 +22771.0,22740.0,0.51562158203125 +22771.0,22741.0,0.57364501953125 +22771.0,22742.0,0.509879638671875 +22771.0,22743.0,0.757418701171875 +22771.0,22744.0,0.64589453125 +22771.0,22745.0,0.368490234375 +22771.0,22746.0,0.3038575439453125 +22771.0,22747.0,0.2090012664794922 +22771.0,22748.0,0.24126953125 +22771.0,22749.0,0.702657958984375 +22771.0,22750.0,0.761507080078125 +22771.0,22751.0,0.7547905883789062 +22771.0,22752.0,0.7058499755859375 +22771.0,22753.0,0.646460205078125 +22771.0,22754.0,0.4774619750976562 +22771.0,22755.0,0.695078369140625 +22771.0,22756.0,0.3080634765625 +22771.0,22757.0,0.777254150390625 +22771.0,22758.0,0.731422607421875 +22771.0,22759.0,0.761722900390625 +22771.0,22760.0,0.784564208984375 +22771.0,22761.0,0.885107666015625 +22771.0,22763.0,0.649760986328125 +22771.0,22764.0,0.759288330078125 +22771.0,22765.0,0.706413330078125 +22771.0,22767.0,0.4985965576171875 +22771.0,22768.0,0.622893798828125 +22771.0,22769.0,0.43189013671875 +22771.0,22770.0,0.2188074951171875 +22771.0,22772.0,0.23280517578125 +22771.0,22773.0,0.216240478515625 +22771.0,22774.0,0.3315088806152343 +22771.0,22775.0,0.3675517578125 +22771.0,22776.0,0.492165771484375 +22771.0,22777.0,0.596487060546875 +22771.0,22778.0,0.1781740722656249 +22771.0,22779.0,0.572380126953125 +22771.0,22780.0,0.6566009521484375 +22771.0,22781.0,0.5311621093750001 +22771.0,22782.0,0.485601318359375 +22771.0,22783.0,0.4206552734375 +22771.0,22784.0,0.92849951171875 +22771.0,22786.0,0.752896728515625 +22771.0,22787.0,0.900056884765625 +22771.0,22788.0,0.7638831787109375 +22771.0,22794.0,0.8795709228515625 +22771.0,22797.0,0.9423704223632812 +22771.0,22798.0,0.5948995971679687 +22771.0,22799.0,0.370981689453125 +22771.0,22800.0,0.6917861328125 +22771.0,22801.0,0.408750732421875 +22771.0,22802.0,0.768744140625 +22771.0,22803.0,0.651944580078125 +22771.0,22804.0,0.761301025390625 +22771.0,22805.0,0.558038330078125 +22771.0,22806.0,0.687958740234375 +22771.0,22807.0,0.704968017578125 +22771.0,22808.0,0.93406396484375 +22771.0,22809.0,0.7622462158203125 +22771.0,22811.0,0.87336279296875 +22772.0,22737.0,0.556259033203125 +22772.0,22738.0,0.6005654296875 +22772.0,22739.0,0.797175048828125 +22772.0,22740.0,0.70857080078125 +22772.0,22741.0,0.76659423828125 +22772.0,22742.0,0.702828857421875 +22772.0,22743.0,0.950367919921875 +22772.0,22744.0,0.83884375 +22772.0,22745.0,0.561439453125 +22772.0,22746.0,0.4968067626953125 +22772.0,22747.0,0.2899504852294922 +22772.0,22748.0,0.43421875 +22772.0,22749.0,0.783607177734375 +22772.0,22750.0,0.842456298828125 +22772.0,22751.0,0.8357398071289063 +22772.0,22752.0,0.7867991943359375 +22772.0,22753.0,0.727409423828125 +22772.0,22754.0,0.5584111938476563 +22772.0,22755.0,0.776027587890625 +22772.0,22756.0,0.3890126953125 +22772.0,22757.0,0.970203369140625 +22772.0,22758.0,0.924371826171875 +22772.0,22759.0,0.953672119140625 +22772.0,22760.0,0.976513427734375 +22772.0,22763.0,0.841710205078125 +22772.0,22764.0,0.951237548828125 +22772.0,22765.0,0.898362548828125 +22772.0,22767.0,0.5675457763671875 +22772.0,22768.0,0.814843017578125 +22772.0,22769.0,0.50083935546875 +22772.0,22770.0,0.2877567138671875 +22772.0,22771.0,0.23280517578125 +22772.0,22773.0,0.285189697265625 +22772.0,22774.0,0.3314580993652343 +22772.0,22775.0,0.4455009765625 +22772.0,22776.0,0.435114990234375 +22772.0,22777.0,0.635436279296875 +22772.0,22778.0,0.256123291015625 +22772.0,22779.0,0.463329345703125 +22772.0,22780.0,0.5625501708984375 +22772.0,22781.0,0.407111328125 +22772.0,22782.0,0.350550537109375 +22772.0,22783.0,0.2776044921875 +22772.0,22784.0,0.78844873046875 +22772.0,22785.0,0.93941650390625 +22772.0,22786.0,0.615845947265625 +22772.0,22787.0,0.802006103515625 +22772.0,22788.0,0.6238323974609375 +22772.0,22794.0,0.8365201416015625 +22772.0,22797.0,0.8993196411132812 +22772.0,22798.0,0.5518488159179687 +22772.0,22799.0,0.333930908203125 +22772.0,22800.0,0.6577353515625 +22772.0,22801.0,0.372699951171875 +22772.0,22802.0,0.734693359375 +22772.0,22803.0,0.617893798828125 +22772.0,22804.0,0.727250244140625 +22772.0,22805.0,0.524987548828125 +22772.0,22806.0,0.653907958984375 +22772.0,22807.0,0.680917236328125 +22772.0,22808.0,0.90001318359375 +22772.0,22809.0,0.7381954345703124 +22772.0,22811.0,0.83931201171875 +22773.0,22737.0,0.5376943359374999 +22773.0,22738.0,0.458000732421875 +22773.0,22739.0,0.6546103515625 +22773.0,22740.0,0.569006103515625 +22773.0,22741.0,0.624029541015625 +22773.0,22742.0,0.68426416015625 +22773.0,22743.0,0.80780322265625 +22773.0,22744.0,0.696279052734375 +22773.0,22745.0,0.416874755859375 +22773.0,22746.0,0.3542420654296875 +22773.0,22747.0,0.3853857879638672 +22773.0,22748.0,0.291654052734375 +22773.0,22749.0,0.87904248046875 +22773.0,22750.0,0.9378916015625 +22773.0,22751.0,0.9311751098632812 +22773.0,22752.0,0.8822344970703125 +22773.0,22753.0,0.8228447265625 +22773.0,22754.0,0.6538464965820312 +22773.0,22755.0,0.871462890625 +22773.0,22756.0,0.484447998046875 +22773.0,22757.0,0.827638671875 +22773.0,22758.0,0.78180712890625 +22773.0,22759.0,0.809107421875 +22773.0,22760.0,0.83194873046875 +22773.0,22761.0,0.9354921875 +22773.0,22763.0,0.6971455078125 +22773.0,22764.0,0.8066728515625 +22773.0,22765.0,0.7537978515625 +22773.0,22767.0,0.4229810791015625 +22773.0,22768.0,0.6702783203125 +22773.0,22769.0,0.356274658203125 +22773.0,22770.0,0.1431920166015625 +22773.0,22771.0,0.216240478515625 +22773.0,22772.0,0.285189697265625 +22773.0,22774.0,0.4408934020996093 +22773.0,22775.0,0.5439362792968749 +22773.0,22776.0,0.54455029296875 +22773.0,22777.0,0.74487158203125 +22773.0,22778.0,0.35455859375 +22773.0,22779.0,0.6247646484375 +22773.0,22780.0,0.7089854736328125 +22773.0,22781.0,0.5835466308593751 +22773.0,22782.0,0.53798583984375 +22773.0,22783.0,0.470039794921875 +22773.0,22784.0,0.921884033203125 +22773.0,22786.0,0.77828125 +22773.0,22787.0,0.95244140625 +22773.0,22788.0,0.7732677001953125 +22773.0,22794.0,0.8329554443359375 +22773.0,22797.0,0.8957549438476563 +22773.0,22798.0,0.5482841186523437 +22773.0,22799.0,0.4203662109375 +22773.0,22800.0,0.616170654296875 +22773.0,22801.0,0.33313525390625 +22773.0,22802.0,0.693128662109375 +22773.0,22803.0,0.5763291015625001 +22773.0,22804.0,0.685685546875 +22773.0,22805.0,0.4824228515625 +22773.0,22806.0,0.61234326171875 +22773.0,22807.0,0.6293525390625 +22773.0,22808.0,0.858448486328125 +22773.0,22809.0,0.6866307373046875 +22773.0,22811.0,0.797747314453125 +22773.0,22813.0,0.96855810546875 +22774.0,22737.0,0.6519627380371094 +22774.0,22738.0,0.6992691345214844 +22774.0,22739.0,0.8958787536621093 +22774.0,22740.0,0.8042745056152344 +22774.0,22741.0,0.8622979431152343 +22774.0,22742.0,0.7985325622558593 +22774.0,22744.0,0.9375474548339844 +22774.0,22745.0,0.6601431579589844 +22774.0,22746.0,0.5955104675292969 +22774.0,22747.0,0.3796541900634765 +22774.0,22748.0,0.5329224548339844 +22774.0,22749.0,0.6773108825683594 +22774.0,22750.0,0.7361600036621094 +22774.0,22751.0,0.7294435119628906 +22774.0,22752.0,0.7365028991699218 +22774.0,22753.0,0.6771131286621094 +22774.0,22754.0,0.5081148986816406 +22774.0,22755.0,0.6697312927246094 +22774.0,22756.0,0.4787164001464843 +22774.0,22763.0,0.9414139099121094 +22774.0,22765.0,0.9980662536621092 +22774.0,22767.0,0.7232494812011718 +22774.0,22768.0,0.9145467224121092 +22774.0,22769.0,0.6565430603027343 +22774.0,22770.0,0.4434604187011718 +22774.0,22771.0,0.3315088806152343 +22774.0,22772.0,0.3314580993652343 +22774.0,22773.0,0.4408934020996093 +22774.0,22775.0,0.2632046813964843 +22774.0,22776.0,0.3168186950683593 +22774.0,22777.0,0.4921399841308593 +22774.0,22778.0,0.2578269958496094 +22774.0,22779.0,0.3970330505371093 +22774.0,22780.0,0.4812538757324219 +22774.0,22781.0,0.3558150329589843 +22774.0,22782.0,0.4252542419433593 +22774.0,22783.0,0.4763081970214843 +22774.0,22784.0,0.8231524353027344 +22774.0,22785.0,0.9121202087402344 +22774.0,22786.0,0.5855496520996094 +22774.0,22787.0,0.7247098083496094 +22774.0,22788.0,0.7885361022949219 +22774.0,22798.0,0.7495525207519531 +22774.0,22799.0,0.5326346130371094 +22774.0,22800.0,0.8564390563964843 +22774.0,22801.0,0.5714036560058594 +22774.0,22802.0,0.9333970642089844 +22774.0,22803.0,0.8165975036621094 +22774.0,22804.0,0.9259539489746094 +22774.0,22805.0,0.7236912536621094 +22774.0,22806.0,0.8526116638183594 +22774.0,22807.0,0.8796209411621094 +22774.0,22809.0,0.9368991394042968 +22775.0,22737.0,0.688005615234375 +22775.0,22738.0,0.73531201171875 +22775.0,22739.0,0.931921630859375 +22775.0,22740.0,0.8403173828125 +22775.0,22741.0,0.8983408203125 +22775.0,22742.0,0.834575439453125 +22775.0,22744.0,0.97359033203125 +22775.0,22745.0,0.69618603515625 +22775.0,22746.0,0.6315533447265625 +22775.0,22747.0,0.4156970672607422 +22775.0,22748.0,0.56896533203125 +22775.0,22749.0,0.713353759765625 +22775.0,22750.0,0.772202880859375 +22775.0,22751.0,0.7654863891601562 +22775.0,22752.0,0.7725457763671875 +22775.0,22753.0,0.713156005859375 +22775.0,22754.0,0.5441577758789062 +22775.0,22755.0,0.705774169921875 +22775.0,22756.0,0.5147592773437499 +22775.0,22763.0,0.977456787109375 +22775.0,22767.0,0.8262923583984375 +22775.0,22768.0,0.950589599609375 +22775.0,22769.0,0.7595859375 +22775.0,22770.0,0.5465032958984375 +22775.0,22771.0,0.3675517578125 +22775.0,22772.0,0.4455009765625 +22775.0,22773.0,0.5439362792968749 +22775.0,22774.0,0.2632046813964843 +22775.0,22776.0,0.304861572265625 +22775.0,22777.0,0.320182861328125 +22775.0,22778.0,0.293869873046875 +22775.0,22779.0,0.453075927734375 +22775.0,22780.0,0.4692967529296875 +22775.0,22781.0,0.5158579101562499 +22775.0,22782.0,0.585297119140625 +22775.0,22783.0,0.63635107421875 +22775.0,22784.0,0.9831953125 +22775.0,22785.0,0.9001630859375 +22775.0,22786.0,0.745592529296875 +22775.0,22787.0,0.712752685546875 +22775.0,22788.0,0.9485789794921876 +22775.0,22798.0,0.9095953979492188 +22775.0,22799.0,0.692677490234375 +22775.0,22801.0,0.731446533203125 +22775.0,22803.0,0.976640380859375 +22775.0,22805.0,0.883734130859375 +22776.0,22737.0,0.81561962890625 +22776.0,22738.0,0.859926025390625 +22776.0,22740.0,0.967931396484375 +22776.0,22742.0,0.962189453125 +22776.0,22745.0,0.820800048828125 +22776.0,22746.0,0.7561673583984375 +22776.0,22747.0,0.5493110809326172 +22776.0,22748.0,0.693579345703125 +22776.0,22749.0,0.8909677734375 +22776.0,22750.0,0.94981689453125 +22776.0,22751.0,0.9431004028320312 +22776.0,22752.0,0.9501597900390624 +22776.0,22753.0,0.89077001953125 +22776.0,22754.0,0.7217717895507813 +22776.0,22755.0,0.88338818359375 +22776.0,22756.0,0.648373291015625 +22776.0,22767.0,0.8269063720703125 +22776.0,22769.0,0.760199951171875 +22776.0,22770.0,0.5471173095703126 +22776.0,22771.0,0.492165771484375 +22776.0,22772.0,0.435114990234375 +22776.0,22773.0,0.54455029296875 +22776.0,22774.0,0.3168186950683593 +22776.0,22775.0,0.304861572265625 +22776.0,22777.0,0.362796875 +22776.0,22778.0,0.47148388671875 +22776.0,22779.0,0.35368994140625 +22776.0,22780.0,0.3269107666015625 +22776.0,22781.0,0.425471923828125 +22776.0,22782.0,0.4949111328125 +22776.0,22783.0,0.5589650878906249 +22776.0,22784.0,0.864809326171875 +22776.0,22785.0,0.757777099609375 +22776.0,22786.0,0.65320654296875 +22776.0,22787.0,0.5703666992187499 +22776.0,22788.0,0.8561929931640625 +22776.0,22798.0,0.8172094116210937 +22776.0,22799.0,0.61529150390625 +22776.0,22800.0,0.939095947265625 +22776.0,22801.0,0.654060546875 +22776.0,22803.0,0.89925439453125 +22776.0,22805.0,0.80634814453125 +22776.0,22806.0,0.9352685546875 +22776.0,22807.0,0.96227783203125 +22777.0,22737.0,0.91694091796875 +22777.0,22738.0,0.964247314453125 +22777.0,22745.0,0.925121337890625 +22777.0,22746.0,0.8604886474609375 +22777.0,22747.0,0.6446323699951172 +22777.0,22748.0,0.797900634765625 +22777.0,22749.0,0.7922890625 +22777.0,22750.0,0.81813818359375 +22777.0,22751.0,0.7264216918945312 +22777.0,22752.0,0.9834810791015623 +22777.0,22753.0,0.92409130859375 +22777.0,22754.0,0.7550930786132812 +22777.0,22755.0,0.80770947265625 +22777.0,22756.0,0.743694580078125 +22777.0,22769.0,0.960521240234375 +22777.0,22770.0,0.7474385986328125 +22777.0,22771.0,0.596487060546875 +22777.0,22772.0,0.635436279296875 +22777.0,22773.0,0.74487158203125 +22777.0,22774.0,0.4921399841308593 +22777.0,22775.0,0.320182861328125 +22777.0,22776.0,0.362796875 +22777.0,22778.0,0.52280517578125 +22777.0,22779.0,0.51501123046875 +22777.0,22780.0,0.3622320556640625 +22777.0,22781.0,0.586793212890625 +22777.0,22782.0,0.656232421875 +22777.0,22783.0,0.727286376953125 +22777.0,22785.0,0.919098388671875 +22777.0,22786.0,0.81452783203125 +22777.0,22787.0,0.62968798828125 +22777.0,22798.0,0.9785307006835936 +22777.0,22799.0,0.78361279296875 +22777.0,22801.0,0.8223818359375 +22778.0,22737.0,0.4986279296875 +22778.0,22738.0,0.545934326171875 +22778.0,22739.0,0.7425439453125 +22778.0,22740.0,0.650939697265625 +22778.0,22741.0,0.708963134765625 +22778.0,22742.0,0.64519775390625 +22778.0,22743.0,0.89273681640625 +22778.0,22744.0,0.784212646484375 +22778.0,22745.0,0.5068083496093749 +22778.0,22746.0,0.4421756591796875 +22778.0,22747.0,0.2263193817138671 +22778.0,22748.0,0.379587646484375 +22778.0,22749.0,0.70797607421875 +22778.0,22750.0,0.7668251953125 +22778.0,22751.0,0.7601087036132812 +22778.0,22752.0,0.7231680908203125 +22778.0,22753.0,0.6637783203125 +22778.0,22754.0,0.4947800903320312 +22778.0,22755.0,0.700396484375 +22778.0,22756.0,0.325381591796875 +22778.0,22757.0,0.915572265625 +22778.0,22758.0,0.86974072265625 +22778.0,22759.0,0.900041015625 +22778.0,22760.0,0.92288232421875 +22778.0,22763.0,0.7880791015625 +22778.0,22764.0,0.8976064453125 +22778.0,22765.0,0.8447314453125 +22778.0,22767.0,0.6369146728515624 +22778.0,22768.0,0.7612119140625 +22778.0,22769.0,0.5702082519531251 +22778.0,22770.0,0.3571256103515625 +22778.0,22771.0,0.1781740722656249 +22778.0,22772.0,0.256123291015625 +22778.0,22773.0,0.35455859375 +22778.0,22774.0,0.2578269958496094 +22778.0,22775.0,0.293869873046875 +22778.0,22776.0,0.47148388671875 +22778.0,22777.0,0.52280517578125 +22778.0,22779.0,0.5516982421875001 +22778.0,22780.0,0.6359190673828125 +22778.0,22781.0,0.5104802246093749 +22778.0,22782.0,0.50891943359375 +22778.0,22783.0,0.447973388671875 +22778.0,22784.0,0.958817626953125 +22778.0,22786.0,0.74021484375 +22778.0,22787.0,0.879375 +22778.0,22788.0,0.7942012939453125 +22778.0,22798.0,0.7222177124023438 +22778.0,22799.0,0.5042998046875 +22778.0,22800.0,0.828104248046875 +22778.0,22801.0,0.54306884765625 +22778.0,22802.0,0.905062255859375 +22778.0,22803.0,0.7882626953125 +22778.0,22804.0,0.897619140625 +22778.0,22805.0,0.6953564453125 +22778.0,22806.0,0.82427685546875 +22778.0,22807.0,0.8432861328125 +22778.0,22809.0,0.9005643310546875 +22779.0,22737.0,0.895833984375 +22779.0,22738.0,0.940140380859375 +22779.0,22745.0,0.901014404296875 +22779.0,22746.0,0.8363817138671875 +22779.0,22747.0,0.6295254364013672 +22779.0,22748.0,0.773793701171875 +22779.0,22749.0,0.97118212890625 +22779.0,22753.0,0.970984375 +22779.0,22754.0,0.8019861450195312 +22779.0,22755.0,0.9636025390625 +22779.0,22756.0,0.728587646484375 +22779.0,22767.0,0.9071207275390624 +22779.0,22769.0,0.840414306640625 +22779.0,22770.0,0.6273316650390625 +22779.0,22771.0,0.572380126953125 +22779.0,22772.0,0.463329345703125 +22779.0,22773.0,0.6247646484375 +22779.0,22774.0,0.3970330505371093 +22779.0,22775.0,0.453075927734375 +22779.0,22776.0,0.35368994140625 +22779.0,22777.0,0.51501123046875 +22779.0,22778.0,0.5516982421875001 +22779.0,22780.0,0.1761251220703125 +22779.0,22781.0,0.148686279296875 +22779.0,22782.0,0.21812548828125 +22779.0,22783.0,0.289179443359375 +22779.0,22784.0,0.614023681640625 +22779.0,22785.0,0.605991455078125 +22779.0,22786.0,0.3764208984375 +22779.0,22787.0,0.4185810546875 +22779.0,22788.0,0.5794073486328125 +22779.0,22790.0,0.892347900390625 +22779.0,22792.0,0.939416015625 +22779.0,22793.0,0.8680596923828126 +22779.0,22794.0,0.8250950927734375 +22779.0,22797.0,0.8738945922851562 +22779.0,22798.0,0.5404237670898437 +22779.0,22799.0,0.345505859375 +22779.0,22800.0,0.705310302734375 +22779.0,22801.0,0.38427490234375 +22779.0,22802.0,0.826268310546875 +22779.0,22803.0,0.66546875 +22779.0,22804.0,0.8188251953125 +22779.0,22805.0,0.6505625 +22779.0,22806.0,0.74548291015625 +22779.0,22807.0,0.8124921875 +22779.0,22808.0,0.991588134765625 +22779.0,22809.0,0.8697703857421875 +22779.0,22811.0,0.930886962890625 +22780.0,22737.0,0.9800548095703124 +22780.0,22745.0,0.9852352294921874 +22780.0,22746.0,0.9206025390625 +22780.0,22747.0,0.7137462615966796 +22780.0,22748.0,0.8580145263671874 +22780.0,22754.0,0.8862069702148437 +22780.0,22756.0,0.8128084716796875 +22780.0,22767.0,0.991341552734375 +22780.0,22769.0,0.9246351318359376 +22780.0,22770.0,0.711552490234375 +22780.0,22771.0,0.6566009521484375 +22780.0,22772.0,0.5625501708984375 +22780.0,22773.0,0.7089854736328125 +22780.0,22774.0,0.4812538757324219 +22780.0,22775.0,0.4692967529296875 +22780.0,22776.0,0.3269107666015625 +22780.0,22777.0,0.3622320556640625 +22780.0,22778.0,0.6359190673828125 +22780.0,22779.0,0.1761251220703125 +22780.0,22781.0,0.2479071044921875 +22780.0,22782.0,0.3173463134765625 +22780.0,22783.0,0.3884002685546875 +22780.0,22784.0,0.6872445068359375 +22780.0,22785.0,0.5802122802734375 +22780.0,22786.0,0.4756417236328125 +22780.0,22787.0,0.3928018798828125 +22780.0,22788.0,0.678628173828125 +22780.0,22790.0,0.8665687255859374 +22780.0,22791.0,0.9983157958984376 +22780.0,22792.0,0.9136368408203124 +22780.0,22793.0,0.842280517578125 +22780.0,22794.0,0.90931591796875 +22780.0,22797.0,0.9521154174804688 +22780.0,22798.0,0.6396445922851562 +22780.0,22799.0,0.4447266845703125 +22780.0,22800.0,0.8045311279296875 +22780.0,22801.0,0.4834957275390625 +22780.0,22802.0,0.9254891357421876 +22780.0,22803.0,0.7646895751953126 +22780.0,22804.0,0.9180460205078124 +22780.0,22805.0,0.7497833251953125 +22780.0,22806.0,0.8447037353515625 +22780.0,22807.0,0.9117130126953124 +22780.0,22809.0,0.9689912109375 +22781.0,22737.0,0.854615966796875 +22781.0,22738.0,0.89892236328125 +22781.0,22745.0,0.85979638671875 +22781.0,22746.0,0.7951636962890625 +22781.0,22747.0,0.5883074188232422 +22781.0,22748.0,0.73257568359375 +22781.0,22749.0,0.929964111328125 +22781.0,22750.0,0.988813232421875 +22781.0,22751.0,0.9820967407226564 +22781.0,22752.0,0.9891561279296875 +22781.0,22753.0,0.929766357421875 +22781.0,22754.0,0.7607681274414062 +22781.0,22755.0,0.922384521484375 +22781.0,22756.0,0.68736962890625 +22781.0,22767.0,0.8659027099609375 +22781.0,22769.0,0.7991962890625 +22781.0,22770.0,0.5861136474609375 +22781.0,22771.0,0.5311621093750001 +22781.0,22772.0,0.407111328125 +22781.0,22773.0,0.5835466308593751 +22781.0,22774.0,0.3558150329589843 +22781.0,22775.0,0.5158579101562499 +22781.0,22776.0,0.425471923828125 +22781.0,22777.0,0.586793212890625 +22781.0,22778.0,0.5104802246093749 +22781.0,22779.0,0.148686279296875 +22781.0,22780.0,0.2479071044921875 +22781.0,22782.0,0.161907470703125 +22781.0,22783.0,0.23296142578125 +22781.0,22784.0,0.5598056640625 +22781.0,22785.0,0.6757734375 +22781.0,22786.0,0.322202880859375 +22781.0,22787.0,0.488363037109375 +22781.0,22788.0,0.5251893310546876 +22781.0,22790.0,0.9621298828125 +22781.0,22793.0,0.9378416748046876 +22781.0,22794.0,0.7708770751953125 +22781.0,22797.0,0.8196765747070313 +22781.0,22798.0,0.4862057495117187 +22781.0,22799.0,0.289287841796875 +22781.0,22800.0,0.65109228515625 +22781.0,22801.0,0.328056884765625 +22781.0,22802.0,0.77005029296875 +22781.0,22803.0,0.611250732421875 +22781.0,22804.0,0.762607177734375 +22781.0,22805.0,0.594344482421875 +22781.0,22806.0,0.689264892578125 +22781.0,22807.0,0.756274169921875 +22781.0,22808.0,0.9353701171875 +22781.0,22809.0,0.8135523681640625 +22781.0,22811.0,0.8746689453125 +22782.0,22737.0,0.80905517578125 +22782.0,22738.0,0.853361572265625 +22782.0,22740.0,0.961366943359375 +22782.0,22742.0,0.955625 +22782.0,22745.0,0.814235595703125 +22782.0,22746.0,0.7496029052734375 +22782.0,22747.0,0.5427466278076172 +22782.0,22748.0,0.687014892578125 +22782.0,22749.0,0.9994033203125 +22782.0,22753.0,0.98020556640625 +22782.0,22754.0,0.8112073364257812 +22782.0,22755.0,0.99182373046875 +22782.0,22756.0,0.641808837890625 +22782.0,22767.0,0.8203419189453125 +22782.0,22769.0,0.753635498046875 +22782.0,22770.0,0.5405528564453125 +22782.0,22771.0,0.485601318359375 +22782.0,22772.0,0.350550537109375 +22782.0,22773.0,0.53798583984375 +22782.0,22774.0,0.4252542419433593 +22782.0,22775.0,0.585297119140625 +22782.0,22776.0,0.4949111328125 +22782.0,22777.0,0.656232421875 +22782.0,22778.0,0.50891943359375 +22782.0,22779.0,0.21812548828125 +22782.0,22780.0,0.3173463134765625 +22782.0,22781.0,0.161907470703125 +22782.0,22783.0,0.176400634765625 +22782.0,22784.0,0.610244873046875 +22782.0,22785.0,0.738212646484375 +22782.0,22786.0,0.37264208984375 +22782.0,22787.0,0.55780224609375 +22782.0,22788.0,0.4736285400390625 +22782.0,22792.0,0.97563720703125 +22782.0,22793.0,0.9082808837890624 +22782.0,22794.0,0.7153162841796875 +22782.0,22797.0,0.7681157836914062 +22782.0,22798.0,0.4306449584960937 +22782.0,22799.0,0.23272705078125 +22782.0,22800.0,0.595531494140625 +22782.0,22801.0,0.27149609375 +22782.0,22802.0,0.713489501953125 +22782.0,22803.0,0.5556899414062499 +22782.0,22804.0,0.70604638671875 +22782.0,22805.0,0.5377836914062499 +22782.0,22806.0,0.6327041015625 +22782.0,22807.0,0.69971337890625 +22782.0,22808.0,0.878809326171875 +22782.0,22809.0,0.7569915771484375 +22782.0,22811.0,0.818108154296875 +22782.0,22813.0,0.9889189453125 +22783.0,22737.0,0.744109130859375 +22783.0,22738.0,0.78741552734375 +22783.0,22739.0,0.984025146484375 +22783.0,22740.0,0.8964208984375 +22783.0,22741.0,0.9534443359375 +22783.0,22742.0,0.890678955078125 +22783.0,22745.0,0.74628955078125 +22783.0,22746.0,0.6836568603515625 +22783.0,22747.0,0.4818005828857422 +22783.0,22748.0,0.62106884765625 +22783.0,22749.0,0.975457275390625 +22783.0,22752.0,0.9786492919921876 +22783.0,22753.0,0.919259521484375 +22783.0,22754.0,0.7502612915039063 +22783.0,22755.0,0.967877685546875 +22783.0,22756.0,0.58086279296875 +22783.0,22767.0,0.7513958740234375 +22783.0,22768.0,0.999693115234375 +22783.0,22769.0,0.684689453125 +22783.0,22770.0,0.4726068115234375 +22783.0,22771.0,0.4206552734375 +22783.0,22772.0,0.2776044921875 +22783.0,22773.0,0.470039794921875 +22783.0,22774.0,0.4763081970214843 +22783.0,22775.0,0.63635107421875 +22783.0,22776.0,0.5589650878906249 +22783.0,22777.0,0.727286376953125 +22783.0,22778.0,0.447973388671875 +22783.0,22779.0,0.289179443359375 +22783.0,22780.0,0.3884002685546875 +22783.0,22781.0,0.23296142578125 +22783.0,22782.0,0.176400634765625 +22783.0,22784.0,0.614298828125 +22783.0,22785.0,0.7652666015625 +22783.0,22786.0,0.441696044921875 +22783.0,22787.0,0.627856201171875 +22783.0,22788.0,0.4496824951171875 +22783.0,22792.0,0.944691162109375 +22783.0,22793.0,0.8773348388671875 +22783.0,22794.0,0.6623702392578125 +22783.0,22797.0,0.7251697387695313 +22783.0,22798.0,0.3776989135742187 +22783.0,22799.0,0.159781005859375 +22783.0,22800.0,0.5425854492187501 +22783.0,22801.0,0.198550048828125 +22783.0,22802.0,0.64054345703125 +22783.0,22803.0,0.502743896484375 +22783.0,22804.0,0.633100341796875 +22783.0,22805.0,0.464837646484375 +22783.0,22806.0,0.5597580566406251 +22783.0,22807.0,0.626767333984375 +22783.0,22808.0,0.80586328125 +22783.0,22809.0,0.6840455322265625 +22783.0,22811.0,0.745162109375 +22783.0,22813.0,0.915972900390625 +22784.0,22770.0,0.9244510498046876 +22784.0,22771.0,0.92849951171875 +22784.0,22772.0,0.78844873046875 +22784.0,22773.0,0.921884033203125 +22784.0,22774.0,0.8231524353027344 +22784.0,22775.0,0.9831953125 +22784.0,22776.0,0.864809326171875 +22784.0,22778.0,0.958817626953125 +22784.0,22779.0,0.614023681640625 +22784.0,22780.0,0.6872445068359375 +22784.0,22781.0,0.5598056640625 +22784.0,22782.0,0.610244873046875 +22784.0,22783.0,0.614298828125 +22784.0,22785.0,0.21011083984375 +22784.0,22786.0,0.323540283203125 +22784.0,22787.0,0.5127004394531249 +22784.0,22788.0,0.2165267333984375 +22784.0,22789.0,0.6257197265625 +22784.0,22790.0,0.49946728515625 +22784.0,22791.0,0.63721435546875 +22784.0,22792.0,0.533535400390625 +22784.0,22793.0,0.4661790771484375 +22784.0,22794.0,0.3632144775390625 +22784.0,22795.0,0.784533935546875 +22784.0,22796.0,0.933319580078125 +22784.0,22797.0,0.3350139770507812 +22784.0,22798.0,0.3935431518554687 +22784.0,22799.0,0.667625244140625 +22784.0,22800.0,0.5974296875 +22784.0,22801.0,0.650394287109375 +22784.0,22802.0,0.7583876953125 +22784.0,22803.0,0.670588134765625 +22784.0,22804.0,0.725944580078125 +22784.0,22805.0,0.811681884765625 +22784.0,22806.0,0.792602294921875 +22784.0,22807.0,0.968611572265625 +22784.0,22808.0,0.92270751953125 +22784.0,22809.0,0.9498897705078124 +22784.0,22810.0,0.923772216796875 +22784.0,22811.0,0.59600634765625 +22784.0,22812.0,0.927375732421875 +22784.0,22813.0,0.904817138671875 +22784.0,22814.0,0.9540830078125 +22785.0,22772.0,0.93941650390625 +22785.0,22774.0,0.9121202087402344 +22785.0,22775.0,0.9001630859375 +22785.0,22776.0,0.757777099609375 +22785.0,22777.0,0.919098388671875 +22785.0,22779.0,0.605991455078125 +22785.0,22780.0,0.5802122802734375 +22785.0,22781.0,0.6757734375 +22785.0,22782.0,0.738212646484375 +22785.0,22783.0,0.7652666015625 +22785.0,22784.0,0.21011083984375 +22785.0,22786.0,0.451508056640625 +22785.0,22787.0,0.405668212890625 +22785.0,22788.0,0.3674945068359375 +22785.0,22789.0,0.5186875 +22785.0,22790.0,0.38243505859375 +22785.0,22791.0,0.52018212890625 +22785.0,22792.0,0.426503173828125 +22785.0,22793.0,0.3551468505859375 +22785.0,22794.0,0.5141822509765626 +22785.0,22795.0,0.917501708984375 +22785.0,22797.0,0.4859817504882812 +22785.0,22798.0,0.5445109252929687 +22785.0,22799.0,0.818593017578125 +22785.0,22800.0,0.7483974609375 +22785.0,22801.0,0.801362060546875 +22785.0,22802.0,0.90935546875 +22785.0,22803.0,0.821555908203125 +22785.0,22804.0,0.876912353515625 +22785.0,22805.0,0.962649658203125 +22785.0,22806.0,0.943570068359375 +22785.0,22811.0,0.74697412109375 +22786.0,22746.0,0.9918983154296876 +22786.0,22747.0,0.8100420379638672 +22786.0,22748.0,0.929310302734375 +22786.0,22754.0,0.9905027465820312 +22786.0,22756.0,0.909104248046875 +22786.0,22769.0,0.982930908203125 +22786.0,22770.0,0.7808482666015625 +22786.0,22771.0,0.752896728515625 +22786.0,22772.0,0.615845947265625 +22786.0,22773.0,0.77828125 +22786.0,22774.0,0.5855496520996094 +22786.0,22775.0,0.745592529296875 +22786.0,22776.0,0.65320654296875 +22786.0,22777.0,0.81452783203125 +22786.0,22778.0,0.74021484375 +22786.0,22779.0,0.3764208984375 +22786.0,22780.0,0.4756417236328125 +22786.0,22781.0,0.322202880859375 +22786.0,22782.0,0.37264208984375 +22786.0,22783.0,0.441696044921875 +22786.0,22784.0,0.323540283203125 +22786.0,22785.0,0.451508056640625 +22786.0,22787.0,0.44409765625 +22786.0,22788.0,0.2889239501953125 +22786.0,22789.0,0.877116943359375 +22786.0,22790.0,0.740864501953125 +22786.0,22791.0,0.878611572265625 +22786.0,22792.0,0.7849326171875 +22786.0,22793.0,0.7135762939453125 +22786.0,22794.0,0.5346116943359376 +22786.0,22797.0,0.5834111938476563 +22786.0,22798.0,0.2499403686523437 +22786.0,22799.0,0.4960224609375 +22786.0,22800.0,0.566826904296875 +22786.0,22801.0,0.50679150390625 +22786.0,22802.0,0.707784912109375 +22786.0,22803.0,0.5269853515625 +22786.0,22804.0,0.694341796875 +22786.0,22805.0,0.6680791015625 +22786.0,22806.0,0.64899951171875 +22786.0,22807.0,0.8250087890625 +22786.0,22808.0,0.873104736328125 +22786.0,22809.0,0.8062869873046875 +22786.0,22811.0,0.654403564453125 +22786.0,22813.0,0.92621435546875 +22787.0,22747.0,0.9572021942138672 +22787.0,22770.0,0.9550084228515624 +22787.0,22771.0,0.900056884765625 +22787.0,22772.0,0.802006103515625 +22787.0,22773.0,0.95244140625 +22787.0,22774.0,0.7247098083496094 +22787.0,22775.0,0.712752685546875 +22787.0,22776.0,0.5703666992187499 +22787.0,22777.0,0.62968798828125 +22787.0,22778.0,0.879375 +22787.0,22779.0,0.4185810546875 +22787.0,22780.0,0.3928018798828125 +22787.0,22781.0,0.488363037109375 +22787.0,22782.0,0.55780224609375 +22787.0,22783.0,0.627856201171875 +22787.0,22784.0,0.5127004394531249 +22787.0,22785.0,0.405668212890625 +22787.0,22786.0,0.44409765625 +22787.0,22788.0,0.5880841064453125 +22787.0,22789.0,0.822277099609375 +22787.0,22790.0,0.588024658203125 +22787.0,22791.0,0.719771728515625 +22787.0,22792.0,0.7390927734375 +22787.0,22793.0,0.6677364501953125 +22787.0,22794.0,0.7347718505859375 +22787.0,22797.0,0.7775713500976562 +22787.0,22798.0,0.6081005249023438 +22787.0,22799.0,0.6821826171875 +22787.0,22800.0,0.772987060546875 +22787.0,22801.0,0.71295166015625 +22787.0,22802.0,0.913945068359375 +22787.0,22803.0,0.7331455078125 +22787.0,22804.0,0.900501953125 +22787.0,22805.0,0.8742392578125 +22787.0,22806.0,0.85515966796875 +22788.0,22746.0,0.986884765625 +22788.0,22747.0,0.8280284881591797 +22788.0,22748.0,0.9242967529296876 +22788.0,22756.0,0.9270906982421876 +22788.0,22769.0,0.9779173583984376 +22788.0,22770.0,0.775834716796875 +22788.0,22771.0,0.7638831787109375 +22788.0,22772.0,0.6238323974609375 +22788.0,22773.0,0.7732677001953125 +22788.0,22774.0,0.7885361022949219 +22788.0,22775.0,0.9485789794921876 +22788.0,22776.0,0.8561929931640625 +22788.0,22778.0,0.7942012939453125 +22788.0,22779.0,0.5794073486328125 +22788.0,22780.0,0.678628173828125 +22788.0,22781.0,0.5251893310546876 +22788.0,22782.0,0.4736285400390625 +22788.0,22783.0,0.4496824951171875 +22788.0,22784.0,0.2165267333984375 +22788.0,22785.0,0.3674945068359375 +22788.0,22786.0,0.2889239501953125 +22788.0,22787.0,0.5880841064453125 +22788.0,22789.0,0.6461033935546875 +22788.0,22790.0,0.6568509521484375 +22788.0,22791.0,0.7945980224609375 +22788.0,22792.0,0.5539190673828125 +22788.0,22793.0,0.486562744140625 +22788.0,22794.0,0.31259814453125 +22788.0,22795.0,0.8049176025390625 +22788.0,22796.0,0.9467032470703124 +22788.0,22797.0,0.3553976440429687 +22788.0,22798.0,0.2449268188476562 +22788.0,22799.0,0.5030089111328124 +22788.0,22800.0,0.5008133544921876 +22788.0,22801.0,0.5017779541015626 +22788.0,22802.0,0.6617713623046875 +22788.0,22803.0,0.5219718017578125 +22788.0,22804.0,0.6293282470703125 +22788.0,22805.0,0.6630655517578125 +22788.0,22806.0,0.6439859619140625 +22788.0,22807.0,0.8199952392578125 +22788.0,22808.0,0.8260911865234375 +22788.0,22809.0,0.8012734375 +22788.0,22810.0,0.9371558837890624 +22788.0,22811.0,0.5563900146484375 +22788.0,22812.0,0.9407593994140624 +22788.0,22813.0,0.8282008056640625 +22788.0,22814.0,0.9234666748046876 +22789.0,22784.0,0.6257197265625 +22789.0,22785.0,0.5186875 +22789.0,22786.0,0.877116943359375 +22789.0,22787.0,0.822277099609375 +22789.0,22788.0,0.6461033935546875 +22789.0,22790.0,0.3080439453125 +22789.0,22791.0,0.334791015625 +22789.0,22792.0,0.169112060546875 +22789.0,22793.0,0.2057557373046875 +22789.0,22794.0,0.6487911376953125 +22789.0,22795.0,0.419110595703125 +22789.0,22796.0,0.624896240234375 +22789.0,22797.0,0.4795906372070312 +22789.0,22798.0,0.6791198120117188 +22789.0,22799.0,0.993201904296875 +22789.0,22800.0,0.88300634765625 +22789.0,22801.0,0.935970947265625 +22789.0,22803.0,0.956164794921875 +22789.0,22811.0,0.8265830078125 +22790.0,22779.0,0.892347900390625 +22790.0,22780.0,0.8665687255859374 +22790.0,22781.0,0.9621298828125 +22790.0,22784.0,0.49946728515625 +22790.0,22785.0,0.38243505859375 +22790.0,22786.0,0.740864501953125 +22790.0,22787.0,0.588024658203125 +22790.0,22788.0,0.6568509521484375 +22790.0,22789.0,0.3080439453125 +22790.0,22791.0,0.32753857421875 +22790.0,22792.0,0.233859619140625 +22790.0,22793.0,0.2705032958984374 +22790.0,22794.0,0.7145386962890625 +22790.0,22795.0,0.710858154296875 +22790.0,22796.0,0.916643798828125 +22790.0,22797.0,0.5453381958007812 +22790.0,22798.0,0.7448673706054687 +22790.0,22800.0,0.94875390625 +22790.0,22811.0,0.89233056640625 +22791.0,22780.0,0.9983157958984376 +22791.0,22784.0,0.63721435546875 +22791.0,22785.0,0.52018212890625 +22791.0,22786.0,0.878611572265625 +22791.0,22787.0,0.719771728515625 +22791.0,22788.0,0.7945980224609375 +22791.0,22789.0,0.334791015625 +22791.0,22790.0,0.32753857421875 +22791.0,22792.0,0.486606689453125 +22791.0,22793.0,0.5232503662109376 +22791.0,22794.0,0.9412857666015624 +22791.0,22795.0,0.6336052246093751 +22791.0,22796.0,0.839390869140625 +22791.0,22797.0,0.7970852661132812 +22791.0,22798.0,0.9716144409179688 +22792.0,22779.0,0.939416015625 +22792.0,22780.0,0.9136368408203124 +22792.0,22782.0,0.97563720703125 +22792.0,22783.0,0.944691162109375 +22792.0,22784.0,0.533535400390625 +22792.0,22785.0,0.426503173828125 +22792.0,22786.0,0.7849326171875 +22792.0,22787.0,0.7390927734375 +22792.0,22788.0,0.5539190673828125 +22792.0,22789.0,0.169112060546875 +22792.0,22790.0,0.233859619140625 +22792.0,22791.0,0.486606689453125 +22792.0,22793.0,0.1125714111328125 +22792.0,22794.0,0.5566068115234375 +22792.0,22795.0,0.57092626953125 +22792.0,22796.0,0.7767119140625 +22792.0,22797.0,0.3874063110351562 +22792.0,22798.0,0.5869354858398438 +22792.0,22799.0,0.901017578125 +22792.0,22800.0,0.790822021484375 +22792.0,22801.0,0.84378662109375 +22792.0,22802.0,0.951780029296875 +22792.0,22803.0,0.86398046875 +22792.0,22804.0,0.9193369140625 +22792.0,22806.0,0.98599462890625 +22792.0,22811.0,0.734398681640625 +22793.0,22779.0,0.8680596923828126 +22793.0,22780.0,0.842280517578125 +22793.0,22781.0,0.9378416748046876 +22793.0,22782.0,0.9082808837890624 +22793.0,22783.0,0.8773348388671875 +22793.0,22784.0,0.4661790771484375 +22793.0,22785.0,0.3551468505859375 +22793.0,22786.0,0.7135762939453125 +22793.0,22787.0,0.6677364501953125 +22793.0,22788.0,0.486562744140625 +22793.0,22789.0,0.2057557373046875 +22793.0,22790.0,0.2705032958984374 +22793.0,22791.0,0.5232503662109376 +22793.0,22792.0,0.1125714111328125 +22793.0,22794.0,0.48925048828125 +22793.0,22795.0,0.6015699462890625 +22793.0,22796.0,0.8073555908203125 +22793.0,22797.0,0.3200499877929687 +22793.0,22798.0,0.5195791625976562 +22793.0,22799.0,0.8336612548828125 +22793.0,22800.0,0.7234656982421875 +22793.0,22801.0,0.7764302978515625 +22793.0,22802.0,0.8844237060546875 +22793.0,22803.0,0.7966241455078125 +22793.0,22804.0,0.8519805908203125 +22793.0,22805.0,0.9377178955078124 +22793.0,22806.0,0.9186383056640623 +22793.0,22810.0,0.9948082275390624 +22793.0,22811.0,0.6670423583984375 +22793.0,22812.0,0.9984117431640624 +22793.0,22813.0,0.9758531494140624 +22794.0,22745.0,0.9242052001953124 +22794.0,22746.0,0.958572509765625 +22794.0,22748.0,0.9839844970703124 +22794.0,22767.0,0.9223115234375 +22794.0,22769.0,0.8556051025390625 +22794.0,22770.0,0.7475224609375 +22794.0,22771.0,0.8795709228515625 +22794.0,22772.0,0.8365201416015625 +22794.0,22773.0,0.8329554443359375 +22794.0,22779.0,0.8250950927734375 +22794.0,22780.0,0.90931591796875 +22794.0,22781.0,0.7708770751953125 +22794.0,22782.0,0.7153162841796875 +22794.0,22783.0,0.6623702392578125 +22794.0,22784.0,0.3632144775390625 +22794.0,22785.0,0.5141822509765626 +22794.0,22786.0,0.5346116943359376 +22794.0,22787.0,0.7347718505859375 +22794.0,22788.0,0.31259814453125 +22794.0,22789.0,0.6487911376953125 +22794.0,22790.0,0.7145386962890625 +22794.0,22791.0,0.9412857666015624 +22794.0,22792.0,0.5566068115234375 +22794.0,22793.0,0.48925048828125 +22794.0,22795.0,0.8036053466796875 +22794.0,22796.0,0.6833909912109375 +22794.0,22797.0,0.2110853881835937 +22794.0,22798.0,0.3046145629882812 +22794.0,22799.0,0.6186966552734375 +22794.0,22800.0,0.2975010986328125 +22794.0,22801.0,0.5614656982421875 +22794.0,22802.0,0.4584591064453125 +22794.0,22803.0,0.3996595458984375 +22794.0,22804.0,0.4260159912109375 +22794.0,22805.0,0.5407532958984376 +22794.0,22806.0,0.5216737060546874 +22794.0,22807.0,0.6976829833984375 +22794.0,22808.0,0.6227789306640625 +22794.0,22809.0,0.676961181640625 +22794.0,22810.0,0.6738436279296875 +22794.0,22811.0,0.3460777587890625 +22794.0,22812.0,0.6774471435546875 +22794.0,22813.0,0.6248885498046876 +22794.0,22814.0,0.7041544189453125 +22794.0,22815.0,0.8794432373046875 +22794.0,22816.0,0.8030367431640625 +22794.0,22817.0,0.908473388671875 +22794.0,22818.0,0.795483154296875 +22795.0,22784.0,0.784533935546875 +22795.0,22785.0,0.917501708984375 +22795.0,22788.0,0.8049176025390625 +22795.0,22789.0,0.419110595703125 +22795.0,22790.0,0.710858154296875 +22795.0,22791.0,0.6336052246093751 +22795.0,22792.0,0.57092626953125 +22795.0,22793.0,0.6015699462890625 +22795.0,22794.0,0.8036053466796875 +22795.0,22796.0,0.45371044921875 +22795.0,22797.0,0.6384048461914062 +22795.0,22798.0,0.8379340209960937 +22795.0,22811.0,0.974397216796875 +22795.0,22812.0,0.9947666015625 +22796.0,22784.0,0.933319580078125 +22796.0,22788.0,0.9467032470703124 +22796.0,22789.0,0.624896240234375 +22796.0,22790.0,0.916643798828125 +22796.0,22791.0,0.839390869140625 +22796.0,22792.0,0.7767119140625 +22796.0,22793.0,0.8073555908203125 +22796.0,22794.0,0.6833909912109375 +22796.0,22795.0,0.45371044921875 +22796.0,22797.0,0.6581904907226562 +22796.0,22798.0,0.9387196655273438 +22796.0,22800.0,0.931606201171875 +22796.0,22811.0,0.854182861328125 +22796.0,22812.0,0.92755224609375 +22797.0,22770.0,0.8983219604492187 +22797.0,22771.0,0.9423704223632812 +22797.0,22772.0,0.8993196411132812 +22797.0,22773.0,0.8957549438476563 +22797.0,22779.0,0.8738945922851562 +22797.0,22780.0,0.9521154174804688 +22797.0,22781.0,0.8196765747070313 +22797.0,22782.0,0.7681157836914062 +22797.0,22783.0,0.7251697387695313 +22797.0,22784.0,0.3350139770507812 +22797.0,22785.0,0.4859817504882812 +22797.0,22786.0,0.5834111938476563 +22797.0,22787.0,0.7775713500976562 +22797.0,22788.0,0.3553976440429687 +22797.0,22789.0,0.4795906372070312 +22797.0,22790.0,0.5453381958007812 +22797.0,22791.0,0.7970852661132812 +22797.0,22792.0,0.3874063110351562 +22797.0,22793.0,0.3200499877929687 +22797.0,22794.0,0.2110853881835937 +22797.0,22795.0,0.6384048461914062 +22797.0,22796.0,0.6581904907226562 +22797.0,22798.0,0.3674140625 +22797.0,22799.0,0.6814961547851562 +22797.0,22800.0,0.4593005981445312 +22797.0,22801.0,0.6242651977539062 +22797.0,22802.0,0.6152586059570313 +22797.0,22803.0,0.5614590454101562 +22797.0,22804.0,0.5838154907226563 +22797.0,22805.0,0.7025527954101562 +22797.0,22806.0,0.6804732055664062 +22797.0,22807.0,0.8564824829101563 +22797.0,22808.0,0.7765784301757812 +22797.0,22809.0,0.8337606811523437 +22797.0,22810.0,0.7136431274414062 +22797.0,22811.0,0.3858772583007812 +22797.0,22812.0,0.7172466430664063 +22797.0,22813.0,0.6946880493164063 +22797.0,22814.0,0.7439539184570313 +22797.0,22815.0,0.9192427368164062 +22797.0,22816.0,0.8428362426757813 +22797.0,22817.0,0.9482728881835938 +22797.0,22818.0,0.8352826538085938 +22798.0,22737.0,0.9183534545898436 +22798.0,22738.0,0.8656598510742187 +22798.0,22745.0,0.8215338745117188 +22798.0,22746.0,0.7619011840820312 +22798.0,22747.0,0.7560449066162109 +22798.0,22748.0,0.6993131713867188 +22798.0,22756.0,0.8551071166992188 +22798.0,22767.0,0.8196401977539063 +22798.0,22769.0,0.7529337768554687 +22798.0,22770.0,0.5508511352539063 +22798.0,22771.0,0.5948995971679687 +22798.0,22772.0,0.5518488159179687 +22798.0,22773.0,0.5482841186523437 +22798.0,22774.0,0.7495525207519531 +22798.0,22775.0,0.9095953979492188 +22798.0,22776.0,0.8172094116210937 +22798.0,22777.0,0.9785307006835936 +22798.0,22778.0,0.7222177124023438 +22798.0,22779.0,0.5404237670898437 +22798.0,22780.0,0.6396445922851562 +22798.0,22781.0,0.4862057495117187 +22798.0,22782.0,0.4306449584960937 +22798.0,22783.0,0.3776989135742187 +22798.0,22784.0,0.3935431518554687 +22798.0,22785.0,0.5445109252929687 +22798.0,22786.0,0.2499403686523437 +22798.0,22787.0,0.6081005249023438 +22798.0,22788.0,0.2449268188476562 +22798.0,22789.0,0.6791198120117188 +22798.0,22790.0,0.7448673706054687 +22798.0,22791.0,0.9716144409179688 +22798.0,22792.0,0.5869354858398438 +22798.0,22793.0,0.5195791625976562 +22798.0,22794.0,0.3046145629882812 +22798.0,22795.0,0.8379340209960937 +22798.0,22796.0,0.9387196655273438 +22798.0,22797.0,0.3674140625 +22798.0,22799.0,0.3340253295898437 +22798.0,22800.0,0.3368297729492187 +22798.0,22801.0,0.2767943725585937 +22798.0,22802.0,0.4777877807617187 +22798.0,22803.0,0.2969882202148437 +22798.0,22804.0,0.4643446655273437 +22798.0,22805.0,0.4380819702148437 +22798.0,22806.0,0.4190023803710938 +22798.0,22807.0,0.5950116577148438 +22798.0,22808.0,0.6431076049804687 +22798.0,22809.0,0.5762898559570313 +22798.0,22810.0,0.8911723022460938 +22798.0,22811.0,0.4244064331054687 +22798.0,22812.0,0.8907758178710937 +22798.0,22813.0,0.6962172241210938 +22798.0,22814.0,0.7914830932617187 +22798.0,22815.0,0.9667719116210938 +22798.0,22816.0,0.9363654174804688 +22798.0,22818.0,0.9008118286132812 +22799.0,22737.0,0.694435546875 +22799.0,22738.0,0.737741943359375 +22799.0,22739.0,0.9343515625 +22799.0,22740.0,0.846747314453125 +22799.0,22741.0,0.903770751953125 +22799.0,22742.0,0.84100537109375 +22799.0,22744.0,0.976020263671875 +22799.0,22745.0,0.696615966796875 +22799.0,22746.0,0.6339832763671875 +22799.0,22747.0,0.5381269989013672 +22799.0,22748.0,0.571395263671875 +22799.0,22753.0,0.9755859375 +22799.0,22754.0,0.8065877075195312 +22799.0,22756.0,0.637189208984375 +22799.0,22763.0,0.97688671875 +22799.0,22767.0,0.7017222900390625 +22799.0,22768.0,0.95001953125 +22799.0,22769.0,0.635015869140625 +22799.0,22770.0,0.4229332275390625 +22799.0,22771.0,0.370981689453125 +22799.0,22772.0,0.333930908203125 +22799.0,22773.0,0.4203662109375 +22799.0,22774.0,0.5326346130371094 +22799.0,22775.0,0.692677490234375 +22799.0,22776.0,0.61529150390625 +22799.0,22777.0,0.78361279296875 +22799.0,22778.0,0.5042998046875 +22799.0,22779.0,0.345505859375 +22799.0,22780.0,0.4447266845703125 +22799.0,22781.0,0.289287841796875 +22799.0,22782.0,0.23272705078125 +22799.0,22783.0,0.159781005859375 +22799.0,22784.0,0.667625244140625 +22799.0,22785.0,0.818593017578125 +22799.0,22786.0,0.4960224609375 +22799.0,22787.0,0.6821826171875 +22799.0,22788.0,0.5030089111328124 +22799.0,22789.0,0.993201904296875 +22799.0,22792.0,0.901017578125 +22799.0,22793.0,0.8336612548828125 +22799.0,22794.0,0.6186966552734375 +22799.0,22797.0,0.6814961547851562 +22799.0,22798.0,0.3340253295898437 +22799.0,22800.0,0.498911865234375 +22799.0,22801.0,0.14887646484375 +22799.0,22802.0,0.590869873046875 +22799.0,22803.0,0.4590703125 +22799.0,22804.0,0.5834267578125 +22799.0,22805.0,0.4151640625 +22799.0,22806.0,0.51008447265625 +22799.0,22807.0,0.57709375 +22799.0,22808.0,0.756189697265625 +22799.0,22809.0,0.6343719482421875 +22799.0,22811.0,0.695488525390625 +22799.0,22813.0,0.86629931640625 +22799.0,22814.0,0.961565185546875 +22800.0,22738.0,0.83754638671875 +22800.0,22739.0,0.934156005859375 +22800.0,22745.0,0.69842041015625 +22800.0,22746.0,0.7327877197265625 +22800.0,22747.0,0.8609314422607421 +22800.0,22748.0,0.76719970703125 +22800.0,22756.0,0.95999365234375 +22800.0,22763.0,0.972691162109375 +22800.0,22767.0,0.6965267333984375 +22800.0,22768.0,0.945823974609375 +22800.0,22769.0,0.6298203125 +22800.0,22770.0,0.5217376708984375 +22800.0,22771.0,0.6917861328125 +22800.0,22772.0,0.6577353515625 +22800.0,22773.0,0.616170654296875 +22800.0,22774.0,0.8564390563964843 +22800.0,22776.0,0.939095947265625 +22800.0,22778.0,0.828104248046875 +22800.0,22779.0,0.705310302734375 +22800.0,22780.0,0.8045311279296875 +22800.0,22781.0,0.65109228515625 +22800.0,22782.0,0.595531494140625 +22800.0,22783.0,0.5425854492187501 +22800.0,22784.0,0.5974296875 +22800.0,22785.0,0.7483974609375 +22800.0,22786.0,0.566826904296875 +22800.0,22787.0,0.772987060546875 +22800.0,22788.0,0.5008133544921876 +22800.0,22789.0,0.88300634765625 +22800.0,22790.0,0.94875390625 +22800.0,22792.0,0.790822021484375 +22800.0,22793.0,0.7234656982421875 +22800.0,22794.0,0.2975010986328125 +22800.0,22796.0,0.931606201171875 +22800.0,22797.0,0.4593005981445312 +22800.0,22798.0,0.3368297729492187 +22800.0,22799.0,0.498911865234375 +22800.0,22801.0,0.415680908203125 +22800.0,22802.0,0.30367431640625 +22800.0,22803.0,0.173874755859375 +22800.0,22804.0,0.2002312011718749 +22800.0,22805.0,0.3149685058593749 +22800.0,22806.0,0.295888916015625 +22800.0,22807.0,0.471898193359375 +22800.0,22808.0,0.5199941406249999 +22800.0,22809.0,0.4531763916015625 +22800.0,22810.0,0.774058837890625 +22800.0,22811.0,0.31229296875 +22800.0,22812.0,0.773662353515625 +22800.0,22813.0,0.579103759765625 +22800.0,22814.0,0.67436962890625 +22800.0,22815.0,0.849658447265625 +22800.0,22816.0,0.819251953125 +22800.0,22817.0,0.9246885986328124 +22800.0,22818.0,0.7836983642578125 +22801.0,22737.0,0.73020458984375 +22801.0,22738.0,0.650510986328125 +22801.0,22739.0,0.84712060546875 +22801.0,22740.0,0.761516357421875 +22801.0,22741.0,0.816539794921875 +22801.0,22742.0,0.8767744140625 +22801.0,22744.0,0.888789306640625 +22801.0,22745.0,0.609385009765625 +22801.0,22746.0,0.5467523193359375 +22801.0,22747.0,0.5768960418701172 +22801.0,22748.0,0.484164306640625 +22801.0,22754.0,0.8453567504882813 +22801.0,22756.0,0.675958251953125 +22801.0,22758.0,0.9743173828125 +22801.0,22763.0,0.88965576171875 +22801.0,22764.0,0.99918310546875 +22801.0,22765.0,0.94630810546875 +22801.0,22767.0,0.6144913330078124 +22801.0,22768.0,0.86278857421875 +22801.0,22769.0,0.547784912109375 +22801.0,22770.0,0.3357022705078125 +22801.0,22771.0,0.408750732421875 +22801.0,22772.0,0.372699951171875 +22801.0,22773.0,0.33313525390625 +22801.0,22774.0,0.5714036560058594 +22801.0,22775.0,0.731446533203125 +22801.0,22776.0,0.654060546875 +22801.0,22777.0,0.8223818359375 +22801.0,22778.0,0.54306884765625 +22801.0,22779.0,0.38427490234375 +22801.0,22780.0,0.4834957275390625 +22801.0,22781.0,0.328056884765625 +22801.0,22782.0,0.27149609375 +22801.0,22783.0,0.198550048828125 +22801.0,22784.0,0.650394287109375 +22801.0,22785.0,0.801362060546875 +22801.0,22786.0,0.50679150390625 +22801.0,22787.0,0.71295166015625 +22801.0,22788.0,0.5017779541015626 +22801.0,22789.0,0.935970947265625 +22801.0,22792.0,0.84378662109375 +22801.0,22793.0,0.7764302978515625 +22801.0,22794.0,0.5614656982421875 +22801.0,22797.0,0.6242651977539062 +22801.0,22798.0,0.2767943725585937 +22801.0,22799.0,0.14887646484375 +22801.0,22800.0,0.415680908203125 +22801.0,22802.0,0.5036389160156249 +22801.0,22803.0,0.37583935546875 +22801.0,22804.0,0.49619580078125 +22801.0,22805.0,0.32793310546875 +22801.0,22806.0,0.422853515625 +22801.0,22807.0,0.48986279296875 +22801.0,22808.0,0.668958740234375 +22801.0,22809.0,0.5471409912109375 +22801.0,22810.0,0.9740234375 +22801.0,22811.0,0.608257568359375 +22801.0,22812.0,0.973626953125 +22801.0,22813.0,0.779068359375 +22801.0,22814.0,0.874334228515625 +22801.0,22818.0,0.9836629638671875 +22802.0,22738.0,0.91450439453125 +22802.0,22739.0,0.857114013671875 +22802.0,22745.0,0.77537841796875 +22802.0,22746.0,0.8097457275390625 +22802.0,22747.0,0.9378894500732422 +22802.0,22748.0,0.84415771484375 +22802.0,22758.0,0.949310791015625 +22802.0,22759.0,0.952611083984375 +22802.0,22760.0,0.975452392578125 +22802.0,22763.0,0.840649169921875 +22802.0,22764.0,0.945176513671875 +22802.0,22765.0,0.897301513671875 +22802.0,22767.0,0.5584847412109375 +22802.0,22768.0,0.813781982421875 +22802.0,22769.0,0.5527783203125001 +22802.0,22770.0,0.5986956787109375 +22802.0,22771.0,0.768744140625 +22802.0,22772.0,0.734693359375 +22802.0,22773.0,0.693128662109375 +22802.0,22774.0,0.9333970642089844 +22802.0,22778.0,0.905062255859375 +22802.0,22779.0,0.826268310546875 +22802.0,22780.0,0.9254891357421876 +22802.0,22781.0,0.77005029296875 +22802.0,22782.0,0.713489501953125 +22802.0,22783.0,0.64054345703125 +22802.0,22784.0,0.7583876953125 +22802.0,22785.0,0.90935546875 +22802.0,22786.0,0.707784912109375 +22802.0,22787.0,0.913945068359375 +22802.0,22788.0,0.6617713623046875 +22802.0,22792.0,0.951780029296875 +22802.0,22793.0,0.8844237060546875 +22802.0,22794.0,0.4584591064453125 +22802.0,22797.0,0.6152586059570313 +22802.0,22798.0,0.4777877807617187 +22802.0,22799.0,0.590869873046875 +22802.0,22800.0,0.30367431640625 +22802.0,22801.0,0.5036389160156249 +22802.0,22803.0,0.3148327636718749 +22802.0,22804.0,0.218189208984375 +22802.0,22805.0,0.391926513671875 +22802.0,22806.0,0.2188469238281249 +22802.0,22807.0,0.3268562011718749 +22802.0,22808.0,0.3589521484375 +22802.0,22809.0,0.3041343994140625 +22802.0,22810.0,0.5560168457031249 +22802.0,22811.0,0.2582509765625 +22802.0,22812.0,0.555620361328125 +22802.0,22813.0,0.361061767578125 +22802.0,22814.0,0.45632763671875 +22802.0,22815.0,0.631616455078125 +22802.0,22816.0,0.6012099609375 +22802.0,22817.0,0.7066466064453125 +22802.0,22818.0,0.5656563720703125 +22803.0,22737.0,0.9733984375 +22803.0,22738.0,0.797704833984375 +22803.0,22739.0,0.894314453125 +22803.0,22741.0,0.987733642578125 +22803.0,22744.0,0.980983154296875 +22803.0,22745.0,0.658578857421875 +22803.0,22746.0,0.6929461669921875 +22803.0,22747.0,0.8210898895263672 +22803.0,22748.0,0.727358154296875 +22803.0,22756.0,0.920152099609375 +22803.0,22763.0,0.932849609375 +22803.0,22765.0,0.989501953125 +22803.0,22767.0,0.6566851806640625 +22803.0,22768.0,0.905982421875 +22803.0,22769.0,0.589978759765625 +22803.0,22770.0,0.4818961181640625 +22803.0,22771.0,0.651944580078125 +22803.0,22772.0,0.617893798828125 +22803.0,22773.0,0.5763291015625001 +22803.0,22774.0,0.8165975036621094 +22803.0,22775.0,0.976640380859375 +22803.0,22776.0,0.89925439453125 +22803.0,22778.0,0.7882626953125 +22803.0,22779.0,0.66546875 +22803.0,22780.0,0.7646895751953126 +22803.0,22781.0,0.611250732421875 +22803.0,22782.0,0.5556899414062499 +22803.0,22783.0,0.502743896484375 +22803.0,22784.0,0.670588134765625 +22803.0,22785.0,0.821555908203125 +22803.0,22786.0,0.5269853515625 +22803.0,22787.0,0.7331455078125 +22803.0,22788.0,0.5219718017578125 +22803.0,22789.0,0.956164794921875 +22803.0,22792.0,0.86398046875 +22803.0,22793.0,0.7966241455078125 +22803.0,22794.0,0.3996595458984375 +22803.0,22797.0,0.5614590454101562 +22803.0,22798.0,0.2969882202148437 +22803.0,22799.0,0.4590703125 +22803.0,22800.0,0.173874755859375 +22803.0,22801.0,0.37583935546875 +22803.0,22802.0,0.3148327636718749 +22803.0,22804.0,0.3013896484375 +22803.0,22805.0,0.275126953125 +22803.0,22806.0,0.25604736328125 +22803.0,22807.0,0.432056640625 +22803.0,22808.0,0.480152587890625 +22803.0,22809.0,0.4133348388671875 +22803.0,22810.0,0.78521728515625 +22803.0,22811.0,0.413451416015625 +22803.0,22812.0,0.78482080078125 +22803.0,22813.0,0.59026220703125 +22803.0,22814.0,0.685528076171875 +22803.0,22815.0,0.86081689453125 +22803.0,22816.0,0.830410400390625 +22803.0,22817.0,0.9358470458984376 +22803.0,22818.0,0.7948568115234375 +22804.0,22738.0,0.907061279296875 +22804.0,22739.0,0.8496708984375 +22804.0,22745.0,0.767935302734375 +22804.0,22746.0,0.8023026123046875 +22804.0,22747.0,0.9304463348388672 +22804.0,22748.0,0.836714599609375 +22804.0,22758.0,0.97686767578125 +22804.0,22763.0,0.8882060546875 +22804.0,22764.0,0.9977333984375 +22804.0,22765.0,0.9448583984375 +22804.0,22767.0,0.6120416259765625 +22804.0,22768.0,0.8613388671875 +22804.0,22769.0,0.545335205078125 +22804.0,22770.0,0.5912525634765625 +22804.0,22771.0,0.761301025390625 +22804.0,22772.0,0.727250244140625 +22804.0,22773.0,0.685685546875 +22804.0,22774.0,0.9259539489746094 +22804.0,22778.0,0.897619140625 +22804.0,22779.0,0.8188251953125 +22804.0,22780.0,0.9180460205078124 +22804.0,22781.0,0.762607177734375 +22804.0,22782.0,0.70604638671875 +22804.0,22783.0,0.633100341796875 +22804.0,22784.0,0.725944580078125 +22804.0,22785.0,0.876912353515625 +22804.0,22786.0,0.694341796875 +22804.0,22787.0,0.900501953125 +22804.0,22788.0,0.6293282470703125 +22804.0,22792.0,0.9193369140625 +22804.0,22793.0,0.8519805908203125 +22804.0,22794.0,0.4260159912109375 +22804.0,22797.0,0.5838154907226563 +22804.0,22798.0,0.4643446655273437 +22804.0,22799.0,0.5834267578125 +22804.0,22800.0,0.2002312011718749 +22804.0,22801.0,0.49619580078125 +22804.0,22802.0,0.218189208984375 +22804.0,22803.0,0.3013896484375 +22804.0,22805.0,0.3844833984375 +22804.0,22806.0,0.21140380859375 +22804.0,22807.0,0.3874130859375 +22804.0,22808.0,0.435509033203125 +22804.0,22809.0,0.3686912841796875 +22804.0,22810.0,0.68857373046875 +22804.0,22811.0,0.226807861328125 +22804.0,22812.0,0.68817724609375 +22804.0,22813.0,0.49361865234375 +22804.0,22814.0,0.588884521484375 +22804.0,22815.0,0.76417333984375 +22804.0,22816.0,0.733766845703125 +22804.0,22817.0,0.8392034912109375 +22804.0,22818.0,0.6982132568359375 +22805.0,22737.0,0.8774921875 +22805.0,22738.0,0.675798583984375 +22805.0,22739.0,0.750408203125 +22805.0,22740.0,0.908803955078125 +22805.0,22741.0,0.847827392578125 +22805.0,22743.0,0.95360107421875 +22805.0,22744.0,0.832076904296875 +22805.0,22745.0,0.5096726074218749 +22805.0,22746.0,0.5710399169921875 +22805.0,22747.0,0.7271836395263672 +22805.0,22748.0,0.633451904296875 +22805.0,22754.0,0.9956443481445312 +22805.0,22756.0,0.826245849609375 +22805.0,22757.0,0.9634365234375 +22805.0,22758.0,0.87760498046875 +22805.0,22759.0,0.9009052734375 +22805.0,22760.0,0.92374658203125 +22805.0,22763.0,0.788943359375 +22805.0,22764.0,0.898470703125 +22805.0,22765.0,0.845595703125 +22805.0,22767.0,0.5127789306640624 +22805.0,22768.0,0.762076171875 +22805.0,22769.0,0.446072509765625 +22805.0,22770.0,0.3609898681640625 +22805.0,22771.0,0.558038330078125 +22805.0,22772.0,0.524987548828125 +22805.0,22773.0,0.4824228515625 +22805.0,22774.0,0.7236912536621094 +22805.0,22775.0,0.883734130859375 +22805.0,22776.0,0.80634814453125 +22805.0,22778.0,0.6953564453125 +22805.0,22779.0,0.6505625 +22805.0,22780.0,0.7497833251953125 +22805.0,22781.0,0.594344482421875 +22805.0,22782.0,0.5377836914062499 +22805.0,22783.0,0.464837646484375 +22805.0,22784.0,0.811681884765625 +22805.0,22785.0,0.962649658203125 +22805.0,22786.0,0.6680791015625 +22805.0,22787.0,0.8742392578125 +22805.0,22788.0,0.6630655517578125 +22805.0,22793.0,0.9377178955078124 +22805.0,22794.0,0.5407532958984376 +22805.0,22797.0,0.7025527954101562 +22805.0,22798.0,0.4380819702148437 +22805.0,22799.0,0.4151640625 +22805.0,22800.0,0.3149685058593749 +22805.0,22801.0,0.32793310546875 +22805.0,22802.0,0.391926513671875 +22805.0,22803.0,0.275126953125 +22805.0,22804.0,0.3844833984375 +22805.0,22806.0,0.31114111328125 +22805.0,22807.0,0.288150390625 +22805.0,22808.0,0.5572463378906249 +22805.0,22809.0,0.3454285888671875 +22805.0,22810.0,0.86231103515625 +22805.0,22811.0,0.496545166015625 +22805.0,22812.0,0.86191455078125 +22805.0,22813.0,0.66735595703125 +22805.0,22814.0,0.762621826171875 +22805.0,22815.0,0.93791064453125 +22805.0,22816.0,0.907504150390625 +22805.0,22818.0,0.8719505615234375 +22806.0,22738.0,0.833718994140625 +22806.0,22739.0,0.77632861328125 +22806.0,22744.0,0.939997314453125 +22806.0,22745.0,0.694593017578125 +22806.0,22746.0,0.7289603271484375 +22806.0,22747.0,0.8571040496826172 +22806.0,22748.0,0.763372314453125 +22806.0,22756.0,0.956166259765625 +22806.0,22758.0,0.903525390625 +22806.0,22759.0,0.92682568359375 +22806.0,22760.0,0.9496669921875 +22806.0,22763.0,0.81486376953125 +22806.0,22764.0,0.92439111328125 +22806.0,22765.0,0.87151611328125 +22806.0,22767.0,0.5386993408203125 +22806.0,22768.0,0.78799658203125 +22806.0,22769.0,0.471992919921875 +22806.0,22770.0,0.5179102783203124 +22806.0,22771.0,0.687958740234375 +22806.0,22772.0,0.653907958984375 +22806.0,22773.0,0.61234326171875 +22806.0,22774.0,0.8526116638183594 +22806.0,22776.0,0.9352685546875 +22806.0,22778.0,0.82427685546875 +22806.0,22779.0,0.74548291015625 +22806.0,22780.0,0.8447037353515625 +22806.0,22781.0,0.689264892578125 +22806.0,22782.0,0.6327041015625 +22806.0,22783.0,0.5597580566406251 +22806.0,22784.0,0.792602294921875 +22806.0,22785.0,0.943570068359375 +22806.0,22786.0,0.64899951171875 +22806.0,22787.0,0.85515966796875 +22806.0,22788.0,0.6439859619140625 +22806.0,22792.0,0.98599462890625 +22806.0,22793.0,0.9186383056640623 +22806.0,22794.0,0.5216737060546874 +22806.0,22797.0,0.6804732055664062 +22806.0,22798.0,0.4190023803710938 +22806.0,22799.0,0.51008447265625 +22806.0,22800.0,0.295888916015625 +22806.0,22801.0,0.422853515625 +22806.0,22802.0,0.2188469238281249 +22806.0,22803.0,0.25604736328125 +22806.0,22804.0,0.21140380859375 +22806.0,22805.0,0.31114111328125 +22806.0,22807.0,0.31407080078125 +22806.0,22808.0,0.384166748046875 +22806.0,22809.0,0.3173489990234375 +22806.0,22810.0,0.6892314453125 +22806.0,22811.0,0.323465576171875 +22806.0,22812.0,0.6888349609375 +22806.0,22813.0,0.4942763671875 +22806.0,22814.0,0.5895422363281251 +22806.0,22815.0,0.7648310546875 +22806.0,22816.0,0.734424560546875 +22806.0,22817.0,0.8398612060546875 +22806.0,22818.0,0.6988709716796875 +22807.0,22738.0,0.821728271484375 +22807.0,22739.0,0.687337890625 +22807.0,22741.0,0.993757080078125 +22807.0,22744.0,0.851006591796875 +22807.0,22745.0,0.655602294921875 +22807.0,22746.0,0.7169696044921875 +22807.0,22747.0,0.8731133270263672 +22807.0,22748.0,0.779381591796875 +22807.0,22756.0,0.972175537109375 +22807.0,22757.0,0.9623662109375 +22807.0,22758.0,0.75453466796875 +22807.0,22759.0,0.7578349609375 +22807.0,22760.0,0.78067626953125 +22807.0,22761.0,0.9082197265625 +22807.0,22763.0,0.645873046875 +22807.0,22764.0,0.750400390625 +22807.0,22765.0,0.702525390625 +22807.0,22767.0,0.3637086181640625 +22807.0,22768.0,0.6190058593750001 +22807.0,22769.0,0.383002197265625 +22807.0,22770.0,0.5079195556640625 +22807.0,22771.0,0.704968017578125 +22807.0,22772.0,0.680917236328125 +22807.0,22773.0,0.6293525390625 +22807.0,22774.0,0.8796209411621094 +22807.0,22776.0,0.96227783203125 +22807.0,22778.0,0.8432861328125 +22807.0,22779.0,0.8124921875 +22807.0,22780.0,0.9117130126953124 +22807.0,22781.0,0.756274169921875 +22807.0,22782.0,0.69971337890625 +22807.0,22783.0,0.626767333984375 +22807.0,22784.0,0.968611572265625 +22807.0,22786.0,0.8250087890625 +22807.0,22788.0,0.8199952392578125 +22807.0,22794.0,0.6976829833984375 +22807.0,22797.0,0.8564824829101563 +22807.0,22798.0,0.5950116577148438 +22807.0,22799.0,0.57709375 +22807.0,22800.0,0.471898193359375 +22807.0,22801.0,0.48986279296875 +22807.0,22802.0,0.3268562011718749 +22807.0,22803.0,0.432056640625 +22807.0,22804.0,0.3874130859375 +22807.0,22805.0,0.288150390625 +22807.0,22806.0,0.31407080078125 +22807.0,22808.0,0.448176025390625 +22807.0,22809.0,0.1893582763671875 +22807.0,22810.0,0.79724072265625 +22807.0,22811.0,0.499474853515625 +22807.0,22812.0,0.79684423828125 +22807.0,22813.0,0.60228564453125 +22807.0,22814.0,0.697551513671875 +22807.0,22815.0,0.87284033203125 +22807.0,22816.0,0.842433837890625 +22807.0,22817.0,0.9478704833984376 +22807.0,22818.0,0.8068802490234375 +22808.0,22739.0,0.973433837890625 +22808.0,22745.0,0.9406982421875 +22808.0,22746.0,0.9750655517578124 +22808.0,22758.0,0.824630615234375 +22808.0,22759.0,0.827930908203125 +22808.0,22760.0,0.850772216796875 +22808.0,22761.0,0.978315673828125 +22808.0,22763.0,0.715968994140625 +22808.0,22764.0,0.820496337890625 +22808.0,22765.0,0.772621337890625 +22808.0,22767.0,0.5548045654296875 +22808.0,22768.0,0.689101806640625 +22808.0,22769.0,0.69209814453125 +22808.0,22770.0,0.7640155029296875 +22808.0,22771.0,0.93406396484375 +22808.0,22772.0,0.90001318359375 +22808.0,22773.0,0.858448486328125 +22808.0,22779.0,0.991588134765625 +22808.0,22781.0,0.9353701171875 +22808.0,22782.0,0.878809326171875 +22808.0,22783.0,0.80586328125 +22808.0,22784.0,0.92270751953125 +22808.0,22786.0,0.873104736328125 +22808.0,22788.0,0.8260911865234375 +22808.0,22794.0,0.6227789306640625 +22808.0,22797.0,0.7765784301757812 +22808.0,22798.0,0.6431076049804687 +22808.0,22799.0,0.756189697265625 +22808.0,22800.0,0.5199941406249999 +22808.0,22801.0,0.668958740234375 +22808.0,22802.0,0.3589521484375 +22808.0,22803.0,0.480152587890625 +22808.0,22804.0,0.435509033203125 +22808.0,22805.0,0.5572463378906249 +22808.0,22806.0,0.384166748046875 +22808.0,22807.0,0.448176025390625 +22808.0,22809.0,0.4254542236328125 +22808.0,22810.0,0.539336669921875 +22808.0,22811.0,0.41957080078125 +22808.0,22812.0,0.538940185546875 +22808.0,22813.0,0.322381591796875 +22808.0,22814.0,0.4176474609375 +22808.0,22815.0,0.581936279296875 +22808.0,22816.0,0.58452978515625 +22808.0,22817.0,0.6609664306640625 +22808.0,22818.0,0.5159761962890625 +22809.0,22738.0,0.8790064697265625 +22809.0,22739.0,0.7446160888671876 +22809.0,22744.0,0.9082847900390624 +22809.0,22745.0,0.7128804931640625 +22809.0,22746.0,0.774247802734375 +22809.0,22747.0,0.9303915252685548 +22809.0,22748.0,0.8366597900390625 +22809.0,22758.0,0.8118128662109375 +22809.0,22759.0,0.8151131591796875 +22809.0,22760.0,0.8379544677734375 +22809.0,22761.0,0.9654979248046875 +22809.0,22763.0,0.7031512451171875 +22809.0,22764.0,0.8076785888671875 +22809.0,22765.0,0.7598035888671875 +22809.0,22767.0,0.42098681640625 +22809.0,22768.0,0.6762840576171875 +22809.0,22769.0,0.4402803955078125 +22809.0,22770.0,0.56519775390625 +22809.0,22771.0,0.7622462158203125 +22809.0,22772.0,0.7381954345703124 +22809.0,22773.0,0.6866307373046875 +22809.0,22774.0,0.9368991394042968 +22809.0,22778.0,0.9005643310546875 +22809.0,22779.0,0.8697703857421875 +22809.0,22780.0,0.9689912109375 +22809.0,22781.0,0.8135523681640625 +22809.0,22782.0,0.7569915771484375 +22809.0,22783.0,0.6840455322265625 +22809.0,22784.0,0.9498897705078124 +22809.0,22786.0,0.8062869873046875 +22809.0,22788.0,0.8012734375 +22809.0,22794.0,0.676961181640625 +22809.0,22797.0,0.8337606811523437 +22809.0,22798.0,0.5762898559570313 +22809.0,22799.0,0.6343719482421875 +22809.0,22800.0,0.4531763916015625 +22809.0,22801.0,0.5471409912109375 +22809.0,22802.0,0.3041343994140625 +22809.0,22803.0,0.4133348388671875 +22809.0,22804.0,0.3686912841796875 +22809.0,22805.0,0.3454285888671875 +22809.0,22806.0,0.3173489990234375 +22809.0,22807.0,0.1893582763671875 +22809.0,22808.0,0.4254542236328125 +22809.0,22810.0,0.7745189208984375 +22809.0,22811.0,0.4767530517578125 +22809.0,22812.0,0.7741224365234375 +22809.0,22813.0,0.5795638427734375 +22809.0,22814.0,0.6748297119140625 +22809.0,22815.0,0.8501185302734375 +22809.0,22816.0,0.8197120361328125 +22809.0,22817.0,0.925148681640625 +22809.0,22818.0,0.784158447265625 +22810.0,22767.0,0.9778692626953124 +22810.0,22784.0,0.923772216796875 +22810.0,22788.0,0.9371558837890624 +22810.0,22793.0,0.9948082275390624 +22810.0,22794.0,0.6738436279296875 +22810.0,22797.0,0.7136431274414062 +22810.0,22798.0,0.8911723022460938 +22810.0,22800.0,0.774058837890625 +22810.0,22801.0,0.9740234375 +22810.0,22802.0,0.5560168457031249 +22810.0,22803.0,0.78521728515625 +22810.0,22804.0,0.68857373046875 +22810.0,22805.0,0.86231103515625 +22810.0,22806.0,0.6892314453125 +22810.0,22807.0,0.79724072265625 +22810.0,22808.0,0.539336669921875 +22810.0,22809.0,0.7745189208984375 +22810.0,22811.0,0.5276354980468749 +22810.0,22812.0,0.1900048828125 +22810.0,22813.0,0.4514462890625 +22810.0,22814.0,0.414712158203125 +22810.0,22815.0,0.5900009765625001 +22810.0,22816.0,0.361594482421875 +22810.0,22817.0,0.4750311279296875 +22810.0,22818.0,0.4620408935546875 +22811.0,22745.0,0.8799970703125 +22811.0,22746.0,0.9143643798828124 +22811.0,22748.0,0.9487763671875 +22811.0,22767.0,0.7241033935546874 +22811.0,22768.0,0.973400634765625 +22811.0,22769.0,0.65739697265625 +22811.0,22770.0,0.7033143310546875 +22811.0,22771.0,0.87336279296875 +22811.0,22772.0,0.83931201171875 +22811.0,22773.0,0.797747314453125 +22811.0,22779.0,0.930886962890625 +22811.0,22781.0,0.8746689453125 +22811.0,22782.0,0.818108154296875 +22811.0,22783.0,0.745162109375 +22811.0,22784.0,0.59600634765625 +22811.0,22785.0,0.74697412109375 +22811.0,22786.0,0.654403564453125 +22811.0,22788.0,0.5563900146484375 +22811.0,22789.0,0.8265830078125 +22811.0,22790.0,0.89233056640625 +22811.0,22792.0,0.734398681640625 +22811.0,22793.0,0.6670423583984375 +22811.0,22794.0,0.3460777587890625 +22811.0,22795.0,0.974397216796875 +22811.0,22796.0,0.854182861328125 +22811.0,22797.0,0.3858772583007812 +22811.0,22798.0,0.4244064331054687 +22811.0,22799.0,0.695488525390625 +22811.0,22800.0,0.31229296875 +22811.0,22801.0,0.608257568359375 +22811.0,22802.0,0.2582509765625 +22811.0,22803.0,0.413451416015625 +22811.0,22804.0,0.226807861328125 +22811.0,22805.0,0.496545166015625 +22811.0,22806.0,0.323465576171875 +22811.0,22807.0,0.499474853515625 +22811.0,22808.0,0.41957080078125 +22811.0,22809.0,0.4767530517578125 +22811.0,22810.0,0.5276354980468749 +22811.0,22812.0,0.531239013671875 +22811.0,22813.0,0.359680419921875 +22811.0,22814.0,0.4549462890625 +22811.0,22815.0,0.630235107421875 +22811.0,22816.0,0.59982861328125 +22811.0,22817.0,0.7052652587890625 +22811.0,22818.0,0.5642750244140625 +22812.0,22767.0,0.9774727783203124 +22812.0,22784.0,0.927375732421875 +22812.0,22788.0,0.9407593994140624 +22812.0,22793.0,0.9984117431640624 +22812.0,22794.0,0.6774471435546875 +22812.0,22795.0,0.9947666015625 +22812.0,22796.0,0.92755224609375 +22812.0,22797.0,0.7172466430664063 +22812.0,22798.0,0.8907758178710937 +22812.0,22800.0,0.773662353515625 +22812.0,22801.0,0.973626953125 +22812.0,22802.0,0.555620361328125 +22812.0,22803.0,0.78482080078125 +22812.0,22804.0,0.68817724609375 +22812.0,22805.0,0.86191455078125 +22812.0,22806.0,0.6888349609375 +22812.0,22807.0,0.79684423828125 +22812.0,22808.0,0.538940185546875 +22812.0,22809.0,0.7741224365234375 +22812.0,22810.0,0.1900048828125 +22812.0,22811.0,0.531239013671875 +22812.0,22813.0,0.3930498046875 +22812.0,22814.0,0.330315673828125 +22812.0,22815.0,0.4846044921875 +22812.0,22816.0,0.245197998046875 +22812.0,22817.0,0.3586346435546875 +22812.0,22818.0,0.3456444091796875 +22813.0,22763.0,0.92207861328125 +22813.0,22765.0,0.97873095703125 +22813.0,22767.0,0.7609141845703125 +22813.0,22768.0,0.89521142578125 +22813.0,22769.0,0.828207763671875 +22813.0,22770.0,0.8741251220703125 +22813.0,22773.0,0.96855810546875 +22813.0,22782.0,0.9889189453125 +22813.0,22783.0,0.915972900390625 +22813.0,22784.0,0.904817138671875 +22813.0,22786.0,0.92621435546875 +22813.0,22788.0,0.8282008056640625 +22813.0,22793.0,0.9758531494140624 +22813.0,22794.0,0.6248885498046876 +22813.0,22797.0,0.6946880493164063 +22813.0,22798.0,0.6962172241210938 +22813.0,22799.0,0.86629931640625 +22813.0,22800.0,0.579103759765625 +22813.0,22801.0,0.779068359375 +22813.0,22802.0,0.361061767578125 +22813.0,22803.0,0.59026220703125 +22813.0,22804.0,0.49361865234375 +22813.0,22805.0,0.66735595703125 +22813.0,22806.0,0.4942763671875 +22813.0,22807.0,0.60228564453125 +22813.0,22808.0,0.322381591796875 +22813.0,22809.0,0.5795638427734375 +22813.0,22810.0,0.4514462890625 +22813.0,22811.0,0.359680419921875 +22813.0,22812.0,0.3930498046875 +22813.0,22814.0,0.173757080078125 +22813.0,22815.0,0.3490458984375 +22813.0,22816.0,0.438639404296875 +22813.0,22817.0,0.4280760498046875 +22813.0,22818.0,0.2830858154296874 +22814.0,22767.0,0.8561800537109375 +22814.0,22768.0,0.990477294921875 +22814.0,22769.0,0.9234736328125 +22814.0,22770.0,0.9693909912109376 +22814.0,22784.0,0.9540830078125 +22814.0,22788.0,0.9234666748046876 +22814.0,22794.0,0.7041544189453125 +22814.0,22797.0,0.7439539184570313 +22814.0,22798.0,0.7914830932617187 +22814.0,22799.0,0.961565185546875 +22814.0,22800.0,0.67436962890625 +22814.0,22801.0,0.874334228515625 +22814.0,22802.0,0.45632763671875 +22814.0,22803.0,0.685528076171875 +22814.0,22804.0,0.588884521484375 +22814.0,22805.0,0.762621826171875 +22814.0,22806.0,0.5895422363281251 +22814.0,22807.0,0.697551513671875 +22814.0,22808.0,0.4176474609375 +22814.0,22809.0,0.6748297119140625 +22814.0,22810.0,0.414712158203125 +22814.0,22811.0,0.4549462890625 +22814.0,22812.0,0.330315673828125 +22814.0,22813.0,0.173757080078125 +22814.0,22815.0,0.286311767578125 +22814.0,22816.0,0.3759052734375 +22814.0,22817.0,0.3653419189453125 +22814.0,22818.0,0.2203516845703125 +22815.0,22759.0,0.94359521484375 +22815.0,22764.0,0.93516064453125 +22815.0,22766.0,0.9752977294921876 +22815.0,22794.0,0.8794432373046875 +22815.0,22797.0,0.9192427368164062 +22815.0,22798.0,0.9667719116210938 +22815.0,22800.0,0.849658447265625 +22815.0,22802.0,0.631616455078125 +22815.0,22803.0,0.86081689453125 +22815.0,22804.0,0.76417333984375 +22815.0,22805.0,0.93791064453125 +22815.0,22806.0,0.7648310546875 +22815.0,22807.0,0.87284033203125 +22815.0,22808.0,0.581936279296875 +22815.0,22809.0,0.8501185302734375 +22815.0,22810.0,0.5900009765625001 +22815.0,22811.0,0.630235107421875 +22815.0,22812.0,0.4846044921875 +22815.0,22813.0,0.3490458984375 +22815.0,22814.0,0.286311767578125 +22815.0,22816.0,0.414194091796875 +22815.0,22817.0,0.2316307373046875 +22815.0,22818.0,0.1926405029296874 +22816.0,22794.0,0.8030367431640625 +22816.0,22797.0,0.8428362426757813 +22816.0,22798.0,0.9363654174804688 +22816.0,22800.0,0.819251953125 +22816.0,22802.0,0.6012099609375 +22816.0,22803.0,0.830410400390625 +22816.0,22804.0,0.733766845703125 +22816.0,22805.0,0.907504150390625 +22816.0,22806.0,0.734424560546875 +22816.0,22807.0,0.842433837890625 +22816.0,22808.0,0.58452978515625 +22816.0,22809.0,0.8197120361328125 +22816.0,22810.0,0.361594482421875 +22816.0,22811.0,0.59982861328125 +22816.0,22812.0,0.245197998046875 +22816.0,22813.0,0.438639404296875 +22816.0,22814.0,0.3759052734375 +22816.0,22815.0,0.414194091796875 +22816.0,22817.0,0.2882242431640625 +22816.0,22818.0,0.2752340087890625 +22817.0,22794.0,0.908473388671875 +22817.0,22797.0,0.9482728881835938 +22817.0,22800.0,0.9246885986328124 +22817.0,22802.0,0.7066466064453125 +22817.0,22803.0,0.9358470458984376 +22817.0,22804.0,0.8392034912109375 +22817.0,22806.0,0.8398612060546875 +22817.0,22807.0,0.9478704833984376 +22817.0,22808.0,0.6609664306640625 +22817.0,22809.0,0.925148681640625 +22817.0,22810.0,0.4750311279296875 +22817.0,22811.0,0.7052652587890625 +22817.0,22812.0,0.3586346435546875 +22817.0,22813.0,0.4280760498046875 +22817.0,22814.0,0.3653419189453125 +22817.0,22815.0,0.2316307373046875 +22817.0,22816.0,0.2882242431640625 +22817.0,22818.0,0.198670654296875 +22818.0,22767.0,0.9545087890625 +22818.0,22794.0,0.795483154296875 +22818.0,22797.0,0.8352826538085938 +22818.0,22798.0,0.9008118286132812 +22818.0,22800.0,0.7836983642578125 +22818.0,22801.0,0.9836629638671875 +22818.0,22802.0,0.5656563720703125 +22818.0,22803.0,0.7948568115234375 +22818.0,22804.0,0.6982132568359375 +22818.0,22805.0,0.8719505615234375 +22818.0,22806.0,0.6988709716796875 +22818.0,22807.0,0.8068802490234375 +22818.0,22808.0,0.5159761962890625 +22818.0,22809.0,0.784158447265625 +22818.0,22810.0,0.4620408935546875 +22818.0,22811.0,0.5642750244140625 +22818.0,22812.0,0.3456444091796875 +22818.0,22813.0,0.2830858154296874 +22818.0,22814.0,0.2203516845703125 +22818.0,22815.0,0.1926405029296874 +22818.0,22816.0,0.2752340087890625 +22818.0,22817.0,0.198670654296875 diff --git a/activitysim/examples/production_semcog/data/mazs.csv b/activitysim/examples/production_semcog/data/mazs.csv new file mode 100644 index 000000000..731f4a9b3 --- /dev/null +++ b/activitysim/examples/production_semcog/data/mazs.csv @@ -0,0 +1,185 @@ +TAZ,MAZ +2100,22635 +2100,22636 +2100,22637 +2100,22638 +2101,22639 +2101,22640 +2101,22641 +2101,22642 +2101,22643 +2101,22644 +2101,22645 +2101,22646 +2101,22647 +2101,22648 +2102,22649 +2102,22650 +2102,22651 +2102,22652 +2102,22653 +2102,22654 +2102,22655 +2102,22656 +2102,22657 +2103,22658 +2103,22659 +2103,22660 +2103,22661 +2103,22662 +2103,22663 +2103,22664 +2103,22665 +2103,22666 +2103,22667 +2103,22668 +2104,22669 +2104,22670 +2105,22671 +2106,22672 +2106,22673 +2106,22674 +2107,22675 +2107,22676 +2107,22677 +2107,22678 +2107,22679 +2107,22680 +2107,22681 +2108,22682 +2108,22683 +2108,22684 +2109,22685 +2109,22686 +2109,22687 +2109,22688 +2109,22689 +2110,22690 +2110,22691 +2110,22692 +2110,22693 +2110,22694 +2110,22695 +2110,22696 +2110,22697 +2110,22698 +2110,22699 +2110,22700 +2110,22701 +2110,22702 +2110,22703 +2110,22704 +2110,22705 +2110,22706 +2110,22707 +2110,22708 +2110,22709 +2110,22710 +2111,22711 +2111,22712 +2111,22713 +2112,22714 +2112,22715 +2112,22716 +2112,22717 +2112,22718 +2112,22719 +2113,22720 +2113,22721 +2113,22722 +2113,22723 +2113,22724 +2113,22725 +2113,22726 +2113,22727 +2113,22728 +2113,22729 +2113,22730 +2114,22731 +2114,22732 +2115,22733 +2115,22734 +2115,22735 +2115,22736 +2116,22737 +2117,22738 +2118,22739 +2119,22740 +2119,22741 +2119,22742 +2119,22743 +2120,22744 +2121,22745 +2122,22746 +2123,22747 +2124,22748 +2125,22749 +2125,22750 +2125,22751 +2125,22752 +2125,22753 +2125,22754 +2126,22755 +2126,22756 +2127,22757 +2127,22758 +2128,22759 +2128,22760 +2128,22761 +2128,22762 +2129,22763 +2130,22764 +2130,22765 +2131,22766 +2132,22767 +2132,22768 +2133,22769 +2134,22770 +2135,22771 +2136,22772 +2136,22773 +2137,22774 +2137,22775 +2137,22776 +2137,22777 +2137,22778 +2138,22779 +2138,22780 +2138,22781 +2138,22782 +2138,22783 +2139,22784 +2139,22785 +2139,22786 +2139,22787 +2139,22788 +2140,22789 +2140,22790 +2140,22791 +2140,22792 +2140,22793 +2141,22794 +2141,22795 +2141,22796 +2141,22797 +2142,22798 +2142,22799 +2143,22800 +2143,22801 +2144,22802 +2144,22803 +2144,22804 +2145,22805 +2146,22806 +2146,22807 +2147,22808 +2147,22809 +2148,22810 +2148,22811 +2149,22812 +2150,22813 +2150,22814 +2150,22815 +2150,22816 +2150,22817 +2150,22818 diff --git a/activitysim/examples/production_semcog/data/persons.csv b/activitysim/examples/production_semcog/data/persons.csv new file mode 100644 index 000000000..501230ff7 --- /dev/null +++ b/activitysim/examples/production_semcog/data/persons.csv @@ -0,0 +1,35770 @@ +Unnamed: 0,person_id,age,household_id,member_id,sex,relate,race_id,esr,wkhp,wkw,schg,mil,naicsp,industry,maz_seqid,zone_id +2630443,2630444,75.0,1065162,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630444,2630445,75.0,1065163,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630445,2630446,75.0,1065164,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2630446,2630447,75.0,1065165,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630447,2630448,75.0,1065166,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630448,2630449,75.0,1065167,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630449,2630450,75.0,1065168,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630450,2630451,75.0,1065169,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630451,2630452,75.0,1065170,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630452,2630453,75.0,1065171,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630453,2630454,75.0,1065172,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630454,2630455,75.0,1065173,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630455,2630456,75.0,1065174,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630456,2630457,75.0,1065175,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630457,2630458,72.0,1065176,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630458,2630459,65.0,1065177,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2630459,2630460,66.0,1065178,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630460,2630461,38.0,1065178,2,1,2,2,1.0,20.0,6.0,-9.0,4.0,4249Z,4.0,22688.0,2109.0 +2630461,2630462,78.0,1065179,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630462,2630463,68.0,1065180,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630463,2630464,66.0,1065181,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630464,2630465,66.0,1065182,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630465,2630466,66.0,1065183,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630466,2630467,66.0,1065184,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630467,2630468,66.0,1065185,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630468,2630469,66.0,1065186,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630469,2630470,66.0,1065187,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630470,2630471,66.0,1065188,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630471,2630472,66.0,1065189,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630472,2630473,66.0,1065190,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630473,2630474,84.0,1065191,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630474,2630475,84.0,1065192,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630475,2630476,84.0,1065193,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630476,2630477,84.0,1065194,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630477,2630478,74.0,1065195,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630478,2630479,69.0,1065195,2,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630479,2630480,71.0,1065196,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630480,2630481,78.0,1065197,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630481,2630482,80.0,1065198,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630482,2630483,71.0,1065199,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630483,2630484,66.0,1065200,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630484,2630485,88.0,1065201,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630485,2630486,94.0,1065202,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630486,2630487,88.0,1065203,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630487,2630488,70.0,1065204,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630488,2630489,49.0,1065205,1,2,0,4,1.0,40.0,3.0,-9.0,4.0,5413,10.0,22685.0,2109.0 +2630489,2630490,21.0,1065205,2,2,2,4,1.0,25.0,1.0,-9.0,4.0,6241,14.0,22685.0,2109.0 +2630490,2630491,49.0,1065206,1,2,0,4,1.0,40.0,3.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2630491,2630492,21.0,1065206,2,2,2,4,1.0,25.0,1.0,-9.0,4.0,6241,14.0,22688.0,2109.0 +2630492,2630493,49.0,1065207,1,2,0,4,1.0,40.0,3.0,-9.0,4.0,5413,10.0,22687.0,2109.0 +2630493,2630494,21.0,1065207,2,2,2,4,1.0,25.0,1.0,-9.0,4.0,6241,14.0,22687.0,2109.0 +2630494,2630495,49.0,1065208,1,2,0,4,1.0,40.0,3.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2630495,2630496,21.0,1065208,2,2,2,4,1.0,25.0,1.0,-9.0,4.0,6241,14.0,22688.0,2109.0 +2630496,2630497,59.0,1065209,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2630497,2630498,29.0,1065209,2,2,2,4,1.0,21.0,1.0,-9.0,4.0,6216,14.0,22687.0,2109.0 +2630498,2630499,23.0,1065209,3,2,2,4,3.0,14.0,4.0,14.0,4.0,6216,14.0,22687.0,2109.0 +2630499,2630500,11.0,1065209,4,2,7,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22687.0,2109.0 +2630500,2630501,6.0,1065209,5,1,7,4,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22687.0,2109.0 +2630501,2630502,54.0,1065210,1,1,0,4,1.0,65.0,1.0,-9.0,4.0,3MS,3.0,22688.0,2109.0 +2630502,2630503,54.0,1065211,1,1,0,4,1.0,65.0,1.0,-9.0,4.0,3MS,3.0,22688.0,2109.0 +2630503,2630504,54.0,1065212,1,1,0,4,1.0,65.0,1.0,-9.0,4.0,3MS,3.0,22686.0,2109.0 +2630504,2630505,49.0,1065213,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630505,2630506,45.0,1065213,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2630506,2630507,13.0,1065213,3,1,2,4,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22688.0,2109.0 +2630507,2630508,11.0,1065213,4,1,2,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22688.0,2109.0 +2630508,2630509,8.0,1065213,5,1,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2630509,2630510,51.0,1065214,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630510,2630511,12.0,1065214,2,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2630511,2630512,51.0,1065215,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2630512,2630513,12.0,1065215,2,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22687.0,2109.0 +2630513,2630514,45.0,1065216,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630514,2630515,21.0,1065216,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630515,2630516,45.0,1065217,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630516,2630517,21.0,1065217,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630517,2630518,45.0,1065218,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630518,2630519,21.0,1065218,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630519,2630520,45.0,1065219,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630520,2630521,21.0,1065219,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630521,2630522,45.0,1065220,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630522,2630523,21.0,1065220,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630523,2630524,45.0,1065221,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630524,2630525,21.0,1065221,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630525,2630526,45.0,1065222,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630526,2630527,21.0,1065222,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630527,2630528,45.0,1065223,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630528,2630529,21.0,1065223,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630529,2630530,45.0,1065224,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630530,2630531,21.0,1065224,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630531,2630532,45.0,1065225,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630532,2630533,21.0,1065225,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630533,2630534,45.0,1065226,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630534,2630535,21.0,1065226,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630535,2630536,45.0,1065227,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630536,2630537,21.0,1065227,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630537,2630538,45.0,1065228,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630538,2630539,21.0,1065228,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630539,2630540,45.0,1065229,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630540,2630541,21.0,1065229,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630541,2630542,45.0,1065230,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22687.0,2109.0 +2630542,2630543,21.0,1065230,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22687.0,2109.0 +2630543,2630544,45.0,1065231,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630544,2630545,21.0,1065231,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630545,2630546,45.0,1065232,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630546,2630547,21.0,1065232,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630547,2630548,45.0,1065233,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630548,2630549,21.0,1065233,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630549,2630550,45.0,1065234,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630550,2630551,21.0,1065234,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630551,2630552,45.0,1065235,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630552,2630553,21.0,1065235,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630553,2630554,45.0,1065236,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630554,2630555,21.0,1065236,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630555,2630556,45.0,1065237,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630556,2630557,21.0,1065237,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630557,2630558,45.0,1065238,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630558,2630559,21.0,1065238,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630559,2630560,45.0,1065239,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630560,2630561,21.0,1065239,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630561,2630562,45.0,1065240,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630562,2630563,21.0,1065240,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630563,2630564,45.0,1065241,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630564,2630565,21.0,1065241,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630565,2630566,45.0,1065242,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630566,2630567,21.0,1065242,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630567,2630568,45.0,1065243,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630568,2630569,21.0,1065243,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630569,2630570,45.0,1065244,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630570,2630571,21.0,1065244,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630571,2630572,45.0,1065245,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630572,2630573,21.0,1065245,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630573,2630574,45.0,1065246,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630574,2630575,21.0,1065246,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630575,2630576,45.0,1065247,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630576,2630577,21.0,1065247,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630577,2630578,45.0,1065248,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630578,2630579,21.0,1065248,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630579,2630580,45.0,1065249,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630580,2630581,21.0,1065249,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630581,2630582,45.0,1065250,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630582,2630583,21.0,1065250,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630583,2630584,45.0,1065251,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630584,2630585,21.0,1065251,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630585,2630586,45.0,1065252,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630586,2630587,21.0,1065252,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630587,2630588,45.0,1065253,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630588,2630589,21.0,1065253,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630589,2630590,45.0,1065254,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22687.0,2109.0 +2630590,2630591,21.0,1065254,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22687.0,2109.0 +2630591,2630592,45.0,1065255,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630592,2630593,21.0,1065255,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630593,2630594,45.0,1065256,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630594,2630595,21.0,1065256,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630595,2630596,45.0,1065257,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630596,2630597,21.0,1065257,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630597,2630598,45.0,1065258,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630598,2630599,21.0,1065258,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630599,2630600,45.0,1065259,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630600,2630601,21.0,1065259,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630601,2630602,45.0,1065260,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630602,2630603,21.0,1065260,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630603,2630604,45.0,1065261,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630604,2630605,21.0,1065261,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630605,2630606,45.0,1065262,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630606,2630607,21.0,1065262,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630607,2630608,45.0,1065263,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630608,2630609,21.0,1065263,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630609,2630610,45.0,1065264,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22688.0,2109.0 +2630610,2630611,45.0,1065265,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22686.0,2109.0 +2630611,2630612,45.0,1065266,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22686.0,2109.0 +2630612,2630613,45.0,1065267,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22687.0,2109.0 +2630613,2630614,45.0,1065268,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22688.0,2109.0 +2630614,2630615,45.0,1065269,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22688.0,2109.0 +2630615,2630616,45.0,1065270,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22688.0,2109.0 +2630616,2630617,57.0,1065271,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2630617,2630618,70.0,1065271,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630618,2630619,21.0,1065271,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630619,2630620,19.0,1065271,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22688.0,2109.0 +2630620,2630621,57.0,1065272,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22687.0,2109.0 +2630621,2630622,70.0,1065272,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2630622,2630623,21.0,1065272,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22687.0,2109.0 +2630623,2630624,19.0,1065272,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22687.0,2109.0 +2630624,2630625,57.0,1065273,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2630625,2630626,70.0,1065273,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630626,2630627,21.0,1065273,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630627,2630628,19.0,1065273,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22688.0,2109.0 +2630628,2630629,57.0,1065274,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2630629,2630630,70.0,1065274,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630630,2630631,21.0,1065274,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630631,2630632,19.0,1065274,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22688.0,2109.0 +2630632,2630633,57.0,1065275,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2630633,2630634,70.0,1065275,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630634,2630635,21.0,1065275,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630635,2630636,19.0,1065275,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22688.0,2109.0 +2630636,2630637,57.0,1065276,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2630637,2630638,70.0,1065276,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630638,2630639,21.0,1065276,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630639,2630640,19.0,1065276,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22688.0,2109.0 +2630640,2630641,57.0,1065277,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22686.0,2109.0 +2630641,2630642,70.0,1065277,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630642,2630643,21.0,1065277,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630643,2630644,19.0,1065277,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22686.0,2109.0 +2630644,2630645,57.0,1065278,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2630645,2630646,70.0,1065278,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630646,2630647,21.0,1065278,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630647,2630648,19.0,1065278,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22688.0,2109.0 +2630648,2630649,57.0,1065279,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22685.0,2109.0 +2630649,2630650,70.0,1065279,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630650,2630651,21.0,1065279,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630651,2630652,19.0,1065279,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22685.0,2109.0 +2630652,2630653,57.0,1065280,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2630653,2630654,70.0,1065280,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630654,2630655,21.0,1065280,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630655,2630656,19.0,1065280,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22688.0,2109.0 +2630656,2630657,57.0,1065281,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22685.0,2109.0 +2630657,2630658,70.0,1065281,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630658,2630659,21.0,1065281,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630659,2630660,19.0,1065281,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22685.0,2109.0 +2630660,2630661,57.0,1065282,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22686.0,2109.0 +2630661,2630662,70.0,1065282,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630662,2630663,21.0,1065282,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630663,2630664,19.0,1065282,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22686.0,2109.0 +2630664,2630665,57.0,1065283,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2630665,2630666,70.0,1065283,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630666,2630667,21.0,1065283,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630667,2630668,19.0,1065283,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22688.0,2109.0 +2630668,2630669,57.0,1065284,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2630669,2630670,70.0,1065284,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630670,2630671,21.0,1065284,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630671,2630672,19.0,1065284,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22688.0,2109.0 +2630672,2630673,57.0,1065285,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2630673,2630674,70.0,1065285,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630674,2630675,21.0,1065285,3,1,10,2,1.0,40.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630675,2630676,19.0,1065285,4,1,10,2,1.0,25.0,5.0,14.0,4.0,4523,5.0,22688.0,2109.0 +2630676,2630677,63.0,1065286,1,2,0,2,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630677,2630678,64.0,1065287,1,2,0,2,1.0,30.0,1.0,-9.0,4.0,6216,14.0,22685.0,2109.0 +2630678,2630679,64.0,1065288,1,2,0,2,1.0,30.0,1.0,-9.0,4.0,6216,14.0,22688.0,2109.0 +2630679,2630680,64.0,1065289,1,2,0,2,1.0,30.0,1.0,-9.0,4.0,6216,14.0,22688.0,2109.0 +2630680,2630681,63.0,1065290,1,2,0,2,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630681,2630682,63.0,1065291,1,2,0,2,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22687.0,2109.0 +2630682,2630683,63.0,1065292,1,2,0,2,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630683,2630684,63.0,1065293,1,2,0,2,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630684,2630685,54.0,1065294,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2630685,2630686,56.0,1065295,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630686,2630687,54.0,1065296,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22687.0,2109.0 +2630687,2630688,54.0,1065297,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630688,2630689,56.0,1065298,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630689,2630690,54.0,1065299,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630690,2630691,56.0,1065300,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630691,2630692,56.0,1065301,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630692,2630693,56.0,1065302,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630693,2630694,56.0,1065303,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630694,2630695,56.0,1065304,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630695,2630696,60.0,1065305,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,492,6.0,22686.0,2109.0 +2630696,2630697,67.0,1065305,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630697,2630698,60.0,1065306,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,492,6.0,22686.0,2109.0 +2630698,2630699,67.0,1065306,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630699,2630700,60.0,1065307,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,492,6.0,22688.0,2109.0 +2630700,2630701,67.0,1065307,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630701,2630702,48.0,1065308,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630702,2630703,63.0,1065309,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630703,2630704,48.0,1065310,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630704,2630705,63.0,1065311,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630705,2630706,59.0,1065312,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630706,2630707,59.0,1065313,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630707,2630708,59.0,1065314,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630708,2630709,59.0,1065315,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630709,2630710,60.0,1065316,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630710,2630711,62.0,1065317,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630711,2630712,59.0,1065318,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630712,2630713,59.0,1065319,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630713,2630714,60.0,1065320,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630714,2630715,59.0,1065321,1,2,0,2,1.0,37.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630715,2630716,53.0,1065322,1,2,0,2,6.0,20.0,6.0,-9.0,4.0,5613,12.0,22688.0,2109.0 +2630716,2630717,64.0,1065323,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630717,2630718,64.0,1065324,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630718,2630719,64.0,1065325,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630719,2630720,64.0,1065326,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630720,2630721,56.0,1065327,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630721,2630722,62.0,1065328,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630722,2630723,64.0,1065329,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630723,2630724,56.0,1065330,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630724,2630725,21.0,1065330,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630725,2630726,16.0,1065330,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630726,2630727,56.0,1065331,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22687.0,2109.0 +2630727,2630728,21.0,1065331,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2630728,2630729,16.0,1065331,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22687.0,2109.0 +2630729,2630730,56.0,1065332,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630730,2630731,21.0,1065332,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630731,2630732,16.0,1065332,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630732,2630733,56.0,1065333,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630733,2630734,21.0,1065333,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630734,2630735,16.0,1065333,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630735,2630736,56.0,1065334,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630736,2630737,21.0,1065334,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630737,2630738,16.0,1065334,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630738,2630739,56.0,1065335,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22686.0,2109.0 +2630739,2630740,21.0,1065335,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630740,2630741,16.0,1065335,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22686.0,2109.0 +2630741,2630742,56.0,1065336,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22686.0,2109.0 +2630742,2630743,21.0,1065336,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630743,2630744,16.0,1065336,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22686.0,2109.0 +2630744,2630745,56.0,1065337,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22687.0,2109.0 +2630745,2630746,21.0,1065337,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2630746,2630747,16.0,1065337,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22687.0,2109.0 +2630747,2630748,56.0,1065338,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630748,2630749,21.0,1065338,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630749,2630750,16.0,1065338,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630750,2630751,56.0,1065339,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630751,2630752,21.0,1065339,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630752,2630753,16.0,1065339,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630753,2630754,56.0,1065340,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630754,2630755,21.0,1065340,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630755,2630756,16.0,1065340,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630756,2630757,56.0,1065341,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630757,2630758,21.0,1065341,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630758,2630759,16.0,1065341,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630759,2630760,56.0,1065342,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630760,2630761,21.0,1065342,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630761,2630762,16.0,1065342,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630762,2630763,56.0,1065343,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630763,2630764,21.0,1065343,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630764,2630765,16.0,1065343,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630765,2630766,56.0,1065344,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22686.0,2109.0 +2630766,2630767,21.0,1065344,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630767,2630768,16.0,1065344,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22686.0,2109.0 +2630768,2630769,56.0,1065345,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22685.0,2109.0 +2630769,2630770,21.0,1065345,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630770,2630771,16.0,1065345,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22685.0,2109.0 +2630771,2630772,56.0,1065346,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630772,2630773,21.0,1065346,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630773,2630774,16.0,1065346,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630774,2630775,56.0,1065347,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630775,2630776,21.0,1065347,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630776,2630777,16.0,1065347,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630777,2630778,56.0,1065348,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630778,2630779,21.0,1065348,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630779,2630780,16.0,1065348,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630780,2630781,56.0,1065349,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630781,2630782,21.0,1065349,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630782,2630783,16.0,1065349,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630783,2630784,56.0,1065350,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630784,2630785,21.0,1065350,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630785,2630786,16.0,1065350,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630786,2630787,56.0,1065351,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22685.0,2109.0 +2630787,2630788,21.0,1065351,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630788,2630789,16.0,1065351,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22685.0,2109.0 +2630789,2630790,56.0,1065352,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630790,2630791,21.0,1065352,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630791,2630792,16.0,1065352,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630792,2630793,56.0,1065353,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630793,2630794,21.0,1065353,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630794,2630795,16.0,1065353,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630795,2630796,56.0,1065354,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630796,2630797,21.0,1065354,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630797,2630798,16.0,1065354,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630798,2630799,56.0,1065355,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630799,2630800,21.0,1065355,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630800,2630801,16.0,1065355,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630801,2630802,56.0,1065356,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22687.0,2109.0 +2630802,2630803,21.0,1065356,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2630803,2630804,16.0,1065356,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22687.0,2109.0 +2630804,2630805,56.0,1065357,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22685.0,2109.0 +2630805,2630806,21.0,1065357,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630806,2630807,16.0,1065357,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22685.0,2109.0 +2630807,2630808,56.0,1065358,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22686.0,2109.0 +2630808,2630809,21.0,1065358,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630809,2630810,16.0,1065358,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22686.0,2109.0 +2630810,2630811,56.0,1065359,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22685.0,2109.0 +2630811,2630812,21.0,1065359,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630812,2630813,16.0,1065359,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22685.0,2109.0 +2630813,2630814,56.0,1065360,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630814,2630815,21.0,1065360,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630815,2630816,16.0,1065360,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630816,2630817,56.0,1065361,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630817,2630818,21.0,1065361,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630818,2630819,16.0,1065361,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630819,2630820,56.0,1065362,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22686.0,2109.0 +2630820,2630821,21.0,1065362,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630821,2630822,16.0,1065362,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22686.0,2109.0 +2630822,2630823,56.0,1065363,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630823,2630824,21.0,1065363,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630824,2630825,16.0,1065363,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630825,2630826,56.0,1065364,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22686.0,2109.0 +2630826,2630827,21.0,1065364,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630827,2630828,16.0,1065364,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22686.0,2109.0 +2630828,2630829,56.0,1065365,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630829,2630830,21.0,1065365,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630830,2630831,16.0,1065365,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630831,2630832,56.0,1065366,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22686.0,2109.0 +2630832,2630833,21.0,1065366,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630833,2630834,16.0,1065366,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22686.0,2109.0 +2630834,2630835,56.0,1065367,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630835,2630836,21.0,1065367,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630836,2630837,16.0,1065367,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630837,2630838,56.0,1065368,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630838,2630839,21.0,1065368,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630839,2630840,16.0,1065368,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630840,2630841,56.0,1065369,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630841,2630842,21.0,1065369,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630842,2630843,16.0,1065369,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630843,2630844,56.0,1065370,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630844,2630845,21.0,1065370,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630845,2630846,16.0,1065370,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630846,2630847,56.0,1065371,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630847,2630848,21.0,1065371,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630848,2630849,16.0,1065371,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630849,2630850,56.0,1065372,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630850,2630851,21.0,1065372,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630851,2630852,16.0,1065372,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630852,2630853,56.0,1065373,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630853,2630854,21.0,1065373,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630854,2630855,16.0,1065373,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630855,2630856,56.0,1065374,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630856,2630857,21.0,1065374,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630857,2630858,16.0,1065374,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630858,2630859,56.0,1065375,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22686.0,2109.0 +2630859,2630860,21.0,1065375,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630860,2630861,16.0,1065375,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22686.0,2109.0 +2630861,2630862,56.0,1065376,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22687.0,2109.0 +2630862,2630863,21.0,1065376,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2630863,2630864,16.0,1065376,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22687.0,2109.0 +2630864,2630865,56.0,1065377,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630865,2630866,21.0,1065377,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630866,2630867,16.0,1065377,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630867,2630868,56.0,1065378,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22686.0,2109.0 +2630868,2630869,21.0,1065378,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630869,2630870,16.0,1065378,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22686.0,2109.0 +2630870,2630871,56.0,1065379,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630871,2630872,21.0,1065379,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630872,2630873,16.0,1065379,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630873,2630874,56.0,1065380,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630874,2630875,21.0,1065380,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630875,2630876,16.0,1065380,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630876,2630877,56.0,1065381,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630877,2630878,21.0,1065381,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630878,2630879,16.0,1065381,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630879,2630880,56.0,1065382,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630880,2630881,21.0,1065382,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630881,2630882,16.0,1065382,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630882,2630883,56.0,1065383,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2630883,2630884,21.0,1065383,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630884,2630885,16.0,1065383,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2630885,2630886,46.0,1065384,1,2,0,2,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2630886,2630887,8.0,1065384,2,2,2,2,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2630887,2630888,45.0,1065385,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630888,2630889,24.0,1065385,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22688.0,2109.0 +2630889,2630890,6.0,1065385,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22688.0,2109.0 +2630890,2630891,4.0,1065385,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2630891,2630892,0.0,1065385,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2630892,2630893,45.0,1065386,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2630893,2630894,24.0,1065386,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22686.0,2109.0 +2630894,2630895,6.0,1065386,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22686.0,2109.0 +2630895,2630896,4.0,1065386,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22686.0,2109.0 +2630896,2630897,0.0,1065386,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2630897,2630898,45.0,1065387,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2630898,2630899,24.0,1065387,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22686.0,2109.0 +2630899,2630900,6.0,1065387,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22686.0,2109.0 +2630900,2630901,4.0,1065387,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22686.0,2109.0 +2630901,2630902,0.0,1065387,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2630902,2630903,45.0,1065388,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630903,2630904,24.0,1065388,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22688.0,2109.0 +2630904,2630905,6.0,1065388,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22688.0,2109.0 +2630905,2630906,4.0,1065388,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2630906,2630907,0.0,1065388,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2630907,2630908,45.0,1065389,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630908,2630909,24.0,1065389,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22688.0,2109.0 +2630909,2630910,6.0,1065389,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22688.0,2109.0 +2630910,2630911,4.0,1065389,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2630911,2630912,0.0,1065389,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2630912,2630913,45.0,1065390,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2630913,2630914,24.0,1065390,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22685.0,2109.0 +2630914,2630915,6.0,1065390,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22685.0,2109.0 +2630915,2630916,4.0,1065390,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22685.0,2109.0 +2630916,2630917,0.0,1065390,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2630917,2630918,45.0,1065391,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630918,2630919,24.0,1065391,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22688.0,2109.0 +2630919,2630920,6.0,1065391,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22688.0,2109.0 +2630920,2630921,4.0,1065391,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2630921,2630922,0.0,1065391,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2630922,2630923,45.0,1065392,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630923,2630924,24.0,1065392,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22688.0,2109.0 +2630924,2630925,6.0,1065392,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22688.0,2109.0 +2630925,2630926,4.0,1065392,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2630926,2630927,0.0,1065392,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2630927,2630928,45.0,1065393,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630928,2630929,24.0,1065393,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22688.0,2109.0 +2630929,2630930,6.0,1065393,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22688.0,2109.0 +2630930,2630931,4.0,1065393,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2630931,2630932,0.0,1065393,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2630932,2630933,45.0,1065394,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2630933,2630934,24.0,1065394,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22685.0,2109.0 +2630934,2630935,6.0,1065394,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22685.0,2109.0 +2630935,2630936,4.0,1065394,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22685.0,2109.0 +2630936,2630937,0.0,1065394,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2630937,2630938,45.0,1065395,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2630938,2630939,24.0,1065395,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22686.0,2109.0 +2630939,2630940,6.0,1065395,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22686.0,2109.0 +2630940,2630941,4.0,1065395,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22686.0,2109.0 +2630941,2630942,0.0,1065395,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2630942,2630943,45.0,1065396,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2630943,2630944,24.0,1065396,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22688.0,2109.0 +2630944,2630945,6.0,1065396,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22688.0,2109.0 +2630945,2630946,4.0,1065396,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2630946,2630947,0.0,1065396,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2630947,2630948,54.0,1065397,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630948,2630949,18.0,1065397,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630949,2630950,1.0,1065397,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2630950,2630951,54.0,1065398,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630951,2630952,18.0,1065398,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2630952,2630953,1.0,1065398,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2630953,2630954,54.0,1065399,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2630954,2630955,18.0,1065399,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2630955,2630956,1.0,1065399,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2630956,2630957,54.0,1065400,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630957,2630958,18.0,1065400,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630958,2630959,1.0,1065400,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2630959,2630960,54.0,1065401,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630960,2630961,18.0,1065401,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2630961,2630962,1.0,1065401,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2630962,2630963,47.0,1065402,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630963,2630964,12.0,1065402,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2630964,2630965,47.0,1065403,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630965,2630966,12.0,1065403,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2630966,2630967,47.0,1065404,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2630967,2630968,12.0,1065404,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22686.0,2109.0 +2630968,2630969,48.0,1065405,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22688.0,2109.0 +2630969,2630970,55.0,1065405,2,2,1,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630970,2630971,48.0,1065406,1,2,0,3,1.0,28.0,3.0,-9.0,4.0,7211,16.0,22688.0,2109.0 +2630971,2630972,48.0,1065407,1,2,0,3,1.0,28.0,3.0,-9.0,4.0,7211,16.0,22686.0,2109.0 +2630972,2630973,64.0,1065408,1,1,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630973,2630974,64.0,1065409,1,1,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630974,2630975,64.0,1065410,1,1,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2630975,2630976,64.0,1065411,1,1,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630976,2630977,64.0,1065412,1,1,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630977,2630978,64.0,1065413,1,1,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2630978,2630979,64.0,1065414,1,1,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2630979,2630980,52.0,1065415,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,493,6.0,22688.0,2109.0 +2630980,2630981,58.0,1065415,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22688.0,2109.0 +2630981,2630982,45.0,1065415,3,1,12,4,1.0,40.0,1.0,-9.0,4.0,493,6.0,22688.0,2109.0 +2630982,2630983,45.0,1065415,4,1,12,4,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22688.0,2109.0 +2630983,2630984,41.0,1065415,5,1,12,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2630984,2630985,52.0,1065416,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,493,6.0,22688.0,2109.0 +2630985,2630986,58.0,1065416,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22688.0,2109.0 +2630986,2630987,45.0,1065416,3,1,12,4,1.0,40.0,1.0,-9.0,4.0,493,6.0,22688.0,2109.0 +2630987,2630988,45.0,1065416,4,1,12,4,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22688.0,2109.0 +2630988,2630989,41.0,1065416,5,1,12,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2630989,2630990,52.0,1065417,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2630990,2630991,50.0,1065417,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2630991,2630992,22.0,1065417,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2630992,2630993,52.0,1065418,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2630993,2630994,50.0,1065418,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2630994,2630995,22.0,1065418,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2630995,2630996,52.0,1065419,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2630996,2630997,50.0,1065419,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2630997,2630998,22.0,1065419,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2630998,2630999,52.0,1065420,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2630999,2631000,50.0,1065420,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631000,2631001,22.0,1065420,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631001,2631002,52.0,1065421,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631002,2631003,50.0,1065421,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631003,2631004,22.0,1065421,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631004,2631005,52.0,1065422,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631005,2631006,50.0,1065422,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631006,2631007,22.0,1065422,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631007,2631008,52.0,1065423,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631008,2631009,50.0,1065423,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631009,2631010,22.0,1065423,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631010,2631011,52.0,1065424,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631011,2631012,50.0,1065424,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631012,2631013,22.0,1065424,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631013,2631014,52.0,1065425,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631014,2631015,50.0,1065425,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631015,2631016,22.0,1065425,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631016,2631017,52.0,1065426,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631017,2631018,50.0,1065426,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631018,2631019,22.0,1065426,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631019,2631020,50.0,1065427,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631020,2631021,20.0,1065427,2,1,2,1,1.0,32.0,5.0,15.0,4.0,8111Z,17.0,22688.0,2109.0 +2631021,2631022,50.0,1065428,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631022,2631023,20.0,1065428,2,1,2,1,1.0,32.0,5.0,15.0,4.0,8111Z,17.0,22688.0,2109.0 +2631023,2631024,50.0,1065429,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631024,2631025,20.0,1065429,2,1,2,1,1.0,32.0,5.0,15.0,4.0,8111Z,17.0,22688.0,2109.0 +2631025,2631026,50.0,1065430,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631026,2631027,20.0,1065430,2,1,2,1,1.0,32.0,5.0,15.0,4.0,8111Z,17.0,22688.0,2109.0 +2631027,2631028,50.0,1065431,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631028,2631029,20.0,1065431,2,1,2,1,1.0,32.0,5.0,15.0,4.0,8111Z,17.0,22688.0,2109.0 +2631029,2631030,50.0,1065432,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631030,2631031,20.0,1065432,2,1,2,1,1.0,32.0,5.0,15.0,4.0,8111Z,17.0,22685.0,2109.0 +2631031,2631032,50.0,1065433,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631032,2631033,20.0,1065433,2,1,2,1,1.0,32.0,5.0,15.0,4.0,8111Z,17.0,22688.0,2109.0 +2631033,2631034,50.0,1065434,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631034,2631035,20.0,1065434,2,1,2,1,1.0,32.0,5.0,15.0,4.0,8111Z,17.0,22688.0,2109.0 +2631035,2631036,47.0,1065435,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631036,2631037,53.0,1065435,2,1,1,1,1.0,40.0,1.0,-9.0,2.0,53M,9.0,22688.0,2109.0 +2631037,2631038,53.0,1065436,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,56173,12.0,22688.0,2109.0 +2631038,2631039,53.0,1065436,2,2,13,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631039,2631040,53.0,1065437,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,56173,12.0,22685.0,2109.0 +2631040,2631041,53.0,1065437,2,2,13,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631041,2631042,53.0,1065438,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,56173,12.0,22688.0,2109.0 +2631042,2631043,53.0,1065438,2,2,13,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631043,2631044,53.0,1065439,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,56173,12.0,22688.0,2109.0 +2631044,2631045,53.0,1065439,2,2,13,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631045,2631046,47.0,1065440,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22685.0,2109.0 +2631046,2631047,51.0,1065440,2,2,1,4,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22685.0,2109.0 +2631047,2631048,47.0,1065441,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2631048,2631049,51.0,1065441,2,2,1,4,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2631049,2631050,47.0,1065442,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22685.0,2109.0 +2631050,2631051,51.0,1065442,2,2,1,4,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22685.0,2109.0 +2631051,2631052,47.0,1065443,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2631052,2631053,51.0,1065443,2,2,1,4,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2631053,2631054,47.0,1065444,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2631054,2631055,51.0,1065444,2,2,1,4,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2631055,2631056,47.0,1065445,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2631056,2631057,51.0,1065445,2,2,1,4,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2631057,2631058,47.0,1065446,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22686.0,2109.0 +2631058,2631059,51.0,1065446,2,2,1,4,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22686.0,2109.0 +2631059,2631060,47.0,1065447,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22685.0,2109.0 +2631060,2631061,51.0,1065447,2,2,1,4,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22685.0,2109.0 +2631061,2631062,47.0,1065448,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22687.0,2109.0 +2631062,2631063,51.0,1065448,2,2,1,4,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22687.0,2109.0 +2631063,2631064,47.0,1065449,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22687.0,2109.0 +2631064,2631065,51.0,1065449,2,2,1,4,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22687.0,2109.0 +2631065,2631066,52.0,1065450,1,2,0,1,1.0,30.0,5.0,16.0,4.0,6111,13.0,22688.0,2109.0 +2631066,2631067,52.0,1065451,1,2,0,1,1.0,30.0,5.0,16.0,4.0,6111,13.0,22688.0,2109.0 +2631067,2631068,58.0,1065452,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631068,2631069,54.0,1065453,1,2,0,1,1.0,20.0,1.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2631069,2631070,52.0,1065454,1,2,0,1,1.0,30.0,5.0,16.0,4.0,6111,13.0,22688.0,2109.0 +2631070,2631071,54.0,1065455,1,2,0,1,1.0,20.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631071,2631072,58.0,1065456,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631072,2631073,58.0,1065457,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631073,2631074,58.0,1065458,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631074,2631075,55.0,1065459,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,8111Z,17.0,22685.0,2109.0 +2631075,2631076,55.0,1065460,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,8111Z,17.0,22688.0,2109.0 +2631076,2631077,55.0,1065461,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,8111Z,17.0,22688.0,2109.0 +2631077,2631078,55.0,1065462,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,8111Z,17.0,22685.0,2109.0 +2631078,2631079,55.0,1065463,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,8111Z,17.0,22688.0,2109.0 +2631079,2631080,55.0,1065464,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,8111Z,17.0,22688.0,2109.0 +2631080,2631081,57.0,1065465,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631081,2631082,57.0,1065466,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631082,2631083,58.0,1065467,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631083,2631084,58.0,1065468,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631084,2631085,58.0,1065469,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22686.0,2109.0 +2631085,2631086,58.0,1065470,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631086,2631087,58.0,1065471,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631087,2631088,58.0,1065472,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631088,2631089,58.0,1065473,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631089,2631090,52.0,1065474,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631090,2631091,46.0,1065475,1,1,0,1,1.0,45.0,1.0,15.0,2.0,622M,15.0,22688.0,2109.0 +2631091,2631092,59.0,1065475,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631092,2631093,47.0,1065476,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631093,2631094,49.0,1065477,1,2,0,1,1.0,45.0,2.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2631094,2631095,61.0,1065478,1,2,0,1,1.0,14.0,1.0,-9.0,4.0,5617Z,12.0,22688.0,2109.0 +2631095,2631096,56.0,1065479,1,2,0,1,1.0,40.0,3.0,-9.0,4.0,4523,5.0,22688.0,2109.0 +2631096,2631097,45.0,1065480,1,1,0,1,1.0,70.0,3.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631097,2631098,52.0,1065481,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631098,2631099,52.0,1065482,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631099,2631100,52.0,1065483,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22686.0,2109.0 +2631100,2631101,52.0,1065484,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631101,2631102,52.0,1065485,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631102,2631103,52.0,1065486,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22685.0,2109.0 +2631103,2631104,52.0,1065487,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631104,2631105,52.0,1065488,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631105,2631106,64.0,1065489,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631106,2631107,88.0,1065489,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631107,2631108,64.0,1065490,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631108,2631109,88.0,1065490,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631109,2631110,64.0,1065491,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631110,2631111,88.0,1065491,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631111,2631112,64.0,1065492,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631112,2631113,88.0,1065492,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631113,2631114,64.0,1065493,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631114,2631115,88.0,1065493,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631115,2631116,64.0,1065494,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631116,2631117,88.0,1065494,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631117,2631118,64.0,1065495,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631118,2631119,88.0,1065495,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631119,2631120,64.0,1065496,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631120,2631121,88.0,1065496,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631121,2631122,64.0,1065497,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631122,2631123,88.0,1065497,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631123,2631124,64.0,1065498,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631124,2631125,88.0,1065498,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631125,2631126,64.0,1065499,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631126,2631127,88.0,1065499,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631127,2631128,64.0,1065500,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631128,2631129,88.0,1065500,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631129,2631130,64.0,1065501,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631130,2631131,88.0,1065501,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631131,2631132,64.0,1065502,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631132,2631133,88.0,1065502,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631133,2631134,64.0,1065503,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631134,2631135,88.0,1065503,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631135,2631136,64.0,1065504,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631136,2631137,88.0,1065504,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631137,2631138,64.0,1065505,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631138,2631139,88.0,1065505,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631139,2631140,64.0,1065506,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631140,2631141,88.0,1065506,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631141,2631142,64.0,1065507,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631142,2631143,88.0,1065507,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631143,2631144,63.0,1065508,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631144,2631145,63.0,1065509,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631145,2631146,63.0,1065510,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631146,2631147,61.0,1065511,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2631147,2631148,60.0,1065512,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,622M,15.0,22688.0,2109.0 +2631148,2631149,45.0,1065513,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2631149,2631150,45.0,1065514,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631150,2631151,45.0,1065515,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631151,2631152,61.0,1065516,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6231,14.0,22688.0,2109.0 +2631152,2631153,61.0,1065517,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6231,14.0,22688.0,2109.0 +2631153,2631154,45.0,1065518,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631154,2631155,60.0,1065519,1,2,0,1,1.0,21.0,4.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2631155,2631156,45.0,1065520,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631156,2631157,45.0,1065521,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631157,2631158,45.0,1065522,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631158,2631159,61.0,1065523,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6231,14.0,22688.0,2109.0 +2631159,2631160,61.0,1065524,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6231,14.0,22688.0,2109.0 +2631160,2631161,61.0,1065525,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6231,14.0,22688.0,2109.0 +2631161,2631162,62.0,1065526,1,2,0,1,1.0,15.0,4.0,-9.0,4.0,6213ZM,14.0,22688.0,2109.0 +2631162,2631163,45.0,1065527,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631163,2631164,61.0,1065528,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6231,14.0,22688.0,2109.0 +2631164,2631165,55.0,1065529,1,2,0,1,1.0,18.0,1.0,-9.0,4.0,6214,14.0,22688.0,2109.0 +2631165,2631166,64.0,1065530,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22688.0,2109.0 +2631166,2631167,51.0,1065531,1,1,0,1,1.0,35.0,3.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2631167,2631168,59.0,1065532,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22687.0,2109.0 +2631168,2631169,51.0,1065533,1,1,0,1,1.0,35.0,3.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2631169,2631170,51.0,1065534,1,1,0,1,1.0,35.0,3.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2631170,2631171,59.0,1065535,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2631171,2631172,49.0,1065536,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22686.0,2109.0 +2631172,2631173,49.0,1065537,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22688.0,2109.0 +2631173,2631174,49.0,1065538,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22688.0,2109.0 +2631174,2631175,59.0,1065539,1,1,0,1,1.0,18.0,6.0,-9.0,2.0,5313,9.0,22688.0,2109.0 +2631175,2631176,59.0,1065540,1,1,0,1,1.0,18.0,6.0,-9.0,2.0,5313,9.0,22686.0,2109.0 +2631176,2631177,59.0,1065541,1,1,0,1,1.0,16.0,1.0,-9.0,4.0,45439,5.0,22688.0,2109.0 +2631177,2631178,58.0,1065542,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631178,2631179,58.0,1065543,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,23,2.0,22687.0,2109.0 +2631179,2631180,58.0,1065544,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,23,2.0,22685.0,2109.0 +2631180,2631181,54.0,1065545,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631181,2631182,66.0,1065545,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631182,2631183,54.0,1065546,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631183,2631184,66.0,1065546,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631184,2631185,54.0,1065547,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631185,2631186,66.0,1065547,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631186,2631187,54.0,1065548,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631187,2631188,66.0,1065548,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631188,2631189,54.0,1065549,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631189,2631190,66.0,1065549,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631190,2631191,54.0,1065550,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631191,2631192,66.0,1065550,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631192,2631193,54.0,1065551,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631193,2631194,66.0,1065551,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631194,2631195,54.0,1065552,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631195,2631196,66.0,1065552,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631196,2631197,54.0,1065553,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631197,2631198,66.0,1065553,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631198,2631199,54.0,1065554,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631199,2631200,66.0,1065554,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631200,2631201,54.0,1065555,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631201,2631202,66.0,1065555,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631202,2631203,54.0,1065556,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631203,2631204,66.0,1065556,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631204,2631205,54.0,1065557,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631205,2631206,66.0,1065557,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631206,2631207,54.0,1065558,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631207,2631208,66.0,1065558,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631208,2631209,54.0,1065559,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631209,2631210,66.0,1065559,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631210,2631211,54.0,1065560,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631211,2631212,66.0,1065560,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631212,2631213,54.0,1065561,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631213,2631214,66.0,1065561,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631214,2631215,54.0,1065562,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631215,2631216,66.0,1065562,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631216,2631217,54.0,1065563,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631217,2631218,66.0,1065563,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631218,2631219,54.0,1065564,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631219,2631220,66.0,1065564,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631220,2631221,54.0,1065565,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631221,2631222,66.0,1065565,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631222,2631223,54.0,1065566,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631223,2631224,66.0,1065566,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631224,2631225,54.0,1065567,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631225,2631226,66.0,1065567,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631226,2631227,54.0,1065568,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631227,2631228,66.0,1065568,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631228,2631229,54.0,1065569,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631229,2631230,66.0,1065569,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631230,2631231,52.0,1065570,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631231,2631232,52.0,1065571,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631232,2631233,61.0,1065572,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631233,2631234,61.0,1065573,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631234,2631235,52.0,1065574,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631235,2631236,52.0,1065575,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631236,2631237,61.0,1065576,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631237,2631238,61.0,1065577,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631238,2631239,57.0,1065578,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631239,2631240,52.0,1065579,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631240,2631241,62.0,1065580,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631241,2631242,52.0,1065581,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631242,2631243,61.0,1065582,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631243,2631244,62.0,1065583,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631244,2631245,52.0,1065584,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631245,2631246,52.0,1065585,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631246,2631247,61.0,1065586,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631247,2631248,52.0,1065587,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631248,2631249,61.0,1065588,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631249,2631250,52.0,1065589,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631250,2631251,62.0,1065590,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631251,2631252,61.0,1065591,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631252,2631253,52.0,1065592,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631253,2631254,52.0,1065593,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631254,2631255,62.0,1065594,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631255,2631256,61.0,1065595,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631256,2631257,62.0,1065596,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631257,2631258,57.0,1065597,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631258,2631259,52.0,1065598,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631259,2631260,52.0,1065599,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631260,2631261,52.0,1065600,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631261,2631262,51.0,1065601,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631262,2631263,60.0,1065602,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631263,2631264,60.0,1065603,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631264,2631265,60.0,1065604,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631265,2631266,51.0,1065605,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631266,2631267,55.0,1065606,1,1,0,1,3.0,-9.0,-9.0,-9.0,2.0,999920,0.0,22687.0,2109.0 +2631267,2631268,55.0,1065607,1,1,0,1,3.0,-9.0,-9.0,-9.0,2.0,999920,0.0,22685.0,2109.0 +2631268,2631269,60.0,1065608,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631269,2631270,51.0,1065609,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631270,2631271,60.0,1065610,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631271,2631272,62.0,1065611,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631272,2631273,58.0,1065612,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2631273,2631274,62.0,1065613,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631274,2631275,52.0,1065614,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631275,2631276,56.0,1065615,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631276,2631277,52.0,1065616,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631277,2631278,52.0,1065617,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631278,2631279,54.0,1065618,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631279,2631280,56.0,1065619,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631280,2631281,45.0,1065620,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2631281,2631282,42.0,1065620,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2631282,2631283,15.0,1065620,3,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22688.0,2109.0 +2631283,2631284,11.0,1065620,4,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22688.0,2109.0 +2631284,2631285,51.0,1065621,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631285,2631286,25.0,1065621,2,2,2,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631286,2631287,23.0,1065621,3,2,2,1,1.0,28.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631287,2631288,3.0,1065621,4,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631288,2631289,51.0,1065622,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631289,2631290,25.0,1065622,2,2,2,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631290,2631291,23.0,1065622,3,2,2,1,1.0,28.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631291,2631292,3.0,1065622,4,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631292,2631293,51.0,1065623,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631293,2631294,25.0,1065623,2,2,2,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631294,2631295,23.0,1065623,3,2,2,1,1.0,28.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2631295,2631296,3.0,1065623,4,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2631296,2631297,51.0,1065624,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631297,2631298,25.0,1065624,2,2,2,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631298,2631299,23.0,1065624,3,2,2,1,1.0,28.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631299,2631300,3.0,1065624,4,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631300,2631301,51.0,1065625,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631301,2631302,25.0,1065625,2,2,2,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631302,2631303,23.0,1065625,3,2,2,1,1.0,28.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631303,2631304,3.0,1065625,4,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631304,2631305,51.0,1065626,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631305,2631306,25.0,1065626,2,2,2,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631306,2631307,23.0,1065626,3,2,2,1,1.0,28.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631307,2631308,3.0,1065626,4,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631308,2631309,51.0,1065627,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631309,2631310,25.0,1065627,2,2,2,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631310,2631311,23.0,1065627,3,2,2,1,1.0,28.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631311,2631312,3.0,1065627,4,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631312,2631313,51.0,1065628,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631313,2631314,25.0,1065628,2,2,2,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631314,2631315,23.0,1065628,3,2,2,1,1.0,28.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631315,2631316,3.0,1065628,4,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631316,2631317,51.0,1065629,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631317,2631318,25.0,1065629,2,2,2,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631318,2631319,23.0,1065629,3,2,2,1,1.0,28.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631319,2631320,3.0,1065629,4,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631320,2631321,49.0,1065630,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22685.0,2109.0 +2631321,2631322,49.0,1065630,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22685.0,2109.0 +2631322,2631323,20.0,1065630,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22685.0,2109.0 +2631323,2631324,15.0,1065630,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22685.0,2109.0 +2631324,2631325,49.0,1065631,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22686.0,2109.0 +2631325,2631326,49.0,1065631,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22686.0,2109.0 +2631326,2631327,20.0,1065631,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22686.0,2109.0 +2631327,2631328,15.0,1065631,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22686.0,2109.0 +2631328,2631329,49.0,1065632,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631329,2631330,49.0,1065632,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631330,2631331,20.0,1065632,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631331,2631332,15.0,1065632,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631332,2631333,49.0,1065633,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631333,2631334,49.0,1065633,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631334,2631335,20.0,1065633,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631335,2631336,15.0,1065633,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631336,2631337,49.0,1065634,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631337,2631338,49.0,1065634,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631338,2631339,20.0,1065634,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631339,2631340,15.0,1065634,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631340,2631341,49.0,1065635,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631341,2631342,49.0,1065635,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631342,2631343,20.0,1065635,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631343,2631344,15.0,1065635,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631344,2631345,49.0,1065636,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631345,2631346,49.0,1065636,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631346,2631347,20.0,1065636,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631347,2631348,15.0,1065636,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631348,2631349,49.0,1065637,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22685.0,2109.0 +2631349,2631350,49.0,1065637,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22685.0,2109.0 +2631350,2631351,20.0,1065637,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22685.0,2109.0 +2631351,2631352,15.0,1065637,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22685.0,2109.0 +2631352,2631353,49.0,1065638,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22686.0,2109.0 +2631353,2631354,49.0,1065638,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22686.0,2109.0 +2631354,2631355,20.0,1065638,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22686.0,2109.0 +2631355,2631356,15.0,1065638,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22686.0,2109.0 +2631356,2631357,49.0,1065639,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631357,2631358,49.0,1065639,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631358,2631359,20.0,1065639,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631359,2631360,15.0,1065639,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631360,2631361,49.0,1065640,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631361,2631362,49.0,1065640,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631362,2631363,20.0,1065640,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631363,2631364,15.0,1065640,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631364,2631365,49.0,1065641,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631365,2631366,49.0,1065641,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631366,2631367,20.0,1065641,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631367,2631368,15.0,1065641,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631368,2631369,49.0,1065642,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22685.0,2109.0 +2631369,2631370,49.0,1065642,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22685.0,2109.0 +2631370,2631371,20.0,1065642,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22685.0,2109.0 +2631371,2631372,15.0,1065642,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22685.0,2109.0 +2631372,2631373,49.0,1065643,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631373,2631374,49.0,1065643,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631374,2631375,20.0,1065643,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631375,2631376,15.0,1065643,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631376,2631377,49.0,1065644,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631377,2631378,49.0,1065644,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631378,2631379,20.0,1065644,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631379,2631380,15.0,1065644,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631380,2631381,49.0,1065645,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631381,2631382,49.0,1065645,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631382,2631383,20.0,1065645,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631383,2631384,15.0,1065645,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631384,2631385,49.0,1065646,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631385,2631386,49.0,1065646,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631386,2631387,20.0,1065646,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631387,2631388,15.0,1065646,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631388,2631389,49.0,1065647,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631389,2631390,49.0,1065647,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631390,2631391,20.0,1065647,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631391,2631392,15.0,1065647,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631392,2631393,49.0,1065648,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631393,2631394,49.0,1065648,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631394,2631395,20.0,1065648,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631395,2631396,15.0,1065648,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631396,2631397,49.0,1065649,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22685.0,2109.0 +2631397,2631398,49.0,1065649,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22685.0,2109.0 +2631398,2631399,20.0,1065649,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22685.0,2109.0 +2631399,2631400,15.0,1065649,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22685.0,2109.0 +2631400,2631401,49.0,1065650,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631401,2631402,49.0,1065650,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631402,2631403,20.0,1065650,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631403,2631404,15.0,1065650,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631404,2631405,49.0,1065651,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631405,2631406,49.0,1065651,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631406,2631407,20.0,1065651,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631407,2631408,15.0,1065651,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631408,2631409,49.0,1065652,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631409,2631410,49.0,1065652,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631410,2631411,20.0,1065652,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631411,2631412,15.0,1065652,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631412,2631413,49.0,1065653,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,8131,17.0,22688.0,2109.0 +2631413,2631414,49.0,1065653,2,2,1,1,1.0,40.0,6.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631414,2631415,20.0,1065653,3,2,2,1,1.0,40.0,6.0,-9.0,4.0,531M,9.0,22688.0,2109.0 +2631415,2631416,15.0,1065653,4,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2631416,2631417,46.0,1065654,1,2,0,1,1.0,18.0,1.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2631417,2631418,7.0,1065654,2,2,15,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631418,2631419,31.0,1065655,1,1,0,3,6.0,-9.0,-9.0,16.0,4.0,4411,5.0,22688.0,2109.0 +2631419,2631420,25.0,1065656,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631420,2631421,24.0,1065656,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631421,2631422,23.0,1065656,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631422,2631423,22.0,1065656,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631423,2631424,25.0,1065657,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631424,2631425,24.0,1065657,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631425,2631426,23.0,1065657,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631426,2631427,22.0,1065657,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631427,2631428,25.0,1065658,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631428,2631429,24.0,1065658,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631429,2631430,23.0,1065658,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631430,2631431,22.0,1065658,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631431,2631432,25.0,1065659,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631432,2631433,24.0,1065659,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631433,2631434,23.0,1065659,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631434,2631435,22.0,1065659,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631435,2631436,25.0,1065660,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631436,2631437,24.0,1065660,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631437,2631438,23.0,1065660,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631438,2631439,22.0,1065660,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631439,2631440,25.0,1065661,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631440,2631441,24.0,1065661,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631441,2631442,23.0,1065661,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631442,2631443,22.0,1065661,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631443,2631444,25.0,1065662,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631444,2631445,24.0,1065662,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631445,2631446,23.0,1065662,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631446,2631447,22.0,1065662,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631447,2631448,25.0,1065663,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631448,2631449,24.0,1065663,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631449,2631450,23.0,1065663,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631450,2631451,22.0,1065663,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631451,2631452,25.0,1065664,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631452,2631453,24.0,1065664,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631453,2631454,23.0,1065664,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631454,2631455,22.0,1065664,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2631455,2631456,25.0,1065665,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631456,2631457,24.0,1065665,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631457,2631458,23.0,1065665,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631458,2631459,22.0,1065665,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631459,2631460,25.0,1065666,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2631460,2631461,24.0,1065666,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2631461,2631462,23.0,1065666,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2631462,2631463,22.0,1065666,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2631463,2631464,25.0,1065667,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631464,2631465,24.0,1065667,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631465,2631466,23.0,1065667,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631466,2631467,22.0,1065667,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631467,2631468,25.0,1065668,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631468,2631469,20.0,1065668,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631469,2631470,25.0,1065669,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631470,2631471,20.0,1065669,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631471,2631472,25.0,1065670,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22686.0,2109.0 +2631472,2631473,20.0,1065670,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22686.0,2109.0 +2631473,2631474,25.0,1065671,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631474,2631475,20.0,1065671,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631475,2631476,25.0,1065672,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631476,2631477,20.0,1065672,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631477,2631478,25.0,1065673,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22687.0,2109.0 +2631478,2631479,20.0,1065673,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22687.0,2109.0 +2631479,2631480,25.0,1065674,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631480,2631481,20.0,1065674,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631481,2631482,25.0,1065675,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631482,2631483,20.0,1065675,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631483,2631484,25.0,1065676,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631484,2631485,20.0,1065676,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631485,2631486,25.0,1065677,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22687.0,2109.0 +2631486,2631487,20.0,1065677,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22687.0,2109.0 +2631487,2631488,25.0,1065678,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631488,2631489,20.0,1065678,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631489,2631490,25.0,1065679,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631490,2631491,20.0,1065679,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631491,2631492,25.0,1065680,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22685.0,2109.0 +2631492,2631493,20.0,1065680,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22685.0,2109.0 +2631493,2631494,25.0,1065681,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631494,2631495,20.0,1065681,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631495,2631496,25.0,1065682,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631496,2631497,20.0,1065682,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631497,2631498,25.0,1065683,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631498,2631499,20.0,1065683,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631499,2631500,25.0,1065684,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631500,2631501,20.0,1065684,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631501,2631502,25.0,1065685,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22685.0,2109.0 +2631502,2631503,20.0,1065685,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22685.0,2109.0 +2631503,2631504,25.0,1065686,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22688.0,2109.0 +2631504,2631505,20.0,1065686,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2631505,2631506,25.0,1065687,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2631506,2631507,29.0,1065687,2,1,12,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631507,2631508,29.0,1065688,1,2,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631508,2631509,30.0,1065688,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22688.0,2109.0 +2631509,2631510,29.0,1065689,1,2,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22687.0,2109.0 +2631510,2631511,30.0,1065689,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22687.0,2109.0 +2631511,2631512,29.0,1065690,1,2,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631512,2631513,30.0,1065690,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22688.0,2109.0 +2631513,2631514,29.0,1065691,1,2,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22687.0,2109.0 +2631514,2631515,30.0,1065691,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22687.0,2109.0 +2631515,2631516,29.0,1065692,1,2,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631516,2631517,30.0,1065692,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22688.0,2109.0 +2631517,2631518,31.0,1065693,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22685.0,2109.0 +2631518,2631519,27.0,1065693,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22685.0,2109.0 +2631519,2631520,31.0,1065694,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2631520,2631521,27.0,1065694,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631521,2631522,31.0,1065695,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22687.0,2109.0 +2631522,2631523,27.0,1065695,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22687.0,2109.0 +2631523,2631524,31.0,1065696,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2631524,2631525,27.0,1065696,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631525,2631526,31.0,1065697,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2631526,2631527,27.0,1065697,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631527,2631528,31.0,1065698,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2631528,2631529,27.0,1065698,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631529,2631530,31.0,1065699,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2631530,2631531,27.0,1065699,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631531,2631532,31.0,1065700,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22685.0,2109.0 +2631532,2631533,27.0,1065700,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22685.0,2109.0 +2631533,2631534,33.0,1065701,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2631534,2631535,26.0,1065701,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631535,2631536,33.0,1065702,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2631536,2631537,26.0,1065702,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631537,2631538,33.0,1065703,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2631538,2631539,26.0,1065703,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631539,2631540,33.0,1065704,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2631540,2631541,26.0,1065704,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631541,2631542,33.0,1065705,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5413,10.0,22686.0,2109.0 +2631542,2631543,26.0,1065705,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2631543,2631544,31.0,1065706,1,1,0,4,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22686.0,2109.0 +2631544,2631545,28.0,1065707,1,1,0,4,1.0,42.0,1.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2631545,2631546,29.0,1065708,1,2,0,4,1.0,20.0,4.0,16.0,4.0,6231,14.0,22688.0,2109.0 +2631546,2631547,28.0,1065708,2,2,15,4,1.0,40.0,1.0,16.0,4.0,522M,9.0,22688.0,2109.0 +2631547,2631548,26.0,1065708,3,2,15,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22688.0,2109.0 +2631548,2631549,26.0,1065709,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631549,2631550,25.0,1065709,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631550,2631551,26.0,1065710,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631551,2631552,25.0,1065710,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631552,2631553,26.0,1065711,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631553,2631554,25.0,1065711,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631554,2631555,26.0,1065712,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631555,2631556,25.0,1065712,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631556,2631557,26.0,1065713,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631557,2631558,25.0,1065713,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631558,2631559,26.0,1065714,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631559,2631560,25.0,1065714,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631560,2631561,26.0,1065715,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22685.0,2109.0 +2631561,2631562,25.0,1065715,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22685.0,2109.0 +2631562,2631563,26.0,1065716,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22685.0,2109.0 +2631563,2631564,25.0,1065716,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22685.0,2109.0 +2631564,2631565,26.0,1065717,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631565,2631566,25.0,1065717,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631566,2631567,26.0,1065718,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631567,2631568,25.0,1065718,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631568,2631569,26.0,1065719,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631569,2631570,25.0,1065719,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631570,2631571,26.0,1065720,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631571,2631572,25.0,1065720,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631572,2631573,26.0,1065721,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631573,2631574,25.0,1065721,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631574,2631575,26.0,1065722,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631575,2631576,25.0,1065722,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631576,2631577,26.0,1065723,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22685.0,2109.0 +2631577,2631578,25.0,1065723,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22685.0,2109.0 +2631578,2631579,26.0,1065724,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631579,2631580,25.0,1065724,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631580,2631581,26.0,1065725,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22685.0,2109.0 +2631581,2631582,25.0,1065725,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22685.0,2109.0 +2631582,2631583,26.0,1065726,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631583,2631584,25.0,1065726,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631584,2631585,26.0,1065727,1,1,0,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631585,2631586,25.0,1065727,2,1,12,2,2.0,40.0,5.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631586,2631587,36.0,1065728,1,1,0,4,1.0,35.0,1.0,-9.0,3.0,5417,10.0,22688.0,2109.0 +2631587,2631588,30.0,1065728,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22688.0,2109.0 +2631588,2631589,36.0,1065729,1,1,0,4,1.0,35.0,1.0,-9.0,3.0,5417,10.0,22688.0,2109.0 +2631589,2631590,30.0,1065729,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22688.0,2109.0 +2631590,2631591,36.0,1065730,1,1,0,4,1.0,35.0,1.0,-9.0,3.0,5417,10.0,22688.0,2109.0 +2631591,2631592,30.0,1065730,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22688.0,2109.0 +2631592,2631593,36.0,1065731,1,1,0,4,1.0,35.0,1.0,-9.0,3.0,5417,10.0,22686.0,2109.0 +2631593,2631594,30.0,1065731,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22686.0,2109.0 +2631594,2631595,28.0,1065732,1,1,0,4,1.0,45.0,1.0,-9.0,4.0,3399M,3.0,22688.0,2109.0 +2631595,2631596,27.0,1065733,1,1,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22688.0,2109.0 +2631596,2631597,26.0,1065733,2,2,13,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631597,2631598,27.0,1065734,1,1,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22688.0,2109.0 +2631598,2631599,26.0,1065734,2,2,13,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631599,2631600,27.0,1065735,1,1,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22688.0,2109.0 +2631600,2631601,26.0,1065735,2,2,13,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631601,2631602,27.0,1065736,1,1,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22685.0,2109.0 +2631602,2631603,26.0,1065736,2,2,13,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631603,2631604,27.0,1065737,1,1,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22685.0,2109.0 +2631604,2631605,26.0,1065737,2,2,13,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631605,2631606,35.0,1065738,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22687.0,2109.0 +2631606,2631607,35.0,1065739,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2631607,2631608,32.0,1065740,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2631608,2631609,32.0,1065741,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2631609,2631610,32.0,1065742,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2631610,2631611,32.0,1065743,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2631611,2631612,32.0,1065744,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2631612,2631613,32.0,1065745,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2631613,2631614,32.0,1065746,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2631614,2631615,31.0,1065747,1,1,0,4,1.0,70.0,1.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2631615,2631616,31.0,1065748,1,1,0,4,1.0,70.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631616,2631617,31.0,1065749,1,1,0,4,1.0,70.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631617,2631618,31.0,1065750,1,1,0,4,1.0,70.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631618,2631619,31.0,1065751,1,1,0,4,1.0,70.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631619,2631620,31.0,1065752,1,1,0,4,1.0,70.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631620,2631621,42.0,1065753,1,1,0,4,1.0,45.0,1.0,-9.0,4.0,5614,12.0,22686.0,2109.0 +2631621,2631622,42.0,1065754,1,1,0,4,1.0,45.0,1.0,-9.0,4.0,5614,12.0,22688.0,2109.0 +2631622,2631623,42.0,1065755,1,1,0,4,1.0,45.0,1.0,-9.0,4.0,5614,12.0,22687.0,2109.0 +2631623,2631624,42.0,1065756,1,1,0,4,1.0,45.0,1.0,-9.0,4.0,5614,12.0,22688.0,2109.0 +2631624,2631625,42.0,1065757,1,1,0,4,1.0,45.0,1.0,-9.0,4.0,5614,12.0,22688.0,2109.0 +2631625,2631626,42.0,1065758,1,1,0,4,1.0,45.0,1.0,-9.0,4.0,5614,12.0,22688.0,2109.0 +2631626,2631627,42.0,1065759,1,1,0,4,1.0,45.0,1.0,-9.0,4.0,5614,12.0,22685.0,2109.0 +2631627,2631628,25.0,1065760,1,1,0,4,1.0,40.0,4.0,-9.0,4.0,334M2,3.0,22688.0,2109.0 +2631628,2631629,42.0,1065761,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631629,2631630,42.0,1065762,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631630,2631631,42.0,1065763,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631631,2631632,27.0,1065764,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22685.0,2109.0 +2631632,2631633,42.0,1065765,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22686.0,2109.0 +2631633,2631634,27.0,1065766,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631634,2631635,27.0,1065767,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22686.0,2109.0 +2631635,2631636,27.0,1065768,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631636,2631637,31.0,1065769,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,3391,3.0,22686.0,2109.0 +2631637,2631638,31.0,1065770,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,3391,3.0,22688.0,2109.0 +2631638,2631639,31.0,1065771,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,3391,3.0,22688.0,2109.0 +2631639,2631640,31.0,1065772,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22686.0,2109.0 +2631640,2631641,37.0,1065773,1,1,0,4,1.0,50.0,1.0,-9.0,4.0,4231,4.0,22688.0,2109.0 +2631641,2631642,35.0,1065773,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631642,2631643,5.0,1065773,3,1,2,4,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2631643,2631644,3.0,1065773,4,1,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631644,2631645,37.0,1065774,1,1,0,4,1.0,50.0,1.0,-9.0,4.0,4231,4.0,22685.0,2109.0 +2631645,2631646,35.0,1065774,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2631646,2631647,5.0,1065774,3,1,2,4,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22685.0,2109.0 +2631647,2631648,3.0,1065774,4,1,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22685.0,2109.0 +2631648,2631649,37.0,1065775,1,1,0,4,1.0,50.0,1.0,-9.0,4.0,4231,4.0,22688.0,2109.0 +2631649,2631650,35.0,1065775,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631650,2631651,5.0,1065775,3,1,2,4,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2631651,2631652,3.0,1065775,4,1,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631652,2631653,36.0,1065776,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,923,18.0,22688.0,2109.0 +2631653,2631654,31.0,1065776,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631654,2631655,6.0,1065776,3,2,2,4,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2631655,2631656,2.0,1065776,4,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631656,2631657,36.0,1065777,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,923,18.0,22688.0,2109.0 +2631657,2631658,31.0,1065777,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631658,2631659,6.0,1065777,3,2,2,4,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2631659,2631660,2.0,1065777,4,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631660,2631661,36.0,1065778,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,923,18.0,22688.0,2109.0 +2631661,2631662,31.0,1065778,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631662,2631663,6.0,1065778,3,2,2,4,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2631663,2631664,2.0,1065778,4,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631664,2631665,36.0,1065779,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,923,18.0,22688.0,2109.0 +2631665,2631666,31.0,1065779,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631666,2631667,6.0,1065779,3,2,2,4,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2631667,2631668,2.0,1065779,4,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631668,2631669,36.0,1065780,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,923,18.0,22688.0,2109.0 +2631669,2631670,31.0,1065780,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631670,2631671,6.0,1065780,3,2,2,4,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2631671,2631672,2.0,1065780,4,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631672,2631673,36.0,1065781,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,923,18.0,22688.0,2109.0 +2631673,2631674,31.0,1065781,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631674,2631675,6.0,1065781,3,2,2,4,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2631675,2631676,2.0,1065781,4,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631676,2631677,36.0,1065782,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,923,18.0,22688.0,2109.0 +2631677,2631678,31.0,1065782,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631678,2631679,6.0,1065782,3,2,2,4,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2631679,2631680,2.0,1065782,4,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631680,2631681,36.0,1065783,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,923,18.0,22688.0,2109.0 +2631681,2631682,31.0,1065783,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2631682,2631683,6.0,1065783,3,2,2,4,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2631683,2631684,2.0,1065783,4,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631684,2631685,31.0,1065784,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22688.0,2109.0 +2631685,2631686,31.0,1065785,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22688.0,2109.0 +2631686,2631687,31.0,1065786,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22686.0,2109.0 +2631687,2631688,31.0,1065787,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22688.0,2109.0 +2631688,2631689,31.0,1065788,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22688.0,2109.0 +2631689,2631690,31.0,1065789,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22688.0,2109.0 +2631690,2631691,31.0,1065790,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22688.0,2109.0 +2631691,2631692,31.0,1065791,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22685.0,2109.0 +2631692,2631693,31.0,1065792,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22686.0,2109.0 +2631693,2631694,31.0,1065793,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22685.0,2109.0 +2631694,2631695,31.0,1065794,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22688.0,2109.0 +2631695,2631696,31.0,1065795,1,1,0,3,1.0,43.0,1.0,-9.0,2.0,622M,15.0,22688.0,2109.0 +2631696,2631697,26.0,1065796,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631697,2631698,5.0,1065796,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631698,2631699,26.0,1065797,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22686.0,2109.0 +2631699,2631700,5.0,1065797,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22686.0,2109.0 +2631700,2631701,26.0,1065798,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631701,2631702,5.0,1065798,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631702,2631703,26.0,1065799,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631703,2631704,5.0,1065799,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631704,2631705,26.0,1065800,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631705,2631706,5.0,1065800,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631706,2631707,26.0,1065801,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631707,2631708,5.0,1065801,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631708,2631709,26.0,1065802,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631709,2631710,5.0,1065802,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631710,2631711,26.0,1065803,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631711,2631712,5.0,1065803,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631712,2631713,26.0,1065804,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631713,2631714,5.0,1065804,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631714,2631715,26.0,1065805,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631715,2631716,5.0,1065805,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631716,2631717,26.0,1065806,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22685.0,2109.0 +2631717,2631718,5.0,1065806,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22685.0,2109.0 +2631718,2631719,26.0,1065807,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631719,2631720,5.0,1065807,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631720,2631721,26.0,1065808,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631721,2631722,5.0,1065808,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631722,2631723,26.0,1065809,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631723,2631724,5.0,1065809,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631724,2631725,26.0,1065810,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631725,2631726,5.0,1065810,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631726,2631727,26.0,1065811,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631727,2631728,5.0,1065811,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631728,2631729,26.0,1065812,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631729,2631730,5.0,1065812,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631730,2631731,26.0,1065813,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631731,2631732,5.0,1065813,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631732,2631733,26.0,1065814,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631733,2631734,5.0,1065814,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631734,2631735,26.0,1065815,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22688.0,2109.0 +2631735,2631736,5.0,1065815,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2631736,2631737,39.0,1065816,1,1,0,2,1.0,30.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2631737,2631738,25.0,1065816,2,2,12,1,1.0,30.0,3.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631738,2631739,39.0,1065817,1,1,0,2,1.0,30.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2631739,2631740,25.0,1065817,2,2,12,1,1.0,30.0,3.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631740,2631741,30.0,1065818,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631741,2631742,30.0,1065819,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2631742,2631743,27.0,1065820,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631743,2631744,24.0,1065820,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631744,2631745,27.0,1065821,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22687.0,2109.0 +2631745,2631746,24.0,1065821,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22687.0,2109.0 +2631746,2631747,27.0,1065822,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22685.0,2109.0 +2631747,2631748,24.0,1065822,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22685.0,2109.0 +2631748,2631749,27.0,1065823,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631749,2631750,24.0,1065823,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631750,2631751,27.0,1065824,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631751,2631752,24.0,1065824,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631752,2631753,27.0,1065825,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631753,2631754,24.0,1065825,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631754,2631755,27.0,1065826,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631755,2631756,24.0,1065826,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631756,2631757,27.0,1065827,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631757,2631758,24.0,1065827,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631758,2631759,27.0,1065828,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631759,2631760,24.0,1065828,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631760,2631761,27.0,1065829,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631761,2631762,24.0,1065829,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631762,2631763,27.0,1065830,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22687.0,2109.0 +2631763,2631764,24.0,1065830,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22687.0,2109.0 +2631764,2631765,27.0,1065831,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631765,2631766,24.0,1065831,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631766,2631767,27.0,1065832,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22686.0,2109.0 +2631767,2631768,24.0,1065832,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22686.0,2109.0 +2631768,2631769,27.0,1065833,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631769,2631770,24.0,1065833,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631770,2631771,27.0,1065834,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631771,2631772,24.0,1065834,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631772,2631773,27.0,1065835,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631773,2631774,24.0,1065835,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631774,2631775,27.0,1065836,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631775,2631776,24.0,1065836,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631776,2631777,27.0,1065837,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631777,2631778,24.0,1065837,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631778,2631779,27.0,1065838,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631779,2631780,24.0,1065838,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631780,2631781,27.0,1065839,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631781,2631782,24.0,1065839,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631782,2631783,27.0,1065840,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22686.0,2109.0 +2631783,2631784,24.0,1065840,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22686.0,2109.0 +2631784,2631785,27.0,1065841,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631785,2631786,24.0,1065841,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631786,2631787,27.0,1065842,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631787,2631788,24.0,1065842,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631788,2631789,27.0,1065843,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631789,2631790,24.0,1065843,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631790,2631791,27.0,1065844,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22686.0,2109.0 +2631791,2631792,24.0,1065844,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22686.0,2109.0 +2631792,2631793,27.0,1065845,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631793,2631794,24.0,1065845,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631794,2631795,27.0,1065846,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631795,2631796,24.0,1065846,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631796,2631797,27.0,1065847,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631797,2631798,24.0,1065847,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631798,2631799,27.0,1065848,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22688.0,2109.0 +2631799,2631800,24.0,1065848,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22688.0,2109.0 +2631800,2631801,31.0,1065849,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631801,2631802,43.0,1065850,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631802,2631803,43.0,1065851,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631803,2631804,43.0,1065852,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631804,2631805,43.0,1065853,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631805,2631806,31.0,1065854,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631806,2631807,43.0,1065855,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631807,2631808,31.0,1065856,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631808,2631809,31.0,1065857,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631809,2631810,43.0,1065858,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631810,2631811,31.0,1065859,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631811,2631812,43.0,1065860,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631812,2631813,43.0,1065861,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2631813,2631814,43.0,1065862,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2631814,2631815,43.0,1065863,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631815,2631816,43.0,1065864,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2631816,2631817,43.0,1065865,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2631817,2631818,32.0,1065866,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22686.0,2109.0 +2631818,2631819,43.0,1065867,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22686.0,2109.0 +2631819,2631820,27.0,1065868,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2631820,2631821,27.0,1065869,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22688.0,2109.0 +2631821,2631822,27.0,1065870,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22688.0,2109.0 +2631822,2631823,27.0,1065871,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22685.0,2109.0 +2631823,2631824,35.0,1065872,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22688.0,2109.0 +2631824,2631825,35.0,1065873,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22688.0,2109.0 +2631825,2631826,35.0,1065874,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22688.0,2109.0 +2631826,2631827,35.0,1065875,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22688.0,2109.0 +2631827,2631828,35.0,1065876,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22688.0,2109.0 +2631828,2631829,35.0,1065877,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22688.0,2109.0 +2631829,2631830,39.0,1065878,1,1,0,2,1.0,70.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2631830,2631831,30.0,1065879,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22686.0,2109.0 +2631831,2631832,30.0,1065880,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631832,2631833,30.0,1065881,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22685.0,2109.0 +2631833,2631834,39.0,1065882,1,1,0,2,1.0,70.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2631834,2631835,30.0,1065883,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2631835,2631836,39.0,1065884,1,1,0,2,1.0,70.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2631836,2631837,26.0,1065885,1,1,0,2,1.0,40.0,1.0,15.0,4.0,5415,10.0,22685.0,2109.0 +2631837,2631838,30.0,1065886,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,5416,10.0,22686.0,2109.0 +2631838,2631839,27.0,1065887,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631839,2631840,27.0,1065888,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22686.0,2109.0 +2631840,2631841,25.0,1065889,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22688.0,2109.0 +2631841,2631842,27.0,1065890,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22687.0,2109.0 +2631842,2631843,27.0,1065891,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22685.0,2109.0 +2631843,2631844,27.0,1065892,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631844,2631845,25.0,1065893,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22688.0,2109.0 +2631845,2631846,27.0,1065894,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631846,2631847,27.0,1065895,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22686.0,2109.0 +2631847,2631848,27.0,1065896,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631848,2631849,27.0,1065897,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631849,2631850,27.0,1065898,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631850,2631851,27.0,1065899,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631851,2631852,25.0,1065900,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22688.0,2109.0 +2631852,2631853,25.0,1065901,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22688.0,2109.0 +2631853,2631854,27.0,1065902,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631854,2631855,25.0,1065903,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22687.0,2109.0 +2631855,2631856,27.0,1065904,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631856,2631857,25.0,1065905,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22688.0,2109.0 +2631857,2631858,27.0,1065906,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631858,2631859,27.0,1065907,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22686.0,2109.0 +2631859,2631860,27.0,1065908,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631860,2631861,27.0,1065909,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631861,2631862,25.0,1065910,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22687.0,2109.0 +2631862,2631863,27.0,1065911,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631863,2631864,27.0,1065912,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631864,2631865,25.0,1065913,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22688.0,2109.0 +2631865,2631866,27.0,1065914,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631866,2631867,27.0,1065915,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631867,2631868,25.0,1065916,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22687.0,2109.0 +2631868,2631869,27.0,1065917,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22685.0,2109.0 +2631869,2631870,25.0,1065918,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22688.0,2109.0 +2631870,2631871,27.0,1065919,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22688.0,2109.0 +2631871,2631872,25.0,1065920,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22688.0,2109.0 +2631872,2631873,35.0,1065921,1,1,0,2,1.0,20.0,3.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2631873,2631874,29.0,1065922,1,1,0,2,1.0,65.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631874,2631875,35.0,1065923,1,1,0,2,1.0,20.0,3.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631875,2631876,32.0,1065924,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,4853,6.0,22688.0,2109.0 +2631876,2631877,41.0,1065925,1,1,0,2,1.0,40.0,4.0,-9.0,4.0,454110,5.0,22688.0,2109.0 +2631877,2631878,41.0,1065926,1,1,0,2,1.0,40.0,4.0,-9.0,4.0,454110,5.0,22685.0,2109.0 +2631878,2631879,41.0,1065927,1,1,0,2,1.0,40.0,4.0,-9.0,4.0,454110,5.0,22688.0,2109.0 +2631879,2631880,41.0,1065928,1,1,0,2,1.0,40.0,4.0,-9.0,4.0,454110,5.0,22688.0,2109.0 +2631880,2631881,29.0,1065929,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,6241,14.0,22685.0,2109.0 +2631881,2631882,29.0,1065930,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,6241,14.0,22686.0,2109.0 +2631882,2631883,30.0,1065931,1,2,0,2,3.0,20.0,6.0,-9.0,4.0,4249Z,4.0,22686.0,2109.0 +2631883,2631884,30.0,1065932,1,2,0,2,3.0,20.0,6.0,-9.0,4.0,4249Z,4.0,22688.0,2109.0 +2631884,2631885,30.0,1065933,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,622M,15.0,22687.0,2109.0 +2631885,2631886,35.0,1065934,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631886,2631887,35.0,1065935,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631887,2631888,35.0,1065936,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631888,2631889,35.0,1065937,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631889,2631890,35.0,1065938,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631890,2631891,35.0,1065939,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631891,2631892,35.0,1065940,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631892,2631893,35.0,1065941,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22687.0,2109.0 +2631893,2631894,35.0,1065942,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631894,2631895,35.0,1065943,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631895,2631896,35.0,1065944,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631896,2631897,35.0,1065945,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22685.0,2109.0 +2631897,2631898,35.0,1065946,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631898,2631899,35.0,1065947,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631899,2631900,35.0,1065948,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22687.0,2109.0 +2631900,2631901,35.0,1065949,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2631901,2631902,37.0,1065950,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2631902,2631903,30.0,1065951,1,1,0,2,1.0,20.0,1.0,15.0,4.0,44511,5.0,22688.0,2109.0 +2631903,2631904,30.0,1065952,1,1,0,2,1.0,20.0,1.0,15.0,4.0,44511,5.0,22688.0,2109.0 +2631904,2631905,44.0,1065953,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22685.0,2109.0 +2631905,2631906,44.0,1065954,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2631906,2631907,44.0,1065955,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2631907,2631908,44.0,1065956,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22686.0,2109.0 +2631908,2631909,44.0,1065957,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2631909,2631910,44.0,1065958,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2631910,2631911,44.0,1065959,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22688.0,2109.0 +2631911,2631912,44.0,1065960,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22686.0,2109.0 +2631912,2631913,32.0,1065961,1,1,0,2,6.0,35.0,1.0,15.0,4.0,5617Z,12.0,22688.0,2109.0 +2631913,2631914,32.0,1065962,1,1,0,2,6.0,35.0,1.0,15.0,4.0,5617Z,12.0,22688.0,2109.0 +2631914,2631915,35.0,1065963,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631915,2631916,20.0,1065963,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631916,2631917,3.0,1065963,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631917,2631918,35.0,1065964,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631918,2631919,20.0,1065964,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631919,2631920,3.0,1065964,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631920,2631921,35.0,1065965,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631921,2631922,20.0,1065965,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631922,2631923,3.0,1065965,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631923,2631924,35.0,1065966,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631924,2631925,20.0,1065966,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631925,2631926,3.0,1065966,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631926,2631927,35.0,1065967,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631927,2631928,20.0,1065967,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631928,2631929,3.0,1065967,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631929,2631930,35.0,1065968,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631930,2631931,20.0,1065968,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631931,2631932,3.0,1065968,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631932,2631933,35.0,1065969,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631933,2631934,20.0,1065969,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631934,2631935,3.0,1065969,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631935,2631936,35.0,1065970,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631936,2631937,20.0,1065970,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631937,2631938,3.0,1065970,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631938,2631939,35.0,1065971,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631939,2631940,20.0,1065971,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631940,2631941,3.0,1065971,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631941,2631942,35.0,1065972,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631942,2631943,20.0,1065972,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631943,2631944,3.0,1065972,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631944,2631945,35.0,1065973,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631945,2631946,20.0,1065973,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631946,2631947,3.0,1065973,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631947,2631948,35.0,1065974,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631948,2631949,20.0,1065974,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631949,2631950,3.0,1065974,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631950,2631951,35.0,1065975,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631951,2631952,20.0,1065975,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631952,2631953,3.0,1065975,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631953,2631954,35.0,1065976,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2631954,2631955,20.0,1065976,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2631955,2631956,3.0,1065976,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2631956,2631957,35.0,1065977,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631957,2631958,20.0,1065977,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631958,2631959,3.0,1065977,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631959,2631960,35.0,1065978,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631960,2631961,20.0,1065978,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631961,2631962,3.0,1065978,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631962,2631963,35.0,1065979,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631963,2631964,20.0,1065979,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631964,2631965,3.0,1065979,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631965,2631966,35.0,1065980,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631966,2631967,20.0,1065980,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631967,2631968,3.0,1065980,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631968,2631969,35.0,1065981,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2631969,2631970,20.0,1065981,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2631970,2631971,3.0,1065981,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2631971,2631972,35.0,1065982,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631972,2631973,20.0,1065982,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631973,2631974,3.0,1065982,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631974,2631975,35.0,1065983,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2631975,2631976,20.0,1065983,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2631976,2631977,3.0,1065983,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2631977,2631978,35.0,1065984,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631978,2631979,20.0,1065984,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631979,2631980,3.0,1065984,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631980,2631981,35.0,1065985,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631981,2631982,20.0,1065985,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631982,2631983,3.0,1065985,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631983,2631984,35.0,1065986,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631984,2631985,20.0,1065986,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631985,2631986,3.0,1065986,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631986,2631987,35.0,1065987,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631987,2631988,20.0,1065987,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631988,2631989,3.0,1065987,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631989,2631990,35.0,1065988,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22687.0,2109.0 +2631990,2631991,20.0,1065988,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22687.0,2109.0 +2631991,2631992,3.0,1065988,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22687.0,2109.0 +2631992,2631993,35.0,1065989,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631993,2631994,20.0,1065989,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631994,2631995,3.0,1065989,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631995,2631996,35.0,1065990,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631996,2631997,20.0,1065990,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2631997,2631998,3.0,1065990,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2631998,2631999,35.0,1065991,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2631999,2632000,20.0,1065991,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632000,2632001,3.0,1065991,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2632001,2632002,35.0,1065992,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22687.0,2109.0 +2632002,2632003,20.0,1065992,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22687.0,2109.0 +2632003,2632004,3.0,1065992,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22687.0,2109.0 +2632004,2632005,35.0,1065993,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632005,2632006,20.0,1065993,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632006,2632007,3.0,1065993,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632007,2632008,35.0,1065994,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632008,2632009,20.0,1065994,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632009,2632010,3.0,1065994,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632010,2632011,35.0,1065995,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632011,2632012,20.0,1065995,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632012,2632013,3.0,1065995,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632013,2632014,35.0,1065996,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632014,2632015,20.0,1065996,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632015,2632016,3.0,1065996,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632016,2632017,35.0,1065997,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632017,2632018,20.0,1065997,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632018,2632019,3.0,1065997,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632019,2632020,35.0,1065998,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632020,2632021,20.0,1065998,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632021,2632022,3.0,1065998,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2632022,2632023,35.0,1065999,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632023,2632024,20.0,1065999,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632024,2632025,3.0,1065999,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632025,2632026,35.0,1066000,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632026,2632027,20.0,1066000,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632027,2632028,3.0,1066000,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2632028,2632029,35.0,1066001,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632029,2632030,20.0,1066001,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632030,2632031,3.0,1066001,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632031,2632032,35.0,1066002,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632032,2632033,20.0,1066002,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632033,2632034,3.0,1066002,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632034,2632035,35.0,1066003,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632035,2632036,20.0,1066003,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632036,2632037,3.0,1066003,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632037,2632038,35.0,1066004,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632038,2632039,20.0,1066004,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632039,2632040,3.0,1066004,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632040,2632041,35.0,1066005,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632041,2632042,20.0,1066005,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632042,2632043,3.0,1066005,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632043,2632044,35.0,1066006,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632044,2632045,20.0,1066006,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632045,2632046,3.0,1066006,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632046,2632047,35.0,1066007,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632047,2632048,20.0,1066007,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632048,2632049,3.0,1066007,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632049,2632050,35.0,1066008,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632050,2632051,20.0,1066008,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632051,2632052,3.0,1066008,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632052,2632053,35.0,1066009,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632053,2632054,20.0,1066009,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632054,2632055,3.0,1066009,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632055,2632056,35.0,1066010,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632056,2632057,20.0,1066010,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632057,2632058,3.0,1066010,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632058,2632059,35.0,1066011,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632059,2632060,20.0,1066011,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632060,2632061,3.0,1066011,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632061,2632062,35.0,1066012,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632062,2632063,20.0,1066012,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632063,2632064,3.0,1066012,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632064,2632065,35.0,1066013,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632065,2632066,20.0,1066013,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632066,2632067,3.0,1066013,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632067,2632068,35.0,1066014,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632068,2632069,20.0,1066014,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632069,2632070,3.0,1066014,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632070,2632071,35.0,1066015,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632071,2632072,20.0,1066015,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632072,2632073,3.0,1066015,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632073,2632074,35.0,1066016,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22687.0,2109.0 +2632074,2632075,20.0,1066016,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22687.0,2109.0 +2632075,2632076,3.0,1066016,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22687.0,2109.0 +2632076,2632077,35.0,1066017,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632077,2632078,20.0,1066017,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632078,2632079,3.0,1066017,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632079,2632080,35.0,1066018,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632080,2632081,20.0,1066018,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632081,2632082,3.0,1066018,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632082,2632083,35.0,1066019,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632083,2632084,20.0,1066019,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632084,2632085,3.0,1066019,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632085,2632086,35.0,1066020,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632086,2632087,20.0,1066020,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632087,2632088,3.0,1066020,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2632088,2632089,35.0,1066021,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632089,2632090,20.0,1066021,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632090,2632091,3.0,1066021,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632091,2632092,35.0,1066022,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632092,2632093,20.0,1066022,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632093,2632094,3.0,1066022,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632094,2632095,35.0,1066023,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632095,2632096,20.0,1066023,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632096,2632097,3.0,1066023,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632097,2632098,35.0,1066024,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632098,2632099,20.0,1066024,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632099,2632100,3.0,1066024,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632100,2632101,35.0,1066025,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632101,2632102,20.0,1066025,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632102,2632103,3.0,1066025,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632103,2632104,35.0,1066026,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632104,2632105,20.0,1066026,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632105,2632106,3.0,1066026,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632106,2632107,35.0,1066027,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632107,2632108,20.0,1066027,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632108,2632109,3.0,1066027,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632109,2632110,35.0,1066028,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632110,2632111,20.0,1066028,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632111,2632112,3.0,1066028,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632112,2632113,35.0,1066029,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632113,2632114,20.0,1066029,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632114,2632115,3.0,1066029,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632115,2632116,35.0,1066030,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632116,2632117,20.0,1066030,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632117,2632118,3.0,1066030,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632118,2632119,35.0,1066031,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632119,2632120,20.0,1066031,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632120,2632121,3.0,1066031,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632121,2632122,35.0,1066032,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632122,2632123,20.0,1066032,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632123,2632124,3.0,1066032,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632124,2632125,35.0,1066033,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632125,2632126,20.0,1066033,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632126,2632127,3.0,1066033,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632127,2632128,35.0,1066034,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632128,2632129,20.0,1066034,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632129,2632130,3.0,1066034,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2632130,2632131,35.0,1066035,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632131,2632132,20.0,1066035,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632132,2632133,3.0,1066035,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632133,2632134,35.0,1066036,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632134,2632135,20.0,1066036,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632135,2632136,3.0,1066036,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2632136,2632137,35.0,1066037,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632137,2632138,20.0,1066037,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632138,2632139,3.0,1066037,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632139,2632140,35.0,1066038,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632140,2632141,20.0,1066038,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632141,2632142,3.0,1066038,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632142,2632143,35.0,1066039,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632143,2632144,20.0,1066039,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632144,2632145,3.0,1066039,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632145,2632146,40.0,1066040,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2632146,2632147,4.0,1066040,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632147,2632148,40.0,1066041,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22685.0,2109.0 +2632148,2632149,4.0,1066041,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632149,2632150,40.0,1066042,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2632150,2632151,4.0,1066042,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632151,2632152,40.0,1066043,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2632152,2632153,4.0,1066043,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632153,2632154,34.0,1066044,1,2,0,2,1.0,12.0,1.0,15.0,4.0,5617Z,12.0,22686.0,2109.0 +2632154,2632155,15.0,1066044,2,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22686.0,2109.0 +2632155,2632156,11.0,1066044,3,2,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22686.0,2109.0 +2632156,2632157,10.0,1066044,4,2,2,2,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22686.0,2109.0 +2632157,2632158,34.0,1066045,1,2,0,2,1.0,12.0,1.0,15.0,4.0,5617Z,12.0,22688.0,2109.0 +2632158,2632159,15.0,1066045,2,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2632159,2632160,11.0,1066045,3,2,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22688.0,2109.0 +2632160,2632161,10.0,1066045,4,2,2,2,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22688.0,2109.0 +2632161,2632162,34.0,1066046,1,2,0,2,1.0,12.0,1.0,15.0,4.0,5617Z,12.0,22685.0,2109.0 +2632162,2632163,15.0,1066046,2,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22685.0,2109.0 +2632163,2632164,11.0,1066046,3,2,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22685.0,2109.0 +2632164,2632165,10.0,1066046,4,2,2,2,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22685.0,2109.0 +2632165,2632166,35.0,1066047,1,2,0,2,1.0,24.0,2.0,-9.0,4.0,6231,14.0,22686.0,2109.0 +2632166,2632167,16.0,1066047,2,1,2,2,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22686.0,2109.0 +2632167,2632168,13.0,1066047,3,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22686.0,2109.0 +2632168,2632169,4.0,1066047,4,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22686.0,2109.0 +2632169,2632170,35.0,1066048,1,2,0,2,1.0,24.0,2.0,-9.0,4.0,6231,14.0,22688.0,2109.0 +2632170,2632171,16.0,1066048,2,1,2,2,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2632171,2632172,13.0,1066048,3,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2632172,2632173,4.0,1066048,4,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2632173,2632174,35.0,1066049,1,2,0,2,1.0,24.0,2.0,-9.0,4.0,6231,14.0,22688.0,2109.0 +2632174,2632175,16.0,1066049,2,1,2,2,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22688.0,2109.0 +2632175,2632176,13.0,1066049,3,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2632176,2632177,4.0,1066049,4,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2632177,2632178,36.0,1066050,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,6216,14.0,22687.0,2109.0 +2632178,2632179,12.0,1066050,2,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22687.0,2109.0 +2632179,2632180,28.0,1066051,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632180,2632181,4.0,1066051,2,1,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2632181,2632182,36.0,1066052,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,6216,14.0,22688.0,2109.0 +2632182,2632183,12.0,1066052,2,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2632183,2632184,36.0,1066053,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,6216,14.0,22688.0,2109.0 +2632184,2632185,12.0,1066053,2,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2632185,2632186,28.0,1066054,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632186,2632187,4.0,1066054,2,1,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2632187,2632188,42.0,1066055,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2632188,2632189,19.0,1066055,2,1,2,2,6.0,40.0,5.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2632189,2632190,17.0,1066055,3,1,2,2,1.0,12.0,4.0,12.0,4.0,722Z,16.0,22686.0,2109.0 +2632190,2632191,15.0,1066055,4,1,2,2,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22686.0,2109.0 +2632191,2632192,36.0,1066056,1,2,0,2,3.0,6.0,6.0,-9.0,4.0,4853,6.0,22688.0,2109.0 +2632192,2632193,10.0,1066056,2,2,2,2,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22688.0,2109.0 +2632193,2632194,66.0,1066056,3,2,6,2,1.0,18.0,5.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632194,2632195,29.0,1066057,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2632195,2632196,5.0,1066057,2,2,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22685.0,2109.0 +2632196,2632197,2.0,1066057,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632197,2632198,29.0,1066058,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632198,2632199,5.0,1066058,2,2,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22688.0,2109.0 +2632199,2632200,2.0,1066058,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632200,2632201,27.0,1066059,1,2,0,3,1.0,25.0,3.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632201,2632202,33.0,1066059,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5411,10.0,22688.0,2109.0 +2632202,2632203,27.0,1066060,1,2,0,3,1.0,25.0,3.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632203,2632204,33.0,1066060,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5411,10.0,22688.0,2109.0 +2632204,2632205,27.0,1066061,1,2,0,3,1.0,25.0,3.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632205,2632206,33.0,1066061,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5411,10.0,22688.0,2109.0 +2632206,2632207,27.0,1066062,1,2,0,3,1.0,25.0,3.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632207,2632208,33.0,1066062,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5411,10.0,22688.0,2109.0 +2632208,2632209,30.0,1066063,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22688.0,2109.0 +2632209,2632210,30.0,1066064,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22686.0,2109.0 +2632210,2632211,30.0,1066065,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22685.0,2109.0 +2632211,2632212,30.0,1066066,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22688.0,2109.0 +2632212,2632213,30.0,1066067,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22688.0,2109.0 +2632213,2632214,30.0,1066068,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22688.0,2109.0 +2632214,2632215,30.0,1066069,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22688.0,2109.0 +2632215,2632216,30.0,1066070,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22685.0,2109.0 +2632216,2632217,30.0,1066071,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22688.0,2109.0 +2632217,2632218,30.0,1066072,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22686.0,2109.0 +2632218,2632219,30.0,1066073,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22688.0,2109.0 +2632219,2632220,30.0,1066074,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22687.0,2109.0 +2632220,2632221,30.0,1066075,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22688.0,2109.0 +2632221,2632222,30.0,1066076,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22688.0,2109.0 +2632222,2632223,30.0,1066077,1,1,0,3,1.0,60.0,1.0,15.0,2.0,334M2,3.0,22688.0,2109.0 +2632223,2632224,26.0,1066078,1,1,0,3,1.0,50.0,6.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2632224,2632225,26.0,1066079,1,1,0,3,1.0,50.0,6.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2632225,2632226,26.0,1066080,1,1,0,3,1.0,50.0,6.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2632226,2632227,26.0,1066081,1,1,0,3,1.0,50.0,6.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2632227,2632228,26.0,1066082,1,1,0,3,1.0,50.0,6.0,-9.0,4.0,5413,10.0,22685.0,2109.0 +2632228,2632229,33.0,1066083,1,2,0,3,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2632229,2632230,33.0,1066083,2,1,1,3,1.0,40.0,1.0,-9.0,4.0,3115,3.0,22688.0,2109.0 +2632230,2632231,35.0,1066084,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632231,2632232,35.0,1066085,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632232,2632233,35.0,1066086,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22687.0,2109.0 +2632233,2632234,35.0,1066087,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2632234,2632235,35.0,1066088,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632235,2632236,35.0,1066089,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632236,2632237,35.0,1066090,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2632237,2632238,35.0,1066091,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2632238,2632239,35.0,1066092,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2632239,2632240,35.0,1066093,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632240,2632241,35.0,1066094,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2632241,2632242,35.0,1066095,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632242,2632243,35.0,1066096,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632243,2632244,35.0,1066097,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632244,2632245,35.0,1066098,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632245,2632246,35.0,1066099,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632246,2632247,35.0,1066100,1,2,0,3,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2632247,2632248,25.0,1066101,1,2,0,3,1.0,45.0,1.0,-9.0,4.0,5415,10.0,22686.0,2109.0 +2632248,2632249,25.0,1066102,1,2,0,3,1.0,45.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2632249,2632250,25.0,1066103,1,2,0,3,1.0,45.0,1.0,-9.0,4.0,5415,10.0,22686.0,2109.0 +2632250,2632251,25.0,1066104,1,2,0,3,1.0,45.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2632251,2632252,25.0,1066105,1,2,0,3,1.0,45.0,1.0,-9.0,4.0,5415,10.0,22688.0,2109.0 +2632252,2632253,40.0,1066106,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632253,2632254,40.0,1066107,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632254,2632255,40.0,1066108,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632255,2632256,40.0,1066109,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632256,2632257,40.0,1066110,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632257,2632258,40.0,1066111,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632258,2632259,40.0,1066112,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632259,2632260,40.0,1066113,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632260,2632261,40.0,1066114,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632261,2632262,40.0,1066115,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632262,2632263,40.0,1066116,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632263,2632264,40.0,1066117,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632264,2632265,40.0,1066118,1,1,0,3,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632265,2632266,28.0,1066119,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,56173,12.0,22686.0,2109.0 +2632266,2632267,28.0,1066120,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,56173,12.0,22687.0,2109.0 +2632267,2632268,28.0,1066121,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,56173,12.0,22688.0,2109.0 +2632268,2632269,28.0,1066122,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,56173,12.0,22688.0,2109.0 +2632269,2632270,28.0,1066123,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,56173,12.0,22688.0,2109.0 +2632270,2632271,28.0,1066124,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,56173,12.0,22688.0,2109.0 +2632271,2632272,28.0,1066125,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,56173,12.0,22688.0,2109.0 +2632272,2632273,28.0,1066126,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,56173,12.0,22685.0,2109.0 +2632273,2632274,31.0,1066127,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632274,2632275,31.0,1066128,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632275,2632276,31.0,1066129,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632276,2632277,31.0,1066130,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632277,2632278,31.0,1066131,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632278,2632279,31.0,1066132,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632279,2632280,31.0,1066133,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632280,2632281,31.0,1066134,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632281,2632282,31.0,1066135,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632282,2632283,31.0,1066136,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632283,2632284,31.0,1066137,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22686.0,2109.0 +2632284,2632285,31.0,1066138,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632285,2632286,31.0,1066139,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632286,2632287,31.0,1066140,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632287,2632288,31.0,1066141,1,1,0,3,1.0,40.0,1.0,15.0,4.0,325M,3.0,22688.0,2109.0 +2632288,2632289,35.0,1066142,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2632289,2632290,36.0,1066142,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2632290,2632291,10.0,1066142,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22688.0,2109.0 +2632291,2632292,9.0,1066142,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2632292,2632293,2.0,1066142,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632293,2632294,25.0,1066143,1,1,0,3,1.0,52.0,1.0,-9.0,4.0,5121,8.0,22686.0,2109.0 +2632294,2632295,4.0,1066143,2,1,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2632295,2632296,25.0,1066144,1,1,0,3,1.0,52.0,1.0,-9.0,4.0,5121,8.0,22688.0,2109.0 +2632296,2632297,4.0,1066144,2,1,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632297,2632298,25.0,1066145,1,1,0,3,1.0,52.0,1.0,-9.0,4.0,5121,8.0,22688.0,2109.0 +2632298,2632299,4.0,1066145,2,1,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632299,2632300,25.0,1066146,1,1,0,3,1.0,52.0,1.0,-9.0,4.0,5121,8.0,22686.0,2109.0 +2632300,2632301,4.0,1066146,2,1,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2632301,2632302,28.0,1066147,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632302,2632303,23.0,1066147,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632303,2632304,20.0,1066147,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632304,2632305,28.0,1066148,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22686.0,2109.0 +2632305,2632306,23.0,1066148,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22686.0,2109.0 +2632306,2632307,20.0,1066148,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22686.0,2109.0 +2632307,2632308,28.0,1066149,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22686.0,2109.0 +2632308,2632309,23.0,1066149,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22686.0,2109.0 +2632309,2632310,20.0,1066149,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22686.0,2109.0 +2632310,2632311,28.0,1066150,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22687.0,2109.0 +2632311,2632312,23.0,1066150,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22687.0,2109.0 +2632312,2632313,20.0,1066150,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22687.0,2109.0 +2632313,2632314,28.0,1066151,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632314,2632315,23.0,1066151,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632315,2632316,20.0,1066151,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632316,2632317,28.0,1066152,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632317,2632318,23.0,1066152,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632318,2632319,20.0,1066152,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632319,2632320,28.0,1066153,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22686.0,2109.0 +2632320,2632321,23.0,1066153,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22686.0,2109.0 +2632321,2632322,20.0,1066153,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22686.0,2109.0 +2632322,2632323,28.0,1066154,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632323,2632324,23.0,1066154,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632324,2632325,20.0,1066154,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632325,2632326,28.0,1066155,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632326,2632327,23.0,1066155,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632327,2632328,20.0,1066155,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632328,2632329,28.0,1066156,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22685.0,2109.0 +2632329,2632330,23.0,1066156,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22685.0,2109.0 +2632330,2632331,20.0,1066156,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22685.0,2109.0 +2632331,2632332,28.0,1066157,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632332,2632333,23.0,1066157,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632333,2632334,20.0,1066157,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632334,2632335,28.0,1066158,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632335,2632336,23.0,1066158,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632336,2632337,20.0,1066158,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632337,2632338,28.0,1066159,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22685.0,2109.0 +2632338,2632339,23.0,1066159,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22685.0,2109.0 +2632339,2632340,20.0,1066159,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22685.0,2109.0 +2632340,2632341,28.0,1066160,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22686.0,2109.0 +2632341,2632342,23.0,1066160,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22686.0,2109.0 +2632342,2632343,20.0,1066160,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22686.0,2109.0 +2632343,2632344,28.0,1066161,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632344,2632345,23.0,1066161,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632345,2632346,20.0,1066161,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632346,2632347,28.0,1066162,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632347,2632348,23.0,1066162,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632348,2632349,20.0,1066162,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632349,2632350,28.0,1066163,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22686.0,2109.0 +2632350,2632351,23.0,1066163,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22686.0,2109.0 +2632351,2632352,20.0,1066163,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22686.0,2109.0 +2632352,2632353,28.0,1066164,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22686.0,2109.0 +2632353,2632354,23.0,1066164,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22686.0,2109.0 +2632354,2632355,20.0,1066164,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22686.0,2109.0 +2632355,2632356,28.0,1066165,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22685.0,2109.0 +2632356,2632357,23.0,1066165,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22685.0,2109.0 +2632357,2632358,20.0,1066165,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22685.0,2109.0 +2632358,2632359,28.0,1066166,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632359,2632360,23.0,1066166,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632360,2632361,20.0,1066166,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632361,2632362,28.0,1066167,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22685.0,2109.0 +2632362,2632363,23.0,1066167,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22685.0,2109.0 +2632363,2632364,20.0,1066167,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22685.0,2109.0 +2632364,2632365,28.0,1066168,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632365,2632366,23.0,1066168,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632366,2632367,20.0,1066168,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632367,2632368,28.0,1066169,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632368,2632369,23.0,1066169,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632369,2632370,20.0,1066169,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632370,2632371,28.0,1066170,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632371,2632372,23.0,1066170,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632372,2632373,20.0,1066170,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632373,2632374,28.0,1066171,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632374,2632375,23.0,1066171,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632375,2632376,20.0,1066171,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632376,2632377,28.0,1066172,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632377,2632378,23.0,1066172,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632378,2632379,20.0,1066172,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632379,2632380,28.0,1066173,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632380,2632381,23.0,1066173,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632381,2632382,20.0,1066173,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632382,2632383,28.0,1066174,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632383,2632384,23.0,1066174,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632384,2632385,20.0,1066174,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632385,2632386,28.0,1066175,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632386,2632387,23.0,1066175,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632387,2632388,20.0,1066175,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632388,2632389,28.0,1066176,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632389,2632390,23.0,1066176,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632390,2632391,20.0,1066176,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632391,2632392,28.0,1066177,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632392,2632393,23.0,1066177,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632393,2632394,20.0,1066177,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632394,2632395,28.0,1066178,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632395,2632396,23.0,1066178,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632396,2632397,20.0,1066178,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632397,2632398,28.0,1066179,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632398,2632399,23.0,1066179,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632399,2632400,20.0,1066179,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632400,2632401,28.0,1066180,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632401,2632402,23.0,1066180,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632402,2632403,20.0,1066180,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632403,2632404,28.0,1066181,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632404,2632405,23.0,1066181,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632405,2632406,20.0,1066181,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632406,2632407,28.0,1066182,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632407,2632408,23.0,1066182,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632408,2632409,20.0,1066182,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632409,2632410,28.0,1066183,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632410,2632411,23.0,1066183,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632411,2632412,20.0,1066183,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632412,2632413,28.0,1066184,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632413,2632414,23.0,1066184,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632414,2632415,20.0,1066184,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632415,2632416,28.0,1066185,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632416,2632417,23.0,1066185,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22688.0,2109.0 +2632417,2632418,20.0,1066185,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2632418,2632419,40.0,1066186,1,1,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22687.0,2109.0 +2632419,2632420,35.0,1066186,2,2,13,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22687.0,2109.0 +2632420,2632421,30.0,1066187,1,1,0,1,1.0,50.0,4.0,-9.0,4.0,6212,14.0,22687.0,2109.0 +2632421,2632422,42.0,1066188,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22688.0,2109.0 +2632422,2632423,22.0,1066188,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22688.0,2109.0 +2632423,2632424,42.0,1066189,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22688.0,2109.0 +2632424,2632425,22.0,1066189,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22688.0,2109.0 +2632425,2632426,42.0,1066190,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22688.0,2109.0 +2632426,2632427,22.0,1066190,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22688.0,2109.0 +2632427,2632428,42.0,1066191,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22688.0,2109.0 +2632428,2632429,22.0,1066191,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22688.0,2109.0 +2632429,2632430,42.0,1066192,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22688.0,2109.0 +2632430,2632431,22.0,1066192,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22688.0,2109.0 +2632431,2632432,42.0,1066193,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22688.0,2109.0 +2632432,2632433,22.0,1066193,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22688.0,2109.0 +2632433,2632434,42.0,1066194,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22688.0,2109.0 +2632434,2632435,22.0,1066194,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22688.0,2109.0 +2632435,2632436,42.0,1066195,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22688.0,2109.0 +2632436,2632437,22.0,1066195,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22688.0,2109.0 +2632437,2632438,42.0,1066196,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22688.0,2109.0 +2632438,2632439,22.0,1066196,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22688.0,2109.0 +2632439,2632440,42.0,1066197,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22685.0,2109.0 +2632440,2632441,22.0,1066197,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22685.0,2109.0 +2632441,2632442,42.0,1066198,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22686.0,2109.0 +2632442,2632443,22.0,1066198,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22686.0,2109.0 +2632443,2632444,42.0,1066199,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22688.0,2109.0 +2632444,2632445,22.0,1066199,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22688.0,2109.0 +2632445,2632446,42.0,1066200,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22685.0,2109.0 +2632446,2632447,22.0,1066200,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22685.0,2109.0 +2632447,2632448,42.0,1066201,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22688.0,2109.0 +2632448,2632449,22.0,1066201,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22688.0,2109.0 +2632449,2632450,42.0,1066202,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,3261,3.0,22685.0,2109.0 +2632450,2632451,22.0,1066202,2,1,10,1,1.0,50.0,1.0,15.0,4.0,3327,3.0,22685.0,2109.0 +2632451,2632452,33.0,1066203,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2632452,2632453,39.0,1066204,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2632453,2632454,33.0,1066205,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2632454,2632455,39.0,1066206,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22686.0,2109.0 +2632455,2632456,33.0,1066207,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632456,2632457,33.0,1066208,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2632457,2632458,33.0,1066209,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22686.0,2109.0 +2632458,2632459,44.0,1066210,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2632459,2632460,39.0,1066211,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22685.0,2109.0 +2632460,2632461,44.0,1066212,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,611M1,13.0,22687.0,2109.0 +2632461,2632462,25.0,1066213,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22688.0,2109.0 +2632462,2632463,34.0,1066214,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632463,2632464,35.0,1066215,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,621M,14.0,22686.0,2109.0 +2632464,2632465,34.0,1066216,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,611M3,13.0,22688.0,2109.0 +2632465,2632466,35.0,1066217,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2632466,2632467,27.0,1066218,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2632467,2632468,31.0,1066219,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2632468,2632469,42.0,1066220,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2632469,2632470,27.0,1066221,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2632470,2632471,36.0,1066222,1,1,0,1,1.0,48.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632471,2632472,36.0,1066223,1,1,0,1,1.0,48.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632472,2632473,36.0,1066224,1,1,0,1,1.0,48.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632473,2632474,34.0,1066225,1,2,0,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22688.0,2109.0 +2632474,2632475,35.0,1066225,2,2,15,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22688.0,2109.0 +2632475,2632476,34.0,1066226,1,2,0,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22686.0,2109.0 +2632476,2632477,35.0,1066226,2,2,15,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22686.0,2109.0 +2632477,2632478,34.0,1066227,1,2,0,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22688.0,2109.0 +2632478,2632479,35.0,1066227,2,2,15,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22688.0,2109.0 +2632479,2632480,34.0,1066228,1,2,0,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22686.0,2109.0 +2632480,2632481,35.0,1066228,2,2,15,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22686.0,2109.0 +2632481,2632482,34.0,1066229,1,2,0,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22688.0,2109.0 +2632482,2632483,35.0,1066229,2,2,15,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22688.0,2109.0 +2632483,2632484,34.0,1066230,1,2,0,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22688.0,2109.0 +2632484,2632485,35.0,1066230,2,2,15,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22688.0,2109.0 +2632485,2632486,34.0,1066231,1,2,0,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22688.0,2109.0 +2632486,2632487,35.0,1066231,2,2,15,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22688.0,2109.0 +2632487,2632488,34.0,1066232,1,2,0,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22687.0,2109.0 +2632488,2632489,35.0,1066232,2,2,15,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22687.0,2109.0 +2632489,2632490,26.0,1066233,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2632490,2632491,26.0,1066233,2,2,12,1,1.0,6.0,3.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632491,2632492,27.0,1066234,1,2,0,1,1.0,40.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632492,2632493,44.0,1066235,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22686.0,2109.0 +2632493,2632494,35.0,1066236,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632494,2632495,25.0,1066237,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632495,2632496,27.0,1066238,1,2,0,1,1.0,40.0,1.0,16.0,4.0,622M,15.0,22687.0,2109.0 +2632496,2632497,35.0,1066239,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22687.0,2109.0 +2632497,2632498,26.0,1066240,1,2,0,1,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632498,2632499,27.0,1066241,1,2,0,1,1.0,40.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632499,2632500,41.0,1066242,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632500,2632501,28.0,1066243,1,2,0,1,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632501,2632502,41.0,1066244,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632502,2632503,27.0,1066245,1,2,0,1,1.0,40.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632503,2632504,25.0,1066246,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632504,2632505,35.0,1066247,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632505,2632506,27.0,1066248,1,2,0,1,1.0,40.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632506,2632507,25.0,1066249,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2632507,2632508,27.0,1066250,1,2,0,1,1.0,40.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632508,2632509,28.0,1066251,1,2,0,1,1.0,38.0,1.0,-9.0,4.0,5411,10.0,22688.0,2109.0 +2632509,2632510,29.0,1066252,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22686.0,2109.0 +2632510,2632511,28.0,1066253,1,2,0,1,1.0,38.0,1.0,-9.0,4.0,5411,10.0,22688.0,2109.0 +2632511,2632512,28.0,1066254,1,2,0,1,1.0,60.0,1.0,15.0,4.0,484,6.0,22688.0,2109.0 +2632512,2632513,27.0,1066255,1,2,0,1,1.0,40.0,1.0,15.0,4.0,4481,5.0,22688.0,2109.0 +2632513,2632514,32.0,1066256,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2632514,2632515,34.0,1066257,1,1,0,1,1.0,50.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632515,2632516,34.0,1066258,1,1,0,1,1.0,50.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632516,2632517,39.0,1066259,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2632517,2632518,34.0,1066260,1,1,0,1,1.0,50.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632518,2632519,28.0,1066261,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22685.0,2109.0 +2632519,2632520,39.0,1066262,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2632520,2632521,29.0,1066263,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2632521,2632522,25.0,1066264,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22688.0,2109.0 +2632522,2632523,26.0,1066265,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22685.0,2109.0 +2632523,2632524,32.0,1066266,1,1,0,1,1.0,40.0,1.0,15.0,4.0,5221M,9.0,22688.0,2109.0 +2632524,2632525,29.0,1066267,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,481,6.0,22688.0,2109.0 +2632525,2632526,39.0,1066268,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22688.0,2109.0 +2632526,2632527,26.0,1066269,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2632527,2632528,59.0,1066269,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632528,2632529,26.0,1066270,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22688.0,2109.0 +2632529,2632530,59.0,1066270,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632530,2632531,25.0,1066271,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5411,10.0,22688.0,2109.0 +2632531,2632532,28.0,1066272,1,1,0,1,1.0,34.0,1.0,-9.0,4.0,623M,14.0,22688.0,2109.0 +2632532,2632533,26.0,1066272,2,2,1,1,1.0,34.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2632533,2632534,42.0,1066273,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,23,2.0,22687.0,2109.0 +2632534,2632535,42.0,1066274,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,23,2.0,22685.0,2109.0 +2632535,2632536,42.0,1066275,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2632536,2632537,42.0,1066276,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,23,2.0,22688.0,2109.0 +2632537,2632538,34.0,1066277,1,1,0,1,1.0,28.0,2.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632538,2632539,30.0,1066277,2,2,1,1,1.0,18.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632539,2632540,27.0,1066278,1,2,0,1,1.0,40.0,3.0,15.0,4.0,44511,5.0,22687.0,2109.0 +2632540,2632541,53.0,1066278,2,1,1,1,1.0,32.0,2.0,-9.0,2.0,44511,5.0,22687.0,2109.0 +2632541,2632542,28.0,1066279,1,2,0,1,1.0,80.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632542,2632543,26.0,1066279,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632543,2632544,44.0,1066280,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2632544,2632545,35.0,1066280,2,2,1,1,1.0,40.0,3.0,-9.0,4.0,8131,17.0,22688.0,2109.0 +2632545,2632546,27.0,1066281,1,1,0,1,3.0,10.0,6.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632546,2632547,31.0,1066281,2,2,1,1,1.0,40.0,4.0,-9.0,2.0,6111,13.0,22688.0,2109.0 +2632547,2632548,27.0,1066282,1,1,0,1,3.0,10.0,6.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632548,2632549,31.0,1066282,2,2,1,1,1.0,40.0,4.0,-9.0,2.0,6111,13.0,22688.0,2109.0 +2632549,2632550,27.0,1066283,1,1,0,1,3.0,10.0,6.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2632550,2632551,31.0,1066283,2,2,1,1,1.0,40.0,4.0,-9.0,2.0,6111,13.0,22686.0,2109.0 +2632551,2632552,32.0,1066284,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2632552,2632553,25.0,1066285,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632553,2632554,32.0,1066286,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632554,2632555,32.0,1066287,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632555,2632556,29.0,1066288,1,2,0,1,1.0,39.0,3.0,-9.0,4.0,6111,13.0,22687.0,2109.0 +2632556,2632557,25.0,1066289,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632557,2632558,31.0,1066290,1,2,0,1,1.0,30.0,3.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2632558,2632559,32.0,1066291,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632559,2632560,32.0,1066292,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22687.0,2109.0 +2632560,2632561,29.0,1066293,1,2,0,1,1.0,39.0,3.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2632561,2632562,32.0,1066294,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632562,2632563,32.0,1066295,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632563,2632564,29.0,1066296,1,2,0,1,1.0,39.0,3.0,-9.0,4.0,6111,13.0,22686.0,2109.0 +2632564,2632565,32.0,1066297,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632565,2632566,29.0,1066298,1,2,0,1,1.0,38.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2632566,2632567,29.0,1066299,1,2,0,1,1.0,38.0,1.0,-9.0,4.0,6244,14.0,22686.0,2109.0 +2632567,2632568,32.0,1066300,1,2,0,1,1.0,60.0,6.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632568,2632569,33.0,1066301,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22688.0,2109.0 +2632569,2632570,33.0,1066302,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22686.0,2109.0 +2632570,2632571,26.0,1066303,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632571,2632572,26.0,1066304,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632572,2632573,26.0,1066305,1,2,0,1,2.0,24.0,3.0,-9.0,4.0,4523,5.0,22688.0,2109.0 +2632573,2632574,33.0,1066306,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22686.0,2109.0 +2632574,2632575,26.0,1066307,1,2,0,1,2.0,24.0,3.0,-9.0,4.0,4523,5.0,22688.0,2109.0 +2632575,2632576,26.0,1066308,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2632576,2632577,30.0,1066309,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8111Z,17.0,22685.0,2109.0 +2632577,2632578,30.0,1066310,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8111Z,17.0,22688.0,2109.0 +2632578,2632579,30.0,1066311,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8111Z,17.0,22688.0,2109.0 +2632579,2632580,30.0,1066312,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8111Z,17.0,22688.0,2109.0 +2632580,2632581,30.0,1066313,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8111Z,17.0,22686.0,2109.0 +2632581,2632582,30.0,1066314,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8111Z,17.0,22686.0,2109.0 +2632582,2632583,30.0,1066315,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8111Z,17.0,22688.0,2109.0 +2632583,2632584,27.0,1066316,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,5417,10.0,22688.0,2109.0 +2632584,2632585,27.0,1066317,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,5417,10.0,22685.0,2109.0 +2632585,2632586,25.0,1066318,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,2212P,7.0,22688.0,2109.0 +2632586,2632587,29.0,1066319,1,1,0,1,1.0,56.0,1.0,-9.0,4.0,492,6.0,22685.0,2109.0 +2632587,2632588,25.0,1066320,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3341,3.0,22688.0,2109.0 +2632588,2632589,25.0,1066321,1,1,0,1,1.0,40.0,1.0,16.0,4.0,23,2.0,22688.0,2109.0 +2632589,2632590,25.0,1066322,1,1,0,1,1.0,40.0,1.0,16.0,4.0,23,2.0,22687.0,2109.0 +2632590,2632591,25.0,1066323,1,1,0,1,1.0,40.0,1.0,16.0,4.0,23,2.0,22688.0,2109.0 +2632591,2632592,25.0,1066324,1,1,0,1,1.0,40.0,1.0,16.0,4.0,23,2.0,22688.0,2109.0 +2632592,2632593,44.0,1066325,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632593,2632594,40.0,1066325,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632594,2632595,44.0,1066326,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2632595,2632596,40.0,1066326,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2632596,2632597,44.0,1066327,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2632597,2632598,40.0,1066327,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2632598,2632599,44.0,1066328,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632599,2632600,40.0,1066328,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632600,2632601,44.0,1066329,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632601,2632602,40.0,1066329,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632602,2632603,44.0,1066330,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632603,2632604,40.0,1066330,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632604,2632605,44.0,1066331,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2632605,2632606,40.0,1066331,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2632606,2632607,44.0,1066332,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2632607,2632608,40.0,1066332,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2632608,2632609,44.0,1066333,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632609,2632610,40.0,1066333,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632610,2632611,44.0,1066334,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632611,2632612,40.0,1066334,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632612,2632613,44.0,1066335,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632613,2632614,40.0,1066335,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632614,2632615,44.0,1066336,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632615,2632616,40.0,1066336,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632616,2632617,44.0,1066337,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632617,2632618,40.0,1066337,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632618,2632619,44.0,1066338,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632619,2632620,40.0,1066338,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632620,2632621,44.0,1066339,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632621,2632622,40.0,1066339,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632622,2632623,44.0,1066340,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632623,2632624,40.0,1066340,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632624,2632625,44.0,1066341,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2632625,2632626,40.0,1066341,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2632626,2632627,28.0,1066342,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632627,2632628,28.0,1066343,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632628,2632629,28.0,1066344,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632629,2632630,30.0,1066345,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22685.0,2109.0 +2632630,2632631,30.0,1066346,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22688.0,2109.0 +2632631,2632632,41.0,1066347,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2632632,2632633,39.0,1066347,2,1,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632633,2632634,8.0,1066347,3,1,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22688.0,2109.0 +2632634,2632635,4.0,1066347,4,2,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2632635,2632636,37.0,1066348,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22688.0,2109.0 +2632636,2632637,9.0,1066348,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2632637,2632638,18.0,1066348,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632638,2632639,37.0,1066348,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632639,2632640,37.0,1066349,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22688.0,2109.0 +2632640,2632641,9.0,1066349,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2632641,2632642,18.0,1066349,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632642,2632643,37.0,1066349,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632643,2632644,37.0,1066350,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22688.0,2109.0 +2632644,2632645,9.0,1066350,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2632645,2632646,18.0,1066350,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632646,2632647,37.0,1066350,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632647,2632648,37.0,1066351,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22688.0,2109.0 +2632648,2632649,9.0,1066351,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2632649,2632650,18.0,1066351,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632650,2632651,37.0,1066351,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632651,2632652,37.0,1066352,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22688.0,2109.0 +2632652,2632653,9.0,1066352,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2632653,2632654,18.0,1066352,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632654,2632655,37.0,1066352,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632655,2632656,37.0,1066353,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22688.0,2109.0 +2632656,2632657,9.0,1066353,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2632657,2632658,18.0,1066353,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632658,2632659,37.0,1066353,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632659,2632660,37.0,1066354,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22688.0,2109.0 +2632660,2632661,9.0,1066354,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2632661,2632662,18.0,1066354,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632662,2632663,37.0,1066354,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632663,2632664,37.0,1066355,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22688.0,2109.0 +2632664,2632665,9.0,1066355,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2632665,2632666,18.0,1066355,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632666,2632667,37.0,1066355,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632667,2632668,37.0,1066356,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22686.0,2109.0 +2632668,2632669,9.0,1066356,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22686.0,2109.0 +2632669,2632670,18.0,1066356,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2632670,2632671,37.0,1066356,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2632671,2632672,37.0,1066357,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22688.0,2109.0 +2632672,2632673,9.0,1066357,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2632673,2632674,18.0,1066357,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632674,2632675,37.0,1066357,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632675,2632676,37.0,1066358,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22687.0,2109.0 +2632676,2632677,9.0,1066358,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22687.0,2109.0 +2632677,2632678,18.0,1066358,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2632678,2632679,37.0,1066358,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22687.0,2109.0 +2632679,2632680,37.0,1066359,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,45121,5.0,22688.0,2109.0 +2632680,2632681,9.0,1066359,2,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2632681,2632682,18.0,1066359,3,1,4,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632682,2632683,37.0,1066359,4,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632683,2632684,44.0,1066360,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,8111Z,17.0,22685.0,2109.0 +2632684,2632685,31.0,1066360,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2632685,2632686,4.0,1066360,3,1,2,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22685.0,2109.0 +2632686,2632687,2.0,1066360,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2632687,2632688,33.0,1066361,1,2,0,1,1.0,40.0,3.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632688,2632689,12.0,1066361,2,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2632689,2632690,33.0,1066362,1,2,0,1,1.0,40.0,3.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632690,2632691,12.0,1066362,2,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2632691,2632692,27.0,1066363,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,6242,14.0,22688.0,2109.0 +2632692,2632693,1.0,1066363,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632693,2632694,27.0,1066364,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,6242,14.0,22688.0,2109.0 +2632694,2632695,1.0,1066364,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2632695,2632696,19.0,1066365,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632696,2632697,56.0,1066365,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632697,2632698,19.0,1066366,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632698,2632699,56.0,1066366,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632699,2632700,19.0,1066367,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632700,2632701,56.0,1066367,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632701,2632702,19.0,1066368,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632702,2632703,56.0,1066368,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632703,2632704,19.0,1066369,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632704,2632705,56.0,1066369,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632705,2632706,19.0,1066370,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632706,2632707,56.0,1066370,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632707,2632708,19.0,1066371,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632708,2632709,56.0,1066371,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632709,2632710,19.0,1066372,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632710,2632711,56.0,1066372,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632711,2632712,19.0,1066373,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22686.0,2109.0 +2632712,2632713,56.0,1066373,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2632713,2632714,19.0,1066374,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632714,2632715,56.0,1066374,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632715,2632716,19.0,1066375,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632716,2632717,56.0,1066375,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632717,2632718,19.0,1066376,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632718,2632719,56.0,1066376,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632719,2632720,19.0,1066377,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22686.0,2109.0 +2632720,2632721,56.0,1066377,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2632721,2632722,19.0,1066378,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632722,2632723,56.0,1066378,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632723,2632724,19.0,1066379,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22685.0,2109.0 +2632724,2632725,56.0,1066379,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2632725,2632726,19.0,1066380,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632726,2632727,56.0,1066380,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632727,2632728,19.0,1066381,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632728,2632729,56.0,1066381,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632729,2632730,19.0,1066382,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632730,2632731,56.0,1066382,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632731,2632732,19.0,1066383,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632732,2632733,56.0,1066383,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632733,2632734,19.0,1066384,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632734,2632735,56.0,1066384,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632735,2632736,19.0,1066385,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632736,2632737,56.0,1066385,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632737,2632738,19.0,1066386,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632738,2632739,56.0,1066386,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632739,2632740,19.0,1066387,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632740,2632741,56.0,1066387,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632741,2632742,19.0,1066388,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632742,2632743,56.0,1066388,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632743,2632744,19.0,1066389,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632744,2632745,56.0,1066389,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632745,2632746,19.0,1066390,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632746,2632747,56.0,1066390,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632747,2632748,19.0,1066391,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632748,2632749,56.0,1066391,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632749,2632750,19.0,1066392,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632750,2632751,56.0,1066392,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632751,2632752,19.0,1066393,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632752,2632753,56.0,1066393,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632753,2632754,19.0,1066394,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632754,2632755,56.0,1066394,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632755,2632756,19.0,1066395,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632756,2632757,56.0,1066395,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632757,2632758,19.0,1066396,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632758,2632759,56.0,1066396,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632759,2632760,19.0,1066397,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22686.0,2109.0 +2632760,2632761,56.0,1066397,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22686.0,2109.0 +2632761,2632762,19.0,1066398,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22685.0,2109.0 +2632762,2632763,56.0,1066398,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2632763,2632764,19.0,1066399,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632764,2632765,56.0,1066399,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632765,2632766,19.0,1066400,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22685.0,2109.0 +2632766,2632767,56.0,1066400,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22685.0,2109.0 +2632767,2632768,19.0,1066401,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632768,2632769,56.0,1066401,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632769,2632770,19.0,1066402,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632770,2632771,56.0,1066402,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632771,2632772,19.0,1066403,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632772,2632773,56.0,1066403,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632773,2632774,19.0,1066404,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22688.0,2109.0 +2632774,2632775,56.0,1066404,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22688.0,2109.0 +2632775,2632776,24.0,1066405,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632776,2632777,24.0,1066406,1,2,0,4,1.0,29.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2632777,2632778,25.0,1066406,2,2,13,1,1.0,30.0,3.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2632778,2632779,24.0,1066407,1,1,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22688.0,2109.0 +2632779,2632780,24.0,1066408,1,1,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22688.0,2109.0 +2632780,2632781,24.0,1066409,1,1,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22685.0,2109.0 +2632781,2632782,24.0,1066410,1,1,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22688.0,2109.0 +2632782,2632783,24.0,1066411,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,337,3.0,22685.0,2109.0 +2632783,2632784,24.0,1066412,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,337,3.0,22688.0,2109.0 +2632784,2632785,23.0,1066413,1,2,0,4,1.0,10.0,1.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2632785,2632786,24.0,1066414,1,1,0,2,1.0,25.0,1.0,16.0,4.0,6111,13.0,22688.0,2109.0 +2632786,2632787,23.0,1066414,2,1,12,2,1.0,40.0,5.0,-9.0,4.0,442,5.0,22688.0,2109.0 +2632787,2632788,23.0,1066414,3,2,12,2,1.0,50.0,1.0,15.0,4.0,6214,14.0,22688.0,2109.0 +2632788,2632789,21.0,1066415,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632789,2632790,29.0,1066415,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632790,2632791,26.0,1066415,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632791,2632792,21.0,1066416,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632792,2632793,29.0,1066416,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632793,2632794,26.0,1066416,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632794,2632795,21.0,1066417,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632795,2632796,29.0,1066417,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632796,2632797,26.0,1066417,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632797,2632798,21.0,1066418,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22687.0,2109.0 +2632798,2632799,29.0,1066418,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22687.0,2109.0 +2632799,2632800,26.0,1066418,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22687.0,2109.0 +2632800,2632801,21.0,1066419,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632801,2632802,29.0,1066419,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632802,2632803,26.0,1066419,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632803,2632804,21.0,1066420,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632804,2632805,29.0,1066420,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632805,2632806,26.0,1066420,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632806,2632807,21.0,1066421,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632807,2632808,29.0,1066421,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632808,2632809,26.0,1066421,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632809,2632810,21.0,1066422,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632810,2632811,29.0,1066422,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632811,2632812,26.0,1066422,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632812,2632813,21.0,1066423,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632813,2632814,29.0,1066423,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632814,2632815,26.0,1066423,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632815,2632816,21.0,1066424,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632816,2632817,29.0,1066424,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632817,2632818,26.0,1066424,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632818,2632819,21.0,1066425,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632819,2632820,29.0,1066425,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632820,2632821,26.0,1066425,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632821,2632822,21.0,1066426,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632822,2632823,29.0,1066426,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632823,2632824,26.0,1066426,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632824,2632825,21.0,1066427,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632825,2632826,29.0,1066427,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632826,2632827,26.0,1066427,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632827,2632828,21.0,1066428,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632828,2632829,29.0,1066428,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632829,2632830,26.0,1066428,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632830,2632831,21.0,1066429,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632831,2632832,29.0,1066429,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632832,2632833,26.0,1066429,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632833,2632834,21.0,1066430,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632834,2632835,29.0,1066430,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632835,2632836,26.0,1066430,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632836,2632837,21.0,1066431,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632837,2632838,29.0,1066431,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22686.0,2109.0 +2632838,2632839,26.0,1066431,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632839,2632840,21.0,1066432,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632840,2632841,29.0,1066432,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22686.0,2109.0 +2632841,2632842,26.0,1066432,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632842,2632843,21.0,1066433,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632843,2632844,29.0,1066433,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632844,2632845,26.0,1066433,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632845,2632846,21.0,1066434,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632846,2632847,29.0,1066434,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632847,2632848,26.0,1066434,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632848,2632849,21.0,1066435,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632849,2632850,29.0,1066435,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632850,2632851,26.0,1066435,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632851,2632852,21.0,1066436,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632852,2632853,29.0,1066436,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632853,2632854,26.0,1066436,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632854,2632855,21.0,1066437,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632855,2632856,29.0,1066437,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632856,2632857,26.0,1066437,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632857,2632858,21.0,1066438,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632858,2632859,29.0,1066438,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632859,2632860,26.0,1066438,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632860,2632861,21.0,1066439,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632861,2632862,29.0,1066439,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632862,2632863,26.0,1066439,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632863,2632864,21.0,1066440,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632864,2632865,29.0,1066440,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632865,2632866,26.0,1066440,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632866,2632867,21.0,1066441,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632867,2632868,29.0,1066441,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632868,2632869,26.0,1066441,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632869,2632870,21.0,1066442,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632870,2632871,29.0,1066442,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632871,2632872,26.0,1066442,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632872,2632873,21.0,1066443,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632873,2632874,29.0,1066443,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22686.0,2109.0 +2632874,2632875,26.0,1066443,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632875,2632876,21.0,1066444,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632876,2632877,29.0,1066444,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632877,2632878,26.0,1066444,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632878,2632879,21.0,1066445,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632879,2632880,29.0,1066445,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632880,2632881,26.0,1066445,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632881,2632882,21.0,1066446,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632882,2632883,29.0,1066446,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632883,2632884,26.0,1066446,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632884,2632885,21.0,1066447,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632885,2632886,29.0,1066447,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632886,2632887,26.0,1066447,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632887,2632888,21.0,1066448,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632888,2632889,29.0,1066448,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22686.0,2109.0 +2632889,2632890,26.0,1066448,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632890,2632891,21.0,1066449,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632891,2632892,29.0,1066449,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632892,2632893,26.0,1066449,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632893,2632894,21.0,1066450,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632894,2632895,29.0,1066450,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632895,2632896,26.0,1066450,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632896,2632897,21.0,1066451,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632897,2632898,29.0,1066451,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632898,2632899,26.0,1066451,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632899,2632900,21.0,1066452,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632900,2632901,29.0,1066452,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632901,2632902,26.0,1066452,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632902,2632903,21.0,1066453,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632903,2632904,29.0,1066453,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22686.0,2109.0 +2632904,2632905,26.0,1066453,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22686.0,2109.0 +2632905,2632906,21.0,1066454,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632906,2632907,29.0,1066454,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632907,2632908,26.0,1066454,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632908,2632909,21.0,1066455,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632909,2632910,29.0,1066455,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632910,2632911,26.0,1066455,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632911,2632912,21.0,1066456,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632912,2632913,29.0,1066456,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632913,2632914,26.0,1066456,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632914,2632915,21.0,1066457,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632915,2632916,29.0,1066457,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632916,2632917,26.0,1066457,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632917,2632918,21.0,1066458,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632918,2632919,29.0,1066458,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632919,2632920,26.0,1066458,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632920,2632921,21.0,1066459,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632921,2632922,29.0,1066459,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632922,2632923,26.0,1066459,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632923,2632924,21.0,1066460,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632924,2632925,29.0,1066460,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632925,2632926,26.0,1066460,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632926,2632927,21.0,1066461,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632927,2632928,29.0,1066461,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632928,2632929,26.0,1066461,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632929,2632930,21.0,1066462,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632930,2632931,29.0,1066462,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22685.0,2109.0 +2632931,2632932,26.0,1066462,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22685.0,2109.0 +2632932,2632933,21.0,1066463,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632933,2632934,29.0,1066463,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632934,2632935,26.0,1066463,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632935,2632936,21.0,1066464,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632936,2632937,29.0,1066464,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632937,2632938,26.0,1066464,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632938,2632939,21.0,1066465,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632939,2632940,29.0,1066465,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2632940,2632941,26.0,1066465,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22688.0,2109.0 +2632941,2632942,20.0,1066466,1,2,0,2,1.0,30.0,1.0,15.0,4.0,623M,14.0,22688.0,2109.0 +2632942,2632943,22.0,1066466,2,2,15,2,1.0,40.0,1.0,15.0,4.0,4441Z,5.0,22688.0,2109.0 +2632943,2632944,20.0,1066467,1,2,0,2,1.0,30.0,1.0,15.0,4.0,623M,14.0,22688.0,2109.0 +2632944,2632945,22.0,1066467,2,2,15,2,1.0,40.0,1.0,15.0,4.0,4441Z,5.0,22688.0,2109.0 +2632945,2632946,23.0,1066468,1,1,0,2,1.0,36.0,1.0,15.0,4.0,52M1,9.0,22685.0,2109.0 +2632946,2632947,22.0,1066468,2,2,13,2,1.0,35.0,1.0,15.0,4.0,6231,14.0,22685.0,2109.0 +2632947,2632948,23.0,1066469,1,1,0,2,1.0,36.0,1.0,15.0,4.0,52M1,9.0,22685.0,2109.0 +2632948,2632949,22.0,1066469,2,2,13,2,1.0,35.0,1.0,15.0,4.0,6231,14.0,22685.0,2109.0 +2632949,2632950,23.0,1066470,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22686.0,2109.0 +2632950,2632951,23.0,1066471,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632951,2632952,23.0,1066472,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632952,2632953,23.0,1066473,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22687.0,2109.0 +2632953,2632954,23.0,1066474,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632954,2632955,23.0,1066475,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632955,2632956,23.0,1066476,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632956,2632957,23.0,1066477,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632957,2632958,23.0,1066478,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22686.0,2109.0 +2632958,2632959,23.0,1066479,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22686.0,2109.0 +2632959,2632960,23.0,1066480,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22687.0,2109.0 +2632960,2632961,23.0,1066481,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22688.0,2109.0 +2632961,2632962,23.0,1066482,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22686.0,2109.0 +2632962,2632963,23.0,1066483,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22686.0,2109.0 +2632963,2632964,23.0,1066484,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22688.0,2109.0 +2632964,2632965,21.0,1066485,1,1,0,2,1.0,30.0,4.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2632965,2632966,21.0,1066485,2,2,13,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2632966,2632967,24.0,1066486,1,2,0,2,1.0,35.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2632967,2632968,24.0,1066487,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632968,2632969,24.0,1066488,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632969,2632970,24.0,1066489,1,2,0,2,1.0,35.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2632970,2632971,24.0,1066490,1,2,0,2,1.0,35.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2632971,2632972,24.0,1066491,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632972,2632973,24.0,1066492,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632973,2632974,24.0,1066493,1,2,0,2,1.0,35.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2632974,2632975,24.0,1066494,1,2,0,2,1.0,35.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2632975,2632976,24.0,1066495,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2632976,2632977,24.0,1066496,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632977,2632978,24.0,1066497,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632978,2632979,24.0,1066498,1,2,0,2,1.0,35.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2632979,2632980,24.0,1066499,1,2,0,2,1.0,35.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2632980,2632981,24.0,1066500,1,2,0,2,1.0,35.0,1.0,-9.0,4.0,6244,14.0,22686.0,2109.0 +2632981,2632982,24.0,1066501,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632982,2632983,24.0,1066502,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2632983,2632984,24.0,1066503,1,2,0,2,1.0,35.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2632984,2632985,24.0,1066504,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2632985,2632986,24.0,1066505,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632986,2632987,24.0,1066506,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632987,2632988,24.0,1066507,1,2,0,2,1.0,35.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2632988,2632989,24.0,1066508,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632989,2632990,23.0,1066509,1,2,0,2,1.0,25.0,1.0,-9.0,4.0,4481,5.0,22688.0,2109.0 +2632990,2632991,23.0,1066510,1,2,0,2,1.0,25.0,1.0,-9.0,4.0,4481,5.0,22688.0,2109.0 +2632991,2632992,23.0,1066511,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2632992,2632993,24.0,1066512,1,1,0,2,1.0,50.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632993,2632994,24.0,1066513,1,1,0,2,1.0,50.0,4.0,-9.0,4.0,622M,15.0,22687.0,2109.0 +2632994,2632995,24.0,1066514,1,1,0,2,1.0,50.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632995,2632996,24.0,1066515,1,1,0,2,1.0,50.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632996,2632997,24.0,1066516,1,1,0,2,1.0,50.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632997,2632998,24.0,1066517,1,1,0,2,1.0,50.0,4.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2632998,2632999,24.0,1066518,1,1,0,2,1.0,20.0,6.0,15.0,2.0,4511M,5.0,22688.0,2109.0 +2632999,2633000,23.0,1066519,1,1,0,2,1.0,32.0,1.0,15.0,4.0,44512,5.0,22688.0,2109.0 +2633000,2633001,24.0,1066520,1,1,0,2,1.0,20.0,6.0,15.0,2.0,4511M,5.0,22688.0,2109.0 +2633001,2633002,23.0,1066521,1,1,0,2,1.0,32.0,1.0,15.0,4.0,44512,5.0,22688.0,2109.0 +2633002,2633003,23.0,1066522,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22685.0,2109.0 +2633003,2633004,23.0,1066523,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22686.0,2109.0 +2633004,2633005,23.0,1066524,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22688.0,2109.0 +2633005,2633006,23.0,1066525,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22688.0,2109.0 +2633006,2633007,23.0,1066526,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22687.0,2109.0 +2633007,2633008,23.0,1066527,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22688.0,2109.0 +2633008,2633009,23.0,1066528,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22688.0,2109.0 +2633009,2633010,23.0,1066529,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22688.0,2109.0 +2633010,2633011,23.0,1066530,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22688.0,2109.0 +2633011,2633012,23.0,1066531,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22688.0,2109.0 +2633012,2633013,23.0,1066532,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22688.0,2109.0 +2633013,2633014,5.0,1066532,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633014,2633015,1.0,1066532,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633015,2633016,23.0,1066533,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22688.0,2109.0 +2633016,2633017,5.0,1066533,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633017,2633018,1.0,1066533,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633018,2633019,23.0,1066534,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22688.0,2109.0 +2633019,2633020,5.0,1066534,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633020,2633021,1.0,1066534,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633021,2633022,23.0,1066535,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22688.0,2109.0 +2633022,2633023,5.0,1066535,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633023,2633024,1.0,1066535,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633024,2633025,23.0,1066536,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22686.0,2109.0 +2633025,2633026,5.0,1066536,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22686.0,2109.0 +2633026,2633027,1.0,1066536,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2633027,2633028,23.0,1066537,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22688.0,2109.0 +2633028,2633029,5.0,1066537,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633029,2633030,1.0,1066537,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633030,2633031,23.0,1066538,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22687.0,2109.0 +2633031,2633032,5.0,1066538,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22687.0,2109.0 +2633032,2633033,1.0,1066538,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22687.0,2109.0 +2633033,2633034,23.0,1066539,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22687.0,2109.0 +2633034,2633035,5.0,1066539,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22687.0,2109.0 +2633035,2633036,1.0,1066539,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22687.0,2109.0 +2633036,2633037,23.0,1066540,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22688.0,2109.0 +2633037,2633038,5.0,1066540,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633038,2633039,1.0,1066540,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633039,2633040,23.0,1066541,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22686.0,2109.0 +2633040,2633041,5.0,1066541,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22686.0,2109.0 +2633041,2633042,1.0,1066541,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2633042,2633043,23.0,1066542,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22688.0,2109.0 +2633043,2633044,5.0,1066542,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633044,2633045,1.0,1066542,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633045,2633046,24.0,1066543,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2633046,2633047,3.0,1066543,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633047,2633048,24.0,1066544,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633048,2633049,4.0,1066544,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633049,2633050,24.0,1066545,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633050,2633051,4.0,1066545,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633051,2633052,24.0,1066546,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633052,2633053,4.0,1066546,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633053,2633054,24.0,1066547,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2633054,2633055,3.0,1066547,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22686.0,2109.0 +2633055,2633056,24.0,1066548,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22686.0,2109.0 +2633056,2633057,4.0,1066548,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2633057,2633058,24.0,1066549,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2633058,2633059,3.0,1066549,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22686.0,2109.0 +2633059,2633060,24.0,1066550,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22686.0,2109.0 +2633060,2633061,4.0,1066550,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2633061,2633062,24.0,1066551,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2633062,2633063,3.0,1066551,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633063,2633064,24.0,1066552,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633064,2633065,4.0,1066552,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633065,2633066,24.0,1066553,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633066,2633067,4.0,1066553,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633067,2633068,24.0,1066554,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2633068,2633069,3.0,1066554,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22686.0,2109.0 +2633069,2633070,24.0,1066555,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22687.0,2109.0 +2633070,2633071,4.0,1066555,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22687.0,2109.0 +2633071,2633072,24.0,1066556,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633072,2633073,4.0,1066556,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633073,2633074,24.0,1066557,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2633074,2633075,3.0,1066557,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633075,2633076,24.0,1066558,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633076,2633077,4.0,1066558,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633077,2633078,24.0,1066559,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633078,2633079,4.0,1066559,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633079,2633080,24.0,1066560,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633080,2633081,4.0,1066560,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633081,2633082,24.0,1066561,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22686.0,2109.0 +2633082,2633083,4.0,1066561,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2633083,2633084,24.0,1066562,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633084,2633085,4.0,1066562,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633085,2633086,24.0,1066563,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22686.0,2109.0 +2633086,2633087,4.0,1066563,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2633087,2633088,24.0,1066564,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2633088,2633089,3.0,1066564,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633089,2633090,24.0,1066565,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633090,2633091,4.0,1066565,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633091,2633092,24.0,1066566,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633092,2633093,4.0,1066566,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633093,2633094,24.0,1066567,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2633094,2633095,3.0,1066567,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633095,2633096,24.0,1066568,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22685.0,2109.0 +2633096,2633097,4.0,1066568,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2633097,2633098,24.0,1066569,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633098,2633099,4.0,1066569,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633099,2633100,24.0,1066570,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2633100,2633101,3.0,1066570,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2633101,2633102,24.0,1066571,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22687.0,2109.0 +2633102,2633103,3.0,1066571,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22687.0,2109.0 +2633103,2633104,24.0,1066572,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22685.0,2109.0 +2633104,2633105,4.0,1066572,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22685.0,2109.0 +2633105,2633106,24.0,1066573,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633106,2633107,4.0,1066573,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633107,2633108,24.0,1066574,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22685.0,2109.0 +2633108,2633109,3.0,1066574,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22685.0,2109.0 +2633109,2633110,24.0,1066575,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22686.0,2109.0 +2633110,2633111,4.0,1066575,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22686.0,2109.0 +2633111,2633112,24.0,1066576,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633112,2633113,4.0,1066576,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633113,2633114,24.0,1066577,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633114,2633115,4.0,1066577,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633115,2633116,24.0,1066578,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22688.0,2109.0 +2633116,2633117,4.0,1066578,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633117,2633118,24.0,1066579,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22685.0,2109.0 +2633118,2633119,30.0,1066579,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,493,6.0,22685.0,2109.0 +2633119,2633120,24.0,1066580,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633120,2633121,30.0,1066580,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,493,6.0,22688.0,2109.0 +2633121,2633122,24.0,1066581,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633122,2633123,30.0,1066581,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,493,6.0,22688.0,2109.0 +2633123,2633124,24.0,1066582,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633124,2633125,30.0,1066582,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,493,6.0,22688.0,2109.0 +2633125,2633126,24.0,1066583,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22685.0,2109.0 +2633126,2633127,30.0,1066583,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,493,6.0,22685.0,2109.0 +2633127,2633128,21.0,1066584,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22687.0,2109.0 +2633128,2633129,12.0,1066584,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22687.0,2109.0 +2633129,2633130,43.0,1066584,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22687.0,2109.0 +2633130,2633131,21.0,1066585,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633131,2633132,12.0,1066585,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633132,2633133,43.0,1066585,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633133,2633134,21.0,1066586,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22685.0,2109.0 +2633134,2633135,12.0,1066586,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22685.0,2109.0 +2633135,2633136,43.0,1066586,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22685.0,2109.0 +2633136,2633137,21.0,1066587,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633137,2633138,12.0,1066587,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633138,2633139,43.0,1066587,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633139,2633140,21.0,1066588,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633140,2633141,12.0,1066588,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633141,2633142,43.0,1066588,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633142,2633143,21.0,1066589,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22686.0,2109.0 +2633143,2633144,12.0,1066589,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22686.0,2109.0 +2633144,2633145,43.0,1066589,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2633145,2633146,21.0,1066590,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633146,2633147,12.0,1066590,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633147,2633148,43.0,1066590,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633148,2633149,21.0,1066591,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633149,2633150,12.0,1066591,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633150,2633151,43.0,1066591,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633151,2633152,21.0,1066592,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633152,2633153,12.0,1066592,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633153,2633154,43.0,1066592,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633154,2633155,21.0,1066593,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633155,2633156,12.0,1066593,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633156,2633157,43.0,1066593,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633157,2633158,21.0,1066594,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633158,2633159,12.0,1066594,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633159,2633160,43.0,1066594,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633160,2633161,21.0,1066595,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22686.0,2109.0 +2633161,2633162,12.0,1066595,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22686.0,2109.0 +2633162,2633163,43.0,1066595,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2633163,2633164,21.0,1066596,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633164,2633165,12.0,1066596,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633165,2633166,43.0,1066596,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633166,2633167,21.0,1066597,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22686.0,2109.0 +2633167,2633168,12.0,1066597,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22686.0,2109.0 +2633168,2633169,43.0,1066597,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2633169,2633170,21.0,1066598,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22687.0,2109.0 +2633170,2633171,12.0,1066598,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22687.0,2109.0 +2633171,2633172,43.0,1066598,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22687.0,2109.0 +2633172,2633173,21.0,1066599,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22687.0,2109.0 +2633173,2633174,12.0,1066599,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22687.0,2109.0 +2633174,2633175,43.0,1066599,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22687.0,2109.0 +2633175,2633176,21.0,1066600,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633176,2633177,12.0,1066600,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633177,2633178,43.0,1066600,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633178,2633179,21.0,1066601,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633179,2633180,12.0,1066601,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633180,2633181,43.0,1066601,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633181,2633182,21.0,1066602,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22686.0,2109.0 +2633182,2633183,12.0,1066602,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22686.0,2109.0 +2633183,2633184,43.0,1066602,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2633184,2633185,21.0,1066603,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633185,2633186,12.0,1066603,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633186,2633187,43.0,1066603,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633187,2633188,21.0,1066604,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633188,2633189,12.0,1066604,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633189,2633190,43.0,1066604,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633190,2633191,21.0,1066605,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633191,2633192,12.0,1066605,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633192,2633193,43.0,1066605,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633193,2633194,21.0,1066606,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633194,2633195,12.0,1066606,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633195,2633196,43.0,1066606,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633196,2633197,21.0,1066607,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22686.0,2109.0 +2633197,2633198,12.0,1066607,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22686.0,2109.0 +2633198,2633199,43.0,1066607,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2633199,2633200,21.0,1066608,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633200,2633201,12.0,1066608,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633201,2633202,43.0,1066608,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633202,2633203,21.0,1066609,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633203,2633204,12.0,1066609,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633204,2633205,43.0,1066609,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633205,2633206,21.0,1066610,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633206,2633207,12.0,1066610,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633207,2633208,43.0,1066610,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633208,2633209,21.0,1066611,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633209,2633210,12.0,1066611,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633210,2633211,43.0,1066611,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633211,2633212,21.0,1066612,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633212,2633213,12.0,1066612,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633213,2633214,43.0,1066612,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633214,2633215,21.0,1066613,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633215,2633216,12.0,1066613,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633216,2633217,43.0,1066613,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633217,2633218,21.0,1066614,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633218,2633219,12.0,1066614,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633219,2633220,43.0,1066614,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633220,2633221,21.0,1066615,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22686.0,2109.0 +2633221,2633222,12.0,1066615,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22686.0,2109.0 +2633222,2633223,43.0,1066615,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2633223,2633224,21.0,1066616,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22686.0,2109.0 +2633224,2633225,12.0,1066616,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22686.0,2109.0 +2633225,2633226,43.0,1066616,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22686.0,2109.0 +2633226,2633227,21.0,1066617,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633227,2633228,12.0,1066617,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633228,2633229,43.0,1066617,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633229,2633230,21.0,1066618,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633230,2633231,12.0,1066618,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22688.0,2109.0 +2633231,2633232,43.0,1066618,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633232,2633233,22.0,1066619,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22687.0,2109.0 +2633233,2633234,25.0,1066619,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22687.0,2109.0 +2633234,2633235,21.0,1066619,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22687.0,2109.0 +2633235,2633236,22.0,1066620,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22688.0,2109.0 +2633236,2633237,25.0,1066620,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22688.0,2109.0 +2633237,2633238,21.0,1066620,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22688.0,2109.0 +2633238,2633239,22.0,1066621,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22688.0,2109.0 +2633239,2633240,25.0,1066621,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22688.0,2109.0 +2633240,2633241,21.0,1066621,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22688.0,2109.0 +2633241,2633242,22.0,1066622,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22688.0,2109.0 +2633242,2633243,25.0,1066622,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22688.0,2109.0 +2633243,2633244,21.0,1066622,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22688.0,2109.0 +2633244,2633245,22.0,1066623,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22688.0,2109.0 +2633245,2633246,25.0,1066623,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22688.0,2109.0 +2633246,2633247,21.0,1066623,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22688.0,2109.0 +2633247,2633248,22.0,1066624,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633248,2633249,22.0,1066624,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633249,2633250,22.0,1066625,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633250,2633251,22.0,1066625,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633251,2633252,23.0,1066626,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22685.0,2109.0 +2633252,2633253,23.0,1066627,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22685.0,2109.0 +2633253,2633254,23.0,1066628,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22688.0,2109.0 +2633254,2633255,23.0,1066629,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22688.0,2109.0 +2633255,2633256,23.0,1066630,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22688.0,2109.0 +2633256,2633257,24.0,1066631,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,3328,3.0,22685.0,2109.0 +2633257,2633258,24.0,1066632,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,3328,3.0,22686.0,2109.0 +2633258,2633259,24.0,1066633,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,3328,3.0,22688.0,2109.0 +2633259,2633260,24.0,1066634,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,3328,3.0,22688.0,2109.0 +2633260,2633261,23.0,1066635,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633261,2633262,23.0,1066636,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22686.0,2109.0 +2633262,2633263,23.0,1066637,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22686.0,2109.0 +2633263,2633264,23.0,1066638,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22687.0,2109.0 +2633264,2633265,23.0,1066639,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633265,2633266,23.0,1066640,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22687.0,2109.0 +2633266,2633267,23.0,1066641,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633267,2633268,23.0,1066642,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22686.0,2109.0 +2633268,2633269,23.0,1066643,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22685.0,2109.0 +2633269,2633270,23.0,1066644,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633270,2633271,23.0,1066645,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633271,2633272,23.0,1066646,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633272,2633273,23.0,1066647,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22687.0,2109.0 +2633273,2633274,23.0,1066648,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633274,2633275,23.0,1066649,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633275,2633276,23.0,1066650,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633276,2633277,23.0,1066651,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633277,2633278,23.0,1066652,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633278,2633279,23.0,1066653,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633279,2633280,23.0,1066654,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22686.0,2109.0 +2633280,2633281,23.0,1066655,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633281,2633282,23.0,1066656,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633282,2633283,23.0,1066657,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22685.0,2109.0 +2633283,2633284,23.0,1066658,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633284,2633285,23.0,1066659,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22688.0,2109.0 +2633285,2633286,24.0,1066660,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633286,2633287,28.0,1066660,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633287,2633288,26.0,1066660,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633288,2633289,19.0,1066660,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633289,2633290,24.0,1066661,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633290,2633291,28.0,1066661,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633291,2633292,26.0,1066661,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633292,2633293,19.0,1066661,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633293,2633294,24.0,1066662,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633294,2633295,28.0,1066662,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633295,2633296,26.0,1066662,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633296,2633297,19.0,1066662,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633297,2633298,24.0,1066663,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633298,2633299,28.0,1066663,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633299,2633300,26.0,1066663,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633300,2633301,19.0,1066663,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633301,2633302,24.0,1066664,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633302,2633303,28.0,1066664,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633303,2633304,26.0,1066664,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633304,2633305,19.0,1066664,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633305,2633306,24.0,1066665,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633306,2633307,28.0,1066665,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633307,2633308,26.0,1066665,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633308,2633309,19.0,1066665,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633309,2633310,24.0,1066666,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633310,2633311,28.0,1066666,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633311,2633312,26.0,1066666,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633312,2633313,19.0,1066666,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633313,2633314,24.0,1066667,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633314,2633315,28.0,1066667,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633315,2633316,26.0,1066667,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633316,2633317,19.0,1066667,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633317,2633318,24.0,1066668,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633318,2633319,28.0,1066668,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633319,2633320,26.0,1066668,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633320,2633321,19.0,1066668,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633321,2633322,24.0,1066669,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22687.0,2109.0 +2633322,2633323,28.0,1066669,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22687.0,2109.0 +2633323,2633324,26.0,1066669,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22687.0,2109.0 +2633324,2633325,19.0,1066669,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22687.0,2109.0 +2633325,2633326,24.0,1066670,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633326,2633327,28.0,1066670,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633327,2633328,26.0,1066670,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633328,2633329,19.0,1066670,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633329,2633330,24.0,1066671,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633330,2633331,28.0,1066671,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633331,2633332,26.0,1066671,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633332,2633333,19.0,1066671,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633333,2633334,24.0,1066672,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633334,2633335,28.0,1066672,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633335,2633336,26.0,1066672,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633336,2633337,19.0,1066672,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633337,2633338,24.0,1066673,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633338,2633339,28.0,1066673,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22688.0,2109.0 +2633339,2633340,26.0,1066673,3,1,12,1,2.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633340,2633341,19.0,1066673,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633341,2633342,23.0,1066674,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633342,2633343,24.0,1066674,2,2,12,3,6.0,10.0,3.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2633343,2633344,24.0,1066674,3,2,12,2,1.0,30.0,1.0,-9.0,4.0,6244,14.0,22688.0,2109.0 +2633344,2633345,18.0,1066674,4,2,12,1,1.0,30.0,4.0,15.0,4.0,446Z,5.0,22688.0,2109.0 +2633345,2633346,23.0,1066675,1,2,0,1,1.0,40.0,1.0,15.0,4.0,6244,14.0,22688.0,2109.0 +2633346,2633347,22.0,1066675,2,2,12,1,1.0,21.0,1.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2633347,2633348,21.0,1066675,3,2,12,1,1.0,30.0,1.0,15.0,4.0,6244,14.0,22688.0,2109.0 +2633348,2633349,23.0,1066676,1,2,0,1,1.0,40.0,1.0,15.0,4.0,44511,5.0,22688.0,2109.0 +2633349,2633350,20.0,1066676,2,2,13,1,1.0,30.0,1.0,15.0,4.0,447,5.0,22688.0,2109.0 +2633350,2633351,24.0,1066676,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22688.0,2109.0 +2633351,2633352,23.0,1066677,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633352,2633353,37.0,1066677,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633353,2633354,23.0,1066678,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633354,2633355,37.0,1066678,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633355,2633356,23.0,1066679,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633356,2633357,37.0,1066679,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633357,2633358,23.0,1066680,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633358,2633359,37.0,1066680,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633359,2633360,23.0,1066681,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633360,2633361,37.0,1066681,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633361,2633362,23.0,1066682,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22686.0,2109.0 +2633362,2633363,37.0,1066682,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22686.0,2109.0 +2633363,2633364,23.0,1066683,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633364,2633365,37.0,1066683,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633365,2633366,23.0,1066684,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22687.0,2109.0 +2633366,2633367,37.0,1066684,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22687.0,2109.0 +2633367,2633368,23.0,1066685,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22686.0,2109.0 +2633368,2633369,37.0,1066685,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22686.0,2109.0 +2633369,2633370,23.0,1066686,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633370,2633371,37.0,1066686,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633371,2633372,23.0,1066687,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22687.0,2109.0 +2633372,2633373,37.0,1066687,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22687.0,2109.0 +2633373,2633374,23.0,1066688,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633374,2633375,37.0,1066688,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633375,2633376,23.0,1066689,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22685.0,2109.0 +2633376,2633377,37.0,1066689,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22685.0,2109.0 +2633377,2633378,23.0,1066690,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22685.0,2109.0 +2633378,2633379,37.0,1066690,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22685.0,2109.0 +2633379,2633380,23.0,1066691,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633380,2633381,37.0,1066691,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633381,2633382,23.0,1066692,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633382,2633383,37.0,1066692,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633383,2633384,23.0,1066693,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633384,2633385,37.0,1066693,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633385,2633386,23.0,1066694,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633386,2633387,37.0,1066694,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633387,2633388,23.0,1066695,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633388,2633389,37.0,1066695,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633389,2633390,23.0,1066696,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22687.0,2109.0 +2633390,2633391,37.0,1066696,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22687.0,2109.0 +2633391,2633392,23.0,1066697,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633392,2633393,37.0,1066697,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633393,2633394,23.0,1066698,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22685.0,2109.0 +2633394,2633395,37.0,1066698,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22685.0,2109.0 +2633395,2633396,23.0,1066699,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22686.0,2109.0 +2633396,2633397,37.0,1066699,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22686.0,2109.0 +2633397,2633398,23.0,1066700,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633398,2633399,37.0,1066700,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633399,2633400,23.0,1066701,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633400,2633401,37.0,1066701,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633401,2633402,23.0,1066702,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633402,2633403,37.0,1066702,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633403,2633404,23.0,1066703,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633404,2633405,37.0,1066703,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633405,2633406,23.0,1066704,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22688.0,2109.0 +2633406,2633407,37.0,1066704,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22688.0,2109.0 +2633407,2633408,23.0,1066705,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22686.0,2109.0 +2633408,2633409,37.0,1066705,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22686.0,2109.0 +2633409,2633410,22.0,1066706,1,2,0,1,6.0,30.0,4.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633410,2633411,24.0,1066706,2,1,1,1,1.0,50.0,1.0,-9.0,2.0,4441Z,5.0,22688.0,2109.0 +2633411,2633412,23.0,1066707,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2633412,2633413,23.0,1066708,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22687.0,2109.0 +2633413,2633414,23.0,1066709,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2633414,2633415,23.0,1066710,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2633415,2633416,24.0,1066711,1,2,0,1,1.0,40.0,4.0,-9.0,4.0,6111,13.0,22688.0,2109.0 +2633416,2633417,23.0,1066712,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22686.0,2109.0 +2633417,2633418,23.0,1066713,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2633418,2633419,24.0,1066714,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2633419,2633420,23.0,1066715,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2633420,2633421,23.0,1066716,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2633421,2633422,23.0,1066717,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2633422,2633423,23.0,1066718,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22686.0,2109.0 +2633423,2633424,23.0,1066719,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22685.0,2109.0 +2633424,2633425,23.0,1066720,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22688.0,2109.0 +2633425,2633426,23.0,1066721,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22688.0,2109.0 +2633426,2633427,24.0,1066722,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5242,9.0,22688.0,2109.0 +2633427,2633428,24.0,1066723,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22688.0,2109.0 +2633428,2633429,22.0,1066724,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633429,2633430,22.0,1066725,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22686.0,2109.0 +2633430,2633431,22.0,1066726,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633431,2633432,21.0,1066727,1,1,0,1,1.0,40.0,1.0,15.0,4.0,8111Z,17.0,22686.0,2109.0 +2633432,2633433,20.0,1066727,2,2,1,1,1.0,35.0,3.0,15.0,4.0,611M1,13.0,22686.0,2109.0 +2633433,2633434,21.0,1066728,1,1,0,1,1.0,40.0,1.0,15.0,4.0,8111Z,17.0,22688.0,2109.0 +2633434,2633435,20.0,1066728,2,2,1,1,1.0,35.0,3.0,15.0,4.0,611M1,13.0,22688.0,2109.0 +2633435,2633436,23.0,1066729,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,484,6.0,22688.0,2109.0 +2633436,2633437,18.0,1066729,2,2,5,1,1.0,20.0,5.0,-9.0,4.0,484,6.0,22688.0,2109.0 +2633437,2633438,23.0,1066730,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,484,6.0,22688.0,2109.0 +2633438,2633439,18.0,1066730,2,2,5,1,1.0,20.0,5.0,-9.0,4.0,484,6.0,22688.0,2109.0 +2633439,2633440,23.0,1066731,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,484,6.0,22688.0,2109.0 +2633440,2633441,18.0,1066731,2,2,5,1,1.0,20.0,5.0,-9.0,4.0,484,6.0,22688.0,2109.0 +2633441,2633442,23.0,1066732,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22686.0,2109.0 +2633442,2633443,23.0,1066733,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22686.0,2109.0 +2633443,2633444,23.0,1066734,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633444,2633445,23.0,1066735,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633445,2633446,23.0,1066736,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633446,2633447,23.0,1066737,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633447,2633448,23.0,1066738,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633448,2633449,23.0,1066739,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633449,2633450,23.0,1066740,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22687.0,2109.0 +2633450,2633451,23.0,1066741,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633451,2633452,23.0,1066742,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633452,2633453,23.0,1066743,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633453,2633454,23.0,1066744,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22686.0,2109.0 +2633454,2633455,23.0,1066745,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633455,2633456,23.0,1066746,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22686.0,2109.0 +2633456,2633457,23.0,1066747,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22687.0,2109.0 +2633457,2633458,23.0,1066748,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633458,2633459,23.0,1066749,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633459,2633460,23.0,1066750,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633460,2633461,23.0,1066751,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633461,2633462,23.0,1066752,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22688.0,2109.0 +2633462,2633463,23.0,1066753,1,2,0,1,1.0,42.0,6.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633463,2633464,23.0,1066754,1,2,0,1,1.0,42.0,6.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633464,2633465,23.0,1066755,1,2,0,1,1.0,42.0,6.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633465,2633466,23.0,1066756,1,2,0,1,1.0,42.0,6.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633466,2633467,23.0,1066757,1,2,0,1,1.0,42.0,6.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633467,2633468,23.0,1066758,1,2,0,1,1.0,42.0,6.0,-9.0,4.0,336M,3.0,22688.0,2109.0 +2633468,2633469,22.0,1066759,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,484,6.0,22688.0,2109.0 +2633469,2633470,1.0,1066759,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633470,2633471,22.0,1066760,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,484,6.0,22688.0,2109.0 +2633471,2633472,1.0,1066760,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633472,2633473,22.0,1066761,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,484,6.0,22687.0,2109.0 +2633473,2633474,1.0,1066761,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22687.0,2109.0 +2633474,2633475,24.0,1066762,1,1,0,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22688.0,2109.0 +2633475,2633476,2.0,1066762,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22688.0,2109.0 +2633476,2633477,24.0,1066763,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,5613,12.0,22688.0,2109.0 +2633477,2633478,9.0,1066763,2,2,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22688.0,2109.0 +2633478,2633479,4.0,1066763,3,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22688.0,2109.0 +2639586,2639587,45.0,1069323,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2639587,2639588,21.0,1069323,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2639618,2639619,56.0,1069338,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22726.0,2113.0 +2639619,2639620,18.0,1069338,2,2,2,1,1.0,20.0,5.0,14.0,4.0,722Z,16.0,22726.0,2113.0 +2639702,2639703,45.0,1069380,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22726.0,2113.0 +2639703,2639704,21.0,1069380,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22726.0,2113.0 +2639868,2639869,42.0,1069427,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2639869,2639870,19.0,1069427,2,1,2,2,6.0,40.0,5.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2639870,2639871,17.0,1069427,3,1,2,2,1.0,12.0,4.0,12.0,4.0,722Z,16.0,22726.0,2113.0 +2639871,2639872,15.0,1069427,4,1,2,2,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22726.0,2113.0 +2640096,2640097,28.0,1069641,1,1,0,1,3.0,30.0,4.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2640168,2640169,67.0,1069678,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22692.0,2110.0 +2640169,2640170,64.0,1069678,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22692.0,2110.0 +2640170,2640171,52.0,1069678,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22692.0,2110.0 +2640171,2640172,67.0,1069679,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640172,2640173,64.0,1069679,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640173,2640174,52.0,1069679,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22698.0,2110.0 +2640174,2640175,67.0,1069680,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2640175,2640176,64.0,1069680,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2640176,2640177,52.0,1069680,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2640177,2640178,67.0,1069681,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640178,2640179,64.0,1069681,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640179,2640180,52.0,1069681,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640180,2640181,67.0,1069682,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22675.0,2107.0 +2640181,2640182,64.0,1069682,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22675.0,2107.0 +2640182,2640183,52.0,1069682,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2640183,2640184,67.0,1069683,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22702.0,2110.0 +2640184,2640185,64.0,1069683,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22702.0,2110.0 +2640185,2640186,52.0,1069683,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22702.0,2110.0 +2640186,2640187,67.0,1069684,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640187,2640188,64.0,1069684,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640188,2640189,52.0,1069684,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640189,2640190,67.0,1069685,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22691.0,2110.0 +2640190,2640191,64.0,1069685,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22691.0,2110.0 +2640191,2640192,52.0,1069685,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22691.0,2110.0 +2640192,2640193,67.0,1069686,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22691.0,2110.0 +2640193,2640194,64.0,1069686,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22691.0,2110.0 +2640194,2640195,52.0,1069686,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22691.0,2110.0 +2640195,2640196,67.0,1069687,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640196,2640197,64.0,1069687,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640197,2640198,52.0,1069687,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22698.0,2110.0 +2640198,2640199,67.0,1069688,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640199,2640200,64.0,1069688,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640200,2640201,52.0,1069688,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22698.0,2110.0 +2640201,2640202,67.0,1069689,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640202,2640203,64.0,1069689,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640203,2640204,52.0,1069689,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22698.0,2110.0 +2640204,2640205,67.0,1069690,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22709.0,2110.0 +2640205,2640206,64.0,1069690,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22709.0,2110.0 +2640206,2640207,52.0,1069690,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22709.0,2110.0 +2640207,2640208,67.0,1069691,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640208,2640209,64.0,1069691,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640209,2640210,52.0,1069691,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640210,2640211,67.0,1069692,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2640211,2640212,64.0,1069692,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2640212,2640213,52.0,1069692,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2640213,2640214,67.0,1069693,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22706.0,2110.0 +2640214,2640215,64.0,1069693,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22706.0,2110.0 +2640215,2640216,52.0,1069693,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22706.0,2110.0 +2640216,2640217,67.0,1069694,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2640217,2640218,64.0,1069694,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2640218,2640219,52.0,1069694,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2640219,2640220,67.0,1069695,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22692.0,2110.0 +2640220,2640221,64.0,1069695,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22692.0,2110.0 +2640221,2640222,52.0,1069695,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22692.0,2110.0 +2640222,2640223,67.0,1069696,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22694.0,2110.0 +2640223,2640224,64.0,1069696,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22694.0,2110.0 +2640224,2640225,52.0,1069696,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22694.0,2110.0 +2640225,2640226,67.0,1069697,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22694.0,2110.0 +2640226,2640227,64.0,1069697,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22694.0,2110.0 +2640227,2640228,52.0,1069697,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22694.0,2110.0 +2640228,2640229,67.0,1069698,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640229,2640230,64.0,1069698,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640230,2640231,52.0,1069698,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640231,2640232,67.0,1069699,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640232,2640233,64.0,1069699,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640233,2640234,52.0,1069699,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640234,2640235,67.0,1069700,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2640235,2640236,64.0,1069700,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2640236,2640237,52.0,1069700,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2640237,2640238,67.0,1069701,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22677.0,2107.0 +2640238,2640239,64.0,1069701,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22677.0,2107.0 +2640239,2640240,52.0,1069701,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22677.0,2107.0 +2640240,2640241,65.0,1069702,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22707.0,2110.0 +2640241,2640242,62.0,1069702,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22707.0,2110.0 +2640242,2640243,65.0,1069703,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22676.0,2107.0 +2640243,2640244,62.0,1069703,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640244,2640245,65.0,1069704,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22693.0,2110.0 +2640245,2640246,62.0,1069704,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22693.0,2110.0 +2640246,2640247,65.0,1069705,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22679.0,2107.0 +2640247,2640248,62.0,1069705,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640248,2640249,65.0,1069706,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22677.0,2107.0 +2640249,2640250,62.0,1069706,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640250,2640251,65.0,1069707,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22679.0,2107.0 +2640251,2640252,62.0,1069707,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640252,2640253,65.0,1069708,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22697.0,2110.0 +2640253,2640254,62.0,1069708,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640254,2640255,65.0,1069709,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22676.0,2107.0 +2640255,2640256,62.0,1069709,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640256,2640257,65.0,1069710,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22676.0,2107.0 +2640257,2640258,62.0,1069710,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640258,2640259,65.0,1069711,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22707.0,2110.0 +2640259,2640260,62.0,1069711,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22707.0,2110.0 +2640260,2640261,65.0,1069712,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22675.0,2107.0 +2640261,2640262,62.0,1069712,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640262,2640263,65.0,1069713,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22676.0,2107.0 +2640263,2640264,62.0,1069713,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640264,2640265,65.0,1069714,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22697.0,2110.0 +2640265,2640266,62.0,1069714,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640266,2640267,65.0,1069715,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22697.0,2110.0 +2640267,2640268,62.0,1069715,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640268,2640269,65.0,1069716,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22710.0,2110.0 +2640269,2640270,62.0,1069716,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22710.0,2110.0 +2640270,2640271,65.0,1069717,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22694.0,2110.0 +2640271,2640272,62.0,1069717,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640272,2640273,65.0,1069718,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22677.0,2107.0 +2640273,2640274,62.0,1069718,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640274,2640275,65.0,1069719,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22706.0,2110.0 +2640275,2640276,62.0,1069719,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22706.0,2110.0 +2640276,2640277,65.0,1069720,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22679.0,2107.0 +2640277,2640278,62.0,1069720,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640278,2640279,65.0,1069721,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22698.0,2110.0 +2640279,2640280,62.0,1069721,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22698.0,2110.0 +2640280,2640281,65.0,1069722,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22679.0,2107.0 +2640281,2640282,62.0,1069722,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640282,2640283,65.0,1069723,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22706.0,2110.0 +2640283,2640284,62.0,1069723,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22706.0,2110.0 +2640284,2640285,65.0,1069724,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22705.0,2110.0 +2640285,2640286,62.0,1069724,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2640286,2640287,65.0,1069725,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22676.0,2107.0 +2640287,2640288,62.0,1069725,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640288,2640289,70.0,1069726,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640289,2640290,47.0,1069726,2,2,2,2,1.0,40.0,1.0,-9.0,4.0,44821,5.0,22676.0,2107.0 +2640290,2640291,1.0,1069726,3,1,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22676.0,2107.0 +2640291,2640292,74.0,1069727,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640292,2640293,56.0,1069727,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640293,2640294,11.0,1069727,3,2,7,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22675.0,2107.0 +2640294,2640295,74.0,1069728,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640295,2640296,56.0,1069728,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640296,2640297,11.0,1069728,3,2,7,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22675.0,2107.0 +2640297,2640298,74.0,1069729,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640298,2640299,56.0,1069729,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640299,2640300,11.0,1069729,3,2,7,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22676.0,2107.0 +2640300,2640301,74.0,1069730,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22698.0,2110.0 +2640301,2640302,56.0,1069730,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22698.0,2110.0 +2640302,2640303,11.0,1069730,3,2,7,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22698.0,2110.0 +2640303,2640304,65.0,1069731,1,2,0,3,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640304,2640305,62.0,1069731,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640305,2640306,65.0,1069732,1,2,0,3,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640306,2640307,62.0,1069732,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640307,2640308,65.0,1069733,1,2,0,3,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22700.0,2110.0 +2640308,2640309,62.0,1069733,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22700.0,2110.0 +2640309,2640310,65.0,1069734,1,2,0,3,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2640310,2640311,62.0,1069734,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22675.0,2107.0 +2640311,2640312,65.0,1069735,1,2,0,3,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22693.0,2110.0 +2640312,2640313,62.0,1069735,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22693.0,2110.0 +2640313,2640314,65.0,1069736,1,2,0,3,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22697.0,2110.0 +2640314,2640315,62.0,1069736,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22697.0,2110.0 +2640315,2640316,65.0,1069737,1,2,0,3,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22694.0,2110.0 +2640316,2640317,62.0,1069737,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22694.0,2110.0 +2640317,2640318,65.0,1069738,1,2,0,3,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2640318,2640319,62.0,1069738,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22675.0,2107.0 +2640319,2640320,65.0,1069739,1,2,0,3,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22691.0,2110.0 +2640320,2640321,62.0,1069739,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22691.0,2110.0 +2640321,2640322,65.0,1069740,1,2,0,3,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2640322,2640323,62.0,1069740,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2640323,2640324,65.0,1069741,1,2,0,3,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22691.0,2110.0 +2640324,2640325,62.0,1069741,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22691.0,2110.0 +2640325,2640326,76.0,1069742,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22709.0,2110.0 +2640326,2640327,77.0,1069742,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22709.0,2110.0 +2640327,2640328,50.0,1069742,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22709.0,2110.0 +2640328,2640329,18.0,1069742,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22709.0,2110.0 +2640329,2640330,76.0,1069743,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22675.0,2107.0 +2640330,2640331,77.0,1069743,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640331,2640332,50.0,1069743,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22675.0,2107.0 +2640332,2640333,18.0,1069743,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22675.0,2107.0 +2640333,2640334,76.0,1069744,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22707.0,2110.0 +2640334,2640335,77.0,1069744,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22707.0,2110.0 +2640335,2640336,50.0,1069744,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22707.0,2110.0 +2640336,2640337,18.0,1069744,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22707.0,2110.0 +2640337,2640338,76.0,1069745,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22710.0,2110.0 +2640338,2640339,77.0,1069745,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22710.0,2110.0 +2640339,2640340,50.0,1069745,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22710.0,2110.0 +2640340,2640341,18.0,1069745,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22710.0,2110.0 +2640341,2640342,76.0,1069746,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22677.0,2107.0 +2640342,2640343,77.0,1069746,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640343,2640344,50.0,1069746,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22677.0,2107.0 +2640344,2640345,18.0,1069746,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22677.0,2107.0 +2640345,2640346,76.0,1069747,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22676.0,2107.0 +2640346,2640347,77.0,1069747,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640347,2640348,50.0,1069747,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22676.0,2107.0 +2640348,2640349,18.0,1069747,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22676.0,2107.0 +2640349,2640350,76.0,1069748,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22676.0,2107.0 +2640350,2640351,77.0,1069748,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640351,2640352,50.0,1069748,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22676.0,2107.0 +2640352,2640353,18.0,1069748,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22676.0,2107.0 +2640353,2640354,76.0,1069749,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22709.0,2110.0 +2640354,2640355,77.0,1069749,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22709.0,2110.0 +2640355,2640356,50.0,1069749,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22709.0,2110.0 +2640356,2640357,18.0,1069749,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22709.0,2110.0 +2640357,2640358,76.0,1069750,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22676.0,2107.0 +2640358,2640359,77.0,1069750,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640359,2640360,50.0,1069750,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22676.0,2107.0 +2640360,2640361,18.0,1069750,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22676.0,2107.0 +2640361,2640362,76.0,1069751,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22691.0,2110.0 +2640362,2640363,77.0,1069751,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22691.0,2110.0 +2640363,2640364,50.0,1069751,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22691.0,2110.0 +2640364,2640365,18.0,1069751,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22691.0,2110.0 +2640365,2640366,76.0,1069752,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22705.0,2110.0 +2640366,2640367,77.0,1069752,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2640367,2640368,50.0,1069752,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22705.0,2110.0 +2640368,2640369,18.0,1069752,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22705.0,2110.0 +2640369,2640370,76.0,1069753,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22702.0,2110.0 +2640370,2640371,77.0,1069753,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640371,2640372,50.0,1069753,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22702.0,2110.0 +2640372,2640373,18.0,1069753,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22702.0,2110.0 +2640373,2640374,76.0,1069754,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22692.0,2110.0 +2640374,2640375,77.0,1069754,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640375,2640376,50.0,1069754,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22692.0,2110.0 +2640376,2640377,18.0,1069754,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22692.0,2110.0 +2640377,2640378,76.0,1069755,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22706.0,2110.0 +2640378,2640379,77.0,1069755,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22706.0,2110.0 +2640379,2640380,50.0,1069755,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22706.0,2110.0 +2640380,2640381,18.0,1069755,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22706.0,2110.0 +2640381,2640382,76.0,1069756,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22702.0,2110.0 +2640382,2640383,77.0,1069756,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640383,2640384,50.0,1069756,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22702.0,2110.0 +2640384,2640385,18.0,1069756,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22702.0,2110.0 +2640385,2640386,76.0,1069757,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22702.0,2110.0 +2640386,2640387,77.0,1069757,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640387,2640388,50.0,1069757,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22702.0,2110.0 +2640388,2640389,18.0,1069757,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22702.0,2110.0 +2640389,2640390,76.0,1069758,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22679.0,2107.0 +2640390,2640391,77.0,1069758,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640391,2640392,50.0,1069758,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22679.0,2107.0 +2640392,2640393,18.0,1069758,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22679.0,2107.0 +2640393,2640394,76.0,1069759,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22676.0,2107.0 +2640394,2640395,77.0,1069759,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640395,2640396,50.0,1069759,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22676.0,2107.0 +2640396,2640397,18.0,1069759,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22676.0,2107.0 +2640397,2640398,76.0,1069760,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22675.0,2107.0 +2640398,2640399,77.0,1069760,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640399,2640400,50.0,1069760,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22675.0,2107.0 +2640400,2640401,18.0,1069760,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22675.0,2107.0 +2640401,2640402,76.0,1069761,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22694.0,2110.0 +2640402,2640403,77.0,1069761,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640403,2640404,50.0,1069761,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22694.0,2110.0 +2640404,2640405,18.0,1069761,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22694.0,2110.0 +2640405,2640406,76.0,1069762,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22675.0,2107.0 +2640406,2640407,77.0,1069762,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640407,2640408,50.0,1069762,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22675.0,2107.0 +2640408,2640409,18.0,1069762,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22675.0,2107.0 +2640409,2640410,76.0,1069763,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22700.0,2110.0 +2640410,2640411,77.0,1069763,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22700.0,2110.0 +2640411,2640412,50.0,1069763,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22700.0,2110.0 +2640412,2640413,18.0,1069763,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22700.0,2110.0 +2640413,2640414,76.0,1069764,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22691.0,2110.0 +2640414,2640415,77.0,1069764,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22691.0,2110.0 +2640415,2640416,50.0,1069764,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22691.0,2110.0 +2640416,2640417,18.0,1069764,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22691.0,2110.0 +2640417,2640418,76.0,1069765,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22675.0,2107.0 +2640418,2640419,77.0,1069765,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640419,2640420,50.0,1069765,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22675.0,2107.0 +2640420,2640421,18.0,1069765,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22675.0,2107.0 +2640421,2640422,76.0,1069766,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22676.0,2107.0 +2640422,2640423,77.0,1069766,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640423,2640424,50.0,1069766,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22676.0,2107.0 +2640424,2640425,18.0,1069766,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22676.0,2107.0 +2640425,2640426,76.0,1069767,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22705.0,2110.0 +2640426,2640427,77.0,1069767,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2640427,2640428,50.0,1069767,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22705.0,2110.0 +2640428,2640429,18.0,1069767,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22705.0,2110.0 +2640429,2640430,76.0,1069768,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22675.0,2107.0 +2640430,2640431,77.0,1069768,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640431,2640432,50.0,1069768,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22675.0,2107.0 +2640432,2640433,18.0,1069768,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22675.0,2107.0 +2640433,2640434,70.0,1069769,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,4411,5.0,22679.0,2107.0 +2640434,2640435,62.0,1069769,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22679.0,2107.0 +2640435,2640436,65.0,1069770,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,6214,14.0,22697.0,2110.0 +2640436,2640437,64.0,1069770,2,1,1,1,1.0,15.0,1.0,-9.0,4.0,8129,17.0,22697.0,2110.0 +2640437,2640438,70.0,1069771,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2640438,2640439,62.0,1069771,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2640439,2640440,70.0,1069772,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640440,2640441,62.0,1069772,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640441,2640442,70.0,1069773,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2640442,2640443,62.0,1069773,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2640443,2640444,70.0,1069774,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22678.0,2107.0 +2640444,2640445,62.0,1069774,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22678.0,2107.0 +2640445,2640446,70.0,1069775,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22697.0,2110.0 +2640446,2640447,62.0,1069775,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22697.0,2110.0 +2640447,2640448,70.0,1069776,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640448,2640449,62.0,1069776,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640449,2640450,70.0,1069777,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640450,2640451,62.0,1069777,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640451,2640452,70.0,1069778,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640452,2640453,62.0,1069778,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640453,2640454,70.0,1069779,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22692.0,2110.0 +2640454,2640455,62.0,1069779,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22692.0,2110.0 +2640455,2640456,70.0,1069780,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2640456,2640457,62.0,1069780,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2640457,2640458,70.0,1069781,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640458,2640459,62.0,1069781,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640459,2640460,69.0,1069782,1,1,0,1,1.0,2.0,1.0,-9.0,4.0,5416,10.0,22679.0,2107.0 +2640460,2640461,59.0,1069782,2,2,1,1,1.0,72.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2640461,2640462,66.0,1069783,1,1,0,1,1.0,48.0,1.0,-9.0,4.0,336M,3.0,22678.0,2107.0 +2640462,2640463,58.0,1069783,2,2,1,1,1.0,25.0,1.0,-9.0,4.0,8121M,17.0,22678.0,2107.0 +2640463,2640464,66.0,1069784,1,1,0,1,1.0,48.0,1.0,-9.0,4.0,336M,3.0,22702.0,2110.0 +2640464,2640465,58.0,1069784,2,2,1,1,1.0,25.0,1.0,-9.0,4.0,8121M,17.0,22702.0,2110.0 +2640465,2640466,66.0,1069785,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,6211,14.0,22676.0,2107.0 +2640466,2640467,61.0,1069785,2,2,1,1,1.0,9.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640467,2640468,66.0,1069786,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,5241,9.0,22676.0,2107.0 +2640468,2640469,62.0,1069786,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640469,2640470,67.0,1069787,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640470,2640471,64.0,1069787,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640471,2640472,67.0,1069788,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640472,2640473,64.0,1069788,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640473,2640474,67.0,1069789,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22708.0,2110.0 +2640474,2640475,64.0,1069789,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22708.0,2110.0 +2640475,2640476,67.0,1069790,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640476,2640477,64.0,1069790,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640477,2640478,67.0,1069791,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640478,2640479,64.0,1069791,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640479,2640480,65.0,1069792,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22702.0,2110.0 +2640480,2640481,60.0,1069792,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22702.0,2110.0 +2640481,2640482,65.0,1069793,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22676.0,2107.0 +2640482,2640483,60.0,1069793,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640483,2640484,65.0,1069794,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22698.0,2110.0 +2640484,2640485,60.0,1069794,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640485,2640486,65.0,1069795,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22706.0,2110.0 +2640486,2640487,60.0,1069795,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22706.0,2110.0 +2640487,2640488,65.0,1069796,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22676.0,2107.0 +2640488,2640489,60.0,1069796,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640489,2640490,65.0,1069797,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22676.0,2107.0 +2640490,2640491,60.0,1069797,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640491,2640492,65.0,1069798,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22677.0,2107.0 +2640492,2640493,60.0,1069798,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22677.0,2107.0 +2640493,2640494,76.0,1069799,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22692.0,2110.0 +2640494,2640495,55.0,1069799,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22692.0,2110.0 +2640495,2640496,35.0,1069799,3,1,2,1,3.0,-9.0,-9.0,-9.0,4.0,6244,14.0,22692.0,2110.0 +2640496,2640497,28.0,1069799,4,1,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22692.0,2110.0 +2640497,2640498,73.0,1069800,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640498,2640499,57.0,1069800,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,6212,14.0,22702.0,2110.0 +2640499,2640500,73.0,1069801,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640500,2640501,57.0,1069801,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,6212,14.0,22676.0,2107.0 +2640501,2640502,65.0,1069802,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640502,2640503,61.0,1069802,2,1,1,1,1.0,50.0,3.0,-9.0,4.0,23,2.0,22694.0,2110.0 +2640503,2640504,65.0,1069803,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640504,2640505,61.0,1069803,2,1,1,1,1.0,50.0,3.0,-9.0,4.0,23,2.0,22675.0,2107.0 +2640505,2640506,65.0,1069804,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22691.0,2110.0 +2640506,2640507,61.0,1069804,2,1,1,1,1.0,50.0,3.0,-9.0,4.0,23,2.0,22691.0,2110.0 +2640507,2640508,68.0,1069805,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640508,2640509,64.0,1069805,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22677.0,2107.0 +2640509,2640510,68.0,1069806,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640510,2640511,64.0,1069806,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22697.0,2110.0 +2640511,2640512,72.0,1069807,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640512,2640513,35.0,1069807,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640513,2640514,88.0,1069808,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640514,2640515,59.0,1069808,2,1,2,1,1.0,39.0,1.0,-9.0,4.0,443141,5.0,22694.0,2110.0 +2640515,2640516,88.0,1069809,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22681.0,2107.0 +2640516,2640517,59.0,1069809,2,1,2,1,1.0,39.0,1.0,-9.0,4.0,443141,5.0,22681.0,2107.0 +2640517,2640518,65.0,1069810,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640518,2640519,64.0,1069810,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640519,2640520,81.0,1069811,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640520,2640521,48.0,1069811,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640521,2640522,81.0,1069812,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640522,2640523,48.0,1069812,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640523,2640524,81.0,1069813,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2640524,2640525,48.0,1069813,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2640525,2640526,65.0,1069814,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22710.0,2110.0 +2640526,2640527,64.0,1069814,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22710.0,2110.0 +2640527,2640528,81.0,1069815,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640528,2640529,48.0,1069815,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640529,2640530,65.0,1069816,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640530,2640531,64.0,1069816,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640531,2640532,81.0,1069817,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640532,2640533,48.0,1069817,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640533,2640534,81.0,1069818,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22710.0,2110.0 +2640534,2640535,48.0,1069818,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22710.0,2110.0 +2640535,2640536,81.0,1069819,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640536,2640537,48.0,1069819,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640537,2640538,89.0,1069820,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22705.0,2110.0 +2640538,2640539,61.0,1069820,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2640539,2640540,89.0,1069821,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22694.0,2110.0 +2640540,2640541,61.0,1069821,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640541,2640542,89.0,1069822,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22692.0,2110.0 +2640542,2640543,61.0,1069822,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640543,2640544,89.0,1069823,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22675.0,2107.0 +2640544,2640545,61.0,1069823,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640545,2640546,89.0,1069824,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22691.0,2110.0 +2640546,2640547,61.0,1069824,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22691.0,2110.0 +2640547,2640548,89.0,1069825,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22675.0,2107.0 +2640548,2640549,61.0,1069825,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640549,2640550,77.0,1069826,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640550,2640551,52.0,1069826,2,1,2,1,6.0,30.0,2.0,-9.0,4.0,23,2.0,22675.0,2107.0 +2640551,2640552,77.0,1069827,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640552,2640553,50.0,1069827,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22676.0,2107.0 +2640553,2640554,77.0,1069828,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640554,2640555,50.0,1069828,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22694.0,2110.0 +2640555,2640556,77.0,1069829,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640556,2640557,50.0,1069829,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22694.0,2110.0 +2640557,2640558,77.0,1069830,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640558,2640559,50.0,1069830,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22694.0,2110.0 +2640559,2640560,77.0,1069831,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22707.0,2110.0 +2640560,2640561,50.0,1069831,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22707.0,2110.0 +2640561,2640562,77.0,1069832,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640562,2640563,50.0,1069832,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22679.0,2107.0 +2640563,2640564,77.0,1069833,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640564,2640565,50.0,1069833,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22676.0,2107.0 +2640565,2640566,77.0,1069834,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640566,2640567,50.0,1069834,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22676.0,2107.0 +2640567,2640568,77.0,1069835,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640568,2640569,50.0,1069835,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22676.0,2107.0 +2640569,2640570,77.0,1069836,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640570,2640571,50.0,1069836,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22679.0,2107.0 +2640571,2640572,66.0,1069837,1,1,0,1,6.0,15.0,4.0,-9.0,4.0,6242,14.0,22708.0,2110.0 +2640572,2640573,64.0,1069837,2,2,1,1,1.0,22.0,3.0,-9.0,2.0,6111,13.0,22708.0,2110.0 +2640573,2640574,70.0,1069838,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2640574,2640575,51.0,1069838,2,2,15,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2640575,2640576,66.0,1069839,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22693.0,2110.0 +2640576,2640577,64.0,1069839,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22693.0,2110.0 +2640577,2640578,66.0,1069840,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640578,2640579,64.0,1069840,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640579,2640580,66.0,1069841,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640580,2640581,64.0,1069841,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640581,2640582,66.0,1069842,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22693.0,2110.0 +2640582,2640583,64.0,1069842,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22693.0,2110.0 +2640583,2640584,66.0,1069843,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2640584,2640585,64.0,1069843,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2640585,2640586,70.0,1069844,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2640586,2640587,51.0,1069844,2,2,15,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2640587,2640588,66.0,1069845,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640588,2640589,43.0,1069845,2,2,4,1,3.0,36.0,6.0,-9.0,4.0,42S,4.0,22697.0,2110.0 +2640589,2640590,83.0,1069846,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640590,2640591,58.0,1069846,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640591,2640592,83.0,1069847,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640592,2640593,58.0,1069847,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640593,2640594,83.0,1069848,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640594,2640595,58.0,1069848,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640595,2640596,83.0,1069849,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2640596,2640597,58.0,1069849,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2640597,2640598,83.0,1069850,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640598,2640599,58.0,1069850,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640599,2640600,83.0,1069851,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640600,2640601,58.0,1069851,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640601,2640602,83.0,1069852,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22693.0,2110.0 +2640602,2640603,58.0,1069852,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22693.0,2110.0 +2640603,2640604,68.0,1069853,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22680.0,2107.0 +2640604,2640605,62.0,1069853,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22680.0,2107.0 +2640605,2640606,40.0,1069853,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22680.0,2107.0 +2640606,2640607,1.0,1069853,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22680.0,2107.0 +2640607,2640608,68.0,1069854,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22676.0,2107.0 +2640608,2640609,62.0,1069854,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22676.0,2107.0 +2640609,2640610,40.0,1069854,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22676.0,2107.0 +2640610,2640611,1.0,1069854,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22676.0,2107.0 +2640611,2640612,68.0,1069855,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22700.0,2110.0 +2640612,2640613,62.0,1069855,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22700.0,2110.0 +2640613,2640614,40.0,1069855,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22700.0,2110.0 +2640614,2640615,1.0,1069855,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22700.0,2110.0 +2640615,2640616,68.0,1069856,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22676.0,2107.0 +2640616,2640617,62.0,1069856,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22676.0,2107.0 +2640617,2640618,40.0,1069856,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22676.0,2107.0 +2640618,2640619,1.0,1069856,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22676.0,2107.0 +2640619,2640620,76.0,1069857,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,8131,17.0,22678.0,2107.0 +2640620,2640621,36.0,1069857,2,1,2,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22678.0,2107.0 +2640621,2640622,0.0,1069857,3,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22678.0,2107.0 +2640622,2640623,35.0,1069857,4,2,9,1,1.0,40.0,4.0,-9.0,4.0,4411,5.0,22678.0,2107.0 +2640623,2640624,76.0,1069858,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,8131,17.0,22693.0,2110.0 +2640624,2640625,36.0,1069858,2,1,2,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22693.0,2110.0 +2640625,2640626,0.0,1069858,3,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22693.0,2110.0 +2640626,2640627,35.0,1069858,4,2,9,1,1.0,40.0,4.0,-9.0,4.0,4411,5.0,22693.0,2110.0 +2640627,2640628,49.0,1069859,1,1,0,4,1.0,48.0,2.0,-9.0,4.0,336M,3.0,22702.0,2110.0 +2640628,2640629,49.0,1069859,2,2,1,4,1.0,25.0,4.0,-9.0,4.0,336M,3.0,22702.0,2110.0 +2640629,2640630,17.0,1069859,3,2,2,4,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22702.0,2110.0 +2640630,2640631,55.0,1069860,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640631,2640632,53.0,1069860,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22702.0,2110.0 +2640632,2640633,9.0,1069860,3,1,7,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22702.0,2110.0 +2640633,2640634,2.0,1069860,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22702.0,2110.0 +2640634,2640635,55.0,1069861,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640635,2640636,53.0,1069861,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22694.0,2110.0 +2640636,2640637,9.0,1069861,3,1,7,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22694.0,2110.0 +2640637,2640638,2.0,1069861,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22694.0,2110.0 +2640638,2640639,55.0,1069862,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640639,2640640,53.0,1069862,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22694.0,2110.0 +2640640,2640641,9.0,1069862,3,1,7,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22694.0,2110.0 +2640641,2640642,2.0,1069862,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22694.0,2110.0 +2640642,2640643,55.0,1069863,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640643,2640644,53.0,1069863,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22679.0,2107.0 +2640644,2640645,9.0,1069863,3,1,7,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22679.0,2107.0 +2640645,2640646,2.0,1069863,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22679.0,2107.0 +2640646,2640647,45.0,1069864,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22675.0,2107.0 +2640647,2640648,30.0,1069864,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640648,2640649,45.0,1069865,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22676.0,2107.0 +2640649,2640650,30.0,1069865,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640650,2640651,45.0,1069866,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22697.0,2110.0 +2640651,2640652,30.0,1069866,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640652,2640653,45.0,1069867,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22676.0,2107.0 +2640653,2640654,30.0,1069867,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640654,2640655,45.0,1069868,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22675.0,2107.0 +2640655,2640656,30.0,1069868,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640656,2640657,45.0,1069869,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22706.0,2110.0 +2640657,2640658,30.0,1069869,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22706.0,2110.0 +2640658,2640659,45.0,1069870,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22707.0,2110.0 +2640659,2640660,30.0,1069870,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22707.0,2110.0 +2640660,2640661,45.0,1069871,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22676.0,2107.0 +2640661,2640662,30.0,1069871,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640662,2640663,45.0,1069872,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22691.0,2110.0 +2640663,2640664,30.0,1069872,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22691.0,2110.0 +2640664,2640665,45.0,1069873,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22702.0,2110.0 +2640665,2640666,30.0,1069873,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640666,2640667,45.0,1069874,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22676.0,2107.0 +2640667,2640668,30.0,1069874,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640668,2640669,45.0,1069875,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22702.0,2110.0 +2640669,2640670,30.0,1069875,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640670,2640671,45.0,1069876,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22675.0,2107.0 +2640671,2640672,30.0,1069876,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640672,2640673,45.0,1069877,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22679.0,2107.0 +2640673,2640674,30.0,1069877,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640674,2640675,45.0,1069878,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22697.0,2110.0 +2640675,2640676,30.0,1069878,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640676,2640677,45.0,1069879,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22675.0,2107.0 +2640677,2640678,30.0,1069879,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640678,2640679,45.0,1069880,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22693.0,2110.0 +2640679,2640680,30.0,1069880,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22693.0,2110.0 +2640680,2640681,45.0,1069881,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22692.0,2110.0 +2640681,2640682,30.0,1069881,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640682,2640683,45.0,1069882,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22691.0,2110.0 +2640683,2640684,30.0,1069882,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22691.0,2110.0 +2640684,2640685,45.0,1069883,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22681.0,2107.0 +2640685,2640686,30.0,1069883,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22681.0,2107.0 +2640686,2640687,45.0,1069884,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22698.0,2110.0 +2640687,2640688,30.0,1069884,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22698.0,2110.0 +2640688,2640689,45.0,1069885,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22676.0,2107.0 +2640689,2640690,30.0,1069885,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640690,2640691,45.0,1069886,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22691.0,2110.0 +2640691,2640692,30.0,1069886,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22691.0,2110.0 +2640692,2640693,45.0,1069887,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22693.0,2110.0 +2640693,2640694,30.0,1069887,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22693.0,2110.0 +2640694,2640695,45.0,1069888,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22676.0,2107.0 +2640695,2640696,30.0,1069888,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640696,2640697,56.0,1069889,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,3261,3.0,22702.0,2110.0 +2640697,2640698,53.0,1069889,2,1,5,2,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22702.0,2110.0 +2640698,2640699,53.0,1069890,1,2,0,2,1.0,32.0,1.0,16.0,4.0,621M,14.0,22702.0,2110.0 +2640699,2640700,80.0,1069890,2,2,6,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640700,2640701,53.0,1069891,1,2,0,2,1.0,32.0,1.0,16.0,4.0,621M,14.0,22675.0,2107.0 +2640701,2640702,80.0,1069891,2,2,6,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640702,2640703,53.0,1069892,1,2,0,2,1.0,32.0,1.0,16.0,4.0,621M,14.0,22708.0,2110.0 +2640703,2640704,80.0,1069892,2,2,6,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22708.0,2110.0 +2640704,2640705,53.0,1069893,1,2,0,2,1.0,32.0,1.0,16.0,4.0,621M,14.0,22681.0,2107.0 +2640705,2640706,80.0,1069893,2,2,6,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22681.0,2107.0 +2640706,2640707,53.0,1069894,1,2,0,2,1.0,32.0,1.0,16.0,4.0,621M,14.0,22676.0,2107.0 +2640707,2640708,80.0,1069894,2,2,6,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640708,2640709,53.0,1069895,1,2,0,2,1.0,32.0,1.0,16.0,4.0,621M,14.0,22676.0,2107.0 +2640709,2640710,80.0,1069895,2,2,6,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640710,2640711,53.0,1069896,1,2,0,2,1.0,32.0,1.0,16.0,4.0,621M,14.0,22676.0,2107.0 +2640711,2640712,80.0,1069896,2,2,6,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640712,2640713,53.0,1069897,1,2,0,2,1.0,32.0,1.0,16.0,4.0,621M,14.0,22675.0,2107.0 +2640713,2640714,80.0,1069897,2,2,6,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640714,2640715,64.0,1069898,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640715,2640716,74.0,1069898,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640716,2640717,64.0,1069899,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640717,2640718,74.0,1069899,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640718,2640719,60.0,1069900,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22702.0,2110.0 +2640719,2640720,69.0,1069900,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640720,2640721,18.0,1069900,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22702.0,2110.0 +2640721,2640722,60.0,1069901,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2640722,2640723,69.0,1069901,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640723,2640724,18.0,1069901,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22675.0,2107.0 +2640724,2640725,60.0,1069902,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22691.0,2110.0 +2640725,2640726,69.0,1069902,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22691.0,2110.0 +2640726,2640727,18.0,1069902,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22691.0,2110.0 +2640727,2640728,60.0,1069903,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22677.0,2107.0 +2640728,2640729,69.0,1069903,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640729,2640730,18.0,1069903,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22677.0,2107.0 +2640730,2640731,60.0,1069904,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2640731,2640732,69.0,1069904,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640732,2640733,18.0,1069904,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22679.0,2107.0 +2640733,2640734,60.0,1069905,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22678.0,2107.0 +2640734,2640735,69.0,1069905,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2640735,2640736,18.0,1069905,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22678.0,2107.0 +2640736,2640737,60.0,1069906,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2640737,2640738,69.0,1069906,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640738,2640739,18.0,1069906,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22675.0,2107.0 +2640739,2640740,60.0,1069907,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22707.0,2110.0 +2640740,2640741,69.0,1069907,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22707.0,2110.0 +2640741,2640742,18.0,1069907,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22707.0,2110.0 +2640742,2640743,60.0,1069908,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22697.0,2110.0 +2640743,2640744,69.0,1069908,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640744,2640745,18.0,1069908,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22697.0,2110.0 +2640745,2640746,60.0,1069909,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22705.0,2110.0 +2640746,2640747,69.0,1069909,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2640747,2640748,18.0,1069909,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22705.0,2110.0 +2640748,2640749,60.0,1069910,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640749,2640750,69.0,1069910,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640750,2640751,18.0,1069910,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22676.0,2107.0 +2640751,2640752,60.0,1069911,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22706.0,2110.0 +2640752,2640753,69.0,1069911,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22706.0,2110.0 +2640753,2640754,18.0,1069911,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22706.0,2110.0 +2640754,2640755,60.0,1069912,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2640755,2640756,69.0,1069912,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640756,2640757,18.0,1069912,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22675.0,2107.0 +2640757,2640758,60.0,1069913,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22709.0,2110.0 +2640758,2640759,69.0,1069913,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22709.0,2110.0 +2640759,2640760,18.0,1069913,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22709.0,2110.0 +2640760,2640761,60.0,1069914,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640761,2640762,69.0,1069914,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640762,2640763,18.0,1069914,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22676.0,2107.0 +2640763,2640764,60.0,1069915,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22691.0,2110.0 +2640764,2640765,69.0,1069915,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22691.0,2110.0 +2640765,2640766,18.0,1069915,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22691.0,2110.0 +2640766,2640767,60.0,1069916,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640767,2640768,69.0,1069916,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640768,2640769,18.0,1069916,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22676.0,2107.0 +2640769,2640770,60.0,1069917,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640770,2640771,69.0,1069917,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640771,2640772,18.0,1069917,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22676.0,2107.0 +2640772,2640773,60.0,1069918,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22700.0,2110.0 +2640773,2640774,69.0,1069918,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22700.0,2110.0 +2640774,2640775,18.0,1069918,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22700.0,2110.0 +2640775,2640776,60.0,1069919,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640776,2640777,69.0,1069919,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640777,2640778,18.0,1069919,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22676.0,2107.0 +2640778,2640779,60.0,1069920,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22707.0,2110.0 +2640779,2640780,69.0,1069920,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22707.0,2110.0 +2640780,2640781,18.0,1069920,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22707.0,2110.0 +2640781,2640782,60.0,1069921,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640782,2640783,69.0,1069921,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640783,2640784,18.0,1069921,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22676.0,2107.0 +2640784,2640785,60.0,1069922,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2640785,2640786,69.0,1069922,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640786,2640787,18.0,1069922,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22675.0,2107.0 +2640787,2640788,60.0,1069923,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22677.0,2107.0 +2640788,2640789,69.0,1069923,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640789,2640790,18.0,1069923,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22677.0,2107.0 +2640790,2640791,55.0,1069924,1,1,0,2,1.0,36.0,1.0,-9.0,4.0,6231,14.0,22676.0,2107.0 +2640791,2640792,44.0,1069924,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640792,2640793,13.0,1069924,3,2,2,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22676.0,2107.0 +2640793,2640794,10.0,1069924,4,1,2,2,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22676.0,2107.0 +2640794,2640795,6.0,1069924,5,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22676.0,2107.0 +2640795,2640796,58.0,1069925,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22692.0,2110.0 +2640796,2640797,23.0,1069925,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22692.0,2110.0 +2640797,2640798,58.0,1069926,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640798,2640799,23.0,1069926,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22676.0,2107.0 +2640799,2640800,58.0,1069927,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22694.0,2110.0 +2640800,2640801,23.0,1069927,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22694.0,2110.0 +2640801,2640802,58.0,1069928,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22694.0,2110.0 +2640802,2640803,23.0,1069928,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22694.0,2110.0 +2640803,2640804,58.0,1069929,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640804,2640805,23.0,1069929,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22676.0,2107.0 +2640805,2640806,58.0,1069930,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22702.0,2110.0 +2640806,2640807,23.0,1069930,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22702.0,2110.0 +2640807,2640808,58.0,1069931,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640808,2640809,23.0,1069931,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22698.0,2110.0 +2640809,2640810,58.0,1069932,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640810,2640811,23.0,1069932,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22676.0,2107.0 +2640811,2640812,58.0,1069933,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22702.0,2110.0 +2640812,2640813,23.0,1069933,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22702.0,2110.0 +2640813,2640814,58.0,1069934,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22709.0,2110.0 +2640814,2640815,23.0,1069934,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22709.0,2110.0 +2640815,2640816,58.0,1069935,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640816,2640817,23.0,1069935,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22676.0,2107.0 +2640817,2640818,58.0,1069936,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22710.0,2110.0 +2640818,2640819,23.0,1069936,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22710.0,2110.0 +2640819,2640820,58.0,1069937,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2640820,2640821,23.0,1069937,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22679.0,2107.0 +2640821,2640822,58.0,1069938,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22691.0,2110.0 +2640822,2640823,23.0,1069938,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22691.0,2110.0 +2640823,2640824,58.0,1069939,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22708.0,2110.0 +2640824,2640825,23.0,1069939,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22708.0,2110.0 +2640825,2640826,58.0,1069940,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640826,2640827,23.0,1069940,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22676.0,2107.0 +2640827,2640828,58.0,1069941,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640828,2640829,23.0,1069941,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22676.0,2107.0 +2640829,2640830,58.0,1069942,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22692.0,2110.0 +2640830,2640831,23.0,1069942,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22692.0,2110.0 +2640831,2640832,58.0,1069943,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2640832,2640833,23.0,1069943,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22679.0,2107.0 +2640833,2640834,58.0,1069944,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22705.0,2110.0 +2640834,2640835,23.0,1069944,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22705.0,2110.0 +2640835,2640836,45.0,1069945,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2640836,2640837,66.0,1069945,2,2,6,3,6.0,40.0,5.0,-9.0,4.0,6244,14.0,22676.0,2107.0 +2640837,2640838,45.0,1069946,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2640838,2640839,66.0,1069946,2,2,6,3,6.0,40.0,5.0,-9.0,4.0,6244,14.0,22675.0,2107.0 +2640839,2640840,45.0,1069947,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22698.0,2110.0 +2640840,2640841,66.0,1069947,2,2,6,3,6.0,40.0,5.0,-9.0,4.0,6244,14.0,22698.0,2110.0 +2640841,2640842,45.0,1069948,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22697.0,2110.0 +2640842,2640843,66.0,1069948,2,2,6,3,6.0,40.0,5.0,-9.0,4.0,6244,14.0,22697.0,2110.0 +2640843,2640844,45.0,1069949,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22705.0,2110.0 +2640844,2640845,66.0,1069949,2,2,6,3,6.0,40.0,5.0,-9.0,4.0,6244,14.0,22705.0,2110.0 +2640845,2640846,61.0,1069950,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22709.0,2110.0 +2640846,2640847,57.0,1069951,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,813M,17.0,22700.0,2110.0 +2640847,2640848,65.0,1069951,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22700.0,2110.0 +2640848,2640849,64.0,1069952,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22693.0,2110.0 +2640849,2640850,65.0,1069952,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22693.0,2110.0 +2640850,2640851,64.0,1069953,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22697.0,2110.0 +2640851,2640852,65.0,1069953,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22697.0,2110.0 +2640852,2640853,64.0,1069954,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640853,2640854,65.0,1069954,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640854,2640855,64.0,1069955,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640855,2640856,65.0,1069955,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640856,2640857,64.0,1069956,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640857,2640858,65.0,1069956,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640858,2640859,64.0,1069957,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22705.0,2110.0 +2640859,2640860,65.0,1069957,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22705.0,2110.0 +2640860,2640861,64.0,1069958,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640861,2640862,65.0,1069958,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22698.0,2110.0 +2640862,2640863,64.0,1069959,1,2,0,1,1.0,40.0,4.0,-9.0,4.0,5411,10.0,22675.0,2107.0 +2640863,2640864,69.0,1069959,2,1,13,1,1.0,30.0,1.0,-9.0,2.0,5411,10.0,22675.0,2107.0 +2640864,2640865,64.0,1069960,1,2,0,1,1.0,40.0,4.0,-9.0,4.0,5411,10.0,22702.0,2110.0 +2640865,2640866,69.0,1069960,2,1,13,1,1.0,30.0,1.0,-9.0,2.0,5411,10.0,22702.0,2110.0 +2640866,2640867,64.0,1069961,1,2,0,1,1.0,40.0,4.0,-9.0,4.0,5411,10.0,22709.0,2110.0 +2640867,2640868,69.0,1069961,2,1,13,1,1.0,30.0,1.0,-9.0,2.0,5411,10.0,22709.0,2110.0 +2640868,2640869,64.0,1069962,1,2,0,1,1.0,40.0,4.0,-9.0,4.0,5411,10.0,22676.0,2107.0 +2640869,2640870,69.0,1069962,2,1,13,1,1.0,30.0,1.0,-9.0,2.0,5411,10.0,22676.0,2107.0 +2640870,2640871,64.0,1069963,1,2,0,1,1.0,40.0,4.0,-9.0,4.0,5411,10.0,22693.0,2110.0 +2640871,2640872,69.0,1069963,2,1,13,1,1.0,30.0,1.0,-9.0,2.0,5411,10.0,22693.0,2110.0 +2640872,2640873,63.0,1069964,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,491,6.0,22697.0,2110.0 +2640873,2640874,68.0,1069964,2,1,1,1,1.0,30.0,1.0,-9.0,4.0,4411,5.0,22697.0,2110.0 +2640874,2640875,64.0,1069965,1,1,0,1,1.0,35.0,4.0,-9.0,4.0,6211,14.0,22708.0,2110.0 +2640875,2640876,61.0,1069965,2,2,1,1,1.0,25.0,4.0,-9.0,4.0,6211,14.0,22708.0,2110.0 +2640876,2640877,52.0,1069966,1,2,0,1,1.0,60.0,1.0,-9.0,4.0,454110,5.0,22702.0,2110.0 +2640877,2640878,60.0,1069966,2,1,1,1,1.0,25.0,3.0,-9.0,4.0,4411,5.0,22702.0,2110.0 +2640878,2640879,64.0,1069967,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,5411,10.0,22676.0,2107.0 +2640879,2640880,69.0,1069967,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640880,2640881,64.0,1069968,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,5411,10.0,22676.0,2107.0 +2640881,2640882,69.0,1069968,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640882,2640883,64.0,1069969,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,5411,10.0,22676.0,2107.0 +2640883,2640884,69.0,1069969,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640884,2640885,64.0,1069970,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,5411,10.0,22693.0,2110.0 +2640885,2640886,69.0,1069970,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22693.0,2110.0 +2640886,2640887,52.0,1069971,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6241,14.0,22676.0,2107.0 +2640887,2640888,55.0,1069972,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22697.0,2110.0 +2640888,2640889,62.0,1069973,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5416,10.0,22678.0,2107.0 +2640889,2640890,62.0,1069974,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5416,10.0,22702.0,2110.0 +2640890,2640891,62.0,1069975,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5416,10.0,22676.0,2107.0 +2640891,2640892,62.0,1069976,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5416,10.0,22708.0,2110.0 +2640892,2640893,62.0,1069977,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5416,10.0,22707.0,2110.0 +2640893,2640894,51.0,1069978,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4411,5.0,22698.0,2110.0 +2640894,2640895,51.0,1069979,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4411,5.0,22698.0,2110.0 +2640895,2640896,51.0,1069980,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4411,5.0,22709.0,2110.0 +2640896,2640897,51.0,1069981,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4411,5.0,22675.0,2107.0 +2640897,2640898,50.0,1069982,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640898,2640899,59.0,1069982,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22677.0,2107.0 +2640899,2640900,70.0,1069982,3,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640900,2640901,87.0,1069982,4,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640901,2640902,50.0,1069983,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640902,2640903,59.0,1069983,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22675.0,2107.0 +2640903,2640904,70.0,1069983,3,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640904,2640905,87.0,1069983,4,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640905,2640906,50.0,1069984,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640906,2640907,59.0,1069984,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22692.0,2110.0 +2640907,2640908,70.0,1069984,3,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640908,2640909,87.0,1069984,4,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640909,2640910,50.0,1069985,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22707.0,2110.0 +2640910,2640911,59.0,1069985,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22707.0,2110.0 +2640911,2640912,70.0,1069985,3,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22707.0,2110.0 +2640912,2640913,87.0,1069985,4,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22707.0,2110.0 +2640913,2640914,60.0,1069986,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,8139Z,17.0,22675.0,2107.0 +2640914,2640915,55.0,1069987,1,2,0,1,1.0,51.0,1.0,-9.0,4.0,81393,17.0,22678.0,2107.0 +2640915,2640916,55.0,1069988,1,2,0,1,1.0,51.0,1.0,-9.0,4.0,81393,17.0,22677.0,2107.0 +2640916,2640917,48.0,1069989,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22676.0,2107.0 +2640917,2640918,57.0,1069990,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22691.0,2110.0 +2640918,2640919,54.0,1069991,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,6111,13.0,22708.0,2110.0 +2640919,2640920,54.0,1069992,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,6111,13.0,22676.0,2107.0 +2640920,2640921,57.0,1069993,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,336M,3.0,22676.0,2107.0 +2640921,2640922,64.0,1069994,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2640922,2640923,64.0,1069995,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640923,2640924,45.0,1069996,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,334M2,3.0,22697.0,2110.0 +2640924,2640925,45.0,1069997,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,334M2,3.0,22676.0,2107.0 +2640925,2640926,45.0,1069998,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,334M2,3.0,22681.0,2107.0 +2640926,2640927,63.0,1069999,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22708.0,2110.0 +2640927,2640928,66.0,1069999,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22708.0,2110.0 +2640928,2640929,63.0,1070000,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640929,2640930,66.0,1070000,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2640930,2640931,63.0,1070001,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22691.0,2110.0 +2640931,2640932,66.0,1070001,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22691.0,2110.0 +2640932,2640933,63.0,1070002,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22708.0,2110.0 +2640933,2640934,66.0,1070002,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22708.0,2110.0 +2640934,2640935,63.0,1070003,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640935,2640936,66.0,1070003,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640936,2640937,63.0,1070004,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22706.0,2110.0 +2640937,2640938,66.0,1070004,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22706.0,2110.0 +2640938,2640939,63.0,1070005,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640939,2640940,66.0,1070005,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640940,2640941,63.0,1070006,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640941,2640942,66.0,1070006,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2640942,2640943,63.0,1070007,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,55,11.0,22692.0,2110.0 +2640943,2640944,48.0,1070008,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22706.0,2110.0 +2640944,2640945,48.0,1070009,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22677.0,2107.0 +2640945,2640946,48.0,1070010,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22700.0,2110.0 +2640946,2640947,52.0,1070011,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640947,2640948,54.0,1070012,1,1,0,1,1.0,45.0,1.0,-9.0,2.0,5417,10.0,22676.0,2107.0 +2640948,2640949,54.0,1070013,1,1,0,1,1.0,45.0,1.0,-9.0,2.0,5417,10.0,22705.0,2110.0 +2640949,2640950,57.0,1070014,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5182,8.0,22679.0,2107.0 +2640950,2640951,57.0,1070015,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5182,8.0,22706.0,2110.0 +2640951,2640952,45.0,1070016,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22705.0,2110.0 +2640952,2640953,45.0,1070017,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22710.0,2110.0 +2640953,2640954,21.0,1070017,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22710.0,2110.0 +2640954,2640955,45.0,1070018,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22706.0,2110.0 +2640955,2640956,21.0,1070018,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22706.0,2110.0 +2640956,2640957,63.0,1070019,1,1,0,1,1.0,20.0,5.0,-9.0,4.0,56173,12.0,22679.0,2107.0 +2640957,2640958,65.0,1070019,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640958,2640959,63.0,1070020,1,1,0,1,1.0,20.0,5.0,-9.0,4.0,56173,12.0,22679.0,2107.0 +2640959,2640960,65.0,1070020,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640960,2640961,63.0,1070021,1,1,0,1,1.0,20.0,5.0,-9.0,4.0,56173,12.0,22700.0,2110.0 +2640961,2640962,65.0,1070021,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22700.0,2110.0 +2640962,2640963,50.0,1070022,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22679.0,2107.0 +2640963,2640964,62.0,1070023,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2640964,2640965,62.0,1070024,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640965,2640966,63.0,1070025,1,2,0,1,1.0,34.0,1.0,-9.0,4.0,6211,14.0,22698.0,2110.0 +2640966,2640967,63.0,1070026,1,2,0,1,1.0,34.0,1.0,-9.0,4.0,6211,14.0,22675.0,2107.0 +2640967,2640968,63.0,1070027,1,2,0,1,1.0,34.0,1.0,-9.0,4.0,6211,14.0,22705.0,2110.0 +2640968,2640969,63.0,1070028,1,2,0,1,1.0,34.0,1.0,-9.0,4.0,6211,14.0,22702.0,2110.0 +2640969,2640970,58.0,1070029,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4441Z,5.0,22676.0,2107.0 +2640970,2640971,59.0,1070030,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4441Z,5.0,22702.0,2110.0 +2640971,2640972,59.0,1070031,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4441Z,5.0,22681.0,2107.0 +2640972,2640973,46.0,1070032,1,1,0,1,1.0,29.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640973,2640974,49.0,1070033,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22675.0,2107.0 +2640974,2640975,49.0,1070034,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640975,2640976,49.0,1070035,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2640976,2640977,48.0,1070036,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,481,6.0,22700.0,2110.0 +2640977,2640978,55.0,1070037,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22676.0,2107.0 +2640978,2640979,61.0,1070038,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640979,2640980,68.0,1070038,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640980,2640981,61.0,1070039,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640981,2640982,68.0,1070039,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2640982,2640983,61.0,1070040,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22698.0,2110.0 +2640983,2640984,68.0,1070040,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22698.0,2110.0 +2640984,2640985,61.0,1070041,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640985,2640986,68.0,1070041,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640986,2640987,61.0,1070042,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2640987,2640988,68.0,1070042,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2640988,2640989,56.0,1070043,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640989,2640990,45.0,1070044,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640990,2640991,62.0,1070045,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2640991,2640992,45.0,1070046,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2640992,2640993,45.0,1070047,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22681.0,2107.0 +2640993,2640994,61.0,1070048,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2640994,2640995,45.0,1070049,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2640995,2640996,63.0,1070050,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22692.0,2110.0 +2640996,2640997,63.0,1070051,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22678.0,2107.0 +2640997,2640998,63.0,1070052,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22692.0,2110.0 +2640998,2640999,52.0,1070053,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22676.0,2107.0 +2640999,2641000,49.0,1070054,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22707.0,2110.0 +2641000,2641001,49.0,1070055,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641001,2641002,49.0,1070056,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641002,2641003,49.0,1070057,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641003,2641004,49.0,1070058,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22679.0,2107.0 +2641004,2641005,49.0,1070059,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22697.0,2110.0 +2641005,2641006,49.0,1070060,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22706.0,2110.0 +2641006,2641007,49.0,1070061,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22692.0,2110.0 +2641007,2641008,49.0,1070062,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641008,2641009,49.0,1070063,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22675.0,2107.0 +2641009,2641010,49.0,1070064,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22707.0,2110.0 +2641010,2641011,49.0,1070065,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22692.0,2110.0 +2641011,2641012,49.0,1070066,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22708.0,2110.0 +2641012,2641013,49.0,1070067,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22697.0,2110.0 +2641013,2641014,49.0,1070068,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22702.0,2110.0 +2641014,2641015,49.0,1070069,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22679.0,2107.0 +2641015,2641016,49.0,1070070,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641016,2641017,49.0,1070071,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22681.0,2107.0 +2641017,2641018,49.0,1070072,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22702.0,2110.0 +2641018,2641019,49.0,1070073,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22694.0,2110.0 +2641019,2641020,49.0,1070074,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22694.0,2110.0 +2641020,2641021,49.0,1070075,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22702.0,2110.0 +2641021,2641022,49.0,1070076,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22708.0,2110.0 +2641022,2641023,49.0,1070077,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22677.0,2107.0 +2641023,2641024,49.0,1070078,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22710.0,2110.0 +2641024,2641025,49.0,1070079,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22678.0,2107.0 +2641025,2641026,49.0,1070080,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22681.0,2107.0 +2641026,2641027,49.0,1070081,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22709.0,2110.0 +2641027,2641028,49.0,1070082,1,1,0,1,1.0,16.0,5.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641028,2641029,55.0,1070083,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8129,17.0,22676.0,2107.0 +2641029,2641030,55.0,1070084,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8129,17.0,22676.0,2107.0 +2641030,2641031,61.0,1070085,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,8131,17.0,22681.0,2107.0 +2641031,2641032,61.0,1070086,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,8131,17.0,22694.0,2110.0 +2641032,2641033,57.0,1070087,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22691.0,2110.0 +2641033,2641034,61.0,1070088,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,8131,17.0,22676.0,2107.0 +2641034,2641035,61.0,1070089,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,8131,17.0,22679.0,2107.0 +2641035,2641036,57.0,1070090,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22693.0,2110.0 +2641036,2641037,54.0,1070091,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22691.0,2110.0 +2641037,2641038,54.0,1070092,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2641038,2641039,59.0,1070093,1,2,0,1,1.0,27.0,1.0,-9.0,4.0,5121,8.0,22697.0,2110.0 +2641039,2641040,59.0,1070094,1,2,0,1,1.0,27.0,1.0,-9.0,4.0,5121,8.0,22679.0,2107.0 +2641040,2641041,59.0,1070095,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,44511,5.0,22693.0,2110.0 +2641041,2641042,56.0,1070096,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22702.0,2110.0 +2641042,2641043,59.0,1070097,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,3328,3.0,22697.0,2110.0 +2641043,2641044,53.0,1070098,1,1,0,1,1.0,35.0,1.0,-9.0,4.0,5617Z,12.0,22702.0,2110.0 +2641044,2641045,53.0,1070099,1,1,0,1,1.0,35.0,1.0,-9.0,4.0,5617Z,12.0,22677.0,2107.0 +2641045,2641046,51.0,1070100,1,1,0,1,1.0,36.0,1.0,-9.0,2.0,531M,9.0,22676.0,2107.0 +2641046,2641047,61.0,1070101,1,1,0,1,1.0,25.0,1.0,-9.0,4.0,5121,8.0,22675.0,2107.0 +2641047,2641048,61.0,1070102,1,1,0,1,1.0,25.0,1.0,-9.0,4.0,5121,8.0,22708.0,2110.0 +2641048,2641049,61.0,1070103,1,1,0,1,1.0,25.0,1.0,-9.0,4.0,5121,8.0,22676.0,2107.0 +2641049,2641050,58.0,1070104,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,45439,5.0,22678.0,2107.0 +2641050,2641051,58.0,1070105,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,45439,5.0,22675.0,2107.0 +2641051,2641052,51.0,1070106,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,3221,3.0,22676.0,2107.0 +2641052,2641053,51.0,1070107,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,3221,3.0,22694.0,2110.0 +2641053,2641054,51.0,1070108,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,3221,3.0,22707.0,2110.0 +2641054,2641055,51.0,1070109,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,3221,3.0,22675.0,2107.0 +2641055,2641056,51.0,1070110,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,3221,3.0,22697.0,2110.0 +2641056,2641057,51.0,1070111,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,3221,3.0,22697.0,2110.0 +2641057,2641058,54.0,1070112,1,1,0,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22693.0,2110.0 +2641058,2641059,54.0,1070113,1,1,0,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641059,2641060,54.0,1070114,1,1,0,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641060,2641061,54.0,1070115,1,1,0,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22706.0,2110.0 +2641061,2641062,54.0,1070116,1,1,0,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22697.0,2110.0 +2641062,2641063,54.0,1070117,1,1,0,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641063,2641064,57.0,1070118,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22678.0,2107.0 +2641064,2641065,83.0,1070118,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2641065,2641066,59.0,1070119,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2641066,2641067,61.0,1070120,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2641067,2641068,62.0,1070121,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2641068,2641069,62.0,1070122,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2641069,2641070,62.0,1070123,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2641070,2641071,61.0,1070124,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2641071,2641072,62.0,1070125,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22706.0,2110.0 +2641072,2641073,63.0,1070126,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22709.0,2110.0 +2641073,2641074,62.0,1070127,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22707.0,2110.0 +2641074,2641075,58.0,1070128,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2641075,2641076,62.0,1070129,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2641076,2641077,63.0,1070130,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22692.0,2110.0 +2641077,2641078,62.0,1070131,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22680.0,2107.0 +2641078,2641079,63.0,1070132,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22676.0,2107.0 +2641079,2641080,62.0,1070133,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2641080,2641081,57.0,1070134,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22692.0,2110.0 +2641081,2641082,63.0,1070135,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22702.0,2110.0 +2641082,2641083,63.0,1070136,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22697.0,2110.0 +2641083,2641084,58.0,1070137,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22710.0,2110.0 +2641084,2641085,57.0,1070138,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22677.0,2107.0 +2641085,2641086,57.0,1070139,1,1,0,1,3.0,-9.0,-9.0,-9.0,4.0,5413,10.0,22694.0,2110.0 +2641086,2641087,58.0,1070140,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22707.0,2110.0 +2641087,2641088,56.0,1070141,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3345,3.0,22676.0,2107.0 +2641088,2641089,42.0,1070141,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2641089,2641090,14.0,1070141,3,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22676.0,2107.0 +2641090,2641091,6.0,1070141,4,1,2,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22676.0,2107.0 +2641091,2641092,69.0,1070141,5,2,8,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2641092,2641093,64.0,1070142,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,4411,5.0,22705.0,2110.0 +2641093,2641094,68.0,1070142,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2641094,2641095,47.0,1070142,3,2,4,1,1.0,40.0,1.0,-9.0,4.0,4244,4.0,22705.0,2110.0 +2641095,2641096,17.0,1070142,4,2,7,1,1.0,24.0,6.0,13.0,4.0,44511,5.0,22705.0,2110.0 +2641096,2641097,6.0,1070142,5,2,7,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22705.0,2110.0 +2641097,2641098,64.0,1070143,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,4411,5.0,22706.0,2110.0 +2641098,2641099,68.0,1070143,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22706.0,2110.0 +2641099,2641100,47.0,1070143,3,2,4,1,1.0,40.0,1.0,-9.0,4.0,4244,4.0,22706.0,2110.0 +2641100,2641101,17.0,1070143,4,2,7,1,1.0,24.0,6.0,13.0,4.0,44511,5.0,22706.0,2110.0 +2641101,2641102,6.0,1070143,5,2,7,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22706.0,2110.0 +2641102,2641103,64.0,1070144,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,4411,5.0,22705.0,2110.0 +2641103,2641104,68.0,1070144,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2641104,2641105,47.0,1070144,3,2,4,1,1.0,40.0,1.0,-9.0,4.0,4244,4.0,22705.0,2110.0 +2641105,2641106,17.0,1070144,4,2,7,1,1.0,24.0,6.0,13.0,4.0,44511,5.0,22705.0,2110.0 +2641106,2641107,6.0,1070144,5,2,7,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22705.0,2110.0 +2641107,2641108,45.0,1070145,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22677.0,2107.0 +2641108,2641109,42.0,1070145,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22677.0,2107.0 +2641109,2641110,15.0,1070145,3,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22677.0,2107.0 +2641110,2641111,11.0,1070145,4,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22677.0,2107.0 +2641111,2641112,51.0,1070146,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5617Z,12.0,22679.0,2107.0 +2641112,2641113,47.0,1070146,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,5617Z,12.0,22679.0,2107.0 +2641113,2641114,17.0,1070146,3,2,2,1,1.0,9.0,6.0,13.0,4.0,5617Z,12.0,22679.0,2107.0 +2641114,2641115,13.0,1070146,4,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22679.0,2107.0 +2641115,2641116,51.0,1070147,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5617Z,12.0,22676.0,2107.0 +2641116,2641117,47.0,1070147,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,5617Z,12.0,22676.0,2107.0 +2641117,2641118,17.0,1070147,3,2,2,1,1.0,9.0,6.0,13.0,4.0,5617Z,12.0,22676.0,2107.0 +2641118,2641119,13.0,1070147,4,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22676.0,2107.0 +2641119,2641120,51.0,1070148,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5617Z,12.0,22694.0,2110.0 +2641120,2641121,47.0,1070148,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,5617Z,12.0,22694.0,2110.0 +2641121,2641122,17.0,1070148,3,2,2,1,1.0,9.0,6.0,13.0,4.0,5617Z,12.0,22694.0,2110.0 +2641122,2641123,13.0,1070148,4,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22694.0,2110.0 +2641123,2641124,51.0,1070149,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5617Z,12.0,22677.0,2107.0 +2641124,2641125,47.0,1070149,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,5617Z,12.0,22677.0,2107.0 +2641125,2641126,17.0,1070149,3,2,2,1,1.0,9.0,6.0,13.0,4.0,5617Z,12.0,22677.0,2107.0 +2641126,2641127,13.0,1070149,4,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22677.0,2107.0 +2641127,2641128,46.0,1070150,1,2,0,1,1.0,18.0,1.0,-9.0,4.0,23,2.0,22692.0,2110.0 +2641128,2641129,7.0,1070150,2,2,15,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22692.0,2110.0 +2641129,2641130,46.0,1070151,1,2,0,1,1.0,18.0,1.0,-9.0,4.0,23,2.0,22705.0,2110.0 +2641130,2641131,7.0,1070151,2,2,15,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22705.0,2110.0 +2641131,2641132,40.0,1070152,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22675.0,2107.0 +2641132,2641133,40.0,1070153,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22697.0,2110.0 +2641133,2641134,25.0,1070154,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641134,2641135,24.0,1070154,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641135,2641136,23.0,1070154,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641136,2641137,22.0,1070154,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641137,2641138,25.0,1070155,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22705.0,2110.0 +2641138,2641139,24.0,1070155,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22705.0,2110.0 +2641139,2641140,23.0,1070155,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22705.0,2110.0 +2641140,2641141,22.0,1070155,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22705.0,2110.0 +2641141,2641142,25.0,1070156,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22694.0,2110.0 +2641142,2641143,24.0,1070156,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22694.0,2110.0 +2641143,2641144,23.0,1070156,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22694.0,2110.0 +2641144,2641145,22.0,1070156,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22694.0,2110.0 +2641145,2641146,25.0,1070157,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641146,2641147,24.0,1070157,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641147,2641148,23.0,1070157,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641148,2641149,22.0,1070157,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641149,2641150,25.0,1070158,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22702.0,2110.0 +2641150,2641151,24.0,1070158,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22702.0,2110.0 +2641151,2641152,23.0,1070158,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22702.0,2110.0 +2641152,2641153,22.0,1070158,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22702.0,2110.0 +2641153,2641154,25.0,1070159,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22694.0,2110.0 +2641154,2641155,24.0,1070159,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22694.0,2110.0 +2641155,2641156,23.0,1070159,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22694.0,2110.0 +2641156,2641157,22.0,1070159,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22694.0,2110.0 +2641157,2641158,25.0,1070160,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641158,2641159,24.0,1070160,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641159,2641160,23.0,1070160,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641160,2641161,22.0,1070160,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22678.0,2107.0 +2641161,2641162,25.0,1070161,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22705.0,2110.0 +2641162,2641163,24.0,1070161,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22705.0,2110.0 +2641163,2641164,23.0,1070161,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22705.0,2110.0 +2641164,2641165,22.0,1070161,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22705.0,2110.0 +2641165,2641166,25.0,1070162,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22675.0,2107.0 +2641166,2641167,20.0,1070162,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22675.0,2107.0 +2641167,2641168,25.0,1070163,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22677.0,2107.0 +2641168,2641169,20.0,1070163,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22677.0,2107.0 +2641169,2641170,34.0,1070164,1,1,0,4,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22710.0,2110.0 +2641170,2641171,31.0,1070164,2,1,5,4,1.0,40.0,1.0,15.0,4.0,5111Z,8.0,22710.0,2110.0 +2641171,2641172,34.0,1070165,1,1,0,4,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22676.0,2107.0 +2641172,2641173,31.0,1070165,2,1,5,4,1.0,40.0,1.0,15.0,4.0,5111Z,8.0,22676.0,2107.0 +2641173,2641174,44.0,1070166,1,2,0,4,1.0,50.0,1.0,-9.0,4.0,5413,10.0,22693.0,2110.0 +2641174,2641175,44.0,1070166,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22693.0,2110.0 +2641175,2641176,15.0,1070166,3,1,3,4,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22693.0,2110.0 +2641176,2641177,10.0,1070166,4,1,3,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22693.0,2110.0 +2641177,2641178,30.0,1070167,1,2,0,4,1.0,38.0,2.0,-9.0,4.0,6212,14.0,22697.0,2110.0 +2641178,2641179,31.0,1070167,2,1,1,1,1.0,80.0,1.0,-9.0,4.0,622M,15.0,22697.0,2110.0 +2641179,2641180,1.0,1070167,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22697.0,2110.0 +2641180,2641181,30.0,1070168,1,2,0,4,1.0,38.0,2.0,-9.0,4.0,6212,14.0,22692.0,2110.0 +2641181,2641182,31.0,1070168,2,1,1,1,1.0,80.0,1.0,-9.0,4.0,622M,15.0,22692.0,2110.0 +2641182,2641183,1.0,1070168,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22692.0,2110.0 +2641183,2641184,30.0,1070169,1,2,0,4,1.0,38.0,2.0,-9.0,4.0,6212,14.0,22676.0,2107.0 +2641184,2641185,31.0,1070169,2,1,1,1,1.0,80.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2641185,2641186,1.0,1070169,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22676.0,2107.0 +2641186,2641187,29.0,1070170,1,2,0,4,2.0,48.0,1.0,-9.0,4.0,611M1,13.0,22675.0,2107.0 +2641187,2641188,29.0,1070170,2,1,1,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2641188,2641189,0.0,1070170,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22675.0,2107.0 +2641189,2641190,29.0,1070171,1,2,0,4,2.0,48.0,1.0,-9.0,4.0,611M1,13.0,22675.0,2107.0 +2641190,2641191,29.0,1070171,2,1,1,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22675.0,2107.0 +2641191,2641192,0.0,1070171,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22675.0,2107.0 +2641192,2641193,29.0,1070172,1,2,0,4,2.0,48.0,1.0,-9.0,4.0,611M1,13.0,22677.0,2107.0 +2641193,2641194,29.0,1070172,2,1,1,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22677.0,2107.0 +2641194,2641195,0.0,1070172,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22677.0,2107.0 +2641195,2641196,41.0,1070173,1,2,0,4,1.0,56.0,1.0,-9.0,4.0,5613,12.0,22709.0,2110.0 +2641196,2641197,39.0,1070173,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22709.0,2110.0 +2641197,2641198,3.0,1070173,3,2,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22709.0,2110.0 +2641198,2641199,41.0,1070174,1,2,0,4,1.0,56.0,1.0,-9.0,4.0,5613,12.0,22676.0,2107.0 +2641199,2641200,39.0,1070174,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2641200,2641201,3.0,1070174,3,2,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22676.0,2107.0 +2641201,2641202,41.0,1070175,1,2,0,4,1.0,56.0,1.0,-9.0,4.0,5613,12.0,22678.0,2107.0 +2641202,2641203,39.0,1070175,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2641203,2641204,3.0,1070175,3,2,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22678.0,2107.0 +2641204,2641205,41.0,1070176,1,2,0,4,1.0,56.0,1.0,-9.0,4.0,5613,12.0,22694.0,2110.0 +2641205,2641206,39.0,1070176,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2641206,2641207,3.0,1070176,3,2,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22694.0,2110.0 +2641207,2641208,29.0,1070177,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22675.0,2107.0 +2641208,2641209,27.0,1070177,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,611M3,13.0,22675.0,2107.0 +2641209,2641210,29.0,1070178,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2641210,2641211,27.0,1070178,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,611M3,13.0,22676.0,2107.0 +2641211,2641212,29.0,1070179,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22679.0,2107.0 +2641212,2641213,27.0,1070179,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,611M3,13.0,22679.0,2107.0 +2641213,2641214,39.0,1070180,1,1,0,2,1.0,30.0,1.0,-9.0,4.0,621M,14.0,22676.0,2107.0 +2641214,2641215,25.0,1070180,2,2,12,1,1.0,30.0,3.0,15.0,4.0,622M,15.0,22676.0,2107.0 +2641215,2641216,39.0,1070181,1,1,0,2,1.0,30.0,1.0,-9.0,4.0,621M,14.0,22691.0,2110.0 +2641216,2641217,25.0,1070181,2,2,12,1,1.0,30.0,3.0,15.0,4.0,622M,15.0,22691.0,2110.0 +2641217,2641218,39.0,1070182,1,1,0,2,1.0,30.0,1.0,-9.0,4.0,621M,14.0,22675.0,2107.0 +2641218,2641219,25.0,1070182,2,2,12,1,1.0,30.0,3.0,15.0,4.0,622M,15.0,22675.0,2107.0 +2641219,2641220,39.0,1070183,1,1,0,2,1.0,30.0,1.0,-9.0,4.0,621M,14.0,22706.0,2110.0 +2641220,2641221,25.0,1070183,2,2,12,1,1.0,30.0,3.0,15.0,4.0,622M,15.0,22706.0,2110.0 +2641221,2641222,44.0,1070184,1,1,0,2,1.0,60.0,1.0,-9.0,2.0,722Z,16.0,22697.0,2110.0 +2641222,2641223,34.0,1070184,2,2,15,1,1.0,45.0,4.0,-9.0,4.0,722Z,16.0,22697.0,2110.0 +2641223,2641224,44.0,1070185,1,1,0,2,1.0,60.0,1.0,-9.0,2.0,722Z,16.0,22698.0,2110.0 +2641224,2641225,34.0,1070185,2,2,15,1,1.0,45.0,4.0,-9.0,4.0,722Z,16.0,22698.0,2110.0 +2641225,2641226,44.0,1070186,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22676.0,2107.0 +2641226,2641227,40.0,1070186,2,2,1,2,1.0,35.0,1.0,-9.0,4.0,6211,14.0,22676.0,2107.0 +2641227,2641228,6.0,1070186,3,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22676.0,2107.0 +2641228,2641229,5.0,1070186,4,2,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22676.0,2107.0 +2641229,2641230,3.0,1070186,5,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22676.0,2107.0 +2641230,2641231,42.0,1070187,1,2,0,3,1.0,20.0,1.0,-9.0,4.0,621M,14.0,22678.0,2107.0 +2641231,2641232,46.0,1070187,2,1,1,4,1.0,60.0,1.0,-9.0,4.0,621M,14.0,22678.0,2107.0 +2641232,2641233,16.0,1070187,3,2,2,4,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22678.0,2107.0 +2641233,2641234,11.0,1070187,4,2,2,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22678.0,2107.0 +2641234,2641235,9.0,1070187,5,2,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22678.0,2107.0 +2641235,2641236,42.0,1070188,1,2,0,3,1.0,20.0,1.0,-9.0,4.0,621M,14.0,22697.0,2110.0 +2641236,2641237,46.0,1070188,2,1,1,4,1.0,60.0,1.0,-9.0,4.0,621M,14.0,22697.0,2110.0 +2641237,2641238,16.0,1070188,3,2,2,4,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22697.0,2110.0 +2641238,2641239,11.0,1070188,4,2,2,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22697.0,2110.0 +2641239,2641240,9.0,1070188,5,2,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22697.0,2110.0 +2641240,2641241,42.0,1070189,1,2,0,3,1.0,20.0,1.0,-9.0,4.0,621M,14.0,22702.0,2110.0 +2641241,2641242,46.0,1070189,2,1,1,4,1.0,60.0,1.0,-9.0,4.0,621M,14.0,22702.0,2110.0 +2641242,2641243,16.0,1070189,3,2,2,4,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22702.0,2110.0 +2641243,2641244,11.0,1070189,4,2,2,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22702.0,2110.0 +2641244,2641245,9.0,1070189,5,2,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22702.0,2110.0 +2641245,2641246,42.0,1070190,1,2,0,3,1.0,20.0,1.0,-9.0,4.0,621M,14.0,22697.0,2110.0 +2641246,2641247,46.0,1070190,2,1,1,4,1.0,60.0,1.0,-9.0,4.0,621M,14.0,22697.0,2110.0 +2641247,2641248,16.0,1070190,3,2,2,4,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22697.0,2110.0 +2641248,2641249,11.0,1070190,4,2,2,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22697.0,2110.0 +2641249,2641250,9.0,1070190,5,2,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22697.0,2110.0 +2641250,2641251,42.0,1070191,1,2,0,3,1.0,20.0,1.0,-9.0,4.0,621M,14.0,22700.0,2110.0 +2641251,2641252,46.0,1070191,2,1,1,4,1.0,60.0,1.0,-9.0,4.0,621M,14.0,22700.0,2110.0 +2641252,2641253,16.0,1070191,3,2,2,4,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22700.0,2110.0 +2641253,2641254,11.0,1070191,4,2,2,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22700.0,2110.0 +2641254,2641255,9.0,1070191,5,2,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22700.0,2110.0 +2641255,2641256,37.0,1070192,1,1,0,3,1.0,50.0,2.0,-9.0,4.0,23,2.0,22705.0,2110.0 +2641256,2641257,34.0,1070192,2,2,1,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2641257,2641258,9.0,1070192,3,1,2,3,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22705.0,2110.0 +2641258,2641259,4.0,1070192,4,1,2,3,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22705.0,2110.0 +2641259,2641260,37.0,1070193,1,1,0,3,1.0,50.0,2.0,-9.0,4.0,23,2.0,22700.0,2110.0 +2641260,2641261,34.0,1070193,2,2,1,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22700.0,2110.0 +2641261,2641262,9.0,1070193,3,1,2,3,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22700.0,2110.0 +2641262,2641263,4.0,1070193,4,1,2,3,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22700.0,2110.0 +2641263,2641264,42.0,1070194,1,1,0,1,1.0,35.0,1.0,-9.0,2.0,23,2.0,22700.0,2110.0 +2641264,2641265,38.0,1070194,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22700.0,2110.0 +2641265,2641266,27.0,1070195,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,51913,8.0,22698.0,2110.0 +2641266,2641267,25.0,1070195,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22698.0,2110.0 +2641267,2641268,37.0,1070196,1,1,0,1,1.0,47.0,1.0,-9.0,4.0,3113,3.0,22700.0,2110.0 +2641268,2641269,34.0,1070196,2,2,1,1,1.0,63.0,1.0,16.0,4.0,3399ZM,3.0,22700.0,2110.0 +2641269,2641270,30.0,1070197,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44611,5.0,22676.0,2107.0 +2641270,2641271,30.0,1070198,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44611,5.0,22693.0,2110.0 +2641271,2641272,38.0,1070199,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22677.0,2107.0 +2641272,2641273,36.0,1070199,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,6211,14.0,22677.0,2107.0 +2641273,2641274,29.0,1070200,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,221MP,7.0,22694.0,2110.0 +2641274,2641275,37.0,1070201,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22697.0,2110.0 +2641275,2641276,28.0,1070202,1,1,0,1,1.0,40.0,1.0,15.0,2.0,5613,12.0,22702.0,2110.0 +2641276,2641277,37.0,1070203,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22694.0,2110.0 +2641277,2641278,42.0,1070204,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22679.0,2107.0 +2641278,2641279,37.0,1070205,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22694.0,2110.0 +2641279,2641280,42.0,1070206,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22678.0,2107.0 +2641280,2641281,42.0,1070207,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22700.0,2110.0 +2641281,2641282,42.0,1070208,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22697.0,2110.0 +2641282,2641283,37.0,1070209,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22676.0,2107.0 +2641283,2641284,42.0,1070210,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22675.0,2107.0 +2641284,2641285,37.0,1070211,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22691.0,2110.0 +2641285,2641286,42.0,1070212,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22706.0,2110.0 +2641286,2641287,37.0,1070213,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22697.0,2110.0 +2641287,2641288,28.0,1070214,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22676.0,2107.0 +2641288,2641289,24.0,1070214,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22676.0,2107.0 +2641289,2641290,33.0,1070215,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22676.0,2107.0 +2641290,2641291,33.0,1070216,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22706.0,2110.0 +2641291,2641292,33.0,1070217,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22709.0,2110.0 +2641292,2641293,33.0,1070218,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22676.0,2107.0 +2641293,2641294,39.0,1070219,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5112,8.0,22705.0,2110.0 +2641294,2641295,35.0,1070220,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5111Z,8.0,22708.0,2110.0 +2641295,2641296,35.0,1070221,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5111Z,8.0,22694.0,2110.0 +2641296,2641297,35.0,1070222,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5111Z,8.0,22697.0,2110.0 +2641297,2641298,39.0,1070223,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5112,8.0,22677.0,2107.0 +2641298,2641299,39.0,1070224,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5112,8.0,22676.0,2107.0 +2641299,2641300,39.0,1070225,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5112,8.0,22677.0,2107.0 +2641300,2641301,39.0,1070226,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5112,8.0,22681.0,2107.0 +2641301,2641302,39.0,1070227,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5112,8.0,22676.0,2107.0 +2641302,2641303,35.0,1070228,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5111Z,8.0,22692.0,2110.0 +2641303,2641304,35.0,1070229,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5111Z,8.0,22679.0,2107.0 +2641304,2641305,35.0,1070230,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5111Z,8.0,22694.0,2110.0 +2641305,2641306,35.0,1070231,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5111Z,8.0,22694.0,2110.0 +2641306,2641307,40.0,1070232,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,336M,3.0,22676.0,2107.0 +2641307,2641308,40.0,1070233,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,336M,3.0,22676.0,2107.0 +2641308,2641309,27.0,1070234,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,336M,3.0,22676.0,2107.0 +2641309,2641310,33.0,1070235,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,332MZ,3.0,22697.0,2110.0 +2641310,2641311,33.0,1070236,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,332MZ,3.0,22705.0,2110.0 +2641311,2641312,40.0,1070237,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,336M,3.0,22706.0,2110.0 +2641312,2641313,38.0,1070238,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22676.0,2107.0 +2641313,2641314,44.0,1070239,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22702.0,2110.0 +2641314,2641315,44.0,1070240,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22702.0,2110.0 +2641315,2641316,44.0,1070241,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22702.0,2110.0 +2641316,2641317,26.0,1070242,1,1,0,1,1.0,34.0,1.0,15.0,4.0,4523,5.0,22676.0,2107.0 +2641317,2641318,25.0,1070242,2,1,12,1,1.0,36.0,1.0,15.0,4.0,45221,5.0,22676.0,2107.0 +2641318,2641319,39.0,1070243,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22679.0,2107.0 +2641319,2641320,37.0,1070244,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22675.0,2107.0 +2641320,2641321,25.0,1070245,1,1,0,1,1.0,55.0,1.0,16.0,4.0,611M1,13.0,22676.0,2107.0 +2641321,2641322,27.0,1070245,2,2,1,1,1.0,60.0,6.0,16.0,4.0,611M1,13.0,22676.0,2107.0 +2641322,2641323,30.0,1070246,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641323,2641324,30.0,1070247,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22694.0,2110.0 +2641324,2641325,30.0,1070248,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22694.0,2110.0 +2641325,2641326,30.0,1070249,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22700.0,2110.0 +2641326,2641327,30.0,1070250,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641327,2641328,30.0,1070251,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22705.0,2110.0 +2641328,2641329,30.0,1070252,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22692.0,2110.0 +2641329,2641330,30.0,1070253,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22691.0,2110.0 +2641330,2641331,30.0,1070254,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22676.0,2107.0 +2641331,2641332,27.0,1070255,1,2,0,1,1.0,40.0,3.0,15.0,4.0,44511,5.0,22678.0,2107.0 +2641332,2641333,53.0,1070255,2,1,1,1,1.0,32.0,2.0,-9.0,2.0,44511,5.0,22678.0,2107.0 +2641333,2641334,38.0,1070256,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,6211,14.0,22705.0,2110.0 +2641334,2641335,36.0,1070256,2,2,1,1,2.0,40.0,3.0,-9.0,4.0,622M,15.0,22705.0,2110.0 +2641335,2641336,5.0,1070256,3,2,2,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22705.0,2110.0 +2641336,2641337,2.0,1070256,4,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22705.0,2110.0 +2641337,2641338,0.0,1070256,5,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22705.0,2110.0 +2641338,2641339,36.0,1070257,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22675.0,2107.0 +2641339,2641340,36.0,1070257,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,5416,10.0,22675.0,2107.0 +2641340,2641341,10.0,1070257,3,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22675.0,2107.0 +2641341,2641342,4.0,1070257,4,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22675.0,2107.0 +2641342,2641343,1.0,1070257,5,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22675.0,2107.0 +2641343,2641344,36.0,1070258,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22677.0,2107.0 +2641344,2641345,36.0,1070258,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,5416,10.0,22677.0,2107.0 +2641345,2641346,10.0,1070258,3,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22677.0,2107.0 +2641346,2641347,4.0,1070258,4,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22677.0,2107.0 +2641347,2641348,1.0,1070258,5,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22677.0,2107.0 +2641348,2641349,36.0,1070259,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22676.0,2107.0 +2641349,2641350,36.0,1070259,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,5416,10.0,22676.0,2107.0 +2641350,2641351,10.0,1070259,3,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22676.0,2107.0 +2641351,2641352,4.0,1070259,4,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22676.0,2107.0 +2641352,2641353,1.0,1070259,5,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22676.0,2107.0 +2641353,2641354,36.0,1070260,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22675.0,2107.0 +2641354,2641355,36.0,1070260,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,5416,10.0,22675.0,2107.0 +2641355,2641356,10.0,1070260,3,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22675.0,2107.0 +2641356,2641357,4.0,1070260,4,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22675.0,2107.0 +2641357,2641358,1.0,1070260,5,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22675.0,2107.0 +2641358,2641359,37.0,1070261,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22694.0,2110.0 +2641359,2641360,38.0,1070261,2,2,1,1,1.0,38.0,3.0,16.0,4.0,6111,13.0,22694.0,2110.0 +2641360,2641361,12.0,1070261,3,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22694.0,2110.0 +2641361,2641362,10.0,1070261,4,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22694.0,2110.0 +2641362,2641363,4.0,1070261,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22694.0,2110.0 +2641363,2641364,37.0,1070262,1,2,0,1,1.0,24.0,1.0,-9.0,4.0,5415,10.0,22697.0,2110.0 +2641364,2641365,42.0,1070262,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22697.0,2110.0 +2641365,2641366,4.0,1070262,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22697.0,2110.0 +2641366,2641367,2.0,1070262,4,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22697.0,2110.0 +2641367,2641368,40.0,1070263,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22698.0,2110.0 +2641368,2641369,39.0,1070263,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22698.0,2110.0 +2641369,2641370,10.0,1070263,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22698.0,2110.0 +2641370,2641371,5.0,1070263,4,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22698.0,2110.0 +2641371,2641372,61.0,1070263,5,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22698.0,2110.0 +2641372,2641373,40.0,1070264,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22678.0,2107.0 +2641373,2641374,39.0,1070264,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22678.0,2107.0 +2641374,2641375,10.0,1070264,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22678.0,2107.0 +2641375,2641376,5.0,1070264,4,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22678.0,2107.0 +2641376,2641377,61.0,1070264,5,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2641377,2641378,40.0,1070265,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22702.0,2110.0 +2641378,2641379,39.0,1070265,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22702.0,2110.0 +2641379,2641380,10.0,1070265,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22702.0,2110.0 +2641380,2641381,5.0,1070265,4,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22702.0,2110.0 +2641381,2641382,61.0,1070265,5,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2641382,2641383,40.0,1070266,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22678.0,2107.0 +2641383,2641384,39.0,1070266,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22678.0,2107.0 +2641384,2641385,10.0,1070266,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22678.0,2107.0 +2641385,2641386,5.0,1070266,4,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22678.0,2107.0 +2641386,2641387,61.0,1070266,5,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22678.0,2107.0 +2641387,2641388,40.0,1070267,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22676.0,2107.0 +2641388,2641389,39.0,1070267,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22676.0,2107.0 +2641389,2641390,10.0,1070267,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22676.0,2107.0 +2641390,2641391,5.0,1070267,4,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22676.0,2107.0 +2641391,2641392,61.0,1070267,5,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2641392,2641393,38.0,1070268,1,1,0,1,1.0,15.0,1.0,-9.0,4.0,3279,3.0,22693.0,2110.0 +2641393,2641394,2.0,1070268,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22693.0,2110.0 +2641394,2641395,0.0,1070268,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22693.0,2110.0 +2641395,2641396,0.0,1070268,4,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22693.0,2110.0 +2641396,2641397,31.0,1070268,5,2,13,1,1.0,55.0,1.0,-9.0,4.0,3115,3.0,22693.0,2110.0 +2641397,2641398,42.0,1070269,1,1,0,1,1.0,45.0,2.0,-9.0,4.0,56173,12.0,22707.0,2110.0 +2641398,2641399,10.0,1070269,2,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22707.0,2110.0 +2641399,2641400,8.0,1070269,3,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22707.0,2110.0 +2641400,2641401,35.0,1070269,4,2,13,1,1.0,43.0,1.0,-9.0,4.0,5415,10.0,22707.0,2110.0 +2641401,2641402,40.0,1070270,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22702.0,2110.0 +2641402,2641403,26.0,1070270,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22702.0,2110.0 +2641403,2641404,16.0,1070270,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22702.0,2110.0 +2641404,2641405,0.0,1070270,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22702.0,2110.0 +2641405,2641406,68.0,1070270,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22702.0,2110.0 +2641406,2641407,57.0,1070270,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2641407,2641408,40.0,1070271,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22697.0,2110.0 +2641408,2641409,26.0,1070271,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22697.0,2110.0 +2641409,2641410,16.0,1070271,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22697.0,2110.0 +2641410,2641411,0.0,1070271,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22697.0,2110.0 +2641411,2641412,68.0,1070271,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22697.0,2110.0 +2641412,2641413,57.0,1070271,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2641413,2641414,40.0,1070272,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22694.0,2110.0 +2641414,2641415,26.0,1070272,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22694.0,2110.0 +2641415,2641416,16.0,1070272,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22694.0,2110.0 +2641416,2641417,0.0,1070272,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22694.0,2110.0 +2641417,2641418,68.0,1070272,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22694.0,2110.0 +2641418,2641419,57.0,1070272,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2641419,2641420,40.0,1070273,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22692.0,2110.0 +2641420,2641421,26.0,1070273,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22692.0,2110.0 +2641421,2641422,16.0,1070273,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22692.0,2110.0 +2641422,2641423,0.0,1070273,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22692.0,2110.0 +2641423,2641424,68.0,1070273,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22692.0,2110.0 +2641424,2641425,57.0,1070273,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22692.0,2110.0 +2641425,2641426,40.0,1070274,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22675.0,2107.0 +2641426,2641427,26.0,1070274,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22675.0,2107.0 +2641427,2641428,16.0,1070274,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22675.0,2107.0 +2641428,2641429,0.0,1070274,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22675.0,2107.0 +2641429,2641430,68.0,1070274,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22675.0,2107.0 +2641430,2641431,57.0,1070274,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2641431,2641432,40.0,1070275,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22676.0,2107.0 +2641432,2641433,26.0,1070275,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22676.0,2107.0 +2641433,2641434,16.0,1070275,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22676.0,2107.0 +2641434,2641435,0.0,1070275,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22676.0,2107.0 +2641435,2641436,68.0,1070275,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22676.0,2107.0 +2641436,2641437,57.0,1070275,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2641437,2641438,40.0,1070276,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22705.0,2110.0 +2641438,2641439,26.0,1070276,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22705.0,2110.0 +2641439,2641440,16.0,1070276,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22705.0,2110.0 +2641440,2641441,0.0,1070276,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22705.0,2110.0 +2641441,2641442,68.0,1070276,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22705.0,2110.0 +2641442,2641443,57.0,1070276,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22705.0,2110.0 +2641443,2641444,40.0,1070277,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22702.0,2110.0 +2641444,2641445,26.0,1070277,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22702.0,2110.0 +2641445,2641446,16.0,1070277,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22702.0,2110.0 +2641446,2641447,0.0,1070277,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22702.0,2110.0 +2641447,2641448,68.0,1070277,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22702.0,2110.0 +2641448,2641449,57.0,1070277,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2641449,2641450,40.0,1070278,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22702.0,2110.0 +2641450,2641451,26.0,1070278,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22702.0,2110.0 +2641451,2641452,16.0,1070278,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22702.0,2110.0 +2641452,2641453,0.0,1070278,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22702.0,2110.0 +2641453,2641454,68.0,1070278,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22702.0,2110.0 +2641454,2641455,57.0,1070278,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2641455,2641456,40.0,1070279,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22698.0,2110.0 +2641456,2641457,26.0,1070279,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22698.0,2110.0 +2641457,2641458,16.0,1070279,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22698.0,2110.0 +2641458,2641459,0.0,1070279,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22698.0,2110.0 +2641459,2641460,68.0,1070279,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22698.0,2110.0 +2641460,2641461,57.0,1070279,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22698.0,2110.0 +2641461,2641462,40.0,1070280,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22697.0,2110.0 +2641462,2641463,26.0,1070280,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22697.0,2110.0 +2641463,2641464,16.0,1070280,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22697.0,2110.0 +2641464,2641465,0.0,1070280,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22697.0,2110.0 +2641465,2641466,68.0,1070280,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22697.0,2110.0 +2641466,2641467,57.0,1070280,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2641467,2641468,40.0,1070281,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22677.0,2107.0 +2641468,2641469,26.0,1070281,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22677.0,2107.0 +2641469,2641470,16.0,1070281,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22677.0,2107.0 +2641470,2641471,0.0,1070281,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22677.0,2107.0 +2641471,2641472,68.0,1070281,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22677.0,2107.0 +2641472,2641473,57.0,1070281,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22677.0,2107.0 +2641473,2641474,40.0,1070282,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22675.0,2107.0 +2641474,2641475,26.0,1070282,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22675.0,2107.0 +2641475,2641476,16.0,1070282,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22675.0,2107.0 +2641476,2641477,0.0,1070282,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22675.0,2107.0 +2641477,2641478,68.0,1070282,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22675.0,2107.0 +2641478,2641479,57.0,1070282,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2641479,2641480,40.0,1070283,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22697.0,2110.0 +2641480,2641481,26.0,1070283,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22697.0,2110.0 +2641481,2641482,16.0,1070283,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22697.0,2110.0 +2641482,2641483,0.0,1070283,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22697.0,2110.0 +2641483,2641484,68.0,1070283,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22697.0,2110.0 +2641484,2641485,57.0,1070283,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2641485,2641486,40.0,1070284,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22675.0,2107.0 +2641486,2641487,26.0,1070284,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22675.0,2107.0 +2641487,2641488,16.0,1070284,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22675.0,2107.0 +2641488,2641489,0.0,1070284,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22675.0,2107.0 +2641489,2641490,68.0,1070284,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22675.0,2107.0 +2641490,2641491,57.0,1070284,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2641491,2641492,40.0,1070285,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22702.0,2110.0 +2641492,2641493,26.0,1070285,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22702.0,2110.0 +2641493,2641494,16.0,1070285,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22702.0,2110.0 +2641494,2641495,0.0,1070285,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22702.0,2110.0 +2641495,2641496,68.0,1070285,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22702.0,2110.0 +2641496,2641497,57.0,1070285,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2641497,2641498,40.0,1070286,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22679.0,2107.0 +2641498,2641499,26.0,1070286,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22679.0,2107.0 +2641499,2641500,16.0,1070286,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22679.0,2107.0 +2641500,2641501,0.0,1070286,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22679.0,2107.0 +2641501,2641502,68.0,1070286,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22679.0,2107.0 +2641502,2641503,57.0,1070286,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22679.0,2107.0 +2641503,2641504,40.0,1070287,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22708.0,2110.0 +2641504,2641505,26.0,1070287,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22708.0,2110.0 +2641505,2641506,16.0,1070287,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22708.0,2110.0 +2641506,2641507,0.0,1070287,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22708.0,2110.0 +2641507,2641508,68.0,1070287,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22708.0,2110.0 +2641508,2641509,57.0,1070287,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22708.0,2110.0 +2641509,2641510,40.0,1070288,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22697.0,2110.0 +2641510,2641511,26.0,1070288,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22697.0,2110.0 +2641511,2641512,16.0,1070288,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22697.0,2110.0 +2641512,2641513,0.0,1070288,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22697.0,2110.0 +2641513,2641514,68.0,1070288,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22697.0,2110.0 +2641514,2641515,57.0,1070288,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22697.0,2110.0 +2641515,2641516,40.0,1070289,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22675.0,2107.0 +2641516,2641517,26.0,1070289,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22675.0,2107.0 +2641517,2641518,16.0,1070289,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22675.0,2107.0 +2641518,2641519,0.0,1070289,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22675.0,2107.0 +2641519,2641520,68.0,1070289,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22675.0,2107.0 +2641520,2641521,57.0,1070289,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2641521,2641522,40.0,1070290,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22694.0,2110.0 +2641522,2641523,26.0,1070290,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22694.0,2110.0 +2641523,2641524,16.0,1070290,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22694.0,2110.0 +2641524,2641525,0.0,1070290,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22694.0,2110.0 +2641525,2641526,68.0,1070290,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22694.0,2110.0 +2641526,2641527,57.0,1070290,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22694.0,2110.0 +2641527,2641528,40.0,1070291,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22700.0,2110.0 +2641528,2641529,26.0,1070291,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22700.0,2110.0 +2641529,2641530,16.0,1070291,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22700.0,2110.0 +2641530,2641531,0.0,1070291,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22700.0,2110.0 +2641531,2641532,68.0,1070291,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22700.0,2110.0 +2641532,2641533,57.0,1070291,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22700.0,2110.0 +2641533,2641534,40.0,1070292,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22676.0,2107.0 +2641534,2641535,26.0,1070292,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22676.0,2107.0 +2641535,2641536,16.0,1070292,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22676.0,2107.0 +2641536,2641537,0.0,1070292,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22676.0,2107.0 +2641537,2641538,68.0,1070292,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22676.0,2107.0 +2641538,2641539,57.0,1070292,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2641539,2641540,40.0,1070293,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22675.0,2107.0 +2641540,2641541,26.0,1070293,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22675.0,2107.0 +2641541,2641542,16.0,1070293,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22675.0,2107.0 +2641542,2641543,0.0,1070293,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22675.0,2107.0 +2641543,2641544,68.0,1070293,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22675.0,2107.0 +2641544,2641545,57.0,1070293,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22675.0,2107.0 +2641545,2641546,43.0,1070294,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22681.0,2107.0 +2641546,2641547,44.0,1070294,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22681.0,2107.0 +2641547,2641548,23.0,1070294,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22681.0,2107.0 +2641548,2641549,19.0,1070294,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22681.0,2107.0 +2641549,2641550,2.0,1070294,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22681.0,2107.0 +2641550,2641551,43.0,1070295,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22693.0,2110.0 +2641551,2641552,44.0,1070295,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22693.0,2110.0 +2641552,2641553,23.0,1070295,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22693.0,2110.0 +2641553,2641554,19.0,1070295,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22693.0,2110.0 +2641554,2641555,2.0,1070295,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22693.0,2110.0 +2641555,2641556,43.0,1070296,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22702.0,2110.0 +2641556,2641557,44.0,1070296,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22702.0,2110.0 +2641557,2641558,23.0,1070296,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22702.0,2110.0 +2641558,2641559,19.0,1070296,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22702.0,2110.0 +2641559,2641560,2.0,1070296,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22702.0,2110.0 +2641560,2641561,43.0,1070297,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22698.0,2110.0 +2641561,2641562,44.0,1070297,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22698.0,2110.0 +2641562,2641563,23.0,1070297,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22698.0,2110.0 +2641563,2641564,19.0,1070297,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22698.0,2110.0 +2641564,2641565,2.0,1070297,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22698.0,2110.0 +2641565,2641566,43.0,1070298,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22706.0,2110.0 +2641566,2641567,44.0,1070298,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22706.0,2110.0 +2641567,2641568,23.0,1070298,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22706.0,2110.0 +2641568,2641569,19.0,1070298,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22706.0,2110.0 +2641569,2641570,2.0,1070298,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22706.0,2110.0 +2641570,2641571,41.0,1070299,1,2,0,1,1.0,15.0,6.0,-9.0,4.0,4481,5.0,22676.0,2107.0 +2641571,2641572,13.0,1070299,2,1,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22676.0,2107.0 +2641572,2641573,2.0,1070299,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22676.0,2107.0 +2641573,2641574,85.0,1070299,4,1,15,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22676.0,2107.0 +2641574,2641575,41.0,1070300,1,2,0,1,1.0,15.0,6.0,-9.0,4.0,4481,5.0,22710.0,2110.0 +2641575,2641576,13.0,1070300,2,1,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22710.0,2110.0 +2641576,2641577,2.0,1070300,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22710.0,2110.0 +2641577,2641578,85.0,1070300,4,1,15,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22710.0,2110.0 +2641578,2641579,41.0,1070301,1,2,0,1,1.0,15.0,6.0,-9.0,4.0,4481,5.0,22680.0,2107.0 +2641579,2641580,13.0,1070301,2,1,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22680.0,2107.0 +2641580,2641581,2.0,1070301,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22680.0,2107.0 +2641581,2641582,85.0,1070301,4,1,15,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22680.0,2107.0 +2641582,2641583,41.0,1070302,1,2,0,1,1.0,15.0,6.0,-9.0,4.0,4481,5.0,22676.0,2107.0 +2641583,2641584,13.0,1070302,2,1,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22676.0,2107.0 +2641584,2641585,2.0,1070302,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22676.0,2107.0 +2641585,2641586,85.0,1070302,4,1,15,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22676.0,2107.0 +2641586,2641587,41.0,1070303,1,2,0,1,1.0,15.0,6.0,-9.0,4.0,4481,5.0,22702.0,2110.0 +2641587,2641588,13.0,1070303,2,1,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22702.0,2110.0 +2641588,2641589,2.0,1070303,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22702.0,2110.0 +2641589,2641590,85.0,1070303,4,1,15,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22702.0,2110.0 +2641590,2641591,41.0,1070304,1,2,0,1,1.0,15.0,6.0,-9.0,4.0,4481,5.0,22676.0,2107.0 +2641591,2641592,13.0,1070304,2,1,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22676.0,2107.0 +2641592,2641593,2.0,1070304,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22676.0,2107.0 +2641593,2641594,85.0,1070304,4,1,15,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22676.0,2107.0 +2641594,2641595,41.0,1070305,1,2,0,1,1.0,15.0,6.0,-9.0,4.0,4481,5.0,22675.0,2107.0 +2641595,2641596,13.0,1070305,2,1,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22675.0,2107.0 +2641596,2641597,2.0,1070305,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22675.0,2107.0 +2641597,2641598,85.0,1070305,4,1,15,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22675.0,2107.0 +2641598,2641599,41.0,1070306,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22679.0,2107.0 +2641599,2641600,31.0,1070306,2,2,1,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22679.0,2107.0 +2641600,2641601,6.0,1070306,3,2,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22679.0,2107.0 +2641601,2641602,2.0,1070306,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22679.0,2107.0 +2641602,2641603,37.0,1070307,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22676.0,2107.0 +2641603,2641604,6.0,1070307,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22676.0,2107.0 +2641604,2641605,37.0,1070308,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22697.0,2110.0 +2641605,2641606,6.0,1070308,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22697.0,2110.0 +2641606,2641607,37.0,1070309,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22693.0,2110.0 +2641607,2641608,6.0,1070309,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22693.0,2110.0 +2641608,2641609,37.0,1070310,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22707.0,2110.0 +2641609,2641610,6.0,1070310,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22707.0,2110.0 +2641610,2641611,37.0,1070311,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22694.0,2110.0 +2641611,2641612,6.0,1070311,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22694.0,2110.0 +2641612,2641613,37.0,1070312,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22694.0,2110.0 +2641613,2641614,6.0,1070312,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22694.0,2110.0 +2641614,2641615,37.0,1070313,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22706.0,2110.0 +2641615,2641616,6.0,1070313,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22706.0,2110.0 +2641616,2641617,37.0,1070314,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22679.0,2107.0 +2641617,2641618,6.0,1070314,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22679.0,2107.0 +2641618,2641619,44.0,1070315,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22676.0,2107.0 +2641619,2641620,14.0,1070315,2,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22676.0,2107.0 +2641620,2641621,9.0,1070315,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22676.0,2107.0 +2641621,2641622,4.0,1070315,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22676.0,2107.0 +2641622,2641623,81.0,1070316,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641623,2641624,53.0,1070316,2,1,2,4,1.0,50.0,1.0,-9.0,4.0,336M,3.0,22715.0,2112.0 +2641624,2641625,56.0,1070316,3,1,9,4,1.0,48.0,1.0,-9.0,4.0,3254,3.0,22715.0,2112.0 +2641625,2641626,81.0,1070317,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641626,2641627,53.0,1070317,2,1,2,4,1.0,50.0,1.0,-9.0,4.0,336M,3.0,22690.0,2110.0 +2641627,2641628,56.0,1070317,3,1,9,4,1.0,48.0,1.0,-9.0,4.0,3254,3.0,22690.0,2110.0 +2641628,2641629,81.0,1070318,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641629,2641630,53.0,1070318,2,1,2,4,1.0,50.0,1.0,-9.0,4.0,336M,3.0,22714.0,2112.0 +2641630,2641631,56.0,1070318,3,1,9,4,1.0,48.0,1.0,-9.0,4.0,3254,3.0,22714.0,2112.0 +2641631,2641632,69.0,1070319,1,1,0,1,6.0,12.0,4.0,-9.0,2.0,6241,14.0,22704.0,2110.0 +2641632,2641633,68.0,1070319,2,2,1,1,1.0,10.0,1.0,-9.0,4.0,611M1,13.0,22704.0,2110.0 +2641633,2641634,33.0,1070319,3,2,2,1,1.0,36.0,1.0,15.0,4.0,622M,15.0,22704.0,2110.0 +2641634,2641635,69.0,1070320,1,1,0,1,6.0,12.0,4.0,-9.0,2.0,6241,14.0,22718.0,2112.0 +2641635,2641636,68.0,1070320,2,2,1,1,1.0,10.0,1.0,-9.0,4.0,611M1,13.0,22718.0,2112.0 +2641636,2641637,33.0,1070320,3,2,2,1,1.0,36.0,1.0,15.0,4.0,622M,15.0,22718.0,2112.0 +2641637,2641638,69.0,1070321,1,1,0,1,6.0,12.0,4.0,-9.0,2.0,6241,14.0,22718.0,2112.0 +2641638,2641639,68.0,1070321,2,2,1,1,1.0,10.0,1.0,-9.0,4.0,611M1,13.0,22718.0,2112.0 +2641639,2641640,33.0,1070321,3,2,2,1,1.0,36.0,1.0,15.0,4.0,622M,15.0,22718.0,2112.0 +2641640,2641641,70.0,1070322,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,4411,5.0,22717.0,2112.0 +2641641,2641642,62.0,1070322,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22717.0,2112.0 +2641642,2641643,70.0,1070323,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,4411,5.0,22714.0,2112.0 +2641643,2641644,62.0,1070323,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22714.0,2112.0 +2641644,2641645,70.0,1070324,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,4411,5.0,22716.0,2112.0 +2641645,2641646,62.0,1070324,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22716.0,2112.0 +2641646,2641647,70.0,1070325,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,4411,5.0,22716.0,2112.0 +2641647,2641648,62.0,1070325,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22716.0,2112.0 +2641648,2641649,70.0,1070326,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,4411,5.0,22690.0,2110.0 +2641649,2641650,62.0,1070326,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22690.0,2110.0 +2641650,2641651,70.0,1070327,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,4411,5.0,22716.0,2112.0 +2641651,2641652,62.0,1070327,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22716.0,2112.0 +2641652,2641653,70.0,1070328,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,4411,5.0,22719.0,2112.0 +2641653,2641654,62.0,1070328,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22719.0,2112.0 +2641654,2641655,70.0,1070329,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22717.0,2112.0 +2641655,2641656,62.0,1070329,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22717.0,2112.0 +2641656,2641657,67.0,1070330,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641657,2641658,64.0,1070330,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641658,2641659,65.0,1070331,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22704.0,2110.0 +2641659,2641660,60.0,1070331,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22704.0,2110.0 +2641660,2641661,65.0,1070332,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22717.0,2112.0 +2641661,2641662,60.0,1070332,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22717.0,2112.0 +2641662,2641663,65.0,1070333,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22715.0,2112.0 +2641663,2641664,60.0,1070333,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22715.0,2112.0 +2641664,2641665,65.0,1070334,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22699.0,2110.0 +2641665,2641666,60.0,1070334,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22699.0,2110.0 +2641666,2641667,65.0,1070335,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22714.0,2112.0 +2641667,2641668,60.0,1070335,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2641668,2641669,65.0,1070336,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22683.0,2108.0 +2641669,2641670,60.0,1070336,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22683.0,2108.0 +2641670,2641671,65.0,1070337,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22704.0,2110.0 +2641671,2641672,60.0,1070337,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22704.0,2110.0 +2641672,2641673,65.0,1070338,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22714.0,2112.0 +2641673,2641674,60.0,1070338,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2641674,2641675,65.0,1070339,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22690.0,2110.0 +2641675,2641676,60.0,1070339,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22690.0,2110.0 +2641676,2641677,65.0,1070340,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22719.0,2112.0 +2641677,2641678,60.0,1070340,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22719.0,2112.0 +2641678,2641679,65.0,1070341,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22716.0,2112.0 +2641679,2641680,60.0,1070341,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22716.0,2112.0 +2641680,2641681,65.0,1070342,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22717.0,2112.0 +2641681,2641682,60.0,1070342,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22717.0,2112.0 +2641682,2641683,65.0,1070343,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22715.0,2112.0 +2641683,2641684,60.0,1070343,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22715.0,2112.0 +2641684,2641685,90.0,1070344,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22714.0,2112.0 +2641685,2641686,86.0,1070344,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641686,2641687,56.0,1070344,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22714.0,2112.0 +2641687,2641688,73.0,1070345,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641688,2641689,57.0,1070345,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,6212,14.0,22714.0,2112.0 +2641689,2641690,73.0,1070346,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641690,2641691,57.0,1070346,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,6212,14.0,22715.0,2112.0 +2641691,2641692,73.0,1070347,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2641692,2641693,57.0,1070347,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,6212,14.0,22699.0,2110.0 +2641693,2641694,65.0,1070348,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2641694,2641695,61.0,1070348,2,1,1,1,1.0,50.0,3.0,-9.0,4.0,23,2.0,22717.0,2112.0 +2641695,2641696,65.0,1070349,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641696,2641697,61.0,1070349,2,1,1,1,1.0,50.0,3.0,-9.0,4.0,23,2.0,22690.0,2110.0 +2641697,2641698,65.0,1070350,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22683.0,2108.0 +2641698,2641699,61.0,1070350,2,1,1,1,1.0,50.0,3.0,-9.0,4.0,23,2.0,22683.0,2108.0 +2641699,2641700,65.0,1070351,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641700,2641701,61.0,1070351,2,1,1,1,1.0,50.0,3.0,-9.0,4.0,23,2.0,22715.0,2112.0 +2641701,2641702,65.0,1070352,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641702,2641703,61.0,1070352,2,1,1,1,1.0,50.0,3.0,-9.0,4.0,23,2.0,22714.0,2112.0 +2641703,2641704,65.0,1070353,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641704,2641705,61.0,1070353,2,1,1,1,1.0,50.0,3.0,-9.0,4.0,23,2.0,22704.0,2110.0 +2641705,2641706,72.0,1070354,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641706,2641707,35.0,1070354,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641707,2641708,72.0,1070355,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641708,2641709,35.0,1070355,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641709,2641710,72.0,1070356,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641710,2641711,35.0,1070356,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641711,2641712,72.0,1070357,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641712,2641713,35.0,1070357,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641713,2641714,72.0,1070358,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641714,2641715,35.0,1070358,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641715,2641716,72.0,1070359,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2641716,2641717,35.0,1070359,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2641717,2641718,72.0,1070360,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2641718,2641719,35.0,1070360,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2641719,2641720,72.0,1070361,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641720,2641721,35.0,1070361,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641721,2641722,72.0,1070362,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2641722,2641723,35.0,1070362,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2641723,2641724,72.0,1070363,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2641724,2641725,35.0,1070363,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2641725,2641726,72.0,1070364,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641726,2641727,35.0,1070364,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641727,2641728,72.0,1070365,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641728,2641729,35.0,1070365,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641729,2641730,72.0,1070366,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2641730,2641731,35.0,1070366,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2641731,2641732,72.0,1070367,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641732,2641733,35.0,1070367,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641733,2641734,72.0,1070368,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641734,2641735,35.0,1070368,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641735,2641736,72.0,1070369,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641736,2641737,35.0,1070369,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641737,2641738,72.0,1070370,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641738,2641739,35.0,1070370,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641739,2641740,72.0,1070371,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641740,2641741,35.0,1070371,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641741,2641742,72.0,1070372,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641742,2641743,35.0,1070372,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641743,2641744,72.0,1070373,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641744,2641745,35.0,1070373,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641745,2641746,72.0,1070374,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641746,2641747,35.0,1070374,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641747,2641748,72.0,1070375,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641748,2641749,35.0,1070375,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641749,2641750,89.0,1070376,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22704.0,2110.0 +2641750,2641751,61.0,1070376,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641751,2641752,89.0,1070377,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22719.0,2112.0 +2641752,2641753,61.0,1070377,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2641753,2641754,89.0,1070378,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22716.0,2112.0 +2641754,2641755,61.0,1070378,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641755,2641756,89.0,1070379,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22682.0,2108.0 +2641756,2641757,61.0,1070379,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22682.0,2108.0 +2641757,2641758,89.0,1070380,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22714.0,2112.0 +2641758,2641759,61.0,1070380,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641759,2641760,89.0,1070381,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22715.0,2112.0 +2641760,2641761,61.0,1070381,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641761,2641762,89.0,1070382,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22715.0,2112.0 +2641762,2641763,61.0,1070382,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641763,2641764,89.0,1070383,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22690.0,2110.0 +2641764,2641765,61.0,1070383,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641765,2641766,77.0,1070384,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641766,2641767,52.0,1070384,2,1,2,1,6.0,30.0,2.0,-9.0,4.0,23,2.0,22715.0,2112.0 +2641767,2641768,77.0,1070385,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641768,2641769,52.0,1070385,2,1,2,1,6.0,30.0,2.0,-9.0,4.0,23,2.0,22715.0,2112.0 +2641769,2641770,65.0,1070386,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,3255,3.0,22699.0,2110.0 +2641770,2641771,42.0,1070386,2,1,2,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2641771,2641772,65.0,1070387,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,3255,3.0,22699.0,2110.0 +2641772,2641773,42.0,1070387,2,1,2,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2641773,2641774,77.0,1070388,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641774,2641775,50.0,1070388,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22718.0,2112.0 +2641775,2641776,77.0,1070389,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2641776,2641777,50.0,1070389,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22699.0,2110.0 +2641777,2641778,77.0,1070390,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2641778,2641779,50.0,1070390,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22719.0,2112.0 +2641779,2641780,77.0,1070391,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641780,2641781,50.0,1070391,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22715.0,2112.0 +2641781,2641782,77.0,1070392,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2641782,2641783,50.0,1070392,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22717.0,2112.0 +2641783,2641784,77.0,1070393,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641784,2641785,50.0,1070393,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22704.0,2110.0 +2641785,2641786,77.0,1070394,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2641786,2641787,50.0,1070394,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22699.0,2110.0 +2641787,2641788,77.0,1070395,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641788,2641789,50.0,1070395,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22704.0,2110.0 +2641789,2641790,77.0,1070396,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2641790,2641791,50.0,1070396,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22717.0,2112.0 +2641791,2641792,77.0,1070397,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641792,2641793,50.0,1070397,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22690.0,2110.0 +2641793,2641794,77.0,1070398,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641794,2641795,50.0,1070398,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22714.0,2112.0 +2641795,2641796,77.0,1070399,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641796,2641797,50.0,1070399,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22715.0,2112.0 +2641797,2641798,77.0,1070400,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641798,2641799,50.0,1070400,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22716.0,2112.0 +2641799,2641800,77.0,1070401,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641800,2641801,50.0,1070401,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22718.0,2112.0 +2641801,2641802,77.0,1070402,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641802,2641803,50.0,1070402,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22704.0,2110.0 +2641803,2641804,68.0,1070403,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22704.0,2110.0 +2641804,2641805,62.0,1070403,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22704.0,2110.0 +2641805,2641806,40.0,1070403,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22704.0,2110.0 +2641806,2641807,1.0,1070403,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22704.0,2110.0 +2641807,2641808,68.0,1070404,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22690.0,2110.0 +2641808,2641809,62.0,1070404,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22690.0,2110.0 +2641809,2641810,40.0,1070404,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22690.0,2110.0 +2641810,2641811,1.0,1070404,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22690.0,2110.0 +2641811,2641812,68.0,1070405,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22704.0,2110.0 +2641812,2641813,62.0,1070405,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22704.0,2110.0 +2641813,2641814,40.0,1070405,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22704.0,2110.0 +2641814,2641815,1.0,1070405,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22704.0,2110.0 +2641815,2641816,68.0,1070406,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22704.0,2110.0 +2641816,2641817,62.0,1070406,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22704.0,2110.0 +2641817,2641818,40.0,1070406,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22704.0,2110.0 +2641818,2641819,1.0,1070406,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22704.0,2110.0 +2641819,2641820,68.0,1070407,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22715.0,2112.0 +2641820,2641821,62.0,1070407,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2641821,2641822,40.0,1070407,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2641822,2641823,1.0,1070407,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2641823,2641824,68.0,1070408,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22715.0,2112.0 +2641824,2641825,62.0,1070408,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2641825,2641826,40.0,1070408,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2641826,2641827,1.0,1070408,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2641827,2641828,76.0,1070409,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,8131,17.0,22719.0,2112.0 +2641828,2641829,36.0,1070409,2,1,2,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22719.0,2112.0 +2641829,2641830,0.0,1070409,3,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22719.0,2112.0 +2641830,2641831,35.0,1070409,4,2,9,1,1.0,40.0,4.0,-9.0,4.0,4411,5.0,22719.0,2112.0 +2641831,2641832,76.0,1070410,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,8131,17.0,22715.0,2112.0 +2641832,2641833,36.0,1070410,2,1,2,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22715.0,2112.0 +2641833,2641834,0.0,1070410,3,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2641834,2641835,35.0,1070410,4,2,9,1,1.0,40.0,4.0,-9.0,4.0,4411,5.0,22715.0,2112.0 +2641835,2641836,56.0,1070411,1,2,0,3,1.0,35.0,3.0,-9.0,4.0,531M,9.0,22690.0,2110.0 +2641836,2641837,61.0,1070411,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,3272,3.0,22690.0,2110.0 +2641837,2641838,21.0,1070411,3,1,2,1,3.0,15.0,6.0,15.0,4.0,53M,9.0,22690.0,2110.0 +2641838,2641839,53.0,1070412,1,1,0,4,1.0,45.0,1.0,-9.0,4.0,5417,10.0,22704.0,2110.0 +2641839,2641840,46.0,1070413,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2641840,2641841,44.0,1070413,2,2,12,1,1.0,33.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2641841,2641842,40.0,1070413,3,1,12,1,1.0,20.0,5.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2641842,2641843,38.0,1070413,4,1,12,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2641843,2641844,60.0,1070414,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,5416,10.0,22717.0,2112.0 +2641844,2641845,71.0,1070414,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2641845,2641846,60.0,1070415,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,5416,10.0,22690.0,2110.0 +2641846,2641847,71.0,1070415,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641847,2641848,60.0,1070416,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,5416,10.0,22714.0,2112.0 +2641848,2641849,71.0,1070416,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641849,2641850,60.0,1070417,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,5416,10.0,22714.0,2112.0 +2641850,2641851,71.0,1070417,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641851,2641852,54.0,1070418,1,2,0,4,1.0,15.0,4.0,-9.0,4.0,4452,5.0,22690.0,2110.0 +2641852,2641853,58.0,1070419,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22690.0,2110.0 +2641853,2641854,23.0,1070419,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22690.0,2110.0 +2641854,2641855,58.0,1070420,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22715.0,2112.0 +2641855,2641856,23.0,1070420,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22715.0,2112.0 +2641856,2641857,58.0,1070421,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22682.0,2108.0 +2641857,2641858,23.0,1070421,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22682.0,2108.0 +2641858,2641859,58.0,1070422,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22704.0,2110.0 +2641859,2641860,23.0,1070422,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22704.0,2110.0 +2641860,2641861,58.0,1070423,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2641861,2641862,23.0,1070423,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22714.0,2112.0 +2641862,2641863,58.0,1070424,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2641863,2641864,23.0,1070424,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22714.0,2112.0 +2641864,2641865,58.0,1070425,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2641865,2641866,23.0,1070425,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22714.0,2112.0 +2641866,2641867,58.0,1070426,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22716.0,2112.0 +2641867,2641868,23.0,1070426,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22716.0,2112.0 +2641868,2641869,58.0,1070427,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22716.0,2112.0 +2641869,2641870,23.0,1070427,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22716.0,2112.0 +2641870,2641871,58.0,1070428,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22704.0,2110.0 +2641871,2641872,23.0,1070428,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22704.0,2110.0 +2641872,2641873,58.0,1070429,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22715.0,2112.0 +2641873,2641874,23.0,1070429,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22715.0,2112.0 +2641874,2641875,58.0,1070430,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2641875,2641876,23.0,1070430,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22714.0,2112.0 +2641876,2641877,58.0,1070431,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22699.0,2110.0 +2641877,2641878,23.0,1070431,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22699.0,2110.0 +2641878,2641879,58.0,1070432,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22690.0,2110.0 +2641879,2641880,23.0,1070432,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22690.0,2110.0 +2641880,2641881,58.0,1070433,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22717.0,2112.0 +2641881,2641882,23.0,1070433,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22717.0,2112.0 +2641882,2641883,58.0,1070434,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22718.0,2112.0 +2641883,2641884,23.0,1070434,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22718.0,2112.0 +2641884,2641885,58.0,1070435,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22682.0,2108.0 +2641885,2641886,23.0,1070435,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22682.0,2108.0 +2641886,2641887,48.0,1070436,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22718.0,2112.0 +2641887,2641888,60.0,1070436,2,1,1,1,1.0,65.0,1.0,-9.0,4.0,23,2.0,22718.0,2112.0 +2641888,2641889,67.0,1070436,3,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641889,2641890,64.0,1070437,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22699.0,2110.0 +2641890,2641891,65.0,1070437,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22699.0,2110.0 +2641891,2641892,64.0,1070438,1,2,0,1,1.0,40.0,4.0,-9.0,4.0,5411,10.0,22717.0,2112.0 +2641892,2641893,69.0,1070438,2,1,13,1,1.0,30.0,1.0,-9.0,2.0,5411,10.0,22717.0,2112.0 +2641893,2641894,55.0,1070439,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22683.0,2108.0 +2641894,2641895,52.0,1070439,2,2,12,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22683.0,2108.0 +2641895,2641896,64.0,1070440,1,1,0,1,1.0,35.0,4.0,-9.0,4.0,6211,14.0,22716.0,2112.0 +2641896,2641897,61.0,1070440,2,2,1,1,1.0,25.0,4.0,-9.0,4.0,6211,14.0,22716.0,2112.0 +2641897,2641898,54.0,1070441,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22683.0,2108.0 +2641898,2641899,50.0,1070441,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22683.0,2108.0 +2641899,2641900,52.0,1070442,1,2,0,1,1.0,60.0,1.0,-9.0,4.0,454110,5.0,22699.0,2110.0 +2641900,2641901,60.0,1070442,2,1,1,1,1.0,25.0,3.0,-9.0,4.0,4411,5.0,22699.0,2110.0 +2641901,2641902,52.0,1070443,1,2,0,1,1.0,60.0,1.0,-9.0,4.0,454110,5.0,22717.0,2112.0 +2641902,2641903,60.0,1070443,2,1,1,1,1.0,25.0,3.0,-9.0,4.0,4411,5.0,22717.0,2112.0 +2641903,2641904,64.0,1070444,1,1,0,1,1.0,50.0,1.0,-9.0,2.0,5411,10.0,22717.0,2112.0 +2641904,2641905,69.0,1070444,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2641905,2641906,53.0,1070445,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22718.0,2112.0 +2641906,2641907,69.0,1070445,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641907,2641908,53.0,1070446,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22690.0,2110.0 +2641908,2641909,69.0,1070446,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641909,2641910,53.0,1070447,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22699.0,2110.0 +2641910,2641911,69.0,1070447,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2641911,2641912,53.0,1070448,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22715.0,2112.0 +2641912,2641913,69.0,1070448,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641913,2641914,53.0,1070449,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22715.0,2112.0 +2641914,2641915,69.0,1070449,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641915,2641916,53.0,1070450,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22714.0,2112.0 +2641916,2641917,69.0,1070450,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641917,2641918,53.0,1070451,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22683.0,2108.0 +2641918,2641919,69.0,1070451,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22683.0,2108.0 +2641919,2641920,53.0,1070452,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22716.0,2112.0 +2641920,2641921,69.0,1070452,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641921,2641922,53.0,1070453,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22682.0,2108.0 +2641922,2641923,69.0,1070453,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22682.0,2108.0 +2641923,2641924,53.0,1070454,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22716.0,2112.0 +2641924,2641925,69.0,1070454,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641925,2641926,53.0,1070455,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22699.0,2110.0 +2641926,2641927,69.0,1070455,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2641927,2641928,53.0,1070456,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22718.0,2112.0 +2641928,2641929,69.0,1070456,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641929,2641930,53.0,1070457,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22699.0,2110.0 +2641930,2641931,69.0,1070457,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2641931,2641932,52.0,1070458,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6241,14.0,22704.0,2110.0 +2641932,2641933,52.0,1070459,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6241,14.0,22704.0,2110.0 +2641933,2641934,62.0,1070460,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5416,10.0,22714.0,2112.0 +2641934,2641935,62.0,1070461,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5416,10.0,22716.0,2112.0 +2641935,2641936,62.0,1070462,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5416,10.0,22704.0,2110.0 +2641936,2641937,63.0,1070463,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22715.0,2112.0 +2641937,2641938,62.0,1070464,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5416,10.0,22715.0,2112.0 +2641938,2641939,62.0,1070465,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5416,10.0,22715.0,2112.0 +2641939,2641940,60.0,1070466,1,1,0,1,1.0,30.0,1.0,-9.0,4.0,52M2,9.0,22683.0,2108.0 +2641940,2641941,51.0,1070467,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4411,5.0,22682.0,2108.0 +2641941,2641942,51.0,1070468,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4411,5.0,22719.0,2112.0 +2641942,2641943,51.0,1070469,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4411,5.0,22715.0,2112.0 +2641943,2641944,51.0,1070470,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4411,5.0,22715.0,2112.0 +2641944,2641945,51.0,1070471,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4411,5.0,22704.0,2110.0 +2641945,2641946,51.0,1070472,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4411,5.0,22716.0,2112.0 +2641946,2641947,60.0,1070473,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,8139Z,17.0,22715.0,2112.0 +2641947,2641948,55.0,1070474,1,2,0,1,1.0,51.0,1.0,-9.0,4.0,81393,17.0,22690.0,2110.0 +2641948,2641949,55.0,1070475,1,2,0,1,1.0,51.0,1.0,-9.0,4.0,81393,17.0,22718.0,2112.0 +2641949,2641950,55.0,1070476,1,2,0,1,1.0,51.0,1.0,-9.0,4.0,81393,17.0,22715.0,2112.0 +2641950,2641951,60.0,1070477,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22715.0,2112.0 +2641951,2641952,48.0,1070478,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22690.0,2110.0 +2641952,2641953,48.0,1070479,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22718.0,2112.0 +2641953,2641954,64.0,1070480,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2641954,2641955,64.0,1070481,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641955,2641956,64.0,1070482,1,2,0,1,1.0,10.0,1.0,-9.0,4.0,5121,8.0,22719.0,2112.0 +2641956,2641957,42.0,1070482,2,1,2,1,2.0,30.0,6.0,-9.0,4.0,23,2.0,22719.0,2112.0 +2641957,2641958,87.0,1070482,3,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2641958,2641959,62.0,1070483,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,6212,14.0,22716.0,2112.0 +2641959,2641960,65.0,1070483,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22716.0,2112.0 +2641960,2641961,52.0,1070484,1,2,0,1,1.0,48.0,1.0,-9.0,4.0,622M,15.0,22690.0,2110.0 +2641961,2641962,53.0,1070485,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22717.0,2112.0 +2641962,2641963,63.0,1070486,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641963,2641964,66.0,1070486,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641964,2641965,63.0,1070487,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641965,2641966,66.0,1070487,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2641966,2641967,63.0,1070488,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641967,2641968,66.0,1070488,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641968,2641969,63.0,1070489,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2641969,2641970,66.0,1070489,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2641970,2641971,63.0,1070490,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641971,2641972,66.0,1070490,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2641972,2641973,63.0,1070491,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641973,2641974,66.0,1070491,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641974,2641975,63.0,1070492,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641975,2641976,66.0,1070492,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641976,2641977,63.0,1070493,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22682.0,2108.0 +2641977,2641978,66.0,1070493,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22682.0,2108.0 +2641978,2641979,63.0,1070494,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641979,2641980,66.0,1070494,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641980,2641981,63.0,1070495,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641981,2641982,66.0,1070495,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641982,2641983,63.0,1070496,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641983,2641984,66.0,1070496,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641984,2641985,63.0,1070497,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641985,2641986,66.0,1070497,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641986,2641987,63.0,1070498,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22682.0,2108.0 +2641987,2641988,66.0,1070498,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22682.0,2108.0 +2641988,2641989,63.0,1070499,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641989,2641990,66.0,1070499,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641990,2641991,63.0,1070500,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641991,2641992,66.0,1070500,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2641992,2641993,63.0,1070501,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641993,2641994,66.0,1070501,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641994,2641995,63.0,1070502,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641995,2641996,66.0,1070502,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22718.0,2112.0 +2641996,2641997,63.0,1070503,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641997,2641998,66.0,1070503,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2641998,2641999,63.0,1070504,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2641999,2642000,66.0,1070504,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2642000,2642001,63.0,1070505,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2642001,2642002,66.0,1070505,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2642002,2642003,63.0,1070506,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2642003,2642004,66.0,1070506,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2642004,2642005,63.0,1070507,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2642005,2642006,66.0,1070507,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2642006,2642007,61.0,1070508,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,622M,15.0,22699.0,2110.0 +2642007,2642008,60.0,1070509,1,2,0,1,2.0,50.0,1.0,-9.0,4.0,611M1,13.0,22715.0,2112.0 +2642008,2642009,52.0,1070510,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22699.0,2110.0 +2642009,2642010,53.0,1070511,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22719.0,2112.0 +2642010,2642011,53.0,1070512,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22718.0,2112.0 +2642011,2642012,63.0,1070513,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,55,11.0,22718.0,2112.0 +2642012,2642013,53.0,1070514,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22704.0,2110.0 +2642013,2642014,53.0,1070515,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22704.0,2110.0 +2642014,2642015,55.0,1070516,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22716.0,2112.0 +2642015,2642016,55.0,1070517,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22699.0,2110.0 +2642016,2642017,45.0,1070518,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,2211P,7.0,22716.0,2112.0 +2642017,2642018,45.0,1070519,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,2211P,7.0,22704.0,2110.0 +2642018,2642019,56.0,1070520,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,3327,3.0,22682.0,2108.0 +2642019,2642020,48.0,1070521,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22704.0,2110.0 +2642020,2642021,48.0,1070522,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22719.0,2112.0 +2642021,2642022,48.0,1070523,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22716.0,2112.0 +2642022,2642023,48.0,1070524,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22714.0,2112.0 +2642023,2642024,48.0,1070525,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22690.0,2110.0 +2642024,2642025,55.0,1070526,1,1,0,1,1.0,50.0,1.0,15.0,4.0,611M1,13.0,22715.0,2112.0 +2642025,2642026,55.0,1070527,1,1,0,1,1.0,50.0,1.0,15.0,4.0,611M1,13.0,22719.0,2112.0 +2642026,2642027,54.0,1070528,1,1,0,1,1.0,45.0,1.0,-9.0,2.0,5417,10.0,22690.0,2110.0 +2642027,2642028,54.0,1070529,1,1,0,1,1.0,45.0,1.0,-9.0,2.0,5417,10.0,22714.0,2112.0 +2642028,2642029,54.0,1070530,1,1,0,1,1.0,45.0,1.0,-9.0,2.0,5417,10.0,22715.0,2112.0 +2642029,2642030,57.0,1070531,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5182,8.0,22716.0,2112.0 +2642030,2642031,57.0,1070532,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5182,8.0,22715.0,2112.0 +2642031,2642032,57.0,1070533,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5182,8.0,22704.0,2110.0 +2642032,2642033,45.0,1070534,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22704.0,2110.0 +2642033,2642034,45.0,1070535,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22704.0,2110.0 +2642034,2642035,64.0,1070536,1,2,0,1,1.0,44.0,1.0,-9.0,4.0,623M,14.0,22715.0,2112.0 +2642035,2642036,61.0,1070537,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2642036,2642037,68.0,1070537,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2642037,2642038,45.0,1070538,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2642038,2642039,56.0,1070539,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3345,3.0,22699.0,2110.0 +2642039,2642040,42.0,1070539,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2642040,2642041,14.0,1070539,3,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22699.0,2110.0 +2642041,2642042,6.0,1070539,4,1,2,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22699.0,2110.0 +2642042,2642043,69.0,1070539,5,2,8,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22699.0,2110.0 +2642043,2642044,52.0,1070540,1,2,0,1,2.0,50.0,2.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2642044,2642045,16.0,1070540,2,2,14,3,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22714.0,2112.0 +2642045,2642046,54.0,1070541,1,1,0,1,1.0,50.0,4.0,-9.0,4.0,8131,17.0,22690.0,2110.0 +2642046,2642047,46.0,1070541,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2642047,2642048,22.0,1070541,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,8131,17.0,22690.0,2110.0 +2642048,2642049,17.0,1070541,4,1,2,1,1.0,25.0,6.0,13.0,4.0,722Z,16.0,22690.0,2110.0 +2642049,2642050,17.0,1070541,5,1,2,1,6.0,40.0,6.0,12.0,4.0,721M,16.0,22690.0,2110.0 +2642050,2642051,14.0,1070541,6,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22690.0,2110.0 +2642051,2642052,13.0,1070541,7,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22690.0,2110.0 +2642052,2642053,10.0,1070541,8,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22690.0,2110.0 +2642053,2642054,9.0,1070541,9,1,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22690.0,2110.0 +2642054,2642055,5.0,1070541,10,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22690.0,2110.0 +2642055,2642056,4.0,1070541,11,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22690.0,2110.0 +2642056,2642057,20.0,1070541,12,2,3,2,1.0,25.0,6.0,-9.0,4.0,722Z,16.0,22690.0,2110.0 +2642057,2642058,64.0,1070542,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,4411,5.0,22690.0,2110.0 +2642058,2642059,68.0,1070542,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2642059,2642060,47.0,1070542,3,2,4,1,1.0,40.0,1.0,-9.0,4.0,4244,4.0,22690.0,2110.0 +2642060,2642061,17.0,1070542,4,2,7,1,1.0,24.0,6.0,13.0,4.0,44511,5.0,22690.0,2110.0 +2642061,2642062,6.0,1070542,5,2,7,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22690.0,2110.0 +2642062,2642063,64.0,1070543,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,4411,5.0,22690.0,2110.0 +2642063,2642064,68.0,1070543,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2642064,2642065,47.0,1070543,3,2,4,1,1.0,40.0,1.0,-9.0,4.0,4244,4.0,22690.0,2110.0 +2642065,2642066,17.0,1070543,4,2,7,1,1.0,24.0,6.0,13.0,4.0,44511,5.0,22690.0,2110.0 +2642066,2642067,6.0,1070543,5,2,7,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22690.0,2110.0 +2642067,2642068,64.0,1070544,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,4411,5.0,22715.0,2112.0 +2642068,2642069,68.0,1070544,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2642069,2642070,47.0,1070544,3,2,4,1,1.0,40.0,1.0,-9.0,4.0,4244,4.0,22715.0,2112.0 +2642070,2642071,17.0,1070544,4,2,7,1,1.0,24.0,6.0,13.0,4.0,44511,5.0,22715.0,2112.0 +2642071,2642072,6.0,1070544,5,2,7,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22715.0,2112.0 +2642072,2642073,40.0,1070545,1,1,0,4,1.0,20.0,1.0,-9.0,4.0,611M1,13.0,22718.0,2112.0 +2642073,2642074,40.0,1070546,1,1,0,4,1.0,20.0,1.0,-9.0,4.0,611M1,13.0,22718.0,2112.0 +2642074,2642075,25.0,1070547,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2642075,2642076,24.0,1070547,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2642076,2642077,23.0,1070547,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2642077,2642078,22.0,1070547,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2642078,2642079,25.0,1070548,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22690.0,2110.0 +2642079,2642080,24.0,1070548,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22690.0,2110.0 +2642080,2642081,23.0,1070548,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22690.0,2110.0 +2642081,2642082,22.0,1070548,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22690.0,2110.0 +2642082,2642083,25.0,1070549,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642083,2642084,24.0,1070549,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642084,2642085,23.0,1070549,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642085,2642086,22.0,1070549,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642086,2642087,25.0,1070550,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642087,2642088,24.0,1070550,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642088,2642089,23.0,1070550,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642089,2642090,22.0,1070550,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642090,2642091,25.0,1070551,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22718.0,2112.0 +2642091,2642092,24.0,1070551,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22718.0,2112.0 +2642092,2642093,23.0,1070551,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22718.0,2112.0 +2642093,2642094,22.0,1070551,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22718.0,2112.0 +2642094,2642095,25.0,1070552,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642095,2642096,24.0,1070552,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642096,2642097,23.0,1070552,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642097,2642098,22.0,1070552,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642098,2642099,25.0,1070553,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642099,2642100,24.0,1070553,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642100,2642101,23.0,1070553,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642101,2642102,22.0,1070553,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642102,2642103,25.0,1070554,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22704.0,2110.0 +2642103,2642104,24.0,1070554,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22704.0,2110.0 +2642104,2642105,23.0,1070554,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22704.0,2110.0 +2642105,2642106,22.0,1070554,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22704.0,2110.0 +2642106,2642107,25.0,1070555,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22682.0,2108.0 +2642107,2642108,24.0,1070555,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22682.0,2108.0 +2642108,2642109,23.0,1070555,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22682.0,2108.0 +2642109,2642110,22.0,1070555,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22682.0,2108.0 +2642110,2642111,25.0,1070556,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642111,2642112,24.0,1070556,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642112,2642113,23.0,1070556,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642113,2642114,22.0,1070556,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642114,2642115,25.0,1070557,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642115,2642116,24.0,1070557,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642116,2642117,23.0,1070557,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642117,2642118,22.0,1070557,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642118,2642119,25.0,1070558,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642119,2642120,24.0,1070558,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642120,2642121,23.0,1070558,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642121,2642122,22.0,1070558,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642122,2642123,25.0,1070559,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2642123,2642124,24.0,1070559,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2642124,2642125,23.0,1070559,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2642125,2642126,22.0,1070559,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22715.0,2112.0 +2642126,2642127,25.0,1070560,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642127,2642128,24.0,1070560,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642128,2642129,23.0,1070560,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642129,2642130,22.0,1070560,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22714.0,2112.0 +2642130,2642131,25.0,1070561,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22683.0,2108.0 +2642131,2642132,24.0,1070561,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22683.0,2108.0 +2642132,2642133,23.0,1070561,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22683.0,2108.0 +2642133,2642134,22.0,1070561,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22683.0,2108.0 +2642134,2642135,25.0,1070562,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642135,2642136,24.0,1070562,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642136,2642137,23.0,1070562,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642137,2642138,22.0,1070562,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642138,2642139,25.0,1070563,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642139,2642140,24.0,1070563,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642140,2642141,23.0,1070563,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642141,2642142,22.0,1070563,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22719.0,2112.0 +2642142,2642143,25.0,1070564,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642143,2642144,24.0,1070564,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642144,2642145,23.0,1070564,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642145,2642146,22.0,1070564,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22716.0,2112.0 +2642146,2642147,25.0,1070565,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642147,2642148,24.0,1070565,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642148,2642149,23.0,1070565,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642149,2642150,22.0,1070565,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642150,2642151,37.0,1070566,1,1,0,4,1.0,42.0,1.0,15.0,4.0,713Z,16.0,22714.0,2112.0 +2642151,2642152,38.0,1070566,2,1,13,1,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22714.0,2112.0 +2642152,2642153,38.0,1070567,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22718.0,2112.0 +2642153,2642154,35.0,1070568,1,2,0,4,1.0,18.0,1.0,-9.0,4.0,6214,14.0,22682.0,2108.0 +2642154,2642155,35.0,1070568,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22682.0,2108.0 +2642155,2642156,2.0,1070568,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22682.0,2108.0 +2642156,2642157,26.0,1070569,1,1,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22718.0,2112.0 +2642157,2642158,25.0,1070569,2,2,1,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22718.0,2112.0 +2642158,2642159,1.0,1070569,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22718.0,2112.0 +2642159,2642160,26.0,1070570,1,1,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22718.0,2112.0 +2642160,2642161,25.0,1070570,2,2,1,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22718.0,2112.0 +2642161,2642162,1.0,1070570,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22718.0,2112.0 +2642162,2642163,32.0,1070571,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22682.0,2108.0 +2642163,2642164,29.0,1070571,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22682.0,2108.0 +2642164,2642165,3.0,1070571,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22682.0,2108.0 +2642165,2642166,32.0,1070572,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22683.0,2108.0 +2642166,2642167,29.0,1070572,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22683.0,2108.0 +2642167,2642168,3.0,1070572,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22683.0,2108.0 +2642168,2642169,32.0,1070573,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22699.0,2110.0 +2642169,2642170,29.0,1070573,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22699.0,2110.0 +2642170,2642171,3.0,1070573,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22699.0,2110.0 +2642171,2642172,32.0,1070574,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22683.0,2108.0 +2642172,2642173,29.0,1070574,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22683.0,2108.0 +2642173,2642174,3.0,1070574,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22683.0,2108.0 +2642174,2642175,32.0,1070575,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22714.0,2112.0 +2642175,2642176,29.0,1070575,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22714.0,2112.0 +2642176,2642177,3.0,1070575,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642177,2642178,32.0,1070576,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22716.0,2112.0 +2642178,2642179,29.0,1070576,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22716.0,2112.0 +2642179,2642180,3.0,1070576,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22716.0,2112.0 +2642180,2642181,32.0,1070577,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22715.0,2112.0 +2642181,2642182,29.0,1070577,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22715.0,2112.0 +2642182,2642183,3.0,1070577,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642183,2642184,32.0,1070578,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22682.0,2108.0 +2642184,2642185,29.0,1070578,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22682.0,2108.0 +2642185,2642186,3.0,1070578,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22682.0,2108.0 +2642186,2642187,32.0,1070579,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22714.0,2112.0 +2642187,2642188,29.0,1070579,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22714.0,2112.0 +2642188,2642189,3.0,1070579,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642189,2642190,32.0,1070580,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22717.0,2112.0 +2642190,2642191,29.0,1070580,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22717.0,2112.0 +2642191,2642192,3.0,1070580,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22717.0,2112.0 +2642192,2642193,32.0,1070581,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22714.0,2112.0 +2642193,2642194,29.0,1070581,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22714.0,2112.0 +2642194,2642195,3.0,1070581,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642195,2642196,32.0,1070582,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22719.0,2112.0 +2642196,2642197,29.0,1070582,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22719.0,2112.0 +2642197,2642198,3.0,1070582,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22719.0,2112.0 +2642198,2642199,32.0,1070583,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22714.0,2112.0 +2642199,2642200,29.0,1070583,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22714.0,2112.0 +2642200,2642201,3.0,1070583,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642201,2642202,32.0,1070584,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22690.0,2110.0 +2642202,2642203,29.0,1070584,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22690.0,2110.0 +2642203,2642204,3.0,1070584,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22690.0,2110.0 +2642204,2642205,38.0,1070585,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22714.0,2112.0 +2642205,2642206,19.0,1070585,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2642206,2642207,17.0,1070585,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22714.0,2112.0 +2642207,2642208,15.0,1070585,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22714.0,2112.0 +2642208,2642209,13.0,1070585,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22714.0,2112.0 +2642209,2642210,11.0,1070585,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22714.0,2112.0 +2642210,2642211,9.0,1070585,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642211,2642212,2.0,1070585,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642212,2642213,17.0,1070585,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2642213,2642214,38.0,1070586,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22690.0,2110.0 +2642214,2642215,19.0,1070586,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2642215,2642216,17.0,1070586,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22690.0,2110.0 +2642216,2642217,15.0,1070586,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22690.0,2110.0 +2642217,2642218,13.0,1070586,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22690.0,2110.0 +2642218,2642219,11.0,1070586,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22690.0,2110.0 +2642219,2642220,9.0,1070586,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22690.0,2110.0 +2642220,2642221,2.0,1070586,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22690.0,2110.0 +2642221,2642222,17.0,1070586,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2642222,2642223,38.0,1070587,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22704.0,2110.0 +2642223,2642224,19.0,1070587,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2642224,2642225,17.0,1070587,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22704.0,2110.0 +2642225,2642226,15.0,1070587,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22704.0,2110.0 +2642226,2642227,13.0,1070587,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22704.0,2110.0 +2642227,2642228,11.0,1070587,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22704.0,2110.0 +2642228,2642229,9.0,1070587,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22704.0,2110.0 +2642229,2642230,2.0,1070587,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22704.0,2110.0 +2642230,2642231,17.0,1070587,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2642231,2642232,38.0,1070588,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22704.0,2110.0 +2642232,2642233,19.0,1070588,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2642233,2642234,17.0,1070588,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22704.0,2110.0 +2642234,2642235,15.0,1070588,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22704.0,2110.0 +2642235,2642236,13.0,1070588,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22704.0,2110.0 +2642236,2642237,11.0,1070588,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22704.0,2110.0 +2642237,2642238,9.0,1070588,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22704.0,2110.0 +2642238,2642239,2.0,1070588,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22704.0,2110.0 +2642239,2642240,17.0,1070588,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2642240,2642241,38.0,1070589,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22704.0,2110.0 +2642241,2642242,19.0,1070589,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2642242,2642243,17.0,1070589,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22704.0,2110.0 +2642243,2642244,15.0,1070589,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22704.0,2110.0 +2642244,2642245,13.0,1070589,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22704.0,2110.0 +2642245,2642246,11.0,1070589,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22704.0,2110.0 +2642246,2642247,9.0,1070589,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22704.0,2110.0 +2642247,2642248,2.0,1070589,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22704.0,2110.0 +2642248,2642249,17.0,1070589,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2642249,2642250,38.0,1070590,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22690.0,2110.0 +2642250,2642251,19.0,1070590,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2642251,2642252,17.0,1070590,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22690.0,2110.0 +2642252,2642253,15.0,1070590,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22690.0,2110.0 +2642253,2642254,13.0,1070590,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22690.0,2110.0 +2642254,2642255,11.0,1070590,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22690.0,2110.0 +2642255,2642256,9.0,1070590,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22690.0,2110.0 +2642256,2642257,2.0,1070590,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22690.0,2110.0 +2642257,2642258,17.0,1070590,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2642258,2642259,38.0,1070591,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22690.0,2110.0 +2642259,2642260,19.0,1070591,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2642260,2642261,17.0,1070591,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22690.0,2110.0 +2642261,2642262,15.0,1070591,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22690.0,2110.0 +2642262,2642263,13.0,1070591,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22690.0,2110.0 +2642263,2642264,11.0,1070591,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22690.0,2110.0 +2642264,2642265,9.0,1070591,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22690.0,2110.0 +2642265,2642266,2.0,1070591,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22690.0,2110.0 +2642266,2642267,17.0,1070591,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2642267,2642268,38.0,1070592,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22717.0,2112.0 +2642268,2642269,19.0,1070592,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2642269,2642270,17.0,1070592,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22717.0,2112.0 +2642270,2642271,15.0,1070592,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22717.0,2112.0 +2642271,2642272,13.0,1070592,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22717.0,2112.0 +2642272,2642273,11.0,1070592,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22717.0,2112.0 +2642273,2642274,9.0,1070592,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22717.0,2112.0 +2642274,2642275,2.0,1070592,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22717.0,2112.0 +2642275,2642276,17.0,1070592,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2642276,2642277,38.0,1070593,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22682.0,2108.0 +2642277,2642278,19.0,1070593,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22682.0,2108.0 +2642278,2642279,17.0,1070593,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22682.0,2108.0 +2642279,2642280,15.0,1070593,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22682.0,2108.0 +2642280,2642281,13.0,1070593,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22682.0,2108.0 +2642281,2642282,11.0,1070593,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22682.0,2108.0 +2642282,2642283,9.0,1070593,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22682.0,2108.0 +2642283,2642284,2.0,1070593,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22682.0,2108.0 +2642284,2642285,17.0,1070593,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22682.0,2108.0 +2642285,2642286,38.0,1070594,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22715.0,2112.0 +2642286,2642287,19.0,1070594,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2642287,2642288,17.0,1070594,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22715.0,2112.0 +2642288,2642289,15.0,1070594,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22715.0,2112.0 +2642289,2642290,13.0,1070594,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22715.0,2112.0 +2642290,2642291,11.0,1070594,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22715.0,2112.0 +2642291,2642292,9.0,1070594,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22715.0,2112.0 +2642292,2642293,2.0,1070594,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642293,2642294,17.0,1070594,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2642294,2642295,38.0,1070595,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22715.0,2112.0 +2642295,2642296,19.0,1070595,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2642296,2642297,17.0,1070595,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22715.0,2112.0 +2642297,2642298,15.0,1070595,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22715.0,2112.0 +2642298,2642299,13.0,1070595,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22715.0,2112.0 +2642299,2642300,11.0,1070595,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22715.0,2112.0 +2642300,2642301,9.0,1070595,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22715.0,2112.0 +2642301,2642302,2.0,1070595,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642302,2642303,17.0,1070595,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22715.0,2112.0 +2642303,2642304,38.0,1070596,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22719.0,2112.0 +2642304,2642305,19.0,1070596,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2642305,2642306,17.0,1070596,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22719.0,2112.0 +2642306,2642307,15.0,1070596,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22719.0,2112.0 +2642307,2642308,13.0,1070596,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22719.0,2112.0 +2642308,2642309,11.0,1070596,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22719.0,2112.0 +2642309,2642310,9.0,1070596,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22719.0,2112.0 +2642310,2642311,2.0,1070596,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22719.0,2112.0 +2642311,2642312,17.0,1070596,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2642312,2642313,38.0,1070597,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22714.0,2112.0 +2642313,2642314,19.0,1070597,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2642314,2642315,17.0,1070597,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22714.0,2112.0 +2642315,2642316,15.0,1070597,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22714.0,2112.0 +2642316,2642317,13.0,1070597,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22714.0,2112.0 +2642317,2642318,11.0,1070597,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22714.0,2112.0 +2642318,2642319,9.0,1070597,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642319,2642320,2.0,1070597,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642320,2642321,17.0,1070597,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2642321,2642322,38.0,1070598,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22719.0,2112.0 +2642322,2642323,19.0,1070598,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2642323,2642324,17.0,1070598,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22719.0,2112.0 +2642324,2642325,15.0,1070598,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22719.0,2112.0 +2642325,2642326,13.0,1070598,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22719.0,2112.0 +2642326,2642327,11.0,1070598,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22719.0,2112.0 +2642327,2642328,9.0,1070598,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22719.0,2112.0 +2642328,2642329,2.0,1070598,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22719.0,2112.0 +2642329,2642330,17.0,1070598,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22719.0,2112.0 +2642330,2642331,38.0,1070599,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22714.0,2112.0 +2642331,2642332,19.0,1070599,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2642332,2642333,17.0,1070599,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22714.0,2112.0 +2642333,2642334,15.0,1070599,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22714.0,2112.0 +2642334,2642335,13.0,1070599,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22714.0,2112.0 +2642335,2642336,11.0,1070599,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22714.0,2112.0 +2642336,2642337,9.0,1070599,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642337,2642338,2.0,1070599,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642338,2642339,17.0,1070599,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2642339,2642340,38.0,1070600,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22716.0,2112.0 +2642340,2642341,19.0,1070600,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2642341,2642342,17.0,1070600,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22716.0,2112.0 +2642342,2642343,15.0,1070600,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22716.0,2112.0 +2642343,2642344,13.0,1070600,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22716.0,2112.0 +2642344,2642345,11.0,1070600,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22716.0,2112.0 +2642345,2642346,9.0,1070600,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22716.0,2112.0 +2642346,2642347,2.0,1070600,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22716.0,2112.0 +2642347,2642348,17.0,1070600,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2642348,2642349,38.0,1070601,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22716.0,2112.0 +2642349,2642350,19.0,1070601,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2642350,2642351,17.0,1070601,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22716.0,2112.0 +2642351,2642352,15.0,1070601,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22716.0,2112.0 +2642352,2642353,13.0,1070601,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22716.0,2112.0 +2642353,2642354,11.0,1070601,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22716.0,2112.0 +2642354,2642355,9.0,1070601,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22716.0,2112.0 +2642355,2642356,2.0,1070601,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22716.0,2112.0 +2642356,2642357,17.0,1070601,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2642357,2642358,38.0,1070602,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22690.0,2110.0 +2642358,2642359,19.0,1070602,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2642359,2642360,17.0,1070602,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22690.0,2110.0 +2642360,2642361,15.0,1070602,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22690.0,2110.0 +2642361,2642362,13.0,1070602,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22690.0,2110.0 +2642362,2642363,11.0,1070602,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22690.0,2110.0 +2642363,2642364,9.0,1070602,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22690.0,2110.0 +2642364,2642365,2.0,1070602,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22690.0,2110.0 +2642365,2642366,17.0,1070602,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22690.0,2110.0 +2642366,2642367,38.0,1070603,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22714.0,2112.0 +2642367,2642368,19.0,1070603,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2642368,2642369,17.0,1070603,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22714.0,2112.0 +2642369,2642370,15.0,1070603,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22714.0,2112.0 +2642370,2642371,13.0,1070603,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22714.0,2112.0 +2642371,2642372,11.0,1070603,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22714.0,2112.0 +2642372,2642373,9.0,1070603,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642373,2642374,2.0,1070603,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642374,2642375,17.0,1070603,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22714.0,2112.0 +2642375,2642376,38.0,1070604,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22704.0,2110.0 +2642376,2642377,19.0,1070604,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2642377,2642378,17.0,1070604,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22704.0,2110.0 +2642378,2642379,15.0,1070604,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22704.0,2110.0 +2642379,2642380,13.0,1070604,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22704.0,2110.0 +2642380,2642381,11.0,1070604,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22704.0,2110.0 +2642381,2642382,9.0,1070604,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22704.0,2110.0 +2642382,2642383,2.0,1070604,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22704.0,2110.0 +2642383,2642384,17.0,1070604,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22704.0,2110.0 +2642384,2642385,38.0,1070605,1,2,0,2,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22717.0,2112.0 +2642385,2642386,19.0,1070605,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2642386,2642387,17.0,1070605,3,2,2,2,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22717.0,2112.0 +2642387,2642388,15.0,1070605,4,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22717.0,2112.0 +2642388,2642389,13.0,1070605,5,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22717.0,2112.0 +2642389,2642390,11.0,1070605,6,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22717.0,2112.0 +2642390,2642391,9.0,1070605,7,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22717.0,2112.0 +2642391,2642392,2.0,1070605,8,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22717.0,2112.0 +2642392,2642393,17.0,1070605,9,1,10,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22717.0,2112.0 +2642393,2642394,32.0,1070606,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6213ZM,14.0,22699.0,2110.0 +2642394,2642395,30.0,1070606,2,2,12,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22699.0,2110.0 +2642395,2642396,32.0,1070607,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6213ZM,14.0,22716.0,2112.0 +2642396,2642397,30.0,1070607,2,2,12,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22716.0,2112.0 +2642397,2642398,34.0,1070608,1,1,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22682.0,2108.0 +2642398,2642399,34.0,1070608,2,2,1,1,1.0,55.0,1.0,-9.0,4.0,622M,15.0,22682.0,2108.0 +2642399,2642400,38.0,1070609,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22682.0,2108.0 +2642400,2642401,40.0,1070609,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,5412,10.0,22682.0,2108.0 +2642401,2642402,37.0,1070610,1,1,0,1,1.0,47.0,1.0,-9.0,4.0,3113,3.0,22717.0,2112.0 +2642402,2642403,34.0,1070610,2,2,1,1,1.0,63.0,1.0,16.0,4.0,3399ZM,3.0,22717.0,2112.0 +2642403,2642404,32.0,1070611,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22704.0,2110.0 +2642404,2642405,30.0,1070611,2,1,5,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22704.0,2110.0 +2642405,2642406,32.0,1070612,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22714.0,2112.0 +2642406,2642407,30.0,1070612,2,1,5,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22714.0,2112.0 +2642407,2642408,39.0,1070613,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22716.0,2112.0 +2642408,2642409,41.0,1070613,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22716.0,2112.0 +2642409,2642410,43.0,1070614,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22717.0,2112.0 +2642410,2642411,35.0,1070615,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22690.0,2110.0 +2642411,2642412,31.0,1070616,1,2,0,1,1.0,52.0,1.0,-9.0,4.0,3391,3.0,22699.0,2110.0 +2642412,2642413,33.0,1070617,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22690.0,2110.0 +2642413,2642414,33.0,1070618,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22699.0,2110.0 +2642414,2642415,35.0,1070619,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5111Z,8.0,22699.0,2110.0 +2642415,2642416,35.0,1070620,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5111Z,8.0,22717.0,2112.0 +2642416,2642417,39.0,1070621,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5112,8.0,22715.0,2112.0 +2642417,2642418,35.0,1070622,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5111Z,8.0,22715.0,2112.0 +2642418,2642419,33.0,1070623,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,332MZ,3.0,22716.0,2112.0 +2642419,2642420,33.0,1070624,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,332MZ,3.0,22699.0,2110.0 +2642420,2642421,36.0,1070625,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22682.0,2108.0 +2642421,2642422,35.0,1070625,2,2,13,1,1.0,45.0,1.0,-9.0,4.0,8121M,17.0,22682.0,2108.0 +2642422,2642423,36.0,1070626,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22719.0,2112.0 +2642423,2642424,35.0,1070626,2,2,13,1,1.0,45.0,1.0,-9.0,4.0,8121M,17.0,22719.0,2112.0 +2642424,2642425,44.0,1070627,1,1,0,1,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22690.0,2110.0 +2642425,2642426,45.0,1070627,2,1,12,1,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22690.0,2110.0 +2642426,2642427,33.0,1070628,1,1,0,1,1.0,32.0,1.0,16.0,4.0,6214,14.0,22714.0,2112.0 +2642427,2642428,34.0,1070628,2,2,1,4,2.0,40.0,1.0,16.0,4.0,6214,14.0,22714.0,2112.0 +2642428,2642429,0.0,1070628,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642429,2642430,66.0,1070628,4,1,8,4,6.0,25.0,4.0,-9.0,4.0,5241,9.0,22714.0,2112.0 +2642430,2642431,61.0,1070628,5,2,8,4,6.0,-9.0,-9.0,-9.0,4.0,5241,9.0,22714.0,2112.0 +2642431,2642432,33.0,1070629,1,1,0,1,1.0,32.0,1.0,16.0,4.0,6214,14.0,22715.0,2112.0 +2642432,2642433,34.0,1070629,2,2,1,4,2.0,40.0,1.0,16.0,4.0,6214,14.0,22715.0,2112.0 +2642433,2642434,0.0,1070629,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642434,2642435,66.0,1070629,4,1,8,4,6.0,25.0,4.0,-9.0,4.0,5241,9.0,22715.0,2112.0 +2642435,2642436,61.0,1070629,5,2,8,4,6.0,-9.0,-9.0,-9.0,4.0,5241,9.0,22715.0,2112.0 +2642436,2642437,33.0,1070630,1,1,0,1,1.0,32.0,1.0,16.0,4.0,6214,14.0,22715.0,2112.0 +2642437,2642438,34.0,1070630,2,2,1,4,2.0,40.0,1.0,16.0,4.0,6214,14.0,22715.0,2112.0 +2642438,2642439,0.0,1070630,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642439,2642440,66.0,1070630,4,1,8,4,6.0,25.0,4.0,-9.0,4.0,5241,9.0,22715.0,2112.0 +2642440,2642441,61.0,1070630,5,2,8,4,6.0,-9.0,-9.0,-9.0,4.0,5241,9.0,22715.0,2112.0 +2642441,2642442,33.0,1070631,1,1,0,1,1.0,32.0,1.0,16.0,4.0,6214,14.0,22704.0,2110.0 +2642442,2642443,34.0,1070631,2,2,1,4,2.0,40.0,1.0,16.0,4.0,6214,14.0,22704.0,2110.0 +2642443,2642444,0.0,1070631,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22704.0,2110.0 +2642444,2642445,66.0,1070631,4,1,8,4,6.0,25.0,4.0,-9.0,4.0,5241,9.0,22704.0,2110.0 +2642445,2642446,61.0,1070631,5,2,8,4,6.0,-9.0,-9.0,-9.0,4.0,5241,9.0,22704.0,2110.0 +2642446,2642447,33.0,1070632,1,1,0,1,1.0,32.0,1.0,16.0,4.0,6214,14.0,22704.0,2110.0 +2642447,2642448,34.0,1070632,2,2,1,4,2.0,40.0,1.0,16.0,4.0,6214,14.0,22704.0,2110.0 +2642448,2642449,0.0,1070632,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22704.0,2110.0 +2642449,2642450,66.0,1070632,4,1,8,4,6.0,25.0,4.0,-9.0,4.0,5241,9.0,22704.0,2110.0 +2642450,2642451,61.0,1070632,5,2,8,4,6.0,-9.0,-9.0,-9.0,4.0,5241,9.0,22704.0,2110.0 +2642451,2642452,33.0,1070633,1,1,0,1,1.0,32.0,1.0,16.0,4.0,6214,14.0,22714.0,2112.0 +2642452,2642453,34.0,1070633,2,2,1,4,2.0,40.0,1.0,16.0,4.0,6214,14.0,22714.0,2112.0 +2642453,2642454,0.0,1070633,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642454,2642455,66.0,1070633,4,1,8,4,6.0,25.0,4.0,-9.0,4.0,5241,9.0,22714.0,2112.0 +2642455,2642456,61.0,1070633,5,2,8,4,6.0,-9.0,-9.0,-9.0,4.0,5241,9.0,22714.0,2112.0 +2642456,2642457,33.0,1070634,1,1,0,1,1.0,32.0,1.0,16.0,4.0,6214,14.0,22715.0,2112.0 +2642457,2642458,34.0,1070634,2,2,1,4,2.0,40.0,1.0,16.0,4.0,6214,14.0,22715.0,2112.0 +2642458,2642459,0.0,1070634,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642459,2642460,66.0,1070634,4,1,8,4,6.0,25.0,4.0,-9.0,4.0,5241,9.0,22715.0,2112.0 +2642460,2642461,61.0,1070634,5,2,8,4,6.0,-9.0,-9.0,-9.0,4.0,5241,9.0,22715.0,2112.0 +2642461,2642462,33.0,1070635,1,1,0,1,1.0,32.0,1.0,16.0,4.0,6214,14.0,22714.0,2112.0 +2642462,2642463,34.0,1070635,2,2,1,4,2.0,40.0,1.0,16.0,4.0,6214,14.0,22714.0,2112.0 +2642463,2642464,0.0,1070635,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642464,2642465,66.0,1070635,4,1,8,4,6.0,25.0,4.0,-9.0,4.0,5241,9.0,22714.0,2112.0 +2642465,2642466,61.0,1070635,5,2,8,4,6.0,-9.0,-9.0,-9.0,4.0,5241,9.0,22714.0,2112.0 +2642466,2642467,36.0,1070636,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22714.0,2112.0 +2642467,2642468,36.0,1070636,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,5416,10.0,22714.0,2112.0 +2642468,2642469,10.0,1070636,3,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22714.0,2112.0 +2642469,2642470,4.0,1070636,4,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642470,2642471,1.0,1070636,5,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642471,2642472,36.0,1070637,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22704.0,2110.0 +2642472,2642473,36.0,1070637,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,5416,10.0,22704.0,2110.0 +2642473,2642474,10.0,1070637,3,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22704.0,2110.0 +2642474,2642475,4.0,1070637,4,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642475,2642476,1.0,1070637,5,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22704.0,2110.0 +2642476,2642477,42.0,1070638,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22704.0,2110.0 +2642477,2642478,44.0,1070638,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22704.0,2110.0 +2642478,2642479,9.0,1070638,3,2,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22704.0,2110.0 +2642479,2642480,6.0,1070638,4,2,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22704.0,2110.0 +2642480,2642481,37.0,1070639,1,2,0,1,1.0,24.0,1.0,-9.0,4.0,5415,10.0,22716.0,2112.0 +2642481,2642482,42.0,1070639,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22716.0,2112.0 +2642482,2642483,4.0,1070639,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642483,2642484,2.0,1070639,4,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22716.0,2112.0 +2642484,2642485,37.0,1070640,1,2,0,1,1.0,24.0,1.0,-9.0,4.0,5415,10.0,22715.0,2112.0 +2642485,2642486,42.0,1070640,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22715.0,2112.0 +2642486,2642487,4.0,1070640,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22715.0,2112.0 +2642487,2642488,2.0,1070640,4,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642488,2642489,37.0,1070641,1,2,0,1,1.0,24.0,1.0,-9.0,4.0,5415,10.0,22715.0,2112.0 +2642489,2642490,42.0,1070641,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22715.0,2112.0 +2642490,2642491,4.0,1070641,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22715.0,2112.0 +2642491,2642492,2.0,1070641,4,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642492,2642493,42.0,1070642,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22704.0,2110.0 +2642493,2642494,42.0,1070642,2,2,1,1,1.0,15.0,1.0,-9.0,4.0,6213ZM,14.0,22704.0,2110.0 +2642494,2642495,10.0,1070642,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22704.0,2110.0 +2642495,2642496,8.0,1070642,4,1,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22704.0,2110.0 +2642496,2642497,42.0,1070643,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22714.0,2112.0 +2642497,2642498,42.0,1070643,2,2,1,1,1.0,15.0,1.0,-9.0,4.0,6213ZM,14.0,22714.0,2112.0 +2642498,2642499,10.0,1070643,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642499,2642500,8.0,1070643,4,1,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22714.0,2112.0 +2642500,2642501,43.0,1070644,1,1,0,1,1.0,52.0,2.0,-9.0,4.0,52M2,9.0,22716.0,2112.0 +2642501,2642502,43.0,1070644,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22716.0,2112.0 +2642502,2642503,16.0,1070644,3,1,2,1,1.0,5.0,6.0,13.0,-9.0,52M2,9.0,22716.0,2112.0 +2642503,2642504,14.0,1070644,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22716.0,2112.0 +2642504,2642505,28.0,1070645,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22715.0,2112.0 +2642505,2642506,29.0,1070645,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22715.0,2112.0 +2642506,2642507,1.0,1070645,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642507,2642508,37.0,1070646,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,481,6.0,22716.0,2112.0 +2642508,2642509,37.0,1070646,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,481,6.0,22716.0,2112.0 +2642509,2642510,12.0,1070646,3,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22716.0,2112.0 +2642510,2642511,33.0,1070647,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22718.0,2112.0 +2642511,2642512,36.0,1070647,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22718.0,2112.0 +2642512,2642513,0.0,1070647,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22718.0,2112.0 +2642513,2642514,44.0,1070648,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2642514,2642515,42.0,1070648,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22714.0,2112.0 +2642515,2642516,7.0,1070648,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22714.0,2112.0 +2642516,2642517,33.0,1070649,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22704.0,2110.0 +2642517,2642518,36.0,1070649,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22704.0,2110.0 +2642518,2642519,0.0,1070649,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22704.0,2110.0 +2642519,2642520,44.0,1070650,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,52M2,9.0,22715.0,2112.0 +2642520,2642521,43.0,1070650,2,2,1,1,1.0,10.0,5.0,-9.0,4.0,52M2,9.0,22715.0,2112.0 +2642521,2642522,6.0,1070650,3,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22715.0,2112.0 +2642522,2642523,41.0,1070651,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,336M,3.0,22714.0,2112.0 +2642523,2642524,42.0,1070651,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22714.0,2112.0 +2642524,2642525,3.0,1070651,3,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642525,2642526,33.0,1070652,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22716.0,2112.0 +2642526,2642527,33.0,1070652,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22716.0,2112.0 +2642527,2642528,2.0,1070652,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22716.0,2112.0 +2642528,2642529,33.0,1070653,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22717.0,2112.0 +2642529,2642530,33.0,1070653,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22717.0,2112.0 +2642530,2642531,2.0,1070653,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22717.0,2112.0 +2642531,2642532,38.0,1070654,1,1,0,1,1.0,15.0,1.0,-9.0,4.0,3279,3.0,22715.0,2112.0 +2642532,2642533,2.0,1070654,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642533,2642534,0.0,1070654,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642534,2642535,0.0,1070654,4,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22715.0,2112.0 +2642535,2642536,31.0,1070654,5,2,13,1,1.0,55.0,1.0,-9.0,4.0,3115,3.0,22715.0,2112.0 +2642536,2642537,42.0,1070655,1,1,0,1,1.0,45.0,2.0,-9.0,4.0,56173,12.0,22699.0,2110.0 +2642537,2642538,10.0,1070655,2,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22699.0,2110.0 +2642538,2642539,8.0,1070655,3,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22699.0,2110.0 +2642539,2642540,35.0,1070655,4,2,13,1,1.0,43.0,1.0,-9.0,4.0,5415,10.0,22699.0,2110.0 +2642540,2642541,42.0,1070656,1,1,0,1,1.0,45.0,2.0,-9.0,4.0,56173,12.0,22714.0,2112.0 +2642541,2642542,10.0,1070656,2,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22714.0,2112.0 +2642542,2642543,8.0,1070656,3,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22714.0,2112.0 +2642543,2642544,35.0,1070656,4,2,13,1,1.0,43.0,1.0,-9.0,4.0,5415,10.0,22714.0,2112.0 +2642544,2642545,42.0,1070657,1,1,0,1,1.0,45.0,2.0,-9.0,4.0,56173,12.0,22717.0,2112.0 +2642545,2642546,10.0,1070657,2,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22717.0,2112.0 +2642546,2642547,8.0,1070657,3,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22717.0,2112.0 +2642547,2642548,35.0,1070657,4,2,13,1,1.0,43.0,1.0,-9.0,4.0,5415,10.0,22717.0,2112.0 +2642548,2642549,43.0,1070658,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22715.0,2112.0 +2642549,2642550,19.0,1070658,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22715.0,2112.0 +2642550,2642551,8.0,1070658,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22715.0,2112.0 +2642551,2642552,7.0,1070658,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22715.0,2112.0 +2642552,2642553,5.0,1070658,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22715.0,2112.0 +2642553,2642554,3.0,1070658,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22715.0,2112.0 +2642554,2642555,3.0,1070658,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22715.0,2112.0 +2642555,2642556,13.0,1070658,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22715.0,2112.0 +2642556,2642557,11.0,1070658,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22715.0,2112.0 +2642557,2642558,43.0,1070659,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22690.0,2110.0 +2642558,2642559,19.0,1070659,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22690.0,2110.0 +2642559,2642560,8.0,1070659,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22690.0,2110.0 +2642560,2642561,7.0,1070659,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22690.0,2110.0 +2642561,2642562,5.0,1070659,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22690.0,2110.0 +2642562,2642563,3.0,1070659,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22690.0,2110.0 +2642563,2642564,3.0,1070659,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22690.0,2110.0 +2642564,2642565,13.0,1070659,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22690.0,2110.0 +2642565,2642566,11.0,1070659,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22690.0,2110.0 +2642566,2642567,43.0,1070660,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22704.0,2110.0 +2642567,2642568,19.0,1070660,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22704.0,2110.0 +2642568,2642569,8.0,1070660,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22704.0,2110.0 +2642569,2642570,7.0,1070660,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22704.0,2110.0 +2642570,2642571,5.0,1070660,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642571,2642572,3.0,1070660,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642572,2642573,3.0,1070660,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642573,2642574,13.0,1070660,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22704.0,2110.0 +2642574,2642575,11.0,1070660,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22704.0,2110.0 +2642575,2642576,43.0,1070661,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22716.0,2112.0 +2642576,2642577,19.0,1070661,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22716.0,2112.0 +2642577,2642578,8.0,1070661,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22716.0,2112.0 +2642578,2642579,7.0,1070661,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22716.0,2112.0 +2642579,2642580,5.0,1070661,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642580,2642581,3.0,1070661,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642581,2642582,3.0,1070661,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642582,2642583,13.0,1070661,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22716.0,2112.0 +2642583,2642584,11.0,1070661,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22716.0,2112.0 +2642584,2642585,43.0,1070662,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22716.0,2112.0 +2642585,2642586,19.0,1070662,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22716.0,2112.0 +2642586,2642587,8.0,1070662,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22716.0,2112.0 +2642587,2642588,7.0,1070662,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22716.0,2112.0 +2642588,2642589,5.0,1070662,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642589,2642590,3.0,1070662,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642590,2642591,3.0,1070662,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642591,2642592,13.0,1070662,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22716.0,2112.0 +2642592,2642593,11.0,1070662,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22716.0,2112.0 +2642593,2642594,43.0,1070663,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22717.0,2112.0 +2642594,2642595,19.0,1070663,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22717.0,2112.0 +2642595,2642596,8.0,1070663,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22717.0,2112.0 +2642596,2642597,7.0,1070663,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22717.0,2112.0 +2642597,2642598,5.0,1070663,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642598,2642599,3.0,1070663,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642599,2642600,3.0,1070663,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642600,2642601,13.0,1070663,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22717.0,2112.0 +2642601,2642602,11.0,1070663,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22717.0,2112.0 +2642602,2642603,43.0,1070664,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22717.0,2112.0 +2642603,2642604,19.0,1070664,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22717.0,2112.0 +2642604,2642605,8.0,1070664,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22717.0,2112.0 +2642605,2642606,7.0,1070664,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22717.0,2112.0 +2642606,2642607,5.0,1070664,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642607,2642608,3.0,1070664,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642608,2642609,3.0,1070664,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642609,2642610,13.0,1070664,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22717.0,2112.0 +2642610,2642611,11.0,1070664,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22717.0,2112.0 +2642611,2642612,43.0,1070665,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2642612,2642613,19.0,1070665,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22714.0,2112.0 +2642613,2642614,8.0,1070665,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642614,2642615,7.0,1070665,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22714.0,2112.0 +2642615,2642616,5.0,1070665,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642616,2642617,3.0,1070665,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642617,2642618,3.0,1070665,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642618,2642619,13.0,1070665,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22714.0,2112.0 +2642619,2642620,11.0,1070665,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22714.0,2112.0 +2642620,2642621,43.0,1070666,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2642621,2642622,19.0,1070666,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22714.0,2112.0 +2642622,2642623,8.0,1070666,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642623,2642624,7.0,1070666,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22714.0,2112.0 +2642624,2642625,5.0,1070666,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642625,2642626,3.0,1070666,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642626,2642627,3.0,1070666,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642627,2642628,13.0,1070666,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22714.0,2112.0 +2642628,2642629,11.0,1070666,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22714.0,2112.0 +2642629,2642630,43.0,1070667,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22690.0,2110.0 +2642630,2642631,19.0,1070667,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22690.0,2110.0 +2642631,2642632,8.0,1070667,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22690.0,2110.0 +2642632,2642633,7.0,1070667,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22690.0,2110.0 +2642633,2642634,5.0,1070667,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22690.0,2110.0 +2642634,2642635,3.0,1070667,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22690.0,2110.0 +2642635,2642636,3.0,1070667,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22690.0,2110.0 +2642636,2642637,13.0,1070667,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22690.0,2110.0 +2642637,2642638,11.0,1070667,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22690.0,2110.0 +2642638,2642639,43.0,1070668,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22704.0,2110.0 +2642639,2642640,19.0,1070668,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22704.0,2110.0 +2642640,2642641,8.0,1070668,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22704.0,2110.0 +2642641,2642642,7.0,1070668,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22704.0,2110.0 +2642642,2642643,5.0,1070668,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642643,2642644,3.0,1070668,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642644,2642645,3.0,1070668,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642645,2642646,13.0,1070668,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22704.0,2110.0 +2642646,2642647,11.0,1070668,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22704.0,2110.0 +2642647,2642648,43.0,1070669,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22704.0,2110.0 +2642648,2642649,19.0,1070669,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22704.0,2110.0 +2642649,2642650,8.0,1070669,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22704.0,2110.0 +2642650,2642651,7.0,1070669,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22704.0,2110.0 +2642651,2642652,5.0,1070669,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642652,2642653,3.0,1070669,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642653,2642654,3.0,1070669,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642654,2642655,13.0,1070669,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22704.0,2110.0 +2642655,2642656,11.0,1070669,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22704.0,2110.0 +2642656,2642657,43.0,1070670,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22699.0,2110.0 +2642657,2642658,19.0,1070670,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22699.0,2110.0 +2642658,2642659,8.0,1070670,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22699.0,2110.0 +2642659,2642660,7.0,1070670,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22699.0,2110.0 +2642660,2642661,5.0,1070670,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22699.0,2110.0 +2642661,2642662,3.0,1070670,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22699.0,2110.0 +2642662,2642663,3.0,1070670,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22699.0,2110.0 +2642663,2642664,13.0,1070670,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22699.0,2110.0 +2642664,2642665,11.0,1070670,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22699.0,2110.0 +2642665,2642666,43.0,1070671,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22717.0,2112.0 +2642666,2642667,19.0,1070671,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22717.0,2112.0 +2642667,2642668,8.0,1070671,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22717.0,2112.0 +2642668,2642669,7.0,1070671,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22717.0,2112.0 +2642669,2642670,5.0,1070671,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642670,2642671,3.0,1070671,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642671,2642672,3.0,1070671,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642672,2642673,13.0,1070671,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22717.0,2112.0 +2642673,2642674,11.0,1070671,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22717.0,2112.0 +2642674,2642675,43.0,1070672,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22716.0,2112.0 +2642675,2642676,19.0,1070672,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22716.0,2112.0 +2642676,2642677,8.0,1070672,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22716.0,2112.0 +2642677,2642678,7.0,1070672,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22716.0,2112.0 +2642678,2642679,5.0,1070672,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642679,2642680,3.0,1070672,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642680,2642681,3.0,1070672,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642681,2642682,13.0,1070672,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22716.0,2112.0 +2642682,2642683,11.0,1070672,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22716.0,2112.0 +2642683,2642684,43.0,1070673,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22717.0,2112.0 +2642684,2642685,19.0,1070673,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22717.0,2112.0 +2642685,2642686,8.0,1070673,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22717.0,2112.0 +2642686,2642687,7.0,1070673,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22717.0,2112.0 +2642687,2642688,5.0,1070673,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642688,2642689,3.0,1070673,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642689,2642690,3.0,1070673,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642690,2642691,13.0,1070673,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22717.0,2112.0 +2642691,2642692,11.0,1070673,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22717.0,2112.0 +2642692,2642693,43.0,1070674,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22716.0,2112.0 +2642693,2642694,19.0,1070674,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22716.0,2112.0 +2642694,2642695,8.0,1070674,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22716.0,2112.0 +2642695,2642696,7.0,1070674,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22716.0,2112.0 +2642696,2642697,5.0,1070674,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642697,2642698,3.0,1070674,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642698,2642699,3.0,1070674,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642699,2642700,13.0,1070674,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22716.0,2112.0 +2642700,2642701,11.0,1070674,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22716.0,2112.0 +2642701,2642702,43.0,1070675,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22715.0,2112.0 +2642702,2642703,19.0,1070675,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22715.0,2112.0 +2642703,2642704,8.0,1070675,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22715.0,2112.0 +2642704,2642705,7.0,1070675,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22715.0,2112.0 +2642705,2642706,5.0,1070675,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22715.0,2112.0 +2642706,2642707,3.0,1070675,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22715.0,2112.0 +2642707,2642708,3.0,1070675,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22715.0,2112.0 +2642708,2642709,13.0,1070675,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22715.0,2112.0 +2642709,2642710,11.0,1070675,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22715.0,2112.0 +2642710,2642711,43.0,1070676,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2642711,2642712,19.0,1070676,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22714.0,2112.0 +2642712,2642713,8.0,1070676,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642713,2642714,7.0,1070676,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22714.0,2112.0 +2642714,2642715,5.0,1070676,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642715,2642716,3.0,1070676,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642716,2642717,3.0,1070676,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642717,2642718,13.0,1070676,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22714.0,2112.0 +2642718,2642719,11.0,1070676,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22714.0,2112.0 +2642719,2642720,43.0,1070677,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2642720,2642721,19.0,1070677,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22714.0,2112.0 +2642721,2642722,8.0,1070677,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642722,2642723,7.0,1070677,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22714.0,2112.0 +2642723,2642724,5.0,1070677,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642724,2642725,3.0,1070677,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642725,2642726,3.0,1070677,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642726,2642727,13.0,1070677,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22714.0,2112.0 +2642727,2642728,11.0,1070677,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22714.0,2112.0 +2642728,2642729,43.0,1070678,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22690.0,2110.0 +2642729,2642730,19.0,1070678,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22690.0,2110.0 +2642730,2642731,8.0,1070678,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22690.0,2110.0 +2642731,2642732,7.0,1070678,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22690.0,2110.0 +2642732,2642733,5.0,1070678,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22690.0,2110.0 +2642733,2642734,3.0,1070678,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22690.0,2110.0 +2642734,2642735,3.0,1070678,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22690.0,2110.0 +2642735,2642736,13.0,1070678,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22690.0,2110.0 +2642736,2642737,11.0,1070678,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22690.0,2110.0 +2642737,2642738,43.0,1070679,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2642738,2642739,19.0,1070679,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22714.0,2112.0 +2642739,2642740,8.0,1070679,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642740,2642741,7.0,1070679,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22714.0,2112.0 +2642741,2642742,5.0,1070679,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642742,2642743,3.0,1070679,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642743,2642744,3.0,1070679,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642744,2642745,13.0,1070679,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22714.0,2112.0 +2642745,2642746,11.0,1070679,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22714.0,2112.0 +2642746,2642747,43.0,1070680,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22718.0,2112.0 +2642747,2642748,19.0,1070680,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22718.0,2112.0 +2642748,2642749,8.0,1070680,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22718.0,2112.0 +2642749,2642750,7.0,1070680,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22718.0,2112.0 +2642750,2642751,5.0,1070680,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22718.0,2112.0 +2642751,2642752,3.0,1070680,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22718.0,2112.0 +2642752,2642753,3.0,1070680,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22718.0,2112.0 +2642753,2642754,13.0,1070680,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22718.0,2112.0 +2642754,2642755,11.0,1070680,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22718.0,2112.0 +2642755,2642756,43.0,1070681,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2642756,2642757,19.0,1070681,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22714.0,2112.0 +2642757,2642758,8.0,1070681,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642758,2642759,7.0,1070681,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22714.0,2112.0 +2642759,2642760,5.0,1070681,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642760,2642761,3.0,1070681,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642761,2642762,3.0,1070681,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642762,2642763,13.0,1070681,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22714.0,2112.0 +2642763,2642764,11.0,1070681,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22714.0,2112.0 +2642764,2642765,43.0,1070682,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22719.0,2112.0 +2642765,2642766,19.0,1070682,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22719.0,2112.0 +2642766,2642767,8.0,1070682,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22719.0,2112.0 +2642767,2642768,7.0,1070682,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22719.0,2112.0 +2642768,2642769,5.0,1070682,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22719.0,2112.0 +2642769,2642770,3.0,1070682,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22719.0,2112.0 +2642770,2642771,3.0,1070682,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22719.0,2112.0 +2642771,2642772,13.0,1070682,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22719.0,2112.0 +2642772,2642773,11.0,1070682,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22719.0,2112.0 +2642773,2642774,43.0,1070683,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22718.0,2112.0 +2642774,2642775,19.0,1070683,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22718.0,2112.0 +2642775,2642776,8.0,1070683,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22718.0,2112.0 +2642776,2642777,7.0,1070683,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22718.0,2112.0 +2642777,2642778,5.0,1070683,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22718.0,2112.0 +2642778,2642779,3.0,1070683,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22718.0,2112.0 +2642779,2642780,3.0,1070683,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22718.0,2112.0 +2642780,2642781,13.0,1070683,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22718.0,2112.0 +2642781,2642782,11.0,1070683,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22718.0,2112.0 +2642782,2642783,43.0,1070684,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22683.0,2108.0 +2642783,2642784,19.0,1070684,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22683.0,2108.0 +2642784,2642785,8.0,1070684,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22683.0,2108.0 +2642785,2642786,7.0,1070684,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22683.0,2108.0 +2642786,2642787,5.0,1070684,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22683.0,2108.0 +2642787,2642788,3.0,1070684,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22683.0,2108.0 +2642788,2642789,3.0,1070684,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22683.0,2108.0 +2642789,2642790,13.0,1070684,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22683.0,2108.0 +2642790,2642791,11.0,1070684,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22683.0,2108.0 +2642791,2642792,43.0,1070685,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22715.0,2112.0 +2642792,2642793,19.0,1070685,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22715.0,2112.0 +2642793,2642794,8.0,1070685,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22715.0,2112.0 +2642794,2642795,7.0,1070685,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22715.0,2112.0 +2642795,2642796,5.0,1070685,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22715.0,2112.0 +2642796,2642797,3.0,1070685,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22715.0,2112.0 +2642797,2642798,3.0,1070685,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22715.0,2112.0 +2642798,2642799,13.0,1070685,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22715.0,2112.0 +2642799,2642800,11.0,1070685,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22715.0,2112.0 +2642800,2642801,43.0,1070686,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22716.0,2112.0 +2642801,2642802,19.0,1070686,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22716.0,2112.0 +2642802,2642803,8.0,1070686,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22716.0,2112.0 +2642803,2642804,7.0,1070686,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22716.0,2112.0 +2642804,2642805,5.0,1070686,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642805,2642806,3.0,1070686,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642806,2642807,3.0,1070686,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22716.0,2112.0 +2642807,2642808,13.0,1070686,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22716.0,2112.0 +2642808,2642809,11.0,1070686,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22716.0,2112.0 +2642809,2642810,43.0,1070687,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22719.0,2112.0 +2642810,2642811,19.0,1070687,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22719.0,2112.0 +2642811,2642812,8.0,1070687,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22719.0,2112.0 +2642812,2642813,7.0,1070687,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22719.0,2112.0 +2642813,2642814,5.0,1070687,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22719.0,2112.0 +2642814,2642815,3.0,1070687,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22719.0,2112.0 +2642815,2642816,3.0,1070687,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22719.0,2112.0 +2642816,2642817,13.0,1070687,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22719.0,2112.0 +2642817,2642818,11.0,1070687,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22719.0,2112.0 +2642818,2642819,43.0,1070688,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22699.0,2110.0 +2642819,2642820,19.0,1070688,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22699.0,2110.0 +2642820,2642821,8.0,1070688,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22699.0,2110.0 +2642821,2642822,7.0,1070688,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22699.0,2110.0 +2642822,2642823,5.0,1070688,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22699.0,2110.0 +2642823,2642824,3.0,1070688,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22699.0,2110.0 +2642824,2642825,3.0,1070688,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22699.0,2110.0 +2642825,2642826,13.0,1070688,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22699.0,2110.0 +2642826,2642827,11.0,1070688,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22699.0,2110.0 +2642827,2642828,43.0,1070689,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22719.0,2112.0 +2642828,2642829,19.0,1070689,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22719.0,2112.0 +2642829,2642830,8.0,1070689,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22719.0,2112.0 +2642830,2642831,7.0,1070689,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22719.0,2112.0 +2642831,2642832,5.0,1070689,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22719.0,2112.0 +2642832,2642833,3.0,1070689,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22719.0,2112.0 +2642833,2642834,3.0,1070689,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22719.0,2112.0 +2642834,2642835,13.0,1070689,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22719.0,2112.0 +2642835,2642836,11.0,1070689,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22719.0,2112.0 +2642836,2642837,43.0,1070690,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22704.0,2110.0 +2642837,2642838,19.0,1070690,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22704.0,2110.0 +2642838,2642839,8.0,1070690,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22704.0,2110.0 +2642839,2642840,7.0,1070690,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22704.0,2110.0 +2642840,2642841,5.0,1070690,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642841,2642842,3.0,1070690,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642842,2642843,3.0,1070690,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642843,2642844,13.0,1070690,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22704.0,2110.0 +2642844,2642845,11.0,1070690,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22704.0,2110.0 +2642845,2642846,43.0,1070691,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22704.0,2110.0 +2642846,2642847,19.0,1070691,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22704.0,2110.0 +2642847,2642848,8.0,1070691,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22704.0,2110.0 +2642848,2642849,7.0,1070691,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22704.0,2110.0 +2642849,2642850,5.0,1070691,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642850,2642851,3.0,1070691,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642851,2642852,3.0,1070691,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22704.0,2110.0 +2642852,2642853,13.0,1070691,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22704.0,2110.0 +2642853,2642854,11.0,1070691,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22704.0,2110.0 +2642854,2642855,43.0,1070692,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22699.0,2110.0 +2642855,2642856,19.0,1070692,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22699.0,2110.0 +2642856,2642857,8.0,1070692,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22699.0,2110.0 +2642857,2642858,7.0,1070692,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22699.0,2110.0 +2642858,2642859,5.0,1070692,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22699.0,2110.0 +2642859,2642860,3.0,1070692,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22699.0,2110.0 +2642860,2642861,3.0,1070692,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22699.0,2110.0 +2642861,2642862,13.0,1070692,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22699.0,2110.0 +2642862,2642863,11.0,1070692,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22699.0,2110.0 +2642863,2642864,43.0,1070693,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22682.0,2108.0 +2642864,2642865,19.0,1070693,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22682.0,2108.0 +2642865,2642866,8.0,1070693,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22682.0,2108.0 +2642866,2642867,7.0,1070693,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22682.0,2108.0 +2642867,2642868,5.0,1070693,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22682.0,2108.0 +2642868,2642869,3.0,1070693,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22682.0,2108.0 +2642869,2642870,3.0,1070693,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22682.0,2108.0 +2642870,2642871,13.0,1070693,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22682.0,2108.0 +2642871,2642872,11.0,1070693,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22682.0,2108.0 +2642872,2642873,43.0,1070694,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22714.0,2112.0 +2642873,2642874,19.0,1070694,2,2,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22714.0,2112.0 +2642874,2642875,8.0,1070694,3,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22714.0,2112.0 +2642875,2642876,7.0,1070694,4,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22714.0,2112.0 +2642876,2642877,5.0,1070694,5,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642877,2642878,3.0,1070694,6,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642878,2642879,3.0,1070694,7,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22714.0,2112.0 +2642879,2642880,13.0,1070694,8,1,5,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22714.0,2112.0 +2642880,2642881,11.0,1070694,9,1,5,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22714.0,2112.0 +2642881,2642882,36.0,1070695,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22715.0,2112.0 +2642882,2642883,6.0,1070695,2,2,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22715.0,2112.0 +2642883,2642884,35.0,1070696,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22714.0,2112.0 +2642884,2642885,11.0,1070696,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22714.0,2112.0 +2642885,2642886,35.0,1070697,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22718.0,2112.0 +2642886,2642887,11.0,1070697,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22718.0,2112.0 +2642887,2642888,35.0,1070698,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22718.0,2112.0 +2642888,2642889,11.0,1070698,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22718.0,2112.0 +2642889,2642890,35.0,1070699,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22719.0,2112.0 +2642890,2642891,11.0,1070699,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22719.0,2112.0 +2642891,2642892,35.0,1070700,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22716.0,2112.0 +2642892,2642893,11.0,1070700,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22716.0,2112.0 +2642893,2642894,35.0,1070701,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22715.0,2112.0 +2642894,2642895,11.0,1070701,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22715.0,2112.0 +2642895,2642896,35.0,1070702,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22717.0,2112.0 +2642896,2642897,3.0,1070702,2,2,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22717.0,2112.0 +2642897,2642898,65.0,1070703,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2642898,2642899,74.0,1070704,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,6211,14.0,22696.0,2110.0 +2642899,2642900,58.0,1070704,2,2,1,4,1.0,40.0,1.0,-9.0,4.0,6211,14.0,22696.0,2110.0 +2642900,2642901,74.0,1070705,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,6211,14.0,22696.0,2110.0 +2642901,2642902,58.0,1070705,2,2,1,4,1.0,40.0,1.0,-9.0,4.0,6211,14.0,22696.0,2110.0 +2642902,2642903,68.0,1070706,1,1,0,4,1.0,50.0,1.0,-9.0,4.0,8139Z,17.0,22696.0,2110.0 +2642903,2642904,62.0,1070706,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2642904,2642905,68.0,1070707,1,1,0,4,1.0,50.0,1.0,-9.0,4.0,8139Z,17.0,22696.0,2110.0 +2642905,2642906,62.0,1070707,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2642906,2642907,67.0,1070708,1,1,0,4,1.0,8.0,2.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642907,2642908,61.0,1070708,2,2,1,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642908,2642909,67.0,1070709,1,1,0,4,1.0,8.0,2.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642909,2642910,61.0,1070709,2,2,1,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642910,2642911,67.0,1070710,1,1,0,4,1.0,8.0,2.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2642911,2642912,61.0,1070710,2,2,1,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22701.0,2110.0 +2642912,2642913,67.0,1070711,1,1,0,4,1.0,8.0,2.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642913,2642914,61.0,1070711,2,2,1,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642914,2642915,67.0,1070712,1,1,0,4,1.0,8.0,2.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642915,2642916,61.0,1070712,2,2,1,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642916,2642917,94.0,1070713,1,1,0,4,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2642917,2642918,94.0,1070714,1,1,0,4,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2642918,2642919,94.0,1070715,1,1,0,4,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2642919,2642920,94.0,1070716,1,1,0,4,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2642920,2642921,94.0,1070717,1,1,0,4,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22701.0,2110.0 +2642921,2642922,67.0,1070718,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642922,2642923,64.0,1070718,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642923,2642924,52.0,1070718,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642924,2642925,67.0,1070719,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642925,2642926,64.0,1070719,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642926,2642927,52.0,1070719,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642927,2642928,67.0,1070720,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642928,2642929,64.0,1070720,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642929,2642930,52.0,1070720,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22695.0,2110.0 +2642930,2642931,67.0,1070721,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642931,2642932,64.0,1070721,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642932,2642933,52.0,1070721,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642933,2642934,67.0,1070722,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642934,2642935,64.0,1070722,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642935,2642936,52.0,1070722,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642936,2642937,67.0,1070723,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642937,2642938,64.0,1070723,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642938,2642939,52.0,1070723,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642939,2642940,67.0,1070724,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642940,2642941,64.0,1070724,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642941,2642942,52.0,1070724,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22695.0,2110.0 +2642942,2642943,67.0,1070725,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642943,2642944,64.0,1070725,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642944,2642945,52.0,1070725,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642945,2642946,67.0,1070726,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2642946,2642947,64.0,1070726,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2642947,2642948,52.0,1070726,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22701.0,2110.0 +2642948,2642949,67.0,1070727,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642949,2642950,64.0,1070727,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642950,2642951,52.0,1070727,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642951,2642952,67.0,1070728,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642952,2642953,64.0,1070728,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642953,2642954,52.0,1070728,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642954,2642955,67.0,1070729,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642955,2642956,64.0,1070729,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642956,2642957,52.0,1070729,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642957,2642958,67.0,1070730,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642958,2642959,64.0,1070730,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642959,2642960,52.0,1070730,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642960,2642961,67.0,1070731,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642961,2642962,64.0,1070731,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642962,2642963,52.0,1070731,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642963,2642964,67.0,1070732,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642964,2642965,64.0,1070732,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642965,2642966,52.0,1070732,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642966,2642967,67.0,1070733,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642967,2642968,64.0,1070733,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642968,2642969,52.0,1070733,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22695.0,2110.0 +2642969,2642970,67.0,1070734,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642970,2642971,64.0,1070734,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642971,2642972,52.0,1070734,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642972,2642973,67.0,1070735,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642973,2642974,64.0,1070735,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642974,2642975,52.0,1070735,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642975,2642976,67.0,1070736,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2642976,2642977,64.0,1070736,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2642977,2642978,52.0,1070736,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22701.0,2110.0 +2642978,2642979,67.0,1070737,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642979,2642980,64.0,1070737,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642980,2642981,52.0,1070737,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22695.0,2110.0 +2642981,2642982,67.0,1070738,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642982,2642983,64.0,1070738,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642983,2642984,52.0,1070738,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642984,2642985,67.0,1070739,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642985,2642986,64.0,1070739,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642986,2642987,52.0,1070739,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22695.0,2110.0 +2642987,2642988,67.0,1070740,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642988,2642989,64.0,1070740,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2642989,2642990,52.0,1070740,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22695.0,2110.0 +2642990,2642991,67.0,1070741,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642991,2642992,64.0,1070741,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642992,2642993,52.0,1070741,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642993,2642994,67.0,1070742,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642994,2642995,64.0,1070742,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642995,2642996,52.0,1070742,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642996,2642997,67.0,1070743,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642997,2642998,64.0,1070743,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2642998,2642999,52.0,1070743,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2642999,2643000,67.0,1070744,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643000,2643001,64.0,1070744,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643001,2643002,52.0,1070744,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643002,2643003,67.0,1070745,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643003,2643004,64.0,1070745,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643004,2643005,52.0,1070745,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643005,2643006,67.0,1070746,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643006,2643007,64.0,1070746,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643007,2643008,52.0,1070746,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643008,2643009,67.0,1070747,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643009,2643010,64.0,1070747,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643010,2643011,52.0,1070747,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643011,2643012,67.0,1070748,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2643012,2643013,64.0,1070748,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2643013,2643014,52.0,1070748,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22701.0,2110.0 +2643014,2643015,67.0,1070749,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643015,2643016,64.0,1070749,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643016,2643017,52.0,1070749,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643017,2643018,67.0,1070750,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643018,2643019,64.0,1070750,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643019,2643020,52.0,1070750,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643020,2643021,67.0,1070751,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643021,2643022,64.0,1070751,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643022,2643023,52.0,1070751,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643023,2643024,67.0,1070752,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643024,2643025,64.0,1070752,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643025,2643026,52.0,1070752,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643026,2643027,67.0,1070753,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643027,2643028,64.0,1070753,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643028,2643029,52.0,1070753,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643029,2643030,67.0,1070754,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643030,2643031,64.0,1070754,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643031,2643032,52.0,1070754,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643032,2643033,67.0,1070755,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2643033,2643034,64.0,1070755,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2643034,2643035,52.0,1070755,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22701.0,2110.0 +2643035,2643036,67.0,1070756,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643036,2643037,64.0,1070756,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643037,2643038,52.0,1070756,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643038,2643039,67.0,1070757,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2643039,2643040,64.0,1070757,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2643040,2643041,52.0,1070757,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22695.0,2110.0 +2643041,2643042,67.0,1070758,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643042,2643043,64.0,1070758,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643043,2643044,52.0,1070758,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643044,2643045,67.0,1070759,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643045,2643046,64.0,1070759,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643046,2643047,52.0,1070759,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643047,2643048,67.0,1070760,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643048,2643049,64.0,1070760,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643049,2643050,52.0,1070760,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643050,2643051,67.0,1070761,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643051,2643052,64.0,1070761,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643052,2643053,52.0,1070761,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643053,2643054,67.0,1070762,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643054,2643055,64.0,1070762,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643055,2643056,52.0,1070762,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643056,2643057,67.0,1070763,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2643057,2643058,64.0,1070763,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2643058,2643059,52.0,1070763,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22701.0,2110.0 +2643059,2643060,67.0,1070764,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643060,2643061,64.0,1070764,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643061,2643062,52.0,1070764,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643062,2643063,67.0,1070765,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643063,2643064,64.0,1070765,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643064,2643065,52.0,1070765,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643065,2643066,67.0,1070766,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643066,2643067,64.0,1070766,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643067,2643068,52.0,1070766,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643068,2643069,67.0,1070767,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643069,2643070,64.0,1070767,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643070,2643071,52.0,1070767,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643071,2643072,67.0,1070768,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2643072,2643073,64.0,1070768,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2643073,2643074,52.0,1070768,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22695.0,2110.0 +2643074,2643075,67.0,1070769,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643075,2643076,64.0,1070769,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643076,2643077,52.0,1070769,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643077,2643078,67.0,1070770,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643078,2643079,64.0,1070770,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643079,2643080,52.0,1070770,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643080,2643081,67.0,1070771,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643081,2643082,64.0,1070771,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643082,2643083,52.0,1070771,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643083,2643084,67.0,1070772,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2643084,2643085,64.0,1070772,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22695.0,2110.0 +2643085,2643086,52.0,1070772,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22695.0,2110.0 +2643086,2643087,67.0,1070773,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643087,2643088,64.0,1070773,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643088,2643089,52.0,1070773,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643089,2643090,67.0,1070774,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643090,2643091,64.0,1070774,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643091,2643092,52.0,1070774,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643092,2643093,65.0,1070775,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643093,2643094,60.0,1070775,2,2,1,2,1.0,60.0,1.0,-9.0,4.0,515,8.0,22696.0,2110.0 +2643094,2643095,65.0,1070776,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22695.0,2110.0 +2643095,2643096,60.0,1070776,2,2,1,2,1.0,60.0,1.0,-9.0,4.0,515,8.0,22695.0,2110.0 +2643096,2643097,65.0,1070777,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643097,2643098,60.0,1070777,2,2,1,2,1.0,60.0,1.0,-9.0,4.0,515,8.0,22696.0,2110.0 +2643098,2643099,76.0,1070778,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643099,2643100,27.0,1070778,2,1,10,2,1.0,40.0,1.0,15.0,4.0,454110,5.0,22696.0,2110.0 +2643100,2643101,65.0,1070779,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22695.0,2110.0 +2643101,2643102,62.0,1070779,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643102,2643103,65.0,1070780,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22696.0,2110.0 +2643103,2643104,62.0,1070780,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643104,2643105,65.0,1070781,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22696.0,2110.0 +2643105,2643106,62.0,1070781,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643106,2643107,65.0,1070782,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22701.0,2110.0 +2643107,2643108,62.0,1070782,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643108,2643109,65.0,1070783,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22696.0,2110.0 +2643109,2643110,62.0,1070783,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643110,2643111,65.0,1070784,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22696.0,2110.0 +2643111,2643112,62.0,1070784,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643112,2643113,65.0,1070785,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22696.0,2110.0 +2643113,2643114,62.0,1070785,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643114,2643115,65.0,1070786,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22696.0,2110.0 +2643115,2643116,62.0,1070786,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643116,2643117,65.0,1070787,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22701.0,2110.0 +2643117,2643118,62.0,1070787,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643118,2643119,78.0,1070788,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643119,2643120,48.0,1070788,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,336M,3.0,22695.0,2110.0 +2643120,2643121,38.0,1070788,3,1,2,2,1.0,12.0,1.0,-9.0,4.0,3219ZM,3.0,22695.0,2110.0 +2643121,2643122,21.0,1070788,4,1,7,2,1.0,32.0,6.0,15.0,4.0,3211,3.0,22695.0,2110.0 +2643122,2643123,78.0,1070789,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643123,2643124,48.0,1070789,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643124,2643125,38.0,1070789,3,1,2,2,1.0,12.0,1.0,-9.0,4.0,3219ZM,3.0,22696.0,2110.0 +2643125,2643126,21.0,1070789,4,1,7,2,1.0,32.0,6.0,15.0,4.0,3211,3.0,22696.0,2110.0 +2643126,2643127,78.0,1070790,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643127,2643128,48.0,1070790,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643128,2643129,38.0,1070790,3,1,2,2,1.0,12.0,1.0,-9.0,4.0,3219ZM,3.0,22696.0,2110.0 +2643129,2643130,21.0,1070790,4,1,7,2,1.0,32.0,6.0,15.0,4.0,3211,3.0,22696.0,2110.0 +2643130,2643131,86.0,1070791,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643131,2643132,57.0,1070791,2,2,2,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643132,2643133,85.0,1070792,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643133,2643134,49.0,1070792,2,2,4,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22696.0,2110.0 +2643134,2643135,73.0,1070793,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643135,2643136,80.0,1070794,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643136,2643137,71.0,1070794,2,2,5,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643137,2643138,43.0,1070794,3,2,10,2,1.0,20.0,4.0,-9.0,4.0,6111,13.0,22696.0,2110.0 +2643138,2643139,11.0,1070794,4,2,10,2,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643139,2643140,76.0,1070795,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22696.0,2110.0 +2643140,2643141,77.0,1070795,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643141,2643142,50.0,1070795,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22696.0,2110.0 +2643142,2643143,18.0,1070795,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22696.0,2110.0 +2643143,2643144,76.0,1070796,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22696.0,2110.0 +2643144,2643145,77.0,1070796,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643145,2643146,50.0,1070796,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22696.0,2110.0 +2643146,2643147,18.0,1070796,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22696.0,2110.0 +2643147,2643148,76.0,1070797,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22696.0,2110.0 +2643148,2643149,77.0,1070797,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643149,2643150,50.0,1070797,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22696.0,2110.0 +2643150,2643151,18.0,1070797,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22696.0,2110.0 +2643151,2643152,65.0,1070798,1,2,0,1,1.0,20.0,1.0,-9.0,4.0,6111,13.0,22695.0,2110.0 +2643152,2643153,57.0,1070798,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M3,13.0,22695.0,2110.0 +2643153,2643154,65.0,1070799,1,2,0,1,1.0,20.0,1.0,-9.0,4.0,6111,13.0,22696.0,2110.0 +2643154,2643155,57.0,1070799,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M3,13.0,22696.0,2110.0 +2643155,2643156,65.0,1070800,1,1,0,1,1.0,38.0,1.0,-9.0,3.0,5617Z,12.0,22696.0,2110.0 +2643156,2643157,59.0,1070800,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,442,5.0,22696.0,2110.0 +2643157,2643158,74.0,1070801,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643158,2643159,69.0,1070802,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643159,2643160,67.0,1070803,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643160,2643161,81.0,1070804,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643161,2643162,50.0,1070804,2,1,2,1,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643162,2643163,84.0,1070805,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643163,2643164,64.0,1070805,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643164,2643165,66.0,1070806,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643165,2643166,64.0,1070806,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643166,2643167,66.0,1070807,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643167,2643168,64.0,1070807,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643168,2643169,66.0,1070808,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643169,2643170,64.0,1070808,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643170,2643171,70.0,1070809,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643171,2643172,51.0,1070809,2,2,15,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643172,2643173,70.0,1070810,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643173,2643174,51.0,1070810,2,2,15,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643174,2643175,83.0,1070811,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643175,2643176,83.0,1070812,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643176,2643177,76.0,1070813,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643177,2643178,70.0,1070814,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643178,2643179,73.0,1070815,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643179,2643180,58.0,1070815,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643180,2643181,73.0,1070816,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643181,2643182,58.0,1070816,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643182,2643183,65.0,1070817,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643183,2643184,65.0,1070818,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643184,2643185,72.0,1070819,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643185,2643186,80.0,1070820,1,2,0,1,1.0,15.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643186,2643187,83.0,1070821,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643187,2643188,58.0,1070821,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643188,2643189,83.0,1070822,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643189,2643190,58.0,1070822,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643190,2643191,80.0,1070823,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643191,2643192,65.0,1070824,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643192,2643193,94.0,1070825,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643193,2643194,71.0,1070826,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643194,2643195,94.0,1070827,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643195,2643196,77.0,1070828,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643196,2643197,77.0,1070829,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643197,2643198,89.0,1070830,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643198,2643199,88.0,1070831,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643199,2643200,80.0,1070832,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643200,2643201,87.0,1070833,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643201,2643202,87.0,1070834,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643202,2643203,74.0,1070835,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643203,2643204,85.0,1070836,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643204,2643205,68.0,1070837,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643205,2643206,66.0,1070838,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643206,2643207,69.0,1070839,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643207,2643208,67.0,1070840,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643208,2643209,66.0,1070841,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643209,2643210,74.0,1070842,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22695.0,2110.0 +2643210,2643211,85.0,1070843,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22696.0,2110.0 +2643211,2643212,66.0,1070844,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643212,2643213,74.0,1070845,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643213,2643214,75.0,1070846,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643214,2643215,74.0,1070847,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643215,2643216,77.0,1070848,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643216,2643217,75.0,1070849,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643217,2643218,74.0,1070850,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643218,2643219,67.0,1070851,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643219,2643220,73.0,1070852,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643220,2643221,60.0,1070852,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643221,2643222,66.0,1070853,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643222,2643223,70.0,1070854,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643223,2643224,94.0,1070855,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643224,2643225,94.0,1070856,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643225,2643226,80.0,1070857,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643226,2643227,90.0,1070858,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643227,2643228,54.0,1070859,1,2,0,3,1.0,20.0,3.0,-9.0,4.0,6111,13.0,22695.0,2110.0 +2643228,2643229,52.0,1070860,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22695.0,2110.0 +2643229,2643230,61.0,1070861,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643230,2643231,61.0,1070862,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22701.0,2110.0 +2643231,2643232,61.0,1070863,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643232,2643233,61.0,1070864,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643233,2643234,56.0,1070865,1,2,0,4,1.0,12.0,3.0,-9.0,4.0,6111,13.0,22696.0,2110.0 +2643234,2643235,67.0,1070865,2,1,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643235,2643236,56.0,1070866,1,2,0,4,1.0,12.0,3.0,-9.0,4.0,6111,13.0,22701.0,2110.0 +2643236,2643237,67.0,1070866,2,1,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643237,2643238,55.0,1070867,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643238,2643239,53.0,1070867,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643239,2643240,9.0,1070867,3,1,7,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22696.0,2110.0 +2643240,2643241,2.0,1070867,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643241,2643242,55.0,1070868,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643242,2643243,53.0,1070868,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643243,2643244,9.0,1070868,3,1,7,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22696.0,2110.0 +2643244,2643245,2.0,1070868,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643245,2643246,55.0,1070869,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643246,2643247,53.0,1070869,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22701.0,2110.0 +2643247,2643248,9.0,1070869,3,1,7,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22701.0,2110.0 +2643248,2643249,2.0,1070869,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22701.0,2110.0 +2643249,2643250,64.0,1070870,1,1,0,2,1.0,4.0,1.0,-9.0,4.0,2212P,7.0,22696.0,2110.0 +2643250,2643251,53.0,1070871,1,2,0,2,1.0,32.0,1.0,16.0,4.0,621M,14.0,22696.0,2110.0 +2643251,2643252,80.0,1070871,2,2,6,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643252,2643253,47.0,1070872,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22696.0,2110.0 +2643253,2643254,60.0,1070873,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643254,2643255,69.0,1070873,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643255,2643256,18.0,1070873,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22696.0,2110.0 +2643256,2643257,60.0,1070874,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643257,2643258,69.0,1070874,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643258,2643259,18.0,1070874,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22696.0,2110.0 +2643259,2643260,60.0,1070875,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643260,2643261,69.0,1070875,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643261,2643262,18.0,1070875,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22696.0,2110.0 +2643262,2643263,54.0,1070876,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643263,2643264,59.0,1070877,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643264,2643265,62.0,1070878,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643265,2643266,45.0,1070879,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22701.0,2110.0 +2643266,2643267,24.0,1070879,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22701.0,2110.0 +2643267,2643268,6.0,1070879,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22701.0,2110.0 +2643268,2643269,4.0,1070879,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22701.0,2110.0 +2643269,2643270,0.0,1070879,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22701.0,2110.0 +2643270,2643271,63.0,1070880,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643271,2643272,45.0,1070880,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22695.0,2110.0 +2643272,2643273,18.0,1070880,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22695.0,2110.0 +2643273,2643274,17.0,1070880,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22695.0,2110.0 +2643274,2643275,63.0,1070881,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643275,2643276,45.0,1070881,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22701.0,2110.0 +2643276,2643277,18.0,1070881,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22701.0,2110.0 +2643277,2643278,17.0,1070881,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22701.0,2110.0 +2643278,2643279,47.0,1070882,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643279,2643280,12.0,1070882,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22701.0,2110.0 +2643280,2643281,46.0,1070883,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,481,6.0,22695.0,2110.0 +2643281,2643282,57.0,1070884,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643282,2643283,55.0,1070885,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,8111Z,17.0,22696.0,2110.0 +2643283,2643284,55.0,1070886,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,8111Z,17.0,22696.0,2110.0 +2643284,2643285,58.0,1070887,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22701.0,2110.0 +2643285,2643286,58.0,1070888,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643286,2643287,58.0,1070889,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22695.0,2110.0 +2643287,2643288,61.0,1070890,1,2,0,1,1.0,14.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643288,2643289,54.0,1070891,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,51912,8.0,22696.0,2110.0 +2643289,2643290,52.0,1070892,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643290,2643291,52.0,1070893,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643291,2643292,52.0,1070894,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643292,2643293,52.0,1070895,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22701.0,2110.0 +2643293,2643294,52.0,1070896,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643294,2643295,52.0,1070897,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22695.0,2110.0 +2643295,2643296,52.0,1070898,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22695.0,2110.0 +2643296,2643297,52.0,1070899,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643297,2643298,64.0,1070900,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643298,2643299,88.0,1070900,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643299,2643300,61.0,1070901,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643300,2643301,45.0,1070902,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22695.0,2110.0 +2643301,2643302,58.0,1070903,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,3219ZM,3.0,22696.0,2110.0 +2643302,2643303,59.0,1070904,1,1,0,1,1.0,25.0,1.0,-9.0,4.0,7211,16.0,22696.0,2110.0 +2643303,2643304,59.0,1070905,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22701.0,2110.0 +2643304,2643305,49.0,1070906,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22701.0,2110.0 +2643305,2643306,49.0,1070907,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22696.0,2110.0 +2643306,2643307,49.0,1070908,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22696.0,2110.0 +2643307,2643308,49.0,1070909,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22701.0,2110.0 +2643308,2643309,49.0,1070910,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22696.0,2110.0 +2643309,2643310,55.0,1070911,1,1,0,1,1.0,54.0,1.0,-9.0,4.0,32711,3.0,22696.0,2110.0 +2643310,2643311,55.0,1070912,1,1,0,1,1.0,54.0,1.0,-9.0,4.0,32711,3.0,22696.0,2110.0 +2643311,2643312,58.0,1070913,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643312,2643313,58.0,1070914,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643313,2643314,58.0,1070915,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643314,2643315,53.0,1070916,1,1,0,1,1.0,35.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643315,2643316,61.0,1070917,1,1,0,1,1.0,25.0,1.0,-9.0,4.0,5121,8.0,22696.0,2110.0 +2643316,2643317,61.0,1070918,1,1,0,1,1.0,25.0,1.0,-9.0,4.0,5121,8.0,22696.0,2110.0 +2643317,2643318,58.0,1070919,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,45439,5.0,22696.0,2110.0 +2643318,2643319,51.0,1070920,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,3221,3.0,22696.0,2110.0 +2643319,2643320,51.0,1070921,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,3221,3.0,22696.0,2110.0 +2643320,2643321,54.0,1070922,1,1,0,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22701.0,2110.0 +2643321,2643322,54.0,1070923,1,1,0,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643322,2643323,54.0,1070924,1,1,0,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643323,2643324,54.0,1070925,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643324,2643325,66.0,1070925,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643325,2643326,54.0,1070926,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643326,2643327,66.0,1070926,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643327,2643328,54.0,1070927,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643328,2643329,66.0,1070927,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643329,2643330,54.0,1070928,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643330,2643331,66.0,1070928,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643331,2643332,57.0,1070929,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643332,2643333,52.0,1070930,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643333,2643334,61.0,1070931,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643334,2643335,51.0,1070932,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643335,2643336,60.0,1070933,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643336,2643337,57.0,1070934,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643337,2643338,57.0,1070935,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643338,2643339,57.0,1070936,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643339,2643340,58.0,1070937,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643340,2643341,57.0,1070938,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22695.0,2110.0 +2643341,2643342,57.0,1070939,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643342,2643343,55.0,1070940,1,1,0,1,2.0,15.0,6.0,-9.0,2.0,23,2.0,22696.0,2110.0 +2643343,2643344,55.0,1070941,1,1,0,1,2.0,15.0,6.0,-9.0,2.0,23,2.0,22696.0,2110.0 +2643344,2643345,55.0,1070942,1,1,0,1,2.0,15.0,6.0,-9.0,2.0,23,2.0,22696.0,2110.0 +2643345,2643346,55.0,1070943,1,1,0,1,2.0,15.0,6.0,-9.0,2.0,23,2.0,22696.0,2110.0 +2643346,2643347,55.0,1070944,1,1,0,1,2.0,15.0,6.0,-9.0,2.0,23,2.0,22696.0,2110.0 +2643347,2643348,55.0,1070945,1,1,0,1,2.0,15.0,6.0,-9.0,2.0,23,2.0,22696.0,2110.0 +2643348,2643349,55.0,1070946,1,1,0,1,2.0,15.0,6.0,-9.0,2.0,23,2.0,22696.0,2110.0 +2643349,2643350,52.0,1070947,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22695.0,2110.0 +2643350,2643351,52.0,1070948,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643351,2643352,58.0,1070949,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643352,2643353,58.0,1070950,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643353,2643354,58.0,1070951,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22701.0,2110.0 +2643354,2643355,58.0,1070952,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22695.0,2110.0 +2643355,2643356,58.0,1070953,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643356,2643357,58.0,1070954,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22695.0,2110.0 +2643357,2643358,58.0,1070955,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643358,2643359,58.0,1070956,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643359,2643360,58.0,1070957,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643360,2643361,60.0,1070958,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643361,2643362,58.0,1070959,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643362,2643363,58.0,1070960,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643363,2643364,60.0,1070961,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643364,2643365,58.0,1070962,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643365,2643366,46.0,1070963,1,2,0,1,1.0,18.0,1.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643366,2643367,7.0,1070963,2,2,15,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643367,2643368,26.0,1070964,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22696.0,2110.0 +2643368,2643369,25.0,1070965,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22696.0,2110.0 +2643369,2643370,24.0,1070965,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22696.0,2110.0 +2643370,2643371,23.0,1070965,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22696.0,2110.0 +2643371,2643372,22.0,1070965,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22696.0,2110.0 +2643372,2643373,25.0,1070966,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22696.0,2110.0 +2643373,2643374,20.0,1070966,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643374,2643375,25.0,1070967,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22696.0,2110.0 +2643375,2643376,20.0,1070967,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643376,2643377,25.0,1070968,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22695.0,2110.0 +2643377,2643378,20.0,1070968,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22695.0,2110.0 +2643378,2643379,25.0,1070969,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22696.0,2110.0 +2643379,2643380,20.0,1070969,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643380,2643381,25.0,1070970,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22696.0,2110.0 +2643381,2643382,20.0,1070970,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643382,2643383,25.0,1070971,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22696.0,2110.0 +2643383,2643384,20.0,1070971,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643384,2643385,25.0,1070972,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22696.0,2110.0 +2643385,2643386,20.0,1070972,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643386,2643387,25.0,1070973,1,1,0,4,1.0,30.0,1.0,15.0,4.0,443142,5.0,22696.0,2110.0 +2643387,2643388,20.0,1070973,2,2,13,1,1.0,23.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643388,2643389,30.0,1070974,1,2,0,4,1.0,40.0,1.0,16.0,4.0,3118Z,3.0,22695.0,2110.0 +2643389,2643390,42.0,1070975,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22696.0,2110.0 +2643390,2643391,33.0,1070975,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643391,2643392,42.0,1070976,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22696.0,2110.0 +2643392,2643393,33.0,1070976,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643393,2643394,42.0,1070977,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22696.0,2110.0 +2643394,2643395,33.0,1070977,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643395,2643396,28.0,1070978,1,2,0,4,1.0,42.0,1.0,-9.0,4.0,5412,10.0,22701.0,2110.0 +2643396,2643397,34.0,1070979,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22695.0,2110.0 +2643397,2643398,40.0,1070980,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643398,2643399,39.0,1070980,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643399,2643400,17.0,1070980,3,2,2,4,6.0,10.0,6.0,14.0,4.0,622M,15.0,22696.0,2110.0 +2643400,2643401,15.0,1070980,4,1,2,4,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22696.0,2110.0 +2643401,2643402,8.0,1070980,5,1,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22696.0,2110.0 +2643402,2643403,4.0,1070980,6,1,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22696.0,2110.0 +2643403,2643404,40.0,1070981,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22701.0,2110.0 +2643404,2643405,39.0,1070981,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22701.0,2110.0 +2643405,2643406,17.0,1070981,3,2,2,4,6.0,10.0,6.0,14.0,4.0,622M,15.0,22701.0,2110.0 +2643406,2643407,15.0,1070981,4,1,2,4,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22701.0,2110.0 +2643407,2643408,8.0,1070981,5,1,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22701.0,2110.0 +2643408,2643409,4.0,1070981,6,1,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22701.0,2110.0 +2643409,2643410,40.0,1070982,1,2,0,4,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22701.0,2110.0 +2643410,2643411,39.0,1070982,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22701.0,2110.0 +2643411,2643412,17.0,1070982,3,2,2,4,6.0,10.0,6.0,14.0,4.0,622M,15.0,22701.0,2110.0 +2643412,2643413,15.0,1070982,4,1,2,4,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22701.0,2110.0 +2643413,2643414,8.0,1070982,5,1,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22701.0,2110.0 +2643414,2643415,4.0,1070982,6,1,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22701.0,2110.0 +2643415,2643416,42.0,1070983,1,1,0,4,1.0,60.0,2.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643416,2643417,33.0,1070983,2,2,1,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643417,2643418,8.0,1070983,3,2,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22696.0,2110.0 +2643418,2643419,3.0,1070983,4,2,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22696.0,2110.0 +2643419,2643420,37.0,1070984,1,2,0,4,1.0,30.0,1.0,-9.0,4.0,6211,14.0,22696.0,2110.0 +2643420,2643421,37.0,1070984,2,1,1,4,1.0,60.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643421,2643422,6.0,1070984,3,2,2,4,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22696.0,2110.0 +2643422,2643423,3.0,1070984,4,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643423,2643424,43.0,1070985,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643424,2643425,38.0,1070985,2,2,1,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643425,2643426,8.0,1070985,3,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22696.0,2110.0 +2643426,2643427,3.0,1070985,4,1,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22696.0,2110.0 +2643427,2643428,39.0,1070986,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643428,2643429,36.0,1070986,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643429,2643430,10.0,1070986,3,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643430,2643431,8.0,1070986,4,1,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22696.0,2110.0 +2643431,2643432,39.0,1070987,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22701.0,2110.0 +2643432,2643433,36.0,1070987,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22701.0,2110.0 +2643433,2643434,10.0,1070987,3,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22701.0,2110.0 +2643434,2643435,8.0,1070987,4,1,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22701.0,2110.0 +2643435,2643436,39.0,1070988,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643436,2643437,36.0,1070988,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643437,2643438,10.0,1070988,3,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643438,2643439,8.0,1070988,4,1,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22696.0,2110.0 +2643439,2643440,39.0,1070989,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643440,2643441,36.0,1070989,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643441,2643442,10.0,1070989,3,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643442,2643443,8.0,1070989,4,1,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22696.0,2110.0 +2643443,2643444,39.0,1070990,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643444,2643445,36.0,1070990,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643445,2643446,10.0,1070990,3,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643446,2643447,8.0,1070990,4,1,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22696.0,2110.0 +2643447,2643448,39.0,1070991,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643448,2643449,36.0,1070991,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643449,2643450,10.0,1070991,3,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643450,2643451,8.0,1070991,4,1,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22696.0,2110.0 +2643451,2643452,39.0,1070992,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643452,2643453,36.0,1070992,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643453,2643454,10.0,1070992,3,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643454,2643455,8.0,1070992,4,1,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22696.0,2110.0 +2643455,2643456,29.0,1070993,1,2,0,4,2.0,48.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643456,2643457,29.0,1070993,2,1,1,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643457,2643458,0.0,1070993,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643458,2643459,29.0,1070994,1,2,0,4,2.0,48.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643459,2643460,29.0,1070994,2,1,1,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643460,2643461,0.0,1070994,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643461,2643462,29.0,1070995,1,2,0,4,2.0,48.0,1.0,-9.0,4.0,611M1,13.0,22701.0,2110.0 +2643462,2643463,29.0,1070995,2,1,1,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22701.0,2110.0 +2643463,2643464,0.0,1070995,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22701.0,2110.0 +2643464,2643465,29.0,1070996,1,2,0,4,2.0,48.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643465,2643466,29.0,1070996,2,1,1,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643466,2643467,0.0,1070996,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643467,2643468,41.0,1070997,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,517311,8.0,22696.0,2110.0 +2643468,2643469,41.0,1070998,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,517311,8.0,22696.0,2110.0 +2643469,2643470,41.0,1070999,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,517311,8.0,22696.0,2110.0 +2643470,2643471,41.0,1071000,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,517311,8.0,22696.0,2110.0 +2643471,2643472,39.0,1071001,1,1,0,2,1.0,30.0,1.0,-9.0,4.0,621M,14.0,22696.0,2110.0 +2643472,2643473,25.0,1071001,2,2,12,1,1.0,30.0,3.0,15.0,4.0,622M,15.0,22696.0,2110.0 +2643473,2643474,39.0,1071002,1,1,0,2,1.0,30.0,1.0,-9.0,4.0,621M,14.0,22696.0,2110.0 +2643474,2643475,25.0,1071002,2,2,12,1,1.0,30.0,3.0,15.0,4.0,622M,15.0,22696.0,2110.0 +2643475,2643476,39.0,1071003,1,1,0,2,1.0,30.0,1.0,-9.0,4.0,621M,14.0,22695.0,2110.0 +2643476,2643477,25.0,1071003,2,2,12,1,1.0,30.0,3.0,15.0,4.0,622M,15.0,22695.0,2110.0 +2643477,2643478,39.0,1071004,1,1,0,2,1.0,30.0,1.0,-9.0,4.0,621M,14.0,22696.0,2110.0 +2643478,2643479,25.0,1071004,2,2,12,1,1.0,30.0,3.0,15.0,4.0,622M,15.0,22696.0,2110.0 +2643479,2643480,39.0,1071005,1,1,0,2,1.0,30.0,1.0,-9.0,4.0,621M,14.0,22701.0,2110.0 +2643480,2643481,25.0,1071005,2,2,12,1,1.0,30.0,3.0,15.0,4.0,622M,15.0,22701.0,2110.0 +2643481,2643482,44.0,1071006,1,1,0,2,1.0,60.0,1.0,-9.0,2.0,722Z,16.0,22696.0,2110.0 +2643482,2643483,34.0,1071006,2,2,15,1,1.0,45.0,4.0,-9.0,4.0,722Z,16.0,22696.0,2110.0 +2643483,2643484,44.0,1071007,1,1,0,2,1.0,60.0,1.0,-9.0,2.0,722Z,16.0,22695.0,2110.0 +2643484,2643485,34.0,1071007,2,2,15,1,1.0,45.0,4.0,-9.0,4.0,722Z,16.0,22695.0,2110.0 +2643485,2643486,44.0,1071008,1,1,0,2,1.0,60.0,1.0,-9.0,2.0,722Z,16.0,22696.0,2110.0 +2643486,2643487,34.0,1071008,2,2,15,1,1.0,45.0,4.0,-9.0,4.0,722Z,16.0,22696.0,2110.0 +2643487,2643488,44.0,1071009,1,1,0,2,1.0,60.0,1.0,-9.0,2.0,722Z,16.0,22696.0,2110.0 +2643488,2643489,34.0,1071009,2,2,15,1,1.0,45.0,4.0,-9.0,4.0,722Z,16.0,22696.0,2110.0 +2643489,2643490,27.0,1071010,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22696.0,2110.0 +2643490,2643491,24.0,1071010,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22696.0,2110.0 +2643491,2643492,27.0,1071011,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22696.0,2110.0 +2643492,2643493,27.0,1071012,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643493,2643494,26.0,1071013,1,1,0,2,1.0,40.0,1.0,15.0,4.0,5415,10.0,22696.0,2110.0 +2643494,2643495,28.0,1071014,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,4533,5.0,22696.0,2110.0 +2643495,2643496,27.0,1071015,1,1,0,2,1.0,40.0,6.0,-9.0,4.0,336M,3.0,22696.0,2110.0 +2643496,2643497,27.0,1071016,1,1,0,2,1.0,40.0,6.0,-9.0,4.0,336M,3.0,22695.0,2110.0 +2643497,2643498,27.0,1071017,1,1,0,2,1.0,40.0,6.0,-9.0,4.0,336M,3.0,22695.0,2110.0 +2643498,2643499,37.0,1071018,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22696.0,2110.0 +2643499,2643500,44.0,1071019,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643500,2643501,44.0,1071020,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643501,2643502,40.0,1071020,2,2,1,2,1.0,35.0,1.0,-9.0,4.0,6211,14.0,22696.0,2110.0 +2643502,2643503,6.0,1071020,3,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22696.0,2110.0 +2643503,2643504,5.0,1071020,4,2,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22696.0,2110.0 +2643504,2643505,3.0,1071020,5,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22696.0,2110.0 +2643505,2643506,43.0,1071021,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5241,9.0,22696.0,2110.0 +2643506,2643507,13.0,1071021,2,2,2,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22696.0,2110.0 +2643507,2643508,39.0,1071022,1,2,0,2,1.0,45.0,1.0,15.0,4.0,517311,8.0,22695.0,2110.0 +2643508,2643509,16.0,1071022,2,2,2,3,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22695.0,2110.0 +2643509,2643510,32.0,1071023,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643510,2643511,29.0,1071023,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643511,2643512,3.0,1071023,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643512,2643513,32.0,1071024,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643513,2643514,29.0,1071024,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643514,2643515,3.0,1071024,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643515,2643516,32.0,1071025,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643516,2643517,29.0,1071025,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643517,2643518,3.0,1071025,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643518,2643519,32.0,1071026,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22701.0,2110.0 +2643519,2643520,29.0,1071026,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22701.0,2110.0 +2643520,2643521,3.0,1071026,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22701.0,2110.0 +2643521,2643522,32.0,1071027,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643522,2643523,29.0,1071027,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643523,2643524,3.0,1071027,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643524,2643525,32.0,1071028,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643525,2643526,29.0,1071028,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643526,2643527,3.0,1071028,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643527,2643528,32.0,1071029,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643528,2643529,29.0,1071029,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643529,2643530,3.0,1071029,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643530,2643531,32.0,1071030,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643531,2643532,29.0,1071030,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643532,2643533,3.0,1071030,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643533,2643534,32.0,1071031,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643534,2643535,29.0,1071031,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643535,2643536,3.0,1071031,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643536,2643537,32.0,1071032,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643537,2643538,29.0,1071032,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643538,2643539,3.0,1071032,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643539,2643540,32.0,1071033,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643540,2643541,29.0,1071033,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643541,2643542,3.0,1071033,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643542,2643543,32.0,1071034,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643543,2643544,29.0,1071034,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643544,2643545,3.0,1071034,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643545,2643546,32.0,1071035,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22701.0,2110.0 +2643546,2643547,29.0,1071035,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22701.0,2110.0 +2643547,2643548,3.0,1071035,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22701.0,2110.0 +2643548,2643549,32.0,1071036,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22695.0,2110.0 +2643549,2643550,29.0,1071036,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22695.0,2110.0 +2643550,2643551,3.0,1071036,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22695.0,2110.0 +2643551,2643552,32.0,1071037,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643552,2643553,29.0,1071037,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643553,2643554,3.0,1071037,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643554,2643555,32.0,1071038,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22701.0,2110.0 +2643555,2643556,29.0,1071038,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22701.0,2110.0 +2643556,2643557,3.0,1071038,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22701.0,2110.0 +2643557,2643558,32.0,1071039,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,8131,17.0,22696.0,2110.0 +2643558,2643559,29.0,1071039,2,1,1,1,1.0,40.0,1.0,-9.0,3.0,8131,17.0,22696.0,2110.0 +2643559,2643560,3.0,1071039,3,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643560,2643561,42.0,1071040,1,2,0,3,1.0,20.0,1.0,-9.0,4.0,621M,14.0,22701.0,2110.0 +2643561,2643562,46.0,1071040,2,1,1,4,1.0,60.0,1.0,-9.0,4.0,621M,14.0,22701.0,2110.0 +2643562,2643563,16.0,1071040,3,2,2,4,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22701.0,2110.0 +2643563,2643564,11.0,1071040,4,2,2,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22701.0,2110.0 +2643564,2643565,9.0,1071040,5,2,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22701.0,2110.0 +2643565,2643566,42.0,1071041,1,2,0,3,1.0,20.0,1.0,-9.0,4.0,621M,14.0,22696.0,2110.0 +2643566,2643567,46.0,1071041,2,1,1,4,1.0,60.0,1.0,-9.0,4.0,621M,14.0,22696.0,2110.0 +2643567,2643568,16.0,1071041,3,2,2,4,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22696.0,2110.0 +2643568,2643569,11.0,1071041,4,2,2,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22696.0,2110.0 +2643569,2643570,9.0,1071041,5,2,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22696.0,2110.0 +2643570,2643571,42.0,1071042,1,2,0,3,1.0,20.0,1.0,-9.0,4.0,621M,14.0,22701.0,2110.0 +2643571,2643572,46.0,1071042,2,1,1,4,1.0,60.0,1.0,-9.0,4.0,621M,14.0,22701.0,2110.0 +2643572,2643573,16.0,1071042,3,2,2,4,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22701.0,2110.0 +2643573,2643574,11.0,1071042,4,2,2,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22701.0,2110.0 +2643574,2643575,9.0,1071042,5,2,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22701.0,2110.0 +2643575,2643576,42.0,1071043,1,2,0,3,1.0,20.0,1.0,-9.0,4.0,621M,14.0,22701.0,2110.0 +2643576,2643577,46.0,1071043,2,1,1,4,1.0,60.0,1.0,-9.0,4.0,621M,14.0,22701.0,2110.0 +2643577,2643578,16.0,1071043,3,2,2,4,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22701.0,2110.0 +2643578,2643579,11.0,1071043,4,2,2,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22701.0,2110.0 +2643579,2643580,9.0,1071043,5,2,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22701.0,2110.0 +2643580,2643581,37.0,1071044,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643581,2643582,37.0,1071045,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643582,2643583,42.0,1071046,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22696.0,2110.0 +2643583,2643584,37.0,1071047,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643584,2643585,37.0,1071048,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643585,2643586,28.0,1071049,1,1,0,1,1.0,40.0,1.0,15.0,2.0,5613,12.0,22701.0,2110.0 +2643586,2643587,37.0,1071050,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643587,2643588,28.0,1071051,1,1,0,1,1.0,40.0,1.0,15.0,2.0,5613,12.0,22696.0,2110.0 +2643588,2643589,42.0,1071052,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22696.0,2110.0 +2643589,2643590,37.0,1071053,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643590,2643591,37.0,1071054,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22701.0,2110.0 +2643591,2643592,37.0,1071055,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643592,2643593,37.0,1071056,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643593,2643594,42.0,1071057,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22696.0,2110.0 +2643594,2643595,37.0,1071058,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643595,2643596,37.0,1071059,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643596,2643597,42.0,1071060,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22696.0,2110.0 +2643597,2643598,37.0,1071061,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643598,2643599,42.0,1071062,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22695.0,2110.0 +2643599,2643600,37.0,1071063,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643600,2643601,37.0,1071064,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643601,2643602,42.0,1071065,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22696.0,2110.0 +2643602,2643603,37.0,1071066,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643603,2643604,37.0,1071067,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643604,2643605,42.0,1071068,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22696.0,2110.0 +2643605,2643606,37.0,1071069,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643606,2643607,37.0,1071070,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643607,2643608,37.0,1071071,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22695.0,2110.0 +2643608,2643609,42.0,1071072,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22696.0,2110.0 +2643609,2643610,30.0,1071073,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51913,8.0,22696.0,2110.0 +2643610,2643611,43.0,1071074,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,713Z,16.0,22696.0,2110.0 +2643611,2643612,25.0,1071075,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22696.0,2110.0 +2643612,2643613,27.0,1071076,1,1,0,1,1.0,40.0,1.0,16.0,4.0,336M,3.0,22696.0,2110.0 +2643613,2643614,29.0,1071077,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22696.0,2110.0 +2643614,2643615,25.0,1071078,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22696.0,2110.0 +2643615,2643616,26.0,1071079,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22696.0,2110.0 +2643616,2643617,41.0,1071080,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5121,8.0,22695.0,2110.0 +2643617,2643618,41.0,1071081,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5121,8.0,22696.0,2110.0 +2643618,2643619,41.0,1071082,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5121,8.0,22701.0,2110.0 +2643619,2643620,29.0,1071083,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,481,6.0,22696.0,2110.0 +2643620,2643621,34.0,1071084,1,2,0,1,1.0,40.0,2.0,15.0,4.0,6231,14.0,22696.0,2110.0 +2643621,2643622,35.0,1071085,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22696.0,2110.0 +2643622,2643623,37.0,1071086,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22695.0,2110.0 +2643623,2643624,37.0,1071087,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22696.0,2110.0 +2643624,2643625,30.0,1071088,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22695.0,2110.0 +2643625,2643626,37.0,1071089,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22696.0,2110.0 +2643626,2643627,37.0,1071090,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22696.0,2110.0 +2643627,2643628,37.0,1071091,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,482,6.0,22696.0,2110.0 +2643628,2643629,29.0,1071092,1,1,0,1,1.0,40.0,3.0,-9.0,2.0,622M,15.0,22701.0,2110.0 +2643629,2643630,29.0,1071093,1,1,0,1,1.0,40.0,3.0,-9.0,2.0,622M,15.0,22696.0,2110.0 +2643630,2643631,29.0,1071094,1,1,0,1,1.0,40.0,3.0,-9.0,2.0,622M,15.0,22696.0,2110.0 +2643631,2643632,29.0,1071095,1,1,0,1,1.0,40.0,3.0,-9.0,2.0,622M,15.0,22696.0,2110.0 +2643632,2643633,29.0,1071096,1,1,0,1,1.0,40.0,3.0,-9.0,2.0,622M,15.0,22696.0,2110.0 +2643633,2643634,25.0,1071097,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5411,10.0,22696.0,2110.0 +2643634,2643635,42.0,1071098,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643635,2643636,42.0,1071099,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,23,2.0,22701.0,2110.0 +2643636,2643637,42.0,1071100,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,23,2.0,22696.0,2110.0 +2643637,2643638,26.0,1071101,1,2,0,1,2.0,24.0,3.0,-9.0,4.0,4523,5.0,22696.0,2110.0 +2643638,2643639,35.0,1071102,1,2,0,1,1.0,35.0,2.0,-9.0,4.0,3121,3.0,22695.0,2110.0 +2643639,2643640,35.0,1071103,1,2,0,1,1.0,35.0,2.0,-9.0,4.0,3121,3.0,22696.0,2110.0 +2643640,2643641,30.0,1071104,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8111Z,17.0,22701.0,2110.0 +2643641,2643642,27.0,1071105,1,1,0,1,1.0,40.0,3.0,-9.0,4.0,5417,10.0,22696.0,2110.0 +2643642,2643643,25.0,1071106,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,2212P,7.0,22696.0,2110.0 +2643643,2643644,27.0,1071107,1,1,0,1,1.0,50.0,4.0,-9.0,4.0,3121,3.0,22696.0,2110.0 +2643644,2643645,32.0,1071108,1,1,0,1,1.0,47.0,1.0,-9.0,4.0,3115,3.0,22696.0,2110.0 +2643645,2643646,27.0,1071109,1,1,0,1,1.0,50.0,4.0,-9.0,4.0,3121,3.0,22695.0,2110.0 +2643646,2643647,25.0,1071110,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3341,3.0,22696.0,2110.0 +2643647,2643648,32.0,1071111,1,1,0,1,1.0,47.0,1.0,-9.0,4.0,3115,3.0,22696.0,2110.0 +2643648,2643649,27.0,1071112,1,1,0,1,1.0,50.0,4.0,-9.0,4.0,3121,3.0,22696.0,2110.0 +2643649,2643650,25.0,1071113,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3341,3.0,22696.0,2110.0 +2643650,2643651,25.0,1071114,1,1,0,1,1.0,40.0,1.0,16.0,4.0,23,2.0,22696.0,2110.0 +2643651,2643652,42.0,1071115,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,44511,5.0,22695.0,2110.0 +2643652,2643653,42.0,1071116,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643653,2643654,34.0,1071117,1,1,0,1,1.0,70.0,1.0,-9.0,4.0,622M,15.0,22696.0,2110.0 +2643654,2643655,33.0,1071117,2,2,1,1,1.0,15.0,3.0,-9.0,4.0,611M1,13.0,22696.0,2110.0 +2643655,2643656,5.0,1071117,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22696.0,2110.0 +2643656,2643657,3.0,1071117,4,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22696.0,2110.0 +2643657,2643658,0.0,1071117,5,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643658,2643659,40.0,1071118,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22701.0,2110.0 +2643659,2643660,26.0,1071118,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22701.0,2110.0 +2643660,2643661,16.0,1071118,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22701.0,2110.0 +2643661,2643662,0.0,1071118,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22701.0,2110.0 +2643662,2643663,68.0,1071118,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22701.0,2110.0 +2643663,2643664,57.0,1071118,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643664,2643665,40.0,1071119,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643665,2643666,26.0,1071119,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643666,2643667,16.0,1071119,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643667,2643668,0.0,1071119,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643668,2643669,68.0,1071119,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643669,2643670,57.0,1071119,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643670,2643671,40.0,1071120,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643671,2643672,26.0,1071120,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643672,2643673,16.0,1071120,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643673,2643674,0.0,1071120,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643674,2643675,68.0,1071120,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643675,2643676,57.0,1071120,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643676,2643677,40.0,1071121,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643677,2643678,26.0,1071121,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643678,2643679,16.0,1071121,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643679,2643680,0.0,1071121,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643680,2643681,68.0,1071121,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643681,2643682,57.0,1071121,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643682,2643683,40.0,1071122,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22701.0,2110.0 +2643683,2643684,26.0,1071122,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22701.0,2110.0 +2643684,2643685,16.0,1071122,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22701.0,2110.0 +2643685,2643686,0.0,1071122,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22701.0,2110.0 +2643686,2643687,68.0,1071122,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22701.0,2110.0 +2643687,2643688,57.0,1071122,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643688,2643689,40.0,1071123,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22701.0,2110.0 +2643689,2643690,26.0,1071123,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22701.0,2110.0 +2643690,2643691,16.0,1071123,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22701.0,2110.0 +2643691,2643692,0.0,1071123,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22701.0,2110.0 +2643692,2643693,68.0,1071123,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22701.0,2110.0 +2643693,2643694,57.0,1071123,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643694,2643695,40.0,1071124,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643695,2643696,26.0,1071124,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643696,2643697,16.0,1071124,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643697,2643698,0.0,1071124,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643698,2643699,68.0,1071124,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643699,2643700,57.0,1071124,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643700,2643701,40.0,1071125,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643701,2643702,26.0,1071125,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643702,2643703,16.0,1071125,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643703,2643704,0.0,1071125,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643704,2643705,68.0,1071125,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643705,2643706,57.0,1071125,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643706,2643707,40.0,1071126,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643707,2643708,26.0,1071126,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643708,2643709,16.0,1071126,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643709,2643710,0.0,1071126,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643710,2643711,68.0,1071126,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643711,2643712,57.0,1071126,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643712,2643713,40.0,1071127,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643713,2643714,26.0,1071127,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643714,2643715,16.0,1071127,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643715,2643716,0.0,1071127,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643716,2643717,68.0,1071127,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643717,2643718,57.0,1071127,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643718,2643719,40.0,1071128,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643719,2643720,26.0,1071128,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643720,2643721,16.0,1071128,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643721,2643722,0.0,1071128,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643722,2643723,68.0,1071128,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643723,2643724,57.0,1071128,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643724,2643725,40.0,1071129,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643725,2643726,26.0,1071129,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643726,2643727,16.0,1071129,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643727,2643728,0.0,1071129,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643728,2643729,68.0,1071129,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643729,2643730,57.0,1071129,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643730,2643731,40.0,1071130,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643731,2643732,26.0,1071130,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643732,2643733,16.0,1071130,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643733,2643734,0.0,1071130,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643734,2643735,68.0,1071130,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643735,2643736,57.0,1071130,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643736,2643737,40.0,1071131,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643737,2643738,26.0,1071131,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643738,2643739,16.0,1071131,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643739,2643740,0.0,1071131,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643740,2643741,68.0,1071131,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643741,2643742,57.0,1071131,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643742,2643743,40.0,1071132,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643743,2643744,26.0,1071132,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22696.0,2110.0 +2643744,2643745,16.0,1071132,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22696.0,2110.0 +2643745,2643746,0.0,1071132,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643746,2643747,68.0,1071132,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22696.0,2110.0 +2643747,2643748,57.0,1071132,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643748,2643749,40.0,1071133,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22701.0,2110.0 +2643749,2643750,26.0,1071133,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22701.0,2110.0 +2643750,2643751,16.0,1071133,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22701.0,2110.0 +2643751,2643752,0.0,1071133,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22701.0,2110.0 +2643752,2643753,68.0,1071133,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22701.0,2110.0 +2643753,2643754,57.0,1071133,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22701.0,2110.0 +2643754,2643755,35.0,1071134,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643755,2643756,16.0,1071134,2,2,2,1,1.0,15.0,6.0,12.0,-9.0,44511,5.0,22696.0,2110.0 +2643756,2643757,35.0,1071135,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643757,2643758,16.0,1071135,2,2,2,1,1.0,15.0,6.0,12.0,-9.0,44511,5.0,22696.0,2110.0 +2643758,2643759,35.0,1071136,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643759,2643760,16.0,1071136,2,2,2,1,1.0,15.0,6.0,12.0,-9.0,44511,5.0,22696.0,2110.0 +2643760,2643761,35.0,1071137,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22696.0,2110.0 +2643761,2643762,16.0,1071137,2,2,2,1,1.0,15.0,6.0,12.0,-9.0,44511,5.0,22696.0,2110.0 +2643762,2643763,36.0,1071138,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22696.0,2110.0 +2643763,2643764,37.0,1071138,2,1,1,1,1.0,40.0,4.0,-9.0,4.0,5415,10.0,22696.0,2110.0 +2643764,2643765,10.0,1071138,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22696.0,2110.0 +2643765,2643766,8.0,1071138,4,1,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22696.0,2110.0 +2643766,2643767,3.0,1071138,5,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22696.0,2110.0 +2643767,2643768,35.0,1071139,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643768,2643769,11.0,1071139,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643769,2643770,35.0,1071140,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643770,2643771,11.0,1071140,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643771,2643772,35.0,1071141,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643772,2643773,11.0,1071141,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643773,2643774,35.0,1071142,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22695.0,2110.0 +2643774,2643775,11.0,1071142,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22695.0,2110.0 +2643775,2643776,35.0,1071143,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22701.0,2110.0 +2643776,2643777,11.0,1071143,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22701.0,2110.0 +2643777,2643778,35.0,1071144,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643778,2643779,11.0,1071144,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643779,2643780,35.0,1071145,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22701.0,2110.0 +2643780,2643781,11.0,1071145,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22701.0,2110.0 +2643781,2643782,35.0,1071146,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22701.0,2110.0 +2643782,2643783,11.0,1071146,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22701.0,2110.0 +2643783,2643784,35.0,1071147,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643784,2643785,11.0,1071147,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643785,2643786,35.0,1071148,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643786,2643787,11.0,1071148,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643787,2643788,35.0,1071149,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643788,2643789,11.0,1071149,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643789,2643790,35.0,1071150,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22701.0,2110.0 +2643790,2643791,11.0,1071150,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22701.0,2110.0 +2643791,2643792,35.0,1071151,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22701.0,2110.0 +2643792,2643793,11.0,1071151,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22701.0,2110.0 +2643793,2643794,35.0,1071152,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643794,2643795,11.0,1071152,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643795,2643796,35.0,1071153,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643796,2643797,11.0,1071153,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643797,2643798,35.0,1071154,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643798,2643799,11.0,1071154,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643799,2643800,35.0,1071155,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643800,2643801,11.0,1071155,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643801,2643802,35.0,1071156,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643802,2643803,11.0,1071156,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643803,2643804,35.0,1071157,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22695.0,2110.0 +2643804,2643805,11.0,1071157,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22695.0,2110.0 +2643805,2643806,35.0,1071158,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22695.0,2110.0 +2643806,2643807,11.0,1071158,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22695.0,2110.0 +2643807,2643808,35.0,1071159,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643808,2643809,11.0,1071159,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643809,2643810,35.0,1071160,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643810,2643811,11.0,1071160,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643811,2643812,35.0,1071161,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643812,2643813,11.0,1071161,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643813,2643814,35.0,1071162,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643814,2643815,11.0,1071162,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643815,2643816,35.0,1071163,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643816,2643817,11.0,1071163,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643817,2643818,35.0,1071164,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643818,2643819,11.0,1071164,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643819,2643820,35.0,1071165,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,5112,8.0,22696.0,2110.0 +2643820,2643821,11.0,1071165,2,2,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22696.0,2110.0 +2643821,2643822,19.0,1071166,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22696.0,2110.0 +2643822,2643823,56.0,1071166,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643823,2643824,19.0,1071167,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22696.0,2110.0 +2643824,2643825,56.0,1071167,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643825,2643826,19.0,1071168,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22696.0,2110.0 +2643826,2643827,56.0,1071168,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22696.0,2110.0 +2643827,2643828,21.0,1071169,1,2,0,2,1.0,32.0,1.0,15.0,4.0,622M,15.0,22695.0,2110.0 +2643828,2643829,29.0,1071169,2,2,5,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22695.0,2110.0 +2643829,2643830,26.0,1071169,3,2,5,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22695.0,2110.0 +2643830,2643831,22.0,1071170,1,2,0,2,1.0,40.0,1.0,16.0,4.0,44511,5.0,22696.0,2110.0 +2643831,2643832,25.0,1071170,2,1,13,1,1.0,40.0,4.0,-9.0,4.0,713Z,16.0,22696.0,2110.0 +2643832,2643833,21.0,1071171,1,2,0,3,1.0,19.0,1.0,15.0,4.0,722Z,16.0,22696.0,2110.0 +2643833,2643834,12.0,1071171,2,1,5,3,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22696.0,2110.0 +2643834,2643835,43.0,1071171,3,2,6,3,1.0,44.0,1.0,-9.0,4.0,722Z,16.0,22696.0,2110.0 +2643835,2643836,22.0,1071172,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22696.0,2110.0 +2643836,2643837,25.0,1071172,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22696.0,2110.0 +2643837,2643838,21.0,1071172,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22696.0,2110.0 +2643838,2643839,22.0,1071173,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22696.0,2110.0 +2643839,2643840,25.0,1071173,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22696.0,2110.0 +2643840,2643841,21.0,1071173,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22696.0,2110.0 +2643841,2643842,22.0,1071174,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22696.0,2110.0 +2643842,2643843,25.0,1071174,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22696.0,2110.0 +2643843,2643844,21.0,1071174,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22696.0,2110.0 +2643844,2643845,22.0,1071175,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22696.0,2110.0 +2643845,2643846,25.0,1071175,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22696.0,2110.0 +2643846,2643847,21.0,1071175,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22696.0,2110.0 +2643847,2643848,22.0,1071176,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22696.0,2110.0 +2643848,2643849,25.0,1071176,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22696.0,2110.0 +2643849,2643850,21.0,1071176,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22696.0,2110.0 +2643850,2643851,22.0,1071177,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22701.0,2110.0 +2643851,2643852,25.0,1071177,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22701.0,2110.0 +2643852,2643853,21.0,1071177,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22701.0,2110.0 +2643853,2643854,22.0,1071178,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22695.0,2110.0 +2643854,2643855,25.0,1071178,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22695.0,2110.0 +2643855,2643856,21.0,1071178,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22695.0,2110.0 +2643856,2643857,22.0,1071179,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22696.0,2110.0 +2643857,2643858,25.0,1071179,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22696.0,2110.0 +2643858,2643859,21.0,1071179,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22696.0,2110.0 +2643859,2643860,22.0,1071180,1,1,0,1,1.0,10.0,5.0,-9.0,4.0,713Z,16.0,22696.0,2110.0 +2643860,2643861,25.0,1071180,2,1,15,1,1.0,40.0,1.0,-9.0,4.0,7115,16.0,22696.0,2110.0 +2643861,2643862,21.0,1071180,3,2,13,1,1.0,40.0,1.0,15.0,4.0,713Z,16.0,22696.0,2110.0 +2643862,2643863,24.0,1071181,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,45221,5.0,22696.0,2110.0 +2643863,2643864,31.0,1071181,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643864,2643865,24.0,1071182,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,45221,5.0,22696.0,2110.0 +2643865,2643866,31.0,1071182,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643866,2643867,24.0,1071183,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,45221,5.0,22696.0,2110.0 +2643867,2643868,31.0,1071183,2,1,1,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22696.0,2110.0 +2643868,2643869,23.0,1071184,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22696.0,2110.0 +2643869,2643870,37.0,1071184,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22696.0,2110.0 +2643870,2643871,23.0,1071185,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,813M,17.0,22696.0,2110.0 +2643871,2643872,37.0,1071185,2,1,12,1,1.0,35.0,3.0,-9.0,4.0,812112,17.0,22696.0,2110.0 +2643872,2643873,24.0,1071186,1,2,0,1,1.0,45.0,1.0,15.0,4.0,92MP,18.0,22696.0,2110.0 +2643873,2643874,11.0,1071186,2,1,4,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22696.0,2110.0 +2643874,2643875,34.0,1071186,3,1,13,1,1.0,60.0,1.0,-9.0,4.0,92MP,18.0,22696.0,2110.0 +2643875,2643876,24.0,1071187,1,2,0,1,1.0,45.0,1.0,15.0,4.0,92MP,18.0,22696.0,2110.0 +2643876,2643877,11.0,1071187,2,1,4,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22696.0,2110.0 +2643877,2643878,34.0,1071187,3,1,13,1,1.0,60.0,1.0,-9.0,4.0,92MP,18.0,22696.0,2110.0 +2643878,2643879,24.0,1071188,1,2,0,1,1.0,45.0,1.0,15.0,4.0,92MP,18.0,22696.0,2110.0 +2643879,2643880,11.0,1071188,2,1,4,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22696.0,2110.0 +2643880,2643881,34.0,1071188,3,1,13,1,1.0,60.0,1.0,-9.0,4.0,92MP,18.0,22696.0,2110.0 +2643881,2643882,24.0,1071189,1,2,0,1,1.0,45.0,1.0,15.0,4.0,92MP,18.0,22696.0,2110.0 +2643882,2643883,11.0,1071189,2,1,4,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22696.0,2110.0 +2643883,2643884,34.0,1071189,3,1,13,1,1.0,60.0,1.0,-9.0,4.0,92MP,18.0,22696.0,2110.0 +2643884,2643885,24.0,1071190,1,2,0,1,1.0,45.0,1.0,15.0,4.0,92MP,18.0,22701.0,2110.0 +2643885,2643886,11.0,1071190,2,1,4,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22701.0,2110.0 +2643886,2643887,34.0,1071190,3,1,13,1,1.0,60.0,1.0,-9.0,4.0,92MP,18.0,22701.0,2110.0 +2643887,2643888,24.0,1071191,1,2,0,1,1.0,45.0,1.0,15.0,4.0,92MP,18.0,22696.0,2110.0 +2643888,2643889,11.0,1071191,2,1,4,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22696.0,2110.0 +2643889,2643890,34.0,1071191,3,1,13,1,1.0,60.0,1.0,-9.0,4.0,92MP,18.0,22696.0,2110.0 +2643890,2643891,24.0,1071192,1,2,0,1,1.0,45.0,1.0,15.0,4.0,92MP,18.0,22696.0,2110.0 +2643891,2643892,11.0,1071192,2,1,4,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22696.0,2110.0 +2643892,2643893,34.0,1071192,3,1,13,1,1.0,60.0,1.0,-9.0,4.0,92MP,18.0,22696.0,2110.0 +2643893,2643894,24.0,1071193,1,2,0,1,1.0,45.0,1.0,15.0,4.0,92MP,18.0,22701.0,2110.0 +2643894,2643895,11.0,1071193,2,1,4,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22701.0,2110.0 +2643895,2643896,34.0,1071193,3,1,13,1,1.0,60.0,1.0,-9.0,4.0,92MP,18.0,22701.0,2110.0 +2643896,2643897,16.0,1071194,1,1,0,1,1.0,50.0,1.0,-9.0,-9.0,23,2.0,22696.0,2110.0 +2643897,2643898,2.0,1071194,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643898,2643899,0.0,1071194,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643899,2643900,28.0,1071194,4,2,13,1,1.0,30.0,1.0,-9.0,4.0,45113,5.0,22696.0,2110.0 +2643900,2643901,16.0,1071195,1,1,0,1,1.0,50.0,1.0,-9.0,-9.0,23,2.0,22696.0,2110.0 +2643901,2643902,2.0,1071195,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643902,2643903,0.0,1071195,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22696.0,2110.0 +2643903,2643904,28.0,1071195,4,2,13,1,1.0,30.0,1.0,-9.0,4.0,45113,5.0,22696.0,2110.0 +2643904,2643905,72.0,1071196,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643905,2643906,72.0,1071197,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643906,2643907,66.0,1071198,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643907,2643908,70.0,1071198,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2643908,2643909,74.0,1071199,1,2,0,4,6.0,24.0,5.0,-9.0,4.0,5242,9.0,22726.0,2113.0 +2643909,2643910,82.0,1071199,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22726.0,2113.0 +2643910,2643911,65.0,1071200,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643911,2643912,65.0,1071201,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2643912,2643913,76.0,1071202,1,1,0,2,1.0,30.0,3.0,-9.0,4.0,485M,6.0,22724.0,2113.0 +2643913,2643914,71.0,1071202,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643914,2643915,87.0,1071203,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643915,2643916,65.0,1071203,2,1,2,2,1.0,30.0,1.0,-9.0,2.0,45221,5.0,22724.0,2113.0 +2643916,2643917,87.0,1071204,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643917,2643918,65.0,1071204,2,1,2,2,1.0,30.0,1.0,-9.0,2.0,45221,5.0,22724.0,2113.0 +2643918,2643919,87.0,1071205,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643919,2643920,65.0,1071205,2,1,2,2,1.0,30.0,1.0,-9.0,2.0,45221,5.0,22724.0,2113.0 +2643920,2643921,87.0,1071206,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643921,2643922,65.0,1071206,2,1,2,2,1.0,30.0,1.0,-9.0,2.0,45221,5.0,22724.0,2113.0 +2643922,2643923,87.0,1071207,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2643923,2643924,65.0,1071207,2,1,2,2,1.0,30.0,1.0,-9.0,2.0,45221,5.0,22725.0,2113.0 +2643924,2643925,87.0,1071208,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643925,2643926,65.0,1071208,2,1,2,2,1.0,30.0,1.0,-9.0,2.0,45221,5.0,22724.0,2113.0 +2643926,2643927,67.0,1071209,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643927,2643928,71.0,1071209,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2643928,2643929,73.0,1071210,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22729.0,2113.0 +2643929,2643930,94.0,1071211,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2643930,2643931,94.0,1071212,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2643931,2643932,67.0,1071213,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643932,2643933,94.0,1071214,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2643933,2643934,73.0,1071215,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22723.0,2113.0 +2643934,2643935,94.0,1071216,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22723.0,2113.0 +2643935,2643936,67.0,1071217,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2643936,2643937,69.0,1071218,1,2,0,2,1.0,22.0,1.0,-9.0,4.0,4523,5.0,22720.0,2113.0 +2643937,2643938,69.0,1071219,1,2,0,2,1.0,22.0,1.0,-9.0,4.0,4523,5.0,22724.0,2113.0 +2643938,2643939,69.0,1071220,1,2,0,2,1.0,22.0,1.0,-9.0,4.0,4523,5.0,22724.0,2113.0 +2643939,2643940,69.0,1071221,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643940,2643941,68.0,1071221,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643941,2643942,94.0,1071222,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643942,2643943,65.0,1071222,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643943,2643944,94.0,1071223,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22720.0,2113.0 +2643944,2643945,65.0,1071223,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22720.0,2113.0 +2643945,2643946,94.0,1071224,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643946,2643947,65.0,1071224,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643947,2643948,69.0,1071225,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643948,2643949,66.0,1071225,2,1,1,2,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22724.0,2113.0 +2643949,2643950,68.0,1071226,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2643950,2643951,65.0,1071227,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22720.0,2113.0 +2643951,2643952,65.0,1071228,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643952,2643953,68.0,1071229,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643953,2643954,65.0,1071230,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643954,2643955,66.0,1071231,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2643955,2643956,71.0,1071232,1,2,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22730.0,2113.0 +2643956,2643957,91.0,1071233,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643957,2643958,75.0,1071234,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2643958,2643959,66.0,1071235,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2643959,2643960,75.0,1071236,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643960,2643961,91.0,1071237,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643961,2643962,71.0,1071238,1,2,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2643962,2643963,66.0,1071239,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643963,2643964,71.0,1071240,1,2,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22728.0,2113.0 +2643964,2643965,90.0,1071241,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2643965,2643966,90.0,1071242,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643966,2643967,90.0,1071243,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643967,2643968,90.0,1071244,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643968,2643969,90.0,1071245,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643969,2643970,87.0,1071246,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22721.0,2113.0 +2643970,2643971,87.0,1071247,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22724.0,2113.0 +2643971,2643972,81.0,1071248,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22729.0,2113.0 +2643972,2643973,66.0,1071249,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22730.0,2113.0 +2643973,2643974,73.0,1071250,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2643974,2643975,65.0,1071251,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643975,2643976,66.0,1071252,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643976,2643977,66.0,1071253,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643977,2643978,72.0,1071254,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643978,2643979,73.0,1071255,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643979,2643980,65.0,1071256,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643980,2643981,87.0,1071257,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643981,2643982,84.0,1071258,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643982,2643983,73.0,1071259,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643983,2643984,73.0,1071260,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643984,2643985,73.0,1071261,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643985,2643986,90.0,1071262,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643986,2643987,65.0,1071263,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2643987,2643988,66.0,1071264,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643988,2643989,78.0,1071265,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643989,2643990,78.0,1071266,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643990,2643991,90.0,1071267,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643991,2643992,78.0,1071268,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643992,2643993,73.0,1071269,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643993,2643994,90.0,1071270,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2643994,2643995,78.0,1071271,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643995,2643996,90.0,1071272,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643996,2643997,65.0,1071273,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643997,2643998,73.0,1071274,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2643998,2643999,73.0,1071275,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2643999,2644000,90.0,1071276,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2644000,2644001,90.0,1071277,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644001,2644002,78.0,1071278,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2644002,2644003,90.0,1071279,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644003,2644004,73.0,1071280,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644004,2644005,73.0,1071281,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2644005,2644006,90.0,1071282,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22728.0,2113.0 +2644006,2644007,73.0,1071283,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22728.0,2113.0 +2644007,2644008,90.0,1071284,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644008,2644009,90.0,1071285,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2644009,2644010,73.0,1071286,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22722.0,2113.0 +2644010,2644011,68.0,1071287,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644011,2644012,82.0,1071288,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2644012,2644013,82.0,1071289,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2644013,2644014,82.0,1071290,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2644014,2644015,76.0,1071291,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644015,2644016,77.0,1071291,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644016,2644017,50.0,1071291,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644017,2644018,18.0,1071291,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644018,2644019,76.0,1071292,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22726.0,2113.0 +2644019,2644020,77.0,1071292,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2644020,2644021,50.0,1071292,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22726.0,2113.0 +2644021,2644022,18.0,1071292,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22726.0,2113.0 +2644022,2644023,76.0,1071293,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644023,2644024,77.0,1071293,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644024,2644025,50.0,1071293,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644025,2644026,18.0,1071293,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644026,2644027,76.0,1071294,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644027,2644028,77.0,1071294,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644028,2644029,50.0,1071294,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644029,2644030,18.0,1071294,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644030,2644031,76.0,1071295,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22726.0,2113.0 +2644031,2644032,77.0,1071295,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2644032,2644033,50.0,1071295,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22726.0,2113.0 +2644033,2644034,18.0,1071295,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22726.0,2113.0 +2644034,2644035,76.0,1071296,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22725.0,2113.0 +2644035,2644036,77.0,1071296,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2644036,2644037,50.0,1071296,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22725.0,2113.0 +2644037,2644038,18.0,1071296,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22725.0,2113.0 +2644038,2644039,76.0,1071297,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644039,2644040,77.0,1071297,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644040,2644041,50.0,1071297,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644041,2644042,18.0,1071297,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644042,2644043,76.0,1071298,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22725.0,2113.0 +2644043,2644044,77.0,1071298,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2644044,2644045,50.0,1071298,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22725.0,2113.0 +2644045,2644046,18.0,1071298,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22725.0,2113.0 +2644046,2644047,76.0,1071299,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22722.0,2113.0 +2644047,2644048,77.0,1071299,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22722.0,2113.0 +2644048,2644049,50.0,1071299,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22722.0,2113.0 +2644049,2644050,18.0,1071299,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22722.0,2113.0 +2644050,2644051,76.0,1071300,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644051,2644052,77.0,1071300,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644052,2644053,50.0,1071300,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644053,2644054,18.0,1071300,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644054,2644055,76.0,1071301,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644055,2644056,77.0,1071301,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644056,2644057,50.0,1071301,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644057,2644058,18.0,1071301,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644058,2644059,76.0,1071302,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22721.0,2113.0 +2644059,2644060,77.0,1071302,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2644060,2644061,50.0,1071302,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22721.0,2113.0 +2644061,2644062,18.0,1071302,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22721.0,2113.0 +2644062,2644063,76.0,1071303,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22730.0,2113.0 +2644063,2644064,77.0,1071303,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22730.0,2113.0 +2644064,2644065,50.0,1071303,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22730.0,2113.0 +2644065,2644066,18.0,1071303,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22730.0,2113.0 +2644066,2644067,76.0,1071304,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644067,2644068,77.0,1071304,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644068,2644069,50.0,1071304,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644069,2644070,18.0,1071304,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644070,2644071,76.0,1071305,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22728.0,2113.0 +2644071,2644072,77.0,1071305,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22728.0,2113.0 +2644072,2644073,50.0,1071305,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22728.0,2113.0 +2644073,2644074,18.0,1071305,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22728.0,2113.0 +2644074,2644075,76.0,1071306,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644075,2644076,77.0,1071306,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644076,2644077,50.0,1071306,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644077,2644078,18.0,1071306,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644078,2644079,76.0,1071307,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644079,2644080,77.0,1071307,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644080,2644081,50.0,1071307,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644081,2644082,18.0,1071307,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644082,2644083,76.0,1071308,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644083,2644084,77.0,1071308,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644084,2644085,50.0,1071308,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644085,2644086,18.0,1071308,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644086,2644087,76.0,1071309,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644087,2644088,77.0,1071309,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644088,2644089,50.0,1071309,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644089,2644090,18.0,1071309,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644090,2644091,76.0,1071310,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644091,2644092,77.0,1071310,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644092,2644093,50.0,1071310,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644093,2644094,18.0,1071310,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644094,2644095,76.0,1071311,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644095,2644096,77.0,1071311,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644096,2644097,50.0,1071311,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644097,2644098,18.0,1071311,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644098,2644099,76.0,1071312,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644099,2644100,77.0,1071312,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644100,2644101,50.0,1071312,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644101,2644102,18.0,1071312,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644102,2644103,76.0,1071313,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644103,2644104,77.0,1071313,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644104,2644105,50.0,1071313,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644105,2644106,18.0,1071313,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644106,2644107,76.0,1071314,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22729.0,2113.0 +2644107,2644108,77.0,1071314,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22729.0,2113.0 +2644108,2644109,50.0,1071314,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22729.0,2113.0 +2644109,2644110,18.0,1071314,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22729.0,2113.0 +2644110,2644111,76.0,1071315,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644111,2644112,77.0,1071315,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644112,2644113,50.0,1071315,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644113,2644114,18.0,1071315,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644114,2644115,76.0,1071316,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644115,2644116,77.0,1071316,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644116,2644117,50.0,1071316,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644117,2644118,18.0,1071316,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644118,2644119,76.0,1071317,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644119,2644120,77.0,1071317,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644120,2644121,50.0,1071317,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644121,2644122,18.0,1071317,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644122,2644123,76.0,1071318,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644123,2644124,77.0,1071318,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644124,2644125,50.0,1071318,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644125,2644126,18.0,1071318,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644126,2644127,76.0,1071319,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644127,2644128,77.0,1071319,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644128,2644129,50.0,1071319,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644129,2644130,18.0,1071319,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644130,2644131,76.0,1071320,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22725.0,2113.0 +2644131,2644132,77.0,1071320,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2644132,2644133,50.0,1071320,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22725.0,2113.0 +2644133,2644134,18.0,1071320,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22725.0,2113.0 +2644134,2644135,76.0,1071321,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644135,2644136,77.0,1071321,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644136,2644137,50.0,1071321,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644137,2644138,18.0,1071321,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644138,2644139,66.0,1071322,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,7115,16.0,22724.0,2113.0 +2644139,2644140,18.0,1071322,2,2,3,2,6.0,-9.0,-9.0,13.0,4.0,4481,5.0,22724.0,2113.0 +2644140,2644141,66.0,1071323,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,7115,16.0,22724.0,2113.0 +2644141,2644142,18.0,1071323,2,2,3,2,6.0,-9.0,-9.0,13.0,4.0,4481,5.0,22724.0,2113.0 +2644142,2644143,66.0,1071324,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,7115,16.0,22724.0,2113.0 +2644143,2644144,18.0,1071324,2,2,3,2,6.0,-9.0,-9.0,13.0,4.0,4481,5.0,22724.0,2113.0 +2644144,2644145,66.0,1071325,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,7115,16.0,22724.0,2113.0 +2644145,2644146,18.0,1071325,2,2,3,2,6.0,-9.0,-9.0,13.0,4.0,4481,5.0,22724.0,2113.0 +2644146,2644147,66.0,1071326,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,7115,16.0,22724.0,2113.0 +2644147,2644148,18.0,1071326,2,2,3,2,6.0,-9.0,-9.0,13.0,4.0,4481,5.0,22724.0,2113.0 +2644148,2644149,66.0,1071327,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,7115,16.0,22724.0,2113.0 +2644149,2644150,18.0,1071327,2,2,3,2,6.0,-9.0,-9.0,13.0,4.0,4481,5.0,22724.0,2113.0 +2644150,2644151,61.0,1071328,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22724.0,2113.0 +2644151,2644152,59.0,1071328,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2644152,2644153,22.0,1071328,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22724.0,2113.0 +2644153,2644154,61.0,1071329,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22729.0,2113.0 +2644154,2644155,59.0,1071329,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22729.0,2113.0 +2644155,2644156,22.0,1071329,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22729.0,2113.0 +2644156,2644157,61.0,1071330,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22724.0,2113.0 +2644157,2644158,59.0,1071330,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2644158,2644159,22.0,1071330,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22724.0,2113.0 +2644159,2644160,61.0,1071331,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22724.0,2113.0 +2644160,2644161,59.0,1071331,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2644161,2644162,22.0,1071331,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22724.0,2113.0 +2644162,2644163,61.0,1071332,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22730.0,2113.0 +2644163,2644164,59.0,1071332,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22730.0,2113.0 +2644164,2644165,22.0,1071332,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22730.0,2113.0 +2644165,2644166,61.0,1071333,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22722.0,2113.0 +2644166,2644167,59.0,1071333,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22722.0,2113.0 +2644167,2644168,22.0,1071333,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22722.0,2113.0 +2644168,2644169,61.0,1071334,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22724.0,2113.0 +2644169,2644170,59.0,1071334,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2644170,2644171,22.0,1071334,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22724.0,2113.0 +2644171,2644172,61.0,1071335,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22726.0,2113.0 +2644172,2644173,59.0,1071335,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22726.0,2113.0 +2644173,2644174,22.0,1071335,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22726.0,2113.0 +2644174,2644175,61.0,1071336,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22724.0,2113.0 +2644175,2644176,59.0,1071336,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2644176,2644177,22.0,1071336,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22724.0,2113.0 +2644177,2644178,61.0,1071337,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22724.0,2113.0 +2644178,2644179,59.0,1071337,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2644179,2644180,22.0,1071337,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22724.0,2113.0 +2644180,2644181,61.0,1071338,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22720.0,2113.0 +2644181,2644182,59.0,1071338,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22720.0,2113.0 +2644182,2644183,22.0,1071338,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22720.0,2113.0 +2644183,2644184,61.0,1071339,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,621M,14.0,22725.0,2113.0 +2644184,2644185,59.0,1071339,2,2,1,2,1.0,48.0,1.0,-9.0,4.0,5241,9.0,22725.0,2113.0 +2644185,2644186,22.0,1071339,3,2,2,2,1.0,36.0,1.0,-9.0,4.0,6111,13.0,22725.0,2113.0 +2644186,2644187,49.0,1071340,1,2,0,4,1.0,40.0,3.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644187,2644188,21.0,1071340,2,2,2,4,1.0,25.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2644188,2644189,59.0,1071341,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2644189,2644190,29.0,1071341,2,2,2,4,1.0,21.0,1.0,-9.0,4.0,6216,14.0,22726.0,2113.0 +2644190,2644191,23.0,1071341,3,2,2,4,3.0,14.0,4.0,14.0,4.0,6216,14.0,22726.0,2113.0 +2644191,2644192,11.0,1071341,4,2,7,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22726.0,2113.0 +2644192,2644193,6.0,1071341,5,1,7,4,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22726.0,2113.0 +2644193,2644194,59.0,1071342,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644194,2644195,29.0,1071342,2,2,2,4,1.0,21.0,1.0,-9.0,4.0,6216,14.0,22724.0,2113.0 +2644195,2644196,23.0,1071342,3,2,2,4,3.0,14.0,4.0,14.0,4.0,6216,14.0,22724.0,2113.0 +2644196,2644197,11.0,1071342,4,2,7,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22724.0,2113.0 +2644197,2644198,6.0,1071342,5,1,7,4,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2644198,2644199,59.0,1071343,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22723.0,2113.0 +2644199,2644200,29.0,1071343,2,2,2,4,1.0,21.0,1.0,-9.0,4.0,6216,14.0,22723.0,2113.0 +2644200,2644201,23.0,1071343,3,2,2,4,3.0,14.0,4.0,14.0,4.0,6216,14.0,22723.0,2113.0 +2644201,2644202,11.0,1071343,4,2,7,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22723.0,2113.0 +2644202,2644203,6.0,1071343,5,1,7,4,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22723.0,2113.0 +2644203,2644204,59.0,1071344,1,1,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644204,2644205,29.0,1071344,2,2,2,4,1.0,21.0,1.0,-9.0,4.0,6216,14.0,22724.0,2113.0 +2644205,2644206,23.0,1071344,3,2,2,4,3.0,14.0,4.0,14.0,4.0,6216,14.0,22724.0,2113.0 +2644206,2644207,11.0,1071344,4,2,7,4,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22724.0,2113.0 +2644207,2644208,6.0,1071344,5,1,7,4,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2644208,2644209,50.0,1071345,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,325M,3.0,22724.0,2113.0 +2644209,2644210,23.0,1071345,2,1,2,2,6.0,-9.0,-9.0,15.0,4.0,3399ZM,3.0,22724.0,2113.0 +2644210,2644211,50.0,1071346,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,325M,3.0,22724.0,2113.0 +2644211,2644212,23.0,1071346,2,1,2,2,6.0,-9.0,-9.0,15.0,4.0,3399ZM,3.0,22724.0,2113.0 +2644212,2644213,50.0,1071347,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,325M,3.0,22724.0,2113.0 +2644213,2644214,23.0,1071347,2,1,2,2,6.0,-9.0,-9.0,15.0,4.0,3399ZM,3.0,22724.0,2113.0 +2644214,2644215,50.0,1071348,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,325M,3.0,22724.0,2113.0 +2644215,2644216,23.0,1071348,2,1,2,2,6.0,-9.0,-9.0,15.0,4.0,3399ZM,3.0,22724.0,2113.0 +2644216,2644217,50.0,1071349,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,325M,3.0,22724.0,2113.0 +2644217,2644218,23.0,1071349,2,1,2,2,6.0,-9.0,-9.0,15.0,4.0,3399ZM,3.0,22724.0,2113.0 +2644218,2644219,50.0,1071350,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,325M,3.0,22724.0,2113.0 +2644219,2644220,23.0,1071350,2,1,2,2,6.0,-9.0,-9.0,15.0,4.0,3399ZM,3.0,22724.0,2113.0 +2644220,2644221,50.0,1071351,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,325M,3.0,22724.0,2113.0 +2644221,2644222,23.0,1071351,2,1,2,2,6.0,-9.0,-9.0,15.0,4.0,3399ZM,3.0,22724.0,2113.0 +2644222,2644223,50.0,1071352,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,325M,3.0,22724.0,2113.0 +2644223,2644224,23.0,1071352,2,1,2,2,6.0,-9.0,-9.0,15.0,4.0,3399ZM,3.0,22724.0,2113.0 +2644224,2644225,45.0,1071353,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644225,2644226,21.0,1071353,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644226,2644227,45.0,1071354,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644227,2644228,21.0,1071354,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644228,2644229,45.0,1071355,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644229,2644230,21.0,1071355,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644230,2644231,45.0,1071356,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644231,2644232,21.0,1071356,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644232,2644233,45.0,1071357,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644233,2644234,21.0,1071357,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644234,2644235,45.0,1071358,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644235,2644236,21.0,1071358,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644236,2644237,45.0,1071359,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644237,2644238,21.0,1071359,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644238,2644239,45.0,1071360,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22720.0,2113.0 +2644239,2644240,21.0,1071360,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22720.0,2113.0 +2644240,2644241,45.0,1071361,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644241,2644242,21.0,1071361,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644242,2644243,45.0,1071362,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644243,2644244,21.0,1071362,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644244,2644245,45.0,1071363,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644245,2644246,21.0,1071363,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644246,2644247,45.0,1071364,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644247,2644248,21.0,1071364,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644248,2644249,45.0,1071365,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644249,2644250,21.0,1071365,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644250,2644251,45.0,1071366,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644251,2644252,21.0,1071366,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644252,2644253,45.0,1071367,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644253,2644254,21.0,1071367,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644254,2644255,45.0,1071368,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644255,2644256,21.0,1071368,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644256,2644257,45.0,1071369,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2644257,2644258,21.0,1071369,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2644258,2644259,45.0,1071370,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22722.0,2113.0 +2644259,2644260,21.0,1071370,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22722.0,2113.0 +2644260,2644261,45.0,1071371,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2644261,2644262,21.0,1071371,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2644262,2644263,45.0,1071372,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644263,2644264,21.0,1071372,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644264,2644265,45.0,1071373,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644265,2644266,21.0,1071373,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644266,2644267,45.0,1071374,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644267,2644268,21.0,1071374,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644268,2644269,45.0,1071375,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644269,2644270,21.0,1071375,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644270,2644271,45.0,1071376,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644271,2644272,21.0,1071376,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644272,2644273,45.0,1071377,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644273,2644274,21.0,1071377,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644274,2644275,45.0,1071378,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644275,2644276,21.0,1071378,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644276,2644277,45.0,1071379,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22725.0,2113.0 +2644277,2644278,21.0,1071379,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22725.0,2113.0 +2644278,2644279,45.0,1071380,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644279,2644280,21.0,1071380,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644280,2644281,45.0,1071381,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644281,2644282,21.0,1071381,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644282,2644283,45.0,1071382,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22721.0,2113.0 +2644283,2644284,21.0,1071382,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22721.0,2113.0 +2644284,2644285,45.0,1071383,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644285,2644286,21.0,1071383,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644286,2644287,45.0,1071384,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2644287,2644288,21.0,1071384,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2644288,2644289,45.0,1071385,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22721.0,2113.0 +2644289,2644290,21.0,1071385,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22721.0,2113.0 +2644290,2644291,45.0,1071386,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644291,2644292,21.0,1071386,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644292,2644293,45.0,1071387,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644293,2644294,21.0,1071387,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644294,2644295,45.0,1071388,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22730.0,2113.0 +2644295,2644296,21.0,1071388,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22730.0,2113.0 +2644296,2644297,45.0,1071389,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644297,2644298,21.0,1071389,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644298,2644299,45.0,1071390,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644299,2644300,21.0,1071390,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644300,2644301,45.0,1071391,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2644301,2644302,21.0,1071391,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2644302,2644303,45.0,1071392,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644303,2644304,21.0,1071392,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644304,2644305,45.0,1071393,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644305,2644306,21.0,1071393,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644306,2644307,45.0,1071394,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22721.0,2113.0 +2644307,2644308,21.0,1071394,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22721.0,2113.0 +2644308,2644309,45.0,1071395,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644309,2644310,21.0,1071395,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644310,2644311,45.0,1071396,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644311,2644312,21.0,1071396,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644312,2644313,45.0,1071397,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644313,2644314,21.0,1071397,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644314,2644315,45.0,1071398,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644315,2644316,21.0,1071398,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644316,2644317,45.0,1071399,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644317,2644318,21.0,1071399,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644318,2644319,45.0,1071400,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22725.0,2113.0 +2644319,2644320,21.0,1071400,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22725.0,2113.0 +2644320,2644321,48.0,1071401,1,2,0,2,1.0,70.0,1.0,-9.0,4.0,485M,6.0,22724.0,2113.0 +2644321,2644322,47.0,1071402,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644322,2644323,47.0,1071403,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2644323,2644324,47.0,1071404,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22725.0,2113.0 +2644324,2644325,55.0,1071405,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644325,2644326,53.0,1071405,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644326,2644327,20.0,1071405,3,2,2,2,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22724.0,2113.0 +2644327,2644328,18.0,1071405,4,1,2,2,1.0,7.0,6.0,14.0,4.0,722Z,16.0,22724.0,2113.0 +2644328,2644329,50.0,1071406,1,2,0,2,1.0,45.0,1.0,-9.0,4.0,81393,17.0,22724.0,2113.0 +2644329,2644330,18.0,1071406,2,2,2,2,1.0,35.0,4.0,-9.0,4.0,454110,5.0,22724.0,2113.0 +2644330,2644331,0.0,1071406,3,2,7,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644331,2644332,50.0,1071407,1,2,0,2,1.0,45.0,1.0,-9.0,4.0,81393,17.0,22724.0,2113.0 +2644332,2644333,18.0,1071407,2,2,2,2,1.0,35.0,4.0,-9.0,4.0,454110,5.0,22724.0,2113.0 +2644333,2644334,0.0,1071407,3,2,7,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644334,2644335,50.0,1071408,1,2,0,2,1.0,45.0,1.0,-9.0,4.0,81393,17.0,22724.0,2113.0 +2644335,2644336,18.0,1071408,2,2,2,2,1.0,35.0,4.0,-9.0,4.0,454110,5.0,22724.0,2113.0 +2644336,2644337,0.0,1071408,3,2,7,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644337,2644338,56.0,1071409,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2644338,2644339,21.0,1071409,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644339,2644340,16.0,1071409,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644340,2644341,56.0,1071410,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2644341,2644342,21.0,1071410,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644342,2644343,16.0,1071410,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644343,2644344,56.0,1071411,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2644344,2644345,21.0,1071411,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644345,2644346,16.0,1071411,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644346,2644347,56.0,1071412,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2644347,2644348,21.0,1071412,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644348,2644349,16.0,1071412,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644349,2644350,56.0,1071413,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2644350,2644351,21.0,1071413,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644351,2644352,16.0,1071413,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644352,2644353,56.0,1071414,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22725.0,2113.0 +2644353,2644354,21.0,1071414,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2644354,2644355,16.0,1071414,3,2,2,2,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22725.0,2113.0 +2644355,2644356,45.0,1071415,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2644356,2644357,24.0,1071415,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22724.0,2113.0 +2644357,2644358,6.0,1071415,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2644358,2644359,4.0,1071415,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22724.0,2113.0 +2644359,2644360,0.0,1071415,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644360,2644361,45.0,1071416,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2644361,2644362,24.0,1071416,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22724.0,2113.0 +2644362,2644363,6.0,1071416,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2644363,2644364,4.0,1071416,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22724.0,2113.0 +2644364,2644365,0.0,1071416,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644365,2644366,45.0,1071417,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22720.0,2113.0 +2644366,2644367,24.0,1071417,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22720.0,2113.0 +2644367,2644368,6.0,1071417,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22720.0,2113.0 +2644368,2644369,4.0,1071417,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22720.0,2113.0 +2644369,2644370,0.0,1071417,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22720.0,2113.0 +2644370,2644371,45.0,1071418,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22720.0,2113.0 +2644371,2644372,24.0,1071418,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22720.0,2113.0 +2644372,2644373,6.0,1071418,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22720.0,2113.0 +2644373,2644374,4.0,1071418,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22720.0,2113.0 +2644374,2644375,0.0,1071418,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22720.0,2113.0 +2644375,2644376,45.0,1071419,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2644376,2644377,24.0,1071419,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22724.0,2113.0 +2644377,2644378,6.0,1071419,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2644378,2644379,4.0,1071419,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22724.0,2113.0 +2644379,2644380,0.0,1071419,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644380,2644381,45.0,1071420,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2644381,2644382,24.0,1071420,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22724.0,2113.0 +2644382,2644383,6.0,1071420,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2644383,2644384,4.0,1071420,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22724.0,2113.0 +2644384,2644385,0.0,1071420,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644385,2644386,45.0,1071421,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2644386,2644387,24.0,1071421,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22724.0,2113.0 +2644387,2644388,6.0,1071421,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2644388,2644389,4.0,1071421,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22724.0,2113.0 +2644389,2644390,0.0,1071421,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644390,2644391,45.0,1071422,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2644391,2644392,24.0,1071422,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22724.0,2113.0 +2644392,2644393,6.0,1071422,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2644393,2644394,4.0,1071422,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22724.0,2113.0 +2644394,2644395,0.0,1071422,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644395,2644396,45.0,1071423,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2644396,2644397,24.0,1071423,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22724.0,2113.0 +2644397,2644398,6.0,1071423,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2644398,2644399,4.0,1071423,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22724.0,2113.0 +2644399,2644400,0.0,1071423,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644400,2644401,45.0,1071424,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2644401,2644402,24.0,1071424,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22724.0,2113.0 +2644402,2644403,6.0,1071424,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2644403,2644404,4.0,1071424,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22724.0,2113.0 +2644404,2644405,0.0,1071424,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644405,2644406,63.0,1071425,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644406,2644407,45.0,1071425,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644407,2644408,18.0,1071425,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644408,2644409,17.0,1071425,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644409,2644410,63.0,1071426,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644410,2644411,45.0,1071426,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644411,2644412,18.0,1071426,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644412,2644413,17.0,1071426,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644413,2644414,63.0,1071427,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644414,2644415,45.0,1071427,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644415,2644416,18.0,1071427,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644416,2644417,17.0,1071427,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644417,2644418,63.0,1071428,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22722.0,2113.0 +2644418,2644419,45.0,1071428,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22722.0,2113.0 +2644419,2644420,18.0,1071428,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22722.0,2113.0 +2644420,2644421,17.0,1071428,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22722.0,2113.0 +2644421,2644422,63.0,1071429,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644422,2644423,45.0,1071429,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644423,2644424,18.0,1071429,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644424,2644425,17.0,1071429,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644425,2644426,63.0,1071430,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2644426,2644427,45.0,1071430,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22725.0,2113.0 +2644427,2644428,18.0,1071430,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22725.0,2113.0 +2644428,2644429,17.0,1071430,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22725.0,2113.0 +2644429,2644430,63.0,1071431,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644430,2644431,45.0,1071431,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644431,2644432,18.0,1071431,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644432,2644433,17.0,1071431,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644433,2644434,63.0,1071432,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644434,2644435,45.0,1071432,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644435,2644436,18.0,1071432,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644436,2644437,17.0,1071432,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644437,2644438,63.0,1071433,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644438,2644439,45.0,1071433,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644439,2644440,18.0,1071433,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644440,2644441,17.0,1071433,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644441,2644442,63.0,1071434,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644442,2644443,45.0,1071434,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644443,2644444,18.0,1071434,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644444,2644445,17.0,1071434,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644445,2644446,63.0,1071435,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644446,2644447,45.0,1071435,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644447,2644448,18.0,1071435,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644448,2644449,17.0,1071435,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644449,2644450,63.0,1071436,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644450,2644451,45.0,1071436,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644451,2644452,18.0,1071436,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644452,2644453,17.0,1071436,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22724.0,2113.0 +2644453,2644454,54.0,1071437,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644454,2644455,18.0,1071437,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644455,2644456,1.0,1071437,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644456,2644457,54.0,1071438,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2644457,2644458,18.0,1071438,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644458,2644459,1.0,1071438,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22726.0,2113.0 +2644459,2644460,54.0,1071439,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22722.0,2113.0 +2644460,2644461,18.0,1071439,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22722.0,2113.0 +2644461,2644462,1.0,1071439,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22722.0,2113.0 +2644462,2644463,54.0,1071440,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22723.0,2113.0 +2644463,2644464,18.0,1071440,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22723.0,2113.0 +2644464,2644465,1.0,1071440,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22723.0,2113.0 +2644465,2644466,54.0,1071441,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22720.0,2113.0 +2644466,2644467,18.0,1071441,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22720.0,2113.0 +2644467,2644468,1.0,1071441,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22720.0,2113.0 +2644468,2644469,54.0,1071442,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2644469,2644470,18.0,1071442,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22726.0,2113.0 +2644470,2644471,1.0,1071442,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22726.0,2113.0 +2644471,2644472,54.0,1071443,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644472,2644473,18.0,1071443,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644473,2644474,1.0,1071443,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644474,2644475,54.0,1071444,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644475,2644476,18.0,1071444,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644476,2644477,1.0,1071444,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644477,2644478,54.0,1071445,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644478,2644479,18.0,1071445,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644479,2644480,1.0,1071445,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644480,2644481,54.0,1071446,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644481,2644482,18.0,1071446,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644482,2644483,1.0,1071446,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644483,2644484,54.0,1071447,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644484,2644485,18.0,1071447,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644485,2644486,1.0,1071447,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644486,2644487,54.0,1071448,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22728.0,2113.0 +2644487,2644488,18.0,1071448,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2644488,2644489,1.0,1071448,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22728.0,2113.0 +2644489,2644490,54.0,1071449,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22723.0,2113.0 +2644490,2644491,18.0,1071449,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22723.0,2113.0 +2644491,2644492,1.0,1071449,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22723.0,2113.0 +2644492,2644493,54.0,1071450,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22728.0,2113.0 +2644493,2644494,18.0,1071450,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2644494,2644495,1.0,1071450,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22728.0,2113.0 +2644495,2644496,54.0,1071451,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644496,2644497,18.0,1071451,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644497,2644498,1.0,1071451,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644498,2644499,54.0,1071452,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644499,2644500,18.0,1071452,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644500,2644501,1.0,1071452,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644501,2644502,54.0,1071453,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644502,2644503,18.0,1071453,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644503,2644504,1.0,1071453,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644504,2644505,54.0,1071454,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644505,2644506,18.0,1071454,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644506,2644507,1.0,1071454,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644507,2644508,54.0,1071455,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22722.0,2113.0 +2644508,2644509,18.0,1071455,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22722.0,2113.0 +2644509,2644510,1.0,1071455,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22722.0,2113.0 +2644510,2644511,54.0,1071456,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644511,2644512,18.0,1071456,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644512,2644513,1.0,1071456,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644513,2644514,54.0,1071457,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644514,2644515,18.0,1071457,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644515,2644516,1.0,1071457,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644516,2644517,54.0,1071458,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22722.0,2113.0 +2644517,2644518,18.0,1071458,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22722.0,2113.0 +2644518,2644519,1.0,1071458,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22722.0,2113.0 +2644519,2644520,54.0,1071459,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644520,2644521,18.0,1071459,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644521,2644522,1.0,1071459,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644522,2644523,54.0,1071460,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644523,2644524,18.0,1071460,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644524,2644525,1.0,1071460,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644525,2644526,54.0,1071461,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644526,2644527,18.0,1071461,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644527,2644528,1.0,1071461,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644528,2644529,54.0,1071462,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644529,2644530,18.0,1071462,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644530,2644531,1.0,1071462,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644531,2644532,54.0,1071463,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644532,2644533,18.0,1071463,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644533,2644534,1.0,1071463,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644534,2644535,54.0,1071464,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644535,2644536,18.0,1071464,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644536,2644537,1.0,1071464,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644537,2644538,54.0,1071465,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644538,2644539,18.0,1071465,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644539,2644540,1.0,1071465,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644540,2644541,54.0,1071466,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22720.0,2113.0 +2644541,2644542,18.0,1071466,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22720.0,2113.0 +2644542,2644543,1.0,1071466,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22720.0,2113.0 +2644543,2644544,54.0,1071467,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2644544,2644545,18.0,1071467,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22721.0,2113.0 +2644545,2644546,1.0,1071467,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22721.0,2113.0 +2644546,2644547,54.0,1071468,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644547,2644548,18.0,1071468,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2644548,2644549,1.0,1071468,3,2,7,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2644549,2644550,47.0,1071469,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644550,2644551,12.0,1071469,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22724.0,2113.0 +2644551,2644552,47.0,1071470,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,923,18.0,22724.0,2113.0 +2644552,2644553,41.0,1071470,2,1,1,2,1.0,99.0,1.0,-9.0,2.0,928P,18.0,22724.0,2113.0 +2644553,2644554,52.0,1071471,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644554,2644555,50.0,1071471,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644555,2644556,22.0,1071471,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644556,2644557,52.0,1071472,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22729.0,2113.0 +2644557,2644558,50.0,1071472,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22729.0,2113.0 +2644558,2644559,22.0,1071472,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22729.0,2113.0 +2644559,2644560,52.0,1071473,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644560,2644561,50.0,1071473,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644561,2644562,22.0,1071473,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644562,2644563,52.0,1071474,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644563,2644564,50.0,1071474,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644564,2644565,22.0,1071474,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644565,2644566,52.0,1071475,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644566,2644567,50.0,1071475,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644567,2644568,22.0,1071475,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644568,2644569,52.0,1071476,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644569,2644570,50.0,1071476,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644570,2644571,22.0,1071476,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644571,2644572,52.0,1071477,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644572,2644573,50.0,1071477,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644573,2644574,22.0,1071477,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644574,2644575,52.0,1071478,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22721.0,2113.0 +2644575,2644576,50.0,1071478,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22721.0,2113.0 +2644576,2644577,22.0,1071478,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22721.0,2113.0 +2644577,2644578,52.0,1071479,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22730.0,2113.0 +2644578,2644579,50.0,1071479,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22730.0,2113.0 +2644579,2644580,22.0,1071479,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22730.0,2113.0 +2644580,2644581,52.0,1071480,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22720.0,2113.0 +2644581,2644582,50.0,1071480,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22720.0,2113.0 +2644582,2644583,22.0,1071480,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22720.0,2113.0 +2644583,2644584,52.0,1071481,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644584,2644585,50.0,1071481,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644585,2644586,22.0,1071481,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644586,2644587,52.0,1071482,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644587,2644588,50.0,1071482,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644588,2644589,22.0,1071482,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644589,2644590,52.0,1071483,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22721.0,2113.0 +2644590,2644591,50.0,1071483,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22721.0,2113.0 +2644591,2644592,22.0,1071483,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22721.0,2113.0 +2644592,2644593,52.0,1071484,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644593,2644594,50.0,1071484,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644594,2644595,22.0,1071484,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644595,2644596,52.0,1071485,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22727.0,2113.0 +2644596,2644597,50.0,1071485,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22727.0,2113.0 +2644597,2644598,22.0,1071485,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22727.0,2113.0 +2644598,2644599,52.0,1071486,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644599,2644600,50.0,1071486,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644600,2644601,22.0,1071486,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644601,2644602,52.0,1071487,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644602,2644603,50.0,1071487,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644603,2644604,22.0,1071487,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644604,2644605,52.0,1071488,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644605,2644606,50.0,1071488,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644606,2644607,22.0,1071488,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644607,2644608,52.0,1071489,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644608,2644609,50.0,1071489,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644609,2644610,22.0,1071489,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644610,2644611,52.0,1071490,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644611,2644612,50.0,1071490,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644612,2644613,22.0,1071490,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22728.0,2113.0 +2644613,2644614,52.0,1071491,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22723.0,2113.0 +2644614,2644615,50.0,1071491,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22723.0,2113.0 +2644615,2644616,22.0,1071491,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22723.0,2113.0 +2644616,2644617,52.0,1071492,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22723.0,2113.0 +2644617,2644618,50.0,1071492,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22723.0,2113.0 +2644618,2644619,22.0,1071492,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22723.0,2113.0 +2644619,2644620,52.0,1071493,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644620,2644621,50.0,1071493,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644621,2644622,22.0,1071493,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644622,2644623,52.0,1071494,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644623,2644624,50.0,1071494,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644624,2644625,22.0,1071494,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644625,2644626,52.0,1071495,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644626,2644627,50.0,1071495,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644627,2644628,22.0,1071495,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644628,2644629,52.0,1071496,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22720.0,2113.0 +2644629,2644630,50.0,1071496,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22720.0,2113.0 +2644630,2644631,22.0,1071496,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22720.0,2113.0 +2644631,2644632,52.0,1071497,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644632,2644633,50.0,1071497,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644633,2644634,22.0,1071497,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644634,2644635,52.0,1071498,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22720.0,2113.0 +2644635,2644636,50.0,1071498,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22720.0,2113.0 +2644636,2644637,22.0,1071498,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22720.0,2113.0 +2644637,2644638,52.0,1071499,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644638,2644639,50.0,1071499,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644639,2644640,22.0,1071499,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22724.0,2113.0 +2644640,2644641,52.0,1071500,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22722.0,2113.0 +2644641,2644642,50.0,1071500,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22722.0,2113.0 +2644642,2644643,22.0,1071500,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22722.0,2113.0 +2644643,2644644,54.0,1071501,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2644644,2644645,59.0,1071501,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22726.0,2113.0 +2644645,2644646,18.0,1071501,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22726.0,2113.0 +2644646,2644647,49.0,1071502,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2644647,2644648,57.0,1071502,2,1,1,2,1.0,40.0,1.0,-9.0,2.0,485M,6.0,22724.0,2113.0 +2644648,2644649,19.0,1071502,3,2,2,4,1.0,20.0,5.0,-9.0,4.0,485M,6.0,22724.0,2113.0 +2644649,2644650,61.0,1071503,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22726.0,2113.0 +2644650,2644651,34.0,1071503,2,1,2,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22726.0,2113.0 +2644651,2644652,22.0,1071503,3,1,3,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2644652,2644653,61.0,1071504,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22720.0,2113.0 +2644653,2644654,34.0,1071504,2,1,2,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22720.0,2113.0 +2644654,2644655,22.0,1071504,3,1,3,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22720.0,2113.0 +2644655,2644656,61.0,1071505,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2644656,2644657,34.0,1071505,2,1,2,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22724.0,2113.0 +2644657,2644658,22.0,1071505,3,1,3,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644658,2644659,54.0,1071506,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2644659,2644660,47.0,1071506,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22721.0,2113.0 +2644660,2644661,20.0,1071506,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22721.0,2113.0 +2644661,2644662,54.0,1071507,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22722.0,2113.0 +2644662,2644663,47.0,1071507,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22722.0,2113.0 +2644663,2644664,20.0,1071507,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22722.0,2113.0 +2644664,2644665,54.0,1071508,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2644665,2644666,47.0,1071508,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22725.0,2113.0 +2644666,2644667,20.0,1071508,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22725.0,2113.0 +2644667,2644668,54.0,1071509,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644668,2644669,47.0,1071509,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644669,2644670,20.0,1071509,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644670,2644671,54.0,1071510,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644671,2644672,47.0,1071510,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644672,2644673,20.0,1071510,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644673,2644674,54.0,1071511,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644674,2644675,47.0,1071511,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644675,2644676,20.0,1071511,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644676,2644677,54.0,1071512,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22730.0,2113.0 +2644677,2644678,47.0,1071512,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22730.0,2113.0 +2644678,2644679,20.0,1071512,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22730.0,2113.0 +2644679,2644680,54.0,1071513,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644680,2644681,47.0,1071513,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644681,2644682,20.0,1071513,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644682,2644683,54.0,1071514,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22723.0,2113.0 +2644683,2644684,47.0,1071514,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22723.0,2113.0 +2644684,2644685,20.0,1071514,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22723.0,2113.0 +2644685,2644686,54.0,1071515,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644686,2644687,47.0,1071515,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644687,2644688,20.0,1071515,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644688,2644689,54.0,1071516,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22730.0,2113.0 +2644689,2644690,47.0,1071516,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22730.0,2113.0 +2644690,2644691,20.0,1071516,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22730.0,2113.0 +2644691,2644692,54.0,1071517,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644692,2644693,47.0,1071517,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644693,2644694,20.0,1071517,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644694,2644695,54.0,1071518,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644695,2644696,47.0,1071518,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644696,2644697,20.0,1071518,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644697,2644698,54.0,1071519,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644698,2644699,47.0,1071519,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644699,2644700,20.0,1071519,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644700,2644701,54.0,1071520,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644701,2644702,47.0,1071520,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644702,2644703,20.0,1071520,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644703,2644704,54.0,1071521,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2644704,2644705,47.0,1071521,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22721.0,2113.0 +2644705,2644706,20.0,1071521,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22721.0,2113.0 +2644706,2644707,54.0,1071522,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644707,2644708,47.0,1071522,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644708,2644709,20.0,1071522,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644709,2644710,54.0,1071523,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22728.0,2113.0 +2644710,2644711,47.0,1071523,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22728.0,2113.0 +2644711,2644712,20.0,1071523,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22728.0,2113.0 +2644712,2644713,54.0,1071524,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644713,2644714,47.0,1071524,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644714,2644715,20.0,1071524,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644715,2644716,54.0,1071525,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2644716,2644717,47.0,1071525,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22726.0,2113.0 +2644717,2644718,20.0,1071525,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22726.0,2113.0 +2644718,2644719,54.0,1071526,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22720.0,2113.0 +2644719,2644720,47.0,1071526,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22720.0,2113.0 +2644720,2644721,20.0,1071526,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22720.0,2113.0 +2644721,2644722,54.0,1071527,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644722,2644723,47.0,1071527,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644723,2644724,20.0,1071527,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644724,2644725,54.0,1071528,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2644725,2644726,47.0,1071528,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22725.0,2113.0 +2644726,2644727,20.0,1071528,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22725.0,2113.0 +2644727,2644728,54.0,1071529,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22728.0,2113.0 +2644728,2644729,47.0,1071529,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22728.0,2113.0 +2644729,2644730,20.0,1071529,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22728.0,2113.0 +2644730,2644731,54.0,1071530,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644731,2644732,47.0,1071530,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644732,2644733,20.0,1071530,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644733,2644734,54.0,1071531,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644734,2644735,47.0,1071531,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644735,2644736,20.0,1071531,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644736,2644737,54.0,1071532,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644737,2644738,47.0,1071532,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644738,2644739,20.0,1071532,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644739,2644740,54.0,1071533,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2644740,2644741,47.0,1071533,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22726.0,2113.0 +2644741,2644742,20.0,1071533,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22726.0,2113.0 +2644742,2644743,54.0,1071534,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644743,2644744,47.0,1071534,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644744,2644745,20.0,1071534,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644745,2644746,54.0,1071535,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2644746,2644747,47.0,1071535,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22721.0,2113.0 +2644747,2644748,20.0,1071535,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22721.0,2113.0 +2644748,2644749,54.0,1071536,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644749,2644750,47.0,1071536,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644750,2644751,20.0,1071536,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644751,2644752,54.0,1071537,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644752,2644753,47.0,1071537,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644753,2644754,20.0,1071537,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644754,2644755,54.0,1071538,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644755,2644756,47.0,1071538,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644756,2644757,20.0,1071538,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644757,2644758,54.0,1071539,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2644758,2644759,47.0,1071539,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22721.0,2113.0 +2644759,2644760,20.0,1071539,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22721.0,2113.0 +2644760,2644761,54.0,1071540,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644761,2644762,47.0,1071540,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644762,2644763,20.0,1071540,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644763,2644764,54.0,1071541,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22723.0,2113.0 +2644764,2644765,47.0,1071541,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22723.0,2113.0 +2644765,2644766,20.0,1071541,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22723.0,2113.0 +2644766,2644767,54.0,1071542,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22723.0,2113.0 +2644767,2644768,47.0,1071542,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22723.0,2113.0 +2644768,2644769,20.0,1071542,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22723.0,2113.0 +2644769,2644770,54.0,1071543,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644770,2644771,47.0,1071543,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644771,2644772,20.0,1071543,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644772,2644773,54.0,1071544,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644773,2644774,47.0,1071544,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644774,2644775,20.0,1071544,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644775,2644776,54.0,1071545,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644776,2644777,47.0,1071545,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644777,2644778,20.0,1071545,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644778,2644779,54.0,1071546,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644779,2644780,47.0,1071546,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644780,2644781,20.0,1071546,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644781,2644782,54.0,1071547,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644782,2644783,47.0,1071547,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22724.0,2113.0 +2644783,2644784,20.0,1071547,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22724.0,2113.0 +2644784,2644785,52.0,1071548,1,2,0,1,1.0,48.0,1.0,-9.0,4.0,6214,14.0,22724.0,2113.0 +2644785,2644786,23.0,1071548,2,2,2,1,1.0,10.0,1.0,15.0,4.0,6111,13.0,22724.0,2113.0 +2644786,2644787,22.0,1071548,3,2,2,1,1.0,25.0,4.0,15.0,4.0,6111,13.0,22724.0,2113.0 +2644787,2644788,52.0,1071549,1,2,0,1,1.0,48.0,1.0,-9.0,4.0,6214,14.0,22721.0,2113.0 +2644788,2644789,23.0,1071549,2,2,2,1,1.0,10.0,1.0,15.0,4.0,6111,13.0,22721.0,2113.0 +2644789,2644790,22.0,1071549,3,2,2,1,1.0,25.0,4.0,15.0,4.0,6111,13.0,22721.0,2113.0 +2644790,2644791,52.0,1071550,1,2,0,1,1.0,48.0,1.0,-9.0,4.0,6214,14.0,22730.0,2113.0 +2644791,2644792,23.0,1071550,2,2,2,1,1.0,10.0,1.0,15.0,4.0,6111,13.0,22730.0,2113.0 +2644792,2644793,22.0,1071550,3,2,2,1,1.0,25.0,4.0,15.0,4.0,6111,13.0,22730.0,2113.0 +2644793,2644794,52.0,1071551,1,2,0,1,1.0,48.0,1.0,-9.0,4.0,6214,14.0,22721.0,2113.0 +2644794,2644795,23.0,1071551,2,2,2,1,1.0,10.0,1.0,15.0,4.0,6111,13.0,22721.0,2113.0 +2644795,2644796,22.0,1071551,3,2,2,1,1.0,25.0,4.0,15.0,4.0,6111,13.0,22721.0,2113.0 +2644796,2644797,45.0,1071552,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22730.0,2113.0 +2644797,2644798,21.0,1071552,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22730.0,2113.0 +2644798,2644799,45.0,1071553,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22724.0,2113.0 +2644799,2644800,21.0,1071553,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22724.0,2113.0 +2644800,2644801,45.0,1071554,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22724.0,2113.0 +2644801,2644802,21.0,1071554,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22724.0,2113.0 +2644802,2644803,45.0,1071555,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22728.0,2113.0 +2644803,2644804,21.0,1071555,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22728.0,2113.0 +2644804,2644805,46.0,1071556,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,454110,5.0,22724.0,2113.0 +2644805,2644806,53.0,1071556,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2644806,2644807,18.0,1071556,3,2,2,1,1.0,40.0,1.0,15.0,4.0,6231,14.0,22724.0,2113.0 +2644807,2644808,46.0,1071557,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,454110,5.0,22724.0,2113.0 +2644808,2644809,53.0,1071557,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2644809,2644810,18.0,1071557,3,2,2,1,1.0,40.0,1.0,15.0,4.0,6231,14.0,22724.0,2113.0 +2644810,2644811,46.0,1071558,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,454110,5.0,22720.0,2113.0 +2644811,2644812,53.0,1071558,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22720.0,2113.0 +2644812,2644813,18.0,1071558,3,2,2,1,1.0,40.0,1.0,15.0,4.0,6231,14.0,22720.0,2113.0 +2644813,2644814,46.0,1071559,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,454110,5.0,22726.0,2113.0 +2644814,2644815,53.0,1071559,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22726.0,2113.0 +2644815,2644816,18.0,1071559,3,2,2,1,1.0,40.0,1.0,15.0,4.0,6231,14.0,22726.0,2113.0 +2644816,2644817,46.0,1071560,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,454110,5.0,22728.0,2113.0 +2644817,2644818,53.0,1071560,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22728.0,2113.0 +2644818,2644819,18.0,1071560,3,2,2,1,1.0,40.0,1.0,15.0,4.0,6231,14.0,22728.0,2113.0 +2644819,2644820,46.0,1071561,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,454110,5.0,22725.0,2113.0 +2644820,2644821,53.0,1071561,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22725.0,2113.0 +2644821,2644822,18.0,1071561,3,2,2,1,1.0,40.0,1.0,15.0,4.0,6231,14.0,22725.0,2113.0 +2644822,2644823,46.0,1071562,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,454110,5.0,22724.0,2113.0 +2644823,2644824,53.0,1071562,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2644824,2644825,18.0,1071562,3,2,2,1,1.0,40.0,1.0,15.0,4.0,6231,14.0,22724.0,2113.0 +2644825,2644826,52.0,1071563,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22724.0,2113.0 +2644826,2644827,45.0,1071563,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644827,2644828,18.0,1071563,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22724.0,2113.0 +2644828,2644829,15.0,1071563,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22724.0,2113.0 +2644829,2644830,12.0,1071563,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22724.0,2113.0 +2644830,2644831,10.0,1071563,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22724.0,2113.0 +2644831,2644832,52.0,1071564,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22724.0,2113.0 +2644832,2644833,45.0,1071564,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644833,2644834,18.0,1071564,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22724.0,2113.0 +2644834,2644835,15.0,1071564,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22724.0,2113.0 +2644835,2644836,12.0,1071564,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22724.0,2113.0 +2644836,2644837,10.0,1071564,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22724.0,2113.0 +2644837,2644838,52.0,1071565,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22720.0,2113.0 +2644838,2644839,45.0,1071565,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22720.0,2113.0 +2644839,2644840,18.0,1071565,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22720.0,2113.0 +2644840,2644841,15.0,1071565,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22720.0,2113.0 +2644841,2644842,12.0,1071565,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22720.0,2113.0 +2644842,2644843,10.0,1071565,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22720.0,2113.0 +2644843,2644844,52.0,1071566,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22724.0,2113.0 +2644844,2644845,45.0,1071566,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644845,2644846,18.0,1071566,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22724.0,2113.0 +2644846,2644847,15.0,1071566,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22724.0,2113.0 +2644847,2644848,12.0,1071566,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22724.0,2113.0 +2644848,2644849,10.0,1071566,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22724.0,2113.0 +2644849,2644850,52.0,1071567,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22724.0,2113.0 +2644850,2644851,45.0,1071567,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644851,2644852,18.0,1071567,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22724.0,2113.0 +2644852,2644853,15.0,1071567,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22724.0,2113.0 +2644853,2644854,12.0,1071567,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22724.0,2113.0 +2644854,2644855,10.0,1071567,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22724.0,2113.0 +2644855,2644856,51.0,1071568,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44611,5.0,22724.0,2113.0 +2644856,2644857,45.0,1071568,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644857,2644858,16.0,1071568,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22724.0,2113.0 +2644858,2644859,4.0,1071568,4,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2644859,2644860,20.0,1071568,5,1,5,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22724.0,2113.0 +2644860,2644861,17.0,1071568,6,1,5,1,1.0,20.0,6.0,14.0,4.0,531M,9.0,22724.0,2113.0 +2644861,2644862,51.0,1071569,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44611,5.0,22724.0,2113.0 +2644862,2644863,45.0,1071569,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644863,2644864,16.0,1071569,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22724.0,2113.0 +2644864,2644865,4.0,1071569,4,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2644865,2644866,20.0,1071569,5,1,5,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22724.0,2113.0 +2644866,2644867,17.0,1071569,6,1,5,1,1.0,20.0,6.0,14.0,4.0,531M,9.0,22724.0,2113.0 +2644867,2644868,47.0,1071570,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644868,2644869,25.0,1071570,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22724.0,2113.0 +2644869,2644870,18.0,1071570,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644870,2644871,14.0,1071570,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644871,2644872,12.0,1071570,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22724.0,2113.0 +2644872,2644873,57.0,1071570,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22724.0,2113.0 +2644873,2644874,47.0,1071571,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22730.0,2113.0 +2644874,2644875,25.0,1071571,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22730.0,2113.0 +2644875,2644876,18.0,1071571,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22730.0,2113.0 +2644876,2644877,14.0,1071571,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22730.0,2113.0 +2644877,2644878,12.0,1071571,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22730.0,2113.0 +2644878,2644879,57.0,1071571,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22730.0,2113.0 +2644879,2644880,47.0,1071572,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22723.0,2113.0 +2644880,2644881,25.0,1071572,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22723.0,2113.0 +2644881,2644882,18.0,1071572,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22723.0,2113.0 +2644882,2644883,14.0,1071572,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22723.0,2113.0 +2644883,2644884,12.0,1071572,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22723.0,2113.0 +2644884,2644885,57.0,1071572,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22723.0,2113.0 +2644885,2644886,47.0,1071573,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644886,2644887,25.0,1071573,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22724.0,2113.0 +2644887,2644888,18.0,1071573,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644888,2644889,14.0,1071573,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644889,2644890,12.0,1071573,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22724.0,2113.0 +2644890,2644891,57.0,1071573,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22724.0,2113.0 +2644891,2644892,47.0,1071574,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644892,2644893,25.0,1071574,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22724.0,2113.0 +2644893,2644894,18.0,1071574,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644894,2644895,14.0,1071574,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644895,2644896,12.0,1071574,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22724.0,2113.0 +2644896,2644897,57.0,1071574,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22724.0,2113.0 +2644897,2644898,47.0,1071575,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644898,2644899,25.0,1071575,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22724.0,2113.0 +2644899,2644900,18.0,1071575,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644900,2644901,14.0,1071575,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644901,2644902,12.0,1071575,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22724.0,2113.0 +2644902,2644903,57.0,1071575,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22724.0,2113.0 +2644903,2644904,47.0,1071576,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644904,2644905,25.0,1071576,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22724.0,2113.0 +2644905,2644906,18.0,1071576,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644906,2644907,14.0,1071576,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644907,2644908,12.0,1071576,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22724.0,2113.0 +2644908,2644909,57.0,1071576,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22724.0,2113.0 +2644909,2644910,47.0,1071577,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2644910,2644911,25.0,1071577,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22721.0,2113.0 +2644911,2644912,18.0,1071577,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22721.0,2113.0 +2644912,2644913,14.0,1071577,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22721.0,2113.0 +2644913,2644914,12.0,1071577,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22721.0,2113.0 +2644914,2644915,57.0,1071577,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22721.0,2113.0 +2644915,2644916,47.0,1071578,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644916,2644917,25.0,1071578,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22724.0,2113.0 +2644917,2644918,18.0,1071578,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644918,2644919,14.0,1071578,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644919,2644920,12.0,1071578,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22724.0,2113.0 +2644920,2644921,57.0,1071578,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22724.0,2113.0 +2644921,2644922,47.0,1071579,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2644922,2644923,25.0,1071579,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22724.0,2113.0 +2644923,2644924,18.0,1071579,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2644924,2644925,14.0,1071579,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22724.0,2113.0 +2644925,2644926,12.0,1071579,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22724.0,2113.0 +2644926,2644927,57.0,1071579,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22724.0,2113.0 +2644927,2644928,47.0,1071580,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2644928,2644929,25.0,1071580,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22725.0,2113.0 +2644929,2644930,18.0,1071580,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22725.0,2113.0 +2644930,2644931,14.0,1071580,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22725.0,2113.0 +2644931,2644932,12.0,1071580,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22725.0,2113.0 +2644932,2644933,57.0,1071580,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22725.0,2113.0 +2644933,2644934,47.0,1071581,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2644934,2644935,25.0,1071581,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22721.0,2113.0 +2644935,2644936,18.0,1071581,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22721.0,2113.0 +2644936,2644937,14.0,1071581,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22721.0,2113.0 +2644937,2644938,12.0,1071581,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22721.0,2113.0 +2644938,2644939,57.0,1071581,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22721.0,2113.0 +2644939,2644940,40.0,1071582,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22730.0,2113.0 +2644940,2644941,40.0,1071583,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22724.0,2113.0 +2644941,2644942,40.0,1071584,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22724.0,2113.0 +2644942,2644943,40.0,1071585,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22722.0,2113.0 +2644943,2644944,40.0,1071586,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22724.0,2113.0 +2644944,2644945,40.0,1071587,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22724.0,2113.0 +2644945,2644946,40.0,1071588,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22724.0,2113.0 +2644946,2644947,40.0,1071589,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22722.0,2113.0 +2644947,2644948,40.0,1071590,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22726.0,2113.0 +2644948,2644949,40.0,1071591,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22728.0,2113.0 +2644949,2644950,40.0,1071592,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22728.0,2113.0 +2644950,2644951,40.0,1071593,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22722.0,2113.0 +2644951,2644952,40.0,1071594,1,1,0,3,1.0,50.0,1.0,-9.0,4.0,4412,5.0,22724.0,2113.0 +2644952,2644953,28.0,1071595,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644953,2644954,46.0,1071595,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644954,2644955,28.0,1071596,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644955,2644956,46.0,1071596,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644956,2644957,28.0,1071597,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22730.0,2113.0 +2644957,2644958,46.0,1071597,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22730.0,2113.0 +2644958,2644959,28.0,1071598,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644959,2644960,46.0,1071598,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644960,2644961,28.0,1071599,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644961,2644962,46.0,1071599,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644962,2644963,28.0,1071600,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644963,2644964,46.0,1071600,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644964,2644965,28.0,1071601,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644965,2644966,46.0,1071601,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644966,2644967,28.0,1071602,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644967,2644968,46.0,1071602,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644968,2644969,28.0,1071603,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644969,2644970,46.0,1071603,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644970,2644971,28.0,1071604,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644971,2644972,46.0,1071604,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644972,2644973,28.0,1071605,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22721.0,2113.0 +2644973,2644974,46.0,1071605,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22721.0,2113.0 +2644974,2644975,28.0,1071606,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644975,2644976,46.0,1071606,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644976,2644977,28.0,1071607,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644977,2644978,46.0,1071607,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644978,2644979,28.0,1071608,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644979,2644980,46.0,1071608,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644980,2644981,28.0,1071609,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22730.0,2113.0 +2644981,2644982,46.0,1071609,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22730.0,2113.0 +2644982,2644983,28.0,1071610,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644983,2644984,46.0,1071610,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644984,2644985,28.0,1071611,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644985,2644986,46.0,1071611,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644986,2644987,28.0,1071612,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644987,2644988,46.0,1071612,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644988,2644989,28.0,1071613,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644989,2644990,46.0,1071613,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644990,2644991,28.0,1071614,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644991,2644992,46.0,1071614,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644992,2644993,28.0,1071615,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22720.0,2113.0 +2644993,2644994,46.0,1071615,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22720.0,2113.0 +2644994,2644995,28.0,1071616,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2644995,2644996,46.0,1071616,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2644996,2644997,28.0,1071617,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22728.0,2113.0 +2644997,2644998,46.0,1071617,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22728.0,2113.0 +2644998,2644999,28.0,1071618,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22722.0,2113.0 +2644999,2645000,46.0,1071618,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22722.0,2113.0 +2645000,2645001,28.0,1071619,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22728.0,2113.0 +2645001,2645002,46.0,1071619,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22728.0,2113.0 +2645002,2645003,28.0,1071620,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2645003,2645004,46.0,1071620,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2645004,2645005,28.0,1071621,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2645005,2645006,46.0,1071621,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2645006,2645007,28.0,1071622,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2645007,2645008,46.0,1071622,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22724.0,2113.0 +2645008,2645009,28.0,1071623,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645009,2645010,25.0,1071623,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645010,2645011,28.0,1071624,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22722.0,2113.0 +2645011,2645012,25.0,1071624,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22722.0,2113.0 +2645012,2645013,28.0,1071625,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645013,2645014,25.0,1071625,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645014,2645015,28.0,1071626,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645015,2645016,25.0,1071626,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645016,2645017,28.0,1071627,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22726.0,2113.0 +2645017,2645018,25.0,1071627,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22726.0,2113.0 +2645018,2645019,28.0,1071628,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645019,2645020,25.0,1071628,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645020,2645021,28.0,1071629,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645021,2645022,25.0,1071629,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645022,2645023,28.0,1071630,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645023,2645024,25.0,1071630,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645024,2645025,28.0,1071631,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22728.0,2113.0 +2645025,2645026,25.0,1071631,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22728.0,2113.0 +2645026,2645027,28.0,1071632,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645027,2645028,25.0,1071632,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645028,2645029,28.0,1071633,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22725.0,2113.0 +2645029,2645030,25.0,1071633,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22725.0,2113.0 +2645030,2645031,28.0,1071634,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645031,2645032,25.0,1071634,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645032,2645033,28.0,1071635,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645033,2645034,25.0,1071635,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645034,2645035,28.0,1071636,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645035,2645036,25.0,1071636,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645036,2645037,28.0,1071637,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645037,2645038,25.0,1071637,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645038,2645039,28.0,1071638,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645039,2645040,25.0,1071638,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645040,2645041,28.0,1071639,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22724.0,2113.0 +2645041,2645042,25.0,1071639,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22724.0,2113.0 +2645042,2645043,38.0,1071640,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22724.0,2113.0 +2645043,2645044,38.0,1071641,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22726.0,2113.0 +2645044,2645045,38.0,1071642,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22724.0,2113.0 +2645045,2645046,38.0,1071643,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22724.0,2113.0 +2645046,2645047,38.0,1071644,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22725.0,2113.0 +2645047,2645048,38.0,1071645,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22720.0,2113.0 +2645048,2645049,38.0,1071646,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22724.0,2113.0 +2645049,2645050,38.0,1071647,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22726.0,2113.0 +2645050,2645051,38.0,1071648,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22724.0,2113.0 +2645051,2645052,38.0,1071649,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22728.0,2113.0 +2645052,2645053,38.0,1071650,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22724.0,2113.0 +2645053,2645054,38.0,1071651,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22726.0,2113.0 +2645054,2645055,38.0,1071652,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22724.0,2113.0 +2645055,2645056,38.0,1071653,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22726.0,2113.0 +2645056,2645057,38.0,1071654,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22724.0,2113.0 +2645057,2645058,38.0,1071655,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22726.0,2113.0 +2645058,2645059,26.0,1071656,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22724.0,2113.0 +2645059,2645060,5.0,1071656,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645060,2645061,26.0,1071657,1,2,0,3,1.0,60.0,1.0,15.0,4.0,5415,10.0,22725.0,2113.0 +2645061,2645062,5.0,1071657,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22725.0,2113.0 +2645062,2645063,39.0,1071658,1,2,0,2,1.0,50.0,1.0,-9.0,4.0,515,8.0,22724.0,2113.0 +2645063,2645064,18.0,1071658,2,2,2,4,1.0,28.0,1.0,14.0,4.0,722Z,16.0,22724.0,2113.0 +2645064,2645065,30.0,1071659,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22722.0,2113.0 +2645065,2645066,30.0,1071660,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22728.0,2113.0 +2645066,2645067,30.0,1071661,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645067,2645068,30.0,1071662,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22720.0,2113.0 +2645068,2645069,30.0,1071663,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645069,2645070,30.0,1071664,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645070,2645071,30.0,1071665,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645071,2645072,30.0,1071666,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645072,2645073,30.0,1071667,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645073,2645074,30.0,1071668,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22722.0,2113.0 +2645074,2645075,30.0,1071669,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645075,2645076,30.0,1071670,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22730.0,2113.0 +2645076,2645077,30.0,1071671,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645077,2645078,30.0,1071672,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22728.0,2113.0 +2645078,2645079,30.0,1071673,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645079,2645080,30.0,1071674,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22721.0,2113.0 +2645080,2645081,30.0,1071675,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645081,2645082,30.0,1071676,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645082,2645083,30.0,1071677,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22726.0,2113.0 +2645083,2645084,30.0,1071678,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22721.0,2113.0 +2645084,2645085,30.0,1071679,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645085,2645086,30.0,1071680,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645086,2645087,30.0,1071681,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645087,2645088,30.0,1071682,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645088,2645089,30.0,1071683,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645089,2645090,30.0,1071684,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22724.0,2113.0 +2645090,2645091,27.0,1071685,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645091,2645092,24.0,1071685,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645092,2645093,27.0,1071686,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645093,2645094,24.0,1071686,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645094,2645095,27.0,1071687,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645095,2645096,24.0,1071687,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645096,2645097,27.0,1071688,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22721.0,2113.0 +2645097,2645098,24.0,1071688,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22721.0,2113.0 +2645098,2645099,27.0,1071689,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22720.0,2113.0 +2645099,2645100,24.0,1071689,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22720.0,2113.0 +2645100,2645101,27.0,1071690,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645101,2645102,24.0,1071690,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645102,2645103,27.0,1071691,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645103,2645104,24.0,1071691,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645104,2645105,27.0,1071692,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645105,2645106,24.0,1071692,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645106,2645107,27.0,1071693,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645107,2645108,24.0,1071693,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645108,2645109,27.0,1071694,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645109,2645110,24.0,1071694,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645110,2645111,27.0,1071695,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645111,2645112,24.0,1071695,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645112,2645113,27.0,1071696,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22728.0,2113.0 +2645113,2645114,24.0,1071696,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22728.0,2113.0 +2645114,2645115,27.0,1071697,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645115,2645116,24.0,1071697,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645116,2645117,27.0,1071698,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645117,2645118,24.0,1071698,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645118,2645119,27.0,1071699,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22728.0,2113.0 +2645119,2645120,24.0,1071699,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22728.0,2113.0 +2645120,2645121,27.0,1071700,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645121,2645122,24.0,1071700,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645122,2645123,27.0,1071701,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645123,2645124,24.0,1071701,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645124,2645125,27.0,1071702,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645125,2645126,24.0,1071702,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645126,2645127,27.0,1071703,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645127,2645128,24.0,1071703,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645128,2645129,27.0,1071704,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22728.0,2113.0 +2645129,2645130,24.0,1071704,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22728.0,2113.0 +2645130,2645131,27.0,1071705,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645131,2645132,24.0,1071705,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645132,2645133,27.0,1071706,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645133,2645134,24.0,1071706,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645134,2645135,27.0,1071707,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645135,2645136,24.0,1071707,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645136,2645137,27.0,1071708,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645137,2645138,24.0,1071708,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645138,2645139,27.0,1071709,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645139,2645140,24.0,1071709,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645140,2645141,27.0,1071710,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645141,2645142,24.0,1071710,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645142,2645143,27.0,1071711,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645143,2645144,24.0,1071711,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645144,2645145,27.0,1071712,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645145,2645146,24.0,1071712,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645146,2645147,27.0,1071713,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22721.0,2113.0 +2645147,2645148,24.0,1071713,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22721.0,2113.0 +2645148,2645149,27.0,1071714,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22725.0,2113.0 +2645149,2645150,24.0,1071714,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22725.0,2113.0 +2645150,2645151,27.0,1071715,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22726.0,2113.0 +2645151,2645152,24.0,1071715,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22726.0,2113.0 +2645152,2645153,27.0,1071716,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645153,2645154,24.0,1071716,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645154,2645155,27.0,1071717,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645155,2645156,24.0,1071717,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645156,2645157,27.0,1071718,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22726.0,2113.0 +2645157,2645158,24.0,1071718,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22726.0,2113.0 +2645158,2645159,27.0,1071719,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645159,2645160,24.0,1071719,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645160,2645161,27.0,1071720,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645161,2645162,24.0,1071720,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645162,2645163,27.0,1071721,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645163,2645164,24.0,1071721,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645164,2645165,27.0,1071722,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645165,2645166,24.0,1071722,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645166,2645167,27.0,1071723,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645167,2645168,24.0,1071723,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645168,2645169,27.0,1071724,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645169,2645170,24.0,1071724,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645170,2645171,27.0,1071725,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645171,2645172,24.0,1071725,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645172,2645173,27.0,1071726,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645173,2645174,24.0,1071726,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645174,2645175,27.0,1071727,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645175,2645176,24.0,1071727,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645176,2645177,27.0,1071728,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22728.0,2113.0 +2645177,2645178,24.0,1071728,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22728.0,2113.0 +2645178,2645179,27.0,1071729,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645179,2645180,24.0,1071729,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645180,2645181,27.0,1071730,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645181,2645182,24.0,1071730,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645182,2645183,27.0,1071731,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645183,2645184,24.0,1071731,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645184,2645185,27.0,1071732,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645185,2645186,24.0,1071732,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645186,2645187,27.0,1071733,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645187,2645188,24.0,1071733,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645188,2645189,27.0,1071734,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22725.0,2113.0 +2645189,2645190,24.0,1071734,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22725.0,2113.0 +2645190,2645191,27.0,1071735,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645191,2645192,24.0,1071735,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645192,2645193,27.0,1071736,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22725.0,2113.0 +2645193,2645194,24.0,1071736,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22725.0,2113.0 +2645194,2645195,27.0,1071737,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645195,2645196,24.0,1071737,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645196,2645197,27.0,1071738,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645197,2645198,24.0,1071738,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645198,2645199,27.0,1071739,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645199,2645200,24.0,1071739,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645200,2645201,27.0,1071740,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645201,2645202,24.0,1071740,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645202,2645203,27.0,1071741,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22720.0,2113.0 +2645203,2645204,24.0,1071741,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22720.0,2113.0 +2645204,2645205,27.0,1071742,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645205,2645206,24.0,1071742,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645206,2645207,27.0,1071743,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645207,2645208,24.0,1071743,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645208,2645209,27.0,1071744,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645209,2645210,24.0,1071744,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645210,2645211,27.0,1071745,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645211,2645212,24.0,1071745,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645212,2645213,27.0,1071746,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,311M2,3.0,22724.0,2113.0 +2645213,2645214,24.0,1071746,2,1,12,2,1.0,45.0,1.0,15.0,4.0,3118Z,3.0,22724.0,2113.0 +2645214,2645215,43.0,1071747,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2645215,2645216,43.0,1071748,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2645216,2645217,43.0,1071749,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22728.0,2113.0 +2645217,2645218,43.0,1071750,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2645218,2645219,27.0,1071751,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22724.0,2113.0 +2645219,2645220,43.0,1071752,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22728.0,2113.0 +2645220,2645221,43.0,1071753,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2645221,2645222,27.0,1071754,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22724.0,2113.0 +2645222,2645223,32.0,1071755,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22724.0,2113.0 +2645223,2645224,32.0,1071756,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22726.0,2113.0 +2645224,2645225,43.0,1071757,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2645225,2645226,27.0,1071758,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22724.0,2113.0 +2645226,2645227,32.0,1071759,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22724.0,2113.0 +2645227,2645228,43.0,1071760,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2645228,2645229,27.0,1071761,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22726.0,2113.0 +2645229,2645230,27.0,1071762,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22726.0,2113.0 +2645230,2645231,43.0,1071763,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22720.0,2113.0 +2645231,2645232,43.0,1071764,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2645232,2645233,27.0,1071765,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22724.0,2113.0 +2645233,2645234,43.0,1071766,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22724.0,2113.0 +2645234,2645235,27.0,1071767,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22724.0,2113.0 +2645235,2645236,27.0,1071768,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22724.0,2113.0 +2645236,2645237,27.0,1071769,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2645237,2645238,27.0,1071770,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2645238,2645239,27.0,1071771,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2645239,2645240,27.0,1071772,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2645240,2645241,27.0,1071773,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2645241,2645242,27.0,1071774,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2645242,2645243,27.0,1071775,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2645243,2645244,27.0,1071776,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2645244,2645245,27.0,1071777,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22729.0,2113.0 +2645245,2645246,27.0,1071778,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2645246,2645247,27.0,1071779,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22730.0,2113.0 +2645247,2645248,27.0,1071780,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2645248,2645249,27.0,1071781,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22724.0,2113.0 +2645249,2645250,27.0,1071782,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22724.0,2113.0 +2645250,2645251,25.0,1071783,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22724.0,2113.0 +2645251,2645252,25.0,1071784,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22725.0,2113.0 +2645252,2645253,25.0,1071785,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22724.0,2113.0 +2645253,2645254,28.0,1071786,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22730.0,2113.0 +2645254,2645255,35.0,1071787,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22724.0,2113.0 +2645255,2645256,25.0,1071788,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22724.0,2113.0 +2645256,2645257,37.0,1071789,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22725.0,2113.0 +2645257,2645258,37.0,1071790,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22724.0,2113.0 +2645258,2645259,37.0,1071791,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22724.0,2113.0 +2645259,2645260,37.0,1071792,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22724.0,2113.0 +2645260,2645261,37.0,1071793,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22724.0,2113.0 +2645261,2645262,30.0,1071794,1,1,0,2,1.0,20.0,1.0,15.0,4.0,44511,5.0,22724.0,2113.0 +2645262,2645263,30.0,1071795,1,1,0,2,1.0,20.0,1.0,15.0,4.0,44511,5.0,22722.0,2113.0 +2645263,2645264,44.0,1071796,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22724.0,2113.0 +2645264,2645265,43.0,1071797,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5241,9.0,22724.0,2113.0 +2645265,2645266,13.0,1071797,2,2,2,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22724.0,2113.0 +2645266,2645267,43.0,1071798,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5241,9.0,22728.0,2113.0 +2645267,2645268,13.0,1071798,2,2,2,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22728.0,2113.0 +2645268,2645269,44.0,1071799,1,2,0,2,1.0,50.0,1.0,-9.0,4.0,813M,17.0,22724.0,2113.0 +2645269,2645270,8.0,1071799,2,1,2,2,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22724.0,2113.0 +2645270,2645271,44.0,1071800,1,2,0,2,1.0,50.0,1.0,-9.0,4.0,813M,17.0,22724.0,2113.0 +2645271,2645272,8.0,1071800,2,1,2,2,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22724.0,2113.0 +2645272,2645273,44.0,1071801,1,2,0,2,1.0,50.0,1.0,-9.0,4.0,813M,17.0,22724.0,2113.0 +2645273,2645274,8.0,1071801,2,1,2,2,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22724.0,2113.0 +2645274,2645275,44.0,1071802,1,2,0,2,1.0,50.0,1.0,-9.0,4.0,813M,17.0,22724.0,2113.0 +2645275,2645276,8.0,1071802,2,1,2,2,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22724.0,2113.0 +2645276,2645277,44.0,1071803,1,2,0,2,1.0,50.0,1.0,-9.0,4.0,813M,17.0,22724.0,2113.0 +2645277,2645278,8.0,1071803,2,1,2,2,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22724.0,2113.0 +2645278,2645279,35.0,1071804,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645279,2645280,20.0,1071804,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645280,2645281,3.0,1071804,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645281,2645282,35.0,1071805,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22726.0,2113.0 +2645282,2645283,20.0,1071805,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22726.0,2113.0 +2645283,2645284,3.0,1071805,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22726.0,2113.0 +2645284,2645285,35.0,1071806,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645285,2645286,20.0,1071806,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645286,2645287,3.0,1071806,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645287,2645288,35.0,1071807,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645288,2645289,20.0,1071807,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645289,2645290,3.0,1071807,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645290,2645291,35.0,1071808,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645291,2645292,20.0,1071808,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645292,2645293,3.0,1071808,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645293,2645294,35.0,1071809,1,2,0,2,1.0,24.0,1.0,15.0,4.0,622M,15.0,22725.0,2113.0 +2645294,2645295,20.0,1071809,2,2,2,2,1.0,40.0,1.0,15.0,4.0,622M,15.0,22725.0,2113.0 +2645295,2645296,3.0,1071809,3,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22725.0,2113.0 +2645296,2645297,25.0,1071810,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,492,6.0,22724.0,2113.0 +2645297,2645298,7.0,1071810,2,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2645298,2645299,25.0,1071811,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,492,6.0,22724.0,2113.0 +2645299,2645300,7.0,1071811,2,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2645300,2645301,25.0,1071812,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,492,6.0,22730.0,2113.0 +2645301,2645302,7.0,1071812,2,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22730.0,2113.0 +2645302,2645303,25.0,1071813,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,492,6.0,22721.0,2113.0 +2645303,2645304,7.0,1071813,2,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22721.0,2113.0 +2645304,2645305,25.0,1071814,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,492,6.0,22724.0,2113.0 +2645305,2645306,7.0,1071814,2,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2645306,2645307,25.0,1071815,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,492,6.0,22724.0,2113.0 +2645307,2645308,7.0,1071815,2,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2645308,2645309,25.0,1071816,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,492,6.0,22724.0,2113.0 +2645309,2645310,7.0,1071816,2,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2645310,2645311,25.0,1071817,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,492,6.0,22724.0,2113.0 +2645311,2645312,7.0,1071817,2,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22724.0,2113.0 +2645312,2645313,29.0,1071818,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645313,2645314,5.0,1071818,2,2,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22724.0,2113.0 +2645314,2645315,2.0,1071818,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645315,2645316,29.0,1071819,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645316,2645317,5.0,1071819,2,2,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22724.0,2113.0 +2645317,2645318,2.0,1071819,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645318,2645319,28.0,1071820,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22720.0,2113.0 +2645319,2645320,23.0,1071820,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22720.0,2113.0 +2645320,2645321,20.0,1071820,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22720.0,2113.0 +2645321,2645322,28.0,1071821,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22724.0,2113.0 +2645322,2645323,23.0,1071821,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22724.0,2113.0 +2645323,2645324,20.0,1071821,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22724.0,2113.0 +2645324,2645325,28.0,1071822,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22723.0,2113.0 +2645325,2645326,23.0,1071822,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22723.0,2113.0 +2645326,2645327,20.0,1071822,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22723.0,2113.0 +2645327,2645328,28.0,1071823,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22728.0,2113.0 +2645328,2645329,23.0,1071823,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22728.0,2113.0 +2645329,2645330,20.0,1071823,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22728.0,2113.0 +2645330,2645331,28.0,1071824,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22726.0,2113.0 +2645331,2645332,23.0,1071824,2,1,15,1,1.0,24.0,2.0,15.0,4.0,442,5.0,22726.0,2113.0 +2645332,2645333,20.0,1071824,3,1,15,2,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22726.0,2113.0 +2645333,2645334,43.0,1071825,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22722.0,2113.0 +2645334,2645335,44.0,1071825,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22722.0,2113.0 +2645335,2645336,23.0,1071825,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22722.0,2113.0 +2645336,2645337,19.0,1071825,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22722.0,2113.0 +2645337,2645338,2.0,1071825,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22722.0,2113.0 +2645338,2645339,43.0,1071826,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22724.0,2113.0 +2645339,2645340,44.0,1071826,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645340,2645341,23.0,1071826,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22724.0,2113.0 +2645341,2645342,19.0,1071826,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22724.0,2113.0 +2645342,2645343,2.0,1071826,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645343,2645344,43.0,1071827,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22724.0,2113.0 +2645344,2645345,44.0,1071827,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645345,2645346,23.0,1071827,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22724.0,2113.0 +2645346,2645347,19.0,1071827,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22724.0,2113.0 +2645347,2645348,2.0,1071827,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645348,2645349,40.0,1071828,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22725.0,2113.0 +2645349,2645350,31.0,1071828,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,8121M,17.0,22725.0,2113.0 +2645350,2645351,18.0,1071828,3,2,2,1,3.0,20.0,6.0,15.0,4.0,722Z,16.0,22725.0,2113.0 +2645351,2645352,15.0,1071828,4,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22725.0,2113.0 +2645352,2645353,12.0,1071828,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22725.0,2113.0 +2645353,2645354,9.0,1071828,6,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22725.0,2113.0 +2645354,2645355,38.0,1071829,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22726.0,2113.0 +2645355,2645356,17.0,1071829,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22726.0,2113.0 +2645356,2645357,42.0,1071829,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22726.0,2113.0 +2645357,2645358,21.0,1071829,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2645358,2645359,38.0,1071830,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22721.0,2113.0 +2645359,2645360,17.0,1071830,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22721.0,2113.0 +2645360,2645361,42.0,1071830,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22721.0,2113.0 +2645361,2645362,21.0,1071830,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22721.0,2113.0 +2645362,2645363,38.0,1071831,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645363,2645364,17.0,1071831,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645364,2645365,42.0,1071831,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645365,2645366,21.0,1071831,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645366,2645367,38.0,1071832,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645367,2645368,17.0,1071832,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645368,2645369,42.0,1071832,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645369,2645370,21.0,1071832,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645370,2645371,38.0,1071833,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645371,2645372,17.0,1071833,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645372,2645373,42.0,1071833,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645373,2645374,21.0,1071833,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645374,2645375,38.0,1071834,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645375,2645376,17.0,1071834,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645376,2645377,42.0,1071834,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645377,2645378,21.0,1071834,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645378,2645379,38.0,1071835,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645379,2645380,17.0,1071835,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645380,2645381,42.0,1071835,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645381,2645382,21.0,1071835,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645382,2645383,38.0,1071836,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645383,2645384,17.0,1071836,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645384,2645385,42.0,1071836,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645385,2645386,21.0,1071836,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645386,2645387,38.0,1071837,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645387,2645388,17.0,1071837,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645388,2645389,42.0,1071837,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645389,2645390,21.0,1071837,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645390,2645391,38.0,1071838,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645391,2645392,17.0,1071838,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645392,2645393,42.0,1071838,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645393,2645394,21.0,1071838,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645394,2645395,38.0,1071839,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22728.0,2113.0 +2645395,2645396,17.0,1071839,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22728.0,2113.0 +2645396,2645397,42.0,1071839,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22728.0,2113.0 +2645397,2645398,21.0,1071839,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22728.0,2113.0 +2645398,2645399,38.0,1071840,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645399,2645400,17.0,1071840,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645400,2645401,42.0,1071840,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645401,2645402,21.0,1071840,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645402,2645403,38.0,1071841,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645403,2645404,17.0,1071841,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645404,2645405,42.0,1071841,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645405,2645406,21.0,1071841,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645406,2645407,38.0,1071842,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22726.0,2113.0 +2645407,2645408,17.0,1071842,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22726.0,2113.0 +2645408,2645409,42.0,1071842,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22726.0,2113.0 +2645409,2645410,21.0,1071842,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2645410,2645411,38.0,1071843,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645411,2645412,17.0,1071843,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645412,2645413,42.0,1071843,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645413,2645414,21.0,1071843,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645414,2645415,38.0,1071844,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22726.0,2113.0 +2645415,2645416,17.0,1071844,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22726.0,2113.0 +2645416,2645417,42.0,1071844,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22726.0,2113.0 +2645417,2645418,21.0,1071844,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2645418,2645419,38.0,1071845,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645419,2645420,17.0,1071845,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645420,2645421,42.0,1071845,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645421,2645422,21.0,1071845,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645422,2645423,38.0,1071846,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22726.0,2113.0 +2645423,2645424,17.0,1071846,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22726.0,2113.0 +2645424,2645425,42.0,1071846,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22726.0,2113.0 +2645425,2645426,21.0,1071846,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2645426,2645427,38.0,1071847,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22730.0,2113.0 +2645427,2645428,17.0,1071847,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22730.0,2113.0 +2645428,2645429,42.0,1071847,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22730.0,2113.0 +2645429,2645430,21.0,1071847,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22730.0,2113.0 +2645430,2645431,38.0,1071848,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645431,2645432,17.0,1071848,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645432,2645433,42.0,1071848,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645433,2645434,21.0,1071848,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645434,2645435,38.0,1071849,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645435,2645436,17.0,1071849,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645436,2645437,42.0,1071849,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645437,2645438,21.0,1071849,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645438,2645439,38.0,1071850,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645439,2645440,17.0,1071850,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645440,2645441,42.0,1071850,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645441,2645442,21.0,1071850,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645442,2645443,38.0,1071851,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645443,2645444,17.0,1071851,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645444,2645445,42.0,1071851,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645445,2645446,21.0,1071851,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645446,2645447,38.0,1071852,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645447,2645448,17.0,1071852,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645448,2645449,42.0,1071852,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645449,2645450,21.0,1071852,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645450,2645451,38.0,1071853,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22726.0,2113.0 +2645451,2645452,17.0,1071853,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22726.0,2113.0 +2645452,2645453,42.0,1071853,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22726.0,2113.0 +2645453,2645454,21.0,1071853,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2645454,2645455,38.0,1071854,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645455,2645456,17.0,1071854,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645456,2645457,42.0,1071854,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645457,2645458,21.0,1071854,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645458,2645459,38.0,1071855,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645459,2645460,17.0,1071855,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645460,2645461,42.0,1071855,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645461,2645462,21.0,1071855,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645462,2645463,38.0,1071856,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645463,2645464,17.0,1071856,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645464,2645465,42.0,1071856,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645465,2645466,21.0,1071856,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645466,2645467,38.0,1071857,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645467,2645468,17.0,1071857,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645468,2645469,42.0,1071857,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645469,2645470,21.0,1071857,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645470,2645471,38.0,1071858,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645471,2645472,17.0,1071858,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645472,2645473,42.0,1071858,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645473,2645474,21.0,1071858,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645474,2645475,38.0,1071859,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22726.0,2113.0 +2645475,2645476,17.0,1071859,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22726.0,2113.0 +2645476,2645477,42.0,1071859,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22726.0,2113.0 +2645477,2645478,21.0,1071859,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2645478,2645479,38.0,1071860,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645479,2645480,17.0,1071860,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645480,2645481,42.0,1071860,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645481,2645482,21.0,1071860,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645482,2645483,38.0,1071861,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645483,2645484,17.0,1071861,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645484,2645485,42.0,1071861,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645485,2645486,21.0,1071861,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645486,2645487,38.0,1071862,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645487,2645488,17.0,1071862,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645488,2645489,42.0,1071862,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645489,2645490,21.0,1071862,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645490,2645491,38.0,1071863,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22726.0,2113.0 +2645491,2645492,17.0,1071863,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22726.0,2113.0 +2645492,2645493,42.0,1071863,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22726.0,2113.0 +2645493,2645494,21.0,1071863,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2645494,2645495,38.0,1071864,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645495,2645496,17.0,1071864,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645496,2645497,42.0,1071864,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645497,2645498,21.0,1071864,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645498,2645499,38.0,1071865,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645499,2645500,17.0,1071865,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645500,2645501,42.0,1071865,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645501,2645502,21.0,1071865,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645502,2645503,38.0,1071866,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645503,2645504,17.0,1071866,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645504,2645505,42.0,1071866,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645505,2645506,21.0,1071866,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645506,2645507,38.0,1071867,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645507,2645508,17.0,1071867,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645508,2645509,42.0,1071867,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645509,2645510,21.0,1071867,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645510,2645511,38.0,1071868,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645511,2645512,17.0,1071868,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645512,2645513,42.0,1071868,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645513,2645514,21.0,1071868,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645514,2645515,38.0,1071869,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645515,2645516,17.0,1071869,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645516,2645517,42.0,1071869,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645517,2645518,21.0,1071869,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645518,2645519,38.0,1071870,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645519,2645520,17.0,1071870,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645520,2645521,42.0,1071870,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645521,2645522,21.0,1071870,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645522,2645523,38.0,1071871,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645523,2645524,17.0,1071871,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645524,2645525,42.0,1071871,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645525,2645526,21.0,1071871,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645526,2645527,38.0,1071872,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22725.0,2113.0 +2645527,2645528,17.0,1071872,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22725.0,2113.0 +2645528,2645529,42.0,1071872,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22725.0,2113.0 +2645529,2645530,21.0,1071872,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22725.0,2113.0 +2645530,2645531,38.0,1071873,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22722.0,2113.0 +2645531,2645532,17.0,1071873,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22722.0,2113.0 +2645532,2645533,42.0,1071873,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22722.0,2113.0 +2645533,2645534,21.0,1071873,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22722.0,2113.0 +2645534,2645535,38.0,1071874,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645535,2645536,17.0,1071874,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645536,2645537,42.0,1071874,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645537,2645538,21.0,1071874,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645538,2645539,38.0,1071875,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22724.0,2113.0 +2645539,2645540,17.0,1071875,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22724.0,2113.0 +2645540,2645541,42.0,1071875,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22724.0,2113.0 +2645541,2645542,21.0,1071875,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645542,2645543,19.0,1071876,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22722.0,2113.0 +2645543,2645544,56.0,1071876,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22722.0,2113.0 +2645544,2645545,19.0,1071877,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22724.0,2113.0 +2645545,2645546,56.0,1071877,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22724.0,2113.0 +2645546,2645547,19.0,1071878,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22726.0,2113.0 +2645547,2645548,56.0,1071878,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22726.0,2113.0 +2645548,2645549,24.0,1071879,1,2,0,4,1.0,38.0,1.0,15.0,4.0,44511,5.0,22724.0,2113.0 +2645549,2645550,24.0,1071880,1,2,0,4,1.0,38.0,1.0,15.0,4.0,44511,5.0,22724.0,2113.0 +2645550,2645551,24.0,1071881,1,2,0,4,1.0,38.0,1.0,15.0,4.0,44511,5.0,22724.0,2113.0 +2645551,2645552,24.0,1071882,1,2,0,4,1.0,38.0,1.0,15.0,4.0,44511,5.0,22724.0,2113.0 +2645552,2645553,24.0,1071883,1,2,0,4,1.0,38.0,1.0,15.0,4.0,44511,5.0,22723.0,2113.0 +2645553,2645554,24.0,1071884,1,2,0,4,1.0,38.0,1.0,15.0,4.0,44511,5.0,22724.0,2113.0 +2645554,2645555,24.0,1071885,1,2,0,4,1.0,38.0,1.0,15.0,4.0,44511,5.0,22724.0,2113.0 +2645555,2645556,24.0,1071886,1,2,0,4,1.0,38.0,1.0,15.0,4.0,44511,5.0,22721.0,2113.0 +2645556,2645557,24.0,1071887,1,2,0,4,1.0,38.0,1.0,15.0,4.0,44511,5.0,22728.0,2113.0 +2645557,2645558,24.0,1071888,1,2,0,4,1.0,38.0,1.0,15.0,4.0,44511,5.0,22724.0,2113.0 +2645558,2645559,23.0,1071889,1,1,0,2,1.0,36.0,1.0,15.0,4.0,52M1,9.0,22729.0,2113.0 +2645559,2645560,22.0,1071889,2,2,13,2,1.0,35.0,1.0,15.0,4.0,6231,14.0,22729.0,2113.0 +2645560,2645561,19.0,1071890,1,1,0,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22723.0,2113.0 +2645561,2645562,20.0,1071890,2,1,12,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22723.0,2113.0 +2645562,2645563,19.0,1071891,1,1,0,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22724.0,2113.0 +2645563,2645564,20.0,1071891,2,1,12,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22724.0,2113.0 +2645564,2645565,23.0,1071892,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22724.0,2113.0 +2645565,2645566,23.0,1071893,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22724.0,2113.0 +2645566,2645567,23.0,1071894,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22724.0,2113.0 +2645567,2645568,23.0,1071895,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22724.0,2113.0 +2645568,2645569,23.0,1071896,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22724.0,2113.0 +2645569,2645570,23.0,1071897,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22722.0,2113.0 +2645570,2645571,23.0,1071898,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22724.0,2113.0 +2645571,2645572,23.0,1071899,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22724.0,2113.0 +2645572,2645573,23.0,1071900,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22724.0,2113.0 +2645573,2645574,23.0,1071901,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22726.0,2113.0 +2645574,2645575,23.0,1071902,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22724.0,2113.0 +2645575,2645576,23.0,1071903,1,2,0,2,1.0,36.0,1.0,16.0,4.0,622M,15.0,22724.0,2113.0 +2645576,2645577,20.0,1071904,1,1,0,2,1.0,40.0,1.0,15.0,4.0,92MP,18.0,22725.0,2113.0 +2645577,2645578,21.0,1071904,2,1,5,2,1.0,30.0,5.0,-9.0,4.0,8111Z,17.0,22725.0,2113.0 +2645578,2645579,20.0,1071905,1,1,0,2,1.0,40.0,1.0,15.0,4.0,92MP,18.0,22724.0,2113.0 +2645579,2645580,21.0,1071905,2,1,5,2,1.0,30.0,5.0,-9.0,4.0,8111Z,17.0,22724.0,2113.0 +2645580,2645581,20.0,1071906,1,1,0,2,1.0,40.0,1.0,15.0,4.0,92MP,18.0,22730.0,2113.0 +2645581,2645582,21.0,1071906,2,1,5,2,1.0,30.0,5.0,-9.0,4.0,8111Z,17.0,22730.0,2113.0 +2645582,2645583,20.0,1071907,1,1,0,2,1.0,40.0,1.0,15.0,4.0,92MP,18.0,22726.0,2113.0 +2645583,2645584,21.0,1071907,2,1,5,2,1.0,30.0,5.0,-9.0,4.0,8111Z,17.0,22726.0,2113.0 +2645584,2645585,20.0,1071908,1,1,0,2,1.0,40.0,1.0,15.0,4.0,92MP,18.0,22728.0,2113.0 +2645585,2645586,21.0,1071908,2,1,5,2,1.0,30.0,5.0,-9.0,4.0,8111Z,17.0,22728.0,2113.0 +2645586,2645587,20.0,1071909,1,1,0,2,1.0,40.0,1.0,15.0,4.0,92MP,18.0,22728.0,2113.0 +2645587,2645588,21.0,1071909,2,1,5,2,1.0,30.0,5.0,-9.0,4.0,8111Z,17.0,22728.0,2113.0 +2645588,2645589,21.0,1071910,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22721.0,2113.0 +2645589,2645590,21.0,1071910,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22721.0,2113.0 +2645590,2645591,21.0,1071911,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22725.0,2113.0 +2645591,2645592,21.0,1071911,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22725.0,2113.0 +2645592,2645593,21.0,1071912,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22728.0,2113.0 +2645593,2645594,21.0,1071912,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22728.0,2113.0 +2645594,2645595,21.0,1071913,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645595,2645596,21.0,1071913,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645596,2645597,21.0,1071914,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22730.0,2113.0 +2645597,2645598,21.0,1071914,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22730.0,2113.0 +2645598,2645599,21.0,1071915,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645599,2645600,21.0,1071915,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645600,2645601,21.0,1071916,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645601,2645602,21.0,1071916,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645602,2645603,21.0,1071917,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22722.0,2113.0 +2645603,2645604,21.0,1071917,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22722.0,2113.0 +2645604,2645605,21.0,1071918,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645605,2645606,21.0,1071918,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645606,2645607,21.0,1071919,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645607,2645608,21.0,1071919,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645608,2645609,21.0,1071920,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645609,2645610,21.0,1071920,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645610,2645611,21.0,1071921,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645611,2645612,21.0,1071921,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645612,2645613,21.0,1071922,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645613,2645614,21.0,1071922,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645614,2645615,21.0,1071923,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645615,2645616,21.0,1071923,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645616,2645617,21.0,1071924,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645617,2645618,21.0,1071924,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645618,2645619,21.0,1071925,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22720.0,2113.0 +2645619,2645620,21.0,1071925,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22720.0,2113.0 +2645620,2645621,21.0,1071926,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645621,2645622,21.0,1071926,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645622,2645623,21.0,1071927,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22723.0,2113.0 +2645623,2645624,21.0,1071927,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22723.0,2113.0 +2645624,2645625,21.0,1071928,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22723.0,2113.0 +2645625,2645626,21.0,1071928,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22723.0,2113.0 +2645626,2645627,21.0,1071929,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645627,2645628,21.0,1071929,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645628,2645629,21.0,1071930,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22721.0,2113.0 +2645629,2645630,21.0,1071930,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22721.0,2113.0 +2645630,2645631,21.0,1071931,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645631,2645632,21.0,1071931,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645632,2645633,21.0,1071932,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645633,2645634,21.0,1071932,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645634,2645635,21.0,1071933,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645635,2645636,21.0,1071933,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645636,2645637,21.0,1071934,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22720.0,2113.0 +2645637,2645638,21.0,1071934,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22720.0,2113.0 +2645638,2645639,21.0,1071935,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645639,2645640,21.0,1071935,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645640,2645641,21.0,1071936,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22726.0,2113.0 +2645641,2645642,21.0,1071936,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22726.0,2113.0 +2645642,2645643,21.0,1071937,1,1,0,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645643,2645644,21.0,1071937,2,1,12,2,1.0,32.0,1.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645644,2645645,23.0,1071938,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22724.0,2113.0 +2645645,2645646,23.0,1071939,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22724.0,2113.0 +2645646,2645647,23.0,1071940,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22721.0,2113.0 +2645647,2645648,23.0,1071941,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22720.0,2113.0 +2645648,2645649,23.0,1071942,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22724.0,2113.0 +2645649,2645650,23.0,1071943,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22722.0,2113.0 +2645650,2645651,23.0,1071944,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22725.0,2113.0 +2645651,2645652,23.0,1071945,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22726.0,2113.0 +2645652,2645653,23.0,1071946,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22724.0,2113.0 +2645653,2645654,23.0,1071947,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22729.0,2113.0 +2645654,2645655,23.0,1071948,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22724.0,2113.0 +2645655,2645656,23.0,1071949,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22724.0,2113.0 +2645656,2645657,23.0,1071950,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22726.0,2113.0 +2645657,2645658,23.0,1071951,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22721.0,2113.0 +2645658,2645659,23.0,1071952,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22722.0,2113.0 +2645659,2645660,23.0,1071953,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22724.0,2113.0 +2645660,2645661,23.0,1071954,1,2,0,2,1.0,30.0,1.0,16.0,4.0,4483,5.0,22724.0,2113.0 +2645661,2645662,19.0,1071955,1,2,0,2,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22725.0,2113.0 +2645662,2645663,19.0,1071955,2,2,12,2,1.0,25.0,4.0,15.0,4.0,722Z,16.0,22725.0,2113.0 +2645663,2645664,19.0,1071956,1,2,0,2,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22724.0,2113.0 +2645664,2645665,19.0,1071956,2,2,12,2,1.0,25.0,4.0,15.0,4.0,722Z,16.0,22724.0,2113.0 +2645665,2645666,19.0,1071957,1,2,0,2,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22724.0,2113.0 +2645666,2645667,19.0,1071957,2,2,12,2,1.0,25.0,4.0,15.0,4.0,722Z,16.0,22724.0,2113.0 +2645667,2645668,19.0,1071958,1,2,0,2,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22724.0,2113.0 +2645668,2645669,19.0,1071958,2,2,12,2,1.0,25.0,4.0,15.0,4.0,722Z,16.0,22724.0,2113.0 +2645669,2645670,19.0,1071959,1,2,0,2,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22724.0,2113.0 +2645670,2645671,19.0,1071959,2,2,12,2,1.0,25.0,4.0,15.0,4.0,722Z,16.0,22724.0,2113.0 +2645671,2645672,19.0,1071960,1,2,0,2,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22724.0,2113.0 +2645672,2645673,19.0,1071960,2,2,12,2,1.0,25.0,4.0,15.0,4.0,722Z,16.0,22724.0,2113.0 +2645673,2645674,24.0,1071961,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2645674,2645675,24.0,1071962,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2645675,2645676,24.0,1071963,1,2,0,2,1.0,15.0,4.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2645676,2645677,23.0,1071964,1,2,0,2,1.0,25.0,1.0,-9.0,4.0,4481,5.0,22724.0,2113.0 +2645677,2645678,23.0,1071965,1,2,0,2,1.0,25.0,1.0,-9.0,4.0,4481,5.0,22726.0,2113.0 +2645678,2645679,23.0,1071966,1,2,0,2,1.0,25.0,1.0,-9.0,4.0,4481,5.0,22724.0,2113.0 +2645679,2645680,23.0,1071967,1,2,0,2,1.0,25.0,1.0,-9.0,4.0,4481,5.0,22728.0,2113.0 +2645680,2645681,23.0,1071968,1,1,0,2,1.0,40.0,5.0,16.0,4.0,722Z,16.0,22724.0,2113.0 +2645681,2645682,23.0,1071969,1,1,0,2,1.0,40.0,5.0,16.0,4.0,722Z,16.0,22724.0,2113.0 +2645682,2645683,23.0,1071970,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2645683,2645684,23.0,1071971,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2645684,2645685,23.0,1071972,1,1,0,2,1.0,40.0,5.0,16.0,4.0,722Z,16.0,22722.0,2113.0 +2645685,2645686,23.0,1071973,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2645686,2645687,23.0,1071974,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2645687,2645688,23.0,1071975,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2645688,2645689,23.0,1071976,1,1,0,2,1.0,40.0,5.0,16.0,4.0,722Z,16.0,22724.0,2113.0 +2645689,2645690,23.0,1071977,1,1,0,2,1.0,40.0,5.0,16.0,4.0,722Z,16.0,22721.0,2113.0 +2645690,2645691,23.0,1071978,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2645691,2645692,23.0,1071979,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2645692,2645693,23.0,1071980,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2645693,2645694,23.0,1071981,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2645694,2645695,23.0,1071982,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2645695,2645696,23.0,1071983,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22728.0,2113.0 +2645696,2645697,23.0,1071984,1,1,0,2,1.0,40.0,5.0,16.0,4.0,722Z,16.0,22724.0,2113.0 +2645697,2645698,23.0,1071985,1,1,0,2,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22724.0,2113.0 +2645698,2645699,23.0,1071986,1,1,0,2,1.0,40.0,5.0,16.0,4.0,722Z,16.0,22724.0,2113.0 +2645699,2645700,23.0,1071987,1,1,0,2,1.0,40.0,5.0,16.0,4.0,722Z,16.0,22724.0,2113.0 +2645700,2645701,24.0,1071988,1,1,0,2,1.0,50.0,4.0,-9.0,4.0,622M,15.0,22724.0,2113.0 +2645701,2645702,23.0,1071989,1,1,0,2,1.0,32.0,1.0,15.0,4.0,44512,5.0,22724.0,2113.0 +2645702,2645703,24.0,1071990,1,1,0,2,1.0,20.0,6.0,15.0,2.0,4511M,5.0,22724.0,2113.0 +2645703,2645704,24.0,1071991,1,1,0,2,1.0,20.0,6.0,15.0,2.0,4511M,5.0,22724.0,2113.0 +2645704,2645705,24.0,1071992,1,1,0,2,1.0,20.0,6.0,15.0,2.0,4511M,5.0,22721.0,2113.0 +2645705,2645706,24.0,1071993,1,1,0,2,1.0,20.0,6.0,15.0,2.0,4511M,5.0,22724.0,2113.0 +2645706,2645707,23.0,1071994,1,1,0,2,1.0,32.0,1.0,15.0,4.0,44512,5.0,22729.0,2113.0 +2645707,2645708,24.0,1071995,1,1,0,2,1.0,20.0,6.0,15.0,2.0,4511M,5.0,22722.0,2113.0 +2645708,2645709,23.0,1071996,1,1,0,2,1.0,32.0,1.0,15.0,4.0,44512,5.0,22724.0,2113.0 +2645709,2645710,24.0,1071997,1,1,0,2,1.0,20.0,6.0,15.0,2.0,4511M,5.0,22724.0,2113.0 +2645710,2645711,23.0,1071998,1,1,0,2,1.0,32.0,1.0,15.0,4.0,44512,5.0,22724.0,2113.0 +2645711,2645712,24.0,1071999,1,1,0,2,1.0,20.0,6.0,15.0,2.0,4511M,5.0,22721.0,2113.0 +2645712,2645713,22.0,1072000,1,2,0,2,1.0,30.0,1.0,15.0,4.0,447,5.0,22724.0,2113.0 +2645713,2645714,22.0,1072001,1,2,0,2,1.0,30.0,1.0,15.0,4.0,447,5.0,22724.0,2113.0 +2645714,2645715,22.0,1072002,1,2,0,2,1.0,30.0,1.0,15.0,4.0,447,5.0,22724.0,2113.0 +2645715,2645716,22.0,1072003,1,2,0,2,1.0,30.0,1.0,15.0,4.0,447,5.0,22724.0,2113.0 +2645716,2645717,22.0,1072004,1,2,0,2,1.0,30.0,1.0,15.0,4.0,447,5.0,22722.0,2113.0 +2645717,2645718,23.0,1072005,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22724.0,2113.0 +2645718,2645719,23.0,1072006,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22724.0,2113.0 +2645719,2645720,23.0,1072007,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22723.0,2113.0 +2645720,2645721,23.0,1072008,1,1,0,2,1.0,25.0,1.0,16.0,4.0,6111,13.0,22724.0,2113.0 +2645721,2645722,23.0,1072009,1,1,0,2,1.0,29.0,3.0,15.0,4.0,6111,13.0,22724.0,2113.0 +2645722,2645723,23.0,1072010,1,1,0,2,1.0,25.0,1.0,16.0,4.0,6111,13.0,22724.0,2113.0 +2645723,2645724,23.0,1072011,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645724,2645725,5.0,1072011,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645725,2645726,1.0,1072011,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645726,2645727,23.0,1072012,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22725.0,2113.0 +2645727,2645728,5.0,1072012,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22725.0,2113.0 +2645728,2645729,1.0,1072012,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22725.0,2113.0 +2645729,2645730,23.0,1072013,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645730,2645731,5.0,1072013,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645731,2645732,1.0,1072013,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645732,2645733,23.0,1072014,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645733,2645734,5.0,1072014,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645734,2645735,1.0,1072014,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645735,2645736,23.0,1072015,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22725.0,2113.0 +2645736,2645737,5.0,1072015,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22725.0,2113.0 +2645737,2645738,1.0,1072015,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22725.0,2113.0 +2645738,2645739,23.0,1072016,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22722.0,2113.0 +2645739,2645740,5.0,1072016,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22722.0,2113.0 +2645740,2645741,1.0,1072016,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22722.0,2113.0 +2645741,2645742,23.0,1072017,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645742,2645743,5.0,1072017,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645743,2645744,1.0,1072017,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645744,2645745,23.0,1072018,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22730.0,2113.0 +2645745,2645746,5.0,1072018,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22730.0,2113.0 +2645746,2645747,1.0,1072018,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22730.0,2113.0 +2645747,2645748,23.0,1072019,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645748,2645749,5.0,1072019,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645749,2645750,1.0,1072019,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645750,2645751,23.0,1072020,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645751,2645752,5.0,1072020,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645752,2645753,1.0,1072020,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645753,2645754,23.0,1072021,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22728.0,2113.0 +2645754,2645755,5.0,1072021,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22728.0,2113.0 +2645755,2645756,1.0,1072021,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22728.0,2113.0 +2645756,2645757,23.0,1072022,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645757,2645758,5.0,1072022,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645758,2645759,1.0,1072022,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645759,2645760,23.0,1072023,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22722.0,2113.0 +2645760,2645761,5.0,1072023,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22722.0,2113.0 +2645761,2645762,1.0,1072023,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22722.0,2113.0 +2645762,2645763,23.0,1072024,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645763,2645764,5.0,1072024,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645764,2645765,1.0,1072024,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645765,2645766,23.0,1072025,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645766,2645767,5.0,1072025,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645767,2645768,1.0,1072025,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645768,2645769,23.0,1072026,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645769,2645770,5.0,1072026,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645770,2645771,1.0,1072026,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645771,2645772,23.0,1072027,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22720.0,2113.0 +2645772,2645773,5.0,1072027,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22720.0,2113.0 +2645773,2645774,1.0,1072027,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22720.0,2113.0 +2645774,2645775,23.0,1072028,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645775,2645776,5.0,1072028,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645776,2645777,1.0,1072028,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645777,2645778,23.0,1072029,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,6241,14.0,22724.0,2113.0 +2645778,2645779,5.0,1072029,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645779,2645780,1.0,1072029,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645780,2645781,24.0,1072030,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22725.0,2113.0 +2645781,2645782,4.0,1072030,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22725.0,2113.0 +2645782,2645783,24.0,1072031,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22720.0,2113.0 +2645783,2645784,4.0,1072031,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22720.0,2113.0 +2645784,2645785,24.0,1072032,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22728.0,2113.0 +2645785,2645786,3.0,1072032,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22728.0,2113.0 +2645786,2645787,24.0,1072033,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22728.0,2113.0 +2645787,2645788,4.0,1072033,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22728.0,2113.0 +2645788,2645789,24.0,1072034,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22724.0,2113.0 +2645789,2645790,4.0,1072034,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645790,2645791,24.0,1072035,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22721.0,2113.0 +2645791,2645792,4.0,1072035,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22721.0,2113.0 +2645792,2645793,24.0,1072036,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22724.0,2113.0 +2645793,2645794,4.0,1072036,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645794,2645795,24.0,1072037,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22724.0,2113.0 +2645795,2645796,4.0,1072037,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645796,2645797,24.0,1072038,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22724.0,2113.0 +2645797,2645798,4.0,1072038,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645798,2645799,24.0,1072039,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22725.0,2113.0 +2645799,2645800,4.0,1072039,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22725.0,2113.0 +2645800,2645801,24.0,1072040,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22728.0,2113.0 +2645801,2645802,4.0,1072040,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22728.0,2113.0 +2645802,2645803,24.0,1072041,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22726.0,2113.0 +2645803,2645804,4.0,1072041,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22726.0,2113.0 +2645804,2645805,24.0,1072042,1,2,0,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22724.0,2113.0 +2645805,2645806,3.0,1072042,2,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645806,2645807,24.0,1072043,1,2,0,2,1.0,25.0,5.0,-9.0,4.0,7211,16.0,22724.0,2113.0 +2645807,2645808,1.0,1072043,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645808,2645809,23.0,1072044,1,2,0,2,1.0,38.0,4.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645809,2645810,2.0,1072044,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645810,2645811,23.0,1072045,1,2,0,2,1.0,38.0,4.0,15.0,4.0,7211,16.0,22724.0,2113.0 +2645811,2645812,2.0,1072045,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645812,2645813,23.0,1072046,1,2,0,2,1.0,38.0,4.0,15.0,4.0,7211,16.0,22723.0,2113.0 +2645813,2645814,2.0,1072046,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22723.0,2113.0 +2645814,2645815,24.0,1072047,1,2,0,2,1.0,25.0,5.0,-9.0,4.0,7211,16.0,22724.0,2113.0 +2645815,2645816,1.0,1072047,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645816,2645817,24.0,1072048,1,2,0,2,1.0,25.0,5.0,-9.0,4.0,7211,16.0,22724.0,2113.0 +2645817,2645818,1.0,1072048,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645818,2645819,24.0,1072049,1,2,0,2,1.0,25.0,5.0,-9.0,4.0,7211,16.0,22722.0,2113.0 +2645819,2645820,1.0,1072049,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22722.0,2113.0 +2645820,2645821,24.0,1072050,1,2,0,2,1.0,25.0,5.0,-9.0,4.0,7211,16.0,22724.0,2113.0 +2645821,2645822,1.0,1072050,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22724.0,2113.0 +2645822,2645823,21.0,1072051,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645823,2645824,21.0,1072051,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645824,2645825,21.0,1072052,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645825,2645826,21.0,1072052,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645826,2645827,21.0,1072053,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645827,2645828,21.0,1072053,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645828,2645829,21.0,1072054,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645829,2645830,21.0,1072054,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645830,2645831,21.0,1072055,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645831,2645832,21.0,1072055,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645832,2645833,21.0,1072056,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645833,2645834,21.0,1072056,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645834,2645835,21.0,1072057,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645835,2645836,21.0,1072057,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645836,2645837,21.0,1072058,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645837,2645838,21.0,1072058,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645838,2645839,21.0,1072059,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645839,2645840,21.0,1072059,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645840,2645841,21.0,1072060,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645841,2645842,21.0,1072060,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645842,2645843,21.0,1072061,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22723.0,2113.0 +2645843,2645844,21.0,1072061,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22723.0,2113.0 +2645844,2645845,21.0,1072062,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645845,2645846,21.0,1072062,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645846,2645847,21.0,1072063,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645847,2645848,21.0,1072063,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645848,2645849,21.0,1072064,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22728.0,2113.0 +2645849,2645850,21.0,1072064,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22728.0,2113.0 +2645850,2645851,21.0,1072065,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645851,2645852,21.0,1072065,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645852,2645853,21.0,1072066,1,2,0,1,1.0,35.0,3.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645853,2645854,21.0,1072066,2,2,15,1,1.0,24.0,1.0,15.0,4.0,622M,15.0,22724.0,2113.0 +2645854,2645855,24.0,1072067,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,5613,12.0,22724.0,2113.0 +2645855,2645856,9.0,1072067,2,2,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22724.0,2113.0 +2645856,2645857,4.0,1072067,3,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645857,2645858,24.0,1072068,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,5613,12.0,22725.0,2113.0 +2645858,2645859,9.0,1072068,2,2,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22725.0,2113.0 +2645859,2645860,4.0,1072068,3,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22725.0,2113.0 +2645860,2645861,24.0,1072069,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,5613,12.0,22724.0,2113.0 +2645861,2645862,9.0,1072069,2,2,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22724.0,2113.0 +2645862,2645863,4.0,1072069,3,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645863,2645864,24.0,1072070,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,5613,12.0,22724.0,2113.0 +2645864,2645865,9.0,1072070,2,2,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22724.0,2113.0 +2645865,2645866,4.0,1072070,3,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645866,2645867,24.0,1072071,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,5613,12.0,22723.0,2113.0 +2645867,2645868,9.0,1072071,2,2,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22723.0,2113.0 +2645868,2645869,4.0,1072071,3,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22723.0,2113.0 +2645869,2645870,24.0,1072072,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,5613,12.0,22724.0,2113.0 +2645870,2645871,9.0,1072072,2,2,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22724.0,2113.0 +2645871,2645872,4.0,1072072,3,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22724.0,2113.0 +2645872,2645873,72.0,1072073,1,2,0,4,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22711.0,2111.0 +2645873,2645874,78.0,1072074,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2645874,2645875,78.0,1072075,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645875,2645876,78.0,1072076,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645876,2645877,94.0,1072077,1,1,0,4,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22711.0,2111.0 +2645877,2645878,87.0,1072078,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2645878,2645879,65.0,1072078,2,1,2,2,1.0,30.0,1.0,-9.0,2.0,45221,5.0,22712.0,2111.0 +2645879,2645880,74.0,1072079,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,4523,5.0,22712.0,2111.0 +2645880,2645881,74.0,1072080,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,4523,5.0,22712.0,2111.0 +2645881,2645882,65.0,1072081,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645882,2645883,69.0,1072082,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645883,2645884,76.0,1072083,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22712.0,2111.0 +2645884,2645885,77.0,1072083,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2645885,2645886,50.0,1072083,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22712.0,2111.0 +2645886,2645887,18.0,1072083,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2645887,2645888,76.0,1072084,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22711.0,2111.0 +2645888,2645889,77.0,1072084,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645889,2645890,50.0,1072084,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22711.0,2111.0 +2645890,2645891,18.0,1072084,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2645891,2645892,76.0,1072085,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22711.0,2111.0 +2645892,2645893,77.0,1072085,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645893,2645894,50.0,1072085,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22711.0,2111.0 +2645894,2645895,18.0,1072085,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2645895,2645896,76.0,1072086,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22711.0,2111.0 +2645896,2645897,77.0,1072086,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645897,2645898,50.0,1072086,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22711.0,2111.0 +2645898,2645899,18.0,1072086,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2645899,2645900,76.0,1072087,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22713.0,2111.0 +2645900,2645901,77.0,1072087,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22713.0,2111.0 +2645901,2645902,50.0,1072087,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22713.0,2111.0 +2645902,2645903,18.0,1072087,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22713.0,2111.0 +2645903,2645904,76.0,1072088,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22711.0,2111.0 +2645904,2645905,77.0,1072088,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645905,2645906,50.0,1072088,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22711.0,2111.0 +2645906,2645907,18.0,1072088,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2645907,2645908,76.0,1072089,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22711.0,2111.0 +2645908,2645909,77.0,1072089,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645909,2645910,50.0,1072089,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22711.0,2111.0 +2645910,2645911,18.0,1072089,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2645911,2645912,68.0,1072090,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,8123,17.0,22711.0,2111.0 +2645912,2645913,68.0,1072091,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,812111,17.0,22711.0,2111.0 +2645913,2645914,68.0,1072092,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,812111,17.0,22712.0,2111.0 +2645914,2645915,68.0,1072093,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,8123,17.0,22711.0,2111.0 +2645915,2645916,76.0,1072094,1,1,0,1,1.0,15.0,1.0,-9.0,4.0,8114,17.0,22711.0,2111.0 +2645916,2645917,76.0,1072095,1,1,0,1,1.0,15.0,1.0,-9.0,4.0,8114,17.0,22712.0,2111.0 +2645917,2645918,76.0,1072096,1,1,0,1,1.0,15.0,1.0,-9.0,4.0,8114,17.0,22731.0,2114.0 +2645918,2645919,76.0,1072097,1,1,0,1,1.0,15.0,1.0,-9.0,4.0,8114,17.0,22731.0,2114.0 +2645919,2645920,69.0,1072098,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,8122,17.0,22711.0,2111.0 +2645920,2645921,72.0,1072098,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645921,2645922,72.0,1072099,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22712.0,2111.0 +2645922,2645923,66.0,1072099,2,2,1,1,2.0,4.0,1.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2645923,2645924,70.0,1072100,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,8114,17.0,22711.0,2111.0 +2645924,2645925,70.0,1072101,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,8114,17.0,22712.0,2111.0 +2645925,2645926,70.0,1072102,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,8114,17.0,22731.0,2114.0 +2645926,2645927,70.0,1072103,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,8114,17.0,22711.0,2111.0 +2645927,2645928,70.0,1072104,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,8114,17.0,22712.0,2111.0 +2645928,2645929,81.0,1072105,1,2,0,1,1.0,2.0,3.0,-9.0,4.0,44821,5.0,22711.0,2111.0 +2645929,2645930,83.0,1072106,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645930,2645931,66.0,1072107,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2645931,2645932,80.0,1072108,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22731.0,2114.0 +2645932,2645933,70.0,1072109,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22711.0,2111.0 +2645933,2645934,87.0,1072110,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2645934,2645935,65.0,1072111,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645935,2645936,80.0,1072112,1,2,0,1,1.0,15.0,1.0,-9.0,4.0,8131,17.0,22711.0,2111.0 +2645936,2645937,65.0,1072113,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2645937,2645938,65.0,1072114,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2645938,2645939,80.0,1072115,1,2,0,1,1.0,15.0,1.0,-9.0,4.0,8131,17.0,22711.0,2111.0 +2645939,2645940,80.0,1072116,1,2,0,1,1.0,15.0,1.0,-9.0,4.0,8131,17.0,22711.0,2111.0 +2645940,2645941,65.0,1072117,1,2,0,1,2.0,5.0,3.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2645941,2645942,65.0,1072118,1,2,0,1,2.0,5.0,3.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2645942,2645943,80.0,1072119,1,2,0,1,1.0,15.0,1.0,-9.0,4.0,8131,17.0,22711.0,2111.0 +2645943,2645944,65.0,1072120,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2645944,2645945,94.0,1072121,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645945,2645946,77.0,1072122,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645946,2645947,67.0,1072123,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2645947,2645948,88.0,1072124,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645948,2645949,70.0,1072125,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645949,2645950,85.0,1072126,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645950,2645951,53.0,1072127,1,1,0,4,1.0,45.0,1.0,-9.0,4.0,5417,10.0,22711.0,2111.0 +2645951,2645952,50.0,1072128,1,1,0,4,1.0,36.0,2.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2645952,2645953,47.0,1072128,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645953,2645954,18.0,1072128,3,2,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2645954,2645955,54.0,1072129,1,2,0,2,1.0,45.0,1.0,-9.0,4.0,492,6.0,22712.0,2111.0 +2645955,2645956,54.0,1072130,1,2,0,2,1.0,45.0,1.0,-9.0,4.0,492,6.0,22712.0,2111.0 +2645956,2645957,45.0,1072131,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22713.0,2111.0 +2645957,2645958,45.0,1072132,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22711.0,2111.0 +2645958,2645959,45.0,1072133,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22712.0,2111.0 +2645959,2645960,45.0,1072134,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22713.0,2111.0 +2645960,2645961,45.0,1072135,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22712.0,2111.0 +2645961,2645962,59.0,1072136,1,1,0,2,1.0,48.0,1.0,-9.0,4.0,2213M,7.0,22712.0,2111.0 +2645962,2645963,59.0,1072137,1,1,0,2,1.0,48.0,1.0,-9.0,4.0,2213M,7.0,22712.0,2111.0 +2645963,2645964,59.0,1072138,1,1,0,2,1.0,48.0,1.0,-9.0,4.0,2213M,7.0,22712.0,2111.0 +2645964,2645965,46.0,1072139,1,2,0,2,1.0,43.0,1.0,13.0,4.0,442,5.0,22712.0,2111.0 +2645965,2645966,25.0,1072139,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2645966,2645967,63.0,1072140,1,2,0,2,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22711.0,2111.0 +2645967,2645968,48.0,1072141,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22712.0,2111.0 +2645968,2645969,46.0,1072142,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22711.0,2111.0 +2645969,2645970,53.0,1072143,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645970,2645971,51.0,1072143,2,2,1,2,1.0,60.0,4.0,-9.0,4.0,488,6.0,22711.0,2111.0 +2645971,2645972,62.0,1072144,1,1,0,2,1.0,20.0,1.0,-9.0,4.0,5321,9.0,22712.0,2111.0 +2645972,2645973,49.0,1072145,1,1,0,2,1.0,20.0,1.0,-9.0,4.0,492,6.0,22711.0,2111.0 +2645973,2645974,49.0,1072146,1,1,0,2,1.0,20.0,1.0,-9.0,4.0,492,6.0,22711.0,2111.0 +2645974,2645975,49.0,1072147,1,1,0,2,1.0,20.0,1.0,-9.0,4.0,492,6.0,22711.0,2111.0 +2645975,2645976,49.0,1072148,1,1,0,2,1.0,20.0,1.0,-9.0,4.0,492,6.0,22712.0,2111.0 +2645976,2645977,56.0,1072149,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2645977,2645978,58.0,1072150,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2645978,2645979,23.0,1072150,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22711.0,2111.0 +2645979,2645980,58.0,1072151,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2645980,2645981,23.0,1072151,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22711.0,2111.0 +2645981,2645982,58.0,1072152,1,2,0,3,2.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645982,2645983,23.0,1072152,2,2,2,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22712.0,2111.0 +2645983,2645984,52.0,1072153,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645984,2645985,50.0,1072153,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645985,2645986,22.0,1072153,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645986,2645987,52.0,1072154,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645987,2645988,50.0,1072154,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645988,2645989,22.0,1072154,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645989,2645990,52.0,1072155,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2645990,2645991,50.0,1072155,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2645991,2645992,22.0,1072155,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2645992,2645993,52.0,1072156,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645993,2645994,50.0,1072156,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645994,2645995,22.0,1072156,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645995,2645996,52.0,1072157,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645996,2645997,50.0,1072157,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645997,2645998,22.0,1072157,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645998,2645999,52.0,1072158,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2645999,2646000,50.0,1072158,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646000,2646001,22.0,1072158,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646001,2646002,52.0,1072159,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646002,2646003,50.0,1072159,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646003,2646004,22.0,1072159,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646004,2646005,52.0,1072160,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646005,2646006,50.0,1072160,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646006,2646007,22.0,1072160,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646007,2646008,52.0,1072161,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646008,2646009,50.0,1072161,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646009,2646010,22.0,1072161,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646010,2646011,52.0,1072162,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646011,2646012,50.0,1072162,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646012,2646013,22.0,1072162,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646013,2646014,52.0,1072163,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646014,2646015,50.0,1072163,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646015,2646016,22.0,1072163,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646016,2646017,52.0,1072164,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22731.0,2114.0 +2646017,2646018,50.0,1072164,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22731.0,2114.0 +2646018,2646019,22.0,1072164,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22731.0,2114.0 +2646019,2646020,52.0,1072165,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646020,2646021,50.0,1072165,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646021,2646022,22.0,1072165,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646022,2646023,52.0,1072166,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646023,2646024,50.0,1072166,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646024,2646025,22.0,1072166,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646025,2646026,52.0,1072167,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22731.0,2114.0 +2646026,2646027,50.0,1072167,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22731.0,2114.0 +2646027,2646028,22.0,1072167,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22731.0,2114.0 +2646028,2646029,52.0,1072168,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646029,2646030,50.0,1072168,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646030,2646031,22.0,1072168,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646031,2646032,52.0,1072169,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646032,2646033,50.0,1072169,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646033,2646034,22.0,1072169,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646034,2646035,52.0,1072170,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646035,2646036,50.0,1072170,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646036,2646037,22.0,1072170,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646037,2646038,52.0,1072171,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646038,2646039,50.0,1072171,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646039,2646040,22.0,1072171,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646040,2646041,52.0,1072172,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646041,2646042,50.0,1072172,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646042,2646043,22.0,1072172,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646043,2646044,52.0,1072173,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646044,2646045,50.0,1072173,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646045,2646046,22.0,1072173,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646046,2646047,52.0,1072174,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646047,2646048,50.0,1072174,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646048,2646049,22.0,1072174,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646049,2646050,52.0,1072175,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646050,2646051,50.0,1072175,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646051,2646052,22.0,1072175,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646052,2646053,52.0,1072176,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646053,2646054,50.0,1072176,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646054,2646055,22.0,1072176,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22712.0,2111.0 +2646055,2646056,52.0,1072177,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646056,2646057,50.0,1072177,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646057,2646058,22.0,1072177,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646058,2646059,52.0,1072178,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646059,2646060,50.0,1072178,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646060,2646061,22.0,1072178,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22711.0,2111.0 +2646061,2646062,54.0,1072179,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646062,2646063,59.0,1072179,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22712.0,2111.0 +2646063,2646064,18.0,1072179,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2646064,2646065,54.0,1072180,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646065,2646066,59.0,1072180,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646066,2646067,18.0,1072180,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646067,2646068,54.0,1072181,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646068,2646069,59.0,1072181,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646069,2646070,18.0,1072181,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646070,2646071,54.0,1072182,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646071,2646072,59.0,1072182,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646072,2646073,18.0,1072182,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646073,2646074,54.0,1072183,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646074,2646075,59.0,1072183,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646075,2646076,18.0,1072183,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646076,2646077,54.0,1072184,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646077,2646078,59.0,1072184,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646078,2646079,18.0,1072184,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646079,2646080,54.0,1072185,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22731.0,2114.0 +2646080,2646081,59.0,1072185,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22731.0,2114.0 +2646081,2646082,18.0,1072185,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22731.0,2114.0 +2646082,2646083,54.0,1072186,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646083,2646084,59.0,1072186,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22712.0,2111.0 +2646084,2646085,18.0,1072186,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2646085,2646086,63.0,1072187,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22711.0,2111.0 +2646086,2646087,19.0,1072187,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22711.0,2111.0 +2646087,2646088,63.0,1072188,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22711.0,2111.0 +2646088,2646089,19.0,1072188,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22711.0,2111.0 +2646089,2646090,63.0,1072189,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22711.0,2111.0 +2646090,2646091,19.0,1072189,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22711.0,2111.0 +2646091,2646092,63.0,1072190,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22711.0,2111.0 +2646092,2646093,19.0,1072190,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22711.0,2111.0 +2646093,2646094,63.0,1072191,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22711.0,2111.0 +2646094,2646095,19.0,1072191,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22711.0,2111.0 +2646095,2646096,63.0,1072192,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22711.0,2111.0 +2646096,2646097,19.0,1072192,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22711.0,2111.0 +2646097,2646098,63.0,1072193,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22712.0,2111.0 +2646098,2646099,19.0,1072193,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22712.0,2111.0 +2646099,2646100,63.0,1072194,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22712.0,2111.0 +2646100,2646101,19.0,1072194,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22712.0,2111.0 +2646101,2646102,63.0,1072195,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22712.0,2111.0 +2646102,2646103,19.0,1072195,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22712.0,2111.0 +2646103,2646104,63.0,1072196,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22712.0,2111.0 +2646104,2646105,19.0,1072196,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22712.0,2111.0 +2646105,2646106,63.0,1072197,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22712.0,2111.0 +2646106,2646107,19.0,1072197,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22712.0,2111.0 +2646107,2646108,63.0,1072198,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22711.0,2111.0 +2646108,2646109,19.0,1072198,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22711.0,2111.0 +2646109,2646110,63.0,1072199,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22731.0,2114.0 +2646110,2646111,19.0,1072199,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22731.0,2114.0 +2646111,2646112,63.0,1072200,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22712.0,2111.0 +2646112,2646113,19.0,1072200,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22712.0,2111.0 +2646113,2646114,63.0,1072201,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22711.0,2111.0 +2646114,2646115,19.0,1072201,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22711.0,2111.0 +2646115,2646116,63.0,1072202,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22712.0,2111.0 +2646116,2646117,19.0,1072202,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22712.0,2111.0 +2646117,2646118,63.0,1072203,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22712.0,2111.0 +2646118,2646119,19.0,1072203,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22712.0,2111.0 +2646119,2646120,63.0,1072204,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22711.0,2111.0 +2646120,2646121,19.0,1072204,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22711.0,2111.0 +2646121,2646122,63.0,1072205,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22712.0,2111.0 +2646122,2646123,19.0,1072205,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22712.0,2111.0 +2646123,2646124,63.0,1072206,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22711.0,2111.0 +2646124,2646125,19.0,1072206,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22711.0,2111.0 +2646125,2646126,63.0,1072207,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22711.0,2111.0 +2646126,2646127,19.0,1072207,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22711.0,2111.0 +2646127,2646128,55.0,1072208,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,8111Z,17.0,22711.0,2111.0 +2646128,2646129,48.0,1072209,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22711.0,2111.0 +2646129,2646130,48.0,1072210,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22712.0,2111.0 +2646130,2646131,45.0,1072211,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22711.0,2111.0 +2646131,2646132,21.0,1072211,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22711.0,2111.0 +2646132,2646133,45.0,1072212,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22712.0,2111.0 +2646133,2646134,21.0,1072212,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22712.0,2111.0 +2646134,2646135,45.0,1072213,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22711.0,2111.0 +2646135,2646136,21.0,1072213,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22711.0,2111.0 +2646136,2646137,45.0,1072214,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22711.0,2111.0 +2646137,2646138,21.0,1072214,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22711.0,2111.0 +2646138,2646139,45.0,1072215,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22711.0,2111.0 +2646139,2646140,21.0,1072215,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22711.0,2111.0 +2646140,2646141,45.0,1072216,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22712.0,2111.0 +2646141,2646142,21.0,1072216,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22712.0,2111.0 +2646142,2646143,45.0,1072217,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22711.0,2111.0 +2646143,2646144,21.0,1072217,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22711.0,2111.0 +2646144,2646145,45.0,1072218,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22711.0,2111.0 +2646145,2646146,21.0,1072218,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22711.0,2111.0 +2646146,2646147,45.0,1072219,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22712.0,2111.0 +2646147,2646148,21.0,1072219,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22712.0,2111.0 +2646148,2646149,52.0,1072220,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22712.0,2111.0 +2646149,2646150,46.0,1072221,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22731.0,2114.0 +2646150,2646151,64.0,1072221,2,2,1,2,3.0,20.0,6.0,-9.0,4.0,814,17.0,22731.0,2114.0 +2646151,2646152,61.0,1072222,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,8131,17.0,22712.0,2111.0 +2646152,2646153,61.0,1072223,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,8131,17.0,22712.0,2111.0 +2646153,2646154,49.0,1072224,1,1,0,1,1.0,40.0,1.0,15.0,4.0,485M,6.0,22711.0,2111.0 +2646154,2646155,41.0,1072224,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646155,2646156,18.0,1072224,3,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22711.0,2111.0 +2646156,2646157,16.0,1072224,4,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22711.0,2111.0 +2646157,2646158,12.0,1072224,5,1,2,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22711.0,2111.0 +2646158,2646159,28.0,1072225,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22711.0,2111.0 +2646159,2646160,46.0,1072225,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646160,2646161,28.0,1072226,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22711.0,2111.0 +2646161,2646162,46.0,1072226,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646162,2646163,28.0,1072227,1,2,0,4,2.0,40.0,1.0,15.0,4.0,92MP,18.0,22711.0,2111.0 +2646163,2646164,46.0,1072227,2,2,12,2,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646164,2646165,39.0,1072228,1,2,0,4,1.0,70.0,3.0,-9.0,4.0,4411,5.0,22731.0,2114.0 +2646165,2646166,26.0,1072229,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22711.0,2111.0 +2646166,2646167,26.0,1072230,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22712.0,2111.0 +2646167,2646168,41.0,1072231,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,491,6.0,22712.0,2111.0 +2646168,2646169,41.0,1072232,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,491,6.0,22712.0,2111.0 +2646169,2646170,41.0,1072233,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,491,6.0,22712.0,2111.0 +2646170,2646171,41.0,1072234,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,491,6.0,22712.0,2111.0 +2646171,2646172,28.0,1072235,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22712.0,2111.0 +2646172,2646173,25.0,1072235,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22712.0,2111.0 +2646173,2646174,28.0,1072236,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22712.0,2111.0 +2646174,2646175,25.0,1072236,2,2,13,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22712.0,2111.0 +2646175,2646176,38.0,1072237,1,2,0,4,1.0,70.0,4.0,-9.0,4.0,522M,9.0,22712.0,2111.0 +2646176,2646177,30.0,1072238,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22711.0,2111.0 +2646177,2646178,30.0,1072239,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22711.0,2111.0 +2646178,2646179,30.0,1072240,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22712.0,2111.0 +2646179,2646180,30.0,1072241,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22711.0,2111.0 +2646180,2646181,30.0,1072242,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22712.0,2111.0 +2646181,2646182,30.0,1072243,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22712.0,2111.0 +2646182,2646183,30.0,1072244,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22731.0,2114.0 +2646183,2646184,30.0,1072245,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22713.0,2111.0 +2646184,2646185,30.0,1072246,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22711.0,2111.0 +2646185,2646186,30.0,1072247,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22711.0,2111.0 +2646186,2646187,30.0,1072248,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,8131,17.0,22711.0,2111.0 +2646187,2646188,32.0,1072249,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22711.0,2111.0 +2646188,2646189,27.0,1072250,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22711.0,2111.0 +2646189,2646190,32.0,1072251,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22711.0,2111.0 +2646190,2646191,27.0,1072252,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22711.0,2111.0 +2646191,2646192,27.0,1072253,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22731.0,2114.0 +2646192,2646193,27.0,1072254,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22711.0,2111.0 +2646193,2646194,35.0,1072255,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646194,2646195,35.0,1072256,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646195,2646196,35.0,1072257,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22712.0,2111.0 +2646196,2646197,35.0,1072258,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646197,2646198,35.0,1072259,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646198,2646199,35.0,1072260,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22712.0,2111.0 +2646199,2646200,35.0,1072261,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22712.0,2111.0 +2646200,2646201,35.0,1072262,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646201,2646202,35.0,1072263,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22712.0,2111.0 +2646202,2646203,35.0,1072264,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22712.0,2111.0 +2646203,2646204,35.0,1072265,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646204,2646205,35.0,1072266,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646205,2646206,35.0,1072267,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22731.0,2114.0 +2646206,2646207,35.0,1072268,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646207,2646208,35.0,1072269,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646208,2646209,35.0,1072270,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646209,2646210,35.0,1072271,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646210,2646211,35.0,1072272,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22712.0,2111.0 +2646211,2646212,35.0,1072273,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22712.0,2111.0 +2646212,2646213,35.0,1072274,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22712.0,2111.0 +2646213,2646214,35.0,1072275,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646214,2646215,35.0,1072276,1,1,0,2,1.0,44.0,1.0,-9.0,4.0,92MP,18.0,22711.0,2111.0 +2646215,2646216,43.0,1072277,1,1,0,2,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22712.0,2111.0 +2646216,2646217,39.0,1072278,1,1,0,2,1.0,70.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646217,2646218,26.0,1072279,1,1,0,2,1.0,40.0,1.0,15.0,4.0,5415,10.0,22711.0,2111.0 +2646218,2646219,30.0,1072280,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,5416,10.0,22711.0,2111.0 +2646219,2646220,30.0,1072281,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,5416,10.0,22711.0,2111.0 +2646220,2646221,26.0,1072282,1,1,0,2,1.0,40.0,1.0,15.0,4.0,5415,10.0,22712.0,2111.0 +2646221,2646222,30.0,1072283,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,5416,10.0,22711.0,2111.0 +2646222,2646223,30.0,1072284,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,5416,10.0,22711.0,2111.0 +2646223,2646224,26.0,1072285,1,1,0,2,1.0,40.0,1.0,15.0,4.0,5415,10.0,22713.0,2111.0 +2646224,2646225,26.0,1072286,1,1,0,2,1.0,40.0,1.0,15.0,4.0,5415,10.0,22711.0,2111.0 +2646225,2646226,30.0,1072287,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,5416,10.0,22711.0,2111.0 +2646226,2646227,30.0,1072288,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,5416,10.0,22711.0,2111.0 +2646227,2646228,26.0,1072289,1,1,0,2,1.0,40.0,1.0,15.0,4.0,5415,10.0,22711.0,2111.0 +2646228,2646229,26.0,1072290,1,1,0,2,1.0,40.0,1.0,15.0,4.0,5415,10.0,22712.0,2111.0 +2646229,2646230,26.0,1072291,1,1,0,2,1.0,40.0,1.0,15.0,4.0,5415,10.0,22712.0,2111.0 +2646230,2646231,27.0,1072292,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22711.0,2111.0 +2646231,2646232,27.0,1072293,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22712.0,2111.0 +2646232,2646233,25.0,1072294,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22712.0,2111.0 +2646233,2646234,27.0,1072295,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22711.0,2111.0 +2646234,2646235,25.0,1072296,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22711.0,2111.0 +2646235,2646236,27.0,1072297,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22712.0,2111.0 +2646236,2646237,27.0,1072298,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22711.0,2111.0 +2646237,2646238,27.0,1072299,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22711.0,2111.0 +2646238,2646239,27.0,1072300,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22711.0,2111.0 +2646239,2646240,27.0,1072301,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22711.0,2111.0 +2646240,2646241,25.0,1072302,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22711.0,2111.0 +2646241,2646242,25.0,1072303,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22712.0,2111.0 +2646242,2646243,27.0,1072304,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22712.0,2111.0 +2646243,2646244,27.0,1072305,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22711.0,2111.0 +2646244,2646245,25.0,1072306,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22712.0,2111.0 +2646245,2646246,27.0,1072307,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22711.0,2111.0 +2646246,2646247,27.0,1072308,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22712.0,2111.0 +2646247,2646248,25.0,1072309,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22712.0,2111.0 +2646248,2646249,32.0,1072310,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,4853,6.0,22712.0,2111.0 +2646249,2646250,32.0,1072311,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,4853,6.0,22711.0,2111.0 +2646250,2646251,32.0,1072312,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,4853,6.0,22712.0,2111.0 +2646251,2646252,32.0,1072313,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,4853,6.0,22711.0,2111.0 +2646252,2646253,32.0,1072314,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,4853,6.0,22711.0,2111.0 +2646253,2646254,32.0,1072315,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,4853,6.0,22712.0,2111.0 +2646254,2646255,32.0,1072316,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,4853,6.0,22711.0,2111.0 +2646255,2646256,28.0,1072317,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,4533,5.0,22711.0,2111.0 +2646256,2646257,43.0,1072318,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5241,9.0,22711.0,2111.0 +2646257,2646258,13.0,1072318,2,2,2,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22711.0,2111.0 +2646258,2646259,39.0,1072319,1,2,0,2,1.0,45.0,1.0,15.0,4.0,517311,8.0,22711.0,2111.0 +2646259,2646260,16.0,1072319,2,2,2,3,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22711.0,2111.0 +2646260,2646261,39.0,1072320,1,2,0,2,1.0,45.0,1.0,15.0,4.0,517311,8.0,22711.0,2111.0 +2646261,2646262,16.0,1072320,2,2,2,3,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22711.0,2111.0 +2646262,2646263,40.0,1072321,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22712.0,2111.0 +2646263,2646264,4.0,1072321,2,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22712.0,2111.0 +2646264,2646265,35.0,1072322,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22731.0,2114.0 +2646265,2646266,36.0,1072322,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22731.0,2114.0 +2646266,2646267,10.0,1072322,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22731.0,2114.0 +2646267,2646268,9.0,1072322,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22731.0,2114.0 +2646268,2646269,2.0,1072322,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22731.0,2114.0 +2646269,2646270,35.0,1072323,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2646270,2646271,36.0,1072323,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2646271,2646272,10.0,1072323,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22712.0,2111.0 +2646272,2646273,9.0,1072323,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22712.0,2111.0 +2646273,2646274,2.0,1072323,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22712.0,2111.0 +2646274,2646275,35.0,1072324,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646275,2646276,36.0,1072324,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646276,2646277,10.0,1072324,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22711.0,2111.0 +2646277,2646278,9.0,1072324,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22711.0,2111.0 +2646278,2646279,2.0,1072324,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646279,2646280,35.0,1072325,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646280,2646281,36.0,1072325,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646281,2646282,10.0,1072325,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22711.0,2111.0 +2646282,2646283,9.0,1072325,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22711.0,2111.0 +2646283,2646284,2.0,1072325,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646284,2646285,35.0,1072326,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646285,2646286,36.0,1072326,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646286,2646287,10.0,1072326,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22711.0,2111.0 +2646287,2646288,9.0,1072326,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22711.0,2111.0 +2646288,2646289,2.0,1072326,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646289,2646290,35.0,1072327,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646290,2646291,36.0,1072327,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646291,2646292,10.0,1072327,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22711.0,2111.0 +2646292,2646293,9.0,1072327,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22711.0,2111.0 +2646293,2646294,2.0,1072327,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646294,2646295,35.0,1072328,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646295,2646296,36.0,1072328,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646296,2646297,10.0,1072328,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22711.0,2111.0 +2646297,2646298,9.0,1072328,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22711.0,2111.0 +2646298,2646299,2.0,1072328,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646299,2646300,35.0,1072329,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646300,2646301,36.0,1072329,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646301,2646302,10.0,1072329,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22711.0,2111.0 +2646302,2646303,9.0,1072329,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22711.0,2111.0 +2646303,2646304,2.0,1072329,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646304,2646305,35.0,1072330,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646305,2646306,36.0,1072330,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646306,2646307,10.0,1072330,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22711.0,2111.0 +2646307,2646308,9.0,1072330,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22711.0,2111.0 +2646308,2646309,2.0,1072330,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646309,2646310,35.0,1072331,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646310,2646311,36.0,1072331,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646311,2646312,10.0,1072331,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22711.0,2111.0 +2646312,2646313,9.0,1072331,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22711.0,2111.0 +2646313,2646314,2.0,1072331,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646314,2646315,35.0,1072332,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2646315,2646316,36.0,1072332,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2646316,2646317,10.0,1072332,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22712.0,2111.0 +2646317,2646318,9.0,1072332,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22712.0,2111.0 +2646318,2646319,2.0,1072332,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22712.0,2111.0 +2646319,2646320,35.0,1072333,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646320,2646321,36.0,1072333,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646321,2646322,10.0,1072333,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22711.0,2111.0 +2646322,2646323,9.0,1072333,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22711.0,2111.0 +2646323,2646324,2.0,1072333,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646324,2646325,35.0,1072334,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2646325,2646326,36.0,1072334,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2646326,2646327,10.0,1072334,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22712.0,2111.0 +2646327,2646328,9.0,1072334,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22712.0,2111.0 +2646328,2646329,2.0,1072334,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22712.0,2111.0 +2646329,2646330,35.0,1072335,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646330,2646331,36.0,1072335,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646331,2646332,10.0,1072335,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22711.0,2111.0 +2646332,2646333,9.0,1072335,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22711.0,2111.0 +2646333,2646334,2.0,1072335,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646334,2646335,31.0,1072336,1,2,0,1,2.0,40.0,1.0,-9.0,4.0,5417,10.0,22712.0,2111.0 +2646335,2646336,25.0,1072336,2,2,15,1,1.0,40.0,4.0,-9.0,4.0,5613,12.0,22712.0,2111.0 +2646336,2646337,25.0,1072336,3,1,15,2,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22712.0,2111.0 +2646337,2646338,31.0,1072337,1,2,0,1,2.0,40.0,1.0,-9.0,4.0,5417,10.0,22712.0,2111.0 +2646338,2646339,25.0,1072337,2,2,15,1,1.0,40.0,4.0,-9.0,4.0,5613,12.0,22712.0,2111.0 +2646339,2646340,25.0,1072337,3,1,15,2,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22712.0,2111.0 +2646340,2646341,31.0,1072338,1,2,0,1,2.0,40.0,1.0,-9.0,4.0,5417,10.0,22712.0,2111.0 +2646341,2646342,25.0,1072338,2,2,15,1,1.0,40.0,4.0,-9.0,4.0,5613,12.0,22712.0,2111.0 +2646342,2646343,25.0,1072338,3,1,15,2,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22712.0,2111.0 +2646343,2646344,28.0,1072339,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22711.0,2111.0 +2646344,2646345,24.0,1072339,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22711.0,2111.0 +2646345,2646346,39.0,1072340,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5112,8.0,22711.0,2111.0 +2646346,2646347,34.0,1072341,1,2,0,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22711.0,2111.0 +2646347,2646348,35.0,1072341,2,2,15,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22711.0,2111.0 +2646348,2646349,36.0,1072342,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22731.0,2114.0 +2646349,2646350,35.0,1072342,2,2,13,1,1.0,45.0,1.0,-9.0,4.0,8121M,17.0,22731.0,2114.0 +2646350,2646351,44.0,1072343,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22731.0,2114.0 +2646351,2646352,25.0,1072344,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22712.0,2111.0 +2646352,2646353,29.0,1072345,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,481,6.0,22711.0,2111.0 +2646353,2646354,28.0,1072346,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22711.0,2111.0 +2646354,2646355,30.0,1072347,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22711.0,2111.0 +2646355,2646356,37.0,1072348,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,482,6.0,22712.0,2111.0 +2646356,2646357,37.0,1072349,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,482,6.0,22712.0,2111.0 +2646357,2646358,37.0,1072350,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,482,6.0,22711.0,2111.0 +2646358,2646359,38.0,1072351,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646359,2646360,17.0,1072351,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646360,2646361,42.0,1072351,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646361,2646362,21.0,1072351,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646362,2646363,38.0,1072352,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646363,2646364,17.0,1072352,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646364,2646365,42.0,1072352,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646365,2646366,21.0,1072352,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646366,2646367,38.0,1072353,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646367,2646368,17.0,1072353,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646368,2646369,42.0,1072353,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646369,2646370,21.0,1072353,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646370,2646371,38.0,1072354,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646371,2646372,17.0,1072354,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646372,2646373,42.0,1072354,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646373,2646374,21.0,1072354,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646374,2646375,38.0,1072355,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22712.0,2111.0 +2646375,2646376,17.0,1072355,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2646376,2646377,42.0,1072355,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22712.0,2111.0 +2646377,2646378,21.0,1072355,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646378,2646379,38.0,1072356,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646379,2646380,17.0,1072356,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646380,2646381,42.0,1072356,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646381,2646382,21.0,1072356,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646382,2646383,38.0,1072357,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22731.0,2114.0 +2646383,2646384,17.0,1072357,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22731.0,2114.0 +2646384,2646385,42.0,1072357,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22731.0,2114.0 +2646385,2646386,21.0,1072357,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22731.0,2114.0 +2646386,2646387,38.0,1072358,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646387,2646388,17.0,1072358,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646388,2646389,42.0,1072358,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646389,2646390,21.0,1072358,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646390,2646391,38.0,1072359,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22712.0,2111.0 +2646391,2646392,17.0,1072359,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2646392,2646393,42.0,1072359,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22712.0,2111.0 +2646393,2646394,21.0,1072359,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646394,2646395,38.0,1072360,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22712.0,2111.0 +2646395,2646396,17.0,1072360,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2646396,2646397,42.0,1072360,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22712.0,2111.0 +2646397,2646398,21.0,1072360,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646398,2646399,38.0,1072361,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646399,2646400,17.0,1072361,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646400,2646401,42.0,1072361,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646401,2646402,21.0,1072361,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646402,2646403,38.0,1072362,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646403,2646404,17.0,1072362,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646404,2646405,42.0,1072362,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646405,2646406,21.0,1072362,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646406,2646407,38.0,1072363,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646407,2646408,17.0,1072363,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646408,2646409,42.0,1072363,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646409,2646410,21.0,1072363,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646410,2646411,38.0,1072364,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22712.0,2111.0 +2646411,2646412,17.0,1072364,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2646412,2646413,42.0,1072364,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22712.0,2111.0 +2646413,2646414,21.0,1072364,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646414,2646415,38.0,1072365,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646415,2646416,17.0,1072365,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646416,2646417,42.0,1072365,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646417,2646418,21.0,1072365,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646418,2646419,38.0,1072366,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646419,2646420,17.0,1072366,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646420,2646421,42.0,1072366,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646421,2646422,21.0,1072366,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646422,2646423,38.0,1072367,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646423,2646424,17.0,1072367,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646424,2646425,42.0,1072367,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646425,2646426,21.0,1072367,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646426,2646427,38.0,1072368,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646427,2646428,17.0,1072368,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646428,2646429,42.0,1072368,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646429,2646430,21.0,1072368,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646430,2646431,38.0,1072369,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22712.0,2111.0 +2646431,2646432,17.0,1072369,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2646432,2646433,42.0,1072369,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22712.0,2111.0 +2646433,2646434,21.0,1072369,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646434,2646435,38.0,1072370,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646435,2646436,17.0,1072370,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646436,2646437,42.0,1072370,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646437,2646438,21.0,1072370,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646438,2646439,38.0,1072371,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22712.0,2111.0 +2646439,2646440,17.0,1072371,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2646440,2646441,42.0,1072371,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22712.0,2111.0 +2646441,2646442,21.0,1072371,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646442,2646443,38.0,1072372,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646443,2646444,17.0,1072372,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646444,2646445,42.0,1072372,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646445,2646446,21.0,1072372,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646446,2646447,38.0,1072373,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22713.0,2111.0 +2646447,2646448,17.0,1072373,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22713.0,2111.0 +2646448,2646449,42.0,1072373,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22713.0,2111.0 +2646449,2646450,21.0,1072373,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22713.0,2111.0 +2646450,2646451,38.0,1072374,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646451,2646452,17.0,1072374,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646452,2646453,42.0,1072374,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646453,2646454,21.0,1072374,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646454,2646455,38.0,1072375,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646455,2646456,17.0,1072375,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646456,2646457,42.0,1072375,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646457,2646458,21.0,1072375,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646458,2646459,38.0,1072376,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646459,2646460,17.0,1072376,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646460,2646461,42.0,1072376,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646461,2646462,21.0,1072376,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646462,2646463,38.0,1072377,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646463,2646464,17.0,1072377,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646464,2646465,42.0,1072377,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646465,2646466,21.0,1072377,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646466,2646467,38.0,1072378,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646467,2646468,17.0,1072378,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646468,2646469,42.0,1072378,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646469,2646470,21.0,1072378,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646470,2646471,38.0,1072379,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646471,2646472,17.0,1072379,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646472,2646473,42.0,1072379,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646473,2646474,21.0,1072379,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646474,2646475,38.0,1072380,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22712.0,2111.0 +2646475,2646476,17.0,1072380,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2646476,2646477,42.0,1072380,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22712.0,2111.0 +2646477,2646478,21.0,1072380,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646478,2646479,38.0,1072381,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646479,2646480,17.0,1072381,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646480,2646481,42.0,1072381,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646481,2646482,21.0,1072381,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646482,2646483,38.0,1072382,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22712.0,2111.0 +2646483,2646484,17.0,1072382,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2646484,2646485,42.0,1072382,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22712.0,2111.0 +2646485,2646486,21.0,1072382,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646486,2646487,38.0,1072383,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646487,2646488,17.0,1072383,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646488,2646489,42.0,1072383,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646489,2646490,21.0,1072383,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646490,2646491,38.0,1072384,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22712.0,2111.0 +2646491,2646492,17.0,1072384,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22712.0,2111.0 +2646492,2646493,42.0,1072384,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22712.0,2111.0 +2646493,2646494,21.0,1072384,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646494,2646495,38.0,1072385,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646495,2646496,17.0,1072385,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646496,2646497,42.0,1072385,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646497,2646498,21.0,1072385,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646498,2646499,38.0,1072386,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646499,2646500,17.0,1072386,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646500,2646501,42.0,1072386,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646501,2646502,21.0,1072386,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646502,2646503,38.0,1072387,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646503,2646504,17.0,1072387,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646504,2646505,42.0,1072387,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646505,2646506,21.0,1072387,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646506,2646507,38.0,1072388,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646507,2646508,17.0,1072388,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646508,2646509,42.0,1072388,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646509,2646510,21.0,1072388,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646510,2646511,38.0,1072389,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646511,2646512,17.0,1072389,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646512,2646513,42.0,1072389,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646513,2646514,21.0,1072389,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646514,2646515,38.0,1072390,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22711.0,2111.0 +2646515,2646516,17.0,1072390,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22711.0,2111.0 +2646516,2646517,42.0,1072390,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22711.0,2111.0 +2646517,2646518,21.0,1072390,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646518,2646519,37.0,1072391,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22711.0,2111.0 +2646519,2646520,6.0,1072391,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22711.0,2111.0 +2646520,2646521,37.0,1072392,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22711.0,2111.0 +2646521,2646522,6.0,1072392,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22711.0,2111.0 +2646522,2646523,19.0,1072393,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22711.0,2111.0 +2646523,2646524,56.0,1072393,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22711.0,2111.0 +2646524,2646525,19.0,1072394,1,1,0,4,1.0,23.0,1.0,14.0,4.0,4411,5.0,22712.0,2111.0 +2646525,2646526,56.0,1072394,2,2,10,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22712.0,2111.0 +2646526,2646527,23.0,1072395,1,1,0,4,1.0,40.0,1.0,15.0,4.0,446Z,5.0,22712.0,2111.0 +2646527,2646528,23.0,1072396,1,1,0,4,1.0,40.0,1.0,15.0,4.0,446Z,5.0,22711.0,2111.0 +2646528,2646529,23.0,1072397,1,1,0,4,1.0,40.0,1.0,15.0,4.0,446Z,5.0,22712.0,2111.0 +2646529,2646530,23.0,1072398,1,1,0,4,1.0,40.0,1.0,15.0,4.0,446Z,5.0,22712.0,2111.0 +2646530,2646531,23.0,1072399,1,1,0,4,1.0,40.0,1.0,15.0,4.0,446Z,5.0,22712.0,2111.0 +2646531,2646532,23.0,1072400,1,1,0,4,1.0,40.0,1.0,15.0,4.0,446Z,5.0,22711.0,2111.0 +2646532,2646533,23.0,1072401,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22711.0,2111.0 +2646533,2646534,23.0,1072402,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22712.0,2111.0 +2646534,2646535,23.0,1072403,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22731.0,2114.0 +2646535,2646536,23.0,1072404,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22711.0,2111.0 +2646536,2646537,23.0,1072405,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22712.0,2111.0 +2646537,2646538,23.0,1072406,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22711.0,2111.0 +2646538,2646539,23.0,1072407,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22711.0,2111.0 +2646539,2646540,23.0,1072408,1,2,0,1,1.0,40.0,1.0,15.0,4.0,44511,5.0,22712.0,2111.0 +2646540,2646541,20.0,1072408,2,2,13,1,1.0,30.0,1.0,15.0,4.0,447,5.0,22712.0,2111.0 +2646541,2646542,24.0,1072408,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22712.0,2111.0 +2646542,2646543,23.0,1072409,1,2,0,1,1.0,40.0,1.0,15.0,4.0,44511,5.0,22711.0,2111.0 +2646543,2646544,20.0,1072409,2,2,13,1,1.0,30.0,1.0,15.0,4.0,447,5.0,22711.0,2111.0 +2646544,2646545,24.0,1072409,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22711.0,2111.0 +2646545,2646546,22.0,1072410,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,812112,17.0,22711.0,2111.0 +2646546,2646547,22.0,1072410,2,2,12,1,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22711.0,2111.0 +2646547,2646548,21.0,1072411,1,2,0,1,3.0,35.0,3.0,15.0,4.0,722Z,16.0,22711.0,2111.0 +2646548,2646549,19.0,1072411,2,1,13,1,1.0,35.0,2.0,-9.0,4.0,722Z,16.0,22711.0,2111.0 +2646549,2646550,21.0,1072412,1,2,0,1,3.0,35.0,3.0,15.0,4.0,722Z,16.0,22712.0,2111.0 +2646550,2646551,19.0,1072412,2,1,13,1,1.0,35.0,2.0,-9.0,4.0,722Z,16.0,22712.0,2111.0 +2646551,2646552,22.0,1072413,1,2,0,1,6.0,30.0,4.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2646552,2646553,24.0,1072413,2,1,1,1,1.0,50.0,1.0,-9.0,2.0,4441Z,5.0,22712.0,2111.0 +2646553,2646554,23.0,1072414,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22712.0,2111.0 +2646554,2646555,24.0,1072415,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5242,9.0,22711.0,2111.0 +2646555,2646556,24.0,1072416,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22711.0,2111.0 +2646556,2646557,24.0,1072417,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22711.0,2111.0 +2646557,2646558,24.0,1072418,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22711.0,2111.0 +2646558,2646559,24.0,1072419,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22731.0,2114.0 +2646559,2646560,24.0,1072420,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22712.0,2111.0 +2646560,2646561,24.0,1072421,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22712.0,2111.0 +2646561,2646562,24.0,1072422,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22712.0,2111.0 +2646562,2646563,24.0,1072423,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22712.0,2111.0 +2646563,2646564,22.0,1072424,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22711.0,2111.0 +2646564,2646565,23.0,1072425,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646565,2646566,18.0,1072425,2,2,5,1,1.0,20.0,5.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646566,2646567,23.0,1072426,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646567,2646568,18.0,1072426,2,2,5,1,1.0,20.0,5.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646568,2646569,23.0,1072427,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646569,2646570,18.0,1072427,2,2,5,1,1.0,20.0,5.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646570,2646571,23.0,1072428,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,484,6.0,22712.0,2111.0 +2646571,2646572,18.0,1072428,2,2,5,1,1.0,20.0,5.0,-9.0,4.0,484,6.0,22712.0,2111.0 +2646572,2646573,23.0,1072429,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646573,2646574,18.0,1072429,2,2,5,1,1.0,20.0,5.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646574,2646575,23.0,1072430,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646575,2646576,18.0,1072430,2,2,5,1,1.0,20.0,5.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646576,2646577,23.0,1072431,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646577,2646578,23.0,1072432,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2646578,2646579,23.0,1072433,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646579,2646580,23.0,1072434,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2646580,2646581,23.0,1072435,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646581,2646582,23.0,1072436,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2646582,2646583,23.0,1072437,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22712.0,2111.0 +2646583,2646584,23.0,1072438,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646584,2646585,23.0,1072439,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22713.0,2111.0 +2646585,2646586,23.0,1072440,1,2,0,1,1.0,5.0,1.0,-9.0,4.0,814,17.0,22711.0,2111.0 +2646586,2646587,23.0,1072441,1,2,0,1,1.0,42.0,6.0,-9.0,4.0,336M,3.0,22711.0,2111.0 +2646587,2646588,23.0,1072442,1,2,0,1,1.0,40.0,3.0,-9.0,4.0,522M,9.0,22712.0,2111.0 +2646588,2646589,4.0,1072442,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22712.0,2111.0 +2646589,2646590,3.0,1072442,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22712.0,2111.0 +2646590,2646591,0.0,1072442,4,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22712.0,2111.0 +2646591,2646592,23.0,1072443,1,2,0,1,1.0,40.0,3.0,-9.0,4.0,522M,9.0,22711.0,2111.0 +2646592,2646593,4.0,1072443,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22711.0,2111.0 +2646593,2646594,3.0,1072443,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22711.0,2111.0 +2646594,2646595,0.0,1072443,4,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646595,2646596,23.0,1072444,1,2,0,1,1.0,40.0,3.0,-9.0,4.0,522M,9.0,22711.0,2111.0 +2646596,2646597,4.0,1072444,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22711.0,2111.0 +2646597,2646598,3.0,1072444,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22711.0,2111.0 +2646598,2646599,0.0,1072444,4,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646599,2646600,22.0,1072445,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646600,2646601,1.0,1072445,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646601,2646602,22.0,1072446,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646602,2646603,1.0,1072446,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646603,2646604,22.0,1072447,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,484,6.0,22713.0,2111.0 +2646604,2646605,1.0,1072447,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22713.0,2111.0 +2646605,2646606,22.0,1072448,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,484,6.0,22711.0,2111.0 +2646606,2646607,1.0,1072448,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646607,2646608,24.0,1072449,1,1,0,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22711.0,2111.0 +2646608,2646609,2.0,1072449,2,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22711.0,2111.0 +2646609,2646610,24.0,1072450,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,5613,12.0,22711.0,2111.0 +2646610,2646611,9.0,1072450,2,2,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22711.0,2111.0 +2646611,2646612,4.0,1072450,3,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22711.0,2111.0 +2647051,2647052,54.0,1072597,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22728.0,2113.0 +2647052,2647053,55.0,1072597,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22728.0,2113.0 +2647715,2647716,19.0,1072801,1,1,0,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22728.0,2113.0 +2647716,2647717,20.0,1072801,2,1,12,2,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22728.0,2113.0 +2661321,2661322,81.0,1078697,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22655.0,2102.0 +2661322,2661323,50.0,1078697,2,1,2,1,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22655.0,2102.0 +2661323,2661324,90.0,1078698,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22650.0,2102.0 +2661324,2661325,89.0,1078698,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661325,2661326,74.0,1078699,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661326,2661327,69.0,1078699,2,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661327,2661328,83.0,1078700,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22650.0,2102.0 +2661328,2661329,71.0,1078700,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661329,2661330,83.0,1078701,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22651.0,2102.0 +2661330,2661331,71.0,1078701,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661331,2661332,58.0,1078702,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,44512,5.0,22650.0,2102.0 +2661332,2661333,34.0,1078702,2,2,1,1,1.0,44.0,1.0,-9.0,4.0,44511,5.0,22650.0,2102.0 +2661333,2661334,58.0,1078703,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,44512,5.0,22650.0,2102.0 +2661334,2661335,34.0,1078703,2,2,1,1,1.0,44.0,1.0,-9.0,4.0,44511,5.0,22650.0,2102.0 +2661335,2661336,58.0,1078704,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,44512,5.0,22655.0,2102.0 +2661336,2661337,34.0,1078704,2,2,1,1,1.0,44.0,1.0,-9.0,4.0,44511,5.0,22655.0,2102.0 +2661337,2661338,58.0,1078705,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,44512,5.0,22650.0,2102.0 +2661338,2661339,34.0,1078705,2,2,1,1,1.0,44.0,1.0,-9.0,4.0,44511,5.0,22650.0,2102.0 +2661339,2661340,58.0,1078706,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,44512,5.0,22651.0,2102.0 +2661340,2661341,34.0,1078706,2,2,1,1,1.0,44.0,1.0,-9.0,4.0,44511,5.0,22651.0,2102.0 +2661341,2661342,60.0,1078707,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22655.0,2102.0 +2661342,2661343,59.0,1078707,2,2,1,1,1.0,6.0,1.0,-9.0,4.0,8131,17.0,22655.0,2102.0 +2661343,2661344,60.0,1078708,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22650.0,2102.0 +2661344,2661345,59.0,1078708,2,2,1,1,1.0,6.0,1.0,-9.0,4.0,8131,17.0,22650.0,2102.0 +2661345,2661346,59.0,1078709,1,1,0,1,6.0,1.0,6.0,-9.0,4.0,5413,10.0,22655.0,2102.0 +2661346,2661347,58.0,1078709,2,2,1,1,1.0,40.0,5.0,-9.0,4.0,5613,12.0,22655.0,2102.0 +2661347,2661348,48.0,1078710,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4244,4.0,22650.0,2102.0 +2661348,2661349,55.0,1078710,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661349,2661350,46.0,1078711,1,1,0,1,1.0,45.0,1.0,15.0,2.0,622M,15.0,22650.0,2102.0 +2661350,2661351,59.0,1078711,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661351,2661352,48.0,1078712,1,1,0,1,1.0,30.0,1.0,-9.0,4.0,7115,16.0,22654.0,2102.0 +2661352,2661353,43.0,1078712,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661353,2661354,64.0,1078713,1,1,0,1,1.0,54.0,1.0,-9.0,4.0,45114,5.0,22650.0,2102.0 +2661354,2661355,58.0,1078713,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661355,2661356,64.0,1078714,1,1,0,1,1.0,54.0,1.0,-9.0,4.0,45114,5.0,22655.0,2102.0 +2661356,2661357,58.0,1078714,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22655.0,2102.0 +2661357,2661358,64.0,1078715,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661358,2661359,27.0,1078715,2,1,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22651.0,2102.0 +2661359,2661360,64.0,1078716,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22655.0,2102.0 +2661360,2661361,27.0,1078716,2,1,2,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22655.0,2102.0 +2661361,2661362,64.0,1078717,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661362,2661363,64.0,1078717,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661363,2661364,64.0,1078718,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661364,2661365,64.0,1078718,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661365,2661366,64.0,1078719,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661366,2661367,64.0,1078719,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661367,2661368,63.0,1078720,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661368,2661369,40.0,1078720,2,1,4,1,1.0,45.0,6.0,-9.0,4.0,3341,3.0,22650.0,2102.0 +2661369,2661370,59.0,1078721,1,1,0,1,1.0,25.0,1.0,-9.0,4.0,7211,16.0,22651.0,2102.0 +2661370,2661371,59.0,1078722,1,1,0,1,1.0,25.0,1.0,-9.0,4.0,7211,16.0,22651.0,2102.0 +2661371,2661372,59.0,1078723,1,1,0,1,1.0,25.0,1.0,-9.0,4.0,7211,16.0,22651.0,2102.0 +2661372,2661373,49.0,1078724,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22655.0,2102.0 +2661373,2661374,49.0,1078725,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22651.0,2102.0 +2661374,2661375,49.0,1078726,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22650.0,2102.0 +2661375,2661376,49.0,1078727,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22651.0,2102.0 +2661376,2661377,49.0,1078728,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22651.0,2102.0 +2661377,2661378,49.0,1078729,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22651.0,2102.0 +2661378,2661379,49.0,1078730,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22651.0,2102.0 +2661379,2661380,49.0,1078731,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22650.0,2102.0 +2661380,2661381,49.0,1078732,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22650.0,2102.0 +2661381,2661382,49.0,1078733,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22650.0,2102.0 +2661382,2661383,59.0,1078734,1,1,0,1,1.0,18.0,6.0,-9.0,2.0,5313,9.0,22651.0,2102.0 +2661383,2661384,59.0,1078735,1,1,0,1,1.0,18.0,6.0,-9.0,2.0,5313,9.0,22650.0,2102.0 +2661384,2661385,59.0,1078736,1,1,0,1,1.0,18.0,6.0,-9.0,2.0,5313,9.0,22650.0,2102.0 +2661385,2661386,59.0,1078737,1,1,0,1,1.0,16.0,1.0,-9.0,4.0,45439,5.0,22655.0,2102.0 +2661386,2661387,55.0,1078738,1,1,0,1,1.0,54.0,1.0,-9.0,4.0,32711,3.0,22651.0,2102.0 +2661387,2661388,55.0,1078739,1,1,0,1,1.0,54.0,1.0,-9.0,4.0,32711,3.0,22654.0,2102.0 +2661388,2661389,55.0,1078740,1,1,0,1,1.0,54.0,1.0,-9.0,4.0,32711,3.0,22655.0,2102.0 +2661389,2661390,58.0,1078741,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,23,2.0,22650.0,2102.0 +2661390,2661391,54.0,1078742,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22655.0,2102.0 +2661391,2661392,28.0,1078742,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22655.0,2102.0 +2661392,2661393,64.0,1078743,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22650.0,2102.0 +2661393,2661394,59.0,1078743,2,2,1,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22650.0,2102.0 +2661394,2661395,51.0,1078744,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661395,2661396,44.0,1078744,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661396,2661397,60.0,1078745,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661397,2661398,60.0,1078746,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22655.0,2102.0 +2661398,2661399,60.0,1078747,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661399,2661400,46.0,1078748,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5241,9.0,22655.0,2102.0 +2661400,2661401,7.0,1078748,2,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22655.0,2102.0 +2661401,2661402,46.0,1078749,1,2,0,1,1.0,18.0,1.0,-9.0,4.0,23,2.0,22650.0,2102.0 +2661402,2661403,7.0,1078749,2,2,15,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22650.0,2102.0 +2661403,2661404,61.0,1078750,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22650.0,2102.0 +2661404,2661405,17.0,1078750,2,1,7,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22650.0,2102.0 +2661405,2661406,78.0,1078751,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661406,2661407,48.0,1078751,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,336M,3.0,22640.0,2101.0 +2661407,2661408,38.0,1078751,3,1,2,2,1.0,12.0,1.0,-9.0,4.0,3219ZM,3.0,22640.0,2101.0 +2661408,2661409,21.0,1078751,4,1,7,2,1.0,32.0,6.0,15.0,4.0,3211,3.0,22640.0,2101.0 +2661409,2661410,68.0,1078752,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661410,2661411,65.0,1078753,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22647.0,2101.0 +2661411,2661412,14.0,1078753,2,1,7,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22647.0,2101.0 +2661412,2661413,65.0,1078754,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22647.0,2101.0 +2661413,2661414,14.0,1078754,2,1,7,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22647.0,2101.0 +2661414,2661415,90.0,1078755,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22654.0,2102.0 +2661415,2661416,86.0,1078755,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661416,2661417,56.0,1078755,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22654.0,2102.0 +2661417,2661418,90.0,1078756,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22654.0,2102.0 +2661418,2661419,86.0,1078756,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661419,2661420,56.0,1078756,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22654.0,2102.0 +2661420,2661421,90.0,1078757,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22639.0,2101.0 +2661421,2661422,86.0,1078757,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661422,2661423,56.0,1078757,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22639.0,2101.0 +2661423,2661424,90.0,1078758,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22647.0,2101.0 +2661424,2661425,86.0,1078758,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22647.0,2101.0 +2661425,2661426,56.0,1078758,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22647.0,2101.0 +2661426,2661427,90.0,1078759,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22647.0,2101.0 +2661427,2661428,86.0,1078759,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22647.0,2101.0 +2661428,2661429,56.0,1078759,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22647.0,2101.0 +2661429,2661430,90.0,1078760,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22643.0,2101.0 +2661430,2661431,86.0,1078760,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661431,2661432,56.0,1078760,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22643.0,2101.0 +2661432,2661433,90.0,1078761,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22654.0,2102.0 +2661433,2661434,86.0,1078761,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661434,2661435,56.0,1078761,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22654.0,2102.0 +2661435,2661436,90.0,1078762,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22654.0,2102.0 +2661436,2661437,86.0,1078762,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661437,2661438,56.0,1078762,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22654.0,2102.0 +2661438,2661439,90.0,1078763,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22648.0,2101.0 +2661439,2661440,86.0,1078763,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661440,2661441,56.0,1078763,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22648.0,2101.0 +2661441,2661442,90.0,1078764,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22646.0,2101.0 +2661442,2661443,86.0,1078764,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661443,2661444,56.0,1078764,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22646.0,2101.0 +2661444,2661445,90.0,1078765,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22654.0,2102.0 +2661445,2661446,86.0,1078765,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661446,2661447,56.0,1078765,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22654.0,2102.0 +2661447,2661448,80.0,1078766,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22647.0,2101.0 +2661448,2661449,71.0,1078766,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22647.0,2101.0 +2661449,2661450,69.0,1078767,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22647.0,2101.0 +2661450,2661451,67.0,1078767,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22647.0,2101.0 +2661451,2661452,75.0,1078768,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661452,2661453,67.0,1078768,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661453,2661454,84.0,1078769,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661454,2661455,85.0,1078769,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22648.0,2101.0 +2661455,2661456,77.0,1078770,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661456,2661457,76.0,1078770,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661457,2661458,82.0,1078771,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22640.0,2101.0 +2661458,2661459,70.0,1078771,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661459,2661460,47.0,1078771,3,1,2,1,1.0,36.0,3.0,-9.0,4.0,443142,5.0,22640.0,2101.0 +2661460,2661461,69.0,1078772,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,8122,17.0,22648.0,2101.0 +2661461,2661462,72.0,1078772,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661462,2661463,72.0,1078773,1,2,0,1,1.0,25.0,6.0,-9.0,4.0,5321,9.0,22639.0,2101.0 +2661463,2661464,61.0,1078773,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22639.0,2101.0 +2661464,2661465,72.0,1078774,1,2,0,1,1.0,25.0,6.0,-9.0,4.0,5321,9.0,22646.0,2101.0 +2661465,2661466,61.0,1078774,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22646.0,2101.0 +2661466,2661467,72.0,1078775,1,2,0,1,1.0,25.0,6.0,-9.0,4.0,5321,9.0,22640.0,2101.0 +2661467,2661468,61.0,1078775,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22640.0,2101.0 +2661468,2661469,72.0,1078776,1,2,0,1,1.0,25.0,6.0,-9.0,4.0,5321,9.0,22654.0,2102.0 +2661469,2661470,61.0,1078776,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22654.0,2102.0 +2661470,2661471,72.0,1078777,1,2,0,1,1.0,25.0,6.0,-9.0,4.0,5321,9.0,22646.0,2101.0 +2661471,2661472,61.0,1078777,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22646.0,2101.0 +2661472,2661473,72.0,1078778,1,2,0,1,1.0,25.0,6.0,-9.0,4.0,5321,9.0,22648.0,2101.0 +2661473,2661474,61.0,1078778,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22648.0,2101.0 +2661474,2661475,88.0,1078779,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661475,2661476,59.0,1078779,2,1,2,1,1.0,39.0,1.0,-9.0,4.0,443141,5.0,22643.0,2101.0 +2661476,2661477,88.0,1078780,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661477,2661478,59.0,1078780,2,1,2,1,1.0,39.0,1.0,-9.0,4.0,443141,5.0,22654.0,2102.0 +2661478,2661479,66.0,1078781,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22648.0,2101.0 +2661479,2661480,60.0,1078781,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661480,2661481,81.0,1078781,3,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661481,2661482,76.0,1078782,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661482,2661483,78.0,1078782,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661483,2661484,73.0,1078783,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661484,2661485,75.0,1078783,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22639.0,2101.0 +2661485,2661486,81.0,1078784,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661486,2661487,48.0,1078784,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661487,2661488,65.0,1078785,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661488,2661489,64.0,1078785,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661489,2661490,81.0,1078786,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661490,2661491,48.0,1078786,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661491,2661492,65.0,1078787,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661492,2661493,64.0,1078787,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661493,2661494,81.0,1078788,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661494,2661495,48.0,1078788,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661495,2661496,65.0,1078789,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661496,2661497,64.0,1078789,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661497,2661498,81.0,1078790,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22654.0,2102.0 +2661498,2661499,73.0,1078791,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22645.0,2101.0 +2661499,2661500,67.0,1078792,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22648.0,2101.0 +2661500,2661501,82.0,1078793,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22640.0,2101.0 +2661501,2661502,67.0,1078794,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22639.0,2101.0 +2661502,2661503,67.0,1078795,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22645.0,2101.0 +2661503,2661504,77.0,1078796,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661504,2661505,50.0,1078796,2,2,2,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22654.0,2102.0 +2661505,2661506,67.0,1078797,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22639.0,2101.0 +2661506,2661507,90.0,1078798,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22640.0,2101.0 +2661507,2661508,89.0,1078798,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661508,2661509,70.0,1078799,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661509,2661510,51.0,1078799,2,2,15,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661510,2661511,82.0,1078800,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661511,2661512,74.0,1078801,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661512,2661513,65.0,1078802,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661513,2661514,83.0,1078803,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661514,2661515,66.0,1078804,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22645.0,2101.0 +2661515,2661516,76.0,1078805,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22654.0,2102.0 +2661516,2661517,76.0,1078806,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22639.0,2101.0 +2661517,2661518,76.0,1078807,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661518,2661519,87.0,1078808,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22644.0,2101.0 +2661519,2661520,86.0,1078809,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661520,2661521,70.0,1078810,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661521,2661522,73.0,1078811,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22644.0,2101.0 +2661522,2661523,65.0,1078812,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661523,2661524,71.0,1078813,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661524,2661525,71.0,1078814,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661525,2661526,73.0,1078815,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22644.0,2101.0 +2661526,2661527,80.0,1078816,1,2,0,1,1.0,15.0,1.0,-9.0,4.0,8131,17.0,22639.0,2101.0 +2661527,2661528,67.0,1078817,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661528,2661529,85.0,1078818,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661529,2661530,71.0,1078819,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22647.0,2101.0 +2661530,2661531,66.0,1078820,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661531,2661532,70.0,1078821,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661532,2661533,77.0,1078822,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661533,2661534,71.0,1078823,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661534,2661535,74.0,1078824,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661535,2661536,73.0,1078825,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661536,2661537,74.0,1078826,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661537,2661538,87.0,1078827,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661538,2661539,79.0,1078828,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661539,2661540,68.0,1078829,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661540,2661541,94.0,1078830,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661541,2661542,94.0,1078831,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661542,2661543,73.0,1078832,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661543,2661544,77.0,1078833,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661544,2661545,69.0,1078834,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22651.0,2102.0 +2661545,2661546,66.0,1078835,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661546,2661547,45.0,1078836,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22654.0,2102.0 +2661547,2661548,21.0,1078836,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22654.0,2102.0 +2661548,2661549,45.0,1078837,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22646.0,2101.0 +2661549,2661550,21.0,1078837,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22646.0,2101.0 +2661550,2661551,45.0,1078838,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22639.0,2101.0 +2661551,2661552,45.0,1078839,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22639.0,2101.0 +2661552,2661553,45.0,1078840,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22654.0,2102.0 +2661553,2661554,45.0,1078841,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22643.0,2101.0 +2661554,2661555,64.0,1078842,1,2,0,2,1.0,30.0,1.0,-9.0,4.0,6216,14.0,22647.0,2101.0 +2661555,2661556,46.0,1078843,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22654.0,2102.0 +2661556,2661557,46.0,1078844,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22646.0,2101.0 +2661557,2661558,55.0,1078845,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661558,2661559,53.0,1078845,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661559,2661560,20.0,1078845,3,2,2,2,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22654.0,2102.0 +2661560,2661561,18.0,1078845,4,1,2,2,1.0,7.0,6.0,14.0,4.0,722Z,16.0,22654.0,2102.0 +2661561,2661562,47.0,1078846,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22645.0,2101.0 +2661562,2661563,12.0,1078846,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22645.0,2101.0 +2661563,2661564,47.0,1078847,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661564,2661565,12.0,1078847,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22640.0,2101.0 +2661565,2661566,47.0,1078848,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661566,2661567,12.0,1078848,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22651.0,2102.0 +2661567,2661568,47.0,1078849,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661568,2661569,12.0,1078849,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22654.0,2102.0 +2661569,2661570,52.0,1078850,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22644.0,2101.0 +2661570,2661571,50.0,1078850,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22644.0,2101.0 +2661571,2661572,22.0,1078850,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22644.0,2101.0 +2661572,2661573,52.0,1078851,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22647.0,2101.0 +2661573,2661574,50.0,1078851,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22647.0,2101.0 +2661574,2661575,22.0,1078851,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22647.0,2101.0 +2661575,2661576,52.0,1078852,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22640.0,2101.0 +2661576,2661577,50.0,1078852,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22640.0,2101.0 +2661577,2661578,22.0,1078852,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22640.0,2101.0 +2661578,2661579,52.0,1078853,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22643.0,2101.0 +2661579,2661580,50.0,1078853,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22643.0,2101.0 +2661580,2661581,22.0,1078853,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22643.0,2101.0 +2661581,2661582,52.0,1078854,1,2,0,1,1.0,60.0,1.0,-9.0,4.0,454110,5.0,22654.0,2102.0 +2661582,2661583,60.0,1078854,2,1,1,1,1.0,25.0,3.0,-9.0,4.0,4411,5.0,22654.0,2102.0 +2661583,2661584,63.0,1078855,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22639.0,2101.0 +2661584,2661585,51.0,1078856,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4411,5.0,22640.0,2101.0 +2661585,2661586,54.0,1078857,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661586,2661587,47.0,1078857,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22654.0,2102.0 +2661587,2661588,20.0,1078857,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22654.0,2102.0 +2661588,2661589,54.0,1078858,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661589,2661590,47.0,1078858,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22643.0,2101.0 +2661590,2661591,20.0,1078858,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22643.0,2101.0 +2661591,2661592,54.0,1078859,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661592,2661593,47.0,1078859,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22643.0,2101.0 +2661593,2661594,20.0,1078859,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22643.0,2101.0 +2661594,2661595,54.0,1078860,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661595,2661596,47.0,1078860,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22654.0,2102.0 +2661596,2661597,20.0,1078860,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22654.0,2102.0 +2661597,2661598,54.0,1078861,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22647.0,2101.0 +2661598,2661599,47.0,1078861,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22647.0,2101.0 +2661599,2661600,20.0,1078861,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22647.0,2101.0 +2661600,2661601,54.0,1078862,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22639.0,2101.0 +2661601,2661602,53.0,1078862,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22639.0,2101.0 +2661602,2661603,54.0,1078863,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22640.0,2101.0 +2661603,2661604,53.0,1078863,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22640.0,2101.0 +2661604,2661605,54.0,1078864,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22639.0,2101.0 +2661605,2661606,53.0,1078864,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22639.0,2101.0 +2661606,2661607,54.0,1078865,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22645.0,2101.0 +2661607,2661608,53.0,1078865,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22645.0,2101.0 +2661608,2661609,54.0,1078866,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22639.0,2101.0 +2661609,2661610,53.0,1078866,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22639.0,2101.0 +2661610,2661611,54.0,1078867,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22648.0,2101.0 +2661611,2661612,53.0,1078867,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22648.0,2101.0 +2661612,2661613,54.0,1078868,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22654.0,2102.0 +2661613,2661614,53.0,1078868,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22654.0,2102.0 +2661614,2661615,54.0,1078869,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22644.0,2101.0 +2661615,2661616,53.0,1078869,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22644.0,2101.0 +2661616,2661617,54.0,1078870,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22648.0,2101.0 +2661617,2661618,53.0,1078870,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22648.0,2101.0 +2661618,2661619,54.0,1078871,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22654.0,2102.0 +2661619,2661620,53.0,1078871,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22654.0,2102.0 +2661620,2661621,54.0,1078872,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22648.0,2101.0 +2661621,2661622,53.0,1078872,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22648.0,2101.0 +2661622,2661623,54.0,1078873,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22639.0,2101.0 +2661623,2661624,53.0,1078873,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22639.0,2101.0 +2661624,2661625,54.0,1078874,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22654.0,2102.0 +2661625,2661626,53.0,1078874,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22654.0,2102.0 +2661626,2661627,54.0,1078875,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22639.0,2101.0 +2661627,2661628,53.0,1078875,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22639.0,2101.0 +2661628,2661629,54.0,1078876,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22654.0,2102.0 +2661629,2661630,53.0,1078876,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22654.0,2102.0 +2661630,2661631,47.0,1078877,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22651.0,2102.0 +2661631,2661632,53.0,1078877,2,1,1,1,1.0,40.0,1.0,-9.0,2.0,53M,9.0,22651.0,2102.0 +2661632,2661633,62.0,1078878,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22654.0,2102.0 +2661633,2661634,34.0,1078878,2,1,2,1,3.0,20.0,4.0,-9.0,4.0,5415,10.0,22654.0,2102.0 +2661634,2661635,62.0,1078879,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22646.0,2101.0 +2661635,2661636,34.0,1078879,2,1,2,1,3.0,20.0,4.0,-9.0,4.0,5415,10.0,22646.0,2101.0 +2661636,2661637,56.0,1078880,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4244,4.0,22654.0,2102.0 +2661637,2661638,60.0,1078880,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661638,2661639,56.0,1078881,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4244,4.0,22648.0,2101.0 +2661639,2661640,60.0,1078881,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661640,2661641,63.0,1078882,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661641,2661642,66.0,1078882,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661642,2661643,63.0,1078883,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661643,2661644,66.0,1078883,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661644,2661645,63.0,1078884,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22645.0,2101.0 +2661645,2661646,66.0,1078884,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22645.0,2101.0 +2661646,2661647,63.0,1078885,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661647,2661648,66.0,1078885,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661648,2661649,63.0,1078886,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22644.0,2101.0 +2661649,2661650,66.0,1078886,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22644.0,2101.0 +2661650,2661651,62.0,1078887,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661651,2661652,61.0,1078887,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22648.0,2101.0 +2661652,2661653,55.0,1078888,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,8111Z,17.0,22639.0,2101.0 +2661653,2661654,55.0,1078889,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,8111Z,17.0,22648.0,2101.0 +2661654,2661655,62.0,1078890,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,713Z,16.0,22643.0,2101.0 +2661655,2661656,53.0,1078891,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22645.0,2101.0 +2661656,2661657,53.0,1078892,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22644.0,2101.0 +2661657,2661658,48.0,1078893,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22645.0,2101.0 +2661658,2661659,48.0,1078894,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22647.0,2101.0 +2661659,2661660,48.0,1078895,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,8131,17.0,22646.0,2101.0 +2661660,2661661,54.0,1078896,1,1,0,1,1.0,45.0,1.0,-9.0,2.0,5417,10.0,22654.0,2102.0 +2661661,2661662,54.0,1078897,1,1,0,1,1.0,45.0,1.0,-9.0,2.0,5417,10.0,22654.0,2102.0 +2661662,2661663,45.0,1078898,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22646.0,2101.0 +2661663,2661664,58.0,1078899,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,44512,5.0,22648.0,2101.0 +2661664,2661665,34.0,1078899,2,2,1,1,1.0,44.0,1.0,-9.0,4.0,44511,5.0,22648.0,2101.0 +2661665,2661666,58.0,1078900,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,44512,5.0,22646.0,2101.0 +2661666,2661667,34.0,1078900,2,2,1,1,1.0,44.0,1.0,-9.0,4.0,44511,5.0,22646.0,2101.0 +2661667,2661668,58.0,1078901,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,44512,5.0,22648.0,2101.0 +2661668,2661669,34.0,1078901,2,2,1,1,1.0,44.0,1.0,-9.0,4.0,44511,5.0,22648.0,2101.0 +2661669,2661670,45.0,1078902,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22640.0,2101.0 +2661670,2661671,21.0,1078902,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22640.0,2101.0 +2661671,2661672,63.0,1078903,1,1,0,1,1.0,20.0,5.0,-9.0,4.0,56173,12.0,22639.0,2101.0 +2661672,2661673,65.0,1078903,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661673,2661674,60.0,1078904,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22643.0,2101.0 +2661674,2661675,59.0,1078904,2,2,1,1,1.0,6.0,1.0,-9.0,4.0,8131,17.0,22643.0,2101.0 +2661675,2661676,60.0,1078905,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22643.0,2101.0 +2661676,2661677,59.0,1078905,2,2,1,1,1.0,6.0,1.0,-9.0,4.0,8131,17.0,22643.0,2101.0 +2661677,2661678,59.0,1078906,1,1,0,1,6.0,1.0,6.0,-9.0,4.0,5413,10.0,22647.0,2101.0 +2661678,2661679,58.0,1078906,2,2,1,1,1.0,40.0,5.0,-9.0,4.0,5613,12.0,22647.0,2101.0 +2661679,2661680,48.0,1078907,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4244,4.0,22640.0,2101.0 +2661680,2661681,55.0,1078907,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661681,2661682,45.0,1078908,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22640.0,2101.0 +2661682,2661683,45.0,1078909,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22643.0,2101.0 +2661683,2661684,45.0,1078910,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22647.0,2101.0 +2661684,2661685,45.0,1078911,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22646.0,2101.0 +2661685,2661686,45.0,1078912,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22646.0,2101.0 +2661686,2661687,45.0,1078913,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22643.0,2101.0 +2661687,2661688,45.0,1078914,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22640.0,2101.0 +2661688,2661689,45.0,1078915,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22644.0,2101.0 +2661689,2661690,45.0,1078916,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22648.0,2101.0 +2661690,2661691,45.0,1078917,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22644.0,2101.0 +2661691,2661692,45.0,1078918,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22645.0,2101.0 +2661692,2661693,45.0,1078919,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22645.0,2101.0 +2661693,2661694,45.0,1078920,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22654.0,2102.0 +2661694,2661695,45.0,1078921,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22654.0,2102.0 +2661695,2661696,45.0,1078922,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22645.0,2101.0 +2661696,2661697,45.0,1078923,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22639.0,2101.0 +2661697,2661698,45.0,1078924,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22647.0,2101.0 +2661698,2661699,45.0,1078925,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22643.0,2101.0 +2661699,2661700,45.0,1078926,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22654.0,2102.0 +2661700,2661701,54.0,1078927,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,6214,14.0,22640.0,2101.0 +2661701,2661702,56.0,1078928,1,2,0,1,1.0,15.0,1.0,-9.0,4.0,45113,5.0,22644.0,2101.0 +2661702,2661703,56.0,1078929,1,2,0,1,1.0,15.0,1.0,-9.0,4.0,45113,5.0,22648.0,2101.0 +2661703,2661704,56.0,1078930,1,2,0,1,1.0,15.0,1.0,-9.0,4.0,45113,5.0,22639.0,2101.0 +2661704,2661705,50.0,1078931,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22643.0,2101.0 +2661705,2661706,50.0,1078932,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22644.0,2101.0 +2661706,2661707,50.0,1078933,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22640.0,2101.0 +2661707,2661708,50.0,1078934,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22654.0,2102.0 +2661708,2661709,50.0,1078935,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22643.0,2101.0 +2661709,2661710,50.0,1078936,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22643.0,2101.0 +2661710,2661711,62.0,1078937,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22645.0,2101.0 +2661711,2661712,62.0,1078938,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22645.0,2101.0 +2661712,2661713,62.0,1078939,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661713,2661714,62.0,1078940,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661714,2661715,62.0,1078941,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661715,2661716,62.0,1078942,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661716,2661717,62.0,1078943,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661717,2661718,64.0,1078944,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22644.0,2101.0 +2661718,2661719,62.0,1078945,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661719,2661720,61.0,1078946,1,2,0,1,1.0,14.0,1.0,-9.0,4.0,5617Z,12.0,22646.0,2101.0 +2661720,2661721,61.0,1078947,1,2,0,1,1.0,14.0,1.0,-9.0,4.0,5617Z,12.0,22646.0,2101.0 +2661721,2661722,61.0,1078948,1,2,0,1,1.0,14.0,1.0,-9.0,4.0,5617Z,12.0,22648.0,2101.0 +2661722,2661723,56.0,1078949,1,2,0,1,1.0,40.0,3.0,-9.0,4.0,4523,5.0,22654.0,2102.0 +2661723,2661724,60.0,1078950,1,1,0,1,1.0,38.0,2.0,-9.0,4.0,4523,5.0,22648.0,2101.0 +2661724,2661725,52.0,1078951,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22640.0,2101.0 +2661725,2661726,52.0,1078952,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22646.0,2101.0 +2661726,2661727,52.0,1078953,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22645.0,2101.0 +2661727,2661728,63.0,1078954,1,2,0,1,1.0,34.0,1.0,-9.0,4.0,6211,14.0,22639.0,2101.0 +2661728,2661729,59.0,1078955,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4441Z,5.0,22640.0,2101.0 +2661729,2661730,58.0,1078956,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4441Z,5.0,22646.0,2101.0 +2661730,2661731,58.0,1078957,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4441Z,5.0,22648.0,2101.0 +2661731,2661732,58.0,1078958,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4441Z,5.0,22648.0,2101.0 +2661732,2661733,46.0,1078959,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,712,16.0,22643.0,2101.0 +2661733,2661734,50.0,1078960,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22643.0,2101.0 +2661734,2661735,62.0,1078961,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3219ZM,3.0,22654.0,2102.0 +2661735,2661736,58.0,1078962,1,1,0,1,1.0,55.0,1.0,-9.0,4.0,111,1.0,22654.0,2102.0 +2661736,2661737,58.0,1078963,1,1,0,1,1.0,55.0,1.0,-9.0,4.0,111,1.0,22639.0,2101.0 +2661737,2661738,58.0,1078964,1,1,0,1,1.0,55.0,1.0,-9.0,4.0,111,1.0,22654.0,2102.0 +2661738,2661739,58.0,1078965,1,1,0,1,1.0,55.0,1.0,-9.0,4.0,111,1.0,22648.0,2101.0 +2661739,2661740,58.0,1078966,1,1,0,1,1.0,55.0,1.0,-9.0,4.0,111,1.0,22640.0,2101.0 +2661740,2661741,61.0,1078967,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661741,2661742,68.0,1078967,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661742,2661743,63.0,1078968,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22644.0,2101.0 +2661743,2661744,63.0,1078969,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661744,2661745,45.0,1078970,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661745,2661746,45.0,1078971,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661746,2661747,45.0,1078972,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22647.0,2101.0 +2661747,2661748,45.0,1078973,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661748,2661749,62.0,1078974,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661749,2661750,63.0,1078975,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22648.0,2101.0 +2661750,2661751,63.0,1078976,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22639.0,2101.0 +2661751,2661752,49.0,1078977,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22643.0,2101.0 +2661752,2661753,64.0,1078978,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,335M,3.0,22646.0,2101.0 +2661753,2661754,64.0,1078979,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,335M,3.0,22639.0,2101.0 +2661754,2661755,52.0,1078980,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22648.0,2101.0 +2661755,2661756,52.0,1078981,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22643.0,2101.0 +2661756,2661757,56.0,1078982,1,2,0,1,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22654.0,2102.0 +2661757,2661758,56.0,1078983,1,2,0,1,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22648.0,2101.0 +2661758,2661759,64.0,1078984,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22639.0,2101.0 +2661759,2661760,58.0,1078985,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,3219ZM,3.0,22639.0,2101.0 +2661760,2661761,58.0,1078986,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,3219ZM,3.0,22639.0,2101.0 +2661761,2661762,59.0,1078987,1,1,0,1,1.0,25.0,1.0,-9.0,4.0,7211,16.0,22644.0,2101.0 +2661762,2661763,49.0,1078988,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22645.0,2101.0 +2661763,2661764,49.0,1078989,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22646.0,2101.0 +2661764,2661765,49.0,1078990,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22639.0,2101.0 +2661765,2661766,55.0,1078991,1,1,0,1,1.0,54.0,1.0,-9.0,4.0,32711,3.0,22648.0,2101.0 +2661766,2661767,57.0,1078992,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22646.0,2101.0 +2661767,2661768,61.0,1078993,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,8131,17.0,22654.0,2102.0 +2661768,2661769,61.0,1078994,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,8131,17.0,22654.0,2102.0 +2661769,2661770,55.0,1078995,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8129,17.0,22645.0,2101.0 +2661770,2661771,57.0,1078996,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22643.0,2101.0 +2661771,2661772,55.0,1078997,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8129,17.0,22639.0,2101.0 +2661772,2661773,55.0,1078998,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8129,17.0,22647.0,2101.0 +2661773,2661774,61.0,1078999,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,8131,17.0,22639.0,2101.0 +2661774,2661775,48.0,1079000,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22647.0,2101.0 +2661775,2661776,48.0,1079001,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22654.0,2102.0 +2661776,2661777,59.0,1079002,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,44511,5.0,22646.0,2101.0 +2661777,2661778,56.0,1079003,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22645.0,2101.0 +2661778,2661779,59.0,1079004,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,3328,3.0,22647.0,2101.0 +2661779,2661780,53.0,1079005,1,1,0,1,1.0,35.0,1.0,-9.0,4.0,5617Z,12.0,22654.0,2102.0 +2661780,2661781,50.0,1079006,1,1,0,1,2.0,20.0,4.0,-9.0,4.0,531M,9.0,22646.0,2101.0 +2661781,2661782,51.0,1079007,1,1,0,1,1.0,36.0,1.0,-9.0,2.0,531M,9.0,22639.0,2101.0 +2661782,2661783,51.0,1079008,1,1,0,1,1.0,36.0,1.0,-9.0,2.0,531M,9.0,22646.0,2101.0 +2661783,2661784,51.0,1079009,1,1,0,1,1.0,36.0,1.0,-9.0,2.0,531M,9.0,22639.0,2101.0 +2661784,2661785,51.0,1079010,1,1,0,1,1.0,36.0,1.0,-9.0,2.0,531M,9.0,22648.0,2101.0 +2661785,2661786,51.0,1079011,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,3221,3.0,22646.0,2101.0 +2661786,2661787,51.0,1079012,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,3221,3.0,22648.0,2101.0 +2661787,2661788,61.0,1079013,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661788,2661789,62.0,1079014,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22654.0,2102.0 +2661789,2661790,61.0,1079015,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661790,2661791,61.0,1079016,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661791,2661792,62.0,1079017,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661792,2661793,60.0,1079018,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661793,2661794,59.0,1079019,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22647.0,2101.0 +2661794,2661795,61.0,1079020,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661795,2661796,62.0,1079021,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661796,2661797,57.0,1079022,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22654.0,2102.0 +2661797,2661798,62.0,1079023,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661798,2661799,57.0,1079024,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22640.0,2101.0 +2661799,2661800,49.0,1079025,1,1,0,1,1.0,55.0,1.0,-9.0,4.0,336M,3.0,22648.0,2101.0 +2661800,2661801,48.0,1079025,2,2,1,2,2.0,60.0,1.0,-9.0,4.0,336M,3.0,22648.0,2101.0 +2661801,2661802,12.0,1079025,3,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22648.0,2101.0 +2661802,2661803,49.0,1079026,1,1,0,1,1.0,55.0,1.0,-9.0,4.0,336M,3.0,22640.0,2101.0 +2661803,2661804,48.0,1079026,2,2,1,2,2.0,60.0,1.0,-9.0,4.0,336M,3.0,22640.0,2101.0 +2661804,2661805,12.0,1079026,3,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22640.0,2101.0 +2661805,2661806,51.0,1079027,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5617Z,12.0,22645.0,2101.0 +2661806,2661807,47.0,1079027,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,5617Z,12.0,22645.0,2101.0 +2661807,2661808,17.0,1079027,3,2,2,1,1.0,9.0,6.0,13.0,4.0,5617Z,12.0,22645.0,2101.0 +2661808,2661809,13.0,1079027,4,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22645.0,2101.0 +2661809,2661810,51.0,1079028,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5617Z,12.0,22648.0,2101.0 +2661810,2661811,47.0,1079028,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,5617Z,12.0,22648.0,2101.0 +2661811,2661812,17.0,1079028,3,2,2,1,1.0,9.0,6.0,13.0,4.0,5617Z,12.0,22648.0,2101.0 +2661812,2661813,13.0,1079028,4,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22648.0,2101.0 +2661813,2661814,51.0,1079029,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5617Z,12.0,22640.0,2101.0 +2661814,2661815,47.0,1079029,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,5617Z,12.0,22640.0,2101.0 +2661815,2661816,17.0,1079029,3,2,2,1,1.0,9.0,6.0,13.0,4.0,5617Z,12.0,22640.0,2101.0 +2661816,2661817,13.0,1079029,4,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22640.0,2101.0 +2661817,2661818,51.0,1079030,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5617Z,12.0,22639.0,2101.0 +2661818,2661819,47.0,1079030,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,5617Z,12.0,22639.0,2101.0 +2661819,2661820,17.0,1079030,3,2,2,1,1.0,9.0,6.0,13.0,4.0,5617Z,12.0,22639.0,2101.0 +2661820,2661821,13.0,1079030,4,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22639.0,2101.0 +2661821,2661822,51.0,1079031,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5617Z,12.0,22645.0,2101.0 +2661822,2661823,47.0,1079031,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,5617Z,12.0,22645.0,2101.0 +2661823,2661824,17.0,1079031,3,2,2,1,1.0,9.0,6.0,13.0,4.0,5617Z,12.0,22645.0,2101.0 +2661824,2661825,13.0,1079031,4,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22645.0,2101.0 +2661825,2661826,51.0,1079032,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5617Z,12.0,22643.0,2101.0 +2661826,2661827,47.0,1079032,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,5617Z,12.0,22643.0,2101.0 +2661827,2661828,17.0,1079032,3,2,2,1,1.0,9.0,6.0,13.0,4.0,5617Z,12.0,22643.0,2101.0 +2661828,2661829,13.0,1079032,4,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22643.0,2101.0 +2661829,2661830,45.0,1079033,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,6111,13.0,22648.0,2101.0 +2661830,2661831,46.0,1079033,2,2,1,1,1.0,40.0,3.0,-9.0,4.0,6111,13.0,22648.0,2101.0 +2661831,2661832,8.0,1079033,3,1,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22648.0,2101.0 +2661832,2661833,27.0,1079034,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22646.0,2101.0 +2661833,2661834,27.0,1079035,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22640.0,2101.0 +2661834,2661835,27.0,1079036,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22654.0,2102.0 +2661835,2661836,27.0,1079037,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22645.0,2101.0 +2661836,2661837,27.0,1079038,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22648.0,2101.0 +2661837,2661838,27.0,1079039,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22646.0,2101.0 +2661838,2661839,27.0,1079040,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22648.0,2101.0 +2661839,2661840,27.0,1079041,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22640.0,2101.0 +2661840,2661841,44.0,1079042,1,2,0,2,1.0,50.0,1.0,-9.0,4.0,813M,17.0,22647.0,2101.0 +2661841,2661842,8.0,1079042,2,1,2,2,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22647.0,2101.0 +2661842,2661843,36.0,1079043,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,6216,14.0,22639.0,2101.0 +2661843,2661844,12.0,1079043,2,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22639.0,2101.0 +2661844,2661845,36.0,1079044,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,6216,14.0,22645.0,2101.0 +2661845,2661846,12.0,1079044,2,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22645.0,2101.0 +2661846,2661847,40.0,1079045,1,1,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22643.0,2101.0 +2661847,2661848,35.0,1079045,2,2,13,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22643.0,2101.0 +2661848,2661849,40.0,1079046,1,1,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22640.0,2101.0 +2661849,2661850,35.0,1079046,2,2,13,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22640.0,2101.0 +2661850,2661851,35.0,1079047,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22646.0,2101.0 +2661851,2661852,29.0,1079047,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22646.0,2101.0 +2661852,2661853,35.0,1079048,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22648.0,2101.0 +2661853,2661854,29.0,1079048,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22648.0,2101.0 +2661854,2661855,35.0,1079049,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22640.0,2101.0 +2661855,2661856,29.0,1079049,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22640.0,2101.0 +2661856,2661857,35.0,1079050,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22654.0,2102.0 +2661857,2661858,29.0,1079050,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22654.0,2102.0 +2661858,2661859,35.0,1079051,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22639.0,2101.0 +2661859,2661860,29.0,1079051,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22639.0,2101.0 +2661860,2661861,35.0,1079052,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22645.0,2101.0 +2661861,2661862,29.0,1079052,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22645.0,2101.0 +2661862,2661863,35.0,1079053,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22648.0,2101.0 +2661863,2661864,29.0,1079053,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,44512,5.0,22648.0,2101.0 +2661864,2661865,28.0,1079054,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22648.0,2101.0 +2661865,2661866,24.0,1079054,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22648.0,2101.0 +2661866,2661867,28.0,1079055,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22648.0,2101.0 +2661867,2661868,24.0,1079055,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22648.0,2101.0 +2661868,2661869,28.0,1079056,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22639.0,2101.0 +2661869,2661870,24.0,1079056,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22639.0,2101.0 +2661870,2661871,28.0,1079057,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22646.0,2101.0 +2661871,2661872,24.0,1079057,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22646.0,2101.0 +2661872,2661873,28.0,1079058,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22640.0,2101.0 +2661873,2661874,24.0,1079058,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22640.0,2101.0 +2661874,2661875,28.0,1079059,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22647.0,2101.0 +2661875,2661876,24.0,1079059,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22647.0,2101.0 +2661876,2661877,28.0,1079060,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22647.0,2101.0 +2661877,2661878,24.0,1079060,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22647.0,2101.0 +2661878,2661879,28.0,1079061,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22643.0,2101.0 +2661879,2661880,24.0,1079061,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22643.0,2101.0 +2661880,2661881,28.0,1079062,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22647.0,2101.0 +2661881,2661882,24.0,1079062,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22647.0,2101.0 +2661882,2661883,28.0,1079063,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22643.0,2101.0 +2661883,2661884,24.0,1079063,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22643.0,2101.0 +2661884,2661885,28.0,1079064,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22639.0,2101.0 +2661885,2661886,24.0,1079064,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22639.0,2101.0 +2661886,2661887,28.0,1079065,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22640.0,2101.0 +2661887,2661888,24.0,1079065,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22640.0,2101.0 +2661888,2661889,28.0,1079066,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22645.0,2101.0 +2661889,2661890,24.0,1079066,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22645.0,2101.0 +2661890,2661891,28.0,1079067,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22644.0,2101.0 +2661891,2661892,24.0,1079067,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22644.0,2101.0 +2661892,2661893,43.0,1079068,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22645.0,2101.0 +2661893,2661894,28.0,1079069,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5417,10.0,22648.0,2101.0 +2661894,2661895,35.0,1079069,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22648.0,2101.0 +2661895,2661896,28.0,1079070,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5417,10.0,22643.0,2101.0 +2661896,2661897,35.0,1079070,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22643.0,2101.0 +2661897,2661898,28.0,1079071,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,5417,10.0,22646.0,2101.0 +2661898,2661899,35.0,1079071,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22646.0,2101.0 +2661899,2661900,43.0,1079072,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,713Z,16.0,22654.0,2102.0 +2661900,2661901,31.0,1079073,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22648.0,2101.0 +2661901,2661902,27.0,1079074,1,1,0,1,1.0,40.0,1.0,16.0,4.0,336M,3.0,22639.0,2101.0 +2661902,2661903,33.0,1079075,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22647.0,2101.0 +2661903,2661904,27.0,1079076,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,336M,3.0,22654.0,2102.0 +2661904,2661905,40.0,1079077,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,336M,3.0,22643.0,2101.0 +2661905,2661906,33.0,1079078,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,722Z,16.0,22645.0,2101.0 +2661906,2661907,26.0,1079078,2,2,12,1,1.0,35.0,2.0,-9.0,4.0,722Z,16.0,22645.0,2101.0 +2661907,2661908,38.0,1079079,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22645.0,2101.0 +2661908,2661909,44.0,1079080,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22648.0,2101.0 +2661909,2661910,44.0,1079081,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22640.0,2101.0 +2661910,2661911,44.0,1079082,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22643.0,2101.0 +2661911,2661912,44.0,1079083,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22644.0,2101.0 +2661912,2661913,44.0,1079084,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22654.0,2102.0 +2661913,2661914,44.0,1079085,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22654.0,2102.0 +2661914,2661915,44.0,1079086,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22640.0,2101.0 +2661915,2661916,44.0,1079087,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22648.0,2101.0 +2661916,2661917,44.0,1079088,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22646.0,2101.0 +2661917,2661918,44.0,1079089,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22647.0,2101.0 +2661918,2661919,44.0,1079090,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5616,12.0,22643.0,2101.0 +2661919,2661920,29.0,1079091,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22648.0,2101.0 +2661920,2661921,29.0,1079092,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22644.0,2101.0 +2661921,2661922,31.0,1079093,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7211,16.0,22648.0,2101.0 +2661922,2661923,31.0,1079094,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7211,16.0,22639.0,2101.0 +2661923,2661924,26.0,1079095,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22640.0,2101.0 +2661924,2661925,26.0,1079096,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22654.0,2102.0 +2661925,2661926,26.0,1079097,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22645.0,2101.0 +2661926,2661927,29.0,1079098,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22654.0,2102.0 +2661927,2661928,29.0,1079099,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22648.0,2101.0 +2661928,2661929,26.0,1079100,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22647.0,2101.0 +2661929,2661930,25.0,1079101,1,1,0,1,1.0,40.0,1.0,16.0,4.0,5241,9.0,22643.0,2101.0 +2661930,2661931,39.0,1079102,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22644.0,2101.0 +2661931,2661932,33.0,1079103,1,1,0,1,1.0,38.0,1.0,-9.0,4.0,111,1.0,22639.0,2101.0 +2661932,2661933,33.0,1079104,1,1,0,1,1.0,38.0,1.0,-9.0,4.0,111,1.0,22646.0,2101.0 +2661933,2661934,33.0,1079105,1,1,0,1,1.0,38.0,1.0,-9.0,4.0,111,1.0,22647.0,2101.0 +2661934,2661935,33.0,1079106,1,1,0,1,1.0,38.0,1.0,-9.0,4.0,111,1.0,22654.0,2102.0 +2661935,2661936,28.0,1079107,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22646.0,2101.0 +2661936,2661937,28.0,1079108,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22644.0,2101.0 +2661937,2661938,30.0,1079109,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22654.0,2102.0 +2661938,2661939,37.0,1079110,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22639.0,2101.0 +2661939,2661940,28.0,1079111,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22643.0,2101.0 +2661940,2661941,37.0,1079112,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22654.0,2102.0 +2661941,2661942,29.0,1079113,1,1,0,1,1.0,40.0,3.0,-9.0,2.0,622M,15.0,22648.0,2101.0 +2661942,2661943,35.0,1079114,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22648.0,2101.0 +2661943,2661944,35.0,1079115,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22654.0,2102.0 +2661944,2661945,26.0,1079116,1,2,0,1,2.0,24.0,3.0,-9.0,4.0,4523,5.0,22643.0,2101.0 +2661945,2661946,35.0,1079117,1,2,0,1,1.0,35.0,2.0,-9.0,4.0,3121,3.0,22640.0,2101.0 +2661946,2661947,35.0,1079118,1,2,0,1,1.0,35.0,2.0,-9.0,4.0,3121,3.0,22647.0,2101.0 +2661947,2661948,35.0,1079119,1,2,0,1,1.0,35.0,2.0,-9.0,4.0,3121,3.0,22640.0,2101.0 +2661948,2661949,35.0,1079120,1,2,0,1,1.0,35.0,2.0,-9.0,4.0,3121,3.0,22646.0,2101.0 +2661949,2661950,32.0,1079121,1,1,0,1,1.0,47.0,1.0,-9.0,4.0,3115,3.0,22654.0,2102.0 +2661950,2661951,42.0,1079122,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,44511,5.0,22648.0,2101.0 +2661951,2661952,44.0,1079123,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,52M2,9.0,22648.0,2101.0 +2661952,2661953,43.0,1079123,2,2,1,1,1.0,10.0,5.0,-9.0,4.0,52M2,9.0,22648.0,2101.0 +2661953,2661954,6.0,1079123,3,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22648.0,2101.0 +2661954,2661955,42.0,1079124,1,1,0,1,1.0,45.0,2.0,-9.0,4.0,56173,12.0,22648.0,2101.0 +2661955,2661956,10.0,1079124,2,2,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22648.0,2101.0 +2661956,2661957,8.0,1079124,3,1,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22648.0,2101.0 +2661957,2661958,35.0,1079124,4,2,13,1,1.0,43.0,1.0,-9.0,4.0,5415,10.0,22648.0,2101.0 +2661958,2661959,32.0,1079125,1,2,0,1,1.0,20.0,5.0,16.0,4.0,611M1,13.0,22648.0,2101.0 +2661959,2661960,32.0,1079125,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,6242,14.0,22648.0,2101.0 +2661960,2661961,2.0,1079125,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22648.0,2101.0 +2661961,2661962,44.0,1079126,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,8111Z,17.0,22640.0,2101.0 +2661962,2661963,31.0,1079126,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22640.0,2101.0 +2661963,2661964,4.0,1079126,3,1,2,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22640.0,2101.0 +2661964,2661965,2.0,1079126,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22640.0,2101.0 +2661965,2661966,44.0,1079127,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,8111Z,17.0,22643.0,2101.0 +2661966,2661967,31.0,1079127,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661967,2661968,4.0,1079127,3,1,2,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22643.0,2101.0 +2661968,2661969,2.0,1079127,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22643.0,2101.0 +2661969,2661970,41.0,1079128,1,2,0,1,1.0,46.0,1.0,-9.0,4.0,336M,3.0,22643.0,2101.0 +2661970,2661971,16.0,1079128,2,1,2,1,6.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22643.0,2101.0 +2661971,2661972,35.0,1079129,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22648.0,2101.0 +2661972,2661973,16.0,1079129,2,2,2,1,1.0,15.0,6.0,12.0,-9.0,44511,5.0,22648.0,2101.0 +2661973,2661974,35.0,1079130,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22654.0,2102.0 +2661974,2661975,16.0,1079130,2,2,2,1,1.0,15.0,6.0,12.0,-9.0,44511,5.0,22654.0,2102.0 +2661975,2661976,35.0,1079131,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22639.0,2101.0 +2661976,2661977,16.0,1079131,2,2,2,1,1.0,15.0,6.0,12.0,-9.0,44511,5.0,22639.0,2101.0 +2661977,2661978,35.0,1079132,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22640.0,2101.0 +2661978,2661979,16.0,1079132,2,2,2,1,1.0,15.0,6.0,12.0,-9.0,44511,5.0,22640.0,2101.0 +2661979,2661980,35.0,1079133,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22639.0,2101.0 +2661980,2661981,16.0,1079133,2,2,2,1,1.0,15.0,6.0,12.0,-9.0,44511,5.0,22639.0,2101.0 +2661981,2661982,40.0,1079134,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,336M,3.0,22646.0,2101.0 +2661982,2661983,36.0,1079134,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22646.0,2101.0 +2661983,2661984,6.0,1079134,3,1,2,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22646.0,2101.0 +2661984,2661985,4.0,1079134,4,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22646.0,2101.0 +2661985,2661986,41.0,1079135,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22643.0,2101.0 +2661986,2661987,31.0,1079135,2,2,1,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22643.0,2101.0 +2661987,2661988,6.0,1079135,3,2,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22643.0,2101.0 +2661988,2661989,2.0,1079135,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22643.0,2101.0 +2661989,2661990,28.0,1079136,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22648.0,2101.0 +2661990,2661991,0.0,1079136,2,1,15,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22648.0,2101.0 +2661991,2661992,28.0,1079137,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661992,2661993,0.0,1079137,2,1,15,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22639.0,2101.0 +2661993,2661994,28.0,1079138,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22639.0,2101.0 +2661994,2661995,0.0,1079138,2,1,15,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22639.0,2101.0 +2661995,2661996,28.0,1079139,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2661996,2661997,0.0,1079139,2,1,15,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22643.0,2101.0 +2661997,2661998,37.0,1079140,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22646.0,2101.0 +2661998,2661999,6.0,1079140,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22646.0,2101.0 +2661999,2662000,37.0,1079141,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,8121M,17.0,22640.0,2101.0 +2662000,2662001,6.0,1079141,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22640.0,2101.0 +2662001,2662002,36.0,1079142,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4441Z,5.0,22639.0,2101.0 +2662002,2662003,7.0,1079142,2,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22639.0,2101.0 +2662003,2662004,36.0,1079143,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4441Z,5.0,22643.0,2101.0 +2662004,2662005,7.0,1079143,2,2,2,1,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22643.0,2101.0 +2662005,2662006,44.0,1079144,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22645.0,2101.0 +2662006,2662007,14.0,1079144,2,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22645.0,2101.0 +2662007,2662008,9.0,1079144,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22645.0,2101.0 +2662008,2662009,4.0,1079144,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22645.0,2101.0 +2662009,2662010,42.0,1079145,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22643.0,2101.0 +2662010,2662011,15.0,1079145,2,1,15,1,-9.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22643.0,2101.0 +2662011,2662012,13.0,1079145,3,1,15,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22643.0,2101.0 +2664682,2664683,65.0,1080348,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664683,2664684,78.0,1080349,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664684,2664685,90.0,1080350,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22665.0,2103.0 +2664685,2664686,86.0,1080350,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664686,2664687,56.0,1080350,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22665.0,2103.0 +2664687,2664688,67.0,1080351,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2664688,2664689,71.0,1080351,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2664689,2664690,69.0,1080352,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664690,2664691,71.0,1080352,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664691,2664692,65.0,1080353,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5241,9.0,22665.0,2103.0 +2664692,2664693,74.0,1080354,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664693,2664694,73.0,1080355,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22666.0,2103.0 +2664694,2664695,85.0,1080355,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22666.0,2103.0 +2664695,2664696,73.0,1080356,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664696,2664697,85.0,1080356,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664697,2664698,73.0,1080357,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664698,2664699,85.0,1080357,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664699,2664700,74.0,1080358,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22665.0,2103.0 +2664700,2664701,76.0,1080358,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664701,2664702,74.0,1080359,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22665.0,2103.0 +2664702,2664703,76.0,1080359,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664703,2664704,74.0,1080360,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22665.0,2103.0 +2664704,2664705,76.0,1080360,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664705,2664706,74.0,1080361,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22662.0,2103.0 +2664706,2664707,76.0,1080361,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664707,2664708,74.0,1080362,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22665.0,2103.0 +2664708,2664709,76.0,1080362,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664709,2664710,74.0,1080363,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22665.0,2103.0 +2664710,2664711,76.0,1080363,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664711,2664712,74.0,1080364,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22665.0,2103.0 +2664712,2664713,76.0,1080364,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664713,2664714,74.0,1080365,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22663.0,2103.0 +2664714,2664715,76.0,1080365,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664715,2664716,74.0,1080366,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22661.0,2103.0 +2664716,2664717,76.0,1080366,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664717,2664718,74.0,1080367,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22665.0,2103.0 +2664718,2664719,76.0,1080367,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664719,2664720,74.0,1080368,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22665.0,2103.0 +2664720,2664721,76.0,1080368,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664721,2664722,74.0,1080369,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22662.0,2103.0 +2664722,2664723,76.0,1080369,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664723,2664724,74.0,1080370,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22665.0,2103.0 +2664724,2664725,76.0,1080370,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664725,2664726,74.0,1080371,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22665.0,2103.0 +2664726,2664727,76.0,1080371,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664727,2664728,67.0,1080372,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664728,2664729,75.0,1080372,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664729,2664730,69.0,1080373,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664730,2664731,69.0,1080373,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664731,2664732,69.0,1080374,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664732,2664733,69.0,1080374,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664733,2664734,69.0,1080375,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664734,2664735,69.0,1080375,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664735,2664736,67.0,1080376,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664736,2664737,75.0,1080376,2,1,1,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22661.0,2103.0 +2664737,2664738,69.0,1080377,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664738,2664739,69.0,1080377,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664739,2664740,82.0,1080378,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664740,2664741,80.0,1080378,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664741,2664742,69.0,1080379,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664742,2664743,69.0,1080379,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664743,2664744,82.0,1080380,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664744,2664745,80.0,1080380,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664745,2664746,82.0,1080381,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664746,2664747,80.0,1080381,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664747,2664748,69.0,1080382,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664748,2664749,69.0,1080382,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664749,2664750,73.0,1080383,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664750,2664751,82.0,1080384,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22661.0,2103.0 +2664751,2664752,80.0,1080385,1,2,0,1,1.0,2.0,3.0,-9.0,4.0,4511M,5.0,22665.0,2103.0 +2664752,2664753,81.0,1080386,1,2,0,1,1.0,2.0,3.0,-9.0,4.0,44821,5.0,22665.0,2103.0 +2664753,2664754,90.0,1080387,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664754,2664755,89.0,1080387,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664755,2664756,94.0,1080388,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664756,2664757,94.0,1080388,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664757,2664758,94.0,1080389,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22660.0,2103.0 +2664758,2664759,94.0,1080389,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2664759,2664760,90.0,1080390,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664760,2664761,89.0,1080390,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664761,2664762,85.0,1080391,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664762,2664763,82.0,1080391,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664763,2664764,85.0,1080392,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664764,2664765,82.0,1080392,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664765,2664766,72.0,1080393,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664766,2664767,82.0,1080393,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664767,2664768,85.0,1080394,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2664768,2664769,82.0,1080394,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2664769,2664770,85.0,1080395,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664770,2664771,82.0,1080395,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664771,2664772,94.0,1080396,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664772,2664773,67.0,1080397,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664773,2664774,73.0,1080398,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664774,2664775,78.0,1080399,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664775,2664776,83.0,1080400,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664776,2664777,72.0,1080401,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22661.0,2103.0 +2664777,2664778,82.0,1080402,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664778,2664779,78.0,1080403,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664779,2664780,72.0,1080404,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664780,2664781,72.0,1080405,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22662.0,2103.0 +2664781,2664782,72.0,1080406,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22664.0,2103.0 +2664782,2664783,74.0,1080407,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664783,2664784,69.0,1080408,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664784,2664785,69.0,1080409,1,1,0,1,6.0,-9.0,-9.0,15.0,3.0,-9,0.0,22662.0,2103.0 +2664785,2664786,70.0,1080410,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664786,2664787,79.0,1080411,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664787,2664788,77.0,1080411,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664788,2664789,79.0,1080412,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22660.0,2103.0 +2664789,2664790,77.0,1080412,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2664790,2664791,79.0,1080413,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22662.0,2103.0 +2664791,2664792,77.0,1080413,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664792,2664793,79.0,1080414,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664793,2664794,77.0,1080414,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664794,2664795,79.0,1080415,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22664.0,2103.0 +2664795,2664796,77.0,1080415,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664796,2664797,87.0,1080416,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664797,2664798,87.0,1080417,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664798,2664799,76.0,1080418,1,1,0,1,2.0,5.0,6.0,-9.0,2.0,56173,12.0,22665.0,2103.0 +2664799,2664800,84.0,1080419,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664800,2664801,89.0,1080419,2,1,1,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22665.0,2103.0 +2664801,2664802,65.0,1080420,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664802,2664803,73.0,1080421,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22666.0,2103.0 +2664803,2664804,73.0,1080422,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664804,2664805,86.0,1080423,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664805,2664806,70.0,1080424,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664806,2664807,70.0,1080425,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664807,2664808,65.0,1080426,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664808,2664809,70.0,1080427,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664809,2664810,84.0,1080428,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664810,2664811,79.0,1080429,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2664811,2664812,80.0,1080430,1,2,0,1,1.0,15.0,1.0,-9.0,4.0,8131,17.0,22663.0,2103.0 +2664812,2664813,83.0,1080431,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22665.0,2103.0 +2664813,2664814,71.0,1080431,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664814,2664815,83.0,1080432,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22662.0,2103.0 +2664815,2664816,71.0,1080432,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664816,2664817,78.0,1080433,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664817,2664818,74.0,1080433,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664818,2664819,83.0,1080434,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22665.0,2103.0 +2664819,2664820,71.0,1080434,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664820,2664821,78.0,1080435,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664821,2664822,80.0,1080435,2,1,1,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22663.0,2103.0 +2664822,2664823,89.0,1080436,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664823,2664824,87.0,1080437,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664824,2664825,85.0,1080438,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664825,2664826,68.0,1080439,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664826,2664827,85.0,1080440,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664827,2664828,68.0,1080441,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664828,2664829,77.0,1080442,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664829,2664830,77.0,1080443,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664830,2664831,77.0,1080444,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664831,2664832,81.0,1080445,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664832,2664833,87.0,1080446,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664833,2664834,87.0,1080447,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664834,2664835,71.0,1080448,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2664835,2664836,74.0,1080449,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664836,2664837,87.0,1080450,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664837,2664838,89.0,1080451,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664838,2664839,87.0,1080452,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664839,2664840,87.0,1080453,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664840,2664841,81.0,1080454,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664841,2664842,89.0,1080455,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664842,2664843,79.0,1080456,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664843,2664844,94.0,1080457,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664844,2664845,85.0,1080458,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22666.0,2103.0 +2664845,2664846,89.0,1080459,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664846,2664847,77.0,1080460,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22666.0,2103.0 +2664847,2664848,77.0,1080461,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664848,2664849,73.0,1080462,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664849,2664850,89.0,1080463,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664850,2664851,71.0,1080464,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664851,2664852,71.0,1080465,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664852,2664853,88.0,1080466,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664853,2664854,77.0,1080467,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664854,2664855,67.0,1080468,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664855,2664856,85.0,1080469,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22663.0,2103.0 +2664856,2664857,91.0,1080470,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664857,2664858,94.0,1080471,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664858,2664859,85.0,1080472,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664859,2664860,80.0,1080473,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664860,2664861,75.0,1080474,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664861,2664862,80.0,1080475,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22666.0,2103.0 +2664862,2664863,94.0,1080476,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664863,2664864,89.0,1080477,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664864,2664865,94.0,1080478,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664865,2664866,89.0,1080479,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664866,2664867,80.0,1080480,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664867,2664868,89.0,1080481,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664868,2664869,94.0,1080482,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664869,2664870,90.0,1080483,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664870,2664871,90.0,1080484,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664871,2664872,46.0,1080485,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22662.0,2103.0 +2664872,2664873,44.0,1080485,2,2,12,1,1.0,33.0,1.0,-9.0,4.0,722Z,16.0,22662.0,2103.0 +2664873,2664874,40.0,1080485,3,1,12,1,1.0,20.0,5.0,-9.0,4.0,722Z,16.0,22662.0,2103.0 +2664874,2664875,38.0,1080485,4,1,12,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664875,2664876,52.0,1080486,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22662.0,2103.0 +2664876,2664877,50.0,1080486,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22662.0,2103.0 +2664877,2664878,22.0,1080486,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22662.0,2103.0 +2664878,2664879,52.0,1080487,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22662.0,2103.0 +2664879,2664880,50.0,1080487,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22662.0,2103.0 +2664880,2664881,22.0,1080487,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22662.0,2103.0 +2664881,2664882,52.0,1080488,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664882,2664883,50.0,1080488,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664883,2664884,22.0,1080488,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664884,2664885,52.0,1080489,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22663.0,2103.0 +2664885,2664886,50.0,1080489,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22663.0,2103.0 +2664886,2664887,22.0,1080489,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22663.0,2103.0 +2664887,2664888,52.0,1080490,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664888,2664889,50.0,1080490,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664889,2664890,22.0,1080490,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664890,2664891,52.0,1080491,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664891,2664892,50.0,1080491,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664892,2664893,22.0,1080491,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664893,2664894,52.0,1080492,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22660.0,2103.0 +2664894,2664895,50.0,1080492,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22660.0,2103.0 +2664895,2664896,22.0,1080492,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22660.0,2103.0 +2664896,2664897,52.0,1080493,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22664.0,2103.0 +2664897,2664898,50.0,1080493,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22664.0,2103.0 +2664898,2664899,22.0,1080493,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22664.0,2103.0 +2664899,2664900,52.0,1080494,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664900,2664901,50.0,1080494,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664901,2664902,22.0,1080494,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664902,2664903,52.0,1080495,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664903,2664904,50.0,1080495,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664904,2664905,22.0,1080495,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664905,2664906,52.0,1080496,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22664.0,2103.0 +2664906,2664907,50.0,1080496,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22664.0,2103.0 +2664907,2664908,22.0,1080496,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22664.0,2103.0 +2664908,2664909,52.0,1080497,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22662.0,2103.0 +2664909,2664910,50.0,1080497,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22662.0,2103.0 +2664910,2664911,22.0,1080497,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22662.0,2103.0 +2664911,2664912,52.0,1080498,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22661.0,2103.0 +2664912,2664913,50.0,1080498,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22661.0,2103.0 +2664913,2664914,22.0,1080498,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22661.0,2103.0 +2664914,2664915,47.0,1080499,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664915,2664916,53.0,1080499,2,1,1,1,1.0,40.0,1.0,-9.0,2.0,53M,9.0,22665.0,2103.0 +2664916,2664917,47.0,1080500,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664917,2664918,53.0,1080500,2,1,1,1,1.0,40.0,1.0,-9.0,2.0,53M,9.0,22662.0,2103.0 +2664918,2664919,47.0,1080501,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664919,2664920,53.0,1080501,2,1,1,1,1.0,40.0,1.0,-9.0,2.0,53M,9.0,22664.0,2103.0 +2664920,2664921,62.0,1080502,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664921,2664922,61.0,1080502,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22663.0,2103.0 +2664922,2664923,60.0,1080503,1,2,0,1,2.0,50.0,1.0,-9.0,4.0,611M1,13.0,22663.0,2103.0 +2664923,2664924,63.0,1080504,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,55,11.0,22665.0,2103.0 +2664924,2664925,55.0,1080505,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22660.0,2103.0 +2664925,2664926,45.0,1080506,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,2211P,7.0,22665.0,2103.0 +2664926,2664927,56.0,1080507,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,3327,3.0,22666.0,2103.0 +2664927,2664928,48.0,1080508,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4244,4.0,22665.0,2103.0 +2664928,2664929,55.0,1080508,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664929,2664930,45.0,1080509,1,1,0,1,1.0,14.0,1.0,-9.0,4.0,713Z,16.0,22665.0,2103.0 +2664930,2664931,46.0,1080510,1,1,0,1,1.0,45.0,1.0,15.0,2.0,622M,15.0,22664.0,2103.0 +2664931,2664932,59.0,1080510,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664932,2664933,46.0,1080511,1,1,0,1,1.0,45.0,1.0,15.0,2.0,622M,15.0,22665.0,2103.0 +2664933,2664934,59.0,1080511,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664934,2664935,52.0,1080512,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22665.0,2103.0 +2664935,2664936,59.0,1080513,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22665.0,2103.0 +2664936,2664937,50.0,1080514,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22665.0,2103.0 +2664937,2664938,55.0,1080515,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22665.0,2103.0 +2664938,2664939,64.0,1080516,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,335M,3.0,22665.0,2103.0 +2664939,2664940,48.0,1080517,1,1,0,1,1.0,30.0,1.0,-9.0,4.0,7115,16.0,22662.0,2103.0 +2664940,2664941,43.0,1080517,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664941,2664942,46.0,1080518,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22663.0,2103.0 +2664942,2664943,52.0,1080518,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2664943,2664944,46.0,1080519,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22661.0,2103.0 +2664944,2664945,52.0,1080519,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664945,2664946,46.0,1080520,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22660.0,2103.0 +2664946,2664947,52.0,1080520,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2664947,2664948,46.0,1080521,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22661.0,2103.0 +2664948,2664949,52.0,1080521,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664949,2664950,46.0,1080522,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664950,2664951,52.0,1080522,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664951,2664952,46.0,1080523,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664952,2664953,52.0,1080523,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664953,2664954,46.0,1080524,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664954,2664955,52.0,1080524,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664955,2664956,46.0,1080525,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22662.0,2103.0 +2664956,2664957,52.0,1080525,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2664957,2664958,46.0,1080526,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664958,2664959,52.0,1080526,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664959,2664960,46.0,1080527,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664960,2664961,52.0,1080527,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664961,2664962,46.0,1080528,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22661.0,2103.0 +2664962,2664963,52.0,1080528,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664963,2664964,46.0,1080529,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664964,2664965,52.0,1080529,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664965,2664966,46.0,1080530,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664966,2664967,52.0,1080530,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664967,2664968,46.0,1080531,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22666.0,2103.0 +2664968,2664969,52.0,1080531,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22666.0,2103.0 +2664969,2664970,46.0,1080532,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22661.0,2103.0 +2664970,2664971,52.0,1080532,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664971,2664972,46.0,1080533,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664972,2664973,52.0,1080533,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664973,2664974,46.0,1080534,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664974,2664975,52.0,1080534,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664975,2664976,46.0,1080535,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22661.0,2103.0 +2664976,2664977,52.0,1080535,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2664977,2664978,46.0,1080536,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664978,2664979,52.0,1080536,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664979,2664980,46.0,1080537,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664980,2664981,52.0,1080537,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664981,2664982,46.0,1080538,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2664982,2664983,52.0,1080538,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2664983,2664984,46.0,1080539,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22664.0,2103.0 +2664984,2664985,52.0,1080539,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664985,2664986,46.0,1080540,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22664.0,2103.0 +2664986,2664987,52.0,1080540,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2664987,2664988,59.0,1080541,1,1,0,1,1.0,25.0,1.0,-9.0,4.0,7211,16.0,22663.0,2103.0 +2664988,2664989,49.0,1080542,1,1,0,1,1.0,80.0,1.0,-9.0,4.0,56173,12.0,22665.0,2103.0 +2664989,2664990,55.0,1080543,1,1,0,1,1.0,54.0,1.0,-9.0,4.0,32711,3.0,22665.0,2103.0 +2664990,2664991,54.0,1080544,1,2,0,1,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22664.0,2103.0 +2664991,2664992,48.0,1080545,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22661.0,2103.0 +2664992,2664993,48.0,1080546,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22665.0,2103.0 +2664993,2664994,48.0,1080547,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22666.0,2103.0 +2664994,2664995,48.0,1080548,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22664.0,2103.0 +2664995,2664996,48.0,1080549,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22662.0,2103.0 +2664996,2664997,48.0,1080550,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22665.0,2103.0 +2664997,2664998,59.0,1080551,1,2,0,1,1.0,27.0,1.0,-9.0,4.0,5121,8.0,22665.0,2103.0 +2664998,2664999,59.0,1080552,1,2,0,1,1.0,27.0,1.0,-9.0,4.0,5121,8.0,22665.0,2103.0 +2664999,2665000,59.0,1080553,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,44511,5.0,22663.0,2103.0 +2665000,2665001,59.0,1080554,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,3328,3.0,22665.0,2103.0 +2665001,2665002,59.0,1080555,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,3328,3.0,22660.0,2103.0 +2665002,2665003,59.0,1080556,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,3328,3.0,22663.0,2103.0 +2665003,2665004,54.0,1080557,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665004,2665005,28.0,1080557,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665005,2665006,54.0,1080558,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665006,2665007,28.0,1080558,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665007,2665008,51.0,1080559,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665008,2665009,44.0,1080559,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665009,2665010,51.0,1080560,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665010,2665011,44.0,1080560,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665011,2665012,64.0,1080561,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665012,2665013,59.0,1080561,2,2,1,1,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22665.0,2103.0 +2665013,2665014,62.0,1080562,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2665014,2665015,60.0,1080563,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2665015,2665016,49.0,1080563,2,1,1,1,1.0,40.0,6.0,-9.0,4.0,7211,16.0,22664.0,2103.0 +2665016,2665017,60.0,1080564,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2665017,2665018,49.0,1080564,2,1,1,1,1.0,40.0,6.0,-9.0,4.0,7211,16.0,22662.0,2103.0 +2665018,2665019,55.0,1080565,1,1,0,1,2.0,15.0,6.0,-9.0,2.0,23,2.0,22660.0,2103.0 +2665019,2665020,54.0,1080566,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2665020,2665021,55.0,1080566,2,1,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2665021,2665022,58.0,1080567,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22661.0,2103.0 +2665022,2665023,58.0,1080568,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665023,2665024,58.0,1080569,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22660.0,2103.0 +2665024,2665025,52.0,1080570,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665025,2665026,45.0,1080570,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665026,2665027,18.0,1080570,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665027,2665028,15.0,1080570,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665028,2665029,12.0,1080570,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665029,2665030,10.0,1080570,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665030,2665031,52.0,1080571,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665031,2665032,45.0,1080571,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665032,2665033,18.0,1080571,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665033,2665034,15.0,1080571,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665034,2665035,12.0,1080571,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665035,2665036,10.0,1080571,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665036,2665037,52.0,1080572,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22666.0,2103.0 +2665037,2665038,45.0,1080572,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22666.0,2103.0 +2665038,2665039,18.0,1080572,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22666.0,2103.0 +2665039,2665040,15.0,1080572,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22666.0,2103.0 +2665040,2665041,12.0,1080572,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22666.0,2103.0 +2665041,2665042,10.0,1080572,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22666.0,2103.0 +2665042,2665043,52.0,1080573,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665043,2665044,45.0,1080573,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665044,2665045,18.0,1080573,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665045,2665046,15.0,1080573,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665046,2665047,12.0,1080573,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665047,2665048,10.0,1080573,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665048,2665049,52.0,1080574,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22660.0,2103.0 +2665049,2665050,45.0,1080574,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2665050,2665051,18.0,1080574,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22660.0,2103.0 +2665051,2665052,15.0,1080574,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22660.0,2103.0 +2665052,2665053,12.0,1080574,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22660.0,2103.0 +2665053,2665054,10.0,1080574,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22660.0,2103.0 +2665054,2665055,52.0,1080575,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22664.0,2103.0 +2665055,2665056,45.0,1080575,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2665056,2665057,18.0,1080575,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22664.0,2103.0 +2665057,2665058,15.0,1080575,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22664.0,2103.0 +2665058,2665059,12.0,1080575,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22664.0,2103.0 +2665059,2665060,10.0,1080575,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22664.0,2103.0 +2665060,2665061,52.0,1080576,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665061,2665062,45.0,1080576,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665062,2665063,18.0,1080576,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665063,2665064,15.0,1080576,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665064,2665065,12.0,1080576,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665065,2665066,10.0,1080576,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665066,2665067,52.0,1080577,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665067,2665068,45.0,1080577,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665068,2665069,18.0,1080577,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665069,2665070,15.0,1080577,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665070,2665071,12.0,1080577,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665071,2665072,10.0,1080577,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665072,2665073,52.0,1080578,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665073,2665074,45.0,1080578,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665074,2665075,18.0,1080578,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665075,2665076,15.0,1080578,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665076,2665077,12.0,1080578,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665077,2665078,10.0,1080578,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665078,2665079,52.0,1080579,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22664.0,2103.0 +2665079,2665080,45.0,1080579,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2665080,2665081,18.0,1080579,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22664.0,2103.0 +2665081,2665082,15.0,1080579,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22664.0,2103.0 +2665082,2665083,12.0,1080579,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22664.0,2103.0 +2665083,2665084,10.0,1080579,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22664.0,2103.0 +2665084,2665085,52.0,1080580,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665085,2665086,45.0,1080580,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665086,2665087,18.0,1080580,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665087,2665088,15.0,1080580,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665088,2665089,12.0,1080580,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665089,2665090,10.0,1080580,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665090,2665091,52.0,1080581,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665091,2665092,45.0,1080581,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665092,2665093,18.0,1080581,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665093,2665094,15.0,1080581,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665094,2665095,12.0,1080581,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665095,2665096,10.0,1080581,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665096,2665097,52.0,1080582,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22664.0,2103.0 +2665097,2665098,45.0,1080582,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2665098,2665099,18.0,1080582,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22664.0,2103.0 +2665099,2665100,15.0,1080582,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22664.0,2103.0 +2665100,2665101,12.0,1080582,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22664.0,2103.0 +2665101,2665102,10.0,1080582,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22664.0,2103.0 +2665102,2665103,52.0,1080583,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665103,2665104,45.0,1080583,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665104,2665105,18.0,1080583,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665105,2665106,15.0,1080583,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665106,2665107,12.0,1080583,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665107,2665108,10.0,1080583,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665108,2665109,52.0,1080584,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665109,2665110,45.0,1080584,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665110,2665111,18.0,1080584,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665111,2665112,15.0,1080584,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665112,2665113,12.0,1080584,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665113,2665114,10.0,1080584,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665114,2665115,52.0,1080585,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22660.0,2103.0 +2665115,2665116,45.0,1080585,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2665116,2665117,18.0,1080585,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22660.0,2103.0 +2665117,2665118,15.0,1080585,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22660.0,2103.0 +2665118,2665119,12.0,1080585,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22660.0,2103.0 +2665119,2665120,10.0,1080585,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22660.0,2103.0 +2665120,2665121,52.0,1080586,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665121,2665122,45.0,1080586,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665122,2665123,18.0,1080586,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665123,2665124,15.0,1080586,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665124,2665125,12.0,1080586,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665125,2665126,10.0,1080586,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665126,2665127,52.0,1080587,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665127,2665128,45.0,1080587,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665128,2665129,18.0,1080587,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665129,2665130,15.0,1080587,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665130,2665131,12.0,1080587,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665131,2665132,10.0,1080587,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665132,2665133,52.0,1080588,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665133,2665134,45.0,1080588,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665134,2665135,18.0,1080588,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665135,2665136,15.0,1080588,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665136,2665137,12.0,1080588,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665137,2665138,10.0,1080588,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665138,2665139,52.0,1080589,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22661.0,2103.0 +2665139,2665140,45.0,1080589,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2665140,2665141,18.0,1080589,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22661.0,2103.0 +2665141,2665142,15.0,1080589,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22661.0,2103.0 +2665142,2665143,12.0,1080589,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22661.0,2103.0 +2665143,2665144,10.0,1080589,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22661.0,2103.0 +2665144,2665145,52.0,1080590,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22666.0,2103.0 +2665145,2665146,45.0,1080590,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22666.0,2103.0 +2665146,2665147,18.0,1080590,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22666.0,2103.0 +2665147,2665148,15.0,1080590,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22666.0,2103.0 +2665148,2665149,12.0,1080590,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22666.0,2103.0 +2665149,2665150,10.0,1080590,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22666.0,2103.0 +2665150,2665151,52.0,1080591,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22664.0,2103.0 +2665151,2665152,45.0,1080591,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2665152,2665153,18.0,1080591,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22664.0,2103.0 +2665153,2665154,15.0,1080591,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22664.0,2103.0 +2665154,2665155,12.0,1080591,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22664.0,2103.0 +2665155,2665156,10.0,1080591,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22664.0,2103.0 +2665156,2665157,52.0,1080592,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665157,2665158,45.0,1080592,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665158,2665159,18.0,1080592,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665159,2665160,15.0,1080592,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665160,2665161,12.0,1080592,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665161,2665162,10.0,1080592,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665162,2665163,52.0,1080593,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,4413,5.0,22665.0,2103.0 +2665163,2665164,45.0,1080593,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665164,2665165,18.0,1080593,3,2,2,1,6.0,40.0,5.0,14.0,4.0,4413,5.0,22665.0,2103.0 +2665165,2665166,15.0,1080593,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665166,2665167,12.0,1080593,5,2,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22665.0,2103.0 +2665167,2665168,10.0,1080593,6,1,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665168,2665169,47.0,1080594,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665169,2665170,25.0,1080594,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22665.0,2103.0 +2665170,2665171,18.0,1080594,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22665.0,2103.0 +2665171,2665172,14.0,1080594,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22665.0,2103.0 +2665172,2665173,12.0,1080594,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22665.0,2103.0 +2665173,2665174,57.0,1080594,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22665.0,2103.0 +2665174,2665175,25.0,1080595,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22664.0,2103.0 +2665175,2665176,24.0,1080595,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22664.0,2103.0 +2665176,2665177,23.0,1080595,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22664.0,2103.0 +2665177,2665178,22.0,1080595,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22664.0,2103.0 +2665178,2665179,25.0,1080596,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22661.0,2103.0 +2665179,2665180,24.0,1080596,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22661.0,2103.0 +2665180,2665181,23.0,1080596,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22661.0,2103.0 +2665181,2665182,22.0,1080596,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22661.0,2103.0 +2665182,2665183,25.0,1080597,1,1,0,4,3.0,8.0,6.0,-9.0,4.0,722Z,16.0,22663.0,2103.0 +2665183,2665184,24.0,1080597,2,1,12,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22663.0,2103.0 +2665184,2665185,23.0,1080597,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22663.0,2103.0 +2665185,2665186,22.0,1080597,4,2,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22663.0,2103.0 +2665186,2665187,33.0,1080598,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22665.0,2103.0 +2665187,2665188,33.0,1080598,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665188,2665189,10.0,1080598,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665189,2665190,8.0,1080598,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22665.0,2103.0 +2665190,2665191,1.0,1080598,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665191,2665192,0.0,1080598,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665192,2665193,33.0,1080599,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22661.0,2103.0 +2665193,2665194,33.0,1080599,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2665194,2665195,10.0,1080599,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22661.0,2103.0 +2665195,2665196,8.0,1080599,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22661.0,2103.0 +2665196,2665197,1.0,1080599,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22661.0,2103.0 +2665197,2665198,0.0,1080599,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22661.0,2103.0 +2665198,2665199,36.0,1080600,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665199,2665200,33.0,1080600,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665200,2665201,36.0,1080601,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665201,2665202,33.0,1080601,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665202,2665203,36.0,1080602,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22661.0,2103.0 +2665203,2665204,33.0,1080602,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22661.0,2103.0 +2665204,2665205,36.0,1080603,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665205,2665206,33.0,1080603,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665206,2665207,36.0,1080604,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665207,2665208,33.0,1080604,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665208,2665209,36.0,1080605,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22663.0,2103.0 +2665209,2665210,33.0,1080605,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22663.0,2103.0 +2665210,2665211,36.0,1080606,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22664.0,2103.0 +2665211,2665212,33.0,1080606,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22664.0,2103.0 +2665212,2665213,36.0,1080607,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22660.0,2103.0 +2665213,2665214,33.0,1080607,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22660.0,2103.0 +2665214,2665215,36.0,1080608,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665215,2665216,33.0,1080608,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665216,2665217,36.0,1080609,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22662.0,2103.0 +2665217,2665218,33.0,1080609,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22662.0,2103.0 +2665218,2665219,36.0,1080610,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665219,2665220,33.0,1080610,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665220,2665221,36.0,1080611,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22662.0,2103.0 +2665221,2665222,33.0,1080611,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22662.0,2103.0 +2665222,2665223,36.0,1080612,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22663.0,2103.0 +2665223,2665224,33.0,1080612,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22663.0,2103.0 +2665224,2665225,36.0,1080613,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665225,2665226,33.0,1080613,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22665.0,2103.0 +2665226,2665227,36.0,1080614,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22663.0,2103.0 +2665227,2665228,33.0,1080614,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22663.0,2103.0 +2665228,2665229,36.0,1080615,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22662.0,2103.0 +2665229,2665230,33.0,1080615,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22662.0,2103.0 +2665230,2665231,26.0,1080616,1,2,0,1,1.0,50.0,2.0,-9.0,4.0,5411,10.0,22665.0,2103.0 +2665231,2665232,30.0,1080616,2,1,13,1,3.0,40.0,4.0,-9.0,4.0,5613,12.0,22665.0,2103.0 +2665232,2665233,29.0,1080617,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22662.0,2103.0 +2665233,2665234,41.0,1080618,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5121,8.0,22660.0,2103.0 +2665234,2665235,25.0,1080619,1,1,0,1,1.0,20.0,1.0,15.0,4.0,622M,15.0,22665.0,2103.0 +2665235,2665236,25.0,1080619,2,2,13,1,1.0,20.0,1.0,15.0,4.0,622M,15.0,22665.0,2103.0 +2665236,2665237,28.0,1080620,1,1,0,1,1.0,34.0,1.0,-9.0,4.0,623M,14.0,22665.0,2103.0 +2665237,2665238,26.0,1080620,2,2,1,1,1.0,34.0,1.0,-9.0,4.0,6244,14.0,22665.0,2103.0 +2665238,2665239,27.0,1080621,1,2,0,1,1.0,40.0,3.0,15.0,4.0,44511,5.0,22664.0,2103.0 +2665239,2665240,53.0,1080621,2,1,1,1,1.0,32.0,2.0,-9.0,2.0,44511,5.0,22664.0,2103.0 +2665240,2665241,27.0,1080622,1,1,0,1,3.0,10.0,6.0,16.0,4.0,611M1,13.0,22662.0,2103.0 +2665241,2665242,31.0,1080622,2,2,1,1,1.0,40.0,4.0,-9.0,2.0,6111,13.0,22662.0,2103.0 +2665242,2665243,35.0,1080623,1,2,0,1,1.0,35.0,2.0,-9.0,4.0,3121,3.0,22662.0,2103.0 +2665243,2665244,25.0,1080624,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3341,3.0,22661.0,2103.0 +2665244,2665245,33.0,1080625,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22662.0,2103.0 +2665245,2665246,33.0,1080625,2,2,1,1,2.0,40.0,1.0,-9.0,4.0,6212,14.0,22662.0,2103.0 +2665246,2665247,6.0,1080625,3,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22662.0,2103.0 +2665247,2665248,3.0,1080625,4,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22662.0,2103.0 +2665248,2665249,3.0,1080625,5,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22662.0,2103.0 +2665249,2665250,0.0,1080625,6,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22662.0,2103.0 +2665250,2665251,40.0,1080626,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665251,2665252,26.0,1080626,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665252,2665253,16.0,1080626,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665253,2665254,0.0,1080626,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665254,2665255,68.0,1080626,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665255,2665256,57.0,1080626,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665256,2665257,40.0,1080627,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22664.0,2103.0 +2665257,2665258,26.0,1080627,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22664.0,2103.0 +2665258,2665259,16.0,1080627,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22664.0,2103.0 +2665259,2665260,0.0,1080627,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22664.0,2103.0 +2665260,2665261,68.0,1080627,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22664.0,2103.0 +2665261,2665262,57.0,1080627,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2665262,2665263,40.0,1080628,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665263,2665264,26.0,1080628,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665264,2665265,16.0,1080628,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665265,2665266,0.0,1080628,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665266,2665267,68.0,1080628,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665267,2665268,57.0,1080628,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665268,2665269,40.0,1080629,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665269,2665270,26.0,1080629,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665270,2665271,16.0,1080629,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665271,2665272,0.0,1080629,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665272,2665273,68.0,1080629,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665273,2665274,57.0,1080629,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665274,2665275,40.0,1080630,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22660.0,2103.0 +2665275,2665276,26.0,1080630,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22660.0,2103.0 +2665276,2665277,16.0,1080630,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22660.0,2103.0 +2665277,2665278,0.0,1080630,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22660.0,2103.0 +2665278,2665279,68.0,1080630,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22660.0,2103.0 +2665279,2665280,57.0,1080630,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2665280,2665281,40.0,1080631,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22663.0,2103.0 +2665281,2665282,26.0,1080631,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22663.0,2103.0 +2665282,2665283,16.0,1080631,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22663.0,2103.0 +2665283,2665284,0.0,1080631,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22663.0,2103.0 +2665284,2665285,68.0,1080631,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22663.0,2103.0 +2665285,2665286,57.0,1080631,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2665286,2665287,40.0,1080632,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22660.0,2103.0 +2665287,2665288,26.0,1080632,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22660.0,2103.0 +2665288,2665289,16.0,1080632,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22660.0,2103.0 +2665289,2665290,0.0,1080632,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22660.0,2103.0 +2665290,2665291,68.0,1080632,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22660.0,2103.0 +2665291,2665292,57.0,1080632,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2665292,2665293,40.0,1080633,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22664.0,2103.0 +2665293,2665294,26.0,1080633,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22664.0,2103.0 +2665294,2665295,16.0,1080633,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22664.0,2103.0 +2665295,2665296,0.0,1080633,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22664.0,2103.0 +2665296,2665297,68.0,1080633,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22664.0,2103.0 +2665297,2665298,57.0,1080633,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2665298,2665299,40.0,1080634,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22660.0,2103.0 +2665299,2665300,26.0,1080634,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22660.0,2103.0 +2665300,2665301,16.0,1080634,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22660.0,2103.0 +2665301,2665302,0.0,1080634,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22660.0,2103.0 +2665302,2665303,68.0,1080634,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22660.0,2103.0 +2665303,2665304,57.0,1080634,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2665304,2665305,40.0,1080635,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22660.0,2103.0 +2665305,2665306,26.0,1080635,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22660.0,2103.0 +2665306,2665307,16.0,1080635,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22660.0,2103.0 +2665307,2665308,0.0,1080635,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22660.0,2103.0 +2665308,2665309,68.0,1080635,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22660.0,2103.0 +2665309,2665310,57.0,1080635,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22660.0,2103.0 +2665310,2665311,40.0,1080636,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665311,2665312,26.0,1080636,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665312,2665313,16.0,1080636,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665313,2665314,0.0,1080636,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665314,2665315,68.0,1080636,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665315,2665316,57.0,1080636,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665316,2665317,40.0,1080637,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22661.0,2103.0 +2665317,2665318,26.0,1080637,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22661.0,2103.0 +2665318,2665319,16.0,1080637,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22661.0,2103.0 +2665319,2665320,0.0,1080637,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22661.0,2103.0 +2665320,2665321,68.0,1080637,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22661.0,2103.0 +2665321,2665322,57.0,1080637,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2665322,2665323,40.0,1080638,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22663.0,2103.0 +2665323,2665324,26.0,1080638,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22663.0,2103.0 +2665324,2665325,16.0,1080638,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22663.0,2103.0 +2665325,2665326,0.0,1080638,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22663.0,2103.0 +2665326,2665327,68.0,1080638,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22663.0,2103.0 +2665327,2665328,57.0,1080638,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2665328,2665329,40.0,1080639,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665329,2665330,26.0,1080639,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665330,2665331,16.0,1080639,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665331,2665332,0.0,1080639,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665332,2665333,68.0,1080639,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665333,2665334,57.0,1080639,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665334,2665335,40.0,1080640,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22664.0,2103.0 +2665335,2665336,26.0,1080640,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22664.0,2103.0 +2665336,2665337,16.0,1080640,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22664.0,2103.0 +2665337,2665338,0.0,1080640,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22664.0,2103.0 +2665338,2665339,68.0,1080640,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22664.0,2103.0 +2665339,2665340,57.0,1080640,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2665340,2665341,40.0,1080641,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22663.0,2103.0 +2665341,2665342,26.0,1080641,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22663.0,2103.0 +2665342,2665343,16.0,1080641,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22663.0,2103.0 +2665343,2665344,0.0,1080641,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22663.0,2103.0 +2665344,2665345,68.0,1080641,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22663.0,2103.0 +2665345,2665346,57.0,1080641,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2665346,2665347,40.0,1080642,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22663.0,2103.0 +2665347,2665348,26.0,1080642,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22663.0,2103.0 +2665348,2665349,16.0,1080642,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22663.0,2103.0 +2665349,2665350,0.0,1080642,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22663.0,2103.0 +2665350,2665351,68.0,1080642,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22663.0,2103.0 +2665351,2665352,57.0,1080642,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2665352,2665353,40.0,1080643,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22666.0,2103.0 +2665353,2665354,26.0,1080643,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22666.0,2103.0 +2665354,2665355,16.0,1080643,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22666.0,2103.0 +2665355,2665356,0.0,1080643,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22666.0,2103.0 +2665356,2665357,68.0,1080643,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22666.0,2103.0 +2665357,2665358,57.0,1080643,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22666.0,2103.0 +2665358,2665359,40.0,1080644,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665359,2665360,26.0,1080644,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665360,2665361,16.0,1080644,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665361,2665362,0.0,1080644,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665362,2665363,68.0,1080644,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665363,2665364,57.0,1080644,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665364,2665365,40.0,1080645,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22664.0,2103.0 +2665365,2665366,26.0,1080645,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22664.0,2103.0 +2665366,2665367,16.0,1080645,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22664.0,2103.0 +2665367,2665368,0.0,1080645,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22664.0,2103.0 +2665368,2665369,68.0,1080645,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22664.0,2103.0 +2665369,2665370,57.0,1080645,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2665370,2665371,40.0,1080646,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665371,2665372,26.0,1080646,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665372,2665373,16.0,1080646,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665373,2665374,0.0,1080646,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665374,2665375,68.0,1080646,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665375,2665376,57.0,1080646,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665376,2665377,40.0,1080647,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22661.0,2103.0 +2665377,2665378,26.0,1080647,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22661.0,2103.0 +2665378,2665379,16.0,1080647,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22661.0,2103.0 +2665379,2665380,0.0,1080647,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22661.0,2103.0 +2665380,2665381,68.0,1080647,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22661.0,2103.0 +2665381,2665382,57.0,1080647,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2665382,2665383,40.0,1080648,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665383,2665384,26.0,1080648,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665384,2665385,16.0,1080648,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665385,2665386,0.0,1080648,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665386,2665387,68.0,1080648,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665387,2665388,57.0,1080648,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665388,2665389,40.0,1080649,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665389,2665390,26.0,1080649,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665390,2665391,16.0,1080649,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665391,2665392,0.0,1080649,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665392,2665393,68.0,1080649,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665393,2665394,57.0,1080649,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665394,2665395,40.0,1080650,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22663.0,2103.0 +2665395,2665396,26.0,1080650,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22663.0,2103.0 +2665396,2665397,16.0,1080650,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22663.0,2103.0 +2665397,2665398,0.0,1080650,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22663.0,2103.0 +2665398,2665399,68.0,1080650,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22663.0,2103.0 +2665399,2665400,57.0,1080650,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22663.0,2103.0 +2665400,2665401,40.0,1080651,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665401,2665402,26.0,1080651,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665402,2665403,16.0,1080651,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665403,2665404,0.0,1080651,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665404,2665405,68.0,1080651,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665405,2665406,57.0,1080651,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665406,2665407,40.0,1080652,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22662.0,2103.0 +2665407,2665408,26.0,1080652,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22662.0,2103.0 +2665408,2665409,16.0,1080652,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22662.0,2103.0 +2665409,2665410,0.0,1080652,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22662.0,2103.0 +2665410,2665411,68.0,1080652,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22662.0,2103.0 +2665411,2665412,57.0,1080652,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2665412,2665413,40.0,1080653,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665413,2665414,26.0,1080653,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665414,2665415,16.0,1080653,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665415,2665416,0.0,1080653,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665416,2665417,68.0,1080653,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665417,2665418,57.0,1080653,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665418,2665419,40.0,1080654,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665419,2665420,26.0,1080654,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665420,2665421,16.0,1080654,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665421,2665422,0.0,1080654,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665422,2665423,68.0,1080654,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665423,2665424,57.0,1080654,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665424,2665425,40.0,1080655,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22661.0,2103.0 +2665425,2665426,26.0,1080655,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22661.0,2103.0 +2665426,2665427,16.0,1080655,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22661.0,2103.0 +2665427,2665428,0.0,1080655,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22661.0,2103.0 +2665428,2665429,68.0,1080655,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22661.0,2103.0 +2665429,2665430,57.0,1080655,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2665430,2665431,40.0,1080656,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22662.0,2103.0 +2665431,2665432,26.0,1080656,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22662.0,2103.0 +2665432,2665433,16.0,1080656,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22662.0,2103.0 +2665433,2665434,0.0,1080656,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22662.0,2103.0 +2665434,2665435,68.0,1080656,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22662.0,2103.0 +2665435,2665436,57.0,1080656,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2665436,2665437,40.0,1080657,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665437,2665438,26.0,1080657,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665438,2665439,16.0,1080657,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665439,2665440,0.0,1080657,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665440,2665441,68.0,1080657,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665441,2665442,57.0,1080657,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665442,2665443,40.0,1080658,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22662.0,2103.0 +2665443,2665444,26.0,1080658,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22662.0,2103.0 +2665444,2665445,16.0,1080658,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22662.0,2103.0 +2665445,2665446,0.0,1080658,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22662.0,2103.0 +2665446,2665447,68.0,1080658,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22662.0,2103.0 +2665447,2665448,57.0,1080658,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22662.0,2103.0 +2665448,2665449,40.0,1080659,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22664.0,2103.0 +2665449,2665450,26.0,1080659,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22664.0,2103.0 +2665450,2665451,16.0,1080659,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22664.0,2103.0 +2665451,2665452,0.0,1080659,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22664.0,2103.0 +2665452,2665453,68.0,1080659,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22664.0,2103.0 +2665453,2665454,57.0,1080659,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22664.0,2103.0 +2665454,2665455,40.0,1080660,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665455,2665456,26.0,1080660,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,484,6.0,22665.0,2103.0 +2665456,2665457,16.0,1080660,3,2,2,1,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22665.0,2103.0 +2665457,2665458,0.0,1080660,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665458,2665459,68.0,1080660,5,1,10,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22665.0,2103.0 +2665459,2665460,57.0,1080660,6,2,10,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665460,2665461,27.0,1080661,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22663.0,2103.0 +2665461,2665462,3.0,1080661,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22663.0,2103.0 +2665462,2665463,3.0,1080661,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22663.0,2103.0 +2665463,2665464,25.0,1080661,4,1,15,2,3.0,40.0,1.0,-9.0,4.0,7211,16.0,22663.0,2103.0 +2665464,2665465,27.0,1080662,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22660.0,2103.0 +2665465,2665466,3.0,1080662,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22660.0,2103.0 +2665466,2665467,3.0,1080662,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22660.0,2103.0 +2665467,2665468,25.0,1080662,4,1,15,2,3.0,40.0,1.0,-9.0,4.0,7211,16.0,22660.0,2103.0 +2665468,2665469,27.0,1080663,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22662.0,2103.0 +2665469,2665470,3.0,1080663,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22662.0,2103.0 +2665470,2665471,3.0,1080663,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22662.0,2103.0 +2665471,2665472,25.0,1080663,4,1,15,2,3.0,40.0,1.0,-9.0,4.0,7211,16.0,22662.0,2103.0 +2665472,2665473,27.0,1080664,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22664.0,2103.0 +2665473,2665474,3.0,1080664,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22664.0,2103.0 +2665474,2665475,3.0,1080664,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22664.0,2103.0 +2665475,2665476,25.0,1080664,4,1,15,2,3.0,40.0,1.0,-9.0,4.0,7211,16.0,22664.0,2103.0 +2665476,2665477,27.0,1080665,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22663.0,2103.0 +2665477,2665478,3.0,1080665,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22663.0,2103.0 +2665478,2665479,3.0,1080665,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22663.0,2103.0 +2665479,2665480,25.0,1080665,4,1,15,2,3.0,40.0,1.0,-9.0,4.0,7211,16.0,22663.0,2103.0 +2665480,2665481,27.0,1080666,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22662.0,2103.0 +2665481,2665482,3.0,1080666,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22662.0,2103.0 +2665482,2665483,3.0,1080666,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22662.0,2103.0 +2665483,2665484,25.0,1080666,4,1,15,2,3.0,40.0,1.0,-9.0,4.0,7211,16.0,22662.0,2103.0 +2665484,2665485,27.0,1080667,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22664.0,2103.0 +2665485,2665486,3.0,1080667,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22664.0,2103.0 +2665486,2665487,3.0,1080667,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22664.0,2103.0 +2665487,2665488,25.0,1080667,4,1,15,2,3.0,40.0,1.0,-9.0,4.0,7211,16.0,22664.0,2103.0 +2665488,2665489,27.0,1080668,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22661.0,2103.0 +2665489,2665490,3.0,1080668,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22661.0,2103.0 +2665490,2665491,3.0,1080668,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22661.0,2103.0 +2665491,2665492,25.0,1080668,4,1,15,2,3.0,40.0,1.0,-9.0,4.0,7211,16.0,22661.0,2103.0 +2665492,2665493,27.0,1080669,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22662.0,2103.0 +2665493,2665494,3.0,1080669,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22662.0,2103.0 +2665494,2665495,3.0,1080669,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22662.0,2103.0 +2665495,2665496,25.0,1080669,4,1,15,2,3.0,40.0,1.0,-9.0,4.0,7211,16.0,22662.0,2103.0 +2665496,2665497,44.0,1080670,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665497,2665498,14.0,1080670,2,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22665.0,2103.0 +2665498,2665499,9.0,1080670,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665499,2665500,4.0,1080670,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665500,2665501,44.0,1080671,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22665.0,2103.0 +2665501,2665502,14.0,1080671,2,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22665.0,2103.0 +2665502,2665503,9.0,1080671,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22665.0,2103.0 +2665503,2665504,4.0,1080671,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22665.0,2103.0 +2665504,2665505,44.0,1080672,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22661.0,2103.0 +2665505,2665506,14.0,1080672,2,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22661.0,2103.0 +2665506,2665507,9.0,1080672,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22661.0,2103.0 +2665507,2665508,4.0,1080672,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22661.0,2103.0 +2665508,2665509,23.0,1080673,1,2,0,1,1.0,40.0,1.0,15.0,4.0,44511,5.0,22660.0,2103.0 +2665509,2665510,20.0,1080673,2,2,13,1,1.0,30.0,1.0,15.0,4.0,447,5.0,22660.0,2103.0 +2665510,2665511,24.0,1080673,3,1,12,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22660.0,2103.0 +2665682,2665683,60.0,1080757,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22668.0,2103.0 +2665683,2665684,63.0,1080757,2,2,1,2,1.0,68.0,3.0,-9.0,4.0,6216,14.0,22668.0,2103.0 +2665712,2665713,56.0,1080774,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22668.0,2103.0 +2665713,2665714,17.0,1080774,2,1,3,2,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22668.0,2103.0 +2665775,2665776,27.0,1080806,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22668.0,2103.0 +2665829,2665830,25.0,1080841,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,492,6.0,22668.0,2103.0 +2665830,2665831,7.0,1080841,2,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22668.0,2103.0 +2665847,2665848,36.0,1080850,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22668.0,2103.0 +2665848,2665849,33.0,1080850,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22668.0,2103.0 +2665869,2665870,36.0,1080861,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22668.0,2103.0 +2665870,2665871,33.0,1080861,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22668.0,2103.0 +2665911,2665912,36.0,1080882,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22668.0,2103.0 +2665912,2665913,33.0,1080882,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22668.0,2103.0 +2666054,2666055,38.0,1080930,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22668.0,2103.0 +2666055,2666056,11.0,1080930,2,2,2,2,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22668.0,2103.0 +2666056,2666057,4.0,1080930,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22668.0,2103.0 +2666122,2666123,21.0,1080958,1,1,0,2,1.0,30.0,4.0,15.0,4.0,722Z,16.0,22668.0,2103.0 +2666123,2666124,21.0,1080958,2,2,13,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22668.0,2103.0 +2666142,2666143,21.0,1080968,1,1,0,2,1.0,30.0,4.0,15.0,4.0,722Z,16.0,22668.0,2103.0 +2666143,2666144,21.0,1080968,2,2,13,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22668.0,2103.0 +2668007,2668008,72.0,1081682,1,2,0,2,2.0,3.0,3.0,-9.0,4.0,5121,8.0,22669.0,2104.0 +2668008,2668009,71.0,1081682,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22669.0,2104.0 +2668009,2668010,72.0,1081683,1,2,0,2,2.0,3.0,3.0,-9.0,4.0,5121,8.0,22659.0,2103.0 +2668010,2668011,71.0,1081683,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22659.0,2103.0 +2668011,2668012,72.0,1081684,1,2,0,2,2.0,3.0,3.0,-9.0,4.0,5121,8.0,22670.0,2104.0 +2668012,2668013,71.0,1081684,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22670.0,2104.0 +2668013,2668014,72.0,1081685,1,2,0,2,2.0,3.0,3.0,-9.0,4.0,5121,8.0,22667.0,2103.0 +2668014,2668015,71.0,1081685,2,1,1,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22667.0,2103.0 +2668015,2668016,76.0,1081686,1,1,0,2,1.0,30.0,3.0,-9.0,4.0,485M,6.0,22670.0,2104.0 +2668016,2668017,71.0,1081686,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668017,2668018,75.0,1081687,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668018,2668019,73.0,1081687,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668019,2668020,75.0,1081688,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668020,2668021,73.0,1081688,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668021,2668022,94.0,1081689,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22668.0,2103.0 +2668022,2668023,94.0,1081690,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22659.0,2103.0 +2668023,2668024,73.0,1081691,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22659.0,2103.0 +2668024,2668025,67.0,1081692,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668025,2668026,69.0,1081693,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668026,2668027,68.0,1081693,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668027,2668028,69.0,1081694,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668028,2668029,68.0,1081694,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668029,2668030,94.0,1081695,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668030,2668031,65.0,1081695,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668031,2668032,69.0,1081696,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668032,2668033,66.0,1081696,2,1,1,2,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22667.0,2103.0 +2668033,2668034,69.0,1081697,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668034,2668035,66.0,1081697,2,1,1,2,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22669.0,2104.0 +2668035,2668036,78.0,1081698,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22668.0,2103.0 +2668036,2668037,77.0,1081698,2,1,1,2,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22668.0,2103.0 +2668037,2668038,69.0,1081699,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668038,2668039,66.0,1081699,2,1,1,2,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22667.0,2103.0 +2668039,2668040,75.0,1081700,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668040,2668041,66.0,1081701,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668041,2668042,75.0,1081702,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668042,2668043,91.0,1081703,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668043,2668044,90.0,1081704,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668044,2668045,70.0,1081705,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668045,2668046,85.0,1081706,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668046,2668047,78.0,1081706,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668047,2668048,85.0,1081707,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668048,2668049,78.0,1081707,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668049,2668050,71.0,1081708,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22670.0,2104.0 +2668050,2668051,71.0,1081708,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668051,2668052,66.0,1081709,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668052,2668053,66.0,1081710,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668053,2668054,84.0,1081711,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668054,2668055,84.0,1081712,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668055,2668056,73.0,1081713,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668056,2668057,78.0,1081714,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668057,2668058,90.0,1081715,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668058,2668059,73.0,1081716,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668059,2668060,65.0,1081717,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668060,2668061,14.0,1081717,2,1,7,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22669.0,2104.0 +2668061,2668062,65.0,1081718,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668062,2668063,14.0,1081718,2,1,7,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22659.0,2103.0 +2668063,2668064,65.0,1081719,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22668.0,2103.0 +2668064,2668065,14.0,1081719,2,1,7,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22668.0,2103.0 +2668065,2668066,65.0,1081720,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668066,2668067,14.0,1081720,2,1,7,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22670.0,2104.0 +2668067,2668068,54.0,1081721,1,2,0,2,1.0,45.0,1.0,-9.0,4.0,492,6.0,22667.0,2103.0 +2668068,2668069,45.0,1081722,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22659.0,2103.0 +2668069,2668070,45.0,1081723,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22659.0,2103.0 +2668070,2668071,45.0,1081724,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22670.0,2104.0 +2668071,2668072,45.0,1081725,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22667.0,2103.0 +2668072,2668073,45.0,1081726,1,2,0,2,1.0,45.0,1.0,16.0,4.0,5241,9.0,22669.0,2104.0 +2668073,2668074,56.0,1081727,1,2,0,2,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22670.0,2104.0 +2668074,2668075,55.0,1081728,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668075,2668076,53.0,1081728,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668076,2668077,20.0,1081728,3,2,2,2,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22659.0,2103.0 +2668077,2668078,18.0,1081728,4,1,2,2,1.0,7.0,6.0,14.0,4.0,722Z,16.0,22659.0,2103.0 +2668078,2668079,55.0,1081729,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22668.0,2103.0 +2668079,2668080,53.0,1081729,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22668.0,2103.0 +2668080,2668081,20.0,1081729,3,2,2,2,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22668.0,2103.0 +2668081,2668082,18.0,1081729,4,1,2,2,1.0,7.0,6.0,14.0,4.0,722Z,16.0,22668.0,2103.0 +2668082,2668083,55.0,1081730,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668083,2668084,53.0,1081730,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668084,2668085,20.0,1081730,3,2,2,2,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22667.0,2103.0 +2668085,2668086,18.0,1081730,4,1,2,2,1.0,7.0,6.0,14.0,4.0,722Z,16.0,22667.0,2103.0 +2668086,2668087,55.0,1081731,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668087,2668088,53.0,1081731,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668088,2668089,20.0,1081731,3,2,2,2,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22667.0,2103.0 +2668089,2668090,18.0,1081731,4,1,2,2,1.0,7.0,6.0,14.0,4.0,722Z,16.0,22667.0,2103.0 +2668090,2668091,55.0,1081732,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668091,2668092,53.0,1081732,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668092,2668093,20.0,1081732,3,2,2,2,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22659.0,2103.0 +2668093,2668094,18.0,1081732,4,1,2,2,1.0,7.0,6.0,14.0,4.0,722Z,16.0,22659.0,2103.0 +2668094,2668095,53.0,1081733,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668095,2668096,51.0,1081733,2,2,1,2,1.0,60.0,4.0,-9.0,4.0,488,6.0,22667.0,2103.0 +2668096,2668097,53.0,1081734,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668097,2668098,51.0,1081734,2,2,1,2,1.0,60.0,4.0,-9.0,4.0,488,6.0,22670.0,2104.0 +2668098,2668099,53.0,1081735,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668099,2668100,51.0,1081735,2,2,1,2,1.0,60.0,4.0,-9.0,4.0,488,6.0,22659.0,2103.0 +2668100,2668101,48.0,1081736,1,2,0,2,1.0,30.0,1.0,-9.0,4.0,7211,16.0,22667.0,2103.0 +2668101,2668102,54.0,1081737,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22670.0,2104.0 +2668102,2668103,49.0,1081738,1,1,0,2,1.0,20.0,1.0,-9.0,4.0,6241,14.0,22670.0,2104.0 +2668103,2668104,53.0,1081739,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668104,2668105,50.0,1081739,2,2,15,2,1.0,6.0,1.0,-9.0,4.0,722Z,16.0,22669.0,2104.0 +2668105,2668106,53.0,1081740,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668106,2668107,50.0,1081740,2,2,15,2,1.0,6.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668107,2668108,63.0,1081741,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668108,2668109,45.0,1081741,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668109,2668110,18.0,1081741,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668110,2668111,17.0,1081741,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22667.0,2103.0 +2668111,2668112,63.0,1081742,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668112,2668113,45.0,1081742,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668113,2668114,18.0,1081742,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668114,2668115,17.0,1081742,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22667.0,2103.0 +2668115,2668116,63.0,1081743,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668116,2668117,45.0,1081743,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22669.0,2104.0 +2668117,2668118,18.0,1081743,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22669.0,2104.0 +2668118,2668119,17.0,1081743,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22669.0,2104.0 +2668119,2668120,63.0,1081744,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22668.0,2103.0 +2668120,2668121,45.0,1081744,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22668.0,2103.0 +2668121,2668122,18.0,1081744,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22668.0,2103.0 +2668122,2668123,17.0,1081744,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22668.0,2103.0 +2668123,2668124,63.0,1081745,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668124,2668125,45.0,1081745,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22670.0,2104.0 +2668125,2668126,18.0,1081745,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22670.0,2104.0 +2668126,2668127,17.0,1081745,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22670.0,2104.0 +2668127,2668128,63.0,1081746,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668128,2668129,45.0,1081746,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22670.0,2104.0 +2668129,2668130,18.0,1081746,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22670.0,2104.0 +2668130,2668131,17.0,1081746,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22670.0,2104.0 +2668131,2668132,63.0,1081747,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668132,2668133,45.0,1081747,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22659.0,2103.0 +2668133,2668134,18.0,1081747,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22659.0,2103.0 +2668134,2668135,17.0,1081747,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22659.0,2103.0 +2668135,2668136,63.0,1081748,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668136,2668137,45.0,1081748,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668137,2668138,18.0,1081748,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668138,2668139,17.0,1081748,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22667.0,2103.0 +2668139,2668140,63.0,1081749,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668140,2668141,45.0,1081749,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668141,2668142,18.0,1081749,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668142,2668143,17.0,1081749,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22667.0,2103.0 +2668143,2668144,63.0,1081750,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668144,2668145,45.0,1081750,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22670.0,2104.0 +2668145,2668146,18.0,1081750,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22670.0,2104.0 +2668146,2668147,17.0,1081750,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22670.0,2104.0 +2668147,2668148,63.0,1081751,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22668.0,2103.0 +2668148,2668149,45.0,1081751,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22668.0,2103.0 +2668149,2668150,18.0,1081751,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22668.0,2103.0 +2668150,2668151,17.0,1081751,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22668.0,2103.0 +2668151,2668152,63.0,1081752,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668152,2668153,45.0,1081752,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668153,2668154,18.0,1081752,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668154,2668155,17.0,1081752,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22667.0,2103.0 +2668155,2668156,63.0,1081753,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668156,2668157,45.0,1081753,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668157,2668158,18.0,1081753,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668158,2668159,17.0,1081753,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22667.0,2103.0 +2668159,2668160,47.0,1081754,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668160,2668161,12.0,1081754,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668161,2668162,47.0,1081755,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668162,2668163,12.0,1081755,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668163,2668164,47.0,1081756,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668164,2668165,12.0,1081756,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22659.0,2103.0 +2668165,2668166,52.0,1081757,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668166,2668167,50.0,1081757,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668167,2668168,22.0,1081757,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668168,2668169,52.0,1081758,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668169,2668170,50.0,1081758,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668170,2668171,22.0,1081758,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668171,2668172,52.0,1081759,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668172,2668173,50.0,1081759,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668173,2668174,22.0,1081759,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668174,2668175,52.0,1081760,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668175,2668176,50.0,1081760,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668176,2668177,22.0,1081760,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668177,2668178,52.0,1081761,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668178,2668179,50.0,1081761,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668179,2668180,22.0,1081761,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668180,2668181,52.0,1081762,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668181,2668182,50.0,1081762,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668182,2668183,22.0,1081762,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668183,2668184,52.0,1081763,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668184,2668185,50.0,1081763,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668185,2668186,22.0,1081763,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668186,2668187,52.0,1081764,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668187,2668188,50.0,1081764,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668188,2668189,22.0,1081764,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668189,2668190,52.0,1081765,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668190,2668191,50.0,1081765,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668191,2668192,22.0,1081765,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668192,2668193,52.0,1081766,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668193,2668194,50.0,1081766,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668194,2668195,22.0,1081766,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668195,2668196,52.0,1081767,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22670.0,2104.0 +2668196,2668197,50.0,1081767,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22670.0,2104.0 +2668197,2668198,22.0,1081767,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22670.0,2104.0 +2668198,2668199,52.0,1081768,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22670.0,2104.0 +2668199,2668200,50.0,1081768,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22670.0,2104.0 +2668200,2668201,22.0,1081768,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22670.0,2104.0 +2668201,2668202,52.0,1081769,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668202,2668203,50.0,1081769,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668203,2668204,22.0,1081769,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668204,2668205,52.0,1081770,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668205,2668206,50.0,1081770,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668206,2668207,22.0,1081770,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668207,2668208,52.0,1081771,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668208,2668209,50.0,1081771,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668209,2668210,22.0,1081771,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668210,2668211,52.0,1081772,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668211,2668212,50.0,1081772,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668212,2668213,22.0,1081772,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668213,2668214,46.0,1081773,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22667.0,2103.0 +2668214,2668215,52.0,1081773,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668215,2668216,46.0,1081774,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22669.0,2104.0 +2668216,2668217,52.0,1081774,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668217,2668218,46.0,1081775,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22669.0,2104.0 +2668218,2668219,52.0,1081775,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668219,2668220,46.0,1081776,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5411,10.0,22667.0,2103.0 +2668220,2668221,52.0,1081776,2,1,13,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668221,2668222,47.0,1081777,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668222,2668223,25.0,1081777,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22659.0,2103.0 +2668223,2668224,18.0,1081777,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22659.0,2103.0 +2668224,2668225,14.0,1081777,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22659.0,2103.0 +2668225,2668226,12.0,1081777,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22659.0,2103.0 +2668226,2668227,57.0,1081777,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22659.0,2103.0 +2668227,2668228,47.0,1081778,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668228,2668229,25.0,1081778,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22669.0,2104.0 +2668229,2668230,18.0,1081778,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22669.0,2104.0 +2668230,2668231,14.0,1081778,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22669.0,2104.0 +2668231,2668232,12.0,1081778,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22669.0,2104.0 +2668232,2668233,57.0,1081778,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22669.0,2104.0 +2668233,2668234,47.0,1081779,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668234,2668235,25.0,1081779,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22667.0,2103.0 +2668235,2668236,18.0,1081779,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22667.0,2103.0 +2668236,2668237,14.0,1081779,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22667.0,2103.0 +2668237,2668238,12.0,1081779,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22667.0,2103.0 +2668238,2668239,57.0,1081779,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22667.0,2103.0 +2668239,2668240,47.0,1081780,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668240,2668241,25.0,1081780,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22669.0,2104.0 +2668241,2668242,18.0,1081780,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22669.0,2104.0 +2668242,2668243,14.0,1081780,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22669.0,2104.0 +2668243,2668244,12.0,1081780,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22669.0,2104.0 +2668244,2668245,57.0,1081780,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22669.0,2104.0 +2668245,2668246,47.0,1081781,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668246,2668247,25.0,1081781,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22670.0,2104.0 +2668247,2668248,18.0,1081781,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22670.0,2104.0 +2668248,2668249,14.0,1081781,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22670.0,2104.0 +2668249,2668250,12.0,1081781,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22670.0,2104.0 +2668250,2668251,57.0,1081781,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22670.0,2104.0 +2668251,2668252,47.0,1081782,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668252,2668253,25.0,1081782,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22659.0,2103.0 +2668253,2668254,18.0,1081782,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22659.0,2103.0 +2668254,2668255,14.0,1081782,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22659.0,2103.0 +2668255,2668256,12.0,1081782,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22659.0,2103.0 +2668256,2668257,57.0,1081782,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22659.0,2103.0 +2668257,2668258,47.0,1081783,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668258,2668259,25.0,1081783,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22670.0,2104.0 +2668259,2668260,18.0,1081783,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22670.0,2104.0 +2668260,2668261,14.0,1081783,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22670.0,2104.0 +2668261,2668262,12.0,1081783,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22670.0,2104.0 +2668262,2668263,57.0,1081783,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22670.0,2104.0 +2668263,2668264,47.0,1081784,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668264,2668265,25.0,1081784,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22667.0,2103.0 +2668265,2668266,18.0,1081784,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22667.0,2103.0 +2668266,2668267,14.0,1081784,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22667.0,2103.0 +2668267,2668268,12.0,1081784,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22667.0,2103.0 +2668268,2668269,57.0,1081784,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22667.0,2103.0 +2668269,2668270,47.0,1081785,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668270,2668271,25.0,1081785,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22670.0,2104.0 +2668271,2668272,18.0,1081785,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22670.0,2104.0 +2668272,2668273,14.0,1081785,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22670.0,2104.0 +2668273,2668274,12.0,1081785,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22670.0,2104.0 +2668274,2668275,57.0,1081785,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22670.0,2104.0 +2668275,2668276,47.0,1081786,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668276,2668277,25.0,1081786,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22670.0,2104.0 +2668277,2668278,18.0,1081786,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22670.0,2104.0 +2668278,2668279,14.0,1081786,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22670.0,2104.0 +2668279,2668280,12.0,1081786,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22670.0,2104.0 +2668280,2668281,57.0,1081786,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22670.0,2104.0 +2668281,2668282,47.0,1081787,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668282,2668283,25.0,1081787,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22669.0,2104.0 +2668283,2668284,18.0,1081787,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22669.0,2104.0 +2668284,2668285,14.0,1081787,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22669.0,2104.0 +2668285,2668286,12.0,1081787,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22669.0,2104.0 +2668286,2668287,57.0,1081787,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22669.0,2104.0 +2668287,2668288,47.0,1081788,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668288,2668289,25.0,1081788,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22670.0,2104.0 +2668289,2668290,18.0,1081788,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22670.0,2104.0 +2668290,2668291,14.0,1081788,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22670.0,2104.0 +2668291,2668292,12.0,1081788,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22670.0,2104.0 +2668292,2668293,57.0,1081788,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22670.0,2104.0 +2668293,2668294,47.0,1081789,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668294,2668295,25.0,1081789,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22659.0,2103.0 +2668295,2668296,18.0,1081789,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22659.0,2103.0 +2668296,2668297,14.0,1081789,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22659.0,2103.0 +2668297,2668298,12.0,1081789,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22659.0,2103.0 +2668298,2668299,57.0,1081789,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22659.0,2103.0 +2668299,2668300,47.0,1081790,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668300,2668301,25.0,1081790,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22670.0,2104.0 +2668301,2668302,18.0,1081790,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22670.0,2104.0 +2668302,2668303,14.0,1081790,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22670.0,2104.0 +2668303,2668304,12.0,1081790,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22670.0,2104.0 +2668304,2668305,57.0,1081790,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22670.0,2104.0 +2668305,2668306,47.0,1081791,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668306,2668307,25.0,1081791,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22659.0,2103.0 +2668307,2668308,18.0,1081791,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22659.0,2103.0 +2668308,2668309,14.0,1081791,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22659.0,2103.0 +2668309,2668310,12.0,1081791,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22659.0,2103.0 +2668310,2668311,57.0,1081791,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22659.0,2103.0 +2668311,2668312,47.0,1081792,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668312,2668313,25.0,1081792,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22659.0,2103.0 +2668313,2668314,18.0,1081792,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22659.0,2103.0 +2668314,2668315,14.0,1081792,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22659.0,2103.0 +2668315,2668316,12.0,1081792,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22659.0,2103.0 +2668316,2668317,57.0,1081792,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22659.0,2103.0 +2668317,2668318,33.0,1081793,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22667.0,2103.0 +2668318,2668319,33.0,1081793,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668319,2668320,10.0,1081793,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22667.0,2103.0 +2668320,2668321,8.0,1081793,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22667.0,2103.0 +2668321,2668322,1.0,1081793,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668322,2668323,0.0,1081793,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668323,2668324,33.0,1081794,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22667.0,2103.0 +2668324,2668325,33.0,1081794,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668325,2668326,10.0,1081794,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22667.0,2103.0 +2668326,2668327,8.0,1081794,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22667.0,2103.0 +2668327,2668328,1.0,1081794,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668328,2668329,0.0,1081794,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668329,2668330,33.0,1081795,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22669.0,2104.0 +2668330,2668331,33.0,1081795,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668331,2668332,10.0,1081795,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22669.0,2104.0 +2668332,2668333,8.0,1081795,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22669.0,2104.0 +2668333,2668334,1.0,1081795,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668334,2668335,0.0,1081795,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668335,2668336,33.0,1081796,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22667.0,2103.0 +2668336,2668337,33.0,1081796,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668337,2668338,10.0,1081796,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22667.0,2103.0 +2668338,2668339,8.0,1081796,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22667.0,2103.0 +2668339,2668340,1.0,1081796,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668340,2668341,0.0,1081796,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668341,2668342,33.0,1081797,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22667.0,2103.0 +2668342,2668343,33.0,1081797,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668343,2668344,10.0,1081797,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22667.0,2103.0 +2668344,2668345,8.0,1081797,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22667.0,2103.0 +2668345,2668346,1.0,1081797,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668346,2668347,0.0,1081797,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668347,2668348,33.0,1081798,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22667.0,2103.0 +2668348,2668349,33.0,1081798,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668349,2668350,10.0,1081798,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22667.0,2103.0 +2668350,2668351,8.0,1081798,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22667.0,2103.0 +2668351,2668352,1.0,1081798,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668352,2668353,0.0,1081798,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668353,2668354,33.0,1081799,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22667.0,2103.0 +2668354,2668355,33.0,1081799,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668355,2668356,10.0,1081799,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22667.0,2103.0 +2668356,2668357,8.0,1081799,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22667.0,2103.0 +2668357,2668358,1.0,1081799,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668358,2668359,0.0,1081799,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668359,2668360,33.0,1081800,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22669.0,2104.0 +2668360,2668361,33.0,1081800,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668361,2668362,10.0,1081800,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22669.0,2104.0 +2668362,2668363,8.0,1081800,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22669.0,2104.0 +2668363,2668364,1.0,1081800,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668364,2668365,0.0,1081800,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668365,2668366,33.0,1081801,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22669.0,2104.0 +2668366,2668367,33.0,1081801,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668367,2668368,10.0,1081801,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22669.0,2104.0 +2668368,2668369,8.0,1081801,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22669.0,2104.0 +2668369,2668370,1.0,1081801,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668370,2668371,0.0,1081801,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668371,2668372,33.0,1081802,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22670.0,2104.0 +2668372,2668373,33.0,1081802,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22670.0,2104.0 +2668373,2668374,10.0,1081802,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22670.0,2104.0 +2668374,2668375,8.0,1081802,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22670.0,2104.0 +2668375,2668376,1.0,1081802,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668376,2668377,0.0,1081802,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668377,2668378,33.0,1081803,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22667.0,2103.0 +2668378,2668379,33.0,1081803,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668379,2668380,10.0,1081803,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22667.0,2103.0 +2668380,2668381,8.0,1081803,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22667.0,2103.0 +2668381,2668382,1.0,1081803,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668382,2668383,0.0,1081803,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668383,2668384,33.0,1081804,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22667.0,2103.0 +2668384,2668385,33.0,1081804,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668385,2668386,10.0,1081804,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22667.0,2103.0 +2668386,2668387,8.0,1081804,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22667.0,2103.0 +2668387,2668388,1.0,1081804,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668388,2668389,0.0,1081804,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668389,2668390,33.0,1081805,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22667.0,2103.0 +2668390,2668391,33.0,1081805,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668391,2668392,10.0,1081805,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22667.0,2103.0 +2668392,2668393,8.0,1081805,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22667.0,2103.0 +2668393,2668394,1.0,1081805,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668394,2668395,0.0,1081805,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668395,2668396,33.0,1081806,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22669.0,2104.0 +2668396,2668397,33.0,1081806,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668397,2668398,10.0,1081806,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22669.0,2104.0 +2668398,2668399,8.0,1081806,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22669.0,2104.0 +2668399,2668400,1.0,1081806,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668400,2668401,0.0,1081806,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668401,2668402,33.0,1081807,1,1,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22669.0,2104.0 +2668402,2668403,33.0,1081807,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22669.0,2104.0 +2668403,2668404,10.0,1081807,3,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22669.0,2104.0 +2668404,2668405,8.0,1081807,4,2,2,4,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22669.0,2104.0 +2668405,2668406,1.0,1081807,5,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668406,2668407,0.0,1081807,6,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668407,2668408,35.0,1081808,1,2,0,2,1.0,50.0,1.0,-9.0,4.0,3261,3.0,22670.0,2104.0 +2668408,2668409,43.0,1081809,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22670.0,2104.0 +2668409,2668410,43.0,1081810,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22669.0,2104.0 +2668410,2668411,27.0,1081811,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22669.0,2104.0 +2668411,2668412,27.0,1081812,1,2,0,2,1.0,43.0,1.0,-9.0,4.0,5241,9.0,22659.0,2103.0 +2668412,2668413,27.0,1081813,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22669.0,2104.0 +2668413,2668414,27.0,1081814,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22669.0,2104.0 +2668414,2668415,27.0,1081815,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22667.0,2103.0 +2668415,2668416,27.0,1081816,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22669.0,2104.0 +2668416,2668417,27.0,1081817,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22669.0,2104.0 +2668417,2668418,27.0,1081818,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22659.0,2103.0 +2668418,2668419,27.0,1081819,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22667.0,2103.0 +2668419,2668420,27.0,1081820,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22667.0,2103.0 +2668420,2668421,27.0,1081821,1,2,0,2,1.0,40.0,5.0,-9.0,4.0,336M,3.0,22659.0,2103.0 +2668421,2668422,25.0,1081822,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22669.0,2104.0 +2668422,2668423,25.0,1081823,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22669.0,2104.0 +2668423,2668424,27.0,1081824,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22667.0,2103.0 +2668424,2668425,25.0,1081825,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22670.0,2104.0 +2668425,2668426,27.0,1081826,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22659.0,2103.0 +2668426,2668427,27.0,1081827,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22667.0,2103.0 +2668427,2668428,25.0,1081828,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22659.0,2103.0 +2668428,2668429,27.0,1081829,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22670.0,2104.0 +2668429,2668430,27.0,1081830,1,2,0,2,1.0,47.0,1.0,16.0,4.0,5221M,9.0,22670.0,2104.0 +2668430,2668431,25.0,1081831,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22670.0,2104.0 +2668431,2668432,28.0,1081832,1,2,0,2,1.0,30.0,5.0,-9.0,4.0,336M,3.0,22669.0,2104.0 +2668432,2668433,28.0,1081833,1,2,0,2,1.0,30.0,5.0,-9.0,4.0,336M,3.0,22667.0,2103.0 +2668433,2668434,27.0,1081834,1,1,0,2,1.0,40.0,6.0,-9.0,4.0,336M,3.0,22667.0,2103.0 +2668434,2668435,27.0,1081835,1,1,0,2,1.0,40.0,6.0,-9.0,4.0,336M,3.0,22667.0,2103.0 +2668435,2668436,27.0,1081836,1,1,0,2,1.0,40.0,6.0,-9.0,4.0,336M,3.0,22667.0,2103.0 +2668436,2668437,27.0,1081837,1,1,0,2,1.0,40.0,6.0,-9.0,4.0,336M,3.0,22667.0,2103.0 +2668437,2668438,28.0,1081838,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22669.0,2104.0 +2668438,2668439,28.0,1081839,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22668.0,2103.0 +2668439,2668440,34.0,1081840,1,2,0,2,1.0,30.0,5.0,-9.0,4.0,722Z,16.0,22667.0,2103.0 +2668440,2668441,35.0,1081841,1,2,0,2,1.0,10.0,4.0,16.0,4.0,611M1,13.0,22669.0,2104.0 +2668441,2668442,25.0,1081842,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22670.0,2104.0 +2668442,2668443,25.0,1081843,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22670.0,2104.0 +2668443,2668444,37.0,1081844,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22667.0,2103.0 +2668444,2668445,34.0,1081845,1,2,0,2,1.0,53.0,1.0,-9.0,4.0,336M,3.0,22669.0,2104.0 +2668445,2668446,11.0,1081845,2,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22669.0,2104.0 +2668446,2668447,34.0,1081846,1,2,0,2,1.0,53.0,1.0,-9.0,4.0,336M,3.0,22659.0,2103.0 +2668447,2668448,11.0,1081846,2,1,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22659.0,2103.0 +2668448,2668449,39.0,1081847,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22659.0,2103.0 +2668449,2668450,45.0,1081847,2,1,1,2,1.0,60.0,3.0,-9.0,4.0,484,6.0,22659.0,2103.0 +2668450,2668451,13.0,1081847,3,1,2,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22659.0,2103.0 +2668451,2668452,10.0,1081847,4,2,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22659.0,2103.0 +2668452,2668453,8.0,1081847,5,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22659.0,2103.0 +2668453,2668454,7.0,1081847,6,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22659.0,2103.0 +2668454,2668455,29.0,1081848,1,2,0,2,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22668.0,2103.0 +2668455,2668456,9.0,1081848,2,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22668.0,2103.0 +2668456,2668457,8.0,1081848,3,2,2,2,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22668.0,2103.0 +2668457,2668458,4.0,1081848,4,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22668.0,2103.0 +2668458,2668459,34.0,1081849,1,2,0,2,1.0,12.0,1.0,15.0,4.0,5617Z,12.0,22669.0,2104.0 +2668459,2668460,15.0,1081849,2,2,2,2,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668460,2668461,11.0,1081849,3,2,2,2,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22669.0,2104.0 +2668461,2668462,10.0,1081849,4,2,2,2,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22669.0,2104.0 +2668462,2668463,35.0,1081850,1,2,0,2,1.0,24.0,2.0,-9.0,4.0,6231,14.0,22667.0,2103.0 +2668463,2668464,16.0,1081850,2,1,2,2,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668464,2668465,13.0,1081850,3,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668465,2668466,4.0,1081850,4,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22667.0,2103.0 +2668466,2668467,26.0,1081851,1,2,0,2,1.0,45.0,1.0,-9.0,4.0,623M,14.0,22670.0,2104.0 +2668467,2668468,10.0,1081851,2,2,2,2,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22670.0,2104.0 +2668468,2668469,6.0,1081851,3,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22670.0,2104.0 +2668469,2668470,26.0,1081852,1,2,0,2,1.0,45.0,1.0,-9.0,4.0,623M,14.0,22659.0,2103.0 +2668470,2668471,10.0,1081852,2,2,2,2,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22659.0,2103.0 +2668471,2668472,6.0,1081852,3,1,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22659.0,2103.0 +2668472,2668473,36.0,1081853,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,6216,14.0,22667.0,2103.0 +2668473,2668474,12.0,1081853,2,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668474,2668475,36.0,1081854,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,6216,14.0,22659.0,2103.0 +2668475,2668476,12.0,1081854,2,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22659.0,2103.0 +2668476,2668477,36.0,1081855,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,6216,14.0,22670.0,2104.0 +2668477,2668478,12.0,1081855,2,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668478,2668479,36.0,1081856,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,6216,14.0,22667.0,2103.0 +2668479,2668480,12.0,1081856,2,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668480,2668481,28.0,1081857,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,622M,15.0,22667.0,2103.0 +2668481,2668482,4.0,1081857,2,1,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22667.0,2103.0 +2668482,2668483,28.0,1081858,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,622M,15.0,22659.0,2103.0 +2668483,2668484,4.0,1081858,2,1,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22659.0,2103.0 +2668484,2668485,36.0,1081859,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,6216,14.0,22667.0,2103.0 +2668485,2668486,12.0,1081859,2,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668486,2668487,36.0,1081860,1,2,0,2,1.0,55.0,1.0,-9.0,4.0,6216,14.0,22669.0,2104.0 +2668487,2668488,12.0,1081860,2,1,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668488,2668489,28.0,1081861,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,622M,15.0,22667.0,2103.0 +2668489,2668490,4.0,1081861,2,1,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22667.0,2103.0 +2668490,2668491,25.0,1081862,1,2,0,2,2.0,25.0,1.0,-9.0,4.0,722Z,16.0,22669.0,2104.0 +2668491,2668492,7.0,1081862,2,2,2,2,-9.0,-9.0,-9.0,4.0,-9.0,-9,0.0,22669.0,2104.0 +2668492,2668493,0.0,1081862,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668493,2668494,29.0,1081863,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22667.0,2103.0 +2668494,2668495,5.0,1081863,2,2,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22667.0,2103.0 +2668495,2668496,2.0,1081863,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668496,2668497,30.0,1081864,1,2,0,3,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22669.0,2104.0 +2668497,2668498,32.0,1081864,2,1,13,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668498,2668499,30.0,1081865,1,2,0,3,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22667.0,2103.0 +2668499,2668500,32.0,1081865,2,1,13,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668500,2668501,30.0,1081866,1,2,0,3,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22668.0,2103.0 +2668501,2668502,32.0,1081866,2,1,13,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22668.0,2103.0 +2668502,2668503,30.0,1081867,1,2,0,3,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22667.0,2103.0 +2668503,2668504,32.0,1081867,2,1,13,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22667.0,2103.0 +2668504,2668505,30.0,1081868,1,2,0,3,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22669.0,2104.0 +2668505,2668506,32.0,1081868,2,1,13,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22669.0,2104.0 +2668506,2668507,30.0,1081869,1,2,0,3,1.0,32.0,1.0,-9.0,4.0,622M,15.0,22659.0,2103.0 +2668507,2668508,32.0,1081869,2,1,13,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22659.0,2103.0 +2668508,2668509,36.0,1081870,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668509,2668510,44.0,1081870,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668510,2668511,15.0,1081870,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668511,2668512,13.0,1081870,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668512,2668513,4.0,1081870,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668513,2668514,21.0,1081870,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668514,2668515,32.0,1081870,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668515,2668516,36.0,1081871,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668516,2668517,44.0,1081871,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668517,2668518,15.0,1081871,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22670.0,2104.0 +2668518,2668519,13.0,1081871,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668519,2668520,4.0,1081871,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668520,2668521,21.0,1081871,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668521,2668522,32.0,1081871,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668522,2668523,36.0,1081872,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668523,2668524,44.0,1081872,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668524,2668525,15.0,1081872,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668525,2668526,13.0,1081872,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668526,2668527,4.0,1081872,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668527,2668528,21.0,1081872,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668528,2668529,32.0,1081872,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668529,2668530,36.0,1081873,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668530,2668531,44.0,1081873,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668531,2668532,15.0,1081873,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668532,2668533,13.0,1081873,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668533,2668534,4.0,1081873,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668534,2668535,21.0,1081873,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668535,2668536,32.0,1081873,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668536,2668537,36.0,1081874,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668537,2668538,44.0,1081874,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668538,2668539,15.0,1081874,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668539,2668540,13.0,1081874,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668540,2668541,4.0,1081874,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668541,2668542,21.0,1081874,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668542,2668543,32.0,1081874,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668543,2668544,36.0,1081875,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668544,2668545,44.0,1081875,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668545,2668546,15.0,1081875,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668546,2668547,13.0,1081875,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668547,2668548,4.0,1081875,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668548,2668549,21.0,1081875,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668549,2668550,32.0,1081875,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668550,2668551,36.0,1081876,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668551,2668552,44.0,1081876,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668552,2668553,15.0,1081876,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668553,2668554,13.0,1081876,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668554,2668555,4.0,1081876,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668555,2668556,21.0,1081876,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668556,2668557,32.0,1081876,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668557,2668558,36.0,1081877,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22659.0,2103.0 +2668558,2668559,44.0,1081877,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22659.0,2103.0 +2668559,2668560,15.0,1081877,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22659.0,2103.0 +2668560,2668561,13.0,1081877,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22659.0,2103.0 +2668561,2668562,4.0,1081877,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22659.0,2103.0 +2668562,2668563,21.0,1081877,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22659.0,2103.0 +2668563,2668564,32.0,1081877,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22659.0,2103.0 +2668564,2668565,36.0,1081878,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668565,2668566,44.0,1081878,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668566,2668567,15.0,1081878,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668567,2668568,13.0,1081878,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668568,2668569,4.0,1081878,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668569,2668570,21.0,1081878,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668570,2668571,32.0,1081878,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668571,2668572,36.0,1081879,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668572,2668573,44.0,1081879,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668573,2668574,15.0,1081879,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668574,2668575,13.0,1081879,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668575,2668576,4.0,1081879,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668576,2668577,21.0,1081879,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668577,2668578,32.0,1081879,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668578,2668579,36.0,1081880,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668579,2668580,44.0,1081880,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668580,2668581,15.0,1081880,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22670.0,2104.0 +2668581,2668582,13.0,1081880,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668582,2668583,4.0,1081880,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668583,2668584,21.0,1081880,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668584,2668585,32.0,1081880,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668585,2668586,36.0,1081881,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668586,2668587,44.0,1081881,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668587,2668588,15.0,1081881,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668588,2668589,13.0,1081881,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668589,2668590,4.0,1081881,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668590,2668591,21.0,1081881,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668591,2668592,32.0,1081881,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668592,2668593,36.0,1081882,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668593,2668594,44.0,1081882,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668594,2668595,15.0,1081882,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668595,2668596,13.0,1081882,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668596,2668597,4.0,1081882,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668597,2668598,21.0,1081882,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668598,2668599,32.0,1081882,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668599,2668600,36.0,1081883,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668600,2668601,44.0,1081883,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668601,2668602,15.0,1081883,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22670.0,2104.0 +2668602,2668603,13.0,1081883,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668603,2668604,4.0,1081883,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668604,2668605,21.0,1081883,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668605,2668606,32.0,1081883,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668606,2668607,36.0,1081884,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668607,2668608,44.0,1081884,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668608,2668609,15.0,1081884,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668609,2668610,13.0,1081884,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668610,2668611,4.0,1081884,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668611,2668612,21.0,1081884,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668612,2668613,32.0,1081884,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668613,2668614,36.0,1081885,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668614,2668615,44.0,1081885,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668615,2668616,15.0,1081885,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668616,2668617,13.0,1081885,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668617,2668618,4.0,1081885,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668618,2668619,21.0,1081885,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668619,2668620,32.0,1081885,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668620,2668621,36.0,1081886,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668621,2668622,44.0,1081886,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668622,2668623,15.0,1081886,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22670.0,2104.0 +2668623,2668624,13.0,1081886,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668624,2668625,4.0,1081886,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668625,2668626,21.0,1081886,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668626,2668627,32.0,1081886,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668627,2668628,36.0,1081887,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668628,2668629,44.0,1081887,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668629,2668630,15.0,1081887,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668630,2668631,13.0,1081887,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668631,2668632,4.0,1081887,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668632,2668633,21.0,1081887,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668633,2668634,32.0,1081887,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668634,2668635,36.0,1081888,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668635,2668636,44.0,1081888,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668636,2668637,15.0,1081888,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668637,2668638,13.0,1081888,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668638,2668639,4.0,1081888,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668639,2668640,21.0,1081888,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668640,2668641,32.0,1081888,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668641,2668642,36.0,1081889,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668642,2668643,44.0,1081889,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668643,2668644,15.0,1081889,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668644,2668645,13.0,1081889,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668645,2668646,4.0,1081889,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668646,2668647,21.0,1081889,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668647,2668648,32.0,1081889,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668648,2668649,36.0,1081890,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668649,2668650,44.0,1081890,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668650,2668651,15.0,1081890,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668651,2668652,13.0,1081890,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668652,2668653,4.0,1081890,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668653,2668654,21.0,1081890,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668654,2668655,32.0,1081890,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668655,2668656,36.0,1081891,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668656,2668657,44.0,1081891,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668657,2668658,15.0,1081891,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668658,2668659,13.0,1081891,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668659,2668660,4.0,1081891,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668660,2668661,21.0,1081891,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668661,2668662,32.0,1081891,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668662,2668663,36.0,1081892,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668663,2668664,44.0,1081892,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668664,2668665,15.0,1081892,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668665,2668666,13.0,1081892,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668666,2668667,4.0,1081892,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668667,2668668,21.0,1081892,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668668,2668669,32.0,1081892,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668669,2668670,36.0,1081893,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668670,2668671,44.0,1081893,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668671,2668672,15.0,1081893,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22670.0,2104.0 +2668672,2668673,13.0,1081893,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668673,2668674,4.0,1081893,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668674,2668675,21.0,1081893,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668675,2668676,32.0,1081893,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668676,2668677,36.0,1081894,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668677,2668678,44.0,1081894,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668678,2668679,15.0,1081894,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668679,2668680,13.0,1081894,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668680,2668681,4.0,1081894,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668681,2668682,21.0,1081894,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668682,2668683,32.0,1081894,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668683,2668684,36.0,1081895,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668684,2668685,44.0,1081895,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668685,2668686,15.0,1081895,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22670.0,2104.0 +2668686,2668687,13.0,1081895,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668687,2668688,4.0,1081895,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668688,2668689,21.0,1081895,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668689,2668690,32.0,1081895,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668690,2668691,36.0,1081896,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22659.0,2103.0 +2668691,2668692,44.0,1081896,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22659.0,2103.0 +2668692,2668693,15.0,1081896,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22659.0,2103.0 +2668693,2668694,13.0,1081896,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22659.0,2103.0 +2668694,2668695,4.0,1081896,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22659.0,2103.0 +2668695,2668696,21.0,1081896,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22659.0,2103.0 +2668696,2668697,32.0,1081896,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22659.0,2103.0 +2668697,2668698,36.0,1081897,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668698,2668699,44.0,1081897,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668699,2668700,15.0,1081897,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668700,2668701,13.0,1081897,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668701,2668702,4.0,1081897,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668702,2668703,21.0,1081897,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668703,2668704,32.0,1081897,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668704,2668705,36.0,1081898,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668705,2668706,44.0,1081898,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668706,2668707,15.0,1081898,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22670.0,2104.0 +2668707,2668708,13.0,1081898,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668708,2668709,4.0,1081898,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668709,2668710,21.0,1081898,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668710,2668711,32.0,1081898,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668711,2668712,36.0,1081899,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668712,2668713,44.0,1081899,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668713,2668714,15.0,1081899,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668714,2668715,13.0,1081899,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668715,2668716,4.0,1081899,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668716,2668717,21.0,1081899,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668717,2668718,32.0,1081899,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668718,2668719,36.0,1081900,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668719,2668720,44.0,1081900,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668720,2668721,15.0,1081900,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668721,2668722,13.0,1081900,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668722,2668723,4.0,1081900,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668723,2668724,21.0,1081900,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668724,2668725,32.0,1081900,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668725,2668726,36.0,1081901,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668726,2668727,44.0,1081901,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668727,2668728,15.0,1081901,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668728,2668729,13.0,1081901,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668729,2668730,4.0,1081901,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668730,2668731,21.0,1081901,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668731,2668732,32.0,1081901,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668732,2668733,36.0,1081902,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668733,2668734,44.0,1081902,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668734,2668735,15.0,1081902,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22670.0,2104.0 +2668735,2668736,13.0,1081902,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668736,2668737,4.0,1081902,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668737,2668738,21.0,1081902,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668738,2668739,32.0,1081902,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668739,2668740,36.0,1081903,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668740,2668741,44.0,1081903,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668741,2668742,15.0,1081903,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22670.0,2104.0 +2668742,2668743,13.0,1081903,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668743,2668744,4.0,1081903,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668744,2668745,21.0,1081903,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668745,2668746,32.0,1081903,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668746,2668747,36.0,1081904,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668747,2668748,44.0,1081904,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668748,2668749,15.0,1081904,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668749,2668750,13.0,1081904,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668750,2668751,4.0,1081904,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668751,2668752,21.0,1081904,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668752,2668753,32.0,1081904,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668753,2668754,36.0,1081905,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668754,2668755,44.0,1081905,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668755,2668756,15.0,1081905,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668756,2668757,13.0,1081905,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668757,2668758,4.0,1081905,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668758,2668759,21.0,1081905,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668759,2668760,32.0,1081905,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668760,2668761,36.0,1081906,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668761,2668762,44.0,1081906,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668762,2668763,15.0,1081906,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668763,2668764,13.0,1081906,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668764,2668765,4.0,1081906,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668765,2668766,21.0,1081906,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668766,2668767,32.0,1081906,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668767,2668768,36.0,1081907,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22659.0,2103.0 +2668768,2668769,44.0,1081907,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22659.0,2103.0 +2668769,2668770,15.0,1081907,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22659.0,2103.0 +2668770,2668771,13.0,1081907,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22659.0,2103.0 +2668771,2668772,4.0,1081907,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22659.0,2103.0 +2668772,2668773,21.0,1081907,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22659.0,2103.0 +2668773,2668774,32.0,1081907,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22659.0,2103.0 +2668774,2668775,36.0,1081908,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22668.0,2103.0 +2668775,2668776,44.0,1081908,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22668.0,2103.0 +2668776,2668777,15.0,1081908,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22668.0,2103.0 +2668777,2668778,13.0,1081908,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22668.0,2103.0 +2668778,2668779,4.0,1081908,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22668.0,2103.0 +2668779,2668780,21.0,1081908,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22668.0,2103.0 +2668780,2668781,32.0,1081908,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22668.0,2103.0 +2668781,2668782,36.0,1081909,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668782,2668783,44.0,1081909,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668783,2668784,15.0,1081909,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668784,2668785,13.0,1081909,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668785,2668786,4.0,1081909,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668786,2668787,21.0,1081909,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668787,2668788,32.0,1081909,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668788,2668789,36.0,1081910,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668789,2668790,44.0,1081910,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668790,2668791,15.0,1081910,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668791,2668792,13.0,1081910,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668792,2668793,4.0,1081910,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668793,2668794,21.0,1081910,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668794,2668795,32.0,1081910,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668795,2668796,36.0,1081911,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668796,2668797,44.0,1081911,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668797,2668798,15.0,1081911,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668798,2668799,13.0,1081911,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668799,2668800,4.0,1081911,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668800,2668801,21.0,1081911,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668801,2668802,32.0,1081911,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668802,2668803,36.0,1081912,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22659.0,2103.0 +2668803,2668804,44.0,1081912,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22659.0,2103.0 +2668804,2668805,15.0,1081912,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22659.0,2103.0 +2668805,2668806,13.0,1081912,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22659.0,2103.0 +2668806,2668807,4.0,1081912,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22659.0,2103.0 +2668807,2668808,21.0,1081912,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22659.0,2103.0 +2668808,2668809,32.0,1081912,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22659.0,2103.0 +2668809,2668810,36.0,1081913,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668810,2668811,44.0,1081913,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22669.0,2104.0 +2668811,2668812,15.0,1081913,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22669.0,2104.0 +2668812,2668813,13.0,1081913,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22669.0,2104.0 +2668813,2668814,4.0,1081913,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668814,2668815,21.0,1081913,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668815,2668816,32.0,1081913,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22669.0,2104.0 +2668816,2668817,36.0,1081914,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668817,2668818,44.0,1081914,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668818,2668819,15.0,1081914,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668819,2668820,13.0,1081914,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668820,2668821,4.0,1081914,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668821,2668822,21.0,1081914,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668822,2668823,32.0,1081914,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668823,2668824,36.0,1081915,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668824,2668825,44.0,1081915,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22670.0,2104.0 +2668825,2668826,15.0,1081915,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22670.0,2104.0 +2668826,2668827,13.0,1081915,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22670.0,2104.0 +2668827,2668828,4.0,1081915,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22670.0,2104.0 +2668828,2668829,21.0,1081915,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668829,2668830,32.0,1081915,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22670.0,2104.0 +2668830,2668831,36.0,1081916,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668831,2668832,44.0,1081916,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22667.0,2103.0 +2668832,2668833,15.0,1081916,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22667.0,2103.0 +2668833,2668834,13.0,1081916,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22667.0,2103.0 +2668834,2668835,4.0,1081916,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668835,2668836,21.0,1081916,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668836,2668837,32.0,1081916,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22667.0,2103.0 +2668837,2668838,32.0,1081917,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22669.0,2104.0 +2668838,2668839,11.0,1081917,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22669.0,2104.0 +2668839,2668840,1.0,1081917,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668840,2668841,26.0,1081917,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22669.0,2104.0 +2668841,2668842,19.0,1081918,1,2,0,2,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22659.0,2103.0 +2668842,2668843,19.0,1081918,2,2,12,2,1.0,25.0,4.0,15.0,4.0,722Z,16.0,22659.0,2103.0 +2668843,2668844,23.0,1081919,1,2,0,2,1.0,38.0,4.0,15.0,4.0,7211,16.0,22667.0,2103.0 +2668844,2668845,2.0,1081919,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668845,2668846,24.0,1081920,1,2,0,2,1.0,25.0,5.0,-9.0,4.0,7211,16.0,22667.0,2103.0 +2668846,2668847,1.0,1081920,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2668847,2668848,24.0,1081921,1,2,0,2,1.0,25.0,5.0,-9.0,4.0,7211,16.0,22659.0,2103.0 +2668848,2668849,1.0,1081921,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22659.0,2103.0 +2668849,2668850,23.0,1081922,1,2,0,2,1.0,38.0,4.0,15.0,4.0,7211,16.0,22669.0,2104.0 +2668850,2668851,2.0,1081922,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22669.0,2104.0 +2668851,2668852,23.0,1081923,1,2,0,2,1.0,38.0,4.0,15.0,4.0,7211,16.0,22667.0,2103.0 +2668852,2668853,2.0,1081923,2,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22667.0,2103.0 +2670833,2670834,67.0,1082821,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22637.0,2100.0 +2670834,2670835,64.0,1082821,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22637.0,2100.0 +2670835,2670836,52.0,1082821,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22637.0,2100.0 +2670842,2670843,69.0,1082825,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670843,2670844,68.0,1082825,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670850,2670851,76.0,1082828,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670851,2670852,27.0,1082828,2,1,10,2,1.0,40.0,1.0,15.0,4.0,454110,5.0,22637.0,2100.0 +2670852,2670853,76.0,1082829,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670853,2670854,27.0,1082829,2,1,10,2,1.0,40.0,1.0,15.0,4.0,454110,5.0,22637.0,2100.0 +2670858,2670859,94.0,1082831,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22637.0,2100.0 +2670860,2670861,94.0,1082833,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22637.0,2100.0 +2670863,2670864,69.0,1082835,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2670864,2670865,68.0,1082835,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2670867,2670868,90.0,1082838,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670873,2670874,85.0,1082843,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670874,2670875,78.0,1082843,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670879,2670880,78.0,1082846,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670880,2670881,72.0,1082847,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22635.0,2100.0 +2670884,2670885,66.0,1082851,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670886,2670887,69.0,1082853,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2670888,2670889,76.0,1082855,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670891,2670892,76.0,1082858,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670899,2670900,66.0,1082863,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670900,2670901,38.0,1082863,2,1,2,2,1.0,20.0,6.0,-9.0,4.0,4249Z,4.0,22637.0,2100.0 +2670901,2670902,66.0,1082864,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670902,2670903,38.0,1082864,2,1,2,2,1.0,20.0,6.0,-9.0,4.0,4249Z,4.0,22637.0,2100.0 +2670903,2670904,66.0,1082865,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670904,2670905,38.0,1082865,2,1,2,2,1.0,20.0,6.0,-9.0,4.0,4249Z,4.0,22637.0,2100.0 +2670907,2670908,66.0,1082867,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670908,2670909,38.0,1082867,2,1,2,2,1.0,20.0,6.0,-9.0,4.0,4249Z,4.0,22637.0,2100.0 +2670911,2670912,66.0,1082869,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670912,2670913,38.0,1082869,2,1,2,2,1.0,20.0,6.0,-9.0,4.0,4249Z,4.0,22637.0,2100.0 +2670916,2670917,73.0,1082872,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670918,2670919,80.0,1082874,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670927,2670928,68.0,1082883,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670928,2670929,90.0,1082884,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670930,2670931,65.0,1082886,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670931,2670932,14.0,1082886,2,1,7,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22637.0,2100.0 +2670932,2670933,76.0,1082887,1,1,0,3,2.0,30.0,1.0,-9.0,4.0,5413,10.0,22636.0,2100.0 +2670933,2670934,77.0,1082887,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2670934,2670935,50.0,1082887,3,1,2,3,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22636.0,2100.0 +2670935,2670936,18.0,1082887,4,2,7,3,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22636.0,2100.0 +2670944,2670945,76.0,1082891,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22637.0,2100.0 +2670945,2670946,70.0,1082891,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670953,2670954,74.0,1082896,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670969,2670970,94.0,1082907,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22637.0,2100.0 +2670970,2670971,94.0,1082907,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670977,2670978,67.0,1082914,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2670981,2670982,74.0,1082918,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670982,2670983,67.0,1082919,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670983,2670984,72.0,1082920,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22636.0,2100.0 +2670992,2670993,87.0,1082927,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2670999,2671000,71.0,1082934,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671012,2671013,83.0,1082943,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22636.0,2100.0 +2671013,2671014,71.0,1082943,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2671020,2671021,78.0,1082947,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2671021,2671022,74.0,1082947,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2671022,2671023,83.0,1082948,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22637.0,2100.0 +2671023,2671024,71.0,1082948,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671024,2671025,83.0,1082949,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22635.0,2100.0 +2671025,2671026,71.0,1082949,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22635.0,2100.0 +2671028,2671029,83.0,1082951,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22637.0,2100.0 +2671029,2671030,71.0,1082951,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671032,2671033,83.0,1082953,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22635.0,2100.0 +2671033,2671034,71.0,1082953,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22635.0,2100.0 +2671036,2671037,78.0,1082955,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671037,2671038,74.0,1082955,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671038,2671039,83.0,1082956,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22635.0,2100.0 +2671039,2671040,71.0,1082956,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22635.0,2100.0 +2671042,2671043,78.0,1082958,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671043,2671044,80.0,1082958,2,1,1,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22637.0,2100.0 +2671044,2671045,87.0,1082959,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22637.0,2100.0 +2671045,2671046,85.0,1082959,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671046,2671047,83.0,1082960,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22637.0,2100.0 +2671047,2671048,71.0,1082960,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671048,2671049,83.0,1082961,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22637.0,2100.0 +2671049,2671050,71.0,1082961,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671054,2671055,81.0,1082965,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671056,2671057,81.0,1082967,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671061,2671062,68.0,1082972,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671063,2671064,85.0,1082974,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671066,2671067,73.0,1082977,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2671068,2671069,85.0,1082979,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671071,2671072,89.0,1082982,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671073,2671074,87.0,1082984,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671079,2671080,77.0,1082990,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671082,2671083,68.0,1082993,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671083,2671084,89.0,1082994,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671088,2671089,81.0,1082999,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671093,2671094,72.0,1083004,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2671094,2671095,72.0,1083005,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671102,2671103,77.0,1083013,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671104,2671105,72.0,1083015,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671105,2671106,73.0,1083016,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671107,2671108,73.0,1083018,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2671109,2671110,77.0,1083020,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671111,2671112,67.0,1083022,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2671112,2671113,74.0,1083023,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22635.0,2100.0 +2671115,2671116,80.0,1083026,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671123,2671124,66.0,1083034,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22637.0,2100.0 +2671126,2671127,94.0,1083037,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2671127,2671128,87.0,1083038,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671128,2671129,85.0,1083039,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671130,2671131,85.0,1083041,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671155,2671156,59.0,1083058,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671156,2671157,57.0,1083058,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,44611,5.0,22637.0,2100.0 +2671169,2671170,46.0,1083065,1,2,0,2,1.0,43.0,1.0,13.0,4.0,442,5.0,22635.0,2100.0 +2671170,2671171,25.0,1083065,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22635.0,2100.0 +2671171,2671172,46.0,1083066,1,2,0,2,1.0,43.0,1.0,13.0,4.0,442,5.0,22637.0,2100.0 +2671172,2671173,25.0,1083066,2,1,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671182,2671183,63.0,1083072,1,2,0,2,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22637.0,2100.0 +2671192,2671193,55.0,1083079,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671193,2671194,53.0,1083079,2,2,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671194,2671195,20.0,1083079,3,2,2,2,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22637.0,2100.0 +2671195,2671196,18.0,1083079,4,1,2,2,1.0,7.0,6.0,14.0,4.0,722Z,16.0,22637.0,2100.0 +2671228,2671229,48.0,1083090,1,2,0,2,1.0,30.0,1.0,-9.0,4.0,7211,16.0,22635.0,2100.0 +2671230,2671231,62.0,1083092,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22637.0,2100.0 +2671231,2671232,56.0,1083093,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22636.0,2100.0 +2671232,2671233,56.0,1083094,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22636.0,2100.0 +2671234,2671235,56.0,1083096,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22637.0,2100.0 +2671239,2671240,59.0,1083101,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671241,2671242,53.0,1083103,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671242,2671243,50.0,1083103,2,2,15,2,1.0,6.0,1.0,-9.0,4.0,722Z,16.0,22637.0,2100.0 +2671244,2671245,56.0,1083105,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671245,2671246,62.0,1083106,1,1,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671268,2671269,45.0,1083113,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22637.0,2100.0 +2671269,2671270,24.0,1083113,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22637.0,2100.0 +2671270,2671271,6.0,1083113,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22637.0,2100.0 +2671271,2671272,4.0,1083113,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22637.0,2100.0 +2671272,2671273,0.0,1083113,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22637.0,2100.0 +2671318,2671319,45.0,1083123,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22635.0,2100.0 +2671319,2671320,24.0,1083123,2,2,1,2,2.0,25.0,1.0,15.0,4.0,623M,14.0,22635.0,2100.0 +2671320,2671321,6.0,1083123,3,2,2,2,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22635.0,2100.0 +2671321,2671322,4.0,1083123,4,1,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22635.0,2100.0 +2671322,2671323,0.0,1083123,5,1,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22635.0,2100.0 +2671323,2671324,47.0,1083124,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671324,2671325,12.0,1083124,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22637.0,2100.0 +2671331,2671332,47.0,1083128,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671332,2671333,12.0,1083128,2,2,2,2,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22637.0,2100.0 +2671356,2671357,52.0,1083136,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22637.0,2100.0 +2671357,2671358,50.0,1083136,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22637.0,2100.0 +2671358,2671359,22.0,1083136,3,1,4,2,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22637.0,2100.0 +2671368,2671369,48.0,1083142,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,4247,4.0,22637.0,2100.0 +2671369,2671370,48.0,1083143,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,4247,4.0,22637.0,2100.0 +2671372,2671373,59.0,1083146,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,53M,9.0,22636.0,2100.0 +2671373,2671374,52.0,1083146,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,53M,9.0,22636.0,2100.0 +2671378,2671379,58.0,1083149,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22637.0,2100.0 +2671379,2671380,46.0,1083150,1,1,0,1,1.0,45.0,1.0,15.0,2.0,622M,15.0,22637.0,2100.0 +2671380,2671381,59.0,1083150,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671383,2671384,54.0,1083152,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,51912,8.0,22636.0,2100.0 +2671384,2671385,52.0,1083153,1,1,0,1,1.0,45.0,3.0,-9.0,4.0,23,2.0,22637.0,2100.0 +2671388,2671389,58.0,1083157,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,3219ZM,3.0,22637.0,2100.0 +2671389,2671390,52.0,1083158,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2671392,2671393,60.0,1083161,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671393,2671394,49.0,1083161,2,1,1,1,1.0,40.0,6.0,-9.0,4.0,7211,16.0,22637.0,2100.0 +2671394,2671395,58.0,1083162,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2671413,2671414,44.0,1083168,1,1,0,2,1.0,60.0,1.0,-9.0,2.0,722Z,16.0,22637.0,2100.0 +2671414,2671415,34.0,1083168,2,2,15,1,1.0,45.0,4.0,-9.0,4.0,722Z,16.0,22637.0,2100.0 +2671415,2671416,44.0,1083169,1,1,0,2,1.0,60.0,1.0,-9.0,2.0,722Z,16.0,22637.0,2100.0 +2671416,2671417,34.0,1083169,2,2,15,1,1.0,45.0,4.0,-9.0,4.0,722Z,16.0,22637.0,2100.0 +2671431,2671432,28.0,1083177,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,4533,5.0,22637.0,2100.0 +2671432,2671433,27.0,1083178,1,1,0,2,1.0,40.0,6.0,-9.0,4.0,336M,3.0,22636.0,2100.0 +2671433,2671434,27.0,1083179,1,1,0,2,1.0,40.0,6.0,-9.0,4.0,336M,3.0,22637.0,2100.0 +2671434,2671435,27.0,1083180,1,1,0,2,1.0,40.0,6.0,-9.0,4.0,336M,3.0,22637.0,2100.0 +2671435,2671436,27.0,1083181,1,1,0,2,1.0,40.0,6.0,-9.0,4.0,336M,3.0,22637.0,2100.0 +2671437,2671438,28.0,1083183,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22637.0,2100.0 +2671442,2671443,28.0,1083188,1,2,0,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22636.0,2100.0 +2671447,2671448,25.0,1083193,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,7211,16.0,22637.0,2100.0 +2671458,2671459,29.0,1083198,1,2,0,2,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22637.0,2100.0 +2671459,2671460,9.0,1083198,2,2,2,2,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22637.0,2100.0 +2671460,2671461,8.0,1083198,3,2,2,2,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22637.0,2100.0 +2671461,2671462,4.0,1083198,4,2,2,2,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22637.0,2100.0 +2671489,2671490,29.0,1083206,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671490,2671491,5.0,1083206,2,2,2,2,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22637.0,2100.0 +2671491,2671492,2.0,1083206,3,2,2,2,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22637.0,2100.0 +2671495,2671496,37.0,1083208,1,1,0,3,1.0,50.0,2.0,-9.0,4.0,23,2.0,22636.0,2100.0 +2671496,2671497,34.0,1083208,2,2,1,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22636.0,2100.0 +2671497,2671498,9.0,1083208,3,1,2,3,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22636.0,2100.0 +2671498,2671499,4.0,1083208,4,1,2,3,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22636.0,2100.0 +2671518,2671519,35.0,1083213,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22637.0,2100.0 +2671519,2671520,36.0,1083213,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22637.0,2100.0 +2671520,2671521,10.0,1083213,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22637.0,2100.0 +2671521,2671522,9.0,1083213,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22637.0,2100.0 +2671522,2671523,2.0,1083213,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22637.0,2100.0 +2671528,2671529,41.0,1083216,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5121,8.0,22636.0,2100.0 +2671532,2671533,40.0,1083220,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,336M,3.0,22637.0,2100.0 +2671533,2671534,36.0,1083220,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671534,2671535,6.0,1083220,3,1,2,1,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22637.0,2100.0 +2671535,2671536,4.0,1083220,4,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22637.0,2100.0 +2671544,2671545,32.0,1083223,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22637.0,2100.0 +2671545,2671546,11.0,1083223,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22637.0,2100.0 +2671546,2671547,1.0,1083223,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22637.0,2100.0 +2671547,2671548,26.0,1083223,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22637.0,2100.0 +2671556,2671557,44.0,1083226,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671557,2671558,14.0,1083226,2,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22637.0,2100.0 +2671558,2671559,9.0,1083226,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22637.0,2100.0 +2671559,2671560,4.0,1083226,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22637.0,2100.0 +2671560,2671561,44.0,1083227,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671561,2671562,14.0,1083227,2,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22637.0,2100.0 +2671562,2671563,9.0,1083227,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22637.0,2100.0 +2671563,2671564,4.0,1083227,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22637.0,2100.0 +2671564,2671565,44.0,1083228,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671565,2671566,14.0,1083228,2,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22637.0,2100.0 +2671566,2671567,9.0,1083228,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22637.0,2100.0 +2671567,2671568,4.0,1083228,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22637.0,2100.0 +2671568,2671569,44.0,1083229,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671569,2671570,14.0,1083229,2,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22637.0,2100.0 +2671570,2671571,9.0,1083229,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22637.0,2100.0 +2671571,2671572,4.0,1083229,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22637.0,2100.0 +2671572,2671573,44.0,1083230,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22637.0,2100.0 +2671573,2671574,14.0,1083230,2,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22637.0,2100.0 +2671574,2671575,9.0,1083230,3,2,2,1,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22637.0,2100.0 +2671575,2671576,4.0,1083230,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22637.0,2100.0 +2671630,2671631,23.0,1083247,1,1,0,1,1.0,42.0,1.0,-9.0,4.0,484,6.0,22637.0,2100.0 +2671631,2671632,18.0,1083247,2,2,5,1,1.0,20.0,5.0,-9.0,4.0,484,6.0,22637.0,2100.0 +2671632,2671633,23.0,1083248,1,2,0,1,1.0,40.0,3.0,-9.0,4.0,522M,9.0,22637.0,2100.0 +2671633,2671634,4.0,1083248,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22637.0,2100.0 +2671634,2671635,3.0,1083248,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22637.0,2100.0 +2671635,2671636,0.0,1083248,4,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22637.0,2100.0 +2671640,2671641,23.0,1083250,1,2,0,1,1.0,40.0,3.0,-9.0,4.0,522M,9.0,22637.0,2100.0 +2671641,2671642,4.0,1083250,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22637.0,2100.0 +2671642,2671643,3.0,1083250,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22637.0,2100.0 +2671643,2671644,0.0,1083250,4,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22637.0,2100.0 +2671644,2671645,60.0,1083251,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,334M2,3.0,22638.0,2100.0 +2671645,2671646,62.0,1083251,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,334M2,3.0,22638.0,2100.0 +2671646,2671647,60.0,1083252,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,334M2,3.0,22638.0,2100.0 +2671647,2671648,62.0,1083252,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,334M2,3.0,22638.0,2100.0 +2671648,2671649,60.0,1083253,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,334M2,3.0,22638.0,2100.0 +2671649,2671650,62.0,1083253,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,334M2,3.0,22638.0,2100.0 +2671650,2671651,61.0,1083254,1,2,0,3,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671651,2671652,54.0,1083255,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671652,2671653,47.0,1083255,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22638.0,2100.0 +2671653,2671654,20.0,1083255,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22638.0,2100.0 +2671654,2671655,54.0,1083256,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671655,2671656,47.0,1083256,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22638.0,2100.0 +2671656,2671657,20.0,1083256,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22638.0,2100.0 +2671657,2671658,54.0,1083257,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671658,2671659,47.0,1083257,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22638.0,2100.0 +2671659,2671660,20.0,1083257,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22638.0,2100.0 +2671660,2671661,54.0,1083258,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671661,2671662,47.0,1083258,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22638.0,2100.0 +2671662,2671663,20.0,1083258,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22638.0,2100.0 +2671663,2671664,54.0,1083259,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671664,2671665,47.0,1083259,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22638.0,2100.0 +2671665,2671666,20.0,1083259,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22638.0,2100.0 +2671666,2671667,54.0,1083260,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671667,2671668,47.0,1083260,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22638.0,2100.0 +2671668,2671669,20.0,1083260,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22638.0,2100.0 +2671669,2671670,54.0,1083261,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671670,2671671,47.0,1083261,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22638.0,2100.0 +2671671,2671672,20.0,1083261,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22638.0,2100.0 +2671672,2671673,54.0,1083262,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671673,2671674,47.0,1083262,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22638.0,2100.0 +2671674,2671675,20.0,1083262,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22638.0,2100.0 +2671675,2671676,54.0,1083263,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671676,2671677,47.0,1083263,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22638.0,2100.0 +2671677,2671678,20.0,1083263,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22638.0,2100.0 +2671678,2671679,54.0,1083264,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671679,2671680,47.0,1083264,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22638.0,2100.0 +2671680,2671681,20.0,1083264,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22638.0,2100.0 +2671681,2671682,54.0,1083265,1,2,0,1,1.0,20.0,3.0,-9.0,4.0,5416,10.0,22638.0,2100.0 +2671682,2671683,53.0,1083265,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,5415,10.0,22638.0,2100.0 +2671683,2671684,56.0,1083266,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,4244,4.0,22638.0,2100.0 +2671684,2671685,60.0,1083266,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671685,2671686,62.0,1083267,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671686,2671687,61.0,1083267,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22638.0,2100.0 +2671687,2671688,62.0,1083268,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671688,2671689,61.0,1083268,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22638.0,2100.0 +2671689,2671690,62.0,1083269,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671690,2671691,61.0,1083269,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22638.0,2100.0 +2671691,2671692,62.0,1083270,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671692,2671693,61.0,1083270,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,522M,9.0,22638.0,2100.0 +2671693,2671694,52.0,1083271,1,2,0,1,1.0,48.0,1.0,-9.0,4.0,6214,14.0,22638.0,2100.0 +2671694,2671695,23.0,1083271,2,2,2,1,1.0,10.0,1.0,15.0,4.0,6111,13.0,22638.0,2100.0 +2671695,2671696,22.0,1083271,3,2,2,1,1.0,25.0,4.0,15.0,4.0,6111,13.0,22638.0,2100.0 +2671696,2671697,61.0,1083272,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22638.0,2100.0 +2671697,2671698,26.0,1083272,2,2,2,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22638.0,2100.0 +2671698,2671699,61.0,1083273,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22638.0,2100.0 +2671699,2671700,26.0,1083273,2,2,2,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22638.0,2100.0 +2671700,2671701,58.0,1083274,1,1,0,1,1.0,40.0,5.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671701,2671702,34.0,1083274,2,2,1,1,1.0,44.0,1.0,-9.0,4.0,44511,5.0,22638.0,2100.0 +2671702,2671703,45.0,1083275,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22638.0,2100.0 +2671703,2671704,21.0,1083275,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22638.0,2100.0 +2671704,2671705,45.0,1083276,1,2,0,1,1.0,35.0,1.0,-9.0,4.0,6242,14.0,22638.0,2100.0 +2671705,2671706,21.0,1083276,2,2,3,1,1.0,38.0,1.0,15.0,4.0,623M,14.0,22638.0,2100.0 +2671716,2671717,54.0,1083282,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671717,2671718,64.0,1083282,2,1,13,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22638.0,2100.0 +2671718,2671719,54.0,1083283,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671719,2671720,64.0,1083283,2,1,13,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22638.0,2100.0 +2671720,2671721,54.0,1083284,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671721,2671722,64.0,1083284,2,1,13,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22638.0,2100.0 +2671724,2671725,54.0,1083286,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671725,2671726,28.0,1083286,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671726,2671727,54.0,1083287,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671727,2671728,28.0,1083287,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671728,2671729,54.0,1083288,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671729,2671730,28.0,1083288,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671730,2671731,54.0,1083289,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671731,2671732,28.0,1083289,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671734,2671735,54.0,1083291,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671735,2671736,28.0,1083291,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671736,2671737,54.0,1083292,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671737,2671738,28.0,1083292,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671738,2671739,54.0,1083293,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671739,2671740,28.0,1083293,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671740,2671741,54.0,1083294,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671741,2671742,28.0,1083294,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671742,2671743,54.0,1083295,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671743,2671744,28.0,1083295,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671744,2671745,54.0,1083296,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671745,2671746,28.0,1083296,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671746,2671747,54.0,1083297,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671747,2671748,28.0,1083297,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671748,2671749,54.0,1083298,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671749,2671750,28.0,1083298,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671750,2671751,54.0,1083299,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671751,2671752,28.0,1083299,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671752,2671753,54.0,1083300,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671753,2671754,28.0,1083300,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671754,2671755,37.0,1083301,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5241,9.0,22638.0,2100.0 +2671755,2671756,34.0,1083301,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671756,2671757,3.0,1083301,3,1,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22638.0,2100.0 +2671757,2671758,3.0,1083301,4,2,2,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22638.0,2100.0 +2671758,2671759,61.0,1083301,5,2,8,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671759,2671760,35.0,1083302,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22638.0,2100.0 +2671760,2671761,36.0,1083302,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22638.0,2100.0 +2671761,2671762,10.0,1083302,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22638.0,2100.0 +2671762,2671763,9.0,1083302,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22638.0,2100.0 +2671763,2671764,2.0,1083302,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671764,2671765,35.0,1083303,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22638.0,2100.0 +2671765,2671766,36.0,1083303,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22638.0,2100.0 +2671766,2671767,10.0,1083303,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22638.0,2100.0 +2671767,2671768,9.0,1083303,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22638.0,2100.0 +2671768,2671769,2.0,1083303,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671769,2671770,35.0,1083304,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22638.0,2100.0 +2671770,2671771,36.0,1083304,2,2,1,3,1.0,40.0,1.0,-9.0,4.0,814,17.0,22638.0,2100.0 +2671771,2671772,10.0,1083304,3,2,2,3,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22638.0,2100.0 +2671772,2671773,9.0,1083304,4,2,2,3,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22638.0,2100.0 +2671773,2671774,2.0,1083304,5,2,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671774,2671775,39.0,1083305,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671775,2671776,41.0,1083305,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671776,2671777,34.0,1083306,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22638.0,2100.0 +2671777,2671778,31.0,1083306,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22638.0,2100.0 +2671778,2671779,34.0,1083307,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22638.0,2100.0 +2671779,2671780,31.0,1083307,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22638.0,2100.0 +2671780,2671781,39.0,1083308,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671781,2671782,41.0,1083308,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671782,2671783,39.0,1083309,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671783,2671784,41.0,1083309,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671784,2671785,36.0,1083310,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671785,2671786,26.0,1083310,2,2,13,1,1.0,55.0,1.0,16.0,4.0,611M1,13.0,22638.0,2100.0 +2671786,2671787,39.0,1083311,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671787,2671788,41.0,1083311,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671788,2671789,39.0,1083312,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671789,2671790,41.0,1083312,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671790,2671791,36.0,1083313,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671791,2671792,26.0,1083313,2,2,13,1,1.0,55.0,1.0,16.0,4.0,611M1,13.0,22638.0,2100.0 +2671792,2671793,39.0,1083314,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671793,2671794,41.0,1083314,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671796,2671797,39.0,1083316,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671797,2671798,41.0,1083316,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671798,2671799,34.0,1083317,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22638.0,2100.0 +2671799,2671800,31.0,1083317,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22638.0,2100.0 +2671800,2671801,36.0,1083318,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671801,2671802,26.0,1083318,2,2,13,1,1.0,55.0,1.0,16.0,4.0,611M1,13.0,22638.0,2100.0 +2671802,2671803,39.0,1083319,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671803,2671804,41.0,1083319,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671804,2671805,36.0,1083320,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22638.0,2100.0 +2671805,2671806,26.0,1083320,2,2,13,1,1.0,55.0,1.0,16.0,4.0,611M1,13.0,22638.0,2100.0 +2671806,2671807,28.0,1083321,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22638.0,2100.0 +2671807,2671808,24.0,1083321,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22638.0,2100.0 +2671808,2671809,28.0,1083322,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22638.0,2100.0 +2671809,2671810,24.0,1083322,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22638.0,2100.0 +2671810,2671811,28.0,1083323,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22638.0,2100.0 +2671811,2671812,24.0,1083323,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22638.0,2100.0 +2671812,2671813,28.0,1083324,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22638.0,2100.0 +2671813,2671814,24.0,1083324,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22638.0,2100.0 +2671815,2671816,36.0,1083326,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22638.0,2100.0 +2671816,2671817,33.0,1083326,2,1,15,2,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22638.0,2100.0 +2671817,2671818,37.0,1083327,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6111,13.0,22638.0,2100.0 +2671818,2671819,37.0,1083328,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6111,13.0,22638.0,2100.0 +2671819,2671820,33.0,1083329,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,4481,5.0,22638.0,2100.0 +2671820,2671821,31.0,1083330,1,2,0,1,1.0,52.0,1.0,-9.0,4.0,3391,3.0,22638.0,2100.0 +2671821,2671822,33.0,1083331,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,722Z,16.0,22638.0,2100.0 +2671822,2671823,26.0,1083331,2,2,12,1,1.0,35.0,2.0,-9.0,4.0,722Z,16.0,22638.0,2100.0 +2671825,2671826,36.0,1083333,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22638.0,2100.0 +2671826,2671827,35.0,1083333,2,2,13,1,1.0,45.0,1.0,-9.0,4.0,8121M,17.0,22638.0,2100.0 +2671827,2671828,36.0,1083334,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22638.0,2100.0 +2671828,2671829,35.0,1083334,2,2,13,1,1.0,45.0,1.0,-9.0,4.0,8121M,17.0,22638.0,2100.0 +2671829,2671830,36.0,1083335,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,812112,17.0,22638.0,2100.0 +2671830,2671831,35.0,1083335,2,2,13,1,1.0,45.0,1.0,-9.0,4.0,8121M,17.0,22638.0,2100.0 +2671831,2671832,44.0,1083336,1,1,0,1,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22638.0,2100.0 +2671832,2671833,45.0,1083336,2,1,12,1,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22638.0,2100.0 +2671833,2671834,44.0,1083337,1,1,0,1,1.0,38.0,1.0,-9.0,4.0,722Z,16.0,22638.0,2100.0 +2671834,2671835,45.0,1083337,2,1,12,1,1.0,37.0,1.0,-9.0,4.0,722Z,16.0,22638.0,2100.0 +2671835,2671836,26.0,1083338,1,1,0,1,1.0,34.0,1.0,15.0,4.0,4523,5.0,22638.0,2100.0 +2671836,2671837,25.0,1083338,2,1,12,1,1.0,36.0,1.0,15.0,4.0,45221,5.0,22638.0,2100.0 +2671841,2671842,34.0,1083341,1,2,0,1,1.0,40.0,2.0,15.0,4.0,6231,14.0,22638.0,2100.0 +2671842,2671843,34.0,1083342,1,2,0,1,1.0,40.0,2.0,15.0,4.0,6231,14.0,22638.0,2100.0 +2671845,2671846,37.0,1083345,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22638.0,2100.0 +2671847,2671848,36.0,1083347,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671848,2671849,64.0,1083347,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671849,2671850,36.0,1083348,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671850,2671851,64.0,1083348,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671853,2671854,36.0,1083350,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671854,2671855,64.0,1083350,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671855,2671856,36.0,1083351,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671856,2671857,64.0,1083351,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671859,2671860,36.0,1083353,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671860,2671861,64.0,1083353,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671861,2671862,36.0,1083354,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671862,2671863,64.0,1083354,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671863,2671864,36.0,1083355,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671864,2671865,64.0,1083355,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671865,2671866,36.0,1083356,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671866,2671867,64.0,1083356,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671867,2671868,36.0,1083357,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671868,2671869,64.0,1083357,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671869,2671870,36.0,1083358,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671870,2671871,64.0,1083358,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671871,2671872,36.0,1083359,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671872,2671873,64.0,1083359,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671873,2671874,36.0,1083360,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671874,2671875,64.0,1083360,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671875,2671876,38.0,1083361,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671876,2671877,43.0,1083361,2,1,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671877,2671878,14.0,1083361,3,1,2,4,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22638.0,2100.0 +2671878,2671879,9.0,1083361,4,1,2,4,-9.0,-9.0,-9.0,6.0,-9.0,-9,0.0,22638.0,2100.0 +2671879,2671880,43.0,1083362,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22638.0,2100.0 +2671880,2671881,44.0,1083362,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671881,2671882,23.0,1083362,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671882,2671883,19.0,1083362,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22638.0,2100.0 +2671883,2671884,2.0,1083362,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671884,2671885,43.0,1083363,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22638.0,2100.0 +2671885,2671886,44.0,1083363,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671886,2671887,23.0,1083363,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671887,2671888,19.0,1083363,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22638.0,2100.0 +2671888,2671889,2.0,1083363,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671889,2671890,43.0,1083364,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22638.0,2100.0 +2671890,2671891,44.0,1083364,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671891,2671892,23.0,1083364,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671892,2671893,19.0,1083364,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22638.0,2100.0 +2671893,2671894,2.0,1083364,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671894,2671895,43.0,1083365,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22638.0,2100.0 +2671895,2671896,44.0,1083365,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671896,2671897,23.0,1083365,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671897,2671898,19.0,1083365,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22638.0,2100.0 +2671898,2671899,2.0,1083365,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671899,2671900,43.0,1083366,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22638.0,2100.0 +2671900,2671901,44.0,1083366,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671901,2671902,23.0,1083366,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671902,2671903,19.0,1083366,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22638.0,2100.0 +2671903,2671904,2.0,1083366,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671904,2671905,43.0,1083367,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22638.0,2100.0 +2671905,2671906,44.0,1083367,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671906,2671907,23.0,1083367,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671907,2671908,19.0,1083367,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22638.0,2100.0 +2671908,2671909,2.0,1083367,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671909,2671910,43.0,1083368,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22638.0,2100.0 +2671910,2671911,44.0,1083368,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671911,2671912,23.0,1083368,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671912,2671913,19.0,1083368,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22638.0,2100.0 +2671913,2671914,2.0,1083368,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671914,2671915,43.0,1083369,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22638.0,2100.0 +2671915,2671916,44.0,1083369,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671916,2671917,23.0,1083369,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671917,2671918,19.0,1083369,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22638.0,2100.0 +2671918,2671919,2.0,1083369,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671919,2671920,43.0,1083370,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22638.0,2100.0 +2671920,2671921,44.0,1083370,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671921,2671922,23.0,1083370,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671922,2671923,19.0,1083370,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22638.0,2100.0 +2671923,2671924,2.0,1083370,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671924,2671925,43.0,1083371,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22638.0,2100.0 +2671925,2671926,44.0,1083371,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671926,2671927,23.0,1083371,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671927,2671928,19.0,1083371,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22638.0,2100.0 +2671928,2671929,2.0,1083371,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671929,2671930,43.0,1083372,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,447,5.0,22638.0,2100.0 +2671930,2671931,44.0,1083372,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671931,2671932,23.0,1083372,3,2,2,1,1.0,25.0,1.0,-9.0,4.0,44512,5.0,22638.0,2100.0 +2671932,2671933,19.0,1083372,4,2,2,1,1.0,30.0,1.0,14.0,4.0,4523,5.0,22638.0,2100.0 +2671933,2671934,2.0,1083372,5,1,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2671934,2671935,38.0,1083373,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671935,2671936,17.0,1083373,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671936,2671937,42.0,1083373,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671937,2671938,21.0,1083373,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671938,2671939,38.0,1083374,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671939,2671940,17.0,1083374,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671940,2671941,42.0,1083374,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671941,2671942,21.0,1083374,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671942,2671943,38.0,1083375,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671943,2671944,17.0,1083375,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671944,2671945,42.0,1083375,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671945,2671946,21.0,1083375,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671946,2671947,38.0,1083376,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671947,2671948,17.0,1083376,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671948,2671949,42.0,1083376,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671949,2671950,21.0,1083376,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671950,2671951,38.0,1083377,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671951,2671952,17.0,1083377,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671952,2671953,42.0,1083377,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671953,2671954,21.0,1083377,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671954,2671955,38.0,1083378,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671955,2671956,17.0,1083378,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671956,2671957,42.0,1083378,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671957,2671958,21.0,1083378,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671958,2671959,38.0,1083379,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671959,2671960,17.0,1083379,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671960,2671961,42.0,1083379,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671961,2671962,21.0,1083379,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671962,2671963,38.0,1083380,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671963,2671964,17.0,1083380,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671964,2671965,42.0,1083380,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671965,2671966,21.0,1083380,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671974,2671975,38.0,1083383,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671975,2671976,17.0,1083383,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671976,2671977,42.0,1083383,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671977,2671978,21.0,1083383,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671982,2671983,38.0,1083385,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671983,2671984,17.0,1083385,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671984,2671985,42.0,1083385,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671985,2671986,21.0,1083385,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671986,2671987,38.0,1083386,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671987,2671988,17.0,1083386,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671988,2671989,42.0,1083386,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671989,2671990,21.0,1083386,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671990,2671991,38.0,1083387,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671991,2671992,17.0,1083387,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2671992,2671993,42.0,1083387,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2671993,2671994,21.0,1083387,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2671998,2671999,38.0,1083389,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2671999,2672000,17.0,1083389,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2672000,2672001,42.0,1083389,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2672001,2672002,21.0,1083389,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2672002,2672003,38.0,1083390,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2672003,2672004,17.0,1083390,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2672004,2672005,42.0,1083390,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2672005,2672006,21.0,1083390,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2672006,2672007,38.0,1083391,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2672007,2672008,17.0,1083391,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2672008,2672009,42.0,1083391,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2672009,2672010,21.0,1083391,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2672010,2672011,38.0,1083392,1,1,0,1,2.0,45.0,1.0,-9.0,4.0,623M,14.0,22638.0,2100.0 +2672011,2672012,17.0,1083392,2,1,2,4,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22638.0,2100.0 +2672012,2672013,42.0,1083392,3,2,12,2,1.0,32.0,1.0,-9.0,4.0,6231,14.0,22638.0,2100.0 +2672013,2672014,21.0,1083392,4,1,12,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22638.0,2100.0 +2672014,2672015,41.0,1083393,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22638.0,2100.0 +2672015,2672016,31.0,1083393,2,2,1,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22638.0,2100.0 +2672016,2672017,6.0,1083393,3,2,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22638.0,2100.0 +2672017,2672018,2.0,1083393,4,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672022,2672023,32.0,1083395,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672023,2672024,11.0,1083395,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22638.0,2100.0 +2672024,2672025,1.0,1083395,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672025,2672026,26.0,1083395,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672026,2672027,32.0,1083396,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672027,2672028,11.0,1083396,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22638.0,2100.0 +2672028,2672029,1.0,1083396,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672029,2672030,26.0,1083396,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672030,2672031,32.0,1083397,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672031,2672032,11.0,1083397,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22638.0,2100.0 +2672032,2672033,1.0,1083397,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672033,2672034,26.0,1083397,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672038,2672039,32.0,1083399,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672039,2672040,11.0,1083399,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22638.0,2100.0 +2672040,2672041,1.0,1083399,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672041,2672042,26.0,1083399,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672046,2672047,32.0,1083401,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672047,2672048,11.0,1083401,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22638.0,2100.0 +2672048,2672049,1.0,1083401,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672049,2672050,26.0,1083401,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672050,2672051,32.0,1083402,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672051,2672052,11.0,1083402,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22638.0,2100.0 +2672052,2672053,1.0,1083402,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672053,2672054,26.0,1083402,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672054,2672055,32.0,1083403,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672055,2672056,11.0,1083403,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22638.0,2100.0 +2672056,2672057,1.0,1083403,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672057,2672058,26.0,1083403,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672058,2672059,32.0,1083404,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672059,2672060,11.0,1083404,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22638.0,2100.0 +2672060,2672061,1.0,1083404,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672061,2672062,26.0,1083404,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672062,2672063,32.0,1083405,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672063,2672064,11.0,1083405,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22638.0,2100.0 +2672064,2672065,1.0,1083405,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672065,2672066,26.0,1083405,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672066,2672067,32.0,1083406,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672067,2672068,11.0,1083406,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22638.0,2100.0 +2672068,2672069,1.0,1083406,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672069,2672070,26.0,1083406,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672070,2672071,32.0,1083407,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2672071,2672072,11.0,1083407,2,1,2,4,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22638.0,2100.0 +2672072,2672073,1.0,1083407,3,2,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22638.0,2100.0 +2672073,2672074,26.0,1083407,4,1,13,2,3.0,25.0,4.0,-9.0,4.0,4533,5.0,22638.0,2100.0 +2701576,2701577,68.0,1094369,1,1,0,4,1.0,50.0,1.0,-9.0,4.0,8139Z,17.0,22734.0,2115.0 +2701577,2701578,62.0,1094369,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701580,2701581,67.0,1094371,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701581,2701582,64.0,1094371,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701582,2701583,52.0,1094371,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701583,2701584,67.0,1094372,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701584,2701585,64.0,1094372,2,2,5,2,2.0,25.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701585,2701586,52.0,1094372,3,2,5,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701597,2701598,65.0,1094377,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22734.0,2115.0 +2701598,2701599,60.0,1094377,2,2,1,2,1.0,60.0,1.0,-9.0,4.0,515,8.0,22734.0,2115.0 +2701601,2701602,65.0,1094379,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22734.0,2115.0 +2701602,2701603,60.0,1094379,2,2,1,2,1.0,60.0,1.0,-9.0,4.0,515,8.0,22734.0,2115.0 +2701603,2701604,65.0,1094380,1,1,0,2,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22734.0,2115.0 +2701604,2701605,60.0,1094380,2,2,1,2,1.0,60.0,1.0,-9.0,4.0,515,8.0,22734.0,2115.0 +2701611,2701612,78.0,1094383,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701612,2701613,48.0,1094383,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,336M,3.0,22734.0,2115.0 +2701613,2701614,38.0,1094383,3,1,2,2,1.0,12.0,1.0,-9.0,4.0,3219ZM,3.0,22734.0,2115.0 +2701614,2701615,21.0,1094383,4,1,7,2,1.0,32.0,6.0,15.0,4.0,3211,3.0,22734.0,2115.0 +2701615,2701616,78.0,1094384,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701616,2701617,48.0,1094384,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,336M,3.0,22734.0,2115.0 +2701617,2701618,38.0,1094384,3,1,2,2,1.0,12.0,1.0,-9.0,4.0,3219ZM,3.0,22734.0,2115.0 +2701618,2701619,21.0,1094384,4,1,7,2,1.0,32.0,6.0,15.0,4.0,3211,3.0,22734.0,2115.0 +2701619,2701620,73.0,1094385,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,92MP,18.0,22734.0,2115.0 +2701620,2701621,45.0,1094385,2,2,2,2,1.0,30.0,3.0,-9.0,4.0,55,11.0,22734.0,2115.0 +2701621,2701622,10.0,1094385,3,1,7,2,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22734.0,2115.0 +2701622,2701623,66.0,1094386,1,1,0,1,1.0,40.0,1.0,-9.0,2.0,488,6.0,22734.0,2115.0 +2701623,2701624,57.0,1094386,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,481,6.0,22734.0,2115.0 +2701624,2701625,25.0,1094386,3,1,2,1,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22734.0,2115.0 +2701625,2701626,21.0,1094386,4,2,2,1,6.0,4.0,4.0,15.0,4.0,611M1,13.0,22734.0,2115.0 +2701626,2701627,69.0,1094387,1,1,0,1,6.0,12.0,4.0,-9.0,2.0,6241,14.0,22734.0,2115.0 +2701627,2701628,68.0,1094387,2,2,1,1,1.0,10.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701628,2701629,33.0,1094387,3,2,2,1,1.0,36.0,1.0,15.0,4.0,622M,15.0,22734.0,2115.0 +2701629,2701630,69.0,1094388,1,1,0,1,6.0,12.0,4.0,-9.0,2.0,6241,14.0,22734.0,2115.0 +2701630,2701631,68.0,1094388,2,2,1,1,1.0,10.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701631,2701632,33.0,1094388,3,2,2,1,1.0,36.0,1.0,15.0,4.0,622M,15.0,22734.0,2115.0 +2701635,2701636,69.0,1094390,1,1,0,1,6.0,12.0,4.0,-9.0,2.0,6241,14.0,22734.0,2115.0 +2701636,2701637,68.0,1094390,2,2,1,1,1.0,10.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701637,2701638,33.0,1094390,3,2,2,1,1.0,36.0,1.0,15.0,4.0,622M,15.0,22734.0,2115.0 +2701638,2701639,69.0,1094391,1,1,0,1,6.0,12.0,4.0,-9.0,2.0,6241,14.0,22734.0,2115.0 +2701639,2701640,68.0,1094391,2,2,1,1,1.0,10.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701640,2701641,33.0,1094391,3,2,2,1,1.0,36.0,1.0,15.0,4.0,622M,15.0,22734.0,2115.0 +2701647,2701648,70.0,1094394,1,1,0,1,1.0,25.0,5.0,-9.0,2.0,611M1,13.0,22734.0,2115.0 +2701648,2701649,64.0,1094394,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701649,2701650,24.0,1094394,3,1,2,1,1.0,35.0,4.0,-9.0,4.0,515,8.0,22734.0,2115.0 +2701669,2701670,70.0,1094403,1,1,0,1,1.0,3.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701670,2701671,62.0,1094403,2,2,1,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701673,2701674,69.0,1094405,1,1,0,1,1.0,2.0,1.0,-9.0,4.0,5416,10.0,22734.0,2115.0 +2701674,2701675,59.0,1094405,2,2,1,1,1.0,72.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701677,2701678,65.0,1094407,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,928P,18.0,22734.0,2115.0 +2701678,2701679,57.0,1094407,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22734.0,2115.0 +2701679,2701680,65.0,1094408,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,928P,18.0,22734.0,2115.0 +2701680,2701681,57.0,1094408,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22734.0,2115.0 +2701681,2701682,65.0,1094409,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,928P,18.0,22734.0,2115.0 +2701682,2701683,57.0,1094409,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22734.0,2115.0 +2701693,2701694,66.0,1094414,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,6211,14.0,22734.0,2115.0 +2701694,2701695,61.0,1094414,2,2,1,1,1.0,9.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701695,2701696,66.0,1094415,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,6211,14.0,22734.0,2115.0 +2701696,2701697,61.0,1094415,2,2,1,1,1.0,9.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701701,2701702,66.0,1094418,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,6211,14.0,22734.0,2115.0 +2701702,2701703,61.0,1094418,2,2,1,1,1.0,9.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701703,2701704,66.0,1094419,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,5241,9.0,22734.0,2115.0 +2701704,2701705,62.0,1094419,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701705,2701706,66.0,1094420,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,5241,9.0,22734.0,2115.0 +2701706,2701707,62.0,1094420,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701707,2701708,66.0,1094421,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,5241,9.0,22734.0,2115.0 +2701708,2701709,62.0,1094421,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701717,2701718,73.0,1094426,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701718,2701719,72.0,1094426,2,2,1,1,6.0,40.0,3.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701719,2701720,49.0,1094426,3,1,2,1,6.0,40.0,2.0,-9.0,4.0,6111,13.0,22734.0,2115.0 +2701720,2701721,67.0,1094427,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701721,2701722,64.0,1094427,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701722,2701723,67.0,1094428,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701723,2701724,64.0,1094428,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701730,2701731,67.0,1094432,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701731,2701732,64.0,1094432,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701732,2701733,67.0,1094433,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701733,2701734,64.0,1094433,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701734,2701735,67.0,1094434,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701735,2701736,64.0,1094434,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701743,2701744,65.0,1094440,1,1,0,1,1.0,20.0,4.0,-9.0,2.0,6111,13.0,22734.0,2115.0 +2701744,2701745,60.0,1094440,2,2,1,1,1.0,12.0,4.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701745,2701746,66.0,1094441,1,2,0,1,1.0,20.0,1.0,-9.0,4.0,531M,9.0,22734.0,2115.0 +2701746,2701747,62.0,1094441,2,1,15,1,2.0,50.0,5.0,-9.0,4.0,311811,3.0,22734.0,2115.0 +2701747,2701748,90.0,1094442,1,1,0,1,6.0,-9.0,-9.0,-9.0,3.0,-9,0.0,22734.0,2115.0 +2701748,2701749,86.0,1094442,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701749,2701750,56.0,1094442,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,4238,4.0,22734.0,2115.0 +2701754,2701755,73.0,1094445,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701755,2701756,57.0,1094445,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,6212,14.0,22734.0,2115.0 +2701756,2701757,73.0,1094446,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701757,2701758,57.0,1094446,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,6212,14.0,22734.0,2115.0 +2701760,2701761,73.0,1094448,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701761,2701762,57.0,1094448,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,6212,14.0,22734.0,2115.0 +2701762,2701763,73.0,1094449,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701763,2701764,57.0,1094449,2,2,1,1,1.0,60.0,1.0,-9.0,4.0,6212,14.0,22734.0,2115.0 +2701768,2701769,65.0,1094452,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701769,2701770,61.0,1094452,2,1,1,1,1.0,50.0,3.0,-9.0,4.0,23,2.0,22734.0,2115.0 +2701770,2701771,65.0,1094453,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701771,2701772,61.0,1094453,2,1,1,1,1.0,50.0,3.0,-9.0,4.0,23,2.0,22734.0,2115.0 +2701780,2701781,81.0,1094458,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22734.0,2115.0 +2701781,2701782,80.0,1094458,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701782,2701783,47.0,1094458,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701793,2701794,65.0,1094463,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701794,2701795,35.0,1094463,2,1,2,1,1.0,40.0,1.0,-9.0,2.0,722Z,16.0,22734.0,2115.0 +2701799,2701800,68.0,1094466,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701800,2701801,64.0,1094466,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22734.0,2115.0 +2701801,2701802,68.0,1094467,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701802,2701803,64.0,1094467,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,623M,14.0,22734.0,2115.0 +2701805,2701806,72.0,1094469,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701806,2701807,35.0,1094469,2,2,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701807,2701808,77.0,1094470,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701808,2701809,52.0,1094470,2,1,2,1,6.0,30.0,2.0,-9.0,4.0,23,2.0,22734.0,2115.0 +2701809,2701810,65.0,1094471,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,3255,3.0,22734.0,2115.0 +2701810,2701811,42.0,1094471,2,1,2,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701811,2701812,66.0,1094472,1,1,0,1,6.0,15.0,4.0,-9.0,4.0,6242,14.0,22734.0,2115.0 +2701812,2701813,64.0,1094472,2,2,1,1,1.0,22.0,3.0,-9.0,2.0,6111,13.0,22734.0,2115.0 +2701815,2701816,66.0,1094474,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701816,2701817,64.0,1094474,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701821,2701822,75.0,1094478,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701822,2701823,69.0,1094479,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701823,2701824,68.0,1094480,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22734.0,2115.0 +2701824,2701825,62.0,1094480,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701825,2701826,40.0,1094480,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701826,2701827,1.0,1094480,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2701835,2701836,68.0,1094483,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22734.0,2115.0 +2701836,2701837,62.0,1094483,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701837,2701838,40.0,1094483,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701838,2701839,1.0,1094483,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2701839,2701840,68.0,1094484,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22734.0,2115.0 +2701840,2701841,62.0,1094484,2,2,1,1,1.0,28.0,4.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701841,2701842,40.0,1094484,3,2,2,1,1.0,27.0,1.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701842,2701843,1.0,1094484,4,2,7,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2701847,2701848,55.0,1094486,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701848,2701849,48.0,1094486,2,2,1,4,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22734.0,2115.0 +2701849,2701850,18.0,1094486,3,1,2,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22734.0,2115.0 +2701858,2701859,48.0,1094489,1,1,0,4,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22734.0,2115.0 +2701859,2701860,45.0,1094489,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701860,2701861,18.0,1094489,3,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22734.0,2115.0 +2701861,2701862,8.0,1094489,4,2,2,4,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22734.0,2115.0 +2701870,2701871,45.0,1094492,1,1,0,2,1.0,50.0,1.0,-9.0,2.0,622M,15.0,22734.0,2115.0 +2701871,2701872,30.0,1094492,2,1,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701872,2701873,56.0,1094493,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,3261,3.0,22734.0,2115.0 +2701873,2701874,53.0,1094493,2,1,5,2,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22734.0,2115.0 +2701875,2701876,45.0,1094495,1,1,0,2,1.0,45.0,1.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701876,2701877,21.0,1094495,2,1,2,2,1.0,40.0,4.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701877,2701878,60.0,1094496,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701878,2701879,69.0,1094496,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701879,2701880,18.0,1094496,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22734.0,2115.0 +2701880,2701881,60.0,1094497,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701881,2701882,69.0,1094497,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701882,2701883,18.0,1094497,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22734.0,2115.0 +2701886,2701887,60.0,1094499,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701887,2701888,69.0,1094499,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701888,2701889,18.0,1094499,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22734.0,2115.0 +2701889,2701890,60.0,1094500,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701890,2701891,69.0,1094500,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701891,2701892,18.0,1094500,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22734.0,2115.0 +2701907,2701908,60.0,1094506,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701908,2701909,69.0,1094506,2,1,1,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701909,2701910,18.0,1094506,3,1,2,2,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22734.0,2115.0 +2701914,2701915,45.0,1094508,1,1,0,2,1.0,58.0,1.0,15.0,4.0,336M,3.0,22734.0,2115.0 +2701915,2701916,45.0,1094508,2,2,1,2,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22734.0,2115.0 +2701916,2701917,18.0,1094508,3,2,2,2,1.0,32.0,4.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701917,2701918,16.0,1094508,4,2,2,2,6.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22734.0,2115.0 +2701918,2701919,63.0,1094509,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701919,2701920,45.0,1094509,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701920,2701921,18.0,1094509,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701921,2701922,17.0,1094509,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22734.0,2115.0 +2701922,2701923,63.0,1094510,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701923,2701924,45.0,1094510,2,2,2,2,1.0,20.0,1.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701924,2701925,18.0,1094510,3,2,7,2,1.0,25.0,1.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701925,2701926,17.0,1094510,4,2,7,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22734.0,2115.0 +2701933,2701934,54.0,1094513,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,336M,3.0,22734.0,2115.0 +2701934,2701935,53.0,1094513,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,336M,3.0,22734.0,2115.0 +2701935,2701936,18.0,1094513,3,1,2,1,1.0,15.0,4.0,15.0,4.0,722Z,16.0,22734.0,2115.0 +2701936,2701937,50.0,1094514,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2701937,2701938,51.0,1094514,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22734.0,2115.0 +2701938,2701939,21.0,1094514,3,1,2,1,3.0,40.0,4.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701942,2701943,56.0,1094516,1,2,0,1,1.0,48.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2701943,2701944,25.0,1094516,2,1,2,1,1.0,40.0,5.0,15.0,4.0,111,1.0,22734.0,2115.0 +2701944,2701945,20.0,1094516,3,1,2,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22734.0,2115.0 +2701945,2701946,54.0,1094517,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701946,2701947,59.0,1094517,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22734.0,2115.0 +2701947,2701948,18.0,1094517,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22734.0,2115.0 +2701963,2701964,54.0,1094523,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701964,2701965,59.0,1094523,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22734.0,2115.0 +2701965,2701966,18.0,1094523,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22734.0,2115.0 +2701966,2701967,54.0,1094524,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701967,2701968,59.0,1094524,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,484,6.0,22734.0,2115.0 +2701968,2701969,18.0,1094524,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22734.0,2115.0 +2701974,2701975,53.0,1094527,1,1,0,1,1.0,40.0,2.0,-9.0,4.0,336M,3.0,22734.0,2115.0 +2701975,2701976,69.0,1094527,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701976,2701977,58.0,1094528,1,1,0,1,1.0,55.0,1.0,-9.0,4.0,6211,14.0,22734.0,2115.0 +2701977,2701978,62.0,1094529,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5416,10.0,22734.0,2115.0 +2701980,2701981,63.0,1094531,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22734.0,2115.0 +2701981,2701982,19.0,1094531,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22734.0,2115.0 +2701982,2701983,63.0,1094532,1,1,0,1,1.0,70.0,1.0,-9.0,2.0,492,6.0,22734.0,2115.0 +2701983,2701984,19.0,1094532,2,1,2,1,6.0,-9.0,-9.0,13.0,4.0,-9,0.0,22734.0,2115.0 +2701985,2701986,52.0,1094534,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701986,2701987,62.0,1094534,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2701987,2701988,52.0,1094535,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,491,6.0,22734.0,2115.0 +2701988,2701989,58.0,1094535,2,2,1,1,6.0,20.0,5.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2701989,2701990,20.0,1094535,3,2,2,1,2.0,16.0,4.0,15.0,4.0,722Z,16.0,22734.0,2115.0 +2702002,2702003,54.0,1094540,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2702003,2702004,47.0,1094540,2,1,1,1,1.0,60.0,1.0,-9.0,2.0,23,2.0,22734.0,2115.0 +2702004,2702005,20.0,1094540,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,23,2.0,22734.0,2115.0 +2702005,2702006,46.0,1094541,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2702006,2702007,19.0,1094541,2,2,2,1,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22734.0,2115.0 +2702009,2702010,47.0,1094543,1,2,0,1,1.0,60.0,1.0,-9.0,4.0,6111,13.0,22734.0,2115.0 +2702010,2702011,18.0,1094543,2,1,2,1,2.0,25.0,1.0,13.0,4.0,722Z,16.0,22734.0,2115.0 +2702016,2702017,51.0,1094547,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,3221,3.0,22734.0,2115.0 +2702023,2702024,52.0,1094549,1,2,0,1,1.0,22.0,1.0,-9.0,4.0,6222,15.0,22734.0,2115.0 +2702024,2702025,57.0,1094549,2,1,1,1,1.0,40.0,1.0,-9.0,2.0,622M,15.0,22734.0,2115.0 +2702025,2702026,18.0,1094549,3,1,2,1,6.0,2.0,6.0,14.0,4.0,56173,12.0,22734.0,2115.0 +2702026,2702027,14.0,1094549,4,1,2,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22734.0,2115.0 +2702027,2702028,11.0,1094549,5,1,2,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22734.0,2115.0 +2702028,2702029,9.0,1094549,6,2,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22734.0,2115.0 +2702051,2702052,46.0,1094555,1,2,0,1,1.0,44.0,1.0,-9.0,4.0,5413,10.0,22734.0,2115.0 +2702052,2702053,48.0,1094555,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2702053,2702054,18.0,1094555,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22734.0,2115.0 +2702054,2702055,15.0,1094555,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22734.0,2115.0 +2702060,2702061,51.0,1094557,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22734.0,2115.0 +2702061,2702062,45.0,1094557,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2702062,2702063,18.0,1094557,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22734.0,2115.0 +2702063,2702064,14.0,1094557,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22734.0,2115.0 +2702064,2702065,11.0,1094557,5,1,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22734.0,2115.0 +2702075,2702076,51.0,1094560,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22734.0,2115.0 +2702076,2702077,45.0,1094560,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2702077,2702078,18.0,1094560,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22734.0,2115.0 +2702078,2702079,14.0,1094560,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22734.0,2115.0 +2702079,2702080,11.0,1094560,5,1,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22734.0,2115.0 +2702080,2702081,51.0,1094561,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22734.0,2115.0 +2702081,2702082,45.0,1094561,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2702082,2702083,18.0,1094561,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22734.0,2115.0 +2702083,2702084,14.0,1094561,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22734.0,2115.0 +2702084,2702085,11.0,1094561,5,1,2,1,-9.0,-9.0,-9.0,7.0,-9.0,-9,0.0,22734.0,2115.0 +2702103,2702104,47.0,1094567,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2702104,2702105,25.0,1094567,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22734.0,2115.0 +2702105,2702106,18.0,1094567,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22734.0,2115.0 +2702106,2702107,14.0,1094567,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22734.0,2115.0 +2702107,2702108,12.0,1094567,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22734.0,2115.0 +2702108,2702109,57.0,1094567,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22734.0,2115.0 +2702109,2702110,47.0,1094568,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2702110,2702111,25.0,1094568,2,1,2,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22734.0,2115.0 +2702111,2702112,18.0,1094568,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22734.0,2115.0 +2702112,2702113,14.0,1094568,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22734.0,2115.0 +2702113,2702114,12.0,1094568,5,2,3,1,-9.0,-9.0,-9.0,8.0,-9.0,-9,0.0,22734.0,2115.0 +2702114,2702115,57.0,1094568,6,1,13,1,1.0,15.0,3.0,-9.0,4.0,9211MP,18.0,22734.0,2115.0 +2702119,2702120,41.0,1094570,1,1,0,2,1.0,40.0,1.0,-9.0,2.0,517311,8.0,22734.0,2115.0 +2702124,2702125,43.0,1094573,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5241,9.0,22734.0,2115.0 +2702125,2702126,13.0,1094573,2,2,2,2,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22734.0,2115.0 +2702131,2702132,30.0,1094575,1,1,0,2,1.0,60.0,1.0,-9.0,4.0,722Z,16.0,22734.0,2115.0 +2702132,2702133,1.0,1094575,2,1,2,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702133,2702134,5.0,1094575,3,2,4,3,-9.0,-9.0,-9.0,2.0,-9.0,-9,0.0,22734.0,2115.0 +2702134,2702135,3.0,1094575,4,2,4,3,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702135,2702136,22.0,1094575,5,2,10,3,1.0,50.0,3.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2702136,2702137,34.0,1094576,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5418,10.0,22734.0,2115.0 +2702137,2702138,45.0,1094576,2,1,1,3,1.0,40.0,1.0,-9.0,4.0,8139Z,17.0,22734.0,2115.0 +2702138,2702139,32.0,1094577,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2702139,2702140,30.0,1094577,2,1,5,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2702144,2702145,40.0,1094580,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2702145,2702146,50.0,1094580,2,2,1,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2702146,2702147,40.0,1094581,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2702147,2702148,50.0,1094581,2,2,1,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2702150,2702151,38.0,1094583,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2702151,2702152,36.0,1094583,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,6211,14.0,22734.0,2115.0 +2702154,2702155,30.0,1094585,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,336M,3.0,22734.0,2115.0 +2702155,2702156,20.0,1094585,2,2,13,1,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22734.0,2115.0 +2702156,2702157,30.0,1094586,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,336M,3.0,22734.0,2115.0 +2702157,2702158,20.0,1094586,2,2,13,1,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22734.0,2115.0 +2702160,2702161,30.0,1094588,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,336M,3.0,22734.0,2115.0 +2702161,2702162,20.0,1094588,2,2,13,1,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22734.0,2115.0 +2702170,2702171,30.0,1094593,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,336M,3.0,22734.0,2115.0 +2702171,2702172,20.0,1094593,2,2,13,1,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22734.0,2115.0 +2702172,2702173,37.0,1094594,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22734.0,2115.0 +2702173,2702174,37.0,1094595,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22734.0,2115.0 +2702176,2702177,42.0,1094598,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22734.0,2115.0 +2702177,2702178,42.0,1094599,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22734.0,2115.0 +2702178,2702179,37.0,1094600,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22734.0,2115.0 +2702182,2702183,37.0,1094604,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22734.0,2115.0 +2702185,2702186,42.0,1094607,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22734.0,2115.0 +2702186,2702187,37.0,1094608,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,5617Z,12.0,22734.0,2115.0 +2702187,2702188,42.0,1094609,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22734.0,2115.0 +2702188,2702189,28.0,1094610,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702189,2702190,24.0,1094610,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702190,2702191,28.0,1094611,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702191,2702192,24.0,1094611,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702192,2702193,28.0,1094612,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702193,2702194,24.0,1094612,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702194,2702195,28.0,1094613,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702195,2702196,24.0,1094613,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702196,2702197,28.0,1094614,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702197,2702198,24.0,1094614,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702198,2702199,28.0,1094615,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702199,2702200,24.0,1094615,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702200,2702201,28.0,1094616,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702201,2702202,24.0,1094616,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702204,2702205,28.0,1094618,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702205,2702206,24.0,1094618,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702206,2702207,28.0,1094619,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702207,2702208,24.0,1094619,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702208,2702209,28.0,1094620,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702209,2702210,24.0,1094620,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702210,2702211,28.0,1094621,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702211,2702212,24.0,1094621,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,3231,3.0,22734.0,2115.0 +2702216,2702217,26.0,1094624,1,1,0,1,1.0,56.0,1.0,15.0,4.0,92MP,18.0,22734.0,2115.0 +2702218,2702219,26.0,1094626,1,1,0,1,1.0,56.0,1.0,15.0,4.0,92MP,18.0,22734.0,2115.0 +2702219,2702220,33.0,1094627,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5412,10.0,22734.0,2115.0 +2702228,2702229,36.0,1094630,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702229,2702230,44.0,1094630,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702230,2702231,15.0,1094630,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22734.0,2115.0 +2702231,2702232,13.0,1094630,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22734.0,2115.0 +2702232,2702233,4.0,1094630,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702233,2702234,21.0,1094630,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702234,2702235,32.0,1094630,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702235,2702236,36.0,1094631,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702236,2702237,44.0,1094631,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702237,2702238,15.0,1094631,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22734.0,2115.0 +2702238,2702239,13.0,1094631,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22734.0,2115.0 +2702239,2702240,4.0,1094631,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702240,2702241,21.0,1094631,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702241,2702242,32.0,1094631,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702277,2702278,36.0,1094637,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702278,2702279,44.0,1094637,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702279,2702280,15.0,1094637,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22734.0,2115.0 +2702280,2702281,13.0,1094637,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22734.0,2115.0 +2702281,2702282,4.0,1094637,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702282,2702283,21.0,1094637,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702283,2702284,32.0,1094637,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702284,2702285,36.0,1094638,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702285,2702286,44.0,1094638,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702286,2702287,15.0,1094638,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22734.0,2115.0 +2702287,2702288,13.0,1094638,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22734.0,2115.0 +2702288,2702289,4.0,1094638,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702289,2702290,21.0,1094638,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702290,2702291,32.0,1094638,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702298,2702299,36.0,1094640,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702299,2702300,44.0,1094640,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702300,2702301,15.0,1094640,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22734.0,2115.0 +2702301,2702302,13.0,1094640,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22734.0,2115.0 +2702302,2702303,4.0,1094640,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702303,2702304,21.0,1094640,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702304,2702305,32.0,1094640,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702319,2702320,36.0,1094643,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702320,2702321,44.0,1094643,2,1,1,2,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22734.0,2115.0 +2702321,2702322,15.0,1094643,3,1,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22734.0,2115.0 +2702322,2702323,13.0,1094643,4,1,2,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22734.0,2115.0 +2702323,2702324,4.0,1094643,5,1,2,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702324,2702325,21.0,1094643,6,1,4,2,1.0,25.0,6.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702325,2702326,32.0,1094643,7,2,12,1,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22734.0,2115.0 +2702339,2702340,42.0,1094646,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22734.0,2115.0 +2702340,2702341,44.0,1094646,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2702341,2702342,9.0,1094646,3,2,2,1,-9.0,-9.0,-9.0,5.0,-9.0,-9,0.0,22734.0,2115.0 +2702342,2702343,6.0,1094646,4,2,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22734.0,2115.0 +2702343,2702344,37.0,1094647,1,2,0,1,1.0,24.0,1.0,-9.0,4.0,5415,10.0,22734.0,2115.0 +2702344,2702345,42.0,1094647,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22734.0,2115.0 +2702345,2702346,4.0,1094647,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22734.0,2115.0 +2702346,2702347,2.0,1094647,4,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702351,2702352,43.0,1094649,1,1,0,1,1.0,52.0,2.0,-9.0,4.0,52M2,9.0,22734.0,2115.0 +2702352,2702353,43.0,1094649,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22734.0,2115.0 +2702353,2702354,16.0,1094649,3,1,2,1,1.0,5.0,6.0,13.0,-9.0,52M2,9.0,22734.0,2115.0 +2702354,2702355,14.0,1094649,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22734.0,2115.0 +2702364,2702365,44.0,1094653,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2702365,2702366,42.0,1094653,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22734.0,2115.0 +2702366,2702367,7.0,1094653,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702367,2702368,33.0,1094654,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22734.0,2115.0 +2702368,2702369,36.0,1094654,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,6111,13.0,22734.0,2115.0 +2702369,2702370,0.0,1094654,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702374,2702375,40.0,1094656,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22734.0,2115.0 +2702375,2702376,7.0,1094656,2,1,2,1,-9.0,-9.0,-9.0,3.0,-9.0,-9,0.0,22734.0,2115.0 +2702376,2702377,5.0,1094656,3,2,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22734.0,2115.0 +2702383,2702384,33.0,1094658,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2702384,2702385,33.0,1094658,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2702385,2702386,2.0,1094658,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2702386,2702387,33.0,1094659,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2702387,2702388,33.0,1094659,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22734.0,2115.0 +2702388,2702389,2.0,1094659,3,2,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22734.0,2115.0 +2851253,2851254,89.0,1151642,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22747.0,2123.0 +2851254,2851255,81.0,1151643,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851255,2851256,81.0,1151644,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22747.0,2123.0 +2851256,2851257,81.0,1151645,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851257,2851258,81.0,1151646,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851258,2851259,81.0,1151647,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851259,2851260,81.0,1151648,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851260,2851261,81.0,1151649,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851261,2851262,81.0,1151650,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851262,2851263,81.0,1151651,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851263,2851264,81.0,1151652,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22771.0,2135.0 +2851264,2851265,81.0,1151653,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851265,2851266,81.0,1151654,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851266,2851267,81.0,1151655,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851267,2851268,81.0,1151656,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851268,2851269,67.0,1151657,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851269,2851270,86.0,1151658,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851270,2851271,87.0,1151659,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22771.0,2135.0 +2851271,2851272,86.0,1151660,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851272,2851273,86.0,1151661,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22747.0,2123.0 +2851273,2851274,86.0,1151662,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851274,2851275,87.0,1151663,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851275,2851276,86.0,1151664,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22747.0,2123.0 +2851276,2851277,86.0,1151665,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851277,2851278,86.0,1151666,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851278,2851279,86.0,1151667,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851279,2851280,86.0,1151668,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851280,2851281,86.0,1151669,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22773.0,2136.0 +2851281,2851282,86.0,1151670,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22748.0,2124.0 +2851282,2851283,86.0,1151671,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22771.0,2135.0 +2851283,2851284,86.0,1151672,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851284,2851285,86.0,1151673,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851285,2851286,86.0,1151674,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22747.0,2123.0 +2851286,2851287,86.0,1151675,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851287,2851288,86.0,1151676,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22771.0,2135.0 +2851288,2851289,86.0,1151677,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22771.0,2135.0 +2851289,2851290,86.0,1151678,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851290,2851291,87.0,1151679,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851291,2851292,86.0,1151680,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851292,2851293,86.0,1151681,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22773.0,2136.0 +2851293,2851294,86.0,1151682,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851294,2851295,86.0,1151683,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851295,2851296,86.0,1151684,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851296,2851297,86.0,1151685,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851297,2851298,86.0,1151686,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851298,2851299,86.0,1151687,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851299,2851300,86.0,1151688,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851300,2851301,86.0,1151689,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851301,2851302,86.0,1151690,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22771.0,2135.0 +2851302,2851303,87.0,1151691,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851303,2851304,86.0,1151692,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22769.0,2133.0 +2851304,2851305,86.0,1151693,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851305,2851306,86.0,1151694,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851306,2851307,86.0,1151695,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851307,2851308,86.0,1151696,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851308,2851309,86.0,1151697,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851309,2851310,86.0,1151698,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851310,2851311,86.0,1151699,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851311,2851312,86.0,1151700,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22771.0,2135.0 +2851312,2851313,86.0,1151701,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851313,2851314,86.0,1151702,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22771.0,2135.0 +2851314,2851315,86.0,1151703,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22747.0,2123.0 +2851315,2851316,86.0,1151704,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851316,2851317,86.0,1151705,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851317,2851318,86.0,1151706,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22769.0,2133.0 +2851318,2851319,86.0,1151707,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851319,2851320,86.0,1151708,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851320,2851321,86.0,1151709,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851321,2851322,86.0,1151710,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22745.0,2121.0 +2851322,2851323,86.0,1151711,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851323,2851324,86.0,1151712,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22769.0,2133.0 +2851324,2851325,86.0,1151713,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851325,2851326,81.0,1151714,1,1,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22767.0,2132.0 +2851326,2851327,82.0,1151714,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851327,2851328,55.0,1151714,3,1,2,1,6.0,20.0,4.0,-9.0,4.0,484,6.0,22767.0,2132.0 +2851328,2851329,42.0,1151714,4,1,2,1,1.0,40.0,1.0,-9.0,4.0,44511,5.0,22767.0,2132.0 +2851329,2851330,66.0,1151715,1,2,0,1,1.0,25.0,3.0,-9.0,4.0,485M,6.0,22767.0,2132.0 +2851330,2851331,66.0,1151716,1,2,0,1,1.0,25.0,3.0,-9.0,4.0,485M,6.0,22767.0,2132.0 +2851331,2851332,82.0,1151717,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851332,2851333,82.0,1151718,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851333,2851334,82.0,1151719,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851334,2851335,88.0,1151720,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851335,2851336,79.0,1151721,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851336,2851337,48.0,1151722,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851337,2851338,20.0,1151722,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22770.0,2134.0 +2851338,2851339,17.0,1151722,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22770.0,2134.0 +2851339,2851340,14.0,1151722,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22770.0,2134.0 +2851340,2851341,48.0,1151723,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851341,2851342,20.0,1151723,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22767.0,2132.0 +2851342,2851343,17.0,1151723,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22767.0,2132.0 +2851343,2851344,14.0,1151723,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22767.0,2132.0 +2851344,2851345,48.0,1151724,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851345,2851346,20.0,1151724,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22767.0,2132.0 +2851346,2851347,17.0,1151724,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22767.0,2132.0 +2851347,2851348,14.0,1151724,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22767.0,2132.0 +2851348,2851349,48.0,1151725,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851349,2851350,20.0,1151725,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22767.0,2132.0 +2851350,2851351,17.0,1151725,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22767.0,2132.0 +2851351,2851352,14.0,1151725,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22767.0,2132.0 +2851352,2851353,48.0,1151726,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851353,2851354,20.0,1151726,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22767.0,2132.0 +2851354,2851355,17.0,1151726,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22767.0,2132.0 +2851355,2851356,14.0,1151726,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22767.0,2132.0 +2851356,2851357,49.0,1151727,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22768.0,2132.0 +2851357,2851358,34.0,1151727,2,2,10,2,1.0,32.0,3.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2851358,2851359,18.0,1151727,3,2,10,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22768.0,2132.0 +2851359,2851360,50.0,1151727,4,2,13,2,1.0,32.0,1.0,-9.0,4.0,5617Z,12.0,22768.0,2132.0 +2851360,2851361,53.0,1151728,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2851361,2851362,18.0,1151728,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2851362,2851363,53.0,1151729,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2851363,2851364,18.0,1151729,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2851364,2851365,53.0,1151730,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2851365,2851366,18.0,1151730,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2851366,2851367,53.0,1151731,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2851367,2851368,18.0,1151731,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2851368,2851369,53.0,1151732,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22771.0,2135.0 +2851369,2851370,18.0,1151732,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2851370,2851371,53.0,1151733,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2851371,2851372,18.0,1151733,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2851372,2851373,53.0,1151734,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2851373,2851374,18.0,1151734,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2851374,2851375,62.0,1151735,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2851375,2851376,62.0,1151735,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851376,2851377,26.0,1151735,3,1,2,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22767.0,2132.0 +2851377,2851378,20.0,1151735,4,2,2,1,1.0,16.0,1.0,15.0,4.0,722Z,16.0,22767.0,2132.0 +2851378,2851379,63.0,1151736,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22767.0,2132.0 +2851379,2851380,60.0,1151736,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851380,2851381,23.0,1151736,3,2,2,1,1.0,6.0,3.0,16.0,4.0,7111,16.0,22767.0,2132.0 +2851381,2851382,21.0,1151736,4,2,2,1,1.0,16.0,5.0,-9.0,4.0,6244,14.0,22767.0,2132.0 +2851382,2851383,63.0,1151737,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22768.0,2132.0 +2851383,2851384,60.0,1151737,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851384,2851385,23.0,1151737,3,2,2,1,1.0,6.0,3.0,16.0,4.0,7111,16.0,22768.0,2132.0 +2851385,2851386,21.0,1151737,4,2,2,1,1.0,16.0,5.0,-9.0,4.0,6244,14.0,22768.0,2132.0 +2851386,2851387,63.0,1151738,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22771.0,2135.0 +2851387,2851388,60.0,1151738,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22771.0,2135.0 +2851388,2851389,23.0,1151738,3,2,2,1,1.0,6.0,3.0,16.0,4.0,7111,16.0,22771.0,2135.0 +2851389,2851390,21.0,1151738,4,2,2,1,1.0,16.0,5.0,-9.0,4.0,6244,14.0,22771.0,2135.0 +2851390,2851391,63.0,1151739,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22770.0,2134.0 +2851391,2851392,60.0,1151739,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851392,2851393,23.0,1151739,3,2,2,1,1.0,6.0,3.0,16.0,4.0,7111,16.0,22770.0,2134.0 +2851393,2851394,21.0,1151739,4,2,2,1,1.0,16.0,5.0,-9.0,4.0,6244,14.0,22770.0,2134.0 +2851394,2851395,63.0,1151740,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22768.0,2132.0 +2851395,2851396,60.0,1151740,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851396,2851397,23.0,1151740,3,2,2,1,1.0,6.0,3.0,16.0,4.0,7111,16.0,22768.0,2132.0 +2851397,2851398,21.0,1151740,4,2,2,1,1.0,16.0,5.0,-9.0,4.0,6244,14.0,22768.0,2132.0 +2851398,2851399,63.0,1151741,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22767.0,2132.0 +2851399,2851400,60.0,1151741,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851400,2851401,23.0,1151741,3,2,2,1,1.0,6.0,3.0,16.0,4.0,7111,16.0,22767.0,2132.0 +2851401,2851402,21.0,1151741,4,2,2,1,1.0,16.0,5.0,-9.0,4.0,6244,14.0,22767.0,2132.0 +2851402,2851403,63.0,1151742,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22768.0,2132.0 +2851403,2851404,60.0,1151742,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851404,2851405,23.0,1151742,3,2,2,1,1.0,6.0,3.0,16.0,4.0,7111,16.0,22768.0,2132.0 +2851405,2851406,21.0,1151742,4,2,2,1,1.0,16.0,5.0,-9.0,4.0,6244,14.0,22768.0,2132.0 +2851406,2851407,63.0,1151743,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22767.0,2132.0 +2851407,2851408,60.0,1151743,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851408,2851409,23.0,1151743,3,2,2,1,1.0,6.0,3.0,16.0,4.0,7111,16.0,22767.0,2132.0 +2851409,2851410,21.0,1151743,4,2,2,1,1.0,16.0,5.0,-9.0,4.0,6244,14.0,22767.0,2132.0 +2851410,2851411,63.0,1151744,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22767.0,2132.0 +2851411,2851412,60.0,1151744,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851412,2851413,23.0,1151744,3,2,2,1,1.0,6.0,3.0,16.0,4.0,7111,16.0,22767.0,2132.0 +2851413,2851414,21.0,1151744,4,2,2,1,1.0,16.0,5.0,-9.0,4.0,6244,14.0,22767.0,2132.0 +2851414,2851415,63.0,1151745,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22770.0,2134.0 +2851415,2851416,60.0,1151745,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851416,2851417,23.0,1151745,3,2,2,1,1.0,6.0,3.0,16.0,4.0,7111,16.0,22770.0,2134.0 +2851417,2851418,21.0,1151745,4,2,2,1,1.0,16.0,5.0,-9.0,4.0,6244,14.0,22770.0,2134.0 +2851418,2851419,49.0,1151746,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851419,2851420,52.0,1151746,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851420,2851421,18.0,1151746,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851421,2851422,18.0,1151746,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851422,2851423,49.0,1151747,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851423,2851424,52.0,1151747,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851424,2851425,18.0,1151747,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851425,2851426,18.0,1151747,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851426,2851427,49.0,1151748,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22770.0,2134.0 +2851427,2851428,52.0,1151748,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851428,2851429,18.0,1151748,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851429,2851430,18.0,1151748,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851430,2851431,49.0,1151749,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851431,2851432,52.0,1151749,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851432,2851433,18.0,1151749,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851433,2851434,18.0,1151749,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851434,2851435,49.0,1151750,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851435,2851436,52.0,1151750,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851436,2851437,18.0,1151750,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851437,2851438,18.0,1151750,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851438,2851439,49.0,1151751,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851439,2851440,52.0,1151751,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851440,2851441,18.0,1151751,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851441,2851442,18.0,1151751,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851442,2851443,49.0,1151752,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851443,2851444,52.0,1151752,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851444,2851445,18.0,1151752,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851445,2851446,18.0,1151752,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851446,2851447,49.0,1151753,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851447,2851448,52.0,1151753,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851448,2851449,18.0,1151753,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851449,2851450,18.0,1151753,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851450,2851451,49.0,1151754,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851451,2851452,52.0,1151754,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851452,2851453,18.0,1151754,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851453,2851454,18.0,1151754,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851454,2851455,49.0,1151755,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851455,2851456,52.0,1151755,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851456,2851457,18.0,1151755,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851457,2851458,18.0,1151755,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851458,2851459,49.0,1151756,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851459,2851460,52.0,1151756,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851460,2851461,18.0,1151756,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851461,2851462,18.0,1151756,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851462,2851463,49.0,1151757,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851463,2851464,52.0,1151757,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851464,2851465,18.0,1151757,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851465,2851466,18.0,1151757,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851466,2851467,49.0,1151758,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851467,2851468,52.0,1151758,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851468,2851469,18.0,1151758,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851469,2851470,18.0,1151758,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851470,2851471,49.0,1151759,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22771.0,2135.0 +2851471,2851472,52.0,1151759,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22771.0,2135.0 +2851472,2851473,18.0,1151759,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851473,2851474,18.0,1151759,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851474,2851475,49.0,1151760,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851475,2851476,52.0,1151760,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851476,2851477,18.0,1151760,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851477,2851478,18.0,1151760,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851478,2851479,49.0,1151761,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851479,2851480,52.0,1151761,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851480,2851481,18.0,1151761,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851481,2851482,18.0,1151761,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851482,2851483,49.0,1151762,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2851483,2851484,52.0,1151762,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22747.0,2123.0 +2851484,2851485,18.0,1151762,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851485,2851486,18.0,1151762,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851486,2851487,49.0,1151763,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851487,2851488,52.0,1151763,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851488,2851489,18.0,1151763,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851489,2851490,18.0,1151763,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851490,2851491,49.0,1151764,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851491,2851492,52.0,1151764,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851492,2851493,18.0,1151764,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851493,2851494,18.0,1151764,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851494,2851495,49.0,1151765,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851495,2851496,52.0,1151765,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851496,2851497,18.0,1151765,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851497,2851498,18.0,1151765,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851498,2851499,49.0,1151766,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851499,2851500,52.0,1151766,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851500,2851501,18.0,1151766,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851501,2851502,18.0,1151766,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851502,2851503,49.0,1151767,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22769.0,2133.0 +2851503,2851504,52.0,1151767,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22769.0,2133.0 +2851504,2851505,18.0,1151767,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851505,2851506,18.0,1151767,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851506,2851507,49.0,1151768,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2851507,2851508,52.0,1151768,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22747.0,2123.0 +2851508,2851509,18.0,1151768,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851509,2851510,18.0,1151768,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851510,2851511,49.0,1151769,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851511,2851512,52.0,1151769,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851512,2851513,18.0,1151769,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851513,2851514,18.0,1151769,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851514,2851515,49.0,1151770,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851515,2851516,52.0,1151770,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851516,2851517,18.0,1151770,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851517,2851518,18.0,1151770,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851518,2851519,49.0,1151771,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22770.0,2134.0 +2851519,2851520,52.0,1151771,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851520,2851521,18.0,1151771,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851521,2851522,18.0,1151771,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851522,2851523,49.0,1151772,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851523,2851524,52.0,1151772,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851524,2851525,18.0,1151772,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851525,2851526,18.0,1151772,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851526,2851527,49.0,1151773,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851527,2851528,52.0,1151773,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851528,2851529,18.0,1151773,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851529,2851530,18.0,1151773,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851530,2851531,49.0,1151774,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851531,2851532,52.0,1151774,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851532,2851533,18.0,1151774,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851533,2851534,18.0,1151774,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851534,2851535,49.0,1151775,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22771.0,2135.0 +2851535,2851536,52.0,1151775,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22771.0,2135.0 +2851536,2851537,18.0,1151775,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851537,2851538,18.0,1151775,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851538,2851539,49.0,1151776,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22770.0,2134.0 +2851539,2851540,52.0,1151776,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851540,2851541,18.0,1151776,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851541,2851542,18.0,1151776,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851542,2851543,49.0,1151777,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22770.0,2134.0 +2851543,2851544,52.0,1151777,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851544,2851545,18.0,1151777,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851545,2851546,18.0,1151777,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851546,2851547,49.0,1151778,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851547,2851548,52.0,1151778,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851548,2851549,18.0,1151778,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851549,2851550,18.0,1151778,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851550,2851551,49.0,1151779,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851551,2851552,52.0,1151779,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851552,2851553,18.0,1151779,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851553,2851554,18.0,1151779,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851554,2851555,49.0,1151780,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22745.0,2121.0 +2851555,2851556,52.0,1151780,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22745.0,2121.0 +2851556,2851557,18.0,1151780,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22745.0,2121.0 +2851557,2851558,18.0,1151780,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22745.0,2121.0 +2851558,2851559,49.0,1151781,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22770.0,2134.0 +2851559,2851560,52.0,1151781,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851560,2851561,18.0,1151781,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851561,2851562,18.0,1151781,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851562,2851563,49.0,1151782,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851563,2851564,52.0,1151782,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851564,2851565,18.0,1151782,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851565,2851566,18.0,1151782,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851566,2851567,49.0,1151783,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851567,2851568,52.0,1151783,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851568,2851569,18.0,1151783,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851569,2851570,18.0,1151783,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851570,2851571,49.0,1151784,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851571,2851572,52.0,1151784,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851572,2851573,18.0,1151784,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851573,2851574,18.0,1151784,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851574,2851575,49.0,1151785,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851575,2851576,52.0,1151785,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851576,2851577,18.0,1151785,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851577,2851578,18.0,1151785,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851578,2851579,49.0,1151786,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851579,2851580,52.0,1151786,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851580,2851581,18.0,1151786,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851581,2851582,18.0,1151786,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851582,2851583,49.0,1151787,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851583,2851584,52.0,1151787,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851584,2851585,18.0,1151787,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851585,2851586,18.0,1151787,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851586,2851587,49.0,1151788,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851587,2851588,52.0,1151788,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851588,2851589,18.0,1151788,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851589,2851590,18.0,1151788,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851590,2851591,49.0,1151789,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851591,2851592,52.0,1151789,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851592,2851593,18.0,1151789,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851593,2851594,18.0,1151789,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851594,2851595,49.0,1151790,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851595,2851596,52.0,1151790,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851596,2851597,18.0,1151790,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851597,2851598,18.0,1151790,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851598,2851599,49.0,1151791,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22771.0,2135.0 +2851599,2851600,52.0,1151791,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22771.0,2135.0 +2851600,2851601,18.0,1151791,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851601,2851602,18.0,1151791,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851602,2851603,49.0,1151792,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851603,2851604,52.0,1151792,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851604,2851605,18.0,1151792,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851605,2851606,18.0,1151792,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851606,2851607,49.0,1151793,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851607,2851608,52.0,1151793,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851608,2851609,18.0,1151793,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851609,2851610,18.0,1151793,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851610,2851611,49.0,1151794,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851611,2851612,52.0,1151794,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851612,2851613,18.0,1151794,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851613,2851614,18.0,1151794,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851614,2851615,49.0,1151795,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851615,2851616,52.0,1151795,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851616,2851617,18.0,1151795,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851617,2851618,18.0,1151795,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851618,2851619,49.0,1151796,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851619,2851620,52.0,1151796,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851620,2851621,18.0,1151796,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851621,2851622,18.0,1151796,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851622,2851623,49.0,1151797,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851623,2851624,52.0,1151797,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851624,2851625,18.0,1151797,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851625,2851626,18.0,1151797,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851626,2851627,49.0,1151798,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851627,2851628,52.0,1151798,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851628,2851629,18.0,1151798,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851629,2851630,18.0,1151798,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851630,2851631,49.0,1151799,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851631,2851632,52.0,1151799,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851632,2851633,18.0,1151799,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851633,2851634,18.0,1151799,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851634,2851635,49.0,1151800,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22769.0,2133.0 +2851635,2851636,52.0,1151800,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22769.0,2133.0 +2851636,2851637,18.0,1151800,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851637,2851638,18.0,1151800,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851638,2851639,49.0,1151801,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851639,2851640,52.0,1151801,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851640,2851641,18.0,1151801,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851641,2851642,18.0,1151801,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851642,2851643,49.0,1151802,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851643,2851644,52.0,1151802,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851644,2851645,18.0,1151802,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851645,2851646,18.0,1151802,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851646,2851647,49.0,1151803,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22770.0,2134.0 +2851647,2851648,52.0,1151803,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851648,2851649,18.0,1151803,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851649,2851650,18.0,1151803,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851650,2851651,49.0,1151804,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2851651,2851652,52.0,1151804,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22747.0,2123.0 +2851652,2851653,18.0,1151804,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851653,2851654,18.0,1151804,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851654,2851655,49.0,1151805,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2851655,2851656,52.0,1151805,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22747.0,2123.0 +2851656,2851657,18.0,1151805,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851657,2851658,18.0,1151805,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851658,2851659,49.0,1151806,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851659,2851660,52.0,1151806,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851660,2851661,18.0,1151806,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851661,2851662,18.0,1151806,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851662,2851663,49.0,1151807,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851663,2851664,52.0,1151807,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851664,2851665,18.0,1151807,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851665,2851666,18.0,1151807,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851666,2851667,49.0,1151808,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851667,2851668,52.0,1151808,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851668,2851669,18.0,1151808,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851669,2851670,18.0,1151808,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851670,2851671,49.0,1151809,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851671,2851672,52.0,1151809,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851672,2851673,18.0,1151809,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851673,2851674,18.0,1151809,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851674,2851675,49.0,1151810,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851675,2851676,52.0,1151810,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851676,2851677,18.0,1151810,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851677,2851678,18.0,1151810,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851678,2851679,49.0,1151811,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22769.0,2133.0 +2851679,2851680,52.0,1151811,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22769.0,2133.0 +2851680,2851681,18.0,1151811,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851681,2851682,18.0,1151811,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851682,2851683,49.0,1151812,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851683,2851684,52.0,1151812,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851684,2851685,18.0,1151812,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851685,2851686,18.0,1151812,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851686,2851687,49.0,1151813,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851687,2851688,52.0,1151813,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851688,2851689,18.0,1151813,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851689,2851690,18.0,1151813,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851690,2851691,49.0,1151814,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22771.0,2135.0 +2851691,2851692,52.0,1151814,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22771.0,2135.0 +2851692,2851693,18.0,1151814,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851693,2851694,18.0,1151814,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851694,2851695,49.0,1151815,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851695,2851696,52.0,1151815,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851696,2851697,18.0,1151815,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851697,2851698,18.0,1151815,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851698,2851699,49.0,1151816,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851699,2851700,52.0,1151816,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851700,2851701,18.0,1151816,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851701,2851702,18.0,1151816,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851702,2851703,49.0,1151817,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2851703,2851704,52.0,1151817,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22747.0,2123.0 +2851704,2851705,18.0,1151817,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851705,2851706,18.0,1151817,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851706,2851707,49.0,1151818,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22771.0,2135.0 +2851707,2851708,52.0,1151818,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22771.0,2135.0 +2851708,2851709,18.0,1151818,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851709,2851710,18.0,1151818,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851710,2851711,49.0,1151819,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851711,2851712,52.0,1151819,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851712,2851713,18.0,1151819,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851713,2851714,18.0,1151819,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851714,2851715,49.0,1151820,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851715,2851716,52.0,1151820,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851716,2851717,18.0,1151820,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851717,2851718,18.0,1151820,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851718,2851719,49.0,1151821,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22769.0,2133.0 +2851719,2851720,52.0,1151821,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22769.0,2133.0 +2851720,2851721,18.0,1151821,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851721,2851722,18.0,1151821,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851722,2851723,49.0,1151822,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22745.0,2121.0 +2851723,2851724,52.0,1151822,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22745.0,2121.0 +2851724,2851725,18.0,1151822,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22745.0,2121.0 +2851725,2851726,18.0,1151822,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22745.0,2121.0 +2851726,2851727,49.0,1151823,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851727,2851728,52.0,1151823,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851728,2851729,18.0,1151823,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851729,2851730,18.0,1151823,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851730,2851731,49.0,1151824,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851731,2851732,52.0,1151824,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851732,2851733,18.0,1151824,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851733,2851734,18.0,1151824,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851734,2851735,49.0,1151825,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22769.0,2133.0 +2851735,2851736,52.0,1151825,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22769.0,2133.0 +2851736,2851737,18.0,1151825,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851737,2851738,18.0,1151825,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851738,2851739,49.0,1151826,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851739,2851740,52.0,1151826,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851740,2851741,18.0,1151826,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851741,2851742,18.0,1151826,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851742,2851743,49.0,1151827,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851743,2851744,52.0,1151827,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851744,2851745,18.0,1151827,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851745,2851746,18.0,1151827,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851746,2851747,49.0,1151828,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851747,2851748,52.0,1151828,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851748,2851749,18.0,1151828,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851749,2851750,18.0,1151828,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851750,2851751,49.0,1151829,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851751,2851752,52.0,1151829,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851752,2851753,18.0,1151829,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851753,2851754,18.0,1151829,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851754,2851755,49.0,1151830,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851755,2851756,52.0,1151830,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851756,2851757,18.0,1151830,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851757,2851758,18.0,1151830,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851758,2851759,49.0,1151831,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22770.0,2134.0 +2851759,2851760,52.0,1151831,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851760,2851761,18.0,1151831,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851761,2851762,18.0,1151831,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851762,2851763,49.0,1151832,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851763,2851764,52.0,1151832,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851764,2851765,18.0,1151832,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851765,2851766,18.0,1151832,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851766,2851767,49.0,1151833,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851767,2851768,52.0,1151833,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851768,2851769,18.0,1151833,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851769,2851770,18.0,1151833,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851770,2851771,49.0,1151834,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851771,2851772,52.0,1151834,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851772,2851773,18.0,1151834,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851773,2851774,18.0,1151834,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851774,2851775,49.0,1151835,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851775,2851776,52.0,1151835,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851776,2851777,18.0,1151835,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851777,2851778,18.0,1151835,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851778,2851779,49.0,1151836,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851779,2851780,52.0,1151836,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851780,2851781,18.0,1151836,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851781,2851782,18.0,1151836,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851782,2851783,49.0,1151837,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22771.0,2135.0 +2851783,2851784,52.0,1151837,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22771.0,2135.0 +2851784,2851785,18.0,1151837,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851785,2851786,18.0,1151837,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851786,2851787,49.0,1151838,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851787,2851788,52.0,1151838,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851788,2851789,18.0,1151838,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851789,2851790,18.0,1151838,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851790,2851791,49.0,1151839,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851791,2851792,52.0,1151839,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851792,2851793,18.0,1151839,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851793,2851794,18.0,1151839,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851794,2851795,49.0,1151840,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851795,2851796,52.0,1151840,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851796,2851797,18.0,1151840,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851797,2851798,18.0,1151840,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851798,2851799,49.0,1151841,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851799,2851800,52.0,1151841,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851800,2851801,18.0,1151841,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851801,2851802,18.0,1151841,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851802,2851803,49.0,1151842,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22769.0,2133.0 +2851803,2851804,52.0,1151842,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22769.0,2133.0 +2851804,2851805,18.0,1151842,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851805,2851806,18.0,1151842,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22769.0,2133.0 +2851806,2851807,49.0,1151843,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22770.0,2134.0 +2851807,2851808,52.0,1151843,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851808,2851809,18.0,1151843,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851809,2851810,18.0,1151843,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851810,2851811,49.0,1151844,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22770.0,2134.0 +2851811,2851812,52.0,1151844,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851812,2851813,18.0,1151844,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851813,2851814,18.0,1151844,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851814,2851815,49.0,1151845,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22770.0,2134.0 +2851815,2851816,52.0,1151845,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851816,2851817,18.0,1151845,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851817,2851818,18.0,1151845,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851818,2851819,49.0,1151846,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22771.0,2135.0 +2851819,2851820,52.0,1151846,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22771.0,2135.0 +2851820,2851821,18.0,1151846,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851821,2851822,18.0,1151846,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851822,2851823,49.0,1151847,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851823,2851824,52.0,1151847,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851824,2851825,18.0,1151847,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851825,2851826,18.0,1151847,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851826,2851827,49.0,1151848,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2851827,2851828,52.0,1151848,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22747.0,2123.0 +2851828,2851829,18.0,1151848,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851829,2851830,18.0,1151848,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851830,2851831,49.0,1151849,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851831,2851832,52.0,1151849,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851832,2851833,18.0,1151849,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851833,2851834,18.0,1151849,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851834,2851835,49.0,1151850,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22772.0,2136.0 +2851835,2851836,52.0,1151850,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22772.0,2136.0 +2851836,2851837,18.0,1151850,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22772.0,2136.0 +2851837,2851838,18.0,1151850,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22772.0,2136.0 +2851838,2851839,49.0,1151851,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851839,2851840,52.0,1151851,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851840,2851841,18.0,1151851,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851841,2851842,18.0,1151851,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851842,2851843,49.0,1151852,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22771.0,2135.0 +2851843,2851844,52.0,1151852,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22771.0,2135.0 +2851844,2851845,18.0,1151852,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851845,2851846,18.0,1151852,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851846,2851847,49.0,1151853,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22771.0,2135.0 +2851847,2851848,52.0,1151853,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22771.0,2135.0 +2851848,2851849,18.0,1151853,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851849,2851850,18.0,1151853,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22771.0,2135.0 +2851850,2851851,49.0,1151854,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851851,2851852,52.0,1151854,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851852,2851853,18.0,1151854,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851853,2851854,18.0,1151854,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851854,2851855,49.0,1151855,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851855,2851856,52.0,1151855,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851856,2851857,18.0,1151855,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851857,2851858,18.0,1151855,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851858,2851859,49.0,1151856,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22767.0,2132.0 +2851859,2851860,52.0,1151856,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2851860,2851861,18.0,1151856,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851861,2851862,18.0,1151856,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851862,2851863,49.0,1151857,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2851863,2851864,52.0,1151857,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22747.0,2123.0 +2851864,2851865,18.0,1151857,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851865,2851866,18.0,1151857,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2851866,2851867,49.0,1151858,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22770.0,2134.0 +2851867,2851868,52.0,1151858,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2851868,2851869,18.0,1151858,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851869,2851870,18.0,1151858,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851870,2851871,49.0,1151859,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22768.0,2132.0 +2851871,2851872,52.0,1151859,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2851872,2851873,18.0,1151859,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851873,2851874,18.0,1151859,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851874,2851875,54.0,1151860,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2851875,2851876,54.0,1151860,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2851876,2851877,22.0,1151860,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22747.0,2123.0 +2851877,2851878,23.0,1151860,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2851878,2851879,54.0,1151861,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2851879,2851880,54.0,1151861,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2851880,2851881,22.0,1151861,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22768.0,2132.0 +2851881,2851882,23.0,1151861,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2851882,2851883,54.0,1151862,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2851883,2851884,54.0,1151862,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2851884,2851885,22.0,1151862,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22747.0,2123.0 +2851885,2851886,23.0,1151862,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2851886,2851887,54.0,1151863,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2851887,2851888,54.0,1151863,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2851888,2851889,22.0,1151863,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22767.0,2132.0 +2851889,2851890,23.0,1151863,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2851890,2851891,57.0,1151864,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22768.0,2132.0 +2851891,2851892,57.0,1151865,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22767.0,2132.0 +2851892,2851893,57.0,1151866,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22770.0,2134.0 +2851893,2851894,57.0,1151867,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22767.0,2132.0 +2851894,2851895,57.0,1151868,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22768.0,2132.0 +2851895,2851896,57.0,1151869,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22771.0,2135.0 +2851896,2851897,57.0,1151870,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22747.0,2123.0 +2851897,2851898,57.0,1151871,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22767.0,2132.0 +2851898,2851899,55.0,1151872,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22768.0,2132.0 +2851899,2851900,55.0,1151872,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22768.0,2132.0 +2851900,2851901,19.0,1151872,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22768.0,2132.0 +2851901,2851902,17.0,1151872,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22768.0,2132.0 +2851902,2851903,55.0,1151873,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22770.0,2134.0 +2851903,2851904,55.0,1151873,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22770.0,2134.0 +2851904,2851905,19.0,1151873,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22770.0,2134.0 +2851905,2851906,17.0,1151873,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22770.0,2134.0 +2851906,2851907,55.0,1151874,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22767.0,2132.0 +2851907,2851908,55.0,1151874,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22767.0,2132.0 +2851908,2851909,19.0,1151874,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22767.0,2132.0 +2851909,2851910,17.0,1151874,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22767.0,2132.0 +2851910,2851911,26.0,1151875,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22745.0,2121.0 +2851911,2851912,22.0,1151875,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22745.0,2121.0 +2851912,2851913,26.0,1151876,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22770.0,2134.0 +2851913,2851914,22.0,1151876,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2851914,2851915,26.0,1151877,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22748.0,2124.0 +2851915,2851916,22.0,1151877,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22748.0,2124.0 +2851916,2851917,26.0,1151878,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22767.0,2132.0 +2851917,2851918,22.0,1151878,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2851918,2851919,26.0,1151879,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22770.0,2134.0 +2851919,2851920,22.0,1151879,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2851920,2851921,26.0,1151880,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22770.0,2134.0 +2851921,2851922,22.0,1151880,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2851922,2851923,26.0,1151881,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22773.0,2136.0 +2851923,2851924,22.0,1151881,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22773.0,2136.0 +2851924,2851925,26.0,1151882,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22771.0,2135.0 +2851925,2851926,22.0,1151882,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2851926,2851927,26.0,1151883,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22771.0,2135.0 +2851927,2851928,22.0,1151883,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2851928,2851929,26.0,1151884,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22767.0,2132.0 +2851929,2851930,22.0,1151884,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2851930,2851931,26.0,1151885,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22770.0,2134.0 +2851931,2851932,22.0,1151885,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2851932,2851933,26.0,1151886,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22768.0,2132.0 +2851933,2851934,22.0,1151886,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2851934,2851935,26.0,1151887,1,1,0,4,1.0,38.0,1.0,-9.0,4.0,4511M,5.0,22767.0,2132.0 +2851935,2851936,22.0,1151887,2,1,12,2,1.0,52.0,1.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2851936,2851937,26.0,1151888,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2851937,2851938,24.0,1151888,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22769.0,2133.0 +2851938,2851939,26.0,1151889,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2851939,2851940,24.0,1151889,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2851940,2851941,26.0,1151890,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851941,2851942,24.0,1151890,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851942,2851943,26.0,1151891,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851943,2851944,24.0,1151891,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851944,2851945,26.0,1151892,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2851945,2851946,24.0,1151892,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2851946,2851947,26.0,1151893,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2851947,2851948,24.0,1151893,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2851948,2851949,26.0,1151894,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851949,2851950,24.0,1151894,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851950,2851951,26.0,1151895,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2851951,2851952,24.0,1151895,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2851952,2851953,26.0,1151896,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851953,2851954,24.0,1151896,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851954,2851955,26.0,1151897,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851955,2851956,24.0,1151897,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851956,2851957,26.0,1151898,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +2851957,2851958,24.0,1151898,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22745.0,2121.0 +2851958,2851959,26.0,1151899,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851959,2851960,24.0,1151899,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851960,2851961,26.0,1151900,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2851961,2851962,24.0,1151900,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2851962,2851963,26.0,1151901,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851963,2851964,24.0,1151901,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851964,2851965,26.0,1151902,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851965,2851966,24.0,1151902,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851966,2851967,26.0,1151903,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2851967,2851968,24.0,1151903,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2851968,2851969,26.0,1151904,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2851969,2851970,24.0,1151904,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2851970,2851971,26.0,1151905,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851971,2851972,24.0,1151905,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851972,2851973,26.0,1151906,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851973,2851974,24.0,1151906,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851974,2851975,26.0,1151907,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851975,2851976,24.0,1151907,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851976,2851977,26.0,1151908,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851977,2851978,24.0,1151908,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851978,2851979,26.0,1151909,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2851979,2851980,24.0,1151909,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2851980,2851981,26.0,1151910,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2851981,2851982,24.0,1151910,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2851982,2851983,26.0,1151911,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851983,2851984,24.0,1151911,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851984,2851985,26.0,1151912,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2851985,2851986,24.0,1151912,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2851986,2851987,26.0,1151913,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851987,2851988,24.0,1151913,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2851988,2851989,26.0,1151914,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2851989,2851990,24.0,1151914,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2851990,2851991,26.0,1151915,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22773.0,2136.0 +2851991,2851992,24.0,1151915,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22773.0,2136.0 +2851992,2851993,26.0,1151916,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2851993,2851994,24.0,1151916,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2851994,2851995,26.0,1151917,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2851995,2851996,24.0,1151917,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2851996,2851997,26.0,1151918,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2851997,2851998,24.0,1151918,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22769.0,2133.0 +2851998,2851999,26.0,1151919,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2851999,2852000,24.0,1151919,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852000,2852001,26.0,1151920,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852001,2852002,24.0,1151920,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852002,2852003,26.0,1151921,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852003,2852004,24.0,1151921,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852004,2852005,26.0,1151922,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852005,2852006,24.0,1151922,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852006,2852007,26.0,1151923,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852007,2852008,24.0,1151923,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852008,2852009,26.0,1151924,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852009,2852010,24.0,1151924,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852010,2852011,26.0,1151925,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852011,2852012,24.0,1151925,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852012,2852013,26.0,1151926,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852013,2852014,24.0,1151926,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852014,2852015,26.0,1151927,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852015,2852016,24.0,1151927,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852016,2852017,26.0,1151928,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22772.0,2136.0 +2852017,2852018,24.0,1151928,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22772.0,2136.0 +2852018,2852019,26.0,1151929,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852019,2852020,24.0,1151929,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852020,2852021,26.0,1151930,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852021,2852022,24.0,1151930,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852022,2852023,26.0,1151931,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22773.0,2136.0 +2852023,2852024,24.0,1151931,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22773.0,2136.0 +2852024,2852025,26.0,1151932,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852025,2852026,24.0,1151932,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852026,2852027,26.0,1151933,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852027,2852028,24.0,1151933,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852028,2852029,26.0,1151934,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852029,2852030,24.0,1151934,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852030,2852031,26.0,1151935,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852031,2852032,24.0,1151935,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852032,2852033,26.0,1151936,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852033,2852034,24.0,1151936,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852034,2852035,26.0,1151937,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852035,2852036,24.0,1151937,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852036,2852037,26.0,1151938,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852037,2852038,24.0,1151938,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852038,2852039,26.0,1151939,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852039,2852040,24.0,1151939,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852040,2852041,26.0,1151940,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852041,2852042,24.0,1151940,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852042,2852043,26.0,1151941,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852043,2852044,24.0,1151941,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852044,2852045,26.0,1151942,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2852045,2852046,24.0,1151942,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2852046,2852047,26.0,1151943,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852047,2852048,24.0,1151943,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852048,2852049,26.0,1151944,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852049,2852050,24.0,1151944,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852050,2852051,26.0,1151945,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2852051,2852052,24.0,1151945,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2852052,2852053,26.0,1151946,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852053,2852054,24.0,1151946,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852054,2852055,26.0,1151947,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852055,2852056,24.0,1151947,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852056,2852057,26.0,1151948,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852057,2852058,24.0,1151948,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852058,2852059,26.0,1151949,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852059,2852060,24.0,1151949,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852060,2852061,26.0,1151950,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852061,2852062,24.0,1151950,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852062,2852063,25.0,1151951,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852063,2852064,22.0,1151951,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852064,2852065,25.0,1151952,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852065,2852066,22.0,1151952,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852066,2852067,25.0,1151953,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852067,2852068,22.0,1151953,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852068,2852069,25.0,1151954,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852069,2852070,22.0,1151954,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852070,2852071,25.0,1151955,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852071,2852072,22.0,1151955,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852072,2852073,25.0,1151956,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852073,2852074,22.0,1151956,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852074,2852075,25.0,1151957,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852075,2852076,22.0,1151957,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852076,2852077,25.0,1151958,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852077,2852078,22.0,1151958,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852078,2852079,25.0,1151959,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852079,2852080,22.0,1151959,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852080,2852081,25.0,1151960,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852081,2852082,22.0,1151960,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852082,2852083,25.0,1151961,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852083,2852084,22.0,1151961,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852084,2852085,25.0,1151962,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852085,2852086,22.0,1151962,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852086,2852087,25.0,1151963,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2852087,2852088,22.0,1151963,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852088,2852089,25.0,1151964,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852089,2852090,22.0,1151964,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852090,2852091,25.0,1151965,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852091,2852092,22.0,1151965,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852092,2852093,25.0,1151966,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852093,2852094,22.0,1151966,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852094,2852095,25.0,1151967,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852095,2852096,22.0,1151967,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852096,2852097,25.0,1151968,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852097,2852098,22.0,1151968,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852098,2852099,25.0,1151969,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852099,2852100,22.0,1151969,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852100,2852101,25.0,1151970,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852101,2852102,22.0,1151970,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852102,2852103,25.0,1151971,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852103,2852104,22.0,1151971,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852104,2852105,25.0,1151972,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852105,2852106,22.0,1151972,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852106,2852107,25.0,1151973,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852107,2852108,22.0,1151973,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852108,2852109,25.0,1151974,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852109,2852110,22.0,1151974,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852110,2852111,25.0,1151975,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852111,2852112,22.0,1151975,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852112,2852113,25.0,1151976,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2852113,2852114,22.0,1151976,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852114,2852115,25.0,1151977,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852115,2852116,22.0,1151977,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852116,2852117,25.0,1151978,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852117,2852118,22.0,1151978,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852118,2852119,25.0,1151979,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852119,2852120,22.0,1151979,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852120,2852121,25.0,1151980,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852121,2852122,22.0,1151980,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852122,2852123,25.0,1151981,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852123,2852124,22.0,1151981,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852124,2852125,25.0,1151982,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2852125,2852126,22.0,1151982,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22769.0,2133.0 +2852126,2852127,25.0,1151983,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852127,2852128,22.0,1151983,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852128,2852129,25.0,1151984,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852129,2852130,24.0,1151984,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852130,2852131,25.0,1151985,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852131,2852132,24.0,1151985,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852132,2852133,25.0,1151986,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852133,2852134,24.0,1151986,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852134,2852135,25.0,1151987,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852135,2852136,24.0,1151987,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852136,2852137,25.0,1151988,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852137,2852138,24.0,1151988,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852138,2852139,25.0,1151989,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852139,2852140,24.0,1151989,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852140,2852141,25.0,1151990,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22748.0,2124.0 +2852141,2852142,24.0,1151990,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22748.0,2124.0 +2852142,2852143,25.0,1151991,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852143,2852144,24.0,1151991,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852144,2852145,25.0,1151992,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852145,2852146,24.0,1151992,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852146,2852147,25.0,1151993,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2852147,2852148,24.0,1151993,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2852148,2852149,25.0,1151994,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852149,2852150,24.0,1151994,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852150,2852151,25.0,1151995,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852151,2852152,24.0,1151995,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852152,2852153,25.0,1151996,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2852153,2852154,24.0,1151996,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2852154,2852155,25.0,1151997,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2852155,2852156,24.0,1151997,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2852156,2852157,25.0,1151998,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852157,2852158,24.0,1151998,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852158,2852159,25.0,1151999,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852159,2852160,24.0,1151999,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2852160,2852161,25.0,1152000,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852161,2852162,24.0,1152000,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852162,2852163,25.0,1152001,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852163,2852164,24.0,1152001,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852164,2852165,25.0,1152002,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852165,2852166,24.0,1152002,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852166,2852167,25.0,1152003,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2852167,2852168,24.0,1152003,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2852168,2852169,25.0,1152004,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852169,2852170,24.0,1152004,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852170,2852171,25.0,1152005,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852171,2852172,24.0,1152005,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852172,2852173,25.0,1152006,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852173,2852174,24.0,1152006,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852174,2852175,25.0,1152007,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852175,2852176,24.0,1152007,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852176,2852177,25.0,1152008,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852177,2852178,24.0,1152008,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2852178,2852179,25.0,1152009,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852179,2852180,24.0,1152009,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852180,2852181,25.0,1152010,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852181,2852182,24.0,1152010,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852182,2852183,25.0,1152011,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852183,2852184,24.0,1152011,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852184,2852185,26.0,1152012,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852185,2852186,24.0,1152012,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852186,2852187,26.0,1152013,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852187,2852188,24.0,1152013,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852188,2852189,26.0,1152014,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852189,2852190,24.0,1152014,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852190,2852191,26.0,1152015,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22747.0,2123.0 +2852191,2852192,24.0,1152015,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2852192,2852193,26.0,1152016,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852193,2852194,24.0,1152016,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852194,2852195,26.0,1152017,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22748.0,2124.0 +2852195,2852196,24.0,1152017,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22748.0,2124.0 +2852196,2852197,26.0,1152018,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852197,2852198,24.0,1152018,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852198,2852199,26.0,1152019,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852199,2852200,24.0,1152019,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852200,2852201,26.0,1152020,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852201,2852202,24.0,1152020,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852202,2852203,26.0,1152021,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852203,2852204,24.0,1152021,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852204,2852205,26.0,1152022,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852205,2852206,24.0,1152022,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852206,2852207,26.0,1152023,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22747.0,2123.0 +2852207,2852208,24.0,1152023,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2852208,2852209,26.0,1152024,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852209,2852210,24.0,1152024,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852210,2852211,26.0,1152025,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852211,2852212,24.0,1152025,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852212,2852213,26.0,1152026,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852213,2852214,24.0,1152026,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852214,2852215,26.0,1152027,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852215,2852216,24.0,1152027,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852216,2852217,26.0,1152028,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852217,2852218,24.0,1152028,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852218,2852219,26.0,1152029,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852219,2852220,24.0,1152029,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852220,2852221,26.0,1152030,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852221,2852222,24.0,1152030,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852222,2852223,26.0,1152031,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852223,2852224,24.0,1152031,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852224,2852225,26.0,1152032,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852225,2852226,24.0,1152032,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852226,2852227,26.0,1152033,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852227,2852228,24.0,1152033,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852228,2852229,26.0,1152034,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852229,2852230,24.0,1152034,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852230,2852231,26.0,1152035,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22771.0,2135.0 +2852231,2852232,24.0,1152035,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852232,2852233,26.0,1152036,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852233,2852234,24.0,1152036,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852234,2852235,26.0,1152037,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852235,2852236,24.0,1152037,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852236,2852237,26.0,1152038,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852237,2852238,24.0,1152038,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852238,2852239,26.0,1152039,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852239,2852240,24.0,1152039,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852240,2852241,26.0,1152040,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852241,2852242,24.0,1152040,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852242,2852243,26.0,1152041,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852243,2852244,24.0,1152041,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852244,2852245,26.0,1152042,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852245,2852246,24.0,1152042,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852246,2852247,26.0,1152043,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22771.0,2135.0 +2852247,2852248,24.0,1152043,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852248,2852249,26.0,1152044,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852249,2852250,24.0,1152044,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852250,2852251,26.0,1152045,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22771.0,2135.0 +2852251,2852252,24.0,1152045,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852252,2852253,26.0,1152046,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852253,2852254,24.0,1152046,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852254,2852255,26.0,1152047,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22771.0,2135.0 +2852255,2852256,24.0,1152047,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852256,2852257,26.0,1152048,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852257,2852258,24.0,1152048,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852258,2852259,26.0,1152049,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22747.0,2123.0 +2852259,2852260,24.0,1152049,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2852260,2852261,26.0,1152050,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852261,2852262,24.0,1152050,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852262,2852263,26.0,1152051,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852263,2852264,24.0,1152051,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852264,2852265,26.0,1152052,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852265,2852266,24.0,1152052,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852266,2852267,26.0,1152053,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852267,2852268,24.0,1152053,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852268,2852269,26.0,1152054,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852269,2852270,24.0,1152054,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852270,2852271,26.0,1152055,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22769.0,2133.0 +2852271,2852272,24.0,1152055,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22769.0,2133.0 +2852272,2852273,26.0,1152056,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22747.0,2123.0 +2852273,2852274,24.0,1152056,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2852274,2852275,26.0,1152057,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852275,2852276,24.0,1152057,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852276,2852277,26.0,1152058,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852277,2852278,24.0,1152058,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852278,2852279,26.0,1152059,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852279,2852280,24.0,1152059,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852280,2852281,26.0,1152060,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852281,2852282,24.0,1152060,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852282,2852283,26.0,1152061,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852283,2852284,24.0,1152061,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852284,2852285,26.0,1152062,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852285,2852286,24.0,1152062,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852286,2852287,26.0,1152063,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22747.0,2123.0 +2852287,2852288,24.0,1152063,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2852288,2852289,26.0,1152064,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852289,2852290,24.0,1152064,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852290,2852291,26.0,1152065,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852291,2852292,24.0,1152065,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852292,2852293,26.0,1152066,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22745.0,2121.0 +2852293,2852294,24.0,1152066,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22745.0,2121.0 +2852294,2852295,26.0,1152067,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852295,2852296,24.0,1152067,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852296,2852297,26.0,1152068,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22771.0,2135.0 +2852297,2852298,24.0,1152068,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852298,2852299,26.0,1152069,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22747.0,2123.0 +2852299,2852300,24.0,1152069,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2852300,2852301,26.0,1152070,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852301,2852302,24.0,1152070,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852302,2852303,26.0,1152071,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22771.0,2135.0 +2852303,2852304,24.0,1152071,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852304,2852305,26.0,1152072,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22771.0,2135.0 +2852305,2852306,24.0,1152072,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852306,2852307,26.0,1152073,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852307,2852308,24.0,1152073,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852308,2852309,26.0,1152074,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852309,2852310,24.0,1152074,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852310,2852311,26.0,1152075,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22773.0,2136.0 +2852311,2852312,24.0,1152075,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22773.0,2136.0 +2852312,2852313,26.0,1152076,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852313,2852314,24.0,1152076,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852314,2852315,26.0,1152077,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852315,2852316,24.0,1152077,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852316,2852317,26.0,1152078,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852317,2852318,24.0,1152078,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852318,2852319,26.0,1152079,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852319,2852320,24.0,1152079,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852320,2852321,26.0,1152080,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852321,2852322,24.0,1152080,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852322,2852323,26.0,1152081,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22745.0,2121.0 +2852323,2852324,24.0,1152081,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22745.0,2121.0 +2852324,2852325,26.0,1152082,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852325,2852326,24.0,1152082,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852326,2852327,26.0,1152083,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852327,2852328,24.0,1152083,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852328,2852329,26.0,1152084,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22771.0,2135.0 +2852329,2852330,24.0,1152084,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852330,2852331,26.0,1152085,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852331,2852332,24.0,1152085,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852332,2852333,26.0,1152086,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852333,2852334,24.0,1152086,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852334,2852335,26.0,1152087,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852335,2852336,24.0,1152087,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852336,2852337,26.0,1152088,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852337,2852338,24.0,1152088,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852338,2852339,26.0,1152089,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22769.0,2133.0 +2852339,2852340,24.0,1152089,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22769.0,2133.0 +2852340,2852341,26.0,1152090,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22771.0,2135.0 +2852341,2852342,24.0,1152090,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852342,2852343,26.0,1152091,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852343,2852344,24.0,1152091,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852344,2852345,26.0,1152092,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852345,2852346,24.0,1152092,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852346,2852347,26.0,1152093,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852347,2852348,24.0,1152093,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852348,2852349,26.0,1152094,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852349,2852350,24.0,1152094,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852350,2852351,26.0,1152095,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852351,2852352,24.0,1152095,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852352,2852353,26.0,1152096,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852353,2852354,24.0,1152096,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852354,2852355,26.0,1152097,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852355,2852356,24.0,1152097,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852356,2852357,26.0,1152098,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852357,2852358,24.0,1152098,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852358,2852359,26.0,1152099,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852359,2852360,24.0,1152099,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852360,2852361,26.0,1152100,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852361,2852362,24.0,1152100,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852362,2852363,26.0,1152101,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852363,2852364,24.0,1152101,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852364,2852365,26.0,1152102,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852365,2852366,24.0,1152102,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852366,2852367,26.0,1152103,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852367,2852368,24.0,1152103,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852368,2852369,26.0,1152104,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852369,2852370,24.0,1152104,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852370,2852371,26.0,1152105,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852371,2852372,24.0,1152105,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852372,2852373,26.0,1152106,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22769.0,2133.0 +2852373,2852374,24.0,1152106,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22769.0,2133.0 +2852374,2852375,26.0,1152107,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852375,2852376,24.0,1152107,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852376,2852377,26.0,1152108,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22771.0,2135.0 +2852377,2852378,24.0,1152108,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22771.0,2135.0 +2852378,2852379,26.0,1152109,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852379,2852380,24.0,1152109,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852380,2852381,26.0,1152110,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852381,2852382,24.0,1152110,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852382,2852383,26.0,1152111,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22768.0,2132.0 +2852383,2852384,24.0,1152111,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22768.0,2132.0 +2852384,2852385,26.0,1152112,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22767.0,2132.0 +2852385,2852386,24.0,1152112,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22767.0,2132.0 +2852386,2852387,26.0,1152113,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22745.0,2121.0 +2852387,2852388,24.0,1152113,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22745.0,2121.0 +2852388,2852389,26.0,1152114,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22770.0,2134.0 +2852389,2852390,24.0,1152114,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22770.0,2134.0 +2852390,2852391,26.0,1152115,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22747.0,2123.0 +2852391,2852392,24.0,1152115,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2852392,2852393,40.0,1152116,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22747.0,2123.0 +2852393,2852394,21.0,1152116,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852394,2852395,40.0,1152117,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852395,2852396,21.0,1152117,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852396,2852397,40.0,1152118,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852397,2852398,21.0,1152118,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852398,2852399,40.0,1152119,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852399,2852400,21.0,1152119,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852400,2852401,40.0,1152120,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852401,2852402,21.0,1152120,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852402,2852403,40.0,1152121,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852403,2852404,21.0,1152121,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852404,2852405,40.0,1152122,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852405,2852406,21.0,1152122,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852406,2852407,40.0,1152123,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852407,2852408,21.0,1152123,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852408,2852409,40.0,1152124,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852409,2852410,21.0,1152124,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852410,2852411,40.0,1152125,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852411,2852412,21.0,1152125,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852412,2852413,40.0,1152126,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22770.0,2134.0 +2852413,2852414,21.0,1152126,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852414,2852415,40.0,1152127,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852415,2852416,21.0,1152127,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852416,2852417,40.0,1152128,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22770.0,2134.0 +2852417,2852418,21.0,1152128,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852418,2852419,40.0,1152129,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22771.0,2135.0 +2852419,2852420,21.0,1152129,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852420,2852421,40.0,1152130,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22747.0,2123.0 +2852421,2852422,21.0,1152130,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852422,2852423,40.0,1152131,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852423,2852424,21.0,1152131,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852424,2852425,40.0,1152132,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852425,2852426,21.0,1152132,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852426,2852427,40.0,1152133,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852427,2852428,21.0,1152133,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852428,2852429,40.0,1152134,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852429,2852430,21.0,1152134,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852430,2852431,40.0,1152135,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22771.0,2135.0 +2852431,2852432,21.0,1152135,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852432,2852433,40.0,1152136,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852433,2852434,21.0,1152136,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852434,2852435,40.0,1152137,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22769.0,2133.0 +2852435,2852436,21.0,1152137,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22769.0,2133.0 +2852436,2852437,40.0,1152138,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22771.0,2135.0 +2852437,2852438,21.0,1152138,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852438,2852439,40.0,1152139,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852439,2852440,21.0,1152139,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852440,2852441,40.0,1152140,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852441,2852442,21.0,1152140,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852442,2852443,40.0,1152141,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22771.0,2135.0 +2852443,2852444,21.0,1152141,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852444,2852445,40.0,1152142,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852445,2852446,21.0,1152142,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852446,2852447,40.0,1152143,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22770.0,2134.0 +2852447,2852448,21.0,1152143,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852448,2852449,40.0,1152144,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22771.0,2135.0 +2852449,2852450,21.0,1152144,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852450,2852451,40.0,1152145,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852451,2852452,21.0,1152145,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852452,2852453,40.0,1152146,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22771.0,2135.0 +2852453,2852454,21.0,1152146,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852454,2852455,40.0,1152147,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852455,2852456,21.0,1152147,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852456,2852457,40.0,1152148,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852457,2852458,21.0,1152148,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852458,2852459,40.0,1152149,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852459,2852460,21.0,1152149,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852460,2852461,40.0,1152150,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22747.0,2123.0 +2852461,2852462,21.0,1152150,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852462,2852463,40.0,1152151,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22771.0,2135.0 +2852463,2852464,21.0,1152151,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852464,2852465,40.0,1152152,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852465,2852466,21.0,1152152,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852466,2852467,40.0,1152153,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852467,2852468,21.0,1152153,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852468,2852469,40.0,1152154,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22747.0,2123.0 +2852469,2852470,21.0,1152154,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852470,2852471,40.0,1152155,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852471,2852472,21.0,1152155,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852472,2852473,40.0,1152156,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22767.0,2132.0 +2852473,2852474,21.0,1152156,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852474,2852475,40.0,1152157,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22771.0,2135.0 +2852475,2852476,21.0,1152157,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852476,2852477,40.0,1152158,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852477,2852478,21.0,1152158,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852478,2852479,40.0,1152159,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22768.0,2132.0 +2852479,2852480,21.0,1152159,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852480,2852481,27.0,1152160,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22771.0,2135.0 +2852481,2852482,23.0,1152160,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22771.0,2135.0 +2852482,2852483,27.0,1152161,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852483,2852484,23.0,1152161,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852484,2852485,27.0,1152162,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22771.0,2135.0 +2852485,2852486,23.0,1152162,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22771.0,2135.0 +2852486,2852487,27.0,1152163,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852487,2852488,23.0,1152163,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852488,2852489,27.0,1152164,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852489,2852490,23.0,1152164,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852490,2852491,27.0,1152165,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22768.0,2132.0 +2852491,2852492,23.0,1152165,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22768.0,2132.0 +2852492,2852493,27.0,1152166,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22747.0,2123.0 +2852493,2852494,23.0,1152166,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22747.0,2123.0 +2852494,2852495,27.0,1152167,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852495,2852496,23.0,1152167,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852496,2852497,27.0,1152168,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852497,2852498,23.0,1152168,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852498,2852499,27.0,1152169,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852499,2852500,23.0,1152169,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852500,2852501,27.0,1152170,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22771.0,2135.0 +2852501,2852502,23.0,1152170,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22771.0,2135.0 +2852502,2852503,27.0,1152171,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22768.0,2132.0 +2852503,2852504,23.0,1152171,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22768.0,2132.0 +2852504,2852505,27.0,1152172,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22768.0,2132.0 +2852505,2852506,23.0,1152172,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22768.0,2132.0 +2852506,2852507,27.0,1152173,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22771.0,2135.0 +2852507,2852508,23.0,1152173,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22771.0,2135.0 +2852508,2852509,27.0,1152174,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22768.0,2132.0 +2852509,2852510,23.0,1152174,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22768.0,2132.0 +2852510,2852511,27.0,1152175,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22768.0,2132.0 +2852511,2852512,23.0,1152175,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22768.0,2132.0 +2852512,2852513,27.0,1152176,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852513,2852514,23.0,1152176,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852514,2852515,27.0,1152177,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852515,2852516,23.0,1152177,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852516,2852517,27.0,1152178,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22771.0,2135.0 +2852517,2852518,23.0,1152178,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22771.0,2135.0 +2852518,2852519,27.0,1152179,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852519,2852520,23.0,1152179,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852520,2852521,27.0,1152180,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22769.0,2133.0 +2852521,2852522,23.0,1152180,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22769.0,2133.0 +2852522,2852523,27.0,1152181,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22768.0,2132.0 +2852523,2852524,23.0,1152181,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22768.0,2132.0 +2852524,2852525,27.0,1152182,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852525,2852526,23.0,1152182,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852526,2852527,27.0,1152183,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22771.0,2135.0 +2852527,2852528,23.0,1152183,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22771.0,2135.0 +2852528,2852529,27.0,1152184,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852529,2852530,23.0,1152184,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852530,2852531,27.0,1152185,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852531,2852532,23.0,1152185,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852532,2852533,27.0,1152186,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852533,2852534,23.0,1152186,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852534,2852535,27.0,1152187,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22768.0,2132.0 +2852535,2852536,23.0,1152187,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22768.0,2132.0 +2852536,2852537,27.0,1152188,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22768.0,2132.0 +2852537,2852538,23.0,1152188,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22768.0,2132.0 +2852538,2852539,27.0,1152189,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852539,2852540,23.0,1152189,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852540,2852541,27.0,1152190,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852541,2852542,23.0,1152190,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852542,2852543,27.0,1152191,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22745.0,2121.0 +2852543,2852544,23.0,1152191,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22745.0,2121.0 +2852544,2852545,27.0,1152192,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852545,2852546,23.0,1152192,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852546,2852547,27.0,1152193,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22769.0,2133.0 +2852547,2852548,23.0,1152193,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22769.0,2133.0 +2852548,2852549,27.0,1152194,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22770.0,2134.0 +2852549,2852550,23.0,1152194,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22770.0,2134.0 +2852550,2852551,27.0,1152195,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852551,2852552,23.0,1152195,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852552,2852553,27.0,1152196,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852553,2852554,23.0,1152196,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852554,2852555,27.0,1152197,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22767.0,2132.0 +2852555,2852556,23.0,1152197,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22767.0,2132.0 +2852556,2852557,25.0,1152198,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852557,2852558,22.0,1152198,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852558,2852559,21.0,1152198,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852559,2852560,25.0,1152199,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852560,2852561,22.0,1152199,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852561,2852562,21.0,1152199,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852562,2852563,25.0,1152200,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852563,2852564,22.0,1152200,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852564,2852565,21.0,1152200,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852565,2852566,25.0,1152201,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852566,2852567,22.0,1152201,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852567,2852568,21.0,1152201,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852568,2852569,25.0,1152202,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852569,2852570,22.0,1152202,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852570,2852571,21.0,1152202,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852571,2852572,25.0,1152203,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852572,2852573,22.0,1152203,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852573,2852574,21.0,1152203,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852574,2852575,25.0,1152204,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852575,2852576,22.0,1152204,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852576,2852577,21.0,1152204,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852577,2852578,25.0,1152205,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852578,2852579,22.0,1152205,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852579,2852580,21.0,1152205,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852580,2852581,25.0,1152206,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852581,2852582,22.0,1152206,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852582,2852583,21.0,1152206,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852583,2852584,25.0,1152207,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852584,2852585,22.0,1152207,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852585,2852586,21.0,1152207,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852586,2852587,25.0,1152208,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852587,2852588,22.0,1152208,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852588,2852589,21.0,1152208,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852589,2852590,25.0,1152209,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852590,2852591,22.0,1152209,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852591,2852592,21.0,1152209,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852592,2852593,25.0,1152210,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852593,2852594,22.0,1152210,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852594,2852595,21.0,1152210,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852595,2852596,25.0,1152211,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852596,2852597,22.0,1152211,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852597,2852598,21.0,1152211,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852598,2852599,25.0,1152212,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852599,2852600,22.0,1152212,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852600,2852601,21.0,1152212,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852601,2852602,25.0,1152213,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22769.0,2133.0 +2852602,2852603,22.0,1152213,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22769.0,2133.0 +2852603,2852604,21.0,1152213,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22769.0,2133.0 +2852604,2852605,25.0,1152214,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852605,2852606,22.0,1152214,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852606,2852607,21.0,1152214,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852607,2852608,25.0,1152215,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852608,2852609,22.0,1152215,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852609,2852610,21.0,1152215,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852610,2852611,25.0,1152216,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852611,2852612,22.0,1152216,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852612,2852613,21.0,1152216,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852613,2852614,25.0,1152217,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852614,2852615,22.0,1152217,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852615,2852616,21.0,1152217,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852616,2852617,25.0,1152218,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852617,2852618,22.0,1152218,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852618,2852619,21.0,1152218,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852619,2852620,25.0,1152219,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852620,2852621,22.0,1152219,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852621,2852622,21.0,1152219,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852622,2852623,25.0,1152220,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852623,2852624,22.0,1152220,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852624,2852625,21.0,1152220,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852625,2852626,25.0,1152221,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852626,2852627,22.0,1152221,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852627,2852628,21.0,1152221,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852628,2852629,25.0,1152222,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852629,2852630,22.0,1152222,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852630,2852631,21.0,1152222,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852631,2852632,25.0,1152223,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852632,2852633,22.0,1152223,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852633,2852634,21.0,1152223,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852634,2852635,25.0,1152224,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852635,2852636,22.0,1152224,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852636,2852637,21.0,1152224,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852637,2852638,25.0,1152225,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852638,2852639,22.0,1152225,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852639,2852640,21.0,1152225,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852640,2852641,25.0,1152226,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852641,2852642,22.0,1152226,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852642,2852643,21.0,1152226,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852643,2852644,25.0,1152227,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22769.0,2133.0 +2852644,2852645,22.0,1152227,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22769.0,2133.0 +2852645,2852646,21.0,1152227,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22769.0,2133.0 +2852646,2852647,25.0,1152228,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852647,2852648,22.0,1152228,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852648,2852649,21.0,1152228,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852649,2852650,25.0,1152229,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22748.0,2124.0 +2852650,2852651,22.0,1152229,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22748.0,2124.0 +2852651,2852652,21.0,1152229,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22748.0,2124.0 +2852652,2852653,25.0,1152230,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852653,2852654,22.0,1152230,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852654,2852655,21.0,1152230,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852655,2852656,25.0,1152231,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852656,2852657,22.0,1152231,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852657,2852658,21.0,1152231,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852658,2852659,25.0,1152232,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22773.0,2136.0 +2852659,2852660,22.0,1152232,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22773.0,2136.0 +2852660,2852661,21.0,1152232,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22773.0,2136.0 +2852661,2852662,25.0,1152233,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852662,2852663,22.0,1152233,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852663,2852664,21.0,1152233,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852664,2852665,25.0,1152234,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852665,2852666,22.0,1152234,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852666,2852667,21.0,1152234,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852667,2852668,25.0,1152235,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852668,2852669,22.0,1152235,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852669,2852670,21.0,1152235,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852670,2852671,25.0,1152236,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852671,2852672,22.0,1152236,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852672,2852673,21.0,1152236,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852673,2852674,25.0,1152237,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852674,2852675,22.0,1152237,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852675,2852676,21.0,1152237,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852676,2852677,25.0,1152238,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852677,2852678,22.0,1152238,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852678,2852679,21.0,1152238,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852679,2852680,25.0,1152239,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852680,2852681,22.0,1152239,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852681,2852682,21.0,1152239,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852682,2852683,25.0,1152240,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852683,2852684,22.0,1152240,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852684,2852685,21.0,1152240,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852685,2852686,25.0,1152241,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852686,2852687,22.0,1152241,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852687,2852688,21.0,1152241,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852688,2852689,25.0,1152242,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852689,2852690,22.0,1152242,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852690,2852691,21.0,1152242,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852691,2852692,25.0,1152243,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852692,2852693,22.0,1152243,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852693,2852694,21.0,1152243,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852694,2852695,25.0,1152244,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852695,2852696,22.0,1152244,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852696,2852697,21.0,1152244,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852697,2852698,25.0,1152245,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22769.0,2133.0 +2852698,2852699,22.0,1152245,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22769.0,2133.0 +2852699,2852700,21.0,1152245,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22769.0,2133.0 +2852700,2852701,25.0,1152246,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852701,2852702,22.0,1152246,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852702,2852703,21.0,1152246,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852703,2852704,25.0,1152247,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852704,2852705,22.0,1152247,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852705,2852706,21.0,1152247,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852706,2852707,25.0,1152248,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852707,2852708,22.0,1152248,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852708,2852709,21.0,1152248,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852709,2852710,25.0,1152249,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852710,2852711,22.0,1152249,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852711,2852712,21.0,1152249,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852712,2852713,25.0,1152250,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852713,2852714,22.0,1152250,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852714,2852715,21.0,1152250,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22770.0,2134.0 +2852715,2852716,25.0,1152251,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852716,2852717,22.0,1152251,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852717,2852718,21.0,1152251,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852718,2852719,25.0,1152252,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852719,2852720,22.0,1152252,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852720,2852721,21.0,1152252,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852721,2852722,25.0,1152253,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852722,2852723,22.0,1152253,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852723,2852724,21.0,1152253,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852724,2852725,25.0,1152254,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852725,2852726,22.0,1152254,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852726,2852727,21.0,1152254,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852727,2852728,25.0,1152255,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852728,2852729,22.0,1152255,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852729,2852730,21.0,1152255,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852730,2852731,25.0,1152256,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22773.0,2136.0 +2852731,2852732,22.0,1152256,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22773.0,2136.0 +2852732,2852733,21.0,1152256,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22773.0,2136.0 +2852733,2852734,25.0,1152257,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852734,2852735,22.0,1152257,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852735,2852736,21.0,1152257,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22768.0,2132.0 +2852736,2852737,25.0,1152258,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852737,2852738,22.0,1152258,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852738,2852739,21.0,1152258,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852739,2852740,25.0,1152259,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852740,2852741,22.0,1152259,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852741,2852742,21.0,1152259,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2852742,2852743,25.0,1152260,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852743,2852744,22.0,1152260,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852744,2852745,21.0,1152260,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852745,2852746,25.0,1152261,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852746,2852747,22.0,1152261,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852747,2852748,21.0,1152261,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852748,2852749,25.0,1152262,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852749,2852750,22.0,1152262,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852750,2852751,21.0,1152262,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852751,2852752,25.0,1152263,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852752,2852753,22.0,1152263,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852753,2852754,21.0,1152263,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852754,2852755,25.0,1152264,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852755,2852756,22.0,1152264,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852756,2852757,21.0,1152264,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852757,2852758,25.0,1152265,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852758,2852759,22.0,1152265,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852759,2852760,21.0,1152265,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22767.0,2132.0 +2852760,2852761,25.0,1152266,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852761,2852762,22.0,1152266,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852762,2852763,21.0,1152266,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22771.0,2135.0 +2852763,2852764,25.0,1152267,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22773.0,2136.0 +2852764,2852765,24.0,1152267,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22773.0,2136.0 +2852765,2852766,25.0,1152268,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22767.0,2132.0 +2852766,2852767,24.0,1152268,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22767.0,2132.0 +2852767,2852768,25.0,1152269,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22767.0,2132.0 +2852768,2852769,24.0,1152269,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22767.0,2132.0 +2852769,2852770,25.0,1152270,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22770.0,2134.0 +2852770,2852771,24.0,1152270,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22770.0,2134.0 +2852771,2852772,25.0,1152271,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22767.0,2132.0 +2852772,2852773,24.0,1152271,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22767.0,2132.0 +2852773,2852774,25.0,1152272,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22769.0,2133.0 +2852774,2852775,24.0,1152272,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22769.0,2133.0 +2852775,2852776,25.0,1152273,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22768.0,2132.0 +2852776,2852777,24.0,1152273,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22768.0,2132.0 +2852777,2852778,25.0,1152274,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22768.0,2132.0 +2852778,2852779,24.0,1152274,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22768.0,2132.0 +2852779,2852780,25.0,1152275,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22768.0,2132.0 +2852780,2852781,24.0,1152275,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22768.0,2132.0 +2852781,2852782,25.0,1152276,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22768.0,2132.0 +2852782,2852783,24.0,1152276,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22768.0,2132.0 +2852783,2852784,25.0,1152277,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22747.0,2123.0 +2852784,2852785,24.0,1152277,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22747.0,2123.0 +2852785,2852786,25.0,1152278,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22767.0,2132.0 +2852786,2852787,24.0,1152278,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22767.0,2132.0 +2852787,2852788,25.0,1152279,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22767.0,2132.0 +2852788,2852789,24.0,1152279,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22767.0,2132.0 +2852789,2852790,25.0,1152280,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22771.0,2135.0 +2852790,2852791,24.0,1152280,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22771.0,2135.0 +2852791,2852792,25.0,1152281,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22770.0,2134.0 +2852792,2852793,24.0,1152281,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22770.0,2134.0 +2852793,2852794,26.0,1152282,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,52M2,9.0,22771.0,2135.0 +2852794,2852795,36.0,1152283,1,2,0,1,3.0,20.0,6.0,-9.0,4.0,5313,9.0,22768.0,2132.0 +2852795,2852796,36.0,1152284,1,2,0,1,3.0,20.0,6.0,-9.0,4.0,5313,9.0,22768.0,2132.0 +2852796,2852797,26.0,1152285,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,52M2,9.0,22770.0,2134.0 +2852797,2852798,36.0,1152286,1,2,0,1,3.0,20.0,6.0,-9.0,4.0,5313,9.0,22767.0,2132.0 +2852798,2852799,36.0,1152287,1,2,0,1,3.0,20.0,6.0,-9.0,4.0,5313,9.0,22771.0,2135.0 +2852799,2852800,36.0,1152288,1,2,0,1,3.0,20.0,6.0,-9.0,4.0,5313,9.0,22747.0,2123.0 +2852800,2852801,31.0,1152289,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2852801,2852802,24.0,1152289,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2852802,2852803,31.0,1152290,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2852803,2852804,24.0,1152290,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2852804,2852805,31.0,1152291,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22770.0,2134.0 +2852805,2852806,24.0,1152291,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22770.0,2134.0 +2852806,2852807,31.0,1152292,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22769.0,2133.0 +2852807,2852808,24.0,1152292,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22769.0,2133.0 +2852808,2852809,31.0,1152293,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2852809,2852810,24.0,1152293,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2852810,2852811,31.0,1152294,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2852811,2852812,24.0,1152294,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22768.0,2132.0 +2852812,2852813,31.0,1152295,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2852813,2852814,24.0,1152295,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22767.0,2132.0 +2852814,2852815,19.0,1152296,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2852815,2852816,50.0,1152296,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22767.0,2132.0 +2852816,2852817,19.0,1152297,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22769.0,2133.0 +2852817,2852818,50.0,1152297,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22769.0,2133.0 +2852818,2852819,19.0,1152298,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2852819,2852820,50.0,1152298,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22767.0,2132.0 +2852820,2852821,19.0,1152299,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22769.0,2133.0 +2852821,2852822,50.0,1152299,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22769.0,2133.0 +2852822,2852823,19.0,1152300,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2852823,2852824,50.0,1152300,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22771.0,2135.0 +2852824,2852825,19.0,1152301,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22747.0,2123.0 +2852825,2852826,50.0,1152301,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22747.0,2123.0 +2852826,2852827,19.0,1152302,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2852827,2852828,50.0,1152302,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22771.0,2135.0 +2852828,2852829,19.0,1152303,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2852829,2852830,50.0,1152303,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22771.0,2135.0 +2852830,2852831,19.0,1152304,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2852831,2852832,50.0,1152304,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22770.0,2134.0 +2852832,2852833,19.0,1152305,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2852833,2852834,50.0,1152305,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22768.0,2132.0 +2852834,2852835,19.0,1152306,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2852835,2852836,50.0,1152306,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22770.0,2134.0 +2852836,2852837,19.0,1152307,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2852837,2852838,50.0,1152307,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22768.0,2132.0 +2852838,2852839,19.0,1152308,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2852839,2852840,50.0,1152308,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22767.0,2132.0 +2852840,2852841,19.0,1152309,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2852841,2852842,50.0,1152309,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22771.0,2135.0 +2852842,2852843,19.0,1152310,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2852843,2852844,50.0,1152310,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22767.0,2132.0 +2852844,2852845,19.0,1152311,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2852845,2852846,50.0,1152311,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22768.0,2132.0 +2852846,2852847,19.0,1152312,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22769.0,2133.0 +2852847,2852848,50.0,1152312,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22769.0,2133.0 +2852848,2852849,19.0,1152313,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22747.0,2123.0 +2852849,2852850,50.0,1152313,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22747.0,2123.0 +2852850,2852851,19.0,1152314,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2852851,2852852,50.0,1152314,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22770.0,2134.0 +2852852,2852853,19.0,1152315,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2852853,2852854,50.0,1152315,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22770.0,2134.0 +2852854,2852855,19.0,1152316,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2852855,2852856,50.0,1152316,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22767.0,2132.0 +2852856,2852857,19.0,1152317,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2852857,2852858,50.0,1152317,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22771.0,2135.0 +2852858,2852859,19.0,1152318,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2852859,2852860,50.0,1152318,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22767.0,2132.0 +2852860,2852861,19.0,1152319,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2852861,2852862,50.0,1152319,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22768.0,2132.0 +2852862,2852863,19.0,1152320,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22747.0,2123.0 +2852863,2852864,50.0,1152320,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22747.0,2123.0 +2852864,2852865,19.0,1152321,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2852865,2852866,50.0,1152321,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22771.0,2135.0 +2852866,2852867,19.0,1152322,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2852867,2852868,50.0,1152322,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22771.0,2135.0 +2852868,2852869,19.0,1152323,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2852869,2852870,50.0,1152323,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22771.0,2135.0 +2852870,2852871,19.0,1152324,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2852871,2852872,50.0,1152324,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22767.0,2132.0 +2852872,2852873,19.0,1152325,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2852873,2852874,50.0,1152325,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22770.0,2134.0 +2852874,2852875,19.0,1152326,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2852875,2852876,50.0,1152326,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22770.0,2134.0 +2852876,2852877,24.0,1152327,1,2,0,3,1.0,30.0,6.0,16.0,4.0,5417,10.0,22768.0,2132.0 +2852877,2852878,24.0,1152328,1,2,0,3,1.0,30.0,6.0,16.0,4.0,5417,10.0,22767.0,2132.0 +2852878,2852879,24.0,1152329,1,2,0,3,1.0,30.0,6.0,16.0,4.0,5417,10.0,22768.0,2132.0 +2852879,2852880,24.0,1152330,1,2,0,3,1.0,30.0,6.0,16.0,4.0,5417,10.0,22767.0,2132.0 +2852880,2852881,24.0,1152331,1,2,0,3,1.0,30.0,6.0,16.0,4.0,5417,10.0,22767.0,2132.0 +2852881,2852882,24.0,1152332,1,2,0,3,1.0,30.0,6.0,16.0,4.0,5417,10.0,22771.0,2135.0 +2852882,2852883,24.0,1152333,1,2,0,3,1.0,30.0,6.0,16.0,4.0,5417,10.0,22770.0,2134.0 +2852883,2852884,24.0,1152334,1,2,0,3,1.0,30.0,6.0,16.0,4.0,5417,10.0,22771.0,2135.0 +2852884,2852885,24.0,1152335,1,2,0,3,1.0,30.0,6.0,16.0,4.0,5417,10.0,22767.0,2132.0 +2852885,2852886,24.0,1152336,1,2,0,3,1.0,30.0,6.0,16.0,4.0,5417,10.0,22747.0,2123.0 +2852886,2852887,24.0,1152337,1,2,0,3,1.0,30.0,6.0,16.0,4.0,5417,10.0,22767.0,2132.0 +2852887,2852888,24.0,1152338,1,2,0,4,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2852888,2852889,23.0,1152339,1,1,0,4,2.0,5.0,5.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2852889,2852890,23.0,1152340,1,1,0,4,2.0,5.0,5.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2852890,2852891,22.0,1152341,1,1,0,4,1.0,20.0,3.0,-9.0,4.0,611M1,13.0,22769.0,2133.0 +2852891,2852892,19.0,1152342,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852892,2852893,19.0,1152343,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852893,2852894,19.0,1152344,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2852894,2852895,19.0,1152345,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2852895,2852896,24.0,1152346,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22767.0,2132.0 +2852896,2852897,19.0,1152347,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2852897,2852898,19.0,1152348,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2852898,2852899,24.0,1152349,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22767.0,2132.0 +2852899,2852900,24.0,1152350,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22770.0,2134.0 +2852900,2852901,19.0,1152351,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2852901,2852902,19.0,1152352,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2852902,2852903,19.0,1152353,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22769.0,2133.0 +2852903,2852904,24.0,1152354,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22767.0,2132.0 +2852904,2852905,24.0,1152355,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22768.0,2132.0 +2852905,2852906,19.0,1152356,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2852906,2852907,19.0,1152357,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2852907,2852908,24.0,1152358,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22767.0,2132.0 +2852908,2852909,19.0,1152359,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852909,2852910,19.0,1152360,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2852910,2852911,19.0,1152361,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852911,2852912,19.0,1152362,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2852912,2852913,19.0,1152363,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2852913,2852914,19.0,1152364,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2852914,2852915,19.0,1152365,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2852915,2852916,24.0,1152366,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22773.0,2136.0 +2852916,2852917,19.0,1152367,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852917,2852918,19.0,1152368,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852918,2852919,24.0,1152369,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22747.0,2123.0 +2852919,2852920,19.0,1152370,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852920,2852921,19.0,1152371,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2852921,2852922,24.0,1152372,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22768.0,2132.0 +2852922,2852923,19.0,1152373,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2852923,2852924,19.0,1152374,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852924,2852925,24.0,1152375,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22767.0,2132.0 +2852925,2852926,19.0,1152376,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852926,2852927,19.0,1152377,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22769.0,2133.0 +2852927,2852928,24.0,1152378,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22745.0,2121.0 +2852928,2852929,19.0,1152379,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22769.0,2133.0 +2852929,2852930,24.0,1152380,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22771.0,2135.0 +2852930,2852931,19.0,1152381,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852931,2852932,19.0,1152382,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2852932,2852933,19.0,1152383,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2852933,2852934,19.0,1152384,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2852934,2852935,19.0,1152385,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2852935,2852936,24.0,1152386,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22747.0,2123.0 +2852936,2852937,24.0,1152387,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22770.0,2134.0 +2852937,2852938,24.0,1152388,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22767.0,2132.0 +2852938,2852939,19.0,1152389,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852939,2852940,19.0,1152390,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22748.0,2124.0 +2852940,2852941,24.0,1152391,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22768.0,2132.0 +2852941,2852942,19.0,1152392,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852942,2852943,24.0,1152393,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22767.0,2132.0 +2852943,2852944,24.0,1152394,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22769.0,2133.0 +2852944,2852945,19.0,1152395,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2852945,2852946,19.0,1152396,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2852946,2852947,19.0,1152397,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22748.0,2124.0 +2852947,2852948,19.0,1152398,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2852948,2852949,19.0,1152399,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2852949,2852950,19.0,1152400,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2852950,2852951,24.0,1152401,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22748.0,2124.0 +2852951,2852952,19.0,1152402,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2852952,2852953,19.0,1152403,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852953,2852954,19.0,1152404,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852954,2852955,19.0,1152405,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2852955,2852956,19.0,1152406,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2852956,2852957,24.0,1152407,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2852957,2852958,23.0,1152408,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22768.0,2132.0 +2852958,2852959,23.0,1152409,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852959,2852960,23.0,1152410,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22771.0,2135.0 +2852960,2852961,23.0,1152411,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852961,2852962,23.0,1152412,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22768.0,2132.0 +2852962,2852963,23.0,1152413,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22770.0,2134.0 +2852963,2852964,23.0,1152414,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852964,2852965,23.0,1152415,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852965,2852966,23.0,1152416,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22770.0,2134.0 +2852966,2852967,23.0,1152417,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22748.0,2124.0 +2852967,2852968,23.0,1152418,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22770.0,2134.0 +2852968,2852969,23.0,1152419,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852969,2852970,23.0,1152420,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22771.0,2135.0 +2852970,2852971,23.0,1152421,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852971,2852972,23.0,1152422,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852972,2852973,23.0,1152423,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22768.0,2132.0 +2852973,2852974,23.0,1152424,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852974,2852975,23.0,1152425,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22768.0,2132.0 +2852975,2852976,23.0,1152426,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852976,2852977,23.0,1152427,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22768.0,2132.0 +2852977,2852978,23.0,1152428,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852978,2852979,23.0,1152429,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22771.0,2135.0 +2852979,2852980,23.0,1152430,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22770.0,2134.0 +2852980,2852981,23.0,1152431,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852981,2852982,23.0,1152432,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852982,2852983,23.0,1152433,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22771.0,2135.0 +2852983,2852984,23.0,1152434,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852984,2852985,23.0,1152435,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22768.0,2132.0 +2852985,2852986,23.0,1152436,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852986,2852987,23.0,1152437,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22770.0,2134.0 +2852987,2852988,23.0,1152438,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22768.0,2132.0 +2852988,2852989,23.0,1152439,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852989,2852990,23.0,1152440,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22747.0,2123.0 +2852990,2852991,23.0,1152441,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852991,2852992,23.0,1152442,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22771.0,2135.0 +2852992,2852993,23.0,1152443,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22747.0,2123.0 +2852993,2852994,23.0,1152444,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852994,2852995,23.0,1152445,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852995,2852996,23.0,1152446,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22769.0,2133.0 +2852996,2852997,23.0,1152447,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852997,2852998,23.0,1152448,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2852998,2852999,23.0,1152449,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22770.0,2134.0 +2852999,2853000,23.0,1152450,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22771.0,2135.0 +2853000,2853001,23.0,1152451,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2853001,2853002,23.0,1152452,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22768.0,2132.0 +2853002,2853003,23.0,1152453,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22745.0,2121.0 +2853003,2853004,23.0,1152454,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2853004,2853005,23.0,1152455,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22771.0,2135.0 +2853005,2853006,23.0,1152456,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22772.0,2136.0 +2853006,2853007,23.0,1152457,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22771.0,2135.0 +2853007,2853008,23.0,1152458,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22768.0,2132.0 +2853008,2853009,23.0,1152459,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22768.0,2132.0 +2853009,2853010,23.0,1152460,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22771.0,2135.0 +2853010,2853011,23.0,1152461,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22770.0,2134.0 +2853011,2853012,23.0,1152462,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22768.0,2132.0 +2853012,2853013,23.0,1152463,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22747.0,2123.0 +2853013,2853014,23.0,1152464,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22767.0,2132.0 +2853014,2853015,23.0,1152465,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22768.0,2132.0 +2853015,2853016,23.0,1152466,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22767.0,2132.0 +2853016,2853017,23.0,1152467,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22768.0,2132.0 +2853017,2853018,23.0,1152468,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22770.0,2134.0 +2853018,2853019,22.0,1152469,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853019,2853020,22.0,1152470,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22748.0,2124.0 +2853020,2853021,22.0,1152471,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853021,2853022,22.0,1152472,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853022,2853023,22.0,1152473,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853023,2853024,22.0,1152474,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853024,2853025,22.0,1152475,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22773.0,2136.0 +2853025,2853026,22.0,1152476,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853026,2853027,22.0,1152477,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853027,2853028,22.0,1152478,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2853028,2853029,22.0,1152479,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853029,2853030,22.0,1152480,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853030,2853031,22.0,1152481,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853031,2853032,22.0,1152482,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853032,2853033,22.0,1152483,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853033,2853034,22.0,1152484,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853034,2853035,22.0,1152485,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853035,2853036,22.0,1152486,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2853036,2853037,22.0,1152487,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853037,2853038,22.0,1152488,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853038,2853039,22.0,1152489,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853039,2853040,22.0,1152490,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853040,2853041,22.0,1152491,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853041,2853042,22.0,1152492,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853042,2853043,22.0,1152493,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2853043,2853044,22.0,1152494,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853044,2853045,22.0,1152495,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853045,2853046,22.0,1152496,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853046,2853047,22.0,1152497,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853047,2853048,23.0,1152498,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22767.0,2132.0 +2853048,2853049,23.0,1152499,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22768.0,2132.0 +2853049,2853050,23.0,1152500,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22767.0,2132.0 +2853050,2853051,23.0,1152501,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22771.0,2135.0 +2853051,2853052,23.0,1152502,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22768.0,2132.0 +2853052,2853053,23.0,1152503,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22767.0,2132.0 +2853053,2853054,23.0,1152504,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22771.0,2135.0 +2853054,2853055,23.0,1152505,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22768.0,2132.0 +2853055,2853056,23.0,1152506,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22768.0,2132.0 +2853056,2853057,23.0,1152507,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22770.0,2134.0 +2853057,2853058,23.0,1152508,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22767.0,2132.0 +2853058,2853059,23.0,1152509,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22771.0,2135.0 +2853059,2853060,23.0,1152510,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22768.0,2132.0 +2853060,2853061,23.0,1152511,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22770.0,2134.0 +2853061,2853062,23.0,1152512,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22767.0,2132.0 +2853062,2853063,23.0,1152513,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22768.0,2132.0 +2853063,2853064,23.0,1152514,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22767.0,2132.0 +2853064,2853065,23.0,1152515,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22767.0,2132.0 +2853065,2853066,23.0,1152516,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22770.0,2134.0 +2853066,2853067,23.0,1152517,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22767.0,2132.0 +2853067,2853068,23.0,1152518,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22771.0,2135.0 +2853068,2853069,23.0,1152519,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22770.0,2134.0 +2853069,2853070,23.0,1152520,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22767.0,2132.0 +2853070,2853071,23.0,1152521,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22768.0,2132.0 +2853071,2853072,23.0,1152522,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22745.0,2121.0 +2853072,2853073,23.0,1152523,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22767.0,2132.0 +2853073,2853074,23.0,1152524,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22770.0,2134.0 +2853074,2853075,23.0,1152525,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22748.0,2124.0 +2853075,2853076,26.0,1152525,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22748.0,2124.0 +2853076,2853077,23.0,1152526,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22767.0,2132.0 +2853077,2853078,26.0,1152526,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22767.0,2132.0 +2853078,2853079,23.0,1152527,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22770.0,2134.0 +2853079,2853080,26.0,1152527,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22770.0,2134.0 +2853080,2853081,23.0,1152528,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22747.0,2123.0 +2853081,2853082,26.0,1152528,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22747.0,2123.0 +2853082,2853083,23.0,1152529,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22771.0,2135.0 +2853083,2853084,26.0,1152529,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22771.0,2135.0 +2853084,2853085,23.0,1152530,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22767.0,2132.0 +2853085,2853086,26.0,1152530,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22767.0,2132.0 +2853086,2853087,23.0,1152531,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22747.0,2123.0 +2853087,2853088,26.0,1152531,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22747.0,2123.0 +2853088,2853089,23.0,1152532,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22771.0,2135.0 +2853089,2853090,26.0,1152532,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22771.0,2135.0 +2853090,2853091,23.0,1152533,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22767.0,2132.0 +2853091,2853092,26.0,1152533,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22767.0,2132.0 +2853092,2853093,23.0,1152534,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22767.0,2132.0 +2853093,2853094,26.0,1152534,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22767.0,2132.0 +2853094,2853095,23.0,1152535,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22768.0,2132.0 +2853095,2853096,26.0,1152535,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22768.0,2132.0 +2853096,2853097,23.0,1152536,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22770.0,2134.0 +2853097,2853098,26.0,1152536,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22770.0,2134.0 +2853098,2853099,23.0,1152537,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22767.0,2132.0 +2853099,2853100,26.0,1152537,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22767.0,2132.0 +2853100,2853101,23.0,1152538,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22767.0,2132.0 +2853101,2853102,26.0,1152538,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22767.0,2132.0 +2853102,2853103,23.0,1152539,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22770.0,2134.0 +2853103,2853104,26.0,1152539,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22770.0,2134.0 +2853104,2853105,24.0,1152540,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853105,2853106,24.0,1152541,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22773.0,2136.0 +2853106,2853107,24.0,1152542,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22770.0,2134.0 +2853107,2853108,24.0,1152543,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22767.0,2132.0 +2853108,2853109,24.0,1152544,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22767.0,2132.0 +2853109,2853110,24.0,1152545,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853110,2853111,24.0,1152546,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22767.0,2132.0 +2853111,2853112,24.0,1152547,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22767.0,2132.0 +2853112,2853113,24.0,1152548,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853113,2853114,24.0,1152549,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853114,2853115,24.0,1152550,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22770.0,2134.0 +2853115,2853116,24.0,1152551,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22771.0,2135.0 +2853116,2853117,24.0,1152552,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2853117,2853118,24.0,1152553,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853118,2853119,24.0,1152554,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853119,2853120,24.0,1152555,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22748.0,2124.0 +2853120,2853121,24.0,1152556,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2853121,2853122,24.0,1152557,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22771.0,2135.0 +2853122,2853123,24.0,1152558,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853123,2853124,24.0,1152559,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853124,2853125,24.0,1152560,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853125,2853126,24.0,1152561,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22767.0,2132.0 +2853126,2853127,24.0,1152562,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853127,2853128,24.0,1152563,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853128,2853129,24.0,1152564,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22767.0,2132.0 +2853129,2853130,24.0,1152565,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2853130,2853131,24.0,1152566,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2853131,2853132,24.0,1152567,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22770.0,2134.0 +2853132,2853133,24.0,1152568,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22770.0,2134.0 +2853133,2853134,24.0,1152569,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22770.0,2134.0 +2853134,2853135,24.0,1152570,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2853135,2853136,24.0,1152571,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22771.0,2135.0 +2853136,2853137,24.0,1152572,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853137,2853138,24.0,1152573,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853138,2853139,24.0,1152574,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22767.0,2132.0 +2853139,2853140,24.0,1152575,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22772.0,2136.0 +2853140,2853141,24.0,1152576,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22768.0,2132.0 +2853141,2853142,24.0,1152577,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22771.0,2135.0 +2853142,2853143,24.0,1152578,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22767.0,2132.0 +2853143,2853144,24.0,1152579,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22767.0,2132.0 +2853144,2853145,24.0,1152580,1,2,0,1,1.0,36.0,1.0,16.0,4.0,622M,15.0,22767.0,2132.0 +2853145,2853146,24.0,1152581,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22771.0,2135.0 +2853146,2853147,24.0,1152582,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22767.0,2132.0 +2853147,2853148,24.0,1152583,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22768.0,2132.0 +2853148,2853149,24.0,1152584,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22770.0,2134.0 +2853149,2853150,24.0,1152585,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22747.0,2123.0 +2853150,2853151,24.0,1152586,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22768.0,2132.0 +2853151,2853152,24.0,1152587,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22769.0,2133.0 +2853152,2853153,24.0,1152588,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22768.0,2132.0 +2853153,2853154,24.0,1152589,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22768.0,2132.0 +2853154,2853155,24.0,1152590,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22770.0,2134.0 +2853155,2853156,24.0,1152591,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22767.0,2132.0 +2853156,2853157,24.0,1152592,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22767.0,2132.0 +2853157,2853158,24.0,1152593,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22767.0,2132.0 +2853158,2853159,24.0,1152594,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22768.0,2132.0 +2853159,2853160,23.0,1152595,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2853160,2853161,23.0,1152596,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22769.0,2133.0 +2853161,2853162,23.0,1152597,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2853162,2853163,23.0,1152598,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2853163,2853164,23.0,1152599,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853164,2853165,21.0,1152600,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22770.0,2134.0 +2853165,2853166,21.0,1152601,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22767.0,2132.0 +2853166,2853167,21.0,1152602,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22768.0,2132.0 +2853167,2853168,21.0,1152603,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22745.0,2121.0 +2853168,2853169,21.0,1152604,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22768.0,2132.0 +2853169,2853170,23.0,1152605,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2853170,2853171,21.0,1152606,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22767.0,2132.0 +2853171,2853172,21.0,1152607,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22767.0,2132.0 +2853172,2853173,23.0,1152608,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22771.0,2135.0 +2853173,2853174,23.0,1152609,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853174,2853175,23.0,1152610,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22771.0,2135.0 +2853175,2853176,23.0,1152611,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22771.0,2135.0 +2853176,2853177,21.0,1152612,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22771.0,2135.0 +2853177,2853178,21.0,1152613,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22747.0,2123.0 +2853178,2853179,21.0,1152614,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22767.0,2132.0 +2853179,2853180,23.0,1152615,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853180,2853181,21.0,1152616,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22747.0,2123.0 +2853181,2853182,23.0,1152617,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853182,2853183,21.0,1152618,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22768.0,2132.0 +2853183,2853184,23.0,1152619,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22771.0,2135.0 +2853184,2853185,23.0,1152620,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853185,2853186,23.0,1152621,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2853186,2853187,23.0,1152622,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853187,2853188,23.0,1152623,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2853188,2853189,21.0,1152624,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22767.0,2132.0 +2853189,2853190,21.0,1152625,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22767.0,2132.0 +2853190,2853191,21.0,1152626,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22770.0,2134.0 +2853191,2853192,21.0,1152627,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22767.0,2132.0 +2853192,2853193,21.0,1152628,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,621M,14.0,22773.0,2136.0 +2853193,2853194,23.0,1152629,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22770.0,2134.0 +2853194,2853195,22.0,1152630,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22747.0,2123.0 +2853195,2853196,22.0,1152631,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22767.0,2132.0 +2853196,2853197,21.0,1152632,1,2,0,1,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22771.0,2135.0 +2853197,2853198,22.0,1152633,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22767.0,2132.0 +2853198,2853199,22.0,1152634,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22770.0,2134.0 +2853199,2853200,23.0,1152635,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853200,2853201,21.0,1152636,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2853201,2853202,23.0,1152637,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853202,2853203,23.0,1152638,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853203,2853204,21.0,1152639,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22770.0,2134.0 +2853204,2853205,21.0,1152640,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853205,2853206,22.0,1152641,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853206,2853207,23.0,1152642,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853207,2853208,23.0,1152643,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853208,2853209,21.0,1152644,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22770.0,2134.0 +2853209,2853210,21.0,1152645,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22770.0,2134.0 +2853210,2853211,23.0,1152646,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853211,2853212,23.0,1152647,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22770.0,2134.0 +2853212,2853213,23.0,1152648,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853213,2853214,22.0,1152649,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853214,2853215,24.0,1152650,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853215,2853216,22.0,1152651,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853216,2853217,22.0,1152652,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853217,2853218,23.0,1152653,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853218,2853219,23.0,1152654,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853219,2853220,21.0,1152655,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2853220,2853221,23.0,1152656,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853221,2853222,22.0,1152657,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853222,2853223,21.0,1152658,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2853223,2853224,23.0,1152659,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22770.0,2134.0 +2853224,2853225,23.0,1152660,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853225,2853226,22.0,1152661,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22773.0,2136.0 +2853226,2853227,21.0,1152662,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22748.0,2124.0 +2853227,2853228,23.0,1152663,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853228,2853229,21.0,1152664,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2853229,2853230,22.0,1152665,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853230,2853231,23.0,1152666,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2853231,2853232,21.0,1152667,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22767.0,2132.0 +2853232,2853233,21.0,1152668,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22747.0,2123.0 +2853233,2853234,22.0,1152669,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853234,2853235,21.0,1152670,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853235,2853236,23.0,1152671,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853236,2853237,21.0,1152672,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22770.0,2134.0 +2853237,2853238,21.0,1152673,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22772.0,2136.0 +2853238,2853239,21.0,1152674,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853239,2853240,24.0,1152675,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853240,2853241,22.0,1152676,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853241,2853242,21.0,1152677,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22767.0,2132.0 +2853242,2853243,23.0,1152678,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853243,2853244,21.0,1152679,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22769.0,2133.0 +2853244,2853245,23.0,1152680,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853245,2853246,23.0,1152681,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853246,2853247,23.0,1152682,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853247,2853248,23.0,1152683,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2853248,2853249,22.0,1152684,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853249,2853250,21.0,1152685,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853250,2853251,21.0,1152686,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853251,2853252,21.0,1152687,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22767.0,2132.0 +2853252,2853253,23.0,1152688,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2853253,2853254,21.0,1152689,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853254,2853255,23.0,1152690,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853255,2853256,21.0,1152691,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22771.0,2135.0 +2853256,2853257,23.0,1152692,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853257,2853258,22.0,1152693,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853258,2853259,23.0,1152694,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2853259,2853260,24.0,1152695,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +2853260,2853261,21.0,1152696,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853261,2853262,24.0,1152697,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853262,2853263,21.0,1152698,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22768.0,2132.0 +2853263,2853264,21.0,1152699,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853264,2853265,23.0,1152700,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853265,2853266,21.0,1152701,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22769.0,2133.0 +2853266,2853267,22.0,1152702,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2853267,2853268,23.0,1152703,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2853268,2853269,21.0,1152704,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2853269,2853270,23.0,1152705,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22773.0,2136.0 +2853270,2853271,21.0,1152706,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22768.0,2132.0 +2853271,2853272,21.0,1152707,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2853272,2853273,23.0,1152708,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2853273,2853274,23.0,1152709,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853274,2853275,21.0,1152710,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2853275,2853276,23.0,1152711,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853276,2853277,23.0,1152712,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853277,2853278,22.0,1152713,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853278,2853279,21.0,1152714,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22767.0,2132.0 +2853279,2853280,23.0,1152715,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853280,2853281,21.0,1152716,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853281,2853282,23.0,1152717,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22771.0,2135.0 +2853282,2853283,22.0,1152718,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853283,2853284,21.0,1152719,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22768.0,2132.0 +2853284,2853285,21.0,1152720,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2853285,2853286,23.0,1152721,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853286,2853287,23.0,1152722,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22770.0,2134.0 +2853287,2853288,24.0,1152723,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853288,2853289,23.0,1152724,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2853289,2853290,21.0,1152725,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22770.0,2134.0 +2853290,2853291,22.0,1152726,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853291,2853292,23.0,1152727,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853292,2853293,22.0,1152728,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853293,2853294,21.0,1152729,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22769.0,2133.0 +2853294,2853295,21.0,1152730,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22767.0,2132.0 +2853295,2853296,21.0,1152731,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22769.0,2133.0 +2853296,2853297,22.0,1152732,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853297,2853298,24.0,1152733,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853298,2853299,23.0,1152734,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853299,2853300,21.0,1152735,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853300,2853301,23.0,1152736,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22771.0,2135.0 +2853301,2853302,22.0,1152737,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853302,2853303,22.0,1152738,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853303,2853304,24.0,1152739,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853304,2853305,23.0,1152740,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853305,2853306,23.0,1152741,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853306,2853307,22.0,1152742,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853307,2853308,21.0,1152743,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853308,2853309,21.0,1152744,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2853309,2853310,23.0,1152745,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853310,2853311,21.0,1152746,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22768.0,2132.0 +2853311,2853312,21.0,1152747,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22767.0,2132.0 +2853312,2853313,22.0,1152748,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853313,2853314,21.0,1152749,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22771.0,2135.0 +2853314,2853315,21.0,1152750,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2853315,2853316,23.0,1152751,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853316,2853317,22.0,1152752,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853317,2853318,23.0,1152753,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2853318,2853319,23.0,1152754,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853319,2853320,22.0,1152755,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853320,2853321,23.0,1152756,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853321,2853322,22.0,1152757,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853322,2853323,22.0,1152758,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853323,2853324,23.0,1152759,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22769.0,2133.0 +2853324,2853325,22.0,1152760,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2853325,2853326,21.0,1152761,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22768.0,2132.0 +2853326,2853327,21.0,1152762,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +2853327,2853328,23.0,1152763,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2853328,2853329,21.0,1152764,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853329,2853330,21.0,1152765,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2853330,2853331,21.0,1152766,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22768.0,2132.0 +2853331,2853332,23.0,1152767,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853332,2853333,23.0,1152768,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22773.0,2136.0 +2853333,2853334,21.0,1152769,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853334,2853335,21.0,1152770,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2853335,2853336,23.0,1152771,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22769.0,2133.0 +2853336,2853337,22.0,1152772,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853337,2853338,23.0,1152773,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2853338,2853339,23.0,1152774,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853339,2853340,21.0,1152775,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22767.0,2132.0 +2853340,2853341,21.0,1152776,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2853341,2853342,21.0,1152777,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22770.0,2134.0 +2853342,2853343,21.0,1152778,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853343,2853344,24.0,1152779,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853344,2853345,21.0,1152780,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2853345,2853346,21.0,1152781,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22748.0,2124.0 +2853346,2853347,23.0,1152782,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853347,2853348,21.0,1152783,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22747.0,2123.0 +2853348,2853349,23.0,1152784,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853349,2853350,23.0,1152785,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853350,2853351,23.0,1152786,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853351,2853352,21.0,1152787,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853352,2853353,23.0,1152788,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22748.0,2124.0 +2853353,2853354,21.0,1152789,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2853354,2853355,23.0,1152790,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2853355,2853356,23.0,1152791,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2853356,2853357,24.0,1152792,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22773.0,2136.0 +2853357,2853358,21.0,1152793,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22767.0,2132.0 +2853358,2853359,23.0,1152794,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853359,2853360,22.0,1152795,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853360,2853361,23.0,1152796,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853361,2853362,23.0,1152797,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853362,2853363,21.0,1152798,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22769.0,2133.0 +2853363,2853364,23.0,1152799,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853364,2853365,22.0,1152800,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853365,2853366,23.0,1152801,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853366,2853367,21.0,1152802,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22747.0,2123.0 +2853367,2853368,24.0,1152803,1,1,0,1,1.0,8.0,6.0,16.0,4.0,454110,5.0,22767.0,2132.0 +2853368,2853369,24.0,1152804,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853369,2853370,24.0,1152805,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853370,2853371,24.0,1152806,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22770.0,2134.0 +2853371,2853372,24.0,1152807,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22747.0,2123.0 +2853372,2853373,24.0,1152808,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853373,2853374,24.0,1152809,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22747.0,2123.0 +2853374,2853375,24.0,1152810,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853375,2853376,24.0,1152811,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853376,2853377,24.0,1152812,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22771.0,2135.0 +2853377,2853378,24.0,1152813,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853378,2853379,24.0,1152814,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22770.0,2134.0 +2853379,2853380,24.0,1152815,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22769.0,2133.0 +2853380,2853381,24.0,1152816,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22770.0,2134.0 +2853381,2853382,24.0,1152817,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853382,2853383,24.0,1152818,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22747.0,2123.0 +2853383,2853384,24.0,1152819,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22773.0,2136.0 +2853384,2853385,24.0,1152820,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853385,2853386,24.0,1152821,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853386,2853387,24.0,1152822,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853387,2853388,24.0,1152823,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22771.0,2135.0 +2853388,2853389,24.0,1152824,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853389,2853390,24.0,1152825,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853390,2853391,24.0,1152826,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853391,2853392,24.0,1152827,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22771.0,2135.0 +2853392,2853393,24.0,1152828,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853393,2853394,24.0,1152829,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853394,2853395,24.0,1152830,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853395,2853396,24.0,1152831,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22770.0,2134.0 +2853396,2853397,24.0,1152832,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853397,2853398,24.0,1152833,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853398,2853399,24.0,1152834,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853399,2853400,24.0,1152835,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22771.0,2135.0 +2853400,2853401,24.0,1152836,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853401,2853402,24.0,1152837,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22747.0,2123.0 +2853402,2853403,24.0,1152838,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853403,2853404,24.0,1152839,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22771.0,2135.0 +2853404,2853405,24.0,1152840,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22747.0,2123.0 +2853405,2853406,24.0,1152841,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853406,2853407,24.0,1152842,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22747.0,2123.0 +2853407,2853408,24.0,1152843,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853408,2853409,24.0,1152844,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853409,2853410,24.0,1152845,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22771.0,2135.0 +2853410,2853411,24.0,1152846,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853411,2853412,24.0,1152847,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22769.0,2133.0 +2853412,2853413,24.0,1152848,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853413,2853414,24.0,1152849,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22747.0,2123.0 +2853414,2853415,24.0,1152850,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22747.0,2123.0 +2853415,2853416,24.0,1152851,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22768.0,2132.0 +2853416,2853417,24.0,1152852,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22767.0,2132.0 +2853417,2853418,24.0,1152853,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22747.0,2123.0 +2853418,2853419,24.0,1152854,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22769.0,2133.0 +2853419,2853420,24.0,1152855,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22747.0,2123.0 +2853420,2853421,22.0,1152856,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853421,2853422,22.0,1152857,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2853422,2853423,22.0,1152858,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853423,2853424,22.0,1152859,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853424,2853425,22.0,1152860,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22747.0,2123.0 +2853425,2853426,22.0,1152861,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853426,2853427,22.0,1152862,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853427,2853428,22.0,1152863,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22747.0,2123.0 +2853428,2853429,22.0,1152864,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853429,2853430,22.0,1152865,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853430,2853431,22.0,1152866,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853431,2853432,22.0,1152867,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853432,2853433,22.0,1152868,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853433,2853434,22.0,1152869,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853434,2853435,22.0,1152870,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853435,2853436,22.0,1152871,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853436,2853437,22.0,1152872,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2853437,2853438,22.0,1152873,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853438,2853439,22.0,1152874,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853439,2853440,22.0,1152875,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2853440,2853441,22.0,1152876,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2853441,2853442,22.0,1152877,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853442,2853443,22.0,1152878,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2853443,2853444,22.0,1152879,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853444,2853445,22.0,1152880,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853445,2853446,22.0,1152881,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853446,2853447,22.0,1152882,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2853447,2853448,22.0,1152883,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2853448,2853449,22.0,1152884,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853449,2853450,22.0,1152885,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853450,2853451,22.0,1152886,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22747.0,2123.0 +2853451,2853452,22.0,1152887,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853452,2853453,22.0,1152888,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22773.0,2136.0 +2853453,2853454,22.0,1152889,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2853454,2853455,22.0,1152890,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853455,2853456,22.0,1152891,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853456,2853457,22.0,1152892,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2853457,2853458,22.0,1152893,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853458,2853459,22.0,1152894,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853459,2853460,22.0,1152895,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853460,2853461,22.0,1152896,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2853461,2853462,22.0,1152897,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853462,2853463,22.0,1152898,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22747.0,2123.0 +2853463,2853464,22.0,1152899,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2853464,2853465,22.0,1152900,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853465,2853466,22.0,1152901,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853466,2853467,22.0,1152902,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853467,2853468,22.0,1152903,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853468,2853469,22.0,1152904,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853469,2853470,22.0,1152905,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853470,2853471,22.0,1152906,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853471,2853472,22.0,1152907,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2853472,2853473,22.0,1152908,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853473,2853474,22.0,1152909,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22745.0,2121.0 +2853474,2853475,22.0,1152910,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22771.0,2135.0 +2853475,2853476,22.0,1152911,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2853476,2853477,22.0,1152912,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853477,2853478,22.0,1152913,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22768.0,2132.0 +2853478,2853479,22.0,1152914,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853479,2853480,22.0,1152915,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22747.0,2123.0 +2853480,2853481,22.0,1152916,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22770.0,2134.0 +2853481,2853482,22.0,1152917,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853482,2853483,22.0,1152918,1,2,0,1,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22767.0,2132.0 +2853483,2853484,22.0,1152919,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2853484,2853485,22.0,1152920,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2853485,2853486,22.0,1152921,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2853486,2853487,22.0,1152922,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2853487,2853488,22.0,1152923,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853488,2853489,22.0,1152924,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2853489,2853490,22.0,1152925,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2853490,2853491,22.0,1152926,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22771.0,2135.0 +2853491,2853492,22.0,1152927,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22767.0,2132.0 +2853492,2853493,22.0,1152928,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22772.0,2136.0 +2853493,2853494,22.0,1152929,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22770.0,2134.0 +2853494,2853495,23.0,1152930,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22771.0,2135.0 +2853495,2853496,23.0,1152931,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22747.0,2123.0 +2853496,2853497,23.0,1152932,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22767.0,2132.0 +2853497,2853498,23.0,1152933,1,2,0,1,1.0,35.0,1.0,16.0,4.0,721M,16.0,22767.0,2132.0 +2853498,2853499,23.0,1152934,1,2,0,1,1.0,35.0,1.0,16.0,4.0,721M,16.0,22767.0,2132.0 +2853499,2853500,23.0,1152935,1,2,0,1,1.0,35.0,1.0,16.0,4.0,721M,16.0,22767.0,2132.0 +2853500,2853501,23.0,1152936,1,2,0,1,1.0,35.0,1.0,16.0,4.0,721M,16.0,22768.0,2132.0 +2853501,2853502,23.0,1152937,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853502,2853503,23.0,1152938,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853503,2853504,23.0,1152939,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +2853504,2853505,23.0,1152940,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853505,2853506,23.0,1152941,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853506,2853507,23.0,1152942,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853507,2853508,23.0,1152943,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853508,2853509,23.0,1152944,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853509,2853510,23.0,1152945,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853510,2853511,23.0,1152946,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853511,2853512,23.0,1152947,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853512,2853513,23.0,1152948,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853513,2853514,23.0,1152949,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853514,2853515,23.0,1152950,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853515,2853516,23.0,1152951,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2853516,2853517,23.0,1152952,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853517,2853518,23.0,1152953,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853518,2853519,24.0,1152954,1,2,0,1,1.0,50.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853519,2853520,24.0,1152955,1,2,0,1,1.0,50.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853520,2853521,24.0,1152956,1,2,0,1,1.0,50.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853521,2853522,23.0,1152957,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853522,2853523,24.0,1152958,1,2,0,1,1.0,50.0,5.0,-9.0,4.0,611M1,13.0,22768.0,2132.0 +2853523,2853524,24.0,1152959,1,2,0,1,1.0,50.0,5.0,-9.0,4.0,611M1,13.0,22770.0,2134.0 +2853524,2853525,23.0,1152960,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853525,2853526,23.0,1152961,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853526,2853527,23.0,1152962,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853527,2853528,24.0,1152963,1,2,0,1,1.0,50.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853528,2853529,24.0,1152964,1,2,0,1,1.0,50.0,5.0,-9.0,4.0,611M1,13.0,22771.0,2135.0 +2853529,2853530,23.0,1152965,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22771.0,2135.0 +2853530,2853531,23.0,1152966,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853531,2853532,23.0,1152967,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853532,2853533,24.0,1152968,1,2,0,1,1.0,50.0,5.0,-9.0,4.0,611M1,13.0,22767.0,2132.0 +2853533,2853534,23.0,1152969,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853534,2853535,23.0,1152970,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853535,2853536,23.0,1152971,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853536,2853537,23.0,1152972,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22767.0,2132.0 +2853537,2853538,23.0,1152973,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22770.0,2134.0 +2853538,2853539,23.0,1152974,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22768.0,2132.0 +2853539,2853540,21.0,1152975,1,1,0,1,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22768.0,2132.0 +2853540,2853541,20.0,1152976,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22770.0,2134.0 +2853541,2853542,20.0,1152977,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22768.0,2132.0 +2853542,2853543,20.0,1152978,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853543,2853544,20.0,1152979,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22771.0,2135.0 +2853544,2853545,20.0,1152980,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22768.0,2132.0 +2853545,2853546,20.0,1152981,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853546,2853547,20.0,1152982,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22747.0,2123.0 +2853547,2853548,20.0,1152983,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22747.0,2123.0 +2853548,2853549,20.0,1152984,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853549,2853550,20.0,1152985,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22770.0,2134.0 +2853550,2853551,20.0,1152986,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853551,2853552,20.0,1152987,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22747.0,2123.0 +2853552,2853553,20.0,1152988,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853553,2853554,20.0,1152989,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853554,2853555,20.0,1152990,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22770.0,2134.0 +2853555,2853556,20.0,1152991,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22768.0,2132.0 +2853556,2853557,20.0,1152992,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853557,2853558,20.0,1152993,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22771.0,2135.0 +2853558,2853559,20.0,1152994,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22769.0,2133.0 +2853559,2853560,20.0,1152995,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853560,2853561,20.0,1152996,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22768.0,2132.0 +2853561,2853562,20.0,1152997,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853562,2853563,20.0,1152998,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22771.0,2135.0 +2853563,2853564,20.0,1152999,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853564,2853565,20.0,1153000,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853565,2853566,20.0,1153001,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853566,2853567,20.0,1153002,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853567,2853568,20.0,1153003,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22771.0,2135.0 +2853568,2853569,20.0,1153004,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22770.0,2134.0 +2853569,2853570,20.0,1153005,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22768.0,2132.0 +2853570,2853571,20.0,1153006,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22773.0,2136.0 +2853571,2853572,20.0,1153007,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853572,2853573,20.0,1153008,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853573,2853574,20.0,1153009,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22771.0,2135.0 +2853574,2853575,20.0,1153010,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853575,2853576,20.0,1153011,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853576,2853577,20.0,1153012,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853577,2853578,20.0,1153013,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22771.0,2135.0 +2853578,2853579,20.0,1153014,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22771.0,2135.0 +2853579,2853580,20.0,1153015,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853580,2853581,20.0,1153016,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853581,2853582,20.0,1153017,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853582,2853583,20.0,1153018,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22767.0,2132.0 +2853583,2853584,20.0,1153019,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22770.0,2134.0 +2855312,2855313,65.0,1154012,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855313,2855314,65.0,1154012,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855314,2855315,24.0,1154012,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855315,2855316,65.0,1154013,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855316,2855317,65.0,1154013,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855317,2855318,24.0,1154013,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855318,2855319,65.0,1154014,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22808.0,2147.0 +2855319,2855320,65.0,1154014,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2855320,2855321,24.0,1154014,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22808.0,2147.0 +2855321,2855322,65.0,1154015,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855322,2855323,65.0,1154015,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855323,2855324,24.0,1154015,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855324,2855325,65.0,1154016,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855325,2855326,65.0,1154016,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855326,2855327,24.0,1154016,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855327,2855328,65.0,1154017,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22808.0,2147.0 +2855328,2855329,65.0,1154017,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2855329,2855330,24.0,1154017,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22808.0,2147.0 +2855330,2855331,65.0,1154018,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855331,2855332,65.0,1154018,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855332,2855333,24.0,1154018,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855333,2855334,65.0,1154019,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855334,2855335,65.0,1154019,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855335,2855336,24.0,1154019,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855339,2855340,65.0,1154021,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855340,2855341,65.0,1154021,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855341,2855342,24.0,1154021,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855342,2855343,65.0,1154022,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855343,2855344,65.0,1154022,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855344,2855345,24.0,1154022,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855345,2855346,65.0,1154023,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22808.0,2147.0 +2855346,2855347,65.0,1154023,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2855347,2855348,24.0,1154023,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22808.0,2147.0 +2855348,2855349,65.0,1154024,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855349,2855350,65.0,1154024,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855350,2855351,24.0,1154024,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855351,2855352,65.0,1154025,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855352,2855353,65.0,1154025,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855353,2855354,24.0,1154025,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855354,2855355,65.0,1154026,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855355,2855356,65.0,1154026,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855356,2855357,24.0,1154026,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855357,2855358,65.0,1154027,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22808.0,2147.0 +2855358,2855359,65.0,1154027,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2855359,2855360,24.0,1154027,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22808.0,2147.0 +2855360,2855361,65.0,1154028,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855361,2855362,65.0,1154028,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855362,2855363,24.0,1154028,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855363,2855364,65.0,1154029,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22808.0,2147.0 +2855364,2855365,65.0,1154029,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2855365,2855366,24.0,1154029,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22808.0,2147.0 +2855366,2855367,65.0,1154030,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855367,2855368,65.0,1154030,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855368,2855369,24.0,1154030,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855369,2855370,65.0,1154031,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855370,2855371,65.0,1154031,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855371,2855372,24.0,1154031,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855372,2855373,65.0,1154032,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855373,2855374,65.0,1154032,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855374,2855375,24.0,1154032,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2855378,2855379,65.0,1154034,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855379,2855380,65.0,1154034,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855380,2855381,24.0,1154034,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855387,2855388,65.0,1154037,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855388,2855389,65.0,1154037,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855389,2855390,24.0,1154037,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22814.0,2150.0 +2855396,2855397,45.0,1154040,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855397,2855398,28.0,1154040,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855398,2855399,23.0,1154040,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22815.0,2150.0 +2855399,2855400,4.0,1154040,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22815.0,2150.0 +2855400,2855401,4.0,1154040,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22815.0,2150.0 +2855401,2855402,2.0,1154040,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22815.0,2150.0 +2855408,2855409,45.0,1154042,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855409,2855410,28.0,1154042,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855410,2855411,23.0,1154042,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22808.0,2147.0 +2855411,2855412,4.0,1154042,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22808.0,2147.0 +2855412,2855413,4.0,1154042,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22808.0,2147.0 +2855413,2855414,2.0,1154042,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22808.0,2147.0 +2855414,2855415,45.0,1154043,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855415,2855416,28.0,1154043,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855416,2855417,23.0,1154043,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22808.0,2147.0 +2855417,2855418,4.0,1154043,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22808.0,2147.0 +2855418,2855419,4.0,1154043,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22808.0,2147.0 +2855419,2855420,2.0,1154043,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22808.0,2147.0 +2855420,2855421,45.0,1154044,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855421,2855422,28.0,1154044,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855422,2855423,23.0,1154044,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22808.0,2147.0 +2855423,2855424,4.0,1154044,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22808.0,2147.0 +2855424,2855425,4.0,1154044,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22808.0,2147.0 +2855425,2855426,2.0,1154044,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22808.0,2147.0 +2855426,2855427,45.0,1154045,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855427,2855428,28.0,1154045,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855428,2855429,23.0,1154045,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22815.0,2150.0 +2855429,2855430,4.0,1154045,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22815.0,2150.0 +2855430,2855431,4.0,1154045,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22815.0,2150.0 +2855431,2855432,2.0,1154045,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22815.0,2150.0 +2855432,2855433,48.0,1154046,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22814.0,2150.0 +2855433,2855434,19.0,1154046,2,2,2,2,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +2855434,2855435,48.0,1154047,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22815.0,2150.0 +2855435,2855436,19.0,1154047,2,2,2,2,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2855436,2855437,48.0,1154048,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22808.0,2147.0 +2855437,2855438,19.0,1154048,2,2,2,2,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +2855438,2855439,48.0,1154049,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22814.0,2150.0 +2855439,2855440,19.0,1154049,2,2,2,2,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +2855440,2855441,48.0,1154050,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22808.0,2147.0 +2855441,2855442,19.0,1154050,2,2,2,2,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +2855442,2855443,48.0,1154051,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22815.0,2150.0 +2855443,2855444,19.0,1154051,2,2,2,2,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2855446,2855447,48.0,1154053,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22815.0,2150.0 +2855447,2855448,19.0,1154053,2,2,2,2,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2855450,2855451,48.0,1154055,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22808.0,2147.0 +2855451,2855452,19.0,1154055,2,2,2,2,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +2855454,2855455,48.0,1154057,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22814.0,2150.0 +2855455,2855456,19.0,1154057,2,2,2,2,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +2855456,2855457,48.0,1154058,1,2,0,2,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22808.0,2147.0 +2855457,2855458,19.0,1154058,2,2,2,2,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +2855463,2855464,63.0,1154060,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,6211,14.0,22814.0,2150.0 +2855464,2855465,60.0,1154060,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855465,2855466,23.0,1154060,3,2,2,1,1.0,6.0,3.0,16.0,4.0,7111,16.0,22814.0,2150.0 +2855466,2855467,21.0,1154060,4,2,2,1,1.0,16.0,5.0,-9.0,4.0,6244,14.0,22814.0,2150.0 +2855471,2855472,49.0,1154062,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22815.0,2150.0 +2855472,2855473,52.0,1154062,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2855473,2855474,18.0,1154062,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22815.0,2150.0 +2855474,2855475,18.0,1154062,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22815.0,2150.0 +2855475,2855476,54.0,1154063,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855476,2855477,54.0,1154063,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855477,2855478,22.0,1154063,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22814.0,2150.0 +2855478,2855479,23.0,1154063,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855479,2855480,54.0,1154064,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2855480,2855481,54.0,1154064,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2855481,2855482,22.0,1154064,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22808.0,2147.0 +2855482,2855483,23.0,1154064,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2855483,2855484,54.0,1154065,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855484,2855485,54.0,1154065,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855485,2855486,22.0,1154065,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22815.0,2150.0 +2855486,2855487,23.0,1154065,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855491,2855492,54.0,1154067,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855492,2855493,54.0,1154067,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855493,2855494,22.0,1154067,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22815.0,2150.0 +2855494,2855495,23.0,1154067,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855495,2855496,54.0,1154068,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855496,2855497,54.0,1154068,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855497,2855498,22.0,1154068,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22814.0,2150.0 +2855498,2855499,23.0,1154068,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855499,2855500,54.0,1154069,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855500,2855501,54.0,1154069,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855501,2855502,22.0,1154069,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22815.0,2150.0 +2855502,2855503,23.0,1154069,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855507,2855508,54.0,1154071,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855508,2855509,54.0,1154071,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855509,2855510,22.0,1154071,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22815.0,2150.0 +2855510,2855511,23.0,1154071,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855511,2855512,54.0,1154072,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855512,2855513,54.0,1154072,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855513,2855514,22.0,1154072,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22815.0,2150.0 +2855514,2855515,23.0,1154072,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855519,2855520,54.0,1154074,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2855520,2855521,54.0,1154074,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2855521,2855522,22.0,1154074,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22808.0,2147.0 +2855522,2855523,23.0,1154074,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2855523,2855524,54.0,1154075,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855524,2855525,54.0,1154075,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855525,2855526,22.0,1154075,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22815.0,2150.0 +2855526,2855527,23.0,1154075,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2855531,2855532,54.0,1154077,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855532,2855533,54.0,1154077,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855533,2855534,22.0,1154077,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22814.0,2150.0 +2855534,2855535,23.0,1154077,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855535,2855536,54.0,1154078,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855536,2855537,54.0,1154078,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855537,2855538,22.0,1154078,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22814.0,2150.0 +2855538,2855539,23.0,1154078,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2855539,2855540,56.0,1154079,1,2,0,1,1.0,60.0,1.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2855540,2855541,56.0,1154079,2,1,1,1,1.0,70.0,1.0,-9.0,4.0,3261,3.0,22814.0,2150.0 +2855541,2855542,23.0,1154079,3,2,2,1,1.0,40.0,1.0,-9.0,4.0,6214,14.0,22814.0,2150.0 +2855542,2855543,23.0,1154079,4,1,15,1,1.0,20.0,4.0,16.0,4.0,713Z,16.0,22814.0,2150.0 +2855543,2855544,60.0,1154080,1,1,0,1,6.0,8.0,6.0,-9.0,2.0,23,2.0,22815.0,2150.0 +2855544,2855545,62.0,1154080,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855545,2855546,21.0,1154080,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,3272,3.0,22815.0,2150.0 +2855546,2855547,60.0,1154081,1,1,0,1,6.0,8.0,6.0,-9.0,2.0,23,2.0,22814.0,2150.0 +2855547,2855548,62.0,1154081,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855548,2855549,21.0,1154081,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,3272,3.0,22814.0,2150.0 +2855552,2855553,60.0,1154083,1,1,0,1,6.0,8.0,6.0,-9.0,2.0,23,2.0,22815.0,2150.0 +2855553,2855554,62.0,1154083,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855554,2855555,21.0,1154083,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,3272,3.0,22815.0,2150.0 +2855555,2855556,60.0,1154084,1,1,0,1,6.0,8.0,6.0,-9.0,2.0,23,2.0,22808.0,2147.0 +2855556,2855557,62.0,1154084,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855557,2855558,21.0,1154084,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,3272,3.0,22808.0,2147.0 +2855561,2855562,47.0,1154086,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855562,2855563,52.0,1154086,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855563,2855564,23.0,1154086,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855570,2855571,47.0,1154089,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855571,2855572,52.0,1154089,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855572,2855573,23.0,1154089,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855573,2855574,47.0,1154090,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855574,2855575,52.0,1154090,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855575,2855576,23.0,1154090,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855579,2855580,47.0,1154092,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855580,2855581,52.0,1154092,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855581,2855582,23.0,1154092,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855582,2855583,47.0,1154093,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855583,2855584,52.0,1154093,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855584,2855585,23.0,1154093,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855588,2855589,47.0,1154095,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855589,2855590,52.0,1154095,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855590,2855591,23.0,1154095,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855591,2855592,47.0,1154096,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855592,2855593,52.0,1154096,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855593,2855594,23.0,1154096,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855594,2855595,47.0,1154097,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855595,2855596,52.0,1154097,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855596,2855597,23.0,1154097,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855597,2855598,47.0,1154098,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855598,2855599,52.0,1154098,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855599,2855600,23.0,1154098,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855600,2855601,47.0,1154099,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855601,2855602,52.0,1154099,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855602,2855603,23.0,1154099,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855603,2855604,47.0,1154100,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855604,2855605,52.0,1154100,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855605,2855606,23.0,1154100,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855606,2855607,47.0,1154101,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855607,2855608,52.0,1154101,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855608,2855609,23.0,1154101,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855609,2855610,47.0,1154102,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855610,2855611,52.0,1154102,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855611,2855612,23.0,1154102,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855612,2855613,47.0,1154103,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855613,2855614,52.0,1154103,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855614,2855615,23.0,1154103,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855618,2855619,47.0,1154105,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855619,2855620,52.0,1154105,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855620,2855621,23.0,1154105,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855621,2855622,47.0,1154106,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855622,2855623,52.0,1154106,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855623,2855624,23.0,1154106,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855624,2855625,47.0,1154107,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855625,2855626,52.0,1154107,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855626,2855627,23.0,1154107,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855627,2855628,47.0,1154108,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855628,2855629,52.0,1154108,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855629,2855630,23.0,1154108,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855630,2855631,47.0,1154109,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855631,2855632,52.0,1154109,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855632,2855633,23.0,1154109,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855636,2855637,47.0,1154111,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855637,2855638,52.0,1154111,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855638,2855639,23.0,1154111,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855639,2855640,47.0,1154112,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855640,2855641,52.0,1154112,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855641,2855642,23.0,1154112,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855642,2855643,47.0,1154113,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855643,2855644,52.0,1154113,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855644,2855645,23.0,1154113,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855645,2855646,47.0,1154114,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855646,2855647,52.0,1154114,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855647,2855648,23.0,1154114,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855648,2855649,47.0,1154115,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855649,2855650,52.0,1154115,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855650,2855651,23.0,1154115,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855651,2855652,47.0,1154116,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855652,2855653,52.0,1154116,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855653,2855654,23.0,1154116,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855654,2855655,47.0,1154117,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855655,2855656,52.0,1154117,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855656,2855657,23.0,1154117,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855660,2855661,47.0,1154119,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855661,2855662,52.0,1154119,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855662,2855663,23.0,1154119,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855663,2855664,47.0,1154120,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855664,2855665,52.0,1154120,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855665,2855666,23.0,1154120,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855669,2855670,47.0,1154122,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855670,2855671,52.0,1154122,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855671,2855672,23.0,1154122,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855672,2855673,47.0,1154123,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855673,2855674,52.0,1154123,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855674,2855675,23.0,1154123,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855675,2855676,47.0,1154124,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855676,2855677,52.0,1154124,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855677,2855678,23.0,1154124,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855678,2855679,47.0,1154125,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855679,2855680,52.0,1154125,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855680,2855681,23.0,1154125,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855681,2855682,47.0,1154126,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855682,2855683,52.0,1154126,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855683,2855684,23.0,1154126,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855687,2855688,47.0,1154128,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855688,2855689,52.0,1154128,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855689,2855690,23.0,1154128,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855690,2855691,47.0,1154129,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855691,2855692,52.0,1154129,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855692,2855693,23.0,1154129,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855693,2855694,47.0,1154130,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855694,2855695,52.0,1154130,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855695,2855696,23.0,1154130,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22808.0,2147.0 +2855696,2855697,47.0,1154131,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855697,2855698,52.0,1154131,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855698,2855699,23.0,1154131,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855699,2855700,47.0,1154132,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855700,2855701,52.0,1154132,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855701,2855702,23.0,1154132,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2855702,2855703,47.0,1154133,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855703,2855704,52.0,1154133,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855704,2855705,23.0,1154133,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855705,2855706,47.0,1154134,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855706,2855707,52.0,1154134,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855707,2855708,23.0,1154134,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22815.0,2150.0 +2855711,2855712,26.0,1154136,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2855712,2855713,28.0,1154136,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2855713,2855714,28.0,1154136,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22815.0,2150.0 +2855714,2855715,24.0,1154136,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2855715,2855716,26.0,1154137,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855716,2855717,28.0,1154137,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855717,2855718,28.0,1154137,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22814.0,2150.0 +2855718,2855719,24.0,1154137,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855719,2855720,26.0,1154138,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2855720,2855721,28.0,1154138,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2855721,2855722,28.0,1154138,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22808.0,2147.0 +2855722,2855723,24.0,1154138,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2855723,2855724,26.0,1154139,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855724,2855725,28.0,1154139,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855725,2855726,28.0,1154139,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22814.0,2150.0 +2855726,2855727,24.0,1154139,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855727,2855728,27.0,1154140,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2855728,2855729,23.0,1154140,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22808.0,2147.0 +2855729,2855730,27.0,1154141,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855730,2855731,23.0,1154141,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22814.0,2150.0 +2855731,2855732,27.0,1154142,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855732,2855733,23.0,1154142,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22814.0,2150.0 +2855733,2855734,27.0,1154143,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855734,2855735,23.0,1154143,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22814.0,2150.0 +2855735,2855736,27.0,1154144,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2855736,2855737,23.0,1154144,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22808.0,2147.0 +2855737,2855738,27.0,1154145,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2855738,2855739,23.0,1154145,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22808.0,2147.0 +2855739,2855740,27.0,1154146,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2855740,2855741,23.0,1154146,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22815.0,2150.0 +2855741,2855742,27.0,1154147,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855742,2855743,23.0,1154147,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22814.0,2150.0 +2855743,2855744,27.0,1154148,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855744,2855745,23.0,1154148,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22814.0,2150.0 +2855745,2855746,27.0,1154149,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855746,2855747,23.0,1154149,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22814.0,2150.0 +2855747,2855748,27.0,1154150,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855748,2855749,23.0,1154150,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22814.0,2150.0 +2855749,2855750,27.0,1154151,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855750,2855751,23.0,1154151,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22814.0,2150.0 +2855751,2855752,27.0,1154152,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2855752,2855753,23.0,1154152,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22808.0,2147.0 +2855753,2855754,27.0,1154153,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2855754,2855755,23.0,1154153,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22808.0,2147.0 +2855755,2855756,27.0,1154154,1,1,0,1,6.0,5.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2855756,2855757,23.0,1154154,2,1,12,1,6.0,20.0,6.0,16.0,4.0,4452,5.0,22814.0,2150.0 +2855762,2855763,25.0,1154157,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855763,2855764,22.0,1154157,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855764,2855765,21.0,1154157,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855765,2855766,25.0,1154158,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855766,2855767,22.0,1154158,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855767,2855768,21.0,1154158,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855768,2855769,25.0,1154159,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855769,2855770,22.0,1154159,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855770,2855771,21.0,1154159,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855774,2855775,25.0,1154161,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855775,2855776,22.0,1154161,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855776,2855777,21.0,1154161,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855777,2855778,25.0,1154162,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855778,2855779,22.0,1154162,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855779,2855780,21.0,1154162,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855780,2855781,25.0,1154163,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855781,2855782,22.0,1154163,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855782,2855783,21.0,1154163,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855786,2855787,25.0,1154165,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855787,2855788,22.0,1154165,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855788,2855789,21.0,1154165,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855789,2855790,25.0,1154166,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855790,2855791,22.0,1154166,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855791,2855792,21.0,1154166,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855792,2855793,25.0,1154167,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855793,2855794,22.0,1154167,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855794,2855795,21.0,1154167,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855795,2855796,25.0,1154168,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855796,2855797,22.0,1154168,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855797,2855798,21.0,1154168,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855798,2855799,25.0,1154169,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855799,2855800,22.0,1154169,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855800,2855801,21.0,1154169,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855801,2855802,25.0,1154170,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855802,2855803,22.0,1154170,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855803,2855804,21.0,1154170,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855804,2855805,25.0,1154171,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855805,2855806,22.0,1154171,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855806,2855807,21.0,1154171,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855807,2855808,25.0,1154172,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855808,2855809,22.0,1154172,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855809,2855810,21.0,1154172,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855813,2855814,25.0,1154174,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855814,2855815,22.0,1154174,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855815,2855816,21.0,1154174,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855816,2855817,25.0,1154175,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855817,2855818,22.0,1154175,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855818,2855819,21.0,1154175,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855819,2855820,25.0,1154176,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855820,2855821,22.0,1154176,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855821,2855822,21.0,1154176,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855825,2855826,25.0,1154178,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855826,2855827,22.0,1154178,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855827,2855828,21.0,1154178,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855828,2855829,25.0,1154179,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855829,2855830,22.0,1154179,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855830,2855831,21.0,1154179,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855831,2855832,25.0,1154180,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855832,2855833,22.0,1154180,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855833,2855834,21.0,1154180,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855834,2855835,25.0,1154181,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855835,2855836,22.0,1154181,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855836,2855837,21.0,1154181,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855837,2855838,25.0,1154182,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855838,2855839,22.0,1154182,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855839,2855840,21.0,1154182,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855840,2855841,25.0,1154183,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855841,2855842,22.0,1154183,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855842,2855843,21.0,1154183,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855843,2855844,25.0,1154184,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855844,2855845,22.0,1154184,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855845,2855846,21.0,1154184,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855849,2855850,25.0,1154186,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855850,2855851,22.0,1154186,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855851,2855852,21.0,1154186,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855852,2855853,25.0,1154187,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855853,2855854,22.0,1154187,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855854,2855855,21.0,1154187,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855855,2855856,25.0,1154188,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855856,2855857,22.0,1154188,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855857,2855858,21.0,1154188,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855858,2855859,25.0,1154189,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855859,2855860,22.0,1154189,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855860,2855861,21.0,1154189,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855864,2855865,25.0,1154191,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855865,2855866,22.0,1154191,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855866,2855867,21.0,1154191,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855867,2855868,25.0,1154192,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855868,2855869,22.0,1154192,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855869,2855870,21.0,1154192,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855870,2855871,25.0,1154193,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855871,2855872,22.0,1154193,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855872,2855873,21.0,1154193,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855873,2855874,25.0,1154194,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855874,2855875,22.0,1154194,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855875,2855876,21.0,1154194,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855876,2855877,25.0,1154195,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855877,2855878,22.0,1154195,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855878,2855879,21.0,1154195,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855879,2855880,25.0,1154196,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855880,2855881,22.0,1154196,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855881,2855882,21.0,1154196,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855888,2855889,25.0,1154199,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855889,2855890,22.0,1154199,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855890,2855891,21.0,1154199,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855891,2855892,25.0,1154200,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855892,2855893,22.0,1154200,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855893,2855894,21.0,1154200,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855894,2855895,25.0,1154201,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855895,2855896,22.0,1154201,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855896,2855897,21.0,1154201,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855900,2855901,25.0,1154203,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855901,2855902,22.0,1154203,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855902,2855903,21.0,1154203,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855903,2855904,25.0,1154204,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855904,2855905,22.0,1154204,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855905,2855906,21.0,1154204,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855906,2855907,25.0,1154205,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855907,2855908,22.0,1154205,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855908,2855909,21.0,1154205,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855909,2855910,25.0,1154206,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855910,2855911,22.0,1154206,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855911,2855912,21.0,1154206,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855912,2855913,25.0,1154207,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855913,2855914,22.0,1154207,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855914,2855915,21.0,1154207,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855915,2855916,25.0,1154208,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855916,2855917,22.0,1154208,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855917,2855918,21.0,1154208,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855918,2855919,25.0,1154209,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855919,2855920,22.0,1154209,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855920,2855921,21.0,1154209,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855921,2855922,25.0,1154210,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855922,2855923,22.0,1154210,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855923,2855924,21.0,1154210,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855927,2855928,25.0,1154212,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855928,2855929,22.0,1154212,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855929,2855930,21.0,1154212,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855933,2855934,25.0,1154214,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855934,2855935,22.0,1154214,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855935,2855936,21.0,1154214,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855939,2855940,25.0,1154216,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855940,2855941,22.0,1154216,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855941,2855942,21.0,1154216,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855942,2855943,25.0,1154217,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855943,2855944,22.0,1154217,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855944,2855945,21.0,1154217,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855945,2855946,25.0,1154218,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855946,2855947,22.0,1154218,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855947,2855948,21.0,1154218,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2855948,2855949,25.0,1154219,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855949,2855950,22.0,1154219,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855950,2855951,21.0,1154219,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855951,2855952,25.0,1154220,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855952,2855953,22.0,1154220,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855953,2855954,21.0,1154220,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855954,2855955,25.0,1154221,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855955,2855956,22.0,1154221,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855956,2855957,21.0,1154221,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855957,2855958,25.0,1154222,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855958,2855959,22.0,1154222,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855959,2855960,21.0,1154222,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855960,2855961,25.0,1154223,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855961,2855962,22.0,1154223,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855962,2855963,21.0,1154223,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855963,2855964,25.0,1154224,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855964,2855965,22.0,1154224,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855965,2855966,21.0,1154224,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855966,2855967,25.0,1154225,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855967,2855968,22.0,1154225,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855968,2855969,21.0,1154225,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855969,2855970,25.0,1154226,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855970,2855971,22.0,1154226,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855971,2855972,21.0,1154226,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855972,2855973,25.0,1154227,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855973,2855974,22.0,1154227,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855974,2855975,21.0,1154227,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855975,2855976,25.0,1154228,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855976,2855977,22.0,1154228,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855977,2855978,21.0,1154228,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855978,2855979,25.0,1154229,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855979,2855980,22.0,1154229,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855980,2855981,21.0,1154229,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855981,2855982,25.0,1154230,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855982,2855983,22.0,1154230,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855983,2855984,21.0,1154230,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2855984,2855985,25.0,1154231,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855985,2855986,22.0,1154231,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855986,2855987,21.0,1154231,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855987,2855988,25.0,1154232,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855988,2855989,22.0,1154232,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855989,2855990,21.0,1154232,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855990,2855991,25.0,1154233,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855991,2855992,22.0,1154233,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855992,2855993,21.0,1154233,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855993,2855994,25.0,1154234,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855994,2855995,22.0,1154234,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855995,2855996,21.0,1154234,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2855999,2856000,25.0,1154236,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2856000,2856001,22.0,1154236,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2856001,2856002,21.0,1154236,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2856002,2856003,25.0,1154237,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2856003,2856004,22.0,1154237,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2856004,2856005,21.0,1154237,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2856011,2856012,25.0,1154240,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2856012,2856013,22.0,1154240,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2856013,2856014,21.0,1154240,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2856014,2856015,25.0,1154241,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856015,2856016,22.0,1154241,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856016,2856017,21.0,1154241,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856017,2856018,25.0,1154242,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856018,2856019,22.0,1154242,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856019,2856020,21.0,1154242,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856020,2856021,31.0,1154243,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856021,2856022,24.0,1154243,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856024,2856025,31.0,1154245,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856025,2856026,24.0,1154245,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856026,2856027,31.0,1154246,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856027,2856028,24.0,1154246,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856028,2856029,31.0,1154247,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856029,2856030,24.0,1154247,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856030,2856031,31.0,1154248,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856031,2856032,24.0,1154248,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2856032,2856033,31.0,1154249,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856033,2856034,24.0,1154249,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856034,2856035,31.0,1154250,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856035,2856036,24.0,1154250,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2856036,2856037,31.0,1154251,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856037,2856038,24.0,1154251,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2856038,2856039,31.0,1154252,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2856039,2856040,24.0,1154252,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22808.0,2147.0 +2856040,2856041,31.0,1154253,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856041,2856042,24.0,1154253,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856044,2856045,31.0,1154255,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2856045,2856046,24.0,1154255,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22808.0,2147.0 +2856046,2856047,31.0,1154256,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856047,2856048,24.0,1154256,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2856048,2856049,31.0,1154257,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2856049,2856050,24.0,1154257,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22808.0,2147.0 +2856050,2856051,31.0,1154258,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856051,2856052,24.0,1154258,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2856052,2856053,31.0,1154259,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856053,2856054,24.0,1154259,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856054,2856055,31.0,1154260,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856055,2856056,24.0,1154260,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856060,2856061,31.0,1154263,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856061,2856062,24.0,1154263,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856064,2856065,31.0,1154265,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856065,2856066,24.0,1154265,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2856070,2856071,31.0,1154268,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856071,2856072,24.0,1154268,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2856072,2856073,31.0,1154269,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856073,2856074,24.0,1154269,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856074,2856075,31.0,1154270,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2856075,2856076,24.0,1154270,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22808.0,2147.0 +2856076,2856077,31.0,1154271,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856077,2856078,24.0,1154271,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856080,2856081,31.0,1154273,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2856081,2856082,24.0,1154273,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22808.0,2147.0 +2856082,2856083,31.0,1154274,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856083,2856084,24.0,1154274,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856084,2856085,31.0,1154275,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856085,2856086,24.0,1154275,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2856086,2856087,31.0,1154276,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856087,2856088,24.0,1154276,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2856088,2856089,31.0,1154277,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856089,2856090,24.0,1154277,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856092,2856093,31.0,1154279,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856093,2856094,24.0,1154279,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2856096,2856097,31.0,1154281,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856097,2856098,24.0,1154281,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856098,2856099,31.0,1154282,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856099,2856100,24.0,1154282,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22815.0,2150.0 +2856100,2856101,31.0,1154283,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856101,2856102,24.0,1154283,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856102,2856103,31.0,1154284,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2856103,2856104,24.0,1154284,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22814.0,2150.0 +2856104,2856105,22.0,1154285,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856105,2856106,25.0,1154285,2,2,12,4,1.0,45.0,1.0,-9.0,4.0,6214,14.0,22815.0,2150.0 +2856106,2856107,21.0,1154285,3,2,12,4,6.0,20.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856107,2856108,22.0,1154286,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856108,2856109,25.0,1154286,2,2,12,4,1.0,45.0,1.0,-9.0,4.0,6214,14.0,22815.0,2150.0 +2856109,2856110,21.0,1154286,3,2,12,4,6.0,20.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856110,2856111,22.0,1154287,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22814.0,2150.0 +2856111,2856112,25.0,1154287,2,2,12,4,1.0,45.0,1.0,-9.0,4.0,6214,14.0,22814.0,2150.0 +2856112,2856113,21.0,1154287,3,2,12,4,6.0,20.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856119,2856120,22.0,1154290,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22808.0,2147.0 +2856120,2856121,25.0,1154290,2,2,12,4,1.0,45.0,1.0,-9.0,4.0,6214,14.0,22808.0,2147.0 +2856121,2856122,21.0,1154290,3,2,12,4,6.0,20.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856122,2856123,22.0,1154291,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856123,2856124,25.0,1154291,2,2,12,4,1.0,45.0,1.0,-9.0,4.0,6214,14.0,22815.0,2150.0 +2856124,2856125,21.0,1154291,3,2,12,4,6.0,20.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856128,2856129,22.0,1154293,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856129,2856130,25.0,1154293,2,2,12,4,1.0,45.0,1.0,-9.0,4.0,6214,14.0,22815.0,2150.0 +2856130,2856131,21.0,1154293,3,2,12,4,6.0,20.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856131,2856132,22.0,1154294,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22808.0,2147.0 +2856132,2856133,25.0,1154294,2,2,12,4,1.0,45.0,1.0,-9.0,4.0,6214,14.0,22808.0,2147.0 +2856133,2856134,21.0,1154294,3,2,12,4,6.0,20.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856134,2856135,22.0,1154295,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22814.0,2150.0 +2856135,2856136,25.0,1154295,2,2,12,4,1.0,45.0,1.0,-9.0,4.0,6214,14.0,22814.0,2150.0 +2856136,2856137,21.0,1154295,3,2,12,4,6.0,20.0,6.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856137,2856138,22.0,1154296,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856138,2856139,25.0,1154296,2,2,12,4,1.0,45.0,1.0,-9.0,4.0,6214,14.0,22815.0,2150.0 +2856139,2856140,21.0,1154296,3,2,12,4,6.0,20.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856140,2856141,24.0,1154297,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856141,2856142,20.0,1154298,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856142,2856143,20.0,1154299,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856144,2856145,24.0,1154301,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22814.0,2150.0 +2856145,2856146,24.0,1154302,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22814.0,2150.0 +2856146,2856147,20.0,1154303,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856147,2856148,24.0,1154304,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22814.0,2150.0 +2856148,2856149,24.0,1154305,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22814.0,2150.0 +2856149,2856150,24.0,1154306,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22808.0,2147.0 +2856150,2856151,20.0,1154307,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856152,2856153,24.0,1154309,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22814.0,2150.0 +2856154,2856155,20.0,1154311,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856155,2856156,24.0,1154312,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22814.0,2150.0 +2856156,2856157,20.0,1154313,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856157,2856158,24.0,1154314,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856158,2856159,20.0,1154315,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856159,2856160,20.0,1154316,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856160,2856161,20.0,1154317,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856161,2856162,20.0,1154318,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856162,2856163,24.0,1154319,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22814.0,2150.0 +2856163,2856164,20.0,1154320,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856166,2856167,24.0,1154323,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22808.0,2147.0 +2856167,2856168,24.0,1154324,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856168,2856169,24.0,1154325,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856169,2856170,20.0,1154326,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856170,2856171,20.0,1154327,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856171,2856172,20.0,1154328,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856173,2856174,20.0,1154330,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856174,2856175,24.0,1154331,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22814.0,2150.0 +2856176,2856177,24.0,1154333,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856177,2856178,20.0,1154334,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856178,2856179,20.0,1154335,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856179,2856180,20.0,1154336,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856180,2856181,24.0,1154337,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856181,2856182,24.0,1154338,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22808.0,2147.0 +2856182,2856183,24.0,1154339,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22814.0,2150.0 +2856184,2856185,20.0,1154341,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856186,2856187,20.0,1154343,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856187,2856188,20.0,1154344,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856189,2856190,20.0,1154346,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856190,2856191,20.0,1154347,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856191,2856192,24.0,1154348,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856192,2856193,22.0,1154349,1,2,0,4,2.0,30.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +2856193,2856194,22.0,1154350,1,2,0,4,6.0,9.0,5.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +2856194,2856195,25.0,1154350,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22808.0,2147.0 +2856195,2856196,22.0,1154351,1,2,0,4,6.0,9.0,5.0,16.0,4.0,722Z,16.0,22815.0,2150.0 +2856196,2856197,25.0,1154351,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856199,2856200,23.0,1154353,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22808.0,2147.0 +2856200,2856201,23.0,1154354,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856201,2856202,23.0,1154355,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856202,2856203,23.0,1154356,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856203,2856204,23.0,1154357,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856204,2856205,23.0,1154358,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22815.0,2150.0 +2856205,2856206,20.0,1154359,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856206,2856207,20.0,1154360,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856207,2856208,20.0,1154361,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2856208,2856209,20.0,1154362,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22808.0,2147.0 +2856209,2856210,19.0,1154363,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2856210,2856211,24.0,1154364,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22815.0,2150.0 +2856213,2856214,19.0,1154367,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2856214,2856215,19.0,1154368,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +2856215,2856216,19.0,1154369,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +2856216,2856217,19.0,1154370,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +2856217,2856218,19.0,1154371,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2856218,2856219,19.0,1154372,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2856219,2856220,19.0,1154373,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +2856220,2856221,19.0,1154374,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2856221,2856222,19.0,1154375,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +2856222,2856223,19.0,1154376,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +2856223,2856224,24.0,1154377,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22815.0,2150.0 +2856224,2856225,24.0,1154378,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22815.0,2150.0 +2856225,2856226,19.0,1154379,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2856226,2856227,19.0,1154380,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +2856227,2856228,19.0,1154381,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +2856228,2856229,19.0,1154382,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2856229,2856230,19.0,1154383,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2856230,2856231,19.0,1154384,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +2856231,2856232,19.0,1154385,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2856233,2856234,19.0,1154387,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +2856234,2856235,24.0,1154388,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22815.0,2150.0 +2856236,2856237,19.0,1154390,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +2856237,2856238,19.0,1154391,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +2856238,2856239,24.0,1154392,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22815.0,2150.0 +2856239,2856240,24.0,1154393,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22814.0,2150.0 +2856241,2856242,24.0,1154395,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +2856242,2856243,24.0,1154396,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22814.0,2150.0 +2856243,2856244,24.0,1154397,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22815.0,2150.0 +2856244,2856245,24.0,1154398,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22815.0,2150.0 +2856245,2856246,23.0,1154399,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +2856246,2856247,31.0,1154399,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22808.0,2147.0 +2856247,2856248,23.0,1154400,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22815.0,2150.0 +2856248,2856249,31.0,1154400,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22815.0,2150.0 +2856249,2856250,23.0,1154401,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22814.0,2150.0 +2856250,2856251,31.0,1154401,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22814.0,2150.0 +2856251,2856252,23.0,1154402,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22814.0,2150.0 +2856252,2856253,31.0,1154402,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22814.0,2150.0 +2856253,2856254,23.0,1154403,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22815.0,2150.0 +2856254,2856255,31.0,1154403,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22815.0,2150.0 +2856257,2856258,23.0,1154405,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22815.0,2150.0 +2856258,2856259,31.0,1154405,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22815.0,2150.0 +2856259,2856260,23.0,1154406,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +2856260,2856261,31.0,1154406,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22808.0,2147.0 +2856261,2856262,23.0,1154407,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +2856262,2856263,31.0,1154407,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22808.0,2147.0 +2856263,2856264,23.0,1154408,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +2856264,2856265,31.0,1154408,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22808.0,2147.0 +2856265,2856266,24.0,1154409,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22814.0,2150.0 +2856266,2856267,26.0,1154409,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22814.0,2150.0 +2856267,2856268,24.0,1154410,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22808.0,2147.0 +2856268,2856269,26.0,1154410,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22808.0,2147.0 +2856271,2856272,24.0,1154412,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22814.0,2150.0 +2856272,2856273,26.0,1154412,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22814.0,2150.0 +2856275,2856276,24.0,1154414,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22814.0,2150.0 +2856276,2856277,26.0,1154414,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22814.0,2150.0 +2856277,2856278,24.0,1154415,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22814.0,2150.0 +2856278,2856279,26.0,1154415,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22814.0,2150.0 +2856279,2856280,24.0,1154416,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22814.0,2150.0 +2856280,2856281,26.0,1154416,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22814.0,2150.0 +2856283,2856284,24.0,1154418,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22808.0,2147.0 +2856284,2856285,26.0,1154418,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22808.0,2147.0 +2856285,2856286,23.0,1154419,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22814.0,2150.0 +2856286,2856287,23.0,1154420,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22815.0,2150.0 +2856287,2856288,23.0,1154421,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22815.0,2150.0 +2856288,2856289,23.0,1154422,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22814.0,2150.0 +2856291,2856292,23.0,1154425,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22814.0,2150.0 +2856292,2856293,23.0,1154426,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22814.0,2150.0 +2856293,2856294,23.0,1154427,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22815.0,2150.0 +2856294,2856295,23.0,1154428,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22808.0,2147.0 +2856295,2856296,23.0,1154429,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22814.0,2150.0 +2856296,2856297,23.0,1154430,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22815.0,2150.0 +2856297,2856298,23.0,1154431,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22814.0,2150.0 +2856298,2856299,23.0,1154432,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22814.0,2150.0 +2856299,2856300,23.0,1154433,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22814.0,2150.0 +2856300,2856301,23.0,1154434,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22815.0,2150.0 +2856301,2856302,23.0,1154435,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22815.0,2150.0 +2856302,2856303,23.0,1154436,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22815.0,2150.0 +2856303,2856304,23.0,1154437,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22815.0,2150.0 +2856304,2856305,26.0,1154437,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2856305,2856306,23.0,1154437,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22815.0,2150.0 +2856306,2856307,23.0,1154437,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22815.0,2150.0 +2856307,2856308,23.0,1154438,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22814.0,2150.0 +2856308,2856309,26.0,1154438,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +2856309,2856310,23.0,1154438,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22814.0,2150.0 +2856310,2856311,23.0,1154438,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22814.0,2150.0 +2856311,2856312,23.0,1154439,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22814.0,2150.0 +2856312,2856313,26.0,1154439,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +2856313,2856314,23.0,1154439,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22814.0,2150.0 +2856314,2856315,23.0,1154439,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22814.0,2150.0 +2856315,2856316,23.0,1154440,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22815.0,2150.0 +2856316,2856317,26.0,1154440,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2856317,2856318,23.0,1154440,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22815.0,2150.0 +2856318,2856319,23.0,1154440,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22815.0,2150.0 +2856319,2856320,23.0,1154441,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22814.0,2150.0 +2856320,2856321,26.0,1154441,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +2856321,2856322,23.0,1154441,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22814.0,2150.0 +2856322,2856323,23.0,1154441,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22814.0,2150.0 +2856323,2856324,23.0,1154442,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22815.0,2150.0 +2856324,2856325,26.0,1154442,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2856325,2856326,23.0,1154442,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22815.0,2150.0 +2856326,2856327,23.0,1154442,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22815.0,2150.0 +2856327,2856328,23.0,1154443,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22815.0,2150.0 +2856328,2856329,26.0,1154443,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2856329,2856330,23.0,1154443,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22815.0,2150.0 +2856330,2856331,23.0,1154443,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22815.0,2150.0 +2856335,2856336,23.0,1154445,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22814.0,2150.0 +2856336,2856337,26.0,1154445,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +2856337,2856338,23.0,1154445,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22814.0,2150.0 +2856338,2856339,23.0,1154445,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22814.0,2150.0 +2856343,2856344,23.0,1154447,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22815.0,2150.0 +2856344,2856345,26.0,1154447,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2856345,2856346,23.0,1154447,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22815.0,2150.0 +2856346,2856347,23.0,1154447,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22815.0,2150.0 +2856347,2856348,23.0,1154448,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22808.0,2147.0 +2856348,2856349,26.0,1154448,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +2856349,2856350,23.0,1154448,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22808.0,2147.0 +2856350,2856351,23.0,1154448,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22808.0,2147.0 +2856359,2856360,24.0,1154451,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22814.0,2150.0 +2856360,2856361,23.0,1154451,2,1,13,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22814.0,2150.0 +2856361,2856362,23.0,1154452,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856362,2856363,23.0,1154453,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856363,2856364,23.0,1154454,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856365,2856366,23.0,1154456,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856366,2856367,23.0,1154457,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856367,2856368,23.0,1154458,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856368,2856369,23.0,1154459,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856369,2856370,23.0,1154460,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856372,2856373,23.0,1154463,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856373,2856374,23.0,1154464,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856374,2856375,23.0,1154465,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856376,2856377,23.0,1154467,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856377,2856378,23.0,1154468,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856378,2856379,23.0,1154469,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856380,2856381,23.0,1154471,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856381,2856382,23.0,1154472,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856382,2856383,23.0,1154473,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856383,2856384,23.0,1154474,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856384,2856385,23.0,1154475,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856385,2856386,23.0,1154476,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856386,2856387,23.0,1154477,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856387,2856388,23.0,1154478,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856388,2856389,23.0,1154479,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856389,2856390,23.0,1154480,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856390,2856391,23.0,1154481,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856391,2856392,23.0,1154482,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856392,2856393,23.0,1154483,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856393,2856394,23.0,1154484,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856394,2856395,23.0,1154485,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856395,2856396,23.0,1154486,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856397,2856398,23.0,1154488,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856398,2856399,23.0,1154489,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856400,2856401,23.0,1154491,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856401,2856402,23.0,1154492,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856405,2856406,23.0,1154496,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856406,2856407,23.0,1154497,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856407,2856408,23.0,1154498,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856408,2856409,23.0,1154499,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856409,2856410,23.0,1154500,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856410,2856411,23.0,1154501,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856411,2856412,23.0,1154502,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856412,2856413,23.0,1154503,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856413,2856414,23.0,1154504,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22808.0,2147.0 +2856414,2856415,23.0,1154505,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856416,2856417,23.0,1154507,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856418,2856419,23.0,1154509,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856419,2856420,23.0,1154510,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856420,2856421,23.0,1154511,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856421,2856422,23.0,1154512,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22815.0,2150.0 +2856422,2856423,23.0,1154513,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2856425,2856426,23.0,1154515,1,2,0,1,3.0,20.0,6.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +2856426,2856427,25.0,1154515,2,2,12,4,1.0,50.0,1.0,-9.0,4.0,446Z,5.0,22814.0,2150.0 +2856427,2856428,23.0,1154516,1,2,0,1,3.0,20.0,6.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2856428,2856429,25.0,1154516,2,2,12,4,1.0,50.0,1.0,-9.0,4.0,446Z,5.0,22815.0,2150.0 +2856429,2856430,24.0,1154517,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22814.0,2150.0 +2856430,2856431,25.0,1154517,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22814.0,2150.0 +2856431,2856432,24.0,1154518,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22814.0,2150.0 +2856432,2856433,25.0,1154518,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22814.0,2150.0 +2856435,2856436,24.0,1154520,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22815.0,2150.0 +2856436,2856437,25.0,1154520,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22815.0,2150.0 +2856437,2856438,24.0,1154521,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22814.0,2150.0 +2856438,2856439,25.0,1154521,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22814.0,2150.0 +2856439,2856440,24.0,1154522,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22815.0,2150.0 +2856440,2856441,25.0,1154522,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22815.0,2150.0 +2856441,2856442,24.0,1154523,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856442,2856443,25.0,1154523,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856447,2856448,24.0,1154526,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856448,2856449,25.0,1154526,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856449,2856450,24.0,1154527,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856450,2856451,25.0,1154527,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856455,2856456,24.0,1154530,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856456,2856457,25.0,1154530,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856457,2856458,24.0,1154531,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856458,2856459,25.0,1154531,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856459,2856460,24.0,1154532,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856460,2856461,25.0,1154532,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856461,2856462,24.0,1154533,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856462,2856463,25.0,1154533,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856465,2856466,24.0,1154535,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856466,2856467,25.0,1154535,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856469,2856470,24.0,1154537,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856470,2856471,25.0,1154537,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856471,2856472,24.0,1154538,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856472,2856473,25.0,1154538,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856477,2856478,24.0,1154541,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856478,2856479,25.0,1154541,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856479,2856480,24.0,1154542,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856480,2856481,25.0,1154542,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856481,2856482,24.0,1154543,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856482,2856483,25.0,1154543,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856483,2856484,24.0,1154544,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856484,2856485,25.0,1154544,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856489,2856490,24.0,1154547,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856490,2856491,25.0,1154547,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856491,2856492,24.0,1154548,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856492,2856493,25.0,1154548,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856493,2856494,24.0,1154549,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856494,2856495,25.0,1154549,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856499,2856500,24.0,1154552,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856500,2856501,25.0,1154552,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856513,2856514,24.0,1154559,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856514,2856515,25.0,1154559,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856515,2856516,24.0,1154560,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856516,2856517,25.0,1154560,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856517,2856518,24.0,1154561,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856518,2856519,25.0,1154561,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856521,2856522,24.0,1154563,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856522,2856523,25.0,1154563,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856523,2856524,24.0,1154564,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856524,2856525,25.0,1154564,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856525,2856526,24.0,1154565,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856526,2856527,25.0,1154565,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856527,2856528,24.0,1154566,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856528,2856529,25.0,1154566,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856529,2856530,24.0,1154567,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856530,2856531,25.0,1154567,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856531,2856532,24.0,1154568,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856532,2856533,25.0,1154568,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856535,2856536,24.0,1154570,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856536,2856537,25.0,1154570,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856537,2856538,24.0,1154571,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856538,2856539,25.0,1154571,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856539,2856540,24.0,1154572,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856540,2856541,25.0,1154572,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856541,2856542,24.0,1154573,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856542,2856543,25.0,1154573,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856543,2856544,24.0,1154574,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856544,2856545,25.0,1154574,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856545,2856546,24.0,1154575,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856546,2856547,25.0,1154575,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856547,2856548,24.0,1154576,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856548,2856549,25.0,1154576,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856549,2856550,24.0,1154577,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856550,2856551,25.0,1154577,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856553,2856554,24.0,1154579,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856554,2856555,25.0,1154579,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856555,2856556,24.0,1154580,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856556,2856557,25.0,1154580,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856557,2856558,24.0,1154581,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856558,2856559,25.0,1154581,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856559,2856560,24.0,1154582,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856560,2856561,25.0,1154582,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856563,2856564,24.0,1154584,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856564,2856565,25.0,1154584,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856565,2856566,24.0,1154585,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856566,2856567,25.0,1154585,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856567,2856568,24.0,1154586,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856568,2856569,25.0,1154586,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856569,2856570,24.0,1154587,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856570,2856571,25.0,1154587,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856571,2856572,24.0,1154588,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856572,2856573,25.0,1154588,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856573,2856574,24.0,1154589,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856574,2856575,25.0,1154589,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856575,2856576,24.0,1154590,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856576,2856577,25.0,1154590,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856579,2856580,24.0,1154592,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856580,2856581,25.0,1154592,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856587,2856588,24.0,1154596,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856588,2856589,25.0,1154596,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856589,2856590,24.0,1154597,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856590,2856591,25.0,1154597,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856591,2856592,24.0,1154598,1,2,0,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856592,2856593,35.0,1154598,2,1,13,1,1.0,40.0,3.0,-9.0,4.0,45114,5.0,22815.0,2150.0 +2856593,2856594,24.0,1154599,1,2,0,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856594,2856595,35.0,1154599,2,1,13,1,1.0,40.0,3.0,-9.0,4.0,45114,5.0,22815.0,2150.0 +2856595,2856596,24.0,1154600,1,2,0,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856596,2856597,35.0,1154600,2,1,13,1,1.0,40.0,3.0,-9.0,4.0,45114,5.0,22808.0,2147.0 +2856597,2856598,23.0,1154601,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22815.0,2150.0 +2856598,2856599,26.0,1154601,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22815.0,2150.0 +2856601,2856602,23.0,1154603,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22815.0,2150.0 +2856602,2856603,26.0,1154603,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22815.0,2150.0 +2856603,2856604,23.0,1154604,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22815.0,2150.0 +2856604,2856605,26.0,1154604,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22815.0,2150.0 +2856605,2856606,23.0,1154605,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22808.0,2147.0 +2856606,2856607,26.0,1154605,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22808.0,2147.0 +2856608,2856609,24.0,1154607,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22815.0,2150.0 +2856609,2856610,22.0,1154608,1,2,0,1,6.0,55.0,6.0,16.0,4.0,814,17.0,22814.0,2150.0 +2856610,2856611,22.0,1154609,1,2,0,1,6.0,55.0,6.0,16.0,4.0,814,17.0,22814.0,2150.0 +2856611,2856612,22.0,1154610,1,2,0,1,6.0,55.0,6.0,16.0,4.0,814,17.0,22815.0,2150.0 +2856612,2856613,22.0,1154611,1,2,0,1,6.0,55.0,6.0,16.0,4.0,814,17.0,22815.0,2150.0 +2856613,2856614,22.0,1154612,1,2,0,1,6.0,55.0,6.0,16.0,4.0,814,17.0,22815.0,2150.0 +2856615,2856616,22.0,1154614,1,2,0,1,6.0,55.0,6.0,16.0,4.0,814,17.0,22814.0,2150.0 +2856616,2856617,22.0,1154615,1,2,0,1,6.0,55.0,6.0,16.0,4.0,814,17.0,22808.0,2147.0 +2856617,2856618,20.0,1154616,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856618,2856619,21.0,1154616,2,1,12,4,6.0,-9.0,-9.0,15.0,2.0,-9,0.0,22814.0,2150.0 +2856619,2856620,21.0,1154616,3,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856620,2856621,20.0,1154616,4,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856621,2856622,20.0,1154616,5,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856622,2856623,20.0,1154616,6,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2856623,2856624,23.0,1154617,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22815.0,2150.0 +2856624,2856625,26.0,1154617,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856625,2856626,23.0,1154618,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22814.0,2150.0 +2856626,2856627,26.0,1154618,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856627,2856628,23.0,1154619,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22815.0,2150.0 +2856628,2856629,26.0,1154619,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856629,2856630,23.0,1154620,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22814.0,2150.0 +2856630,2856631,26.0,1154620,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856631,2856632,23.0,1154621,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22814.0,2150.0 +2856632,2856633,26.0,1154621,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856635,2856636,23.0,1154623,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22815.0,2150.0 +2856636,2856637,26.0,1154623,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856637,2856638,23.0,1154624,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22814.0,2150.0 +2856638,2856639,26.0,1154624,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856639,2856640,23.0,1154625,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22808.0,2147.0 +2856640,2856641,26.0,1154625,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856643,2856644,23.0,1154627,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22814.0,2150.0 +2856644,2856645,26.0,1154627,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856645,2856646,23.0,1154628,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22814.0,2150.0 +2856646,2856647,26.0,1154628,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856649,2856650,23.0,1154630,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22815.0,2150.0 +2856650,2856651,26.0,1154630,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856651,2856652,23.0,1154631,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22808.0,2147.0 +2856652,2856653,26.0,1154631,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856653,2856654,23.0,1154632,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22815.0,2150.0 +2856654,2856655,26.0,1154632,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856655,2856656,23.0,1154633,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22808.0,2147.0 +2856656,2856657,26.0,1154633,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856657,2856658,23.0,1154634,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22814.0,2150.0 +2856658,2856659,26.0,1154634,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856659,2856660,23.0,1154635,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22815.0,2150.0 +2856660,2856661,26.0,1154635,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856661,2856662,23.0,1154636,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22815.0,2150.0 +2856662,2856663,26.0,1154636,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856663,2856664,23.0,1154637,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22808.0,2147.0 +2856664,2856665,26.0,1154637,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856665,2856666,23.0,1154638,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22808.0,2147.0 +2856666,2856667,26.0,1154638,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856669,2856670,23.0,1154640,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22814.0,2150.0 +2856670,2856671,26.0,1154640,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856671,2856672,23.0,1154641,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22808.0,2147.0 +2856672,2856673,26.0,1154641,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856674,2856675,22.0,1154643,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +2856675,2856676,21.0,1154644,1,2,0,1,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +2856677,2856678,22.0,1154646,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2856678,2856679,22.0,1154647,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2856681,2856682,22.0,1154650,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22808.0,2147.0 +2856682,2856683,21.0,1154651,1,2,0,1,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +2856685,2856686,24.0,1154654,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856686,2856687,21.0,1154655,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2856687,2856688,21.0,1154656,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22815.0,2150.0 +2856688,2856689,23.0,1154657,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2856689,2856690,22.0,1154658,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856690,2856691,21.0,1154659,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +2856691,2856692,21.0,1154660,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22815.0,2150.0 +2856693,2856694,21.0,1154662,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2856694,2856695,21.0,1154663,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22815.0,2150.0 +2856696,2856697,22.0,1154665,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2856697,2856698,23.0,1154666,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2856698,2856699,24.0,1154667,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22808.0,2147.0 +2856700,2856701,24.0,1154669,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22808.0,2147.0 +2856702,2856703,24.0,1154671,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22814.0,2150.0 +2856706,2856707,23.0,1154674,1,2,0,1,1.0,35.0,1.0,16.0,4.0,721M,16.0,22808.0,2147.0 +2856708,2856709,24.0,1154676,1,2,0,1,1.0,50.0,5.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +2856709,2856710,23.0,1154677,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +2856711,2856712,19.0,1154679,1,1,0,1,1.0,10.0,6.0,15.0,4.0,7111,16.0,22808.0,2147.0 +2856713,2856714,20.0,1154681,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22808.0,2147.0 +2856714,2856715,20.0,1154682,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22815.0,2150.0 +2856716,2856717,20.0,1154684,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22814.0,2150.0 +2856718,2856719,20.0,1154686,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22808.0,2147.0 +2856719,2856720,20.0,1154687,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22808.0,2147.0 +2856721,2856722,20.0,1154689,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22808.0,2147.0 +2856722,2856723,20.0,1154690,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22815.0,2150.0 +2856723,2856724,20.0,1154691,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22814.0,2150.0 +2856725,2856726,20.0,1154693,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22815.0,2150.0 +2856726,2856727,20.0,1154694,1,2,0,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22815.0,2150.0 +2856727,2856728,21.0,1154695,1,1,0,1,6.0,50.0,5.0,15.0,4.0,56173,12.0,22815.0,2150.0 +2860809,2860810,26.0,1156249,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22803.0,2144.0 +2860810,2860811,24.0,1156249,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22803.0,2144.0 +2860811,2860812,26.0,1156250,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860812,2860813,24.0,1156250,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860813,2860814,26.0,1156251,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860814,2860815,24.0,1156251,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860815,2860816,26.0,1156252,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860816,2860817,24.0,1156252,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860817,2860818,26.0,1156253,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860818,2860819,24.0,1156253,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860819,2860820,26.0,1156254,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2860820,2860821,24.0,1156254,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2860821,2860822,26.0,1156255,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860822,2860823,24.0,1156255,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860823,2860824,26.0,1156256,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2860824,2860825,24.0,1156256,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2860825,2860826,26.0,1156257,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2860826,2860827,24.0,1156257,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2860827,2860828,26.0,1156258,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860828,2860829,24.0,1156258,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860829,2860830,26.0,1156259,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2860830,2860831,24.0,1156259,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2860831,2860832,26.0,1156260,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2860832,2860833,24.0,1156260,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2860833,2860834,26.0,1156261,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860834,2860835,24.0,1156261,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860835,2860836,26.0,1156262,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2860836,2860837,24.0,1156262,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2860837,2860838,26.0,1156263,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860838,2860839,24.0,1156263,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860839,2860840,26.0,1156264,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860840,2860841,24.0,1156264,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860841,2860842,26.0,1156265,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860842,2860843,24.0,1156265,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860843,2860844,26.0,1156266,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860844,2860845,24.0,1156266,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860845,2860846,26.0,1156267,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860846,2860847,24.0,1156267,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860847,2860848,26.0,1156268,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860848,2860849,24.0,1156268,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860849,2860850,26.0,1156269,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860850,2860851,24.0,1156269,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860851,2860852,26.0,1156270,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860852,2860853,24.0,1156270,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860853,2860854,26.0,1156271,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2860854,2860855,24.0,1156271,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2860855,2860856,26.0,1156272,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860856,2860857,24.0,1156272,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860857,2860858,26.0,1156273,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860858,2860859,24.0,1156273,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860859,2860860,26.0,1156274,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2860860,2860861,24.0,1156274,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2860861,2860862,26.0,1156275,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860862,2860863,24.0,1156275,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860863,2860864,26.0,1156276,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2860864,2860865,24.0,1156276,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2860865,2860866,26.0,1156277,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22803.0,2144.0 +2860866,2860867,24.0,1156277,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22803.0,2144.0 +2860867,2860868,26.0,1156278,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860868,2860869,24.0,1156278,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860869,2860870,26.0,1156279,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860870,2860871,24.0,1156279,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860871,2860872,26.0,1156280,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860872,2860873,24.0,1156280,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860873,2860874,26.0,1156281,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860874,2860875,24.0,1156281,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860875,2860876,26.0,1156282,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860876,2860877,24.0,1156282,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860877,2860878,26.0,1156283,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860878,2860879,24.0,1156283,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860879,2860880,26.0,1156284,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860880,2860881,24.0,1156284,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860881,2860882,26.0,1156285,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860882,2860883,24.0,1156285,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860883,2860884,26.0,1156286,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2860884,2860885,24.0,1156286,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2860885,2860886,26.0,1156287,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2860886,2860887,24.0,1156287,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2860887,2860888,26.0,1156288,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2860888,2860889,24.0,1156288,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2860889,2860890,26.0,1156289,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2860890,2860891,24.0,1156289,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2860891,2860892,26.0,1156290,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22806.0,2146.0 +2860892,2860893,24.0,1156290,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +2860893,2860894,26.0,1156291,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22805.0,2145.0 +2860894,2860895,24.0,1156291,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22805.0,2145.0 +2860895,2860896,26.0,1156292,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22807.0,2146.0 +2860896,2860897,24.0,1156292,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22807.0,2146.0 +2860897,2860898,26.0,1156293,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22807.0,2146.0 +2860898,2860899,24.0,1156293,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22807.0,2146.0 +2860899,2860900,26.0,1156294,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22807.0,2146.0 +2860900,2860901,24.0,1156294,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22807.0,2146.0 +2860901,2860902,26.0,1156295,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22807.0,2146.0 +2860902,2860903,24.0,1156295,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22807.0,2146.0 +2860903,2860904,26.0,1156296,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22805.0,2145.0 +2860904,2860905,24.0,1156296,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22805.0,2145.0 +2860905,2860906,26.0,1156297,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22807.0,2146.0 +2860906,2860907,24.0,1156297,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22807.0,2146.0 +2860907,2860908,26.0,1156298,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22807.0,2146.0 +2860908,2860909,24.0,1156298,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22807.0,2146.0 +2860909,2860910,26.0,1156299,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22807.0,2146.0 +2860910,2860911,24.0,1156299,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22807.0,2146.0 +2860911,2860912,26.0,1156300,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22806.0,2146.0 +2860912,2860913,24.0,1156300,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +2860913,2860914,26.0,1156301,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22803.0,2144.0 +2860914,2860915,24.0,1156301,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22803.0,2144.0 +2860915,2860916,26.0,1156302,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22805.0,2145.0 +2860916,2860917,24.0,1156302,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22805.0,2145.0 +2860917,2860918,26.0,1156303,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22803.0,2144.0 +2860918,2860919,24.0,1156303,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22803.0,2144.0 +2860919,2860920,26.0,1156304,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22807.0,2146.0 +2860920,2860921,24.0,1156304,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22807.0,2146.0 +2860921,2860922,26.0,1156305,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22807.0,2146.0 +2860922,2860923,24.0,1156305,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22807.0,2146.0 +2860923,2860924,26.0,1156306,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22806.0,2146.0 +2860924,2860925,24.0,1156306,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +2860925,2860926,26.0,1156307,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22807.0,2146.0 +2860926,2860927,24.0,1156307,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22807.0,2146.0 +2860927,2860928,26.0,1156308,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22807.0,2146.0 +2860928,2860929,24.0,1156308,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22807.0,2146.0 +2860929,2860930,27.0,1156309,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22806.0,2146.0 +2860930,2860931,24.0,1156309,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22806.0,2146.0 +2860931,2860932,27.0,1156310,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22807.0,2146.0 +2860932,2860933,24.0,1156310,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22807.0,2146.0 +2860933,2860934,27.0,1156311,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22806.0,2146.0 +2860934,2860935,24.0,1156311,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22806.0,2146.0 +2860935,2860936,27.0,1156312,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22806.0,2146.0 +2860936,2860937,24.0,1156312,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22806.0,2146.0 +2860937,2860938,27.0,1156313,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22806.0,2146.0 +2860938,2860939,24.0,1156313,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22806.0,2146.0 +2860939,2860940,27.0,1156314,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22807.0,2146.0 +2860940,2860941,24.0,1156314,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22807.0,2146.0 +2860941,2860942,27.0,1156315,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2860942,2860943,24.0,1156315,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2860943,2860944,27.0,1156316,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2860944,2860945,24.0,1156316,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2860945,2860946,27.0,1156317,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2860946,2860947,24.0,1156317,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2860947,2860948,27.0,1156318,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2860948,2860949,24.0,1156318,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2860949,2860950,27.0,1156319,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22806.0,2146.0 +2860950,2860951,24.0,1156319,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22806.0,2146.0 +2860951,2860952,27.0,1156320,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2860952,2860953,24.0,1156320,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2860953,2860954,27.0,1156321,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22806.0,2146.0 +2860954,2860955,24.0,1156321,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22806.0,2146.0 +2860955,2860956,27.0,1156322,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22807.0,2146.0 +2860956,2860957,24.0,1156322,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22807.0,2146.0 +2860957,2860958,27.0,1156323,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22806.0,2146.0 +2860958,2860959,24.0,1156323,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22806.0,2146.0 +2860959,2860960,27.0,1156324,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22807.0,2146.0 +2860960,2860961,24.0,1156324,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22807.0,2146.0 +2860961,2860962,27.0,1156325,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22807.0,2146.0 +2860962,2860963,24.0,1156325,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22807.0,2146.0 +2860963,2860964,27.0,1156326,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22807.0,2146.0 +2860964,2860965,24.0,1156326,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22807.0,2146.0 +2860965,2860966,27.0,1156327,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2860966,2860967,24.0,1156327,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2860967,2860968,27.0,1156328,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22806.0,2146.0 +2860968,2860969,24.0,1156328,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22806.0,2146.0 +2860969,2860970,19.0,1156329,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2860970,2860971,50.0,1156329,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2860971,2860972,19.0,1156330,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +2860972,2860973,50.0,1156330,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22806.0,2146.0 +2860973,2860974,19.0,1156331,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2860974,2860975,50.0,1156331,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2860975,2860976,19.0,1156332,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2860976,2860977,50.0,1156332,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2860977,2860978,19.0,1156333,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2860978,2860979,50.0,1156333,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2860979,2860980,19.0,1156334,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2860980,2860981,50.0,1156334,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2860981,2860982,19.0,1156335,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +2860982,2860983,50.0,1156335,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22806.0,2146.0 +2860983,2860984,19.0,1156336,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2860984,2860985,50.0,1156336,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2860985,2860986,19.0,1156337,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2860986,2860987,50.0,1156337,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2860987,2860988,19.0,1156338,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2860988,2860989,50.0,1156338,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2860989,2860990,19.0,1156339,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2860990,2860991,50.0,1156339,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2860991,2860992,19.0,1156340,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2860992,2860993,50.0,1156340,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2860993,2860994,19.0,1156341,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2860994,2860995,50.0,1156341,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2860995,2860996,19.0,1156342,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2860996,2860997,50.0,1156342,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2860997,2860998,19.0,1156343,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2860998,2860999,50.0,1156343,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2860999,2861000,19.0,1156344,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861000,2861001,50.0,1156344,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861001,2861002,19.0,1156345,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861002,2861003,50.0,1156345,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861003,2861004,19.0,1156346,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861004,2861005,50.0,1156346,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861005,2861006,19.0,1156347,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861006,2861007,50.0,1156347,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861007,2861008,19.0,1156348,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861008,2861009,50.0,1156348,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861009,2861010,19.0,1156349,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861010,2861011,50.0,1156349,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861011,2861012,19.0,1156350,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861012,2861013,50.0,1156350,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861013,2861014,19.0,1156351,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861014,2861015,50.0,1156351,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861015,2861016,19.0,1156352,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +2861016,2861017,50.0,1156352,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22806.0,2146.0 +2861017,2861018,19.0,1156353,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +2861018,2861019,50.0,1156353,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22806.0,2146.0 +2861019,2861020,19.0,1156354,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +2861020,2861021,50.0,1156354,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22806.0,2146.0 +2861021,2861022,19.0,1156355,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22803.0,2144.0 +2861022,2861023,50.0,1156355,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22803.0,2144.0 +2861023,2861024,19.0,1156356,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861024,2861025,50.0,1156356,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861025,2861026,19.0,1156357,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861026,2861027,50.0,1156357,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861027,2861028,19.0,1156358,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861028,2861029,50.0,1156358,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861029,2861030,19.0,1156359,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861030,2861031,50.0,1156359,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861031,2861032,19.0,1156360,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +2861032,2861033,50.0,1156360,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22806.0,2146.0 +2861033,2861034,19.0,1156361,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861034,2861035,50.0,1156361,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861035,2861036,19.0,1156362,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861036,2861037,50.0,1156362,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861037,2861038,19.0,1156363,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861038,2861039,50.0,1156363,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861039,2861040,19.0,1156364,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +2861040,2861041,50.0,1156364,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22806.0,2146.0 +2861041,2861042,19.0,1156365,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +2861042,2861043,50.0,1156365,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22806.0,2146.0 +2861043,2861044,19.0,1156366,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861044,2861045,50.0,1156366,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861045,2861046,19.0,1156367,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861046,2861047,50.0,1156367,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861047,2861048,19.0,1156368,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +2861048,2861049,50.0,1156368,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22806.0,2146.0 +2861049,2861050,19.0,1156369,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861050,2861051,50.0,1156369,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861051,2861052,19.0,1156370,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861052,2861053,50.0,1156370,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861053,2861054,19.0,1156371,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861054,2861055,50.0,1156371,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861055,2861056,19.0,1156372,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861056,2861057,50.0,1156372,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861057,2861058,19.0,1156373,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861058,2861059,50.0,1156373,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861059,2861060,19.0,1156374,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861060,2861061,50.0,1156374,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861061,2861062,19.0,1156375,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861062,2861063,50.0,1156375,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861063,2861064,19.0,1156376,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861064,2861065,50.0,1156376,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861065,2861066,19.0,1156377,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861066,2861067,50.0,1156377,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861067,2861068,19.0,1156378,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861068,2861069,50.0,1156378,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861069,2861070,19.0,1156379,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861070,2861071,50.0,1156379,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861071,2861072,19.0,1156380,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861072,2861073,50.0,1156380,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861073,2861074,19.0,1156381,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861074,2861075,50.0,1156381,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861075,2861076,19.0,1156382,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22807.0,2146.0 +2861076,2861077,50.0,1156382,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22807.0,2146.0 +2861077,2861078,19.0,1156383,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861078,2861079,50.0,1156383,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22805.0,2145.0 +2861079,2861080,22.0,1156384,1,1,0,4,1.0,20.0,3.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2861080,2861081,23.0,1156385,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22803.0,2144.0 +2861081,2861082,23.0,1156386,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2861082,2861083,23.0,1156387,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22806.0,2146.0 +2861083,2861084,23.0,1156388,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22807.0,2146.0 +2861084,2861085,20.0,1156389,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22806.0,2146.0 +2861085,2861086,20.0,1156390,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861086,2861087,20.0,1156391,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22807.0,2146.0 +2861087,2861088,20.0,1156392,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22806.0,2146.0 +2861088,2861089,20.0,1156393,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22803.0,2144.0 +2861089,2861090,20.0,1156394,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22807.0,2146.0 +2861090,2861091,20.0,1156395,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861091,2861092,20.0,1156396,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22807.0,2146.0 +2861092,2861093,20.0,1156397,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22807.0,2146.0 +2861093,2861094,20.0,1156398,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22807.0,2146.0 +2861094,2861095,20.0,1156399,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22807.0,2146.0 +2861095,2861096,20.0,1156400,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22807.0,2146.0 +2861096,2861097,23.0,1156401,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22806.0,2146.0 +2861097,2861098,23.0,1156402,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22805.0,2145.0 +2861098,2861099,23.0,1156403,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861099,2861100,23.0,1156404,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861100,2861101,23.0,1156405,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861101,2861102,23.0,1156406,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22806.0,2146.0 +2861102,2861103,23.0,1156407,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861103,2861104,23.0,1156408,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861104,2861105,23.0,1156409,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22803.0,2144.0 +2861105,2861106,23.0,1156410,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861106,2861107,23.0,1156411,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22806.0,2146.0 +2861107,2861108,23.0,1156412,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861108,2861109,23.0,1156413,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861109,2861110,23.0,1156414,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861110,2861111,23.0,1156415,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22806.0,2146.0 +2861111,2861112,23.0,1156416,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861112,2861113,23.0,1156417,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861113,2861114,23.0,1156418,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861114,2861115,23.0,1156419,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861115,2861116,23.0,1156420,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22806.0,2146.0 +2861116,2861117,23.0,1156421,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861117,2861118,23.0,1156422,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22806.0,2146.0 +2861118,2861119,23.0,1156423,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22803.0,2144.0 +2861119,2861120,23.0,1156424,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861120,2861121,23.0,1156425,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861121,2861122,23.0,1156426,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861122,2861123,23.0,1156427,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22806.0,2146.0 +2861123,2861124,23.0,1156428,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861124,2861125,23.0,1156429,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861125,2861126,23.0,1156430,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861126,2861127,23.0,1156431,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861127,2861128,23.0,1156432,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861128,2861129,23.0,1156433,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861129,2861130,23.0,1156434,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861130,2861131,23.0,1156435,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861131,2861132,23.0,1156436,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861132,2861133,23.0,1156437,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861133,2861134,23.0,1156438,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861134,2861135,23.0,1156439,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861135,2861136,23.0,1156440,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861136,2861137,23.0,1156441,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22807.0,2146.0 +2861137,2861138,23.0,1156442,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861138,2861139,23.0,1156443,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861139,2861140,23.0,1156444,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2861140,2861141,23.0,1156445,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22806.0,2146.0 +2861141,2861142,24.0,1156446,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22803.0,2144.0 +2861142,2861143,25.0,1156446,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22803.0,2144.0 +2861143,2861144,24.0,1156447,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861144,2861145,25.0,1156447,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861145,2861146,24.0,1156448,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861146,2861147,25.0,1156448,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861147,2861148,24.0,1156449,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861148,2861149,25.0,1156449,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861149,2861150,24.0,1156450,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861150,2861151,25.0,1156450,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861151,2861152,24.0,1156451,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861152,2861153,25.0,1156451,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861153,2861154,24.0,1156452,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861154,2861155,25.0,1156452,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861155,2861156,24.0,1156453,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861156,2861157,25.0,1156453,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861157,2861158,24.0,1156454,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861158,2861159,25.0,1156454,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861159,2861160,24.0,1156455,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861160,2861161,25.0,1156455,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861161,2861162,24.0,1156456,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861162,2861163,25.0,1156456,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861163,2861164,24.0,1156457,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861164,2861165,25.0,1156457,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861165,2861166,24.0,1156458,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861166,2861167,25.0,1156458,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861167,2861168,24.0,1156459,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861168,2861169,25.0,1156459,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861169,2861170,24.0,1156460,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861170,2861171,25.0,1156460,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861171,2861172,24.0,1156461,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861172,2861173,25.0,1156461,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861173,2861174,24.0,1156462,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861174,2861175,25.0,1156462,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861175,2861176,24.0,1156463,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861176,2861177,25.0,1156463,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861177,2861178,23.0,1156464,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22806.0,2146.0 +2861178,2861179,26.0,1156464,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22806.0,2146.0 +2861179,2861180,23.0,1156465,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22806.0,2146.0 +2861180,2861181,26.0,1156465,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22806.0,2146.0 +2861181,2861182,23.0,1156466,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22805.0,2145.0 +2861182,2861183,26.0,1156466,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22805.0,2145.0 +2861183,2861184,23.0,1156467,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22805.0,2145.0 +2861184,2861185,26.0,1156467,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22805.0,2145.0 +2861185,2861186,23.0,1156468,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22807.0,2146.0 +2861186,2861187,26.0,1156468,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22807.0,2146.0 +2861187,2861188,23.0,1156469,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22805.0,2145.0 +2861188,2861189,26.0,1156469,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22805.0,2145.0 +2861189,2861190,23.0,1156470,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22805.0,2145.0 +2861190,2861191,26.0,1156470,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22805.0,2145.0 +2861191,2861192,23.0,1156471,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22805.0,2145.0 +2861192,2861193,26.0,1156471,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22805.0,2145.0 +2861193,2861194,23.0,1156472,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22806.0,2146.0 +2861194,2861195,26.0,1156472,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22806.0,2146.0 +2861195,2861196,23.0,1156473,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22805.0,2145.0 +2861196,2861197,26.0,1156473,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22805.0,2145.0 +2861197,2861198,23.0,1156474,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22807.0,2146.0 +2861198,2861199,26.0,1156474,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22807.0,2146.0 +2861199,2861200,23.0,1156475,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22807.0,2146.0 +2861200,2861201,26.0,1156475,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22807.0,2146.0 +2861201,2861202,23.0,1156476,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22805.0,2145.0 +2861202,2861203,26.0,1156476,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22805.0,2145.0 +2861203,2861204,23.0,1156477,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22807.0,2146.0 +2861204,2861205,26.0,1156477,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22807.0,2146.0 +2861205,2861206,23.0,1156478,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22805.0,2145.0 +2861206,2861207,26.0,1156478,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22805.0,2145.0 +2861207,2861208,23.0,1156479,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22807.0,2146.0 +2861208,2861209,26.0,1156479,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22807.0,2146.0 +2861209,2861210,23.0,1156480,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22803.0,2144.0 +2861210,2861211,26.0,1156480,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22803.0,2144.0 +2861211,2861212,23.0,1156481,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22807.0,2146.0 +2861212,2861213,26.0,1156481,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22807.0,2146.0 +2861213,2861214,23.0,1156482,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22806.0,2146.0 +2861214,2861215,26.0,1156482,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22806.0,2146.0 +2861215,2861216,23.0,1156483,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22806.0,2146.0 +2861216,2861217,26.0,1156483,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22806.0,2146.0 +2861217,2861218,23.0,1156484,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22805.0,2145.0 +2861218,2861219,26.0,1156484,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22805.0,2145.0 +2861219,2861220,23.0,1156485,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22805.0,2145.0 +2861220,2861221,26.0,1156485,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22805.0,2145.0 +2861221,2861222,24.0,1156486,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22805.0,2145.0 +2861222,2861223,24.0,1156487,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22807.0,2146.0 +2861223,2861224,24.0,1156488,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22806.0,2146.0 +2861224,2861225,24.0,1156489,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22806.0,2146.0 +2861225,2861226,24.0,1156490,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22805.0,2145.0 +2861226,2861227,24.0,1156491,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22807.0,2146.0 +2861227,2861228,24.0,1156492,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22807.0,2146.0 +2861228,2861229,22.0,1156493,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22806.0,2146.0 +2861229,2861230,22.0,1156494,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22806.0,2146.0 +2861230,2861231,21.0,1156495,1,2,0,1,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +2861231,2861232,22.0,1156496,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22805.0,2145.0 +2861232,2861233,22.0,1156497,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22803.0,2144.0 +2861233,2861234,22.0,1156498,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +2861234,2861235,22.0,1156499,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22805.0,2145.0 +2861235,2861236,22.0,1156500,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22807.0,2146.0 +2861236,2861237,22.0,1156501,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22807.0,2146.0 +2861237,2861238,22.0,1156502,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22805.0,2145.0 +2861238,2861239,22.0,1156503,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +2861239,2861240,22.0,1156504,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22806.0,2146.0 +2861240,2861241,21.0,1156505,1,2,0,1,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22805.0,2145.0 +2861241,2861242,22.0,1156506,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861242,2861243,22.0,1156507,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861243,2861244,21.0,1156508,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +2861244,2861245,21.0,1156509,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861245,2861246,22.0,1156510,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861246,2861247,23.0,1156511,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861247,2861248,21.0,1156512,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22805.0,2145.0 +2861248,2861249,21.0,1156513,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22805.0,2145.0 +2861249,2861250,21.0,1156514,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22807.0,2146.0 +2861250,2861251,22.0,1156515,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861251,2861252,23.0,1156516,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861252,2861253,23.0,1156517,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22806.0,2146.0 +2861253,2861254,21.0,1156518,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22807.0,2146.0 +2861254,2861255,23.0,1156519,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861255,2861256,23.0,1156520,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22807.0,2146.0 +2861256,2861257,22.0,1156521,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861257,2861258,21.0,1156522,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861258,2861259,21.0,1156523,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861259,2861260,22.0,1156524,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861260,2861261,24.0,1156525,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861261,2861262,24.0,1156526,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861262,2861263,23.0,1156527,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22807.0,2146.0 +2861263,2861264,21.0,1156528,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +2861264,2861265,23.0,1156529,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861265,2861266,22.0,1156530,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861266,2861267,22.0,1156531,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861267,2861268,21.0,1156532,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861268,2861269,21.0,1156533,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22807.0,2146.0 +2861269,2861270,23.0,1156534,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22803.0,2144.0 +2861270,2861271,21.0,1156535,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22805.0,2145.0 +2861271,2861272,23.0,1156536,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861272,2861273,23.0,1156537,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22803.0,2144.0 +2861273,2861274,23.0,1156538,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861274,2861275,23.0,1156539,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22806.0,2146.0 +2861275,2861276,22.0,1156540,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861276,2861277,23.0,1156541,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2861277,2861278,23.0,1156542,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2861278,2861279,23.0,1156543,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22807.0,2146.0 +2861279,2861280,21.0,1156544,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861280,2861281,24.0,1156545,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861281,2861282,23.0,1156546,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2861282,2861283,21.0,1156547,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22807.0,2146.0 +2861283,2861284,21.0,1156548,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22803.0,2144.0 +2861284,2861285,24.0,1156549,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22803.0,2144.0 +2861285,2861286,21.0,1156550,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22805.0,2145.0 +2861286,2861287,21.0,1156551,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +2861287,2861288,23.0,1156552,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2861288,2861289,21.0,1156553,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861289,2861290,21.0,1156554,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +2861290,2861291,22.0,1156555,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861291,2861292,21.0,1156556,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22805.0,2145.0 +2861292,2861293,21.0,1156557,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22805.0,2145.0 +2861293,2861294,21.0,1156558,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22803.0,2144.0 +2861294,2861295,21.0,1156559,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861295,2861296,23.0,1156560,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861296,2861297,21.0,1156561,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +2861297,2861298,21.0,1156562,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861298,2861299,21.0,1156563,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +2861299,2861300,23.0,1156564,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2861300,2861301,21.0,1156565,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22807.0,2146.0 +2861301,2861302,22.0,1156566,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861302,2861303,23.0,1156567,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861303,2861304,21.0,1156568,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861304,2861305,23.0,1156569,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2861305,2861306,23.0,1156570,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22807.0,2146.0 +2861306,2861307,24.0,1156571,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861307,2861308,22.0,1156572,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861308,2861309,21.0,1156573,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861309,2861310,23.0,1156574,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22806.0,2146.0 +2861310,2861311,23.0,1156575,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22807.0,2146.0 +2861311,2861312,23.0,1156576,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22807.0,2146.0 +2861312,2861313,24.0,1156577,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861313,2861314,23.0,1156578,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22806.0,2146.0 +2861314,2861315,22.0,1156579,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861315,2861316,23.0,1156580,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22807.0,2146.0 +2861316,2861317,23.0,1156581,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861317,2861318,22.0,1156582,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861318,2861319,21.0,1156583,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861319,2861320,21.0,1156584,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861320,2861321,23.0,1156585,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22807.0,2146.0 +2861321,2861322,21.0,1156586,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22805.0,2145.0 +2861322,2861323,21.0,1156587,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861323,2861324,23.0,1156588,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861324,2861325,22.0,1156589,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861325,2861326,22.0,1156590,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861326,2861327,24.0,1156591,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861327,2861328,21.0,1156592,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22805.0,2145.0 +2861328,2861329,23.0,1156593,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861329,2861330,22.0,1156594,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861330,2861331,23.0,1156595,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22806.0,2146.0 +2861331,2861332,23.0,1156596,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861332,2861333,22.0,1156597,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861333,2861334,21.0,1156598,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22805.0,2145.0 +2861334,2861335,24.0,1156599,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861335,2861336,21.0,1156600,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22807.0,2146.0 +2861336,2861337,22.0,1156601,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861337,2861338,23.0,1156602,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22806.0,2146.0 +2861338,2861339,21.0,1156603,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +2861339,2861340,21.0,1156604,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22807.0,2146.0 +2861340,2861341,21.0,1156605,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22805.0,2145.0 +2861341,2861342,21.0,1156606,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22807.0,2146.0 +2861342,2861343,23.0,1156607,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2861343,2861344,21.0,1156608,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861344,2861345,21.0,1156609,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22805.0,2145.0 +2861345,2861346,23.0,1156610,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861346,2861347,21.0,1156611,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861347,2861348,24.0,1156612,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861348,2861349,22.0,1156613,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861349,2861350,23.0,1156614,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22803.0,2144.0 +2861350,2861351,23.0,1156615,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22807.0,2146.0 +2861351,2861352,22.0,1156616,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22803.0,2144.0 +2861352,2861353,22.0,1156617,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861353,2861354,24.0,1156618,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861354,2861355,21.0,1156619,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22807.0,2146.0 +2861355,2861356,22.0,1156620,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861356,2861357,23.0,1156621,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861357,2861358,23.0,1156622,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22803.0,2144.0 +2861358,2861359,22.0,1156623,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861359,2861360,23.0,1156624,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861360,2861361,22.0,1156625,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861361,2861362,23.0,1156626,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861362,2861363,22.0,1156627,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +2861363,2861364,22.0,1156628,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861364,2861365,23.0,1156629,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861365,2861366,24.0,1156630,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22803.0,2144.0 +2861366,2861367,22.0,1156631,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861367,2861368,22.0,1156632,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861368,2861369,21.0,1156633,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22805.0,2145.0 +2861369,2861370,21.0,1156634,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22805.0,2145.0 +2861370,2861371,22.0,1156635,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861371,2861372,23.0,1156636,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2861372,2861373,23.0,1156637,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2861373,2861374,21.0,1156638,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +2861374,2861375,23.0,1156639,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861375,2861376,23.0,1156640,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22803.0,2144.0 +2861376,2861377,23.0,1156641,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22807.0,2146.0 +2861377,2861378,23.0,1156642,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22803.0,2144.0 +2861378,2861379,23.0,1156643,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22806.0,2146.0 +2861379,2861380,23.0,1156644,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22805.0,2145.0 +2861380,2861381,23.0,1156645,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22807.0,2146.0 +2861381,2861382,23.0,1156646,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22805.0,2145.0 +2861382,2861383,23.0,1156647,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22805.0,2145.0 +2861383,2861384,23.0,1156648,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22805.0,2145.0 +2861384,2861385,23.0,1156649,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22806.0,2146.0 +2861385,2861386,23.0,1156650,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22805.0,2145.0 +2861386,2861387,23.0,1156651,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22806.0,2146.0 +2861387,2861388,23.0,1156652,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22803.0,2144.0 +2861388,2861389,23.0,1156653,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22807.0,2146.0 +2861389,2861390,23.0,1156654,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22806.0,2146.0 +2861390,2861391,20.0,1156655,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861391,2861392,24.0,1156656,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22807.0,2146.0 +2861392,2861393,24.0,1156657,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22806.0,2146.0 +2861393,2861394,24.0,1156658,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22807.0,2146.0 +2861394,2861395,24.0,1156659,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22807.0,2146.0 +2861395,2861396,24.0,1156660,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22806.0,2146.0 +2861396,2861397,24.0,1156661,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22807.0,2146.0 +2861397,2861398,24.0,1156662,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22807.0,2146.0 +2861398,2861399,23.0,1156663,1,2,0,1,1.0,35.0,1.0,16.0,4.0,721M,16.0,22805.0,2145.0 +2861399,2861400,23.0,1156664,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861400,2861401,23.0,1156665,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861401,2861402,23.0,1156666,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22807.0,2146.0 +2861402,2861403,24.0,1156667,1,2,0,1,1.0,50.0,5.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2861403,2861404,19.0,1156668,1,1,0,1,1.0,10.0,6.0,15.0,4.0,7111,16.0,22806.0,2146.0 +2861404,2861405,21.0,1156669,1,1,0,1,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861405,2861406,21.0,1156670,1,1,0,1,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861406,2861407,21.0,1156671,1,1,0,1,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22803.0,2144.0 +2861407,2861408,21.0,1156672,1,1,0,1,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22805.0,2145.0 +2861408,2861409,21.0,1156673,1,1,0,1,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22807.0,2146.0 +2861409,2861410,21.0,1156674,1,1,0,1,6.0,50.0,5.0,15.0,4.0,56173,12.0,22805.0,2145.0 +2861410,2861411,21.0,1156675,1,1,0,1,6.0,50.0,5.0,15.0,4.0,56173,12.0,22807.0,2146.0 +2861411,2861412,21.0,1156676,1,1,0,1,6.0,50.0,5.0,15.0,4.0,56173,12.0,22807.0,2146.0 +2861412,2861413,21.0,1156677,1,1,0,1,6.0,50.0,5.0,15.0,4.0,56173,12.0,22805.0,2145.0 +2861413,2861414,21.0,1156678,1,1,0,1,6.0,50.0,5.0,15.0,4.0,56173,12.0,22805.0,2145.0 +2861414,2861415,65.0,1156679,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861415,2861416,65.0,1156679,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861416,2861417,24.0,1156679,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861417,2861418,65.0,1156680,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22804.0,2144.0 +2861418,2861419,65.0,1156680,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22804.0,2144.0 +2861419,2861420,24.0,1156680,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22804.0,2144.0 +2861420,2861421,65.0,1156681,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861421,2861422,65.0,1156681,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861422,2861423,24.0,1156681,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861423,2861424,65.0,1156682,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861424,2861425,65.0,1156682,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861425,2861426,24.0,1156682,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861426,2861427,65.0,1156683,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22801.0,2143.0 +2861427,2861428,65.0,1156683,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22801.0,2143.0 +2861428,2861429,24.0,1156683,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22801.0,2143.0 +2861429,2861430,65.0,1156684,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861430,2861431,65.0,1156684,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861431,2861432,24.0,1156684,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861432,2861433,65.0,1156685,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861433,2861434,65.0,1156685,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861434,2861435,24.0,1156685,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861435,2861436,65.0,1156686,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22804.0,2144.0 +2861436,2861437,65.0,1156686,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22804.0,2144.0 +2861437,2861438,24.0,1156686,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22804.0,2144.0 +2861438,2861439,65.0,1156687,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22804.0,2144.0 +2861439,2861440,65.0,1156687,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22804.0,2144.0 +2861440,2861441,24.0,1156687,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22804.0,2144.0 +2861441,2861442,65.0,1156688,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22804.0,2144.0 +2861442,2861443,65.0,1156688,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22804.0,2144.0 +2861443,2861444,24.0,1156688,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22804.0,2144.0 +2861444,2861445,65.0,1156689,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22801.0,2143.0 +2861445,2861446,65.0,1156689,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22801.0,2143.0 +2861446,2861447,24.0,1156689,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22801.0,2143.0 +2861447,2861448,65.0,1156690,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861448,2861449,65.0,1156690,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861449,2861450,24.0,1156690,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22802.0,2144.0 +2861450,2861451,65.0,1156691,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22804.0,2144.0 +2861451,2861452,65.0,1156691,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22804.0,2144.0 +2861452,2861453,24.0,1156691,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22804.0,2144.0 +2861453,2861454,65.0,1156692,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22801.0,2143.0 +2861454,2861455,65.0,1156692,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22801.0,2143.0 +2861455,2861456,24.0,1156692,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22801.0,2143.0 +2861456,2861457,49.0,1156693,1,1,0,2,1.0,40.0,1.0,-9.0,4.0,484,6.0,22801.0,2143.0 +2861457,2861458,34.0,1156693,2,2,10,2,1.0,32.0,3.0,-9.0,4.0,44611,5.0,22801.0,2143.0 +2861458,2861459,18.0,1156693,3,2,10,2,3.0,-9.0,-9.0,-9.0,4.0,999920,0.0,22801.0,2143.0 +2861459,2861460,50.0,1156693,4,2,13,2,1.0,32.0,1.0,-9.0,4.0,5617Z,12.0,22801.0,2143.0 +2861460,2861461,58.0,1156694,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861461,2861462,64.0,1156694,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22802.0,2144.0 +2861462,2861463,24.0,1156694,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22802.0,2144.0 +2861463,2861464,23.0,1156694,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22802.0,2144.0 +2861464,2861465,70.0,1156694,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22802.0,2144.0 +2861465,2861466,58.0,1156695,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22801.0,2143.0 +2861466,2861467,64.0,1156695,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22801.0,2143.0 +2861467,2861468,24.0,1156695,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22801.0,2143.0 +2861468,2861469,23.0,1156695,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22801.0,2143.0 +2861469,2861470,70.0,1156695,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861470,2861471,58.0,1156696,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861471,2861472,64.0,1156696,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22802.0,2144.0 +2861472,2861473,24.0,1156696,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22802.0,2144.0 +2861473,2861474,23.0,1156696,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22802.0,2144.0 +2861474,2861475,70.0,1156696,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22802.0,2144.0 +2861475,2861476,58.0,1156697,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22804.0,2144.0 +2861476,2861477,64.0,1156697,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22804.0,2144.0 +2861477,2861478,24.0,1156697,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22804.0,2144.0 +2861478,2861479,23.0,1156697,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22804.0,2144.0 +2861479,2861480,70.0,1156697,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22804.0,2144.0 +2861480,2861481,58.0,1156698,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861481,2861482,64.0,1156698,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22802.0,2144.0 +2861482,2861483,24.0,1156698,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22802.0,2144.0 +2861483,2861484,23.0,1156698,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22802.0,2144.0 +2861484,2861485,70.0,1156698,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22802.0,2144.0 +2861485,2861486,58.0,1156699,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861486,2861487,64.0,1156699,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22802.0,2144.0 +2861487,2861488,24.0,1156699,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22802.0,2144.0 +2861488,2861489,23.0,1156699,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22802.0,2144.0 +2861489,2861490,70.0,1156699,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22802.0,2144.0 +2861490,2861491,58.0,1156700,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22801.0,2143.0 +2861491,2861492,64.0,1156700,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22801.0,2143.0 +2861492,2861493,24.0,1156700,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22801.0,2143.0 +2861493,2861494,23.0,1156700,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22801.0,2143.0 +2861494,2861495,70.0,1156700,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861495,2861496,58.0,1156701,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861496,2861497,64.0,1156701,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22802.0,2144.0 +2861497,2861498,24.0,1156701,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22802.0,2144.0 +2861498,2861499,23.0,1156701,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22802.0,2144.0 +2861499,2861500,70.0,1156701,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22802.0,2144.0 +2861500,2861501,58.0,1156702,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22801.0,2143.0 +2861501,2861502,64.0,1156702,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22801.0,2143.0 +2861502,2861503,24.0,1156702,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22801.0,2143.0 +2861503,2861504,23.0,1156702,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22801.0,2143.0 +2861504,2861505,70.0,1156702,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861505,2861506,58.0,1156703,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2861506,2861507,64.0,1156703,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22802.0,2144.0 +2861507,2861508,24.0,1156703,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22802.0,2144.0 +2861508,2861509,23.0,1156703,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22802.0,2144.0 +2861509,2861510,70.0,1156703,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22802.0,2144.0 +2861510,2861511,45.0,1156704,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,621M,14.0,22805.0,2145.0 +2861511,2861512,45.0,1156704,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22805.0,2145.0 +2861512,2861513,28.0,1156704,3,1,12,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22805.0,2145.0 +2861513,2861514,24.0,1156704,4,1,12,1,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2861514,2861515,49.0,1156705,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2861515,2861516,50.0,1156705,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22801.0,2143.0 +2861516,2861517,23.0,1156705,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22801.0,2143.0 +2861517,2861518,49.0,1156706,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2861518,2861519,50.0,1156706,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22801.0,2143.0 +2861519,2861520,23.0,1156706,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22801.0,2143.0 +2861520,2861521,49.0,1156707,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2861521,2861522,50.0,1156707,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22801.0,2143.0 +2861522,2861523,23.0,1156707,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22801.0,2143.0 +2861523,2861524,49.0,1156708,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861524,2861525,50.0,1156708,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861525,2861526,23.0,1156708,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861526,2861527,49.0,1156709,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2861527,2861528,50.0,1156709,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22804.0,2144.0 +2861528,2861529,23.0,1156709,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22804.0,2144.0 +2861529,2861530,49.0,1156710,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861530,2861531,50.0,1156710,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861531,2861532,23.0,1156710,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861532,2861533,49.0,1156711,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2861533,2861534,50.0,1156711,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22801.0,2143.0 +2861534,2861535,23.0,1156711,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22801.0,2143.0 +2861535,2861536,49.0,1156712,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861536,2861537,50.0,1156712,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861537,2861538,23.0,1156712,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861538,2861539,49.0,1156713,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2861539,2861540,50.0,1156713,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22804.0,2144.0 +2861540,2861541,23.0,1156713,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22804.0,2144.0 +2861541,2861542,49.0,1156714,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2861542,2861543,50.0,1156714,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22804.0,2144.0 +2861543,2861544,23.0,1156714,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22804.0,2144.0 +2861544,2861545,49.0,1156715,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2861545,2861546,50.0,1156715,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22801.0,2143.0 +2861546,2861547,23.0,1156715,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22801.0,2143.0 +2861547,2861548,49.0,1156716,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861548,2861549,50.0,1156716,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861549,2861550,23.0,1156716,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861550,2861551,49.0,1156717,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2861551,2861552,50.0,1156717,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22801.0,2143.0 +2861552,2861553,23.0,1156717,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22801.0,2143.0 +2861553,2861554,49.0,1156718,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2861554,2861555,50.0,1156718,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22804.0,2144.0 +2861555,2861556,23.0,1156718,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22804.0,2144.0 +2861556,2861557,49.0,1156719,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2861557,2861558,50.0,1156719,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22804.0,2144.0 +2861558,2861559,23.0,1156719,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22804.0,2144.0 +2861559,2861560,49.0,1156720,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861560,2861561,50.0,1156720,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861561,2861562,23.0,1156720,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861562,2861563,49.0,1156721,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861563,2861564,50.0,1156721,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861564,2861565,23.0,1156721,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861565,2861566,49.0,1156722,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861566,2861567,50.0,1156722,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861567,2861568,23.0,1156722,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861568,2861569,49.0,1156723,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861569,2861570,50.0,1156723,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861570,2861571,23.0,1156723,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861571,2861572,49.0,1156724,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2861572,2861573,50.0,1156724,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22804.0,2144.0 +2861573,2861574,23.0,1156724,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22804.0,2144.0 +2861574,2861575,49.0,1156725,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2861575,2861576,50.0,1156725,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22804.0,2144.0 +2861576,2861577,23.0,1156725,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22804.0,2144.0 +2861577,2861578,49.0,1156726,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861578,2861579,50.0,1156726,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861579,2861580,23.0,1156726,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861580,2861581,49.0,1156727,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2861581,2861582,50.0,1156727,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22804.0,2144.0 +2861582,2861583,23.0,1156727,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22804.0,2144.0 +2861583,2861584,49.0,1156728,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861584,2861585,50.0,1156728,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861585,2861586,23.0,1156728,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861586,2861587,49.0,1156729,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2861587,2861588,50.0,1156729,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22801.0,2143.0 +2861588,2861589,23.0,1156729,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22801.0,2143.0 +2861589,2861590,49.0,1156730,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22805.0,2145.0 +2861590,2861591,50.0,1156730,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22805.0,2145.0 +2861591,2861592,23.0,1156730,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22805.0,2145.0 +2861592,2861593,49.0,1156731,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861593,2861594,50.0,1156731,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861594,2861595,23.0,1156731,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861595,2861596,49.0,1156732,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22805.0,2145.0 +2861596,2861597,50.0,1156732,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22805.0,2145.0 +2861597,2861598,23.0,1156732,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22805.0,2145.0 +2861598,2861599,49.0,1156733,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2861599,2861600,50.0,1156733,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22801.0,2143.0 +2861600,2861601,23.0,1156733,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22801.0,2143.0 +2861601,2861602,49.0,1156734,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2861602,2861603,50.0,1156734,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22804.0,2144.0 +2861603,2861604,23.0,1156734,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22804.0,2144.0 +2861604,2861605,49.0,1156735,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861605,2861606,50.0,1156735,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861606,2861607,23.0,1156735,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861607,2861608,49.0,1156736,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2861608,2861609,50.0,1156736,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22804.0,2144.0 +2861609,2861610,23.0,1156736,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22804.0,2144.0 +2861610,2861611,49.0,1156737,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2861611,2861612,50.0,1156737,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22802.0,2144.0 +2861612,2861613,23.0,1156737,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22802.0,2144.0 +2861613,2861614,47.0,1156738,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22802.0,2144.0 +2861614,2861615,52.0,1156738,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22802.0,2144.0 +2861615,2861616,23.0,1156738,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22802.0,2144.0 +2861616,2861617,47.0,1156739,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22804.0,2144.0 +2861617,2861618,52.0,1156739,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22804.0,2144.0 +2861618,2861619,23.0,1156739,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22804.0,2144.0 +2861619,2861620,47.0,1156740,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861620,2861621,52.0,1156740,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861621,2861622,23.0,1156740,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861622,2861623,47.0,1156741,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861623,2861624,52.0,1156741,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861624,2861625,23.0,1156741,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861625,2861626,47.0,1156742,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861626,2861627,52.0,1156742,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861627,2861628,23.0,1156742,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861628,2861629,47.0,1156743,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861629,2861630,52.0,1156743,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861630,2861631,23.0,1156743,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861631,2861632,47.0,1156744,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861632,2861633,52.0,1156744,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861633,2861634,23.0,1156744,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861634,2861635,47.0,1156745,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861635,2861636,52.0,1156745,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861636,2861637,23.0,1156745,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861637,2861638,47.0,1156746,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861638,2861639,52.0,1156746,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861639,2861640,23.0,1156746,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861640,2861641,47.0,1156747,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22804.0,2144.0 +2861641,2861642,52.0,1156747,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22804.0,2144.0 +2861642,2861643,23.0,1156747,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22804.0,2144.0 +2861643,2861644,47.0,1156748,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22804.0,2144.0 +2861644,2861645,52.0,1156748,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22804.0,2144.0 +2861645,2861646,23.0,1156748,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22804.0,2144.0 +2861646,2861647,47.0,1156749,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861647,2861648,52.0,1156749,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861648,2861649,23.0,1156749,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22801.0,2143.0 +2861649,2861650,53.0,1156750,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22804.0,2144.0 +2861650,2861651,33.0,1156750,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22804.0,2144.0 +2861651,2861652,19.0,1156750,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22804.0,2144.0 +2861652,2861653,15.0,1156750,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22804.0,2144.0 +2861653,2861654,48.0,1156750,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22804.0,2144.0 +2861654,2861655,26.0,1156751,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861655,2861656,24.0,1156751,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2861656,2861657,26.0,1156752,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861657,2861658,24.0,1156752,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2861658,2861659,26.0,1156753,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861659,2861660,24.0,1156753,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2861660,2861661,26.0,1156754,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2861661,2861662,24.0,1156754,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22804.0,2144.0 +2861662,2861663,26.0,1156755,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861663,2861664,24.0,1156755,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2861664,2861665,26.0,1156756,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861665,2861666,24.0,1156756,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2861666,2861667,26.0,1156757,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861667,2861668,24.0,1156757,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2861668,2861669,26.0,1156758,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861669,2861670,24.0,1156758,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2861670,2861671,26.0,1156759,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861671,2861672,24.0,1156759,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2861672,2861673,26.0,1156760,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861673,2861674,24.0,1156760,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2861674,2861675,26.0,1156761,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861675,2861676,24.0,1156761,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2861676,2861677,26.0,1156762,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861677,2861678,24.0,1156762,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2861678,2861679,26.0,1156763,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861679,2861680,24.0,1156763,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2861680,2861681,26.0,1156764,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2861681,2861682,24.0,1156764,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22804.0,2144.0 +2861682,2861683,26.0,1156765,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861683,2861684,24.0,1156765,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2861684,2861685,26.0,1156766,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861685,2861686,24.0,1156766,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2861686,2861687,26.0,1156767,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861687,2861688,24.0,1156767,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2861688,2861689,26.0,1156768,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861689,2861690,28.0,1156768,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861690,2861691,28.0,1156768,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22802.0,2144.0 +2861691,2861692,24.0,1156768,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861692,2861693,26.0,1156769,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861693,2861694,28.0,1156769,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861694,2861695,28.0,1156769,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22801.0,2143.0 +2861695,2861696,24.0,1156769,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861696,2861697,26.0,1156770,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861697,2861698,28.0,1156770,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861698,2861699,28.0,1156770,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22802.0,2144.0 +2861699,2861700,24.0,1156770,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861700,2861701,26.0,1156771,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2861701,2861702,28.0,1156771,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2861702,2861703,28.0,1156771,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22804.0,2144.0 +2861703,2861704,24.0,1156771,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2861704,2861705,26.0,1156772,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2861705,2861706,28.0,1156772,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2861706,2861707,28.0,1156772,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22804.0,2144.0 +2861707,2861708,24.0,1156772,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2861708,2861709,26.0,1156773,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861709,2861710,28.0,1156773,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861710,2861711,28.0,1156773,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22802.0,2144.0 +2861711,2861712,24.0,1156773,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861712,2861713,26.0,1156774,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2861713,2861714,28.0,1156774,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2861714,2861715,28.0,1156774,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22804.0,2144.0 +2861715,2861716,24.0,1156774,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2861716,2861717,26.0,1156775,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861717,2861718,28.0,1156775,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861718,2861719,28.0,1156775,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22802.0,2144.0 +2861719,2861720,24.0,1156775,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861720,2861721,26.0,1156776,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861721,2861722,28.0,1156776,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861722,2861723,28.0,1156776,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22802.0,2144.0 +2861723,2861724,24.0,1156776,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861724,2861725,26.0,1156777,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861725,2861726,28.0,1156777,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861726,2861727,28.0,1156777,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22801.0,2143.0 +2861727,2861728,24.0,1156777,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861728,2861729,26.0,1156778,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861729,2861730,28.0,1156778,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861730,2861731,28.0,1156778,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22805.0,2145.0 +2861731,2861732,24.0,1156778,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861732,2861733,26.0,1156779,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861733,2861734,28.0,1156779,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861734,2861735,28.0,1156779,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22801.0,2143.0 +2861735,2861736,24.0,1156779,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861736,2861737,26.0,1156780,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861737,2861738,28.0,1156780,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861738,2861739,28.0,1156780,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22805.0,2145.0 +2861739,2861740,24.0,1156780,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861740,2861741,26.0,1156781,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861741,2861742,28.0,1156781,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861742,2861743,28.0,1156781,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22801.0,2143.0 +2861743,2861744,24.0,1156781,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861744,2861745,26.0,1156782,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861745,2861746,28.0,1156782,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861746,2861747,28.0,1156782,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22801.0,2143.0 +2861747,2861748,24.0,1156782,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861748,2861749,26.0,1156783,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861749,2861750,28.0,1156783,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861750,2861751,28.0,1156783,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22801.0,2143.0 +2861751,2861752,24.0,1156783,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2861752,2861753,26.0,1156784,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861753,2861754,28.0,1156784,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861754,2861755,28.0,1156784,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22802.0,2144.0 +2861755,2861756,24.0,1156784,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861756,2861757,26.0,1156785,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861757,2861758,28.0,1156785,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861758,2861759,28.0,1156785,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22805.0,2145.0 +2861759,2861760,24.0,1156785,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2861760,2861761,26.0,1156786,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861761,2861762,28.0,1156786,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861762,2861763,28.0,1156786,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22802.0,2144.0 +2861763,2861764,24.0,1156786,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2861764,2861765,31.0,1156787,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2861765,2861766,24.0,1156787,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2861766,2861767,25.0,1156788,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861767,2861768,22.0,1156788,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861768,2861769,21.0,1156788,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861769,2861770,25.0,1156789,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861770,2861771,22.0,1156789,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861771,2861772,21.0,1156789,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861772,2861773,25.0,1156790,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861773,2861774,22.0,1156790,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861774,2861775,21.0,1156790,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861775,2861776,25.0,1156791,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861776,2861777,22.0,1156791,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861777,2861778,21.0,1156791,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861778,2861779,25.0,1156792,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861779,2861780,22.0,1156792,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861780,2861781,21.0,1156792,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861781,2861782,25.0,1156793,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861782,2861783,22.0,1156793,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861783,2861784,21.0,1156793,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861784,2861785,25.0,1156794,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861785,2861786,22.0,1156794,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861786,2861787,21.0,1156794,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861787,2861788,25.0,1156795,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861788,2861789,22.0,1156795,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861789,2861790,21.0,1156795,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861790,2861791,25.0,1156796,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861791,2861792,22.0,1156796,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861792,2861793,21.0,1156796,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861793,2861794,25.0,1156797,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861794,2861795,22.0,1156797,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861795,2861796,21.0,1156797,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861796,2861797,25.0,1156798,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861797,2861798,22.0,1156798,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861798,2861799,21.0,1156798,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861799,2861800,25.0,1156799,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861800,2861801,22.0,1156799,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861801,2861802,21.0,1156799,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861802,2861803,25.0,1156800,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861803,2861804,22.0,1156800,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861804,2861805,21.0,1156800,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861805,2861806,25.0,1156801,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861806,2861807,22.0,1156801,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861807,2861808,21.0,1156801,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861808,2861809,25.0,1156802,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861809,2861810,22.0,1156802,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861810,2861811,21.0,1156802,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861811,2861812,25.0,1156803,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861812,2861813,22.0,1156803,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861813,2861814,21.0,1156803,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861814,2861815,25.0,1156804,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861815,2861816,22.0,1156804,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861816,2861817,21.0,1156804,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861817,2861818,25.0,1156805,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861818,2861819,22.0,1156805,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861819,2861820,21.0,1156805,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861820,2861821,25.0,1156806,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861821,2861822,22.0,1156806,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861822,2861823,21.0,1156806,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861823,2861824,25.0,1156807,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861824,2861825,22.0,1156807,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861825,2861826,21.0,1156807,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861826,2861827,25.0,1156808,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861827,2861828,22.0,1156808,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861828,2861829,21.0,1156808,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861829,2861830,25.0,1156809,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861830,2861831,22.0,1156809,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861831,2861832,21.0,1156809,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861832,2861833,25.0,1156810,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861833,2861834,22.0,1156810,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861834,2861835,21.0,1156810,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861835,2861836,25.0,1156811,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861836,2861837,22.0,1156811,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861837,2861838,21.0,1156811,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861838,2861839,25.0,1156812,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861839,2861840,22.0,1156812,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861840,2861841,21.0,1156812,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861841,2861842,25.0,1156813,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861842,2861843,22.0,1156813,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861843,2861844,21.0,1156813,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861844,2861845,25.0,1156814,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861845,2861846,22.0,1156814,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861846,2861847,21.0,1156814,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861847,2861848,25.0,1156815,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861848,2861849,22.0,1156815,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861849,2861850,21.0,1156815,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861850,2861851,25.0,1156816,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861851,2861852,22.0,1156816,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861852,2861853,21.0,1156816,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861853,2861854,25.0,1156817,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861854,2861855,22.0,1156817,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861855,2861856,21.0,1156817,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861856,2861857,25.0,1156818,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861857,2861858,22.0,1156818,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861858,2861859,21.0,1156818,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861859,2861860,25.0,1156819,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861860,2861861,22.0,1156819,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861861,2861862,21.0,1156819,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861862,2861863,25.0,1156820,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861863,2861864,22.0,1156820,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861864,2861865,21.0,1156820,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861865,2861866,25.0,1156821,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861866,2861867,22.0,1156821,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861867,2861868,21.0,1156821,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861868,2861869,25.0,1156822,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861869,2861870,22.0,1156822,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861870,2861871,21.0,1156822,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861871,2861872,25.0,1156823,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861872,2861873,22.0,1156823,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861873,2861874,21.0,1156823,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861874,2861875,25.0,1156824,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861875,2861876,22.0,1156824,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861876,2861877,21.0,1156824,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861877,2861878,25.0,1156825,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861878,2861879,22.0,1156825,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861879,2861880,21.0,1156825,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861880,2861881,25.0,1156826,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861881,2861882,22.0,1156826,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861882,2861883,21.0,1156826,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861883,2861884,25.0,1156827,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861884,2861885,22.0,1156827,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861885,2861886,21.0,1156827,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861886,2861887,25.0,1156828,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861887,2861888,22.0,1156828,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861888,2861889,21.0,1156828,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861889,2861890,25.0,1156829,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861890,2861891,22.0,1156829,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861891,2861892,21.0,1156829,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861892,2861893,25.0,1156830,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861893,2861894,22.0,1156830,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861894,2861895,21.0,1156830,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861895,2861896,25.0,1156831,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861896,2861897,22.0,1156831,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861897,2861898,21.0,1156831,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861898,2861899,25.0,1156832,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861899,2861900,22.0,1156832,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861900,2861901,21.0,1156832,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861901,2861902,25.0,1156833,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861902,2861903,22.0,1156833,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861903,2861904,21.0,1156833,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861904,2861905,25.0,1156834,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861905,2861906,22.0,1156834,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861906,2861907,21.0,1156834,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861907,2861908,25.0,1156835,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861908,2861909,22.0,1156835,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861909,2861910,21.0,1156835,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861910,2861911,25.0,1156836,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861911,2861912,22.0,1156836,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861912,2861913,21.0,1156836,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861913,2861914,25.0,1156837,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861914,2861915,22.0,1156837,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861915,2861916,21.0,1156837,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861916,2861917,25.0,1156838,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861917,2861918,22.0,1156838,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861918,2861919,21.0,1156838,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861919,2861920,25.0,1156839,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861920,2861921,22.0,1156839,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861921,2861922,21.0,1156839,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861922,2861923,25.0,1156840,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861923,2861924,22.0,1156840,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861924,2861925,21.0,1156840,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861925,2861926,25.0,1156841,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861926,2861927,22.0,1156841,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861927,2861928,21.0,1156841,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861928,2861929,25.0,1156842,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861929,2861930,22.0,1156842,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861930,2861931,21.0,1156842,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861931,2861932,25.0,1156843,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861932,2861933,22.0,1156843,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861933,2861934,21.0,1156843,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861934,2861935,25.0,1156844,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861935,2861936,22.0,1156844,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861936,2861937,21.0,1156844,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861937,2861938,25.0,1156845,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861938,2861939,22.0,1156845,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861939,2861940,21.0,1156845,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861940,2861941,25.0,1156846,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861941,2861942,22.0,1156846,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861942,2861943,21.0,1156846,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861943,2861944,25.0,1156847,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861944,2861945,22.0,1156847,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861945,2861946,21.0,1156847,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861946,2861947,25.0,1156848,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861947,2861948,22.0,1156848,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861948,2861949,21.0,1156848,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2861949,2861950,25.0,1156849,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861950,2861951,22.0,1156849,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861951,2861952,21.0,1156849,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861952,2861953,25.0,1156850,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861953,2861954,22.0,1156850,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861954,2861955,21.0,1156850,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861955,2861956,25.0,1156851,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861956,2861957,22.0,1156851,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861957,2861958,21.0,1156851,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861958,2861959,25.0,1156852,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861959,2861960,22.0,1156852,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861960,2861961,21.0,1156852,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861961,2861962,25.0,1156853,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861962,2861963,22.0,1156853,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861963,2861964,21.0,1156853,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861964,2861965,25.0,1156854,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861965,2861966,22.0,1156854,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861966,2861967,21.0,1156854,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861967,2861968,25.0,1156855,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861968,2861969,22.0,1156855,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861969,2861970,21.0,1156855,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861970,2861971,25.0,1156856,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861971,2861972,22.0,1156856,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861972,2861973,21.0,1156856,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861973,2861974,25.0,1156857,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861974,2861975,22.0,1156857,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861975,2861976,21.0,1156857,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861976,2861977,25.0,1156858,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861977,2861978,22.0,1156858,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861978,2861979,21.0,1156858,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861979,2861980,25.0,1156859,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861980,2861981,22.0,1156859,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861981,2861982,21.0,1156859,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2861982,2861983,25.0,1156860,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861983,2861984,22.0,1156860,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861984,2861985,21.0,1156860,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861985,2861986,25.0,1156861,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861986,2861987,22.0,1156861,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861987,2861988,21.0,1156861,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861988,2861989,25.0,1156862,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861989,2861990,22.0,1156862,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861990,2861991,21.0,1156862,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2861991,2861992,25.0,1156863,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861992,2861993,22.0,1156863,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861993,2861994,21.0,1156863,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861994,2861995,25.0,1156864,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861995,2861996,22.0,1156864,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861996,2861997,21.0,1156864,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861997,2861998,25.0,1156865,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861998,2861999,22.0,1156865,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2861999,2862000,21.0,1156865,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862000,2862001,25.0,1156866,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862001,2862002,22.0,1156866,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862002,2862003,21.0,1156866,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862003,2862004,25.0,1156867,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862004,2862005,22.0,1156867,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862005,2862006,21.0,1156867,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862006,2862007,25.0,1156868,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862007,2862008,22.0,1156868,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862008,2862009,21.0,1156868,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862009,2862010,25.0,1156869,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862010,2862011,22.0,1156869,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862011,2862012,21.0,1156869,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862012,2862013,25.0,1156870,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862013,2862014,22.0,1156870,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862014,2862015,21.0,1156870,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862015,2862016,25.0,1156871,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862016,2862017,22.0,1156871,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862017,2862018,21.0,1156871,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862018,2862019,25.0,1156872,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862019,2862020,22.0,1156872,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862020,2862021,21.0,1156872,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862021,2862022,25.0,1156873,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862022,2862023,22.0,1156873,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862023,2862024,21.0,1156873,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862024,2862025,25.0,1156874,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862025,2862026,22.0,1156874,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862026,2862027,21.0,1156874,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862027,2862028,25.0,1156875,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862028,2862029,22.0,1156875,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862029,2862030,21.0,1156875,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862030,2862031,25.0,1156876,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862031,2862032,22.0,1156876,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862032,2862033,21.0,1156876,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862033,2862034,25.0,1156877,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862034,2862035,22.0,1156877,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862035,2862036,21.0,1156877,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862036,2862037,25.0,1156878,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862037,2862038,22.0,1156878,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862038,2862039,21.0,1156878,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862039,2862040,25.0,1156879,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862040,2862041,22.0,1156879,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862041,2862042,21.0,1156879,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862042,2862043,25.0,1156880,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862043,2862044,22.0,1156880,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862044,2862045,21.0,1156880,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862045,2862046,25.0,1156881,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862046,2862047,22.0,1156881,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862047,2862048,21.0,1156881,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862048,2862049,25.0,1156882,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862049,2862050,22.0,1156882,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862050,2862051,21.0,1156882,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862051,2862052,25.0,1156883,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862052,2862053,22.0,1156883,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862053,2862054,21.0,1156883,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862054,2862055,25.0,1156884,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862055,2862056,22.0,1156884,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862056,2862057,21.0,1156884,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862057,2862058,25.0,1156885,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862058,2862059,22.0,1156885,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862059,2862060,21.0,1156885,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862060,2862061,25.0,1156886,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862061,2862062,22.0,1156886,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862062,2862063,21.0,1156886,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862063,2862064,25.0,1156887,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862064,2862065,22.0,1156887,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862065,2862066,21.0,1156887,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862066,2862067,25.0,1156888,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862067,2862068,22.0,1156888,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862068,2862069,21.0,1156888,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862069,2862070,25.0,1156889,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862070,2862071,22.0,1156889,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862071,2862072,21.0,1156889,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862072,2862073,25.0,1156890,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862073,2862074,22.0,1156890,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862074,2862075,21.0,1156890,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862075,2862076,25.0,1156891,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862076,2862077,22.0,1156891,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862077,2862078,21.0,1156891,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862078,2862079,25.0,1156892,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862079,2862080,22.0,1156892,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862080,2862081,21.0,1156892,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862081,2862082,25.0,1156893,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862082,2862083,22.0,1156893,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862083,2862084,21.0,1156893,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862084,2862085,25.0,1156894,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862085,2862086,22.0,1156894,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862086,2862087,21.0,1156894,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862087,2862088,25.0,1156895,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862088,2862089,22.0,1156895,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862089,2862090,21.0,1156895,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862090,2862091,25.0,1156896,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862091,2862092,22.0,1156896,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862092,2862093,21.0,1156896,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862093,2862094,25.0,1156897,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862094,2862095,22.0,1156897,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862095,2862096,21.0,1156897,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862096,2862097,25.0,1156898,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862097,2862098,22.0,1156898,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862098,2862099,21.0,1156898,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862099,2862100,25.0,1156899,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862100,2862101,22.0,1156899,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862101,2862102,21.0,1156899,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862102,2862103,25.0,1156900,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862103,2862104,22.0,1156900,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862104,2862105,21.0,1156900,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862105,2862106,25.0,1156901,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862106,2862107,22.0,1156901,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862107,2862108,21.0,1156901,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862108,2862109,25.0,1156902,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862109,2862110,22.0,1156902,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862110,2862111,21.0,1156902,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862111,2862112,25.0,1156903,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862112,2862113,22.0,1156903,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862113,2862114,21.0,1156903,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862114,2862115,25.0,1156904,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862115,2862116,22.0,1156904,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862116,2862117,21.0,1156904,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862117,2862118,25.0,1156905,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862118,2862119,22.0,1156905,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862119,2862120,21.0,1156905,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862120,2862121,25.0,1156906,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862121,2862122,22.0,1156906,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862122,2862123,21.0,1156906,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862123,2862124,25.0,1156907,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862124,2862125,22.0,1156907,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862125,2862126,21.0,1156907,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862126,2862127,25.0,1156908,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862127,2862128,22.0,1156908,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862128,2862129,21.0,1156908,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862129,2862130,25.0,1156909,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862130,2862131,22.0,1156909,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862131,2862132,21.0,1156909,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862132,2862133,25.0,1156910,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862133,2862134,22.0,1156910,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862134,2862135,21.0,1156910,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862135,2862136,25.0,1156911,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862136,2862137,22.0,1156911,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862137,2862138,21.0,1156911,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862138,2862139,25.0,1156912,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862139,2862140,22.0,1156912,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862140,2862141,21.0,1156912,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862141,2862142,25.0,1156913,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862142,2862143,22.0,1156913,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862143,2862144,21.0,1156913,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862144,2862145,25.0,1156914,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862145,2862146,22.0,1156914,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862146,2862147,21.0,1156914,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862147,2862148,25.0,1156915,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862148,2862149,22.0,1156915,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862149,2862150,21.0,1156915,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862150,2862151,25.0,1156916,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862151,2862152,22.0,1156916,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862152,2862153,21.0,1156916,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862153,2862154,25.0,1156917,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862154,2862155,22.0,1156917,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862155,2862156,21.0,1156917,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862156,2862157,25.0,1156918,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862157,2862158,22.0,1156918,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862158,2862159,21.0,1156918,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862159,2862160,25.0,1156919,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862160,2862161,22.0,1156919,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862161,2862162,21.0,1156919,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862162,2862163,25.0,1156920,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862163,2862164,22.0,1156920,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862164,2862165,21.0,1156920,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862165,2862166,25.0,1156921,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862166,2862167,22.0,1156921,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862167,2862168,21.0,1156921,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862168,2862169,25.0,1156922,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862169,2862170,22.0,1156922,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862170,2862171,21.0,1156922,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862171,2862172,25.0,1156923,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862172,2862173,22.0,1156923,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862173,2862174,21.0,1156923,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862174,2862175,25.0,1156924,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862175,2862176,22.0,1156924,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862176,2862177,21.0,1156924,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862177,2862178,25.0,1156925,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862178,2862179,22.0,1156925,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862179,2862180,21.0,1156925,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862180,2862181,25.0,1156926,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862181,2862182,22.0,1156926,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862182,2862183,21.0,1156926,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862183,2862184,25.0,1156927,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862184,2862185,22.0,1156927,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862185,2862186,21.0,1156927,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862186,2862187,25.0,1156928,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862187,2862188,22.0,1156928,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862188,2862189,21.0,1156928,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862189,2862190,25.0,1156929,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862190,2862191,22.0,1156929,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862191,2862192,21.0,1156929,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862192,2862193,25.0,1156930,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862193,2862194,22.0,1156930,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862194,2862195,21.0,1156930,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862195,2862196,25.0,1156931,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862196,2862197,22.0,1156931,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862197,2862198,21.0,1156931,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862198,2862199,25.0,1156932,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862199,2862200,22.0,1156932,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862200,2862201,21.0,1156932,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862201,2862202,25.0,1156933,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862202,2862203,22.0,1156933,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862203,2862204,21.0,1156933,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862204,2862205,25.0,1156934,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862205,2862206,22.0,1156934,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862206,2862207,21.0,1156934,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862207,2862208,25.0,1156935,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862208,2862209,22.0,1156935,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862209,2862210,21.0,1156935,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862210,2862211,25.0,1156936,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862211,2862212,22.0,1156936,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862212,2862213,21.0,1156936,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862213,2862214,25.0,1156937,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862214,2862215,22.0,1156937,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862215,2862216,21.0,1156937,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862216,2862217,25.0,1156938,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862217,2862218,22.0,1156938,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862218,2862219,21.0,1156938,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22805.0,2145.0 +2862219,2862220,25.0,1156939,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862220,2862221,22.0,1156939,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862221,2862222,21.0,1156939,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862222,2862223,25.0,1156940,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862223,2862224,22.0,1156940,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862224,2862225,21.0,1156940,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862225,2862226,25.0,1156941,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862226,2862227,22.0,1156941,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862227,2862228,21.0,1156941,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862228,2862229,25.0,1156942,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862229,2862230,22.0,1156942,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862230,2862231,21.0,1156942,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862231,2862232,25.0,1156943,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862232,2862233,22.0,1156943,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862233,2862234,21.0,1156943,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862234,2862235,25.0,1156944,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862235,2862236,22.0,1156944,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862236,2862237,21.0,1156944,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862237,2862238,25.0,1156945,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862238,2862239,22.0,1156945,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862239,2862240,21.0,1156945,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862240,2862241,25.0,1156946,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862241,2862242,22.0,1156946,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862242,2862243,21.0,1156946,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862243,2862244,25.0,1156947,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862244,2862245,22.0,1156947,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862245,2862246,21.0,1156947,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862246,2862247,25.0,1156948,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862247,2862248,22.0,1156948,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862248,2862249,21.0,1156948,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862249,2862250,26.0,1156949,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22802.0,2144.0 +2862250,2862251,24.0,1156949,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22802.0,2144.0 +2862251,2862252,27.0,1156950,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22802.0,2144.0 +2862252,2862253,24.0,1156950,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22802.0,2144.0 +2862253,2862254,27.0,1156951,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862254,2862255,24.0,1156951,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862255,2862256,27.0,1156952,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22802.0,2144.0 +2862256,2862257,24.0,1156952,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22802.0,2144.0 +2862257,2862258,27.0,1156953,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862258,2862259,24.0,1156953,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862259,2862260,27.0,1156954,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862260,2862261,24.0,1156954,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862261,2862262,27.0,1156955,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862262,2862263,24.0,1156955,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862263,2862264,27.0,1156956,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862264,2862265,24.0,1156956,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862265,2862266,27.0,1156957,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862266,2862267,24.0,1156957,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862267,2862268,27.0,1156958,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2862268,2862269,24.0,1156958,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2862269,2862270,27.0,1156959,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862270,2862271,24.0,1156959,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862271,2862272,27.0,1156960,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22802.0,2144.0 +2862272,2862273,24.0,1156960,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22802.0,2144.0 +2862273,2862274,27.0,1156961,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22802.0,2144.0 +2862274,2862275,24.0,1156961,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22802.0,2144.0 +2862275,2862276,27.0,1156962,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862276,2862277,24.0,1156962,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862277,2862278,27.0,1156963,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2862278,2862279,24.0,1156963,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2862279,2862280,27.0,1156964,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862280,2862281,24.0,1156964,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862281,2862282,27.0,1156965,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862282,2862283,24.0,1156965,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862283,2862284,27.0,1156966,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22802.0,2144.0 +2862284,2862285,24.0,1156966,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22802.0,2144.0 +2862285,2862286,27.0,1156967,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22804.0,2144.0 +2862286,2862287,24.0,1156967,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22804.0,2144.0 +2862287,2862288,27.0,1156968,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22804.0,2144.0 +2862288,2862289,24.0,1156968,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22804.0,2144.0 +2862289,2862290,27.0,1156969,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22804.0,2144.0 +2862290,2862291,24.0,1156969,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22804.0,2144.0 +2862291,2862292,27.0,1156970,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862292,2862293,24.0,1156970,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862293,2862294,27.0,1156971,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862294,2862295,24.0,1156971,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862295,2862296,27.0,1156972,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2862296,2862297,24.0,1156972,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2862297,2862298,27.0,1156973,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2862298,2862299,24.0,1156973,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2862299,2862300,27.0,1156974,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22804.0,2144.0 +2862300,2862301,24.0,1156974,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22804.0,2144.0 +2862301,2862302,27.0,1156975,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22804.0,2144.0 +2862302,2862303,24.0,1156975,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22804.0,2144.0 +2862303,2862304,27.0,1156976,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862304,2862305,24.0,1156976,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862305,2862306,27.0,1156977,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22802.0,2144.0 +2862306,2862307,24.0,1156977,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22802.0,2144.0 +2862307,2862308,27.0,1156978,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2862308,2862309,24.0,1156978,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2862309,2862310,27.0,1156979,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862310,2862311,24.0,1156979,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862311,2862312,27.0,1156980,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862312,2862313,24.0,1156980,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862313,2862314,27.0,1156981,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22802.0,2144.0 +2862314,2862315,24.0,1156981,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22802.0,2144.0 +2862315,2862316,27.0,1156982,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862316,2862317,24.0,1156982,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862317,2862318,27.0,1156983,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22802.0,2144.0 +2862318,2862319,24.0,1156983,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22802.0,2144.0 +2862319,2862320,27.0,1156984,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22805.0,2145.0 +2862320,2862321,24.0,1156984,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22805.0,2145.0 +2862321,2862322,27.0,1156985,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862322,2862323,24.0,1156985,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862323,2862324,27.0,1156986,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862324,2862325,24.0,1156986,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862325,2862326,27.0,1156987,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862326,2862327,24.0,1156987,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862327,2862328,27.0,1156988,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862328,2862329,24.0,1156988,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862329,2862330,27.0,1156989,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862330,2862331,24.0,1156989,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862331,2862332,27.0,1156990,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22804.0,2144.0 +2862332,2862333,24.0,1156990,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22804.0,2144.0 +2862333,2862334,27.0,1156991,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22802.0,2144.0 +2862334,2862335,24.0,1156991,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22802.0,2144.0 +2862335,2862336,27.0,1156992,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22802.0,2144.0 +2862336,2862337,24.0,1156992,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22802.0,2144.0 +2862337,2862338,27.0,1156993,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862338,2862339,24.0,1156993,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862339,2862340,27.0,1156994,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22802.0,2144.0 +2862340,2862341,24.0,1156994,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22802.0,2144.0 +2862341,2862342,27.0,1156995,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22801.0,2143.0 +2862342,2862343,24.0,1156995,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22801.0,2143.0 +2862343,2862344,30.0,1156996,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6244,14.0,22802.0,2144.0 +2862344,2862345,4.0,1156996,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22802.0,2144.0 +2862345,2862346,2.0,1156996,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22802.0,2144.0 +2862346,2862347,38.0,1156996,4,1,12,1,1.0,45.0,1.0,-9.0,4.0,332MZ,3.0,22802.0,2144.0 +2862347,2862348,30.0,1156996,5,2,12,1,6.0,-9.0,-9.0,-9.0,4.0,522M,9.0,22802.0,2144.0 +2862348,2862349,19.0,1156996,6,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862349,2862350,33.0,1156996,7,1,13,1,1.0,15.0,1.0,-9.0,4.0,8121M,17.0,22802.0,2144.0 +2862350,2862351,30.0,1156997,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6244,14.0,22801.0,2143.0 +2862351,2862352,4.0,1156997,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22801.0,2143.0 +2862352,2862353,2.0,1156997,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22801.0,2143.0 +2862353,2862354,38.0,1156997,4,1,12,1,1.0,45.0,1.0,-9.0,4.0,332MZ,3.0,22801.0,2143.0 +2862354,2862355,30.0,1156997,5,2,12,1,6.0,-9.0,-9.0,-9.0,4.0,522M,9.0,22801.0,2143.0 +2862355,2862356,19.0,1156997,6,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862356,2862357,33.0,1156997,7,1,13,1,1.0,15.0,1.0,-9.0,4.0,8121M,17.0,22801.0,2143.0 +2862357,2862358,30.0,1156998,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6244,14.0,22804.0,2144.0 +2862358,2862359,4.0,1156998,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22804.0,2144.0 +2862359,2862360,2.0,1156998,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22804.0,2144.0 +2862360,2862361,38.0,1156998,4,1,12,1,1.0,45.0,1.0,-9.0,4.0,332MZ,3.0,22804.0,2144.0 +2862361,2862362,30.0,1156998,5,2,12,1,6.0,-9.0,-9.0,-9.0,4.0,522M,9.0,22804.0,2144.0 +2862362,2862363,19.0,1156998,6,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862363,2862364,33.0,1156998,7,1,13,1,1.0,15.0,1.0,-9.0,4.0,8121M,17.0,22804.0,2144.0 +2862364,2862365,30.0,1156999,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6244,14.0,22801.0,2143.0 +2862365,2862366,4.0,1156999,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22801.0,2143.0 +2862366,2862367,2.0,1156999,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22801.0,2143.0 +2862367,2862368,38.0,1156999,4,1,12,1,1.0,45.0,1.0,-9.0,4.0,332MZ,3.0,22801.0,2143.0 +2862368,2862369,30.0,1156999,5,2,12,1,6.0,-9.0,-9.0,-9.0,4.0,522M,9.0,22801.0,2143.0 +2862369,2862370,19.0,1156999,6,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862370,2862371,33.0,1156999,7,1,13,1,1.0,15.0,1.0,-9.0,4.0,8121M,17.0,22801.0,2143.0 +2862371,2862372,30.0,1157000,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6244,14.0,22804.0,2144.0 +2862372,2862373,4.0,1157000,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22804.0,2144.0 +2862373,2862374,2.0,1157000,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22804.0,2144.0 +2862374,2862375,38.0,1157000,4,1,12,1,1.0,45.0,1.0,-9.0,4.0,332MZ,3.0,22804.0,2144.0 +2862375,2862376,30.0,1157000,5,2,12,1,6.0,-9.0,-9.0,-9.0,4.0,522M,9.0,22804.0,2144.0 +2862376,2862377,19.0,1157000,6,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862377,2862378,33.0,1157000,7,1,13,1,1.0,15.0,1.0,-9.0,4.0,8121M,17.0,22804.0,2144.0 +2862378,2862379,30.0,1157001,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6244,14.0,22801.0,2143.0 +2862379,2862380,4.0,1157001,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22801.0,2143.0 +2862380,2862381,2.0,1157001,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22801.0,2143.0 +2862381,2862382,38.0,1157001,4,1,12,1,1.0,45.0,1.0,-9.0,4.0,332MZ,3.0,22801.0,2143.0 +2862382,2862383,30.0,1157001,5,2,12,1,6.0,-9.0,-9.0,-9.0,4.0,522M,9.0,22801.0,2143.0 +2862383,2862384,19.0,1157001,6,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862384,2862385,33.0,1157001,7,1,13,1,1.0,15.0,1.0,-9.0,4.0,8121M,17.0,22801.0,2143.0 +2862385,2862386,30.0,1157002,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6244,14.0,22802.0,2144.0 +2862386,2862387,4.0,1157002,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22802.0,2144.0 +2862387,2862388,2.0,1157002,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22802.0,2144.0 +2862388,2862389,38.0,1157002,4,1,12,1,1.0,45.0,1.0,-9.0,4.0,332MZ,3.0,22802.0,2144.0 +2862389,2862390,30.0,1157002,5,2,12,1,6.0,-9.0,-9.0,-9.0,4.0,522M,9.0,22802.0,2144.0 +2862390,2862391,19.0,1157002,6,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862391,2862392,33.0,1157002,7,1,13,1,1.0,15.0,1.0,-9.0,4.0,8121M,17.0,22802.0,2144.0 +2862392,2862393,30.0,1157003,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6244,14.0,22804.0,2144.0 +2862393,2862394,4.0,1157003,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22804.0,2144.0 +2862394,2862395,2.0,1157003,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22804.0,2144.0 +2862395,2862396,38.0,1157003,4,1,12,1,1.0,45.0,1.0,-9.0,4.0,332MZ,3.0,22804.0,2144.0 +2862396,2862397,30.0,1157003,5,2,12,1,6.0,-9.0,-9.0,-9.0,4.0,522M,9.0,22804.0,2144.0 +2862397,2862398,19.0,1157003,6,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22804.0,2144.0 +2862398,2862399,33.0,1157003,7,1,13,1,1.0,15.0,1.0,-9.0,4.0,8121M,17.0,22804.0,2144.0 +2862399,2862400,30.0,1157004,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6244,14.0,22801.0,2143.0 +2862400,2862401,4.0,1157004,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22801.0,2143.0 +2862401,2862402,2.0,1157004,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22801.0,2143.0 +2862402,2862403,38.0,1157004,4,1,12,1,1.0,45.0,1.0,-9.0,4.0,332MZ,3.0,22801.0,2143.0 +2862403,2862404,30.0,1157004,5,2,12,1,6.0,-9.0,-9.0,-9.0,4.0,522M,9.0,22801.0,2143.0 +2862404,2862405,19.0,1157004,6,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862405,2862406,33.0,1157004,7,1,13,1,1.0,15.0,1.0,-9.0,4.0,8121M,17.0,22801.0,2143.0 +2862406,2862407,30.0,1157005,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,6244,14.0,22801.0,2143.0 +2862407,2862408,4.0,1157005,2,1,2,1,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22801.0,2143.0 +2862408,2862409,2.0,1157005,3,1,2,1,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22801.0,2143.0 +2862409,2862410,38.0,1157005,4,1,12,1,1.0,45.0,1.0,-9.0,4.0,332MZ,3.0,22801.0,2143.0 +2862410,2862411,30.0,1157005,5,2,12,1,6.0,-9.0,-9.0,-9.0,4.0,522M,9.0,22801.0,2143.0 +2862411,2862412,19.0,1157005,6,1,12,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22801.0,2143.0 +2862412,2862413,33.0,1157005,7,1,13,1,1.0,15.0,1.0,-9.0,4.0,8121M,17.0,22801.0,2143.0 +2862413,2862414,24.0,1157006,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22802.0,2144.0 +2862414,2862415,20.0,1157007,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22802.0,2144.0 +2862415,2862416,24.0,1157008,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862416,2862417,20.0,1157009,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862417,2862418,24.0,1157010,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862418,2862419,24.0,1157011,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22804.0,2144.0 +2862419,2862420,20.0,1157012,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862420,2862421,24.0,1157013,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862421,2862422,24.0,1157014,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862422,2862423,20.0,1157015,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22804.0,2144.0 +2862423,2862424,24.0,1157016,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862424,2862425,24.0,1157017,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862425,2862426,20.0,1157018,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862426,2862427,20.0,1157019,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22802.0,2144.0 +2862427,2862428,20.0,1157020,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862428,2862429,24.0,1157021,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2862429,2862430,24.0,1157022,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862430,2862431,24.0,1157023,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862431,2862432,20.0,1157024,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862432,2862433,20.0,1157025,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22802.0,2144.0 +2862433,2862434,24.0,1157026,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862434,2862435,20.0,1157027,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22804.0,2144.0 +2862435,2862436,20.0,1157028,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22804.0,2144.0 +2862436,2862437,24.0,1157029,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2862437,2862438,24.0,1157030,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2862438,2862439,24.0,1157031,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22804.0,2144.0 +2862439,2862440,20.0,1157032,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862440,2862441,24.0,1157033,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862441,2862442,20.0,1157034,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22802.0,2144.0 +2862442,2862443,20.0,1157035,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22804.0,2144.0 +2862443,2862444,24.0,1157036,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862444,2862445,24.0,1157037,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862445,2862446,20.0,1157038,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862446,2862447,24.0,1157039,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2862447,2862448,20.0,1157040,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862448,2862449,20.0,1157041,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22804.0,2144.0 +2862449,2862450,20.0,1157042,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862450,2862451,20.0,1157043,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22802.0,2144.0 +2862451,2862452,24.0,1157044,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2862452,2862453,20.0,1157045,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862453,2862454,24.0,1157046,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862454,2862455,24.0,1157047,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862455,2862456,20.0,1157048,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22802.0,2144.0 +2862456,2862457,20.0,1157049,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862457,2862458,24.0,1157050,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862458,2862459,20.0,1157051,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22804.0,2144.0 +2862459,2862460,20.0,1157052,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22804.0,2144.0 +2862460,2862461,20.0,1157053,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22802.0,2144.0 +2862461,2862462,24.0,1157054,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2862462,2862463,24.0,1157055,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2862463,2862464,20.0,1157056,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862464,2862465,24.0,1157057,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862465,2862466,24.0,1157058,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862466,2862467,20.0,1157059,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862467,2862468,20.0,1157060,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22804.0,2144.0 +2862468,2862469,20.0,1157061,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22804.0,2144.0 +2862469,2862470,20.0,1157062,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22804.0,2144.0 +2862470,2862471,20.0,1157063,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22805.0,2145.0 +2862471,2862472,24.0,1157064,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2862472,2862473,20.0,1157065,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22804.0,2144.0 +2862473,2862474,24.0,1157066,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2862474,2862475,24.0,1157067,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862475,2862476,20.0,1157068,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22801.0,2143.0 +2862476,2862477,20.0,1157069,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22802.0,2144.0 +2862477,2862478,20.0,1157070,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22802.0,2144.0 +2862478,2862479,23.0,1157071,1,1,0,4,2.0,5.0,5.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2862479,2862480,23.0,1157072,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862480,2862481,23.0,1157073,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22802.0,2144.0 +2862481,2862482,23.0,1157074,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862482,2862483,23.0,1157075,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22801.0,2143.0 +2862483,2862484,23.0,1157076,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22805.0,2145.0 +2862484,2862485,24.0,1157077,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2862485,2862486,27.0,1157077,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2862486,2862487,19.0,1157078,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22804.0,2144.0 +2862487,2862488,24.0,1157079,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2862488,2862489,19.0,1157080,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22802.0,2144.0 +2862489,2862490,24.0,1157081,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2862490,2862491,19.0,1157082,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862491,2862492,19.0,1157083,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22804.0,2144.0 +2862492,2862493,24.0,1157084,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2862493,2862494,19.0,1157085,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862494,2862495,19.0,1157086,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862495,2862496,19.0,1157087,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22802.0,2144.0 +2862496,2862497,24.0,1157088,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2862497,2862498,19.0,1157089,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862498,2862499,19.0,1157090,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22802.0,2144.0 +2862499,2862500,19.0,1157091,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862500,2862501,19.0,1157092,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22802.0,2144.0 +2862501,2862502,19.0,1157093,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22804.0,2144.0 +2862502,2862503,19.0,1157094,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862503,2862504,19.0,1157095,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862504,2862505,19.0,1157096,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22805.0,2145.0 +2862505,2862506,19.0,1157097,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862506,2862507,19.0,1157098,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862507,2862508,19.0,1157099,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22802.0,2144.0 +2862508,2862509,19.0,1157100,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22802.0,2144.0 +2862509,2862510,24.0,1157101,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2862510,2862511,19.0,1157102,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22804.0,2144.0 +2862511,2862512,19.0,1157103,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22804.0,2144.0 +2862512,2862513,19.0,1157104,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862513,2862514,19.0,1157105,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22802.0,2144.0 +2862514,2862515,24.0,1157106,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2862515,2862516,19.0,1157107,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22804.0,2144.0 +2862516,2862517,19.0,1157108,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862517,2862518,19.0,1157109,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22802.0,2144.0 +2862518,2862519,19.0,1157110,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862519,2862520,19.0,1157111,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862520,2862521,24.0,1157112,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2862521,2862522,24.0,1157113,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2862522,2862523,19.0,1157114,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22802.0,2144.0 +2862523,2862524,24.0,1157115,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22805.0,2145.0 +2862524,2862525,20.0,1157116,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22802.0,2144.0 +2862525,2862526,20.0,1157117,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22802.0,2144.0 +2862526,2862527,20.0,1157118,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22802.0,2144.0 +2862527,2862528,20.0,1157119,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22804.0,2144.0 +2862528,2862529,20.0,1157120,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22801.0,2143.0 +2862529,2862530,20.0,1157121,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22801.0,2143.0 +2862530,2862531,20.0,1157122,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22805.0,2145.0 +2862531,2862532,23.0,1157123,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22804.0,2144.0 +2862532,2862533,31.0,1157123,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22804.0,2144.0 +2862533,2862534,23.0,1157124,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22801.0,2143.0 +2862534,2862535,31.0,1157124,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22801.0,2143.0 +2862535,2862536,23.0,1157125,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22801.0,2143.0 +2862536,2862537,31.0,1157125,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22801.0,2143.0 +2862537,2862538,23.0,1157126,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22801.0,2143.0 +2862538,2862539,31.0,1157126,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22801.0,2143.0 +2862539,2862540,24.0,1157127,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2862540,2862541,26.0,1157127,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22801.0,2143.0 +2862541,2862542,24.0,1157128,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2862542,2862543,26.0,1157128,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22804.0,2144.0 +2862543,2862544,24.0,1157129,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2862544,2862545,26.0,1157129,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22802.0,2144.0 +2862545,2862546,24.0,1157130,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22804.0,2144.0 +2862546,2862547,26.0,1157130,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22804.0,2144.0 +2862547,2862548,24.0,1157131,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2862548,2862549,26.0,1157131,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22801.0,2143.0 +2862549,2862550,24.0,1157132,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22801.0,2143.0 +2862550,2862551,26.0,1157132,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22801.0,2143.0 +2862551,2862552,24.0,1157133,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22802.0,2144.0 +2862552,2862553,26.0,1157133,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22802.0,2144.0 +2862553,2862554,23.0,1157134,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22802.0,2144.0 +2862554,2862555,23.0,1157135,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22804.0,2144.0 +2862555,2862556,23.0,1157136,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22801.0,2143.0 +2862556,2862557,23.0,1157137,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22801.0,2143.0 +2862557,2862558,23.0,1157138,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22801.0,2143.0 +2862558,2862559,23.0,1157139,1,1,0,3,1.0,45.0,1.0,-9.0,4.0,51913,8.0,22802.0,2144.0 +2862559,2862560,23.0,1157140,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22804.0,2144.0 +2862560,2862561,26.0,1157140,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22804.0,2144.0 +2862561,2862562,23.0,1157140,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22804.0,2144.0 +2862562,2862563,23.0,1157140,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22804.0,2144.0 +2862563,2862564,23.0,1157141,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22802.0,2144.0 +2862564,2862565,26.0,1157141,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22802.0,2144.0 +2862565,2862566,23.0,1157141,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22802.0,2144.0 +2862566,2862567,23.0,1157141,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22802.0,2144.0 +2862567,2862568,23.0,1157142,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22801.0,2143.0 +2862568,2862569,26.0,1157142,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22801.0,2143.0 +2862569,2862570,23.0,1157142,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22801.0,2143.0 +2862570,2862571,23.0,1157142,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22801.0,2143.0 +2862571,2862572,23.0,1157143,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22801.0,2143.0 +2862572,2862573,26.0,1157143,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22801.0,2143.0 +2862573,2862574,23.0,1157143,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22801.0,2143.0 +2862574,2862575,23.0,1157143,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22801.0,2143.0 +2862575,2862576,23.0,1157144,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22802.0,2144.0 +2862576,2862577,26.0,1157144,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22802.0,2144.0 +2862577,2862578,23.0,1157144,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22802.0,2144.0 +2862578,2862579,23.0,1157144,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22802.0,2144.0 +2862579,2862580,24.0,1157145,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862580,2862581,25.0,1157145,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862581,2862582,24.0,1157146,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862582,2862583,25.0,1157146,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862583,2862584,24.0,1157147,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862584,2862585,25.0,1157147,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862585,2862586,24.0,1157148,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862586,2862587,25.0,1157148,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862587,2862588,24.0,1157149,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862588,2862589,25.0,1157149,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862589,2862590,24.0,1157150,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862590,2862591,25.0,1157150,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862591,2862592,24.0,1157151,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862592,2862593,25.0,1157151,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862593,2862594,24.0,1157152,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862594,2862595,25.0,1157152,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862595,2862596,24.0,1157153,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862596,2862597,25.0,1157153,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862597,2862598,24.0,1157154,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862598,2862599,25.0,1157154,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862599,2862600,24.0,1157155,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862600,2862601,25.0,1157155,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862601,2862602,24.0,1157156,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862602,2862603,25.0,1157156,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862603,2862604,24.0,1157157,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862604,2862605,25.0,1157157,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862605,2862606,24.0,1157158,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862606,2862607,25.0,1157158,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862607,2862608,24.0,1157159,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862608,2862609,25.0,1157159,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862609,2862610,24.0,1157160,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862610,2862611,25.0,1157160,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862611,2862612,24.0,1157161,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862612,2862613,25.0,1157161,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862613,2862614,24.0,1157162,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862614,2862615,25.0,1157162,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862615,2862616,24.0,1157163,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862616,2862617,25.0,1157163,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862617,2862618,24.0,1157164,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2862618,2862619,25.0,1157164,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2862619,2862620,24.0,1157165,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862620,2862621,25.0,1157165,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862621,2862622,24.0,1157166,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862622,2862623,25.0,1157166,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862623,2862624,24.0,1157167,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862624,2862625,25.0,1157167,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862625,2862626,24.0,1157168,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862626,2862627,25.0,1157168,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862627,2862628,24.0,1157169,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862628,2862629,25.0,1157169,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862629,2862630,24.0,1157170,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862630,2862631,25.0,1157170,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862631,2862632,24.0,1157171,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2862632,2862633,25.0,1157171,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2862633,2862634,24.0,1157172,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862634,2862635,25.0,1157172,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862635,2862636,24.0,1157173,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2862636,2862637,25.0,1157173,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22805.0,2145.0 +2862637,2862638,24.0,1157174,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862638,2862639,25.0,1157174,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862639,2862640,24.0,1157175,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862640,2862641,25.0,1157175,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862641,2862642,24.0,1157176,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862642,2862643,25.0,1157176,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862643,2862644,24.0,1157177,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862644,2862645,25.0,1157177,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862645,2862646,24.0,1157178,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862646,2862647,25.0,1157178,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862647,2862648,24.0,1157179,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862648,2862649,25.0,1157179,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862649,2862650,24.0,1157180,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862650,2862651,25.0,1157180,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862651,2862652,24.0,1157181,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862652,2862653,25.0,1157181,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862653,2862654,24.0,1157182,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862654,2862655,25.0,1157182,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862655,2862656,24.0,1157183,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862656,2862657,25.0,1157183,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862657,2862658,24.0,1157184,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862658,2862659,25.0,1157184,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862659,2862660,24.0,1157185,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862660,2862661,25.0,1157185,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862661,2862662,23.0,1157186,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22801.0,2143.0 +2862662,2862663,26.0,1157186,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22801.0,2143.0 +2862663,2862664,23.0,1157187,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22801.0,2143.0 +2862664,2862665,26.0,1157187,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22801.0,2143.0 +2862665,2862666,23.0,1157188,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22802.0,2144.0 +2862666,2862667,26.0,1157188,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22802.0,2144.0 +2862667,2862668,23.0,1157189,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22801.0,2143.0 +2862668,2862669,26.0,1157189,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22801.0,2143.0 +2862669,2862670,23.0,1157190,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22804.0,2144.0 +2862670,2862671,26.0,1157190,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22804.0,2144.0 +2862671,2862672,23.0,1157191,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22802.0,2144.0 +2862672,2862673,26.0,1157191,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22802.0,2144.0 +2862673,2862674,23.0,1157192,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22801.0,2143.0 +2862674,2862675,26.0,1157192,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22801.0,2143.0 +2862675,2862676,23.0,1157193,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22802.0,2144.0 +2862676,2862677,26.0,1157193,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22802.0,2144.0 +2862677,2862678,23.0,1157194,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22801.0,2143.0 +2862678,2862679,26.0,1157194,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22801.0,2143.0 +2862679,2862680,23.0,1157195,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22801.0,2143.0 +2862680,2862681,26.0,1157195,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22801.0,2143.0 +2862681,2862682,23.0,1157196,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22804.0,2144.0 +2862682,2862683,26.0,1157196,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22804.0,2144.0 +2862683,2862684,23.0,1157197,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22802.0,2144.0 +2862684,2862685,26.0,1157197,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22802.0,2144.0 +2862685,2862686,24.0,1157198,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862686,2862687,24.0,1157199,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862687,2862688,24.0,1157200,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862688,2862689,24.0,1157201,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862689,2862690,24.0,1157202,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862690,2862691,24.0,1157203,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22802.0,2144.0 +2862691,2862692,24.0,1157204,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862692,2862693,24.0,1157205,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862693,2862694,24.0,1157206,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22802.0,2144.0 +2862694,2862695,24.0,1157207,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862695,2862696,24.0,1157208,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862696,2862697,24.0,1157209,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862697,2862698,24.0,1157210,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862698,2862699,24.0,1157211,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862699,2862700,24.0,1157212,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862700,2862701,24.0,1157213,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862701,2862702,24.0,1157214,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22805.0,2145.0 +2862702,2862703,24.0,1157215,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862703,2862704,24.0,1157216,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862704,2862705,24.0,1157217,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22805.0,2145.0 +2862705,2862706,24.0,1157218,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22805.0,2145.0 +2862706,2862707,24.0,1157219,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862707,2862708,24.0,1157220,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862708,2862709,24.0,1157221,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862709,2862710,24.0,1157222,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862710,2862711,24.0,1157223,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862711,2862712,24.0,1157224,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22802.0,2144.0 +2862712,2862713,24.0,1157225,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862713,2862714,24.0,1157226,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862714,2862715,24.0,1157227,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22805.0,2145.0 +2862715,2862716,24.0,1157228,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862716,2862717,24.0,1157229,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862717,2862718,24.0,1157230,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862718,2862719,24.0,1157231,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862719,2862720,24.0,1157232,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862720,2862721,24.0,1157233,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22802.0,2144.0 +2862721,2862722,24.0,1157234,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862722,2862723,24.0,1157235,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22805.0,2145.0 +2862723,2862724,24.0,1157236,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22802.0,2144.0 +2862724,2862725,24.0,1157237,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862725,2862726,24.0,1157238,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862726,2862727,24.0,1157239,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862727,2862728,24.0,1157240,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862728,2862729,24.0,1157241,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862729,2862730,24.0,1157242,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862730,2862731,24.0,1157243,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862731,2862732,24.0,1157244,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862732,2862733,24.0,1157245,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862733,2862734,24.0,1157246,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22802.0,2144.0 +2862734,2862735,24.0,1157247,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22802.0,2144.0 +2862735,2862736,24.0,1157248,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862736,2862737,24.0,1157249,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862737,2862738,24.0,1157250,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862738,2862739,24.0,1157251,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22802.0,2144.0 +2862739,2862740,24.0,1157252,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22804.0,2144.0 +2862740,2862741,24.0,1157253,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862741,2862742,24.0,1157254,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22802.0,2144.0 +2862742,2862743,24.0,1157255,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22801.0,2143.0 +2862743,2862744,24.0,1157256,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22802.0,2144.0 +2862744,2862745,22.0,1157257,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22801.0,2143.0 +2862745,2862746,21.0,1157258,1,2,0,1,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22801.0,2143.0 +2862746,2862747,21.0,1157259,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22801.0,2143.0 +2862747,2862748,21.0,1157260,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22802.0,2144.0 +2862748,2862749,23.0,1157261,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22805.0,2145.0 +2862749,2862750,21.0,1157262,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22802.0,2144.0 +2862750,2862751,22.0,1157263,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862751,2862752,22.0,1157264,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22804.0,2144.0 +2862752,2862753,23.0,1157265,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862753,2862754,21.0,1157266,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22802.0,2144.0 +2862754,2862755,23.0,1157267,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862755,2862756,21.0,1157268,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22802.0,2144.0 +2862756,2862757,22.0,1157269,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862757,2862758,23.0,1157270,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862758,2862759,21.0,1157271,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22804.0,2144.0 +2862759,2862760,23.0,1157272,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862760,2862761,21.0,1157273,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22801.0,2143.0 +2862761,2862762,21.0,1157274,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22804.0,2144.0 +2862762,2862763,21.0,1157275,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22801.0,2143.0 +2862763,2862764,21.0,1157276,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22801.0,2143.0 +2862764,2862765,24.0,1157277,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862765,2862766,22.0,1157278,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22801.0,2143.0 +2862766,2862767,21.0,1157279,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22804.0,2144.0 +2862767,2862768,24.0,1157280,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22802.0,2144.0 +2862768,2862769,19.0,1157281,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22802.0,2144.0 +2862769,2862770,19.0,1157281,2,1,15,1,1.0,30.0,3.0,15.0,4.0,23,2.0,22802.0,2144.0 +2862770,2862771,23.0,1157282,1,2,0,1,1.0,35.0,1.0,16.0,4.0,721M,16.0,22801.0,2143.0 +2862771,2862772,23.0,1157283,1,2,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22802.0,2144.0 +2862772,2862773,24.0,1157284,1,2,0,1,1.0,50.0,5.0,-9.0,4.0,611M1,13.0,22802.0,2144.0 +2862773,2862774,26.0,1157285,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2862774,2862775,24.0,1157285,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2862775,2862776,26.0,1157286,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2862776,2862777,24.0,1157286,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2862777,2862778,26.0,1157287,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2862778,2862779,24.0,1157287,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2862779,2862780,26.0,1157288,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2862780,2862781,24.0,1157288,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2862781,2862782,26.0,1157289,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2862782,2862783,24.0,1157289,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2862783,2862784,25.0,1157290,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862784,2862785,22.0,1157290,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862785,2862786,21.0,1157290,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862786,2862787,25.0,1157291,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862787,2862788,22.0,1157291,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862788,2862789,21.0,1157291,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862789,2862790,25.0,1157292,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862790,2862791,22.0,1157292,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862791,2862792,21.0,1157292,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862792,2862793,25.0,1157293,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862793,2862794,22.0,1157293,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862794,2862795,21.0,1157293,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862795,2862796,25.0,1157294,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862796,2862797,22.0,1157294,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862797,2862798,21.0,1157294,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862798,2862799,25.0,1157295,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862799,2862800,22.0,1157295,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862800,2862801,21.0,1157295,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862801,2862802,25.0,1157296,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862802,2862803,22.0,1157296,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862803,2862804,21.0,1157296,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862804,2862805,25.0,1157297,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862805,2862806,22.0,1157297,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862806,2862807,21.0,1157297,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862807,2862808,25.0,1157298,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862808,2862809,22.0,1157298,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862809,2862810,21.0,1157298,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862810,2862811,25.0,1157299,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862811,2862812,22.0,1157299,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862812,2862813,21.0,1157299,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862813,2862814,25.0,1157300,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862814,2862815,22.0,1157300,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862815,2862816,21.0,1157300,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862816,2862817,25.0,1157301,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862817,2862818,22.0,1157301,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862818,2862819,21.0,1157301,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862819,2862820,25.0,1157302,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862820,2862821,22.0,1157302,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862821,2862822,21.0,1157302,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862822,2862823,25.0,1157303,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862823,2862824,22.0,1157303,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862824,2862825,21.0,1157303,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862825,2862826,25.0,1157304,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862826,2862827,22.0,1157304,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862827,2862828,21.0,1157304,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862828,2862829,25.0,1157305,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862829,2862830,22.0,1157305,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862830,2862831,21.0,1157305,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862831,2862832,25.0,1157306,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862832,2862833,22.0,1157306,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862833,2862834,21.0,1157306,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862834,2862835,25.0,1157307,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862835,2862836,22.0,1157307,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862836,2862837,21.0,1157307,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862837,2862838,25.0,1157308,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862838,2862839,22.0,1157308,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862839,2862840,21.0,1157308,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862840,2862841,25.0,1157309,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862841,2862842,22.0,1157309,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862842,2862843,21.0,1157309,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862843,2862844,25.0,1157310,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862844,2862845,22.0,1157310,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862845,2862846,21.0,1157310,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862846,2862847,25.0,1157311,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862847,2862848,22.0,1157311,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862848,2862849,21.0,1157311,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862849,2862850,25.0,1157312,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862850,2862851,22.0,1157312,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862851,2862852,21.0,1157312,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862852,2862853,25.0,1157313,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862853,2862854,22.0,1157313,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862854,2862855,21.0,1157313,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862855,2862856,25.0,1157314,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862856,2862857,22.0,1157314,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862857,2862858,21.0,1157314,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862858,2862859,25.0,1157315,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862859,2862860,22.0,1157315,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862860,2862861,21.0,1157315,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862861,2862862,25.0,1157316,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862862,2862863,22.0,1157316,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862863,2862864,21.0,1157316,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862864,2862865,25.0,1157317,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862865,2862866,22.0,1157317,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862866,2862867,21.0,1157317,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862867,2862868,25.0,1157318,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862868,2862869,22.0,1157318,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862869,2862870,21.0,1157318,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862870,2862871,25.0,1157319,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862871,2862872,22.0,1157319,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862872,2862873,21.0,1157319,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862873,2862874,25.0,1157320,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862874,2862875,22.0,1157320,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862875,2862876,21.0,1157320,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862876,2862877,25.0,1157321,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862877,2862878,22.0,1157321,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862878,2862879,21.0,1157321,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862879,2862880,25.0,1157322,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862880,2862881,22.0,1157322,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862881,2862882,21.0,1157322,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862882,2862883,25.0,1157323,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862883,2862884,22.0,1157323,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862884,2862885,21.0,1157323,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862885,2862886,25.0,1157324,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862886,2862887,22.0,1157324,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862887,2862888,21.0,1157324,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862888,2862889,25.0,1157325,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862889,2862890,22.0,1157325,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862890,2862891,21.0,1157325,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862891,2862892,25.0,1157326,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862892,2862893,22.0,1157326,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862893,2862894,21.0,1157326,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862894,2862895,25.0,1157327,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862895,2862896,22.0,1157327,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862896,2862897,21.0,1157327,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862897,2862898,25.0,1157328,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862898,2862899,22.0,1157328,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862899,2862900,21.0,1157328,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862900,2862901,25.0,1157329,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862901,2862902,22.0,1157329,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862902,2862903,21.0,1157329,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862903,2862904,25.0,1157330,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862904,2862905,22.0,1157330,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862905,2862906,21.0,1157330,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862906,2862907,25.0,1157331,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862907,2862908,22.0,1157331,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862908,2862909,21.0,1157331,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862909,2862910,25.0,1157332,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862910,2862911,22.0,1157332,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862911,2862912,21.0,1157332,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862912,2862913,25.0,1157333,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862913,2862914,22.0,1157333,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862914,2862915,21.0,1157333,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862915,2862916,25.0,1157334,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862916,2862917,22.0,1157334,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862917,2862918,21.0,1157334,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862918,2862919,25.0,1157335,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862919,2862920,22.0,1157335,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862920,2862921,21.0,1157335,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862921,2862922,25.0,1157336,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862922,2862923,22.0,1157336,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862923,2862924,21.0,1157336,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862924,2862925,25.0,1157337,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862925,2862926,22.0,1157337,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862926,2862927,21.0,1157337,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862927,2862928,25.0,1157338,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862928,2862929,22.0,1157338,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862929,2862930,21.0,1157338,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862930,2862931,25.0,1157339,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862931,2862932,22.0,1157339,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862932,2862933,21.0,1157339,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862933,2862934,25.0,1157340,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862934,2862935,22.0,1157340,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862935,2862936,21.0,1157340,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862936,2862937,25.0,1157341,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862937,2862938,22.0,1157341,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862938,2862939,21.0,1157341,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862939,2862940,25.0,1157342,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862940,2862941,22.0,1157342,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862941,2862942,21.0,1157342,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862942,2862943,25.0,1157343,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862943,2862944,22.0,1157343,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862944,2862945,21.0,1157343,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862945,2862946,25.0,1157344,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862946,2862947,22.0,1157344,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862947,2862948,21.0,1157344,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862948,2862949,25.0,1157345,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862949,2862950,22.0,1157345,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862950,2862951,21.0,1157345,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862951,2862952,25.0,1157346,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862952,2862953,22.0,1157346,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862953,2862954,21.0,1157346,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862954,2862955,25.0,1157347,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862955,2862956,22.0,1157347,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862956,2862957,21.0,1157347,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862957,2862958,25.0,1157348,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862958,2862959,22.0,1157348,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862959,2862960,21.0,1157348,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862960,2862961,25.0,1157349,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862961,2862962,22.0,1157349,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862962,2862963,21.0,1157349,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862963,2862964,25.0,1157350,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862964,2862965,22.0,1157350,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862965,2862966,21.0,1157350,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862966,2862967,25.0,1157351,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862967,2862968,22.0,1157351,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862968,2862969,21.0,1157351,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862969,2862970,25.0,1157352,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862970,2862971,22.0,1157352,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862971,2862972,21.0,1157352,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862972,2862973,25.0,1157353,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862973,2862974,22.0,1157353,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862974,2862975,21.0,1157353,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862975,2862976,25.0,1157354,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862976,2862977,22.0,1157354,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862977,2862978,21.0,1157354,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862978,2862979,25.0,1157355,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862979,2862980,22.0,1157355,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862980,2862981,21.0,1157355,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862981,2862982,25.0,1157356,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862982,2862983,22.0,1157356,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862983,2862984,21.0,1157356,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862984,2862985,25.0,1157357,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862985,2862986,22.0,1157357,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862986,2862987,21.0,1157357,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862987,2862988,25.0,1157358,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862988,2862989,22.0,1157358,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862989,2862990,21.0,1157358,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862990,2862991,25.0,1157359,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862991,2862992,22.0,1157359,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862992,2862993,21.0,1157359,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2862993,2862994,25.0,1157360,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862994,2862995,22.0,1157360,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862995,2862996,21.0,1157360,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2862996,2862997,25.0,1157361,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862997,2862998,22.0,1157361,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862998,2862999,21.0,1157361,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2862999,2863000,25.0,1157362,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863000,2863001,22.0,1157362,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863001,2863002,21.0,1157362,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863002,2863003,25.0,1157363,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863003,2863004,22.0,1157363,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863004,2863005,21.0,1157363,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863005,2863006,25.0,1157364,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863006,2863007,22.0,1157364,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863007,2863008,21.0,1157364,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863008,2863009,25.0,1157365,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863009,2863010,22.0,1157365,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863010,2863011,21.0,1157365,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863011,2863012,25.0,1157366,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863012,2863013,22.0,1157366,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863013,2863014,21.0,1157366,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863014,2863015,25.0,1157367,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863015,2863016,22.0,1157367,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863016,2863017,21.0,1157367,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863017,2863018,25.0,1157368,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863018,2863019,22.0,1157368,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863019,2863020,21.0,1157368,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863020,2863021,25.0,1157369,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863021,2863022,22.0,1157369,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863022,2863023,21.0,1157369,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863023,2863024,25.0,1157370,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863024,2863025,22.0,1157370,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863025,2863026,21.0,1157370,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863026,2863027,25.0,1157371,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863027,2863028,22.0,1157371,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863028,2863029,21.0,1157371,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863029,2863030,25.0,1157372,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863030,2863031,22.0,1157372,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863031,2863032,21.0,1157372,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863032,2863033,25.0,1157373,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863033,2863034,22.0,1157373,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863034,2863035,21.0,1157373,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863035,2863036,25.0,1157374,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863036,2863037,22.0,1157374,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863037,2863038,21.0,1157374,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863038,2863039,25.0,1157375,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863039,2863040,22.0,1157375,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863040,2863041,21.0,1157375,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22811.0,2148.0 +2863041,2863042,25.0,1157376,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863042,2863043,22.0,1157376,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863043,2863044,21.0,1157376,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22810.0,2148.0 +2863044,2863045,27.0,1157377,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863045,2863046,24.0,1157377,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863046,2863047,27.0,1157378,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863047,2863048,24.0,1157378,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863048,2863049,27.0,1157379,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863049,2863050,24.0,1157379,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863050,2863051,27.0,1157380,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2863051,2863052,24.0,1157380,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2863052,2863053,27.0,1157381,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863053,2863054,24.0,1157381,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863054,2863055,27.0,1157382,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2863055,2863056,24.0,1157382,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2863056,2863057,27.0,1157383,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863057,2863058,24.0,1157383,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863058,2863059,27.0,1157384,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863059,2863060,24.0,1157384,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863060,2863061,27.0,1157385,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863061,2863062,24.0,1157385,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863062,2863063,27.0,1157386,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863063,2863064,24.0,1157386,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863064,2863065,27.0,1157387,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863065,2863066,24.0,1157387,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863066,2863067,27.0,1157388,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863067,2863068,24.0,1157388,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863068,2863069,27.0,1157389,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863069,2863070,24.0,1157389,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863070,2863071,27.0,1157390,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863071,2863072,24.0,1157390,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863072,2863073,27.0,1157391,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863073,2863074,24.0,1157391,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863074,2863075,27.0,1157392,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863075,2863076,24.0,1157392,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863076,2863077,27.0,1157393,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863077,2863078,24.0,1157393,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863078,2863079,27.0,1157394,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863079,2863080,24.0,1157394,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863080,2863081,27.0,1157395,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2863081,2863082,24.0,1157395,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2863082,2863083,27.0,1157396,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863083,2863084,24.0,1157396,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863084,2863085,27.0,1157397,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863085,2863086,24.0,1157397,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863086,2863087,27.0,1157398,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2863087,2863088,24.0,1157398,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2863088,2863089,27.0,1157399,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863089,2863090,24.0,1157399,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863090,2863091,27.0,1157400,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863091,2863092,24.0,1157400,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863092,2863093,27.0,1157401,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863093,2863094,24.0,1157401,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863094,2863095,27.0,1157402,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2863095,2863096,24.0,1157402,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2863096,2863097,27.0,1157403,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2863097,2863098,24.0,1157403,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2863098,2863099,27.0,1157404,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863099,2863100,24.0,1157404,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863100,2863101,27.0,1157405,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2863101,2863102,24.0,1157405,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2863102,2863103,27.0,1157406,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863103,2863104,24.0,1157406,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863104,2863105,27.0,1157407,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863105,2863106,24.0,1157407,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863106,2863107,27.0,1157408,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863107,2863108,24.0,1157408,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863108,2863109,27.0,1157409,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863109,2863110,24.0,1157409,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863110,2863111,27.0,1157410,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863111,2863112,24.0,1157410,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863112,2863113,27.0,1157411,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863113,2863114,24.0,1157411,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863114,2863115,27.0,1157412,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863115,2863116,24.0,1157412,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863116,2863117,27.0,1157413,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863117,2863118,24.0,1157413,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863118,2863119,27.0,1157414,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863119,2863120,24.0,1157414,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863120,2863121,27.0,1157415,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863121,2863122,24.0,1157415,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863122,2863123,27.0,1157416,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863123,2863124,24.0,1157416,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863124,2863125,27.0,1157417,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863125,2863126,24.0,1157417,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863126,2863127,27.0,1157418,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863127,2863128,24.0,1157418,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863128,2863129,27.0,1157419,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863129,2863130,24.0,1157419,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863130,2863131,27.0,1157420,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863131,2863132,24.0,1157420,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863132,2863133,27.0,1157421,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863133,2863134,24.0,1157421,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863134,2863135,27.0,1157422,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863135,2863136,24.0,1157422,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863136,2863137,27.0,1157423,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863137,2863138,24.0,1157423,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863138,2863139,27.0,1157424,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2863139,2863140,24.0,1157424,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2863140,2863141,27.0,1157425,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863141,2863142,24.0,1157425,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863142,2863143,27.0,1157426,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22810.0,2148.0 +2863143,2863144,24.0,1157426,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22810.0,2148.0 +2863144,2863145,27.0,1157427,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22811.0,2148.0 +2863145,2863146,24.0,1157427,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22811.0,2148.0 +2863146,2863147,19.0,1157428,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22812.0,2149.0 +2863147,2863148,50.0,1157428,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22812.0,2149.0 +2863148,2863149,19.0,1157429,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22812.0,2149.0 +2863149,2863150,50.0,1157429,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22812.0,2149.0 +2863150,2863151,19.0,1157430,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863151,2863152,50.0,1157430,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863152,2863153,19.0,1157431,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22810.0,2148.0 +2863153,2863154,50.0,1157431,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22810.0,2148.0 +2863154,2863155,19.0,1157432,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863155,2863156,50.0,1157432,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863156,2863157,19.0,1157433,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22810.0,2148.0 +2863157,2863158,50.0,1157433,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22810.0,2148.0 +2863158,2863159,19.0,1157434,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863159,2863160,50.0,1157434,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863160,2863161,19.0,1157435,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22810.0,2148.0 +2863161,2863162,50.0,1157435,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22810.0,2148.0 +2863162,2863163,19.0,1157436,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22810.0,2148.0 +2863163,2863164,50.0,1157436,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22810.0,2148.0 +2863164,2863165,19.0,1157437,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22812.0,2149.0 +2863165,2863166,50.0,1157437,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22812.0,2149.0 +2863166,2863167,19.0,1157438,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863167,2863168,50.0,1157438,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863168,2863169,19.0,1157439,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863169,2863170,50.0,1157439,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863170,2863171,19.0,1157440,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863171,2863172,50.0,1157440,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863172,2863173,19.0,1157441,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863173,2863174,50.0,1157441,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863174,2863175,19.0,1157442,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22812.0,2149.0 +2863175,2863176,50.0,1157442,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22812.0,2149.0 +2863176,2863177,19.0,1157443,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22810.0,2148.0 +2863177,2863178,50.0,1157443,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22810.0,2148.0 +2863178,2863179,19.0,1157444,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22810.0,2148.0 +2863179,2863180,50.0,1157444,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22810.0,2148.0 +2863180,2863181,19.0,1157445,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863181,2863182,50.0,1157445,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863182,2863183,19.0,1157446,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22810.0,2148.0 +2863183,2863184,50.0,1157446,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22810.0,2148.0 +2863184,2863185,19.0,1157447,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863185,2863186,50.0,1157447,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863186,2863187,19.0,1157448,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22812.0,2149.0 +2863187,2863188,50.0,1157448,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22812.0,2149.0 +2863188,2863189,19.0,1157449,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22812.0,2149.0 +2863189,2863190,50.0,1157449,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22812.0,2149.0 +2863190,2863191,19.0,1157450,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863191,2863192,50.0,1157450,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863192,2863193,19.0,1157451,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22812.0,2149.0 +2863193,2863194,50.0,1157451,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22812.0,2149.0 +2863194,2863195,19.0,1157452,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22812.0,2149.0 +2863195,2863196,50.0,1157452,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22812.0,2149.0 +2863196,2863197,19.0,1157453,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863197,2863198,50.0,1157453,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863198,2863199,19.0,1157454,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863199,2863200,50.0,1157454,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863200,2863201,19.0,1157455,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22810.0,2148.0 +2863201,2863202,50.0,1157455,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22810.0,2148.0 +2863202,2863203,19.0,1157456,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863203,2863204,50.0,1157456,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863204,2863205,19.0,1157457,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863205,2863206,50.0,1157457,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863206,2863207,19.0,1157458,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22812.0,2149.0 +2863207,2863208,50.0,1157458,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22812.0,2149.0 +2863208,2863209,19.0,1157459,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22810.0,2148.0 +2863209,2863210,50.0,1157459,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22810.0,2148.0 +2863210,2863211,19.0,1157460,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863211,2863212,50.0,1157460,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22811.0,2148.0 +2863212,2863213,24.0,1157461,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22812.0,2149.0 +2863213,2863214,24.0,1157462,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22810.0,2148.0 +2863214,2863215,24.0,1157463,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22810.0,2148.0 +2863215,2863216,24.0,1157464,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22812.0,2149.0 +2863216,2863217,24.0,1157465,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22811.0,2148.0 +2863217,2863218,24.0,1157466,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22812.0,2149.0 +2863218,2863219,24.0,1157467,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22810.0,2148.0 +2863219,2863220,24.0,1157468,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22811.0,2148.0 +2863220,2863221,24.0,1157469,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22812.0,2149.0 +2863221,2863222,24.0,1157470,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2863222,2863223,20.0,1157471,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2863223,2863224,24.0,1157472,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2863224,2863225,24.0,1157473,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2863225,2863226,24.0,1157474,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863226,2863227,24.0,1157475,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863227,2863228,20.0,1157476,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22811.0,2148.0 +2863228,2863229,20.0,1157477,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22811.0,2148.0 +2863229,2863230,24.0,1157478,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2863230,2863231,24.0,1157479,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863231,2863232,24.0,1157480,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863232,2863233,24.0,1157481,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863233,2863234,20.0,1157482,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22811.0,2148.0 +2863234,2863235,20.0,1157483,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22810.0,2148.0 +2863235,2863236,20.0,1157484,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22810.0,2148.0 +2863236,2863237,20.0,1157485,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22811.0,2148.0 +2863237,2863238,20.0,1157486,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22810.0,2148.0 +2863238,2863239,24.0,1157487,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863239,2863240,24.0,1157488,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863240,2863241,24.0,1157489,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2863241,2863242,24.0,1157490,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863242,2863243,24.0,1157491,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863243,2863244,24.0,1157492,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863244,2863245,24.0,1157493,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863245,2863246,20.0,1157494,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2863246,2863247,20.0,1157495,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22811.0,2148.0 +2863247,2863248,20.0,1157496,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22811.0,2148.0 +2863248,2863249,24.0,1157497,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863249,2863250,20.0,1157498,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22811.0,2148.0 +2863250,2863251,20.0,1157499,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22811.0,2148.0 +2863251,2863252,20.0,1157500,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2863252,2863253,24.0,1157501,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863253,2863254,24.0,1157502,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863254,2863255,20.0,1157503,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2863255,2863256,24.0,1157504,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2863256,2863257,20.0,1157505,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22810.0,2148.0 +2863257,2863258,20.0,1157506,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22810.0,2148.0 +2863258,2863259,20.0,1157507,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22810.0,2148.0 +2863259,2863260,20.0,1157508,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22810.0,2148.0 +2863260,2863261,24.0,1157509,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863261,2863262,24.0,1157510,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863262,2863263,24.0,1157511,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2863263,2863264,24.0,1157512,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863264,2863265,24.0,1157513,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863265,2863266,24.0,1157514,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863266,2863267,24.0,1157515,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2863267,2863268,20.0,1157516,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2863268,2863269,24.0,1157517,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863269,2863270,24.0,1157518,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863270,2863271,20.0,1157519,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2863271,2863272,24.0,1157520,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22810.0,2148.0 +2863272,2863273,20.0,1157521,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2863273,2863274,20.0,1157522,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2863274,2863275,20.0,1157523,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22810.0,2148.0 +2863275,2863276,20.0,1157524,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2863276,2863277,20.0,1157525,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22810.0,2148.0 +2863277,2863278,20.0,1157526,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2863278,2863279,20.0,1157527,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22811.0,2148.0 +2863279,2863280,24.0,1157528,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863280,2863281,24.0,1157529,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863281,2863282,20.0,1157530,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22811.0,2148.0 +2863282,2863283,24.0,1157531,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22811.0,2148.0 +2863283,2863284,20.0,1157532,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22811.0,2148.0 +2863284,2863285,23.0,1157533,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2863285,2863286,24.0,1157534,1,1,0,2,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22811.0,2148.0 +2863286,2863287,20.0,1157535,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22811.0,2148.0 +2863287,2863288,20.0,1157536,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22812.0,2149.0 +2863288,2863289,20.0,1157537,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22811.0,2148.0 +2863289,2863290,20.0,1157538,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22812.0,2149.0 +2863290,2863291,20.0,1157539,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22810.0,2148.0 +2863291,2863292,20.0,1157540,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22810.0,2148.0 +2863292,2863293,20.0,1157541,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22811.0,2148.0 +2863293,2863294,20.0,1157542,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22812.0,2149.0 +2863294,2863295,20.0,1157543,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22810.0,2148.0 +2863295,2863296,23.0,1157544,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2863296,2863297,26.0,1157544,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2863297,2863298,23.0,1157544,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2863298,2863299,23.0,1157544,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2863299,2863300,23.0,1157545,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863300,2863301,26.0,1157545,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863301,2863302,23.0,1157545,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863302,2863303,23.0,1157545,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863303,2863304,23.0,1157546,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863304,2863305,26.0,1157546,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863305,2863306,23.0,1157546,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863306,2863307,23.0,1157546,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863307,2863308,23.0,1157547,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2863308,2863309,26.0,1157547,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2863309,2863310,23.0,1157547,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2863310,2863311,23.0,1157547,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2863311,2863312,23.0,1157548,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863312,2863313,26.0,1157548,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863313,2863314,23.0,1157548,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863314,2863315,23.0,1157548,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863315,2863316,23.0,1157549,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863316,2863317,26.0,1157549,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863317,2863318,23.0,1157549,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863318,2863319,23.0,1157549,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863319,2863320,23.0,1157550,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863320,2863321,26.0,1157550,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863321,2863322,23.0,1157550,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863322,2863323,23.0,1157550,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863323,2863324,23.0,1157551,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863324,2863325,26.0,1157551,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863325,2863326,23.0,1157551,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863326,2863327,23.0,1157551,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863327,2863328,23.0,1157552,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863328,2863329,26.0,1157552,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863329,2863330,23.0,1157552,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863330,2863331,23.0,1157552,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863331,2863332,23.0,1157553,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863332,2863333,26.0,1157553,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863333,2863334,23.0,1157553,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863334,2863335,23.0,1157553,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863335,2863336,23.0,1157554,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863336,2863337,26.0,1157554,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863337,2863338,23.0,1157554,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863338,2863339,23.0,1157554,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863339,2863340,23.0,1157555,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863340,2863341,26.0,1157555,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863341,2863342,23.0,1157555,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863342,2863343,23.0,1157555,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863343,2863344,23.0,1157556,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863344,2863345,26.0,1157556,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863345,2863346,23.0,1157556,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863346,2863347,23.0,1157556,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863347,2863348,23.0,1157557,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863348,2863349,26.0,1157557,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863349,2863350,23.0,1157557,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863350,2863351,23.0,1157557,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863351,2863352,23.0,1157558,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863352,2863353,26.0,1157558,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863353,2863354,23.0,1157558,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863354,2863355,23.0,1157558,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863355,2863356,23.0,1157559,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2863356,2863357,26.0,1157559,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2863357,2863358,23.0,1157559,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2863358,2863359,23.0,1157559,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2863359,2863360,23.0,1157560,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863360,2863361,26.0,1157560,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863361,2863362,23.0,1157560,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863362,2863363,23.0,1157560,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863363,2863364,23.0,1157561,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2863364,2863365,26.0,1157561,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2863365,2863366,23.0,1157561,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2863366,2863367,23.0,1157561,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2863367,2863368,23.0,1157562,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863368,2863369,26.0,1157562,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863369,2863370,23.0,1157562,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863370,2863371,23.0,1157562,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863371,2863372,23.0,1157563,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2863372,2863373,26.0,1157563,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2863373,2863374,23.0,1157563,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2863374,2863375,23.0,1157563,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2863375,2863376,23.0,1157564,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2863376,2863377,26.0,1157564,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2863377,2863378,23.0,1157564,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2863378,2863379,23.0,1157564,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2863379,2863380,23.0,1157565,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863380,2863381,26.0,1157565,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863381,2863382,23.0,1157565,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863382,2863383,23.0,1157565,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863383,2863384,23.0,1157566,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2863384,2863385,26.0,1157566,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2863385,2863386,23.0,1157566,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2863386,2863387,23.0,1157566,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2863387,2863388,23.0,1157567,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863388,2863389,26.0,1157567,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863389,2863390,23.0,1157567,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863390,2863391,23.0,1157567,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863391,2863392,23.0,1157568,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2863392,2863393,26.0,1157568,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2863393,2863394,23.0,1157568,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2863394,2863395,23.0,1157568,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2863395,2863396,23.0,1157569,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863396,2863397,26.0,1157569,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863397,2863398,23.0,1157569,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863398,2863399,23.0,1157569,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863399,2863400,23.0,1157570,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863400,2863401,26.0,1157570,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863401,2863402,23.0,1157570,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863402,2863403,23.0,1157570,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863403,2863404,23.0,1157571,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2863404,2863405,26.0,1157571,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2863405,2863406,23.0,1157571,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2863406,2863407,23.0,1157571,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2863407,2863408,23.0,1157572,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863408,2863409,26.0,1157572,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863409,2863410,23.0,1157572,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863410,2863411,23.0,1157572,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863411,2863412,23.0,1157573,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863412,2863413,26.0,1157573,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863413,2863414,23.0,1157573,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863414,2863415,23.0,1157573,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863415,2863416,23.0,1157574,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863416,2863417,26.0,1157574,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863417,2863418,23.0,1157574,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863418,2863419,23.0,1157574,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863419,2863420,23.0,1157575,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863420,2863421,26.0,1157575,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863421,2863422,23.0,1157575,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863422,2863423,23.0,1157575,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863423,2863424,23.0,1157576,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863424,2863425,26.0,1157576,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863425,2863426,23.0,1157576,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863426,2863427,23.0,1157576,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863427,2863428,23.0,1157577,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863428,2863429,26.0,1157577,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863429,2863430,23.0,1157577,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863430,2863431,23.0,1157577,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863431,2863432,23.0,1157578,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863432,2863433,26.0,1157578,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863433,2863434,23.0,1157578,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863434,2863435,23.0,1157578,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863435,2863436,23.0,1157579,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863436,2863437,26.0,1157579,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863437,2863438,23.0,1157579,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863438,2863439,23.0,1157579,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863439,2863440,23.0,1157580,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863440,2863441,26.0,1157580,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863441,2863442,23.0,1157580,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863442,2863443,23.0,1157580,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863443,2863444,23.0,1157581,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863444,2863445,26.0,1157581,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863445,2863446,23.0,1157581,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863446,2863447,23.0,1157581,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863447,2863448,23.0,1157582,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863448,2863449,26.0,1157582,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863449,2863450,23.0,1157582,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863450,2863451,23.0,1157582,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863451,2863452,23.0,1157583,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22810.0,2148.0 +2863452,2863453,26.0,1157583,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +2863453,2863454,23.0,1157583,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22810.0,2148.0 +2863454,2863455,23.0,1157583,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22810.0,2148.0 +2863455,2863456,23.0,1157584,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863456,2863457,26.0,1157584,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863457,2863458,23.0,1157584,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863458,2863459,23.0,1157584,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863459,2863460,23.0,1157585,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22811.0,2148.0 +2863460,2863461,26.0,1157585,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863461,2863462,23.0,1157585,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22811.0,2148.0 +2863462,2863463,23.0,1157585,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22811.0,2148.0 +2863463,2863464,24.0,1157586,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863464,2863465,25.0,1157586,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863465,2863466,24.0,1157587,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863466,2863467,25.0,1157587,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863467,2863468,24.0,1157588,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863468,2863469,25.0,1157588,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863469,2863470,24.0,1157589,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22812.0,2149.0 +2863470,2863471,25.0,1157589,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22812.0,2149.0 +2863471,2863472,24.0,1157590,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863472,2863473,25.0,1157590,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863473,2863474,24.0,1157591,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22811.0,2148.0 +2863474,2863475,25.0,1157591,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22811.0,2148.0 +2863475,2863476,24.0,1157592,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863476,2863477,25.0,1157592,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863477,2863478,24.0,1157593,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863478,2863479,25.0,1157593,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863479,2863480,24.0,1157594,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863480,2863481,25.0,1157594,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863481,2863482,24.0,1157595,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863482,2863483,25.0,1157595,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863483,2863484,24.0,1157596,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22811.0,2148.0 +2863484,2863485,25.0,1157596,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22811.0,2148.0 +2863485,2863486,24.0,1157597,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863486,2863487,25.0,1157597,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863487,2863488,24.0,1157598,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863488,2863489,25.0,1157598,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863489,2863490,24.0,1157599,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863490,2863491,25.0,1157599,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863491,2863492,24.0,1157600,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22810.0,2148.0 +2863492,2863493,25.0,1157600,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22810.0,2148.0 +2863493,2863494,24.0,1157601,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22811.0,2148.0 +2863494,2863495,25.0,1157601,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22811.0,2148.0 +2863495,2863496,24.0,1157602,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863496,2863497,25.0,1157602,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863497,2863498,24.0,1157603,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863498,2863499,25.0,1157603,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863499,2863500,24.0,1157604,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863500,2863501,25.0,1157604,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863501,2863502,24.0,1157605,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863502,2863503,25.0,1157605,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863503,2863504,24.0,1157606,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863504,2863505,25.0,1157606,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863505,2863506,24.0,1157607,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863506,2863507,25.0,1157607,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863507,2863508,24.0,1157608,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863508,2863509,25.0,1157608,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863509,2863510,24.0,1157609,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863510,2863511,25.0,1157609,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863511,2863512,24.0,1157610,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863512,2863513,25.0,1157610,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863513,2863514,24.0,1157611,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863514,2863515,25.0,1157611,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863515,2863516,24.0,1157612,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863516,2863517,25.0,1157612,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863517,2863518,24.0,1157613,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863518,2863519,25.0,1157613,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863519,2863520,24.0,1157614,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863520,2863521,25.0,1157614,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863521,2863522,24.0,1157615,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863522,2863523,25.0,1157615,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863523,2863524,24.0,1157616,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863524,2863525,25.0,1157616,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863525,2863526,24.0,1157617,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863526,2863527,25.0,1157617,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863527,2863528,24.0,1157618,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863528,2863529,25.0,1157618,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863529,2863530,24.0,1157619,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863530,2863531,25.0,1157619,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863531,2863532,24.0,1157620,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863532,2863533,25.0,1157620,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863533,2863534,24.0,1157621,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863534,2863535,25.0,1157621,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863535,2863536,24.0,1157622,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863536,2863537,25.0,1157622,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863537,2863538,24.0,1157623,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863538,2863539,25.0,1157623,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863539,2863540,24.0,1157624,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863540,2863541,25.0,1157624,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863541,2863542,24.0,1157625,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863542,2863543,25.0,1157625,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863543,2863544,24.0,1157626,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863544,2863545,25.0,1157626,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863545,2863546,24.0,1157627,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863546,2863547,25.0,1157627,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863547,2863548,24.0,1157628,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863548,2863549,25.0,1157628,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863549,2863550,24.0,1157629,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863550,2863551,25.0,1157629,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863551,2863552,24.0,1157630,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863552,2863553,25.0,1157630,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863553,2863554,24.0,1157631,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863554,2863555,25.0,1157631,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863555,2863556,24.0,1157632,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863556,2863557,25.0,1157632,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863557,2863558,24.0,1157633,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863558,2863559,25.0,1157633,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863559,2863560,24.0,1157634,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863560,2863561,25.0,1157634,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863561,2863562,24.0,1157635,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863562,2863563,25.0,1157635,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863563,2863564,24.0,1157636,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863564,2863565,25.0,1157636,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863565,2863566,24.0,1157637,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863566,2863567,25.0,1157637,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863567,2863568,24.0,1157638,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863568,2863569,25.0,1157638,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863569,2863570,24.0,1157639,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863570,2863571,25.0,1157639,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863571,2863572,24.0,1157640,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863572,2863573,25.0,1157640,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863573,2863574,24.0,1157641,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863574,2863575,25.0,1157641,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863575,2863576,24.0,1157642,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863576,2863577,25.0,1157642,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863577,2863578,24.0,1157643,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863578,2863579,25.0,1157643,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863579,2863580,24.0,1157644,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863580,2863581,25.0,1157644,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863581,2863582,24.0,1157645,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863582,2863583,25.0,1157645,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863583,2863584,24.0,1157646,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863584,2863585,25.0,1157646,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863585,2863586,24.0,1157647,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863586,2863587,25.0,1157647,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863587,2863588,24.0,1157648,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863588,2863589,25.0,1157648,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863589,2863590,24.0,1157649,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863590,2863591,25.0,1157649,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863591,2863592,24.0,1157650,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863592,2863593,25.0,1157650,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863593,2863594,24.0,1157651,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863594,2863595,25.0,1157651,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863595,2863596,24.0,1157652,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863596,2863597,25.0,1157652,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863597,2863598,24.0,1157653,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863598,2863599,25.0,1157653,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863599,2863600,24.0,1157654,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863600,2863601,25.0,1157654,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863601,2863602,24.0,1157655,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863602,2863603,25.0,1157655,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863603,2863604,23.0,1157656,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22810.0,2148.0 +2863604,2863605,26.0,1157656,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22810.0,2148.0 +2863605,2863606,23.0,1157657,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22810.0,2148.0 +2863606,2863607,26.0,1157657,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863607,2863608,23.0,1157658,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22810.0,2148.0 +2863608,2863609,26.0,1157658,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863609,2863610,23.0,1157659,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22811.0,2148.0 +2863610,2863611,26.0,1157659,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863611,2863612,23.0,1157660,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22811.0,2148.0 +2863612,2863613,26.0,1157660,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863613,2863614,21.0,1157661,1,2,0,1,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2863614,2863615,21.0,1157662,1,2,0,1,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2863615,2863616,22.0,1157663,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863616,2863617,22.0,1157664,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863617,2863618,21.0,1157665,1,2,0,1,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22811.0,2148.0 +2863618,2863619,22.0,1157666,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22810.0,2148.0 +2863619,2863620,22.0,1157667,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22811.0,2148.0 +2863620,2863621,23.0,1157668,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863621,2863622,21.0,1157669,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22810.0,2148.0 +2863622,2863623,21.0,1157670,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +2863623,2863624,21.0,1157671,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +2863624,2863625,21.0,1157672,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22811.0,2148.0 +2863625,2863626,22.0,1157673,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863626,2863627,22.0,1157674,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863627,2863628,23.0,1157675,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863628,2863629,23.0,1157676,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863629,2863630,21.0,1157677,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22811.0,2148.0 +2863630,2863631,21.0,1157678,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2863631,2863632,22.0,1157679,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863632,2863633,23.0,1157680,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22810.0,2148.0 +2863633,2863634,23.0,1157681,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22811.0,2148.0 +2863634,2863635,23.0,1157682,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863635,2863636,23.0,1157683,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2863636,2863637,21.0,1157684,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22810.0,2148.0 +2863637,2863638,24.0,1157685,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863638,2863639,24.0,1157686,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863639,2863640,23.0,1157687,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863640,2863641,22.0,1157688,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863641,2863642,23.0,1157689,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863642,2863643,21.0,1157690,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2863643,2863644,21.0,1157691,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2863644,2863645,21.0,1157692,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22811.0,2148.0 +2863645,2863646,21.0,1157693,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22810.0,2148.0 +2863646,2863647,22.0,1157694,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863647,2863648,24.0,1157695,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863648,2863649,21.0,1157696,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22810.0,2148.0 +2863649,2863650,24.0,1157697,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863650,2863651,22.0,1157698,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863651,2863652,23.0,1157699,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2863652,2863653,21.0,1157700,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +2863653,2863654,23.0,1157701,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22810.0,2148.0 +2863654,2863655,21.0,1157702,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22811.0,2148.0 +2863655,2863656,22.0,1157703,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863656,2863657,23.0,1157704,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863657,2863658,23.0,1157705,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863658,2863659,23.0,1157706,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22810.0,2148.0 +2863659,2863660,23.0,1157707,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2863660,2863661,22.0,1157708,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863661,2863662,22.0,1157709,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863662,2863663,23.0,1157710,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863663,2863664,23.0,1157711,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2863664,2863665,21.0,1157712,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22811.0,2148.0 +2863665,2863666,21.0,1157713,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22810.0,2148.0 +2863666,2863667,23.0,1157714,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863667,2863668,22.0,1157715,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863668,2863669,21.0,1157716,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22811.0,2148.0 +2863669,2863670,21.0,1157717,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22811.0,2148.0 +2863670,2863671,22.0,1157718,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863671,2863672,21.0,1157719,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2863672,2863673,23.0,1157720,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863673,2863674,23.0,1157721,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863674,2863675,21.0,1157722,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22811.0,2148.0 +2863675,2863676,23.0,1157723,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22811.0,2148.0 +2863676,2863677,24.0,1157724,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863677,2863678,22.0,1157725,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863678,2863679,23.0,1157726,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22810.0,2148.0 +2863679,2863680,23.0,1157727,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22811.0,2148.0 +2863680,2863681,21.0,1157728,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22811.0,2148.0 +2863681,2863682,23.0,1157729,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863682,2863683,24.0,1157730,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863683,2863684,23.0,1157731,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863684,2863685,21.0,1157732,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22811.0,2148.0 +2863685,2863686,21.0,1157733,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2863686,2863687,22.0,1157734,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863687,2863688,21.0,1157735,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +2863688,2863689,21.0,1157736,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +2863689,2863690,23.0,1157737,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22811.0,2148.0 +2863690,2863691,21.0,1157738,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22810.0,2148.0 +2863691,2863692,22.0,1157739,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863692,2863693,23.0,1157740,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863693,2863694,23.0,1157741,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +2863694,2863695,23.0,1157742,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2863695,2863696,23.0,1157743,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22810.0,2148.0 +2863696,2863697,21.0,1157744,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +2863697,2863698,23.0,1157745,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22811.0,2148.0 +2863698,2863699,24.0,1157746,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2863699,2863700,24.0,1157747,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22810.0,2148.0 +2863700,2863701,24.0,1157748,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22810.0,2148.0 +2863701,2863702,24.0,1157749,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22810.0,2148.0 +2863702,2863703,24.0,1157750,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22811.0,2148.0 +2863703,2863704,60.0,1157751,1,1,0,1,6.0,8.0,6.0,-9.0,2.0,23,2.0,22814.0,2150.0 +2863704,2863705,62.0,1157751,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863705,2863706,21.0,1157751,3,1,2,1,1.0,50.0,1.0,-9.0,4.0,3272,3.0,22814.0,2150.0 +2863706,2863707,47.0,1157752,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863707,2863708,52.0,1157752,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863708,2863709,23.0,1157752,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863709,2863710,47.0,1157753,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2863710,2863711,52.0,1157753,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2863711,2863712,23.0,1157753,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2863712,2863713,47.0,1157754,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2863713,2863714,52.0,1157754,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2863714,2863715,23.0,1157754,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2863715,2863716,47.0,1157755,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863716,2863717,52.0,1157755,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863717,2863718,23.0,1157755,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863718,2863719,47.0,1157756,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863719,2863720,52.0,1157756,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863720,2863721,23.0,1157756,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863721,2863722,47.0,1157757,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2863722,2863723,52.0,1157757,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2863723,2863724,23.0,1157757,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2863724,2863725,47.0,1157758,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863725,2863726,52.0,1157758,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863726,2863727,23.0,1157758,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863727,2863728,47.0,1157759,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863728,2863729,52.0,1157759,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863729,2863730,23.0,1157759,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863730,2863731,47.0,1157760,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863731,2863732,52.0,1157760,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863732,2863733,23.0,1157760,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863733,2863734,47.0,1157761,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2863734,2863735,52.0,1157761,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2863735,2863736,23.0,1157761,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2863736,2863737,47.0,1157762,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22816.0,2150.0 +2863737,2863738,52.0,1157762,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22816.0,2150.0 +2863738,2863739,23.0,1157762,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22816.0,2150.0 +2863739,2863740,47.0,1157763,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863740,2863741,52.0,1157763,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863741,2863742,23.0,1157763,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863742,2863743,47.0,1157764,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22816.0,2150.0 +2863743,2863744,52.0,1157764,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22816.0,2150.0 +2863744,2863745,23.0,1157764,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22816.0,2150.0 +2863745,2863746,47.0,1157765,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863746,2863747,52.0,1157765,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863747,2863748,23.0,1157765,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863748,2863749,47.0,1157766,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2863749,2863750,52.0,1157766,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2863750,2863751,23.0,1157766,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2863751,2863752,47.0,1157767,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863752,2863753,52.0,1157767,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863753,2863754,23.0,1157767,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863754,2863755,47.0,1157768,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2863755,2863756,52.0,1157768,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2863756,2863757,23.0,1157768,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2863757,2863758,47.0,1157769,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863758,2863759,52.0,1157769,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863759,2863760,23.0,1157769,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22814.0,2150.0 +2863760,2863761,47.0,1157770,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863761,2863762,52.0,1157770,2,1,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863762,2863763,23.0,1157770,3,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22813.0,2150.0 +2863763,2863764,25.0,1157771,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863764,2863765,22.0,1157771,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863765,2863766,21.0,1157771,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863766,2863767,25.0,1157772,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863767,2863768,22.0,1157772,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863768,2863769,21.0,1157772,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863769,2863770,25.0,1157773,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863770,2863771,22.0,1157773,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863771,2863772,21.0,1157773,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863772,2863773,25.0,1157774,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863773,2863774,22.0,1157774,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863774,2863775,21.0,1157774,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863775,2863776,25.0,1157775,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863776,2863777,22.0,1157775,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863777,2863778,21.0,1157775,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863778,2863779,25.0,1157776,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863779,2863780,22.0,1157776,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863780,2863781,21.0,1157776,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863781,2863782,25.0,1157777,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863782,2863783,22.0,1157777,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863783,2863784,21.0,1157777,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863784,2863785,25.0,1157778,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863785,2863786,22.0,1157778,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863786,2863787,21.0,1157778,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863787,2863788,25.0,1157779,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863788,2863789,22.0,1157779,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863789,2863790,21.0,1157779,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863790,2863791,25.0,1157780,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863791,2863792,22.0,1157780,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863792,2863793,21.0,1157780,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863793,2863794,25.0,1157781,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863794,2863795,22.0,1157781,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863795,2863796,21.0,1157781,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863796,2863797,25.0,1157782,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863797,2863798,22.0,1157782,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863798,2863799,21.0,1157782,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863799,2863800,25.0,1157783,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863800,2863801,22.0,1157783,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863801,2863802,21.0,1157783,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863802,2863803,25.0,1157784,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863803,2863804,22.0,1157784,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863804,2863805,21.0,1157784,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863805,2863806,25.0,1157785,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863806,2863807,22.0,1157785,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863807,2863808,21.0,1157785,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863808,2863809,25.0,1157786,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863809,2863810,22.0,1157786,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863810,2863811,21.0,1157786,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863811,2863812,25.0,1157787,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863812,2863813,22.0,1157787,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863813,2863814,21.0,1157787,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863814,2863815,25.0,1157788,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863815,2863816,22.0,1157788,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863816,2863817,21.0,1157788,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863817,2863818,25.0,1157789,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863818,2863819,22.0,1157789,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863819,2863820,21.0,1157789,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863820,2863821,25.0,1157790,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863821,2863822,22.0,1157790,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863822,2863823,21.0,1157790,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863823,2863824,25.0,1157791,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863824,2863825,22.0,1157791,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863825,2863826,21.0,1157791,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863826,2863827,25.0,1157792,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863827,2863828,22.0,1157792,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863828,2863829,21.0,1157792,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863829,2863830,25.0,1157793,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863830,2863831,22.0,1157793,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863831,2863832,21.0,1157793,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863832,2863833,25.0,1157794,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863833,2863834,22.0,1157794,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863834,2863835,21.0,1157794,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863835,2863836,25.0,1157795,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863836,2863837,22.0,1157795,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863837,2863838,21.0,1157795,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863838,2863839,25.0,1157796,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863839,2863840,22.0,1157796,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863840,2863841,21.0,1157796,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863841,2863842,25.0,1157797,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863842,2863843,22.0,1157797,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863843,2863844,21.0,1157797,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863844,2863845,25.0,1157798,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863845,2863846,22.0,1157798,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863846,2863847,21.0,1157798,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863847,2863848,25.0,1157799,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863848,2863849,22.0,1157799,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863849,2863850,21.0,1157799,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863850,2863851,25.0,1157800,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863851,2863852,22.0,1157800,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863852,2863853,21.0,1157800,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863853,2863854,25.0,1157801,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863854,2863855,22.0,1157801,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863855,2863856,21.0,1157801,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863856,2863857,25.0,1157802,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863857,2863858,22.0,1157802,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863858,2863859,21.0,1157802,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863859,2863860,25.0,1157803,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863860,2863861,22.0,1157803,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863861,2863862,21.0,1157803,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863862,2863863,25.0,1157804,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863863,2863864,22.0,1157804,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863864,2863865,21.0,1157804,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863865,2863866,25.0,1157805,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863866,2863867,22.0,1157805,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863867,2863868,21.0,1157805,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863868,2863869,25.0,1157806,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863869,2863870,22.0,1157806,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863870,2863871,21.0,1157806,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863871,2863872,25.0,1157807,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863872,2863873,22.0,1157807,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863873,2863874,21.0,1157807,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863874,2863875,25.0,1157808,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863875,2863876,22.0,1157808,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863876,2863877,21.0,1157808,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863877,2863878,25.0,1157809,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863878,2863879,22.0,1157809,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863879,2863880,21.0,1157809,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863880,2863881,25.0,1157810,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863881,2863882,22.0,1157810,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863882,2863883,21.0,1157810,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863883,2863884,25.0,1157811,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863884,2863885,22.0,1157811,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863885,2863886,21.0,1157811,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863886,2863887,25.0,1157812,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863887,2863888,22.0,1157812,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863888,2863889,21.0,1157812,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863889,2863890,25.0,1157813,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863890,2863891,22.0,1157813,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863891,2863892,21.0,1157813,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863892,2863893,25.0,1157814,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863893,2863894,22.0,1157814,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863894,2863895,21.0,1157814,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863895,2863896,25.0,1157815,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863896,2863897,22.0,1157815,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863897,2863898,21.0,1157815,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863898,2863899,25.0,1157816,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863899,2863900,22.0,1157816,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863900,2863901,21.0,1157816,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863901,2863902,25.0,1157817,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863902,2863903,22.0,1157817,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863903,2863904,21.0,1157817,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863904,2863905,25.0,1157818,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863905,2863906,22.0,1157818,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863906,2863907,21.0,1157818,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863907,2863908,25.0,1157819,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863908,2863909,22.0,1157819,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863909,2863910,21.0,1157819,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863910,2863911,25.0,1157820,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863911,2863912,22.0,1157820,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863912,2863913,21.0,1157820,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863913,2863914,25.0,1157821,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863914,2863915,22.0,1157821,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863915,2863916,21.0,1157821,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863916,2863917,25.0,1157822,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863917,2863918,22.0,1157822,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863918,2863919,21.0,1157822,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863919,2863920,25.0,1157823,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863920,2863921,22.0,1157823,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863921,2863922,21.0,1157823,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863922,2863923,25.0,1157824,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863923,2863924,22.0,1157824,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863924,2863925,21.0,1157824,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863925,2863926,25.0,1157825,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863926,2863927,22.0,1157825,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863927,2863928,21.0,1157825,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863928,2863929,25.0,1157826,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863929,2863930,22.0,1157826,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863930,2863931,21.0,1157826,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863931,2863932,25.0,1157827,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863932,2863933,22.0,1157827,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863933,2863934,21.0,1157827,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863934,2863935,25.0,1157828,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863935,2863936,22.0,1157828,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863936,2863937,21.0,1157828,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863937,2863938,25.0,1157829,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863938,2863939,22.0,1157829,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863939,2863940,21.0,1157829,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863940,2863941,25.0,1157830,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863941,2863942,22.0,1157830,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863942,2863943,21.0,1157830,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863943,2863944,25.0,1157831,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863944,2863945,22.0,1157831,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863945,2863946,21.0,1157831,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863946,2863947,25.0,1157832,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863947,2863948,22.0,1157832,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863948,2863949,21.0,1157832,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863949,2863950,25.0,1157833,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863950,2863951,22.0,1157833,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863951,2863952,21.0,1157833,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2863952,2863953,25.0,1157834,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863953,2863954,22.0,1157834,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863954,2863955,21.0,1157834,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863955,2863956,25.0,1157835,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863956,2863957,22.0,1157835,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863957,2863958,21.0,1157835,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863958,2863959,25.0,1157836,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863959,2863960,22.0,1157836,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863960,2863961,21.0,1157836,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2863961,2863962,25.0,1157837,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863962,2863963,22.0,1157837,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863963,2863964,21.0,1157837,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863964,2863965,25.0,1157838,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863965,2863966,22.0,1157838,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863966,2863967,21.0,1157838,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863967,2863968,25.0,1157839,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863968,2863969,22.0,1157839,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863969,2863970,21.0,1157839,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863970,2863971,25.0,1157840,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863971,2863972,22.0,1157840,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863972,2863973,21.0,1157840,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863973,2863974,25.0,1157841,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863974,2863975,22.0,1157841,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863975,2863976,21.0,1157841,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863976,2863977,25.0,1157842,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863977,2863978,22.0,1157842,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863978,2863979,21.0,1157842,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863979,2863980,25.0,1157843,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863980,2863981,22.0,1157843,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863981,2863982,21.0,1157843,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863982,2863983,25.0,1157844,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863983,2863984,22.0,1157844,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863984,2863985,21.0,1157844,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863985,2863986,25.0,1157845,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863986,2863987,22.0,1157845,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863987,2863988,21.0,1157845,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863988,2863989,25.0,1157846,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863989,2863990,22.0,1157846,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863990,2863991,21.0,1157846,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863991,2863992,25.0,1157847,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863992,2863993,22.0,1157847,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863993,2863994,21.0,1157847,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2863994,2863995,25.0,1157848,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863995,2863996,22.0,1157848,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863996,2863997,21.0,1157848,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2863997,2863998,25.0,1157849,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863998,2863999,22.0,1157849,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2863999,2864000,21.0,1157849,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864000,2864001,25.0,1157850,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864001,2864002,22.0,1157850,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864002,2864003,21.0,1157850,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864003,2864004,25.0,1157851,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2864004,2864005,22.0,1157851,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2864005,2864006,21.0,1157851,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2864006,2864007,25.0,1157852,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864007,2864008,22.0,1157852,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864008,2864009,21.0,1157852,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864009,2864010,25.0,1157853,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2864010,2864011,22.0,1157853,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2864011,2864012,21.0,1157853,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2864012,2864013,25.0,1157854,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864013,2864014,22.0,1157854,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864014,2864015,21.0,1157854,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864015,2864016,25.0,1157855,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864016,2864017,22.0,1157855,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864017,2864018,21.0,1157855,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864018,2864019,26.0,1157856,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22818.0,2150.0 +2864019,2864020,24.0,1157856,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +2864020,2864021,26.0,1157857,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22812.0,2149.0 +2864021,2864022,24.0,1157857,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22812.0,2149.0 +2864022,2864023,26.0,1157858,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22812.0,2149.0 +2864023,2864024,24.0,1157858,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22812.0,2149.0 +2864024,2864025,26.0,1157859,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22812.0,2149.0 +2864025,2864026,24.0,1157859,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22812.0,2149.0 +2864026,2864027,26.0,1157860,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22814.0,2150.0 +2864027,2864028,24.0,1157860,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22814.0,2150.0 +2864028,2864029,26.0,1157861,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22814.0,2150.0 +2864029,2864030,24.0,1157861,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22814.0,2150.0 +2864030,2864031,26.0,1157862,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22813.0,2150.0 +2864031,2864032,24.0,1157862,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +2864032,2864033,26.0,1157863,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22818.0,2150.0 +2864033,2864034,24.0,1157863,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +2864034,2864035,26.0,1157864,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22816.0,2150.0 +2864035,2864036,24.0,1157864,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22816.0,2150.0 +2864036,2864037,26.0,1157865,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22816.0,2150.0 +2864037,2864038,24.0,1157865,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22816.0,2150.0 +2864038,2864039,26.0,1157866,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22813.0,2150.0 +2864039,2864040,24.0,1157866,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +2864040,2864041,26.0,1157867,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22813.0,2150.0 +2864041,2864042,24.0,1157867,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +2864042,2864043,26.0,1157868,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22816.0,2150.0 +2864043,2864044,24.0,1157868,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22816.0,2150.0 +2864044,2864045,26.0,1157869,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22813.0,2150.0 +2864045,2864046,24.0,1157869,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +2864046,2864047,26.0,1157870,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22818.0,2150.0 +2864047,2864048,24.0,1157870,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +2864048,2864049,26.0,1157871,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22813.0,2150.0 +2864049,2864050,24.0,1157871,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +2864050,2864051,26.0,1157872,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22814.0,2150.0 +2864051,2864052,24.0,1157872,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22814.0,2150.0 +2864052,2864053,26.0,1157873,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22818.0,2150.0 +2864053,2864054,24.0,1157873,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +2864054,2864055,26.0,1157874,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22818.0,2150.0 +2864055,2864056,24.0,1157874,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +2864056,2864057,26.0,1157875,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22814.0,2150.0 +2864057,2864058,24.0,1157875,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22814.0,2150.0 +2864058,2864059,26.0,1157876,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22818.0,2150.0 +2864059,2864060,24.0,1157876,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +2864060,2864061,26.0,1157877,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22812.0,2149.0 +2864061,2864062,24.0,1157877,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22812.0,2149.0 +2864062,2864063,26.0,1157878,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22813.0,2150.0 +2864063,2864064,24.0,1157878,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +2864064,2864065,26.0,1157879,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22813.0,2150.0 +2864065,2864066,24.0,1157879,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +2864066,2864067,26.0,1157880,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22818.0,2150.0 +2864067,2864068,24.0,1157880,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +2864068,2864069,26.0,1157881,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22818.0,2150.0 +2864069,2864070,24.0,1157881,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +2864070,2864071,26.0,1157882,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22818.0,2150.0 +2864071,2864072,24.0,1157882,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +2864072,2864073,26.0,1157883,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22818.0,2150.0 +2864073,2864074,24.0,1157883,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +2864074,2864075,26.0,1157884,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22813.0,2150.0 +2864075,2864076,24.0,1157884,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +2864076,2864077,26.0,1157885,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22812.0,2149.0 +2864077,2864078,24.0,1157885,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22812.0,2149.0 +2864078,2864079,27.0,1157886,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22814.0,2150.0 +2864079,2864080,24.0,1157886,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22814.0,2150.0 +2864080,2864081,27.0,1157887,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22813.0,2150.0 +2864081,2864082,24.0,1157887,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22813.0,2150.0 +2864082,2864083,27.0,1157888,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22818.0,2150.0 +2864083,2864084,24.0,1157888,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22818.0,2150.0 +2864084,2864085,27.0,1157889,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22814.0,2150.0 +2864085,2864086,24.0,1157889,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22814.0,2150.0 +2864086,2864087,27.0,1157890,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22818.0,2150.0 +2864087,2864088,24.0,1157890,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22818.0,2150.0 +2864088,2864089,27.0,1157891,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22813.0,2150.0 +2864089,2864090,24.0,1157891,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22813.0,2150.0 +2864090,2864091,27.0,1157892,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22816.0,2150.0 +2864091,2864092,24.0,1157892,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22816.0,2150.0 +2864092,2864093,27.0,1157893,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2864093,2864094,24.0,1157893,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2864094,2864095,27.0,1157894,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22813.0,2150.0 +2864095,2864096,24.0,1157894,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22813.0,2150.0 +2864096,2864097,27.0,1157895,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22816.0,2150.0 +2864097,2864098,24.0,1157895,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22816.0,2150.0 +2864098,2864099,27.0,1157896,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2864099,2864100,24.0,1157896,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2864100,2864101,27.0,1157897,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22813.0,2150.0 +2864101,2864102,24.0,1157897,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22813.0,2150.0 +2864102,2864103,27.0,1157898,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22813.0,2150.0 +2864103,2864104,24.0,1157898,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22813.0,2150.0 +2864104,2864105,27.0,1157899,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22813.0,2150.0 +2864105,2864106,24.0,1157899,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22813.0,2150.0 +2864106,2864107,27.0,1157900,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22813.0,2150.0 +2864107,2864108,24.0,1157900,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22813.0,2150.0 +2864108,2864109,27.0,1157901,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22818.0,2150.0 +2864109,2864110,24.0,1157901,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22818.0,2150.0 +2864110,2864111,27.0,1157902,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2864111,2864112,24.0,1157902,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2864112,2864113,27.0,1157903,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22816.0,2150.0 +2864113,2864114,24.0,1157903,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22816.0,2150.0 +2864114,2864115,27.0,1157904,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22814.0,2150.0 +2864115,2864116,24.0,1157904,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22814.0,2150.0 +2864116,2864117,27.0,1157905,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22814.0,2150.0 +2864117,2864118,24.0,1157905,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22814.0,2150.0 +2864118,2864119,27.0,1157906,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2864119,2864120,24.0,1157906,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2864120,2864121,27.0,1157907,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22816.0,2150.0 +2864121,2864122,24.0,1157907,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22816.0,2150.0 +2864122,2864123,27.0,1157908,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22816.0,2150.0 +2864123,2864124,24.0,1157908,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22816.0,2150.0 +2864124,2864125,27.0,1157909,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22816.0,2150.0 +2864125,2864126,24.0,1157909,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22816.0,2150.0 +2864126,2864127,27.0,1157910,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22814.0,2150.0 +2864127,2864128,24.0,1157910,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22814.0,2150.0 +2864128,2864129,27.0,1157911,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22813.0,2150.0 +2864129,2864130,24.0,1157911,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22813.0,2150.0 +2864130,2864131,27.0,1157912,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22813.0,2150.0 +2864131,2864132,24.0,1157912,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22813.0,2150.0 +2864132,2864133,27.0,1157913,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22816.0,2150.0 +2864133,2864134,24.0,1157913,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22816.0,2150.0 +2864134,2864135,27.0,1157914,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2864135,2864136,24.0,1157914,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2864136,2864137,27.0,1157915,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22813.0,2150.0 +2864137,2864138,24.0,1157915,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22813.0,2150.0 +2864138,2864139,27.0,1157916,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22813.0,2150.0 +2864139,2864140,24.0,1157916,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22813.0,2150.0 +2864140,2864141,27.0,1157917,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2864141,2864142,24.0,1157917,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2864142,2864143,24.0,1157918,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22813.0,2150.0 +2864143,2864144,24.0,1157919,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22813.0,2150.0 +2864144,2864145,24.0,1157920,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22818.0,2150.0 +2864145,2864146,24.0,1157921,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22813.0,2150.0 +2864146,2864147,24.0,1157922,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22812.0,2149.0 +2864147,2864148,24.0,1157923,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22813.0,2150.0 +2864148,2864149,24.0,1157924,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22813.0,2150.0 +2864149,2864150,24.0,1157925,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22818.0,2150.0 +2864150,2864151,24.0,1157926,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22814.0,2150.0 +2864151,2864152,24.0,1157927,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22816.0,2150.0 +2864152,2864153,24.0,1157928,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22812.0,2149.0 +2864153,2864154,24.0,1157929,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22812.0,2149.0 +2864154,2864155,24.0,1157930,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22814.0,2150.0 +2864155,2864156,24.0,1157931,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22814.0,2150.0 +2864156,2864157,24.0,1157932,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22813.0,2150.0 +2864157,2864158,24.0,1157933,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22813.0,2150.0 +2864158,2864159,23.0,1157934,1,1,0,4,2.0,5.0,5.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864159,2864160,20.0,1157935,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2864160,2864161,20.0,1157936,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2864161,2864162,20.0,1157937,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22814.0,2150.0 +2864162,2864163,20.0,1157938,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864163,2864164,20.0,1157939,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22813.0,2150.0 +2864164,2864165,20.0,1157940,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864165,2864166,24.0,1157941,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22814.0,2150.0 +2864166,2864167,25.0,1157941,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22814.0,2150.0 +2864167,2864168,22.0,1157942,1,2,0,1,6.0,40.0,6.0,16.0,4.0,5411,10.0,22814.0,2150.0 +2864168,2864169,22.0,1157943,1,2,0,1,6.0,40.0,6.0,16.0,4.0,5411,10.0,22813.0,2150.0 +2864169,2864170,22.0,1157944,1,2,0,1,6.0,40.0,6.0,16.0,4.0,5411,10.0,22814.0,2150.0 +2864170,2864171,22.0,1157945,1,2,0,1,6.0,40.0,6.0,16.0,4.0,5411,10.0,22816.0,2150.0 +2864171,2864172,22.0,1157946,1,2,0,1,6.0,40.0,6.0,16.0,4.0,5411,10.0,22814.0,2150.0 +2864172,2864173,22.0,1157947,1,2,0,1,6.0,40.0,6.0,16.0,4.0,5411,10.0,22816.0,2150.0 +2864173,2864174,23.0,1157948,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2864174,2864175,23.0,1157949,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2864175,2864176,23.0,1157950,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2864176,2864177,23.0,1157951,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2864177,2864178,23.0,1157952,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864178,2864179,23.0,1157953,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864179,2864180,23.0,1157954,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2864180,2864181,23.0,1157955,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864181,2864182,23.0,1157956,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2864182,2864183,23.0,1157957,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864183,2864184,23.0,1157958,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2864184,2864185,23.0,1157959,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2864185,2864186,23.0,1157960,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864186,2864187,23.0,1157961,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864187,2864188,23.0,1157962,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2864188,2864189,23.0,1157963,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864189,2864190,23.0,1157964,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2864190,2864191,23.0,1157965,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2864191,2864192,23.0,1157966,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864192,2864193,23.0,1157967,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2864193,2864194,23.0,1157968,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864194,2864195,23.0,1157969,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2864195,2864196,23.0,1157970,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864196,2864197,23.0,1157971,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864197,2864198,23.0,1157972,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2864198,2864199,23.0,1157973,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864199,2864200,23.0,1157974,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22816.0,2150.0 +2864200,2864201,23.0,1157975,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22816.0,2150.0 +2864201,2864202,23.0,1157976,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2864202,2864203,23.0,1157977,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2864203,2864204,23.0,1157978,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22813.0,2150.0 +2864204,2864205,23.0,1157979,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22812.0,2149.0 +2864205,2864206,23.0,1157980,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22814.0,2150.0 +2864206,2864207,24.0,1157981,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22818.0,2150.0 +2864207,2864208,25.0,1157981,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22818.0,2150.0 +2864208,2864209,24.0,1157982,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22814.0,2150.0 +2864209,2864210,25.0,1157982,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22814.0,2150.0 +2864210,2864211,24.0,1157983,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22813.0,2150.0 +2864211,2864212,25.0,1157983,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22813.0,2150.0 +2864212,2864213,24.0,1157984,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22814.0,2150.0 +2864213,2864214,25.0,1157984,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22814.0,2150.0 +2864214,2864215,24.0,1157985,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22812.0,2149.0 +2864215,2864216,25.0,1157985,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22812.0,2149.0 +2864216,2864217,24.0,1157986,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22812.0,2149.0 +2864217,2864218,25.0,1157986,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22812.0,2149.0 +2864218,2864219,24.0,1157987,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22814.0,2150.0 +2864219,2864220,25.0,1157987,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22814.0,2150.0 +2864220,2864221,24.0,1157988,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22814.0,2150.0 +2864221,2864222,25.0,1157988,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22814.0,2150.0 +2864222,2864223,24.0,1157989,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864223,2864224,25.0,1157989,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864224,2864225,24.0,1157990,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864225,2864226,25.0,1157990,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864226,2864227,24.0,1157991,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864227,2864228,25.0,1157991,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864228,2864229,24.0,1157992,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864229,2864230,25.0,1157992,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864230,2864231,24.0,1157993,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864231,2864232,25.0,1157993,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864232,2864233,24.0,1157994,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864233,2864234,25.0,1157994,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864234,2864235,24.0,1157995,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864235,2864236,25.0,1157995,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864236,2864237,24.0,1157996,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864237,2864238,25.0,1157996,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864238,2864239,24.0,1157997,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864239,2864240,25.0,1157997,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864240,2864241,24.0,1157998,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864241,2864242,25.0,1157998,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864242,2864243,24.0,1157999,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864243,2864244,25.0,1157999,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864244,2864245,24.0,1158000,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864245,2864246,25.0,1158000,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864246,2864247,24.0,1158001,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864247,2864248,25.0,1158001,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864248,2864249,24.0,1158002,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864249,2864250,25.0,1158002,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864250,2864251,24.0,1158003,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864251,2864252,25.0,1158003,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864252,2864253,24.0,1158004,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864253,2864254,25.0,1158004,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864254,2864255,24.0,1158005,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864255,2864256,25.0,1158005,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864256,2864257,24.0,1158006,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864257,2864258,25.0,1158006,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864258,2864259,24.0,1158007,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864259,2864260,25.0,1158007,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864260,2864261,24.0,1158008,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864261,2864262,25.0,1158008,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864262,2864263,24.0,1158009,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864263,2864264,25.0,1158009,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864264,2864265,24.0,1158010,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864265,2864266,25.0,1158010,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864266,2864267,24.0,1158011,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864267,2864268,25.0,1158011,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864268,2864269,24.0,1158012,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864269,2864270,25.0,1158012,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864270,2864271,24.0,1158013,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864271,2864272,25.0,1158013,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864272,2864273,24.0,1158014,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864273,2864274,25.0,1158014,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864274,2864275,24.0,1158015,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864275,2864276,25.0,1158015,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864276,2864277,24.0,1158016,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864277,2864278,25.0,1158016,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864278,2864279,24.0,1158017,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864279,2864280,25.0,1158017,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864280,2864281,24.0,1158018,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864281,2864282,25.0,1158018,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864282,2864283,24.0,1158019,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864283,2864284,25.0,1158019,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864284,2864285,24.0,1158020,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864285,2864286,25.0,1158020,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864286,2864287,24.0,1158021,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864287,2864288,25.0,1158021,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864288,2864289,24.0,1158022,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864289,2864290,25.0,1158022,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864290,2864291,24.0,1158023,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864291,2864292,25.0,1158023,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864292,2864293,24.0,1158024,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864293,2864294,25.0,1158024,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864294,2864295,24.0,1158025,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864295,2864296,25.0,1158025,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864296,2864297,24.0,1158026,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864297,2864298,25.0,1158026,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864298,2864299,24.0,1158027,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864299,2864300,25.0,1158027,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864300,2864301,24.0,1158028,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864301,2864302,25.0,1158028,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864302,2864303,24.0,1158029,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864303,2864304,25.0,1158029,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864304,2864305,24.0,1158030,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864305,2864306,25.0,1158030,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864306,2864307,24.0,1158031,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864307,2864308,25.0,1158031,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864308,2864309,24.0,1158032,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864309,2864310,25.0,1158032,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864310,2864311,24.0,1158033,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864311,2864312,25.0,1158033,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864312,2864313,24.0,1158034,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864313,2864314,25.0,1158034,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864314,2864315,24.0,1158035,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864315,2864316,25.0,1158035,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864316,2864317,24.0,1158036,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864317,2864318,25.0,1158036,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864318,2864319,24.0,1158037,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864319,2864320,25.0,1158037,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864320,2864321,24.0,1158038,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864321,2864322,25.0,1158038,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864322,2864323,24.0,1158039,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864323,2864324,25.0,1158039,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864324,2864325,24.0,1158040,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864325,2864326,25.0,1158040,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864326,2864327,24.0,1158041,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864327,2864328,25.0,1158041,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864328,2864329,22.0,1158042,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22816.0,2150.0 +2864329,2864330,23.0,1158043,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22813.0,2150.0 +2864330,2864331,26.0,1158043,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864331,2864332,23.0,1158044,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22812.0,2149.0 +2864332,2864333,26.0,1158044,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864333,2864334,23.0,1158045,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22818.0,2150.0 +2864334,2864335,26.0,1158045,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864335,2864336,23.0,1158046,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22813.0,2150.0 +2864336,2864337,26.0,1158046,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864337,2864338,23.0,1158047,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22813.0,2150.0 +2864338,2864339,26.0,1158047,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864339,2864340,23.0,1158048,1,1,0,1,6.0,-9.0,-9.0,16.0,4.0,6111,13.0,22818.0,2150.0 +2864340,2864341,26.0,1158048,2,1,12,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864341,2864342,22.0,1158049,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22813.0,2150.0 +2864342,2864343,22.0,1158050,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22813.0,2150.0 +2864343,2864344,22.0,1158051,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22812.0,2149.0 +2864344,2864345,22.0,1158052,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +2864345,2864346,23.0,1158053,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864346,2864347,21.0,1158054,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +2864347,2864348,22.0,1158055,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864348,2864349,23.0,1158056,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864349,2864350,23.0,1158057,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22816.0,2150.0 +2864350,2864351,23.0,1158058,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864351,2864352,21.0,1158059,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +2864352,2864353,22.0,1158060,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864353,2864354,23.0,1158061,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864354,2864355,21.0,1158062,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2864355,2864356,23.0,1158063,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864356,2864357,21.0,1158064,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22813.0,2150.0 +2864357,2864358,23.0,1158065,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22814.0,2150.0 +2864358,2864359,23.0,1158066,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22813.0,2150.0 +2864359,2864360,22.0,1158067,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864360,2864361,21.0,1158068,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2864361,2864362,21.0,1158069,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +2864362,2864363,21.0,1158070,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22813.0,2150.0 +2864363,2864364,22.0,1158071,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864364,2864365,23.0,1158072,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864365,2864366,22.0,1158073,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864366,2864367,22.0,1158074,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864367,2864368,21.0,1158075,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2864368,2864369,23.0,1158076,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864369,2864370,24.0,1158077,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864370,2864371,21.0,1158078,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22816.0,2150.0 +2864371,2864372,23.0,1158079,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864372,2864373,23.0,1158080,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +2864373,2864374,21.0,1158081,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22813.0,2150.0 +2864374,2864375,23.0,1158082,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2864375,2864376,22.0,1158083,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864376,2864377,23.0,1158084,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864377,2864378,23.0,1158085,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864378,2864379,22.0,1158086,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864379,2864380,22.0,1158087,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864380,2864381,21.0,1158088,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +2864381,2864382,22.0,1158089,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864382,2864383,22.0,1158090,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864383,2864384,21.0,1158091,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +2864384,2864385,21.0,1158092,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2864385,2864386,21.0,1158093,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22816.0,2150.0 +2864386,2864387,21.0,1158094,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2864387,2864388,21.0,1158095,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2864388,2864389,21.0,1158096,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22814.0,2150.0 +2864389,2864390,22.0,1158097,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +2864390,2864391,21.0,1158098,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2864391,2864392,21.0,1158099,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2864392,2864393,23.0,1158100,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22816.0,2150.0 +2864393,2864394,23.0,1158101,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22813.0,2150.0 +2864394,2864395,23.0,1158102,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22813.0,2150.0 +2864395,2864396,23.0,1158103,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22812.0,2149.0 +2864396,2864397,23.0,1158104,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22814.0,2150.0 +2864397,2864398,23.0,1158105,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22812.0,2149.0 +2864398,2864399,23.0,1158106,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22814.0,2150.0 +2864399,2864400,23.0,1158107,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22814.0,2150.0 +2864400,2864401,23.0,1158108,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22813.0,2150.0 +2864401,2864402,23.0,1158109,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22814.0,2150.0 +2864402,2864403,23.0,1158110,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22812.0,2149.0 +2864403,2864404,23.0,1158111,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22813.0,2150.0 +2864404,2864405,23.0,1158112,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22814.0,2150.0 +2864405,2864406,23.0,1158113,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22814.0,2150.0 +2864406,2864407,23.0,1158114,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22813.0,2150.0 +2864407,2864408,23.0,1158115,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22814.0,2150.0 +2864408,2864409,23.0,1158116,1,1,0,1,1.0,40.0,6.0,15.0,4.0,8111Z,17.0,22818.0,2150.0 +2864409,2864410,20.0,1158117,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22818.0,2150.0 +2864410,2864411,24.0,1158118,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22816.0,2150.0 +2864411,2864412,24.0,1158119,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22816.0,2150.0 +2864412,2864413,24.0,1158120,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22816.0,2150.0 +2864413,2864414,19.0,1158121,1,1,0,1,1.0,10.0,6.0,15.0,4.0,7111,16.0,22813.0,2150.0 +2864414,2864415,21.0,1158122,1,1,0,1,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2864415,2864416,21.0,1158123,1,1,0,1,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +2864416,2864417,21.0,1158124,1,1,0,1,6.0,50.0,5.0,15.0,4.0,56173,12.0,22812.0,2149.0 +2864417,2864418,21.0,1158125,1,1,0,1,6.0,50.0,5.0,15.0,4.0,56173,12.0,22814.0,2150.0 +2864418,2864419,65.0,1158126,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864419,2864420,65.0,1158126,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22817.0,2150.0 +2864420,2864421,24.0,1158126,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864421,2864422,65.0,1158127,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22816.0,2150.0 +2864422,2864423,65.0,1158127,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22816.0,2150.0 +2864423,2864424,24.0,1158127,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22816.0,2150.0 +2864424,2864425,65.0,1158128,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864425,2864426,65.0,1158128,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2864426,2864427,24.0,1158128,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864427,2864428,65.0,1158129,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864428,2864429,65.0,1158129,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2864429,2864430,24.0,1158129,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864430,2864431,65.0,1158130,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864431,2864432,65.0,1158130,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2864432,2864433,24.0,1158130,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864433,2864434,65.0,1158131,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864434,2864435,65.0,1158131,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2864435,2864436,24.0,1158131,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864436,2864437,65.0,1158132,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864437,2864438,65.0,1158132,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2864438,2864439,24.0,1158132,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864439,2864440,65.0,1158133,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864440,2864441,65.0,1158133,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2864441,2864442,24.0,1158133,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864442,2864443,65.0,1158134,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864443,2864444,65.0,1158134,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22817.0,2150.0 +2864444,2864445,24.0,1158134,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864445,2864446,65.0,1158135,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2864446,2864447,65.0,1158135,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2864447,2864448,24.0,1158135,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2864448,2864449,65.0,1158136,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22816.0,2150.0 +2864449,2864450,65.0,1158136,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22816.0,2150.0 +2864450,2864451,24.0,1158136,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22816.0,2150.0 +2864451,2864452,65.0,1158137,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864452,2864453,65.0,1158137,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2864453,2864454,24.0,1158137,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864454,2864455,65.0,1158138,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864455,2864456,65.0,1158138,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2864456,2864457,24.0,1158138,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864457,2864458,65.0,1158139,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864458,2864459,65.0,1158139,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22817.0,2150.0 +2864459,2864460,24.0,1158139,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864460,2864461,65.0,1158140,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864461,2864462,65.0,1158140,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22817.0,2150.0 +2864462,2864463,24.0,1158140,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864463,2864464,65.0,1158141,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22816.0,2150.0 +2864464,2864465,65.0,1158141,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22816.0,2150.0 +2864465,2864466,24.0,1158141,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22816.0,2150.0 +2864466,2864467,65.0,1158142,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864467,2864468,65.0,1158142,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2864468,2864469,24.0,1158142,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864469,2864470,65.0,1158143,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864470,2864471,65.0,1158143,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22817.0,2150.0 +2864471,2864472,24.0,1158143,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864472,2864473,65.0,1158144,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864473,2864474,65.0,1158144,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2864474,2864475,24.0,1158144,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864475,2864476,65.0,1158145,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864476,2864477,65.0,1158145,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2864477,2864478,24.0,1158145,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864478,2864479,65.0,1158146,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22816.0,2150.0 +2864479,2864480,65.0,1158146,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22816.0,2150.0 +2864480,2864481,24.0,1158146,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22816.0,2150.0 +2864481,2864482,65.0,1158147,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864482,2864483,65.0,1158147,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2864483,2864484,24.0,1158147,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864484,2864485,65.0,1158148,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2864485,2864486,65.0,1158148,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2864486,2864487,24.0,1158148,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22815.0,2150.0 +2864487,2864488,65.0,1158149,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864488,2864489,65.0,1158149,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2864489,2864490,24.0,1158149,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22818.0,2150.0 +2864490,2864491,65.0,1158150,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864491,2864492,65.0,1158150,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22817.0,2150.0 +2864492,2864493,24.0,1158150,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22817.0,2150.0 +2864493,2864494,65.0,1158151,1,2,0,1,1.0,45.0,3.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864494,2864495,65.0,1158151,2,1,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2864495,2864496,24.0,1158151,3,2,2,1,2.0,25.0,4.0,-9.0,4.0,611M3,13.0,22812.0,2149.0 +2864496,2864497,45.0,1158152,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864497,2864498,28.0,1158152,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864498,2864499,23.0,1158152,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22818.0,2150.0 +2864499,2864500,4.0,1158152,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864500,2864501,4.0,1158152,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864501,2864502,2.0,1158152,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22818.0,2150.0 +2864502,2864503,45.0,1158153,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864503,2864504,28.0,1158153,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864504,2864505,23.0,1158153,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864505,2864506,4.0,1158153,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864506,2864507,4.0,1158153,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864507,2864508,2.0,1158153,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864508,2864509,45.0,1158154,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864509,2864510,28.0,1158154,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864510,2864511,23.0,1158154,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864511,2864512,4.0,1158154,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864512,2864513,4.0,1158154,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864513,2864514,2.0,1158154,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864514,2864515,45.0,1158155,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864515,2864516,28.0,1158155,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864516,2864517,23.0,1158155,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864517,2864518,4.0,1158155,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864518,2864519,4.0,1158155,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864519,2864520,2.0,1158155,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864520,2864521,45.0,1158156,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864521,2864522,28.0,1158156,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864522,2864523,23.0,1158156,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22818.0,2150.0 +2864523,2864524,4.0,1158156,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864524,2864525,4.0,1158156,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864525,2864526,2.0,1158156,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22818.0,2150.0 +2864526,2864527,45.0,1158157,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864527,2864528,28.0,1158157,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864528,2864529,23.0,1158157,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22818.0,2150.0 +2864529,2864530,4.0,1158157,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864530,2864531,4.0,1158157,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864531,2864532,2.0,1158157,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22818.0,2150.0 +2864532,2864533,45.0,1158158,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864533,2864534,28.0,1158158,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864534,2864535,23.0,1158158,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864535,2864536,4.0,1158158,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864536,2864537,4.0,1158158,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864537,2864538,2.0,1158158,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864538,2864539,45.0,1158159,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864539,2864540,28.0,1158159,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864540,2864541,23.0,1158159,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22818.0,2150.0 +2864541,2864542,4.0,1158159,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864542,2864543,4.0,1158159,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864543,2864544,2.0,1158159,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22818.0,2150.0 +2864544,2864545,45.0,1158160,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864545,2864546,28.0,1158160,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864546,2864547,23.0,1158160,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22818.0,2150.0 +2864547,2864548,4.0,1158160,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864548,2864549,4.0,1158160,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864549,2864550,2.0,1158160,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22818.0,2150.0 +2864550,2864551,45.0,1158161,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22816.0,2150.0 +2864551,2864552,28.0,1158161,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22816.0,2150.0 +2864552,2864553,23.0,1158161,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22816.0,2150.0 +2864553,2864554,4.0,1158161,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22816.0,2150.0 +2864554,2864555,4.0,1158161,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22816.0,2150.0 +2864555,2864556,2.0,1158161,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22816.0,2150.0 +2864556,2864557,45.0,1158162,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864557,2864558,28.0,1158162,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864558,2864559,23.0,1158162,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864559,2864560,4.0,1158162,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864560,2864561,4.0,1158162,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864561,2864562,2.0,1158162,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864562,2864563,45.0,1158163,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22817.0,2150.0 +2864563,2864564,28.0,1158163,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22817.0,2150.0 +2864564,2864565,23.0,1158163,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22817.0,2150.0 +2864565,2864566,4.0,1158163,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22817.0,2150.0 +2864566,2864567,4.0,1158163,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22817.0,2150.0 +2864567,2864568,2.0,1158163,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22817.0,2150.0 +2864568,2864569,45.0,1158164,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864569,2864570,28.0,1158164,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864570,2864571,23.0,1158164,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864571,2864572,4.0,1158164,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864572,2864573,4.0,1158164,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864573,2864574,2.0,1158164,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864574,2864575,45.0,1158165,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864575,2864576,28.0,1158165,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864576,2864577,23.0,1158165,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864577,2864578,4.0,1158165,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864578,2864579,4.0,1158165,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864579,2864580,2.0,1158165,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864580,2864581,45.0,1158166,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22817.0,2150.0 +2864581,2864582,28.0,1158166,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22817.0,2150.0 +2864582,2864583,23.0,1158166,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22817.0,2150.0 +2864583,2864584,4.0,1158166,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22817.0,2150.0 +2864584,2864585,4.0,1158166,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22817.0,2150.0 +2864585,2864586,2.0,1158166,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22817.0,2150.0 +2864586,2864587,45.0,1158167,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864587,2864588,28.0,1158167,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864588,2864589,23.0,1158167,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864589,2864590,4.0,1158167,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864590,2864591,4.0,1158167,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864591,2864592,2.0,1158167,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864592,2864593,45.0,1158168,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864593,2864594,28.0,1158168,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864594,2864595,23.0,1158168,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22818.0,2150.0 +2864595,2864596,4.0,1158168,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864596,2864597,4.0,1158168,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864597,2864598,2.0,1158168,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22818.0,2150.0 +2864598,2864599,45.0,1158169,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864599,2864600,28.0,1158169,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864600,2864601,23.0,1158169,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864601,2864602,4.0,1158169,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864602,2864603,4.0,1158169,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864603,2864604,2.0,1158169,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864604,2864605,45.0,1158170,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22816.0,2150.0 +2864605,2864606,28.0,1158170,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22816.0,2150.0 +2864606,2864607,23.0,1158170,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22816.0,2150.0 +2864607,2864608,4.0,1158170,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22816.0,2150.0 +2864608,2864609,4.0,1158170,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22816.0,2150.0 +2864609,2864610,2.0,1158170,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22816.0,2150.0 +2864610,2864611,45.0,1158171,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864611,2864612,28.0,1158171,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864612,2864613,23.0,1158171,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864613,2864614,4.0,1158171,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864614,2864615,4.0,1158171,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864615,2864616,2.0,1158171,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864616,2864617,45.0,1158172,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864617,2864618,28.0,1158172,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864618,2864619,23.0,1158172,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864619,2864620,4.0,1158172,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864620,2864621,4.0,1158172,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864621,2864622,2.0,1158172,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864622,2864623,45.0,1158173,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864623,2864624,28.0,1158173,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864624,2864625,23.0,1158173,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22818.0,2150.0 +2864625,2864626,4.0,1158173,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864626,2864627,4.0,1158173,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864627,2864628,2.0,1158173,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22818.0,2150.0 +2864628,2864629,45.0,1158174,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22817.0,2150.0 +2864629,2864630,28.0,1158174,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22817.0,2150.0 +2864630,2864631,23.0,1158174,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22817.0,2150.0 +2864631,2864632,4.0,1158174,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22817.0,2150.0 +2864632,2864633,4.0,1158174,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22817.0,2150.0 +2864633,2864634,2.0,1158174,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22817.0,2150.0 +2864634,2864635,45.0,1158175,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864635,2864636,28.0,1158175,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22812.0,2149.0 +2864636,2864637,23.0,1158175,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22812.0,2149.0 +2864637,2864638,4.0,1158175,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864638,2864639,4.0,1158175,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22812.0,2149.0 +2864639,2864640,2.0,1158175,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22812.0,2149.0 +2864640,2864641,45.0,1158176,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864641,2864642,28.0,1158176,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22818.0,2150.0 +2864642,2864643,23.0,1158176,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22818.0,2150.0 +2864643,2864644,4.0,1158176,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864644,2864645,4.0,1158176,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22818.0,2150.0 +2864645,2864646,2.0,1158176,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22818.0,2150.0 +2864646,2864647,49.0,1158177,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22815.0,2150.0 +2864647,2864648,50.0,1158177,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22815.0,2150.0 +2864648,2864649,23.0,1158177,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22815.0,2150.0 +2864649,2864650,49.0,1158178,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2864650,2864651,50.0,1158178,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22818.0,2150.0 +2864651,2864652,23.0,1158178,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22818.0,2150.0 +2864652,2864653,49.0,1158179,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2864653,2864654,50.0,1158179,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22817.0,2150.0 +2864654,2864655,23.0,1158179,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22817.0,2150.0 +2864655,2864656,49.0,1158180,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2864656,2864657,50.0,1158180,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22817.0,2150.0 +2864657,2864658,23.0,1158180,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22817.0,2150.0 +2864658,2864659,49.0,1158181,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2864659,2864660,50.0,1158181,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22817.0,2150.0 +2864660,2864661,23.0,1158181,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22817.0,2150.0 +2864661,2864662,49.0,1158182,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22812.0,2149.0 +2864662,2864663,50.0,1158182,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22812.0,2149.0 +2864663,2864664,23.0,1158182,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22812.0,2149.0 +2864664,2864665,49.0,1158183,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2864665,2864666,50.0,1158183,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22818.0,2150.0 +2864666,2864667,23.0,1158183,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22818.0,2150.0 +2864667,2864668,49.0,1158184,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22812.0,2149.0 +2864668,2864669,50.0,1158184,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22812.0,2149.0 +2864669,2864670,23.0,1158184,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22812.0,2149.0 +2864670,2864671,49.0,1158185,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22816.0,2150.0 +2864671,2864672,50.0,1158185,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22816.0,2150.0 +2864672,2864673,23.0,1158185,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22816.0,2150.0 +2864673,2864674,49.0,1158186,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22812.0,2149.0 +2864674,2864675,50.0,1158186,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22812.0,2149.0 +2864675,2864676,23.0,1158186,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22812.0,2149.0 +2864676,2864677,49.0,1158187,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2864677,2864678,50.0,1158187,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22817.0,2150.0 +2864678,2864679,23.0,1158187,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22817.0,2150.0 +2864679,2864680,49.0,1158188,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2864680,2864681,50.0,1158188,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22818.0,2150.0 +2864681,2864682,23.0,1158188,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22818.0,2150.0 +2864682,2864683,49.0,1158189,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2864683,2864684,50.0,1158189,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22818.0,2150.0 +2864684,2864685,23.0,1158189,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22818.0,2150.0 +2864685,2864686,49.0,1158190,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22812.0,2149.0 +2864686,2864687,50.0,1158190,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22812.0,2149.0 +2864687,2864688,23.0,1158190,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22812.0,2149.0 +2864688,2864689,49.0,1158191,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2864689,2864690,50.0,1158191,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22817.0,2150.0 +2864690,2864691,23.0,1158191,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22817.0,2150.0 +2864691,2864692,49.0,1158192,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2864692,2864693,50.0,1158192,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22817.0,2150.0 +2864693,2864694,23.0,1158192,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22817.0,2150.0 +2864694,2864695,49.0,1158193,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2864695,2864696,50.0,1158193,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22817.0,2150.0 +2864696,2864697,23.0,1158193,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22817.0,2150.0 +2864697,2864698,49.0,1158194,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2864698,2864699,50.0,1158194,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22818.0,2150.0 +2864699,2864700,23.0,1158194,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22818.0,2150.0 +2864700,2864701,49.0,1158195,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2864701,2864702,50.0,1158195,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22818.0,2150.0 +2864702,2864703,23.0,1158195,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22818.0,2150.0 +2864703,2864704,49.0,1158196,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22816.0,2150.0 +2864704,2864705,50.0,1158196,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22816.0,2150.0 +2864705,2864706,23.0,1158196,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22816.0,2150.0 +2864706,2864707,49.0,1158197,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2864707,2864708,50.0,1158197,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22817.0,2150.0 +2864708,2864709,23.0,1158197,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22817.0,2150.0 +2864709,2864710,49.0,1158198,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2864710,2864711,50.0,1158198,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22818.0,2150.0 +2864711,2864712,23.0,1158198,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22818.0,2150.0 +2864712,2864713,49.0,1158199,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2864713,2864714,50.0,1158199,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22818.0,2150.0 +2864714,2864715,23.0,1158199,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22818.0,2150.0 +2864715,2864716,49.0,1158200,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22816.0,2150.0 +2864716,2864717,50.0,1158200,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22816.0,2150.0 +2864717,2864718,23.0,1158200,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22816.0,2150.0 +2864718,2864719,49.0,1158201,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22812.0,2149.0 +2864719,2864720,50.0,1158201,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22812.0,2149.0 +2864720,2864721,23.0,1158201,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22812.0,2149.0 +2864721,2864722,49.0,1158202,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22816.0,2150.0 +2864722,2864723,50.0,1158202,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22816.0,2150.0 +2864723,2864724,23.0,1158202,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22816.0,2150.0 +2864724,2864725,49.0,1158203,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2864725,2864726,50.0,1158203,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22817.0,2150.0 +2864726,2864727,23.0,1158203,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22817.0,2150.0 +2864727,2864728,49.0,1158204,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2864728,2864729,50.0,1158204,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22818.0,2150.0 +2864729,2864730,23.0,1158204,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22818.0,2150.0 +2864730,2864731,49.0,1158205,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22815.0,2150.0 +2864731,2864732,50.0,1158205,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22815.0,2150.0 +2864732,2864733,23.0,1158205,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22815.0,2150.0 +2864733,2864734,49.0,1158206,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2864734,2864735,50.0,1158206,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22817.0,2150.0 +2864735,2864736,23.0,1158206,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22817.0,2150.0 +2864736,2864737,26.0,1158207,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864737,2864738,24.0,1158207,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22817.0,2150.0 +2864738,2864739,26.0,1158208,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864739,2864740,24.0,1158208,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22816.0,2150.0 +2864740,2864741,26.0,1158209,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864741,2864742,24.0,1158209,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22818.0,2150.0 +2864742,2864743,26.0,1158210,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864743,2864744,24.0,1158210,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2864744,2864745,26.0,1158211,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864745,2864746,24.0,1158211,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2864746,2864747,26.0,1158212,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864747,2864748,24.0,1158212,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22818.0,2150.0 +2864748,2864749,26.0,1158213,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864749,2864750,24.0,1158213,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22818.0,2150.0 +2864750,2864751,26.0,1158214,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864751,2864752,24.0,1158214,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22817.0,2150.0 +2864752,2864753,26.0,1158215,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864753,2864754,24.0,1158215,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22816.0,2150.0 +2864754,2864755,26.0,1158216,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864755,2864756,24.0,1158216,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22818.0,2150.0 +2864756,2864757,26.0,1158217,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864757,2864758,24.0,1158217,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22817.0,2150.0 +2864758,2864759,26.0,1158218,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864759,2864760,24.0,1158218,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22817.0,2150.0 +2864760,2864761,26.0,1158219,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864761,2864762,24.0,1158219,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22818.0,2150.0 +2864762,2864763,26.0,1158220,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864763,2864764,24.0,1158220,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22818.0,2150.0 +2864764,2864765,26.0,1158221,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864765,2864766,24.0,1158221,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22816.0,2150.0 +2864766,2864767,26.0,1158222,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864767,2864768,24.0,1158222,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22818.0,2150.0 +2864768,2864769,26.0,1158223,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864769,2864770,24.0,1158223,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22816.0,2150.0 +2864770,2864771,26.0,1158224,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864771,2864772,24.0,1158224,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22817.0,2150.0 +2864772,2864773,26.0,1158225,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864773,2864774,24.0,1158225,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22812.0,2149.0 +2864774,2864775,26.0,1158226,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864775,2864776,28.0,1158226,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864776,2864777,28.0,1158226,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22816.0,2150.0 +2864777,2864778,24.0,1158226,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864778,2864779,26.0,1158227,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864779,2864780,28.0,1158227,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864780,2864781,28.0,1158227,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22816.0,2150.0 +2864781,2864782,24.0,1158227,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864782,2864783,26.0,1158228,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864783,2864784,28.0,1158228,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864784,2864785,28.0,1158228,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22817.0,2150.0 +2864785,2864786,24.0,1158228,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864786,2864787,26.0,1158229,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864787,2864788,28.0,1158229,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864788,2864789,28.0,1158229,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22812.0,2149.0 +2864789,2864790,24.0,1158229,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864790,2864791,26.0,1158230,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864791,2864792,28.0,1158230,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864792,2864793,28.0,1158230,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22812.0,2149.0 +2864793,2864794,24.0,1158230,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864794,2864795,26.0,1158231,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864795,2864796,28.0,1158231,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864796,2864797,28.0,1158231,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22817.0,2150.0 +2864797,2864798,24.0,1158231,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864798,2864799,26.0,1158232,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2864799,2864800,28.0,1158232,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2864800,2864801,28.0,1158232,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22815.0,2150.0 +2864801,2864802,24.0,1158232,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2864802,2864803,26.0,1158233,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864803,2864804,28.0,1158233,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864804,2864805,28.0,1158233,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22816.0,2150.0 +2864805,2864806,24.0,1158233,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864806,2864807,26.0,1158234,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864807,2864808,28.0,1158234,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864808,2864809,28.0,1158234,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22812.0,2149.0 +2864809,2864810,24.0,1158234,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864810,2864811,26.0,1158235,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864811,2864812,28.0,1158235,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864812,2864813,28.0,1158235,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22818.0,2150.0 +2864813,2864814,24.0,1158235,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864814,2864815,26.0,1158236,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2864815,2864816,28.0,1158236,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2864816,2864817,28.0,1158236,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22815.0,2150.0 +2864817,2864818,24.0,1158236,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2864818,2864819,26.0,1158237,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864819,2864820,28.0,1158237,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864820,2864821,28.0,1158237,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22816.0,2150.0 +2864821,2864822,24.0,1158237,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864822,2864823,26.0,1158238,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864823,2864824,28.0,1158238,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864824,2864825,28.0,1158238,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22818.0,2150.0 +2864825,2864826,24.0,1158238,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864826,2864827,26.0,1158239,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864827,2864828,28.0,1158239,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864828,2864829,28.0,1158239,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22817.0,2150.0 +2864829,2864830,24.0,1158239,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864830,2864831,26.0,1158240,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864831,2864832,28.0,1158240,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864832,2864833,28.0,1158240,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22812.0,2149.0 +2864833,2864834,24.0,1158240,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864834,2864835,26.0,1158241,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864835,2864836,28.0,1158241,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864836,2864837,28.0,1158241,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22816.0,2150.0 +2864837,2864838,24.0,1158241,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864838,2864839,26.0,1158242,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864839,2864840,28.0,1158242,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864840,2864841,28.0,1158242,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22816.0,2150.0 +2864841,2864842,24.0,1158242,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2864842,2864843,26.0,1158243,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864843,2864844,28.0,1158243,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864844,2864845,28.0,1158243,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22817.0,2150.0 +2864845,2864846,24.0,1158243,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864846,2864847,26.0,1158244,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864847,2864848,28.0,1158244,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864848,2864849,28.0,1158244,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22812.0,2149.0 +2864849,2864850,24.0,1158244,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864850,2864851,26.0,1158245,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864851,2864852,28.0,1158245,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864852,2864853,28.0,1158245,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22818.0,2150.0 +2864853,2864854,24.0,1158245,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864854,2864855,26.0,1158246,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864855,2864856,28.0,1158246,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864856,2864857,28.0,1158246,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22812.0,2149.0 +2864857,2864858,24.0,1158246,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864858,2864859,26.0,1158247,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864859,2864860,28.0,1158247,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864860,2864861,28.0,1158247,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22817.0,2150.0 +2864861,2864862,24.0,1158247,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864862,2864863,26.0,1158248,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864863,2864864,28.0,1158248,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864864,2864865,28.0,1158248,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22817.0,2150.0 +2864865,2864866,24.0,1158248,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2864866,2864867,26.0,1158249,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864867,2864868,28.0,1158249,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864868,2864869,28.0,1158249,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22818.0,2150.0 +2864869,2864870,24.0,1158249,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2864870,2864871,26.0,1158250,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864871,2864872,28.0,1158250,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864872,2864873,28.0,1158250,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22812.0,2149.0 +2864873,2864874,24.0,1158250,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2864874,2864875,31.0,1158251,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2864875,2864876,24.0,1158251,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2864876,2864877,25.0,1158252,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864877,2864878,22.0,1158252,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864878,2864879,21.0,1158252,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864879,2864880,25.0,1158253,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864880,2864881,22.0,1158253,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864881,2864882,21.0,1158253,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864882,2864883,25.0,1158254,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864883,2864884,22.0,1158254,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864884,2864885,21.0,1158254,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864885,2864886,25.0,1158255,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864886,2864887,22.0,1158255,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864887,2864888,21.0,1158255,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864888,2864889,25.0,1158256,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864889,2864890,22.0,1158256,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864890,2864891,21.0,1158256,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864891,2864892,25.0,1158257,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864892,2864893,22.0,1158257,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864893,2864894,21.0,1158257,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864894,2864895,25.0,1158258,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864895,2864896,22.0,1158258,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864896,2864897,21.0,1158258,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864897,2864898,25.0,1158259,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864898,2864899,22.0,1158259,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864899,2864900,21.0,1158259,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864900,2864901,25.0,1158260,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864901,2864902,22.0,1158260,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864902,2864903,21.0,1158260,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864903,2864904,25.0,1158261,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864904,2864905,22.0,1158261,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864905,2864906,21.0,1158261,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864906,2864907,25.0,1158262,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864907,2864908,22.0,1158262,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864908,2864909,21.0,1158262,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864909,2864910,25.0,1158263,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864910,2864911,22.0,1158263,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864911,2864912,21.0,1158263,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864912,2864913,25.0,1158264,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864913,2864914,22.0,1158264,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864914,2864915,21.0,1158264,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864915,2864916,25.0,1158265,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864916,2864917,22.0,1158265,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864917,2864918,21.0,1158265,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864918,2864919,25.0,1158266,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864919,2864920,22.0,1158266,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864920,2864921,21.0,1158266,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864921,2864922,25.0,1158267,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864922,2864923,22.0,1158267,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864923,2864924,21.0,1158267,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864924,2864925,25.0,1158268,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864925,2864926,22.0,1158268,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864926,2864927,21.0,1158268,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864927,2864928,25.0,1158269,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864928,2864929,22.0,1158269,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864929,2864930,21.0,1158269,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864930,2864931,25.0,1158270,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864931,2864932,22.0,1158270,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864932,2864933,21.0,1158270,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864933,2864934,25.0,1158271,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864934,2864935,22.0,1158271,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864935,2864936,21.0,1158271,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864936,2864937,25.0,1158272,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864937,2864938,22.0,1158272,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864938,2864939,21.0,1158272,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864939,2864940,25.0,1158273,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864940,2864941,22.0,1158273,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864941,2864942,21.0,1158273,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864942,2864943,25.0,1158274,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864943,2864944,22.0,1158274,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864944,2864945,21.0,1158274,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864945,2864946,25.0,1158275,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864946,2864947,22.0,1158275,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864947,2864948,21.0,1158275,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864948,2864949,25.0,1158276,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864949,2864950,22.0,1158276,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864950,2864951,21.0,1158276,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864951,2864952,25.0,1158277,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864952,2864953,22.0,1158277,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864953,2864954,21.0,1158277,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864954,2864955,25.0,1158278,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864955,2864956,22.0,1158278,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864956,2864957,21.0,1158278,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864957,2864958,25.0,1158279,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864958,2864959,22.0,1158279,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864959,2864960,21.0,1158279,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864960,2864961,25.0,1158280,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864961,2864962,22.0,1158280,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864962,2864963,21.0,1158280,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864963,2864964,25.0,1158281,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864964,2864965,22.0,1158281,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864965,2864966,21.0,1158281,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2864966,2864967,25.0,1158282,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864967,2864968,22.0,1158282,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864968,2864969,21.0,1158282,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864969,2864970,25.0,1158283,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864970,2864971,22.0,1158283,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864971,2864972,21.0,1158283,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864972,2864973,25.0,1158284,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864973,2864974,22.0,1158284,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864974,2864975,21.0,1158284,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864975,2864976,25.0,1158285,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864976,2864977,22.0,1158285,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864977,2864978,21.0,1158285,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864978,2864979,25.0,1158286,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864979,2864980,22.0,1158286,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864980,2864981,21.0,1158286,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864981,2864982,25.0,1158287,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864982,2864983,22.0,1158287,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864983,2864984,21.0,1158287,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2864984,2864985,25.0,1158288,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864985,2864986,22.0,1158288,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864986,2864987,21.0,1158288,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2864987,2864988,25.0,1158289,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864988,2864989,22.0,1158289,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864989,2864990,21.0,1158289,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2864990,2864991,25.0,1158290,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864991,2864992,22.0,1158290,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864992,2864993,21.0,1158290,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864993,2864994,25.0,1158291,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864994,2864995,22.0,1158291,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864995,2864996,21.0,1158291,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864996,2864997,25.0,1158292,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864997,2864998,22.0,1158292,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864998,2864999,21.0,1158292,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2864999,2865000,25.0,1158293,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865000,2865001,22.0,1158293,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865001,2865002,21.0,1158293,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865002,2865003,25.0,1158294,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865003,2865004,22.0,1158294,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865004,2865005,21.0,1158294,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865005,2865006,25.0,1158295,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865006,2865007,22.0,1158295,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865007,2865008,21.0,1158295,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865008,2865009,25.0,1158296,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865009,2865010,22.0,1158296,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865010,2865011,21.0,1158296,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865011,2865012,25.0,1158297,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865012,2865013,22.0,1158297,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865013,2865014,21.0,1158297,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865014,2865015,25.0,1158298,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865015,2865016,22.0,1158298,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865016,2865017,21.0,1158298,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865017,2865018,25.0,1158299,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865018,2865019,22.0,1158299,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865019,2865020,21.0,1158299,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865020,2865021,25.0,1158300,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865021,2865022,22.0,1158300,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865022,2865023,21.0,1158300,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865023,2865024,25.0,1158301,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2865024,2865025,22.0,1158301,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2865025,2865026,21.0,1158301,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2865026,2865027,25.0,1158302,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865027,2865028,22.0,1158302,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865028,2865029,21.0,1158302,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865029,2865030,25.0,1158303,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865030,2865031,22.0,1158303,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865031,2865032,21.0,1158303,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865032,2865033,25.0,1158304,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865033,2865034,22.0,1158304,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865034,2865035,21.0,1158304,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865035,2865036,25.0,1158305,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865036,2865037,22.0,1158305,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865037,2865038,21.0,1158305,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865038,2865039,25.0,1158306,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865039,2865040,22.0,1158306,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865040,2865041,21.0,1158306,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865041,2865042,25.0,1158307,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865042,2865043,22.0,1158307,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865043,2865044,21.0,1158307,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865044,2865045,25.0,1158308,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865045,2865046,22.0,1158308,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865046,2865047,21.0,1158308,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865047,2865048,25.0,1158309,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865048,2865049,22.0,1158309,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865049,2865050,21.0,1158309,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865050,2865051,25.0,1158310,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865051,2865052,22.0,1158310,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865052,2865053,21.0,1158310,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865053,2865054,25.0,1158311,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865054,2865055,22.0,1158311,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865055,2865056,21.0,1158311,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865056,2865057,25.0,1158312,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865057,2865058,22.0,1158312,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865058,2865059,21.0,1158312,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865059,2865060,25.0,1158313,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865060,2865061,22.0,1158313,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865061,2865062,21.0,1158313,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865062,2865063,25.0,1158314,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865063,2865064,22.0,1158314,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865064,2865065,21.0,1158314,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865065,2865066,25.0,1158315,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865066,2865067,22.0,1158315,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865067,2865068,21.0,1158315,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865068,2865069,25.0,1158316,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2865069,2865070,22.0,1158316,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2865070,2865071,21.0,1158316,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2865071,2865072,25.0,1158317,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865072,2865073,22.0,1158317,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865073,2865074,21.0,1158317,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865074,2865075,25.0,1158318,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865075,2865076,22.0,1158318,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865076,2865077,21.0,1158318,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865077,2865078,25.0,1158319,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865078,2865079,22.0,1158319,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865079,2865080,21.0,1158319,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865080,2865081,25.0,1158320,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865081,2865082,22.0,1158320,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865082,2865083,21.0,1158320,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865083,2865084,25.0,1158321,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865084,2865085,22.0,1158321,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865085,2865086,21.0,1158321,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865086,2865087,25.0,1158322,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2865087,2865088,22.0,1158322,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2865088,2865089,21.0,1158322,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22816.0,2150.0 +2865089,2865090,25.0,1158323,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865090,2865091,22.0,1158323,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865091,2865092,21.0,1158323,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22818.0,2150.0 +2865092,2865093,25.0,1158324,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865093,2865094,22.0,1158324,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865094,2865095,21.0,1158324,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22817.0,2150.0 +2865095,2865096,25.0,1158325,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865096,2865097,22.0,1158325,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865097,2865098,21.0,1158325,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865098,2865099,25.0,1158326,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865099,2865100,22.0,1158326,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865100,2865101,21.0,1158326,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22815.0,2150.0 +2865101,2865102,25.0,1158327,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865102,2865103,22.0,1158327,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865103,2865104,21.0,1158327,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865104,2865105,26.0,1158328,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22812.0,2149.0 +2865105,2865106,24.0,1158328,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22812.0,2149.0 +2865106,2865107,26.0,1158329,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22818.0,2150.0 +2865107,2865108,24.0,1158329,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +2865108,2865109,26.0,1158330,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22816.0,2150.0 +2865109,2865110,24.0,1158330,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22816.0,2150.0 +2865110,2865111,27.0,1158331,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22812.0,2149.0 +2865111,2865112,24.0,1158331,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22812.0,2149.0 +2865112,2865113,27.0,1158332,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22817.0,2150.0 +2865113,2865114,24.0,1158332,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22817.0,2150.0 +2865114,2865115,27.0,1158333,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22817.0,2150.0 +2865115,2865116,24.0,1158333,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22817.0,2150.0 +2865116,2865117,27.0,1158334,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22818.0,2150.0 +2865117,2865118,24.0,1158334,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22818.0,2150.0 +2865118,2865119,19.0,1158335,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22818.0,2150.0 +2865119,2865120,50.0,1158335,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22818.0,2150.0 +2865120,2865121,19.0,1158336,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22817.0,2150.0 +2865121,2865122,50.0,1158336,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22817.0,2150.0 +2865122,2865123,19.0,1158337,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22817.0,2150.0 +2865123,2865124,50.0,1158337,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22817.0,2150.0 +2865124,2865125,19.0,1158338,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22817.0,2150.0 +2865125,2865126,50.0,1158338,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22817.0,2150.0 +2865126,2865127,19.0,1158339,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22817.0,2150.0 +2865127,2865128,50.0,1158339,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22817.0,2150.0 +2865128,2865129,24.0,1158340,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22812.0,2149.0 +2865129,2865130,24.0,1158341,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22816.0,2150.0 +2865130,2865131,24.0,1158342,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22812.0,2149.0 +2865131,2865132,24.0,1158343,1,2,0,4,2.0,6.0,3.0,16.0,4.0,44611,5.0,22815.0,2150.0 +2865132,2865133,24.0,1158344,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865133,2865134,27.0,1158344,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865134,2865135,19.0,1158345,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865135,2865136,19.0,1158346,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865136,2865137,24.0,1158347,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2865137,2865138,19.0,1158348,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22817.0,2150.0 +2865138,2865139,19.0,1158349,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22816.0,2150.0 +2865139,2865140,24.0,1158350,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22815.0,2150.0 +2865140,2865141,24.0,1158351,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2865141,2865142,24.0,1158352,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22812.0,2149.0 +2865142,2865143,19.0,1158353,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22817.0,2150.0 +2865143,2865144,19.0,1158354,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865144,2865145,19.0,1158355,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22817.0,2150.0 +2865145,2865146,19.0,1158356,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865146,2865147,19.0,1158357,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865147,2865148,19.0,1158358,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22818.0,2150.0 +2865148,2865149,19.0,1158359,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865149,2865150,24.0,1158360,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22817.0,2150.0 +2865150,2865151,23.0,1158361,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22817.0,2150.0 +2865151,2865152,31.0,1158361,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22817.0,2150.0 +2865152,2865153,23.0,1158362,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22817.0,2150.0 +2865153,2865154,31.0,1158362,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22817.0,2150.0 +2865154,2865155,23.0,1158363,1,2,0,3,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22818.0,2150.0 +2865155,2865156,31.0,1158363,2,1,13,1,1.0,45.0,1.0,-9.0,4.0,44511,5.0,22818.0,2150.0 +2865156,2865157,24.0,1158364,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2865157,2865158,26.0,1158364,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22818.0,2150.0 +2865158,2865159,24.0,1158365,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22818.0,2150.0 +2865159,2865160,26.0,1158365,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22818.0,2150.0 +2865160,2865161,24.0,1158366,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22812.0,2149.0 +2865161,2865162,26.0,1158366,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22812.0,2149.0 +2865162,2865163,24.0,1158367,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22816.0,2150.0 +2865163,2865164,26.0,1158367,2,2,1,1,6.0,20.0,1.0,-9.0,3.0,4481,5.0,22816.0,2150.0 +2865164,2865165,23.0,1158368,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22818.0,2150.0 +2865165,2865166,26.0,1158368,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +2865166,2865167,23.0,1158368,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22818.0,2150.0 +2865167,2865168,23.0,1158368,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22818.0,2150.0 +2865168,2865169,23.0,1158369,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22818.0,2150.0 +2865169,2865170,26.0,1158369,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +2865170,2865171,23.0,1158369,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22818.0,2150.0 +2865171,2865172,23.0,1158369,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22818.0,2150.0 +2865172,2865173,23.0,1158370,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22817.0,2150.0 +2865173,2865174,26.0,1158370,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22817.0,2150.0 +2865174,2865175,23.0,1158370,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22817.0,2150.0 +2865175,2865176,23.0,1158370,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22817.0,2150.0 +2865176,2865177,23.0,1158371,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2865177,2865178,26.0,1158371,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2865178,2865179,23.0,1158371,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2865179,2865180,23.0,1158371,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2865180,2865181,23.0,1158372,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22818.0,2150.0 +2865181,2865182,26.0,1158372,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +2865182,2865183,23.0,1158372,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22818.0,2150.0 +2865183,2865184,23.0,1158372,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22818.0,2150.0 +2865184,2865185,23.0,1158373,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22816.0,2150.0 +2865185,2865186,26.0,1158373,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22816.0,2150.0 +2865186,2865187,23.0,1158373,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22816.0,2150.0 +2865187,2865188,23.0,1158373,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22816.0,2150.0 +2865188,2865189,23.0,1158374,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22816.0,2150.0 +2865189,2865190,26.0,1158374,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22816.0,2150.0 +2865190,2865191,23.0,1158374,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22816.0,2150.0 +2865191,2865192,23.0,1158374,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22816.0,2150.0 +2865192,2865193,23.0,1158375,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22817.0,2150.0 +2865193,2865194,26.0,1158375,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22817.0,2150.0 +2865194,2865195,23.0,1158375,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22817.0,2150.0 +2865195,2865196,23.0,1158375,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22817.0,2150.0 +2865196,2865197,23.0,1158376,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22818.0,2150.0 +2865197,2865198,26.0,1158376,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +2865198,2865199,23.0,1158376,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22818.0,2150.0 +2865199,2865200,23.0,1158376,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22818.0,2150.0 +2865200,2865201,23.0,1158377,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22818.0,2150.0 +2865201,2865202,26.0,1158377,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +2865202,2865203,23.0,1158377,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22818.0,2150.0 +2865203,2865204,23.0,1158377,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22818.0,2150.0 +2865204,2865205,23.0,1158378,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2865205,2865206,26.0,1158378,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2865206,2865207,23.0,1158378,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2865207,2865208,23.0,1158378,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2865208,2865209,23.0,1158379,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2865209,2865210,26.0,1158379,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2865210,2865211,23.0,1158379,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2865211,2865212,23.0,1158379,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2865212,2865213,23.0,1158380,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22816.0,2150.0 +2865213,2865214,26.0,1158380,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22816.0,2150.0 +2865214,2865215,23.0,1158380,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22816.0,2150.0 +2865215,2865216,23.0,1158380,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22816.0,2150.0 +2865216,2865217,23.0,1158381,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2865217,2865218,26.0,1158381,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2865218,2865219,23.0,1158381,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2865219,2865220,23.0,1158381,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2865220,2865221,23.0,1158382,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2865221,2865222,26.0,1158382,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2865222,2865223,23.0,1158382,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2865223,2865224,23.0,1158382,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2865224,2865225,23.0,1158383,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2865225,2865226,26.0,1158383,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2865226,2865227,23.0,1158383,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2865227,2865228,23.0,1158383,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2865228,2865229,23.0,1158384,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2865229,2865230,26.0,1158384,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2865230,2865231,23.0,1158384,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2865231,2865232,23.0,1158384,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2865232,2865233,23.0,1158385,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22815.0,2150.0 +2865233,2865234,26.0,1158385,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +2865234,2865235,23.0,1158385,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22815.0,2150.0 +2865235,2865236,23.0,1158385,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22815.0,2150.0 +2865236,2865237,23.0,1158386,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22817.0,2150.0 +2865237,2865238,26.0,1158386,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22817.0,2150.0 +2865238,2865239,23.0,1158386,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22817.0,2150.0 +2865239,2865240,23.0,1158386,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22817.0,2150.0 +2865240,2865241,23.0,1158387,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22812.0,2149.0 +2865241,2865242,26.0,1158387,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2865242,2865243,23.0,1158387,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22812.0,2149.0 +2865243,2865244,23.0,1158387,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22812.0,2149.0 +2865244,2865245,23.0,1158388,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22816.0,2150.0 +2865245,2865246,26.0,1158388,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22816.0,2150.0 +2865246,2865247,23.0,1158388,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22816.0,2150.0 +2865247,2865248,23.0,1158388,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22816.0,2150.0 +2865248,2865249,23.0,1158389,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22817.0,2150.0 +2865249,2865250,26.0,1158389,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22817.0,2150.0 +2865250,2865251,23.0,1158389,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22817.0,2150.0 +2865251,2865252,23.0,1158389,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22817.0,2150.0 +2865252,2865253,24.0,1158390,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22812.0,2149.0 +2865253,2865254,25.0,1158390,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22812.0,2149.0 +2865254,2865255,24.0,1158391,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22818.0,2150.0 +2865255,2865256,25.0,1158391,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22818.0,2150.0 +2865256,2865257,24.0,1158392,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22817.0,2150.0 +2865257,2865258,25.0,1158392,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22817.0,2150.0 +2865258,2865259,24.0,1158393,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22817.0,2150.0 +2865259,2865260,25.0,1158393,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22817.0,2150.0 +2865260,2865261,24.0,1158394,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22812.0,2149.0 +2865261,2865262,25.0,1158394,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22812.0,2149.0 +2865262,2865263,24.0,1158395,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22816.0,2150.0 +2865263,2865264,25.0,1158395,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22816.0,2150.0 +2865264,2865265,24.0,1158396,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22812.0,2149.0 +2865265,2865266,25.0,1158396,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22812.0,2149.0 +2865266,2865267,24.0,1158397,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22815.0,2150.0 +2865267,2865268,25.0,1158397,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22815.0,2150.0 +2865268,2865269,24.0,1158398,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22817.0,2150.0 +2865269,2865270,25.0,1158398,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22817.0,2150.0 +2865270,2865271,24.0,1158399,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22817.0,2150.0 +2865271,2865272,25.0,1158399,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22817.0,2150.0 +2865272,2865273,24.0,1158400,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22812.0,2149.0 +2865273,2865274,25.0,1158400,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22812.0,2149.0 +2865274,2865275,24.0,1158401,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22817.0,2150.0 +2865275,2865276,25.0,1158401,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22817.0,2150.0 +2865276,2865277,24.0,1158402,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22812.0,2149.0 +2865277,2865278,25.0,1158402,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22812.0,2149.0 +2865278,2865279,24.0,1158403,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22812.0,2149.0 +2865279,2865280,25.0,1158403,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22812.0,2149.0 +2865280,2865281,24.0,1158404,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22812.0,2149.0 +2865281,2865282,25.0,1158404,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22812.0,2149.0 +2865282,2865283,24.0,1158405,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22817.0,2150.0 +2865283,2865284,25.0,1158405,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22817.0,2150.0 +2865284,2865285,24.0,1158406,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22817.0,2150.0 +2865285,2865286,25.0,1158406,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22817.0,2150.0 +2865286,2865287,24.0,1158407,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22818.0,2150.0 +2865287,2865288,25.0,1158407,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22818.0,2150.0 +2865288,2865289,24.0,1158408,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,8131,17.0,22812.0,2149.0 +2865289,2865290,25.0,1158408,2,1,12,1,1.0,40.0,1.0,-9.0,4.0,311M1,3.0,22812.0,2149.0 +2865290,2865291,22.0,1158409,1,2,0,1,6.0,40.0,6.0,16.0,4.0,5411,10.0,22812.0,2149.0 +2865291,2865292,22.0,1158410,1,2,0,1,6.0,40.0,6.0,16.0,4.0,5411,10.0,22812.0,2149.0 +2865292,2865293,22.0,1158411,1,2,0,1,6.0,40.0,6.0,16.0,4.0,5411,10.0,22817.0,2150.0 +2865293,2865294,22.0,1158412,1,2,0,1,6.0,40.0,6.0,16.0,4.0,5411,10.0,22817.0,2150.0 +2865294,2865295,22.0,1158413,1,2,0,1,6.0,40.0,6.0,16.0,4.0,5411,10.0,22812.0,2149.0 +2865295,2865296,24.0,1158414,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22817.0,2150.0 +2865296,2865297,25.0,1158414,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22817.0,2150.0 +2865297,2865298,24.0,1158415,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22812.0,2149.0 +2865298,2865299,25.0,1158415,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22812.0,2149.0 +2865299,2865300,24.0,1158416,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22818.0,2150.0 +2865300,2865301,25.0,1158416,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22818.0,2150.0 +2865301,2865302,24.0,1158417,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22812.0,2149.0 +2865302,2865303,25.0,1158417,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22812.0,2149.0 +2865303,2865304,24.0,1158418,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22812.0,2149.0 +2865304,2865305,25.0,1158418,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22812.0,2149.0 +2865305,2865306,24.0,1158419,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865306,2865307,25.0,1158419,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865307,2865308,24.0,1158420,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865308,2865309,25.0,1158420,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865309,2865310,24.0,1158421,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865310,2865311,25.0,1158421,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865311,2865312,24.0,1158422,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865312,2865313,25.0,1158422,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865313,2865314,24.0,1158423,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865314,2865315,25.0,1158423,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865315,2865316,24.0,1158424,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865316,2865317,25.0,1158424,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865317,2865318,24.0,1158425,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865318,2865319,25.0,1158425,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865319,2865320,24.0,1158426,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865320,2865321,25.0,1158426,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865321,2865322,24.0,1158427,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865322,2865323,25.0,1158427,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865323,2865324,24.0,1158428,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865324,2865325,25.0,1158428,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865325,2865326,24.0,1158429,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865326,2865327,25.0,1158429,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865327,2865328,24.0,1158430,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2865328,2865329,25.0,1158430,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2865329,2865330,24.0,1158431,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865330,2865331,25.0,1158431,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865331,2865332,24.0,1158432,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865332,2865333,25.0,1158432,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865333,2865334,24.0,1158433,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865334,2865335,25.0,1158433,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865335,2865336,24.0,1158434,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865336,2865337,25.0,1158434,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865337,2865338,24.0,1158435,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865338,2865339,25.0,1158435,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865339,2865340,24.0,1158436,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865340,2865341,25.0,1158436,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865341,2865342,24.0,1158437,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865342,2865343,25.0,1158437,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865343,2865344,24.0,1158438,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865344,2865345,25.0,1158438,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865345,2865346,24.0,1158439,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865346,2865347,25.0,1158439,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865347,2865348,24.0,1158440,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865348,2865349,25.0,1158440,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865349,2865350,24.0,1158441,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865350,2865351,25.0,1158441,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865351,2865352,24.0,1158442,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865352,2865353,25.0,1158442,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865353,2865354,24.0,1158443,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865354,2865355,25.0,1158443,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865355,2865356,24.0,1158444,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865356,2865357,25.0,1158444,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865357,2865358,24.0,1158445,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865358,2865359,25.0,1158445,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865359,2865360,24.0,1158446,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865360,2865361,25.0,1158446,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865361,2865362,24.0,1158447,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865362,2865363,25.0,1158447,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865363,2865364,24.0,1158448,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865364,2865365,25.0,1158448,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865365,2865366,22.0,1158449,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22812.0,2149.0 +2865366,2865367,22.0,1158450,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22818.0,2150.0 +2865367,2865368,22.0,1158451,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22816.0,2150.0 +2865368,2865369,22.0,1158452,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22812.0,2149.0 +2865369,2865370,22.0,1158453,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22812.0,2149.0 +2865370,2865371,22.0,1158454,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22817.0,2150.0 +2865371,2865372,22.0,1158455,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +2865372,2865373,21.0,1158456,1,2,0,1,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +2865373,2865374,22.0,1158457,1,2,0,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22812.0,2149.0 +2865374,2865375,22.0,1158458,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22817.0,2150.0 +2865375,2865376,22.0,1158459,1,2,0,1,1.0,40.0,3.0,15.0,2.0,722Z,16.0,22812.0,2149.0 +2865376,2865377,21.0,1158460,1,2,0,1,1.0,25.0,3.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +2865377,2865378,23.0,1158461,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22816.0,2150.0 +2865378,2865379,21.0,1158462,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22818.0,2150.0 +2865379,2865380,21.0,1158463,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22817.0,2150.0 +2865380,2865381,23.0,1158464,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865381,2865382,23.0,1158465,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2865382,2865383,23.0,1158466,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22816.0,2150.0 +2865383,2865384,24.0,1158467,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865384,2865385,21.0,1158468,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22818.0,2150.0 +2865385,2865386,23.0,1158469,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865386,2865387,23.0,1158470,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2865387,2865388,24.0,1158471,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865388,2865389,22.0,1158472,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865389,2865390,23.0,1158473,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865390,2865391,23.0,1158474,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2865391,2865392,23.0,1158475,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865392,2865393,23.0,1158476,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865393,2865394,23.0,1158477,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865394,2865395,23.0,1158478,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865395,2865396,22.0,1158479,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865396,2865397,21.0,1158480,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22816.0,2150.0 +2865397,2865398,21.0,1158481,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865398,2865399,23.0,1158482,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865399,2865400,23.0,1158483,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865400,2865401,21.0,1158484,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22817.0,2150.0 +2865401,2865402,22.0,1158485,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865402,2865403,22.0,1158486,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865403,2865404,23.0,1158487,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2865404,2865405,21.0,1158488,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22818.0,2150.0 +2865405,2865406,23.0,1158489,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2865406,2865407,23.0,1158490,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865407,2865408,23.0,1158491,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865408,2865409,21.0,1158492,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22816.0,2150.0 +2865409,2865410,23.0,1158493,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865410,2865411,22.0,1158494,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2865411,2865412,21.0,1158495,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22818.0,2150.0 +2865412,2865413,22.0,1158496,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865413,2865414,24.0,1158497,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865414,2865415,23.0,1158498,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865415,2865416,24.0,1158499,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865416,2865417,23.0,1158500,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22817.0,2150.0 +2865417,2865418,23.0,1158501,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865418,2865419,23.0,1158502,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865419,2865420,21.0,1158503,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865420,2865421,23.0,1158504,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22817.0,2150.0 +2865421,2865422,23.0,1158505,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +2865422,2865423,21.0,1158506,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22817.0,2150.0 +2865423,2865424,22.0,1158507,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865424,2865425,22.0,1158508,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865425,2865426,23.0,1158509,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2865426,2865427,23.0,1158510,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2865427,2865428,23.0,1158511,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865428,2865429,23.0,1158512,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865429,2865430,23.0,1158513,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22816.0,2150.0 +2865430,2865431,23.0,1158514,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865431,2865432,22.0,1158515,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +2865432,2865433,21.0,1158516,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22816.0,2150.0 +2865433,2865434,23.0,1158517,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865434,2865435,23.0,1158518,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22817.0,2150.0 +2865435,2865436,23.0,1158519,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865436,2865437,21.0,1158520,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865437,2865438,23.0,1158521,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22816.0,2150.0 +2865438,2865439,23.0,1158522,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2865439,2865440,21.0,1158523,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22817.0,2150.0 +2865440,2865441,21.0,1158524,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22818.0,2150.0 +2865441,2865442,21.0,1158525,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2865442,2865443,22.0,1158526,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865443,2865444,21.0,1158527,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865444,2865445,23.0,1158528,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865445,2865446,23.0,1158529,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2865446,2865447,21.0,1158530,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22818.0,2150.0 +2865447,2865448,21.0,1158531,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22817.0,2150.0 +2865448,2865449,21.0,1158532,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22816.0,2150.0 +2865449,2865450,21.0,1158533,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22817.0,2150.0 +2865450,2865451,22.0,1158534,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865451,2865452,23.0,1158535,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22816.0,2150.0 +2865452,2865453,24.0,1158536,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865453,2865454,21.0,1158537,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865454,2865455,21.0,1158538,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865455,2865456,21.0,1158539,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22818.0,2150.0 +2865456,2865457,21.0,1158540,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2865457,2865458,22.0,1158541,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865458,2865459,23.0,1158542,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865459,2865460,23.0,1158543,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22816.0,2150.0 +2865460,2865461,21.0,1158544,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22817.0,2150.0 +2865461,2865462,21.0,1158545,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22818.0,2150.0 +2865462,2865463,21.0,1158546,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22817.0,2150.0 +2865463,2865464,22.0,1158547,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865464,2865465,24.0,1158548,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865465,2865466,23.0,1158549,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22817.0,2150.0 +2865466,2865467,21.0,1158550,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2865467,2865468,23.0,1158551,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2865468,2865469,21.0,1158552,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22818.0,2150.0 +2865469,2865470,22.0,1158553,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865470,2865471,22.0,1158554,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865471,2865472,22.0,1158555,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865472,2865473,22.0,1158556,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865473,2865474,22.0,1158557,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865474,2865475,23.0,1158558,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865475,2865476,21.0,1158559,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2865476,2865477,21.0,1158560,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2865477,2865478,21.0,1158561,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865478,2865479,23.0,1158562,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865479,2865480,22.0,1158563,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865480,2865481,22.0,1158564,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865481,2865482,23.0,1158565,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2865482,2865483,21.0,1158566,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22818.0,2150.0 +2865483,2865484,21.0,1158567,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865484,2865485,22.0,1158568,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865485,2865486,21.0,1158569,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865486,2865487,21.0,1158570,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2865487,2865488,22.0,1158571,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865488,2865489,23.0,1158572,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22816.0,2150.0 +2865489,2865490,21.0,1158573,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22818.0,2150.0 +2865490,2865491,23.0,1158574,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865491,2865492,24.0,1158575,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865492,2865493,22.0,1158576,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865493,2865494,21.0,1158577,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22817.0,2150.0 +2865494,2865495,22.0,1158578,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865495,2865496,23.0,1158579,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865496,2865497,23.0,1158580,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865497,2865498,21.0,1158581,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22812.0,2149.0 +2865498,2865499,21.0,1158582,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +2865499,2865500,21.0,1158583,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22818.0,2150.0 +2865500,2865501,21.0,1158584,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22812.0,2149.0 +2865501,2865502,23.0,1158585,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22812.0,2149.0 +2865502,2865503,23.0,1158586,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865503,2865504,21.0,1158587,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22817.0,2150.0 +2865504,2865505,24.0,1158588,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22817.0,2150.0 +2865505,2865506,21.0,1158589,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22816.0,2150.0 +2865506,2865507,21.0,1158590,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22817.0,2150.0 +2865507,2865508,22.0,1158591,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865508,2865509,23.0,1158592,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22812.0,2149.0 +2865509,2865510,21.0,1158593,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22817.0,2150.0 +2865510,2865511,21.0,1158594,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22816.0,2150.0 +2865511,2865512,23.0,1158595,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +2865512,2865513,21.0,1158596,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22815.0,2150.0 +2865513,2865514,23.0,1158597,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22818.0,2150.0 +2865514,2865515,24.0,1158598,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22812.0,2149.0 +2865515,2865516,24.0,1158599,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22818.0,2150.0 +2865516,2865517,24.0,1158600,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22812.0,2149.0 +2865517,2865518,24.0,1158601,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22818.0,2150.0 +2865518,2865519,24.0,1158602,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22812.0,2149.0 +2865519,2865520,24.0,1158603,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,5419Z,10.0,22818.0,2150.0 +2865520,2865521,19.0,1158604,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22812.0,2149.0 +2865521,2865522,19.0,1158604,2,1,15,1,1.0,30.0,3.0,15.0,4.0,23,2.0,22812.0,2149.0 +2865522,2865523,66.0,1158605,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22783.0,2138.0 +2865523,2865524,22.0,1158605,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22783.0,2138.0 +2865524,2865525,56.0,1158605,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2865525,2865526,66.0,1158606,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22774.0,2137.0 +2865526,2865527,22.0,1158606,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22774.0,2137.0 +2865527,2865528,56.0,1158606,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22774.0,2137.0 +2865528,2865529,66.0,1158607,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22783.0,2138.0 +2865529,2865530,22.0,1158607,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22783.0,2138.0 +2865530,2865531,56.0,1158607,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2865531,2865532,66.0,1158608,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22782.0,2138.0 +2865532,2865533,22.0,1158608,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22782.0,2138.0 +2865533,2865534,56.0,1158608,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22782.0,2138.0 +2865534,2865535,66.0,1158609,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22775.0,2137.0 +2865535,2865536,22.0,1158609,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22775.0,2137.0 +2865536,2865537,56.0,1158609,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22775.0,2137.0 +2865537,2865538,66.0,1158610,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22783.0,2138.0 +2865538,2865539,22.0,1158610,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22783.0,2138.0 +2865539,2865540,56.0,1158610,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2865540,2865541,66.0,1158611,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22783.0,2138.0 +2865541,2865542,22.0,1158611,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22783.0,2138.0 +2865542,2865543,56.0,1158611,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2865543,2865544,66.0,1158612,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22799.0,2142.0 +2865544,2865545,22.0,1158612,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22799.0,2142.0 +2865545,2865546,56.0,1158612,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22799.0,2142.0 +2865546,2865547,66.0,1158613,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22783.0,2138.0 +2865547,2865548,22.0,1158613,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22783.0,2138.0 +2865548,2865549,56.0,1158613,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2865549,2865550,66.0,1158614,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22781.0,2138.0 +2865550,2865551,22.0,1158614,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22781.0,2138.0 +2865551,2865552,56.0,1158614,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22781.0,2138.0 +2865552,2865553,66.0,1158615,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22778.0,2137.0 +2865553,2865554,22.0,1158615,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22778.0,2137.0 +2865554,2865555,56.0,1158615,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22778.0,2137.0 +2865555,2865556,66.0,1158616,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22776.0,2137.0 +2865556,2865557,22.0,1158616,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22776.0,2137.0 +2865557,2865558,56.0,1158616,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22776.0,2137.0 +2865558,2865559,66.0,1158617,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22783.0,2138.0 +2865559,2865560,22.0,1158617,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22783.0,2138.0 +2865560,2865561,56.0,1158617,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2865561,2865562,66.0,1158618,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22780.0,2138.0 +2865562,2865563,22.0,1158618,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22780.0,2138.0 +2865563,2865564,56.0,1158618,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2865564,2865565,66.0,1158619,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22781.0,2138.0 +2865565,2865566,22.0,1158619,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22781.0,2138.0 +2865566,2865567,56.0,1158619,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22781.0,2138.0 +2865567,2865568,66.0,1158620,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22783.0,2138.0 +2865568,2865569,22.0,1158620,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22783.0,2138.0 +2865569,2865570,56.0,1158620,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2865570,2865571,66.0,1158621,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22775.0,2137.0 +2865571,2865572,22.0,1158621,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22775.0,2137.0 +2865572,2865573,56.0,1158621,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22775.0,2137.0 +2865573,2865574,66.0,1158622,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22774.0,2137.0 +2865574,2865575,22.0,1158622,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22774.0,2137.0 +2865575,2865576,56.0,1158622,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22774.0,2137.0 +2865576,2865577,66.0,1158623,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22780.0,2138.0 +2865577,2865578,22.0,1158623,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22780.0,2138.0 +2865578,2865579,56.0,1158623,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2865579,2865580,66.0,1158624,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22779.0,2138.0 +2865580,2865581,22.0,1158624,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22779.0,2138.0 +2865581,2865582,56.0,1158624,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22779.0,2138.0 +2865582,2865583,66.0,1158625,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22780.0,2138.0 +2865583,2865584,22.0,1158625,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22780.0,2138.0 +2865584,2865585,56.0,1158625,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2865585,2865586,66.0,1158626,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22781.0,2138.0 +2865586,2865587,22.0,1158626,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22781.0,2138.0 +2865587,2865588,56.0,1158626,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22781.0,2138.0 +2865588,2865589,66.0,1158627,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22782.0,2138.0 +2865589,2865590,22.0,1158627,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22782.0,2138.0 +2865590,2865591,56.0,1158627,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22782.0,2138.0 +2865591,2865592,66.0,1158628,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22778.0,2137.0 +2865592,2865593,22.0,1158628,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22778.0,2137.0 +2865593,2865594,56.0,1158628,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22778.0,2137.0 +2865594,2865595,66.0,1158629,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22780.0,2138.0 +2865595,2865596,22.0,1158629,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22780.0,2138.0 +2865596,2865597,56.0,1158629,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2865597,2865598,66.0,1158630,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22799.0,2142.0 +2865598,2865599,22.0,1158630,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22799.0,2142.0 +2865599,2865600,56.0,1158630,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22799.0,2142.0 +2865600,2865601,66.0,1158631,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22780.0,2138.0 +2865601,2865602,22.0,1158631,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22780.0,2138.0 +2865602,2865603,56.0,1158631,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2865603,2865604,66.0,1158632,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22783.0,2138.0 +2865604,2865605,22.0,1158632,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22783.0,2138.0 +2865605,2865606,56.0,1158632,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2865606,2865607,66.0,1158633,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22783.0,2138.0 +2865607,2865608,22.0,1158633,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22783.0,2138.0 +2865608,2865609,56.0,1158633,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2865609,2865610,66.0,1158634,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22782.0,2138.0 +2865610,2865611,22.0,1158634,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22782.0,2138.0 +2865611,2865612,56.0,1158634,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22782.0,2138.0 +2865612,2865613,66.0,1158635,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22780.0,2138.0 +2865613,2865614,22.0,1158635,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22780.0,2138.0 +2865614,2865615,56.0,1158635,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2865615,2865616,66.0,1158636,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22782.0,2138.0 +2865616,2865617,22.0,1158636,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22782.0,2138.0 +2865617,2865618,56.0,1158636,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22782.0,2138.0 +2865618,2865619,66.0,1158637,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22780.0,2138.0 +2865619,2865620,22.0,1158637,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22780.0,2138.0 +2865620,2865621,56.0,1158637,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2865621,2865622,78.0,1158638,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2865622,2865623,57.0,1158638,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22781.0,2138.0 +2865623,2865624,78.0,1158639,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22799.0,2142.0 +2865624,2865625,57.0,1158639,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22799.0,2142.0 +2865625,2865626,78.0,1158640,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2865626,2865627,57.0,1158640,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22782.0,2138.0 +2865627,2865628,78.0,1158641,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865628,2865629,57.0,1158641,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22775.0,2137.0 +2865629,2865630,78.0,1158642,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22799.0,2142.0 +2865630,2865631,57.0,1158642,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22799.0,2142.0 +2865631,2865632,78.0,1158643,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2865632,2865633,57.0,1158643,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22781.0,2138.0 +2865633,2865634,78.0,1158644,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865634,2865635,57.0,1158644,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22776.0,2137.0 +2865635,2865636,78.0,1158645,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865636,2865637,57.0,1158645,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22775.0,2137.0 +2865637,2865638,78.0,1158646,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865638,2865639,57.0,1158646,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22783.0,2138.0 +2865639,2865640,78.0,1158647,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22778.0,2137.0 +2865640,2865641,57.0,1158647,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22778.0,2137.0 +2865641,2865642,78.0,1158648,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865642,2865643,57.0,1158648,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22780.0,2138.0 +2865643,2865644,87.0,1158649,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2865644,2865645,89.0,1158650,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2865645,2865646,79.0,1158651,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2865646,2865647,89.0,1158652,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22799.0,2142.0 +2865647,2865648,94.0,1158653,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22782.0,2138.0 +2865648,2865649,79.0,1158654,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865649,2865650,79.0,1158655,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2865650,2865651,84.0,1158656,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865651,2865652,76.0,1158657,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865652,2865653,84.0,1158658,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2865653,2865654,79.0,1158659,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865654,2865655,94.0,1158660,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22783.0,2138.0 +2865655,2865656,94.0,1158661,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22782.0,2138.0 +2865656,2865657,89.0,1158662,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865657,2865658,79.0,1158663,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2865658,2865659,71.0,1158664,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865659,2865660,87.0,1158665,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865660,2865661,87.0,1158666,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865661,2865662,79.0,1158667,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865662,2865663,87.0,1158668,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22774.0,2137.0 +2865663,2865664,89.0,1158669,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865664,2865665,87.0,1158670,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865665,2865666,94.0,1158671,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22777.0,2137.0 +2865666,2865667,79.0,1158672,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22779.0,2138.0 +2865667,2865668,73.0,1158673,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865668,2865669,44.0,1158673,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865669,2865670,14.0,1158673,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22783.0,2138.0 +2865670,2865671,13.0,1158673,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22783.0,2138.0 +2865671,2865672,73.0,1158674,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865672,2865673,44.0,1158674,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865673,2865674,14.0,1158674,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22775.0,2137.0 +2865674,2865675,13.0,1158674,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22775.0,2137.0 +2865675,2865676,73.0,1158675,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2865676,2865677,44.0,1158675,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2865677,2865678,14.0,1158675,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22782.0,2138.0 +2865678,2865679,13.0,1158675,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22782.0,2138.0 +2865679,2865680,73.0,1158676,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22799.0,2142.0 +2865680,2865681,44.0,1158676,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22799.0,2142.0 +2865681,2865682,14.0,1158676,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22799.0,2142.0 +2865682,2865683,13.0,1158676,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22799.0,2142.0 +2865683,2865684,73.0,1158677,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865684,2865685,44.0,1158677,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865685,2865686,14.0,1158677,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22776.0,2137.0 +2865686,2865687,13.0,1158677,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22776.0,2137.0 +2865687,2865688,73.0,1158678,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865688,2865689,44.0,1158678,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865689,2865690,14.0,1158678,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22780.0,2138.0 +2865690,2865691,13.0,1158678,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22780.0,2138.0 +2865691,2865692,73.0,1158679,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22778.0,2137.0 +2865692,2865693,44.0,1158679,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22778.0,2137.0 +2865693,2865694,14.0,1158679,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22778.0,2137.0 +2865694,2865695,13.0,1158679,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22778.0,2137.0 +2865695,2865696,73.0,1158680,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865696,2865697,44.0,1158680,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865697,2865698,14.0,1158680,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22780.0,2138.0 +2865698,2865699,13.0,1158680,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22780.0,2138.0 +2865699,2865700,73.0,1158681,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2865700,2865701,44.0,1158681,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2865701,2865702,14.0,1158681,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22781.0,2138.0 +2865702,2865703,13.0,1158681,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22781.0,2138.0 +2865703,2865704,73.0,1158682,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865704,2865705,44.0,1158682,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865705,2865706,14.0,1158682,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22776.0,2137.0 +2865706,2865707,13.0,1158682,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22776.0,2137.0 +2865707,2865708,73.0,1158683,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865708,2865709,44.0,1158683,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865709,2865710,14.0,1158683,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22780.0,2138.0 +2865710,2865711,13.0,1158683,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22780.0,2138.0 +2865711,2865712,73.0,1158684,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865712,2865713,44.0,1158684,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865713,2865714,14.0,1158684,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22783.0,2138.0 +2865714,2865715,13.0,1158684,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22783.0,2138.0 +2865715,2865716,73.0,1158685,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865716,2865717,44.0,1158685,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865717,2865718,14.0,1158685,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22776.0,2137.0 +2865718,2865719,13.0,1158685,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22776.0,2137.0 +2865719,2865720,73.0,1158686,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2865720,2865721,44.0,1158686,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2865721,2865722,14.0,1158686,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22782.0,2138.0 +2865722,2865723,13.0,1158686,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22782.0,2138.0 +2865723,2865724,73.0,1158687,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2865724,2865725,44.0,1158687,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2865725,2865726,14.0,1158687,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22777.0,2137.0 +2865726,2865727,13.0,1158687,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22777.0,2137.0 +2865727,2865728,73.0,1158688,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865728,2865729,44.0,1158688,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865729,2865730,14.0,1158688,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22780.0,2138.0 +2865730,2865731,13.0,1158688,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22780.0,2138.0 +2865731,2865732,73.0,1158689,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2865732,2865733,44.0,1158689,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2865733,2865734,14.0,1158689,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22777.0,2137.0 +2865734,2865735,13.0,1158689,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22777.0,2137.0 +2865735,2865736,73.0,1158690,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865736,2865737,44.0,1158690,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865737,2865738,14.0,1158690,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22775.0,2137.0 +2865738,2865739,13.0,1158690,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22775.0,2137.0 +2865739,2865740,73.0,1158691,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865740,2865741,44.0,1158691,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865741,2865742,14.0,1158691,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22776.0,2137.0 +2865742,2865743,13.0,1158691,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22776.0,2137.0 +2865743,2865744,73.0,1158692,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865744,2865745,44.0,1158692,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865745,2865746,14.0,1158692,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22776.0,2137.0 +2865746,2865747,13.0,1158692,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22776.0,2137.0 +2865747,2865748,73.0,1158693,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865748,2865749,44.0,1158693,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865749,2865750,14.0,1158693,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22783.0,2138.0 +2865750,2865751,13.0,1158693,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22783.0,2138.0 +2865751,2865752,73.0,1158694,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2865752,2865753,44.0,1158694,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2865753,2865754,14.0,1158694,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22777.0,2137.0 +2865754,2865755,13.0,1158694,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22777.0,2137.0 +2865755,2865756,73.0,1158695,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2865756,2865757,44.0,1158695,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2865757,2865758,14.0,1158695,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22781.0,2138.0 +2865758,2865759,13.0,1158695,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22781.0,2138.0 +2865759,2865760,73.0,1158696,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2865760,2865761,44.0,1158696,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2865761,2865762,14.0,1158696,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22777.0,2137.0 +2865762,2865763,13.0,1158696,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22777.0,2137.0 +2865763,2865764,73.0,1158697,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865764,2865765,44.0,1158697,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865765,2865766,14.0,1158697,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22780.0,2138.0 +2865766,2865767,13.0,1158697,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22780.0,2138.0 +2865767,2865768,73.0,1158698,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865768,2865769,44.0,1158698,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865769,2865770,14.0,1158698,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22776.0,2137.0 +2865770,2865771,13.0,1158698,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22776.0,2137.0 +2865771,2865772,73.0,1158699,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865772,2865773,44.0,1158699,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865773,2865774,14.0,1158699,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22783.0,2138.0 +2865774,2865775,13.0,1158699,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22783.0,2138.0 +2865775,2865776,73.0,1158700,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865776,2865777,44.0,1158700,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865777,2865778,14.0,1158700,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22775.0,2137.0 +2865778,2865779,13.0,1158700,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22775.0,2137.0 +2865779,2865780,73.0,1158701,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2865780,2865781,44.0,1158701,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2865781,2865782,14.0,1158701,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22782.0,2138.0 +2865782,2865783,13.0,1158701,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22782.0,2138.0 +2865783,2865784,73.0,1158702,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865784,2865785,44.0,1158702,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865785,2865786,14.0,1158702,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22780.0,2138.0 +2865786,2865787,13.0,1158702,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22780.0,2138.0 +2865787,2865788,73.0,1158703,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865788,2865789,44.0,1158703,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865789,2865790,14.0,1158703,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22783.0,2138.0 +2865790,2865791,13.0,1158703,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22783.0,2138.0 +2865791,2865792,73.0,1158704,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2865792,2865793,44.0,1158704,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2865793,2865794,14.0,1158704,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22781.0,2138.0 +2865794,2865795,13.0,1158704,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22781.0,2138.0 +2865795,2865796,73.0,1158705,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865796,2865797,44.0,1158705,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865797,2865798,14.0,1158705,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22780.0,2138.0 +2865798,2865799,13.0,1158705,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22780.0,2138.0 +2865799,2865800,73.0,1158706,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865800,2865801,44.0,1158706,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865801,2865802,14.0,1158706,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22775.0,2137.0 +2865802,2865803,13.0,1158706,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22775.0,2137.0 +2865803,2865804,73.0,1158707,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2865804,2865805,44.0,1158707,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2865805,2865806,14.0,1158707,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22777.0,2137.0 +2865806,2865807,13.0,1158707,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22777.0,2137.0 +2865807,2865808,73.0,1158708,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865808,2865809,44.0,1158708,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865809,2865810,14.0,1158708,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22780.0,2138.0 +2865810,2865811,13.0,1158708,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22780.0,2138.0 +2865811,2865812,73.0,1158709,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22774.0,2137.0 +2865812,2865813,44.0,1158709,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22774.0,2137.0 +2865813,2865814,14.0,1158709,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22774.0,2137.0 +2865814,2865815,13.0,1158709,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22774.0,2137.0 +2865815,2865816,73.0,1158710,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865816,2865817,44.0,1158710,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2865817,2865818,14.0,1158710,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22783.0,2138.0 +2865818,2865819,13.0,1158710,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22783.0,2138.0 +2865819,2865820,73.0,1158711,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865820,2865821,44.0,1158711,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865821,2865822,14.0,1158711,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22775.0,2137.0 +2865822,2865823,13.0,1158711,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22775.0,2137.0 +2865823,2865824,73.0,1158712,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865824,2865825,44.0,1158712,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865825,2865826,14.0,1158712,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22776.0,2137.0 +2865826,2865827,13.0,1158712,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22776.0,2137.0 +2865827,2865828,73.0,1158713,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865828,2865829,44.0,1158713,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2865829,2865830,14.0,1158713,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22775.0,2137.0 +2865830,2865831,13.0,1158713,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22775.0,2137.0 +2865831,2865832,73.0,1158714,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865832,2865833,44.0,1158714,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2865833,2865834,14.0,1158714,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22780.0,2138.0 +2865834,2865835,13.0,1158714,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22780.0,2138.0 +2865835,2865836,73.0,1158715,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865836,2865837,44.0,1158715,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2865837,2865838,14.0,1158715,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22776.0,2137.0 +2865838,2865839,13.0,1158715,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22776.0,2137.0 +2865839,2865840,54.0,1158716,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2865840,2865841,54.0,1158716,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2865841,2865842,22.0,1158716,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22799.0,2142.0 +2865842,2865843,23.0,1158716,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2865843,2865844,54.0,1158717,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22779.0,2138.0 +2865844,2865845,54.0,1158717,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22779.0,2138.0 +2865845,2865846,22.0,1158717,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22779.0,2138.0 +2865846,2865847,23.0,1158717,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22779.0,2138.0 +2865847,2865848,54.0,1158718,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2865848,2865849,54.0,1158718,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2865849,2865850,22.0,1158718,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22777.0,2137.0 +2865850,2865851,23.0,1158718,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2865851,2865852,54.0,1158719,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865852,2865853,54.0,1158719,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865853,2865854,22.0,1158719,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22783.0,2138.0 +2865854,2865855,23.0,1158719,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865855,2865856,54.0,1158720,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865856,2865857,54.0,1158720,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865857,2865858,22.0,1158720,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22782.0,2138.0 +2865858,2865859,23.0,1158720,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865859,2865860,54.0,1158721,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865860,2865861,54.0,1158721,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865861,2865862,22.0,1158721,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22780.0,2138.0 +2865862,2865863,23.0,1158721,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865863,2865864,54.0,1158722,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865864,2865865,54.0,1158722,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865865,2865866,22.0,1158722,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22775.0,2137.0 +2865866,2865867,23.0,1158722,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865867,2865868,54.0,1158723,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22779.0,2138.0 +2865868,2865869,54.0,1158723,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22779.0,2138.0 +2865869,2865870,22.0,1158723,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22779.0,2138.0 +2865870,2865871,23.0,1158723,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22779.0,2138.0 +2865871,2865872,54.0,1158724,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865872,2865873,54.0,1158724,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865873,2865874,22.0,1158724,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22783.0,2138.0 +2865874,2865875,23.0,1158724,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865875,2865876,54.0,1158725,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865876,2865877,54.0,1158725,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865877,2865878,22.0,1158725,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22775.0,2137.0 +2865878,2865879,23.0,1158725,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865879,2865880,54.0,1158726,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865880,2865881,54.0,1158726,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865881,2865882,22.0,1158726,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22782.0,2138.0 +2865882,2865883,23.0,1158726,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865883,2865884,54.0,1158727,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865884,2865885,54.0,1158727,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865885,2865886,22.0,1158727,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22775.0,2137.0 +2865886,2865887,23.0,1158727,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865887,2865888,54.0,1158728,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865888,2865889,54.0,1158728,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865889,2865890,22.0,1158728,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22780.0,2138.0 +2865890,2865891,23.0,1158728,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865891,2865892,54.0,1158729,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2865892,2865893,54.0,1158729,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2865893,2865894,22.0,1158729,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22799.0,2142.0 +2865894,2865895,23.0,1158729,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2865895,2865896,54.0,1158730,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865896,2865897,54.0,1158730,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865897,2865898,22.0,1158730,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22780.0,2138.0 +2865898,2865899,23.0,1158730,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865899,2865900,54.0,1158731,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2865900,2865901,54.0,1158731,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2865901,2865902,22.0,1158731,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22777.0,2137.0 +2865902,2865903,23.0,1158731,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2865903,2865904,54.0,1158732,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865904,2865905,54.0,1158732,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865905,2865906,22.0,1158732,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22782.0,2138.0 +2865906,2865907,23.0,1158732,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865907,2865908,54.0,1158733,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2865908,2865909,54.0,1158733,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2865909,2865910,22.0,1158733,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22777.0,2137.0 +2865910,2865911,23.0,1158733,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2865911,2865912,54.0,1158734,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865912,2865913,54.0,1158734,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865913,2865914,22.0,1158734,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22782.0,2138.0 +2865914,2865915,23.0,1158734,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865915,2865916,54.0,1158735,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865916,2865917,54.0,1158735,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865917,2865918,22.0,1158735,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22782.0,2138.0 +2865918,2865919,23.0,1158735,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865919,2865920,54.0,1158736,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865920,2865921,54.0,1158736,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865921,2865922,22.0,1158736,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22775.0,2137.0 +2865922,2865923,23.0,1158736,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865923,2865924,54.0,1158737,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865924,2865925,54.0,1158737,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865925,2865926,22.0,1158737,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22780.0,2138.0 +2865926,2865927,23.0,1158737,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865927,2865928,54.0,1158738,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865928,2865929,54.0,1158738,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865929,2865930,22.0,1158738,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22783.0,2138.0 +2865930,2865931,23.0,1158738,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865931,2865932,54.0,1158739,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865932,2865933,54.0,1158739,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865933,2865934,22.0,1158739,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22783.0,2138.0 +2865934,2865935,23.0,1158739,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865935,2865936,54.0,1158740,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865936,2865937,54.0,1158740,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865937,2865938,22.0,1158740,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22783.0,2138.0 +2865938,2865939,23.0,1158740,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865939,2865940,54.0,1158741,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865940,2865941,54.0,1158741,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865941,2865942,22.0,1158741,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22780.0,2138.0 +2865942,2865943,23.0,1158741,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865943,2865944,56.0,1158742,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22776.0,2137.0 +2865944,2865945,55.0,1158742,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22776.0,2137.0 +2865945,2865946,22.0,1158742,3,2,2,1,6.0,5.0,5.0,15.0,4.0,6211,14.0,22776.0,2137.0 +2865946,2865947,59.0,1158743,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865947,2865948,23.0,1158743,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22783.0,2138.0 +2865948,2865949,59.0,1158744,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22781.0,2138.0 +2865949,2865950,23.0,1158744,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22781.0,2138.0 +2865950,2865951,59.0,1158745,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2865951,2865952,23.0,1158745,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22799.0,2142.0 +2865952,2865953,59.0,1158746,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865953,2865954,23.0,1158746,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22782.0,2138.0 +2865954,2865955,59.0,1158747,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865955,2865956,23.0,1158747,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22780.0,2138.0 +2865956,2865957,59.0,1158748,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865957,2865958,23.0,1158748,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22780.0,2138.0 +2865958,2865959,59.0,1158749,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22774.0,2137.0 +2865959,2865960,23.0,1158749,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22774.0,2137.0 +2865960,2865961,59.0,1158750,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865961,2865962,23.0,1158750,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22783.0,2138.0 +2865962,2865963,59.0,1158751,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865963,2865964,23.0,1158751,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22783.0,2138.0 +2865964,2865965,59.0,1158752,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865965,2865966,23.0,1158752,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22782.0,2138.0 +2865966,2865967,59.0,1158753,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865967,2865968,23.0,1158753,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22782.0,2138.0 +2865968,2865969,59.0,1158754,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865969,2865970,23.0,1158754,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22783.0,2138.0 +2865970,2865971,59.0,1158755,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865971,2865972,23.0,1158755,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22780.0,2138.0 +2865972,2865973,59.0,1158756,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865973,2865974,23.0,1158756,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22780.0,2138.0 +2865974,2865975,59.0,1158757,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2865975,2865976,23.0,1158757,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22775.0,2137.0 +2865976,2865977,59.0,1158758,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865977,2865978,23.0,1158758,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22782.0,2138.0 +2865978,2865979,59.0,1158759,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22774.0,2137.0 +2865979,2865980,23.0,1158759,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22774.0,2137.0 +2865980,2865981,59.0,1158760,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2865981,2865982,23.0,1158760,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22783.0,2138.0 +2865982,2865983,59.0,1158761,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2865983,2865984,23.0,1158761,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22782.0,2138.0 +2865984,2865985,59.0,1158762,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2865985,2865986,23.0,1158762,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22799.0,2142.0 +2865986,2865987,59.0,1158763,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22778.0,2137.0 +2865987,2865988,23.0,1158763,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22778.0,2137.0 +2865988,2865989,59.0,1158764,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2865989,2865990,23.0,1158764,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22780.0,2138.0 +2865990,2865991,59.0,1158765,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2865991,2865992,23.0,1158765,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22799.0,2142.0 +2865992,2865993,59.0,1158766,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22776.0,2137.0 +2865993,2865994,23.0,1158766,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22776.0,2137.0 +2865994,2865995,59.0,1158767,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2865995,2865996,23.0,1158767,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22799.0,2142.0 +2865996,2865997,51.0,1158768,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5413,10.0,22781.0,2138.0 +2865997,2865998,59.0,1158769,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22783.0,2138.0 +2865998,2865999,56.0,1158770,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2865999,2866000,59.0,1158771,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22780.0,2138.0 +2866000,2866001,59.0,1158772,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22778.0,2137.0 +2866001,2866002,56.0,1158773,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2866002,2866003,59.0,1158774,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22799.0,2142.0 +2866003,2866004,59.0,1158775,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22783.0,2138.0 +2866004,2866005,59.0,1158776,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22780.0,2138.0 +2866005,2866006,56.0,1158777,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2866006,2866007,59.0,1158778,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22783.0,2138.0 +2866007,2866008,56.0,1158779,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2866008,2866009,59.0,1158780,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22780.0,2138.0 +2866009,2866010,59.0,1158781,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22782.0,2138.0 +2866010,2866011,56.0,1158782,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2866011,2866012,59.0,1158783,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22799.0,2142.0 +2866012,2866013,59.0,1158784,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22781.0,2138.0 +2866013,2866014,56.0,1158785,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2866014,2866015,56.0,1158786,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22776.0,2137.0 +2866015,2866016,59.0,1158787,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22774.0,2137.0 +2866016,2866017,56.0,1158788,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22781.0,2138.0 +2866017,2866018,59.0,1158789,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22783.0,2138.0 +2866018,2866019,59.0,1158790,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22782.0,2138.0 +2866019,2866020,59.0,1158791,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22776.0,2137.0 +2866020,2866021,56.0,1158792,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22775.0,2137.0 +2866021,2866022,59.0,1158793,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22783.0,2138.0 +2866022,2866023,56.0,1158794,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22799.0,2142.0 +2866023,2866024,59.0,1158795,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22781.0,2138.0 +2866024,2866025,59.0,1158796,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22783.0,2138.0 +2866025,2866026,56.0,1158797,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22781.0,2138.0 +2866026,2866027,59.0,1158798,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22783.0,2138.0 +2866027,2866028,59.0,1158799,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22783.0,2138.0 +2866028,2866029,59.0,1158800,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22781.0,2138.0 +2866029,2866030,59.0,1158801,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22782.0,2138.0 +2866030,2866031,59.0,1158802,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22782.0,2138.0 +2866031,2866032,56.0,1158803,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2866032,2866033,59.0,1158804,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22779.0,2138.0 +2866033,2866034,56.0,1158805,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22776.0,2137.0 +2866034,2866035,59.0,1158806,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22783.0,2138.0 +2866035,2866036,59.0,1158807,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22780.0,2138.0 +2866036,2866037,59.0,1158808,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22775.0,2137.0 +2866037,2866038,59.0,1158809,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22778.0,2137.0 +2866038,2866039,59.0,1158810,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22774.0,2137.0 +2866039,2866040,59.0,1158811,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22783.0,2138.0 +2866040,2866041,56.0,1158812,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2866041,2866042,56.0,1158813,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22799.0,2142.0 +2866042,2866043,56.0,1158814,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22781.0,2138.0 +2866043,2866044,59.0,1158815,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22777.0,2137.0 +2866044,2866045,59.0,1158816,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22783.0,2138.0 +2866045,2866046,59.0,1158817,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22774.0,2137.0 +2866046,2866047,59.0,1158818,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22782.0,2138.0 +2866047,2866048,59.0,1158819,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22781.0,2138.0 +2866048,2866049,56.0,1158820,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22774.0,2137.0 +2866049,2866050,59.0,1158821,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22799.0,2142.0 +2866050,2866051,59.0,1158822,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22776.0,2137.0 +2866051,2866052,56.0,1158823,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22779.0,2138.0 +2866052,2866053,59.0,1158824,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22783.0,2138.0 +2866053,2866054,59.0,1158825,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22782.0,2138.0 +2866054,2866055,56.0,1158826,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22782.0,2138.0 +2866055,2866056,59.0,1158827,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22783.0,2138.0 +2866056,2866057,59.0,1158828,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22775.0,2137.0 +2866057,2866058,59.0,1158829,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22780.0,2138.0 +2866058,2866059,56.0,1158830,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22781.0,2138.0 +2866059,2866060,56.0,1158831,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2866060,2866061,61.0,1158832,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22780.0,2138.0 +2866061,2866062,61.0,1158833,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22782.0,2138.0 +2866062,2866063,61.0,1158834,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22775.0,2137.0 +2866063,2866064,61.0,1158835,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22781.0,2138.0 +2866064,2866065,61.0,1158836,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22780.0,2138.0 +2866065,2866066,61.0,1158837,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22780.0,2138.0 +2866066,2866067,61.0,1158838,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22775.0,2137.0 +2866067,2866068,61.0,1158839,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22779.0,2138.0 +2866068,2866069,61.0,1158840,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22780.0,2138.0 +2866069,2866070,61.0,1158841,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22783.0,2138.0 +2866070,2866071,61.0,1158842,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22777.0,2137.0 +2866071,2866072,61.0,1158843,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22783.0,2138.0 +2866072,2866073,61.0,1158844,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22783.0,2138.0 +2866073,2866074,61.0,1158845,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22778.0,2137.0 +2866074,2866075,61.0,1158846,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22783.0,2138.0 +2866075,2866076,69.0,1158846,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22783.0,2138.0 +2866076,2866077,21.0,1158846,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22783.0,2138.0 +2866077,2866078,61.0,1158847,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22781.0,2138.0 +2866078,2866079,69.0,1158847,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22781.0,2138.0 +2866079,2866080,21.0,1158847,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22781.0,2138.0 +2866080,2866081,61.0,1158848,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22778.0,2137.0 +2866081,2866082,69.0,1158848,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22778.0,2137.0 +2866082,2866083,21.0,1158848,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22778.0,2137.0 +2866083,2866084,61.0,1158849,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22782.0,2138.0 +2866084,2866085,69.0,1158849,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22782.0,2138.0 +2866085,2866086,21.0,1158849,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22782.0,2138.0 +2866086,2866087,61.0,1158850,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22781.0,2138.0 +2866087,2866088,69.0,1158850,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22781.0,2138.0 +2866088,2866089,21.0,1158850,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22781.0,2138.0 +2866089,2866090,61.0,1158851,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22799.0,2142.0 +2866090,2866091,69.0,1158851,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22799.0,2142.0 +2866091,2866092,21.0,1158851,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22799.0,2142.0 +2866092,2866093,61.0,1158852,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22783.0,2138.0 +2866093,2866094,69.0,1158852,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22783.0,2138.0 +2866094,2866095,21.0,1158852,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22783.0,2138.0 +2866095,2866096,64.0,1158853,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22777.0,2137.0 +2866096,2866097,72.0,1158853,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2866097,2866098,64.0,1158854,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22783.0,2138.0 +2866098,2866099,72.0,1158854,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2866099,2866100,64.0,1158855,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22783.0,2138.0 +2866100,2866101,72.0,1158855,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2866101,2866102,64.0,1158856,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22780.0,2138.0 +2866102,2866103,72.0,1158856,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2866103,2866104,64.0,1158857,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22777.0,2137.0 +2866104,2866105,72.0,1158857,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2866105,2866106,64.0,1158858,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22776.0,2137.0 +2866106,2866107,72.0,1158858,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2866107,2866108,64.0,1158859,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22776.0,2137.0 +2866108,2866109,72.0,1158859,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22776.0,2137.0 +2866109,2866110,64.0,1158860,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22782.0,2138.0 +2866110,2866111,72.0,1158860,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2866111,2866112,64.0,1158861,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22783.0,2138.0 +2866112,2866113,72.0,1158861,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2866113,2866114,64.0,1158862,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22783.0,2138.0 +2866114,2866115,72.0,1158862,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2866115,2866116,64.0,1158863,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22780.0,2138.0 +2866116,2866117,72.0,1158863,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2866117,2866118,64.0,1158864,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22782.0,2138.0 +2866118,2866119,72.0,1158864,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2866119,2866120,64.0,1158865,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22782.0,2138.0 +2866120,2866121,72.0,1158865,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2866121,2866122,64.0,1158866,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22782.0,2138.0 +2866122,2866123,72.0,1158866,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2866123,2866124,64.0,1158867,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22775.0,2137.0 +2866124,2866125,72.0,1158867,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2866125,2866126,64.0,1158868,1,2,0,1,1.0,9.0,1.0,-9.0,4.0,8129,17.0,22775.0,2137.0 +2866126,2866127,72.0,1158868,2,2,13,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2866127,2866128,57.0,1158869,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22783.0,2138.0 +2866128,2866129,57.0,1158870,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22781.0,2138.0 +2866129,2866130,57.0,1158871,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22780.0,2138.0 +2866130,2866131,57.0,1158872,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22781.0,2138.0 +2866131,2866132,57.0,1158873,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22780.0,2138.0 +2866132,2866133,57.0,1158874,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22776.0,2137.0 +2866133,2866134,57.0,1158875,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22799.0,2142.0 +2866134,2866135,57.0,1158876,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22776.0,2137.0 +2866135,2866136,57.0,1158877,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22774.0,2137.0 +2866136,2866137,57.0,1158878,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22775.0,2137.0 +2866137,2866138,57.0,1158879,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22799.0,2142.0 +2866138,2866139,57.0,1158880,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22783.0,2138.0 +2866139,2866140,57.0,1158881,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22782.0,2138.0 +2866140,2866141,57.0,1158882,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22776.0,2137.0 +2866141,2866142,57.0,1158883,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22780.0,2138.0 +2866142,2866143,53.0,1158884,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22782.0,2138.0 +2866143,2866144,33.0,1158884,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22782.0,2138.0 +2866144,2866145,19.0,1158884,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22782.0,2138.0 +2866145,2866146,15.0,1158884,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22782.0,2138.0 +2866146,2866147,48.0,1158884,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22782.0,2138.0 +2866147,2866148,55.0,1158885,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22775.0,2137.0 +2866148,2866149,55.0,1158885,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2866149,2866150,19.0,1158885,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22775.0,2137.0 +2866150,2866151,17.0,1158885,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22775.0,2137.0 +2866151,2866152,55.0,1158886,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22781.0,2138.0 +2866152,2866153,55.0,1158886,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2866153,2866154,19.0,1158886,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22781.0,2138.0 +2866154,2866155,17.0,1158886,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22781.0,2138.0 +2866155,2866156,55.0,1158887,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22780.0,2138.0 +2866156,2866157,55.0,1158887,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2866157,2866158,19.0,1158887,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22780.0,2138.0 +2866158,2866159,17.0,1158887,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22780.0,2138.0 +2866159,2866160,55.0,1158888,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22799.0,2142.0 +2866160,2866161,55.0,1158888,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22799.0,2142.0 +2866161,2866162,19.0,1158888,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22799.0,2142.0 +2866162,2866163,17.0,1158888,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22799.0,2142.0 +2866163,2866164,55.0,1158889,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22779.0,2138.0 +2866164,2866165,55.0,1158889,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22779.0,2138.0 +2866165,2866166,19.0,1158889,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22779.0,2138.0 +2866166,2866167,17.0,1158889,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22779.0,2138.0 +2866167,2866168,55.0,1158890,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22780.0,2138.0 +2866168,2866169,55.0,1158890,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2866169,2866170,19.0,1158890,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22780.0,2138.0 +2866170,2866171,17.0,1158890,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22780.0,2138.0 +2866171,2866172,55.0,1158891,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22782.0,2138.0 +2866172,2866173,55.0,1158891,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2866173,2866174,19.0,1158891,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22782.0,2138.0 +2866174,2866175,17.0,1158891,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22782.0,2138.0 +2866175,2866176,55.0,1158892,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22799.0,2142.0 +2866176,2866177,55.0,1158892,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22799.0,2142.0 +2866177,2866178,19.0,1158892,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22799.0,2142.0 +2866178,2866179,17.0,1158892,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22799.0,2142.0 +2866179,2866180,55.0,1158893,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22779.0,2138.0 +2866180,2866181,55.0,1158893,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22779.0,2138.0 +2866181,2866182,19.0,1158893,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22779.0,2138.0 +2866182,2866183,17.0,1158893,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22779.0,2138.0 +2866183,2866184,55.0,1158894,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22780.0,2138.0 +2866184,2866185,55.0,1158894,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2866185,2866186,19.0,1158894,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22780.0,2138.0 +2866186,2866187,17.0,1158894,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22780.0,2138.0 +2866187,2866188,55.0,1158895,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22780.0,2138.0 +2866188,2866189,55.0,1158895,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2866189,2866190,19.0,1158895,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22780.0,2138.0 +2866190,2866191,17.0,1158895,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22780.0,2138.0 +2866191,2866192,55.0,1158896,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22780.0,2138.0 +2866192,2866193,55.0,1158896,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2866193,2866194,19.0,1158896,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22780.0,2138.0 +2866194,2866195,17.0,1158896,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22780.0,2138.0 +2866195,2866196,55.0,1158897,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22779.0,2138.0 +2866196,2866197,55.0,1158897,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22779.0,2138.0 +2866197,2866198,19.0,1158897,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22779.0,2138.0 +2866198,2866199,17.0,1158897,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22779.0,2138.0 +2866199,2866200,55.0,1158898,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22780.0,2138.0 +2866200,2866201,55.0,1158898,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2866201,2866202,19.0,1158898,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22780.0,2138.0 +2866202,2866203,17.0,1158898,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22780.0,2138.0 +2866203,2866204,55.0,1158899,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22780.0,2138.0 +2866204,2866205,55.0,1158899,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2866205,2866206,19.0,1158899,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22780.0,2138.0 +2866206,2866207,17.0,1158899,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22780.0,2138.0 +2866207,2866208,55.0,1158900,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22780.0,2138.0 +2866208,2866209,55.0,1158900,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22780.0,2138.0 +2866209,2866210,19.0,1158900,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22780.0,2138.0 +2866210,2866211,17.0,1158900,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22780.0,2138.0 +2866211,2866212,55.0,1158901,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22782.0,2138.0 +2866212,2866213,55.0,1158901,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2866213,2866214,19.0,1158901,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22782.0,2138.0 +2866214,2866215,17.0,1158901,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22782.0,2138.0 +2866215,2866216,55.0,1158902,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22775.0,2137.0 +2866216,2866217,55.0,1158902,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22775.0,2137.0 +2866217,2866218,19.0,1158902,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22775.0,2137.0 +2866218,2866219,17.0,1158902,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22775.0,2137.0 +2866219,2866220,55.0,1158903,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22782.0,2138.0 +2866220,2866221,55.0,1158903,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2866221,2866222,19.0,1158903,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22782.0,2138.0 +2866222,2866223,17.0,1158903,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22782.0,2138.0 +2866223,2866224,55.0,1158904,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22782.0,2138.0 +2866224,2866225,55.0,1158904,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22782.0,2138.0 +2866225,2866226,19.0,1158904,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22782.0,2138.0 +2866226,2866227,17.0,1158904,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22782.0,2138.0 +2866227,2866228,55.0,1158905,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22777.0,2137.0 +2866228,2866229,55.0,1158905,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2866229,2866230,19.0,1158905,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22777.0,2137.0 +2866230,2866231,17.0,1158905,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22777.0,2137.0 +2866231,2866232,55.0,1158906,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22799.0,2142.0 +2866232,2866233,55.0,1158906,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22799.0,2142.0 +2866233,2866234,19.0,1158906,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22799.0,2142.0 +2866234,2866235,17.0,1158906,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22799.0,2142.0 +2866235,2866236,55.0,1158907,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22777.0,2137.0 +2866236,2866237,55.0,1158907,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22777.0,2137.0 +2866237,2866238,19.0,1158907,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22777.0,2137.0 +2866238,2866239,17.0,1158907,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22777.0,2137.0 +2866239,2866240,55.0,1158908,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22781.0,2138.0 +2866240,2866241,55.0,1158908,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2866241,2866242,19.0,1158908,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22781.0,2138.0 +2866242,2866243,17.0,1158908,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22781.0,2138.0 +2866243,2866244,55.0,1158909,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22779.0,2138.0 +2866244,2866245,55.0,1158909,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22779.0,2138.0 +2866245,2866246,19.0,1158909,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22779.0,2138.0 +2866246,2866247,17.0,1158909,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22779.0,2138.0 +2866247,2866248,55.0,1158910,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22774.0,2137.0 +2866248,2866249,55.0,1158910,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22774.0,2137.0 +2866249,2866250,19.0,1158910,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22774.0,2137.0 +2866250,2866251,17.0,1158910,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22774.0,2137.0 +2866251,2866252,55.0,1158911,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22781.0,2138.0 +2866252,2866253,55.0,1158911,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2866253,2866254,19.0,1158911,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22781.0,2138.0 +2866254,2866255,17.0,1158911,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22781.0,2138.0 +2866255,2866256,55.0,1158912,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22774.0,2137.0 +2866256,2866257,55.0,1158912,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22774.0,2137.0 +2866257,2866258,19.0,1158912,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22774.0,2137.0 +2866258,2866259,17.0,1158912,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22774.0,2137.0 +2866259,2866260,55.0,1158913,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22779.0,2138.0 +2866260,2866261,55.0,1158913,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22779.0,2138.0 +2866261,2866262,19.0,1158913,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22779.0,2138.0 +2866262,2866263,17.0,1158913,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22779.0,2138.0 +2866263,2866264,55.0,1158914,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22799.0,2142.0 +2866264,2866265,55.0,1158914,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22799.0,2142.0 +2866265,2866266,19.0,1158914,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22799.0,2142.0 +2866266,2866267,17.0,1158914,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22799.0,2142.0 +2866267,2866268,55.0,1158915,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22774.0,2137.0 +2866268,2866269,55.0,1158915,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22774.0,2137.0 +2866269,2866270,19.0,1158915,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22774.0,2137.0 +2866270,2866271,17.0,1158915,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22774.0,2137.0 +2866271,2866272,47.0,1158916,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22783.0,2138.0 +2866272,2866273,48.0,1158916,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22783.0,2138.0 +2866273,2866274,18.0,1158916,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22783.0,2138.0 +2866274,2866275,15.0,1158916,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22783.0,2138.0 +2866275,2866276,47.0,1158917,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22783.0,2138.0 +2866276,2866277,48.0,1158917,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22783.0,2138.0 +2866277,2866278,18.0,1158917,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22783.0,2138.0 +2866278,2866279,15.0,1158917,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22783.0,2138.0 +2866279,2866280,47.0,1158918,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22777.0,2137.0 +2866280,2866281,48.0,1158918,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22777.0,2137.0 +2866281,2866282,18.0,1158918,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22777.0,2137.0 +2866282,2866283,15.0,1158918,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22777.0,2137.0 +2866283,2866284,47.0,1158919,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22799.0,2142.0 +2866284,2866285,48.0,1158919,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22799.0,2142.0 +2866285,2866286,18.0,1158919,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22799.0,2142.0 +2866286,2866287,15.0,1158919,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22799.0,2142.0 +2866287,2866288,26.0,1158920,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22782.0,2138.0 +2866288,2866289,24.0,1158920,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22782.0,2138.0 +2866289,2866290,26.0,1158921,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22780.0,2138.0 +2866290,2866291,24.0,1158921,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22780.0,2138.0 +2866291,2866292,26.0,1158922,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22782.0,2138.0 +2866292,2866293,24.0,1158922,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22782.0,2138.0 +2866293,2866294,26.0,1158923,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22777.0,2137.0 +2866294,2866295,24.0,1158923,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22777.0,2137.0 +2866295,2866296,26.0,1158924,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22781.0,2138.0 +2866296,2866297,24.0,1158924,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22781.0,2138.0 +2866297,2866298,26.0,1158925,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22783.0,2138.0 +2866298,2866299,24.0,1158925,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22783.0,2138.0 +2866299,2866300,26.0,1158926,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22783.0,2138.0 +2866300,2866301,24.0,1158926,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22783.0,2138.0 +2866301,2866302,26.0,1158927,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22777.0,2137.0 +2866302,2866303,24.0,1158927,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22777.0,2137.0 +2866303,2866304,26.0,1158928,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22775.0,2137.0 +2866304,2866305,24.0,1158928,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22775.0,2137.0 +2866305,2866306,26.0,1158929,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22779.0,2138.0 +2866306,2866307,24.0,1158929,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22779.0,2138.0 +2866307,2866308,26.0,1158930,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22777.0,2137.0 +2866308,2866309,24.0,1158930,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22777.0,2137.0 +2866309,2866310,26.0,1158931,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22782.0,2138.0 +2866310,2866311,24.0,1158931,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22782.0,2138.0 +2866311,2866312,26.0,1158932,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22776.0,2137.0 +2866312,2866313,24.0,1158932,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22776.0,2137.0 +2866313,2866314,26.0,1158933,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22779.0,2138.0 +2866314,2866315,24.0,1158933,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22779.0,2138.0 +2866315,2866316,26.0,1158934,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22781.0,2138.0 +2866316,2866317,24.0,1158934,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22781.0,2138.0 +2866317,2866318,26.0,1158935,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22782.0,2138.0 +2866318,2866319,24.0,1158935,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22782.0,2138.0 +2866319,2866320,26.0,1158936,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22780.0,2138.0 +2866320,2866321,24.0,1158936,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22780.0,2138.0 +2866321,2866322,26.0,1158937,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22777.0,2137.0 +2866322,2866323,24.0,1158937,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22777.0,2137.0 +2866323,2866324,26.0,1158938,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22782.0,2138.0 +2866324,2866325,24.0,1158938,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22782.0,2138.0 +2866325,2866326,26.0,1158939,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22783.0,2138.0 +2866326,2866327,24.0,1158939,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22783.0,2138.0 +2866327,2866328,26.0,1158940,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22783.0,2138.0 +2866328,2866329,24.0,1158940,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22783.0,2138.0 +2866329,2866330,26.0,1158941,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22799.0,2142.0 +2866330,2866331,24.0,1158941,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22799.0,2142.0 +2866331,2866332,26.0,1158942,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22782.0,2138.0 +2866332,2866333,24.0,1158942,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22782.0,2138.0 +2866333,2866334,26.0,1158943,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22783.0,2138.0 +2866334,2866335,24.0,1158943,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22783.0,2138.0 +2866335,2866336,26.0,1158944,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22774.0,2137.0 +2866336,2866337,24.0,1158944,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22774.0,2137.0 +2866337,2866338,26.0,1158945,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22776.0,2137.0 +2866338,2866339,24.0,1158945,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22776.0,2137.0 +2866339,2866340,26.0,1158946,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22783.0,2138.0 +2866340,2866341,24.0,1158946,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22783.0,2138.0 +2866341,2866342,26.0,1158947,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22776.0,2137.0 +2866342,2866343,24.0,1158947,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22776.0,2137.0 +2866343,2866344,26.0,1158948,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22777.0,2137.0 +2866344,2866345,24.0,1158948,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22777.0,2137.0 +2866345,2866346,26.0,1158949,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22782.0,2138.0 +2866346,2866347,24.0,1158949,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22782.0,2138.0 +2866347,2866348,26.0,1158950,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22775.0,2137.0 +2866348,2866349,24.0,1158950,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22775.0,2137.0 +2866349,2866350,26.0,1158951,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22780.0,2138.0 +2866350,2866351,24.0,1158951,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22780.0,2138.0 +2866351,2866352,26.0,1158952,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22775.0,2137.0 +2866352,2866353,24.0,1158952,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22775.0,2137.0 +2866353,2866354,26.0,1158953,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22782.0,2138.0 +2866354,2866355,24.0,1158953,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22782.0,2138.0 +2866355,2866356,26.0,1158954,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22782.0,2138.0 +2866356,2866357,24.0,1158954,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22782.0,2138.0 +2866357,2866358,26.0,1158955,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22781.0,2138.0 +2866358,2866359,24.0,1158955,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22781.0,2138.0 +2866359,2866360,26.0,1158956,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22782.0,2138.0 +2866360,2866361,24.0,1158956,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22782.0,2138.0 +2866361,2866362,26.0,1158957,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22775.0,2137.0 +2866362,2866363,24.0,1158957,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22775.0,2137.0 +2866363,2866364,26.0,1158958,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22774.0,2137.0 +2866364,2866365,24.0,1158958,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22774.0,2137.0 +2866365,2866366,26.0,1158959,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22781.0,2138.0 +2866366,2866367,24.0,1158959,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22781.0,2138.0 +2866367,2866368,26.0,1158960,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22783.0,2138.0 +2866368,2866369,24.0,1158960,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22783.0,2138.0 +2866369,2866370,25.0,1158961,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22777.0,2137.0 +2866370,2866371,25.0,1158962,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22783.0,2138.0 +2866371,2866372,25.0,1158963,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22799.0,2142.0 +2866372,2866373,25.0,1158964,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22780.0,2138.0 +2866373,2866374,25.0,1158965,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22780.0,2138.0 +2866374,2866375,25.0,1158966,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22778.0,2137.0 +2866375,2866376,25.0,1158967,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22780.0,2138.0 +2866376,2866377,25.0,1158968,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22783.0,2138.0 +2866377,2866378,25.0,1158969,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22776.0,2137.0 +2866378,2866379,25.0,1158970,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22783.0,2138.0 +2866379,2866380,25.0,1158971,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22799.0,2142.0 +2866380,2866381,25.0,1158972,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22799.0,2142.0 +2866381,2866382,25.0,1158973,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22782.0,2138.0 +2866382,2866383,25.0,1158974,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22779.0,2138.0 +2866383,2866384,25.0,1158975,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22783.0,2138.0 +2866384,2866385,25.0,1158976,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22783.0,2138.0 +2866385,2866386,25.0,1158977,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22776.0,2137.0 +2866386,2866387,25.0,1158978,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22780.0,2138.0 +2866387,2866388,25.0,1158979,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22780.0,2138.0 +2866388,2866389,25.0,1158980,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22799.0,2142.0 +2866389,2866390,25.0,1158981,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22782.0,2138.0 +2866390,2866391,25.0,1158982,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22780.0,2138.0 +2866391,2866392,25.0,1158983,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22778.0,2137.0 +2866392,2866393,25.0,1158984,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22780.0,2138.0 +2866393,2866394,25.0,1158985,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22783.0,2138.0 +2866394,2866395,25.0,1158986,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22780.0,2138.0 +2866395,2866396,25.0,1158987,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22780.0,2138.0 +2866396,2866397,25.0,1158988,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22799.0,2142.0 +2866397,2866398,25.0,1158989,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22779.0,2138.0 +2866398,2866399,25.0,1158990,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22781.0,2138.0 +2866399,2866400,25.0,1158991,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22783.0,2138.0 +2866400,2866401,25.0,1158992,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22779.0,2138.0 +2866401,2866402,25.0,1158993,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22781.0,2138.0 +2866402,2866403,25.0,1158994,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22776.0,2137.0 +2866403,2866404,25.0,1158995,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22779.0,2138.0 +2866404,2866405,25.0,1158996,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22780.0,2138.0 +2866405,2866406,25.0,1158997,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22776.0,2137.0 +2866406,2866407,25.0,1158998,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22783.0,2138.0 +2866407,2866408,25.0,1158999,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22783.0,2138.0 +2866408,2866409,25.0,1159000,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22779.0,2138.0 +2866409,2866410,25.0,1159001,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22779.0,2138.0 +2866410,2866411,25.0,1159002,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22782.0,2138.0 +2866411,2866412,25.0,1159003,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22777.0,2137.0 +2866412,2866413,25.0,1159004,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22781.0,2138.0 +2866413,2866414,25.0,1159005,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22775.0,2137.0 +2866414,2866415,25.0,1159006,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22799.0,2142.0 +2866415,2866416,27.0,1159007,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22781.0,2138.0 +2866416,2866417,23.0,1159007,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22781.0,2138.0 +2866417,2866418,27.0,1159008,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22775.0,2137.0 +2866418,2866419,23.0,1159008,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22775.0,2137.0 +2866419,2866420,27.0,1159009,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22774.0,2137.0 +2866420,2866421,23.0,1159009,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22774.0,2137.0 +2866421,2866422,27.0,1159010,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22777.0,2137.0 +2866422,2866423,23.0,1159010,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22777.0,2137.0 +2866423,2866424,27.0,1159011,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22780.0,2138.0 +2866424,2866425,23.0,1159011,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22780.0,2138.0 +2866425,2866426,27.0,1159012,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22774.0,2137.0 +2866426,2866427,23.0,1159012,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22774.0,2137.0 +2866427,2866428,27.0,1159013,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22780.0,2138.0 +2866428,2866429,23.0,1159013,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22780.0,2138.0 +2866429,2866430,27.0,1159014,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22782.0,2138.0 +2866430,2866431,23.0,1159014,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22782.0,2138.0 +2866431,2866432,27.0,1159015,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22782.0,2138.0 +2866432,2866433,23.0,1159015,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22782.0,2138.0 +2866433,2866434,27.0,1159016,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22774.0,2137.0 +2866434,2866435,23.0,1159016,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22774.0,2137.0 +2866435,2866436,27.0,1159017,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22781.0,2138.0 +2866436,2866437,23.0,1159017,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22781.0,2138.0 +2866437,2866438,27.0,1159018,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22777.0,2137.0 +2866438,2866439,23.0,1159018,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22777.0,2137.0 +2866439,2866440,27.0,1159019,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22783.0,2138.0 +2866440,2866441,23.0,1159019,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22783.0,2138.0 +2866441,2866442,27.0,1159020,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22776.0,2137.0 +2866442,2866443,23.0,1159020,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22776.0,2137.0 +2866443,2866444,27.0,1159021,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22774.0,2137.0 +2866444,2866445,23.0,1159021,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22774.0,2137.0 +2866445,2866446,27.0,1159022,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22779.0,2138.0 +2866446,2866447,23.0,1159022,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22779.0,2138.0 +2866447,2866448,27.0,1159023,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22799.0,2142.0 +2866448,2866449,23.0,1159023,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22799.0,2142.0 +2866449,2866450,27.0,1159024,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22775.0,2137.0 +2866450,2866451,23.0,1159024,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22775.0,2137.0 +2866451,2866452,27.0,1159025,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22799.0,2142.0 +2866452,2866453,23.0,1159025,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22799.0,2142.0 +2866453,2866454,35.0,1159026,1,2,0,1,1.0,40.0,1.0,16.0,4.0,622M,15.0,22781.0,2138.0 +2866454,2866455,70.0,1159026,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2866455,2866456,35.0,1159027,1,2,0,1,1.0,40.0,1.0,16.0,4.0,622M,15.0,22781.0,2138.0 +2866456,2866457,70.0,1159027,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22781.0,2138.0 +2866457,2866458,35.0,1159028,1,2,0,1,1.0,40.0,1.0,16.0,4.0,622M,15.0,22783.0,2138.0 +2866458,2866459,70.0,1159028,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2866459,2866460,35.0,1159029,1,2,0,1,1.0,40.0,1.0,16.0,4.0,622M,15.0,22783.0,2138.0 +2866460,2866461,70.0,1159029,2,2,6,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22783.0,2138.0 +2866461,2866462,25.0,1159030,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22780.0,2138.0 +2866462,2866463,22.0,1159030,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22780.0,2138.0 +2866463,2866464,21.0,1159030,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22780.0,2138.0 +2866464,2866465,25.0,1159031,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22782.0,2138.0 +2866465,2866466,22.0,1159031,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22782.0,2138.0 +2866466,2866467,21.0,1159031,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22782.0,2138.0 +2866467,2866468,25.0,1159032,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866468,2866469,22.0,1159032,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866469,2866470,21.0,1159032,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866470,2866471,25.0,1159033,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866471,2866472,22.0,1159033,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866472,2866473,21.0,1159033,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866473,2866474,25.0,1159034,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22780.0,2138.0 +2866474,2866475,22.0,1159034,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22780.0,2138.0 +2866475,2866476,21.0,1159034,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22780.0,2138.0 +2866476,2866477,25.0,1159035,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866477,2866478,22.0,1159035,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866478,2866479,21.0,1159035,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866479,2866480,25.0,1159036,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22782.0,2138.0 +2866480,2866481,22.0,1159036,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22782.0,2138.0 +2866481,2866482,21.0,1159036,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22782.0,2138.0 +2866482,2866483,25.0,1159037,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22782.0,2138.0 +2866483,2866484,22.0,1159037,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22782.0,2138.0 +2866484,2866485,21.0,1159037,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22782.0,2138.0 +2866485,2866486,25.0,1159038,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866486,2866487,22.0,1159038,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866487,2866488,21.0,1159038,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866488,2866489,25.0,1159039,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22775.0,2137.0 +2866489,2866490,22.0,1159039,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22775.0,2137.0 +2866490,2866491,21.0,1159039,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22775.0,2137.0 +2866491,2866492,25.0,1159040,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866492,2866493,22.0,1159040,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866493,2866494,21.0,1159040,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866494,2866495,25.0,1159041,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866495,2866496,22.0,1159041,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866496,2866497,21.0,1159041,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866497,2866498,25.0,1159042,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22776.0,2137.0 +2866498,2866499,22.0,1159042,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22776.0,2137.0 +2866499,2866500,21.0,1159042,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22776.0,2137.0 +2866500,2866501,25.0,1159043,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866501,2866502,22.0,1159043,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866502,2866503,21.0,1159043,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866503,2866504,25.0,1159044,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22776.0,2137.0 +2866504,2866505,22.0,1159044,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22776.0,2137.0 +2866505,2866506,21.0,1159044,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22776.0,2137.0 +2866506,2866507,25.0,1159045,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22778.0,2137.0 +2866507,2866508,22.0,1159045,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22778.0,2137.0 +2866508,2866509,21.0,1159045,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22778.0,2137.0 +2866509,2866510,25.0,1159046,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866510,2866511,22.0,1159046,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866511,2866512,21.0,1159046,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866512,2866513,25.0,1159047,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866513,2866514,22.0,1159047,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866514,2866515,21.0,1159047,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866515,2866516,25.0,1159048,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866516,2866517,22.0,1159048,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866517,2866518,21.0,1159048,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866518,2866519,25.0,1159049,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22775.0,2137.0 +2866519,2866520,22.0,1159049,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22775.0,2137.0 +2866520,2866521,21.0,1159049,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22775.0,2137.0 +2866521,2866522,25.0,1159050,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866522,2866523,22.0,1159050,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866523,2866524,21.0,1159050,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866524,2866525,25.0,1159051,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22783.0,2138.0 +2866525,2866526,22.0,1159051,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22783.0,2138.0 +2866526,2866527,21.0,1159051,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22783.0,2138.0 +2866527,2866528,25.0,1159052,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22774.0,2137.0 +2866528,2866529,22.0,1159052,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22774.0,2137.0 +2866529,2866530,21.0,1159052,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22774.0,2137.0 +2866530,2866531,25.0,1159053,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866531,2866532,22.0,1159053,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866532,2866533,21.0,1159053,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866533,2866534,25.0,1159054,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866534,2866535,22.0,1159054,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866535,2866536,21.0,1159054,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866536,2866537,25.0,1159055,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22774.0,2137.0 +2866537,2866538,22.0,1159055,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22774.0,2137.0 +2866538,2866539,21.0,1159055,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22774.0,2137.0 +2866539,2866540,25.0,1159056,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866540,2866541,22.0,1159056,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866541,2866542,21.0,1159056,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866542,2866543,25.0,1159057,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866543,2866544,22.0,1159057,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866544,2866545,21.0,1159057,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866545,2866546,25.0,1159058,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866546,2866547,22.0,1159058,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866547,2866548,21.0,1159058,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866548,2866549,25.0,1159059,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866549,2866550,22.0,1159059,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866550,2866551,21.0,1159059,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866551,2866552,25.0,1159060,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866552,2866553,22.0,1159060,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866553,2866554,21.0,1159060,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866554,2866555,25.0,1159061,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866555,2866556,22.0,1159061,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866556,2866557,21.0,1159061,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22781.0,2138.0 +2866557,2866558,25.0,1159062,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866558,2866559,22.0,1159062,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866559,2866560,21.0,1159062,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22779.0,2138.0 +2866560,2866561,25.0,1159063,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22778.0,2137.0 +2866561,2866562,22.0,1159063,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22778.0,2137.0 +2866562,2866563,21.0,1159063,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22778.0,2137.0 +2866563,2866564,25.0,1159064,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866564,2866565,22.0,1159064,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866565,2866566,21.0,1159064,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22799.0,2142.0 +2866566,2866567,25.0,1159065,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866567,2866568,22.0,1159065,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866568,2866569,21.0,1159065,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22777.0,2137.0 +2866569,2866570,26.0,1159066,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22780.0,2138.0 +2866570,2866571,22.0,1159066,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2866571,2866572,26.0,1159067,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22783.0,2138.0 +2866572,2866573,22.0,1159067,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2866573,2866574,26.0,1159068,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22780.0,2138.0 +2866574,2866575,22.0,1159068,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2866575,2866576,26.0,1159069,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22780.0,2138.0 +2866576,2866577,22.0,1159069,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2866577,2866578,26.0,1159070,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22776.0,2137.0 +2866578,2866579,22.0,1159070,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22776.0,2137.0 +2866579,2866580,26.0,1159071,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22780.0,2138.0 +2866580,2866581,22.0,1159071,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2866581,2866582,26.0,1159072,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22777.0,2137.0 +2866582,2866583,22.0,1159072,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2866583,2866584,26.0,1159073,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22783.0,2138.0 +2866584,2866585,22.0,1159073,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2866585,2866586,26.0,1159074,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22799.0,2142.0 +2866586,2866587,22.0,1159074,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2866587,2866588,26.0,1159075,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22777.0,2137.0 +2866588,2866589,22.0,1159075,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2866589,2866590,26.0,1159076,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22782.0,2138.0 +2866590,2866591,22.0,1159076,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2866591,2866592,26.0,1159077,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22782.0,2138.0 +2866592,2866593,22.0,1159077,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2866593,2866594,26.0,1159078,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22783.0,2138.0 +2866594,2866595,22.0,1159078,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2866595,2866596,26.0,1159079,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22780.0,2138.0 +2866596,2866597,22.0,1159079,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2866597,2866598,26.0,1159080,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22780.0,2138.0 +2866598,2866599,22.0,1159080,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2866599,2866600,26.0,1159081,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22799.0,2142.0 +2866600,2866601,22.0,1159081,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2866601,2866602,26.0,1159082,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22780.0,2138.0 +2866602,2866603,22.0,1159082,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2866603,2866604,26.0,1159083,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22780.0,2138.0 +2866604,2866605,22.0,1159083,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2866605,2866606,26.0,1159084,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22783.0,2138.0 +2866606,2866607,22.0,1159084,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2866607,2866608,26.0,1159085,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22782.0,2138.0 +2866608,2866609,22.0,1159085,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2866609,2866610,41.0,1159086,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,54194,10.0,22781.0,2138.0 +2866610,2866611,41.0,1159087,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,54194,10.0,22782.0,2138.0 +2866611,2866612,41.0,1159088,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,54194,10.0,22783.0,2138.0 +2866612,2866613,41.0,1159089,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,54194,10.0,22780.0,2138.0 +2866613,2866614,41.0,1159090,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,54194,10.0,22782.0,2138.0 +2866614,2866615,41.0,1159091,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,54194,10.0,22774.0,2137.0 +2866615,2866616,41.0,1159092,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,54194,10.0,22774.0,2137.0 +2866616,2866617,41.0,1159093,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,54194,10.0,22783.0,2138.0 +2866617,2866618,32.0,1159094,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22782.0,2138.0 +2866618,2866619,25.0,1159095,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22780.0,2138.0 +2866619,2866620,32.0,1159096,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22782.0,2138.0 +2866620,2866621,25.0,1159097,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22779.0,2138.0 +2866621,2866622,25.0,1159098,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22799.0,2142.0 +2866622,2866623,25.0,1159099,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22783.0,2138.0 +2866623,2866624,32.0,1159100,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22783.0,2138.0 +2866624,2866625,32.0,1159101,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22775.0,2137.0 +2866625,2866626,25.0,1159102,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22775.0,2137.0 +2866626,2866627,25.0,1159103,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22783.0,2138.0 +2866627,2866628,25.0,1159104,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22777.0,2137.0 +2866628,2866629,32.0,1159105,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22781.0,2138.0 +2866629,2866630,25.0,1159106,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22781.0,2138.0 +2866630,2866631,25.0,1159107,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22781.0,2138.0 +2866631,2866632,32.0,1159108,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22783.0,2138.0 +2866632,2866633,32.0,1159109,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22782.0,2138.0 +2866633,2866634,32.0,1159110,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22799.0,2142.0 +2866634,2866635,32.0,1159111,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22783.0,2138.0 +2866635,2866636,25.0,1159112,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22780.0,2138.0 +2866636,2866637,25.0,1159113,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22782.0,2138.0 +2866637,2866638,25.0,1159114,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22783.0,2138.0 +2866638,2866639,32.0,1159115,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22777.0,2137.0 +2866639,2866640,25.0,1159116,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22782.0,2138.0 +2866640,2866641,25.0,1159117,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22783.0,2138.0 +2866641,2866642,32.0,1159118,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22799.0,2142.0 +2866642,2866643,32.0,1159119,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22781.0,2138.0 +2866643,2866644,25.0,1159120,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22782.0,2138.0 +2866644,2866645,25.0,1159121,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22782.0,2138.0 +2866645,2866646,25.0,1159122,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22777.0,2137.0 +2866646,2866647,25.0,1159123,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22774.0,2137.0 +2866647,2866648,32.0,1159124,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22782.0,2138.0 +2866648,2866649,32.0,1159125,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22777.0,2137.0 +2866649,2866650,25.0,1159126,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22782.0,2138.0 +2866650,2866651,25.0,1159127,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22782.0,2138.0 +2866651,2866652,32.0,1159128,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22776.0,2137.0 +2866652,2866653,32.0,1159129,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22783.0,2138.0 +2866653,2866654,25.0,1159130,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22782.0,2138.0 +2866654,2866655,25.0,1159131,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22781.0,2138.0 +2866655,2866656,35.0,1159132,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22783.0,2138.0 +2866656,2866657,35.0,1159133,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22779.0,2138.0 +2866657,2866658,35.0,1159134,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22783.0,2138.0 +2866658,2866659,35.0,1159135,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22799.0,2142.0 +2866659,2866660,35.0,1159136,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22782.0,2138.0 +2866660,2866661,35.0,1159137,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22777.0,2137.0 +2866661,2866662,35.0,1159138,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22775.0,2137.0 +2866662,2866663,35.0,1159139,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22777.0,2137.0 +2866663,2866664,35.0,1159140,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22783.0,2138.0 +2866664,2866665,35.0,1159141,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22783.0,2138.0 +2866665,2866666,35.0,1159142,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22783.0,2138.0 +2866666,2866667,35.0,1159143,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22799.0,2142.0 +2866667,2866668,35.0,1159144,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22783.0,2138.0 +2866668,2866669,35.0,1159145,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22781.0,2138.0 +2866669,2866670,35.0,1159146,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22774.0,2137.0 +2866670,2866671,35.0,1159147,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22780.0,2138.0 +2866671,2866672,35.0,1159148,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22776.0,2137.0 +2866672,2866673,27.0,1159149,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22782.0,2138.0 +2866673,2866674,24.0,1159149,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22782.0,2138.0 +2866674,2866675,43.0,1159150,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22781.0,2138.0 +2866675,2866676,19.0,1159150,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22781.0,2138.0 +2866676,2866677,16.0,1159150,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22781.0,2138.0 +2866677,2866678,14.0,1159150,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22781.0,2138.0 +2866678,2866679,29.0,1159150,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22781.0,2138.0 +2866679,2866680,43.0,1159151,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22777.0,2137.0 +2866680,2866681,19.0,1159151,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22777.0,2137.0 +2866681,2866682,16.0,1159151,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22777.0,2137.0 +2866682,2866683,14.0,1159151,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22777.0,2137.0 +2866683,2866684,29.0,1159151,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22777.0,2137.0 +2866684,2866685,43.0,1159152,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22782.0,2138.0 +2866685,2866686,19.0,1159152,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22782.0,2138.0 +2866686,2866687,16.0,1159152,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22782.0,2138.0 +2866687,2866688,14.0,1159152,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22782.0,2138.0 +2866688,2866689,29.0,1159152,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22782.0,2138.0 +2866689,2866690,43.0,1159153,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22779.0,2138.0 +2866690,2866691,19.0,1159153,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22779.0,2138.0 +2866691,2866692,16.0,1159153,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22779.0,2138.0 +2866692,2866693,14.0,1159153,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22779.0,2138.0 +2866693,2866694,29.0,1159153,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22779.0,2138.0 +2866694,2866695,43.0,1159154,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22782.0,2138.0 +2866695,2866696,19.0,1159154,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22782.0,2138.0 +2866696,2866697,16.0,1159154,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22782.0,2138.0 +2866697,2866698,14.0,1159154,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22782.0,2138.0 +2866698,2866699,29.0,1159154,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22782.0,2138.0 +2866699,2866700,43.0,1159155,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22780.0,2138.0 +2866700,2866701,19.0,1159155,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22780.0,2138.0 +2866701,2866702,16.0,1159155,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22780.0,2138.0 +2866702,2866703,14.0,1159155,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22780.0,2138.0 +2866703,2866704,29.0,1159155,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22780.0,2138.0 +2866704,2866705,43.0,1159156,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22783.0,2138.0 +2866705,2866706,19.0,1159156,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22783.0,2138.0 +2866706,2866707,16.0,1159156,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22783.0,2138.0 +2866707,2866708,14.0,1159156,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22783.0,2138.0 +2866708,2866709,29.0,1159156,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22783.0,2138.0 +2866709,2866710,43.0,1159157,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22780.0,2138.0 +2866710,2866711,19.0,1159157,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22780.0,2138.0 +2866711,2866712,16.0,1159157,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22780.0,2138.0 +2866712,2866713,14.0,1159157,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22780.0,2138.0 +2866713,2866714,29.0,1159157,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22780.0,2138.0 +2866714,2866715,43.0,1159158,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22783.0,2138.0 +2866715,2866716,19.0,1159158,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22783.0,2138.0 +2866716,2866717,16.0,1159158,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22783.0,2138.0 +2866717,2866718,14.0,1159158,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22783.0,2138.0 +2866718,2866719,29.0,1159158,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22783.0,2138.0 +2866719,2866720,43.0,1159159,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22777.0,2137.0 +2866720,2866721,19.0,1159159,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22777.0,2137.0 +2866721,2866722,16.0,1159159,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22777.0,2137.0 +2866722,2866723,14.0,1159159,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22777.0,2137.0 +2866723,2866724,29.0,1159159,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22777.0,2137.0 +2866724,2866725,43.0,1159160,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22776.0,2137.0 +2866725,2866726,19.0,1159160,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22776.0,2137.0 +2866726,2866727,16.0,1159160,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22776.0,2137.0 +2866727,2866728,14.0,1159160,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22776.0,2137.0 +2866728,2866729,29.0,1159160,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22776.0,2137.0 +2866729,2866730,43.0,1159161,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22780.0,2138.0 +2866730,2866731,19.0,1159161,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22780.0,2138.0 +2866731,2866732,16.0,1159161,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22780.0,2138.0 +2866732,2866733,14.0,1159161,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22780.0,2138.0 +2866733,2866734,29.0,1159161,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22780.0,2138.0 +2866734,2866735,43.0,1159162,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22783.0,2138.0 +2866735,2866736,19.0,1159162,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22783.0,2138.0 +2866736,2866737,16.0,1159162,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22783.0,2138.0 +2866737,2866738,14.0,1159162,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22783.0,2138.0 +2866738,2866739,29.0,1159162,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22783.0,2138.0 +2866739,2866740,19.0,1159163,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22777.0,2137.0 +2866740,2866741,50.0,1159163,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22777.0,2137.0 +2866741,2866742,19.0,1159164,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22783.0,2138.0 +2866742,2866743,50.0,1159164,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22783.0,2138.0 +2866743,2866744,19.0,1159165,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22774.0,2137.0 +2866744,2866745,50.0,1159165,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22774.0,2137.0 +2866745,2866746,19.0,1159166,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22780.0,2138.0 +2866746,2866747,50.0,1159166,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22780.0,2138.0 +2866747,2866748,19.0,1159167,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22780.0,2138.0 +2866748,2866749,50.0,1159167,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22780.0,2138.0 +2866749,2866750,19.0,1159168,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22783.0,2138.0 +2866750,2866751,50.0,1159168,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22783.0,2138.0 +2866751,2866752,19.0,1159169,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22799.0,2142.0 +2866752,2866753,50.0,1159169,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22799.0,2142.0 +2866753,2866754,19.0,1159170,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22780.0,2138.0 +2866754,2866755,50.0,1159170,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22780.0,2138.0 +2866755,2866756,19.0,1159171,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22782.0,2138.0 +2866756,2866757,50.0,1159171,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22782.0,2138.0 +2866757,2866758,19.0,1159172,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22782.0,2138.0 +2866758,2866759,50.0,1159172,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22782.0,2138.0 +2866759,2866760,19.0,1159173,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22783.0,2138.0 +2866760,2866761,50.0,1159173,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22783.0,2138.0 +2866761,2866762,19.0,1159174,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22782.0,2138.0 +2866762,2866763,50.0,1159174,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22782.0,2138.0 +2866763,2866764,19.0,1159175,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22777.0,2137.0 +2866764,2866765,50.0,1159175,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22777.0,2137.0 +2866765,2866766,19.0,1159176,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22782.0,2138.0 +2866766,2866767,50.0,1159176,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22782.0,2138.0 +2866767,2866768,19.0,1159177,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22782.0,2138.0 +2866768,2866769,50.0,1159177,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22782.0,2138.0 +2866769,2866770,19.0,1159178,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22774.0,2137.0 +2866770,2866771,50.0,1159178,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22774.0,2137.0 +2866771,2866772,19.0,1159179,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22783.0,2138.0 +2866772,2866773,50.0,1159179,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22783.0,2138.0 +2866773,2866774,19.0,1159180,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22781.0,2138.0 +2866774,2866775,50.0,1159180,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22781.0,2138.0 +2866775,2866776,19.0,1159181,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22780.0,2138.0 +2866776,2866777,50.0,1159181,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22780.0,2138.0 +2866777,2866778,19.0,1159182,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22782.0,2138.0 +2866778,2866779,50.0,1159182,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22782.0,2138.0 +2866779,2866780,19.0,1159183,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22779.0,2138.0 +2866780,2866781,50.0,1159183,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22779.0,2138.0 +2866781,2866782,19.0,1159184,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22780.0,2138.0 +2866782,2866783,50.0,1159184,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22780.0,2138.0 +2866783,2866784,19.0,1159185,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22799.0,2142.0 +2866784,2866785,50.0,1159185,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22799.0,2142.0 +2866785,2866786,19.0,1159186,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22775.0,2137.0 +2866786,2866787,50.0,1159186,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22775.0,2137.0 +2866787,2866788,19.0,1159187,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22775.0,2137.0 +2866788,2866789,50.0,1159187,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22775.0,2137.0 +2866789,2866790,19.0,1159188,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22783.0,2138.0 +2866790,2866791,50.0,1159188,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22783.0,2138.0 +2866791,2866792,19.0,1159189,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22780.0,2138.0 +2866792,2866793,50.0,1159189,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22780.0,2138.0 +2866793,2866794,19.0,1159190,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22780.0,2138.0 +2866794,2866795,50.0,1159190,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22780.0,2138.0 +2866795,2866796,19.0,1159191,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22775.0,2137.0 +2866796,2866797,50.0,1159191,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22775.0,2137.0 +2866797,2866798,19.0,1159192,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22780.0,2138.0 +2866798,2866799,50.0,1159192,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22780.0,2138.0 +2866799,2866800,19.0,1159193,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22799.0,2142.0 +2866800,2866801,50.0,1159193,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22799.0,2142.0 +2866801,2866802,23.0,1159194,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22783.0,2138.0 +2866802,2866803,26.0,1159194,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22783.0,2138.0 +2866803,2866804,23.0,1159195,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22775.0,2137.0 +2866804,2866805,26.0,1159195,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22775.0,2137.0 +2866805,2866806,23.0,1159196,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22776.0,2137.0 +2866806,2866807,26.0,1159196,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22776.0,2137.0 +2866807,2866808,23.0,1159197,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22782.0,2138.0 +2866808,2866809,26.0,1159197,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22782.0,2138.0 +2866809,2866810,23.0,1159198,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22776.0,2137.0 +2866810,2866811,26.0,1159198,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22776.0,2137.0 +2866811,2866812,23.0,1159199,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2866812,2866813,26.0,1159199,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22799.0,2142.0 +2866813,2866814,23.0,1159200,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2866814,2866815,26.0,1159200,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22799.0,2142.0 +2866815,2866816,23.0,1159201,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22777.0,2137.0 +2866816,2866817,26.0,1159201,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22777.0,2137.0 +2866817,2866818,23.0,1159202,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22779.0,2138.0 +2866818,2866819,26.0,1159202,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22779.0,2138.0 +2866819,2866820,23.0,1159203,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22799.0,2142.0 +2866820,2866821,26.0,1159203,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22799.0,2142.0 +2866821,2866822,23.0,1159204,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2866822,2866823,26.0,1159204,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2866823,2866824,23.0,1159205,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22780.0,2138.0 +2866824,2866825,26.0,1159205,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22780.0,2138.0 +2866825,2866826,23.0,1159206,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22774.0,2137.0 +2866826,2866827,26.0,1159206,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22774.0,2137.0 +2866827,2866828,23.0,1159207,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22781.0,2138.0 +2866828,2866829,26.0,1159207,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22781.0,2138.0 +2866829,2866830,66.0,1159208,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2866830,2866831,22.0,1159208,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2866831,2866832,56.0,1159208,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2866832,2866833,66.0,1159209,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2866833,2866834,22.0,1159209,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2866834,2866835,56.0,1159209,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2866835,2866836,66.0,1159210,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2866836,2866837,22.0,1159210,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2866837,2866838,56.0,1159210,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2866838,2866839,66.0,1159211,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22793.0,2140.0 +2866839,2866840,22.0,1159211,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22793.0,2140.0 +2866840,2866841,56.0,1159211,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2866841,2866842,66.0,1159212,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866842,2866843,22.0,1159212,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866843,2866844,56.0,1159212,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866844,2866845,66.0,1159213,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22790.0,2140.0 +2866845,2866846,22.0,1159213,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22790.0,2140.0 +2866846,2866847,56.0,1159213,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22790.0,2140.0 +2866847,2866848,66.0,1159214,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2866848,2866849,22.0,1159214,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2866849,2866850,56.0,1159214,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2866850,2866851,66.0,1159215,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2866851,2866852,22.0,1159215,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2866852,2866853,56.0,1159215,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2866853,2866854,66.0,1159216,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22791.0,2140.0 +2866854,2866855,22.0,1159216,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22791.0,2140.0 +2866855,2866856,56.0,1159216,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22791.0,2140.0 +2866856,2866857,66.0,1159217,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866857,2866858,22.0,1159217,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866858,2866859,56.0,1159217,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866859,2866860,66.0,1159218,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22789.0,2140.0 +2866860,2866861,22.0,1159218,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22789.0,2140.0 +2866861,2866862,56.0,1159218,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2866862,2866863,66.0,1159219,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866863,2866864,22.0,1159219,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866864,2866865,56.0,1159219,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866865,2866866,66.0,1159220,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866866,2866867,22.0,1159220,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866867,2866868,56.0,1159220,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866868,2866869,66.0,1159221,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22790.0,2140.0 +2866869,2866870,22.0,1159221,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22790.0,2140.0 +2866870,2866871,56.0,1159221,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22790.0,2140.0 +2866871,2866872,66.0,1159222,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2866872,2866873,22.0,1159222,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2866873,2866874,56.0,1159222,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2866874,2866875,66.0,1159223,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22791.0,2140.0 +2866875,2866876,22.0,1159223,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22791.0,2140.0 +2866876,2866877,56.0,1159223,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22791.0,2140.0 +2866877,2866878,66.0,1159224,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866878,2866879,22.0,1159224,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866879,2866880,56.0,1159224,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866880,2866881,66.0,1159225,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2866881,2866882,22.0,1159225,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2866882,2866883,56.0,1159225,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2866883,2866884,66.0,1159226,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866884,2866885,22.0,1159226,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866885,2866886,56.0,1159226,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866886,2866887,66.0,1159227,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22789.0,2140.0 +2866887,2866888,22.0,1159227,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22789.0,2140.0 +2866888,2866889,56.0,1159227,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2866889,2866890,66.0,1159228,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2866890,2866891,22.0,1159228,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2866891,2866892,56.0,1159228,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2866892,2866893,66.0,1159229,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22793.0,2140.0 +2866893,2866894,22.0,1159229,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22793.0,2140.0 +2866894,2866895,56.0,1159229,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2866895,2866896,66.0,1159230,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866896,2866897,22.0,1159230,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866897,2866898,56.0,1159230,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866898,2866899,66.0,1159231,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22789.0,2140.0 +2866899,2866900,22.0,1159231,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22789.0,2140.0 +2866900,2866901,56.0,1159231,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2866901,2866902,66.0,1159232,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866902,2866903,22.0,1159232,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866903,2866904,56.0,1159232,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866904,2866905,66.0,1159233,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2866905,2866906,22.0,1159233,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2866906,2866907,56.0,1159233,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2866907,2866908,66.0,1159234,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866908,2866909,22.0,1159234,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866909,2866910,56.0,1159234,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866910,2866911,66.0,1159235,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22797.0,2141.0 +2866911,2866912,22.0,1159235,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22797.0,2141.0 +2866912,2866913,56.0,1159235,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2866913,2866914,66.0,1159236,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22797.0,2141.0 +2866914,2866915,22.0,1159236,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22797.0,2141.0 +2866915,2866916,56.0,1159236,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2866916,2866917,66.0,1159237,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22793.0,2140.0 +2866917,2866918,22.0,1159237,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22793.0,2140.0 +2866918,2866919,56.0,1159237,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2866919,2866920,66.0,1159238,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866920,2866921,22.0,1159238,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866921,2866922,56.0,1159238,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866922,2866923,66.0,1159239,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22789.0,2140.0 +2866923,2866924,22.0,1159239,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22789.0,2140.0 +2866924,2866925,56.0,1159239,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2866925,2866926,66.0,1159240,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866926,2866927,22.0,1159240,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866927,2866928,56.0,1159240,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866928,2866929,66.0,1159241,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22793.0,2140.0 +2866929,2866930,22.0,1159241,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22793.0,2140.0 +2866930,2866931,56.0,1159241,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2866931,2866932,66.0,1159242,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866932,2866933,22.0,1159242,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866933,2866934,56.0,1159242,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866934,2866935,66.0,1159243,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866935,2866936,22.0,1159243,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866936,2866937,56.0,1159243,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866937,2866938,66.0,1159244,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866938,2866939,22.0,1159244,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866939,2866940,56.0,1159244,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866940,2866941,66.0,1159245,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866941,2866942,22.0,1159245,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866942,2866943,56.0,1159245,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866943,2866944,66.0,1159246,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866944,2866945,22.0,1159246,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866945,2866946,56.0,1159246,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866946,2866947,66.0,1159247,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2866947,2866948,22.0,1159247,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2866948,2866949,56.0,1159247,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2866949,2866950,66.0,1159248,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22797.0,2141.0 +2866950,2866951,22.0,1159248,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22797.0,2141.0 +2866951,2866952,56.0,1159248,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2866952,2866953,66.0,1159249,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22793.0,2140.0 +2866953,2866954,22.0,1159249,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22793.0,2140.0 +2866954,2866955,56.0,1159249,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2866955,2866956,66.0,1159250,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866956,2866957,22.0,1159250,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866957,2866958,56.0,1159250,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866958,2866959,66.0,1159251,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22789.0,2140.0 +2866959,2866960,22.0,1159251,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22789.0,2140.0 +2866960,2866961,56.0,1159251,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2866961,2866962,66.0,1159252,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866962,2866963,22.0,1159252,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866963,2866964,56.0,1159252,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866964,2866965,66.0,1159253,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22793.0,2140.0 +2866965,2866966,22.0,1159253,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22793.0,2140.0 +2866966,2866967,56.0,1159253,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2866967,2866968,66.0,1159254,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22792.0,2140.0 +2866968,2866969,22.0,1159254,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22792.0,2140.0 +2866969,2866970,56.0,1159254,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22792.0,2140.0 +2866970,2866971,66.0,1159255,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22788.0,2139.0 +2866971,2866972,22.0,1159255,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22788.0,2139.0 +2866972,2866973,56.0,1159255,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2866973,2866974,66.0,1159256,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22790.0,2140.0 +2866974,2866975,22.0,1159256,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22790.0,2140.0 +2866975,2866976,56.0,1159256,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22790.0,2140.0 +2866976,2866977,66.0,1159257,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22791.0,2140.0 +2866977,2866978,22.0,1159257,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22791.0,2140.0 +2866978,2866979,56.0,1159257,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22791.0,2140.0 +2866979,2866980,66.0,1159258,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2866980,2866981,22.0,1159258,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2866981,2866982,56.0,1159258,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2866982,2866983,66.0,1159259,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22791.0,2140.0 +2866983,2866984,22.0,1159259,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22791.0,2140.0 +2866984,2866985,56.0,1159259,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22791.0,2140.0 +2866985,2866986,66.0,1159260,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22789.0,2140.0 +2866986,2866987,22.0,1159260,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22789.0,2140.0 +2866987,2866988,56.0,1159260,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2866988,2866989,66.0,1159261,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866989,2866990,22.0,1159261,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866990,2866991,56.0,1159261,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866991,2866992,66.0,1159262,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866992,2866993,22.0,1159262,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866993,2866994,56.0,1159262,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866994,2866995,66.0,1159263,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866995,2866996,22.0,1159263,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866996,2866997,56.0,1159263,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2866997,2866998,66.0,1159264,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2866998,2866999,22.0,1159264,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2866999,2867000,56.0,1159264,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2867000,2867001,66.0,1159265,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2867001,2867002,22.0,1159265,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2867002,2867003,56.0,1159265,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2867003,2867004,66.0,1159266,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2867004,2867005,22.0,1159266,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2867005,2867006,56.0,1159266,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2867006,2867007,66.0,1159267,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22793.0,2140.0 +2867007,2867008,22.0,1159267,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22793.0,2140.0 +2867008,2867009,56.0,1159267,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2867009,2867010,66.0,1159268,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22793.0,2140.0 +2867010,2867011,22.0,1159268,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22793.0,2140.0 +2867011,2867012,56.0,1159268,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2867012,2867013,66.0,1159269,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2867013,2867014,22.0,1159269,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2867014,2867015,56.0,1159269,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2867015,2867016,66.0,1159270,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2867016,2867017,22.0,1159270,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2867017,2867018,56.0,1159270,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2867018,2867019,66.0,1159271,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22797.0,2141.0 +2867019,2867020,22.0,1159271,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22797.0,2141.0 +2867020,2867021,56.0,1159271,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2867021,2867022,66.0,1159272,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22793.0,2140.0 +2867022,2867023,22.0,1159272,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22793.0,2140.0 +2867023,2867024,56.0,1159272,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2867024,2867025,66.0,1159273,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2867025,2867026,22.0,1159273,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2867026,2867027,56.0,1159273,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2867027,2867028,66.0,1159274,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2867028,2867029,22.0,1159274,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2867029,2867030,56.0,1159274,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2867030,2867031,66.0,1159275,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22789.0,2140.0 +2867031,2867032,22.0,1159275,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22789.0,2140.0 +2867032,2867033,56.0,1159275,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2867033,2867034,66.0,1159276,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22792.0,2140.0 +2867034,2867035,22.0,1159276,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22792.0,2140.0 +2867035,2867036,56.0,1159276,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22792.0,2140.0 +2867036,2867037,66.0,1159277,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2867037,2867038,22.0,1159277,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2867038,2867039,56.0,1159277,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2867039,2867040,66.0,1159278,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2867040,2867041,22.0,1159278,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2867041,2867042,56.0,1159278,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2867042,2867043,66.0,1159279,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22789.0,2140.0 +2867043,2867044,22.0,1159279,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22789.0,2140.0 +2867044,2867045,56.0,1159279,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2867045,2867046,66.0,1159280,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22798.0,2142.0 +2867046,2867047,22.0,1159280,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22798.0,2142.0 +2867047,2867048,56.0,1159280,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2867048,2867049,66.0,1159281,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22794.0,2141.0 +2867049,2867050,22.0,1159281,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22794.0,2141.0 +2867050,2867051,56.0,1159281,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2867051,2867052,66.0,1159282,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22792.0,2140.0 +2867052,2867053,22.0,1159282,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22792.0,2140.0 +2867053,2867054,56.0,1159282,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22792.0,2140.0 +2867054,2867055,80.0,1159283,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867055,2867056,67.0,1159284,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22791.0,2140.0 +2867056,2867057,94.0,1159285,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867057,2867058,76.0,1159286,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867058,2867059,76.0,1159287,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867059,2867060,80.0,1159288,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867060,2867061,67.0,1159289,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22792.0,2140.0 +2867061,2867062,80.0,1159290,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867062,2867063,94.0,1159291,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867063,2867064,88.0,1159292,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867064,2867065,89.0,1159293,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867065,2867066,73.0,1159294,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22792.0,2140.0 +2867066,2867067,44.0,1159294,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22792.0,2140.0 +2867067,2867068,14.0,1159294,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22792.0,2140.0 +2867068,2867069,13.0,1159294,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22792.0,2140.0 +2867069,2867070,73.0,1159295,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867070,2867071,44.0,1159295,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867071,2867072,14.0,1159295,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22790.0,2140.0 +2867072,2867073,13.0,1159295,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22790.0,2140.0 +2867073,2867074,73.0,1159296,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867074,2867075,44.0,1159296,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867075,2867076,14.0,1159296,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22798.0,2142.0 +2867076,2867077,13.0,1159296,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22798.0,2142.0 +2867077,2867078,73.0,1159297,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867078,2867079,44.0,1159297,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867079,2867080,14.0,1159297,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22794.0,2141.0 +2867080,2867081,13.0,1159297,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22794.0,2141.0 +2867081,2867082,73.0,1159298,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867082,2867083,44.0,1159298,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867083,2867084,14.0,1159298,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22798.0,2142.0 +2867084,2867085,13.0,1159298,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22798.0,2142.0 +2867085,2867086,73.0,1159299,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22791.0,2140.0 +2867086,2867087,44.0,1159299,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22791.0,2140.0 +2867087,2867088,14.0,1159299,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22791.0,2140.0 +2867088,2867089,13.0,1159299,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22791.0,2140.0 +2867089,2867090,73.0,1159300,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867090,2867091,44.0,1159300,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867091,2867092,14.0,1159300,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22798.0,2142.0 +2867092,2867093,13.0,1159300,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22798.0,2142.0 +2867093,2867094,73.0,1159301,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867094,2867095,44.0,1159301,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867095,2867096,14.0,1159301,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22793.0,2140.0 +2867096,2867097,13.0,1159301,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22793.0,2140.0 +2867097,2867098,73.0,1159302,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22792.0,2140.0 +2867098,2867099,44.0,1159302,2,1,2,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22792.0,2140.0 +2867099,2867100,14.0,1159302,3,1,7,1,-9.0,-9.0,-9.0,10.0,-9.0,-9,0.0,22792.0,2140.0 +2867100,2867101,13.0,1159302,4,1,7,1,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22792.0,2140.0 +2867101,2867102,53.0,1159303,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2867102,2867103,18.0,1159303,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2867103,2867104,53.0,1159304,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2867104,2867105,18.0,1159304,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22790.0,2140.0 +2867105,2867106,53.0,1159305,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2867106,2867107,18.0,1159305,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22789.0,2140.0 +2867107,2867108,53.0,1159306,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2867108,2867109,18.0,1159306,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22794.0,2141.0 +2867109,2867110,53.0,1159307,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2867110,2867111,18.0,1159307,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22793.0,2140.0 +2867111,2867112,53.0,1159308,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2867112,2867113,18.0,1159308,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22789.0,2140.0 +2867113,2867114,53.0,1159309,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22791.0,2140.0 +2867114,2867115,18.0,1159309,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22791.0,2140.0 +2867115,2867116,53.0,1159310,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2867116,2867117,18.0,1159310,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2867117,2867118,53.0,1159311,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2867118,2867119,18.0,1159311,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22790.0,2140.0 +2867119,2867120,53.0,1159312,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22791.0,2140.0 +2867120,2867121,18.0,1159312,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22791.0,2140.0 +2867121,2867122,53.0,1159313,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2867122,2867123,18.0,1159313,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22790.0,2140.0 +2867123,2867124,53.0,1159314,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2867124,2867125,18.0,1159314,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2867125,2867126,53.0,1159315,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22791.0,2140.0 +2867126,2867127,18.0,1159315,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22791.0,2140.0 +2867127,2867128,53.0,1159316,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2867128,2867129,18.0,1159316,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22794.0,2141.0 +2867129,2867130,53.0,1159317,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2867130,2867131,18.0,1159317,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22790.0,2140.0 +2867131,2867132,53.0,1159318,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2867132,2867133,18.0,1159318,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2867133,2867134,53.0,1159319,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2867134,2867135,18.0,1159319,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22789.0,2140.0 +2867135,2867136,53.0,1159320,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2867136,2867137,18.0,1159320,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2867137,2867138,53.0,1159321,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2867138,2867139,18.0,1159321,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22793.0,2140.0 +2867139,2867140,53.0,1159322,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2867140,2867141,18.0,1159322,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2867141,2867142,54.0,1159323,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2867142,2867143,54.0,1159323,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2867143,2867144,22.0,1159323,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22794.0,2141.0 +2867144,2867145,23.0,1159323,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2867145,2867146,55.0,1159324,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22792.0,2140.0 +2867146,2867147,55.0,1159324,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22792.0,2140.0 +2867147,2867148,19.0,1159324,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22792.0,2140.0 +2867148,2867149,17.0,1159324,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22792.0,2140.0 +2867149,2867150,55.0,1159325,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867150,2867151,55.0,1159325,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867151,2867152,19.0,1159325,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867152,2867153,17.0,1159325,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867153,2867154,55.0,1159326,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22792.0,2140.0 +2867154,2867155,55.0,1159326,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22792.0,2140.0 +2867155,2867156,19.0,1159326,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22792.0,2140.0 +2867156,2867157,17.0,1159326,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22792.0,2140.0 +2867157,2867158,55.0,1159327,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867158,2867159,55.0,1159327,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867159,2867160,19.0,1159327,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867160,2867161,17.0,1159327,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867161,2867162,55.0,1159328,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867162,2867163,55.0,1159328,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867163,2867164,19.0,1159328,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867164,2867165,17.0,1159328,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867165,2867166,55.0,1159329,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867166,2867167,55.0,1159329,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867167,2867168,19.0,1159329,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867168,2867169,17.0,1159329,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867169,2867170,55.0,1159330,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867170,2867171,55.0,1159330,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867171,2867172,19.0,1159330,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867172,2867173,17.0,1159330,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867173,2867174,55.0,1159331,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867174,2867175,55.0,1159331,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867175,2867176,19.0,1159331,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867176,2867177,17.0,1159331,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867177,2867178,55.0,1159332,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867178,2867179,55.0,1159332,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867179,2867180,19.0,1159332,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867180,2867181,17.0,1159332,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867181,2867182,55.0,1159333,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867182,2867183,55.0,1159333,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867183,2867184,19.0,1159333,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867184,2867185,17.0,1159333,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867185,2867186,55.0,1159334,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867186,2867187,55.0,1159334,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867187,2867188,19.0,1159334,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867188,2867189,17.0,1159334,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867189,2867190,55.0,1159335,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867190,2867191,55.0,1159335,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867191,2867192,19.0,1159335,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867192,2867193,17.0,1159335,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867193,2867194,55.0,1159336,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867194,2867195,55.0,1159336,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867195,2867196,19.0,1159336,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867196,2867197,17.0,1159336,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867197,2867198,55.0,1159337,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867198,2867199,55.0,1159337,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867199,2867200,19.0,1159337,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867200,2867201,17.0,1159337,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867201,2867202,55.0,1159338,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867202,2867203,55.0,1159338,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867203,2867204,19.0,1159338,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867204,2867205,17.0,1159338,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867205,2867206,55.0,1159339,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22792.0,2140.0 +2867206,2867207,55.0,1159339,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22792.0,2140.0 +2867207,2867208,19.0,1159339,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22792.0,2140.0 +2867208,2867209,17.0,1159339,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22792.0,2140.0 +2867209,2867210,55.0,1159340,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867210,2867211,55.0,1159340,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867211,2867212,19.0,1159340,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867212,2867213,17.0,1159340,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867213,2867214,55.0,1159341,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867214,2867215,55.0,1159341,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867215,2867216,19.0,1159341,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867216,2867217,17.0,1159341,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867217,2867218,55.0,1159342,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867218,2867219,55.0,1159342,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867219,2867220,19.0,1159342,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867220,2867221,17.0,1159342,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867221,2867222,55.0,1159343,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22797.0,2141.0 +2867222,2867223,55.0,1159343,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867223,2867224,19.0,1159343,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22797.0,2141.0 +2867224,2867225,17.0,1159343,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22797.0,2141.0 +2867225,2867226,55.0,1159344,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867226,2867227,55.0,1159344,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867227,2867228,19.0,1159344,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867228,2867229,17.0,1159344,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867229,2867230,55.0,1159345,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22797.0,2141.0 +2867230,2867231,55.0,1159345,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867231,2867232,19.0,1159345,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22797.0,2141.0 +2867232,2867233,17.0,1159345,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22797.0,2141.0 +2867233,2867234,55.0,1159346,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867234,2867235,55.0,1159346,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867235,2867236,19.0,1159346,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867236,2867237,17.0,1159346,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867237,2867238,55.0,1159347,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867238,2867239,55.0,1159347,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867239,2867240,19.0,1159347,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867240,2867241,17.0,1159347,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867241,2867242,55.0,1159348,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867242,2867243,55.0,1159348,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867243,2867244,19.0,1159348,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867244,2867245,17.0,1159348,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867245,2867246,55.0,1159349,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22797.0,2141.0 +2867246,2867247,55.0,1159349,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867247,2867248,19.0,1159349,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22797.0,2141.0 +2867248,2867249,17.0,1159349,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22797.0,2141.0 +2867249,2867250,55.0,1159350,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867250,2867251,55.0,1159350,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867251,2867252,19.0,1159350,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867252,2867253,17.0,1159350,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867253,2867254,55.0,1159351,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867254,2867255,55.0,1159351,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867255,2867256,19.0,1159351,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867256,2867257,17.0,1159351,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867257,2867258,55.0,1159352,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867258,2867259,55.0,1159352,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867259,2867260,19.0,1159352,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867260,2867261,17.0,1159352,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867261,2867262,55.0,1159353,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867262,2867263,55.0,1159353,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867263,2867264,19.0,1159353,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867264,2867265,17.0,1159353,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867265,2867266,55.0,1159354,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867266,2867267,55.0,1159354,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867267,2867268,19.0,1159354,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867268,2867269,17.0,1159354,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867269,2867270,55.0,1159355,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867270,2867271,55.0,1159355,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867271,2867272,19.0,1159355,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867272,2867273,17.0,1159355,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867273,2867274,55.0,1159356,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867274,2867275,55.0,1159356,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867275,2867276,19.0,1159356,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867276,2867277,17.0,1159356,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867277,2867278,55.0,1159357,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867278,2867279,55.0,1159357,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867279,2867280,19.0,1159357,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867280,2867281,17.0,1159357,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867281,2867282,55.0,1159358,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867282,2867283,55.0,1159358,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867283,2867284,19.0,1159358,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867284,2867285,17.0,1159358,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867285,2867286,55.0,1159359,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867286,2867287,55.0,1159359,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867287,2867288,19.0,1159359,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867288,2867289,17.0,1159359,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867289,2867290,55.0,1159360,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867290,2867291,55.0,1159360,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867291,2867292,19.0,1159360,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867292,2867293,17.0,1159360,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867293,2867294,55.0,1159361,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867294,2867295,55.0,1159361,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867295,2867296,19.0,1159361,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867296,2867297,17.0,1159361,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867297,2867298,55.0,1159362,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22792.0,2140.0 +2867298,2867299,55.0,1159362,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22792.0,2140.0 +2867299,2867300,19.0,1159362,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22792.0,2140.0 +2867300,2867301,17.0,1159362,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22792.0,2140.0 +2867301,2867302,55.0,1159363,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867302,2867303,55.0,1159363,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867303,2867304,19.0,1159363,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867304,2867305,17.0,1159363,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867305,2867306,55.0,1159364,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867306,2867307,55.0,1159364,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867307,2867308,19.0,1159364,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867308,2867309,17.0,1159364,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867309,2867310,55.0,1159365,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867310,2867311,55.0,1159365,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867311,2867312,19.0,1159365,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867312,2867313,17.0,1159365,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867313,2867314,55.0,1159366,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22797.0,2141.0 +2867314,2867315,55.0,1159366,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867315,2867316,19.0,1159366,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22797.0,2141.0 +2867316,2867317,17.0,1159366,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22797.0,2141.0 +2867317,2867318,55.0,1159367,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867318,2867319,55.0,1159367,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867319,2867320,19.0,1159367,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867320,2867321,17.0,1159367,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867321,2867322,55.0,1159368,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867322,2867323,55.0,1159368,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867323,2867324,19.0,1159368,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867324,2867325,17.0,1159368,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867325,2867326,55.0,1159369,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867326,2867327,55.0,1159369,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867327,2867328,19.0,1159369,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867328,2867329,17.0,1159369,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867329,2867330,55.0,1159370,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22791.0,2140.0 +2867330,2867331,55.0,1159370,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22791.0,2140.0 +2867331,2867332,19.0,1159370,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22791.0,2140.0 +2867332,2867333,17.0,1159370,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22791.0,2140.0 +2867333,2867334,55.0,1159371,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22791.0,2140.0 +2867334,2867335,55.0,1159371,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22791.0,2140.0 +2867335,2867336,19.0,1159371,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22791.0,2140.0 +2867336,2867337,17.0,1159371,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22791.0,2140.0 +2867337,2867338,55.0,1159372,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867338,2867339,55.0,1159372,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867339,2867340,19.0,1159372,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867340,2867341,17.0,1159372,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867341,2867342,55.0,1159373,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867342,2867343,55.0,1159373,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867343,2867344,19.0,1159373,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867344,2867345,17.0,1159373,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867345,2867346,55.0,1159374,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867346,2867347,55.0,1159374,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867347,2867348,19.0,1159374,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867348,2867349,17.0,1159374,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867349,2867350,55.0,1159375,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867350,2867351,55.0,1159375,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867351,2867352,19.0,1159375,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867352,2867353,17.0,1159375,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867353,2867354,55.0,1159376,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22797.0,2141.0 +2867354,2867355,55.0,1159376,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867355,2867356,19.0,1159376,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22797.0,2141.0 +2867356,2867357,17.0,1159376,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22797.0,2141.0 +2867357,2867358,55.0,1159377,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867358,2867359,55.0,1159377,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867359,2867360,19.0,1159377,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867360,2867361,17.0,1159377,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867361,2867362,55.0,1159378,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867362,2867363,55.0,1159378,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867363,2867364,19.0,1159378,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867364,2867365,17.0,1159378,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867365,2867366,55.0,1159379,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867366,2867367,55.0,1159379,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867367,2867368,19.0,1159379,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867368,2867369,17.0,1159379,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867369,2867370,55.0,1159380,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867370,2867371,55.0,1159380,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867371,2867372,19.0,1159380,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867372,2867373,17.0,1159380,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867373,2867374,55.0,1159381,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867374,2867375,55.0,1159381,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867375,2867376,19.0,1159381,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867376,2867377,17.0,1159381,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867377,2867378,55.0,1159382,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867378,2867379,55.0,1159382,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867379,2867380,19.0,1159382,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867380,2867381,17.0,1159382,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867381,2867382,55.0,1159383,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867382,2867383,55.0,1159383,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867383,2867384,19.0,1159383,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867384,2867385,17.0,1159383,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867385,2867386,55.0,1159384,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22797.0,2141.0 +2867386,2867387,55.0,1159384,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867387,2867388,19.0,1159384,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22797.0,2141.0 +2867388,2867389,17.0,1159384,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22797.0,2141.0 +2867389,2867390,55.0,1159385,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867390,2867391,55.0,1159385,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867391,2867392,19.0,1159385,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867392,2867393,17.0,1159385,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867393,2867394,55.0,1159386,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867394,2867395,55.0,1159386,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867395,2867396,19.0,1159386,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867396,2867397,17.0,1159386,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867397,2867398,55.0,1159387,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867398,2867399,55.0,1159387,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867399,2867400,19.0,1159387,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867400,2867401,17.0,1159387,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867401,2867402,55.0,1159388,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867402,2867403,55.0,1159388,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867403,2867404,19.0,1159388,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867404,2867405,17.0,1159388,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867405,2867406,55.0,1159389,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867406,2867407,55.0,1159389,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867407,2867408,19.0,1159389,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867408,2867409,17.0,1159389,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867409,2867410,55.0,1159390,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867410,2867411,55.0,1159390,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867411,2867412,19.0,1159390,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867412,2867413,17.0,1159390,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867413,2867414,55.0,1159391,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867414,2867415,55.0,1159391,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867415,2867416,19.0,1159391,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867416,2867417,17.0,1159391,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867417,2867418,55.0,1159392,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22797.0,2141.0 +2867418,2867419,55.0,1159392,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867419,2867420,19.0,1159392,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22797.0,2141.0 +2867420,2867421,17.0,1159392,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22797.0,2141.0 +2867421,2867422,55.0,1159393,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867422,2867423,55.0,1159393,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867423,2867424,19.0,1159393,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867424,2867425,17.0,1159393,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867425,2867426,55.0,1159394,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867426,2867427,55.0,1159394,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867427,2867428,19.0,1159394,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867428,2867429,17.0,1159394,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867429,2867430,55.0,1159395,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867430,2867431,55.0,1159395,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867431,2867432,19.0,1159395,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867432,2867433,17.0,1159395,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867433,2867434,55.0,1159396,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22797.0,2141.0 +2867434,2867435,55.0,1159396,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867435,2867436,19.0,1159396,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22797.0,2141.0 +2867436,2867437,17.0,1159396,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22797.0,2141.0 +2867437,2867438,55.0,1159397,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867438,2867439,55.0,1159397,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867439,2867440,19.0,1159397,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867440,2867441,17.0,1159397,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867441,2867442,55.0,1159398,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867442,2867443,55.0,1159398,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867443,2867444,19.0,1159398,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867444,2867445,17.0,1159398,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867445,2867446,55.0,1159399,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22797.0,2141.0 +2867446,2867447,55.0,1159399,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867447,2867448,19.0,1159399,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22797.0,2141.0 +2867448,2867449,17.0,1159399,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22797.0,2141.0 +2867449,2867450,55.0,1159400,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867450,2867451,55.0,1159400,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867451,2867452,19.0,1159400,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867452,2867453,17.0,1159400,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867453,2867454,55.0,1159401,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867454,2867455,55.0,1159401,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867455,2867456,19.0,1159401,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867456,2867457,17.0,1159401,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867457,2867458,55.0,1159402,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867458,2867459,55.0,1159402,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867459,2867460,19.0,1159402,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867460,2867461,17.0,1159402,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867461,2867462,55.0,1159403,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867462,2867463,55.0,1159403,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867463,2867464,19.0,1159403,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867464,2867465,17.0,1159403,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867465,2867466,55.0,1159404,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867466,2867467,55.0,1159404,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867467,2867468,19.0,1159404,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867468,2867469,17.0,1159404,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867469,2867470,55.0,1159405,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867470,2867471,55.0,1159405,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867471,2867472,19.0,1159405,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867472,2867473,17.0,1159405,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867473,2867474,55.0,1159406,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867474,2867475,55.0,1159406,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867475,2867476,19.0,1159406,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867476,2867477,17.0,1159406,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867477,2867478,55.0,1159407,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22797.0,2141.0 +2867478,2867479,55.0,1159407,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867479,2867480,19.0,1159407,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22797.0,2141.0 +2867480,2867481,17.0,1159407,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22797.0,2141.0 +2867481,2867482,55.0,1159408,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22791.0,2140.0 +2867482,2867483,55.0,1159408,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22791.0,2140.0 +2867483,2867484,19.0,1159408,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22791.0,2140.0 +2867484,2867485,17.0,1159408,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22791.0,2140.0 +2867485,2867486,55.0,1159409,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867486,2867487,55.0,1159409,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867487,2867488,19.0,1159409,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867488,2867489,17.0,1159409,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867489,2867490,55.0,1159410,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867490,2867491,55.0,1159410,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867491,2867492,19.0,1159410,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867492,2867493,17.0,1159410,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867493,2867494,55.0,1159411,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867494,2867495,55.0,1159411,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867495,2867496,19.0,1159411,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867496,2867497,17.0,1159411,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867497,2867498,55.0,1159412,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867498,2867499,55.0,1159412,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867499,2867500,19.0,1159412,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867500,2867501,17.0,1159412,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867501,2867502,55.0,1159413,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867502,2867503,55.0,1159413,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867503,2867504,19.0,1159413,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867504,2867505,17.0,1159413,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867505,2867506,55.0,1159414,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867506,2867507,55.0,1159414,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867507,2867508,19.0,1159414,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867508,2867509,17.0,1159414,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867509,2867510,55.0,1159415,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867510,2867511,55.0,1159415,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867511,2867512,19.0,1159415,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867512,2867513,17.0,1159415,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867513,2867514,55.0,1159416,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867514,2867515,55.0,1159416,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867515,2867516,19.0,1159416,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867516,2867517,17.0,1159416,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867517,2867518,55.0,1159417,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867518,2867519,55.0,1159417,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867519,2867520,19.0,1159417,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867520,2867521,17.0,1159417,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867521,2867522,55.0,1159418,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867522,2867523,55.0,1159418,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867523,2867524,19.0,1159418,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867524,2867525,17.0,1159418,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867525,2867526,55.0,1159419,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867526,2867527,55.0,1159419,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867527,2867528,19.0,1159419,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867528,2867529,17.0,1159419,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867529,2867530,55.0,1159420,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867530,2867531,55.0,1159420,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867531,2867532,19.0,1159420,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867532,2867533,17.0,1159420,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867533,2867534,55.0,1159421,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867534,2867535,55.0,1159421,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867535,2867536,19.0,1159421,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867536,2867537,17.0,1159421,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867537,2867538,55.0,1159422,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867538,2867539,55.0,1159422,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867539,2867540,19.0,1159422,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867540,2867541,17.0,1159422,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867541,2867542,55.0,1159423,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867542,2867543,55.0,1159423,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867543,2867544,19.0,1159423,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867544,2867545,17.0,1159423,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867545,2867546,55.0,1159424,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867546,2867547,55.0,1159424,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867547,2867548,19.0,1159424,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867548,2867549,17.0,1159424,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867549,2867550,55.0,1159425,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867550,2867551,55.0,1159425,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867551,2867552,19.0,1159425,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867552,2867553,17.0,1159425,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867553,2867554,55.0,1159426,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867554,2867555,55.0,1159426,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867555,2867556,19.0,1159426,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867556,2867557,17.0,1159426,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867557,2867558,55.0,1159427,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867558,2867559,55.0,1159427,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867559,2867560,19.0,1159427,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867560,2867561,17.0,1159427,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867561,2867562,55.0,1159428,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867562,2867563,55.0,1159428,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867563,2867564,19.0,1159428,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867564,2867565,17.0,1159428,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867565,2867566,55.0,1159429,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867566,2867567,55.0,1159429,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867567,2867568,19.0,1159429,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867568,2867569,17.0,1159429,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867569,2867570,55.0,1159430,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867570,2867571,55.0,1159430,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867571,2867572,19.0,1159430,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867572,2867573,17.0,1159430,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867573,2867574,55.0,1159431,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867574,2867575,55.0,1159431,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867575,2867576,19.0,1159431,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867576,2867577,17.0,1159431,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867577,2867578,55.0,1159432,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867578,2867579,55.0,1159432,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867579,2867580,19.0,1159432,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867580,2867581,17.0,1159432,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867581,2867582,55.0,1159433,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22790.0,2140.0 +2867582,2867583,55.0,1159433,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22790.0,2140.0 +2867583,2867584,19.0,1159433,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22790.0,2140.0 +2867584,2867585,17.0,1159433,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22790.0,2140.0 +2867585,2867586,55.0,1159434,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867586,2867587,55.0,1159434,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867587,2867588,19.0,1159434,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867588,2867589,17.0,1159434,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867589,2867590,55.0,1159435,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867590,2867591,55.0,1159435,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867591,2867592,19.0,1159435,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867592,2867593,17.0,1159435,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867593,2867594,55.0,1159436,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867594,2867595,55.0,1159436,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867595,2867596,19.0,1159436,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867596,2867597,17.0,1159436,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867597,2867598,55.0,1159437,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22789.0,2140.0 +2867598,2867599,55.0,1159437,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22789.0,2140.0 +2867599,2867600,19.0,1159437,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22789.0,2140.0 +2867600,2867601,17.0,1159437,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22789.0,2140.0 +2867601,2867602,55.0,1159438,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867602,2867603,55.0,1159438,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867603,2867604,19.0,1159438,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867604,2867605,17.0,1159438,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867605,2867606,55.0,1159439,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867606,2867607,55.0,1159439,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867607,2867608,19.0,1159439,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867608,2867609,17.0,1159439,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867609,2867610,55.0,1159440,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867610,2867611,55.0,1159440,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867611,2867612,19.0,1159440,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867612,2867613,17.0,1159440,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867613,2867614,55.0,1159441,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22793.0,2140.0 +2867614,2867615,55.0,1159441,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867615,2867616,19.0,1159441,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22793.0,2140.0 +2867616,2867617,17.0,1159441,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22793.0,2140.0 +2867617,2867618,55.0,1159442,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867618,2867619,55.0,1159442,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867619,2867620,19.0,1159442,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867620,2867621,17.0,1159442,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867621,2867622,55.0,1159443,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22794.0,2141.0 +2867622,2867623,55.0,1159443,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867623,2867624,19.0,1159443,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22794.0,2141.0 +2867624,2867625,17.0,1159443,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22794.0,2141.0 +2867625,2867626,55.0,1159444,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867626,2867627,55.0,1159444,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867627,2867628,19.0,1159444,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867628,2867629,17.0,1159444,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867629,2867630,55.0,1159445,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2867630,2867631,55.0,1159445,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867631,2867632,19.0,1159445,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2867632,2867633,17.0,1159445,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2867633,2867634,47.0,1159446,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22798.0,2142.0 +2867634,2867635,48.0,1159446,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22798.0,2142.0 +2867635,2867636,18.0,1159446,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22798.0,2142.0 +2867636,2867637,15.0,1159446,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22798.0,2142.0 +2867637,2867638,47.0,1159447,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22798.0,2142.0 +2867638,2867639,48.0,1159447,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22798.0,2142.0 +2867639,2867640,18.0,1159447,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22798.0,2142.0 +2867640,2867641,15.0,1159447,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22798.0,2142.0 +2867641,2867642,47.0,1159448,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22794.0,2141.0 +2867642,2867643,48.0,1159448,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22794.0,2141.0 +2867643,2867644,18.0,1159448,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22794.0,2141.0 +2867644,2867645,15.0,1159448,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22794.0,2141.0 +2867645,2867646,47.0,1159449,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22790.0,2140.0 +2867646,2867647,48.0,1159449,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22790.0,2140.0 +2867647,2867648,18.0,1159449,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22790.0,2140.0 +2867648,2867649,15.0,1159449,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22790.0,2140.0 +2867649,2867650,47.0,1159450,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22791.0,2140.0 +2867650,2867651,48.0,1159450,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22791.0,2140.0 +2867651,2867652,18.0,1159450,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22791.0,2140.0 +2867652,2867653,15.0,1159450,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22791.0,2140.0 +2867653,2867654,47.0,1159451,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22793.0,2140.0 +2867654,2867655,48.0,1159451,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22793.0,2140.0 +2867655,2867656,18.0,1159451,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22793.0,2140.0 +2867656,2867657,15.0,1159451,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22793.0,2140.0 +2867657,2867658,47.0,1159452,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22789.0,2140.0 +2867658,2867659,48.0,1159452,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22789.0,2140.0 +2867659,2867660,18.0,1159452,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22789.0,2140.0 +2867660,2867661,15.0,1159452,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22789.0,2140.0 +2867661,2867662,47.0,1159453,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22794.0,2141.0 +2867662,2867663,48.0,1159453,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22794.0,2141.0 +2867663,2867664,18.0,1159453,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22794.0,2141.0 +2867664,2867665,15.0,1159453,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22794.0,2141.0 +2867665,2867666,47.0,1159454,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22793.0,2140.0 +2867666,2867667,48.0,1159454,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22793.0,2140.0 +2867667,2867668,18.0,1159454,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22793.0,2140.0 +2867668,2867669,15.0,1159454,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22793.0,2140.0 +2867669,2867670,47.0,1159455,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22798.0,2142.0 +2867670,2867671,48.0,1159455,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22798.0,2142.0 +2867671,2867672,18.0,1159455,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22798.0,2142.0 +2867672,2867673,15.0,1159455,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22798.0,2142.0 +2867673,2867674,47.0,1159456,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22798.0,2142.0 +2867674,2867675,48.0,1159456,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22798.0,2142.0 +2867675,2867676,18.0,1159456,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22798.0,2142.0 +2867676,2867677,15.0,1159456,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22798.0,2142.0 +2867677,2867678,47.0,1159457,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22790.0,2140.0 +2867678,2867679,48.0,1159457,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22790.0,2140.0 +2867679,2867680,18.0,1159457,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22790.0,2140.0 +2867680,2867681,15.0,1159457,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22790.0,2140.0 +2867681,2867682,47.0,1159458,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22792.0,2140.0 +2867682,2867683,48.0,1159458,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22792.0,2140.0 +2867683,2867684,18.0,1159458,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22792.0,2140.0 +2867684,2867685,15.0,1159458,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22792.0,2140.0 +2867685,2867686,47.0,1159459,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22791.0,2140.0 +2867686,2867687,48.0,1159459,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22791.0,2140.0 +2867687,2867688,18.0,1159459,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22791.0,2140.0 +2867688,2867689,15.0,1159459,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22791.0,2140.0 +2867689,2867690,47.0,1159460,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22798.0,2142.0 +2867690,2867691,48.0,1159460,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22798.0,2142.0 +2867691,2867692,18.0,1159460,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22798.0,2142.0 +2867692,2867693,15.0,1159460,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22798.0,2142.0 +2867693,2867694,47.0,1159461,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,53M,9.0,22798.0,2142.0 +2867694,2867695,48.0,1159461,2,2,1,1,6.0,15.0,3.0,-9.0,4.0,5111Z,8.0,22798.0,2142.0 +2867695,2867696,18.0,1159461,3,1,2,1,1.0,10.0,6.0,14.0,4.0,722Z,16.0,22798.0,2142.0 +2867696,2867697,15.0,1159461,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22798.0,2142.0 +2867697,2867698,55.0,1159462,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22794.0,2141.0 +2867698,2867699,56.0,1159462,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2867699,2867700,19.0,1159462,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22794.0,2141.0 +2867700,2867701,15.0,1159462,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22794.0,2141.0 +2867701,2867702,55.0,1159463,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2867702,2867703,56.0,1159463,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2867703,2867704,19.0,1159463,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2867704,2867705,15.0,1159463,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22798.0,2142.0 +2867705,2867706,55.0,1159464,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22789.0,2140.0 +2867706,2867707,56.0,1159464,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2867707,2867708,19.0,1159464,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22789.0,2140.0 +2867708,2867709,15.0,1159464,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22789.0,2140.0 +2867709,2867710,55.0,1159465,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22797.0,2141.0 +2867710,2867711,56.0,1159465,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2867711,2867712,19.0,1159465,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22797.0,2141.0 +2867712,2867713,15.0,1159465,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22797.0,2141.0 +2867713,2867714,55.0,1159466,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2867714,2867715,56.0,1159466,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2867715,2867716,19.0,1159466,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2867716,2867717,15.0,1159466,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22798.0,2142.0 +2867717,2867718,55.0,1159467,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22797.0,2141.0 +2867718,2867719,56.0,1159467,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2867719,2867720,19.0,1159467,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22797.0,2141.0 +2867720,2867721,15.0,1159467,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22797.0,2141.0 +2867721,2867722,55.0,1159468,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22790.0,2140.0 +2867722,2867723,56.0,1159468,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2867723,2867724,19.0,1159468,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22790.0,2140.0 +2867724,2867725,15.0,1159468,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22790.0,2140.0 +2867725,2867726,55.0,1159469,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2867726,2867727,56.0,1159469,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2867727,2867728,19.0,1159469,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2867728,2867729,15.0,1159469,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22798.0,2142.0 +2867729,2867730,26.0,1159470,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22798.0,2142.0 +2867730,2867731,24.0,1159470,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22798.0,2142.0 +2867731,2867732,26.0,1159471,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22789.0,2140.0 +2867732,2867733,24.0,1159471,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22789.0,2140.0 +2867733,2867734,26.0,1159472,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22790.0,2140.0 +2867734,2867735,24.0,1159472,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22790.0,2140.0 +2867735,2867736,26.0,1159473,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22798.0,2142.0 +2867736,2867737,24.0,1159473,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22798.0,2142.0 +2867737,2867738,26.0,1159474,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22794.0,2141.0 +2867738,2867739,24.0,1159474,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22794.0,2141.0 +2867739,2867740,26.0,1159475,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22798.0,2142.0 +2867740,2867741,24.0,1159475,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22798.0,2142.0 +2867741,2867742,26.0,1159476,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22798.0,2142.0 +2867742,2867743,24.0,1159476,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22798.0,2142.0 +2867743,2867744,26.0,1159477,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22794.0,2141.0 +2867744,2867745,24.0,1159477,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22794.0,2141.0 +2867745,2867746,35.0,1159478,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22794.0,2141.0 +2867746,2867747,24.0,1159478,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22794.0,2141.0 +2867747,2867748,35.0,1159479,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2867748,2867749,24.0,1159479,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867749,2867750,35.0,1159480,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22797.0,2141.0 +2867750,2867751,24.0,1159480,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867751,2867752,35.0,1159481,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22791.0,2140.0 +2867752,2867753,24.0,1159481,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22791.0,2140.0 +2867753,2867754,35.0,1159482,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22793.0,2140.0 +2867754,2867755,24.0,1159482,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22793.0,2140.0 +2867755,2867756,35.0,1159483,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2867756,2867757,24.0,1159483,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2867757,2867758,35.0,1159484,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22797.0,2141.0 +2867758,2867759,24.0,1159484,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22797.0,2141.0 +2867759,2867760,40.0,1159485,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22794.0,2141.0 +2867760,2867761,21.0,1159485,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22794.0,2141.0 +2867761,2867762,40.0,1159486,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22793.0,2140.0 +2867762,2867763,21.0,1159486,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2867763,2867764,40.0,1159487,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22793.0,2140.0 +2867764,2867765,21.0,1159487,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2867765,2867766,40.0,1159488,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867766,2867767,21.0,1159488,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867767,2867768,40.0,1159489,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867768,2867769,21.0,1159489,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867769,2867770,40.0,1159490,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22789.0,2140.0 +2867770,2867771,21.0,1159490,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2867771,2867772,40.0,1159491,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22793.0,2140.0 +2867772,2867773,21.0,1159491,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2867773,2867774,40.0,1159492,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867774,2867775,21.0,1159492,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867775,2867776,40.0,1159493,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867776,2867777,21.0,1159493,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867777,2867778,40.0,1159494,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867778,2867779,21.0,1159494,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867779,2867780,40.0,1159495,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22794.0,2141.0 +2867780,2867781,21.0,1159495,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22794.0,2141.0 +2867781,2867782,40.0,1159496,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867782,2867783,21.0,1159496,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867783,2867784,40.0,1159497,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867784,2867785,21.0,1159497,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867785,2867786,40.0,1159498,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22794.0,2141.0 +2867786,2867787,21.0,1159498,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22794.0,2141.0 +2867787,2867788,40.0,1159499,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867788,2867789,21.0,1159499,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867789,2867790,40.0,1159500,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22794.0,2141.0 +2867790,2867791,21.0,1159500,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22794.0,2141.0 +2867791,2867792,40.0,1159501,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22793.0,2140.0 +2867792,2867793,21.0,1159501,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2867793,2867794,40.0,1159502,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22792.0,2140.0 +2867794,2867795,21.0,1159502,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2867795,2867796,40.0,1159503,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867796,2867797,21.0,1159503,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867797,2867798,40.0,1159504,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22791.0,2140.0 +2867798,2867799,21.0,1159504,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22791.0,2140.0 +2867799,2867800,40.0,1159505,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22797.0,2141.0 +2867800,2867801,21.0,1159505,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2867801,2867802,40.0,1159506,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867802,2867803,21.0,1159506,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867803,2867804,40.0,1159507,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22789.0,2140.0 +2867804,2867805,21.0,1159507,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2867805,2867806,40.0,1159508,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22790.0,2140.0 +2867806,2867807,21.0,1159508,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22790.0,2140.0 +2867807,2867808,40.0,1159509,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22791.0,2140.0 +2867808,2867809,21.0,1159509,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22791.0,2140.0 +2867809,2867810,40.0,1159510,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867810,2867811,21.0,1159510,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867811,2867812,40.0,1159511,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22797.0,2141.0 +2867812,2867813,21.0,1159511,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2867813,2867814,40.0,1159512,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22792.0,2140.0 +2867814,2867815,21.0,1159512,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2867815,2867816,40.0,1159513,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22794.0,2141.0 +2867816,2867817,21.0,1159513,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22794.0,2141.0 +2867817,2867818,40.0,1159514,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867818,2867819,21.0,1159514,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867819,2867820,40.0,1159515,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22793.0,2140.0 +2867820,2867821,21.0,1159515,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2867821,2867822,40.0,1159516,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22792.0,2140.0 +2867822,2867823,21.0,1159516,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2867823,2867824,40.0,1159517,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22798.0,2142.0 +2867824,2867825,21.0,1159517,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2867825,2867826,40.0,1159518,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22790.0,2140.0 +2867826,2867827,21.0,1159518,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22790.0,2140.0 +2867827,2867828,40.0,1159519,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22794.0,2141.0 +2867828,2867829,21.0,1159519,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22794.0,2141.0 +2867829,2867830,25.0,1159520,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22798.0,2142.0 +2867830,2867831,25.0,1159521,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22790.0,2140.0 +2867831,2867832,25.0,1159522,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22789.0,2140.0 +2867832,2867833,27.0,1159523,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22791.0,2140.0 +2867833,2867834,23.0,1159523,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22791.0,2140.0 +2867834,2867835,27.0,1159524,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22790.0,2140.0 +2867835,2867836,23.0,1159524,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22790.0,2140.0 +2867836,2867837,27.0,1159525,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867837,2867838,23.0,1159525,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867838,2867839,27.0,1159526,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22797.0,2141.0 +2867839,2867840,23.0,1159526,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22797.0,2141.0 +2867840,2867841,27.0,1159527,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22789.0,2140.0 +2867841,2867842,23.0,1159527,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22789.0,2140.0 +2867842,2867843,27.0,1159528,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22790.0,2140.0 +2867843,2867844,23.0,1159528,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22790.0,2140.0 +2867844,2867845,27.0,1159529,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22789.0,2140.0 +2867845,2867846,23.0,1159529,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22789.0,2140.0 +2867846,2867847,27.0,1159530,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22797.0,2141.0 +2867847,2867848,23.0,1159530,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22797.0,2141.0 +2867848,2867849,27.0,1159531,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867849,2867850,23.0,1159531,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867850,2867851,27.0,1159532,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22790.0,2140.0 +2867851,2867852,23.0,1159532,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22790.0,2140.0 +2867852,2867853,27.0,1159533,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867853,2867854,23.0,1159533,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867854,2867855,27.0,1159534,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22797.0,2141.0 +2867855,2867856,23.0,1159534,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22797.0,2141.0 +2867856,2867857,27.0,1159535,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867857,2867858,23.0,1159535,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867858,2867859,27.0,1159536,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867859,2867860,23.0,1159536,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867860,2867861,27.0,1159537,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22789.0,2140.0 +2867861,2867862,23.0,1159537,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22789.0,2140.0 +2867862,2867863,27.0,1159538,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867863,2867864,23.0,1159538,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867864,2867865,27.0,1159539,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867865,2867866,23.0,1159539,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867866,2867867,27.0,1159540,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867867,2867868,23.0,1159540,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867868,2867869,27.0,1159541,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22791.0,2140.0 +2867869,2867870,23.0,1159541,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22791.0,2140.0 +2867870,2867871,27.0,1159542,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867871,2867872,23.0,1159542,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867872,2867873,27.0,1159543,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867873,2867874,23.0,1159543,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867874,2867875,27.0,1159544,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867875,2867876,23.0,1159544,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867876,2867877,27.0,1159545,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867877,2867878,23.0,1159545,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867878,2867879,27.0,1159546,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867879,2867880,23.0,1159546,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867880,2867881,27.0,1159547,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867881,2867882,23.0,1159547,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867882,2867883,27.0,1159548,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22790.0,2140.0 +2867883,2867884,23.0,1159548,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22790.0,2140.0 +2867884,2867885,27.0,1159549,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867885,2867886,23.0,1159549,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867886,2867887,27.0,1159550,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867887,2867888,23.0,1159550,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867888,2867889,27.0,1159551,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867889,2867890,23.0,1159551,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867890,2867891,27.0,1159552,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867891,2867892,23.0,1159552,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867892,2867893,27.0,1159553,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22791.0,2140.0 +2867893,2867894,23.0,1159553,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22791.0,2140.0 +2867894,2867895,27.0,1159554,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867895,2867896,23.0,1159554,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867896,2867897,27.0,1159555,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22792.0,2140.0 +2867897,2867898,23.0,1159555,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22792.0,2140.0 +2867898,2867899,27.0,1159556,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867899,2867900,23.0,1159556,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867900,2867901,27.0,1159557,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867901,2867902,23.0,1159557,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867902,2867903,27.0,1159558,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22792.0,2140.0 +2867903,2867904,23.0,1159558,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22792.0,2140.0 +2867904,2867905,27.0,1159559,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867905,2867906,23.0,1159559,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867906,2867907,27.0,1159560,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867907,2867908,23.0,1159560,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867908,2867909,27.0,1159561,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867909,2867910,23.0,1159561,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867910,2867911,27.0,1159562,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867911,2867912,23.0,1159562,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867912,2867913,27.0,1159563,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867913,2867914,23.0,1159563,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867914,2867915,27.0,1159564,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22791.0,2140.0 +2867915,2867916,23.0,1159564,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22791.0,2140.0 +2867916,2867917,27.0,1159565,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22797.0,2141.0 +2867917,2867918,23.0,1159565,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22797.0,2141.0 +2867918,2867919,27.0,1159566,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22790.0,2140.0 +2867919,2867920,23.0,1159566,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22790.0,2140.0 +2867920,2867921,27.0,1159567,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867921,2867922,23.0,1159567,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867922,2867923,27.0,1159568,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867923,2867924,23.0,1159568,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867924,2867925,27.0,1159569,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22797.0,2141.0 +2867925,2867926,23.0,1159569,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22797.0,2141.0 +2867926,2867927,27.0,1159570,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22797.0,2141.0 +2867927,2867928,23.0,1159570,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22797.0,2141.0 +2867928,2867929,27.0,1159571,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867929,2867930,23.0,1159571,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867930,2867931,27.0,1159572,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22792.0,2140.0 +2867931,2867932,23.0,1159572,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22792.0,2140.0 +2867932,2867933,27.0,1159573,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22791.0,2140.0 +2867933,2867934,23.0,1159573,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22791.0,2140.0 +2867934,2867935,27.0,1159574,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867935,2867936,23.0,1159574,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867936,2867937,27.0,1159575,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867937,2867938,23.0,1159575,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867938,2867939,27.0,1159576,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22789.0,2140.0 +2867939,2867940,23.0,1159576,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22789.0,2140.0 +2867940,2867941,27.0,1159577,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867941,2867942,23.0,1159577,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867942,2867943,27.0,1159578,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867943,2867944,23.0,1159578,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867944,2867945,27.0,1159579,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867945,2867946,23.0,1159579,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867946,2867947,27.0,1159580,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867947,2867948,23.0,1159580,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867948,2867949,27.0,1159581,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867949,2867950,23.0,1159581,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867950,2867951,27.0,1159582,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867951,2867952,23.0,1159582,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867952,2867953,27.0,1159583,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867953,2867954,23.0,1159583,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867954,2867955,27.0,1159584,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867955,2867956,23.0,1159584,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867956,2867957,27.0,1159585,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22788.0,2139.0 +2867957,2867958,23.0,1159585,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22788.0,2139.0 +2867958,2867959,27.0,1159586,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867959,2867960,23.0,1159586,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867960,2867961,27.0,1159587,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867961,2867962,23.0,1159587,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867962,2867963,27.0,1159588,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22789.0,2140.0 +2867963,2867964,23.0,1159588,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22789.0,2140.0 +2867964,2867965,27.0,1159589,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867965,2867966,23.0,1159589,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867966,2867967,27.0,1159590,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867967,2867968,23.0,1159590,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867968,2867969,27.0,1159591,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867969,2867970,23.0,1159591,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867970,2867971,27.0,1159592,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867971,2867972,23.0,1159592,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867972,2867973,27.0,1159593,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867973,2867974,23.0,1159593,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867974,2867975,27.0,1159594,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867975,2867976,23.0,1159594,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867976,2867977,27.0,1159595,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22791.0,2140.0 +2867977,2867978,23.0,1159595,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22791.0,2140.0 +2867978,2867979,27.0,1159596,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22791.0,2140.0 +2867979,2867980,23.0,1159596,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22791.0,2140.0 +2867980,2867981,27.0,1159597,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867981,2867982,23.0,1159597,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867982,2867983,27.0,1159598,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867983,2867984,23.0,1159598,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867984,2867985,27.0,1159599,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2867985,2867986,23.0,1159599,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2867986,2867987,27.0,1159600,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867987,2867988,23.0,1159600,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867988,2867989,27.0,1159601,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867989,2867990,23.0,1159601,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867990,2867991,27.0,1159602,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867991,2867992,23.0,1159602,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867992,2867993,27.0,1159603,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22791.0,2140.0 +2867993,2867994,23.0,1159603,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22791.0,2140.0 +2867994,2867995,27.0,1159604,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867995,2867996,23.0,1159604,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2867996,2867997,27.0,1159605,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22794.0,2141.0 +2867997,2867998,23.0,1159605,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22794.0,2141.0 +2867998,2867999,27.0,1159606,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2867999,2868000,23.0,1159606,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2868000,2868001,27.0,1159607,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22789.0,2140.0 +2868001,2868002,23.0,1159607,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22789.0,2140.0 +2868002,2868003,27.0,1159608,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2868003,2868004,23.0,1159608,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2868004,2868005,27.0,1159609,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22793.0,2140.0 +2868005,2868006,23.0,1159609,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22793.0,2140.0 +2868006,2868007,27.0,1159610,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22798.0,2142.0 +2868007,2868008,23.0,1159610,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22798.0,2142.0 +2868008,2868009,27.0,1159611,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22797.0,2141.0 +2868009,2868010,23.0,1159611,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22797.0,2141.0 +2868010,2868011,27.0,1159612,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22797.0,2141.0 +2868011,2868012,23.0,1159612,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22797.0,2141.0 +2868012,2868013,27.0,1159613,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22789.0,2140.0 +2868013,2868014,23.0,1159613,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22789.0,2140.0 +2868014,2868015,25.0,1159614,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868015,2868016,22.0,1159614,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868016,2868017,21.0,1159614,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868017,2868018,25.0,1159615,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868018,2868019,22.0,1159615,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868019,2868020,21.0,1159615,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868020,2868021,25.0,1159616,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868021,2868022,22.0,1159616,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868022,2868023,21.0,1159616,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868023,2868024,25.0,1159617,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868024,2868025,22.0,1159617,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868025,2868026,21.0,1159617,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868026,2868027,25.0,1159618,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868027,2868028,22.0,1159618,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868028,2868029,21.0,1159618,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868029,2868030,25.0,1159619,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868030,2868031,22.0,1159619,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868031,2868032,21.0,1159619,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868032,2868033,25.0,1159620,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868033,2868034,22.0,1159620,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868034,2868035,21.0,1159620,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868035,2868036,25.0,1159621,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868036,2868037,22.0,1159621,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868037,2868038,21.0,1159621,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868038,2868039,25.0,1159622,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868039,2868040,22.0,1159622,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868040,2868041,21.0,1159622,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868041,2868042,25.0,1159623,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868042,2868043,22.0,1159623,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868043,2868044,21.0,1159623,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868044,2868045,25.0,1159624,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868045,2868046,22.0,1159624,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868046,2868047,21.0,1159624,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868047,2868048,25.0,1159625,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868048,2868049,22.0,1159625,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868049,2868050,21.0,1159625,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868050,2868051,25.0,1159626,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868051,2868052,22.0,1159626,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868052,2868053,21.0,1159626,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868053,2868054,25.0,1159627,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868054,2868055,22.0,1159627,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868055,2868056,21.0,1159627,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868056,2868057,25.0,1159628,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868057,2868058,22.0,1159628,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868058,2868059,21.0,1159628,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868059,2868060,25.0,1159629,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868060,2868061,22.0,1159629,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868061,2868062,21.0,1159629,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868062,2868063,25.0,1159630,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868063,2868064,22.0,1159630,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868064,2868065,21.0,1159630,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868065,2868066,25.0,1159631,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22790.0,2140.0 +2868066,2868067,22.0,1159631,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22790.0,2140.0 +2868067,2868068,21.0,1159631,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22790.0,2140.0 +2868068,2868069,25.0,1159632,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22790.0,2140.0 +2868069,2868070,22.0,1159632,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22790.0,2140.0 +2868070,2868071,21.0,1159632,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22790.0,2140.0 +2868071,2868072,25.0,1159633,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868072,2868073,22.0,1159633,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868073,2868074,21.0,1159633,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868074,2868075,25.0,1159634,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868075,2868076,22.0,1159634,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868076,2868077,21.0,1159634,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868077,2868078,25.0,1159635,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868078,2868079,22.0,1159635,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868079,2868080,21.0,1159635,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868080,2868081,25.0,1159636,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868081,2868082,22.0,1159636,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868082,2868083,21.0,1159636,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868083,2868084,25.0,1159637,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868084,2868085,22.0,1159637,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868085,2868086,21.0,1159637,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868086,2868087,25.0,1159638,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868087,2868088,22.0,1159638,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868088,2868089,21.0,1159638,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868089,2868090,25.0,1159639,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868090,2868091,22.0,1159639,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868091,2868092,21.0,1159639,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868092,2868093,25.0,1159640,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868093,2868094,22.0,1159640,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868094,2868095,21.0,1159640,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868095,2868096,25.0,1159641,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868096,2868097,22.0,1159641,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868097,2868098,21.0,1159641,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868098,2868099,25.0,1159642,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868099,2868100,22.0,1159642,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868100,2868101,21.0,1159642,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868101,2868102,25.0,1159643,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868102,2868103,22.0,1159643,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868103,2868104,21.0,1159643,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868104,2868105,25.0,1159644,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22791.0,2140.0 +2868105,2868106,22.0,1159644,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22791.0,2140.0 +2868106,2868107,21.0,1159644,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22791.0,2140.0 +2868107,2868108,25.0,1159645,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868108,2868109,22.0,1159645,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868109,2868110,21.0,1159645,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868110,2868111,25.0,1159646,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868111,2868112,22.0,1159646,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868112,2868113,21.0,1159646,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22789.0,2140.0 +2868113,2868114,25.0,1159647,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868114,2868115,22.0,1159647,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868115,2868116,21.0,1159647,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868116,2868117,25.0,1159648,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868117,2868118,22.0,1159648,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868118,2868119,21.0,1159648,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868119,2868120,25.0,1159649,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22790.0,2140.0 +2868120,2868121,22.0,1159649,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22790.0,2140.0 +2868121,2868122,21.0,1159649,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22790.0,2140.0 +2868122,2868123,25.0,1159650,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868123,2868124,22.0,1159650,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868124,2868125,21.0,1159650,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868125,2868126,25.0,1159651,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868126,2868127,22.0,1159651,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868127,2868128,21.0,1159651,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22792.0,2140.0 +2868128,2868129,25.0,1159652,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868129,2868130,22.0,1159652,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868130,2868131,21.0,1159652,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868131,2868132,25.0,1159653,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868132,2868133,22.0,1159653,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868133,2868134,21.0,1159653,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868134,2868135,25.0,1159654,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22794.0,2141.0 +2868135,2868136,22.0,1159654,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22794.0,2141.0 +2868136,2868137,21.0,1159654,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22794.0,2141.0 +2868137,2868138,25.0,1159655,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868138,2868139,22.0,1159655,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868139,2868140,21.0,1159655,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868140,2868141,25.0,1159656,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868141,2868142,22.0,1159656,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868142,2868143,21.0,1159656,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22793.0,2140.0 +2868143,2868144,25.0,1159657,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868144,2868145,22.0,1159657,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868145,2868146,21.0,1159657,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22798.0,2142.0 +2868146,2868147,25.0,1159658,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868147,2868148,22.0,1159658,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868148,2868149,21.0,1159658,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22797.0,2141.0 +2868149,2868150,26.0,1159659,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22798.0,2142.0 +2868150,2868151,22.0,1159659,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868151,2868152,26.0,1159660,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22791.0,2140.0 +2868152,2868153,22.0,1159660,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22791.0,2140.0 +2868153,2868154,26.0,1159661,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22794.0,2141.0 +2868154,2868155,22.0,1159661,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868155,2868156,26.0,1159662,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22798.0,2142.0 +2868156,2868157,22.0,1159662,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868157,2868158,26.0,1159663,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22793.0,2140.0 +2868158,2868159,22.0,1159663,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868159,2868160,26.0,1159664,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22798.0,2142.0 +2868160,2868161,22.0,1159664,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868161,2868162,26.0,1159665,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22794.0,2141.0 +2868162,2868163,22.0,1159665,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868163,2868164,26.0,1159666,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22790.0,2140.0 +2868164,2868165,22.0,1159666,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2868165,2868166,26.0,1159667,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22798.0,2142.0 +2868166,2868167,22.0,1159667,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868167,2868168,26.0,1159668,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22794.0,2141.0 +2868168,2868169,22.0,1159668,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868169,2868170,26.0,1159669,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22797.0,2141.0 +2868170,2868171,22.0,1159669,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2868171,2868172,26.0,1159670,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22794.0,2141.0 +2868172,2868173,22.0,1159670,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868173,2868174,26.0,1159671,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22792.0,2140.0 +2868174,2868175,22.0,1159671,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22792.0,2140.0 +2868175,2868176,26.0,1159672,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22798.0,2142.0 +2868176,2868177,22.0,1159672,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868177,2868178,26.0,1159673,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22793.0,2140.0 +2868178,2868179,22.0,1159673,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868179,2868180,26.0,1159674,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22794.0,2141.0 +2868180,2868181,22.0,1159674,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868181,2868182,26.0,1159675,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22794.0,2141.0 +2868182,2868183,22.0,1159675,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868183,2868184,26.0,1159676,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22791.0,2140.0 +2868184,2868185,22.0,1159676,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22791.0,2140.0 +2868185,2868186,26.0,1159677,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22790.0,2140.0 +2868186,2868187,22.0,1159677,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2868187,2868188,26.0,1159678,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22798.0,2142.0 +2868188,2868189,22.0,1159678,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868189,2868190,26.0,1159679,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22798.0,2142.0 +2868190,2868191,22.0,1159679,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868191,2868192,26.0,1159680,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22794.0,2141.0 +2868192,2868193,22.0,1159680,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868193,2868194,26.0,1159681,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22793.0,2140.0 +2868194,2868195,22.0,1159681,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868195,2868196,26.0,1159682,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22794.0,2141.0 +2868196,2868197,22.0,1159682,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868197,2868198,26.0,1159683,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22798.0,2142.0 +2868198,2868199,22.0,1159683,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868199,2868200,26.0,1159684,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22798.0,2142.0 +2868200,2868201,22.0,1159684,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868201,2868202,41.0,1159685,1,2,0,1,1.0,37.0,1.0,-9.0,4.0,54194,10.0,22794.0,2141.0 +2868202,2868203,25.0,1159686,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22798.0,2142.0 +2868203,2868204,32.0,1159687,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22794.0,2141.0 +2868204,2868205,32.0,1159688,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22797.0,2141.0 +2868205,2868206,32.0,1159689,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22790.0,2140.0 +2868206,2868207,27.0,1159690,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22792.0,2140.0 +2868207,2868208,24.0,1159690,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22792.0,2140.0 +2868208,2868209,27.0,1159691,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22793.0,2140.0 +2868209,2868210,24.0,1159691,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22793.0,2140.0 +2868210,2868211,27.0,1159692,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22793.0,2140.0 +2868211,2868212,24.0,1159692,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22793.0,2140.0 +2868212,2868213,27.0,1159693,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22797.0,2141.0 +2868213,2868214,24.0,1159693,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22797.0,2141.0 +2868214,2868215,27.0,1159694,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22791.0,2140.0 +2868215,2868216,24.0,1159694,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22791.0,2140.0 +2868216,2868217,27.0,1159695,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22790.0,2140.0 +2868217,2868218,24.0,1159695,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22790.0,2140.0 +2868218,2868219,27.0,1159696,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868219,2868220,24.0,1159696,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868220,2868221,27.0,1159697,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22791.0,2140.0 +2868221,2868222,24.0,1159697,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22791.0,2140.0 +2868222,2868223,27.0,1159698,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868223,2868224,24.0,1159698,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868224,2868225,27.0,1159699,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868225,2868226,24.0,1159699,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868226,2868227,27.0,1159700,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22789.0,2140.0 +2868227,2868228,24.0,1159700,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22789.0,2140.0 +2868228,2868229,27.0,1159701,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22789.0,2140.0 +2868229,2868230,24.0,1159701,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22789.0,2140.0 +2868230,2868231,27.0,1159702,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22797.0,2141.0 +2868231,2868232,24.0,1159702,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22797.0,2141.0 +2868232,2868233,27.0,1159703,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22790.0,2140.0 +2868233,2868234,24.0,1159703,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22790.0,2140.0 +2868234,2868235,27.0,1159704,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22797.0,2141.0 +2868235,2868236,24.0,1159704,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22797.0,2141.0 +2868236,2868237,27.0,1159705,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22790.0,2140.0 +2868237,2868238,24.0,1159705,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22790.0,2140.0 +2868238,2868239,27.0,1159706,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868239,2868240,24.0,1159706,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868240,2868241,27.0,1159707,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22790.0,2140.0 +2868241,2868242,24.0,1159707,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22790.0,2140.0 +2868242,2868243,27.0,1159708,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868243,2868244,24.0,1159708,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868244,2868245,27.0,1159709,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868245,2868246,24.0,1159709,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868246,2868247,27.0,1159710,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22794.0,2141.0 +2868247,2868248,24.0,1159710,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22794.0,2141.0 +2868248,2868249,27.0,1159711,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22792.0,2140.0 +2868249,2868250,24.0,1159711,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22792.0,2140.0 +2868250,2868251,27.0,1159712,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868251,2868252,24.0,1159712,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868252,2868253,27.0,1159713,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22793.0,2140.0 +2868253,2868254,24.0,1159713,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22793.0,2140.0 +2868254,2868255,27.0,1159714,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22790.0,2140.0 +2868255,2868256,24.0,1159714,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22790.0,2140.0 +2868256,2868257,27.0,1159715,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868257,2868258,24.0,1159715,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868258,2868259,27.0,1159716,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868259,2868260,24.0,1159716,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868260,2868261,27.0,1159717,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22794.0,2141.0 +2868261,2868262,24.0,1159717,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22794.0,2141.0 +2868262,2868263,27.0,1159718,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22789.0,2140.0 +2868263,2868264,24.0,1159718,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22789.0,2140.0 +2868264,2868265,27.0,1159719,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868265,2868266,24.0,1159719,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868266,2868267,27.0,1159720,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22789.0,2140.0 +2868267,2868268,24.0,1159720,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22789.0,2140.0 +2868268,2868269,27.0,1159721,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22789.0,2140.0 +2868269,2868270,24.0,1159721,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22789.0,2140.0 +2868270,2868271,27.0,1159722,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22794.0,2141.0 +2868271,2868272,24.0,1159722,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22794.0,2141.0 +2868272,2868273,27.0,1159723,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22790.0,2140.0 +2868273,2868274,24.0,1159723,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22790.0,2140.0 +2868274,2868275,27.0,1159724,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868275,2868276,24.0,1159724,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868276,2868277,27.0,1159725,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868277,2868278,24.0,1159725,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868278,2868279,27.0,1159726,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22794.0,2141.0 +2868279,2868280,24.0,1159726,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22794.0,2141.0 +2868280,2868281,27.0,1159727,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22791.0,2140.0 +2868281,2868282,24.0,1159727,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22791.0,2140.0 +2868282,2868283,27.0,1159728,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22789.0,2140.0 +2868283,2868284,24.0,1159728,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22789.0,2140.0 +2868284,2868285,27.0,1159729,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22797.0,2141.0 +2868285,2868286,24.0,1159729,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22797.0,2141.0 +2868286,2868287,27.0,1159730,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22794.0,2141.0 +2868287,2868288,24.0,1159730,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22794.0,2141.0 +2868288,2868289,27.0,1159731,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868289,2868290,24.0,1159731,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868290,2868291,27.0,1159732,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22792.0,2140.0 +2868291,2868292,24.0,1159732,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22792.0,2140.0 +2868292,2868293,27.0,1159733,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22793.0,2140.0 +2868293,2868294,24.0,1159733,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22793.0,2140.0 +2868294,2868295,27.0,1159734,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2868295,2868296,24.0,1159734,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2868296,2868297,27.0,1159735,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22794.0,2141.0 +2868297,2868298,24.0,1159735,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22794.0,2141.0 +2868298,2868299,41.0,1159736,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22798.0,2142.0 +2868299,2868300,41.0,1159737,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22793.0,2140.0 +2868300,2868301,41.0,1159738,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22789.0,2140.0 +2868301,2868302,41.0,1159739,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22789.0,2140.0 +2868302,2868303,41.0,1159740,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22794.0,2141.0 +2868303,2868304,41.0,1159741,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22792.0,2140.0 +2868304,2868305,41.0,1159742,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22789.0,2140.0 +2868305,2868306,41.0,1159743,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22798.0,2142.0 +2868306,2868307,41.0,1159744,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22794.0,2141.0 +2868307,2868308,41.0,1159745,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22790.0,2140.0 +2868308,2868309,41.0,1159746,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22789.0,2140.0 +2868309,2868310,41.0,1159747,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22797.0,2141.0 +2868310,2868311,23.0,1159748,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868311,2868312,26.0,1159748,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868312,2868313,23.0,1159749,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868313,2868314,26.0,1159749,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868314,2868315,23.0,1159750,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868315,2868316,26.0,1159750,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2868316,2868317,23.0,1159751,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868317,2868318,26.0,1159751,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868318,2868319,23.0,1159752,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2868319,2868320,26.0,1159752,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2868320,2868321,23.0,1159753,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2868321,2868322,26.0,1159753,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22790.0,2140.0 +2868322,2868323,23.0,1159754,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868323,2868324,26.0,1159754,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868324,2868325,23.0,1159755,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22791.0,2140.0 +2868325,2868326,26.0,1159755,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22791.0,2140.0 +2868326,2868327,23.0,1159756,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868327,2868328,26.0,1159756,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868328,2868329,23.0,1159757,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2868329,2868330,26.0,1159757,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2868330,2868331,23.0,1159758,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2868331,2868332,26.0,1159758,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2868332,2868333,23.0,1159759,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868333,2868334,26.0,1159759,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868334,2868335,23.0,1159760,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868335,2868336,26.0,1159760,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868336,2868337,23.0,1159761,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868337,2868338,26.0,1159761,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868338,2868339,23.0,1159762,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868339,2868340,26.0,1159762,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868340,2868341,23.0,1159763,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868341,2868342,26.0,1159763,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2868342,2868343,23.0,1159764,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868343,2868344,26.0,1159764,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868344,2868345,23.0,1159765,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868345,2868346,26.0,1159765,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2868346,2868347,23.0,1159766,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868347,2868348,26.0,1159766,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868348,2868349,23.0,1159767,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868349,2868350,26.0,1159767,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868350,2868351,23.0,1159768,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2868351,2868352,26.0,1159768,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2868352,2868353,23.0,1159769,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868353,2868354,26.0,1159769,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2868354,2868355,23.0,1159770,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2868355,2868356,26.0,1159770,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2868356,2868357,23.0,1159771,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868357,2868358,26.0,1159771,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2868358,2868359,23.0,1159772,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2868359,2868360,26.0,1159772,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2868360,2868361,23.0,1159773,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868361,2868362,26.0,1159773,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868362,2868363,23.0,1159774,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868363,2868364,26.0,1159774,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868364,2868365,23.0,1159775,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868365,2868366,26.0,1159775,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868366,2868367,23.0,1159776,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868367,2868368,26.0,1159776,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868368,2868369,23.0,1159777,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868369,2868370,26.0,1159777,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868370,2868371,23.0,1159778,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868371,2868372,26.0,1159778,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868372,2868373,23.0,1159779,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868373,2868374,26.0,1159779,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868374,2868375,23.0,1159780,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868375,2868376,26.0,1159780,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868376,2868377,23.0,1159781,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868377,2868378,26.0,1159781,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868378,2868379,23.0,1159782,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2868379,2868380,26.0,1159782,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2868380,2868381,23.0,1159783,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868381,2868382,26.0,1159783,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2868382,2868383,23.0,1159784,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868383,2868384,26.0,1159784,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868384,2868385,23.0,1159785,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2868385,2868386,26.0,1159785,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22790.0,2140.0 +2868386,2868387,23.0,1159786,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2868387,2868388,26.0,1159786,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2868388,2868389,23.0,1159787,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22791.0,2140.0 +2868389,2868390,26.0,1159787,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22791.0,2140.0 +2868390,2868391,23.0,1159788,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2868391,2868392,26.0,1159788,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2868392,2868393,23.0,1159789,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868393,2868394,26.0,1159789,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2868394,2868395,23.0,1159790,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868395,2868396,26.0,1159790,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868396,2868397,23.0,1159791,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868397,2868398,26.0,1159791,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868398,2868399,23.0,1159792,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2868399,2868400,26.0,1159792,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2868400,2868401,23.0,1159793,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22791.0,2140.0 +2868401,2868402,26.0,1159793,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22791.0,2140.0 +2868402,2868403,23.0,1159794,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868403,2868404,26.0,1159794,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868404,2868405,23.0,1159795,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868405,2868406,26.0,1159795,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2868406,2868407,23.0,1159796,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868407,2868408,26.0,1159796,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868408,2868409,23.0,1159797,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868409,2868410,26.0,1159797,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868410,2868411,23.0,1159798,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2868411,2868412,26.0,1159798,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2868412,2868413,23.0,1159799,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868413,2868414,26.0,1159799,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2868414,2868415,23.0,1159800,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868415,2868416,26.0,1159800,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868416,2868417,23.0,1159801,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868417,2868418,26.0,1159801,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868418,2868419,23.0,1159802,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868419,2868420,26.0,1159802,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868420,2868421,23.0,1159803,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868421,2868422,26.0,1159803,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868422,2868423,23.0,1159804,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868423,2868424,26.0,1159804,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868424,2868425,23.0,1159805,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2868425,2868426,26.0,1159805,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2868426,2868427,23.0,1159806,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868427,2868428,26.0,1159806,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868428,2868429,23.0,1159807,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2868429,2868430,26.0,1159807,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22790.0,2140.0 +2868430,2868431,23.0,1159808,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868431,2868432,26.0,1159808,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868432,2868433,23.0,1159809,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868433,2868434,26.0,1159809,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868434,2868435,23.0,1159810,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868435,2868436,26.0,1159810,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868436,2868437,23.0,1159811,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2868437,2868438,26.0,1159811,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2868438,2868439,23.0,1159812,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868439,2868440,26.0,1159812,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868440,2868441,23.0,1159813,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868441,2868442,26.0,1159813,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868442,2868443,23.0,1159814,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868443,2868444,26.0,1159814,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868444,2868445,23.0,1159815,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868445,2868446,26.0,1159815,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868446,2868447,23.0,1159816,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2868447,2868448,26.0,1159816,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22790.0,2140.0 +2868448,2868449,23.0,1159817,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22793.0,2140.0 +2868449,2868450,26.0,1159817,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22793.0,2140.0 +2868450,2868451,23.0,1159818,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2868451,2868452,26.0,1159818,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2868452,2868453,23.0,1159819,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868453,2868454,26.0,1159819,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868454,2868455,23.0,1159820,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2868455,2868456,26.0,1159820,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2868456,2868457,23.0,1159821,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868457,2868458,26.0,1159821,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868458,2868459,23.0,1159822,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868459,2868460,26.0,1159822,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868460,2868461,23.0,1159823,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22791.0,2140.0 +2868461,2868462,26.0,1159823,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22791.0,2140.0 +2868462,2868463,23.0,1159824,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868463,2868464,26.0,1159824,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868464,2868465,23.0,1159825,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868465,2868466,26.0,1159825,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868466,2868467,23.0,1159826,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868467,2868468,26.0,1159826,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868468,2868469,23.0,1159827,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22797.0,2141.0 +2868469,2868470,26.0,1159827,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22797.0,2141.0 +2868470,2868471,23.0,1159828,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868471,2868472,26.0,1159828,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868472,2868473,23.0,1159829,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868473,2868474,26.0,1159829,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868474,2868475,23.0,1159830,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868475,2868476,26.0,1159830,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868476,2868477,23.0,1159831,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22789.0,2140.0 +2868477,2868478,26.0,1159831,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22789.0,2140.0 +2868478,2868479,23.0,1159832,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868479,2868480,26.0,1159832,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868480,2868481,23.0,1159833,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868481,2868482,26.0,1159833,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868482,2868483,23.0,1159834,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22792.0,2140.0 +2868483,2868484,26.0,1159834,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22792.0,2140.0 +2868484,2868485,23.0,1159835,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868485,2868486,26.0,1159835,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868486,2868487,23.0,1159836,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22791.0,2140.0 +2868487,2868488,26.0,1159836,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22791.0,2140.0 +2868488,2868489,23.0,1159837,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868489,2868490,26.0,1159837,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868490,2868491,23.0,1159838,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22794.0,2141.0 +2868491,2868492,26.0,1159838,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22794.0,2141.0 +2868492,2868493,23.0,1159839,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868493,2868494,26.0,1159839,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2868494,2868495,23.0,1159840,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22790.0,2140.0 +2868495,2868496,26.0,1159840,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22790.0,2140.0 +2868496,2868497,22.0,1159841,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868497,2868498,22.0,1159842,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22789.0,2140.0 +2868498,2868499,22.0,1159843,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868499,2868500,22.0,1159844,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22792.0,2140.0 +2868500,2868501,22.0,1159845,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22797.0,2141.0 +2868501,2868502,22.0,1159846,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22793.0,2140.0 +2868502,2868503,22.0,1159847,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868503,2868504,22.0,1159848,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22789.0,2140.0 +2868504,2868505,22.0,1159849,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22794.0,2141.0 +2868505,2868506,22.0,1159850,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22793.0,2140.0 +2868506,2868507,22.0,1159851,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868507,2868508,22.0,1159852,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22793.0,2140.0 +2868508,2868509,22.0,1159853,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22793.0,2140.0 +2868509,2868510,22.0,1159854,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22794.0,2141.0 +2868510,2868511,22.0,1159855,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868511,2868512,22.0,1159856,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22793.0,2140.0 +2868512,2868513,22.0,1159857,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868513,2868514,22.0,1159858,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22789.0,2140.0 +2868514,2868515,22.0,1159859,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22794.0,2141.0 +2868515,2868516,22.0,1159860,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868516,2868517,22.0,1159861,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868517,2868518,22.0,1159862,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868518,2868519,22.0,1159863,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22793.0,2140.0 +2868519,2868520,22.0,1159864,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868520,2868521,22.0,1159865,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868521,2868522,22.0,1159866,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22789.0,2140.0 +2868522,2868523,22.0,1159867,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22797.0,2141.0 +2868523,2868524,22.0,1159868,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22790.0,2140.0 +2868524,2868525,22.0,1159869,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868525,2868526,22.0,1159870,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22793.0,2140.0 +2868526,2868527,22.0,1159871,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22794.0,2141.0 +2868527,2868528,22.0,1159872,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22789.0,2140.0 +2868528,2868529,22.0,1159873,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868529,2868530,22.0,1159874,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22794.0,2141.0 +2868530,2868531,22.0,1159875,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22794.0,2141.0 +2868531,2868532,22.0,1159876,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22789.0,2140.0 +2868532,2868533,22.0,1159877,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868533,2868534,22.0,1159878,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22790.0,2140.0 +2868534,2868535,22.0,1159879,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22789.0,2140.0 +2868535,2868536,22.0,1159880,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22793.0,2140.0 +2868536,2868537,22.0,1159881,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2868537,2868538,22.0,1159882,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22792.0,2140.0 +2868538,2868539,22.0,1159883,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22792.0,2140.0 +2868539,2868540,22.0,1159884,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22792.0,2140.0 +2868540,2868541,22.0,1159885,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22794.0,2141.0 +2868541,2868542,65.0,1159886,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5111Z,8.0,22798.0,2142.0 +2868542,2868543,65.0,1159887,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5111Z,8.0,22784.0,2139.0 +2868543,2868544,79.0,1159888,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2868544,2868545,80.0,1159889,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868545,2868546,79.0,1159890,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868546,2868547,79.0,1159891,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868547,2868548,69.0,1159892,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2868548,2868549,94.0,1159893,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868549,2868550,80.0,1159894,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2868550,2868551,94.0,1159895,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2868551,2868552,80.0,1159896,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868552,2868553,80.0,1159897,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868553,2868554,94.0,1159898,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868554,2868555,69.0,1159899,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868555,2868556,80.0,1159900,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868556,2868557,80.0,1159901,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868557,2868558,80.0,1159902,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868558,2868559,80.0,1159903,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868559,2868560,88.0,1159904,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868560,2868561,88.0,1159905,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868561,2868562,94.0,1159906,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868562,2868563,94.0,1159907,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868563,2868564,80.0,1159908,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868564,2868565,80.0,1159909,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868565,2868566,69.0,1159910,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868566,2868567,80.0,1159911,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868567,2868568,80.0,1159912,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868568,2868569,76.0,1159913,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868569,2868570,80.0,1159914,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868570,2868571,80.0,1159915,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868571,2868572,79.0,1159916,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868572,2868573,80.0,1159917,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868573,2868574,67.0,1159918,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868574,2868575,76.0,1159919,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2868575,2868576,69.0,1159920,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868576,2868577,88.0,1159921,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868577,2868578,67.0,1159922,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868578,2868579,79.0,1159923,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868579,2868580,88.0,1159924,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868580,2868581,80.0,1159925,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868581,2868582,67.0,1159926,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868582,2868583,67.0,1159927,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868583,2868584,80.0,1159928,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868584,2868585,79.0,1159929,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868585,2868586,69.0,1159930,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868586,2868587,88.0,1159931,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868587,2868588,69.0,1159932,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868588,2868589,88.0,1159933,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868589,2868590,67.0,1159934,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868590,2868591,79.0,1159935,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868591,2868592,88.0,1159936,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868592,2868593,80.0,1159937,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868593,2868594,76.0,1159938,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868594,2868595,88.0,1159939,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868595,2868596,88.0,1159940,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868596,2868597,94.0,1159941,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868597,2868598,94.0,1159942,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2868598,2868599,79.0,1159943,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868599,2868600,88.0,1159944,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868600,2868601,69.0,1159945,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868601,2868602,94.0,1159946,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868602,2868603,80.0,1159947,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868603,2868604,88.0,1159948,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868604,2868605,77.0,1159949,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868605,2868606,75.0,1159950,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868606,2868607,79.0,1159951,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868607,2868608,76.0,1159952,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868608,2868609,79.0,1159953,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2868609,2868610,87.0,1159954,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868610,2868611,71.0,1159955,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868611,2868612,71.0,1159956,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2868612,2868613,84.0,1159957,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868613,2868614,89.0,1159958,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868614,2868615,71.0,1159959,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2868615,2868616,71.0,1159960,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2868616,2868617,84.0,1159961,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2868617,2868618,71.0,1159962,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868618,2868619,94.0,1159963,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22788.0,2139.0 +2868619,2868620,94.0,1159964,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22798.0,2142.0 +2868620,2868621,94.0,1159965,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22798.0,2142.0 +2868621,2868622,94.0,1159966,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22798.0,2142.0 +2868622,2868623,84.0,1159967,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868623,2868624,87.0,1159968,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868624,2868625,89.0,1159969,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868625,2868626,76.0,1159970,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868626,2868627,84.0,1159971,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868627,2868628,76.0,1159972,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868628,2868629,76.0,1159973,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868629,2868630,76.0,1159974,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868630,2868631,87.0,1159975,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868631,2868632,84.0,1159976,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868632,2868633,89.0,1159977,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868633,2868634,87.0,1159978,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868634,2868635,94.0,1159979,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22788.0,2139.0 +2868635,2868636,71.0,1159980,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868636,2868637,79.0,1159981,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2868637,2868638,84.0,1159982,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2868638,2868639,79.0,1159983,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868639,2868640,94.0,1159984,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22788.0,2139.0 +2868640,2868641,87.0,1159985,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868641,2868642,94.0,1159986,1,2,0,1,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22788.0,2139.0 +2868642,2868643,54.0,1159987,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868643,2868644,54.0,1159987,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868644,2868645,22.0,1159987,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22798.0,2142.0 +2868645,2868646,23.0,1159987,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868646,2868647,54.0,1159988,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868647,2868648,54.0,1159988,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868648,2868649,22.0,1159988,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22798.0,2142.0 +2868649,2868650,23.0,1159988,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868650,2868651,54.0,1159989,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868651,2868652,54.0,1159989,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868652,2868653,22.0,1159989,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22788.0,2139.0 +2868653,2868654,23.0,1159989,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868654,2868655,54.0,1159990,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868655,2868656,54.0,1159990,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868656,2868657,22.0,1159990,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22788.0,2139.0 +2868657,2868658,23.0,1159990,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868658,2868659,54.0,1159991,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868659,2868660,54.0,1159991,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868660,2868661,22.0,1159991,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22798.0,2142.0 +2868661,2868662,23.0,1159991,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868662,2868663,54.0,1159992,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868663,2868664,54.0,1159992,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868664,2868665,22.0,1159992,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22788.0,2139.0 +2868665,2868666,23.0,1159992,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868666,2868667,54.0,1159993,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868667,2868668,54.0,1159993,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868668,2868669,22.0,1159993,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22788.0,2139.0 +2868669,2868670,23.0,1159993,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868670,2868671,54.0,1159994,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2868671,2868672,54.0,1159994,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2868672,2868673,22.0,1159994,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22784.0,2139.0 +2868673,2868674,23.0,1159994,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2868674,2868675,54.0,1159995,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868675,2868676,54.0,1159995,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868676,2868677,22.0,1159995,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22788.0,2139.0 +2868677,2868678,23.0,1159995,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868678,2868679,54.0,1159996,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868679,2868680,54.0,1159996,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868680,2868681,22.0,1159996,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22788.0,2139.0 +2868681,2868682,23.0,1159996,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868682,2868683,54.0,1159997,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868683,2868684,54.0,1159997,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868684,2868685,22.0,1159997,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22788.0,2139.0 +2868685,2868686,23.0,1159997,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868686,2868687,59.0,1159998,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22798.0,2142.0 +2868687,2868688,59.0,1159999,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22788.0,2139.0 +2868688,2868689,59.0,1160000,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868689,2868690,59.0,1160001,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868690,2868691,59.0,1160002,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22788.0,2139.0 +2868691,2868692,59.0,1160003,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5415,10.0,22784.0,2139.0 +2868692,2868693,59.0,1160004,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,5416,10.0,22788.0,2139.0 +2868693,2868694,61.0,1160005,1,2,0,1,1.0,25.0,1.0,-9.0,4.0,2211P,7.0,22788.0,2139.0 +2868694,2868695,57.0,1160006,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22788.0,2139.0 +2868695,2868696,57.0,1160007,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22784.0,2139.0 +2868696,2868697,57.0,1160008,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22784.0,2139.0 +2868697,2868698,57.0,1160009,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22788.0,2139.0 +2868698,2868699,57.0,1160010,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22798.0,2142.0 +2868699,2868700,57.0,1160011,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22788.0,2139.0 +2868700,2868701,57.0,1160012,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22788.0,2139.0 +2868701,2868702,57.0,1160013,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22788.0,2139.0 +2868702,2868703,57.0,1160014,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22798.0,2142.0 +2868703,2868704,57.0,1160015,1,2,0,1,1.0,16.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868704,2868705,55.0,1160016,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22798.0,2142.0 +2868705,2868706,55.0,1160016,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868706,2868707,19.0,1160016,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22798.0,2142.0 +2868707,2868708,17.0,1160016,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22798.0,2142.0 +2868708,2868709,55.0,1160017,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2868709,2868710,56.0,1160017,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868710,2868711,19.0,1160017,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868711,2868712,15.0,1160017,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22788.0,2139.0 +2868712,2868713,55.0,1160018,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22784.0,2139.0 +2868713,2868714,56.0,1160018,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2868714,2868715,19.0,1160018,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22784.0,2139.0 +2868715,2868716,15.0,1160018,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22784.0,2139.0 +2868716,2868717,55.0,1160019,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2868717,2868718,56.0,1160019,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868718,2868719,19.0,1160019,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868719,2868720,15.0,1160019,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22788.0,2139.0 +2868720,2868721,55.0,1160020,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2868721,2868722,56.0,1160020,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868722,2868723,19.0,1160020,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868723,2868724,15.0,1160020,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22788.0,2139.0 +2868724,2868725,55.0,1160021,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2868725,2868726,56.0,1160021,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868726,2868727,19.0,1160021,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868727,2868728,15.0,1160021,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22788.0,2139.0 +2868728,2868729,55.0,1160022,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22786.0,2139.0 +2868729,2868730,56.0,1160022,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2868730,2868731,19.0,1160022,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22786.0,2139.0 +2868731,2868732,15.0,1160022,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22786.0,2139.0 +2868732,2868733,55.0,1160023,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22784.0,2139.0 +2868733,2868734,56.0,1160023,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2868734,2868735,19.0,1160023,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22784.0,2139.0 +2868735,2868736,15.0,1160023,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22784.0,2139.0 +2868736,2868737,55.0,1160024,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2868737,2868738,56.0,1160024,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868738,2868739,19.0,1160024,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868739,2868740,15.0,1160024,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22798.0,2142.0 +2868740,2868741,55.0,1160025,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2868741,2868742,56.0,1160025,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868742,2868743,19.0,1160025,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868743,2868744,15.0,1160025,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22788.0,2139.0 +2868744,2868745,55.0,1160026,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2868745,2868746,56.0,1160026,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868746,2868747,19.0,1160026,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868747,2868748,15.0,1160026,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22798.0,2142.0 +2868748,2868749,55.0,1160027,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2868749,2868750,56.0,1160027,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868750,2868751,19.0,1160027,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868751,2868752,15.0,1160027,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22788.0,2139.0 +2868752,2868753,55.0,1160028,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2868753,2868754,56.0,1160028,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868754,2868755,19.0,1160028,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868755,2868756,15.0,1160028,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22798.0,2142.0 +2868756,2868757,55.0,1160029,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2868757,2868758,56.0,1160029,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868758,2868759,19.0,1160029,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868759,2868760,15.0,1160029,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22788.0,2139.0 +2868760,2868761,55.0,1160030,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22786.0,2139.0 +2868761,2868762,56.0,1160030,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2868762,2868763,19.0,1160030,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22786.0,2139.0 +2868763,2868764,15.0,1160030,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22786.0,2139.0 +2868764,2868765,55.0,1160031,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2868765,2868766,56.0,1160031,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868766,2868767,19.0,1160031,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868767,2868768,15.0,1160031,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22798.0,2142.0 +2868768,2868769,55.0,1160032,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2868769,2868770,56.0,1160032,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868770,2868771,19.0,1160032,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868771,2868772,15.0,1160032,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22798.0,2142.0 +2868772,2868773,55.0,1160033,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22786.0,2139.0 +2868773,2868774,56.0,1160033,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2868774,2868775,19.0,1160033,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22786.0,2139.0 +2868775,2868776,15.0,1160033,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22786.0,2139.0 +2868776,2868777,55.0,1160034,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2868777,2868778,56.0,1160034,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868778,2868779,19.0,1160034,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868779,2868780,15.0,1160034,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22788.0,2139.0 +2868780,2868781,55.0,1160035,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2868781,2868782,56.0,1160035,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868782,2868783,19.0,1160035,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868783,2868784,15.0,1160035,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22788.0,2139.0 +2868784,2868785,55.0,1160036,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2868785,2868786,56.0,1160036,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868786,2868787,19.0,1160036,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868787,2868788,15.0,1160036,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22798.0,2142.0 +2868788,2868789,55.0,1160037,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2868789,2868790,56.0,1160037,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868790,2868791,19.0,1160037,3,2,2,1,1.0,15.0,5.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868791,2868792,15.0,1160037,4,2,2,1,-9.0,-9.0,-9.0,12.0,-9.0,-9,0.0,22788.0,2139.0 +2868792,2868793,35.0,1160038,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868793,2868794,24.0,1160038,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868794,2868795,35.0,1160039,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868795,2868796,24.0,1160039,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868796,2868797,35.0,1160040,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868797,2868798,24.0,1160040,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868798,2868799,35.0,1160041,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868799,2868800,24.0,1160041,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868800,2868801,35.0,1160042,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868801,2868802,24.0,1160042,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868802,2868803,35.0,1160043,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868803,2868804,24.0,1160043,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868804,2868805,35.0,1160044,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868805,2868806,24.0,1160044,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868806,2868807,35.0,1160045,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868807,2868808,24.0,1160045,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868808,2868809,35.0,1160046,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868809,2868810,24.0,1160046,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868810,2868811,35.0,1160047,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868811,2868812,24.0,1160047,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868812,2868813,35.0,1160048,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868813,2868814,24.0,1160048,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868814,2868815,35.0,1160049,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868815,2868816,24.0,1160049,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868816,2868817,35.0,1160050,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868817,2868818,24.0,1160050,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868818,2868819,35.0,1160051,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868819,2868820,24.0,1160051,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868820,2868821,35.0,1160052,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868821,2868822,24.0,1160052,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868822,2868823,35.0,1160053,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868823,2868824,24.0,1160053,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868824,2868825,35.0,1160054,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868825,2868826,24.0,1160054,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868826,2868827,35.0,1160055,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868827,2868828,24.0,1160055,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868828,2868829,35.0,1160056,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22784.0,2139.0 +2868829,2868830,24.0,1160056,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2868830,2868831,35.0,1160057,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868831,2868832,24.0,1160057,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868832,2868833,35.0,1160058,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868833,2868834,24.0,1160058,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868834,2868835,35.0,1160059,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868835,2868836,24.0,1160059,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22788.0,2139.0 +2868836,2868837,35.0,1160060,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22784.0,2139.0 +2868837,2868838,24.0,1160060,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2868838,2868839,35.0,1160061,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868839,2868840,24.0,1160061,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22798.0,2142.0 +2868840,2868841,35.0,1160062,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22784.0,2139.0 +2868841,2868842,24.0,1160062,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2868842,2868843,35.0,1160063,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,5415,10.0,22786.0,2139.0 +2868843,2868844,24.0,1160063,2,2,1,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2868844,2868845,25.0,1160064,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,5411,10.0,22798.0,2142.0 +2868845,2868846,29.0,1160065,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22784.0,2139.0 +2868846,2868847,24.0,1160065,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22784.0,2139.0 +2868847,2868848,29.0,1160066,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868848,2868849,24.0,1160066,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868849,2868850,29.0,1160067,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868850,2868851,24.0,1160067,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868851,2868852,29.0,1160068,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868852,2868853,24.0,1160068,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868853,2868854,29.0,1160069,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868854,2868855,24.0,1160069,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868855,2868856,29.0,1160070,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868856,2868857,24.0,1160070,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868857,2868858,29.0,1160071,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868858,2868859,24.0,1160071,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868859,2868860,29.0,1160072,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868860,2868861,24.0,1160072,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868861,2868862,29.0,1160073,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868862,2868863,24.0,1160073,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868863,2868864,29.0,1160074,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22784.0,2139.0 +2868864,2868865,24.0,1160074,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22784.0,2139.0 +2868865,2868866,29.0,1160075,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868866,2868867,24.0,1160075,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868867,2868868,29.0,1160076,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868868,2868869,24.0,1160076,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868869,2868870,29.0,1160077,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868870,2868871,24.0,1160077,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868871,2868872,29.0,1160078,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868872,2868873,24.0,1160078,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868873,2868874,29.0,1160079,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868874,2868875,24.0,1160079,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868875,2868876,29.0,1160080,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868876,2868877,24.0,1160080,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868877,2868878,29.0,1160081,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22784.0,2139.0 +2868878,2868879,24.0,1160081,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22784.0,2139.0 +2868879,2868880,29.0,1160082,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868880,2868881,24.0,1160082,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868881,2868882,29.0,1160083,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868882,2868883,24.0,1160083,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868883,2868884,29.0,1160084,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868884,2868885,24.0,1160084,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868885,2868886,29.0,1160085,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868886,2868887,24.0,1160085,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868887,2868888,29.0,1160086,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868888,2868889,24.0,1160086,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868889,2868890,29.0,1160087,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868890,2868891,24.0,1160087,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868891,2868892,29.0,1160088,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868892,2868893,24.0,1160088,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868893,2868894,29.0,1160089,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22786.0,2139.0 +2868894,2868895,24.0,1160089,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22786.0,2139.0 +2868895,2868896,29.0,1160090,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868896,2868897,24.0,1160090,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868897,2868898,29.0,1160091,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868898,2868899,24.0,1160091,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868899,2868900,29.0,1160092,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868900,2868901,24.0,1160092,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868901,2868902,29.0,1160093,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868902,2868903,24.0,1160093,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868903,2868904,29.0,1160094,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868904,2868905,24.0,1160094,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868905,2868906,29.0,1160095,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22786.0,2139.0 +2868906,2868907,24.0,1160095,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22786.0,2139.0 +2868907,2868908,29.0,1160096,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868908,2868909,24.0,1160096,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868909,2868910,29.0,1160097,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22798.0,2142.0 +2868910,2868911,24.0,1160097,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22798.0,2142.0 +2868911,2868912,29.0,1160098,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868912,2868913,24.0,1160098,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868913,2868914,29.0,1160099,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868914,2868915,24.0,1160099,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868915,2868916,29.0,1160100,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868916,2868917,24.0,1160100,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868917,2868918,29.0,1160101,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22784.0,2139.0 +2868918,2868919,24.0,1160101,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22784.0,2139.0 +2868919,2868920,29.0,1160102,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5415,10.0,22788.0,2139.0 +2868920,2868921,24.0,1160102,2,2,13,1,6.0,8.0,3.0,15.0,4.0,813M,17.0,22788.0,2139.0 +2868921,2868922,26.0,1160103,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22788.0,2139.0 +2868922,2868923,22.0,1160103,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868923,2868924,26.0,1160104,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22788.0,2139.0 +2868924,2868925,22.0,1160104,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868925,2868926,26.0,1160105,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22788.0,2139.0 +2868926,2868927,22.0,1160105,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2868927,2868928,26.0,1160106,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22798.0,2142.0 +2868928,2868929,22.0,1160106,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868929,2868930,26.0,1160107,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22798.0,2142.0 +2868930,2868931,22.0,1160107,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2868931,2868932,27.0,1160108,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22784.0,2139.0 +2868932,2868933,24.0,1160108,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2868933,2868934,26.0,1160109,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868934,2868935,24.0,1160109,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868935,2868936,26.0,1160110,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868936,2868937,24.0,1160110,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868937,2868938,26.0,1160111,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868938,2868939,24.0,1160111,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868939,2868940,26.0,1160112,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868940,2868941,24.0,1160112,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868941,2868942,26.0,1160113,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868942,2868943,24.0,1160113,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868943,2868944,26.0,1160114,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868944,2868945,24.0,1160114,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868945,2868946,26.0,1160115,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868946,2868947,24.0,1160115,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868947,2868948,26.0,1160116,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868948,2868949,24.0,1160116,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868949,2868950,26.0,1160117,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868950,2868951,24.0,1160117,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868951,2868952,26.0,1160118,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868952,2868953,24.0,1160118,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868953,2868954,26.0,1160119,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868954,2868955,24.0,1160119,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868955,2868956,26.0,1160120,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868956,2868957,24.0,1160120,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868957,2868958,26.0,1160121,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868958,2868959,24.0,1160121,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868959,2868960,26.0,1160122,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868960,2868961,24.0,1160122,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868961,2868962,26.0,1160123,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868962,2868963,24.0,1160123,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868963,2868964,26.0,1160124,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868964,2868965,24.0,1160124,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868965,2868966,26.0,1160125,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868966,2868967,24.0,1160125,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868967,2868968,26.0,1160126,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22784.0,2139.0 +2868968,2868969,24.0,1160126,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22784.0,2139.0 +2868969,2868970,26.0,1160127,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22784.0,2139.0 +2868970,2868971,24.0,1160127,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22784.0,2139.0 +2868971,2868972,26.0,1160128,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868972,2868973,24.0,1160128,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868973,2868974,26.0,1160129,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868974,2868975,24.0,1160129,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868975,2868976,26.0,1160130,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22784.0,2139.0 +2868976,2868977,24.0,1160130,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22784.0,2139.0 +2868977,2868978,26.0,1160131,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868978,2868979,24.0,1160131,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868979,2868980,26.0,1160132,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868980,2868981,24.0,1160132,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868981,2868982,26.0,1160133,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868982,2868983,24.0,1160133,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868983,2868984,26.0,1160134,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868984,2868985,24.0,1160134,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868985,2868986,26.0,1160135,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868986,2868987,24.0,1160135,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868987,2868988,26.0,1160136,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868988,2868989,24.0,1160136,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868989,2868990,26.0,1160137,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868990,2868991,24.0,1160137,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868991,2868992,26.0,1160138,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22798.0,2142.0 +2868992,2868993,24.0,1160138,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22798.0,2142.0 +2868993,2868994,26.0,1160139,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,51912,8.0,22788.0,2139.0 +2868994,2868995,24.0,1160139,2,1,12,1,1.0,20.0,2.0,15.0,4.0,713Z,16.0,22788.0,2139.0 +2868995,2868996,32.0,1160140,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22784.0,2139.0 +2868996,2868997,32.0,1160141,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22788.0,2139.0 +2868997,2868998,32.0,1160142,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22786.0,2139.0 +2868998,2868999,25.0,1160143,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22798.0,2142.0 +2868999,2869000,25.0,1160144,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22788.0,2139.0 +2869000,2869001,25.0,1160145,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22788.0,2139.0 +2869001,2869002,25.0,1160146,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22798.0,2142.0 +2869002,2869003,32.0,1160147,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22798.0,2142.0 +2869003,2869004,32.0,1160148,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22788.0,2139.0 +2869004,2869005,25.0,1160149,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22798.0,2142.0 +2869005,2869006,25.0,1160150,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869006,2869007,25.0,1160151,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22798.0,2142.0 +2869007,2869008,25.0,1160152,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22786.0,2139.0 +2869008,2869009,32.0,1160153,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22798.0,2142.0 +2869009,2869010,32.0,1160154,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22788.0,2139.0 +2869010,2869011,25.0,1160155,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869011,2869012,25.0,1160156,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869012,2869013,32.0,1160157,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22784.0,2139.0 +2869013,2869014,32.0,1160158,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22798.0,2142.0 +2869014,2869015,32.0,1160159,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22784.0,2139.0 +2869015,2869016,25.0,1160160,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869016,2869017,32.0,1160161,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22798.0,2142.0 +2869017,2869018,25.0,1160162,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22798.0,2142.0 +2869018,2869019,25.0,1160163,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22798.0,2142.0 +2869019,2869020,25.0,1160164,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869020,2869021,25.0,1160165,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869021,2869022,32.0,1160166,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22798.0,2142.0 +2869022,2869023,32.0,1160167,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22788.0,2139.0 +2869023,2869024,32.0,1160168,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22798.0,2142.0 +2869024,2869025,25.0,1160169,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869025,2869026,25.0,1160170,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869026,2869027,25.0,1160171,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5416,10.0,22788.0,2139.0 +2869027,2869028,25.0,1160172,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22798.0,2142.0 +2869028,2869029,32.0,1160173,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22788.0,2139.0 +2869029,2869030,25.0,1160174,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869030,2869031,32.0,1160175,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22798.0,2142.0 +2869031,2869032,25.0,1160176,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869032,2869033,32.0,1160177,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22788.0,2139.0 +2869033,2869034,25.0,1160178,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22798.0,2142.0 +2869034,2869035,25.0,1160179,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869035,2869036,32.0,1160180,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,5413,10.0,22788.0,2139.0 +2869036,2869037,25.0,1160181,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22798.0,2142.0 +2869037,2869038,25.0,1160182,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5614,12.0,22788.0,2139.0 +2869038,2869039,27.0,1160183,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2869039,2869040,24.0,1160183,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2869040,2869041,27.0,1160184,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869041,2869042,24.0,1160184,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869042,2869043,27.0,1160185,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869043,2869044,24.0,1160185,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869044,2869045,27.0,1160186,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869045,2869046,24.0,1160186,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869046,2869047,27.0,1160187,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2869047,2869048,24.0,1160187,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2869048,2869049,27.0,1160188,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2869049,2869050,24.0,1160188,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2869050,2869051,27.0,1160189,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869051,2869052,24.0,1160189,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869052,2869053,27.0,1160190,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869053,2869054,24.0,1160190,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869054,2869055,27.0,1160191,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2869055,2869056,24.0,1160191,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2869056,2869057,27.0,1160192,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869057,2869058,24.0,1160192,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869058,2869059,27.0,1160193,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869059,2869060,24.0,1160193,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869060,2869061,27.0,1160194,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869061,2869062,24.0,1160194,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869062,2869063,27.0,1160195,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869063,2869064,24.0,1160195,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869064,2869065,27.0,1160196,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869065,2869066,24.0,1160196,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869066,2869067,27.0,1160197,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2869067,2869068,24.0,1160197,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2869068,2869069,27.0,1160198,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869069,2869070,24.0,1160198,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869070,2869071,27.0,1160199,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2869071,2869072,24.0,1160199,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2869072,2869073,27.0,1160200,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2869073,2869074,24.0,1160200,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2869074,2869075,27.0,1160201,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2869075,2869076,24.0,1160201,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2869076,2869077,27.0,1160202,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869077,2869078,24.0,1160202,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869078,2869079,27.0,1160203,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2869079,2869080,24.0,1160203,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2869080,2869081,27.0,1160204,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869081,2869082,24.0,1160204,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869082,2869083,27.0,1160205,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869083,2869084,24.0,1160205,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869084,2869085,27.0,1160206,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869085,2869086,24.0,1160206,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869086,2869087,27.0,1160207,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2869087,2869088,24.0,1160207,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2869088,2869089,27.0,1160208,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869089,2869090,24.0,1160208,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869090,2869091,27.0,1160209,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869091,2869092,24.0,1160209,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869092,2869093,27.0,1160210,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869093,2869094,24.0,1160210,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869094,2869095,27.0,1160211,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869095,2869096,24.0,1160211,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869096,2869097,27.0,1160212,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869097,2869098,24.0,1160212,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869098,2869099,27.0,1160213,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869099,2869100,24.0,1160213,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869100,2869101,27.0,1160214,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869101,2869102,24.0,1160214,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869102,2869103,27.0,1160215,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22798.0,2142.0 +2869103,2869104,24.0,1160215,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22798.0,2142.0 +2869104,2869105,27.0,1160216,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22788.0,2139.0 +2869105,2869106,24.0,1160216,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22788.0,2139.0 +2869106,2869107,41.0,1160217,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22798.0,2142.0 +2869107,2869108,41.0,1160218,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22798.0,2142.0 +2869108,2869109,41.0,1160219,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22798.0,2142.0 +2869109,2869110,41.0,1160220,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22786.0,2139.0 +2869110,2869111,41.0,1160221,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22788.0,2139.0 +2869111,2869112,41.0,1160222,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22798.0,2142.0 +2869112,2869113,41.0,1160223,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22798.0,2142.0 +2869113,2869114,41.0,1160224,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22798.0,2142.0 +2869114,2869115,41.0,1160225,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22788.0,2139.0 +2869115,2869116,41.0,1160226,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22788.0,2139.0 +2869116,2869117,41.0,1160227,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22788.0,2139.0 +2869117,2869118,41.0,1160228,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22788.0,2139.0 +2869118,2869119,41.0,1160229,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22788.0,2139.0 +2869119,2869120,41.0,1160230,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22788.0,2139.0 +2869120,2869121,41.0,1160231,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22788.0,2139.0 +2869121,2869122,41.0,1160232,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22798.0,2142.0 +2869122,2869123,41.0,1160233,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22784.0,2139.0 +2869123,2869124,41.0,1160234,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22798.0,2142.0 +2869124,2869125,41.0,1160235,1,1,0,1,1.0,25.0,1.0,15.0,4.0,23,2.0,22788.0,2139.0 +2869125,2869126,31.0,1160236,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869126,2869127,24.0,1160236,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22798.0,2142.0 +2869127,2869128,31.0,1160237,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2869128,2869129,24.0,1160237,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22784.0,2139.0 +2869129,2869130,31.0,1160238,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869130,2869131,24.0,1160238,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22798.0,2142.0 +2869131,2869132,31.0,1160239,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869132,2869133,24.0,1160239,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22788.0,2139.0 +2869133,2869134,31.0,1160240,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869134,2869135,24.0,1160240,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22798.0,2142.0 +2869135,2869136,31.0,1160241,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869136,2869137,24.0,1160241,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22788.0,2139.0 +2869137,2869138,19.0,1160242,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2869138,2869139,50.0,1160242,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2869139,2869140,19.0,1160243,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869140,2869141,50.0,1160243,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869141,2869142,19.0,1160244,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869142,2869143,50.0,1160244,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22784.0,2139.0 +2869143,2869144,19.0,1160245,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869144,2869145,50.0,1160245,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869145,2869146,19.0,1160246,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869146,2869147,50.0,1160246,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22784.0,2139.0 +2869147,2869148,19.0,1160247,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2869148,2869149,50.0,1160247,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2869149,2869150,19.0,1160248,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869150,2869151,50.0,1160248,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869151,2869152,19.0,1160249,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869152,2869153,50.0,1160249,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869153,2869154,19.0,1160250,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869154,2869155,50.0,1160250,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22784.0,2139.0 +2869155,2869156,19.0,1160251,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869156,2869157,50.0,1160251,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869157,2869158,19.0,1160252,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2869158,2869159,50.0,1160252,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2869159,2869160,19.0,1160253,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2869160,2869161,50.0,1160253,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2869161,2869162,19.0,1160254,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869162,2869163,50.0,1160254,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22784.0,2139.0 +2869163,2869164,19.0,1160255,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869164,2869165,50.0,1160255,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869165,2869166,19.0,1160256,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869166,2869167,50.0,1160256,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869167,2869168,19.0,1160257,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2869168,2869169,50.0,1160257,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2869169,2869170,19.0,1160258,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869170,2869171,50.0,1160258,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22784.0,2139.0 +2869171,2869172,19.0,1160259,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869172,2869173,50.0,1160259,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869173,2869174,19.0,1160260,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2869174,2869175,50.0,1160260,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2869175,2869176,19.0,1160261,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869176,2869177,50.0,1160261,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869177,2869178,19.0,1160262,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869178,2869179,50.0,1160262,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869179,2869180,19.0,1160263,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22798.0,2142.0 +2869180,2869181,50.0,1160263,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22798.0,2142.0 +2869181,2869182,19.0,1160264,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869182,2869183,50.0,1160264,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869183,2869184,19.0,1160265,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869184,2869185,50.0,1160265,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869185,2869186,19.0,1160266,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22788.0,2139.0 +2869186,2869187,50.0,1160266,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22788.0,2139.0 +2869187,2869188,23.0,1160267,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2869188,2869189,26.0,1160267,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2869189,2869190,23.0,1160268,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869190,2869191,26.0,1160268,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869191,2869192,23.0,1160269,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869192,2869193,26.0,1160269,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869193,2869194,23.0,1160270,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869194,2869195,26.0,1160270,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869195,2869196,23.0,1160271,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2869196,2869197,26.0,1160271,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2869197,2869198,23.0,1160272,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2869198,2869199,26.0,1160272,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2869199,2869200,23.0,1160273,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869200,2869201,26.0,1160273,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2869201,2869202,23.0,1160274,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869202,2869203,26.0,1160274,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869203,2869204,23.0,1160275,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869204,2869205,26.0,1160275,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869205,2869206,23.0,1160276,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869206,2869207,26.0,1160276,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2869207,2869208,23.0,1160277,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869208,2869209,26.0,1160277,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869209,2869210,23.0,1160278,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2869210,2869211,26.0,1160278,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2869211,2869212,23.0,1160279,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869212,2869213,26.0,1160279,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2869213,2869214,23.0,1160280,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869214,2869215,26.0,1160280,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2869215,2869216,23.0,1160281,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869216,2869217,26.0,1160281,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869217,2869218,23.0,1160282,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869218,2869219,26.0,1160282,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2869219,2869220,23.0,1160283,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869220,2869221,26.0,1160283,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2869221,2869222,23.0,1160284,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869222,2869223,26.0,1160284,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869223,2869224,23.0,1160285,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869224,2869225,26.0,1160285,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869225,2869226,23.0,1160286,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2869226,2869227,26.0,1160286,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2869227,2869228,23.0,1160287,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869228,2869229,26.0,1160287,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869229,2869230,23.0,1160288,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869230,2869231,26.0,1160288,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2869231,2869232,23.0,1160289,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2869232,2869233,26.0,1160289,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2869233,2869234,23.0,1160290,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869234,2869235,26.0,1160290,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2869235,2869236,23.0,1160291,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869236,2869237,26.0,1160291,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869237,2869238,23.0,1160292,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869238,2869239,26.0,1160292,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869239,2869240,23.0,1160293,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22788.0,2139.0 +2869240,2869241,26.0,1160293,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22788.0,2139.0 +2869241,2869242,23.0,1160294,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22798.0,2142.0 +2869242,2869243,26.0,1160294,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22798.0,2142.0 +2869243,2869244,24.0,1160295,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22788.0,2139.0 +2869244,2869245,24.0,1160296,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22798.0,2142.0 +2869245,2869246,21.0,1160297,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22784.0,2139.0 +2869246,2869247,21.0,1160298,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22798.0,2142.0 +2869247,2869248,21.0,1160299,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22784.0,2139.0 +2869248,2869249,21.0,1160300,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22784.0,2139.0 +2869249,2869250,21.0,1160301,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869250,2869251,21.0,1160302,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869251,2869252,21.0,1160303,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869252,2869253,21.0,1160304,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869253,2869254,21.0,1160305,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22798.0,2142.0 +2869254,2869255,21.0,1160306,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22798.0,2142.0 +2869255,2869256,21.0,1160307,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22798.0,2142.0 +2869256,2869257,21.0,1160308,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22798.0,2142.0 +2869257,2869258,21.0,1160309,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22784.0,2139.0 +2869258,2869259,21.0,1160310,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869259,2869260,21.0,1160311,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869260,2869261,21.0,1160312,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869261,2869262,21.0,1160313,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869262,2869263,21.0,1160314,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869263,2869264,21.0,1160315,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869264,2869265,21.0,1160316,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22798.0,2142.0 +2869265,2869266,21.0,1160317,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22798.0,2142.0 +2869266,2869267,21.0,1160318,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869267,2869268,21.0,1160319,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869268,2869269,21.0,1160320,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22784.0,2139.0 +2869269,2869270,21.0,1160321,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869270,2869271,21.0,1160322,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869271,2869272,21.0,1160323,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869272,2869273,21.0,1160324,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869273,2869274,21.0,1160325,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22798.0,2142.0 +2869274,2869275,21.0,1160326,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869275,2869276,21.0,1160327,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869276,2869277,21.0,1160328,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869277,2869278,21.0,1160329,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869278,2869279,21.0,1160330,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22788.0,2139.0 +2869279,2869280,24.0,1160331,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22784.0,2139.0 +2869280,2869281,25.0,1160331,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22784.0,2139.0 +2869281,2869282,24.0,1160332,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22798.0,2142.0 +2869282,2869283,25.0,1160332,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22798.0,2142.0 +2869283,2869284,24.0,1160333,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869284,2869285,25.0,1160333,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869285,2869286,24.0,1160334,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22798.0,2142.0 +2869286,2869287,25.0,1160334,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22798.0,2142.0 +2869287,2869288,24.0,1160335,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22798.0,2142.0 +2869288,2869289,25.0,1160335,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22798.0,2142.0 +2869289,2869290,24.0,1160336,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869290,2869291,25.0,1160336,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869291,2869292,24.0,1160337,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869292,2869293,25.0,1160337,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869293,2869294,24.0,1160338,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869294,2869295,25.0,1160338,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869295,2869296,24.0,1160339,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22786.0,2139.0 +2869296,2869297,25.0,1160339,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22786.0,2139.0 +2869297,2869298,24.0,1160340,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22784.0,2139.0 +2869298,2869299,25.0,1160340,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22784.0,2139.0 +2869299,2869300,24.0,1160341,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869300,2869301,25.0,1160341,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869301,2869302,24.0,1160342,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869302,2869303,25.0,1160342,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869303,2869304,24.0,1160343,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22798.0,2142.0 +2869304,2869305,25.0,1160343,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22798.0,2142.0 +2869305,2869306,24.0,1160344,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869306,2869307,25.0,1160344,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869307,2869308,24.0,1160345,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869308,2869309,25.0,1160345,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869309,2869310,24.0,1160346,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22784.0,2139.0 +2869310,2869311,25.0,1160346,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22784.0,2139.0 +2869311,2869312,24.0,1160347,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22784.0,2139.0 +2869312,2869313,25.0,1160347,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22784.0,2139.0 +2869313,2869314,24.0,1160348,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22798.0,2142.0 +2869314,2869315,25.0,1160348,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22798.0,2142.0 +2869315,2869316,24.0,1160349,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22784.0,2139.0 +2869316,2869317,25.0,1160349,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22784.0,2139.0 +2869317,2869318,24.0,1160350,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22798.0,2142.0 +2869318,2869319,25.0,1160350,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22798.0,2142.0 +2869319,2869320,24.0,1160351,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869320,2869321,25.0,1160351,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869321,2869322,24.0,1160352,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869322,2869323,25.0,1160352,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869323,2869324,24.0,1160353,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869324,2869325,25.0,1160353,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869325,2869326,24.0,1160354,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869326,2869327,25.0,1160354,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869327,2869328,24.0,1160355,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22786.0,2139.0 +2869328,2869329,25.0,1160355,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22786.0,2139.0 +2869329,2869330,24.0,1160356,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869330,2869331,25.0,1160356,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869331,2869332,24.0,1160357,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22798.0,2142.0 +2869332,2869333,25.0,1160357,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22798.0,2142.0 +2869333,2869334,24.0,1160358,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22798.0,2142.0 +2869334,2869335,25.0,1160358,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22798.0,2142.0 +2869335,2869336,24.0,1160359,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22798.0,2142.0 +2869336,2869337,25.0,1160359,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22798.0,2142.0 +2869337,2869338,24.0,1160360,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869338,2869339,25.0,1160360,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869339,2869340,24.0,1160361,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869340,2869341,25.0,1160361,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869341,2869342,24.0,1160362,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22786.0,2139.0 +2869342,2869343,25.0,1160362,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22786.0,2139.0 +2869343,2869344,24.0,1160363,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22788.0,2139.0 +2869344,2869345,25.0,1160363,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22788.0,2139.0 +2869345,2869346,22.0,1160364,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22784.0,2139.0 +2869346,2869347,20.0,1160365,1,1,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869347,2869348,25.0,1160365,2,1,13,1,6.0,-9.0,-9.0,16.0,4.0,722Z,16.0,22788.0,2139.0 +2869348,2869349,20.0,1160366,1,1,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869349,2869350,25.0,1160366,2,1,13,1,6.0,-9.0,-9.0,16.0,4.0,722Z,16.0,22788.0,2139.0 +2869350,2869351,22.0,1160367,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869351,2869352,22.0,1160368,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869352,2869353,22.0,1160369,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869353,2869354,22.0,1160370,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869354,2869355,22.0,1160371,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869355,2869356,22.0,1160372,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869356,2869357,22.0,1160373,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869357,2869358,22.0,1160374,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22784.0,2139.0 +2869358,2869359,22.0,1160375,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869359,2869360,22.0,1160376,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22784.0,2139.0 +2869360,2869361,22.0,1160377,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869361,2869362,22.0,1160378,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869362,2869363,22.0,1160379,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869363,2869364,22.0,1160380,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22786.0,2139.0 +2869364,2869365,22.0,1160381,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869365,2869366,22.0,1160382,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869366,2869367,22.0,1160383,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869367,2869368,22.0,1160384,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869368,2869369,22.0,1160385,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869369,2869370,22.0,1160386,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869370,2869371,22.0,1160387,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869371,2869372,22.0,1160388,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869372,2869373,22.0,1160389,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22784.0,2139.0 +2869373,2869374,22.0,1160390,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869374,2869375,22.0,1160391,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869375,2869376,22.0,1160392,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869376,2869377,22.0,1160393,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869377,2869378,22.0,1160394,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869378,2869379,22.0,1160395,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869379,2869380,22.0,1160396,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869380,2869381,22.0,1160397,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22798.0,2142.0 +2869381,2869382,22.0,1160398,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869382,2869383,22.0,1160399,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869383,2869384,22.0,1160400,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869384,2869385,22.0,1160401,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22788.0,2139.0 +2869385,2869386,65.0,1160402,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5111Z,8.0,22784.0,2139.0 +2869386,2869387,65.0,1160403,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,5111Z,8.0,22787.0,2139.0 +2869387,2869388,69.0,1160404,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869388,2869389,80.0,1160405,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869389,2869390,76.0,1160406,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869390,2869391,67.0,1160407,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869391,2869392,80.0,1160408,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869392,2869393,79.0,1160409,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869393,2869394,94.0,1160410,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869394,2869395,80.0,1160411,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869395,2869396,94.0,1160412,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869396,2869397,76.0,1160413,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869397,2869398,80.0,1160414,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869398,2869399,76.0,1160415,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869399,2869400,79.0,1160416,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869400,2869401,76.0,1160417,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869401,2869402,67.0,1160418,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869402,2869403,79.0,1160419,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869403,2869404,80.0,1160420,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869404,2869405,69.0,1160421,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869405,2869406,88.0,1160422,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869406,2869407,94.0,1160423,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869407,2869408,82.0,1160424,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869408,2869409,94.0,1160425,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869409,2869410,67.0,1160426,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869410,2869411,80.0,1160427,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869411,2869412,82.0,1160428,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869412,2869413,88.0,1160429,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869413,2869414,76.0,1160430,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869414,2869415,94.0,1160431,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869415,2869416,88.0,1160432,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869416,2869417,80.0,1160433,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869417,2869418,94.0,1160434,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869418,2869419,88.0,1160435,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869419,2869420,80.0,1160436,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869420,2869421,79.0,1160437,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869421,2869422,80.0,1160438,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869422,2869423,88.0,1160439,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869423,2869424,67.0,1160440,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869424,2869425,80.0,1160441,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869425,2869426,94.0,1160442,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869426,2869427,76.0,1160443,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869427,2869428,79.0,1160444,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869428,2869429,80.0,1160445,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869429,2869430,82.0,1160446,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869430,2869431,79.0,1160447,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869431,2869432,80.0,1160448,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869432,2869433,80.0,1160449,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869433,2869434,67.0,1160450,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869434,2869435,67.0,1160451,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869435,2869436,67.0,1160452,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869436,2869437,76.0,1160453,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869437,2869438,76.0,1160454,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869438,2869439,88.0,1160455,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869439,2869440,80.0,1160456,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869440,2869441,88.0,1160457,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869441,2869442,79.0,1160458,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869442,2869443,80.0,1160459,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869443,2869444,82.0,1160460,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869444,2869445,88.0,1160461,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869445,2869446,80.0,1160462,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869446,2869447,78.0,1160463,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869447,2869448,57.0,1160463,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22786.0,2139.0 +2869448,2869449,78.0,1160464,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869449,2869450,57.0,1160464,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22787.0,2139.0 +2869450,2869451,78.0,1160465,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869451,2869452,57.0,1160465,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22784.0,2139.0 +2869452,2869453,78.0,1160466,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869453,2869454,57.0,1160466,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22787.0,2139.0 +2869454,2869455,78.0,1160467,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869455,2869456,57.0,1160467,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22786.0,2139.0 +2869456,2869457,78.0,1160468,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869457,2869458,57.0,1160468,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22784.0,2139.0 +2869458,2869459,78.0,1160469,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869459,2869460,57.0,1160469,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22784.0,2139.0 +2869460,2869461,78.0,1160470,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869461,2869462,57.0,1160470,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22784.0,2139.0 +2869462,2869463,78.0,1160471,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869463,2869464,57.0,1160471,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22786.0,2139.0 +2869464,2869465,78.0,1160472,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869465,2869466,57.0,1160472,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22786.0,2139.0 +2869466,2869467,78.0,1160473,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869467,2869468,57.0,1160473,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22784.0,2139.0 +2869468,2869469,78.0,1160474,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869469,2869470,57.0,1160474,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22784.0,2139.0 +2869470,2869471,78.0,1160475,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869471,2869472,57.0,1160475,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22787.0,2139.0 +2869472,2869473,78.0,1160476,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869473,2869474,57.0,1160476,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22786.0,2139.0 +2869474,2869475,78.0,1160477,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869475,2869476,57.0,1160477,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22787.0,2139.0 +2869476,2869477,78.0,1160478,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869477,2869478,57.0,1160478,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22785.0,2139.0 +2869478,2869479,78.0,1160479,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869479,2869480,57.0,1160479,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22786.0,2139.0 +2869480,2869481,78.0,1160480,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869481,2869482,57.0,1160480,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22784.0,2139.0 +2869482,2869483,78.0,1160481,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869483,2869484,57.0,1160481,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22787.0,2139.0 +2869484,2869485,78.0,1160482,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869485,2869486,57.0,1160482,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22786.0,2139.0 +2869486,2869487,78.0,1160483,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869487,2869488,57.0,1160483,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22786.0,2139.0 +2869488,2869489,78.0,1160484,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869489,2869490,57.0,1160484,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22784.0,2139.0 +2869490,2869491,78.0,1160485,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869491,2869492,57.0,1160485,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22784.0,2139.0 +2869492,2869493,78.0,1160486,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869493,2869494,57.0,1160486,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22787.0,2139.0 +2869494,2869495,78.0,1160487,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869495,2869496,57.0,1160487,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22787.0,2139.0 +2869496,2869497,78.0,1160488,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869497,2869498,57.0,1160488,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22787.0,2139.0 +2869498,2869499,78.0,1160489,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869499,2869500,57.0,1160489,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22787.0,2139.0 +2869500,2869501,78.0,1160490,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869501,2869502,57.0,1160490,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22787.0,2139.0 +2869502,2869503,78.0,1160491,1,1,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869503,2869504,57.0,1160491,2,1,2,3,1.0,16.0,6.0,-9.0,4.0,23,2.0,22787.0,2139.0 +2869504,2869505,69.0,1160492,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869505,2869506,81.0,1160493,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869506,2869507,80.0,1160494,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869507,2869508,80.0,1160495,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869508,2869509,79.0,1160496,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869509,2869510,76.0,1160497,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22786.0,2139.0 +2869510,2869511,79.0,1160498,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869511,2869512,80.0,1160499,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22787.0,2139.0 +2869512,2869513,76.0,1160500,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869513,2869514,85.0,1160501,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869514,2869515,76.0,1160502,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22785.0,2139.0 +2869515,2869516,76.0,1160503,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869516,2869517,71.0,1160504,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22784.0,2139.0 +2869517,2869518,59.0,1160505,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2869518,2869519,23.0,1160505,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22785.0,2139.0 +2869519,2869520,59.0,1160506,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2869520,2869521,23.0,1160506,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22785.0,2139.0 +2869521,2869522,59.0,1160507,1,2,0,1,1.0,55.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2869522,2869523,23.0,1160507,2,1,2,1,1.0,40.0,2.0,15.0,4.0,813M,17.0,22786.0,2139.0 +2869523,2869524,61.0,1160508,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869524,2869525,69.0,1160508,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869525,2869526,21.0,1160508,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869526,2869527,61.0,1160509,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22784.0,2139.0 +2869527,2869528,69.0,1160509,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22784.0,2139.0 +2869528,2869529,21.0,1160509,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22784.0,2139.0 +2869529,2869530,61.0,1160510,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869530,2869531,69.0,1160510,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869531,2869532,21.0,1160510,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869532,2869533,61.0,1160511,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22784.0,2139.0 +2869533,2869534,69.0,1160511,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22784.0,2139.0 +2869534,2869535,21.0,1160511,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22784.0,2139.0 +2869535,2869536,61.0,1160512,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869536,2869537,69.0,1160512,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869537,2869538,21.0,1160512,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22785.0,2139.0 +2869538,2869539,61.0,1160513,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869539,2869540,69.0,1160513,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869540,2869541,21.0,1160513,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2869541,2869542,61.0,1160514,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869542,2869543,69.0,1160514,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869543,2869544,21.0,1160514,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869544,2869545,61.0,1160515,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869545,2869546,69.0,1160515,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869546,2869547,21.0,1160515,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2869547,2869548,61.0,1160516,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869548,2869549,69.0,1160516,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869549,2869550,21.0,1160516,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869550,2869551,61.0,1160517,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869551,2869552,69.0,1160517,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869552,2869553,21.0,1160517,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869553,2869554,61.0,1160518,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869554,2869555,69.0,1160518,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869555,2869556,21.0,1160518,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2869556,2869557,61.0,1160519,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869557,2869558,69.0,1160519,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869558,2869559,21.0,1160519,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869559,2869560,61.0,1160520,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869560,2869561,69.0,1160520,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869561,2869562,21.0,1160520,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2869562,2869563,61.0,1160521,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22784.0,2139.0 +2869563,2869564,69.0,1160521,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22784.0,2139.0 +2869564,2869565,21.0,1160521,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22784.0,2139.0 +2869565,2869566,61.0,1160522,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869566,2869567,69.0,1160522,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869567,2869568,21.0,1160522,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2869568,2869569,61.0,1160523,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869569,2869570,69.0,1160523,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869570,2869571,21.0,1160523,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22785.0,2139.0 +2869571,2869572,61.0,1160524,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869572,2869573,69.0,1160524,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869573,2869574,21.0,1160524,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22785.0,2139.0 +2869574,2869575,61.0,1160525,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869575,2869576,69.0,1160525,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869576,2869577,21.0,1160525,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2869577,2869578,61.0,1160526,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869578,2869579,69.0,1160526,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869579,2869580,21.0,1160526,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869580,2869581,61.0,1160527,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869581,2869582,69.0,1160527,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869582,2869583,21.0,1160527,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869583,2869584,61.0,1160528,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869584,2869585,69.0,1160528,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869585,2869586,21.0,1160528,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22785.0,2139.0 +2869586,2869587,61.0,1160529,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869587,2869588,69.0,1160529,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869588,2869589,21.0,1160529,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2869589,2869590,61.0,1160530,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869590,2869591,69.0,1160530,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869591,2869592,21.0,1160530,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2869592,2869593,61.0,1160531,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869593,2869594,69.0,1160531,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869594,2869595,21.0,1160531,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869595,2869596,61.0,1160532,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869596,2869597,69.0,1160532,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22786.0,2139.0 +2869597,2869598,21.0,1160532,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2869598,2869599,61.0,1160533,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869599,2869600,69.0,1160533,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869600,2869601,21.0,1160533,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22785.0,2139.0 +2869601,2869602,61.0,1160534,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869602,2869603,69.0,1160534,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869603,2869604,21.0,1160534,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869604,2869605,61.0,1160535,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869605,2869606,69.0,1160535,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869606,2869607,21.0,1160535,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869607,2869608,61.0,1160536,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869608,2869609,69.0,1160536,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22785.0,2139.0 +2869609,2869610,21.0,1160536,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22785.0,2139.0 +2869610,2869611,61.0,1160537,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869611,2869612,69.0,1160537,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22787.0,2139.0 +2869612,2869613,21.0,1160537,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2869613,2869614,61.0,1160538,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22784.0,2139.0 +2869614,2869615,69.0,1160538,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22784.0,2139.0 +2869615,2869616,21.0,1160538,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22784.0,2139.0 +2869616,2869617,53.0,1160539,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869617,2869618,33.0,1160539,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869618,2869619,19.0,1160539,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869619,2869620,15.0,1160539,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869620,2869621,48.0,1160539,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869621,2869622,53.0,1160540,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22785.0,2139.0 +2869622,2869623,33.0,1160540,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22785.0,2139.0 +2869623,2869624,19.0,1160540,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22785.0,2139.0 +2869624,2869625,15.0,1160540,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22785.0,2139.0 +2869625,2869626,48.0,1160540,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22785.0,2139.0 +2869626,2869627,53.0,1160541,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22784.0,2139.0 +2869627,2869628,33.0,1160541,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22784.0,2139.0 +2869628,2869629,19.0,1160541,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22784.0,2139.0 +2869629,2869630,15.0,1160541,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22784.0,2139.0 +2869630,2869631,48.0,1160541,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22784.0,2139.0 +2869631,2869632,53.0,1160542,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22785.0,2139.0 +2869632,2869633,33.0,1160542,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22785.0,2139.0 +2869633,2869634,19.0,1160542,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22785.0,2139.0 +2869634,2869635,15.0,1160542,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22785.0,2139.0 +2869635,2869636,48.0,1160542,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22785.0,2139.0 +2869636,2869637,53.0,1160543,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22785.0,2139.0 +2869637,2869638,33.0,1160543,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22785.0,2139.0 +2869638,2869639,19.0,1160543,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22785.0,2139.0 +2869639,2869640,15.0,1160543,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22785.0,2139.0 +2869640,2869641,48.0,1160543,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22785.0,2139.0 +2869641,2869642,53.0,1160544,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22784.0,2139.0 +2869642,2869643,33.0,1160544,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22784.0,2139.0 +2869643,2869644,19.0,1160544,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22784.0,2139.0 +2869644,2869645,15.0,1160544,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22784.0,2139.0 +2869645,2869646,48.0,1160544,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22784.0,2139.0 +2869646,2869647,53.0,1160545,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22786.0,2139.0 +2869647,2869648,33.0,1160545,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22786.0,2139.0 +2869648,2869649,19.0,1160545,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22786.0,2139.0 +2869649,2869650,15.0,1160545,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2869650,2869651,48.0,1160545,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22786.0,2139.0 +2869651,2869652,53.0,1160546,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869652,2869653,33.0,1160546,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869653,2869654,19.0,1160546,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869654,2869655,15.0,1160546,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869655,2869656,48.0,1160546,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869656,2869657,53.0,1160547,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22786.0,2139.0 +2869657,2869658,33.0,1160547,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22786.0,2139.0 +2869658,2869659,19.0,1160547,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22786.0,2139.0 +2869659,2869660,15.0,1160547,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2869660,2869661,48.0,1160547,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22786.0,2139.0 +2869661,2869662,53.0,1160548,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869662,2869663,33.0,1160548,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869663,2869664,19.0,1160548,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869664,2869665,15.0,1160548,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869665,2869666,48.0,1160548,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869666,2869667,53.0,1160549,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869667,2869668,33.0,1160549,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869668,2869669,19.0,1160549,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869669,2869670,15.0,1160549,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869670,2869671,48.0,1160549,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869671,2869672,53.0,1160550,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869672,2869673,33.0,1160550,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869673,2869674,19.0,1160550,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869674,2869675,15.0,1160550,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869675,2869676,48.0,1160550,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869676,2869677,53.0,1160551,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22786.0,2139.0 +2869677,2869678,33.0,1160551,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22786.0,2139.0 +2869678,2869679,19.0,1160551,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22786.0,2139.0 +2869679,2869680,15.0,1160551,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2869680,2869681,48.0,1160551,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22786.0,2139.0 +2869681,2869682,53.0,1160552,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869682,2869683,33.0,1160552,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869683,2869684,19.0,1160552,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869684,2869685,15.0,1160552,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869685,2869686,48.0,1160552,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869686,2869687,53.0,1160553,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22786.0,2139.0 +2869687,2869688,33.0,1160553,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22786.0,2139.0 +2869688,2869689,19.0,1160553,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22786.0,2139.0 +2869689,2869690,15.0,1160553,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2869690,2869691,48.0,1160553,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22786.0,2139.0 +2869691,2869692,53.0,1160554,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22785.0,2139.0 +2869692,2869693,33.0,1160554,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22785.0,2139.0 +2869693,2869694,19.0,1160554,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22785.0,2139.0 +2869694,2869695,15.0,1160554,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22785.0,2139.0 +2869695,2869696,48.0,1160554,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22785.0,2139.0 +2869696,2869697,53.0,1160555,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22786.0,2139.0 +2869697,2869698,33.0,1160555,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22786.0,2139.0 +2869698,2869699,19.0,1160555,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22786.0,2139.0 +2869699,2869700,15.0,1160555,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2869700,2869701,48.0,1160555,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22786.0,2139.0 +2869701,2869702,53.0,1160556,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869702,2869703,33.0,1160556,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869703,2869704,19.0,1160556,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869704,2869705,15.0,1160556,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869705,2869706,48.0,1160556,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869706,2869707,53.0,1160557,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869707,2869708,33.0,1160557,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869708,2869709,19.0,1160557,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869709,2869710,15.0,1160557,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869710,2869711,48.0,1160557,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869711,2869712,53.0,1160558,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869712,2869713,33.0,1160558,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869713,2869714,19.0,1160558,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869714,2869715,15.0,1160558,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869715,2869716,48.0,1160558,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869716,2869717,53.0,1160559,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22784.0,2139.0 +2869717,2869718,33.0,1160559,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22784.0,2139.0 +2869718,2869719,19.0,1160559,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22784.0,2139.0 +2869719,2869720,15.0,1160559,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22784.0,2139.0 +2869720,2869721,48.0,1160559,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22784.0,2139.0 +2869721,2869722,53.0,1160560,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869722,2869723,33.0,1160560,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869723,2869724,19.0,1160560,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869724,2869725,15.0,1160560,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869725,2869726,48.0,1160560,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869726,2869727,53.0,1160561,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869727,2869728,33.0,1160561,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869728,2869729,19.0,1160561,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869729,2869730,15.0,1160561,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869730,2869731,48.0,1160561,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869731,2869732,53.0,1160562,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22784.0,2139.0 +2869732,2869733,33.0,1160562,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22784.0,2139.0 +2869733,2869734,19.0,1160562,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22784.0,2139.0 +2869734,2869735,15.0,1160562,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22784.0,2139.0 +2869735,2869736,48.0,1160562,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22784.0,2139.0 +2869736,2869737,53.0,1160563,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869737,2869738,33.0,1160563,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869738,2869739,19.0,1160563,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869739,2869740,15.0,1160563,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869740,2869741,48.0,1160563,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869741,2869742,53.0,1160564,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22784.0,2139.0 +2869742,2869743,33.0,1160564,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22784.0,2139.0 +2869743,2869744,19.0,1160564,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22784.0,2139.0 +2869744,2869745,15.0,1160564,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22784.0,2139.0 +2869745,2869746,48.0,1160564,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22784.0,2139.0 +2869746,2869747,53.0,1160565,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869747,2869748,33.0,1160565,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869748,2869749,19.0,1160565,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869749,2869750,15.0,1160565,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869750,2869751,48.0,1160565,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869751,2869752,53.0,1160566,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869752,2869753,33.0,1160566,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869753,2869754,19.0,1160566,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869754,2869755,15.0,1160566,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869755,2869756,48.0,1160566,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869756,2869757,53.0,1160567,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22786.0,2139.0 +2869757,2869758,33.0,1160567,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22786.0,2139.0 +2869758,2869759,19.0,1160567,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22786.0,2139.0 +2869759,2869760,15.0,1160567,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2869760,2869761,48.0,1160567,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22786.0,2139.0 +2869761,2869762,53.0,1160568,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869762,2869763,33.0,1160568,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869763,2869764,19.0,1160568,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869764,2869765,15.0,1160568,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869765,2869766,48.0,1160568,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869766,2869767,53.0,1160569,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869767,2869768,33.0,1160569,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869768,2869769,19.0,1160569,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869769,2869770,15.0,1160569,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869770,2869771,48.0,1160569,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869771,2869772,53.0,1160570,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22786.0,2139.0 +2869772,2869773,33.0,1160570,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22786.0,2139.0 +2869773,2869774,19.0,1160570,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22786.0,2139.0 +2869774,2869775,15.0,1160570,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2869775,2869776,48.0,1160570,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22786.0,2139.0 +2869776,2869777,53.0,1160571,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22785.0,2139.0 +2869777,2869778,33.0,1160571,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22785.0,2139.0 +2869778,2869779,19.0,1160571,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22785.0,2139.0 +2869779,2869780,15.0,1160571,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22785.0,2139.0 +2869780,2869781,48.0,1160571,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22785.0,2139.0 +2869781,2869782,53.0,1160572,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22787.0,2139.0 +2869782,2869783,33.0,1160572,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22787.0,2139.0 +2869783,2869784,19.0,1160572,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22787.0,2139.0 +2869784,2869785,15.0,1160572,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2869785,2869786,48.0,1160572,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22787.0,2139.0 +2869786,2869787,53.0,1160573,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22786.0,2139.0 +2869787,2869788,33.0,1160573,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22786.0,2139.0 +2869788,2869789,19.0,1160573,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22786.0,2139.0 +2869789,2869790,15.0,1160573,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2869790,2869791,48.0,1160573,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22786.0,2139.0 +2869791,2869792,53.0,1160574,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22786.0,2139.0 +2869792,2869793,33.0,1160574,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22786.0,2139.0 +2869793,2869794,19.0,1160574,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22786.0,2139.0 +2869794,2869795,15.0,1160574,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2869795,2869796,48.0,1160574,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22786.0,2139.0 +2869796,2869797,53.0,1160575,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22786.0,2139.0 +2869797,2869798,33.0,1160575,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22786.0,2139.0 +2869798,2869799,19.0,1160575,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22786.0,2139.0 +2869799,2869800,15.0,1160575,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2869800,2869801,48.0,1160575,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22786.0,2139.0 +2869801,2869802,53.0,1160576,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22784.0,2139.0 +2869802,2869803,33.0,1160576,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22784.0,2139.0 +2869803,2869804,19.0,1160576,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22784.0,2139.0 +2869804,2869805,15.0,1160576,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22784.0,2139.0 +2869805,2869806,48.0,1160576,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22784.0,2139.0 +2869806,2869807,27.0,1160577,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22787.0,2139.0 +2869807,2869808,23.0,1160577,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22787.0,2139.0 +2869808,2869809,27.0,1160578,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22785.0,2139.0 +2869809,2869810,23.0,1160578,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22785.0,2139.0 +2869810,2869811,27.0,1160579,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22787.0,2139.0 +2869811,2869812,23.0,1160579,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22787.0,2139.0 +2869812,2869813,25.0,1160580,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22786.0,2139.0 +2869813,2869814,22.0,1160580,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22786.0,2139.0 +2869814,2869815,21.0,1160580,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22786.0,2139.0 +2869815,2869816,25.0,1160581,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22784.0,2139.0 +2869816,2869817,22.0,1160581,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22784.0,2139.0 +2869817,2869818,21.0,1160581,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22784.0,2139.0 +2869818,2869819,26.0,1160582,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22784.0,2139.0 +2869819,2869820,22.0,1160582,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2869820,2869821,26.0,1160583,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22787.0,2139.0 +2869821,2869822,22.0,1160583,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2869822,2869823,26.0,1160584,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22785.0,2139.0 +2869823,2869824,22.0,1160584,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2869824,2869825,26.0,1160585,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22786.0,2139.0 +2869825,2869826,22.0,1160585,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2869826,2869827,26.0,1160586,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22787.0,2139.0 +2869827,2869828,22.0,1160586,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2869828,2869829,26.0,1160587,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22785.0,2139.0 +2869829,2869830,22.0,1160587,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2869830,2869831,26.0,1160588,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22784.0,2139.0 +2869831,2869832,22.0,1160588,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2869832,2869833,26.0,1160589,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22785.0,2139.0 +2869833,2869834,22.0,1160589,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2869834,2869835,26.0,1160590,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22784.0,2139.0 +2869835,2869836,22.0,1160590,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2869836,2869837,26.0,1160591,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22784.0,2139.0 +2869837,2869838,22.0,1160591,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2869838,2869839,26.0,1160592,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22785.0,2139.0 +2869839,2869840,22.0,1160592,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2869840,2869841,26.0,1160593,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22787.0,2139.0 +2869841,2869842,22.0,1160593,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2869842,2869843,26.0,1160594,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22784.0,2139.0 +2869843,2869844,22.0,1160594,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2869844,2869845,26.0,1160595,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22786.0,2139.0 +2869845,2869846,22.0,1160595,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2869846,2869847,26.0,1160596,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22787.0,2139.0 +2869847,2869848,22.0,1160596,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2869848,2869849,26.0,1160597,1,1,0,1,1.0,48.0,2.0,16.0,4.0,6111,13.0,22784.0,2139.0 +2869849,2869850,22.0,1160597,2,1,12,4,1.0,50.0,4.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2869850,2869851,27.0,1160598,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869851,2869852,24.0,1160598,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869852,2869853,27.0,1160599,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22784.0,2139.0 +2869853,2869854,24.0,1160599,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869854,2869855,27.0,1160600,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22785.0,2139.0 +2869855,2869856,24.0,1160600,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22785.0,2139.0 +2869856,2869857,27.0,1160601,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869857,2869858,24.0,1160601,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869858,2869859,27.0,1160602,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22784.0,2139.0 +2869859,2869860,24.0,1160602,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869860,2869861,27.0,1160603,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869861,2869862,24.0,1160603,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869862,2869863,27.0,1160604,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869863,2869864,24.0,1160604,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869864,2869865,27.0,1160605,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869865,2869866,24.0,1160605,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869866,2869867,27.0,1160606,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22784.0,2139.0 +2869867,2869868,24.0,1160606,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869868,2869869,27.0,1160607,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22785.0,2139.0 +2869869,2869870,24.0,1160607,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22785.0,2139.0 +2869870,2869871,27.0,1160608,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22786.0,2139.0 +2869871,2869872,24.0,1160608,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22786.0,2139.0 +2869872,2869873,27.0,1160609,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869873,2869874,24.0,1160609,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869874,2869875,27.0,1160610,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22786.0,2139.0 +2869875,2869876,24.0,1160610,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22786.0,2139.0 +2869876,2869877,27.0,1160611,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22785.0,2139.0 +2869877,2869878,24.0,1160611,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22785.0,2139.0 +2869878,2869879,27.0,1160612,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22784.0,2139.0 +2869879,2869880,24.0,1160612,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869880,2869881,27.0,1160613,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22786.0,2139.0 +2869881,2869882,24.0,1160613,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22786.0,2139.0 +2869882,2869883,27.0,1160614,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869883,2869884,24.0,1160614,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869884,2869885,27.0,1160615,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22785.0,2139.0 +2869885,2869886,24.0,1160615,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22785.0,2139.0 +2869886,2869887,27.0,1160616,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22786.0,2139.0 +2869887,2869888,24.0,1160616,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22786.0,2139.0 +2869888,2869889,27.0,1160617,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869889,2869890,24.0,1160617,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869890,2869891,27.0,1160618,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22786.0,2139.0 +2869891,2869892,24.0,1160618,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22786.0,2139.0 +2869892,2869893,27.0,1160619,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22786.0,2139.0 +2869893,2869894,24.0,1160619,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22786.0,2139.0 +2869894,2869895,27.0,1160620,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22784.0,2139.0 +2869895,2869896,24.0,1160620,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869896,2869897,27.0,1160621,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22786.0,2139.0 +2869897,2869898,24.0,1160621,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22786.0,2139.0 +2869898,2869899,27.0,1160622,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22784.0,2139.0 +2869899,2869900,24.0,1160622,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869900,2869901,27.0,1160623,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22785.0,2139.0 +2869901,2869902,24.0,1160623,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22785.0,2139.0 +2869902,2869903,27.0,1160624,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22784.0,2139.0 +2869903,2869904,24.0,1160624,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869904,2869905,27.0,1160625,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22786.0,2139.0 +2869905,2869906,24.0,1160625,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22786.0,2139.0 +2869906,2869907,27.0,1160626,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869907,2869908,24.0,1160626,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869908,2869909,27.0,1160627,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869909,2869910,24.0,1160627,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869910,2869911,27.0,1160628,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869911,2869912,24.0,1160628,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869912,2869913,27.0,1160629,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22786.0,2139.0 +2869913,2869914,24.0,1160629,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22786.0,2139.0 +2869914,2869915,27.0,1160630,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22785.0,2139.0 +2869915,2869916,24.0,1160630,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22785.0,2139.0 +2869916,2869917,27.0,1160631,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22784.0,2139.0 +2869917,2869918,24.0,1160631,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22784.0,2139.0 +2869918,2869919,27.0,1160632,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22787.0,2139.0 +2869919,2869920,24.0,1160632,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22787.0,2139.0 +2869920,2869921,27.0,1160633,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869921,2869922,24.0,1160633,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869922,2869923,27.0,1160634,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869923,2869924,24.0,1160634,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869924,2869925,27.0,1160635,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869925,2869926,24.0,1160635,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869926,2869927,27.0,1160636,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869927,2869928,24.0,1160636,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869928,2869929,27.0,1160637,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869929,2869930,24.0,1160637,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869930,2869931,27.0,1160638,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2869931,2869932,24.0,1160638,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2869932,2869933,27.0,1160639,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869933,2869934,24.0,1160639,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869934,2869935,27.0,1160640,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2869935,2869936,24.0,1160640,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2869936,2869937,27.0,1160641,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2869937,2869938,24.0,1160641,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2869938,2869939,27.0,1160642,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2869939,2869940,24.0,1160642,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2869940,2869941,27.0,1160643,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869941,2869942,24.0,1160643,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869942,2869943,27.0,1160644,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2869943,2869944,24.0,1160644,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2869944,2869945,27.0,1160645,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869945,2869946,24.0,1160645,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869946,2869947,27.0,1160646,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2869947,2869948,24.0,1160646,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2869948,2869949,27.0,1160647,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2869949,2869950,24.0,1160647,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2869950,2869951,27.0,1160648,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2869951,2869952,24.0,1160648,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2869952,2869953,27.0,1160649,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2869953,2869954,24.0,1160649,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2869954,2869955,27.0,1160650,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2869955,2869956,24.0,1160650,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2869956,2869957,27.0,1160651,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2869957,2869958,24.0,1160651,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2869958,2869959,27.0,1160652,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2869959,2869960,24.0,1160652,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2869960,2869961,27.0,1160653,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2869961,2869962,24.0,1160653,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2869962,2869963,27.0,1160654,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2869963,2869964,24.0,1160654,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2869964,2869965,27.0,1160655,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2869965,2869966,24.0,1160655,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2869966,2869967,27.0,1160656,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869967,2869968,24.0,1160656,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869968,2869969,27.0,1160657,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2869969,2869970,24.0,1160657,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2869970,2869971,27.0,1160658,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2869971,2869972,24.0,1160658,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2869972,2869973,27.0,1160659,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2869973,2869974,24.0,1160659,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2869974,2869975,27.0,1160660,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2869975,2869976,24.0,1160660,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2869976,2869977,27.0,1160661,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869977,2869978,24.0,1160661,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869978,2869979,27.0,1160662,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2869979,2869980,24.0,1160662,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2869980,2869981,27.0,1160663,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869981,2869982,24.0,1160663,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869982,2869983,27.0,1160664,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2869983,2869984,24.0,1160664,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2869984,2869985,27.0,1160665,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2869985,2869986,24.0,1160665,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2869986,2869987,27.0,1160666,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869987,2869988,24.0,1160666,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869988,2869989,27.0,1160667,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2869989,2869990,24.0,1160667,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2869990,2869991,27.0,1160668,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869991,2869992,24.0,1160668,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869992,2869993,27.0,1160669,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869993,2869994,24.0,1160669,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2869994,2869995,27.0,1160670,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2869995,2869996,24.0,1160670,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2869996,2869997,27.0,1160671,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2869997,2869998,24.0,1160671,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2869998,2869999,27.0,1160672,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2869999,2870000,24.0,1160672,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870000,2870001,27.0,1160673,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870001,2870002,24.0,1160673,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870002,2870003,27.0,1160674,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870003,2870004,24.0,1160674,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870004,2870005,27.0,1160675,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2870005,2870006,24.0,1160675,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2870006,2870007,27.0,1160676,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870007,2870008,24.0,1160676,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870008,2870009,27.0,1160677,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870009,2870010,24.0,1160677,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870010,2870011,27.0,1160678,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870011,2870012,24.0,1160678,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870012,2870013,27.0,1160679,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870013,2870014,24.0,1160679,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870014,2870015,27.0,1160680,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870015,2870016,24.0,1160680,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870016,2870017,27.0,1160681,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870017,2870018,24.0,1160681,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870018,2870019,27.0,1160682,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870019,2870020,24.0,1160682,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870020,2870021,27.0,1160683,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2870021,2870022,24.0,1160683,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2870022,2870023,27.0,1160684,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870023,2870024,24.0,1160684,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870024,2870025,27.0,1160685,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870025,2870026,24.0,1160685,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870026,2870027,27.0,1160686,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870027,2870028,24.0,1160686,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870028,2870029,27.0,1160687,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870029,2870030,24.0,1160687,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870030,2870031,27.0,1160688,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870031,2870032,24.0,1160688,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870032,2870033,27.0,1160689,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2870033,2870034,24.0,1160689,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2870034,2870035,27.0,1160690,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870035,2870036,24.0,1160690,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870036,2870037,27.0,1160691,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870037,2870038,24.0,1160691,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870038,2870039,27.0,1160692,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870039,2870040,24.0,1160692,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870040,2870041,27.0,1160693,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870041,2870042,24.0,1160693,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870042,2870043,27.0,1160694,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870043,2870044,24.0,1160694,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870044,2870045,27.0,1160695,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870045,2870046,24.0,1160695,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870046,2870047,27.0,1160696,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870047,2870048,24.0,1160696,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870048,2870049,27.0,1160697,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870049,2870050,24.0,1160697,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870050,2870051,27.0,1160698,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870051,2870052,24.0,1160698,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870052,2870053,27.0,1160699,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870053,2870054,24.0,1160699,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870054,2870055,27.0,1160700,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870055,2870056,24.0,1160700,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870056,2870057,27.0,1160701,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870057,2870058,24.0,1160701,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870058,2870059,27.0,1160702,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870059,2870060,24.0,1160702,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870060,2870061,27.0,1160703,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2870061,2870062,24.0,1160703,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2870062,2870063,27.0,1160704,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870063,2870064,24.0,1160704,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870064,2870065,27.0,1160705,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870065,2870066,24.0,1160705,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870066,2870067,27.0,1160706,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870067,2870068,24.0,1160706,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870068,2870069,27.0,1160707,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870069,2870070,24.0,1160707,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870070,2870071,27.0,1160708,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870071,2870072,24.0,1160708,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870072,2870073,27.0,1160709,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870073,2870074,24.0,1160709,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870074,2870075,27.0,1160710,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870075,2870076,24.0,1160710,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870076,2870077,27.0,1160711,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870077,2870078,24.0,1160711,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870078,2870079,27.0,1160712,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870079,2870080,24.0,1160712,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870080,2870081,27.0,1160713,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870081,2870082,24.0,1160713,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870082,2870083,27.0,1160714,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870083,2870084,24.0,1160714,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870084,2870085,27.0,1160715,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870085,2870086,24.0,1160715,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870086,2870087,27.0,1160716,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870087,2870088,24.0,1160716,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870088,2870089,27.0,1160717,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870089,2870090,24.0,1160717,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870090,2870091,27.0,1160718,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870091,2870092,24.0,1160718,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870092,2870093,27.0,1160719,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870093,2870094,24.0,1160719,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870094,2870095,27.0,1160720,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2870095,2870096,24.0,1160720,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2870096,2870097,27.0,1160721,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870097,2870098,24.0,1160721,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870098,2870099,27.0,1160722,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870099,2870100,24.0,1160722,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870100,2870101,27.0,1160723,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2870101,2870102,24.0,1160723,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2870102,2870103,27.0,1160724,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2870103,2870104,24.0,1160724,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2870104,2870105,27.0,1160725,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870105,2870106,24.0,1160725,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870106,2870107,27.0,1160726,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870107,2870108,24.0,1160726,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870108,2870109,27.0,1160727,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870109,2870110,24.0,1160727,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870110,2870111,27.0,1160728,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870111,2870112,24.0,1160728,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870112,2870113,27.0,1160729,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870113,2870114,24.0,1160729,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870114,2870115,27.0,1160730,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870115,2870116,24.0,1160730,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870116,2870117,27.0,1160731,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870117,2870118,24.0,1160731,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870118,2870119,27.0,1160732,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870119,2870120,24.0,1160732,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870120,2870121,27.0,1160733,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870121,2870122,24.0,1160733,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870122,2870123,27.0,1160734,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870123,2870124,24.0,1160734,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870124,2870125,27.0,1160735,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870125,2870126,24.0,1160735,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870126,2870127,27.0,1160736,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870127,2870128,24.0,1160736,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870128,2870129,27.0,1160737,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870129,2870130,24.0,1160737,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870130,2870131,27.0,1160738,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2870131,2870132,24.0,1160738,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2870132,2870133,27.0,1160739,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2870133,2870134,24.0,1160739,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2870134,2870135,27.0,1160740,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22785.0,2139.0 +2870135,2870136,24.0,1160740,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22785.0,2139.0 +2870136,2870137,27.0,1160741,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22787.0,2139.0 +2870137,2870138,24.0,1160741,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22787.0,2139.0 +2870138,2870139,27.0,1160742,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22786.0,2139.0 +2870139,2870140,24.0,1160742,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22786.0,2139.0 +2870140,2870141,27.0,1160743,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22784.0,2139.0 +2870141,2870142,24.0,1160743,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22784.0,2139.0 +2870142,2870143,31.0,1160744,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870143,2870144,24.0,1160744,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22786.0,2139.0 +2870144,2870145,31.0,1160745,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870145,2870146,24.0,1160745,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22785.0,2139.0 +2870146,2870147,31.0,1160746,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870147,2870148,24.0,1160746,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22787.0,2139.0 +2870148,2870149,31.0,1160747,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870149,2870150,24.0,1160747,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22787.0,2139.0 +2870150,2870151,31.0,1160748,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870151,2870152,24.0,1160748,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22785.0,2139.0 +2870152,2870153,31.0,1160749,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870153,2870154,24.0,1160749,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22785.0,2139.0 +2870154,2870155,31.0,1160750,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870155,2870156,24.0,1160750,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22784.0,2139.0 +2870156,2870157,31.0,1160751,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870157,2870158,24.0,1160751,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22784.0,2139.0 +2870158,2870159,31.0,1160752,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870159,2870160,24.0,1160752,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22785.0,2139.0 +2870160,2870161,43.0,1160753,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22787.0,2139.0 +2870161,2870162,19.0,1160753,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2870162,2870163,16.0,1160753,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22787.0,2139.0 +2870163,2870164,14.0,1160753,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2870164,2870165,29.0,1160753,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22787.0,2139.0 +2870165,2870166,43.0,1160754,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22786.0,2139.0 +2870166,2870167,19.0,1160754,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2870167,2870168,16.0,1160754,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22786.0,2139.0 +2870168,2870169,14.0,1160754,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2870169,2870170,29.0,1160754,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22786.0,2139.0 +2870170,2870171,43.0,1160755,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22785.0,2139.0 +2870171,2870172,19.0,1160755,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22785.0,2139.0 +2870172,2870173,16.0,1160755,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22785.0,2139.0 +2870173,2870174,14.0,1160755,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22785.0,2139.0 +2870174,2870175,29.0,1160755,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22785.0,2139.0 +2870175,2870176,43.0,1160756,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22787.0,2139.0 +2870176,2870177,19.0,1160756,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2870177,2870178,16.0,1160756,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22787.0,2139.0 +2870178,2870179,14.0,1160756,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2870179,2870180,29.0,1160756,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22787.0,2139.0 +2870180,2870181,43.0,1160757,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22786.0,2139.0 +2870181,2870182,19.0,1160757,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2870182,2870183,16.0,1160757,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22786.0,2139.0 +2870183,2870184,14.0,1160757,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2870184,2870185,29.0,1160757,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22786.0,2139.0 +2870185,2870186,43.0,1160758,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22787.0,2139.0 +2870186,2870187,19.0,1160758,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2870187,2870188,16.0,1160758,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22787.0,2139.0 +2870188,2870189,14.0,1160758,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2870189,2870190,29.0,1160758,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22787.0,2139.0 +2870190,2870191,43.0,1160759,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22787.0,2139.0 +2870191,2870192,19.0,1160759,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2870192,2870193,16.0,1160759,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22787.0,2139.0 +2870193,2870194,14.0,1160759,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2870194,2870195,29.0,1160759,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22787.0,2139.0 +2870195,2870196,43.0,1160760,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22787.0,2139.0 +2870196,2870197,19.0,1160760,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22787.0,2139.0 +2870197,2870198,16.0,1160760,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22787.0,2139.0 +2870198,2870199,14.0,1160760,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22787.0,2139.0 +2870199,2870200,29.0,1160760,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22787.0,2139.0 +2870200,2870201,43.0,1160761,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22786.0,2139.0 +2870201,2870202,19.0,1160761,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22786.0,2139.0 +2870202,2870203,16.0,1160761,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22786.0,2139.0 +2870203,2870204,14.0,1160761,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22786.0,2139.0 +2870204,2870205,29.0,1160761,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22786.0,2139.0 +2870205,2870206,43.0,1160762,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22784.0,2139.0 +2870206,2870207,19.0,1160762,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22784.0,2139.0 +2870207,2870208,16.0,1160762,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22784.0,2139.0 +2870208,2870209,14.0,1160762,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22784.0,2139.0 +2870209,2870210,29.0,1160762,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22784.0,2139.0 +2870210,2870211,43.0,1160763,1,1,0,1,1.0,44.0,1.0,-9.0,4.0,622M,15.0,22784.0,2139.0 +2870211,2870212,19.0,1160763,2,1,2,1,1.0,40.0,4.0,15.0,4.0,5413,10.0,22784.0,2139.0 +2870212,2870213,16.0,1160763,3,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22784.0,2139.0 +2870213,2870214,14.0,1160763,4,2,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22784.0,2139.0 +2870214,2870215,29.0,1160763,5,2,13,3,1.0,29.0,3.0,-9.0,4.0,621M,14.0,22784.0,2139.0 +2870215,2870216,23.0,1160764,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870216,2870217,26.0,1160764,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870217,2870218,23.0,1160765,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870218,2870219,26.0,1160765,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870219,2870220,23.0,1160766,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870220,2870221,26.0,1160766,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870221,2870222,23.0,1160767,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870222,2870223,26.0,1160767,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870223,2870224,23.0,1160768,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870224,2870225,26.0,1160768,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870225,2870226,23.0,1160769,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870226,2870227,26.0,1160769,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22785.0,2139.0 +2870227,2870228,23.0,1160770,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870228,2870229,26.0,1160770,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870229,2870230,23.0,1160771,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870230,2870231,26.0,1160771,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870231,2870232,23.0,1160772,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870232,2870233,26.0,1160772,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870233,2870234,23.0,1160773,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870234,2870235,26.0,1160773,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870235,2870236,23.0,1160774,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870236,2870237,26.0,1160774,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870237,2870238,23.0,1160775,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870238,2870239,26.0,1160775,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870239,2870240,23.0,1160776,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870240,2870241,26.0,1160776,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870241,2870242,23.0,1160777,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870242,2870243,26.0,1160777,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870243,2870244,23.0,1160778,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870244,2870245,26.0,1160778,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870245,2870246,23.0,1160779,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870246,2870247,26.0,1160779,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870247,2870248,23.0,1160780,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870248,2870249,26.0,1160780,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870249,2870250,23.0,1160781,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870250,2870251,26.0,1160781,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22785.0,2139.0 +2870251,2870252,23.0,1160782,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870252,2870253,26.0,1160782,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870253,2870254,23.0,1160783,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870254,2870255,26.0,1160783,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870255,2870256,23.0,1160784,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870256,2870257,26.0,1160784,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870257,2870258,23.0,1160785,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870258,2870259,26.0,1160785,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22785.0,2139.0 +2870259,2870260,23.0,1160786,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870260,2870261,26.0,1160786,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870261,2870262,23.0,1160787,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870262,2870263,26.0,1160787,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870263,2870264,23.0,1160788,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870264,2870265,26.0,1160788,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870265,2870266,23.0,1160789,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870266,2870267,26.0,1160789,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870267,2870268,23.0,1160790,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870268,2870269,26.0,1160790,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870269,2870270,23.0,1160791,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870270,2870271,26.0,1160791,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870271,2870272,23.0,1160792,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870272,2870273,26.0,1160792,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870273,2870274,23.0,1160793,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870274,2870275,26.0,1160793,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870275,2870276,23.0,1160794,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870276,2870277,26.0,1160794,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870277,2870278,23.0,1160795,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870278,2870279,26.0,1160795,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870279,2870280,23.0,1160796,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870280,2870281,26.0,1160796,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22785.0,2139.0 +2870281,2870282,23.0,1160797,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870282,2870283,26.0,1160797,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22785.0,2139.0 +2870283,2870284,23.0,1160798,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870284,2870285,26.0,1160798,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870285,2870286,23.0,1160799,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870286,2870287,26.0,1160799,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870287,2870288,23.0,1160800,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870288,2870289,26.0,1160800,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870289,2870290,23.0,1160801,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870290,2870291,26.0,1160801,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870291,2870292,23.0,1160802,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870292,2870293,26.0,1160802,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870293,2870294,23.0,1160803,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870294,2870295,26.0,1160803,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870295,2870296,23.0,1160804,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870296,2870297,26.0,1160804,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870297,2870298,23.0,1160805,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870298,2870299,26.0,1160805,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870299,2870300,23.0,1160806,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870300,2870301,26.0,1160806,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870301,2870302,23.0,1160807,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870302,2870303,26.0,1160807,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870303,2870304,23.0,1160808,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870304,2870305,26.0,1160808,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870305,2870306,23.0,1160809,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870306,2870307,26.0,1160809,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870307,2870308,23.0,1160810,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870308,2870309,26.0,1160810,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870309,2870310,23.0,1160811,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870310,2870311,26.0,1160811,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870311,2870312,23.0,1160812,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870312,2870313,26.0,1160812,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870313,2870314,23.0,1160813,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870314,2870315,26.0,1160813,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870315,2870316,23.0,1160814,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870316,2870317,26.0,1160814,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870317,2870318,23.0,1160815,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870318,2870319,26.0,1160815,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870319,2870320,23.0,1160816,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870320,2870321,26.0,1160816,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22785.0,2139.0 +2870321,2870322,23.0,1160817,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870322,2870323,26.0,1160817,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22785.0,2139.0 +2870323,2870324,23.0,1160818,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870324,2870325,26.0,1160818,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870325,2870326,23.0,1160819,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870326,2870327,26.0,1160819,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870327,2870328,23.0,1160820,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870328,2870329,26.0,1160820,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870329,2870330,23.0,1160821,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870330,2870331,26.0,1160821,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22785.0,2139.0 +2870331,2870332,23.0,1160822,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870332,2870333,26.0,1160822,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870333,2870334,23.0,1160823,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22785.0,2139.0 +2870334,2870335,26.0,1160823,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22785.0,2139.0 +2870335,2870336,23.0,1160824,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870336,2870337,26.0,1160824,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870337,2870338,23.0,1160825,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870338,2870339,26.0,1160825,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870339,2870340,23.0,1160826,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870340,2870341,26.0,1160826,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870341,2870342,23.0,1160827,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22786.0,2139.0 +2870342,2870343,26.0,1160827,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22786.0,2139.0 +2870343,2870344,23.0,1160828,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870344,2870345,26.0,1160828,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870345,2870346,23.0,1160829,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870346,2870347,26.0,1160829,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870347,2870348,23.0,1160830,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870348,2870349,26.0,1160830,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870349,2870350,23.0,1160831,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22784.0,2139.0 +2870350,2870351,26.0,1160831,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22784.0,2139.0 +2870351,2870352,23.0,1160832,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22787.0,2139.0 +2870352,2870353,26.0,1160832,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22787.0,2139.0 +2870353,2870354,24.0,1160833,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22784.0,2139.0 +2870354,2870355,25.0,1160833,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22784.0,2139.0 +2870355,2870356,24.0,1160834,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22786.0,2139.0 +2870356,2870357,25.0,1160834,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22786.0,2139.0 +2870357,2870358,24.0,1160835,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22785.0,2139.0 +2870358,2870359,25.0,1160835,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22785.0,2139.0 +2870359,2870360,24.0,1160836,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22787.0,2139.0 +2870360,2870361,25.0,1160836,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22787.0,2139.0 +2870361,2870362,24.0,1160837,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22786.0,2139.0 +2870362,2870363,25.0,1160837,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22786.0,2139.0 +2870363,2870364,24.0,1160838,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22785.0,2139.0 +2870364,2870365,25.0,1160838,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22785.0,2139.0 +2870365,2870366,24.0,1160839,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22787.0,2139.0 +2870366,2870367,25.0,1160839,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22787.0,2139.0 +2870367,2870368,24.0,1160840,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22787.0,2139.0 +2870368,2870369,25.0,1160840,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22787.0,2139.0 +2870369,2870370,24.0,1160841,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22787.0,2139.0 +2870370,2870371,25.0,1160841,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22787.0,2139.0 +2870371,2870372,24.0,1160842,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22786.0,2139.0 +2870372,2870373,25.0,1160842,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22786.0,2139.0 +2870373,2870374,24.0,1160843,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22785.0,2139.0 +2870374,2870375,25.0,1160843,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22785.0,2139.0 +2870375,2870376,24.0,1160844,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22787.0,2139.0 +2870376,2870377,25.0,1160844,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22787.0,2139.0 +2870377,2870378,24.0,1160845,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22787.0,2139.0 +2870378,2870379,25.0,1160845,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22787.0,2139.0 +2870379,2870380,24.0,1160846,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22785.0,2139.0 +2870380,2870381,25.0,1160846,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22785.0,2139.0 +2870381,2870382,24.0,1160847,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22787.0,2139.0 +2870382,2870383,25.0,1160847,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22787.0,2139.0 +2870383,2870384,24.0,1160848,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22786.0,2139.0 +2870384,2870385,25.0,1160848,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22786.0,2139.0 +2870385,2870386,24.0,1160849,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22784.0,2139.0 +2870386,2870387,25.0,1160849,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22784.0,2139.0 +2870387,2870388,24.0,1160850,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22785.0,2139.0 +2870388,2870389,25.0,1160850,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22785.0,2139.0 +2870389,2870390,24.0,1160851,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22787.0,2139.0 +2870390,2870391,25.0,1160851,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22787.0,2139.0 +2870391,2870392,24.0,1160852,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22786.0,2139.0 +2870392,2870393,25.0,1160852,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22786.0,2139.0 +2870393,2870394,66.0,1160853,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22738.0,2117.0 +2870394,2870395,22.0,1160853,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22738.0,2117.0 +2870395,2870396,56.0,1160853,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22738.0,2117.0 +2870396,2870397,66.0,1160854,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22744.0,2120.0 +2870397,2870398,22.0,1160854,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22744.0,2120.0 +2870398,2870399,56.0,1160854,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22744.0,2120.0 +2870399,2870400,66.0,1160855,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22745.0,2121.0 +2870400,2870401,22.0,1160855,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22745.0,2121.0 +2870401,2870402,56.0,1160855,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22745.0,2121.0 +2870402,2870403,66.0,1160856,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22744.0,2120.0 +2870403,2870404,22.0,1160856,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22744.0,2120.0 +2870404,2870405,56.0,1160856,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22744.0,2120.0 +2870405,2870406,66.0,1160857,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22744.0,2120.0 +2870406,2870407,22.0,1160857,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22744.0,2120.0 +2870407,2870408,56.0,1160857,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22744.0,2120.0 +2870408,2870409,66.0,1160858,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22738.0,2117.0 +2870409,2870410,22.0,1160858,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22738.0,2117.0 +2870410,2870411,56.0,1160858,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22738.0,2117.0 +2870411,2870412,66.0,1160859,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22737.0,2116.0 +2870412,2870413,22.0,1160859,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22737.0,2116.0 +2870413,2870414,56.0,1160859,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2870414,2870415,66.0,1160860,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22744.0,2120.0 +2870415,2870416,22.0,1160860,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22744.0,2120.0 +2870416,2870417,56.0,1160860,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22744.0,2120.0 +2870417,2870418,66.0,1160861,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22737.0,2116.0 +2870418,2870419,22.0,1160861,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22737.0,2116.0 +2870419,2870420,56.0,1160861,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2870420,2870421,66.0,1160862,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22737.0,2116.0 +2870421,2870422,22.0,1160862,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22737.0,2116.0 +2870422,2870423,56.0,1160862,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2870423,2870424,66.0,1160863,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22747.0,2123.0 +2870424,2870425,22.0,1160863,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22747.0,2123.0 +2870425,2870426,56.0,1160863,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2870426,2870427,66.0,1160864,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22740.0,2119.0 +2870427,2870428,22.0,1160864,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22740.0,2119.0 +2870428,2870429,56.0,1160864,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2870429,2870430,66.0,1160865,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22740.0,2119.0 +2870430,2870431,22.0,1160865,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22740.0,2119.0 +2870431,2870432,56.0,1160865,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2870432,2870433,66.0,1160866,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22740.0,2119.0 +2870433,2870434,22.0,1160866,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22740.0,2119.0 +2870434,2870435,56.0,1160866,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2870435,2870436,66.0,1160867,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22744.0,2120.0 +2870436,2870437,22.0,1160867,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22744.0,2120.0 +2870437,2870438,56.0,1160867,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22744.0,2120.0 +2870438,2870439,66.0,1160868,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22745.0,2121.0 +2870439,2870440,22.0,1160868,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22745.0,2121.0 +2870440,2870441,56.0,1160868,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22745.0,2121.0 +2870441,2870442,66.0,1160869,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22737.0,2116.0 +2870442,2870443,22.0,1160869,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22737.0,2116.0 +2870443,2870444,56.0,1160869,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2870444,2870445,66.0,1160870,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22745.0,2121.0 +2870445,2870446,22.0,1160870,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22745.0,2121.0 +2870446,2870447,56.0,1160870,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22745.0,2121.0 +2870447,2870448,66.0,1160871,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22744.0,2120.0 +2870448,2870449,22.0,1160871,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22744.0,2120.0 +2870449,2870450,56.0,1160871,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22744.0,2120.0 +2870450,2870451,66.0,1160872,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22747.0,2123.0 +2870451,2870452,22.0,1160872,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22747.0,2123.0 +2870452,2870453,56.0,1160872,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2870453,2870454,66.0,1160873,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22738.0,2117.0 +2870454,2870455,22.0,1160873,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22738.0,2117.0 +2870455,2870456,56.0,1160873,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22738.0,2117.0 +2870456,2870457,66.0,1160874,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22747.0,2123.0 +2870457,2870458,22.0,1160874,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22747.0,2123.0 +2870458,2870459,56.0,1160874,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2870459,2870460,66.0,1160875,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22740.0,2119.0 +2870460,2870461,22.0,1160875,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22740.0,2119.0 +2870461,2870462,56.0,1160875,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2870462,2870463,66.0,1160876,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22738.0,2117.0 +2870463,2870464,22.0,1160876,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22738.0,2117.0 +2870464,2870465,56.0,1160876,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22738.0,2117.0 +2870465,2870466,66.0,1160877,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22737.0,2116.0 +2870466,2870467,22.0,1160877,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22737.0,2116.0 +2870467,2870468,56.0,1160877,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2870468,2870469,66.0,1160878,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22738.0,2117.0 +2870469,2870470,22.0,1160878,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22738.0,2117.0 +2870470,2870471,56.0,1160878,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22738.0,2117.0 +2870471,2870472,66.0,1160879,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22745.0,2121.0 +2870472,2870473,22.0,1160879,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22745.0,2121.0 +2870473,2870474,56.0,1160879,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22745.0,2121.0 +2870474,2870475,66.0,1160880,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22747.0,2123.0 +2870475,2870476,22.0,1160880,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22747.0,2123.0 +2870476,2870477,56.0,1160880,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2870477,2870478,66.0,1160881,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22740.0,2119.0 +2870478,2870479,22.0,1160881,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22740.0,2119.0 +2870479,2870480,56.0,1160881,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2870480,2870481,66.0,1160882,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2870481,2870482,66.0,1160883,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2870482,2870483,80.0,1160884,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22737.0,2116.0 +2870483,2870484,76.0,1160885,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22740.0,2119.0 +2870484,2870485,79.0,1160886,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22741.0,2119.0 +2870485,2870486,79.0,1160887,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22745.0,2121.0 +2870486,2870487,80.0,1160888,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22738.0,2117.0 +2870487,2870488,76.0,1160889,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22747.0,2123.0 +2870488,2870489,80.0,1160890,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22740.0,2119.0 +2870489,2870490,79.0,1160891,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22743.0,2119.0 +2870490,2870491,79.0,1160892,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22744.0,2120.0 +2870491,2870492,67.0,1160893,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22737.0,2116.0 +2870492,2870493,45.0,1160894,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22738.0,2117.0 +2870493,2870494,28.0,1160894,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22738.0,2117.0 +2870494,2870495,23.0,1160894,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22738.0,2117.0 +2870495,2870496,4.0,1160894,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22738.0,2117.0 +2870496,2870497,4.0,1160894,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22738.0,2117.0 +2870497,2870498,2.0,1160894,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22738.0,2117.0 +2870498,2870499,45.0,1160895,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22740.0,2119.0 +2870499,2870500,28.0,1160895,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22740.0,2119.0 +2870500,2870501,23.0,1160895,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22740.0,2119.0 +2870501,2870502,4.0,1160895,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22740.0,2119.0 +2870502,2870503,4.0,1160895,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22740.0,2119.0 +2870503,2870504,2.0,1160895,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22740.0,2119.0 +2870504,2870505,45.0,1160896,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22744.0,2120.0 +2870505,2870506,28.0,1160896,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22744.0,2120.0 +2870506,2870507,23.0,1160896,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22744.0,2120.0 +2870507,2870508,4.0,1160896,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22744.0,2120.0 +2870508,2870509,4.0,1160896,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22744.0,2120.0 +2870509,2870510,2.0,1160896,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22744.0,2120.0 +2870510,2870511,45.0,1160897,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22740.0,2119.0 +2870511,2870512,28.0,1160897,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22740.0,2119.0 +2870512,2870513,23.0,1160897,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22740.0,2119.0 +2870513,2870514,4.0,1160897,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22740.0,2119.0 +2870514,2870515,4.0,1160897,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22740.0,2119.0 +2870515,2870516,2.0,1160897,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22740.0,2119.0 +2870516,2870517,45.0,1160898,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22741.0,2119.0 +2870517,2870518,28.0,1160898,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22741.0,2119.0 +2870518,2870519,23.0,1160898,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22741.0,2119.0 +2870519,2870520,4.0,1160898,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22741.0,2119.0 +2870520,2870521,4.0,1160898,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22741.0,2119.0 +2870521,2870522,2.0,1160898,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22741.0,2119.0 +2870522,2870523,45.0,1160899,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22747.0,2123.0 +2870523,2870524,28.0,1160899,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22747.0,2123.0 +2870524,2870525,23.0,1160899,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22747.0,2123.0 +2870525,2870526,4.0,1160899,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22747.0,2123.0 +2870526,2870527,4.0,1160899,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22747.0,2123.0 +2870527,2870528,2.0,1160899,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22747.0,2123.0 +2870528,2870529,45.0,1160900,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22737.0,2116.0 +2870529,2870530,28.0,1160900,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22737.0,2116.0 +2870530,2870531,23.0,1160900,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22737.0,2116.0 +2870531,2870532,4.0,1160900,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22737.0,2116.0 +2870532,2870533,4.0,1160900,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22737.0,2116.0 +2870533,2870534,2.0,1160900,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22737.0,2116.0 +2870534,2870535,53.0,1160901,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22738.0,2117.0 +2870535,2870536,18.0,1160901,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22738.0,2117.0 +2870536,2870537,53.0,1160902,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870537,2870538,18.0,1160902,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22745.0,2121.0 +2870538,2870539,53.0,1160903,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2870539,2870540,18.0,1160903,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22737.0,2116.0 +2870540,2870541,53.0,1160904,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870541,2870542,18.0,1160904,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22745.0,2121.0 +2870542,2870543,53.0,1160905,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870543,2870544,18.0,1160905,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22740.0,2119.0 +2870544,2870545,53.0,1160906,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2870545,2870546,18.0,1160906,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22747.0,2123.0 +2870546,2870547,53.0,1160907,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22742.0,2119.0 +2870547,2870548,18.0,1160907,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22742.0,2119.0 +2870548,2870549,53.0,1160908,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870549,2870550,18.0,1160908,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22745.0,2121.0 +2870550,2870551,53.0,1160909,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870551,2870552,18.0,1160909,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22740.0,2119.0 +2870552,2870553,53.0,1160910,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2870553,2870554,18.0,1160910,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22737.0,2116.0 +2870554,2870555,53.0,1160911,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2870555,2870556,18.0,1160911,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22744.0,2120.0 +2870556,2870557,53.0,1160912,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22743.0,2119.0 +2870557,2870558,18.0,1160912,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22743.0,2119.0 +2870558,2870559,54.0,1160913,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22743.0,2119.0 +2870559,2870560,54.0,1160913,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22743.0,2119.0 +2870560,2870561,22.0,1160913,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22743.0,2119.0 +2870561,2870562,23.0,1160913,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22743.0,2119.0 +2870562,2870563,54.0,1160914,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870563,2870564,54.0,1160914,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870564,2870565,22.0,1160914,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22745.0,2121.0 +2870565,2870566,23.0,1160914,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870566,2870567,54.0,1160915,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870567,2870568,54.0,1160915,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870568,2870569,22.0,1160915,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22745.0,2121.0 +2870569,2870570,23.0,1160915,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870570,2870571,54.0,1160916,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22742.0,2119.0 +2870571,2870572,54.0,1160916,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22742.0,2119.0 +2870572,2870573,22.0,1160916,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22742.0,2119.0 +2870573,2870574,23.0,1160916,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22742.0,2119.0 +2870574,2870575,54.0,1160917,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870575,2870576,54.0,1160917,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870576,2870577,22.0,1160917,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22740.0,2119.0 +2870577,2870578,23.0,1160917,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870578,2870579,54.0,1160918,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22741.0,2119.0 +2870579,2870580,54.0,1160918,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22741.0,2119.0 +2870580,2870581,22.0,1160918,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22741.0,2119.0 +2870581,2870582,23.0,1160918,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22741.0,2119.0 +2870582,2870583,54.0,1160919,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2870583,2870584,54.0,1160919,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2870584,2870585,22.0,1160919,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22737.0,2116.0 +2870585,2870586,23.0,1160919,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2870586,2870587,54.0,1160920,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2870587,2870588,54.0,1160920,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2870588,2870589,22.0,1160920,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22747.0,2123.0 +2870589,2870590,23.0,1160920,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2870590,2870591,54.0,1160921,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2870591,2870592,54.0,1160921,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2870592,2870593,22.0,1160921,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22737.0,2116.0 +2870593,2870594,23.0,1160921,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2870594,2870595,54.0,1160922,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870595,2870596,54.0,1160922,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870596,2870597,22.0,1160922,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22740.0,2119.0 +2870597,2870598,23.0,1160922,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870598,2870599,54.0,1160923,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2870599,2870600,54.0,1160923,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2870600,2870601,22.0,1160923,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22744.0,2120.0 +2870601,2870602,23.0,1160923,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2870602,2870603,54.0,1160924,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2870603,2870604,54.0,1160924,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2870604,2870605,22.0,1160924,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22744.0,2120.0 +2870605,2870606,23.0,1160924,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2870606,2870607,54.0,1160925,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22738.0,2117.0 +2870607,2870608,54.0,1160925,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22738.0,2117.0 +2870608,2870609,22.0,1160925,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22738.0,2117.0 +2870609,2870610,23.0,1160925,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22738.0,2117.0 +2870610,2870611,54.0,1160926,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870611,2870612,54.0,1160926,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870612,2870613,22.0,1160926,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22740.0,2119.0 +2870613,2870614,23.0,1160926,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870614,2870615,54.0,1160927,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870615,2870616,54.0,1160927,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870616,2870617,22.0,1160927,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22745.0,2121.0 +2870617,2870618,23.0,1160927,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870618,2870619,54.0,1160928,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870619,2870620,54.0,1160928,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870620,2870621,22.0,1160928,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22740.0,2119.0 +2870621,2870622,23.0,1160928,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2870622,2870623,54.0,1160929,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870623,2870624,54.0,1160929,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870624,2870625,22.0,1160929,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22745.0,2121.0 +2870625,2870626,23.0,1160929,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2870626,2870627,61.0,1160930,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22747.0,2123.0 +2870627,2870628,69.0,1160930,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22747.0,2123.0 +2870628,2870629,21.0,1160930,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22747.0,2123.0 +2870629,2870630,61.0,1160931,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22747.0,2123.0 +2870630,2870631,69.0,1160931,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22747.0,2123.0 +2870631,2870632,21.0,1160931,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22747.0,2123.0 +2870632,2870633,61.0,1160932,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22737.0,2116.0 +2870633,2870634,69.0,1160932,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22737.0,2116.0 +2870634,2870635,21.0,1160932,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22737.0,2116.0 +2870635,2870636,61.0,1160933,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870636,2870637,69.0,1160933,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870637,2870638,21.0,1160933,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22744.0,2120.0 +2870638,2870639,61.0,1160934,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22742.0,2119.0 +2870639,2870640,69.0,1160934,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22742.0,2119.0 +2870640,2870641,21.0,1160934,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22742.0,2119.0 +2870641,2870642,61.0,1160935,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22737.0,2116.0 +2870642,2870643,69.0,1160935,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22737.0,2116.0 +2870643,2870644,21.0,1160935,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22737.0,2116.0 +2870644,2870645,61.0,1160936,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22737.0,2116.0 +2870645,2870646,69.0,1160936,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22737.0,2116.0 +2870646,2870647,21.0,1160936,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22737.0,2116.0 +2870647,2870648,61.0,1160937,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870648,2870649,69.0,1160937,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870649,2870650,21.0,1160937,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22744.0,2120.0 +2870650,2870651,61.0,1160938,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22739.0,2118.0 +2870651,2870652,69.0,1160938,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22739.0,2118.0 +2870652,2870653,21.0,1160938,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22739.0,2118.0 +2870653,2870654,61.0,1160939,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870654,2870655,69.0,1160939,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870655,2870656,21.0,1160939,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22740.0,2119.0 +2870656,2870657,61.0,1160940,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870657,2870658,69.0,1160940,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870658,2870659,21.0,1160940,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22740.0,2119.0 +2870659,2870660,61.0,1160941,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22739.0,2118.0 +2870660,2870661,69.0,1160941,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22739.0,2118.0 +2870661,2870662,21.0,1160941,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22739.0,2118.0 +2870662,2870663,61.0,1160942,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870663,2870664,69.0,1160942,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870664,2870665,21.0,1160942,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22744.0,2120.0 +2870665,2870666,61.0,1160943,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870666,2870667,69.0,1160943,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870667,2870668,21.0,1160943,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22740.0,2119.0 +2870668,2870669,61.0,1160944,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870669,2870670,69.0,1160944,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870670,2870671,21.0,1160944,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22744.0,2120.0 +2870671,2870672,61.0,1160945,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870672,2870673,69.0,1160945,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870673,2870674,21.0,1160945,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22744.0,2120.0 +2870674,2870675,61.0,1160946,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22738.0,2117.0 +2870675,2870676,69.0,1160946,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22738.0,2117.0 +2870676,2870677,21.0,1160946,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22738.0,2117.0 +2870677,2870678,61.0,1160947,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22745.0,2121.0 +2870678,2870679,69.0,1160947,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22745.0,2121.0 +2870679,2870680,21.0,1160947,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22745.0,2121.0 +2870680,2870681,61.0,1160948,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870681,2870682,69.0,1160948,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870682,2870683,21.0,1160948,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22740.0,2119.0 +2870683,2870684,61.0,1160949,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22745.0,2121.0 +2870684,2870685,69.0,1160949,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22745.0,2121.0 +2870685,2870686,21.0,1160949,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22745.0,2121.0 +2870686,2870687,61.0,1160950,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22738.0,2117.0 +2870687,2870688,69.0,1160950,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22738.0,2117.0 +2870688,2870689,21.0,1160950,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22738.0,2117.0 +2870689,2870690,61.0,1160951,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22741.0,2119.0 +2870690,2870691,69.0,1160951,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22741.0,2119.0 +2870691,2870692,21.0,1160951,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22741.0,2119.0 +2870692,2870693,61.0,1160952,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22745.0,2121.0 +2870693,2870694,69.0,1160952,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22745.0,2121.0 +2870694,2870695,21.0,1160952,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22745.0,2121.0 +2870695,2870696,61.0,1160953,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22745.0,2121.0 +2870696,2870697,69.0,1160953,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22745.0,2121.0 +2870697,2870698,21.0,1160953,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22745.0,2121.0 +2870698,2870699,61.0,1160954,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870699,2870700,69.0,1160954,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870700,2870701,21.0,1160954,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22740.0,2119.0 +2870701,2870702,61.0,1160955,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870702,2870703,69.0,1160955,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870703,2870704,21.0,1160955,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22740.0,2119.0 +2870704,2870705,61.0,1160956,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22741.0,2119.0 +2870705,2870706,69.0,1160956,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22741.0,2119.0 +2870706,2870707,21.0,1160956,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22741.0,2119.0 +2870707,2870708,61.0,1160957,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870708,2870709,69.0,1160957,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870709,2870710,21.0,1160957,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22740.0,2119.0 +2870710,2870711,61.0,1160958,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870711,2870712,69.0,1160958,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870712,2870713,21.0,1160958,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22740.0,2119.0 +2870713,2870714,61.0,1160959,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22738.0,2117.0 +2870714,2870715,69.0,1160959,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22738.0,2117.0 +2870715,2870716,21.0,1160959,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22738.0,2117.0 +2870716,2870717,61.0,1160960,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870717,2870718,69.0,1160960,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22740.0,2119.0 +2870718,2870719,21.0,1160960,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22740.0,2119.0 +2870719,2870720,61.0,1160961,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22738.0,2117.0 +2870720,2870721,69.0,1160961,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22738.0,2117.0 +2870721,2870722,21.0,1160961,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22738.0,2117.0 +2870722,2870723,61.0,1160962,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870723,2870724,69.0,1160962,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22744.0,2120.0 +2870724,2870725,21.0,1160962,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22744.0,2120.0 +2870725,2870726,61.0,1160963,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22739.0,2118.0 +2870726,2870727,69.0,1160963,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22739.0,2118.0 +2870727,2870728,21.0,1160963,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22739.0,2118.0 +2870728,2870729,49.0,1160964,1,2,0,1,1.0,45.0,1.0,15.0,4.0,611M1,13.0,22737.0,2116.0 +2870729,2870730,20.0,1160964,2,2,2,1,1.0,30.0,1.0,-9.0,4.0,722Z,16.0,22737.0,2116.0 +2870730,2870731,49.0,1160965,1,2,0,1,1.0,45.0,1.0,15.0,4.0,611M1,13.0,22741.0,2119.0 +2870731,2870732,20.0,1160965,2,2,2,1,1.0,30.0,1.0,-9.0,4.0,722Z,16.0,22741.0,2119.0 +2870732,2870733,49.0,1160966,1,2,0,1,1.0,45.0,1.0,15.0,4.0,611M1,13.0,22741.0,2119.0 +2870733,2870734,20.0,1160966,2,2,2,1,1.0,30.0,1.0,-9.0,4.0,722Z,16.0,22741.0,2119.0 +2870734,2870735,49.0,1160967,1,2,0,1,1.0,45.0,1.0,15.0,4.0,611M1,13.0,22742.0,2119.0 +2870735,2870736,20.0,1160967,2,2,2,1,1.0,30.0,1.0,-9.0,4.0,722Z,16.0,22742.0,2119.0 +2870736,2870737,57.0,1160968,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22741.0,2119.0 +2870737,2870738,45.0,1160969,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22737.0,2116.0 +2870738,2870739,40.0,1160969,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22737.0,2116.0 +2870739,2870740,21.0,1160969,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22737.0,2116.0 +2870740,2870741,20.0,1160969,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22737.0,2116.0 +2870741,2870742,16.0,1160969,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22737.0,2116.0 +2870742,2870743,45.0,1160970,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22744.0,2120.0 +2870743,2870744,40.0,1160970,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22744.0,2120.0 +2870744,2870745,21.0,1160970,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22744.0,2120.0 +2870745,2870746,20.0,1160970,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22744.0,2120.0 +2870746,2870747,16.0,1160970,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22744.0,2120.0 +2870747,2870748,45.0,1160971,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22745.0,2121.0 +2870748,2870749,40.0,1160971,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22745.0,2121.0 +2870749,2870750,21.0,1160971,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +2870750,2870751,20.0,1160971,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22745.0,2121.0 +2870751,2870752,16.0,1160971,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22745.0,2121.0 +2870752,2870753,45.0,1160972,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22743.0,2119.0 +2870753,2870754,40.0,1160972,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22743.0,2119.0 +2870754,2870755,21.0,1160972,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22743.0,2119.0 +2870755,2870756,20.0,1160972,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22743.0,2119.0 +2870756,2870757,16.0,1160972,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22743.0,2119.0 +2870757,2870758,45.0,1160973,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22744.0,2120.0 +2870758,2870759,40.0,1160973,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22744.0,2120.0 +2870759,2870760,21.0,1160973,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22744.0,2120.0 +2870760,2870761,20.0,1160973,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22744.0,2120.0 +2870761,2870762,16.0,1160973,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22744.0,2120.0 +2870762,2870763,45.0,1160974,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22737.0,2116.0 +2870763,2870764,40.0,1160974,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22737.0,2116.0 +2870764,2870765,21.0,1160974,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22737.0,2116.0 +2870765,2870766,20.0,1160974,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22737.0,2116.0 +2870766,2870767,16.0,1160974,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22737.0,2116.0 +2870767,2870768,45.0,1160975,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22740.0,2119.0 +2870768,2870769,40.0,1160975,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22740.0,2119.0 +2870769,2870770,21.0,1160975,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22740.0,2119.0 +2870770,2870771,20.0,1160975,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22740.0,2119.0 +2870771,2870772,16.0,1160975,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22740.0,2119.0 +2870772,2870773,45.0,1160976,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22740.0,2119.0 +2870773,2870774,40.0,1160976,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22740.0,2119.0 +2870774,2870775,21.0,1160976,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22740.0,2119.0 +2870775,2870776,20.0,1160976,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22740.0,2119.0 +2870776,2870777,16.0,1160976,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22740.0,2119.0 +2870777,2870778,45.0,1160977,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22737.0,2116.0 +2870778,2870779,40.0,1160977,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22737.0,2116.0 +2870779,2870780,21.0,1160977,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22737.0,2116.0 +2870780,2870781,20.0,1160977,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22737.0,2116.0 +2870781,2870782,16.0,1160977,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22737.0,2116.0 +2870782,2870783,45.0,1160978,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22741.0,2119.0 +2870783,2870784,40.0,1160978,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22741.0,2119.0 +2870784,2870785,21.0,1160978,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22741.0,2119.0 +2870785,2870786,20.0,1160978,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22741.0,2119.0 +2870786,2870787,16.0,1160978,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22741.0,2119.0 +2870787,2870788,45.0,1160979,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22738.0,2117.0 +2870788,2870789,40.0,1160979,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22738.0,2117.0 +2870789,2870790,21.0,1160979,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22738.0,2117.0 +2870790,2870791,20.0,1160979,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22738.0,2117.0 +2870791,2870792,16.0,1160979,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22738.0,2117.0 +2870792,2870793,45.0,1160980,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22744.0,2120.0 +2870793,2870794,40.0,1160980,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22744.0,2120.0 +2870794,2870795,21.0,1160980,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22744.0,2120.0 +2870795,2870796,20.0,1160980,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22744.0,2120.0 +2870796,2870797,16.0,1160980,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22744.0,2120.0 +2870797,2870798,45.0,1160981,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22747.0,2123.0 +2870798,2870799,40.0,1160981,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22747.0,2123.0 +2870799,2870800,21.0,1160981,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22747.0,2123.0 +2870800,2870801,20.0,1160981,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22747.0,2123.0 +2870801,2870802,16.0,1160981,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22747.0,2123.0 +2870802,2870803,26.0,1160982,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2870803,2870804,24.0,1160982,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22740.0,2119.0 +2870804,2870805,26.0,1160983,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22744.0,2120.0 +2870805,2870806,24.0,1160983,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22744.0,2120.0 +2870806,2870807,26.0,1160984,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22742.0,2119.0 +2870807,2870808,24.0,1160984,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22742.0,2119.0 +2870808,2870809,26.0,1160985,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22741.0,2119.0 +2870809,2870810,24.0,1160985,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22741.0,2119.0 +2870810,2870811,26.0,1160986,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22744.0,2120.0 +2870811,2870812,24.0,1160986,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22744.0,2120.0 +2870812,2870813,26.0,1160987,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22738.0,2117.0 +2870813,2870814,24.0,1160987,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22738.0,2117.0 +2870814,2870815,26.0,1160988,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +2870815,2870816,24.0,1160988,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22745.0,2121.0 +2870816,2870817,26.0,1160989,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22741.0,2119.0 +2870817,2870818,24.0,1160989,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22741.0,2119.0 +2870818,2870819,26.0,1160990,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2870819,2870820,24.0,1160990,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22740.0,2119.0 +2870820,2870821,26.0,1160991,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22741.0,2119.0 +2870821,2870822,24.0,1160991,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22741.0,2119.0 +2870822,2870823,26.0,1160992,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2870823,2870824,24.0,1160992,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22740.0,2119.0 +2870824,2870825,26.0,1160993,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22737.0,2116.0 +2870825,2870826,24.0,1160993,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22737.0,2116.0 +2870826,2870827,26.0,1160994,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22737.0,2116.0 +2870827,2870828,24.0,1160994,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22737.0,2116.0 +2870828,2870829,26.0,1160995,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22741.0,2119.0 +2870829,2870830,24.0,1160995,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22741.0,2119.0 +2870830,2870831,26.0,1160996,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2870831,2870832,24.0,1160996,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22740.0,2119.0 +2870832,2870833,26.0,1160997,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22744.0,2120.0 +2870833,2870834,24.0,1160997,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22744.0,2120.0 +2870834,2870835,26.0,1160998,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22744.0,2120.0 +2870835,2870836,24.0,1160998,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22744.0,2120.0 +2870836,2870837,26.0,1160999,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22737.0,2116.0 +2870837,2870838,24.0,1160999,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22737.0,2116.0 +2870838,2870839,26.0,1161000,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2870839,2870840,24.0,1161000,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2870840,2870841,26.0,1161001,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2870841,2870842,24.0,1161001,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2870842,2870843,26.0,1161002,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22737.0,2116.0 +2870843,2870844,24.0,1161002,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22737.0,2116.0 +2870844,2870845,26.0,1161003,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2870845,2870846,24.0,1161003,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22740.0,2119.0 +2870846,2870847,26.0,1161004,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22737.0,2116.0 +2870847,2870848,24.0,1161004,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22737.0,2116.0 +2870848,2870849,26.0,1161005,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22742.0,2119.0 +2870849,2870850,24.0,1161005,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22742.0,2119.0 +2870850,2870851,26.0,1161006,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22741.0,2119.0 +2870851,2870852,24.0,1161006,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22741.0,2119.0 +2870852,2870853,26.0,1161007,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22738.0,2117.0 +2870853,2870854,24.0,1161007,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22738.0,2117.0 +2870854,2870855,26.0,1161008,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +2870855,2870856,24.0,1161008,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22745.0,2121.0 +2870856,2870857,26.0,1161009,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22738.0,2117.0 +2870857,2870858,24.0,1161009,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22738.0,2117.0 +2870858,2870859,26.0,1161010,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2870859,2870860,24.0,1161010,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22740.0,2119.0 +2870860,2870861,26.0,1161011,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22737.0,2116.0 +2870861,2870862,24.0,1161011,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22737.0,2116.0 +2870862,2870863,26.0,1161012,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2870863,2870864,24.0,1161012,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2870864,2870865,26.0,1161013,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22742.0,2119.0 +2870865,2870866,24.0,1161013,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22742.0,2119.0 +2870866,2870867,26.0,1161014,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22741.0,2119.0 +2870867,2870868,24.0,1161014,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22741.0,2119.0 +2870868,2870869,26.0,1161015,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +2870869,2870870,24.0,1161015,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22745.0,2121.0 +2870870,2870871,26.0,1161016,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22739.0,2118.0 +2870871,2870872,24.0,1161016,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22739.0,2118.0 +2870872,2870873,26.0,1161017,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2870873,2870874,24.0,1161017,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22740.0,2119.0 +2870874,2870875,26.0,1161018,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2870875,2870876,24.0,1161018,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22740.0,2119.0 +2870876,2870877,26.0,1161019,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22743.0,2119.0 +2870877,2870878,24.0,1161019,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22743.0,2119.0 +2870878,2870879,26.0,1161020,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2870879,2870880,24.0,1161020,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2870880,2870881,26.0,1161021,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22743.0,2119.0 +2870881,2870882,24.0,1161021,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22743.0,2119.0 +2870882,2870883,26.0,1161022,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2870883,2870884,24.0,1161022,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22740.0,2119.0 +2870884,2870885,26.0,1161023,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2870885,2870886,24.0,1161023,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2870886,2870887,26.0,1161024,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +2870887,2870888,24.0,1161024,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22745.0,2121.0 +2870888,2870889,26.0,1161025,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22744.0,2120.0 +2870889,2870890,24.0,1161025,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22744.0,2120.0 +2870890,2870891,26.0,1161026,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22737.0,2116.0 +2870891,2870892,24.0,1161026,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22737.0,2116.0 +2870892,2870893,26.0,1161027,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22737.0,2116.0 +2870893,2870894,24.0,1161027,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22737.0,2116.0 +2870894,2870895,26.0,1161028,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2870895,2870896,24.0,1161028,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22740.0,2119.0 +2870896,2870897,26.0,1161029,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +2870897,2870898,24.0,1161029,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22745.0,2121.0 +2870898,2870899,26.0,1161030,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2870899,2870900,24.0,1161030,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22740.0,2119.0 +2870900,2870901,26.0,1161031,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2870901,2870902,24.0,1161031,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2870902,2870903,26.0,1161032,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22747.0,2123.0 +2870903,2870904,24.0,1161032,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22747.0,2123.0 +2870904,2870905,31.0,1161033,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22742.0,2119.0 +2870905,2870906,24.0,1161033,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22742.0,2119.0 +2870906,2870907,31.0,1161034,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22739.0,2118.0 +2870907,2870908,24.0,1161034,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22739.0,2118.0 +2870908,2870909,31.0,1161035,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870909,2870910,24.0,1161035,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870910,2870911,31.0,1161036,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870911,2870912,24.0,1161036,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870912,2870913,31.0,1161037,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22739.0,2118.0 +2870913,2870914,24.0,1161037,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22739.0,2118.0 +2870914,2870915,31.0,1161038,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22742.0,2119.0 +2870915,2870916,24.0,1161038,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22742.0,2119.0 +2870916,2870917,31.0,1161039,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870917,2870918,24.0,1161039,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870918,2870919,31.0,1161040,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22739.0,2118.0 +2870919,2870920,24.0,1161040,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22739.0,2118.0 +2870920,2870921,31.0,1161041,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2870921,2870922,24.0,1161041,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2870922,2870923,31.0,1161042,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870923,2870924,24.0,1161042,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870924,2870925,31.0,1161043,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870925,2870926,24.0,1161043,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870926,2870927,31.0,1161044,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2870927,2870928,24.0,1161044,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2870928,2870929,31.0,1161045,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870929,2870930,24.0,1161045,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870930,2870931,31.0,1161046,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870931,2870932,24.0,1161046,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870932,2870933,31.0,1161047,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2870933,2870934,24.0,1161047,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2870934,2870935,31.0,1161048,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2870935,2870936,24.0,1161048,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2870936,2870937,31.0,1161049,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2870937,2870938,24.0,1161049,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2870938,2870939,31.0,1161050,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870939,2870940,24.0,1161050,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870940,2870941,31.0,1161051,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870941,2870942,24.0,1161051,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870942,2870943,31.0,1161052,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2870943,2870944,24.0,1161052,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2870944,2870945,31.0,1161053,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2870945,2870946,24.0,1161053,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2870946,2870947,31.0,1161054,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870947,2870948,24.0,1161054,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870948,2870949,31.0,1161055,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2870949,2870950,24.0,1161055,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2870950,2870951,31.0,1161056,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870951,2870952,24.0,1161056,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870952,2870953,31.0,1161057,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870953,2870954,24.0,1161057,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870954,2870955,31.0,1161058,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870955,2870956,24.0,1161058,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870956,2870957,31.0,1161059,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22738.0,2117.0 +2870957,2870958,24.0,1161059,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22738.0,2117.0 +2870958,2870959,31.0,1161060,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2870959,2870960,24.0,1161060,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2870960,2870961,31.0,1161061,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870961,2870962,24.0,1161061,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870962,2870963,31.0,1161062,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870963,2870964,24.0,1161062,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870964,2870965,31.0,1161063,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2870965,2870966,24.0,1161063,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2870966,2870967,31.0,1161064,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2870967,2870968,24.0,1161064,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2870968,2870969,31.0,1161065,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870969,2870970,24.0,1161065,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870970,2870971,31.0,1161066,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870971,2870972,24.0,1161066,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870972,2870973,31.0,1161067,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870973,2870974,24.0,1161067,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870974,2870975,31.0,1161068,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870975,2870976,24.0,1161068,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870976,2870977,31.0,1161069,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870977,2870978,24.0,1161069,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870978,2870979,31.0,1161070,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870979,2870980,24.0,1161070,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870980,2870981,31.0,1161071,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870981,2870982,24.0,1161071,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870982,2870983,31.0,1161072,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870983,2870984,24.0,1161072,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870984,2870985,31.0,1161073,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870985,2870986,24.0,1161073,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870986,2870987,31.0,1161074,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2870987,2870988,24.0,1161074,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2870988,2870989,31.0,1161075,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870989,2870990,24.0,1161075,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2870990,2870991,31.0,1161076,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870991,2870992,24.0,1161076,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870992,2870993,31.0,1161077,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870993,2870994,24.0,1161077,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2870994,2870995,31.0,1161078,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22743.0,2119.0 +2870995,2870996,24.0,1161078,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22743.0,2119.0 +2870996,2870997,31.0,1161079,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22742.0,2119.0 +2870997,2870998,24.0,1161079,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22742.0,2119.0 +2870998,2870999,31.0,1161080,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2870999,2871000,24.0,1161080,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871000,2871001,31.0,1161081,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871001,2871002,24.0,1161081,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871002,2871003,31.0,1161082,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22739.0,2118.0 +2871003,2871004,24.0,1161082,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22739.0,2118.0 +2871004,2871005,31.0,1161083,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871005,2871006,24.0,1161083,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871006,2871007,31.0,1161084,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871007,2871008,24.0,1161084,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871008,2871009,31.0,1161085,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871009,2871010,24.0,1161085,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871010,2871011,31.0,1161086,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871011,2871012,24.0,1161086,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871012,2871013,31.0,1161087,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871013,2871014,24.0,1161087,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871014,2871015,31.0,1161088,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2871015,2871016,24.0,1161088,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2871016,2871017,31.0,1161089,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871017,2871018,24.0,1161089,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871018,2871019,31.0,1161090,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871019,2871020,24.0,1161090,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871020,2871021,31.0,1161091,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2871021,2871022,24.0,1161091,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2871022,2871023,31.0,1161092,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871023,2871024,24.0,1161092,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871024,2871025,31.0,1161093,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2871025,2871026,24.0,1161093,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2871026,2871027,31.0,1161094,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871027,2871028,24.0,1161094,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871028,2871029,31.0,1161095,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2871029,2871030,24.0,1161095,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2871030,2871031,31.0,1161096,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22738.0,2117.0 +2871031,2871032,24.0,1161096,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22738.0,2117.0 +2871032,2871033,31.0,1161097,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871033,2871034,24.0,1161097,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871034,2871035,31.0,1161098,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2871035,2871036,24.0,1161098,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2871036,2871037,31.0,1161099,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22738.0,2117.0 +2871037,2871038,24.0,1161099,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22738.0,2117.0 +2871038,2871039,31.0,1161100,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871039,2871040,24.0,1161100,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871040,2871041,31.0,1161101,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2871041,2871042,24.0,1161101,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2871042,2871043,31.0,1161102,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871043,2871044,24.0,1161102,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871044,2871045,31.0,1161103,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871045,2871046,24.0,1161103,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871046,2871047,31.0,1161104,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871047,2871048,24.0,1161104,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871048,2871049,31.0,1161105,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22742.0,2119.0 +2871049,2871050,24.0,1161105,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22742.0,2119.0 +2871050,2871051,31.0,1161106,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871051,2871052,24.0,1161106,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871052,2871053,31.0,1161107,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871053,2871054,24.0,1161107,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871054,2871055,31.0,1161108,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2871055,2871056,24.0,1161108,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2871056,2871057,31.0,1161109,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22742.0,2119.0 +2871057,2871058,24.0,1161109,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22742.0,2119.0 +2871058,2871059,31.0,1161110,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871059,2871060,24.0,1161110,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871060,2871061,31.0,1161111,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871061,2871062,24.0,1161111,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871062,2871063,31.0,1161112,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2871063,2871064,24.0,1161112,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22745.0,2121.0 +2871064,2871065,31.0,1161113,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2871065,2871066,24.0,1161113,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2871066,2871067,31.0,1161114,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871067,2871068,24.0,1161114,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871068,2871069,31.0,1161115,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2871069,2871070,24.0,1161115,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2871070,2871071,31.0,1161116,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2871071,2871072,24.0,1161116,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2871072,2871073,31.0,1161117,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871073,2871074,24.0,1161117,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871074,2871075,31.0,1161118,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871075,2871076,24.0,1161118,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871076,2871077,31.0,1161119,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871077,2871078,24.0,1161119,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871078,2871079,31.0,1161120,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871079,2871080,24.0,1161120,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22744.0,2120.0 +2871080,2871081,31.0,1161121,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871081,2871082,24.0,1161121,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871082,2871083,31.0,1161122,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871083,2871084,24.0,1161122,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22737.0,2116.0 +2871084,2871085,31.0,1161123,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2871085,2871086,24.0,1161123,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2871086,2871087,31.0,1161124,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2871087,2871088,24.0,1161124,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22747.0,2123.0 +2871088,2871089,31.0,1161125,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22739.0,2118.0 +2871089,2871090,24.0,1161125,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22739.0,2118.0 +2871090,2871091,31.0,1161126,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871091,2871092,24.0,1161126,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871092,2871093,31.0,1161127,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871093,2871094,24.0,1161127,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22740.0,2119.0 +2871094,2871095,31.0,1161128,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2871095,2871096,24.0,1161128,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22741.0,2119.0 +2871096,2871097,27.0,1161129,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22740.0,2119.0 +2871097,2871098,23.0,1161129,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22740.0,2119.0 +2871098,2871099,27.0,1161130,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22741.0,2119.0 +2871099,2871100,23.0,1161130,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22741.0,2119.0 +2871100,2871101,27.0,1161131,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22745.0,2121.0 +2871101,2871102,23.0,1161131,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22745.0,2121.0 +2871102,2871103,25.0,1161132,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871103,2871104,22.0,1161132,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871104,2871105,21.0,1161132,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871105,2871106,25.0,1161133,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871106,2871107,22.0,1161133,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871107,2871108,21.0,1161133,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871108,2871109,25.0,1161134,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871109,2871110,22.0,1161134,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871110,2871111,21.0,1161134,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871111,2871112,25.0,1161135,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871112,2871113,22.0,1161135,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871113,2871114,21.0,1161135,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871114,2871115,25.0,1161136,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871115,2871116,22.0,1161136,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871116,2871117,21.0,1161136,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871117,2871118,25.0,1161137,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871118,2871119,22.0,1161137,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871119,2871120,21.0,1161137,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871120,2871121,25.0,1161138,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22742.0,2119.0 +2871121,2871122,22.0,1161138,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22742.0,2119.0 +2871122,2871123,21.0,1161138,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22742.0,2119.0 +2871123,2871124,25.0,1161139,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22738.0,2117.0 +2871124,2871125,22.0,1161139,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22738.0,2117.0 +2871125,2871126,21.0,1161139,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22738.0,2117.0 +2871126,2871127,25.0,1161140,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871127,2871128,22.0,1161140,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871128,2871129,21.0,1161140,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871129,2871130,25.0,1161141,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871130,2871131,22.0,1161141,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871131,2871132,21.0,1161141,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871132,2871133,25.0,1161142,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22738.0,2117.0 +2871133,2871134,22.0,1161142,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22738.0,2117.0 +2871134,2871135,21.0,1161142,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22738.0,2117.0 +2871135,2871136,25.0,1161143,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871136,2871137,22.0,1161143,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871137,2871138,21.0,1161143,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871138,2871139,25.0,1161144,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871139,2871140,22.0,1161144,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871140,2871141,21.0,1161144,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871141,2871142,25.0,1161145,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22743.0,2119.0 +2871142,2871143,22.0,1161145,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22743.0,2119.0 +2871143,2871144,21.0,1161145,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22743.0,2119.0 +2871144,2871145,25.0,1161146,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871145,2871146,22.0,1161146,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871146,2871147,21.0,1161146,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871147,2871148,25.0,1161147,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2871148,2871149,22.0,1161147,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2871149,2871150,21.0,1161147,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2871150,2871151,25.0,1161148,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871151,2871152,22.0,1161148,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871152,2871153,21.0,1161148,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871153,2871154,25.0,1161149,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22739.0,2118.0 +2871154,2871155,22.0,1161149,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22739.0,2118.0 +2871155,2871156,21.0,1161149,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22739.0,2118.0 +2871156,2871157,25.0,1161150,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871157,2871158,22.0,1161150,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871158,2871159,21.0,1161150,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871159,2871160,25.0,1161151,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871160,2871161,22.0,1161151,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871161,2871162,21.0,1161151,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871162,2871163,25.0,1161152,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22743.0,2119.0 +2871163,2871164,22.0,1161152,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22743.0,2119.0 +2871164,2871165,21.0,1161152,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22743.0,2119.0 +2871165,2871166,25.0,1161153,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871166,2871167,22.0,1161153,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871167,2871168,21.0,1161153,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871168,2871169,25.0,1161154,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871169,2871170,22.0,1161154,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871170,2871171,21.0,1161154,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871171,2871172,25.0,1161155,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871172,2871173,22.0,1161155,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871173,2871174,21.0,1161155,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871174,2871175,25.0,1161156,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871175,2871176,22.0,1161156,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871176,2871177,21.0,1161156,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871177,2871178,25.0,1161157,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871178,2871179,22.0,1161157,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871179,2871180,21.0,1161157,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871180,2871181,25.0,1161158,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871181,2871182,22.0,1161158,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871182,2871183,21.0,1161158,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871183,2871184,25.0,1161159,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871184,2871185,22.0,1161159,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871185,2871186,21.0,1161159,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22744.0,2120.0 +2871186,2871187,25.0,1161160,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871187,2871188,22.0,1161160,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871188,2871189,21.0,1161160,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871189,2871190,25.0,1161161,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2871190,2871191,22.0,1161161,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2871191,2871192,21.0,1161161,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22747.0,2123.0 +2871192,2871193,25.0,1161162,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871193,2871194,22.0,1161162,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871194,2871195,21.0,1161162,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871195,2871196,25.0,1161163,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871196,2871197,22.0,1161163,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871197,2871198,21.0,1161163,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871198,2871199,25.0,1161164,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871199,2871200,22.0,1161164,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871200,2871201,21.0,1161164,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871201,2871202,25.0,1161165,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871202,2871203,22.0,1161165,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871203,2871204,21.0,1161165,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871204,2871205,25.0,1161166,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871205,2871206,22.0,1161166,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871206,2871207,21.0,1161166,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871207,2871208,25.0,1161167,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871208,2871209,22.0,1161167,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871209,2871210,21.0,1161167,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871210,2871211,25.0,1161168,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871211,2871212,22.0,1161168,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871212,2871213,21.0,1161168,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871213,2871214,25.0,1161169,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871214,2871215,22.0,1161169,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871215,2871216,21.0,1161169,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22745.0,2121.0 +2871216,2871217,25.0,1161170,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871217,2871218,22.0,1161170,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871218,2871219,21.0,1161170,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871219,2871220,25.0,1161171,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871220,2871221,22.0,1161171,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871221,2871222,21.0,1161171,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871222,2871223,25.0,1161172,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871223,2871224,22.0,1161172,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871224,2871225,21.0,1161172,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871225,2871226,25.0,1161173,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871226,2871227,22.0,1161173,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871227,2871228,21.0,1161173,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871228,2871229,25.0,1161174,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871229,2871230,22.0,1161174,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871230,2871231,21.0,1161174,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871231,2871232,25.0,1161175,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871232,2871233,22.0,1161175,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871233,2871234,21.0,1161175,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871234,2871235,25.0,1161176,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871235,2871236,22.0,1161176,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871236,2871237,21.0,1161176,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22737.0,2116.0 +2871237,2871238,25.0,1161177,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871238,2871239,22.0,1161177,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871239,2871240,21.0,1161177,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871240,2871241,25.0,1161178,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22738.0,2117.0 +2871241,2871242,22.0,1161178,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22738.0,2117.0 +2871242,2871243,21.0,1161178,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22738.0,2117.0 +2871243,2871244,25.0,1161179,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871244,2871245,22.0,1161179,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871245,2871246,21.0,1161179,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22741.0,2119.0 +2871246,2871247,25.0,1161180,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871247,2871248,22.0,1161180,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871248,2871249,21.0,1161180,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22740.0,2119.0 +2871249,2871250,25.0,1161181,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22740.0,2119.0 +2871250,2871251,24.0,1161181,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22740.0,2119.0 +2871251,2871252,25.0,1161182,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22744.0,2120.0 +2871252,2871253,24.0,1161182,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22744.0,2120.0 +2871253,2871254,25.0,1161183,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22741.0,2119.0 +2871254,2871255,24.0,1161183,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22741.0,2119.0 +2871255,2871256,25.0,1161184,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22740.0,2119.0 +2871256,2871257,24.0,1161184,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22740.0,2119.0 +2871257,2871258,25.0,1161185,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22744.0,2120.0 +2871258,2871259,24.0,1161185,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22744.0,2120.0 +2871259,2871260,25.0,1161186,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22737.0,2116.0 +2871260,2871261,24.0,1161186,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22737.0,2116.0 +2871261,2871262,25.0,1161187,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22737.0,2116.0 +2871262,2871263,24.0,1161187,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22737.0,2116.0 +2871263,2871264,25.0,1161188,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22742.0,2119.0 +2871264,2871265,24.0,1161188,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22742.0,2119.0 +2871265,2871266,25.0,1161189,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22743.0,2119.0 +2871266,2871267,24.0,1161189,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22743.0,2119.0 +2871267,2871268,25.0,1161190,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22740.0,2119.0 +2871268,2871269,24.0,1161190,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22740.0,2119.0 +2871269,2871270,25.0,1161191,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22737.0,2116.0 +2871270,2871271,24.0,1161191,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22737.0,2116.0 +2871271,2871272,25.0,1161192,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22741.0,2119.0 +2871272,2871273,24.0,1161192,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22741.0,2119.0 +2871273,2871274,25.0,1161193,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22741.0,2119.0 +2871274,2871275,24.0,1161193,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22741.0,2119.0 +2871275,2871276,25.0,1161194,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22737.0,2116.0 +2871276,2871277,24.0,1161194,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22737.0,2116.0 +2871277,2871278,25.0,1161195,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22740.0,2119.0 +2871278,2871279,24.0,1161195,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22740.0,2119.0 +2871279,2871280,25.0,1161196,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22740.0,2119.0 +2871280,2871281,24.0,1161196,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22740.0,2119.0 +2871281,2871282,25.0,1161197,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22740.0,2119.0 +2871282,2871283,24.0,1161197,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22740.0,2119.0 +2871283,2871284,25.0,1161198,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22737.0,2116.0 +2871284,2871285,24.0,1161198,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22737.0,2116.0 +2871285,2871286,25.0,1161199,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22745.0,2121.0 +2871286,2871287,24.0,1161199,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22745.0,2121.0 +2871287,2871288,25.0,1161200,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22744.0,2120.0 +2871288,2871289,24.0,1161200,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22744.0,2120.0 +2871289,2871290,25.0,1161201,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22741.0,2119.0 +2871290,2871291,24.0,1161201,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22741.0,2119.0 +2871291,2871292,25.0,1161202,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22739.0,2118.0 +2871292,2871293,24.0,1161202,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22739.0,2118.0 +2871293,2871294,25.0,1161203,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22744.0,2120.0 +2871294,2871295,24.0,1161203,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22744.0,2120.0 +2871295,2871296,25.0,1161204,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22737.0,2116.0 +2871296,2871297,24.0,1161204,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22737.0,2116.0 +2871297,2871298,25.0,1161205,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22741.0,2119.0 +2871298,2871299,24.0,1161205,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22741.0,2119.0 +2871299,2871300,25.0,1161206,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22744.0,2120.0 +2871300,2871301,24.0,1161206,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22744.0,2120.0 +2871301,2871302,25.0,1161207,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22741.0,2119.0 +2871302,2871303,24.0,1161207,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22741.0,2119.0 +2871303,2871304,25.0,1161208,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22741.0,2119.0 +2871304,2871305,24.0,1161208,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22741.0,2119.0 +2871305,2871306,25.0,1161209,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22740.0,2119.0 +2871306,2871307,24.0,1161209,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22740.0,2119.0 +2871307,2871308,25.0,1161210,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22741.0,2119.0 +2871308,2871309,24.0,1161210,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22741.0,2119.0 +2871309,2871310,25.0,1161211,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22740.0,2119.0 +2871310,2871311,24.0,1161211,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22740.0,2119.0 +2871311,2871312,25.0,1161212,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22737.0,2116.0 +2871312,2871313,24.0,1161212,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22737.0,2116.0 +2871313,2871314,25.0,1161213,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22738.0,2117.0 +2871314,2871315,24.0,1161213,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22738.0,2117.0 +2871315,2871316,25.0,1161214,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22744.0,2120.0 +2871316,2871317,24.0,1161214,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22744.0,2120.0 +2871317,2871318,25.0,1161215,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22738.0,2117.0 +2871318,2871319,24.0,1161215,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22738.0,2117.0 +2871319,2871320,25.0,1161216,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22747.0,2123.0 +2871320,2871321,24.0,1161216,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22747.0,2123.0 +2871321,2871322,25.0,1161217,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22744.0,2120.0 +2871322,2871323,24.0,1161217,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22744.0,2120.0 +2871323,2871324,25.0,1161218,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22745.0,2121.0 +2871324,2871325,24.0,1161218,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22745.0,2121.0 +2871325,2871326,25.0,1161219,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22737.0,2116.0 +2871326,2871327,24.0,1161219,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22737.0,2116.0 +2871327,2871328,25.0,1161220,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22737.0,2116.0 +2871328,2871329,24.0,1161220,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22737.0,2116.0 +2871329,2871330,25.0,1161221,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22739.0,2118.0 +2871330,2871331,24.0,1161221,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22739.0,2118.0 +2871331,2871332,25.0,1161222,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22742.0,2119.0 +2871332,2871333,24.0,1161222,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22742.0,2119.0 +2871333,2871334,25.0,1161223,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22743.0,2119.0 +2871334,2871335,24.0,1161223,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22743.0,2119.0 +2871335,2871336,25.0,1161224,1,1,0,1,1.0,30.0,1.0,15.0,4.0,51912,8.0,22745.0,2121.0 +2871336,2871337,24.0,1161224,2,2,13,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22745.0,2121.0 +2871337,2871338,31.0,1161225,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2871338,2871339,24.0,1161225,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22745.0,2121.0 +2871339,2871340,31.0,1161226,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22741.0,2119.0 +2871340,2871341,24.0,1161226,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22741.0,2119.0 +2871341,2871342,31.0,1161227,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871342,2871343,24.0,1161227,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22740.0,2119.0 +2871343,2871344,31.0,1161228,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2871344,2871345,24.0,1161228,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22747.0,2123.0 +2871345,2871346,19.0,1161229,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22744.0,2120.0 +2871346,2871347,19.0,1161230,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22740.0,2119.0 +2871347,2871348,24.0,1161231,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22740.0,2119.0 +2871348,2871349,19.0,1161232,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22741.0,2119.0 +2871349,2871350,19.0,1161233,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22738.0,2117.0 +2871350,2871351,19.0,1161234,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22737.0,2116.0 +2871351,2871352,19.0,1161235,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22740.0,2119.0 +2871352,2871353,19.0,1161236,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2871353,2871354,19.0,1161237,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22740.0,2119.0 +2871354,2871355,24.0,1161238,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22743.0,2119.0 +2871355,2871356,19.0,1161239,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22744.0,2120.0 +2871356,2871357,24.0,1161240,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22744.0,2120.0 +2871357,2871358,19.0,1161241,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22744.0,2120.0 +2871358,2871359,19.0,1161242,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22740.0,2119.0 +2871359,2871360,19.0,1161243,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2871360,2871361,19.0,1161244,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22737.0,2116.0 +2871361,2871362,19.0,1161245,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22742.0,2119.0 +2871362,2871363,19.0,1161246,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2871363,2871364,19.0,1161247,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22741.0,2119.0 +2871364,2871365,24.0,1161248,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22740.0,2119.0 +2871365,2871366,19.0,1161249,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22740.0,2119.0 +2871366,2871367,19.0,1161250,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22743.0,2119.0 +2871367,2871368,19.0,1161251,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2871368,2871369,19.0,1161252,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22738.0,2117.0 +2871369,2871370,19.0,1161253,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22740.0,2119.0 +2871370,2871371,24.0,1161254,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22745.0,2121.0 +2871371,2871372,19.0,1161255,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22741.0,2119.0 +2871372,2871373,19.0,1161256,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +2871373,2871374,19.0,1161257,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +2871374,2871375,24.0,1161258,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22745.0,2121.0 +2871375,2871376,19.0,1161259,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22737.0,2116.0 +2871376,2871377,19.0,1161260,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22744.0,2120.0 +2871377,2871378,19.0,1161261,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +2871378,2871379,24.0,1161262,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22737.0,2116.0 +2871379,2871380,19.0,1161263,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22740.0,2119.0 +2871380,2871381,19.0,1161264,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22740.0,2119.0 +2871381,2871382,19.0,1161265,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22744.0,2120.0 +2871382,2871383,24.0,1161266,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22744.0,2120.0 +2871383,2871384,19.0,1161267,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22740.0,2119.0 +2871384,2871385,19.0,1161268,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22744.0,2120.0 +2871385,2871386,19.0,1161269,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22737.0,2116.0 +2871386,2871387,24.0,1161270,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22741.0,2119.0 +2871387,2871388,19.0,1161271,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22737.0,2116.0 +2871388,2871389,23.0,1161272,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2871389,2871390,26.0,1161272,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2871390,2871391,23.0,1161273,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22741.0,2119.0 +2871391,2871392,26.0,1161273,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22741.0,2119.0 +2871392,2871393,23.0,1161274,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22742.0,2119.0 +2871393,2871394,26.0,1161274,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22742.0,2119.0 +2871394,2871395,23.0,1161275,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871395,2871396,26.0,1161275,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871396,2871397,23.0,1161276,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22741.0,2119.0 +2871397,2871398,26.0,1161276,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22741.0,2119.0 +2871398,2871399,23.0,1161277,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871399,2871400,26.0,1161277,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871400,2871401,23.0,1161278,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2871401,2871402,26.0,1161278,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2871402,2871403,23.0,1161279,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2871403,2871404,26.0,1161279,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22744.0,2120.0 +2871404,2871405,23.0,1161280,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2871405,2871406,26.0,1161280,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2871406,2871407,23.0,1161281,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871407,2871408,26.0,1161281,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871408,2871409,23.0,1161282,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871409,2871410,26.0,1161282,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871410,2871411,23.0,1161283,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871411,2871412,26.0,1161283,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871412,2871413,23.0,1161284,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871413,2871414,26.0,1161284,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871414,2871415,23.0,1161285,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2871415,2871416,26.0,1161285,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2871416,2871417,23.0,1161286,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871417,2871418,26.0,1161286,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871418,2871419,23.0,1161287,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2871419,2871420,26.0,1161287,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2871420,2871421,23.0,1161288,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22741.0,2119.0 +2871421,2871422,26.0,1161288,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22741.0,2119.0 +2871422,2871423,23.0,1161289,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2871423,2871424,26.0,1161289,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22744.0,2120.0 +2871424,2871425,23.0,1161290,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22741.0,2119.0 +2871425,2871426,26.0,1161290,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22741.0,2119.0 +2871426,2871427,23.0,1161291,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871427,2871428,26.0,1161291,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871428,2871429,23.0,1161292,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22739.0,2118.0 +2871429,2871430,26.0,1161292,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22739.0,2118.0 +2871430,2871431,23.0,1161293,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22741.0,2119.0 +2871431,2871432,26.0,1161293,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22741.0,2119.0 +2871432,2871433,23.0,1161294,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2871433,2871434,26.0,1161294,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22744.0,2120.0 +2871434,2871435,23.0,1161295,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2871435,2871436,26.0,1161295,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2871436,2871437,23.0,1161296,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2871437,2871438,26.0,1161296,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22745.0,2121.0 +2871438,2871439,23.0,1161297,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2871439,2871440,26.0,1161297,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2871440,2871441,23.0,1161298,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871441,2871442,26.0,1161298,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871442,2871443,23.0,1161299,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2871443,2871444,26.0,1161299,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2871444,2871445,23.0,1161300,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2871445,2871446,26.0,1161300,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2871446,2871447,23.0,1161301,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871447,2871448,26.0,1161301,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871448,2871449,23.0,1161302,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22742.0,2119.0 +2871449,2871450,26.0,1161302,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22742.0,2119.0 +2871450,2871451,23.0,1161303,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2871451,2871452,26.0,1161303,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22744.0,2120.0 +2871452,2871453,23.0,1161304,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2871453,2871454,26.0,1161304,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2871454,2871455,23.0,1161305,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22741.0,2119.0 +2871455,2871456,26.0,1161305,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22741.0,2119.0 +2871456,2871457,23.0,1161306,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2871457,2871458,26.0,1161306,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2871458,2871459,23.0,1161307,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +2871459,2871460,26.0,1161307,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22745.0,2121.0 +2871460,2871461,23.0,1161308,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871461,2871462,26.0,1161308,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871462,2871463,23.0,1161309,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22737.0,2116.0 +2871463,2871464,26.0,1161309,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22737.0,2116.0 +2871464,2871465,23.0,1161310,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871465,2871466,26.0,1161310,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871466,2871467,23.0,1161311,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22738.0,2117.0 +2871467,2871468,26.0,1161311,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22738.0,2117.0 +2871468,2871469,23.0,1161312,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22747.0,2123.0 +2871469,2871470,26.0,1161312,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22747.0,2123.0 +2871470,2871471,23.0,1161313,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22740.0,2119.0 +2871471,2871472,26.0,1161313,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22740.0,2119.0 +2871472,2871473,23.0,1161314,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22744.0,2120.0 +2871473,2871474,26.0,1161314,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22744.0,2120.0 +2871474,2871475,24.0,1161315,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22745.0,2121.0 +2871475,2871476,24.0,1161316,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22744.0,2120.0 +2871476,2871477,24.0,1161317,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22740.0,2119.0 +2871477,2871478,24.0,1161318,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22741.0,2119.0 +2871478,2871479,24.0,1161319,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22738.0,2117.0 +2871479,2871480,24.0,1161320,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22741.0,2119.0 +2871480,2871481,24.0,1161321,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22738.0,2117.0 +2871481,2871482,24.0,1161322,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22740.0,2119.0 +2871482,2871483,24.0,1161323,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22741.0,2119.0 +2871483,2871484,24.0,1161324,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22739.0,2118.0 +2871484,2871485,24.0,1161325,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22740.0,2119.0 +2871485,2871486,24.0,1161326,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22737.0,2116.0 +2871486,2871487,24.0,1161327,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22741.0,2119.0 +2871487,2871488,24.0,1161328,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22741.0,2119.0 +2871488,2871489,24.0,1161329,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22738.0,2117.0 +2871489,2871490,24.0,1161330,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22744.0,2120.0 +2871490,2871491,24.0,1161331,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22739.0,2118.0 +2871491,2871492,24.0,1161332,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22739.0,2118.0 +2871492,2871493,24.0,1161333,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22744.0,2120.0 +2871493,2871494,24.0,1161334,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22745.0,2121.0 +2871494,2871495,24.0,1161335,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22744.0,2120.0 +2871495,2871496,21.0,1161336,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22741.0,2119.0 +2871496,2871497,24.0,1161337,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22737.0,2116.0 +2871497,2871498,25.0,1161337,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22737.0,2116.0 +2871498,2871499,24.0,1161338,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22747.0,2123.0 +2871499,2871500,25.0,1161338,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22747.0,2123.0 +2871500,2871501,24.0,1161339,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22740.0,2119.0 +2871501,2871502,25.0,1161339,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22740.0,2119.0 +2871502,2871503,24.0,1161340,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22744.0,2120.0 +2871503,2871504,25.0,1161340,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22744.0,2120.0 +2871504,2871505,24.0,1161341,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22743.0,2119.0 +2871505,2871506,25.0,1161341,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22743.0,2119.0 +2871506,2871507,24.0,1161342,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22737.0,2116.0 +2871507,2871508,25.0,1161342,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22737.0,2116.0 +2871508,2871509,24.0,1161343,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22741.0,2119.0 +2871509,2871510,25.0,1161343,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22741.0,2119.0 +2871510,2871511,24.0,1161344,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22737.0,2116.0 +2871511,2871512,25.0,1161344,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22737.0,2116.0 +2871512,2871513,24.0,1161345,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22742.0,2119.0 +2871513,2871514,25.0,1161345,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22742.0,2119.0 +2871514,2871515,24.0,1161346,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22744.0,2120.0 +2871515,2871516,25.0,1161346,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22744.0,2120.0 +2871516,2871517,24.0,1161347,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22738.0,2117.0 +2871517,2871518,25.0,1161347,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22738.0,2117.0 +2871518,2871519,24.0,1161348,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22737.0,2116.0 +2871519,2871520,25.0,1161348,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22737.0,2116.0 +2871520,2871521,24.0,1161349,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,92MP,18.0,22747.0,2123.0 +2871521,2871522,25.0,1161349,2,1,1,1,6.0,-9.0,-9.0,16.0,3.0,92MP,18.0,22747.0,2123.0 +2871522,2871523,24.0,1161350,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +2871523,2871524,25.0,1161350,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +2871524,2871525,20.0,1161351,1,1,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22744.0,2120.0 +2871525,2871526,25.0,1161351,2,1,13,1,6.0,-9.0,-9.0,16.0,4.0,722Z,16.0,22744.0,2120.0 +2871526,2871527,20.0,1161352,1,1,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22740.0,2119.0 +2871527,2871528,25.0,1161352,2,1,13,1,6.0,-9.0,-9.0,16.0,4.0,722Z,16.0,22740.0,2119.0 +2871528,2871529,20.0,1161353,1,1,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22743.0,2119.0 +2871529,2871530,25.0,1161353,2,1,13,1,6.0,-9.0,-9.0,16.0,4.0,722Z,16.0,22743.0,2119.0 +2871530,2871531,20.0,1161354,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2871531,2871532,24.0,1161355,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22737.0,2116.0 +2871532,2871533,23.0,1161356,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22737.0,2116.0 +2871533,2871534,20.0,1161357,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22744.0,2120.0 +2871534,2871535,23.0,1161358,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2871535,2871536,20.0,1161359,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22737.0,2116.0 +2871536,2871537,20.0,1161360,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22740.0,2119.0 +2871537,2871538,20.0,1161361,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2871538,2871539,24.0,1161362,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22743.0,2119.0 +2871539,2871540,20.0,1161363,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22743.0,2119.0 +2871540,2871541,24.0,1161364,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22744.0,2120.0 +2871541,2871542,24.0,1161365,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22741.0,2119.0 +2871542,2871543,24.0,1161366,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2871543,2871544,24.0,1161367,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22747.0,2123.0 +2871544,2871545,20.0,1161368,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22739.0,2118.0 +2871545,2871546,20.0,1161369,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22738.0,2117.0 +2871546,2871547,23.0,1161370,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2871547,2871548,24.0,1161371,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +2871548,2871549,24.0,1161372,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22744.0,2120.0 +2871549,2871550,20.0,1161373,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22740.0,2119.0 +2871550,2871551,20.0,1161374,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22741.0,2119.0 +2871551,2871552,23.0,1161375,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2871552,2871553,23.0,1161376,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22742.0,2119.0 +2871553,2871554,23.0,1161377,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22741.0,2119.0 +2871554,2871555,23.0,1161378,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22737.0,2116.0 +2871555,2871556,24.0,1161379,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22742.0,2119.0 +2871556,2871557,24.0,1161380,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22740.0,2119.0 +2871557,2871558,24.0,1161381,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22745.0,2121.0 +2871558,2871559,24.0,1161382,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22740.0,2119.0 +2871559,2871560,24.0,1161383,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22741.0,2119.0 +2871560,2871561,24.0,1161384,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22744.0,2120.0 +2871561,2871562,24.0,1161385,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22740.0,2119.0 +2871562,2871563,24.0,1161386,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22740.0,2119.0 +2871563,2871564,24.0,1161387,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22744.0,2120.0 +2871564,2871565,24.0,1161388,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22744.0,2120.0 +2871565,2871566,24.0,1161389,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22747.0,2123.0 +2871566,2871567,24.0,1161390,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22740.0,2119.0 +2871567,2871568,24.0,1161391,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22741.0,2119.0 +2871568,2871569,24.0,1161392,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22740.0,2119.0 +2871569,2871570,24.0,1161393,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22741.0,2119.0 +2871570,2871571,24.0,1161394,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22737.0,2116.0 +2871571,2871572,24.0,1161395,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22740.0,2119.0 +2871572,2871573,24.0,1161396,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22741.0,2119.0 +2871573,2871574,24.0,1161397,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22742.0,2119.0 +2871574,2871575,24.0,1161398,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22745.0,2121.0 +2871575,2871576,24.0,1161399,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22741.0,2119.0 +2871576,2871577,24.0,1161400,1,1,0,1,1.0,45.0,4.0,-9.0,4.0,4251,4.0,22738.0,2117.0 +2871577,2871578,24.0,1161401,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22738.0,2117.0 +2871578,2871579,24.0,1161402,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22741.0,2119.0 +2871579,2871580,24.0,1161403,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22737.0,2116.0 +2871580,2871581,24.0,1161404,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22743.0,2119.0 +2871581,2871582,24.0,1161405,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22747.0,2123.0 +2871582,2871583,24.0,1161406,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22743.0,2119.0 +2871583,2871584,24.0,1161407,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22737.0,2116.0 +2871584,2871585,24.0,1161408,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22738.0,2117.0 +2871585,2871586,24.0,1161409,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22737.0,2116.0 +2871586,2871587,24.0,1161410,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22741.0,2119.0 +2871587,2871588,24.0,1161411,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22737.0,2116.0 +2871588,2871589,22.0,1161412,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22737.0,2116.0 +2871589,2871590,22.0,1161413,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22741.0,2119.0 +2871590,2871591,22.0,1161414,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22741.0,2119.0 +2871591,2871592,22.0,1161415,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22741.0,2119.0 +2871592,2871593,22.0,1161416,1,2,0,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22741.0,2119.0 +2871593,2871594,24.0,1161417,1,1,0,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22739.0,2118.0 +2871594,2871595,24.0,1161418,1,1,0,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22741.0,2119.0 +2871595,2871596,24.0,1161419,1,1,0,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22737.0,2116.0 +2871596,2871597,24.0,1161420,1,1,0,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22741.0,2119.0 +2871597,2871598,24.0,1161421,1,1,0,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2871598,2871599,24.0,1161422,1,1,0,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22741.0,2119.0 +2871599,2871600,24.0,1161423,1,1,0,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22744.0,2120.0 +2871600,2871601,24.0,1161424,1,1,0,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2871601,2871602,24.0,1161425,1,1,0,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22743.0,2119.0 +2871602,2871603,24.0,1161426,1,1,0,1,1.0,45.0,1.0,16.0,4.0,611M1,13.0,22740.0,2119.0 +2871603,2871604,75.0,1161427,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22753.0,2125.0 +2871604,2871605,80.0,1161428,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2871605,2871606,80.0,1161429,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2871606,2871607,72.0,1161430,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22749.0,2125.0 +2871607,2871608,72.0,1161431,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2871608,2871609,80.0,1161432,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871609,2871610,72.0,1161433,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2871610,2871611,72.0,1161434,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871611,2871612,72.0,1161435,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22749.0,2125.0 +2871612,2871613,72.0,1161436,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2871613,2871614,72.0,1161437,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871614,2871615,72.0,1161438,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871615,2871616,72.0,1161439,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22749.0,2125.0 +2871616,2871617,80.0,1161440,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871617,2871618,72.0,1161441,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2871618,2871619,80.0,1161442,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871619,2871620,80.0,1161443,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871620,2871621,80.0,1161444,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871621,2871622,72.0,1161445,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871622,2871623,72.0,1161446,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2871623,2871624,72.0,1161447,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2871624,2871625,80.0,1161448,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871625,2871626,80.0,1161449,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871626,2871627,80.0,1161450,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2871627,2871628,72.0,1161451,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22753.0,2125.0 +2871628,2871629,72.0,1161452,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871629,2871630,80.0,1161453,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871630,2871631,80.0,1161454,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871631,2871632,72.0,1161455,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2871632,2871633,80.0,1161456,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22753.0,2125.0 +2871633,2871634,80.0,1161457,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871634,2871635,80.0,1161458,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22753.0,2125.0 +2871635,2871636,80.0,1161459,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22749.0,2125.0 +2871636,2871637,80.0,1161460,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871637,2871638,72.0,1161461,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871638,2871639,80.0,1161462,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871639,2871640,72.0,1161463,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2871640,2871641,72.0,1161464,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2871641,2871642,72.0,1161465,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871642,2871643,80.0,1161466,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871643,2871644,80.0,1161467,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2871644,2871645,72.0,1161468,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2871645,2871646,72.0,1161469,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2871646,2871647,80.0,1161470,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871647,2871648,66.0,1161471,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22750.0,2125.0 +2871648,2871649,22.0,1161471,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22750.0,2125.0 +2871649,2871650,56.0,1161471,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2871650,2871651,66.0,1161472,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22754.0,2125.0 +2871651,2871652,22.0,1161472,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22754.0,2125.0 +2871652,2871653,56.0,1161472,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22754.0,2125.0 +2871653,2871654,66.0,1161473,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22752.0,2125.0 +2871654,2871655,22.0,1161473,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22752.0,2125.0 +2871655,2871656,56.0,1161473,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2871656,2871657,66.0,1161474,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22752.0,2125.0 +2871657,2871658,22.0,1161474,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22752.0,2125.0 +2871658,2871659,56.0,1161474,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2871659,2871660,66.0,1161475,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22751.0,2125.0 +2871660,2871661,22.0,1161475,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22751.0,2125.0 +2871661,2871662,56.0,1161475,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22751.0,2125.0 +2871662,2871663,66.0,1161476,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22752.0,2125.0 +2871663,2871664,22.0,1161476,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22752.0,2125.0 +2871664,2871665,56.0,1161476,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2871665,2871666,66.0,1161477,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22754.0,2125.0 +2871666,2871667,22.0,1161477,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22754.0,2125.0 +2871667,2871668,56.0,1161477,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22754.0,2125.0 +2871668,2871669,66.0,1161478,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22751.0,2125.0 +2871669,2871670,22.0,1161478,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22751.0,2125.0 +2871670,2871671,56.0,1161478,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22751.0,2125.0 +2871671,2871672,66.0,1161479,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22749.0,2125.0 +2871672,2871673,22.0,1161479,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22749.0,2125.0 +2871673,2871674,56.0,1161479,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22749.0,2125.0 +2871674,2871675,66.0,1161480,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22754.0,2125.0 +2871675,2871676,22.0,1161480,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22754.0,2125.0 +2871676,2871677,56.0,1161480,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22754.0,2125.0 +2871677,2871678,66.0,1161481,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22751.0,2125.0 +2871678,2871679,22.0,1161481,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22751.0,2125.0 +2871679,2871680,56.0,1161481,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22751.0,2125.0 +2871680,2871681,66.0,1161482,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22751.0,2125.0 +2871681,2871682,22.0,1161482,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22751.0,2125.0 +2871682,2871683,56.0,1161482,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22751.0,2125.0 +2871683,2871684,66.0,1161483,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22750.0,2125.0 +2871684,2871685,22.0,1161483,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22750.0,2125.0 +2871685,2871686,56.0,1161483,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2871686,2871687,66.0,1161484,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22752.0,2125.0 +2871687,2871688,22.0,1161484,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22752.0,2125.0 +2871688,2871689,56.0,1161484,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2871689,2871690,66.0,1161485,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22749.0,2125.0 +2871690,2871691,22.0,1161485,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22749.0,2125.0 +2871691,2871692,56.0,1161485,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22749.0,2125.0 +2871692,2871693,66.0,1161486,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22752.0,2125.0 +2871693,2871694,22.0,1161486,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22752.0,2125.0 +2871694,2871695,56.0,1161486,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2871695,2871696,66.0,1161487,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22753.0,2125.0 +2871696,2871697,22.0,1161487,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22753.0,2125.0 +2871697,2871698,56.0,1161487,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22753.0,2125.0 +2871698,2871699,66.0,1161488,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22754.0,2125.0 +2871699,2871700,22.0,1161488,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22754.0,2125.0 +2871700,2871701,56.0,1161488,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22754.0,2125.0 +2871701,2871702,66.0,1161489,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22751.0,2125.0 +2871702,2871703,22.0,1161489,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22751.0,2125.0 +2871703,2871704,56.0,1161489,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22751.0,2125.0 +2871704,2871705,66.0,1161490,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22751.0,2125.0 +2871705,2871706,22.0,1161490,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22751.0,2125.0 +2871706,2871707,56.0,1161490,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22751.0,2125.0 +2871707,2871708,66.0,1161491,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22752.0,2125.0 +2871708,2871709,22.0,1161491,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22752.0,2125.0 +2871709,2871710,56.0,1161491,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2871710,2871711,66.0,1161492,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22751.0,2125.0 +2871711,2871712,22.0,1161492,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22751.0,2125.0 +2871712,2871713,56.0,1161492,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22751.0,2125.0 +2871713,2871714,66.0,1161493,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22752.0,2125.0 +2871714,2871715,22.0,1161493,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22752.0,2125.0 +2871715,2871716,56.0,1161493,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2871716,2871717,66.0,1161494,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22749.0,2125.0 +2871717,2871718,22.0,1161494,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22749.0,2125.0 +2871718,2871719,56.0,1161494,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22749.0,2125.0 +2871719,2871720,66.0,1161495,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22754.0,2125.0 +2871720,2871721,22.0,1161495,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22754.0,2125.0 +2871721,2871722,56.0,1161495,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22754.0,2125.0 +2871722,2871723,66.0,1161496,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22750.0,2125.0 +2871723,2871724,22.0,1161496,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22750.0,2125.0 +2871724,2871725,56.0,1161496,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2871725,2871726,66.0,1161497,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22750.0,2125.0 +2871726,2871727,22.0,1161497,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22750.0,2125.0 +2871727,2871728,56.0,1161497,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2871728,2871729,66.0,1161498,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22750.0,2125.0 +2871729,2871730,22.0,1161498,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22750.0,2125.0 +2871730,2871731,56.0,1161498,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2871731,2871732,66.0,1161499,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22750.0,2125.0 +2871732,2871733,22.0,1161499,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22750.0,2125.0 +2871733,2871734,56.0,1161499,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2871734,2871735,66.0,1161500,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22750.0,2125.0 +2871735,2871736,22.0,1161500,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22750.0,2125.0 +2871736,2871737,56.0,1161500,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2871737,2871738,66.0,1161501,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22751.0,2125.0 +2871738,2871739,22.0,1161501,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22751.0,2125.0 +2871739,2871740,56.0,1161501,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22751.0,2125.0 +2871740,2871741,66.0,1161502,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22752.0,2125.0 +2871741,2871742,22.0,1161502,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22752.0,2125.0 +2871742,2871743,56.0,1161502,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2871743,2871744,66.0,1161503,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,7112,16.0,22749.0,2125.0 +2871744,2871745,22.0,1161503,2,1,2,1,1.0,37.0,1.0,-9.0,4.0,6241,14.0,22749.0,2125.0 +2871745,2871746,56.0,1161503,3,2,13,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22749.0,2125.0 +2871746,2871747,66.0,1161504,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22753.0,2125.0 +2871747,2871748,63.0,1161504,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22753.0,2125.0 +2871748,2871749,66.0,1161505,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22753.0,2125.0 +2871749,2871750,63.0,1161505,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22753.0,2125.0 +2871750,2871751,66.0,1161506,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22749.0,2125.0 +2871751,2871752,63.0,1161506,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22749.0,2125.0 +2871752,2871753,66.0,1161507,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22749.0,2125.0 +2871753,2871754,63.0,1161507,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22749.0,2125.0 +2871754,2871755,66.0,1161508,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22754.0,2125.0 +2871755,2871756,63.0,1161508,2,2,1,1,1.0,40.0,1.0,-9.0,4.0,52M1,9.0,22754.0,2125.0 +2871756,2871757,65.0,1161509,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2871757,2871758,66.0,1161510,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,611M1,13.0,22749.0,2125.0 +2871758,2871759,66.0,1161511,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2871759,2871760,67.0,1161512,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871760,2871761,80.0,1161513,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871761,2871762,88.0,1161514,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871762,2871763,88.0,1161515,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2871763,2871764,76.0,1161516,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871764,2871765,94.0,1161517,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2871765,2871766,88.0,1161518,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871766,2871767,80.0,1161519,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2871767,2871768,80.0,1161520,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22749.0,2125.0 +2871768,2871769,79.0,1161521,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871769,2871770,80.0,1161522,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2871770,2871771,82.0,1161523,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2871771,2871772,80.0,1161524,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22749.0,2125.0 +2871772,2871773,67.0,1161525,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871773,2871774,88.0,1161526,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22753.0,2125.0 +2871774,2871775,80.0,1161527,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2871775,2871776,80.0,1161528,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2871776,2871777,94.0,1161529,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2871777,2871778,48.0,1161530,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2871778,2871779,20.0,1161530,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22753.0,2125.0 +2871779,2871780,17.0,1161530,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22753.0,2125.0 +2871780,2871781,14.0,1161530,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22753.0,2125.0 +2871781,2871782,48.0,1161531,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22749.0,2125.0 +2871782,2871783,20.0,1161531,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22749.0,2125.0 +2871783,2871784,17.0,1161531,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22749.0,2125.0 +2871784,2871785,14.0,1161531,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22749.0,2125.0 +2871785,2871786,48.0,1161532,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22754.0,2125.0 +2871786,2871787,20.0,1161532,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22754.0,2125.0 +2871787,2871788,17.0,1161532,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22754.0,2125.0 +2871788,2871789,14.0,1161532,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22754.0,2125.0 +2871789,2871790,48.0,1161533,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22752.0,2125.0 +2871790,2871791,20.0,1161533,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22752.0,2125.0 +2871791,2871792,17.0,1161533,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22752.0,2125.0 +2871792,2871793,14.0,1161533,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22752.0,2125.0 +2871793,2871794,48.0,1161534,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22754.0,2125.0 +2871794,2871795,20.0,1161534,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22754.0,2125.0 +2871795,2871796,17.0,1161534,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22754.0,2125.0 +2871796,2871797,14.0,1161534,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22754.0,2125.0 +2871797,2871798,48.0,1161535,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22752.0,2125.0 +2871798,2871799,20.0,1161535,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22752.0,2125.0 +2871799,2871800,17.0,1161535,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22752.0,2125.0 +2871800,2871801,14.0,1161535,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22752.0,2125.0 +2871801,2871802,48.0,1161536,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22752.0,2125.0 +2871802,2871803,20.0,1161536,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22752.0,2125.0 +2871803,2871804,17.0,1161536,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22752.0,2125.0 +2871804,2871805,14.0,1161536,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22752.0,2125.0 +2871805,2871806,48.0,1161537,1,2,0,4,1.0,3.0,6.0,-9.0,4.0,6111,13.0,22750.0,2125.0 +2871806,2871807,20.0,1161537,2,2,2,4,1.0,15.0,3.0,15.0,4.0,311811,3.0,22750.0,2125.0 +2871807,2871808,17.0,1161537,3,2,2,4,6.0,-9.0,-9.0,12.0,4.0,-9,0.0,22750.0,2125.0 +2871808,2871809,14.0,1161537,4,2,2,4,-9.0,-9.0,-9.0,9.0,-9.0,-9,0.0,22750.0,2125.0 +2871809,2871810,53.0,1161538,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22754.0,2125.0 +2871810,2871811,18.0,1161538,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22754.0,2125.0 +2871811,2871812,55.0,1161539,1,1,0,3,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22749.0,2125.0 +2871812,2871813,55.0,1161540,1,1,0,3,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22751.0,2125.0 +2871813,2871814,55.0,1161541,1,1,0,3,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22754.0,2125.0 +2871814,2871815,56.0,1161542,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2871815,2871816,55.0,1161542,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2871816,2871817,22.0,1161542,3,2,2,1,6.0,5.0,5.0,15.0,4.0,6211,14.0,22751.0,2125.0 +2871817,2871818,56.0,1161543,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22754.0,2125.0 +2871818,2871819,55.0,1161543,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22754.0,2125.0 +2871819,2871820,22.0,1161543,3,2,2,1,6.0,5.0,5.0,15.0,4.0,6211,14.0,22754.0,2125.0 +2871820,2871821,56.0,1161544,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2871821,2871822,55.0,1161544,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2871822,2871823,22.0,1161544,3,2,2,1,6.0,5.0,5.0,15.0,4.0,6211,14.0,22750.0,2125.0 +2871823,2871824,56.0,1161545,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2871824,2871825,55.0,1161545,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2871825,2871826,22.0,1161545,3,2,2,1,6.0,5.0,5.0,15.0,4.0,6211,14.0,22751.0,2125.0 +2871826,2871827,58.0,1161546,1,2,0,1,1.0,57.0,1.0,-9.0,4.0,622M,15.0,22750.0,2125.0 +2871827,2871828,60.0,1161546,2,1,1,1,1.0,30.0,3.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2871828,2871829,23.0,1161546,3,2,2,1,1.0,40.0,5.0,15.0,4.0,6214,14.0,22750.0,2125.0 +2871829,2871830,60.0,1161547,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2871830,2871831,60.0,1161547,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2871831,2871832,22.0,1161547,3,2,2,1,1.0,10.0,4.0,15.0,4.0,6213ZM,14.0,22750.0,2125.0 +2871832,2871833,58.0,1161548,1,2,0,1,1.0,57.0,1.0,-9.0,4.0,622M,15.0,22752.0,2125.0 +2871833,2871834,60.0,1161548,2,1,1,1,1.0,30.0,3.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2871834,2871835,23.0,1161548,3,2,2,1,1.0,40.0,5.0,15.0,4.0,6214,14.0,22752.0,2125.0 +2871835,2871836,60.0,1161549,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2871836,2871837,60.0,1161549,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2871837,2871838,22.0,1161549,3,2,2,1,1.0,10.0,4.0,15.0,4.0,6213ZM,14.0,22752.0,2125.0 +2871838,2871839,60.0,1161550,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22754.0,2125.0 +2871839,2871840,60.0,1161550,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22754.0,2125.0 +2871840,2871841,22.0,1161550,3,2,2,1,1.0,10.0,4.0,15.0,4.0,6213ZM,14.0,22754.0,2125.0 +2871841,2871842,58.0,1161551,1,2,0,1,1.0,57.0,1.0,-9.0,4.0,622M,15.0,22752.0,2125.0 +2871842,2871843,60.0,1161551,2,1,1,1,1.0,30.0,3.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2871843,2871844,23.0,1161551,3,2,2,1,1.0,40.0,5.0,15.0,4.0,6214,14.0,22752.0,2125.0 +2871844,2871845,60.0,1161552,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2871845,2871846,60.0,1161552,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2871846,2871847,22.0,1161552,3,2,2,1,1.0,10.0,4.0,15.0,4.0,6213ZM,14.0,22751.0,2125.0 +2871847,2871848,60.0,1161553,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2871848,2871849,60.0,1161553,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2871849,2871850,22.0,1161553,3,2,2,1,1.0,10.0,4.0,15.0,4.0,6213ZM,14.0,22750.0,2125.0 +2871850,2871851,60.0,1161554,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22749.0,2125.0 +2871851,2871852,60.0,1161554,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22749.0,2125.0 +2871852,2871853,22.0,1161554,3,2,2,1,1.0,10.0,4.0,15.0,4.0,6213ZM,14.0,22749.0,2125.0 +2871853,2871854,58.0,1161555,1,2,0,1,1.0,57.0,1.0,-9.0,4.0,622M,15.0,22750.0,2125.0 +2871854,2871855,60.0,1161555,2,1,1,1,1.0,30.0,3.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2871855,2871856,23.0,1161555,3,2,2,1,1.0,40.0,5.0,15.0,4.0,6214,14.0,22750.0,2125.0 +2871856,2871857,60.0,1161556,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2871857,2871858,60.0,1161556,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2871858,2871859,22.0,1161556,3,2,2,1,1.0,10.0,4.0,15.0,4.0,6213ZM,14.0,22751.0,2125.0 +2871859,2871860,60.0,1161557,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22753.0,2125.0 +2871860,2871861,60.0,1161557,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22753.0,2125.0 +2871861,2871862,22.0,1161557,3,2,2,1,1.0,10.0,4.0,15.0,4.0,6213ZM,14.0,22753.0,2125.0 +2871862,2871863,60.0,1161558,1,2,0,1,1.0,45.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2871863,2871864,60.0,1161558,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2871864,2871865,22.0,1161558,3,2,2,1,1.0,10.0,4.0,15.0,4.0,6213ZM,14.0,22750.0,2125.0 +2871865,2871866,47.0,1161559,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22750.0,2125.0 +2871866,2871867,22.0,1161559,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22750.0,2125.0 +2871867,2871868,47.0,1161560,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22750.0,2125.0 +2871868,2871869,22.0,1161560,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22750.0,2125.0 +2871869,2871870,47.0,1161561,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22751.0,2125.0 +2871870,2871871,22.0,1161561,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22751.0,2125.0 +2871871,2871872,47.0,1161562,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22753.0,2125.0 +2871872,2871873,22.0,1161562,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22753.0,2125.0 +2871873,2871874,47.0,1161563,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22752.0,2125.0 +2871874,2871875,22.0,1161563,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22752.0,2125.0 +2871875,2871876,63.0,1161564,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22753.0,2125.0 +2871876,2871877,61.0,1161565,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871877,2871878,69.0,1161565,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871878,2871879,21.0,1161565,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22754.0,2125.0 +2871879,2871880,61.0,1161566,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22749.0,2125.0 +2871880,2871881,69.0,1161566,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22749.0,2125.0 +2871881,2871882,21.0,1161566,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22749.0,2125.0 +2871882,2871883,61.0,1161567,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871883,2871884,69.0,1161567,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871884,2871885,21.0,1161567,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22750.0,2125.0 +2871885,2871886,61.0,1161568,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871886,2871887,69.0,1161568,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871887,2871888,21.0,1161568,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22750.0,2125.0 +2871888,2871889,61.0,1161569,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871889,2871890,69.0,1161569,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871890,2871891,21.0,1161569,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22750.0,2125.0 +2871891,2871892,61.0,1161570,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871892,2871893,69.0,1161570,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871893,2871894,21.0,1161570,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22750.0,2125.0 +2871894,2871895,61.0,1161571,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871895,2871896,69.0,1161571,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871896,2871897,21.0,1161571,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22750.0,2125.0 +2871897,2871898,61.0,1161572,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871898,2871899,69.0,1161572,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871899,2871900,21.0,1161572,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22751.0,2125.0 +2871900,2871901,61.0,1161573,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871901,2871902,69.0,1161573,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871902,2871903,21.0,1161573,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22750.0,2125.0 +2871903,2871904,61.0,1161574,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871904,2871905,69.0,1161574,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871905,2871906,21.0,1161574,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22750.0,2125.0 +2871906,2871907,61.0,1161575,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871907,2871908,69.0,1161575,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871908,2871909,21.0,1161575,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22751.0,2125.0 +2871909,2871910,61.0,1161576,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871910,2871911,69.0,1161576,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871911,2871912,21.0,1161576,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22754.0,2125.0 +2871912,2871913,61.0,1161577,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22749.0,2125.0 +2871913,2871914,69.0,1161577,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22749.0,2125.0 +2871914,2871915,21.0,1161577,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22749.0,2125.0 +2871915,2871916,61.0,1161578,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871916,2871917,69.0,1161578,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871917,2871918,21.0,1161578,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22754.0,2125.0 +2871918,2871919,61.0,1161579,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871919,2871920,69.0,1161579,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871920,2871921,21.0,1161579,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22750.0,2125.0 +2871921,2871922,61.0,1161580,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871922,2871923,69.0,1161580,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871923,2871924,21.0,1161580,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22751.0,2125.0 +2871924,2871925,61.0,1161581,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871925,2871926,69.0,1161581,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871926,2871927,21.0,1161581,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22751.0,2125.0 +2871927,2871928,61.0,1161582,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871928,2871929,69.0,1161582,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871929,2871930,21.0,1161582,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22754.0,2125.0 +2871930,2871931,61.0,1161583,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871931,2871932,69.0,1161583,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871932,2871933,21.0,1161583,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22751.0,2125.0 +2871933,2871934,61.0,1161584,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871934,2871935,69.0,1161584,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871935,2871936,21.0,1161584,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22754.0,2125.0 +2871936,2871937,61.0,1161585,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22753.0,2125.0 +2871937,2871938,69.0,1161585,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22753.0,2125.0 +2871938,2871939,21.0,1161585,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22753.0,2125.0 +2871939,2871940,61.0,1161586,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871940,2871941,69.0,1161586,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871941,2871942,21.0,1161586,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22754.0,2125.0 +2871942,2871943,61.0,1161587,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22753.0,2125.0 +2871943,2871944,69.0,1161587,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22753.0,2125.0 +2871944,2871945,21.0,1161587,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22753.0,2125.0 +2871945,2871946,61.0,1161588,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871946,2871947,69.0,1161588,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871947,2871948,21.0,1161588,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22751.0,2125.0 +2871948,2871949,61.0,1161589,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22752.0,2125.0 +2871949,2871950,69.0,1161589,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22752.0,2125.0 +2871950,2871951,21.0,1161589,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22752.0,2125.0 +2871951,2871952,61.0,1161590,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22749.0,2125.0 +2871952,2871953,69.0,1161590,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22749.0,2125.0 +2871953,2871954,21.0,1161590,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22749.0,2125.0 +2871954,2871955,61.0,1161591,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22752.0,2125.0 +2871955,2871956,69.0,1161591,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22752.0,2125.0 +2871956,2871957,21.0,1161591,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22752.0,2125.0 +2871957,2871958,61.0,1161592,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871958,2871959,69.0,1161592,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22750.0,2125.0 +2871959,2871960,21.0,1161592,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22750.0,2125.0 +2871960,2871961,61.0,1161593,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22749.0,2125.0 +2871961,2871962,69.0,1161593,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22749.0,2125.0 +2871962,2871963,21.0,1161593,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22749.0,2125.0 +2871963,2871964,61.0,1161594,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871964,2871965,69.0,1161594,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871965,2871966,21.0,1161594,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22751.0,2125.0 +2871966,2871967,61.0,1161595,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871967,2871968,69.0,1161595,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22754.0,2125.0 +2871968,2871969,21.0,1161595,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22754.0,2125.0 +2871969,2871970,61.0,1161596,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22753.0,2125.0 +2871970,2871971,69.0,1161596,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22753.0,2125.0 +2871971,2871972,21.0,1161596,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22753.0,2125.0 +2871972,2871973,61.0,1161597,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22752.0,2125.0 +2871973,2871974,69.0,1161597,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22752.0,2125.0 +2871974,2871975,21.0,1161597,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22752.0,2125.0 +2871975,2871976,61.0,1161598,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871976,2871977,69.0,1161598,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871977,2871978,21.0,1161598,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22751.0,2125.0 +2871978,2871979,61.0,1161599,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22749.0,2125.0 +2871979,2871980,69.0,1161599,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22749.0,2125.0 +2871980,2871981,21.0,1161599,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22749.0,2125.0 +2871981,2871982,61.0,1161600,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22752.0,2125.0 +2871982,2871983,69.0,1161600,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22752.0,2125.0 +2871983,2871984,21.0,1161600,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22752.0,2125.0 +2871984,2871985,61.0,1161601,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871985,2871986,69.0,1161601,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22751.0,2125.0 +2871986,2871987,21.0,1161601,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22751.0,2125.0 +2871987,2871988,61.0,1161602,1,2,0,1,1.0,25.0,2.0,-9.0,4.0,611M3,13.0,22752.0,2125.0 +2871988,2871989,69.0,1161602,2,1,1,1,1.0,20.0,1.0,-9.0,4.0,611M3,13.0,22752.0,2125.0 +2871989,2871990,21.0,1161602,3,1,2,1,1.0,24.0,5.0,15.0,4.0,5413,10.0,22752.0,2125.0 +2871990,2871991,53.0,1161603,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22751.0,2125.0 +2871991,2871992,33.0,1161603,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22751.0,2125.0 +2871992,2871993,19.0,1161603,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22751.0,2125.0 +2871993,2871994,15.0,1161603,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22751.0,2125.0 +2871994,2871995,48.0,1161603,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22751.0,2125.0 +2871995,2871996,53.0,1161604,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22752.0,2125.0 +2871996,2871997,33.0,1161604,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22752.0,2125.0 +2871997,2871998,19.0,1161604,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22752.0,2125.0 +2871998,2871999,15.0,1161604,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22752.0,2125.0 +2871999,2872000,48.0,1161604,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22752.0,2125.0 +2872000,2872001,53.0,1161605,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22750.0,2125.0 +2872001,2872002,33.0,1161605,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22750.0,2125.0 +2872002,2872003,19.0,1161605,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22750.0,2125.0 +2872003,2872004,15.0,1161605,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22750.0,2125.0 +2872004,2872005,48.0,1161605,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22750.0,2125.0 +2872005,2872006,53.0,1161606,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22751.0,2125.0 +2872006,2872007,33.0,1161606,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22751.0,2125.0 +2872007,2872008,19.0,1161606,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22751.0,2125.0 +2872008,2872009,15.0,1161606,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22751.0,2125.0 +2872009,2872010,48.0,1161606,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22751.0,2125.0 +2872010,2872011,53.0,1161607,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22749.0,2125.0 +2872011,2872012,33.0,1161607,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22749.0,2125.0 +2872012,2872013,19.0,1161607,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22749.0,2125.0 +2872013,2872014,15.0,1161607,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22749.0,2125.0 +2872014,2872015,48.0,1161607,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22749.0,2125.0 +2872015,2872016,53.0,1161608,1,1,0,1,1.0,45.0,1.0,-9.0,4.0,5241,9.0,22752.0,2125.0 +2872016,2872017,33.0,1161608,2,1,2,1,1.0,40.0,5.0,15.0,4.0,531M,9.0,22752.0,2125.0 +2872017,2872018,19.0,1161608,3,2,4,1,2.0,15.0,6.0,15.0,4.0,722Z,16.0,22752.0,2125.0 +2872018,2872019,15.0,1161608,4,2,4,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22752.0,2125.0 +2872019,2872020,48.0,1161608,5,2,13,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22752.0,2125.0 +2872020,2872021,55.0,1161609,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22751.0,2125.0 +2872021,2872022,55.0,1161609,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2872022,2872023,19.0,1161609,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22751.0,2125.0 +2872023,2872024,17.0,1161609,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22751.0,2125.0 +2872024,2872025,55.0,1161610,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22754.0,2125.0 +2872025,2872026,55.0,1161610,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2872026,2872027,19.0,1161610,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22754.0,2125.0 +2872027,2872028,17.0,1161610,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22754.0,2125.0 +2872028,2872029,55.0,1161611,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22750.0,2125.0 +2872029,2872030,55.0,1161611,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872030,2872031,19.0,1161611,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872031,2872032,17.0,1161611,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22750.0,2125.0 +2872032,2872033,55.0,1161612,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22751.0,2125.0 +2872033,2872034,55.0,1161612,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2872034,2872035,19.0,1161612,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22751.0,2125.0 +2872035,2872036,17.0,1161612,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22751.0,2125.0 +2872036,2872037,55.0,1161613,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22749.0,2125.0 +2872037,2872038,55.0,1161613,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22749.0,2125.0 +2872038,2872039,19.0,1161613,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22749.0,2125.0 +2872039,2872040,17.0,1161613,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22749.0,2125.0 +2872040,2872041,55.0,1161614,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22754.0,2125.0 +2872041,2872042,55.0,1161614,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2872042,2872043,19.0,1161614,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22754.0,2125.0 +2872043,2872044,17.0,1161614,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22754.0,2125.0 +2872044,2872045,55.0,1161615,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22750.0,2125.0 +2872045,2872046,55.0,1161615,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872046,2872047,19.0,1161615,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872047,2872048,17.0,1161615,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22750.0,2125.0 +2872048,2872049,55.0,1161616,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22749.0,2125.0 +2872049,2872050,55.0,1161616,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22749.0,2125.0 +2872050,2872051,19.0,1161616,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22749.0,2125.0 +2872051,2872052,17.0,1161616,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22749.0,2125.0 +2872052,2872053,55.0,1161617,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22753.0,2125.0 +2872053,2872054,55.0,1161617,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22753.0,2125.0 +2872054,2872055,19.0,1161617,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22753.0,2125.0 +2872055,2872056,17.0,1161617,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22753.0,2125.0 +2872056,2872057,55.0,1161618,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22753.0,2125.0 +2872057,2872058,55.0,1161618,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22753.0,2125.0 +2872058,2872059,19.0,1161618,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22753.0,2125.0 +2872059,2872060,17.0,1161618,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22753.0,2125.0 +2872060,2872061,55.0,1161619,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22751.0,2125.0 +2872061,2872062,55.0,1161619,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2872062,2872063,19.0,1161619,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22751.0,2125.0 +2872063,2872064,17.0,1161619,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22751.0,2125.0 +2872064,2872065,55.0,1161620,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22753.0,2125.0 +2872065,2872066,55.0,1161620,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22753.0,2125.0 +2872066,2872067,19.0,1161620,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22753.0,2125.0 +2872067,2872068,17.0,1161620,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22753.0,2125.0 +2872068,2872069,55.0,1161621,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22750.0,2125.0 +2872069,2872070,55.0,1161621,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872070,2872071,19.0,1161621,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872071,2872072,17.0,1161621,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22750.0,2125.0 +2872072,2872073,55.0,1161622,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22750.0,2125.0 +2872073,2872074,55.0,1161622,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872074,2872075,19.0,1161622,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872075,2872076,17.0,1161622,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22750.0,2125.0 +2872076,2872077,55.0,1161623,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22752.0,2125.0 +2872077,2872078,55.0,1161623,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2872078,2872079,19.0,1161623,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22752.0,2125.0 +2872079,2872080,17.0,1161623,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22752.0,2125.0 +2872080,2872081,55.0,1161624,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22754.0,2125.0 +2872081,2872082,55.0,1161624,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2872082,2872083,19.0,1161624,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22754.0,2125.0 +2872083,2872084,17.0,1161624,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22754.0,2125.0 +2872084,2872085,55.0,1161625,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22750.0,2125.0 +2872085,2872086,55.0,1161625,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872086,2872087,19.0,1161625,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872087,2872088,17.0,1161625,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22750.0,2125.0 +2872088,2872089,55.0,1161626,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22751.0,2125.0 +2872089,2872090,55.0,1161626,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22751.0,2125.0 +2872090,2872091,19.0,1161626,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22751.0,2125.0 +2872091,2872092,17.0,1161626,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22751.0,2125.0 +2872092,2872093,55.0,1161627,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22750.0,2125.0 +2872093,2872094,55.0,1161627,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872094,2872095,19.0,1161627,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872095,2872096,17.0,1161627,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22750.0,2125.0 +2872096,2872097,55.0,1161628,1,1,0,1,1.0,20.0,1.0,-9.0,4.0,4481,5.0,22754.0,2125.0 +2872097,2872098,55.0,1161628,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2872098,2872099,19.0,1161628,3,1,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22754.0,2125.0 +2872099,2872100,17.0,1161628,4,2,2,1,1.0,5.0,5.0,13.0,4.0,4481,5.0,22754.0,2125.0 +2872100,2872101,51.0,1161629,1,2,0,1,1.0,20.0,1.0,-9.0,4.0,45113,5.0,22751.0,2125.0 +2872101,2872102,52.0,1161629,2,1,1,1,1.0,50.0,1.0,-9.0,4.0,6111,13.0,22751.0,2125.0 +2872102,2872103,22.0,1161629,3,1,2,1,1.0,20.0,1.0,-9.0,4.0,44511,5.0,22751.0,2125.0 +2872103,2872104,14.0,1161629,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22751.0,2125.0 +2872104,2872105,54.0,1161630,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22750.0,2125.0 +2872105,2872106,58.0,1161630,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22750.0,2125.0 +2872106,2872107,19.0,1161630,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22750.0,2125.0 +2872107,2872108,15.0,1161630,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22750.0,2125.0 +2872108,2872109,54.0,1161631,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22751.0,2125.0 +2872109,2872110,58.0,1161631,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22751.0,2125.0 +2872110,2872111,19.0,1161631,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22751.0,2125.0 +2872111,2872112,15.0,1161631,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22751.0,2125.0 +2872112,2872113,54.0,1161632,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22754.0,2125.0 +2872113,2872114,58.0,1161632,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22754.0,2125.0 +2872114,2872115,19.0,1161632,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22754.0,2125.0 +2872115,2872116,15.0,1161632,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22754.0,2125.0 +2872116,2872117,54.0,1161633,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22754.0,2125.0 +2872117,2872118,58.0,1161633,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22754.0,2125.0 +2872118,2872119,19.0,1161633,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22754.0,2125.0 +2872119,2872120,15.0,1161633,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22754.0,2125.0 +2872120,2872121,54.0,1161634,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22753.0,2125.0 +2872121,2872122,58.0,1161634,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872122,2872123,19.0,1161634,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22753.0,2125.0 +2872123,2872124,15.0,1161634,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22753.0,2125.0 +2872124,2872125,54.0,1161635,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22753.0,2125.0 +2872125,2872126,58.0,1161635,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872126,2872127,19.0,1161635,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22753.0,2125.0 +2872127,2872128,15.0,1161635,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22753.0,2125.0 +2872128,2872129,54.0,1161636,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22750.0,2125.0 +2872129,2872130,58.0,1161636,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22750.0,2125.0 +2872130,2872131,19.0,1161636,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22750.0,2125.0 +2872131,2872132,15.0,1161636,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22750.0,2125.0 +2872132,2872133,54.0,1161637,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22749.0,2125.0 +2872133,2872134,58.0,1161637,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22749.0,2125.0 +2872134,2872135,19.0,1161637,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22749.0,2125.0 +2872135,2872136,15.0,1161637,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22749.0,2125.0 +2872136,2872137,54.0,1161638,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22753.0,2125.0 +2872137,2872138,58.0,1161638,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872138,2872139,19.0,1161638,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22753.0,2125.0 +2872139,2872140,15.0,1161638,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22753.0,2125.0 +2872140,2872141,54.0,1161639,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22753.0,2125.0 +2872141,2872142,58.0,1161639,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872142,2872143,19.0,1161639,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22753.0,2125.0 +2872143,2872144,15.0,1161639,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22753.0,2125.0 +2872144,2872145,54.0,1161640,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22753.0,2125.0 +2872145,2872146,58.0,1161640,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872146,2872147,19.0,1161640,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22753.0,2125.0 +2872147,2872148,15.0,1161640,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22753.0,2125.0 +2872148,2872149,54.0,1161641,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22754.0,2125.0 +2872149,2872150,58.0,1161641,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22754.0,2125.0 +2872150,2872151,19.0,1161641,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22754.0,2125.0 +2872151,2872152,15.0,1161641,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22754.0,2125.0 +2872152,2872153,54.0,1161642,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22749.0,2125.0 +2872153,2872154,58.0,1161642,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22749.0,2125.0 +2872154,2872155,19.0,1161642,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22749.0,2125.0 +2872155,2872156,15.0,1161642,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22749.0,2125.0 +2872156,2872157,54.0,1161643,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22754.0,2125.0 +2872157,2872158,58.0,1161643,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22754.0,2125.0 +2872158,2872159,19.0,1161643,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22754.0,2125.0 +2872159,2872160,15.0,1161643,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22754.0,2125.0 +2872160,2872161,54.0,1161644,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22752.0,2125.0 +2872161,2872162,58.0,1161644,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22752.0,2125.0 +2872162,2872163,19.0,1161644,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22752.0,2125.0 +2872163,2872164,15.0,1161644,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22752.0,2125.0 +2872164,2872165,54.0,1161645,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22754.0,2125.0 +2872165,2872166,58.0,1161645,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22754.0,2125.0 +2872166,2872167,19.0,1161645,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22754.0,2125.0 +2872167,2872168,15.0,1161645,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22754.0,2125.0 +2872168,2872169,54.0,1161646,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22753.0,2125.0 +2872169,2872170,58.0,1161646,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872170,2872171,19.0,1161646,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22753.0,2125.0 +2872171,2872172,15.0,1161646,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22753.0,2125.0 +2872172,2872173,54.0,1161647,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22749.0,2125.0 +2872173,2872174,58.0,1161647,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22749.0,2125.0 +2872174,2872175,19.0,1161647,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22749.0,2125.0 +2872175,2872176,15.0,1161647,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22749.0,2125.0 +2872176,2872177,54.0,1161648,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22752.0,2125.0 +2872177,2872178,58.0,1161648,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22752.0,2125.0 +2872178,2872179,19.0,1161648,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22752.0,2125.0 +2872179,2872180,15.0,1161648,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22752.0,2125.0 +2872180,2872181,54.0,1161649,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22750.0,2125.0 +2872181,2872182,58.0,1161649,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22750.0,2125.0 +2872182,2872183,19.0,1161649,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22750.0,2125.0 +2872183,2872184,15.0,1161649,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22750.0,2125.0 +2872184,2872185,54.0,1161650,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22749.0,2125.0 +2872185,2872186,58.0,1161650,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22749.0,2125.0 +2872186,2872187,19.0,1161650,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22749.0,2125.0 +2872187,2872188,15.0,1161650,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22749.0,2125.0 +2872188,2872189,54.0,1161651,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22752.0,2125.0 +2872189,2872190,58.0,1161651,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22752.0,2125.0 +2872190,2872191,19.0,1161651,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22752.0,2125.0 +2872191,2872192,15.0,1161651,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22752.0,2125.0 +2872192,2872193,54.0,1161652,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22752.0,2125.0 +2872193,2872194,58.0,1161652,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22752.0,2125.0 +2872194,2872195,19.0,1161652,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22752.0,2125.0 +2872195,2872196,15.0,1161652,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22752.0,2125.0 +2872196,2872197,54.0,1161653,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22754.0,2125.0 +2872197,2872198,58.0,1161653,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22754.0,2125.0 +2872198,2872199,19.0,1161653,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22754.0,2125.0 +2872199,2872200,15.0,1161653,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22754.0,2125.0 +2872200,2872201,54.0,1161654,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,4411,5.0,22751.0,2125.0 +2872201,2872202,58.0,1161654,2,2,1,1,3.0,15.0,4.0,-9.0,4.0,6111,13.0,22751.0,2125.0 +2872202,2872203,19.0,1161654,3,2,2,1,1.0,25.0,2.0,-9.0,4.0,44511,5.0,22751.0,2125.0 +2872203,2872204,15.0,1161654,4,1,2,1,-9.0,-9.0,-9.0,11.0,-9.0,-9,0.0,22751.0,2125.0 +2872204,2872205,45.0,1161655,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22750.0,2125.0 +2872205,2872206,40.0,1161655,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872206,2872207,21.0,1161655,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22750.0,2125.0 +2872207,2872208,20.0,1161655,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872208,2872209,16.0,1161655,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22750.0,2125.0 +2872209,2872210,45.0,1161656,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22752.0,2125.0 +2872210,2872211,40.0,1161656,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2872211,2872212,21.0,1161656,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22752.0,2125.0 +2872212,2872213,20.0,1161656,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22752.0,2125.0 +2872213,2872214,16.0,1161656,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22752.0,2125.0 +2872214,2872215,45.0,1161657,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22750.0,2125.0 +2872215,2872216,40.0,1161657,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872216,2872217,21.0,1161657,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22750.0,2125.0 +2872217,2872218,20.0,1161657,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872218,2872219,16.0,1161657,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22750.0,2125.0 +2872219,2872220,45.0,1161658,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22750.0,2125.0 +2872220,2872221,40.0,1161658,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872221,2872222,21.0,1161658,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22750.0,2125.0 +2872222,2872223,20.0,1161658,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872223,2872224,16.0,1161658,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22750.0,2125.0 +2872224,2872225,45.0,1161659,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22750.0,2125.0 +2872225,2872226,40.0,1161659,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872226,2872227,21.0,1161659,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22750.0,2125.0 +2872227,2872228,20.0,1161659,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872228,2872229,16.0,1161659,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22750.0,2125.0 +2872229,2872230,45.0,1161660,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22753.0,2125.0 +2872230,2872231,40.0,1161660,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22753.0,2125.0 +2872231,2872232,21.0,1161660,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22753.0,2125.0 +2872232,2872233,20.0,1161660,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22753.0,2125.0 +2872233,2872234,16.0,1161660,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22753.0,2125.0 +2872234,2872235,45.0,1161661,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22750.0,2125.0 +2872235,2872236,40.0,1161661,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872236,2872237,21.0,1161661,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22750.0,2125.0 +2872237,2872238,20.0,1161661,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872238,2872239,16.0,1161661,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22750.0,2125.0 +2872239,2872240,45.0,1161662,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22749.0,2125.0 +2872240,2872241,40.0,1161662,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22749.0,2125.0 +2872241,2872242,21.0,1161662,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22749.0,2125.0 +2872242,2872243,20.0,1161662,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22749.0,2125.0 +2872243,2872244,16.0,1161662,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22749.0,2125.0 +2872244,2872245,45.0,1161663,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22750.0,2125.0 +2872245,2872246,40.0,1161663,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872246,2872247,21.0,1161663,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22750.0,2125.0 +2872247,2872248,20.0,1161663,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872248,2872249,16.0,1161663,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22750.0,2125.0 +2872249,2872250,45.0,1161664,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22752.0,2125.0 +2872250,2872251,40.0,1161664,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22752.0,2125.0 +2872251,2872252,21.0,1161664,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22752.0,2125.0 +2872252,2872253,20.0,1161664,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22752.0,2125.0 +2872253,2872254,16.0,1161664,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22752.0,2125.0 +2872254,2872255,45.0,1161665,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22750.0,2125.0 +2872255,2872256,40.0,1161665,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872256,2872257,21.0,1161665,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22750.0,2125.0 +2872257,2872258,20.0,1161665,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872258,2872259,16.0,1161665,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22750.0,2125.0 +2872259,2872260,45.0,1161666,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22753.0,2125.0 +2872260,2872261,40.0,1161666,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22753.0,2125.0 +2872261,2872262,21.0,1161666,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22753.0,2125.0 +2872262,2872263,20.0,1161666,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22753.0,2125.0 +2872263,2872264,16.0,1161666,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22753.0,2125.0 +2872264,2872265,45.0,1161667,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22754.0,2125.0 +2872265,2872266,40.0,1161667,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2872266,2872267,21.0,1161667,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22754.0,2125.0 +2872267,2872268,20.0,1161667,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22754.0,2125.0 +2872268,2872269,16.0,1161667,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22754.0,2125.0 +2872269,2872270,45.0,1161668,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22753.0,2125.0 +2872270,2872271,40.0,1161668,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22753.0,2125.0 +2872271,2872272,21.0,1161668,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22753.0,2125.0 +2872272,2872273,20.0,1161668,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22753.0,2125.0 +2872273,2872274,16.0,1161668,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22753.0,2125.0 +2872274,2872275,45.0,1161669,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22749.0,2125.0 +2872275,2872276,40.0,1161669,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22749.0,2125.0 +2872276,2872277,21.0,1161669,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22749.0,2125.0 +2872277,2872278,20.0,1161669,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22749.0,2125.0 +2872278,2872279,16.0,1161669,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22749.0,2125.0 +2872279,2872280,45.0,1161670,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22754.0,2125.0 +2872280,2872281,40.0,1161670,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2872281,2872282,21.0,1161670,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22754.0,2125.0 +2872282,2872283,20.0,1161670,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22754.0,2125.0 +2872283,2872284,16.0,1161670,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22754.0,2125.0 +2872284,2872285,45.0,1161671,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22749.0,2125.0 +2872285,2872286,40.0,1161671,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22749.0,2125.0 +2872286,2872287,21.0,1161671,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22749.0,2125.0 +2872287,2872288,20.0,1161671,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22749.0,2125.0 +2872288,2872289,16.0,1161671,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22749.0,2125.0 +2872289,2872290,45.0,1161672,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22754.0,2125.0 +2872290,2872291,40.0,1161672,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2872291,2872292,21.0,1161672,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22754.0,2125.0 +2872292,2872293,20.0,1161672,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22754.0,2125.0 +2872293,2872294,16.0,1161672,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22754.0,2125.0 +2872294,2872295,45.0,1161673,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22754.0,2125.0 +2872295,2872296,40.0,1161673,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22754.0,2125.0 +2872296,2872297,21.0,1161673,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22754.0,2125.0 +2872297,2872298,20.0,1161673,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22754.0,2125.0 +2872298,2872299,16.0,1161673,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22754.0,2125.0 +2872299,2872300,45.0,1161674,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22750.0,2125.0 +2872300,2872301,40.0,1161674,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22750.0,2125.0 +2872301,2872302,21.0,1161674,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22750.0,2125.0 +2872302,2872303,20.0,1161674,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22750.0,2125.0 +2872303,2872304,16.0,1161674,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22750.0,2125.0 +2872304,2872305,26.0,1161675,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22752.0,2125.0 +2872305,2872306,24.0,1161675,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22752.0,2125.0 +2872306,2872307,27.0,1161676,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2872307,2872308,27.0,1161677,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22754.0,2125.0 +2872308,2872309,31.0,1161678,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22753.0,2125.0 +2872309,2872310,24.0,1161678,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22753.0,2125.0 +2872310,2872311,31.0,1161679,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22752.0,2125.0 +2872311,2872312,24.0,1161679,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22752.0,2125.0 +2872312,2872313,31.0,1161680,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22754.0,2125.0 +2872313,2872314,24.0,1161680,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22754.0,2125.0 +2872314,2872315,31.0,1161681,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22754.0,2125.0 +2872315,2872316,24.0,1161681,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22754.0,2125.0 +2872316,2872317,31.0,1161682,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22749.0,2125.0 +2872317,2872318,24.0,1161682,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22749.0,2125.0 +2872318,2872319,31.0,1161683,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22753.0,2125.0 +2872319,2872320,24.0,1161683,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22753.0,2125.0 +2872320,2872321,31.0,1161684,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22750.0,2125.0 +2872321,2872322,24.0,1161684,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22750.0,2125.0 +2872322,2872323,31.0,1161685,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22749.0,2125.0 +2872323,2872324,24.0,1161685,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22749.0,2125.0 +2872324,2872325,31.0,1161686,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22750.0,2125.0 +2872325,2872326,24.0,1161686,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22750.0,2125.0 +2872326,2872327,31.0,1161687,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22753.0,2125.0 +2872327,2872328,24.0,1161687,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22753.0,2125.0 +2872328,2872329,31.0,1161688,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22753.0,2125.0 +2872329,2872330,24.0,1161688,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22753.0,2125.0 +2872330,2872331,31.0,1161689,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22754.0,2125.0 +2872331,2872332,24.0,1161689,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22754.0,2125.0 +2872332,2872333,31.0,1161690,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22749.0,2125.0 +2872333,2872334,24.0,1161690,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22749.0,2125.0 +2872334,2872335,31.0,1161691,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22752.0,2125.0 +2872335,2872336,24.0,1161691,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22752.0,2125.0 +2872336,2872337,31.0,1161692,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22753.0,2125.0 +2872337,2872338,24.0,1161692,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22753.0,2125.0 +2872338,2872339,31.0,1161693,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22751.0,2125.0 +2872339,2872340,24.0,1161693,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22751.0,2125.0 +2872340,2872341,31.0,1161694,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22752.0,2125.0 +2872341,2872342,24.0,1161694,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22752.0,2125.0 +2872342,2872343,31.0,1161695,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22750.0,2125.0 +2872343,2872344,24.0,1161695,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22750.0,2125.0 +2872344,2872345,31.0,1161696,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22749.0,2125.0 +2872345,2872346,24.0,1161696,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22749.0,2125.0 +2872346,2872347,31.0,1161697,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22754.0,2125.0 +2872347,2872348,24.0,1161697,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22754.0,2125.0 +2872348,2872349,31.0,1161698,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22750.0,2125.0 +2872349,2872350,24.0,1161698,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22750.0,2125.0 +2872350,2872351,27.0,1161699,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22750.0,2125.0 +2872351,2872352,23.0,1161699,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22750.0,2125.0 +2872352,2872353,27.0,1161700,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872353,2872354,23.0,1161700,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872354,2872355,27.0,1161701,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22749.0,2125.0 +2872355,2872356,23.0,1161701,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22749.0,2125.0 +2872356,2872357,27.0,1161702,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22750.0,2125.0 +2872357,2872358,23.0,1161702,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22750.0,2125.0 +2872358,2872359,27.0,1161703,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872359,2872360,23.0,1161703,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872360,2872361,27.0,1161704,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22751.0,2125.0 +2872361,2872362,23.0,1161704,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22751.0,2125.0 +2872362,2872363,27.0,1161705,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22751.0,2125.0 +2872363,2872364,23.0,1161705,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22751.0,2125.0 +2872364,2872365,27.0,1161706,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872365,2872366,23.0,1161706,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872366,2872367,27.0,1161707,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872367,2872368,23.0,1161707,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872368,2872369,27.0,1161708,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872369,2872370,23.0,1161708,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872370,2872371,27.0,1161709,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22751.0,2125.0 +2872371,2872372,23.0,1161709,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22751.0,2125.0 +2872372,2872373,27.0,1161710,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22754.0,2125.0 +2872373,2872374,23.0,1161710,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22754.0,2125.0 +2872374,2872375,27.0,1161711,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872375,2872376,23.0,1161711,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872376,2872377,27.0,1161712,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22750.0,2125.0 +2872377,2872378,23.0,1161712,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22750.0,2125.0 +2872378,2872379,27.0,1161713,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22750.0,2125.0 +2872379,2872380,23.0,1161713,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22750.0,2125.0 +2872380,2872381,27.0,1161714,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872381,2872382,23.0,1161714,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872382,2872383,27.0,1161715,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22749.0,2125.0 +2872383,2872384,23.0,1161715,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22749.0,2125.0 +2872384,2872385,27.0,1161716,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22751.0,2125.0 +2872385,2872386,23.0,1161716,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22751.0,2125.0 +2872386,2872387,27.0,1161717,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22754.0,2125.0 +2872387,2872388,23.0,1161717,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22754.0,2125.0 +2872388,2872389,27.0,1161718,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872389,2872390,23.0,1161718,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872390,2872391,27.0,1161719,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22754.0,2125.0 +2872391,2872392,23.0,1161719,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22754.0,2125.0 +2872392,2872393,27.0,1161720,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22751.0,2125.0 +2872393,2872394,23.0,1161720,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22751.0,2125.0 +2872394,2872395,27.0,1161721,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872395,2872396,23.0,1161721,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872396,2872397,27.0,1161722,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872397,2872398,23.0,1161722,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872398,2872399,27.0,1161723,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22754.0,2125.0 +2872399,2872400,23.0,1161723,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22754.0,2125.0 +2872400,2872401,27.0,1161724,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22753.0,2125.0 +2872401,2872402,23.0,1161724,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22753.0,2125.0 +2872402,2872403,27.0,1161725,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22754.0,2125.0 +2872403,2872404,23.0,1161725,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22754.0,2125.0 +2872404,2872405,27.0,1161726,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872405,2872406,23.0,1161726,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872406,2872407,27.0,1161727,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22750.0,2125.0 +2872407,2872408,23.0,1161727,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22750.0,2125.0 +2872408,2872409,27.0,1161728,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872409,2872410,23.0,1161728,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872410,2872411,27.0,1161729,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22749.0,2125.0 +2872411,2872412,23.0,1161729,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22749.0,2125.0 +2872412,2872413,27.0,1161730,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22753.0,2125.0 +2872413,2872414,23.0,1161730,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22753.0,2125.0 +2872414,2872415,27.0,1161731,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22753.0,2125.0 +2872415,2872416,23.0,1161731,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22753.0,2125.0 +2872416,2872417,27.0,1161732,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22753.0,2125.0 +2872417,2872418,23.0,1161732,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22753.0,2125.0 +2872418,2872419,27.0,1161733,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22753.0,2125.0 +2872419,2872420,23.0,1161733,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22753.0,2125.0 +2872420,2872421,27.0,1161734,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22749.0,2125.0 +2872421,2872422,23.0,1161734,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22749.0,2125.0 +2872422,2872423,27.0,1161735,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22750.0,2125.0 +2872423,2872424,23.0,1161735,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22750.0,2125.0 +2872424,2872425,27.0,1161736,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22749.0,2125.0 +2872425,2872426,23.0,1161736,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22749.0,2125.0 +2872426,2872427,27.0,1161737,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22751.0,2125.0 +2872427,2872428,23.0,1161737,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22751.0,2125.0 +2872428,2872429,27.0,1161738,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22751.0,2125.0 +2872429,2872430,23.0,1161738,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22751.0,2125.0 +2872430,2872431,27.0,1161739,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22750.0,2125.0 +2872431,2872432,23.0,1161739,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22750.0,2125.0 +2872432,2872433,27.0,1161740,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22754.0,2125.0 +2872433,2872434,23.0,1161740,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22754.0,2125.0 +2872434,2872435,27.0,1161741,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22752.0,2125.0 +2872435,2872436,23.0,1161741,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22752.0,2125.0 +2872436,2872437,27.0,1161742,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22754.0,2125.0 +2872437,2872438,23.0,1161742,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22754.0,2125.0 +2872438,2872439,27.0,1161743,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22750.0,2125.0 +2872439,2872440,23.0,1161743,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22750.0,2125.0 +2872440,2872441,27.0,1161744,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22750.0,2125.0 +2872441,2872442,23.0,1161744,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22750.0,2125.0 +2872442,2872443,27.0,1161745,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22754.0,2125.0 +2872443,2872444,23.0,1161745,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22754.0,2125.0 +2872444,2872445,27.0,1161746,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22750.0,2125.0 +2872445,2872446,23.0,1161746,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22750.0,2125.0 +2872446,2872447,31.0,1161747,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2872447,2872448,24.0,1161747,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22751.0,2125.0 +2872448,2872449,31.0,1161748,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2872449,2872450,24.0,1161748,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22750.0,2125.0 +2872450,2872451,31.0,1161749,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22754.0,2125.0 +2872451,2872452,24.0,1161749,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22754.0,2125.0 +2872452,2872453,31.0,1161750,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2872453,2872454,24.0,1161750,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22750.0,2125.0 +2872454,2872455,31.0,1161751,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22753.0,2125.0 +2872455,2872456,24.0,1161751,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872456,2872457,31.0,1161752,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2872457,2872458,24.0,1161752,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22751.0,2125.0 +2872458,2872459,31.0,1161753,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2872459,2872460,24.0,1161753,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22752.0,2125.0 +2872460,2872461,31.0,1161754,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22753.0,2125.0 +2872461,2872462,24.0,1161754,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872462,2872463,31.0,1161755,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22754.0,2125.0 +2872463,2872464,24.0,1161755,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22754.0,2125.0 +2872464,2872465,31.0,1161756,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2872465,2872466,24.0,1161756,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22751.0,2125.0 +2872466,2872467,31.0,1161757,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22753.0,2125.0 +2872467,2872468,24.0,1161757,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872468,2872469,31.0,1161758,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2872469,2872470,24.0,1161758,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22752.0,2125.0 +2872470,2872471,31.0,1161759,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22754.0,2125.0 +2872471,2872472,24.0,1161759,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22754.0,2125.0 +2872472,2872473,31.0,1161760,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22753.0,2125.0 +2872473,2872474,24.0,1161760,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872474,2872475,31.0,1161761,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22749.0,2125.0 +2872475,2872476,24.0,1161761,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22749.0,2125.0 +2872476,2872477,31.0,1161762,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2872477,2872478,24.0,1161762,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22752.0,2125.0 +2872478,2872479,31.0,1161763,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22753.0,2125.0 +2872479,2872480,24.0,1161763,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872480,2872481,31.0,1161764,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2872481,2872482,24.0,1161764,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22751.0,2125.0 +2872482,2872483,31.0,1161765,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2872483,2872484,24.0,1161765,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22751.0,2125.0 +2872484,2872485,31.0,1161766,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2872485,2872486,24.0,1161766,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22750.0,2125.0 +2872486,2872487,31.0,1161767,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2872487,2872488,24.0,1161767,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22750.0,2125.0 +2872488,2872489,31.0,1161768,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22753.0,2125.0 +2872489,2872490,24.0,1161768,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22753.0,2125.0 +2872490,2872491,31.0,1161769,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2872491,2872492,24.0,1161769,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22750.0,2125.0 +2872492,2872493,20.0,1161770,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22751.0,2125.0 +2872493,2872494,23.0,1161771,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22753.0,2125.0 +2872494,2872495,26.0,1161771,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22753.0,2125.0 +2872495,2872496,23.0,1161772,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2872496,2872497,26.0,1161772,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2872497,2872498,23.0,1161773,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2872498,2872499,26.0,1161773,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2872499,2872500,23.0,1161774,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22751.0,2125.0 +2872500,2872501,26.0,1161774,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22751.0,2125.0 +2872501,2872502,23.0,1161775,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2872502,2872503,26.0,1161775,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2872503,2872504,23.0,1161776,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22749.0,2125.0 +2872504,2872505,26.0,1161776,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22749.0,2125.0 +2872505,2872506,23.0,1161777,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22754.0,2125.0 +2872506,2872507,26.0,1161777,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22754.0,2125.0 +2872507,2872508,23.0,1161778,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2872508,2872509,26.0,1161778,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2872509,2872510,23.0,1161779,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22749.0,2125.0 +2872510,2872511,26.0,1161779,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22749.0,2125.0 +2872511,2872512,23.0,1161780,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2872512,2872513,26.0,1161780,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2872513,2872514,23.0,1161781,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2872514,2872515,26.0,1161781,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2872515,2872516,23.0,1161782,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22754.0,2125.0 +2872516,2872517,26.0,1161782,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22754.0,2125.0 +2872517,2872518,23.0,1161783,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22749.0,2125.0 +2872518,2872519,26.0,1161783,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22749.0,2125.0 +2872519,2872520,23.0,1161784,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22752.0,2125.0 +2872520,2872521,26.0,1161784,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22752.0,2125.0 +2872521,2872522,23.0,1161785,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2872522,2872523,26.0,1161785,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2872523,2872524,23.0,1161786,1,2,0,1,1.0,47.0,1.0,-9.0,4.0,611M1,13.0,22750.0,2125.0 +2872524,2872525,26.0,1161786,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22750.0,2125.0 +2872525,2872526,75.0,1161787,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872526,2872527,75.0,1161788,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22756.0,2126.0 +2872527,2872528,75.0,1161789,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872528,2872529,75.0,1161790,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872529,2872530,80.0,1161791,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872530,2872531,72.0,1161792,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872531,2872532,72.0,1161793,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872532,2872533,80.0,1161794,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872533,2872534,80.0,1161795,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872534,2872535,72.0,1161796,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872535,2872536,79.0,1161797,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872536,2872537,52.0,1161797,2,2,2,2,1.0,40.0,1.0,-9.0,2.0,923,18.0,22755.0,2126.0 +2872537,2872538,22.0,1161797,3,2,7,2,1.0,12.0,5.0,-9.0,4.0,6213ZM,14.0,22755.0,2126.0 +2872538,2872539,19.0,1161797,4,1,7,2,1.0,10.0,6.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872539,2872540,79.0,1161798,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872540,2872541,52.0,1161798,2,2,2,2,1.0,40.0,1.0,-9.0,2.0,923,18.0,22755.0,2126.0 +2872541,2872542,22.0,1161798,3,2,7,2,1.0,12.0,5.0,-9.0,4.0,6213ZM,14.0,22755.0,2126.0 +2872542,2872543,19.0,1161798,4,1,7,2,1.0,10.0,6.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872543,2872544,79.0,1161799,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22756.0,2126.0 +2872544,2872545,52.0,1161799,2,2,2,2,1.0,40.0,1.0,-9.0,2.0,923,18.0,22756.0,2126.0 +2872545,2872546,22.0,1161799,3,2,7,2,1.0,12.0,5.0,-9.0,4.0,6213ZM,14.0,22756.0,2126.0 +2872546,2872547,19.0,1161799,4,1,7,2,1.0,10.0,6.0,15.0,4.0,722Z,16.0,22756.0,2126.0 +2872547,2872548,79.0,1161800,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872548,2872549,52.0,1161800,2,2,2,2,1.0,40.0,1.0,-9.0,2.0,923,18.0,22755.0,2126.0 +2872549,2872550,22.0,1161800,3,2,7,2,1.0,12.0,5.0,-9.0,4.0,6213ZM,14.0,22755.0,2126.0 +2872550,2872551,19.0,1161800,4,1,7,2,1.0,10.0,6.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872551,2872552,79.0,1161801,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872552,2872553,52.0,1161801,2,2,2,2,1.0,40.0,1.0,-9.0,2.0,923,18.0,22755.0,2126.0 +2872553,2872554,22.0,1161801,3,2,7,2,1.0,12.0,5.0,-9.0,4.0,6213ZM,14.0,22755.0,2126.0 +2872554,2872555,19.0,1161801,4,1,7,2,1.0,10.0,6.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872555,2872556,79.0,1161802,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872556,2872557,52.0,1161802,2,2,2,2,1.0,40.0,1.0,-9.0,2.0,923,18.0,22755.0,2126.0 +2872557,2872558,22.0,1161802,3,2,7,2,1.0,12.0,5.0,-9.0,4.0,6213ZM,14.0,22755.0,2126.0 +2872558,2872559,19.0,1161802,4,1,7,2,1.0,10.0,6.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872559,2872560,66.0,1161803,1,2,0,1,1.0,50.0,3.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872560,2872561,66.0,1161804,1,2,0,1,1.0,50.0,3.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872561,2872562,65.0,1161805,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872562,2872563,65.0,1161806,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872563,2872564,66.0,1161807,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2872564,2872565,65.0,1161808,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872565,2872566,66.0,1161809,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2872566,2872567,66.0,1161810,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2872567,2872568,66.0,1161811,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872568,2872569,66.0,1161812,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872569,2872570,66.0,1161813,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872570,2872571,66.0,1161814,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2872571,2872572,66.0,1161815,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872572,2872573,65.0,1161816,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872573,2872574,66.0,1161817,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872574,2872575,66.0,1161818,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2872575,2872576,66.0,1161819,1,2,0,1,1.0,40.0,2.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872576,2872577,66.0,1161820,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2872577,2872578,66.0,1161821,1,2,0,1,1.0,36.0,1.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2872578,2872579,88.0,1161822,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872579,2872580,82.0,1161823,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872580,2872581,67.0,1161824,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872581,2872582,88.0,1161825,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872582,2872583,67.0,1161826,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872583,2872584,80.0,1161827,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872584,2872585,80.0,1161828,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872585,2872586,80.0,1161829,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872586,2872587,79.0,1161830,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872587,2872588,76.0,1161831,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872588,2872589,94.0,1161832,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872589,2872590,79.0,1161833,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872590,2872591,67.0,1161834,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872591,2872592,76.0,1161835,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872592,2872593,88.0,1161836,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872593,2872594,79.0,1161837,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872594,2872595,80.0,1161838,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872595,2872596,80.0,1161839,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872596,2872597,80.0,1161840,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872597,2872598,82.0,1161841,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872598,2872599,80.0,1161842,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872599,2872600,82.0,1161843,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872600,2872601,94.0,1161844,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872601,2872602,79.0,1161845,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872602,2872603,67.0,1161846,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872603,2872604,80.0,1161847,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22756.0,2126.0 +2872604,2872605,80.0,1161848,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872605,2872606,80.0,1161849,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872606,2872607,80.0,1161850,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872607,2872608,79.0,1161851,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872608,2872609,79.0,1161852,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872609,2872610,69.0,1161853,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872610,2872611,88.0,1161854,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872611,2872612,69.0,1161855,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872612,2872613,94.0,1161856,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872613,2872614,67.0,1161857,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872614,2872615,79.0,1161858,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872615,2872616,80.0,1161859,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872616,2872617,67.0,1161860,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872617,2872618,94.0,1161861,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872618,2872619,94.0,1161862,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872619,2872620,88.0,1161863,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872620,2872621,80.0,1161864,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872621,2872622,69.0,1161865,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872622,2872623,80.0,1161866,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872623,2872624,80.0,1161867,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872624,2872625,80.0,1161868,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872625,2872626,76.0,1161869,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872626,2872627,80.0,1161870,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872627,2872628,80.0,1161871,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872628,2872629,80.0,1161872,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872629,2872630,88.0,1161873,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872630,2872631,80.0,1161874,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872631,2872632,69.0,1161875,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872632,2872633,79.0,1161876,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872633,2872634,79.0,1161877,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872634,2872635,94.0,1161878,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872635,2872636,80.0,1161879,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872636,2872637,69.0,1161880,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872637,2872638,80.0,1161881,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872638,2872639,67.0,1161882,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872639,2872640,67.0,1161883,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872640,2872641,67.0,1161884,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872641,2872642,80.0,1161885,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22756.0,2126.0 +2872642,2872643,79.0,1161886,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872643,2872644,76.0,1161887,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872644,2872645,79.0,1161888,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872645,2872646,79.0,1161889,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872646,2872647,67.0,1161890,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872647,2872648,79.0,1161891,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872648,2872649,94.0,1161892,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872649,2872650,80.0,1161893,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872650,2872651,67.0,1161894,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872651,2872652,80.0,1161895,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872652,2872653,67.0,1161896,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872653,2872654,79.0,1161897,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872654,2872655,80.0,1161898,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872655,2872656,65.0,1161899,1,2,0,1,1.0,35.0,3.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2872656,2872657,75.0,1161900,1,2,0,1,1.0,30.0,1.0,-9.0,4.0,531M,9.0,22755.0,2126.0 +2872657,2872658,75.0,1161901,1,2,0,1,2.0,40.0,4.0,-9.0,4.0,6231,14.0,22755.0,2126.0 +2872658,2872659,65.0,1161902,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872659,2872660,75.0,1161903,1,2,0,1,2.0,40.0,4.0,-9.0,4.0,6231,14.0,22755.0,2126.0 +2872660,2872661,65.0,1161904,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872661,2872662,81.0,1161905,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872662,2872663,87.0,1161906,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872663,2872664,79.0,1161907,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872664,2872665,76.0,1161908,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22756.0,2126.0 +2872665,2872666,89.0,1161909,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872666,2872667,74.0,1161910,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872667,2872668,71.0,1161911,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2872668,2872669,45.0,1161912,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872669,2872670,28.0,1161912,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872670,2872671,23.0,1161912,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872671,2872672,4.0,1161912,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872672,2872673,4.0,1161912,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872673,2872674,2.0,1161912,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872674,2872675,45.0,1161913,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872675,2872676,28.0,1161913,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872676,2872677,23.0,1161913,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872677,2872678,4.0,1161913,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872678,2872679,4.0,1161913,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872679,2872680,2.0,1161913,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872680,2872681,45.0,1161914,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872681,2872682,28.0,1161914,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872682,2872683,23.0,1161914,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872683,2872684,4.0,1161914,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872684,2872685,4.0,1161914,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872685,2872686,2.0,1161914,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872686,2872687,45.0,1161915,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872687,2872688,28.0,1161915,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872688,2872689,23.0,1161915,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872689,2872690,4.0,1161915,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872690,2872691,4.0,1161915,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872691,2872692,2.0,1161915,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872692,2872693,45.0,1161916,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872693,2872694,28.0,1161916,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872694,2872695,23.0,1161916,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872695,2872696,4.0,1161916,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872696,2872697,4.0,1161916,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872697,2872698,2.0,1161916,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872698,2872699,45.0,1161917,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872699,2872700,28.0,1161917,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872700,2872701,23.0,1161917,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872701,2872702,4.0,1161917,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872702,2872703,4.0,1161917,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872703,2872704,2.0,1161917,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872704,2872705,45.0,1161918,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872705,2872706,28.0,1161918,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872706,2872707,23.0,1161918,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872707,2872708,4.0,1161918,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872708,2872709,4.0,1161918,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872709,2872710,2.0,1161918,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872710,2872711,45.0,1161919,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872711,2872712,28.0,1161919,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872712,2872713,23.0,1161919,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872713,2872714,4.0,1161919,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872714,2872715,4.0,1161919,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872715,2872716,2.0,1161919,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872716,2872717,45.0,1161920,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872717,2872718,28.0,1161920,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872718,2872719,23.0,1161920,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872719,2872720,4.0,1161920,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872720,2872721,4.0,1161920,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872721,2872722,2.0,1161920,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872722,2872723,45.0,1161921,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872723,2872724,28.0,1161921,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872724,2872725,23.0,1161921,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872725,2872726,4.0,1161921,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872726,2872727,4.0,1161921,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872727,2872728,2.0,1161921,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872728,2872729,45.0,1161922,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872729,2872730,28.0,1161922,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872730,2872731,23.0,1161922,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872731,2872732,4.0,1161922,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872732,2872733,4.0,1161922,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872733,2872734,2.0,1161922,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872734,2872735,45.0,1161923,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872735,2872736,28.0,1161923,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872736,2872737,23.0,1161923,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872737,2872738,4.0,1161923,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872738,2872739,4.0,1161923,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872739,2872740,2.0,1161923,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872740,2872741,45.0,1161924,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872741,2872742,28.0,1161924,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872742,2872743,23.0,1161924,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872743,2872744,4.0,1161924,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872744,2872745,4.0,1161924,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872745,2872746,2.0,1161924,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872746,2872747,45.0,1161925,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872747,2872748,28.0,1161925,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872748,2872749,23.0,1161925,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872749,2872750,4.0,1161925,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872750,2872751,4.0,1161925,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872751,2872752,2.0,1161925,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872752,2872753,45.0,1161926,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872753,2872754,28.0,1161926,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872754,2872755,23.0,1161926,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872755,2872756,4.0,1161926,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872756,2872757,4.0,1161926,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872757,2872758,2.0,1161926,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872758,2872759,45.0,1161927,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872759,2872760,28.0,1161927,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872760,2872761,23.0,1161927,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872761,2872762,4.0,1161927,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872762,2872763,4.0,1161927,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872763,2872764,2.0,1161927,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872764,2872765,45.0,1161928,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872765,2872766,28.0,1161928,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872766,2872767,23.0,1161928,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872767,2872768,4.0,1161928,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872768,2872769,4.0,1161928,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872769,2872770,2.0,1161928,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872770,2872771,45.0,1161929,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872771,2872772,28.0,1161929,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872772,2872773,23.0,1161929,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872773,2872774,4.0,1161929,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872774,2872775,4.0,1161929,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872775,2872776,2.0,1161929,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872776,2872777,45.0,1161930,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872777,2872778,28.0,1161930,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872778,2872779,23.0,1161930,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872779,2872780,4.0,1161930,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872780,2872781,4.0,1161930,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872781,2872782,2.0,1161930,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872782,2872783,45.0,1161931,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872783,2872784,28.0,1161931,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872784,2872785,23.0,1161931,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872785,2872786,4.0,1161931,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872786,2872787,4.0,1161931,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872787,2872788,2.0,1161931,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872788,2872789,45.0,1161932,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872789,2872790,28.0,1161932,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872790,2872791,23.0,1161932,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872791,2872792,4.0,1161932,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872792,2872793,4.0,1161932,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872793,2872794,2.0,1161932,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872794,2872795,45.0,1161933,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872795,2872796,28.0,1161933,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872796,2872797,23.0,1161933,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872797,2872798,4.0,1161933,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872798,2872799,4.0,1161933,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872799,2872800,2.0,1161933,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872800,2872801,45.0,1161934,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872801,2872802,28.0,1161934,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872802,2872803,23.0,1161934,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872803,2872804,4.0,1161934,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872804,2872805,4.0,1161934,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872805,2872806,2.0,1161934,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872806,2872807,45.0,1161935,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872807,2872808,28.0,1161935,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872808,2872809,23.0,1161935,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872809,2872810,4.0,1161935,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872810,2872811,4.0,1161935,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872811,2872812,2.0,1161935,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872812,2872813,45.0,1161936,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872813,2872814,28.0,1161936,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872814,2872815,23.0,1161936,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872815,2872816,4.0,1161936,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872816,2872817,4.0,1161936,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872817,2872818,2.0,1161936,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872818,2872819,45.0,1161937,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872819,2872820,28.0,1161937,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872820,2872821,23.0,1161937,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872821,2872822,4.0,1161937,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872822,2872823,4.0,1161937,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872823,2872824,2.0,1161937,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872824,2872825,45.0,1161938,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872825,2872826,28.0,1161938,2,2,2,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872826,2872827,23.0,1161938,3,1,2,2,1.0,30.0,1.0,-9.0,4.0,4413,5.0,22755.0,2126.0 +2872827,2872828,4.0,1161938,4,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872828,2872829,4.0,1161938,5,1,7,4,-9.0,-9.0,-9.0,1.0,-9.0,-9,0.0,22755.0,2126.0 +2872829,2872830,2.0,1161938,6,1,7,4,-9.0,-9.0,-9.0,-9.0,-9.0,-9,0.0,22755.0,2126.0 +2872830,2872831,61.0,1161939,1,2,0,2,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872831,2872832,54.0,1161940,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872832,2872833,54.0,1161940,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872833,2872834,22.0,1161940,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22755.0,2126.0 +2872834,2872835,23.0,1161940,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872835,2872836,54.0,1161941,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872836,2872837,54.0,1161941,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872837,2872838,22.0,1161941,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22755.0,2126.0 +2872838,2872839,23.0,1161941,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872839,2872840,54.0,1161942,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872840,2872841,54.0,1161942,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872841,2872842,22.0,1161942,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22755.0,2126.0 +2872842,2872843,23.0,1161942,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872843,2872844,54.0,1161943,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872844,2872845,54.0,1161943,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872845,2872846,22.0,1161943,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22755.0,2126.0 +2872846,2872847,23.0,1161943,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872847,2872848,54.0,1161944,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872848,2872849,54.0,1161944,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872849,2872850,22.0,1161944,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22755.0,2126.0 +2872850,2872851,23.0,1161944,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872851,2872852,54.0,1161945,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872852,2872853,54.0,1161945,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872853,2872854,22.0,1161945,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22755.0,2126.0 +2872854,2872855,23.0,1161945,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872855,2872856,54.0,1161946,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872856,2872857,54.0,1161946,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872857,2872858,22.0,1161946,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22755.0,2126.0 +2872858,2872859,23.0,1161946,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872859,2872860,54.0,1161947,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872860,2872861,54.0,1161947,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872861,2872862,22.0,1161947,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22755.0,2126.0 +2872862,2872863,23.0,1161947,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872863,2872864,54.0,1161948,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872864,2872865,54.0,1161948,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872865,2872866,22.0,1161948,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22755.0,2126.0 +2872866,2872867,23.0,1161948,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872867,2872868,47.0,1161949,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22755.0,2126.0 +2872868,2872869,22.0,1161949,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872869,2872870,47.0,1161950,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22756.0,2126.0 +2872870,2872871,22.0,1161950,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22756.0,2126.0 +2872871,2872872,47.0,1161951,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22755.0,2126.0 +2872872,2872873,22.0,1161951,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872873,2872874,47.0,1161952,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22755.0,2126.0 +2872874,2872875,22.0,1161952,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872875,2872876,47.0,1161953,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22755.0,2126.0 +2872876,2872877,22.0,1161953,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872877,2872878,47.0,1161954,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22755.0,2126.0 +2872878,2872879,22.0,1161954,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872879,2872880,47.0,1161955,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22755.0,2126.0 +2872880,2872881,22.0,1161955,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872881,2872882,47.0,1161956,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22755.0,2126.0 +2872882,2872883,22.0,1161956,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872883,2872884,47.0,1161957,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22755.0,2126.0 +2872884,2872885,22.0,1161957,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872885,2872886,47.0,1161958,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22755.0,2126.0 +2872886,2872887,22.0,1161958,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872887,2872888,47.0,1161959,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22755.0,2126.0 +2872888,2872889,22.0,1161959,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872889,2872890,47.0,1161960,1,1,0,1,1.0,45.0,1.0,-9.0,3.0,337,3.0,22755.0,2126.0 +2872890,2872891,22.0,1161960,2,1,2,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22755.0,2126.0 +2872891,2872892,63.0,1161961,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872892,2872893,63.0,1161962,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,333MS,3.0,22755.0,2126.0 +2872893,2872894,63.0,1161963,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,333MS,3.0,22755.0,2126.0 +2872894,2872895,63.0,1161964,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,333MS,3.0,22755.0,2126.0 +2872895,2872896,63.0,1161965,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,333MS,3.0,22755.0,2126.0 +2872896,2872897,63.0,1161966,1,2,0,1,1.0,65.0,1.0,-9.0,4.0,333MS,3.0,22755.0,2126.0 +2872897,2872898,60.0,1161967,1,1,0,1,2.0,40.0,1.0,-9.0,2.0,481,6.0,22755.0,2126.0 +2872898,2872899,58.0,1161968,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2872899,2872900,58.0,1161969,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872900,2872901,58.0,1161970,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872901,2872902,51.0,1161971,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,531M,9.0,22755.0,2126.0 +2872902,2872903,53.0,1161972,1,2,0,1,1.0,60.0,1.0,-9.0,4.0,6214,14.0,22755.0,2126.0 +2872903,2872904,57.0,1161973,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22755.0,2126.0 +2872904,2872905,57.0,1161974,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22755.0,2126.0 +2872905,2872906,57.0,1161975,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22755.0,2126.0 +2872906,2872907,57.0,1161976,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,23,2.0,22755.0,2126.0 +2872907,2872908,61.0,1161977,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,52M2,9.0,22755.0,2126.0 +2872908,2872909,60.0,1161978,1,2,0,1,1.0,10.0,6.0,-9.0,4.0,611M3,13.0,22755.0,2126.0 +2872909,2872910,48.0,1161979,1,2,0,1,1.0,7.0,4.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2872910,2872911,59.0,1161980,1,2,0,1,1.0,20.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2872911,2872912,64.0,1161981,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,52M1,9.0,22755.0,2126.0 +2872912,2872913,45.0,1161982,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22755.0,2126.0 +2872913,2872914,40.0,1161982,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872914,2872915,21.0,1161982,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22755.0,2126.0 +2872915,2872916,20.0,1161982,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22755.0,2126.0 +2872916,2872917,16.0,1161982,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22755.0,2126.0 +2872917,2872918,45.0,1161983,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22755.0,2126.0 +2872918,2872919,40.0,1161983,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872919,2872920,21.0,1161983,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22755.0,2126.0 +2872920,2872921,20.0,1161983,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22755.0,2126.0 +2872921,2872922,16.0,1161983,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22755.0,2126.0 +2872922,2872923,45.0,1161984,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22755.0,2126.0 +2872923,2872924,40.0,1161984,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872924,2872925,21.0,1161984,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22755.0,2126.0 +2872925,2872926,20.0,1161984,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22755.0,2126.0 +2872926,2872927,16.0,1161984,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22755.0,2126.0 +2872927,2872928,45.0,1161985,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22755.0,2126.0 +2872928,2872929,40.0,1161985,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872929,2872930,21.0,1161985,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22755.0,2126.0 +2872930,2872931,20.0,1161985,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22755.0,2126.0 +2872931,2872932,16.0,1161985,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22755.0,2126.0 +2872932,2872933,45.0,1161986,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22755.0,2126.0 +2872933,2872934,40.0,1161986,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872934,2872935,21.0,1161986,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22755.0,2126.0 +2872935,2872936,20.0,1161986,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22755.0,2126.0 +2872936,2872937,16.0,1161986,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22755.0,2126.0 +2872937,2872938,45.0,1161987,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22755.0,2126.0 +2872938,2872939,40.0,1161987,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872939,2872940,21.0,1161987,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22755.0,2126.0 +2872940,2872941,20.0,1161987,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22755.0,2126.0 +2872941,2872942,16.0,1161987,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22755.0,2126.0 +2872942,2872943,45.0,1161988,1,1,0,1,1.0,60.0,1.0,-9.0,4.0,4853,6.0,22755.0,2126.0 +2872943,2872944,40.0,1161988,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22755.0,2126.0 +2872944,2872945,21.0,1161988,3,2,2,1,1.0,22.0,5.0,15.0,4.0,713Z,16.0,22755.0,2126.0 +2872945,2872946,20.0,1161988,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22755.0,2126.0 +2872946,2872947,16.0,1161988,5,1,2,1,6.0,-9.0,-9.0,13.0,-9.0,-9,0.0,22755.0,2126.0 +2872947,2872948,26.0,1161989,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872948,2872949,24.0,1161989,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872949,2872950,26.0,1161990,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872950,2872951,24.0,1161990,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872951,2872952,26.0,1161991,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872952,2872953,24.0,1161991,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872953,2872954,26.0,1161992,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872954,2872955,24.0,1161992,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872955,2872956,26.0,1161993,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872956,2872957,24.0,1161993,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872957,2872958,26.0,1161994,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872958,2872959,24.0,1161994,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872959,2872960,26.0,1161995,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872960,2872961,24.0,1161995,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872961,2872962,26.0,1161996,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872962,2872963,24.0,1161996,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872963,2872964,26.0,1161997,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872964,2872965,24.0,1161997,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872965,2872966,26.0,1161998,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872966,2872967,24.0,1161998,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872967,2872968,26.0,1161999,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872968,2872969,24.0,1161999,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872969,2872970,26.0,1162000,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872970,2872971,24.0,1162000,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872971,2872972,26.0,1162001,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22755.0,2126.0 +2872972,2872973,24.0,1162001,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22755.0,2126.0 +2872973,2872974,27.0,1162002,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872974,2872975,23.0,1162002,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872975,2872976,27.0,1162003,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872976,2872977,23.0,1162003,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872977,2872978,27.0,1162004,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872978,2872979,23.0,1162004,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872979,2872980,27.0,1162005,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872980,2872981,23.0,1162005,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872981,2872982,27.0,1162006,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872982,2872983,23.0,1162006,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872983,2872984,27.0,1162007,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872984,2872985,23.0,1162007,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872985,2872986,27.0,1162008,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872986,2872987,23.0,1162008,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872987,2872988,27.0,1162009,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872988,2872989,23.0,1162009,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872989,2872990,27.0,1162010,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872990,2872991,23.0,1162010,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872991,2872992,27.0,1162011,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872992,2872993,23.0,1162011,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872993,2872994,27.0,1162012,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872994,2872995,23.0,1162012,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872995,2872996,27.0,1162013,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872996,2872997,23.0,1162013,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872997,2872998,27.0,1162014,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22755.0,2126.0 +2872998,2872999,23.0,1162014,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22755.0,2126.0 +2872999,2873000,25.0,1162015,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873000,2873001,22.0,1162015,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873001,2873002,21.0,1162015,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873002,2873003,25.0,1162016,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873003,2873004,22.0,1162016,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873004,2873005,21.0,1162016,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873005,2873006,25.0,1162017,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873006,2873007,22.0,1162017,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873007,2873008,21.0,1162017,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873008,2873009,25.0,1162018,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873009,2873010,22.0,1162018,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873010,2873011,21.0,1162018,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873011,2873012,25.0,1162019,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873012,2873013,22.0,1162019,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873013,2873014,21.0,1162019,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873014,2873015,25.0,1162020,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873015,2873016,22.0,1162020,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873016,2873017,21.0,1162020,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873017,2873018,25.0,1162021,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873018,2873019,22.0,1162021,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873019,2873020,21.0,1162021,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873020,2873021,25.0,1162022,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873021,2873022,22.0,1162022,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873022,2873023,21.0,1162022,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873023,2873024,25.0,1162023,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873024,2873025,22.0,1162023,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873025,2873026,21.0,1162023,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873026,2873027,25.0,1162024,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873027,2873028,22.0,1162024,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873028,2873029,21.0,1162024,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873029,2873030,25.0,1162025,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873030,2873031,22.0,1162025,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873031,2873032,21.0,1162025,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873032,2873033,25.0,1162026,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873033,2873034,22.0,1162026,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873034,2873035,21.0,1162026,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873035,2873036,25.0,1162027,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873036,2873037,22.0,1162027,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873037,2873038,21.0,1162027,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873038,2873039,25.0,1162028,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873039,2873040,22.0,1162028,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873040,2873041,21.0,1162028,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873041,2873042,25.0,1162029,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873042,2873043,22.0,1162029,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873043,2873044,21.0,1162029,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873044,2873045,25.0,1162030,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873045,2873046,22.0,1162030,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873046,2873047,21.0,1162030,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873047,2873048,25.0,1162031,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873048,2873049,22.0,1162031,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873049,2873050,21.0,1162031,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873050,2873051,25.0,1162032,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873051,2873052,22.0,1162032,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873052,2873053,21.0,1162032,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873053,2873054,25.0,1162033,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873054,2873055,22.0,1162033,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873055,2873056,21.0,1162033,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873056,2873057,25.0,1162034,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873057,2873058,22.0,1162034,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873058,2873059,21.0,1162034,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22755.0,2126.0 +2873059,2873060,30.0,1162035,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,531M,9.0,22755.0,2126.0 +2873060,2873061,30.0,1162036,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,531M,9.0,22755.0,2126.0 +2873061,2873062,30.0,1162037,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,531M,9.0,22755.0,2126.0 +2873062,2873063,31.0,1162038,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873063,2873064,24.0,1162038,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873064,2873065,31.0,1162039,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873065,2873066,24.0,1162039,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873066,2873067,31.0,1162040,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873067,2873068,24.0,1162040,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873068,2873069,31.0,1162041,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873069,2873070,24.0,1162041,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873070,2873071,31.0,1162042,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873071,2873072,24.0,1162042,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873072,2873073,31.0,1162043,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873073,2873074,24.0,1162043,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873074,2873075,31.0,1162044,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873075,2873076,24.0,1162044,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873076,2873077,31.0,1162045,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873077,2873078,24.0,1162045,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873078,2873079,31.0,1162046,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873079,2873080,24.0,1162046,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873080,2873081,31.0,1162047,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873081,2873082,24.0,1162047,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873082,2873083,31.0,1162048,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873083,2873084,24.0,1162048,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873084,2873085,31.0,1162049,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873085,2873086,24.0,1162049,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873086,2873087,31.0,1162050,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873087,2873088,24.0,1162050,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873088,2873089,31.0,1162051,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873089,2873090,24.0,1162051,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873090,2873091,31.0,1162052,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873091,2873092,24.0,1162052,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873092,2873093,31.0,1162053,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873093,2873094,24.0,1162053,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873094,2873095,31.0,1162054,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873095,2873096,24.0,1162054,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873096,2873097,31.0,1162055,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873097,2873098,24.0,1162055,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873098,2873099,31.0,1162056,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873099,2873100,24.0,1162056,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873100,2873101,31.0,1162057,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873101,2873102,24.0,1162057,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873102,2873103,31.0,1162058,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873103,2873104,24.0,1162058,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873104,2873105,31.0,1162059,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873105,2873106,24.0,1162059,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873106,2873107,31.0,1162060,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873107,2873108,24.0,1162060,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873108,2873109,31.0,1162061,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873109,2873110,24.0,1162061,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873110,2873111,31.0,1162062,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873111,2873112,24.0,1162062,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873112,2873113,31.0,1162063,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873113,2873114,24.0,1162063,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873114,2873115,31.0,1162064,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873115,2873116,24.0,1162064,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873116,2873117,31.0,1162065,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873117,2873118,24.0,1162065,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873118,2873119,31.0,1162066,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873119,2873120,24.0,1162066,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873120,2873121,31.0,1162067,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873121,2873122,24.0,1162067,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873122,2873123,31.0,1162068,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873123,2873124,24.0,1162068,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873124,2873125,31.0,1162069,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873125,2873126,24.0,1162069,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873126,2873127,31.0,1162070,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873127,2873128,24.0,1162070,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873128,2873129,31.0,1162071,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873129,2873130,24.0,1162071,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873130,2873131,31.0,1162072,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873131,2873132,24.0,1162072,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873132,2873133,31.0,1162073,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873133,2873134,24.0,1162073,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873134,2873135,31.0,1162074,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873135,2873136,24.0,1162074,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873136,2873137,31.0,1162075,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873137,2873138,24.0,1162075,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873138,2873139,31.0,1162076,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873139,2873140,24.0,1162076,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873140,2873141,31.0,1162077,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873141,2873142,24.0,1162077,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873142,2873143,31.0,1162078,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873143,2873144,24.0,1162078,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873144,2873145,31.0,1162079,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873145,2873146,24.0,1162079,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873146,2873147,31.0,1162080,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873147,2873148,24.0,1162080,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873148,2873149,31.0,1162081,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873149,2873150,24.0,1162081,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873150,2873151,31.0,1162082,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873151,2873152,24.0,1162082,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873152,2873153,31.0,1162083,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873153,2873154,24.0,1162083,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873154,2873155,31.0,1162084,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873155,2873156,24.0,1162084,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873156,2873157,31.0,1162085,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873157,2873158,24.0,1162085,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873158,2873159,31.0,1162086,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873159,2873160,24.0,1162086,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873160,2873161,31.0,1162087,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873161,2873162,24.0,1162087,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873162,2873163,31.0,1162088,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873163,2873164,24.0,1162088,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873164,2873165,31.0,1162089,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873165,2873166,24.0,1162089,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873166,2873167,31.0,1162090,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873167,2873168,24.0,1162090,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873168,2873169,31.0,1162091,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873169,2873170,24.0,1162091,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873170,2873171,31.0,1162092,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873171,2873172,24.0,1162092,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873172,2873173,31.0,1162093,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873173,2873174,24.0,1162093,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873174,2873175,31.0,1162094,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22755.0,2126.0 +2873175,2873176,24.0,1162094,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22755.0,2126.0 +2873176,2873177,19.0,1162095,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873177,2873178,24.0,1162096,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2873178,2873179,24.0,1162097,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2873179,2873180,19.0,1162098,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873180,2873181,19.0,1162099,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873181,2873182,19.0,1162100,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873182,2873183,19.0,1162101,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873183,2873184,19.0,1162102,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873184,2873185,19.0,1162103,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873185,2873186,19.0,1162104,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873186,2873187,19.0,1162105,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873187,2873188,19.0,1162106,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873188,2873189,19.0,1162107,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873189,2873190,24.0,1162108,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2873190,2873191,19.0,1162109,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873191,2873192,24.0,1162110,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2873192,2873193,24.0,1162111,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2873193,2873194,19.0,1162112,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873194,2873195,19.0,1162113,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873195,2873196,19.0,1162114,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873196,2873197,19.0,1162115,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873197,2873198,19.0,1162116,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873198,2873199,24.0,1162117,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2873199,2873200,19.0,1162118,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873200,2873201,24.0,1162119,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2873201,2873202,24.0,1162120,1,2,0,2,1.0,36.0,4.0,-9.0,4.0,622M,15.0,22755.0,2126.0 +2873202,2873203,19.0,1162121,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873203,2873204,19.0,1162122,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22756.0,2126.0 +2873204,2873205,19.0,1162123,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873205,2873206,19.0,1162124,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873206,2873207,19.0,1162125,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873207,2873208,19.0,1162126,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873208,2873209,19.0,1162127,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873209,2873210,19.0,1162128,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873210,2873211,19.0,1162129,1,2,0,2,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22755.0,2126.0 +2873211,2873212,20.0,1162130,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873212,2873213,20.0,1162131,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873213,2873214,20.0,1162132,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873214,2873215,20.0,1162133,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873215,2873216,20.0,1162134,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873216,2873217,20.0,1162135,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873217,2873218,20.0,1162136,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873218,2873219,20.0,1162137,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873219,2873220,20.0,1162138,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873220,2873221,20.0,1162139,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873221,2873222,20.0,1162140,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873222,2873223,20.0,1162141,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873223,2873224,20.0,1162142,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873224,2873225,20.0,1162143,1,1,0,2,1.0,50.0,1.0,-9.0,4.0,51111,8.0,22755.0,2126.0 +2873225,2873226,24.0,1162144,1,1,0,1,1.0,50.0,3.0,-9.0,4.0,5416,10.0,22755.0,2126.0 +2873226,2873227,21.0,1162145,1,1,0,1,1.0,80.0,1.0,15.0,4.0,517311,8.0,22755.0,2126.0 +2873227,2873228,53.0,1162146,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22757.0,2127.0 +2873228,2873229,18.0,1162146,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873229,2873230,53.0,1162147,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22757.0,2127.0 +2873230,2873231,18.0,1162147,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873231,2873232,53.0,1162148,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22757.0,2127.0 +2873232,2873233,18.0,1162148,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873233,2873234,26.0,1162149,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873234,2873235,24.0,1162149,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873235,2873236,26.0,1162150,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873236,2873237,24.0,1162150,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873237,2873238,26.0,1162151,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873238,2873239,24.0,1162151,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873239,2873240,26.0,1162152,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873240,2873241,24.0,1162152,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873241,2873242,26.0,1162153,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873242,2873243,24.0,1162153,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873243,2873244,26.0,1162154,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873244,2873245,24.0,1162154,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873245,2873246,26.0,1162155,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873246,2873247,24.0,1162155,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873247,2873248,26.0,1162156,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873248,2873249,24.0,1162156,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873249,2873250,26.0,1162157,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873250,2873251,24.0,1162157,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873251,2873252,26.0,1162158,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873252,2873253,24.0,1162158,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873253,2873254,26.0,1162159,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873254,2873255,24.0,1162159,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873255,2873256,26.0,1162160,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873256,2873257,24.0,1162160,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873257,2873258,26.0,1162161,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873258,2873259,24.0,1162161,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873259,2873260,26.0,1162162,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873260,2873261,24.0,1162162,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873261,2873262,26.0,1162163,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873262,2873263,24.0,1162163,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873263,2873264,26.0,1162164,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873264,2873265,24.0,1162164,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873265,2873266,26.0,1162165,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873266,2873267,24.0,1162165,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873267,2873268,26.0,1162166,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873268,2873269,24.0,1162166,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873269,2873270,26.0,1162167,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873270,2873271,24.0,1162167,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873271,2873272,26.0,1162168,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873272,2873273,24.0,1162168,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873273,2873274,26.0,1162169,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873274,2873275,24.0,1162169,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873275,2873276,26.0,1162170,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873276,2873277,24.0,1162170,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873277,2873278,26.0,1162171,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873278,2873279,24.0,1162171,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873279,2873280,26.0,1162172,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873280,2873281,24.0,1162172,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873281,2873282,26.0,1162173,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873282,2873283,24.0,1162173,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873283,2873284,26.0,1162174,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873284,2873285,24.0,1162174,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873285,2873286,26.0,1162175,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873286,2873287,24.0,1162175,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873287,2873288,26.0,1162176,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873288,2873289,24.0,1162176,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873289,2873290,26.0,1162177,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873290,2873291,24.0,1162177,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873291,2873292,26.0,1162178,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873292,2873293,24.0,1162178,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873293,2873294,26.0,1162179,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873294,2873295,24.0,1162179,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873295,2873296,26.0,1162180,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873296,2873297,24.0,1162180,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873297,2873298,26.0,1162181,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873298,2873299,24.0,1162181,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873299,2873300,26.0,1162182,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873300,2873301,24.0,1162182,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873301,2873302,26.0,1162183,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873302,2873303,24.0,1162183,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873303,2873304,26.0,1162184,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873304,2873305,24.0,1162184,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873305,2873306,26.0,1162185,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873306,2873307,24.0,1162185,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873307,2873308,26.0,1162186,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873308,2873309,24.0,1162186,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873309,2873310,26.0,1162187,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873310,2873311,24.0,1162187,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873311,2873312,26.0,1162188,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873312,2873313,24.0,1162188,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873313,2873314,26.0,1162189,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873314,2873315,24.0,1162189,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873315,2873316,26.0,1162190,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873316,2873317,24.0,1162190,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873317,2873318,26.0,1162191,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873318,2873319,24.0,1162191,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873319,2873320,26.0,1162192,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873320,2873321,24.0,1162192,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873321,2873322,40.0,1162193,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873322,2873323,23.0,1162193,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873323,2873324,40.0,1162194,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873324,2873325,23.0,1162194,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873325,2873326,40.0,1162195,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873326,2873327,23.0,1162195,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22757.0,2127.0 +2873327,2873328,25.0,1162196,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873328,2873329,24.0,1162196,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873329,2873330,26.0,1162197,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2873330,2873331,24.0,1162197,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873331,2873332,26.0,1162198,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2873332,2873333,24.0,1162198,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873333,2873334,26.0,1162199,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2873334,2873335,24.0,1162199,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873335,2873336,26.0,1162200,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2873336,2873337,24.0,1162200,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873337,2873338,26.0,1162201,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2873338,2873339,24.0,1162201,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873339,2873340,26.0,1162202,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2873340,2873341,24.0,1162202,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873341,2873342,26.0,1162203,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2873342,2873343,24.0,1162203,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873343,2873344,26.0,1162204,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2873344,2873345,24.0,1162204,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2873345,2873346,40.0,1162205,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22757.0,2127.0 +2873346,2873347,21.0,1162205,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873347,2873348,40.0,1162206,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873348,2873349,21.0,1162206,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873349,2873350,40.0,1162207,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873350,2873351,21.0,1162207,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873351,2873352,40.0,1162208,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873352,2873353,21.0,1162208,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873353,2873354,40.0,1162209,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22757.0,2127.0 +2873354,2873355,21.0,1162209,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873355,2873356,40.0,1162210,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873356,2873357,21.0,1162210,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873357,2873358,40.0,1162211,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873358,2873359,21.0,1162211,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873359,2873360,40.0,1162212,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22757.0,2127.0 +2873360,2873361,21.0,1162212,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873361,2873362,40.0,1162213,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873362,2873363,21.0,1162213,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873363,2873364,40.0,1162214,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22757.0,2127.0 +2873364,2873365,21.0,1162214,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873365,2873366,40.0,1162215,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873366,2873367,21.0,1162215,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873367,2873368,40.0,1162216,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873368,2873369,21.0,1162216,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873369,2873370,40.0,1162217,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873370,2873371,21.0,1162217,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873371,2873372,40.0,1162218,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873372,2873373,21.0,1162218,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873373,2873374,40.0,1162219,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873374,2873375,21.0,1162219,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873375,2873376,40.0,1162220,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22757.0,2127.0 +2873376,2873377,21.0,1162220,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873377,2873378,40.0,1162221,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22757.0,2127.0 +2873378,2873379,21.0,1162221,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873379,2873380,40.0,1162222,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873380,2873381,21.0,1162222,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873381,2873382,40.0,1162223,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22757.0,2127.0 +2873382,2873383,21.0,1162223,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873383,2873384,40.0,1162224,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873384,2873385,21.0,1162224,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873385,2873386,40.0,1162225,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873386,2873387,21.0,1162225,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873387,2873388,40.0,1162226,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873388,2873389,21.0,1162226,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873389,2873390,40.0,1162227,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873390,2873391,21.0,1162227,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873391,2873392,40.0,1162228,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873392,2873393,21.0,1162228,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873393,2873394,40.0,1162229,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873394,2873395,21.0,1162229,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873395,2873396,40.0,1162230,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22757.0,2127.0 +2873396,2873397,21.0,1162230,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873397,2873398,40.0,1162231,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22757.0,2127.0 +2873398,2873399,21.0,1162231,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873399,2873400,40.0,1162232,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22757.0,2127.0 +2873400,2873401,21.0,1162232,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873401,2873402,40.0,1162233,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873402,2873403,21.0,1162233,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873403,2873404,40.0,1162234,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873404,2873405,21.0,1162234,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873405,2873406,40.0,1162235,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873406,2873407,21.0,1162235,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873407,2873408,40.0,1162236,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873408,2873409,21.0,1162236,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873409,2873410,40.0,1162237,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22757.0,2127.0 +2873410,2873411,21.0,1162237,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873411,2873412,40.0,1162238,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873412,2873413,21.0,1162238,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873413,2873414,40.0,1162239,1,2,0,2,1.0,30.0,4.0,-9.0,4.0,44611,5.0,22761.0,2128.0 +2873414,2873415,21.0,1162239,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873415,2873416,31.0,1162240,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873416,2873417,24.0,1162240,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873417,2873418,31.0,1162241,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873418,2873419,24.0,1162241,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873419,2873420,31.0,1162242,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873420,2873421,24.0,1162242,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873421,2873422,31.0,1162243,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873422,2873423,24.0,1162243,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873423,2873424,31.0,1162244,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873424,2873425,24.0,1162244,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873425,2873426,31.0,1162245,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873426,2873427,24.0,1162245,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873427,2873428,31.0,1162246,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873428,2873429,24.0,1162246,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873429,2873430,31.0,1162247,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873430,2873431,24.0,1162247,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873431,2873432,31.0,1162248,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873432,2873433,24.0,1162248,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873433,2873434,31.0,1162249,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873434,2873435,24.0,1162249,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873435,2873436,31.0,1162250,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873436,2873437,24.0,1162250,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873437,2873438,31.0,1162251,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873438,2873439,24.0,1162251,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873439,2873440,31.0,1162252,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873440,2873441,24.0,1162252,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873441,2873442,31.0,1162253,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873442,2873443,24.0,1162253,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873443,2873444,31.0,1162254,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873444,2873445,24.0,1162254,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873445,2873446,31.0,1162255,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873446,2873447,24.0,1162255,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873447,2873448,31.0,1162256,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873448,2873449,24.0,1162256,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873449,2873450,31.0,1162257,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873450,2873451,24.0,1162257,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873451,2873452,31.0,1162258,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873452,2873453,24.0,1162258,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873453,2873454,31.0,1162259,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873454,2873455,24.0,1162259,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873455,2873456,27.0,1162260,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22761.0,2128.0 +2873456,2873457,23.0,1162260,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22761.0,2128.0 +2873457,2873458,25.0,1162261,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873458,2873459,22.0,1162261,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873459,2873460,21.0,1162261,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873460,2873461,25.0,1162262,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873461,2873462,22.0,1162262,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873462,2873463,21.0,1162262,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873463,2873464,25.0,1162263,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873464,2873465,22.0,1162263,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873465,2873466,21.0,1162263,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873466,2873467,25.0,1162264,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873467,2873468,22.0,1162264,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873468,2873469,21.0,1162264,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873469,2873470,25.0,1162265,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873470,2873471,22.0,1162265,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873471,2873472,21.0,1162265,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873472,2873473,25.0,1162266,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873473,2873474,22.0,1162266,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873474,2873475,21.0,1162266,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873475,2873476,25.0,1162267,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873476,2873477,22.0,1162267,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873477,2873478,21.0,1162267,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873478,2873479,25.0,1162268,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873479,2873480,22.0,1162268,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873480,2873481,21.0,1162268,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873481,2873482,25.0,1162269,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873482,2873483,22.0,1162269,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873483,2873484,21.0,1162269,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873484,2873485,25.0,1162270,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873485,2873486,22.0,1162270,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873486,2873487,21.0,1162270,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873487,2873488,25.0,1162271,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873488,2873489,22.0,1162271,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873489,2873490,21.0,1162271,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873490,2873491,25.0,1162272,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873491,2873492,22.0,1162272,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873492,2873493,21.0,1162272,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873493,2873494,25.0,1162273,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873494,2873495,22.0,1162273,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873495,2873496,21.0,1162273,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873496,2873497,25.0,1162274,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873497,2873498,22.0,1162274,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873498,2873499,21.0,1162274,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873499,2873500,25.0,1162275,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873500,2873501,22.0,1162275,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873501,2873502,21.0,1162275,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873502,2873503,25.0,1162276,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873503,2873504,22.0,1162276,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873504,2873505,21.0,1162276,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873505,2873506,25.0,1162277,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873506,2873507,22.0,1162277,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873507,2873508,21.0,1162277,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873508,2873509,25.0,1162278,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873509,2873510,22.0,1162278,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873510,2873511,21.0,1162278,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873511,2873512,25.0,1162279,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873512,2873513,22.0,1162279,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873513,2873514,21.0,1162279,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873514,2873515,25.0,1162280,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873515,2873516,22.0,1162280,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873516,2873517,21.0,1162280,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873517,2873518,25.0,1162281,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873518,2873519,22.0,1162281,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873519,2873520,21.0,1162281,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873520,2873521,25.0,1162282,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873521,2873522,22.0,1162282,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873522,2873523,21.0,1162282,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873523,2873524,25.0,1162283,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873524,2873525,22.0,1162283,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873525,2873526,21.0,1162283,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873526,2873527,25.0,1162284,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873527,2873528,22.0,1162284,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873528,2873529,21.0,1162284,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873529,2873530,25.0,1162285,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873530,2873531,22.0,1162285,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873531,2873532,21.0,1162285,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873532,2873533,25.0,1162286,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873533,2873534,22.0,1162286,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873534,2873535,21.0,1162286,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873535,2873536,25.0,1162287,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873536,2873537,22.0,1162287,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873537,2873538,21.0,1162287,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873538,2873539,25.0,1162288,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873539,2873540,22.0,1162288,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873540,2873541,21.0,1162288,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873541,2873542,25.0,1162289,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873542,2873543,22.0,1162289,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873543,2873544,21.0,1162289,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873544,2873545,25.0,1162290,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873545,2873546,22.0,1162290,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873546,2873547,21.0,1162290,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873547,2873548,25.0,1162291,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873548,2873549,22.0,1162291,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873549,2873550,21.0,1162291,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873550,2873551,25.0,1162292,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873551,2873552,22.0,1162292,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873552,2873553,21.0,1162292,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873553,2873554,25.0,1162293,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873554,2873555,22.0,1162293,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873555,2873556,21.0,1162293,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873556,2873557,25.0,1162294,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873557,2873558,22.0,1162294,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873558,2873559,21.0,1162294,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873559,2873560,25.0,1162295,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873560,2873561,22.0,1162295,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873561,2873562,21.0,1162295,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873562,2873563,25.0,1162296,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873563,2873564,22.0,1162296,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873564,2873565,21.0,1162296,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873565,2873566,25.0,1162297,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873566,2873567,22.0,1162297,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873567,2873568,21.0,1162297,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873568,2873569,25.0,1162298,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873569,2873570,22.0,1162298,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873570,2873571,21.0,1162298,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873571,2873572,25.0,1162299,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873572,2873573,22.0,1162299,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873573,2873574,21.0,1162299,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873574,2873575,25.0,1162300,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873575,2873576,22.0,1162300,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873576,2873577,21.0,1162300,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873577,2873578,25.0,1162301,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873578,2873579,22.0,1162301,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873579,2873580,21.0,1162301,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873580,2873581,25.0,1162302,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873581,2873582,22.0,1162302,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873582,2873583,21.0,1162302,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873583,2873584,25.0,1162303,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873584,2873585,22.0,1162303,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873585,2873586,21.0,1162303,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873586,2873587,25.0,1162304,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873587,2873588,22.0,1162304,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873588,2873589,21.0,1162304,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873589,2873590,25.0,1162305,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873590,2873591,22.0,1162305,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873591,2873592,21.0,1162305,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873592,2873593,25.0,1162306,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873593,2873594,22.0,1162306,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873594,2873595,21.0,1162306,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873595,2873596,25.0,1162307,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873596,2873597,22.0,1162307,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873597,2873598,21.0,1162307,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873598,2873599,25.0,1162308,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873599,2873600,22.0,1162308,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873600,2873601,21.0,1162308,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873601,2873602,25.0,1162309,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873602,2873603,22.0,1162309,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873603,2873604,21.0,1162309,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873604,2873605,25.0,1162310,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873605,2873606,22.0,1162310,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873606,2873607,21.0,1162310,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873607,2873608,25.0,1162311,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873608,2873609,22.0,1162311,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873609,2873610,21.0,1162311,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873610,2873611,25.0,1162312,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873611,2873612,22.0,1162312,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873612,2873613,21.0,1162312,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873613,2873614,25.0,1162313,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873614,2873615,22.0,1162313,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873615,2873616,21.0,1162313,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873616,2873617,25.0,1162314,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873617,2873618,22.0,1162314,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873618,2873619,21.0,1162314,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873619,2873620,25.0,1162315,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873620,2873621,22.0,1162315,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873621,2873622,21.0,1162315,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873622,2873623,25.0,1162316,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873623,2873624,22.0,1162316,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873624,2873625,21.0,1162316,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873625,2873626,25.0,1162317,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873626,2873627,22.0,1162317,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873627,2873628,21.0,1162317,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873628,2873629,25.0,1162318,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873629,2873630,22.0,1162318,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873630,2873631,21.0,1162318,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873631,2873632,25.0,1162319,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873632,2873633,22.0,1162319,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873633,2873634,21.0,1162319,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873634,2873635,25.0,1162320,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873635,2873636,22.0,1162320,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873636,2873637,21.0,1162320,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873637,2873638,25.0,1162321,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873638,2873639,22.0,1162321,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873639,2873640,21.0,1162321,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873640,2873641,25.0,1162322,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873641,2873642,22.0,1162322,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873642,2873643,21.0,1162322,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22757.0,2127.0 +2873643,2873644,25.0,1162323,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873644,2873645,22.0,1162323,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873645,2873646,21.0,1162323,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873646,2873647,25.0,1162324,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873647,2873648,22.0,1162324,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873648,2873649,21.0,1162324,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2873649,2873650,27.0,1162325,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873650,2873651,24.0,1162325,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873651,2873652,27.0,1162326,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873652,2873653,24.0,1162326,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873653,2873654,27.0,1162327,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873654,2873655,24.0,1162327,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873655,2873656,27.0,1162328,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873656,2873657,24.0,1162328,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873657,2873658,27.0,1162329,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873658,2873659,24.0,1162329,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873659,2873660,27.0,1162330,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873660,2873661,24.0,1162330,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873661,2873662,27.0,1162331,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873662,2873663,24.0,1162331,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873663,2873664,27.0,1162332,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873664,2873665,24.0,1162332,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873665,2873666,27.0,1162333,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873666,2873667,24.0,1162333,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873667,2873668,27.0,1162334,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873668,2873669,24.0,1162334,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873669,2873670,27.0,1162335,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873670,2873671,24.0,1162335,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873671,2873672,27.0,1162336,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873672,2873673,24.0,1162336,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873673,2873674,27.0,1162337,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873674,2873675,24.0,1162337,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873675,2873676,27.0,1162338,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873676,2873677,24.0,1162338,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873677,2873678,27.0,1162339,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873678,2873679,24.0,1162339,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873679,2873680,27.0,1162340,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873680,2873681,24.0,1162340,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873681,2873682,27.0,1162341,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873682,2873683,24.0,1162341,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873683,2873684,27.0,1162342,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873684,2873685,24.0,1162342,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873685,2873686,27.0,1162343,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873686,2873687,24.0,1162343,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873687,2873688,27.0,1162344,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873688,2873689,24.0,1162344,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873689,2873690,27.0,1162345,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873690,2873691,24.0,1162345,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873691,2873692,27.0,1162346,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873692,2873693,24.0,1162346,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873693,2873694,27.0,1162347,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873694,2873695,24.0,1162347,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873695,2873696,27.0,1162348,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873696,2873697,24.0,1162348,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873697,2873698,27.0,1162349,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873698,2873699,24.0,1162349,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873699,2873700,27.0,1162350,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873700,2873701,24.0,1162350,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873701,2873702,27.0,1162351,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873702,2873703,24.0,1162351,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873703,2873704,27.0,1162352,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873704,2873705,24.0,1162352,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873705,2873706,27.0,1162353,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873706,2873707,24.0,1162353,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873707,2873708,27.0,1162354,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873708,2873709,24.0,1162354,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873709,2873710,27.0,1162355,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873710,2873711,24.0,1162355,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873711,2873712,27.0,1162356,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873712,2873713,24.0,1162356,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873713,2873714,27.0,1162357,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873714,2873715,24.0,1162357,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873715,2873716,27.0,1162358,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873716,2873717,24.0,1162358,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873717,2873718,27.0,1162359,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873718,2873719,24.0,1162359,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873719,2873720,27.0,1162360,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873720,2873721,24.0,1162360,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873721,2873722,27.0,1162361,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873722,2873723,24.0,1162361,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873723,2873724,27.0,1162362,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873724,2873725,24.0,1162362,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873725,2873726,27.0,1162363,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873726,2873727,24.0,1162363,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873727,2873728,27.0,1162364,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873728,2873729,24.0,1162364,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873729,2873730,27.0,1162365,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873730,2873731,24.0,1162365,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873731,2873732,27.0,1162366,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873732,2873733,24.0,1162366,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873733,2873734,27.0,1162367,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873734,2873735,24.0,1162367,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873735,2873736,27.0,1162368,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873736,2873737,24.0,1162368,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873737,2873738,27.0,1162369,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873738,2873739,24.0,1162369,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873739,2873740,27.0,1162370,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873740,2873741,24.0,1162370,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873741,2873742,27.0,1162371,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873742,2873743,24.0,1162371,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873743,2873744,27.0,1162372,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873744,2873745,24.0,1162372,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873745,2873746,27.0,1162373,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873746,2873747,24.0,1162373,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873747,2873748,27.0,1162374,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873748,2873749,24.0,1162374,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873749,2873750,27.0,1162375,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873750,2873751,24.0,1162375,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873751,2873752,27.0,1162376,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873752,2873753,24.0,1162376,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873753,2873754,27.0,1162377,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873754,2873755,24.0,1162377,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22757.0,2127.0 +2873755,2873756,27.0,1162378,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873756,2873757,24.0,1162378,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22757.0,2127.0 +2873757,2873758,27.0,1162379,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873758,2873759,24.0,1162379,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873759,2873760,27.0,1162380,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873760,2873761,24.0,1162380,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873761,2873762,27.0,1162381,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873762,2873763,24.0,1162381,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873763,2873764,27.0,1162382,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873764,2873765,24.0,1162382,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22757.0,2127.0 +2873765,2873766,27.0,1162383,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873766,2873767,24.0,1162383,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873767,2873768,27.0,1162384,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873768,2873769,24.0,1162384,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22757.0,2127.0 +2873769,2873770,27.0,1162385,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873770,2873771,24.0,1162385,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873771,2873772,27.0,1162386,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873772,2873773,24.0,1162386,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873773,2873774,27.0,1162387,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873774,2873775,24.0,1162387,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873775,2873776,27.0,1162388,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873776,2873777,24.0,1162388,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873777,2873778,27.0,1162389,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873778,2873779,24.0,1162389,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873779,2873780,27.0,1162390,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22757.0,2127.0 +2873780,2873781,24.0,1162390,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22757.0,2127.0 +2873781,2873782,27.0,1162391,1,2,0,1,6.0,-9.0,-9.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2873782,2873783,24.0,1162391,2,2,12,1,1.0,36.0,2.0,15.0,4.0,622M,15.0,22761.0,2128.0 +2873783,2873784,31.0,1162392,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22757.0,2127.0 +2873784,2873785,24.0,1162392,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22757.0,2127.0 +2873785,2873786,31.0,1162393,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873786,2873787,24.0,1162393,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22761.0,2128.0 +2873787,2873788,31.0,1162394,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22757.0,2127.0 +2873788,2873789,24.0,1162394,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22757.0,2127.0 +2873789,2873790,31.0,1162395,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873790,2873791,24.0,1162395,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22761.0,2128.0 +2873791,2873792,31.0,1162396,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22757.0,2127.0 +2873792,2873793,24.0,1162396,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22757.0,2127.0 +2873793,2873794,31.0,1162397,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873794,2873795,24.0,1162397,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22761.0,2128.0 +2873795,2873796,31.0,1162398,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873796,2873797,24.0,1162398,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22761.0,2128.0 +2873797,2873798,19.0,1162399,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873798,2873799,50.0,1162399,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873799,2873800,19.0,1162400,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873800,2873801,50.0,1162400,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873801,2873802,19.0,1162401,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873802,2873803,50.0,1162401,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873803,2873804,19.0,1162402,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873804,2873805,50.0,1162402,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22757.0,2127.0 +2873805,2873806,19.0,1162403,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873806,2873807,50.0,1162403,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873807,2873808,19.0,1162404,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873808,2873809,50.0,1162404,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873809,2873810,19.0,1162405,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873810,2873811,50.0,1162405,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873811,2873812,19.0,1162406,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873812,2873813,50.0,1162406,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22757.0,2127.0 +2873813,2873814,19.0,1162407,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +2873814,2873815,50.0,1162407,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22757.0,2127.0 +2873815,2873816,19.0,1162408,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873816,2873817,50.0,1162408,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873817,2873818,19.0,1162409,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873818,2873819,50.0,1162409,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873819,2873820,19.0,1162410,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873820,2873821,50.0,1162410,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873821,2873822,19.0,1162411,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873822,2873823,50.0,1162411,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873823,2873824,19.0,1162412,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873824,2873825,50.0,1162412,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873825,2873826,19.0,1162413,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873826,2873827,50.0,1162413,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873827,2873828,19.0,1162414,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873828,2873829,50.0,1162414,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873829,2873830,19.0,1162415,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873830,2873831,50.0,1162415,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873831,2873832,19.0,1162416,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873832,2873833,50.0,1162416,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873833,2873834,19.0,1162417,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873834,2873835,50.0,1162417,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873835,2873836,19.0,1162418,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873836,2873837,50.0,1162418,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873837,2873838,19.0,1162419,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +2873838,2873839,50.0,1162419,2,1,12,3,1.0,40.0,2.0,-9.0,4.0,713Z,16.0,22761.0,2128.0 +2873839,2873840,24.0,1162420,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873840,2873841,27.0,1162420,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873841,2873842,24.0,1162421,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873842,2873843,27.0,1162421,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873843,2873844,24.0,1162422,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873844,2873845,27.0,1162422,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873845,2873846,24.0,1162423,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873846,2873847,27.0,1162423,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873847,2873848,24.0,1162424,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873848,2873849,27.0,1162424,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873849,2873850,24.0,1162425,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873850,2873851,27.0,1162425,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873851,2873852,24.0,1162426,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873852,2873853,27.0,1162426,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873853,2873854,24.0,1162427,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873854,2873855,27.0,1162427,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873855,2873856,24.0,1162428,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873856,2873857,27.0,1162428,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873857,2873858,24.0,1162429,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873858,2873859,27.0,1162429,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873859,2873860,24.0,1162430,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873860,2873861,27.0,1162430,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873861,2873862,24.0,1162431,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873862,2873863,27.0,1162431,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873863,2873864,24.0,1162432,1,2,0,3,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873864,2873865,27.0,1162432,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873865,2873866,24.0,1162433,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873866,2873867,25.0,1162433,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873867,2873868,24.0,1162434,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873868,2873869,25.0,1162434,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873869,2873870,24.0,1162435,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873870,2873871,25.0,1162435,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873871,2873872,23.0,1162436,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22757.0,2127.0 +2873872,2873873,26.0,1162436,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22757.0,2127.0 +2873873,2873874,23.0,1162437,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22757.0,2127.0 +2873874,2873875,23.0,1162438,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873875,2873876,23.0,1162439,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873876,2873877,21.0,1162440,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873877,2873878,23.0,1162441,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873878,2873879,21.0,1162442,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22761.0,2128.0 +2873879,2873880,21.0,1162443,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873880,2873881,23.0,1162444,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873881,2873882,22.0,1162445,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873882,2873883,23.0,1162446,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873883,2873884,21.0,1162447,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22761.0,2128.0 +2873884,2873885,23.0,1162448,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873885,2873886,21.0,1162449,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22757.0,2127.0 +2873886,2873887,21.0,1162450,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873887,2873888,21.0,1162451,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873888,2873889,23.0,1162452,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873889,2873890,22.0,1162453,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873890,2873891,21.0,1162454,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873891,2873892,23.0,1162455,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873892,2873893,21.0,1162456,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873893,2873894,21.0,1162457,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22757.0,2127.0 +2873894,2873895,21.0,1162458,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873895,2873896,23.0,1162459,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873896,2873897,24.0,1162460,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873897,2873898,23.0,1162461,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873898,2873899,23.0,1162462,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873899,2873900,21.0,1162463,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873900,2873901,21.0,1162464,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873901,2873902,21.0,1162465,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22757.0,2127.0 +2873902,2873903,21.0,1162466,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873903,2873904,23.0,1162467,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873904,2873905,23.0,1162468,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873905,2873906,23.0,1162469,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873906,2873907,21.0,1162470,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873907,2873908,23.0,1162471,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873908,2873909,21.0,1162472,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22757.0,2127.0 +2873909,2873910,22.0,1162473,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873910,2873911,21.0,1162474,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22761.0,2128.0 +2873911,2873912,23.0,1162475,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873912,2873913,21.0,1162476,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22757.0,2127.0 +2873913,2873914,23.0,1162477,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873914,2873915,23.0,1162478,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873915,2873916,23.0,1162479,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873916,2873917,21.0,1162480,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873917,2873918,23.0,1162481,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22757.0,2127.0 +2873918,2873919,22.0,1162482,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873919,2873920,21.0,1162483,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22761.0,2128.0 +2873920,2873921,22.0,1162484,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873921,2873922,24.0,1162485,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873922,2873923,21.0,1162486,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873923,2873924,22.0,1162487,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873924,2873925,24.0,1162488,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873925,2873926,22.0,1162489,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873926,2873927,23.0,1162490,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873927,2873928,21.0,1162491,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22761.0,2128.0 +2873928,2873929,22.0,1162492,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873929,2873930,23.0,1162493,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873930,2873931,23.0,1162494,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873931,2873932,21.0,1162495,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22761.0,2128.0 +2873932,2873933,21.0,1162496,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22761.0,2128.0 +2873933,2873934,21.0,1162497,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22761.0,2128.0 +2873934,2873935,22.0,1162498,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873935,2873936,23.0,1162499,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873936,2873937,22.0,1162500,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873937,2873938,21.0,1162501,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22761.0,2128.0 +2873938,2873939,21.0,1162502,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22757.0,2127.0 +2873939,2873940,22.0,1162503,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873940,2873941,22.0,1162504,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873941,2873942,23.0,1162505,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22757.0,2127.0 +2873942,2873943,23.0,1162506,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2873943,2873944,22.0,1162507,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2873944,2873945,85.0,1162508,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22758.0,2127.0 +2873945,2873946,46.0,1162509,1,2,0,4,1.0,60.0,2.0,-9.0,4.0,812112,17.0,22763.0,2129.0 +2873946,2873947,18.0,1162509,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2873947,2873948,46.0,1162510,1,2,0,4,1.0,60.0,2.0,-9.0,4.0,812112,17.0,22763.0,2129.0 +2873948,2873949,18.0,1162510,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2873949,2873950,46.0,1162511,1,2,0,4,1.0,60.0,2.0,-9.0,4.0,812112,17.0,22758.0,2127.0 +2873950,2873951,18.0,1162511,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2873951,2873952,46.0,1162512,1,2,0,4,1.0,60.0,2.0,-9.0,4.0,812112,17.0,22758.0,2127.0 +2873952,2873953,18.0,1162512,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2873953,2873954,46.0,1162513,1,2,0,4,1.0,60.0,2.0,-9.0,4.0,812112,17.0,22763.0,2129.0 +2873954,2873955,18.0,1162513,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2873955,2873956,50.0,1162514,1,1,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2873956,2873957,51.0,1162514,2,2,1,3,2.0,40.0,1.0,-9.0,4.0,52M1,9.0,22763.0,2129.0 +2873957,2873958,23.0,1162514,3,1,2,3,1.0,45.0,1.0,-9.0,4.0,4853,6.0,22763.0,2129.0 +2873958,2873959,20.0,1162514,4,1,2,3,1.0,20.0,1.0,15.0,4.0,5121,8.0,22763.0,2129.0 +2873959,2873960,53.0,1162515,1,2,0,3,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2873960,2873961,18.0,1162515,2,2,2,3,6.0,25.0,4.0,-9.0,4.0,722Z,16.0,22758.0,2127.0 +2873961,2873962,58.0,1162516,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2873962,2873963,64.0,1162516,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22763.0,2129.0 +2873963,2873964,24.0,1162516,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22763.0,2129.0 +2873964,2873965,23.0,1162516,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22763.0,2129.0 +2873965,2873966,70.0,1162516,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22763.0,2129.0 +2873966,2873967,58.0,1162517,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2873967,2873968,64.0,1162517,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22763.0,2129.0 +2873968,2873969,24.0,1162517,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22763.0,2129.0 +2873969,2873970,23.0,1162517,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22763.0,2129.0 +2873970,2873971,70.0,1162517,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22763.0,2129.0 +2873971,2873972,58.0,1162518,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2873972,2873973,64.0,1162518,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22758.0,2127.0 +2873973,2873974,24.0,1162518,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22758.0,2127.0 +2873974,2873975,23.0,1162518,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22758.0,2127.0 +2873975,2873976,70.0,1162518,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22758.0,2127.0 +2873976,2873977,58.0,1162519,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2873977,2873978,64.0,1162519,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22758.0,2127.0 +2873978,2873979,24.0,1162519,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22758.0,2127.0 +2873979,2873980,23.0,1162519,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22758.0,2127.0 +2873980,2873981,70.0,1162519,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22758.0,2127.0 +2873981,2873982,58.0,1162520,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2873982,2873983,64.0,1162520,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22758.0,2127.0 +2873983,2873984,24.0,1162520,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22758.0,2127.0 +2873984,2873985,23.0,1162520,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22758.0,2127.0 +2873985,2873986,70.0,1162520,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22758.0,2127.0 +2873986,2873987,58.0,1162521,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2873987,2873988,64.0,1162521,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22758.0,2127.0 +2873988,2873989,24.0,1162521,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22758.0,2127.0 +2873989,2873990,23.0,1162521,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22758.0,2127.0 +2873990,2873991,70.0,1162521,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22758.0,2127.0 +2873991,2873992,58.0,1162522,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2873992,2873993,64.0,1162522,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22758.0,2127.0 +2873993,2873994,24.0,1162522,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22758.0,2127.0 +2873994,2873995,23.0,1162522,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22758.0,2127.0 +2873995,2873996,70.0,1162522,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22758.0,2127.0 +2873996,2873997,58.0,1162523,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2873997,2873998,64.0,1162523,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22763.0,2129.0 +2873998,2873999,24.0,1162523,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22763.0,2129.0 +2873999,2874000,23.0,1162523,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22763.0,2129.0 +2874000,2874001,70.0,1162523,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22763.0,2129.0 +2874001,2874002,58.0,1162524,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874002,2874003,64.0,1162524,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22763.0,2129.0 +2874003,2874004,24.0,1162524,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22763.0,2129.0 +2874004,2874005,23.0,1162524,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22763.0,2129.0 +2874005,2874006,70.0,1162524,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22763.0,2129.0 +2874006,2874007,58.0,1162525,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874007,2874008,64.0,1162525,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,5313,9.0,22763.0,2129.0 +2874008,2874009,24.0,1162525,3,1,2,1,1.0,30.0,5.0,15.0,4.0,3118Z,3.0,22763.0,2129.0 +2874009,2874010,23.0,1162525,4,1,2,1,1.0,16.0,1.0,-9.0,4.0,44511,5.0,22763.0,2129.0 +2874010,2874011,70.0,1162525,5,2,5,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22763.0,2129.0 +2874011,2874012,49.0,1162526,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22763.0,2129.0 +2874012,2874013,52.0,1162526,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874013,2874014,18.0,1162526,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22763.0,2129.0 +2874014,2874015,18.0,1162526,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22763.0,2129.0 +2874015,2874016,49.0,1162527,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22758.0,2127.0 +2874016,2874017,52.0,1162527,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874017,2874018,18.0,1162527,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22758.0,2127.0 +2874018,2874019,18.0,1162527,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22758.0,2127.0 +2874019,2874020,49.0,1162528,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22763.0,2129.0 +2874020,2874021,52.0,1162528,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874021,2874022,18.0,1162528,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22763.0,2129.0 +2874022,2874023,18.0,1162528,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22763.0,2129.0 +2874023,2874024,49.0,1162529,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22763.0,2129.0 +2874024,2874025,52.0,1162529,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874025,2874026,18.0,1162529,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22763.0,2129.0 +2874026,2874027,18.0,1162529,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22763.0,2129.0 +2874027,2874028,54.0,1162530,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874028,2874029,54.0,1162530,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874029,2874030,22.0,1162530,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22763.0,2129.0 +2874030,2874031,23.0,1162530,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874031,2874032,54.0,1162531,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874032,2874033,54.0,1162531,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874033,2874034,22.0,1162531,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22758.0,2127.0 +2874034,2874035,23.0,1162531,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874035,2874036,54.0,1162532,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874036,2874037,54.0,1162532,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874037,2874038,22.0,1162532,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22758.0,2127.0 +2874038,2874039,23.0,1162532,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874039,2874040,54.0,1162533,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874040,2874041,54.0,1162533,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874041,2874042,22.0,1162533,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22758.0,2127.0 +2874042,2874043,23.0,1162533,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874043,2874044,54.0,1162534,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874044,2874045,54.0,1162534,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874045,2874046,22.0,1162534,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22763.0,2129.0 +2874046,2874047,23.0,1162534,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874047,2874048,59.0,1162535,1,1,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874048,2874049,61.0,1162535,2,2,1,1,1.0,45.0,1.0,-9.0,4.0,531M,9.0,22763.0,2129.0 +2874049,2874050,22.0,1162535,3,2,2,1,1.0,10.0,3.0,-9.0,4.0,6244,14.0,22763.0,2129.0 +2874050,2874051,49.0,1162536,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22758.0,2127.0 +2874051,2874052,50.0,1162536,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22758.0,2127.0 +2874052,2874053,23.0,1162536,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22758.0,2127.0 +2874053,2874054,49.0,1162537,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22763.0,2129.0 +2874054,2874055,50.0,1162537,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22763.0,2129.0 +2874055,2874056,23.0,1162537,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22763.0,2129.0 +2874056,2874057,49.0,1162538,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22758.0,2127.0 +2874057,2874058,50.0,1162538,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22758.0,2127.0 +2874058,2874059,23.0,1162538,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22758.0,2127.0 +2874059,2874060,49.0,1162539,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22758.0,2127.0 +2874060,2874061,50.0,1162539,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22758.0,2127.0 +2874061,2874062,23.0,1162539,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22758.0,2127.0 +2874062,2874063,49.0,1162540,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22763.0,2129.0 +2874063,2874064,50.0,1162540,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22763.0,2129.0 +2874064,2874065,23.0,1162540,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22763.0,2129.0 +2874065,2874066,49.0,1162541,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22758.0,2127.0 +2874066,2874067,50.0,1162541,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22758.0,2127.0 +2874067,2874068,23.0,1162541,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22758.0,2127.0 +2874068,2874069,49.0,1162542,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22758.0,2127.0 +2874069,2874070,50.0,1162542,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22758.0,2127.0 +2874070,2874071,23.0,1162542,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22758.0,2127.0 +2874071,2874072,49.0,1162543,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22763.0,2129.0 +2874072,2874073,50.0,1162543,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22763.0,2129.0 +2874073,2874074,23.0,1162543,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22763.0,2129.0 +2874074,2874075,26.0,1162544,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874075,2874076,24.0,1162544,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874076,2874077,26.0,1162545,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874077,2874078,24.0,1162545,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874078,2874079,26.0,1162546,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874079,2874080,24.0,1162546,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874080,2874081,26.0,1162547,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874081,2874082,24.0,1162547,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874082,2874083,26.0,1162548,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874083,2874084,24.0,1162548,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874084,2874085,26.0,1162549,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874085,2874086,24.0,1162549,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874086,2874087,26.0,1162550,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874087,2874088,24.0,1162550,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874088,2874089,26.0,1162551,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874089,2874090,24.0,1162551,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874090,2874091,26.0,1162552,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874091,2874092,24.0,1162552,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874092,2874093,26.0,1162553,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874093,2874094,24.0,1162553,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874094,2874095,26.0,1162554,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874095,2874096,24.0,1162554,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874096,2874097,26.0,1162555,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874097,2874098,24.0,1162555,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874098,2874099,26.0,1162556,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874099,2874100,24.0,1162556,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874100,2874101,26.0,1162557,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874101,2874102,24.0,1162557,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874102,2874103,26.0,1162558,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874103,2874104,24.0,1162558,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874104,2874105,26.0,1162559,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874105,2874106,24.0,1162559,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874106,2874107,26.0,1162560,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874107,2874108,24.0,1162560,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874108,2874109,26.0,1162561,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874109,2874110,24.0,1162561,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874110,2874111,26.0,1162562,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874111,2874112,24.0,1162562,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874112,2874113,26.0,1162563,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874113,2874114,24.0,1162563,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874114,2874115,26.0,1162564,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874115,2874116,24.0,1162564,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874116,2874117,26.0,1162565,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874117,2874118,24.0,1162565,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874118,2874119,26.0,1162566,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874119,2874120,24.0,1162566,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874120,2874121,26.0,1162567,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874121,2874122,24.0,1162567,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874122,2874123,26.0,1162568,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874123,2874124,24.0,1162568,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874124,2874125,26.0,1162569,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874125,2874126,24.0,1162569,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874126,2874127,26.0,1162570,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874127,2874128,24.0,1162570,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874128,2874129,26.0,1162571,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874129,2874130,24.0,1162571,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874130,2874131,26.0,1162572,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874131,2874132,24.0,1162572,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874132,2874133,26.0,1162573,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874133,2874134,24.0,1162573,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874134,2874135,26.0,1162574,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874135,2874136,24.0,1162574,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874136,2874137,26.0,1162575,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874137,2874138,24.0,1162575,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874138,2874139,26.0,1162576,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874139,2874140,24.0,1162576,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874140,2874141,26.0,1162577,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874141,2874142,24.0,1162577,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874142,2874143,40.0,1162578,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874143,2874144,23.0,1162578,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874144,2874145,40.0,1162579,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874145,2874146,23.0,1162579,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874146,2874147,40.0,1162580,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874147,2874148,23.0,1162580,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874148,2874149,40.0,1162581,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874149,2874150,23.0,1162581,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874150,2874151,40.0,1162582,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874151,2874152,23.0,1162582,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874152,2874153,40.0,1162583,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874153,2874154,23.0,1162583,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874154,2874155,40.0,1162584,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874155,2874156,23.0,1162584,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874156,2874157,40.0,1162585,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874157,2874158,23.0,1162585,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874158,2874159,40.0,1162586,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874159,2874160,23.0,1162586,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874160,2874161,40.0,1162587,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874161,2874162,23.0,1162587,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874162,2874163,25.0,1162588,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874163,2874164,24.0,1162588,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874164,2874165,26.0,1162589,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22763.0,2129.0 +2874165,2874166,24.0,1162589,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874166,2874167,26.0,1162590,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22758.0,2127.0 +2874167,2874168,24.0,1162590,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874168,2874169,26.0,1162591,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22763.0,2129.0 +2874169,2874170,24.0,1162591,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874170,2874171,26.0,1162592,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22763.0,2129.0 +2874171,2874172,24.0,1162592,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874172,2874173,26.0,1162593,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874173,2874174,28.0,1162593,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874174,2874175,28.0,1162593,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22763.0,2129.0 +2874175,2874176,24.0,1162593,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874176,2874177,26.0,1162594,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874177,2874178,28.0,1162594,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874178,2874179,28.0,1162594,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22758.0,2127.0 +2874179,2874180,24.0,1162594,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874180,2874181,26.0,1162595,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874181,2874182,28.0,1162595,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874182,2874183,28.0,1162595,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22763.0,2129.0 +2874183,2874184,24.0,1162595,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874184,2874185,26.0,1162596,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874185,2874186,28.0,1162596,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874186,2874187,28.0,1162596,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22758.0,2127.0 +2874187,2874188,24.0,1162596,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874188,2874189,26.0,1162597,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874189,2874190,28.0,1162597,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874190,2874191,28.0,1162597,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22763.0,2129.0 +2874191,2874192,24.0,1162597,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874192,2874193,26.0,1162598,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874193,2874194,28.0,1162598,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874194,2874195,28.0,1162598,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22758.0,2127.0 +2874195,2874196,24.0,1162598,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874196,2874197,26.0,1162599,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874197,2874198,28.0,1162599,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874198,2874199,28.0,1162599,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22763.0,2129.0 +2874199,2874200,24.0,1162599,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874200,2874201,31.0,1162600,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22763.0,2129.0 +2874201,2874202,24.0,1162600,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22763.0,2129.0 +2874202,2874203,31.0,1162601,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22763.0,2129.0 +2874203,2874204,24.0,1162601,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22763.0,2129.0 +2874204,2874205,31.0,1162602,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22763.0,2129.0 +2874205,2874206,24.0,1162602,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22763.0,2129.0 +2874206,2874207,27.0,1162603,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22763.0,2129.0 +2874207,2874208,23.0,1162603,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22763.0,2129.0 +2874208,2874209,27.0,1162604,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22763.0,2129.0 +2874209,2874210,23.0,1162604,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22763.0,2129.0 +2874210,2874211,27.0,1162605,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22763.0,2129.0 +2874211,2874212,23.0,1162605,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22763.0,2129.0 +2874212,2874213,27.0,1162606,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22763.0,2129.0 +2874213,2874214,23.0,1162606,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22763.0,2129.0 +2874214,2874215,27.0,1162607,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22758.0,2127.0 +2874215,2874216,23.0,1162607,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22758.0,2127.0 +2874216,2874217,27.0,1162608,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22763.0,2129.0 +2874217,2874218,23.0,1162608,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22763.0,2129.0 +2874218,2874219,27.0,1162609,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22758.0,2127.0 +2874219,2874220,23.0,1162609,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22758.0,2127.0 +2874220,2874221,27.0,1162610,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22763.0,2129.0 +2874221,2874222,23.0,1162610,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22763.0,2129.0 +2874222,2874223,27.0,1162611,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22763.0,2129.0 +2874223,2874224,23.0,1162611,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22763.0,2129.0 +2874224,2874225,27.0,1162612,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22763.0,2129.0 +2874225,2874226,23.0,1162612,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22763.0,2129.0 +2874226,2874227,25.0,1162613,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874227,2874228,22.0,1162613,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874228,2874229,21.0,1162613,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874229,2874230,25.0,1162614,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874230,2874231,22.0,1162614,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874231,2874232,21.0,1162614,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874232,2874233,25.0,1162615,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874233,2874234,22.0,1162615,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874234,2874235,21.0,1162615,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874235,2874236,25.0,1162616,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874236,2874237,22.0,1162616,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874237,2874238,21.0,1162616,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874238,2874239,25.0,1162617,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874239,2874240,22.0,1162617,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874240,2874241,21.0,1162617,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874241,2874242,25.0,1162618,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874242,2874243,22.0,1162618,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874243,2874244,21.0,1162618,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874244,2874245,25.0,1162619,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874245,2874246,22.0,1162619,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874246,2874247,21.0,1162619,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874247,2874248,25.0,1162620,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874248,2874249,22.0,1162620,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874249,2874250,21.0,1162620,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874250,2874251,25.0,1162621,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874251,2874252,22.0,1162621,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874252,2874253,21.0,1162621,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874253,2874254,25.0,1162622,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874254,2874255,22.0,1162622,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874255,2874256,21.0,1162622,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874256,2874257,25.0,1162623,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874257,2874258,22.0,1162623,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874258,2874259,21.0,1162623,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874259,2874260,25.0,1162624,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874260,2874261,22.0,1162624,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874261,2874262,21.0,1162624,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874262,2874263,25.0,1162625,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874263,2874264,22.0,1162625,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874264,2874265,21.0,1162625,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874265,2874266,25.0,1162626,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874266,2874267,22.0,1162626,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874267,2874268,21.0,1162626,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874268,2874269,25.0,1162627,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874269,2874270,22.0,1162627,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874270,2874271,21.0,1162627,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874271,2874272,25.0,1162628,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874272,2874273,22.0,1162628,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874273,2874274,21.0,1162628,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874274,2874275,25.0,1162629,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874275,2874276,22.0,1162629,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874276,2874277,21.0,1162629,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874277,2874278,25.0,1162630,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874278,2874279,22.0,1162630,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874279,2874280,21.0,1162630,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874280,2874281,25.0,1162631,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874281,2874282,22.0,1162631,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874282,2874283,21.0,1162631,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874283,2874284,25.0,1162632,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874284,2874285,22.0,1162632,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874285,2874286,21.0,1162632,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874286,2874287,25.0,1162633,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874287,2874288,22.0,1162633,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874288,2874289,21.0,1162633,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874289,2874290,25.0,1162634,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874290,2874291,22.0,1162634,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874291,2874292,21.0,1162634,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874292,2874293,25.0,1162635,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874293,2874294,22.0,1162635,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874294,2874295,21.0,1162635,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874295,2874296,25.0,1162636,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874296,2874297,22.0,1162636,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874297,2874298,21.0,1162636,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874298,2874299,25.0,1162637,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874299,2874300,22.0,1162637,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874300,2874301,21.0,1162637,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874301,2874302,25.0,1162638,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874302,2874303,22.0,1162638,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874303,2874304,21.0,1162638,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874304,2874305,25.0,1162639,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874305,2874306,22.0,1162639,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874306,2874307,21.0,1162639,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874307,2874308,25.0,1162640,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874308,2874309,22.0,1162640,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874309,2874310,21.0,1162640,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874310,2874311,25.0,1162641,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874311,2874312,22.0,1162641,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874312,2874313,21.0,1162641,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874313,2874314,25.0,1162642,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874314,2874315,22.0,1162642,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874315,2874316,21.0,1162642,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874316,2874317,25.0,1162643,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874317,2874318,22.0,1162643,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874318,2874319,21.0,1162643,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874319,2874320,25.0,1162644,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874320,2874321,22.0,1162644,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874321,2874322,21.0,1162644,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874322,2874323,25.0,1162645,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874323,2874324,22.0,1162645,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874324,2874325,21.0,1162645,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874325,2874326,25.0,1162646,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874326,2874327,22.0,1162646,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874327,2874328,21.0,1162646,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874328,2874329,25.0,1162647,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874329,2874330,22.0,1162647,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874330,2874331,21.0,1162647,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874331,2874332,25.0,1162648,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874332,2874333,22.0,1162648,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874333,2874334,21.0,1162648,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874334,2874335,25.0,1162649,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874335,2874336,22.0,1162649,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874336,2874337,21.0,1162649,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874337,2874338,25.0,1162650,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874338,2874339,22.0,1162650,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874339,2874340,21.0,1162650,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874340,2874341,25.0,1162651,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874341,2874342,22.0,1162651,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874342,2874343,21.0,1162651,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874343,2874344,25.0,1162652,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874344,2874345,22.0,1162652,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874345,2874346,21.0,1162652,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874346,2874347,25.0,1162653,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874347,2874348,22.0,1162653,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874348,2874349,21.0,1162653,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874349,2874350,25.0,1162654,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874350,2874351,22.0,1162654,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874351,2874352,21.0,1162654,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874352,2874353,25.0,1162655,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874353,2874354,22.0,1162655,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874354,2874355,21.0,1162655,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874355,2874356,25.0,1162656,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874356,2874357,22.0,1162656,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874357,2874358,21.0,1162656,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874358,2874359,25.0,1162657,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874359,2874360,22.0,1162657,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874360,2874361,21.0,1162657,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874361,2874362,25.0,1162658,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874362,2874363,22.0,1162658,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874363,2874364,21.0,1162658,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874364,2874365,25.0,1162659,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874365,2874366,22.0,1162659,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874366,2874367,21.0,1162659,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874367,2874368,25.0,1162660,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874368,2874369,22.0,1162660,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874369,2874370,21.0,1162660,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874370,2874371,25.0,1162661,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874371,2874372,22.0,1162661,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874372,2874373,21.0,1162661,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874373,2874374,25.0,1162662,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874374,2874375,22.0,1162662,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874375,2874376,21.0,1162662,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874376,2874377,25.0,1162663,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874377,2874378,22.0,1162663,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874378,2874379,21.0,1162663,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874379,2874380,25.0,1162664,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874380,2874381,22.0,1162664,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874381,2874382,21.0,1162664,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874382,2874383,25.0,1162665,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874383,2874384,22.0,1162665,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874384,2874385,21.0,1162665,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874385,2874386,25.0,1162666,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874386,2874387,22.0,1162666,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874387,2874388,21.0,1162666,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874388,2874389,25.0,1162667,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874389,2874390,22.0,1162667,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874390,2874391,21.0,1162667,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874391,2874392,25.0,1162668,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874392,2874393,22.0,1162668,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874393,2874394,21.0,1162668,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874394,2874395,25.0,1162669,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874395,2874396,22.0,1162669,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874396,2874397,21.0,1162669,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874397,2874398,25.0,1162670,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874398,2874399,22.0,1162670,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874399,2874400,21.0,1162670,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874400,2874401,25.0,1162671,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874401,2874402,22.0,1162671,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874402,2874403,21.0,1162671,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874403,2874404,25.0,1162672,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874404,2874405,22.0,1162672,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874405,2874406,21.0,1162672,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874406,2874407,25.0,1162673,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874407,2874408,22.0,1162673,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874408,2874409,21.0,1162673,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874409,2874410,25.0,1162674,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874410,2874411,22.0,1162674,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874411,2874412,21.0,1162674,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874412,2874413,25.0,1162675,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874413,2874414,22.0,1162675,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874414,2874415,21.0,1162675,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874415,2874416,25.0,1162676,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874416,2874417,22.0,1162676,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874417,2874418,21.0,1162676,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874418,2874419,25.0,1162677,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874419,2874420,22.0,1162677,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874420,2874421,21.0,1162677,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874421,2874422,25.0,1162678,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874422,2874423,22.0,1162678,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874423,2874424,21.0,1162678,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874424,2874425,25.0,1162679,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874425,2874426,22.0,1162679,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874426,2874427,21.0,1162679,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874427,2874428,25.0,1162680,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874428,2874429,22.0,1162680,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874429,2874430,21.0,1162680,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874430,2874431,25.0,1162681,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874431,2874432,22.0,1162681,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874432,2874433,21.0,1162681,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874433,2874434,25.0,1162682,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874434,2874435,22.0,1162682,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874435,2874436,21.0,1162682,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874436,2874437,25.0,1162683,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874437,2874438,22.0,1162683,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874438,2874439,21.0,1162683,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874439,2874440,25.0,1162684,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874440,2874441,22.0,1162684,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874441,2874442,21.0,1162684,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874442,2874443,25.0,1162685,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874443,2874444,22.0,1162685,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874444,2874445,21.0,1162685,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874445,2874446,25.0,1162686,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874446,2874447,22.0,1162686,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874447,2874448,21.0,1162686,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874448,2874449,25.0,1162687,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874449,2874450,22.0,1162687,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874450,2874451,21.0,1162687,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874451,2874452,25.0,1162688,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874452,2874453,22.0,1162688,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874453,2874454,21.0,1162688,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874454,2874455,25.0,1162689,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874455,2874456,22.0,1162689,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874456,2874457,21.0,1162689,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874457,2874458,25.0,1162690,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874458,2874459,22.0,1162690,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874459,2874460,21.0,1162690,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874460,2874461,27.0,1162691,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874461,2874462,24.0,1162691,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22758.0,2127.0 +2874462,2874463,27.0,1162692,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874463,2874464,24.0,1162692,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22758.0,2127.0 +2874464,2874465,27.0,1162693,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874465,2874466,24.0,1162693,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22763.0,2129.0 +2874466,2874467,27.0,1162694,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874467,2874468,24.0,1162694,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22758.0,2127.0 +2874468,2874469,27.0,1162695,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874469,2874470,24.0,1162695,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22758.0,2127.0 +2874470,2874471,27.0,1162696,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874471,2874472,24.0,1162696,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22758.0,2127.0 +2874472,2874473,27.0,1162697,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874473,2874474,24.0,1162697,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22763.0,2129.0 +2874474,2874475,27.0,1162698,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874475,2874476,24.0,1162698,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22763.0,2129.0 +2874476,2874477,27.0,1162699,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874477,2874478,24.0,1162699,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22763.0,2129.0 +2874478,2874479,27.0,1162700,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874479,2874480,24.0,1162700,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22758.0,2127.0 +2874480,2874481,27.0,1162701,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874481,2874482,24.0,1162701,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22763.0,2129.0 +2874482,2874483,27.0,1162702,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874483,2874484,24.0,1162702,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22763.0,2129.0 +2874484,2874485,27.0,1162703,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874485,2874486,24.0,1162703,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22758.0,2127.0 +2874486,2874487,27.0,1162704,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874487,2874488,24.0,1162704,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22763.0,2129.0 +2874488,2874489,27.0,1162705,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874489,2874490,24.0,1162705,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22758.0,2127.0 +2874490,2874491,27.0,1162706,1,2,0,1,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874491,2874492,24.0,1162706,2,2,15,1,1.0,42.0,1.0,-9.0,4.0,722Z,16.0,22763.0,2129.0 +2874492,2874493,31.0,1162707,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874493,2874494,24.0,1162707,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874494,2874495,31.0,1162708,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874495,2874496,24.0,1162708,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874496,2874497,31.0,1162709,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874497,2874498,24.0,1162709,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874498,2874499,31.0,1162710,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874499,2874500,24.0,1162710,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874500,2874501,31.0,1162711,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874501,2874502,24.0,1162711,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874502,2874503,31.0,1162712,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874503,2874504,24.0,1162712,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874504,2874505,31.0,1162713,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874505,2874506,24.0,1162713,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874506,2874507,31.0,1162714,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874507,2874508,24.0,1162714,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874508,2874509,31.0,1162715,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874509,2874510,24.0,1162715,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874510,2874511,31.0,1162716,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874511,2874512,24.0,1162716,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874512,2874513,31.0,1162717,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874513,2874514,24.0,1162717,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874514,2874515,31.0,1162718,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874515,2874516,24.0,1162718,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874516,2874517,31.0,1162719,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874517,2874518,24.0,1162719,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874518,2874519,31.0,1162720,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874519,2874520,24.0,1162720,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874520,2874521,31.0,1162721,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874521,2874522,24.0,1162721,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874522,2874523,31.0,1162722,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874523,2874524,24.0,1162722,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874524,2874525,31.0,1162723,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874525,2874526,24.0,1162723,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874526,2874527,31.0,1162724,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874527,2874528,24.0,1162724,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874528,2874529,31.0,1162725,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874529,2874530,24.0,1162725,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874530,2874531,31.0,1162726,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874531,2874532,24.0,1162726,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874532,2874533,31.0,1162727,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874533,2874534,24.0,1162727,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874534,2874535,31.0,1162728,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874535,2874536,24.0,1162728,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22758.0,2127.0 +2874536,2874537,31.0,1162729,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874537,2874538,24.0,1162729,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874538,2874539,31.0,1162730,1,1,0,1,1.0,40.0,4.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874539,2874540,24.0,1162730,2,2,1,1,6.0,-9.0,-9.0,-9.0,4.0,6111,13.0,22763.0,2129.0 +2874540,2874541,20.0,1162731,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874541,2874542,20.0,1162732,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874542,2874543,24.0,1162733,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874543,2874544,20.0,1162734,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874544,2874545,24.0,1162735,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874545,2874546,20.0,1162736,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874546,2874547,20.0,1162737,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874547,2874548,20.0,1162738,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874548,2874549,20.0,1162739,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874549,2874550,20.0,1162740,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874550,2874551,20.0,1162741,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874551,2874552,20.0,1162742,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874552,2874553,20.0,1162743,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874553,2874554,20.0,1162744,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874554,2874555,24.0,1162745,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874555,2874556,24.0,1162746,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874556,2874557,20.0,1162747,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874557,2874558,20.0,1162748,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874558,2874559,20.0,1162749,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874559,2874560,20.0,1162750,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874560,2874561,20.0,1162751,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874561,2874562,24.0,1162752,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874562,2874563,20.0,1162753,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874563,2874564,20.0,1162754,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874564,2874565,24.0,1162755,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2874565,2874566,20.0,1162756,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874566,2874567,20.0,1162757,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874567,2874568,24.0,1162758,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874568,2874569,20.0,1162759,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874569,2874570,20.0,1162760,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874570,2874571,24.0,1162761,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874571,2874572,24.0,1162762,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874572,2874573,20.0,1162763,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874573,2874574,20.0,1162764,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874574,2874575,20.0,1162765,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874575,2874576,20.0,1162766,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874576,2874577,20.0,1162767,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874577,2874578,24.0,1162768,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2874578,2874579,20.0,1162769,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874579,2874580,20.0,1162770,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874580,2874581,20.0,1162771,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22758.0,2127.0 +2874581,2874582,20.0,1162772,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874582,2874583,20.0,1162773,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2874583,2874584,24.0,1162774,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874584,2874585,24.0,1162775,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874585,2874586,24.0,1162776,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874586,2874587,24.0,1162777,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874587,2874588,24.0,1162778,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874588,2874589,24.0,1162779,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874589,2874590,24.0,1162780,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874590,2874591,24.0,1162781,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874591,2874592,24.0,1162782,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874592,2874593,24.0,1162783,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874593,2874594,24.0,1162784,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22758.0,2127.0 +2874594,2874595,24.0,1162785,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2874595,2874596,22.0,1162786,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874596,2874597,22.0,1162787,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874597,2874598,22.0,1162788,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874598,2874599,22.0,1162789,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874599,2874600,22.0,1162790,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874600,2874601,22.0,1162791,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874601,2874602,22.0,1162792,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874602,2874603,22.0,1162793,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874603,2874604,22.0,1162794,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874604,2874605,22.0,1162795,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874605,2874606,22.0,1162796,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874606,2874607,22.0,1162797,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874607,2874608,22.0,1162798,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874608,2874609,22.0,1162799,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874609,2874610,22.0,1162800,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874610,2874611,22.0,1162801,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874611,2874612,22.0,1162802,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874612,2874613,22.0,1162803,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874613,2874614,22.0,1162804,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874614,2874615,22.0,1162805,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874615,2874616,22.0,1162806,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874616,2874617,22.0,1162807,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874617,2874618,22.0,1162808,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874618,2874619,23.0,1162809,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22763.0,2129.0 +2874619,2874620,26.0,1162809,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22763.0,2129.0 +2874620,2874621,23.0,1162809,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22763.0,2129.0 +2874621,2874622,23.0,1162809,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22763.0,2129.0 +2874622,2874623,24.0,1162810,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874623,2874624,25.0,1162810,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874624,2874625,24.0,1162811,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874625,2874626,25.0,1162811,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874626,2874627,24.0,1162812,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874627,2874628,25.0,1162812,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874628,2874629,24.0,1162813,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874629,2874630,25.0,1162813,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874630,2874631,24.0,1162814,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874631,2874632,25.0,1162814,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874632,2874633,24.0,1162815,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874633,2874634,25.0,1162815,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874634,2874635,24.0,1162816,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874635,2874636,25.0,1162816,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874636,2874637,24.0,1162817,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874637,2874638,25.0,1162817,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874638,2874639,24.0,1162818,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874639,2874640,25.0,1162818,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874640,2874641,24.0,1162819,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874641,2874642,25.0,1162819,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874642,2874643,24.0,1162820,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874643,2874644,25.0,1162820,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874644,2874645,24.0,1162821,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874645,2874646,25.0,1162821,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874646,2874647,24.0,1162822,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874647,2874648,25.0,1162822,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874648,2874649,24.0,1162823,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874649,2874650,25.0,1162823,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874650,2874651,24.0,1162824,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874651,2874652,25.0,1162824,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874652,2874653,24.0,1162825,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874653,2874654,25.0,1162825,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874654,2874655,24.0,1162826,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874655,2874656,25.0,1162826,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874656,2874657,24.0,1162827,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874657,2874658,25.0,1162827,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874658,2874659,24.0,1162828,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874659,2874660,25.0,1162828,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874660,2874661,24.0,1162829,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874661,2874662,25.0,1162829,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874662,2874663,24.0,1162830,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874663,2874664,25.0,1162830,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874664,2874665,24.0,1162831,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874665,2874666,25.0,1162831,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874666,2874667,24.0,1162832,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874667,2874668,25.0,1162832,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874668,2874669,24.0,1162833,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874669,2874670,25.0,1162833,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874670,2874671,24.0,1162834,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874671,2874672,25.0,1162834,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874672,2874673,24.0,1162835,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874673,2874674,25.0,1162835,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874674,2874675,24.0,1162836,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874675,2874676,25.0,1162836,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874676,2874677,24.0,1162837,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874677,2874678,25.0,1162837,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874678,2874679,24.0,1162838,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874679,2874680,25.0,1162838,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874680,2874681,24.0,1162839,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874681,2874682,25.0,1162839,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874682,2874683,24.0,1162840,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874683,2874684,25.0,1162840,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874684,2874685,24.0,1162841,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874685,2874686,25.0,1162841,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874686,2874687,24.0,1162842,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874687,2874688,25.0,1162842,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874688,2874689,24.0,1162843,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874689,2874690,25.0,1162843,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874690,2874691,24.0,1162844,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874691,2874692,25.0,1162844,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874692,2874693,24.0,1162845,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874693,2874694,25.0,1162845,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874694,2874695,24.0,1162846,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874695,2874696,25.0,1162846,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874696,2874697,24.0,1162847,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874697,2874698,25.0,1162847,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874698,2874699,24.0,1162848,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874699,2874700,25.0,1162848,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874700,2874701,24.0,1162849,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874701,2874702,25.0,1162849,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874702,2874703,24.0,1162850,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874703,2874704,25.0,1162850,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874704,2874705,24.0,1162851,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874705,2874706,25.0,1162851,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874706,2874707,24.0,1162852,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874707,2874708,25.0,1162852,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874708,2874709,24.0,1162853,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874709,2874710,25.0,1162853,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874710,2874711,24.0,1162854,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874711,2874712,25.0,1162854,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874712,2874713,24.0,1162855,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874713,2874714,25.0,1162855,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874714,2874715,24.0,1162856,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874715,2874716,25.0,1162856,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874716,2874717,24.0,1162857,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874717,2874718,25.0,1162857,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874718,2874719,24.0,1162858,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874719,2874720,25.0,1162858,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874720,2874721,24.0,1162859,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874721,2874722,25.0,1162859,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874722,2874723,24.0,1162860,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874723,2874724,25.0,1162860,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874724,2874725,24.0,1162861,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874725,2874726,25.0,1162861,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874726,2874727,24.0,1162862,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874727,2874728,25.0,1162862,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874728,2874729,24.0,1162863,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874729,2874730,25.0,1162863,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874730,2874731,24.0,1162864,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874731,2874732,25.0,1162864,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874732,2874733,24.0,1162865,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874733,2874734,25.0,1162865,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874734,2874735,24.0,1162866,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874735,2874736,25.0,1162866,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874736,2874737,24.0,1162867,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874737,2874738,25.0,1162867,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874738,2874739,24.0,1162868,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874739,2874740,25.0,1162868,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874740,2874741,24.0,1162869,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874741,2874742,25.0,1162869,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874742,2874743,24.0,1162870,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874743,2874744,25.0,1162870,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874744,2874745,24.0,1162871,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874745,2874746,25.0,1162871,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874746,2874747,24.0,1162872,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874747,2874748,25.0,1162872,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874748,2874749,23.0,1162873,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22763.0,2129.0 +2874749,2874750,26.0,1162873,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22763.0,2129.0 +2874750,2874751,23.0,1162874,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22758.0,2127.0 +2874751,2874752,26.0,1162874,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22758.0,2127.0 +2874752,2874753,23.0,1162875,1,2,0,1,1.0,35.0,1.0,15.0,4.0,2213M,7.0,22763.0,2129.0 +2874753,2874754,26.0,1162875,2,1,13,1,1.0,40.0,1.0,15.0,4.0,4411,5.0,22763.0,2129.0 +2874754,2874755,24.0,1162876,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22758.0,2127.0 +2874755,2874756,24.0,1162877,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874756,2874757,24.0,1162878,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874757,2874758,24.0,1162879,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22758.0,2127.0 +2874758,2874759,24.0,1162880,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22758.0,2127.0 +2874759,2874760,24.0,1162881,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22758.0,2127.0 +2874760,2874761,24.0,1162882,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874761,2874762,24.0,1162883,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874762,2874763,24.0,1162884,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22758.0,2127.0 +2874763,2874764,24.0,1162885,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874764,2874765,24.0,1162886,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874765,2874766,24.0,1162887,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874766,2874767,24.0,1162888,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874767,2874768,24.0,1162889,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874768,2874769,24.0,1162890,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874769,2874770,24.0,1162891,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22758.0,2127.0 +2874770,2874771,24.0,1162892,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874771,2874772,24.0,1162893,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22758.0,2127.0 +2874772,2874773,24.0,1162894,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874773,2874774,24.0,1162895,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2874774,2874775,22.0,1162896,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22758.0,2127.0 +2874775,2874776,22.0,1162897,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22758.0,2127.0 +2874776,2874777,22.0,1162898,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22763.0,2129.0 +2874777,2874778,22.0,1162899,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22763.0,2129.0 +2874778,2874779,22.0,1162900,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22763.0,2129.0 +2874779,2874780,22.0,1162901,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22758.0,2127.0 +2874780,2874781,22.0,1162902,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22763.0,2129.0 +2874781,2874782,22.0,1162903,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22758.0,2127.0 +2874782,2874783,22.0,1162904,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22763.0,2129.0 +2874783,2874784,22.0,1162905,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22758.0,2127.0 +2874784,2874785,22.0,1162906,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22758.0,2127.0 +2874785,2874786,22.0,1162907,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22763.0,2129.0 +2874786,2874787,22.0,1162908,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22763.0,2129.0 +2874787,2874788,22.0,1162909,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22758.0,2127.0 +2874788,2874789,22.0,1162910,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22758.0,2127.0 +2874789,2874790,22.0,1162911,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22763.0,2129.0 +2874790,2874791,22.0,1162912,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22758.0,2127.0 +2874791,2874792,24.0,1162913,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874792,2874793,23.0,1162914,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874793,2874794,21.0,1162915,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874794,2874795,22.0,1162916,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874795,2874796,21.0,1162917,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22763.0,2129.0 +2874796,2874797,24.0,1162918,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874797,2874798,21.0,1162919,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +2874798,2874799,21.0,1162920,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22763.0,2129.0 +2874799,2874800,22.0,1162921,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874800,2874801,22.0,1162922,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874801,2874802,24.0,1162923,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874802,2874803,21.0,1162924,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22763.0,2129.0 +2874803,2874804,22.0,1162925,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874804,2874805,21.0,1162926,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874805,2874806,21.0,1162927,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874806,2874807,23.0,1162928,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874807,2874808,23.0,1162929,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874808,2874809,22.0,1162930,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874809,2874810,21.0,1162931,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22758.0,2127.0 +2874810,2874811,21.0,1162932,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874811,2874812,23.0,1162933,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874812,2874813,24.0,1162934,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874813,2874814,21.0,1162935,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22763.0,2129.0 +2874814,2874815,21.0,1162936,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22763.0,2129.0 +2874815,2874816,23.0,1162937,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874816,2874817,23.0,1162938,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874817,2874818,21.0,1162939,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874818,2874819,23.0,1162940,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874819,2874820,21.0,1162941,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22758.0,2127.0 +2874820,2874821,21.0,1162942,1,2,0,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874821,2874822,21.0,1162943,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874822,2874823,22.0,1162944,1,2,0,1,1.0,15.0,2.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874823,2874824,21.0,1162945,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +2874824,2874825,21.0,1162946,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22763.0,2129.0 +2874825,2874826,24.0,1162947,1,2,0,1,1.0,9.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874826,2874827,23.0,1162948,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874827,2874828,23.0,1162949,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +2874828,2874829,23.0,1162950,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874829,2874830,23.0,1162951,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874830,2874831,21.0,1162952,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874831,2874832,23.0,1162953,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874832,2874833,23.0,1162954,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874833,2874834,21.0,1162955,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22763.0,2129.0 +2874834,2874835,21.0,1162956,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22758.0,2127.0 +2874835,2874836,23.0,1162957,1,2,0,1,1.0,40.0,5.0,-9.0,4.0,611M1,13.0,22763.0,2129.0 +2874836,2874837,23.0,1162958,1,2,0,1,1.0,35.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874837,2874838,21.0,1162959,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22763.0,2129.0 +2874838,2874839,22.0,1162960,1,2,0,1,1.0,6.0,4.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2874839,2874840,21.0,1162961,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874840,2874841,21.0,1162962,1,2,0,1,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22763.0,2129.0 +2874841,2874842,21.0,1162963,1,2,0,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874842,2874843,23.0,1162964,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874843,2874844,24.0,1162965,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +2874844,2874845,20.0,1162966,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22763.0,2129.0 +2874845,2874846,20.0,1162967,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +2874846,2874847,24.0,1162968,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +2874847,2874848,20.0,1162969,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22758.0,2127.0 +2874848,2874849,20.0,1162970,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +2874849,2874850,24.0,1162971,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +2874850,2874851,20.0,1162972,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22763.0,2129.0 +2874851,2874852,20.0,1162973,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874852,2874853,20.0,1162974,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22758.0,2127.0 +2874853,2874854,20.0,1162975,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22763.0,2129.0 +2874854,2874855,23.0,1162976,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +2874855,2874856,24.0,1162977,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22758.0,2127.0 +2874856,2874857,23.0,1162978,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22763.0,2129.0 +2874857,2874858,23.0,1162979,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22763.0,2129.0 +2874858,2874859,23.0,1162980,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22763.0,2129.0 +2874859,2874860,23.0,1162981,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22763.0,2129.0 +2874860,2874861,23.0,1162982,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22763.0,2129.0 +2874861,2874862,23.0,1162983,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22763.0,2129.0 +2874862,2874863,23.0,1162984,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22758.0,2127.0 +2874863,2874864,23.0,1162985,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22763.0,2129.0 +2874864,2874865,23.0,1162986,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22758.0,2127.0 +2874865,2874866,23.0,1162987,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22763.0,2129.0 +2874866,2874867,23.0,1162988,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22758.0,2127.0 +2874867,2874868,23.0,1162989,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22758.0,2127.0 +2874868,2874869,23.0,1162990,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22763.0,2129.0 +2874869,2874870,23.0,1162991,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22758.0,2127.0 +2874870,2874871,23.0,1162992,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22758.0,2127.0 +2874871,2874872,23.0,1162993,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22763.0,2129.0 +2874872,2874873,94.0,1162994,1,2,0,4,6.0,-9.0,-9.0,-9.0,2.0,-9,0.0,22759.0,2128.0 +2874873,2874874,85.0,1162995,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22760.0,2128.0 +2874874,2874875,85.0,1162996,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22761.0,2128.0 +2874875,2874876,89.0,1162997,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22760.0,2128.0 +2874876,2874877,85.0,1162998,1,2,0,4,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22758.0,2127.0 +2874877,2874878,81.0,1162999,1,2,0,1,6.0,-9.0,-9.0,-9.0,4.0,-9,0.0,22759.0,2128.0 +2874878,2874879,46.0,1163000,1,2,0,4,1.0,60.0,2.0,-9.0,4.0,812112,17.0,22759.0,2128.0 +2874879,2874880,18.0,1163000,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2874880,2874881,46.0,1163001,1,2,0,4,1.0,60.0,2.0,-9.0,4.0,812112,17.0,22760.0,2128.0 +2874881,2874882,18.0,1163001,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2874882,2874883,46.0,1163002,1,2,0,4,1.0,60.0,2.0,-9.0,4.0,812112,17.0,22760.0,2128.0 +2874883,2874884,18.0,1163002,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2874884,2874885,46.0,1163003,1,2,0,4,1.0,60.0,2.0,-9.0,4.0,812112,17.0,22761.0,2128.0 +2874885,2874886,18.0,1163003,2,1,2,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2874886,2874887,49.0,1163004,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22761.0,2128.0 +2874887,2874888,52.0,1163004,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22761.0,2128.0 +2874888,2874889,18.0,1163004,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22761.0,2128.0 +2874889,2874890,18.0,1163004,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22761.0,2128.0 +2874890,2874891,49.0,1163005,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22760.0,2128.0 +2874891,2874892,52.0,1163005,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22760.0,2128.0 +2874892,2874893,18.0,1163005,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22760.0,2128.0 +2874893,2874894,18.0,1163005,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22760.0,2128.0 +2874894,2874895,49.0,1163006,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,5417,10.0,22760.0,2128.0 +2874895,2874896,52.0,1163006,2,2,1,1,1.0,30.0,1.0,-9.0,4.0,6111,13.0,22760.0,2128.0 +2874896,2874897,18.0,1163006,3,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22760.0,2128.0 +2874897,2874898,18.0,1163006,4,2,2,1,6.0,-9.0,-9.0,14.0,4.0,-9,0.0,22760.0,2128.0 +2874898,2874899,54.0,1163007,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22760.0,2128.0 +2874899,2874900,54.0,1163007,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22760.0,2128.0 +2874900,2874901,22.0,1163007,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22760.0,2128.0 +2874901,2874902,23.0,1163007,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22760.0,2128.0 +2874902,2874903,54.0,1163008,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2874903,2874904,54.0,1163008,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2874904,2874905,22.0,1163008,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22761.0,2128.0 +2874905,2874906,23.0,1163008,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22761.0,2128.0 +2874906,2874907,54.0,1163009,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22759.0,2128.0 +2874907,2874908,54.0,1163009,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22759.0,2128.0 +2874908,2874909,22.0,1163009,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22759.0,2128.0 +2874909,2874910,23.0,1163009,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22759.0,2128.0 +2874910,2874911,54.0,1163010,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22759.0,2128.0 +2874911,2874912,54.0,1163010,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22759.0,2128.0 +2874912,2874913,22.0,1163010,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22759.0,2128.0 +2874913,2874914,23.0,1163010,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22759.0,2128.0 +2874914,2874915,54.0,1163011,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,611M1,13.0,22759.0,2128.0 +2874915,2874916,54.0,1163011,2,1,1,1,1.0,60.0,1.0,-9.0,4.0,611M1,13.0,22759.0,2128.0 +2874916,2874917,22.0,1163011,3,2,2,1,1.0,42.0,1.0,-9.0,4.0,5121,8.0,22759.0,2128.0 +2874917,2874918,23.0,1163011,4,2,15,1,1.0,30.0,1.0,-9.0,4.0,611M1,13.0,22759.0,2128.0 +2874918,2874919,49.0,1163012,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22760.0,2128.0 +2874919,2874920,50.0,1163012,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22760.0,2128.0 +2874920,2874921,23.0,1163012,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22760.0,2128.0 +2874921,2874922,49.0,1163013,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22760.0,2128.0 +2874922,2874923,50.0,1163013,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22760.0,2128.0 +2874923,2874924,23.0,1163013,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22760.0,2128.0 +2874924,2874925,49.0,1163014,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22760.0,2128.0 +2874925,2874926,50.0,1163014,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22760.0,2128.0 +2874926,2874927,23.0,1163014,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22760.0,2128.0 +2874927,2874928,49.0,1163015,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22760.0,2128.0 +2874928,2874929,50.0,1163015,2,1,1,1,1.0,40.0,1.0,-9.0,4.0,621M,14.0,22760.0,2128.0 +2874929,2874930,23.0,1163015,3,1,2,1,1.0,30.0,4.0,-9.0,4.0,23,2.0,22760.0,2128.0 +2874930,2874931,26.0,1163016,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2874931,2874932,24.0,1163016,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2874932,2874933,26.0,1163017,1,2,0,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2874933,2874934,24.0,1163017,2,2,12,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2874934,2874935,40.0,1163018,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2874935,2874936,23.0,1163018,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874936,2874937,40.0,1163019,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2874937,2874938,23.0,1163019,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874938,2874939,40.0,1163020,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2874939,2874940,23.0,1163020,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2874940,2874941,40.0,1163021,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2874941,2874942,23.0,1163021,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2874942,2874943,40.0,1163022,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2874943,2874944,23.0,1163022,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2874944,2874945,40.0,1163023,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2874945,2874946,23.0,1163023,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2874946,2874947,40.0,1163024,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2874947,2874948,23.0,1163024,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874948,2874949,40.0,1163025,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2874949,2874950,23.0,1163025,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874950,2874951,40.0,1163026,1,1,0,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2874951,2874952,23.0,1163026,2,1,12,1,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2874952,2874953,25.0,1163027,1,1,0,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2874953,2874954,22.0,1163027,2,1,12,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2874954,2874955,25.0,1163028,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2874955,2874956,24.0,1163028,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2874956,2874957,25.0,1163029,1,1,0,4,2.0,15.0,5.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2874957,2874958,24.0,1163029,2,1,12,4,6.0,20.0,5.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2874958,2874959,26.0,1163030,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874959,2874960,24.0,1163030,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874960,2874961,26.0,1163031,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874961,2874962,24.0,1163031,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874962,2874963,26.0,1163032,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874963,2874964,24.0,1163032,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874964,2874965,26.0,1163033,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874965,2874966,24.0,1163033,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874966,2874967,26.0,1163034,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874967,2874968,24.0,1163034,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874968,2874969,26.0,1163035,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22759.0,2128.0 +2874969,2874970,24.0,1163035,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2874970,2874971,26.0,1163036,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874971,2874972,24.0,1163036,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874972,2874973,26.0,1163037,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874973,2874974,24.0,1163037,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874974,2874975,26.0,1163038,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2874975,2874976,24.0,1163038,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2874976,2874977,26.0,1163039,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874977,2874978,24.0,1163039,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874978,2874979,26.0,1163040,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22759.0,2128.0 +2874979,2874980,24.0,1163040,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2874980,2874981,26.0,1163041,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2874981,2874982,24.0,1163041,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2874982,2874983,26.0,1163042,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874983,2874984,24.0,1163042,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874984,2874985,26.0,1163043,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22759.0,2128.0 +2874985,2874986,24.0,1163043,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2874986,2874987,26.0,1163044,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22759.0,2128.0 +2874987,2874988,24.0,1163044,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2874988,2874989,26.0,1163045,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874989,2874990,24.0,1163045,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874990,2874991,26.0,1163046,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874991,2874992,24.0,1163046,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874992,2874993,26.0,1163047,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874993,2874994,24.0,1163047,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874994,2874995,26.0,1163048,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874995,2874996,24.0,1163048,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874996,2874997,26.0,1163049,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874997,2874998,24.0,1163049,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2874998,2874999,26.0,1163050,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2874999,2875000,24.0,1163050,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875000,2875001,26.0,1163051,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2875001,2875002,24.0,1163051,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875002,2875003,26.0,1163052,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2875003,2875004,24.0,1163052,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875004,2875005,26.0,1163053,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2875005,2875006,24.0,1163053,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875006,2875007,26.0,1163054,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2875007,2875008,24.0,1163054,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2875008,2875009,26.0,1163055,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2875009,2875010,24.0,1163055,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2875010,2875011,26.0,1163056,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2875011,2875012,24.0,1163056,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875012,2875013,26.0,1163057,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2875013,2875014,24.0,1163057,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2875014,2875015,26.0,1163058,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22759.0,2128.0 +2875015,2875016,24.0,1163058,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2875016,2875017,26.0,1163059,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22759.0,2128.0 +2875017,2875018,24.0,1163059,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2875018,2875019,26.0,1163060,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22759.0,2128.0 +2875019,2875020,24.0,1163060,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2875020,2875021,26.0,1163061,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2875021,2875022,24.0,1163061,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875022,2875023,26.0,1163062,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2875023,2875024,24.0,1163062,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2875024,2875025,26.0,1163063,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2875025,2875026,24.0,1163063,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875026,2875027,26.0,1163064,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22759.0,2128.0 +2875027,2875028,24.0,1163064,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22759.0,2128.0 +2875028,2875029,26.0,1163065,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2875029,2875030,24.0,1163065,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875030,2875031,26.0,1163066,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22761.0,2128.0 +2875031,2875032,24.0,1163066,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2875032,2875033,26.0,1163067,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22758.0,2127.0 +2875033,2875034,24.0,1163067,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22758.0,2127.0 +2875034,2875035,26.0,1163068,1,1,0,4,1.0,40.0,2.0,-9.0,4.0,333MS,3.0,22760.0,2128.0 +2875035,2875036,24.0,1163068,2,1,5,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875036,2875037,26.0,1163069,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2875037,2875038,28.0,1163069,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2875038,2875039,28.0,1163069,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22763.0,2129.0 +2875039,2875040,24.0,1163069,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2875040,2875041,26.0,1163070,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875041,2875042,28.0,1163070,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875042,2875043,28.0,1163070,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22761.0,2128.0 +2875043,2875044,24.0,1163070,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875044,2875045,26.0,1163071,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875045,2875046,28.0,1163071,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875046,2875047,28.0,1163071,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22761.0,2128.0 +2875047,2875048,24.0,1163071,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875048,2875049,26.0,1163072,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875049,2875050,28.0,1163072,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875050,2875051,28.0,1163072,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22759.0,2128.0 +2875051,2875052,24.0,1163072,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875052,2875053,26.0,1163073,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875053,2875054,28.0,1163073,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875054,2875055,28.0,1163073,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22760.0,2128.0 +2875055,2875056,24.0,1163073,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875056,2875057,26.0,1163074,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875057,2875058,28.0,1163074,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875058,2875059,28.0,1163074,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22760.0,2128.0 +2875059,2875060,24.0,1163074,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875060,2875061,26.0,1163075,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875061,2875062,28.0,1163075,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875062,2875063,28.0,1163075,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22760.0,2128.0 +2875063,2875064,24.0,1163075,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875064,2875065,26.0,1163076,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875065,2875066,28.0,1163076,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875066,2875067,28.0,1163076,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22759.0,2128.0 +2875067,2875068,24.0,1163076,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875068,2875069,26.0,1163077,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875069,2875070,28.0,1163077,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875070,2875071,28.0,1163077,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22760.0,2128.0 +2875071,2875072,24.0,1163077,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875072,2875073,26.0,1163078,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875073,2875074,28.0,1163078,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875074,2875075,28.0,1163078,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22759.0,2128.0 +2875075,2875076,24.0,1163078,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875076,2875077,26.0,1163079,1,2,0,1,1.0,60.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875077,2875078,28.0,1163079,2,2,12,1,1.0,30.0,6.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875078,2875079,28.0,1163079,3,1,12,2,1.0,40.0,1.0,-9.0,4.0,5617Z,12.0,22761.0,2128.0 +2875079,2875080,24.0,1163079,4,2,12,1,1.0,70.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875080,2875081,31.0,1163080,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875081,2875082,24.0,1163080,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875082,2875083,31.0,1163081,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875083,2875084,24.0,1163081,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875084,2875085,31.0,1163082,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875085,2875086,24.0,1163082,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875086,2875087,31.0,1163083,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875087,2875088,24.0,1163083,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875088,2875089,31.0,1163084,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875089,2875090,24.0,1163084,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875090,2875091,31.0,1163085,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875091,2875092,24.0,1163085,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875092,2875093,31.0,1163086,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875093,2875094,24.0,1163086,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875094,2875095,31.0,1163087,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875095,2875096,24.0,1163087,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875096,2875097,31.0,1163088,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875097,2875098,24.0,1163088,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875098,2875099,31.0,1163089,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875099,2875100,24.0,1163089,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875100,2875101,31.0,1163090,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875101,2875102,24.0,1163090,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875102,2875103,31.0,1163091,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875103,2875104,24.0,1163091,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875104,2875105,31.0,1163092,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875105,2875106,24.0,1163092,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875106,2875107,31.0,1163093,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875107,2875108,24.0,1163093,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875108,2875109,31.0,1163094,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875109,2875110,24.0,1163094,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875110,2875111,31.0,1163095,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875111,2875112,24.0,1163095,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875112,2875113,31.0,1163096,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875113,2875114,24.0,1163096,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875114,2875115,31.0,1163097,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875115,2875116,24.0,1163097,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875116,2875117,31.0,1163098,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875117,2875118,24.0,1163098,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875118,2875119,31.0,1163099,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875119,2875120,24.0,1163099,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875120,2875121,31.0,1163100,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875121,2875122,24.0,1163100,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875122,2875123,31.0,1163101,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875123,2875124,24.0,1163101,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875124,2875125,31.0,1163102,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875125,2875126,24.0,1163102,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875126,2875127,31.0,1163103,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875127,2875128,24.0,1163103,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875128,2875129,31.0,1163104,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875129,2875130,24.0,1163104,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875130,2875131,31.0,1163105,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875131,2875132,24.0,1163105,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875132,2875133,31.0,1163106,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875133,2875134,24.0,1163106,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875134,2875135,31.0,1163107,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875135,2875136,24.0,1163107,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875136,2875137,31.0,1163108,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875137,2875138,24.0,1163108,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875138,2875139,31.0,1163109,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875139,2875140,24.0,1163109,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875140,2875141,31.0,1163110,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875141,2875142,24.0,1163110,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875142,2875143,31.0,1163111,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875143,2875144,24.0,1163111,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875144,2875145,31.0,1163112,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875145,2875146,24.0,1163112,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875146,2875147,31.0,1163113,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875147,2875148,24.0,1163113,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875148,2875149,31.0,1163114,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875149,2875150,24.0,1163114,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875150,2875151,31.0,1163115,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875151,2875152,24.0,1163115,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875152,2875153,31.0,1163116,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875153,2875154,24.0,1163116,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875154,2875155,31.0,1163117,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875155,2875156,24.0,1163117,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22759.0,2128.0 +2875156,2875157,31.0,1163118,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875157,2875158,24.0,1163118,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875158,2875159,31.0,1163119,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875159,2875160,24.0,1163119,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22761.0,2128.0 +2875160,2875161,31.0,1163120,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875161,2875162,24.0,1163120,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875162,2875163,31.0,1163121,1,1,0,1,1.0,45.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875163,2875164,24.0,1163121,2,1,12,1,1.0,50.0,1.0,16.0,4.0,622M,15.0,22760.0,2128.0 +2875164,2875165,27.0,1163122,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875165,2875166,23.0,1163122,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875166,2875167,27.0,1163123,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875167,2875168,23.0,1163123,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875168,2875169,27.0,1163124,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875169,2875170,23.0,1163124,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875170,2875171,27.0,1163125,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22761.0,2128.0 +2875171,2875172,23.0,1163125,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22761.0,2128.0 +2875172,2875173,27.0,1163126,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875173,2875174,23.0,1163126,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875174,2875175,27.0,1163127,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875175,2875176,23.0,1163127,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875176,2875177,27.0,1163128,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875177,2875178,23.0,1163128,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875178,2875179,27.0,1163129,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875179,2875180,23.0,1163129,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875180,2875181,27.0,1163130,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875181,2875182,23.0,1163130,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875182,2875183,27.0,1163131,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875183,2875184,23.0,1163131,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875184,2875185,27.0,1163132,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875185,2875186,23.0,1163132,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875186,2875187,27.0,1163133,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875187,2875188,23.0,1163133,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875188,2875189,27.0,1163134,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875189,2875190,23.0,1163134,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875190,2875191,27.0,1163135,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875191,2875192,23.0,1163135,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875192,2875193,27.0,1163136,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875193,2875194,23.0,1163136,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875194,2875195,27.0,1163137,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22761.0,2128.0 +2875195,2875196,23.0,1163137,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22761.0,2128.0 +2875196,2875197,27.0,1163138,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22763.0,2129.0 +2875197,2875198,23.0,1163138,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22763.0,2129.0 +2875198,2875199,27.0,1163139,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875199,2875200,23.0,1163139,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875200,2875201,27.0,1163140,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875201,2875202,23.0,1163140,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875202,2875203,27.0,1163141,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22761.0,2128.0 +2875203,2875204,23.0,1163141,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22761.0,2128.0 +2875204,2875205,27.0,1163142,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875205,2875206,23.0,1163142,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875206,2875207,27.0,1163143,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875207,2875208,23.0,1163143,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875208,2875209,27.0,1163144,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875209,2875210,23.0,1163144,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875210,2875211,27.0,1163145,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875211,2875212,23.0,1163145,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875212,2875213,27.0,1163146,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875213,2875214,23.0,1163146,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875214,2875215,27.0,1163147,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875215,2875216,23.0,1163147,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875216,2875217,27.0,1163148,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875217,2875218,23.0,1163148,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875218,2875219,27.0,1163149,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22761.0,2128.0 +2875219,2875220,23.0,1163149,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22761.0,2128.0 +2875220,2875221,27.0,1163150,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22761.0,2128.0 +2875221,2875222,23.0,1163150,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22761.0,2128.0 +2875222,2875223,27.0,1163151,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22759.0,2128.0 +2875223,2875224,23.0,1163151,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22759.0,2128.0 +2875224,2875225,27.0,1163152,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22763.0,2129.0 +2875225,2875226,23.0,1163152,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22763.0,2129.0 +2875226,2875227,27.0,1163153,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875227,2875228,23.0,1163153,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875228,2875229,27.0,1163154,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875229,2875230,23.0,1163154,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875230,2875231,27.0,1163155,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875231,2875232,23.0,1163155,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875232,2875233,27.0,1163156,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22760.0,2128.0 +2875233,2875234,23.0,1163156,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22760.0,2128.0 +2875234,2875235,27.0,1163157,1,2,0,1,1.0,40.0,1.0,-9.0,4.0,813M,17.0,22763.0,2129.0 +2875235,2875236,23.0,1163157,2,2,12,2,1.0,40.0,4.0,15.0,4.0,337,3.0,22763.0,2129.0 +2875236,2875237,25.0,1163158,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875237,2875238,22.0,1163158,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875238,2875239,21.0,1163158,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875239,2875240,25.0,1163159,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875240,2875241,22.0,1163159,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875241,2875242,21.0,1163159,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875242,2875243,25.0,1163160,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875243,2875244,22.0,1163160,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875244,2875245,21.0,1163160,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875245,2875246,25.0,1163161,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875246,2875247,22.0,1163161,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875247,2875248,21.0,1163161,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875248,2875249,25.0,1163162,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875249,2875250,22.0,1163162,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875250,2875251,21.0,1163162,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875251,2875252,25.0,1163163,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875252,2875253,22.0,1163163,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875253,2875254,21.0,1163163,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875254,2875255,25.0,1163164,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875255,2875256,22.0,1163164,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875256,2875257,21.0,1163164,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875257,2875258,25.0,1163165,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875258,2875259,22.0,1163165,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875259,2875260,21.0,1163165,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875260,2875261,25.0,1163166,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875261,2875262,22.0,1163166,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875262,2875263,21.0,1163166,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875263,2875264,25.0,1163167,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875264,2875265,22.0,1163167,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875265,2875266,21.0,1163167,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875266,2875267,25.0,1163168,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875267,2875268,22.0,1163168,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875268,2875269,21.0,1163168,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875269,2875270,25.0,1163169,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875270,2875271,22.0,1163169,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875271,2875272,21.0,1163169,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875272,2875273,25.0,1163170,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875273,2875274,22.0,1163170,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875274,2875275,21.0,1163170,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875275,2875276,25.0,1163171,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875276,2875277,22.0,1163171,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875277,2875278,21.0,1163171,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875278,2875279,25.0,1163172,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875279,2875280,22.0,1163172,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875280,2875281,21.0,1163172,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875281,2875282,25.0,1163173,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875282,2875283,22.0,1163173,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875283,2875284,21.0,1163173,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875284,2875285,25.0,1163174,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875285,2875286,22.0,1163174,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875286,2875287,21.0,1163174,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875287,2875288,25.0,1163175,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875288,2875289,22.0,1163175,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875289,2875290,21.0,1163175,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875290,2875291,25.0,1163176,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875291,2875292,22.0,1163176,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875292,2875293,21.0,1163176,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875293,2875294,25.0,1163177,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875294,2875295,22.0,1163177,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875295,2875296,21.0,1163177,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875296,2875297,25.0,1163178,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875297,2875298,22.0,1163178,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875298,2875299,21.0,1163178,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875299,2875300,25.0,1163179,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875300,2875301,22.0,1163179,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875301,2875302,21.0,1163179,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875302,2875303,25.0,1163180,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875303,2875304,22.0,1163180,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875304,2875305,21.0,1163180,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875305,2875306,25.0,1163181,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875306,2875307,22.0,1163181,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875307,2875308,21.0,1163181,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875308,2875309,25.0,1163182,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875309,2875310,22.0,1163182,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875310,2875311,21.0,1163182,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875311,2875312,25.0,1163183,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875312,2875313,22.0,1163183,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875313,2875314,21.0,1163183,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875314,2875315,25.0,1163184,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875315,2875316,22.0,1163184,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875316,2875317,21.0,1163184,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875317,2875318,25.0,1163185,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875318,2875319,22.0,1163185,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875319,2875320,21.0,1163185,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875320,2875321,25.0,1163186,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875321,2875322,22.0,1163186,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875322,2875323,21.0,1163186,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875323,2875324,25.0,1163187,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2875324,2875325,22.0,1163187,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2875325,2875326,21.0,1163187,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2875326,2875327,25.0,1163188,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875327,2875328,22.0,1163188,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875328,2875329,21.0,1163188,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875329,2875330,25.0,1163189,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875330,2875331,22.0,1163189,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875331,2875332,21.0,1163189,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875332,2875333,25.0,1163190,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875333,2875334,22.0,1163190,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875334,2875335,21.0,1163190,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875335,2875336,25.0,1163191,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875336,2875337,22.0,1163191,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875337,2875338,21.0,1163191,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875338,2875339,25.0,1163192,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875339,2875340,22.0,1163192,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875340,2875341,21.0,1163192,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875341,2875342,25.0,1163193,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875342,2875343,22.0,1163193,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875343,2875344,21.0,1163193,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875344,2875345,25.0,1163194,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875345,2875346,22.0,1163194,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875346,2875347,21.0,1163194,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875347,2875348,25.0,1163195,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875348,2875349,22.0,1163195,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875349,2875350,21.0,1163195,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875350,2875351,25.0,1163196,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875351,2875352,22.0,1163196,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875352,2875353,21.0,1163196,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875353,2875354,25.0,1163197,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875354,2875355,22.0,1163197,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875355,2875356,21.0,1163197,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875356,2875357,25.0,1163198,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875357,2875358,22.0,1163198,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875358,2875359,21.0,1163198,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875359,2875360,25.0,1163199,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875360,2875361,22.0,1163199,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875361,2875362,21.0,1163199,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875362,2875363,25.0,1163200,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875363,2875364,22.0,1163200,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875364,2875365,21.0,1163200,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875365,2875366,25.0,1163201,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875366,2875367,22.0,1163201,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875367,2875368,21.0,1163201,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875368,2875369,25.0,1163202,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875369,2875370,22.0,1163202,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875370,2875371,21.0,1163202,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875371,2875372,25.0,1163203,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875372,2875373,22.0,1163203,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875373,2875374,21.0,1163203,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875374,2875375,25.0,1163204,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875375,2875376,22.0,1163204,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875376,2875377,21.0,1163204,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875377,2875378,25.0,1163205,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875378,2875379,22.0,1163205,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875379,2875380,21.0,1163205,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875380,2875381,25.0,1163206,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875381,2875382,22.0,1163206,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875382,2875383,21.0,1163206,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875383,2875384,25.0,1163207,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875384,2875385,22.0,1163207,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875385,2875386,21.0,1163207,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875386,2875387,25.0,1163208,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875387,2875388,22.0,1163208,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875388,2875389,21.0,1163208,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875389,2875390,25.0,1163209,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875390,2875391,22.0,1163209,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875391,2875392,21.0,1163209,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875392,2875393,25.0,1163210,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875393,2875394,22.0,1163210,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875394,2875395,21.0,1163210,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875395,2875396,25.0,1163211,1,1,0,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875396,2875397,22.0,1163211,2,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875397,2875398,21.0,1163211,3,1,10,1,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875398,2875399,20.0,1163212,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22760.0,2128.0 +2875399,2875400,20.0,1163213,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22759.0,2128.0 +2875400,2875401,20.0,1163214,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22760.0,2128.0 +2875401,2875402,24.0,1163215,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2875402,2875403,20.0,1163216,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22759.0,2128.0 +2875403,2875404,20.0,1163217,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22760.0,2128.0 +2875404,2875405,20.0,1163218,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2875405,2875406,20.0,1163219,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22761.0,2128.0 +2875406,2875407,24.0,1163220,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875407,2875408,24.0,1163221,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22763.0,2129.0 +2875408,2875409,24.0,1163222,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22761.0,2128.0 +2875409,2875410,20.0,1163223,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22759.0,2128.0 +2875410,2875411,20.0,1163224,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22760.0,2128.0 +2875411,2875412,20.0,1163225,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22760.0,2128.0 +2875412,2875413,20.0,1163226,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22761.0,2128.0 +2875413,2875414,20.0,1163227,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22761.0,2128.0 +2875414,2875415,20.0,1163228,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22760.0,2128.0 +2875415,2875416,20.0,1163229,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22761.0,2128.0 +2875416,2875417,20.0,1163230,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22763.0,2129.0 +2875417,2875418,20.0,1163231,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22759.0,2128.0 +2875418,2875419,24.0,1163232,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875419,2875420,20.0,1163233,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22760.0,2128.0 +2875420,2875421,24.0,1163234,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875421,2875422,24.0,1163235,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875422,2875423,24.0,1163236,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875423,2875424,20.0,1163237,1,2,0,4,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22759.0,2128.0 +2875424,2875425,24.0,1163238,1,2,0,4,6.0,-9.0,-9.0,16.0,4.0,-9,0.0,22760.0,2128.0 +2875425,2875426,24.0,1163239,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875426,2875427,24.0,1163240,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875427,2875428,24.0,1163241,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875428,2875429,24.0,1163242,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875429,2875430,24.0,1163243,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875430,2875431,24.0,1163244,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875431,2875432,24.0,1163245,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875432,2875433,24.0,1163246,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22763.0,2129.0 +2875433,2875434,24.0,1163247,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875434,2875435,24.0,1163248,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875435,2875436,24.0,1163249,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875436,2875437,24.0,1163250,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875437,2875438,24.0,1163251,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875438,2875439,24.0,1163252,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875439,2875440,24.0,1163253,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875440,2875441,24.0,1163254,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875441,2875442,24.0,1163255,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875442,2875443,24.0,1163256,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875443,2875444,24.0,1163257,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22761.0,2128.0 +2875444,2875445,24.0,1163258,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875445,2875446,24.0,1163259,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875446,2875447,24.0,1163260,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22760.0,2128.0 +2875447,2875448,24.0,1163261,1,1,0,4,6.0,-9.0,-9.0,15.0,4.0,-9,0.0,22759.0,2128.0 +2875448,2875449,22.0,1163262,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875449,2875450,22.0,1163263,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875450,2875451,22.0,1163264,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875451,2875452,22.0,1163265,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875452,2875453,22.0,1163266,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875453,2875454,22.0,1163267,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875454,2875455,22.0,1163268,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875455,2875456,22.0,1163269,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875456,2875457,22.0,1163270,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875457,2875458,22.0,1163271,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875458,2875459,22.0,1163272,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875459,2875460,22.0,1163273,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875460,2875461,22.0,1163274,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875461,2875462,22.0,1163275,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875462,2875463,22.0,1163276,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875463,2875464,22.0,1163277,1,1,0,3,1.0,15.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875464,2875465,23.0,1163278,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22760.0,2128.0 +2875465,2875466,26.0,1163278,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22760.0,2128.0 +2875466,2875467,23.0,1163278,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22760.0,2128.0 +2875467,2875468,23.0,1163278,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22760.0,2128.0 +2875468,2875469,23.0,1163279,1,1,0,1,1.0,40.0,1.0,-9.0,4.0,336M,3.0,22760.0,2128.0 +2875469,2875470,26.0,1163279,2,1,12,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22760.0,2128.0 +2875470,2875471,23.0,1163279,3,1,12,1,1.0,40.0,1.0,16.0,4.0,325M,3.0,22760.0,2128.0 +2875471,2875472,23.0,1163279,4,1,12,1,2.0,30.0,3.0,15.0,4.0,7211,16.0,22760.0,2128.0 +2875472,2875473,23.0,1163280,1,1,0,1,3.0,-9.0,-9.0,15.0,4.0,999920,0.0,22761.0,2128.0 +2875473,2875474,24.0,1163281,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875474,2875475,25.0,1163281,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875475,2875476,24.0,1163282,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875476,2875477,25.0,1163282,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875477,2875478,24.0,1163283,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875478,2875479,25.0,1163283,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875479,2875480,24.0,1163284,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875480,2875481,25.0,1163284,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875481,2875482,24.0,1163285,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875482,2875483,25.0,1163285,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875483,2875484,24.0,1163286,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875484,2875485,25.0,1163286,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875485,2875486,24.0,1163287,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875486,2875487,25.0,1163287,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875487,2875488,24.0,1163288,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2875488,2875489,25.0,1163288,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2875489,2875490,24.0,1163289,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875490,2875491,25.0,1163289,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875491,2875492,24.0,1163290,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2875492,2875493,25.0,1163290,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22763.0,2129.0 +2875493,2875494,24.0,1163291,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875494,2875495,25.0,1163291,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875495,2875496,24.0,1163292,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875496,2875497,25.0,1163292,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875497,2875498,24.0,1163293,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875498,2875499,25.0,1163293,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875499,2875500,24.0,1163294,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875500,2875501,25.0,1163294,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875501,2875502,24.0,1163295,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875502,2875503,25.0,1163295,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875503,2875504,24.0,1163296,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875504,2875505,25.0,1163296,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875505,2875506,24.0,1163297,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875506,2875507,25.0,1163297,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875507,2875508,24.0,1163298,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875508,2875509,25.0,1163298,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875509,2875510,24.0,1163299,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875510,2875511,25.0,1163299,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875511,2875512,24.0,1163300,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875512,2875513,25.0,1163300,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875513,2875514,24.0,1163301,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875514,2875515,25.0,1163301,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875515,2875516,24.0,1163302,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875516,2875517,25.0,1163302,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875517,2875518,24.0,1163303,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875518,2875519,25.0,1163303,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875519,2875520,24.0,1163304,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875520,2875521,25.0,1163304,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875521,2875522,24.0,1163305,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875522,2875523,25.0,1163305,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22761.0,2128.0 +2875523,2875524,24.0,1163306,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875524,2875525,25.0,1163306,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875525,2875526,24.0,1163307,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875526,2875527,25.0,1163307,2,1,12,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875527,2875528,24.0,1163308,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22760.0,2128.0 +2875528,2875529,24.0,1163309,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22760.0,2128.0 +2875529,2875530,24.0,1163310,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22759.0,2128.0 +2875530,2875531,24.0,1163311,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22763.0,2129.0 +2875531,2875532,24.0,1163312,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22761.0,2128.0 +2875532,2875533,24.0,1163313,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22760.0,2128.0 +2875533,2875534,24.0,1163314,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22761.0,2128.0 +2875534,2875535,24.0,1163315,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22760.0,2128.0 +2875535,2875536,24.0,1163316,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22760.0,2128.0 +2875536,2875537,24.0,1163317,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22760.0,2128.0 +2875537,2875538,24.0,1163318,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22759.0,2128.0 +2875538,2875539,24.0,1163319,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22759.0,2128.0 +2875539,2875540,24.0,1163320,1,2,0,1,1.0,50.0,1.0,-9.0,4.0,5613,12.0,22759.0,2128.0 +2875540,2875541,22.0,1163321,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875541,2875542,22.0,1163322,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22761.0,2128.0 +2875542,2875543,22.0,1163323,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22760.0,2128.0 +2875543,2875544,22.0,1163324,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22760.0,2128.0 +2875544,2875545,22.0,1163325,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22763.0,2129.0 +2875545,2875546,22.0,1163326,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22758.0,2127.0 +2875546,2875547,22.0,1163327,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22760.0,2128.0 +2875547,2875548,22.0,1163328,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875548,2875549,22.0,1163329,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22760.0,2128.0 +2875549,2875550,22.0,1163330,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875550,2875551,22.0,1163331,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22761.0,2128.0 +2875551,2875552,22.0,1163332,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875552,2875553,22.0,1163333,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22761.0,2128.0 +2875553,2875554,22.0,1163334,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22761.0,2128.0 +2875554,2875555,22.0,1163335,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22760.0,2128.0 +2875555,2875556,22.0,1163336,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875556,2875557,22.0,1163337,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22761.0,2128.0 +2875557,2875558,22.0,1163338,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22760.0,2128.0 +2875558,2875559,22.0,1163339,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875559,2875560,22.0,1163340,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22760.0,2128.0 +2875560,2875561,22.0,1163341,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22760.0,2128.0 +2875561,2875562,22.0,1163342,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875562,2875563,22.0,1163343,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22760.0,2128.0 +2875563,2875564,22.0,1163344,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875564,2875565,22.0,1163345,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875565,2875566,22.0,1163346,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875566,2875567,22.0,1163347,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22760.0,2128.0 +2875567,2875568,22.0,1163348,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22761.0,2128.0 +2875568,2875569,22.0,1163349,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22761.0,2128.0 +2875569,2875570,22.0,1163350,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875570,2875571,22.0,1163351,1,1,0,1,1.0,55.0,4.0,-9.0,4.0,5416,10.0,22759.0,2128.0 +2875571,2875572,24.0,1163352,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22761.0,2128.0 +2875572,2875573,23.0,1163353,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875573,2875574,20.0,1163354,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +2875574,2875575,20.0,1163355,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22759.0,2128.0 +2875575,2875576,20.0,1163356,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22761.0,2128.0 +2875576,2875577,23.0,1163357,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +2875577,2875578,20.0,1163358,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22759.0,2128.0 +2875578,2875579,20.0,1163359,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22761.0,2128.0 +2875579,2875580,20.0,1163360,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22760.0,2128.0 +2875580,2875581,20.0,1163361,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22759.0,2128.0 +2875581,2875582,20.0,1163362,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22759.0,2128.0 +2875582,2875583,23.0,1163363,1,1,0,1,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22759.0,2128.0 +2875583,2875584,20.0,1163364,1,1,0,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +2875584,2875585,20.0,1163365,1,1,0,1,1.0,6.0,4.0,15.0,4.0,6111,13.0,22760.0,2128.0 +2875585,2875586,24.0,1163366,1,1,0,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +2875586,2875587,24.0,1163367,1,1,0,1,1.0,50.0,4.0,15.0,4.0,336M,3.0,22759.0,2128.0 +2875587,2875588,23.0,1163368,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22759.0,2128.0 +2875588,2875589,23.0,1163369,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22759.0,2128.0 +2875589,2875590,23.0,1163370,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22760.0,2128.0 +2875590,2875591,23.0,1163371,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22760.0,2128.0 +2875591,2875592,23.0,1163372,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22760.0,2128.0 +2875592,2875593,23.0,1163373,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22760.0,2128.0 +2875593,2875594,23.0,1163374,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22760.0,2128.0 +2875594,2875595,23.0,1163375,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22759.0,2128.0 +2875595,2875596,23.0,1163376,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22759.0,2128.0 +2875596,2875597,23.0,1163377,1,2,0,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22759.0,2128.0 +4716694,4716695,17.0,1935434,1,2,17,1,6.0,15.0,4.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4716695,4716696,17.0,1935435,1,1,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4716696,4716697,17.0,1935436,1,2,17,1,6.0,15.0,4.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4716697,4716698,17.0,1935437,1,2,17,1,1.0,9.0,4.0,15.0,-9.0,6214,14.0,22808.0,2147.0 +4716698,4716699,17.0,1935438,1,2,17,1,1.0,20.0,4.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4716699,4716700,17.0,1935439,1,2,17,1,1.0,9.0,4.0,15.0,-9.0,6214,14.0,22808.0,2147.0 +4716703,4716704,17.0,1935443,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4716706,4716707,17.0,1935446,1,2,17,1,1.0,9.0,4.0,15.0,-9.0,6214,14.0,22808.0,2147.0 +4716709,4716710,17.0,1935449,1,2,17,1,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4716712,4716713,17.0,1935452,1,2,17,1,6.0,15.0,4.0,15.0,4.0,44821,5.0,22814.0,2150.0 +4716714,4716715,17.0,1935454,1,2,17,1,6.0,5.0,6.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4716716,4716717,17.0,1935456,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4716722,4716723,17.0,1935462,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4716726,4716727,17.0,1935466,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22808.0,2147.0 +4716727,4716728,17.0,1935467,1,2,17,3,6.0,-9.0,-9.0,-9.0,-9.0,611M1,13.0,22806.0,2146.0 +4716731,4716732,17.0,1935471,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4716732,4716733,17.0,1935472,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22808.0,2147.0 +4716737,4716738,17.0,1935477,1,2,17,3,6.0,-9.0,-9.0,-9.0,-9.0,611M1,13.0,22806.0,2146.0 +4716740,4716741,17.0,1935480,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4716742,4716743,17.0,1935482,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4716746,4716747,17.0,1935486,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22810.0,2148.0 +4716752,4716753,17.0,1935492,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4716753,4716754,17.0,1935493,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22765.0,2130.0 +4716756,4716757,17.0,1935496,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22806.0,2146.0 +4716757,4716758,17.0,1935497,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22758.0,2127.0 +4716758,4716759,17.0,1935498,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4716763,4716764,17.0,1935503,1,2,17,3,6.0,-9.0,-9.0,-9.0,-9.0,611M1,13.0,22760.0,2128.0 +4716769,4716770,17.0,1935509,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4716779,4716780,17.0,1935519,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22808.0,2147.0 +4716783,4716784,17.0,1935523,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22814.0,2150.0 +4716786,4716787,17.0,1935526,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4716789,4716790,17.0,1935529,1,1,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4716795,4716796,17.0,1935535,1,2,17,3,6.0,-9.0,-9.0,-9.0,-9.0,611M1,13.0,22808.0,2147.0 +4716796,4716797,17.0,1935536,1,2,17,3,6.0,-9.0,-9.0,15.0,4.0,45221,5.0,22808.0,2147.0 +4716799,4716800,18.0,1935539,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4716800,4716801,18.0,1935540,1,1,17,1,1.0,14.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4716808,4716809,18.0,1935548,1,1,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4716810,4716811,18.0,1935550,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4716822,4716823,18.0,1935562,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4716825,4716826,18.0,1935565,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4716827,4716828,18.0,1935567,1,1,17,1,3.0,50.0,6.0,15.0,4.0,5617Z,12.0,22815.0,2150.0 +4716830,4716831,18.0,1935570,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4716832,4716833,18.0,1935572,1,2,17,1,1.0,30.0,1.0,-9.0,4.0,8131,17.0,22808.0,2147.0 +4716833,4716834,18.0,1935573,1,1,17,1,6.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4716835,4716836,18.0,1935575,1,2,17,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4716838,4716839,18.0,1935578,1,2,17,1,1.0,50.0,6.0,15.0,4.0,5415,10.0,22808.0,2147.0 +4716839,4716840,18.0,1935579,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4716842,4716843,18.0,1935582,1,2,17,1,1.0,10.0,6.0,15.0,4.0,44821,5.0,22765.0,2130.0 +4716844,4716845,18.0,1935584,1,2,17,1,1.0,40.0,5.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4716845,4716846,18.0,1935585,1,2,17,1,6.0,60.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4716846,4716847,18.0,1935586,1,2,17,1,1.0,15.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4716848,4716849,18.0,1935588,1,2,17,1,3.0,1.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4716849,4716850,18.0,1935589,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4716855,4716856,18.0,1935595,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4716856,4716857,18.0,1935596,1,1,17,1,6.0,30.0,5.0,15.0,4.0,23,2.0,22806.0,2146.0 +4716857,4716858,18.0,1935597,1,2,17,1,1.0,28.0,1.0,15.0,4.0,814,17.0,22806.0,2146.0 +4716859,4716860,18.0,1935599,1,2,17,1,6.0,36.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4716861,4716862,18.0,1935601,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4716863,4716864,18.0,1935603,1,2,17,1,3.0,40.0,5.0,15.0,4.0,6241,14.0,22806.0,2146.0 +4716872,4716873,18.0,1935612,1,2,17,1,1.0,30.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4716873,4716874,18.0,1935613,1,1,17,1,1.0,40.0,3.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4716876,4716877,18.0,1935616,1,1,17,1,6.0,30.0,6.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4716878,4716879,18.0,1935618,1,1,17,1,6.0,35.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4716880,4716881,18.0,1935620,1,2,17,1,1.0,20.0,4.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4716882,4716883,18.0,1935622,1,2,17,1,6.0,12.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4716883,4716884,18.0,1935623,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4716884,4716885,18.0,1935624,1,1,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4716885,4716886,18.0,1935625,1,2,17,1,6.0,5.0,6.0,15.0,4.0,56173,12.0,22806.0,2146.0 +4716892,4716893,18.0,1935632,1,2,17,1,3.0,12.0,3.0,15.0,4.0,9211MP,18.0,22806.0,2146.0 +4716895,4716896,18.0,1935635,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22765.0,2130.0 +4716898,4716899,18.0,1935638,1,2,17,1,6.0,40.0,4.0,15.0,4.0,4233,4.0,22808.0,2147.0 +4716905,4716906,18.0,1935645,1,2,17,1,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +4716911,4716912,18.0,1935651,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4716918,4716919,18.0,1935658,1,2,17,1,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4716921,4716922,18.0,1935661,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4716923,4716924,18.0,1935663,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4716924,4716925,18.0,1935664,1,1,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22810.0,2148.0 +4716926,4716927,18.0,1935666,1,1,17,1,6.0,50.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4716928,4716929,18.0,1935668,1,2,17,1,2.0,15.0,4.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4716932,4716933,18.0,1935672,1,2,17,1,6.0,12.0,6.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4716933,4716934,18.0,1935673,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4716934,4716935,18.0,1935674,1,2,17,1,3.0,1.0,6.0,15.0,4.0,611M3,13.0,22815.0,2150.0 +4716936,4716937,18.0,1935676,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4716938,4716939,18.0,1935678,1,2,17,1,1.0,16.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4716942,4716943,18.0,1935682,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22806.0,2146.0 +4716945,4716946,18.0,1935685,1,1,17,1,6.0,40.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4716946,4716947,18.0,1935686,1,2,17,1,1.0,30.0,1.0,15.0,4.0,7112,16.0,22806.0,2146.0 +4716948,4716949,18.0,1935688,1,2,17,1,1.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4716954,4716955,18.0,1935694,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,23,2.0,22760.0,2128.0 +4716956,4716957,18.0,1935696,1,2,17,1,1.0,15.0,6.0,15.0,4.0,5313,9.0,22806.0,2146.0 +4716960,4716961,18.0,1935700,1,2,17,1,6.0,35.0,3.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4716961,4716962,18.0,1935701,1,1,17,1,6.0,3.0,5.0,15.0,4.0,8129,17.0,22810.0,2148.0 +4716966,4716967,18.0,1935706,1,1,17,1,6.0,20.0,4.0,15.0,4.0,4244,4.0,22765.0,2130.0 +4716971,4716972,18.0,1935711,1,2,17,1,6.0,5.0,6.0,15.0,4.0,8114,17.0,22765.0,2130.0 +4716972,4716973,18.0,1935712,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4716974,4716975,18.0,1935714,1,1,17,1,6.0,30.0,5.0,15.0,4.0,23,2.0,22765.0,2130.0 +4716986,4716987,18.0,1935726,1,2,17,1,6.0,30.0,6.0,15.0,4.0,45113,5.0,22808.0,2147.0 +4716987,4716988,18.0,1935727,1,2,17,1,6.0,60.0,6.0,15.0,4.0,45221,5.0,22808.0,2147.0 +4716988,4716989,18.0,1935728,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4716991,4716992,18.0,1935731,1,2,17,1,6.0,20.0,6.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4716995,4716996,18.0,1935735,1,1,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4716998,4716999,18.0,1935738,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4716999,4717000,18.0,1935739,1,1,17,1,6.0,16.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717001,4717002,18.0,1935741,1,2,17,1,1.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717003,4717004,18.0,1935743,1,1,17,1,6.0,18.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717005,4717006,18.0,1935745,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,812112,17.0,22765.0,2130.0 +4717006,4717007,18.0,1935746,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22806.0,2146.0 +4717008,4717009,18.0,1935748,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4717011,4717012,18.0,1935751,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4717014,4717015,18.0,1935754,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22765.0,2130.0 +4717019,4717020,18.0,1935759,1,2,17,1,6.0,3.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4717021,4717022,18.0,1935761,1,1,17,1,6.0,30.0,6.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4717022,4717023,18.0,1935762,1,2,17,1,1.0,16.0,5.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +4717023,4717024,18.0,1935763,1,2,17,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4717026,4717027,18.0,1935766,1,2,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4717028,4717029,18.0,1935768,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22760.0,2128.0 +4717035,4717036,18.0,1935775,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,23,2.0,22808.0,2147.0 +4717036,4717037,18.0,1935776,1,1,17,1,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +4717041,4717042,18.0,1935781,1,2,17,1,6.0,8.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4717043,4717044,18.0,1935783,1,2,17,1,1.0,10.0,4.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4717044,4717045,18.0,1935784,1,2,17,1,1.0,40.0,2.0,-9.0,4.0,5412,10.0,22808.0,2147.0 +4717048,4717049,18.0,1935788,1,2,17,1,6.0,12.0,4.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4717050,4717051,18.0,1935790,1,2,17,1,6.0,15.0,5.0,15.0,4.0,4481,5.0,22806.0,2146.0 +4717052,4717053,18.0,1935792,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4717053,4717054,18.0,1935793,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4717055,4717056,18.0,1935795,1,1,17,1,6.0,30.0,6.0,15.0,4.0,111,1.0,22808.0,2147.0 +4717056,4717057,18.0,1935796,1,2,17,1,6.0,35.0,5.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +4717064,4717065,18.0,1935804,1,2,17,1,6.0,40.0,5.0,16.0,4.0,5411,10.0,22808.0,2147.0 +4717065,4717066,18.0,1935805,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717067,4717068,18.0,1935807,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22808.0,2147.0 +4717085,4717086,18.0,1935825,1,2,17,1,6.0,38.0,6.0,15.0,4.0,5418,10.0,22808.0,2147.0 +4717086,4717087,18.0,1935826,1,1,17,1,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4717088,4717089,18.0,1935828,1,1,17,1,6.0,30.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717089,4717090,18.0,1935829,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22760.0,2128.0 +4717092,4717093,18.0,1935832,1,1,17,1,3.0,28.0,6.0,15.0,4.0,5616,12.0,22808.0,2147.0 +4717097,4717098,18.0,1935837,1,1,17,1,6.0,40.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717099,4717100,18.0,1935839,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4717101,4717102,18.0,1935841,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717102,4717103,18.0,1935842,1,2,17,1,6.0,30.0,4.0,15.0,4.0,4412,5.0,22808.0,2147.0 +4717104,4717105,18.0,1935844,1,2,17,1,6.0,6.0,3.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4717109,4717110,18.0,1935849,1,2,17,1,6.0,20.0,6.0,15.0,4.0,492,6.0,22815.0,2150.0 +4717110,4717111,18.0,1935850,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4717115,4717116,18.0,1935855,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4717118,4717119,18.0,1935858,1,2,17,1,1.0,3.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4717121,4717122,18.0,1935861,1,2,17,1,1.0,20.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4717131,4717132,18.0,1935871,1,2,17,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717134,4717135,18.0,1935874,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4717136,4717137,18.0,1935876,1,1,17,1,1.0,15.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4717137,4717138,18.0,1935877,1,2,17,1,1.0,6.0,2.0,15.0,4.0,6216,14.0,22808.0,2147.0 +4717138,4717139,18.0,1935878,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,812112,17.0,22808.0,2147.0 +4717139,4717140,18.0,1935879,1,1,17,1,1.0,13.0,3.0,15.0,4.0,722Z,16.0,22760.0,2128.0 +4717141,4717142,18.0,1935881,1,2,17,1,1.0,30.0,1.0,15.0,4.0,7112,16.0,22808.0,2147.0 +4717147,4717148,18.0,1935887,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4717152,4717153,18.0,1935892,1,2,17,1,1.0,30.0,6.0,15.0,4.0,45121,5.0,22808.0,2147.0 +4717153,4717154,18.0,1935893,1,1,17,1,1.0,24.0,3.0,15.0,4.0,5121,8.0,22815.0,2150.0 +4717155,4717156,18.0,1935895,1,2,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717156,4717157,18.0,1935896,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5417,10.0,22808.0,2147.0 +4717158,4717159,18.0,1935898,1,2,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4717160,4717161,18.0,1935900,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22815.0,2150.0 +4717161,4717162,18.0,1935901,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717162,4717163,18.0,1935902,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4717163,4717164,18.0,1935903,1,2,17,1,6.0,32.0,6.0,15.0,4.0,52M2,9.0,22808.0,2147.0 +4717165,4717166,18.0,1935905,1,1,17,1,1.0,24.0,3.0,15.0,4.0,5121,8.0,22808.0,2147.0 +4717167,4717168,18.0,1935907,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4717168,4717169,18.0,1935908,1,1,17,1,1.0,25.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4717171,4717172,18.0,1935911,1,1,17,1,6.0,12.0,5.0,15.0,4.0,8129,17.0,22808.0,2147.0 +4717172,4717173,18.0,1935912,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4717174,4717175,18.0,1935914,1,1,17,1,1.0,20.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717175,4717176,18.0,1935915,1,2,17,1,6.0,18.0,5.0,15.0,4.0,8131,17.0,22808.0,2147.0 +4717180,4717181,18.0,1935920,1,2,17,1,3.0,12.0,3.0,15.0,4.0,9211MP,18.0,22758.0,2127.0 +4717182,4717183,18.0,1935922,1,1,17,1,6.0,20.0,6.0,15.0,4.0,4511M,5.0,22758.0,2127.0 +4717185,4717186,18.0,1935925,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4717189,4717190,18.0,1935929,1,2,17,1,1.0,30.0,1.0,-9.0,4.0,8131,17.0,22808.0,2147.0 +4717191,4717192,18.0,1935931,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717192,4717193,18.0,1935932,1,1,17,1,1.0,4.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4717197,4717198,18.0,1935937,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4717202,4717203,18.0,1935942,1,1,17,1,6.0,3.0,5.0,15.0,4.0,7112,16.0,22808.0,2147.0 +4717206,4717207,18.0,1935946,1,1,17,1,6.0,50.0,5.0,15.0,4.0,336M,3.0,22758.0,2127.0 +4717207,4717208,18.0,1935947,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4717210,4717211,18.0,1935950,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717213,4717214,18.0,1935953,1,2,17,1,6.0,60.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717216,4717217,18.0,1935956,1,2,17,1,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717221,4717222,18.0,1935961,1,2,17,1,6.0,12.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717224,4717225,18.0,1935964,1,1,17,1,6.0,16.0,2.0,15.0,4.0,51913,8.0,22765.0,2130.0 +4717226,4717227,18.0,1935966,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4717227,4717228,18.0,1935967,1,1,17,1,6.0,6.0,3.0,15.0,4.0,531M,9.0,22808.0,2147.0 +4717228,4717229,18.0,1935968,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4717231,4717232,18.0,1935971,1,1,17,1,1.0,10.0,1.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4717234,4717235,18.0,1935974,1,2,17,1,6.0,20.0,6.0,15.0,4.0,492,6.0,22808.0,2147.0 +4717237,4717238,18.0,1935977,1,2,17,1,1.0,30.0,6.0,15.0,4.0,45121,5.0,22808.0,2147.0 +4717238,4717239,18.0,1935978,1,2,17,1,1.0,3.0,1.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4717239,4717240,18.0,1935979,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717244,4717245,18.0,1935984,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4717245,4717246,18.0,1935985,1,2,17,1,3.0,20.0,1.0,15.0,4.0,814,17.0,22808.0,2147.0 +4717251,4717252,18.0,1935991,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4717252,4717253,18.0,1935992,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4717255,4717256,18.0,1935995,1,1,17,1,6.0,39.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717272,4717273,18.0,1936012,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4717273,4717274,18.0,1936013,1,2,17,1,6.0,30.0,6.0,15.0,4.0,45113,5.0,22808.0,2147.0 +4717274,4717275,18.0,1936014,1,1,17,1,1.0,20.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717280,4717281,18.0,1936020,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717284,4717285,18.0,1936024,1,1,17,1,2.0,20.0,1.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4717290,4717291,18.0,1936030,1,2,17,1,1.0,30.0,1.0,15.0,4.0,5415,10.0,22808.0,2147.0 +4717291,4717292,18.0,1936031,1,2,17,1,1.0,12.0,4.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4717302,4717303,18.0,1936042,1,2,17,1,6.0,6.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4717304,4717305,18.0,1936044,1,2,17,1,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4717318,4717319,18.0,1936058,1,1,17,1,6.0,30.0,6.0,15.0,4.0,4452,5.0,22806.0,2146.0 +4717320,4717321,18.0,1936060,1,2,17,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717321,4717322,18.0,1936061,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22765.0,2130.0 +4717322,4717323,18.0,1936062,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717323,4717324,18.0,1936063,1,1,17,1,6.0,30.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717326,4717327,18.0,1936066,1,1,17,1,6.0,45.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4717327,4717328,18.0,1936067,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,813M,17.0,22806.0,2146.0 +4717328,4717329,18.0,1936068,1,1,17,1,1.0,17.0,1.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4717330,4717331,18.0,1936070,1,1,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4717335,4717336,18.0,1936075,1,1,17,1,6.0,35.0,6.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4717336,4717337,18.0,1936076,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4717337,4717338,18.0,1936077,1,2,17,1,1.0,12.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4717338,4717339,18.0,1936078,1,1,17,1,1.0,5.0,5.0,16.0,4.0,8121M,17.0,22808.0,2147.0 +4717342,4717343,18.0,1936082,1,1,17,1,6.0,36.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717344,4717345,18.0,1936084,1,1,17,1,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4717351,4717352,18.0,1936091,1,1,17,1,3.0,3.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4717352,4717353,18.0,1936092,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4717353,4717354,18.0,1936093,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717362,4717363,18.0,1936102,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717363,4717364,18.0,1936103,1,1,17,1,6.0,30.0,6.0,15.0,4.0,4452,5.0,22765.0,2130.0 +4717364,4717365,18.0,1936104,1,2,17,1,6.0,40.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717366,4717367,18.0,1936106,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717369,4717370,18.0,1936109,1,1,17,1,1.0,24.0,6.0,12.0,4.0,6243,14.0,22808.0,2147.0 +4717370,4717371,18.0,1936110,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717371,4717372,18.0,1936111,1,2,17,1,1.0,15.0,6.0,15.0,4.0,4481,5.0,22810.0,2148.0 +4717384,4717385,18.0,1936124,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717387,4717388,18.0,1936127,1,1,17,1,6.0,39.0,5.0,15.0,4.0,713Z,16.0,22758.0,2127.0 +4717389,4717390,18.0,1936129,1,2,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717391,4717392,18.0,1936131,1,2,17,1,1.0,12.0,1.0,15.0,4.0,713Z,16.0,22814.0,2150.0 +4717393,4717394,18.0,1936133,1,2,17,1,1.0,60.0,1.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4717398,4717399,18.0,1936138,1,2,17,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717411,4717412,18.0,1936151,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,6111,13.0,22818.0,2150.0 +4717416,4717417,18.0,1936156,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717417,4717418,18.0,1936157,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22814.0,2150.0 +4717421,4717422,18.0,1936161,1,1,17,1,6.0,50.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4717424,4717425,18.0,1936164,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22758.0,2127.0 +4717425,4717426,18.0,1936165,1,2,17,1,6.0,30.0,6.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4717431,4717432,18.0,1936171,1,2,17,1,6.0,24.0,6.0,15.0,4.0,53M,9.0,22808.0,2147.0 +4717433,4717434,18.0,1936173,1,1,17,1,6.0,45.0,6.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4717437,4717438,18.0,1936177,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717442,4717443,18.0,1936182,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22814.0,2150.0 +4717443,4717444,18.0,1936183,1,2,17,1,1.0,35.0,4.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4717444,4717445,18.0,1936184,1,2,17,1,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4717446,4717447,18.0,1936186,1,2,17,1,6.0,12.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717448,4717449,18.0,1936188,1,1,17,1,6.0,35.0,6.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4717450,4717451,18.0,1936190,1,2,17,1,6.0,15.0,6.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4717453,4717454,18.0,1936193,1,2,17,1,6.0,35.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4717456,4717457,18.0,1936196,1,2,17,1,1.0,40.0,2.0,-9.0,4.0,5412,10.0,22808.0,2147.0 +4717457,4717458,18.0,1936197,1,2,17,1,1.0,50.0,6.0,15.0,4.0,5415,10.0,22808.0,2147.0 +4717460,4717461,18.0,1936200,1,2,17,1,6.0,38.0,6.0,15.0,4.0,5418,10.0,22808.0,2147.0 +4717461,4717462,18.0,1936201,1,2,17,1,1.0,22.0,1.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4717462,4717463,18.0,1936202,1,2,17,1,3.0,4.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4717465,4717466,18.0,1936205,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4717466,4717467,18.0,1936206,1,1,17,1,1.0,40.0,3.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4717470,4717471,18.0,1936210,1,2,17,1,1.0,23.0,2.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4717471,4717472,18.0,1936211,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4717476,4717477,18.0,1936216,1,1,17,1,1.0,4.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4717477,4717478,18.0,1936217,1,2,17,1,1.0,36.0,1.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4717479,4717480,18.0,1936219,1,1,17,1,3.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4717481,4717482,18.0,1936221,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22815.0,2150.0 +4717489,4717490,18.0,1936229,1,2,17,1,6.0,6.0,4.0,15.0,4.0,5411,10.0,22808.0,2147.0 +4717491,4717492,18.0,1936231,1,2,17,1,1.0,28.0,1.0,15.0,4.0,814,17.0,22808.0,2147.0 +4717496,4717497,18.0,1936236,1,1,17,1,6.0,50.0,5.0,16.0,4.0,9211MP,18.0,22808.0,2147.0 +4717499,4717500,18.0,1936239,1,2,17,1,6.0,3.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4717506,4717507,18.0,1936246,1,2,17,1,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717512,4717513,18.0,1936252,1,2,17,1,3.0,4.0,6.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4717517,4717518,18.0,1936257,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22765.0,2130.0 +4717524,4717525,18.0,1936264,1,2,17,1,1.0,6.0,2.0,15.0,4.0,6216,14.0,22765.0,2130.0 +4717525,4717526,18.0,1936265,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717526,4717527,18.0,1936266,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717530,4717531,18.0,1936270,1,1,17,1,6.0,15.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717532,4717533,18.0,1936272,1,2,17,1,6.0,24.0,6.0,15.0,4.0,53M,9.0,22808.0,2147.0 +4717534,4717535,18.0,1936274,1,2,17,1,6.0,40.0,6.0,15.0,4.0,712,16.0,22808.0,2147.0 +4717535,4717536,18.0,1936275,1,2,17,1,1.0,25.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +4717538,4717539,18.0,1936278,1,1,17,1,1.0,20.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717541,4717542,18.0,1936281,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4717543,4717544,18.0,1936283,1,1,17,1,6.0,24.0,6.0,15.0,4.0,44511,5.0,22813.0,2150.0 +4717545,4717546,18.0,1936285,1,1,17,1,6.0,30.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4717550,4717551,18.0,1936290,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717551,4717552,18.0,1936291,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,811192,17.0,22808.0,2147.0 +4717555,4717556,18.0,1936295,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717562,4717563,18.0,1936302,1,2,17,1,6.0,8.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4717563,4717564,18.0,1936303,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22760.0,2128.0 +4717567,4717568,18.0,1936307,1,1,17,1,6.0,32.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4717570,4717571,18.0,1936310,1,2,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22814.0,2150.0 +4717571,4717572,18.0,1936311,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4717572,4717573,18.0,1936312,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4717577,4717578,18.0,1936317,1,2,17,1,6.0,40.0,5.0,15.0,4.0,623M,14.0,22765.0,2130.0 +4717579,4717580,18.0,1936319,1,2,17,1,6.0,36.0,5.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4717584,4717585,18.0,1936324,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4717586,4717587,18.0,1936326,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4717591,4717592,18.0,1936331,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4717592,4717593,18.0,1936332,1,2,17,1,6.0,12.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717595,4717596,18.0,1936335,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22808.0,2147.0 +4717596,4717597,18.0,1936336,1,1,17,1,6.0,40.0,6.0,15.0,4.0,52M2,9.0,22806.0,2146.0 +4717602,4717603,18.0,1936342,1,1,17,1,6.0,33.0,6.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4717604,4717605,18.0,1936344,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4717608,4717609,18.0,1936348,1,1,17,1,1.0,10.0,6.0,15.0,4.0,622M,15.0,22765.0,2130.0 +4717609,4717610,18.0,1936349,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22806.0,2146.0 +4717611,4717612,18.0,1936351,1,2,17,1,1.0,11.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717614,4717615,18.0,1936354,1,2,17,1,1.0,35.0,4.0,15.0,4.0,6244,14.0,22810.0,2148.0 +4717616,4717617,18.0,1936356,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22806.0,2146.0 +4717617,4717618,18.0,1936357,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717619,4717620,18.0,1936359,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717623,4717624,18.0,1936363,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4523,5.0,22806.0,2146.0 +4717624,4717625,18.0,1936364,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4717626,4717627,18.0,1936366,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22815.0,2150.0 +4717628,4717629,18.0,1936368,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22806.0,2146.0 +4717638,4717639,18.0,1936378,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4717640,4717641,18.0,1936380,1,1,17,1,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717641,4717642,18.0,1936381,1,2,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4717643,4717644,18.0,1936383,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717646,4717647,18.0,1936386,1,1,17,1,3.0,10.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4717647,4717648,18.0,1936387,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4717651,4717652,18.0,1936391,1,2,17,1,6.0,5.0,6.0,15.0,4.0,8114,17.0,22808.0,2147.0 +4717656,4717657,18.0,1936396,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717659,4717660,18.0,1936399,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +4717660,4717661,18.0,1936400,1,2,17,1,1.0,18.0,1.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4717662,4717663,18.0,1936402,1,2,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717663,4717664,18.0,1936403,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4717664,4717665,18.0,1936404,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4717665,4717666,18.0,1936405,1,2,17,1,6.0,25.0,4.0,15.0,4.0,4533,5.0,22765.0,2130.0 +4717666,4717667,18.0,1936406,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717667,4717668,18.0,1936407,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4717669,4717670,18.0,1936409,1,2,17,1,6.0,28.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4717670,4717671,18.0,1936410,1,2,17,1,6.0,28.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717671,4717672,18.0,1936411,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4717672,4717673,18.0,1936412,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22765.0,2130.0 +4717676,4717677,18.0,1936416,1,2,17,1,3.0,25.0,5.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4717677,4717678,18.0,1936417,1,2,17,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4717683,4717684,18.0,1936423,1,2,17,1,1.0,30.0,1.0,-9.0,4.0,8131,17.0,22808.0,2147.0 +4717684,4717685,18.0,1936424,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717687,4717688,18.0,1936427,1,2,17,1,1.0,23.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717688,4717689,18.0,1936428,1,2,17,1,6.0,30.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4717695,4717696,18.0,1936435,1,2,17,1,6.0,44.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717707,4717708,18.0,1936447,1,1,17,1,6.0,8.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717710,4717711,18.0,1936450,1,2,17,1,6.0,49.0,4.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4717713,4717714,18.0,1936453,1,1,17,1,6.0,40.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4717715,4717716,18.0,1936455,1,2,17,1,1.0,12.0,4.0,15.0,4.0,4481,5.0,22765.0,2130.0 +4717717,4717718,18.0,1936457,1,1,17,1,1.0,15.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4717719,4717720,18.0,1936459,1,1,17,1,6.0,45.0,6.0,15.0,4.0,611M3,13.0,22760.0,2128.0 +4717721,4717722,18.0,1936461,1,2,17,1,1.0,50.0,6.0,15.0,4.0,5415,10.0,22765.0,2130.0 +4717726,4717727,18.0,1936466,1,1,17,1,1.0,13.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717731,4717732,18.0,1936471,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4717732,4717733,18.0,1936472,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,2211P,7.0,22806.0,2146.0 +4717735,4717736,18.0,1936475,1,1,17,1,6.0,20.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4717738,4717739,18.0,1936478,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22810.0,2148.0 +4717740,4717741,18.0,1936480,1,2,17,1,6.0,15.0,4.0,15.0,4.0,5412,10.0,22808.0,2147.0 +4717742,4717743,18.0,1936482,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717743,4717744,18.0,1936483,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717745,4717746,18.0,1936485,1,1,17,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717753,4717754,18.0,1936493,1,2,17,1,1.0,11.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717757,4717758,18.0,1936497,1,2,17,1,6.0,6.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717764,4717765,18.0,1936504,1,1,17,1,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717766,4717767,18.0,1936506,1,2,17,1,1.0,17.0,1.0,15.0,4.0,4539,5.0,22806.0,2146.0 +4717770,4717771,18.0,1936510,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4717771,4717772,18.0,1936511,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,2211P,7.0,22810.0,2148.0 +4717772,4717773,18.0,1936512,1,1,17,1,6.0,40.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717778,4717779,18.0,1936518,1,2,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717780,4717781,18.0,1936520,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4717782,4717783,18.0,1936522,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22765.0,2130.0 +4717784,4717785,18.0,1936524,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5419Z,10.0,22765.0,2130.0 +4717788,4717789,18.0,1936528,1,1,17,1,3.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4717789,4717790,18.0,1936529,1,1,17,1,1.0,35.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717790,4717791,18.0,1936530,1,2,17,1,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4717791,4717792,18.0,1936531,1,1,17,1,6.0,40.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4717793,4717794,18.0,1936533,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22761.0,2128.0 +4717798,4717799,18.0,1936538,1,2,17,1,6.0,6.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717804,4717805,18.0,1936544,1,2,17,1,1.0,10.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717806,4717807,18.0,1936546,1,1,17,1,1.0,35.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717808,4717809,18.0,1936548,1,1,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717811,4717812,18.0,1936551,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4717814,4717815,18.0,1936554,1,2,17,1,1.0,15.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717817,4717818,18.0,1936557,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717818,4717819,18.0,1936558,1,1,17,1,3.0,18.0,5.0,16.0,4.0,722Z,16.0,22806.0,2146.0 +4717819,4717820,18.0,1936559,1,2,17,1,1.0,15.0,5.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4717824,4717825,18.0,1936564,1,2,17,1,6.0,14.0,1.0,15.0,4.0,4481,5.0,22806.0,2146.0 +4717825,4717826,18.0,1936565,1,1,17,1,1.0,16.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717835,4717836,18.0,1936575,1,1,17,1,6.0,8.0,5.0,15.0,4.0,722Z,16.0,22813.0,2150.0 +4717836,4717837,18.0,1936576,1,1,17,1,6.0,35.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4717838,4717839,18.0,1936578,1,2,17,1,1.0,6.0,5.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4717842,4717843,18.0,1936582,1,2,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717843,4717844,18.0,1936583,1,2,17,1,1.0,28.0,1.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4717844,4717845,18.0,1936584,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717847,4717848,18.0,1936587,1,1,17,1,6.0,30.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4717862,4717863,18.0,1936602,1,2,17,1,6.0,10.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717864,4717865,18.0,1936604,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22808.0,2147.0 +4717869,4717870,18.0,1936609,1,1,17,1,6.0,40.0,6.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4717871,4717872,18.0,1936611,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,6111,13.0,22810.0,2148.0 +4717875,4717876,18.0,1936615,1,1,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22814.0,2150.0 +4717876,4717877,18.0,1936616,1,2,17,1,6.0,6.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4717877,4717878,18.0,1936617,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4717880,4717881,18.0,1936620,1,1,17,1,1.0,25.0,3.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4717883,4717884,18.0,1936623,1,1,17,1,6.0,40.0,6.0,15.0,4.0,721M,16.0,22815.0,2150.0 +4717888,4717889,18.0,1936628,1,2,17,1,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4717889,4717890,18.0,1936629,1,1,17,1,6.0,7.0,6.0,15.0,4.0,5418,10.0,22806.0,2146.0 +4717890,4717891,18.0,1936630,1,1,17,1,6.0,10.0,6.0,15.0,4.0,3256,3.0,22808.0,2147.0 +4717894,4717895,18.0,1936634,1,1,17,1,6.0,2.0,6.0,16.0,4.0,5419Z,10.0,22806.0,2146.0 +4717895,4717896,18.0,1936635,1,2,17,1,1.0,10.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4717899,4717900,18.0,1936639,1,1,17,1,1.0,21.0,5.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4717900,4717901,18.0,1936640,1,2,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717903,4717904,18.0,1936643,1,1,17,1,6.0,6.0,5.0,15.0,4.0,4442,5.0,22806.0,2146.0 +4717904,4717905,18.0,1936644,1,2,17,1,2.0,6.0,5.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4717907,4717908,18.0,1936647,1,1,17,1,1.0,4.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4717912,4717913,18.0,1936652,1,1,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4717913,4717914,18.0,1936653,1,1,17,1,1.0,20.0,4.0,15.0,4.0,4539,5.0,22808.0,2147.0 +4717921,4717922,18.0,1936661,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4717922,4717923,18.0,1936662,1,2,17,1,6.0,40.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717925,4717926,18.0,1936665,1,2,17,1,6.0,36.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717940,4717941,18.0,1936680,1,2,17,1,1.0,25.0,4.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4717943,4717944,18.0,1936683,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717948,4717949,18.0,1936688,1,1,17,1,6.0,25.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4717950,4717951,18.0,1936690,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717951,4717952,18.0,1936691,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4717954,4717955,18.0,1936694,1,2,17,1,6.0,37.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717957,4717958,18.0,1936697,1,2,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4717970,4717971,18.0,1936710,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717974,4717975,18.0,1936714,1,2,17,1,6.0,5.0,5.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4717977,4717978,18.0,1936717,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717983,4717984,18.0,1936723,1,2,17,2,1.0,25.0,3.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4717985,4717986,18.0,1936725,1,2,17,2,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4717989,4717990,18.0,1936729,1,1,17,2,6.0,5.0,6.0,15.0,4.0,45121,5.0,22808.0,2147.0 +4717993,4717994,18.0,1936733,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4717995,4717996,18.0,1936735,1,1,17,2,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4718000,4718001,18.0,1936740,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,442,5.0,22808.0,2147.0 +4718004,4718005,18.0,1936744,1,1,17,2,6.0,44.0,6.0,15.0,4.0,336M,3.0,22815.0,2150.0 +4718006,4718007,18.0,1936746,1,1,17,2,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4718007,4718008,18.0,1936747,1,1,17,2,6.0,44.0,6.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4718008,4718009,18.0,1936748,1,2,17,2,6.0,16.0,6.0,13.0,4.0,813M,17.0,22808.0,2147.0 +4718016,4718017,18.0,1936756,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,442,5.0,22760.0,2128.0 +4718017,4718018,18.0,1936757,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22765.0,2130.0 +4718018,4718019,18.0,1936758,1,2,17,2,3.0,30.0,4.0,15.0,4.0,44512,5.0,22765.0,2130.0 +4718024,4718025,18.0,1936764,1,1,17,2,6.0,30.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4718029,4718030,18.0,1936769,1,2,17,2,1.0,25.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718037,4718038,18.0,1936777,1,1,17,2,6.0,30.0,1.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4718041,4718042,18.0,1936781,1,2,17,2,3.0,-9.0,-9.0,-9.0,4.0,999920,-9.0,22808.0,2147.0 +4718042,4718043,18.0,1936782,1,2,17,2,6.0,18.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718043,4718044,18.0,1936783,1,1,17,2,1.0,17.0,5.0,-9.0,4.0,311811,3.0,22808.0,2147.0 +4718046,4718047,18.0,1936786,1,1,17,2,6.0,8.0,6.0,15.0,4.0,4511M,5.0,22806.0,2146.0 +4718048,4718049,18.0,1936788,1,2,17,2,1.0,4.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718051,4718052,18.0,1936791,1,2,17,2,1.0,25.0,3.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4718054,4718055,18.0,1936794,1,1,17,2,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4718055,4718056,18.0,1936795,1,2,17,2,6.0,4.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4718058,4718059,18.0,1936798,1,1,17,2,3.0,25.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718061,4718062,18.0,1936801,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718064,4718065,18.0,1936804,1,2,17,2,1.0,30.0,1.0,15.0,4.0,5241,9.0,22818.0,2150.0 +4718066,4718067,18.0,1936806,1,1,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22808.0,2147.0 +4718069,4718070,18.0,1936809,1,1,17,2,3.0,10.0,6.0,15.0,4.0,4523,5.0,22765.0,2130.0 +4718072,4718073,18.0,1936812,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4718073,4718074,18.0,1936813,1,2,17,2,2.0,38.0,1.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4718078,4718079,18.0,1936818,1,1,17,2,6.0,30.0,6.0,15.0,4.0,811192,17.0,22808.0,2147.0 +4718080,4718081,18.0,1936820,1,2,17,2,6.0,40.0,5.0,-9.0,4.0,5616,12.0,22808.0,2147.0 +4718085,4718086,18.0,1936825,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718086,4718087,18.0,1936826,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4718088,4718089,18.0,1936828,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4718089,4718090,18.0,1936829,1,1,17,2,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4718092,4718093,18.0,1936832,1,1,17,2,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718093,4718094,18.0,1936833,1,2,17,2,1.0,20.0,6.0,-9.0,4.0,4523,5.0,22806.0,2146.0 +4718095,4718096,18.0,1936835,1,1,17,2,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4718097,4718098,18.0,1936837,1,2,17,2,3.0,-9.0,-9.0,-9.0,4.0,4244,4.0,22806.0,2146.0 +4718102,4718103,18.0,1936842,1,2,17,2,6.0,25.0,5.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4718105,4718106,18.0,1936845,1,1,17,2,6.0,50.0,5.0,16.0,4.0,9211MP,18.0,22808.0,2147.0 +4718111,4718112,18.0,1936851,1,1,17,2,6.0,20.0,6.0,15.0,4.0,56173,12.0,22806.0,2146.0 +4718113,4718114,18.0,1936853,1,2,17,2,1.0,38.0,1.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4718116,4718117,18.0,1936856,1,1,17,2,6.0,-9.0,-9.0,13.0,4.0,722Z,16.0,22808.0,2147.0 +4718121,4718122,18.0,1936861,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4718123,4718124,18.0,1936863,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718124,4718125,18.0,1936864,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4718127,4718128,18.0,1936867,1,1,17,2,1.0,17.0,5.0,-9.0,4.0,311811,3.0,22806.0,2146.0 +4718128,4718129,18.0,1936868,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4718134,4718135,18.0,1936874,1,1,17,2,3.0,10.0,6.0,15.0,4.0,4523,5.0,22813.0,2150.0 +4718135,4718136,18.0,1936875,1,2,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22806.0,2146.0 +4718140,4718141,18.0,1936880,1,2,17,2,3.0,40.0,4.0,14.0,4.0,54194,10.0,22808.0,2147.0 +4718142,4718143,18.0,1936882,1,2,17,4,3.0,27.0,4.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4718144,4718145,18.0,1936884,1,1,17,4,1.0,7.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718145,4718146,18.0,1936885,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718147,4718148,18.0,1936887,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718151,4718152,18.0,1936891,1,1,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718154,4718155,18.0,1936894,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,334M2,3.0,22813.0,2150.0 +4718157,4718158,18.0,1936897,1,1,17,4,6.0,8.0,6.0,15.0,4.0,9211MP,18.0,22758.0,2127.0 +4718158,4718159,18.0,1936898,1,1,17,4,6.0,38.0,6.0,15.0,4.0,3116,3.0,22808.0,2147.0 +4718161,4718162,18.0,1936901,1,2,17,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4718171,4718172,18.0,1936911,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718176,4718177,18.0,1936916,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4718178,4718179,18.0,1936918,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22813.0,2150.0 +4718185,4718186,18.0,1936925,1,1,17,4,6.0,3.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4718188,4718189,18.0,1936928,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4718189,4718190,18.0,1936929,1,1,17,4,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4718190,4718191,18.0,1936930,1,2,17,4,1.0,12.0,1.0,15.0,4.0,812112,17.0,22765.0,2130.0 +4718191,4718192,18.0,1936931,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22758.0,2127.0 +4718195,4718196,18.0,1936935,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4718196,4718197,18.0,1936936,1,2,17,4,1.0,20.0,1.0,15.0,4.0,4523,5.0,22806.0,2146.0 +4718198,4718199,18.0,1936938,1,2,17,4,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718202,4718203,18.0,1936942,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718205,4718206,18.0,1936945,1,2,17,4,1.0,20.0,1.0,15.0,4.0,45221,5.0,22765.0,2130.0 +4718206,4718207,18.0,1936946,1,1,17,4,1.0,7.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718210,4718211,18.0,1936950,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718211,4718212,18.0,1936951,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4718213,4718214,18.0,1936953,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4718216,4718217,18.0,1936956,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718218,4718219,18.0,1936958,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22806.0,2146.0 +4718221,4718222,18.0,1936961,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718232,4718233,18.0,1936972,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,814,17.0,22808.0,2147.0 +4718233,4718234,18.0,1936973,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718241,4718242,18.0,1936981,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4718243,4718244,18.0,1936983,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22758.0,2127.0 +4718248,4718249,18.0,1936988,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718250,4718251,18.0,1936990,1,1,17,4,6.0,6.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4718251,4718252,18.0,1936991,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22765.0,2130.0 +4718252,4718253,18.0,1936992,1,2,17,4,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718256,4718257,18.0,1936996,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4718257,4718258,18.0,1936997,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718261,4718262,18.0,1937001,1,2,17,4,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718263,4718264,18.0,1937003,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4718264,4718265,18.0,1937004,1,2,17,4,6.0,49.0,4.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4718268,4718269,18.0,1937008,1,2,17,4,1.0,10.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4718269,4718270,18.0,1937009,1,2,17,4,6.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718271,4718272,18.0,1937011,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718276,4718277,18.0,1937016,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22808.0,2147.0 +4718278,4718279,18.0,1937018,1,2,17,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4718285,4718286,18.0,1937025,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4718286,4718287,18.0,1937026,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718288,4718289,18.0,1937028,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,45221,5.0,22806.0,2146.0 +4718290,4718291,18.0,1937030,1,1,17,4,1.0,40.0,4.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4718296,4718297,18.0,1937036,1,1,17,4,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718297,4718298,18.0,1937037,1,1,17,4,1.0,14.0,2.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4718302,4718303,18.0,1937042,1,1,17,4,6.0,4.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4718306,4718307,18.0,1937046,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718309,4718310,18.0,1937049,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718310,4718311,18.0,1937050,1,2,17,4,2.0,12.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718316,4718317,18.0,1937056,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4718325,4718326,18.0,1937065,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718326,4718327,18.0,1937066,1,1,17,4,6.0,40.0,6.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4718327,4718328,18.0,1937067,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718328,4718329,18.0,1937068,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718331,4718332,18.0,1937071,1,2,17,4,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718332,4718333,18.0,1937072,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718335,4718336,18.0,1937075,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718336,4718337,18.0,1937076,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22760.0,2128.0 +4718338,4718339,18.0,1937078,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718340,4718341,18.0,1937080,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7111,16.0,22765.0,2130.0 +4718342,4718343,18.0,1937082,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,531M,9.0,22806.0,2146.0 +4718351,4718352,18.0,1937091,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22758.0,2127.0 +4718355,4718356,18.0,1937095,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,814,17.0,22808.0,2147.0 +4718357,4718358,18.0,1937097,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22808.0,2147.0 +4718359,4718360,18.0,1937099,1,1,17,4,1.0,70.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718361,4718362,18.0,1937101,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718362,4718363,18.0,1937102,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718364,4718365,18.0,1937104,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718366,4718367,18.0,1937106,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718369,4718370,18.0,1937109,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4718373,4718374,18.0,1937113,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22806.0,2146.0 +4718374,4718375,18.0,1937114,1,2,17,4,6.0,8.0,5.0,16.0,4.0,5413,10.0,22806.0,2146.0 +4718378,4718379,18.0,1937118,1,2,17,4,1.0,9.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718379,4718380,18.0,1937119,1,1,17,4,6.0,5.0,5.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4718382,4718383,18.0,1937122,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4718383,4718384,18.0,1937123,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22765.0,2130.0 +4718387,4718388,18.0,1937127,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718388,4718389,18.0,1937128,1,2,17,3,1.0,30.0,1.0,15.0,4.0,44511,5.0,22806.0,2146.0 +4718394,4718395,18.0,1937134,1,1,17,3,6.0,45.0,6.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4718395,4718396,18.0,1937135,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4718396,4718397,18.0,1937136,1,2,17,3,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4718401,4718402,18.0,1937141,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4718406,4718407,18.0,1937146,1,1,17,3,6.0,15.0,6.0,15.0,4.0,4411,5.0,22765.0,2130.0 +4718407,4718408,18.0,1937147,1,1,17,3,1.0,20.0,1.0,15.0,4.0,5313,9.0,22818.0,2150.0 +4718410,4718411,18.0,1937150,1,2,17,3,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718415,4718416,18.0,1937155,1,2,17,3,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718419,4718420,18.0,1937159,1,1,17,3,6.0,38.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718422,4718423,18.0,1937162,1,2,17,3,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718429,4718430,18.0,1937169,1,2,17,3,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4718437,4718438,18.0,1937177,1,1,17,3,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4718439,4718440,18.0,1937179,1,1,17,3,6.0,15.0,6.0,15.0,4.0,4411,5.0,22808.0,2147.0 +4718444,4718445,18.0,1937184,1,1,17,3,1.0,20.0,3.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4718445,4718446,18.0,1937185,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22815.0,2150.0 +4718447,4718448,18.0,1937187,1,2,17,1,1.0,60.0,5.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4718448,4718449,18.0,1937188,1,1,17,1,6.0,3.0,6.0,15.0,4.0,6111,13.0,22818.0,2150.0 +4718450,4718451,18.0,1937190,1,2,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718451,4718452,18.0,1937191,1,2,17,1,1.0,14.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718452,4718453,18.0,1937192,1,2,17,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4718457,4718458,18.0,1937197,1,2,17,1,6.0,6.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4718458,4718459,18.0,1937198,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4718459,4718460,18.0,1937199,1,1,17,1,6.0,12.0,3.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4718461,4718462,18.0,1937201,1,2,17,1,1.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4718465,4718466,18.0,1937205,1,2,17,3,1.0,30.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718468,4718469,18.0,1937208,1,1,17,2,1.0,18.0,5.0,15.0,4.0,4511M,5.0,22806.0,2146.0 +4718469,4718470,18.0,1937209,1,2,17,1,6.0,40.0,6.0,15.0,4.0,712,16.0,22765.0,2130.0 +4718472,4718473,18.0,1937212,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22815.0,2150.0 +4718474,4718475,18.0,1937214,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718475,4718476,18.0,1937215,1,2,17,2,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4718476,4718477,18.0,1937216,1,2,17,1,6.0,27.0,6.0,15.0,4.0,531M,9.0,22808.0,2147.0 +4718477,4718478,18.0,1937217,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,443142,5.0,22808.0,2147.0 +4718479,4718480,18.0,1937219,1,1,17,1,6.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718483,4718484,18.0,1937223,1,2,17,1,6.0,16.0,2.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4718486,4718487,18.0,1937226,1,2,17,1,1.0,12.0,1.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4718487,4718488,18.0,1937227,1,2,17,1,1.0,15.0,6.0,15.0,4.0,4481,5.0,22765.0,2130.0 +4718491,4718492,18.0,1937231,1,2,17,1,6.0,49.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4718493,4718494,18.0,1937233,1,2,17,1,1.0,10.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718496,4718497,18.0,1937236,1,2,17,1,6.0,35.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4718501,4718502,18.0,1937241,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4718503,4718504,18.0,1937243,1,1,17,2,6.0,25.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718508,4718509,18.0,1937248,1,1,17,4,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718519,4718520,18.0,1937259,1,1,17,1,1.0,24.0,3.0,15.0,4.0,5121,8.0,22758.0,2127.0 +4718525,4718526,18.0,1937265,1,1,17,1,6.0,40.0,5.0,16.0,4.0,33641M1,3.0,22765.0,2130.0 +4718528,4718529,18.0,1937268,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22758.0,2127.0 +4718530,4718531,18.0,1937270,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4718533,4718534,18.0,1937273,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4718536,4718537,18.0,1937276,1,1,17,1,6.0,28.0,5.0,14.0,4.0,44512,5.0,22806.0,2146.0 +4718537,4718538,18.0,1937277,1,1,17,1,1.0,20.0,5.0,15.0,4.0,515,8.0,22808.0,2147.0 +4718539,4718540,18.0,1937279,1,2,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718542,4718543,18.0,1937282,1,1,17,2,1.0,17.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718546,4718547,18.0,1937286,1,2,17,4,1.0,12.0,4.0,15.0,4.0,4511M,5.0,22815.0,2150.0 +4718550,4718551,18.0,1937290,1,2,17,1,2.0,15.0,4.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4718556,4718557,18.0,1937296,1,1,17,2,6.0,25.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4718558,4718559,18.0,1937298,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22815.0,2150.0 +4718560,4718561,18.0,1937300,1,2,17,4,6.0,2.0,4.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4718565,4718566,18.0,1937305,1,1,17,1,6.0,12.0,5.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4718567,4718568,18.0,1937307,1,1,17,1,6.0,6.0,6.0,15.0,4.0,515,8.0,22808.0,2147.0 +4718571,4718572,18.0,1937311,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718572,4718573,18.0,1937312,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,4523,5.0,22806.0,2146.0 +4718578,4718579,18.0,1937318,1,2,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718580,4718581,18.0,1937320,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,6111,13.0,22765.0,2130.0 +4718582,4718583,18.0,1937322,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4718585,4718586,18.0,1937325,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4718590,4718591,18.0,1937330,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22810.0,2148.0 +4718591,4718592,18.0,1937331,1,2,17,1,1.0,28.0,1.0,15.0,4.0,814,17.0,22808.0,2147.0 +4718592,4718593,18.0,1937332,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22810.0,2148.0 +4718595,4718596,18.0,1937335,1,2,17,1,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22765.0,2130.0 +4718596,4718597,18.0,1937336,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4718597,4718598,18.0,1937337,1,2,17,2,6.0,25.0,5.0,15.0,4.0,5617Z,12.0,22806.0,2146.0 +4718599,4718600,18.0,1937339,1,2,17,2,1.0,20.0,6.0,-9.0,4.0,4523,5.0,22806.0,2146.0 +4718601,4718602,18.0,1937341,1,2,17,1,1.0,15.0,3.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4718602,4718603,18.0,1937342,1,2,17,1,1.0,7.0,4.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4718606,4718607,18.0,1937346,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718609,4718610,18.0,1937349,1,2,17,2,6.0,25.0,5.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4718610,4718611,18.0,1937350,1,2,17,2,6.0,25.0,5.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4718613,4718614,18.0,1937353,1,2,17,2,1.0,16.0,1.0,15.0,4.0,622M,15.0,22760.0,2128.0 +4718614,4718615,18.0,1937354,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4718615,4718616,18.0,1937355,1,1,17,4,6.0,8.0,6.0,15.0,4.0,2211P,7.0,22806.0,2146.0 +4718616,4718617,18.0,1937356,1,2,17,2,1.0,14.0,4.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4718623,4718624,18.0,1937363,1,2,17,1,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4718624,4718625,18.0,1937364,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4718626,4718627,18.0,1937366,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718628,4718629,18.0,1937368,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4718634,4718635,18.0,1937374,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4718638,4718639,18.0,1937378,1,2,17,4,6.0,-9.0,-9.0,13.0,4.0,-9,-9.0,22758.0,2127.0 +4718639,4718640,18.0,1937379,1,2,17,1,1.0,16.0,5.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4718641,4718642,18.0,1937381,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22758.0,2127.0 +4718642,4718643,18.0,1937382,1,1,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718646,4718647,18.0,1937386,1,1,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4718648,4718649,18.0,1937388,1,2,17,1,1.0,12.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718650,4718651,18.0,1937390,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4718653,4718654,18.0,1937393,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4718655,4718656,18.0,1937395,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22765.0,2130.0 +4718657,4718658,18.0,1937397,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22758.0,2127.0 +4718658,4718659,18.0,1937398,1,1,17,1,2.0,30.0,6.0,15.0,4.0,23,2.0,22815.0,2150.0 +4718662,4718663,18.0,1937402,1,1,17,1,2.0,25.0,2.0,15.0,3.0,44512,5.0,22808.0,2147.0 +4718663,4718664,18.0,1937403,1,2,17,4,1.0,6.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718664,4718665,18.0,1937404,1,1,17,1,2.0,30.0,6.0,15.0,4.0,23,2.0,22765.0,2130.0 +4718665,4718666,18.0,1937405,1,1,17,1,6.0,48.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4718666,4718667,18.0,1937406,1,2,17,1,1.0,30.0,4.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4718668,4718669,18.0,1937408,1,1,17,1,6.0,20.0,4.0,15.0,4.0,4244,4.0,22808.0,2147.0 +4718670,4718671,18.0,1937410,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6211,14.0,22806.0,2146.0 +4718671,4718672,18.0,1937411,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718674,4718675,18.0,1937414,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22806.0,2146.0 +4718676,4718677,18.0,1937416,1,1,17,1,6.0,39.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4718678,4718679,18.0,1937418,1,2,17,1,1.0,11.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718680,4718681,18.0,1937420,1,1,17,4,6.0,5.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718681,4718682,18.0,1937421,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4718685,4718686,18.0,1937425,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4718687,4718688,18.0,1937427,1,2,17,1,3.0,20.0,1.0,15.0,4.0,814,17.0,22814.0,2150.0 +4718688,4718689,18.0,1937428,1,1,17,1,1.0,13.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718693,4718694,18.0,1937433,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718696,4718697,18.0,1937436,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4718698,4718699,18.0,1937438,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718700,4718701,18.0,1937440,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4718702,4718703,18.0,1937442,1,1,17,1,1.0,20.0,4.0,15.0,4.0,4233,4.0,22808.0,2147.0 +4718703,4718704,18.0,1937443,1,1,17,2,1.0,24.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718704,4718705,18.0,1937444,1,2,17,1,6.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718705,4718706,18.0,1937445,1,2,17,1,6.0,5.0,6.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4718708,4718709,18.0,1937448,1,1,17,1,6.0,28.0,5.0,14.0,4.0,44511,5.0,22808.0,2147.0 +4718710,4718711,18.0,1937450,1,2,17,1,6.0,13.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4718711,4718712,18.0,1937451,1,1,17,4,1.0,15.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718714,4718715,18.0,1937454,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718715,4718716,18.0,1937455,1,1,17,1,1.0,23.0,5.0,15.0,4.0,622M,15.0,22814.0,2150.0 +4718716,4718717,18.0,1937456,1,1,17,1,2.0,30.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4718718,4718719,18.0,1937458,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718720,4718721,18.0,1937460,1,1,17,1,6.0,25.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718721,4718722,18.0,1937461,1,1,17,1,6.0,32.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4718723,4718724,18.0,1937463,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4718725,4718726,18.0,1937465,1,1,17,1,1.0,8.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718726,4718727,18.0,1937466,1,2,17,2,6.0,18.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718729,4718730,18.0,1937469,1,1,17,1,3.0,14.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4718731,4718732,18.0,1937471,1,1,17,1,1.0,25.0,4.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4718734,4718735,18.0,1937474,1,1,17,1,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4718735,4718736,18.0,1937475,1,2,17,1,6.0,26.0,5.0,15.0,4.0,814,17.0,22765.0,2130.0 +4718737,4718738,18.0,1937477,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718739,4718740,18.0,1937479,1,2,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4718741,4718742,18.0,1937481,1,2,17,1,6.0,27.0,6.0,15.0,4.0,531M,9.0,22808.0,2147.0 +4718745,4718746,18.0,1937485,1,1,17,3,3.0,40.0,6.0,15.0,4.0,334M1,3.0,22814.0,2150.0 +4718746,4718747,18.0,1937486,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4718747,4718748,18.0,1937487,1,1,17,1,3.0,14.0,4.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4718749,4718750,18.0,1937489,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4718752,4718753,18.0,1937492,1,1,17,1,6.0,32.0,6.0,15.0,4.0,712,16.0,22808.0,2147.0 +4718758,4718759,18.0,1937498,1,2,17,4,6.0,-9.0,-9.0,13.0,4.0,-9,-9.0,22808.0,2147.0 +4718761,4718762,18.0,1937501,1,1,17,4,1.0,40.0,4.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4718762,4718763,18.0,1937502,1,1,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718764,4718765,18.0,1937504,1,1,17,1,6.0,10.0,6.0,15.0,4.0,3256,3.0,22806.0,2146.0 +4718765,4718766,18.0,1937505,1,2,17,2,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4718772,4718773,18.0,1937512,1,2,17,1,3.0,15.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718773,4718774,18.0,1937513,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718782,4718783,18.0,1937522,1,1,17,3,6.0,14.0,4.0,15.0,4.0,4MS,5.0,22808.0,2147.0 +4718784,4718785,18.0,1937524,1,2,17,1,6.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4718788,4718789,18.0,1937528,1,2,17,1,1.0,4.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718793,4718794,18.0,1937533,1,1,17,1,6.0,45.0,6.0,15.0,4.0,23,2.0,22815.0,2150.0 +4718794,4718795,18.0,1937534,1,1,17,1,6.0,25.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4718795,4718796,18.0,1937535,1,1,17,4,6.0,35.0,6.0,15.0,4.0,811192,17.0,22808.0,2147.0 +4718801,4718802,18.0,1937541,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718803,4718804,18.0,1937543,1,2,17,1,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22765.0,2130.0 +4718804,4718805,18.0,1937544,1,2,17,1,6.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4718806,4718807,18.0,1937546,1,1,17,1,6.0,38.0,5.0,15.0,4.0,33641M1,3.0,22808.0,2147.0 +4718809,4718810,18.0,1937549,1,2,17,1,6.0,30.0,4.0,15.0,4.0,6231,14.0,22808.0,2147.0 +4718812,4718813,18.0,1937552,1,2,17,1,1.0,5.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4718815,4718816,18.0,1937555,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,23,2.0,22808.0,2147.0 +4718816,4718817,18.0,1937556,1,2,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4718817,4718818,18.0,1937557,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718818,4718819,18.0,1937558,1,2,17,1,6.0,40.0,5.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4718819,4718820,18.0,1937559,1,2,17,1,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718822,4718823,18.0,1937562,1,2,17,4,6.0,30.0,1.0,15.0,4.0,54194,10.0,22808.0,2147.0 +4718824,4718825,18.0,1937564,1,1,17,1,6.0,48.0,6.0,15.0,4.0,337,3.0,22815.0,2150.0 +4718828,4718829,18.0,1937568,1,1,17,1,3.0,20.0,6.0,15.0,4.0,6241,14.0,22758.0,2127.0 +4718832,4718833,18.0,1937572,1,1,17,1,6.0,40.0,6.0,15.0,4.0,52M2,9.0,22806.0,2146.0 +4718834,4718835,18.0,1937574,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22758.0,2127.0 +4718839,4718840,18.0,1937579,1,1,17,1,6.0,20.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4718841,4718842,18.0,1937581,1,1,17,4,1.0,40.0,4.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4718845,4718846,18.0,1937585,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4718848,4718849,18.0,1937588,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4718849,4718850,18.0,1937589,1,2,17,1,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4718850,4718851,18.0,1937590,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718857,4718858,18.0,1937597,1,1,17,1,6.0,30.0,3.0,15.0,4.0,44511,5.0,22806.0,2146.0 +4718858,4718859,18.0,1937598,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22765.0,2130.0 +4718859,4718860,18.0,1937599,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718865,4718866,18.0,1937605,1,2,17,1,6.0,36.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4718869,4718870,18.0,1937609,1,2,17,1,1.0,10.0,5.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4718872,4718873,18.0,1937612,1,2,17,1,1.0,60.0,5.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4718876,4718877,18.0,1937616,1,2,17,1,1.0,12.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4718881,4718882,18.0,1937621,1,2,17,1,1.0,13.0,6.0,-9.0,4.0,713Z,16.0,22808.0,2147.0 +4718886,4718887,18.0,1937626,1,2,17,1,6.0,3.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4718889,4718890,18.0,1937629,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4718890,4718891,18.0,1937630,1,1,17,2,1.0,17.0,5.0,-9.0,4.0,311811,3.0,22808.0,2147.0 +4718893,4718894,19.0,1937633,1,2,17,1,6.0,15.0,4.0,15.0,4.0,5412,10.0,22808.0,2147.0 +4718894,4718895,19.0,1937634,1,2,17,1,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4718895,4718896,19.0,1937635,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718898,4718899,19.0,1937638,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4718901,4718902,19.0,1937641,1,1,17,1,1.0,20.0,4.0,15.0,4.0,712,16.0,22814.0,2150.0 +4718903,4718904,19.0,1937643,1,2,17,1,6.0,32.0,6.0,15.0,4.0,52M2,9.0,22808.0,2147.0 +4718908,4718909,19.0,1937648,1,1,17,1,6.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718910,4718911,19.0,1937650,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718911,4718912,19.0,1937651,1,2,17,1,1.0,6.0,2.0,15.0,4.0,6216,14.0,22808.0,2147.0 +4718914,4718915,19.0,1937654,1,1,17,1,6.0,39.0,5.0,15.0,4.0,713Z,16.0,22815.0,2150.0 +4718918,4718919,19.0,1937658,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,23,2.0,22808.0,2147.0 +4718926,4718927,19.0,1937666,1,2,17,1,6.0,25.0,4.0,15.0,4.0,4533,5.0,22808.0,2147.0 +4718929,4718930,19.0,1937669,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718935,4718936,19.0,1937675,1,2,17,1,1.0,3.0,1.0,15.0,4.0,611M3,13.0,22814.0,2150.0 +4718936,4718937,19.0,1937676,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718937,4718938,19.0,1937677,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718940,4718941,19.0,1937680,1,2,17,1,3.0,40.0,5.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4718948,4718949,19.0,1937688,1,2,17,1,1.0,16.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718949,4718950,19.0,1937689,1,2,17,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718951,4718952,19.0,1937691,1,2,17,1,6.0,4.0,6.0,15.0,4.0,6244,14.0,22758.0,2127.0 +4718955,4718956,19.0,1937695,1,1,17,1,6.0,35.0,5.0,15.0,4.0,23,2.0,22765.0,2130.0 +4718956,4718957,19.0,1937696,1,1,17,1,1.0,5.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718957,4718958,19.0,1937697,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4718960,4718961,19.0,1937700,1,1,17,1,3.0,10.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4718962,4718963,19.0,1937702,1,2,17,1,6.0,23.0,6.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4718965,4718966,19.0,1937705,1,1,17,1,6.0,6.0,5.0,15.0,4.0,4442,5.0,22808.0,2147.0 +4718966,4718967,19.0,1937706,1,1,17,1,1.0,12.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4718968,4718969,19.0,1937708,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4718972,4718973,19.0,1937712,1,2,17,1,1.0,28.0,1.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4718975,4718976,19.0,1937715,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4718977,4718978,19.0,1937717,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4718978,4718979,19.0,1937718,1,2,17,1,6.0,8.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4718979,4718980,19.0,1937719,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4718986,4718987,19.0,1937726,1,2,17,1,1.0,9.0,4.0,15.0,4.0,6214,14.0,22806.0,2146.0 +4718989,4718990,19.0,1937729,1,2,17,1,6.0,24.0,6.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4718992,4718993,19.0,1937732,1,2,17,1,6.0,60.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4718993,4718994,19.0,1937733,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4718997,4718998,19.0,1937737,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22758.0,2127.0 +4718998,4718999,19.0,1937738,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4718999,4719000,19.0,1937739,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5417,10.0,22808.0,2147.0 +4719001,4719002,19.0,1937741,1,1,17,1,6.0,12.0,5.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4719007,4719008,19.0,1937747,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719008,4719009,19.0,1937748,1,1,17,1,6.0,42.0,6.0,15.0,4.0,713Z,16.0,22815.0,2150.0 +4719010,4719011,19.0,1937750,1,1,17,1,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22814.0,2150.0 +4719011,4719012,19.0,1937751,1,2,17,1,6.0,4.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4719012,4719013,19.0,1937752,1,2,17,1,6.0,40.0,6.0,15.0,4.0,712,16.0,22806.0,2146.0 +4719013,4719014,19.0,1937753,1,2,17,1,1.0,30.0,6.0,15.0,4.0,45121,5.0,22806.0,2146.0 +4719023,4719024,19.0,1937763,1,2,17,1,6.0,5.0,5.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4719029,4719030,19.0,1937769,1,2,17,1,1.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719030,4719031,19.0,1937770,1,2,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +4719032,4719033,19.0,1937772,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22765.0,2130.0 +4719034,4719035,19.0,1937774,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4719035,4719036,19.0,1937775,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4719036,4719037,19.0,1937776,1,1,17,1,3.0,50.0,6.0,15.0,4.0,5617Z,12.0,22806.0,2146.0 +4719037,4719038,19.0,1937777,1,1,17,1,6.0,20.0,6.0,15.0,4.0,4511M,5.0,22806.0,2146.0 +4719042,4719043,19.0,1937782,1,1,17,1,6.0,40.0,4.0,15.0,4.0,4413,5.0,22806.0,2146.0 +4719043,4719044,19.0,1937783,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719044,4719045,19.0,1937784,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4719051,4719052,19.0,1937791,1,2,17,1,1.0,50.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719052,4719053,19.0,1937792,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719054,4719055,19.0,1937794,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719059,4719060,19.0,1937799,1,2,17,1,1.0,40.0,2.0,-9.0,4.0,5412,10.0,22806.0,2146.0 +4719061,4719062,19.0,1937801,1,2,17,1,1.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4719062,4719063,19.0,1937802,1,1,17,1,1.0,40.0,3.0,15.0,4.0,5413,10.0,22806.0,2146.0 +4719063,4719064,19.0,1937803,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719065,4719066,19.0,1937805,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4719066,4719067,19.0,1937806,1,1,17,1,6.0,40.0,4.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4719067,4719068,19.0,1937807,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4719070,4719071,19.0,1937810,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4719078,4719079,19.0,1937818,1,1,17,1,6.0,25.0,6.0,15.0,4.0,111,1.0,22808.0,2147.0 +4719079,4719080,19.0,1937819,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22814.0,2150.0 +4719085,4719086,19.0,1937825,1,1,17,1,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +4719088,4719089,19.0,1937828,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4719097,4719098,19.0,1937837,1,2,17,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719107,4719108,19.0,1937847,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4719112,4719113,19.0,1937852,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4719113,4719114,19.0,1937853,1,1,17,1,3.0,30.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4719117,4719118,19.0,1937857,1,2,17,1,1.0,15.0,1.0,15.0,4.0,6214,14.0,22808.0,2147.0 +4719118,4719119,19.0,1937858,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719126,4719127,19.0,1937866,1,2,17,1,6.0,4.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4719131,4719132,19.0,1937871,1,2,17,1,1.0,15.0,6.0,15.0,4.0,5313,9.0,22808.0,2147.0 +4719133,4719134,19.0,1937873,1,2,17,1,1.0,14.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4719134,4719135,19.0,1937874,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719137,4719138,19.0,1937877,1,1,17,1,6.0,12.0,5.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4719138,4719139,19.0,1937878,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4719140,4719141,19.0,1937880,1,1,17,1,1.0,24.0,6.0,12.0,4.0,6243,14.0,22814.0,2150.0 +4719145,4719146,19.0,1937885,1,1,17,1,6.0,48.0,6.0,15.0,4.0,337,3.0,22765.0,2130.0 +4719147,4719148,19.0,1937887,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,722Z,16.0,22765.0,2130.0 +4719148,4719149,19.0,1937888,1,2,17,1,6.0,25.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719149,4719150,19.0,1937889,1,2,17,1,1.0,15.0,2.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4719150,4719151,19.0,1937890,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,722Z,16.0,22806.0,2146.0 +4719151,4719152,19.0,1937891,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4719152,4719153,19.0,1937892,1,1,17,1,6.0,15.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719156,4719157,19.0,1937896,1,2,17,1,6.0,15.0,5.0,15.0,4.0,4481,5.0,22760.0,2128.0 +4719157,4719158,19.0,1937897,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719160,4719161,19.0,1937900,1,1,17,1,6.0,40.0,3.0,15.0,4.0,23,2.0,22806.0,2146.0 +4719165,4719166,19.0,1937905,1,2,17,1,6.0,40.0,6.0,15.0,4.0,712,16.0,22806.0,2146.0 +4719171,4719172,19.0,1937911,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22806.0,2146.0 +4719177,4719178,19.0,1937917,1,1,17,1,6.0,8.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719180,4719181,19.0,1937920,1,1,17,1,6.0,15.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4719182,4719183,19.0,1937922,1,1,17,1,3.0,50.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4719196,4719197,19.0,1937936,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4719199,4719200,19.0,1937939,1,2,17,1,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719202,4719203,19.0,1937942,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4719204,4719205,19.0,1937944,1,2,17,1,1.0,60.0,5.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4719208,4719209,19.0,1937948,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719210,4719211,19.0,1937950,1,2,17,1,3.0,25.0,5.0,15.0,4.0,44511,5.0,22810.0,2148.0 +4719213,4719214,19.0,1937953,1,2,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719215,4719216,19.0,1937955,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719217,4719218,19.0,1937957,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4719218,4719219,19.0,1937958,1,1,17,1,6.0,25.0,6.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4719221,4719222,19.0,1937961,1,2,17,1,6.0,15.0,5.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4719225,4719226,19.0,1937965,1,1,17,1,1.0,24.0,3.0,15.0,4.0,5121,8.0,22808.0,2147.0 +4719227,4719228,19.0,1937967,1,2,17,1,1.0,10.0,5.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4719230,4719231,19.0,1937970,1,1,17,1,6.0,14.0,4.0,15.0,4.0,4MS,5.0,22808.0,2147.0 +4719232,4719233,19.0,1937972,1,2,17,1,6.0,36.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719239,4719240,19.0,1937979,1,1,17,1,1.0,11.0,2.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4719244,4719245,19.0,1937984,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4719247,4719248,19.0,1937987,1,1,17,1,6.0,30.0,6.0,15.0,4.0,56173,12.0,22765.0,2130.0 +4719248,4719249,19.0,1937988,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4719250,4719251,19.0,1937990,1,1,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22761.0,2128.0 +4719256,4719257,19.0,1937996,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4719257,4719258,19.0,1937997,1,1,17,1,6.0,20.0,6.0,16.0,4.0,45321,5.0,22808.0,2147.0 +4719266,4719267,19.0,1938006,1,2,17,1,6.0,30.0,4.0,15.0,4.0,4412,5.0,22808.0,2147.0 +4719268,4719269,19.0,1938008,1,2,17,1,6.0,25.0,5.0,15.0,4.0,44511,5.0,22765.0,2130.0 +4719274,4719275,19.0,1938014,1,2,17,1,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4719275,4719276,19.0,1938015,1,1,17,1,6.0,30.0,6.0,15.0,4.0,4452,5.0,22815.0,2150.0 +4719276,4719277,19.0,1938016,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4719283,4719284,19.0,1938023,1,1,17,1,6.0,8.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719284,4719285,19.0,1938024,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719286,4719287,19.0,1938026,1,2,17,1,6.0,26.0,5.0,15.0,4.0,814,17.0,22808.0,2147.0 +4719287,4719288,19.0,1938027,1,2,17,1,6.0,25.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4719296,4719297,19.0,1938036,1,1,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719300,4719301,19.0,1938040,1,2,17,1,1.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719302,4719303,19.0,1938042,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4719304,4719305,19.0,1938044,1,2,17,1,1.0,30.0,1.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4719305,4719306,19.0,1938045,1,1,17,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4719310,4719311,19.0,1938050,1,2,17,1,6.0,84.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4719311,4719312,19.0,1938051,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4719312,4719313,19.0,1938052,1,2,17,1,6.0,35.0,3.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4719316,4719317,19.0,1938056,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719320,4719321,19.0,1938060,1,1,17,1,6.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719325,4719326,19.0,1938065,1,2,17,1,6.0,25.0,4.0,15.0,4.0,4533,5.0,22808.0,2147.0 +4719326,4719327,19.0,1938066,1,2,17,1,6.0,25.0,6.0,15.0,4.0,45221,5.0,22808.0,2147.0 +4719329,4719330,19.0,1938069,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719332,4719333,19.0,1938072,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4719333,4719334,19.0,1938073,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719336,4719337,19.0,1938076,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719337,4719338,19.0,1938077,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4719339,4719340,19.0,1938079,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4719343,4719344,19.0,1938083,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4719344,4719345,19.0,1938084,1,2,17,1,1.0,17.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719347,4719348,19.0,1938087,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719348,4719349,19.0,1938088,1,2,17,1,6.0,6.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719350,4719351,19.0,1938090,1,2,17,1,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719357,4719358,19.0,1938097,1,2,17,1,1.0,14.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719359,4719360,19.0,1938099,1,2,17,1,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719364,4719365,19.0,1938104,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719367,4719368,19.0,1938107,1,1,17,1,6.0,38.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4719369,4719370,19.0,1938109,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719377,4719378,19.0,1938117,1,1,17,1,6.0,10.0,6.0,15.0,4.0,3256,3.0,22765.0,2130.0 +4719378,4719379,19.0,1938118,1,1,17,1,6.0,35.0,5.0,15.0,4.0,56173,12.0,22806.0,2146.0 +4719386,4719387,19.0,1938126,1,1,17,1,6.0,20.0,6.0,16.0,4.0,45321,5.0,22808.0,2147.0 +4719387,4719388,19.0,1938127,1,2,17,1,1.0,10.0,6.0,15.0,4.0,44821,5.0,22814.0,2150.0 +4719392,4719393,19.0,1938132,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22818.0,2150.0 +4719396,4719397,19.0,1938136,1,1,17,1,6.0,45.0,6.0,15.0,4.0,23,2.0,22814.0,2150.0 +4719398,4719399,19.0,1938138,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4719399,4719400,19.0,1938139,1,1,17,1,6.0,8.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719400,4719401,19.0,1938140,1,2,17,1,6.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4719402,4719403,19.0,1938142,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4719403,4719404,19.0,1938143,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4719409,4719410,19.0,1938149,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719410,4719411,19.0,1938150,1,1,17,1,1.0,10.0,6.0,15.0,4.0,622M,15.0,22765.0,2130.0 +4719413,4719414,19.0,1938153,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719414,4719415,19.0,1938154,1,1,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4719426,4719427,19.0,1938166,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4719429,4719430,19.0,1938169,1,2,17,1,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719434,4719435,19.0,1938174,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22808.0,2147.0 +4719436,4719437,19.0,1938176,1,1,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719445,4719446,19.0,1938185,1,1,17,1,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719448,4719449,19.0,1938188,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4719454,4719455,19.0,1938194,1,2,17,1,6.0,8.0,4.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4719458,4719459,19.0,1938198,1,2,17,1,1.0,6.0,2.0,15.0,4.0,6216,14.0,22814.0,2150.0 +4719459,4719460,19.0,1938199,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719462,4719463,19.0,1938202,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719467,4719468,19.0,1938207,1,1,17,1,1.0,13.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719471,4719472,19.0,1938211,1,2,17,1,6.0,20.0,6.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4719473,4719474,19.0,1938213,1,2,17,1,1.0,7.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719480,4719481,19.0,1938220,1,2,17,1,1.0,10.0,1.0,15.0,4.0,622M,15.0,22810.0,2148.0 +4719482,4719483,19.0,1938222,1,2,17,1,1.0,13.0,6.0,-9.0,4.0,713Z,16.0,22806.0,2146.0 +4719483,4719484,19.0,1938223,1,1,17,1,6.0,30.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4719484,4719485,19.0,1938224,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22806.0,2146.0 +4719494,4719495,19.0,1938234,1,1,17,1,1.0,25.0,4.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4719504,4719505,19.0,1938244,1,1,17,1,2.0,20.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719510,4719511,19.0,1938250,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22758.0,2127.0 +4719512,4719513,19.0,1938252,1,1,17,1,1.0,15.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4719513,4719514,19.0,1938253,1,1,17,1,6.0,14.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4719518,4719519,19.0,1938258,1,2,17,1,6.0,8.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4719526,4719527,19.0,1938266,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719527,4719528,19.0,1938267,1,2,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719528,4719529,19.0,1938268,1,2,17,1,1.0,3.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719530,4719531,19.0,1938270,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4719535,4719536,19.0,1938275,1,2,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719537,4719538,19.0,1938277,1,2,17,1,1.0,16.0,1.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4719542,4719543,19.0,1938282,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4719546,4719547,19.0,1938286,1,1,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719548,4719549,19.0,1938288,1,2,17,1,6.0,11.0,4.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4719549,4719550,19.0,1938289,1,1,17,1,6.0,38.0,6.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4719550,4719551,19.0,1938290,1,2,17,1,6.0,9.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719557,4719558,19.0,1938297,1,2,17,1,6.0,32.0,6.0,15.0,4.0,52M2,9.0,22808.0,2147.0 +4719561,4719562,19.0,1938301,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4719567,4719568,19.0,1938307,1,2,17,1,1.0,15.0,2.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4719570,4719571,19.0,1938310,1,1,17,1,6.0,3.0,6.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4719577,4719578,19.0,1938317,1,1,17,1,6.0,10.0,6.0,15.0,4.0,56173,12.0,22765.0,2130.0 +4719581,4719582,19.0,1938321,1,1,17,1,6.0,14.0,4.0,15.0,4.0,4MS,5.0,22808.0,2147.0 +4719582,4719583,19.0,1938322,1,1,17,1,1.0,14.0,1.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4719585,4719586,19.0,1938325,1,1,17,1,6.0,15.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719587,4719588,19.0,1938327,1,2,17,1,6.0,25.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4719593,4719594,19.0,1938333,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4719600,4719601,19.0,1938340,1,1,17,1,6.0,40.0,6.0,15.0,4.0,721M,16.0,22758.0,2127.0 +4719601,4719602,19.0,1938341,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4719604,4719605,19.0,1938344,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4719605,4719606,19.0,1938345,1,1,17,1,1.0,18.0,1.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4719609,4719610,19.0,1938349,1,1,17,1,1.0,17.0,1.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4719610,4719611,19.0,1938350,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4719612,4719613,19.0,1938352,1,2,17,1,1.0,50.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719620,4719621,19.0,1938360,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4719631,4719632,19.0,1938371,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22765.0,2130.0 +4719637,4719638,19.0,1938377,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719644,4719645,19.0,1938384,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719651,4719652,19.0,1938391,1,2,17,1,6.0,40.0,4.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4719656,4719657,19.0,1938396,1,1,17,1,1.0,40.0,1.0,15.0,4.0,484,6.0,22808.0,2147.0 +4719657,4719658,19.0,1938397,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4719660,4719661,19.0,1938400,1,1,17,1,6.0,18.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4719662,4719663,19.0,1938402,1,1,17,1,1.0,11.0,1.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4719664,4719665,19.0,1938404,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4511M,5.0,22765.0,2130.0 +4719666,4719667,19.0,1938406,1,2,17,1,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +4719670,4719671,19.0,1938410,1,2,17,1,1.0,10.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4719672,4719673,19.0,1938412,1,2,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4719673,4719674,19.0,1938413,1,1,17,1,3.0,30.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4719680,4719681,19.0,1938420,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4719681,4719682,19.0,1938421,1,2,17,1,6.0,25.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4719687,4719688,19.0,1938427,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22806.0,2146.0 +4719689,4719690,19.0,1938429,1,1,17,1,6.0,30.0,3.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4719691,4719692,19.0,1938431,1,2,17,1,6.0,45.0,6.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4719692,4719693,19.0,1938432,1,1,17,1,6.0,35.0,6.0,15.0,4.0,813M,17.0,22813.0,2150.0 +4719695,4719696,19.0,1938435,1,2,17,1,1.0,30.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4719699,4719700,19.0,1938439,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4719702,4719703,19.0,1938442,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4719703,4719704,19.0,1938443,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4719704,4719705,19.0,1938444,1,2,17,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719709,4719710,19.0,1938449,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4719712,4719713,19.0,1938452,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22760.0,2128.0 +4719717,4719718,19.0,1938457,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +4719722,4719723,19.0,1938462,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719725,4719726,19.0,1938465,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4719730,4719731,19.0,1938470,1,1,17,1,6.0,35.0,5.0,15.0,4.0,5121,8.0,22765.0,2130.0 +4719731,4719732,19.0,1938471,1,2,17,1,1.0,50.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719732,4719733,19.0,1938472,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719733,4719734,19.0,1938473,1,2,17,1,6.0,25.0,5.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4719735,4719736,19.0,1938475,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22806.0,2146.0 +4719736,4719737,19.0,1938476,1,1,17,1,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719739,4719740,19.0,1938479,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22808.0,2147.0 +4719742,4719743,19.0,1938482,1,1,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719743,4719744,19.0,1938483,1,2,17,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719744,4719745,19.0,1938484,1,1,17,1,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4719745,4719746,19.0,1938485,1,1,17,1,1.0,5.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719746,4719747,19.0,1938486,1,2,17,1,1.0,50.0,6.0,15.0,4.0,5415,10.0,22765.0,2130.0 +4719747,4719748,19.0,1938487,1,1,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +4719753,4719754,19.0,1938493,1,2,17,1,6.0,15.0,6.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4719756,4719757,19.0,1938496,1,2,17,1,6.0,23.0,6.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4719758,4719759,19.0,1938498,1,1,17,1,1.0,16.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719760,4719761,19.0,1938500,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4719766,4719767,19.0,1938506,1,2,17,1,1.0,6.0,2.0,15.0,4.0,6216,14.0,22806.0,2146.0 +4719767,4719768,19.0,1938507,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4719771,4719772,19.0,1938511,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719772,4719773,19.0,1938512,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719773,4719774,19.0,1938513,1,2,17,2,1.0,20.0,1.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4719775,4719776,19.0,1938515,1,2,17,2,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719776,4719777,19.0,1938516,1,2,17,2,1.0,30.0,2.0,15.0,4.0,44511,5.0,22765.0,2130.0 +4719781,4719782,19.0,1938521,1,1,17,2,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719784,4719785,19.0,1938524,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4719786,4719787,19.0,1938526,1,1,17,2,6.0,-9.0,-9.0,13.0,4.0,722Z,16.0,22765.0,2130.0 +4719789,4719790,19.0,1938529,1,2,17,2,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4719790,4719791,19.0,1938530,1,1,17,2,6.0,35.0,4.0,15.0,4.0,23,2.0,22808.0,2147.0 +4719793,4719794,19.0,1938533,1,1,17,2,2.0,15.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719794,4719795,19.0,1938534,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4719801,4719802,19.0,1938541,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4719804,4719805,19.0,1938544,1,2,17,2,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719807,4719808,19.0,1938547,1,1,17,2,6.0,44.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4719808,4719809,19.0,1938548,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4719809,4719810,19.0,1938549,1,2,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22808.0,2147.0 +4719812,4719813,19.0,1938552,1,1,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22808.0,2147.0 +4719816,4719817,19.0,1938556,1,1,17,2,6.0,5.0,6.0,15.0,4.0,45121,5.0,22765.0,2130.0 +4719820,4719821,19.0,1938560,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22810.0,2148.0 +4719822,4719823,19.0,1938562,1,1,17,2,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4719823,4719824,19.0,1938563,1,2,17,2,6.0,15.0,1.0,15.0,4.0,4539,5.0,22808.0,2147.0 +4719825,4719826,19.0,1938565,1,2,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22808.0,2147.0 +4719826,4719827,19.0,1938566,1,2,17,2,6.0,16.0,6.0,13.0,4.0,813M,17.0,22806.0,2146.0 +4719828,4719829,19.0,1938568,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719831,4719832,19.0,1938571,1,2,17,2,1.0,20.0,6.0,-9.0,4.0,4523,5.0,22808.0,2147.0 +4719832,4719833,19.0,1938572,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,814,17.0,22806.0,2146.0 +4719835,4719836,19.0,1938575,1,2,17,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4719836,4719837,19.0,1938576,1,1,17,4,1.0,15.0,4.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4719837,4719838,19.0,1938577,1,2,17,4,6.0,2.0,4.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4719842,4719843,19.0,1938582,1,1,17,4,6.0,3.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4719843,4719844,19.0,1938583,1,1,17,4,1.0,12.0,1.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4719844,4719845,19.0,1938584,1,2,17,4,1.0,20.0,1.0,15.0,4.0,45221,5.0,22808.0,2147.0 +4719846,4719847,19.0,1938586,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4719847,4719848,19.0,1938587,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4719848,4719849,19.0,1938588,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719849,4719850,19.0,1938589,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,336M,3.0,22765.0,2130.0 +4719851,4719852,19.0,1938591,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22765.0,2130.0 +4719858,4719859,19.0,1938598,1,2,17,4,1.0,6.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719859,4719860,19.0,1938599,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719862,4719863,19.0,1938602,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4719863,4719864,19.0,1938603,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4719864,4719865,19.0,1938604,1,1,17,4,1.0,7.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4719867,4719868,19.0,1938607,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22761.0,2128.0 +4719868,4719869,19.0,1938608,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4719871,4719872,19.0,1938611,1,2,17,4,6.0,16.0,5.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4719875,4719876,19.0,1938615,1,1,17,4,1.0,15.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719882,4719883,19.0,1938622,1,2,17,4,6.0,30.0,1.0,15.0,4.0,54194,10.0,22808.0,2147.0 +4719883,4719884,19.0,1938623,1,1,17,4,6.0,18.0,6.0,15.0,4.0,562,12.0,22818.0,2150.0 +4719890,4719891,19.0,1938630,1,2,17,4,6.0,16.0,5.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4719892,4719893,19.0,1938632,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719893,4719894,19.0,1938633,1,1,17,4,1.0,40.0,4.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4719896,4719897,19.0,1938636,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719906,4719907,19.0,1938646,1,1,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719909,4719910,19.0,1938649,1,1,17,4,6.0,20.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4719911,4719912,19.0,1938651,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4719913,4719914,19.0,1938653,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719914,4719915,19.0,1938654,1,1,17,4,1.0,9.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719915,4719916,19.0,1938655,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22808.0,2147.0 +4719917,4719918,19.0,1938657,1,2,17,4,1.0,30.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4719920,4719921,19.0,1938660,1,1,17,4,6.0,3.0,6.0,15.0,4.0,6111,13.0,22765.0,2130.0 +4719922,4719923,19.0,1938662,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4719925,4719926,19.0,1938665,1,1,17,4,1.0,12.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4719926,4719927,19.0,1938666,1,2,17,4,3.0,27.0,4.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4719929,4719930,19.0,1938669,1,1,17,4,3.0,15.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4719931,4719932,19.0,1938671,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719935,4719936,19.0,1938675,1,2,17,4,6.0,30.0,1.0,15.0,4.0,54194,10.0,22760.0,2128.0 +4719943,4719944,19.0,1938683,1,2,17,4,6.0,8.0,5.0,16.0,4.0,5413,10.0,22814.0,2150.0 +4719945,4719946,19.0,1938685,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,531M,9.0,22808.0,2147.0 +4719946,4719947,19.0,1938686,1,1,17,4,1.0,25.0,4.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4719948,4719949,19.0,1938688,1,2,17,4,1.0,21.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4719949,4719950,19.0,1938689,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4719951,4719952,19.0,1938691,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22760.0,2128.0 +4719952,4719953,19.0,1938692,1,1,17,4,6.0,6.0,6.0,15.0,4.0,3113,3.0,22808.0,2147.0 +4719953,4719954,19.0,1938693,1,1,17,4,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4719955,4719956,19.0,1938695,1,1,17,4,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4719956,4719957,19.0,1938696,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22760.0,2128.0 +4719961,4719962,19.0,1938701,1,2,17,4,1.0,12.0,4.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4719969,4719970,19.0,1938709,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4719970,4719971,19.0,1938710,1,1,17,4,3.0,15.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4719971,4719972,19.0,1938711,1,1,17,4,1.0,12.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4719973,4719974,19.0,1938713,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22806.0,2146.0 +4719974,4719975,19.0,1938714,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4719975,4719976,19.0,1938715,1,1,17,4,6.0,99.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4719976,4719977,19.0,1938716,1,2,17,4,1.0,10.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4719978,4719979,19.0,1938718,1,1,17,4,1.0,9.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4719982,4719983,19.0,1938722,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4719983,4719984,19.0,1938723,1,2,17,4,3.0,27.0,4.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4719990,4719991,19.0,1938730,1,1,17,4,1.0,40.0,4.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4719991,4719992,19.0,1938731,1,2,17,4,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4719992,4719993,19.0,1938732,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4719997,4719998,19.0,1938737,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22810.0,2148.0 +4719999,4720000,19.0,1938739,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4720001,4720002,19.0,1938741,1,1,17,4,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4720009,4720010,19.0,1938749,1,2,17,4,6.0,40.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4720010,4720011,19.0,1938750,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22758.0,2127.0 +4720025,4720026,19.0,1938765,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720026,4720027,19.0,1938766,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720029,4720030,19.0,1938769,1,2,17,4,1.0,20.0,1.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4720030,4720031,19.0,1938770,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22808.0,2147.0 +4720031,4720032,19.0,1938771,1,2,17,4,6.0,40.0,6.0,15.0,4.0,52M2,9.0,22814.0,2150.0 +4720032,4720033,19.0,1938772,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7115,16.0,22806.0,2146.0 +4720033,4720034,19.0,1938773,1,2,17,4,6.0,12.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4720045,4720046,19.0,1938785,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720047,4720048,19.0,1938787,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22808.0,2147.0 +4720053,4720054,19.0,1938793,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,531M,9.0,22808.0,2147.0 +4720055,4720056,19.0,1938795,1,1,17,4,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4720063,4720064,19.0,1938803,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22808.0,2147.0 +4720067,4720068,19.0,1938807,1,1,17,4,6.0,35.0,6.0,15.0,4.0,811192,17.0,22808.0,2147.0 +4720070,4720071,19.0,1938810,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4720075,4720076,19.0,1938815,1,1,17,4,1.0,70.0,1.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4720078,4720079,19.0,1938818,1,2,17,4,1.0,20.0,6.0,15.0,4.0,213,1.0,22765.0,2130.0 +4720081,4720082,19.0,1938821,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720082,4720083,19.0,1938822,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22810.0,2148.0 +4720089,4720090,19.0,1938829,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720091,4720092,19.0,1938831,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4720093,4720094,19.0,1938833,1,1,17,4,6.0,25.0,4.0,15.0,4.0,5414,10.0,22765.0,2130.0 +4720100,4720101,19.0,1938840,1,1,17,4,6.0,40.0,6.0,15.0,4.0,44512,5.0,22808.0,2147.0 +4720104,4720105,19.0,1938844,1,2,17,4,1.0,21.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720105,4720106,19.0,1938845,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4720107,4720108,19.0,1938847,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22806.0,2146.0 +4720108,4720109,19.0,1938848,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4720109,4720110,19.0,1938849,1,1,17,4,3.0,15.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720110,4720111,19.0,1938850,1,1,17,4,1.0,12.0,3.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4720112,4720113,19.0,1938852,1,1,17,4,1.0,9.0,1.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4720113,4720114,19.0,1938853,1,1,17,4,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4720114,4720115,19.0,1938854,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7111,16.0,22808.0,2147.0 +4720115,4720116,19.0,1938855,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720116,4720117,19.0,1938856,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7115,16.0,22808.0,2147.0 +4720118,4720119,19.0,1938858,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4720123,4720124,19.0,1938863,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +4720124,4720125,19.0,1938864,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720127,4720128,19.0,1938867,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4720131,4720132,19.0,1938871,1,1,17,4,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4720135,4720136,19.0,1938875,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720137,4720138,19.0,1938877,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,814,17.0,22765.0,2130.0 +4720138,4720139,19.0,1938878,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4720140,4720141,19.0,1938880,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720142,4720143,19.0,1938882,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22814.0,2150.0 +4720144,4720145,19.0,1938884,1,1,17,4,6.0,-9.0,-9.0,13.0,4.0,-9,-9.0,22806.0,2146.0 +4720147,4720148,19.0,1938887,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720148,4720149,19.0,1938888,1,1,17,4,1.0,14.0,2.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4720149,4720150,19.0,1938889,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4720150,4720151,19.0,1938890,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720151,4720152,19.0,1938891,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720157,4720158,19.0,1938897,1,2,17,4,1.0,12.0,4.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4720160,4720161,19.0,1938900,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720163,4720164,19.0,1938903,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22761.0,2128.0 +4720164,4720165,19.0,1938904,1,2,17,4,1.0,10.0,6.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4720165,4720166,19.0,1938905,1,2,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4720167,4720168,19.0,1938907,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720175,4720176,19.0,1938915,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720181,4720182,19.0,1938921,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4720182,4720183,19.0,1938922,1,2,17,4,1.0,30.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4720183,4720184,19.0,1938923,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7111,16.0,22808.0,2147.0 +4720190,4720191,19.0,1938930,1,1,17,4,1.0,9.0,6.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4720191,4720192,19.0,1938931,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720194,4720195,19.0,1938934,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720197,4720198,19.0,1938937,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22765.0,2130.0 +4720201,4720202,19.0,1938941,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4720202,4720203,19.0,1938942,1,2,17,4,3.0,27.0,4.0,16.0,4.0,611M1,13.0,22818.0,2150.0 +4720210,4720211,19.0,1938950,1,1,17,4,1.0,9.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4720221,4720222,19.0,1938961,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720223,4720224,19.0,1938963,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720225,4720226,19.0,1938965,1,2,17,4,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22815.0,2150.0 +4720226,4720227,19.0,1938966,1,2,17,3,6.0,18.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720233,4720234,19.0,1938973,1,2,17,3,6.0,10.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720237,4720238,19.0,1938977,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4720239,4720240,19.0,1938979,1,2,17,3,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720247,4720248,19.0,1938987,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720249,4720250,19.0,1938989,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4720251,4720252,19.0,1938991,1,1,17,3,1.0,20.0,1.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4720253,4720254,19.0,1938993,1,2,17,3,1.0,5.0,5.0,15.0,4.0,813M,17.0,22765.0,2130.0 +4720254,4720255,19.0,1938994,1,1,17,3,1.0,40.0,4.0,-9.0,4.0,111,1.0,22808.0,2147.0 +4720257,4720258,19.0,1938997,1,2,17,3,1.0,30.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720258,4720259,19.0,1938998,1,1,17,3,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720262,4720263,19.0,1939002,1,1,17,3,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720264,4720265,19.0,1939004,1,2,17,3,1.0,30.0,3.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4720266,4720267,19.0,1939006,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4720268,4720269,19.0,1939008,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,115,1.0,22808.0,2147.0 +4720273,4720274,19.0,1939013,1,2,17,3,1.0,20.0,1.0,15.0,4.0,4539,5.0,22806.0,2146.0 +4720276,4720277,19.0,1939016,1,1,17,3,6.0,15.0,6.0,15.0,4.0,4411,5.0,22806.0,2146.0 +4720277,4720278,19.0,1939017,1,2,17,3,1.0,20.0,1.0,15.0,4.0,4539,5.0,22806.0,2146.0 +4720281,4720282,19.0,1939021,1,1,17,3,1.0,40.0,4.0,-9.0,4.0,111,1.0,22808.0,2147.0 +4720282,4720283,19.0,1939022,1,1,17,3,6.0,14.0,4.0,15.0,4.0,4MS,5.0,22808.0,2147.0 +4720285,4720286,19.0,1939025,1,1,17,3,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720287,4720288,19.0,1939027,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720294,4720295,19.0,1939034,1,1,17,3,1.0,20.0,1.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4720300,4720301,19.0,1939040,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5419Z,10.0,22806.0,2146.0 +4720301,4720302,19.0,1939041,1,1,17,4,6.0,4.0,6.0,15.0,4.0,611M3,13.0,22814.0,2150.0 +4720302,4720303,19.0,1939042,1,1,17,2,6.0,44.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4720305,4720306,19.0,1939045,1,2,17,4,1.0,12.0,1.0,15.0,4.0,812112,17.0,22808.0,2147.0 +4720307,4720308,19.0,1939047,1,1,17,4,6.0,40.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4720310,4720311,19.0,1939050,1,1,17,3,1.0,20.0,1.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4720314,4720315,19.0,1939054,1,1,17,1,6.0,30.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4720317,4720318,19.0,1939057,1,1,17,4,1.0,9.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720319,4720320,19.0,1939059,1,2,17,1,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720322,4720323,19.0,1939062,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720327,4720328,19.0,1939067,1,2,17,1,1.0,13.0,6.0,-9.0,4.0,713Z,16.0,22808.0,2147.0 +4720330,4720331,19.0,1939070,1,1,17,4,1.0,40.0,4.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4720331,4720332,19.0,1939071,1,2,17,1,6.0,25.0,5.0,15.0,4.0,44511,5.0,22758.0,2127.0 +4720335,4720336,19.0,1939075,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720338,4720339,19.0,1939078,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4720342,4720343,19.0,1939082,1,1,17,4,1.0,14.0,2.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4720344,4720345,19.0,1939084,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4720345,4720346,19.0,1939085,1,2,17,1,6.0,40.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4720346,4720347,19.0,1939086,1,2,17,1,6.0,16.0,2.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720351,4720352,19.0,1939091,1,2,17,1,6.0,10.0,6.0,15.0,4.0,45321,5.0,22765.0,2130.0 +4720352,4720353,19.0,1939092,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720357,4720358,19.0,1939097,1,2,17,1,1.0,10.0,5.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4720358,4720359,19.0,1939098,1,2,17,1,1.0,15.0,1.0,15.0,4.0,6214,14.0,22808.0,2147.0 +4720359,4720360,19.0,1939099,1,2,17,1,6.0,6.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4720362,4720363,19.0,1939102,1,1,17,4,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4720363,4720364,19.0,1939103,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4720364,4720365,19.0,1939104,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,54194,10.0,22808.0,2147.0 +4720366,4720367,19.0,1939106,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22818.0,2150.0 +4720367,4720368,19.0,1939107,1,1,17,1,3.0,30.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4720368,4720369,19.0,1939108,1,1,17,2,6.0,-9.0,-9.0,13.0,4.0,722Z,16.0,22810.0,2148.0 +4720370,4720371,19.0,1939110,1,2,17,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4720371,4720372,19.0,1939111,1,1,17,1,6.0,40.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720372,4720373,19.0,1939112,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4720374,4720375,19.0,1939114,1,2,17,1,6.0,6.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720378,4720379,19.0,1939118,1,1,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4720379,4720380,19.0,1939119,1,2,17,1,1.0,5.0,5.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4720381,4720382,19.0,1939121,1,1,17,1,6.0,6.0,6.0,15.0,4.0,3113,3.0,22808.0,2147.0 +4720382,4720383,19.0,1939122,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22806.0,2146.0 +4720383,4720384,19.0,1939123,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4720388,4720389,19.0,1939128,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4720390,4720391,19.0,1939130,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4720391,4720392,19.0,1939131,1,2,17,1,6.0,6.0,6.0,15.0,4.0,814,17.0,22815.0,2150.0 +4720393,4720394,19.0,1939133,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4720401,4720402,19.0,1939141,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720406,4720407,19.0,1939146,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22815.0,2150.0 +4720407,4720408,19.0,1939147,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4720409,4720410,19.0,1939149,1,2,17,4,1.0,6.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4720415,4720416,19.0,1939155,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4720417,4720418,19.0,1939157,1,1,17,1,3.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720421,4720422,19.0,1939161,1,2,17,4,1.0,30.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720422,4720423,19.0,1939162,1,2,17,1,3.0,30.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4720424,4720425,19.0,1939164,1,2,17,1,1.0,11.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720425,4720426,19.0,1939165,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720428,4720429,19.0,1939168,1,2,17,4,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720436,4720437,19.0,1939176,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720452,4720453,19.0,1939192,1,1,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4720453,4720454,19.0,1939193,1,1,17,1,6.0,40.0,6.0,15.0,4.0,522M,9.0,22808.0,2147.0 +4720455,4720456,19.0,1939195,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720463,4720464,19.0,1939203,1,2,17,1,1.0,50.0,6.0,15.0,4.0,5415,10.0,22806.0,2146.0 +4720464,4720465,19.0,1939204,1,1,17,2,1.0,17.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4720466,4720467,19.0,1939206,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4720468,4720469,19.0,1939208,1,1,17,1,6.0,30.0,6.0,15.0,4.0,4452,5.0,22765.0,2130.0 +4720469,4720470,19.0,1939209,1,1,17,2,6.0,35.0,4.0,15.0,4.0,23,2.0,22808.0,2147.0 +4720472,4720473,19.0,1939212,1,1,17,1,6.0,30.0,5.0,15.0,4.0,4452,5.0,22808.0,2147.0 +4720473,4720474,19.0,1939213,1,2,17,4,6.0,2.0,4.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4720474,4720475,19.0,1939214,1,1,17,4,6.0,20.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4720475,4720476,19.0,1939215,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720476,4720477,19.0,1939216,1,1,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4720478,4720479,19.0,1939218,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720481,4720482,19.0,1939221,1,2,17,1,2.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720483,4720484,19.0,1939223,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4720485,4720486,19.0,1939225,1,1,17,3,1.0,20.0,1.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4720488,4720489,19.0,1939228,1,1,17,4,6.0,15.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720491,4720492,19.0,1939231,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4720492,4720493,19.0,1939232,1,1,17,1,1.0,10.0,6.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4720494,4720495,19.0,1939234,1,2,17,1,1.0,32.0,4.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4720496,4720497,19.0,1939236,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4720497,4720498,19.0,1939237,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +4720498,4720499,19.0,1939238,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4720499,4720500,19.0,1939239,1,2,17,4,1.0,12.0,4.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4720503,4720504,19.0,1939243,1,1,17,1,1.0,18.0,6.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4720507,4720508,19.0,1939247,1,1,17,4,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4720514,4720515,19.0,1939254,1,1,17,4,6.0,15.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720515,4720516,19.0,1939255,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4720517,4720518,19.0,1939257,1,2,17,1,1.0,10.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720522,4720523,19.0,1939262,1,1,17,1,1.0,13.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720523,4720524,19.0,1939263,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720524,4720525,19.0,1939264,1,1,17,2,6.0,50.0,5.0,16.0,4.0,9211MP,18.0,22808.0,2147.0 +4720525,4720526,19.0,1939265,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720526,4720527,19.0,1939266,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4720528,4720529,19.0,1939268,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720531,4720532,19.0,1939271,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720532,4720533,19.0,1939272,1,2,17,1,6.0,25.0,6.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4720534,4720535,19.0,1939274,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720536,4720537,19.0,1939276,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,7211,16.0,22810.0,2148.0 +4720540,4720541,19.0,1939280,1,1,17,1,3.0,12.0,6.0,15.0,4.0,336M,3.0,22765.0,2130.0 +4720543,4720544,19.0,1939283,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22808.0,2147.0 +4720545,4720546,19.0,1939285,1,2,17,1,1.0,30.0,1.0,-9.0,4.0,8131,17.0,22808.0,2147.0 +4720546,4720547,19.0,1939286,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22765.0,2130.0 +4720547,4720548,19.0,1939287,1,1,17,4,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720550,4720551,19.0,1939290,1,1,17,1,6.0,8.0,6.0,15.0,4.0,5412,10.0,22808.0,2147.0 +4720551,4720552,19.0,1939291,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,811192,17.0,22808.0,2147.0 +4720557,4720558,19.0,1939297,1,2,17,1,6.0,12.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720558,4720559,19.0,1939298,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4523,5.0,22806.0,2146.0 +4720559,4720560,19.0,1939299,1,1,17,4,6.0,6.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4720564,4720565,19.0,1939304,1,1,17,1,6.0,36.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720571,4720572,19.0,1939311,1,1,17,1,1.0,20.0,4.0,15.0,4.0,712,16.0,22808.0,2147.0 +4720573,4720574,19.0,1939313,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22765.0,2130.0 +4720577,4720578,19.0,1939317,1,2,17,1,1.0,15.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4720578,4720579,19.0,1939318,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4720589,4720590,19.0,1939329,1,2,17,1,6.0,10.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4720592,4720593,19.0,1939332,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4720594,4720595,19.0,1939334,1,2,17,3,1.0,5.0,5.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4720601,4720602,19.0,1939341,1,1,17,1,6.0,12.0,5.0,15.0,4.0,6111,13.0,22810.0,2148.0 +4720603,4720604,19.0,1939343,1,1,17,1,6.0,48.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4720605,4720606,19.0,1939345,1,1,17,1,6.0,25.0,6.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4720612,4720613,19.0,1939352,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720613,4720614,19.0,1939353,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4720615,4720616,19.0,1939355,1,1,17,2,6.0,30.0,6.0,15.0,4.0,811192,17.0,22806.0,2146.0 +4720616,4720617,19.0,1939356,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720620,4720621,19.0,1939360,1,2,17,1,3.0,40.0,5.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4720627,4720628,19.0,1939367,1,1,17,1,6.0,6.0,6.0,15.0,4.0,515,8.0,22808.0,2147.0 +4720629,4720630,19.0,1939369,1,2,17,4,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720630,4720631,19.0,1939370,1,2,17,1,3.0,25.0,5.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4720631,4720632,19.0,1939371,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,115,1.0,22808.0,2147.0 +4720632,4720633,19.0,1939372,1,1,17,1,6.0,24.0,6.0,15.0,4.0,44512,5.0,22808.0,2147.0 +4720633,4720634,19.0,1939373,1,2,17,4,1.0,20.0,6.0,15.0,4.0,213,1.0,22808.0,2147.0 +4720637,4720638,19.0,1939377,1,2,17,3,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4720642,4720643,19.0,1939382,1,2,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720649,4720650,19.0,1939389,1,1,17,4,6.0,40.0,6.0,16.0,4.0,5413,10.0,22808.0,2147.0 +4720650,4720651,19.0,1939390,1,2,17,4,6.0,49.0,4.0,15.0,4.0,721M,16.0,22814.0,2150.0 +4720653,4720654,19.0,1939393,1,1,17,4,1.0,14.0,2.0,15.0,4.0,713Z,16.0,22760.0,2128.0 +4720658,4720659,19.0,1939398,1,1,17,1,6.0,18.0,5.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +4720666,4720667,19.0,1939406,1,1,17,3,6.0,35.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720682,4720683,19.0,1939422,1,2,17,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720683,4720684,19.0,1939423,1,2,17,1,6.0,40.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720685,4720686,20.0,1939425,1,2,17,1,1.0,32.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4720687,4720688,20.0,1939427,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22810.0,2148.0 +4720691,4720692,20.0,1939431,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4720692,4720693,20.0,1939432,1,1,17,1,6.0,6.0,5.0,15.0,4.0,4442,5.0,22806.0,2146.0 +4720698,4720699,20.0,1939438,1,1,17,1,6.0,30.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4720703,4720704,20.0,1939443,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720706,4720707,20.0,1939446,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4720708,4720709,20.0,1939448,1,1,17,1,6.0,35.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4720713,4720714,20.0,1939453,1,2,17,1,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720716,4720717,20.0,1939456,1,2,17,1,6.0,10.0,6.0,15.0,4.0,5419Z,10.0,22765.0,2130.0 +4720718,4720719,20.0,1939458,1,1,17,1,6.0,28.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4720721,4720722,20.0,1939461,1,1,17,1,6.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720724,4720725,20.0,1939464,1,2,17,1,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720726,4720727,20.0,1939466,1,2,17,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720727,4720728,20.0,1939467,1,2,17,1,1.0,15.0,6.0,15.0,4.0,4481,5.0,22765.0,2130.0 +4720732,4720733,20.0,1939472,1,1,17,1,6.0,8.0,6.0,15.0,4.0,5412,10.0,22808.0,2147.0 +4720736,4720737,20.0,1939476,1,1,17,1,6.0,36.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720741,4720742,20.0,1939481,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720742,4720743,20.0,1939482,1,1,17,1,3.0,50.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4720745,4720746,20.0,1939485,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720746,4720747,20.0,1939486,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4720747,4720748,20.0,1939487,1,2,17,1,6.0,40.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720751,4720752,20.0,1939491,1,1,17,1,6.0,25.0,6.0,15.0,4.0,111,1.0,22808.0,2147.0 +4720756,4720757,20.0,1939496,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4720763,4720764,20.0,1939503,1,2,17,1,1.0,6.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720764,4720765,20.0,1939504,1,2,17,1,1.0,12.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720773,4720774,20.0,1939513,1,1,17,1,1.0,5.0,6.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4720775,4720776,20.0,1939515,1,1,17,1,6.0,3.0,5.0,15.0,4.0,7112,16.0,22806.0,2146.0 +4720777,4720778,20.0,1939517,1,1,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720778,4720779,20.0,1939518,1,1,17,1,6.0,28.0,5.0,14.0,4.0,44511,5.0,22806.0,2146.0 +4720779,4720780,20.0,1939519,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,23,2.0,22818.0,2150.0 +4720782,4720783,20.0,1939522,1,1,17,1,6.0,24.0,6.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4720786,4720787,20.0,1939526,1,2,17,1,1.0,3.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4720789,4720790,20.0,1939529,1,2,17,1,1.0,18.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720790,4720791,20.0,1939530,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22813.0,2150.0 +4720793,4720794,20.0,1939533,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4720794,4720795,20.0,1939534,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,2211P,7.0,22806.0,2146.0 +4720795,4720796,20.0,1939535,1,1,17,1,3.0,10.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4720797,4720798,20.0,1939537,1,2,17,1,6.0,18.0,3.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4720799,4720800,20.0,1939539,1,2,17,1,1.0,40.0,2.0,-9.0,4.0,5412,10.0,22808.0,2147.0 +4720804,4720805,20.0,1939544,1,1,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4720805,4720806,20.0,1939545,1,1,17,1,1.0,23.0,5.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4720806,4720807,20.0,1939546,1,1,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720809,4720810,20.0,1939549,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22814.0,2150.0 +4720810,4720811,20.0,1939550,1,1,17,1,6.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720814,4720815,20.0,1939554,1,2,17,1,6.0,15.0,4.0,15.0,4.0,45121,5.0,22808.0,2147.0 +4720815,4720816,20.0,1939555,1,1,17,1,6.0,45.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4720817,4720818,20.0,1939557,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22765.0,2130.0 +4720820,4720821,20.0,1939560,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4720821,4720822,20.0,1939561,1,1,17,1,6.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720823,4720824,20.0,1939563,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4720825,4720826,20.0,1939565,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5417,10.0,22806.0,2146.0 +4720827,4720828,20.0,1939567,1,1,17,1,1.0,11.0,1.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4720830,4720831,20.0,1939570,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4720831,4720832,20.0,1939571,1,2,17,1,6.0,15.0,5.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4720833,4720834,20.0,1939573,1,2,17,1,6.0,37.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4720834,4720835,20.0,1939574,1,2,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720840,4720841,20.0,1939580,1,2,17,1,6.0,16.0,6.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4720844,4720845,20.0,1939584,1,2,17,1,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22806.0,2146.0 +4720848,4720849,20.0,1939588,1,2,17,1,6.0,11.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4720850,4720851,20.0,1939590,1,1,17,1,6.0,40.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4720851,4720852,20.0,1939591,1,1,17,1,6.0,25.0,6.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4720857,4720858,20.0,1939597,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4720860,4720861,20.0,1939600,1,1,17,1,3.0,20.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4720865,4720866,20.0,1939605,1,2,17,1,3.0,4.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4720871,4720872,20.0,1939611,1,1,17,2,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4720875,4720876,20.0,1939615,1,1,17,2,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22806.0,2146.0 +4720877,4720878,20.0,1939617,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4720880,4720881,20.0,1939620,1,2,17,2,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4720882,4720883,20.0,1939622,1,2,17,2,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4720883,4720884,20.0,1939623,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4720887,4720888,20.0,1939627,1,2,17,2,1.0,14.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720891,4720892,20.0,1939631,1,2,17,2,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720894,4720895,20.0,1939634,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22765.0,2130.0 +4720901,4720902,20.0,1939641,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4720905,4720906,20.0,1939645,1,2,17,2,3.0,8.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720906,4720907,20.0,1939646,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4720911,4720912,20.0,1939651,1,1,17,2,6.0,-9.0,-9.0,13.0,4.0,722Z,16.0,22765.0,2130.0 +4720913,4720914,20.0,1939653,1,1,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22808.0,2147.0 +4720914,4720915,20.0,1939654,1,1,17,2,1.0,17.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720915,4720916,20.0,1939655,1,2,17,2,6.0,18.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720916,4720917,20.0,1939656,1,1,17,2,6.0,5.0,6.0,15.0,4.0,45121,5.0,22765.0,2130.0 +4720919,4720920,20.0,1939659,1,2,17,2,1.0,20.0,1.0,15.0,4.0,532M2,9.0,22806.0,2146.0 +4720923,4720924,20.0,1939663,1,1,17,2,6.0,16.0,5.0,15.0,4.0,44511,5.0,22814.0,2150.0 +4720928,4720929,20.0,1939668,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4720931,4720932,20.0,1939671,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4720933,4720934,20.0,1939673,1,1,17,4,1.0,40.0,4.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4720935,4720936,20.0,1939675,1,1,17,4,6.0,20.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4720937,4720938,20.0,1939677,1,1,17,4,6.0,35.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720940,4720941,20.0,1939680,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720942,4720943,20.0,1939682,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7115,16.0,22806.0,2146.0 +4720944,4720945,20.0,1939684,1,1,17,4,1.0,20.0,4.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +4720946,4720947,20.0,1939686,1,1,17,4,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720948,4720949,20.0,1939688,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22808.0,2147.0 +4720952,4720953,20.0,1939692,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720957,4720958,20.0,1939697,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4720964,4720965,20.0,1939704,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4720966,4720967,20.0,1939706,1,2,17,4,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4720970,4720971,20.0,1939710,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22818.0,2150.0 +4720971,4720972,20.0,1939711,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720973,4720974,20.0,1939713,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720974,4720975,20.0,1939714,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720976,4720977,20.0,1939716,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4720977,4720978,20.0,1939717,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4720978,4720979,20.0,1939718,1,2,17,4,6.0,8.0,5.0,16.0,4.0,5413,10.0,22808.0,2147.0 +4720981,4720982,20.0,1939721,1,2,17,4,1.0,9.0,4.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4720982,4720983,20.0,1939722,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4720984,4720985,20.0,1939724,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22765.0,2130.0 +4720985,4720986,20.0,1939725,1,1,17,4,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4720987,4720988,20.0,1939727,1,2,17,4,2.0,6.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4721001,4721002,20.0,1939741,1,2,17,4,6.0,2.0,4.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4721005,4721006,20.0,1939745,1,2,17,4,6.0,40.0,6.0,15.0,4.0,5111Z,8.0,22818.0,2150.0 +4721006,4721007,20.0,1939746,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4721010,4721011,20.0,1939750,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721011,4721012,20.0,1939751,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4721015,4721016,20.0,1939755,1,1,17,4,1.0,15.0,4.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4721017,4721018,20.0,1939757,1,2,17,4,1.0,6.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721022,4721023,20.0,1939762,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721024,4721025,20.0,1939764,1,1,17,4,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4721028,4721029,20.0,1939768,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22808.0,2147.0 +4721029,4721030,20.0,1939769,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22808.0,2147.0 +4721035,4721036,20.0,1939775,1,1,17,4,1.0,15.0,4.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +4721037,4721038,20.0,1939777,1,2,17,4,6.0,10.0,5.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4721039,4721040,20.0,1939779,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721044,4721045,20.0,1939784,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,54194,10.0,22808.0,2147.0 +4721047,4721048,20.0,1939787,1,2,17,4,1.0,12.0,1.0,15.0,4.0,812112,17.0,22765.0,2130.0 +4721050,4721051,20.0,1939790,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,336M,3.0,22813.0,2150.0 +4721052,4721053,20.0,1939792,1,1,17,4,1.0,70.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721053,4721054,20.0,1939793,1,1,17,4,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721058,4721059,20.0,1939798,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4721059,4721060,20.0,1939799,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22808.0,2147.0 +4721062,4721063,20.0,1939802,1,2,17,4,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721063,4721064,20.0,1939803,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4721065,4721066,20.0,1939805,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4721067,4721068,20.0,1939807,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721071,4721072,20.0,1939811,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4721072,4721073,20.0,1939812,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721076,4721077,20.0,1939816,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721077,4721078,20.0,1939817,1,1,17,1,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721080,4721081,20.0,1939820,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4721081,4721082,20.0,1939821,1,2,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4721084,4721085,20.0,1939824,1,1,17,4,3.0,15.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4721086,4721087,20.0,1939826,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721087,4721088,20.0,1939827,1,2,17,1,1.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4721088,4721089,20.0,1939828,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4721089,4721090,20.0,1939829,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22815.0,2150.0 +4721092,4721093,20.0,1939832,1,2,17,2,1.0,10.0,3.0,15.0,4.0,51912,8.0,22808.0,2147.0 +4721095,4721096,20.0,1939835,1,2,17,4,3.0,27.0,4.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4721098,4721099,20.0,1939838,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721099,4721100,20.0,1939839,1,2,17,2,6.0,30.0,5.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4721101,4721102,20.0,1939841,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4721105,4721106,20.0,1939845,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22806.0,2146.0 +4721107,4721108,20.0,1939847,1,1,17,4,1.0,40.0,4.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4721110,4721111,20.0,1939850,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4721111,4721112,20.0,1939851,1,2,17,4,1.0,12.0,1.0,15.0,4.0,812112,17.0,22808.0,2147.0 +4721112,4721113,20.0,1939852,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4721114,4721115,20.0,1939854,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7115,16.0,22758.0,2127.0 +4721116,4721117,20.0,1939856,1,1,17,1,1.0,6.0,1.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4721118,4721119,20.0,1939858,1,2,17,2,6.0,32.0,1.0,15.0,4.0,6231,14.0,22808.0,2147.0 +4721120,4721121,20.0,1939860,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721121,4721122,20.0,1939861,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721122,4721123,20.0,1939862,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22765.0,2130.0 +4721135,4721136,20.0,1939875,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4721144,4721145,20.0,1939884,1,2,17,4,6.0,8.0,5.0,16.0,4.0,5413,10.0,22808.0,2147.0 +4721147,4721148,20.0,1939887,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4721149,4721150,20.0,1939889,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4721160,4721161,20.0,1939900,1,2,17,1,6.0,36.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721161,4721162,20.0,1939901,1,2,17,4,3.0,27.0,4.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +4721163,4721164,20.0,1939903,1,2,17,1,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721165,4721166,20.0,1939905,1,1,17,4,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4721168,4721169,20.0,1939908,1,1,17,2,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4721174,4721175,20.0,1939914,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721175,4721176,20.0,1939915,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4721178,4721179,20.0,1939918,1,2,17,2,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721179,4721180,20.0,1939919,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721183,4721184,20.0,1939923,1,1,17,4,6.0,3.0,6.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4721186,4721187,20.0,1939926,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4721188,4721189,20.0,1939928,1,2,17,4,1.0,20.0,6.0,15.0,4.0,213,1.0,22814.0,2150.0 +4721190,4721191,20.0,1939930,1,1,17,4,6.0,4.0,6.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4721191,4721192,20.0,1939931,1,2,17,1,1.0,15.0,6.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4721194,4721195,21.0,1939934,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22760.0,2128.0 +4721198,4721199,21.0,1939938,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721199,4721200,21.0,1939939,1,1,17,1,6.0,14.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721204,4721205,21.0,1939944,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22765.0,2130.0 +4721205,4721206,21.0,1939945,1,2,17,1,6.0,25.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721209,4721210,21.0,1939949,1,1,17,1,6.0,42.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4721210,4721211,21.0,1939950,1,1,17,1,6.0,30.0,6.0,15.0,4.0,111,1.0,22808.0,2147.0 +4721215,4721216,21.0,1939955,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4721219,4721220,21.0,1939959,1,2,17,1,1.0,12.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721224,4721225,21.0,1939964,1,2,17,1,6.0,36.0,5.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4721228,4721229,21.0,1939968,1,1,17,1,6.0,12.0,5.0,15.0,4.0,6111,13.0,22815.0,2150.0 +4721229,4721230,21.0,1939969,1,2,17,1,1.0,20.0,1.0,15.0,4.0,4481,5.0,22765.0,2130.0 +4721232,4721233,21.0,1939972,1,1,17,1,1.0,8.0,4.0,15.0,4.0,45121,5.0,22808.0,2147.0 +4721233,4721234,21.0,1939973,1,2,17,1,1.0,3.0,4.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +4721235,4721236,21.0,1939975,1,1,17,1,1.0,20.0,6.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4721238,4721239,21.0,1939978,1,2,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4721240,4721241,21.0,1939980,1,1,17,1,6.0,30.0,5.0,15.0,4.0,4452,5.0,22808.0,2147.0 +4721241,4721242,21.0,1939981,1,1,17,1,1.0,15.0,1.0,15.0,4.0,813M,17.0,22810.0,2148.0 +4721242,4721243,21.0,1939982,1,1,17,1,6.0,6.0,5.0,15.0,4.0,4442,5.0,22806.0,2146.0 +4721248,4721249,21.0,1939988,1,1,17,1,6.0,40.0,3.0,15.0,4.0,23,2.0,22808.0,2147.0 +4721250,4721251,21.0,1939990,1,2,17,3,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4721251,4721252,21.0,1939991,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721253,4721254,21.0,1939993,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721254,4721255,21.0,1939994,1,1,17,3,1.0,20.0,3.0,15.0,4.0,611M1,13.0,22818.0,2150.0 +4721256,4721257,21.0,1939996,1,2,17,1,6.0,40.0,6.0,15.0,4.0,6244,14.0,22815.0,2150.0 +4721257,4721258,21.0,1939997,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4721258,4721259,21.0,1939998,1,1,17,1,1.0,14.0,4.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4721260,4721261,21.0,1940000,1,1,17,1,6.0,14.0,4.0,15.0,4.0,4MS,5.0,22765.0,2130.0 +4721262,4721263,21.0,1940002,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4721265,4721266,21.0,1940005,1,2,17,1,1.0,30.0,1.0,15.0,4.0,7112,16.0,22818.0,2150.0 +4721267,4721268,22.0,1940007,1,2,17,1,6.0,35.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4721270,4721271,22.0,1940010,1,2,17,1,6.0,32.0,6.0,15.0,4.0,52M2,9.0,22808.0,2147.0 +4721271,4721272,22.0,1940011,1,1,17,1,6.0,42.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4721276,4721277,22.0,1940016,1,1,17,1,1.0,5.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721279,4721280,22.0,1940019,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22760.0,2128.0 +4721280,4721281,22.0,1940020,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4721281,4721282,22.0,1940021,1,1,17,1,1.0,18.0,1.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4721286,4721287,22.0,1940026,1,1,17,1,6.0,3.0,5.0,15.0,4.0,7112,16.0,22808.0,2147.0 +4721287,4721288,22.0,1940027,1,2,17,1,1.0,15.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721290,4721291,22.0,1940030,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4721292,4721293,22.0,1940032,1,2,17,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721295,4721296,22.0,1940035,1,2,17,1,6.0,3.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4721296,4721297,22.0,1940036,1,2,17,1,3.0,15.0,4.0,15.0,4.0,814,17.0,22808.0,2147.0 +4721297,4721298,22.0,1940037,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721309,4721310,22.0,1940049,1,2,17,1,6.0,12.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721318,4721319,22.0,1940058,1,1,17,1,6.0,20.0,4.0,15.0,4.0,44413,5.0,22806.0,2146.0 +4721320,4721321,22.0,1940060,1,1,17,1,6.0,10.0,6.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4721321,4721322,22.0,1940061,1,2,17,1,1.0,17.0,1.0,15.0,4.0,4539,5.0,22806.0,2146.0 +4721326,4721327,22.0,1940066,1,2,17,1,1.0,14.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721332,4721333,22.0,1940072,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4721338,4721339,22.0,1940078,1,2,17,1,1.0,12.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721340,4721341,23.0,1940080,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4721342,4721343,23.0,1940082,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721345,4721346,23.0,1940085,1,1,17,1,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4721346,4721347,23.0,1940086,1,2,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4721352,4721353,23.0,1940092,1,2,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4721356,4721357,23.0,1940096,1,2,17,1,6.0,25.0,5.0,15.0,4.0,6214,14.0,22808.0,2147.0 +4721365,4721366,23.0,1940105,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721370,4721371,23.0,1940110,1,2,17,1,1.0,15.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4721379,4721380,24.0,1940119,1,2,17,4,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4721381,4721382,24.0,1940121,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22815.0,2150.0 +4721382,4721383,24.0,1940122,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4721387,4721388,24.0,1940127,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4721389,4721390,24.0,1940129,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721390,4721391,24.0,1940130,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22808.0,2147.0 +4721391,4721392,24.0,1940131,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +4721397,4721398,24.0,1940137,1,2,17,4,6.0,16.0,5.0,15.0,4.0,721M,16.0,22815.0,2150.0 +4721406,4721407,24.0,1940146,1,2,17,4,1.0,12.0,4.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4721407,4721408,24.0,1940147,1,2,17,4,6.0,40.0,6.0,15.0,4.0,52M2,9.0,22808.0,2147.0 +4721409,4721410,24.0,1940149,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4721410,4721411,24.0,1940150,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22814.0,2150.0 +4721412,4721413,24.0,1940152,1,2,17,4,1.0,12.0,1.0,15.0,4.0,812112,17.0,22808.0,2147.0 +4721414,4721415,24.0,1940154,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721424,4721425,24.0,1940164,1,2,17,4,6.0,20.0,4.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4721434,4721435,24.0,1940174,1,1,17,4,6.0,40.0,6.0,16.0,4.0,5413,10.0,22808.0,2147.0 +4721435,4721436,24.0,1940175,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4721436,4721437,24.0,1940176,1,1,17,4,3.0,40.0,5.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4721438,4721439,24.0,1940178,1,1,17,4,3.0,40.0,5.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4721439,4721440,24.0,1940179,1,2,17,4,6.0,49.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4721445,4721446,24.0,1940185,1,2,17,4,1.0,20.0,1.0,15.0,4.0,622M,15.0,22806.0,2146.0 +4721451,4721452,24.0,1940191,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4721452,4721453,24.0,1940192,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4721453,4721454,24.0,1940193,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4721454,4721455,24.0,1940194,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +4721455,4721456,24.0,1940195,1,1,17,4,6.0,15.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721460,4721461,24.0,1940200,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721462,4721463,24.0,1940202,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721463,4721464,24.0,1940203,1,2,17,4,1.0,21.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4721464,4721465,24.0,1940204,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4721466,4721467,24.0,1940206,1,2,17,4,1.0,99.0,6.0,15.0,4.0,611M3,13.0,22810.0,2148.0 +4721469,4721470,24.0,1940209,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721474,4721475,24.0,1940214,1,1,17,4,6.0,6.0,6.0,15.0,4.0,3113,3.0,22808.0,2147.0 +4721478,4721479,24.0,1940218,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721481,4721482,25.0,1940221,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22806.0,2146.0 +4721482,4721483,25.0,1940222,1,2,17,1,6.0,36.0,5.0,-9.0,4.0,713Z,16.0,22815.0,2150.0 +4721488,4721489,25.0,1940228,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22760.0,2128.0 +4721489,4721490,25.0,1940229,1,2,17,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22814.0,2150.0 +4721492,4721493,25.0,1940232,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721493,4721494,25.0,1940233,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4721498,4721499,25.0,1940238,1,1,17,2,1.0,40.0,5.0,-9.0,4.0,5613,12.0,22765.0,2130.0 +4721501,4721502,25.0,1940241,1,1,17,2,2.0,50.0,3.0,-9.0,4.0,336M,3.0,22808.0,2147.0 +4721504,4721505,25.0,1940244,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721508,4721509,25.0,1940248,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721509,4721510,25.0,1940249,1,1,17,2,1.0,40.0,1.0,-9.0,4.0,6241,14.0,22806.0,2146.0 +4721510,4721511,25.0,1940250,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22758.0,2127.0 +4721512,4721513,25.0,1940252,1,2,17,2,6.0,40.0,6.0,15.0,4.0,5613,12.0,22806.0,2146.0 +4721520,4721521,25.0,1940260,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721521,4721522,25.0,1940261,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721524,4721525,25.0,1940264,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4721525,4721526,25.0,1940265,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22814.0,2150.0 +4721528,4721529,25.0,1940268,1,2,17,2,6.0,40.0,6.0,15.0,4.0,5613,12.0,22765.0,2130.0 +4721538,4721539,25.0,1940278,1,1,17,2,1.0,40.0,1.0,-9.0,4.0,6241,14.0,22814.0,2150.0 +4721539,4721540,25.0,1940279,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721541,4721542,25.0,1940281,1,1,17,2,3.0,-9.0,-9.0,-9.0,4.0,999920,-9.0,22808.0,2147.0 +4721542,4721543,25.0,1940282,1,1,17,2,3.0,-9.0,-9.0,-9.0,4.0,999920,-9.0,22808.0,2147.0 +4721543,4721544,25.0,1940283,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721545,4721546,25.0,1940285,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721561,4721562,25.0,1940301,1,1,17,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +4721562,4721563,25.0,1940302,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22806.0,2146.0 +4721566,4721567,25.0,1940306,1,2,17,4,1.0,40.0,1.0,-9.0,4.0,8131,17.0,22808.0,2147.0 +4721568,4721569,25.0,1940308,1,1,17,4,6.0,40.0,6.0,16.0,4.0,336M,3.0,22808.0,2147.0 +4721569,4721570,25.0,1940309,1,2,17,4,6.0,40.0,5.0,16.0,4.0,5416,10.0,22808.0,2147.0 +4721570,4721571,25.0,1940310,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4721571,4721572,25.0,1940311,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4721577,4721578,25.0,1940317,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721578,4721579,25.0,1940318,1,1,17,4,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721581,4721582,25.0,1940321,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721582,4721583,25.0,1940322,1,1,17,2,2.0,50.0,3.0,-9.0,4.0,336M,3.0,22806.0,2146.0 +4721583,4721584,25.0,1940323,1,1,17,2,1.0,40.0,1.0,-9.0,4.0,6241,14.0,22808.0,2147.0 +4721586,4721587,25.0,1940326,1,2,17,2,6.0,40.0,6.0,16.0,4.0,611M3,13.0,22808.0,2147.0 +4721590,4721591,25.0,1940330,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721595,4721596,17.0,1941302,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721596,4721597,17.0,1941303,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721599,4721600,17.0,1941306,1,2,17,1,1.0,9.0,4.0,15.0,-9.0,6214,14.0,22808.0,2147.0 +4721607,4721608,17.0,1941314,1,2,17,1,6.0,15.0,4.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4721609,4721610,17.0,1941316,1,2,17,1,1.0,9.0,4.0,15.0,-9.0,6214,14.0,22808.0,2147.0 +4721616,4721617,17.0,1941323,1,2,17,1,6.0,15.0,4.0,15.0,4.0,44821,5.0,22806.0,2146.0 +4721618,4721619,17.0,1941325,1,2,17,1,1.0,9.0,4.0,15.0,-9.0,6214,14.0,22808.0,2147.0 +4721621,4721622,17.0,1941328,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721624,4721625,17.0,1941331,1,1,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4721633,4721634,17.0,1941340,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22765.0,2130.0 +4721635,4721636,17.0,1941342,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22765.0,2130.0 +4721636,4721637,17.0,1941343,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4721637,4721638,17.0,1941344,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4721641,4721642,17.0,1941348,1,2,17,3,6.0,-9.0,-9.0,15.0,4.0,45221,5.0,22808.0,2147.0 +4721646,4721647,17.0,1941353,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721647,4721648,17.0,1941354,1,2,17,3,6.0,-9.0,-9.0,15.0,4.0,45221,5.0,22815.0,2150.0 +4721649,4721650,17.0,1941356,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22806.0,2146.0 +4721650,4721651,17.0,1941357,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22765.0,2130.0 +4721651,4721652,17.0,1941358,1,2,17,3,6.0,-9.0,-9.0,15.0,4.0,45221,5.0,22808.0,2147.0 +4721654,4721655,17.0,1941361,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22758.0,2127.0 +4721658,4721659,17.0,1941365,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22808.0,2147.0 +4721659,4721660,17.0,1941366,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +4721663,4721664,17.0,1941370,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4721667,4721668,17.0,1941374,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721669,4721670,17.0,1941376,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721676,4721677,17.0,1941383,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22758.0,2127.0 +4721678,4721679,17.0,1941385,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22808.0,2147.0 +4721681,4721682,17.0,1941388,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4721682,4721683,17.0,1941389,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721684,4721685,17.0,1941391,1,2,17,3,6.0,-9.0,-9.0,-9.0,-9.0,611M1,13.0,22806.0,2146.0 +4721685,4721686,17.0,1941392,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4721693,4721694,17.0,1941400,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721695,4721696,17.0,1941402,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22765.0,2130.0 +4721696,4721697,17.0,1941403,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721697,4721698,17.0,1941404,1,2,17,3,6.0,-9.0,-9.0,-9.0,-9.0,611M1,13.0,22806.0,2146.0 +4721698,4721699,17.0,1941405,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721699,4721700,17.0,1941406,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721703,4721704,17.0,1941410,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721705,4721706,17.0,1941412,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4721706,4721707,17.0,1941413,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22808.0,2147.0 +4721708,4721709,17.0,1941415,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721712,4721713,17.0,1941419,1,2,17,3,6.0,-9.0,-9.0,-9.0,-9.0,611M1,13.0,22808.0,2147.0 +4721713,4721714,17.0,1941420,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721717,4721718,17.0,1941424,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22808.0,2147.0 +4721719,4721720,17.0,1941426,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4721721,4721722,17.0,1941428,1,2,17,3,6.0,-9.0,-9.0,-9.0,-9.0,611M1,13.0,22808.0,2147.0 +4721723,4721724,17.0,1941430,1,2,17,3,6.0,-9.0,-9.0,15.0,4.0,45221,5.0,22815.0,2150.0 +4721727,4721728,17.0,1941434,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22765.0,2130.0 +4721729,4721730,17.0,1941436,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22806.0,2146.0 +4721730,4721731,17.0,1941437,1,2,17,3,6.0,-9.0,-9.0,15.0,4.0,45221,5.0,22808.0,2147.0 +4721731,4721732,17.0,1941438,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22806.0,2146.0 +4721739,4721740,17.0,1941446,1,2,17,1,1.0,20.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4721740,4721741,17.0,1941447,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721741,4721742,17.0,1941448,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721746,4721747,17.0,1941453,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22808.0,2147.0 +4721747,4721748,17.0,1941454,1,1,17,1,3.0,10.0,6.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4721752,4721753,17.0,1941459,1,2,17,3,6.0,18.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721753,4721754,17.0,1941460,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22765.0,2130.0 +4721754,4721755,17.0,1941461,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22815.0,2150.0 +4721755,4721756,17.0,1941462,1,2,17,1,6.0,5.0,6.0,15.0,4.0,6211,14.0,22806.0,2146.0 +4721756,4721757,17.0,1941463,1,2,17,3,6.0,-9.0,-9.0,15.0,4.0,45221,5.0,22765.0,2130.0 +4721760,4721761,18.0,1941467,1,2,17,1,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4721761,4721762,18.0,1941468,1,1,17,1,6.0,39.0,5.0,15.0,4.0,713Z,16.0,22810.0,2148.0 +4721763,4721764,18.0,1941470,1,2,17,1,1.0,22.0,1.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4721774,4721775,18.0,1941481,1,2,17,1,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4721777,4721778,18.0,1941484,1,2,17,1,6.0,40.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721782,4721783,18.0,1941489,1,1,17,1,6.0,38.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721787,4721788,18.0,1941494,1,1,17,1,1.0,14.0,6.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4721789,4721790,18.0,1941496,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721795,4721796,18.0,1941502,1,1,17,1,1.0,20.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721796,4721797,18.0,1941503,1,2,17,1,6.0,12.0,4.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4721804,4721805,18.0,1941511,1,1,17,1,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721805,4721806,18.0,1941512,1,2,17,1,1.0,3.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4721806,4721807,18.0,1941513,1,2,17,1,6.0,40.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4721808,4721809,18.0,1941515,1,2,17,1,6.0,35.0,6.0,15.0,4.0,712,16.0,22814.0,2150.0 +4721810,4721811,18.0,1941517,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721819,4721820,18.0,1941526,1,1,17,1,6.0,30.0,5.0,15.0,4.0,4452,5.0,22765.0,2130.0 +4721822,4721823,18.0,1941529,1,2,17,1,6.0,6.0,6.0,15.0,4.0,814,17.0,22806.0,2146.0 +4721823,4721824,18.0,1941530,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4721825,4721826,18.0,1941532,1,2,17,1,6.0,40.0,5.0,16.0,4.0,5411,10.0,22815.0,2150.0 +4721827,4721828,18.0,1941534,1,1,17,1,1.0,14.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +4721831,4721832,18.0,1941538,1,2,17,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4721833,4721834,18.0,1941540,1,2,17,1,6.0,23.0,6.0,15.0,3.0,45322,5.0,22808.0,2147.0 +4721835,4721836,18.0,1941542,1,2,17,1,6.0,16.0,6.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4721837,4721838,18.0,1941544,1,2,17,1,1.0,15.0,3.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4721843,4721844,18.0,1941550,1,2,17,1,6.0,55.0,5.0,15.0,4.0,4412,5.0,22808.0,2147.0 +4721859,4721860,18.0,1941566,1,2,17,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721868,4721869,18.0,1941575,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22758.0,2127.0 +4721874,4721875,18.0,1941581,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4721875,4721876,18.0,1941582,1,1,17,1,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22808.0,2147.0 +4721877,4721878,18.0,1941584,1,1,17,1,1.0,20.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721878,4721879,18.0,1941585,1,2,17,1,1.0,30.0,1.0,-9.0,4.0,8131,17.0,22808.0,2147.0 +4721882,4721883,18.0,1941589,1,1,17,1,6.0,8.0,6.0,15.0,4.0,5412,10.0,22806.0,2146.0 +4721884,4721885,18.0,1941591,1,2,17,1,6.0,20.0,5.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4721885,4721886,18.0,1941592,1,2,17,1,2.0,6.0,5.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4721892,4721893,18.0,1941599,1,2,17,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +4721893,4721894,18.0,1941600,1,1,17,1,6.0,30.0,3.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4721894,4721895,18.0,1941601,1,1,17,1,1.0,9.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721895,4721896,18.0,1941602,1,1,17,1,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721896,4721897,18.0,1941603,1,2,17,1,1.0,3.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721897,4721898,18.0,1941604,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4721898,4721899,18.0,1941605,1,1,17,1,1.0,20.0,4.0,15.0,4.0,712,16.0,22808.0,2147.0 +4721901,4721902,18.0,1941608,1,2,17,1,6.0,9.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4721902,4721903,18.0,1941609,1,2,17,1,6.0,30.0,5.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4721905,4721906,18.0,1941612,1,1,17,1,6.0,14.0,4.0,15.0,4.0,4MS,5.0,22806.0,2146.0 +4721908,4721909,18.0,1941615,1,2,17,1,6.0,6.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721914,4721915,18.0,1941621,1,1,17,1,1.0,10.0,1.0,15.0,4.0,5617Z,12.0,22765.0,2130.0 +4721915,4721916,18.0,1941622,1,1,17,1,6.0,40.0,4.0,15.0,4.0,4413,5.0,22765.0,2130.0 +4721918,4721919,18.0,1941625,1,2,17,1,1.0,30.0,5.0,15.0,4.0,55,11.0,22808.0,2147.0 +4721920,4721921,18.0,1941627,1,1,17,1,3.0,40.0,6.0,15.0,4.0,3261,3.0,22808.0,2147.0 +4721922,4721923,18.0,1941629,1,1,17,1,1.0,35.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721926,4721927,18.0,1941633,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4721932,4721933,18.0,1941639,1,1,17,1,3.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721933,4721934,18.0,1941640,1,2,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721941,4721942,18.0,1941648,1,2,17,1,6.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4721942,4721943,18.0,1941649,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4721947,4721948,18.0,1941654,1,1,17,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721956,4721957,18.0,1941663,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4721957,4721958,18.0,1941664,1,1,17,1,1.0,23.0,5.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4721958,4721959,18.0,1941665,1,2,17,1,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4721959,4721960,18.0,1941666,1,1,17,1,6.0,10.0,6.0,15.0,4.0,3256,3.0,22806.0,2146.0 +4721967,4721968,18.0,1941674,1,1,17,1,1.0,21.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4721968,4721969,18.0,1941675,1,1,17,1,6.0,30.0,3.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4721978,4721979,18.0,1941685,1,1,17,1,3.0,3.0,6.0,15.0,4.0,6244,14.0,22765.0,2130.0 +4721981,4721982,18.0,1941688,1,1,17,1,6.0,10.0,6.0,15.0,4.0,3256,3.0,22808.0,2147.0 +4721986,4721987,18.0,1941693,1,1,17,1,6.0,38.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4721990,4721991,18.0,1941697,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4721994,4721995,18.0,1941701,1,1,17,1,6.0,4.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4722001,4722002,18.0,1941708,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722003,4722004,18.0,1941710,1,1,17,1,6.0,40.0,5.0,15.0,4.0,3327,3.0,22808.0,2147.0 +4722007,4722008,18.0,1941714,1,1,17,1,3.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722009,4722010,18.0,1941716,1,2,17,1,1.0,15.0,5.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4722011,4722012,18.0,1941718,1,1,17,1,1.0,5.0,5.0,16.0,4.0,8121M,17.0,22808.0,2147.0 +4722012,4722013,18.0,1941719,1,2,17,1,3.0,30.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4722013,4722014,18.0,1941720,1,1,17,1,1.0,5.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722015,4722016,18.0,1941722,1,2,17,1,1.0,3.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722017,4722018,18.0,1941724,1,1,17,1,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4722023,4722024,18.0,1941730,1,1,17,1,6.0,40.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4722028,4722029,18.0,1941735,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722032,4722033,18.0,1941739,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4722034,4722035,18.0,1941741,1,1,17,1,6.0,40.0,6.0,15.0,4.0,4411,5.0,22808.0,2147.0 +4722036,4722037,18.0,1941743,1,2,17,1,6.0,8.0,4.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4722038,4722039,18.0,1941745,1,2,17,1,1.0,10.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722043,4722044,18.0,1941750,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4722051,4722052,18.0,1941758,1,2,17,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722052,4722053,18.0,1941759,1,1,17,1,6.0,40.0,3.0,15.0,4.0,23,2.0,22808.0,2147.0 +4722062,4722063,18.0,1941769,1,1,17,1,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4722064,4722065,18.0,1941771,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4722065,4722066,18.0,1941772,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4722068,4722069,18.0,1941775,1,2,17,1,6.0,4.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4722069,4722070,18.0,1941776,1,2,17,1,6.0,15.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4722071,4722072,18.0,1941778,1,2,17,1,6.0,12.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722076,4722077,18.0,1941783,1,1,17,1,3.0,20.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4722077,4722078,18.0,1941784,1,1,17,1,6.0,14.0,4.0,15.0,4.0,4MS,5.0,22814.0,2150.0 +4722081,4722082,18.0,1941788,1,2,17,1,6.0,30.0,6.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4722086,4722087,18.0,1941793,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4722087,4722088,18.0,1941794,1,2,17,1,3.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722091,4722092,18.0,1941798,1,2,17,1,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4722093,4722094,18.0,1941800,1,1,17,1,6.0,2.0,6.0,16.0,4.0,5419Z,10.0,22808.0,2147.0 +4722095,4722096,18.0,1941802,1,2,17,1,6.0,14.0,4.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4722097,4722098,18.0,1941804,1,2,17,1,6.0,45.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4722098,4722099,18.0,1941805,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4722114,4722115,18.0,1941821,1,1,17,1,6.0,40.0,5.0,15.0,4.0,712,16.0,22765.0,2130.0 +4722120,4722121,18.0,1941827,1,1,17,1,6.0,3.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4722122,4722123,18.0,1941829,1,2,17,1,6.0,40.0,4.0,15.0,4.0,4233,4.0,22808.0,2147.0 +4722124,4722125,18.0,1941831,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4722125,4722126,18.0,1941832,1,1,17,1,6.0,2.0,6.0,16.0,4.0,5419Z,10.0,22806.0,2146.0 +4722127,4722128,18.0,1941834,1,2,17,1,1.0,18.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722131,4722132,18.0,1941838,1,2,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722132,4722133,18.0,1941839,1,1,17,1,6.0,30.0,5.0,15.0,4.0,4452,5.0,22808.0,2147.0 +4722139,4722140,18.0,1941846,1,1,17,1,6.0,28.0,5.0,14.0,4.0,44512,5.0,22808.0,2147.0 +4722141,4722142,18.0,1941848,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22806.0,2146.0 +4722142,4722143,18.0,1941849,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4722150,4722151,18.0,1941857,1,1,17,1,6.0,3.0,5.0,15.0,4.0,7112,16.0,22758.0,2127.0 +4722151,4722152,18.0,1941858,1,2,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722154,4722155,18.0,1941861,1,2,17,1,6.0,35.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722159,4722160,18.0,1941866,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4722161,4722162,18.0,1941868,1,2,17,1,6.0,7.0,4.0,15.0,4.0,712,16.0,22808.0,2147.0 +4722162,4722163,18.0,1941869,1,2,17,1,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722163,4722164,18.0,1941870,1,2,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722164,4722165,18.0,1941871,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722165,4722166,18.0,1941872,1,2,17,1,1.0,30.0,1.0,-9.0,4.0,8131,17.0,22808.0,2147.0 +4722166,4722167,18.0,1941873,1,2,17,1,3.0,4.0,6.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4722172,4722173,18.0,1941879,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22806.0,2146.0 +4722173,4722174,18.0,1941880,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4722175,4722176,18.0,1941882,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4722176,4722177,18.0,1941883,1,2,17,1,1.0,10.0,5.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4722177,4722178,18.0,1941884,1,2,17,1,3.0,20.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4722183,4722184,18.0,1941890,1,1,17,1,6.0,33.0,6.0,15.0,4.0,6241,14.0,22758.0,2127.0 +4722184,4722185,18.0,1941891,1,1,17,1,6.0,14.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722186,4722187,18.0,1941893,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22814.0,2150.0 +4722189,4722190,18.0,1941896,1,2,17,1,6.0,12.0,6.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4722190,4722191,18.0,1941897,1,2,17,1,6.0,40.0,5.0,16.0,4.0,5411,10.0,22808.0,2147.0 +4722192,4722193,18.0,1941899,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722193,4722194,18.0,1941900,1,1,17,1,3.0,40.0,6.0,15.0,4.0,3261,3.0,22808.0,2147.0 +4722196,4722197,18.0,1941903,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4722201,4722202,18.0,1941908,1,1,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4722205,4722206,18.0,1941912,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722207,4722208,18.0,1941914,1,2,17,1,6.0,40.0,6.0,15.0,4.0,712,16.0,22765.0,2130.0 +4722208,4722209,18.0,1941915,1,1,17,1,1.0,21.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4722209,4722210,18.0,1941916,1,1,17,1,1.0,17.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4722213,4722214,18.0,1941920,1,2,17,1,6.0,30.0,5.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4722214,4722215,18.0,1941921,1,1,17,1,3.0,20.0,6.0,15.0,4.0,6241,14.0,22806.0,2146.0 +4722215,4722216,18.0,1941922,1,1,17,1,6.0,25.0,6.0,15.0,4.0,9211MP,18.0,22806.0,2146.0 +4722219,4722220,18.0,1941926,1,1,17,1,6.0,6.0,5.0,15.0,4.0,4442,5.0,22808.0,2147.0 +4722220,4722221,18.0,1941927,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5419Z,10.0,22765.0,2130.0 +4722224,4722225,18.0,1941931,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,813M,17.0,22808.0,2147.0 +4722227,4722228,18.0,1941934,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722228,4722229,18.0,1941935,1,1,17,1,6.0,30.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4722230,4722231,18.0,1941937,1,1,17,1,6.0,50.0,5.0,16.0,4.0,9211MP,18.0,22808.0,2147.0 +4722231,4722232,18.0,1941938,1,1,17,1,1.0,20.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722232,4722233,18.0,1941939,1,1,17,1,3.0,20.0,6.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4722238,4722239,18.0,1941945,1,2,17,1,6.0,10.0,6.0,15.0,4.0,5419Z,10.0,22808.0,2147.0 +4722244,4722245,18.0,1941951,1,2,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722245,4722246,18.0,1941952,1,2,17,1,6.0,40.0,6.0,15.0,4.0,712,16.0,22808.0,2147.0 +4722246,4722247,18.0,1941953,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4722249,4722250,18.0,1941956,1,1,17,1,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722250,4722251,18.0,1941957,1,1,17,1,6.0,35.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722253,4722254,18.0,1941960,1,1,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722254,4722255,18.0,1941961,1,1,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722256,4722257,18.0,1941963,1,2,17,1,3.0,1.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4722257,4722258,18.0,1941964,1,2,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4722259,4722260,18.0,1941966,1,2,17,1,6.0,6.0,4.0,15.0,4.0,5411,10.0,22758.0,2127.0 +4722260,4722261,18.0,1941967,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22815.0,2150.0 +4722262,4722263,18.0,1941969,1,2,17,1,6.0,6.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4722273,4722274,18.0,1941980,1,2,17,1,6.0,6.0,3.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4722274,4722275,18.0,1941981,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4722278,4722279,18.0,1941985,1,2,17,1,6.0,4.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4722280,4722281,18.0,1941987,1,2,17,1,1.0,15.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4722282,4722283,18.0,1941989,1,1,17,1,6.0,3.0,6.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4722283,4722284,18.0,1941990,1,2,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722284,4722285,18.0,1941991,1,1,17,1,6.0,8.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4722286,4722287,18.0,1941993,1,1,17,1,6.0,40.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722287,4722288,18.0,1941994,1,1,17,1,3.0,40.0,6.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4722288,4722289,18.0,1941995,1,2,17,1,6.0,25.0,6.0,15.0,4.0,45221,5.0,22814.0,2150.0 +4722292,4722293,18.0,1941999,1,2,17,1,6.0,30.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4722295,4722296,18.0,1942002,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22806.0,2146.0 +4722296,4722297,18.0,1942003,1,1,17,1,6.0,35.0,6.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +4722297,4722298,18.0,1942004,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4722300,4722301,18.0,1942007,1,2,17,1,6.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4722302,4722303,18.0,1942009,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4722309,4722310,18.0,1942016,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4722310,4722311,18.0,1942017,1,1,17,1,1.0,20.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722311,4722312,18.0,1942018,1,2,17,1,6.0,8.0,6.0,15.0,4.0,6244,14.0,22815.0,2150.0 +4722314,4722315,18.0,1942021,1,2,17,1,1.0,30.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722317,4722318,18.0,1942024,1,2,17,1,6.0,58.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722319,4722320,18.0,1942026,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4722322,4722323,18.0,1942029,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4722329,4722330,18.0,1942036,1,2,17,1,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722330,4722331,18.0,1942037,1,2,17,1,6.0,10.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4722331,4722332,18.0,1942038,1,1,17,1,3.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722332,4722333,18.0,1942039,1,2,17,1,3.0,1.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4722333,4722334,18.0,1942040,1,1,17,1,6.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722334,4722335,18.0,1942041,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4722337,4722338,18.0,1942044,1,2,17,1,1.0,20.0,1.0,15.0,4.0,6214,14.0,22765.0,2130.0 +4722338,4722339,18.0,1942045,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4722343,4722344,18.0,1942050,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4722344,4722345,18.0,1942051,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4722346,4722347,18.0,1942053,1,2,17,1,6.0,25.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4722348,4722349,18.0,1942055,1,1,17,1,6.0,20.0,4.0,15.0,4.0,4244,4.0,22808.0,2147.0 +4722351,4722352,18.0,1942058,1,2,17,1,1.0,15.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4722352,4722353,18.0,1942059,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722353,4722354,18.0,1942060,1,1,17,1,6.0,35.0,5.0,15.0,4.0,56173,12.0,22765.0,2130.0 +4722361,4722362,18.0,1942068,1,2,17,1,1.0,25.0,4.0,15.0,4.0,623M,14.0,22806.0,2146.0 +4722366,4722367,18.0,1942073,1,1,17,1,6.0,33.0,6.0,15.0,4.0,6241,14.0,22818.0,2150.0 +4722374,4722375,18.0,1942081,1,1,17,1,6.0,25.0,5.0,15.0,4.0,44413,5.0,22810.0,2148.0 +4722375,4722376,18.0,1942082,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4722376,4722377,18.0,1942083,1,2,17,1,1.0,50.0,6.0,15.0,4.0,5415,10.0,22758.0,2127.0 +4722379,4722380,18.0,1942086,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4722383,4722384,18.0,1942090,1,2,17,1,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722384,4722385,18.0,1942091,1,1,17,1,6.0,12.0,3.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722386,4722387,18.0,1942093,1,1,17,1,3.0,10.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4722388,4722389,18.0,1942095,1,2,17,1,6.0,8.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4722390,4722391,18.0,1942097,1,1,17,1,6.0,38.0,5.0,15.0,4.0,33641M1,3.0,22808.0,2147.0 +4722391,4722392,18.0,1942098,1,1,17,1,1.0,8.0,4.0,15.0,4.0,45121,5.0,22808.0,2147.0 +4722395,4722396,18.0,1942102,1,1,17,1,1.0,14.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722400,4722401,18.0,1942107,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722403,4722404,18.0,1942110,1,1,17,1,1.0,40.0,1.0,15.0,4.0,484,6.0,22808.0,2147.0 +4722413,4722414,18.0,1942120,1,2,17,1,6.0,10.0,6.0,15.0,4.0,5419Z,10.0,22808.0,2147.0 +4722414,4722415,18.0,1942121,1,1,17,1,6.0,10.0,6.0,15.0,4.0,3256,3.0,22808.0,2147.0 +4722415,4722416,18.0,1942122,1,2,17,1,1.0,12.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722417,4722418,18.0,1942124,1,2,17,1,6.0,8.0,6.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4722423,4722424,18.0,1942130,1,2,17,1,6.0,35.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4722425,4722426,18.0,1942132,1,2,17,1,6.0,5.0,5.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4722433,4722434,18.0,1942140,1,1,17,1,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22765.0,2130.0 +4722441,4722442,18.0,1942148,1,1,17,1,6.0,20.0,6.0,16.0,4.0,45321,5.0,22808.0,2147.0 +4722442,4722443,18.0,1942149,1,2,17,1,1.0,50.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722444,4722445,18.0,1942151,1,2,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722446,4722447,18.0,1942153,1,1,17,1,1.0,15.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4722448,4722449,18.0,1942155,1,2,17,1,1.0,10.0,5.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4722449,4722450,18.0,1942156,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722450,4722451,18.0,1942157,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,813M,17.0,22814.0,2150.0 +4722451,4722452,18.0,1942158,1,2,17,1,1.0,12.0,4.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4722453,4722454,18.0,1942160,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4722454,4722455,18.0,1942161,1,2,17,1,6.0,35.0,6.0,15.0,4.0,712,16.0,22808.0,2147.0 +4722457,4722458,18.0,1942164,1,2,17,1,6.0,24.0,2.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722458,4722459,18.0,1942165,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4722460,4722461,18.0,1942167,1,2,17,1,1.0,12.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722469,4722470,18.0,1942176,1,1,17,1,6.0,35.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4722471,4722472,18.0,1942178,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4722472,4722473,18.0,1942179,1,1,17,1,6.0,30.0,5.0,15.0,4.0,4452,5.0,22808.0,2147.0 +4722474,4722475,18.0,1942181,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4722476,4722477,18.0,1942183,1,1,17,1,1.0,17.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722477,4722478,18.0,1942184,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4722478,4722479,18.0,1942185,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4722482,4722483,18.0,1942189,1,2,17,1,6.0,20.0,6.0,15.0,4.0,4481,5.0,22765.0,2130.0 +4722483,4722484,18.0,1942190,1,2,17,1,6.0,12.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4722487,4722488,18.0,1942194,1,1,17,1,6.0,6.0,3.0,15.0,4.0,531M,9.0,22765.0,2130.0 +4722494,4722495,18.0,1942201,1,1,17,1,1.0,11.0,2.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4722497,4722498,18.0,1942204,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722499,4722500,18.0,1942206,1,1,17,1,6.0,40.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722503,4722504,18.0,1942210,1,1,17,1,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722504,4722505,18.0,1942211,1,2,17,1,1.0,10.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4722505,4722506,18.0,1942212,1,2,17,1,1.0,30.0,1.0,15.0,4.0,5415,10.0,22808.0,2147.0 +4722510,4722511,18.0,1942217,1,1,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722511,4722512,18.0,1942218,1,1,17,1,3.0,20.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722518,4722519,18.0,1942225,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4722525,4722526,18.0,1942232,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4722526,4722527,18.0,1942233,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4722530,4722531,18.0,1942237,1,2,17,1,1.0,30.0,1.0,15.0,4.0,7112,16.0,22808.0,2147.0 +4722533,4722534,18.0,1942240,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722536,4722537,18.0,1942243,1,1,17,1,1.0,40.0,3.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4722541,4722542,18.0,1942248,1,2,17,1,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722544,4722545,18.0,1942251,1,1,17,1,6.0,12.0,5.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4722547,4722548,18.0,1942254,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4722549,4722550,18.0,1942256,1,2,17,1,6.0,18.0,5.0,15.0,4.0,8131,17.0,22808.0,2147.0 +4722555,4722556,18.0,1942262,1,2,17,1,6.0,25.0,5.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4722556,4722557,18.0,1942263,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722557,4722558,18.0,1942264,1,2,17,1,6.0,40.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4722565,4722566,18.0,1942272,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722566,4722567,18.0,1942273,1,1,17,1,1.0,25.0,3.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4722572,4722573,18.0,1942279,1,2,17,1,6.0,10.0,6.0,15.0,4.0,5419Z,10.0,22808.0,2147.0 +4722579,4722580,18.0,1942286,1,1,17,1,1.0,5.0,5.0,16.0,4.0,8121M,17.0,22808.0,2147.0 +4722585,4722586,18.0,1942292,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722598,4722599,18.0,1942305,1,2,17,1,1.0,35.0,1.0,15.0,4.0,55,11.0,22758.0,2127.0 +4722599,4722600,18.0,1942306,1,2,17,1,6.0,25.0,6.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +4722604,4722605,18.0,1942311,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22765.0,2130.0 +4722607,4722608,18.0,1942314,1,2,17,1,6.0,35.0,6.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4722610,4722611,18.0,1942317,1,2,17,1,6.0,10.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722613,4722614,18.0,1942320,1,1,17,1,6.0,36.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722617,4722618,18.0,1942324,1,2,17,1,1.0,30.0,5.0,15.0,4.0,55,11.0,22808.0,2147.0 +4722618,4722619,18.0,1942325,1,2,17,1,1.0,19.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4722619,4722620,18.0,1942326,1,1,17,1,2.0,20.0,4.0,15.0,4.0,6111,13.0,22815.0,2150.0 +4722620,4722621,18.0,1942327,1,2,17,1,6.0,30.0,2.0,15.0,4.0,8129,17.0,22808.0,2147.0 +4722622,4722623,18.0,1942329,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22808.0,2147.0 +4722624,4722625,18.0,1942331,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4722625,4722626,18.0,1942332,1,2,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4722627,4722628,18.0,1942334,1,2,17,1,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722629,4722630,18.0,1942336,1,2,17,1,1.0,8.0,2.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722632,4722633,18.0,1942339,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722635,4722636,18.0,1942342,1,1,17,1,6.0,35.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722637,4722638,18.0,1942344,1,2,17,1,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22806.0,2146.0 +4722638,4722639,18.0,1942345,1,2,17,1,6.0,40.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4722639,4722640,18.0,1942346,1,2,17,1,1.0,20.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4722648,4722649,18.0,1942355,1,1,17,1,1.0,14.0,4.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4722650,4722651,18.0,1942357,1,2,17,1,2.0,15.0,4.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +4722653,4722654,18.0,1942360,1,1,17,1,1.0,13.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722661,4722662,18.0,1942368,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4722662,4722663,18.0,1942369,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722663,4722664,18.0,1942370,1,1,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4722664,4722665,18.0,1942371,1,1,17,1,6.0,6.0,3.0,15.0,4.0,531M,9.0,22808.0,2147.0 +4722666,4722667,18.0,1942373,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4722670,4722671,18.0,1942377,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4722673,4722674,18.0,1942380,1,1,17,1,6.0,3.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4722680,4722681,18.0,1942387,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22758.0,2127.0 +4722682,4722683,18.0,1942389,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4722685,4722686,18.0,1942392,1,2,17,1,3.0,1.0,6.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4722688,4722689,18.0,1942395,1,2,17,1,1.0,10.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722692,4722693,18.0,1942399,1,1,17,1,3.0,38.0,5.0,15.0,4.0,447,5.0,22808.0,2147.0 +4722693,4722694,18.0,1942400,1,2,17,1,1.0,15.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722696,4722697,18.0,1942403,1,1,17,1,6.0,20.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722703,4722704,18.0,1942410,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722704,4722705,18.0,1942411,1,1,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4722706,4722707,18.0,1942413,1,1,17,1,6.0,39.0,5.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4722707,4722708,18.0,1942414,1,1,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4722711,4722712,18.0,1942418,1,2,17,1,1.0,12.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722714,4722715,18.0,1942421,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4722716,4722717,18.0,1942423,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4722718,4722719,18.0,1942425,1,1,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722724,4722725,18.0,1942431,1,2,17,1,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722728,4722729,18.0,1942435,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722729,4722730,18.0,1942436,1,1,17,1,1.0,20.0,6.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4722730,4722731,18.0,1942437,1,2,17,1,6.0,45.0,6.0,15.0,4.0,336M,3.0,22760.0,2128.0 +4722733,4722734,18.0,1942440,1,1,17,1,1.0,16.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722735,4722736,18.0,1942442,1,1,17,1,2.0,20.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722740,4722741,18.0,1942447,1,2,17,1,1.0,40.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722748,4722749,18.0,1942455,1,1,17,1,6.0,30.0,6.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4722751,4722752,18.0,1942458,1,2,17,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4722753,4722754,18.0,1942460,1,1,17,1,6.0,8.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722756,4722757,18.0,1942463,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5417,10.0,22808.0,2147.0 +4722761,4722762,18.0,1942468,1,2,17,1,6.0,20.0,6.0,15.0,4.0,492,6.0,22808.0,2147.0 +4722762,4722763,18.0,1942469,1,2,17,1,1.0,35.0,1.0,15.0,4.0,55,11.0,22808.0,2147.0 +4722763,4722764,18.0,1942470,1,2,17,1,6.0,20.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4722764,4722765,18.0,1942471,1,1,17,1,1.0,4.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4722767,4722768,18.0,1942474,1,1,17,1,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4722768,4722769,18.0,1942475,1,1,17,1,6.0,3.0,5.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4722772,4722773,18.0,1942479,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4722778,4722779,18.0,1942485,1,2,17,1,6.0,15.0,6.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4722779,4722780,18.0,1942486,1,2,17,1,1.0,9.0,4.0,15.0,4.0,6214,14.0,22808.0,2147.0 +4722780,4722781,18.0,1942487,1,2,17,1,1.0,30.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722784,4722785,18.0,1942491,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22760.0,2128.0 +4722785,4722786,18.0,1942492,1,1,17,1,6.0,2.0,6.0,16.0,4.0,5419Z,10.0,22765.0,2130.0 +4722787,4722788,18.0,1942494,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,23,2.0,22814.0,2150.0 +4722792,4722793,18.0,1942499,1,1,17,1,6.0,48.0,6.0,15.0,4.0,337,3.0,22765.0,2130.0 +4722797,4722798,18.0,1942504,1,2,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722799,4722800,18.0,1942506,1,1,17,1,6.0,28.0,5.0,14.0,4.0,44511,5.0,22808.0,2147.0 +4722800,4722801,18.0,1942507,1,2,17,1,6.0,16.0,6.0,15.0,4.0,622M,15.0,22806.0,2146.0 +4722808,4722809,18.0,1942515,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22765.0,2130.0 +4722809,4722810,18.0,1942516,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4722812,4722813,18.0,1942519,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4511M,5.0,22806.0,2146.0 +4722813,4722814,18.0,1942520,1,1,17,1,6.0,8.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722814,4722815,18.0,1942521,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22810.0,2148.0 +4722820,4722821,18.0,1942527,1,1,17,1,1.0,15.0,1.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4722821,4722822,18.0,1942528,1,2,17,1,6.0,11.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722824,4722825,18.0,1942531,1,2,17,1,6.0,5.0,6.0,15.0,4.0,8114,17.0,22808.0,2147.0 +4722827,4722828,18.0,1942534,1,2,17,1,6.0,30.0,5.0,15.0,4.0,44511,5.0,22814.0,2150.0 +4722829,4722830,18.0,1942536,1,2,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722833,4722834,18.0,1942540,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722835,4722836,18.0,1942542,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,2211P,7.0,22808.0,2147.0 +4722839,4722840,18.0,1942546,1,2,17,1,6.0,12.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722840,4722841,18.0,1942547,1,1,17,1,6.0,3.0,5.0,15.0,4.0,7112,16.0,22808.0,2147.0 +4722842,4722843,18.0,1942549,1,1,17,1,2.0,20.0,4.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4722844,4722845,18.0,1942551,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4722846,4722847,18.0,1942553,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4722847,4722848,18.0,1942554,1,1,17,1,6.0,30.0,5.0,15.0,4.0,4452,5.0,22765.0,2130.0 +4722850,4722851,18.0,1942557,1,1,17,1,6.0,20.0,6.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4722854,4722855,18.0,1942561,1,1,17,1,1.0,5.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722856,4722857,18.0,1942563,1,1,17,1,6.0,30.0,3.0,15.0,4.0,51111,8.0,22808.0,2147.0 +4722860,4722861,18.0,1942567,1,2,17,1,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22806.0,2146.0 +4722865,4722866,18.0,1942572,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722866,4722867,18.0,1942573,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22806.0,2146.0 +4722873,4722874,18.0,1942580,1,2,17,1,1.0,17.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722881,4722882,18.0,1942588,1,2,17,1,1.0,10.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722884,4722885,18.0,1942591,1,1,17,1,1.0,25.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722888,4722889,18.0,1942595,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22808.0,2147.0 +4722889,4722890,18.0,1942596,1,2,17,1,1.0,8.0,6.0,15.0,4.0,6243,14.0,22806.0,2146.0 +4722892,4722893,18.0,1942599,1,2,17,1,1.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722895,4722896,18.0,1942602,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4722897,4722898,18.0,1942604,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4722898,4722899,18.0,1942605,1,1,17,1,6.0,20.0,6.0,16.0,4.0,45321,5.0,22808.0,2147.0 +4722900,4722901,18.0,1942607,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4722903,4722904,18.0,1942610,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4722910,4722911,18.0,1942617,1,2,17,1,6.0,24.0,6.0,15.0,4.0,4523,5.0,22806.0,2146.0 +4722911,4722912,18.0,1942618,1,2,17,1,3.0,40.0,5.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4722917,4722918,18.0,1942624,1,2,17,1,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722918,4722919,18.0,1942625,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22808.0,2147.0 +4722919,4722920,18.0,1942626,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4722922,4722923,18.0,1942629,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5417,10.0,22808.0,2147.0 +4722923,4722924,18.0,1942630,1,1,17,1,2.0,25.0,2.0,15.0,3.0,44512,5.0,22808.0,2147.0 +4722924,4722925,18.0,1942631,1,1,17,1,6.0,30.0,6.0,15.0,4.0,56173,12.0,22806.0,2146.0 +4722927,4722928,18.0,1942634,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4722928,4722929,18.0,1942635,1,2,17,1,1.0,20.0,4.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4722929,4722930,18.0,1942636,1,2,17,1,6.0,24.0,6.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4722935,4722936,18.0,1942642,1,2,17,1,1.0,20.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4722936,4722937,18.0,1942643,1,2,17,1,1.0,18.0,1.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4722937,4722938,18.0,1942644,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4722938,4722939,18.0,1942645,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22808.0,2147.0 +4722940,4722941,18.0,1942647,1,2,17,1,3.0,12.0,3.0,15.0,4.0,9211MP,18.0,22813.0,2150.0 +4722944,4722945,18.0,1942651,1,2,17,1,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722947,4722948,18.0,1942654,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722950,4722951,18.0,1942657,1,2,17,1,6.0,3.0,6.0,15.0,4.0,814,17.0,22806.0,2146.0 +4722951,4722952,18.0,1942658,1,2,17,1,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22813.0,2150.0 +4722953,4722954,18.0,1942660,1,2,17,1,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722954,4722955,18.0,1942661,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722957,4722958,18.0,1942664,1,1,17,1,6.0,25.0,4.0,15.0,4.0,23,2.0,22808.0,2147.0 +4722960,4722961,18.0,1942667,1,1,17,1,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4722961,4722962,18.0,1942668,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4722966,4722967,18.0,1942673,1,2,17,1,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4722968,4722969,18.0,1942675,1,2,17,1,1.0,9.0,4.0,15.0,4.0,6214,14.0,22808.0,2147.0 +4722971,4722972,18.0,1942678,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4722972,4722973,18.0,1942679,1,1,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722977,4722978,18.0,1942684,1,2,17,1,6.0,58.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4722985,4722986,18.0,1942692,1,2,17,1,6.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4722990,4722991,18.0,1942697,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22810.0,2148.0 +4722991,4722992,18.0,1942698,1,1,17,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4722992,4722993,18.0,1942699,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4722993,4722994,18.0,1942700,1,1,17,1,6.0,40.0,5.0,15.0,4.0,712,16.0,22810.0,2148.0 +4722994,4722995,18.0,1942701,1,2,17,1,1.0,30.0,1.0,15.0,4.0,7112,16.0,22808.0,2147.0 +4722995,4722996,18.0,1942702,1,1,17,1,6.0,35.0,6.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4722998,4722999,18.0,1942705,1,2,17,1,6.0,3.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4723004,4723005,18.0,1942711,1,2,17,1,1.0,15.0,6.0,15.0,4.0,5313,9.0,22808.0,2147.0 +4723006,4723007,18.0,1942713,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22765.0,2130.0 +4723008,4723009,18.0,1942715,1,2,17,1,6.0,35.0,3.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4723017,4723018,18.0,1942724,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4723024,4723025,18.0,1942731,1,1,17,1,6.0,38.0,6.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4723026,4723027,18.0,1942733,1,1,17,1,6.0,35.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4723031,4723032,18.0,1942738,1,1,17,1,3.0,50.0,6.0,15.0,4.0,5617Z,12.0,22765.0,2130.0 +4723032,4723033,18.0,1942739,1,2,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4723034,4723035,18.0,1942741,1,2,17,1,6.0,30.0,6.0,15.0,4.0,45113,5.0,22808.0,2147.0 +4723039,4723040,18.0,1942746,1,2,17,1,6.0,20.0,6.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4723040,4723041,18.0,1942747,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723041,4723042,18.0,1942748,1,2,17,1,6.0,40.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4723044,4723045,18.0,1942751,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22806.0,2146.0 +4723045,4723046,18.0,1942752,1,1,17,1,1.0,25.0,3.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4723046,4723047,18.0,1942753,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4723047,4723048,18.0,1942754,1,1,17,1,6.0,16.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723056,4723057,18.0,1942763,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4723058,4723059,18.0,1942765,1,1,17,1,6.0,4.0,6.0,15.0,4.0,52M2,9.0,22808.0,2147.0 +4723060,4723061,18.0,1942767,1,2,17,1,6.0,44.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723061,4723062,18.0,1942768,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4723062,4723063,18.0,1942769,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4723066,4723067,18.0,1942773,1,2,17,1,6.0,30.0,4.0,15.0,4.0,4412,5.0,22808.0,2147.0 +4723073,4723074,18.0,1942780,1,1,17,1,1.0,35.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4723078,4723079,18.0,1942785,1,2,17,1,6.0,15.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4723083,4723084,18.0,1942790,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,23,2.0,22806.0,2146.0 +4723088,4723089,18.0,1942795,1,2,17,1,1.0,35.0,4.0,15.0,4.0,6244,14.0,22765.0,2130.0 +4723089,4723090,18.0,1942796,1,2,17,1,6.0,8.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4723092,4723093,18.0,1942799,1,2,17,1,1.0,40.0,2.0,-9.0,4.0,5412,10.0,22813.0,2150.0 +4723098,4723099,18.0,1942805,1,2,17,1,6.0,15.0,5.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4723099,4723100,18.0,1942806,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4723103,4723104,18.0,1942810,1,1,17,1,6.0,30.0,6.0,15.0,4.0,111,1.0,22758.0,2127.0 +4723108,4723109,18.0,1942815,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723112,4723113,18.0,1942819,1,2,17,1,6.0,40.0,5.0,16.0,4.0,5411,10.0,22808.0,2147.0 +4723116,4723117,18.0,1942823,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4723119,4723120,18.0,1942826,1,2,17,1,6.0,60.0,6.0,15.0,4.0,45221,5.0,22808.0,2147.0 +4723123,4723124,18.0,1942830,1,2,17,1,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4723124,4723125,18.0,1942831,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22808.0,2147.0 +4723130,4723131,18.0,1942837,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4723133,4723134,18.0,1942840,1,2,17,1,6.0,38.0,6.0,15.0,4.0,5418,10.0,22808.0,2147.0 +4723138,4723139,18.0,1942845,1,2,17,1,6.0,35.0,6.0,15.0,4.0,712,16.0,22808.0,2147.0 +4723141,4723142,18.0,1942848,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,23,2.0,22808.0,2147.0 +4723142,4723143,18.0,1942849,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22806.0,2146.0 +4723143,4723144,18.0,1942850,1,1,17,1,6.0,6.0,3.0,15.0,4.0,531M,9.0,22808.0,2147.0 +4723145,4723146,18.0,1942852,1,1,17,1,6.0,40.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4723146,4723147,18.0,1942853,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4723153,4723154,18.0,1942860,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22808.0,2147.0 +4723158,4723159,18.0,1942865,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723160,4723161,18.0,1942867,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4723171,4723172,18.0,1942878,1,2,17,1,1.0,15.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723176,4723177,18.0,1942883,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22765.0,2130.0 +4723179,4723180,18.0,1942886,1,2,17,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723181,4723182,18.0,1942888,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4723182,4723183,18.0,1942889,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4723183,4723184,18.0,1942890,1,1,17,1,6.0,32.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4723184,4723185,18.0,1942891,1,1,17,1,1.0,15.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4723188,4723189,18.0,1942895,1,1,17,1,6.0,25.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4723189,4723190,18.0,1942896,1,2,17,1,1.0,30.0,1.0,15.0,4.0,7112,16.0,22765.0,2130.0 +4723190,4723191,18.0,1942897,1,2,17,1,6.0,26.0,5.0,15.0,4.0,814,17.0,22808.0,2147.0 +4723191,4723192,18.0,1942898,1,1,17,1,6.0,12.0,5.0,15.0,4.0,8129,17.0,22810.0,2148.0 +4723196,4723197,18.0,1942903,1,2,17,1,1.0,20.0,1.0,15.0,4.0,6214,14.0,22808.0,2147.0 +4723200,4723201,18.0,1942907,1,2,17,1,1.0,30.0,6.0,15.0,4.0,45121,5.0,22808.0,2147.0 +4723202,4723203,18.0,1942909,1,1,17,1,1.0,16.0,4.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4723205,4723206,18.0,1942912,1,2,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723207,4723208,18.0,1942914,1,1,17,1,3.0,40.0,6.0,15.0,4.0,3261,3.0,22814.0,2150.0 +4723208,4723209,18.0,1942915,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22765.0,2130.0 +4723209,4723210,18.0,1942916,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4723214,4723215,18.0,1942921,1,2,17,1,1.0,14.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4723215,4723216,18.0,1942922,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4723216,4723217,18.0,1942923,1,1,17,1,1.0,25.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723219,4723220,18.0,1942926,1,1,17,1,6.0,12.0,5.0,15.0,4.0,8129,17.0,22806.0,2146.0 +4723221,4723222,18.0,1942928,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5417,10.0,22808.0,2147.0 +4723222,4723223,18.0,1942929,1,1,17,1,1.0,20.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4723223,4723224,18.0,1942930,1,2,17,1,6.0,18.0,5.0,15.0,4.0,8131,17.0,22808.0,2147.0 +4723224,4723225,18.0,1942931,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22815.0,2150.0 +4723228,4723229,18.0,1942935,1,2,17,1,3.0,12.0,3.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4723230,4723231,18.0,1942937,1,1,17,1,6.0,20.0,6.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4723232,4723233,18.0,1942939,1,1,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723234,4723235,18.0,1942941,1,1,17,1,6.0,8.0,6.0,15.0,4.0,5412,10.0,22814.0,2150.0 +4723235,4723236,18.0,1942942,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4723236,4723237,18.0,1942943,1,2,17,1,1.0,30.0,1.0,15.0,4.0,5415,10.0,22808.0,2147.0 +4723238,4723239,18.0,1942945,1,1,17,1,6.0,16.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723239,4723240,18.0,1942946,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4723240,4723241,18.0,1942947,1,1,17,1,1.0,4.0,5.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4723246,4723247,18.0,1942953,1,2,17,1,1.0,7.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723247,4723248,18.0,1942954,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723252,4723253,18.0,1942959,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4723255,4723256,18.0,1942962,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723256,4723257,18.0,1942963,1,2,17,1,6.0,9.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723277,4723278,18.0,1942984,1,1,17,1,6.0,8.0,6.0,15.0,4.0,5412,10.0,22808.0,2147.0 +4723281,4723282,18.0,1942988,1,2,17,1,1.0,20.0,4.0,15.0,4.0,7111,16.0,22808.0,2147.0 +4723283,4723284,18.0,1942990,1,2,17,1,1.0,8.0,2.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723287,4723288,18.0,1942994,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723292,4723293,18.0,1942999,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4723296,4723297,18.0,1943003,1,1,17,1,6.0,30.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723300,4723301,18.0,1943007,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723310,4723311,18.0,1943017,1,1,17,1,6.0,28.0,6.0,15.0,4.0,52M2,9.0,22814.0,2150.0 +4723312,4723313,18.0,1943019,1,2,17,1,1.0,9.0,4.0,15.0,4.0,6214,14.0,22765.0,2130.0 +4723313,4723314,18.0,1943020,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22815.0,2150.0 +4723316,4723317,18.0,1943023,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22806.0,2146.0 +4723318,4723319,18.0,1943025,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,811192,17.0,22808.0,2147.0 +4723320,4723321,18.0,1943027,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4723323,4723324,18.0,1943030,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4723324,4723325,18.0,1943031,1,1,17,1,6.0,48.0,6.0,15.0,4.0,337,3.0,22806.0,2146.0 +4723328,4723329,18.0,1943035,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723335,4723336,18.0,1943042,1,2,17,1,1.0,50.0,6.0,15.0,4.0,5415,10.0,22808.0,2147.0 +4723336,4723337,18.0,1943043,1,2,17,1,6.0,6.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4723338,4723339,18.0,1943045,1,2,17,1,1.0,30.0,1.0,15.0,4.0,5415,10.0,22808.0,2147.0 +4723339,4723340,18.0,1943046,1,2,17,1,1.0,12.0,4.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4723340,4723341,18.0,1943047,1,1,17,1,1.0,17.0,1.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4723341,4723342,18.0,1943048,1,1,17,1,6.0,40.0,4.0,15.0,4.0,4413,5.0,22806.0,2146.0 +4723348,4723349,18.0,1943055,1,2,17,1,6.0,24.0,6.0,15.0,4.0,53M,9.0,22806.0,2146.0 +4723351,4723352,18.0,1943058,1,1,17,1,1.0,20.0,6.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4723354,4723355,18.0,1943061,1,1,17,1,1.0,9.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723356,4723357,18.0,1943063,1,2,17,1,1.0,30.0,6.0,15.0,4.0,45121,5.0,22808.0,2147.0 +4723357,4723358,18.0,1943064,1,1,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4723358,4723359,18.0,1943065,1,1,17,1,6.0,40.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4723363,4723364,18.0,1943070,1,2,17,1,6.0,15.0,6.0,15.0,4.0,6241,14.0,22765.0,2130.0 +4723367,4723368,18.0,1943074,1,2,17,1,1.0,30.0,1.0,15.0,4.0,5415,10.0,22808.0,2147.0 +4723369,4723370,18.0,1943076,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4723370,4723371,18.0,1943077,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4723372,4723373,18.0,1943079,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723374,4723375,18.0,1943081,1,1,17,1,6.0,45.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4723375,4723376,18.0,1943082,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,813M,17.0,22808.0,2147.0 +4723380,4723381,18.0,1943087,1,1,17,1,6.0,20.0,6.0,15.0,4.0,488,6.0,22808.0,2147.0 +4723382,4723383,18.0,1943089,1,1,17,1,6.0,40.0,5.0,16.0,4.0,33641M1,3.0,22808.0,2147.0 +4723385,4723386,18.0,1943092,1,2,17,1,1.0,12.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4723390,4723391,18.0,1943097,1,1,17,1,6.0,36.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723394,4723395,18.0,1943101,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4723397,4723398,18.0,1943104,1,2,17,1,6.0,8.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4723399,4723400,18.0,1943106,1,1,17,1,3.0,3.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4723401,4723402,18.0,1943108,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4723402,4723403,18.0,1943109,1,2,17,1,1.0,3.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4723406,4723407,18.0,1943113,1,1,17,1,6.0,40.0,5.0,15.0,4.0,712,16.0,22765.0,2130.0 +4723409,4723410,18.0,1943116,1,1,17,1,6.0,35.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4723418,4723419,18.0,1943125,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723419,4723420,18.0,1943126,1,2,17,1,1.0,15.0,6.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4723423,4723424,18.0,1943130,1,1,17,1,6.0,25.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4723425,4723426,18.0,1943132,1,2,17,1,6.0,40.0,6.0,15.0,4.0,3321,3.0,22808.0,2147.0 +4723428,4723429,18.0,1943135,1,2,17,1,6.0,15.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4723436,4723437,18.0,1943143,1,2,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4723441,4723442,18.0,1943148,1,2,17,1,1.0,60.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723442,4723443,18.0,1943149,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4723443,4723444,18.0,1943150,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723444,4723445,18.0,1943151,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4723445,4723446,18.0,1943152,1,1,17,1,1.0,25.0,5.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4723447,4723448,18.0,1943154,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4723449,4723450,18.0,1943156,1,2,17,1,1.0,10.0,1.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4723457,4723458,18.0,1943164,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723458,4723459,18.0,1943165,1,2,17,1,1.0,18.0,4.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4723463,4723464,18.0,1943170,1,1,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4723466,4723467,18.0,1943173,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4723468,4723469,18.0,1943175,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723472,4723473,18.0,1943179,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723474,4723475,18.0,1943181,1,1,17,1,6.0,30.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4723476,4723477,18.0,1943183,1,1,17,1,6.0,28.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4723484,4723485,18.0,1943191,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723485,4723486,18.0,1943192,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4723487,4723488,18.0,1943194,1,1,17,1,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723490,4723491,18.0,1943197,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22806.0,2146.0 +4723493,4723494,18.0,1943200,1,1,17,1,6.0,30.0,3.0,15.0,4.0,51111,8.0,22758.0,2127.0 +4723498,4723499,18.0,1943205,1,2,17,1,6.0,15.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4723500,4723501,18.0,1943207,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4723504,4723505,18.0,1943211,1,2,17,1,1.0,40.0,2.0,-9.0,4.0,5412,10.0,22808.0,2147.0 +4723514,4723515,18.0,1943221,1,1,17,1,1.0,40.0,3.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4723517,4723518,18.0,1943224,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4723519,4723520,18.0,1943226,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4723522,4723523,18.0,1943229,1,2,17,1,6.0,60.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723524,4723525,18.0,1943231,1,1,17,1,1.0,4.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4723526,4723527,18.0,1943233,1,2,17,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723527,4723528,18.0,1943234,1,1,17,1,3.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4723529,4723530,18.0,1943236,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4723531,4723532,18.0,1943238,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723535,4723536,18.0,1943242,1,1,17,1,6.0,39.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723548,4723549,18.0,1943255,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22806.0,2146.0 +4723551,4723552,18.0,1943258,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4723552,4723553,18.0,1943259,1,1,17,1,1.0,4.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4723556,4723557,18.0,1943263,1,2,17,1,6.0,30.0,6.0,15.0,4.0,45113,5.0,22810.0,2148.0 +4723559,4723560,18.0,1943266,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22808.0,2147.0 +4723565,4723566,18.0,1943272,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4723566,4723567,18.0,1943273,1,1,17,1,1.0,9.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723571,4723572,18.0,1943278,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723573,4723574,18.0,1943280,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723580,4723581,18.0,1943287,1,2,17,1,6.0,24.0,6.0,15.0,4.0,53M,9.0,22808.0,2147.0 +4723584,4723585,18.0,1943291,1,2,17,1,3.0,25.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723588,4723589,18.0,1943295,1,1,17,1,6.0,18.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723592,4723593,18.0,1943299,1,2,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723597,4723598,18.0,1943304,1,1,17,1,1.0,14.0,4.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4723601,4723602,18.0,1943308,1,1,17,1,6.0,18.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723607,4723608,18.0,1943314,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4723611,4723612,18.0,1943318,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22806.0,2146.0 +4723612,4723613,18.0,1943319,1,2,17,1,6.0,14.0,1.0,15.0,4.0,4481,5.0,22806.0,2146.0 +4723615,4723616,18.0,1943322,1,1,17,1,6.0,32.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4723616,4723617,18.0,1943323,1,1,17,1,6.0,10.0,4.0,15.0,4.0,44413,5.0,22765.0,2130.0 +4723617,4723618,18.0,1943324,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723618,4723619,18.0,1943325,1,2,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723620,4723621,18.0,1943327,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4723621,4723622,18.0,1943328,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4723622,4723623,18.0,1943329,1,2,17,1,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723623,4723624,18.0,1943330,1,1,17,1,6.0,45.0,6.0,15.0,4.0,52M2,9.0,22808.0,2147.0 +4723624,4723625,18.0,1943331,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22808.0,2147.0 +4723626,4723627,18.0,1943333,1,1,17,1,1.0,12.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4723627,4723628,18.0,1943334,1,2,17,1,6.0,36.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4723629,4723630,18.0,1943336,1,1,17,1,6.0,36.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723632,4723633,18.0,1943339,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723638,4723639,18.0,1943345,1,1,17,1,1.0,4.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4723640,4723641,18.0,1943347,1,2,17,1,6.0,12.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723643,4723644,18.0,1943350,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22808.0,2147.0 +4723651,4723652,18.0,1943358,1,1,17,2,6.0,25.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4723657,4723658,18.0,1943364,1,2,17,2,1.0,4.0,1.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4723658,4723659,18.0,1943365,1,2,17,2,6.0,30.0,5.0,15.0,4.0,336M,3.0,22765.0,2130.0 +4723659,4723660,18.0,1943366,1,1,17,2,1.0,20.0,4.0,15.0,4.0,442,5.0,22808.0,2147.0 +4723664,4723665,18.0,1943371,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4723681,4723682,18.0,1943388,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22813.0,2150.0 +4723685,4723686,18.0,1943392,1,2,17,2,1.0,20.0,1.0,15.0,4.0,4523,5.0,22806.0,2146.0 +4723686,4723687,18.0,1943393,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4723692,4723693,18.0,1943399,1,1,17,2,6.0,5.0,6.0,15.0,4.0,45121,5.0,22810.0,2148.0 +4723693,4723694,18.0,1943400,1,1,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22808.0,2147.0 +4723698,4723699,18.0,1943405,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,442,5.0,22808.0,2147.0 +4723699,4723700,18.0,1943406,1,2,17,2,1.0,25.0,3.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4723700,4723701,18.0,1943407,1,1,17,2,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723701,4723702,18.0,1943408,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22758.0,2127.0 +4723711,4723712,18.0,1943418,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22808.0,2147.0 +4723714,4723715,18.0,1943421,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4723720,4723721,18.0,1943427,1,1,17,2,3.0,25.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723721,4723722,18.0,1943428,1,1,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22808.0,2147.0 +4723723,4723724,18.0,1943430,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4723724,4723725,18.0,1943431,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4723725,4723726,18.0,1943432,1,2,17,2,1.0,35.0,4.0,15.0,3.0,722Z,16.0,22808.0,2147.0 +4723726,4723727,18.0,1943433,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4723727,4723728,18.0,1943434,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4723728,4723729,18.0,1943435,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4723736,4723737,18.0,1943443,1,1,17,2,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4723738,4723739,18.0,1943445,1,2,17,2,6.0,16.0,6.0,13.0,4.0,813M,17.0,22808.0,2147.0 +4723741,4723742,18.0,1943448,1,1,17,2,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723743,4723744,18.0,1943450,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22808.0,2147.0 +4723745,4723746,18.0,1943452,1,2,17,2,6.0,32.0,1.0,15.0,4.0,6231,14.0,22808.0,2147.0 +4723747,4723748,18.0,1943454,1,2,17,2,1.0,30.0,1.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4723748,4723749,18.0,1943455,1,1,17,2,3.0,20.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4723750,4723751,18.0,1943457,1,1,17,2,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4723751,4723752,18.0,1943458,1,2,17,2,3.0,-9.0,-9.0,-9.0,4.0,999920,-9.0,22808.0,2147.0 +4723752,4723753,18.0,1943459,1,1,17,2,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723757,4723758,18.0,1943464,1,2,17,2,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723760,4723761,18.0,1943467,1,1,17,2,6.0,-9.0,-9.0,13.0,4.0,722Z,16.0,22806.0,2146.0 +4723761,4723762,18.0,1943468,1,2,17,2,1.0,15.0,5.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4723762,4723763,18.0,1943469,1,1,17,2,1.0,9.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4723766,4723767,18.0,1943473,1,2,17,2,1.0,20.0,6.0,-9.0,4.0,4523,5.0,22765.0,2130.0 +4723769,4723770,18.0,1943476,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4723772,4723773,18.0,1943479,1,2,17,2,6.0,30.0,5.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4723777,4723778,18.0,1943484,1,2,17,2,1.0,14.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4723787,4723788,18.0,1943494,1,1,17,2,1.0,18.0,6.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4723790,4723791,18.0,1943497,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4723796,4723797,18.0,1943503,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4723798,4723799,18.0,1943505,1,2,17,2,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723799,4723800,18.0,1943506,1,1,17,2,1.0,35.0,3.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4723803,4723804,18.0,1943510,1,2,17,2,6.0,25.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723805,4723806,18.0,1943512,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4723808,4723809,18.0,1943515,1,1,17,2,2.0,18.0,1.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4723809,4723810,18.0,1943516,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4723812,4723813,18.0,1943519,1,2,17,2,1.0,30.0,1.0,15.0,4.0,5241,9.0,22765.0,2130.0 +4723814,4723815,18.0,1943521,1,2,17,2,1.0,35.0,4.0,15.0,3.0,722Z,16.0,22808.0,2147.0 +4723815,4723816,18.0,1943522,1,1,17,2,6.0,50.0,5.0,16.0,4.0,9211MP,18.0,22814.0,2150.0 +4723820,4723821,18.0,1943527,1,1,17,2,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723821,4723822,18.0,1943528,1,2,17,2,1.0,4.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723824,4723825,18.0,1943531,1,1,17,2,2.0,15.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723825,4723826,18.0,1943532,1,1,17,2,3.0,11.0,1.0,15.0,4.0,42393,4.0,22814.0,2150.0 +4723827,4723828,18.0,1943534,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22808.0,2147.0 +4723830,4723831,18.0,1943537,1,1,17,2,6.0,8.0,6.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4723831,4723832,18.0,1943538,1,1,17,2,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723835,4723836,18.0,1943542,1,2,17,2,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723841,4723842,18.0,1943548,1,2,17,2,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723843,4723844,18.0,1943550,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4723844,4723845,18.0,1943551,1,2,17,2,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723848,4723849,18.0,1943555,1,1,17,2,1.0,10.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723849,4723850,18.0,1943556,1,1,17,2,6.0,25.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4723851,4723852,18.0,1943558,1,2,17,2,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723859,4723860,18.0,1943566,1,1,17,2,3.0,40.0,4.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4723860,4723861,18.0,1943567,1,1,17,2,1.0,24.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4723866,4723867,18.0,1943573,1,2,17,2,6.0,18.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4723867,4723868,18.0,1943574,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4723868,4723869,18.0,1943575,1,1,17,2,6.0,16.0,5.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4723870,4723871,18.0,1943577,1,2,17,2,6.0,25.0,5.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4723872,4723873,18.0,1943579,1,2,17,2,1.0,15.0,5.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4723875,4723876,18.0,1943582,1,1,17,2,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4723878,4723879,18.0,1943585,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22806.0,2146.0 +4723879,4723880,18.0,1943586,1,2,17,2,1.0,14.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4723883,4723884,18.0,1943590,1,2,17,2,1.0,14.0,4.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4723885,4723886,18.0,1943592,1,1,17,2,1.0,20.0,5.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4723888,4723889,18.0,1943595,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22765.0,2130.0 +4723889,4723890,18.0,1943596,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22814.0,2150.0 +4723895,4723896,18.0,1943602,1,2,17,2,1.0,25.0,3.0,15.0,4.0,44511,5.0,22765.0,2130.0 +4723906,4723907,18.0,1943613,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22808.0,2147.0 +4723908,4723909,18.0,1943615,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22758.0,2127.0 +4723910,4723911,18.0,1943617,1,2,17,4,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4723913,4723914,18.0,1943620,1,1,17,4,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +4723916,4723917,18.0,1943623,1,1,17,4,1.0,4.0,4.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4723917,4723918,18.0,1943624,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7111,16.0,22808.0,2147.0 +4723937,4723938,18.0,1943644,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4723938,4723939,18.0,1943645,1,2,17,4,1.0,21.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723944,4723945,18.0,1943651,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4723947,4723948,18.0,1943654,1,1,17,4,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +4723948,4723949,18.0,1943655,1,2,17,4,1.0,12.0,4.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4723949,4723950,18.0,1943656,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4723951,4723952,18.0,1943658,1,1,17,4,6.0,18.0,6.0,15.0,4.0,562,12.0,22808.0,2147.0 +4723955,4723956,18.0,1943662,1,2,17,4,6.0,8.0,5.0,16.0,4.0,5413,10.0,22808.0,2147.0 +4723956,4723957,18.0,1943663,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4723961,4723962,18.0,1943668,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4723968,4723969,18.0,1943675,1,1,17,4,1.0,20.0,4.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4723969,4723970,18.0,1943676,1,1,17,4,1.0,70.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4723971,4723972,18.0,1943678,1,1,17,4,6.0,5.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4723975,4723976,18.0,1943682,1,1,17,4,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4723976,4723977,18.0,1943683,1,2,17,4,6.0,40.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4723981,4723982,18.0,1943688,1,1,17,4,6.0,40.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4723982,4723983,18.0,1943689,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22806.0,2146.0 +4723984,4723985,18.0,1943691,1,2,17,4,1.0,12.0,1.0,15.0,4.0,812112,17.0,22808.0,2147.0 +4723987,4723988,18.0,1943694,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4723992,4723993,18.0,1943699,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22813.0,2150.0 +4723997,4723998,18.0,1943704,1,1,17,4,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4723999,4724000,18.0,1943706,1,2,17,4,6.0,49.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4724003,4724004,18.0,1943710,1,1,17,4,1.0,4.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4724005,4724006,18.0,1943712,1,1,17,4,3.0,40.0,5.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4724006,4724007,18.0,1943713,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724008,4724009,18.0,1943715,1,1,17,4,6.0,-9.0,-9.0,13.0,4.0,-9,-9.0,22808.0,2147.0 +4724013,4724014,18.0,1943720,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4724014,4724015,18.0,1943721,1,2,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724018,4724019,18.0,1943725,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4724023,4724024,18.0,1943730,1,1,17,4,6.0,40.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4724029,4724030,18.0,1943736,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22806.0,2146.0 +4724037,4724038,18.0,1943744,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22815.0,2150.0 +4724042,4724043,18.0,1943749,1,1,17,4,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22760.0,2128.0 +4724045,4724046,18.0,1943752,1,2,17,4,6.0,49.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4724046,4724047,18.0,1943753,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724047,4724048,18.0,1943754,1,1,17,4,6.0,99.0,6.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4724050,4724051,18.0,1943757,1,1,17,4,6.0,40.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4724051,4724052,18.0,1943758,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724052,4724053,18.0,1943759,1,2,17,4,6.0,40.0,6.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +4724056,4724057,18.0,1943763,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724058,4724059,18.0,1943765,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4724060,4724061,18.0,1943767,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4724061,4724062,18.0,1943768,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724065,4724066,18.0,1943772,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4724067,4724068,18.0,1943774,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724081,4724082,18.0,1943788,1,1,17,4,6.0,20.0,4.0,15.0,4.0,44511,5.0,22806.0,2146.0 +4724083,4724084,18.0,1943790,1,1,17,4,1.0,15.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724085,4724086,18.0,1943792,1,1,17,4,1.0,4.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724087,4724088,18.0,1943794,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724095,4724096,18.0,1943802,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,334M2,3.0,22808.0,2147.0 +4724099,4724100,18.0,1943806,1,1,17,4,6.0,35.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724102,4724103,18.0,1943809,1,2,17,4,2.0,12.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4724105,4724106,18.0,1943812,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22810.0,2148.0 +4724108,4724109,18.0,1943815,1,2,17,4,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22814.0,2150.0 +4724109,4724110,18.0,1943816,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22758.0,2127.0 +4724113,4724114,18.0,1943820,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724114,4724115,18.0,1943821,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724119,4724120,18.0,1943826,1,2,17,4,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724120,4724121,18.0,1943827,1,1,17,4,6.0,40.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4724124,4724125,18.0,1943831,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724128,4724129,18.0,1943835,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724131,4724132,18.0,1943838,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +4724133,4724134,18.0,1943840,1,1,17,4,1.0,25.0,4.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +4724136,4724137,18.0,1943843,1,2,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724137,4724138,18.0,1943844,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724140,4724141,18.0,1943847,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4724146,4724147,18.0,1943853,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724148,4724149,18.0,1943855,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,443142,5.0,22765.0,2130.0 +4724152,4724153,18.0,1943859,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4724158,4724159,18.0,1943865,1,2,17,4,6.0,5.0,6.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4724162,4724163,18.0,1943869,1,2,17,4,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724164,4724165,18.0,1943871,1,1,17,4,6.0,7.0,6.0,15.0,4.0,8131,17.0,22765.0,2130.0 +4724168,4724169,18.0,1943875,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7115,16.0,22760.0,2128.0 +4724176,4724177,18.0,1943883,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22806.0,2146.0 +4724177,4724178,18.0,1943884,1,1,17,4,1.0,40.0,4.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724185,4724186,18.0,1943892,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724186,4724187,18.0,1943893,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,334M2,3.0,22765.0,2130.0 +4724188,4724189,18.0,1943895,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22815.0,2150.0 +4724191,4724192,18.0,1943898,1,1,17,4,1.0,20.0,4.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4724196,4724197,18.0,1943903,1,1,17,4,6.0,20.0,5.0,15.0,4.0,4232,4.0,22815.0,2150.0 +4724201,4724202,18.0,1943908,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724205,4724206,18.0,1943912,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724206,4724207,18.0,1943913,1,1,17,4,1.0,70.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724207,4724208,18.0,1943914,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724208,4724209,18.0,1943915,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724211,4724212,18.0,1943918,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4724213,4724214,18.0,1943920,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4724215,4724216,18.0,1943922,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22765.0,2130.0 +4724217,4724218,18.0,1943924,1,2,17,4,1.0,12.0,4.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4724222,4724223,18.0,1943929,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724223,4724224,18.0,1943930,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724224,4724225,18.0,1943931,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724225,4724226,18.0,1943932,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4724229,4724230,18.0,1943936,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4724230,4724231,18.0,1943937,1,2,17,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +4724233,4724234,18.0,1943940,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724236,4724237,18.0,1943943,1,1,17,4,1.0,4.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724239,4724240,18.0,1943946,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7111,16.0,22765.0,2130.0 +4724241,4724242,18.0,1943948,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724242,4724243,18.0,1943949,1,2,17,4,6.0,13.0,4.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4724253,4724254,18.0,1943960,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724254,4724255,18.0,1943961,1,1,17,4,6.0,25.0,4.0,15.0,4.0,5414,10.0,22808.0,2147.0 +4724264,4724265,18.0,1943971,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724265,4724266,18.0,1943972,1,1,17,4,6.0,5.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724269,4724270,18.0,1943976,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,814,17.0,22808.0,2147.0 +4724272,4724273,18.0,1943979,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,336M,3.0,22813.0,2150.0 +4724276,4724277,18.0,1943983,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724281,4724282,18.0,1943988,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4724284,4724285,18.0,1943991,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4724287,4724288,18.0,1943994,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724289,4724290,18.0,1943996,1,1,17,4,6.0,40.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4724291,4724292,18.0,1943998,1,1,17,4,6.0,8.0,6.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4724294,4724295,18.0,1944001,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22765.0,2130.0 +4724296,4724297,18.0,1944003,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4724297,4724298,18.0,1944004,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,814,17.0,22810.0,2148.0 +4724301,4724302,18.0,1944008,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724309,4724310,18.0,1944016,1,1,17,4,6.0,35.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4724312,4724313,18.0,1944019,1,1,17,4,6.0,40.0,1.0,14.0,4.0,811192,17.0,22808.0,2147.0 +4724314,4724315,18.0,1944021,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22813.0,2150.0 +4724315,4724316,18.0,1944022,1,1,17,4,6.0,8.0,6.0,15.0,4.0,2211P,7.0,22765.0,2130.0 +4724318,4724319,18.0,1944025,1,1,17,4,6.0,40.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4724320,4724321,18.0,1944027,1,1,17,4,6.0,25.0,4.0,15.0,4.0,5414,10.0,22808.0,2147.0 +4724323,4724324,18.0,1944030,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4724326,4724327,18.0,1944033,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22806.0,2146.0 +4724327,4724328,18.0,1944034,1,2,17,4,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4724330,4724331,18.0,1944037,1,2,17,4,6.0,8.0,5.0,16.0,4.0,5413,10.0,22808.0,2147.0 +4724332,4724333,18.0,1944039,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724333,4724334,18.0,1944040,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724334,4724335,18.0,1944041,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724335,4724336,18.0,1944042,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4724341,4724342,18.0,1944048,1,2,17,3,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724342,4724343,18.0,1944049,1,2,17,3,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4724344,4724345,18.0,1944051,1,1,17,3,6.0,35.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724345,4724346,18.0,1944052,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22758.0,2127.0 +4724347,4724348,18.0,1944054,1,2,17,3,6.0,50.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4724349,4724350,18.0,1944056,1,2,17,3,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4724354,4724355,18.0,1944061,1,1,17,3,6.0,35.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724355,4724356,18.0,1944062,1,2,17,3,1.0,30.0,3.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4724360,4724361,18.0,1944067,1,1,17,3,6.0,15.0,6.0,15.0,4.0,4411,5.0,22814.0,2150.0 +4724361,4724362,18.0,1944068,1,2,17,3,1.0,5.0,5.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4724362,4724363,18.0,1944069,1,2,17,3,1.0,20.0,1.0,15.0,4.0,4539,5.0,22760.0,2128.0 +4724363,4724364,18.0,1944070,1,2,17,3,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4724365,4724366,18.0,1944072,1,2,17,3,1.0,50.0,1.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4724370,4724371,18.0,1944077,1,1,17,3,1.0,15.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724372,4724373,18.0,1944079,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724377,4724378,18.0,1944084,1,2,17,3,6.0,6.0,3.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4724382,4724383,18.0,1944089,1,1,17,3,3.0,40.0,6.0,15.0,4.0,334M1,3.0,22808.0,2147.0 +4724383,4724384,18.0,1944090,1,2,17,3,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724384,4724385,18.0,1944091,1,1,17,3,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724386,4724387,18.0,1944093,1,2,17,3,6.0,24.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4724387,4724388,18.0,1944094,1,2,17,3,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4724388,4724389,18.0,1944095,1,1,17,3,3.0,40.0,6.0,15.0,4.0,334M1,3.0,22808.0,2147.0 +4724389,4724390,18.0,1944096,1,2,17,3,6.0,28.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4724390,4724391,18.0,1944097,1,1,17,3,3.0,40.0,6.0,15.0,4.0,334M1,3.0,22808.0,2147.0 +4724393,4724394,18.0,1944100,1,2,17,3,6.0,18.0,3.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4724395,4724396,18.0,1944102,1,2,17,3,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724397,4724398,18.0,1944104,1,1,17,3,6.0,45.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724402,4724403,18.0,1944109,1,2,17,3,1.0,50.0,1.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4724404,4724405,18.0,1944111,1,1,17,3,6.0,40.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4724406,4724407,18.0,1944113,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724407,4724408,18.0,1944114,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4724408,4724409,18.0,1944115,1,1,17,3,6.0,15.0,6.0,15.0,4.0,4411,5.0,22808.0,2147.0 +4724410,4724411,18.0,1944117,1,2,17,3,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724411,4724412,18.0,1944118,1,1,17,3,1.0,40.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724425,4724426,18.0,1944132,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4724427,4724428,18.0,1944134,1,1,17,3,3.0,-9.0,-9.0,13.0,4.0,999920,-9.0,22806.0,2146.0 +4724429,4724430,18.0,1944136,1,2,17,3,6.0,24.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4724431,4724432,18.0,1944138,1,1,17,3,6.0,14.0,4.0,15.0,4.0,4MS,5.0,22806.0,2146.0 +4724432,4724433,18.0,1944139,1,1,17,3,3.0,-9.0,-9.0,13.0,4.0,999920,-9.0,22808.0,2147.0 +4724436,4724437,18.0,1944143,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724440,4724441,18.0,1944147,1,1,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22810.0,2148.0 +4724450,4724451,18.0,1944157,1,2,17,3,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22818.0,2150.0 +4724451,4724452,18.0,1944158,1,1,17,2,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22818.0,2150.0 +4724453,4724454,18.0,1944160,1,1,17,1,6.0,3.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4724454,4724455,18.0,1944161,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4724455,4724456,18.0,1944162,1,2,17,1,6.0,40.0,6.0,15.0,4.0,712,16.0,22808.0,2147.0 +4724456,4724457,18.0,1944163,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4724460,4724461,18.0,1944167,1,1,17,1,1.0,25.0,4.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4724463,4724464,18.0,1944170,1,2,17,1,6.0,5.0,5.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4724464,4724465,18.0,1944171,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22765.0,2130.0 +4724465,4724466,18.0,1944172,1,1,17,1,6.0,3.0,6.0,15.0,4.0,611M3,13.0,22815.0,2150.0 +4724466,4724467,18.0,1944173,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22765.0,2130.0 +4724470,4724471,18.0,1944177,1,1,17,1,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4724471,4724472,18.0,1944178,1,2,17,1,1.0,20.0,4.0,15.0,4.0,7111,16.0,22765.0,2130.0 +4724474,4724475,18.0,1944181,1,2,17,1,6.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4724475,4724476,18.0,1944182,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4724479,4724480,18.0,1944186,1,2,17,1,6.0,40.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4724481,4724482,18.0,1944188,1,1,17,1,6.0,25.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724482,4724483,18.0,1944189,1,1,17,1,6.0,40.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724487,4724488,18.0,1944194,1,1,17,1,2.0,25.0,2.0,15.0,3.0,44512,5.0,22813.0,2150.0 +4724492,4724493,18.0,1944199,1,1,17,1,6.0,25.0,4.0,15.0,4.0,23,2.0,22808.0,2147.0 +4724494,4724495,18.0,1944201,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4724495,4724496,18.0,1944202,1,1,17,1,6.0,15.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724496,4724497,18.0,1944203,1,1,17,1,6.0,35.0,6.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4724497,4724498,18.0,1944204,1,1,17,4,6.0,20.0,5.0,15.0,4.0,4232,4.0,22808.0,2147.0 +4724505,4724506,18.0,1944212,1,1,17,1,1.0,45.0,1.0,15.0,4.0,2212P,7.0,22765.0,2130.0 +4724506,4724507,18.0,1944213,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4724511,4724512,18.0,1944218,1,2,17,1,6.0,6.0,3.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724515,4724516,18.0,1944222,1,1,17,1,6.0,4.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4724519,4724520,18.0,1944226,1,2,17,1,1.0,28.0,1.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4724521,4724522,18.0,1944228,1,1,17,2,2.0,18.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4724522,4724523,18.0,1944229,1,1,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4724523,4724524,18.0,1944230,1,1,17,1,6.0,30.0,3.0,15.0,4.0,51111,8.0,22808.0,2147.0 +4724526,4724527,18.0,1944233,1,1,17,1,1.0,16.0,1.0,15.0,4.0,722Z,16.0,22761.0,2128.0 +4724528,4724529,18.0,1944235,1,1,17,1,6.0,28.0,5.0,14.0,4.0,44511,5.0,22808.0,2147.0 +4724530,4724531,18.0,1944237,1,2,17,1,6.0,20.0,6.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4724533,4724534,18.0,1944240,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4724545,4724546,18.0,1944252,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4724546,4724547,18.0,1944253,1,2,17,4,2.0,12.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724550,4724551,18.0,1944257,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724551,4724552,18.0,1944258,1,1,17,1,6.0,45.0,6.0,15.0,4.0,52M2,9.0,22806.0,2146.0 +4724558,4724559,18.0,1944265,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4724568,4724569,18.0,1944275,1,2,17,1,1.0,11.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724569,4724570,18.0,1944276,1,2,17,1,1.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4724570,4724571,18.0,1944277,1,1,17,1,1.0,10.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4724571,4724572,18.0,1944278,1,2,17,4,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724575,4724576,18.0,1944282,1,2,17,1,6.0,8.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4724578,4724579,18.0,1944285,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724582,4724583,18.0,1944289,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4724587,4724588,18.0,1944294,1,2,17,1,6.0,40.0,5.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4724590,4724591,18.0,1944297,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4724591,4724592,18.0,1944298,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4724592,4724593,18.0,1944299,1,2,17,1,6.0,8.0,6.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4724597,4724598,18.0,1944304,1,1,17,3,1.0,65.0,4.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +4724600,4724601,18.0,1944307,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22814.0,2150.0 +4724601,4724602,18.0,1944308,1,2,17,1,6.0,40.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4724605,4724606,18.0,1944312,1,2,17,1,6.0,40.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724607,4724608,18.0,1944314,1,1,17,2,1.0,24.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724609,4724610,18.0,1944316,1,2,17,2,3.0,-9.0,-9.0,-9.0,4.0,4244,4.0,22765.0,2130.0 +4724611,4724612,18.0,1944318,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4724616,4724617,18.0,1944323,1,2,17,1,6.0,15.0,6.0,15.0,4.0,712,16.0,22808.0,2147.0 +4724620,4724621,18.0,1944327,1,1,17,4,6.0,8.0,6.0,15.0,4.0,2211P,7.0,22808.0,2147.0 +4724628,4724629,18.0,1944335,1,1,17,1,6.0,10.0,6.0,15.0,4.0,3256,3.0,22813.0,2150.0 +4724631,4724632,18.0,1944338,1,2,17,1,6.0,30.0,5.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4724635,4724636,18.0,1944342,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4511M,5.0,22758.0,2127.0 +4724637,4724638,18.0,1944344,1,2,17,1,6.0,25.0,5.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4724641,4724642,18.0,1944348,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4724643,4724644,18.0,1944350,1,2,17,2,6.0,37.0,5.0,15.0,4.0,4481,5.0,22765.0,2130.0 +4724645,4724646,18.0,1944352,1,2,17,2,3.0,-9.0,-9.0,-9.0,4.0,999920,-9.0,22765.0,2130.0 +4724653,4724654,18.0,1944360,1,1,17,4,6.0,3.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4724654,4724655,18.0,1944361,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4724656,4724657,18.0,1944363,1,1,17,4,1.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724657,4724658,18.0,1944364,1,2,17,4,1.0,20.0,1.0,15.0,4.0,45221,5.0,22765.0,2130.0 +4724664,4724665,18.0,1944371,1,2,17,2,6.0,15.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724669,4724670,18.0,1944376,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724673,4724674,18.0,1944380,1,2,17,1,6.0,12.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724675,4724676,18.0,1944382,1,2,17,2,6.0,15.0,6.0,15.0,4.0,722Z,16.0,22760.0,2128.0 +4724677,4724678,18.0,1944384,1,1,17,1,6.0,20.0,5.0,15.0,4.0,531M,9.0,22808.0,2147.0 +4724682,4724683,18.0,1944389,1,2,17,1,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724691,4724692,18.0,1944398,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724700,4724701,18.0,1944407,1,2,17,4,6.0,5.0,6.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4724708,4724709,18.0,1944415,1,2,17,1,6.0,25.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4724709,4724710,18.0,1944416,1,1,17,1,6.0,36.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724715,4724716,18.0,1944422,1,1,17,3,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4724716,4724717,18.0,1944423,1,2,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724717,4724718,18.0,1944424,1,2,17,1,6.0,40.0,5.0,16.0,4.0,5411,10.0,22808.0,2147.0 +4724719,4724720,18.0,1944426,1,1,17,1,1.0,25.0,3.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4724723,4724724,18.0,1944430,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4724728,4724729,18.0,1944435,1,2,17,1,6.0,20.0,6.0,15.0,4.0,492,6.0,22808.0,2147.0 +4724734,4724735,18.0,1944441,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724735,4724736,18.0,1944442,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4724736,4724737,18.0,1944443,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724739,4724740,18.0,1944446,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4724743,4724744,18.0,1944450,1,1,17,1,6.0,10.0,6.0,15.0,4.0,3256,3.0,22765.0,2130.0 +4724747,4724748,18.0,1944454,1,1,17,1,1.0,5.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724748,4724749,18.0,1944455,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724751,4724752,18.0,1944458,1,2,17,1,1.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724755,4724756,18.0,1944462,1,1,17,1,6.0,25.0,6.0,15.0,4.0,4441Z,5.0,22815.0,2150.0 +4724757,4724758,18.0,1944464,1,2,17,1,6.0,38.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4724763,4724764,18.0,1944470,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5419Z,10.0,22808.0,2147.0 +4724766,4724767,18.0,1944473,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,54194,10.0,22808.0,2147.0 +4724767,4724768,18.0,1944474,1,1,17,1,3.0,28.0,6.0,15.0,4.0,5616,12.0,22808.0,2147.0 +4724768,4724769,18.0,1944475,1,2,17,1,1.0,50.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4724775,4724776,18.0,1944482,1,2,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22808.0,2147.0 +4724777,4724778,18.0,1944484,1,1,17,1,6.0,28.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4724781,4724782,18.0,1944488,1,2,17,1,3.0,1.0,6.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4724782,4724783,18.0,1944489,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724785,4724786,18.0,1944492,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5419Z,10.0,22808.0,2147.0 +4724786,4724787,18.0,1944493,1,2,17,2,6.0,18.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724796,4724797,18.0,1944503,1,1,17,1,6.0,16.0,2.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4724801,4724802,18.0,1944508,1,2,17,1,1.0,50.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724802,4724803,18.0,1944509,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724803,4724804,18.0,1944510,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22806.0,2146.0 +4724807,4724808,18.0,1944514,1,1,17,1,3.0,38.0,5.0,15.0,4.0,447,5.0,22808.0,2147.0 +4724812,4724813,18.0,1944519,1,2,17,1,1.0,3.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724814,4724815,18.0,1944521,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724817,4724818,18.0,1944524,1,1,17,1,6.0,30.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4724819,4724820,18.0,1944526,1,2,17,1,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724824,4724825,18.0,1944531,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724827,4724828,18.0,1944534,1,2,17,1,6.0,24.0,6.0,15.0,4.0,53M,9.0,22808.0,2147.0 +4724828,4724829,18.0,1944535,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4724830,4724831,18.0,1944537,1,2,17,2,1.0,4.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724835,4724836,18.0,1944542,1,2,17,1,6.0,13.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724839,4724840,18.0,1944546,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22810.0,2148.0 +4724840,4724841,18.0,1944547,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4724841,4724842,18.0,1944548,1,2,17,1,1.0,18.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724843,4724844,18.0,1944550,1,2,17,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4724844,4724845,18.0,1944551,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4724848,4724849,18.0,1944555,1,2,17,1,1.0,10.0,1.0,15.0,4.0,622M,15.0,22815.0,2150.0 +4724853,4724854,18.0,1944560,1,2,17,1,6.0,60.0,6.0,15.0,4.0,45221,5.0,22813.0,2150.0 +4724855,4724856,18.0,1944562,1,1,17,1,6.0,20.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4724856,4724857,18.0,1944563,1,2,17,1,6.0,40.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4724862,4724863,18.0,1944569,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4724863,4724864,18.0,1944570,1,2,17,2,2.0,25.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724864,4724865,18.0,1944571,1,1,17,1,6.0,40.0,3.0,15.0,4.0,23,2.0,22765.0,2130.0 +4724868,4724869,18.0,1944575,1,1,17,1,6.0,40.0,5.0,16.0,4.0,33641M1,3.0,22808.0,2147.0 +4724870,4724871,18.0,1944577,1,1,17,2,2.0,15.0,1.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4724876,4724877,18.0,1944583,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22808.0,2147.0 +4724878,4724879,18.0,1944585,1,2,17,1,6.0,40.0,5.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4724883,4724884,18.0,1944590,1,1,17,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724889,4724890,18.0,1944596,1,1,17,1,1.0,18.0,6.0,15.0,4.0,813M,17.0,22765.0,2130.0 +4724890,4724891,18.0,1944597,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724891,4724892,18.0,1944598,1,1,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724894,4724895,18.0,1944601,1,2,17,1,1.0,12.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724903,4724904,18.0,1944610,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4724904,4724905,18.0,1944611,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22765.0,2130.0 +4724905,4724906,18.0,1944612,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4724907,4724908,18.0,1944614,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724909,4724910,18.0,1944616,1,2,17,1,6.0,6.0,3.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4724911,4724912,18.0,1944618,1,1,17,1,6.0,24.0,6.0,15.0,4.0,44512,5.0,22806.0,2146.0 +4724912,4724913,18.0,1944619,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4724913,4724914,18.0,1944620,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4724914,4724915,18.0,1944621,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724915,4724916,18.0,1944622,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4724917,4724918,18.0,1944624,1,2,17,1,6.0,8.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4724920,4724921,18.0,1944627,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4724928,4724929,18.0,1944635,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +4724933,4724934,18.0,1944640,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22814.0,2150.0 +4724936,4724937,18.0,1944643,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724941,4724942,18.0,1944648,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724943,4724944,18.0,1944650,1,1,17,1,1.0,14.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724946,4724947,18.0,1944653,1,2,17,1,6.0,25.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4724947,4724948,18.0,1944654,1,2,17,3,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4724950,4724951,18.0,1944657,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22815.0,2150.0 +4724954,4724955,18.0,1944661,1,1,17,2,3.0,24.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724955,4724956,18.0,1944662,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4724956,4724957,18.0,1944663,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4724963,4724964,18.0,1944670,1,1,17,1,6.0,40.0,6.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4724964,4724965,18.0,1944671,1,2,17,1,6.0,15.0,6.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4724966,4724967,18.0,1944673,1,2,17,1,1.0,30.0,6.0,15.0,4.0,45121,5.0,22813.0,2150.0 +4724968,4724969,18.0,1944675,1,1,17,1,6.0,32.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4724970,4724971,18.0,1944677,1,1,17,2,6.0,25.0,6.0,15.0,4.0,713Z,16.0,22760.0,2128.0 +4724971,4724972,18.0,1944678,1,1,17,2,6.0,25.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4724976,4724977,18.0,1944683,1,2,17,4,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724981,4724982,18.0,1944688,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4724983,4724984,18.0,1944690,1,2,17,1,6.0,37.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4724985,4724986,18.0,1944692,1,2,17,2,6.0,16.0,6.0,13.0,4.0,813M,17.0,22808.0,2147.0 +4724986,4724987,18.0,1944693,1,1,17,1,1.0,9.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4724993,4724994,18.0,1944700,1,1,17,1,3.0,40.0,6.0,15.0,4.0,5413,10.0,22814.0,2150.0 +4724994,4724995,18.0,1944701,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4724996,4724997,18.0,1944703,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22814.0,2150.0 +4725006,4725007,18.0,1944713,1,1,17,1,6.0,50.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4725008,4725009,18.0,1944715,1,2,17,2,6.0,4.0,6.0,15.0,4.0,814,17.0,22814.0,2150.0 +4725009,4725010,18.0,1944716,1,2,17,2,6.0,40.0,5.0,-9.0,4.0,5616,12.0,22808.0,2147.0 +4725010,4725011,18.0,1944717,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725015,4725016,18.0,1944722,1,2,17,1,1.0,19.0,4.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4725016,4725017,18.0,1944723,1,2,17,4,2.0,6.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725017,4725018,18.0,1944724,1,1,17,1,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22808.0,2147.0 +4725027,4725028,18.0,1944734,1,2,17,1,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725036,4725037,18.0,1944743,1,1,17,1,6.0,-9.0,-9.0,15.0,2.0,928P,18.0,22808.0,2147.0 +4725039,4725040,18.0,1944746,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725040,4725041,18.0,1944747,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22810.0,2148.0 +4725045,4725046,18.0,1944752,1,2,17,1,6.0,15.0,6.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4725047,4725048,18.0,1944754,1,2,17,3,1.0,5.0,5.0,15.0,4.0,813M,17.0,22806.0,2146.0 +4725048,4725049,18.0,1944755,1,2,17,1,1.0,15.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4725049,4725050,18.0,1944756,1,2,17,1,1.0,12.0,1.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4725050,4725051,18.0,1944757,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4725051,4725052,18.0,1944758,1,2,17,4,6.0,30.0,1.0,15.0,4.0,54194,10.0,22806.0,2146.0 +4725055,4725056,18.0,1944762,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4725057,4725058,18.0,1944764,1,1,17,1,1.0,24.0,3.0,15.0,4.0,5121,8.0,22808.0,2147.0 +4725062,4725063,18.0,1944769,1,2,17,1,6.0,60.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725065,4725066,18.0,1944772,1,2,17,1,1.0,9.0,4.0,15.0,4.0,6214,14.0,22806.0,2146.0 +4725066,4725067,18.0,1944773,1,2,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725068,4725069,18.0,1944775,1,2,17,1,1.0,20.0,4.0,15.0,4.0,7111,16.0,22808.0,2147.0 +4725072,4725073,18.0,1944779,1,1,17,1,6.0,12.0,5.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4725074,4725075,18.0,1944781,1,1,17,4,6.0,-9.0,-9.0,13.0,4.0,-9,-9.0,22810.0,2148.0 +4725075,4725076,18.0,1944782,1,1,17,1,6.0,40.0,4.0,15.0,4.0,4413,5.0,22808.0,2147.0 +4725076,4725077,18.0,1944783,1,1,17,1,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4725077,4725078,18.0,1944784,1,1,17,1,6.0,-9.0,-9.0,15.0,2.0,928P,18.0,22808.0,2147.0 +4725079,4725080,18.0,1944786,1,1,17,1,6.0,36.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725080,4725081,18.0,1944787,1,1,17,1,6.0,30.0,3.0,15.0,4.0,51111,8.0,22808.0,2147.0 +4725082,4725083,18.0,1944789,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4725083,4725084,18.0,1944790,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4725086,4725087,18.0,1944793,1,1,17,1,6.0,32.0,6.0,15.0,4.0,712,16.0,22808.0,2147.0 +4725088,4725089,18.0,1944795,1,2,17,1,6.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4725089,4725090,18.0,1944796,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4725090,4725091,18.0,1944797,1,2,17,1,6.0,40.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725091,4725092,18.0,1944798,1,1,17,3,6.0,45.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725093,4725094,18.0,1944800,1,2,17,1,6.0,20.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4725110,4725111,18.0,1944817,1,1,17,1,6.0,50.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4725111,4725112,18.0,1944818,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4725118,4725119,18.0,1944825,1,1,17,1,3.0,50.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4725125,4725126,18.0,1944832,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22806.0,2146.0 +4725127,4725128,18.0,1944834,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725128,4725129,18.0,1944835,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4725129,4725130,18.0,1944836,1,1,17,1,1.0,45.0,1.0,15.0,4.0,2212P,7.0,22808.0,2147.0 +4725130,4725131,18.0,1944837,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4725135,4725136,18.0,1944842,1,1,17,3,1.0,20.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725136,4725137,18.0,1944843,1,1,17,1,6.0,45.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4725137,4725138,19.0,1944844,1,2,17,1,6.0,26.0,5.0,15.0,4.0,814,17.0,22808.0,2147.0 +4725140,4725141,19.0,1944847,1,2,17,1,6.0,5.0,5.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4725141,4725142,19.0,1944848,1,2,17,1,1.0,9.0,4.0,15.0,4.0,6214,14.0,22761.0,2128.0 +4725143,4725144,19.0,1944850,1,1,17,1,6.0,40.0,6.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4725146,4725147,19.0,1944853,1,2,17,1,1.0,15.0,6.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4725150,4725151,19.0,1944857,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,2211P,7.0,22765.0,2130.0 +4725155,4725156,19.0,1944862,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5417,10.0,22806.0,2146.0 +4725156,4725157,19.0,1944863,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725160,4725161,19.0,1944867,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725161,4725162,19.0,1944868,1,1,17,1,6.0,23.0,5.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4725162,4725163,19.0,1944869,1,1,17,1,6.0,50.0,5.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4725163,4725164,19.0,1944870,1,1,17,1,1.0,4.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4725165,4725166,19.0,1944872,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725170,4725171,19.0,1944877,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22765.0,2130.0 +4725172,4725173,19.0,1944879,1,2,17,1,6.0,15.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725173,4725174,19.0,1944880,1,2,17,1,6.0,24.0,4.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +4725178,4725179,19.0,1944885,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725180,4725181,19.0,1944887,1,2,17,1,3.0,25.0,6.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4725182,4725183,19.0,1944889,1,2,17,1,1.0,30.0,1.0,15.0,4.0,5415,10.0,22808.0,2147.0 +4725183,4725184,19.0,1944890,1,2,17,1,6.0,36.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4725185,4725186,19.0,1944892,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4725186,4725187,19.0,1944893,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4725187,4725188,19.0,1944894,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4725189,4725190,19.0,1944896,1,2,17,1,6.0,9.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4725191,4725192,19.0,1944898,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4725193,4725194,19.0,1944900,1,1,17,1,6.0,20.0,6.0,15.0,4.0,336M,3.0,22810.0,2148.0 +4725206,4725207,19.0,1944913,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725208,4725209,19.0,1944915,1,1,17,1,1.0,24.0,3.0,15.0,4.0,5121,8.0,22765.0,2130.0 +4725210,4725211,19.0,1944917,1,2,17,1,1.0,15.0,4.0,15.0,4.0,44611,5.0,22765.0,2130.0 +4725211,4725212,19.0,1944918,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4725219,4725220,19.0,1944926,1,2,17,1,1.0,36.0,1.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4725223,4725224,19.0,1944930,1,2,17,1,1.0,50.0,6.0,15.0,4.0,5415,10.0,22808.0,2147.0 +4725228,4725229,19.0,1944935,1,2,17,1,1.0,10.0,5.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4725230,4725231,19.0,1944937,1,1,17,1,6.0,10.0,6.0,15.0,4.0,56173,12.0,22806.0,2146.0 +4725233,4725234,19.0,1944940,1,2,17,1,1.0,30.0,5.0,15.0,4.0,55,11.0,22806.0,2146.0 +4725235,4725236,19.0,1944942,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725237,4725238,19.0,1944944,1,1,17,1,1.0,4.0,5.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4725240,4725241,19.0,1944947,1,2,17,1,6.0,40.0,5.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4725241,4725242,19.0,1944948,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4725242,4725243,19.0,1944949,1,1,17,1,6.0,25.0,6.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4725246,4725247,19.0,1944953,1,2,17,1,1.0,18.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725249,4725250,19.0,1944956,1,2,17,1,6.0,4.0,5.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4725254,4725255,19.0,1944961,1,1,17,1,6.0,39.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725256,4725257,19.0,1944963,1,2,17,1,6.0,28.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4725259,4725260,19.0,1944966,1,2,17,1,1.0,40.0,2.0,-9.0,4.0,5412,10.0,22808.0,2147.0 +4725260,4725261,19.0,1944967,1,2,17,1,1.0,18.0,1.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4725266,4725267,19.0,1944973,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725267,4725268,19.0,1944974,1,1,17,1,1.0,20.0,3.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4725268,4725269,19.0,1944975,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4725270,4725271,19.0,1944977,1,2,17,1,1.0,50.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4725277,4725278,19.0,1944984,1,2,17,1,6.0,6.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725278,4725279,19.0,1944985,1,1,17,1,6.0,40.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725282,4725283,19.0,1944989,1,1,17,1,1.0,25.0,3.0,15.0,4.0,336M,3.0,22814.0,2150.0 +4725284,4725285,19.0,1944991,1,1,17,1,6.0,20.0,4.0,15.0,4.0,4244,4.0,22808.0,2147.0 +4725286,4725287,19.0,1944993,1,1,17,1,1.0,23.0,5.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4725289,4725290,19.0,1944996,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5413,10.0,22806.0,2146.0 +4725292,4725293,19.0,1944999,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725293,4725294,19.0,1945000,1,2,17,1,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725295,4725296,19.0,1945002,1,1,17,1,2.0,20.0,4.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4725303,4725304,19.0,1945010,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4725306,4725307,19.0,1945013,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725308,4725309,19.0,1945015,1,2,17,1,6.0,16.0,2.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725311,4725312,19.0,1945018,1,2,17,1,6.0,40.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4725315,4725316,19.0,1945022,1,1,17,1,6.0,38.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4725319,4725320,19.0,1945026,1,2,17,1,6.0,23.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4725322,4725323,19.0,1945029,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4725326,4725327,19.0,1945033,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4725333,4725334,19.0,1945040,1,2,17,1,6.0,23.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4725334,4725335,19.0,1945041,1,2,17,1,6.0,20.0,4.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4725336,4725337,19.0,1945043,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725340,4725341,19.0,1945047,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725343,4725344,19.0,1945050,1,2,17,1,1.0,7.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725349,4725350,19.0,1945056,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4725350,4725351,19.0,1945057,1,1,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725354,4725355,19.0,1945061,1,2,17,1,6.0,25.0,5.0,15.0,4.0,44511,5.0,22806.0,2146.0 +4725366,4725367,19.0,1945073,1,2,17,1,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725373,4725374,19.0,1945080,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4725374,4725375,19.0,1945081,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4725376,4725377,19.0,1945083,1,1,17,1,6.0,40.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4725377,4725378,19.0,1945084,1,2,17,1,6.0,26.0,5.0,15.0,4.0,814,17.0,22808.0,2147.0 +4725378,4725379,19.0,1945085,1,2,17,1,6.0,9.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4725382,4725383,19.0,1945089,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4725390,4725391,19.0,1945097,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725395,4725396,19.0,1945102,1,2,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4725396,4725397,19.0,1945103,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22818.0,2150.0 +4725397,4725398,19.0,1945104,1,2,17,1,6.0,25.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725400,4725401,19.0,1945107,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725402,4725403,19.0,1945109,1,1,17,1,1.0,24.0,3.0,15.0,4.0,5121,8.0,22806.0,2146.0 +4725410,4725411,19.0,1945117,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725414,4725415,19.0,1945121,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725416,4725417,19.0,1945123,1,2,17,1,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725418,4725419,19.0,1945125,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4725419,4725420,19.0,1945126,1,2,17,1,6.0,25.0,5.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4725422,4725423,19.0,1945129,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22815.0,2150.0 +4725428,4725429,19.0,1945135,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4725429,4725430,19.0,1945136,1,1,17,1,1.0,35.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4725434,4725435,19.0,1945141,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4725436,4725437,19.0,1945143,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,813M,17.0,22758.0,2127.0 +4725439,4725440,19.0,1945146,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4725440,4725441,19.0,1945147,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22765.0,2130.0 +4725442,4725443,19.0,1945149,1,2,17,1,1.0,18.0,1.0,15.0,4.0,721M,16.0,22815.0,2150.0 +4725452,4725453,19.0,1945159,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725457,4725458,19.0,1945164,1,1,17,1,1.0,5.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725459,4725460,19.0,1945166,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22761.0,2128.0 +4725462,4725463,19.0,1945169,1,2,17,1,1.0,5.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4725464,4725465,19.0,1945171,1,1,17,1,3.0,40.0,6.0,15.0,4.0,5617Z,12.0,22806.0,2146.0 +4725468,4725469,19.0,1945175,1,1,17,1,6.0,22.0,6.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4725469,4725470,19.0,1945176,1,2,17,1,1.0,15.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725472,4725473,19.0,1945179,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725476,4725477,19.0,1945183,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4725482,4725483,19.0,1945189,1,1,17,1,6.0,14.0,3.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4725488,4725489,19.0,1945195,1,1,17,1,1.0,14.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4725492,4725493,19.0,1945199,1,2,17,1,3.0,25.0,5.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4725493,4725494,19.0,1945200,1,1,17,1,6.0,42.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4725495,4725496,19.0,1945202,1,2,17,1,6.0,30.0,6.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4725497,4725498,19.0,1945204,1,2,17,1,1.0,12.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725501,4725502,19.0,1945208,1,1,17,1,6.0,50.0,5.0,16.0,4.0,9211MP,18.0,22765.0,2130.0 +4725502,4725503,19.0,1945209,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4725503,4725504,19.0,1945210,1,1,17,1,6.0,6.0,5.0,15.0,4.0,4442,5.0,22765.0,2130.0 +4725504,4725505,19.0,1945211,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725505,4725506,19.0,1945212,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725506,4725507,19.0,1945213,1,1,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725509,4725510,19.0,1945216,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4725514,4725515,19.0,1945221,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5419Z,10.0,22808.0,2147.0 +4725519,4725520,19.0,1945226,1,1,17,1,3.0,20.0,6.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4725525,4725526,19.0,1945232,1,2,17,1,3.0,15.0,4.0,15.0,4.0,814,17.0,22808.0,2147.0 +4725526,4725527,19.0,1945233,1,2,17,1,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4725533,4725534,19.0,1945240,1,1,17,1,6.0,40.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4725534,4725535,19.0,1945241,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4725536,4725537,19.0,1945243,1,2,17,1,6.0,38.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725537,4725538,19.0,1945244,1,2,17,1,1.0,11.0,5.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4725539,4725540,19.0,1945246,1,1,17,1,1.0,25.0,4.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4725543,4725544,19.0,1945250,1,1,17,1,6.0,6.0,5.0,15.0,4.0,4442,5.0,22765.0,2130.0 +4725544,4725545,19.0,1945251,1,1,17,1,6.0,8.0,6.0,15.0,4.0,5412,10.0,22808.0,2147.0 +4725545,4725546,19.0,1945252,1,1,17,1,6.0,10.0,4.0,15.0,4.0,44413,5.0,22806.0,2146.0 +4725546,4725547,19.0,1945253,1,2,17,1,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4725548,4725549,19.0,1945255,1,1,17,1,1.0,10.0,1.0,15.0,4.0,5617Z,12.0,22806.0,2146.0 +4725549,4725550,19.0,1945256,1,2,17,1,6.0,40.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4725551,4725552,19.0,1945258,1,1,17,1,1.0,6.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725552,4725553,19.0,1945259,1,2,17,1,1.0,30.0,1.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4725553,4725554,19.0,1945260,1,2,17,1,3.0,1.0,6.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4725554,4725555,19.0,1945261,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725564,4725565,19.0,1945271,1,2,17,1,6.0,32.0,6.0,15.0,4.0,52M2,9.0,22758.0,2127.0 +4725565,4725566,19.0,1945272,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4725567,4725568,19.0,1945274,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22765.0,2130.0 +4725579,4725580,19.0,1945286,1,1,17,1,1.0,5.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4725580,4725581,19.0,1945287,1,1,17,1,1.0,5.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725583,4725584,19.0,1945290,1,1,17,1,6.0,12.0,6.0,15.0,4.0,5121,8.0,22808.0,2147.0 +4725585,4725586,19.0,1945292,1,1,17,1,6.0,20.0,4.0,15.0,4.0,4244,4.0,22765.0,2130.0 +4725586,4725587,19.0,1945293,1,2,17,1,6.0,10.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725587,4725588,19.0,1945294,1,2,17,1,6.0,16.0,2.0,15.0,4.0,722Z,16.0,22813.0,2150.0 +4725589,4725590,19.0,1945296,1,1,17,1,6.0,40.0,5.0,15.0,4.0,443142,5.0,22808.0,2147.0 +4725590,4725591,19.0,1945297,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22808.0,2147.0 +4725594,4725595,19.0,1945301,1,2,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4725604,4725605,19.0,1945311,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,23,2.0,22808.0,2147.0 +4725608,4725609,19.0,1945315,1,1,17,1,3.0,20.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725611,4725612,19.0,1945318,1,2,17,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725612,4725613,19.0,1945319,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4725619,4725620,19.0,1945326,1,1,17,1,6.0,30.0,5.0,15.0,4.0,5614,12.0,22808.0,2147.0 +4725620,4725621,19.0,1945327,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4725621,4725622,19.0,1945328,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725622,4725623,19.0,1945329,1,2,17,1,6.0,20.0,6.0,15.0,4.0,492,6.0,22815.0,2150.0 +4725625,4725626,19.0,1945332,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725626,4725627,19.0,1945333,1,1,17,1,1.0,17.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4725628,4725629,19.0,1945335,1,1,17,1,6.0,30.0,6.0,15.0,4.0,111,1.0,22806.0,2146.0 +4725629,4725630,19.0,1945336,1,2,17,1,3.0,15.0,4.0,15.0,4.0,814,17.0,22808.0,2147.0 +4725632,4725633,19.0,1945339,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725635,4725636,19.0,1945342,1,2,17,1,6.0,20.0,5.0,15.0,4.0,5112,8.0,22808.0,2147.0 +4725636,4725637,19.0,1945343,1,1,17,1,1.0,18.0,6.0,15.0,4.0,813M,17.0,22806.0,2146.0 +4725644,4725645,19.0,1945351,1,1,17,1,1.0,17.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725652,4725653,19.0,1945359,1,2,17,1,1.0,16.0,5.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +4725655,4725656,19.0,1945362,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4725660,4725661,19.0,1945367,1,2,17,1,1.0,30.0,1.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4725663,4725664,19.0,1945370,1,1,17,1,1.0,20.0,5.0,15.0,4.0,515,8.0,22808.0,2147.0 +4725666,4725667,19.0,1945373,1,2,17,1,6.0,84.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4725667,4725668,19.0,1945374,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22815.0,2150.0 +4725671,4725672,19.0,1945378,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4725676,4725677,19.0,1945383,1,1,17,1,6.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725677,4725678,19.0,1945384,1,1,17,1,6.0,25.0,6.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4725678,4725679,19.0,1945385,1,2,17,1,6.0,20.0,6.0,15.0,4.0,492,6.0,22808.0,2147.0 +4725680,4725681,19.0,1945387,1,2,17,1,6.0,40.0,5.0,16.0,4.0,5411,10.0,22808.0,2147.0 +4725683,4725684,19.0,1945390,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4725690,4725691,19.0,1945397,1,2,17,1,6.0,8.0,6.0,15.0,4.0,814,17.0,22765.0,2130.0 +4725696,4725697,19.0,1945403,1,2,17,1,3.0,4.0,6.0,15.0,4.0,6244,14.0,22765.0,2130.0 +4725699,4725700,19.0,1945406,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4725701,4725702,19.0,1945408,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4725705,4725706,19.0,1945412,1,2,17,1,1.0,60.0,1.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4725709,4725710,19.0,1945416,1,2,17,1,1.0,30.0,1.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4725710,4725711,19.0,1945417,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22765.0,2130.0 +4725714,4725715,19.0,1945421,1,2,17,1,1.0,15.0,6.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4725716,4725717,19.0,1945423,1,2,17,1,1.0,30.0,1.0,15.0,4.0,5415,10.0,22765.0,2130.0 +4725719,4725720,19.0,1945426,1,2,17,1,6.0,10.0,6.0,15.0,4.0,45321,5.0,22808.0,2147.0 +4725720,4725721,19.0,1945427,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725722,4725723,19.0,1945429,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,2211P,7.0,22765.0,2130.0 +4725723,4725724,19.0,1945430,1,1,17,1,6.0,38.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4725727,4725728,19.0,1945434,1,2,17,1,6.0,72.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4725732,4725733,19.0,1945439,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725737,4725738,19.0,1945444,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725740,4725741,19.0,1945447,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4725743,4725744,19.0,1945450,1,2,17,1,1.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4725746,4725747,19.0,1945453,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4725748,4725749,19.0,1945455,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4725749,4725750,19.0,1945456,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4725752,4725753,19.0,1945459,1,1,17,1,6.0,45.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4725754,4725755,19.0,1945461,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4725755,4725756,19.0,1945462,1,1,17,1,6.0,8.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4725756,4725757,19.0,1945463,1,2,17,1,6.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4725757,4725758,19.0,1945464,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22758.0,2127.0 +4725764,4725765,19.0,1945471,1,1,17,1,1.0,25.0,4.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4725767,4725768,19.0,1945474,1,2,17,1,1.0,14.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725769,4725770,19.0,1945476,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725771,4725772,19.0,1945478,1,1,17,1,1.0,10.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4725772,4725773,19.0,1945479,1,1,17,1,6.0,20.0,6.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4725777,4725778,19.0,1945484,1,2,17,1,1.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725778,4725779,19.0,1945485,1,2,17,1,6.0,20.0,6.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4725784,4725785,19.0,1945491,1,2,17,1,1.0,16.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725786,4725787,19.0,1945493,1,2,17,1,6.0,30.0,2.0,15.0,4.0,8129,17.0,22815.0,2150.0 +4725794,4725795,19.0,1945501,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4725799,4725800,19.0,1945506,1,2,17,1,1.0,30.0,6.0,15.0,4.0,45121,5.0,22808.0,2147.0 +4725802,4725803,19.0,1945509,1,2,17,1,6.0,35.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725803,4725804,19.0,1945510,1,1,17,1,1.0,20.0,4.0,15.0,4.0,712,16.0,22808.0,2147.0 +4725804,4725805,19.0,1945511,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4725806,4725807,19.0,1945513,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725807,4725808,19.0,1945514,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725808,4725809,19.0,1945515,1,2,17,1,1.0,15.0,6.0,15.0,4.0,5313,9.0,22808.0,2147.0 +4725812,4725813,19.0,1945519,1,2,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4725813,4725814,19.0,1945520,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725815,4725816,19.0,1945522,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725817,4725818,19.0,1945524,1,2,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725818,4725819,19.0,1945525,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4725820,4725821,19.0,1945527,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725823,4725824,19.0,1945530,1,1,17,1,1.0,13.0,1.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4725824,4725825,19.0,1945531,1,2,17,1,1.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725829,4725830,19.0,1945536,1,2,17,1,1.0,7.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725835,4725836,19.0,1945542,1,2,17,1,6.0,5.0,6.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4725839,4725840,19.0,1945546,1,1,17,1,6.0,30.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4725841,4725842,19.0,1945548,1,2,17,1,6.0,20.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4725843,4725844,19.0,1945550,1,1,17,1,6.0,40.0,6.0,15.0,4.0,611M3,13.0,22760.0,2128.0 +4725847,4725848,19.0,1945554,1,1,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725851,4725852,19.0,1945558,1,1,17,1,3.0,20.0,6.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4725856,4725857,19.0,1945563,1,2,17,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4725860,4725861,19.0,1945567,1,1,17,1,2.0,20.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725861,4725862,19.0,1945568,1,2,17,1,1.0,25.0,1.0,16.0,4.0,611M1,13.0,22810.0,2148.0 +4725864,4725865,19.0,1945571,1,2,17,1,1.0,24.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725868,4725869,19.0,1945575,1,1,17,1,1.0,15.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4725872,4725873,19.0,1945579,1,2,17,1,6.0,49.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4725889,4725890,19.0,1945596,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4725893,4725894,19.0,1945600,1,2,17,1,1.0,16.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4725895,4725896,19.0,1945602,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22813.0,2150.0 +4725896,4725897,19.0,1945603,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4725898,4725899,19.0,1945605,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4725901,4725902,19.0,1945608,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4725910,4725911,19.0,1945617,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4725914,4725915,19.0,1945621,1,2,17,1,1.0,11.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725917,4725918,19.0,1945624,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4725918,4725919,19.0,1945625,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4725920,4725921,19.0,1945627,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4725926,4725927,19.0,1945633,1,1,17,1,6.0,3.0,6.0,15.0,4.0,6111,13.0,22818.0,2150.0 +4725929,4725930,19.0,1945636,1,1,17,1,6.0,30.0,5.0,15.0,4.0,4452,5.0,22806.0,2146.0 +4725930,4725931,19.0,1945637,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725931,4725932,19.0,1945638,1,2,17,1,1.0,9.0,4.0,15.0,4.0,6214,14.0,22806.0,2146.0 +4725932,4725933,19.0,1945639,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22760.0,2128.0 +4725936,4725937,19.0,1945643,1,2,17,1,1.0,7.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725937,4725938,19.0,1945644,1,1,17,1,6.0,14.0,4.0,15.0,4.0,4MS,5.0,22815.0,2150.0 +4725947,4725948,19.0,1945654,1,2,17,1,1.0,15.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4725949,4725950,19.0,1945656,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22758.0,2127.0 +4725950,4725951,19.0,1945657,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4725953,4725954,19.0,1945660,1,1,17,1,3.0,20.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4725967,4725968,19.0,1945674,1,1,17,1,6.0,25.0,6.0,15.0,4.0,4441Z,5.0,22806.0,2146.0 +4725971,4725972,19.0,1945678,1,1,17,1,1.0,15.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4725976,4725977,19.0,1945683,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4725977,4725978,19.0,1945684,1,2,17,1,6.0,35.0,6.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4725979,4725980,19.0,1945686,1,1,17,1,3.0,50.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4725990,4725991,19.0,1945697,1,2,17,1,1.0,8.0,6.0,15.0,4.0,6243,14.0,22808.0,2147.0 +4725995,4725996,19.0,1945702,1,2,17,1,1.0,15.0,3.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4725999,4726000,19.0,1945706,1,2,17,1,6.0,12.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726001,4726002,19.0,1945708,1,1,17,1,6.0,3.0,5.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4726002,4726003,19.0,1945709,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4726005,4726006,19.0,1945712,1,2,17,1,1.0,30.0,1.0,-9.0,4.0,8131,17.0,22808.0,2147.0 +4726012,4726013,19.0,1945719,1,1,17,1,1.0,40.0,1.0,15.0,4.0,484,6.0,22808.0,2147.0 +4726013,4726014,19.0,1945720,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4726018,4726019,19.0,1945725,1,1,17,1,1.0,11.0,1.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4726021,4726022,19.0,1945728,1,1,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4726025,4726026,19.0,1945732,1,2,17,1,1.0,23.0,2.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4726026,4726027,19.0,1945733,1,2,17,1,1.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726031,4726032,19.0,1945738,1,1,17,1,6.0,30.0,3.0,15.0,4.0,44511,5.0,22806.0,2146.0 +4726044,4726045,19.0,1945751,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4726045,4726046,19.0,1945752,1,1,17,1,6.0,30.0,3.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4726046,4726047,19.0,1945753,1,1,17,1,1.0,20.0,2.0,15.0,4.0,611M1,13.0,22758.0,2127.0 +4726048,4726049,19.0,1945755,1,1,17,1,6.0,35.0,6.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4726049,4726050,19.0,1945756,1,2,17,1,6.0,20.0,6.0,15.0,4.0,492,6.0,22808.0,2147.0 +4726050,4726051,19.0,1945757,1,1,17,1,6.0,20.0,6.0,15.0,4.0,5121,8.0,22808.0,2147.0 +4726055,4726056,19.0,1945762,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4726057,4726058,19.0,1945764,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4726059,4726060,19.0,1945766,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22806.0,2146.0 +4726063,4726064,19.0,1945770,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726069,4726070,19.0,1945776,1,2,17,1,1.0,15.0,6.0,15.0,4.0,722Z,16.0,22818.0,2150.0 +4726081,4726082,19.0,1945788,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4726082,4726083,19.0,1945789,1,1,17,1,1.0,20.0,4.0,15.0,4.0,4233,4.0,22808.0,2147.0 +4726084,4726085,19.0,1945791,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4726085,4726086,19.0,1945792,1,2,17,1,1.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4726089,4726090,19.0,1945796,1,2,17,1,6.0,25.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726092,4726093,19.0,1945799,1,1,17,1,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4726093,4726094,19.0,1945800,1,2,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726094,4726095,19.0,1945801,1,2,17,1,6.0,4.0,6.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4726101,4726102,19.0,1945808,1,1,17,1,1.0,5.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4726103,4726104,19.0,1945810,1,1,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4726106,4726107,19.0,1945813,1,2,17,1,1.0,30.0,1.0,-9.0,4.0,8131,17.0,22814.0,2150.0 +4726113,4726114,19.0,1945820,1,1,17,1,6.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4726118,4726119,19.0,1945825,1,1,17,1,1.0,8.0,4.0,15.0,4.0,45121,5.0,22765.0,2130.0 +4726120,4726121,19.0,1945827,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4726127,4726128,19.0,1945834,1,2,17,1,6.0,35.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4726128,4726129,19.0,1945835,1,2,17,1,6.0,24.0,6.0,15.0,4.0,4523,5.0,22765.0,2130.0 +4726129,4726130,19.0,1945836,1,1,17,1,6.0,12.0,5.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4726130,4726131,19.0,1945837,1,1,17,1,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4726131,4726132,19.0,1945838,1,1,17,1,6.0,32.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4726133,4726134,19.0,1945840,1,1,17,1,1.0,33.0,5.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4726146,4726147,19.0,1945853,1,2,17,1,1.0,5.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726149,4726150,19.0,1945856,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4726150,4726151,19.0,1945857,1,2,17,1,6.0,40.0,6.0,15.0,4.0,712,16.0,22808.0,2147.0 +4726152,4726153,19.0,1945859,1,1,17,1,6.0,30.0,5.0,15.0,4.0,5614,12.0,22806.0,2146.0 +4726156,4726157,19.0,1945863,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726159,4726160,19.0,1945866,1,1,17,1,6.0,24.0,6.0,15.0,4.0,44511,5.0,22806.0,2146.0 +4726161,4726162,19.0,1945868,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726164,4726165,19.0,1945871,1,1,17,1,1.0,8.0,1.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4726168,4726169,19.0,1945875,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4726170,4726171,19.0,1945877,1,2,17,1,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726171,4726172,19.0,1945878,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22806.0,2146.0 +4726172,4726173,19.0,1945879,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726179,4726180,19.0,1945886,1,2,17,1,3.0,4.0,6.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4726183,4726184,19.0,1945890,1,2,17,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22813.0,2150.0 +4726187,4726188,19.0,1945894,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4726190,4726191,19.0,1945897,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4726191,4726192,19.0,1945898,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726194,4726195,19.0,1945901,1,1,17,1,6.0,28.0,5.0,14.0,4.0,44511,5.0,22808.0,2147.0 +4726195,4726196,19.0,1945902,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726197,4726198,19.0,1945904,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4726198,4726199,19.0,1945905,1,2,17,1,1.0,40.0,2.0,-9.0,4.0,5412,10.0,22806.0,2146.0 +4726202,4726203,19.0,1945909,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726205,4726206,19.0,1945912,1,1,17,1,6.0,38.0,5.0,15.0,4.0,33641M1,3.0,22808.0,2147.0 +4726206,4726207,19.0,1945913,1,2,17,1,6.0,26.0,5.0,15.0,4.0,814,17.0,22765.0,2130.0 +4726210,4726211,19.0,1945917,1,1,17,1,1.0,20.0,4.0,15.0,4.0,4233,4.0,22765.0,2130.0 +4726212,4726213,19.0,1945919,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4726218,4726219,19.0,1945925,1,1,17,1,1.0,11.0,1.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4726222,4726223,19.0,1945929,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726227,4726228,19.0,1945934,1,2,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4726233,4726234,19.0,1945940,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4726234,4726235,19.0,1945941,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726236,4726237,19.0,1945943,1,1,17,1,6.0,12.0,5.0,15.0,4.0,8129,17.0,22808.0,2147.0 +4726242,4726243,19.0,1945949,1,1,17,1,1.0,13.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726244,4726245,19.0,1945951,1,2,17,1,6.0,5.0,6.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4726248,4726249,19.0,1945955,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4726251,4726252,19.0,1945958,1,2,17,1,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726253,4726254,19.0,1945960,1,2,17,1,1.0,32.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726255,4726256,19.0,1945962,1,1,17,1,6.0,6.0,5.0,15.0,4.0,4442,5.0,22808.0,2147.0 +4726260,4726261,19.0,1945967,1,2,17,1,1.0,10.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4726262,4726263,19.0,1945969,1,2,17,1,6.0,30.0,5.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4726263,4726264,19.0,1945970,1,1,17,1,6.0,20.0,6.0,15.0,4.0,336M,3.0,22810.0,2148.0 +4726265,4726266,19.0,1945972,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4726272,4726273,19.0,1945979,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4726286,4726287,19.0,1945993,1,1,17,1,6.0,20.0,6.0,15.0,4.0,5121,8.0,22808.0,2147.0 +4726291,4726292,19.0,1945998,1,1,17,1,3.0,50.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4726293,4726294,19.0,1946000,1,2,17,1,1.0,9.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726297,4726298,19.0,1946004,1,2,17,1,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726298,4726299,19.0,1946005,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22808.0,2147.0 +4726301,4726302,19.0,1946008,1,1,17,1,6.0,2.0,6.0,16.0,4.0,5419Z,10.0,22808.0,2147.0 +4726306,4726307,19.0,1946013,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22808.0,2147.0 +4726309,4726310,19.0,1946016,1,2,17,1,3.0,25.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726310,4726311,19.0,1946017,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,813M,17.0,22808.0,2147.0 +4726315,4726316,19.0,1946022,1,2,17,1,6.0,30.0,6.0,15.0,4.0,721M,16.0,22765.0,2130.0 +4726316,4726317,19.0,1946023,1,2,17,1,1.0,15.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726317,4726318,19.0,1946024,1,2,17,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726321,4726322,19.0,1946028,1,2,17,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726323,4726324,19.0,1946030,1,2,17,1,6.0,25.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4726331,4726332,19.0,1946038,1,1,17,1,6.0,28.0,5.0,14.0,4.0,44511,5.0,22810.0,2148.0 +4726333,4726334,19.0,1946040,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4726334,4726335,19.0,1946041,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,7211,16.0,22808.0,2147.0 +4726338,4726339,19.0,1946045,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4726339,4726340,19.0,1946046,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4726341,4726342,19.0,1946048,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4726343,4726344,19.0,1946050,1,2,17,1,1.0,3.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726344,4726345,19.0,1946051,1,1,17,1,6.0,38.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726346,4726347,19.0,1946053,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4726347,4726348,19.0,1946054,1,2,17,1,6.0,23.0,6.0,15.0,3.0,45322,5.0,22808.0,2147.0 +4726349,4726350,19.0,1946056,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4726355,4726356,19.0,1946062,1,2,17,1,1.0,5.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726356,4726357,19.0,1946063,1,1,17,1,3.0,3.0,6.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4726357,4726358,19.0,1946064,1,2,17,1,6.0,3.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4726358,4726359,19.0,1946065,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4726360,4726361,19.0,1946067,1,1,17,1,6.0,40.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4726372,4726373,19.0,1946079,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726375,4726376,19.0,1946082,1,1,17,1,6.0,3.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4726380,4726381,19.0,1946087,1,2,17,1,6.0,23.0,6.0,15.0,3.0,45322,5.0,22808.0,2147.0 +4726384,4726385,19.0,1946091,1,2,17,1,1.0,14.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726385,4726386,19.0,1946092,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726403,4726404,19.0,1946110,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726404,4726405,19.0,1946111,1,1,17,1,6.0,40.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4726409,4726410,19.0,1946116,1,2,17,1,6.0,55.0,5.0,15.0,4.0,4412,5.0,22808.0,2147.0 +4726410,4726411,19.0,1946117,1,2,17,1,1.0,4.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726414,4726415,19.0,1946121,1,1,17,1,6.0,20.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4726415,4726416,19.0,1946122,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22806.0,2146.0 +4726416,4726417,19.0,1946123,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4726422,4726423,19.0,1946129,1,1,17,1,1.0,25.0,3.0,15.0,4.0,336M,3.0,22765.0,2130.0 +4726426,4726427,19.0,1946133,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726427,4726428,19.0,1946134,1,2,17,1,6.0,32.0,6.0,15.0,4.0,52M2,9.0,22815.0,2150.0 +4726428,4726429,19.0,1946135,1,2,17,1,6.0,30.0,2.0,15.0,4.0,8129,17.0,22808.0,2147.0 +4726429,4726430,19.0,1946136,1,2,17,1,6.0,15.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4726431,4726432,19.0,1946138,1,2,17,1,1.0,20.0,1.0,15.0,4.0,6214,14.0,22806.0,2146.0 +4726436,4726437,19.0,1946143,1,2,17,1,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726440,4726441,19.0,1946147,1,1,17,1,6.0,50.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4726445,4726446,19.0,1946152,1,2,17,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726449,4726450,19.0,1946156,1,1,17,1,6.0,40.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4726451,4726452,19.0,1946158,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4511M,5.0,22806.0,2146.0 +4726452,4726453,19.0,1946159,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4726453,4726454,19.0,1946160,1,2,17,1,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726454,4726455,19.0,1946161,1,1,17,1,6.0,15.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726456,4726457,19.0,1946163,1,2,17,1,1.0,15.0,6.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +4726457,4726458,19.0,1946164,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5419Z,10.0,22808.0,2147.0 +4726458,4726459,19.0,1946165,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4726459,4726460,19.0,1946166,1,1,17,2,3.0,25.0,2.0,15.0,4.0,4481,5.0,22815.0,2150.0 +4726467,4726468,19.0,1946174,1,1,17,2,1.0,35.0,3.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4726468,4726469,19.0,1946175,1,2,17,2,6.0,16.0,6.0,13.0,4.0,813M,17.0,22815.0,2150.0 +4726472,4726473,19.0,1946179,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4726478,4726479,19.0,1946185,1,2,17,2,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726491,4726492,19.0,1946198,1,2,17,2,3.0,-9.0,-9.0,13.0,4.0,999920,-9.0,22808.0,2147.0 +4726493,4726494,19.0,1946200,1,1,17,2,6.0,50.0,5.0,16.0,4.0,9211MP,18.0,22808.0,2147.0 +4726494,4726495,19.0,1946201,1,1,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22806.0,2146.0 +4726499,4726500,19.0,1946206,1,1,17,2,1.0,10.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4726500,4726501,19.0,1946207,1,2,17,2,6.0,18.0,6.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4726504,4726505,19.0,1946211,1,1,17,2,3.0,20.0,4.0,15.0,4.0,4481,5.0,22810.0,2148.0 +4726505,4726506,19.0,1946212,1,2,17,2,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22815.0,2150.0 +4726508,4726509,19.0,1946215,1,2,17,2,6.0,25.0,5.0,15.0,4.0,5617Z,12.0,22814.0,2150.0 +4726511,4726512,19.0,1946218,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22806.0,2146.0 +4726521,4726522,19.0,1946228,1,1,17,2,3.0,40.0,4.0,15.0,4.0,4523,5.0,22758.0,2127.0 +4726524,4726525,19.0,1946231,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726531,4726532,19.0,1946238,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726532,4726533,19.0,1946239,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22815.0,2150.0 +4726533,4726534,19.0,1946240,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22758.0,2127.0 +4726534,4726535,19.0,1946241,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22806.0,2146.0 +4726536,4726537,19.0,1946243,1,2,17,2,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726537,4726538,19.0,1946244,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4726540,4726541,19.0,1946247,1,2,17,2,6.0,30.0,5.0,15.0,4.0,336M,3.0,22758.0,2127.0 +4726544,4726545,19.0,1946251,1,1,17,2,3.0,25.0,2.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4726548,4726549,19.0,1946255,1,1,17,2,2.0,18.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4726555,4726556,19.0,1946262,1,2,17,2,6.0,40.0,6.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4726559,4726560,19.0,1946266,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4726560,4726561,19.0,1946267,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22808.0,2147.0 +4726564,4726565,19.0,1946271,1,1,17,4,1.0,12.0,1.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4726565,4726566,19.0,1946272,1,2,17,4,1.0,99.0,6.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4726567,4726568,19.0,1946274,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726568,4726569,19.0,1946275,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4726573,4726574,19.0,1946280,1,1,17,4,1.0,4.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726575,4726576,19.0,1946282,1,2,17,4,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4726576,4726577,19.0,1946283,1,2,17,4,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726578,4726579,19.0,1946285,1,1,17,4,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4726579,4726580,19.0,1946286,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4726582,4726583,19.0,1946289,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4726583,4726584,19.0,1946290,1,2,17,4,1.0,20.0,1.0,15.0,4.0,622M,15.0,22765.0,2130.0 +4726586,4726587,19.0,1946293,1,1,17,4,6.0,40.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4726587,4726588,19.0,1946294,1,2,17,4,6.0,10.0,5.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4726589,4726590,19.0,1946296,1,2,17,4,1.0,9.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726597,4726598,19.0,1946304,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22808.0,2147.0 +4726598,4726599,19.0,1946305,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726602,4726603,19.0,1946309,1,1,17,4,6.0,40.0,1.0,14.0,4.0,811192,17.0,22808.0,2147.0 +4726606,4726607,19.0,1946313,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7111,16.0,22808.0,2147.0 +4726607,4726608,19.0,1946314,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726610,4726611,19.0,1946317,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,814,17.0,22808.0,2147.0 +4726611,4726612,19.0,1946318,1,2,17,4,1.0,6.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726612,4726613,19.0,1946319,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22765.0,2130.0 +4726619,4726620,19.0,1946326,1,1,17,4,1.0,7.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4726621,4726622,19.0,1946328,1,2,17,4,6.0,49.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4726622,4726623,19.0,1946329,1,1,17,4,6.0,3.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4726624,4726625,19.0,1946331,1,1,17,4,1.0,14.0,2.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4726635,4726636,19.0,1946342,1,2,17,4,1.0,20.0,6.0,15.0,4.0,213,1.0,22808.0,2147.0 +4726640,4726641,19.0,1946347,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726641,4726642,19.0,1946348,1,1,17,4,6.0,25.0,4.0,15.0,4.0,5414,10.0,22806.0,2146.0 +4726644,4726645,19.0,1946351,1,2,17,4,1.0,6.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4726657,4726658,19.0,1946364,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22815.0,2150.0 +4726660,4726661,19.0,1946367,1,2,17,4,1.0,20.0,6.0,15.0,4.0,213,1.0,22808.0,2147.0 +4726664,4726665,19.0,1946371,1,1,17,4,6.0,8.0,6.0,15.0,4.0,9211MP,18.0,22765.0,2130.0 +4726670,4726671,19.0,1946377,1,2,17,4,6.0,12.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4726671,4726672,19.0,1946378,1,2,17,4,3.0,27.0,4.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +4726674,4726675,19.0,1946381,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22758.0,2127.0 +4726682,4726683,19.0,1946389,1,1,17,4,6.0,20.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4726683,4726684,19.0,1946390,1,2,17,4,1.0,20.0,1.0,15.0,4.0,45221,5.0,22808.0,2147.0 +4726684,4726685,19.0,1946391,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4726685,4726686,19.0,1946392,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22765.0,2130.0 +4726686,4726687,19.0,1946393,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22806.0,2146.0 +4726688,4726689,19.0,1946395,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726689,4726690,19.0,1946396,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4726691,4726692,19.0,1946398,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4726693,4726694,19.0,1946400,1,1,17,4,6.0,35.0,6.0,15.0,4.0,811192,17.0,22808.0,2147.0 +4726696,4726697,19.0,1946403,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4726699,4726700,19.0,1946406,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726703,4726704,19.0,1946410,1,1,17,4,6.0,35.0,6.0,15.0,4.0,811192,17.0,22808.0,2147.0 +4726704,4726705,19.0,1946411,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4726707,4726708,19.0,1946414,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22810.0,2148.0 +4726709,4726710,19.0,1946416,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4726710,4726711,19.0,1946417,1,1,17,4,1.0,20.0,4.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +4726719,4726720,19.0,1946426,1,1,17,4,6.0,40.0,6.0,15.0,4.0,23,2.0,22814.0,2150.0 +4726720,4726721,19.0,1946427,1,1,17,4,6.0,40.0,6.0,15.0,4.0,23,2.0,22765.0,2130.0 +4726722,4726723,19.0,1946429,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726742,4726743,19.0,1946449,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726746,4726747,19.0,1946453,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726763,4726764,19.0,1946470,1,1,17,4,6.0,20.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4726767,4726768,19.0,1946474,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726769,4726770,19.0,1946476,1,1,17,4,1.0,15.0,4.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4726771,4726772,19.0,1946478,1,1,17,4,6.0,3.0,6.0,15.0,4.0,6111,13.0,22813.0,2150.0 +4726773,4726774,19.0,1946480,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4726775,4726776,19.0,1946482,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22808.0,2147.0 +4726781,4726782,19.0,1946488,1,2,17,4,1.0,45.0,5.0,-9.0,4.0,7211,16.0,22808.0,2147.0 +4726789,4726790,19.0,1946496,1,1,17,4,6.0,18.0,6.0,15.0,4.0,562,12.0,22808.0,2147.0 +4726793,4726794,19.0,1946500,1,1,17,4,1.0,25.0,4.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4726795,4726796,19.0,1946502,1,1,17,4,6.0,40.0,6.0,16.0,4.0,5413,10.0,22808.0,2147.0 +4726796,4726797,19.0,1946503,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726798,4726799,19.0,1946505,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22808.0,2147.0 +4726800,4726801,19.0,1946507,1,2,17,4,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726803,4726804,19.0,1946510,1,2,17,4,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4726805,4726806,19.0,1946512,1,1,17,4,6.0,40.0,6.0,15.0,4.0,44512,5.0,22808.0,2147.0 +4726809,4726810,19.0,1946516,1,1,17,4,1.0,12.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726811,4726812,19.0,1946518,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4726816,4726817,19.0,1946523,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4726820,4726821,19.0,1946527,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4726822,4726823,19.0,1946529,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22808.0,2147.0 +4726824,4726825,19.0,1946531,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4726825,4726826,19.0,1946532,1,2,17,4,1.0,20.0,6.0,15.0,4.0,213,1.0,22808.0,2147.0 +4726831,4726832,19.0,1946538,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726833,4726834,19.0,1946540,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4726834,4726835,19.0,1946541,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726837,4726838,19.0,1946544,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4726839,4726840,19.0,1946546,1,1,17,4,6.0,18.0,6.0,15.0,4.0,562,12.0,22808.0,2147.0 +4726840,4726841,19.0,1946547,1,2,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726841,4726842,19.0,1946548,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7115,16.0,22806.0,2146.0 +4726842,4726843,19.0,1946549,1,2,17,4,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4726844,4726845,19.0,1946551,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22808.0,2147.0 +4726846,4726847,19.0,1946553,1,2,17,4,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726848,4726849,19.0,1946555,1,2,17,4,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22813.0,2150.0 +4726850,4726851,19.0,1946557,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726861,4726862,19.0,1946568,1,1,17,4,1.0,40.0,4.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4726866,4726867,19.0,1946573,1,2,17,4,6.0,40.0,6.0,15.0,4.0,5111Z,8.0,22808.0,2147.0 +4726869,4726870,19.0,1946576,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726874,4726875,19.0,1946581,1,1,17,4,6.0,20.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4726876,4726877,19.0,1946583,1,1,17,4,6.0,15.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726880,4726881,19.0,1946587,1,2,17,4,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726882,4726883,19.0,1946589,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22808.0,2147.0 +4726888,4726889,19.0,1946595,1,2,17,4,6.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726894,4726895,19.0,1946601,1,1,17,4,1.0,4.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4726897,4726898,19.0,1946604,1,1,17,4,6.0,8.0,6.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4726898,4726899,19.0,1946605,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,443142,5.0,22808.0,2147.0 +4726903,4726904,19.0,1946610,1,2,17,4,1.0,6.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726904,4726905,19.0,1946611,1,1,17,4,6.0,25.0,4.0,15.0,4.0,5414,10.0,22808.0,2147.0 +4726906,4726907,19.0,1946613,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,336M,3.0,22808.0,2147.0 +4726911,4726912,19.0,1946618,1,1,17,4,6.0,40.0,6.0,16.0,4.0,5413,10.0,22808.0,2147.0 +4726912,4726913,19.0,1946619,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4726914,4726915,19.0,1946621,1,1,17,4,6.0,8.0,6.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4726916,4726917,19.0,1946623,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22810.0,2148.0 +4726924,4726925,19.0,1946631,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726929,4726930,19.0,1946636,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22806.0,2146.0 +4726930,4726931,19.0,1946637,1,1,17,4,1.0,40.0,4.0,15.0,4.0,6211,14.0,22806.0,2146.0 +4726936,4726937,19.0,1946643,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726937,4726938,19.0,1946644,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22765.0,2130.0 +4726939,4726940,19.0,1946646,1,2,17,4,2.0,6.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726942,4726943,19.0,1946649,1,1,17,4,6.0,21.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726943,4726944,19.0,1946650,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4726945,4726946,19.0,1946652,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,334M2,3.0,22808.0,2147.0 +4726948,4726949,19.0,1946655,1,1,17,4,1.0,70.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4726952,4726953,19.0,1946659,1,2,17,4,6.0,49.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4726960,4726961,19.0,1946667,1,2,17,4,1.0,45.0,5.0,-9.0,4.0,7211,16.0,22808.0,2147.0 +4726961,4726962,19.0,1946668,1,1,17,4,6.0,5.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4726964,4726965,19.0,1946671,1,1,17,4,6.0,20.0,5.0,15.0,4.0,4232,4.0,22808.0,2147.0 +4726965,4726966,19.0,1946672,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4726966,4726967,19.0,1946673,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4726968,4726969,19.0,1946675,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4726970,4726971,19.0,1946677,1,2,17,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4726975,4726976,19.0,1946682,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4726984,4726985,19.0,1946691,1,2,17,4,6.0,30.0,1.0,15.0,4.0,54194,10.0,22765.0,2130.0 +4726987,4726988,19.0,1946694,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4726988,4726989,19.0,1946695,1,2,17,4,6.0,49.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4726989,4726990,19.0,1946696,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,336M,3.0,22765.0,2130.0 +4726997,4726998,19.0,1946704,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22806.0,2146.0 +4727000,4727001,19.0,1946707,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727001,4727002,19.0,1946708,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,334M2,3.0,22806.0,2146.0 +4727005,4727006,19.0,1946712,1,1,17,4,1.0,12.0,3.0,15.0,4.0,622M,15.0,22758.0,2127.0 +4727007,4727008,19.0,1946714,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727009,4727010,19.0,1946716,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,336M,3.0,22808.0,2147.0 +4727010,4727011,19.0,1946717,1,1,17,4,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727011,4727012,19.0,1946718,1,1,17,4,6.0,40.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4727014,4727015,19.0,1946721,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727017,4727018,19.0,1946724,1,2,17,4,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727021,4727022,19.0,1946728,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4727022,4727023,19.0,1946729,1,2,17,4,1.0,99.0,6.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4727023,4727024,19.0,1946730,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4727025,4727026,19.0,1946732,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727030,4727031,19.0,1946737,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22808.0,2147.0 +4727031,4727032,19.0,1946738,1,2,17,4,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4727033,4727034,19.0,1946740,1,1,17,4,6.0,-9.0,-9.0,13.0,4.0,-9,-9.0,22808.0,2147.0 +4727034,4727035,19.0,1946741,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7115,16.0,22765.0,2130.0 +4727037,4727038,19.0,1946744,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22810.0,2148.0 +4727040,4727041,19.0,1946747,1,2,17,4,2.0,6.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4727045,4727046,19.0,1946752,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4727048,4727049,19.0,1946755,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4727049,4727050,19.0,1946756,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727053,4727054,19.0,1946760,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,443142,5.0,22808.0,2147.0 +4727056,4727057,19.0,1946763,1,2,17,4,6.0,30.0,1.0,15.0,4.0,54194,10.0,22765.0,2130.0 +4727061,4727062,19.0,1946768,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,54194,10.0,22813.0,2150.0 +4727063,4727064,19.0,1946770,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22758.0,2127.0 +4727064,4727065,19.0,1946771,1,1,17,4,6.0,35.0,6.0,15.0,4.0,811192,17.0,22808.0,2147.0 +4727077,4727078,19.0,1946784,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727078,4727079,19.0,1946785,1,1,17,4,6.0,5.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727085,4727086,19.0,1946792,1,2,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727087,4727088,19.0,1946794,1,1,17,4,6.0,3.0,6.0,15.0,4.0,6111,13.0,22815.0,2150.0 +4727091,4727092,19.0,1946798,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727093,4727094,19.0,1946800,1,1,17,4,1.0,9.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727100,4727101,19.0,1946807,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4727104,4727105,19.0,1946811,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22806.0,2146.0 +4727107,4727108,19.0,1946814,1,2,17,4,6.0,16.0,5.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4727113,4727114,19.0,1946820,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727114,4727115,19.0,1946821,1,1,17,4,6.0,20.0,6.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4727118,4727119,19.0,1946825,1,1,17,3,1.0,20.0,1.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4727119,4727120,19.0,1946826,1,1,17,3,6.0,15.0,6.0,15.0,4.0,4411,5.0,22808.0,2147.0 +4727124,4727125,19.0,1946831,1,1,17,3,6.0,35.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727125,4727126,19.0,1946832,1,2,17,3,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4727126,4727127,19.0,1946833,1,2,17,3,6.0,6.0,3.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4727137,4727138,19.0,1946844,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,115,1.0,22808.0,2147.0 +4727141,4727142,19.0,1946848,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4727143,4727144,19.0,1946850,1,1,17,3,6.0,35.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727147,4727148,19.0,1946854,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4727154,4727155,19.0,1946861,1,2,17,3,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727155,4727156,19.0,1946862,1,2,17,3,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4727156,4727157,19.0,1946863,1,1,17,3,1.0,20.0,1.0,15.0,4.0,5313,9.0,22808.0,2147.0 +4727160,4727161,19.0,1946867,1,1,17,3,6.0,35.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727161,4727162,19.0,1946868,1,2,17,3,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22806.0,2146.0 +4727162,4727163,19.0,1946869,1,1,17,3,6.0,45.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727163,4727164,19.0,1946870,1,2,17,3,6.0,40.0,6.0,15.0,4.0,336M,3.0,22810.0,2148.0 +4727168,4727169,19.0,1946875,1,2,17,3,6.0,18.0,3.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +4727170,4727171,19.0,1946877,1,1,17,3,1.0,20.0,1.0,15.0,4.0,5313,9.0,22806.0,2146.0 +4727171,4727172,19.0,1946878,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,115,1.0,22806.0,2146.0 +4727177,4727178,19.0,1946884,1,2,17,3,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4727181,4727182,19.0,1946888,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,115,1.0,22765.0,2130.0 +4727186,4727187,19.0,1946893,1,2,17,3,1.0,30.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727191,4727192,19.0,1946898,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,115,1.0,22806.0,2146.0 +4727194,4727195,19.0,1946901,1,1,17,3,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727195,4727196,19.0,1946902,1,2,17,3,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4727206,4727207,19.0,1946913,1,2,17,3,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727209,4727210,19.0,1946916,1,2,17,3,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4727215,4727216,19.0,1946922,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4727216,4727217,19.0,1946923,1,1,17,3,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4727223,4727224,19.0,1946930,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727226,4727227,19.0,1946933,1,1,17,3,6.0,40.0,6.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4727227,4727228,19.0,1946934,1,2,17,3,6.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727231,4727232,19.0,1946938,1,1,17,3,1.0,65.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727233,4727234,19.0,1946940,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727236,4727237,19.0,1946943,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4727237,4727238,19.0,1946944,1,2,17,2,6.0,30.0,5.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4727238,4727239,19.0,1946945,1,1,17,4,3.0,40.0,5.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4727239,4727240,19.0,1946946,1,1,17,1,3.0,12.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4727243,4727244,19.0,1946950,1,2,17,1,6.0,11.0,4.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4727244,4727245,19.0,1946951,1,2,17,4,6.0,10.0,5.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4727248,4727249,19.0,1946955,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4727258,4727259,19.0,1946965,1,2,17,2,3.0,42.0,6.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4727261,4727262,19.0,1946968,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727262,4727263,19.0,1946969,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4727266,4727267,19.0,1946973,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727268,4727269,19.0,1946975,1,1,17,1,6.0,30.0,6.0,15.0,4.0,4452,5.0,22808.0,2147.0 +4727270,4727271,19.0,1946977,1,1,17,4,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4727272,4727273,19.0,1946979,1,2,17,4,6.0,8.0,5.0,16.0,4.0,5413,10.0,22765.0,2130.0 +4727275,4727276,19.0,1946982,1,2,17,3,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4727276,4727277,19.0,1946983,1,1,17,4,6.0,6.0,6.0,15.0,4.0,3113,3.0,22760.0,2128.0 +4727278,4727279,19.0,1946985,1,2,17,3,1.0,20.0,1.0,15.0,4.0,4539,5.0,22808.0,2147.0 +4727279,4727280,19.0,1946986,1,2,17,1,1.0,25.0,1.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4727281,4727282,19.0,1946988,1,1,17,1,6.0,48.0,6.0,15.0,4.0,337,3.0,22806.0,2146.0 +4727283,4727284,19.0,1946990,1,2,17,1,6.0,6.0,5.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4727291,4727292,19.0,1946998,1,2,17,1,6.0,23.0,6.0,15.0,3.0,45322,5.0,22808.0,2147.0 +4727296,4727297,19.0,1947003,1,2,17,1,1.0,15.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727303,4727304,19.0,1947010,1,2,17,3,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4727304,4727305,19.0,1947011,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4727305,4727306,19.0,1947012,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727309,4727310,19.0,1947016,1,2,17,1,1.0,8.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727311,4727312,19.0,1947018,1,2,17,1,1.0,12.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727313,4727314,19.0,1947020,1,1,17,4,6.0,3.0,6.0,15.0,4.0,6111,13.0,22758.0,2127.0 +4727316,4727317,19.0,1947023,1,2,17,1,1.0,15.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727318,4727319,19.0,1947025,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4727319,4727320,19.0,1947026,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22808.0,2147.0 +4727320,4727321,19.0,1947027,1,2,17,4,1.0,21.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4727324,4727325,19.0,1947031,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727328,4727329,19.0,1947035,1,2,17,1,1.0,32.0,4.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4727331,4727332,19.0,1947038,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22765.0,2130.0 +4727332,4727333,19.0,1947039,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,722Z,16.0,22808.0,2147.0 +4727339,4727340,19.0,1947046,1,1,17,1,1.0,24.0,3.0,15.0,4.0,5121,8.0,22760.0,2128.0 +4727342,4727343,19.0,1947049,1,2,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727343,4727344,19.0,1947050,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727345,4727346,19.0,1947052,1,2,17,2,1.0,17.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727348,4727349,19.0,1947055,1,2,17,1,6.0,35.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727349,4727350,19.0,1947056,1,2,17,3,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4727353,4727354,19.0,1947060,1,2,17,1,1.0,36.0,1.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4727354,4727355,19.0,1947061,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727355,4727356,19.0,1947062,1,1,17,4,1.0,4.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727360,4727361,19.0,1947067,1,2,17,1,6.0,44.0,5.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +4727362,4727363,19.0,1947069,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4727363,4727364,19.0,1947070,1,2,17,1,6.0,15.0,5.0,15.0,4.0,712,16.0,22765.0,2130.0 +4727384,4727385,19.0,1947091,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4727386,4727387,19.0,1947093,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727388,4727389,19.0,1947095,1,1,17,1,6.0,8.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727389,4727390,19.0,1947096,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,56173,12.0,22806.0,2146.0 +4727397,4727398,19.0,1947104,1,1,17,3,6.0,15.0,6.0,15.0,4.0,4411,5.0,22806.0,2146.0 +4727402,4727403,19.0,1947109,1,2,17,1,3.0,20.0,6.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4727404,4727405,19.0,1947111,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727410,4727411,19.0,1947117,1,1,17,1,6.0,30.0,5.0,15.0,4.0,5614,12.0,22806.0,2146.0 +4727413,4727414,19.0,1947120,1,2,17,1,1.0,12.0,4.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4727421,4727422,19.0,1947128,1,2,17,1,1.0,18.0,1.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4727424,4727425,19.0,1947131,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727425,4727426,19.0,1947132,1,2,17,1,6.0,25.0,5.0,15.0,4.0,6214,14.0,22765.0,2130.0 +4727427,4727428,19.0,1947134,1,1,17,3,1.0,20.0,1.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4727428,4727429,19.0,1947135,1,2,17,1,2.0,6.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727429,4727430,19.0,1947136,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4727437,4727438,19.0,1947144,1,2,17,1,3.0,15.0,4.0,15.0,4.0,814,17.0,22806.0,2146.0 +4727438,4727439,19.0,1947145,1,2,17,4,1.0,12.0,4.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4727443,4727444,19.0,1947150,1,1,17,1,6.0,20.0,5.0,15.0,4.0,531M,9.0,22808.0,2147.0 +4727444,4727445,19.0,1947151,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4727446,4727447,19.0,1947153,1,1,17,1,6.0,30.0,6.0,15.0,4.0,111,1.0,22765.0,2130.0 +4727447,4727448,19.0,1947154,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22806.0,2146.0 +4727450,4727451,19.0,1947157,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4727451,4727452,19.0,1947158,1,1,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727456,4727457,19.0,1947163,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,2211P,7.0,22806.0,2146.0 +4727457,4727458,19.0,1947164,1,1,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4727463,4727464,19.0,1947170,1,2,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4727467,4727468,19.0,1947174,1,2,17,2,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4727469,4727470,19.0,1947176,1,2,17,1,1.0,24.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4727470,4727471,19.0,1947177,1,1,17,1,1.0,11.0,2.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4727473,4727474,19.0,1947180,1,1,17,1,6.0,40.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4727474,4727475,19.0,1947181,1,2,17,4,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727476,4727477,19.0,1947183,1,1,17,1,6.0,38.0,6.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4727477,4727478,19.0,1947184,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4727479,4727480,19.0,1947186,1,1,17,4,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727480,4727481,19.0,1947187,1,2,17,1,1.0,8.0,2.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727486,4727487,19.0,1947193,1,1,17,4,3.0,15.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4727489,4727490,19.0,1947196,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727490,4727491,19.0,1947197,1,1,17,4,6.0,40.0,6.0,16.0,4.0,5413,10.0,22808.0,2147.0 +4727491,4727492,19.0,1947198,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +4727492,4727493,19.0,1947199,1,1,17,1,1.0,25.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727493,4727494,19.0,1947200,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22810.0,2148.0 +4727495,4727496,19.0,1947202,1,2,17,2,1.0,38.0,1.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4727497,4727498,19.0,1947204,1,2,17,1,1.0,40.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4727500,4727501,19.0,1947207,1,2,17,1,1.0,12.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727502,4727503,19.0,1947209,1,1,17,1,6.0,40.0,5.0,16.0,4.0,33641M1,3.0,22806.0,2146.0 +4727503,4727504,19.0,1947210,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727504,4727505,19.0,1947211,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4727508,4727509,19.0,1947215,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4727511,4727512,19.0,1947218,1,2,17,4,1.0,20.0,6.0,15.0,4.0,213,1.0,22806.0,2146.0 +4727516,4727517,19.0,1947223,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4727517,4727518,19.0,1947224,1,2,17,1,1.0,8.0,2.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4727518,4727519,19.0,1947225,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4727526,4727527,19.0,1947233,1,1,17,1,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22813.0,2150.0 +4727532,4727533,19.0,1947239,1,1,17,4,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4727533,4727534,19.0,1947240,1,1,17,1,6.0,8.0,6.0,15.0,4.0,722Z,16.0,22810.0,2148.0 +4727534,4727535,19.0,1947241,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4727537,4727538,19.0,1947244,1,1,17,1,1.0,16.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727538,4727539,19.0,1947245,1,1,17,3,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +4727542,4727543,19.0,1947249,1,2,17,3,1.0,35.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727549,4727550,19.0,1947256,1,1,17,1,6.0,42.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4727558,4727559,19.0,1947265,1,2,17,1,6.0,3.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4727559,4727560,19.0,1947266,1,1,17,1,3.0,28.0,6.0,15.0,4.0,5616,12.0,22806.0,2146.0 +4727560,4727561,19.0,1947267,1,1,17,1,6.0,20.0,4.0,15.0,4.0,44413,5.0,22765.0,2130.0 +4727561,4727562,19.0,1947268,1,2,17,1,6.0,40.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727562,4727563,19.0,1947269,1,1,17,1,1.0,9.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727566,4727567,19.0,1947273,1,1,17,1,1.0,13.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727573,4727574,19.0,1947280,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4727574,4727575,19.0,1947281,1,2,17,1,1.0,25.0,6.0,15.0,4.0,44611,5.0,22765.0,2130.0 +4727577,4727578,19.0,1947284,1,1,17,1,6.0,25.0,6.0,15.0,4.0,9211MP,18.0,22765.0,2130.0 +4727580,4727581,19.0,1947287,1,1,17,1,6.0,50.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4727582,4727583,19.0,1947289,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727583,4727584,19.0,1947290,1,2,17,4,6.0,49.0,4.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4727589,4727590,19.0,1947296,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4727590,4727591,19.0,1947297,1,2,17,3,6.0,28.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4727594,4727595,19.0,1947301,1,2,17,1,1.0,20.0,4.0,15.0,4.0,7111,16.0,22808.0,2147.0 +4727596,4727597,19.0,1947303,1,2,17,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4727597,4727598,19.0,1947304,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22758.0,2127.0 +4727601,4727602,19.0,1947308,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727602,4727603,19.0,1947309,1,2,17,1,1.0,15.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727604,4727605,19.0,1947311,1,2,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4727605,4727606,19.0,1947312,1,2,17,4,1.0,9.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4727611,4727612,19.0,1947318,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22808.0,2147.0 +4727612,4727613,19.0,1947319,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727614,4727615,19.0,1947321,1,1,17,1,1.0,20.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727615,4727616,19.0,1947322,1,1,17,1,6.0,30.0,6.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4727621,4727622,19.0,1947328,1,1,17,4,3.0,40.0,5.0,15.0,4.0,56173,12.0,22765.0,2130.0 +4727622,4727623,19.0,1947329,1,1,17,3,1.0,5.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727630,4727631,19.0,1947337,1,2,17,1,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727631,4727632,19.0,1947338,1,1,17,1,6.0,10.0,6.0,15.0,4.0,3256,3.0,22808.0,2147.0 +4727636,4727637,19.0,1947343,1,2,17,2,1.0,30.0,1.0,15.0,4.0,5241,9.0,22806.0,2146.0 +4727657,4727658,19.0,1947364,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4727658,4727659,19.0,1947365,1,2,17,4,6.0,20.0,4.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4727665,4727666,19.0,1947372,1,1,17,2,6.0,-9.0,-9.0,15.0,3.0,722Z,16.0,22808.0,2147.0 +4727666,4727667,19.0,1947373,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4727669,4727670,19.0,1947376,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4727672,4727673,19.0,1947379,1,2,17,1,6.0,24.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4727673,4727674,19.0,1947380,1,1,17,1,6.0,30.0,6.0,15.0,4.0,5617Z,12.0,22765.0,2130.0 +4727674,4727675,19.0,1947381,1,2,17,1,1.0,40.0,6.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4727678,4727679,19.0,1947385,1,2,17,4,6.0,12.0,4.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4727694,4727695,19.0,1947401,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4727699,4727700,19.0,1947406,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4727703,4727704,19.0,1947410,1,1,17,1,6.0,30.0,5.0,15.0,4.0,23,2.0,22815.0,2150.0 +4727708,4727709,19.0,1947415,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4727712,4727713,19.0,1947419,1,2,17,4,6.0,49.0,4.0,15.0,4.0,721M,16.0,22815.0,2150.0 +4727713,4727714,19.0,1947420,1,1,17,1,6.0,33.0,6.0,15.0,4.0,6241,14.0,22806.0,2146.0 +4727726,4727727,19.0,1947433,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22813.0,2150.0 +4727733,4727734,19.0,1947440,1,1,17,2,6.0,50.0,5.0,16.0,4.0,9211MP,18.0,22814.0,2150.0 +4727745,4727746,19.0,1947452,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727747,4727748,19.0,1947454,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22808.0,2147.0 +4727748,4727749,19.0,1947455,1,2,17,4,6.0,20.0,4.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4727751,4727752,19.0,1947458,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22758.0,2127.0 +4727754,4727755,19.0,1947461,1,1,17,1,3.0,30.0,6.0,15.0,4.0,23,2.0,22765.0,2130.0 +4727756,4727757,19.0,1947463,1,2,17,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4727759,4727760,19.0,1947466,1,2,17,1,6.0,8.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727761,4727762,19.0,1947468,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22808.0,2147.0 +4727763,4727764,19.0,1947470,1,1,17,1,6.0,30.0,3.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4727766,4727767,19.0,1947473,1,1,17,1,1.0,14.0,4.0,15.0,4.0,4511M,5.0,22806.0,2146.0 +4727771,4727772,19.0,1947478,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5417,10.0,22808.0,2147.0 +4727775,4727776,19.0,1947482,1,2,17,2,6.0,37.0,5.0,15.0,4.0,4481,5.0,22765.0,2130.0 +4727778,4727779,19.0,1947485,1,1,17,4,6.0,35.0,6.0,15.0,4.0,811192,17.0,22818.0,2150.0 +4727780,4727781,19.0,1947487,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727784,4727785,19.0,1947491,1,1,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4727786,4727787,19.0,1947493,1,2,17,1,1.0,15.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727788,4727789,19.0,1947495,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727792,4727793,19.0,1947499,1,2,17,1,1.0,16.0,1.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4727794,4727795,19.0,1947501,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4727796,4727797,19.0,1947503,1,2,17,1,1.0,14.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4727801,4727802,19.0,1947508,1,1,17,3,3.0,-9.0,-9.0,13.0,4.0,999920,-9.0,22808.0,2147.0 +4727803,4727804,19.0,1947510,1,2,17,1,6.0,60.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4727808,4727809,19.0,1947515,1,2,17,1,1.0,24.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727809,4727810,19.0,1947516,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4727814,4727815,19.0,1947521,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22808.0,2147.0 +4727820,4727821,19.0,1947527,1,2,17,3,1.0,9.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727821,4727822,19.0,1947528,1,1,17,1,6.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727824,4727825,19.0,1947531,1,2,17,4,6.0,20.0,4.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4727829,4727830,19.0,1947536,1,2,17,1,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727835,4727836,19.0,1947542,1,1,17,1,1.0,14.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727836,4727837,19.0,1947543,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7115,16.0,22765.0,2130.0 +4727840,4727841,19.0,1947547,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4727842,4727843,19.0,1947549,1,2,17,2,6.0,16.0,6.0,13.0,4.0,813M,17.0,22808.0,2147.0 +4727843,4727844,19.0,1947550,1,2,17,1,1.0,15.0,4.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4727846,4727847,19.0,1947553,1,2,17,1,1.0,9.0,4.0,15.0,4.0,6214,14.0,22808.0,2147.0 +4727847,4727848,19.0,1947554,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727851,4727852,20.0,1947558,1,1,17,1,6.0,25.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727852,4727853,20.0,1947559,1,2,17,1,6.0,12.0,4.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4727862,4727863,20.0,1947569,1,2,17,1,1.0,40.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727866,4727867,20.0,1947573,1,2,17,1,1.0,12.0,1.0,15.0,4.0,722Z,16.0,22813.0,2150.0 +4727867,4727868,20.0,1947574,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22765.0,2130.0 +4727872,4727873,20.0,1947579,1,1,17,1,3.0,38.0,5.0,15.0,4.0,447,5.0,22808.0,2147.0 +4727875,4727876,20.0,1947582,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22806.0,2146.0 +4727879,4727880,20.0,1947586,1,1,17,1,6.0,2.0,6.0,16.0,4.0,5419Z,10.0,22815.0,2150.0 +4727882,4727883,20.0,1947589,1,2,17,1,6.0,20.0,6.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4727883,4727884,20.0,1947590,1,2,17,1,6.0,60.0,6.0,15.0,4.0,45221,5.0,22808.0,2147.0 +4727884,4727885,20.0,1947591,1,1,17,1,6.0,35.0,5.0,15.0,4.0,5121,8.0,22808.0,2147.0 +4727885,4727886,20.0,1947592,1,1,17,1,6.0,18.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727886,4727887,20.0,1947593,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727887,4727888,20.0,1947594,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4727888,4727889,20.0,1947595,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4727889,4727890,20.0,1947596,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4727893,4727894,20.0,1947600,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4727896,4727897,20.0,1947603,1,2,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727898,4727899,20.0,1947605,1,1,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727899,4727900,20.0,1947606,1,2,17,1,1.0,40.0,5.0,15.0,4.0,713Z,16.0,22813.0,2150.0 +4727901,4727902,20.0,1947608,1,2,17,1,6.0,35.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4727902,4727903,20.0,1947609,1,1,17,1,6.0,15.0,4.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4727907,4727908,20.0,1947614,1,2,17,1,1.0,11.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4727910,4727911,20.0,1947617,1,1,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4727911,4727912,20.0,1947618,1,2,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727913,4727914,20.0,1947620,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22808.0,2147.0 +4727915,4727916,20.0,1947622,1,2,17,1,6.0,8.0,6.0,15.0,4.0,6244,14.0,22758.0,2127.0 +4727919,4727920,20.0,1947626,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22806.0,2146.0 +4727924,4727925,20.0,1947631,1,2,17,1,6.0,40.0,6.0,15.0,4.0,4441Z,5.0,22808.0,2147.0 +4727927,4727928,20.0,1947634,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4727928,4727929,20.0,1947635,1,1,17,1,1.0,10.0,6.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4727930,4727931,20.0,1947637,1,1,17,1,6.0,30.0,3.0,15.0,4.0,51111,8.0,22806.0,2146.0 +4727934,4727935,20.0,1947641,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4727937,4727938,20.0,1947644,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4727938,4727939,20.0,1947645,1,2,17,1,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4727940,4727941,20.0,1947647,1,1,17,1,1.0,8.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4727942,4727943,20.0,1947649,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4727946,4727947,20.0,1947653,1,1,17,1,1.0,5.0,1.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4727947,4727948,20.0,1947654,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4523,5.0,22765.0,2130.0 +4727948,4727949,20.0,1947655,1,2,17,1,1.0,12.0,6.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4727949,4727950,20.0,1947656,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727950,4727951,20.0,1947657,1,1,17,1,6.0,10.0,6.0,15.0,4.0,56173,12.0,22806.0,2146.0 +4727952,4727953,20.0,1947659,1,1,17,1,6.0,6.0,5.0,15.0,4.0,4442,5.0,22808.0,2147.0 +4727954,4727955,20.0,1947661,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4727956,4727957,20.0,1947663,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22765.0,2130.0 +4727958,4727959,20.0,1947665,1,1,17,1,3.0,20.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727959,4727960,20.0,1947666,1,2,17,1,6.0,30.0,6.0,15.0,4.0,45113,5.0,22765.0,2130.0 +4727964,4727965,20.0,1947671,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4727968,4727969,20.0,1947675,1,1,17,1,1.0,10.0,6.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4727972,4727973,20.0,1947679,1,1,17,1,1.0,40.0,1.0,15.0,4.0,484,6.0,22808.0,2147.0 +4727974,4727975,20.0,1947681,1,1,17,1,1.0,25.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4727977,4727978,20.0,1947684,1,2,17,1,6.0,35.0,3.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4727978,4727979,20.0,1947685,1,2,17,1,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727981,4727982,20.0,1947688,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4727989,4727990,20.0,1947696,1,2,17,1,6.0,40.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4727991,4727992,20.0,1947698,1,2,17,1,6.0,24.0,6.0,15.0,4.0,53M,9.0,22808.0,2147.0 +4727993,4727994,20.0,1947700,1,1,17,1,6.0,35.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4727997,4727998,20.0,1947704,1,2,17,1,1.0,15.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4727998,4727999,20.0,1947705,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4728005,4728006,20.0,1947712,1,2,17,1,6.0,8.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4728006,4728007,20.0,1947713,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728007,4728008,20.0,1947714,1,2,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728012,4728013,20.0,1947719,1,2,17,1,6.0,16.0,6.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4728018,4728019,20.0,1947725,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728021,4728022,20.0,1947728,1,1,17,1,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4728026,4728027,20.0,1947733,1,1,17,1,6.0,40.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4728034,4728035,20.0,1947741,1,2,17,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728035,4728036,20.0,1947742,1,2,17,1,6.0,12.0,3.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4728040,4728041,20.0,1947747,1,1,17,1,1.0,16.0,1.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4728045,4728046,20.0,1947752,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,811192,17.0,22808.0,2147.0 +4728046,4728047,20.0,1947753,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4728047,4728048,20.0,1947754,1,2,17,1,6.0,45.0,6.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4728048,4728049,20.0,1947755,1,2,17,1,6.0,15.0,6.0,15.0,4.0,814,17.0,22808.0,2147.0 +4728058,4728059,20.0,1947765,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4728070,4728071,20.0,1947777,1,1,17,1,1.0,23.0,5.0,15.0,4.0,622M,15.0,22765.0,2130.0 +4728073,4728074,20.0,1947780,1,1,17,1,6.0,40.0,5.0,16.0,4.0,33641M1,3.0,22808.0,2147.0 +4728074,4728075,20.0,1947781,1,2,17,1,6.0,6.0,3.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4728075,4728076,20.0,1947782,1,1,17,1,3.0,12.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4728077,4728078,20.0,1947784,1,1,17,1,1.0,40.0,3.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4728081,4728082,20.0,1947788,1,1,17,1,6.0,40.0,6.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4728092,4728093,20.0,1947799,1,1,17,1,6.0,24.0,6.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4728094,4728095,20.0,1947801,1,2,17,1,6.0,10.0,6.0,15.0,4.0,45321,5.0,22806.0,2146.0 +4728095,4728096,20.0,1947802,1,1,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728103,4728104,20.0,1947810,1,1,17,1,6.0,25.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728111,4728112,20.0,1947818,1,2,17,1,1.0,17.0,1.0,15.0,4.0,4539,5.0,22813.0,2150.0 +4728112,4728113,20.0,1947819,1,1,17,1,6.0,35.0,5.0,15.0,4.0,5121,8.0,22808.0,2147.0 +4728113,4728114,20.0,1947820,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728114,4728115,20.0,1947821,1,2,17,1,6.0,15.0,4.0,15.0,4.0,5412,10.0,22765.0,2130.0 +4728115,4728116,20.0,1947822,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728117,4728118,20.0,1947824,1,2,17,1,6.0,5.0,6.0,15.0,4.0,56173,12.0,22808.0,2147.0 +4728122,4728123,20.0,1947829,1,1,17,1,6.0,32.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4728126,4728127,20.0,1947833,1,2,17,1,6.0,24.0,6.0,15.0,4.0,53M,9.0,22765.0,2130.0 +4728127,4728128,20.0,1947834,1,2,17,1,6.0,15.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4728129,4728130,20.0,1947836,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728130,4728131,20.0,1947837,1,1,17,1,6.0,45.0,6.0,15.0,4.0,23,2.0,22810.0,2148.0 +4728134,4728135,20.0,1947841,1,1,17,1,6.0,2.0,6.0,16.0,4.0,5419Z,10.0,22808.0,2147.0 +4728135,4728136,20.0,1947842,1,2,17,1,1.0,25.0,4.0,15.0,4.0,623M,14.0,22806.0,2146.0 +4728136,4728137,20.0,1947843,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4728138,4728139,20.0,1947845,1,2,17,1,1.0,15.0,4.0,15.0,4.0,44611,5.0,22765.0,2130.0 +4728139,4728140,20.0,1947846,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728142,4728143,20.0,1947849,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728144,4728145,20.0,1947851,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728145,4728146,20.0,1947852,1,2,17,1,6.0,20.0,5.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4728147,4728148,20.0,1947854,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4728150,4728151,20.0,1947857,1,1,17,1,3.0,28.0,6.0,15.0,4.0,5616,12.0,22808.0,2147.0 +4728155,4728156,20.0,1947862,1,2,17,1,1.0,5.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728158,4728159,20.0,1947865,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4728162,4728163,20.0,1947869,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4728163,4728164,20.0,1947870,1,1,17,1,6.0,30.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4728165,4728166,20.0,1947872,1,2,17,1,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4728166,4728167,20.0,1947873,1,2,17,1,1.0,12.0,4.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4728172,4728173,20.0,1947879,1,2,17,2,1.0,15.0,5.0,15.0,4.0,6111,13.0,22814.0,2150.0 +4728174,4728175,20.0,1947881,1,1,17,2,6.0,44.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4728178,4728179,20.0,1947885,1,1,17,2,6.0,8.0,6.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4728183,4728184,20.0,1947890,1,2,17,2,6.0,40.0,6.0,15.0,4.0,6241,14.0,22808.0,2147.0 +4728185,4728186,20.0,1947892,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728186,4728187,20.0,1947893,1,2,17,2,6.0,30.0,5.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4728187,4728188,20.0,1947894,1,2,17,2,6.0,25.0,5.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4728188,4728189,20.0,1947895,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22808.0,2147.0 +4728189,4728190,20.0,1947896,1,2,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22765.0,2130.0 +4728190,4728191,20.0,1947897,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22808.0,2147.0 +4728195,4728196,20.0,1947902,1,1,17,2,1.0,9.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728211,4728212,20.0,1947918,1,2,17,2,1.0,20.0,1.0,15.0,4.0,4441Z,5.0,22806.0,2146.0 +4728212,4728213,20.0,1947919,1,1,17,2,3.0,20.0,4.0,15.0,4.0,4481,5.0,22758.0,2127.0 +4728215,4728216,20.0,1947922,1,1,17,2,1.0,17.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728220,4728221,20.0,1947927,1,2,17,2,1.0,15.0,5.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4728222,4728223,20.0,1947929,1,2,17,2,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728223,4728224,20.0,1947930,1,2,17,2,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728224,4728225,20.0,1947931,1,2,17,2,1.0,16.0,1.0,-9.0,4.0,813M,17.0,22808.0,2147.0 +4728225,4728226,20.0,1947932,1,2,17,2,2.0,38.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728232,4728233,20.0,1947939,1,2,17,2,6.0,15.0,1.0,15.0,4.0,4539,5.0,22808.0,2147.0 +4728234,4728235,20.0,1947941,1,2,17,2,6.0,18.0,6.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4728237,4728238,20.0,1947944,1,2,17,2,1.0,40.0,6.0,-9.0,4.0,5617Z,12.0,22808.0,2147.0 +4728238,4728239,20.0,1947945,1,2,17,2,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4728241,4728242,20.0,1947948,1,2,17,2,6.0,10.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728252,4728253,20.0,1947959,1,2,17,2,6.0,40.0,6.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4728254,4728255,20.0,1947961,1,1,17,2,3.0,20.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4728255,4728256,20.0,1947962,1,1,17,2,2.0,15.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728264,4728265,20.0,1947971,1,1,17,2,6.0,44.0,6.0,15.0,4.0,336M,3.0,22806.0,2146.0 +4728265,4728266,20.0,1947972,1,1,17,2,1.0,18.0,5.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4728266,4728267,20.0,1947973,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4728267,4728268,20.0,1947974,1,2,17,2,1.0,30.0,1.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4728275,4728276,20.0,1947982,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4728281,4728282,20.0,1947988,1,1,17,2,1.0,15.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728282,4728283,20.0,1947989,1,2,17,2,1.0,35.0,4.0,15.0,3.0,722Z,16.0,22758.0,2127.0 +4728283,4728284,20.0,1947990,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22765.0,2130.0 +4728293,4728294,20.0,1948000,1,2,17,4,1.0,12.0,4.0,15.0,4.0,4511M,5.0,22765.0,2130.0 +4728295,4728296,20.0,1948002,1,1,17,4,6.0,6.0,6.0,15.0,4.0,611M3,13.0,22814.0,2150.0 +4728296,4728297,20.0,1948003,1,2,17,4,1.0,20.0,1.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4728300,4728301,20.0,1948007,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728302,4728303,20.0,1948009,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22808.0,2147.0 +4728303,4728304,20.0,1948010,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728305,4728306,20.0,1948012,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4728308,4728309,20.0,1948015,1,1,17,4,6.0,18.0,6.0,15.0,4.0,562,12.0,22808.0,2147.0 +4728310,4728311,20.0,1948017,1,2,17,4,6.0,8.0,5.0,16.0,4.0,5413,10.0,22808.0,2147.0 +4728313,4728314,20.0,1948020,1,1,17,4,6.0,35.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4728322,4728323,20.0,1948029,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728324,4728325,20.0,1948031,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22813.0,2150.0 +4728328,4728329,20.0,1948035,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4728330,4728331,20.0,1948037,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22765.0,2130.0 +4728336,4728337,20.0,1948043,1,2,17,4,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728338,4728339,20.0,1948045,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728339,4728340,20.0,1948046,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728340,4728341,20.0,1948047,1,2,17,4,6.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728341,4728342,20.0,1948048,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728343,4728344,20.0,1948050,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22808.0,2147.0 +4728345,4728346,20.0,1948052,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728352,4728353,20.0,1948059,1,1,17,4,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4728356,4728357,20.0,1948063,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728357,4728358,20.0,1948064,1,2,17,4,1.0,45.0,5.0,-9.0,4.0,7211,16.0,22814.0,2150.0 +4728358,4728359,20.0,1948065,1,1,17,4,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22806.0,2146.0 +4728361,4728362,20.0,1948068,1,2,17,4,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728363,4728364,20.0,1948070,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4728364,4728365,20.0,1948071,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,531M,9.0,22765.0,2130.0 +4728365,4728366,20.0,1948072,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728366,4728367,20.0,1948073,1,1,17,4,6.0,25.0,4.0,15.0,4.0,5414,10.0,22808.0,2147.0 +4728372,4728373,20.0,1948079,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22810.0,2148.0 +4728373,4728374,20.0,1948080,1,1,17,4,6.0,40.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4728381,4728382,20.0,1948088,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4728383,4728384,20.0,1948090,1,2,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4728384,4728385,20.0,1948091,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4728393,4728394,20.0,1948100,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728395,4728396,20.0,1948102,1,2,17,4,1.0,20.0,6.0,15.0,4.0,213,1.0,22808.0,2147.0 +4728396,4728397,20.0,1948103,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22815.0,2150.0 +4728398,4728399,20.0,1948105,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22810.0,2148.0 +4728399,4728400,20.0,1948106,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22761.0,2128.0 +4728400,4728401,20.0,1948107,1,2,17,4,1.0,20.0,1.0,15.0,4.0,45221,5.0,22806.0,2146.0 +4728406,4728407,20.0,1948113,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7115,16.0,22765.0,2130.0 +4728407,4728408,20.0,1948114,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22808.0,2147.0 +4728412,4728413,20.0,1948119,1,1,17,4,6.0,35.0,6.0,15.0,4.0,811192,17.0,22806.0,2146.0 +4728414,4728415,20.0,1948121,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728421,4728422,20.0,1948128,1,2,17,4,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4728424,4728425,20.0,1948131,1,2,17,4,1.0,10.0,6.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4728425,4728426,20.0,1948132,1,1,17,4,6.0,8.0,6.0,15.0,4.0,2211P,7.0,22808.0,2147.0 +4728429,4728430,20.0,1948136,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,5411,10.0,22808.0,2147.0 +4728433,4728434,20.0,1948140,1,1,17,4,6.0,40.0,6.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4728435,4728436,20.0,1948142,1,1,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728438,4728439,20.0,1948145,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728446,4728447,20.0,1948153,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4728447,4728448,20.0,1948154,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728448,4728449,20.0,1948155,1,1,17,4,1.0,9.0,6.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4728450,4728451,20.0,1948157,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4728455,4728456,20.0,1948162,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728456,4728457,20.0,1948163,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4728457,4728458,20.0,1948164,1,1,17,4,6.0,6.0,6.0,15.0,4.0,3113,3.0,22806.0,2146.0 +4728458,4728459,20.0,1948165,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728467,4728468,20.0,1948174,1,1,17,4,6.0,20.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4728468,4728469,20.0,1948175,1,2,17,4,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728470,4728471,20.0,1948177,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4728471,4728472,20.0,1948178,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728478,4728479,20.0,1948185,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22815.0,2150.0 +4728481,4728482,20.0,1948188,1,1,17,4,1.0,7.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4728486,4728487,20.0,1948193,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728490,4728491,20.0,1948197,1,2,17,4,1.0,20.0,1.0,15.0,4.0,45221,5.0,22808.0,2147.0 +4728491,4728492,20.0,1948198,1,2,17,4,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4728493,4728494,20.0,1948200,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4728494,4728495,20.0,1948201,1,1,17,4,6.0,20.0,4.0,15.0,4.0,221MP,7.0,22808.0,2147.0 +4728495,4728496,20.0,1948202,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728496,4728497,20.0,1948203,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4728498,4728499,20.0,1948205,1,1,17,4,1.0,4.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728501,4728502,20.0,1948208,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,443142,5.0,22808.0,2147.0 +4728506,4728507,20.0,1948213,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4728519,4728520,20.0,1948226,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728524,4728525,20.0,1948231,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,336M,3.0,22808.0,2147.0 +4728528,4728529,20.0,1948235,1,1,17,4,1.0,25.0,4.0,16.0,4.0,611M1,13.0,22815.0,2150.0 +4728530,4728531,20.0,1948237,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22765.0,2130.0 +4728531,4728532,20.0,1948238,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728532,4728533,20.0,1948239,1,2,17,4,1.0,20.0,1.0,15.0,4.0,4523,5.0,22765.0,2130.0 +4728533,4728534,20.0,1948240,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4728539,4728540,20.0,1948246,1,1,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4728547,4728548,20.0,1948254,1,2,17,4,1.0,30.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728549,4728550,20.0,1948256,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22814.0,2150.0 +4728550,4728551,20.0,1948257,1,2,17,4,1.0,45.0,5.0,-9.0,4.0,7211,16.0,22808.0,2147.0 +4728551,4728552,20.0,1948258,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,54194,10.0,22765.0,2130.0 +4728553,4728554,20.0,1948260,1,1,17,4,1.0,4.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728556,4728557,20.0,1948263,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22765.0,2130.0 +4728557,4728558,20.0,1948264,1,1,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728559,4728560,20.0,1948266,1,2,17,1,6.0,35.0,6.0,15.0,4.0,712,16.0,22808.0,2147.0 +4728566,4728567,20.0,1948273,1,1,17,4,6.0,15.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728569,4728570,20.0,1948276,1,1,17,4,1.0,25.0,4.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +4728570,4728571,20.0,1948277,1,1,17,4,6.0,6.0,6.0,15.0,4.0,3113,3.0,22808.0,2147.0 +4728571,4728572,20.0,1948278,1,2,17,1,6.0,25.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728574,4728575,20.0,1948281,1,2,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728576,4728577,20.0,1948283,1,1,17,1,6.0,60.0,1.0,-9.0,4.0,56173,12.0,22806.0,2146.0 +4728581,4728582,20.0,1948288,1,2,17,1,1.0,12.0,6.0,15.0,4.0,611M1,13.0,22815.0,2150.0 +4728582,4728583,20.0,1948289,1,2,17,4,6.0,10.0,5.0,15.0,4.0,4481,5.0,22760.0,2128.0 +4728588,4728589,20.0,1948295,1,1,17,1,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22806.0,2146.0 +4728589,4728590,20.0,1948296,1,2,17,2,1.0,15.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4728590,4728591,20.0,1948297,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22815.0,2150.0 +4728591,4728592,20.0,1948298,1,2,17,4,1.0,12.0,1.0,15.0,4.0,812112,17.0,22808.0,2147.0 +4728596,4728597,20.0,1948303,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4728600,4728601,20.0,1948307,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728602,4728603,20.0,1948309,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4728603,4728604,20.0,1948310,1,1,17,1,2.0,30.0,6.0,15.0,4.0,23,2.0,22808.0,2147.0 +4728605,4728606,20.0,1948312,1,2,17,1,6.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4728608,4728609,20.0,1948315,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22813.0,2150.0 +4728611,4728612,20.0,1948318,1,1,17,4,6.0,25.0,4.0,15.0,4.0,5414,10.0,22808.0,2147.0 +4728612,4728613,20.0,1948319,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728615,4728616,20.0,1948322,1,1,17,4,1.0,25.0,4.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4728616,4728617,20.0,1948323,1,1,17,1,6.0,25.0,6.0,15.0,4.0,9211MP,18.0,22808.0,2147.0 +4728620,4728621,20.0,1948327,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22808.0,2147.0 +4728621,4728622,20.0,1948328,1,2,17,1,6.0,25.0,5.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4728629,4728630,20.0,1948336,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22806.0,2146.0 +4728632,4728633,20.0,1948339,1,1,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728635,4728636,20.0,1948342,1,2,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4728636,4728637,20.0,1948343,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728638,4728639,20.0,1948345,1,2,17,4,1.0,45.0,5.0,-9.0,4.0,7211,16.0,22808.0,2147.0 +4728646,4728647,20.0,1948353,1,2,17,4,1.0,10.0,6.0,16.0,4.0,722Z,16.0,22758.0,2127.0 +4728649,4728650,20.0,1948356,1,2,17,2,3.0,30.0,4.0,15.0,4.0,44512,5.0,22806.0,2146.0 +4728650,4728651,20.0,1948357,1,2,17,1,6.0,40.0,5.0,15.0,4.0,5413,10.0,22808.0,2147.0 +4728653,4728654,20.0,1948360,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22808.0,2147.0 +4728656,4728657,20.0,1948363,1,2,17,4,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728661,4728662,20.0,1948368,1,1,17,2,1.0,17.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728663,4728664,20.0,1948370,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22758.0,2127.0 +4728667,4728668,20.0,1948374,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22810.0,2148.0 +4728668,4728669,20.0,1948375,1,2,17,4,6.0,16.0,5.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4728669,4728670,20.0,1948376,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4728671,4728672,20.0,1948378,1,2,17,2,6.0,40.0,5.0,-9.0,4.0,5616,12.0,22806.0,2146.0 +4728672,4728673,20.0,1948379,1,1,17,1,6.0,20.0,4.0,15.0,4.0,4244,4.0,22808.0,2147.0 +4728674,4728675,20.0,1948381,1,2,17,2,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4728675,4728676,20.0,1948382,1,2,17,4,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22814.0,2150.0 +4728677,4728678,20.0,1948384,1,2,17,1,6.0,7.0,5.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4728678,4728679,20.0,1948385,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4728682,4728683,20.0,1948389,1,2,17,2,1.0,15.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728683,4728684,20.0,1948390,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728684,4728685,20.0,1948391,1,2,17,1,6.0,16.0,2.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728686,4728687,20.0,1948393,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728693,4728694,20.0,1948400,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4728695,4728696,20.0,1948402,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728696,4728697,20.0,1948403,1,2,17,4,6.0,8.0,5.0,16.0,4.0,5413,10.0,22806.0,2146.0 +4728699,4728700,20.0,1948406,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4728701,4728702,20.0,1948408,1,2,17,1,6.0,55.0,5.0,15.0,4.0,4412,5.0,22808.0,2147.0 +4728707,4728708,20.0,1948414,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728714,4728715,20.0,1948421,1,1,17,4,6.0,5.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728717,4728718,20.0,1948424,1,2,17,1,6.0,6.0,3.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4728719,4728720,20.0,1948426,1,2,17,1,6.0,20.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728720,4728721,20.0,1948427,1,2,17,1,6.0,12.0,3.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4728721,4728722,20.0,1948428,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728722,4728723,20.0,1948429,1,2,17,4,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728724,4728725,20.0,1948431,1,2,17,2,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4728725,4728726,20.0,1948432,1,2,17,2,1.0,20.0,6.0,-9.0,4.0,4523,5.0,22808.0,2147.0 +4728726,4728727,20.0,1948433,1,1,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4728728,4728729,20.0,1948435,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22760.0,2128.0 +4728732,4728733,21.0,1948439,1,2,17,1,1.0,15.0,4.0,15.0,4.0,44611,5.0,22808.0,2147.0 +4728733,4728734,21.0,1948440,1,2,17,1,6.0,9.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4728739,4728740,21.0,1948446,1,2,17,1,1.0,30.0,6.0,15.0,4.0,45121,5.0,22808.0,2147.0 +4728742,4728743,21.0,1948449,1,1,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4728744,4728745,21.0,1948451,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728750,4728751,21.0,1948457,1,1,17,1,2.0,30.0,6.0,15.0,4.0,23,2.0,22806.0,2146.0 +4728757,4728758,21.0,1948464,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,813M,17.0,22765.0,2130.0 +4728761,4728762,21.0,1948468,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728767,4728768,21.0,1948474,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22814.0,2150.0 +4728768,4728769,21.0,1948475,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5415,10.0,22808.0,2147.0 +4728770,4728771,21.0,1948477,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4728771,4728772,21.0,1948478,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4728772,4728773,21.0,1948479,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728777,4728778,21.0,1948484,1,1,17,1,1.0,8.0,4.0,15.0,4.0,45121,5.0,22806.0,2146.0 +4728781,4728782,21.0,1948488,1,2,17,1,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22806.0,2146.0 +4728797,4728798,21.0,1948504,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4728803,4728804,21.0,1948510,1,1,17,1,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728806,4728807,21.0,1948513,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4728809,4728810,21.0,1948516,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728811,4728812,21.0,1948518,1,2,17,1,6.0,15.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4728815,4728816,21.0,1948522,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4728818,4728819,21.0,1948525,1,1,17,1,6.0,40.0,6.0,15.0,4.0,522M,9.0,22808.0,2147.0 +4728819,4728820,21.0,1948526,1,1,17,1,6.0,39.0,5.0,15.0,4.0,713Z,16.0,22765.0,2130.0 +4728820,4728821,21.0,1948527,1,2,17,1,6.0,16.0,6.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728821,4728822,21.0,1948528,1,2,17,1,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22760.0,2128.0 +4728822,4728823,21.0,1948529,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4728823,4728824,21.0,1948530,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22765.0,2130.0 +4728827,4728828,21.0,1948534,1,2,17,1,1.0,22.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4728828,4728829,21.0,1948535,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4728830,4728831,21.0,1948537,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4728832,4728833,21.0,1948539,1,2,17,1,6.0,30.0,6.0,15.0,4.0,337,3.0,22808.0,2147.0 +4728838,4728839,21.0,1948545,1,2,17,3,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22808.0,2147.0 +4728839,4728840,21.0,1948546,1,2,17,3,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4728844,4728845,21.0,1948551,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22813.0,2150.0 +4728846,4728847,21.0,1948553,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22814.0,2150.0 +4728849,4728850,21.0,1948556,1,2,17,1,6.0,30.0,5.0,15.0,4.0,4511M,5.0,22808.0,2147.0 +4728852,4728853,21.0,1948559,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22765.0,2130.0 +4728859,4728860,21.0,1948566,1,1,17,1,1.0,17.0,1.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4728865,4728866,21.0,1948572,1,1,17,3,1.0,40.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728869,4728870,22.0,1948576,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728874,4728875,22.0,1948581,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22814.0,2150.0 +4728880,4728881,22.0,1948587,1,1,17,1,6.0,30.0,6.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4728881,4728882,22.0,1948588,1,2,17,1,1.0,32.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728883,4728884,22.0,1948590,1,2,17,1,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728885,4728886,22.0,1948592,1,2,17,1,1.0,6.0,5.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4728886,4728887,22.0,1948593,1,1,17,1,1.0,23.0,5.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4728889,4728890,22.0,1948596,1,2,17,1,1.0,8.0,6.0,15.0,4.0,6243,14.0,22808.0,2147.0 +4728896,4728897,22.0,1948603,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,813M,17.0,22815.0,2150.0 +4728897,4728898,22.0,1948604,1,2,17,1,6.0,32.0,6.0,15.0,4.0,52M2,9.0,22808.0,2147.0 +4728898,4728899,22.0,1948605,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22806.0,2146.0 +4728900,4728901,22.0,1948607,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4728902,4728903,22.0,1948609,1,2,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4728905,4728906,22.0,1948612,1,1,17,1,3.0,40.0,6.0,15.0,4.0,5617Z,12.0,22808.0,2147.0 +4728906,4728907,22.0,1948613,1,2,17,1,1.0,25.0,4.0,15.0,4.0,623M,14.0,22806.0,2146.0 +4728911,4728912,22.0,1948618,1,2,17,1,1.0,16.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728914,4728915,22.0,1948621,1,2,17,1,1.0,12.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728915,4728916,22.0,1948622,1,1,17,1,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4728916,4728917,22.0,1948623,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728918,4728919,22.0,1948625,1,1,17,1,1.0,10.0,6.0,15.0,4.0,622M,15.0,22808.0,2147.0 +4728921,4728922,22.0,1948628,1,2,17,1,1.0,4.0,4.0,15.0,4.0,814,17.0,22808.0,2147.0 +4728924,4728925,22.0,1948631,1,1,17,1,6.0,3.0,5.0,15.0,4.0,8129,17.0,22808.0,2147.0 +4728927,4728928,22.0,1948634,1,2,17,1,6.0,10.0,5.0,15.0,4.0,611M1,13.0,22810.0,2148.0 +4728928,4728929,22.0,1948635,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,56173,12.0,22765.0,2130.0 +4728929,4728930,22.0,1948636,1,1,17,1,6.0,3.0,5.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4728932,4728933,22.0,1948639,1,2,17,1,6.0,18.0,3.0,15.0,4.0,6244,14.0,22806.0,2146.0 +4728934,4728935,22.0,1948641,1,2,17,1,6.0,24.0,4.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4728935,4728936,22.0,1948642,1,2,17,1,6.0,30.0,6.0,15.0,4.0,45113,5.0,22808.0,2147.0 +4728936,4728937,22.0,1948643,1,2,17,1,1.0,15.0,4.0,15.0,4.0,44511,5.0,22808.0,2147.0 +4728937,4728938,22.0,1948644,1,1,17,1,6.0,40.0,5.0,15.0,4.0,443142,5.0,22808.0,2147.0 +4728938,4728939,22.0,1948645,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728939,4728940,22.0,1948646,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6211,14.0,22808.0,2147.0 +4728943,4728944,22.0,1948650,1,2,17,1,6.0,30.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728946,4728947,22.0,1948653,1,1,17,1,6.0,15.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728950,4728951,22.0,1948657,1,2,17,1,1.0,15.0,4.0,15.0,4.0,713Z,16.0,22806.0,2146.0 +4728952,4728953,22.0,1948659,1,2,17,1,1.0,30.0,5.0,15.0,4.0,55,11.0,22808.0,2147.0 +4728954,4728955,22.0,1948661,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4728956,4728957,22.0,1948663,1,1,17,1,1.0,9.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728957,4728958,22.0,1948664,1,1,17,1,1.0,25.0,3.0,15.0,4.0,336M,3.0,22808.0,2147.0 +4728959,4728960,22.0,1948666,1,1,17,1,6.0,40.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4728960,4728961,22.0,1948667,1,1,17,1,1.0,25.0,4.0,15.0,4.0,336M,3.0,22765.0,2130.0 +4728962,4728963,22.0,1948669,1,1,17,1,3.0,40.0,6.0,15.0,4.0,3261,3.0,22808.0,2147.0 +4728963,4728964,22.0,1948670,1,2,17,1,6.0,15.0,4.0,15.0,4.0,45121,5.0,22808.0,2147.0 +4728965,4728966,22.0,1948672,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4728966,4728967,22.0,1948673,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4728972,4728973,22.0,1948679,1,1,17,1,6.0,9.0,4.0,15.0,4.0,531M,9.0,22808.0,2147.0 +4728974,4728975,22.0,1948681,1,2,17,1,6.0,7.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4728977,4728978,22.0,1948684,1,2,17,1,1.0,32.0,4.0,-9.0,4.0,611M1,13.0,22808.0,2147.0 +4728979,4728980,22.0,1948686,1,1,17,1,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728980,4728981,22.0,1948687,1,2,17,1,6.0,10.0,6.0,15.0,4.0,44821,5.0,22808.0,2147.0 +4728984,4728985,22.0,1948691,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4728986,4728987,22.0,1948693,1,2,17,1,6.0,24.0,6.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4728992,4728993,22.0,1948699,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22815.0,2150.0 +4728995,4728996,22.0,1948702,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4728997,4728998,22.0,1948704,1,2,17,1,6.0,12.0,3.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4728999,4729000,22.0,1948706,1,1,17,1,3.0,20.0,6.0,15.0,4.0,6241,14.0,22818.0,2150.0 +4729001,4729002,22.0,1948708,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4729004,4729005,22.0,1948711,1,2,17,1,6.0,15.0,6.0,15.0,4.0,721M,16.0,22808.0,2147.0 +4729013,4729014,22.0,1948720,1,1,17,1,2.0,40.0,1.0,-9.0,4.0,722Z,16.0,22806.0,2146.0 +4729018,4729019,23.0,1948725,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4511M,5.0,22758.0,2127.0 +4729021,4729022,23.0,1948728,1,1,17,1,2.0,20.0,3.0,15.0,4.0,5416,10.0,22806.0,2146.0 +4729022,4729023,23.0,1948729,1,2,17,1,1.0,12.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729023,4729024,23.0,1948730,1,2,17,1,1.0,9.0,4.0,15.0,4.0,6214,14.0,22758.0,2127.0 +4729025,4729026,23.0,1948732,1,2,17,1,1.0,15.0,6.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4729027,4729028,23.0,1948734,1,1,17,1,6.0,30.0,6.0,15.0,4.0,4452,5.0,22806.0,2146.0 +4729032,4729033,23.0,1948739,1,1,17,1,6.0,30.0,3.0,15.0,4.0,51111,8.0,22808.0,2147.0 +4729034,4729035,23.0,1948741,1,2,17,1,1.0,30.0,3.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729040,4729041,23.0,1948747,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729045,4729046,23.0,1948752,1,2,17,1,1.0,35.0,1.0,15.0,4.0,55,11.0,22806.0,2146.0 +4729050,4729051,23.0,1948757,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4729053,4729054,23.0,1948760,1,2,17,1,1.0,3.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4729055,4729056,23.0,1948762,1,1,17,1,6.0,30.0,5.0,15.0,4.0,23,2.0,22808.0,2147.0 +4729056,4729057,23.0,1948763,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22815.0,2150.0 +4729057,4729058,23.0,1948764,1,2,17,1,6.0,6.0,6.0,15.0,4.0,814,17.0,22765.0,2130.0 +4729059,4729060,24.0,1948766,1,1,17,1,6.0,15.0,4.0,15.0,4.0,611M1,13.0,22765.0,2130.0 +4729060,4729061,24.0,1948767,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22815.0,2150.0 +4729062,4729063,24.0,1948769,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22808.0,2147.0 +4729064,4729065,24.0,1948771,1,2,17,4,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4729065,4729066,24.0,1948772,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4729067,4729068,24.0,1948774,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22806.0,2146.0 +4729070,4729071,24.0,1948777,1,1,17,4,6.0,15.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4729076,4729077,24.0,1948783,1,2,17,4,6.0,10.0,5.0,15.0,4.0,4481,5.0,22808.0,2147.0 +4729077,4729078,24.0,1948784,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4729078,4729079,24.0,1948785,1,1,17,4,6.0,30.0,6.0,15.0,4.0,51913,8.0,22815.0,2150.0 +4729084,4729085,24.0,1948791,1,2,17,4,1.0,45.0,5.0,-9.0,4.0,7211,16.0,22806.0,2146.0 +4729085,4729086,24.0,1948792,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4729092,4729093,24.0,1948799,1,1,17,4,1.0,10.0,4.0,15.0,4.0,7111,16.0,22808.0,2147.0 +4729095,4729096,24.0,1948802,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729096,4729097,24.0,1948803,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4729100,4729101,24.0,1948807,1,1,17,4,6.0,15.0,4.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4729111,4729112,24.0,1948818,1,2,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4729112,4729113,24.0,1948819,1,2,17,4,2.0,12.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729114,4729115,24.0,1948821,1,2,17,4,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4729117,4729118,24.0,1948824,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,6244,14.0,22808.0,2147.0 +4729118,4729119,24.0,1948825,1,2,17,4,6.0,13.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729119,4729120,24.0,1948826,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4729121,4729122,24.0,1948828,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22808.0,2147.0 +4729122,4729123,24.0,1948829,1,1,17,4,1.0,4.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729123,4729124,24.0,1948830,1,1,17,4,6.0,40.0,6.0,15.0,4.0,336M,3.0,22765.0,2130.0 +4729126,4729127,24.0,1948833,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22806.0,2146.0 +4729127,4729128,24.0,1948834,1,1,17,4,1.0,15.0,4.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4729130,4729131,24.0,1948837,1,1,17,4,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729133,4729134,24.0,1948840,1,2,17,4,1.0,20.0,1.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4729134,4729135,24.0,1948841,1,2,17,4,1.0,7.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729136,4729137,24.0,1948843,1,2,17,4,1.0,30.0,5.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729139,4729140,24.0,1948846,1,2,17,4,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729144,4729145,24.0,1948851,1,1,17,4,1.0,40.0,1.0,-9.0,4.0,4523,5.0,22808.0,2147.0 +4729145,4729146,24.0,1948852,1,1,17,4,6.0,38.0,6.0,15.0,4.0,3116,3.0,22808.0,2147.0 +4729147,4729148,24.0,1948854,1,1,17,4,6.0,20.0,6.0,15.0,4.0,6111,13.0,22806.0,2146.0 +4729149,4729150,24.0,1948856,1,1,17,4,1.0,14.0,2.0,15.0,4.0,713Z,16.0,22810.0,2148.0 +4729152,4729153,24.0,1948859,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22814.0,2150.0 +4729153,4729154,24.0,1948860,1,2,17,4,6.0,-9.0,-9.0,13.0,4.0,-9,-9.0,22808.0,2147.0 +4729155,4729156,24.0,1948862,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,4523,5.0,22808.0,2147.0 +4729156,4729157,24.0,1948863,1,1,17,4,6.0,40.0,6.0,15.0,4.0,44512,5.0,22806.0,2146.0 +4729157,4729158,24.0,1948864,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729160,4729161,24.0,1948867,1,1,17,4,1.0,9.0,6.0,15.0,4.0,611M1,13.0,22808.0,2147.0 +4729162,4729163,24.0,1948869,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4729167,4729168,24.0,1948874,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4729174,4729175,24.0,1948881,1,1,17,4,6.0,35.0,6.0,15.0,4.0,811192,17.0,22758.0,2127.0 +4729182,4729183,24.0,1948889,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4729186,4729187,24.0,1948893,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4729187,4729188,24.0,1948894,1,1,17,4,1.0,40.0,4.0,15.0,4.0,6211,14.0,22815.0,2150.0 +4729189,4729190,24.0,1948896,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4729195,4729196,24.0,1948902,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4729200,4729201,24.0,1948907,1,2,17,4,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4729203,4729204,24.0,1948910,1,2,17,4,6.0,40.0,6.0,15.0,4.0,5111Z,8.0,22765.0,2130.0 +4729204,4729205,24.0,1948911,1,1,17,4,1.0,12.0,1.0,15.0,4.0,722Z,16.0,22808.0,2147.0 +4729206,4729207,24.0,1948913,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22765.0,2130.0 +4729209,4729210,24.0,1948916,1,2,17,4,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4729214,4729215,24.0,1948921,1,1,17,4,1.0,9.0,6.0,15.0,4.0,611M1,13.0,22806.0,2146.0 +4729219,4729220,24.0,1948926,1,2,17,4,1.0,15.0,1.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4729221,4729222,24.0,1948928,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4729223,4729224,24.0,1948930,1,1,17,4,3.0,15.0,5.0,15.0,4.0,713Z,16.0,22808.0,2147.0 +4729228,4729229,24.0,1948935,1,2,17,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4729230,4729231,24.0,1948937,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22808.0,2147.0 +4729234,4729235,24.0,1948941,1,1,17,4,6.0,3.0,6.0,15.0,4.0,6111,13.0,22808.0,2147.0 +4729235,4729236,24.0,1948942,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,334M2,3.0,22808.0,2147.0 +4729236,4729237,24.0,1948943,1,1,17,4,6.0,18.0,6.0,15.0,4.0,562,12.0,22808.0,2147.0 +4729243,4729244,24.0,1948950,1,1,17,4,3.0,-9.0,-9.0,15.0,4.0,999920,-9.0,22808.0,2147.0 +4729248,4729249,25.0,1948955,1,1,17,1,1.0,50.0,1.0,16.0,4.0,8131,17.0,22808.0,2147.0 +4729252,4729253,25.0,1948959,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22761.0,2128.0 +4729253,4729254,25.0,1948960,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4729255,4729256,25.0,1948962,1,1,17,2,2.0,30.0,1.0,-9.0,4.0,923,18.0,22806.0,2146.0 +4729256,4729257,25.0,1948963,1,1,17,2,2.0,50.0,3.0,-9.0,4.0,336M,3.0,22814.0,2150.0 +4729258,4729259,25.0,1948965,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22808.0,2147.0 +4729264,4729265,25.0,1948971,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4729265,4729266,25.0,1948972,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4729266,4729267,25.0,1948973,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4729270,4729271,25.0,1948977,1,1,17,2,1.0,40.0,1.0,-9.0,4.0,6241,14.0,22808.0,2147.0 +4729281,4729282,25.0,1948988,1,2,17,2,3.0,40.0,2.0,-9.0,4.0,4452,5.0,22808.0,2147.0 +4729284,4729285,25.0,1948991,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22815.0,2150.0 +4729290,4729291,25.0,1948997,1,1,17,2,2.0,50.0,3.0,-9.0,4.0,336M,3.0,22808.0,2147.0 +4729292,4729293,25.0,1948999,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22806.0,2146.0 +4729295,4729296,25.0,1949002,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4729296,4729297,25.0,1949003,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4729297,4729298,25.0,1949004,1,1,17,2,2.0,30.0,1.0,-9.0,4.0,923,18.0,22765.0,2130.0 +4729298,4729299,25.0,1949005,1,1,17,2,2.0,50.0,3.0,-9.0,4.0,336M,3.0,22808.0,2147.0 +4729302,4729303,25.0,1949009,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4729305,4729306,25.0,1949012,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4729312,4729313,25.0,1949019,1,1,17,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22758.0,2127.0 +4729313,4729314,25.0,1949020,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4729320,4729321,25.0,1949027,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22806.0,2146.0 +4729323,4729324,25.0,1949030,1,1,17,2,3.0,-9.0,-9.0,-9.0,4.0,999920,-9.0,22808.0,2147.0 +4729324,4729325,25.0,1949031,1,1,17,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4729327,4729328,25.0,1949034,1,1,17,4,6.0,20.0,6.0,16.0,4.0,611M1,13.0,22760.0,2128.0 +4729328,4729329,25.0,1949035,1,2,17,4,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22808.0,2147.0 +4729338,4729339,25.0,1949045,1,2,17,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4729341,4729342,25.0,1949048,1,1,17,4,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4729342,4729343,25.0,1949049,1,1,17,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4729349,4729350,25.0,1949056,1,2,17,4,1.0,40.0,3.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4729351,4729352,25.0,1949058,1,2,17,4,1.0,40.0,1.0,-9.0,4.0,8131,17.0,22760.0,2128.0 +4729356,4729357,25.0,1949063,1,1,17,4,1.0,20.0,3.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4729360,4729361,25.0,1949067,1,1,17,2,2.0,50.0,3.0,-9.0,4.0,336M,3.0,22760.0,2128.0 +4729361,4729362,25.0,1949068,1,2,17,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22765.0,2130.0 +4729367,4729368,25.0,1949074,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22815.0,2150.0 +4729369,4729370,25.0,1949076,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22806.0,2146.0 +4729370,4729371,25.0,1949077,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,213,1.0,22806.0,2146.0 +4729373,4729374,25.0,1949080,1,1,17,2,3.0,-9.0,-9.0,-9.0,4.0,999920,-9.0,22814.0,2150.0 +4729376,4729377,25.0,1949083,1,1,17,2,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22808.0,2147.0 +4729378,4729379,25.0,1949085,1,2,17,2,1.0,40.0,1.0,-9.0,4.0,622M,15.0,22808.0,2147.0 +4729383,4729384,25.0,1949090,1,2,17,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22813.0,2150.0 +4729384,4729385,25.0,1949091,1,1,17,4,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22815.0,2150.0 +4729387,4729388,25.0,1949094,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22808.0,2147.0 +4729389,4729390,17.0,1949096,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +4729390,4729391,17.0,1949097,1,2,17,1,1.0,9.0,4.0,15.0,-9.0,6214,14.0,22745.0,2121.0 +4729391,4729392,17.0,1949098,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22745.0,2121.0 +4729392,4729393,17.0,1949099,1,2,17,3,6.0,-9.0,-9.0,-9.0,-9.0,611M1,13.0,22745.0,2121.0 +4729393,4729394,17.0,1949100,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +4729394,4729395,17.0,1949101,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +4729395,4729396,18.0,1949102,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729396,4729397,18.0,1949103,1,2,17,1,1.0,20.0,3.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4729397,4729398,18.0,1949104,1,1,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729398,4729399,18.0,1949105,1,2,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22745.0,2121.0 +4729399,4729400,18.0,1949106,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729400,4729401,18.0,1949107,1,2,17,1,6.0,23.0,6.0,15.0,4.0,44511,5.0,22745.0,2121.0 +4729401,4729402,18.0,1949108,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22745.0,2121.0 +4729402,4729403,18.0,1949109,1,1,17,1,1.0,11.0,1.0,15.0,4.0,56173,12.0,22745.0,2121.0 +4729403,4729404,18.0,1949110,1,1,17,4,6.0,40.0,6.0,15.0,4.0,336M,3.0,22745.0,2121.0 +4729404,4729405,18.0,1949111,1,2,17,1,1.0,30.0,5.0,15.0,4.0,55,11.0,22745.0,2121.0 +4729405,4729406,18.0,1949112,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729406,4729407,18.0,1949113,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729407,4729408,18.0,1949114,1,2,17,2,6.0,40.0,6.0,15.0,4.0,336M,3.0,22745.0,2121.0 +4729408,4729409,18.0,1949115,1,2,17,2,6.0,40.0,5.0,-9.0,4.0,5616,12.0,22745.0,2121.0 +4729409,4729410,18.0,1949116,1,2,17,1,6.0,5.0,6.0,15.0,4.0,56173,12.0,22745.0,2121.0 +4729410,4729411,18.0,1949117,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,813M,17.0,22745.0,2121.0 +4729411,4729412,18.0,1949118,1,1,17,4,3.0,25.0,4.0,15.0,4.0,44413,5.0,22745.0,2121.0 +4729412,4729413,18.0,1949119,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729413,4729414,18.0,1949120,1,2,17,1,6.0,60.0,6.0,15.0,4.0,45221,5.0,22745.0,2121.0 +4729414,4729415,18.0,1949121,1,1,17,1,6.0,30.0,6.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729415,4729416,18.0,1949122,1,1,17,1,6.0,6.0,6.0,15.0,4.0,3113,3.0,22745.0,2121.0 +4729416,4729417,18.0,1949123,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729417,4729418,18.0,1949124,1,1,17,1,1.0,10.0,4.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729418,4729419,18.0,1949125,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22745.0,2121.0 +4729419,4729420,18.0,1949126,1,2,17,1,1.0,12.0,1.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729420,4729421,18.0,1949127,1,2,17,4,6.0,10.0,5.0,15.0,4.0,4481,5.0,22745.0,2121.0 +4729421,4729422,18.0,1949128,1,1,17,1,6.0,35.0,6.0,15.0,4.0,813M,17.0,22745.0,2121.0 +4729422,4729423,18.0,1949129,1,1,17,4,6.0,18.0,6.0,15.0,4.0,562,12.0,22745.0,2121.0 +4729423,4729424,18.0,1949130,1,1,17,2,6.0,8.0,6.0,15.0,4.0,4511M,5.0,22745.0,2121.0 +4729424,4729425,18.0,1949131,1,2,17,1,1.0,32.0,5.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729425,4729426,18.0,1949132,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729426,4729427,18.0,1949133,1,1,17,1,3.0,40.0,6.0,15.0,4.0,3261,3.0,22745.0,2121.0 +4729427,4729428,18.0,1949134,1,1,17,4,1.0,12.0,1.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729428,4729429,18.0,1949135,1,1,17,1,1.0,5.0,5.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729429,4729430,18.0,1949136,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729430,4729431,18.0,1949137,1,1,17,1,6.0,30.0,5.0,15.0,4.0,4452,5.0,22745.0,2121.0 +4729431,4729432,18.0,1949138,1,1,17,4,3.0,15.0,4.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729432,4729433,18.0,1949139,1,2,17,1,1.0,30.0,1.0,15.0,4.0,5415,10.0,22745.0,2121.0 +4729433,4729434,18.0,1949140,1,2,17,1,6.0,30.0,6.0,15.0,4.0,721M,16.0,22745.0,2121.0 +4729434,4729435,18.0,1949141,1,2,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729435,4729436,18.0,1949142,1,2,17,1,6.0,13.0,6.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729436,4729437,18.0,1949143,1,1,17,4,1.0,20.0,4.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4729437,4729438,18.0,1949144,1,1,17,1,6.0,40.0,6.0,15.0,4.0,5419Z,10.0,22745.0,2121.0 +4729438,4729439,18.0,1949145,1,2,17,3,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22745.0,2121.0 +4729439,4729440,18.0,1949146,1,2,17,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729440,4729441,18.0,1949147,1,2,17,4,6.0,5.0,6.0,15.0,4.0,4481,5.0,22745.0,2121.0 +4729441,4729442,18.0,1949148,1,2,17,4,6.0,49.0,4.0,15.0,4.0,721M,16.0,22745.0,2121.0 +4729442,4729443,18.0,1949149,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729443,4729444,18.0,1949150,1,2,17,2,6.0,30.0,5.0,15.0,4.0,336M,3.0,22745.0,2121.0 +4729444,4729445,18.0,1949151,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729445,4729446,18.0,1949152,1,2,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22745.0,2121.0 +4729446,4729447,18.0,1949153,1,2,17,1,6.0,12.0,4.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729447,4729448,18.0,1949154,1,2,17,2,6.0,40.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729448,4729449,18.0,1949155,1,2,17,1,6.0,6.0,6.0,15.0,4.0,814,17.0,22745.0,2121.0 +4729449,4729450,18.0,1949156,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729450,4729451,18.0,1949157,1,2,17,4,6.0,20.0,4.0,15.0,4.0,4481,5.0,22745.0,2121.0 +4729451,4729452,18.0,1949158,1,1,17,1,6.0,28.0,6.0,15.0,4.0,52M2,9.0,22745.0,2121.0 +4729452,4729453,18.0,1949159,1,1,17,1,6.0,14.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729453,4729454,18.0,1949160,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22745.0,2121.0 +4729454,4729455,18.0,1949161,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729455,4729456,18.0,1949162,1,2,17,2,6.0,16.0,6.0,13.0,4.0,813M,17.0,22745.0,2121.0 +4729456,4729457,18.0,1949163,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729457,4729458,18.0,1949164,1,2,17,1,3.0,4.0,6.0,15.0,4.0,6244,14.0,22745.0,2121.0 +4729458,4729459,18.0,1949165,1,2,17,1,6.0,12.0,6.0,15.0,4.0,814,17.0,22745.0,2121.0 +4729459,4729460,18.0,1949166,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22745.0,2121.0 +4729460,4729461,18.0,1949167,1,1,17,1,6.0,38.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729461,4729462,18.0,1949168,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729462,4729463,18.0,1949169,1,1,17,4,6.0,3.0,6.0,15.0,4.0,6111,13.0,22745.0,2121.0 +4729463,4729464,18.0,1949170,1,1,17,1,6.0,20.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729464,4729465,18.0,1949171,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,484,6.0,22745.0,2121.0 +4729465,4729466,18.0,1949172,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729466,4729467,18.0,1949173,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729467,4729468,18.0,1949174,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729468,4729469,18.0,1949175,1,2,17,1,1.0,18.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729469,4729470,18.0,1949176,1,1,17,2,6.0,30.0,1.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729470,4729471,18.0,1949177,1,1,17,1,6.0,16.0,2.0,15.0,4.0,51913,8.0,22745.0,2121.0 +4729471,4729472,18.0,1949178,1,1,17,1,6.0,30.0,5.0,15.0,4.0,4452,5.0,22745.0,2121.0 +4729472,4729473,18.0,1949179,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22745.0,2121.0 +4729473,4729474,18.0,1949180,1,1,17,1,3.0,40.0,6.0,15.0,4.0,3261,3.0,22745.0,2121.0 +4729474,4729475,18.0,1949181,1,1,17,1,6.0,20.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729475,4729476,18.0,1949182,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729476,4729477,18.0,1949183,1,2,17,1,6.0,36.0,5.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729477,4729478,18.0,1949184,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729478,4729479,18.0,1949185,1,2,17,2,6.0,16.0,6.0,13.0,4.0,813M,17.0,22745.0,2121.0 +4729479,4729480,18.0,1949186,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729480,4729481,18.0,1949187,1,1,17,2,1.0,16.0,3.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729481,4729482,18.0,1949188,1,2,17,1,1.0,10.0,3.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729482,4729483,18.0,1949189,1,1,17,1,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729483,4729484,18.0,1949190,1,1,17,1,1.0,17.0,1.0,15.0,4.0,336M,3.0,22745.0,2121.0 +4729484,4729485,18.0,1949191,1,2,17,1,6.0,36.0,5.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729485,4729486,18.0,1949192,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729486,4729487,18.0,1949193,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729487,4729488,18.0,1949194,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,813M,17.0,22745.0,2121.0 +4729488,4729489,18.0,1949195,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729489,4729490,18.0,1949196,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,4511M,5.0,22745.0,2121.0 +4729490,4729491,18.0,1949197,1,1,17,4,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4729491,4729492,18.0,1949198,1,2,17,1,6.0,6.0,6.0,15.0,4.0,6111,13.0,22745.0,2121.0 +4729492,4729493,18.0,1949199,1,1,17,1,6.0,30.0,6.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729493,4729494,18.0,1949200,1,2,17,1,6.0,40.0,5.0,15.0,4.0,623M,14.0,22745.0,2121.0 +4729494,4729495,18.0,1949201,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729495,4729496,18.0,1949202,1,2,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729496,4729497,18.0,1949203,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22745.0,2121.0 +4729497,4729498,18.0,1949204,1,1,17,2,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729498,4729499,18.0,1949205,1,1,17,1,6.0,35.0,5.0,15.0,4.0,56173,12.0,22745.0,2121.0 +4729499,4729500,18.0,1949206,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729500,4729501,18.0,1949207,1,2,17,1,6.0,40.0,6.0,15.0,4.0,712,16.0,22745.0,2121.0 +4729501,4729502,18.0,1949208,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729502,4729503,18.0,1949209,1,1,17,4,1.0,40.0,4.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729503,4729504,18.0,1949210,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,442,5.0,22745.0,2121.0 +4729504,4729505,18.0,1949211,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22745.0,2121.0 +4729505,4729506,18.0,1949212,1,1,17,4,6.0,35.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729506,4729507,18.0,1949213,1,1,17,1,6.0,35.0,5.0,15.0,4.0,56173,12.0,22745.0,2121.0 +4729507,4729508,18.0,1949214,1,2,17,2,1.0,6.0,1.0,15.0,4.0,814,17.0,22745.0,2121.0 +4729508,4729509,18.0,1949215,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729509,4729510,18.0,1949216,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729510,4729511,18.0,1949217,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729511,4729512,18.0,1949218,1,1,17,1,6.0,-9.0,-9.0,15.0,2.0,928P,18.0,22745.0,2121.0 +4729512,4729513,18.0,1949219,1,1,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729513,4729514,18.0,1949220,1,2,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729514,4729515,18.0,1949221,1,2,17,1,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729515,4729516,18.0,1949222,1,2,17,1,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729516,4729517,18.0,1949223,1,2,17,4,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729517,4729518,18.0,1949224,1,2,17,1,6.0,5.0,6.0,15.0,4.0,56173,12.0,22745.0,2121.0 +4729518,4729519,18.0,1949225,1,1,17,1,1.0,35.0,5.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729519,4729520,18.0,1949226,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729520,4729521,18.0,1949227,1,1,17,4,6.0,35.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729521,4729522,18.0,1949228,1,1,17,1,6.0,20.0,5.0,15.0,4.0,531M,9.0,22745.0,2121.0 +4729522,4729523,18.0,1949229,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,54194,10.0,22745.0,2121.0 +4729523,4729524,18.0,1949230,1,1,17,4,1.0,20.0,1.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729524,4729525,18.0,1949231,1,2,17,2,6.0,16.0,6.0,13.0,4.0,813M,17.0,22745.0,2121.0 +4729525,4729526,18.0,1949232,1,2,17,1,6.0,8.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729526,4729527,18.0,1949233,1,2,17,3,1.0,20.0,1.0,15.0,4.0,4539,5.0,22745.0,2121.0 +4729527,4729528,18.0,1949234,1,1,17,1,6.0,20.0,4.0,15.0,4.0,4244,4.0,22745.0,2121.0 +4729528,4729529,18.0,1949235,1,1,17,3,6.0,45.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729529,4729530,18.0,1949236,1,1,17,3,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729530,4729531,18.0,1949237,1,2,17,2,3.0,-9.0,-9.0,13.0,4.0,999920,-9.0,22745.0,2121.0 +4729531,4729532,18.0,1949238,1,1,17,1,6.0,30.0,6.0,15.0,4.0,5617Z,12.0,22745.0,2121.0 +4729532,4729533,18.0,1949239,1,2,17,1,6.0,35.0,6.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729533,4729534,18.0,1949240,1,1,17,1,3.0,40.0,6.0,15.0,4.0,3261,3.0,22745.0,2121.0 +4729534,4729535,18.0,1949241,1,2,17,2,6.0,15.0,1.0,15.0,4.0,4539,5.0,22745.0,2121.0 +4729535,4729536,18.0,1949242,1,2,17,1,6.0,60.0,6.0,15.0,4.0,45221,5.0,22745.0,2121.0 +4729536,4729537,18.0,1949243,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22745.0,2121.0 +4729537,4729538,18.0,1949244,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729538,4729539,18.0,1949245,1,1,17,2,1.0,13.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729539,4729540,18.0,1949246,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729540,4729541,18.0,1949247,1,1,17,2,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729541,4729542,18.0,1949248,1,2,17,1,1.0,60.0,1.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729542,4729543,18.0,1949249,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729543,4729544,18.0,1949250,1,2,17,1,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729544,4729545,18.0,1949251,1,1,17,3,3.0,40.0,6.0,15.0,4.0,334M1,3.0,22745.0,2121.0 +4729545,4729546,18.0,1949252,1,1,17,1,6.0,30.0,6.0,15.0,4.0,5617Z,12.0,22745.0,2121.0 +4729546,4729547,19.0,1949253,1,1,17,1,1.0,15.0,4.0,15.0,4.0,44511,5.0,22745.0,2121.0 +4729547,4729548,19.0,1949254,1,2,17,2,3.0,42.0,6.0,15.0,4.0,6244,14.0,22745.0,2121.0 +4729548,4729549,19.0,1949255,1,2,17,1,6.0,49.0,4.0,15.0,4.0,721M,16.0,22745.0,2121.0 +4729549,4729550,19.0,1949256,1,2,17,2,1.0,20.0,5.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729550,4729551,19.0,1949257,1,2,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729551,4729552,19.0,1949258,1,2,17,1,6.0,12.0,4.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729552,4729553,19.0,1949259,1,2,17,1,1.0,28.0,1.0,15.0,4.0,814,17.0,22745.0,2121.0 +4729553,4729554,19.0,1949260,1,1,17,1,6.0,3.0,6.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729554,4729555,19.0,1949261,1,2,17,2,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729555,4729556,19.0,1949262,1,1,17,1,6.0,8.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729556,4729557,19.0,1949263,1,2,17,1,6.0,15.0,6.0,15.0,4.0,6241,14.0,22745.0,2121.0 +4729557,4729558,19.0,1949264,1,2,17,2,6.0,37.0,5.0,15.0,4.0,4481,5.0,22745.0,2121.0 +4729558,4729559,19.0,1949265,1,1,17,4,1.0,25.0,4.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4729559,4729560,19.0,1949266,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729560,4729561,19.0,1949267,1,2,17,3,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729561,4729562,19.0,1949268,1,2,17,1,1.0,9.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729562,4729563,19.0,1949269,1,1,17,1,3.0,30.0,6.0,15.0,4.0,23,2.0,22745.0,2121.0 +4729563,4729564,19.0,1949270,1,1,17,1,6.0,40.0,5.0,15.0,4.0,443142,5.0,22745.0,2121.0 +4729564,4729565,19.0,1949271,1,2,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729565,4729566,19.0,1949272,1,1,17,3,1.0,5.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729566,4729567,19.0,1949273,1,2,17,4,1.0,20.0,6.0,15.0,4.0,213,1.0,22745.0,2121.0 +4729567,4729568,19.0,1949274,1,2,17,1,1.0,30.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729568,4729569,19.0,1949275,1,2,17,1,1.0,17.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729569,4729570,19.0,1949276,1,2,17,1,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729570,4729571,19.0,1949277,1,1,17,3,1.0,40.0,4.0,-9.0,4.0,111,1.0,22745.0,2121.0 +4729571,4729572,19.0,1949278,1,1,17,1,1.0,40.0,1.0,-9.0,4.0,5613,12.0,22745.0,2121.0 +4729572,4729573,19.0,1949279,1,1,17,1,6.0,48.0,6.0,15.0,4.0,337,3.0,22745.0,2121.0 +4729573,4729574,19.0,1949280,1,1,17,1,6.0,30.0,6.0,15.0,4.0,4452,5.0,22745.0,2121.0 +4729574,4729575,19.0,1949281,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729575,4729576,19.0,1949282,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729576,4729577,19.0,1949283,1,2,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729577,4729578,19.0,1949284,1,2,17,1,1.0,12.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729578,4729579,19.0,1949285,1,2,17,1,6.0,12.0,6.0,15.0,4.0,814,17.0,22745.0,2121.0 +4729579,4729580,19.0,1949286,1,2,17,1,6.0,40.0,6.0,15.0,4.0,3321,3.0,22745.0,2121.0 +4729580,4729581,19.0,1949287,1,2,17,1,1.0,6.0,2.0,15.0,4.0,6216,14.0,22745.0,2121.0 +4729581,4729582,19.0,1949288,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729582,4729583,19.0,1949289,1,2,17,1,6.0,32.0,6.0,15.0,4.0,52M2,9.0,22745.0,2121.0 +4729583,4729584,19.0,1949290,1,2,17,1,6.0,24.0,6.0,15.0,4.0,53M,9.0,22745.0,2121.0 +4729584,4729585,19.0,1949291,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,23,2.0,22745.0,2121.0 +4729585,4729586,19.0,1949292,1,2,17,1,6.0,20.0,5.0,15.0,4.0,5112,8.0,22745.0,2121.0 +4729586,4729587,19.0,1949293,1,2,17,1,6.0,20.0,6.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729587,4729588,19.0,1949294,1,2,17,1,6.0,30.0,5.0,15.0,4.0,4511M,5.0,22745.0,2121.0 +4729588,4729589,19.0,1949295,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729589,4729590,19.0,1949296,1,2,17,4,6.0,5.0,6.0,15.0,4.0,4481,5.0,22745.0,2121.0 +4729590,4729591,19.0,1949297,1,2,17,2,1.0,25.0,3.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729591,4729592,19.0,1949298,1,1,17,1,1.0,20.0,3.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729592,4729593,19.0,1949299,1,2,17,4,6.0,10.0,4.0,15.0,4.0,623M,14.0,22745.0,2121.0 +4729593,4729594,19.0,1949300,1,2,17,1,6.0,35.0,5.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729594,4729595,19.0,1949301,1,1,17,1,6.0,35.0,6.0,15.0,4.0,813M,17.0,22745.0,2121.0 +4729595,4729596,19.0,1949302,1,1,17,1,6.0,40.0,3.0,-9.0,4.0,722Z,16.0,22745.0,2121.0 +4729596,4729597,19.0,1949303,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,334M2,3.0,22745.0,2121.0 +4729597,4729598,19.0,1949304,1,1,17,1,6.0,48.0,6.0,15.0,4.0,337,3.0,22745.0,2121.0 +4729598,4729599,19.0,1949305,1,1,17,4,1.0,25.0,4.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4729599,4729600,19.0,1949306,1,2,17,4,6.0,40.0,6.0,15.0,4.0,5111Z,8.0,22745.0,2121.0 +4729600,4729601,19.0,1949307,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22745.0,2121.0 +4729601,4729602,19.0,1949308,1,2,17,1,1.0,15.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729602,4729603,19.0,1949309,1,2,17,1,1.0,15.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729603,4729604,19.0,1949310,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729604,4729605,19.0,1949311,1,1,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729605,4729606,19.0,1949312,1,1,17,4,6.0,-9.0,-9.0,13.0,4.0,-9,-9.0,22745.0,2121.0 +4729606,4729607,19.0,1949313,1,2,17,1,1.0,32.0,4.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +4729607,4729608,19.0,1949314,1,2,17,1,6.0,40.0,5.0,15.0,4.0,5413,10.0,22745.0,2121.0 +4729608,4729609,19.0,1949315,1,2,17,1,6.0,58.0,5.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729609,4729610,19.0,1949316,1,1,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729610,4729611,19.0,1949317,1,2,17,1,6.0,15.0,6.0,15.0,4.0,712,16.0,22745.0,2121.0 +4729611,4729612,19.0,1949318,1,2,17,1,1.0,10.0,5.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4729612,4729613,19.0,1949319,1,2,17,1,6.0,44.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729613,4729614,19.0,1949320,1,1,17,4,1.0,40.0,4.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729614,4729615,19.0,1949321,1,1,17,1,6.0,4.0,3.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729615,4729616,19.0,1949322,1,2,17,1,3.0,12.0,3.0,15.0,4.0,9211MP,18.0,22745.0,2121.0 +4729616,4729617,19.0,1949323,1,2,17,1,1.0,12.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729617,4729618,19.0,1949324,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729618,4729619,19.0,1949325,1,2,17,1,6.0,30.0,6.0,15.0,4.0,9211MP,18.0,22745.0,2121.0 +4729619,4729620,19.0,1949326,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,813M,17.0,22745.0,2121.0 +4729620,4729621,19.0,1949327,1,1,17,4,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729621,4729622,19.0,1949328,1,2,17,1,1.0,50.0,5.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729622,4729623,19.0,1949329,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729623,4729624,19.0,1949330,1,1,17,1,1.0,9.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729624,4729625,19.0,1949331,1,1,17,1,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729625,4729626,19.0,1949332,1,2,17,1,6.0,20.0,5.0,15.0,4.0,6211,14.0,22745.0,2121.0 +4729626,4729627,19.0,1949333,1,2,17,2,6.0,37.0,5.0,15.0,4.0,4481,5.0,22745.0,2121.0 +4729627,4729628,19.0,1949334,1,2,17,4,1.0,20.0,2.0,15.0,4.0,5413,10.0,22745.0,2121.0 +4729628,4729629,19.0,1949335,1,2,17,1,3.0,40.0,5.0,15.0,4.0,6241,14.0,22745.0,2121.0 +4729629,4729630,19.0,1949336,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,6111,13.0,22745.0,2121.0 +4729630,4729631,19.0,1949337,1,2,17,4,1.0,20.0,1.0,15.0,4.0,45221,5.0,22745.0,2121.0 +4729631,4729632,19.0,1949338,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4729632,4729633,19.0,1949339,1,2,17,2,1.0,14.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729633,4729634,19.0,1949340,1,2,17,1,6.0,12.0,4.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729634,4729635,19.0,1949341,1,1,17,1,6.0,40.0,6.0,15.0,4.0,721M,16.0,22745.0,2121.0 +4729635,4729636,19.0,1949342,1,1,17,1,6.0,35.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729636,4729637,19.0,1949343,1,1,17,1,6.0,40.0,6.0,15.0,4.0,23,2.0,22745.0,2121.0 +4729637,4729638,19.0,1949344,1,1,17,1,6.0,20.0,6.0,15.0,4.0,336M,3.0,22745.0,2121.0 +4729638,4729639,19.0,1949345,1,1,17,4,6.0,40.0,1.0,14.0,4.0,811192,17.0,22745.0,2121.0 +4729639,4729640,19.0,1949346,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729640,4729641,19.0,1949347,1,1,17,1,3.0,10.0,5.0,15.0,4.0,23,2.0,22745.0,2121.0 +4729641,4729642,19.0,1949348,1,2,17,1,6.0,60.0,6.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729642,4729643,19.0,1949349,1,2,17,1,6.0,30.0,2.0,15.0,4.0,8129,17.0,22745.0,2121.0 +4729643,4729644,19.0,1949350,1,1,17,1,6.0,20.0,3.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729644,4729645,19.0,1949351,1,2,17,1,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729645,4729646,19.0,1949352,1,1,17,1,6.0,25.0,5.0,-9.0,4.0,722Z,16.0,22745.0,2121.0 +4729646,4729647,19.0,1949353,1,1,17,1,6.0,40.0,6.0,15.0,4.0,23,2.0,22745.0,2121.0 +4729647,4729648,19.0,1949354,1,2,17,3,1.0,30.0,3.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729648,4729649,19.0,1949355,1,1,17,1,6.0,2.0,6.0,16.0,4.0,5419Z,10.0,22745.0,2121.0 +4729649,4729650,19.0,1949356,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729650,4729651,19.0,1949357,1,2,17,4,6.0,2.0,4.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729651,4729652,19.0,1949358,1,2,17,1,6.0,16.0,2.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729652,4729653,19.0,1949359,1,2,17,1,1.0,15.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729653,4729654,19.0,1949360,1,2,17,1,6.0,15.0,5.0,15.0,4.0,4481,5.0,22745.0,2121.0 +4729654,4729655,19.0,1949361,1,1,17,2,6.0,16.0,5.0,15.0,4.0,44511,5.0,22745.0,2121.0 +4729655,4729656,20.0,1949362,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729656,4729657,20.0,1949363,1,2,17,1,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729657,4729658,20.0,1949364,1,1,17,1,6.0,18.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729658,4729659,20.0,1949365,1,2,17,1,6.0,10.0,4.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729659,4729660,20.0,1949366,1,1,17,4,6.0,38.0,6.0,15.0,4.0,3116,3.0,22745.0,2121.0 +4729660,4729661,20.0,1949367,1,1,17,2,1.0,12.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729661,4729662,20.0,1949368,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729662,4729663,20.0,1949369,1,1,17,4,1.0,4.0,4.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729663,4729664,20.0,1949370,1,1,17,2,1.0,30.0,1.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729664,4729665,20.0,1949371,1,1,17,4,1.0,15.0,4.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4729665,4729666,20.0,1949372,1,2,17,1,6.0,35.0,6.0,15.0,4.0,9211MP,18.0,22745.0,2121.0 +4729666,4729667,20.0,1949373,1,2,17,1,1.0,30.0,6.0,15.0,4.0,45121,5.0,22745.0,2121.0 +4729667,4729668,20.0,1949374,1,2,17,2,3.0,-9.0,-9.0,-9.0,4.0,4244,4.0,22745.0,2121.0 +4729668,4729669,20.0,1949375,1,2,17,2,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729669,4729670,20.0,1949376,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,6244,14.0,22745.0,2121.0 +4729670,4729671,20.0,1949377,1,1,17,2,2.0,18.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729671,4729672,20.0,1949378,1,2,17,1,1.0,32.0,5.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729672,4729673,20.0,1949379,1,1,17,2,6.0,25.0,6.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4729673,4729674,20.0,1949380,1,2,17,1,6.0,14.0,1.0,15.0,4.0,4481,5.0,22745.0,2121.0 +4729674,4729675,20.0,1949381,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729675,4729676,20.0,1949382,1,1,17,1,6.0,40.0,5.0,15.0,4.0,3327,3.0,22745.0,2121.0 +4729676,4729677,20.0,1949383,1,1,17,1,6.0,30.0,3.0,15.0,4.0,44511,5.0,22745.0,2121.0 +4729677,4729678,20.0,1949384,1,2,17,2,1.0,15.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729678,4729679,20.0,1949385,1,1,17,4,1.0,70.0,1.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729679,4729680,20.0,1949386,1,1,17,1,6.0,14.0,4.0,15.0,4.0,4MS,5.0,22745.0,2121.0 +4729680,4729681,20.0,1949387,1,1,17,2,3.0,20.0,6.0,15.0,4.0,5617Z,12.0,22745.0,2121.0 +4729681,4729682,20.0,1949388,1,2,17,2,3.0,40.0,5.0,-9.0,4.0,5613,12.0,22745.0,2121.0 +4729682,4729683,20.0,1949389,1,1,17,2,6.0,-9.0,-9.0,14.0,4.0,-9,-9.0,22745.0,2121.0 +4729683,4729684,20.0,1949390,1,2,17,1,1.0,50.0,6.0,15.0,4.0,5415,10.0,22745.0,2121.0 +4729684,4729685,20.0,1949391,1,1,17,1,1.0,5.0,5.0,16.0,4.0,8121M,17.0,22745.0,2121.0 +4729685,4729686,20.0,1949392,1,1,17,4,6.0,8.0,6.0,15.0,4.0,2211P,7.0,22745.0,2121.0 +4729686,4729687,20.0,1949393,1,2,17,2,6.0,18.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729687,4729688,20.0,1949394,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729688,4729689,20.0,1949395,1,2,17,1,1.0,36.0,1.0,15.0,4.0,622M,15.0,22745.0,2121.0 +4729689,4729690,20.0,1949396,1,2,17,4,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729690,4729691,21.0,1949397,1,2,17,1,6.0,30.0,2.0,15.0,4.0,8129,17.0,22745.0,2121.0 +4729691,4729692,21.0,1949398,1,1,17,1,6.0,-9.0,-9.0,16.0,4.0,813M,17.0,22745.0,2121.0 +4729692,4729693,21.0,1949399,1,1,17,1,6.0,45.0,6.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729693,4729694,21.0,1949400,1,2,17,1,6.0,44.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729694,4729695,21.0,1949401,1,1,17,3,1.0,40.0,4.0,-9.0,4.0,111,1.0,22745.0,2121.0 +4729695,4729696,21.0,1949402,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729696,4729697,21.0,1949403,1,1,17,2,1.0,10.0,5.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729697,4729698,21.0,1949404,1,2,17,1,1.0,12.0,4.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729698,4729699,21.0,1949405,1,1,17,1,1.0,20.0,3.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729699,4729700,22.0,1949406,1,2,17,4,1.0,20.0,6.0,15.0,4.0,213,1.0,22745.0,2121.0 +4729700,4729701,22.0,1949407,1,1,17,1,6.0,40.0,4.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729701,4729702,22.0,1949408,1,1,17,1,6.0,32.0,6.0,15.0,4.0,712,16.0,22745.0,2121.0 +4729702,4729703,22.0,1949409,1,2,17,2,3.0,-9.0,-9.0,15.0,4.0,6111,13.0,22745.0,2121.0 +4729703,4729704,22.0,1949410,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729704,4729705,22.0,1949411,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22745.0,2121.0 +4729705,4729706,22.0,1949412,1,2,17,1,1.0,25.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4729706,4729707,22.0,1949413,1,1,17,1,6.0,35.0,5.0,15.0,4.0,5121,8.0,22745.0,2121.0 +4729707,4729708,22.0,1949414,1,1,17,1,3.0,50.0,6.0,15.0,4.0,5617Z,12.0,22745.0,2121.0 +4729708,4729709,22.0,1949415,1,1,17,1,6.0,40.0,6.0,15.0,4.0,336M,3.0,22745.0,2121.0 +4729709,4729710,22.0,1949416,1,1,17,1,6.0,48.0,6.0,15.0,4.0,337,3.0,22745.0,2121.0 +4729710,4729711,24.0,1949417,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4729711,4729712,24.0,1949418,1,1,17,4,6.0,4.0,6.0,15.0,4.0,611M3,13.0,22745.0,2121.0 +4729712,4729713,25.0,1949419,1,1,17,2,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4729713,4729714,25.0,1949420,1,1,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729714,4729715,25.0,1949421,1,1,17,2,3.0,-9.0,-9.0,-9.0,4.0,999920,-9.0,22745.0,2121.0 +4729715,4729716,25.0,1949422,1,2,17,2,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729716,4729717,25.0,1949423,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729717,4729718,28.0,1949424,1,1,17,1,1.0,35.0,1.0,-9.0,4.0,722Z,16.0,22745.0,2121.0 +4729718,4729719,29.0,1949425,1,2,17,4,1.0,20.0,6.0,-9.0,4.0,722Z,16.0,22745.0,2121.0 +4729719,4729720,29.0,1949426,1,1,17,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4729720,4729721,29.0,1949427,1,2,17,4,1.0,40.0,1.0,-9.0,4.0,8131,17.0,22745.0,2121.0 +4729721,4729722,29.0,1949428,1,1,17,4,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729722,4729723,29.0,1949429,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22745.0,2121.0 +4729723,4729724,29.0,1949430,1,1,17,4,1.0,20.0,1.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4729724,4729725,34.0,1949431,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729725,4729726,35.0,1949432,1,2,17,4,1.0,40.0,6.0,16.0,4.0,5415,10.0,22745.0,2121.0 +4729726,4729727,35.0,1949433,1,2,17,4,1.0,40.0,6.0,16.0,4.0,5415,10.0,22745.0,2121.0 +4729727,4729728,37.0,1949434,1,2,17,2,1.0,25.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4729728,4729729,42.0,1949435,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,336M,3.0,22745.0,2121.0 +4729729,4729730,42.0,1949436,1,1,17,1,1.0,30.0,1.0,-9.0,4.0,6243,14.0,22745.0,2121.0 +4729730,4729731,42.0,1949437,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729731,4729732,51.0,1949438,1,1,17,1,3.0,-9.0,-9.0,-9.0,4.0,999920,-9.0,22745.0,2121.0 +4729732,4729733,51.0,1949439,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729733,4729734,51.0,1949440,1,1,17,4,1.0,50.0,1.0,-9.0,4.0,4453,5.0,22745.0,2121.0 +4729734,4729735,51.0,1949441,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729735,4729736,51.0,1949442,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729736,4729737,51.0,1949443,1,1,17,1,1.0,30.0,1.0,-9.0,4.0,6243,14.0,22745.0,2121.0 +4729737,4729738,51.0,1949444,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729738,4729739,51.0,1949445,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729739,4729740,51.0,1949446,1,1,17,1,1.0,40.0,4.0,-9.0,4.0,336M,3.0,22745.0,2121.0 +4729740,4729741,51.0,1949447,1,1,17,1,6.0,50.0,6.0,-9.0,4.0,5321,9.0,22745.0,2121.0 +4729741,4729742,51.0,1949448,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,3MS,3.0,22745.0,2121.0 +4729742,4729743,53.0,1949449,1,2,17,1,1.0,20.0,1.0,-9.0,4.0,6243,14.0,22745.0,2121.0 +4729743,4729744,54.0,1949450,1,1,17,1,6.0,-9.0,-9.0,-9.0,2.0,-9,-9.0,22745.0,2121.0 +4729744,4729745,54.0,1949451,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729745,4729746,58.0,1949452,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729746,4729747,58.0,1949453,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729747,4729748,60.0,1949454,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729748,4729749,60.0,1949455,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729749,4729750,62.0,1949456,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729750,4729751,64.0,1949457,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729751,4729752,64.0,1949458,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729752,4729753,64.0,1949459,1,2,17,3,1.0,45.0,4.0,-9.0,4.0,111,1.0,22745.0,2121.0 +4729753,4729754,64.0,1949460,1,1,17,3,6.0,-9.0,-9.0,-9.0,2.0,-9,-9.0,22745.0,2121.0 +4729754,4729755,64.0,1949461,1,2,17,3,1.0,45.0,4.0,-9.0,4.0,111,1.0,22745.0,2121.0 +4729755,4729756,64.0,1949462,1,1,17,3,6.0,-9.0,-9.0,-9.0,2.0,-9,-9.0,22745.0,2121.0 +4729756,4729757,64.0,1949463,1,1,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729757,4729758,64.0,1949464,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729758,4729759,64.0,1949465,1,1,17,3,6.0,-9.0,-9.0,-9.0,2.0,-9,-9.0,22745.0,2121.0 +4729759,4729760,78.0,1949466,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4729764,4729765,17.0,1949770,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22757.0,2127.0 +4729804,4729805,18.0,1949810,1,2,17,1,1.0,18.0,4.0,15.0,4.0,611M1,13.0,22757.0,2127.0 +4729848,4729849,18.0,1949854,1,1,17,2,6.0,5.0,6.0,15.0,4.0,45121,5.0,22791.0,2140.0 +4729857,4729858,18.0,1949863,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22757.0,2127.0 +4729950,4729951,18.0,1949956,1,2,17,3,6.0,18.0,3.0,15.0,4.0,611M1,13.0,22757.0,2127.0 +4730031,4730032,18.0,1950037,1,1,17,4,1.0,6.0,1.0,15.0,4.0,611M3,13.0,22757.0,2127.0 +4730060,4730061,18.0,1950066,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22757.0,2127.0 +4730097,4730098,19.0,1950103,1,1,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22757.0,2127.0 +4730140,4730141,19.0,1950146,1,1,17,1,1.0,20.0,5.0,15.0,4.0,515,8.0,22757.0,2127.0 +4730185,4730186,19.0,1950191,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22791.0,2140.0 +4730205,4730206,19.0,1950211,1,1,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22757.0,2127.0 +4730230,4730231,19.0,1950236,1,2,17,1,6.0,40.0,6.0,15.0,4.0,713Z,16.0,22757.0,2127.0 +4730286,4730287,19.0,1950292,1,2,17,4,6.0,7.0,5.0,15.0,4.0,722Z,16.0,22791.0,2140.0 +4730591,4730592,24.0,1950597,1,2,17,4,1.0,15.0,4.0,15.0,4.0,44611,5.0,22791.0,2140.0 +4730626,4730627,25.0,1950632,1,1,17,2,3.0,-9.0,-9.0,-9.0,4.0,999920,-9.0,22757.0,2127.0 +4730700,4730701,42.0,1950706,1,1,17,1,6.0,40.0,4.0,16.0,4.0,622M,15.0,22791.0,2140.0 +4735217,4735218,18.0,1959374,1,2,17,4,6.0,5.0,6.0,15.0,4.0,4481,5.0,22734.0,2115.0 +4735218,4735219,18.0,1959375,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22702.0,2110.0 +4735220,4735221,18.0,1959377,1,2,17,4,1.0,40.0,1.0,16.0,4.0,611M1,13.0,22681.0,2107.0 +4735221,4735222,18.0,1959378,1,2,17,1,1.0,10.0,6.0,15.0,4.0,611M1,13.0,22681.0,2107.0 +4735223,4735224,18.0,1959380,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22681.0,2107.0 +4735329,4735330,19.0,1959486,1,2,17,1,6.0,10.0,5.0,15.0,4.0,722Z,16.0,22734.0,2115.0 +4735333,4735334,19.0,1959490,1,1,17,1,6.0,42.0,6.0,15.0,4.0,713Z,16.0,22681.0,2107.0 +4735337,4735338,19.0,1959494,1,1,17,1,6.0,40.0,5.0,16.0,4.0,33641M1,3.0,22702.0,2110.0 +4735341,4735342,19.0,1959498,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,623M,14.0,22681.0,2107.0 +4735347,4735348,19.0,1959504,1,2,17,1,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22734.0,2115.0 +4735637,4735638,65.0,1959794,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22734.0,2115.0 +4737782,4737783,18.0,1965277,1,2,17,2,2.0,38.0,1.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4737783,4737784,18.0,1965278,1,2,17,1,6.0,12.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4737784,4737785,18.0,1965280,1,1,17,3,1.0,65.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4737785,4737786,18.0,1965281,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4737786,4737787,18.0,1965282,1,2,17,4,3.0,27.0,4.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4737787,4737788,18.0,1965285,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4737788,4737789,18.0,1965286,1,1,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4737789,4737790,42.0,1965288,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4737790,4737791,18.0,1965291,1,2,17,4,1.0,6.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4737791,4737792,29.0,1965295,1,1,17,4,1.0,50.0,1.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4737792,4737793,17.0,1965296,1,2,17,3,6.0,-9.0,-9.0,15.0,-9.0,-9,-9.0,22745.0,2121.0 +4737793,4737794,19.0,1965298,1,1,17,2,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4737794,4737795,18.0,1965299,1,2,17,4,1.0,9.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4737795,4737796,21.0,1965301,1,2,17,1,6.0,60.0,6.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4737796,4737797,20.0,1965303,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4737797,4737798,19.0,1965304,1,1,17,1,6.0,35.0,6.0,15.0,4.0,813M,17.0,22745.0,2121.0 +4737798,4737799,18.0,1965306,1,2,17,1,6.0,4.0,5.0,15.0,4.0,712,16.0,22745.0,2121.0 +4737799,4737800,20.0,1965307,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4737800,4737801,18.0,1965308,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4737801,4737802,18.0,1965309,1,1,17,3,6.0,38.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4737802,4737803,18.0,1965310,1,2,17,1,6.0,99.0,6.0,15.0,4.0,721M,16.0,22745.0,2121.0 +4737803,4737804,18.0,1965312,1,1,17,3,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4737804,4737805,22.0,1965313,1,1,17,4,6.0,-9.0,-9.0,13.0,4.0,-9,-9.0,22745.0,2121.0 +4737805,4737806,19.0,1965314,1,1,17,1,6.0,36.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4737806,4737807,18.0,1965315,1,2,17,1,1.0,6.0,5.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4737807,4737808,24.0,1965316,1,2,17,4,1.0,9.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4737808,4737809,18.0,1965317,1,1,17,1,6.0,36.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4738024,4738025,18.0,1965897,1,1,17,1,1.0,30.0,2.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4738025,4738026,18.0,1965901,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4738026,4738027,51.0,1965903,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,722Z,16.0,22745.0,2121.0 +4738027,4738028,19.0,1965904,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4738028,4738029,19.0,1965905,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4738029,4738030,19.0,1965907,1,2,17,1,1.0,17.0,1.0,15.0,4.0,4539,5.0,22745.0,2121.0 +4738030,4738031,17.0,1965910,1,2,17,3,6.0,-9.0,-9.0,-9.0,4.0,611M1,13.0,22745.0,2121.0 +4738031,4738032,19.0,1965911,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4738032,4738033,21.0,1965913,1,1,17,1,6.0,40.0,6.0,15.0,4.0,721M,16.0,22745.0,2121.0 +4738033,4738034,19.0,1965915,1,2,17,2,1.0,8.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4738034,4738035,18.0,1965916,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4738035,4738036,22.0,1965917,1,2,17,2,6.0,10.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4738036,4738037,19.0,1965918,1,1,17,1,1.0,40.0,1.0,15.0,4.0,3219ZM,3.0,22745.0,2121.0 +4738037,4738038,18.0,1965920,1,1,17,1,1.0,40.0,3.0,15.0,4.0,5413,10.0,22745.0,2121.0 +4738038,4738039,19.0,1965921,1,2,17,1,1.0,20.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4738039,4738040,35.0,1965922,1,1,17,4,6.0,12.0,6.0,-9.0,4.0,713Z,16.0,22745.0,2121.0 +4738040,4738041,19.0,1965923,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4738041,4738042,19.0,1965925,1,2,17,4,1.0,3.0,6.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4738042,4738043,19.0,1965929,1,1,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4738043,4738044,18.0,1965930,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4738044,4738045,19.0,1965932,1,2,17,1,6.0,23.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4738045,4738046,21.0,1965933,1,1,17,1,6.0,6.0,6.0,15.0,4.0,515,8.0,22745.0,2121.0 +4738046,4738047,18.0,1965934,1,1,17,4,6.0,40.0,6.0,15.0,4.0,23,2.0,22745.0,2121.0 +4738047,4738048,19.0,1965935,1,1,17,4,6.0,40.0,6.0,15.0,4.0,336M,3.0,22745.0,2121.0 +4738048,4738049,19.0,1965936,1,1,17,1,6.0,30.0,3.0,15.0,4.0,51111,8.0,22745.0,2121.0 +4738049,4738050,18.0,1965937,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4738347,4738348,24.0,1966895,1,2,17,4,6.0,20.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4738348,4738349,18.0,1966896,1,1,17,1,1.0,5.0,5.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4738349,4738350,18.0,1966899,1,1,17,4,6.0,40.0,6.0,15.0,4.0,721M,16.0,22745.0,2121.0 +4738350,4738351,18.0,1966900,1,2,17,1,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4738351,4738352,18.0,1966901,1,2,17,1,1.0,20.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4740672,4740673,18.0,1970854,1,1,17,4,6.0,-9.0,-9.0,16.0,4.0,-9,-9.0,22745.0,2121.0 +4740673,4740674,19.0,1970856,1,1,17,1,1.0,9.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4740674,4740675,19.0,1970857,1,1,17,3,6.0,40.0,6.0,15.0,4.0,721M,16.0,22745.0,2121.0 +4740675,4740676,19.0,1970858,1,1,17,1,6.0,6.0,3.0,15.0,4.0,531M,9.0,22745.0,2121.0 +4740676,4740677,19.0,1970860,1,2,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4740677,4740678,18.0,1970861,1,2,17,1,1.0,10.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4740678,4740679,21.0,1970862,1,1,17,1,1.0,15.0,1.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4740679,4740680,18.0,1970863,1,2,17,4,6.0,30.0,6.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4740680,4740681,18.0,1970865,1,2,17,1,6.0,15.0,6.0,15.0,4.0,814,17.0,22745.0,2121.0 +4740681,4740682,18.0,1970866,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,443142,5.0,22745.0,2121.0 +4740682,4740683,18.0,1970867,1,2,17,4,6.0,14.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4740683,4740684,18.0,1970868,1,1,17,1,3.0,-9.0,-9.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4740684,4740685,21.0,1970869,1,2,17,3,1.0,5.0,5.0,15.0,4.0,813M,17.0,22745.0,2121.0 +4740685,4740686,18.0,1970870,1,2,17,4,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4740686,4740687,28.0,1970871,1,2,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22745.0,2121.0 +4740687,4740688,21.0,1970876,1,1,17,1,6.0,30.0,5.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4740688,4740689,19.0,1970877,1,1,17,1,6.0,8.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4740689,4740690,19.0,1970879,1,2,17,1,1.0,20.0,5.0,15.0,4.0,713Z,16.0,22745.0,2121.0 +4740690,4740691,20.0,1970880,1,2,17,1,6.0,30.0,5.0,15.0,4.0,4511M,5.0,22745.0,2121.0 +4740691,4740692,18.0,1970883,1,2,17,1,6.0,14.0,4.0,15.0,4.0,6211,14.0,22745.0,2121.0 +4740692,4740693,24.0,1970884,1,1,17,4,1.0,30.0,1.0,16.0,4.0,611M1,13.0,22745.0,2121.0 +4740693,4740694,21.0,1970885,1,2,17,1,1.0,6.0,2.0,15.0,4.0,6216,14.0,22745.0,2121.0 +4740694,4740695,18.0,1970886,1,2,17,1,6.0,30.0,5.0,15.0,4.0,722Z,16.0,22745.0,2121.0 +4740695,4740696,19.0,1970887,1,1,17,4,6.0,40.0,6.0,15.0,4.0,721M,16.0,22745.0,2121.0 +4740696,4740697,18.0,1970890,1,1,17,2,6.0,-9.0,-9.0,15.0,4.0,-9,-9.0,22745.0,2121.0 +4740697,4740698,18.0,1970891,1,1,17,1,6.0,20.0,4.0,15.0,4.0,44413,5.0,22745.0,2121.0 +4740698,4740699,20.0,1970892,1,1,17,1,6.0,-9.0,-9.0,15.0,4.0,813M,17.0,22745.0,2121.0 +4740699,4740700,18.0,1970893,1,2,17,1,1.0,18.0,4.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4740700,4740701,19.0,1970894,1,2,17,1,1.0,15.0,1.0,15.0,4.0,611M1,13.0,22745.0,2121.0 +4740795,4740796,61.0,1971155,1,1,17,1,6.0,-9.0,-9.0,-9.0,4.0,-9,-9.0,22765.0,2130.0 +4740857,4740858,53.0,1971342,1,2,17,1,1.0,6.0,1.0,-9.0,4.0,6243,14.0,22808.0,2147.0 diff --git a/activitysim/examples/prototype_semcog/data/skims.omx b/activitysim/examples/production_semcog/data/skims.omx similarity index 55% rename from activitysim/examples/prototype_semcog/data/skims.omx rename to activitysim/examples/production_semcog/data/skims.omx index 5ecab0553..e8f0e3b89 100644 Binary files a/activitysim/examples/prototype_semcog/data/skims.omx and b/activitysim/examples/production_semcog/data/skims.omx differ diff --git a/activitysim/examples/production_semcog/data/taz.csv b/activitysim/examples/production_semcog/data/taz.csv new file mode 100644 index 000000000..ecc7e18c5 --- /dev/null +++ b/activitysim/examples/production_semcog/data/taz.csv @@ -0,0 +1,52 @@ +TAZ +2100 +2101 +2102 +2103 +2104 +2105 +2106 +2107 +2108 +2109 +2110 +2111 +2112 +2113 +2114 +2115 +2116 +2117 +2118 +2119 +2120 +2121 +2122 +2123 +2124 +2125 +2126 +2127 +2128 +2129 +2130 +2131 +2132 +2133 +2134 +2135 +2136 +2137 +2138 +2139 +2140 +2141 +2142 +2143 +2144 +2145 +2146 +2147 +2148 +2149 +2150 diff --git a/activitysim/examples/production_semcog/data_model/enums.py b/activitysim/examples/production_semcog/data_model/enums.py new file mode 100644 index 000000000..71c436924 --- /dev/null +++ b/activitysim/examples/production_semcog/data_model/enums.py @@ -0,0 +1,52 @@ +""" +Data Model Enumerated Variables + +Instructions: modify these enumerated variables as needed for your ActivitySim implementation. +""" +from enum import IntEnum + + +class PersonType(IntEnum): + """ + Provides integer mapping to the person type variable. A person type is + used as a co-variate in numerous ActivitySim modules to explain behavior. + """ + + FULL_TIME_WORKER = 1 + PART_TIME_WORKER = 2 + ADULT_STUDENT = 3 + NON_WORKING_ADULT = 4 + RETIRED = 5 + SECONDARY_SCHOOL_STUDENT = 6 + PRIMARY_SCHOOL_STUDENT = 7 + PRE_SCHOOL_CHILD = 8 + + +class HHT(IntEnum): + """ + Provide an integer mapping for household/family type. + """ + + GROUP_QUARTERS = 0 + FAMILY_MARRIED_COUPLE = 1 + FAMILY_MALE_HOUSEHOLDER_NO_WIFE = 2 + FAMILY_FEMANLE_HOUSEHOLDER_NO_HUSBAND = 3 + NON_FAMILY_MALE_ALONE = 4 + NON_FAMILY_MALE_NOT_ALONE = 5 + NON_FAMILY_FEMALE_ALONE = 6 + NON_FAMILY_FEMALE_NOT_ALONE = 7 + UNKNOWN = -9 + + +class ESR(IntEnum): + """ + Employment Status Recode + """ + + NA = -9 + EMPLOYED_AT_WORK = 1 + EMPLOYED_NOT_AT_WORK = 2 + UNEMPLOYED = 3 + ARMED_FORCES_AT_WORK = 4 + ARMED_FORCES_NOT_AT_WORK = 5 + NOT_IN_LABOR_FORCE = 6 diff --git a/activitysim/examples/production_semcog/data_model/input_checks.py b/activitysim/examples/production_semcog/data_model/input_checks.py new file mode 100644 index 000000000..b9b1f338b --- /dev/null +++ b/activitysim/examples/production_semcog/data_model/input_checks.py @@ -0,0 +1,397 @@ +""" +Data Model for ActivitySim Inputs + +Instructions: customize these example values for your own ActivitySim implementation +""" +from typing import List, Optional +import os, sys, logging + +from pydantic import BaseModel, validator +import pandera as pa +import numpy as np +import pandas as pd +import openmatrix as omx + +# for skim name parsing +import re +import csv + +from activitysim.core import config + +import enums as e + +from activitysim.abm.models.input_checker import TABLE_STORE, log_info + + +class Household(pa.DataFrameModel): + """ + Household data from PopulationSim and input to ActivitySim. + + Fields: + household_id: unique number identifying each household + age_of_head: age of the head of household + auto_ownership: Seeding for initial number of autos owned by the household + hhsize: number of people in the household + race_id: + children: Number of children in household + home_zone_id: zone number where household resides, MAZ in two zone systems, TAZ in one zone + income: Annual income in $ + adjinc: Adjusted income + HHT: Household type, see enums.HHT + home_zone_id: MAZ of household + TAZ: TAZ of household + """ + + household_id: int = pa.Field(unique=True, gt=0) + age_of_head: int = pa.Field(ge=0, coerce=True) + auto_ownership: int = pa.Field( + isin=(list([-9] + list(range(0, 7)))), coerce=True + ) # cars + hhsize: int = pa.Field(gt=0) # persons + race_id: int = pa.Field(gt=0, le=4, coerce=True) + children: int = pa.Field(ge=0, raise_warning=True, coerce=True) + type: int = pa.Field(gt=0) + hincp: float + adjinc: int = pa.Field(ge=0, raise_warning=True) + hht: int = pa.Field(isin=e.HHT, raise_warning=True, coerce=True) + home_zone_id: int = pa.Field(gt=0, nullable=False, coerce=True) + TAZ: int = pa.Field(gt=0, nullable=False, coerce=True) + + @pa.dataframe_check( + name="Household size equals the number of persons?", raise_warning=True + ) + def check_persons_per_household(cls, households: pd.DataFrame): + persons = TABLE_STORE["persons"] + hhsize = ( + persons.groupby("household_id")["person_id"] + .count() + .reindex(households.household_id) + ) + mismatched_indices = hhsize != households.set_index("household_id").hhsize + mismatched_cases = households.set_index("household_id").loc[mismatched_indices] + if len(mismatched_cases) > 0: + log_info( + f"Household size does not equal the number of persons at \n{mismatched_cases}.\n" + ) + else: + log_info(f"Household size equals the number of persons.\n") + return ~mismatched_indices + + @pa.dataframe_check(name="taz in landuse file?", raise_warning=True) + def check_home_zone_in_landuse(cls, households: pd.DataFrame): + land_use = TABLE_STORE["land_use"] + # Perform the check as before + result = households.TAZ.isin(land_use.TAZ).all() + output = households[~households["TAZ"].isin(land_use["TAZ"])]["TAZ"].tolist() + if result != True: + log_info(f"Tazes are not in landuse file at \n{output}.\n") + else: + log_info(f"All tazes are in landuse file.\n") + return result + + @pa.dataframe_check( + name="Household children equals the number of child (age<=17) in persons?", + raise_warning=True, + ) + def check_children_per_household(cls, households: pd.DataFrame): + persons = TABLE_STORE["persons"] + children = ( + persons[persons["age"] <= 17] # Filter rows where 'age' <= 17 + .groupby("household_id") # Group by 'householder' column + .size() # Count the number of rows in each group + .reindex(households.household_id) # Reindex based on household IDs + .fillna(0) # Fill NaN values with 0 if there are no matching groups + ) + mismatched_indices = children != households.set_index("household_id").children + mismatched_cases = households.set_index("household_id").loc[mismatched_indices] + if len(mismatched_cases) > 0: + log_info( + f"Household children does not equal the number of children in persons at \n{mismatched_cases}.\n" + ) + else: + log_info(f"Household children equals the number of children in persons.\n") + return ~mismatched_indices + + +class Person(pa.DataFrameModel): + """ + Person data from PopulationSim and input to ActivitySim. + Customize as needed for your application. + + person_id: unique person identification number + relate: + age: person age + sex: person sex + race_id: person race + member_id: person number in the household + household_id: household identification number + esr: Employment status recode (from PUMS) + wkhp: Usual hours worked per week past 12 months (from PUMS) + wkw: Weeks worked during past 12 months (from PUMS) + schg: Grade Level Attending (from PUMS) + mil: Military Service (from PUMS) + naicsp: North American Industry Classification System recode (from PUMS) + industry: Employment industry + zone_id: MAZ of the household + """ + + person_id: int = pa.Field(unique=True, gt=0) + relate: int = pa.Field(ge=0, le=17) + age: int = pa.Field(ge=0, le=100, coerce=True) + sex: int = pa.Field(ge=1, le=2) + race_id: int = pa.Field(gt=0, le=4) + member_id: int = pa.Field(gt=0) + household_id: int = pa.Field(nullable=False) + esr: float = pa.Field(isin=e.ESR) + wkhp: float = pa.Field(isin=(set([-9.0] + [float(x) for x in range(0, 100)]))) + wkw: float = pa.Field(isin=(set([-9.0] + [float(x) for x in range(0, 7)]))) + schg: float = pa.Field(isin=(set([-9.0] + [float(x) for x in range(0, 17)]))) + mil: float = pa.Field(isin=(set([-9.0] + [float(x) for x in range(0, 5)]))) + naicsp: str + industry: int = pa.Field( + isin=(set([-9.0] + [float(x) for x in range(0, 19)])), coerce=True + ) + zone_id: int = pa.Field(gt=0, nullable=False, coerce=True) + + @pa.dataframe_check(name="All person's households in households table?") + def check_persons_in_households(cls, persons: pd.DataFrame): + households = TABLE_STORE["households"] + result = persons.household_id.isin(households.household_id) + output = persons[~persons["household_id"].isin(households["household_id"])][ + "household_id" + ].tolist() + if len(output) > 0: + log_info(f"Person's household are not in households table at \n{output}.\n") + else: + log_info(f"All person's households are in households table.\n") + return result + + @pa.dataframe_check(name="Every household has a person?") + def check_households_have_persons(cls, persons: pd.DataFrame): + households = TABLE_STORE["households"] + result = households.household_id.isin(persons.household_id).all() + output = households[~households["household_id"].isin(persons["household_id"])][ + "household_id" + ].tolist() + if result != True: + log_info(f"Household does not have a person at \n{output}.\n") + else: + log_info(f"Every household has a person.\n") + return result + + +class Landuse(pa.DataFrameModel): + """ + Land use data. + + zone_id: MAZ ID + tot_acres: Acres of the zone + TAZ: TAZ ID + tot_hhs: Number of households + hhs_pop: Non-Group Quarters population + grppop: Group-Quarters population + tot_pop: Total population + K_8: Preschool through 8th grade enrollment + G9_12: High school enrollment + e01_nrm: + e02_constr: contrsruction employment + e03_manuf: manufacturing employment + e04_whole: wholsesale employment + e05_retail: retail employment + e06_trans: transportation employment + e07_utility: Utility employment + e08_infor: information services employment + e09_finan: financial services employment + e10_pstsvc: postal services employment(?) + e11_compmgt: management services employment + e12_admsvc: administrative services employment + e13_edusvc: educational services employment + e14_medfac: medical employment + e15_hospit: hospital employment + e16_leisure: leisure employment + e17_othsvc: other services employment + e18_pubadm: public administration employment + tot_emp: total employment + """ + + zone_id: int = pa.Field(gt=0, le=22818, nullable=False) + tot_acres: float = pa.Field(gt=0) + TAZ: int = pa.Field(gt=0, le=2811, nullable=False) + tot_hhs: float = pa.Field(ge=0, nullable=False, coerce=True) + hhs_pop: float = pa.Field(ge=0, coerce=True) + grppop: float = pa.Field(ge=0, coerce=True) + tot_pop: float = pa.Field(ge=0, coerce=True) + K_8: float = pa.Field(ge=0, coerce=True) + G9_12: float = pa.Field(ge=0, coerce=True) + e01_nrm: float = pa.Field(ge=0, coerce=True) + e02_constr: float = pa.Field(ge=0, coerce=True) + e03_manuf: float = pa.Field(ge=0, coerce=True) + e04_whole: float = pa.Field(ge=0, coerce=True) + e05_retail: float = pa.Field(ge=0, coerce=True) + e06_trans: float = pa.Field(ge=0, coerce=True) + e07_utility: float = pa.Field(ge=0, coerce=True) + e08_infor: float = pa.Field(ge=0, coerce=True) + e09_finan: float = pa.Field(ge=0, coerce=True) + e10_pstsvc: float = pa.Field(ge=0, coerce=True) + e11_compmgt: float = pa.Field(ge=0, coerce=True) + e12_admsvc: float = pa.Field(ge=0, coerce=True) + e13_edusvc: float = pa.Field(ge=0, coerce=True) + e14_medfac: float = pa.Field(ge=0, coerce=True) + e15_hospit: float = pa.Field(ge=0, coerce=True) + e16_leisure: float = pa.Field(ge=0, coerce=True) + e17_othsvc: float = pa.Field(ge=0, coerce=True) + e18_pubadm: float = pa.Field(ge=0, coerce=True) + tot_emp: float = pa.Field(ge=0, coerce=True) + + @pa.dataframe_check(name="Total employment is sum of employment categories?") + def check_tot_employment(cls, land_use: pd.DataFrame): + tot_emp = land_use[ + [ + "e01_nrm", + "e02_constr", + "e03_manuf", + "e04_whole", + "e05_retail", + "e06_trans", + "e07_utility", + "e08_infor", + "e09_finan", + "e10_pstsvc", + "e11_compmgt", + "e12_admsvc", + "e13_edusvc", + "e14_medfac", + "e15_hospit", + "e16_leisure", + "e17_othsvc", + "e18_pubadm", + ] + ].sum(axis=1) + result = (tot_emp == land_use.tot_emp).all() + output = land_use.loc[~(tot_emp == land_use.tot_emp), "zone_id"].tolist() + if len(output) > 0: + log_info( + f"Total employment is not sum of 18 employment categories at zone_id \n{output}.\n." + ) + else: + log_info(f"Total employment is sum of 18 employment categories.\n") + return tot_emp == land_use.tot_emp + + @pa.dataframe_check(name="Zonal households equals the number of households?") + def check_hh_per_zone(cls, land_use: pd.DataFrame): + land_use = land_use.sort_values(by="zone_id", ascending=True) + households = TABLE_STORE["households"] + households = households[households["hht"] > 0] + hh = ( + households.groupby("home_zone_id")["household_id"] + .nunique() + .reset_index(name="count") # Rename the result column to "count" + ) + hh = hh.set_index("home_zone_id").reindex(land_use.zone_id).fillna(0) + mismatched_indices = hh["count"] != land_use.set_index("zone_id")["tot_hhs"] + mismatched_cases = hh.loc[mismatched_indices] + if len(mismatched_cases) > 0: + log_info( + f"Zonal households does not equal the number of households at \n{mismatched_cases}.\n" + ) + else: + log_info(f"Zonal households equals the number of households.\n") + return ~mismatched_indices + + @pa.dataframe_check(name="Zonal pop equals the number of persons?") + def check_pop_per_zone(cls, land_use: pd.DataFrame): + land_use = land_use.sort_values(by="zone_id", ascending=True) + persons = TABLE_STORE["persons"] + persons = ( + persons.groupby("maz_seqid")["person_id"] + .nunique() + .reset_index(name="count") # Rename the result column to "count" + ) + persons = persons.set_index("maz_seqid").reindex(land_use.zone_id).fillna(0) + + mismatched_indices = ( + persons["count"] != land_use.set_index("zone_id")["tot_pop"] + ) + mismatched_cases = persons.loc[mismatched_indices] + if len(mismatched_cases) > 0: + log_info( + f"Zonal pop does not equal the number of persons at \n{mismatched_cases}.\n" + ) + else: + log_info(f"Zonal pop equals the number of persons.\n") + return persons["count"] == land_use.set_index("zone_id").tot_pop + + +class NetworkLinks(pa.DataFrameModel): + """ + Example Network data. + Only including some columns here for illustrative purposes. + + ID: network link ID + Dir: Direction + Length: length of link in miles + AB_LANES: number of lanes in the A-node to B-node direction + BA_LANES: number of lanes in the B-node to A-node direction + FENAME: street name + """ + + ID: int = pa.Field(unique=True, gt=0) + Dir: int = pa.Field(isin=[-1, 0, 1]) + Length: float = pa.Field(ge=0) + AB_LANES: int = pa.Field(ge=0, le=10) + BA_LANES: int = pa.Field(ge=0, le=10) + FENAME: str = pa.Field(nullable=True) + + @pa.dataframe_check(name="All skims in File?", raise_warning=True) + def check_all_skims_exist(cls, land_use: pd.DataFrame): + state = TABLE_STORE["state"] + + # code duplicated from skim_dict_factory.py but need to copy here to not load skim data + los_settings = state.filesystem.read_settings_file("network_los.yaml") + omx_file_paths = state.filesystem.expand_input_file_list( + los_settings["taz_skims"] + ) + omx_manifest = dict() + + for omx_file_path in omx_file_paths: + with omx.open_file(omx_file_path, mode="r") as omx_file: + for skim_name in omx_file.listMatrices(): + omx_manifest[skim_name] = omx_file_path + omx_keys = [] + for skim_name in omx_manifest.keys(): + key1, sep, key2 = skim_name.partition("__") + omx_keys.append(key1) + + tour_mode_choice_spec = state.filesystem.read_settings_file( + "tour_mode_choice.yaml" + )["SPEC"] + + def extract_skim_names(file_path): + """ + Helper function to grab the names of the matrices from a given file_path. + + e.g. grabbing 'DRIVEALONE_TIME' from instance of skims['DRIVEALONE_TIME'] in tour_mode_choice.csv + """ + skim_names = [] + + with open(file_path) as csvfile: + csv_reader = csv.reader(csvfile) + for row in csv_reader: + row_string = ",".join(row) + matches = re.findall(r"skims\[['\"]([^'\"]+)['\"]\]", row_string) + skim_names.extend(matches) + + return skim_names + + skim_names = extract_skim_names( + state.filesystem.get_config_file_path(tour_mode_choice_spec) + ) + + missing_skims = [ + skim_name for skim_name in skim_names if skim_name not in omx_keys + ] + if len(missing_skims) > 0: + log_info(f"Missing skims {missing_skims} found in {tour_mode_choice_spec}") + else: + log_info(f"Found all skimms in {tour_mode_choice_spec}") + return len(missing_skims) == 0 diff --git a/activitysim/examples/production_semcog/extensions/__init__.py b/activitysim/examples/production_semcog/extensions/__init__.py new file mode 100644 index 000000000..11c624f5b --- /dev/null +++ b/activitysim/examples/production_semcog/extensions/__init__.py @@ -0,0 +1,3 @@ +from . import parking_location_choice_at_university +from . import stop_frequency_university_parking +from . import university_location_zone_override diff --git a/activitysim/examples/production_semcog/extensions/parking_location_choice_at_university.py b/activitysim/examples/production_semcog/extensions/parking_location_choice_at_university.py new file mode 100644 index 000000000..49edf8d37 --- /dev/null +++ b/activitysim/examples/production_semcog/extensions/parking_location_choice_at_university.py @@ -0,0 +1,192 @@ +from __future__ import annotations + +# ActivitySim +# See full license in LICENSE.txt. +import logging + +import numpy as np +import pandas as pd + +from activitysim.core import logit, los, tracing, workflow + +# from .util import estimation + +logger = logging.getLogger(__name__) + + +def closest_parking_zone_xwalk(univ_zones, parking_zones, network_los): + """ + Create lookup table matching university zone to nearest parking location. + If university zone has parking, that zone is selected. + + Parameters + ---------- + univ_zones : pandas.Series + zones to find the nearest parking location for + parking_zones : pandas.Series + zones with parking spaces + network_los : Network_LOS object + skim information + + Returns + ------- + closest_parking_df : pandas.DataFrame + index of university zone input parameter and a column closest_parking_zone + """ + skim_dict = network_los.get_default_skim_dict() + + closest_zones = [] + for univ_zone in univ_zones.to_numpy(): + if univ_zone in parking_zones.to_numpy(): + # if zone has parking data, choose that zone + closest_zones.append(univ_zone) + else: + # find nearest zone from distance skim + parking_zone_idx = np.argmin( + skim_dict.lookup(univ_zone, parking_zones.to_numpy(), "DIST") + ) + parking_zone = parking_zones.to_numpy()[parking_zone_idx] + closest_zones.append(parking_zone) + + closest_parking_df = pd.DataFrame( + {"univ_zone": univ_zones, "closest_parking_zone": closest_zones} + ) + closest_parking_df.set_index("univ_zone", inplace=True) + + return closest_parking_df + + +@workflow.step +def parking_location_choice_at_university( + state: workflow.State, + trips: pd.DataFrame, + tours: pd.DataFrame, + land_use: pd.DataFrame, + network_los: los.Network_LOS, +): + """ + This model selects a parking location for groups of trips that are on university campuses where + the tour mode is auto. Parking locations are sampled weighted by the number of parking spots. + + The main interface to this model is the parking_location_choice_at_university() function. + This function is registered as a step in the example Pipeline. + """ + + trace_label = "parking_location_choice_at_university" + model_settings_file_name = "parking_location_choice_at_university.yaml" + model_settings = state.filesystem.read_model_settings(model_settings_file_name) + + univ_codes_col = model_settings["LANDUSE_UNIV_CODE_COL_NAME"] + univ_codes = model_settings["UNIV_CODES_THAT_REQUIRE_PARKING"] + + parking_spaces_col = model_settings["LANDUSE_PARKING_SPACES_COL_NAME"] + parking_univ_code_col = model_settings["LANDUSE_PARKING_UNIV_CODE_COL_NAME"] + + parking_tour_modes = model_settings["TOUR_MODES_THAT_REQUIRE_PARKING"] + nearest_lot_tour_purposes = model_settings["TOUR_PURPOSES_TO_NEAREST_LOT"] + + land_use_df = land_use + + # initialize univ parking columns + trips["parked_at_university"] = False + tours["univ_parking_zone_id"] = pd.NA + + all_univ_zones = land_use_df[land_use_df[univ_codes_col].isin(univ_codes)].index + all_parking_zones = land_use_df[land_use_df[parking_spaces_col] > 0].index + + # grabbing all trips and tours that have a destination on a campus and selected tour mode + trip_choosers = trips[trips["destination"].isin(all_univ_zones)] + tour_choosers = tours[ + tours.index.isin(trip_choosers["tour_id"]) + & tours.tour_mode.isin(parking_tour_modes) + ] + + # removing trips that did not have the right tour mode. (Faster than merging tour mode first?) + trip_choosers = trip_choosers[trip_choosers.tour_id.isin(tour_choosers.index)] + trip_choosers.loc[trip_choosers["purpose"] != "Home", "parked_at_university"] = True + + logger.info("Running %s for %d tours", trace_label, len(tour_choosers)) + + closest_parking_df = closest_parking_zone_xwalk( + all_univ_zones, all_parking_zones, network_los + ) + + # Set parking locations for each university independently + for univ_code in univ_codes: + # selecting land use data + univ_zones = land_use_df[land_use_df[univ_codes_col] == univ_code].reset_index() + parking_univ_zones = land_use_df[ + land_use_df[parking_univ_code_col] == univ_code + ].reset_index() + + if len(univ_zones) == 0: + logger.info("No zones found for university code: %s", univ_code) + continue + + if (len(parking_univ_zones) == 0) or ( + parking_univ_zones[parking_spaces_col].sum() == 0 + ): + logger.info("No parking found for university code: %s", univ_code) + continue + + # selecting tours that have trips attending this university's zone(s) + univ_trip_choosers = trip_choosers[ + trip_choosers["destination"].isin(univ_zones.zone_id) + ] + parking_tours = tour_choosers.index.isin(univ_trip_choosers.tour_id) + num_parking_tours = parking_tours.sum() + + # constructing probabilities based on the number of parking spaces + # format is columns for each parking zone alternative and indexed by choosers + # probabilities are the same for each row + probs = ( + parking_univ_zones[parking_spaces_col] + / parking_univ_zones[parking_spaces_col].sum() + ).to_frame() + probs.set_index(parking_univ_zones.zone_id, inplace=True) + probs = probs.T + probs = probs.loc[np.repeat(probs.index, num_parking_tours)] + probs.set_index(tour_choosers[parking_tours].index, inplace=True) + + # making stable choices using ActivitySim's random number generator + choices, rands = logit.make_choices(state, probs) + choices = choices.map(pd.Series(probs.columns)) + tour_choosers.loc[parking_tours, "univ_parking_zone_id"] = choices + + # for tours that have purpose specified in model setting, set parking location to + # nearest parking lot + if nearest_lot_tour_purposes is not None: + tours_nearest_lot = tour_choosers.primary_purpose.isin( + nearest_lot_tour_purposes + ) & tour_choosers.destination.isin(all_univ_zones) + tour_choosers.loc[ + tours_nearest_lot, "univ_parking_zone_id" + ] = tour_choosers.loc[tours_nearest_lot, "destination"].map( + closest_parking_df["closest_parking_zone"] + ) + + logger.info( + "Selected parking locations for %s tours for university with code: %s", + num_parking_tours, + univ_code, + ) + + # Overriding school_zone_id in persons table + trips.loc[ + trips.index.isin(trip_choosers.index), "parked_at_university" + ] = trip_choosers["parked_at_university"] + tours.loc[ + tours.index.isin(tour_choosers.index), "univ_parking_zone_id" + ] = tour_choosers["univ_parking_zone_id"] + + state.add_table("trips", trips) + state.add_table("tours", tours) + + tracing.print_summary( + "parking_location_choice_at_university zones", + tours["univ_parking_zone_id"], + value_counts=True, + ) + + if state.settings.trace_hh_id: + state.tracing.trace_df(tours, label=trace_label, warn_if_empty=True) diff --git a/activitysim/examples/production_semcog/extensions/stop_frequency_university_parking.py b/activitysim/examples/production_semcog/extensions/stop_frequency_university_parking.py new file mode 100644 index 000000000..10573ba98 --- /dev/null +++ b/activitysim/examples/production_semcog/extensions/stop_frequency_university_parking.py @@ -0,0 +1,208 @@ +from __future__ import annotations + +# ActivitySim +# See full license in LICENSE.txt. +import logging + +import numpy as np +import pandas as pd + +from activitysim.core import tracing, workflow + +# from .util import estimation + +logger = logging.getLogger(__name__) + + +@workflow.step +def stop_frequency_university_parking( + state: workflow.State, trips: pd.DataFrame, tours: pd.DataFrame +): + """ + This model inserts parking trips on drive tours that include university parking as determined in the + parking_location_choice_at_university model. Parking trips are added to the trip table before + and after groups of trips that are on campus zones. + + The main interface to this model is the stop_frequency_university_parking() function. + This function is registered as a step in the example Pipeline. + """ + + trace_label = "stop_frequency_university_parking" + model_settings_file_name = "stop_frequency_university_parking.yaml" + + model_settings = state.filesystem.read_model_settings(model_settings_file_name) + parking_name = model_settings["PARKING_TRIP_NAME"] + + tours_with_parking = tours[tours["univ_parking_zone_id"].notna()] + + trip_choosers = trips[trips.tour_id.isin(tours_with_parking.index)] + trips_without_parking = trips[~trips.tour_id.isin(tours_with_parking.index)] + + if len(trip_choosers) > 0: + trip_choosers = pd.merge( + trip_choosers.reset_index(), + tours_with_parking["univ_parking_zone_id"].reset_index(), + how="left", + on="tour_id", + ) + trip_choosers.set_index("trip_id", inplace=True, verify_integrity=True) + + # will duplicate first and last campus trips to "insert" parking trips. + # this duplication also sets the depart times where the parking trip to + # campus has the same depart as the original trip and the parking trip + # from campus has a depart time matching the following trip + trip_choosers["duplicates_needed"] = 1 + trip_choosers["park_before"] = False + trip_choosers["park_after"] = False + atwork_campus_subtours = trip_choosers["purpose"] == "atwork" + + # looking at each tour individually + trips_grouped = trip_choosers.groupby(["tour_id"])["parked_at_university"] + # to campus + trip_choosers.loc[ + (trip_choosers["parked_at_university"] == True) + & (trips_grouped.transform("shift", 1).fillna(False) == False), + "park_before", + ] = True + # from campus + trip_choosers.loc[ + (trip_choosers["parked_at_university"] == False) + & (trips_grouped.transform("shift", 1).fillna(False) == True), + "park_after", + ] = True + + trip_choosers.loc[ + trip_choosers["park_before"] | trip_choosers["park_after"], + "duplicates_needed", + ] = 2 + + # atwork subtours that came from a parent tour that is already parked on campus + # do not need parking trips. This assumes atwork subtours can not go back to + # get car from parked location. + parked_atwork_subtour_ids = trip_choosers.loc[ + (trip_choosers["purpose"] == "Work") + & (trip_choosers["primary_purpose"] == "atwork") + & (trip_choosers["parked_at_university"] == True), + "tour_id", + ] + parked_atwork_trips = trip_choosers["tour_id"].isin(parked_atwork_subtour_ids) + + trip_choosers.loc[parked_atwork_trips, "park_before"] = False + trip_choosers.loc[parked_atwork_trips, "park_after"] = False + trip_choosers.loc[parked_atwork_trips, "duplicates_needed"] = 1 + + logger.info( + "creating %d parking trips", + (trip_choosers["park_before"] | trip_choosers["park_after"]).sum(), + ) + + # duplicating trips in table + trip_choosers = trip_choosers.reset_index() + trip_choosers = trip_choosers.take( + np.repeat( + trip_choosers.index.values, trip_choosers.duplicates_needed.values + ) + ) + trip_choosers = trip_choosers.reset_index(drop=True) + + # recompute fields dependent on trip_num sequence + grouped = trip_choosers.groupby(["tour_id", "outbound"]) + trip_choosers["trip_num"] = grouped.cumcount() + 1 + trip_choosers["trip_count"] = trip_choosers["trip_num"] + grouped.cumcount( + ascending=False + ) + + # first duplicatd trip is parking trip if going to campus + park_to_campus = (trip_choosers["park_before"] == True) & ( + trip_choosers["park_before"].shift(-1) == True + ) + + # second duplicatd trip is parking trip if going away from campus + park_from_campus = (trip_choosers["park_after"] == True) & ( + trip_choosers["park_after"].shift(1) == False + ) + + park_trips = park_to_campus | park_from_campus + + # check if parking_name is in the purpose category + if not parking_name in trip_choosers.purpose.cat.categories: + trip_choosers.purpose = trip_choosers.purpose.cat.add_categories( + [parking_name] + ) + trip_choosers.loc[park_trips, "purpose"] = parking_name + trip_choosers.loc[park_trips, "destination_logsum"] = pd.NA + trip_choosers.loc[park_trips, "destination"] = trip_choosers.loc[ + park_trips, "univ_parking_zone_id" + ] + trip_choosers.loc[park_trips, "original_school_taz"] = pd.NA + + # need to change subsequent origin for trips that are going to parking lot + trip_choosers["last_destination"] = trip_choosers.groupby("tour_id")[ + "destination" + ].transform("shift") + trip_choosers["origin"] = np.where( + trip_choosers["last_destination"].notna() + & (trip_choosers["last_destination"] != trip_choosers["origin"]), + trip_choosers["last_destination"], + trip_choosers["origin"], + ) + trip_choosers.drop(columns="last_destination", inplace=True) + + trip_choosers["parked_at_university"] = ( + trip_choosers.groupby("tour_id")["parked_at_university"] + .transform("shift") + .fillna(False) + ) + + # all atwork subtour trips are parked if parent tour is parked at work + trip_choosers.loc[ + trip_choosers["tour_id"].isin(parked_atwork_subtour_ids), + "parked_at_university", + ] = True + + trips = pd.concat( + [ + trip_choosers[trips.reset_index().columns], + trips_without_parking.reset_index(), + ], + ignore_index=True, + ) + + else: + trips.reset_index(inplace=True) + + trips["origin"] = trips["origin"].astype(int) + trips["destination"] = trips["destination"].astype(int) + trips["tour_includes_parking"] = np.where( + trips["tour_id"].isin(tours_with_parking.index), 1, 0 + ) + + # resetting trip_id's + trips["trip_id_pre_parking"] = trips["trip_id"] + + # taken from stop_frequency.py + # With 4 trips per leg originally, can have an additional 4 parking trips per leg + # e.g. if trips 1 and 3 are on university, need parking to and from 1 and parking + # to and from 3 + MAX_TRIPS_PER_LEG = 8 + # canonical_trip_num: 1st trip out = 1, 2nd trip out = 2, 1st in = 5, etc. + canonical_trip_num = (~trips.outbound * MAX_TRIPS_PER_LEG) + trips.trip_num + trips["trip_id"] = trips.tour_id * (2 * MAX_TRIPS_PER_LEG) + canonical_trip_num + trips.sort_values(by="trip_id", inplace=True) + + trips.set_index("trip_id", inplace=True, verify_integrity=True) + + state.add_table("trips", trips) + # since new trips were added inbetween other trips on the tour, the trip_id's changed + # resetting random number generator for trips... does this have unintended consequences? + state.get_rn_generator().drop_channel("trips") + state.get_rn_generator().add_channel("trips", trips) + + tracing.print_summary( + "stop_frequency_university_parking trip purposes", + trips["purpose"], + value_counts=True, + ) + + if state.settings.trace_hh_id: + state.tracing.trace_df(trips, label=trace_label, warn_if_empty=True) diff --git a/activitysim/examples/production_semcog/extensions/university_location_zone_override.py b/activitysim/examples/production_semcog/extensions/university_location_zone_override.py new file mode 100644 index 000000000..37c1b96e7 --- /dev/null +++ b/activitysim/examples/production_semcog/extensions/university_location_zone_override.py @@ -0,0 +1,254 @@ +from __future__ import annotations + +# ActivitySim +# See full license in LICENSE.txt. +import logging + +import numpy as np +import pandas as pd + +from activitysim.core import logit, tracing, workflow + +# from .util import estimation + +logger = logging.getLogger(__name__) + + +def resample_school_zones( + state: workflow.State, + choosers: pd.DataFrame, + land_use: pd.DataFrame, + model_settings: dict, + col_to_override: str = "school_zone_id", +): + """ + Re-samples the university school zone based only on enrollment. Can apply to the original school + zone id or subsequent university trips. + + Parameters + ---------- + choosers : pd.DataFrame + subset of persons or trips that will have their school zone re-sampled + land_use: pd.DataFrame + land_use data containing columns specifying university coding and enrollment + model_settings: dict + parameters in university_location_zone_override.yaml + col_to_override: + choosers column to set new sampled zone_id to: school_zone_id or (trip) destination + + Returns + ---------- + choosers: pd.DataFrame + with new university zone id set and original zone id stored if specified in config + """ + original_zone_col_name = model_settings["ORIGINAL_ZONE_COL_NAME"] + univ_enrollment_col_name = model_settings["LANDUSE_UNIV_ENROL_COL_NAME"] + landuse_univ_code_col_name = model_settings["LANDUSE_UNIV_CODE_COL_NAME"] + allowed_univ_codes = model_settings["UNIV_CODES_TO_OVERRIDE"] + + if original_zone_col_name is not None: + choosers[original_zone_col_name] = pd.NA + + # Override school_zone_id for each requested university separately + for univ_code in allowed_univ_codes: + # selecting land use data + univ_land_use = land_use[ + land_use[landuse_univ_code_col_name] == univ_code + ].reset_index() + + if len(univ_land_use) == 0: + logger.info("No zones found for university code: %s", univ_code) + continue + + # selecting only university students with school_zone_id matching university code + choosers_to_override = choosers[col_to_override].isin(univ_land_use.zone_id) + + num_choosers_to_override = choosers_to_override.sum() + logger.info( + "Re-sampling %s zones for university with code: %s", + num_choosers_to_override, + univ_code, + ) + + if original_zone_col_name is not None: + choosers.loc[choosers_to_override, original_zone_col_name] = choosers.loc[ + choosers_to_override, col_to_override + ] + + # constructing probabilities based on the university enrollement size + # format is columns for each parking zone alternative and indexed by choosers + # probabilities are the same for each row + probs = ( + univ_land_use[univ_enrollment_col_name] + / univ_land_use[univ_enrollment_col_name].sum() + ).to_frame() + probs.set_index(univ_land_use.zone_id, inplace=True) + probs = probs.T + probs = probs.loc[np.repeat(probs.index, num_choosers_to_override)] + probs.set_index(choosers[choosers_to_override].index, inplace=True) + + # making stable choices using ActivitySim's random number generator + choices, rands = logit.make_choices(state, probs) + choices = choices.map(pd.Series(probs.columns)) + choosers.loc[choosers_to_override, "univ_parking_zone_id"] = choices + + return choosers + + +@workflow.step +def university_location_zone_override( + state: workflow.State, + persons_merged: pd.DataFrame, + persons: pd.DataFrame, + land_use: pd.DataFrame, +): + """ + This model overrides the school taz for students attending large universities. New school tazs + are chosen based on the university enrollment in landuse without accessibility terms. This is + done to replicate the fact that university students can have classes all over campus. + + The main interface to this model is the university_location_zone_override() function. + This function is registered as a step in the example Pipeline. + """ + + trace_label = "university_location_zone_override" + model_settings_file_name = "university_location_zone_override.yaml" + + choosers = persons + land_use_df = land_use + + univ_school_seg = state.filesystem.read_model_settings("constants.yaml")[ + "SCHOOL_SEGMENT_UNIV" + ] + choosers = choosers[ + (choosers.school_zone_id > -1) & (choosers.school_segment == univ_school_seg) + ] + + logger.info("Running %s for %d university students", trace_label, len(choosers)) + + model_settings = state.filesystem.read_model_settings(model_settings_file_name) + + choosers = resample_school_zones( + state, choosers, land_use_df, model_settings, col_to_override="school_zone_id" + ) + + # Overriding school_zone_id in persons table + persons.loc[persons.index.isin(choosers.index), "school_zone_id"] = choosers[ + "school_zone_id" + ].astype(int) + + # saving original zone if desired + original_zone_col_name = model_settings["ORIGINAL_ZONE_COL_NAME"] + if original_zone_col_name is not None: + persons.loc[ + persons.index.isin(choosers.index), original_zone_col_name + ] = choosers[original_zone_col_name] + + state.add_table("persons", persons) + + tracing.print_summary( + "university_location_zone_override choices", + persons["school_zone_id"], + value_counts=True, + ) + + if state.settings.trace_hh_id: + state.tracing.trace_df(persons, label=trace_label, warn_if_empty=True) + + +@workflow.step +def trip_destination_univ_zone_override( + state: workflow.State, + trips: pd.DataFrame, + tours: pd.DataFrame, + land_use: pd.DataFrame, +): + """ + This model overrides the university trip destination zone for students attending large universities. + New school tazs are chosen based on the university enrollment in landuse without accessibility terms. + This is done to replicate the fact that university students can have classes all over campus. + If the trip destination is the primary tour destination, the zone is not changed because it was + already handled in university_location_zone_override. + + The main interface to this model is the trip_destination_univ_zone_override() function. + This function is registered as a step in the example Pipeline. + """ + + trace_label = "trip_destination_univ_zone_override" + model_settings_file_name = "university_location_zone_override.yaml" + model_settings = state.filesystem.read_model_settings(model_settings_file_name) + univ_purpose = model_settings["TRIP_UNIVERSITY_PURPOSE"] + tour_mode_override_dict = model_settings["TOUR_MODE_OVERRIDE_DICT"] + + choosers = trips.copy() # will edit choosers below adding temp "is_primary_trip" + # TODO do we really want a copy here? probably not + land_use_df = land_use + + # primary trips are outbound trips where the next trip is not outbound + choosers["is_primary_trip"] = np.where( + (choosers["outbound"] == True) & (choosers["outbound"].shift(-1) == False), + True, + False, + ) + choosers = choosers[ + ~(choosers["is_primary_trip"]) & (choosers["purpose"] == univ_purpose) + ] + + # changing tour mode according to model settings to avoid, e.g. really long walk trips + # This has to be done here and not in university_location_zone_override because + # this model comes after tour mode choice + if tour_mode_override_dict is not None: + tours_with_trip_resampled = choosers["tour_id"] + for orig_tour_mode, new_tour_mode in tour_mode_override_dict.items(): + tour_overrides = (tours.index.isin(choosers.tour_id)) & ( + tours["tour_mode"] == orig_tour_mode + ) + logger.info( + "Changing %d tours with mode %s to mode %s", + tour_overrides.sum(), + orig_tour_mode, + new_tour_mode, + ) + tours.loc[tour_overrides, "tour_mode"] = new_tour_mode + + logger.info("Running %s for %d university students", trace_label, len(choosers)) + + choosers = resample_school_zones( + state, choosers, land_use_df, model_settings, col_to_override="destination" + ) + + # Overriding school_zone_id in persons table + trips.loc[trips.index.isin(choosers.index), "destination"] = choosers[ + "destination" + ].astype(int) + + # need to change subsequent origin for trips that were changed + trips["last_destination"] = trips.groupby("tour_id")["destination"].transform( + "shift" + ) + trips["origin"] = np.where( + trips["last_destination"].notna() + & (trips["last_destination"] != trips["origin"]), + trips["last_destination"], + trips["origin"], + ) + trips.drop(columns="last_destination", inplace=True) + + # saving old zone choice if requested + original_zone_col_name = model_settings["ORIGINAL_ZONE_COL_NAME"] + if original_zone_col_name is not None: + trips.loc[trips.index.isin(choosers.index), original_zone_col_name] = choosers[ + original_zone_col_name + ] + + state.add_table("trips", trips) + state.add_table("tours", tours) + + tracing.print_summary( + "trip_destination_univ_zone_override for zones", + trips[original_zone_col_name], + value_counts=True, + ) + + if state.settings.trace_hh_id: + state.tracing.trace_df(trips, label=trace_label, warn_if_empty=True) diff --git a/activitysim/examples/prototype_semcog/scripts/semcog_crop.py b/activitysim/examples/production_semcog/scripts/semcog_crop.py similarity index 100% rename from activitysim/examples/prototype_semcog/scripts/semcog_crop.py rename to activitysim/examples/production_semcog/scripts/semcog_crop.py diff --git a/activitysim/examples/prototype_semcog/simulation.py b/activitysim/examples/production_semcog/simulation.py old mode 100755 new mode 100644 similarity index 93% rename from activitysim/examples/prototype_semcog/simulation.py rename to activitysim/examples/production_semcog/simulation.py index 8313dd45e..cba7add1b --- a/activitysim/examples/prototype_semcog/simulation.py +++ b/activitysim/examples/production_semcog/simulation.py @@ -6,6 +6,8 @@ from activitysim.cli.run import add_run_args, run +import extensions + if __name__ == "__main__": parser = argparse.ArgumentParser() diff --git a/activitysim/examples/production_semcog/test/configs/settings.yaml b/activitysim/examples/production_semcog/test/configs/settings.yaml new file mode 100644 index 000000000..296f553c3 --- /dev/null +++ b/activitysim/examples/production_semcog/test/configs/settings.yaml @@ -0,0 +1,28 @@ +inherit_settings: True + +# treat warnings as errors +strict: True + +# number of households to simulate +households_sample_size: 20 +chunk_size: 0 + +# - shadow pricing global switches +use_shadow_pricing: False + +# 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 + +cleanup_pipeline_after_run: True + +output_tables: + h5_store: False + action: include + prefix: final_ + sort: True + tables: + - households + - persons + - tours + - trips diff --git a/activitysim/examples/prototype_semcog/configs/network_los.yaml b/activitysim/examples/production_semcog/test/configs_mp/network_los.yaml old mode 100755 new mode 100644 similarity index 51% rename from activitysim/examples/prototype_semcog/configs/network_los.yaml rename to activitysim/examples/production_semcog/test/configs_mp/network_los.yaml index 43a28e533..1c4cd79da --- a/activitysim/examples/prototype_semcog/configs/network_los.yaml +++ b/activitysim/examples/production_semcog/test/configs_mp/network_los.yaml @@ -1,14 +1,6 @@ +inherit_settings: True + # read cached skims (using numpy memmap) from output directory (memmap is faster than omx ) read_skim_cache: False # write memmapped cached skims to output directory after reading from omx, for use in subsequent runs -write_skim_cache: True - -zone_system: 1 - -taz_skims: skims*.omx - -skim_time_periods: - time_window: 1440 - period_minutes: 30 - periods: [0, 6, 12, 24, 32, 48] - labels: ['EA', 'AM', 'MD', 'PM', 'EV'] +write_skim_cache: False diff --git a/activitysim/examples/production_semcog/test/configs_mp/settings.yaml b/activitysim/examples/production_semcog/test/configs_mp/settings.yaml new file mode 100644 index 000000000..139643d06 --- /dev/null +++ b/activitysim/examples/production_semcog/test/configs_mp/settings.yaml @@ -0,0 +1,34 @@ +inherit_settings: True + +# treat warnings as errors +strict: True + +# raise error if any sub-process fails without waiting for others to complete +fail_fast: True + +multiprocess: True + +use_shadow_pricing: False + +chunk_size: 0 +num_processes: 2 + +# number of households to simulate +households_sample_size: 20 + +# 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 + +cleanup_pipeline_after_run: True + +output_tables: + h5_store: False + action: include + prefix: final_ + sort: True + tables: + - households + - persons + - tours + - trips diff --git a/activitysim/examples/prototype_semcog/configs/work_from_home_annotate_persons_preprocessor.csv b/activitysim/examples/production_semcog/test/configs_mp/work_from_home_annotate_persons_preprocessor.csv similarity index 100% rename from activitysim/examples/prototype_semcog/configs/work_from_home_annotate_persons_preprocessor.csv rename to activitysim/examples/production_semcog/test/configs_mp/work_from_home_annotate_persons_preprocessor.csv diff --git a/activitysim/examples/prototype_semcog/output/cache/.gitignore b/activitysim/examples/production_semcog/test/output/cache/.gitignore similarity index 100% rename from activitysim/examples/prototype_semcog/output/cache/.gitignore rename to activitysim/examples/production_semcog/test/output/cache/.gitignore diff --git a/activitysim/examples/prototype_semcog/output/log/.gitignore b/activitysim/examples/production_semcog/test/output/log/.gitignore similarity index 100% rename from activitysim/examples/prototype_semcog/output/log/.gitignore rename to activitysim/examples/production_semcog/test/output/log/.gitignore diff --git a/activitysim/examples/prototype_semcog/output/trace/.gitignore b/activitysim/examples/production_semcog/test/output/trace/.gitignore similarity index 100% rename from activitysim/examples/prototype_semcog/output/trace/.gitignore rename to activitysim/examples/production_semcog/test/output/trace/.gitignore diff --git a/activitysim/examples/production_semcog/test/regress/final_trips.csv b/activitysim/examples/production_semcog/test/regress/final_trips.csv new file mode 100644 index 000000000..3402fa28c --- /dev/null +++ b/activitysim/examples/production_semcog/test/regress/final_trips.csv @@ -0,0 +1,169 @@ +trip_id,person_id,household_id,primary_purpose,trip_num,outbound,trip_count,destination,origin,tour_id,purpose,destination_logsum,original_school_zone_id,parked_at_university,depart,tour_includes_parking,trip_id_pre_parking,trip_mode,mode_choice_logsum +1727022433,2632656,1066353,eatout,1,True,2,22766,22688,107938902,parking,,,False,25.0,1,863511217,DRIVEALONE,-0.8746901452708546 +1727022434,2632656,1066353,eatout,2,True,2,22767,22766,107938902,eatout,,,True,25.0,1,863511217,WALK,6.210014031663612 +1727022441,2632656,1066353,eatout,1,False,2,22766,22767,107938902,parking,,,True,37.0,1,863511221,WALK,6.210037419792028 +1727022442,2632656,1066353,eatout,2,False,2,22688,22766,107938902,home,,,False,37.0,1,863511221,DRIVEALONE,-0.7301658119164749 +1727022961,2632656,1066353,work,1,True,1,22676,22688,107938935,work,,,False,6.0,0,863511481,DRIVEALONE,0.04287730952963362 +1727022969,2632656,1066353,work,1,False,1,22688,22676,107938935,home,,,False,20.0,0,863511485,DRIVEALONE,0.04281092148226895 +1727023489,2632657,1066353,school,1,True,1,22694,22688,107938968,school,,,False,9.0,0,863511745,SCHOOLBUS,-1.3476633093405816 +1727023497,2632657,1066353,school,1,False,2,22688,22694,107938968,eatout,-23.29946944115026,,False,26.0,0,863511749,SHARED3,-9.70321875140174 +1727023498,2632657,1066353,school,2,False,2,22688,22688,107938968,home,,,False,26.0,0,863511750,SHARED2,-8.514611350339074 +1727023793,2632658,1066353,escort,1,True,1,22689,22688,107938987,escort,,,False,32.0,0,863511897,WALK,0.0 +1727023801,2632658,1066353,escort,1,False,1,22688,22689,107938987,home,,,False,33.0,0,863511901,WALK,0.0 +1727023809,2632658,1066353,escort,1,True,1,22694,22688,107938988,escort,,,False,11.0,0,863511905,DRIVEALONE,0.14516010385695438 +1727023817,2632658,1066353,escort,1,False,1,22688,22694,107938988,home,,,False,12.0,0,863511909,SHARED3,0.13787110648003725 +1727024449,2632659,1066353,escort,1,True,1,22694,22688,107939028,escort,,,False,8.0,0,863512225,SHARED2,0.14516010385695438 +1727024457,2632659,1066353,escort,1,False,1,22688,22694,107939028,home,,,False,8.0,0,863512229,SHARED3,0.13787110648003725 +1727076625,2632738,1066386,school,1,True,2,22688,22688,107942289,eatout,10.532297646277984,,False,11.0,0,863538313,SHARED3,0.5546717586355614 +1727076626,2632738,1066386,school,2,True,2,22716,22688,107942289,school,,,False,11.0,0,863538314,SHARED2,0.04685598325940043 +1727076633,2632738,1066386,school,1,False,2,22685,22716,107942289,escort,12.187082550220447,,False,26.0,0,863538317,SHARED3,0.0461601223803947 +1727076634,2632738,1066386,school,2,False,2,22688,22685,107942289,home,,,False,27.0,0,863538318,SHARED3,0.49312008693289416 +1732416961,2640879,1069967,social,1,True,2,22688,22676,108276060,social,11.37473397796374,,False,31.0,0,866208481,SHARED2,0.006004185805916569 +1732416962,2640879,1069967,social,2,True,2,22688,22688,108276060,social,,,False,32.0,0,866208482,SHARED2,0.07253109075082566 +1732416969,2640879,1069967,social,1,False,1,22676,22688,108276060,home,,,False,38.0,0,866208485,SHARED2,0.006188670261483639 +1732417249,2640879,1069967,work,1,True,1,22688,22676,108276078,work,,,False,12.0,0,866208625,SHARED2,0.6840765480327687 +1732417257,2640879,1069967,work,1,False,1,22676,22688,108276078,home,,,False,19.0,0,866208629,DRIVEALONE,0.6845432142839015 +1732417265,2640879,1069967,work,1,True,1,22688,22676,108276079,work,,,False,11.0,0,866208633,DRIVEALONE,0.060574367289556945 +1732417273,2640879,1069967,work,1,False,1,22676,22688,108276079,home,,,False,12.0,0,866208637,DRIVEALONE,0.061074290505893525 +1735713169,2645904,1072088,escort,1,True,1,22694,22711,108482073,escort,,,False,28.0,0,867856585,DRIVEALONE,0.10721753220207553 +1735713177,2645904,1072088,escort,1,False,1,22711,22694,108482073,home,,,False,30.0,0,867856589,SHARED2,0.10722521021183494 +1735713265,2645905,1072088,othdiscr,1,True,2,22766,22711,108482079,parking,,,False,27.0,1,867856633,SHARED2,-1.1455545722211293 +1735713266,2645905,1072088,othdiscr,2,True,2,22766,22766,108482079,othdiscr,,,True,27.0,1,867856633,SHARED2,3.6111900800276358 +1735713273,2645905,1072088,othdiscr,1,False,2,22766,22766,108482079,parking,,,True,35.0,1,867856637,WALK,3.6112032457334435 +1735713274,2645905,1072088,othdiscr,2,False,2,22711,22766,108482079,home,,,False,35.0,1,867856637,SHARED2,-0.9957395363664312 +1735714209,2645905,1072088,shopping,1,True,3,22711,22711,108482138,othmaint,9.775720423403623,,False,22.0,0,867857105,WALK,0.1085924278937159 +1735714210,2645905,1072088,shopping,2,True,3,22711,22711,108482138,social,10.488858934392573,,False,23.0,0,867857106,WALK,0.1085924278937159 +1735714211,2645905,1072088,shopping,3,True,3,22711,22711,108482138,shopping,,,False,24.0,0,867857107,WALK,0.1085924278937159 +1735714217,2645905,1072088,shopping,1,False,1,22711,22711,108482138,home,,,False,24.0,0,867857109,WALK,0.1085924278937159 +1735715489,2645907,1072088,school,1,True,1,22716,22711,108482218,school,,,False,12.0,0,867857745,DRIVEALONE,-0.20641630035108205 +1735715497,2645907,1072088,school,1,False,1,22711,22716,108482218,home,,,False,26.0,0,867857749,DRIVEALONE,-0.20450702798248435 +1752394321,2671332,1083128,shopping,1,True,1,22650,22637,109524645,shopping,,,False,29.0,0,876197161,DRIVEALONE,-0.04893274687468395 +1752394329,2671332,1083128,shopping,1,False,2,22713,22650,109524645,eatout,8.732598620243117,,False,30.0,0,876197165,DRIVEALONE,-0.564278349048812 +1752394330,2671332,1083128,shopping,2,False,2,22637,22713,109524645,home,,,False,30.0,0,876197166,DRIVEALONE,-0.6753239045055804 +1871905057,2853513,1152948,shopping,1,True,1,22781,22770,116994066,shopping,,,False,13.0,0,935952529,WALK,-0.15286567920809457 +1871905065,2853513,1152948,shopping,1,False,1,22770,22781,116994066,home,,,False,16.0,0,935952533,WALK,-0.15286567920809457 +1871905073,2853513,1152948,shopping,1,True,1,22800,22770,116994067,shopping,,,False,22.0,0,935952537,WALK,-0.6260852483044879 +1871905081,2853513,1152948,shopping,1,False,2,22807,22800,116994067,othmaint,13.689405015818817,,False,23.0,0,935952541,WALK,-0.5662778537062289 +1871905082,2853513,1152948,shopping,2,False,2,22770,22807,116994067,home,,,False,23.0,0,935952542,WALK,2.1564636451535324 +1871905089,2853513,1152948,shopping,1,True,1,22798,22770,116994068,shopping,,,False,25.0,0,935952545,WALK,0.3629456060638815 +1871905097,2853513,1152948,shopping,1,False,1,22770,22798,116994068,home,,,False,32.0,0,935952549,WALK,0.3629456060638815 +1873669969,2856204,1154357,escort,1,True,1,22767,22815,117104373,escort,,,False,11.0,0,936834985,WALK,1.572441903227518 +1873669977,2856204,1154357,escort,1,False,1,22815,22767,117104373,home,,,False,11.0,0,936834989,WALK,1.572441903227518 +1873670225,2856204,1154357,othdiscr,1,True,1,22795,22815,117104389,othdiscr,,,False,11.0,0,936835113,WALK,-1.136157391902266 +1873670233,2856204,1154357,othdiscr,1,False,1,22815,22795,117104389,home,,,False,15.0,0,936835117,WALK,-1.136157391902266 +1873670321,2856204,1154357,univ,1,True,3,22767,22815,117104395,work,13.498034431649993,,False,21.0,0,936835161,WALK,5.028511196364142 +1873670322,2856204,1154357,univ,2,True,3,22809,22767,117104395,univ,10.775599452844196,22809,False,22.0,0,936835162,WALK_LOC,2.7954607582586246 +1873670323,2856204,1154357,univ,3,True,3,22809,22809,117104395,univ,,,False,24.0,0,936835163,WALK,3.0008457318923365 +1873670329,2856204,1154357,univ,1,False,4,22767,22809,117104395,othmaint,11.97899358246422,,False,42.0,0,936835165,WALK,2.7869485143816908 +1873670330,2856204,1154357,univ,2,False,4,22764,22767,117104395,univ,14.341759600913552,,False,42.0,0,936835166,WALK,5.487620370472843 +1873670331,2856204,1154357,univ,3,False,4,22770,22764,117104395,othdiscr,12.599191957343043,,False,44.0,0,936835167,WALK,2.6096929225906433 +1873670332,2856204,1154357,univ,4,False,4,22815,22770,117104395,home,,,False,44.0,0,936835168,WALK_LOC,3.5917238491796746 +1873969057,2856660,1154635,eatout,1,True,1,22810,22815,117123066,eatout,,,False,32.0,0,936984529,WALK,-0.29168228455903983 +1873969065,2856660,1154635,eatout,1,False,1,22815,22810,117123066,home,,,False,33.0,0,936984533,WALK,-0.29168228455903983 +1873969457,2856660,1154635,univ,1,True,1,22764,22815,117123091,univ,,,False,17.0,0,936984729,WALK,1.8818869666378932 +1873969465,2856660,1154635,univ,1,False,4,22766,22764,117123091,univ,9.92705808981923,22766,False,20.0,0,936984733,WALK,2.332439730730206 +1873969466,2856660,1154635,univ,2,False,4,22767,22766,117123091,eatout,11.698000750719451,,False,20.0,0,936984734,WALK,2.0354974925066145 +1873969467,2856660,1154635,univ,3,False,4,22764,22767,117123091,univ,14.467091292345321,,False,26.0,0,936984735,WALK,5.113556461480974 +1873969468,2856660,1154635,univ,4,False,4,22815,22764,117123091,home,,,False,30.0,0,936984736,WALK,1.8818676173433673 +1873970113,2856661,1154635,univ,1,True,2,22767,22815,117123132,eatout,24.13568322189892,,False,9.0,0,936985057,WALK,5.024093072052891 +1873970114,2856661,1154635,univ,2,True,2,22809,22767,117123132,univ,,,False,10.0,0,936985058,WALK,2.7951650320100074 +1873970121,2856661,1154635,univ,1,False,4,22809,22809,117123132,univ,22.10560655915902,22809,False,24.0,0,936985061,WALK,3.000453614136991 +1873970122,2856661,1154635,univ,2,False,4,22809,22809,117123132,univ,21.992495219718602,22809,False,24.0,0,936985062,WALK,3.000453614136991 +1873970123,2856661,1154635,univ,3,False,4,22807,22809,117123132,work,26.50952124631712,,False,25.0,0,936985063,WALK,3.007444572576448 +1873970124,2856661,1154635,univ,4,False,4,22815,22807,117123132,home,,,False,31.0,0,936985064,WALK,5.1535448290063615 +1877439505,2861950,1156849,shopping,1,True,1,22800,22801,117339969,shopping,,,False,21.0,0,938719753,WALK,-0.49881710844895727 +1877439513,2861950,1156849,shopping,1,False,1,22801,22800,117339969,home,,,False,30.0,0,938719757,WALK,-0.49881710844895727 +1877439697,2861950,1156849,univ,1,True,1,22809,22801,117339981,univ,,,False,13.0,0,938719849,WALK,2.7089529835300503 +1877439705,2861950,1156849,univ,1,False,2,22766,22809,117339981,univ,22.262579096450402,22766,False,20.0,0,938719853,WALK_LOC,2.560406996243793 +1877439706,2861950,1156849,univ,2,False,2,22801,22766,117339981,home,,,False,21.0,0,938719854,WALK_LOC,2.3733339088312397 +1877440353,2861951,1156849,univ,1,True,1,22809,22801,117340022,univ,,,False,11.0,0,938720177,WALK,-0.656569218265208 +1877440361,2861951,1156849,univ,1,False,3,22767,22809,117340022,othdiscr,14.308117668699108,,False,12.0,0,938720181,WALK,-0.50518420043921 +1877440362,2861951,1156849,univ,2,False,3,22767,22767,117340022,shopping,17.816995526914052,,False,12.0,0,938720182,WALK,2.62825193059268 +1877440363,2861951,1156849,univ,3,False,3,22801,22767,117340022,home,,,False,13.0,0,938720183,WALK,1.890862363486975 +1877441009,2861952,1156849,univ,1,True,1,22809,22801,117340063,univ,,,False,7.0,0,938720505,WALK,-0.656569218265208 +1877441017,2861952,1156849,univ,1,False,1,22801,22809,117340063,home,,,False,11.0,0,938720509,WALK,-0.656569218265208 +1877441025,2861952,1156849,univ,1,True,1,22809,22801,117340064,univ,,,False,30.0,0,938720513,WALK,-0.656569218265208 +1877441033,2861952,1156849,univ,1,False,1,22801,22809,117340064,home,,,False,32.0,0,938720517,WALK,-0.656569218265208 +1877508577,2862055,1156884,univ,1,True,3,22767,22804,117344286,eatout,12.979710329497422,,False,19.0,0,938754289,WALK,1.8938019500606744 +1877508578,2862055,1156884,univ,2,True,3,22767,22767,117344286,work,15.06828301301832,,False,20.0,0,938754290,WALK,2.62825193059268 +1877508579,2862055,1156884,univ,3,True,3,22809,22767,117344286,univ,,,False,22.0,0,938754291,WALK,-0.50518420043921 +1877508585,2862055,1156884,univ,1,False,1,22804,22809,117344286,home,,,False,22.0,0,938754293,WALK,-0.44242952311569 +1877509233,2862056,1156884,univ,1,True,1,22809,22804,117344327,univ,,,False,12.0,0,938754617,WALK,2.816810400707295 +1877509241,2862056,1156884,univ,1,False,1,22804,22809,117344327,home,,,False,27.0,0,938754621,WALK,2.818487568540833 +1877509889,2862057,1156884,univ,1,True,1,22809,22804,117344368,univ,,,False,9.0,0,938754945,WALK,2.8149418226097684 +1877509897,2862057,1156884,univ,1,False,4,22767,22809,117344368,othdiscr,14.092132672154193,,False,29.0,0,938754949,WALK,2.8115136852150613 +1877509898,2862057,1156884,univ,2,False,4,22809,22767,117344368,univ,15.082414498585248,22809,False,29.0,0,938754950,WALK_LOC,5.421713617528955 +1877509899,2862057,1156884,univ,3,False,4,22809,22809,117344368,univ,11.07119990210677,22809,False,29.0,0,938754951,WALK,3.0039396426418254 +1877509900,2862057,1156884,univ,4,False,4,22804,22809,117344368,home,,,False,40.0,0,938754952,WALK,2.7990874824379435 +1878731969,2863920,1157823,othmaint,1,True,2,22795,22812,117420748,parking,,,False,7.0,1,939365985,DRIVEALONE,-0.09902637407657627 +1878731970,2863920,1157823,othmaint,2,True,2,22806,22795,117420748,othmaint,,,True,7.0,1,939365985,WALK,3.92788746633635 +1878731977,2863920,1157823,othmaint,1,False,7,22767,22806,117420748,eatout,11.485301584384368,,True,8.0,1,939365989,WALK,4.150955713093153 +1878731978,2863920,1157823,othmaint,2,False,7,22795,22767,117420748,parking,,,True,8.0,1,939365990,WALK,4.44330039201803 +1878731979,2863920,1157823,othmaint,3,False,7,22738,22795,117420748,shopping,11.358833245442405,,False,8.0,1,939365990,DRIVEALONE,-0.6103921916626766 +1878731980,2863920,1157823,othmaint,4,False,7,22795,22738,117420748,parking,,,False,9.0,1,939365991,DRIVEALONE,-0.39605030270985575 +1878731981,2863920,1157823,othmaint,5,False,7,22767,22795,117420748,eatout,11.192175326364463,,True,9.0,1,939365991,WALK,2.952615589445755 +1878731982,2863920,1157823,othmaint,6,False,7,22795,22767,117420748,parking,,,True,9.0,1,939365992,WALK,4.44330039201803 +1878731983,2863920,1157823,othmaint,7,False,7,22812,22795,117420748,home,,,False,9.0,1,939365992,DRIVEALONE,-0.11948535915923522 +1878732017,2863920,1157823,univ,1,True,1,22766,22812,117420751,univ,,,False,13.0,0,939366009,WALK,-1.5030831477846986 +1878732025,2863920,1157823,univ,1,False,1,22812,22766,117420751,home,,,False,32.0,0,939366013,WALK,-1.5030834911074449 +1878732673,2863921,1157823,univ,1,True,1,22809,22812,117420792,univ,,,False,14.0,0,939366337,WALK,-0.92894689390927 +1878732681,2863921,1157823,univ,1,False,1,22812,22809,117420792,home,,,False,15.0,0,939366341,WALK,-0.92894689390927 +1878732689,2863921,1157823,univ,1,True,1,22809,22812,117420793,univ,,,False,16.0,0,939366345,WALK_LOC,2.481692099564644 +1878732697,2863921,1157823,univ,1,False,3,22764,22809,117420793,univ,9.981605111059457,,False,24.0,0,939366349,WALK,2.459602060048778 +1878732698,2863921,1157823,univ,2,False,3,22764,22764,117420793,univ,9.84928711859661,,False,24.0,0,939366350,WALK,3.003985864868469 +1878732699,2863921,1157823,univ,3,False,3,22812,22764,117420793,home,,,False,26.0,0,939366351,WALK,2.316202097516391 +1878733329,2863922,1157823,univ,1,True,1,22764,22812,117420833,univ,,,False,16.0,0,939366665,WALK,-1.1568382386079819 +1878733337,2863922,1157823,univ,1,False,1,22812,22764,117420833,home,,,False,24.0,0,939366669,WALK,-1.1568382386079819 +1880695889,2866914,1159236,shopping,1,True,2,22738,22797,117543493,shopping,9.753195503246463,,False,20.0,1,940347945,SHARED2,-0.44959528911187474 +1880695890,2866914,1159236,shopping,2,True,2,22738,22738,117543493,shopping,,,False,21.0,1,940347946,SHARED2,-0.41569822407021684 +1880695897,2866914,1159236,shopping,1,False,2,22796,22738,117543493,parking,,,False,21.0,1,940347949,SHARED2,-0.618932986161138 +1880695898,2866914,1159236,shopping,2,False,2,22796,22796,117543493,parking,,,True,21.0,1,940347949,WALK,3.612657585008612 +1880695985,2866914,1159236,othdiscr,1,True,1,22733,22797,117543499,othdiscr,,,False,7.0,0,940347993,TNC_SHARED,-1.2334449201087534 +1880695993,2866914,1159236,othdiscr,1,False,1,22797,22733,117543499,home,,,False,9.0,0,940347997,SHARED3,-1.5864778947158276 +1880696209,2866914,1159236,work,1,True,2,22766,22797,117543513,parking,,,False,12.0,1,940348105,DRIVEALONE,-0.23277800252868205 +1880696210,2866914,1159236,work,2,True,2,22766,22766,117543513,work,,,True,12.0,1,940348105,WALK,2.014924960389029 +1880696217,2866914,1159236,work,1,False,1,22797,22766,117543513,home,,,True,18.0,1,940348109,WALK,0.7326263231237407 +1880696225,2866914,1159236,work,1,True,2,22766,22797,117543514,parking,,,False,25.0,1,940348113,DRIVEALONE,-0.2126150341505889 +1880696226,2866914,1159236,work,2,True,2,22766,22766,117543514,work,,,True,25.0,1,940348113,WALK,2.0149069444380916 +1880696233,2866914,1159236,work,1,False,1,22797,22766,117543514,home,,,True,27.0,1,940348117,WALK_LOC,0.7203611640018683 +1880696385,2866915,1159236,escort,1,True,1,22738,22797,117543524,escort,,,False,10.0,1,940348193,DRIVEALONE,-0.1859277636541118 +1880696393,2866915,1159236,escort,1,False,2,22796,22738,117543524,parking,,,False,10.0,1,940348197,DRIVEALONE,-0.3618327302148594 +1880696394,2866915,1159236,escort,2,False,2,22796,22796,117543524,parking,,,True,10.0,1,940348197,WALK,1.067154699334263 +1880696865,2866915,1159236,work,1,True,1,22801,22797,117543554,work,,,False,14.0,0,940348433,WALK,0.19014379979819185 +1880696873,2866915,1159236,work,1,False,4,22770,22801,117543554,shopping,11.568986593078103,,False,24.0,0,940348437,WALK,0.4209941097322794 +1880696874,2866915,1159236,work,2,False,4,22771,22770,117543554,eatout,13.008322605925745,,False,25.0,0,940348438,WALK,0.6865956537757166 +1880696875,2866915,1159236,work,3,False,4,22767,22771,117543554,shopping,12.587784804165072,,False,25.0,0,940348439,WALK,0.7791172141286921 +1880696876,2866915,1159236,work,4,False,4,22797,22767,117543554,home,,,False,26.0,0,940348440,WALK,0.4989418541157284 +1883150833,2870656,1160939,univ,1,True,1,22764,22740,117696927,univ,,,False,9.0,0,941575417,WALK,-0.4952620689018146 +1883150841,2870656,1160939,univ,1,False,1,22740,22764,117696927,home,,,False,20.0,0,941575421,SHARED2,-0.7088657694023863 +1885520561,2874269,1162627,eatout,1,True,1,22771,22758,117845035,eatout,,,False,19.0,0,942760281,WALK,0.8892845196071101 +1885520569,2874269,1162627,eatout,1,False,1,22758,22771,117845035,home,,,False,21.0,0,942760285,WALK,0.8892845196071101 +1885520961,2874269,1162627,univ,1,True,1,22766,22758,117845060,univ,,,False,33.0,0,942760481,WALK,-0.9851903695198061 +1885520969,2874269,1162627,univ,1,False,1,22758,22766,117845060,home,,,False,48.0,0,942760485,WALK,-0.9851903695198061 +1885521617,2874270,1162627,univ,1,True,1,22809,22758,117845101,univ,,,False,13.0,0,942760809,WALK,2.448568395465578 +1885521625,2874270,1162627,univ,1,False,3,22766,22809,117845101,univ,10.064918042210902,22766,False,29.0,0,942760813,WALK,2.5591208432062635 +1885521626,2874270,1162627,univ,2,False,3,22760,22766,117845101,eatout,12.726627067763937,,False,29.0,0,942760814,WALK,2.6006338904068236 +1885521627,2874270,1162627,univ,3,False,3,22758,22760,117845101,home,,,False,31.0,0,942760815,WALK,5.854019928994619 +1885522273,2874271,1162627,univ,1,True,1,22766,22758,117845142,univ,,,False,13.0,0,942761137,WALK,-0.9851903695198061 +1885522281,2874271,1162627,univ,1,False,3,22807,22766,117845142,social,12.701701490919964,,False,25.0,0,942761141,WALK,-0.7025935206727638 +1885522282,2874271,1162627,univ,2,False,3,22767,22807,117845142,eatout,18.97072944477215,,False,25.0,0,942761142,WALK,2.329516762852266 +1885522283,2874271,1162627,univ,3,False,3,22758,22767,117845142,home,,,False,26.0,0,942761143,WALK,2.1084560857351926 +3099151793,4724316,1944022,univ,1,True,2,22763,22765,193696987,escort,12.812689062193739,,False,26.0,0,1549575897,WALK,2.1351670996963623 +3099151794,4724316,1944022,univ,2,True,2,22766,22763,193696987,univ,,,False,27.0,0,1549575898,WALK,-0.8559965323806581 +3099151801,4724316,1944022,univ,1,False,2,22767,22766,193696987,eatout,13.154682962658466,,False,29.0,0,1549575901,WALK,-0.9673991559282129 +3099151802,4724316,1944022,univ,2,False,2,22765,22767,193696987,home,,,False,29.0,0,1549575902,WALK,2.1708672114306493 +3099404353,4724701,1944407,univ,1,True,1,22809,22808,193712772,univ,,,False,12.0,0,1549702177,BIKE,-0.2552725353403566 +3099404361,4724701,1944407,univ,1,False,2,22766,22809,193712772,univ,11.3195538505166,22766,False,37.0,0,1549702181,BIKE,-0.7042893633777787 +3099404362,4724701,1944407,univ,2,False,2,22808,22766,193712772,home,,,False,37.0,0,1549702182,BIKE,-0.6429800462056683 +3099416945,4724720,1944426,work,1,True,1,22738,22806,193713559,work,,,False,10.0,0,1549708473,WALK,3.424476741640782 +3099416953,4724720,1944426,work,1,False,1,22806,22738,193713559,home,,,False,25.0,0,1549708477,WALK,3.421200065013991 +3100974161,4727094,1946800,univ,1,True,2,22796,22808,193810885,parking,,,False,20.0,1,1550487081,SHARED2,-0.325497193352596 +3100974162,4727094,1946800,univ,2,True,2,22809,22796,193810885,univ,,,True,20.0,1,1550487081,WALK_LOC,2.1755216717496055 +3100974169,4727094,1946800,univ,1,False,1,22808,22809,193810885,home,,,True,27.0,1,1550487085,WALK,2.117177438190699 +3101586209,4728027,1947733,univ,1,True,1,22764,22806,193849138,univ,,,False,10.0,0,1550793105,WALK,-1.1092692699446687 +3101586217,4728027,1947733,univ,1,False,2,22767,22764,193849138,escort,13.485546584318579,,False,27.0,0,1550793109,WALK,-0.5148347167335139 +3101586218,4728027,1947733,univ,2,False,2,22806,22767,193849138,home,,,False,28.0,0,1550793110,WALK,1.9818127360573472 +3109893137,4740690,1970879,univ,1,True,1,22764,22745,194368321,univ,,,False,11.0,0,1554946569,WALK,2.576602218700462 +3109893145,4740690,1970879,univ,1,False,3,22768,22764,194368321,social,26.124396751214636,,False,31.0,0,1554946573,WALK,2.8253929561140825 +3109893146,4740690,1970879,univ,2,False,3,22760,22768,194368321,othdiscr,30.225849882595227,,False,32.0,0,1554946574,WALK,4.979971583696819 +3109893147,4740690,1970879,univ,3,False,3,22745,22760,194368321,home,,,False,32.0,0,1554946575,WALK,5.801965338203763 diff --git a/activitysim/examples/production_semcog/test/test_semcog.py b/activitysim/examples/production_semcog/test/test_semcog.py new file mode 100644 index 000000000..10651d445 --- /dev/null +++ b/activitysim/examples/production_semcog/test/test_semcog.py @@ -0,0 +1,89 @@ +from __future__ import annotations + +# ActivitySim +# See full license in LICENSE.txt. +import os +import subprocess + +import pandas as pd +import pkg_resources + +from activitysim.core.test._tools import assert_frame_substantively_equal + + +def run_test_semcog(multiprocess=False): + def example_path(dirname): + resource = os.path.join("examples", "production_semcog", dirname) + return pkg_resources.resource_filename("activitysim", resource) + + def test_path(dirname): + return os.path.join(os.path.dirname(__file__), dirname) + + def regress(): + regress_trips_df = pd.read_csv( + test_path("regress/final_trips.csv"), dtype={"depart": int} + ) + final_trips_df = pd.read_csv( + test_path("output/final_trips.csv"), dtype={"depart": int} + ) + assert_frame_substantively_equal(final_trips_df, regress_trips_df) + + file_path = os.path.join(os.path.dirname(__file__), "../simulation.py") + + if multiprocess: + subprocess.run( + [ + "coverage", + "run", + "-a", + file_path, + "-c", + test_path("configs_mp"), + "-c", + example_path("configs_mp"), + "-c", + example_path("configs"), + "-d", + example_path("data"), + "--data_model", + example_path("data_model"), + "-o", + test_path("output"), + ], + check=True, + ) + else: + subprocess.run( + [ + "coverage", + "run", + "-a", + file_path, + "-c", + test_path("configs"), + "-c", + example_path("configs"), + "-d", + example_path("data"), + "--data_model", + example_path("data_model"), + "-o", + test_path("output"), + ], + check=True, + ) + + regress() + + +def test_semcog(): + run_test_semcog(multiprocess=False) + + +def test_semcog_mp(): + run_test_semcog(multiprocess=True) + + +if __name__ == "__main__": + run_test_semcog(multiprocess=False) + run_test_semcog(multiprocess=True) diff --git a/activitysim/examples/prototype_arc/configs/logging.yaml b/activitysim/examples/prototype_arc/configs/logging.yaml index 1db43e998..8ebd99114 100644 --- a/activitysim/examples/prototype_arc/configs/logging.yaml +++ b/activitysim/examples/prototype_arc/configs/logging.yaml @@ -40,7 +40,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET diff --git a/activitysim/examples/prototype_arc/configs/non_mandatory_tour_frequency_alternatives.csv b/activitysim/examples/prototype_arc/configs/non_mandatory_tour_frequency_alternatives.csv index b9765aa75..09e89fae3 100644 --- a/activitysim/examples/prototype_arc/configs/non_mandatory_tour_frequency_alternatives.csv +++ b/activitysim/examples/prototype_arc/configs/non_mandatory_tour_frequency_alternatives.csv @@ -1,97 +1,97 @@ -escort,shopping,othmaint,othdiscr,eatout,social -0,0,0,0,0,0 -0,0,0,1,0,0 -0,0,0,0,0,1 -0,0,0,1,0,1 -0,0,0,0,1,0 -0,0,0,1,1,0 -0,0,0,0,1,1 -0,0,0,1,1,1 -0,0,1,0,0,0 -0,0,1,1,0,0 -0,0,1,0,0,1 -0,0,1,1,0,1 -0,0,1,0,1,0 -0,0,1,1,1,0 -0,0,1,0,1,1 -0,0,1,1,1,1 -0,1,0,0,0,0 -0,1,0,1,0,0 -0,1,0,0,0,1 -0,1,0,1,0,1 -0,1,0,0,1,0 -0,1,0,1,1,0 -0,1,0,0,1,1 -0,1,0,1,1,1 -0,1,1,0,0,0 -0,1,1,1,0,0 -0,1,1,0,0,1 -0,1,1,1,0,1 -0,1,1,0,1,0 -0,1,1,1,1,0 -0,1,1,0,1,1 -0,1,1,1,1,1 -1,0,0,0,0,0 -1,0,0,1,0,0 -1,0,0,0,0,1 -1,0,0,1,0,1 -1,0,0,0,1,0 -1,0,0,1,1,0 -1,0,0,0,1,1 -1,0,0,1,1,1 -1,0,1,0,0,0 -1,0,1,1,0,0 -1,0,1,0,0,1 -1,0,1,1,0,1 -1,0,1,0,1,0 -1,0,1,1,1,0 -1,0,1,0,1,1 -1,0,1,1,1,1 -1,1,0,0,0,0 -1,1,0,1,0,0 -1,1,0,0,0,1 -1,1,0,1,0,1 -1,1,0,0,1,0 -1,1,0,1,1,0 -1,1,0,0,1,1 -1,1,0,1,1,1 -1,1,1,0,0,0 -1,1,1,1,0,0 -1,1,1,0,0,1 -1,1,1,1,0,1 -1,1,1,0,1,0 -1,1,1,1,1,0 -1,1,1,0,1,1 -1,1,1,1,1,1 -2,0,0,0,0,0 -2,0,0,1,0,0 -2,0,0,0,0,1 -2,0,0,1,0,1 -2,0,0,0,1,0 -2,0,0,1,1,0 -2,0,0,0,1,1 -2,0,0,1,1,1 -2,0,1,0,0,0 -2,0,1,1,0,0 -2,0,1,0,0,1 -2,0,1,1,0,1 -2,0,1,0,1,0 -2,0,1,1,1,0 -2,0,1,0,1,1 -2,0,1,1,1,1 -2,1,0,0,0,0 -2,1,0,1,0,0 -2,1,0,0,0,1 -2,1,0,1,0,1 -2,1,0,0,1,0 -2,1,0,1,1,0 -2,1,0,0,1,1 -2,1,0,1,1,1 -2,1,1,0,0,0 -2,1,1,1,0,0 -2,1,1,0,0,1 -2,1,1,1,0,1 -2,1,1,0,1,0 -2,1,1,1,1,0 -2,1,1,0,1,1 -2,1,1,1,1,1 +escort,shopping,othmaint,othdiscr,eatout,social,tot_tours +0,0,0,0,0,0,0 +0,0,0,1,0,0,1 +0,0,0,0,0,1,1 +0,0,0,1,0,1,2 +0,0,0,0,1,0,1 +0,0,0,1,1,0,2 +0,0,0,0,1,1,2 +0,0,0,1,1,1,3 +0,0,1,0,0,0,1 +0,0,1,1,0,0,2 +0,0,1,0,0,1,2 +0,0,1,1,0,1,3 +0,0,1,0,1,0,2 +0,0,1,1,1,0,3 +0,0,1,0,1,1,3 +0,0,1,1,1,1,4 +0,1,0,0,0,0,1 +0,1,0,1,0,0,2 +0,1,0,0,0,1,2 +0,1,0,1,0,1,3 +0,1,0,0,1,0,2 +0,1,0,1,1,0,3 +0,1,0,0,1,1,3 +0,1,0,1,1,1,4 +0,1,1,0,0,0,2 +0,1,1,1,0,0,3 +0,1,1,0,0,1,3 +0,1,1,1,0,1,4 +0,1,1,0,1,0,3 +0,1,1,1,1,0,4 +0,1,1,0,1,1,4 +0,1,1,1,1,1,5 +1,0,0,0,0,0,1 +1,0,0,1,0,0,2 +1,0,0,0,0,1,2 +1,0,0,1,0,1,3 +1,0,0,0,1,0,2 +1,0,0,1,1,0,3 +1,0,0,0,1,1,3 +1,0,0,1,1,1,4 +1,0,1,0,0,0,2 +1,0,1,1,0,0,3 +1,0,1,0,0,1,3 +1,0,1,1,0,1,4 +1,0,1,0,1,0,3 +1,0,1,1,1,0,4 +1,0,1,0,1,1,4 +1,0,1,1,1,1,5 +1,1,0,0,0,0,2 +1,1,0,1,0,0,3 +1,1,0,0,0,1,3 +1,1,0,1,0,1,4 +1,1,0,0,1,0,3 +1,1,0,1,1,0,4 +1,1,0,0,1,1,4 +1,1,0,1,1,1,5 +1,1,1,0,0,0,3 +1,1,1,1,0,0,4 +1,1,1,0,0,1,4 +1,1,1,1,0,1,5 +1,1,1,0,1,0,4 +1,1,1,1,1,0,5 +1,1,1,0,1,1,5 +1,1,1,1,1,1,6 +2,0,0,0,0,0,2 +2,0,0,1,0,0,3 +2,0,0,0,0,1,3 +2,0,0,1,0,1,4 +2,0,0,0,1,0,3 +2,0,0,1,1,0,4 +2,0,0,0,1,1,4 +2,0,0,1,1,1,5 +2,0,1,0,0,0,3 +2,0,1,1,0,0,4 +2,0,1,0,0,1,4 +2,0,1,1,0,1,5 +2,0,1,0,1,0,4 +2,0,1,1,1,0,5 +2,0,1,0,1,1,5 +2,0,1,1,1,1,6 +2,1,0,0,0,0,3 +2,1,0,1,0,0,4 +2,1,0,0,0,1,4 +2,1,0,1,0,1,5 +2,1,0,0,1,0,4 +2,1,0,1,1,0,5 +2,1,0,0,1,1,5 +2,1,0,1,1,1,6 +2,1,1,0,0,0,4 +2,1,1,1,0,0,5 +2,1,1,0,0,1,5 +2,1,1,1,0,1,6 +2,1,1,0,1,0,5 +2,1,1,1,1,0,6 +2,1,1,0,1,1,6 +2,1,1,1,1,1,7 diff --git a/activitysim/examples/prototype_arc/configs/parking_location_choice.yaml b/activitysim/examples/prototype_arc/configs/parking_location_choice.yaml index e48287093..d17208fc2 100644 --- a/activitysim/examples/prototype_arc/configs/parking_location_choice.yaml +++ b/activitysim/examples/prototype_arc/configs/parking_location_choice.yaml @@ -1,12 +1,12 @@ -METADATA: - CHOOSER: trips_merged - INPUT: - persons: - trips: - tours: - OUTPUT: - trips: - - parking_zone_id +#METADATA: +# CHOOSER: trips_merged +# INPUT: +# persons: +# trips: +# tours: +# OUTPUT: +# trips: +# - parking_zone_id SPECIFICATION: parking_location_choice.csv COEFFICIENTS: parking_location_choice_coeffs.csv @@ -30,7 +30,7 @@ SEGMENTS: - mandatory_free - mandatory_pay - nonmandatory - + ALT_DEST_COL_NAME: parking_zone_id TRIP_ORIGIN: origin TRIP_DESTINATION: destination diff --git a/activitysim/examples/prototype_arc/configs/settings.yaml b/activitysim/examples/prototype_arc/configs/settings.yaml index aa1c297ac..6ff25b94e 100644 --- a/activitysim/examples/prototype_arc/configs/settings.yaml +++ b/activitysim/examples/prototype_arc/configs/settings.yaml @@ -150,7 +150,7 @@ multiprocess_steps: tables: - accessibility # don't slice any tables not explicitly listed above in slice.tables - except: True + exclude: True - name: mp_households begin: school_location num_processes: 5 diff --git a/activitysim/examples/prototype_arc/configs/settings_mp.yaml b/activitysim/examples/prototype_arc/configs/settings_mp.yaml index 5701b4029..40dc990ef 100644 --- a/activitysim/examples/prototype_arc/configs/settings_mp.yaml +++ b/activitysim/examples/prototype_arc/configs/settings_mp.yaml @@ -157,7 +157,7 @@ multiprocess_steps: tables: - accessibility # don't slice any tables not explicitly listed above in slice.tables - except: True + exclude: True - name: mp_households begin: school_location slice: diff --git a/activitysim/examples/prototype_arc/configs/trip_departure_choice.yaml b/activitysim/examples/prototype_arc/configs/trip_departure_choice.yaml index daf657bcc..27e9fd974 100644 --- a/activitysim/examples/prototype_arc/configs/trip_departure_choice.yaml +++ b/activitysim/examples/prototype_arc/configs/trip_departure_choice.yaml @@ -1,20 +1,20 @@ -METADATA: - CHOOSER: tours - INPUT: - persons: - trips: - tours: - OUTPUT: - trips: - - start_period - - end_period +#METADATA: +# CHOOSER: tours +# INPUT: +# persons: +# trips: +# tours: +# OUTPUT: +# trips: +# - start_period +# - end_period SPECIFICATION: trip_departure_choice.csv -COEFFICIENTS: trip_departure_choice_coeff.csv +#COEFFICIENTS: trip_departure_choice_coeff.csv PREPROCESSOR: SPEC: trip_departure_choice_preprocessor DF: trips TABLES: - - tours \ No newline at end of file + - tours diff --git a/activitysim/examples/prototype_arc/configs/trip_destination.yaml b/activitysim/examples/prototype_arc/configs/trip_destination.yaml index a6ee2e48e..28d649f77 100644 --- a/activitysim/examples/prototype_arc/configs/trip_destination.yaml +++ b/activitysim/examples/prototype_arc/configs/trip_destination.yaml @@ -1,7 +1,7 @@ SAMPLE_SIZE: 30 -DESTINATION_SAMPLE_SPEC: trip_destination_sample.csv -DESTINATION_SPEC: trip_destination.csv +SAMPLE_SPEC: trip_destination_sample.csv +SPEC: trip_destination.csv LOGSUM_SETTINGS: trip_mode_choice.yaml @@ -38,4 +38,3 @@ CLEANUP: False # this setting is used by testing code to force failed trip_destination # fail_some_trips_for_testing: False - diff --git a/activitysim/examples/prototype_arc/configs/trip_scheduling_choice.yaml b/activitysim/examples/prototype_arc/configs/trip_scheduling_choice.yaml index f7a9171f7..3d1231f0a 100644 --- a/activitysim/examples/prototype_arc/configs/trip_scheduling_choice.yaml +++ b/activitysim/examples/prototype_arc/configs/trip_scheduling_choice.yaml @@ -1,22 +1,22 @@ -METADATA: - CHOOSER: tours - INPUT: - persons: - trips: - tours: - OUTPUT: - trips: - - start_period - - end_period +#METADATA: +# CHOOSER: tours +# INPUT: +# persons: +# trips: +# tours: +# OUTPUT: +# trips: +# - start_period +# - end_period SPECIFICATION: trip_scheduling_choice.csv -COEFFICIENTS: trip_scheduling_choice_coeff.csv +#COEFFICIENTS: trip_scheduling_choice_coeff.csv -SAMPLE_ALTERNATIVES: trip_departure_sample_patterns.csv +#SAMPLE_ALTERNATIVES: trip_departure_sample_patterns.csv PREPROCESSOR: SPEC: trip_scheduling_choice_preprocessor DF: tours TABLES: - persons - - trips \ No newline at end of file + - trips diff --git a/activitysim/examples/prototype_arc/test/test_arc.py b/activitysim/examples/prototype_arc/test/test_arc.py index 5b3513249..aeb6a5615 100644 --- a/activitysim/examples/prototype_arc/test/test_arc.py +++ b/activitysim/examples/prototype_arc/test/test_arc.py @@ -1,3 +1,5 @@ +from __future__ import annotations + # ActivitySim # See full license in LICENSE.txt. import os @@ -8,12 +10,7 @@ import pandas.testing as pdt import pkg_resources -from activitysim.core import inject - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +from activitysim.core.test import assert_frame_substantively_equal def _test_arc(recode=False, sharrow=False): @@ -35,7 +32,7 @@ def regress(): # person_id,household_id,tour_id,primary_purpose,trip_num,outbound,trip_count,purpose, # destination,origin,destination_logsum,depart,trip_mode,mode_choice_logsum # compare_cols = [] - pdt.assert_frame_equal(final_trips_df, regress_trips_df) + assert_frame_substantively_equal(final_trips_df, regress_trips_df) file_path = os.path.join(os.path.dirname(__file__), "simulation.py") diff --git a/activitysim/examples/prototype_marin/configs/logging.yaml b/activitysim/examples/prototype_marin/configs/logging.yaml index df20cf0c7..9addd3070 100755 --- a/activitysim/examples/prototype_marin/configs/logging.yaml +++ b/activitysim/examples/prototype_marin/configs/logging.yaml @@ -28,7 +28,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET @@ -51,4 +52,3 @@ logging: class: logging.Formatter format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' datefmt: '%d/%m/%Y %H:%M:%S' - diff --git a/activitysim/examples/prototype_marin/test/reference_pipeline.zip b/activitysim/examples/prototype_marin/test/reference_pipeline.zip new file mode 100644 index 000000000..9342673dd Binary files /dev/null and b/activitysim/examples/prototype_marin/test/reference_pipeline.zip differ diff --git a/activitysim/examples/prototype_marin/test/reference_trace.tar.gz b/activitysim/examples/prototype_marin/test/reference_trace.tar.gz new file mode 100644 index 000000000..70c8adc46 Binary files /dev/null and b/activitysim/examples/prototype_marin/test/reference_trace.tar.gz differ diff --git a/activitysim/examples/prototype_marin/test/test_marin.py b/activitysim/examples/prototype_marin/test/test_marin.py index 2f78de886..4de5028f1 100644 --- a/activitysim/examples/prototype_marin/test/test_marin.py +++ b/activitysim/examples/prototype_marin/test/test_marin.py @@ -1,36 +1,38 @@ +from __future__ import annotations + # ActivitySim # See full license in LICENSE.txt. import os import subprocess +from pathlib import Path import pandas as pd import pandas.testing as pdt import pkg_resources -from activitysim.core import inject +from activitysim.core import test, workflow -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +def example_path(dirname): + resource = os.path.join("examples", "prototype_marin", dirname) + return pkg_resources.resource_filename("activitysim", resource) -def test_marin(): - def example_path(dirname): - resource = os.path.join("examples", "prototype_marin", dirname) - return pkg_resources.resource_filename("activitysim", resource) +def _test_path(dirname): + return os.path.join(os.path.dirname(__file__), dirname) - def test_path(dirname): - return os.path.join(os.path.dirname(__file__), dirname) +def test_marin(): def regress(): - regress_trips_df = pd.read_csv(test_path("regress/final_tours.csv")) - final_trips_df = pd.read_csv(test_path("output/final_tours.csv")) + regress_trips_df = pd.read_csv(_test_path("regress/final_tours.csv")) + final_trips_df = pd.read_csv(_test_path("output/final_tours.csv")) # person_id,household_id,tour_id,primary_purpose,trip_num,outbound,trip_count,purpose, # destination,origin,destination_logsum,depart,trip_mode,mode_choice_logsum # compare_cols = [] - pdt.assert_frame_equal(final_trips_df, regress_trips_df) + test.assert_frame_substantively_equal( + final_trips_df, regress_trips_df, check_dtype=False + ) file_path = os.path.join(os.path.dirname(__file__), "simulation.py") @@ -41,13 +43,13 @@ def regress(): "-a", file_path, "-c", - test_path("configs"), + _test_path("configs"), "-c", example_path("configs"), "-d", example_path("data"), "-o", - test_path("output"), + _test_path("output"), ], check=True, ) @@ -55,6 +57,55 @@ def regress(): regress() -if __name__ == "__main__": +EXPECTED_MODELS = [ + "initialize_landuse", + "initialize_households", + "initialize_tours", + "initialize_los", + "initialize_tvpb", + "tour_mode_choice_simulate", + "write_data_dictionary", + "track_skim_usage", + "write_tables", +] + + +@test.run_if_exists("reference_pipeline.zip") +def test_marin_progressive(): + import activitysim.abm # register components + + state = workflow.State.make_default( + configs_dir=( + _test_path("configs"), + example_path("configs"), + ), + data_dir=(example_path("data"),), + output_dir=_test_path("output"), + ) + + assert state.settings.models == EXPECTED_MODELS + assert state.settings.chunk_size == 0 + assert state.settings.sharrow == False + + state.settings.trace_hh_id = 8268 + trace_validation_directory = Path(__file__).parent / "reference_trace.tar.gz" + if trace_validation_directory.exists(): + state.tracing.validation_directory = trace_validation_directory + for step_name in EXPECTED_MODELS: + state.run.by_name(step_name) + try: + state.checkpoint.check_against( + Path(__file__).parent / "reference_pipeline.zip", + checkpoint_name=step_name, + ) + except Exception: + print(f"> MARIN {step_name}: ERROR") + raise + else: + print(f"> MARIN {step_name}: ok") + + +if __name__ == "__main__": test_marin() + test_marin_progressive() diff --git a/activitysim/examples/prototype_mtc/configs/logging.yaml b/activitysim/examples/prototype_mtc/configs/logging.yaml index 3b2851ddd..8bf54a0ec 100644 --- a/activitysim/examples/prototype_mtc/configs/logging.yaml +++ b/activitysim/examples/prototype_mtc/configs/logging.yaml @@ -40,7 +40,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: activitysim.log mode: w formatter: fileFormatter level: NOTSET diff --git a/activitysim/examples/prototype_mtc/configs/non_mandatory_tour_frequency_alternatives.csv b/activitysim/examples/prototype_mtc/configs/non_mandatory_tour_frequency_alternatives.csv index b9765aa75..09e89fae3 100644 --- a/activitysim/examples/prototype_mtc/configs/non_mandatory_tour_frequency_alternatives.csv +++ b/activitysim/examples/prototype_mtc/configs/non_mandatory_tour_frequency_alternatives.csv @@ -1,97 +1,97 @@ -escort,shopping,othmaint,othdiscr,eatout,social -0,0,0,0,0,0 -0,0,0,1,0,0 -0,0,0,0,0,1 -0,0,0,1,0,1 -0,0,0,0,1,0 -0,0,0,1,1,0 -0,0,0,0,1,1 -0,0,0,1,1,1 -0,0,1,0,0,0 -0,0,1,1,0,0 -0,0,1,0,0,1 -0,0,1,1,0,1 -0,0,1,0,1,0 -0,0,1,1,1,0 -0,0,1,0,1,1 -0,0,1,1,1,1 -0,1,0,0,0,0 -0,1,0,1,0,0 -0,1,0,0,0,1 -0,1,0,1,0,1 -0,1,0,0,1,0 -0,1,0,1,1,0 -0,1,0,0,1,1 -0,1,0,1,1,1 -0,1,1,0,0,0 -0,1,1,1,0,0 -0,1,1,0,0,1 -0,1,1,1,0,1 -0,1,1,0,1,0 -0,1,1,1,1,0 -0,1,1,0,1,1 -0,1,1,1,1,1 -1,0,0,0,0,0 -1,0,0,1,0,0 -1,0,0,0,0,1 -1,0,0,1,0,1 -1,0,0,0,1,0 -1,0,0,1,1,0 -1,0,0,0,1,1 -1,0,0,1,1,1 -1,0,1,0,0,0 -1,0,1,1,0,0 -1,0,1,0,0,1 -1,0,1,1,0,1 -1,0,1,0,1,0 -1,0,1,1,1,0 -1,0,1,0,1,1 -1,0,1,1,1,1 -1,1,0,0,0,0 -1,1,0,1,0,0 -1,1,0,0,0,1 -1,1,0,1,0,1 -1,1,0,0,1,0 -1,1,0,1,1,0 -1,1,0,0,1,1 -1,1,0,1,1,1 -1,1,1,0,0,0 -1,1,1,1,0,0 -1,1,1,0,0,1 -1,1,1,1,0,1 -1,1,1,0,1,0 -1,1,1,1,1,0 -1,1,1,0,1,1 -1,1,1,1,1,1 -2,0,0,0,0,0 -2,0,0,1,0,0 -2,0,0,0,0,1 -2,0,0,1,0,1 -2,0,0,0,1,0 -2,0,0,1,1,0 -2,0,0,0,1,1 -2,0,0,1,1,1 -2,0,1,0,0,0 -2,0,1,1,0,0 -2,0,1,0,0,1 -2,0,1,1,0,1 -2,0,1,0,1,0 -2,0,1,1,1,0 -2,0,1,0,1,1 -2,0,1,1,1,1 -2,1,0,0,0,0 -2,1,0,1,0,0 -2,1,0,0,0,1 -2,1,0,1,0,1 -2,1,0,0,1,0 -2,1,0,1,1,0 -2,1,0,0,1,1 -2,1,0,1,1,1 -2,1,1,0,0,0 -2,1,1,1,0,0 -2,1,1,0,0,1 -2,1,1,1,0,1 -2,1,1,0,1,0 -2,1,1,1,1,0 -2,1,1,0,1,1 -2,1,1,1,1,1 +escort,shopping,othmaint,othdiscr,eatout,social,tot_tours +0,0,0,0,0,0,0 +0,0,0,1,0,0,1 +0,0,0,0,0,1,1 +0,0,0,1,0,1,2 +0,0,0,0,1,0,1 +0,0,0,1,1,0,2 +0,0,0,0,1,1,2 +0,0,0,1,1,1,3 +0,0,1,0,0,0,1 +0,0,1,1,0,0,2 +0,0,1,0,0,1,2 +0,0,1,1,0,1,3 +0,0,1,0,1,0,2 +0,0,1,1,1,0,3 +0,0,1,0,1,1,3 +0,0,1,1,1,1,4 +0,1,0,0,0,0,1 +0,1,0,1,0,0,2 +0,1,0,0,0,1,2 +0,1,0,1,0,1,3 +0,1,0,0,1,0,2 +0,1,0,1,1,0,3 +0,1,0,0,1,1,3 +0,1,0,1,1,1,4 +0,1,1,0,0,0,2 +0,1,1,1,0,0,3 +0,1,1,0,0,1,3 +0,1,1,1,0,1,4 +0,1,1,0,1,0,3 +0,1,1,1,1,0,4 +0,1,1,0,1,1,4 +0,1,1,1,1,1,5 +1,0,0,0,0,0,1 +1,0,0,1,0,0,2 +1,0,0,0,0,1,2 +1,0,0,1,0,1,3 +1,0,0,0,1,0,2 +1,0,0,1,1,0,3 +1,0,0,0,1,1,3 +1,0,0,1,1,1,4 +1,0,1,0,0,0,2 +1,0,1,1,0,0,3 +1,0,1,0,0,1,3 +1,0,1,1,0,1,4 +1,0,1,0,1,0,3 +1,0,1,1,1,0,4 +1,0,1,0,1,1,4 +1,0,1,1,1,1,5 +1,1,0,0,0,0,2 +1,1,0,1,0,0,3 +1,1,0,0,0,1,3 +1,1,0,1,0,1,4 +1,1,0,0,1,0,3 +1,1,0,1,1,0,4 +1,1,0,0,1,1,4 +1,1,0,1,1,1,5 +1,1,1,0,0,0,3 +1,1,1,1,0,0,4 +1,1,1,0,0,1,4 +1,1,1,1,0,1,5 +1,1,1,0,1,0,4 +1,1,1,1,1,0,5 +1,1,1,0,1,1,5 +1,1,1,1,1,1,6 +2,0,0,0,0,0,2 +2,0,0,1,0,0,3 +2,0,0,0,0,1,3 +2,0,0,1,0,1,4 +2,0,0,0,1,0,3 +2,0,0,1,1,0,4 +2,0,0,0,1,1,4 +2,0,0,1,1,1,5 +2,0,1,0,0,0,3 +2,0,1,1,0,0,4 +2,0,1,0,0,1,4 +2,0,1,1,0,1,5 +2,0,1,0,1,0,4 +2,0,1,1,1,0,5 +2,0,1,0,1,1,5 +2,0,1,1,1,1,6 +2,1,0,0,0,0,3 +2,1,0,1,0,0,4 +2,1,0,0,0,1,4 +2,1,0,1,0,1,5 +2,1,0,0,1,0,4 +2,1,0,1,1,0,5 +2,1,0,0,1,1,5 +2,1,0,1,1,1,6 +2,1,1,0,0,0,4 +2,1,1,1,0,0,5 +2,1,1,0,0,1,5 +2,1,1,1,0,1,6 +2,1,1,0,1,0,5 +2,1,1,1,1,0,6 +2,1,1,0,1,1,6 +2,1,1,1,1,1,7 diff --git a/activitysim/examples/prototype_mtc/configs/settings.yaml b/activitysim/examples/prototype_mtc/configs/settings.yaml index 6577b94b9..2ef104d2c 100644 --- a/activitysim/examples/prototype_mtc/configs/settings.yaml +++ b/activitysim/examples/prototype_mtc/configs/settings.yaml @@ -90,6 +90,7 @@ input_table_list: # convert input CSVs to HDF5 format and save to outputs directory # create_input_store: True +recode_pipeline_columns: True #input_store: ../output/input_data.h5 @@ -261,5 +262,4 @@ household_median_value_of_time: 1: 6.01 2: 8.81 3: 10.44 - 4: 12.86 - + 4: 12.86 \ No newline at end of file diff --git a/activitysim/examples/prototype_mtc/configs/stop_frequency_annotate_tours_preprocessor.csv b/activitysim/examples/prototype_mtc/configs/stop_frequency_annotate_tours_preprocessor.csv index d7b2f1d61..675fe4c2d 100644 --- a/activitysim/examples/prototype_mtc/configs/stop_frequency_annotate_tours_preprocessor.csv +++ b/activitysim/examples/prototype_mtc/configs/stop_frequency_annotate_tours_preprocessor.csv @@ -4,6 +4,7 @@ Description,Target,Expression # e.g. univ segment means there will be a spec called stop_frequency_univ.csv,, # so the 'school' tour_type can treat univ and non-univ school tours differently,, ,primary_purpose,"df.tour_type.where((df.tour_type != 'school') | ~df.is_university, 'univ')" +# assigning category columns a new value can be problematic,, ,primary_purpose,"primary_purpose.where(df.tour_category!='atwork', 'atwork')" #,, ,distance_in_miles,od_skims['DIST'] @@ -45,3 +46,6 @@ AccesibilityADestination off-peak transit,_dest_trOpRetail,"reindex(accessibilit AccesibilityAtDestination if transit,pracc,"pracc.where(~tour_mode_is_transit, _dest_trPkRetail.where(_tour_starts_in_peak, _dest_trOpRetail))" AccesibilityAtDestination if non_motorized,pracc,"pracc.where(~tour_mode_is_non_motorized, reindex(accessibility.nmRetail, df.destination))" ,destination_area_type,"reindex(land_use.area_type, df.destination)" +,is_mixed,df.composition=='mixed' +,is_adults_tour,df.composition=='adults' +,is_social,primary_purpose=='social' diff --git a/activitysim/examples/prototype_mtc/configs/stop_frequency_eatout.csv b/activitysim/examples/prototype_mtc/configs/stop_frequency_eatout.csv index f3a1d8505..5765af299 100644 --- a/activitysim/examples/prototype_mtc/configs/stop_frequency_eatout.csv +++ b/activitysim/examples/prototype_mtc/configs/stop_frequency_eatout.csv @@ -27,7 +27,7 @@ util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, util_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction util_number_of_persons_participating_in_the_tour_return_stops_interaction,Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -util_at_least_one_kid_and_one_adult_participate_in_the_tour,At least one kid and one adult participate in the tour,composition=='mixed',,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour +util_at_least_one_kid_and_one_adult_participate_in_the_tour,At least one kid and one adult participate in the tour,is_mixed,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_ util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, @@ -47,6 +47,6 @@ util_alternative_specific_constant_for_the_total_number_of_stops,Alternative spe util_alternative_specific_constant_for_outbound_stops_on_joint_tours,Alternative specific constant for outbound stops on joint tours,is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in util_alternative_specific_constant_for_return_stops_on_joint_tours,Alternative specific constant for return stops on joint tours,is_joint,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in util_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours,Alternative specific constant for the total number of stops on joint tours,is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in -util_dummy_for_an_outbound_visiting_tour,Dummy for an outbound visiting tour,primary_purpose == 'social',,,,,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour -util_dummy_for_a_return_visiting_tour,Dummy for a return visiting tour,primary_purpose == 'social',,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour -util_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,Dummy for a visiting tour with both outbound and return leg,primary_purpose == 'social',,,,,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg +util_dummy_for_an_outbound_visiting_tour,Dummy for an outbound visiting tour,is_social,,,,,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour +util_dummy_for_a_return_visiting_tour,Dummy for a return visiting tour,is_social,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour +util_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,Dummy for a visiting tour with both outbound and return leg,is_social,,,,,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg diff --git a/activitysim/examples/prototype_mtc/configs/stop_frequency_shopping.csv b/activitysim/examples/prototype_mtc/configs/stop_frequency_shopping.csv index 195c6504b..5150da4be 100644 --- a/activitysim/examples/prototype_mtc/configs/stop_frequency_shopping.csv +++ b/activitysim/examples/prototype_mtc/configs/stop_frequency_shopping.csv @@ -27,7 +27,7 @@ util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold,coef_number_of_shop_tours_undertaken_by_the_houshold util_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, util_number_of_persons_participating_in_the_tour_return_stops_interaction,Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -util_dummy_for_only_adults_participate_in_the_tour,Dummy for only adults participate in the tour,composition=='adults',,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour +util_dummy_for_only_adults_participate_in_the_tour,Dummy for only adults participate in the tour,is_adults_tour,,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour,coef_dummy_for_only_adults_participate_in_the_tour util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,,,,,,,,,,,,,,, util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, diff --git a/activitysim/examples/prototype_mtc/configs/stop_frequency_social.csv b/activitysim/examples/prototype_mtc/configs/stop_frequency_social.csv index 3a0e2eda9..84e6f6ef7 100644 --- a/activitysim/examples/prototype_mtc/configs/stop_frequency_social.csv +++ b/activitysim/examples/prototype_mtc/configs/stop_frequency_social.csv @@ -27,7 +27,7 @@ util_number_of_visit_tours_tours_undertaken_by_the_person,Number of visit tours util_number_of_shop_tours_undertaken_by_the_houshold,Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, util_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction,coef_number_of_persons_participating_in_the_tour_outgoing_stops_interaction util_number_of_persons_participating_in_the_tour_return_stops_interaction,Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -util_at_least_one_kid_and_one_adult_participate_in_the_tour,At least one kid and one adult participate in the tour,composition=='mixed',,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour +util_at_least_one_kid_and_one_adult_participate_in_the_tour,At least one kid and one adult participate in the tour,is_mixed,,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour,coef_at_least_one_kid_and_one_adult_participate_in_the_tour util_am_peak_departure_between_6am_and_7_am_including_interacted_with_outbound_tours,AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>5) & (start<8),,,,,,,,,,,,,,,, util_arrival_later_than_17_00_,Arrival later than 17:00.,(end > 16),,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_,coef_arrival_later_than_17_00_ util_evening_arrival_19_00_interacted_with_return_tours,Evening Arrival (>=19:00) Interacted with return tours,(end > 18),,,,,,,,,,,,,,,, @@ -47,6 +47,6 @@ util_alternative_specific_constant_for_the_total_number_of_stops,Alternative spe util_alternative_specific_constant_for_outbound_stops_on_joint_tours,Alternative specific constant for outbound stops on joint tours,is_joint,,,,,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_1out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_2out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in,coef_alternative_specific_constant_for_outbound_stops_on_joint_tours_3out_0in util_alternative_specific_constant_for_return_stops_on_joint_tours,Alternative specific constant for return stops on joint tours,is_joint,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in util_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours,Alternative specific constant for the total number of stops on joint tours,is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in -util_dummy_for_an_outbound_visiting_tour,Dummy for an outbound visiting tour,primary_purpose == 'social',,,,,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour -util_dummy_for_a_return_visiting_tour,Dummy for a return visiting tour,primary_purpose == 'social',,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour -util_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,Dummy for a visiting tour with both outbound and return leg,primary_purpose == 'social',,,,,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg +util_dummy_for_an_outbound_visiting_tour,Dummy for an outbound visiting tour,is_social,,,,,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour,coef_dummy_for_an_outbound_visiting_tour +util_dummy_for_a_return_visiting_tour,Dummy for a return visiting tour,is_social,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour,coef_dummy_for_a_return_visiting_tour +util_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,Dummy for a visiting tour with both outbound and return leg,is_social,,,,,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg,coef_dummy_for_a_visiting_tour_with_both_outbound_and_return_leg diff --git a/activitysim/examples/prototype_mtc/configs_chunktrain/logging.yaml b/activitysim/examples/prototype_mtc/configs_chunktrain/logging.yaml index 74fc31def..fb8385a04 100644 --- a/activitysim/examples/prototype_mtc/configs_chunktrain/logging.yaml +++ b/activitysim/examples/prototype_mtc/configs_chunktrain/logging.yaml @@ -44,7 +44,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET @@ -53,16 +54,17 @@ logging: class: logging.StreamHandler stream: ext://sys.stdout formatter: elapsedFormatter - level: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [WARNING, NOTSET] + level: + if_sub_task: WARNING + if_not_sub_task: NOTSET formatters: simpleFormatter: class: logging.Formatter - #format: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' - format: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [ - '%(processName)-10s %(levelname)s - %(name)s - %(message)s', - '%(levelname)s - %(name)s - %(message)s'] + format: + if_sub_task: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' + if_not_sub_task: '%(levelname)s - %(name)s - %(message)s' datefmt: '%d/%m/%Y %H:%M:%S' fileFormatter: diff --git a/activitysim/examples/prototype_mtc/configs_chunktrain/settings.yaml b/activitysim/examples/prototype_mtc/configs_chunktrain/settings.yaml index ecd18ec9e..aaa6fc139 100644 --- a/activitysim/examples/prototype_mtc/configs_chunktrain/settings.yaml +++ b/activitysim/examples/prototype_mtc/configs_chunktrain/settings.yaml @@ -73,7 +73,7 @@ multiprocess_steps: tables: - accessibility # don't slice any tables not explicitly listed above in slice.tables - except: True + exclude: True - name: mp_households begin: school_location slice: @@ -82,4 +82,3 @@ multiprocess_steps: - persons - name: mp_summarize begin: write_data_dictionary - diff --git a/activitysim/examples/prototype_mtc/configs_mp/logging.yaml b/activitysim/examples/prototype_mtc/configs_mp/logging.yaml index 13e533abb..779a4cbab 100644 --- a/activitysim/examples/prototype_mtc/configs_mp/logging.yaml +++ b/activitysim/examples/prototype_mtc/configs_mp/logging.yaml @@ -40,7 +40,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET @@ -48,7 +49,9 @@ logging: console: class: logging.StreamHandler stream: ext://sys.stdout - level: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [WARNING, NOTSET] + level: + if_sub_task: WARNING + if_not_sub_task: NOTSET formatter: elapsedFormatter formatters: diff --git a/activitysim/examples/prototype_mtc/configs_mp/settings.yaml b/activitysim/examples/prototype_mtc/configs_mp/settings.yaml index 7246c5cf3..768be2fc3 100644 --- a/activitysim/examples/prototype_mtc/configs_mp/settings.yaml +++ b/activitysim/examples/prototype_mtc/configs_mp/settings.yaml @@ -36,7 +36,7 @@ want_dest_choice_sample_tables: False # - tracing #trace_hh_id: -trace_od: +trace_od: [2,2] # to resume after last successful checkpoint, specify resume_after: _ #resume_after: trip_purpose_and_destination @@ -89,7 +89,7 @@ multiprocess_steps: tables: - accessibility # don't slice any tables not explicitly listed above in slice.tables - except: True + exclude: True - name: mp_households begin: school_location slice: @@ -98,4 +98,3 @@ multiprocess_steps: - persons - name: mp_summarize begin: write_data_dictionary - diff --git a/activitysim/examples/prototype_mtc/configs_production/logging.yaml b/activitysim/examples/prototype_mtc/configs_production/logging.yaml index 8939607c8..bfc2ab4b5 100644 --- a/activitysim/examples/prototype_mtc/configs_production/logging.yaml +++ b/activitysim/examples/prototype_mtc/configs_production/logging.yaml @@ -38,7 +38,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET @@ -47,16 +48,17 @@ logging: class: logging.StreamHandler stream: ext://sys.stdout formatter: elapsedFormatter - level: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [WARNING, NOTSET] + level: + if_sub_task: WARNING + if_not_sub_task: NOTSET formatters: simpleFormatter: class: logging.Formatter - #format: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' - format: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [ - '%(processName)-10s %(levelname)s - %(name)s - %(message)s', - '%(levelname)s - %(name)s - %(message)s'] + format: + if_sub_task: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' + if_not_sub_task: '%(levelname)s - %(name)s - %(message)s' datefmt: '%d/%m/%Y %H:%M:%S' fileFormatter: @@ -68,4 +70,3 @@ logging: (): activitysim.core.tracing.ElapsedTimeFormatter format: '[{elapsedTime}] {levelname:s}: {message:s}' style: '{' - diff --git a/activitysim/examples/prototype_mtc/configs_production/settings.yaml b/activitysim/examples/prototype_mtc/configs_production/settings.yaml index 8b3f59cb5..0eb9def19 100644 --- a/activitysim/examples/prototype_mtc/configs_production/settings.yaml +++ b/activitysim/examples/prototype_mtc/configs_production/settings.yaml @@ -73,7 +73,7 @@ multiprocess_steps: tables: - accessibility # don't slice any tables not explicitly listed above in slice.tables - except: True + exclude: True - name: mp_households begin: school_location slice: @@ -82,4 +82,3 @@ multiprocess_steps: - persons - name: mp_summarize begin: write_data_dictionary - diff --git a/activitysim/examples/prototype_mtc/data/example_hwy_data.csv b/activitysim/examples/prototype_mtc/data/example_hwy_data.csv new file mode 100644 index 000000000..f96b81012 --- /dev/null +++ b/activitysim/examples/prototype_mtc/data/example_hwy_data.csv @@ -0,0 +1,35497 @@ +ID,Dir,Length,AB_LANES,BA_LANES,CENT_LANE,MODE_ID,NFC,NFC_FLAG,AREA_TYPE,COUNTY,FENAME,FETYPE,PR,BMP,EMP,TransitOnly,Walktime,Alpha,Beta +41445,0,0.47372,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.369275,0.15,4 +5439,0,0.504171,1,1,0,2,4,,5,8,M 36,,932308,9.288,9.791,0,12.100097,3,4 +7044,0,2.780595,1,1,0,2,5,,5,8,Chilson,Rd,933603,1.514,4.294,0,66.734276,3.7,5 +7052,0,1.131603,1,1,0,2,5,,5,8,Golf Club,Rd,933602,0.811,1.942,0,27.158478,3.7,5 +7092,0,1.249086,1,1,0,2,3,,5,8,Highland,Rd,933209,5.027,6.275,0,29.978056,1.7,4 +7160,0,0.237102,2,2,1,2,3,,4,8,Grand River,Rd,932910,14.843,15.08,0,5.690436,3.7,5 +7273,0,2.361953,1,1,0,2,6,GRV,5,8,Cohoctah,Rd,941605,0,2.361,0,56.686861,5.55,5 +7461,0,1.126379,1,1,0,2,4,,5,8,Coon Lake,Rd,935710,12.715,13.841,0,27.033093,3,4 +40452,1,2.564832,3,0,0,1,1,,4,8,E I 96,,935105,12.602,15.166,0,,0.8,7.5 +40453,-1,3.036386,0,3,0,1,1,,4,8,W I 96,,935207,12.178,15.213,0,,0.8,7.5 +7760,0,1.594588,1,1,0,2,6,,5,8,Swarthout,Rd,944806,0,1.594,0,38.270104,5.8,6 +8014,0,0.998241,1,1,0,2,5,,5,8,Faussett,Rd,934509,2.179,3.177,0,23.957788,3.7,5 +8052,0,1.00383,1,1,0,2,6,GRV,5,8,Clyde,Rd,939905,0.986,1.989,0,24.091925,5.55,5 +9524,0,1.620616,1,1,0,2,4,,4,5,Baker,Rd,1426608,0.777,2.397,0,38.894789,4.5,4.5 +9556,1,4.558211,2,0,0,1,1,,5,5,E I 94,,1426109,8.368,12.924,0,,1.02,7 +9651,0,0.818111,1,1,0,2,4,,4,5,Jackson,Rd,1426508,13.096,13.914,0,19.634657,4.5,4.5 +9695,0,1.002933,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,7.105,8.107,0,24.070387,3.7,5 +10004,0,1.022865,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,9.532,10.554,0,24.548764,3,4 +10064,0,1.108566,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,0,1.115,0,26.605594,5.55,5 +10136,0,1.321996,1,1,0,2,3,,5,5,Michigan,Ave,1427301,4.261,5.582,0,31.727903,1.7,4 +10398,-1,4.851275,0,2,0,1,1,,5,5,W I 94,,1426110,8.315,13.164,0,,1.02,7 +10757,0,1.437476,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,0.08,1.517,0,34.499428,3.7,5 +10991,0,1.987447,1,1,0,2,6,GRV,5,5,Saline Waterworks,Rd,1432706,2.01,3.997,0,47.698729,5.55,5 +11092,0,0.316447,1,1,0,2,4,,4,5,Main,St,1446002,0.812,1.128,0,7.594731,4.5,4.5 +11128,0,0.925921,1,1,0,2,5,,5,5,Huron River,Dr,1445801,4.452,5.377,0,22.222113,3.7,5 +11359,0,0.323063,1,1,0,2,5,,4,5,Central,St,4605379,0,0.323,0,7.7535,5.8,4.5 +19920,0,0.824344,1,1,0,2,5,,5,8,Shehan,Rd,4103148,0,0.824,0,19.784267,3.7,5 +21855,0,1.434777,1,1,0,2,5,,5,5,Austin,Rd,4604910,7.18,8.614,0,34.434643,3.7,5 +24594,0,0.588089,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.114129,0.15,4 +24603,0,1.216451,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.194817,0.15,4 +24604,0,1.669329,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.063906,0.15,4 +24608,0,1.330765,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.938363,0.15,4 +24613,0,1.505446,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.130712,0.15,4 +24614,0,0.329505,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.908114,0.15,4 +24616,0,0.951103,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.826464,0.15,4 +24626,0,1.023795,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,24.571074,0.15,4 +24629,0,1.588811,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,38.131462,0.15,4 +24631,0,1.060343,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,25.448236,0.15,4 +24638,0,0.298511,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.164268,0.15,4 +24645,0,1.39543,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.490325,0.15,4 +24647,0,1.775936,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,42.622461,0.15,4 +24649,0,0.757875,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.189011,0.15,4 +24650,0,1.307831,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.387937,0.15,4 +24651,0,0.469697,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.272735,0.15,4 +27060,0,0.628688,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,15.088523,0.15,4 +29636,0,0.845217,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.285198,0.15,4 +29986,0,1.851808,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,44.443397,0.15,4 +30115,0,0.83924,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.141772,0.15,4 +6190,0,2.324564,1,1,0,2,4,,5,8,M 36,,932308,3.703,6.027,0,55.789547,3,4 +6910,0,0.901069,1,1,0,2,4,,5,8,M 36,,932308,0.859,1.76,0,21.625664,3,4 +7217,0,1.87192,1,1,0,2,6,,5,8,Farley,Rd,932707,0,1.871,0,44.926088,5.8,6 +7218,0,1.101658,1,1,0,2,4,,5,8,Pinckney,Rd,932701,0.123,1.225,0,26.439803,3,4 +19927,0,0.25015,1,1,0,2,4,,5,8,M 36,,4103111,9.134,9.384,0,6.003608,3,4 +24662,0,1.841747,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,44.201923,0.15,4 +30149,0,1.718795,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,41.251079,0.15,4 +5692,0,0.158879,1,1,0,2,6,,,5,Prospect Hill,Rd,915607,2.414,2.573,0,3.813099,5.8,6 +9710,0,1.84027,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,8.682,10.521,0,44.166484,3.7,5 +9712,0,1.079227,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,7.603,8.682,0,25.901442,3.7,5 +9717,0,1.629142,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,4.936,6.565,0,39.099412,3.7,5 +9872,0,3.463036,1,1,0,2,4,,5,5,M 52,,1425710,9.381,12.843,0,83.11286,3,4 +10919,0,1.110642,1,1,0,2,5,GRV,5,5,Parker,Rd,1447909,0,1.11,0,26.655416,5.55,5 +10937,0,1.017733,1,1,0,2,6,GRV,5,5,Jacob,Rd,1447706,1.228,2.245,0,24.425603,5.55,5 +11097,0,0.447432,1,1,0,2,6,,5,5,Reno,Rd,1447905,0,0.447,0,10.738361,5.8,6 +24675,0,1.708557,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,41.00536,0.15,4 +24679,0,0.400856,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.620545,0.15,4 +24681,0,1.051095,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.226283,0.15,4 +24682,0,2.335182,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,56.044367,0.15,4 +24684,0,2.40297,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,57.671276,0.15,4 +34047,0,0.943738,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34048,0,1.05608,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34049,0,1.147408,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34050,1,1.274682,2,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34051,-1,1.279914,0,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34054,0,0.859072,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34097,0,1.011921,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34098,0,1.063139,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9719,0,1.673395,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,3.264,4.936,0,40.161481,3.7,5 +9931,0,1.451434,1,1,0,2,4,,5,5,M 52,,1425710,3.765,5.216,0,34.834408,3,4 +9938,0,3.568208,1,1,0,2,4,,5,5,M 52,,1425710,0,3.567,0,85.636992,3,4 +11002,0,1.258925,1,1,0,2,6,GRV,5,5,Logan,Rd,1432503,0.702,1.96,0,30.214205,5.55,5 +11015,0,2.496174,1,1,0,2,6,GRV,5,5,Ely,Rd,1432210,0,2.495,0,59.908178,5.55,5 +11068,0,0.541218,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,0,0.541,0,12.989227,5.55,5 +21524,0,1.579614,1,1,0,2,5,,5,5,Austin,Rd,4604910,0,1.579,0,37.910728,3.7,5 +24566,0,0.609804,1,1,0,2,3,,,5,US 12,,0,0,0,0,14.635305,1.7,4 +24570,0,0.840364,2,2,0,2,3,,,5,US 12,,0,0,0,0,20.168744,1.7,4 +24571,0,0.456018,1,1,0,2,5,,,5,Clinton,Rd,0,0,0,0,10.944423,3.7,5 +24688,0,3.194112,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,76.658695,0.15,4 +24689,0,1.773893,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,42.573443,0.15,4 +19953,0,0.262867,1,1,0,2,3,,5,5,US 12,,3460109,1.126,1.389,0,6.308802,1.7,4 +34095,0,1.466755,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19951,0,1.879828,1,1,0,2,3,,,5,US 12,,3460109,2.24,4.119,0,45.115866,1.7,4 +24558,0,0.091608,1,1,0,2,3,,,5,US 12,,3460109,2.148,2.24,0,2.198585,1.7,4 +34094,0,0.867386,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +24559,0,0.551187,1,1,0,2,3,,,5,US 12,,3460109,1.597,2.148,0,13.228493,1.7,4 +24572,0,0.180297,1,1,0,2,3,,,5,US 12,,0,0,0,0,4.327128,1.7,4 +19952,0,0.0279,1,1,0,2,3,,5,5,US 12,,3460109,1.389,1.417,0,0.669595,1.7,4 +19950,0,0.1564,1,1,0,2,3,,,5,US 12,,3460109,4.119,4.275,0,3.753601,1.7,4 +9722,0,1.685035,1,1,0,2,6,,5,5,Pleasant Lake,Rd,1426007,0.035,1.72,0,40.440831,5.8,6 +11038,0,1.232959,1,1,0,2,6,,5,5,Sharon Hollow,Rd,1432205,4.129,5.361,0,29.591022,5.8,6 +19971,0,1.527581,1,1,0,2,5,,5,5,Austin,Rd,3380142,2.912,4.439,0,36.661955,3.7,5 +24686,0,2.167252,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,52.01405,0.15,4 +24687,0,2.005218,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,48.125227,0.15,4 +5694,0,1.376043,1,1,0,2,6,,5,5,Watkins,Rd,916203,1.083,2.459,0,33.025031,5.8,6 +11067,0,0.652203,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,2.173,2.825,0,15.652881,5.55,5 +11080,0,1.510036,1,1,0,2,6,,5,5,Herman,Rd,1432203,0.863,2.372,0,36.240875,5.8,6 +11115,0,1.185219,1,1,0,2,6,GRV,5,5,Wellwood,Rd,1432107,0,1.185,0,28.445249,5.55,5 +24598,0,1.627566,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.061592,0.15,4 +24691,0,0.934469,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.427254,0.15,4 +24692,0,1.961016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,47.064394,0.15,4 +5693,0,1.083415,1,1,0,2,6,,5,5,Watkins,Rd,916203,0,1.083,0,26.001958,5.8,6 +34096,0,0.724908,1,1,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +11083,0,0.862809,1,1,0,2,6,,5,5,Herman,Rd,1432203,0,0.863,0,20.707406,5.8,6 +11098,0,1.275977,1,1,0,2,6,GRV,5,5,Wellwood,Rd,1432107,1.185,2.46,0,30.623443,5.55,5 +11062,0,1.243263,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,2.825,4.068,0,29.838315,5.55,5 +24690,0,0.982495,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.579886,0.15,4 +11057,0,0.061112,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,4.068,4.129,0,1.466678,5.55,5 +21472,0,0.082362,1,1,0,2,6,,5,5,Herman,Rd,4603916,0,0.082,0,1.976679,5.8,6 +11070,0,0.046656,1,1,0,2,6,GRV,5,5,Herman/Sharon Hollow Cutoff,,1432203,2.372,2.419,0,1.119744,5.55,5 +9730,0,2.143771,1,1,0,2,6,,5,5,Sharon Valley,Rd,1426005,0,2.143,0,51.450502,5.8,6 +10944,0,1.016416,1,1,0,2,6,GRV,5,5,Below,Rd,1447705,0,1.016,0,24.393986,5.55,5 +11123,0,0.939881,1,1,0,2,6,,5,5,Sharon Hollow,Rd,1447607,0,0.94,0,22.557135,5.8,6 +19972,0,2.27855,1,1,0,2,5,,5,5,Austin,Rd,3380142,0.634,2.912,0,54.685192,3.7,5 +11037,0,1.581507,1,1,0,2,6,,5,5,Sharon Hollow,Rd,1432205,5.361,6.942,0,37.956179,5.8,6 +9729,0,0.061059,1,1,0,2,6,,5,5,Sharon Valley,Rd,1426005,2.143,2.204,0,1.465425,5.8,6 +10936,0,0.979673,1,1,0,2,6,GRV,5,5,Easudes,Rd,1447709,1.099,2.078,0,23.512154,5.55,5 +11110,0,1.228064,1,1,0,2,6,GRV,5,5,Jacob,Rd,1447706,0,1.228,0,29.473546,5.55,5 +11120,0,0.135926,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,5498382,0,0.136,0,3.26223,5.55,5 +9727,0,0.035235,1,1,0,2,6,GRV,5,5,Pleasant Lake,Rd,1426007,0,0.035,0,0.845632,5.55,5 +40031,-1,0.035432,0,1,0,2,3,,4,3,Orchard lake / W 14 MIle cutof,Rd,5500010,0,0.036,0,0.850366,3.7,5 +21876,0,0.073745,1,1,0,2,6,,5,5,Sharon Hollow/Pleasant Lake Cu,,4600923,0,0.074,0,1.769884,5.8,6 +9720,0,1.544554,1,1,0,2,6,,5,5,Pleasant Lake,Rd,1426007,1.72,3.264,0,37.069284,5.8,6 +19970,0,0.653389,1,1,0,2,5,,5,5,Austin,Rd,3380142,4.439,5.092,0,15.681341,3.7,5 +24548,0,1.517003,1,1,0,2,4,,5,5,M 52,,1425710,6.836,8.352,0,36.408068,3,4 +24685,0,1.173216,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.157192,0.15,4 +9731,0,0.415581,1,1,0,2,5,,5,5,Hibbard,St,1425809,0.164,0.579,0,9.973939,3.7,5 +9880,0,0.486017,1,1,0,2,4,,5,5,Ann Arbor,St,1425710,6.266,6.752,0,11.664408,3,4 +9907,0,0.367643,1,1,0,2,4,,5,5,Riverside,Dr,1425710,5.899,6.266,0,8.823425,3,4 +11003,0,0.409649,1,1,0,2,6,,5,5,Adrian,Rd,1432503,0.292,0.702,0,9.831581,5.8,6 +24591,0,0.791395,1,1,0,2,5,,5,5,Dutch,Dr,4605721,0,0.791,0,18.993479,3.7,5 +24694,0,0.184011,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,4.416271,0.15,4 +24696,0,0.396229,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.509505,0.15,4 +24701,0,0.422974,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.151375,0.15,4 +30082,0,0.536662,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.879886,0.15,4 +11004,0,0.292299,1,1,0,2,6,,5,5,Adrian,Rd,1432503,0,0.292,0,7.01517,5.8,6 +19968,0,0.199803,1,1,0,2,5,,5,5,Main,St,3380142,5.419,5.619,0,4.79526,3.7,5 +19969,0,0.327356,1,1,0,2,5,,5,5,Main,St,3380142,5.092,5.419,0,7.856534,3.7,5 +24697,0,0.444453,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.666861,0.15,4 +19967,0,0.081067,1,1,0,2,5,,5,5,Main,St,3380142,5.619,5.7,0,1.945611,3.7,5 +24547,0,0.084229,1,1,0,2,4,,5,5,Ann Arbor,St,1425710,6.752,6.836,0,2.021502,3,4 +9732,0,0.16379,1,1,0,2,5,,5,5,Hibbard,St,1425809,0,0.164,0,3.930955,3.7,5 +9924,0,0.391688,1,1,0,2,4,,5,5,City,Rd,1425710,5.507,5.899,0,9.400524,3,4 +24693,0,0.259882,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.237157,0.15,4 +24695,0,0.217852,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,5.228459,0.15,4 +24699,0,0.285309,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.84742,0.15,4 +24700,0,0.375863,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.020722,0.15,4 +9927,0,0.291335,1,1,0,2,4,,5,5,City,Rd,1425710,5.216,5.507,0,6.99204,3,4 +9878,0,1.028947,1,1,0,2,4,,5,5,M 52,,1425710,8.352,9.381,0,24.694728,3,4 +24683,0,1.955897,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,46.941536,0.15,4 +24569,0,0.78264,1,1,0,2,3,,,5,US 12,,0,0,0,0,18.783348,1.7,4 +24568,0,1.366761,1,1,0,2,3,,,5,US 12,,0,0,0,0,32.802272,1.7,4 +34093,0,0.764269,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +24567,0,0.133286,1,1,0,2,4,,,5,M 52,,0,0,0,0,3.198864,3,4 +34092,0,0.707902,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34091,0,0.800525,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +10410,0,0.590269,1,1,0,2,3,,5,5,Michigan,Ave,1427301,0,0.59,0,14.16646,1.7,4 +10996,0,2.420233,1,1,0,2,6,GRV,5,5,Kaiser,Rd,1432606,3.397,5.816,0,58.085598,5.55,5 +11000,0,0.904337,1,1,0,2,6,GRV,5,5,Braun,Rd,1432604,0,0.904,0,21.704081,5.55,5 +19954,0,1.479402,1,1,0,2,5,,5,5,Clinton,Rd,3460105,3.687,5.166,0,35.505644,3.7,5 +21799,0,1.960633,1,1,0,2,5,,5,5,Austin,Rd,4604910,3.237,5.197,0,47.05519,3.7,5 +24704,0,1.780442,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,42.730614,0.15,4 +24706,0,1.451312,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,34.831492,0.15,4 +24710,0,1.830908,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,43.941793,0.15,4 +24711,0,0.874833,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.99598,0.15,4 +19956,0,1.510986,1,1,0,2,5,,5,5,Clinton,Rd,3460105,1.874,3.384,0,36.263655,3.7,5 +24707,0,1.028679,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.688288,0.15,4 +29979,0,1.372868,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.948842,0.15,4 +9934,0,0.198256,1,1,0,2,4,,5,5,M 52,,1425710,3.567,3.765,0,4.758134,3,4 +19957,0,1.659541,1,1,0,2,5,,5,5,Clinton,Rd,3460105,0.215,1.874,0,39.828984,3.7,5 +19955,0,0.302819,1,1,0,2,5,,5,5,Clinton,Rd,3460105,3.384,3.687,0,7.267666,3.7,5 +10870,0,1.947888,1,1,0,2,6,GRV,5,5,Ernest,Rd,1433008,0,1.947,0,46.749301,5.55,5 +22067,0,1.448326,1,1,0,2,5,,5,5,Austin,Rd,4604910,1.789,3.237,0,34.759832,3.7,5 +21309,0,0.21018,1,1,0,2,5,,5,5,Austin,Rd,4604910,1.579,1.789,0,5.044324,3.7,5 +10844,0,1.639628,1,1,0,2,6,GRV,5,5,Ernest,Rd,1433008,1.947,3.586,0,39.351073,5.55,5 +9571,0,1.09711,1,1,0,2,6,GRV,5,5,McCollum,Rd,1427304,0,1.097,0,26.330644,5.55,5 +10142,0,1.927055,1,1,0,2,3,,5,5,Michigan,Ave,1427301,0.59,2.516,0,46.24932,1.7,4 +10408,0,1.745121,1,1,0,2,3,,5,5,Michigan,Ave,1427301,2.516,4.261,0,41.882904,1.7,4 +10999,0,1.794109,1,1,0,2,6,GRV,5,5,Braun,Rd,1432604,0.904,2.697,0,43.058613,5.55,5 +24702,0,0.945904,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.701686,0.15,4 +24703,0,1.850065,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,44.401557,0.15,4 +24705,0,1.558554,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.405292,0.15,4 +10342,0,1.002757,1,1,0,2,6,GRV,5,5,McCollum,Rd,1427304,1.097,2.099,0,24.06617,5.55,5 +9559,0,1.008822,1,1,0,2,6,GRV,5,5,McCollum,Rd,1427304,2.099,3.108,0,24.211739,5.55,5 +10842,0,1.05046,1,1,0,2,6,,5,5,Schneider,Rd,1433009,0,1.05,0,25.211048,5.8,6 +10994,0,2.01074,1,1,0,2,6,GRV,5,5,Saline Waterworks,Rd,1432706,0,2.01,0,48.257761,5.55,5 +11379,0,1.022038,1,1,0,2,5,GRV,5,5,Parker,Rd,1444406,0,1.022,0,24.528912,5.55,5 +21356,0,1.46991,1,1,0,2,5,,5,5,Austin,Rd,4604910,5.473,6.943,0,35.277841,3.7,5 +24708,0,1.061766,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.48239,0.15,4 +21575,0,0.276809,1,1,0,2,5,,5,5,Austin,Rd,4604910,5.197,5.473,0,6.643414,3.7,5 +10841,0,2.03161,1,1,0,2,6,,5,5,Schneider,Rd,1433009,1.05,3.081,0,48.758635,5.8,6 +22121,0,0.23741,1,1,0,2,5,,5,5,Austin,Rd,4604910,6.943,7.18,0,5.697832,3.7,5 +11377,0,0.50034,1,1,0,2,5,GRV,5,5,Parker,Rd,1444406,1.531,2.031,0,12.008164,5.55,5 +11154,0,0.509632,1,1,0,2,5,GRV,5,5,Parker,Rd,1444406,1.022,1.531,0,12.231156,5.55,5 +10921,0,0.164077,1,1,0,2,5,GRV,5,5,Weber,Rd,1447906,0.919,1.083,0,3.937857,5.55,5 +6823,0,1.109876,1,1,0,2,5,,5,8,Patterson Lake,Rd,932401,0.043,1.152,0,26.637022,3.7,5 +9523,0,0.7191,1,1,0,2,4,,4,5,Baker,Rd,1426608,2.397,3.116,0,17.258394,4.5,4.5 +9542,0,0.814681,1,1,0,2,7,GRV,5,5,Dancer,Rd,1426604,4.018,4.832,0,19.552345,5.55,5 +9572,1,2.018787,2,0,0,1,1,,5,5,E I 94,,1426109,5.878,7.896,0,,1.02,7 +9692,0,0.295339,1,1,0,2,4,,4,5,Old US 12,,1426508,6.731,7.027,0,7.088148,4.5,4.5 +9701,0,2.779808,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,0,2.779,0,66.715393,3.7,5 +10069,0,1.366733,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,2.219,3.585,0,32.801597,3.7,5 +10110,0,0.097643,1,1,0,2,5,,4,5,Middle,St,1426303,0.886,0.983,0,2.343428,5.8,4.5 +10400,-1,2.528029,0,2,0,1,1,,5,5,W I 94,,1426110,5.42,7.947,0,,1.02,7 +11016,0,0.570817,1,1,0,2,4,,4,5,Dexter Chelsea,Rd,1452809,6.459,7.029,0,13.699609,4.5,4.5 +11046,0,2.209093,1,1,0,2,6,GRV,5,5,Lima Center,Rd,1453510,0,2.208,0,53.018223,5.55,5 +11228,0,2.064413,1,1,0,2,6,GRV,5,5,Bush,Rd,1452510,1.767,3.831,0,49.545902,5.55,5 +11479,0,0.247761,1,1,0,2,5,,5,5,Island Lake,Rd,1451905,1.407,1.655,0,5.946255,3.7,5 +19766,0,0.068715,1,1,0,2,5,,5,8,Patterson Lake,Rd,4104154,0,0.069,0,1.649168,3.7,5 +21504,0,2.75499,1,1,0,2,5,,5,5,Hadley,Rd,4600021,0,2.754,0,66.119768,3.7,5 +24663,0,1.434852,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.436457,0.15,4 +24727,0,0.388384,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.321206,0.15,4 +24735,0,0.534289,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.822942,0.15,4 +24741,0,0.502752,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.066057,0.15,4 +9590,1,0.725149,2,0,0,1,1,,5,5,E I 94,,1426109,2.199,2.924,0,,1.02,7 +9704,0,0.97234,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,1426009,2.311,3.283,0,23.336158,5.55,5 +9784,0,1.459411,1,1,0,2,5,,5,5,Old US 12,,1426508,0,1.459,0,35.025862,3.7,5 +9799,0,1.734016,1,1,0,2,5,,5,5,Old US 12,,1426508,1.459,3.192,0,41.616377,3.7,5 +9822,0,0.877678,1,1,0,2,4,,5,5,M 52,,1425710,14.824,15.701,0,21.064277,3,4 +10411,-1,0.911762,0,2,0,1,1,,5,5,W I 94,,1426110,2.161,3.073,0,,1.02,7 +11114,0,2.213844,1,1,0,2,6,,5,5,Sylvan,Rd,1447702,4.686,6.899,0,53.132252,5.8,6 +11143,0,1.251642,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1436509,2.042,3.293,0,30.039413,3.7,5 +24724,0,0.664088,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.938107,0.15,4 +24737,0,1.042775,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.026592,0.15,4 +24751,0,1.544797,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.075127,0.15,4 +9706,0,1.821271,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,1426009,0.392,2.212,0,43.710514,5.55,5 +11109,0,1.946875,1,1,0,2,6,GRV,5,5,Struthers,Rd,1447706,2.245,4.191,0,46.724991,5.55,5 +34099,0,0.85475,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9707,0,0.391944,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,1426009,0,0.392,0,9.406658,5.55,5 +24672,0,1.919888,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,46.077304,0.15,4 +24673,0,0.874952,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.99884,0.15,4 +21534,0,0.07215,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,4603820,0,0.072,0,1.731602,5.55,5 +9597,1,1.626236,2,0,0,1,1,,5,5,E I 94,,1426109,0,1.626,0,,1.02,7 +10433,-1,1.67739,0,2,0,1,1,,5,5,W I 94,,1426110,0,1.677,0,,1.02,7 +11158,0,0.904605,1,1,0,2,6,,5,5,Cavanaugh Lake,Rd,1436509,0,0.904,0,21.710519,5.8,6 +22027,0,0.762693,1,1,0,2,5,,5,5,Kalmbach,Rd,4603246,0.53,1.292,0,18.304633,3.7,5 +24713,0,1.180196,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.324708,0.15,4 +34100,0,0.792576,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9596,1,0.573628,2,0,0,1,1,,5,5,E I 94,,1426109,1.626,2.199,0,,1.02,7 +9796,1,0.335771,1,0,0,1,1,ROF,5,5,E I 94/Kalmbach,RAMP,1426503,0,0.336,0,,2.24,5 +10839,0,0.674602,1,1,0,2,7,GRV,5,5,Garvey,Rd,1450909,0,0.674,0,16.190453,5.55,5 +24712,0,0.749854,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.99649,0.15,4 +11050,0,0.784257,1,1,0,2,7,GRV,5,5,Hoppe,Rd,1450810,0,0.784,0,18.822178,5.55,5 +9611,1,0.281595,1,0,0,1,1,ROF,5,5,W I 94/Kalmbach,RAMP,1427003,0,0.282,0,,2.24,5 +9790,1,0.238255,1,0,0,1,1,RON,5,5,Kalmbach/E I 94,RAMP,1426505,0,0.238,0,,1.09,4 +10427,-1,0.484651,0,2,0,1,1,,5,5,W I 94,,1426110,1.677,2.161,0,,1.02,7 +21478,0,0.347701,1,1,0,2,7,GRV,5,5,Kalmbach,Rd,4603246,0,0.348,0,8.344815,5.55,5 +10180,1,0.244312,1,0,0,1,1,RON,5,5,Kalmbach/W I 94,RAMP,1427002,0,0.244,0,,1.09,4 +21268,0,0.181964,1,1,0,2,5,,5,5,Kalmbach,Rd,4603246,0.348,0.53,0,4.367145,3.7,5 +11146,0,1.100111,1,1,0,2,6,,5,5,Cavanaugh Lake,Rd,1436509,0.904,2.004,0,26.402664,5.8,6 +21470,0,0.029755,1,1,0,2,5,,5,5,Kalmbach/Cavanaugh Lake,,4604626,0,0.03,0,0.714114,3.7,5 +21748,0,0.033211,1,1,0,2,6,,5,5,Kalmbach,Rd,4603246,1.292,1.325,0,0.797057,5.8,6 +11144,0,0.037861,1,1,0,2,6,,5,5,Cavanaugh Lake,Rd,1436509,2.004,2.042,0,0.90867,5.8,6 +9702,0,0.583977,1,1,0,2,6,,5,5,Grass Lake,Rd,1426009,4.643,5.227,0,14.01544,5.8,6 +9703,0,1.361362,1,1,0,2,6,,5,5,Grass Lake,Rd,1426009,3.283,4.643,0,32.672688,5.8,6 +10949,0,1.564852,1,1,0,2,6,GRV,5,5,Sylvan,Rd,1447702,3.122,4.686,0,37.556445,5.55,5 +9867,0,1.318022,1,1,0,2,4,,5,5,M 52,,1425710,12.843,14.16,0,31.632517,3,4 +9846,0,0.508827,1,1,0,2,4,,5,5,M 52,,1425710,14.16,14.669,0,12.21184,3,4 +9845,0,0.155109,1,1,0,2,4,,5,5,M 52,,1425710,14.669,14.824,0,3.722604,3,4 +9575,1,1.920738,2,0,0,1,1,,5,5,E I 94,,1426109,3.611,5.531,0,,1.02,7 +9697,0,2.392452,1,1,0,2,5,,5,5,Old US 12,,1426508,3.761,6.153,0,57.418842,3.7,5 +9788,0,0.497092,1,1,0,2,4,,5,5,Main,St,1425710,17.132,17.629,0,11.930208,3,4 +10402,-1,1.623258,0,2,0,1,1,,5,5,W I 94,,1426110,3.503,5.125,0,,1.02,7 +10846,0,1.076308,1,1,0,2,6,,5,5,Pierce,Rd,1450902,0,1.076,0,25.831387,5.8,6 +11211,0,1.064281,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1452508,0.966,2.03,0,25.542741,3.7,5 +11266,0,0.996146,1,1,0,2,6,,5,5,Bush,Rd,1452510,0,0.996,0,23.907503,5.8,6 +24721,0,0.814095,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.538283,0.15,4 +24722,0,0.600015,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.400354,0.15,4 +24726,0,0.399374,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.584975,0.15,4 +24736,0,1.279994,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,30.719856,0.15,4 +24739,0,0.30546,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.331042,0.15,4 +9578,1,0.687819,2,0,0,1,1,,5,5,E I 94,,1426109,2.924,3.611,0,,1.02,7 +9584,1,0.373705,1,0,0,1,1,RON,5,5,Jackson/E I 94,RAMP,1426509,0,0.374,0,,1.09,4 +10337,1,0.200254,1,0,0,1,1,ROF,5,5,W I 94/Jackson,RAMP,1427006,0,0.2,0,,2.24,5 +10404,-1,0.430269,0,2,0,1,1,,5,5,W I 94,,1426110,3.073,3.503,0,,1.02,7 +9767,0,0.265353,1,1,0,2,5,,5,5,Old US 12,,1426508,3.192,3.457,0,6.368483,3.7,5 +9786,1,0.341135,1,0,0,1,1,ROF,5,5,E I 94/Jackson,RAMP,1426507,0,0.341,0,,2.24,5 +9676,1,0.198207,1,0,0,1,1,RON,5,5,Jackson/W I 94,RAMP,1427005,0.063,0.261,0,,1.09,4 +9734,0,0.177203,1,1,0,2,5,,5,5,Old US 12,,1426508,3.51,3.687,0,4.252872,3.7,5 +9638,0,0.052419,1,1,0,2,5,,5,5,Old US 12,,1426508,3.457,3.51,0,1.258055,3.7,5 +9705,0,0.011957,1,1,0,2,5,,5,5,Old US 12,,1426508,3.749,3.761,0,0.286958,3.7,5 +9728,0,0.062332,1,1,0,2,5,,5,5,Old US 12,,1426508,3.687,3.749,0,1.49596,3.7,5 +10294,1,0.062805,1,0,0,1,1,RON,5,5,Jackson/W I 94,RAMP,1427005,0,0.063,0,,1.09,4 +21684,1,0.027262,1,0,0,1,1,RON,5,5,Jackson/W I 94,RAMP,4604623,0,0.027,0,,1.09,4 +11048,0,1.266825,1,1,0,2,6,,5,5,Pierce,Rd,1450902,1.076,2.342,0,30.403808,5.8,6 +11053,0,0.771992,1,1,0,2,6,,5,5,Bush,Rd,1452510,0.996,1.767,0,18.527806,5.8,6 +11126,0,0.722033,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1436509,3.293,4.015,0,17.328788,3.7,5 +11371,0,0.069409,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1452508,0.896,0.966,0,1.665822,3.7,5 +9802,0,0.905252,1,1,0,2,4,,5,5,M 52,,1425710,15.701,16.606,0,21.72604,3,4 +29977,0,0.758564,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.205526,0.15,4 +9573,1,0.346292,2,0,0,1,1,,5,5,E I 94,,1426109,5.531,5.878,0,,1.02,7 +9603,1,0.310352,1,0,0,1,1,ROF,5,5,E I 94/M 52,RAMP,1426108,0,0.31,0,,2.24,5 +9616,1,0.473974,1,0,0,1,1,RON,5,5,M 52/E I 94,RAMP,1426107,0,0.474,0,,1.09,4 +9792,0,0.202713,1,1,0,2,4,,5,5,Main,St,1425710,16.858,17.061,0,4.86512,3,4 +9797,0,0.231726,1,1,0,2,4,,5,5,Main,St,1425710,16.617,16.848,0,5.561413,3,4 +10167,1,0.418063,1,0,0,1,1,RON,5,5,M 52/W I 94,RAMP,1426202,0,0.418,0,,1.09,4 +40029,1,0.069633,3,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,4.993,5.062,0,1.671182,3.7,5 +10177,1,0.298735,1,0,0,1,1,ROF,5,5,W I 94/M 52,RAMP,1426201,0,0.299,0,,2.24,5 +24740,0,0.284636,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.831261,0.15,4 +10401,-1,0.294756,0,2,0,1,1,,5,5,W I 94,,1426110,5.125,5.42,0,,1.02,7 +40030,-1,0.034538,0,2,0,2,3,,4,3,Orchard Lake,Rd,5499978,0.062,0.097,0,0.828914,3.7,5 +40022,1,0.006358,3,0,0,2,3,,4,3,Orchard Lake,Rd,634003,4.937,4.943,0,0.152585,3.7,5 +39957,1,0.155169,3,0,0,2,5,,3,1,Riverbank,Rd,5494511,0,0.155,0,3.724051,8,4.5 +40028,1,0.0189,2,0,0,2,3,,4,3,Orchard Lake,Rd,634003,4.974,4.993,0,0.453606,3.7,5 +9801,0,0.010532,1,1,0,2,4,,5,5,M 52,,1425710,16.606,16.617,0,0.252771,3,4 +39944,-1,0.050994,0,2,0,2,5,,1,1,S I 375 Service Drive,,5491063,0,0.051,0,1.223857,8.5,4.5 +9794,0,0.009861,1,1,0,2,4,,5,5,Main,St,1425710,16.848,16.858,0,0.236668,3,4 +9789,0,0.071138,1,1,0,2,4,,5,5,Main,St,1425710,17.061,17.132,0,1.707314,3,4 +24725,0,0.308619,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.406863,0.15,4 +9774,0,0.140256,1,1,0,2,4,,5,5,Main,St,1425710,18.419,18.559,0,3.366135,3,4 +10145,0,0.262935,1,1,0,2,5,,4,5,Middle,St,1426303,0,0.263,0,6.310446,5.8,4.5 +11504,0,0.324407,1,1,0,2,6,,5,5,Sibley,Rd,1452509,0.759,1.084,0,7.785779,5.8,6 +24743,0,0.461962,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.087097,0.15,4 +24744,0,0.371058,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.905401,0.15,4 +29978,0,0.631518,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.156425,0.15,4 +11026,0,0.073895,1,1,0,2,5,,4,5,Cleveland,St,1452602,0,0.074,0,1.773492,5.8,4.5 +9696,0,0.254633,1,1,0,2,5,,4,5,Old US 12,,1426508,6.153,6.407,0,6.111186,5.8,4.5 +9783,0,0.584652,1,1,0,2,4,,4,5,Main,St,1425710,17.629,18.213,0,14.031647,4.5,4.5 +10129,0,0.316494,1,1,0,2,5,,4,5,Middle,St,1426303,0.429,0.745,0,7.595849,5.8,4.5 +10149,0,0.412901,1,1,0,2,6,,4,5,Wilkinson,St,1426205,0.184,0.597,0,9.909635,6.55,4.5 +24742,0,0.150192,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.604603,0.15,4 +30118,0,0.477002,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.448049,0.15,4 +30119,0,0.395511,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.492275,0.15,4 +10155,0,0.1845,1,1,0,2,6,,4,5,Wilkinson,St,1426205,0,0.184,0,4.427991,6.55,4.5 +10140,0,0.165756,1,1,0,2,5,,4,5,Middle,St,1426303,0.263,0.429,0,3.978143,5.8,4.5 +24746,0,0.25929,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.222953,0.15,4 +9694,0,0.168286,1,1,0,2,5,,4,5,Old US 12,,1426508,6.407,6.575,0,4.038867,5.8,4.5 +9693,0,0.155888,1,1,0,2,4,,4,5,Old US 12,,1426508,6.575,6.731,0,3.741318,4.5,4.5 +9780,0,0.20603,1,1,0,2,4,,4,5,Main,St,1425710,18.213,18.419,0,4.944718,4.5,4.5 +10127,0,0.14066,1,1,0,2,5,,4,5,Middle,St,1426303,0.745,0.886,0,3.375836,5.8,4.5 +11150,0,0.445575,1,1,0,2,5,,5,5,Sibley,Rd,1452509,1.259,1.705,0,10.693802,3.7,5 +11367,0,0.176009,1,1,0,2,6,,5,5,Sibley,Rd,1452509,1.084,1.259,0,4.224213,5.8,6 +9770,0,0.237258,1,1,0,2,4,,5,5,Main,St,1425710,18.824,19.061,0,5.694181,3,4 +9771,0,0.147294,1,1,0,2,4,,5,5,Main,St,1425710,18.559,18.707,0,3.535061,3,4 +5713,0,2.05806,1,1,0,2,4,,5,8,M 36,,932408,0,2.057,0,49.39345,3,4 +5919,0,1.602479,1,1,0,2,5,,5,8,Williamsville,Rd,932302,0,1.602,0,38.459493,3.7,5 +6597,0,0.990251,1,1,0,2,5,,5,8,Unadilla,Rd,932304,0,0.99,0,23.766016,3.7,5 +7446,0,0.505372,1,1,0,2,6,GRV,5,8,Roepke,Rd,935903,0,0.505,0,12.128932,5.55,5 +9741,0,3.119299,1,1,0,2,4,,5,5,M 52,,1425710,24.148,27.266,0,74.863174,3,4 +9748,0,3.272879,1,1,0,2,4,,5,5,M 52,,1425710,20.764,24.036,0,78.549093,3,4 +9817,0,1.642565,1,1,0,2,6,GRV,5,5,Roepke,Rd,1426410,0,1.642,0,39.421549,5.55,5 +10096,0,2.219474,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,0,2.219,0,53.267384,3.7,5 +19964,0,2.67045,1,1,0,2,5,,5,5,Waterloo,Rd,3380147,2.387,5.057,0,64.090805,3.7,5 +24658,0,0.90136,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.632648,0.15,4 +24665,0,2.115555,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,50.773315,0.15,4 +24716,0,1.244477,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.86744,0.15,4 +24717,0,2.067956,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,49.630938,0.15,4 +24719,0,0.929466,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.307184,0.15,4 +19965,0,1.505734,1,1,0,2,5,,5,5,Waterloo,Rd,3380147,0.882,2.387,0,36.137621,3.7,5 +34052,0,0.944089,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19966,0,0.709814,1,1,0,2,5,,5,5,Waterloo,Rd,3380147,0.173,0.882,0,17.035531,3.7,5 +9745,0,0.111672,1,1,0,2,4,,5,5,M 52,,1425710,24.036,24.148,0,2.680129,3,4 +6187,0,1.794507,1,1,0,2,4,,5,8,M 106,,932205,0,1.794,0,43.068172,3,4 +34053,0,0.868719,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9816,0,1.20987,1,1,0,2,6,GRV,5,5,Roepke,Rd,1426410,1.642,2.851,0,29.036871,5.55,5 +6189,0,0.502622,1,1,0,2,4,,5,8,Doyle,Rd,932208,1.916,2.419,0,12.062928,3,4 +6907,0,1.005642,1,1,0,2,4,,5,8,M 106,,932303,0.658,1.663,0,24.135415,3,4 +6188,0,0.491333,1,1,0,2,4,,5,8,Doyle,Rd,932208,1.425,1.916,0,11.791996,3,4 +6908,0,0.116319,1,1,0,2,4,,5,8,M 106,,932303,1.663,1.779,0,2.791658,3,4 +19926,0,0.273748,1,1,0,2,4,,5,8,Gregory,Rd,4103111,9.384,9.658,0,6.569949,3,4 +22054,0,0.095879,1,1,0,2,5,,5,5,Werkner,Rd,4603042,0,0.096,0,2.301096,3.7,5 +10099,0,1.501108,1,1,0,2,5,,5,5,Werkner,Rd,1426404,1.627,3.127,0,36.026582,3.7,5 +19963,0,0.865832,1,1,0,2,5,GRV,5,5,Waterloo,Rd,3380147,5.057,5.922,0,20.779977,5.55,5 +6909,0,1.140046,1,1,0,2,5,,5,8,Unadilla,Rd,932307,0,1.14,0,27.361093,3.7,5 +19764,0,2.209504,1,1,0,2,5,,5,8,Doyle,Rd,4104180,1.729,3.938,0,53.028093,3.7,5 +21778,0,0.710749,1,1,0,2,5,,5,5,Hadley,Rd,4600021,2.754,3.464,0,17.057968,3.7,5 +24659,0,0.65135,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.632408,0.15,4 +24660,0,1.350512,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.412286,0.15,4 +24718,0,1.197273,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.73455,0.15,4 +5711,0,0.97358,1,1,0,2,5,,5,8,Williamsville,Rd,932302,1.926,2.9,0,23.365926,3.7,5 +5920,0,0.324557,1,1,0,2,5,,5,8,Williamsville,Rd,932302,1.602,1.926,0,7.789374,3.7,5 +19873,0,0.350085,1,1,0,2,5,,5,8,Hadley,Rd,4104126,0.387,0.737,0,8.402035,3.7,5 +19874,0,0.386926,1,1,0,2,5,,5,5,Hadley,Rd,4104126,0,0.387,0,9.286224,3.7,5 +5437,0,0.110778,1,1,0,2,5,,5,8,Kaiser,Rd,932302,2.9,3.01,0,2.658675,3.7,5 +19765,0,0.81142,1,1,0,2,5,,5,8,Doyle,Rd,4104180,0.918,1.729,0,19.474076,3.7,5 +24657,0,0.513259,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.318223,0.15,4 +9686,0,1.818306,1,1,0,2,4,,5,5,Jackson,Rd,1426508,9.193,11.011,0,43.639355,3,4 +9698,0,3.577427,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,3.529,7.105,0,85.85824,3.7,5 +11017,0,1.005882,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,3.106,4.112,0,24.141177,3.7,5 +11100,0,0.995733,1,1,0,2,5,,4,5,Parker,Rd,1447903,4.441,5.436,0,23.897593,5.8,4.5 +21262,0,1.580942,1,1,0,2,5,GRV,5,5,Fletcher,Rd,4604001,0,1.58,0,37.942617,5.55,5 +24677,0,1.186097,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.466317,0.15,4 +24731,0,0.598151,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.355623,0.15,4 +24732,0,1.462128,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.09107,0.15,4 +24747,0,1.882205,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,45.172915,0.15,4 +24750,0,1.090488,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.17172,0.15,4 +25834,0,3.18074,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,76.337751,0.15,4 +11020,0,2.582447,1,1,0,2,5,,5,5,Fletcher,Rd,1436603,1.139,3.72,0,61.978718,3.7,5 +24680,0,1.233381,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.601151,0.15,4 +9715,0,0.505964,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,6.565,7.071,0,12.143143,3.7,5 +11025,0,1.139241,1,1,0,2,5,,5,5,Fletcher,Rd,1436603,0,1.139,0,27.341778,3.7,5 +9713,0,0.532515,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,7.071,7.603,0,12.78037,3.7,5 +9699,0,0.743375,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,2.786,3.529,0,17.841007,3.7,5 +9700,0,0.006923,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,2.779,2.786,0,0.16615,3.7,5 +9583,0,0.753823,1,1,0,2,5,,4,5,Freer,Rd,1426510,1.58,2.333,0,18.091742,5.8,4.5 +9690,0,1.517386,1,1,0,2,4,,5,5,Old US 12,,1426508,7.416,8.933,0,36.417272,3,4 +9691,0,0.389918,1,1,0,2,4,,4,5,Old US 12,,1426508,7.027,7.416,0,9.358033,4.5,4.5 +10843,0,0.740721,1,1,0,2,5,GRV,5,5,Fletcher,Rd,1450905,0,0.74,0,17.777309,5.55,5 +11219,0,1.481481,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,0.635,2.116,0,35.555546,3.7,5 +24752,0,0.341966,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.207188,0.15,4 +9582,0,0.536433,1,1,0,2,5,,4,5,Freer,Rd,1426510,2.333,2.87,0,12.874386,5.8,4.5 +11044,0,0.075588,1,1,0,2,5,,4,5,McKinley,St,1451005,0,0.076,0,1.814101,5.8,4.5 +24734,0,0.262753,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.306083,0.15,4 +24745,0,0.582546,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.981112,0.15,4 +11271,0,0.540177,1,1,0,2,5,,4,5,Railroad,St,1452809,0.095,0.635,0,12.964251,5.8,4.5 +24729,0,0.340977,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.183443,0.15,4 +22021,0,1.264318,1,1,0,2,5,GRV,5,5,Fletcher,Rd,4604001,1.58,2.844,0,30.343635,5.55,5 +24748,0,0.929387,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.30529,0.15,4 +9557,1,0.472167,2,0,0,1,1,,5,5,E I 94,,1426109,7.896,8.368,0,,1.02,7 +9689,0,0.044088,1,1,0,2,4,,5,5,Old US 12,,1426508,8.933,8.977,0,1.058122,3,4 +10399,-1,0.367991,0,2,0,1,1,,5,5,W I 94,,1426110,7.947,8.315,0,,1.02,7 +21742,0,0.236574,1,1,0,2,5,,5,5,Fletcher,Rd,4604001,2.844,3.081,0,5.677769,3.7,5 +9574,1,0.214604,1,0,0,1,1,ROF,5,5,E I 94/Fletcher,RAMP,1426601,0,0.215,0,,2.24,5 +21198,1,0.151213,1,0,0,1,1,RON,5,5,Fletcher/W I 94,RAMP,4600081,0,0.151,0,,1.09,4 +9558,1,0.112866,1,0,0,1,1,RON,5,5,Fletcher/E I 94,RAMP,1426603,0,0.113,0,,1.09,4 +10298,1,0.266265,1,0,0,1,1,ROF,5,5,W I 94/Fletcher,RAMP,1427008,0,0.266,0,,2.24,5 +9688,0,0.185295,1,1,0,2,4,,5,5,Old US 12,,1426508,8.977,9.162,0,4.447074,3,4 +9687,0,0.030914,1,1,0,2,4,,5,5,Old US 12,,1426508,9.162,9.193,0,0.741928,3,4 +11018,0,0.802863,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,2.116,2.919,0,19.268719,3.7,5 +11045,0,0.870103,1,1,0,2,5,GRV,5,5,Fletcher,Rd,1450905,0.74,1.61,0,20.882471,5.55,5 +11216,0,0.187612,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,2.919,3.106,0,4.502697,3.7,5 +11104,0,0.962481,1,1,0,2,5,,5,5,Parker,Rd,1447903,1.554,2.516,0,23.099547,3.7,5 +24676,0,2.18609,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,52.466171,0.15,4 +11106,0,1.014927,1,1,0,2,5,,5,5,Parker,Rd,1447903,0.498,1.513,0,24.358254,3.7,5 +10758,0,0.080353,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,0,0.08,0,1.92847,3.7,5 +21319,0,0.113724,1,1,0,2,5,,5,5,Pleasant Lake,Rd,4603833,0,0.114,0,2.729382,3.7,5 +9708,0,0.279432,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,10.521,10.8,0,6.706368,3.7,5 +11107,0,0.221653,1,1,0,2,5,,5,5,Parker,Rd,1447903,0.218,0.44,0,5.319675,3.7,5 +10935,0,0.058632,1,1,0,2,5,,5,5,Parker,Rd,1447903,0.44,0.498,0,1.407174,3.7,5 +10934,0,0.040885,1,1,0,2,5,,5,5,Parker,Rd,1447903,1.513,1.554,0,0.981246,3.7,5 +11102,0,1.011304,1,1,0,2,5,,5,5,Parker,Rd,1447903,3.41,4.421,0,24.271288,3.7,5 +10932,0,0.894458,1,1,0,2,5,,5,5,Parker,Rd,1447903,2.516,3.41,0,21.466986,3.7,5 +10929,0,0.020155,1,1,0,2,5,,4,5,Parker,Rd,1447903,4.421,4.441,0,0.483717,5.8,4.5 +9549,0,0.987816,1,1,0,2,5,GRV,5,5,Dancer,Rd,1426604,2.024,3.012,0,23.707591,5.55,5 +9684,0,2.085783,1,1,0,2,4,,5,5,Jackson,Rd,1426508,11.011,13.096,0,50.058804,3,4 +11099,0,1.444767,1,1,0,2,4,,4,5,Parker,Rd,1447903,6.032,7.476,0,34.674419,4.5,4.5 +11214,0,2.347649,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,4.112,6.459,0,56.343584,3.7,5 +9548,0,1.006676,1,1,0,2,5,GRV,5,5,Dancer,Rd,1426604,3.012,4.018,0,24.160229,5.55,5 +24730,0,0.861322,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.671732,0.15,4 +10927,0,0.595922,1,1,0,2,5,,4,5,Parker,Rd,1447903,5.436,6.032,0,14.302135,5.8,4.5 +10925,0,1.517113,1,1,0,2,4,,4,5,Parker,Rd,1447903,7.476,8.993,0,36.410703,4.5,4.5 +24733,0,0.440558,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.573385,0.15,4 +5714,0,0.649297,1,1,0,2,6,,4,8,Unadilla,St,932504,0,0.649,0,15.583119,6.55,4.5 +5921,0,0.446166,1,1,1,2,4,,4,8,Main,St,932308,6.027,6.473,0,10.707975,4.5,4.5 +6493,0,2.388112,1,1,0,2,5,,5,8,Patterson Lake,Rd,932401,1.964,4.352,0,57.31469,3.7,5 +10044,0,0.969371,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,6.505,7.474,0,23.264916,3.7,5 +10713,0,1.610175,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,2.926,4.536,0,38.644206,3.7,5 +11005,0,0.937562,1,1,0,2,5,,5,5,Island Lake,Rd,1453208,1.097,2.034,0,22.501491,3.7,5 +11108,0,1.571653,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,3.577,5.148,0,37.719669,3,4 +11421,0,2.312564,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,0.615,2.926,0,55.501534,3.7,5 +11424,0,2.260696,1,1,0,2,5,,5,5,Hankerd,Rd,1451910,0.427,2.687,0,54.256702,3.7,5 +19869,0,0.248405,1,1,0,2,5,GRV,5,5,Dexter Town Hall,Rd,4104130,0,0.248,0,5.961712,5.55,5 +24632,0,2.300856,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,55.220547,0.15,4 +24754,0,2.492948,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,59.830742,0.15,4 +24755,0,2.161225,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,51.869408,0.15,4 +24756,0,0.665385,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.969239,0.15,4 +29637,0,1.695492,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.691803,0.15,4 +10046,0,1.555319,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,4.95,6.505,0,37.327663,3.7,5 +11060,0,1.012014,1,1,0,2,5,,5,5,Stofer,Rd,1453802,0.062,1.073,0,24.288337,3.7,5 +11195,0,1.097211,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1453208,0,1.097,0,26.333055,5.55,5 +24620,0,1.370546,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.893092,0.15,4 +11475,0,1.623304,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1451905,1.715,3.338,0,38.959291,5.55,5 +10771,0,0.060703,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1451905,1.655,1.715,0,1.456884,5.55,5 +11233,0,0.061706,1,1,0,2,5,GRV,5,5,Stofer,Rd,1453802,0,0.062,0,1.480949,5.55,5 +21965,0,0.081803,1,1,0,2,5,,5,5,Island Lake,Rd,4600501,0,0.082,0,1.963266,3.7,5 +10737,0,0.182091,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1451909,0,0.182,0,4.370196,5.55,5 +10058,0,1.36571,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,3.585,4.95,0,32.777032,3.7,5 +10720,0,0.427093,1,1,0,2,5,,5,5,Hankerd,Rd,1451910,0,0.427,0,10.250243,3.7,5 +6824,0,0.812551,1,1,0,2,5,,5,8,Patterson Lake,Rd,932401,1.152,1.964,0,19.501235,3.7,5 +19870,0,0.753011,1,1,0,2,5,,5,8,Glen Brook,Rd,4104128,0.225,0.977,0,18.072269,3.7,5 +19871,0,0.224746,1,1,0,2,5,,5,5,Glenbrook,Rd,4104128,0,0.225,0,5.393914,3.7,5 +24664,0,0.712899,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.10957,0.15,4 +11418,0,0.558022,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,4.536,5.094,0,13.39254,3.7,5 +24757,0,0.53354,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.80495,0.15,4 +10033,0,1.333514,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,7.474,8.807,0,32.004347,3,4 +11131,0,1.16458,1,1,0,2,5,,5,5,Huron River,Dr,1445801,2.039,3.203,0,27.949917,3.7,5 +11151,0,2.475127,1,1,0,2,5,,5,5,Island Lake,Rd,1453208,2.034,4.508,0,59.403048,3.7,5 +11314,0,1.801934,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,1.775,3.577,0,43.246413,3,4 +10719,0,0.61486,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,0,0.615,0,14.756633,3.7,5 +11316,0,1.489333,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,0,1.489,0,35.743999,3,4 +24617,0,1.073627,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.767039,0.15,4 +24618,0,0.29016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.963829,0.15,4 +11112,0,0.28664,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,1.489,1.775,0,6.879354,3,4 +11103,0,0.186497,1,1,0,2,4,,4,5,Island Lake,Rd,1446002,0.239,0.426,0,4.475918,4.5,4.5 +11310,0,0.239147,1,1,0,2,5,,5,5,Island Lake,Rd,1446002,0,0.239,0,5.739537,3.7,5 +11093,0,0.158653,1,1,0,2,4,,4,5,Main,St,1446002,0.556,0.715,0,3.807669,4.5,4.5 +11306,0,0.130935,1,1,0,2,4,,4,5,Island Lake,Rd,1446002,0.426,0.556,0,3.142429,4.5,4.5 +11305,0,0.053899,1,1,0,2,4,,4,5,Main,St,1446002,0.758,0.812,0,1.293587,4.5,4.5 +11339,0,1.249209,1,1,0,2,5,,5,5,Huron River,Dr,1445801,3.203,4.452,0,29.981026,3.7,5 +10032,0,0.725386,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,8.807,9.532,0,17.409266,3,4 +6082,0,0.59369,1,1,0,2,4,,5,8,M 36,,932308,7.639,8.233,0,14.248562,3,4 +7216,0,0.882953,1,1,0,2,5,,5,8,McGregor,Rd,932708,0,0.883,0,21.190875,3.7,5 +7221,0,1.103113,1,1,0,2,4,,5,8,Dexter Pinckney,Rd,932607,0,1.103,0,26.474716,3,4 +11105,0,1.331849,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,5.327,6.659,0,31.964367,3,4 +19867,0,0.772699,1,1,0,2,5,GRV,5,8,Toma,Rd,4104131,0.353,1.125,0,18.544783,5.55,5 +29638,0,1.222887,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.349283,0.15,4 +19868,0,0.213569,1,1,0,2,5,GRV,5,8,Dexter Town Hall,Rd,4104130,0.248,0.462,0,5.125664,5.55,5 +8129,0,0.246725,1,1,0,2,5,GRV,5,8,Tiplady,Rd,939305,1.721,1.967,0,5.921403,5.55,5 +6598,0,0.651925,1,1,1,2,4,,4,8,M 36,,932308,6.965,7.617,0,15.646204,4.5,4.5 +7220,0,1.255227,1,1,0,2,4,,5,8,Dexter Pinckney,Rd,932607,1.103,2.358,0,30.125447,3,4 +19866,0,1.005361,1,1,0,2,5,,4,8,Howell,St,4104131,1.125,2.13,0,24.128675,5.8,4.5 +24759,0,1.333785,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.010836,0.15,4 +24765,0,0.582925,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.990192,0.15,4 +6311,0,0.499259,1,1,0,2,5,,5,8,Darwin,Rd,932401,4.352,4.851,0,11.982207,3.7,5 +5438,0,0.183905,1,1,1,2,4,,4,8,Main,St,932308,6.534,6.718,0,4.413714,4.5,4.5 +24761,0,0.228033,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,5.472784,0.15,4 +24762,0,0.160517,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,3.852415,0.15,4 +19865,0,0.249397,1,1,0,2,5,,4,8,Howell,St,4104131,2.13,2.38,0,5.985538,5.8,4.5 +5712,0,0.061493,1,1,1,2,4,,4,8,Main,St,932308,6.473,6.534,0,1.475837,4.5,4.5 +6912,0,0.247313,1,1,1,2,4,,4,8,Main,St,932308,6.718,6.965,0,5.93552,4.5,4.5 +24763,0,0.38352,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.204479,0.15,4 +7219,0,0.123439,1,1,0,2,4,,4,8,Pearl,St,932701,0,0.123,0,2.962525,4.5,4.5 +6398,0,0.022447,1,1,0,2,4,,5,8,M 36,,932308,7.617,7.639,0,0.538733,3,4 +11113,0,1.113554,1,1,0,2,5,,5,5,McGregor,Rd,1445904,0,1.113,0,26.725305,3.7,5 +11312,0,0.179881,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,5.148,5.327,0,4.317145,3,4 +5922,0,0.549801,1,1,0,2,4,,5,8,M 36,,932308,8.233,8.782,0,13.195214,3,4 +7214,0,1.234504,1,1,0,2,5,,5,8,McGregor,Rd,932708,1.375,2.61,0,29.628084,3.7,5 +7215,0,0.492968,1,1,0,2,5,,5,8,McGregor,Rd,932708,0.883,1.375,0,11.831224,3.7,5 +5598,0,0.505316,1,1,0,2,4,,5,8,M 36,,932308,8.782,9.288,0,12.127593,3,4 +7115,0,1.005038,1,1,0,2,6,GRV,5,8,Nicholson,Rd,933006,8.944,9.948,0,24.120924,5.55,5 +7190,0,0.857225,1,1,0,2,4,,5,8,Grand River,Ave,932910,0,0.857,0,20.573397,3,4 +7618,-1,3.634811,0,2,0,1,1,,5,8,W I 96,,935207,0,3.633,0,,1.02,7 +7787,1,3.942959,2,0,0,1,1,,5,8,E I 96,,935105,0,3.941,0,,1.02,7 +7806,0,1.508548,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,7.944,9.452,0,36.205141,3.7,5 +7826,0,0.899719,1,1,0,2,6,GRV,5,8,Bell Oak,Rd,943609,0,0.899,0,21.593262,5.55,5 +7920,0,1.505011,1,1,0,2,6,GRV,5,8,Antcliff,Rd,940003,1.004,2.508,0,36.120263,5.55,5 +8099,0,0.855347,1,1,0,2,6,GRV,5,8,Chase Lake,Rd,943607,0,0.855,0,20.528337,5.55,5 +19936,0,1.255767,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,2.251,3.507,0,30.138411,3.7,5 +24768,0,2.306333,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,55.351982,0.15,4 +24769,0,0.841738,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.2017,0.15,4 +24771,0,2.036913,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,48.885916,0.15,4 +24777,0,0.941366,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.592783,0.15,4 +24784,0,1.935098,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,46.442359,0.15,4 +24788,0,1.761242,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,42.269797,0.15,4 +34055,0,0.753274,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34056,0,0.821062,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34101,0,0.870127,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34102,0,0.956628,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34057,-1,0.717233,0,2,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +34058,1,0.71763,2,0,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +266,0,0.738011,1,1,0,2,6,,5,8,Herrington,Rd,355904,0.02,0.757,0,17.712273,5.8,6 +34103,0,0.868489,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34059,0,0.744386,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34104,0,0.887872,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +5715,0,1.76962,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,0,1.769,0,42.47089,5.55,5 +6911,0,0.933866,1,1,0,2,4,,5,8,M 36,,932308,1.76,2.694,0,22.412785,3,4 +7043,0,0.44004,1,1,0,2,5,,4,8,Chilson,Rd,933603,4.294,4.734,0,10.560967,5.8,4.5 +7161,0,0.967405,2,2,1,2,3,,4,8,Grand River,Rd,932910,13.876,14.843,0,23.217722,3.7,5 +7179,0,1.582752,1,1,0,2,4,,5,8,Grand River,Ave,932910,5.932,7.514,0,37.986056,3,4 +7225,0,0.311938,1,1,0,2,5,,5,8,Burkhart,Rd,932601,9.825,10.137,0,7.486505,3.7,5 +7228,0,1.703228,1,1,0,2,5,GRV,5,8,Norton,Rd,932601,7.306,9.009,0,40.877466,5.55,5 +7365,0,1.671458,1,1,0,2,5,,5,8,Bull Run,Rd,943306,5.064,6.735,0,40.114986,3.7,5 +7475,0,1.437763,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,6.276,7.713,0,34.506303,3.7,5 +7582,-1,2.953743,0,3,0,1,1,,4,8,W I 96,,935207,9.068,12.02,0,,0.8,7.5 +7608,-1,4.577377,0,2,0,1,1,,5,8,W I 96,,935207,3.884,8.46,0,,1.02,7 +7775,1,2.891966,3,0,0,1,1,,5,8,E I 96,,935105,9.116,12.007,0,,1.02,7 +7783,1,4.595169,2,0,0,1,1,,5,8,E I 96,,935105,4.204,8.797,0,,1.02,7 +7794,0,0.866719,1,1,0,2,5,,5,8,Norton,Rd,4104400,1.553,2.42,0,20.801248,3.7,5 +7795,0,0.665887,1,1,0,2,5,,5,8,Elliot,Rd,935007,1.504,2.17,0,15.981281,3.7,5 +7830,0,1.005265,1,1,0,2,6,GRV,5,8,Chase Lake,Rd,943607,4.862,5.867,0,24.126371,5.55,5 +37035,0,1.046489,1,1,0,2,4,,5,8,Mason,Rd,4104403,1.779,2.825,0,25.11573,3,4 +8012,0,1.553336,1,1,0,2,7,GRV,5,8,Schafer,Rd,945306,0.47,2.023,0,37.280062,5.55,5 +8032,0,0.169166,1,1,1,2,4,,3,8,Michigan,Ave,944110,8.936,9.105,0,4.059979,6,4.5 +8113,0,1.018624,1,1,0,2,6,GRV,5,8,Marr,Rd,939610,0,1.018,0,24.446975,5.55,5 +19933,0,0.643803,1,1,0,2,5,,5,8,Gregory,Rd,4103111,0,0.644,0,15.451281,3.7,5 +24625,0,0.917717,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.025203,0.15,4 +24666,0,1.225782,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.418769,0.15,4 +24798,0,1.074493,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.787822,0.15,4 +24801,0,1.070415,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.689969,0.15,4 +24803,0,1.153009,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.672223,0.15,4 +24805,0,1.414396,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.945508,0.15,4 +24809,0,0.833812,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.011488,0.15,4 +24813,0,0.239159,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.739819,0.15,4 +29471,0,1.779554,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,42.709299,0.15,4 +6741,0,1.504644,1,1,0,2,5,,5,8,Bradley,Rd,932405,2.016,3.52,0,36.11146,3.7,5 +7232,0,1.736268,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,2.715,4.451,0,41.670436,5.55,5 +7369,0,1.518819,1,1,0,2,5,,5,8,Bull Run,Rd,943306,1.511,3.029,0,36.451661,3.7,5 +7450,0,0.873528,1,1,0,2,7,GRV,5,8,Iosco,Rd,935803,2.769,3.642,0,20.964682,5.55,5 +7457,0,0.669074,1,1,0,2,5,,5,8,Wasson,Rd,935801,1.067,1.735,0,16.057766,3.7,5 +24669,0,2.134153,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,51.219675,0.15,4 +24671,0,1.061826,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.483835,0.15,4 +24793,0,1.947178,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,46.732278,0.15,4 +24819,0,1.61976,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.874232,0.15,4 +27105,0,1.578868,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,37.892836,0.15,4 +5147,0,1.93283,1,1,0,2,5,,5,8,Bradley,Rd,932405,0.084,2.016,0,46.387928,3.7,5 +5992,0,1.154985,1,1,0,2,4,,5,8,M 36,,932403,0,1.155,0,27.719642,3,4 +5993,0,0.519479,1,1,0,2,4,,5,8,M 36,,932403,1.155,1.674,0,12.467503,3,4 +19931,0,1.487608,1,1,0,2,5,,5,8,Gregory,Rd,4103111,6.628,8.115,0,35.702597,3.7,5 +19974,0,1.730153,1,1,0,2,7,,5,8,Dexter,Trl,3330056,2.095,3.824,0,41.523663,5.8,6 +24642,0,0.78125,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.749994,0.15,4 +24816,0,1.350949,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.422771,0.15,4 +19975,0,1.100673,1,1,0,2,7,,5,8,Dexter,Trl,3330056,0.995,2.095,0,26.416154,5.8,6 +5514,0,1.353676,1,1,0,2,4,,5,8,M 36,,932403,1.812,3.165,0,32.488229,3,4 +5146,0,0.083506,1,1,0,2,5,,5,8,Bradley,Rd,932405,0,0.084,0,2.004138,3.7,5 +5823,0,0.138191,1,1,0,2,4,,5,8,M 36,,932403,1.674,1.812,0,3.316579,3,4 +19507,0,0.111345,1,1,0,2,7,,5,8,Plainfield,Rd,1903110,0,0.111,0,2.672291,5.8,6 +19929,0,0.950465,1,1,0,2,4,,5,8,M 36,,4103111,8.142,9.092,0,22.811149,3,4 +19928,0,0.042292,1,1,0,2,4,,5,8,M 36,,4103111,9.092,9.134,0,1.015001,3,4 +19949,0,0.037765,1,1,0,2,7,,5,8,Dexter,Trl,4102084,0,0.038,0,0.90636,5.8,6 +19973,0,0.036356,1,1,0,2,9,,5,8,Dexter,Trl,3330056,3.824,3.861,0,0.872536,5.8,6 +5994,0,0.116859,1,1,0,2,4,,5,8,Spears,Rd,932407,0.72,0.837,0,2.804619,3,4 +5995,0,0.038998,1,1,0,2,4,,5,8,M 36,,932407,0.837,0.876,0,0.935959,3,4 +19506,0,0.027455,1,1,0,2,7,,5,8,Spears,Rd,1903201,0,0.027,0,0.658922,5.8,6 +19930,0,0.026466,1,1,0,2,5,,5,8,Gregory,Rd,4103111,8.115,8.142,0,0.635186,3.7,5 +19768,0,0.058619,1,1,0,2,5,,5,8,Gregory,Rd,4104150,0,0.059,0,1.406857,3.7,5 +265,0,0.983833,1,1,0,2,6,GRV,5,8,Kane,Rd,359501,4.369,5.353,0,23.611988,5.55,5 +6494,0,1.488171,1,1,0,2,5,,5,8,Bradley,Rd,932405,3.52,5.007,0,35.716095,3.7,5 +7454,0,0.241277,1,1,0,2,5,,5,8,Iosco,Rd,935803,1.272,1.513,0,5.790646,3.7,5 +24791,0,0.635249,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.245979,0.15,4 +24792,0,0.745157,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.883764,0.15,4 +7456,0,1.272532,1,1,0,2,6,GRV,5,8,Iosco,Rd,935803,0,1.272,0,30.540768,5.55,5 +7796,0,1.004016,1,1,0,2,5,,5,8,Elliot,Rd,935007,0.5,1.504,0,24.096374,3.7,5 +7798,0,0.500507,1,1,0,2,5,,5,8,Elliot,Rd,935007,0,0.5,0,12.012177,3.7,5 +29470,0,0.601217,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.429213,0.15,4 +7451,0,1.233331,1,1,0,2,5,,5,8,Iosco,Rd,935803,1.536,2.769,0,29.599946,3.7,5 +19932,0,1.502919,1,1,0,2,5,,5,8,Gregory,Rd,4103111,0.644,2.146,0,36.070061,3.7,5 +24653,0,1.101883,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.445182,0.15,4 +7452,0,0.022756,1,1,0,2,5,,5,8,Iosco,Rd,935803,1.513,1.536,0,0.546136,3.7,5 +20320,0,0.021059,1,1,0,2,5,,5,8,Bradley/Iosco Cutoff,,4104264,0,0.021,0,0.505412,3.7,5 +6191,0,0.018042,1,1,0,2,5,,5,8,Bradley,Rd,932405,5.007,5.025,0,0.433003,3.7,5 +7233,0,0.946333,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,1.769,2.715,0,22.711995,5.55,5 +24601,0,1.401348,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.63234,0.15,4 +24817,0,1.168607,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.046579,0.15,4 +26025,0,1.826462,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,43.835092,0.15,4 +8117,0,1.289899,1,1,0,2,5,,5,8,Bull Run,Rd,943306,0,1.289,0,30.957582,3.7,5 +7850,0,0.221476,1,1,0,2,5,,5,8,Bull Run,Rd,943306,1.289,1.511,0,5.315426,3.7,5 +24815,0,1.982206,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,47.572955,0.15,4 +7230,0,1.527166,1,1,0,2,5,GRV,5,8,Pingree,Rd,932601,5.277,6.804,0,36.651987,5.55,5 +7480,0,2.148542,1,1,0,2,6,GRV,5,8,Coon Lake,Rd,935710,3.776,5.924,0,51.565012,5.55,5 +8102,0,0.505619,1,1,0,2,5,,5,8,Bull Run,Rd,943306,4.056,4.561,0,12.134859,3.7,5 +29469,0,1.363851,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.732434,0.15,4 +29472,0,1.626831,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.043942,0.15,4 +29473,0,2.194829,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,52.675907,0.15,4 +8105,0,1.026899,1,1,0,2,5,,5,8,Bull Run,Rd,943306,3.029,4.056,0,24.645581,3.7,5 +7842,0,0.503725,1,1,0,2,5,,5,8,Bull Run,Rd,943306,4.561,5.064,0,12.08939,3.7,5 +7231,0,0.827177,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,4.451,5.277,0,19.852242,5.55,5 +7476,0,0.35216,1,1,0,2,6,GRV,5,8,Coon Lake,Rd,935710,5.924,6.276,0,8.451838,5.55,5 +7229,0,0.50222,1,1,0,2,5,GRV,5,8,Pingree,Rd,932601,6.804,7.306,0,12.053274,5.55,5 +7113,0,0.782585,1,1,0,2,6,,5,8,Cemetary,Rd,933202,0.941,1.724,0,18.782049,5.8,6 +7120,0,0.724972,1,1,0,2,6,,5,8,Nicholson,Rd,933006,3.734,4.459,0,17.399334,5.8,6 +7187,0,0.618595,1,1,0,2,4,,4,8,Grand River,Ave,932910,2.936,3.554,0,14.846292,4.5,4.5 +7188,0,1.028234,1,1,0,2,4,,5,8,Grand River,Ave,932910,1.908,2.936,0,24.677625,3,4 +7447,0,0.995356,1,1,0,2,6,,5,8,Van Buren,Rd,935807,2.204,3.199,0,23.888547,5.8,6 +7836,0,0.262312,1,1,1,2,5,,4,8,Grand,Ave,935004,4.233,4.496,0,6.295494,5.8,4.5 +37040,0,1.716043,1,1,0,2,4,,5,8,Mason,Rd,4104403,4.778,6.493,0,41.18504,3,4 +8076,0,0.334787,1,1,0,2,6,,5,8,Owosso,Rd,943904,0,0.335,0,8.034882,5.8,6 +8098,0,1.007011,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,2.853,3.86,0,24.168265,5.8,6 +24774,0,1.690717,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,40.577219,0.15,4 +24786,0,1.007335,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.176039,0.15,4 +24825,0,0.421466,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,10.115177,0.15,4 +24827,0,0.508136,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.195271,0.15,4 +24856,0,1.191737,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.601692,0.15,4 +26560,0,1.043732,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.049566,0.15,4 +7122,0,2.014549,1,1,0,2,6,,5,8,Nicholson,Rd,933006,1.006,3.02,0,48.349165,5.8,6 +37042,0,2.004076,1,1,0,2,4,,5,8,Mason,Rd,4104403,7.736,9.739,0,48.097824,3,4 +24840,0,1.36749,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.81975,0.15,4 +37043,0,1.030433,1,1,0,2,7,,4,8,Culver,Rd,4105156,0,1.03,0,24.730402,6.55,4.5 +37041,0,1.242661,1,1,0,2,4,,5,8,Mason,Rd,4104403,6.493,7.736,0,29.823867,3,4 +24775,0,0.863253,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.718082,0.15,4 +7123,0,1.006257,1,1,0,2,6,,5,8,Nicholson,Rd,933006,0,1.006,0,24.150167,5.8,6 +7121,0,0.714972,1,1,0,2,6,,5,8,Nicholson,Rd,933006,3.02,3.734,0,17.159318,5.8,6 +7448,0,1.011093,1,1,0,2,6,,5,8,Van Buren,Rd,935807,1.193,2.204,0,24.266235,5.8,6 +7116,0,1.004719,1,1,0,2,6,GRV,5,8,Nicholson,Rd,933006,7.939,8.944,0,24.113259,5.55,5 +7118,0,0.269627,1,1,0,2,6,,5,8,Nicholson,Rd,933006,5.536,5.806,0,6.471052,5.8,6 +7189,0,1.0512,1,1,0,2,4,,5,8,Grand River,Ave,932910,0.857,1.908,0,25.228789,3,4 +7838,0,0.998112,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,0.855,1.853,0,23.954683,5.8,6 +24779,0,1.051276,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.23062,0.15,4 +26578,0,0.934634,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.43122,0.15,4 +8086,0,1.003632,1,1,0,2,6,GRV,5,8,Bell Oak,Rd,943609,0.899,1.903,0,24.087161,5.55,5 +24780,0,1.505117,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.122818,0.15,4 +24781,0,0.514385,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.34523,0.15,4 +7119,0,1.077686,1,1,0,2,6,,5,8,Nicholson,Rd,933006,4.459,5.536,0,25.864471,5.8,6 +24776,0,0.771412,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.51388,0.15,4 +7117,0,1.006987,1,1,0,2,6,GRV,5,8,Nicholson,Rd,933006,6.933,7.939,0,24.167682,5.55,5 +7360,0,1.000884,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,1.853,2.853,0,24.02122,5.8,6 +24602,0,0.992421,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.818112,0.15,4 +24787,0,1.006015,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.144367,0.15,4 +7181,0,0.483628,1,1,0,2,4,,5,8,Grand River,Ave,932910,4.933,5.416,0,11.607077,3,4 +7887,0,1.507656,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,1.001,2.508,0,36.183752,3.7,5 +37036,0,0.740089,1,1,0,2,4,,5,8,Mason,Rd,4104403,2.825,3.565,0,17.762127,3,4 +27693,0,1.360076,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.641829,0.15,4 +37038,0,0.779573,1,1,0,2,4,,5,8,Mason,Rd,4104403,3.771,4.551,0,18.709751,3,4 +24829,0,1.585735,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.057645,0.15,4 +7889,0,1.001503,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,0,1.001,0,24.036063,3.7,5 +37039,0,0.227387,1,1,0,2,4,,5,8,Mason,Rd,4104403,4.551,4.778,0,5.457296,3,4 +37037,0,0.206692,1,1,0,2,4,,5,8,Mason,Rd,4104403,3.565,3.771,0,4.960602,3,4 +7183,0,0.567777,1,1,1,2,4,,4,8,Grand River,Ave,932910,4.132,4.699,0,13.626655,4.5,4.5 +7506,1,0.168835,1,0,0,1,1,ROF,5,8,W I 96/Fowlerville,RAMP,935209,0,0.169,0,,2.24,5 +7507,1,0.306569,1,0,0,1,1,RON,4,8,Fowlerville/W I 96,RAMP,935208,0,0.307,0,,1.09,4 +7871,0,0.200851,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,3.151,3.352,0,4.820423,3.7,5 +7613,-1,0.250961,0,2,0,1,1,,4,8,W I 96,,935207,3.633,3.884,0,,0.8,7.5 +7885,0,0.507683,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,2.508,3.016,0,12.184386,3.7,5 +7673,1,0.323909,1,0,0,1,1,RON,5,8,Fowlerville/E I 96,RAMP,935107,0,0.324,0,,1.09,4 +7785,1,0.262347,2,0,0,1,1,,4,8,E I 96,,935105,3.941,4.204,0,,0.8,7.5 +7881,0,0.123909,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,3.016,3.14,0,2.973811,3.7,5 +7675,1,0.162786,1,0,0,1,1,ROF,5,8,E I 96/Fowlerville,RAMP,935106,0,0.163,0,,2.24,5 +7874,0,0.011326,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,3.14,3.151,0,0.27182,3.7,5 +7185,0,0.206534,1,1,1,2,4,,4,8,Grand River,Ave,932910,3.735,3.941,0,4.956819,4.5,4.5 +7840,0,0.538638,1,1,1,2,5,,4,8,Grand,Ave,935004,3.518,4.057,0,12.927305,5.8,4.5 +8115,0,0.126506,1,1,1,2,7,,4,8,Frank,St,939502,0.078,0.204,0,3.036147,6.55,4.5 +24821,0,0.27553,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,6.612719,0.15,4 +24822,0,0.291582,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,6.997961,0.15,4 +7114,0,0.172819,1,1,1,2,7,,4,8,Veterans,Dr,933101,0,0.173,0,4.147652,6.55,4.5 +7186,0,0.180759,1,1,1,2,4,,4,8,Grand River,Ave,932910,3.554,3.735,0,4.33821,4.5,4.5 +8116,0,0.077869,1,1,1,2,7,,4,8,Frank,St,939502,0,0.078,0,1.868851,6.55,4.5 +7858,0,0.154057,2,2,1,2,5,,4,8,Grand,Ave,935004,3.364,3.518,0,3.697378,5.8,4.5 +7869,0,0.012573,2,2,1,2,5,,4,8,Fowlerville,Rd,935004,3.352,3.364,0,0.301762,5.8,4.5 +7184,0,0.19075,1,1,1,2,4,,4,8,Grand River,Ave,932910,3.941,4.132,0,4.577995,4.5,4.5 +7837,0,0.17671,1,1,1,2,5,,4,8,Grand,Ave,935004,4.057,4.233,0,4.241032,5.8,4.5 +7182,0,0.233583,1,1,0,2,4,,5,8,Grand River,Ave,932910,4.699,4.933,0,5.605982,3,4 +7180,0,0.516236,1,1,0,2,4,,5,8,Grand River,Ave,932910,5.416,5.932,0,12.389666,3,4 +7812,0,1.909899,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,5.03,6.939,0,45.837564,3.7,5 +24828,0,0.808483,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.403581,0.15,4 +8084,0,0.99815,1,1,0,2,6,,5,8,Sharpe,Rd,943709,0,0.998,0,23.95559,5.8,6 +7831,0,0.226254,1,1,0,2,5,,4,8,Grand,Ave,935004,4.804,5.03,0,5.430092,5.8,4.5 +7835,0,0.308269,1,1,1,2,5,,4,8,Grand,Ave,935004,4.496,4.804,0,7.398461,5.8,4.5 +24826,0,0.097096,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,2.330304,0.15,4 +27182,0,0.428839,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.292126,0.15,4 +7810,0,1.005585,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,6.939,7.944,0,24.134036,3.7,5 +8093,0,1.002817,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,3.86,4.862,0,24.067609,5.8,6 +24790,0,1.038089,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.914125,0.15,4 +24789,0,0.755188,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.124509,0.15,4 +7316,0,1.002991,1,1,0,2,4,,5,8,Pinckney,Rd,944110,3.848,4.85,0,24.071789,3,4 +7330,0,1.006939,1,1,0,2,7,GRV,5,8,Schafer,Rd,944107,0,1.007,0,24.166537,5.55,5 +7471,0,0.679561,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,9.661,10.34,0,16.309469,3.7,5 +24661,0,1.662223,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.89334,0.15,4 +24799,0,1.321819,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.72366,0.15,4 +24804,0,0.920989,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.103728,0.15,4 +24831,0,0.982286,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.574871,0.15,4 +24832,0,1.103176,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.476227,0.15,4 +24833,0,1.43756,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.501442,0.15,4 +6397,0,0.254984,1,1,0,2,4,,5,8,M 36,,932308,3.448,3.703,0,6.119612,3,4 +24668,0,1.310904,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.461699,0.15,4 +6740,0,0.754771,1,1,0,2,4,,5,8,M 36,,932308,2.694,3.448,0,18.114504,3,4 +7333,0,0.044894,1,1,0,2,7,GRV,5,8,Cedar Lake,Rd,944106,1.985,2.03,0,1.077461,5.55,5 +7297,0,0.609118,1,1,0,2,7,GRV,5,8,Sexton,Rd,944207,0,0.609,0,14.618826,5.55,5 +7474,0,1.353363,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,7.713,9.066,0,32.480704,3.7,5 +7792,0,0.726188,1,1,0,2,5,,5,8,County Farm,Rd,935101,0.021,0.747,0,17.428515,3.7,5 +37033,0,1.344656,1,1,0,2,4,,5,8,Mason,Rd,4104403,0,1.344,0,32.271732,3,4 +8062,0,1.124648,1,1,0,2,7,,5,8,Cedar Lake,Rd,944106,5.037,6.161,0,26.991549,5.8,6 +8069,0,0.855365,1,1,0,2,7,,5,8,Jewell,Rd,944104,1.241,2.096,0,20.528754,5.8,6 +24800,0,1.525842,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.62021,0.15,4 +8066,0,0.372817,1,1,0,2,7,,5,8,Cedar Lake,Rd,944106,4.664,5.037,0,8.947614,5.8,6 +7227,0,0.2916,1,1,0,2,5,,5,8,Norton,Rd,932601,9.009,9.3,0,6.998393,3.7,5 +7801,0,1.647592,1,1,0,2,7,,5,8,Cedar Lake,Rd,944106,6.161,7.808,0,39.542204,5.8,6 +24802,0,1.188082,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.513959,0.15,4 +24667,0,0.421082,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.105968,0.15,4 +7226,0,0.524977,1,1,0,2,5,,5,8,Norton,Rd,932601,9.3,9.825,0,12.599442,3.7,5 +7473,0,0.595297,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,9.066,9.661,0,14.287117,3.7,5 +8031,0,0.219352,1,1,0,2,5,,5,8,Sexton,Rd,944207,0.609,0.828,0,5.264442,3.7,5 +8101,0,1.502914,1,1,0,2,5,,5,8,County Farm,Rd,943510,0,1.502,0,36.069941,3.7,5 +19939,0,0.033835,1,1,0,2,5,,5,8,County Farm,Rd,4103025,0,0.034,0,0.812028,3.7,5 +7789,0,1.062724,1,1,0,2,5,,5,8,County Farm,Rd,935101,0.747,1.81,0,25.505367,3.7,5 +7807,0,0.965344,1,1,0,2,7,,5,8,Jewell,Rd,944104,2.096,3.061,0,23.168265,5.8,6 +7891,0,0.209971,1,1,0,2,5,,5,8,County Farm,Rd,4104400,2.42,2.63,0,5.039297,3.7,5 +7317,0,1.415211,1,1,0,2,4,,5,8,Pinckney,Rd,944110,1.418,2.833,0,33.965072,3,4 +7756,0,0.849727,1,1,0,2,6,,5,8,Swarthout,Rd,945302,0,0.849,0,20.393457,5.8,6 +24760,0,1.533358,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.800589,0.15,4 +7326,0,0.769087,1,1,0,2,4,,5,8,Pinckney,Rd,944110,0,0.769,0,18.458096,3,4 +8059,0,0.649902,1,1,0,2,4,,5,8,Pinckney,Rd,944110,0.769,1.418,0,15.597641,3,4 +24670,0,0.478475,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.483407,0.15,4 +8049,0,1.014778,1,1,0,2,4,,5,8,Pinckney,Rd,944110,2.833,3.848,0,24.354672,3,4 +8061,0,0.689272,1,1,0,2,7,,5,8,Schafer,Rd,944107,2.339,3.028,0,16.542518,5.8,6 +24830,0,0.487239,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.693738,0.15,4 +7464,0,0.937249,1,1,0,2,4,,5,8,Coon Lake,Rd,935710,11.026,11.963,0,22.493979,3,4 +8041,0,0.502404,1,1,0,2,4,,5,8,Pinckney,Rd,944110,6.35,6.852,0,12.057694,3,4 +7466,0,0.68672,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,10.34,11.026,0,16.481275,3.7,5 +8048,0,1.500558,1,1,0,2,4,,5,8,Pinckney,Rd,944110,4.85,6.35,0,36.013384,3,4 +24834,0,0.988176,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.716217,0.15,4 +6998,1,0.195793,1,0,0,1,1,RON,3,8,Pinckney/W I 96,RAMP,934110,0,0.196,0,,1.09,4 +6999,1,0.264661,1,0,0,1,1,ROF,5,8,E I 96/Pinckney,RAMP,934109,0,0.265,0,,2.24,5 +7308,0,0.745645,1,1,0,2,4,,5,8,Pinckney,Rd,944110,7.099,7.844,0,17.895481,3,4 +7504,1,0.158932,1,0,0,1,1,ROF,5,8,W I 96/Pinckney,RAMP,935210,0,0.159,0,,2.24,5 +7555,-1,0.157834,0,3,0,1,1,,5,8,W I 96,,935207,12.02,12.178,0,,1.02,7 +7763,1,0.595028,3,0,0,1,1,,5,8,E I 96,,935105,12.007,12.602,0,,1.02,7 +24811,0,1.015258,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.366188,0.15,4 +24814,0,0.196754,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.722087,0.15,4 +29474,0,0.716125,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.186999,0.15,4 +30148,0,0.692089,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.610125,0.15,4 +7784,0,0.246543,1,1,0,2,4,,5,8,Pinckney,Rd,944110,6.852,7.099,0,5.917034,3,4 +7780,0,0.218309,1,1,0,2,4,,5,8,Pinckney,Rd,944110,8.36,8.578,0,5.23941,3,4 +7672,1,0.353442,1,0,0,1,1,RON,5,8,Pinckney/E I 96,RAMP,935109,0,0.353,0,,1.09,4 +8040,0,0.455917,1,1,0,2,4,,5,8,Pinckney,Rd,944110,7.844,8.3,0,10.941999,3,4 +8037,0,0.060275,1,1,0,2,4,,5,8,Pinckney,Rd,944110,8.3,8.36,0,1.446599,3,4 +7773,0,0.277963,2,2,1,2,4,,3,8,Michigan,Ave,944110,8.588,8.866,0,6.671119,6,4.5 +8035,0,0.010184,2,2,1,2,4,,3,8,Michigan,Ave,944110,8.578,8.588,0,0.244409,6,4.5 +7298,0,0.069376,1,1,1,2,4,,3,8,Michigan,Ave,944110,8.866,8.936,0,1.66502,6,4.5 +7463,0,0.751577,1,1,0,2,4,,5,8,Coon Lake,Rd,935710,11.963,12.715,0,18.037857,3,4 +24652,0,1.354573,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.509764,0.15,4 +24810,0,0.314368,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,7.544822,0.15,4 +24627,0,0.291773,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,7.002553,0.15,4 +6993,0,0.621412,1,1,1,2,4,,3,8,McPherson Park,Dr,934203,0.374,0.995,0,14.913892,6,4.5 +7066,0,0.020148,1,1,1,2,5,,3,8,Byron,Rd,933401,0.874,0.894,0,0.483544,8,4.5 +7097,1,0.643219,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,2.146,2.789,0,15.437267,5,5 +7108,0,1.514329,1,1,0,2,5,,5,8,Burkhart,Rd,933208,1.898,3.412,0,36.343898,3.7,5 +7173,0,0.634252,1,1,1,2,3,,3,8,Grand River,Ave,932910,11.234,11.868,0,15.222051,5,5 +7923,0,0.250762,1,1,0,2,4,,3,8,Mason,Rd,4104400,1.303,1.553,0,6.018276,6,4.5 +7969,0,1.100518,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,2.636,3.736,0,26.41244,5.55,5 +7975,0,0.675601,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,1.464,2.139,0,16.214421,5.55,5 +37047,0,0.54689,1,1,0,2,4,,3,8,Michigan,Ave,4104401,0.557,1.104,0,13.125368,6,4.5 +8072,0,1.003763,1,1,0,2,5,,5,8,Chase Lake,Rd,939803,1.791,2.794,0,24.090311,3.7,5 +8110,0,1.030819,1,1,0,2,5,,5,8,Byron,Rd,939703,0.03,1.061,0,24.739652,3.7,5 +24609,0,0.93394,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.414551,0.15,4 +24795,0,0.81957,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.66969,0.15,4 +24836,0,1.081174,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.948174,0.15,4 +24838,0,1.180566,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.333577,0.15,4 +24839,0,0.602854,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.468485,0.15,4 +24847,0,0.35322,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,8.47729,0.15,4 +24848,0,0.462153,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,11.091667,0.15,4 +24850,0,0.544685,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,13.072429,0.15,4 +24852,0,0.345524,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,8.292572,0.15,4 +27052,0,1.189409,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.545805,0.15,4 +7102,0,0.263324,2,2,1,2,3,,4,8,Highland,Rd,933209,0.269,0.532,0,6.319765,3.7,5 +7110,0,0.714865,1,1,1,2,4,,4,8,Burkhart,Rd,933208,0.392,1.106,0,17.156756,4.5,4.5 +7177,0,1.057946,2,2,1,2,4,,4,8,Grand River,Rd,932910,8.803,9.861,0,25.390712,4.5,4.5 +37034,0,0.434941,1,1,0,2,4,,5,8,Mason,Rd,4104403,1.344,1.779,0,10.438595,3,4 +24778,0,1.584532,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.028777,0.15,4 +24837,0,1.241128,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.78708,0.15,4 +27181,0,2.355288,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,56.526918,0.15,4 +6997,1,0.317137,1,0,0,1,1,ROF,4,8,W I 96/Highland,RAMP,934201,0,0.317,0,,2.24,5 +7000,0,0.071178,1,1,0,2,3,,5,8,Highland,Rd,934108,0.34,0.411,0,1.708279,1.7,4 +7002,1,0.223503,1,0,0,1,1,ROF,5,8,E I 96/W Highland,RAMP,934108,0,0.223,0,,2.24,5 +7584,-1,0.608152,0,3,0,1,1,,4,8,W I 96,,935207,8.46,9.068,0,,0.8,7.5 +7781,1,0.319167,3,0,0,1,1,,4,8,E I 96,,935105,8.797,9.116,0,,0.8,7.5 +24807,0,0.756064,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.14553,0.15,4 +7001,1,0.11677,1,0,0,2,3,DIV,5,8,E I 96/W Highland,RAMP,934108,0.223,0.34,0,2.802468,1.7,4 +7004,1,0.129456,1,0,0,2,3,DIV,5,8,Highland/E I 96,RAMP,934107,0,0.129,0,3.106954,1.7,4 +7223,0,0.047404,1,1,0,2,4,,5,8,I 96,Ramp,932601,10.999,11.046,0,1.137702,3,4 +7224,0,0.862656,1,1,0,2,4,,5,8,Burkhart,Rd,932601,10.137,10.999,0,20.703748,3,4 +7003,1,0.332802,1,0,0,1,1,RON,5,8,Highland/E I 96,RAMP,934107,0.129,0.462,0,,1.09,4 +7222,0,0.01452,1,1,0,2,4,,5,8,I 96,Ramp,932601,11.046,11.061,0,0.348476,3,4 +6995,1,0.20492,1,0,0,1,1,RON,5,8,W Highland/W I 96,RAMP,934202,0.106,0.311,0,,1.09,4 +7111,0,0.391897,1,1,1,2,4,,4,8,Burkhart,Rd,933208,0,0.392,0,9.405519,4.5,4.5 +7103,0,0.110864,2,2,1,2,3,,4,8,Highland,Rd,933209,0.158,0.269,0,2.66073,3.7,5 +7104,0,0.052316,1,1,0,2,3,,4,8,Highland,Rd,933209,0.081,0.134,0,1.25559,3.7,5 +19503,1,0.066782,1,0,0,1,1,RON,5,8,E Highland/W I 96,RAMP,1903301,0,0.067,0,,1.09,4 +7105,0,0.081439,1,1,0,2,3,,4,8,Highland,Rd,933209,0,0.081,0,1.954531,3.7,5 +6996,1,0.106022,1,0,0,1,1,RON,5,8,W Highland/W I 96,RAMP,934202,0,0.106,0,,1.09,4 +7178,0,1.289301,1,1,0,2,4,,5,8,Grand River,Ave,932910,7.514,8.803,0,30.943222,3,4 +24796,0,1.075282,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.806765,0.15,4 +29841,0,0.758795,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.211081,0.15,4 +24797,0,0.362756,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.706149,0.15,4 +7109,0,0.79239,1,1,0,2,5,,5,8,Burkhart,Rd,933208,1.106,1.898,0,19.01735,3.7,5 +6991,0,0.568434,1,1,1,2,4,,3,8,Highlander,Way,934203,1.319,1.887,0,13.642427,6,4.5 +7099,1,0.62303,2,0,0,2,3,DIV,4,8,Highland,Rd,933209,1.149,1.772,0,14.95271,3.7,5 +7174,0,0.542518,2,2,1,2,3,,4,8,Grand River,Ave,932910,10.692,11.234,0,13.020422,3.7,5 +7176,0,0.695261,2,2,0,2,3,,4,8,Grand River,Ave,932910,9.898,10.593,0,16.686267,3.7,5 +24845,0,0.610655,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,14.655719,0.15,4 +7100,1,0.145211,2,0,0,2,3,DIV,4,8,Highland,Rd,933209,1.004,1.149,0,3.485055,3.7,5 +24844,0,0.468302,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,11.239247,0.15,4 +7101,1,0.204448,2,0,0,2,3,DIV,4,8,Highland,Rd,933209,0.8,1.004,0,4.906757,3.7,5 +24843,0,0.361118,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.666832,0.15,4 +6992,0,0.323832,1,1,1,2,4,,3,8,Highlander,Way,934203,0.995,1.319,0,7.771969,6,4.5 +7098,1,0.374242,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,1.772,2.146,0,8.9818,5,5 +7071,0,0.447729,1,1,0,2,7,,4,8,Crestwood,Ln,933304,0,0.448,0,10.745485,6.55,4.5 +7175,0,0.098819,2,2,0,2,3,,4,8,Grand River,Ave,932910,10.593,10.692,0,2.371652,3.7,5 +24835,0,0.935005,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.440109,0.15,4 +7966,0,0.065192,1,1,0,2,5,,5,8,Barron,Rd,934602,0.246,0.311,0,1.564601,3.7,5 +19940,0,0.040819,1,1,0,2,5,,5,8,Byron,Rd,4103021,0,0.041,0,0.97965,3.7,5 +7107,0,0.957662,1,1,0,2,5,,5,8,Burkhart,Rd,933208,3.412,4.37,0,22.983885,3.7,5 +8073,0,1.296047,1,1,0,2,5,,5,8,Chase Lake,Rd,939803,0.495,1.791,0,31.105127,3.7,5 +8109,0,1.466642,1,1,0,2,5,,5,8,Byron,Rd,939703,1.061,2.527,0,35.199406,3.7,5 +19942,0,0.072924,1,1,0,2,6,GRV,5,8,Marr,Rd,4103019,0,0.073,0,1.750167,5.55,5 +8112,0,1.001237,1,1,0,2,6,GRV,5,8,Marr,Rd,939610,1.018,2.019,0,24.029689,5.55,5 +8111,0,0.462659,1,1,0,2,6,GRV,5,8,Marr,Rd,939610,2.019,2.482,0,11.103807,5.55,5 +19941,0,0.054772,1,1,0,2,6,GRV,5,8,Marr,Rd,4103020,0,0.055,0,1.314537,5.55,5 +7112,0,0.039845,1,1,0,2,6,GRV,5,8,Crandall,Rd,933206,1.549,1.589,0,0.956281,5.55,5 +7928,0,1.004237,1,1,0,2,6,GRV,5,8,Antcliff,Rd,940003,0,1.004,0,24.101681,5.55,5 +8089,0,0.994515,1,1,0,2,6,GRV,5,8,Chase Lake,Rd,943607,6.864,7.858,0,23.868359,5.55,5 +7106,0,0.466036,1,1,0,2,5,GRV,5,8,Burkhart,Rd,933208,5.852,6.318,0,11.184862,5.55,5 +8108,0,0.218653,1,1,0,2,5,GRV,5,8,Chase Lake,Rd,939803,0.276,0.495,0,5.247667,5.55,5 +19944,0,0.050198,1,1,0,2,5,GRV,5,8,Burkhart/Chase Lake Cutoff,,4103009,0,0.05,0,1.204749,5.55,5 +7983,0,1.414842,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,0.049,1.464,0,33.956214,5.55,5 +7094,0,0.508333,1,1,0,2,3,,3,8,Highland,Rd,933209,3.628,4.136,0,12.199988,5,5 +7165,0,0.425339,2,2,1,2,3,,3,8,Grand River,Rd,932910,12.771,13.197,0,10.208134,5,5 +7941,0,0.452037,1,1,0,2,5,,3,8,Sibley,St,934805,0.798,1.25,0,10.848885,8,4.5 +7948,0,0.613391,1,1,0,2,5,,3,8,Clinton,St,934804,0.471,1.084,0,14.721382,8,4.5 +37048,0,0.133958,1,1,0,2,4,,3,8,Michigan,Ave,4104401,0.423,0.557,0,3.215002,6,4.5 +8161,0,0.183558,1,1,0,2,5,,3,8,North,St,939001,0.101,0.285,0,4.405401,8,4.5 +24738,0,2.336584,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,56.078018,0.15,4 +24857,0,0.396449,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,9.514769,0.15,4 +26522,0,0.727819,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,17.467657,0.15,4 +7065,0,0.283289,1,1,0,2,5,,3,8,Walnut,St,933407,0,0.283,0,6.798942,8,4.5 +7068,0,0.328834,1,1,0,2,5,,3,8,Byron,Rd,933401,0.059,0.387,0,7.892008,8,4.5 +7096,1,0.492738,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,2.789,3.282,0,11.825714,5,5 +7169,0,0.230283,1,1,1,2,3,,3,8,Grand River,Ave,932910,12.121,12.351,0,5.526797,5,5 +7935,0,0.10134,1,1,1,2,4,,3,8,Mason,Rd,4104400,0.527,0.628,0,2.432157,6,4.5 +7947,0,0.345866,1,1,0,2,5,,3,8,Sibley,St,934805,0.161,0.507,0,8.300774,8,4.5 +7952,0,0.221943,1,1,0,2,5,,3,8,Clinton,St,934804,0,0.222,0,5.32663,8,4.5 +37050,0,0.06448,1,1,1,2,4,,3,8,Michigan,Ave,4104401,0,0.065,0,1.547512,6,4.5 +24806,0,0.580212,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,13.925097,0.15,4 +24842,0,0.666527,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,15.996655,0.15,4 +24846,0,0.387454,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,9.298886,0.15,4 +24853,0,0.763291,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,18.318974,0.15,4 +6994,0,0.37435,1,1,1,2,4,,3,8,McPherson Park,Dr,934203,0,0.374,0,8.984407,6,4.5 +7924,0,0.336322,1,1,0,2,4,,3,8,Mason,Rd,4104400,0.966,1.303,0,8.071725,6,4.5 +24851,0,0.475796,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,11.419112,0.15,4 +24854,0,0.255465,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,6.13115,0.15,4 +7925,0,0.170282,1,1,1,2,4,,3,8,Mason,Rd,4104400,0.796,0.966,0,4.086762,6,4.5 +7934,0,0.168493,1,1,1,2,4,,3,8,Mason,Rd,4104400,0.628,0.796,0,4.043837,6,4.5 +7172,0,0.156661,1,1,1,2,3,,3,8,Grand River,Ave,932910,11.868,12.025,0,3.759855,5,5 +7069,0,0.058684,1,1,0,2,5,,3,8,Byron,Rd,933401,0,0.059,0,1.408428,8,4.5 +7070,0,0.142063,1,1,0,2,5,,3,8,George,St,933310,0.252,0.394,0,3.409504,8,4.5 +7170,0,0.029661,1,1,1,2,3,,3,8,Grand River,Ave,932910,12.091,12.121,0,0.711866,5,5 +7171,0,0.066483,1,1,1,2,3,,3,8,Grand River,Ave,932910,12.025,12.091,0,1.595598,5,5 +24849,0,0.555026,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,13.320628,0.15,4 +7067,0,0.486307,1,1,1,2,5,,3,8,Byron,Rd,933401,0.387,0.874,0,11.671358,8,4.5 +7064,0,0.216696,1,1,0,2,5,,3,8,Walnut,St,933407,0.283,0.5,0,5.200705,8,4.5 +7166,0,0.232628,2,2,1,2,3,,3,8,Grand River,Rd,932910,12.539,12.771,0,5.58307,5,5 +7937,0,0.133833,1,1,0,2,5,,3,8,Livingston,Ave,934808,0.25,0.384,0,3.211981,8,4.5 +7942,0,0.228887,1,1,0,2,5,,3,8,Sibley,St,934805,0.569,0.798,0,5.493297,8,4.5 +7944,0,0.062309,1,1,0,2,5,,3,8,Sibley,St,934805,0.507,0.569,0,1.495407,8,4.5 +8023,0,0.066569,1,1,1,2,4,,3,8,Michigan,Ave,4104400,0,0.067,0,1.597645,6,4.5 +37051,0,1.425289,1,1,0,2,7,,5,8,Norton,Rd,4104404,0,1.425,0,34.206934,5.8,6 +8148,0,0.392965,1,1,0,2,5,,3,8,Roosevelt,St,939101,0,0.393,0,9.431161,8,4.5 +24812,0,0.170702,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.096858,0.15,4 +7896,0,0.186345,1,1,0,2,5,,3,8,Marion,St,934902,0,0.186,0,4.472276,8,4.5 +8022,0,0.460126,1,1,0,2,4,,3,8,Michigan,Ave,4104400,0.067,0.527,0,11.043013,6,4.5 +8074,0,0.122701,1,1,0,2,5,,3,8,Dearborn,St,938708,0.168,0.291,0,2.944826,8,4.5 +7063,0,0.066063,1,1,0,2,5,,3,8,Walnut,St,933407,0.5,0.566,0,1.585501,8,4.5 +7168,0,0.128122,2,2,1,2,3,,3,8,Grand River,Ave,932910,12.351,12.479,0,3.074934,5,5 +7950,0,0.187537,1,1,0,2,5,,3,8,Clinton,St,934804,0.222,0.409,0,4.500884,8,4.5 +7949,0,0.061752,1,1,0,2,5,,3,8,Clinton,St,934804,0.409,0.471,0,1.482059,8,4.5 +37053,1,0.012364,1,0,0,2,5,,3,3,Taft,Rd,656608,0.4,0.413,0,0.296743,8,4.5 +7062,0,0.066117,1,1,0,2,5,,3,8,Walnut,St,933407,0.566,0.632,0,1.586807,8,4.5 +7167,0,0.059938,2,2,1,2,3,,3,8,Grand River,Ave,932910,12.479,12.539,0,1.43851,5,5 +7061,0,0.231393,1,1,0,2,5,,3,8,Fowler,St,4104608,0.186,0.417,0,5.553443,8,4.5 +24808,0,0.125275,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,3.006611,0.15,4 +7060,0,0.066196,1,1,0,2,5,,3,8,Fowler,St,4104608,0.417,0.483,0,1.588695,8,4.5 +7954,0,0.117281,1,1,0,2,5,,3,8,Madison,St,934708,0.188,0.305,0,2.814748,8,4.5 +24855,0,0.165955,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,3.982909,0.15,4 +7958,0,0.187512,1,1,0,2,5,,3,8,Madison,St,934708,0,0.188,0,4.500299,8,4.5 +7095,1,0.229991,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,3.282,3.512,0,5.51979,5,5 +24859,0,0.402811,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,9.667457,0.15,4 +24858,0,0.28459,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,6.830162,0.15,4 +37049,0,0.359059,1,1,0,2,4,,3,8,Michigan,Ave,4104401,0.065,0.423,0,8.61742,6,4.5 +24841,0,0.690636,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.575265,0.15,4 +7054,0,0.391472,1,1,0,2,5,,5,8,Golf Club,Rd,933602,0,0.391,0,9.395317,3.7,5 +7093,0,0.890798,1,1,0,2,3,,5,8,Highland,Rd,933209,4.136,5.027,0,21.379148,1.7,4 +24606,0,0.721634,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.31921,0.15,4 +7055,0,0.364907,1,1,0,2,5,,3,8,Catrell,Dr,933508,0,0.365,0,8.757759,8,4.5 +7056,0,0.068682,1,1,0,2,5,,3,8,National,St,933507,0.574,0.643,0,1.648374,8,4.5 +7163,0,0.361167,2,2,1,2,3,,4,8,Grand River,Rd,932910,13.407,13.768,0,8.66801,3.7,5 +7059,0,0.046464,1,1,0,2,5,,3,8,National,St,933507,0.332,0.379,0,1.115133,8,4.5 +7164,0,0.210643,2,2,1,2,3,,3,8,Grand River,Rd,932910,13.197,13.407,0,5.055444,5,5 +7058,0,0.113833,1,1,0,2,5,,3,8,National,St,933507,0.379,0.492,0,2.731988,8,4.5 +7057,0,0.081938,1,1,0,2,5,,3,8,National,St,933507,0.492,0.574,0,1.966505,8,4.5 +8155,0,0.183008,1,1,0,2,5,,3,8,Sutton,St,939009,0,0.183,0,4.392186,8,4.5 +7162,0,0.10791,2,2,1,2,3,,4,8,Grand River,Rd,932910,13.768,13.876,0,2.589832,3.7,5 +24607,0,0.544866,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.07679,0.15,4 +7053,0,0.419835,1,1,0,2,5,,5,8,Golf Club,Rd,933602,0.391,0.811,0,10.076029,3.7,5 +8016,0,2.179787,1,1,0,2,5,,5,8,Faussett,Rd,934509,0,2.179,0,52.31488,3.7,5 +37045,0,1.006972,1,1,0,2,5,,5,8,Oak Grove,Rd,4104402,2.078,3.085,0,24.167324,3.7,5 +7971,0,0.497197,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,2.139,2.636,0,11.93272,5.55,5 +19937,0,0.752478,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,1.499,2.251,0,18.059475,3.7,5 +7986,0,0.39666,1,1,0,2,5,,5,8,Oak Grove,Rd,934510,0.101,0.498,0,9.519848,3.7,5 +19938,0,0.651913,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,0.848,1.499,0,15.645906,3.7,5 +19943,0,0.15094,1,1,0,2,5,,5,8,Oak Grove,Rd,4103011,0,0.151,0,3.622553,3.7,5 +8083,0,0.109411,1,1,0,2,5,,5,8,Sanford,Rd,934507,0.377,0.487,0,2.625869,3.7,5 +26558,0,0.928104,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.274506,0.15,4 +8053,0,0.985939,1,1,0,2,6,GRV,5,8,Clyde,Rd,939905,0,0.986,0,23.662544,5.55,5 +7964,0,0.613639,1,1,0,2,6,GRV,5,8,Fisher,Rd,934608,2.543,3.156,0,14.727329,5.55,5 +8063,0,1.242607,1,1,0,2,5,,5,8,Gannon,Rd,939806,1.004,2.246,0,29.822574,3.7,5 +24767,0,0.866354,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.792491,0.15,4 +7343,0,0.462738,1,1,0,2,5,,5,8,Mohrle,Rd,943701,3.462,3.924,0,11.105701,3.7,5 +24860,0,1.426011,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.22426,0.15,4 +7320,0,1.470618,1,1,0,2,5,,5,8,Fowlerville,Rd,938006,0.036,1.506,0,35.294824,3.7,5 +7822,0,0.751834,1,1,0,2,6,GRV,5,8,Mohrle,Rd,943701,1.916,2.668,0,18.044013,5.55,5 +24783,0,1.953494,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,46.883849,0.15,4 +8085,0,0.753962,1,1,0,2,6,GRV,5,8,Mohrle,Rd,943701,2.668,3.421,0,18.09509,5.55,5 +7820,0,0.040296,1,1,0,2,6,GRV,5,8,Mohrle,Rd,943701,3.421,3.462,0,0.967098,5.55,5 +20912,0,0.058763,1,1,0,2,5,,5,8,Fowlerville,Rd,4104263,0,0.059,0,1.410307,3.7,5 +7325,0,0.035938,1,1,0,2,6,GRV,5,8,Fowlerville/Mohrle Cutoff,,938006,0,0.036,0,0.862511,5.55,5 +34060,0,0.659775,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7318,0,0.849899,1,1,0,2,5,,5,8,Fowlerville,Rd,938006,1.506,2.356,0,20.397576,3.7,5 +7340,0,1.975193,1,1,0,2,5,,5,8,Hayner,Rd,943801,1.004,2.979,0,47.404624,3.7,5 +7818,0,0.503033,1,1,0,2,5,,5,8,Hayner,Rd,943801,0.501,1.004,0,12.072802,3.7,5 +24861,0,1.507313,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.175524,0.15,4 +7800,0,0.50762,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,9.452,9.96,0,12.182879,3.7,5 +8082,0,0.501613,1,1,0,2,5,,5,8,Hayner,Rd,943801,0,0.501,0,12.038701,3.7,5 +19934,0,0.445298,1,1,0,2,5,,5,8,Fleming,Rd,4103109,3.568,4.013,0,10.687149,3.7,5 +19767,0,0.085508,1,1,0,2,5,,5,8,Hayner,Rd,4104152,0,0.086,0,2.052193,3.7,5 +8056,0,2.233944,1,1,0,2,5,,5,8,Cohoctah,Rd,939901,0,2.233,0,53.614649,3.7,5 +7918,0,0.970187,1,1,0,2,5,,5,8,Antcliff,Rd,940003,2.508,3.478,0,23.284488,3.7,5 +24766,0,0.9568,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.963205,0.15,4 +7301,0,1.071096,1,1,0,2,6,GRV,5,8,Cohoctah,Rd,941804,0,1.071,0,25.706297,5.55,5 +7305,0,0.111474,1,1,0,2,6,GRV,5,8,Latson,Rd,938109,5.112,5.223,0,2.675369,5.55,5 +7314,0,1.408351,1,1,0,2,5,,5,8,Oak Grove,Rd,938107,2.492,3.899,0,33.800434,3.7,5 +8054,0,1.779584,1,1,0,2,6,,5,8,Cohoctah,Rd,939901,2.742,4.52,0,42.710014,5.8,6 +19935,0,1.505022,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,3.507,5.011,0,36.120518,3.7,5 +8055,0,0.508533,1,1,0,2,5,,5,8,Cohoctah,Rd,939901,2.233,2.742,0,12.204799,3.7,5 +34061,0,0.908819,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8531,0,0.787827,1,1,0,2,5,,5,6,Lewis,Ave,1226808,14.248,15.035,0,18.907847,3.7,5 +8569,0,1.524236,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,0,1.524,0,36.581666,3.7,5 +8907,1,1.166968,2,0,0,1,2,,4,6,N US 23,,1223505,15.315,16.481,0,,0.8,7.5 +8932,-1,2.144963,0,2,0,1,2,,5,6,S US 23,,1223504,14.433,16.577,0,,1.02,7 +8976,0,2.342182,1,1,0,2,4,,5,6,Custer,Rd,1223803,11.162,13.504,0,56.212378,3,4 +9072,0,3.136635,1,1,0,2,5,,5,6,Custer,Rd,1226001,13.898,17.034,0,75.279247,3.7,5 +9203,0,0.655533,1,1,0,2,5,,5,6,Lloyd,Rd,1225909,0.712,1.367,0,15.732787,3.7,5 +9382,0,0.449979,2,2,0,2,4,,3,6,Monroe,St,1227004,16.666,17.116,0,10.799493,6,4.5 +9425,1,2.111128,3,0,0,1,1,,5,6,N I 75,,1226910,15.63,17.74,0,,1.02,7 +9451,-1,2.193367,0,3,0,1,1,,5,6,S I 75,,1226909,15.54,17.733,0,,1.02,7 +10160,0,0.40311,2,2,0,2,4,,4,6,Stewart,Rd,1237610,8.3,8.703,0,9.674631,4.5,4.5 +10417,0,1.007303,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,1.893,2.9,0,24.175272,3.7,5 +10428,0,0.986887,1,1,0,2,7,,5,6,Dixon,Rd,1234503,4.731,5.717,0,23.685283,5.8,6 +20236,0,0.584081,1,1,0,2,5,,5,6,Vivian,Rd,4301667,0.128,0.712,0,14.017955,3.7,5 +20334,0,0.337228,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,3.987,4.324,0,8.093468,4.5,4.5 +20523,0,0.537128,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,16.164,16.701,0,12.891063,5,5 +20873,0,1.798344,1,1,0,2,7,,5,6,Hurd,Rd,4301449,0.934,2.731,0,43.160248,5.8,6 +31022,0,0.573031,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,13.752748,0.15,4 +31023,0,0.807536,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,19.380858,0.15,4 +31031,0,1.639395,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,39.345471,0.15,4 +31037,0,0.486284,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,11.670805,0.15,4 +31039,0,1.180717,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,28.337202,0.15,4 +33995,0,0.689784,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.554806,0.15,4 +34000,0,1.13996,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.35903,0.15,4 +34012,0,1.964809,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,47.155426,0.15,4 +8514,1,0.415666,1,0,0,1,1,RON,4,6,Dixie/S I 75,RAMP,1225601,0,0.416,0,,1.09,4 +8709,1,0.405661,1,0,0,1,1,ROF,5,6,S I 75/Dixie,RAMP,1225510,0,0.406,0,,2.24,5 +8751,0,0.610916,1,1,0,2,5,,5,6,Front,St,1223803,21.602,22.212,0,14.66199,3.7,5 +9133,0,0.372904,2,2,0,2,5,,5,6,Elm,Ave,1226001,22.851,23.224,0,8.949687,3.7,5 +9427,1,1.252029,3,0,0,1,1,,4,6,N I 75,,1226910,13.673,14.924,0,,0.8,7.5 +9452,-1,0.777442,0,3,0,1,1,,5,6,S I 75,,1226909,14.763,15.54,0,,1.02,7 +19885,0,0.213794,2,2,1,2,4,,5,6,Dixie,Hwy,4301655,1.624,1.838,0,5.131049,3,4 +20469,0,1.472382,1,1,0,2,5,,5,6,Sandy Creek,Rd,4300066,0.6,2.072,0,35.337175,3.7,5 +31044,0,1.080695,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,25.936684,0.15,4 +8651,0,2.022525,1,1,0,2,4,,5,6,Samaria,Rd,1226710,3.043,5.065,0,48.540607,3,4 +8813,0,1.752283,1,1,0,2,4,,5,6,Ida West,Rd,1223706,3.544,5.295,0,42.054797,3,4 +8823,0,1.231433,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,7.219,8.45,0,29.554381,3.7,5 +8833,0,0.558621,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,11.869,12.428,0,13.406909,4.5,4.5 +8859,0,0.526635,1,1,0,2,4,,4,6,Sterns,Rd,1223310,7.158,7.685,0,12.639235,4.5,4.5 +9250,0,0.47534,1,1,0,2,4,,4,6,Smith,Rd,1232401,2.127,2.602,0,11.408149,4.5,4.5 +9265,0,1.023674,1,1,0,2,5,,5,6,Temperance,Rd,1232206,3.513,4.536,0,24.568179,3.7,5 +31058,0,1.961633,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,47.079183,0.15,4 +31087,0,0.516285,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.390849,0.15,4 +31130,0,0.499429,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.986296,0.15,4 +34010,0,0.619119,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,14.858854,0.15,4 +8434,0,1.090868,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,7.683,8.774,0,26.180823,3.7,5 +8443,0,1.668185,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,0,1.668,0,40.036434,3,4 +8555,0,0.969018,1,1,0,2,5,,5,6,Yankee,Rd,1223403,0,0.969,0,23.25643,3.7,5 +8828,0,2.01455,1,1,0,2,6,,5,6,Ida Center,Rd,1223704,0,2.014,0,48.349199,5.8,6 +9089,0,0.893566,1,1,0,2,6,,5,6,Ottawa Lake,Rd,1223306,0,0.893,0,21.445589,5.8,6 +9093,0,1.022014,1,1,0,2,6,,5,6,Secor,Rd,1223604,5.451,6.472,0,24.528348,5.8,6 +9135,0,1.749184,1,1,0,2,3,,5,6,US 223,,1223208,0.343,2.092,0,41.980419,1.7,4 +9136,1,3.144687,2,0,0,1,2,,5,6,N US 23,,1223505,5.358,8.501,0,,1.02,7 +9151,-1,3.313147,0,2,0,1,2,,5,6,S US 23,,1223504,5.329,8.641,0,,1.02,7 +9176,0,1.691573,1,1,0,2,6,,5,6,Syl Petersburg,Rd,1223410,3.486,5.177,0,40.597755,5.8,6 +9232,0,2.009815,1,1,0,2,4,,5,6,Deerfield,Rd,1233410,0,2.009,0,48.235554,3,4 +24560,0,1.618033,1,1,0,2,6,,5,6,County Line,Hwy,947305,1.68,3.297,0,38.83279,5.8,6 +31074,0,3.047337,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,73.136078,0.15,4 +34009,0,1.484242,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.621807,0.15,4 +34042,0,1.99833,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34041,0,1.671745,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34085,0,1.551726,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8954,0,0.343417,1,1,0,2,3,,5,6,US 223,,1223208,0,0.343,0,8.242012,1.7,4 +7999,0,0.994044,1,1,0,2,6,,5,6,County Line,Rd,947305,6.32,7.314,0,23.857063,5.8,6 +24561,0,1.77812,1,1,0,2,6,,5,6,County Line,Hwy,947305,3.297,5.075,0,42.674875,5.8,6 +34083,0,1.712441,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7265,0,1.246154,1,1,0,2,6,,5,6,County Line,Rd,947305,5.075,6.32,0,29.907698,5.8,6 +34043,0,0.715111,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34086,0,0.858511,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8490,0,0.595057,1,1,0,2,5,,5,6,Whiteford Center,Rd,1223508,4.068,4.663,0,14.28136,3.7,5 +40509,-1,0.038649,0,1,0,2,3,,5,6,US 223,,5493543,0,0.039,0,0.927567,1.7,4 +8681,0,1.36158,1,1,0,2,5,,5,6,Clark,Rd,1223309,0,1.361,0,32.677915,3.7,5 +8707,1,0.197691,1,0,0,1,2,ROF,5,6,N US 23/Sterns,RAMP,1223906,0,0.198,0,,2.24,5 +8871,1,0.145896,1,0,0,1,2,RON,5,6,Sterns/S US 23,RAMP,1223605,0,0.146,0,,1.09,4 +8899,0,1.400873,1,1,0,2,4,,5,6,Sterns,Rd,1223310,3.669,5.07,0,33.620956,3,4 +8917,1,0.350196,2,0,0,1,2,,5,6,N US 23,,1223505,1.288,1.638,0,,1.02,7 +8945,-1,0.33956,0,2,0,1,2,,5,6,S US 23,,1223504,1.338,1.677,0,,1.02,7 +9067,0,1.073647,1,1,0,2,5,,5,6,Sterns,Rd,1223310,2.013,3.086,0,25.767526,3.7,5 +9082,0,0.964715,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.633,2.597,0,23.153163,3.7,5 +9103,0,0.708858,1,1,0,2,4,,4,6,Secor,Rd,1223604,0.737,1.445,0,17.012601,4.5,4.5 +40513,1,0.263233,1,0,0,1,2,ROF,5,6,S US 23/US 223,RAMP,1223502,0,0.263,0,,2.24,5 +9126,0,1.070647,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,2.854,3.924,0,25.695528,3,4 +40510,1,0.017789,1,0,0,1,2,ROF,5,6,S US 23/US 223,RAMP,1223502,0.263,0.281,0,,2.24,5 +9140,1,1.28886,2,0,0,1,2,,5,6,N US 23,,1223505,0,1.288,0,,1.02,7 +40511,1,0.047547,1,0,0,2,3,,5,6,US 223,,1223208,3.943,3.99,0,1.14113,1.7,4 +9169,-1,1.33852,0,2,0,1,2,,5,6,S US 23,,1223504,0,1.338,0,,1.02,7 +40507,0,0.78518,1,1,0,2,3,,5,6,US 223,,1223208,3.122,3.907,0,18.844318,1.7,4 +9266,0,0.986687,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1232105,0,0.986,0,23.680478,3.7,5 +20777,0,1.51703,1,1,0,2,5,,5,6,Whiteford,Rd,4301685,0,1.516,0,36.408717,3.7,5 +31084,0,0.734969,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,17.639261,0.15,4 +8678,0,0.749268,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,4.408,5.157,0,17.982443,3,4 +9182,0,1.478452,1,1,0,2,5,,5,6,Yankee,Rd,1223403,0.969,2.447,0,35.482844,3.7,5 +34039,0,1.148907,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34040,0,1.193599,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34084,0,0.994038,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9268,0,0.483625,1,1,0,2,5,,5,6,Clark,Rd,1232018,0.5,0.984,0,11.607011,3.7,5 +9269,0,0.500621,1,1,0,2,5,,5,6,Clark,Rd,1232018,0,0.5,0,12.014899,3.7,5 +9184,0,0.122922,1,1,0,2,5,,5,6,Lynch,Rd,1223402,0.965,1.088,0,2.95012,3.7,5 +8776,0,0.294876,1,1,0,2,5,,5,6,Sterns,Rd,1223310,1.718,2.013,0,7.077028,3.7,5 +9004,0,0.483327,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,3.924,4.408,0,11.599858,3,4 +8966,0,0.387454,1,1,0,2,5,,5,6,Head O Lake,Rd,1223401,0,0.387,0,9.298885,3.7,5 +8553,0,0.8343,1,1,0,2,7,,5,6,Yankee,Rd,1223403,2.447,3.281,0,20.023201,5.8,6 +8815,0,0.583657,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,5.157,5.74,0,14.007767,3,4 +9267,0,0.502001,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1232104,0,0.502,0,12.048014,3.7,5 +9179,0,0.047031,1,1,0,2,5,,5,6,Yankee,Rd,1223403,3.281,3.328,0,1.128735,3.7,5 +8465,0,1.055562,1,1,0,2,6,,5,6,Consear,Rd,1223608,0,1.055,0,25.333483,5.8,6 +8509,1,1.689522,2,0,0,1,2,,5,6,N US 23,,1223505,3.129,4.818,0,,1.02,7 +8529,-1,1.700263,0,2,0,1,2,,5,6,S US 23,,1223504,3.19,4.89,0,,1.02,7 +9059,0,1.030924,1,1,0,2,3,,5,6,US 223,,1223208,2.092,3.122,0,24.742169,1.7,4 +9177,0,1.109803,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1223410,1.494,2.604,0,26.635274,3.7,5 +31069,0,1.526079,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.625886,0.15,4 +31080,0,1.352414,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,32.457928,0.15,4 +8556,0,0.491208,1,1,0,2,6,,5,6,Head O Lake,Rd,1223401,1.404,1.895,0,11.788986,5.8,6 +8977,0,0.303958,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,2.386,2.69,0,7.295,3,4 +9180,0,1.03965,1,1,0,2,6,,5,6,Beck,Rd,1223308,0,1.039,0,24.951593,5.8,6 +31071,0,1.097894,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,26.349446,0.15,4 +8424,0,0.164017,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,2.69,2.854,0,3.936414,3,4 +8441,0,0.719187,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,1.668,2.386,0,17.260481,3,4 +31072,0,0.474532,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.388769,0.15,4 +8551,0,1.494757,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1223410,0,1.494,0,35.874158,3.7,5 +9139,1,1.152438,2,0,0,1,2,,5,6,N US 23,,1223505,1.638,2.79,0,,1.02,7 +9168,-1,1.153603,0,2,0,1,2,,5,6,S US 23,,1223504,1.677,2.831,0,,1.02,7 +8648,0,0.218982,1,1,0,2,5,,5,6,Sterns,Rd,1223310,3.336,3.555,0,5.255562,3.7,5 +8699,0,0.249942,1,1,0,2,5,,5,6,Sterns,Rd,1223310,3.086,3.336,0,5.99862,3.7,5 +8880,1,0.16538,1,0,0,1,2,RON,5,6,Sterns/N US 23,RAMP,1223907,0,0.165,0,,1.09,4 +9097,0,0.114808,1,1,0,2,4,,5,6,Sterns,Rd,1223310,3.555,3.669,0,2.755401,3,4 +9088,1,0.21001,1,0,0,1,2,ROF,5,6,S US 23/Sterns,RAMP,1223606,0,0.21,0,,2.24,5 +8462,1,0.237587,1,0,0,1,2,ROF,5,6,S US 23/Consear,RAMP,1223609,0,0.238,0,,2.24,5 +8877,1,0.155278,1,0,0,1,2,RON,5,6,Consear/N US 23,RAMP,1223909,0,0.155,0,,1.09,4 +8915,1,0.339143,2,0,0,1,2,,5,6,N US 23,,1223505,2.79,3.129,0,,1.02,7 +8944,-1,0.359748,0,2,0,1,2,,5,6,S US 23,,1223504,2.831,3.19,0,,1.02,7 +9087,0,0.41808,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.055,1.473,0,10.033919,3.7,5 +8704,1,0.197769,1,0,0,1,2,ROF,5,6,N US 23/Consear,RAMP,1223908,0,0.198,0,,2.24,5 +8865,1,0.15509,1,0,0,1,2,RON,5,6,Consear/S US 23,RAMP,1223607,0,0.155,0,,1.09,4 +8863,0,0.110741,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.522,1.633,0,2.657793,3.7,5 +9085,0,0.04886,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.473,1.522,0,1.172629,3.7,5 +8550,0,0.882956,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1223410,2.604,3.486,0,21.190946,3.7,5 +40524,1,0.539683,2,0,0,1,2,,5,6,N US 23,,1223505,4.818,5.358,0,,1.02,7 +40512,-1,0.044515,0,1,0,2,3,,5,6,US 223,,5493543,0.039,0.083,0,1.068363,1.7,4 +34034,0,1.230496,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34035,0,1.315217,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34036,0,1.303967,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34037,1,1.179177,2,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34038,-1,1.178843,0,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34082,0,1.220677,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +20716,0,0.018047,1,1,0,2,5,,5,6,Whiteford,Rd,4302329,0,0.018,0,0.433133,3.7,5 +8484,0,0.45385,1,1,0,2,4,,4,6,Secor,Rd,1223604,0,0.454,0,10.892397,4.5,4.5 +8887,0,0.599579,1,1,0,2,5,,4,6,Whiteford Center,Rd,1223508,5.42,6.019,0,14.389907,5.8,4.5 +9105,0,0.25371,1,1,0,2,5,,4,6,Whiteford Center,Rd,1223508,5.166,5.42,0,6.08904,5.8,4.5 +9251,0,0.589706,1,1,0,2,7,,4,6,Cloverlane,Rd,1232316,0,0.59,0,14.152946,6.55,4.5 +31085,0,0.614607,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.750567,0.15,4 +9110,0,0.50347,1,1,0,2,5,,4,6,Whiteford Center,Rd,1223508,4.663,5.166,0,12.083269,5.8,4.5 +9104,0,0.283105,1,1,0,2,4,,4,6,Secor,Rd,1223604,0.454,0.737,0,6.794519,4.5,4.5 +31082,0,0.545757,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,13.098174,0.15,4 +31083,0,0.27256,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.541439,0.15,4 +8182,0,0.42492,1,1,0,2,4,,5,6,Sterns,Rd,1223310,5.278,5.703,0,10.198072,3,4 +8463,0,1.615133,1,1,0,2,5,,5,6,Consear,Rd,1223608,2.783,4.397,0,38.76319,3.7,5 +8549,0,0.968187,1,1,0,2,4,,5,6,Saint Anthony,Rd,1223208,5.095,6.063,0,23.236489,3,4 +9055,0,1.532181,1,1,0,2,4,,5,6,Summerfield,Rd,1223702,8.774,10.305,0,36.772342,3,4 +9098,0,1.322995,1,1,0,2,5,,5,6,Secor,Rd,1223604,3.446,4.769,0,31.75189,3.7,5 +9111,0,1.527,1,1,0,2,6,,5,6,Whiteford Center,Rd,1223508,2.542,4.068,0,36.648007,5.8,6 +31065,0,1.590129,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,38.163088,0.15,4 +31081,0,1.662535,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,39.900845,0.15,4 +8491,0,0.312919,1,1,0,2,6,,5,6,Whiteford Center,Rd,1223508,2.229,2.542,0,7.510051,5.8,6 +8861,0,0.185654,1,1,0,2,5,,5,6,Consear,Rd,1223608,2.597,2.783,0,4.455693,3.7,5 +31086,0,1.213111,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,29.114662,0.15,4 +8967,0,0.208589,1,1,0,2,4,,5,6,Sterns,Rd,1223310,5.07,5.278,0,5.006145,3,4 +31088,0,0.20462,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.910877,0.15,4 +40514,1,0.20136,1,0,0,1,2,RON,5,6,US 223/S US 23,RAMP,1223503,0,0.201,0,,1.09,4 +31079,0,0.3577,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.584805,0.15,4 +40508,1,0.035505,1,0,0,2,3,,5,6,US 223,,1223208,3.907,3.943,0,0.852119,1.7,4 +8835,0,0.165998,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,10.856,11.022,0,3.983947,4.5,4.5 +8854,0,0.818537,1,1,0,2,4,,4,6,Sterns,Rd,1223310,5.703,6.521,0,19.644892,4.5,4.5 +8876,0,0.198424,1,1,0,2,5,,4,6,Secor,Rd,1223604,2.252,2.45,0,4.762183,5.8,4.5 +9043,0,0.525313,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,11.022,11.547,0,12.607512,4.5,4.5 +9078,0,0.722395,1,1,0,2,5,,4,6,Consear,Rd,1223608,4.397,5.119,0,17.33747,5.8,4.5 +31090,0,0.629247,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,15.101933,0.15,4 +9046,0,0.550609,1,1,0,2,4,,5,6,Summerfield,Rd,1223702,10.305,10.856,0,13.214624,3,4 +8451,0,0.133092,1,1,0,2,4,,4,6,Sterns,Rd,1223310,6.521,6.654,0,3.194201,4.5,4.5 +8883,0,0.730195,1,1,0,2,4,,4,6,Secor,Rd,1223604,1.445,2.175,0,17.524668,4.5,4.5 +31091,0,0.753072,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,18.073723,0.15,4 +31092,0,0.255163,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.123919,0.15,4 +9101,0,0.076904,1,1,0,2,4,,4,6,Secor,Rd,1223604,2.175,2.252,0,1.845688,4.5,4.5 +9099,0,0.352278,1,1,0,2,5,,5,6,Secor,Rd,1223604,2.947,3.299,0,8.45467,3.7,5 +8476,0,0.09647,1,1,0,2,5,,4,6,Secor,Rd,1223604,2.851,2.947,0,2.31529,5.8,4.5 +8475,0,0.146958,1,1,0,2,5,,5,6,Secor,Rd,1223604,3.299,3.446,0,3.526998,3.7,5 +8561,0,0.697408,1,1,0,2,4,,5,6,Saint Anthony,Rd,1223208,6.063,6.76,0,16.7378,3,4 +8872,0,0.501584,1,1,0,2,4,,5,6,Secor,Rd,1223604,4.949,5.451,0,12.038006,3,4 +9191,0,0.422692,1,1,0,2,4,,5,6,Saint Anthony,Rd,1223208,6.76,7.183,0,10.144604,3,4 +31066,0,0.360691,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.656583,0.15,4 +9095,0,0.180779,1,1,0,2,5,,5,6,Secor,Rd,1223604,4.769,4.949,0,4.338698,3.7,5 +31068,0,0.100625,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,2.415003,0.15,4 +8507,1,4.164953,2,0,0,1,2,,5,6,N US 23,,1223505,8.832,12.995,0,,1.02,7 +8526,-1,4.11025,0,2,0,1,2,,5,6,S US 23,,1223504,8.961,13.07,0,,1.02,7 +8825,0,1.181509,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,3.058,4.239,0,28.356205,3.7,5 +9018,0,0.839432,1,1,0,2,4,,5,6,Ida West,Rd,1223706,0,0.839,0,20.146378,3,4 +9064,0,1.014898,1,1,0,2,6,,5,6,Summerfield,Rd,1223702,2.923,3.937,0,24.357551,5.8,6 +9205,0,1.174133,1,1,0,2,5,,5,6,Teal,Rd,1233710,1.802,2.975,0,28.179193,3.7,5 +9235,0,1.826022,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1233205,3.028,4.853,0,43.824534,3.7,5 +25900,0,1.564354,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,37.544489,0.15,4 +31078,0,2.061293,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,49.471035,0.15,4 +31093,0,2.004842,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,48.116215,0.15,4 +31095,0,1.367299,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,32.815184,0.15,4 +34008,0,2.085588,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,50.054123,0.15,4 +9035,0,1.044899,1,1,0,2,6,,5,6,Ida Center,Rd,1223704,2.014,3.058,0,25.077584,5.8,6 +9236,0,1.717081,1,1,0,2,6,,5,6,Syl Petersburg,Rd,1233205,1.312,3.028,0,41.209946,5.8,6 +9237,0,1.085835,1,1,0,2,6,,5,6,Syl Petersburg,Rd,1233205,0.226,1.312,0,26.060028,5.8,6 +20285,0,0.246608,1,1,0,2,6,,5,6,Sylvania Petersburg/Goetz Cut,,4302049,0,0.247,0,5.918595,5.8,6 +31075,0,0.192847,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.62832,0.15,4 +9224,0,0.912218,1,1,0,2,4,,5,6,Deerfield,Rd,1233410,2.009,2.921,0,21.893223,3,4 +10426,0,1.893616,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,0,1.893,0,45.446783,3.7,5 +31076,0,0.715171,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,17.164101,0.15,4 +9206,0,1.031342,1,1,0,2,5,,5,6,Teal,Rd,1233710,0.771,1.802,0,24.752217,3.7,5 +9207,0,0.185061,1,1,0,2,5,,5,6,Teal,Rd,1233710,0.586,0.771,0,4.441455,3.7,5 +10441,0,0.640145,1,1,0,2,4,,5,6,Ida West,Rd,1234503,0.458,1.098,0,15.363487,3,4 +9208,0,0.391004,1,1,0,2,5,,4,6,Saline,St,1233710,0.195,0.586,0,9.3841,5.8,4.5 +9212,0,0.182488,1,1,0,2,4,,4,6,Center,St,1233709,0.12,0.303,0,4.379721,4.5,4.5 +10215,0,0.329136,1,1,0,2,4,,4,6,Division,St,1234503,0.129,0.458,0,7.899261,4.5,4.5 +31099,0,0.087509,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.100224,0.15,4 +9209,0,0.130581,1,1,0,2,5,,4,6,Saline,St,1233710,0.064,0.195,0,3.133943,5.8,4.5 +9210,0,0.064295,1,1,0,2,4,,4,6,Saline,St,1233710,0,0.064,0,1.54307,4.5,4.5 +31098,0,0.351489,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,8.435738,0.15,4 +31097,0,0.159444,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.826663,0.15,4 +9211,0,0.057924,1,1,0,2,4,,4,6,Center,St,1233709,0.303,0.361,0,1.390183,4.5,4.5 +8701,1,0.187648,1,0,0,1,2,ROF,5,6,N US 23/Summerfield,RAMP,1224002,0,0.188,0,,2.24,5 +8842,0,2.283892,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,5.4,7.683,0,54.8134,3.7,5 +8914,1,0.330602,2,0,0,1,2,,5,6,N US 23,,1223505,8.501,8.832,0,,1.02,7 +9026,0,2.146563,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,5.073,7.219,0,51.517502,3.7,5 +9233,0,1.749466,1,1,0,2,6,,5,6,Secor,Rd,1233210,1.239,2.988,0,41.987183,5.8,6 +8824,0,0.388722,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,4.685,5.073,0,9.329319,3.7,5 +8846,0,0.885235,1,1,0,2,6,,5,6,Summerfield,Rd,1223702,3.937,4.822,0,21.245649,5.8,6 +10444,0,1.270492,1,1,0,2,5,,5,6,Teal,Rd,1233710,2.975,4.245,0,30.491801,3.7,5 +9033,0,0.445462,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,4.239,4.685,0,10.691093,3.7,5 +8435,0,0.128859,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,4.822,4.951,0,3.092605,3.7,5 +9062,0,0.335857,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,4.951,5.287,0,8.060575,3.7,5 +8875,1,0.15291,1,0,0,1,2,RON,5,6,Summerfield/N US 23,RAMP,1224003,0,0.153,0,,1.09,4 +8935,-1,0.319885,0,2,0,1,2,,5,6,S US 23,,1223504,8.641,8.961,0,,1.02,7 +9037,1,0.167862,1,0,0,1,2,ROF,5,6,S US 23/Summerfield,RAMP,1223703,0,0.168,0,,2.24,5 +9061,0,0.1138,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,5.287,5.4,0,2.731211,3.7,5 +9077,1,0.161982,1,0,0,1,2,RON,5,6,Summerfield/S US 23,RAMP,1223701,0,0.162,0,,1.09,4 +9234,0,1.23973,1,1,0,2,6,,5,6,Secor,Rd,1233210,0,1.239,0,29.753509,5.8,6 +9270,0,0.025994,1,1,0,2,6,,5,6,Rauch,Rd,1232010,7.158,7.184,0,0.623845,5.8,6 +8447,0,0.878863,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,0.036,0.915,0,21.092704,3.7,5 +8873,1,0.149526,1,0,0,1,2,RON,5,6,Ida West/N US 23,RAMP,1224005,0,0.15,0,,1.09,4 +9008,1,0.148995,1,0,0,1,2,ROF,5,6,S US 23/Ida West,RAMP,1223707,0,0.149,0,,2.24,5 +9013,0,1.746737,1,1,0,2,4,,5,6,Ida West,Rd,1223706,1.798,3.544,0,41.921677,3,4 +9132,1,0.320355,2,0,0,1,2,,5,6,N US 23,,1223505,12.995,13.315,0,,1.02,7 +9150,-1,0.290077,0,2,0,1,2,,5,6,S US 23,,1223504,13.07,13.36,0,,1.02,7 +10430,0,1.139465,1,1,0,2,7,,5,6,Dixon,Rd,1234503,3.592,4.731,0,27.347168,5.8,6 +31032,0,1.423596,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,34.166293,0.15,4 +8819,0,0.419339,1,1,0,2,4,,5,6,Ida West,Rd,1223706,0.839,1.258,0,10.064135,3,4 +9069,0,2.008468,1,1,0,2,6,,5,6,Summerfield,Rd,1223702,0.915,2.923,0,48.203236,5.8,6 +31096,0,1.090162,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,26.163892,0.15,4 +31094,0,1.025076,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.601828,0.15,4 +9016,0,0.429143,1,1,0,2,4,,5,6,Ida West,Rd,1223706,1.258,1.687,0,10.29942,3,4 +8700,1,0.185639,1,0,0,1,2,ROF,5,6,N US 23/Ida West,RAMP,1224004,0,0.186,0,,2.24,5 +8816,0,0.110431,1,1,0,2,4,,5,6,Ida West,Rd,1223706,1.687,1.798,0,2.650356,3,4 +8820,1,0.157887,1,0,0,1,2,RON,5,6,Ida West/S US 23,RAMP,1223705,0,0.158,0,,1.09,4 +9127,1,2.000411,2,0,0,1,2,,5,6,N US 23,,1223505,13.315,15.315,0,,1.02,7 +9149,-1,1.073457,0,2,0,1,2,,5,6,S US 23,,1223504,13.36,14.433,0,,1.02,7 +10440,0,0.280988,1,1,0,2,5,,5,6,Dixon,Rd,1234503,2.764,3.044,0,6.743702,3.7,5 +20648,0,0.085466,1,1,0,2,5,,5,6,Summerfield,Rd,4302181,0,0.085,0,2.051178,3.7,5 +8567,0,0.711827,1,1,0,2,5,,5,6,Lloyd,Rd,1225909,0,0.712,0,17.083845,3.7,5 +10438,0,0.264664,1,1,0,2,5,,5,6,Dixon,Rd,1234503,3.044,3.309,0,6.351943,3.7,5 +10431,0,0.282985,1,1,0,2,5,,5,6,Dixon,Rd,1234503,3.309,3.592,0,6.791631,3.7,5 +8810,1,0.129603,2,0,0,1,2,RON,5,6,Dixon/S US 23,RAMP,1223708,0,0.13,0,,1.09,4 +8697,1,0.11095,1,0,0,1,2,ROF,5,6,N US 23/Lloyd,RAMP,1224007,0,0.111,0,,2.24,5 +31033,0,1.128393,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.081433,0.15,4 +8513,0,0.572522,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,9.688,10.26,0,13.74052,3,4 +8703,1,0.418011,1,0,0,1,1,ROF,5,6,S I 75/Luna Pier,RAMP,1226908,0,0.418,0,,2.24,5 +8787,0,1.303926,1,1,0,2,4,,5,6,Custer,Rd,1223803,13.504,14.807,0,31.294218,3,4 +8821,0,2.073182,1,1,0,2,5,,5,6,Yargerville,Rd,1223704,14.024,16.096,0,49.756365,3.7,5 +8879,0,0.536793,1,1,0,2,5,,5,6,Strasburg,Rd,1226809,9.575,10.112,0,12.883028,3.7,5 +8900,0,0.535747,1,1,0,2,5,,5,6,Lewis,Ave,1226808,5.421,5.956,0,12.857932,3.7,5 +9145,0,3.021956,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,1.069,4.09,0,72.526937,5.8,6 +9194,0,0.737393,1,1,0,2,4,,5,6,Sterns,Rd,1223310,13.448,14.185,0,17.697421,3,4 +9256,0,0.277353,1,1,0,2,6,,5,6,Erie,Rd,1232207,10.118,10.395,0,6.656461,5.8,6 +9405,0,0.527454,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.876,6.404,0,12.658895,3,4 +9409,0,0.648319,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,4.716,5.364,0,15.559662,3,4 +9415,1,0.310255,1,0,0,1,1,RON,5,6,Luna Pier/N I 75,RAMP,1227002,0,0.31,0,,1.09,4 +9437,1,0.643394,3,0,0,1,1,,5,6,N I 75,,1226910,5.491,6.134,0,,1.02,7 +9462,-1,0.613225,0,3,0,1,1,,5,6,S I 75,,1226909,5.484,6.097,0,,1.02,7 +9941,0,0.898451,1,1,0,2,5,,5,6,Harold,Dr,1240702,0.708,1.606,0,21.562835,3.7,5 +10367,0,1.408938,1,1,0,2,4,,5,6,Dunbar,Rd,1234601,8.296,9.704,0,33.814519,3,4 +20329,1,1.865267,2,0,0,2,3,DIV,5,6,Telegraph,Rd,4300001,6.863,8.727,0,44.766403,1.7,4 +20522,0,0.7552,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,6.108,6.863,0,18.124799,1.7,4 +20705,-1,1.898098,0,2,0,2,3,DIV,5,6,Telegraph,Rd,4300061,0,1.897,0,45.554349,1.7,4 +31109,0,1.277972,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,30.671333,0.15,4 +31115,0,0.993909,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,23.853817,0.15,4 +31122,0,0.507127,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.171039,0.15,4 +34028,0,1.596503,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8466,0,0.409956,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0.893,1.303,0,9.838938,4.5,4.5 +8563,0,0.997306,1,1,0,2,4,,5,6,Samaria,Rd,1226710,6.066,7.063,0,23.935332,3,4 +8831,0,0.592202,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,12.99,13.582,0,14.212848,4.5,4.5 +8848,0,0.529613,2,2,1,2,4,,4,6,Lewis,Ave,1226808,0.905,1.435,0,12.710711,4.5,4.5 +8971,0,1.002375,1,1,0,2,4,,4,6,Sterns,Rd,1223310,10.151,11.153,0,24.056997,4.5,4.5 +9242,0,0.936053,1,1,0,2,4,,4,6,Smith,Rd,1232401,5.119,6.055,0,22.465274,4.5,4.5 +9260,0,1.007852,1,1,0,2,5,,5,6,Temperance,Rd,1232206,6.51,7.517,0,24.188447,3.7,5 +9413,0,1.104889,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,0.331,1.435,0,26.517328,3,4 +19880,0,0.832184,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,0.819,1.651,0,19.972425,3.7,5 +20872,0,0.66172,1,1,0,2,4,,4,6,Jackman,Rd,4300008,0.327,0.988,0,15.881284,4.5,4.5 +31053,0,0.71783,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,17.22791,0.15,4 +31054,0,0.716118,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,17.18684,0.15,4 +31056,0,0.720629,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,17.295093,0.15,4 +31124,0,0.718373,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,17.240943,0.15,4 +31132,0,1.009493,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.227843,0.15,4 +31137,0,1.022914,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.549932,0.15,4 +34004,0,0.777965,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,18.671154,0.15,4 +9247,0,0.492168,1,1,0,2,4,,4,6,Smith,Rd,1232401,3.624,4.116,0,11.812034,4.5,4.5 +31128,0,0.499401,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.985623,0.15,4 +34031,0,1.335442,2,2,1,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34032,0,1.228174,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34033,0,1.198888,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8689,0,0.44594,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0,0.446,0,10.70256,4.5,4.5 +9249,0,0.521747,1,1,0,2,4,,4,6,Smith,Rd,1232401,2.602,3.124,0,12.521916,4.5,4.5 +31051,0,0.495924,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.902187,0.15,4 +31052,0,0.270944,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.502662,0.15,4 +8497,0,0.296329,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0.446,0.742,0,7.111907,4.5,4.5 +9039,0,0.586904,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,13.582,14.169,0,14.085689,4.5,4.5 +9248,0,0.500617,1,1,0,2,4,,4,6,Smith,Rd,1232401,3.124,3.624,0,12.014802,4.5,4.5 +31129,0,0.185867,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,4.460814,0.15,4 +8657,0,0.150788,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0.742,0.893,0,3.61892,4.5,4.5 +8829,0,0.111506,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,14.169,14.28,0,2.676133,4.5,4.5 +8442,0,0.440447,2,2,1,2,4,,4,6,Lewis,Ave,1226808,0,0.44,0,10.570729,4.5,4.5 +9243,0,0.421142,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.698,5.119,0,10.107418,4.5,4.5 +20528,0,0.405328,1,1,0,2,4,,4,6,Jackman,Rd,4301658,0.04,0.445,0,9.727875,4.5,4.5 +31126,0,0.524483,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.587583,0.15,4 +9244,0,0.534861,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.164,4.698,0,12.83666,4.5,4.5 +20177,0,0.326995,1,1,0,2,4,,4,6,Jackman,Rd,4300008,0,0.327,0,7.847888,4.5,4.5 +31127,0,0.284438,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.826519,0.15,4 +34007,0,0.505206,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.124941,0.15,4 +9245,0,0.036658,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.127,4.164,0,0.879804,4.5,4.5 +20474,-1,0.056235,0,1,0,2,4,,4,6,Smith/Jackman Cutoff,,4302030,0,0.056,0,1.349647,4.5,4.5 +20776,0,0.040237,1,1,0,2,4,,4,6,Jackman,Rd,4301658,0,0.04,0,0.965689,4.5,4.5 +9246,0,0.01066,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.116,4.127,0,0.255837,4.5,4.5 +9066,0,0.464924,2,2,1,2,4,,4,6,Lewis,Ave,1226808,0.44,0.905,0,11.158182,4.5,4.5 +8453,0,0.500806,1,1,0,2,4,,4,6,Lewis,Ave,1226808,2.927,3.428,0,12.019353,4.5,4.5 +9197,0,0.544906,1,1,0,2,4,,4,6,Sterns,Rd,1223310,8.633,9.178,0,13.077744,4.5,4.5 +9261,0,0.539322,1,1,0,2,5,,4,6,Temperance,Rd,1232206,5.97,6.51,0,12.943723,5.8,4.5 +9264,0,0.21332,1,1,0,2,5,,5,6,Temperance,Rd,1232206,5.185,5.398,0,5.119674,3.7,5 +31134,0,0.514659,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.351819,0.15,4 +31141,0,0.517839,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.428133,0.15,4 +31146,0,0.520849,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.500374,0.15,4 +9166,0,0.226113,1,1,0,2,4,,4,6,Sterns,Rd,1223310,7.928,8.154,0,5.426722,4.5,4.5 +9040,0,0.562471,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,12.428,12.99,0,13.499293,4.5,4.5 +31055,0,0.124536,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.988858,0.15,4 +9152,0,0.243529,1,1,0,2,4,,4,6,Sterns,Rd,1223310,7.685,7.928,0,5.844701,4.5,4.5 +8183,0,0.479222,1,1,0,2,4,,4,6,Sterns,Rd,1223310,8.154,8.633,0,11.50132,4.5,4.5 +31135,0,0.499152,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.979643,0.15,4 +8642,0,0.135599,1,1,0,2,4,,4,6,Douglas,Rd,1226801,1.303,1.438,0,3.254365,4.5,4.5 +31145,0,0.522958,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.550986,0.15,4 +8733,0,0.466287,2,2,1,2,4,,4,6,Lewis,Ave,1226808,1.965,2.431,0,11.190882,4.5,4.5 +9196,0,0.534647,1,1,0,2,4,,4,6,Sterns,Rd,1223310,9.617,10.151,0,12.831528,4.5,4.5 +20419,0,0.434547,1,1,0,2,5,,4,6,Jackman,Rd,4300008,1.548,1.982,0,10.42913,5.8,4.5 +31143,0,0.488084,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.714023,0.15,4 +31147,0,0.487032,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.688767,0.15,4 +8973,0,0.439023,1,1,0,2,4,,4,6,Sterns,Rd,1223310,9.178,9.617,0,10.536554,4.5,4.5 +20637,0,0.559428,1,1,0,2,5,,4,6,Jackman,Rd,4300008,0.988,1.548,0,13.42628,5.8,4.5 +31136,0,0.491473,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.79534,0.15,4 +31148,0,0.499986,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.999676,0.15,4 +9262,0,0.435927,1,1,0,2,5,,4,6,Temperance,Rd,1232206,5.535,5.97,0,10.46225,5.8,4.5 +20232,0,0.631782,1,1,0,2,5,,4,6,Jackman,Rd,4300008,2.35,2.981,0,15.162769,5.8,4.5 +9263,0,0.136753,1,1,0,2,5,,5,6,Temperance,Rd,1232206,5.398,5.535,0,3.282065,3.7,5 +31144,0,0.50172,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.04127,0.15,4 +8924,0,0.530426,2,2,1,2,4,,4,6,Lewis,Ave,1226808,1.435,1.965,0,12.730235,4.5,4.5 +9185,0,0.413229,1,1,0,2,4,,4,6,Lewis,Ave,1226808,2.514,2.927,0,9.917498,4.5,4.5 +8558,0,0.083417,1,1,0,2,4,,4,6,Lewis,Ave,1226808,2.431,2.514,0,2.001997,4.5,4.5 +8735,0,1.001374,1,1,0,2,4,,5,6,Samaria,Rd,1226710,5.065,6.066,0,24.032973,3,4 +8743,0,0.760867,1,1,0,2,4,,5,6,Lewis,Ave,1226808,3.977,4.737,0,18.260811,3,4 +31139,0,1.01141,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.273834,0.15,4 +31140,0,0.990977,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,23.783445,0.15,4 +31138,0,0.498184,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.956409,0.15,4 +9075,0,0.549111,1,1,0,2,4,,5,6,Lewis,Ave,1226808,3.428,3.977,0,13.178653,3,4 +8575,0,0.68364,1,1,0,2,4,,5,6,Lewis,Ave,1226808,4.737,5.421,0,16.407356,3,4 +34029,0,1.405816,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34030,0,1.304565,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9240,0,0.975547,1,1,0,2,5,,4,6,La Voy,Rd,1232401,6.116,7.091,0,23.41313,5.8,4.5 +20229,0,0.391632,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,0.428,0.819,0,9.399179,3.7,5 +31125,0,0.279335,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.704039,0.15,4 +20416,0,0.427862,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,0,0.428,0,10.268678,3.7,5 +9241,0,0.060637,1,1,0,2,4,,4,6,Smith,Rd,1232401,6.055,6.116,0,1.455293,4.5,4.5 +31123,0,0.255047,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.121125,0.15,4 +9414,0,0.27388,1,1,0,2,4,,4,6,Dixie,Hwy,1227004,0.057,0.331,0,6.573123,4.5,4.5 +8732,0,2.013543,1,1,0,2,4,,5,6,Lakeside,Rd,1226710,7.063,9.075,0,48.325029,3,4 +8969,0,0.633538,1,1,0,2,4,,4,6,Sterns,Rd,1223310,11.938,12.571,0,15.204914,4.5,4.5 +9259,0,1.710684,1,1,0,2,5,,5,6,Temperance,Rd,1232206,7.517,9.227,0,41.056415,3.7,5 +9411,0,1.530566,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,2.103,3.633,0,36.733572,3,4 +20466,0,0.544706,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,3.3,3.845,0,13.072954,1.7,4 +20702,0,1.649881,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,1.651,3.3,0,39.597147,1.7,4 +31103,0,1.376516,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,33.036375,0.15,4 +31131,0,1.016112,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.386699,0.15,4 +9195,0,0.785067,1,1,0,2,4,,4,6,Sterns,Rd,1223310,11.153,11.938,0,18.841619,4.5,4.5 +31133,0,0.983647,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,23.607529,0.15,4 +31120,0,1.489656,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.751743,0.15,4 +31119,0,0.514531,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.348752,0.15,4 +8564,0,0.877267,1,1,0,2,4,,5,6,Sterns,Rd,1223310,12.571,13.448,0,21.054397,3,4 +31104,0,0.502493,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.059841,0.15,4 +34006,0,1.121261,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,26.910253,0.15,4 +9412,0,0.667356,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,1.435,2.103,0,16.01654,3,4 +31105,0,0.656485,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,15.755639,0.15,4 +8515,0,1.06916,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,0,1.069,0,25.659837,5.8,6 +8560,0,0.320216,1,1,0,2,4,,5,6,Lakeside,Rd,1226710,9.075,9.395,0,7.685195,3,4 +9258,0,0.137554,1,1,0,2,6,,5,6,Erie,Rd,1232207,9.401,9.538,0,3.301303,5.8,6 +20080,0,0.903206,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,4.941,5.844,0,21.67695,1.7,4 +20277,0,1.096881,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,3.845,4.941,0,26.325153,1.7,4 +31114,0,0.333767,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.010409,0.15,4 +31117,0,0.417884,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.029218,0.15,4 +9257,0,0.579644,1,1,0,2,6,,5,6,Erie,Rd,1232207,9.538,10.118,0,13.911447,5.8,6 +9410,0,1.083437,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,3.633,4.716,0,26.002484,3,4 +8708,0,0.292737,1,1,0,2,4,,5,6,Lakeside,Rd,1226710,9.395,9.688,0,7.025694,3,4 +20770,0,0.263943,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,5.844,6.108,0,6.334639,1.7,4 +8749,0,0.977077,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,5.093,6.07,0,23.449844,5.8,6 +8811,0,1.039848,1,1,0,2,4,,5,6,Ida East,Rd,1223706,6.296,7.335,0,24.956348,3,4 +8822,0,3.035163,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,10.204,13.238,0,72.843904,3.7,5 +8853,0,1.528041,1,1,0,2,5,,5,6,Lewis,Ave,1226808,9.421,10.948,0,36.672987,3.7,5 +10395,0,1.24293,1,1,0,2,5,,5,6,Dunbar,Rd,1234601,4.716,5.958,0,29.83031,3.7,5 +31028,0,1.921955,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,46.126931,0.15,4 +31062,0,1.703662,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,40.887886,0.15,4 +31108,0,0.891998,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.40795,0.15,4 +9025,0,1.754319,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,8.45,10.204,0,42.103666,3.7,5 +9073,0,1.703342,1,1,0,2,5,,5,6,Lewis,Ave,1226808,7.718,9.421,0,40.880216,3.7,5 +31057,0,1.646608,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,39.518603,0.15,4 +31059,0,1.061666,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,25.479987,0.15,4 +8715,0,1.762517,1,1,0,2,5,,5,6,Lewis,Ave,1226808,5.956,7.718,0,42.300413,3.7,5 +31121,0,1.002777,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.066636,0.15,4 +9010,0,1.000974,1,1,0,2,4,,5,6,Ida West,Rd,1223706,5.295,6.296,0,24.02338,3,4 +9174,0,1.565812,1,1,0,2,5,,5,6,Lewis,Ave,1226808,10.948,12.513,0,37.579488,3.7,5 +31060,0,1.036275,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.870598,0.15,4 +31061,0,1.551619,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,37.238866,0.15,4 +37046,0,2.079047,1,1,0,2,4,,5,8,Oak Grove,Rd,4104402,0,2.078,0,49.897133,3,4 +37029,1,0.022326,2,0,0,2,3,,3,5,Packard,St,1430704,2.852,2.874,0,0.535825,5,5 +9170,0,0.698883,1,1,0,2,5,,5,6,Lewis,Ave,1226808,13.549,14.248,0,16.773188,3.7,5 +8544,0,1.036095,1,1,0,2,5,,5,6,Lewis,Ave,1226808,12.513,13.549,0,24.866272,3.7,5 +8939,0,1.003948,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,4.09,5.093,0,24.094748,5.8,6 +9023,0,0.786553,1,1,0,2,5,,5,6,Yargerville,Rd,1223704,13.238,14.024,0,18.877263,3.7,5 +31110,0,0.77063,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,18.495111,0.15,4 +31111,0,1.409538,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,33.828901,0.15,4 +9036,0,2.342227,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,6.07,8.411,0,56.213453,5.8,6 +10369,0,1.816787,1,1,0,2,4,,5,6,Dunbar,Rd,1234601,6.479,8.296,0,43.602882,3,4 +31027,0,1.521551,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.517224,0.15,4 +31030,0,1.983113,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,47.594705,0.15,4 +10375,0,0.521408,1,1,0,2,4,,5,6,Dunbar,Rd,1234601,5.958,6.479,0,12.513794,3,4 +8905,0,0.773613,1,1,0,2,4,,5,6,Geiger,Rd,1226007,11.991,12.764,0,18.566703,3,4 +20237,0,0.064536,1,1,0,2,4,,5,6,Ida East,Rd,4301906,0,0.065,0,1.54886,3,4 +40089,1,0.03627,1,0,0,2,7,,2,5,Ann,St,4604073,0.462,0.499,0,0.870485,8.5,4.5 +39895,0,1.009589,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.230129,0.15,4 +40090,-1,0.03791,0,1,0,2,7,,2,5,Ann,St,4606154,0,0.038,0,0.909841,8.5,4.5 +31029,0,0.361081,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.665951,0.15,4 +31106,0,0.801316,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,19.23158,0.15,4 +8827,0,1.164612,1,1,0,2,5,,5,6,Strasburg,Rd,1226809,8.411,9.575,0,27.950686,3.7,5 +9239,0,1.289201,1,1,0,2,7,,5,6,Suder,Rd,1232902,0,1.289,0,30.940819,5.8,6 +9350,0,1.181336,2,2,1,2,4,,5,6,Summit,St,1227803,0,1.181,0,28.352065,3,4 +9442,1,1.778544,3,0,0,1,1,,5,6,N I 75,,1226910,0,1.778,0,,1.02,7 +9467,-1,2.098507,0,3,0,1,1,,5,6,S I 75,,1226909,0,2.098,0,,1.02,7 +34025,0,1.674445,2,2,1,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34026,1,1.594325,3,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34027,-1,1.595469,0,3,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8511,0,0.981526,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,11.1,12.081,0,23.556614,3,4 +9238,0,2.018038,1,1,0,2,7,,5,6,Suder,Rd,1232902,1.289,3.306,0,48.432907,5.8,6 +9253,0,0.225274,1,1,0,2,5,,5,6,Erie,Rd,1232207,11.798,12.024,0,5.406567,3.7,5 +9313,1,0.395925,1,0,0,1,1,ROF,5,6,S I 75/Erie,RAMP,1228201,0,0.396,0,,2.24,5 +9346,1,0.443601,1,0,0,1,1,ROF,5,6,N I 75/Erie,RAMP,1227804,0,0.444,0,,2.24,5 +9368,1,0.710237,2,0,0,2,4,DIV,5,6,Summit,St,1227206,0.62,1.33,0,17.045679,3,4 +9373,-1,0.709309,0,2,0,2,4,DIV,5,6,Summit,St,1227205,0.371,1.08,0,17.023418,3,4 +9439,1,0.550254,3,0,0,1,1,,5,6,N I 75,,1226910,4.26,4.81,0,,1.02,7 +9440,1,2.072892,3,0,0,1,1,,5,6,N I 75,,1226910,2.188,4.26,0,,1.02,7 +9464,-1,0.609857,0,3,0,1,1,,5,6,S I 75,,1226909,4.294,4.904,0,,1.02,7 +9465,-1,1.911307,0,3,0,1,1,,5,6,S I 75,,1226909,2.384,4.294,0,,1.02,7 +31149,0,2.018692,1,1,0,2,99,,,6,Centroid Connector,,0,0,0,0,48.448597,0.15,4 +9441,1,0.410434,3,0,0,1,1,,5,6,N I 75,,1226910,1.778,2.188,0,,1.02,7 +9466,-1,0.285963,0,3,0,1,1,,5,6,S I 75,,1226909,2.098,2.384,0,,1.02,7 +31101,0,0.852717,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,20.465198,0.15,4 +31150,0,1.274665,1,1,0,2,99,,,6,Centroid Connector,,0,0,0,0,30.591954,0.15,4 +33815,0,0.862061,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,20.689462,0.15,4 +9190,0,0.493914,1,1,0,2,4,,5,6,Sterns,Rd,1223310,14.185,14.679,0,11.85394,3,4 +9347,1,0.32356,1,0,0,1,1,RON,5,6,Summit/N I 75,RAMP,1227803,1.394,1.717,0,,1.09,4 +40119,0,0.500053,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.001277,0.15,4 +9348,0,0.146308,2,2,1,2,4,,5,6,Summit,St,1227803,1.247,1.394,0,3.511387,3,4 +9349,0,0.066406,2,2,1,2,4,,5,6,Summit,St,1227803,1.181,1.247,0,1.593735,3,4 +9369,1,0.620405,2,0,0,1,1,ROF,5,6,N I 75/Summit,RAMP,1227206,0,0.62,0,,2.24,5 +9374,-1,0.371105,0,2,0,1,1,RON,5,6,Summit/S I 75,RAMP,1227205,0,0.371,0,,1.09,4 +8705,0,0.840105,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,10.26,11.1,0,20.162526,3,4 +9254,0,1.394732,1,1,0,2,6,,5,6,Erie,Rd,1232207,10.404,11.798,0,33.473562,5.8,6 +9366,1,0.65779,2,0,0,2,4,DIV,5,6,Summit,St,1227206,2.335,2.992,0,15.786966,3,4 +9371,-1,0.591632,0,2,0,2,4,DIV,5,6,Summit,St,1227205,2.084,2.676,0,14.19917,3,4 +9367,1,1.004791,2,0,0,2,4,DIV,5,6,Summit,St,1227206,1.33,2.335,0,24.114982,3,4 +9372,-1,1.004485,0,2,0,2,4,DIV,5,6,Summit,St,1227205,1.08,2.084,0,24.107629,3,4 +9376,0,0.008008,1,1,0,2,7,,5,6,Temperance,Rd,1227110,0.714,0.722,0,0.192195,5.8,6 +9377,0,0.012501,1,1,0,2,7,,5,6,Temperance,Rd,1227110,0.701,0.714,0,0.300035,5.8,6 +9255,0,0.009142,1,1,0,2,6,,5,6,Erie,Rd,1232207,10.395,10.404,0,0.219418,5.8,6 +9406,0,0.443463,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.433,5.876,0,10.643115,3,4 +9370,-1,0.051348,0,2,0,2,4,DIV,5,6,Summit,St,1227205,2.676,2.727,0,1.232359,3,4 +9375,1,0.022506,1,0,0,2,4,,5,6,Dixie/Summit Cutoff,,1227204,0,0.023,0,0.540133,3,4 +9408,0,0.053024,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.364,5.417,0,1.272564,3,4 +9407,0,0.016224,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.417,5.433,0,0.389384,3,4 +9314,1,0.274186,1,0,0,1,1,RON,5,6,Erie/S I 75,RAMP,1228110,0,0.274,0,,1.09,4 +31112,0,0.25558,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,6.133917,0.15,4 +9345,1,0.172112,1,0,0,1,1,RON,5,6,Eire/N I 75,RAMP,1227805,0,0.172,0,,1.09,4 +9956,0,0.161205,1,1,0,2,5,,5,6,Harold,Dr,1240702,0.547,0.708,0,3.868912,3.7,5 +20529,0,0.692321,1,1,0,2,5,,5,6,Erie,Rd,4301690,0,0.692,0,16.615698,3.7,5 +31102,0,0.81536,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,19.568647,0.15,4 +9252,0,0.144804,1,1,0,2,5,,5,6,Erie,Rd,1232207,12.024,12.168,0,3.475299,3.7,5 +8690,0,0.251563,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,12.081,12.333,0,6.037516,3,4 +9416,1,0.388394,1,0,0,1,1,ROF,5,6,N I 75/Luna Pier,RAMP,1227001,0,0.388,0,,2.24,5 +9438,1,0.680968,3,0,0,1,1,,5,6,N I 75,,1226910,4.81,5.491,0,,1.02,7 +9463,-1,0.580324,0,3,0,1,1,,5,6,S I 75,,1226909,4.904,5.484,0,,1.02,7 +20188,1,0.255967,1,0,0,1,1,RON,5,6,Luna Pier/S I 75,RAMP,4302174,0,0.256,0,,1.09,4 +8500,0,0.224618,1,1,0,2,5,,5,6,Luna Pier,Rd,1226710,12.333,12.557,0,5.390826,3.7,5 +31100,0,0.321179,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,7.708299,0.15,4 +8639,0,0.17267,1,1,0,2,6,,4,6,Patterson,Dr,1224601,0.291,0.463,0,4.144073,6.55,4.5 +8772,0,0.17051,1,1,0,2,4,,4,6,Custer,Rd,1223803,18.124,18.295,0,4.092243,4.5,4.5 +9052,0,0.627848,1,1,1,2,4,,3,6,Custer,Rd,1226001,18.942,19.57,0,15.068351,6,4.5 +9289,0,0.155623,1,1,0,2,5,,4,6,7th,St,4302993,0.617,0.773,0,3.734942,5.8,4.5 +9310,1,0.394834,1,0,0,1,1,RON,4,6,Laplaisance/S I 75,RAMP,1228206,0,0.395,0,,1.09,4 +9363,0,0.560152,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,1.667,2.227,0,13.443636,3.7,5 +9399,0,0.744345,1,1,0,2,4,,4,6,Dixie,Hwy,1227004,11.288,12.032,0,17.86428,4.5,4.5 +9400,0,0.975821,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,10.313,11.288,0,23.419704,3,4 +9432,1,0.299406,3,0,0,1,1,,4,6,N I 75,,1226910,11.237,11.536,0,,0.8,7.5 +9436,1,2.045278,3,0,0,1,1,,5,6,N I 75,,1226910,6.134,8.179,0,,1.02,7 +9458,-1,0.782315,0,3,0,1,1,,4,6,S I 75,,1226909,11.124,11.906,0,,0.8,7.5 +9461,-1,2.124131,0,3,0,1,1,,5,6,S I 75,,1226909,6.097,8.22,0,,1.02,7 +10020,0,0.235985,1,1,0,2,4,,4,6,Laplaisance,Rd,1238308,1.866,2.102,0,5.663644,4.5,4.5 +10054,0,0.977555,1,1,0,2,7,,5,6,Laplaisance,Rd,1238206,0.209,1.186,0,23.461317,5.8,6 +10320,0,0.838607,1,1,0,2,5,,4,6,Albain,Rd,1234708,1.051,1.89,0,20.126573,5.8,4.5 +10331,0,0.798228,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,11.517,12.315,0,19.157471,4.5,4.5 +19636,1,0.251853,1,0,0,1,1,RON,5,6,Laplaisance/N I 75,RAMP,1843903,0,0.252,0,,1.09,4 +20333,0,0.284061,1,1,0,2,5,,4,6,Albain,Rd,4301495,12.727,13.011,0,6.817472,5.8,4.5 +20377,0,1.476314,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,10.883,12.359,0,35.431535,3.7,5 +20774,0,0.340272,1,1,0,2,5,,4,6,Albain,Rd,4301495,11.483,11.823,0,8.166536,5.8,4.5 +20870,0,1.269631,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,12.383,13.651,0,30.471153,3.7,5 +31042,0,1.326579,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,31.837887,0.15,4 +31152,0,1.443412,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,34.641884,0.15,4 +31158,0,0.449221,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.781301,0.15,4 +31165,0,0.592551,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.221235,0.15,4 +31167,0,0.316055,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,7.585326,0.15,4 +34002,0,1.065541,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,25.572976,0.15,4 +9403,0,1.736896,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,8.303,10.039,0,41.685502,3,4 +20127,0,0.434298,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,8.727,9.162,0,10.423155,1.7,4 +20822,0,1.600812,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,9.162,10.762,0,38.419478,1.7,4 +31154,0,1.718815,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,41.251554,0.15,4 +9404,0,1.900417,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,6.404,8.303,0,45.610007,3,4 +9360,0,1.656705,1,1,0,2,7,,5,6,Laplaisance,Rd,1227304,0,1.656,0,39.760915,5.8,6 +9365,0,1.456076,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,0,1.456,0,34.945825,3.7,5 +8893,0,0.231226,1,1,0,2,7,,5,6,Otter Creek,Rd,1226306,1.741,1.972,0,5.549426,5.8,6 +20582,0,0.121079,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,10.762,10.883,0,2.905899,1.7,4 +9020,0,0.243598,1,1,0,2,5,,5,6,Otter Creek,Rd,1223704,16.096,16.34,0,5.846342,3.7,5 +9402,0,0.178107,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,10.039,10.217,0,4.274556,3,4 +9401,0,0.095242,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,10.217,10.313,0,2.285804,3,4 +31153,0,0.464735,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.153646,0.15,4 +9364,0,0.211205,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,1.456,1.667,0,5.06891,3.7,5 +10063,0,0.179947,1,1,0,2,7,,5,6,Knab,Rd,1238206,0,0.18,0,4.318731,5.8,6 +10060,0,0.028881,1,1,0,2,7,,5,6,Laplaisance,Rd,1238206,0.18,0.209,0,0.693153,5.8,6 +20883,0,0.041739,1,1,0,2,7,,5,6,Laplaisance Cutoff,,4302178,0,0.042,0,1.001725,5.8,6 +9359,0,0.031886,1,1,0,2,7,,5,6,Laplaisance,Rd,1227304,1.656,1.688,0,0.765271,5.8,6 +8786,0,0.459969,1,1,0,2,5,,4,6,Herr,Rd,1224507,0,0.46,0,11.03926,5.8,4.5 +8960,1,0.907149,2,0,0,2,4,DIV,4,6,Custer,Rd,1223803,16.208,17.115,0,21.771584,4.5,4.5 +9054,0,0.652509,2,2,0,2,4,,4,6,Custer,Rd,1226001,17.272,17.924,0,15.660225,4.5,4.5 +9283,0,1.700732,1,1,0,2,4,,4,6,Raisinville,Rd,1229704,0,1.7,0,40.817559,4.5,4.5 +10366,0,0.818131,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,9.704,10.522,0,19.635149,4.5,4.5 +20825,-1,0.906203,0,2,0,2,4,DIV,4,6,Custer,Rd,4300467,0.371,1.277,0,21.748867,4.5,4.5 +31164,0,0.68832,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.519678,0.15,4 +31173,0,0.695104,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.682485,0.15,4 +8962,0,1.03313,1,1,0,2,4,,5,6,Custer,Rd,1223803,14.807,15.84,0,24.795121,3,4 +8780,1,0.367938,2,0,0,2,4,DIV,5,6,Custer,Rd,1223803,15.84,16.208,0,8.8305,3,4 +9281,0,0.187363,1,1,0,2,4,,4,6,Raisinville,Rd,1229704,1.716,1.903,0,4.496714,4.5,4.5 +20130,-1,0.370787,0,2,0,2,4,DIV,5,6,Custer,Rd,4300467,0,0.371,0,8.898893,3,4 +9282,0,0.015924,1,1,0,2,4,,4,6,Raisinville,Rd,1229704,1.7,1.716,0,0.382179,4.5,4.5 +8433,0,0.238574,2,2,0,2,5,,5,6,Custer,Rd,1226001,17.034,17.272,0,5.725779,3.7,5 +10355,0,0.22889,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,11.288,11.517,0,5.493366,4.5,4.5 +31162,0,1.184429,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,28.4263,0.15,4 +10362,0,0.766822,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,10.522,11.288,0,18.403719,4.5,4.5 +31161,0,1.019359,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.464624,0.15,4 +20084,0,0.246425,1,1,0,2,5,,4,6,Albain,Rd,4301495,11.236,11.483,0,5.914212,5.8,4.5 +31159,0,0.324042,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,7.777017,0.15,4 +20175,0,0.023617,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,12.359,12.383,0,0.566812,3.7,5 +8432,0,1.018418,2,2,0,2,4,,4,6,Custer,Rd,1226001,17.924,18.942,0,24.442022,4.5,4.5 +8778,1,0.6174,2,0,0,2,4,DIV,4,6,Custer,Rd,1223803,17.115,17.732,0,14.81759,4.5,4.5 +20585,-1,0.619281,0,2,0,2,4,DIV,4,6,Custer,Rd,4300467,1.277,1.896,0,14.86274,4.5,4.5 +31043,0,0.7807,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,18.736808,0.15,4 +31174,0,0.807408,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,19.37779,0.15,4 +33597,0,0.883129,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,21.195103,0.15,4 +31172,0,0.570953,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,13.702868,0.15,4 +34005,0,0.604139,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.499337,0.15,4 +8643,0,0.596291,1,1,0,2,5,,4,6,Herr,Rd,1224507,0.46,1.056,0,14.310988,5.8,4.5 +8783,0,0.290865,1,1,0,2,6,,4,6,Patterson,Dr,1224601,0,0.291,0,6.980762,6.55,4.5 +8953,1,0.392562,2,0,0,2,4,DIV,4,6,Custer,Rd,1223803,17.732,18.124,0,9.421477,4.5,4.5 +31073,0,0.520289,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.486939,0.15,4 +31163,0,0.111974,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.687364,0.15,4 +9341,1,0.2262,1,0,0,1,1,RON,5,6,Laplaisance/N I 75,RAMP,1227904,0,0.226,0,,1.09,4 +9342,1,0.326237,1,0,0,1,1,ROF,5,6,N I 75/Laplaisance,RAMP,1227903,0,0.326,0,,2.24,5 +9434,1,2.317952,3,0,0,1,1,,5,6,N I 75,,1226910,8.609,10.926,0,,1.02,7 +9459,-1,2.545368,0,3,0,1,1,,5,6,S I 75,,1226909,8.58,11.124,0,,1.02,7 +10043,0,1.349647,1,1,0,2,5,,5,6,Laplaisance,Rd,1238308,0,1.349,0,32.391538,3.7,5 +9361,0,0.732589,1,1,0,2,6,,5,6,Otter Creek,Rd,1227303,2.477,3.209,0,17.582126,5.8,6 +9343,1,0.31743,1,0,0,1,1,RON,5,6,Otter Creek/N I 75,RAMP,1227810,0,0.317,0,,1.09,4 +9344,1,0.505454,1,0,0,1,1,ROF,5,6,N I 75/Otter Creek,RAMP,1227809,0,0.505,0,,2.24,5 +9362,0,0.250442,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,2.227,2.477,0,6.010614,3.7,5 +9312,1,0.459093,1,0,0,1,1,RON,5,6,Otter Creek/S I 75,RAMP,1228204,0,0.459,0,,1.09,4 +9435,1,0.430418,3,0,0,1,1,,5,6,N I 75,,1226910,8.179,8.609,0,,1.02,7 +9460,-1,0.359935,0,3,0,1,1,,5,6,S I 75,,1226909,8.22,8.58,0,,1.02,7 +9311,1,0.277456,1,0,0,1,1,ROF,5,6,S I 75/Otter Creek,RAMP,1228205,0,0.277,0,,2.24,5 +9358,0,1.068399,1,1,0,2,7,,5,6,Laplaisance,Rd,1227305,1.477,2.545,0,25.641578,5.8,6 +31160,0,0.575738,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,13.817721,0.15,4 +31151,0,0.48613,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.667126,0.15,4 +9433,1,0.310814,3,0,0,1,1,,5,6,N I 75,,1226910,10.926,11.237,0,,1.02,7 +10036,0,0.414563,1,1,0,2,5,,5,6,Laplaisance,Rd,1238308,1.349,1.764,0,9.949506,3.7,5 +10034,0,0.089376,1,1,1,2,4,,5,6,Laplaisance,Rd,1238308,1.764,1.853,0,2.145013,3,4 +10031,0,0.012842,1,1,1,2,4,,5,6,Laplaisance,Rd,1238308,1.853,1.866,0,0.30822,3,4 +8608,0,0.140288,1,1,0,2,4,,4,6,Winchester,St,1224908,0.526,0.666,0,3.366923,4.5,4.5 +8611,0,0.124311,1,1,0,2,4,,3,6,Scott,St,1224901,0.438,0.562,0,2.983467,6,4.5 +8613,0,0.210878,1,1,0,2,4,,3,6,Scott,St,1224901,0.088,0.299,0,5.061075,6,4.5 +8621,0,0.138267,1,1,0,2,4,,3,6,1st,St,1224806,0.385,0.523,0,3.318408,6,4.5 +8623,0,0.293114,1,1,0,2,5,,3,6,3rd,St,1224710,0.974,1.267,0,7.034731,8,4.5 +8712,0,0.172939,1,1,0,2,5,,3,6,Noble,St,1225503,0.207,0.38,0,4.150525,8,4.5 +8723,0,0.751547,1,1,0,2,5,,4,6,Detroit,St,1225408,0,0.751,0,18.037136,5.8,4.5 +8762,-1,0.160023,0,2,0,2,4,,3,6,Front,St,1223803,19.829,19.989,0,3.84055,6,4.5 +8765,0,0.443023,1,1,0,2,4,,3,6,1st,St,1224806,0.523,0.966,0,10.632552,6,4.5 +8769,0,0.211704,1,1,0,2,5,,3,6,3rd,St,1224710,0.763,0.974,0,5.080888,8,4.5 +8940,0,0.184032,1,1,0,2,4,,4,6,Elm,Ave,1226001,21.974,22.158,0,4.416767,4.5,4.5 +8961,0,0.16534,1,1,0,2,4,,3,6,Elm,Ave,1226001,20.888,21.053,0,3.968171,6,4.5 +9291,0,0.498257,1,1,0,2,5,,3,6,Kentucky,Ave,1229306,1.596,2.094,0,11.958158,8,4.5 +9309,1,0.452408,1,0,0,1,1,ROF,4,6,S I 75/Laplaisance,RAMP,1228207,0,0.452,0,,2.24,5 +9352,1,0.34499,2,0,0,2,5,,3,6,8th,St,1227505,0.249,0.594,0,8.279766,8,4.5 +9385,0,0.237575,2,2,0,2,4,,3,6,Monroe,St,1227004,15.158,15.396,0,5.701802,6,4.5 +9392,0,0.086757,2,2,0,2,4,,3,6,Monroe,St,1227004,14.21,14.297,0,2.082169,6,4.5 +9453,-1,1.088934,0,3,0,1,1,,4,6,S I 75,,1226909,13.675,14.763,0,,0.8,7.5 +10156,0,0.101421,2,2,0,2,4,,3,6,Stewart,Rd,1237610,8.942,9.044,0,2.434096,6,4.5 +20417,0,0.586512,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,14.037,14.623,0,14.076277,5,5 +31036,0,0.441137,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,10.587295,0.15,4 +31182,0,0.357211,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,8.573061,0.15,4 +31185,0,0.337481,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,8.099541,0.15,4 +31189,0,0.703116,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,16.874794,0.15,4 +31190,0,0.388556,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.325343,0.15,4 +9357,0,0.482217,1,1,1,2,4,,4,6,Dunbar,Rd,1227408,0,0.482,0,11.573215,4.5,4.5 +9395,0,0.357364,2,2,0,2,4,,3,6,Dixie,Hwy,1227004,13.392,13.749,0,8.57674,6,4.5 +9397,0,0.441761,2,2,0,2,4,,4,6,Dixie,Hwy,1227004,12.558,12.999,0,10.602276,4.5,4.5 +10005,0,0.774771,1,1,0,2,4,,4,6,Laplaisance,Rd,1238308,2.317,3.092,0,18.594498,4.5,4.5 +20526,0,0.904864,1,1,0,2,5,,4,6,Albain,Rd,4301495,11.823,12.727,0,21.716735,5.8,4.5 +31155,0,0.77077,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,18.498483,0.15,4 +31156,0,0.453259,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.878209,0.15,4 +31187,0,0.431913,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,10.365904,0.15,4 +9398,0,0.525742,2,2,0,2,4,,4,6,Dixie,Hwy,1227004,12.032,12.558,0,12.617818,4.5,4.5 +10330,0,0.532502,1,1,0,2,4,,3,6,Dunbar,Rd,1234601,12.315,12.847,0,12.780056,6,4.5 +31186,0,0.41217,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.89207,0.15,4 +34003,0,0.428922,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,10.294135,0.15,4 +20635,0,0.385807,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,13.651,14.037,0,9.259367,5,5 +9396,0,0.392528,2,2,0,2,4,,4,6,Dixie,Hwy,1227004,12.999,13.392,0,9.420663,4.5,4.5 +10329,0,0.272995,1,1,0,2,4,,3,6,Dunbar,Rd,1234601,12.847,13.12,0,6.551878,6,4.5 +31077,0,0.941771,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,22.602515,0.15,4 +31157,0,0.6112,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.668798,0.15,4 +10010,0,0.16483,1,1,1,2,4,,4,6,Laplaisance,Rd,1238308,2.153,2.317,0,3.955931,4.5,4.5 +10012,0,0.050968,1,1,1,2,4,,4,6,Laplaisance,Rd,1238308,2.102,2.153,0,1.223231,4.5,4.5 +9354,0,0.444582,1,1,0,2,4,,3,6,Jones,Ave,1227504,0,0.444,0,10.669958,6,4.5 +9356,0,0.242424,1,1,1,2,4,,4,6,Dunbar,Rd,1227408,0.482,0.724,0,5.818186,4.5,4.5 +9999,0,0.469463,1,1,0,2,4,,3,6,Laplaisance,Rd,1238308,3.334,3.803,0,11.267105,6,4.5 +9394,0,0.327867,2,2,0,2,4,,3,6,Dixie,Hwy,1227004,13.749,14.077,0,7.868817,6,4.5 +9393,0,0.133741,2,2,0,2,4,,3,6,Monroe,St,1227004,14.077,14.21,0,3.209782,6,4.5 +9292,0,0.213895,1,1,0,2,7,,4,6,Hull,Rd,1229306,1.382,1.596,0,5.133486,6.55,4.5 +9355,0,0.148313,1,1,0,2,4,,4,6,Dunbar,Rd,1227408,0.724,0.873,0,3.559505,4.5,4.5 +10003,0,0.242403,1,1,0,2,4,,4,6,Laplaisance,Rd,1238308,3.092,3.334,0,5.817667,4.5,4.5 +9998,0,0.206349,1,1,0,2,4,,3,6,Laplaisance,Rd,1238308,3.803,4.01,0,4.952377,6,4.5 +33997,0,0.159235,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.821645,0.15,4 +9994,0,0.154685,1,1,0,2,4,,3,6,Laplaisance,Rd,1238308,4.01,4.164,0,3.712449,6,4.5 +31184,0,0.232576,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,5.581822,0.15,4 +31183,0,0.076956,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,1.846933,0.15,4 +8635,0,0.358945,1,1,0,2,7,,3,6,Roessler,St,1224708,0.788,1.147,0,8.614684,7,4.5 +8782,0,0.07388,1,1,0,2,5,,3,6,Kaye Lani,Ave,1224706,0,0.074,0,1.773129,8,4.5 +8950,0,0.177947,1,1,0,2,4,,3,6,Front,St,1223803,18.814,18.991,0,4.270717,6,4.5 +9183,0,0.29022,1,1,1,2,4,,3,6,Elm,Ave,1226001,19.927,20.217,0,6.965276,6,4.5 +9285,-1,0.199887,0,2,0,2,5,,3,6,7th,St,4302993,1.534,1.734,0,4.797292,8,4.5 +9353,1,0.249236,2,0,0,2,5,,3,6,8th,St,1227505,0,0.249,0,5.981658,8,4.5 +20278,0,0.270758,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,15.627,15.897,0,6.498196,5,5 +20467,0,0.319058,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,15.308,15.627,0,7.657398,5,5 +25908,0,0.218974,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,5.255378,0.15,4 +31169,0,0.404605,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.71051,0.15,4 +31170,0,0.405504,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.732086,0.15,4 +31188,0,0.50844,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,12.202568,0.15,4 +33999,0,0.25867,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.208085,0.15,4 +34001,0,0.495071,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,11.881707,0.15,4 +8426,0,0.232463,1,1,1,2,4,,3,6,Custer,Rd,1226001,19.57,19.802,0,5.579112,6,4.5 +8771,0,0.25601,2,2,0,2,4,,4,6,Custer,Rd,1223803,18.558,18.814,0,6.144247,4.5,4.5 +9288,0,0.440526,1,1,0,2,5,,4,6,7th,St,4302993,0.773,1.213,0,10.572623,5.8,4.5 +20230,0,0.209844,2,2,0,2,3,,3,6,Telegraph,Rd,4300001,14.623,14.833,0,5.036253,5,5 +30330,0,0.378473,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,9.083358,0.15,4 +31168,0,0.243252,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.838049,0.15,4 +8952,0,0.263179,2,2,0,2,4,,4,6,Custer,Rd,1223803,18.295,18.558,0,6.316291,4.5,4.5 +31166,0,0.089398,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.145559,0.15,4 +8637,-1,0.087269,0,2,0,2,5,,3,6,Roessler,St,1224708,0.148,0.235,0,2.094462,8,4.5 +9287,0,0.154502,1,1,0,2,5,,3,6,7th,St,4302993,1.213,1.367,0,3.708054,8,4.5 +9286,0,0.066782,1,1,0,2,5,,3,6,7th,St,4302993,1.467,1.534,0,1.602767,8,4.5 +19533,0,0.1642,1,1,0,2,5,,3,6,Kaye Lani,Ave,1878407,0,0.164,0,3.940811,8,4.5 +8557,0,0.122629,1,1,0,2,4,,3,6,Custer,Dr,1225207,0,0.123,0,2.943091,6,4.5 +9049,0,0.124535,1,1,1,2,4,,3,6,Elm,Ave,1226001,19.802,19.927,0,2.988851,6,4.5 +20703,0,0.392486,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,14.916,15.308,0,9.419666,5,5 +19881,0,0.082438,2,2,0,2,3,,3,6,Telegraph,Rd,4300001,14.833,14.916,0,1.978514,5,5 +8552,0,0.057778,1,1,0,2,4,,3,6,Bentley,Dr,1225208,0,0.058,0,1.38667,6,4.5 +8727,0,0.056226,1,1,0,2,4,,3,6,Custer,Dr,1225207,0.123,0.179,0,1.349434,6,4.5 +31171,0,0.265452,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.370839,0.15,4 +8764,0,0.402917,1,1,0,2,4,,3,6,Front,St,1223803,19.242,19.644,0,9.669998,6,4.5 +8767,0,0.075607,1,1,0,2,4,,3,6,Front,St,1223803,19.123,19.199,0,1.814566,6,4.5 +8773,0,0.344368,1,1,0,2,5,,3,6,3rd,St,1224710,0.206,0.55,0,8.26483,8,4.5 +8779,0,0.290713,2,2,0,2,5,,3,6,Roessler,St,1224708,0.498,0.788,0,6.977122,8,4.5 +9181,0,0.378458,1,1,0,2,4,,3,6,Elm,Ave,1226001,20.51,20.888,0,9.082995,6,4.5 +9284,-1,0.394192,0,2,0,2,5,,3,6,7th,St,4302993,1.734,2.128,0,9.460605,8,4.5 +9386,0,0.242602,2,2,0,2,4,,3,6,Monroe,St,1227004,14.916,15.158,0,5.822451,6,4.5 +31193,0,0.440864,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,10.580729,0.15,4 +8632,0,0.205974,1,1,0,2,5,,3,6,3rd,St,1224710,0,0.206,0,4.943378,8,4.5 +26329,0,0.266256,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.390133,0.15,4 +31191,0,0.151765,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.64237,0.15,4 +31192,0,0.166533,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.996784,0.15,4 +8948,0,0.042834,1,1,0,2,4,,3,6,Front,St,1223803,19.199,19.242,0,1.028014,6,4.5 +8963,0,0.292624,1,1,0,2,4,,3,6,Elm,Ave,1226001,20.217,20.51,0,7.02298,6,4.5 +8622,1,0.171767,2,0,0,2,4,,3,6,1st,St,1224806,0,0.172,0,4.12242,6,4.5 +8630,0,0.212588,1,1,0,2,5,,3,6,3rd,St,1224710,0.55,0.763,0,5.10211,8,4.5 +8766,1,0.213056,2,0,0,2,4,,3,6,1st,St,1224806,0.172,0.385,0,5.11334,6,4.5 +8946,-1,0.184245,0,2,0,2,4,,3,6,Front,St,1223803,19.644,19.829,0,4.421883,6,4.5 +9389,0,0.140119,2,2,0,2,4,,3,6,Monroe,St,1227004,14.576,14.716,0,3.362849,6,4.5 +9390,0,0.141253,2,2,0,2,4,,3,6,Monroe,St,1227004,14.435,14.576,0,3.390081,6,4.5 +9391,0,0.138158,2,2,0,2,4,,3,6,Monroe,St,1227004,14.297,14.435,0,3.315789,6,4.5 +8758,0,0.139104,1,1,0,2,4,,3,6,Scott,St,1224901,0.299,0.438,0,3.338485,6,4.5 +9387,0,0.139633,2,2,0,2,4,,3,6,Monroe,St,1227004,14.776,14.916,0,3.351182,6,4.5 +9388,0,0.059617,2,2,0,2,4,,3,6,Monroe,St,1227004,14.716,14.776,0,1.430817,6,4.5 +9271,0,0.657085,1,1,0,2,7,,3,6,Roessler,St,1230604,0,0.657,0,15.770037,7,4.5 +20081,0,0.200494,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,15.897,16.098,0,4.811864,5,5 +31019,0,0.286396,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.873499,0.15,4 +33998,0,0.325842,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,7.820198,0.15,4 +8775,0,0.219305,1,1,0,2,7,,3,6,Roessler,St,1224708,1.147,1.367,0,5.263326,7,4.5 +20771,0,0.066289,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,16.098,16.164,0,1.590934,5,5 +10159,0,0.239916,2,2,0,2,4,,3,6,Stewart,Rd,1237610,8.703,8.942,0,5.757975,6,4.5 +8606,0,0.13779,1,1,0,2,4,,4,6,Front,St,1225004,0,0.138,0,3.306961,4.5,4.5 +9431,1,1.723872,3,0,0,1,1,,4,6,N I 75,,1226910,11.536,13.259,0,,0.8,7.5 +9457,-1,1.348281,0,3,0,1,1,,4,6,S I 75,,1226909,11.906,13.254,0,,0.8,7.5 +8756,0,0.138653,1,1,0,2,5,,4,6,Winchester,St,1224908,0.387,0.526,0,3.327672,5.8,4.5 +31176,0,0.527673,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.664149,0.15,4 +9290,0,0.36965,1,1,0,2,5,,3,6,Kentucky,Ave,1229306,2.094,2.463,0,8.871591,8,4.5 +8768,0,0.076775,1,1,0,2,5,,4,6,3rd,St,1224710,1.267,1.344,0,1.842599,5.8,4.5 +8620,0,0.295166,1,1,0,2,4,,4,6,1st,St,1224806,0.966,1.261,0,7.083988,4.5,4.5 +31175,0,0.269906,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.477744,0.15,4 +8543,1,0.14816,1,0,0,1,1,RON,4,6,S I 75/Elm,RAMP,1225409,0.051,0.199,0,,1.09,4 +8579,1,0.290975,1,0,0,1,1,RON,4,6,Front/S I 75,RAMP,1225006,0,0.291,0,,1.09,4 +8720,1,0.133613,1,0,0,1,1,ROF,4,6,S I 75/Elm,RAMP,1225410,0,0.134,0,,2.24,5 +8746,1,0.314487,1,0,0,1,1,ROF,4,6,S I 75/Front,RAMP,1225005,0,0.314,0,,2.24,5 +8942,0,0.124501,1,1,0,2,4,,5,6,Front,St,1223803,21.477,21.602,0,2.988036,3,4 +9141,0,0.328211,2,2,0,2,4,,4,6,Elm,Ave,1226001,22.459,22.787,0,7.877054,4.5,4.5 +9429,1,0.251083,3,0,0,1,1,,4,6,N I 75,,1226910,13.351,13.602,0,,0.8,7.5 +9455,-1,0.246101,0,3,0,1,1,,4,6,S I 75,,1226909,13.358,13.604,0,,0.8,7.5 +8578,1,0.257464,1,0,0,1,1,RON,5,6,Front/N I 75,RAMP,1225010,0,0.257,0,,1.09,4 +8745,1,0.229725,1,0,0,1,1,ROF,5,6,N I 75/Front,RAMP,1225009,0,0.23,0,,2.24,5 +9430,1,0.092083,3,0,0,1,1,,4,6,N I 75,,1226910,13.259,13.351,0,,0.8,7.5 +9456,-1,0.103705,0,3,0,1,1,,4,6,S I 75,,1226909,13.254,13.358,0,,0.8,7.5 +8752,0,0.423532,1,1,0,2,4,,4,6,Front,St,1223803,21.054,21.477,0,10.164761,4.5,4.5 +8923,0,0.050175,2,2,0,2,4,,4,6,Elm,Ave,1226001,22.409,22.459,0,1.204203,4.5,4.5 +9144,0,0.251248,2,2,0,2,4,,4,6,Elm,Ave,1226001,22.158,22.409,0,6.029963,4.5,4.5 +20589,0,0.030266,1,1,0,1,4,,4,6,S I 75/Elm Ramp Service Drive,,4301749,0,0.03,0,,4.5,4.5 +8539,1,0.054388,1,0,0,1,1,ROF,4,6,S I 75/Elm,RAMP,1225410,0.134,0.188,0,,2.24,5 +8722,1,0.050689,1,0,0,1,1,RON,4,6,S I 75/Elm,RAMP,1225409,0,0.051,0,,1.09,4 +20384,-1,0.004665,0,1,0,1,4,,4,6,S I 75/Elm Ramp Service Drive,,4301749,0.03,0.035,0,,4.5,4.5 +8535,1,0.063438,1,0,0,1,1,ROF,5,6,N I 75/Elm,RAMP,1225501,0.182,0.246,0,,2.24,5 +8717,1,0.068961,1,0,0,1,1,RON,5,6,Elm/N I 75,RAMP,1225502,0,0.069,0,,1.09,4 +8918,0,0.063622,2,2,0,2,4,,5,6,Elm,Ave,1226001,22.787,22.851,0,1.526931,3,4 +8534,1,0.170833,1,0,0,1,1,RON,5,6,Elm/N I 75,RAMP,1225502,0.069,0.24,0,,1.09,4 +8718,1,0.18236,1,0,0,1,1,ROF,5,6,N I 75/Elm,RAMP,1225501,0,0.182,0,,2.24,5 +9428,1,0.070356,3,0,0,1,1,,4,6,N I 75,,1226910,13.602,13.673,0,,0.8,7.5 +9454,-1,0.070628,0,3,0,1,1,,4,6,S I 75,,1226909,13.604,13.675,0,,0.8,7.5 +20134,0,0.023391,1,1,0,1,4,,5,6,N I 75/Elm Ramp Service Drive,,4301741,0,0.023,0,,3,4 +20829,1,0.006477,1,0,0,1,4,,5,6,N I 75/Elm Ramp Service Drive,,4301741,0.023,0.03,0,,3,4 +8520,0,0.550988,1,1,0,2,5,,4,6,Noble,St,1225503,0.599,1.15,0,13.223705,5.8,4.5 +8546,0,0.497763,1,1,0,2,5,,3,6,Riverview,St,1225309,1.173,1.67,0,11.946316,8,4.5 +8724,0,0.576851,1,1,0,2,5,,3,6,Riverview,St,1225309,0.596,1.173,0,13.844419,8,4.5 +8759,0,0.838435,1,1,0,2,4,,3,6,Macomb,St,1224810,1.1,1.938,0,20.122437,6,4.5 +9163,0,0.192506,1,1,0,2,4,,4,6,Elm,Ave,1226001,21.781,21.974,0,4.620153,4.5,4.5 +9384,0,0.751137,2,2,0,2,4,,3,6,Monroe,St,1227004,15.396,16.147,0,18.027286,6,4.5 +10147,0,0.307604,1,1,0,2,5,,3,6,Cole,Rd,1237610,9.618,9.926,0,7.382498,8,4.5 +20179,0,0.233966,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,0.211,0.445,0,5.615183,4.5,4.5 +30327,0,0.697081,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.729948,0.15,4 +31021,0,0.652458,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,15.658994,0.15,4 +31024,0,0.532927,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,12.790257,0.15,4 +33596,0,0.56739,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,13.617356,0.15,4 +8548,0,0.359203,1,1,0,2,5,,3,6,Riverview,St,1225309,0.237,0.596,0,8.620865,8,4.5 +8618,0,0.238941,2,2,0,2,4,,3,6,Macomb,St,1224810,0.511,0.75,0,5.734576,6,4.5 +8726,0,0.23722,1,1,0,2,5,,3,6,Riverview,St,1225309,0,0.237,0,5.693282,8,4.5 +8955,0,0.511458,1,1,0,2,4,,3,6,Elm,Ave,1226001,21.27,21.781,0,12.275003,6,4.5 +31179,0,0.089946,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,2.158703,0.15,4 +9175,0,0.217099,1,1,0,2,4,,3,6,Elm,Ave,1226001,21.053,21.27,0,5.210382,6,4.5 +31181,0,0.132906,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.189742,0.15,4 +31180,0,0.031452,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,0.754843,0.15,4 +8763,0,0.119288,2,2,0,2,4,,3,6,Macomb,St,1224810,0.392,0.511,0,2.862913,6,4.5 +8943,0,0.059861,1,1,0,2,4,,3,6,Front,St,1223803,19.989,20.048,0,1.436653,6,4.5 +8525,0,0.092582,1,1,0,2,5,,3,6,Noble,St,1225503,0.38,0.473,0,2.221968,8,4.5 +8761,0,0.238583,2,2,0,2,4,,3,6,Macomb,St,1224810,0.75,0.989,0,5.726003,6,4.5 +31178,0,0.376941,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.046583,0.15,4 +8711,0,0.126314,1,1,0,2,5,,3,6,Noble,St,1225503,0.473,0.599,0,3.031524,8,4.5 +8615,0,0.111588,1,1,0,2,4,,3,6,Macomb,St,1224810,0.989,1.1,0,2.678108,6,4.5 +31177,0,0.130835,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.140052,0.15,4 +20381,0,0.211121,2,2,0,2,4,,4,6,Winchester,St,4301655,0,0.211,0,5.066914,4.5,4.5 +8754,0,0.038705,2,2,0,2,4,,4,6,Winchester,St,1224908,0.666,0.705,0,0.928932,4.5,4.5 +9383,0,0.519907,2,2,0,2,4,,3,6,Monroe,St,1227004,16.147,16.666,0,12.477775,6,4.5 +10148,0,0.375368,2,2,0,2,4,,3,6,Cole,Rd,1237610,9.243,9.618,0,9.008841,6,4.5 +31038,0,0.32438,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,7.785115,0.15,4 +10150,0,0.199195,2,2,0,2,4,,3,6,Stewart,Rd,1237610,9.044,9.243,0,4.780673,6,4.5 +31025,0,0.242659,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,5.823821,0.15,4 +31026,0,0.312924,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,7.510172,0.15,4 +8545,0,0.415401,1,1,0,2,5,,4,6,Detroit,St,1225408,0.751,1.167,0,9.96962,5.8,4.5 +20639,0,0.359207,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,0.987,1.346,0,8.62097,4.5,4.5 +20874,0,0.542477,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,0.445,0.987,0,13.019451,4.5,4.5 +31049,0,0.615487,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.771677,0.15,4 +31048,0,0.249518,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.988423,0.15,4 +31050,0,0.170305,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,4.087321,0.15,4 +20421,0,0.22607,2,2,1,2,4,,4,6,Dixie,Hwy,4301655,1.346,1.572,0,5.425674,4.5,4.5 +20234,0,0.051781,2,2,1,2,4,,5,6,Dixie,Hwy,4301655,1.572,1.624,0,1.24274,3,4 +10117,0,0.182954,1,1,0,2,5,,5,6,Cole,Rd,1237610,10.24,10.423,0,4.390902,3.7,5 +10138,0,0.314993,1,1,0,2,5,,3,6,Cole,Rd,1237610,9.926,10.24,0,7.55984,8,4.5 +20423,0,0.127784,1,1,0,2,5,,3,6,Vivian,Rd,4301667,0,0.128,0,3.066816,8,4.5 +10114,0,0.18513,1,1,0,2,5,,5,6,Cole,Rd,1237610,10.423,10.608,0,4.443113,3.7,5 +31020,0,0.30876,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,7.410243,0.15,4 +20775,0,0.569383,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,3.418,3.987,0,13.665197,4.5,4.5 +30332,0,0.382315,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,9.175565,0.15,4 +8941,0,0.528178,1,1,0,2,5,,5,6,Front,St,1223803,22.212,22.74,0,12.676276,3.7,5 +8750,0,0.065011,1,1,0,2,5,,5,6,Front,St,1223803,22.74,22.805,0,1.560254,3.7,5 +31045,0,0.357755,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.586114,0.15,4 +31047,0,0.518023,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.432542,0.15,4 +31046,0,0.122029,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,2.928686,0.15,4 +8911,0,0.075443,2,2,0,2,5,,5,6,Elm,Ave,1226001,23.224,23.299,0,1.810636,3.7,5 +8695,1,0.378968,1,0,0,1,1,ROF,5,6,N I 75/Dixie,RAMP,1225605,0,0.379,0,,2.24,5 +9426,1,0.705532,3,0,0,1,1,,5,6,N I 75,,1226910,14.924,15.63,0,,1.02,7 +20471,0,0.553081,1,1,1,2,4,,5,6,Dixie,Hwy,4301655,2.172,2.725,0,13.273941,3,4 +31014,0,0.501481,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.035537,0.15,4 +20707,0,0.33415,1,1,1,2,4,,5,6,Dixie,Hwy,4301655,1.838,2.172,0,8.019607,3,4 +8506,1,0.366338,1,0,0,1,1,RON,5,6,Dixie/N I 75,RAMP,1225606,0,0.366,0,,1.09,4 +20085,0,0.600578,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,2.817,3.418,0,14.413861,4.5,4.5 +20282,0,0.092556,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,2.725,2.817,0,2.221338,4.5,4.5 +40091,-1,0.027892,0,1,0,2,7,,2,5,Observatory,St,4606155,0,0.028,0,0.669411,8.5,4.5 +3970,0,1.150552,1,1,0,2,4,,4,4,River,Rd,800901,0.885,2.035,0,27.613243,4.5,4.5 +4241,1,1.676085,3,0,0,1,1,,4,4,E I 94,,798501,15.682,17.358,0,,0.8,7.5 +4535,1,0.63625,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,1.329,1.965,0,15.270005,3.7,5 +4986,-1,1.637718,0,3,0,1,1,,4,4,W I 94,,798502,15.848,17.486,0,,0.8,7.5 +5496,0,2.70427,1,1,0,2,5,,5,4,School Section,Rd,822609,0,2.704,0,64.902472,3.7,5 +5526,0,1.563449,1,1,0,2,5,,5,4,New Haven,Rd,814905,5.569,7.133,0,37.522782,3.7,5 +5559,1,0.822,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,12.482,13.304,0,19.728005,3.7,5 +5621,0,1.414017,1,1,0,2,5,,5,4,Ridge,St,817602,5.61,7.024,0,33.936404,3.7,5 +6072,0,0.058066,2,2,1,2,3,,4,4,Gratiot,Ave,832010,5.052,5.11,0,1.39358,3.7,5 +6238,0,0.270366,2,2,1,2,3,,4,4,23 Mile,Rd,807106,13.191,13.461,0,6.488774,3.7,5 +6344,-1,0.488525,0,2,0,2,4,DIV,4,4,William P Rosso,Hwy,807801,12.534,13.022,0,11.724607,4.5,4.5 +6473,0,1.597652,1,1,0,2,5,,5,7,Bordman,Rd,824010,3.994,5.591,0,38.34365,3.7,5 +6567,0,1.699491,1,1,0,2,4,,5,4,26 Mile,Rd,816702,11.571,13.271,0,40.787785,3,4 +6785,0,2.430794,1,1,0,2,4,,5,4,Division,Rd,815804,11.061,13.492,0,58.339056,3,4 +6805,0,1.452606,1,1,0,2,4,,4,4,River,Rd,831807,1.525,2.977,0,34.862555,4.5,4.5 +6932,0,0.092904,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.217,10.31,0,2.229685,4.5,4.5 +7376,-1,2.519588,0,2,0,1,1,,5,7,W I 69,,962902,0,2.519,0,,1.02,7 +7455,0,0.954554,1,1,0,2,5,,5,7,Lapeer,Rd,962901,12.652,13.606,0,22.909285,3.7,5 +7462,0,0.580709,1,1,0,2,5,,5,7,Brandon,Rd,962901,5.888,6.468,0,13.937004,3.7,5 +7509,1,2.560774,2,0,0,1,1,,5,7,E I 69,,962706,0,2.56,0,,1.02,7 +7518,0,0.334945,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,0.689,1.024,0,8.03867,5,5 +7581,-1,0.921036,0,2,0,1,1,,5,7,W I 69,,962902,7.053,7.974,0,,1.02,7 +7636,0,0.883724,1,1,0,2,5,,5,7,Lapeer,Rd,962901,10.079,10.963,0,21.209368,3.7,5 +40423,1,0.317341,1,0,0,1,1,ROF,4,7,E I 94/Water,RAMP,4506254,0.152,0.469,0,,2.24,5 +7670,1,0.881159,2,0,0,1,1,,5,7,E I 69,,962706,7.076,7.957,0,,1.02,7 +7695,0,0.238855,2,2,0,2,4,,3,7,10th,Ave,963204,2.467,2.705,0,5.732528,6,4.5 +7708,0,0.503458,1,1,0,2,4,,5,7,Main,St,961905,5.163,5.667,0,12.082995,3,4 +7722,0,0.974773,1,1,0,2,5,,5,7,Bryce,Rd,962608,6.034,7.009,0,23.39454,3.7,5 +7834,0,1.028804,1,1,0,2,5,,4,7,Michigan,Rd,963906,5.836,6.865,0,24.691292,5.8,4.5 +40420,1,0.262911,1,0,0,1,1,RON,4,7,Lapeer Connector/Water,RAMP,4506256,0,0.263,0,,1.09,4 +40432,1,0.433257,2,0,0,1,1,FCD,4,7,E I 94/Pine Grove,RAMP,4506262,0,0.433,0,,0.8,7.5 +40425,-1,0.866634,0,2,0,1,1,,4,7,W I 94,,967804,23.592,24.458,0,,0.8,7.5 +40428,-1,0.18804,0,1,0,1,2,,4,7,I 94/Lapeer Connector,,4506261,0.688,0.876,0,,0.8,7.5 +40424,1,0.492362,3,0,0,1,1,,4,7,E I 94,,967606,23.562,24.055,0,,0.8,7.5 +8417,0,0.318781,1,1,0,2,4,,3,7,Stone,St,964308,0.771,1.089,0,7.650749,6,4.5 +8454,0,3.85105,1,1,0,2,5,,5,7,Yale,Rd,972601,3.308,7.158,0,92.425192,3.7,5 +8488,0,2.005275,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,7.423,9.428,0,48.126589,5.55,5 +8533,0,1.462268,1,1,0,2,6,GRV,5,7,Foley,Rd,972503,4.46,5.922,0,35.094438,5.55,5 +8589,0,2.00652,1,1,0,2,6,GRV,5,7,Cribbins,Rd,976907,0,2.006,0,48.156475,5.55,5 +8624,0,0.720747,1,1,0,2,7,,5,7,Atkins,Rd,970404,0,0.721,0,17.297939,5.8,6 +8797,0,0.257013,2,2,0,2,4,,5,7,Wadhams,Rd,969901,15.082,15.339,0,6.168307,3,4 +9107,0,0.874338,1,1,0,2,5,,4,7,Range,Rd,968407,10.267,11.141,0,20.984103,5.8,4.5 +9113,0,1.99821,1,1,0,2,6,GRV,5,7,Sheridan,Rd,973005,0,1.998,0,47.957047,5.55,5 +9114,0,2.001559,1,1,0,2,5,,5,7,Breen,Rd,973003,0,2.001,0,48.037428,3.7,5 +9129,0,2.898219,1,1,0,2,5,,5,7,Belle River,Rd,972801,2.772,5.67,0,69.557253,3.7,5 +9164,0,1.738344,1,1,0,2,6,GRV,5,7,Burt,Rd,972704,7.249,8.987,0,41.720246,5.55,5 +9199,0,1.944013,1,1,0,2,6,GRV,5,7,Masters,Rd,972701,3.322,5.266,0,46.656301,5.55,5 +19611,1,0.626485,1,0,0,1,1,ROF,5,7,W I 69/Riley Center,RAMP,1847308,0,0.626,0,,2.24,5 +19614,1,0.399824,1,0,0,1,1,RON,5,7,Riley Center/E I 69,RAMP,1847306,0,0.4,0,,1.09,4 +20560,0,1.396131,1,1,0,2,5,,4,7,Capac,Rd,4210003,7.259,8.655,0,33.507148,5.8,4.5 +20616,1,0.50315,2,0,0,2,4,DIV,4,4,William P Rosso,Hwy,4205105,0.163,0.666,0,12.075594,4.5,4.5 +39862,-1,0.507413,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,2.613,3.121,0,12.177906,3.7,5 +21209,0,0.476711,1,1,0,2,5,,3,7,12th,Ave,4502623,0.02,0.497,0,11.441073,8,4.5 +21886,0,0.093328,1,1,0,2,5,,5,7,Taylor,Dr,4502796,1.977,2.07,0,2.239884,3.7,5 +24219,0,1.423643,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,9.298,10.721,0,34.167438,4.5,4.5 +25913,0,2.491761,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,59.802258,0.15,4 +25915,0,0.264133,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,6.339197,0.15,4 +25926,0,1.138337,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,27.320091,0.15,4 +25933,0,3.947806,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,94.747347,0.15,4 +25944,0,1.673987,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,40.175692,0.15,4 +25947,0,0.425912,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,10.221879,0.15,4 +25962,0,1.16202,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,27.888488,0.15,4 +25965,0,0.433723,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.409359,0.15,4 +26073,0,0.489657,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.751774,0.15,4 +26077,0,0.532132,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.771159,0.15,4 +26080,0,0.3837,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.20879,0.15,4 +26457,0,2.585455,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,62.050919,0.15,4 +26947,0,0.818162,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,19.635877,0.15,4 +29127,0,2.573853,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,61.772461,0.15,4 +29171,0,1.255165,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,30.123965,0.15,4 +29384,0,0.692139,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,16.611335,0.15,4 +29499,0,1.159806,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,27.835341,0.15,4 +98,0,0.151208,2,2,0,2,4,,4,3,13 Mile,Rd,607408,13.954,14.105,0,3.628985,4.5,4.5 +194,-1,2.347348,0,2,0,1,1,,3,3,W I 96,,639107,0,2.347,0,,0.58,7 +311,0,0.496184,2,2,0,2,3,,3,3,Haggerty,Rd,639005,1.542,2.038,0,11.908423,5,5 +312,1,2.079632,4,0,0,1,1,,3,3,E I 96,,639202,1.583,3.662,0,,0.58,7 +352,1,0.384891,1,0,0,1,1,ROF,4,3,E I 696/Orchard Lake,RAMP,640906,0,0.385,0,,2.24,5 +407,0,0.185241,1,1,0,2,5,,3,3,Shiawassee,,633209,1.098,1.283,0,4.445785,8,4.5 +414,0,0.246832,1,1,0,2,5,,4,3,Lone Pine,Rd,640302,0,0.247,0,5.923959,5.8,4.5 +451,0,0.315335,1,1,0,2,3,,4,3,Orchard Lake,Rd,634003,8.485,8.8,0,7.56804,3.7,5 +452,0,0.234389,1,1,0,2,4,,3,3,Halsted,Rd,639203,0.132,0.366,0,5.625338,6,4.5 +460,0,1.627014,1,1,0,2,4,,5,3,Seymour Lake,Rd,627107,2.573,4.199,0,39.048331,3,4 +632,0,0.205238,1,1,0,2,5,,3,3,Gill,Rd,632807,0.524,0.729,0,4.925709,8,4.5 +651,0,0.202325,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,1.431,1.633,0,4.85581,6,4.5 +737,0,0.30756,3,3,1,2,3,,3,3,Southfield,Rd,611304,4.192,4.5,0,7.381428,5,5 +849,0,0.237924,1,1,0,2,4,,3,3,10 Mile,Rd,633409,0.664,0.902,0,5.710178,6,4.5 +860,0,0.290545,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0.671,0.961,0,6.973068,5,5 +865,0,0.199324,1,1,0,2,4,,4,3,Farmington,Rd,634005,0,0.199,0,4.78378,4.5,4.5 +871,0,0.368601,1,1,0,2,4,,4,3,Inkster,Rd,636410,1.648,2.016,0,8.846414,4.5,4.5 +951,-1,0.428009,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.309,11.737,0,10.27221,5,5 +971,0,0.524298,2,2,1,2,3,,3,3,Novi,Rd,621910,2.487,3.011,0,12.583164,5,5 +1183,0,0.983078,1,1,0,2,4,,5,3,Clarkston,Rd,627307,3.083,4.066,0,23.593871,3,4 +1200,0,0.517852,1,1,1,2,4,,3,3,Hilton,,642306,0.972,1.49,0,12.428437,6,4.5 +1214,0,0.499937,1,1,0,2,4,,4,3,Cass Elizabeth,Rd,630806,1.609,2.109,0,11.998497,4.5,4.5 +1270,0,1.006444,1,1,0,2,5,,5,3,Waldon,Rd,627303,2.014,3.021,0,24.154664,3.7,5 +1365,-1,3.928684,0,3,0,1,1,,4,3,S I 75,,646106,25.692,29.619,0,,0.8,7.5 +1367,0,0.455246,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,7.632,8.087,0,10.925908,3.7,5 +1482,-1,0.577041,0,4,0,1,1,,3,3,S I 75,,646106,1.539,2.116,0,,0.58,7 +1491,1,0.337969,1,0,0,1,1,RON,4,3,S Orchard Lake/W I 696,RAMP,640907,0,0.338,0,,1.09,4 +1502,0,0.615602,1,1,0,2,5,,3,3,Freedom,Rd,633606,2.681,3.296,0,14.77445,8,4.5 +1516,0,0.491229,1,1,0,2,4,,4,3,11 Mile,Rd,634509,0.501,0.992,0,11.789506,4.5,4.5 +1626,0,0.694786,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,4.174,4.869,0,16.674863,3.7,5 +1640,0,0.306043,1,1,0,2,5,,3,3,Power,Rd,634001,0,0.306,0,7.345028,8,4.5 +1671,0,0.431637,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,1.576,2.008,0,10.359277,6,4.5 +1717,1,0.541862,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.184,11.726,0,13.004683,5,5 +1941,1,0.128476,3,0,0,2,5,,3,3,Halsted,Rd,633802,0,0.128,0,3.083426,8,4.5 +2018,1,0.463984,3,0,0,1,1,RFF,3,3,W I 96/E I 696,RAMP,634208,0,0.464,0,,0.58,7 +2054,0,0.182802,1,1,0,2,4,,3,3,Drake,Rd,633804,0.819,1.002,0,4.387258,6,4.5 +40010,-1,0.022116,0,2,0,2,3,,4,3,14 Mile,Rd,5499977,0.098,0.12,0,0.530791,3.7,5 +2091,0,0.257981,1,1,1,2,4,,4,3,Walnut Lake,Rd,622906,3.942,4.2,0,6.191535,4.5,4.5 +2103,0,0.180217,1,1,1,2,5,,3,3,Shiawassee,,633209,0.204,0.384,0,4.3252,8,4.5 +2137,0,0.395285,1,1,0,2,5,,3,3,Folsom,,634102,0.455,0.85,0,9.486851,8,4.5 +2227,0,0.198571,3,3,1,2,3,,3,3,Greenfield,Rd,648307,1.506,1.704,0,4.765699,5,5 +2243,0,0.206755,1,1,0,2,7,,3,3,Scotia,,648205,0.637,0.844,0,4.962122,7,4.5 +2266,1,3.892313,3,0,0,1,1,,4,3,N I 75,,647308,25.603,29.494,0,,0.8,7.5 +2301,1,0.566625,4,0,0,1,1,,3,3,N I 75,,647308,1.514,2.08,0,,0.58,7 +2322,1,0.416248,2,0,0,2,5,,3,3,Chrysler,Dr,646902,1.398,1.814,0,9.98996,8,4.5 +2379,0,0.167524,2,2,0,2,4,,3,3,John R,Rd,646806,1.336,1.503,0,4.020573,6,4.5 +2402,-1,0.428505,0,3,0,2,5,,3,3,Chrysler,Dr,646702,1.395,1.824,0,10.284117,8,4.5 +2456,1,1.413584,2,0,0,1,2,,3,3,E M 5,,657303,16.492,17.905,0,,0.58,7 +2618,0,0.429235,1,1,1,2,4,,4,3,Lafayette,St,656507,2.058,2.487,0,10.301628,4.5,4.5 +2688,0,0.996429,1,1,0,2,5,,5,3,Oak Hill,Rd,651801,8.361,9.358,0,23.914305,3.7,5 +2735,1,0.562431,2,0,0,1,2,,3,3,E M 5,,657303,13.622,14.184,0,,0.58,7 +2785,0,0.633083,1,1,0,2,3,,5,3,Milford,Rd,656804,0,0.633,0,15.193989,1.7,4 +2834,0,0.560576,1,1,0,2,5,,4,3,Martindale,Rd,656802,0,0.56,0,13.453825,5.8,4.5 +2896,-1,3.867858,0,2,0,1,2,,3,3,W M 5,,657304,14.133,18,0,,0.58,7 +3216,0,0.248418,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.997,2.246,0,5.962032,6,4.5 +3227,0,0.186274,1,1,1,2,4,,3,3,Evergreen,Rd,666003,1.509,1.695,0,4.470569,6,4.5 +3311,0,0.467013,1,1,0,2,5,,4,3,Taft,Rd,656608,1.998,2.465,0,11.208316,5.8,4.5 +3324,0,0.65931,1,1,0,2,4,,4,3,Maybee,Rd,653405,2.216,2.875,0,15.823442,4.5,4.5 +3339,0,0.442166,1,1,0,2,4,,4,3,Beck,Rd,656605,2.004,2.446,0,10.611985,4.5,4.5 +3417,0,0.580011,1,1,0,2,3,,3,3,10 Mile,Rd,656510,10.82,11.4,0,13.92027,5,5 +3443,0,0.581993,2,2,1,2,3,,4,3,Highland,Rd,648906,16.996,17.578,0,13.96784,3.7,5 +3456,0,0.188281,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,7.875,8.063,0,4.518739,3.7,5 +3507,-1,0.23632,0,2,0,1,2,,3,3,W M 5,,657304,13.897,14.133,0,,0.58,7 +3656,1,0.098364,1,0,0,1,2,ROF,3,3,N M 10/10 Mile,RAMP,687802,0,0.098,0,,2.24,5 +3710,0,0.595215,2,2,1,2,4,,3,3,Lahser,Rd,685510,1.423,2.018,0,14.285172,6,4.5 +3718,0,0.393409,1,1,0,2,5,,4,3,Beech,Rd,684801,1.622,2.016,0,9.441817,5.8,4.5 +3821,0,0.25896,2,2,1,2,3,,4,3,Maple,Rd,683906,6.027,6.285,0,6.215032,3.7,5 +3888,-1,0.429984,0,3,0,1,1,,3,4,W I 94,,798502,0.983,1.413,0,,0.58,7 +3940,1,0.981491,3,0,0,1,2,,3,3,S M 10,,710010,6.952,7.934,0,,0.58,7 +3993,1,0.778964,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,1.018,1.797,0,18.695146,5,5 +4053,-1,0.961201,0,3,0,1,2,,3,3,N M 10,,710102,6.934,7.895,0,,0.58,7 +4077,0,0.353298,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,8.51,8.863,0,8.479141,4.5,4.5 +4104,-1,0.653784,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,1.388,2.041,0,15.690823,5,5 +4154,0,0.221001,2,2,1,2,3,,3,4,Harper,Ave,798408,1.121,1.342,0,5.304018,5,5 +4212,1,0.238504,1,0,0,1,1,ROF,3,4,W I 94/9 Mile,RAMP,801501,0,0.239,0,,2.24,5 +4315,0,0.387178,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,1.002,1.389,0,9.292275,6,4.5 +4337,1,0.439628,3,0,0,1,1,,3,4,E I 94,,798501,0.982,1.421,0,,0.58,7 +4473,1,0.319508,4,0,0,1,1,,4,3,E I 696,,710701,4.251,4.57,0,,0.8,7.5 +4497,1,0.266948,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.779,3.046,0,6.406749,8,4.5 +4570,1,0.218743,1,0,0,1,1,RON,3,4,9 Mile/E I 94,RAMP,800909,0,0.219,0,,1.09,4 +4764,-1,0.320381,0,4,0,1,1,,4,3,W I 696,,710702,4.315,4.635,0,,0.8,7.5 +4772,0,0.248344,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.272,1.521,0,5.96026,5,5 +4773,0,0.65105,2,2,1,2,3,,4,3,Walton,Blvd,696509,0.629,1.28,0,15.625201,3.7,5 +4827,1,0.119623,1,0,0,1,2,RON,3,3,10 Mile/S M 10,RAMP,710509,0,0.12,0,,1.09,4 +4871,0,0.24938,1,1,0,2,4,,3,4,Hoover,Rd,798909,1.293,1.543,0,5.985127,6,4.5 +4909,0,0.242467,2,2,1,2,4,,3,4,Ryan,Rd,799302,1.283,1.526,0,5.819197,6,4.5 +5024,1,0.806493,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,1.236,2.042,0,19.355839,5,5 +5029,0,0.83398,2,2,1,2,3,,4,3,Dixie,Hwy,689103,6.205,7.038,0,20.015525,3.7,5 +5064,0,0.33062,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,1.196,1.526,0,7.934891,5,5 +5310,0,0.44343,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,1.169,1.612,0,10.642327,5,5 +5696,0,0.661843,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,0.16,0.821,0,15.884225,3.7,5 +5701,1,0.20225,1,0,0,1,2,ROF,5,8,S US 23/Silver Lake,RAMP,932007,0,0.202,0,,2.24,5 +5858,0,0.381141,2,2,0,2,5,,3,4,Greater Mack,Ave,809106,1.142,1.523,0,9.147386,8,4.5 +5911,1,0.187769,1,0,0,1,2,RON,5,8,Silver Lake/N US 23,RAMP,931609,0,0.188,0,,1.09,4 +5918,0,1.162424,1,1,0,2,4,,5,8,Whitmore Lake,Rd,932204,2.989,4.151,0,27.898175,3,4 +6179,1,0.4207,2,0,0,1,2,,5,8,N US 23,,931510,2.616,3.036,0,,1.02,7 +6306,0,2.072463,1,1,0,2,6,,5,8,Fieldcrest,Dr,4105311,1.762,3.833,0,49.739113,5.8,6 +6339,0,0.282662,1,1,0,2,4,,3,4,Hayes,Ave,808510,0,0.283,0,6.783893,6,4.5 +6489,-1,0.391801,0,2,0,1,2,,5,8,S US 23,,932002,2.647,3.038,0,,1.02,7 +6552,1,0.322449,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,1.145,1.467,0,7.738786,5,5 +6781,0,0.612301,2,2,0,2,5,,3,4,Sherwood,Ave,804507,1.187,1.799,0,14.695214,8,4.5 +6920,1,0.503122,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,11.35,11.853,0,12.074919,5,5 +7207,0,0.575306,1,1,0,2,4,,5,8,Chilson,Rd,932808,0,0.575,0,13.807337,3,4 +7210,0,0.733222,1,1,0,2,4,,5,8,Pettysville,Rd,932802,0,0.733,0,17.597334,3,4 +7396,0,0.201112,1,1,0,2,5,,5,8,Rushton,Rd,942101,2.468,2.669,0,4.826699,3.7,5 +7412,0,0.696881,1,1,0,2,5,,5,8,Silverside,Dr,942404,0.538,1.235,0,16.72515,3.7,5 +7438,0,0.248432,1,1,0,2,5,,5,8,Rickett,Rd,940304,0,0.248,0,5.962367,3.7,5 +7658,0,0.737201,1,1,0,2,6,,5,8,Marshall,Rd,942010,2.012,2.749,0,17.692821,5.8,6 +7873,0,0.97053,1,1,0,2,5,,5,8,Winans Lake,Rd,940105,0.621,1.591,0,23.292712,3.7,5 +7888,0,1.111605,1,1,0,2,5,,5,8,Doane,Rd,942306,0,1.111,0,26.67853,3.7,5 +7912,0,1.094403,1,1,0,2,5,,5,8,Hamburg,Rd,940101,0,1.094,0,26.265678,3.7,5 +8675,0,0.354836,1,1,0,2,4,,4,6,Nadeau,Rd,1225701,0,0.355,0,8.516076,4.5,4.5 +8866,0,0.321275,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,0.853,1.174,0,7.710608,3.7,5 +9295,1,0.391021,1,0,0,1,1,RON,5,6,Carleton Rockwood/S I 275,RAMP,1228306,0,0.391,0,,1.09,4 +9303,0,0.634697,1,1,0,2,5,,5,6,Newport,Rd,1228304,1.056,1.69,0,15.232717,3.7,5 +9316,0,1.65749,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,2.363,4.02,0,39.779769,3,4 +9325,1,0.394013,1,0,0,1,1,RON,5,6,Carleton Rockwood/N I 275,RAMP,1228105,0,0.394,0,,1.09,4 +9334,1,0.720813,3,0,0,1,1,,5,6,N I 275,,1228001,5.85,6.571,0,,1.02,7 +11282,1,0.800599,3,0,0,1,1,,4,2,E I 94,,1576405,9.371,10.171,0,,0.8,7.5 +12530,1,0.972531,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.936,2.908,0,23.340737,3.7,5 +13938,-1,0.860795,0,3,0,1,1,,4,2,W I 94,,1588802,9.425,10.285,0,,0.8,7.5 +14570,0,0.245636,2,2,1,2,3,,3,2,Ford,Rd,1595510,9.291,9.537,0,5.89527,5,5 +15799,1,0.378145,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,9.883,10.261,0,9.075488,5,5 +16069,1,0.300249,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,5.443,5.743,0,7.205965,6,4.5 +16087,0,0.572659,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,3.312,3.884,0,13.743822,6,4.5 +16123,0,0.224776,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,9.278,9.502,0,5.394633,6,4.5 +16130,1,0.477066,4,0,0,1,1,,3,2,E I 96,,1606201,4.11,4.587,0,,0.58,7 +16248,0,0.424688,1,1,0,2,4,,3,2,Palmer,Rd,1607406,6.29,6.715,0,10.192508,6,4.5 +16392,0,0.574862,1,1,0,2,4,,5,2,Sibley,Rd,1607308,1.995,2.57,0,13.796681,3,4 +16430,0,1.99413,1,1,0,2,5,,5,2,King,Rd,1607306,2.358,4.352,0,47.859109,3.7,5 +16594,-1,0.483268,0,4,0,1,1,,3,2,W I 96,,1606503,3.872,4.355,0,,0.58,7 +16917,0,0.507517,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,9.836,10.343,0,12.1804,5,5 +17478,0,0.509748,1,1,0,2,5,,3,2,Chicago,Rd,1696207,1.01,1.52,0,12.23396,8,4.5 +17524,0,1.000976,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,2.662,3.663,0,24.023435,4.5,4.5 +17695,1,0.247362,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,2.486,2.733,0,5.936677,8,4.5 +17888,0,0.506216,1,1,0,2,5,,5,2,West,Rd,1674210,0,0.506,0,12.149192,3.7,5 +17976,0,0.499717,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,9.542,10.041,0,11.993209,5,5 +17985,0,0.451595,2,2,0,2,4,,3,2,Van Born,Rd,1670203,3.283,3.734,0,10.838269,6,4.5 +17996,0,0.252287,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,2.109,2.361,0,6.054886,8,4.5 +18300,0,0.499374,1,1,0,2,4,,3,2,Joy,Rd,1677810,0.041,0.54,0,11.984972,6,4.5 +18304,0,0.252486,1,1,0,2,5,,3,2,Avondale,Ave,1686907,1.953,2.205,0,6.059674,8,4.5 +18375,0,0.559825,1,1,0,2,5,,3,2,Cowan,Rd,1669808,1.028,1.587,0,13.435809,8,4.5 +18415,0,0.196433,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,0.746,0.942,0,4.714388,8,4.5 +18564,0,0.490335,1,1,0,2,5,,5,2,Huron River,Dr,1670406,10.779,11.27,0,11.76803,3.7,5 +18756,0,1.364395,1,1,0,2,5,,4,2,Beverly,Rd,1664409,1.078,2.442,0,32.745483,5.8,4.5 +18769,0,0.491355,1,1,0,2,4,,4,2,Wick,Rd,1682705,2.525,3.016,0,11.792527,4.5,4.5 +19060,0,0.947545,1,1,0,2,5,,5,2,Willow,Rd,1670406,8.518,9.466,0,22.741083,3.7,5 +19063,0,1.352539,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,7.093,8.445,0,32.460932,5,5 +19205,0,0.625568,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,3.349,3.974,0,15.013637,5,5 +19774,0,0.378136,2,2,1,2,4,,3,3,Grand River,,4104142,17.215,17.593,0,9.075269,6,4.5 +19778,0,0.238007,1,1,1,2,4,,3,3,Grand River,,4104142,16.187,16.425,0,5.712161,6,4.5 +19824,0,1.169724,1,1,0,2,3,,4,3,Commerce,Rd,4104140,16.431,17.6,0,28.073376,3.7,5 +20181,-1,0.738915,0,3,0,1,1,,5,6,S I 275,,4301662,5.373,6.111,0,,1.02,7 +20311,-1,0.329641,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,1.109,1.439,0,7.911375,5,5 +20404,-1,0.239192,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.802,2.041,0,5.740614,8,4.5 +20408,1,0.341884,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,1.276,1.618,0,8.205211,6,4.5 +20496,1,0.342389,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,0.695,1.038,0,8.217333,6,4.5 +20709,0,0.689003,1,1,0,2,5,,4,6,Vivian,Rd,4301667,0.756,1.444,0,16.53607,5.8,4.5 +20871,0,1.396389,2,2,1,2,3,,5,6,Telegraph,Rd,4300001,20.172,21.568,0,33.513348,1.7,4 +20916,0,0.368767,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,5.394,5.763,0,8.850415,5,5 +21020,0,0.488611,1,1,0,2,5,,3,3,Berg,Rd,4410215,1.583,2.072,0,11.726674,8,4.5 +21038,0,1.255422,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,4.371,5.627,0,30.130134,3,4 +21899,0,0.505191,1,1,0,2,4,,4,3,Wixom,Rd,4413401,0,0.505,0,12.124575,4.5,4.5 +22098,0,0.256118,1,1,1,2,5,,3,3,Ridge,Rd,4412705,1.476,1.732,0,6.146826,8,4.5 +22240,-1,0.759418,0,2,0,2,3,DIV,4,2,Eureka,Rd,4703131,0.955,1.714,0,18.226031,3.7,5 +22480,-1,0.299971,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0.699,0.999,0,7.199296,6,4.5 +22519,-1,0.957039,0,2,0,2,5,DIV,4,2,Smith,Rd,4706175,0.016,0.973,0,22.968945,5.8,4.5 +23077,-1,0.422893,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,4.474,4.897,0,10.149429,8,4.5 +23242,-1,0.385575,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,9.851,10.236,0,9.253788,5,5 +23567,1,0.956884,2,0,0,2,5,DIV,4,2,Smith,Rd,4706176,0.019,0.976,0,22.965222,5.8,4.5 +23621,1,0.40726,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,4.455,4.862,0,9.774242,8,4.5 +24038,0,0.41238,2,2,1,2,3,,3,2,Warren,Rd,4710470,9.537,9.949,0,9.897123,5,5 +24073,-1,0.781255,0,2,0,2,3,DIV,4,2,John Dingell,Dr,4711337,0.791,1.572,0,18.750129,3.7,5 +24099,1,0.805548,2,0,0,2,3,DIV,4,2,John Dingell,Dr,4711336,0.146,0.951,0,19.333148,3.7,5 +24161,0,0.335221,2,2,1,2,3,,3,4,Jefferson,Ave,4718263,1.376,1.711,0,8.045292,5,5 +24246,-1,0.247226,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711017,0.503,0.75,0,5.933414,8,4.5 +24484,0,1.661376,1,1,0,2,4,,4,2,I 94 South Service Drive,,4711342,0,1.661,0,39.87303,4.5,4.5 +24866,0,0.22606,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.425431,0.15,4 +24869,0,0.279081,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.697944,0.15,4 +24872,0,0.512079,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.289895,0.15,4 +24881,0,0.502425,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.058203,0.15,4 +24884,0,0.520506,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.492147,0.15,4 +25129,0,0.796245,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,19.109881,0.15,4 +25142,0,0.268888,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.453308,0.15,4 +25143,0,0.475537,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.41288,0.15,4 +25148,0,0.894496,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.467896,0.15,4 +25157,0,0.352608,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.462583,0.15,4 +25254,0,0.48836,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.720633,0.15,4 +25258,0,0.269351,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.464413,0.15,4 +25262,0,0.505174,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.124174,0.15,4 +25276,0,0.24735,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.9364,0.15,4 +25431,0,0.855923,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,20.542143,0.15,4 +25434,0,0.284276,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.822614,0.15,4 +25474,0,0.577425,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.858194,0.15,4 +25627,0,0.447781,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.746742,0.15,4 +25784,0,0.49537,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.888871,0.15,4 +25976,0,1.400846,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.620316,0.15,4 +25980,0,1.014759,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.354226,0.15,4 +25983,0,0.981849,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.564376,0.15,4 +25987,0,0.514608,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.350597,0.15,4 +25995,0,0.252097,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.050333,0.15,4 +25998,0,0.509938,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.238512,0.15,4 +25999,0,0.499191,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.980594,0.15,4 +26001,0,0.463393,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.121431,0.15,4 +26009,0,0.248936,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.974452,0.15,4 +26082,0,0.980217,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.525203,0.15,4 +26090,0,1.151845,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.644291,0.15,4 +26114,0,0.597507,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.340177,0.15,4 +26120,0,0.365312,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.767489,0.15,4 +26122,0,1.514904,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.357694,0.15,4 +26126,0,0.401535,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,9.636851,0.15,4 +26134,0,0.24646,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.915051,0.15,4 +26142,0,0.826646,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.839506,0.15,4 +26150,0,0.219137,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.259289,0.15,4 +26157,0,0.276993,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.647836,0.15,4 +26161,0,0.250508,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.012193,0.15,4 +26169,0,0.464988,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.159708,0.15,4 +26171,0,0.446978,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.727468,0.15,4 +26179,0,0.483883,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.613197,0.15,4 +26181,0,0.297314,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.135537,0.15,4 +26184,0,0.437513,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.500304,0.15,4 +26189,0,0.742202,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,17.812858,0.15,4 +26191,0,0.211948,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.086749,0.15,4 +26195,0,0.230141,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.523393,0.15,4 +26207,0,0.328756,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.890133,0.15,4 +26209,0,0.419515,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.068362,0.15,4 +26212,0,0.501857,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.044569,0.15,4 +26216,0,0.248339,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.96013,0.15,4 +26220,0,0.275248,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.605964,0.15,4 +26221,0,0.552549,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.26118,0.15,4 +26228,0,0.5375,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.900001,0.15,4 +26232,0,0.502209,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.053022,0.15,4 +26823,0,0.477344,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.456257,0.15,4 +27139,0,1.039639,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.95133,0.15,4 +27278,0,0.698767,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.77042,0.15,4 +27344,0,1.200825,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.819799,0.15,4 +27413,0,0.531821,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.763696,0.15,4 +27504,0,0.553624,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.286981,0.15,4 +28060,0,0.494223,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.861353,0.15,4 +28577,0,1.672071,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,40.129698,0.15,4 +28882,0,0.44768,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.744326,0.15,4 +29661,0,0.436917,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.486019,0.15,4 +29667,0,0.345529,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.292698,0.15,4 +29698,0,0.291215,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.98917,0.15,4 +29782,0,1.126363,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.032719,0.15,4 +29918,0,0.580609,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.934605,0.15,4 +29921,0,0.313097,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.514326,0.15,4 +30276,0,0.629412,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.105881,0.15,4 +31070,0,0.231412,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.553882,0.15,4 +31204,0,0.490095,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.762288,0.15,4 +31207,0,0.654402,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.705647,0.15,4 +31209,0,0.37664,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.039372,0.15,4 +31211,0,0.276816,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.64359,0.15,4 +31212,0,0.292019,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.008458,0.15,4 +31214,0,0.268484,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.443619,0.15,4 +31215,0,0.274754,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.594106,0.15,4 +31275,0,0.940652,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,22.575654,0.15,4 +31277,0,0.425119,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.202855,0.15,4 +31296,0,0.611388,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,14.67332,0.15,4 +31302,0,0.744149,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.85958,0.15,4 +31303,0,0.188138,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.515303,0.15,4 +31308,0,0.514307,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.34337,0.15,4 +31311,0,0.250576,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.013831,0.15,4 +31315,0,0.528525,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.684594,0.15,4 +31327,0,0.50486,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.116641,0.15,4 +31328,0,0.503745,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.089883,0.15,4 +31331,0,0.19337,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.64088,0.15,4 +31335,0,0.498832,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.971963,0.15,4 +31341,0,0.50181,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.04344,0.15,4 +31342,0,0.501076,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.025831,0.15,4 +31493,0,0.365975,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.783408,0.15,4 +31556,0,0.580823,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.939741,0.15,4 +31557,0,0.597305,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.335327,0.15,4 +31811,0,0.508082,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.193963,0.15,4 +32478,0,0.711455,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.074908,0.15,4 +33789,0,0.283479,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.803502,0.15,4 +33942,0,0.719456,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.266953,0.15,4 +2567,0,0.798635,1,1,0,2,4,,5,5,8 Mile,Rd,656509,2.037,2.835,0,19.167249,3,4 +3492,0,0.433744,1,1,0,2,4,,5,3,10 Mile,Rd,656510,1.789,2.222,0,10.409858,3,4 +8505,0,2.655759,1,1,0,2,5,,5,6,Plank,Rd,1226001,2.226,4.881,0,63.738218,3.7,5 +8710,0,1.507788,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,2.774,4.281,0,36.186908,3,4 +8978,0,1.034757,1,1,0,2,4,,5,6,Custer,Rd,1223803,7.677,8.711,0,24.834174,3,4 +9475,1,1.176343,3,0,0,1,1,,4,5,E I 94,,1426109,27.666,28.841,0,,0.8,7.5 +9534,0,1.667373,1,1,0,2,4,,5,5,Willis,Rd,1427410,6.553,8.219,0,40.016945,3,4 +9581,0,0.227553,1,1,0,2,3,,4,5,Michigan,Ave,1427301,16.678,16.905,0,5.461264,3.7,5 +9591,-1,0.122781,0,4,0,2,3,,2,5,Cross,St,1428902,1.876,1.999,0,2.946746,6,5 +9646,0,0.073554,1,1,0,2,5,,3,5,Congress,St,1428004,0.586,0.659,0,1.765293,8,4.5 +9772,0,0.070688,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.166,1.236,0,1.696507,5,5 +9868,1,0.154158,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.531,6.686,0,3.69979,6,5 +9898,0,1.001532,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,24.006,25.007,0,24.036778,3,4 +9973,1,0.37037,1,0,0,1,2,ROF,4,5,S US 23/Michigan,RAMP,1427606,0,0.37,0,,2.24,5 +10212,1,0.368607,1,0,0,1,2,ROF,4,5,N US 23/Michigan,RAMP,1427607,0,0.368,0,,2.24,5 +10213,0,0.236324,1,1,0,2,5,,3,5,Harriet,St,1428508,0,0.236,0,5.671768,8,4.5 +10214,-1,1.144662,0,3,0,1,1,,3,5,W I 94,,1426110,27.687,28.831,0,,0.58,7 +10300,0,0.44404,1,1,0,2,4,,4,5,State,Rd,1427508,1.195,1.638,0,10.656954,4.5,4.5 +10309,0,1.468952,1,1,0,2,5,,5,6,Bigelow,Rd,1235101,0.802,2.27,0,35.254858,3.7,5 +10315,0,3.121423,1,1,0,2,5,,5,6,Ostrander,Rd,1234904,0.201,3.321,0,74.914152,3.7,5 +10461,0,0.455543,1,1,0,2,4,,4,5,Stony Creek,Rd,1431208,10.914,11.369,0,10.933038,4.5,4.5 +10463,0,0.837051,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,9.907,10.744,0,20.089215,5.8,4.5 +10478,0,1.007252,1,1,0,2,5,,5,5,Willow,Rd,1431207,4.131,5.137,0,24.174036,3.7,5 +10499,1,0.599797,2,0,0,1,2,,4,5,N US 23,,1431202,8.259,8.858,0,,0.8,7.5 +10786,0,0.509577,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,8.65,9.16,0,12.229837,3,4 +10834,0,0.531108,1,1,1,2,5,,4,5,Lohr,Rd,1436708,0,0.531,0,12.746601,5.8,4.5 +10838,0,1.799294,1,1,0,2,7,,5,5,7 Mile,Rd,1451104,0.048,1.847,0,43.183067,5.8,6 +10854,0,0.950882,1,1,0,2,5,,4,5,Munger,Rd,1438404,2.029,2.98,0,22.821161,5.8,4.5 +10887,0,0.234155,1,1,0,2,4,,4,5,Bridge,Rd,1438202,0,0.234,0,5.619718,4.5,4.5 +10974,0,1.014815,1,1,0,2,5,,5,5,Angle,Rd,1447103,0,1.014,0,24.355551,3.7,5 +11007,0,0.502165,1,1,0,2,5,,4,5,Huron River,Dr,1438110,2.228,2.73,0,12.051959,5.8,4.5 +11009,0,0.682528,1,1,0,2,4,,4,5,Textile,Rd,1438102,2.449,3.132,0,16.380672,4.5,4.5 +37295,1,0.088532,2,0,0,2,4,,4,5,Geddes,Rd,1448104,5.429,5.517,0,2.12477,4.5,4.5 +11183,0,0.864732,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,4.935,5.799,0,20.75357,3.7,5 +11234,0,1.575376,1,1,0,2,5,,5,5,Ford,Rd,1431906,0,1.575,0,37.809022,3.7,5 +11242,0,0.525875,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,2.166,2.692,0,12.621009,3,4 +11264,0,0.350881,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.148,8.499,0,8.421144,4.5,4.5 +11280,0,0.323772,1,1,0,2,5,,5,5,Cherry Hill,Rd,1436303,0.639,0.963,0,7.770516,3.7,5 +11332,0,0.776182,1,1,0,2,5,GRV,4,5,Merritt,Rd,1438204,2.468,3.244,0,18.628361,6.55,4.5 +11363,0,0.386953,2,2,1,2,4,,4,5,Carpenter,Rd,1431609,8.081,8.468,0,9.28687,4.5,4.5 +11458,-1,0.589553,0,2,0,1,2,,4,5,S US 23,,1431603,8.221,8.81,0,,0.8,7.5 +11471,-1,0.573814,0,2,0,2,3,DIV,5,5,W M 153,,1431602,1.01,1.584,0,13.77153,1.7,4 +11487,1,0.559442,2,0,0,2,3,DIV,5,5,E M 153,,1431510,0.837,1.396,0,13.426596,1.7,4 +40102,-1,0.039624,0,1,0,2,4,,4,5,Stony Creek,Rd,4606156,0,0.04,0,0.95097,4.5,4.5 +11559,-1,4.081074,0,2,0,1,2,,5,5,W M 14,,1431410,5.756,9.836,0,,1.02,7 +11590,1,3.566244,2,0,0,1,2,,5,5,E M 14,,1431408,6.058,9.623,0,,1.02,7 +16698,-1,1.906644,0,3,0,1,1,,4,2,S I 275,,1607610,7.348,9.254,0,,0.8,7.5 +16770,1,1.587923,3,0,0,1,1,,4,2,N I 275,,1607208,7.303,8.89,0,,0.8,7.5 +17276,0,0.765289,1,1,0,2,5,,4,2,Hannan,Rd,1710309,2.726,3.491,0,18.366948,5.8,4.5 +17818,0,0.378191,1,1,0,2,4,,4,2,Huron River,Dr,1673810,7.684,8.062,0,9.076595,4.5,4.5 +18511,0,0.81397,1,1,0,2,4,,4,2,Haggerty,Rd,1670810,3.569,4.383,0,19.535282,4.5,4.5 +19181,0,0.516247,1,1,0,2,5,,4,2,High,St,1675906,0,0.516,0,12.389932,5.8,4.5 +20643,0,1.016355,1,1,0,2,5,,4,5,Platt,Rd,4302160,8.119,9.135,0,24.392515,5.8,4.5 +20728,0,0.81776,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,3.176,3.994,0,19.626237,5.55,5 +21856,0,1.174712,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,6.566,7.741,0,28.193084,6.55,4.5 +21866,0,0.386984,2,2,0,2,4,,3,5,Huron River,Dr,4603250,1.67,2.057,0,9.287609,6,4.5 +21990,0,0.390084,1,1,0,2,5,,4,5,Tuttle Hill,Rd,4603029,1.674,2.064,0,9.362013,5.8,4.5 +22052,0,0.578768,1,1,0,2,4,,4,5,Maple,Rd,4603041,0,0.579,0,13.890428,4.5,4.5 +22984,0,0.351294,1,1,0,2,4,,4,2,Main,St,4705581,0.21,0.561,0,8.431054,4.5,4.5 +23568,0,0.56502,1,1,0,2,4,,4,2,Huron River,Dr,4705582,0.024,0.588,0,13.560483,4.5,4.5 +24499,0,1.111779,1,1,0,2,3,,4,2,Wayne,Rd,4719470,0,1.111,0,26.682687,3.7,5 +25020,0,1.037543,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.901031,0.15,4 +25465,0,0.645594,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.494245,0.15,4 +25466,0,0.619378,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.865077,0.15,4 +25469,0,0.742852,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.828439,0.15,4 +25471,0,0.997296,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.935102,0.15,4 +25478,0,1.179249,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.301983,0.15,4 +25480,0,0.528613,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.686718,0.15,4 +25483,0,1.020245,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.485885,0.15,4 +26237,0,2.110651,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,50.655624,0.15,4 +26238,0,1.053969,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.295259,0.15,4 +26240,0,1.478037,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.472899,0.15,4 +26243,0,0.449122,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.778931,0.15,4 +26249,0,0.908756,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.81015,0.15,4 +26250,0,0.880946,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.142709,0.15,4 +26251,0,0.221358,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.312581,0.15,4 +26252,0,0.571184,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.708416,0.15,4 +26254,0,0.860255,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.646129,0.15,4 +26257,0,0.574846,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.796309,0.15,4 +26264,0,0.281034,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.744809,0.15,4 +26265,0,0.246571,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.917702,0.15,4 +26268,0,0.36573,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.777509,0.15,4 +26269,0,1.095272,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,26.286521,0.15,4 +26272,0,0.305592,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.334213,0.15,4 +26275,0,0.249372,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.98493,0.15,4 +26279,0,1.568753,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.650078,0.15,4 +26287,0,0.147536,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.540864,0.15,4 +26292,0,0.326401,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.833635,0.15,4 +26303,0,1.513644,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.327453,0.15,4 +26308,0,0.23252,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.580474,0.15,4 +26332,0,2.102644,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,50.463449,0.15,4 +26349,0,1.520472,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.491338,0.15,4 +26775,0,0.37664,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.03936,0.15,4 +26841,0,1.005957,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.142957,0.15,4 +29511,0,1.47199,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.327763,0.15,4 +30039,0,0.250908,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.021792,0.15,4 +30078,0,0.24954,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.988951,0.15,4 +30081,0,0.213996,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.135896,0.15,4 +30103,0,2.024102,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,48.578447,0.15,4 +31142,0,0.816004,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.584091,0.15,4 +31349,0,1.492712,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.8251,0.15,4 +31350,0,2.049907,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,49.197767,0.15,4 +31355,0,0.396933,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.526382,0.15,4 +31361,0,0.744834,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.876022,0.15,4 +31370,0,0.524867,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.596811,0.15,4 +31373,0,0.2831,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.794411,0.15,4 +32432,0,0.340788,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.178909,0.15,4 +33601,0,2.933542,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,70.405008,0.15,4 +7989,0,2.771955,1,1,0,2,6,GRV,5,6,County Line,Hwy,950002,6.522,9.293,0,66.52692,5.55,5 +8747,0,2.00889,1,1,0,2,7,,5,6,Milwaukee,Rd,1223805,0,2.008,0,48.213364,5.8,6 +8809,0,1.419082,1,1,0,2,4,,5,6,Tecumseh,St,1223803,0,1.419,0,34.057958,3,4 +8902,1,2.957789,2,0,0,1,2,,5,6,N US 23,,1223505,22.197,25.153,0,,1.02,7 +8925,-1,2.795994,0,2,0,1,2,,5,6,S US 23,,1223504,22.163,24.958,0,,1.02,7 +8928,0,1.997279,1,1,0,2,7,,5,6,Cone,Rd,1223807,0,1.997,0,47.934703,5.8,6 +9167,0,1.463509,1,1,0,2,5,,5,6,Plank,Rd,1226001,0.763,2.226,0,35.124207,3.7,5 +9221,0,1.05664,1,1,0,2,6,,5,6,Brewer,Rd,1233507,0,1.056,0,25.359364,5.8,6 +9986,0,3.013315,1,1,0,2,5,,5,6,Wabash,Rd,1239109,0,3.012,0,72.319565,3.7,5 +10322,0,1.959258,1,1,0,2,4,,5,5,Willis,Rd,1427410,0.221,2.179,0,47.022191,3,4 +10374,0,0.717582,1,1,0,2,3,,4,5,Michigan,Ave,1427301,12.55,13.267,0,17.221979,3.7,5 +10831,0,1.650955,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,2.434,4.085,0,39.622928,3.7,5 +10905,0,0.973961,1,1,0,2,5,GRV,5,5,Mooreville,Rd,1432907,3.172,4.145,0,23.375067,5.55,5 +10917,0,0.292152,1,1,0,2,4,,4,5,Textile,Rd,1432903,6.014,6.306,0,7.011642,4.5,4.5 +10931,0,1.395816,1,1,0,2,5,,5,5,Ridge,Rd,1432807,0,1.395,0,33.499592,3.7,5 +20706,0,3.008981,1,1,0,2,5,,5,6,Dennison,Rd,4301492,8.52,11.528,0,72.215544,3.7,5 +21258,0,0.568783,1,1,0,2,4,,5,5,Bemis,Rd,4604906,0.758,1.327,0,13.650783,3,4 +25484,0,1.700822,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.819728,0.15,4 +25489,0,0.757068,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.169626,0.15,4 +25490,0,0.80001,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,19.200245,0.15,4 +30664,0,2.969204,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,71.260906,0.15,4 +30665,0,2.610366,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,62.648792,0.15,4 +31379,0,2.76002,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,66.240475,0.15,4 +34045,0,1.833227,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34046,0,1.316796,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34089,0,1.235217,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34090,0,1.469399,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7993,0,1.124949,1,1,0,2,6,,5,6,County Line,Hwy,950002,3.39,4.515,0,26.998764,5.8,6 +7995,0,2.219478,1,1,0,2,5,,5,6,County Line,Hwy,950002,0,2.219,0,53.267469,3.7,5 +34044,0,1.406335,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34087,0,1.0549,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7742,0,1.171771,1,1,0,2,6,,5,6,County Line,Hwy,950002,2.219,3.39,0,28.122494,5.8,6 +34088,0,1.346401,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7740,0,1.506364,1,1,0,2,6,,5,6,County Line,Hwy,950002,4.515,6.02,0,36.152744,5.8,6 +7250,0,0.502271,1,1,0,2,6,GRV,5,6,County Line,Hwy,950002,6.02,6.522,0,12.054502,5.55,5 +9618,0,1.471069,1,1,1,2,3,,5,5,Michigan,Ave,1427301,6.204,7.674,0,35.305661,1.7,4 +10326,0,1.625103,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,3.006,4.631,0,39.002483,5.55,5 +10328,0,1.159346,1,1,0,2,5,,5,5,Arkona,Rd,1427305,4.451,5.61,0,27.824304,3.7,5 +10394,0,2.014877,1,1,0,2,3,,5,5,Michigan,Ave,1427301,7.674,9.688,0,48.357038,1.7,4 +10908,0,3.172847,1,1,0,2,5,GRV,5,5,Mooreville,Rd,1432907,0,3.172,0,76.148323,5.55,5 +10955,0,0.909752,1,1,0,2,5,,5,5,Macon,Rd,1432708,5.029,5.939,0,21.83406,3.7,5 +10972,0,1.214781,1,1,0,2,6,GRV,5,5,Macon,Rd,1432708,2.409,3.623,0,29.154748,5.55,5 +10990,0,1.501672,1,1,0,2,6,GRV,5,5,Saline Waterworks,Rd,1432706,3.997,5.498,0,36.040129,5.55,5 +21613,0,3.417028,1,1,0,2,5,,5,5,Austin,Rd,4604910,8.614,12.03,0,82.008677,3.7,5 +24597,0,1.361039,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.664937,0.15,4 +25494,0,0.600611,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.414658,0.15,4 +29988,0,3.208306,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,76.999346,0.15,4 +10324,0,1.005904,1,1,0,2,6,GRV,5,5,Case,Rd,1427308,0,1.005,0,24.141704,5.55,5 +10327,0,1.400289,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,1.607,3.006,0,33.606926,5.55,5 +10973,0,2.409851,1,1,0,2,6,GRV,5,5,Macon,Rd,1432708,0,2.409,0,57.836414,5.55,5 +24599,0,0.919067,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.057607,0.15,4 +24600,0,1.307633,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.383196,0.15,4 +10333,0,0.253133,1,1,0,2,6,GRV,5,5,Arkona,Rd,1427305,1.899,2.152,0,6.075194,5.55,5 +10928,0,1.013558,1,1,0,2,6,GRV,5,5,Lindsley,Rd,1432808,0,1.013,0,24.32539,5.55,5 +10052,0,0.882711,1,1,0,2,6,GRV,5,5,Case,Rd,1427308,1.005,1.881,0,21.185068,5.55,5 +10407,0,0.533998,1,1,0,2,3,,5,5,Michigan,Ave,1427301,5.582,6.116,0,12.815942,1.7,4 +9553,0,0.49866,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,1.115,1.607,0,11.967832,5.55,5 +10135,0,0.087954,1,1,0,2,3,,5,5,Michigan,Ave,1427301,6.116,6.204,0,2.110908,1.7,4 +10909,0,0.973505,1,1,0,2,5,,5,5,Goodrich,Rd,1432905,0,0.973,0,23.364116,3.7,5 +7987,0,0.417101,1,1,0,2,5,,,5,Hack,Rd,960602,4.033,4.45,0,10.010422,3.7,5 +21622,0,0.07771,1,1,0,2,5,,5,5,Goodrich,Rd,4603884,0,0.078,0,1.865047,3.7,5 +24605,0,0.680383,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.329193,0.15,4 +10059,0,1.26803,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,4.631,5.898,0,30.432727,5.55,5 +10941,0,1.034156,1,1,0,2,5,,5,5,Jordan,Rd,5498055,0,1.034,0,24.819755,3.7,5 +10940,0,1.919556,1,1,0,2,5,,5,5,Jordan,Rd,5498055,1.034,2.953,0,46.069353,3.7,5 +10959,0,0.30956,1,1,0,2,5,GRV,5,5,Macon,Rd,1432708,4.72,5.029,0,7.429448,5.55,5 +10971,0,1.096966,1,1,0,2,6,GRV,5,5,Macon,Rd,1432708,3.623,4.72,0,26.327193,5.55,5 +39932,1,0.162902,2,0,0,1,3,,3,1,DIBC Customs Plaza,,4718954,0,0.163,0,,5,5 +39933,1,0.691296,2,0,0,1,3,,3,1,DIBC Truck Inspection,,4718955,0,0.691,0,,5,5 +40024,1,0.030145,2,0,0,2,3,,4,3,Orchard Lake,Rd,634003,4.943,4.974,0,0.723491,3.7,5 +10317,0,0.543057,1,1,0,2,5,,5,6,Ridge,Hwy,1234805,0,0.543,0,13.033361,3.7,5 +21529,0,0.819891,1,1,0,2,5,GRV,5,5,Willow,Rd,4604005,0,0.82,0,19.677373,5.55,5 +10933,0,0.027687,1,1,0,2,5,GRV,5,5,Maple,Rd,1432804,2.005,2.033,0,0.664496,5.55,5 +9606,0,0.476486,1,1,1,2,3,,4,5,Michigan,Ave,1427301,10.327,10.803,0,11.435659,3.7,5 +10378,0,0.352535,2,2,1,2,3,,4,5,Michigan,Ave,1427301,11.749,12.101,0,8.460831,3.7,5 +10795,0,0.223154,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,7.179,7.402,0,5.355707,4.5,4.5 +10800,0,0.412703,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,6.625,7.037,0,9.904879,4.5,4.5 +10926,0,0.527062,1,1,0,2,4,,5,5,Textile,Rd,1432903,4.008,4.535,0,12.649495,3,4 +10952,0,1.156132,1,1,0,2,5,,5,5,Macon,Rd,1432708,5.939,7.094,0,27.747165,3.7,5 +10976,0,0.411976,1,1,0,2,5,,5,5,Saline Waterworks,Rd,1432706,7.109,7.521,0,9.887434,3.7,5 +19244,0,0.176522,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0,0.176,0,4.236516,5.8,4.5 +21207,0,0.450608,1,1,1,2,4,,4,5,Maple,St,4600080,0.156,0.607,0,10.814595,4.5,4.5 +21864,0,0.336838,1,1,0,2,5,,5,5,Industrial,Dr,4603881,0.135,0.472,0,8.084104,3.7,5 +25485,0,0.890139,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.363343,0.15,4 +25488,0,0.161019,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,3.864447,0.15,4 +26310,0,0.569619,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.670857,0.15,4 +26315,0,0.306711,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.361069,0.15,4 +26316,0,0.467914,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.229937,0.15,4 +26317,0,0.401899,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.645575,0.15,4 +26323,0,0.299089,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.178148,0.15,4 +10383,0,0.500863,1,1,0,2,3,,5,5,Michigan,Ave,1427301,9.688,10.189,0,12.020721,1.7,4 +25492,0,1.006243,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.14982,0.15,4 +10118,0,0.137335,1,1,1,2,3,,4,5,Michigan,Ave,1427301,10.189,10.327,0,3.296046,3.7,5 +25496,0,0.554117,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.298814,0.15,4 +21416,0,0.110688,1,1,0,2,5,,4,5,Austin,Rd,4604910,12.03,12.141,0,2.656521,5.8,4.5 +10788,0,0.225435,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,7.902,8.127,0,5.41045,3,4 +10982,0,0.519532,1,1,0,2,5,GRV,5,5,Saline Waterworks,Rd,1432706,6.506,7.026,0,12.468761,5.55,5 +11095,0,0.845796,1,1,0,2,7,,5,5,Weber,Rd,1447906,5.334,6.179,0,20.299095,5.8,6 +11156,0,0.438293,1,1,0,2,7,GRV,5,5,Noble,Rd,1444402,0.566,1.004,0,10.519041,5.55,5 +24674,0,0.490485,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.771645,0.15,4 +26339,0,0.464778,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.154676,0.15,4 +11383,0,0.565872,1,1,0,2,7,GRV,5,5,Noble,Rd,1444402,0,0.566,0,13.58092,5.55,5 +25495,0,0.570643,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.695432,0.15,4 +10985,0,0.25549,1,1,0,2,5,GRV,5,5,Saline Waterworks,Rd,1432706,6.251,6.506,0,6.131752,5.55,5 +24678,0,0.054727,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.31345,0.15,4 +26319,0,0.298407,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.161758,0.15,4 +10794,0,0.500179,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,7.402,7.902,0,12.004299,3,4 +26318,0,0.341223,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.189355,0.15,4 +10787,0,0.523416,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,8.127,8.65,0,12.561974,3,4 +10823,0,0.337838,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.365,5.703,0,8.108113,3,4 +10827,0,1.280934,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,4.085,5.365,0,30.74241,3.7,5 +21468,0,0.758459,1,1,0,2,4,,5,5,Bemis,Rd,4604906,0,0.758,0,18.203018,3,4 +10115,0,0.151026,2,2,1,2,3,,4,5,Michigan,Ave,1427301,11.123,11.274,0,3.624622,3.7,5 +10793,0,0.313173,1,1,0,2,5,,4,5,Clark,St,1439406,0,0.313,0,7.516156,5.8,4.5 +10816,0,0.283861,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.991,6.275,0,6.812674,3,4 +10833,0,0.448778,1,1,0,2,5,,5,5,Old Creek,Dr,1439007,0.263,0.712,0,10.770676,3.7,5 +10942,0,0.081277,1,1,0,2,5,,5,5,Monroe,St,1432708,7.094,7.176,0,1.950644,3.7,5 +30107,0,0.353216,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.477173,0.15,4 +30108,0,0.404166,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.699989,0.15,4 +26311,0,0.259761,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.234266,0.15,4 +10381,0,0.224359,2,2,1,2,3,,4,5,Michigan,Ave,1427301,10.899,11.123,0,5.384625,3.7,5 +10812,0,0.349904,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,6.275,6.625,0,8.397692,4.5,4.5 +21785,0,0.209604,1,1,0,2,5,,4,5,Bennett,St,4603052,0.303,0.513,0,5.030486,5.8,4.5 +10382,0,0.096005,2,2,1,2,3,,4,5,Michigan,Ave,1427301,10.803,10.899,0,2.304109,3.7,5 +10305,0,0.059116,1,1,0,2,5,,4,5,Harris,St,1427502,0.611,0.67,0,1.418796,5.8,4.5 +9545,0,0.220582,1,1,0,2,4,,5,5,Willis,Rd,1427410,0,0.221,0,5.293964,3,4 +10817,0,0.256451,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.735,5.991,0,6.154826,3,4 +11308,0,0.263516,1,1,0,2,5,,5,5,Old Creek,Dr,1439007,0,0.263,0,6.324386,3.7,5 +26325,0,0.223221,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,5.3573,0.15,4 +10821,0,0.031997,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.703,5.735,0,0.767929,3,4 +26324,0,0.054547,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.309138,0.15,4 +9602,0,0.286431,2,2,0,2,3,,4,5,Michigan,Ave,1427301,11.274,11.56,0,6.874332,3.7,5 +10380,0,0.18863,2,2,1,2,3,,4,5,Michigan,Ave,1427301,11.56,11.749,0,4.527116,3.7,5 +11548,0,0.077878,1,1,0,2,4,,5,5,Old Creek,Dr,1439007,0.712,0.79,0,1.869064,3,4 +21440,0,0.15613,1,1,0,2,4,,4,5,Maple,St,4600080,0,0.156,0,3.747127,4.5,4.5 +21682,0,0.111404,1,1,0,2,4,,5,5,Bemis,Rd,4604905,0,0.111,0,2.673689,3,4 +22130,0,0.135034,1,1,0,2,5,,5,5,Industrial,Dr,4603881,0,0.135,0,3.240821,3.7,5 +10922,0,0.236611,1,1,0,2,4,,4,5,Textile,Rd,1432903,5.281,5.517,0,5.678669,4.5,4.5 +19241,0,0.650801,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0.809,1.46,0,15.619226,5.8,4.5 +21205,0,0.616851,1,1,0,2,4,,4,5,Maple,St,4600080,1.238,1.854,0,14.804418,4.5,4.5 +25493,0,0.568494,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.643868,0.15,4 +26326,0,0.531619,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.758846,0.15,4 +19243,0,0.263071,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0.176,0.439,0,6.313698,5.8,4.5 +21439,0,0.314433,1,1,1,2,4,,4,5,Maple,St,4600080,0.607,0.921,0,7.546401,4.5,4.5 +24709,0,0.528231,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.677535,0.15,4 +26314,0,0.346076,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.305813,0.15,4 +26320,0,0.450426,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.810234,0.15,4 +24698,0,0.386381,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.273143,0.15,4 +10797,0,0.141541,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,7.037,7.179,0,3.396982,4.5,4.5 +26322,0,0.382471,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.179312,0.15,4 +19242,0,0.370013,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0.439,0.809,0,8.880306,5.8,4.5 +21203,0,0.316998,1,1,0,2,4,,4,5,Maple,St,4600080,0.921,1.238,0,7.60795,4.5,4.5 +10923,0,0.745755,1,1,0,2,4,,4,5,Textile,Rd,1432903,4.535,5.281,0,17.89813,4.5,4.5 +21966,0,0.180582,1,1,0,2,4,,4,5,Maple,St,4600080,1.854,2.035,0,4.333962,4.5,4.5 +26328,0,0.307617,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.382814,0.15,4 +10108,0,0.448552,2,2,1,2,3,,4,5,Michigan,Ave,1427301,12.101,12.55,0,10.765258,3.7,5 +19517,0,0.590554,1,1,0,2,5,,4,5,Industrial,Dr,1885501,0.439,1.029,0,14.173289,5.8,4.5 +19518,0,0.439244,1,1,0,2,5,,4,5,Industrial,Dr,1885501,0,0.439,0,10.541854,5.8,4.5 +26235,0,0.251445,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.034681,0.15,4 +26321,0,0.383164,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.195941,0.15,4 +26312,0,0.283113,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.794717,0.15,4 +10918,0,0.315715,1,1,0,2,4,,4,5,Textile,Rd,1432903,5.698,6.014,0,7.577155,4.5,4.5 +10920,0,0.180797,1,1,0,2,4,,4,5,Textile,Rd,1432903,5.517,5.698,0,4.339135,4.5,4.5 +8667,0,2.210682,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,1.449,3.659,0,53.056377,3.7,5 +8919,0,1.510618,1,1,0,2,6,,5,6,Cone,Rd,1223807,3.027,4.537,0,36.254823,5.8,6 +8933,0,3.038088,1,1,0,2,7,,5,6,Milwaukee,Rd,1223805,2.008,5.045,0,72.914114,5.8,6 +8991,0,1.82209,1,1,0,2,4,,5,6,Tecumseh,St,1223803,3.127,4.949,0,43.730152,3,4 +9124,1,4.734787,2,0,0,1,2,,4,6,N US 23,,1223505,16.845,21.578,0,,0.8,7.5 +9148,-1,4.613267,0,2,0,1,2,,4,6,S US 23,,1223504,16.921,21.533,0,,0.8,7.5 +9218,0,1.261836,1,1,0,2,6,,5,6,Brewer,Rd,1233507,3.4,4.661,0,30.284057,5.8,6 +20420,0,2.005751,1,1,0,2,5,,5,6,Dennison,Rd,4301492,5.009,7.014,0,48.138027,3.7,5 +8803,0,1.026159,1,1,0,2,4,,5,6,Tecumseh,St,1223803,2.101,3.127,0,24.627806,3,4 +9220,0,1.985496,1,1,0,2,6,,5,6,Brewer,Rd,1233507,1.056,3.041,0,47.651894,5.8,6 +20638,0,0.803115,1,1,0,2,5,,5,6,Dennison,Rd,4301492,4.206,5.009,0,19.274769,3.7,5 +30661,0,0.603889,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,14.493346,0.15,4 +30662,0,1.167003,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,28.008061,0.15,4 +31015,0,1.706648,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,40.959563,0.15,4 +8995,0,0.683133,1,1,0,2,4,,5,6,Tecumseh,St,1223803,1.419,2.101,0,16.395202,3,4 +31017,0,1.699716,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,40.79318,0.15,4 +31016,0,0.444139,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.659336,0.15,4 +9219,0,0.359226,1,1,0,2,6,,5,6,Brewer,Rd,1233507,3.041,3.4,0,8.62142,5.8,6 +10405,0,0.624739,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,3.698,4.323,0,14.993744,3.7,5 +10412,0,0.798803,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,2.9,3.698,0,19.171277,3.7,5 +8736,0,1.030986,1,1,0,2,6,,5,6,Cone,Rd,1223807,1.997,3.027,0,24.743654,5.8,6 +30663,0,1.727656,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,41.463733,0.15,4 +19884,0,1.004908,1,1,0,2,5,,5,6,Dennison,Rd,4301492,7.515,8.52,0,24.117785,3.7,5 +20233,0,0.501303,1,1,0,2,5,,5,6,Dennison,Rd,4301492,7.014,7.515,0,12.031277,3.7,5 +30666,0,0.41102,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,9.86447,0.15,4 +8793,0,0.187217,1,1,1,2,4,,4,6,Monroe,St,1223803,5.994,6.181,0,4.493212,4.5,4.5 +8814,0,0.407867,1,1,0,2,5,,5,6,Stowell,Rd,1224210,2.831,3.238,0,9.788798,3.7,5 +8817,0,0.412171,1,1,0,2,5,,4,6,Main,St,1224210,0.658,1.07,0,9.892106,5.8,4.5 +8840,0,0.416469,1,1,1,2,5,,4,6,Ann Arbor,Rd,1224204,1.033,1.449,0,9.99526,5.8,4.5 +31347,0,2.25773,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,54.185509,0.15,4 +31348,0,0.169649,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.071588,0.15,4 +34011,0,0.37714,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,9.051355,0.15,4 +8501,1,0.364051,2,0,0,1,2,,4,6,N US 23,,1223505,16.481,16.845,0,,0.8,7.5 +8522,-1,0.3442,0,2,0,1,2,,4,6,S US 23,,1223504,16.577,16.921,0,,0.8,7.5 +8685,1,0.179537,1,0,0,1,2,RON,4,6,Tecumseh/N US 23,RAMP,1224009,0,0.18,0,,1.09,4 +8841,0,0.662589,1,1,1,2,5,,4,6,Ann Arbor,Rd,1224204,0,0.662,0,15.902133,5.8,4.5 +8936,1,0.186695,1,0,0,1,2,ROF,4,6,S US 23/Tecumseh,RAMP,1223804,0,0.187,0,,2.24,5 +8990,0,0.105442,2,2,1,2,4,,4,6,Tecumseh,St,1223803,5.164,5.269,0,2.530598,4.5,4.5 +9007,1,0.171494,1,0,0,1,2,RON,4,6,Tecumseh/S US 23,RAMP,1223802,0,0.171,0,,1.09,4 +9217,0,0.803082,1,1,0,2,6,,5,6,Brewer,Rd,1233507,4.661,5.464,0,19.273966,5.8,6 +31374,0,0.140362,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.368682,0.15,4 +31383,0,0.564874,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,13.556983,0.15,4 +8796,0,0.215424,2,2,1,2,4,,5,6,Tecumseh,St,1223803,4.949,5.164,0,5.170175,3,4 +31376,0,0.070292,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,1.686996,0.15,4 +8661,0,0.555246,1,1,0,2,6,,4,6,Riley,St,1224210,0.103,0.658,0,13.325892,6.55,4.5 +8989,0,0.484703,1,1,1,2,4,,4,6,Tecumseh,St,1223803,5.326,5.81,0,11.63288,4.5,4.5 +8795,0,0.056247,2,2,1,2,4,,4,6,Tecumseh,St,1223803,5.269,5.326,0,1.349934,4.5,4.5 +8852,1,0.198255,1,0,0,1,2,ROF,4,6,N US 23/Tecumseh,RAMP,1224008,0,0.198,0,,2.24,5 +8566,0,0.329514,1,1,0,2,5,,4,6,Toledo,St,1225909,1.367,1.696,0,7.908328,5.8,4.5 +8794,0,0.071027,1,1,1,2,4,,4,6,Tecumseh,St,1223803,5.81,5.881,0,1.704651,4.5,4.5 +8988,0,0.112901,1,1,1,2,4,,4,6,Tecumseh,St,1223803,5.881,5.994,0,2.709635,4.5,4.5 +31381,0,1.044818,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,25.075624,0.15,4 +8669,0,0.370466,1,1,1,2,5,,4,6,Ann Arbor,Rd,1224204,0.662,1.033,0,8.89118,5.8,4.5 +8655,0,1.761078,1,1,0,2,5,,4,6,Stowell,Rd,1224210,1.07,2.831,0,42.265872,5.8,4.5 +8792,0,1.364685,1,1,0,2,4,,4,6,Custer,Rd,1223803,6.313,7.677,0,32.752439,4.5,4.5 +31377,0,0.213023,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.112544,0.15,4 +8987,0,0.131596,1,1,1,2,4,,4,6,Monroe,St,1223803,6.181,6.313,0,3.158313,4.5,4.5 +31378,0,0.043572,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,1.045728,0.15,4 +31380,0,0.091711,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.201061,0.15,4 +8654,0,0.015592,1,1,0,2,7,,5,6,Dixon,Rd,1224309,3.624,3.64,0,0.374215,5.8,6 +8663,0,0.909446,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,4.163,5.072,0,21.826705,3.7,5 +8836,0,0.503822,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,3.659,4.163,0,12.091733,3.7,5 +8730,0,0.282585,1,1,0,2,5,,5,6,Cone,Rd,1223807,4.537,4.82,0,6.782033,3.7,5 +8741,1,0.374711,1,0,0,1,2,RON,5,6,Cone/S US 23,RAMP,1223806,0,0.375,0,,1.09,4 +8832,0,0.095384,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,5.072,5.167,0,2.289205,3.7,5 +9121,1,0.618503,2,0,0,1,2,,5,6,N US 23,,1223505,21.578,22.197,0,,1.02,7 +9146,-1,0.631068,0,2,0,1,2,,5,6,S US 23,,1223504,21.533,22.163,0,,1.02,7 +8850,1,0.303254,1,0,0,1,2,ROF,5,6,N US 23/Ann Arbor,RAMP,1224010,0,0.303,0,,2.24,5 +8677,1,0.276539,1,0,0,1,2,RON,5,6,Cone/N US 23,RAMP,1224101,0,0.276,0,,1.09,4 +8728,1,0.312605,1,0,0,1,2,ROF,5,6,S US 23/Cone,RAMP,1223808,0,0.313,0,,2.24,5 +8912,0,0.220561,1,1,0,2,5,,5,6,Cone,Rd,1223807,4.82,5.04,0,5.293455,3.7,5 +9213,0,0.49848,1,1,0,2,5,,5,6,Redman,Rd,1233610,4.018,4.516,0,11.963522,3.7,5 +10321,0,0.562875,2,2,1,2,4,,5,5,Willis,Rd,1427410,4.261,4.823,0,13.508998,3,4 +10359,0,0.278199,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.328,16.606,0,6.676786,3.7,5 +10469,0,1.58461,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,5.064,6.648,0,38.030628,3.7,5 +10470,0,1.160518,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,3.904,5.064,0,27.852439,3.7,5 +10482,0,0.972666,1,1,0,2,5,,5,5,Willow,Rd,1431207,1.155,2.127,0,23.343977,3.7,5 +10503,1,3.159719,2,0,0,1,2,,5,5,N US 23,,1431202,1.642,4.8,0,,1.02,7 +10705,0,1.994915,1,1,0,2,6,GRV,5,5,McCrone,Rd,1433205,0.818,2.812,0,47.877972,5.55,5 +10716,0,1.276389,1,1,0,2,5,,5,5,Moon,Rd,1433104,1.254,2.53,0,30.633333,3.7,5 +10874,0,0.720938,1,1,0,2,4,,4,5,Main,St,1432907,6.854,7.575,0,17.30251,4.5,4.5 +11384,0,0.574704,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,3.436,4.01,0,13.792884,3,4 +11463,-1,3.458501,0,2,0,1,2,,5,5,S US 23,,1431603,1.407,4.864,0,,1.02,7 +20337,0,1.23345,1,1,0,2,5,,5,5,Platt,Rd,4302160,2.838,4.071,0,29.602793,3.7,5 +21576,0,0.948512,1,1,0,2,4,,4,5,Bemis,Rd,4604906,3.811,4.759,0,22.76429,4.5,4.5 +25486,0,2.267374,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,54.416971,0.15,4 +25704,0,1.142858,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,27.428581,0.15,4 +26331,0,1.507497,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.179933,0.15,4 +30106,0,1.177636,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.263259,0.15,4 +34013,0,0.510303,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.247261,0.15,4 +9215,0,1.030984,1,1,0,2,5,,5,6,Redman,Rd,1233610,1.961,2.992,0,24.743606,3.7,5 +10472,0,0.271599,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,2.226,2.497,0,6.518375,3.7,5 +10473,0,0.821798,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,1.404,2.226,0,19.723154,3.7,5 +10837,0,1.39321,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,0,1.393,0,33.437036,3.7,5 +10893,0,1.012516,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,4.679,5.691,0,24.300379,3.7,5 +20778,0,1.006063,1,1,0,2,5,,5,5,Platt,Rd,4302160,1.054,2.06,0,24.145514,3.7,5 +25024,0,0.996938,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.926509,0.15,4 +26330,0,0.667511,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.020259,0.15,4 +30100,0,1.462213,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.093122,0.15,4 +10474,0,1.404926,1,1,0,2,5,,5,5,Dennison,Rd,1431208,0,1.404,0,33.718231,3.7,5 +10895,0,0.533601,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,4.145,4.679,0,12.806412,3.7,5 +10930,0,0.479421,1,1,0,2,5,,5,5,Ridge,Rd,1432807,1.395,1.875,0,11.506093,3.7,5 +20281,0,0.514379,1,1,0,2,5,,5,6,Dennison,Rd,4301492,11.528,12.042,0,12.345101,3.7,5 +39912,-1,0.265182,0,2,0,2,4,DIV,4,2,Ecorse,Rd,5495384,0,0.265,0,6.364373,4.5,4.5 +39917,1,0.057805,1,0,0,1,2,RON,3,2,N M 39 Service/N M 39,RAMP,4719482,0,0.058,0,,1.09,4 +39914,0,0.071532,1,1,0,2,4,,4,2,Sheldon,Rd,5495478,0,0.072,0,1.716759,4.5,4.5 +10832,0,1.042098,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,1.393,2.434,0,25.010356,3.7,5 +9214,0,1.026736,1,1,0,2,5,,5,6,Redman,Rd,1233610,2.992,4.018,0,24.641653,3.7,5 +10875,0,0.202684,1,1,0,2,4,,4,5,Mooreville,Rd,1432907,6.652,6.854,0,4.864425,4.5,4.5 +10876,0,0.506402,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,6.146,6.652,0,12.153657,3.7,5 +20088,0,0.60243,1,1,0,2,5,,4,5,Platt,Rd,4302160,0.452,1.054,0,14.458317,5.8,4.5 +10889,0,0.455098,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,5.691,6.146,0,10.922344,3.7,5 +26335,0,0.255949,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.142776,0.15,4 +10471,0,1.406733,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,2.497,3.904,0,33.761599,3.7,5 +10483,0,1.155557,1,1,0,2,5,GRV,5,5,Willow,Rd,1431207,0,1.155,0,27.733372,5.55,5 +20530,0,0.778289,1,1,0,2,5,,5,5,Platt,Rd,4302160,2.06,2.838,0,18.678932,3.7,5 +9544,0,2.082537,1,1,0,2,4,,5,5,Willis,Rd,1427410,2.179,4.261,0,49.980886,3,4 +9589,0,0.552047,1,1,0,2,3,,4,5,Michigan,Ave,1427301,14.284,14.836,0,13.24914,3.7,5 +10712,0,0.8466,1,1,0,2,4,,4,5,Moon,Rd,1433104,4.561,5.407,0,20.318408,4.5,4.5 +10913,0,0.118744,1,1,0,2,4,,4,5,Textile,Rd,1432903,7.274,7.392,0,2.849855,4.5,4.5 +20590,0,1.022467,1,1,0,2,5,,4,5,Platt,Rd,4302160,6.083,7.105,0,24.539197,5.8,4.5 +21310,0,0.468518,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.271,2.739,0,11.24442,4.5,4.5 +21599,0,0.322181,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,0,0.322,0,7.732349,6.55,4.5 +21827,0,0.958048,1,1,0,2,7,,4,5,Fosdick,Rd,4600011,0,0.958,0,22.99314,6.55,4.5 +25015,0,0.626597,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.038333,0.15,4 +25017,0,0.400492,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.611815,0.15,4 +26345,0,0.760211,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.245071,0.15,4 +30123,0,0.258711,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.209074,0.15,4 +10714,0,1.030111,1,1,0,2,5,,5,5,Moon,Rd,1433104,3.531,4.561,0,24.722669,3.7,5 +22017,0,0.401237,1,1,0,2,4,,4,5,Bemis,Rd,4604906,1.327,1.728,0,9.629683,4.5,4.5 +10715,0,1.001316,1,1,0,2,5,,5,5,Moon,Rd,1433104,2.53,3.531,0,24.031591,3.7,5 +21738,0,0.506439,1,1,0,2,4,,4,5,Bemis,Rd,4604906,1.728,2.234,0,12.154547,4.5,4.5 +21525,0,0.036613,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.234,2.271,0,0.87871,4.5,4.5 +10037,0,0.577224,1,1,0,2,4,,4,5,State,Rd,1427508,0,0.577,0,13.853381,4.5,4.5 +10098,0,0.285331,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.999,14.284,0,6.847935,3.7,5 +10100,0,0.080395,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.639,13.719,0,1.929483,3.7,5 +10914,0,0.486908,1,1,0,2,4,,4,5,Textile,Rd,1432903,6.787,7.274,0,11.685795,4.5,4.5 +19638,0,0.259682,1,1,0,2,7,,4,5,Old State,Rd,1842602,0,0.26,0,6.232359,6.55,4.5 +21826,0,0.353888,1,1,0,2,7,,4,5,Fosdick,Rd,4600011,0.958,1.312,0,8.493309,6.55,4.5 +25491,0,0.601947,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.446718,0.15,4 +26313,0,0.39161,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.398631,0.15,4 +25016,0,0.413171,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.916112,0.15,4 +25018,0,0.563785,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.530849,0.15,4 +10372,0,0.26544,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.374,13.639,0,6.370558,3.7,5 +10709,0,0.146299,1,1,0,2,4,,4,5,Moon,Rd,1433104,5.407,5.554,0,3.51118,4.5,4.5 +10104,0,0.106831,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.267,13.374,0,2.563933,3.7,5 +10916,0,0.481329,1,1,0,2,4,,4,5,Textile,Rd,1432903,6.306,6.787,0,11.551904,4.5,4.5 +26344,0,0.641705,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.400909,0.15,4 +25014,0,0.501685,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.040431,0.15,4 +10371,0,0.279641,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.719,13.999,0,6.711386,3.7,5 +30122,0,0.34485,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.276391,0.15,4 +9531,0,0.617749,1,1,0,2,4,,4,5,State,Rd,1427508,0.577,1.195,0,14.825971,4.5,4.5 +20135,0,1.008004,1,1,0,2,5,,5,5,Platt,Rd,4302160,4.071,5.078,0,24.192098,3.7,5 +21800,0,1.038376,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.773,3.811,0,24.921018,4.5,4.5 +22068,0,0.033789,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.739,2.773,0,0.810946,4.5,4.5 +20830,0,1.00536,1,1,0,2,5,,5,5,Platt,Rd,4302160,5.078,6.083,0,24.128643,3.7,5 +10097,0,0.460454,1,1,1,2,3,,4,5,Michigan,Ave,1427301,15.495,15.955,0,11.050894,3.7,5 +10911,0,0.603658,1,1,0,2,4,,4,5,Textile,Rd,1432903,8.43,9.034,0,14.487782,4.5,4.5 +20385,0,0.383536,1,1,0,2,5,,4,5,Platt,Rd,4302160,7.105,7.489,0,9.204869,5.8,4.5 +21696,0,0.233327,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,1.173,1.407,0,5.599854,6.55,4.5 +26341,0,0.733705,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.608928,0.15,4 +26342,0,0.880086,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.122076,0.15,4 +29489,0,1.044452,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,25.066853,0.15,4 +21401,0,0.509083,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,0.322,0.831,0,12.217994,6.55,4.5 +26343,0,0.749836,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.996075,0.15,4 +30124,0,0.592704,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.224896,0.15,4 +21950,0,0.342503,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,0.831,1.173,0,8.220069,6.55,4.5 +10370,0,0.272734,1,1,0,2,3,,4,5,Michigan,Ave,1427301,14.836,15.109,0,6.545622,3.7,5 +10912,0,0.191666,1,1,0,2,4,,4,5,Textile,Rd,1432903,8.239,8.43,0,4.599977,4.5,4.5 +25019,0,0.403415,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.68195,0.15,4 +25021,0,0.387845,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.308282,0.15,4 +10368,0,0.386205,1,1,0,2,3,,4,5,Michigan,Ave,1427301,15.109,15.495,0,9.268917,3.7,5 +29490,0,0.372834,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.948026,0.15,4 +9587,0,0.18305,1,1,1,2,3,,4,5,Michigan,Ave,1427301,15.955,16.138,0,4.393194,3.7,5 +10910,0,0.167333,1,1,0,2,4,,4,5,Textile,Rd,1432903,9.034,9.201,0,4.016,4.5,4.5 +20183,0,0.561783,1,1,0,2,5,,4,5,Platt,Rd,4302160,7.489,8.05,0,13.482792,5.8,4.5 +20878,0,0.06902,1,1,0,2,5,,4,5,Platt,Rd,4302160,8.05,8.119,0,1.656482,5.8,4.5 +10364,0,0.19029,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.138,16.328,0,4.566956,3.7,5 +8719,0,1.254387,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,1.02,2.274,0,30.105283,3,4 +10480,0,0.565384,1,1,0,2,5,,5,5,Willow,Rd,1431207,2.886,3.451,0,13.569214,3.7,5 +10953,0,1.005313,1,1,0,2,6,GRV,5,5,Gooding,Rd,1447502,1.007,2.012,0,24.127519,5.55,5 +11387,0,0.782753,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,1.22,2.002,0,18.786075,3,4 +8903,0,0.752476,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,0.268,1.02,0,18.059422,3,4 +8904,1,0.251487,1,0,0,1,2,ROF,5,6,S US 23/Main,RAMP,1223902,0,0.251,0,,2.24,5 +9125,1,0.363193,1,0,0,1,2,RON,5,6,Main/S US 23,RAMP,1226002,0,0.363,0,,1.09,4 +9202,0,0.284294,1,1,0,2,4,,5,6,Main,St,1226001,0,0.284,0,6.823044,3,4 +10506,1,0.769196,2,0,0,1,2,,4,5,N US 23,,1431202,0,0.769,0,,0.8,7.5 +11399,0,0.103962,1,1,0,2,4,,4,5,Dexter,St,1431609,0.358,0.462,0,2.495088,4.5,4.5 +11465,-1,1.155017,0,2,0,1,2,,5,5,S US 23,,1431603,0.252,1.407,0,,1.02,7 +11469,-1,0.252463,0,2,0,1,2,,4,5,S US 23,,1431603,0,0.252,0,,0.8,7.5 +21829,1,0.26119,1,0,0,1,2,RON,4,5,Carpenter/S US 12,RAMP,4600009,0,0.261,0,,1.09,4 +26337,0,0.336794,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.083066,0.15,4 +8721,0,0.060725,1,1,0,2,4,,4,6,County,St,1223905,0,0.061,0,1.457412,4.5,4.5 +20531,0,0.19953,1,1,0,2,5,,5,6,Wabash,Rd,4302161,0,0.2,0,4.788731,3.7,5 +26338,0,0.339947,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.158728,0.15,4 +9964,0,0.244126,1,1,0,2,5,,5,6,Wabash,Rd,1239109,3.012,3.256,0,5.859027,3.7,5 +30667,0,0.176981,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.247543,0.15,4 +9962,0,0.085779,1,1,0,2,5,,5,6,Wabash,Rd,1239109,3.256,3.342,0,2.058699,3.7,5 +26340,0,0.171361,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.112671,0.15,4 +10872,0,0.099388,1,1,0,2,4,,4,5,Main,St,1432907,7.586,7.685,0,2.385307,4.5,4.5 +20338,0,0.055758,1,1,0,2,5,,4,5,Wabash,St,4302161,0.2,0.255,0,1.338186,5.8,4.5 +10873,0,0.010556,1,1,0,2,4,,4,5,Main,St,1432907,7.575,7.586,0,0.25335,4.5,4.5 +11400,0,0.357963,1,1,0,2,4,,4,5,Dexter,St,1431609,0,0.358,0,8.591115,4.5,4.5 +10485,1,0.565691,1,0,0,1,2,ROF,5,5,N US 23/Carpenter,RAMP,1431204,0,0.566,0,,2.24,5 +10504,1,0.46593,2,0,0,1,2,,5,5,N US 23,,1431202,1.176,1.642,0,,1.02,7 +10505,1,0.407275,2,0,0,1,2,,5,5,N US 23,,1431202,0.769,1.176,0,,1.02,7 +11394,0,0.17965,1,1,0,2,4,,4,5,Dexter,St,1431609,0.871,1.05,0,4.311605,4.5,4.5 +19612,1,0.39561,1,0,0,1,2,RON,5,5,Carpenter/N US 23,RAMP,1908710,0,0.396,0,,1.09,4 +25023,0,0.37692,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.046082,0.15,4 +29989,0,0.301796,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.243105,0.15,4 +11397,0,0.167763,1,1,1,2,4,,4,5,Dexter,St,1431609,0.703,0.871,0,4.026312,4.5,4.5 +11398,0,0.241515,1,1,1,2,4,,4,5,Dexter,St,1431609,0.462,0.703,0,5.796361,4.5,4.5 +11411,1,0.308403,1,0,0,1,2,ROF,4,5,S US 23/Carpenter,RAMP,1431605,0,0.308,0,,2.24,5 +10484,1,0.256414,1,0,0,1,2,RON,5,5,Carpenter/N US 23,RAMP,1431205,0,0.256,0,,1.09,4 +11392,0,0.108311,1,1,0,2,4,,5,5,Dexter,St,1431609,1.05,1.159,0,2.599463,3,4 +11391,0,0.061053,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,1.159,1.22,0,1.465276,3,4 +8499,1,0.270092,2,0,0,1,2,,5,6,N US 23,,1223505,25.153,25.423,0,,1.02,7 +8673,1,0.412921,1,0,0,1,2,RON,5,6,Plank/N US 23,RAMP,1224103,0,0.413,0,,1.09,4 +8921,-1,0.348637,0,2,0,1,2,,5,6,S US 23,,1223504,25.188,25.537,0,,1.02,7 +26336,0,0.629806,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.115342,0.15,4 +8540,0,0.012247,1,1,0,2,4,,5,6,Plank,Rd,1226001,0.751,0.763,0,0.293938,3,4 +8847,1,0.244379,1,0,0,1,2,ROF,5,6,N US 23/Plank,RAMP,1224102,0,0.244,0,,2.24,5 +9142,-1,0.230376,0,2,0,1,2,,5,6,S US 23,,1223504,24.958,25.188,0,,1.02,7 +9186,0,0.230216,1,1,0,2,4,,5,6,Plank,Rd,1226001,0.521,0.751,0,5.525176,3,4 +8559,0,0.012335,1,1,0,2,4,,5,6,Main,St,1226001,0.509,0.521,0,0.296046,3,4 +9120,1,0.064537,2,0,0,1,2,,5,6,N US 23,,1223505,25.423,25.488,0,,1.02,7 +10481,0,0.758995,1,1,0,2,5,,5,5,Willow,Rd,1431207,2.127,2.886,0,18.215873,3.7,5 +11385,0,1.43398,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,2.002,3.436,0,34.415528,3,4 +11124,0,1.007382,1,1,0,2,6,GRV,5,5,Gooding,Rd,1447502,0,1.007,0,24.177172,5.55,5 +8885,0,0.500192,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,2.274,2.774,0,12.004598,3,4 +10479,0,0.679475,1,1,0,2,5,,5,5,Willow,Rd,1431207,3.451,4.131,0,16.307405,3.7,5 +10041,0,0.831796,1,1,0,2,4,,5,5,Willis,Rd,1427410,5.721,6.553,0,19.963115,3,4 +10466,0,0.817536,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,8.423,9.241,0,19.620854,5.8,4.5 +10500,1,2.820149,2,0,0,1,2,,4,5,N US 23,,1431202,5.44,8.259,0,,0.8,7.5 +11334,0,0.508259,1,1,0,2,5,GRV,4,5,Merritt,Rd,1438204,0.735,1.243,0,12.19821,6.55,4.5 +11372,0,1.017313,1,1,0,2,4,,4,5,Carpenter,Rd,1431609,6.038,7.055,0,24.415521,4.5,4.5 +11459,-1,2.788194,0,2,0,1,2,,4,5,S US 23,,1431603,5.434,8.221,0,,0.8,7.5 +11503,0,0.766341,1,1,0,2,4,,4,5,Textile,Rd,1438102,1.245,2.011,0,18.392192,4.5,4.5 +22122,0,1.295887,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,5.271,6.566,0,31.101279,6.55,4.5 +25027,0,1.021133,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.507194,0.15,4 +10311,0,0.50741,1,1,0,2,4,,5,5,Willis,Rd,1427410,5.214,5.721,0,12.177833,3,4 +10459,1,0.26209,1,0,0,1,2,RON,5,5,E Willis/N US 23,RAMP,1431210,0,0.262,0,,1.09,4 +10460,1,0.369039,1,0,0,1,2,ROF,5,5,N US 23/Willis,RAMP,1431209,0,0.369,0,,2.24,5 +10502,1,0.326,2,0,0,1,2,,5,5,N US 23,,1431202,4.8,5.126,0,,1.02,7 +11375,0,0.258999,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,4.759,5.017,0,6.215979,3,4 +11408,1,0.30336,1,0,0,1,2,RON,5,5,Willis/S US 23,RAMP,1431606,0,0.303,0,,1.09,4 +11460,-1,0.56955,0,2,0,1,2,,5,5,S US 23,,1431603,4.864,5.434,0,,1.02,7 +21357,0,0.512272,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,4.759,5.271,0,12.294521,6.55,4.5 +30101,0,0.631607,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.158565,0.15,4 +11382,0,0.748761,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,4.01,4.759,0,17.970261,3,4 +26334,0,0.710419,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.050047,0.15,4 +26333,0,0.060197,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.444722,0.15,4 +10047,0,0.163174,1,1,0,2,4,,5,5,Willis,Rd,1427410,5.051,5.214,0,3.91617,3,4 +11374,0,1.021016,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,5.017,6.038,0,24.504384,3,4 +10048,0,0.114437,1,1,0,2,4,,5,5,Willis,Rd,1427410,4.854,4.968,0,2.74648,3,4 +10458,1,0.314054,1,0,0,1,2,RON,5,5,W Willis/N US 23,RAMP,1431303,0,0.314,0,,1.09,4 +10501,1,0.313565,2,0,0,1,2,,5,5,N US 23,,1431202,5.126,5.44,0,,1.02,7 +11404,1,0.30062,1,0,0,1,2,ROF,5,5,S US 23/Willis,RAMP,1431607,0,0.301,0,,2.24,5 +10318,0,0.030145,2,2,1,2,4,,5,5,Willis,Rd,1427410,4.823,4.854,0,0.723482,3,4 +10316,0,0.082835,1,1,0,2,4,,5,5,Willis,Rd,1427410,4.968,5.051,0,1.988032,3,4 +10726,0,0.482619,1,1,0,2,4,,4,5,Textile,Rd,1438102,0.24,0.723,0,11.582852,4.5,4.5 +11368,0,1.026787,1,1,0,2,4,,4,5,Carpenter,Rd,1431609,7.055,8.081,0,24.642886,4.5,4.5 +11585,0,0.504138,1,1,0,2,5,GRV,4,5,Merritt,Rd,1438204,0.231,0.735,0,12.099306,6.55,4.5 +25025,0,1.024595,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.590283,0.15,4 +10216,1,0.283937,1,0,0,1,2,RON,4,5,Michigan/S US 23,RAMP,1427605,0,0.284,0,,1.09,4 +10090,0,0.071752,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.606,16.678,0,1.722048,3.7,5 +25026,0,0.14904,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.576964,0.15,4 +11547,0,0.522467,1,1,0,2,4,,4,5,Textile,Rd,1438102,0.723,1.245,0,12.539206,4.5,4.5 +10468,0,0.559637,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,6.648,7.207,0,13.431288,3.7,5 +26239,0,1.280782,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,30.738759,0.15,4 +10704,0,0.443387,1,1,0,2,6,GRV,5,5,McCrone,Rd,1433205,2.812,3.255,0,10.641293,5.55,5 +10467,0,1.216805,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,7.207,8.423,0,29.203322,3.7,5 +10464,0,0.36172,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,9.546,9.907,0,8.681278,5.8,4.5 +11072,0,0.438667,1,1,0,2,4,,4,5,Textile,Rd,1438102,2.011,2.449,0,10.528002,4.5,4.5 +11584,0,0.826466,1,1,0,2,5,,4,5,Merritt,Rd,1438204,1.642,2.468,0,19.835195,5.8,4.5 +26247,0,0.597624,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.342965,0.15,4 +30104,0,0.507066,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.169573,0.15,4 +10465,0,0.305296,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,9.241,9.546,0,7.327113,5.8,4.5 +26248,0,0.2882,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.916804,0.15,4 +5136,1,0.211219,1,0,0,1,2,ROF,5,8,N US 23/9 Mile,RAMP,931603,0,0.211,0,,2.24,5 +5595,-1,0.931086,0,2,0,1,2,,5,8,S US 23,,932002,0.222,1.153,0,,1.02,7 +5916,1,0.081643,1,0,0,1,2,RON,5,8,W M 36/S US 23,RAMP,932004,0,0.082,0,,1.09,4 +5917,1,0.210955,1,0,0,1,2,RON,5,8,M 36/S US 23,RAMP,932004,0.082,0.293,0,,1.09,4 +5985,0,0.069287,1,1,0,2,4,,5,8,M 36,,931604,2.034,2.103,0,1.662878,3,4 +6180,1,0.242429,1,0,0,1,2,ROF,5,8,N US 23/Silver Lake,RAMP,931607,0,0.242,0,,2.24,5 +6182,0,0.110204,1,1,0,2,4,,5,8,Silver Lake,Rd,931608,0.025,0.135,0,2.644885,3,4 +6305,0,1.597396,1,1,0,2,7,,5,8,Fieldcrest,Dr,4105311,0.165,1.762,0,38.337493,5.8,6 +6389,1,1.180823,2,0,0,1,2,,5,8,N US 23,,931510,1.435,2.616,0,,1.02,7 +6395,0,0.77198,1,1,0,2,5,,5,8,Whitmore Lake,Rd,932204,2.043,2.815,0,18.527525,3.7,5 +6819,-1,1.227564,0,2,0,1,2,,5,8,S US 23,,932002,1.42,2.647,0,,1.02,7 +6893,1,0.144558,2,0,0,1,2,,5,8,N US 23,,931510,1.012,1.157,0,,1.02,7 +6905,0,0.163728,1,1,0,2,4,,5,8,Whitmore Lake,Rd,932204,1.213,1.377,0,3.929481,3,4 +9493,1,0.718402,2,0,0,1,1,,3,5,E I 94,,1426109,21.528,22.246,0,,0.58,7 +9622,0,0.320899,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,14.07,14.391,0,7.701576,6,4.5 +9926,-1,0.407285,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,0.275,0.682,0,9.774846,5,5 +9935,0,1.216441,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,17.222,18.438,0,29.194576,3,4 +10161,-1,1.620232,0,2,0,1,2,,3,5,W M 14,,1427103,2.049,3.668,0,,0.58,7 +10292,0,0.183961,2,2,0,2,3,,3,5,Stadium,Blvd,1429506,1.685,1.869,0,4.415059,5,5 +10345,-1,0.571192,0,2,0,1,1,,3,5,W I 94,,1426110,21.678,22.249,0,,0.58,7 +10393,1,1.51984,2,0,0,1,2,,3,5,E M 14,,1426704,2.139,3.658,0,,0.58,7 +10518,-1,3.87025,0,2,0,1,2,,5,5,S US 23,,1431105,0.475,4.343,0,,1.02,7 +10531,1,3.55635,2,0,0,1,2,,5,5,N US 23,,1431003,0.752,4.307,0,,1.02,7 +10548,0,0.1878,1,1,0,2,4,,2,5,Miller,Rd,1430906,4.888,5.076,0,4.507197,8,4.5 +10580,0,0.346136,1,1,0,2,5,,3,5,Summit,St,1430803,0.127,0.473,0,8.307268,8,4.5 +10638,0,0.189529,1,1,0,2,5,,2,5,Madison,St,1430701,0,0.189,0,4.548704,8.5,4.5 +10644,0,0.184447,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,1.18,1.364,0,4.426722,8,4.5 +10774,0,1.422593,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,2.982,4.404,0,34.142238,3,4 +10840,0,0.408091,2,2,1,2,3,,3,5,Ann Arbor Saline,Rd,1436706,3.02,3.428,0,9.794177,5,5 +10900,0,0.556199,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,9.393,9.949,0,13.348765,5.8,4.5 +10924,0,0.976479,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,4.6,5.576,0,23.435493,3.7,5 +11027,0,0.336274,1,1,0,2,5,,5,5,Shore,Dr,1446607,0,0.336,0,8.070565,3.7,5 +11405,0,0.761483,1,1,0,2,5,,5,5,Nixon,Rd,1443105,2.033,2.794,0,18.275602,3.7,5 +19633,0,0.482742,1,1,1,2,5,,3,5,Oakbrook,Dr,1908304,0.183,0.666,0,11.585813,8,4.5 +20020,0,0.248233,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,0.693,0.941,0,5.957592,5.8,4.5 +21314,0,1.211355,1,1,0,2,5,,4,5,Huron River,Dr,4604062,0,1.211,0,29.072514,5.8,4.5 +21421,0,1.155837,1,1,0,2,4,,4,5,Huron River,Dr,4604062,8.146,9.301,0,27.740081,4.5,4.5 +21447,0,0.316103,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,6.98,7.296,0,7.586471,4.5,4.5 +21600,0,1.662252,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,3.795,5.456,0,39.894038,3,4 +21701,0,0.908518,1,1,0,2,5,GRV,5,5,Earhart,Rd,4600037,2.714,3.622,0,21.804438,5.55,5 +21869,0,0.03427,1,1,0,2,4,,2,5,Liberty,St,4603025,7.389,7.423,0,0.82247,8,4.5 +22018,0,0.236587,2,2,0,2,3,,2,5,Huron,St,4604878,1.755,1.991,0,5.678095,6,5 +22090,1,0.418259,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,0.275,0.693,0,10.038217,5,5 +22103,0,0.953834,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,1.9,2.854,0,22.89202,3,4 +25022,0,0.760837,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.260083,0.15,4 +25032,0,0.363663,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.727902,0.15,4 +25034,0,0.719475,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.267404,0.15,4 +25040,0,0.831125,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.946995,0.15,4 +25041,0,0.619043,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.85702,0.15,4 +25487,0,0.271939,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.526538,0.15,4 +39093,0,1.245686,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.896471,0.15,4 +26360,0,0.852307,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.455357,0.15,4 +26362,0,0.18419,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.420551,0.15,4 +26364,0,0.300039,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.200937,0.15,4 +26374,0,0.494009,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.856219,0.15,4 +26382,0,1.453095,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,34.874273,0.15,4 +26387,0,0.206623,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.95894,0.15,4 +26390,0,0.428406,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.281752,0.15,4 +26395,0,0.162566,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.90158,0.15,4 +26397,0,0.158584,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.806021,0.15,4 +26406,0,0.127348,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.056352,0.15,4 +26975,0,0.201708,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.840998,0.15,4 +29944,0,0.20953,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.02871,0.15,4 +29960,0,0.361661,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.679862,0.15,4 +29980,0,0.680905,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.341728,0.15,4 +29994,0,0.283702,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.808855,0.15,4 +29997,0,0.896037,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.504883,0.15,4 +30006,0,1.09481,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.275446,0.15,4 +30008,0,0.970655,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.295726,0.15,4 +30048,0,0.162733,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.905599,0.15,4 +30051,0,0.164042,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.937014,0.15,4 +30097,0,0.232224,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,5.573369,0.15,4 +9498,1,2.797882,2,0,0,1,1,,3,5,E I 94,,1426109,18.05,20.847,0,,0.58,7 +9541,1,1.047086,3,0,0,1,1,,4,5,E I 94,,1426109,15.761,16.808,0,,0.8,7.5 +37307,-1,0.366638,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,2.935,3.301,0,8.799311,3.7,5 +9664,0,0.271032,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,10.867,11.138,0,6.504779,4.5,4.5 +9755,0,0.2965,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.373,0.669,0,7.115996,5,5 +10079,0,0.244929,1,1,0,2,4,,3,5,7th,St,1430205,1.487,1.732,0,5.878287,6,4.5 +10347,-1,2.20615,0,2,0,1,1,,3,5,W I 94,,1426110,18.468,20.673,0,,0.58,7 +10358,-1,1.301777,0,3,0,1,1,,4,5,W I 94,,1426110,15.442,16.743,0,,0.8,7.5 +10564,0,0.986009,1,1,0,2,4,,4,5,Miller,Rd,1430906,0.122,1.107,0,23.664223,4.5,4.5 +10747,0,0.759855,1,1,0,2,4,,4,5,Wagner,Rd,1433102,13.022,13.781,0,18.236524,4.5,4.5 +10755,0,1.436569,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,2.995,4.431,0,34.477653,3.7,5 +10992,0,0.741696,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,4.946,5.688,0,17.800701,4.5,4.5 +11286,0,0.65299,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,5.188,5.84,0,15.671751,4.5,4.5 +11319,0,0.317977,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.923,1.241,0,7.631456,6,4.5 +37308,0,0.272841,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.548181,0.15,4 +21580,0,0.674637,1,1,0,2,5,,4,5,Huron River,Dr,4604062,3.536,4.21,0,16.191284,5.8,4.5 +21833,0,1.151525,1,1,0,2,4,,4,5,Liberty,Rd,4603025,3.921,5.072,0,27.636598,4.5,4.5 +24612,0,1.000476,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.011427,0.15,4 +26016,0,0.783621,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.806907,0.15,4 +39911,1,0.282463,2,0,0,2,4,DIV,4,2,Ecorse,Rd,5495383,0,0.282,0,6.779107,4.5,4.5 +26024,0,0.318487,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.643684,0.15,4 +26411,0,1.012775,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.306604,0.15,4 +26412,0,0.512363,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.296707,0.15,4 +26414,0,0.581848,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.964348,0.15,4 +26418,0,0.62564,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.015354,0.15,4 +26419,0,0.593935,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.254449,0.15,4 +26424,0,1.041454,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.994898,0.15,4 +26429,0,0.478284,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.478826,0.15,4 +29981,0,0.991967,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.807214,0.15,4 +29987,0,1.023574,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.565776,0.15,4 +30044,0,0.339648,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.151551,0.15,4 +9683,0,1.975252,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,8.14,10.115,0,47.406049,3.7,5 +10756,0,1.478091,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,1.517,2.995,0,35.474181,3.7,5 +11011,0,1.011902,1,1,0,2,5,GRV,5,5,Zeeb,Rd,1436703,2.017,3.028,0,24.285653,5.55,5 +24628,0,1.600846,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,38.420308,0.15,4 +24749,0,1.503018,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.072424,0.15,4 +29985,0,1.696508,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.716202,0.15,4 +24610,0,0.105034,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,2.520812,0.15,4 +24611,0,1.066692,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.600602,0.15,4 +24630,0,0.71373,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.129531,0.15,4 +9685,0,0.032789,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,8.107,8.14,0,0.786932,3.7,5 +11012,0,1.002684,1,1,0,2,5,GRV,5,5,Zeeb,Rd,1436703,1.015,2.017,0,24.064427,5.55,5 +9679,0,0.7527,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,10.115,10.867,0,18.064795,4.5,4.5 +11010,0,0.906368,1,1,0,2,5,,5,5,Zeeb,Rd,1436703,3.028,3.934,0,21.752832,3.7,5 +21336,0,0.706239,1,1,0,2,4,,4,5,Liberty,Rd,4603025,3.02,3.726,0,16.949731,4.5,4.5 +11001,0,0.567573,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,3.934,4.502,0,13.621761,4.5,4.5 +10998,0,0.444492,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,4.502,4.946,0,10.667819,4.5,4.5 +22100,0,0.195193,1,1,0,2,4,,4,5,Liberty,Rd,4603025,3.726,3.921,0,4.684624,4.5,4.5 +9525,0,0.318788,1,1,0,2,4,,4,5,Baker,Rd,1426608,0.458,0.777,0,7.650911,4.5,4.5 +9552,1,0.461284,3,0,0,1,1,,4,5,E I 94,,1426109,13.119,13.58,0,,0.8,7.5 +9621,1,0.995725,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,15.219,16.214,0,23.897398,3.7,5 +10361,-1,1.632779,0,3,0,1,1,,4,5,W I 94,,1426110,13.391,15.023,0,,0.8,7.5 +10907,0,0.501525,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,6.956,7.458,0,12.036607,4.5,4.5 +11091,0,1.455485,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,1.887,3.342,0,34.931643,4.5,4.5 +11291,0,0.872779,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,3.999,4.872,0,20.946701,4.5,4.5 +22072,0,1.270563,1,1,0,2,5,,4,5,Huron River,Dr,4604062,1.211,2.481,0,30.493504,5.8,4.5 +24633,0,0.737857,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.708562,0.15,4 +24635,0,1.155976,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,27.743423,0.15,4 +25036,0,0.455205,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.924918,0.15,4 +26416,0,0.914732,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.953556,0.15,4 +9631,1,0.82876,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,14.163,14.991,0,19.890238,3.7,5 +30117,0,1.100774,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,26.418566,0.15,4 +9529,0,0.017951,2,2,1,2,3,,4,5,Baker,Rd,1426608,0,0.018,0,0.430834,3.7,5 +10120,1,0.215526,1,0,0,1,1,RON,4,5,Baker/W I 94,RAMP,1427009,0,0.215,0,,1.09,4 +10437,1,0.316417,1,0,0,1,1,ROF,4,5,W I 94/Baker,RAMP,1427010,0,0.316,0,,2.24,5 +9643,1,0.24937,2,0,0,2,4,DIV,4,5,Jackson,Rd,1426508,13.914,14.163,0,5.984871,4.5,4.5 +9527,0,0.045559,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.227,0.273,0,1.093413,3.7,5 +9538,1,0.27327,1,0,0,1,1,ROF,4,5,E I 94/Baker,RAMP,1426606,0,0.273,0,,2.24,5 +9555,1,0.195392,3,0,0,1,1,,4,5,E I 94,,1426109,12.924,13.119,0,,0.8,7.5 +9533,1,0.191832,1,0,0,1,1,RON,4,5,Baker/E I 94,RAMP,1426607,0,0.192,0,,1.09,4 +9528,0,0.007524,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.22,0.227,0,0.180566,3.7,5 +9526,0,0.009125,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.449,0.458,0,0.219007,3.7,5 +10397,-1,0.226413,0,3,0,1,1,,4,5,W I 94,,1426110,13.164,13.391,0,,0.8,7.5 +9625,1,0.227615,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,14.991,15.219,0,5.462756,3.7,5 +26026,0,0.247251,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.934032,0.15,4 +24634,0,0.897816,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.547577,0.15,4 +11304,0,0.759234,1,1,0,2,4,,4,5,Main,St,1446002,1.128,1.887,0,18.221609,4.5,4.5 +24639,0,0.533496,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.803909,0.15,4 +24636,0,0.426283,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.23079,0.15,4 +9550,1,0.481025,3,0,0,1,1,,4,5,E I 94,,1426109,15.28,15.761,0,,0.8,7.5 +9604,1,0.848633,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,16.673,17.522,0,20.367203,3.7,5 +9619,1,0.459473,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,16.214,16.673,0,11.027359,3.7,5 +10360,-1,0.4196,0,3,0,1,1,,4,5,W I 94,,1426110,15.023,15.442,0,,0.8,7.5 +10436,1,0.272605,1,0,0,1,1,ROF,4,5,W I 94/Zeeb,RAMP,1427102,0,0.273,0,,2.24,5 +10988,0,0.572004,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,5.688,6.259,0,13.728102,4.5,4.5 +21737,1,0.424915,1,0,0,1,1,RON,4,5,Zeeb/E I 94,RAMP,4604907,0,0.425,0,,1.09,4 +26423,0,0.168678,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.048275,0.15,4 +29984,0,0.517149,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.411582,0.15,4 +30116,0,0.705991,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.943778,0.15,4 +26415,0,0.478441,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.482586,0.15,4 +10915,0,0.372256,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,6.584,6.956,0,8.934149,4.5,4.5 +9490,1,0.205787,2,0,0,1,1,RON,4,5,Zeeb/E I 94,RAMP,1426702,0,0.206,0,,1.09,4 +9492,1,0.314971,1,0,0,1,1,ROF,4,5,E I 94/Zeeb,RAMP,1426701,0,0.315,0,,2.24,5 +9551,1,0.202068,3,0,0,1,1,,4,5,E I 94,,1426109,15.078,15.28,0,,0.8,7.5 +10165,1,0.207315,1,0,0,1,1,RON,4,5,Zeeb/W I 94,RAMP,1427101,0,0.207,0,,1.09,4 +10945,0,0.164725,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.355,6.52,0,3.953394,4.5,4.5 +10986,0,0.020571,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.259,6.28,0,0.493693,4.5,4.5 +10970,0,0.010561,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.344,6.355,0,0.253471,4.5,4.5 +10939,0,0.064746,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.52,6.584,0,1.553914,4.5,4.5 +26425,0,0.309226,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.421428,0.15,4 +26427,0,0.247173,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.932153,0.15,4 +11069,0,0.316123,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,4.872,5.188,0,7.586948,4.5,4.5 +10903,0,0.898485,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,7.759,8.658,0,21.563646,5.8,4.5 +21804,0,1.055214,1,1,0,2,5,,4,5,Huron River,Dr,4604062,2.481,3.536,0,25.325129,5.8,4.5 +25035,0,0.43481,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.435435,0.15,4 +11298,0,0.481148,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,3.342,3.823,0,11.547549,4.5,4.5 +10565,0,0.121521,1,1,0,2,4,,4,5,Miller,Rd,1430906,0,0.122,0,2.916492,4.5,4.5 +10906,0,0.162667,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,7.458,7.62,0,3.904011,4.5,4.5 +11088,0,0.17626,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,3.823,3.999,0,4.23025,4.5,4.5 +10904,0,0.139126,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,7.62,7.759,0,3.339023,4.5,4.5 +10901,0,0.516012,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,8.878,9.393,0,12.384288,5.8,4.5 +25037,0,0.677045,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.249074,0.15,4 +26028,0,0.552613,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.262714,0.15,4 +10902,0,0.220086,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,8.658,8.878,0,5.282061,5.8,4.5 +9662,0,0.603062,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,12.116,12.719,0,14.473499,4.5,4.5 +10769,0,1.001238,1,1,0,2,4,,5,5,Wagner,Rd,1433102,10.68,11.68,0,24.029703,3,4 +10806,0,0.410248,1,1,0,2,5,,4,5,Lohr,Rd,1436708,2.523,2.933,0,9.845955,5.8,4.5 +10896,0,0.389708,1,1,0,2,4,,4,5,Ann Arbor Saline,Rd,1436706,1.63,2.02,0,9.352989,4.5,4.5 +10899,0,0.890944,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1436706,0,0.891,0,21.382655,3,4 +11101,0,0.609707,1,1,0,2,5,,5,5,Waters,Rd,1436510,11.579,12.189,0,14.632968,3.7,5 +20018,0,0.240036,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,1.35,1.59,0,5.76086,5.8,4.5 +26027,0,0.596254,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.310091,0.15,4 +26034,0,0.649075,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.577796,0.15,4 +26035,0,0.894225,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.461396,0.15,4 +26283,0,0.693484,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.64361,0.15,4 +26284,0,0.535774,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.858579,0.15,4 +29993,0,0.460769,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.058465,0.15,4 +30109,0,0.98386,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.61264,0.15,4 +10754,0,0.581424,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,4.431,5.012,0,13.954166,3.7,5 +10779,0,0.604832,1,1,0,2,4,,5,5,Wagner,Rd,1433102,10.075,10.68,0,14.515958,3,4 +26245,0,0.415309,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.967415,0.15,4 +10780,0,0.403874,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,9.671,10.075,0,9.692971,3,4 +10783,0,0.511781,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,9.16,9.671,0,12.282742,3,4 +9663,0,0.978557,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,11.138,12.116,0,23.485356,4.5,4.5 +10766,0,0.912606,1,1,0,2,4,,5,5,Wagner,Rd,1433102,11.68,12.593,0,21.902544,3,4 +26409,0,0.955866,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.940792,0.15,4 +26410,0,1.000785,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.018846,0.15,4 +26413,0,0.991426,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.794228,0.15,4 +11111,0,0.543959,1,1,0,2,5,,5,5,Waters,Rd,1436510,11.036,11.579,0,13.055017,3.7,5 +26033,0,0.154185,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,3.700441,0.15,4 +26426,0,0.431006,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.344134,0.15,4 +10751,0,0.429303,1,1,0,2,4,,4,5,Wagner,Rd,1433102,12.593,13.022,0,10.303262,4.5,4.5 +10819,0,0.572506,1,1,1,2,5,,4,5,Lohr,Rd,1436708,1.436,2.009,0,13.740147,5.8,4.5 +21695,0,0.164365,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,6.287,6.451,0,3.944751,4.5,4.5 +21723,0,0.846258,1,1,0,2,4,,4,5,Maple,Rd,4603041,1.234,2.08,0,20.310187,4.5,4.5 +25013,0,1.032953,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.79087,0.15,4 +26031,0,0.659309,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.823424,0.15,4 +26261,0,0.518159,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.435811,0.15,4 +21991,0,0.24547,1,1,0,2,4,,4,5,Maple,Rd,4603041,0.988,1.234,0,5.891284,4.5,4.5 +26262,0,0.500152,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.003644,0.15,4 +26273,0,0.639788,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.354907,0.15,4 +21783,0,0.409829,1,1,0,2,4,,4,5,Maple,Rd,4603041,0.579,0.988,0,9.83589,4.5,4.5 +10898,0,0.468231,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1436706,0.891,1.359,0,11.237536,3,4 +21485,0,0.325219,1,1,0,2,7,GRV,5,5,Ellsworth,Rd,4602939,5.663,5.988,0,7.805249,5.55,5 +21510,0,0.165518,1,1,0,2,4,,4,5,Maple,Rd,4603041,2.08,2.245,0,3.972426,4.5,4.5 +21947,0,0.299242,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,5.988,6.287,0,7.1818,4.5,4.5 +10897,0,0.271787,1,1,0,2,4,,4,5,Ann Arbor Saline,Rd,1436706,1.359,1.63,0,6.522892,4.5,4.5 +21295,0,0.175634,1,1,0,2,4,,4,5,Maple,Rd,4603041,2.245,2.421,0,4.215204,4.5,4.5 +10824,0,0.905739,1,1,1,2,5,,4,5,Lohr,Rd,1436708,0.531,1.436,0,21.737743,5.8,4.5 +26260,0,0.669333,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.063994,0.15,4 +10818,0,0.169584,1,1,0,2,5,,4,5,Lohr,Rd,1436708,2.009,2.178,0,4.070016,5.8,4.5 +20019,0,0.409431,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,0.941,1.35,0,9.826354,5.8,4.5 +21484,0,0.528378,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,6.451,6.98,0,12.681074,4.5,4.5 +26030,0,0.490341,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.768185,0.15,4 +26032,0,0.457477,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.979441,0.15,4 +26029,0,0.194391,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.66539,0.15,4 +10810,0,0.34485,1,1,0,2,5,,4,5,Lohr,Rd,1436708,2.178,2.523,0,8.276389,5.8,4.5 +9630,0,0.150382,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.445,13.595,0,3.609158,6,4.5 +10284,0,0.198993,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.683,0.882,0,4.775824,5,5 +10649,0,0.144916,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.364,0.509,0,3.477984,8,4.5 +11096,0,0.245159,1,1,0,2,5,,4,5,Waters,Rd,1436510,12.189,12.434,0,5.883828,5.8,4.5 +20015,0,0.722512,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,2.288,3.01,0,17.340288,5.8,4.5 +20016,0,0.456941,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,1.831,2.288,0,10.966574,5.8,4.5 +26021,0,0.129365,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.104762,0.15,4 +26038,0,0.347012,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.328293,0.15,4 +26599,0,0.316362,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.592684,0.15,4 +30058,0,0.432994,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.391854,0.15,4 +26036,0,0.313595,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.526281,0.15,4 +26037,0,0.186352,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.47244,0.15,4 +9660,0,0.157213,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,13.088,13.245,0,3.773124,4.5,4.5 +10651,0,0.227271,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0,0.227,0,5.454509,8,4.5 +10777,0,0.21767,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.465,0.683,0,5.224077,6,4.5 +11574,0,0.305553,1,1,0,2,4,,3,5,Maple,Rd,1452206,0,0.305,0,7.333275,6,4.5 +24640,0,0.352998,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.471942,0.15,4 +24641,0,0.393668,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.448023,0.15,4 +26391,0,0.154986,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.719652,0.15,4 +30046,0,0.290117,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.962813,0.15,4 +9661,0,0.369151,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,12.719,13.088,0,8.859615,4.5,4.5 +11422,0,0.159572,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.305,0.465,0,3.829736,6,4.5 +11567,0,0.240188,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.683,0.923,0,5.764516,6,4.5 +30045,0,0.214783,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.154792,0.15,4 +9658,0,0.199629,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.245,13.445,0,4.791103,6,4.5 +26039,0,0.374682,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.992368,0.15,4 +10650,0,0.137197,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.227,0.364,0,3.292731,8,4.5 +26012,0,0.167971,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.031296,0.15,4 +26013,0,0.194805,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.675313,0.15,4 +9508,0,0.013533,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.669,0.683,0,0.324781,5,5 +9494,1,0.36918,2,0,0,1,1,,3,5,E I 94,,1426109,21.159,21.528,0,,0.58,7 +9495,1,0.312351,2,0,0,1,1,,3,5,E I 94,,1426109,20.847,21.159,0,,0.58,7 +9644,1,0.49244,1,0,0,1,1,RON,3,5,Ann Arbor Saline/W I 94,RAMP,1427108,0,0.492,0,,1.09,4 +9766,1,0.320184,1,0,0,1,1,RON,3,5,S Ann Arbor Saline/E I 94,RAMP,1426803,0,0.32,0,,1.09,4 +9830,-1,0.274725,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,0,0.275,0,6.593391,5,5 +9888,1,0.379886,1,0,0,1,1,RON,4,5,N Ann Arbor Saline/E I 94,RAMP,1426805,0,0.38,0,,1.09,4 +9960,1,0.375054,1,0,0,1,1,ROF,4,5,E I 94/Ann Arbor Saline,RAMP,1426802,0,0.375,0,,2.24,5 +10346,-1,1.005268,0,2,0,1,1,,3,5,W I 94,,1426110,20.673,21.678,0,,0.58,7 +10421,1,0.582897,1,0,0,1,1,ROF,3,5,W I 94/Ann Arbor Saline,RAMP,1427109,0,0.583,0,,2.24,5 +10857,0,0.146242,2,2,0,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.512,2.658,0,3.509813,5,5 +11043,0,0.320184,1,1,0,2,5,,4,5,Lohr,Rd,1436510,12.718,13.038,0,7.684412,5.8,4.5 +21398,1,0.275191,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,0,0.275,0,6.604572,5,5 +30057,0,0.361427,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.674243,0.15,4 +10864,0,0.178585,2,2,1,2,4,,4,5,Ann Arbor Saline,Rd,1436706,2.218,2.397,0,4.286038,4.5,4.5 +10894,0,0.19829,1,1,0,2,4,,4,5,Ann Arbor Saline,Rd,1436706,2.02,2.218,0,4.758971,4.5,4.5 +11089,0,0.074215,1,1,0,2,5,,4,5,Lohr,Rd,1436510,12.644,12.718,0,1.781164,5.8,4.5 +20017,0,0.241241,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,1.59,1.831,0,5.789777,5.8,4.5 +11094,0,0.209983,1,1,0,2,5,,4,5,Waters,Rd,1436510,12.434,12.644,0,5.039583,5.8,4.5 +10863,0,0.115478,2,2,0,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.397,2.512,0,2.77148,5,5 +10845,0,0.289514,2,2,1,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.73,3.02,0,6.948325,5,5 +19637,0,0.183233,1,1,1,2,5,,3,5,Oakbrook,Dr,1908304,0,0.183,0,4.397586,8,4.5 +10852,0,0.071981,2,2,1,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.658,2.73,0,1.727551,5,5 +9518,0,0.2929,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.392,1.685,0,7.029603,5,5 +9626,0,0.151678,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.919,14.07,0,3.640276,6,4.5 +9761,0,0.574578,1,1,0,2,4,,3,5,7th,St,1430205,0.474,1.048,0,13.789879,6,4.5 +10646,0,0.060828,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.874,0.935,0,1.459869,8,4.5 +26431,0,0.248514,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.964324,0.15,4 +26432,0,0.261951,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.286814,0.15,4 +26434,0,0.277957,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.670976,0.15,4 +9627,0,0.324006,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.595,13.919,0,7.776149,6,4.5 +9566,0,0.156194,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.179,1.335,0,3.748661,5,5 +10023,0,0.218979,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,0.882,1.101,0,5.255484,5,5 +10648,0,0.222708,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.509,0.732,0,5.344985,8,4.5 +26435,0,0.144177,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.46025,0.15,4 +26437,0,0.234139,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.619335,0.15,4 +30043,0,0.271575,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.517802,0.15,4 +9809,0,0.077997,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.101,1.179,0,1.871928,5,5 +26436,0,0.178334,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.280012,0.15,4 +9762,0,0.057032,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.335,1.392,0,1.368767,5,5 +10647,0,0.142304,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.732,0.874,0,3.415293,8,4.5 +9563,0,0.122605,1,1,0,2,4,,3,5,7th,St,1430205,1.228,1.35,0,2.942518,6,4.5 +10645,0,0.244822,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.935,1.18,0,5.875717,8,4.5 +9516,0,0.179843,1,1,0,2,4,,3,5,7th,St,1430205,1.048,1.228,0,4.316238,6,4.5 +10336,0,0.136896,1,1,0,2,4,,3,5,7th,St,1430205,1.35,1.487,0,3.285493,6,4.5 +9522,1,0.581178,2,0,0,1,1,,3,5,E I 94,,1426109,17.469,18.05,0,,0.58,7 +10194,1,0.141507,1,0,0,1,1,RON,3,5,I 94 BL/E I 94,RAMP,1426707,0,0.142,0,,1.09,4 +10350,1,1.000495,2,0,0,1,2,,3,5,E M 14,,1426704,1.139,2.139,0,,0.58,7 +10354,-1,1.318762,0,2,0,1,1,,4,5,W I 94,,1426110,16.743,18.062,0,,0.8,7.5 +10435,-1,0.930263,0,2,0,1,2,,3,5,W M 14,,1427103,1.119,2.049,0,,0.58,7 +10542,0,0.727933,1,1,0,2,5,,4,5,Newport,Rd,1430907,0.669,1.397,0,17.470389,5.8,4.5 +10559,0,0.254839,1,1,0,2,4,,3,5,Miller,Rd,1430906,2.934,3.189,0,6.116145,6,4.5 +10561,0,0.488559,1,1,0,2,4,,4,5,Miller,Rd,1430906,2.229,2.718,0,11.725406,4.5,4.5 +10566,1,0.35179,1,0,0,1,2,ROF,3,5,E M 14/Miller,RAMP,1430901,0,0.352,0,,2.24,5 +10724,0,0.387834,1,1,0,2,4,,4,5,Wagner,Rd,1433102,15.643,16.031,0,9.30801,4.5,4.5 +11058,0,0.387591,1,1,0,2,4,,3,5,Dexter,Rd,1446002,6.996,7.384,0,9.302175,6,4.5 +37353,-1,0.44018,0,1,0,1,2,ROF,4,5,W M 14/Miller/Maple,RAMP,1431903,0,0.44,0,,2.24,5 +37347,1,0.316111,1,0,0,1,2,ROF,3,5,E M 14/Miller/Maple,RAMP,1446110,0,0.316,0,,2.24,5 +21479,0,0.345122,1,1,0,2,4,,3,5,Liberty,Rd,4603025,5.637,5.982,0,8.282923,6,4.5 +21802,0,0.228762,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.21,0.439,0,5.490294,5,5 +21860,0,1.0704,1,1,0,2,5,,4,5,Huron River,Dr,4604062,5.644,6.714,0,25.689609,5.8,4.5 +26015,0,0.701637,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.839297,0.15,4 +26288,0,0.457082,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.969964,0.15,4 +26445,0,0.396723,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.521361,0.15,4 +26449,0,0.473532,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.364771,0.15,4 +29983,0,0.4005,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.612002,0.15,4 +9472,1,1.138982,2,0,0,1,2,,4,5,E M 14,,1426704,0,1.139,0,,0.8,7.5 +9537,1,0.66129,2,0,0,1,1,,4,5,E I 94,,1426109,16.808,17.469,0,,0.8,7.5 +9598,1,0.715736,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,17.522,18.237,0,17.177669,3.7,5 +10163,-1,1.119382,0,2,0,1,2,,3,5,W M 14,,1427103,0,1.119,0,,0.58,7 +10731,0,0.419583,1,1,0,2,4,,3,5,Wagner,Rd,1433102,14.631,15.051,0,10.069983,6,4.5 +11064,0,0.580921,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,5.84,6.421,0,13.94211,4.5,4.5 +22073,-1,1.021214,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,3.301,4.322,0,24.509133,3.7,5 +26014,0,0.647759,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.546221,0.15,4 +26420,0,0.985265,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.64635,0.15,4 +26421,0,0.230548,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.533143,0.15,4 +26422,0,0.187098,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.49034,0.15,4 +26417,0,0.623367,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.960805,0.15,4 +29877,0,0.613861,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.732673,0.15,4 +26017,0,0.635106,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.242537,0.15,4 +9588,1,0.399998,2,0,0,2,3,DIV,3,5,Jackson,Ave,1426508,18.237,18.637,0,9.599956,5,5 +10348,1,0.347089,2,0,0,1,1,ROF,3,5,E I 94/I 94 BL,RAMP,1426706,0,0.347,0,,2.24,5 +10736,0,0.203851,1,1,1,2,4,,3,5,Wagner,Rd,1433102,14.175,14.379,0,4.892413,6,4.5 +21805,-1,0.528134,0,2,0,2,3,DIV,3,5,Jackson,Ave,5490574,4.322,4.85,0,12.675219,5,5 +21944,0,0.482633,1,1,0,2,4,,3,5,Liberty,Rd,4603025,5.072,5.554,0,11.583181,6,4.5 +26438,0,0.346071,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.305698,0.15,4 +26439,0,0.428807,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.291363,0.15,4 +29878,0,0.371258,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.910188,0.15,4 +10745,0,0.394114,1,1,1,2,4,,3,5,Wagner,Rd,1433102,13.781,14.175,0,9.458747,6,4.5 +10733,0,0.233949,1,1,1,2,4,,3,5,Wagner,Rd,1433102,14.379,14.613,0,5.614766,6,4.5 +10732,0,0.01824,1,1,1,2,4,,3,5,Wagner,Rd,1433102,14.613,14.631,0,0.437762,6,4.5 +26440,0,0.425385,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.209238,0.15,4 +21693,0,0.082607,1,1,0,2,4,,3,5,Liberty,Rd,4603025,5.554,5.637,0,1.982579,6,4.5 +21312,1,0.103879,4,0,0,2,3,DIV,3,5,Jackson,Ave,4604878,0.088,0.192,0,2.493092,5,5 +21527,1,0.088333,4,0,0,2,3,DIV,3,5,Jackson,Ave,4604878,0,0.088,0,2.119999,5,5 +21581,-1,0.107677,0,2,0,2,3,DIV,3,5,Jackson,Ave,5490574,4.85,4.958,0,2.584255,5,5 +26442,0,0.124292,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.982996,0.15,4 +26443,0,0.115797,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.77912,0.15,4 +22070,0,0.018378,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.192,0.21,0,0.441075,5,5 +10727,0,0.592628,1,1,0,2,4,,4,5,Wagner,Rd,1433102,15.051,15.643,0,14.223078,4.5,4.5 +11277,0,0.575297,1,1,0,2,4,,3,5,Dexter,Rd,1446002,6.421,6.996,0,13.807122,6,4.5 +26446,0,0.214316,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.14359,0.15,4 +10560,0,0.216625,1,1,0,2,4,,4,5,Miller,Rd,1430906,2.718,2.934,0,5.198999,4.5,4.5 +10567,1,0.294244,1,0,0,1,2,RON,4,5,Miller/W M 14,RAMP,1430810,0,0.294,0,,1.09,4 +10562,0,0.653815,1,1,0,2,4,,4,5,Miller,Rd,1430906,1.576,2.229,0,15.691552,4.5,4.5 +21361,0,0.697248,1,1,0,2,5,,4,5,Huron River,Dr,4604062,4.21,4.907,0,16.733944,5.8,4.5 +22126,0,0.73747,1,1,0,2,5,,4,5,Huron River,Dr,4604062,4.907,5.644,0,17.699282,5.8,4.5 +29982,0,1.152083,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,27.649993,0.15,4 +10563,0,0.468767,1,1,0,2,4,,4,5,Miller,Rd,1430906,1.107,1.576,0,11.250414,4.5,4.5 +26018,0,0.731174,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.548177,0.15,4 +26019,0,0.654766,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.714382,0.15,4 +10717,0,0.737248,1,1,0,2,5,,4,5,Wagner,Rd,1433102,16.26,16.997,0,17.693959,5.8,4.5 +26693,0,0.510515,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.252351,0.15,4 +10723,0,0.229049,1,1,0,2,5,,4,5,Wagner,Rd,1433102,16.031,16.26,0,5.49718,5.8,4.5 +29505,0,0.42977,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.314488,0.15,4 +10552,0,0.180879,1,1,0,2,4,,3,5,Miller,Rd,1430906,4.486,4.667,0,4.341091,6,4.5 +10554,0,0.343367,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.996,4.339,0,8.240813,6,4.5 +11033,0,0.200834,1,1,0,2,7,,3,5,Brooks,St,1446307,0,0.201,0,4.82002,7,4.5 +11049,0,0.344183,1,1,0,2,4,,3,5,Dexter,Ave,1446002,7.939,8.283,0,8.2604,6,4.5 +11528,0,0.195518,2,2,1,2,4,,3,5,Maple,Rd,1452206,2.077,2.273,0,4.692427,6,4.5 +21322,0,0.079044,1,1,0,2,4,,3,5,Liberty,St,4603025,6.5,6.579,0,1.897057,6,4.5 +21419,0,0.304391,1,1,1,2,3,,3,5,Jackson,Ave,4604878,0.986,1.29,0,7.305382,5,5 +26463,0,0.371983,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.927592,0.15,4 +26464,0,0.362272,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.694535,0.15,4 +29961,0,0.37874,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.089748,0.15,4 +30025,0,0.370405,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.889726,0.15,4 +30061,0,0.370712,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.897091,0.15,4 +9889,0,0.121601,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0,0.122,0,2.918432,5,5 +10349,-1,0.406288,0,2,0,1,1,,3,5,W I 94,,1426110,18.062,18.468,0,,0.58,7 +10423,1,0.218862,1,0,0,1,1,ROF,3,5,W I 94/I 94 BL,RAMP,1427106,0,0.219,0,,2.24,5 +11056,0,0.385056,1,1,0,2,4,,3,5,Dexter,Ave,1446002,7.484,7.868,0,9.241349,6,4.5 +11303,0,0.181799,1,1,0,2,4,,3,5,Maple,Rd,1452206,1.446,1.627,0,4.363183,6,4.5 +21858,0,0.279333,1,1,1,2,3,,3,5,Jackson,Ave,4604878,0.635,0.914,0,6.703991,5,5 +22028,0,0.176539,2,2,1,2,4,,3,5,Liberty,St,4603025,6.084,6.261,0,4.236939,6,4.5 +26452,0,0.2062,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.948804,0.15,4 +26469,0,0.159095,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.818288,0.15,4 +11557,0,0.205196,1,1,0,2,4,,3,5,Maple,Rd,1452206,1.241,1.446,0,4.92471,6,4.5 +26470,0,0.247064,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.929537,0.15,4 +21269,0,0.10254,1,1,0,2,4,,3,5,Liberty,St,4603025,5.982,6.084,0,2.460967,6,4.5 +26471,0,0.070629,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.695091,0.15,4 +9645,1,0.171412,1,0,0,1,1,RON,3,5,W I 94 BL/W I 94,RAMP,1427105,0.048,0.219,0,,1.09,4 +10157,1,0.047986,1,0,0,1,1,RON,3,5,W I 94 BL/W I 94,RAMP,1427105,0,0.048,0,,1.09,4 +11281,0,0.339033,2,2,1,2,4,,3,5,Maple,Rd,1452206,1.738,2.077,0,8.136796,6,4.5 +21578,0,0.026791,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.439,0.466,0,0.642974,5,5 +26444,0,0.292074,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.009764,0.15,4 +26467,0,0.169243,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.061821,0.15,4 +19606,1,0.021576,1,0,0,1,1,RON,3,5,E I 94 BL/W I 94,RAMP,1908802,0,0.022,0,,1.09,4 +22124,0,0.152818,2,2,1,2,3,,3,5,Jackson,Ave,4604878,0.482,0.635,0,3.66762,5,5 +21359,0,0.016083,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.466,0.482,0,0.385992,5,5 +11531,0,0.110977,2,2,1,2,3,,3,5,Maple,Rd,1452206,1.627,1.738,0,2.663437,5,5 +11269,0,0.099986,1,1,0,2,4,,3,5,Dexter,Rd,1446002,7.384,7.484,0,2.399667,6,4.5 +9227,0,0.193592,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.18,0.373,0,4.646219,5,5 +21539,0,0.23922,1,1,0,2,4,,3,5,Liberty,St,4603025,6.261,6.5,0,5.741282,6,4.5 +26453,0,0.292771,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.026513,0.15,4 +37895,0,0.003356,1,1,0,2,7,,,8,Shiawassee,Ave,1530104,0.233,0.236,0,0.080552,5.8,6 +9672,0,0.057932,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.122,0.18,0,1.390362,5,5 +26454,0,0.217468,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.21923,0.15,4 +26456,0,0.130166,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.123981,0.15,4 +21616,0,0.07203,1,1,1,2,3,,3,5,Jackson,Ave,4604878,0.914,0.986,0,1.728716,5,5 +26458,0,0.142721,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.425313,0.15,4 +11261,0,0.07031,1,1,0,2,4,,3,5,Dexter,Ave,1446002,7.868,7.939,0,1.687438,6,4.5 +37385,1,0.032495,1,0,0,2,4,,5,8,Hamburg,Rd,932902,0.46,0.492,0,0.779874,3,4 +10556,0,0.426758,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.456,3.882,0,10.242182,6,4.5 +10557,0,0.212279,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.244,3.456,0,5.094685,6,4.5 +37388,-1,0.011809,0,1,0,2,4,,5,8,Winans Lake,Rd,4105275,0,0.012,0,0.283419,3,4 +11268,0,0.313846,2,1,0,2,4,,3,5,Maple,Rd,1452206,2.724,3.038,0,7.532307,6,4.5 +26460,0,0.343268,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.238426,0.15,4 +26461,0,0.355916,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.541977,0.15,4 +26462,0,0.476034,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.424811,0.15,4 +11276,0,0.364567,2,2,1,2,4,,3,5,Maple,Rd,1452206,2.273,2.637,0,8.749613,6,4.5 +11520,0,0.086792,2,2,1,2,4,,3,5,Maple,Rd,1452206,2.637,2.724,0,2.083007,6,4.5 +37389,1,0.010972,1,0,0,2,4,,5,8,Hamburg,Rd,940105,2.011,2.022,0,0.263317,3,4 +37350,1,0.34801,1,0,0,1,2,RON,3,5,Maple/E M 14,RAMP,1430504,0,0.348,0,,1.09,4 +10558,0,0.054681,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.189,3.244,0,1.31235,6,4.5 +37351,1,0.274286,1,0,0,1,2,ROF,4,5,W M 14/Maple,RAMP,1431101,0,0.274,0,,2.24,5 +10555,0,0.113637,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.882,3.996,0,2.727281,6,4.5 +26459,0,0.238481,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.723541,0.15,4 +10122,0,0.196261,1,1,1,2,4,,2,5,7th,St,1430205,2.011,2.207,0,4.710271,8,4.5 +21469,0,0.225818,2,2,0,2,3,,3,5,Huron,St,4604878,1.519,1.745,0,5.41962,5,5 +21589,0,0.057408,1,1,0,2,4,,3,5,Liberty,St,4603025,6.93,6.987,0,1.377784,6,4.5 +26022,0,0.304755,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.314122,0.15,4 +26408,0,0.105901,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.541626,0.15,4 +26474,0,0.171664,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.119943,0.15,4 +26475,0,0.255722,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.137337,0.15,4 +30026,0,0.274847,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.596323,0.15,4 +30059,0,0.307503,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.380064,0.15,4 +30060,0,0.310485,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.451629,0.15,4 +22082,0,0.226851,1,1,0,2,4,,3,5,Liberty,St,4603025,6.579,6.806,0,5.444417,6,4.5 +26023,0,0.273755,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.570127,0.15,4 +21813,0,0.123887,1,1,0,2,4,,3,5,Liberty,St,4603025,6.806,6.93,0,2.973295,6,4.5 +21934,0,0.106423,1,1,1,2,3,,3,5,Jackson,Ave,4604878,1.29,1.397,0,2.554156,5,5 +26468,0,0.154643,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.711431,0.15,4 +29962,0,0.272397,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.537538,0.15,4 +21683,0,0.122502,2,2,0,2,3,,3,5,Huron,St,4604878,1.397,1.519,0,2.94004,5,5 +26472,0,0.165672,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.976123,0.15,4 +9609,0,0.082292,1,1,0,2,4,,2,5,7th,St,1430205,1.792,1.874,0,1.975,8,4.5 +21371,0,0.242028,1,1,0,2,4,,3,5,Liberty,St,4603025,6.987,7.229,0,5.80866,6,4.5 +9849,0,0.059919,1,1,0,2,4,,2,5,7th,St,1430205,1.732,1.792,0,1.438054,8,4.5 +10386,0,0.137329,1,1,0,2,4,,2,5,7th,St,1430205,1.874,2.011,0,3.295903,8,4.5 +22135,0,0.160298,1,1,0,2,4,,2,5,Liberty,St,4603025,7.229,7.389,0,3.847162,8,4.5 +10551,0,0.055624,1,1,0,2,4,,3,5,Miller,Rd,1430906,4.667,4.722,0,1.334968,6,4.5 +21582,0,0.088636,1,1,0,2,4,,2,5,7th,St,4603894,0,0.089,0,2.127259,8,4.5 +9887,0,0.065647,1,1,1,2,4,,2,5,7th,St,1430205,2.207,2.273,0,1.575528,8,4.5 +26473,0,0.167749,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.025982,0.15,4 +21259,0,0.009949,2,2,0,2,3,,2,5,Huron,St,4604878,1.745,1.755,0,0.238779,6,5 +10549,0,0.116913,1,1,0,2,4,,2,5,Miller,Rd,1430906,4.771,4.888,0,2.805905,8,4.5 +22128,0,0.154755,1,1,0,2,4,,2,5,7th,St,4603894,0.161,0.315,0,3.71411,8,4.5 +26396,0,0.123028,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.952679,0.15,4 +26405,0,0.154806,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.715348,0.15,4 +21363,0,0.072139,1,1,0,2,4,,2,5,7th,St,4603894,0.089,0.161,0,1.731343,8,4.5 +10550,0,0.048483,1,1,0,2,4,,2,5,Miller,Rd,1430906,4.722,4.771,0,1.163601,8,4.5 +10543,0,0.216321,1,1,0,2,5,,3,5,Newport,Rd,1430907,0.453,0.669,0,5.1917,8,4.5 +10553,0,0.146895,1,1,0,2,4,,3,5,Miller,Rd,1430906,4.339,4.486,0,3.525484,6,4.5 +10848,0,0.402253,1,1,0,2,5,,3,5,Sunset,Rd,1449801,0.679,1.082,0,9.654063,8,4.5 +11030,0,0.313617,1,1,0,2,5,,3,5,Brooks,St,1446307,0.376,0.69,0,7.526806,8,4.5 +26398,0,0.232409,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.577819,0.15,4 +26400,0,0.229701,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.512825,0.15,4 +10544,0,0.377428,1,1,0,2,5,,3,5,Newport,Rd,1430907,0.075,0.453,0,9.058268,8,4.5 +11230,0,0.175638,1,1,0,2,5,,3,5,Brooks,St,1446307,0.201,0.376,0,4.215302,8,4.5 +26402,0,0.394864,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.476725,0.15,4 +26466,0,0.211546,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.077102,0.15,4 +10581,0,0.127112,1,1,0,2,5,,3,5,Summit,St,1430803,0,0.127,0,3.050679,8,4.5 +11229,0,0.024748,1,1,0,2,5,,3,5,Brooks,St,1446307,0.69,0.715,0,0.593958,8,4.5 +10541,0,1.061681,1,1,0,2,5,,4,5,Newport,Rd,1430907,1.397,2.458,0,25.480348,5.8,4.5 +21618,0,1.43199,1,1,0,2,4,,4,5,Huron River,Dr,4604062,6.714,8.146,0,34.367755,4.5,4.5 +26253,0,0.802749,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,19.265984,0.15,4 +11462,0,0.417514,1,1,0,2,4,,4,5,Maple,Rd,1452206,3.722,4.14,0,10.020327,4.5,4.5 +11244,0,0.123027,1,1,0,2,4,,4,5,Maple,Rd,1452206,3.599,3.722,0,2.95265,4.5,4.5 +11307,0,0.068215,1,1,0,2,4,,4,5,Maple,Rd,1452206,4.14,4.208,0,1.637155,4.5,4.5 +26371,0,0.431204,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.348891,0.15,4 +26373,0,0.025852,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,0.620445,0.15,4 +5599,0,1.161954,1,1,0,2,4,,5,8,M 36,,932308,13.324,14.485,0,27.886897,3,4 +9975,0,0.891924,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,13.725,14.616,0,21.406167,3,4 +10514,-1,1.567687,0,2,0,1,2,,5,5,S US 23,,1431105,5.841,7.408,0,,1.02,7 +10527,1,1.624209,2,0,0,1,2,,5,5,N US 23,,1431003,5.801,7.424,0,,1.02,7 +11047,0,1.675192,1,1,0,2,5,,5,5,Main,St,1446105,0.088,1.762,0,40.204608,3.7,5 +11134,0,1.527018,1,1,0,2,6,GRV,5,5,Webster Church,Rd,1445610,2.291,3.817,0,36.648442,5.55,5 +11137,0,2.003141,1,1,0,2,5,,5,5,Mast,Rd,1445502,3.009,5.012,0,48.075377,3.7,5 +11341,0,0.381124,1,1,0,2,6,GRV,5,5,Valentine,Rd,1445706,0.88,1.261,0,9.146965,5.55,5 +19857,0,0.857709,1,1,0,2,7,GRV,5,8,Merrill,Rd,4104136,0.612,1.47,0,20.585019,5.55,5 +19860,0,0.922023,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,3.187,4.108,0,22.128561,3.7,5 +24623,0,1.290626,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,30.975028,0.15,4 +24624,0,1.321016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.704374,0.15,4 +26480,0,0.635161,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.243868,0.15,4 +26487,0,1.026258,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.630186,0.15,4 +28207,0,1.8355,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,44.052003,0.15,4 +30152,0,1.248355,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.960512,0.15,4 +9990,0,1.57268,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,11.067,12.639,0,37.744308,3,4 +11138,0,1.998898,1,1,0,2,5,,5,5,Mast,Rd,1445502,0,1.998,0,47.973556,3.7,5 +11148,0,1.940728,1,1,0,2,5,,4,5,Joy,Rd,1445109,0,1.94,0,46.577462,5.8,4.5 +11353,0,1.308541,1,1,0,2,5,,5,5,Webster Church,Rd,1445610,0.983,2.291,0,31.404988,3.7,5 +24619,0,0.663456,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.922953,0.15,4 +26481,0,1.634952,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.238855,0.15,4 +26866,0,1.145981,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,27.50354,0.15,4 +26867,0,1.302502,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.260037,0.15,4 +11139,0,0.263605,1,1,0,2,5,,4,5,Central,St,4605379,0.323,0.587,0,6.326528,5.8,4.5 +24637,0,0.291496,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.995913,0.15,4 +11358,0,0.022326,1,1,0,2,5,,5,5,Mast,Rd,4605379,0.587,0.609,0,0.535822,3.7,5 +9997,0,0.512443,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,10.554,11.067,0,12.298635,3,4 +11357,0,1.011693,1,1,0,2,5,,5,5,Mast,Rd,1445502,1.998,3.009,0,24.280621,3.7,5 +11136,0,0.983066,1,1,0,2,5,,5,5,Webster Church,Rd,1445610,0,0.983,0,23.593587,3.7,5 +11140,0,1.022411,1,1,0,2,5,,5,5,Joy,Rd,1445109,2.07,3.092,0,24.537852,3.7,5 +26482,0,1.329487,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.907693,0.15,4 +30114,0,1.564845,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.556285,0.15,4 +11360,0,0.13005,1,1,0,2,5,,4,5,Joy,Rd,1445109,1.94,2.07,0,3.121195,5.8,4.5 +9978,0,1.086563,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,12.639,13.725,0,26.077523,3,4 +6310,0,0.931035,1,1,0,2,4,,5,8,M 36,,932308,10.64,11.571,0,22.344834,3,4 +7208,0,1.212253,1,1,0,2,7,,5,8,Kress,Rd,932804,0,1.212,0,29.094063,5.8,6 +19862,0,1.252672,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,1.395,2.648,0,30.064127,3.7,5 +19863,0,1.097195,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,0.299,1.395,0,26.332689,3.7,5 +26127,0,1.679291,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.302976,0.15,4 +29125,0,1.303267,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.278405,0.15,4 +11356,0,0.801078,1,1,0,2,5,,5,5,Mast,Rd,1445502,5.012,5.813,0,19.225878,3.7,5 +19864,0,0.298672,1,1,0,2,5,,5,5,Strawberry Lake,Rd,4104134,0,0.299,0,7.168117,3.7,5 +6599,0,0.443323,1,1,0,2,4,,5,8,M 36,,932308,10.197,10.64,0,10.639762,3,4 +7211,0,0.809718,1,1,0,2,5,,5,8,Whitewood,Rd,932710,1.02,1.829,0,19.433234,3.7,5 +7768,0,0.782599,1,1,0,2,7,,5,8,Cordley Lake,Rd,944403,0.588,1.37,0,18.782375,5.8,6 +8027,0,0.588259,1,1,0,2,7,,5,8,Cordley Lake,Rd,944403,0,0.588,0,14.11821,5.8,6 +24643,0,1.222839,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.348125,0.15,4 +30150,0,0.28115,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,6.747605,0.15,4 +7213,0,0.688083,1,1,0,2,5,,5,8,Whitewood,Rd,932710,0,0.688,0,16.513985,3.7,5 +30151,0,0.406247,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,9.749917,0.15,4 +7212,0,0.332245,1,1,0,2,5,,5,8,Whitewood,Rd,932710,0.688,1.02,0,7.973886,3.7,5 +6822,0,0.405381,1,1,0,2,4,,5,8,M 36,,932308,9.791,10.197,0,9.72915,3,4 +6083,0,0.910165,1,1,0,2,4,,5,8,M 36,,932308,11.571,12.48,0,21.843965,3,4 +19856,0,1.022265,1,1,0,2,5,,5,8,Merrill,Rd,4104136,1.47,2.492,0,24.534353,3.7,5 +19861,0,0.539101,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,2.648,3.187,0,12.938414,3.7,5 +28209,0,0.283535,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,6.804834,0.15,4 +5822,0,0.843481,1,1,0,2,4,,5,8,M 36,,932308,12.48,13.324,0,20.243546,3,4 +9961,0,1.778097,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,14.616,16.394,0,42.674329,3,4 +25039,0,1.263719,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,30.329258,0.15,4 +26476,0,1.180767,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.338409,0.15,4 +22026,0,0.035777,1,1,0,2,6,GRV,5,5,Webster Church,Rd,4603367,0,0.036,0,0.858658,5.55,5 +9959,0,0.509014,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,16.394,16.903,0,12.216338,3,4 +10516,-1,1.00235,0,2,0,1,2,,5,5,S US 23,,1431105,4.612,5.614,0,,1.02,7 +10529,1,0.714475,2,0,0,1,2,,5,5,N US 23,,1431003,4.627,5.341,0,,1.02,7 +21692,0,0.423324,1,1,0,2,5,,5,5,Coyle,Rd,4603187,6.55,6.973,0,10.159776,3.7,5 +21943,0,1.093833,1,1,0,2,5,,5,5,Whitmore Lake,Rd,4603187,5.456,6.55,0,26.251994,3.7,5 +26478,0,0.355086,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.522058,0.15,4 +26477,0,0.056048,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.34516,0.15,4 +10530,1,0.320009,2,0,0,1,2,,5,5,N US 23,,1431003,4.307,4.627,0,,1.02,7 +11327,1,0.169894,1,0,0,1,2,ROF,5,5,N US 23/Territorial,RAMP,1431702,0,0.17,0,,2.24,5 +9958,0,0.223902,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,16.903,17.126,0,5.373649,3,4 +10517,-1,0.268675,0,2,0,1,2,,5,5,S US 23,,1431105,4.343,4.612,0,,1.02,7 +11284,1,0.138527,1,0,0,1,2,ROF,5,5,S US 23/Territorial,RAMP,1431806,0,0.139,0,,2.24,5 +10419,0,0.095299,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,17.126,17.222,0,2.287184,3,4 +11287,1,0.139895,1,0,0,1,2,RON,5,5,Territorial/S US 23,RAMP,1431805,0,0.14,0,,1.09,4 +11323,1,0.160691,1,0,0,1,2,RON,5,5,Territorial/N US 23,RAMP,1431704,0,0.161,0,,1.09,4 +10528,1,0.460254,2,0,0,1,2,,5,5,N US 23,,1431003,5.341,5.801,0,,1.02,7 +11292,1,0.184007,1,0,0,1,2,RON,5,5,6 Mile/N US 23,RAMP,1431707,0,0.184,0,,1.09,4 +11300,0,0.220901,1,1,0,2,5,,5,5,6 Mile,Rd,1431706,0.106,0.327,0,5.301624,3.7,5 +11321,1,0.229331,1,0,0,1,2,ROF,5,5,N US 23/6 Mile,RAMP,1431705,0,0.229,0,,2.24,5 +10515,-1,0.227464,0,2,0,1,2,,5,5,S US 23,,1431105,5.614,5.841,0,,1.02,7 +11265,1,0.24862,1,0,0,1,2,ROF,5,5,S US 23/6 Mile,RAMP,1431808,0,0.249,0,,2.24,5 +11320,0,0.097637,1,1,0,2,5,,5,5,6 Mile,Rd,1431706,0,0.098,0,2.343282,3.7,5 +11267,1,0.175706,1,0,0,1,2,RON,5,5,6 Mile/S US 23,RAMP,1431807,0,0.176,0,,1.09,4 +11311,0,0.008125,1,1,0,2,5,,5,5,6 Mile,Rd,1431706,0.098,0.106,0,0.195001,3.7,5 +11260,0,0.087757,1,1,0,2,5,,5,5,Main,St,1446105,0,0.088,0,2.10616,3.7,5 +5507,1,0.775074,2,0,0,1,2,,5,8,N US 23,,931510,0.238,1.012,0,,1.02,7 +6904,0,1.213457,1,1,0,2,5,,5,8,Whitmore Lake,Rd,932204,0,1.213,0,29.122956,3.7,5 +7198,0,0.905573,1,1,0,2,7,,5,8,Lemen,Rd,932908,0,0.905,0,21.733744,5.8,6 +7201,0,0.698486,1,1,0,2,5,,5,8,Hamburg,Rd,932904,0.105,0.803,0,16.763659,3.7,5 +7203,0,0.626425,1,1,0,2,4,,5,8,M 36,,932903,0.1,0.726,0,15.034192,3,4 +37387,1,0.013502,1,0,0,2,4,,5,8,Winans Lake,Rd,940105,2.022,2.035,0,0.324056,3,4 +8057,0,0.592318,1,1,0,2,5,,5,8,8 Mile,Rd,942008,0,0.592,0,14.215641,3.7,5 +11121,0,1.573622,1,1,0,2,6,GRV,5,5,Barker,Rd,1445807,0,1.573,0,37.766916,5.55,5 +26356,0,0.58053,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.932718,0.15,4 +8025,0,0.869315,1,1,0,2,7,GRV,5,8,Sheldon,Rd,944709,0,0.869,0,20.863564,5.55,5 +11325,0,1.305996,1,1,0,2,6,GRV,5,5,Merrill,Rd,1445805,0,1.306,0,31.343905,5.55,5 +19859,0,0.475281,1,1,0,2,7,GRV,5,5,Merrill,Rd,4104136,0,0.475,0,11.40675,5.55,5 +19858,0,0.137221,1,1,0,2,7,GRV,5,8,Merrill,Rd,4104136,0.475,0.612,0,3.293311,5.55,5 +8020,0,0.374515,1,1,0,2,5,,5,8,Sheldon,Rd,944709,0.985,1.359,0,8.988369,3.7,5 +7767,0,0.115836,1,1,0,2,7,,5,8,Sheldon,Rd,944709,0.869,0.985,0,2.780058,5.8,6 +19948,0,0.162871,1,1,0,2,5,,5,8,Hamburg,Rd,4102598,0,0.163,0,3.908899,3.7,5 +7202,0,0.104527,1,1,0,2,9,,5,8,Hamburg,Rd,932904,0,0.105,0,2.508653,5.8,6 +7199,0,0.246534,1,1,0,2,5,,5,8,Hall,Rd,932906,0,0.246,0,5.916825,3.7,5 +7200,0,0.335256,1,1,0,2,5,,5,8,Hamburg,Rd,932904,0.803,1.138,0,8.046144,3.7,5 +7846,0,0.364349,1,1,0,2,5,,5,8,Hamburg,Rd,940105,1.591,1.955,0,8.744385,3.7,5 +7205,0,0.459993,1,1,0,2,4,,5,8,Hamburg,Rd,932902,0,0.46,0,11.039839,3,4 +5145,0,0.308257,1,1,1,2,4,,5,8,M 36,,932308,14.485,14.793,0,7.398167,3,4 +7204,0,0.099766,1,1,0,2,5,,5,8,Hamburg,Rd,932903,0,0.1,0,2.394388,3.7,5 +7976,0,0.256724,1,1,0,2,5,,5,8,8 Mile,Rd,942008,0.811,1.068,0,6.161371,3.7,5 +11324,0,0.519497,1,1,0,2,5,,5,5,Barker,Rd,1445807,1.963,2.482,0,12.467935,3.7,5 +26352,0,0.897607,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.542572,0.15,4 +26479,0,0.450618,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.814837,0.15,4 +29996,0,0.625662,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.015889,0.15,4 +7272,0,0.219193,1,1,0,2,5,,5,8,8 Mile,Rd,942008,0.592,0.811,0,5.260632,3.7,5 +10513,-1,0.43805,0,2,0,1,2,,5,5,S US 23,,1431105,7.408,7.846,0,,1.02,7 +10525,1,0.222721,2,0,0,1,2,,5,5,N US 23,,1431003,7.829,8.052,0,,1.02,7 +11035,0,0.246069,1,1,0,2,5,,5,5,Main,St,1446105,2.116,2.362,0,5.905662,3.7,5 +11288,1,0.198861,1,0,0,1,2,ROF,5,5,N US 23/8 Mile,RAMP,1431801,0,0.199,0,,2.24,5 +11317,0,0.275789,1,1,0,2,5,,5,5,Barker,Rd,1445807,2.572,2.848,0,6.618931,3.7,5 +10526,1,0.404743,2,0,0,1,2,,5,5,N US 23,,1431003,7.424,7.829,0,,1.02,7 +11263,1,0.040568,1,0,0,1,2,RON,5,5,Barker/S US 23,RAMP,1431809,0,0.041,0,,1.09,4 +11289,1,0.139435,1,0,0,1,2,ROF,5,5,N US 23/Barker,RAMP,1431708,0,0.139,0,,2.24,5 +11258,1,0.107419,1,0,0,1,2,RON,5,5,Barker/S US 23,RAMP,1431809,0.041,0.148,0,,1.09,4 +11119,0,0.09014,1,1,0,2,5,,5,5,Barker,Rd,1445807,2.482,2.572,0,2.163371,3.7,5 +5506,1,0.237694,2,0,0,1,2,,5,8,N US 23,,931510,0,0.238,0,,1.02,7 +5590,1,0.204936,1,0,0,1,2,RON,5,8,8 Mile/N US 23,RAMP,931602,0.092,0.297,0,,1.09,4 +5594,-1,0.222191,0,2,0,1,2,,5,8,S US 23,,932002,0,0.222,0,,1.02,7 +5915,1,0.331607,1,0,0,1,2,ROF,5,8,S US 23/8 Mile,RAMP,932003,0,0.332,0,,2.24,5 +7362,0,0.164468,1,1,0,2,5,,5,5,Eight Mile,Rd,942008,1.149,1.314,0,3.947221,3.7,5 +10512,-1,0.181645,0,2,0,1,2,,5,5,S US 23,,1431105,7.846,8.028,0,,1.02,7 +7337,0,0.024092,1,1,0,2,5,,5,8,8 Mile,Rd,942008,1.068,1.092,0,0.578206,3.7,5 +11257,1,0.146175,1,0,0,1,2,RON,5,5,8 Mile/N US 23,RAMP,1431810,0,0.146,0,,1.09,4 +8068,0,0.046741,1,1,0,2,5,,5,5,Eight Mile,Rd,942008,1.103,1.149,0,1.121783,3.7,5 +7914,0,0.010599,1,1,0,2,5,,5,8,8 Mile,Rd,942008,1.092,1.103,0,0.25438,3.7,5 +5589,1,0.092482,1,0,0,1,2,RON,5,5,8 Mile/N US 23,RAMP,931602,0,0.092,0,,1.09,4 +7894,0,0.083168,1,1,0,2,5,,5,5,Eight Mile,Rd,942008,1.314,1.397,0,1.996026,3.7,5 +11236,0,0.354015,1,1,0,2,5,,5,5,Main,St,1446105,1.762,2.116,0,8.496351,3.7,5 +5138,0,0.872009,1,1,0,2,4,,5,8,M 36,,931604,0.066,0.938,0,20.928227,3,4 +6810,0,0.550396,1,1,0,2,4,,5,8,M 36,,931604,0.938,1.488,0,13.209512,3,4 +7825,0,0.264353,1,1,0,2,4,,5,8,Winans Lake,Rd,940105,3.424,3.689,0,6.344471,3,4 +26355,0,0.543345,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.040278,0.15,4 +26358,0,0.821435,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.714447,0.15,4 +26359,0,0.782992,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.791797,0.15,4 +5137,0,0.066051,1,1,0,2,4,,5,8,M 36,,931604,0,0.066,0,1.585227,3,4 +7827,0,0.198225,1,1,0,2,4,,5,8,Winans Lake,Rd,940105,3.226,3.424,0,4.757408,3,4 +6484,0,0.518555,1,1,0,2,4,,5,8,M 36,,931604,1.488,2.006,0,12.445324,3,4 +19505,1,0.036248,1,0,0,1,2,RON,5,8,E M 36/S US 23,RAMP,1903207,0,0.036,0,,1.09,4 +6301,0,0.027558,1,1,0,2,4,,5,8,M 36,,931604,2.006,2.034,0,0.661393,3,4 +7821,0,0.512477,1,1,0,2,4,,5,8,Winans Lake,Rd,940105,3.689,4.201,0,12.299443,3,4 +5700,1,0.20225,1,0,0,1,2,RON,5,8,Silver Lake/S US 23,RAMP,932006,0,0.202,0,,1.09,4 +6080,0,0.17445,1,1,0,2,4,,5,8,Whitmore Lake,Rd,932204,2.815,2.989,0,4.186801,3,4 +6181,0,0.024764,1,1,0,2,4,,5,8,Silver Lake,Rd,931608,0,0.025,0,0.594343,3,4 +9484,1,0.895251,2,0,0,1,1,,3,5,E I 94,,1426109,25.176,26.071,0,,0.58,7 +9673,1,0.26028,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.16,0.42,0,,0.58,7 +9735,0,0.87323,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,0.651,1.524,0,20.957521,6,4.5 +9811,1,0.334198,1,0,0,1,2,RON,3,5,Plymouth/S US 23,RAMP,1426907,0,0.334,0,,1.09,4 +9848,0,0.221018,1,1,0,2,5,,3,5,Arlington,Blvd,1429509,0.921,1.142,0,5.304437,8,4.5 +9953,0,0.07922,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.824,0.903,0,1.90127,5,5 +9985,0,0.088483,1,1,0,2,3,,2,5,State,St,1427508,6.051,6.14,0,2.123589,6,5 +10081,0,0.150884,1,1,0,2,7,,2,5,Division,St,1430304,0,0.151,0,3.621211,8.5,4.5 +10151,0,0.145638,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.07,3.215,0,3.495309,5,5 +10259,-1,0.316237,0,2,0,1,1,,3,5,W I 94,,1426110,25.203,25.519,0,,0.58,7 +10416,1,0.42746,1,0,0,1,1,RFF,3,5,S US 23/W I 94,RAMP,1427204,0,0.427,0,,0.58,7 +10445,1,0.687352,2,0,0,1,2,,4,5,E M 14,,1431408,2.483,3.17,0,,0.8,7.5 +10455,0,0.386751,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0.118,0.505,0,9.282025,6,4.5 +10456,0,0.118268,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0,0.118,0,2.838435,6,4.5 +10486,1,0.690237,2,0,0,1,2,,4,5,N US 23,,1431202,16.678,17.368,0,,0.8,7.5 +10492,1,1.035543,2,0,0,1,2,,3,5,N US 23,,1431202,12.148,13.184,0,,0.58,7 +10510,1,0.550104,1,0,0,1,1,RFF,4,5,E I 94/S US 23,RAMP,1431108,0,0.55,0,,0.58,7 +10605,0,0.153344,2,2,1,2,3,,3,5,Packard,St,1430704,4.002,4.155,0,3.680251,5,5 +10620,0,0.131454,1,1,0,2,3,,2,5,Packard,St,1430704,0.583,0.715,0,3.154888,6,5 +10710,0,0.286261,2,2,0,2,4,,4,5,Dixboro,Rd,4605100,0.095,0.381,0,6.870269,4.5,4.5 +10759,0,0.036913,2,2,0,2,3,,3,5,Plymouth,Rd,1443101,2.956,2.992,0,0.885907,5,5 +10886,0,0.221197,1,1,0,2,4,,3,5,Geddes,Rd,1448104,2.279,2.5,0,5.308726,6,4.5 +37298,-1,0.037649,0,2,0,2,4,,4,5,Superior,Rd,4606145,0,0.038,0,0.903588,4.5,4.5 +11412,-1,0.57964,0,2,0,1,2,,3,5,S US 23,,1431603,16.543,17.122,0,,0.58,7 +11433,-1,1.278832,0,2,0,1,2,,3,5,S US 23,,1431603,12.186,13.464,0,,0.58,7 +11575,-1,0.645774,0,2,0,1,2,,4,5,W M 14,,1431410,2.456,3.102,0,,0.8,7.5 +11580,1,0.646556,2,0,0,1,2,RFF,4,5,W M 24/S US 23,RAMP,1431409,0,0.646,0,,0.58,7 +21507,0,0.098118,2,2,0,2,3,,2,5,Main,St,4603186,0.916,1.014,0,2.354836,6,5 +21862,0,1.013745,2,2,1,2,3,,3,5,Ellsworth,Rd,4603895,0,1.013,0,24.32989,5,5 +22071,0,0.14517,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.69,0.835,0,3.484074,8,4.5 +26380,0,0.226779,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,5.442692,0.15,4 +26393,0,0.187228,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.493463,0.15,4 +26394,0,0.226828,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.44387,0.15,4 +26483,0,0.566348,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.592362,0.15,4 +26486,0,0.442406,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.61774,0.15,4 +26501,0,0.569069,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.657651,0.15,4 +26517,0,0.330166,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.923989,0.15,4 +26519,0,0.482492,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.579805,0.15,4 +26521,0,0.228843,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.492223,0.15,4 +26524,0,0.323251,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.758024,0.15,4 +26528,0,0.508431,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.202333,0.15,4 +26532,0,0.231025,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.544608,0.15,4 +26648,0,0.393506,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.444135,0.15,4 +26657,0,0.212724,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.10537,0.15,4 +26671,0,0.177874,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.268971,0.15,4 +29947,0,0.247067,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.929607,0.15,4 +29948,0,0.18904,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.536962,0.15,4 +29952,0,0.244675,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.872208,0.15,4 +30014,0,0.604088,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,14.498102,0.15,4 +30028,0,0.451154,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.827691,0.15,4 +30132,0,0.31797,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.631288,0.15,4 +30137,0,0.410301,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.847218,0.15,4 +9485,1,2.190355,2,0,0,1,1,,3,5,E I 94,,1426109,22.987,25.176,0,,0.58,7 +9640,1,0.315651,1,0,0,1,1,ROF,3,5,W I 94/State,RAMP,1427202,0,0.316,0,,2.24,5 +9642,1,0.385036,1,0,0,1,1,RON,3,5,S State/W I 94,RAMP,1427110,0,0.385,0,,1.09,4 +9952,0,0.257187,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.951,1.208,0,6.172478,5,5 +10015,0,0.193142,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.483,3.676,0,4.635416,5,5 +10258,0,0.09187,2,2,0,2,3,,3,5,State,St,1427508,3.815,3.906,0,2.204878,5,5 +10261,-1,2.313934,0,2,0,1,1,,3,5,W I 94,,1426110,22.89,25.203,0,,0.58,7 +10418,1,0.256369,1,0,0,1,1,RON,3,5,N State/W I 94,RAMP,1427201,0,0.256,0,,1.09,4 +10612,0,0.256374,1,1,1,2,3,,3,5,Packard,St,1430704,2.113,2.37,0,6.152981,5,5 +10752,0,0.346514,1,1,0,2,7,,4,5,Morgan,Rd,1437402,0.153,0.5,0,8.316326,6.55,4.5 +10778,0,0.243059,1,1,0,2,5,,4,5,Stone School,Rd,1436802,1.397,1.64,0,5.833428,5.8,4.5 +19889,0,0.5439,1,1,1,2,4,,3,5,Platt,Rd,4302160,10.16,10.703,0,13.05359,6,4.5 +21185,0,0.269455,2,2,0,2,3,,3,5,Eisenhower,Pkwy,4600068,1.956,2.226,0,6.466921,5,5 +21500,0,0.326418,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,8.706,9.033,0,7.834027,3.7,5 +26256,0,0.882197,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.172739,0.15,4 +26327,0,0.531429,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.754296,0.15,4 +26485,0,0.423497,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.163938,0.15,4 +26539,0,0.249189,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.980545,0.15,4 +26543,0,0.319979,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.679503,0.15,4 +26677,0,0.416733,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.001588,0.15,4 +29954,0,0.474387,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.385294,0.15,4 +29955,0,0.473227,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.357458,0.15,4 +30120,0,0.430104,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.322495,0.15,4 +9487,1,0.370854,2,0,0,1,1,,3,5,E I 94,,1426109,22.616,22.987,0,,0.58,7 +9496,0,0.543108,1,1,0,2,4,,4,5,State,Rd,1427508,2.208,2.75,0,13.034599,4.5,4.5 +40526,0,0.450194,1,1,0,2,4,,4,5,State,Rd,1427508,2.75,3.201,0,10.804653,4.5,4.5 +10343,-1,0.280588,0,2,0,1,1,,3,5,W I 94,,1426110,22.609,22.89,0,,0.58,7 +21477,1,0.369392,1,0,0,1,1,RON,4,5,N State/E I 94,RAMP,4603252,0,0.369,0,,1.09,4 +40527,0,0.28994,1,1,1,2,4,,4,5,Ellsworth,Rd,4602939,7.696,7.986,0,6.958551,4.5,4.5 +26258,0,0.650588,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.614106,0.15,4 +26259,0,1.040011,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.960268,0.15,4 +26544,0,0.462713,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.105118,0.15,4 +26569,0,0.562672,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.504131,0.15,4 +29991,0,0.483342,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.600214,0.15,4 +9489,1,0.369957,2,0,0,1,1,,3,5,E I 94,,1426109,22.246,22.616,0,,0.58,7 +40530,1,0.186204,2,0,0,2,3,DIV,4,5,State,Rd,5498164,0,0.186,0,4.468894,3.7,5 +40529,-1,0.139691,0,2,0,2,3,DIV,4,5,State,Rd,1427508,3.302,3.442,0,3.35259,3.7,5 +20021,0,0.692752,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,0,0.693,0,16.626048,5.8,4.5 +21235,0,0.400744,1,1,1,2,4,,4,5,Ellsworth,Rd,4602939,7.296,7.696,0,9.617855,4.5,4.5 +21691,1,0.419976,1,0,0,1,1,ROF,4,5,E I 94/State,RAMP,4603251,0,0.42,0,,2.24,5 +25028,0,0.593026,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.232616,0.15,4 +25031,0,0.57945,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.906793,0.15,4 +29992,0,0.395254,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.48609,0.15,4 +25030,0,0.262371,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.296902,0.15,4 +40531,1,0.046881,2,0,0,2,4,,4,5,State,St,5498165,0,0.047,0,1.125137,4.5,4.5 +40528,0,0.31671,1,1,0,2,3,,4,5,Ellsworth,Rd,4602939,8.081,8.398,0,7.601037,3.7,5 +9483,-1,0.156277,0,2,0,2,3,DIV,4,5,State,Rd,1427508,3.442,3.598,0,3.750643,3.7,5 +10344,-1,0.360489,0,2,0,1,1,,3,5,W I 94,,1426110,22.249,22.609,0,,0.58,7 +10762,1,0.137042,2,0,0,2,3,DIV,4,5,State,Rd,5498164,0.186,0.323,0,3.288997,3.7,5 +9666,1,0.215135,1,0,0,1,1,RON,4,5,S State/E I 94,RAMP,1426807,0,0.215,0,,1.09,4 +10002,0,0.056412,2,2,0,2,3,,4,5,State,St,1427508,3.704,3.76,0,1.353892,3.7,5 +10265,0,0.092168,2,2,0,2,3,,4,5,State,St,1427508,3.598,3.69,0,2.212041,3.7,5 +10264,0,0.013823,2,2,0,2,3,,4,5,State,St,1427508,3.69,3.704,0,0.331744,3.7,5 +9482,0,0.054389,2,2,0,2,3,,3,5,State,St,1427508,3.76,3.815,0,1.305336,5,5 +9530,0,0.569362,1,1,0,2,4,,4,5,State,Rd,1427508,1.638,2.208,0,13.664678,4.5,4.5 +10753,0,0.153355,1,1,0,2,7,,4,5,Morgan,Rd,1437402,0,0.153,0,3.680519,6.55,4.5 +40561,1,0.017902,2,0,0,2,4,,4,3,Tienken,Rd,626010,3.466,3.484,0,0.429657,4.5,4.5 +21713,0,0.308904,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,8.398,8.706,0,7.413694,3.7,5 +26545,0,0.274978,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.599484,0.15,4 +29990,0,0.41442,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.946079,0.15,4 +26548,0,0.488112,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.714696,0.15,4 +40343,1,0.324438,4,0,0,1,1,,4,3,N I 75,,647308,20.198,20.523,0,,0.8,7.5 +9991,0,0.384068,1,1,0,2,3,,3,5,State,St,1427508,4.686,5.07,0,9.217633,5,5 +10325,-1,0.232667,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,1.197,1.429,0,5.584003,5,5 +10613,0,0.327177,1,1,1,2,3,,3,5,Packard,St,1430704,1.786,2.113,0,7.852244,5,5 +10619,0,0.15144,1,1,0,2,3,,2,5,Packard,St,1430704,0.715,0.866,0,3.634557,6,5 +10653,0,0.1502,2,2,1,2,4,,3,5,Main,St,1430506,0.655,0.805,0,3.604793,6,4.5 +10711,0,0.158992,1,1,0,2,5,,3,5,Stimson,St,1437409,0,0.159,0,3.815811,8,4.5 +11483,0,0.26095,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,0.521,0.782,0,6.26279,6,4.5 +21650,1,0.232854,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,1.208,1.441,0,5.588499,5,5 +26367,0,0.698291,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,16.758988,0.15,4 +26433,0,0.205293,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.927023,0.15,4 +26441,0,0.131466,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.155177,0.15,4 +26523,0,0.130538,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.132918,0.15,4 +26559,0,0.308792,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.411012,0.15,4 +26562,0,0.291529,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.99669,0.15,4 +26564,0,0.239564,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.749545,0.15,4 +10243,0,0.278846,1,1,1,2,3,,3,5,State,St,1427508,4.278,4.557,0,6.692296,5,5 +10312,-1,0.515109,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,0.682,1.197,0,12.362622,5,5 +10656,0,0.175071,2,2,1,2,4,,3,5,Main,St,1430506,0,0.175,0,4.201714,6,4.5 +22033,1,0.515126,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,0.693,1.208,0,12.363032,5,5 +25029,0,0.27482,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.595678,0.15,4 +26561,0,0.451134,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.82721,0.15,4 +27256,0,0.256246,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.149908,0.15,4 +19276,0,0.016635,2,2,1,2,4,,3,5,Briarwood,Cir,1795605,0.052,0.069,0,0.399246,6,4.5 +10654,0,0.388274,2,2,1,2,4,,3,5,Main,St,1430506,0.267,0.655,0,9.318582,6,4.5 +26361,0,0.203936,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.894455,0.15,4 +19630,0,0.149656,1,1,0,2,5,,3,5,Oakbrook,Dr,1908304,0.666,0.815,0,3.59175,8,4.5 +10655,0,0.091469,2,2,1,2,4,,3,5,Main,St,1430506,0.175,0.267,0,2.195254,6,4.5 +9995,0,0.185725,2,2,0,2,3,,3,5,State,St,1427508,3.983,4.169,0,4.45741,5,5 +25289,0,0.317353,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.616484,0.15,4 +29995,0,0.317473,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.619353,0.15,4 +10249,0,0.076693,2,2,0,2,3,,3,5,State,St,1427508,3.906,3.983,0,1.84064,5,5 +10246,0,0.091813,2,2,0,2,3,,3,5,State,St,1427508,4.169,4.26,0,2.20351,5,5 +9993,0,0.017325,1,1,1,2,3,,3,5,State,St,1427508,4.26,4.278,0,0.415807,5,5 +9486,0,0.260649,2,2,1,2,3,,2,5,Stadium,Blvd,1429506,2.093,2.353,0,6.255586,6,5 +9989,0,0.252847,1,1,0,2,3,,2,5,State,St,1427508,5.416,5.668,0,6.068325,6,5 +10641,0,0.157346,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0.142,0.299,0,3.776311,8.5,4.5 +21368,0,0.497834,2,2,1,2,3,,3,5,Main,St,4603186,0,0.498,0,11.948017,5,5 +26365,0,0.266521,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.396504,0.15,4 +26507,0,0.25046,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,6.011041,0.15,4 +9617,0,0.225403,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,14.391,14.617,0,5.409678,6,4.5 +10836,0,0.159036,2,2,1,2,3,,3,5,Main,St,1436706,3.428,3.587,0,3.816858,5,5 +26366,0,0.230262,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.526284,0.15,4 +9743,0,0.224077,2,2,0,2,3,,3,5,Stadium,Blvd,1429506,1.869,2.093,0,5.377851,5,5 +10643,0,0.22758,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,1.364,1.592,0,5.46191,8,4.5 +22133,0,0.17562,2,2,0,2,3,,2,5,Main,St,4603186,0.498,0.673,0,4.214877,6,5 +26384,0,0.206096,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.946294,0.15,4 +26385,0,0.151681,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.640332,0.15,4 +26386,0,0.153108,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.674589,0.15,4 +10642,0,0.141557,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0,0.142,0,3.39737,8.5,4.5 +21989,0,0.051109,2,2,0,2,3,,2,5,Main,St,4603186,0.801,0.852,0,1.22661,6,5 +26505,0,0.166287,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.990884,0.15,4 +26506,0,0.152515,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.660366,0.15,4 +21867,0,0.063618,2,2,0,2,3,,2,5,Main,St,4603186,0.673,0.737,0,1.526839,6,5 +21237,0,0.063776,2,2,0,2,3,,2,5,Main,St,4603186,0.737,0.801,0,1.530618,6,5 +21720,0,0.064177,2,2,0,2,3,,2,5,Main,St,4603186,0.852,0.916,0,1.540242,6,5 +10242,0,0.345414,1,1,0,2,3,,3,5,State,St,1427508,5.07,5.416,0,8.289928,5,5 +9988,0,0.240223,1,1,0,2,3,,2,5,State,St,1427508,5.668,5.909,0,5.765361,6,5 +10267,0,0.436754,2,2,0,2,3,,2,5,Stadium,Blvd,1429506,2.353,2.79,0,10.482104,6,5 +10639,0,0.127134,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0.368,0.495,0,3.051209,8.5,4.5 +26503,0,0.098697,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.368737,0.15,4 +10640,0,0.068923,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0.299,0.368,0,1.654144,8.5,4.5 +40344,-1,0.188171,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0.244,0.432,0,4.516098,3.7,5 +10238,0,0.142677,1,1,0,2,3,,2,5,State,St,1427508,5.909,6.051,0,3.424251,6,5 +26504,0,0.121298,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.91114,0.15,4 +30096,0,0.13253,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.180711,0.15,4 +26580,0,0.088562,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.125486,0.15,4 +10006,-1,0.255757,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,1.429,1.685,0,6.138172,5,5 +10784,0,0.521487,1,1,0,2,4,,3,5,Industrial,Hwy,1441004,0,0.521,0,12.515679,6,4.5 +11159,0,0.20918,1,1,0,2,5,,3,5,Boardwalk,St,1444305,0.368,0.577,0,5.020324,8,4.5 +22045,1,0.256244,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,1.441,1.697,0,6.149863,5,5 +26540,0,0.23065,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.535593,0.15,4 +29958,0,0.414994,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.959846,0.15,4 +26551,0,0.24712,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.930884,0.15,4 +11386,0,0.007664,1,1,0,2,5,,3,5,Boardwalk,St,1444305,0.36,0.368,0,0.183937,8,4.5 +29959,0,0.119367,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.86482,0.15,4 +26566,0,0.064868,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.556823,0.15,4 +21766,0,0.259384,2,2,0,2,3,,3,5,Eisenhower,Pkwy,4600068,1.697,1.956,0,6.225227,5,5 +26541,0,0.288175,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.916207,0.15,4 +9225,0,0.207677,2,2,1,2,3,,2,5,Stadium,Blvd,1429506,2.978,3.186,0,4.984239,6,5 +10615,0,0.312699,1,1,0,2,3,,2,5,Packard,St,1430704,1.166,1.479,0,7.504766,6,5 +26448,0,0.253333,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.079981,0.15,4 +26557,0,0.243132,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.835161,0.15,4 +26565,0,0.140115,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.362764,0.15,4 +26567,0,0.223884,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.373212,0.15,4 +30133,0,0.364376,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.745013,0.15,4 +9668,0,0.188577,2,2,1,2,3,,2,5,Stadium,Blvd,1429506,2.79,2.978,0,4.52586,6,5 +11232,0,0.266508,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,0.931,1.197,0,6.396194,6,4.5 +26556,0,0.202461,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.859074,0.15,4 +30098,0,0.299627,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.191057,0.15,4 +11482,0,0.14836,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,0.782,0.931,0,3.56065,6,4.5 +11480,0,0.063943,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,1.197,1.261,0,1.534638,6,4.5 +10616,0,0.120991,1,1,0,2,3,,2,5,Packard,St,1430704,1.045,1.166,0,2.903776,6,5 +10617,0,0.107303,1,1,0,2,3,,2,5,Packard,St,1430704,0.938,1.045,0,2.575263,6,5 +26563,0,0.143087,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.434099,0.15,4 +10618,0,0.071585,1,1,0,2,3,,2,5,Packard,St,1430704,0.866,0.938,0,1.718049,6,5 +26520,0,0.14129,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.390953,0.15,4 +10277,0,0.181545,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.302,3.483,0,4.357085,5,5 +10614,0,0.307743,1,1,1,2,3,,3,5,Packard,St,1430704,1.479,1.786,0,7.385824,5,5 +26549,0,0.201599,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.838384,0.15,4 +9500,0,0.11604,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.186,3.302,0,2.784958,5,5 +26550,0,0.165096,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.96231,0.15,4 +29950,0,0.218358,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.240604,0.15,4 +30027,0,0.460082,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.041964,0.15,4 +10189,0,0.047266,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.903,0.951,0,1.134375,5,5 +10728,0,0.51155,1,1,0,2,7,GRV,4,5,Morgan,Rd,1437402,1.251,1.762,0,12.277212,6.55,4.5 +10805,0,0.604364,1,1,0,2,7,GRV,4,5,Stone School,Rd,1436802,0,0.604,0,14.504743,6.55,4.5 +20238,0,0.649794,1,1,0,2,5,,4,5,Platt,Rd,4302160,9.51,10.16,0,15.59505,5.8,4.5 +21339,0,0.342361,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,9.707,10.05,0,8.216663,3.7,5 +26546,0,0.629346,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.104301,0.15,4 +26571,0,0.569693,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.672634,0.15,4 +30121,0,0.484681,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.632355,0.15,4 +10730,0,0.502057,1,1,0,2,7,GRV,4,5,Morgan,Rd,1437402,0.749,1.251,0,12.049366,6.55,4.5 +26255,0,0.625571,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.013707,0.15,4 +10804,0,0.409989,1,1,0,2,7,,4,5,Stone School,Rd,1436802,0.604,1.014,0,9.839728,6.55,4.5 +21287,0,0.313116,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,9.033,9.346,0,7.514776,3.7,5 +26542,0,0.427023,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.248545,0.15,4 +26570,0,0.228374,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.480984,0.15,4 +10789,0,0.158953,1,1,0,2,5,,4,5,Stone School,Rd,1436802,1.238,1.397,0,3.814878,5.8,4.5 +10796,0,0.223883,1,1,0,2,5,,4,5,Stone School,Rd,1436802,1.014,1.238,0,5.373189,5.8,4.5 +26547,0,0.109354,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.624494,0.15,4 +22044,0,0.361975,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,9.346,9.707,0,8.687399,3.7,5 +26568,0,0.252157,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.051771,0.15,4 +29488,0,0.333871,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.012913,0.15,4 +20425,0,0.3751,1,1,0,2,5,,4,5,Platt,Rd,4302160,9.135,9.51,0,9.002406,5.8,4.5 +9223,1,0.160112,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0,0.16,0,,0.58,7 +9674,0,0.466834,1,1,0,2,5,,3,5,Pittsfield,Blvd,1429604,0.312,0.779,0,11.204021,8,4.5 +9752,0,0.275327,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,0,0.275,0,6.607846,6,4.5 +9940,0,0.308363,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.091,2.399,0,7.400719,5,5 +10018,0,0.631854,1,1,0,2,5,,3,5,Arlington,Blvd,1429509,0,0.632,0,15.164487,8,4.5 +10608,0,0.169702,2,2,1,2,3,,3,5,Packard,St,1430704,3.188,3.358,0,4.072842,5,5 +26537,0,0.470418,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.290024,0.15,4 +26575,0,0.334588,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.030107,0.15,4 +29509,0,0.303467,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.283207,0.15,4 +30135,0,0.622156,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,14.931735,0.15,4 +37026,0,0.10506,2,2,1,2,3,,3,5,Packard,St,1430704,3.083,3.188,0,2.521447,5,5 +10610,0,0.351012,1,1,1,2,3,,3,5,Packard,St,1430704,2.501,2.852,0,8.424283,5,5 +10770,0,0.265723,2,2,0,2,5,,3,5,Stone School,Rd,1436802,2.001,2.267,0,6.377347,8,4.5 +26536,0,0.571423,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.714159,0.15,4 +26538,0,0.605516,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,14.532382,0.15,4 +10776,0,0.361846,1,1,0,2,5,,3,5,Stone School,Rd,1436802,1.64,2.001,0,8.684305,8,4.5 +21964,1,0.282675,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,2.226,2.508,0,6.784204,5,5 +10611,0,0.131537,1,1,1,2,3,,3,5,Packard,St,1430704,2.37,2.501,0,3.156898,5,5 +26535,0,0.304234,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.301622,0.15,4 +9951,0,0.624251,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,1.361,1.985,0,14.98203,5,5 +10281,0,0.251119,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.923,4.174,0,6.026849,5,5 +26555,0,0.207783,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.9868,0.15,4 +26577,0,0.541179,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.988287,0.15,4 +30134,0,0.410741,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.857783,0.15,4 +9505,0,0.247135,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.676,3.923,0,5.931235,5,5 +26579,0,0.103169,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.47605,0.15,4 +10188,0,0.153507,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,1.208,1.361,0,3.684173,5,5 +26552,0,0.130343,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.128233,0.15,4 +10170,0,0.105449,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,1.985,2.091,0,2.530766,5,5 +10078,0,0.289717,1,1,0,2,5,,3,5,Arlington,Blvd,1429509,0.632,0.921,0,6.953211,8,4.5 +26576,0,0.395586,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.494072,0.15,4 +9890,0,0.312505,1,1,0,2,5,,3,5,Pittsfield,Blvd,1429604,0,0.312,0,7.500131,8,4.5 +10606,0,0.392162,2,2,1,2,3,,3,5,Packard,St,1430704,3.61,4.002,0,9.411888,5,5 +20286,0,0.310528,2,2,0,2,4,,3,5,Platt,Rd,4302160,11.177,11.487,0,7.452666,6,4.5 +26573,0,0.229821,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.515715,0.15,4 +30136,0,0.46397,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.135269,0.15,4 +10607,0,0.251724,2,2,1,2,3,,3,5,Packard,St,1430704,3.358,3.61,0,6.041373,5,5 +20475,0,0.350651,1,1,1,2,4,,3,5,Platt,Rd,4302160,10.826,11.177,0,8.415627,6,4.5 +20711,0,0.122861,1,1,1,2,4,,3,5,Platt,Rd,4302160,10.703,10.826,0,2.948671,6,4.5 +20089,0,0.166912,2,2,0,2,4,,3,5,Platt,Rd,4302160,11.487,11.654,0,4.005887,6,4.5 +26572,0,0.328761,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.89027,0.15,4 +20779,0,0.037534,2,2,0,2,4,,3,5,Platt,Rd,4302160,11.654,11.692,0,0.900815,6,4.5 +26484,0,0.079033,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.89679,0.15,4 +9937,0,0.25404,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.541,2.795,0,6.096971,5,5 +26498,0,0.548488,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.163707,0.15,4 +26500,0,0.533388,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.801301,0.15,4 +26553,0,0.572658,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.743792,0.15,4 +10168,0,0.142646,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.399,2.541,0,3.423496,5,5 +26574,0,0.334401,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.025633,0.15,4 +9925,0,0.262158,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,0.389,0.651,0,6.291787,6,4.5 +10153,0,0.207847,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.795,3.003,0,4.988327,5,5 +26786,0,0.283238,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.79771,0.15,4 +9503,0,0.095256,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,0.275,0.37,0,2.286155,6,4.5 +26290,0,0.138414,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.321936,0.15,4 +26490,0,0.049429,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.186299,0.15,4 +10279,0,0.018385,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,0.37,0.389,0,0.44124,6,4.5 +9930,0,0.066709,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.003,3.07,0,1.601012,5,5 +9228,0,0.022444,1,1,0,2,5,,3,5,Pittsfield,Blvd,1429604,0.779,0.802,0,0.538649,8,4.5 +9595,0,0.252055,1,1,0,2,4,,3,5,Geddes,Ave,1429306,0.558,0.81,0,6.04933,6,4.5 +9654,-1,0.165231,0,2,0,1,2,,3,5,W M 14,,1427103,3.668,3.834,0,,0.58,7 +9881,0,0.40567,1,1,0,2,5,,3,5,Hill,St,1429402,1.233,1.639,0,9.736078,8,4.5 +9882,1,0.295532,2,0,0,1,2,,3,5,E M 14,,1426704,3.658,3.953,0,,0.58,7 +37419,0,0.150885,1,1,1,2,5,,3,5,Nixon,Rd,1443105,0,0.151,0,3.621241,8,4.5 +10446,1,2.042012,2,0,0,1,2,,3,5,S US 23,,1431408,0.441,2.483,0,,0.58,7 +10534,0,0.139211,1,1,0,1,2,ROF,3,5,Whitmore Lake/E M 14,RAMP,1431001,0,0.139,0,,2.24,5 +10540,0,0.116693,1,1,0,2,4,,4,5,Barton Shore,Dr,1430910,0,0.117,0,2.800621,4.5,4.5 +10808,0,0.299583,1,1,0,2,4,,3,5,Pontiac,Trl,1451302,0.79,1.089,0,7.189997,6,4.5 +37030,1,0.053722,2,0,0,1,2,,3,5,E M 14,,1426704,3.953,4.007,0,,0.58,7 +37420,-1,0.027944,0,1,0,2,5,,3,5,Nixon,Rd,4606150,0,0.028,0,0.670651,8,4.5 +11212,0,0.14463,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.438,2.582,0,3.471116,5,5 +11221,0,0.58203,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,0.608,1.19,0,13.968723,5,5 +11396,0,0.172554,1,1,0,2,7,,3,5,Traver,Rd,1443305,0.896,1.068,0,4.141306,7,4.5 +11524,0,0.292911,1,1,0,2,5,,3,5,Dhu Varren,Rd,1431502,0.654,0.947,0,7.029855,8,4.5 +11577,-1,1.93779,0,2,0,1,2,,5,5,N US 23,,1431410,0.519,2.456,0,,1.02,7 +21704,0,0.09527,1,1,0,2,7,,3,5,Broadway,St,4600033,0.928,1.023,0,2.286484,7,4.5 +21750,0,0.501517,1,1,1,2,5,,3,5,Green,Rd,4603133,0.674,1.175,0,12.036407,8,4.5 +26378,0,0.92298,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.151515,0.15,4 +26465,0,0.411476,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.87543,0.15,4 +26587,0,0.240749,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.777979,0.15,4 +26601,0,0.2754,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.609588,0.15,4 +26605,0,0.458699,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.008771,0.15,4 +26607,0,0.407771,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.786506,0.15,4 +26609,0,0.334486,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.027654,0.15,4 +26771,0,0.192308,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.615387,0.15,4 +30129,0,0.5934,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,14.241589,0.15,4 +9561,0,0.062949,1,1,0,2,5,,2,5,Hill,St,1429402,0.533,0.596,0,1.510767,8.5,4.5 +9567,0,0.119227,1,1,0,2,7,,2,5,5th,Ave,1430303,0.987,1.106,0,2.861438,8.5,4.5 +9667,0,0.126204,2,2,0,2,5,,2,5,University,Ave,1429304,0.064,0.19,0,3.028907,8.5,4.5 +9759,0,0.186929,1,1,0,2,7,,2,5,4th,Ave,1430302,0.782,0.969,0,4.486301,8.5,4.5 +9805,0,0.126462,1,1,0,2,7,,2,5,University,Ave,1429310,0,0.127,0,3.035092,8.5,4.5 +10537,0,0.209358,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.415,0.624,0,5.024599,6,4.5 +10575,0,0.261815,1,1,0,2,4,,2,5,Fuller,St,1430804,0.376,0.637,0,6.283549,8,4.5 +10576,0,0.222141,1,1,0,2,4,,2,5,Depot,St,1430804,0.154,0.376,0,5.331373,8,4.5 +10582,0,0.077829,2,2,0,2,3,,2,5,Broadway,St,1430801,0.537,0.615,0,1.867888,6,5 +10583,0,0.215172,2,2,0,2,3,,2,5,Broadway,St,1430801,0.322,0.537,0,5.164125,6,5 +10718,-1,0.024415,0,2,0,2,4,,2,5,Moore,St,1451305,0.068,0.093,0,0.585969,8,4.5 +10775,0,0.241911,2,2,0,2,4,,2,5,Maiden,Ln,1451707,0.149,0.391,0,5.805867,8,4.5 +10892,0,0.3039,2,2,1,2,4,,3,5,Fuller,Rd,1448104,0.39,0.694,0,7.293589,6,4.5 +11029,0,0.389541,1,1,0,2,4,,3,5,Pontiac,St,1451302,0.102,0.491,0,9.348978,6,4.5 +11087,-1,0.389902,0,2,0,2,4,DV2,3,5,Fuller,Rd,1448104,0,0.39,0,9.357649,6,4.5 +11168,0,0.49405,1,1,0,2,7,,3,5,Traver,Rd,1443305,0,0.494,0,11.857207,7,4.5 +21857,0,0.126961,2,2,0,2,3,,2,5,Huron,St,4604878,2.666,2.793,0,3.047074,6,5 +21988,0,0.147677,2,2,0,2,3,,2,5,Main,St,4603186,2.039,2.187,0,3.544257,6,5 +26502,0,0.14373,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.449519,0.15,4 +26585,0,0.199864,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.796744,0.15,4 +26613,0,0.146618,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.518823,0.15,4 +26622,0,0.157804,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.787301,0.15,4 +26624,0,0.110772,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.658517,0.15,4 +26625,0,0.217433,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.218395,0.15,4 +26626,0,0.186374,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.472978,0.15,4 +29949,0,0.201972,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.84732,0.15,4 +30052,0,0.286769,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.882445,0.15,4 +30089,0,0.114923,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.75815,0.15,4 +9230,1,0.111598,2,0,0,2,4,,1,5,Division,St,1430304,0.568,0.68,0,2.678347,8,4.5 +9521,0,0.166048,1,1,0,2,5,,2,5,Hill,St,1429402,0,0.166,0,3.985148,8.5,4.5 +9892,0,0.11308,1,1,0,2,5,,1,5,4th,Ave,1430302,0.263,0.376,0,2.713916,8.5,4.5 +9946,-1,0.112928,0,3,0,2,4,,1,5,5th,Ave,1430303,0.425,0.538,0,2.71026,8,4.5 +10181,1,0.112619,2,0,0,2,5,,1,5,Ashley,St,1430210,0.359,0.472,0,2.702857,8.5,4.5 +10226,0,0.052973,1,1,0,2,4,,1,5,State,St,1427508,6.665,6.718,0,1.271361,8,4.5 +10585,-1,0.076283,0,2,0,2,3,,2,5,Beakes,St,1430801,0.077,0.154,0,1.830791,6,5 +10596,0,0.062372,1,1,0,2,5,,1,5,William,St,1430705,0.381,0.443,0,1.496927,8.5,4.5 +10627,0,0.072498,1,1,0,2,3,,2,5,Packard,St,1430704,0.076,0.149,0,1.739962,6,5 +10633,0,0.062196,1,1,0,2,7,,2,5,Madison,St,1430701,0.555,0.617,0,1.492709,8.5,4.5 +11365,0,0.10797,1,1,0,2,5,,1,5,Thompson,St,1444801,0.307,0.415,0,2.591285,8.5,4.5 +21577,0,0.06272,2,2,0,2,3,,1,5,Huron,St,4604878,2.341,2.403,0,1.505271,6,5 +21640,-1,0.045179,0,2,0,2,5,,1,5,1st,St,4600034,0.42,0.465,0,1.084296,8.5,4.5 +21722,0,0.205213,1,1,0,2,4,,2,5,Liberty,St,4603025,7.423,7.628,0,4.925109,8,4.5 +21784,0,0.064273,1,1,0,2,5,,1,5,Liberty,St,4603025,7.819,7.883,0,1.54256,8.5,4.5 +21839,0,0.112868,1,1,0,2,3,,1,5,Main,St,4603186,1.454,1.567,0,2.708841,6,5 +24723,0,0.114191,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.740588,0.15,4 +24728,0,0.130379,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,3.129106,0.15,4 +25236,0,0.100176,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.404218,0.15,4 +25240,0,0.081456,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.954951,0.15,4 +25241,0,0.054393,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.305422,0.15,4 +26040,0,0.084458,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.026981,0.15,4 +26631,0,0.085919,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.062064,0.15,4 +29941,0,0.059138,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.419316,0.15,4 +30050,0,0.089573,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.149754,0.15,4 +30090,0,0.130884,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,3.141212,0.15,4 +30093,0,0.135736,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,3.257672,0.15,4 +30094,0,0.13596,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,3.263048,0.15,4 +9671,1,0.14941,1,0,0,2,5,,2,5,Ashley,St,1430210,0.087,0.236,0,3.585841,8.5,4.5 +10389,0,0.142812,1,1,0,2,7,,2,5,4th,Ave,1430302,0,0.143,0,3.427477,8.5,4.5 +10599,1,0.05912,2,0,0,2,5,,1,5,William,St,1430705,0.192,0.251,0,1.418885,8.5,4.5 +10636,0,0.049629,1,1,0,2,5,,2,5,Madison,St,1430701,0.377,0.427,0,1.191087,8.5,4.5 +21560,0,0.097829,2,2,0,2,3,,2,5,Main,St,4603186,1.236,1.334,0,2.347901,6,5 +21702,-1,0.138841,0,1,0,2,5,,2,5,1st,St,4600034,0.087,0.226,0,3.332179,8.5,4.5 +25238,0,0.166093,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.986244,0.15,4 +26404,0,0.165137,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.963281,0.15,4 +29943,0,0.066279,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.590707,0.15,4 +10637,0,0.187505,1,1,0,2,5,,2,5,Madison,St,1430701,0.189,0.377,0,4.500116,8.5,4.5 +26392,0,0.195111,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.682663,0.15,4 +21642,-1,0.125912,0,1,0,2,5,,2,5,1st,St,4600034,0.236,0.362,0,3.021882,8.5,4.5 +26363,0,0.182673,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.384158,0.15,4 +26403,0,0.160654,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.855701,0.15,4 +21644,-1,0.009596,0,1,0,2,5,,2,5,1st,St,4600034,0.226,0.236,0,0.230303,8.5,4.5 +21641,-1,0.058263,0,2,0,2,5,,1,5,1st,St,4600034,0.362,0.42,0,1.398316,8.5,4.5 +10634,0,0.070284,1,1,0,2,7,,2,5,Madison,St,1430701,0.484,0.555,0,1.686826,8.5,4.5 +21292,0,0.082141,2,2,0,2,3,,2,5,Main,St,4603186,1.014,1.096,0,1.971376,6,5 +21782,0,0.050208,2,2,0,2,3,,2,5,Main,St,4603186,1.186,1.236,0,1.205003,6,5 +25635,0,0.068351,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.640423,0.15,4 +10635,0,0.057853,1,1,0,2,5,,2,5,Madison,St,1430701,0.427,0.484,0,1.388479,8.5,4.5 +22051,0,0.089921,2,2,0,2,3,,2,5,Main,St,4603186,1.096,1.186,0,2.158093,6,5 +25636,0,0.022943,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.550633,0.15,4 +25637,0,0.08445,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.026801,0.15,4 +9226,1,0.123105,1,0,0,2,5,,2,5,Ashley,St,1430210,0.236,0.359,0,2.954528,8.5,4.5 +10123,0,0.11983,1,1,0,2,5,,2,5,4th,Ave,1430302,0.143,0.263,0,2.875919,8.5,4.5 +10598,0,0.065403,1,1,0,2,5,,1,5,William,St,1430705,0.251,0.317,0,1.56967,8.5,4.5 +22104,0,0.079215,2,2,0,2,3,,2,5,Main,St,4603186,1.375,1.454,0,1.901162,6,5 +25243,0,0.085368,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.048824,0.15,4 +26632,0,0.113483,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.723587,0.15,4 +25242,0,0.058403,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.401666,0.15,4 +10628,0,0.076287,1,1,0,2,3,,2,5,Packard,St,1430704,0,0.076,0,1.830895,6,5 +25239,0,0.063202,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.516841,0.15,4 +29945,0,0.054339,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.304126,0.15,4 +21341,0,0.041007,2,2,0,2,3,,2,5,Main,St,4603186,1.334,1.375,0,0.98416,6,5 +10597,0,0.064296,1,1,0,2,5,,1,5,William,St,1430705,0.317,0.381,0,1.543104,8.5,4.5 +10183,0,0.060826,1,1,0,2,5,,1,5,4th,Ave,1430302,0.567,0.628,0,1.459827,8.5,4.5 +10282,1,0.06259,2,0,0,2,5,,1,5,Ashley,St,1430210,0.663,0.725,0,1.502155,8.5,4.5 +10545,0,0.061664,1,1,0,2,4,,1,5,Miller,Rd,1430906,5.126,5.188,0,1.479945,8,4.5 +21311,0,0.062241,2,2,0,2,3,,1,5,Huron,St,4604878,2.149,2.212,0,1.49379,6,5 +21509,0,0.063871,1,1,0,2,4,,1,5,Liberty,St,4603025,7.628,7.692,0,1.532909,8,4.5 +21558,-1,0.06219,0,2,0,2,5,,1,5,1st,St,4600034,0.667,0.729,0,1.49256,8.5,4.5 +21635,-1,0.064513,0,2,0,2,5,,1,5,1st,St,4600034,0.602,0.667,0,1.548301,8.5,4.5 +21652,0,0.062239,1,1,0,2,3,,1,5,Main,St,4603186,1.759,1.821,0,1.493727,6,5 +25632,0,0.071992,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.727798,0.15,4 +25642,0,0.002622,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.06294,0.15,4 +25644,0,0.074474,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.787384,0.15,4 +25905,0,0.07489,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.79736,0.15,4 +26635,0,0.069953,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.678881,0.15,4 +26637,0,0.036396,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.873503,0.15,4 +30049,0,0.095298,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.287161,0.15,4 +21636,-1,0.064389,0,2,0,2,5,,1,5,1st,St,4600034,0.538,0.602,0,1.545343,8.5,4.5 +21739,0,0.095151,2,2,0,2,3,,2,5,Huron,St,4604878,1.991,2.086,0,2.28362,6,5 +21639,-1,0.072707,0,2,0,2,5,,1,5,1st,St,4600034,0.465,0.538,0,1.744958,8.5,4.5 +21526,0,0.062986,2,2,0,2,3,,1,5,Huron,St,4604878,2.086,2.149,0,1.511653,6,5 +26428,0,0.088097,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.114332,0.15,4 +25246,0,0.236433,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.674392,0.15,4 +10547,0,0.028906,1,1,0,2,4,,2,5,Miller,Rd,1430906,5.076,5.104,0,0.693756,8,4.5 +10546,0,0.021786,1,1,0,2,4,,1,5,Miller,Rd,1430906,5.104,5.126,0,0.522876,8,4.5 +9675,0,0.062536,1,1,0,2,5,,1,5,4th,Ave,1430302,0.376,0.438,0,1.500872,8.5,4.5 +9753,1,0.063553,2,0,0,2,5,,1,5,Ashley,St,1430210,0.534,0.598,0,1.525274,8.5,4.5 +21294,0,0.064206,1,1,0,2,4,,1,5,Liberty,St,4603025,7.692,7.757,0,1.540932,8,4.5 +21402,0,0.063716,1,1,0,2,3,,1,5,Main,St,4603186,1.63,1.694,0,1.529193,6,5 +22069,0,0.063285,2,2,0,2,3,,1,5,Huron,St,4604878,2.212,2.275,0,1.518849,6,5 +25907,0,0.067883,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.629202,0.15,4 +26407,0,0.093578,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.245864,0.15,4 +41314,0,0.062183,1,1,0,2,5,,2,5,Hill,St,1429402,0.721,0.783,0,1.4924,8.5,4.5 +9943,1,0.062493,2,0,0,2,5,,1,5,Ashley,St,1430210,0.472,0.534,0,1.499827,8.5,4.5 +26638,0,0.026424,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.634174,0.15,4 +9506,1,0.064813,2,0,0,2,5,,1,5,Ashley,St,1430210,0.598,0.663,0,1.555517,8.5,4.5 +25906,0,0.06791,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.629833,0.15,4 +41313,0,0.060736,1,1,0,2,7,,2,5,University,Ave,1429310,0.252,0.313,0,1.457656,8.5,4.5 +21601,0,0.063411,1,1,0,2,3,,1,5,Main,St,4603186,1.567,1.63,0,1.521865,6,5 +22053,0,0.062131,1,1,0,2,5,,1,5,Liberty,St,4603025,7.757,7.819,0,1.491149,8.5,4.5 +30092,0,0.084785,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.034832,0.15,4 +9229,0,0.065103,1,1,0,2,5,,1,5,4th,Ave,1430302,0.502,0.567,0,1.562463,8.5,4.5 +21801,0,0.065688,2,2,0,2,3,,1,5,Huron,St,4604878,2.275,2.341,0,1.576514,6,5 +21911,0,0.064618,1,1,0,2,3,,1,5,Main,St,4603186,1.694,1.759,0,1.550831,6,5 +25904,0,0.070446,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.690703,0.15,4 +26399,0,0.071146,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.707509,0.15,4 +9947,0,0.039536,1,1,0,2,5,,1,5,4th,Ave,1430302,0.743,0.782,0,0.948863,8.5,4.5 +10586,-1,0.077295,0,2,0,2,3,,1,5,Beakes,St,1430801,0,0.077,0,1.855083,6,5 +10587,-1,0.062432,0,2,0,2,5,,2,5,Kingsley,St,1430710,0.069,0.131,0,1.498372,8.5,4.5 +10589,0,0.065868,1,1,0,2,4,,1,5,Miller,Rd,1430709,0.06,0.126,0,1.580842,8,4.5 +21236,0,0.105497,2,2,0,2,3,,2,5,Main,St,4603186,1.934,2.039,0,2.53192,6,5 +9613,0,0.113951,1,1,0,2,5,,2,5,Ashley,St,1430210,0.725,0.839,0,2.734818,8.5,4.5 +10588,-1,0.068561,0,2,0,2,5,,2,5,Kingsley,St,1430710,0,0.069,0,1.645463,8.5,4.5 +10590,0,0.060005,1,1,0,2,4,,1,5,Miller,Rd,1430709,0,0.06,0,1.440131,8,4.5 +21552,-1,0.103534,0,2,0,2,5,,2,5,1st,St,4600034,0.729,0.832,0,2.484806,8.5,4.5 +25638,0,0.039788,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.954918,0.15,4 +25640,0,0.093605,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.246518,0.15,4 +25641,0,0.091825,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.203798,0.15,4 +25639,0,0.036558,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.877386,0.15,4 +10184,0,0.05017,1,1,0,2,5,,1,5,4th,Ave,1430302,0.692,0.743,0,1.204079,8.5,4.5 +21448,0,0.112949,2,2,0,2,3,,1,5,Main,St,4603186,1.821,1.934,0,2.710776,6,5 +25231,0,0.00663,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.159122,0.15,4 +9945,0,0.06427,1,1,0,2,5,,1,5,4th,Ave,1430302,0.628,0.692,0,1.542488,8.5,4.5 +26633,0,0.054668,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.312021,0.15,4 +9813,0,0.100668,1,1,0,2,7,,2,5,5th,Ave,1430303,0.166,0.267,0,2.416022,8.5,4.5 +9893,1,0.125515,2,0,0,2,4,,2,5,Division,St,1430304,0.33,0.455,0,3.012357,8,4.5 +9983,0,0.050403,1,1,0,2,4,,2,5,State,St,1427508,6.363,6.414,0,1.209669,8,4.5 +10124,0,0.078659,1,1,0,2,5,,2,5,Hill,St,1429402,0.342,0.421,0,1.887823,8.5,4.5 +10592,0,0.064689,1,1,0,2,5,,1,5,William,St,1430705,0.595,0.659,0,1.552526,8.5,4.5 +10622,0,0.114731,1,1,0,2,3,,2,5,Packard,St,1430704,0.391,0.506,0,2.753553,6,5 +10626,0,0.134121,1,1,0,2,3,,2,5,Packard,St,1430704,0.149,0.283,0,3.218909,6,5 +10629,0,0.125133,1,1,0,2,7,,2,5,Madison,St,1430701,0.785,0.911,0,3.003199,8.5,4.5 +11376,0,0.137022,1,1,0,2,7,,2,5,Thompson,St,1444801,0.054,0.191,0,3.288526,8.5,4.5 +26636,0,0.056011,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.344266,0.15,4 +26641,0,0.078566,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.885591,0.15,4 +26643,0,0.160295,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.847085,0.15,4 +30032,0,0.125398,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.009552,0.15,4 +9614,1,0.107237,2,0,0,2,7,,2,5,Division,St,1430304,0.208,0.316,0,2.573684,8.5,4.5 +10290,0,0.094339,1,1,0,2,7,,2,5,5th,Ave,1430303,0,0.094,0,2.264145,8.5,4.5 +10297,0,0.109777,1,1,0,2,5,,2,5,Hill,St,1429402,0.166,0.276,0,2.634659,8.5,4.5 +10632,-1,0.106654,0,1,0,2,7,,2,5,Madison,St,1430701,0.617,0.723,0,2.559685,8.5,4.5 +26640,0,0.041067,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.985611,0.15,4 +29956,0,0.087211,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.093059,0.15,4 +10027,0,0.071912,1,1,0,2,7,,2,5,5th,Ave,1430303,0.094,0.166,0,1.725894,8.5,4.5 +10390,0,0.066145,1,1,0,2,5,,2,5,Hill,St,1429402,0.276,0.342,0,1.58747,8.5,4.5 +9853,1,0.057445,2,0,0,2,7,,2,5,Division,St,1430304,0.151,0.208,0,1.378676,8.5,4.5 +10624,0,0.062612,1,1,0,2,3,,2,5,Packard,St,1430704,0.3,0.362,0,1.502681,6,5 +10630,1,0.052153,1,0,0,2,7,,2,5,Madison,St,1430701,0.733,0.785,0,1.25167,8.5,4.5 +11153,0,0.054066,1,1,1,2,7,,2,5,Thompson,St,1444801,0,0.054,0,1.297579,8.5,4.5 +26639,0,0.089859,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.156621,0.15,4 +10125,1,0.0145,2,0,0,2,7,,2,5,Division,St,1430304,0.316,0.33,0,0.348003,8.5,4.5 +10625,0,0.017033,1,1,0,2,3,,2,5,Packard,St,1430704,0.283,0.3,0,0.408796,6,5 +10631,0,0.009899,1,1,0,2,7,,2,5,Madison,St,1430701,0.723,0.733,0,0.237581,8.5,4.5 +10623,0,0.028975,1,1,0,2,3,,2,5,Packard,St,1430704,0.362,0.391,0,0.695411,6,5 +9677,1,0.112621,2,0,0,2,4,,2,5,Division,St,1430304,0.455,0.568,0,2.7029,8,4.5 +10340,-1,0.112724,0,3,0,2,4,,2,5,5th,Ave,1430303,0.312,0.425,0,2.705386,8,4.5 +10594,0,0.057636,1,1,0,2,5,,1,5,William,St,1430705,0.492,0.55,0,1.383265,8.5,4.5 +11152,0,0.116035,1,1,0,2,7,,2,5,Thompson,St,1444801,0.191,0.307,0,2.784842,8.5,4.5 +25237,0,0.053912,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.293878,0.15,4 +30095,0,0.127059,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.049424,0.15,4 +9569,-1,0.045445,0,3,0,2,4,,2,5,5th,Ave,1430303,0.267,0.312,0,1.090681,8,4.5 +10595,0,0.04888,1,1,0,2,5,,1,5,William,St,1430705,0.443,0.492,0,1.173127,8.5,4.5 +29876,0,0.069251,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.662034,0.15,4 +26644,0,0.037112,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.8907,0.15,4 +29946,0,0.025061,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.601466,0.15,4 +10593,0,0.045119,1,1,0,2,5,,1,5,William,St,1430705,0.55,0.595,0,1.082858,8.5,4.5 +9984,0,0.097596,1,1,0,2,4,,2,5,State,St,1427508,6.203,6.3,0,2.342314,8,4.5 +10061,0,0.04855,1,1,0,2,5,,2,5,Hill,St,1429402,0.421,0.469,0,1.165197,8.5,4.5 +10621,0,0.07733,1,1,0,2,3,,2,5,Packard,St,1430704,0.506,0.583,0,1.855923,6,5 +26642,0,0.111244,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.669859,0.15,4 +9841,0,0.063856,1,1,0,2,5,,2,5,Hill,St,1429402,0.469,0.533,0,1.532546,8.5,4.5 +10236,0,0.06295,1,1,0,2,4,,2,5,State,St,1427508,6.14,6.203,0,1.510789,8,4.5 +10229,0,0.063094,1,1,0,2,4,,2,5,State,St,1427508,6.3,6.363,0,1.514264,8,4.5 +9884,0,0.063824,2,2,0,2,5,,1,5,University,Ave,1429304,0,0.064,0,1.531782,8.5,4.5 +10228,0,0.200797,1,1,0,2,4,,2,5,State,St,1427508,6.414,6.614,0,4.819127,8,4.5 +9982,0,0.050613,1,1,0,2,4,,1,5,State,St,1427508,6.614,6.665,0,1.214705,8,4.5 +10591,0,0.062995,1,1,0,2,5,,1,5,William,St,1430705,0.659,0.722,0,1.511882,8.5,4.5 +10024,-1,0.061825,0,3,0,2,4,,1,5,5th,Ave,1430303,0.729,0.791,0,1.483797,8,4.5 +10221,0,0.008221,1,1,0,2,5,,2,5,State,St,1427508,6.908,6.916,0,0.197315,8.5,4.5 +10291,1,0.050369,2,0,0,2,4,,1,5,Division,St,1430304,0.878,0.929,0,1.20886,8,4.5 +22105,0,0.063544,1,1,0,2,5,,1,5,Liberty,St,4603025,8.029,8.092,0,1.525055,8.5,4.5 +22123,0,0.155141,2,2,0,2,3,,1,5,Huron,St,4604878,2.511,2.666,0,3.723376,6,5 +24714,0,0.109165,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.61995,0.15,4 +24715,0,0.112716,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.705185,0.15,4 +25234,0,0.062264,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.494335,0.15,4 +26246,0,0.091455,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.19493,0.15,4 +26623,0,0.115326,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.767825,0.15,4 +30056,0,0.134795,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.235071,0.15,4 +9511,-1,0.064166,0,3,0,2,4,,1,5,5th,Ave,1430303,0.601,0.665,0,1.539978,8,4.5 +9948,1,0.063387,2,0,0,2,4,,1,5,Division,St,1430304,0.743,0.806,0,1.521282,8,4.5 +21358,0,0.107921,2,2,0,2,3,,1,5,Huron,St,4604878,2.403,2.511,0,2.590097,6,5 +21561,0,0.105851,1,1,0,2,5,,1,5,Liberty,St,4603025,7.883,7.989,0,2.54042,8.5,4.5 +25244,0,0.086951,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.086825,0.15,4 +25633,0,0.076972,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.847337,0.15,4 +25634,0,0.053066,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.273578,0.15,4 +9758,-1,0.062892,0,3,0,2,4,,1,5,5th,Ave,1430303,0.538,0.601,0,1.509409,8,4.5 +25033,0,0.053713,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.289101,0.15,4 +30091,0,0.076897,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.845521,0.15,4 +10287,-1,0.064582,0,3,0,2,4,,1,5,5th,Ave,1430303,0.665,0.729,0,1.549956,8,4.5 +25245,0,0.026559,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.637405,0.15,4 +10185,1,0.063351,2,0,0,2,4,,1,5,Division,St,1430304,0.68,0.743,0,1.520413,8,4.5 +21342,0,0.039842,1,1,0,2,5,,1,5,Liberty,St,4603025,7.989,8.029,0,0.95622,8.5,4.5 +9760,1,0.067531,2,0,0,2,4,,1,5,Division,St,1430304,0.806,0.874,0,1.620742,8,4.5 +9515,1,0.004418,2,0,0,2,4,,1,5,Division,St,1430304,0.874,0.878,0,0.106039,8,4.5 +9570,1,0.102191,2,0,0,2,4,,2,5,Division,St,1430304,1.047,1.149,0,2.452583,8,4.5 +9810,-1,0.127991,0,3,0,2,4,,1,5,5th,Ave,1430303,0.859,0.987,0,3.07179,8,4.5 +10584,-1,0.168301,0,2,0,2,3,,2,5,Beakes,St,1430801,0.154,0.322,0,4.039223,6,5 +26621,0,0.062371,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.496915,0.15,4 +26740,0,0.05858,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.405913,0.15,4 +29942,0,0.099676,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.392234,0.15,4 +9814,1,0.060212,2,0,0,2,4,,1,5,Division,St,1430304,0.987,1.047,0,1.445098,8,4.5 +26647,0,0.053498,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.283943,0.15,4 +10028,1,0.006493,2,0,0,2,4,,1,5,Division,St,1430304,0.929,0.935,0,0.155827,8,4.5 +26620,0,0.056873,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.364945,0.15,4 +9944,1,0.078391,2,0,0,2,4,,2,5,Division,St,1430304,1.149,1.228,0,1.881381,8,4.5 +10223,0,0.062553,1,1,0,2,4,,1,5,State,St,1427508,6.782,6.844,0,1.501276,8,4.5 +9981,0,0.06414,1,1,0,2,4,,1,5,State,St,1427508,6.718,6.782,0,1.539365,8,4.5 +21912,0,0.062648,1,1,0,2,5,,1,5,Liberty,St,4603025,8.092,8.155,0,1.503542,8.5,4.5 +25233,0,0.08252,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.98047,0.15,4 +25235,0,0.009019,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.216451,0.15,4 +9980,0,0.06356,1,1,0,2,5,,2,5,State,St,1427508,6.844,6.908,0,1.525431,8.5,4.5 +26645,0,0.05146,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.235039,0.15,4 +26646,0,0.059526,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.428631,0.15,4 +9976,0,0.125235,1,1,0,2,5,,2,5,State,St,1427508,7.097,7.222,0,3.005648,8.5,4.5 +9979,0,0.11358,1,1,0,2,5,,2,5,State,St,1427508,6.971,7.084,0,2.725909,8.5,4.5 +30084,0,0.109126,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.61902,0.15,4 +30085,0,0.047819,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.147658,0.15,4 +10219,0,0.012839,1,1,0,2,5,,2,5,State,St,1427508,7.084,7.097,0,0.308147,8.5,4.5 +10568,1,0.128183,2,0,0,1,2,RON,3,5,N US 23 BR,,1430809,0.074,0.202,0,,1.09,4 +10571,-1,0.202547,0,2,0,1,2,ROF,3,5,S US 23 BR,,1430808,0.078,0.28,0,,2.24,5 +10572,-1,0.044517,0,2,0,2,3,DIV,3,5,Main,St,1430808,0.033,0.078,0,1.068414,5,5 +10578,0,0.086063,1,1,1,2,4,,2,5,Depot,St,1430804,0,0.086,0,2.065519,8,4.5 +21506,0,0.633294,2,2,0,2,3,,3,5,Main,St,4603186,2.225,2.858,0,15.19905,5,5 +21936,0,0.01919,1,1,0,2,4,,3,5,Huron River,Dr,4604062,9.301,9.32,0,0.460558,6,4.5 +26388,0,0.334628,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.031079,0.15,4 +26612,0,0.076453,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.834863,0.15,4 +30022,0,0.350783,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.418801,0.15,4 +30024,0,0.328313,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.879515,0.15,4 +26389,0,0.414763,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.954311,0.15,4 +10579,0,0.087415,1,1,0,2,5,,2,5,Summit,St,1430803,0.473,0.56,0,2.097956,8.5,4.5 +21719,0,0.038472,2,2,0,2,3,,2,5,Main,St,4603186,2.187,2.225,0,0.923324,6,5 +10339,0,0.037781,1,1,0,2,7,,2,5,5th,Ave,1430303,1.106,1.144,0,0.906748,8.5,4.5 +10577,0,0.067654,1,1,1,2,4,,2,5,Depot,St,1430804,0.086,0.154,0,1.623696,8,4.5 +9514,0,0.03846,1,1,0,2,7,,2,5,4th,Ave,1430302,0.969,1.007,0,0.923051,8.5,4.5 +26614,0,0.070335,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.688029,0.15,4 +26611,0,0.009358,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.224601,0.15,4 +11034,1,0.037629,1,0,0,2,4,,2,5,Swift,St,1451303,0.071,0.109,0,0.903105,8,4.5 +10950,-1,0.068439,0,2,0,2,4,,2,5,Moore,St,1451305,0,0.068,0,1.642539,8,4.5 +11032,-1,0.101775,0,1,0,2,4,,2,5,Pontiac,St,1451302,0,0.102,0,2.442588,8,4.5 +10539,0,0.276339,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.117,0.393,0,6.632134,6,4.5 +30021,0,0.433328,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.399863,0.15,4 +10570,1,0.030247,2,0,0,2,3,DIV,3,5,Main,St,1430809,0,0.03,0,0.725926,5,5 +10573,-1,0.033111,0,2,0,2,3,DIV,3,5,Main,St,1430808,0,0.033,0,0.794664,5,5 +10569,1,0.043568,2,0,0,2,3,DIV,3,5,Main,St,1430809,0.03,0.074,0,1.045629,5,5 +10538,0,0.022196,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.393,0.415,0,0.532716,6,4.5 +9620,0,0.166919,1,1,1,2,4,,3,5,Geddes,Ave,1429306,0.291,0.457,0,4.006059,6,4.5 +10016,0,0.218351,1,1,0,2,5,,2,5,Hill,St,1429402,0.857,1.075,0,5.24042,8.5,4.5 +10082,0,0.141399,1,1,0,2,7,,2,5,Observatory,St,1429309,0.208,0.349,0,3.393576,8.5,4.5 +10191,0,0.154234,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.535,0.689,0,3.701611,6,5 +10209,1,0.276012,2,0,0,2,3,DV2,2,5,Washtenaw,Ave,1427706,0,0.276,0,6.624285,6,5 +19648,0,0.136032,2,2,0,2,9,,2,5,Medical Center,Dr,1839209,0,0.136,0,3.264768,8.5,4.5 +19649,0,0.385866,2,2,0,2,9,,2,5,Medical Center,Dr,1839205,0,0.386,0,9.260775,8.5,4.5 +21316,-1,0.268218,0,2,0,2,3,DV2,2,5,Washtenaw,Ave,4603893,0.096,0.364,0,6.437231,6,5 +21686,1,0.387983,2,0,0,2,4,DV2,3,5,Fuller,Rd,4603906,0,0.388,0,9.311603,6,4.5 +26529,0,0.192922,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.630127,0.15,4 +26533,0,0.16762,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.022875,0.15,4 +26600,0,0.237636,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.703268,0.15,4 +26658,0,0.123877,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.973042,0.15,4 +29951,0,0.228326,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.479826,0.15,4 +30055,0,0.213521,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.124513,0.15,4 +30086,0,0.121563,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.91751,0.15,4 +30087,0,0.150677,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.616249,0.15,4 +30088,0,0.126903,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.045672,0.15,4 +9509,0,0.076743,1,1,0,2,7,,2,5,University,Ave,1429310,0.313,0.39,0,1.841838,8.5,4.5 +9955,0,0.050816,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.484,0.535,0,1.219581,6,5 +10335,0,0.125055,1,1,0,2,5,,2,5,Hill,St,1429402,0.596,0.721,0,3.001328,8.5,4.5 +10387,0,0.106232,2,2,0,2,5,,2,5,Geddes,Ave,1429306,0,0.106,0,2.549579,8.5,4.5 +26630,0,0.149663,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.591921,0.15,4 +30029,0,0.109837,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.636087,0.15,4 +30030,0,0.224037,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.376882,0.15,4 +30031,0,0.197878,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.749072,0.15,4 +30131,0,0.036215,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.869158,0.15,4 +26627,0,0.099958,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.398996,0.15,4 +9562,0,0.125846,1,1,0,2,7,,2,5,University,Ave,1429310,0.127,0.252,0,3.020313,8.5,4.5 +9610,0,0.055935,2,2,0,2,5,,2,5,University,Ave,1429304,0.19,0.246,0,1.342433,8.5,4.5 +26628,0,0.135478,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.251475,0.15,4 +29874,0,0.173477,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.16345,0.15,4 +26655,0,0.111318,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.671632,0.15,4 +9501,0,0.069474,1,1,0,2,5,,2,5,Hill,St,1429402,0.783,0.852,0,1.667373,8.5,4.5 +10278,0,0.004614,1,1,0,2,5,,2,5,Hill,St,1429402,0.852,0.857,0,0.110734,8.5,4.5 +26653,0,0.104613,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.510716,0.15,4 +9633,0,0.081881,1,1,1,2,4,,2,5,Geddes,Ave,1429306,0.17,0.251,0,1.965155,8,4.5 +9963,0,0.007243,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.391,0.399,0,0.173823,6,5 +9969,1,0.063228,2,0,0,2,3,DV2,2,5,Washtenaw,Ave,1427706,0.276,0.339,0,1.517465,6,5 +10285,0,0.09104,1,1,0,2,7,,2,5,University,Ave,1429310,0.39,0.481,0,2.184962,8.5,4.5 +10391,0,0.07206,2,2,0,2,7,,2,5,Forest,Ave,1429307,0.199,0.271,0,1.729442,8.5,4.5 +10432,0,0.131584,2,2,0,2,7,,3,5,Observatory,St,1429309,0,0.132,0,3.158005,7,4.5 +22074,-1,0.088483,0,2,0,2,3,DV2,2,5,Washtenaw,Ave,4603893,0.364,0.452,0,2.123585,6,5 +10197,1,0.05223,2,0,0,2,3,DV2,2,5,Washtenaw,Ave,1427706,0.339,0.391,0,1.253518,6,5 +21806,-1,0.020087,0,2,0,2,3,DV2,2,5,Washtenaw,Ave,4603893,0.452,0.472,0,0.482089,6,5 +9636,0,0.054382,2,2,0,2,5,,2,5,Geddes,Ave,1429306,0.106,0.161,0,1.305176,8.5,4.5 +10413,0,0.009075,1,1,1,2,4,,2,5,Geddes,Ave,1429306,0.161,0.17,0,0.217792,8,4.5 +10192,0,0.0853,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.399,0.484,0,2.047202,6,5 +10341,0,0.060811,1,1,0,2,7,,2,5,Observatory,St,1429309,0.147,0.208,0,1.459468,8.5,4.5 +10409,0,0.039144,1,1,1,2,4,,2,5,Geddes,Ave,1429306,0.251,0.291,0,0.939459,8,4.5 +21747,-1,0.036046,0,1,0,2,9,,2,5,Geddes,Ave,4603660,0,0.036,0,0.865113,8.5,4.5 +10158,0,0.015304,1,1,1,2,7,,2,5,Observatory,St,1429309,0.132,0.147,0,0.367298,8.5,4.5 +9510,0,0.062466,2,2,0,2,4,,2,5,Glen,Ave,1430308,0.062,0.125,0,1.499178,8,4.5 +10022,0,0.148955,2,2,1,2,4,,2,5,Fuller,St,1430308,0.289,0.438,0,3.574932,8,4.5 +19615,1,0.057948,2,0,0,2,5,,2,5,Zina Pitcher,Pl,1908704,0.093,0.151,0,1.390758,8.5,4.5 +21531,-1,0.095677,0,2,0,2,3,DV2,2,5,Huron,St,4603893,0,0.096,0,2.296246,6,5 +21685,0,0.104696,1,1,0,2,5,,2,5,Ann,St,4604073,0.275,0.379,0,2.512713,8.5,4.5 +21933,1,0.07628,2,0,0,2,3,DV2,2,5,Huron,St,4604878,2.941,3.017,0,1.830732,6,5 +22020,-1,0.087232,0,3,0,2,5,,2,5,Catherine,St,4604074,0.433,0.52,0,2.09356,8.5,4.5 +26649,0,0.13108,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.145913,0.15,4 +26659,0,0.052688,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.264516,0.15,4 +26660,0,0.071911,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.725865,0.15,4 +26790,0,0.120303,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.887262,0.15,4 +29875,0,0.124709,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.993024,0.15,4 +21418,0,0.084342,2,2,0,2,3,,2,5,Huron,St,4604878,2.856,2.941,0,2.024209,6,5 +26650,0,0.113451,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.722819,0.15,4 +30047,0,0.152527,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.660649,0.15,4 +21615,0,0.063139,2,2,0,2,3,,2,5,Huron,St,4604878,2.793,2.856,0,1.515347,6,5 +9757,0,0.06244,2,2,0,2,4,,2,5,Glen,Ave,1430308,0,0.062,0,1.498548,8,4.5 +10286,0,0.16405,2,2,0,2,4,,2,5,Glen,Ave,1430308,0.125,0.289,0,3.937212,8,4.5 +26615,0,0.126347,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.032335,0.15,4 +26616,0,0.244247,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.86194,0.15,4 +21261,-1,0.017232,0,3,0,2,5,,2,5,Catherine,St,4604074,0.416,0.433,0,0.413567,8.5,4.5 +10574,0,0.040162,1,1,0,2,4,,2,5,Fuller,St,1430804,0.637,0.678,0,0.963879,8,4.5 +10295,0,0.067512,1,1,0,2,7,,2,5,Observatory,St,1429309,0.349,0.416,0,1.620287,8.5,4.5 +21471,0,0.083046,1,1,0,2,7,,2,5,Ann,St,4604073,0.379,0.462,0,1.993101,8.5,4.5 +26656,0,0.18984,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.556154,0.15,4 +19616,0,0.076103,1,1,0,2,5,,2,5,Zina Pitcher,Pl,1908704,0.017,0.093,0,1.826474,8.5,4.5 +24720,0,0.07402,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.776472,0.15,4 +26629,0,0.083168,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.996036,0.15,4 +19618,0,0.017028,1,1,0,2,3,,2,5,Zina Pitcher,Pl,1908704,0,0.017,0,0.408666,6,5 +10030,0,0.03431,1,1,0,2,7,,2,5,Observatory,St,1429309,0.416,0.451,0,0.823445,8.5,4.5 +19650,0,0.022309,2,2,0,2,9,,2,5,Medical Center,Dr,1839204,0,0.022,0,0.535427,8.5,4.5 +10119,0,0.115089,1,1,0,2,5,,3,5,Hill,St,1429402,1.118,1.233,0,2.762138,8,4.5 +10396,0,0.100278,1,1,1,2,4,,3,5,Geddes,Ave,1429306,0.457,0.558,0,2.406665,6,4.5 +26530,0,0.13332,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.199685,0.15,4 +26531,0,0.121092,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.9062,0.15,4 +9954,0,0.043141,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.689,0.732,0,1.035387,6,5 +10384,0,0.042713,1,1,0,2,5,,2,5,Hill,St,1429402,1.075,1.118,0,1.025106,8.5,4.5 +21438,1,0.036113,1,0,0,2,3,,2,5,Washtenaw,Ave,4601710,0,0.036,0,0.866701,6,5 +26534,0,0.213043,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.11302,0.15,4 +10190,0,0.092263,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.732,0.824,0,2.214304,5,5 +26651,0,0.157205,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.772926,0.15,4 +19647,0,0.190694,2,2,0,2,9,,2,5,Medical Center,Dr,1839209,0.136,0.327,0,4.576655,8.5,4.5 +30083,0,0.133502,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.204059,0.15,4 +11167,0,0.233211,1,1,0,2,7,,3,5,Traver,Rd,1443305,0.663,0.896,0,5.597059,7,4.5 +11222,0,0.48072,2,2,1,2,3,,2,5,Plymouth,Rd,1443101,0.07,0.55,0,11.537279,6,5 +21717,0,0.517466,1,1,0,2,7,,3,5,Broadway,St,4600033,0.181,0.699,0,12.41919,7,4.5 +26063,0,0.356616,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,8.558779,0.15,4 +30019,0,0.349988,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.399706,0.15,4 +21758,0,0.181447,1,1,0,2,7,,2,5,Broadway,St,4600033,0,0.181,0,4.354729,8.5,4.5 +26617,0,0.182682,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.384375,0.15,4 +30023,0,0.078588,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.886119,0.15,4 +11518,0,0.149297,1,1,1,2,4,,2,5,Maiden,Ln,1451707,0,0.149,0,3.583138,8,4.5 +11474,0,0.069626,2,2,1,2,3,,2,5,Plymouth,Rd,1443101,0,0.07,0,1.67102,6,5 +10536,0,0.289629,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.624,0.914,0,6.951094,6,4.5 +11019,0,0.259098,1,1,0,2,4,,3,5,Pontiac,St,1451302,0.531,0.79,0,6.218358,6,4.5 +26619,0,0.067295,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.615072,0.15,4 +26586,0,0.122159,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.931812,0.15,4 +10814,0,0.039657,1,1,0,2,4,,3,5,Pontiac,St,1451302,0.491,0.531,0,0.951757,6,4.5 +10535,0,0.150747,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.914,1.065,0,3.617931,6,4.5 +11403,0,0.168676,1,1,0,2,7,,3,5,Traver,Rd,1443305,0.494,0.663,0,4.048213,7,4.5 +11472,0,0.058096,2,2,1,2,3,,2,5,Plymouth,Rd,1443101,0.55,0.608,0,1.394292,6,5 +21706,0,0.209094,1,1,0,2,7,,3,5,Broadway,St,4600033,0.719,0.928,0,5.018268,7,4.5 +26604,0,0.099227,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.38144,0.15,4 +30054,0,0.199948,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.798754,0.15,4 +21710,0,0.020246,1,1,0,2,7,,3,5,Broadway,St,4600033,0.699,0.719,0,0.485892,7,4.5 +26603,0,0.173031,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.152733,0.15,4 +10447,1,0.441641,2,0,0,1,2,,5,5,S US 23,,1431408,0,0.441,0,,1.02,7 +10519,-1,0.474738,0,2,0,1,2,,5,5,S US 23 BR,,1431105,0,0.475,0,,1.02,7 +10520,-1,0.492094,0,2,0,1,2,,5,5,W M 14,,1431104,0,0.492,0,,1.02,7 +10532,1,0.751975,2,0,0,1,2,,5,5,N US 23 BR,,1431003,0,0.752,0,,1.02,7 +10533,1,0.33756,2,0,0,1,2,,3,5,E M 14,,1431002,0,0.338,0,,0.58,7 +10984,0,1.101714,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,1.881,2.982,0,26.441139,3,4 +11579,-1,0.519403,0,2,0,1,2,,5,5,N US 23,,1431410,0,0.519,0,,1.02,7 +21559,0,0.847329,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,0.844,1.691,0,20.335907,3,4 +30007,0,1.274267,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,30.582413,0.15,4 +10388,1,0.775805,2,0,0,1,2,,3,5,E M 14,,1426704,4.007,4.783,0,,0.58,7 +10429,-1,0.704016,0,2,0,1,2,,3,5,W M 14,,1427103,4.031,4.735,0,,0.58,7 +21780,0,0.745705,1,1,0,2,4,,4,5,Whitmore Lake,Rd,4603187,0.098,0.844,0,17.896929,4.5,4.5 +10434,-1,0.197872,0,2,0,1,2,,3,5,W M 14,,1427103,3.834,4.031,0,,0.58,7 +10521,1,0.143336,1,0,0,1,2,RON,4,5,Whitmore Lake/W M 14,RAMP,1431103,0,0.143,0,,1.09,4 +19249,1,0.217959,1,0,0,1,2,ROF,5,5,W M 14/Whitmore Lake,RAMP,1806910,0,0.218,0,,2.24,5 +21291,0,0.026451,1,1,0,2,4,,4,5,Whitmore Lake,Rd,4603187,0.066,0.092,0,0.63482,4.5,4.5 +22050,0,0.00635,1,1,0,2,4,,4,5,Whitmore Lake,Rd,4603187,0.092,0.098,0,0.152398,4.5,4.5 +21340,0,0.209479,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,1.691,1.9,0,5.027489,3,4 +10785,0,0.593723,1,1,0,2,4,,3,5,Pontiac,Trl,1451302,1.287,1.881,0,14.249346,6,4.5 +11530,0,0.393042,1,1,0,2,5,,3,5,Dhu Varren,Rd,1431502,0.261,0.654,0,9.433002,8,4.5 +26589,0,0.703636,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,16.887258,0.15,4 +26590,0,0.381439,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.15453,0.15,4 +10995,0,0.198074,1,1,0,2,4,,3,5,Pontiac,Trl,1451302,1.089,1.287,0,4.753777,6,4.5 +26588,0,0.192356,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.616549,0.15,4 +26581,0,0.150009,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.600213,0.15,4 +26377,0,0.302781,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.266754,0.15,4 +9819,1,0.256833,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,2.5,2.756,0,6.163983,6,4.5 +9987,0,0.267585,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.382,1.65,0,6.42205,6,4.5 +10891,0,0.67947,1,1,0,2,4,,3,5,Fuller,Rd,1448104,1.196,1.875,0,16.307274,6,4.5 +11051,0,0.260062,1,1,0,2,4,,3,5,Fuller,Rd,1448201,0,0.26,0,6.241485,6,4.5 +11464,0,0.148315,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.017,2.165,0,3.559555,5,5 +21617,0,0.439713,1,1,0,2,5,,3,5,Glazier,Way,4604123,0.365,0.804,0,10.553113,8,4.5 +21775,0,0.131174,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.275,0.406,0,3.148181,7,4.5 +21861,-1,0.263477,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0.552,0.815,0,6.323439,6,4.5 +26525,0,0.414562,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.949481,0.15,4 +26596,0,0.13666,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.279842,0.15,4 +26606,0,0.191647,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.59954,0.15,4 +26664,0,0.128677,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.088239,0.15,4 +26668,0,0.177713,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.265115,0.15,4 +30015,0,0.353209,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.477007,0.15,4 +30020,0,0.079164,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.899925,0.15,4 +30064,0,0.568736,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.649659,0.15,4 +10239,0,0.239124,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.143,1.382,0,5.738973,6,4.5 +41505,-1,0.70679,0,3,0,1,1,,4,2,S I 75,,1595106,1.073,1.773,0,,0.8,7.5 +9608,0,0.106443,1,1,0,2,5,,3,5,Hill,St,1429510,1.84,1.947,0,2.554623,8,4.5 +10130,0,0.168004,1,1,0,2,4,,3,5,Geddes,Ave,1429306,0.839,1.007,0,4.032098,6,4.5 +26554,0,0.288741,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.929774,0.15,4 +29953,0,0.29761,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.142643,0.15,4 +29957,0,0.37928,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.102731,0.15,4 +26518,0,0.116579,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.797899,0.15,4 +10377,0,0.029081,1,1,0,2,4,,3,5,Geddes,Ave,1429306,0.81,0.839,0,0.697952,6,4.5 +9899,0,0.136696,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.007,1.143,0,3.280695,6,4.5 +11162,0,0.306887,1,1,0,2,9,,3,5,Hayward,St,1443502,0.332,0.638,0,7.365299,7,4.5 +11163,0,0.223753,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.324,0.548,0,5.370073,7,4.5 +11388,0,0.331601,1,1,0,2,9,,3,5,Hayward,St,1443502,0,0.332,0,7.95842,7,4.5 +11466,0,0.398812,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.618,2.017,0,9.571485,5,5 +22125,0,0.313505,1,1,0,2,4,,3,5,Fuller,Rd,4604123,0,0.313,0,7.524119,6,4.5 +29506,0,0.15414,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.699362,0.15,4 +29507,0,0.445029,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.680694,0.15,4 +30018,0,0.248921,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.974112,0.15,4 +30053,0,0.246127,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.907046,0.15,4 +30141,0,0.195736,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.697673,0.15,4 +11393,0,0.170564,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.014,0.184,0,4.093527,7,4.5 +30016,0,0.153212,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.677084,0.15,4 +30017,0,0.157039,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.768937,0.15,4 +21267,-1,0.257111,0,2,0,2,9,,3,5,Campus,Blvd,4603256,0,0.257,0,6.170666,7,4.5 +21579,1,0.220239,2,0,0,2,9,,3,5,Campus,Blvd,4606011,0,0.22,0,5.285732,7,4.5 +37031,1,0.031737,1,0,0,1,2,RON,3,5,Whitmore Lake/E M 14,RAMP,1431001,0.139,0.171,0,,1.09,4 +11165,0,0.013411,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0,0.014,0,0.32186,7,4.5 +11164,0,0.076732,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.184,0.261,0,1.841573,7,4.5 +11390,0,0.063325,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.261,0.324,0,1.519794,7,4.5 +10763,0,0.155531,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.463,1.618,0,3.732741,5,5 +11215,0,0.224208,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.239,1.463,0,5.381003,5,5 +11467,0,0.048559,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.19,1.239,0,1.165407,5,5 +25232,0,0.138338,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.320111,0.15,4 +25899,0,0.362914,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.709946,0.15,4 +30140,0,0.253968,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.095238,0.15,4 +21859,0,0.051335,1,1,0,2,4,,3,5,Fuller,Rd,4604123,0.313,0.365,0,1.23203,6,4.5 +30142,0,0.305998,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.343956,0.15,4 +26667,0,0.216465,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.195163,0.15,4 +9468,0,0.112892,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,1.524,1.637,0,2.709398,6,4.5 +10035,1,0.49566,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,2.004,2.5,0,11.895832,6,4.5 +11082,0,0.314367,1,1,0,2,4,,3,5,Geddes,Rd,1448104,1.965,2.279,0,7.544796,6,4.5 +21935,0,0.175896,1,1,0,2,4,,3,5,Huron River,Dr,4604132,0,0.176,0,4.221504,6,4.5 +22127,-1,0.485673,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0.066,0.552,0,11.656154,6,4.5 +26527,0,0.364621,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.750905,0.15,4 +26597,0,0.514449,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.346783,0.15,4 +26662,0,0.302977,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.271444,0.15,4 +26669,0,0.501899,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.045586,0.15,4 +9532,0,0.283791,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,1.658,1.942,0,6.810976,6,4.5 +9852,0,0.303065,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.65,1.953,0,7.273561,6,4.5 +9612,0,0.052217,1,1,0,2,4,,3,5,Huron River,Dr,1429306,1.953,2.005,0,1.253203,6,4.5 +39860,0,0.014027,1,1,0,2,4,,4,3,South,Blvd,616405,4.002,4.016,0,0.336648,4.5,4.5 +10250,0,0.021527,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,1.637,1.658,0,0.516653,6,4.5 +10301,1,0.062208,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,1.942,2.004,0,1.492987,6,4.5 +11085,0,0.074674,1,1,0,2,4,,3,5,Fuller,Rd,1448104,1.875,1.95,0,1.792186,6,4.5 +21362,-1,0.066168,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0,0.066,0,1.588022,6,4.5 +10890,0,0.015211,1,1,0,2,4,,3,5,Fuller,Rd,1448104,1.95,1.965,0,0.36507,6,4.5 +26661,0,0.201344,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.832262,0.15,4 +26663,0,0.188007,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.512177,0.15,4 +10014,1,0.540049,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,2.756,3.296,0,12.961168,6,4.5 +21528,0,0.375286,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.202,0.577,0,9.006856,8,4.5 +21619,-1,0.54276,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0.815,1.358,0,13.026248,6,4.5 +21761,0,0.398873,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.646,1.045,0,9.572953,7,4.5 +21772,0,0.221793,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.425,0.646,0,5.323032,7,4.5 +22029,0,0.193497,1,1,1,2,5,,3,5,Green,Rd,4603133,0.481,0.674,0,4.643929,8,4.5 +26610,0,0.305806,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.339333,0.15,4 +26670,0,0.311405,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.473711,0.15,4 +21741,0,0.201678,1,1,0,2,5,,3,5,Glazier,Way,4604080,0,0.202,0,4.840274,8,4.5 +26602,0,0.247297,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.935119,0.15,4 +37032,1,0.037763,1,0,0,1,2,ROF,3,5,E M 14/Whitmore Lake,RAMP,4606010,0,0.038,0,,2.24,5 +30139,0,0.260621,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.254903,0.15,4 +9560,1,0.252975,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,3.451,3.704,0,6.071403,6,4.5 +11461,0,0.15868,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.279,2.438,0,3.808326,5,5 +21937,-1,0.248472,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,1.514,1.762,0,5.963337,6,4.5 +26608,0,0.34735,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.336404,0.15,4 +26666,0,0.35865,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.607595,0.15,4 +9804,1,0.15479,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,3.296,3.451,0,3.714964,6,4.5 +21422,-1,0.156406,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,1.358,1.514,0,3.753743,6,4.5 +21773,0,0.01839,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.406,0.425,0,0.441363,7,4.5 +10334,0,0.101537,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,3.704,3.805,0,2.436876,6,4.5 +11213,0,0.113957,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.165,2.279,0,2.73497,5,5 +21694,0,0.27522,1,1,1,2,5,,3,5,Green,Rd,4603133,0,0.275,0,6.605289,8,4.5 +21313,0,0.11354,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.577,0.69,0,2.724957,8,4.5 +21270,0,0.121026,1,1,1,2,5,,3,5,Green,Rd,4603133,0.36,0.481,0,2.904617,8,4.5 +21480,0,0.084645,1,1,1,2,5,,3,5,Green,Rd,4603133,0.275,0.36,0,2.031475,8,4.5 +26375,0,1.169991,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.079796,0.15,4 +26582,0,0.21763,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.22313,0.15,4 +26583,0,0.29429,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.062954,0.15,4 +26618,0,0.302293,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.255032,0.15,4 +26672,0,0.264481,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.347547,0.15,4 +30062,0,0.317372,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.616939,0.15,4 +30128,0,0.513381,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.321153,0.15,4 +30130,0,0.255464,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.131139,0.15,4 +9751,0,0.212415,1,1,1,2,7,,3,5,Huron,Pkwy,1429602,4.445,4.658,0,5.097969,7,4.5 +11166,0,0.227425,1,1,0,2,7,,3,5,Traver,Rd,1443305,1.978,2.205,0,5.458191,7,4.5 +11395,0,0.27093,1,1,0,2,7,,3,5,Traver,Rd,1443305,2.205,2.476,0,6.502318,7,4.5 +11410,0,0.129327,1,1,0,2,5,,3,5,Nixon,Rd,1443105,0.511,0.64,0,3.103854,8,4.5 +26592,0,0.339236,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.141675,0.15,4 +30125,0,0.209446,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.02671,0.15,4 +30126,0,0.118348,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.84035,0.15,4 +30127,0,0.33866,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.127834,0.15,4 +9502,0,0.096534,1,1,0,2,7,,3,5,Tuebingen,Pkwy,1429602,4.658,4.754,0,2.316821,7,4.5 +11522,0,0.185084,1,1,0,2,5,,3,5,Dhu Varren,Rd,1431502,0.947,1.132,0,4.442014,8,4.5 +37421,1,0.026201,1,0,0,2,5,,3,5,Nixon,Rd,1443105,0.151,0.177,0,0.628835,8,4.5 +11425,0,0.270574,1,1,0,2,5,,3,5,Nixon,Rd,1443105,0.24,0.511,0,6.493766,8,4.5 +37422,-1,0.013048,0,1,0,2,5,,3,5,Nixon,Rd,4606150,0.028,0.041,0,0.313151,8,4.5 +11174,0,0.071023,1,1,0,2,5,,3,5,Nixon,Rd,1443105,0.64,0.711,0,1.70455,8,4.5 +11171,0,0.823542,1,1,0,2,5,,5,5,Nixon,Rd,1443105,1.21,2.033,0,19.765001,3.7,5 +21536,0,0.443556,2,2,0,2,5,,3,5,Green,Rd,4603133,1.175,1.619,0,10.645354,8,4.5 +22079,0,0.451722,1,1,1,2,5,,3,5,Green,Rd,4603133,2.006,2.458,0,10.841324,8,4.5 +26508,0,0.516179,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.388292,0.15,4 +26594,0,0.384608,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.230595,0.15,4 +10760,0,0.200323,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.582,2.782,0,4.807748,5,5 +11456,0,0.173109,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.782,2.956,0,4.154619,5,5 +21321,1,0.097068,2,0,0,2,5,,3,5,Green,Rd,4603133,1.706,1.803,0,2.329637,8,4.5 +26595,0,0.25358,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.085917,0.15,4 +30099,0,0.271933,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.526395,0.15,4 +30063,0,0.101752,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.44205,0.15,4 +9477,1,0.406851,3,0,0,1,1,,4,5,E I 94,,1426109,26.864,27.271,0,,0.8,7.5 +9711,0,0.125148,1,1,0,2,5,,4,5,Mansfield,St,1427902,0.284,0.409,0,3.003556,5.8,4.5 +9714,1,0.386555,1,0,0,1,1,RON,4,5,Michigan/W I 94,RAMP,1427806,0.201,0.588,0,,1.09,4 +9823,0,0.247541,2,2,1,2,3,,4,5,Packard,Rd,1428902,0,0.247,0,5.940995,3.7,5 +9838,-1,0.20512,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0,0.205,0,4.922883,3.7,5 +9857,1,0.173105,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0,0.173,0,4.154509,3.7,5 +9902,0,0.367776,2,2,0,2,3,,4,5,Washtenaw,Ave,1427706,4.632,4.999,0,8.826624,3.7,5 +9974,0,0.077592,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.088,1.166,0,1.8622,5,5 +10008,0,0.260189,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.535,0.795,0,6.244535,4.5,4.5 +10049,1,0.355598,1,0,0,1,1,ROF,4,5,E I 94/Michigan,RAMP,1427710,0,0.355,0,,2.24,5 +10210,0,0.764699,1,1,0,2,7,GRV,4,5,Morgan,St,1427703,0,0.764,0,18.352778,6.55,4.5 +10234,-1,0.321629,0,3,0,1,1,,4,5,W I 94,,1426110,27.024,27.345,0,,0.8,7.5 +10496,1,1.170379,2,0,0,1,2,,3,5,N US 23,,1431202,10.458,11.628,0,,0.58,7 +11220,0,0.587552,1,1,0,2,4,,3,5,Golfside,Dr,1436304,0.43,1.017,0,14.101237,6,4.5 +11346,0,0.267314,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,10.548,10.815,0,6.41554,5,5 +11440,-1,1.140856,0,2,0,1,2,,3,5,S US 23,,1431603,10.457,11.597,0,,0.58,7 +11551,0,0.134168,1,1,0,2,5,,4,5,Congress,St,1434509,0.25,0.384,0,3.22003,5.8,4.5 +21263,0,0.310611,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.197,2.508,0,7.454663,3.7,5 +21535,0,0.474297,2,2,0,2,4,,4,5,Clark,Rd,4603250,0,0.474,0,11.383121,4.5,4.5 +25290,0,0.333204,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.996907,0.15,4 +25307,0,0.297438,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.138513,0.15,4 +26675,0,0.344817,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.275598,0.15,4 +26676,0,0.528094,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.674264,0.15,4 +26678,0,0.295788,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.098915,0.15,4 +26680,0,0.238321,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.719709,0.15,4 +26684,0,0.342767,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.226416,0.15,4 +26687,0,0.371191,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.908595,0.15,4 +26694,0,0.24474,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.87376,0.15,4 +30013,0,0.548696,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.168705,0.15,4 +30113,0,0.61138,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.673112,0.15,4 +9222,-1,0.324227,0,2,0,1,2,FCD,4,5,S US 23 CD,,1426905,0.116,0.44,0,,0.8,7.5 +9478,1,0.793236,3,0,0,1,1,,3,5,E I 94,,1426109,26.071,26.864,0,,0.58,7 +10085,0,0.641128,1,1,0,2,3,,4,5,Michigan,Ave,1427301,17.128,17.769,0,15.387069,3.7,5 +10248,-1,1.013652,0,3,0,1,1,,4,5,W I 94,,1426110,26.01,27.024,0,,0.8,7.5 +10288,1,0.219396,2,0,0,1,2,FCD,4,5,N US 23 CD,,1426908,0.149,0.369,0,,0.8,7.5 +10497,1,0.999286,2,0,0,1,2,,4,5,N US 23,,1431202,9.459,10.458,0,,0.8,7.5 +10507,1,0.353289,1,0,0,1,1,RFF,4,5,N US 23/E I 94,RAMP,1431201,0,0.353,0,,0.58,7 +11350,0,1.022369,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,9.093,10.115,0,24.536857,5,5 +11441,-1,1.015374,0,2,0,1,2,,3,5,S US 23,,1431603,9.442,10.457,0,,0.58,7 +21423,0,0.231678,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.244,1.476,0,5.560274,5,5 +25278,0,0.418553,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.045281,0.15,4 +26244,0,0.49354,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.844958,0.15,4 +10353,0,0.168763,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.96,17.128,0,4.050305,3.7,5 +10498,1,0.601311,2,0,0,1,2,,4,5,N US 23,,1431202,8.858,9.459,0,,0.8,7.5 +11355,0,0.510516,2,2,1,2,3,,4,5,Carpenter,Rd,1431609,8.582,9.093,0,12.252372,3.7,5 +11452,-1,0.632103,0,2,0,1,2,,4,5,S US 23,,1431603,8.81,9.442,0,,0.8,7.5 +9971,1,0.285493,1,0,0,1,2,RON,4,5,Michigan/N US 23,RAMP,1427608,0,0.285,0,,1.09,4 +10356,0,0.054267,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.905,16.96,0,1.302406,3.7,5 +9850,-1,0.115788,0,2,0,1,2,FCD,4,5,S US 23 CD,,1426905,0,0.116,0,,0.8,7.5 +9504,1,0.149321,2,0,0,1,2,FCD,4,5,N US 23 CD,,1426908,0,0.149,0,,0.8,7.5 +11361,0,0.114031,2,2,1,2,4,,4,5,Carpenter,Rd,1431609,8.468,8.582,0,2.736742,4.5,4.5 +25277,0,0.260454,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.250897,0.15,4 +9513,-1,0.266787,0,2,0,1,2,FCD,3,5,S US 23 CD,,1426905,0.52,0.787,0,,0.58,7 +9665,1,0.235936,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.487,0.723,0,,0.58,7 +10128,1,0.307273,2,0,0,1,2,FCD,3,5,N US 23 CD,,1426908,0.692,0.999,0,,0.58,7 +10254,-1,0.396769,0,2,0,1,1,,3,5,W I 94,,1426110,25.614,26.01,0,,0.58,7 +21365,1,0.572844,1,0,0,1,1,RFF,3,5,W I 94/N US 23,RAMP,4603872,0,0.573,0,,0.58,7 +26674,0,0.152223,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.653359,0.15,4 +9806,1,0.067044,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.42,0.487,0,,0.58,7 +10179,-1,0.080271,0,2,0,1,2,FCD,3,5,S US 23 CD,,1426905,0.44,0.52,0,,0.58,7 +10256,-1,0.094847,0,2,0,1,1,,3,5,W I 94,,1426110,25.519,25.614,0,,0.58,7 +10392,1,0.079478,2,0,0,1,2,FCD,4,5,N US 23 CD,,1426908,0.369,0.448,0,,0.8,7.5 +10415,1,0.259516,1,0,0,1,1,RFS,3,5,N US 23/W I 94,RAMP,1427208,0,0.259,0,,0.22,6 +10509,1,0.260136,1,0,0,1,1,RFS,4,5,S US 23/E I 94,RAMP,1431109,0,0.26,0,,0.22,6 +9639,1,0.255987,1,0,0,1,1,RFS,3,5,W I 94/S US 23,RAMP,1427205,0,0.256,0,,0.22,6 +10508,1,0.272961,1,0,0,1,1,RFS,4,5,E I 94/N US 23,RAMP,1431110,0,0.273,0,,0.22,6 +9756,1,0.244284,2,0,0,1,2,FCD,3,5,N US 23 CD,,1426908,0.448,0.692,0,,0.58,7 +10026,-1,0.229102,0,2,0,1,2,FCD,3,5,S US 23 CD,,1426905,0.787,1.016,0,,0.58,7 +40912,-1,0.026712,0,1,0,2,4,,4,4,Jefferson,Ave,0,0,0,0,0.641091,4.5,4.5 +9517,1,0.176741,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.723,0.9,0,,0.58,7 +11347,0,0.433349,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,10.115,10.548,0,10.400388,5,5 +21620,0,0.230977,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.013,1.244,0,5.543459,5,5 +25281,0,0.326164,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.827927,0.15,4 +25280,0,0.219363,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.264705,0.15,4 +10352,0,0.471489,1,1,0,2,3,,4,5,Michigan,Ave,1427301,17.906,18.378,0,11.315746,3.7,5 +26241,0,0.470751,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.298022,0.15,4 +26242,0,0.721044,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.305063,0.15,4 +9579,0,0.137089,1,1,0,2,3,,4,5,Michigan,Ave,1427301,17.769,17.906,0,3.290147,3.7,5 +10853,0,0.231491,1,1,0,2,5,,4,5,Munger,Rd,1438404,3.055,3.287,0,5.555789,5.8,4.5 +11569,0,0.07538,1,1,0,2,5,,4,5,Munger,Rd,1438404,2.98,3.055,0,1.809123,5.8,4.5 +9576,0,0.088332,1,1,0,2,3,,4,5,Michigan,Ave,1427301,18.378,18.466,0,2.119966,3.7,5 +10351,0,0.004985,1,1,0,2,3,,4,5,Michigan,Ave,1427301,18.466,18.471,0,0.119642,3.7,5 +21938,0,0.347486,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.476,1.823,0,8.339657,5,5 +25279,0,0.203615,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.886763,0.15,4 +11231,0,0.429844,1,1,0,2,4,,3,5,Golfside,Dr,1436304,0,0.43,0,10.316268,6,4.5 +21687,0,0.188685,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.823,2.012,0,4.52845,5,5 +26685,0,0.146058,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.505387,0.15,4 +26686,0,0.407985,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.791638,0.15,4 +21473,0,0.185319,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.012,2.197,0,4.447651,3.7,5 +9507,1,0.232051,1,0,0,1,2,ROF,3,5,S US 23/E Washtenaw,RAMP,1429608,0,0.232,0,,2.24,5 +9564,1,0.325966,1,0,0,1,2,RON,4,5,W Washtenaw/N US 23,RAMP,1429702,0,0.326,0,,1.09,4 +9917,0,0.060176,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.49,3.55,0,1.444234,5,5 +10019,1,0.205738,1,0,0,1,2,RON,3,5,E Washtenaw/N US 23,RAMP,1429610,0,0.206,0,,1.09,4 +10134,0,0.690603,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.941,4.632,0,16.574477,5,5 +10182,1,0.416333,1,0,0,1,2,RON,3,5,E Washtenaw/S US 23,RAMP,1429606,0,0.416,0,,1.09,4 +10494,1,0.07003,2,0,0,1,2,,3,5,N US 23,,1431202,11.879,11.949,0,,0.58,7 +10601,0,0.46591,2,2,1,2,3,,3,5,Packard,St,1430704,4.616,5.082,0,11.181848,5,5 +11173,0,0.387688,1,1,0,2,4,,4,5,Clark,Rd,1436405,0.247,0.634,0,9.304517,4.5,4.5 +11186,0,0.36404,1,1,1,2,4,,4,5,Golfside,Dr,1436304,1.65,2.014,0,8.736948,4.5,4.5 +37399,0,0.095218,2,2,1,2,4,,4,5,Huron River,Dr,4605100,0,0.095,0,2.285236,4.5,4.5 +11342,0,0.340178,2,2,1,2,4,,4,5,Hogback,Rd,1431609,11.721,12.061,0,8.164264,4.5,4.5 +11437,-1,0.093764,0,2,0,1,2,,3,5,S US 23,,1431603,11.863,11.957,0,,0.58,7 +25284,0,0.302881,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.269138,0.15,4 +25285,0,0.466628,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.19908,0.15,4 +25292,0,0.437668,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.50403,0.15,4 +25293,0,0.19205,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.609195,0.15,4 +26496,0,0.342012,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.208281,0.15,4 +26652,0,0.383453,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.202863,0.15,4 +26654,0,0.339197,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.140728,0.15,4 +10139,0,0.017753,2,2,1,2,3,,3,5,Washtenaw,Ave,1427706,3.55,3.568,0,0.426083,5,5 +10602,0,0.124014,2,2,1,2,3,,3,5,Packard,St,1430704,4.492,4.616,0,2.976339,5,5 +11344,0,0.261238,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,11.135,11.396,0,6.269701,5,5 +25282,0,0.308183,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.396381,0.15,4 +25283,0,0.086538,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.076915,0.15,4 +25294,0,0.293319,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.039664,0.15,4 +10604,0,0.21439,2,2,1,2,3,,3,5,Packard,St,1430704,4.155,4.369,0,5.14537,5,5 +10603,0,0.122685,2,2,1,2,3,,3,5,Packard,St,1430704,4.369,4.492,0,2.944451,5,5 +11438,-1,0.266076,0,2,0,1,2,,3,5,S US 23,,1431603,11.597,11.863,0,,0.58,7 +10457,1,0.282226,1,0,0,1,2,ROF,3,5,N US 23/E Washtenaw,RAMP,1431307,0,0.282,0,,2.24,5 +10495,1,0.250532,2,0,0,1,2,,3,5,N US 23,,1431202,11.628,11.879,0,,0.58,7 +11345,0,0.320118,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,10.815,11.135,0,7.682822,5,5 +9912,0,0.206482,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.735,3.941,0,4.955568,5,5 +11343,0,0.32536,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,11.396,11.721,0,7.808642,5,5 +10137,0,0.149161,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.586,3.735,0,3.579852,5,5 +9914,0,0.017786,2,2,1,2,3,,3,5,Washtenaw,Ave,1427706,3.568,3.586,0,0.426862,5,5 +10453,0,0.444643,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0.695,1.14,0,10.671429,6,4.5 +11337,0,0.36104,1,1,0,2,4,,4,5,Hogback,Rd,1431609,12.061,12.422,0,8.664971,4.5,4.5 +26488,0,0.457344,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.976249,0.15,4 +9754,1,0.23169,1,0,0,1,2,RON,3,5,W Washtenaw/S US 23,RAMP,1429607,0,0.232,0,,1.09,4 +9922,0,0.063609,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.292,3.355,0,1.526623,5,5 +9970,1,0.274041,1,0,0,1,2,ROF,3,5,S US 23/W Washtenaw,RAMP,1427705,0,0.274,0,,2.24,5 +11436,-1,0.229187,0,2,0,1,2,,3,5,S US 23,,1431603,11.957,12.186,0,,0.58,7 +9928,0,0.026578,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.215,3.242,0,0.637872,5,5 +10144,0,0.049772,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.242,3.292,0,1.194517,5,5 +9921,0,0.05797,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.389,3.447,0,1.391291,5,5 +10283,1,0.24045,1,0,0,1,2,ROF,4,5,N US 23/W Washtenaw,RAMP,1429609,0,0.24,0,,2.24,5 +10493,1,0.199961,2,0,0,1,2,,3,5,N US 23,,1431202,11.949,12.148,0,,0.58,7 +10143,0,0.033684,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.355,3.389,0,0.80842,5,5 +10141,0,0.043254,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.447,3.49,0,1.038086,5,5 +10454,0,0.190617,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0.505,0.695,0,4.57482,6,4.5 +26447,0,0.217483,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.219595,0.15,4 +11179,0,0.246914,1,1,0,2,4,,4,5,Clark,Rd,1436405,0,0.247,0,5.925947,4.5,4.5 +25291,0,0.258346,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.200294,0.15,4 +11335,0,0.126456,1,1,0,2,4,,3,5,Huron River,Dr,1431609,12.422,12.549,0,3.034934,6,4.5 +10600,0,0.538964,2,2,1,2,3,,3,5,Packard,St,1430704,5.082,5.62,0,12.935137,5,5 +11218,0,0.216218,1,1,1,2,4,,3,5,Golfside,Dr,1436304,1.017,1.233,0,5.189241,6,4.5 +25286,0,0.545607,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.094573,0.15,4 +25287,0,0.244479,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.867504,0.15,4 +26688,0,0.352455,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.458918,0.15,4 +11207,0,0.207722,1,1,1,2,4,,4,5,Golfside,Dr,1436304,1.375,1.583,0,4.985322,4.5,4.5 +10877,0,0.031275,1,1,1,2,4,,3,5,Golfside,Dr,1436304,1.233,1.264,0,0.750589,6,4.5 +11540,0,0.110685,1,1,1,2,4,,3,5,Golfside,Dr,1436304,1.264,1.375,0,2.656431,6,4.5 +11206,0,0.067163,1,1,1,2,4,,4,5,Golfside,Dr,1436304,1.583,1.65,0,1.611901,4.5,4.5 +11161,0,0.353723,1,1,0,2,4,,4,5,Clark,Rd,1436405,0.634,0.988,0,8.489362,4.5,4.5 +11330,0,0.362185,1,1,0,2,4,,4,5,Huron River,Dr,4605104,0.467,0.829,0,8.692429,4.5,4.5 +37401,0,0.467175,1,1,1,2,4,,4,5,Huron River,Dr,4605104,0,0.467,0,11.212208,4.5,4.5 +26497,0,0.514795,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.355087,0.15,4 +26516,0,0.485452,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.650852,0.15,4 +25288,0,0.267517,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.420413,0.15,4 +26495,0,0.435215,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.445148,0.15,4 +37406,1,0.025831,1,0,0,2,4,,3,5,Geddes,Rd,1448104,2.813,2.838,0,0.619935,6,4.5 +9996,0,0.2734,1,1,1,2,3,,4,5,Michigan,Ave,1427804,0,0.273,0,6.561592,3.7,5 +21530,0,0.269125,1,1,1,2,3,,4,5,Ellsworth,Rd,4603895,2.859,3.128,0,6.459,3.7,5 +29939,0,0.451172,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.828139,0.15,4 +29940,0,0.69901,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.776236,0.15,4 +30112,0,0.458237,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.997676,0.15,4 +9476,1,0.395087,3,0,0,1,1,,4,5,E I 94,,1426109,27.271,27.666,0,,0.8,7.5 +9828,0,0.159445,2,2,1,2,4,,4,5,Hewitt,Rd,1427803,0,0.159,0,3.826679,4.5,4.5 +9831,1,0.551258,1,0,0,1,1,RON,4,5,E Michigan/E I 94,RAMP,1427709,0,0.551,0,,1.09,4 +9832,-1,0.1454,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.611,0.757,0,3.489612,3.7,5 +9842,1,0.12157,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0.609,0.73,0,2.917682,3.7,5 +9908,1,0.201469,1,0,0,1,1,RON,4,5,W Michigan/W I 94,RAMP,1427806,0,0.201,0,,1.09,4 +10222,-1,0.342229,0,3,0,1,1,,4,5,W I 94,,1426110,27.345,27.687,0,,0.8,7.5 +22022,0,0.226563,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.508,2.734,0,5.437524,3.7,5 +30037,0,0.347331,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.33595,0.15,4 +9835,-1,0.121846,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.368,0.49,0,2.924305,3.7,5 +10062,1,0.43594,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0.173,0.609,0,10.462567,3.7,5 +19246,1,0.313185,1,0,0,1,1,ROF,4,5,W I 94/W Michigan,RAMP,1808208,0,0.313,0,,2.24,5 +21963,1,0.09228,1,0,0,1,1,RON,4,5,E Michigan/W I 94,RAMP,4602346,0.009,0.101,0,,1.09,4 +10056,-1,0.163115,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.205,0.368,0,3.91475,3.7,5 +19245,1,0.371407,1,0,0,1,1,RON,4,5,W Michigan/E I 94,RAMP,1808210,0,0.371,0,,1.09,4 +10053,-1,0.121487,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.49,0.611,0,2.915698,3.7,5 +21181,1,0.008736,1,0,0,1,3,RSF,4,5,E Michigan/W I 94,RAMP,4602346,0,0.009,0,,3.7,5 +26689,0,0.49881,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.971443,0.15,4 +9716,1,0.312518,1,0,0,1,1,ROF,4,5,W I 94/E Michigan,RAMP,1427805,0,0.312,0,,2.24,5 +10051,-1,0.215573,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.757,0.972,0,5.173759,3.7,5 +10057,1,0.241942,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0.73,0.972,0,5.806598,3.7,5 +25295,0,0.142313,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.415509,0.15,4 +9795,0,0.261731,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.274,0.535,0,6.281548,4.5,4.5 +10011,0,0.114137,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.159,0.274,0,2.739277,4.5,4.5 +11552,0,0.25021,1,1,0,2,5,,4,5,Congress,St,1434509,0,0.25,0,6.005043,5.8,4.5 +21743,0,0.124948,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.734,2.859,0,2.998762,3.7,5 +9977,0,0.338569,1,1,1,2,3,,4,5,Michigan,Ave,1427804,0.644,0.982,0,8.125655,3.7,5 +29486,0,0.377516,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.060377,0.15,4 +30038,0,0.614504,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,14.748085,0.15,4 +9781,0,0.173108,1,1,1,2,3,,4,5,Michigan,Ave,1427804,0.273,0.446,0,4.1546,3.7,5 +9906,0,0.284441,1,1,0,2,5,,4,5,Mansfield,St,1427902,0,0.284,0,6.826575,5.8,4.5 +26679,0,0.208072,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.993738,0.15,4 +26681,0,0.214087,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.138076,0.15,4 +9992,0,0.192513,1,1,1,2,3,,3,5,Michigan,Ave,1427804,0.446,0.639,0,4.62032,5,5 +9779,0,0.004776,1,1,1,2,3,,3,5,Michigan,Ave,1427804,0.639,0.644,0,0.114631,5,5 +9895,0,0.283008,1,1,0,2,5,,3,5,1st,Ave,1427909,0.423,0.706,0,6.792181,8,4.5 +26277,0,0.136977,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.287448,0.15,4 +9682,0,0.07462,1,1,0,2,5,,3,5,1st,Ave,1427909,0.349,0.423,0,1.790871,8,4.5 +9773,0,0.105928,2,2,0,2,3,,3,5,Michigan,Ave,1427804,0.982,1.088,0,2.54227,5,5 +9652,0,0.266452,2,2,0,2,3,,3,5,Packard,Rd,1428902,0.824,1.091,0,6.394858,5,5 +9785,0,0.580678,2,2,0,2,4,,3,5,Hewitt,Rd,1427803,1.647,2.227,0,13.93628,6,4.5 +9851,0,0.194428,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0.355,0.55,0,4.666278,8,4.5 +10126,0,0.067304,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.681,5.748,0,1.615305,5,5 +10424,0,0.204399,1,1,0,2,5,,3,5,Oakwood,St,1429009,0.841,1.045,0,4.905575,8,4.5 +21810,0,0.377457,1,1,1,2,4,,3,5,Huron River,Dr,4603250,0.816,1.193,0,9.058961,6,4.5 +25300,0,0.144337,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.464078,0.15,4 +25303,0,0.320794,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.699059,0.15,4 +25304,0,0.484024,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.616584,0.15,4 +26697,0,0.409547,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.829132,0.15,4 +26807,0,0.326266,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.830396,0.15,4 +9769,0,0.352447,2,2,1,2,3,,4,5,Packard,Rd,1428902,0.334,0.686,0,8.458722,3.7,5 +9901,0,0.178614,2,2,0,2,3,,4,5,Washtenaw,Ave,1427706,5.149,5.327,0,4.286739,3.7,5 +10001,0,0.111342,2,2,1,2,4,,4,5,Hewitt,Rd,1427803,1.19,1.302,0,2.672197,4.5,4.5 +25308,0,0.105911,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.541854,0.15,4 +26683,0,0.365877,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.78106,0.15,4 +26696,0,0.172982,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.151571,0.15,4 +9968,0,0.086119,2,2,1,2,3,,4,5,Packard,Rd,1428902,0.247,0.334,0,2.066863,3.7,5 +10133,0,0.149542,2,2,0,2,3,,4,5,Washtenaw,Ave,1427706,4.999,5.149,0,3.589005,3.7,5 +26695,0,0.225662,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.415878,0.15,4 +26698,0,0.336401,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.073624,0.15,4 +9791,0,0.39537,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.795,1.19,0,9.48887,4.5,4.5 +26489,0,0.324914,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.797927,0.15,4 +26491,0,0.263035,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.312839,0.15,4 +9873,0,0.138447,2,2,0,2,3,,4,5,Packard,Rd,1428902,0.686,0.824,0,3.322728,3.7,5 +9900,0,0.204849,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.476,5.681,0,4.916368,5,5 +10000,0,0.215631,2,2,0,2,4,,3,5,Hewitt,Rd,1427803,1.431,1.647,0,5.175138,6,4.5 +9787,0,0.129289,2,2,1,2,4,,4,5,Hewitt,Rd,1427803,1.302,1.431,0,3.102947,4.5,4.5 +10132,0,0.14889,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.327,5.476,0,3.573351,5,5 +25306,0,0.105878,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.541081,0.15,4 +25309,0,0.144323,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.463759,0.15,4 +22078,0,0.227169,1,1,1,2,4,,3,5,Huron River,Dr,4603250,0.589,0.816,0,5.452052,6,4.5 +26493,0,0.517044,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.409058,0.15,4 +21320,0,0.114757,2,2,0,2,4,,4,5,Clark,Rd,4603250,0.474,0.589,0,2.754174,4.5,4.5 +25301,0,0.314758,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.554181,0.15,4 +9839,0,0.361631,2,2,0,2,3,,3,5,Cross,St,1428902,1.274,1.635,0,8.679146,5,5 +9847,0,0.05963,2,2,0,2,5,,3,5,Oakwood,St,1429009,0.312,0.372,0,1.431121,8,4.5 +9875,0,0.153418,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,6.284,6.437,0,3.682037,5,5 +9879,0,0.153829,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.978,6.131,0,3.691893,5,5 +9896,0,0.139575,1,1,0,2,5,,3,5,Mansfield,St,1427902,0.833,0.973,0,3.349789,8,4.5 +11516,0,0.267636,1,1,0,2,5,,3,5,Congress,St,1434509,0.6,0.868,0,6.423258,8,4.5 +26293,0,0.22731,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.45543,0.15,4 +30074,0,0.273802,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.571258,0.15,4 +9649,0,0.058069,2,2,0,2,3,,3,5,Cross,St,1428902,1.216,1.274,0,1.393653,5,5 +9709,0,0.247286,1,1,0,2,5,,3,5,Mansfield,St,1427902,0.586,0.833,0,5.934866,8,4.5 +9904,0,0.176664,1,1,0,2,5,,3,5,Mansfield,St,1427902,0.409,0.586,0,4.239931,8,4.5 +11203,0,0.21602,1,1,0,2,5,,4,5,Congress,St,1434509,0.384,0.6,0,5.184478,5.8,4.5 +25296,0,0.091506,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.196139,0.15,4 +30072,0,0.161888,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.885319,0.15,4 +9870,0,0.125061,2,2,0,2,3,,3,5,Cross,St,1428902,1.091,1.216,0,3.001457,5,5 +30073,0,0.160455,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.850908,0.15,4 +10080,0,0.227201,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0.128,0.355,0,5.452819,8,4.5 +10116,0,0.105083,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.873,5.978,0,2.521988,5,5 +25299,0,0.298211,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.157062,0.15,4 +9897,0,0.124481,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.748,5.873,0,2.987532,5,5 +10338,0,0.128332,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0,0.128,0,3.079974,8,4.5 +9593,0,0.142354,2,2,0,2,3,,3,5,Cross,St,1428902,1.635,1.778,0,3.416488,5,5 +9680,0,0.079238,1,1,0,2,5,,3,5,Summit,St,1427910,0.202,0.281,0,1.901721,8,4.5 +9869,0,0.223267,1,1,0,2,5,,3,5,Congress,St,1428004,0.362,0.586,0,5.358412,8,4.5 +26692,0,0.086117,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.066813,0.15,4 +29487,0,0.267101,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.410417,0.15,4 +30079,0,0.271969,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.527246,0.15,4 +9655,0,0.08801,1,1,0,2,5,,3,5,Congress,St,1428004,0.274,0.362,0,2.112232,8,4.5 +26691,0,0.231883,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.565198,0.15,4 +9894,0,0.108224,2,2,0,2,5,,3,5,Summit,St,1427910,0.094,0.202,0,2.597381,8,4.5 +9681,0,0.093803,2,2,0,2,5,,3,5,Summit,St,1427910,0,0.094,0,2.251281,8,4.5 +9836,-1,0.097967,0,4,0,2,3,,2,5,Cross,St,1428902,1.778,1.876,0,2.351219,6,5 +9877,0,0.180559,1,1,0,2,5,,3,5,Summit,St,1427910,0.281,0.462,0,4.333417,8,4.5 +10102,1,0.094091,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.437,6.531,0,2.258176,6,5 +9659,0,0.041132,1,1,0,2,5,,2,5,Summit,St,1427910,0.462,0.503,0,0.987167,8.5,4.5 +9876,0,0.026531,1,1,0,2,5,,2,5,Summit,St,1427910,0.503,0.529,0,0.636744,8.5,4.5 +9647,0,0.198321,1,1,0,2,5,,3,5,Oakwood,St,1429009,0.643,0.841,0,4.759699,8,4.5 +25529,0,0.257557,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.181371,0.15,4 +26801,0,0.202025,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.848603,0.15,4 +10111,0,0.152585,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,6.131,6.284,0,3.662052,5,5 +10280,0,0.130965,2,2,1,2,5,,3,5,Oakwood,St,1429009,0.372,0.503,0,3.143152,8,4.5 +25521,0,0.179215,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.301165,0.15,4 +10017,0,0.140194,1,1,1,2,5,,3,5,Oakwood,St,1429009,0.503,0.643,0,3.364667,8,4.5 +37292,1,0.018077,2,0,0,2,4,,4,5,Geddes,Rd,1448104,5.411,5.429,0,0.433837,4.5,4.5 +22132,0,0.232063,2,2,0,2,4,,3,5,Huron River,Dr,4603250,1.438,1.67,0,5.569514,6,4.5 +25479,0,0.389541,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.348983,0.15,4 +21367,0,0.130126,1,1,1,2,4,,3,5,Huron River,Dr,4603250,1.308,1.438,0,3.123029,6,4.5 +25305,0,0.094513,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.26831,0.15,4 +21586,0,0.114939,1,1,1,2,4,,3,5,Huron River,Dr,4603250,1.193,1.308,0,2.758544,6,4.5 +9607,0,0.12378,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0.55,0.674,0,2.970723,8,4.5 +26309,0,0.186741,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.481775,0.15,4 +10450,1,0.395014,1,0,0,1,2,ROF,4,5,N US 23/Plymouth,RAMP,1431404,0,0.395,0,,2.24,5 +10489,1,0.307208,2,0,0,1,2,,3,5,N US 23,,1431202,15.464,15.771,0,,0.58,7 +10880,0,1.043794,1,1,0,2,4,,4,5,Geddes,Rd,1448104,3.418,4.461,0,25.05106,4.5,4.5 +11249,0,0.250403,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,0,0.25,0,6.009683,3,4 +11427,-1,0.360295,0,2,0,1,2,,3,5,S US 23,,1431603,15.445,15.805,0,,0.58,7 +11570,-1,2.193243,0,2,0,1,2,,5,5,W M 14,,1431410,3.102,5.294,0,,1.02,7 +11591,0,0.503863,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,2.223,2.726,0,12.09271,4.5,4.5 +11593,1,2.137486,2,0,0,1,2,,5,5,E M 14,,1431408,3.17,5.307,0,,1.02,7 +21550,0,0.749336,1,1,0,2,5,,4,5,Earhart,Rd,4600037,0.076,0.825,0,17.984074,5.8,4.5 +25312,0,0.334223,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.021346,0.15,4 +25468,0,1.035973,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.863357,0.15,4 +26294,0,0.878263,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.078303,0.15,4 +26701,0,0.386572,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.277722,0.15,4 +10490,1,1.771925,2,0,0,1,2,,3,5,N US 23,,1431202,13.693,15.464,0,,0.58,7 +10773,0,0.356221,1,1,0,2,5,,3,5,Earhart,Rd,1442503,0.523,0.879,0,8.549292,8,4.5 +40376,1,0.018965,1,0,0,2,4,,3,5,Geddes/S US 23,RAMP,4606199,0,0.019,0,0.455168,6,4.5 +11429,-1,1.729718,0,2,0,1,2,,3,5,S US 23,,1431603,13.716,15.445,0,,0.58,7 +11592,0,0.723065,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,0.753,1.476,0,17.353555,4.5,4.5 +26699,0,0.55341,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.281851,0.15,4 +26700,0,0.461631,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.079136,0.15,4 +30009,0,0.612996,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.711914,0.15,4 +30010,0,1.000693,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.016643,0.15,4 +30138,0,0.263903,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.333667,0.15,4 +37403,0,0.312549,1,1,0,2,4,,3,5,Geddes,Rd,1448104,2.5,2.813,0,7.501185,6,4.5 +37428,1,0.032989,1,0,0,2,5,,3,5,Huron,Pkwy,4606151,0,0.033,0,0.791745,8,4.5 +26526,0,0.132136,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.171255,0.15,4 +37429,-1,0.02875,0,1,0,2,5,,3,5,Huron,Pkwy,1429602,4.028,4.056,0,0.689998,8,4.5 +26515,0,0.299291,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.182972,0.15,4 +26514,0,0.103533,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.484785,0.15,4 +40379,1,0.314983,1,0,0,1,2,ROF,3,5,S US 23/Geddes,RAMP,1430309,0,0.315,0,,2.24,5 +40378,-1,0.0183,0,1,0,2,4,,3,5,Geddes,Rd,4606197,0.044,0.062,0,0.439193,6,4.5 +10491,1,0.509126,2,0,0,1,2,,3,5,N US 23,,1431202,13.184,13.693,0,,0.58,7 +40374,-1,0.04357,0,2,0,2,4,,3,5,Geddes,Rd,4606197,0,0.044,0,1.045686,6,4.5 +11430,-1,0.251542,0,2,0,1,2,,3,5,S US 23,,1431603,13.464,13.716,0,,0.58,7 +40377,1,0.011953,2,0,0,2,4,,3,5,Geddes,Rd,1448104,3.043,3.055,0,0.286863,6,4.5 +40375,1,0.019254,1,0,0,2,4,,3,5,S US 23/Geddes,RAMP,1430309,0.315,0.334,0,0.462088,6,4.5 +40372,0,0.11651,1,2,0,2,4,,3,5,Geddes,Rd,1448104,2.881,2.998,0,2.796243,6,4.5 +11477,0,0.302638,2,2,0,2,5,,3,5,Earhart,Rd,1442503,1.198,1.501,0,7.263306,8,4.5 +29508,0,0.455161,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.923856,0.15,4 +10772,0,0.241165,2,2,0,2,5,,3,5,Earhart,Rd,1442503,0.957,1.198,0,5.787953,8,4.5 +21803,0,0.24937,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.835,1.085,0,5.984872,8,4.5 +11478,0,0.078115,1,1,0,2,5,,3,5,Earhart,Rd,1442503,0.879,0.957,0,1.874769,8,4.5 +25313,0,0.40089,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.621363,0.15,4 +21551,0,0.076211,2,2,0,2,5,,4,5,Earhart,Rd,4600037,0,0.076,0,1.829066,5.8,4.5 +37910,-1,0.018483,0,1,0,2,4,,4,2,Wickham,Rd,4706172,0.04,0.058,0,0.443592,4.5,4.5 +10868,0,0.747396,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,1.476,2.223,0,17.937497,4.5,4.5 +25316,0,0.713608,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.126601,0.15,4 +25311,0,0.250717,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.017215,0.15,4 +26702,0,0.259833,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.235998,0.15,4 +10448,1,0.480826,2,0,0,1,2,RFF,4,5,N US 23/E M 14,RAMP,1431407,0,0.481,0,,0.8,7.5 +10861,0,0.348345,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,3.548,3.896,0,8.360292,3.7,5 +11432,0,0.756515,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,3.625,4.381,0,18.156349,4.5,4.5 +21290,0,0.506278,1,1,0,2,5,,4,5,Earhart,Rd,4600037,1.608,2.114,0,12.150669,5.8,4.5 +25315,0,0.357445,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.578681,0.15,4 +26381,0,0.972471,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.339301,0.15,4 +26703,0,0.412373,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.896941,0.15,4 +26704,0,0.501441,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.034585,0.15,4 +10487,1,0.597312,2,0,0,1,2,,4,5,N US 23,,1431202,16.081,16.678,0,,0.8,7.5 +10722,0,0.302712,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,3.322,3.625,0,7.265094,4.5,4.5 +11417,-1,0.417389,0,2,0,1,2,,3,5,S US 23,,1431603,16.126,16.543,0,,0.58,7 +21547,0,0.624709,1,1,0,2,5,,4,5,Earhart,Rd,4600037,0.984,1.608,0,14.993022,5.8,4.5 +26509,0,0.311651,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.479633,0.15,4 +26510,0,0.613462,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.723084,0.15,4 +10449,1,0.278627,1,0,0,1,2,RON,4,5,Plymouth/N US 23,RAMP,1431406,0,0.279,0,,1.09,4 +10488,1,0.309952,2,0,0,1,2,,3,5,N US 23,,1431202,15.771,16.081,0,,0.58,7 +11189,0,0.088954,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,3.233,3.322,0,2.134891,4.5,4.5 +11402,1,0.395477,1,0,0,1,2,ROF,3,5,S US 23/Plymouth,RAMP,1431608,0,0.395,0,,2.24,5 +11419,-1,0.320606,0,2,0,1,2,,3,5,S US 23,,1431603,15.805,16.126,0,,0.58,7 +11439,0,0.011458,2,2,0,2,3,,4,5,Plymouth,Rd,1443101,3.183,3.194,0,0.274991,3.7,5 +19985,1,0.211313,1,0,0,1,2,RON,4,5,Plymouth/N US 23,RAMP,2000005,0,0.211,0,,1.09,4 +19986,1,0.223671,1,0,0,1,2,RON,3,5,Plymouth/S US 23,RAMP,2000004,0,0.224,0,,1.09,4 +10734,0,0.181065,2,2,0,2,3,,3,5,Plymouth,Rd,1443101,3.002,3.183,0,4.345561,5,5 +11455,0,0.009535,2,2,0,2,3,,3,5,Plymouth,Rd,1443101,2.992,3.002,0,0.228829,5,5 +11435,0,0.038617,2,2,0,2,3,,4,5,Plymouth,Rd,1443101,3.194,3.233,0,0.926814,3.7,5 +21549,0,0.158613,1,1,0,2,5,,4,5,Earhart,Rd,4600037,0.825,0.984,0,3.806708,5.8,4.5 +10830,0,0.471257,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,2.726,3.197,0,11.310172,4.5,4.5 +25314,0,0.40418,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.700327,0.15,4 +26705,0,0.515727,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.37744,0.15,4 +26706,0,0.560273,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.446546,0.15,4 +11545,0,0.350717,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,3.197,3.548,0,8.417197,3.7,5 +11431,0,0.109593,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,4.381,4.49,0,2.630221,4.5,4.5 +10782,0,0.704017,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,3.896,4.6,0,16.896396,3.7,5 +26383,0,0.821874,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.724969,0.15,4 +37299,0,0.124581,1,1,0,2,4,,4,5,Superior,Rd,4606142,0.04,0.164,0,2.989953,4.5,4.5 +26511,0,0.161285,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.870847,0.15,4 +30012,0,1.87076,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,44.898239,0.15,4 +11066,0,0.254448,1,1,0,2,4,,4,5,Geddes,Rd,1448104,4.461,4.716,0,6.106758,4.5,4.5 +26512,0,0.54719,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.132556,0.15,4 +37291,1,0.032061,2,0,0,2,4,,4,5,Geddes,Rd,1448104,5.378,5.411,0,0.769466,4.5,4.5 +37296,0,0.657642,1,1,0,2,4,,4,5,Geddes,Rd,1448104,5.517,6.174,0,15.783407,4.5,4.5 +37290,-1,0.018916,0,1,0,2,4,,4,5,Geddes,Rd,4606144,0,0.019,0,0.453976,4.5,4.5 +37297,1,0.039822,1,0,0,2,4,,4,5,Superior,Rd,4606142,0,0.04,0,0.955728,4.5,4.5 +11246,0,1.028453,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,1.114,2.142,0,24.682869,3,4 +11476,-1,0.86899,0,2,0,1,2,RON,5,5,W M 153,,1431602,0,0.869,0,,1.09,4 +11509,1,0.678169,2,0,0,1,2,ROF,5,5,E M 153,,1431510,0,0.678,0,,2.24,5 +11541,1,0.751741,2,0,0,1,2,,5,5,E M 14,,1431408,5.307,6.058,0,,1.02,7 +11565,-1,0.461907,0,2,0,1,2,,5,5,W M 14,,1431410,5.294,5.756,0,,1.02,7 +26295,0,0.066027,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.584658,0.15,4 +30011,0,0.298076,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.153836,0.15,4 +11248,0,0.607038,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,0.25,0.857,0,14.568921,3,4 +11285,0,0.63954,1,1,0,2,5,,5,5,Cherry Hill,Rd,1436303,0,0.639,0,15.348959,3.7,5 +11247,0,0.257069,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,0.857,1.114,0,6.169656,3,4 +19289,1,0.294762,1,0,0,1,2,RON,5,5,W M 153/E M 14,RAMP,1789401,0,0.295,0,,1.09,4 +19290,1,0.643192,1,0,0,1,2,ROF,5,5,W M 14/E M 153,RAMP,1789310,0,0.643,0,,2.24,5 +11473,-1,0.141471,0,2,0,2,3,DIV,5,5,W M 153,,1431602,0.869,1.01,0,3.3953,1.7,4 +11488,1,0.159115,2,0,0,2,3,DIV,5,5,E M 153,,1431510,0.678,0.837,0,3.818749,1.7,4 +11245,0,0.023955,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,2.142,2.166,0,0.574926,3,4 +7193,0,0.698652,1,1,0,2,5,,4,8,9 Mile,Rd,932909,2.897,3.596,0,16.767646,5.8,4.5 +7367,0,0.9152,1,1,0,2,5,GRV,5,8,8 Mile,Rd,942009,1.534,2.449,0,21.964796,5.55,5 +8159,0,0.508891,1,1,0,2,4,,4,8,10 Mile,Rd,942305,0,0.509,0,12.213395,4.5,4.5 +9920,0,1.016311,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,20.093,21.109,0,24.391457,3,4 +10749,0,0.997783,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,9.224,10.221,0,23.946796,3,4 +10768,0,1.134934,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,4.819,5.954,0,27.238412,3,4 +10981,0,2.35111,1,1,0,2,6,GRV,5,5,Sutton,Rd,1446902,1.62,3.97,0,56.426634,5.55,5 +11021,0,0.845428,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,2.318,3.163,0,20.290267,3.7,5 +26301,0,1.37016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.883834,0.15,4 +26348,0,1.532624,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.782985,0.15,4 +26707,0,2.353225,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,56.477388,0.15,4 +26708,0,0.345603,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.294482,0.15,4 +26709,0,1.742061,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,41.809464,0.15,4 +26710,0,1.601547,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,38.437117,0.15,4 +26713,0,0.771468,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,18.51523,0.15,4 +9650,0,1.655834,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,18.438,20.093,0,39.740006,3,4 +11175,0,0.674596,1,1,0,2,6,,5,5,Sutton,Rd,1446902,0.945,1.62,0,16.190299,5.8,6 +26347,0,1.635651,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.255621,0.15,4 +21838,0,0.941348,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,2.854,3.795,0,22.592351,3,4 +26350,0,1.228192,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.476604,0.15,4 +10980,0,0.255525,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,4.404,4.66,0,6.132611,3,4 +10983,0,0.945776,1,1,0,2,6,,5,5,Sutton,Rd,1446902,0,0.945,0,22.698622,5.8,6 +25038,0,1.038549,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.925172,0.15,4 +26346,0,0.482896,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.589498,0.15,4 +10979,0,0.159803,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,4.66,4.819,0,3.83527,3,4 +7195,0,0.922168,1,1,0,2,4,,5,8,9 Mile,Rd,932909,1.372,2.294,0,22.132035,3,4 +7538,0,0.997398,1,1,0,2,7,GRV,5,8,Rushton,Rd,942101,0,0.997,0,23.937561,5.55,5 +11223,0,1.616539,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,0.702,2.318,0,38.796942,3.7,5 +19761,0,0.866031,1,1,0,2,5,,5,8,Shore,Dr,4104219,0.507,1.372,0,20.784732,3.7,5 +26720,0,0.912095,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.890282,0.15,4 +26721,0,0.881464,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.155135,0.15,4 +29547,0,0.820287,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.686899,0.15,4 +11024,0,0.770722,1,1,0,2,5,,5,5,7 Mile,Rd,1446805,0,0.77,0,18.497326,3.7,5 +26351,0,0.367956,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.830956,0.15,4 +26354,0,0.634517,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.228401,0.15,4 +11226,0,0.443011,1,1,0,2,5,,5,5,Shore,Dr,1446607,0.336,0.779,0,10.632271,3.7,5 +19762,0,0.50668,1,1,0,2,5,,5,5,Shore,Dr,4104219,0,0.507,0,12.160323,3.7,5 +11023,0,0.508939,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,0.193,0.702,0,12.214538,3.7,5 +11224,0,0.193559,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,0,0.193,0,4.645419,3.7,5 +6595,0,0.666513,1,1,0,2,5,,5,8,Whitmore Lake,Rd,932204,1.377,2.043,0,15.99632,3.7,5 +7196,0,1.224182,1,1,0,2,4,,5,8,9 Mile,Rd,932909,0.148,1.372,0,29.380368,3,4 +7996,0,0.76399,1,1,0,2,6,,5,8,Marshall,Rd,942010,1.248,2.012,0,18.335752,5.8,6 +26124,0,0.804355,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.304528,0.15,4 +5814,0,0.084966,1,2,0,2,4,,5,8,9 Mile,Rd,931604,2.103,2.188,0,2.039182,3,4 +6734,0,0.273793,1,1,0,2,4,,5,8,9 Mile,Rd,931604,2.273,2.547,0,6.571037,3,4 +26123,0,0.475316,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.407587,0.15,4 +6487,1,0.126102,1,0,0,1,2,RON,5,8,M 36/N US 23,RAMP,4105312,0,0.126,0,,1.09,4 +6733,1,0.278457,2,0,0,1,2,,5,8,N US 23,,931510,1.157,1.435,0,,1.02,7 +5141,-1,0.266747,0,2,0,1,2,,5,8,S US 23,,932002,1.153,1.42,0,,1.02,7 +5508,0,0.062782,1,1,0,2,4,,5,8,9 Mile,Rd,931604,2.188,2.251,0,1.506772,3,4 +5699,1,0.228367,1,0,0,1,2,ROF,5,8,S US 23/M 36,RAMP,932005,0,0.228,0,,2.24,5 +6485,1,0.273181,1,0,0,1,2,ROF,5,8,N US 23/M 36,RAMP,931605,0,0.273,0,,2.24,5 +6486,0,0.164917,1,1,0,2,7,,5,8,Fieldcrest,Dr,4105311,0,0.165,0,3.957998,5.8,6 +5139,0,0.022208,2,1,0,2,4,,5,8,9 Mile,Rd,931604,2.251,2.273,0,0.532995,3,4 +7197,0,0.148041,1,1,0,2,4,,5,8,9 Mile,Rd,932909,0,0.148,0,3.552976,3,4 +5986,0,0.024735,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,0.135,0.16,0,0.593644,3.7,5 +7963,0,0.248914,1,1,0,2,6,,5,8,Marshall,Rd,942010,1,1.248,0,5.97394,5.8,6 +10975,0,1.212048,1,1,0,2,6,GRV,5,5,Rushton,Rd,1446909,0,1.212,0,29.089148,5.55,5 +11190,0,0.500188,1,1,0,2,6,GRV,5,5,6 Mile,Rd,1446810,0.948,1.448,0,12.004502,5.55,5 +11157,0,0.611601,1,1,0,2,5,GRV,5,5,Rushton,Rd,1446909,1.212,1.823,0,14.678424,5.55,5 +7565,0,0.042226,1,1,0,2,5,GRV,5,8,8 Mile,Rd,942009,1.492,1.534,0,1.013419,5.55,5 +7194,0,0.603843,1,1,0,2,4,,5,8,9 Mile,Rd,932909,2.294,2.897,0,14.492236,3,4 +8139,0,0.464171,1,1,0,2,4,,4,8,Rushton,Rd,942101,0.997,1.461,0,11.140105,4.5,4.5 +26137,0,0.822713,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.745121,0.15,4 +26138,0,0.872613,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.942724,0.15,4 +30153,0,0.694578,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.669868,0.15,4 +7409,0,0.466554,1,1,0,2,5,,5,8,Rushton,Rd,942101,2.001,2.468,0,11.197307,3.7,5 +8021,0,0.37545,1,1,0,2,4,,4,8,Rushton,Rd,942101,1.461,1.836,0,9.010793,4.5,4.5 +8152,0,0.165123,1,1,0,2,4,,4,8,Rushton,Rd,942101,1.836,2.001,0,3.962949,4.5,4.5 +9905,0,0.708512,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,22.445,23.153,0,17.004295,3,4 +10968,0,1.763866,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,7.461,9.224,0,42.332788,3,4 +26304,0,1.337533,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.100803,0.15,4 +26379,0,1.573223,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.757349,0.15,4 +9910,0,1.336375,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,21.109,22.445,0,32.072989,3,4 +10807,0,1.149275,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,5.576,6.725,0,27.582593,3.7,5 +10978,0,1.169946,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,5.954,7.123,0,28.078712,3,4 +11160,0,0.608323,1,1,0,2,5,GRV,5,5,Earhart,Rd,1446906,0,0.608,0,14.59974,5.55,5 +10948,0,0.09827,1,1,0,2,5,GRV,5,5,Joy,Rd,1451506,3.443,3.542,0,2.358485,5.55,5 +10765,0,0.337452,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,7.123,7.461,0,8.09884,3,4 +9903,0,0.853112,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,23.153,24.006,0,20.474698,3,4 +26280,0,0.785123,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.842943,0.15,4 +26302,0,0.563092,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.514196,0.15,4 +1189,0,0.44819,1,1,0,2,5,,4,3,Griswold,Rd,634406,0,0.448,0,10.756567,5.8,4.5 +2505,0,0.503963,1,1,0,2,4,,4,3,Pontiac,Trl,656507,0,0.504,0,12.095123,4.5,4.5 +3189,0,0.28457,1,1,0,2,4,,4,3,Lake,St,656510,0.246,0.531,0,6.829687,4.5,4.5 +3247,0,0.424216,1,1,0,2,5,,4,5,8 Mile,Rd,656509,0,0.424,0,10.181173,5.8,4.5 +7257,0,1.002581,1,1,0,2,5,,4,8,Dixboro,Rd,942104,0,1.002,0,24.061938,5.8,4.5 +11192,0,1.760775,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,3.163,4.923,0,42.258605,3.7,5 +20796,0,0.695885,1,1,1,2,5,,4,3,9 Mile,Rd,4407342,4.994,5.69,0,16.701239,5.8,4.5 +25266,0,0.507961,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.191059,0.15,4 +26714,0,0.515471,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.371296,0.15,4 +26716,0,0.91065,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.855596,0.15,4 +26719,0,0.371312,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.91148,0.15,4 +26725,0,0.657375,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.777007,0.15,4 +26726,0,0.255396,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.129497,0.15,4 +29805,0,0.907639,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.783329,0.15,4 +7313,0,0.606594,1,1,0,2,5,GRV,5,8,8 Mile,Rd,942009,2.449,3.056,0,14.558257,5.55,5 +7191,0,0.60069,1,1,0,2,5,,4,8,9 Mile,Rd,932909,3.87,4.47,0,14.416569,5.8,4.5 +7872,0,0.62402,1,1,0,2,5,GRV,4,8,Dixboro,Rd,942104,1.002,1.626,0,14.976488,6.55,4.5 +8158,0,0.410179,1,1,0,2,4,,4,8,10 Mile,Rd,942305,1.115,1.525,0,9.844297,4.5,4.5 +26711,0,0.476701,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.440826,0.15,4 +26717,0,0.495912,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,11.901888,0.15,4 +26718,0,0.767632,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,18.423171,0.15,4 +7192,0,0.274036,1,1,0,2,5,,4,8,9 Mile,Rd,932909,3.596,3.87,0,6.576866,5.8,4.5 +26712,0,0.500128,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.00308,0.15,4 +7890,0,0.606076,1,1,0,2,4,,4,8,10 Mile,Rd,942305,0.509,1.115,0,14.545827,4.5,4.5 +26715,0,0.618123,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,14.834945,0.15,4 +20548,0,0.090457,1,1,1,2,5,,4,3,9 Mile,Rd,4407342,5.69,5.78,0,2.170957,5.8,4.5 +3514,0,0.246517,1,1,0,2,4,,4,3,Lake,St,656510,0,0.246,0,5.916411,4.5,4.5 +7664,0,0.408047,1,1,0,2,5,GRV,4,8,Dixboro,Rd,942104,1.626,2.034,0,9.793116,6.55,4.5 +26729,0,0.493749,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.849971,0.15,4 +25264,0,0.32866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.887833,0.15,4 +2570,0,0.646689,1,1,0,2,4,,4,5,8 Mile,Rd,656509,1.148,1.795,0,15.520536,4.5,4.5 +10735,0,1.260048,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,11.007,12.266,0,30.241141,3,4 +10993,0,0.95107,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,3.984,4.935,0,22.825675,3.7,5 +10997,0,1.070097,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,4.923,5.993,0,25.682319,3.7,5 +26307,0,1.017395,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.417478,0.15,4 +10960,0,0.785829,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,10.221,11.007,0,18.859886,3,4 +3238,0,0.350751,1,1,0,2,4,,4,5,8 Mile,Rd,656509,0.798,1.148,0,8.418026,4.5,4.5 +3549,0,0.37359,1,1,0,2,5,,4,5,8 Mile,Rd,656509,0.424,0.798,0,8.96616,5.8,4.5 +29998,0,0.987115,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.690763,0.15,4 +10957,0,0.357872,1,1,0,2,7,,5,5,Tower,Rd,1447210,0,0.358,0,8.588925,5.8,6 +26306,0,0.09286,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,2.228634,0.15,4 +22140,0,0.077933,1,1,0,2,7,,5,5,7 Mile,Rd,4600820,0,0.078,0,1.870396,5.8,6 +3538,0,0.242084,1,1,0,2,4,,5,5,8 Mile,Rd,656509,1.795,2.037,0,5.810019,3,4 +939,0,0.630379,1,1,0,2,5,,4,3,Griswold,Rd,634406,0.996,1.626,0,15.129105,5.8,4.5 +3497,0,0.444199,1,1,0,2,4,,4,3,Lake,St,656510,1.095,1.539,0,10.660783,4.5,4.5 +3596,0,0.350732,1,1,1,2,4,,4,3,Pontiac,Trl,656507,0.998,1.348,0,8.41756,4.5,4.5 +20303,0,0.221191,1,1,0,2,5,,4,3,9 Mile,Rd,4407342,4.42,4.641,0,5.308579,5.8,4.5 +26305,0,0.765176,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.364214,0.15,4 +26730,0,0.567777,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.626649,0.15,4 +2914,0,0.493817,1,1,0,2,4,,4,3,Pontiac,Trl,656507,0.504,0.998,0,11.851612,4.5,4.5 +20106,0,0.353638,1,1,0,2,5,,4,3,9 Mile,Rd,4407342,4.641,4.994,0,8.487313,5.8,4.5 +26722,0,0.357087,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.570082,0.15,4 +26723,0,0.301885,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.245247,0.15,4 +2628,0,0.189405,1,1,1,2,4,,4,3,Lafayette,St,656507,1.808,1.997,0,4.54573,4.5,4.5 +2726,0,0.424043,1,1,0,2,5,,4,3,McMunn,St,657701,0.113,0.537,0,10.177035,5.8,4.5 +3173,0,0.264194,1,1,0,2,4,,4,3,Lake,St,656510,0.777,1.041,0,6.340666,4.5,4.5 +20952,0,0.31108,1,1,1,2,5,,4,3,Reynold Sweet,Pkwy,4412095,0,0.311,0,7.465908,5.8,4.5 +29804,0,0.459543,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.029021,0.15,4 +3412,0,0.249451,1,1,0,2,5,,4,3,Dorothy,St,657506,0.125,0.374,0,5.986816,5.8,4.5 +3595,0,0.153,1,1,1,2,4,,4,3,Lafayette,St,656507,1.584,1.737,0,3.67199,4.5,4.5 +3284,0,0.235884,1,1,1,2,4,,4,3,Pontiac,Trl,656507,1.348,1.584,0,5.661217,4.5,4.5 +3282,0,0.071101,1,1,1,2,4,,4,3,Lafayette,St,656507,1.737,1.808,0,1.706435,4.5,4.5 +3501,0,0.246314,1,1,0,2,4,,4,3,Lake,St,656510,0.531,0.777,0,5.911544,4.5,4.5 +3593,0,0.060765,1,1,1,2,4,,4,3,Lafayette,St,656507,1.997,2.058,0,1.458365,4.5,4.5 +2631,0,0.098479,1,1,1,2,5,,4,3,Reynold Sweet,Pkwy,657706,0.191,0.289,0,2.363488,5.8,4.5 +2529,0,0.053459,1,1,0,2,4,,4,3,Lake,St,656510,1.041,1.095,0,1.283021,4.5,4.5 +752,0,0.5479,1,1,0,2,5,,4,3,Griswold,Rd,634406,0.448,0.996,0,13.149603,5.8,4.5 +20492,0,0.42609,1,1,0,2,5,,4,3,9 Mile,Rd,4407342,3.994,4.42,0,10.226165,5.8,4.5 +479,0,0.366997,1,1,0,2,5,,4,3,Griswold,Rd,634406,1.626,1.993,0,8.807937,5.8,4.5 +2524,0,0.249934,1,1,0,2,4,,4,3,10 Mile,Rd,656510,1.539,1.789,0,5.998405,4.5,4.5 +9333,1,1.54837,3,0,0,1,1,,5,6,N I 275,,1228001,6.571,8.118,0,,1.02,7 +10066,0,0.806292,1,1,0,2,5,,5,6,Scofield,Rd,1238109,1.508,2.314,0,19.351012,3.7,5 +10076,0,1.224028,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,2.212,3.435,0,29.376672,3.7,5 +10174,0,1.893309,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,0.479,2.371,0,45.439413,3.7,5 +10232,0,1.453711,1,1,0,2,5,,5,6,Grafton,Rd,1236709,6.238,7.691,0,34.889071,3.7,5 +10247,0,1.455236,1,1,0,2,5,,5,6,Carleton West,Rd,1236309,0.044,1.499,0,34.92566,3.7,5 +10251,0,1.537641,1,1,0,2,5,,5,6,Sumpter,Rd,1236306,0.974,2.511,0,36.903388,3.7,5 +10260,0,1.84552,1,1,0,2,5,,5,6,Palmer,Rd,1236206,3.747,5.592,0,44.292475,3.7,5 +10275,0,2.808473,1,1,0,2,5,,5,6,Tuttlehill,Rd,1236107,3.191,5.998,0,67.403349,3.7,5 +17919,0,0.517584,1,1,0,2,5,,4,2,Bemis,Rd,1670503,2.529,3.046,0,12.422014,5.8,4.5 +18085,0,1.450414,1,1,0,2,4,,5,2,Willis,Rd,1670409,1.598,3.047,0,34.809937,3,4 +18541,0,0.362282,1,1,0,2,4,,4,2,Columbia,Ave,1674810,2.498,2.86,0,8.694765,4.5,4.5 +18880,0,1.721555,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,1.336,3.057,0,41.317311,3,4 +19180,0,0.944501,1,1,0,2,5,,5,2,Willow,Rd,1670406,2.1,3.044,0,22.668029,3.7,5 +20876,-1,1.396886,0,3,0,1,1,,5,6,S I 275,,4301662,6.111,7.508,0,,1.02,7 +30660,0,3.182127,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,76.371054,0.15,4 +30859,0,0.793546,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,19.045105,0.15,4 +30860,0,1.891895,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,45.40549,0.15,4 +30862,0,1.522141,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.531389,0.15,4 +30863,0,0.721723,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,17.321345,0.15,4 +30867,0,1.513595,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,36.326274,0.15,4 +30870,0,1.526956,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,36.646955,0.15,4 +30872,0,0.550932,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.222373,0.15,4 +30874,0,1.782058,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,42.769392,0.15,4 +31346,0,2.611556,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,62.677345,0.15,4 +31390,0,1.557523,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,37.380558,0.15,4 +33602,0,2.674908,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,64.19779,0.15,4 +8474,0,2.529279,1,1,0,2,5,,5,6,Custer,Rd,1226001,9.409,11.937,0,60.702696,3.7,5 +8478,0,3.043136,1,1,0,2,5,,5,6,Plank,Rd,1226001,6.065,9.106,0,73.035261,3.7,5 +9156,0,1.617266,1,1,0,2,5,,5,6,Ida Maybee,Rd,1226808,15.035,16.652,0,38.814374,3.7,5 +9939,0,0.957306,1,1,0,2,5,,5,6,Maybee Scofield,Rd,1241410,0,0.957,0,22.975333,3.7,5 +10266,0,0.540511,1,1,0,2,5,,5,6,Palmer,Rd,1236206,0.143,0.683,0,12.972267,3.7,5 +10272,0,1.533744,1,1,0,2,5,,5,6,Ostrander,Rd,1236203,0,1.533,0,36.809861,3.7,5 +31385,0,1.326255,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,31.830128,0.15,4 +33605,0,1.902757,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,45.666163,0.15,4 +8790,0,2.452183,1,1,0,2,4,,5,6,Custer,Rd,1223803,8.711,11.162,0,58.852392,3,4 +9100,0,0.30237,1,1,0,2,5,,5,6,Plank,Rd,1226001,9.106,9.409,0,7.256882,3.7,5 +10296,0,1.598231,1,1,0,2,5,,5,6,Tuttlehill,Rd,1236107,1.593,3.191,0,38.357554,3.7,5 +10313,0,0.80865,1,1,0,2,5,,5,6,Ostrander,Rd,1234904,3.9,4.709,0,19.407593,3.7,5 +31351,0,0.432621,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.3829,0.15,4 +33604,0,1.524294,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.583056,0.15,4 +9131,0,1.183932,1,1,0,2,5,,5,6,Plank,Rd,1226001,4.881,6.065,0,28.41437,3.7,5 +10314,0,0.57952,1,1,0,2,5,,5,6,Ostrander,Rd,1234904,3.321,3.9,0,13.90849,3.7,5 +33603,0,1.496991,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.927785,0.15,4 +8744,0,0.501101,1,1,0,2,5,,5,6,Yensch,Rd,1225105,2.912,3.412,0,12.026423,3.7,5 +8450,0,1.519706,1,1,0,2,5,,5,6,Custer,Rd,1226001,12.379,13.898,0,36.472956,3.7,5 +8577,0,0.949174,1,1,0,2,5,,5,6,Ida Maybee,Rd,1225108,0,0.949,0,22.780164,3.7,5 +10269,0,0.142688,1,1,0,2,5,,5,6,Palmer,Rd,1236206,0,0.143,0,3.424506,3.7,5 +31034,0,1.827639,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,43.863338,0.15,4 +9096,0,0.442166,1,1,0,2,5,,5,6,Custer,Rd,1226001,11.937,12.379,0,10.611988,3.7,5 +8738,0,1.920776,1,1,0,2,5,,5,6,Ida Maybee,Rd,1225108,0.949,2.869,0,46.098627,3.7,5 +10274,0,0.290354,1,1,0,2,5,,5,6,Stone,Rd,1236202,2.226,2.516,0,6.968493,3.7,5 +31035,0,1.287153,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,30.891681,0.15,4 +10175,0,0.102332,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,0.377,0.479,0,2.455974,3.7,5 +30875,0,0.157785,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,3.786839,0.15,4 +10176,0,0.376664,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,0,0.377,0,9.039936,3.7,5 +10113,0,0.148351,1,1,0,2,5,,5,6,Raisin,St,1237704,0,0.148,0,3.560416,3.7,5 +30876,0,0.104582,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,2.509958,0.15,4 +10084,0,2.212461,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,0,2.212,0,53.09907,3.7,5 +10263,0,2.124397,1,1,0,2,5,,5,6,Palmer,Rd,1236206,0.683,2.807,0,50.985529,3.7,5 +10271,0,1.230576,1,1,0,2,5,,5,6,Ostrander,Rd,1236203,1.533,2.763,0,29.533813,3.7,5 +10262,0,0.9408,1,1,0,2,5,,5,6,Palmer,Rd,1236206,2.807,3.747,0,22.579206,3.7,5 +10109,0,0.43248,1,1,0,2,5,,5,6,Doty,Rd,1237710,0.882,1.315,0,10.379514,3.7,5 +10112,0,0.145441,1,1,0,2,5,,5,6,Doty,Rd,1237710,0.737,0.882,0,3.490574,3.7,5 +10039,0,2.048051,1,1,0,2,4,,5,5,Willis,Rd,1427410,10.23,12.278,0,49.153215,3,4 +10303,0,0.720623,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1236105,0.893,1.614,0,17.294945,3,4 +10475,0,1.023904,1,1,0,2,5,,5,5,Willow,Rd,1431207,8.149,9.172,0,24.573701,3.7,5 +10856,0,0.500316,1,1,0,2,7,,4,5,Martz,Rd,1438303,2.093,2.593,0,12.007583,6.55,4.5 +11273,0,1.005957,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,3.018,4.024,0,24.142971,3.7,5 +11362,0,0.245174,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.256,6.501,0,5.884172,4.5,4.5 +11538,0,2.005984,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,2.004,4.009,0,48.143606,3.7,5 +21257,0,0.47618,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,10.799,11.275,0,11.428318,6.55,4.5 +39101,0,1.53612,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.866884,0.15,4 +39097,0,0.508989,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.215744,0.15,4 +26234,0,3.018245,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,72.43788,0.15,4 +10476,0,2.0087,1,1,0,2,5,,5,5,Willow,Rd,1431207,6.141,8.149,0,48.208809,3.7,5 +11296,0,1.005248,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,0.999,2.004,0,24.125959,3.7,5 +20336,0,0.391721,1,1,0,2,4,,5,6,Milan Oakville,Rd,4301740,0,0.392,0,9.401304,3,4 +11542,0,0.998974,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,0,0.999,0,23.975381,3.7,5 +8881,0,0.34609,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,4.281,4.627,0,8.30616,3,4 +26236,0,0.018618,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,0.446821,0.15,4 +10477,0,1.003644,1,1,0,2,5,,5,5,Willow,Rd,1431207,5.137,6.141,0,24.087456,3.7,5 +10304,0,0.66055,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1236105,0.233,0.893,0,15.853209,3,4 +10307,0,0.232878,1,1,0,2,4,,5,6,Milan Oakville,Rd,1236105,0,0.233,0,5.589068,3,4 +10308,0,0.999698,1,1,0,2,4,,5,5,Willis,Rd,1427410,9.231,10.23,0,23.99275,3,4 +10825,0,1.101994,1,1,0,2,4,,5,5,Whittaker,Rd,1439102,5.013,6.115,0,26.447845,3,4 +11117,0,0.659699,1,1,0,2,4,,4,5,Textile,Rd,1438102,4.604,5.264,0,15.832771,4.5,4.5 +11578,0,1.049677,1,1,0,2,7,,4,5,Martz,Rd,1438303,0,1.049,0,25.19224,6.55,4.5 +21932,0,0.996444,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,8.757,9.753,0,23.914644,6.55,4.5 +26281,0,1.849336,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,44.384073,0.15,4 +26732,0,0.954569,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.909653,0.15,4 +39096,0,0.621723,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.92136,0.15,4 +30102,0,1.063212,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.517086,0.15,4 +10310,0,1.012189,1,1,0,2,4,,5,5,Willis,Rd,1427410,8.219,9.231,0,24.292534,3,4 +11293,0,1.005074,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,4.009,5.013,0,24.121774,3.7,5 +10700,0,0.995697,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,0.993,1.988,0,23.896739,5.8,4.5 +11481,0,0.383505,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.808,4.191,0,9.204128,4.5,4.5 +21417,0,0.960721,1,1,0,2,5,,4,5,Bemis,Rd,4604906,7.796,8.757,0,23.057307,5.8,4.5 +26733,0,0.477103,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.450468,0.15,4 +39095,0,0.644426,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.466212,0.15,4 +10702,0,0.527785,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,0.465,0.993,0,12.666846,5.8,4.5 +26734,0,0.504953,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.118865,0.15,4 +39094,0,0.514375,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.345006,0.15,4 +10703,0,0.465588,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,0,0.465,0,11.174112,5.8,4.5 +21614,0,0.05579,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,7.741,7.796,0,1.338967,6.55,4.5 +10866,0,0.221989,1,1,0,2,5,,4,5,Merritt,Rd,1438204,3.244,3.466,0,5.327736,5.8,4.5 +10882,0,0.313805,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.245,3.559,0,7.53133,4.5,4.5 +10462,0,0.169749,1,1,0,2,4,,4,5,Stony Creek,Rd,1431208,10.744,10.914,0,4.07397,4.5,4.5 +11295,0,0.11326,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.132,3.245,0,2.718247,4.5,4.5 +11588,0,0.135083,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,1.988,2.123,0,3.241992,5.8,4.5 +11188,0,0.249736,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.559,3.808,0,5.993653,4.5,4.5 +11536,0,0.427258,1,1,0,2,4,,4,5,Whittaker,Rd,1439102,6.389,6.817,0,10.254182,4.5,4.5 +11537,0,0.274469,1,1,0,2,4,,4,5,Whittaker,Rd,1439102,6.115,6.389,0,6.587261,4.5,4.5 +11468,0,0.412997,1,1,0,2,4,,4,5,Textile,Rd,1438102,4.191,4.604,0,9.911922,4.5,4.5 +25708,0,0.477934,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.470425,0.15,4 +25706,0,0.437624,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.502985,0.15,4 +10858,0,0.673021,1,1,0,2,7,,4,5,Martz,Rd,1438303,1.095,1.767,0,16.15251,6.55,4.5 +11022,0,0.580559,1,1,0,2,4,,4,5,Textile,Rd,1438102,5.264,5.844,0,13.933416,4.5,4.5 +21449,0,1.01032,1,1,1,2,5,,4,5,Tuttle Hill,Rd,4603029,0.503,1.513,0,24.247676,5.8,4.5 +21508,0,1.350857,1,1,0,2,7,,4,5,Bunton,Rd,4603030,0.494,1.844,0,32.42056,6.55,4.5 +21681,0,1.001101,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,9.753,10.754,0,24.026416,6.55,4.5 +25712,0,0.49291,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.829842,0.15,4 +26736,0,0.996029,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.904694,0.15,4 +20136,0,0.503154,1,1,0,2,5,GRV,4,5,Tuttle Hill,Rd,4302163,6.621,7.124,0,12.075687,6.55,4.5 +21654,0,0.503497,1,1,1,2,5,,4,5,Tuttle Hill,Rd,4603029,0,0.503,0,12.08393,5.8,4.5 +11328,0,0.045303,1,1,0,2,5,,4,5,Martz,Rd,1438303,1.049,1.095,0,1.087268,5.8,4.5 +21238,0,0.160906,1,1,0,2,5,,4,5,Tuttle Hill,Rd,4603029,1.513,1.674,0,3.86175,5.8,4.5 +11573,0,0.325809,1,1,0,2,7,,4,5,Martz,Rd,1438303,1.767,2.093,0,7.819422,6.55,4.5 +21721,0,0.494084,1,1,0,2,7,,4,5,Bunton,Rd,4603030,0,0.494,0,11.858027,6.55,4.5 +26737,0,0.523624,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.56698,0.15,4 +21467,0,0.045814,1,1,0,2,5,,4,5,Bemis,Rd,4604906,10.754,10.799,0,1.099547,5.8,4.5 +11145,0,0.28323,1,1,0,2,4,,4,5,Textile,Rd,1438102,5.973,6.256,0,6.797509,4.5,4.5 +11449,0,0.072716,1,1,0,2,5,,4,5,Huron River,Dr,1438110,2.73,2.803,0,1.745184,5.8,4.5 +10969,0,0.128709,1,1,0,2,4,,4,5,Textile,Rd,1438102,5.844,5.973,0,3.089027,4.5,4.5 +21293,0,0.144756,1,1,0,2,7,,4,5,Bunton,Rd,4603030,1.844,1.989,0,3.474144,6.55,4.5 +11275,0,1.012384,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,1.005,2.017,0,24.297209,3.7,5 +17474,0,1.336588,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,0,1.336,0,32.078121,3,4 +18741,0,0.98516,1,1,0,2,5,,5,2,Willow,Rd,1670406,0,0.985,0,23.643841,3.7,5 +30866,0,0.799127,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,19.179053,0.15,4 +31387,0,0.997524,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,23.940575,0.15,4 +31388,0,1.546197,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,37.108724,0.15,4 +11279,0,0.764845,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,0,0.765,0,18.356276,3.7,5 +20831,0,0.522234,1,1,0,2,4,,5,6,Oakville Waltz,Rd,4302164,0,0.522,0,12.533615,3,4 +10302,0,0.431784,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1236105,1.614,2.045,0,10.362815,3,4 +11527,0,0.240443,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,0.765,1.005,0,5.770634,3.7,5 +11526,0,1.001738,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,2.017,3.018,0,24.041711,3.7,5 +31389,0,1.022828,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,24.547872,0.15,4 +19189,0,0.610964,1,1,0,2,5,,5,2,Willow,Rd,1670406,0.985,1.596,0,14.663126,3.7,5 +30864,0,1.031282,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,24.750778,0.15,4 +30877,0,1.029337,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,24.704083,0.15,4 +18740,0,0.504651,1,1,0,2,5,,5,2,Willow,Rd,1670406,1.596,2.1,0,12.111626,3.7,5 +11523,0,0.414828,1,1,0,2,4,,5,5,Rawsonville,Rd,1439105,5.71,6.125,0,9.955877,3,4 +17766,0,1.102432,1,1,0,2,4,,4,2,Huron River,Dr,1674810,0,1.102,0,26.45838,4.5,4.5 +18400,0,1.271104,1,1,0,2,5,,4,2,Bemis,Rd,1670503,0,1.271,0,30.506487,5.8,4.5 +18494,0,1.598137,1,1,0,2,4,,5,2,Willis,Rd,1670409,0,1.598,0,38.355283,3,4 +30868,0,0.567874,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,13.628975,0.15,4 +30869,0,1.523559,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,36.565413,0.15,4 +31887,0,1.014913,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.357923,0.15,4 +10811,0,1.016311,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,4.024,5.04,0,24.391459,3.7,5 +11525,0,0.670352,1,1,0,2,4,,5,5,Rawsonville,Rd,1439105,5.04,5.71,0,16.088456,3,4 +10809,0,0.519453,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,6.626,7.146,0,12.466862,4.5,4.5 +11586,0,0.734717,1,1,0,2,7,,4,5,McKean,Rd,1438203,0,0.734,0,17.633205,6.55,4.5 +26819,0,0.843606,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.246541,0.15,4 +11272,0,0.501791,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,6.125,6.626,0,12.04298,4.5,4.5 +11571,0,0.502418,1,1,0,2,7,,4,5,Martz,Rd,1438303,2.593,3.095,0,12.058042,6.55,4.5 +22016,0,0.525676,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,11.275,11.801,0,12.61622,6.55,4.5 +25709,0,0.869979,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.879487,0.15,4 +11336,0,0.767382,1,1,0,2,7,,4,5,McKean,Rd,1438203,0.734,1.502,0,18.417157,6.55,4.5 +11351,0,0.238475,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.752,6.99,0,5.72339,4.5,4.5 +11519,0,0.599035,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,7.146,7.744,0,14.376846,4.5,4.5 +25711,0,0.749498,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.987947,0.15,4 +30033,0,0.246744,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.921845,0.15,4 +11501,0,0.251081,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.501,6.752,0,6.025934,4.5,4.5 +11041,0,0.253627,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.99,7.244,0,6.087056,4.5,4.5 +11513,0,0.403538,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,7.744,8.148,0,9.68491,4.5,4.5 +30865,0,0.50445,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.106799,0.15,4 +30871,0,0.561534,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,13.476816,0.15,4 +18303,0,1.166879,1,1,0,2,5,,4,2,Bemis,Rd,1670503,1.362,2.529,0,28.005086,5.8,4.5 +19010,0,1.39662,1,1,0,2,4,,4,2,Huron River,Dr,1674810,1.102,2.498,0,33.518872,4.5,4.5 +31393,0,1.02505,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.601204,0.15,4 +17989,0,0.09141,1,1,0,2,5,,4,2,Bemis,Rd,1670503,1.271,1.362,0,2.193837,5.8,4.5 +31392,0,1.027648,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.663543,0.15,4 +31368,0,0.828715,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.889155,0.15,4 +9279,0,1.149649,1,1,0,2,5,,4,6,Stewart,Rd,1229706,0.903,2.052,0,27.591579,5.8,4.5 +10072,0,2.553498,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,6.845,9.398,0,61.283941,3.7,5 +10073,0,2.122306,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,4.724,6.845,0,50.935335,3.7,5 +10093,0,1.559337,1,1,0,2,5,,5,6,Sumpter,Rd,1237801,0,1.559,0,37.42408,3.7,5 +10171,0,1.584699,1,1,0,2,5,,4,6,Bluebush,Rd,1237610,5.119,6.703,0,38.032774,5.8,4.5 +10217,0,1.52844,1,1,0,2,6,,5,6,Exeter,Rd,1237509,1.015,2.543,0,36.68256,5.8,6 +10244,0,1.433235,1,1,0,2,5,,5,6,Grafton,Rd,1236709,1.7,3.133,0,34.397641,3.7,5 +20131,0,0.458617,1,1,0,2,5,,5,6,Carleton West,Rd,4301573,0.75,1.208,0,11.006801,3.7,5 +30858,0,2.756589,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,66.158134,0.15,4 +31040,0,1.454765,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,34.914362,0.15,4 +31278,0,1.472189,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,35.332541,0.15,4 +31399,0,0.852627,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,20.463049,0.15,4 +8731,0,0.733508,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,2.244,2.977,0,17.6042,3.7,5 +10172,0,2.427037,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,2.693,5.119,0,58.248888,3.7,5 +10173,0,0.321317,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,2.371,2.693,0,7.7116,3.7,5 +8565,0,0.563439,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,1.681,2.244,0,13.522538,3.7,5 +9280,0,0.903248,1,1,0,2,5,,4,6,Stewart,Rd,1229706,0,0.903,0,21.677947,5.8,4.5 +8737,0,0.156941,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,1.524,1.681,0,3.766588,3.7,5 +10068,0,1.32505,1,1,0,2,5,,5,6,Sumpter,Rd,1237809,0.778,2.103,0,31.801197,3.7,5 +10074,0,1.05987,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,3.664,4.724,0,25.436892,3.7,5 +31386,0,2.263195,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,54.316675,0.15,4 +10067,0,0.178501,1,1,0,2,5,,5,6,Sumpter,Rd,1237809,2.103,2.281,0,4.28402,3.7,5 +10075,0,0.22904,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,3.435,3.664,0,5.496966,3.7,5 +10091,0,0.904053,1,1,0,2,5,,5,6,Sumpter,Rd,1237801,1.559,2.463,0,21.697267,3.7,5 +31391,0,0.129109,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,3.098617,0.15,4 +10065,0,0.190691,1,1,0,2,5,,5,6,Scofield,Rd,1238109,2.314,2.504,0,4.576577,3.7,5 +10089,0,0.147301,1,1,0,2,5,,5,6,Sumpter,Rd,1237801,2.463,2.61,0,3.535218,3.7,5 +10253,0,0.939187,1,1,0,2,5,,5,6,Sumpter,Rd,1236306,0.035,0.974,0,22.540482,3.7,5 +30861,0,0.495245,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.885892,0.15,4 +19883,0,0.04714,1,1,0,2,5,,5,6,Sumpter,Rd,4300018,0,0.047,0,1.131371,3.7,5 +20877,0,0.061666,1,1,0,2,5,,5,6,Carleton West,Rd,4301813,0,0.062,0,1.479988,3.7,5 +8862,0,1.551403,1,1,0,2,7,,5,6,Heiss,Rd,1226505,0.541,2.092,0,37.233662,5.8,6 +9278,0,1.467143,1,1,0,2,6,,5,6,Reinhardt,Rd,1229707,0,1.467,0,35.211425,5.8,6 +9378,0,1.097875,2,2,0,2,4,,5,6,Monroe,St,1227004,18.382,19.48,0,26.349011,3,4 +20128,0,0.264431,2,2,1,2,3,,4,6,Telegraph,Rd,4300001,17.245,17.51,0,6.346335,3.7,5 +20710,0,0.662019,1,1,0,2,5,,3,6,Mall,Rd,4302559,0.923,1.585,0,15.888466,8,4.5 +20823,0,0.641241,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,18.768,19.41,0,15.389773,1.7,4 +31394,0,1.014047,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.337132,0.15,4 +31396,0,1.157834,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.788014,0.15,4 +10162,0,0.949002,1,1,0,2,5,,4,6,Stewart,Rd,1237610,7.351,8.3,0,22.776037,5.8,4.5 +10164,0,0.487948,1,1,0,2,5,,4,6,Bluebush,Rd,1237610,6.863,7.351,0,11.710746,5.8,4.5 +10166,0,0.160275,1,1,0,2,5,,4,6,Bluebush,Rd,1237610,6.703,6.863,0,3.846611,5.8,4.5 +31398,0,0.100078,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.401883,0.15,4 +20330,0,0.544694,2,2,1,2,3,,4,6,Telegraph,Rd,4300001,16.701,17.245,0,13.072665,3.7,5 +19888,0,0.220703,1,1,0,2,5,,4,6,Mall,Rd,4302559,0.703,0.923,0,5.296881,5.8,4.5 +9275,0,0.534937,1,1,0,2,6,,5,6,Toben,Rd,1229801,0.04,0.575,0,12.838491,5.8,6 +9276,0,1.023984,1,1,0,2,6,,5,6,Reinhardt,Rd,1229707,1.717,2.741,0,24.575612,5.8,6 +20243,0,0.058454,1,1,0,2,6,,5,6,Toben,Rd,4302192,0,0.058,0,1.402897,5.8,6 +9277,0,0.25051,1,1,0,2,6,,5,6,Reinhardt,Rd,1229707,1.467,1.717,0,6.012237,5.8,6 +31395,0,0.526042,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.625013,0.15,4 +9083,0,0.54154,1,1,0,2,7,,5,6,Heiss,Rd,1226505,0,0.541,0,12.996955,5.8,6 +9381,0,0.869955,2,2,0,2,4,,4,6,Monroe,St,1227004,17.116,17.986,0,20.87893,4.5,4.5 +20380,0,0.449968,1,1,0,2,5,,4,6,Hurd,Rd,4301449,0,0.45,0,10.799227,5.8,4.5 +20178,0,0.484055,1,1,0,2,5,,4,6,Hurd,Rd,4301449,0.45,0.934,0,11.61732,5.8,4.5 +31279,0,0.145419,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.490047,0.15,4 +31280,0,0.415155,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,9.963722,0.15,4 +19887,0,0.04392,1,1,0,2,5,,4,6,Vivian,Rd,4301667,0.712,0.756,0,1.054091,5.8,4.5 +9379,0,0.083594,2,2,0,2,4,,4,6,Monroe,St,1227004,18.299,18.382,0,2.006251,4.5,4.5 +9380,0,0.313244,1,1,0,2,4,,4,6,Monroe,St,1227004,17.986,18.299,0,7.517851,4.5,4.5 +9304,0,0.643709,1,1,0,2,5,,5,6,Newport,Rd,1228304,0.412,1.056,0,15.449006,3.7,5 +10071,0,1.238377,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,9.398,10.636,0,29.721053,3.7,5 +10245,0,1.700369,1,1,0,2,5,,5,6,Grafton,Rd,1236709,0,1.7,0,40.80885,3.7,5 +20176,0,0.325176,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,19.847,20.172,0,7.804227,1.7,4 +20583,0,0.384919,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,19.41,19.794,0,9.238063,1.7,4 +20378,0,0.052517,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,19.794,19.847,0,1.260415,1.7,4 +10207,0,1.50703,1,1,0,2,6,,5,6,Exeter,Rd,1237509,3.067,4.573,0,36.168712,5.8,6 +10231,0,0.488819,1,1,0,2,5,,4,6,Monroe,St,1236805,0,0.489,0,11.731645,5.8,4.5 +10241,0,1.983711,1,1,0,2,5,,5,6,Grafton,Rd,1236709,3.133,5.116,0,47.609067,3.7,5 +31397,0,1.033366,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.800795,0.15,4 +10208,0,0.523449,1,1,0,2,6,,5,6,Exeter,Rd,1237509,2.543,3.067,0,12.56278,5.8,6 +31352,0,1.03552,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.852488,0.15,4 +10187,0,0.479739,1,1,0,2,5,,5,6,Carleton West,Rd,1237607,0.039,0.519,0,11.513736,3.7,5 +10205,0,0.874393,1,1,0,2,6,,5,6,Exeter,Rd,1237509,4.573,5.447,0,20.985423,5.8,6 +10193,0,0.039035,1,1,0,2,6,,5,6,Exeter/Carleton West Cutoff,,1237607,0,0.039,0,0.936842,5.8,6 +10195,0,0.04786,1,1,0,2,5,,5,6,Exeter,Rd,1237509,5.487,5.535,0,1.148637,3.7,5 +20424,0,0.058165,1,1,0,2,5,,5,6,Carleton West,Rd,4301857,0,0.058,0,1.39595,3.7,5 +10200,0,0.040172,1,1,0,2,6,,5,6,Exeter,Rd,1237509,5.447,5.487,0,0.964127,5.8,6 +20332,0,0.057179,1,1,0,2,5,,5,6,Carleton West,Rd,4300287,0,0.057,0,1.372307,3.7,5 +9957,0,0.454342,1,1,0,2,5,,5,6,Carleton West,Rd,1240603,0.038,0.492,0,10.904212,3.7,5 +10220,0,0.157344,1,1,0,2,5,,5,6,Burns,Rd,1237210,2.629,2.786,0,3.776256,3.7,5 +20182,0,0.066705,1,1,0,2,5,,5,6,Carleton West,Rd,4301807,0,0.067,0,1.600931,3.7,5 +20642,0,0.065415,1,1,0,2,5,,5,6,Carleton West,Rd,4301814,0,0.065,0,1.56997,3.7,5 +10218,0,0.1039,1,1,0,2,5,,4,6,Maxwell,Rd,1237301,3.125,3.229,0,2.493589,5.8,4.5 +31041,0,0.692752,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,16.626045,0.15,4 +8694,0,0.853444,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,0,0.853,0,20.482644,3.7,5 +10237,0,0.200911,1,1,0,2,5,,4,6,Grafton,Rd,1236709,5.116,5.316,0,4.821869,5.8,4.5 +31402,0,0.146815,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.523556,0.15,4 +31403,0,0.503337,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.080099,0.15,4 +10230,0,0.509936,1,1,0,2,5,,4,6,Monroe,St,1236805,0.489,0.998,0,12.238459,5.8,4.5 +10233,0,0.693707,1,1,0,2,5,,5,6,Grafton,Rd,1236709,5.544,6.238,0,16.648958,3.7,5 +31285,0,0.654762,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,15.714279,0.15,4 +10235,0,0.227806,1,1,0,2,5,,4,6,Grafton,Rd,1236709,5.316,5.544,0,5.467337,5.8,4.5 +9294,1,0.433182,1,0,0,1,1,ROF,5,6,S I 275/Carleton Rockwood,RAMP,1228307,0,0.433,0,,2.24,5 +16439,1,0.308959,1,0,0,1,1,RON,5,2,South Huron/N I 275,RAMP,1607305,0.055,0.364,0,,1.09,4 +16793,1,0.662656,3,0,0,1,1,,5,2,N I 275,,1607208,2.654,3.317,0,,1.02,7 +16905,-1,0.361591,0,3,0,1,1,,5,2,S I 275,,1607610,2.995,3.356,0,,1.02,7 +17008,1,0.387833,1,0,0,1,1,ROF,5,2,S I 275/W South Huron,RAMP,1607704,0,0.388,0,,2.24,5 +17555,0,1.00022,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,3.032,4.032,0,24.005276,3,4 +17670,0,0.806735,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670605,0.703,1.51,0,19.361635,5.55,5 +17911,0,0.342709,1,1,0,2,4,,5,2,Waltz,Rd,1673810,3.087,3.43,0,8.225018,3,4 +18083,0,0.804465,1,1,0,2,5,,5,2,Harris,Rd,1670501,3.779,4.583,0,19.307163,3.7,5 +18093,0,0.988461,1,1,0,2,5,,5,2,Judd,Rd,1670408,5.128,6.116,0,23.723076,3.7,5 +18693,0,0.712095,1,1,0,2,4,,5,2,Savage,Rd,1670810,1.307,2.019,0,17.090273,3,4 +18970,0,1.009717,1,1,0,2,5,,5,2,Huron River,Dr,1670406,11.27,12.279,0,24.233208,3.7,5 +19083,0,1.513226,1,1,0,2,5,,5,2,Willow,Rd,1670406,5.115,6.628,0,36.317419,3.7,5 +19190,0,0.386992,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,5.575,5.962,0,9.287798,3,4 +30686,0,1.347785,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,32.34684,0.15,4 +31217,0,1.429106,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,34.29855,0.15,4 +31228,0,1.08305,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.993197,0.15,4 +17638,0,1.000924,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,1.029,2.029,0,24.022187,3,4 +18187,0,1.014711,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670604,0.994,2.009,0,24.353059,5.55,5 +18870,0,0.634028,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,3.467,4.101,0,15.216677,3,4 +19091,0,0.650995,1,1,0,2,5,,5,2,Willow,Rd,1670406,3.94,4.591,0,15.623876,3.7,5 +31218,0,1.547361,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,37.136667,0.15,4 +31404,0,1.49664,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,35.919359,0.15,4 +31405,0,0.999535,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,23.988846,0.15,4 +31409,0,1.190845,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,28.580275,0.15,4 +17468,0,0.409981,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,3.057,3.467,0,9.839535,3,4 +18062,0,1.028881,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,0,1.029,0,24.693151,3,4 +17972,0,1.002986,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,2.029,3.032,0,24.071674,3,4 +18728,0,0.896145,1,1,0,2,5,,5,2,Willow,Rd,1670406,3.044,3.94,0,21.507477,3.7,5 +17465,0,0.969416,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,4.101,5.07,0,23.265973,3,4 +19165,0,0.994512,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670604,0,0.994,0,23.868293,5.55,5 +31406,0,1.124585,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,26.990047,0.15,4 +31407,0,0.5095,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.228004,0.15,4 +18869,0,0.505135,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,5.07,5.575,0,12.123231,3,4 +17784,0,0.499739,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670604,2.009,2.508,0,11.993748,5.55,5 +18625,0,0.524385,1,1,0,2,5,,5,2,Willow,Rd,1670406,4.591,5.115,0,12.585239,3.7,5 +18814,0,0.251927,1,1,0,2,5,GRV,5,2,Wear,Rd,1670407,4.867,5.119,0,6.046249,5.55,5 +18107,0,0.703673,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670605,0,0.703,0,16.888158,5.55,5 +31408,0,0.34408,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,8.257914,0.15,4 +17463,0,0.528426,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,5.6,6.129,0,12.682217,3,4 +17669,0,0.935186,1,1,0,2,5,,4,2,Bemis,Rd,1670503,4.121,5.056,0,22.444459,5.8,4.5 +17797,0,0.577825,1,1,0,2,5,GRV,5,2,Martinsville,Rd,1670702,5.539,6.117,0,13.867797,5.55,5 +18084,0,0.703136,1,1,0,2,5,,5,2,Harris,Rd,1670501,2.771,3.474,0,16.875257,3.7,5 +18606,0,1.007409,1,1,0,2,5,,5,2,Judd,Rd,1670408,3.548,4.555,0,24.177821,3.7,5 +18653,0,1.031263,1,1,0,2,4,,4,2,Savage,Rd,1674810,3.484,4.515,0,24.750323,4.5,4.5 +31224,0,0.45365,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,10.887605,0.15,4 +31359,0,1.889612,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,45.35069,0.15,4 +17488,0,0.68909,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,4.409,5.097,0,16.538167,3,4 +18356,0,0.521214,1,1,0,2,5,,5,2,Judd,Rd,1670408,3.027,3.548,0,12.509126,3.7,5 +18486,0,1.075886,1,1,0,2,5,,5,2,Willis,Rd,1670409,3.047,4.123,0,25.821264,3.7,5 +17914,0,0.377193,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,4.032,4.409,0,9.052636,3,4 +17898,0,0.503149,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,5.097,5.6,0,12.075578,3,4 +18197,0,0.508145,1,1,0,2,5,,5,2,Martinsville,Rd,1670702,5.031,5.539,0,12.195475,3.7,5 +18106,0,1.075219,1,1,0,2,5,,4,2,Bemis,Rd,1670503,3.046,4.121,0,25.805263,5.8,4.5 +18391,0,0.801031,1,1,0,2,4,,4,2,Sumpter,Rd,1670701,6.329,7.13,0,19.22474,4.5,4.5 +18857,0,0.200208,1,1,0,2,4,,4,2,Sumpter,Rd,1670701,6.129,6.329,0,4.804994,4.5,4.5 +18626,0,0.882036,1,1,0,2,4,,4,2,Sumpter,Rd,1670701,7.13,8.011,0,21.168868,4.5,4.5 +19103,0,0.39256,1,1,0,2,4,,4,2,Columbia,Ave,1674810,3.092,3.484,0,9.421442,4.5,4.5 +31229,0,0.469379,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.265098,0.15,4 +18123,0,0.197546,1,1,0,2,4,,4,2,Columbia,Ave,1674810,2.86,3.058,0,4.741093,4.5,4.5 +31369,0,0.316605,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.598512,0.15,4 +31367,0,0.116898,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.805546,0.15,4 +18188,0,0.133086,1,1,0,2,4,,4,2,South,St,1670701,8.011,8.144,0,3.194057,4.5,4.5 +17693,0,0.034229,1,1,1,2,4,,4,2,Columbia,Ave,1674810,3.058,3.092,0,0.821488,4.5,4.5 +22565,0,0.023575,1,1,0,2,4,,4,2,Huron River,Dr,4705582,0,0.024,0,0.565811,4.5,4.5 +22854,0,0.022281,1,1,0,2,4,,4,2,Main,St,4705581,0.561,0.583,0,0.534742,4.5,4.5 +18063,0,0.848996,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670606,0,0.849,0,20.375908,5.55,5 +18485,0,0.305533,1,1,0,2,5,,5,2,Harris,Rd,1670501,3.474,3.779,0,7.33279,3.7,5 +18501,0,0.255319,1,1,0,2,5,,5,2,Judd,Rd,1670408,4.873,5.128,0,6.127657,3.7,5 +31223,0,1.069914,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.677924,0.15,4 +31225,0,0.588892,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,14.133405,0.15,4 +18172,0,0.317768,1,1,0,2,5,,5,2,Judd,Rd,1670408,4.555,4.873,0,7.626434,3.7,5 +31222,0,0.542113,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,13.010701,0.15,4 +17639,0,0.674132,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670606,0.849,1.523,0,16.179158,5.55,5 +17812,0,0.562114,1,1,0,2,4,,4,2,Savage,Rd,1674810,4.945,5.507,0,13.490746,4.5,4.5 +18946,0,1.047763,1,1,0,2,4,,4,2,Haggerty,Rd,1670810,2.019,3.066,0,25.1463,4.5,4.5 +31357,0,0.544364,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.064743,0.15,4 +31360,0,0.99445,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.866799,0.15,4 +18212,0,0.430251,1,1,0,2,4,,4,2,Savage,Rd,1674810,4.515,4.945,0,10.326035,4.5,4.5 +31358,0,0.573615,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.76677,0.15,4 +17757,0,0.433596,1,1,0,2,5,,4,2,Bemis,Rd,1670503,5.056,5.489,0,10.406299,5.8,4.5 +18470,0,0.503452,1,1,0,2,4,,4,2,Haggerty,Rd,1670810,3.066,3.569,0,12.082858,4.5,4.5 +9322,0,0.356067,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.056,1.412,0,8.545619,3,4 +16540,1,2.391616,3,0,0,1,1,,5,2,N I 275,,1607208,0.264,2.654,0,,1.02,7 +16708,0,0.681063,1,1,0,2,4,,5,2,Huron,Rd,1607304,1.009,1.689,0,16.345503,3,4 +16921,-1,2.315342,0,3,0,1,1,,5,2,S I 275,,1607610,0.397,2.711,0,,1.02,7 +18322,0,1.028294,1,1,0,2,4,,5,2,Waltz,Rd,1673810,0,1.028,0,24.679052,3,4 +19077,0,0.550766,1,1,0,2,5,,5,2,Willow,Rd,1670406,7.149,7.699,0,13.218395,3.7,5 +31230,0,0.188062,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,4.513499,0.15,4 +9323,0,0.887343,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,0.169,1.056,0,21.296242,3,4 +17902,0,0.106733,1,1,0,2,4,,5,6,Clark,Rd,1670703,0.153,0.26,0,2.561583,3,4 +17790,0,0.225618,1,1,0,2,4,,5,2,Oakville Waltz,Rd,1670806,0,0.226,0,5.414826,3,4 +20591,0,0.233879,1,1,0,2,4,,5,6,Oakville Waltz,Rd,4302166,0,0.234,0,5.613097,3,4 +31231,0,0.768981,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,18.455546,0.15,4 +18615,0,0.521448,1,1,0,2,5,,5,2,Willow,Rd,1670406,6.628,7.149,0,12.514758,3.7,5 +18745,0,0.750515,1,1,0,2,4,,5,2,Waltz,Rd,1673810,1.588,2.338,0,18.012357,3,4 +31234,0,0.674639,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,16.191346,0.15,4 +31235,0,0.494098,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.858346,0.15,4 +17935,0,0.560246,1,1,0,2,4,,5,2,Waltz,Rd,1673810,1.028,1.588,0,13.445904,3,4 +18299,0,0.749174,1,1,0,2,4,,5,2,Waltz,Rd,1673810,2.338,3.087,0,17.980186,3,4 +9293,1,0.389764,1,0,0,1,1,RON,5,6,Will Carleton/S I 275,RAMP,1228308,0,0.39,0,,1.09,4 +9317,0,0.291182,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,2.072,2.363,0,6.988359,3,4 +9324,1,0.405562,1,0,0,1,1,ROF,5,6,N I 275/Will Carleton,RAMP,1228107,0,0.405,0,,2.24,5 +9332,1,0.374917,3,0,0,1,1,,5,6,N I 275,,1228001,8.118,8.493,0,,1.02,7 +17052,1,0.442129,1,0,0,1,1,ROF,5,2,S I 275/Will Carlton,RAMP,1607609,0,0.442,0,,2.24,5 +20641,-1,0.335603,0,3,0,1,1,,5,6,S I 275,,4301662,7.508,7.843,0,,1.02,7 +9320,0,0.041331,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.746,1.787,0,0.991951,3,4 +18649,0,0.039954,1,1,0,2,4,,5,2,Waltz,Rd,1673901,0,0.04,0,0.958902,3,4 +9321,0,0.334555,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.412,1.746,0,8.029327,3,4 +18207,0,0.22447,1,1,0,2,4,,5,2,Waltz,Rd,1673901,0.04,0.264,0,5.387273,3,4 +22184,0,0.034252,1,1,0,2,4,,5,2,Waltz/Oakville Waltz Cutoff,,4704329,0,0.034,0,0.822055,3,4 +9319,0,0.230368,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.787,2.018,0,5.528842,3,4 +9318,0,0.053877,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,2.018,2.072,0,1.293054,3,4 +16749,-1,0.396703,0,3,0,1,1,,5,2,S I 275,,1607610,0,0.397,0,,1.02,7 +16711,1,0.305144,1,0,0,1,1,RON,5,2,Will Carlton/N I 275,RAMP,1607301,0,0.305,0,,1.09,4 +16817,1,0.263683,3,0,0,1,1,,5,2,N I 275,,1607208,0,0.264,0,,1.02,7 +16701,0,0.164177,2,2,1,2,4,,5,2,Huron,Rd,1607304,2.207,2.371,0,3.940237,3,4 +18610,0,0.819237,1,1,0,2,5,,5,2,Willow,Rd,1670406,7.699,8.518,0,19.661676,3.7,5 +37938,1,0.153424,1,0,0,1,1,RON,5,2,W South Huron/N I 275,RAMP,4718581,0,0.153,0,,1.09,4 +31233,0,0.725426,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,17.410223,0.15,4 +31295,0,1.175205,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,28.204926,0.15,4 +16450,0,0.196606,1,1,0,2,4,,5,2,Huron,Rd,1607304,1.689,1.886,0,4.71855,3,4 +31232,0,0.783316,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,18.799584,0.15,4 +16071,1,0.321762,1,0,0,1,1,ROF,5,2,S I 275/E South Huron,RAMP,1607703,0,0.322,0,,2.24,5 +16337,1,0.362703,1,0,0,1,1,RON,5,2,South Huron/S I 275,RAMP,1607702,0,0.363,0,,1.09,4 +16446,0,0.190268,2,2,1,2,4,,5,2,Huron,Rd,1607304,2.017,2.207,0,4.566441,3,4 +16453,1,0.405659,1,0,0,1,1,ROF,5,2,N I 275/South Huron,RAMP,1607303,0,0.406,0,,2.24,5 +16618,-1,0.283605,0,3,0,1,1,,5,2,S I 275,,1607610,2.711,2.995,0,,1.02,7 +16702,0,0.131002,2,2,1,2,4,,5,2,Huron,Rd,1607304,1.886,2.017,0,3.144057,3,4 +16691,1,0.054736,1,0,0,1,1,RON,5,2,South Huron/N I 275,RAMP,1607305,0,0.055,0,,1.09,4 +31294,0,0.508792,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.211009,0.15,4 +16445,0,0.018913,2,2,1,2,5,,5,2,Huron,Rd,1607304,2.371,2.39,0,0.453912,3.7,5 +12232,0,0.562308,2,2,0,2,4,,4,2,Eureka,Rd,1578308,0,0.562,0,13.495402,4.5,4.5 +16404,0,0.227016,1,1,0,2,4,,5,2,Sibley,Rd,1607308,0.394,0.621,0,5.448377,3,4 +16493,-1,1.23973,0,3,0,1,1,,4,2,S I 275,,1607610,5.407,6.647,0,,0.8,7.5 +16511,1,1.297844,3,0,0,1,1,,5,2,N I 275,,1607208,5.305,6.603,0,,1.02,7 +16689,0,0.687341,1,1,0,2,5,,5,2,Huron River,Dr,1607306,0,0.687,0,16.496189,3.7,5 +17723,0,1.459591,1,1,0,2,5,,5,2,Hannan,Rd,1710309,0,1.459,0,35.030182,3.7,5 +18218,0,0.994078,1,1,0,2,4,,5,2,Huron River,Dr,1673810,5.076,6.07,0,23.85787,3,4 +18367,0,0.758633,1,1,0,2,5,,5,2,Vining,Rd,1670406,13.52,14.279,0,18.207202,3.7,5 +18442,0,0.473369,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,0.662,1.135,0,11.360862,4.5,4.5 +30598,0,1.451048,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,34.825161,0.15,4 +31219,0,0.68264,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,16.383365,0.15,4 +31237,0,1.057686,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.384463,0.15,4 +31242,0,0.502954,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.070886,0.15,4 +31243,0,0.498722,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.969336,0.15,4 +31371,0,0.668381,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.041142,0.15,4 +17899,0,0.32216,1,1,0,2,4,,5,2,Gentz,Rd,1674108,0,0.322,0,7.731835,3,4 +18236,0,0.367139,1,1,0,2,4,,5,2,Waltz,Rd,1673810,4.082,4.449,0,8.811337,3,4 +19176,0,0.592919,1,1,0,2,4,,5,2,Savage,Rd,1670810,0,0.593,0,14.230056,3,4 +19202,0,0.760096,1,1,0,2,5,,5,2,Judd,Rd,1670809,0,0.76,0,18.242311,3.7,5 +31241,0,0.514963,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.359118,0.15,4 +17470,0,0.314048,1,1,0,2,5,,5,2,Clark,Rd,1670703,4.059,4.373,0,7.537161,3.7,5 +19150,0,0.714348,1,1,0,2,4,,5,2,Savage,Rd,1670810,0.593,1.307,0,17.144355,3,4 +31240,0,0.263673,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,6.328157,0.15,4 +17768,0,0.248608,1,1,0,2,4,,5,2,Judd,Rd,1670809,0.76,1.008,0,5.966584,3,4 +18674,0,0.652274,1,1,0,2,4,,5,2,Waltz,Rd,1673810,3.43,4.082,0,15.654585,3,4 +31220,0,0.496946,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.926713,0.15,4 +31221,0,0.296723,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,7.121358,0.15,4 +16656,0,0.394167,1,1,0,2,4,,5,2,Sibley,Rd,1607308,0,0.394,0,9.460005,3,4 +17842,0,0.447172,1,1,0,2,4,,5,2,Waltz,Rd,1673810,4.449,4.896,0,10.732133,3,4 +18658,0,0.180693,1,1,0,2,4,,5,2,Huron River,Dr,1673810,4.896,5.076,0,4.336626,3,4 +18269,0,0.153698,1,1,0,2,9,,5,2,South Metro,Pkwy,1674109,0,0.154,0,3.688758,5.8,6 +17464,0,0.083732,1,1,0,2,9,,5,2,Gentz,Rd,1674108,0.322,0.406,0,2.009567,5.8,6 +17724,0,1.266874,1,1,0,2,5,,4,2,Hannan,Rd,1710309,1.459,2.726,0,30.404966,5.8,4.5 +17820,0,0.74559,1,1,0,2,4,,4,2,Huron River,Dr,1673810,6.07,6.816,0,17.894151,4.5,4.5 +18915,0,0.661825,1,1,0,2,5,,4,2,Pennsylvania,Rd,1674307,0,0.662,0,15.883809,5.8,4.5 +31362,0,0.563241,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.517783,0.15,4 +30873,0,0.500138,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.003309,0.15,4 +18217,0,0.623306,1,1,0,2,4,,4,2,Huron River,Dr,1673810,7.061,7.684,0,14.959339,4.5,4.5 +18657,0,0.245577,1,1,0,2,4,,4,2,Huron River,Dr,1673810,6.816,7.061,0,5.893846,4.5,4.5 +16435,0,1.089382,1,1,0,2,5,,5,2,Huron River,Dr,1607306,0.687,1.776,0,26.145172,3.7,5 +16513,1,1.288769,3,0,0,1,1,,5,2,N I 275,,1607208,3.317,4.605,0,,1.02,7 +16610,-1,1.350773,0,3,0,1,1,,5,2,S I 275,,1607610,3.356,4.706,0,,1.02,7 +16644,0,0.863434,1,1,0,2,4,,5,2,Sibley,Rd,1607308,1.132,1.995,0,20.722409,3,4 +18487,0,1.001402,1,1,0,2,5,,5,2,Vining,Rd,1670406,12.279,13.28,0,24.033646,3.7,5 +31227,0,0.334047,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,8.017132,0.15,4 +31238,0,0.280024,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,6.720579,0.15,4 +31239,0,1.02376,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,24.570251,0.15,4 +16335,1,0.355285,1,0,0,1,1,RON,5,2,Sibley/N I 275,RAMP,1607309,0,0.355,0,,1.09,4 +16413,1,0.428417,1,0,0,1,1,ROF,5,2,N I 275/Sibley,RAMP,1607307,0,0.428,0,,2.24,5 +16651,0,0.312741,2,2,1,2,4,,5,2,Sibley,Rd,1607308,0.621,0.934,0,7.505796,3,4 +16695,1,0.354789,1,0,0,1,1,RON,5,2,Sibley/S I 275,RAMP,1607705,0,0.355,0,,1.09,4 +16764,-1,0.701258,0,3,0,1,1,,5,2,S I 275,,1607610,4.706,5.407,0,,1.02,7 +16790,1,0.700238,3,0,0,1,1,,5,2,N I 275,,1607208,4.605,5.305,0,,1.02,7 +16139,1,0.44344,1,0,0,1,1,ROF,5,2,S I 275/Sibley,RAMP,1607706,0,0.443,0,,2.24,5 +16398,0,0.177286,2,2,1,2,4,,5,2,Sibley,Rd,1607308,0.934,1.111,0,4.254869,3,4 +16683,0,0.582258,1,1,0,2,5,,5,2,Huron River,Dr,1607306,1.776,2.358,0,13.97419,3.7,5 +31236,0,0.62336,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,14.960634,0.15,4 +18831,0,0.240382,1,1,0,2,5,,5,2,Vining,Rd,1670406,13.28,13.52,0,5.769175,3.7,5 +11544,0,0.700312,1,1,0,2,5,,4,2,Wayne,Rd,1576609,0.333,1.033,0,16.807477,5.8,4.5 +12541,1,0.157611,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.189,1.346,0,3.782673,3.7,5 +12582,1,0.418655,1,0,0,1,1,ROF,4,2,N I 275/Eureka,RAMP,1578307,0,0.419,0,,2.24,5 +16775,1,0.397429,3,0,0,1,1,,4,2,N I 275,,1607208,6.603,7,0,,0.8,7.5 +18333,0,0.684301,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,1.666,2.351,0,16.423236,4.5,4.5 +22242,-1,0.64779,0,2,0,2,3,DIV,4,2,Eureka,Rd,4703131,0,0.648,0,15.546949,3.7,5 +30599,0,0.530074,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.721767,0.15,4 +30600,0,0.613806,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.731349,0.15,4 +18788,0,0.531821,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,1.135,1.666,0,12.763709,4.5,4.5 +12545,0,0.309921,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.628,0.938,0,7.438115,3.7,5 +16307,1,0.383439,1,0,0,1,1,RON,4,2,W Eureka/N I 275,RAMP,1607401,0,0.383,0,,1.09,4 +16447,-1,0.378769,0,3,0,1,1,,4,2,S I 275,,1607610,6.969,7.348,0,,0.8,7.5 +16500,1,0.302895,3,0,0,1,1,,4,2,N I 275,,1607208,7,7.303,0,,0.8,7.5 +16538,1,0.314887,1,0,0,1,1,RON,4,2,E Eureka/N I 275,RAMP,1607310,0,0.315,0,,1.09,4 +17022,1,0.397622,1,0,0,1,1,ROF,4,2,S I 275/Eureka,RAMP,1607707,0,0.397,0,,2.24,5 +26282,0,0.491324,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.79178,0.15,4 +11073,1,0.322893,1,0,0,1,1,RON,4,2,W Eureka/S I 275,RAMP,1576510,0,0.323,0,,1.09,4 +13794,1,0.406662,1,0,0,1,1,RON,4,2,E Eureka/S I 275,RAMP,1589306,0,0.407,0,,1.09,4 +16703,-1,0.32234,0,3,0,1,1,,4,2,S I 275,,1607610,6.647,6.969,0,,0.8,7.5 +12546,0,0.060529,2,2,1,2,4,,4,2,Eureka,Rd,1578308,0.562,0.623,0,1.452693,4.5,4.5 +12182,0,0.005441,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.623,0.628,0,0.13058,3.7,5 +12179,0,0.099691,2,2,1,2,3,,4,2,Eureka,Rd,1578308,1.089,1.189,0,2.392573,3.7,5 +12543,0,0.143379,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.946,1.089,0,3.441094,3.7,5 +12180,0,0.007801,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.938,0.946,0,0.187229,3.7,5 +11543,0,0.333096,1,1,0,2,5,,4,2,Wayne,Rd,1576609,0,0.333,0,7.994311,5.8,4.5 +17945,0,0.311656,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,2.351,2.662,0,7.479738,4.5,4.5 +30601,0,0.292941,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.030586,0.15,4 +12167,1,0.336582,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.6,1.936,0,8.077972,3.7,5 +22561,1,0.53032,1,0,0,1,3,RSF,4,2,E Eureka/Dingell,Ramp,4706208,0,0.53,0,,3.7,5 +12531,1,0.160165,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.44,1.6,0,3.84397,3.7,5 +12176,1,0.093256,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.346,1.44,0,2.238132,3.7,5 +22241,-1,0.307358,0,2,0,2,3,DIV,4,2,Eureka,Rd,4703131,0.648,0.955,0,7.376595,3.7,5 +22562,1,0.173992,1,0,0,1,3,RSF,4,2,W Eureka/Dingell,Ramp,4706210,0,0.174,0,,3.7,5 +24053,1,0.268405,1,0,0,1,3,RSF,4,2,Dingell/W Eureka,Ramp,4711339,0,0.268,0,,3.7,5 +24056,1,0.304449,1,0,0,1,3,RSF,4,2,Dingell/E Eureka,Ramp,4711338,0,0.304,0,,3.7,5 +24078,-1,0.175279,0,1,0,2,3,DIV,4,2,John Dingell,Dr,4711337,0,0.175,0,4.2067,3.7,5 +24100,1,0.146108,1,0,0,2,3,DIV,4,2,John Dingell,Dr,4711336,0,0.146,0,3.5066,3.7,5 +24077,-1,0.615563,0,2,0,2,3,DIV,4,2,John Dingell,Dr,4711337,0.175,0.791,0,14.773511,3.7,5 +1942,0,0.51618,1,1,0,2,4,,4,3,9 Mile,Rd,633603,5.719,6.235,0,12.388331,4.5,4.5 +3109,0,0.499002,1,1,0,2,3,,4,3,10 Mile,Rd,656510,8.811,9.31,0,11.976037,3.7,5 +10802,1,0.545369,3,0,0,1,1,,4,2,E I 94,,1576405,2.092,2.637,0,,0.8,7.5 +10954,0,0.431809,1,1,0,2,5,,4,2,Quirk,Rd,1576409,0,0.432,0,10.363423,5.8,4.5 +11147,0,0.440106,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,4.105,4.545,0,10.562553,5.55,5 +11201,0,0.444996,1,1,0,2,5,,5,5,Curtis,Rd,1432002,0,0.445,0,10.679906,3.7,5 +11240,0,0.794632,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,3.387,4.182,0,19.071171,3,4 +13755,-1,2.535088,0,3,0,1,1,,4,2,W I 94,,1588802,0.214,2.748,0,,0.8,7.5 +14759,0,0.368775,1,1,0,2,3,,4,2,Ford,Rd,1595510,2.617,2.986,0,8.850607,3.7,5 +14808,0,1.018155,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,2.146,3.164,0,24.435719,6.55,4.5 +15148,0,0.258452,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,3.239,3.498,0,6.202849,8,4.5 +15334,0,0.687951,1,1,0,2,5,,3,2,Hix,Rd,1595808,1.492,2.18,0,16.510813,8,4.5 +15396,0,0.280491,1,1,1,2,3,,4,2,Beck,Rd,1595603,4.738,5.019,0,6.731777,3.7,5 +15826,1,0.087241,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,2.323,2.41,0,2.09378,3.7,5 +15839,0,0.241347,1,1,0,2,4,,3,2,Venoy,Rd,1599408,4.744,4.985,0,5.792322,6,4.5 +16047,0,0.723669,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,2.949,3.672,0,17.368044,4.5,4.5 +16049,1,1.360362,3,0,0,1,2,,4,2,E M 14,,1606205,2.557,3.917,0,,0.8,7.5 +16194,-1,1.870844,0,3,0,1,1,,4,2,S I 275,,1607610,17.684,19.554,0,,0.8,7.5 +16210,0,1.037297,1,1,0,2,4,,4,2,Ann Arbor,Trl,1604108,1.002,2.039,0,24.895123,4.5,4.5 +16231,0,0.528034,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,2.455,2.983,0,12.672818,4.5,4.5 +16755,1,1.972175,3,0,0,1,1,,4,2,N I 275,,1607208,17.603,19.575,0,,0.8,7.5 +16933,-1,1.275954,0,3,0,1,2,,4,2,W M 14,,1606204,2.76,4.036,0,,0.8,7.5 +16950,1,0.339091,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,2.776,3.115,0,8.138183,4.5,4.5 +17443,0,0.444269,1,1,0,2,4,,3,2,Fairbrook,St,1680703,2.778,3.223,0,10.662461,6,4.5 +17618,0,0.527796,1,1,0,2,4,,4,2,Tyler,Rd,1675701,0.398,0.925,0,12.667113,4.5,4.5 +17789,0,0.206227,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.355,5.561,0,4.949439,4.5,4.5 +17946,0,0.581965,1,1,0,2,4,,4,2,Territorial,Rd,1673609,2.531,3.113,0,13.967162,4.5,4.5 +17960,1,0.486612,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.491,0.978,0,11.678691,8,4.5 +18053,0,0.772082,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,2.718,3.49,0,18.529962,4.5,4.5 +18180,0,0.041091,2,2,0,2,3,,3,3,8 Mile,Rd,1680705,3.009,3.05,0,0.986189,5,5 +18288,0,0.471285,1,1,0,2,5,,4,2,Hanford,Rd,1676006,2.526,2.997,0,11.31085,5.8,4.5 +18927,0,0.874505,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,2.615,3.489,0,20.988117,4.5,4.5 +19046,0,0.255003,1,1,0,2,4,,4,2,Joy,Rd,1672705,2.356,2.61,0,6.120078,4.5,4.5 +19235,0,0.496013,1,1,0,2,5,,4,2,South Service,Rd,1811006,2.728,3.224,0,11.904308,5.8,4.5 +21265,0,0.519872,1,1,0,2,5,,4,2,North Service,Rd,4603886,2.802,3.322,0,12.476923,5.8,4.5 +21767,-1,0.344826,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,2.807,3.152,0,8.275834,4.5,4.5 +21863,0,0.617746,1,1,0,2,4,,4,2,Geddes,Rd,4603888,2.896,3.513,0,14.825898,4.5,4.5 +22247,-1,0.754769,0,2,0,2,5,DIV,3,2,Central City,Pkwy,4702294,0.168,0.922,0,18.114458,8,4.5 +22493,0,0.838928,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,8.682,9.521,0,20.134269,4.5,4.5 +22773,0,0.213587,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,4.264,4.477,0,5.126087,3.7,5 +23323,-1,0.628817,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,2.706,3.335,0,15.091599,3.7,5 +23630,0,0.220356,2,2,1,2,4,,4,2,Belleville,Rd,4705580,0,0.22,0,5.288548,4.5,4.5 +23640,0,0.109744,2,2,1,2,4,,4,2,Main,St,4705581,0,0.11,0,2.633848,4.5,4.5 +23969,0,0.278564,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,1.221,1.499,0,6.685538,4.5,4.5 +23988,0,0.263319,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.194,10.457,0,6.319652,5,5 +24046,0,0.367581,2,2,1,2,4,,3,2,Warren,Rd,4710470,7.391,7.758,0,8.821955,6,4.5 +24068,0,0.260076,1,1,0,2,4,,4,2,Warren,Rd,4710470,4.756,5.016,0,6.241814,4.5,4.5 +24091,0,0.476514,1,1,0,2,4,,4,2,Warren,Rd,4710470,2.5,2.976,0,11.436324,4.5,4.5 +24092,0,0.051822,1,1,0,2,4,,4,2,Warren,Rd,4710470,2.448,2.5,0,1.243738,4.5,4.5 +24150,0,0.84487,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,3.745,4.589,0,20.276872,6,4.5 +24193,0,0.20465,1,1,0,2,4,,4,2,Lilley,Rd,4710390,3.923,4.128,0,4.911597,4.5,4.5 +26297,0,0.70357,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.885689,0.15,4 +26870,0,0.531076,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.745826,0.15,4 +26878,0,0.405657,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.735777,0.15,4 +30938,0,1.003329,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.079894,0.15,4 +31414,0,0.498482,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.963576,0.15,4 +31415,0,0.344388,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.265309,0.15,4 +31422,0,0.509887,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.237296,0.15,4 +31423,0,0.496206,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.908953,0.15,4 +31428,0,0.496669,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.920044,0.15,4 +31430,0,0.505855,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.140519,0.15,4 +31437,0,0.47631,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.431432,0.15,4 +31442,0,0.250569,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.013651,0.15,4 +31446,0,0.498046,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.953107,0.15,4 +31447,0,0.204754,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.914086,0.15,4 +31451,0,0.566856,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.604537,0.15,4 +31455,0,0.754322,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.103739,0.15,4 +31458,0,0.380713,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.137123,0.15,4 +31469,0,0.806864,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.364739,0.15,4 +31472,0,0.767587,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.422082,0.15,4 +31474,0,0.229513,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.508324,0.15,4 +31485,0,0.292843,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.028222,0.15,4 +31489,0,0.682239,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.373747,0.15,4 +31492,0,0.60564,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.535364,0.15,4 +31494,0,0.261031,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.264733,0.15,4 +31499,0,0.249896,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.997509,0.15,4 +31506,0,0.693274,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.638578,0.15,4 +31539,0,0.924154,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.179688,0.15,4 +31749,0,0.414682,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.952374,0.15,4 +33607,0,0.834932,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.038363,0.15,4 +33758,0,0.875145,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.003486,0.15,4 +33949,0,0.664528,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.948661,0.15,4 +33950,0,0.682757,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.38616,0.15,4 +33958,0,0.502934,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.070411,0.15,4 +33961,0,0.49364,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.847352,0.15,4 +9721,0,0.443663,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.461,4.904,0,10.647916,3.7,5 +9737,0,0.25644,1,1,1,2,4,,4,5,Grove,St,1428105,3.539,3.795,0,6.154565,4.5,4.5 +9891,1,1.738506,3,0,0,1,1,,4,5,E I 94,,1426109,30.986,32.724,0,,0.8,7.5 +10201,-1,1.803714,0,3,0,1,1,,4,5,W I 94,,1426110,30.936,32.739,0,,0.8,7.5 +10323,0,0.463493,1,1,0,2,4,,4,5,Prospect,St,1428106,2.532,2.995,0,11.123832,4.5,4.5 +10332,1,0.281905,2,0,0,1,1,ROF,4,5,W I 94/Wiard,RAMP,1428503,0,0.282,0,,2.24,5 +40556,-1,0.058464,0,2,0,2,4,,4,3,Tienken,Rd,5499957,0.059,0.118,0,1.40314,4.5,4.5 +10524,1,0.265591,2,0,0,1,1,RON,4,5,Wiard/E I 94,RAMP,1431008,0,0.266,0,,1.09,4 +40555,1,0.030438,1,0,0,2,5,,4,3,Livernois,Rd,625408,10.17,10.201,0,0.730523,5.8,4.5 +11155,1,0.16944,1,0,0,1,3,RSF,4,5,Tyler/N Wiard,Ramp,1452405,0,0.169,0,,3.7,5 +11205,0,1.013095,1,1,0,2,3,,5,5,Ford,Rd,1431908,2.511,3.524,0,24.314283,1.7,4 +11243,0,1.014472,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,5.175,6.189,0,24.347337,5.55,5 +11318,0,0.490998,1,1,0,2,5,,4,5,Clark,Rd,1435902,3.492,3.983,0,11.783944,5.8,4.5 +11378,0,1.004989,1,1,0,2,5,,4,5,Leforge,Rd,1435809,0.412,1.417,0,24.119734,5.8,4.5 +11428,0,0.50003,1,1,0,2,5,,4,5,Holmes,Rd,1435108,2.31,2.81,0,12.000717,5.8,4.5 +14978,0,0.523256,1,1,0,2,4,,4,2,Beck,Rd,1595603,0,0.523,0,12.558136,4.5,4.5 +15876,0,0.729231,1,1,0,2,4,,4,2,Denton,Rd,1599103,1.348,2.077,0,17.501533,4.5,4.5 +21587,0,0.406045,1,1,0,2,7,,4,5,Harris,Rd,4603151,0,0.406,0,9.745092,6.55,4.5 +25812,0,0.554031,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.296751,0.15,4 +25815,0,0.765296,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.367108,0.15,4 +25816,0,0.470522,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.292523,0.15,4 +25817,0,0.660643,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.85542,0.15,4 +25822,0,0.475104,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.402485,0.15,4 +25825,0,0.532974,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.79137,0.15,4 +26749,0,0.49146,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.795032,0.15,4 +26755,0,0.684239,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.421734,0.15,4 +26757,0,0.318492,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.643811,0.15,4 +30001,0,1.577111,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.850661,0.15,4 +30035,0,0.415317,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.967618,0.15,4 +30928,0,0.586732,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.081576,0.15,4 +30929,0,0.493829,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.851891,0.15,4 +30933,0,0.501961,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.04707,0.15,4 +31417,0,0.191871,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.604914,0.15,4 +9474,0,0.273977,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.248,0.522,0,6.575446,4.5,4.5 +9497,0,0.173774,1,1,1,2,4,,4,5,Grove,St,1428105,1.837,2.01,0,4.170586,4.5,4.5 +9539,0,0.310352,1,1,0,2,4,,3,5,Grove,St,1428105,0.462,0.772,0,7.448441,6,4.5 +9657,0,0.214948,1,1,0,2,4,,3,5,Prospect,St,1428106,0.281,0.495,0,5.158742,6,4.5 +9678,1,1.495213,3,0,0,1,1,,3,5,E I 94,,1426109,29.491,30.986,0,,0.58,7 +9725,0,0.534029,2,2,1,2,3,,4,5,Michigan,Ave,1427804,2.604,3.138,0,12.816706,3.7,5 +9824,1,0.397875,2,0,0,2,4,DIV,4,5,Ecorse,Rd,1428810,0,0.398,0,9.548994,4.5,4.5 +9825,0,0.430021,1,1,0,2,7,,4,5,Harris,Rd,1428806,0.947,1.377,0,10.320494,6.55,4.5 +10029,0,0.590139,1,1,0,2,4,,4,5,Forest,Ave,1429906,1.183,1.772,0,14.163332,4.5,4.5 +10040,-1,0.325232,0,2,0,2,4,DIV,4,5,Ecorse,Rd,1428901,0,0.325,0,7.805579,4.5,4.5 +10077,0,0.470013,1,1,0,2,4,,4,5,Cross,St,1428902,3.526,3.996,0,11.28032,4.5,4.5 +10203,-1,1.333322,0,3,0,1,1,,3,5,W I 94,,1426110,29.603,30.936,0,,0.58,7 +10422,0,0.247278,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.697,0.944,0,5.934679,4.5,4.5 +10686,1,0.334818,2,0,0,2,3,DIV,4,5,US 12,,1430402,0.483,0.818,0,8.035636,3.7,5 +10696,-1,0.26239,0,2,0,2,3,DIV,4,5,US 12,,1430401,0.463,0.725,0,6.29735,3.7,5 +10965,0,0.828984,1,1,0,2,5,,4,5,Huron River,Dr,1438110,0.778,1.607,0,19.895608,5.8,4.5 +11364,0,0.166183,1,1,0,2,5,,4,5,Clark,Rd,1435902,1.855,2.022,0,3.988383,5.8,4.5 +11490,0,0.429536,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0.193,0.622,0,10.308858,6.55,4.5 +11502,0,0.165205,1,1,0,2,5,,4,5,Holmes,Rd,1435108,0.771,0.936,0,3.964925,5.8,4.5 +21343,0,0.413245,1,1,1,2,4,,4,5,Ford,Blvd,4603131,0,0.413,0,9.917888,4.5,4.5 +21690,1,0.164896,3,0,0,2,3,,3,5,Huron,St,4603870,0.857,1.021,0,3.957497,5,5 +21808,-1,0.162978,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.823,0.986,0,3.911473,5,5 +25504,0,0.223434,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.362405,0.15,4 +25515,0,0.137912,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.3099,0.15,4 +25518,0,0.162727,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.905447,0.15,4 +25519,0,0.855388,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.529307,0.15,4 +25520,0,0.29825,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.158005,0.15,4 +25823,0,0.398241,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.557775,0.15,4 +26764,0,0.413094,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.914253,0.15,4 +26772,0,0.2904,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.969607,0.15,4 +26773,0,0.399015,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.576367,0.15,4 +29938,0,0.309981,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.439539,0.15,4 +9965,0,0.201225,2,2,0,2,4,,3,5,Spring,St,1428508,0.79,0.992,0,4.829401,6,4.5 +10878,0,0.730629,1,1,0,2,5,,4,5,Huron River,Dr,1438110,0,0.73,0,17.535088,5.8,4.5 +11283,0,0.522701,2,2,1,2,4,,4,5,Huron,St,1439102,9.427,9.95,0,12.544823,4.5,4.5 +26271,0,0.850413,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.409921,0.15,4 +26762,0,0.839559,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.149412,0.15,4 +40103,1,0.03811,1,0,0,2,4,,4,5,Stony Creek,Rd,1431208,11.369,11.407,0,0.914647,4.5,4.5 +9469,1,0.355903,3,0,0,1,1,,3,5,E I 94,,1426109,29.135,29.491,0,,0.58,7 +9874,1,0.430178,1,0,0,1,1,RON,4,5,Whittaker/E I 94,RAMP,1429210,0,0.43,0,,1.09,4 +9966,0,0.095563,2,2,0,2,4,,3,5,Harriet,St,1428508,0.514,0.61,0,2.293507,6,4.5 +10038,1,0.391322,1,0,0,1,1,ROF,3,5,W I 94/Hamilton,RAMP,1428505,0,0.391,0,,2.24,5 +10070,1,0.184889,1,0,0,1,1,RON,3,5,Huron/W I 94,RAMP,1428504,0,0.185,0,,1.09,4 +10088,1,0.473413,1,0,0,1,1,RON,3,5,Hamilton/W I 94,RAMP,1428502,0,0.473,0,,1.09,4 +10206,-1,0.372834,0,3,0,1,1,,3,5,W I 94,,1426110,29.23,29.603,0,,0.58,7 +10211,-1,0.398986,0,3,0,1,1,,3,5,W I 94,,1426110,28.831,29.23,0,,0.58,7 +21366,1,0.203598,2,0,0,2,3,,4,5,Huron,St,4603870,0.096,0.3,0,4.886346,3.7,5 +21746,-1,0.170839,0,3,0,2,3,,3,5,Huron,St,4603871,0.185,0.356,0,4.100137,5,5 +21865,1,0.155273,3,0,0,2,3,,3,5,Huron,St,4603870,0.37,0.525,0,3.726557,5,5 +25502,0,0.114696,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.752712,0.15,4 +26769,0,0.384929,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.238294,0.15,4 +26782,0,0.226826,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.443825,0.15,4 +9473,1,0.29412,3,0,0,1,1,,3,5,E I 94,,1426109,28.841,29.135,0,,0.58,7 +10021,1,0.310444,1,0,0,1,1,ROF,4,5,E I 94/Whittaker,RAMP,1429303,0,0.31,0,,2.24,5 +21266,-1,0.096746,0,2,0,2,4,,4,5,Huron,St,4603871,0,0.097,0,2.321899,4.5,4.5 +21809,1,0.065996,2,0,0,2,4,,4,5,Huron,St,4603870,0,0.066,0,1.583914,4.5,4.5 +11529,0,0.222504,2,2,1,2,4,,4,5,Huron,St,1439102,9.95,10.172,0,5.340095,4.5,4.5 +9653,1,0.209275,1,0,0,1,1,RON,4,5,Hamilton/E I 94,RAMP,1429302,0,0.209,0,,1.09,4 +22025,-1,0.088382,0,2,0,2,3,,4,5,Huron,St,4603871,0.097,0.185,0,2.121173,3.7,5 +21585,1,0.030351,2,0,0,2,3,,4,5,Huron,St,4603870,0.066,0.096,0,0.728425,3.7,5 +9807,1,0.006647,1,0,0,1,3,RSF,4,5,E I 94/Whittaker,RAMP,1429303,0.31,0.317,0,,5,5 +10204,0,0.037701,1,1,0,2,5,,3,5,Harriet,St,1428508,0.3,0.338,0,0.904823,8,4.5 +22076,-1,0.264771,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.558,0.823,0,6.354504,5,5 +25503,0,0.140359,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.368625,0.15,4 +25505,0,0.204778,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.914664,0.15,4 +26274,0,0.156479,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.755504,0.15,4 +9972,0,0.063636,1,1,0,2,5,,3,5,Harriet,St,1428508,0.236,0.3,0,1.52726,8,4.5 +9967,0,0.100132,1,1,0,2,5,,3,5,Harriet,St,1428508,0.338,0.438,0,2.403165,8,4.5 +21318,-1,0.138566,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.42,0.558,0,3.32559,5,5 +10270,1,0.044181,1,0,0,2,3,RSF,3,5,W I 94/Hamilton,RAMP,1428505,0.391,0.435,0,1.060355,5,5 +21533,-1,0.06386,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.356,0.42,0,1.532641,5,5 +22131,1,0.070159,2,0,0,2,3,,3,5,Huron,St,4603870,0.3,0.37,0,1.683826,5,5 +10202,0,0.076847,2,2,0,2,4,,3,5,Harriet,St,1428508,0.438,0.514,0,1.844329,6,4.5 +10199,0,0.180428,2,2,0,2,4,,3,5,Spring,St,1428508,0.61,0.79,0,4.330278,6,4.5 +40093,-1,0.015357,0,1,0,2,7,,2,5,Observatory,St,4606155,0.028,0.043,0,0.368557,8.5,4.5 +21941,1,0.269374,3,0,0,2,3,,3,5,Huron,St,4603870,0.587,0.857,0,6.464976,5,5 +25500,0,0.193069,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.633652,0.15,4 +25523,0,0.190763,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.578312,0.15,4 +25524,0,0.178305,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.279309,0.15,4 +40094,1,0.015001,1,0,0,2,7,,2,5,Ann,St,4604073,0.499,0.514,0,0.360029,8.5,4.5 +37293,-1,0.028703,0,1,0,2,4,,4,5,Geddes,Rd,4606144,0.019,0.048,0,0.688862,4.5,4.5 +21426,1,0.062137,3,0,0,2,3,,3,5,Huron,St,4603870,0.525,0.587,0,1.491298,5,5 +25501,0,0.126331,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.03194,0.15,4 +25499,0,0.155781,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.738745,0.15,4 +26761,0,0.536938,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.886507,0.15,4 +26270,0,0.345904,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.301702,0.15,4 +10740,0,0.04807,1,1,0,2,5,,4,5,Huron River,Dr,1438110,0.73,0.778,0,1.153687,5.8,4.5 +9520,0,0.333178,1,1,1,2,4,,3,5,Grove,St,1428105,1.001,1.334,0,7.996284,6,4.5 +10055,0,0.246891,2,2,0,2,4,,3,5,Maus,Ave,1428508,1.253,1.5,0,5.925376,6,4.5 +26770,0,0.229547,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.50913,0.15,4 +9776,1,0.151217,2,0,0,2,4,,3,5,Grove,St,1428105,0.772,0.923,0,3.629203,6,4.5 +9950,0,0.13773,1,1,0,2,4,,3,5,Prospect,St,1428106,0.071,0.209,0,3.305525,6,4.5 +10092,0,0.197991,2,2,0,2,4,,3,5,Spring,St,1428508,0.992,1.189,0,4.751781,6,4.5 +25525,0,0.167435,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.018439,0.15,4 +26766,0,0.195804,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.699299,0.15,4 +26767,0,0.223853,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.372465,0.15,4 +9470,1,0.071115,2,0,0,2,4,,3,5,Prospect,St,1428106,0,0.071,0,1.706763,6,4.5 +9536,1,0.052929,2,0,0,2,4,,3,5,Grove,St,1428105,0.923,0.976,0,1.270285,6,4.5 +21260,1,0.029589,1,0,0,2,4,,3,5,Prospect/Grove Cutoff,,4604777,0,0.03,0,0.710136,6,4.5 +30077,0,0.082082,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.969972,0.15,4 +9765,0,0.024915,1,1,1,2,4,,3,5,Grove,St,1428105,0.976,1.001,0,0.597962,6,4.5 +9764,0,0.07172,1,1,0,2,4,,3,5,Prospect,St,1428106,0.209,0.281,0,1.721288,6,4.5 +9863,0,0.063639,2,2,0,2,4,,3,5,Factory,St,1428508,1.189,1.253,0,1.527344,6,4.5 +9750,0,0.502563,1,1,1,2,4,,4,5,Grove,St,1428105,1.334,1.837,0,12.061513,4.5,4.5 +10252,0,0.174465,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.522,0.697,0,4.187156,4.5,4.5 +9834,0,0.078606,2,2,0,2,4,,4,5,Maus,Ave,1428707,0,0.079,0,1.886545,4.5,4.5 +9540,0,0.518572,1,1,0,2,5,,3,5,River,St,1428102,0.91,1.428,0,12.445717,8,4.5 +9585,0,0.139295,1,1,0,2,4,,4,5,Prospect,St,1428106,1.466,1.605,0,3.343086,4.5,4.5 +9763,0,0.100539,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.717,0.817,0,2.412927,6,4.5 +9923,0,0.12202,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.053,2.174,0,2.928482,5,5 +10013,0,0.121992,1,1,0,2,4,,3,5,Cross,St,1428902,2.685,2.807,0,2.927805,6,4.5 +11370,0,0.410049,1,1,0,2,5,,3,5,Clark,Rd,1435902,0.763,1.172,0,9.841182,8,4.5 +21624,0,0.050562,2,2,0,2,4,,3,5,Huron,St,4603250,2.057,2.108,0,1.213499,6,4.5 +25824,0,0.517076,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.409814,0.15,4 +26777,0,0.36805,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.833212,0.15,4 +26779,0,0.441126,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.587012,0.15,4 +26780,0,0.190254,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.566106,0.15,4 +30040,0,0.313533,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.524799,0.15,4 +30067,0,0.169197,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.060736,0.15,4 +9554,0,0.124722,1,1,0,2,5,,3,5,River,St,1428102,0.4,0.525,0,2.993336,8,4.5 +9577,-1,0.12931,0,3,0,2,3,,2,5,Cross,St,1428902,2.304,2.433,0,3.103444,6,5 +9605,-1,0.069858,0,2,0,2,4,,3,5,Huron,St,1428010,0,0.07,0,1.6766,6,4.5 +9632,1,0.112228,2,0,0,2,4,,2,5,Hamilton,St,1428006,0.073,0.185,0,2.693465,8,4.5 +9740,0,0.150889,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.669,1.82,0,3.621337,6,5 +9840,-1,0.172112,0,2,0,2,4,,2,5,Huron,St,1428010,0.249,0.421,0,4.130692,8,4.5 +9859,0,0.075966,1,1,0,2,4,,2,5,Washtenaw,Ave,1427706,6.998,7.074,0,1.823174,8,4.5 +9861,0,0.058046,1,1,0,2,5,,2,5,Ballard,St,4605998,0.326,0.384,0,1.393112,8.5,4.5 +9949,0,0.105032,1,1,1,2,4,,3,5,College,Pl,1429907,0.207,0.312,0,2.520758,6,4.5 +10289,0,0.062869,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.326,0.389,0,1.508859,8,4.5 +26783,0,0.038672,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.92813,0.15,4 +26793,0,0.129753,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.114074,0.15,4 +26794,0,0.099555,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.38932,0.15,4 +26795,0,0.143526,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.444617,0.15,4 +26798,0,0.157703,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.784864,0.15,4 +26802,0,0.113647,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.72754,0.15,4 +30068,0,0.123644,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.967457,0.15,4 +30070,0,0.199334,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.784021,0.15,4 +9624,1,0.081731,3,0,0,2,3,,2,5,Hamilton,St,1428006,0.432,0.514,0,1.96155,6,5 +9821,-1,0.144066,0,3,0,2,3,,2,5,Cross,St,1428902,1.999,2.143,0,3.457595,6,5 +9855,0,0.181147,1,1,0,2,5,,2,5,Adams,St,1428008,0.515,0.696,0,4.347518,8.5,4.5 +9864,0,0.080893,1,1,0,2,5,,3,5,Ballard,St,4605998,0,0.081,0,1.941433,8,4.5 +9865,0,0.216443,1,1,0,2,5,,3,5,Congress,St,1428004,0.659,0.875,0,5.194637,8,4.5 +9933,0,0.208007,2,2,0,2,3,,2,5,Michigan,Ave,1427804,1.312,1.52,0,4.992159,6,5 +10095,1,0.152749,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.686,6.838,0,3.665982,6,5 +26276,0,0.13437,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.224873,0.15,4 +26285,0,0.135699,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.256773,0.15,4 +26690,0,0.22189,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.325368,0.15,4 +26787,0,0.160992,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.863816,0.15,4 +26286,0,0.095447,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.290733,0.15,4 +30080,0,0.222665,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.343955,0.15,4 +9747,0,0.052669,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.26,1.312,0,1.264044,5,5 +9936,0,0.023542,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.236,1.26,0,0.565013,5,5 +26289,0,0.049247,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.181916,0.15,4 +26291,0,0.057068,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.369633,0.15,4 +9742,0,0.074435,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.52,1.595,0,1.786435,6,5 +21584,-1,0.084895,0,3,0,2,3,,2,5,Hamilton,St,4603871,0.986,1.071,0,2.037485,6,5 +26278,0,0.093665,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.247951,0.15,4 +26803,0,0.113147,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.715533,0.15,4 +37027,-1,0.262279,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,4603898,0,0.262,0,6.294687,5,5 +9932,0,0.074368,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.595,1.669,0,1.784824,6,5 +9580,-1,0.084797,0,3,0,2,3,,2,5,Cross,St,1428902,2.143,2.228,0,2.035124,6,5 +9623,0,0.075524,1,1,0,2,5,,2,5,Adams,St,1428008,0.696,0.771,0,1.812579,8.5,4.5 +9628,1,0.074542,2,0,0,2,3,,2,5,Hamilton,St,1428006,0.258,0.332,0,1.789013,6,5 +9862,0,0.074967,1,1,0,2,5,,2,5,Ballard,St,4605998,0.183,0.258,0,1.799215,8.5,4.5 +9866,1,0.083619,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.838,6.922,0,2.00685,6,5 +30071,0,0.139459,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.347008,0.15,4 +9637,0,0.102295,1,1,0,2,5,,3,5,Ballard,St,4605998,0.081,0.183,0,2.455085,8,4.5 +9635,0,0.068057,1,1,0,2,5,,2,5,Ballard,St,4605998,0.258,0.326,0,1.63337,8.5,4.5 +9856,1,0.100219,3,0,0,2,3,,2,5,Hamilton,St,1428006,0.332,0.432,0,2.405253,6,5 +10087,1,0.076362,2,0,0,2,4,,2,5,Washtenaw,Ave,1427706,6.922,6.998,0,1.832696,8,4.5 +9820,-1,0.075651,0,3,0,2,3,,2,5,Cross,St,1428902,2.228,2.304,0,1.815615,6,5 +9844,0,0.073093,1,1,0,2,5,,2,5,Adams,St,1428008,0.771,0.844,0,1.754229,8.5,4.5 +9858,1,0.072682,2,0,0,2,3,,2,5,Hamilton,St,1428006,0.185,0.258,0,1.744362,6,5 +26788,0,0.038595,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.926277,0.15,4 +26789,0,0.036316,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.871596,0.15,4 +10385,0,0.159901,1,1,1,2,4,,3,5,Forest,Ave,1429906,0,0.16,0,3.837628,6,4.5 +11420,-1,0.291183,0,2,0,2,4,,3,5,Lowell,St,1435509,0.137,0.428,0,6.988401,6,4.5 +21942,-1,0.290855,0,2,0,2,4,,3,5,Huron,St,4603250,2.14,2.431,0,6.980531,6,4.5 +26796,0,0.198217,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.757208,0.15,4 +26797,0,0.078312,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.879488,0.15,4 +30066,0,0.300995,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,7.223891,0.15,4 +21427,0,0.032609,2,2,0,2,4,,3,5,Huron,St,4603250,2.108,2.14,0,0.782627,6,4.5 +9860,1,0.072769,2,0,0,2,4,,2,5,Hamilton,St,1428006,0,0.073,0,1.746446,8,4.5 +9883,0,0.053012,2,1,0,2,4,,2,5,Forest,Ave,1429906,0.195,0.248,0,1.272277,8,4.5 +10121,0,0.035379,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.16,0.195,0,0.849101,8,4.5 +26791,0,0.116621,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.798901,0.15,4 +30065,0,0.13261,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.182644,0.15,4 +9634,0,0.100635,1,1,0,2,5,,2,5,Ballard,St,4605998,0.384,0.485,0,2.415249,8.5,4.5 +11423,-1,0.136819,0,2,0,2,4,,3,5,Lowell,St,1435509,0,0.137,0,3.283664,6,4.5 +26792,0,0.045601,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.094414,0.15,4 +9512,0,0.077441,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.248,0.326,0,1.858575,8,4.5 +9535,0,0.075404,1,1,0,2,4,,2,5,Cross,St,1428902,2.508,2.583,0,1.809689,8,4.5 +9586,0,0.11851,1,1,0,2,5,,3,5,River,St,1428102,0.061,0.18,0,2.844244,8,4.5 +9738,0,0.175264,2,2,1,2,3,,3,5,Michigan,Ave,1427804,1.878,2.053,0,4.206344,5,5 +9826,-1,0.084001,0,3,0,2,3,,2,5,Huron,St,1428010,0.671,0.755,0,2.016025,6,5 +26804,0,0.149354,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.584493,0.15,4 +21476,1,0.08285,3,0,0,2,3,,2,5,Huron,St,4603870,1.021,1.104,0,1.9884,6,5 +26784,0,0.140281,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.36675,0.15,4 +9929,0,0.057496,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.82,1.878,0,1.379908,6,5 +9837,-1,0.077234,0,3,0,2,3,,2,5,Huron,St,1428010,0.497,0.574,0,1.853616,6,5 +10086,0,0.073439,1,1,0,2,4,,2,5,Washtenaw,Ave,1427706,7.074,7.147,0,1.76254,8,4.5 +25532,0,0.188021,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.512512,0.15,4 +30069,0,0.12303,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.952726,0.15,4 +26785,0,0.063659,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.527806,0.15,4 +9592,-1,0.097321,0,3,0,2,3,,2,5,Huron,St,1428010,0.574,0.671,0,2.335694,6,5 +25530,0,0.095222,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.28532,0.15,4 +9594,-1,0.075797,0,3,0,2,3,,2,5,Huron,St,1428010,0.421,0.497,0,1.819126,6,5 +9775,0,0.076169,1,1,0,2,4,,2,5,Cross,St,1428902,2.433,2.508,0,1.828047,8,4.5 +9746,0,0.066966,1,1,0,2,4,,3,5,Cross,St,1428902,2.583,2.65,0,1.607192,6,4.5 +9793,0,0.22035,1,1,0,2,5,,3,5,River,St,1428102,0.18,0.4,0,5.288392,8,4.5 +25531,0,0.162544,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.901051,0.15,4 +26774,0,0.067004,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.608101,0.15,4 +9491,0,0.035127,1,1,0,2,4,,3,5,Cross,St,1428902,2.65,2.685,0,0.843044,6,4.5 +9778,0,0.260242,1,1,0,2,5,,3,5,River,St,1428102,0.65,0.91,0,6.245802,8,4.5 +9812,0,0.123708,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.514,0.637,0,2.969001,6,4.5 +9843,-1,0.116148,0,2,0,2,4,,3,5,Huron,St,1428010,0.07,0.186,0,2.787551,6,4.5 +26800,0,0.14261,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.422636,0.15,4 +10025,0,0.125191,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.389,0.514,0,3.004579,8,4.5 +9600,-1,0.063134,0,2,0,2,4,,2,5,Huron,St,1428010,0.186,0.249,0,1.515212,8,4.5 +9546,0,0.106604,1,1,0,2,5,,3,5,River,St,1428102,0.543,0.65,0,2.558491,8,4.5 +9568,0,0.079514,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.637,0.717,0,1.908326,6,4.5 +26799,0,0.117307,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.815365,0.15,4 +9782,0,0.018567,1,1,0,2,5,,3,5,River,St,1428102,0.525,0.543,0,0.445603,8,4.5 +11373,0,0.362632,1,1,0,2,5,,3,5,Clark,Rd,1435902,0.4,0.763,0,8.703173,8,4.5 +26760,0,0.527565,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.661564,0.15,4 +26781,0,0.220501,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.292022,0.15,4 +10706,0,0.165087,1,1,0,2,5,,3,5,Leforge,Rd,1435809,0.127,0.292,0,3.962082,8,4.5 +26778,0,0.291426,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.994235,0.15,4 +11401,0,0.093287,2,2,0,2,5,,3,5,Leforge,Rd,1435809,0.034,0.127,0,2.238887,8,4.5 +11414,0,0.034018,2,2,0,2,5,,3,5,Leforge,Rd,1435809,0,0.034,0,0.816443,8,4.5 +11381,0,0.112682,2,2,0,2,5,,3,5,Leforge,Rd,1435809,0.3,0.412,0,2.704367,8,4.5 +11389,0,0.00719,2,2,0,2,5,,3,5,Leforge,Rd,1435809,0.292,0.3,0,0.172552,8,4.5 +9480,0,0.219799,2,2,1,2,4,,3,5,Ecorse,Rd,1428108,0,0.22,0,5.275173,6,4.5 +9669,0,0.043509,1,1,0,2,4,,3,5,Cross,St,1428902,3.151,3.195,0,1.044218,6,4.5 +9918,0,0.11407,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.49,2.604,0,2.737674,5,5 +10107,0,0.264455,1,1,0,2,4,,4,5,Cross,St,1428902,3.195,3.459,0,6.34692,4.5,4.5 +10414,0,0.141159,1,1,0,2,5,,3,5,Miles,St,1428110,0,0.141,0,3.387824,8,4.5 +10425,0,0.143597,1,1,0,2,4,,3,5,Prospect,St,1428106,0.954,1.098,0,3.446337,6,4.5 +11512,0,0.195138,1,1,0,2,5,,3,5,Holmes,Rd,1435108,0.453,0.648,0,4.683314,8,4.5 +26805,0,0.157977,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.791446,0.15,4 +26806,0,0.192466,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.619179,0.15,4 +26812,0,0.237687,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.704486,0.15,4 +9656,0,0.121459,1,1,0,2,4,,3,5,Prospect,St,1428106,0.614,0.735,0,2.915023,6,4.5 +9803,0,0.179652,1,1,0,2,4,,3,5,Cross,St,1428902,2.807,2.987,0,4.311637,6,4.5 +9919,0,0.093247,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.289,2.382,0,2.237917,5,5 +25516,0,0.162696,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.904711,0.15,4 +29935,0,0.186378,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.473063,0.15,4 +9733,0,0.114535,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.174,2.289,0,2.748841,5,5 +9777,0,0.122173,1,1,0,2,4,,3,5,Grove,St,1428105,0.34,0.462,0,2.932141,6,4.5 +25497,0,0.153111,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.674665,0.15,4 +25498,0,0.186838,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.484113,0.15,4 +25514,0,0.179945,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.318681,0.15,4 +9726,0,0.108095,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.382,2.49,0,2.594287,5,5 +10443,0,0.11837,1,1,0,2,4,,3,5,Prospect,St,1428106,0.495,0.614,0,2.840873,6,4.5 +24592,0,0.146076,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.505827,0.15,4 +30042,0,0.056619,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.358848,0.15,4 +9886,0,0.164584,1,1,0,2,4,,3,5,Cross,St,1428902,2.987,3.151,0,3.950017,6,4.5 +10146,0,0.225725,1,1,0,2,5,,3,5,Miles,St,1428110,0.141,0.367,0,5.41741,8,4.5 +10442,0,0.120613,1,1,0,2,4,,3,5,Prospect,St,1428106,0.735,0.856,0,2.894704,6,4.5 +26808,0,0.101663,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.439907,0.15,4 +9648,0,0.098392,1,1,0,2,4,,3,5,Prospect,St,1428106,0.856,0.954,0,2.3614,6,4.5 +26809,0,0.061372,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.472921,0.15,4 +9519,0,0.199887,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.817,1.017,0,4.797294,6,4.5 +10406,0,0.256259,1,1,0,2,4,,3,5,Prospect,St,1428106,1.21,1.466,0,6.15022,6,4.5 +25526,0,0.308837,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.412097,0.15,4 +25527,0,0.274934,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.598408,0.15,4 +30041,0,0.204367,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.904806,0.15,4 +25528,0,0.028352,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,0.680453,0.15,4 +9629,0,0.112038,1,1,0,2,4,,3,5,Prospect,St,1428106,1.098,1.21,0,2.688919,6,4.5 +10293,0,0.165466,1,1,0,2,4,,3,5,Forest,Ave,1429906,1.017,1.183,0,3.971176,6,4.5 +26811,0,0.167655,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.023726,0.15,4 +26810,0,0.032414,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,0.777928,0.15,4 +11515,0,0.155358,1,1,0,2,5,,3,5,Holmes,Rd,1435108,0.297,0.453,0,3.72859,8,4.5 +10255,0,0.028616,2,2,1,2,4,,3,5,Ecorse,Rd,1428108,0.22,0.248,0,0.686779,6,4.5 +11508,0,0.123376,1,1,0,2,5,,4,5,Holmes,Rd,1435108,0.648,0.771,0,2.961015,5.8,4.5 +9871,0,0.066468,1,1,0,2,4,,4,5,Cross,St,1428902,3.459,3.526,0,1.595222,4.5,4.5 +9547,0,0.550198,1,1,0,2,4,,4,5,Prospect,St,1428106,1.982,2.532,0,13.20476,4.5,4.5 +10790,0,0.192658,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0,0.193,0,4.623798,6.55,4.5 +11366,0,0.460086,1,1,0,2,5,,4,5,Clark,Rd,1435902,1.396,1.855,0,11.042064,5.8,4.5 +26759,0,0.423503,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.164073,0.15,4 +10363,0,0.376653,1,1,0,2,4,,4,5,Prospect,St,1428106,1.605,1.982,0,9.039677,4.5,4.5 +11369,0,0.223213,1,1,0,2,5,,4,5,Clark,Rd,1435902,1.172,1.396,0,5.357106,5.8,4.5 +26776,0,0.127889,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.069329,0.15,4 +30002,0,0.41224,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.893751,0.15,4 +9488,0,0.505327,1,1,1,2,4,,4,5,Grove,St,1428105,2.321,2.826,0,12.127839,4.5,4.5 +9744,0,0.310591,1,1,1,2,4,,4,5,Grove,St,1428105,2.01,2.321,0,7.454185,4.5,4.5 +40916,1,0.141675,2,0,0,2,4,,4,4,William P Rosso,Hwy,0,0,0,0,3.400191,4.5,4.5 +10050,0,0.406426,1,1,0,2,4,,4,5,Harris,Rd,1428806,0,0.406,0,9.754225,4.5,4.5 +10667,1,0.438781,2,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0,0.439,0,10.530752,3.7,5 +10677,-1,0.731786,0,2,0,2,3,DIV,4,5,Wiard,Rd,1430407,0,0.732,0,17.562876,3.7,5 +40915,-1,0.10677,0,2,0,2,4,,4,4,Jefferson,Ave,0,0,0,0,2.562473,4.5,4.5 +11556,0,0.014191,1,1,0,2,5,,4,5,Dorset,Ave,1433910,0.183,0.197,0,0.34058,5.8,4.5 +25506,0,0.604405,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.505713,0.15,4 +25811,0,0.104029,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.496695,0.15,4 +26266,0,0.283243,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.797843,0.15,4 +29936,0,0.734883,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.637184,0.15,4 +10885,0,0.370204,1,1,0,2,5,,4,5,Huron River,Dr,1438110,1.607,1.977,0,8.884905,5.8,4.5 +11546,0,0.251354,1,1,0,2,5,,4,5,Huron River,Dr,1438110,1.977,2.228,0,6.032507,5.8,4.5 +26267,0,0.216573,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.197748,0.15,4 +9829,0,0.198605,1,1,0,2,4,,4,5,Harris,Rd,1428806,0.406,0.605,0,4.766526,4.5,4.5 +10154,0,0.24428,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.944,1.188,0,5.862721,4.5,4.5 +26763,0,0.434761,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.434253,0.15,4 +26765,0,0.281149,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.747582,0.15,4 +29937,0,0.176374,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.232975,0.15,4 +9565,-1,0.349006,0,2,0,1,2,,4,5,US 12,,1430401,0,0.349,0,,0.8,7.5 +10045,0,0.342052,1,1,0,2,4,,4,5,Harris,Rd,1428806,0.605,0.947,0,8.209255,4.5,4.5 +10152,0,0.112497,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,1.351,1.464,0,2.699925,4.5,4.5 +10687,1,0.094503,2,0,0,2,3,DIV,4,5,US 12,,1430402,0.389,0.483,0,2.268063,3.7,5 +10688,1,0.388751,2,0,0,1,2,,4,5,US 12,,1430402,0,0.389,0,,0.8,7.5 +25513,0,0.095508,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.292183,0.15,4 +10420,0,0.163509,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,1.188,1.351,0,3.924211,4.5,4.5 +11554,0,0.135046,1,1,0,2,5,,4,5,Laverne,St,1433910,0.255,0.39,0,3.241102,5.8,4.5 +10698,-1,0.114158,0,2,0,2,3,DIV,4,5,US 12,,1430401,0.349,0.463,0,2.739804,3.7,5 +11555,0,0.058003,1,1,0,2,5,,4,5,Dorset,Ave,1433910,0.197,0.255,0,1.39208,5.8,4.5 +9479,0,0.25225,2,2,1,2,4,,4,5,Grove,St,1428105,3.287,3.539,0,6.054007,4.5,4.5 +26754,0,0.209737,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.033679,0.15,4 +9739,0,0.460761,1,1,1,2,4,,4,5,Grove,St,1428105,2.826,3.287,0,11.058254,4.5,4.5 +10665,1,0.140939,3,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0.684,0.825,0,3.382531,3.7,5 +10676,-1,0.25709,0,2,0,2,3,DIV,4,5,Wiard,Rd,1430407,0.732,0.989,0,6.170164,3.7,5 +11576,0,0.309463,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.241,0.551,0,7.427118,5.8,4.5 +25511,0,0.278507,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.684169,0.15,4 +26813,0,0.339579,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.149908,0.15,4 +30034,0,0.341202,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.18885,0.15,4 +11558,0,0.183158,1,1,0,2,5,,4,5,Dorset,Ave,1433910,0,0.183,0,4.395782,5.8,4.5 +25512,0,0.337073,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.089753,0.15,4 +11582,0,0.117444,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.124,0.241,0,2.818657,5.8,4.5 +10666,1,0.245332,2,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0.439,0.684,0,5.887969,3.7,5 +11485,1,0.166533,1,0,0,2,3,,4,5,S Wiard/N Wiard,TURN,1452402,0,0.167,0,3.996787,3.7,5 +21740,-1,0.128889,0,1,0,2,3,,4,5,N Wiard / S Wiard,TURN,4604859,0,0.129,0,3.093343,3.7,5 +11572,0,0.120904,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.551,0.671,0,2.901708,5.8,4.5 +10675,-1,0.129857,0,2,0,2,3,DIV,4,5,Wiard,Rd,1430407,0.989,1.118,0,3.116567,3.7,5 +11564,0,0.057016,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.671,0.728,0,1.368373,5.8,4.5 +10664,1,0.174046,2,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0.825,0.999,0,4.177109,3.7,5 +9723,0,0.441067,2,2,1,2,3,,4,5,Michigan,Ave,1427804,3.753,4.194,0,10.585598,3.7,5 +11326,0,0.269203,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.659,2.929,0,6.460878,5.8,4.5 +11491,0,0.069447,1,1,0,2,7,,4,5,Wiard,Rd,1440201,0,0.069,0,1.666735,6.55,4.5 +11497,0,0.317728,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.444,1.761,0,7.62546,5.8,4.5 +21403,0,0.293375,1,1,0,2,5,,4,5,Ford,Blvd,4603131,1.278,1.571,0,7.041002,5.8,4.5 +25297,0,0.332786,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.986873,0.15,4 +25298,0,0.28759,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.902163,0.15,4 +26815,0,0.288474,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.92338,0.15,4 +26817,0,0.405829,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.739908,0.15,4 +9231,0,0.137139,1,1,0,2,4,,4,5,Forest,Ave,1429906,2.026,2.164,0,3.291346,4.5,4.5 +9724,0,0.345189,2,2,1,2,3,,4,5,Michigan,Ave,1427804,3.408,3.753,0,8.284529,3.7,5 +10403,0,0.055994,1,1,0,2,4,,4,5,Harris,Rd,1428205,0,0.056,0,1.343858,4.5,4.5 +11499,0,0.063249,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.306,1.369,0,1.517972,5.8,4.5 +22106,0,0.3409,1,1,1,2,4,,4,5,Ford,Blvd,4603131,0.413,0.754,0,8.181592,4.5,4.5 +30036,0,0.368472,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.84332,0.15,4 +9916,0,0.269612,2,2,1,2,3,,4,5,Michigan,Ave,1427804,3.138,3.408,0,6.470693,3.7,5 +25517,0,0.16187,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.884879,0.15,4 +9815,0,0.254053,1,1,0,2,4,,4,5,Forest,Ave,1429906,1.772,2.026,0,6.097272,4.5,4.5 +10376,0,0.258073,1,1,0,2,5,,4,5,Harris,Rd,1428205,0.307,0.565,0,6.193741,5.8,4.5 +11500,0,0.369637,1,1,0,2,5,,4,5,Holmes,Rd,1435108,0.936,1.306,0,8.871285,5.8,4.5 +25522,0,0.116867,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.804807,0.15,4 +10131,0,0.251495,1,1,0,2,4,,4,5,Harris,Rd,1428205,0.056,0.307,0,6.035869,4.5,4.5 +25508,0,0.266885,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.405243,0.15,4 +11553,0,0.137569,1,1,0,2,7,,4,5,Russell,St,1434102,0.25,0.388,0,3.301664,6.55,4.5 +37888,0,0.706824,1,1,1,2,5,,3,3,11 Mile,Rd,657010,0,0.707,0,16.963773,8,4.5 +10186,0,0.191095,1,1,0,2,4,,4,5,Forest,Ave,1429906,2.164,2.355,0,4.586281,4.5,4.5 +21602,0,0.256806,1,1,1,2,5,,4,5,Ford,Blvd,4603131,1.021,1.278,0,6.163343,5.8,4.5 +21840,0,0.26739,1,1,1,2,4,,4,5,Ford,Blvd,4603131,0.754,1.021,0,6.417359,4.5,4.5 +11498,0,0.074975,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.369,1.444,0,1.79939,5.8,4.5 +10106,0,0.208737,1,1,0,2,4,,4,5,Lamay,Ave,1428210,0,0.209,0,5.009697,4.5,4.5 +26816,0,0.022415,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,0.537966,0.15,4 +11238,0,0.539864,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0.869,1.409,0,12.956743,6.55,4.5 +11338,0,0.219135,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.44,2.659,0,5.259249,5.8,4.5 +25302,0,0.489953,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.758883,0.15,4 +30003,0,0.208036,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.99286,0.15,4 +30005,0,0.490616,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.77479,0.15,4 +11348,0,0.174196,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.187,2.361,0,4.180694,5.8,4.5 +30075,0,0.361989,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.687727,0.15,4 +30076,0,0.251839,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.044143,0.15,4 +11352,0,0.165628,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.022,2.187,0,3.975072,5.8,4.5 +11340,0,0.079099,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.361,2.44,0,1.898368,5.8,4.5 +26682,0,0.295747,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.097916,0.15,4 +11484,0,0.247409,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0.622,0.869,0,5.937819,6.55,4.5 +30004,0,0.174026,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.176632,0.15,4 +9913,0,0.267083,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.194,4.461,0,6.410002,3.7,5 +11496,0,0.548585,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.761,2.31,0,13.166037,5.8,4.5 +10791,0,0.712423,1,1,0,2,7,,4,5,Wiard,Blvd,1440105,0.089,0.801,0,17.098153,6.55,4.5 +11322,0,0.563385,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.929,3.492,0,13.52123,5.8,4.5 +26814,0,0.107779,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.586685,0.15,4 +11495,0,0.088618,1,1,0,2,7,,4,5,Wiard,Blvd,1440105,0,0.089,0,2.126823,6.55,4.5 +9499,0,0.872115,1,1,0,2,4,,5,5,Prospect,St,1428106,4.134,5.006,0,20.93076,3,4 +10855,0,0.632642,1,1,0,2,4,,4,5,Geddes,Rd,1448104,7.2,7.832,0,15.183412,4.5,4.5 +11176,0,1.002299,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,1.007,2.009,0,24.055186,5.55,5 +11210,0,0.729919,1,1,0,2,3,,5,5,Ford,Rd,1431908,0.516,1.246,0,17.518048,1.7,4 +11274,0,0.755488,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,3.161,3.916,0,18.13171,5.55,5 +25819,0,1.122181,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.932334,0.15,4 +25821,0,1.514671,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.352103,0.15,4 +26296,0,1.795445,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,43.090671,0.15,4 +9543,0,1.009593,1,1,0,2,4,,5,5,Prospect,St,1428106,2.995,4.004,0,24.230232,3,4 +11055,0,0.335546,1,1,0,2,4,,4,5,Geddes,Rd,1448104,6.865,7.2,0,8.053114,4.5,4.5 +10859,0,0.69041,1,1,0,2,4,,4,5,Geddes,Rd,1448104,6.174,6.865,0,16.569846,4.5,4.5 +10319,0,0.13019,1,1,0,2,4,,5,5,Prospect,St,1428106,4.004,4.134,0,3.124565,3,4 +9481,0,0.950727,1,1,0,2,5,,5,5,Prospect,St,1428106,6.013,6.963,0,22.817441,3.7,5 +11217,0,0.516379,1,1,0,2,3,,5,5,Ford,Rd,1431908,0,0.516,0,12.393105,1.7,4 +11241,0,0.695849,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,2.692,3.387,0,16.700385,3,4 +11278,0,0.764,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,2.398,3.161,0,18.335991,5.55,5 +11470,-1,0.123928,0,2,0,2,3,DIV,5,5,W M 153,,1431602,1.584,1.708,0,2.974282,1.7,4 +11486,1,0.156569,2,0,0,2,3,DIV,5,5,E M 153,,1431510,1.396,1.553,0,3.757646,1.7,4 +11227,-1,0.036029,0,1,0,2,3,,5,5,Ford,Rd,1431906,1.575,1.611,0,0.864704,1.7,4 +10257,0,0.183983,1,1,0,2,5,,5,5,Prospect,Rd,1428106,6.963,7.147,0,4.415594,3.7,5 +10276,0,1.007132,1,1,0,2,4,,5,5,Prospect,St,1428106,5.006,6.013,0,24.171172,3,4 +10851,0,0.510876,1,1,0,2,4,,4,5,Geddes,Rd,1448104,8.207,8.718,0,12.261027,4.5,4.5 +11180,0,1.007503,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,0,1.007,0,24.180064,5.55,5 +25820,0,1.121151,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.907632,0.15,4 +11054,0,0.374837,1,1,0,2,4,,4,5,Geddes,Rd,1448104,7.832,8.207,0,8.996087,4.5,4.5 +11052,0,0.486837,1,1,0,2,4,,4,5,Geddes,Rd,1448104,8.718,9.204,0,11.684088,4.5,4.5 +25818,0,0.505823,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.139751,0.15,4 +11169,0,1.007914,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,2.009,3.017,0,24.189938,5.55,5 +11208,0,1.265765,1,1,0,2,3,,5,5,Ford,Rd,1431908,1.246,2.511,0,30.378356,1.7,4 +11492,0,1.010428,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,4.165,5.175,0,24.250274,5.55,5 +26299,0,1.037817,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.907619,0.15,4 +26300,0,0.761628,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.279066,0.15,4 +25813,0,0.921162,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.107895,0.15,4 +25814,0,0.911896,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.885497,0.15,4 +11270,0,0.2486,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,3.916,4.165,0,5.966404,5.55,5 +11149,0,1.088663,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,3.017,4.105,0,26.127917,5.55,5 +11014,1,1.937702,3,0,0,1,1,,4,2,E I 94,,1576405,0.155,2.092,0,,0.8,7.5 +15829,1,0.507579,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,0.836,1.344,0,12.181892,3.7,5 +16962,1,1.076403,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,0.116,1.192,0,25.833667,4.5,4.5 +18110,0,0.981985,1,1,0,2,4,,4,2,Beck,Rd,1665610,0.95,1.932,0,23.567648,4.5,4.5 +19238,0,0.313788,1,1,0,2,5,,4,2,South Service,Rd,1811006,1.063,1.376,0,7.530904,5.8,4.5 +19302,0,0.809724,1,1,0,2,5,,4,5,Airport,Dr,1751607,0.089,0.898,0,19.433378,5.8,4.5 +21836,-1,1.084529,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,0.145,1.229,0,26.028703,4.5,4.5 +21940,0,1.081114,1,1,0,2,5,,4,2,North Service,Rd,4603886,0.208,1.289,0,25.946729,5.8,4.5 +22509,-1,0.136602,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,1.18,1.316,0,3.278455,3.7,5 +25809,0,0.268412,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.441879,0.15,4 +30934,0,0.549497,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.18793,0.15,4 +31354,0,0.637157,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.291774,0.15,4 +31412,0,0.985478,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.651477,0.15,4 +31514,0,0.950165,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.803957,0.15,4 +31518,0,0.414901,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.957615,0.15,4 +33794,0,0.4641,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.13839,0.15,4 +10813,1,0.154583,3,0,0,1,1,,4,2,E I 94,,1576405,0,0.155,0,,0.8,7.5 +11447,1,0.158603,1,0,0,1,1,RON,4,2,Rawsonville/E I 94,RAMP,1576407,0.112,0.271,0,,1.09,4 +11568,0,0.336106,1,1,0,2,5,,4,5,McGregor,Rd,1438801,0.107,0.443,0,8.066551,5.8,4.5 +13720,1,0.224552,1,0,0,1,1,ROF,4,2,W I 94/Rawsonville,RAMP,1588803,0,0.225,0,,2.24,5 +14316,-1,0.21369,0,3,0,1,1,,4,2,W I 94,,1588802,0,0.214,0,,0.8,7.5 +19239,0,0.883167,1,1,0,2,5,,4,2,South Service,Rd,1811006,0.18,1.063,0,21.196,5.8,4.5 +9736,0,0.422955,2,2,0,2,4,,4,5,Grove,St,1428105,4.105,4.528,0,10.150927,4.5,4.5 +10198,-1,0.474321,0,3,0,1,1,,4,5,W I 94,,1426110,32.739,33.213,0,,0.8,7.5 +10439,1,0.362277,3,0,0,1,1,,4,5,E I 94,,1426109,32.979,33.341,0,,0.8,7.5 +10523,1,0.323405,1,0,0,1,1,ROF,4,5,E I 94/Rawsonville,RAMP,1431009,0,0.323,0,,2.24,5 +11454,0,0.506216,1,1,0,2,4,,4,5,Bridge,Rd,1438202,0.234,0.74,0,12.149174,4.5,4.5 +11510,0,0.178563,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.666,8.845,0,4.285509,4.5,4.5 +21562,0,0.254139,1,1,0,2,5,,4,5,William,Ave,4603122,0,0.254,0,6.09934,5.8,4.5 +26752,0,0.334776,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.034621,0.15,4 +26820,0,0.172967,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.151215,0.15,4 +26822,0,0.421066,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.105583,0.15,4 +9471,0,0.309686,2,2,0,2,4,,4,5,Grove,St,1428105,3.795,4.105,0,7.432456,4.5,4.5 +10083,1,0.255606,3,0,0,1,1,,4,5,E I 94,,1426109,32.724,32.979,0,,0.8,7.5 +26753,0,0.169775,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.074593,0.15,4 +10803,0,0.167845,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.499,8.666,0,4.028271,4.5,4.5 +26263,0,0.362796,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.70711,0.15,4 +10511,1,0.229786,1,0,0,1,1,RON,4,5,Rawsonville/W I 94,RAMP,1431106,0,0.23,0,,1.09,4 +10743,1,0.112354,1,0,0,1,1,RON,4,5,Rawsonville/E I 94,RAMP,1576407,0,0.112,0,,1.09,4 +11506,0,0.228102,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,9.072,9.3,0,5.474445,4.5,4.5 +14394,1,0.183523,1,0,0,1,1,ROF,4,5,W I 94/Rawsonville,RAMP,1588803,0.225,0.408,0,,2.24,5 +19240,0,0.179859,1,1,0,2,5,,4,5,South Service,Rd,1811006,0,0.18,0,4.316606,5.8,4.5 +21425,0,0.208368,1,1,0,2,5,,4,5,William,Ave,4603886,0,0.208,0,5.000841,5.8,4.5 +11505,0,0.053709,2,2,1,2,5,,4,5,Rawsonville,Rd,1439105,9.307,9.36,0,1.289009,5.8,4.5 +10798,0,0.006719,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,9.3,9.307,0,0.161245,4.5,4.5 +11259,0,0.112066,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.955,9.067,0,2.689591,4.5,4.5 +11507,0,0.110264,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.845,8.955,0,2.646338,4.5,4.5 +10801,0,0.00499,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,9.067,9.072,0,0.119752,4.5,4.5 +10196,-1,0.0913,0,3,0,1,1,,4,5,W I 94,,1426110,33.213,33.304,0,,0.8,7.5 +11560,0,0.29408,1,1,0,2,5,,4,5,Tyler,Rd,1438803,0.304,0.598,0,7.057913,5.8,4.5 +11563,0,0.335038,1,1,0,2,5,,4,5,McGregor,Rd,1438801,0.443,0.778,0,8.040902,5.8,4.5 +26750,0,0.328156,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.875735,0.15,4 +26751,0,0.036391,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,0.873377,0.15,4 +25810,0,0.228573,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.485748,0.15,4 +11315,0,0.183241,1,1,0,2,5,,4,5,McGregor,Rd,1438801,0.778,0.961,0,4.397782,5.8,4.5 +9909,1,0.351417,2,0,0,2,3,DIV,4,5,Michigan,Ave,1427804,5.177,5.528,0,8.434,3.7,5 +10101,0,0.281743,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0.077,0.358,0,6.761828,5.8,4.5 +15830,1,0.836362,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,0,0.836,0,20.072695,3.7,5 +15884,1,0.592727,2,0,0,2,3,DIV,4,2,Michigan,Ave,1599009,0,0.593,0,14.225438,3.7,5 +15886,-1,0.549382,0,2,0,2,3,DIV,4,2,Michigan,Ave,1599002,0,0.549,0,13.185162,3.7,5 +21759,-1,0.359392,0,2,0,2,3,DIV,4,5,Michigan,Ave,4600027,0,0.359,0,8.625398,3.7,5 +23405,-1,0.780421,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,0,0.78,0,18.7301,3.7,5 +25808,0,0.283935,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.81444,0.15,4 +9911,0,0.085163,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.904,4.989,0,2.043902,3.7,5 +26756,0,0.202977,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.871454,0.15,4 +9718,0,0.187744,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.989,5.177,0,4.505865,3.7,5 +11426,0,0.186459,1,1,0,2,5,,4,5,Holmes,Rd,1435108,2.81,2.996,0,4.475018,5.8,4.5 +10373,0,0.076821,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0,0.077,0,1.843707,5.8,4.5 +10679,1,0.133116,2,0,0,2,3,DIV,4,5,E US 12,,1430402,2.295,2.429,0,3.194778,3.7,5 +16964,1,0.116406,2,0,0,2,4,DIV,4,5,Ecorse,Rd,1600207,0,0.116,0,2.793734,4.5,4.5 +10365,0,0.121754,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0.358,0.48,0,2.922101,5.8,4.5 +26492,0,0.128496,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.08391,0.15,4 +10094,0,0.142118,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0.48,0.622,0,3.410841,5.8,4.5 +15885,-1,0.402707,0,1,0,2,3,DIV,4,2,Michigan,Ave,1599002,0.549,0.952,0,9.664976,3.7,5 +24167,1,0.087271,1,0,0,2,3,,4,2,WB US-12/WB Michigan cutoff,,4711918,0,0.087,0,2.094515,3.7,5 +22793,-1,0.392998,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,0.787,1.18,0,9.431949,3.7,5 +15883,1,0.025405,2,0,0,2,3,DIV,4,2,Michigan,Ave,1599009,0.593,0.618,0,0.609723,3.7,5 +23070,-1,0.006722,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,0.78,0.787,0,0.16134,3.7,5 +18518,0,0.950558,1,1,0,2,4,GRV,4,2,Beck,Rd,1665610,0,0.95,0,22.813404,6.55,4.5 +18930,0,0.809818,1,1,0,2,5,,4,2,Denton,Rd,1675103,0.336,1.146,0,19.43563,5.8,4.5 +19237,0,0.912996,1,1,0,2,5,,4,2,South Service,Rd,1811006,1.376,2.289,0,21.911904,5.8,4.5 +21689,0,1.018818,1,1,0,2,5,,4,2,North Service,Rd,4603886,1.289,2.307,0,24.45163,5.8,4.5 +22623,0,0.947068,1,1,0,2,5,,4,2,Quirk,Rd,4705577,0,0.947,0,22.729631,5.8,4.5 +31515,0,1.033899,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.813575,0.15,4 +31516,0,0.949942,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.798606,0.15,4 +17525,0,0.33649,1,1,0,2,5,,4,2,Denton,Rd,1675103,0,0.336,0,8.075772,5.8,4.5 +31353,0,0.461157,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.067761,0.15,4 +18457,0,0.545361,1,1,0,2,5,,4,2,Denton,Rd,1675103,1.146,1.691,0,13.088654,5.8,4.5 +19236,0,0.438937,1,1,0,2,5,,4,2,South Service,Rd,1811006,2.289,2.728,0,10.534491,5.8,4.5 +21475,0,0.494508,1,1,0,2,5,,4,2,North Service,Rd,4603886,2.307,2.802,0,11.868193,5.8,4.5 +31410,0,0.309529,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.428708,0.15,4 +31244,0,0.192428,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.618281,0.15,4 +31356,0,0.217534,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.220817,0.15,4 +18043,0,0.397747,1,1,0,2,4,,4,2,Tyler,Rd,1675701,0,0.398,0,9.545926,4.5,4.5 +31411,0,0.072602,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.742454,0.15,4 +15827,1,0.470906,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,1.852,2.323,0,11.301749,3.7,5 +15881,0,0.508062,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.014,0.522,0,12.193487,4.5,4.5 +16958,1,1.00454,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,1.192,2.197,0,24.108953,4.5,4.5 +18105,0,0.477136,1,1,0,2,4,GRV,4,2,Beck,Rd,1665610,1.945,2.422,0,11.451264,6.55,4.5 +21598,-1,1.004601,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,1.229,2.233,0,24.110421,4.5,4.5 +23499,-1,0.823878,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,1.316,2.14,0,19.773065,3.7,5 +30931,0,0.424945,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.198668,0.15,4 +33768,0,0.571302,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.711241,0.15,4 +33769,0,0.584368,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.02483,0.15,4 +15882,0,0.013751,1,1,0,2,4,,4,2,Denton,Rd,1599103,0,0.014,0,0.330032,4.5,4.5 +15828,1,0.508881,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,1.344,1.852,0,12.213135,3.7,5 +15877,0,0.35008,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.998,1.348,0,8.401925,4.5,4.5 +15879,0,0.408993,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.57,0.979,0,9.815824,4.5,4.5 +15880,0,0.048567,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.522,0.57,0,1.16561,4.5,4.5 +31517,0,0.024956,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.598944,0.15,4 +31519,0,0.035944,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.862665,0.15,4 +15878,0,0.019395,2,2,0,2,4,,4,2,Denton,Rd,1599103,0.979,0.998,0,0.465489,4.5,4.5 +30930,0,0.43994,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.558565,0.15,4 +16955,1,0.579678,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,2.197,2.776,0,13.912268,4.5,4.5 +21400,-1,0.574266,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,2.233,2.807,0,13.78238,4.5,4.5 +18512,0,0.012643,1,1,0,2,4,,4,2,Beck,Rd,1665610,1.932,1.945,0,0.303441,4.5,4.5 +18508,0,0.813037,1,1,0,2,4,GRV,4,2,Beck,Rd,1665610,2.422,3.234,0,19.512896,6.55,4.5 +23659,-1,0.321452,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,2.385,2.706,0,7.714845,3.7,5 +31256,0,0.480874,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.540986,0.15,4 +23157,-1,0.244971,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,2.14,2.385,0,5.879314,3.7,5 +15019,0,0.159539,1,1,0,2,3,,4,2,Ford,Rd,1595510,0.975,1.135,0,3.828934,3.7,5 +15459,0,0.487203,1,1,0,2,4,,4,2,Beck,Rd,1595603,2.25,2.737,0,11.692871,4.5,4.5 +16481,0,0.363213,1,1,1,2,5,,4,2,Cherry Hill,Rd,1607409,0.979,1.343,0,8.717114,5.8,4.5 +21474,0,0.743283,1,1,0,2,5,,4,2,Ridge,Rd,4603889,1.492,2.235,0,17.838799,5.8,4.5 +21807,0,0.506082,1,1,0,2,4,,4,2,Geddes,Rd,4603888,0.992,1.498,0,12.145957,4.5,4.5 +24097,0,0.426917,1,1,0,2,5,,4,2,Warren,Rd,4710470,0.97,1.397,0,10.245998,5.8,4.5 +31436,0,0.438904,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.533704,0.15,4 +31521,0,1.010395,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.249481,0.15,4 +31523,0,1.007778,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.186679,0.15,4 +31524,0,1.114947,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,26.758739,0.15,4 +31527,0,0.521571,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.517699,0.15,4 +31729,0,0.523248,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.557944,0.15,4 +21688,0,0.253899,1,1,0,2,5,,4,2,Ridge,Rd,4603889,1.239,1.492,0,6.093586,5.8,4.5 +40554,-1,0.026819,0,2,0,2,5,,4,3,Livernois,Rd,5499956,0.089,0.115,0,0.643668,5.8,4.5 +22075,0,0.488111,1,1,0,2,4,,4,2,Geddes,Rd,4603888,0.504,0.992,0,11.714654,4.5,4.5 +31526,0,0.996176,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.908231,0.15,4 +40557,1,0.008343,2,0,0,2,4,,4,3,Tienken,Rd,626010,3.484,3.492,0,0.200224,4.5,4.5 +31525,0,0.461168,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.06803,0.15,4 +15230,0,0.975798,1,1,0,2,3,,4,2,Ford,Rd,1595510,0,0.975,0,23.419142,3.7,5 +15674,0,0.560727,1,1,0,2,5,,4,2,Ridge,Rd,1595602,0.588,1.149,0,13.457445,5.8,4.5 +16238,0,0.385633,1,1,0,2,5,,4,2,Cherry Hill,Rd,1607409,0,0.386,0,9.255198,5.8,4.5 +14844,0,0.588215,1,1,0,2,5,,4,2,Ridge,Rd,1595602,0,0.588,0,14.117166,5.8,4.5 +16234,0,0.499529,1,1,1,2,5,,4,2,Cherry Hill,Rd,1607409,0.48,0.979,0,11.988692,5.8,4.5 +31529,0,0.497041,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.928987,0.15,4 +16482,0,0.094548,1,1,1,2,5,,4,2,Cherry Hill,Rd,1607409,0.386,0.48,0,2.26915,5.8,4.5 +31528,0,0.231367,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.552797,0.15,4 +15266,0,0.59366,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,1.149,1.742,0,14.247849,6.55,4.5 +31419,0,0.483124,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.594965,0.15,4 +15047,0,0.404149,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,1.742,2.146,0,9.699581,6.55,4.5 +14902,0,0.523043,1,1,0,2,4,,4,2,Beck,Rd,1595603,1.283,1.805,0,12.553024,4.5,4.5 +21364,0,0.535293,1,1,0,2,4,,4,2,Geddes,Rd,4603888,1.966,2.501,0,12.847042,4.5,4.5 +31520,0,0.51099,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.263752,0.15,4 +31522,0,1.005499,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.131965,0.15,4 +21583,0,0.468656,1,1,0,2,4,,4,2,Geddes,Rd,4603888,1.498,1.966,0,11.247737,4.5,4.5 +15142,0,0.548647,1,1,0,2,4,,4,2,Beck,Rd,1595603,0.734,1.283,0,13.167519,4.5,4.5 +22129,0,0.394866,1,1,0,2,4,,4,2,Geddes,Rd,4603888,2.501,2.896,0,9.476787,4.5,4.5 +30932,0,0.486191,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.668584,0.15,4 +31418,0,0.543869,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.052858,0.15,4 +31572,0,0.566901,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.605632,0.15,4 +15390,0,0.210998,1,1,0,2,4,,4,2,Beck,Rd,1595603,0.523,0.734,0,5.063961,4.5,4.5 +31416,0,0.514185,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.340442,0.15,4 +15736,0,0.444783,1,1,0,2,4,,4,2,Beck,Rd,1595603,1.805,2.25,0,10.674793,4.5,4.5 +31263,0,0.521949,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.526769,0.15,4 +14975,0,0.366615,1,1,0,2,4,,4,2,Beck,Rd,1595603,3.333,3.7,0,8.798757,4.5,4.5 +15222,0,0.424962,1,1,0,2,3,,4,2,Ford,Rd,1595510,1.569,1.994,0,10.199093,3.7,5 +16232,0,0.65119,1,1,0,2,5,,4,2,Cherry Hill,Rd,1607409,1.343,1.993,0,15.62856,5.8,4.5 +24094,0,0.477991,1,1,0,2,5,,4,2,Warren,Rd,4710470,1.507,1.985,0,11.471784,5.8,4.5 +31426,0,0.272563,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.541507,0.15,4 +31530,0,0.505462,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.131096,0.15,4 +14767,0,0.434318,1,1,0,2,3,,4,2,Ford,Rd,1595510,1.135,1.569,0,10.423622,3.7,5 +24096,0,0.109909,1,1,0,2,5,,4,2,Warren,Rd,4710470,1.397,1.507,0,2.637805,5.8,4.5 +31532,0,0.517276,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.414634,0.15,4 +31531,0,0.515522,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.372525,0.15,4 +15193,0,0.281889,1,1,0,2,4,,4,2,Beck,Rd,1595603,3.051,3.333,0,6.765343,4.5,4.5 +16480,0,0.462239,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,1.993,2.455,0,11.093744,4.5,4.5 +31427,0,0.501419,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.034058,0.15,4 +31443,0,0.522935,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.550432,0.15,4 +15453,0,0.314444,1,1,0,2,4,,4,2,Beck,Rd,1595603,2.737,3.051,0,7.546649,4.5,4.5 +31424,0,0.252198,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.052759,0.15,4 +15012,0,0.623277,1,1,0,2,3,,4,2,Ford,Rd,1595510,1.994,2.617,0,14.958658,3.7,5 +15531,0,0.187424,1,1,0,2,3,,4,2,Beck,Rd,1595603,4.05,4.237,0,4.498173,3.7,5 +18732,0,0.53417,1,1,0,2,5,,4,2,Hanford,Rd,1676006,1.992,2.526,0,12.820071,5.8,4.5 +24093,0,0.463466,1,1,0,2,4,,4,2,Warren,Rd,4710470,1.985,2.448,0,11.123186,4.5,4.5 +31438,0,0.284448,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.826755,0.15,4 +33959,0,0.490166,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.763982,0.15,4 +33960,0,0.500681,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.016338,0.15,4 +14555,0,0.350116,1,1,0,2,3,,4,2,Beck,Rd,1595603,3.7,4.05,0,8.40279,3.7,5 +15684,0,0.280593,1,1,0,2,3,,4,2,Beck,Rd,1595603,4.458,4.738,0,6.734223,3.7,5 +14854,0,0.220719,1,1,0,2,3,,4,2,Beck,Rd,1595603,4.237,4.458,0,5.297249,3.7,5 +31441,0,0.289342,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.944208,0.15,4 +31445,0,0.232339,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.576137,0.15,4 +3195,0,0.992756,1,1,0,2,4,,5,5,8 Mile,Rd,656509,4.784,5.776,0,23.826133,3,4 +9827,0,0.661214,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,27.139,27.8,0,15.869129,3,4 +11036,0,1.004552,1,1,0,2,7,,5,5,7 Mile,Rd,1451104,2.806,3.81,0,24.109257,5.8,6 +11127,0,1.120943,1,1,0,2,7,GRV,5,5,Chubb,Rd,1447204,0,1.121,0,26.902631,5.55,5 +11178,0,1.002799,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,7.881,8.884,0,24.067185,3.7,5 +11181,0,0.995816,1,1,0,2,5,,5,5,Curtis,Rd,1432002,3.777,4.772,0,23.899585,3.7,5 +11237,0,1.182059,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,5.5,6.682,0,28.369406,3,4 +11534,-1,0.672154,0,2,0,1,2,,5,5,W M 14,,1431410,10.47,11.141,0,,1.02,7 +11587,1,0.742539,2,0,0,1,2,,5,5,E M 14,,1431408,10.346,11.089,0,,1.02,7 +15092,1,0.701355,2,0,0,2,3,DIV,4,2,Beck,Rd,1595603,8.754,9.455,0,16.832515,3.7,5 +20660,0,1.002307,1,1,0,2,5,,5,3,9 Mile,Rd,4407342,0,1.002,0,24.055375,3.7,5 +21264,0,0.999564,1,1,0,2,5,,4,5,Napier,Rd,4603890,0.769,1.769,0,23.989547,5.8,4.5 +26826,0,0.912652,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.90365,0.15,4 +26827,0,1.303963,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.295116,0.15,4 +39098,0,0.861806,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.683333,0.15,4 +26830,0,1.386536,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,33.276875,0.15,4 +26835,0,1.001509,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.036218,0.15,4 +31431,0,0.329701,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.912826,0.15,4 +31433,0,0.868509,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.844222,0.15,4 +31471,0,1.010974,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.263371,0.15,4 +9854,0,1.0575,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,25.007,26.064,0,25.380003,3,4 +11130,0,0.433413,1,1,0,2,4,,5,5,Gotfredson,Rd,1432004,6.125,6.558,0,10.401902,3,4 +11187,0,0.667397,1,1,0,2,5,,5,5,Curtis,Rd,1432002,2.242,2.909,0,16.01753,3.7,5 +11239,0,1.318619,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,4.182,5.5,0,31.646848,3,4 +26825,0,1.77047,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,42.491275,0.15,4 +26844,0,0.819122,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.658926,0.15,4 +30110,0,1.572349,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.736381,0.15,4 +11191,0,1.340297,1,1,0,2,5,,5,5,Curtis,Rd,1432002,0.902,2.242,0,32.16713,3.7,5 +11193,0,0.457432,1,1,0,2,5,,5,5,Curtis,Rd,1432002,0.445,0.902,0,10.978376,3.7,5 +11185,0,0.868015,1,1,0,2,5,,5,5,Curtis,Rd,1432002,2.909,3.777,0,20.832361,3.7,5 +30111,0,1.664412,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.945886,0.15,4 +11141,0,0.757697,1,1,0,2,5,,5,5,Gotfredson,Rd,1432004,5.064,5.822,0,18.184732,3.7,5 +11589,1,0.723767,2,0,0,1,2,,5,5,E M 14,,1431408,9.623,10.346,0,,1.02,7 +19287,1,0.397853,1,0,0,1,2,ROF,5,5,E M 14/Gotfredson,RAMP,1789403,0,0.398,0,,2.24,5 +26824,0,0.898735,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.569638,0.15,4 +11142,0,0.519453,1,1,0,2,5,,5,5,Gotfredson,Rd,1432004,4.545,5.064,0,12.46686,3.7,5 +11132,0,0.303322,1,1,0,2,4,,5,5,Gotfredson,Rd,1432004,5.822,6.125,0,7.279733,3,4 +11549,-1,0.634097,0,2,0,1,2,,5,5,W M 14,,1431410,9.836,10.47,0,,1.02,7 +19285,1,0.339502,1,0,0,1,2,RON,5,5,Gotfredson/W M 14,RAMP,1789405,0,0.339,0,,1.09,4 +19286,1,0.405494,1,0,0,1,2,RON,5,5,Gotfredson/E M 14,RAMP,1789404,0,0.405,0,,1.09,4 +19288,1,0.374656,1,0,0,1,2,ROF,5,5,W M 14/Gotfredson,RAMP,1789402,0,0.375,0,,2.24,5 +9833,0,1.07578,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,26.064,27.139,0,25.818712,3,4 +26843,0,0.461763,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.082317,0.15,4 +10820,0,0.283131,1,1,0,2,7,GRV,5,5,Gotfredson,Rd,1451202,4.154,4.437,0,6.795135,5.55,5 +30000,0,1.4563,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,34.951209,0.15,4 +11129,0,0.250989,1,1,0,2,4,,5,5,Gotfredson,Rd,1432004,6.558,6.809,0,6.023728,3,4 +26831,0,1.843004,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,44.232104,0.15,4 +1254,0,0.577077,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,0,0.577,0,13.849843,5.55,5 +3139,0,1.000881,1,1,0,2,3,,5,3,10 Mile,Rd,656510,3.777,4.777,0,24.021143,1.7,4 +3535,0,0.953184,1,1,0,2,4,,5,5,8 Mile,Rd,656509,2.835,3.788,0,22.876419,3,4 +11182,0,0.891628,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,5.989,6.88,0,21.399077,3.7,5 +20442,0,0.999528,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,1.002,2.001,0,23.988673,5.55,5 +25473,0,0.501374,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.032979,0.15,4 +26724,0,0.998676,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.968224,0.15,4 +26837,0,1.053364,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.28074,0.15,4 +26838,0,0.500276,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.006616,0.15,4 +10989,0,0.189909,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,5.799,5.989,0,4.557808,3.7,5 +338,0,0.58049,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,0.998,1.578,0,13.931768,5.55,5 +3475,0,0.867762,1,1,0,2,3,,5,3,10 Mile,Rd,656510,2.909,3.777,0,20.826289,1.7,4 +20255,0,0.923235,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,2.001,2.924,0,22.157637,5.55,5 +24621,0,0.997754,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.946093,0.15,4 +25472,0,0.999884,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.997211,0.15,4 +25477,0,0.530382,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.729176,0.15,4 +25470,0,0.502499,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.05998,0.15,4 +19906,0,0.252301,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,2.924,3.176,0,6.055232,5.55,5 +2514,0,0.559571,1,1,0,2,4,,5,3,10 Mile,Rd,656510,2.222,2.782,0,13.429695,3,4 +25475,0,0.515314,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.367536,0.15,4 +3484,0,0.127698,1,1,0,2,3,,5,3,10 Mile,Rd,656510,2.782,2.909,0,3.064759,1.7,4 +804,0,0.420723,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,0.577,0.998,0,10.097356,5.55,5 +2174,0,0.23526,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,1.578,1.813,0,5.646243,5.55,5 +1668,0,0.183924,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,1.813,1.997,0,4.414178,5.55,5 +3200,0,0.960282,1,1,0,2,4,,5,5,8 Mile,Rd,656509,3.813,4.773,0,23.046779,3,4 +10987,0,1.001393,1,1,0,2,5,,5,5,Main,St,1446810,6.88,7.881,0,24.033434,3.7,5 +11135,0,0.940167,1,1,0,2,5,,5,5,Currie,Rd,1447105,1.127,2.067,0,22.564007,3.7,5 +11194,0,0.959845,1,1,0,2,7,,5,5,7 Mile,Rd,1451104,1.847,2.806,0,23.036272,5.8,6 +26834,0,0.965787,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.178878,0.15,4 +10967,0,0.993358,1,1,0,2,5,,5,5,Currie,Rd,1447105,2.067,3.06,0,23.840598,3.7,5 +3522,0,0.025024,1,1,0,2,4,,5,5,8 Mile,Rd,656509,3.788,3.813,0,0.600574,3,4 +26833,0,0.97045,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.290797,0.15,4 +29999,0,0.039759,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,0.954222,0.15,4 +3519,0,0.010751,1,1,0,2,4,,5,5,8 Mile,Rd,656509,4.773,4.784,0,0.258033,3,4 +26842,0,0.500089,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.002133,0.15,4 +26836,0,0.49987,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.996891,0.15,4 +3468,0,0.50711,1,1,1,2,3,,5,3,10 Mile,Rd,656510,4.777,5.284,0,12.17064,1.7,4 +26840,0,0.499384,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.985219,0.15,4 +11118,0,0.734554,1,1,0,2,5,,4,5,Napier,Rd,1432007,4.013,4.747,0,17.629284,5.8,4.5 +14792,0,0.403358,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.744,7.148,0,9.680589,3.7,5 +15731,0,0.78888,1,1,0,2,5,,4,2,Ridge,Rd,1595602,4.166,4.954,0,18.933114,5.8,4.5 +16054,0,0.352995,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,1.074,1.427,0,8.47188,4.5,4.5 +16063,-1,2.160591,0,2,0,1,2,,4,2,W M 14,,1606204,0,2.16,0,,0.8,7.5 +16929,1,1.998309,2,0,0,1,2,,4,2,E M 14,,1606205,0,1.998,0,,0.8,7.5 +17434,0,0.537012,1,1,0,2,5,,4,2,Powell,Rd,1673208,1.012,1.549,0,12.888299,5.8,4.5 +17787,0,0.201664,1,1,0,2,5,GRV,4,2,Joy,Rd,1672705,0.62,0.822,0,4.839929,6.55,4.5 +18799,0,1.003434,1,1,0,2,5,,4,2,5 Mile,Rd,1708705,1.016,2.019,0,24.082423,5.8,4.5 +18839,0,0.51769,1,1,0,2,4,,4,2,Territorial,Rd,1673609,1.015,1.533,0,12.424567,4.5,4.5 +30395,0,0.921497,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.115923,0.15,4 +31432,0,0.899774,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.594572,0.15,4 +31448,0,0.503296,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.079109,0.15,4 +31462,0,0.374928,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.998283,0.15,4 +31468,0,0.491802,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.80324,0.15,4 +11125,0,0.824177,1,1,0,2,5,,4,5,Napier,Rd,1432007,2.997,3.821,0,19.780256,5.8,4.5 +15635,0,0.279049,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,3.164,3.443,0,6.697183,6.55,4.5 +16062,0,0.51492,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,0.56,1.074,0,12.358076,4.5,4.5 +16067,0,0.383217,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,0,0.383,0,9.197219,4.5,4.5 +17436,0,0.466132,1,1,0,2,5,,4,2,Powell,Rd,1673208,0,0.466,0,11.187164,5.8,4.5 +31536,0,0.803045,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.273085,0.15,4 +31537,0,0.514486,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.347664,0.15,4 +11122,0,0.19229,1,1,0,2,5,,4,5,Napier,Rd,1432007,3.821,4.013,0,4.614968,5.8,4.5 +18190,0,0.540578,1,1,0,2,5,GRV,4,2,Joy,Rd,1672705,0.079,0.62,0,12.973881,6.55,4.5 +16066,0,0.176519,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,0.383,0.56,0,4.236454,4.5,4.5 +18104,0,0.079493,1,1,0,2,5,GRV,4,2,Joy,Rd,1672705,0,0.079,0,1.907842,6.55,4.5 +15336,0,0.566692,1,1,0,2,5,,4,2,Ridge,Rd,1595602,3.443,4.009,0,13.600601,5.8,4.5 +18844,0,0.545978,1,1,0,2,5,,4,2,Powell,Rd,1673208,0.466,1.012,0,13.103467,5.8,4.5 +31534,0,0.505396,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.129511,0.15,4 +31533,0,0.130106,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.122556,0.15,4 +14899,0,0.156573,1,1,0,2,5,,4,2,Ridge,Rd,1595602,4.009,4.166,0,3.757752,5.8,4.5 +15195,0,0.613687,1,1,0,2,5,,4,2,Ridge,Rd,1595602,5.555,6.169,0,14.728492,5.8,4.5 +17425,0,0.828584,1,1,0,2,4,,4,2,Territorial,Rd,1673609,0.187,1.015,0,19.886016,4.5,4.5 +17534,0,0.773393,1,1,0,2,5,,4,2,5 Mile,Rd,1708705,0,0.773,0,18.561433,5.8,4.5 +26845,0,0.711368,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.072837,0.15,4 +33766,0,0.679097,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.298326,0.15,4 +9818,0,0.343598,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,27.8,28.144,0,8.246341,3,4 +18378,0,0.186956,1,1,0,2,4,,4,2,Territorial,Rd,1673609,0,0.187,0,4.486935,4.5,4.5 +15455,0,0.601015,1,1,0,2,5,,4,2,Ridge,Rd,1595602,4.954,5.555,0,14.424371,5.8,4.5 +31540,0,0.510185,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.244431,0.15,4 +19134,0,0.242448,1,1,0,2,5,,4,2,5 Mile,Rd,1708705,0.773,1.016,0,5.818749,5.8,4.5 +14798,0,0.166346,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.743,5.909,0,3.99231,3.7,5 +16050,0,0.334166,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,1.82,2.154,0,8.019992,4.5,4.5 +16257,0,0.430352,1,1,0,2,4,,4,2,Ann Arbor,Trl,1604108,0,0.43,0,10.328454,4.5,4.5 +17571,0,0.809896,1,1,0,2,5,,4,2,Joy,Rd,1672705,0.822,1.631,0,19.437507,5.8,4.5 +18842,0,0.458307,1,1,0,2,5,,4,2,Powell,Rd,1673208,1.549,2.007,0,10.99936,5.8,4.5 +31429,0,0.508027,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.192658,0.15,4 +31454,0,0.254718,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.113235,0.15,4 +31420,0,0.584234,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.021615,0.15,4 +16051,0,0.392509,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,1.427,1.82,0,9.42021,4.5,4.5 +30937,0,0.519962,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.479084,0.15,4 +31535,0,0.102899,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.469581,0.15,4 +14908,0,0.50247,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.24,5.743,0,12.05929,3.7,5 +18983,0,0.504149,1,1,0,2,4,,4,2,Joy,Rd,1672705,1.631,2.135,0,12.099578,4.5,4.5 +33954,0,0.529265,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.702367,0.15,4 +33955,0,0.510549,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.253179,0.15,4 +15147,0,0.221925,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.019,5.24,0,5.326192,3.7,5 +17635,0,0.220579,1,1,0,2,4,,4,2,Joy,Rd,1672705,2.135,2.356,0,5.293902,4.5,4.5 +31449,0,0.304281,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.302736,0.15,4 +15090,0,0.172873,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.45,6.622,0,4.148952,3.7,5 +16048,0,0.795396,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,2.154,2.949,0,19.089499,4.5,4.5 +16240,0,0.572304,1,1,0,2,4,,4,2,Ann Arbor,Trl,1604108,0.43,1.002,0,13.735301,4.5,4.5 +31453,0,0.751264,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.030343,0.15,4 +15624,0,0.396426,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.909,6.305,0,9.514215,3.7,5 +15324,0,0.144356,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.305,6.45,0,3.464543,3.7,5 +14841,0,0.12198,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.622,6.744,0,2.927517,3.7,5 +31452,0,0.250888,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.021317,0.15,4 +14868,0,0.069719,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.099,8.169,0,1.673245,3.7,5 +16060,-1,0.360729,0,3,0,1,2,,4,2,W M 14,,1606204,2.4,2.76,0,,0.8,7.5 +16626,1,0.229789,3,0,0,1,2,,4,2,E M 14,,1606205,2.327,2.557,0,,0.8,7.5 +18567,0,0.527292,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,2.019,2.546,0,12.655015,4.5,4.5 +18791,0,0.294772,1,1,0,2,4,,4,2,Territorial,Rd,1673609,1.99,2.284,0,7.074524,4.5,4.5 +19299,1,0.415879,1,0,0,1,2,ROF,4,2,W M 14/Beck,RAMP,1778110,0,0.416,0,,2.24,5 +19300,1,0.266561,1,0,0,1,2,RON,4,2,N Beck/W M 14,RAMP,1778109,0,0.267,0,,1.09,4 +21664,1,0.304383,1,0,0,1,2,RON,4,2,N Beck/E M 14,RAMP,4700034,0,0.304,0,,1.09,4 +31434,0,0.92208,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.129912,0.15,4 +31538,0,0.505519,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.132447,0.15,4 +31541,0,0.585618,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.054835,0.15,4 +15619,0,0.465705,1,1,0,2,3,,4,2,Beck,Rd,1595603,7.148,7.613,0,11.176924,3.7,5 +18374,0,0.457114,1,1,0,2,4,,4,2,Territorial,Rd,1673609,1.533,1.99,0,10.970739,4.5,4.5 +14839,0,0.072065,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.805,7.877,0,1.729562,3.7,5 +16927,1,0.329913,3,0,0,1,2,,4,2,E M 14,,1606205,1.998,2.327,0,,0.8,7.5 +16935,-1,0.239965,0,3,0,1,2,,4,2,W M 14,,1606204,2.16,2.4,0,,0.8,7.5 +19294,1,0.273631,1,0,0,1,2,RON,4,2,S Beck/E M 14,RAMP,1778204,0,0.274,0,,1.09,4 +19295,1,0.395726,1,0,0,1,2,ROF,4,2,E M 14/Beck,RAMP,1778203,0,0.396,0,,2.24,5 +21665,1,0.300492,1,0,0,1,2,RON,4,2,S Beck/W M 14,RAMP,4700035,0,0.3,0,,1.09,4 +15321,0,0.139343,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.613,7.752,0,3.344223,3.7,5 +15087,0,0.052669,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.752,7.805,0,1.264052,3.7,5 +15639,0,0.138086,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.877,8.015,0,3.314061,3.7,5 +15107,0,0.020294,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.079,8.099,0,0.487059,3.7,5 +15341,0,0.063944,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.015,8.079,0,1.534662,3.7,5 +15697,0,0.584757,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.169,8.754,0,14.034167,3.7,5 +18335,0,0.246972,1,1,0,2,4,,4,2,Territorial,Rd,1673609,2.284,2.531,0,5.927324,4.5,4.5 +31461,0,0.381597,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.158338,0.15,4 +31467,0,0.226359,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.432608,0.15,4 +18240,0,0.172021,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,2.546,2.718,0,4.128505,4.5,4.5 +393,0,1.175939,1,1,0,2,5,GRV,5,3,9 Mile,Rd,633603,7.218,8.394,0,28.222535,5.55,5 +2490,0,0.342939,1,1,0,2,3,,4,3,10 Mile,Rd,656510,7.045,7.388,0,8.230544,3.7,5 +15139,0,0.918987,1,1,0,2,3,,4,2,Beck,Rd,1595603,10.764,11.683,0,22.055686,3.7,5 +17473,0,1.006903,1,1,0,2,4,,4,3,8 Mile,Rd,1680705,1.01,2.016,0,24.165679,4.5,4.5 +17616,0,1.004465,1,1,0,2,5,,4,2,6 Mile,Rd,1680701,1.014,2.018,0,24.107168,5.8,4.5 +18266,0,1.192775,1,1,0,2,5,,4,2,7 Mile,Rd,1680703,0.361,1.554,0,28.626597,5.8,4.5 +21744,0,0.938249,1,1,0,2,5,GRV,4,5,Napier,Rd,4603890,2.77,3.708,0,22.517969,6.55,4.5 +25863,0,1.002569,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.061661,0.15,4 +26848,0,1.09291,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.229836,0.15,4 +26849,0,0.770549,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.493179,0.15,4 +31542,0,1.217898,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,29.229564,0.15,4 +31547,0,0.972996,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.351897,0.15,4 +33944,0,0.587905,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.109718,0.15,4 +17709,0,0.613589,1,1,0,2,5,GRV,4,2,6 Mile,Rd,1680701,0,0.613,0,14.726146,6.55,4.5 +22023,0,1.001947,1,1,0,2,5,GRV,4,5,Napier,Rd,4603890,1.769,2.77,0,24.046732,6.55,4.5 +31544,0,0.645455,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.49091,0.15,4 +31545,0,0.985662,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.655893,0.15,4 +18387,0,0.361448,1,1,0,2,5,,4,2,7 Mile,Rd,1680703,0,0.361,0,8.674759,5.8,4.5 +1051,0,0.501971,1,1,0,2,4,,5,3,Napier,Rd,621905,0.998,1.5,0,12.047297,3,4 +1948,0,0.916308,1,1,0,2,5,GRV,5,3,9 Mile,Rd,633603,8.394,9.31,0,21.991383,5.55,5 +17576,0,1.009852,1,1,0,2,4,,4,3,8 Mile,Rd,1680705,0,1.01,0,24.236449,4.5,4.5 +26846,0,0.62862,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.086886,0.15,4 +26850,0,1.021369,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.51285,0.15,4 +481,0,0.129946,1,1,0,2,5,,5,3,9 Mile,Rd,633603,9.31,9.44,0,3.118706,3.7,5 +1792,0,0.987671,1,1,0,2,4,,5,3,Napier,Rd,621905,0,0.987,0,23.704106,3,4 +1297,0,0.010378,1,1,0,2,4,,5,3,Napier,Rd,621905,0.987,0.998,0,0.249079,3,4 +26847,0,0.532639,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.783344,0.15,4 +3465,0,0.266323,1,1,0,2,3,,4,3,10 Mile,Rd,656510,6.779,7.045,0,6.391741,3.7,5 +15387,0,0.368144,1,1,0,2,3,,4,2,Beck,Rd,1595603,10.396,10.764,0,8.835458,3.7,5 +17750,0,0.76068,1,1,0,2,4,,4,2,7 Mile,Rd,1680703,2.018,2.778,0,18.256323,4.5,4.5 +19120,0,0.597333,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,2.018,2.615,0,14.335994,4.5,4.5 +31546,0,0.763275,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.318609,0.15,4 +33765,0,0.779793,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.715035,0.15,4 +15672,0,0.635554,1,1,0,2,3,,4,2,Beck,Rd,1595603,9.761,10.396,0,15.253291,3.7,5 +14843,1,0.291444,2,0,0,2,3,DIV,4,2,Beck,Rd,1595603,9.455,9.746,0,6.994647,3.7,5 +17975,0,0.464516,1,1,0,2,5,,4,2,7 Mile,Rd,1680703,1.554,2.018,0,11.148396,5.8,4.5 +31470,0,0.20352,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.884485,0.15,4 +859,0,0.374516,1,1,0,2,4,,4,3,9 Mile,Rd,633603,6.844,7.218,0,8.988388,4.5,4.5 +3010,0,0.44126,1,1,0,2,5,,4,3,Taft,Rd,656608,0.559,1,0,10.590232,5.8,4.5 +3362,0,0.424726,1,1,0,2,4,,4,3,Beck,Rd,656605,0.576,1.001,0,10.193429,4.5,4.5 +3459,0,0.375405,1,1,1,2,3,,4,3,10 Mile,Rd,656510,7.803,8.178,0,9.009725,3.7,5 +18986,0,0.273455,1,1,0,2,3,,4,3,8 Mile,Rd,1680705,2.016,2.289,0,6.562915,3.7,5 +26868,0,0.558866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.412792,0.15,4 +3040,0,0.576178,1,1,0,2,4,,4,3,Beck,Rd,656605,0,0.576,0,13.828271,4.5,4.5 +3030,0,0.50172,1,1,0,2,4,,4,3,Beck,Rd,656605,1.502,2.004,0,12.041277,4.5,4.5 +3464,0,0.415566,1,1,0,2,3,,4,3,10 Mile,Rd,656510,7.388,7.803,0,9.973572,3.7,5 +3039,0,0.127415,1,1,0,2,4,,4,3,Beck,Rd,656605,1.001,1.128,0,3.057956,4.5,4.5 +3348,0,0.374156,1,1,0,2,4,,4,3,Beck,Rd,656605,1.128,1.502,0,8.979748,4.5,4.5 +3011,0,0.319094,1,1,0,2,5,,3,3,Taft,Rd,656608,0,0.319,0,7.658247,8,4.5 +18411,0,0.599121,1,1,0,2,3,,4,3,8 Mile,Rd,1680705,2.41,3.009,0,14.378905,3.7,5 +26851,0,0.510797,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.259136,0.15,4 +18734,0,0.121024,1,1,0,2,3,,4,3,8 Mile,Rd,1680705,2.289,2.41,0,2.904585,3.7,5 +26852,0,0.26423,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.341513,0.15,4 +3325,0,0.060606,1,1,0,2,5,,4,3,Taft,Rd,656608,0.498,0.559,0,1.454537,5.8,4.5 +1318,0,0.609187,1,1,0,2,4,,4,3,9 Mile,Rd,633603,6.235,6.844,0,14.620481,4.5,4.5 +3006,0,0.582806,1,1,0,2,5,,4,3,Taft,Rd,656608,1.416,1.998,0,13.987339,5.8,4.5 +3449,0,0.53504,1,1,1,2,3,,4,3,10 Mile,Rd,656510,8.276,8.811,0,12.840971,3.7,5 +26853,0,0.751521,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.036504,0.15,4 +26854,0,0.529427,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.706259,0.15,4 +26856,0,0.277047,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.649116,0.15,4 +3119,0,0.097477,1,1,1,2,3,,4,3,10 Mile,Rd,656510,8.178,8.276,0,2.339455,3.7,5 +3319,0,0.416016,1,1,0,2,5,,4,3,Taft,Rd,656608,1,1.416,0,9.984383,5.8,4.5 +11448,1,0.838228,3,0,0,1,1,,4,2,E I 94,,1576405,5.579,6.417,0,,0.8,7.5 +14318,-1,0.684481,0,3,0,1,1,,4,2,W I 94,,1588802,5.678,6.363,0,,0.8,7.5 +15739,0,0.061636,2,2,1,2,3,,4,2,Ford,Rd,0,0,0,0,1.479259,3.7,5 +15810,1,0.384049,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,6.148,6.532,0,9.217165,3.7,5 +15858,0,0.498385,2,2,0,2,4,,3,2,Venoy,Rd,1599408,0,0.498,0,11.961232,6,4.5 +15861,0,0.315646,1,1,0,2,5,,3,2,Howe,Rd,4712012,0.181,0.496,0,7.575509,8,4.5 +16428,0,0.395251,1,1,0,2,4,,3,2,Cherry Hill,Rd,1607409,5.877,6.273,0,9.486023,6,4.5 +16440,-1,1.541746,0,3,0,1,1,,4,2,S I 275,,1607610,12.587,14.128,0,,0.8,7.5 +16441,-1,1.737041,0,3,0,1,1,,4,2,S I 275,,1607610,10.168,11.904,0,,0.8,7.5 +16501,0,0.272687,1,1,0,2,4,,3,2,Palmer,Rd,1607406,3.016,3.289,0,6.544478,6,4.5 +16760,1,1.451361,3,0,0,1,1,,4,2,N I 275,,1607208,12.521,13.972,0,,0.8,7.5 +16767,1,1.807045,3,0,0,1,1,,4,2,N I 275,,1607208,10.015,11.821,0,,0.8,7.5 +16914,-1,0.59181,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4718970,0,0.592,0,14.203435,4.5,4.5 +17725,0,0.359319,1,1,0,2,4,,3,2,Hannan,Rd,1710309,7.48,7.839,0,8.62365,6,4.5 +17772,0,0.589125,1,1,0,2,4,,4,2,Tyler,Rd,1675701,3.489,4.078,0,14.138994,4.5,4.5 +17907,0,0.134841,1,1,0,2,4,,4,2,Van Born,Rd,1670110,2.998,3.133,0,3.236187,4.5,4.5 +18285,0,0.771599,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,0.297,1.068,0,18.518387,5.8,4.5 +18433,0,0.27236,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,0,0.272,0,6.536651,8,4.5 +18465,0,0.570459,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.401,8.972,0,13.691025,6,4.5 +19231,0,0.746846,1,1,0,2,5,,4,2,South Service,Rd,1811006,5.699,6.445,0,17.924296,5.8,4.5 +21532,0,0.889587,1,1,0,2,5,,4,2,North Service,Rd,4603886,5.69,6.579,0,21.350095,5.8,4.5 +22537,0,0.654394,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,4.226,4.88,0,15.705445,4.5,4.5 +22921,0,0.445323,2,2,0,2,3,,4,2,Belleville,Rd,4705580,4.049,4.495,0,10.68776,3.7,5 +22991,0,0.525789,1,1,0,2,4,,4,2,Huron River,Dr,4705582,2.951,3.477,0,12.618935,4.5,4.5 +23268,-1,0.376684,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,6.129,6.506,0,9.040419,3.7,5 +24063,0,0.360308,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.878,6.239,0,8.64739,4.5,4.5 +24480,0,0.346931,2,2,1,2,3,,3,2,Wayne,Rd,4719470,5.321,5.668,0,8.32634,5,5 +31254,0,0.521082,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.505965,0.15,4 +31554,0,0.598162,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.355881,0.15,4 +31561,0,0.392491,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.419787,0.15,4 +31565,0,0.512741,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.305786,0.15,4 +31568,0,0.359532,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.628764,0.15,4 +31569,0,0.396252,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.510047,0.15,4 +31570,0,0.342234,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.213614,0.15,4 +31571,0,0.307439,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.378542,0.15,4 +31582,0,0.840137,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,20.163298,0.15,4 +33792,0,0.288401,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.921635,0.15,4 +33793,0,0.927493,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,22.259834,0.15,4 +33941,0,0.323209,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.757008,0.15,4 +33963,0,0.858412,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,20.601883,0.15,4 +33964,0,0.524629,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.591102,0.15,4 +10977,1,1.701979,3,0,0,1,1,,4,2,E I 94,,1576405,3.348,5.049,0,,0.8,7.5 +14121,-1,1.651166,0,3,0,1,1,,4,2,W I 94,,1588802,3.368,5.018,0,,0.8,7.5 +16943,0,0.993683,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,0.334,1.327,0,23.848403,4.5,4.5 +18136,0,0.465525,1,1,0,2,4,,4,2,Tyler,Rd,1675701,1.945,2.411,0,11.172611,4.5,4.5 +18315,0,0.786489,1,1,0,2,4,,4,2,Van Born,Rd,1670110,1.333,2.12,0,18.875745,4.5,4.5 +19232,0,1.145059,1,1,0,2,5,,4,2,South Service,Rd,1811006,4.554,5.699,0,27.48141,5.8,4.5 +21745,0,1.249742,1,1,0,2,5,,4,2,North Service,Rd,4603886,4.441,5.69,0,29.993817,5.8,4.5 +22927,0,0.476975,1,1,0,2,4,,4,2,Huron River,Dr,4705582,1.148,1.625,0,11.447394,4.5,4.5 +22943,0,0.505339,1,1,0,2,3,,4,2,Belleville,Rd,4705580,1.884,2.389,0,12.128137,3.7,5 +23530,0,0.576843,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,1.825,2.401,0,13.844238,4.5,4.5 +31246,0,0.505341,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.128178,0.15,4 +31250,0,0.526657,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.639771,0.15,4 +31252,0,0.495409,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.889826,0.15,4 +31364,0,0.588283,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.118802,0.15,4 +31365,0,0.451741,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.841776,0.15,4 +31599,0,1.045052,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,25.081244,0.15,4 +14416,1,0.393969,1,0,0,1,1,ROF,4,2,W I 94/Belleville,RAMP,1588806,0,0.394,0,,2.24,5 +19028,0,0.677489,1,1,0,2,4,,4,2,Tyler,Rd,1675701,0.925,1.603,0,16.25974,4.5,4.5 +19234,0,1.090909,1,1,0,2,5,,4,2,South Service,Rd,1811006,3.224,4.314,0,26.181808,5.8,4.5 +21247,1,0.325987,1,0,0,1,1,RON,4,2,S Belleville/W I 94,RAMP,4700020,0,0.326,0,,1.09,4 +22024,0,1.119579,1,1,0,2,5,,4,2,North Service,Rd,4603886,3.322,4.441,0,26.869898,5.8,4.5 +23165,0,0.058611,2,2,0,2,3,,4,2,Belleville,Rd,4705580,0.977,1.035,0,1.406663,3.7,5 +31248,0,0.5429,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.029599,0.15,4 +31372,0,0.154182,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.700359,0.15,4 +31597,0,1.016037,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.384891,0.15,4 +31600,0,0.47547,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.411283,0.15,4 +10799,1,0.40035,3,0,0,1,1,,4,2,E I 94,,1576405,2.947,3.348,0,,0.8,7.5 +11254,1,0.380655,1,0,0,1,1,RON,4,2,N Belleville/E I 94,RAMP,1576503,0,0.381,0,,1.09,4 +13739,1,0.224087,1,0,0,1,1,RON,4,2,N Belleville/W I 94,RAMP,1588805,0,0.224,0,,1.09,4 +14432,-1,0.290749,0,3,0,1,1,,4,2,W I 94,,1588802,2.748,3.039,0,,0.8,7.5 +23302,0,0.099975,1,1,0,2,4,,4,2,Main,St,4705581,0.11,0.21,0,2.399411,4.5,4.5 +10725,1,0.382603,1,0,0,1,1,ROF,4,2,E I 94/Belleville,RAMP,1576410,0,0.383,0,,2.24,5 +11013,1,0.310806,3,0,0,1,1,,4,2,E I 94,,1576405,2.637,2.947,0,,0.8,7.5 +22972,0,0.172362,1,1,0,2,4,,4,2,Belleville,Rd,4705580,0.576,0.748,0,4.136683,4.5,4.5 +23294,0,0.355445,2,2,1,2,4,,4,2,Belleville,Rd,4705580,0.22,0.576,0,8.53067,4.5,4.5 +11434,1,0.238444,1,0,0,1,1,RON,4,2,S Belleville/E I 94,RAMP,1576501,0,0.238,0,,1.09,4 +23508,0,0.118896,2,2,0,2,3,,4,2,Belleville,Rd,4705580,0.858,0.977,0,2.853503,3.7,5 +23701,0,0.06482,2,2,0,2,3,,4,2,Belleville,Rd,4705580,0.793,0.858,0,1.555676,3.7,5 +22698,0,0.045001,2,2,0,2,4,,4,2,Belleville,Rd,4705580,0.748,0.793,0,1.080031,4.5,4.5 +14375,-1,0.329369,0,3,0,1,1,,4,2,W I 94,,1588802,3.039,3.368,0,,0.8,7.5 +23247,0,0.482511,2,2,1,2,3,,4,2,Belleville,Rd,4705580,1.401,1.884,0,11.580263,3.7,5 +23588,0,0.309284,2,2,1,2,3,,4,2,Belleville,Rd,4705580,1.092,1.401,0,7.422817,3.7,5 +22582,0,0.037077,2,2,0,2,3,,4,2,Belleville,Rd,4705580,1.055,1.092,0,0.889842,3.7,5 +22874,0,0.019886,2,2,0,2,3,,4,2,Belleville,Rd,4705580,1.035,1.055,0,0.477259,3.7,5 +23221,0,0.560244,1,1,0,2,4,,4,2,Huron River,Dr,4705582,0.588,1.148,0,13.445845,4.5,4.5 +19233,0,0.2399,1,1,0,2,5,,4,2,South Service,Rd,1811006,4.314,4.554,0,5.757608,5.8,4.5 +18557,0,0.342755,1,1,0,2,4,,4,2,Tyler,Rd,1675701,1.603,1.945,0,8.226127,4.5,4.5 +31598,0,0.480276,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.526619,0.15,4 +16946,0,0.068539,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,0.265,0.334,0,1.644945,4.5,4.5 +17927,0,0.581035,1,1,0,2,4,,4,2,Van Born,Rd,1670110,0,0.581,0,13.944836,4.5,4.5 +23561,0,0.29417,2,2,0,2,3,,4,2,Belleville,Rd,4705580,3.29,3.584,0,7.060088,3.7,5 +31247,0,0.510744,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.25785,0.15,4 +31255,0,0.282756,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.786137,0.15,4 +31257,0,0.532979,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.791499,0.15,4 +31802,0,0.526543,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.637028,0.15,4 +16948,1,0.159591,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,3.115,3.275,0,3.830182,4.5,4.5 +21554,-1,0.175826,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,3.152,3.328,0,4.219818,4.5,4.5 +22653,0,0.477009,1,1,0,2,3,,4,2,Belleville,Rd,4705580,2.389,2.866,0,11.448208,3.7,5 +22554,0,0.405546,2,2,0,2,3,,4,2,Belleville,Rd,4705580,2.884,3.29,0,9.733096,3.7,5 +22848,0,0.018782,1,1,0,2,3,,4,2,Belleville,Rd,4705580,2.866,2.884,0,0.450779,3.7,5 +23216,0,0.465714,2,2,0,2,3,,4,2,Belleville,Rd,4705580,3.584,4.049,0,11.177136,3.7,5 +31566,0,0.385784,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.258813,0.15,4 +31249,0,0.498435,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.96244,0.15,4 +17926,0,0.719842,1,1,0,2,4,,4,2,Van Born,Rd,1670110,0.614,1.333,0,17.276206,4.5,4.5 +18316,0,0.032919,1,1,0,2,4,,4,2,Van Born,Rd,1670110,0.581,0.614,0,0.790046,4.5,4.5 +10764,1,0.250037,3,0,0,1,1,,4,2,E I 94,,1576405,5.049,5.299,0,,0.8,7.5 +11255,1,0.319858,1,0,0,1,1,ROF,4,2,E I 94/Haggerty,RAMP,1576504,0,0.32,0,,2.24,5 +13655,1,0.313074,1,0,0,1,1,RON,4,2,S Haggerty/W I 94,RAMP,1588807,0,0.313,0,,1.09,4 +13761,1,0.370035,1,0,0,1,1,ROF,4,2,W I 94/Haggerty,RAMP,1588809,0,0.37,0,,2.24,5 +14322,1,0.205853,1,0,0,1,1,RON,4,2,N Haggerty/W I 94,RAMP,1588808,0,0.206,0,,1.09,4 +14382,-1,0.350302,0,3,0,1,1,,4,2,W I 94,,1588802,5.018,5.368,0,,0.8,7.5 +18179,0,0.465812,1,1,0,2,4,,4,2,Tyler,Rd,1675701,3.024,3.489,0,11.179491,4.5,4.5 +22601,0,0.471379,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,0.887,1.358,0,11.313086,4.5,4.5 +22640,0,0.771953,1,1,0,2,4,,4,2,Huron River,Dr,4705582,1.625,2.397,0,18.526876,4.5,4.5 +22959,0,0.065548,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.774,0.84,0,1.573164,4.5,4.5 +31366,0,0.718278,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.238665,0.15,4 +31363,0,0.025517,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.6124,0.15,4 +17713,0,0.613342,1,1,0,2,4,,4,2,Tyler,Rd,1675701,2.411,3.024,0,14.720208,4.5,4.5 +23673,0,0.466736,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,1.358,1.825,0,11.201676,4.5,4.5 +10744,1,0.279729,3,0,0,1,1,,4,2,E I 94,,1576405,5.299,5.579,0,,0.8,7.5 +11442,1,0.279246,1,0,0,1,1,RON,4,2,N Haggerty/E I 94,RAMP,1576507,0,0.279,0,,1.09,4 +14133,-1,0.309951,0,3,0,1,1,,4,2,W I 94,,1588802,5.368,5.678,0,,0.8,7.5 +23310,0,0.36827,1,1,0,2,4,,4,2,Huron River,Dr,4705582,2.583,2.951,0,8.838482,4.5,4.5 +23528,0,0.534864,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,0,0.535,0,12.836748,4.5,4.5 +23645,0,0.186109,1,1,0,2,4,,4,2,Huron River,Dr,4705582,2.397,2.583,0,4.466623,4.5,4.5 +23529,0,0.093919,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.535,0.629,0,2.254049,4.5,4.5 +10738,1,0.224989,1,0,0,1,1,RON,4,2,S Haggerty/E I 94,RAMP,1576505,0,0.225,0,,1.09,4 +23338,0,0.06695,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.629,0.696,0,1.606792,4.5,4.5 +23098,0,0.078765,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.696,0.774,0,1.890363,4.5,4.5 +31550,0,0.111451,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.674835,0.15,4 +22751,0,0.047113,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.84,0.887,0,1.130719,4.5,4.5 +16693,-1,0.682619,0,3,0,1,1,,4,2,S I 275,,1607610,11.904,12.587,0,,0.8,7.5 +16768,1,0.401274,1,0,0,1,1,ROF,4,2,S I 275/Ecorse,RAMP,1600505,0,0.401,0,,2.24,5 +16934,0,0.13267,2,2,1,2,4,,4,2,Ecorse,Rd,5495384,1.908,2.041,0,3.184085,4.5,4.5 +17925,0,0.524764,1,1,0,2,4,,4,2,Van Born,Rd,1670110,2.12,2.644,0,12.594333,4.5,4.5 +23099,0,0.686528,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,2.837,3.523,0,16.476678,4.5,4.5 +31253,0,0.535798,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.859149,0.15,4 +16938,0,0.581732,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,1.327,1.908,0,13.961576,4.5,4.5 +23266,0,0.435987,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,2.401,2.837,0,10.463685,4.5,4.5 +31245,0,0.507788,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.186901,0.15,4 +31601,0,0.535903,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.861661,0.15,4 +22893,0,0.386396,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,3.523,3.91,0,9.273504,4.5,4.5 +31251,0,0.551302,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.231237,0.15,4 +22752,0,0.316419,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,3.91,4.226,0,7.594046,4.5,4.5 +16496,1,0.700617,3,0,0,1,1,,4,2,N I 275,,1607208,11.821,12.521,0,,0.8,7.5 +16762,1,0.434444,1,0,0,1,1,ROF,4,2,N I 275/Ecorse,RAMP,1600510,0,0.434,0,,2.24,5 +16765,1,0.37755,1,0,0,1,1,RON,4,2,Ecorse/S I 275,RAMP,1600507,0,0.377,0,,1.09,4 +16763,1,0.360399,1,0,0,1,1,RON,4,2,Ecorse/N I 275,RAMP,1600508,0,0.36,0,,1.09,4 +16924,0,0.318604,2,2,1,2,4,,4,2,Ecorse,Rd,5495384,2.041,2.36,0,7.646488,4.5,4.5 +18295,0,0.354217,1,1,0,2,4,,4,2,Van Born,Rd,1670110,2.644,2.998,0,8.501206,4.5,4.5 +31552,0,0.659452,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.826859,0.15,4 +15216,0,0.497933,2,2,1,2,3,,4,2,Ford,Rd,1595510,3.988,4.485,0,11.950383,3.7,5 +15820,1,0.497714,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,4.496,4.994,0,11.945138,3.7,5 +16202,0,0.557723,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,3.923,4.48,0,13.385359,4.5,4.5 +16290,0,0.499399,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.01,1.509,0,11.985572,4.5,4.5 +16488,1,2.35956,3,0,0,1,1,,4,2,N I 275,,1607208,14.6,16.959,0,,0.8,7.5 +16577,-1,2.342989,0,3,0,1,1,,4,2,S I 275,,1607610,14.718,17.06,0,,0.8,7.5 +17824,0,0.532427,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,3.021,3.554,0,12.77825,5.8,4.5 +17943,0,0.534311,1,1,0,2,5,,4,2,Saltz,Rd,1680609,3.229,3.763,0,12.823458,5.8,4.5 +18410,0,0.516502,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.006,4.522,0,12.396037,5.8,4.5 +23081,-1,0.494964,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,4.471,4.966,0,11.879134,3.7,5 +23096,0,1.010546,1,1,0,2,7,,4,2,Lotz,Rd,4705519,1.026,2.036,0,24.253095,6.55,4.5 +23208,0,0.498958,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,1.963,2.462,0,11.975003,3.7,5 +23637,0,0.506356,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,6.416,6.923,0,12.152555,4.5,4.5 +24217,0,0.504858,1,1,0,2,5,,4,2,Lilley,Rd,4710390,1.623,2.128,0,12.116584,5.8,4.5 +31260,0,0.509381,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.225147,0.15,4 +31261,0,0.498909,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.973816,0.15,4 +31262,0,0.504563,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.10951,0.15,4 +31270,0,0.476605,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.438531,0.15,4 +31272,0,0.577524,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.860583,0.15,4 +31273,0,0.507854,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.188486,0.15,4 +31604,0,0.513408,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.321804,0.15,4 +31610,0,0.491043,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.785033,0.15,4 +31937,0,0.491911,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.805863,0.15,4 +33754,0,0.507472,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.179325,0.15,4 +33755,0,0.512816,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.307589,0.15,4 +15823,1,0.395345,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.593,3.989,0,9.488286,3.7,5 +16524,0,0.509184,1,1,0,2,4,,4,2,Palmer,Rd,1607406,0.501,1.01,0,12.220413,4.5,4.5 +17840,0,0.663419,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,1.883,2.547,0,15.922046,5.8,4.5 +21621,0,0.513074,1,1,0,2,4,,4,2,Geddes,Rd,4603888,3.513,4.026,0,12.313768,4.5,4.5 +22736,-1,0.524495,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,3.437,3.961,0,12.587883,3.7,5 +23632,0,0.490065,1,1,0,2,3,,4,2,Canton Center,Rd,4706530,0.973,1.462,0,11.76157,3.7,5 +31421,0,0.672837,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.148097,0.15,4 +31425,0,0.503544,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.08505,0.15,4 +31613,0,0.257194,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.172667,0.15,4 +33748,0,0.598314,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.359527,0.15,4 +15824,1,0.231495,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.362,3.593,0,5.555883,3.7,5 +22487,0,0.623173,1,1,0,2,3,,4,2,Canton Center,Rd,4706530,0.35,0.973,0,14.956156,3.7,5 +33747,0,0.308359,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.400605,0.15,4 +15825,1,0.113724,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.248,3.362,0,2.729384,3.7,5 +22839,0,0.22353,1,1,1,2,3,,4,2,Canton Center,Rd,4706530,0,0.224,0,5.36473,3.7,5 +23121,0,0.18645,1,1,0,2,5,,4,2,Old Canton Center,Rd,4706529,0,0.186,0,4.4748,5.8,4.5 +23005,-1,0.102219,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,3.335,3.437,0,2.453247,3.7,5 +22634,0,0.019535,1,1,1,2,3,,4,2,Belleville,Rd,4705580,4.495,4.514,0,0.468848,3.7,5 +22700,0,0.126158,1,1,1,2,3,,4,2,Canton Center,Rd,4706530,0.224,0.35,0,3.027784,3.7,5 +16530,0,0.277108,1,1,0,2,4,,4,2,Palmer,Rd,1607406,0,0.277,0,6.650584,4.5,4.5 +18222,0,0.474786,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,2.547,3.021,0,11.394859,5.8,4.5 +23366,0,0.501113,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,1.462,1.963,0,12.026722,3.7,5 +31603,0,0.248886,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.973253,0.15,4 +31616,0,0.503454,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.082902,0.15,4 +16298,0,0.224014,1,1,0,2,4,,4,2,Palmer,Rd,1607406,0.277,0.501,0,5.376347,4.5,4.5 +31265,0,0.248888,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.973309,0.15,4 +15821,1,0.188951,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,4.307,4.496,0,4.534825,3.7,5 +18235,0,0.557267,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,1.326,1.883,0,13.374408,5.8,4.5 +23413,-1,0.458105,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,4.013,4.471,0,10.994513,3.7,5 +31259,0,0.597617,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.342817,0.15,4 +31614,0,0.494787,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.874884,0.15,4 +33749,0,0.578707,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.888973,0.15,4 +15822,1,0.318701,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.989,4.307,0,7.648813,3.7,5 +17901,0,0.218768,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,1.068,1.287,0,5.250441,5.8,4.5 +21424,-1,0.051565,0,1,0,2,4,,4,2,Geddes,Rd,4603888,4.026,4.078,0,1.23756,4.5,4.5 +22292,-1,0.051724,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,3.961,4.013,0,1.241388,3.7,5 +17894,0,0.0205,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,1.306,1.326,0,0.492007,5.8,4.5 +18279,0,0.019259,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,1.287,1.306,0,0.462223,5.8,4.5 +31435,0,0.501337,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.032098,0.15,4 +14756,0,0.502591,2,2,1,2,3,,4,2,Ford,Rd,1595510,3.485,3.988,0,12.06219,3.7,5 +16460,0,0.441108,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,3.482,3.923,0,10.586592,4.5,4.5 +17815,0,0.186697,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,4.368,4.555,0,4.480731,5.8,4.5 +18232,0,0.504905,1,1,0,2,5,,4,2,Saltz,Rd,1680609,2.725,3.229,0,12.117717,5.8,4.5 +18874,0,0.507663,1,1,0,2,5,,4,2,Hanford,Rd,1676006,3.499,4.006,0,12.183919,5.8,4.5 +23552,0,0.236509,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.232,3.468,0,5.676224,3.7,5 +23973,0,0.263787,1,1,0,2,5,,4,2,Morton Taylor,Rd,4706622,0.237,0.501,0,6.33089,5.8,4.5 +31267,0,0.493901,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.853622,0.15,4 +31439,0,0.2508,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.019203,0.15,4 +31638,0,0.512709,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.305028,0.15,4 +31935,0,0.512059,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.289411,0.15,4 +33745,0,0.491232,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.789575,0.15,4 +16461,0,0.180087,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,2.983,3.163,0,4.322094,4.5,4.5 +17816,0,0.252383,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,3.8,4.052,0,6.057181,5.8,4.5 +18553,0,0.278086,1,1,0,2,5,,4,2,Saltz,Rd,1680609,2.225,2.503,0,6.674067,5.8,4.5 +22840,0,0.210801,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,2.757,2.967,0,5.059222,3.7,5 +31264,0,0.253167,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.075998,0.15,4 +31440,0,0.250552,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.013237,0.15,4 +31620,0,0.252044,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.049054,0.15,4 +22974,0,0.2946,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,2.462,2.757,0,7.070391,3.7,5 +22625,0,0.15313,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,2.967,3.12,0,3.675118,3.7,5 +22488,0,0.111059,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.12,3.232,0,2.665421,3.7,5 +16207,0,0.318523,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,3.163,3.482,0,7.64456,4.5,4.5 +31618,0,0.250084,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.00201,0.15,4 +31619,0,0.259616,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.230796,0.15,4 +18216,0,0.246699,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,3.554,3.8,0,5.920766,5.8,4.5 +18215,0,0.31565,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,4.052,4.368,0,7.575598,5.8,4.5 +18454,0,0.221354,1,1,0,2,5,,4,2,Saltz,Rd,1680609,2.503,2.725,0,5.312503,5.8,4.5 +31615,0,0.256733,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.161593,0.15,4 +31617,0,0.252428,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.05827,0.15,4 +15218,0,0.236452,2,2,1,2,3,,4,2,Ford,Rd,1595510,2.986,3.222,0,5.674841,3.7,5 +17810,0,0.220192,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,4.834,5.054,0,5.284604,4.5,4.5 +17903,0,0.34397,1,1,0,2,5,,4,2,Hanford,Rd,1676006,2.997,3.341,0,8.25529,5.8,4.5 +23122,0,0.28015,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.693,3.973,0,6.723603,3.7,5 +31444,0,0.248017,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.952399,0.15,4 +31475,0,0.263232,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.317556,0.15,4 +31621,0,0.238876,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.733023,0.15,4 +23367,0,0.225099,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.468,3.693,0,5.402372,3.7,5 +22975,0,0.290711,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.973,4.264,0,6.977072,3.7,5 +15009,0,0.263198,2,2,1,2,3,,4,2,Ford,Rd,1595510,3.222,3.485,0,6.316762,3.7,5 +18211,0,0.279796,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,4.555,4.834,0,6.715094,4.5,4.5 +31622,0,0.259783,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.234795,0.15,4 +31623,0,0.285076,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.841829,0.15,4 +17471,0,0.158017,1,1,0,2,5,,4,2,Hanford,Rd,1676006,3.341,3.499,0,3.7924,5.8,4.5 +18194,0,0.300856,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.054,5.355,0,7.220549,4.5,4.5 +31473,0,0.239089,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.738127,0.15,4 +31602,0,0.239087,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.738077,0.15,4 +31608,0,0.027056,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.649356,0.15,4 +31936,0,0.269729,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.473488,0.15,4 +23305,0,0.237392,1,1,0,2,5,,4,2,Morton Taylor,Rd,4706622,0,0.237,0,5.697399,5.8,4.5 +23971,0,0.219578,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,0.743,0.963,0,5.269878,4.5,4.5 +23972,0,0.242439,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,0.501,0.743,0,5.818534,4.5,4.5 +31611,0,0.010304,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.247305,0.15,4 +23970,0,0.257981,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,0.963,1.221,0,6.191548,4.5,4.5 +31483,0,0.029097,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.698326,0.15,4 +15814,1,0.091809,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.629,5.721,0,2.203406,3.7,5 +15873,1,0.252311,1,0,0,1,1,RON,4,2,W US 12/S I 275,RAMP,1599201,0,0.252,0,,1.09,4 +15874,1,0.066525,1,0,0,2,3,RSF,4,2,S I 275/US 12,RAMP,1599110,0.386,0.453,0,1.596601,3.7,5 +15875,1,0.386456,1,0,0,1,1,ROF,4,2,S I 275/US 12,RAMP,1599110,0,0.386,0,,2.24,5 +16520,0,0.510572,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.993,2.503,0,12.253717,4.5,4.5 +16801,1,0.263975,1,0,0,1,1,RON,4,2,E US 12/S I 275,RAMP,1600304,0,0.264,0,,1.09,4 +22777,0,0.679474,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,5.231,5.91,0,16.307386,4.5,4.5 +23440,0,1.026343,1,1,0,2,7,,4,2,Lotz,Rd,4705519,0,1.026,0,24.63222,6.55,4.5 +23624,-1,0.078938,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.629,5.708,0,1.894511,3.7,5 +24222,0,0.651431,1,1,0,2,5,,4,2,Lilley,Rd,4710390,0.47,1.121,0,15.634352,5.8,4.5 +31577,0,0.402043,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.649034,0.15,4 +31578,0,0.492286,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.814875,0.15,4 +33751,0,0.543349,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.040377,0.15,4 +15815,1,0.128088,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.501,5.629,0,3.0741,3.7,5 +15818,1,0.173304,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.134,5.307,0,4.159303,3.7,5 +22904,-1,0.19486,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.28,5.475,0,4.676639,3.7,5 +23193,-1,0.170114,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.11,5.28,0,4.082743,3.7,5 +23674,0,0.022859,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,4.88,4.903,0,0.548613,4.5,4.5 +24223,0,0.469936,1,1,0,2,5,,4,2,Lilley,Rd,4710390,0,0.47,0,11.278458,5.8,4.5 +31258,0,0.537654,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.903691,0.15,4 +31624,0,0.518817,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.451597,0.15,4 +33750,0,0.352291,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.454993,0.15,4 +15819,1,0.14013,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,4.994,5.134,0,3.363112,3.7,5 +23544,-1,0.144103,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,4.966,5.11,0,3.458482,3.7,5 +31567,0,0.429809,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.315422,0.15,4 +31596,0,0.448737,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.769696,0.15,4 +15816,1,0.19428,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.307,5.501,0,4.662729,3.7,5 +23046,0,0.327821,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,4.903,5.231,0,7.867712,4.5,4.5 +31625,0,0.204947,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.918727,0.15,4 +22615,-1,0.15432,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.475,5.629,0,3.703673,3.7,5 +16523,0,0.321556,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.509,1.831,0,7.717333,4.5,4.5 +22492,0,0.506649,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,5.91,6.416,0,12.159582,4.5,4.5 +24221,0,0.502433,1,1,0,2,5,,4,2,Lilley,Rd,4710390,1.121,1.623,0,12.058402,5.8,4.5 +31271,0,0.242888,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.829302,0.15,4 +33753,0,0.51714,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.411354,0.15,4 +33752,0,0.247821,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.947711,0.15,4 +16289,0,0.162154,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.831,1.993,0,3.891688,4.5,4.5 +31508,0,0.129322,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.103739,0.15,4 +15811,1,0.224198,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.924,6.148,0,5.38074,3.7,5 +16636,-1,0.306523,0,3,0,1,1,,4,2,S I 275,,1607610,14.128,14.434,0,,0.8,7.5 +16757,1,0.343672,3,0,0,1,1,,4,2,N I 275,,1607208,14.257,14.6,0,,0.8,7.5 +16788,1,0.400543,1,0,0,1,1,ROF,4,2,N I 275/US 12,RAMP,1600306,0,0.4,0,,2.24,5 +16791,1,0.201086,1,0,0,1,1,RON,4,2,E US 12/N I 275,RAMP,1600305,0,0.201,0,,1.09,4 +22602,-1,0.093589,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.992,6.086,0,2.246124,3.7,5 +31563,0,0.518774,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.450584,0.15,4 +31564,0,0.499281,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.98274,0.15,4 +16489,1,0.284452,3,0,0,1,1,,4,2,N I 275,,1607208,13.972,14.257,0,,0.8,7.5 +15812,1,0.050642,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.874,5.924,0,1.215398,3.7,5 +15872,1,0.310103,1,0,0,1,1,RON,4,2,W US 12/N I 275,RAMP,1599202,0,0.31,0,,1.09,4 +16386,-1,0.283361,0,3,0,1,1,,4,2,S I 275,,1607610,14.434,14.718,0,,0.8,7.5 +23282,-1,0.164914,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.708,5.873,0,3.957935,3.7,5 +15813,1,0.152768,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.721,5.874,0,3.666441,3.7,5 +22894,-1,0.073592,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.919,5.992,0,1.766212,3.7,5 +22967,-1,0.046127,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.873,5.919,0,1.107055,3.7,5 +16787,1,0.0355,1,0,0,2,3,RSF,4,2,N I 275/US 12,RAMP,1600306,0.4,0.436,0,0.851992,3.7,5 +31580,0,0.48722,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.693272,0.15,4 +23609,-1,0.043628,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,6.086,6.129,0,1.047064,3.7,5 +16507,0,0.329581,1,1,0,2,4,,4,2,Palmer,Rd,1607406,2.587,2.917,0,7.909941,4.5,4.5 +31631,0,0.57189,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.725361,0.15,4 +16284,0,0.084005,1,1,0,2,4,,4,2,Palmer,Rd,1607406,2.503,2.587,0,2.016126,4.5,4.5 +18243,0,0.491693,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.972,9.463,0,11.800637,6,4.5 +16268,0,0.099754,1,1,0,2,4,,4,2,Palmer,Rd,1607406,2.917,3.016,0,2.394092,4.5,4.5 +14799,1,0.318311,1,0,0,1,1,RON,4,2,E M 153/S I 275,RAMP,1595705,0,0.318,0,,1.09,4 +14842,1,0.411949,1,0,0,1,1,ROF,4,2,N I 275/M 153,RAMP,1595801,0,0.412,0,,2.24,5 +15138,0,0.11575,3,3,1,2,3,,4,2,Ford,Rd,1595510,5.209,5.324,0,2.777991,3.7,5 +15325,1,0.246771,1,0,0,1,1,RON,4,2,W M 153/S I 275,RAMP,1595707,0,0.247,0,,1.09,4 +15625,1,0.377239,2,0,0,1,1,ROF,4,2,S I 275/M 153,RAMP,1595706,0,0.377,0,,2.24,5 +16187,0,0.372751,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,5.118,5.49,0,8.946026,4.5,4.5 +16350,-1,0.340698,0,3,0,1,1,,4,2,S I 275,,1607610,17.06,17.4,0,,0.8,7.5 +16756,1,0.302101,3,0,0,1,1,,4,2,N I 275,,1607208,16.959,17.261,0,,0.8,7.5 +23212,0,0.527424,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,7.398,7.925,0,12.65818,4.5,4.5 +24064,0,0.611749,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.267,5.878,0,14.681979,4.5,4.5 +24207,0,0.220449,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.908,3.128,0,5.290772,5.8,4.5 +31606,0,0.506221,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.149294,0.15,4 +31628,0,0.504903,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.117665,0.15,4 +16457,0,0.319303,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,4.48,4.799,0,7.663283,4.5,4.5 +23371,0,0.475701,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,6.923,7.398,0,11.416823,4.5,4.5 +24212,0,0.284554,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.313,2.597,0,6.829291,5.8,4.5 +31627,0,0.248202,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.956851,0.15,4 +31632,0,0.501516,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.036385,0.15,4 +33746,0,0.505669,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.136057,0.15,4 +24216,0,0.185073,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.128,2.313,0,4.441754,5.8,4.5 +24211,0,0.143651,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.597,2.741,0,3.447612,5.8,4.5 +31605,0,0.250579,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.013898,0.15,4 +24210,0,0.166854,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.741,2.908,0,4.004507,5.8,4.5 +16443,0,0.141919,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,4.976,5.118,0,3.406055,4.5,4.5 +16195,0,0.176608,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,4.799,4.976,0,4.238597,4.5,4.5 +31607,0,0.142119,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.410855,0.15,4 +14753,0,0.177561,2,3,1,2,3,,4,2,Ford,Rd,1595510,4.802,4.98,0,4.261474,3.7,5 +18984,0,0.187218,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.896,5.083,0,4.493243,5.8,4.5 +22844,0,0.18417,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,8.145,8.33,0,4.420078,4.5,4.5 +24199,0,0.276584,1,1,1,2,4,,4,2,Lilley,Rd,4710390,3.384,3.66,0,6.638017,4.5,4.5 +31612,0,0.350702,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.416838,0.15,4 +31634,0,0.182768,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.386441,0.15,4 +31635,0,0.283202,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.796848,0.15,4 +33962,0,0.40639,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.753352,0.15,4 +15006,0,0.317345,2,3,1,2,3,,4,2,Ford,Rd,1595510,4.485,4.802,0,7.616273,3.7,5 +24201,0,0.255792,1,1,1,2,4,,4,2,Lilley,Rd,4710390,3.128,3.384,0,6.139016,4.5,4.5 +17994,0,0.306445,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.522,4.829,0,7.354677,5.8,4.5 +24198,0,0.262869,1,1,0,2,4,,4,2,Lilley,Rd,4710390,3.66,3.923,0,6.308855,4.5,4.5 +31487,0,0.229174,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.500169,0.15,4 +31609,0,0.31448,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.547531,0.15,4 +17574,0,0.067425,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.829,4.896,0,1.618202,5.8,4.5 +15671,0,0.156865,3,3,1,2,3,,4,2,Ford,Rd,1595510,4.98,5.137,0,3.764766,3.7,5 +22979,0,0.220186,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,7.925,8.145,0,5.284455,4.5,4.5 +31636,0,0.100207,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.404961,0.15,4 +15386,0,0.071804,3,2,1,2,3,,4,2,Ford,Rd,1595510,5.137,5.209,0,1.723303,3.7,5 +22629,0,0.352827,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,8.33,8.682,0,8.467845,4.5,4.5 +24066,0,0.202655,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.016,5.219,0,4.863709,4.5,4.5 +24065,0,0.04785,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.219,5.267,0,1.148406,4.5,4.5 +16181,0,0.276607,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,5.601,5.877,0,6.638567,4.5,4.5 +31630,0,0.503803,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.09128,0.15,4 +16434,0,0.110469,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,5.49,5.601,0,2.651253,4.5,4.5 +15003,0,0.177787,2,2,1,2,3,,4,2,Ford,Rd,1595510,5.517,5.694,0,4.266878,3.7,5 +31637,0,0.277292,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.655001,0.15,4 +31639,0,0.291905,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.005713,0.15,4 +14906,1,0.405448,1,0,0,1,1,RON,4,2,W M 153/N I 275,RAMP,1595802,0,0.405,0,,1.09,4 +15213,0,0.115313,2,3,1,2,3,,4,2,Ford,Rd,1595510,5.401,5.517,0,2.767517,3.7,5 +16455,-1,0.283909,0,3,0,1,1,,4,2,S I 275,,1607610,17.4,17.684,0,,0.8,7.5 +16487,1,0.342544,3,0,0,1,1,,4,2,N I 275,,1607208,17.261,17.603,0,,0.8,7.5 +15091,1,0.236454,1,0,0,1,1,RON,4,2,E M 153/N I 275,RAMP,1595710,0,0.236,0,,1.09,4 +15475,0,0.077043,2,3,1,2,3,,4,2,Ford,Rd,1595510,5.324,5.401,0,1.849032,3.7,5 +10860,1,0.704792,3,0,0,1,1,,4,2,E I 94,,1576405,7.155,7.86,0,,0.8,7.5 +13780,-1,0.830284,0,3,0,1,1,,4,2,W I 94,,1588802,7.291,8.121,0,,0.8,7.5 +16911,0,0.595456,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,4.031,4.626,0,14.290937,4.5,4.5 +17504,0,0.51781,1,1,0,2,4,,4,2,Wick,Rd,1682705,1.989,2.507,0,12.427437,4.5,4.5 +18049,0,0.705681,1,1,0,2,4,,3,2,Van Born,Rd,1670203,1.223,1.928,0,16.936352,6,4.5 +18208,0,0.368573,1,1,0,2,4,,4,2,Wick,Rd,1682705,0.997,1.366,0,8.845754,4.5,4.5 +18209,0,0.677895,1,1,0,2,5,,4,2,Tobine,Rd,1682802,0,0.678,0,16.269477,5.8,4.5 +18500,0,0.31078,1,1,0,2,5,,4,2,Cogswell,Rd,1665704,0.226,0.536,0,7.458724,5.8,4.5 +18803,0,0.910716,1,1,0,2,4,,4,2,Hannan,Rd,1710309,5.428,6.339,0,21.857178,4.5,4.5 +19226,0,0.597901,1,1,0,2,4,,4,2,Northline,Rd,1811006,7.764,8.362,0,14.349624,4.5,4.5 +23307,-1,0.148201,0,2,0,2,4,DIV,4,2,Vining,Rd,4706252,0.109,0.257,0,3.556821,4.5,4.5 +23629,0,0.619514,1,1,0,2,5,,4,2,Grant,Rd,4705582,4.469,5.089,0,14.868329,5.8,4.5 +24189,1,0.262122,2,0,0,2,4,DIV,4,2,Vining,Rd,4711341,1.514,1.776,0,6.290919,4.5,4.5 +24411,0,0.58883,1,1,1,2,3,,4,2,Wayne,Rd,4719470,3.266,3.854,0,14.131931,3.7,5 +24446,0,0.100669,1,1,1,2,4,,4,2,Goddard,Rd,4710500,0.238,0.339,0,2.416056,4.5,4.5 +31647,0,1.015986,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.383669,0.15,4 +31649,0,0.460418,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.050034,0.15,4 +31652,0,0.400878,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.621084,0.15,4 +31656,0,0.616671,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.800105,0.15,4 +10729,1,0.355849,3,0,0,1,1,,4,2,E I 94,,1576405,6.799,7.155,0,,0.8,7.5 +10956,1,0.383112,3,0,0,1,1,,4,2,E I 94,,1576405,6.417,6.799,0,,0.8,7.5 +11074,1,0.581948,1,0,0,1,1,RFF,4,2,S I 275/E I 94,RAMP,1576605,0,0.582,0,,0.8,7.5 +12165,-1,0.080097,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0,0.08,0,,0.8,7.5 +13299,1,0.42701,2,0,0,1,1,RFF,4,2,N I 275/E I 94,RAMP,1578402,0,0.427,0,,0.8,7.5 +13383,-1,0.307137,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.463,0.77,0,,0.8,7.5 +13970,1,0.53245,1,0,0,1,1,RFF,4,2,W I 94/N I 275,RAMP,1589401,0,0.532,0,,0.8,7.5 +14075,-1,0.928778,0,3,0,1,1,,4,2,W I 94,,1588802,6.363,7.291,0,,0.8,7.5 +14182,1,0.249996,1,0,0,1,1,RFS,4,2,N I 275/W I 94,RAMP,1589310,0,0.25,0,,0.22,6 +16442,-1,0.354135,0,3,0,1,1,,4,2,S I 275,,1607610,9.254,9.608,0,,0.8,7.5 +16497,1,1.125024,3,0,0,1,1,,4,2,N I 275,,1607208,8.89,10.015,0,,0.8,7.5 +17629,1,0.132795,3,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.588,0.721,0,,0.8,7.5 +17850,0,0.200584,1,1,0,2,4,,4,2,Hannan,Rd,1710309,4.309,4.51,0,4.814016,4.5,4.5 +17851,1,0.360611,3,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.228,0.588,0,,0.8,7.5 +18061,0,0.503197,1,1,0,2,5,,4,2,Wabash,Rd,1665908,0.492,0.995,0,12.07674,5.8,4.5 +18651,0,0.498183,1,1,0,2,4,,4,2,Wick,Rd,1682705,0,0.498,0,11.956393,4.5,4.5 +18652,0,0.822266,1,1,0,2,4,,4,2,Ozga,Rd,1673810,8.566,9.388,0,19.734378,4.5,4.5 +18908,0,0.504545,1,1,0,2,5,,4,2,Tyler,Rd,1682704,0.497,1.002,0,12.109084,5.8,4.5 +19227,0,0.571418,1,1,0,2,4,,4,2,Northline,Rd,1811006,7.193,7.764,0,13.714026,4.5,4.5 +22913,0,0.384842,1,1,0,2,4,,4,2,Huron River,Dr,4705582,4.001,4.386,0,9.23622,4.5,4.5 +23527,0,0.468866,1,1,1,2,4,,4,2,Goddard,Rd,4706477,0,0.469,0,11.252787,4.5,4.5 +24289,1,0.275064,1,0,0,1,1,RFS,4,2,E I 94/N I 275,RAMP,4710287,0,0.275,0,,0.22,6 +31644,0,0.646237,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.50969,0.15,4 +31645,0,0.810163,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.443915,0.15,4 +18469,0,0.491838,1,1,0,2,5,,4,2,Wabash,Rd,1665908,0,0.492,0,11.804102,5.8,4.5 +18802,0,0.495167,1,1,0,2,5,,4,2,Hannan,Rd,1710309,3.491,3.986,0,11.884018,5.8,4.5 +19229,1,0.567589,2,0,0,2,4,DV2,4,2,Northline,Rd,1811006,6.588,7.156,0,13.622126,4.5,4.5 +23205,0,0.524242,1,1,0,2,4,,4,2,Huron River,Dr,4705582,3.477,4.001,0,12.581819,4.5,4.5 +24534,-1,0.573651,0,2,0,2,4,DV2,4,2,Northline,Rd,4708332,0.143,0.716,0,13.767633,4.5,4.5 +18347,0,0.312619,1,1,0,2,4,,4,2,Hannan,Rd,1710309,3.986,4.298,0,7.502854,4.5,4.5 +19230,1,0.143088,2,0,0,2,5,DV2,4,2,South Service,Rd,1811006,6.445,6.588,0,3.4341,5.8,4.5 +24535,-1,0.142736,0,2,0,2,5,DV2,4,2,South Service,Rd,4708332,0,0.143,0,3.425657,5.8,4.5 +18054,0,0.011185,1,1,0,2,4,,4,2,Hannan,Rd,1710309,4.298,4.309,0,0.268449,4.5,4.5 +11252,1,0.476623,1,0,0,1,1,RFF,4,2,E I 94/S I 275,RAMP,1576509,0,0.477,0,,0.8,7.5 +19228,0,0.037474,2,2,0,2,4,,4,2,Northline,Rd,1811006,7.156,7.193,0,0.899367,4.5,4.5 +13364,1,0.44942,2,0,0,1,1,RFF,4,2,S I 275/W I 94,RAMP,1578309,0,0.449,0,,0.8,7.5 +16694,-1,0.560615,0,3,0,1,1,,4,2,S I 275,,1607610,9.608,10.168,0,,0.8,7.5 +17536,0,0.883489,1,1,0,2,4,,4,2,Hannan,Rd,1710309,4.51,5.393,0,21.203732,4.5,4.5 +19007,0,0.497499,1,1,0,2,4,,4,2,Tyler,Rd,1682704,0,0.497,0,11.939986,4.5,4.5 +19135,0,0.035278,1,1,0,2,4,,4,2,Hannan,Rd,1710309,5.393,5.428,0,0.846669,4.5,4.5 +13384,-1,0.229184,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.08,0.309,0,,0.8,7.5 +14441,1,0.267169,1,0,0,1,1,RFS,4,2,W I 94/S I 275,RAMP,1589308,0,0.267,0,,0.22,6 +18938,1,0.148505,1,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.976,1.125,0,,0.8,7.5 +19136,1,0.255354,3,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.721,0.976,0,,0.8,7.5 +12967,1,0.210806,2,0,0,1,1,RFF,4,2,S I 275/W I 94,RAMP,1578309,0.449,0.66,0,,0.8,7.5 +12164,-1,0.153971,0,2,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.309,0.463,0,,0.8,7.5 +18101,0,0.225797,1,1,0,2,4,,4,2,Cogswell,Rd,1665704,0,0.226,0,5.419139,4.5,4.5 +18214,0,0.196055,1,1,0,2,4,,4,2,Huron River,Dr,1673810,8.244,8.44,0,4.705327,4.5,4.5 +18656,0,0.182397,1,1,0,2,4,,4,2,Huron River,Dr,1673810,8.062,8.244,0,4.377538,4.5,4.5 +17953,1,0.227906,1,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0,0.228,0,,0.8,7.5 +17814,0,0.125267,1,1,0,2,4,,4,2,Huron River,Dr,1673810,8.44,8.566,0,3.006412,4.5,4.5 +22622,0,0.08394,1,1,0,2,4,,4,2,Huron River,Dr,4705582,4.386,4.469,0,2.01456,4.5,4.5 +10946,0,0.566484,1,1,0,2,5,,4,2,Shook,Ave,1576606,0.611,1.177,0,13.595605,5.8,4.5 +12090,-1,0.157791,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.77,0.928,0,,0.8,7.5 +18210,0,0.430275,1,1,0,2,4,,4,2,Ozga,Rd,1673810,9.388,9.818,0,10.326594,4.5,4.5 +18539,0,0.499308,1,1,0,2,4,,4,2,Wick,Rd,1682705,0.498,0.997,0,11.983397,4.5,4.5 +30534,0,0.562728,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.50548,0.15,4 +12066,1,0.192186,2,0,0,1,1,RFF,4,2,N I 275/E I 94,RAMP,1578402,0.427,0.619,0,,0.8,7.5 +31643,0,0.05985,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.436397,0.15,4 +17809,0,0.248717,1,1,0,2,4,,4,2,Ozga,Rd,1673810,9.818,10.066,0,5.969206,4.5,4.5 +11116,0,0.507474,1,1,0,2,5,,4,2,Shook,Ave,1576606,0.103,0.611,0,12.179376,5.8,4.5 +24448,0,0.23835,1,1,1,2,4,,4,2,Goddard,Rd,4710500,0,0.238,0,5.720396,4.5,4.5 +16912,0,0.561804,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,3.469,4.031,0,13.483305,4.5,4.5 +17644,0,0.700084,1,1,0,2,4,,3,2,Van Born,Rd,1670203,0.523,1.223,0,16.802025,6,4.5 +18091,0,0.387805,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.206,1.594,0,9.307323,5.8,4.5 +18568,0,0.256118,1,1,0,2,4,,4,2,Hannan,Rd,1710309,6.339,6.595,0,6.146827,4.5,4.5 +31551,0,0.610753,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.658065,0.15,4 +31553,0,0.959864,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.036748,0.15,4 +31648,0,0.524633,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.591202,0.15,4 +16913,0,0.514691,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,2.955,3.469,0,12.35259,4.5,4.5 +18499,0,0.431555,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,0.775,1.206,0,10.357329,5.8,4.5 +18092,0,0.238613,1,1,0,2,5,,4,2,Cogswell,Rd,1665704,0.536,0.775,0,5.726718,5.8,4.5 +18069,0,0.39689,1,1,0,2,4,,3,2,Van Born,Rd,1670203,0.126,0.523,0,9.525348,6,4.5 +18242,0,0.850728,1,1,0,2,4,,4,2,Hannan,Rd,1710309,6.595,7.445,0,20.417461,4.5,4.5 +18480,0,0.286295,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.914,2.201,0,6.871085,5.8,4.5 +17663,0,0.126031,1,1,0,2,4,,3,2,Van Born,Rd,1670203,0,0.126,0,3.024755,6,4.5 +40350,-1,0.020587,0,2,0,2,5,,4,3,Pontiac,Rd,4463352,0,0.021,0,0.494091,5.8,4.5 +18055,0,0.035022,1,1,0,2,4,,3,2,Hannan,Rd,1710309,7.445,7.48,0,0.840531,6,4.5 +18483,0,0.113204,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.594,1.707,0,2.716906,5.8,4.5 +18081,0,0.207385,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.707,1.914,0,4.977244,5.8,4.5 +31653,0,0.20425,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.902009,0.15,4 +31654,0,0.009543,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.229027,0.15,4 +31646,0,0.540158,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.963787,0.15,4 +31549,0,0.572561,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.741456,0.15,4 +31562,0,0.465698,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.176747,0.15,4 +11444,1,0.369578,3,0,0,1,1,,4,2,E I 94,,1576405,8.31,8.68,0,,0.8,7.5 +14044,-1,0.449387,0,3,0,1,1,,4,2,W I 94,,1588802,8.57,9.02,0,,0.8,7.5 +17691,0,0.473286,1,1,0,2,4,,4,2,Wick,Rd,1682705,1.516,1.989,0,11.358869,4.5,4.5 +18026,0,0.522618,1,1,0,2,4,,4,2,Goddard,Rd,1683004,0.452,0.975,0,12.542838,4.5,4.5 +24085,0,0.271681,1,1,0,2,4,,4,2,Vining,Rd,4711341,0.338,0.61,0,6.520341,4.5,4.5 +24404,0,0.28715,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.978,2.265,0,6.891596,3.7,5 +24539,0,0.338104,1,1,0,2,4,,4,2,Vining,Rd,4711341,0,0.338,0,8.114504,4.5,4.5 +19224,0,0.216822,1,1,0,2,4,,4,2,Northline,Rd,1811006,8.566,8.783,0,5.203718,4.5,4.5 +23293,0,0.547818,1,1,0,2,5,,4,2,Grant,Rd,4705582,5.089,5.636,0,13.147639,5.8,4.5 +24520,0,0.29893,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.336,1.635,0,7.174322,3.7,5 +31641,0,0.537602,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.902437,0.15,4 +31642,0,0.461846,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.0843,0.15,4 +19225,0,0.204086,1,1,0,2,4,,4,2,Northline,Rd,1811006,8.362,8.566,0,4.898073,4.5,4.5 +31640,0,0.05743,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.37832,0.15,4 +23990,0,0.224974,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.111,1.336,0,5.399372,3.7,5 +24500,0,0.13997,2,2,0,2,3,,4,2,Wayne,Rd,4719470,1.838,1.978,0,3.359287,3.7,5 +24536,0,0.112933,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.725,1.838,0,2.710402,3.7,5 +24501,0,0.089863,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.635,1.725,0,2.156713,3.7,5 +10708,1,0.321369,1,0,0,1,1,ROF,4,2,E I 94/Wayne,RAMP,1576607,0,0.321,0,,2.24,5 +10963,1,0.180189,3,0,0,1,1,,4,2,E I 94,,1576405,8.13,8.31,0,,0.8,7.5 +11416,1,0.206812,1,0,0,1,1,RON,4,2,S Wayne/E I 94,RAMP,1576608,0,0.207,0,,1.09,4 +13758,1,0.369541,1,0,0,1,1,ROF,4,2,W I 94/Wayne,RAMP,1588902,0,0.369,0,,2.24,5 +13945,1,0.230779,1,0,0,1,1,RON,4,2,N Wayne/W I 94,RAMP,1588901,0,0.231,0,,1.09,4 +14276,-1,0.320565,0,3,0,1,1,,4,2,W I 94,,1588802,8.25,8.57,0,,0.8,7.5 +14436,1,0.132237,1,0,0,1,1,RON,4,2,S Wayne/W I 94,RAMP,1588810,0,0.132,0,,1.09,4 +14447,-1,0.128844,0,3,0,1,1,,4,2,W I 94,,1588802,8.121,8.25,0,,0.8,7.5 +18025,0,0.150378,1,1,0,2,4,,4,2,Wick,Rd,1682705,1.366,1.516,0,3.609081,4.5,4.5 +18121,0,0.452163,1,1,1,2,4,,4,2,Goddard,Rd,1683004,0,0.452,0,10.851904,4.5,4.5 +24047,0,0.033144,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.721,2.754,0,0.795459,3.7,5 +10781,1,0.270684,3,0,0,1,1,,4,2,E I 94,,1576405,7.86,8.13,0,,0.8,7.5 +18671,0,0.071882,1,1,1,2,4,,4,2,Goddard,Rd,1680601,0.437,0.508,0,1.725174,4.5,4.5 +24468,0,0.231089,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.265,2.496,0,5.546145,3.7,5 +23380,1,0.184047,1,0,0,1,1,RON,4,2,N Wayne/E I 94,RAMP,4705434,0,0.184,0,,1.09,4 +24057,0,0.100352,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.577,2.677,0,2.408438,3.7,5 +24382,0,0.081001,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.496,2.577,0,1.944035,3.7,5 +24255,0,0.044254,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.677,2.721,0,1.062095,3.7,5 +24202,0,0.511493,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.754,3.266,0,12.275827,3.7,5 +31655,0,0.367635,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.823242,0.15,4 +11198,1,0.690979,3,0,0,1,1,,4,2,E I 94,,1576405,8.68,9.371,0,,0.8,7.5 +14131,-1,0.405495,0,3,0,1,1,,4,2,W I 94,,1588802,9.02,9.425,0,,0.8,7.5 +37939,1,0.213265,1,0,0,1,1,ROF,4,2,W I 94/Vining,RAMP,4718583,0,0.213,0,,2.24,5 +22713,1,0.528928,1,0,0,1,1,RON,4,2,S Vining/E I 94,RAMP,4706256,0,0.529,0,,1.09,4 +24197,0,0.064705,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.169,1.233,0,1.552916,4.5,4.5 +24208,0,0.152327,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.016,1.169,0,3.655849,4.5,4.5 +30527,0,0.605616,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.534791,0.15,4 +30529,0,0.54743,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.138328,0.15,4 +24497,0,0.230142,1,1,0,2,4,,4,2,Vining,Rd,4711341,0.61,0.84,0,5.523413,4.5,4.5 +24318,0,0.176765,1,1,0,2,4,,4,2,Vining,Rd,4711341,0.84,1.016,0,4.242353,4.5,4.5 +22560,1,0.338029,1,0,0,1,1,ROF,4,2,E I 94/Vining,RAMP,4706257,0,0.338,0,,2.24,5 +37940,1,0.332448,1,0,0,1,1,RON,4,2,Vining/W I 94,RAMP,4718582,0,0.332,0,,1.09,4 +22712,1,0.241002,1,0,0,1,1,RON,4,2,N Vining/E I 94,RAMP,4706255,0,0.241,0,,1.09,4 +24074,0,0.220599,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.283,1.503,0,5.294368,4.5,4.5 +24084,0,0.049573,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.233,1.283,0,1.189761,4.5,4.5 +23306,-1,0.108645,0,2,0,2,4,DIV,4,2,Vining,Rd,4706252,0,0.109,0,2.60748,4.5,4.5 +24487,0,0.010855,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.503,1.514,0,0.260516,4.5,4.5 +22714,1,0.105639,1,0,0,1,1,RON,4,2,Vining/E I 94,RAMP,4706256,0.529,0.634,0,,1.09,4 +16909,0,0.99094,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,4.936,5.926,0,23.782561,4.5,4.5 +18008,0,0.380636,2,2,0,2,4,,3,2,Van Born,Rd,1670203,2.407,2.788,0,9.135276,6,4.5 +18073,0,0.283313,1,1,0,2,5,,4,2,Waynecorse,Blvd,1665707,0,0.283,0,6.799514,5.8,4.5 +18310,0,0.775744,1,1,0,2,5,,4,2,Beverly,Rd,1664409,0.303,1.078,0,18.617848,5.8,4.5 +24334,0,0.278736,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.272,4.551,0,6.689662,3.7,5 +30603,0,0.9967,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.920794,0.15,4 +30607,0,0.504126,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.099016,0.15,4 +24482,0,0.417727,1,1,1,2,3,,4,2,Wayne,Rd,4719470,3.854,4.272,0,10.025444,3.7,5 +16910,0,0.309574,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,4.626,4.936,0,7.429788,4.5,4.5 +17626,0,0.479139,2,2,0,2,4,,3,2,Van Born,Rd,1670203,1.928,2.407,0,11.499329,6,4.5 +24263,0,0.515995,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.806,5.321,0,12.383883,3.7,5 +24352,0,0.06233,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.743,4.806,0,1.495917,3.7,5 +24407,0,0.192708,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.551,4.743,0,4.624986,3.7,5 +30539,0,0.500134,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.003207,0.15,4 +23054,-1,0.497679,0,2,0,2,5,DIV,4,2,Vining,Rd,4706252,0.257,0.754,0,11.944291,5.8,4.5 +24075,1,0.487923,2,0,0,2,5,DIV,4,2,Vining,Rd,4711341,1.776,2.264,0,11.710158,5.8,4.5 +19008,0,0.018323,1,1,0,2,4,,4,2,Wick,Rd,1682705,2.507,2.525,0,0.439755,4.5,4.5 +23644,1,0.019278,2,0,0,2,5,DIV,4,2,Smith,Rd,4706176,0,0.019,0,0.462664,5.8,4.5 +24070,1,0.015532,2,0,0,2,5,DIV,4,2,Vining,Rd,4711341,2.264,2.28,0,0.372761,5.8,4.5 +22518,-1,0.016206,0,2,0,2,5,DIV,4,2,Smith,Rd,4706175,0,0.016,0,0.388942,5.8,4.5 +22924,-1,0.006283,0,2,0,2,5,DIV,4,2,Vining,Rd,4706252,0.754,0.761,0,0.150787,5.8,4.5 +30538,0,0.004431,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.106335,0.15,4 +17584,0,0.495585,2,2,0,2,4,,3,2,Van Born,Rd,1670203,2.788,3.283,0,11.894031,6,4.5 +30605,0,0.53062,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.734887,0.15,4 +30606,0,0.304401,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.305629,0.15,4 +15862,0,0.180667,1,1,0,2,5,,3,2,Howe,Rd,4712012,0,0.181,0,4.335998,8,4.5 +15146,0,0.272361,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0.996,1.268,0,6.536674,8,4.5 +15677,0,0.257515,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.539,7.796,0,6.180357,5,5 +15806,1,0.639659,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,7.86,8.5,0,15.351824,5,5 +15849,0,0.236674,1,1,0,2,4,,3,2,Venoy,Rd,1599408,2.49,2.727,0,5.680167,6,4.5 +16127,0,0.43895,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,7.593,8.031,0,10.534795,6,4.5 +16494,0,0.220136,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.577,4.798,0,5.283267,6,4.5 +17928,0,0.513807,1,1,1,2,5,,3,2,Marquette,Ave,1685107,0.726,1.239,0,12.331359,8,4.5 +18013,0,0.731153,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,1.037,1.768,0,17.547682,8,4.5 +18447,0,0.389609,1,1,0,2,5,,3,2,Hunter,Ave,1678601,0,0.39,0,9.350622,8,4.5 +22435,0,0.436197,1,1,0,2,5,,3,2,John Hix,Rd,4705360,1.666,2.102,0,10.46872,8,4.5 +23158,-1,0.329787,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.199,8.529,0,7.914876,5,5 +24169,0,0.453789,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,1.603,2.057,0,10.890944,6,4.5 +24232,0,0.320996,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.896,8.217,0,7.703896,5,5 +31560,0,0.416037,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.984881,0.15,4 +31585,0,0.502056,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.049353,0.15,4 +31665,0,0.749421,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.986111,0.15,4 +31669,0,0.504072,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.09773,0.15,4 +31670,0,0.497785,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.946844,0.15,4 +31673,0,0.278619,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.686862,0.15,4 +31675,0,0.498416,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.961975,0.15,4 +31680,0,0.498621,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.966914,0.15,4 +31681,0,0.283533,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.804785,0.15,4 +31842,0,0.298622,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.166938,0.15,4 +15808,1,0.777155,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,6.809,7.586,0,18.651727,5,5 +16495,0,0.457879,1,1,1,2,4,,3,2,Palmer,Rd,1607406,3.595,4.053,0,10.989096,6,4.5 +18427,0,0.520698,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,0.516,1.037,0,12.496762,8,4.5 +23498,0,0.409894,1,1,0,2,5,,3,2,John Hix,Rd,4705360,0.202,0.611,0,9.837445,8,4.5 +23676,-1,0.688713,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,6.878,7.567,0,16.529104,5,5 +24176,0,0.3696,1,1,0,2,4,,3,2,Newburgh,Rd,4710394,0.188,0.558,0,8.870404,6,4.5 +31269,0,0.518644,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.447464,0.15,4 +31573,0,0.335136,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.043259,0.15,4 +31583,0,0.529791,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.714978,0.15,4 +31689,0,0.518391,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.441394,0.15,4 +18804,0,0.022157,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.379,8.401,0,0.531772,6,4.5 +22961,-1,0.27545,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,6.506,6.781,0,6.610795,5,5 +23707,0,0.20161,1,1,0,2,5,,3,2,John Hix,Rd,4705360,0,0.202,0,4.838646,8,4.5 +31574,0,0.459688,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.032514,0.15,4 +31575,0,0.384384,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.225218,0.15,4 +33791,0,0.475377,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.409043,0.15,4 +15809,1,0.277248,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,6.532,6.809,0,6.653947,5,5 +17537,0,0.293909,1,1,0,2,4,,3,2,Hannan,Rd,1710309,7.839,8.133,0,7.05381,6,4.5 +19041,0,0.246251,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.133,8.379,0,5.910014,6,4.5 +22683,-1,0.096829,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,6.781,6.878,0,2.323907,5,5 +16260,0,0.306036,1,1,1,2,4,,3,2,Palmer,Rd,1607406,3.289,3.595,0,7.34486,6,4.5 +18024,0,0.244237,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,0.272,0.516,0,5.861677,8,4.5 +22765,0,0.558808,1,1,0,2,5,,3,2,John Hix,Rd,4705360,1.107,1.666,0,13.411386,8,4.5 +31586,0,0.255458,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.130996,0.15,4 +31588,0,0.500989,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.023746,0.15,4 +23156,0,0.495973,1,1,0,2,5,,3,2,John Hix,Rd,4705360,0.611,1.107,0,11.903355,8,4.5 +31584,0,0.24791,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.949837,0.15,4 +31581,0,0.254837,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.116099,0.15,4 +15807,1,0.274061,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,7.586,7.86,0,6.577474,5,5 +23339,-1,0.266548,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,7.567,7.833,0,6.397141,5,5 +24177,0,0.188371,1,1,0,2,4,,3,2,Newburgh,Rd,4710394,0,0.188,0,4.520912,6,4.5 +24533,1,0.025002,1,0,0,2,4,,3,2,Michigan/Newburgh,TURN,4708369,0,0.025,0,0.600048,6,4.5 +23500,-1,0.366501,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,7.833,8.199,0,8.796028,5,5 +16255,0,0.525078,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.053,4.577,0,12.601883,6,4.5 +24173,0,0.549657,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,1.054,1.603,0,13.191773,6,4.5 +31266,0,0.503656,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.087735,0.15,4 +31268,0,0.499529,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.988703,0.15,4 +24175,0,0.261545,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,0.558,0.819,0,6.277081,6,4.5 +24174,0,0.234633,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,0.819,1.054,0,5.631188,6,4.5 +14985,0,0.298161,2,2,1,2,3,,3,2,Ford,Rd,1595510,6.751,7.049,0,7.155868,5,5 +15098,0,0.504444,1,1,0,2,5,,3,2,Carlson,Blvd,1595907,0,0.504,0,12.106652,8,4.5 +15203,0,0.336288,1,1,1,2,5,,3,2,Hix,Rd,1595808,0.523,0.86,0,8.070915,8,4.5 +16401,0,0.490507,1,1,0,2,4,,3,2,Cherry Hill,Rd,1607409,6.546,7.037,0,11.772175,6,4.5 +24050,0,0.201626,1,1,0,2,4,,3,2,Warren,Rd,4710470,6.999,7.201,0,4.839016,6,4.5 +24156,0,0.291183,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.763,3.054,0,6.98839,6,4.5 +31629,0,0.502271,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.05451,0.15,4 +31677,0,0.573354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.7605,0.15,4 +31687,0,0.260353,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.248461,0.15,4 +16171,0,0.273946,1,1,0,2,4,,3,2,Cherry Hill,Rd,1607409,6.273,6.546,0,6.574709,6,4.5 +18911,0,0.269263,1,1,0,2,5,,3,2,Florence,Ave,1686109,0,0.269,0,6.462321,8,4.5 +23457,0,0.250512,1,1,0,2,5,,3,2,John Hix,St,4705360,2.102,2.352,0,6.012281,8,4.5 +31590,0,0.348721,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.369308,0.15,4 +15740,0,0.230635,1,1,0,2,5,,3,2,Hix,Rd,1595808,0.115,0.346,0,5.535245,8,4.5 +15463,0,0.177602,1,1,1,2,5,,3,2,Hix,Rd,1595808,0.346,0.523,0,4.262436,8,4.5 +31589,0,0.165762,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.978277,0.15,4 +31592,0,0.028438,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.682516,0.15,4 +14986,0,0.398311,1,1,0,2,5,,3,2,Hix,Rd,1595808,0.86,1.258,0,9.559452,8,4.5 +15462,0,0.324244,2,2,1,2,3,,3,2,Ford,Rd,1595510,6.229,6.553,0,7.781849,5,5 +24062,0,0.455494,1,1,0,2,4,,3,2,Warren,Rd,4710470,6.239,6.694,0,10.93185,6,4.5 +31593,0,0.279805,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.715323,0.15,4 +31594,0,0.30633,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.351917,0.15,4 +31626,0,0.324614,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.790741,0.15,4 +31595,0,0.308904,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.413702,0.15,4 +15202,0,0.197466,2,2,1,2,3,,3,2,Ford,Rd,1595510,6.553,6.751,0,4.739187,5,5 +15634,0,0.234198,1,1,0,2,5,,3,2,Hix,Rd,1595808,1.258,1.492,0,5.620747,8,4.5 +24061,0,0.30527,1,1,0,2,4,,3,2,Warren,Rd,4710470,6.694,6.999,0,7.32648,6,4.5 +31497,0,0.262293,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.29502,0.15,4 +31688,0,0.314827,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.55584,0.15,4 +16142,0,0.49046,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,7.037,7.527,0,11.771031,6,4.5 +18318,0,0.486466,1,1,0,2,5,,3,2,Marquette,Ave,1685107,0.239,0.726,0,11.675174,8,4.5 +24160,0,0.249156,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.057,2.306,0,5.979734,6,4.5 +31587,0,0.49835,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.96039,0.15,4 +31678,0,0.250755,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.018111,0.15,4 +24158,0,0.250413,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.306,2.556,0,6.009908,6,4.5 +24157,0,0.206753,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.556,2.763,0,4.962062,6,4.5 +16384,0,0.065549,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,7.527,7.593,0,1.573165,6,4.5 +31676,0,0.250176,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.004235,0.15,4 +14846,0,0.243128,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.296,7.539,0,5.835076,5,5 +17964,1,0.136632,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.253,0.39,0,3.279169,8,4.5 +24155,0,0.406216,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,3.054,3.46,0,9.749193,6,4.5 +31498,0,0.240815,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.779555,0.15,4 +31679,0,0.418655,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.047722,0.15,4 +14564,0,0.24685,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.049,7.296,0,5.924404,5,5 +24049,0,0.190005,2,2,1,2,4,,3,2,Warren,Rd,4710470,7.201,7.391,0,4.56011,6,4.5 +24154,0,0.284525,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,3.46,3.745,0,6.828604,6,4.5 +31500,0,0.370805,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.89932,0.15,4 +31682,0,0.250401,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.009627,0.15,4 +18370,1,0.197275,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.056,0.253,0,4.734604,8,4.5 +22248,-1,0.167822,0,2,0,2,5,DIV,3,2,Central City,Pkwy,4702294,0,0.168,0,4.027728,8,4.5 +17966,0,0.056042,2,2,1,2,5,,3,2,Central City,Pkwy,1669910,0,0.056,0,1.345013,8,4.5 +18362,1,0.101596,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.39,0.491,0,2.438309,8,4.5 +14850,0,0.501152,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0,0.501,0,12.027639,8,4.5 +15801,1,0.422517,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.956,9.379,0,10.140401,5,5 +15854,0,0.271864,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.223,1.495,0,6.524738,6,4.5 +15863,0,0.456143,1,1,0,2,5,,3,2,2nd,St,1599309,0.545,1.001,0,10.947442,8,4.5 +15866,0,0.203389,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.862,1.065,0,4.881328,8,4.5 +16491,0,0.746363,1,1,0,2,4,,3,2,Palmer,Rd,1607406,5.544,6.29,0,17.912713,6,4.5 +17997,0,0.167411,1,1,0,2,5,,3,2,Glenwood,Ave,1666001,2.364,2.532,0,4.017874,8,4.5 +18755,0,0.745721,1,1,0,2,5,,3,2,Avondale,Ave,1686907,1.208,1.953,0,17.897301,8,4.5 +19085,0,0.331696,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.211,1.542,0,7.960698,8,4.5 +23582,-1,0.432855,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.92,9.352,0,10.388526,5,5 +24432,0,0.192124,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.708,6.9,0,4.610978,5,5 +15805,1,0.175557,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.5,8.675,0,4.213359,5,5 +15865,0,0.430329,1,1,0,2,5,,3,2,2nd,St,1599309,0,0.43,0,10.327893,8,4.5 +15870,0,0.360137,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.044,0.404,0,8.643286,8,4.5 +17577,0,0.32715,1,1,0,2,5,,3,2,Annapolis,St,1680904,0.884,1.211,0,7.851603,8,4.5 +22868,-1,0.248952,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.529,8.778,0,5.974849,5,5 +24000,0,0.390539,2,2,1,2,3,,3,2,Wayne,Rd,4719470,5.821,6.211,0,9.372927,5,5 +31660,0,0.176203,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.228872,0.15,4 +31661,0,0.231789,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.562924,0.15,4 +17905,0,0.058893,1,1,0,2,5,,3,2,Annapolis,St,1680904,0.754,0.812,0,1.41343,8,4.5 +24316,0,0.152697,2,2,1,2,3,,3,2,Wayne,Rd,4719470,5.668,5.821,0,3.664725,5,5 +31558,0,0.113332,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.719978,0.15,4 +31559,0,0.096037,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.304897,0.15,4 +17778,0,0.071468,1,1,0,2,5,,3,2,Annapolis,St,1680904,0.812,0.884,0,1.715229,8,4.5 +15867,0,0.169015,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.693,0.862,0,4.056367,8,4.5 +15868,0,0.224727,2,2,0,2,5,,3,2,Elizabeth,St,1599304,0.468,0.693,0,5.393438,8,4.5 +31659,0,0.074512,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.788295,0.15,4 +15869,0,0.063685,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.404,0.468,0,1.528436,8,4.5 +31662,0,0.023042,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.553014,0.15,4 +15802,1,0.184796,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.772,8.956,0,4.435093,5,5 +22576,-1,0.141741,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.778,8.92,0,3.401777,5,5 +23985,0,0.23837,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.47,6.708,0,5.720875,5,5 +24433,0,0.169416,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.3,6.47,0,4.065973,5,5 +15803,1,0.059481,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.712,8.772,0,1.427534,5,5 +15804,1,0.036914,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.675,8.712,0,0.885943,5,5 +19254,1,0.064534,1,0,0,1,3,RSF,3,2,S Wayne/E Michigan Cutoff,,1804107,0,0.065,0,,5,5 +23989,0,0.0578,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.242,6.3,0,1.387195,5,5 +24435,0,0.031095,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.211,6.242,0,0.746276,5,5 +19255,1,0.071069,1,0,0,1,3,RSF,3,2,E Michigan/S Wayne Cutoff,,1804106,0,0.071,0,,5,5 +15864,0,0.114406,1,1,0,2,5,,3,2,2nd,St,1599309,0.43,0.545,0,2.745733,8,4.5 +16249,0,0.499295,1,1,0,2,4,,3,2,Palmer,Rd,1607406,5.045,5.544,0,11.983073,6,4.5 +17795,0,0.249361,1,1,0,2,5,,3,2,Avondale,Ave,1686907,0.703,0.952,0,5.984671,8,4.5 +17986,0,0.285014,1,1,0,2,5,,3,2,Harvey,Ave,1666107,0.214,0.499,0,6.840342,8,4.5 +18005,0,0.208721,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,1.978,2.186,0,5.009302,8,4.5 +23983,0,0.234432,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.9,7.134,0,5.626362,5,5 +24431,0,0.295855,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.134,7.43,0,7.100528,5,5 +31666,0,0.248114,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.954724,0.15,4 +31674,0,0.443176,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.636234,0.15,4 +18399,0,0.214435,1,1,0,2,5,,3,2,Elizabeth,St,1666107,0,0.214,0,5.146444,8,4.5 +18421,0,0.209927,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,1.768,1.978,0,5.038259,8,4.5 +31667,0,0.248562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.965493,0.15,4 +31668,0,0.193954,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.654896,0.15,4 +33967,0,0.338582,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.125974,0.15,4 +16251,0,0.178465,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.798,4.976,0,4.283169,6,4.5 +23975,0,0.279182,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.43,7.709,0,6.700375,5,5 +16492,0,0.068979,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.976,5.045,0,1.655489,6,4.5 +24430,0,0.187189,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.709,7.896,0,4.492526,5,5 +18412,0,0.177894,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,2.186,2.364,0,4.269451,8,4.5 +15394,0,0.270053,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0.726,0.996,0,6.481261,8,4.5 +19208,0,0.25571,1,1,0,2,5,,3,2,Avondale,Ave,1686907,0.952,1.208,0,6.137047,8,4.5 +15680,0,0.225243,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0.501,0.726,0,5.405823,8,4.5 +31692,0,0.060042,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.441016,0.15,4 +15800,1,0.504675,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,9.379,9.883,0,12.112205,5,5 +15857,0,0.603358,2,2,0,2,4,,3,2,Venoy,Rd,1599408,0.498,1.101,0,14.480586,6,4.5 +15859,0,0.273745,1,1,0,2,5,,3,2,Howe,Rd,4712012,0.744,1.017,0,6.569884,8,4.5 +18509,0,0.224983,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.61,1.835,0,5.399593,8,4.5 +31555,0,0.095277,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.286656,0.15,4 +33939,0,0.372513,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.940319,0.15,4 +15860,0,0.247479,1,1,0,2,5,,3,2,Howe,Rd,4712012,0.496,0.744,0,5.939503,8,4.5 +33940,0,0.26507,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.361684,0.15,4 +18878,0,0.067218,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.542,1.61,0,1.613239,8,4.5 +18294,0,0.274252,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.835,2.109,0,6.582039,8,4.5 +31201,0,0.118889,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.853333,0.15,4 +15855,0,0.099288,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.124,1.223,0,2.382917,6,4.5 +15856,0,0.022605,2,2,0,2,4,,3,2,Venoy,Rd,1599408,1.101,1.124,0,0.542524,6,4.5 +15852,0,0.361807,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.632,1.994,0,8.683363,6,4.5 +17992,0,0.674594,1,1,0,2,5,,3,2,Glenwood,Ave,1666001,2.599,3.273,0,16.190246,8,4.5 +33966,0,0.724025,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.37659,0.15,4 +18405,0,0.067351,1,1,0,2,5,,3,2,Glenwood,Ave,1666001,2.532,2.599,0,1.616426,8,4.5 +31206,0,0.112159,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.691828,0.15,4 +15853,0,0.137363,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.495,1.632,0,3.296719,6,4.5 +15851,0,0.249925,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.994,2.244,0,5.99821,6,4.5 +15850,0,0.246658,1,1,0,2,4,,3,2,Venoy,Rd,1599408,2.244,2.49,0,5.919793,6,4.5 +14904,0,0.373053,2,2,1,2,3,,3,2,Ford,Rd,1595510,8.542,8.915,0,8.953279,5,5 +15534,0,0.247609,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.996,2.244,0,5.942624,8,4.5 +15844,0,0.246016,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.495,3.741,0,5.904394,6,4.5 +16382,0,0.745858,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,8.532,9.278,0,17.900604,6,4.5 +18771,0,0.131339,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.737,1.869,0,3.152138,8,4.5 +19018,0,0.250801,1,1,0,2,5,,3,2,Hunter,Ave,1678601,1.011,1.262,0,6.019213,8,4.5 +24153,0,0.25099,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.924,9.175,0,6.023752,5,5 +31205,0,0.875332,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,21.007962,0.15,4 +31210,0,0.515188,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.364504,0.15,4 +31495,0,0.235655,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.655713,0.15,4 +31695,0,0.158871,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.8129,0.15,4 +32016,0,0.291441,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.994593,0.15,4 +32017,0,0.323153,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.755667,0.15,4 +15194,0,0.253396,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.488,1.742,0,6.081512,8,4.5 +16383,0,0.334099,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,8.031,8.365,0,8.018374,6,4.5 +17507,0,0.34264,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.239,1.582,0,8.223352,8,4.5 +24231,0,0.248357,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.425,8.673,0,5.960565,5,5 +31591,0,0.350065,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.401553,0.15,4 +24144,0,0.2082,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.217,8.425,0,4.996811,5,5 +24141,0,0.250697,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.673,8.924,0,6.016739,5,5 +15454,0,0.220101,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.268,1.488,0,5.28242,8,4.5 +31672,0,0.262728,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.305469,0.15,4 +31671,0,0.16063,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.855115,0.15,4 +16126,0,0.166768,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,8.365,8.532,0,4.002443,6,4.5 +14558,0,0.203537,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.793,1.996,0,4.884896,8,4.5 +30254,0,0.270927,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.502245,0.15,4 +14977,0,0.051227,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.742,1.793,0,1.229458,8,4.5 +19011,0,0.155608,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.582,1.737,0,3.734596,8,4.5 +31697,0,0.033237,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.797694,0.15,4 +14855,0,0.248711,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.494,2.743,0,5.969068,8,4.5 +15144,0,0.497484,2,2,1,2,3,,3,2,Ford,Rd,1595510,8.045,8.542,0,11.939617,5,5 +17607,0,0.346222,1,1,0,2,5,,3,2,Hunter,Ave,1678601,0.665,1.011,0,8.309319,8,4.5 +24018,0,0.264441,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.679,9.943,0,6.346594,5,5 +24149,0,0.250364,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.943,10.194,0,6.008738,5,5 +31685,0,0.257459,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.179004,0.15,4 +31686,0,0.282517,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.780402,0.15,4 +31814,0,0.395554,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.493308,0.15,4 +15391,0,0.249014,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.796,8.045,0,5.976346,5,5 +24022,0,0.250365,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.175,9.425,0,6.008758,5,5 +24152,0,0.253817,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.425,9.679,0,6.091607,5,5 +18033,0,0.275329,1,1,0,2,5,,3,2,Hunter,Ave,1678601,0.39,0.665,0,6.607891,8,4.5 +31501,0,0.257463,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.179124,0.15,4 +31683,0,0.255894,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.141455,0.15,4 +15101,0,0.250163,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.244,2.494,0,6.003922,8,4.5 +15397,0,0.24672,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.993,3.239,0,5.92129,8,4.5 +15685,0,0.250205,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.743,2.993,0,6.004908,8,4.5 +15847,0,0.252369,2,2,1,2,4,,3,2,Venoy,Rd,1599408,2.987,3.239,0,6.05685,6,4.5 +17929,1,0.418036,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,2.068,2.486,0,10.032871,8,4.5 +24260,-1,0.503013,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711017,0,0.503,0,12.07232,8,4.5 +18213,1,0.085015,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,1.983,2.068,0,2.040364,8,4.5 +18437,0,0.114384,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.869,1.983,0,2.745218,8,4.5 +15848,0,0.260221,1,1,0,2,4,,3,2,Venoy,Rd,1599408,2.727,2.987,0,6.245307,6,4.5 +31216,0,0.102741,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.465776,0.15,4 +15846,0,0.249022,2,2,1,2,4,,3,2,Venoy,Rd,1599408,3.239,3.488,0,5.976529,6,4.5 +31213,0,0.126043,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.025033,0.15,4 +15845,0,0.006559,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.488,3.495,0,0.157412,6,4.5 +14989,0,0.375858,2,2,1,2,3,,3,2,Ford,Rd,1595510,8.915,9.291,0,9.020591,5,5 +15842,0,0.242554,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.99,4.232,0,5.82129,6,4.5 +18546,0,0.498755,1,1,0,2,5,,3,2,Hunter,Ave,1678601,1.262,1.76,0,11.970123,8,4.5 +31684,0,0.590438,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.170514,0.15,4 +31694,0,0.512507,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.300161,0.15,4 +31696,0,0.324993,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.799827,0.15,4 +33788,0,0.48145,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.554796,0.15,4 +31496,0,0.244319,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.863655,0.15,4 +31693,0,0.270646,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.495515,0.15,4 +15843,0,0.248793,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.741,3.99,0,5.971039,6,4.5 +31208,0,0.03319,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.796557,0.15,4 +15840,0,0.257125,1,1,0,2,4,,3,2,Venoy,Rd,1599408,4.486,4.744,0,6.170993,6,4.5 +15841,0,0.254478,1,1,0,2,4,,3,2,Venoy,Rd,1599408,4.232,4.486,0,6.107466,6,4.5 +1842,0,0.080827,1,1,0,2,4,,3,3,9 Mile,Rd,633603,2.814,2.895,0,1.939848,6,4.5 +16092,-1,0.388977,0,4,0,1,1,,3,2,W I 96,,1607506,0.423,0.812,0,,0.58,7 +16193,1,0.724736,4,0,0,1,1,,3,2,E I 96,,1607802,2.396,3.12,0,,0.58,7 +16244,0,0.496289,1,1,0,2,5,,3,2,Levan,Rd,1604605,2.198,2.694,0,11.910931,8,4.5 +16503,1,0.43223,4,0,0,1,1,,3,2,E I 96,,1607802,0.244,0.676,0,,0.58,7 +16619,1,0.185861,3,0,0,1,2,,3,2,E M 14,,1606205,6.773,6.958,0,,0.58,7 +16819,0,0.394355,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,1.244,1.639,0,9.464509,8,4.5 +16897,-1,0.545798,0,4,0,1,1,,3,2,W I 96,,1606503,0.679,1.224,0,,0.58,7 +16956,0,0.357406,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.088,6.446,0,8.577734,5,5 +16966,0,0.911035,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,1.603,2.514,0,21.864843,6,4.5 +17020,1,1.107772,4,0,0,1,1,,3,2,E I 96,,1606201,0,1.107,0,,0.58,7 +17141,-1,0.832673,0,4,0,1,1,,3,2,W I 96,,1607506,2.491,3.323,0,,0.58,7 +17142,0,0.497364,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,0,0.497,0,11.936739,6,4.5 +17523,0,0.509217,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,1.561,2.07,0,12.221211,6,4.5 +17847,0,0.246123,2,2,1,2,3,,3,2,Farmington,Rd,1690602,3.503,3.749,0,5.906948,5,5 +18117,0,0.487218,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,3.399,3.887,0,11.693225,3.7,5 +18184,0,0.647007,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,0,0.647,0,15.528173,8,4.5 +18431,0,0.317461,1,1,0,2,4,,3,2,Joy,Rd,1672705,5.49,5.807,0,7.619069,6,4.5 +18491,0,0.767865,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,1.528,2.295,0,18.428751,6,4.5 +18505,0,0.113937,2,2,0,2,4,,3,2,7 Mile,Rd,1700106,0.192,0.306,0,2.734498,6,4.5 +18561,0,0.227064,1,1,0,2,4,,4,2,Northville,Rd,1679402,1.168,1.395,0,5.449526,4.5,4.5 +18602,0,1.771447,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,2.622,4.392,0,42.514724,5,5 +19067,0,0.532453,1,1,0,2,5,,4,2,Bradner,Rd,1689501,0.235,0.767,0,12.778861,5.8,4.5 +19070,0,0.093632,2,2,1,2,4,,3,2,6 Mile,Rd,1680701,6.251,6.345,0,2.247168,6,4.5 +20927,0,0.209768,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.051,2.261,0,5.034424,5,5 +22431,1,0.619379,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.963,1.582,0,14.865086,6,4.5 +22441,0,2.048844,1,1,0,2,3,,4,2,Edward Hines,Dr,4705216,0.443,2.491,0,49.172264,3.7,5 +23233,-1,0.497411,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.967,1.464,0,11.937857,6,4.5 +24126,0,0.486373,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,8.052,8.538,0,11.672943,6,4.5 +24871,0,0.513277,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.318649,0.15,4 +26864,0,0.544188,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.060514,0.15,4 +27231,0,0.49366,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.847837,0.15,4 +31344,0,0.292331,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.015943,0.15,4 +31460,0,0.491736,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.80166,0.15,4 +31704,0,0.460924,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.062167,0.15,4 +31712,0,0.522471,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.539296,0.15,4 +31721,0,0.44743,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.738311,0.15,4 +31737,0,0.489538,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.748919,0.15,4 +31740,0,0.505082,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.12196,0.15,4 +31771,0,0.712187,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.092476,0.15,4 +31847,0,0.493859,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.85261,0.15,4 +16102,0,0.494456,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0.445,0.939,0,11.866939,6,4.5 +16125,0,0.116745,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.095,3.212,0,2.80188,6,4.5 +16129,0,0.253227,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.842,3.095,0,6.077458,6,4.5 +16431,-1,1.300641,0,3,0,1,1,,3,2,S I 275,,1607610,20.25,21.55,0,,0.58,7 +16484,1,1.006641,3,0,0,1,1,,3,2,N I 275,,1607208,20.2,21.206,0,,0.58,7 +16630,-1,1.683902,0,3,0,1,2,,3,2,W M 14,,1606204,4.388,6.071,0,,0.58,7 +16923,1,1.930635,3,0,0,1,2,,3,2,E M 14,,1606205,4.17,6.1,0,,0.58,7 +17144,0,0.299043,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.377,4.676,0,7.177041,5,5 +17247,0,0.061071,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0,0.061,0,1.465693,6,4.5 +17645,0,0.042709,1,1,1,2,4,,3,2,Joy,Rd,1672705,4.096,4.139,0,1.025013,6,4.5 +17656,0,0.262873,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.186,0.448,0,6.308961,6,4.5 +17844,0,0.391505,2,2,0,2,4,,3,2,Main,St,1679010,0.873,1.265,0,9.396112,6,4.5 +17890,0,0.197178,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,0.865,1.062,0,4.73228,5,5 +18169,0,0.491769,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,1.235,1.727,0,11.802463,5,5 +18670,0,0.201661,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.033,0.235,0,4.839872,6,4.5 +19397,0,0.31255,1,1,0,2,5,,3,2,Riverside,Dr,1733709,0,0.312,0,7.501204,8,4.5 +23706,0,0.253512,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.989,11.243,0,6.084296,6,4.5 +24082,0,0.283022,1,1,0,2,4,,4,2,Warren,Rd,4710470,4.195,4.477,0,6.79254,4.5,4.5 +24180,0,0.593064,1,1,0,2,4,,3,2,Mill,St,4710390,6.269,6.861,0,14.233535,6,4.5 +24181,0,0.299184,1,1,0,2,4,,3,2,Mill,St,4710390,5.969,6.269,0,7.180423,6,4.5 +30390,0,0.355671,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.536094,0.15,4 +30393,0,0.567123,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.610952,0.15,4 +30398,0,0.7739,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.573589,0.15,4 +30405,0,0.245402,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.889657,0.15,4 +30407,0,0.255534,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.132812,0.15,4 +31459,0,0.411766,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.882385,0.15,4 +31751,0,0.317305,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.615313,0.15,4 +31757,0,0.498496,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.963912,0.15,4 +33762,0,0.454529,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.908693,0.15,4 +16044,0,0.250301,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,3.672,3.922,0,6.00722,5,5 +17764,0,0.249977,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,0.325,0.575,0,5.999448,5,5 +18193,0,0.253583,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.131,3.384,0,6.085992,6,4.5 +18226,0,0.124354,1,1,0,2,4,,3,2,Main,St,1679010,0,0.124,0,2.984487,6,4.5 +24087,0,0.22532,2,2,1,2,4,,4,2,Warren,Rd,4710470,3.478,3.703,0,5.407684,4.5,4.5 +31456,0,0.245643,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.895443,0.15,4 +31755,0,0.508001,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.192028,0.15,4 +33756,0,0.254669,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.112055,0.15,4 +39915,1,0.022578,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.995,3.018,0,0.541867,8,4.5 +18631,0,0.520691,1,1,0,2,4,,4,2,Joy,Rd,1672705,2.61,3.131,0,12.496586,4.5,4.5 +22552,0,0.385506,2,2,1,2,3,,4,2,Sheldon Center,Rd,4706535,0,0.385,0,9.252152,3.7,5 +23128,0,0.378279,1,1,0,2,4,,4,2,Canton Center,Rd,4706530,4.918,5.296,0,9.078692,4.5,4.5 +39916,1,0.497859,3,0,0,1,2,,3,2,N M 39,,1592408,6.17,6.668,0,,0.58,7 +23560,0,0.112274,2,2,1,2,3,,4,2,Sheldon Center,Rd,4706535,0.385,0.498,0,2.694579,3.7,5 +24090,0,0.222403,2,2,1,2,4,,4,2,Warren,Rd,4710470,2.976,3.199,0,5.337672,4.5,4.5 +31450,0,0.387851,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.308415,0.15,4 +22496,0,0.070397,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,4.696,4.767,0,1.689522,3.7,5 +23480,0,0.151384,1,1,0,2,4,,4,2,Canton Center,Rd,4706530,4.767,4.918,0,3.633218,4.5,4.5 +22780,0,0.21934,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,4.477,4.696,0,5.264171,3.7,5 +22847,0,0.19695,1,1,0,2,4,,4,2,Canton Center,Rd,4706530,5.296,5.493,0,4.726793,4.5,4.5 +17780,0,0.296587,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.735,6.032,0,7.118096,4.5,4.5 +24088,0,0.27945,2,2,1,2,4,,4,2,Warren,Rd,4710470,3.199,3.478,0,6.706797,4.5,4.5 +30388,0,0.411253,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.870066,0.15,4 +31747,0,0.101029,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.424701,0.15,4 +18183,0,0.173864,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.561,5.735,0,4.172732,4.5,4.5 +18176,0,0.049563,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,6.032,6.081,0,1.189503,4.5,4.5 +18173,0,0.324842,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,0,0.325,0,7.796211,3.7,5 +23375,0,0.123753,2,2,1,2,3,,4,2,Sheldon Center,Rd,4706535,0.498,0.621,0,2.970083,3.7,5 +17760,0,0.408754,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,0.826,1.235,0,9.810095,5,5 +31748,0,0.644529,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.4687,0.15,4 +18170,0,0.251761,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,0.575,0.826,0,6.042259,5,5 +18287,0,0.199491,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.639,3.838,0,4.787785,6,4.5 +23967,0,0.522336,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,1.997,2.52,0,12.536071,4.5,4.5 +24083,0,0.215878,1,1,0,2,4,,4,2,Warren,Rd,4710470,3.979,4.195,0,5.181083,4.5,4.5 +30404,0,0.254505,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.108122,0.15,4 +31480,0,0.502523,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.060564,0.15,4 +31482,0,0.508006,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.192145,0.15,4 +23968,0,0.498358,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,1.499,1.997,0,11.960597,4.5,4.5 +24086,0,0.275617,2,2,1,2,4,,4,2,Warren,Rd,4710470,3.703,3.979,0,6.614802,4.5,4.5 +31481,0,0.507124,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.170965,0.15,4 +31746,0,0.243169,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.836051,0.15,4 +18731,0,0.254239,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.384,3.639,0,6.101734,6,4.5 +31745,0,0.505397,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.129527,0.15,4 +18074,0,0.258254,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.838,4.096,0,6.198097,6,4.5 +17114,0,0.20545,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.171,4.377,0,4.930791,5,5 +18238,0,0.37251,2,2,0,2,4,,3,2,Main,St,1679010,0.501,0.873,0,8.94024,6,4.5 +31457,0,0.423737,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.169683,0.15,4 +33759,0,0.251969,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.047251,0.15,4 +33760,0,0.352029,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.448689,0.15,4 +16190,0,0.248962,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,3.922,4.171,0,5.975089,5,5 +17827,0,0.248744,1,1,0,2,4,,3,2,Main,St,1679010,0.124,0.373,0,5.969861,6,4.5 +30386,0,0.136632,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.279173,0.15,4 +30396,0,0.144345,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.464289,0.15,4 +17240,0,0.128061,1,1,0,2,4,,3,2,Main,St,1679010,0.373,0.501,0,3.073464,6,4.5 +30391,0,0.261275,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.27059,0.15,4 +16206,0,0.2663,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.039,2.306,0,6.391198,6,4.5 +16926,1,0.252779,3,0,0,1,2,,4,2,E M 14,,1606205,3.917,4.17,0,,0.8,7.5 +16932,-1,0.352071,0,3,0,1,2,,4,2,W M 14,,1606204,4.036,4.388,0,,0.8,7.5 +17722,0,0.339154,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,3.49,3.829,0,8.139703,4.5,4.5 +18150,1,0.272046,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.446,2.718,0,6.5291,3.7,5 +18165,0,0.739349,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,0,0.739,0,17.744368,5,5 +18778,0,0.165398,1,1,0,2,4,,3,2,Penniman,Ave,1673609,3.737,3.902,0,3.969554,6,4.5 +18933,0,0.252515,1,1,0,2,4,,3,2,Northville,Rd,1679402,0.081,0.333,0,6.06036,6,4.5 +19292,1,0.283446,1,0,0,1,2,ROF,4,2,W M 14/Sheldon,RAMP,1778207,0,0.283,0,,2.24,5 +19293,1,0.59357,1,0,0,1,2,ROF,4,2,E M 14/Sheldon,RAMP,1778206,0,0.593,0,,2.24,5 +19296,1,0.52111,1,0,0,1,2,RON,4,2,Sheldon/E M 14,RAMP,1778202,0,0.521,0,,1.09,4 +19297,1,0.23142,1,0,0,1,2,RON,4,2,Sheldon/W M 14,RAMP,4712090,0.112,0.344,0,,1.09,4 +23203,-1,0.271247,0,3,0,2,3,DIV,4,2,Sheldon,Rd,4704692,0,0.271,0,6.509936,3.7,5 +30399,0,0.127151,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.051617,0.15,4 +31464,0,0.264081,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.337943,0.15,4 +18154,0,0.237728,2,2,0,2,3,,3,2,Sheldon,Rd,5495471,2.096,2.334,0,5.705478,5,5 +18330,0,0.254878,1,1,0,2,4,,3,2,Territorial,Rd,1673609,3.276,3.531,0,6.117061,6,4.5 +31466,0,0.342846,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.228306,0.15,4 +32606,0,0.250442,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.010598,0.15,4 +33952,0,0.311651,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.479629,0.15,4 +18786,0,0.163503,1,1,0,2,4,,4,2,Territorial,Rd,1673609,3.113,3.276,0,3.924066,4.5,4.5 +17747,0,0.138183,2,2,0,2,3,,3,2,Sheldon,Rd,5495471,1.958,2.096,0,3.316393,5,5 +17759,0,0.122761,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,1.727,1.849,0,2.946258,5,5 +31750,0,0.06781,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.627441,0.15,4 +17942,0,0.205807,1,1,0,2,4,,3,2,Penniman,Ave,1673609,3.531,3.737,0,4.939364,6,4.5 +33951,0,0.239773,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.754543,0.15,4 +18160,0,0.108677,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,1.849,1.958,0,2.608248,5,5 +17739,0,0.112308,2,2,0,2,3,,3,2,Sheldon,Rd,5495471,2.334,2.446,0,2.69539,5,5 +17729,0,0.332069,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,3.067,3.399,0,7.969666,3.7,5 +17730,1,0.127733,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.872,2.999,0,3.065589,3.7,5 +19291,1,0.142633,2,0,0,1,2,ROF,4,2,M 14/Sheldon,RAMP,1778207,0.283,0.426,0,,2.24,5 +19298,1,0.094546,2,0,0,1,2,RON,4,2,Sheldon/M 14,RAMP,4712090,0.018,0.112,0,,1.09,4 +23200,-1,0.154046,0,3,0,2,3,DIV,4,2,Sheldon,Rd,4704692,0.398,0.552,0,3.697094,3.7,5 +18149,1,0.109313,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.762,2.872,0,2.623516,3.7,5 +17732,1,0.044441,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.718,2.762,0,1.066585,3.7,5 +18146,0,0.068252,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,2.999,3.067,0,1.638051,3.7,5 +16137,0,0.066815,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.603,2.67,0,1.603561,6,4.5 +17692,0,0.542172,1,1,0,2,5,,3,2,Starkweather,Ave,1683903,0,0.542,0,13.01213,8,4.5 +18776,1,0.075092,1,0,0,2,5,,3,2,Penniman,Ave,1673609,4.192,4.267,0,1.802205,8,4.5 +18795,0,0.308177,2,2,0,2,4,,3,2,Main,St,1679010,1.332,1.64,0,7.396253,6,4.5 +24179,0,0.406663,1,1,0,2,4,,3,2,Mill,St,4710390,6.861,7.268,0,9.759913,6,4.5 +31752,0,0.185334,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.448006,0.15,4 +16199,0,0.173959,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.306,2.479,0,4.175012,6,4.5 +18323,0,0.169158,1,1,0,2,4,,3,2,Penniman,Ave,1673609,3.902,4.071,0,4.059801,6,4.5 +33953,0,0.285296,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.84711,0.15,4 +16189,0,0.123895,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.479,2.603,0,2.973485,6,4.5 +17936,1,0.120136,1,0,0,2,5,,3,2,Penniman,Ave,1673609,4.071,4.192,0,2.883267,8,4.5 +18665,0,0.133671,1,1,1,2,4,,3,2,Harvey,St,1679009,1.3,1.434,0,3.208113,6,4.5 +17262,0,0.066925,2,2,0,2,4,,3,2,Main,St,1679010,1.265,1.332,0,1.606206,6,4.5 +18338,0,0.21911,2,2,0,2,4,,3,2,Main,St,1679010,1.64,1.859,0,5.258651,6,4.5 +16134,0,0.171709,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.67,2.842,0,4.121007,6,4.5 +24294,0,0.025313,1,1,0,2,5,,3,2,Union,St,4710584,0.266,0.291,0,0.607505,8,4.5 +17948,0,0.075812,2,2,0,2,4,,3,2,Main,St,1679010,1.859,1.935,0,1.819496,6,4.5 +18166,0,0.126316,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,0.739,0.865,0,3.03158,5,5 +19119,0,0.098363,1,1,0,2,4,,3,2,Mill,St,1680504,0,0.098,0,2.360713,6,4.5 +17529,0,0.080547,1,1,0,2,4,,3,2,Northville,Rd,1679402,0,0.081,0,1.933133,6,4.5 +19026,0,0.030608,1,1,0,2,4,,3,2,Wilcox,Rd,1680504,0.098,0.129,0,0.734588,6,4.5 +19118,0,0.033357,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0,0.033,0,0.800574,6,4.5 +24178,0,0.021597,1,1,0,2,4,,3,2,Mill,St,4710390,7.268,7.289,0,0.518334,6,4.5 +16662,0,0.353668,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0.091,0.445,0,8.488023,6,4.5 +17623,0,0.402654,1,1,0,2,3,,4,2,Northville,Rd,1679402,0.711,1.113,0,9.663701,3.7,5 +18594,0,0.15521,1,1,0,2,5,GRV,3,2,Bradner,Ave,1689501,0.08,0.235,0,3.725047,7,4.5 +31753,0,0.356391,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.553389,0.15,4 +17535,0,0.380799,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,3.829,4.209,0,9.139181,4.5,4.5 +19034,0,0.055044,2,2,0,2,3,,4,2,Northville,Rd,1679402,1.113,1.168,0,1.321056,3.7,5 +17655,0,0.185588,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0,0.186,0,4.454122,6,4.5 +18459,0,0.233996,1,1,0,2,4,,3,2,Northville,Rd,1679402,0.333,0.567,0,5.615911,6,4.5 +30397,0,0.200551,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.813213,0.15,4 +16976,0,0.091342,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0,0.091,0,2.192219,6,4.5 +18045,0,0.143901,1,1,0,2,4,,3,2,Northville,Rd,1679402,0.567,0.711,0,3.453625,6,4.5 +18593,0,0.079646,1,1,0,2,5,GRV,3,2,Bradner,Ave,1689501,0,0.08,0,1.911504,7,4.5 +16088,0,0.124751,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.881,4.006,0,2.994024,6,4.5 +17073,0,0.256014,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.428,5.684,0,6.144337,5,5 +18530,0,0.153974,1,1,1,2,4,,3,2,Joy,Rd,1672705,4.891,5.045,0,3.695388,6,4.5 +23372,0,0.275098,2,2,1,2,4,,3,2,Haggerty,Rd,4706524,9.987,10.262,0,6.602342,6,4.5 +24185,0,0.222862,1,1,0,2,4,,3,2,Lilley,Rd,4710390,5.143,5.366,0,5.348684,6,4.5 +31486,0,0.212093,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.090226,0.15,4 +31633,0,0.265137,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.363295,0.15,4 +31758,0,0.272458,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.538992,0.15,4 +33956,0,0.34506,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.281448,0.15,4 +18503,0,0.483976,1,1,0,2,4,,3,2,Joy,Rd,1672705,4.139,4.623,0,11.615422,6,4.5 +24190,0,0.553345,1,1,0,2,4,,4,2,Lilley,Rd,4710390,4.59,5.143,0,13.280289,4.5,4.5 +31490,0,0.256164,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.14794,0.15,4 +31491,0,0.528783,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.690785,0.15,4 +33757,0,0.508575,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.205801,0.15,4 +24076,0,0.279054,1,1,0,2,4,,4,2,Warren,Rd,4710470,4.477,4.756,0,6.697308,4.5,4.5 +24191,0,0.462371,1,1,0,2,4,,4,2,Lilley,Rd,4710390,4.128,4.59,0,11.0969,4.5,4.5 +18095,0,0.223092,1,1,0,2,4,,3,2,Joy,Rd,1672705,4.623,4.846,0,5.354205,6,4.5 +23556,0,0.46627,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,9.521,9.987,0,11.190488,4.5,4.5 +19005,0,0.044967,1,1,1,2,4,,3,2,Joy,Rd,1672705,4.846,4.891,0,1.079219,6,4.5 +16098,0,0.217452,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.337,3.555,0,5.218842,6,4.5 +17123,0,0.455073,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.973,5.428,0,10.921741,5,5 +22980,0,0.230692,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.486,10.717,0,5.536618,6,4.5 +24182,0,0.326959,1,1,0,2,4,,3,2,Mill,St,4710390,5.643,5.969,0,7.847012,6,4.5 +30406,0,0.417906,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.029737,0.15,4 +30410,0,0.383407,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.201768,0.15,4 +31760,0,0.377243,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.053822,0.15,4 +17138,0,0.297628,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.676,4.973,0,7.143082,5,5 +24183,0,0.276762,1,1,0,2,4,,3,2,Lilley,Rd,4710390,5.366,5.643,0,6.642282,6,4.5 +31484,0,0.377735,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.065644,0.15,4 +31756,0,0.261958,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.286994,0.15,4 +16118,0,0.125858,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.212,3.337,0,3.020597,6,4.5 +23126,0,0.224083,2,2,1,2,4,,3,2,Haggerty,Rd,4706524,10.262,10.486,0,5.377989,6,4.5 +16095,0,0.326649,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.555,3.881,0,7.839583,6,4.5 +22630,0,0.203853,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.785,10.989,0,4.892475,6,4.5 +30408,0,0.137101,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.29043,0.15,4 +30411,0,0.343546,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.245096,0.15,4 +22778,0,0.068785,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.717,10.785,0,1.650833,6,4.5 +18413,0,0.324372,1,1,1,2,4,,3,2,Joy,Rd,1672705,5.045,5.369,0,7.784921,6,4.5 +31488,0,0.792522,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.020527,0.15,4 +17999,0,0.121209,1,1,1,2,4,,3,2,Joy,Rd,1672705,5.369,5.49,0,2.909013,6,4.5 +16075,1,0.365501,1,0,0,1,1,ROF,3,2,N I 275/Ann Arbor,RAMP,1604408,0,0.365,0,,2.24,5 +16144,1,0.223239,1,0,0,1,1,RON,3,2,E Ann Arbor/N I 275,RAMP,1604406,0,0.223,0,,1.09,4 +16177,-1,0.288219,0,3,0,1,1,,3,2,S I 275,,1607610,19.962,20.25,0,,0.58,7 +16178,1,0.330245,1,0,0,1,1,RON,3,2,W Ann Arbor/N I 275,RAMP,1604407,0,0.33,0,,1.09,4 +16243,1,0.378357,1,0,0,1,1,ROF,3,2,S I 275/Ann Arbor,RAMP,1604402,0,0.378,0,,2.24,5 +16679,0,0.242637,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.27,4.512,0,5.823291,6,4.5 +16754,1,0.350864,3,0,0,1,1,,3,2,N I 275,,1607208,19.849,20.2,0,,0.58,7 +16957,1,0.242652,1,0,0,1,1,RON,3,2,W Ann Arbor/S I 275,RAMP,1604404,0,0.243,0,,1.09,4 +17061,0,0.120707,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.82,5.941,0,2.896958,5,5 +31744,0,0.178916,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.293989,0.15,4 +16432,-1,0.407434,0,3,0,1,1,,3,2,S I 275,,1607610,19.554,19.962,0,,0.58,7 +16486,1,0.274377,3,0,0,1,1,,3,2,N I 275,,1607208,19.575,19.849,0,,0.58,7 +16550,1,0.375592,1,0,0,1,1,RON,3,2,E Ann Arbor/S I 275,RAMP,1604403,0,0.376,0,,1.09,4 +17068,0,0.071795,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.684,5.756,0,1.723074,5,5 +31759,0,0.243295,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.839077,0.15,4 +17067,0,0.064777,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.756,5.82,0,1.554649,5,5 +16074,0,0.141751,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.128,4.27,0,3.402014,6,4.5 +30409,0,0.236919,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.686065,0.15,4 +16084,0,0.122264,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.006,4.128,0,2.934326,6,4.5 +33957,0,0.174085,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.178041,0.15,4 +30412,0,0.025761,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.618259,0.15,4 +16968,0,0.079793,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.009,6.088,0,1.915042,5,5 +16969,0,0.06748,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.941,6.009,0,1.619513,5,5 +16940,0,0.181281,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.512,4.694,0,4.350749,6,4.5 +31743,0,0.13629,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.270958,0.15,4 +16056,-1,0.333446,0,3,0,1,2,,3,2,W M 14,,1606204,6.471,6.804,0,,0.58,7 +16096,0,0.295296,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,1.159,1.455,0,7.087113,6,4.5 +16176,-1,0.300401,0,3,0,1,1,,3,2,S I 275,,1607610,21.55,21.85,0,,0.58,7 +16184,1,0.160329,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0.467,0.627,0,,0.58,7 +16607,-1,0.678884,0,4,0,1,1,,3,2,W I 96,,1606503,0,0.679,0,,0.58,7 +16631,1,0.261448,1,0,0,1,1,RFS,3,2,E M 14/N I 275,RAMP,1607709,0,0.261,0,,0.22,6 +16715,1,0.833809,3,0,0,1,1,,3,2,N I 275,,1607208,21.206,22.04,0,,0.58,7 +16922,1,0.320122,3,0,0,1,2,,3,2,E M 14,,1606205,6.452,6.773,0,,0.58,7 +17089,1,0.385863,1,0,0,1,1,RFF,3,2,E M 14/S I 275,RAMP,1606001,0,0.386,0,,0.58,7 +17521,0,0.09892,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.562,0.661,0,2.37408,6,4.5 +17561,0,0.024308,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0.733,0.758,0,0.583398,6,4.5 +18332,0,0.135355,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.779,0.914,0,3.248509,6,4.5 +19068,0,0.277629,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0.758,1.035,0,6.663108,6,4.5 +22433,1,0.086348,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.227,0.313,0,2.072355,6,4.5 +22434,1,0.168574,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.058,0.227,0,4.045779,6,4.5 +23284,-1,0.3071,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.24,0.547,0,7.3704,6,4.5 +30403,0,0.235141,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.643389,0.15,4 +30413,0,0.282648,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.783561,0.15,4 +17835,0,0.089071,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.473,0.562,0,2.137709,6,4.5 +18167,0,0.36822,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0,0.368,0,8.837282,6,4.5 +18929,0,0.131182,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.405,0.536,0,3.148364,6,4.5 +18973,0,0.592433,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,2.029,2.622,0,14.21839,5,5 +19162,0,0.759192,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,1.27,2.029,0,18.220606,5,5 +30392,0,0.483837,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.61208,0.15,4 +31741,0,0.237969,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.711261,0.15,4 +33761,0,0.370542,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.893016,0.15,4 +19122,0,0.344183,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.061,0.405,0,8.260395,6,4.5 +30394,0,0.116525,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.796607,0.15,4 +18231,0,0.237778,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.235,0.473,0,5.706682,6,4.5 +17657,0,0.208073,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,1.062,1.27,0,4.993749,5,5 +18556,0,0.242348,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.536,0.779,0,5.816343,6,4.5 +23557,0,0.295292,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,11.243,11.538,0,7.087001,6,4.5 +17753,0,0.365439,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0.368,0.733,0,8.770537,6,4.5 +31763,0,0.291448,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.994762,0.15,4 +31765,0,0.205095,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.922273,0.15,4 +18972,0,0.360881,2,2,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.521,0.882,0,8.661143,6,4.5 +30401,0,0.325925,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.822207,0.15,4 +17452,0,0.072945,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.448,0.521,0,1.750686,6,4.5 +23285,-1,0.183896,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.056,0.24,0,4.413505,6,4.5 +30402,0,0.286354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.872503,0.15,4 +18710,0,0.107726,2,2,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.882,0.99,0,2.585431,6,4.5 +22436,1,0.058314,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0,0.058,0,1.399527,6,4.5 +23286,-1,0.056435,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0,0.056,0,1.354447,6,4.5 +18394,0,0.014919,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.99,1.005,0,0.358067,6,4.5 +16975,0,0.22023,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0.939,1.159,0,5.285517,6,4.5 +16936,1,0.479402,1,0,0,1,1,RFF,3,2,N I 275/E M 14,RAMP,1607708,0,0.479,0,,0.58,7 +17838,0,0.373532,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,1.187,1.561,0,8.964779,6,4.5 +18801,0,0.416943,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.166,0.583,0,10.006627,6,4.5 +22432,1,0.650293,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.313,0.963,0,15.607038,6,4.5 +23276,-1,0.419791,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.547,0.967,0,10.07499,6,4.5 +31742,0,0.364399,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.745571,0.15,4 +31762,0,0.323977,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.77544,0.15,4 +31766,0,0.276232,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.629573,0.15,4 +18042,0,0.273381,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.914,1.187,0,6.561147,6,4.5 +17069,1,0.270525,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0.196,0.467,0,,0.58,7 +31761,0,0.368646,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.847496,0.15,4 +31764,0,0.409571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.829707,0.15,4 +16186,1,0.196159,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0,0.196,0,,0.58,7 +18800,0,0.165891,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0,0.166,0,3.981375,6,4.5 +18241,0,0.116869,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.587,0.704,0,2.804867,6,4.5 +31731,0,0.236187,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.668478,0.15,4 +18464,0,0.004284,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.583,0.587,0,0.10282,6,4.5 +17952,0,0.022718,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.704,0.727,0,0.545234,6,4.5 +16018,1,0.52404,1,0,0,1,1,RFF,3,2,S I 275/W M 14,RAMP,1597207,0,0.524,0,,0.58,7 +16122,-1,0.365785,0,3,0,1,1,,3,2,S I 275,,1607610,22.156,22.522,0,,0.58,7 +16381,-1,0.306211,0,3,0,1,1,,3,2,S I 275,,1607610,21.85,22.156,0,,0.58,7 +16458,1,0.258964,3,0,0,1,1,,3,2,N I 275,,1607208,22.04,22.299,0,,0.58,7 +16620,1,0.352827,3,0,0,1,2,,3,2,E M 14,,1606205,6.1,6.452,0,,0.58,7 +16629,-1,0.158167,0,3,0,1,2,,3,2,W M 14,,1606204,6.313,6.471,0,,0.58,7 +16993,1,0.263498,1,0,0,1,1,RFS,3,2,N I 275/W M 14,RAMP,1607710,0,0.263,0,,0.22,6 +17064,1,0.201832,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0.627,0.829,0,,0.58,7 +18859,0,0.492467,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,1.035,1.528,0,11.8192,6,4.5 +16931,-1,0.241626,0,3,0,1,2,,3,2,W M 14,,1606204,6.071,6.313,0,,0.58,7 +16019,1,0.256297,1,0,0,1,1,RFS,3,2,W M 14/S I 275,RAMP,1597205,0,0.256,0,,0.22,6 +16970,0,0.148377,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,1.455,1.603,0,3.561041,6,4.5 +1157,0,0.089496,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.462,4.551,0,2.147894,6,4.5 +3425,0,0.322093,1,1,0,2,3,,3,3,10 Mile,Rd,656510,10.498,10.82,0,7.730237,5,5 +16974,-1,0.37816,0,4,0,1,1,,3,2,W I 96,,1607506,0.045,0.423,0,,0.58,7 +17133,1,0.384993,1,0,0,1,1,ROF,3,2,W I 96/8 Mile,RAMP,1607509,0,0.385,0,,2.24,5 +17522,0,0.284638,1,1,0,2,4,,3,2,Griswold,St,1680204,0.165,0.449,0,6.831322,6,4.5 +17703,0,0.339359,1,1,0,2,5,,3,2,Randolph,St,1678702,0.026,0.365,0,8.144621,8,4.5 +17776,0,0.009751,2,1,1,2,4,,3,2,7 Mile,Rd,1698901,0.262,0.271,0,0.234035,6,4.5 +18089,0,0.31945,1,1,0,2,3,,3,2,Center,St,5495471,5.96,6.28,0,7.666808,5,5 +18276,0,0.424568,1,1,1,2,4,,4,2,6 Mile,Rd,1680701,4.607,5.032,0,10.189631,4.5,4.5 +19069,0,0.623061,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,3.986,4.609,0,14.953463,6,4.5 +20938,0,0.086314,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0.428,0.514,0,2.07153,5,5 +26869,0,0.524922,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.598131,0.15,4 +26876,0,0.280036,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.720856,0.15,4 +27234,0,0.379593,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.11022,0.15,4 +31699,0,0.645678,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.49627,0.15,4 +31773,0,0.491852,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.804451,0.15,4 +31776,0,0.558545,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.405074,0.15,4 +31779,0,0.353307,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.479373,0.15,4 +31780,0,0.321459,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.715019,0.15,4 +33608,0,0.845713,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.297107,0.15,4 +33948,0,0.476419,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.434058,0.15,4 +18102,0,0.23383,2,2,0,2,4,,3,2,Main,St,1680704,1.712,1.946,0,5.611908,6,4.5 +18112,0,0.551331,1,1,0,2,3,,4,2,Sheldon,Rd,5495471,4.404,4.955,0,13.231935,3.7,5 +18331,0,0.199337,1,1,0,2,4,,3,2,7 Mile,Rd,1680201,0.116,0.316,0,4.784095,6,4.5 +18554,0,0.378474,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,3.489,3.867,0,9.083371,4.5,4.5 +19127,0,0.549923,1,1,0,2,4,,4,2,Northville,Rd,1679402,2.363,2.913,0,13.198156,4.5,4.5 +31463,0,0.287591,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.902173,0.15,4 +31479,0,0.244237,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.861679,0.15,4 +17689,0,0.517959,1,1,0,2,3,,4,2,Sheldon,Rd,5495471,3.887,4.404,0,12.431009,3.7,5 +18109,0,0.356551,1,1,0,2,3,,3,2,Center,St,5495471,5.486,5.842,0,8.557225,5,5 +18599,0,0.225862,1,1,0,2,5,,3,2,Main,St,1680704,1.258,1.484,0,5.420698,8,4.5 +19113,0,0.21111,1,1,0,2,5,,3,2,Randolph,St,1678702,0.365,0.576,0,5.066638,8,4.5 +22445,0,0.219636,1,1,0,2,4,,3,2,Edward Hines,Dr,4705216,0,0.22,0,5.271258,6,4.5 +33946,0,0.396261,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.510269,0.15,4 +17711,0,0.071016,1,1,0,2,5,,3,2,Rogers,St,1680301,0.206,0.277,0,1.704394,8,4.5 +18699,0,0.113382,1,1,0,2,5,,3,2,Main,St,1680704,1.145,1.258,0,2.721161,8,4.5 +19064,0,0.063783,1,1,0,2,4,,3,2,Fairbrook,St,1680703,3.223,3.286,0,1.530793,6,4.5 +31476,0,0.093793,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.25102,0.15,4 +31478,0,0.065855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.580528,0.15,4 +33945,0,0.262035,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.288847,0.15,4 +17837,0,0.20577,1,1,0,2,5,,3,2,Rogers,St,1680301,0,0.206,0,4.938478,8,4.5 +17682,0,0.530425,1,1,0,2,3,,3,2,Sheldon,Rd,5495471,4.955,5.486,0,12.73019,5,5 +18141,-1,0.116283,0,1,0,2,4,,3,2,7 Mile,Rd,1680201,0,0.116,0,2.790781,6,4.5 +22442,0,0.02495,1,1,0,2,3,,3,2,Edward Hines,Dr,4705216,0.418,0.443,0,0.598811,5,5 +22443,0,0.110647,1,1,0,2,3,,3,2,Edward Hines,Dr,4705216,0.307,0.418,0,2.655524,5,5 +22444,0,0.087876,1,1,0,2,4,,3,2,Edward Hines,Dr,4705216,0.22,0.307,0,2.109028,6,4.5 +24537,1,0.096447,1,0,0,2,4,,3,2,7 Mile,Rd,4708217,0,0.096,0,2.31472,6,4.5 +18293,0,0.170979,1,1,0,2,4,,3,2,Main,St,1680704,1.541,1.712,0,4.10349,6,4.5 +33947,0,0.202088,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.850115,0.15,4 +17673,0,0.118384,1,1,0,2,3,,3,2,Center,St,5495471,5.842,5.96,0,2.841218,5,5 +18617,0,0.057273,1,1,0,2,4,,3,2,Main,St,1680704,1.484,1.541,0,1.374562,6,4.5 +18140,0,0.580343,1,1,0,2,4,,4,2,Northville,Rd,1679402,1.395,1.975,0,13.928239,4.5,4.5 +18603,0,0.535637,1,1,0,2,5,,4,2,Bradner,Rd,1689501,0.767,1.303,0,12.855278,5.8,4.5 +18717,0,0.442085,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,4.165,4.607,0,10.610034,4.5,4.5 +31465,0,0.519301,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.463227,0.15,4 +31770,0,0.480311,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.527472,0.15,4 +31754,0,0.359108,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.618583,0.15,4 +17717,0,0.38804,1,1,0,2,4,,4,2,Northville,Rd,1679402,1.975,2.363,0,9.312964,4.5,4.5 +19169,0,0.297931,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,3.867,4.165,0,7.150344,4.5,4.5 +31701,0,0.093785,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.250843,0.15,4 +17777,-1,0.281217,0,2,0,2,4,DV2,3,2,Main,St,1680704,1.946,2.227,0,6.749197,6,4.5 +22420,-1,0.174459,0,2,0,2,4,DV2,3,2,Main,St,4700528,0.054,0.228,0,4.187024,6,4.5 +31781,0,0.599151,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.379629,0.15,4 +17775,0,0.261568,2,1,1,2,4,,3,2,7 Mile,Rd,1698901,0,0.262,0,6.277633,6,4.5 +18339,1,0.05259,1,0,0,2,4,DV2,3,2,Main,St,1679402,2.956,3.009,0,1.262159,6,4.5 +21875,-1,0.053837,0,1,0,2,4,DV2,3,2,Main,St,4700528,0,0.054,0,1.292077,6,4.5 +18676,0,0.043147,1,1,0,2,4,,3,2,Main,St,1679402,2.913,2.956,0,1.035524,6,4.5 +17944,0,0.011332,1,1,0,2,4,,3,2,7 Mile,Rd,1680201,0.316,0.327,0,0.271958,6,4.5 +22419,-1,0.105236,0,2,0,2,4,DV2,3,2,Main,St,4700528,0.228,0.333,0,2.525667,6,4.5 +386,0,0.510253,1,1,0,2,4,,4,3,9 Mile,Rd,633603,5.209,5.719,0,12.246067,4.5,4.5 +1028,0,0.377767,1,1,0,2,3,,3,3,Novi,Rd,621910,4.614,4.992,0,9.06641,5,5 +1498,0,0.606509,1,1,0,2,3,,3,3,Novi,Rd,621910,4.008,4.614,0,14.556211,5,5 +3103,0,0.380695,1,1,0,2,3,,4,3,10 Mile,Rd,656510,9.439,9.819,0,9.136678,3.7,5 +18928,0,0.084127,1,1,0,2,4,,3,2,Griswold,St,1680204,0.449,0.533,0,2.019057,6,4.5 +22149,0,0.386552,1,1,0,2,3,,3,3,8 Mile,Rd,4412702,0.776,1.162,0,9.277242,5,5 +26871,0,0.533659,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.807826,0.15,4 +26877,0,0.282809,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.787407,0.15,4 +22153,0,0.499606,2,2,0,2,3,,3,3,8 Mile,Rd,4412702,0,0.499,0,11.990544,5,5 +26744,0,0.269685,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.47245,0.15,4 +18130,0,0.025793,1,1,0,2,5,,3,3,Randolph,St,1678702,0,0.026,0,0.619041,8,4.5 +3304,0,0.15304,1,1,0,2,3,,3,3,Center,St,656609,0,0.153,0,3.672949,5,5 +22152,0,0.253244,2,2,0,2,3,,3,3,8 Mile,Rd,4412702,0.499,0.753,0,6.077856,5,5 +26879,0,0.270826,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.499819,0.15,4 +30235,0,0.096096,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.306299,0.15,4 +22150,0,0.023123,2,2,0,2,3,,3,3,8 Mile,Rd,4412702,0.753,0.776,0,0.554961,5,5 +26855,0,0.765325,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.367803,0.15,4 +26747,0,0.244109,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.858619,0.15,4 +3441,0,0.129092,1,1,0,2,3,,4,3,10 Mile,Rd,656510,9.31,9.439,0,3.098196,3.7,5 +20939,0,0.427806,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0,0.428,0,10.267345,5,5 +26872,0,0.343841,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.252176,0.15,4 +26882,0,0.592672,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.224131,0.15,4 +18041,1,0.183663,1,0,0,2,4,DV2,3,2,Griswold,St,1680204,0.653,0.837,0,4.407914,6,4.5 +21874,-1,0.282156,0,1,0,2,4,DV2,3,2,Griswold,St,4700508,0,0.282,0,6.771734,6,4.5 +22147,0,0.132674,1,1,0,2,3,,3,3,8 Mile,Rd,4412702,1.162,1.295,0,3.184169,5,5 +18456,1,0.119648,1,0,0,2,4,DV2,3,2,Griswold,St,1680204,0.533,0.653,0,2.87156,6,4.5 +22438,0,0.079977,1,1,0,2,4,,3,3,Griswald,Rd,4705227,0.027,0.107,0,1.919441,6,4.5 +22440,-1,0.026954,0,1,0,2,4,DV2,3,3,Griswald,Rd,4705227,0,0.027,0,0.646905,6,4.5 +22437,0,0.058862,1,1,0,2,4,,3,3,Griswald,Rd,4705227,0.107,0.166,0,1.412678,6,4.5 +848,0,0.321036,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.888,5.209,0,7.704872,6,4.5 +1133,0,0.399633,1,1,0,2,3,,3,3,Novi,Rd,621910,3.211,3.611,0,9.591188,5,5 +3101,0,0.343259,1,1,0,2,3,,3,3,10 Mile,Rd,656510,9.982,10.325,0,8.238211,5,5 +26745,0,0.302102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.250447,0.15,4 +26875,0,0.510988,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.263721,0.15,4 +26881,0,0.50257,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.061691,0.15,4 +1957,0,0.290285,1,1,0,2,3,,3,3,Novi,Rd,621910,3.718,4.008,0,6.966844,5,5 +402,0,0.106799,1,1,0,2,3,,3,3,Novi,Rd,621910,3.611,3.718,0,2.563184,5,5 +3437,0,0.162591,1,1,0,2,3,,3,3,10 Mile,Rd,656510,9.819,9.982,0,3.902186,5,5 +26746,0,0.37513,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.00312,0.15,4 +1614,0,0.200503,1,1,0,2,3,,3,3,Novi,Rd,621910,3.011,3.211,0,4.812077,5,5 +1307,0,0.336779,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.551,4.888,0,8.082697,6,4.5 +2455,0,0.173676,1,1,0,2,3,,3,3,10 Mile,Rd,656510,10.325,10.498,0,4.168234,5,5 +26874,0,0.538548,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.925145,0.15,4 +17754,0,0.475838,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,3.139,3.614,0,11.420106,6,4.5 +18086,0,0.532935,1,1,1,2,4,,3,2,6 Mile,Rd,1680701,5.032,5.564,0,12.790451,6,4.5 +18876,0,0.594521,1,1,1,2,4,,3,2,7 Mile,Rd,1698901,1.503,2.098,0,14.268502,6,4.5 +31715,0,0.496229,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.909492,0.15,4 +31767,0,0.419826,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.075835,0.15,4 +31774,0,0.514229,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.341506,0.15,4 +33764,0,1.111445,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,26.67469,0.15,4 +31768,0,0.472157,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.331767,0.15,4 +19084,0,0.507814,1,1,1,2,4,,3,2,7 Mile,Rd,1698901,0.996,1.503,0,12.187529,6,4.5 +31778,0,0.440094,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.562259,0.15,4 +17575,0,0.248948,1,1,1,2,4,,3,2,7 Mile,Rd,1698901,0.747,0.996,0,5.974763,6,4.5 +17761,0,0.500558,1,1,1,2,4,,3,2,6 Mile,Rd,1680701,5.564,6.065,0,12.013387,6,4.5 +18272,0,0.333828,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,2.295,2.629,0,8.011882,6,4.5 +31709,0,0.384896,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.237502,0.15,4 +31710,0,0.49562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.894892,0.15,4 +31711,0,0.538131,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.915148,0.15,4 +30400,0,0.188808,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.531393,0.15,4 +17566,0,0.186208,2,2,1,2,4,,3,2,6 Mile,Rd,1680701,6.065,6.251,0,4.469001,6,4.5 +17982,0,0.510057,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,2.629,3.139,0,12.24136,6,4.5 +31713,0,0.500875,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.021004,0.15,4 +33763,0,0.218562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.245485,0.15,4 +17453,0,0.37159,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,3.614,3.986,0,8.918155,6,4.5 +31723,0,0.367969,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.831268,0.15,4 +31775,0,0.507443,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.178627,0.15,4 +18504,0,0.191676,2,2,0,2,4,,3,2,7 Mile,Rd,1700106,0,0.192,0,4.600236,6,4.5 +31714,0,0.171917,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.126017,0.15,4 +1762,-1,1.565597,0,4,0,1,1,,3,3,W I 96,,639107,2.347,3.912,0,,0.58,7 +1919,0,0.605229,2,2,1,2,3,,3,3,Haggerty,Rd,639005,0.432,1.037,0,14.525492,5,5 +2134,0,0.56523,1,1,0,2,4,,3,3,9 Mile,Rd,633603,3.647,4.212,0,13.56553,6,4.5 +2992,0,0.391354,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,0.609,1,0,9.392492,6,4.5 +20935,0,0.260725,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,1.262,1.523,0,6.257397,5,5 +24870,0,0.586303,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.071268,0.15,4 +26152,0,0.519505,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.468129,0.15,4 +26883,0,0.503869,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.092849,0.15,4 +26884,0,0.557754,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.386084,0.15,4 +26885,0,0.569542,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.669001,0.15,4 +26887,0,0.265428,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.370276,0.15,4 +2993,0,0.468092,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,0,0.468,0,11.234214,6,4.5 +20936,0,0.501969,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0.76,1.262,0,12.047257,5,5 +25070,0,0.52624,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.62976,0.15,4 +20937,0,0.246513,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0.514,0.76,0,5.916314,5,5 +3303,0,0.140663,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,0.468,0.609,0,3.37591,6,4.5 +2986,0,0.191276,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.272,1.463,0,4.590626,6,4.5 +24868,0,0.53608,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.865913,0.15,4 +26886,0,0.506393,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.15343,0.15,4 +1634,0,0.249648,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.212,4.462,0,5.991549,6,4.5 +3290,0,0.27177,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1,1.272,0,6.522471,6,4.5 +2983,0,0.323465,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.674,1.997,0,7.763155,6,4.5 +3288,0,0.211458,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.463,1.674,0,5.074997,6,4.5 +362,0,0.431805,2,2,1,2,3,,3,3,Haggerty,Rd,639005,0,0.432,0,10.363309,5,5 +745,1,0.390646,1,0,0,1,1,ROF,3,3,E I 96/8 Mile,RAMP,633501,0,0.391,0,,2.24,5 +1876,1,0.299545,4,0,0,1,1,,3,3,E I 96,,639202,3.662,3.961,0,,0.58,7 +20933,0,0.038174,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.654,1.692,0,0.916185,5,5 +20934,0,0.130928,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,1.523,1.654,0,3.142268,5,5 +3128,1,0.284294,1,0,0,1,1,RON,3,3,W 8 Mile/W I 96,RAMP,656710,0,0.284,0,,1.09,4 +16100,-1,0.045203,0,4,0,1,1,,3,2,W I 96,,1607506,0,0.045,0,,0.58,7 +16780,1,0.244109,4,0,0,1,1,,3,2,E I 96,,1607802,0,0.244,0,,0.58,7 +16856,1,0.300294,1,0,0,1,1,RON,3,2,8 Mile/W I 96,RAMP,1607508,0,0.3,0,,1.09,4 +16944,1,0.353901,1,0,0,1,1,RON,3,2,8 Mile/E I 96,RAMP,1607809,0,0.354,0,,1.09,4 +20930,0,0.07616,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.828,1.905,0,1.827834,5,5 +1267,-1,0.189502,0,4,0,1,1,,3,3,W I 96,,639107,3.912,4.101,0,,0.58,7 +2863,1,0.291917,1,0,0,1,1,RON,3,3,W 8 Mile/E I 96,RAMP,656709,0,0.292,0,,1.09,4 +20931,0,0.099033,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.729,1.828,0,2.376798,5,5 +20932,0,0.037521,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.692,1.729,0,0.900515,5,5 +1368,1,0.04058,4,0,0,1,1,,3,3,E I 96,,639202,3.961,4.002,0,,0.58,7 +20929,0,0.106602,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.905,2.011,0,2.55844,5,5 +20928,0,0.039973,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.011,2.051,0,0.959341,5,5 +868,0,0.3941,1,1,0,2,4,,3,3,9 Mile,Rd,633603,3.174,3.568,0,9.458404,6,4.5 +1691,0,0.407612,1,1,1,2,3,,3,3,Haggerty,Rd,639005,1.037,1.444,0,9.782686,5,5 +604,0,0.079227,1,1,0,2,4,,3,3,9 Mile,Rd,633603,3.568,3.647,0,1.901454,6,4.5 +1333,0,0.279359,1,1,0,2,4,,3,3,9 Mile,Rd,633603,2.895,3.174,0,6.704609,6,4.5 +772,0,0.089237,2,2,0,2,3,,3,3,Haggerty,Rd,639005,1.453,1.542,0,2.141689,5,5 +1208,0,0.008998,2,2,0,2,3,,3,3,Haggerty,Rd,639005,1.444,1.453,0,0.215945,5,5 +16103,0,0.518225,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,1.857,2.375,0,12.43741,6,4.5 +16131,1,1.004492,4,0,0,1,1,,3,2,E I 96,,1606201,2.615,3.619,0,,0.58,7 +16230,0,0.26709,2,2,0,2,5,,3,2,Stark,Rd,1604610,0.664,0.931,0,6.410161,8,4.5 +16600,-1,0.989975,0,4,0,1,1,,3,2,W I 96,,1606503,2.373,3.362,0,,0.58,7 +16900,0,0.503947,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,7.83,8.334,0,12.094717,5,5 +16959,0,0.635322,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.805,4.44,0,15.247726,6,4.5 +17128,0,0.312995,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.2,0.513,0,7.511872,6,4.5 +17871,0,0.778097,1,1,0,2,4,,3,2,Joy,Rd,1672705,7.105,7.883,0,18.674336,6,4.5 +17949,0,0.136244,2,2,0,2,5,,3,2,Cowan,Rd,1669910,1.246,1.382,0,3.269867,8,4.5 +18050,0,0.313306,2,2,1,2,3,,3,2,Farmington,Rd,1690602,1.261,1.574,0,7.51935,5,5 +18961,0,1.249372,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,4.489,5.738,0,29.98492,5,5 +19123,0,0.399524,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,2.07,2.469,0,9.588583,6,4.5 +23117,-1,0.602235,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.854,3.456,0,14.45364,8,4.5 +23694,1,0.391608,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.543,2.935,0,9.398598,8,4.5 +24044,0,0.073974,2,2,1,2,4,,3,2,Warren,Rd,4710470,8.007,8.081,0,1.775387,6,4.5 +24133,0,0.44027,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.113,6.553,0,10.56647,6,4.5 +31330,0,0.248667,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.968008,0.15,4 +31730,0,0.248779,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.970707,0.15,4 +31788,0,0.324376,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.785029,0.15,4 +31791,0,0.405429,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.730292,0.15,4 +31794,0,0.314595,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.550288,0.15,4 +31796,0,0.256844,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.164256,0.15,4 +31797,0,0.436875,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.485,0.15,4 +31815,0,0.524606,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.590551,0.15,4 +31843,0,0.541596,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.998312,0.15,4 +33767,0,0.459611,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.030653,0.15,4 +15099,0,0.68188,1,1,0,2,5,,3,2,Hix,Rd,1595808,2.18,2.861,0,16.365111,8,4.5 +16565,0,0.289074,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,7.259,7.548,0,6.937766,5,5 +17060,0,0.257786,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,1.003,1.261,0,6.186861,6,4.5 +17633,0,0.175547,1,1,1,2,4,,3,2,Joy,Rd,1672705,6.473,6.648,0,4.213125,6,4.5 +17708,0,0.18819,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,2.585,2.773,0,4.516549,6,4.5 +18719,0,0.243389,1,1,0,2,4,,3,2,Joy,Rd,1672705,5.894,6.138,0,5.841334,6,4.5 +24147,0,0.594673,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,5.051,5.645,0,14.272163,6,4.5 +24148,0,0.461957,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,4.589,5.051,0,11.086957,6,4.5 +31324,0,0.329408,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.905802,0.15,4 +31502,0,0.497172,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.932122,0.15,4 +31505,0,0.67877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.29047,0.15,4 +31733,0,0.48295,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.590792,0.15,4 +31504,0,0.246302,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.911245,0.15,4 +31507,0,0.709993,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.039829,0.15,4 +31322,0,0.270855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.500508,0.15,4 +18021,0,0.087041,1,1,0,2,4,,3,2,Joy,Rd,1672705,5.807,5.894,0,2.088989,6,4.5 +16407,0,0.259622,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,0.497,0.757,0,6.230927,6,4.5 +16920,0,0.243529,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.727,6.97,0,5.844695,5,5 +18278,0,0.237281,1,1,1,2,4,,3,2,Joy,Rd,1672705,6.138,6.375,0,5.69475,6,4.5 +23288,0,0.166908,1,1,0,2,5,,3,2,Hix,Rd,4705254,0,0.167,0,4.005783,8,4.5 +31732,0,0.485833,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.659994,0.15,4 +14852,0,0.3331,1,1,0,2,5,,3,2,Hix,Rd,1595808,2.861,3.194,0,7.994399,8,4.5 +16954,0,0.223797,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.446,6.669,0,5.371136,5,5 +31727,0,0.276877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.645037,0.15,4 +15682,0,0.172075,1,1,0,2,5,,3,2,Hix,Rd,1595808,3.194,3.366,0,4.129805,8,4.5 +31726,0,0.16751,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.020238,0.15,4 +31728,0,0.020776,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.498616,0.15,4 +16951,0,0.05736,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.669,6.727,0,1.376647,5,5 +18059,0,0.09763,1,1,1,2,4,,3,2,Joy,Rd,1672705,6.375,6.473,0,2.343131,6,4.5 +16120,0,0.246672,1,1,1,2,4,,3,2,Ann Arbor,Trl,1604508,0.757,1.003,0,5.920136,6,4.5 +16444,0,0.288516,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.97,7.259,0,6.924376,5,5 +24145,0,0.213123,2,2,0,2,4,,3,2,Newburgh,Rd,4710394,5.855,6.068,0,5.114958,6,4.5 +24146,0,0.20931,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,5.645,5.855,0,5.023441,6,4.5 +18395,0,0.09685,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,4.392,4.489,0,2.324408,5,5 +18787,0,0.116205,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,2.469,2.585,0,2.788915,6,4.5 +19602,0,0.093707,1,1,0,2,5,,3,2,Jughandle,Rd,1909401,0,0.094,0,2.248962,8,4.5 +24142,0,0.045519,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.068,6.113,0,1.092451,6,4.5 +31503,0,0.450527,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.812658,0.15,4 +31509,0,0.373745,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.96987,0.15,4 +17959,0,0.196168,2,2,0,2,5,,3,2,Cowan,Rd,1669910,0.994,1.19,0,4.70804,8,4.5 +24045,0,0.248885,2,2,1,2,4,,3,2,Warren,Rd,4710470,7.758,8.007,0,5.973241,6,4.5 +31804,0,0.077693,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.864637,0.15,4 +18361,0,0.016297,2,2,1,2,5,,3,2,Central City,Pkwy,1669910,0.978,0.994,0,0.391133,8,4.5 +31805,0,0.094618,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.270826,0.15,4 +18340,0,0.055971,2,2,0,2,5,,3,2,Cowan,Rd,1669910,1.19,1.246,0,1.343307,8,4.5 +16697,0,0.59599,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,1.261,1.857,0,14.303749,6,4.5 +16902,0,0.21967,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,7.611,7.83,0,5.272092,5,5 +19044,0,0.456953,1,1,0,2,4,,3,2,Joy,Rd,1672705,6.648,7.105,0,10.96688,6,4.5 +31787,0,0.308049,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.393174,0.15,4 +31785,0,0.333698,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.008744,0.15,4 +31786,0,0.48318,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.596329,0.15,4 +16603,-1,0.71121,0,4,0,1,1,,3,2,W I 96,,1606503,1.224,1.935,0,,0.58,7 +16963,0,0.228615,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,2.938,3.167,0,5.486751,6,4.5 +17018,1,0.758693,4,0,0,1,1,,3,2,E I 96,,1606201,1.416,2.174,0,,0.58,7 +17122,0,0.518785,2,2,0,2,4,,3,2,Levan,Rd,1604605,1.213,1.732,0,12.450843,6,4.5 +18000,0,0.110854,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,0.987,1.098,0,2.660493,8,4.5 +22425,1,0.135155,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,1.955,2.09,0,3.243714,8,4.5 +23227,-1,0.160337,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,1.973,2.133,0,3.848091,8,4.5 +24128,0,0.485848,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,7.064,7.55,0,11.660342,6,4.5 +31706,0,0.250461,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.011059,0.15,4 +31707,0,0.468376,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.241034,0.15,4 +31722,0,0.475404,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.409685,0.15,4 +31735,0,0.535661,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.855868,0.15,4 +31799,0,0.471482,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.315578,0.15,4 +16919,1,0.329223,1,0,0,1,1,ROF,3,2,E I 96/Newburgh,RAMP,1606206,0,0.329,0,,2.24,5 +17088,1,0.165028,1,0,0,1,1,RON,3,2,Newburgh/W I 96,RAMP,1606003,0,0.165,0,,1.09,4 +22430,1,0.251675,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,1.582,1.834,0,6.040197,6,4.5 +23230,-1,0.297482,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,1.464,1.762,0,7.139566,6,4.5 +24131,0,0.314155,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.553,6.867,0,7.539708,6,4.5 +31716,0,0.141695,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.400684,0.15,4 +31717,0,0.541469,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.995245,0.15,4 +31718,0,0.260446,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.2507,0.15,4 +16713,1,0.308169,4,0,0,1,1,,3,2,E I 96,,1606201,1.107,1.416,0,,0.58,7 +31703,0,0.152749,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.665972,0.15,4 +18185,0,0.34002,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,0.647,0.987,0,8.160479,8,4.5 +23228,-1,0.21164,0,3,0,2,4,,3,2,Schoolcraft,Rd,4705258,1.762,1.973,0,5.079369,6,4.5 +24129,0,0.058765,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,7.006,7.064,0,1.410364,6,4.5 +22429,1,0.120823,3,0,0,2,4,,3,2,Schoolcraft,Rd,4705231,1.834,1.955,0,2.899762,6,4.5 +24130,0,0.138237,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.867,7.006,0,3.317681,6,4.5 +16653,0,0.424672,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,2.514,2.938,0,10.192118,6,4.5 +24127,0,0.501749,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,7.55,8.052,0,12.041981,6,4.5 +31705,0,0.467428,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.218278,0.15,4 +31708,0,0.460511,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.05227,0.15,4 +16706,1,0.440846,4,0,0,1,1,,3,2,E I 96,,1606201,2.174,2.615,0,,0.58,7 +16841,0,0.237437,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.699,0.937,0,5.698497,6,4.5 +16893,-1,0.437474,0,4,0,1,1,,3,2,W I 96,,1606503,1.935,2.373,0,,0.58,7 +17671,0,0.390593,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,1.098,1.488,0,9.374225,8,4.5 +22422,1,0.2501,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.208,2.458,0,6.002395,8,4.5 +23194,-1,0.2626,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.214,2.477,0,6.302392,8,4.5 +31792,0,0.255514,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.132342,0.15,4 +31793,0,0.231157,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.547762,0.15,4 +16617,1,0.177568,1,0,0,1,1,RON,3,2,Newburgh/E I 96,RAMP,1606208,0,0.178,0,,1.09,4 +16789,1,0.175423,1,0,0,1,1,ROF,3,2,W I 96/Newburgh,RAMP,1606005,0,0.175,0,,2.24,5 +22424,1,0.118399,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.09,2.208,0,2.841583,8,4.5 +23196,-1,0.080663,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.133,2.214,0,1.93592,8,4.5 +17125,0,0.186325,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.513,0.699,0,4.47179,6,4.5 +16839,1,0.169366,1,0,0,1,1,ROF,3,2,W I 96/Levan,RAMP,1606505,0,0.169,0,,2.24,5 +16918,1,0.164957,1,0,0,1,1,RON,3,2,Levan/E I 96,RAMP,1606209,0,0.165,0,,1.09,4 +17124,0,0.215894,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.937,1.152,0,5.181455,6,4.5 +23147,-1,0.276682,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.577,2.854,0,6.640361,8,4.5 +31782,0,0.263503,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.324082,0.15,4 +31783,0,0.226516,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.436384,0.15,4 +31836,0,0.302402,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.257648,0.15,4 +23192,-1,0.100404,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.477,2.577,0,2.409688,8,4.5 +23350,1,0.011361,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.532,2.543,0,0.272654,8,4.5 +16838,0,0.060958,2,2,0,2,4,,3,2,Levan,Rd,1604605,1.152,1.213,0,1.462986,6,4.5 +22614,1,0.073592,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.458,2.532,0,1.766202,8,4.5 +16083,0,0.354354,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.44,3.794,0,8.504499,6,4.5 +16836,0,0.466408,2,2,0,2,4,,3,2,Levan,Rd,1604605,1.732,2.198,0,11.193799,6,4.5 +31798,0,0.519572,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.469724,0.15,4 +31806,0,0.253925,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.094208,0.15,4 +31807,0,0.511946,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.286697,0.15,4 +16650,0,0.273042,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.167,3.44,0,6.553019,6,4.5 +31846,0,0.344341,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.264184,0.15,4 +16961,0,0.010854,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.794,3.805,0,0.26049,6,4.5 +16783,0,0.503344,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,8.83,9.333,0,12.080263,5,5 +17013,0,0.528153,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,2.691,3.219,0,12.675661,6,4.5 +17648,0,0.196198,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,6.897,7.093,0,4.708749,5,5 +18075,0,0.641513,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,6.256,6.897,0,15.39632,5,5 +18379,0,0.637131,1,1,0,2,5,,3,2,Cowan,Rd,1669808,0,0.637,0,15.291151,8,4.5 +18712,0,0.121475,1,1,0,2,5,,3,2,Farmington,Rd,1690602,0.142,0.263,0,2.915391,8,4.5 +24013,0,0.57085,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.893,11.463,0,13.700403,5,5 +24040,0,0.220389,2,2,1,2,3,,3,2,Warren,Rd,4710470,8.741,8.961,0,5.289342,5,5 +31318,0,0.659446,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.826697,0.15,4 +31808,0,0.38156,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.157444,0.15,4 +18317,0,0.480205,1,1,0,2,5,,3,2,Cowan,Rd,1669910,1.382,1.862,0,11.524929,8,4.5 +24042,0,0.245585,2,2,1,2,4,,3,2,Warren,Rd,4710470,8.295,8.54,0,5.894039,6,4.5 +24437,0,0.109635,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.783,10.893,0,2.631238,5,5 +31803,0,0.332062,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.969477,0.15,4 +31812,0,0.285518,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.852437,0.15,4 +24043,0,0.213984,2,2,1,2,4,,3,2,Warren,Rd,4710470,8.081,8.295,0,5.135612,6,4.5 +31813,0,0.141761,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.402275,0.15,4 +24020,0,0.326408,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.457,10.783,0,7.833793,5,5 +24041,0,0.200789,2,2,1,2,3,,3,2,Warren,Rd,4710470,8.54,8.741,0,4.818938,5,5 +16886,0,0.248361,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,8.582,8.83,0,5.960673,5,5 +17112,0,0.221222,1,1,0,2,5,,3,2,Stark,Rd,1604610,0,0.221,0,5.309336,8,4.5 +18482,0,0.517625,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,5.738,6.256,0,12.422997,5,5 +24521,0,0.450873,2,2,0,2,3,,3,2,Wayne,Rd,4719470,11.643,12.094,0,10.820945,5,5 +31784,0,0.47366,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.367848,0.15,4 +31790,0,0.365516,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.772388,0.15,4 +16391,0,0.247803,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,8.334,8.582,0,5.947277,5,5 +24113,0,0.21898,2,2,0,2,3,,3,2,Wayne,Rd,4719470,12.249,12.467,0,5.255516,5,5 +24365,0,0.1548,2,2,0,2,3,,3,2,Wayne,Rd,4719470,12.094,12.249,0,3.715203,5,5 +16265,0,0.316571,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,2.375,2.691,0,7.597701,6,4.5 +24436,0,0.17974,2,2,1,2,3,,3,2,Wayne,Rd,4719470,11.463,11.643,0,4.313758,5,5 +16822,0,0.442881,1,1,0,2,5,,3,2,Stark,Rd,1604610,0.221,0.664,0,10.629138,8,4.5 +31809,0,0.141693,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.400621,0.15,4 +17967,0,0.390689,1,1,0,2,5,,3,2,Cowan,Rd,1669808,0.637,1.028,0,9.376542,8,4.5 +24039,0,0.575933,2,2,1,2,3,,3,2,Warren,Rd,4710470,8.961,9.537,0,13.82238,5,5 +30278,0,0.432396,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.377501,0.15,4 +31319,0,0.222345,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.336283,0.15,4 +31323,0,0.198551,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.765213,0.15,4 +31321,0,0.144097,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.458319,0.15,4 +16997,0,0.09225,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,3.219,3.312,0,2.214008,6,4.5 +18711,0,0.141806,1,1,0,2,5,,3,2,Farmington,Rd,1690602,0,0.142,0,3.403353,8,4.5 +15838,0,0.094823,1,1,0,2,5,,3,2,Venoy,Rd,1599408,4.985,5.08,0,2.275764,8,4.5 +15837,0,0.075562,1,1,0,2,5,,3,2,Venoy,Rd,1599408,5.08,5.155,0,1.813495,8,4.5 +16942,0,0.502462,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,9.333,9.836,0,12.059099,5,5 +17477,0,0.505774,1,1,0,2,5,,3,2,Chicago,Rd,1696207,0.505,1.01,0,12.138568,8,4.5 +17983,0,0.110733,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.714,0.825,0,2.657601,6,4.5 +31810,0,0.50451,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.108247,0.15,4 +18492,0,0.256102,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.263,0.519,0,6.146459,6,4.5 +18502,0,0.041124,1,1,0,2,4,,3,2,Joy,Rd,1677810,0,0.041,0,0.986981,6,4.5 +18168,0,0.195142,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.519,0.714,0,4.683397,6,4.5 +17454,0,0.311292,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.95,1.261,0,7.470999,6,4.5 +17658,0,0.124803,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.825,0.95,0,2.995262,6,4.5 +31307,0,0.251717,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.041205,0.15,4 +31309,0,0.247734,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.945604,0.15,4 +16081,0,0.238712,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,4.504,4.742,0,5.729089,6,4.5 +16825,1,0.411613,1,0,0,2,5,DV2,3,2,Hubbard,Rd,1606910,0.07,0.481,0,9.878705,8,4.5 +17109,0,0.48082,2,2,0,2,5,,3,2,Stark,Rd,1604610,1.706,2.186,0,11.539676,8,4.5 +17110,0,0.20972,2,2,0,2,5,,3,2,Stark,Rd,1604610,1.436,1.646,0,5.03329,8,4.5 +18142,0,0.482551,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.275,2.757,0,11.581226,5,5 +22737,-1,0.481263,0,1,0,2,5,DV2,3,2,Hubbard,Rd,4706083,0,0.481,0,11.550324,8,4.5 +23112,-1,0.26822,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.456,3.724,0,6.437274,8,4.5 +23687,1,0.279097,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.414,3.693,0,6.698328,8,4.5 +31334,0,0.408035,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.792841,0.15,4 +31818,0,0.168215,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.037168,0.15,4 +31820,0,0.489423,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.746148,0.15,4 +31821,0,0.546071,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.105705,0.15,4 +33609,0,0.220806,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.299341,0.15,4 +17111,0,0.505325,2,2,0,2,5,,3,2,Stark,Rd,1604610,0.931,1.436,0,12.127798,8,4.5 +23691,1,0.479881,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.935,3.414,0,11.517144,8,4.5 +31795,0,0.53493,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.838318,0.15,4 +31816,0,0.271125,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.507009,0.15,4 +31834,0,0.298593,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.166234,0.15,4 +31817,0,0.042613,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.022709,0.15,4 +31819,0,0.508306,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.199352,0.15,4 +16646,0,0.063748,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,4.44,4.504,0,1.52995,6,4.5 +16616,1,0.174631,1,0,0,1,1,RON,3,2,Farmington/E I 96,RAMP,1606304,0,0.175,0,,1.09,4 +16837,1,0.1567,1,0,0,1,1,ROF,3,2,W I 96/Farmington,RAMP,1606507,0,0.157,0,,2.24,5 +16888,-1,0.509817,0,4,0,1,1,,3,2,W I 96,,1606503,3.362,3.872,0,,0.58,7 +17015,1,0.491704,4,0,0,1,1,,3,2,E I 96,,1606201,3.619,4.11,0,,0.58,7 +17627,0,0.463018,2,2,1,2,3,,3,2,Farmington,Rd,1690602,1.574,2.037,0,11.112421,5,5 +23078,-1,0.385326,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,4.089,4.474,0,9.247828,8,4.5 +23623,1,0.425814,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,4.029,4.455,0,10.219539,8,4.5 +31801,0,0.504601,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.110424,0.15,4 +32572,0,0.506391,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.153372,0.15,4 +31800,0,0.240056,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.761355,0.15,4 +19037,0,0.178158,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.037,2.215,0,4.275803,5,5 +23108,-1,0.077693,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.895,3.973,0,1.864635,8,4.5 +23658,1,0.097288,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.858,3.955,0,2.334901,8,4.5 +16560,1,0.162585,1,0,0,1,1,RON,3,2,Farmington/W I 96,RAMP,1606506,0,0.163,0,,1.09,4 +23110,-1,0.171647,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.724,3.895,0,4.119532,8,4.5 +23686,1,0.164707,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.693,3.858,0,3.952958,8,4.5 +24241,1,0.149992,1,0,0,1,1,ROF,3,2,E I 96/Farmington,RAMP,4710335,0,0.15,0,,2.24,5 +16821,0,0.059799,2,2,0,2,5,,3,2,Stark,Rd,1604610,1.646,1.706,0,1.435187,8,4.5 +23107,-1,0.115762,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.973,4.089,0,2.778286,8,4.5 +23657,1,0.074196,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.955,4.029,0,1.780707,8,4.5 +18565,0,0.059968,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.215,2.275,0,1.439222,5,5 +31326,0,0.218518,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.244424,0.15,4 +31823,0,0.271763,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.522316,0.15,4 +16553,1,0.069812,1,0,0,2,5,DV2,3,2,Hubbard,Rd,1606910,0,0.07,0,1.675497,8,4.5 +16543,0,0.307391,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.68,0.987,0,7.377377,8,4.5 +16642,1,0.494418,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,4.949,5.443,0,11.866034,6,4.5 +18677,1,0.476859,2,0,0,2,3,DV2,3,2,Farmington,Rd,1690602,2.773,3.25,0,11.444618,5,5 +18989,1,0.370403,1,0,0,2,5,DV2,3,2,Lyndon,Ave,1696208,0.245,0.615,0,8.889682,8,4.5 +21629,-1,0.475925,0,2,0,2,3,DV2,3,2,Farmington,Rd,4700097,0,0.476,0,11.422195,5,5 +22244,-1,0.370423,0,1,0,2,5,DV2,3,2,Lyndon,Ave,4703056,0.236,0.607,0,8.890146,8,4.5 +22481,-1,0.494313,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0.205,0.699,0,11.863518,6,4.5 +18988,1,0.244963,2,0,0,2,5,DV2,3,2,Lyndon,Rd,1696208,0,0.245,0,5.879115,8,4.5 +22245,-1,0.236327,0,2,0,2,5,DV2,3,2,Lyndon,Rd,4703056,0,0.236,0,5.671859,8,4.5 +16820,-1,0.013679,0,2,0,2,5,DV2,3,2,Stark,Rd,1604610,2.186,2.2,0,0.328305,8,4.5 +17721,0,0.007047,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.757,2.765,0,0.169132,5,5 +19132,0,0.008288,2,2,0,2,3,,3,2,Farmington,Rd,1690602,2.765,2.773,0,0.198922,5,5 +16953,1,0.195095,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,4.742,4.937,0,4.682269,6,4.5 +18143,1,0.23512,2,0,0,2,3,DV2,3,2,Farmington,Rd,1690602,3.268,3.503,0,5.642888,5,5 +21541,-1,0.235011,0,2,0,2,3,DV2,3,2,Farmington,Rd,4700097,0.494,0.729,0,5.640254,5,5 +22483,-1,0.193412,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0,0.193,0,4.641891,6,4.5 +16947,1,0.01136,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,4.937,4.949,0,0.27263,6,4.5 +18344,1,0.018299,2,0,0,2,3,DV2,3,2,Farmington,Rd,1690602,3.25,3.268,0,0.439187,5,5 +21630,-1,0.018232,0,2,0,2,3,DV2,3,2,Farmington,Rd,4700097,0.476,0.494,0,0.437574,5,5 +22482,-1,0.011412,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0.193,0.205,0,0.273886,6,4.5 +18737,1,0.130933,1,0,0,2,5,DV2,3,2,Lyndon,Ave,1696208,0.615,0.746,0,3.142401,8,4.5 +22243,-1,0.130876,0,1,0,2,5,DV2,3,2,Lyndon,Ave,4703056,0.607,0.737,0,3.14103,8,4.5 +31332,0,0.146081,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.50595,0.15,4 +31333,0,0.139185,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.340437,0.15,4 +16824,0,0.185277,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.495,0.68,0,4.446652,8,4.5 +31343,0,0.214743,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.153841,0.15,4 +16544,0,0.01326,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.481,0.495,0,0.318246,8,4.5 +16542,0,0.243792,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,1.001,1.244,0,5.851015,8,4.5 +16823,0,0.013673,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.987,1.001,0,0.32815,8,4.5 +591,0,0.329053,1,1,0,2,5,,3,3,Lytle,,637710,0,0.329,0,7.897274,8,4.5 +1044,0,0.230462,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.195,1.425,0,5.531097,8,4.5 +1794,0,0.239635,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.95,1.19,0,5.751238,6,4.5 +2460,1,1.849172,2,0,0,1,2,,3,3,E M 5,,657303,14.184,16.033,0,,0.58,7 +17542,0,0.403824,1,1,0,2,5,,3,2,Gill,Rd,1700705,1.025,1.428,0,9.691787,8,4.5 +17885,0,0.565475,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.873,8.438,0,13.571394,5,5 +18345,0,0.456573,2,2,1,2,3,,3,2,Farmington,Rd,1690602,5.799,6.255,0,10.957742,5,5 +18428,0,0.742178,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,1.731,2.473,0,17.812273,5,5 +20922,0,0.75389,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,3.505,4.259,0,18.093362,5,5 +24110,0,0.47324,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,10.56,11.033,0,11.357764,6,4.5 +26201,0,0.765373,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,18.36895,0.15,4 +30241,0,0.728774,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,17.490573,0.15,4 +31724,0,0.395028,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.480675,0.15,4 +31829,0,0.495771,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.898508,0.15,4 +31838,0,0.754394,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.105452,0.15,4 +32599,0,0.499682,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.992365,0.15,4 +16341,1,0.392257,4,0,0,1,1,,3,2,E I 96,,1607802,1.303,1.695,0,,0.58,7 +16960,-1,0.410408,0,4,0,1,1,,3,2,W I 96,,1607506,1.398,1.809,0,,0.58,7 +17117,0,0.236303,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.707,3.943,0,5.671267,8,4.5 +18718,1,0.211999,2,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,7.036,7.248,0,5.087971,5,5 +19000,0,0.503302,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,0.974,1.477,0,12.07925,5,5 +22335,-1,0.213149,0,2,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.481,0.694,0,5.115575,5,5 +24122,1,0.172773,2,0,0,2,4,DV2,3,2,Newburgh,Rd,4710394,9.168,9.34,0,4.146541,6,4.5 +31702,0,0.504745,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.113877,0.15,4 +31777,0,0.75086,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.020635,0.15,4 +31824,0,0.239654,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.751694,0.15,4 +31825,0,0.013706,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.328937,0.15,4 +31832,0,0.359074,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.617764,0.15,4 +31844,0,0.248283,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.958782,0.15,4 +16348,1,0.366432,1,0,0,1,1,RON,3,2,E 6 Mile/E I 96,RAMP,1607803,0,0.366,0,,1.09,4 +16454,1,0.397169,4,0,0,1,1,,3,2,E I 96,,1607802,1.998,2.396,0,,0.58,7 +16766,1,0.242572,1,0,0,1,1,RON,3,2,E 6 Mile/W I 96,RAMP,1607606,0,0.243,0,,1.09,4 +16945,-1,0.401537,0,4,0,1,1,,3,2,W I 96,,1607506,2.089,2.491,0,,0.58,7 +17063,1,0.48639,1,0,0,1,1,ROF,3,2,W I 96/6 Mile,RAMP,1607607,0,0.486,0,,2.24,5 +19071,1,0.348729,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.687,7.036,0,8.369496,5,5 +22336,-1,0.357511,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.123,0.481,0,8.580268,5,5 +24125,0,0.504653,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,8.538,9.042,0,12.111677,6,4.5 +31719,0,0.355154,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.523703,0.15,4 +31720,0,0.551865,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.244752,0.15,4 +16076,-1,0.280647,0,4,0,1,1,,3,2,W I 96,,1607506,1.809,2.089,0,,0.58,7 +16078,1,0.303915,4,0,0,1,1,,3,2,E I 96,,1607802,1.695,1.998,0,,0.58,7 +16680,1,0.398882,1,0,0,1,1,ROF,3,2,E I 96/6 Mile,RAMP,1607801,0,0.399,0,,2.24,5 +39846,1,0.159484,3,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.211,1.37,0,3.827611,3.7,5 +18277,0,0.134293,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,6.42,6.554,0,3.223042,5,5 +31833,0,0.39989,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.597351,0.15,4 +16089,1,0.23304,1,0,0,1,1,RON,3,2,W 6 Mile/E I 96,RAMP,1607804,0,0.233,0,,1.09,4 +18495,0,0.057828,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,6.362,6.42,0,1.387874,5,5 +18863,0,0.017867,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,6.345,6.362,0,0.428803,5,5 +16758,1,0.015273,1,0,0,1,3,RSF,3,2,W I 96/N I 275/6 Mile,RAMP,1607607,0.486,0.502,0,,5,5 +17762,1,0.04728,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.608,6.656,0,1.134715,5,5 +22337,-1,0.030023,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.093,0.123,0,0.72055,5,5 +17987,1,0.053828,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.554,6.608,0,1.29187,5,5 +22340,-1,0.028179,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.065,0.093,0,0.676293,5,5 +22341,-1,0.064991,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0,0.065,0,1.559773,5,5 +17459,1,0.031874,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.656,6.687,0,0.764967,5,5 +31835,0,0.151498,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.635946,0.15,4 +24123,0,0.106693,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.061,9.168,0,2.560632,6,4.5 +24124,0,0.018757,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.042,9.061,0,0.450167,6,4.5 +16508,1,0.30502,4,0,0,1,1,,3,2,E I 96,,1607802,0.676,0.981,0,,0.58,7 +16771,1,0.209043,1,0,0,1,1,RON,3,2,W 7 Mile/E I 96,RAMP,1607806,0,0.209,0,,1.09,4 +16847,1,0.30462,1,0,0,1,1,RON,3,2,7 Mile/W I 96,RAMP,1607510,0,0.305,0,,1.09,4 +16967,-1,0.188203,0,4,0,1,1,,3,2,W I 96,,1607506,0.812,1,0,,0.58,7 +17077,1,0.394038,1,0,0,1,1,ROF,3,2,E I 96/7 Mile,RAMP,1607805,0,0.394,0,,2.24,5 +17082,1,0.219827,1,0,0,1,1,ROF,3,2,W I 96/W 7 Mile,RAMP,1607601,0,0.22,0,,2.24,5 +17684,0,0.172867,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,0.588,0.761,0,4.148819,5,5 +24111,0,0.508236,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,10.052,10.56,0,12.197655,6,4.5 +31827,0,0.503544,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.085054,0.15,4 +16073,1,0.257048,1,0,0,1,1,RON,3,2,E 7 Mile/E I 96,RAMP,1607807,0,0.257,0,,1.09,4 +16082,-1,0.398301,0,4,0,1,1,,3,2,W I 96,,1607506,1,1.398,0,,0.58,7 +16272,1,0.32164,4,0,0,1,1,,3,2,E I 96,,1607802,0.981,1.303,0,,0.58,7 +16779,1,0.35248,1,0,0,1,1,ROF,3,2,W I 96/E 7 Mile,RAMP,1607603,0,0.352,0,,2.24,5 +18526,0,0.153285,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.37,0.523,0,3.678844,5,5 +18753,0,0.023742,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.346,0.37,0,0.569807,5,5 +18291,0,0.040563,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.306,0.346,0,0.973516,5,5 +18015,0,0.036778,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.551,0.588,0,0.88268,5,5 +18195,0,0.027878,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.523,0.551,0,0.669076,5,5 +17494,0,0.213384,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,0.761,0.974,0,5.121216,5,5 +24120,0,0.236107,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.816,10.052,0,5.666562,6,4.5 +31839,0,0.246789,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.922932,0.15,4 +31837,0,0.164278,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.942668,0.15,4 +24121,0,0.230009,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.586,9.816,0,5.520218,6,4.5 +31828,0,0.190556,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.573335,0.15,4 +17119,0,0.461313,1,1,0,2,5,,3,2,Levan,Rd,1604605,2.694,3.155,0,11.071506,8,4.5 +17988,0,0.363861,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.509,7.873,0,8.732669,5,5 +31736,0,0.512205,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.292912,0.15,4 +31738,0,0.272282,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.53477,0.15,4 +31831,0,0.506721,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.161309,0.15,4 +31734,0,0.252544,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.061048,0.15,4 +17118,0,0.26981,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.205,3.475,0,6.475448,8,4.5 +18171,0,0.191217,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.318,7.509,0,4.589213,5,5 +18496,0,0.070048,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.248,7.318,0,1.681147,5,5 +16830,0,0.232538,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.475,3.707,0,5.580906,8,4.5 +18754,0,0.254071,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,1.477,1.731,0,6.097695,5,5 +31822,0,0.254551,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.109219,0.15,4 +31830,0,0.496041,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.904993,0.15,4 +16828,0,0.208074,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.943,4.151,0,4.993783,8,4.5 +330,0,0.148792,1,1,0,2,4,,3,3,Halsted,,634206,0.661,0.809,0,3.571003,6,4.5 +376,0,0.44221,1,1,0,2,4,,3,3,9 Mile,Rd,633603,1.743,2.185,0,10.613049,6,4.5 +2029,-1,0.40603,0,1,0,2,5,,3,3,Freedom,Rd,633606,0,0.406,0,9.744717,8,4.5 +20924,0,0.506423,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.773,3.28,0,12.154155,5,5 +26863,0,0.583271,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.998512,0.15,4 +26890,0,0.511838,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.284115,0.15,4 +26897,0,0.501811,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.043459,0.15,4 +26903,0,0.761399,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,18.273572,0.15,4 +794,0,0.660697,1,1,0,2,4,,3,3,Halsted,,634206,0,0.661,0,15.856729,6,4.5 +20925,0,0.488884,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.285,2.773,0,11.733205,5,5 +26865,0,0.50086,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.020637,0.15,4 +20926,0,0.02379,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.261,2.285,0,0.570965,5,5 +281,0,0.629278,1,1,0,2,4,,3,3,9 Mile,Rd,633603,2.185,2.814,0,15.102672,6,4.5 +1966,0,0.427198,1,1,0,2,4,,3,3,Halsted,,634206,1.005,1.432,0,10.252764,6,4.5 +24873,0,0.494393,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.86543,0.15,4 +27233,0,0.519026,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.456632,0.15,4 +416,0,0.195327,1,1,0,2,4,,3,3,Halsted,,634206,0.809,1.005,0,4.687846,6,4.5 +882,1,0.121498,1,0,0,1,2,RON,3,3,Grand River/E M 5,RAMP,639203,0.366,0.488,0,,1.09,4 +988,0,0.27328,1,1,0,2,4,,3,3,Halsted,,634206,1.473,1.746,0,6.558714,6,4.5 +2675,1,0.151279,1,0,0,1,2,ROF,3,3,W M 5/Grand River,RAMP,657109,0,0.151,0,,2.24,5 +1451,0,0.041572,1,1,0,2,4,,3,3,Halsted,,634206,1.432,1.473,0,0.997718,6,4.5 +20923,0,0.225744,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,3.28,3.505,0,5.417865,5,5 +26891,0,0.56132,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.47167,0.15,4 +839,0,0.200973,1,1,0,2,4,,3,3,9 Mile,Rd,633603,1.542,1.743,0,4.82336,6,4.5 +1341,0,0.056404,1,1,0,2,4,,3,3,Drake,Rd,633804,0.296,0.352,0,1.353697,6,4.5 +1518,0,0.789312,1,1,0,2,5,,3,3,Freedom,Rd,633606,0.406,1.195,0,18.943484,8,4.5 +26298,0,0.559376,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.425015,0.15,4 +26889,0,0.522243,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.533821,0.15,4 +26892,0,0.263545,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.32509,0.15,4 +287,0,0.251739,1,1,0,2,4,,3,3,Drake,Rd,633804,0,0.252,0,6.041737,6,4.5 +1298,0,0.352249,1,1,0,2,4,,3,3,9 Mile,Rd,633603,1.19,1.542,0,8.453966,6,4.5 +1848,0,0.044149,1,1,0,2,4,,3,3,Drake,Rd,633804,0.252,0.296,0,1.059565,6,4.5 +877,0,0.467035,1,1,0,2,4,,3,3,Drake,Rd,633804,0.352,0.819,0,11.208828,6,4.5 +24876,0,0.239768,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.754434,0.15,4 +17917,0,0.326737,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,2.649,2.975,0,7.841677,5,5 +18856,0,0.34328,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,8.698,9.041,0,8.238728,5,5 +19133,0,0.500551,2,2,1,2,3,,3,2,Farmington,Rd,1690602,4.259,4.759,0,12.013221,5,5 +30385,0,0.479037,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.49689,0.15,4 +31725,0,0.254523,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.108556,0.15,4 +31840,0,0.497169,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.932053,0.15,4 +31841,0,0.525564,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.613531,0.15,4 +32014,0,0.500182,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.004373,0.15,4 +31739,0,0.501524,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.036577,0.15,4 +17446,0,0.259508,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,8.438,8.698,0,6.228199,5,5 +17541,0,0.589541,1,1,0,2,5,,3,2,Gill,Rd,1700705,0.435,1.025,0,14.148979,8,4.5 +31826,0,0.502886,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.069274,0.15,4 +18196,0,0.175802,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,2.473,2.649,0,4.219259,5,5 +29725,0,0.527928,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.670265,0.15,4 +31772,0,0.266516,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.39639,0.15,4 +16541,0,0.353993,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,1.639,1.993,0,8.495825,8,4.5 +17628,0,0.509855,2,2,1,2,3,,3,2,Farmington,Rd,1690602,3.749,4.259,0,12.236524,5,5 +18388,0,0.501287,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,9.041,9.542,0,12.030886,5,5 +31345,0,0.497998,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.951959,0.15,4 +33929,0,0.204412,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.905878,0.15,4 +17685,0,0.373798,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,2.975,3.349,0,8.971153,5,5 +18566,0,0.539594,2,2,1,2,3,,3,2,Farmington,Rd,1690602,5.26,5.799,0,12.950244,5,5 +31336,0,0.50123,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.02951,0.15,4 +31337,0,0.51413,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.339126,0.15,4 +31845,0,0.501833,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.043988,0.15,4 +18937,0,0.500702,2,2,1,2,3,,3,2,Farmington,Rd,1690602,4.759,5.26,0,12.016841,5,5 +32015,0,0.517252,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.414056,0.15,4 +573,0,0.326151,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.24,0.566,0,7.827631,6,4.5 +1210,0,0.347037,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.877,2.224,0,8.328878,8,4.5 +1289,1,0.172765,1,0,0,1,2,ROF,3,3,E M 5/9 Mile,RAMP,634201,0,0.173,0,,2.24,5 +1393,0,0.312883,2,2,1,2,4,,3,3,Farmington,Rd,632903,0.691,1.004,0,7.509201,6,4.5 +1730,0,0.341858,1,1,0,2,5,,3,3,Gill,Rd,634202,0.665,1.006,0,8.204584,8,4.5 +2729,1,0.458791,2,0,0,1,2,,3,3,E M 5,,657303,16.033,16.492,0,,0.58,7 +19777,0,0.20478,1,1,1,2,4,,3,3,Grand River,,4104142,16.425,16.63,0,4.914731,6,4.5 +20920,0,0.377071,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,4.385,4.762,0,9.049692,5,5 +26202,0,0.332809,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.987407,0.15,4 +26900,0,0.275375,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.608999,0.15,4 +26902,0,0.519521,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.46851,0.15,4 +27727,0,0.251696,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.040712,0.15,4 +833,0,0.502517,1,1,0,2,5,,3,3,Gill,Rd,634202,0,0.502,0,12.060418,8,4.5 +30242,0,0.518855,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.452517,0.15,4 +20921,0,0.126276,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,4.259,4.385,0,3.03062,5,5 +26899,0,0.245429,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.890288,0.15,4 +364,0,0.162211,1,1,0,2,5,,3,3,Gill,Rd,634202,0.502,0.665,0,3.893058,8,4.5 +22,0,0.283755,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.425,1.709,0,6.810112,8,4.5 +388,0,0.183968,1,1,0,2,5,,3,3,Lytle,,637710,0.329,0.513,0,4.415243,8,4.5 +1441,0,0.252121,1,1,0,2,5,,3,3,Gill,Rd,632807,0,0.252,0,6.050907,8,4.5 +1606,0,0.259499,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.691,0.95,0,6.227983,6,4.5 +29726,0,0.250004,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.000102,0.15,4 +26895,0,0.074501,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.788035,0.15,4 +26898,0,0.245657,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.895778,0.15,4 +26894,0,0.056216,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.349179,0.15,4 +1241,0,0.166084,1,1,0,2,5,,3,3,Gill,Rd,634202,1.006,1.172,0,3.986023,8,4.5 +2105,0,0.12438,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.566,0.691,0,2.985114,6,4.5 +1693,0,0.168127,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.709,1.877,0,4.035044,8,4.5 +981,0,0.272086,1,1,0,2,5,,3,3,Gill,Rd,632807,0.252,0.524,0,6.530055,8,4.5 +26893,0,0.37945,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.106806,0.15,4 +26901,0,0.239954,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.758892,0.15,4 +2164,0,0.192283,2,2,1,2,4,,3,3,Farmington,Rd,632903,0,0.192,0,4.614787,6,4.5 +20919,0,0.334965,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,4.762,5.097,0,8.039158,5,5 +26203,0,0.544738,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.073712,0.15,4 +26904,0,0.445085,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.682045,0.15,4 +1657,0,0.305381,2,2,1,2,4,,3,3,Farmington,Rd,632903,0.192,0.498,0,7.329151,6,4.5 +25858,0,0.318703,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.64886,0.15,4 +28095,0,0.276344,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.632245,0.15,4 +1185,0,0.193257,2,2,1,2,4,,3,3,Farmington,Rd,632903,0.498,0.691,0,4.638164,6,4.5 +20918,0,0.163055,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,5.097,5.26,0,3.913314,5,5 +20917,0,0.134279,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,5.26,5.394,0,3.222696,5,5 +475,0,0.320297,2,2,1,2,4,,3,3,Farmington,Rd,632903,1.103,1.423,0,7.687122,6,4.5 +607,0,0.455341,1,1,0,2,5,,3,3,Folsom,,634102,0,0.455,0,10.928176,8,4.5 +679,0,0.212615,1,1,0,2,5,,3,3,Shiawassee,,633209,0.66,0.873,0,5.10275,8,4.5 +774,0,0.457118,1,1,0,2,5,,3,3,Freedom,Rd,633606,2.224,2.681,0,10.970824,8,4.5 +19775,0,0.346787,2,2,1,2,4,,3,3,Grand River,,4104142,16.869,17.215,0,8.322878,6,4.5 +26185,0,0.194689,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.672529,0.15,4 +26187,0,0.416891,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.005372,0.15,4 +29727,0,0.333917,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.013998,0.15,4 +276,0,0.192692,1,1,0,2,5,,3,3,9 Mile,Rd,633603,0,0.193,0,4.624609,8,4.5 +1026,0,0.047639,2,2,1,2,4,,3,3,9 Mile,Rd,633603,0.193,0.24,0,1.143345,6,4.5 +936,0,0.099473,2,2,1,2,4,,3,3,Farmington,Rd,632903,1.004,1.103,0,2.38734,6,4.5 +1785,1,0.078364,1,0,0,1,2,RON,3,3,9 Mile/E M 5,RAMP,634110,0,0.078,0,,1.09,4 +1119,0,0.152938,1,1,1,2,4,,3,3,Shiawassee,,633209,0.507,0.66,0,3.670518,6,4.5 +2100,0,0.179747,2,2,0,2,4,,3,3,Farmington,Rd,632903,1.504,1.683,0,4.313933,6,4.5 +19776,0,0.238918,2,2,0,2,4,,3,3,Grand River,,4104142,16.63,16.869,0,5.734038,6,4.5 +26182,0,0.204167,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.899999,0.15,4 +26188,0,0.113552,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.725251,0.15,4 +26190,0,0.142065,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.409567,0.15,4 +2021,0,0.080636,2,2,1,2,4,,3,3,Farmington,Rd,632903,1.423,1.504,0,1.935264,6,4.5 +1601,0,0.052455,1,1,0,2,4,,3,3,Farmington,Rd,632903,1.683,1.736,0,1.258929,6,4.5 +1604,0,0.122847,1,1,1,2,4,,3,3,Shiawassee,,633209,0.384,0.507,0,2.948337,6,4.5 +1117,0,0.105134,1,1,0,2,4,,3,3,Farmington,Rd,632903,1.736,1.841,0,2.523205,6,4.5 +26186,0,0.250102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.002447,0.15,4 +875,0,0.191024,1,1,0,2,5,,3,3,Shiawassee,,633209,0.907,1.098,0,4.584578,8,4.5 +21075,0,0.151347,1,1,0,2,5,,3,3,Power,Rd,4410108,0.532,0.683,0,3.632337,8,4.5 +21077,0,0.103577,1,1,0,2,5,,3,3,Power,Rd,4410108,0.368,0.471,0,2.485842,8,4.5 +21076,0,0.060409,1,1,0,2,5,,3,3,Power,Rd,4410108,0.471,0.532,0,1.449811,8,4.5 +1339,0,0.034676,1,1,0,2,5,,3,3,Shiawassee,,633209,0.873,0.907,0,0.832224,8,4.5 +786,0,0.326804,1,1,0,2,3,,4,3,Ortonville,Rd,627809,0.381,0.708,0,7.843307,3.7,5 +2198,1,1.082333,2,0,0,2,3,DIV,5,3,Highland,Rd,648906,2.101,3.183,0,25.975997,1.7,4 +2201,0,0.886802,1,1,0,2,5,,5,3,Middle,Rd,648808,2.321,3.208,0,21.283256,3.7,5 +2204,0,1.26104,1,1,0,2,5,,5,3,Clyde,Rd,648706,1.907,3.167,0,30.264954,3.7,5 +2482,0,1.08187,1,1,0,2,5,GRV,5,3,Wardlow,Rd,650309,1.193,2.274,0,25.964873,5.55,5 +2519,0,1.039482,1,1,0,2,5,GRV,5,3,Belford,Rd,649602,2.305,3.344,0,24.947568,5.55,5 +2560,0,0.30273,1,1,0,2,5,GRV,4,3,Quick,Rd,649505,0.996,1.298,0,7.265528,6.55,4.5 +2655,0,0.37202,1,1,1,2,4,,4,3,Grange Hall,Rd,649504,3.193,3.565,0,8.928478,4.5,4.5 +2664,0,1.334499,1,1,0,2,5,GRV,5,3,Rose Center,Rd,649409,2.123,3.457,0,32.027987,5.55,5 +2715,0,1.992165,1,1,0,2,5,,5,3,Ormond,Rd,649309,2.044,4.035,0,47.811959,3.7,5 +2718,-1,1.229528,0,3,0,1,1,,4,3,W I 96,,657304,1.285,2.514,0,,0.8,7.5 +2765,0,0.763238,1,1,0,2,4,,5,3,Milford,Rd,679302,2.62,3.383,0,18.317708,3,4 +2927,1,1.533246,3,0,0,1,1,,4,3,E I 96,,657303,1.076,2.609,0,,0.8,7.5 +3275,0,1.518965,1,1,0,2,4,,5,3,General Motors,Rd,661208,1.003,2.521,0,36.455166,3,4 +3378,0,0.359762,1,1,0,2,5,,5,3,11 Mile,Rd,656603,2.2,2.559,0,8.634282,3.7,5 +3419,0,0.968582,1,1,0,2,4,,5,3,Milford,Rd,660907,0.24,1.208,0,23.245963,3,4 +3556,0,0.274905,1,1,0,2,4,,4,3,Pontiac,Trl,656507,6.471,6.746,0,6.597725,4.5,4.5 +3588,0,0.370537,1,1,0,2,5,,4,3,Elm,,650808,0,0.37,0,8.892889,5.8,4.5 +3603,0,0.429785,1,1,0,2,5,,4,3,Maple,,650805,0.177,0.606,0,10.314838,5.8,4.5 +3612,0,0.6698,2,2,1,2,3,,4,3,Dixie,Hwy,689103,0.632,1.302,0,16.075204,3.7,5 +3622,0,1.302752,1,1,0,2,5,,5,3,Andersonville,Rd,688910,0,1.302,0,31.266054,3.7,5 +4353,1,0.698102,2,0,0,2,4,DIV,4,3,Sashabaw,Rd,697309,3.099,3.797,0,16.754444,4.5,4.5 +5511,-1,3.744285,0,2,0,1,2,,5,8,S US 23,,932002,17.955,21.698,0,,1.02,7 +5710,0,1.021339,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,21.042,22.063,0,24.51214,3.7,5 +6809,1,3.703071,2,0,0,1,2,,5,8,N US 23,,931510,17.982,21.683,0,,1.02,7 +6984,0,1.00236,1,1,0,2,4,,5,8,Argentine,Rd,934310,8.206,9.208,0,24.056631,3,4 +7306,0,1.006583,1,1,0,2,7,,5,8,Latson,Rd,938109,2.015,3.021,0,24.157994,5.8,6 +7416,0,2.066136,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,2.873,4.938,0,49.587255,5.8,6 +8106,0,1.527393,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,7.806,9.332,0,36.657437,3.7,5 +19816,0,0.231273,1,1,0,2,4,,4,3,Grand River,Ave,4104142,3.28,3.511,0,5.550545,4.5,4.5 +19851,0,1.824274,1,1,0,2,4,,5,3,Commerce,Rd,4104140,2.188,4.012,0,43.782566,3,4 +21000,0,1.005153,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,12.23,13.235,0,24.123679,3.7,5 +21069,-1,1.181768,0,2,0,2,3,DIV,5,3,Highland,Rd,4410120,2.002,3.183,0,28.362436,1.7,4 +21971,0,0.444231,1,1,0,2,5,,4,3,White Lake,Rd,4412733,1.91,2.354,0,10.661548,5.8,4.5 +25259,0,0.641763,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.402301,0.15,4 +25327,0,0.709046,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.01711,0.15,4 +26905,0,1.945977,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,46.70345,0.15,4 +26914,0,0.321513,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.716308,0.15,4 +26917,0,1.619753,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.874078,0.15,4 +26919,0,1.49891,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.973836,0.15,4 +26920,0,1.40309,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.674163,0.15,4 +26922,0,2.291742,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,55.00181,0.15,4 +26928,0,1.734098,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,41.61836,0.15,4 +26930,0,0.425254,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.206086,0.15,4 +26934,0,0.364125,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.738994,0.15,4 +26937,0,0.655428,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.730263,0.15,4 +26946,0,1.014824,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.35578,0.15,4 +26958,0,1.107214,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.57313,0.15,4 +26965,0,0.300462,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.211085,0.15,4 +26967,0,0.505376,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.129016,0.15,4 +26983,0,0.518151,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.435624,0.15,4 +26984,0,0.841034,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.184809,0.15,4 +26985,0,0.617918,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.830031,0.15,4 +27347,0,1.534325,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.823792,0.15,4 +27365,0,1.85145,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,44.434805,0.15,4 +27368,0,1.455872,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.940927,0.15,4 +29799,0,1.559816,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.435596,0.15,4 +29800,0,1.300788,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,31.218913,0.15,4 +30166,0,1.501281,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.030733,0.15,4 +30167,0,1.113995,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.735885,0.15,4 +30168,0,1.129947,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.11873,0.15,4 +5144,0,1.568565,1,1,0,2,5,,5,8,Old US 23,,932204,14.717,16.285,0,37.645557,3.7,5 +5421,1,0.811723,2,0,0,1,2,,4,8,N US 23,,931510,5.76,6.571,0,,0.8,7.5 +5588,1,2.612209,2,0,0,1,2,,5,8,N US 23,,931510,14.946,17.558,0,,1.02,7 +5705,1,0.206355,1,0,0,1,1,RFS,4,8,S US 23/E I 96,RAMP,932103,0,0.206,0,,0.22,6 +5707,1,0.356032,1,0,0,1,1,RFS,4,8,S US 23/W I 96,RAMP,932105,0,0.356,0,,0.22,6 +5989,-1,2.533638,0,2,0,1,2,,5,8,S US 23,,932002,14.984,17.517,0,,1.02,7 +5990,0,0.773248,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,11.599,12.372,0,18.557948,4.5,4.5 +6075,1,7.181136,2,0,0,1,2,,5,8,N US 23,,931510,7.202,14.38,0,,1.02,7 +6081,0,0.202013,2,2,1,2,4,,4,8,Old US 23,Hwy,932204,7.706,7.908,0,4.848301,4.5,4.5 +6392,0,1.001665,1,1,0,2,5,,4,8,Hyne,Rd,931803,0,1.001,0,24.039957,5.8,4.5 +6490,-1,7.228513,0,2,0,1,2,,4,8,S US 23,,932002,7.194,14.42,0,,0.8,7.5 +6736,-1,0.237314,0,2,0,1,2,,4,8,S US 23,,932002,6.957,7.194,0,,0.8,7.5 +6811,0,0.255804,1,1,0,2,5,,5,8,Crouse,Rd,931807,0.983,1.239,0,6.1393,3.7,5 +6821,0,1.208075,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,9.314,10.522,0,28.99379,4.5,4.5 +7019,0,0.362796,1,1,0,2,4,,4,8,Hilton,Rd,933806,1.552,1.915,0,8.707113,4.5,4.5 +7028,0,0.869974,1,1,0,2,5,,4,8,Hughes,Rd,933708,1.591,2.46,0,20.879366,5.8,4.5 +7041,0,0.390387,1,1,0,2,4,,4,8,Latson,Rd,5490669,1.15,1.541,0,9.369283,4.5,4.5 +7083,0,0.823563,1,1,0,2,3,,5,8,Highland,Rd,933209,11.698,12.521,0,19.765513,1.7,4 +37908,-1,0.020582,0,2,0,2,5,DIV,4,2,Smith,Rd,4706175,0.973,0.994,0,0.493964,5.8,4.5 +7322,0,1.127936,1,1,0,2,6,,5,8,Bergin,Rd,941010,3.31,4.437,0,27.07047,5.8,6 +7353,0,1.155801,1,1,0,2,5,,5,8,Hacker,Rd,940803,2.062,3.217,0,27.73922,3.7,5 +7420,0,0.298768,1,1,0,2,7,GRV,5,8,Cook,Rd,936905,0,0.299,0,7.170429,5.55,5 +7531,-1,0.083462,0,3,0,1,1,FCD,4,8,W I 96 CD,,935207,22.977,23.06,0,,0.8,7.5 +7724,1,0.266241,2,0,0,1,1,FCD,4,8,E I 96 CD,,935105,22.848,23.114,0,,0.8,7.5 +7951,0,0.443553,1,1,0,2,5,,5,8,Clyde,Rd,939905,8.064,8.507,0,10.645271,3.7,5 +8128,0,1.319664,1,1,0,2,5,,5,8,Pleasant Valley,Rd,942603,6.45,7.769,0,31.671933,3.7,5 +19852,0,1.07769,1,1,0,2,4,,5,3,Commerce,Rd,4104140,1.111,2.188,0,25.864572,3,4 +21009,0,0.756483,1,1,0,2,4,,5,3,Hickory Ridge,Trl,4410281,2.769,3.525,0,18.155588,3,4 +24655,0,0.941951,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,22.606832,0.15,4 +26055,0,1.125788,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.018909,0.15,4 +26056,0,0.608382,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,14.601162,0.15,4 +26057,0,1.230078,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.521869,0.15,4 +26059,0,0.820301,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.687222,0.15,4 +26060,0,0.881148,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,21.147559,0.15,4 +26062,0,0.802446,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,19.258693,0.15,4 +26069,0,0.396441,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.514585,0.15,4 +26768,0,1.79911,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,43.178647,0.15,4 +29477,0,1.544325,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,37.063794,0.15,4 +30154,0,1.507541,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.180974,0.15,4 +30157,0,0.657623,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.782956,0.15,4 +6308,0,0.839156,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,6.868,7.706,0,20.139753,4.5,4.5 +7010,0,0.20089,1,1,1,2,4,,4,8,Spencer,Rd,933908,0.659,0.86,0,4.821365,4.5,4.5 +7136,0,0.249595,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.145,22.394,0,5.990282,5,5 +7153,0,0.957058,2,2,1,2,3,,4,8,Grand River,Ave,932910,18.034,18.991,0,22.969381,3.7,5 +7237,0,0.472998,1,1,0,2,7,,3,8,2nd,St,938608,0,0.473,0,11.351951,7,4.5 +7410,0,0.527662,1,1,0,2,7,,5,8,Clifford,,940502,0,0.528,0,12.663896,5.8,6 +7440,0,0.841629,1,1,0,2,5,,5,8,Challis,Rd,940303,0.405,1.246,0,20.199094,3.7,5 +7536,-1,0.25039,0,3,0,1,1,,3,8,W I 96,,935207,21.982,22.232,0,,0.58,7 +7540,-1,4.088865,0,3,0,1,1,,4,8,W I 96,,935207,16.539,20.626,0,,0.8,7.5 +7568,0,0.74547,1,1,0,2,4,,5,8,Brighton,Rd,940301,2.241,2.986,0,17.89129,3,4 +7668,0,1.966497,1,1,0,2,5,GRV,5,8,Bishop Lake,Rd,940205,0.66,2.626,0,47.195938,5.55,5 +7736,1,1.403122,3,0,0,1,1,,3,8,E I 96,,935105,20.826,22.228,0,,0.58,7 +7745,1,3.564514,3,0,0,1,1,,4,8,E I 96,,935105,16.638,20.201,0,,0.8,7.5 +7779,0,0.392455,1,1,0,2,4,,5,8,Bauer,Rd,940108,2.633,3.025,0,9.418927,3,4 +24648,0,1.060582,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.453958,0.15,4 +26109,0,1.868107,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,44.834573,0.15,4 +26110,0,1.074806,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.795355,0.15,4 +26993,0,1.301826,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.243818,0.15,4 +27001,0,0.759449,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,18.226786,0.15,4 +27005,0,1.077876,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,25.869035,0.15,4 +27010,0,0.637961,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.311063,0.15,4 +27011,0,0.72112,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.306873,0.15,4 +27014,0,0.347009,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.328209,0.15,4 +27016,0,0.49755,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.94121,0.15,4 +27027,0,0.538422,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,12.922116,0.15,4 +27028,0,0.467564,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,11.221539,0.15,4 +29843,0,0.70513,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.923122,0.15,4 +7631,0,0.104974,1,1,0,2,4,,5,8,Brighton,Rd,940301,0.427,0.532,0,2.519373,3,4 +7650,0,1.007667,1,1,0,2,4,,5,8,Chilson,Rd,940206,0,1.007,0,24.184007,3,4 +7683,0,0.660174,1,1,0,2,5,,5,8,Bishop Lake,Rd,940205,0,0.66,0,15.844176,3.7,5 +8015,0,1.709797,1,1,0,2,4,,5,8,Chilson,Rd,944806,2.888,4.597,0,41.035137,3,4 +7209,0,1.204925,1,1,0,2,4,,5,8,Pettysville,Rd,932802,0.733,1.937,0,28.918193,3,4 +7285,0,1.011171,1,1,0,2,6,,5,8,Swarthout,Rd,944806,1.594,2.605,0,24.268101,5.8,6 +26994,0,0.87323,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.957518,0.15,4 +24646,0,0.477711,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.465072,0.15,4 +8019,0,0.283378,1,1,0,2,4,,5,8,Swarthout,Rd,944806,2.605,2.888,0,6.801073,3,4 +7638,0,1.444423,1,1,0,2,4,,5,8,Chilson,Rd,940206,1.007,2.451,0,34.666148,3,4 +7206,0,0.45858,1,1,0,2,4,,5,8,Chilson,Rd,932808,0.575,1.033,0,11.005911,3,4 +7880,0,0.621047,1,1,0,2,5,,5,8,Winans Lake,Rd,940105,0,0.621,0,14.905117,3.7,5 +7585,0,0.697867,1,1,0,2,4,,5,8,Brighton,Rd,940301,1.544,2.241,0,16.748803,3,4 +7626,0,0.523313,1,1,0,2,4,,5,8,Brighton,Rd,940301,1.02,1.544,0,12.559512,3,4 +7032,0,0.654894,1,1,0,2,5,,4,8,Dorr,Rd,933707,1.526,2.18,0,15.717464,5.8,4.5 +7155,0,1.203356,2,2,1,2,3,,4,8,Grand River,Rd,932910,16.697,17.9,0,28.880536,3.7,5 +26992,0,0.372409,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.937827,0.15,4 +27008,0,1.189187,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.540495,0.15,4 +29475,0,1.363801,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.73123,0.15,4 +7045,0,1.207592,1,1,0,2,5,,5,8,Chilson,Rd,933603,0.307,1.514,0,28.982208,3.7,5 +7158,0,0.818918,2,2,1,2,3,,4,8,Grand River,Rd,932910,15.692,16.511,0,19.65402,3.7,5 +26991,0,0.484517,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,11.6284,0.15,4 +7042,0,0.567418,1,1,0,2,4,,4,8,Latson,Rd,5490669,0.583,1.15,0,13.618023,4.5,4.5 +7159,0,0.612511,2,2,1,2,3,,4,8,Grand River,Rd,932910,15.08,15.692,0,14.700269,3.7,5 +24654,0,0.356083,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.545991,0.15,4 +24656,0,0.568132,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,13.635159,0.15,4 +7035,1,0.465668,1,0,0,1,1,RON,4,8,Grand River/E I 96,RAMP,933609,0,0.466,0,,1.09,4 +7156,0,0.125032,2,2,1,2,3,,4,8,Grand River,Rd,932910,16.572,16.697,0,3.000771,3.7,5 +7157,0,0.060756,2,2,1,2,3,,4,8,Grand River,Rd,932910,16.511,16.572,0,1.458142,3.7,5 +7036,-1,0.165071,0,1,0,1,1,ROF,4,8,W I 96/Grand River,RAMP,933608,0,0.165,0,,2.24,5 +7034,0,1.012032,1,1,0,2,5,,5,8,Dorr,Rd,933707,0,1.012,0,24.288757,3.7,5 +7449,0,0.246998,1,1,0,2,7,GRV,5,8,Challis,Rd,940303,0,0.247,0,5.927957,5.55,5 +30156,0,1.654323,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.703746,0.15,4 +7401,0,0.742536,1,1,0,2,7,GRV,5,8,Conrad,Rd,940601,0,0.742,0,17.820864,5.55,5 +27009,0,0.410416,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,9.849993,0.15,4 +27015,0,0.543512,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.044296,0.15,4 +7441,0,0.157656,1,1,0,2,5,,5,8,Challis,Rd,940303,0.247,0.405,0,3.783742,3.7,5 +7033,0,0.514083,1,1,0,2,5,,4,8,Dorr,Rd,933707,1.012,1.526,0,12.338003,5.8,4.5 +7030,0,0.842457,1,1,0,2,5,,4,8,Hughes,Rd,933708,0.561,1.403,0,20.218959,5.8,4.5 +27072,0,1.293417,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.042007,0.15,4 +7029,0,0.187735,1,1,0,2,5,,4,8,Hughes,Rd,933708,1.403,1.591,0,4.505629,5.8,4.5 +7031,0,0.561099,1,1,0,2,5,,4,8,Hughes,Rd,933708,0,0.561,0,13.466387,5.8,4.5 +7154,0,0.13464,2,2,1,2,3,,4,8,Grand River,Ave,932910,17.9,18.034,0,3.231363,3.7,5 +5596,0,1.186005,1,1,0,2,4,,4,8,Whitmore Lake,Rd,932204,4.151,5.337,0,28.464128,4.5,4.5 +5909,1,2.487158,2,0,0,1,2,,5,8,N US 23,,931510,3.036,5.522,0,,1.02,7 +6079,0,0.464356,1,1,0,2,6,,5,8,Fieldcrest,Dr,4105311,3.833,4.298,0,11.144546,5.8,6 +6307,-1,2.25648,0,2,0,1,2,,4,8,S US 23,,932002,3.038,5.294,0,,0.8,7.5 +7264,0,0.251611,1,1,0,2,7,,3,8,Washington,St,938504,0,0.252,0,6.038662,7,4.5 +7434,0,0.291542,1,1,0,2,5,,4,8,Rickett,Rd,940304,2.212,2.503,0,6.997004,5.8,4.5 +37437,-1,0.031355,0,1,0,2,4,,3,8,Main,St,4104563,0,0.031,0,0.752525,6,4.5 +7686,0,1.241761,1,1,0,2,5,,5,8,Maltby,Rd,940204,0.421,1.662,0,29.802275,3.7,5 +7749,0,0.639578,1,1,0,2,5,,3,8,Brighton Lake,Rd,940201,0.589,1.229,0,15.349872,8,4.5 +7790,0,0.58902,1,1,0,2,5,GRV,5,8,Bauer,Rd,940108,0,0.589,0,14.136479,5.55,5 +7892,0,1.040147,1,1,0,2,5,,5,8,Hamburg,Rd,940101,2.328,3.368,0,24.963535,3.7,5 +27033,0,1.174853,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.196477,0.15,4 +27036,0,1.139692,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.352612,0.15,4 +27039,0,0.481179,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,11.548297,0.15,4 +27043,0,0.106316,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,2.551575,0.15,4 +7845,0,1.021716,1,1,0,2,5,,5,8,Hamburg,Rd,940101,1.094,2.115,0,24.521184,3.7,5 +26108,0,0.807104,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.370507,0.15,4 +7706,0,0.203632,1,1,0,2,5,,5,8,Maltby,Rd,940204,0.217,0.421,0,4.887161,3.7,5 +7718,0,0.217206,1,1,0,2,5,,5,8,Maltby,Rd,940204,0,0.217,0,5.212945,3.7,5 +7902,0,0.212893,1,1,0,2,5,,5,8,Hamburg,Rd,940101,2.115,2.328,0,5.109434,3.7,5 +7547,0,0.347865,1,1,1,2,4,,5,8,Brighton,Rd,940301,3.244,3.592,0,8.34876,3,4 +30158,0,0.626768,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.042433,0.15,4 +7561,0,0.257988,1,1,1,2,4,,5,8,Brighton,Rd,940301,2.986,3.244,0,6.191722,3,4 +27007,0,0.751805,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.043316,0.15,4 +7751,0,0.483395,1,1,0,2,5,,5,8,Brighton Lake,Rd,940201,0.106,0.589,0,11.60148,3.7,5 +7752,0,0.105948,1,1,0,2,5,,5,8,Brighton Lake,Rd,940201,0,0.106,0,2.542757,3.7,5 +7546,0,0.482453,1,1,1,2,4,,3,8,Brighton,Rd,940301,3.592,4.074,0,11.578877,6,4.5 +27046,0,0.525181,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.604355,0.15,4 +7304,0,0.12714,1,1,0,2,7,,3,8,7th,St,938407,0.119,0.246,0,3.051368,7,4.5 +7545,0,0.188114,1,1,0,2,4,,3,8,Main,St,940301,4.074,4.262,0,4.514746,6,4.5 +27044,0,0.211112,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.066699,0.15,4 +7436,0,0.239805,1,1,0,2,5,,4,8,Rickett,Rd,940304,1.172,1.412,0,5.755327,5.8,4.5 +26125,0,0.336604,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.078502,0.15,4 +27034,0,0.729382,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.505157,0.15,4 +27042,0,0.410289,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.84693,0.15,4 +7437,0,0.924158,1,1,0,2,5,,5,8,Rickett,Rd,940304,0.248,1.172,0,22.179787,3.7,5 +7435,0,0.800144,1,1,0,2,5,,4,8,Rickett,Rd,940304,1.412,2.212,0,19.203448,5.8,4.5 +27041,0,0.628651,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,15.087626,0.15,4 +29180,0,0.390317,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.367606,0.15,4 +5819,-1,0.853673,0,2,0,1,2,,4,8,S US 23,,932002,5.756,6.609,0,,0.8,7.5 +37477,-1,0.023952,0,2,0,2,4,,4,8,Lee,Rd,4104575,0.065,0.089,0,0.574854,4.5,4.5 +7012,0,0.22812,1,1,0,2,4,,3,8,Spencer,Rd,933908,0.394,0.622,0,5.474884,6,4.5 +7130,0,0.373996,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.837,23.21,0,8.975893,5,5 +7431,0,0.399666,1,1,0,2,4,,3,8,Rickett,Rd,940304,3.611,4.011,0,9.591984,6,4.5 +24644,0,0.230737,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.537693,0.15,4 +26111,0,0.295997,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,7.103937,0.15,4 +27035,0,0.210016,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,5.040377,0.15,4 +27038,0,0.521272,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,12.51054,0.15,4 +27040,0,0.901664,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,21.639932,0.15,4 +30155,0,0.596847,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,14.324324,0.15,4 +7006,0,0.076139,1,1,0,2,4,,3,8,Church,St,934001,0,0.076,0,1.827325,6,4.5 +7133,0,0.203608,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.515,22.719,0,4.886581,5,5 +7292,0,0.169912,1,1,0,2,5,,3,8,3rd,St,938410,0,0.17,0,4.077891,8,4.5 +7428,0,0.120292,1,1,0,2,5,,3,8,Rickett,Rd,940304,4.246,4.366,0,2.887,8,4.5 +7478,0,0.193096,1,1,1,2,4,,3,8,Main,St,940301,4.698,4.891,0,4.634315,6,4.5 +7728,0,0.480713,1,1,0,2,5,,3,8,Brighton Lake,Rd,940201,1.236,1.716,0,11.537117,8,4.5 +27048,0,0.329623,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,7.910962,0.15,4 +7737,0,0.007352,1,1,0,2,5,,3,8,Brighton Lake,Rd,940201,1.229,1.236,0,0.176449,8,4.5 +7013,0,0.207127,1,1,0,2,7,,3,8,North,St,933906,0,0.207,0,4.971039,7,4.5 +7255,0,0.074035,1,1,0,2,7,,3,8,Hyne,St,938506,0.053,0.127,0,1.776832,7,4.5 +37435,0,0.027066,1,1,0,2,4,,3,8,Main,St,940301,4.262,4.289,0,0.649595,6,4.5 +7501,0,0.182856,1,1,1,2,4,,3,8,Main,St,940301,4.515,4.698,0,4.388541,6,4.5 +7263,0,0.184716,1,1,0,2,7,,3,8,Washington,St,938504,0.252,0.436,0,4.433173,7,4.5 +7288,0,0.08763,1,1,0,2,5,,3,8,3rd,St,938410,0.17,0.258,0,2.103122,8,4.5 +7261,0,0.052772,1,1,0,2,7,,3,8,Hyne,St,938506,0,0.053,0,1.266528,7,4.5 +7239,0,0.074983,1,1,0,2,7,,3,8,Center,St,938606,0.081,0.156,0,1.799603,7,4.5 +37436,1,0.031844,1,0,0,2,4,,3,8,Main,St,940301,4.289,4.321,0,0.76425,6,4.5 +7253,0,0.065255,1,1,0,2,7,,3,8,1st,St,938604,0,0.065,0,1.566129,7,4.5 +7523,0,0.063266,1,1,1,2,4,,3,8,Main,St,940301,4.452,4.515,0,1.518377,6,4.5 +7135,0,0.061921,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.394,22.456,0,1.486097,5,5 +7134,0,0.058942,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.456,22.515,0,1.414601,5,5 +7430,0,0.235289,1,1,0,2,4,,3,8,Rickett,Rd,940304,4.011,4.246,0,5.646935,6,4.5 +7005,0,0.337175,1,1,0,2,7,,3,8,Church,St,934001,0.076,0.413,0,8.092189,7,4.5 +7472,0,0.149326,1,1,1,2,4,,3,8,Main,St,940301,4.891,5.04,0,3.583824,6,4.5 +27030,0,0.158669,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,3.808066,0.15,4 +7131,0,0.06781,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.769,22.837,0,1.627443,5,5 +7132,0,0.050341,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.719,22.769,0,1.208186,5,5 +7236,0,0.124988,1,1,0,2,4,,3,8,Main,St,940301,5.04,5.165,0,2.999712,6,4.5 +37475,1,0.02163,3,0,0,2,4,,4,8,Lee,Rd,931610,0.21,0.232,0,0.519131,4.5,4.5 +5695,1,0.237605,2,0,0,1,2,,4,8,N US 23,,931510,5.522,5.76,0,,0.8,7.5 +37476,1,0.01864,2,0,0,2,4,,4,8,Whitmore Lake,Rd,932204,5.744,5.763,0,0.447363,4.5,4.5 +37478,-1,0.117783,0,3,0,2,4,,4,8,Whitmore Lake,Rd,4104576,0.061,0.178,0,2.826801,4.5,4.5 +5988,-1,0.461987,0,2,0,1,2,,4,8,S US 23,,932002,5.294,5.756,0,,0.8,7.5 +7432,0,0.603719,1,1,0,2,4,,4,8,Rickett,Rd,940304,3.008,3.611,0,14.489256,4.5,4.5 +7685,0,0.509907,1,1,0,2,5,,4,8,Maltby,Rd,940204,1.662,2.172,0,12.237767,5.8,4.5 +7433,0,0.504889,1,1,0,2,5,,4,8,Rickett,Rd,940304,2.503,3.008,0,12.117335,5.8,4.5 +19947,0,0.261256,1,1,0,2,4,,4,8,Lee,Rd,4102625,1.593,1.854,0,6.270153,4.5,4.5 +37473,-1,0.064615,0,2,0,2,4,,4,8,Lee,Rd,4104575,0,0.065,0,1.550766,4.5,4.5 +37470,0,0.251455,1,1,0,2,7,,4,8,Old Lee,Rd,4102625,1.854,2.105,0,6.034912,6.55,4.5 +37472,1,0.066812,2,0,0,2,4,,4,8,Lee,Rd,931610,0.144,0.21,0,1.603493,4.5,4.5 +37471,0,0.143537,2,2,1,2,4,,4,8,Lee,Rd,931610,0,0.144,0,3.444889,4.5,4.5 +37474,-1,0.016217,0,3,0,2,4,,4,8,Whitmore Lake,Rd,4104576,0.044,0.061,0,0.389201,4.5,4.5 +5510,-1,0.274743,0,2,0,1,2,,4,8,S US 23,,932002,6.609,6.884,0,,0.8,7.5 +7128,0,0.423006,2,2,1,2,3,,3,8,Grand River,Ave,932910,23.343,23.766,0,10.152141,5,5 +7535,-1,0.420757,0,3,0,1,1,,3,8,W I 96,,935207,22.232,22.653,0,,0.58,7 +7729,1,0.128847,3,0,0,1,1,,3,8,E I 96,,935105,22.469,22.599,0,,0.58,7 +27037,0,0.243739,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.849743,0.15,4 +7129,0,0.132291,2,2,1,2,3,,3,8,Grand River,Ave,932910,23.21,23.343,0,3.174988,5,5 +27047,0,0.263957,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,6.334959,0.15,4 +27012,0,0.202583,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.861983,0.15,4 +7667,1,0.197697,1,0,0,1,1,ROF,3,8,E I 96/Spencer,RAMP,935201,0,0.198,0,,2.24,5 +7730,1,0.241304,3,0,0,1,1,,3,8,E I 96,,935105,22.228,22.469,0,,0.58,7 +7011,0,0.037402,1,1,1,2,4,,3,8,Spencer,Rd,933908,0.622,0.659,0,0.897653,6,4.5 +5704,1,0.252688,1,0,0,1,1,RFF,3,8,E I 96/S US 23,RAMP,932102,0,0.253,0,,0.58,7 +37909,1,0.019575,2,0,0,2,5,DIV,4,2,Smith,Rd,1682506,0,0.02,0,0.469798,5.8,4.5 +7533,-1,0.130471,0,2,0,1,1,FCD,4,8,W I 96 CD,,935207,22.846,22.977,0,,0.8,7.5 +5706,1,0.241341,1,0,0,1,1,RFS,4,8,W I 96/S US 23,RAMP,932104,0,0.241,0,,0.22,6 +5142,-1,0.073141,0,2,0,1,2,,4,8,S US 23,,932002,6.884,6.957,0,,0.8,7.5 +5425,0,1.162866,1,1,0,2,5,,4,8,Hyne,Rd,931705,0,1.163,0,27.90879,5.8,4.5 +5818,1,0.183725,1,0,0,1,1,RON,3,8,Grand River/W I 96,RAMP,932001,0.063,0.247,0,,1.09,4 +7018,1,0.372496,1,0,0,1,1,ROF,3,8,W I 96/Grand River,RAMP,933807,0,0.372,0,,2.24,5 +7023,0,0.582081,1,1,0,2,4,,4,8,Hilton,Rd,933806,0,0.582,0,13.969942,4.5,4.5 +7140,0,0.275079,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.379,21.654,0,6.601896,5,5 +7151,0,0.565653,2,2,1,2,3,,4,8,Grand River,Ave,932910,19.26,19.826,0,13.575678,3.7,5 +7372,0,0.483586,1,1,0,2,5,,4,8,Hacker,Rd,940803,0.395,0.878,0,11.606068,5.8,4.5 +7444,0,0.704736,1,1,0,2,6,,4,8,Hunter,Rd,936005,1.01,1.714,0,16.913675,6.55,4.5 +7539,-1,0.269356,0,3,0,1,1,,3,8,W I 96,,935207,20.626,20.895,0,,0.58,7 +7738,1,0.305821,3,0,0,1,1,,3,8,E I 96,,935105,20.52,20.826,0,,0.58,7 +19652,0,0.207102,1,1,0,2,5,,3,8,Orndorf,Dr,1833119,0,0.207,0,4.970453,8,4.5 +19769,1,0.243346,1,0,0,1,1,RON,3,8,Grand River/E I 96,RAMP,4104146,0,0.243,0,,1.09,4 +26047,0,0.929079,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.297886,0.15,4 +26996,0,1.503607,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,36.086577,0.15,4 +27002,0,0.436676,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,10.48022,0.15,4 +27017,0,0.225298,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.40715,0.15,4 +29842,0,1.452199,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.852787,0.15,4 +5816,1,0.438663,1,0,0,1,1,ROF,3,8,E I 96/Grand River,RAMP,931910,0,0.439,0,,2.24,5 +7147,0,0.041211,2,2,1,2,3,,3,8,Grand River,Ave,932910,20.968,21.009,0,0.989056,5,5 +7743,1,0.319251,3,0,0,1,1,,3,8,E I 96,,935105,20.201,20.52,0,,0.58,7 +19918,0,0.774165,1,1,0,2,4,,3,8,Challis,Rd,4103152,0.417,1.191,0,18.579955,6,4.5 +27003,0,1.413539,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,33.924946,0.15,4 +27051,0,0.376609,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,9.038622,0.15,4 +7766,0,0.419903,1,1,0,2,4,,5,8,Bauer,Rd,940108,3.025,3.445,0,10.07768,3,4 +19919,0,0.416888,1,1,0,2,4,,5,8,Challis,Rd,4103152,0,0.417,0,10.005308,3,4 +7764,0,0.085752,1,1,0,2,5,,5,8,Bauer,Rd,940108,3.445,3.53,0,2.05805,3.7,5 +19763,0,0.264614,1,1,1,2,5,,3,8,Library,Dr,4104207,0,0.265,0,6.350731,8,4.5 +27050,0,0.679761,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,16.314264,0.15,4 +27018,0,0.211785,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.082841,0.15,4 +7141,0,0.190303,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.188,21.379,0,4.567279,5,5 +19917,0,0.127165,2,2,1,2,4,,3,8,Challis,Rd,4103152,1.191,1.318,0,3.051958,6,4.5 +7016,1,0.250218,1,0,0,1,1,RON,3,8,Grand River/E I 96,RAMP,933808,0,0.25,0,,1.09,4 +7143,0,0.062254,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.119,21.181,0,1.494094,5,5 +7142,0,0.007156,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.181,21.188,0,0.171744,5,5 +5817,1,0.062967,1,0,0,1,1,RON,3,8,Grand River/W I 96,RAMP,932001,0,0.063,0,,1.09,4 +7144,0,0.05806,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.061,21.119,0,1.393442,5,5 +19925,1,0.042371,1,0,0,1,1,RON,3,8,Grand River/W I 96,RAMP,4103114,0,0.042,0,,1.09,4 +7145,0,0.04253,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.018,21.061,0,1.02072,5,5 +7146,0,0.009112,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.009,21.018,0,0.218698,5,5 +7024,0,0.265916,1,1,0,2,5,,4,8,Bendix,Rd,933803,0,0.266,0,6.381975,5.8,4.5 +7149,0,0.116804,2,2,1,2,3,,4,8,Grand River,Ave,932910,20.319,20.436,0,2.803285,3.7,5 +7150,0,0.493803,2,2,1,2,3,,4,8,Grand River,Ave,932910,19.826,20.319,0,11.851265,3.7,5 +7148,0,0.532365,2,2,1,2,3,,4,8,Grand River,Ave,932910,20.436,20.968,0,12.776752,3.7,5 +7378,0,0.303689,1,1,0,2,5,,4,8,Hacker,Rd,940803,0.091,0.395,0,7.288543,5.8,4.5 +7388,0,0.091327,1,1,0,2,5,,4,8,Hacker,Rd,940803,0,0.091,0,2.191841,5.8,4.5 +7354,0,0.82534,1,1,0,2,5,,4,8,Hacker,Rd,940803,1.237,2.062,0,19.808161,5.8,4.5 +27004,0,0.933236,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,22.397673,0.15,4 +7152,0,0.2693,2,2,1,2,3,,4,8,Grand River,Ave,932910,18.991,19.26,0,6.463192,3.7,5 +27006,0,0.73591,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,17.661843,0.15,4 +7370,0,0.358833,1,1,0,2,5,,4,8,Hacker,Rd,940803,0.878,1.237,0,8.611983,5.8,4.5 +7022,0,0.433284,1,1,0,2,4,,4,8,Hilton,Rd,933806,0.582,1.015,0,10.398813,4.5,4.5 +7240,0,0.753666,1,1,0,2,5,,4,8,Flint,Rd,938605,1.114,1.868,0,18.087995,5.8,4.5 +7242,0,0.365246,1,1,0,2,5,,3,8,Flint,Rd,938605,0.614,0.98,0,8.765914,8,4.5 +7537,-1,1.087134,0,3,0,1,1,,3,8,W I 96,,935207,20.895,21.982,0,,0.58,7 +27013,0,0.824344,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,19.784261,0.15,4 +27045,0,0.545874,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,13.100977,0.15,4 +27049,0,0.237205,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,5.692919,0.15,4 +7251,0,0.359855,1,1,0,2,5,,3,8,Flint,Rd,938605,0.255,0.614,0,8.636508,8,4.5 +7137,0,0.297835,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.847,22.145,0,7.148041,5,5 +27029,0,0.253773,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,6.090548,0.15,4 +27031,0,0.221361,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.312654,0.15,4 +7015,0,0.100503,1,1,1,2,7,,3,8,Cross,St,933810,0,0.101,0,2.412078,7,4.5 +7139,0,0.193449,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.654,21.847,0,4.64278,5,5 +40178,0,0.788545,1,1,0,2,5,,5,8,Hartland,Rd,4105279,0.428,1.216,0,18.925076,3.7,5 +7014,0,0.070063,1,1,0,2,5,,3,8,Liberty,,933901,0,0.07,0,1.681522,8,4.5 +7008,0,0.19183,1,1,1,2,4,,4,8,Spencer,Rd,933908,0.868,1.06,0,4.603921,4.5,4.5 +7241,0,0.134718,1,1,0,2,5,,4,8,Flint,Rd,938605,0.98,1.114,0,3.233233,5.8,4.5 +26070,0,0.416339,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.992137,0.15,4 +7788,1,0.318282,1,0,0,1,1,RON,4,8,Spencer/W I 96,RAMP,935103,0,0.318,0,,1.09,4 +7009,0,0.008036,1,1,1,2,4,,4,8,Spencer,Rd,933908,0.86,0.868,0,0.192854,4.5,4.5 +7007,0,0.250614,1,1,1,2,4,,4,8,Spencer,Rd,933908,1.06,1.31,0,6.014744,4.5,4.5 +26995,0,0.444313,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,10.663515,0.15,4 +7020,0,0.292709,1,1,0,2,4,,4,8,Hilton,Rd,933806,1.259,1.552,0,7.025009,4.5,4.5 +7445,0,1.009889,1,1,0,2,6,,4,8,Hunter,Rd,936005,0,1.01,0,24.237333,6.55,4.5 +7021,0,0.244577,1,1,0,2,4,,4,8,Hilton,Rd,933806,1.015,1.259,0,5.869855,4.5,4.5 +26061,0,0.301389,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,7.233334,0.15,4 +7443,0,0.377591,1,1,0,2,5,,4,8,Hyne,Rd,936005,1.714,2.091,0,9.062185,5.8,4.5 +26065,0,0.340279,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.166694,0.15,4 +6738,0,1.540588,1,1,0,2,5,,5,8,Old US 23,,932204,16.285,17.825,0,36.974124,3.7,5 +6988,0,1.01205,1,1,0,2,4,,5,8,Argentine,Rd,934310,4.044,5.056,0,24.289209,3,4 +7038,0,2.02713,1,1,0,2,5,,5,8,Latson,Rd,5490669,4.567,6.593,0,48.651112,3.7,5 +7048,0,0.993488,1,1,0,2,7,GRV,5,8,Golf Club,Rd,933602,3.959,4.952,0,23.843721,5.55,5 +7088,0,1.007504,1,1,0,2,3,,5,8,Highland,Rd,933209,8.269,9.276,0,24.180101,1.7,4 +8005,0,2.016766,1,1,0,2,5,GRV,5,8,Faussett,Rd,934509,5.168,7.184,0,48.402374,5.55,5 +8030,0,0.988008,1,1,0,2,4,,5,8,Clyde,Rd,939905,3.987,4.974,0,23.712184,3,4 +24818,0,0.948257,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.758159,0.15,4 +26042,0,1.828519,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,43.884461,0.15,4 +26915,0,1.121792,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.923001,0.15,4 +27053,0,0.97333,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.359918,0.15,4 +27055,0,1.452008,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.848189,0.15,4 +27056,0,1.014165,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.339955,0.15,4 +6990,0,1.015249,1,1,0,2,4,,5,8,Argentine,Rd,934310,2.019,3.033,0,24.365971,3,4 +7039,0,1.038017,1,1,0,2,5,,5,8,Latson,Rd,5490669,3.529,4.567,0,24.912406,3.7,5 +7049,0,1.004851,1,1,0,2,7,GRV,5,8,Golf Club,Rd,933602,2.955,3.959,0,24.116424,5.55,5 +7089,0,1.000426,1,1,0,2,3,,5,8,Highland,Rd,933209,7.269,8.269,0,24.010231,1.7,4 +27054,0,1.000965,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.02316,0.15,4 +30162,0,1.25452,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.108484,0.15,4 +7026,0,1.393019,1,1,0,2,6,GRV,5,8,Hughes,Rd,933708,3.09,4.483,0,33.432449,5.55,5 +7040,0,1.989313,1,1,0,2,4,,5,8,Latson,Rd,5490669,1.541,3.529,0,47.743509,3,4 +7051,0,0.509569,1,1,0,2,5,,4,8,Golf Club,Rd,933602,1.942,2.452,0,12.229647,5.8,4.5 +7091,0,0.492047,1,1,0,2,3,,5,8,Highland,Rd,933209,6.275,6.767,0,11.809124,1.7,4 +30161,0,1.312653,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.503676,0.15,4 +7027,0,0.629888,1,1,0,2,6,GRV,5,8,Hughes,Rd,933708,2.46,3.09,0,15.117321,5.55,5 +7050,0,0.503154,1,1,0,2,5,,4,8,Golf Club,Rd,933602,2.452,2.955,0,12.075693,5.8,4.5 +27061,0,0.225408,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,5.409795,0.15,4 +7090,0,0.502041,1,1,0,2,3,,5,8,Highland,Rd,933209,6.767,7.269,0,12.048992,1.7,4 +24794,0,1.443256,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.638153,0.15,4 +6989,0,1.011145,1,1,0,2,4,,5,8,Argentine,Rd,934310,3.033,4.044,0,24.267468,3,4 +6987,0,2.143359,1,1,0,2,4,,5,8,Argentine,Rd,934310,5.056,7.198,0,51.440615,3,4 +7312,0,1.008452,1,1,0,2,5,,5,8,Latson,Rd,938109,0,1.008,0,24.202844,3.7,5 +8010,0,0.992812,1,1,0,2,5,,5,8,Faussett,Rd,934509,4.176,5.168,0,23.827497,3.7,5 +8038,0,1.006704,1,1,0,2,5,,5,8,Clyde,Rd,939905,2.98,3.987,0,24.160904,3.7,5 +26430,0,1.98619,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,47.668562,0.15,4 +7037,0,1.061376,1,1,0,2,5,,5,8,Latson,Rd,5490669,6.593,7.654,0,25.473015,3.7,5 +8051,0,0.991479,1,1,0,2,5,,5,8,Clyde,Rd,939905,1.989,2.98,0,23.795488,3.7,5 +7311,0,1.00701,1,1,0,2,7,,5,8,Latson,Rd,938109,1.008,2.015,0,24.168228,5.8,6 +8011,0,0.999141,1,1,0,2,5,,5,8,Faussett,Rd,934509,3.177,4.176,0,23.979381,3.7,5 +24615,0,1.146814,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.52353,0.15,4 +30164,0,0.374618,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.990843,0.15,4 +6986,0,0.885786,1,1,0,2,4,,5,8,Argentine,Rd,934310,7.198,8.084,0,21.258871,3,4 +24595,0,1.119021,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.8565,0.15,4 +6985,0,0.121839,1,1,0,2,4,,5,8,Argentine,Rd,934310,8.084,8.206,0,2.92413,3,4 +7085,0,1.008054,1,1,0,2,3,,5,8,Highland,Rd,933209,10.265,11.273,0,24.193302,1.7,4 +7086,0,0.497877,1,1,0,2,3,,5,8,Highland,Rd,933209,9.767,10.265,0,11.949048,1.7,4 +7334,0,1.250265,1,1,0,2,6,GRV,5,8,Bergin,Rd,941010,2.06,3.31,0,30.006357,5.55,5 +7336,0,1.009979,1,1,0,2,5,,5,8,Hacker,Rd,940803,4.22,5.229,0,24.239485,3.7,5 +26045,0,1.059296,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.423113,0.15,4 +27057,0,2.144965,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,51.479158,0.15,4 +7047,0,1.012496,1,1,0,2,7,GRV,5,8,Golf Club,Rd,933602,4.952,5.964,0,24.299907,5.55,5 +7341,0,1.002651,1,1,0,2,5,,5,8,Hacker,Rd,940803,3.217,4.22,0,24.063629,3.7,5 +27058,0,1.003124,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.074976,0.15,4 +30160,0,1.007969,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.191245,0.15,4 +7087,0,0.49131,1,1,0,2,3,,5,8,Highland,Rd,933209,9.276,9.767,0,11.791431,1.7,4 +27059,0,1.007925,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.190207,0.15,4 +27089,0,0.061432,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,1.474368,0.15,4 +7084,0,0.425353,1,1,0,2,3,,5,8,Highland,Rd,933209,11.273,11.698,0,10.208471,1.7,4 +26043,0,2.025633,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,48.615189,0.15,4 +26044,0,1.047395,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.137491,0.15,4 +6186,0,1.037858,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,18.969,20.007,0,24.908604,3.7,5 +7260,0,1.494966,1,1,0,2,4,,5,8,Clyde,Rd,939905,5.464,6.959,0,35.87919,3,4 +7418,0,2.167669,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,0.706,2.873,0,52.024052,5.8,6 +8000,0,0.097809,1,1,0,2,5,,5,8,Faussett,Rd,934509,7.859,7.957,0,2.347407,3.7,5 +27063,0,1.112626,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.703029,0.15,4 +8006,0,0.490338,1,1,0,2,4,,5,8,Clyde,Rd,939905,4.974,5.464,0,11.768109,3,4 +26938,0,1.026114,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.626741,0.15,4 +8001,0,0.675493,1,1,0,2,5,,5,8,Faussett,Rd,934509,7.184,7.859,0,16.211829,3.7,5 +6492,0,1.144311,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,17.825,18.969,0,27.463466,3.7,5 +7984,0,0.899315,1,1,0,2,4,,5,8,Clyde,Rd,939905,6.959,7.858,0,21.58357,3,4 +7419,0,0.705885,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,0,0.706,0,16.941244,5.8,6 +5422,1,0.424174,2,0,0,1,2,,5,8,N US 23,,931510,17.558,17.982,0,,1.02,7 +5698,-1,0.439099,0,2,0,1,2,,5,8,S US 23,,932002,17.517,17.955,0,,1.02,7 +6812,1,0.211618,1,0,0,1,2,ROF,5,8,N US 23/Clyde,RAMP,931808,0,0.212,0,,2.24,5 +6813,1,0.233717,1,0,0,1,2,RON,5,8,Clyde/N US 23,RAMP,931810,0,0.234,0,,1.09,4 +6898,1,0.242194,1,0,0,1,2,RON,5,8,Clyde/S US 23,RAMP,932108,0,0.242,0,,1.09,4 +7979,0,0.156188,1,1,0,2,4,,5,8,Clyde,Rd,939905,7.883,8.04,0,3.748515,3,4 +6899,1,0.228379,1,0,0,1,2,ROF,5,8,S US 23/Clyde,RAMP,932109,0,0.228,0,,2.24,5 +7982,0,0.025742,1,1,0,2,4,,5,8,Clyde,Rd,939905,7.858,7.883,0,0.617816,3,4 +7967,0,0.023938,1,1,0,2,5,,5,8,Clyde,Rd,939905,8.04,8.064,0,0.57452,3.7,5 +5991,0,1.035628,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,20.007,21.042,0,24.855065,3.7,5 +7994,0,0.912833,1,1,0,2,5,,5,8,Faussett,Rd,934509,8.161,9.074,0,21.907991,3.7,5 +26939,0,0.48555,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.653193,0.15,4 +26940,0,1.083529,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.004693,0.15,4 +27062,0,0.560297,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.447121,0.15,4 +7998,0,0.203954,1,1,0,2,5,,5,8,Faussett,Rd,934509,7.957,8.161,0,4.894903,3.7,5 +7991,0,0.223316,1,1,0,2,7,,5,8,Faussett,Rd,934509,9.074,9.297,0,5.359577,5.8,6 +7400,0,1.092803,1,1,0,2,4,,5,8,Kensington,Rd,942603,1.964,3.056,0,26.227261,3,4 +7423,0,1.45014,1,1,0,2,7,,4,8,Culver,Rd,4105156,1.03,2.48,0,34.803371,6.55,4.5 +7487,1,0.076022,1,0,0,1,1,ROF,5,8,W I 96/S Kensington,RAMP,935304,0.128,0.204,0,,2.24,5 +7494,1,0.213814,1,0,0,1,1,RON,5,8,Kensington/W I 96,RAMP,935303,0,0.214,0,,1.09,4 +7510,-1,1.05074,0,3,0,1,1,,5,8,W I 96,,935207,26.432,27.482,0,,1.02,7 +7688,1,1.391265,3,0,0,1,1,,5,8,E I 96,,935105,25.115,26.506,0,,1.02,7 +8123,0,0.839217,1,1,0,2,4,,5,8,Stobart,Rd,943101,0,0.839,0,20.14122,3,4 +8141,0,0.071697,1,1,0,2,4,,5,8,Kensington,Rd,942603,1.892,1.964,0,1.72074,3,4 +8150,0,0.105061,2,2,0,2,3,,5,8,Kensington,Rd,942603,1.516,1.621,0,2.52147,1.7,4 +8151,0,0.627236,1,1,0,2,5,,4,8,Kensington,Rd,942603,0.538,1.165,0,15.053674,5.8,4.5 +8157,0,0.553962,1,1,0,2,5,,4,8,Silver Lake,Rd,942310,0,0.554,0,13.295079,5.8,4.5 +19822,0,0.967407,1,1,0,2,4,,4,8,Grand River,Ave,4104142,0,0.967,0,23.217762,4.5,4.5 +19875,1,0.043399,1,0,0,1,1,ROF,5,8,W I 96/S Kensington,RAMP,4104044,0,0.043,0,,2.24,5 +19911,0,0.565097,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,1.086,1.651,0,13.562327,4.5,4.5 +25939,0,1.068658,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.64778,0.15,4 +26139,0,2.028086,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,48.674074,0.15,4 +26997,0,0.793853,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,19.05248,0.15,4 +27064,0,1.241282,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.790779,0.15,4 +27065,0,1.021834,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.524028,0.15,4 +27067,0,1.113193,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,26.716636,0.15,4 +27075,0,0.495782,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.898778,0.15,4 +27080,0,1.034486,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.827668,0.15,4 +29476,0,0.696521,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.716515,0.15,4 +30228,0,1.84991,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,44.397829,0.15,4 +6391,0,1.024511,1,1,0,2,5,GRV,5,8,Silver Lake,Rd,931608,1.845,2.869,0,24.588264,5.55,5 +7125,0,0.812156,1,1,1,2,3,,4,8,Grand River,Ave,932910,25.003,25.815,0,19.491743,3.7,5 +37044,0,2.236703,1,1,0,2,5,,5,8,Oak Grove,Rd,4104402,3.085,5.321,0,53.68087,3.7,5 +7527,-1,0.09545,0,2,0,1,1,FCD,4,8,W I 96 CD,,935207,23.528,23.622,0,,0.8,7.5 +7690,1,0.07616,2,0,0,1,1,FCD,4,8,E I 96 CD,,935105,23.454,23.53,0,,0.8,7.5 +25131,0,0.918602,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.046438,0.15,4 +26140,0,1.463301,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,35.119217,0.15,4 +26727,0,0.913949,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,21.934778,0.15,4 +5509,0,0.715513,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,0.821,1.537,0,17.172319,3.7,5 +26728,0,1.99525,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,47.885994,0.15,4 +6895,0,0.234375,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,1.537,1.771,0,5.62501,3.7,5 +6735,0,0.074114,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,1.771,1.845,0,1.778741,3.7,5 +7126,0,0.845456,2,2,1,2,3,,4,8,Grand River,Ave,932910,24.158,25.003,0,20.29094,3.7,5 +27000,0,0.256977,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,6.167443,0.15,4 +5428,1,0.278585,1,0,0,1,1,RFS,4,8,N US 23/W I 96,RAMP,931709,0,0.279,0,,0.22,6 +5429,1,0.502283,1,0,0,1,1,RFF,4,8,W I 96/N US 23,RAMP,931801,0,0.502,0,,0.8,7.5 +6390,1,0.452604,2,0,0,1,2,,4,8,N US 23,,931510,6.75,7.202,0,,0.8,7.5 +7528,-1,0.467753,0,2,0,1,1,FCD,4,8,W I 96 CD,,935207,23.06,23.528,0,,0.8,7.5 +5426,1,0.392235,1,0,0,1,1,RFS,4,8,N US 23/E I 96,RAMP,931706,0,0.392,0,,0.22,6 +6894,1,0.140844,2,0,0,1,2,,4,8,N US 23,,931510,6.571,6.712,0,,0.8,7.5 +7703,1,0.256261,2,0,0,1,1,FCD,4,8,E I 96 CD,,935105,23.197,23.454,0,,0.8,7.5 +5427,1,0.253655,1,0,0,1,1,RFS,4,8,E I 96/N US 23,RAMP,931707,0,0.254,0,,0.22,6 +6591,1,0.037439,2,0,0,1,2,,4,8,N US 23,,931510,6.712,6.75,0,,0.8,7.5 +7714,1,0.083317,3,0,0,1,1,FCD,4,8,E I 96 CD,,935105,23.114,23.197,0,,0.8,7.5 +6183,0,0.992648,1,1,0,2,5,GRV,5,8,Silver Lake,Rd,931608,2.869,3.861,0,23.823548,5.55,5 +7655,0,0.50261,1,1,0,2,5,,4,8,Rushton,Rd,942101,3.523,4.025,0,12.062641,5.8,4.5 +25130,0,0.655576,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.733818,0.15,4 +25132,0,0.752005,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.048124,0.15,4 +7387,0,0.854434,1,1,0,2,5,,5,8,Rushton,Rd,942101,2.669,3.523,0,20.506409,3.7,5 +8065,0,0.291245,1,1,0,2,5,,4,8,Silver Lake,Rd,942101,4.025,4.317,0,6.989891,5.8,4.5 +7124,0,1.58186,1,1,0,2,3,,5,8,Grand River,Ave,932910,25.815,27.396,0,37.964647,1.7,4 +7522,-1,1.113184,0,3,0,1,1,,5,8,W I 96,,935207,25.177,26.29,0,,1.02,7 +7883,0,0.351492,1,1,0,2,5,,4,8,Kensington,Rd,942603,1.165,1.516,0,8.435805,5.8,4.5 +19916,0,0.400486,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0,0.4,0,9.611667,4.5,4.5 +19912,0,0.500821,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.586,1.086,0,12.019705,4.5,4.5 +7495,1,0.288734,1,0,0,1,1,ROF,5,8,W I 96/Pleasant Valley,RAMP,935302,0,0.289,0,,2.24,5 +7635,1,0.240483,1,0,0,1,1,RON,5,8,Pleasant Valley/E I 96,RAMP,935204,0,0.24,0,,1.09,4 +19915,0,0.129748,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.4,0.53,0,3.113941,4.5,4.5 +19914,0,0.015492,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.53,0.546,0,0.371801,4.5,4.5 +19913,0,0.040221,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.546,0.586,0,0.965292,4.5,4.5 +7490,1,0.127991,1,0,0,1,1,ROF,5,8,W I 96/S Kensington,RAMP,935304,0,0.128,0,,2.24,5 +7516,-1,0.142443,0,3,0,1,1,,5,8,W I 96,,935207,26.29,26.432,0,,1.02,7 +5914,0,1.425158,1,1,0,2,5,,5,8,Hyne,Rd,931803,2.261,3.686,0,34.203793,3.7,5 +6593,0,0.743058,1,1,0,2,4,,4,8,Spencer,Rd,931802,1.223,1.966,0,17.83339,4.5,4.5 +8136,0,0.763262,1,1,0,2,5,,5,8,Kensington,Rd,942603,4.623,5.386,0,18.318287,3.7,5 +26058,0,1.050024,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.200585,0.15,4 +27069,0,1.409274,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.822573,0.15,4 +27070,0,1.495521,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,35.892494,0.15,4 +5431,0,0.642309,1,1,0,2,4,,4,8,Spencer,Rd,931802,0.282,0.924,0,15.415411,4.5,4.5 +5597,0,0.835734,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,8.2,9.035,0,20.057618,4.5,4.5 +27071,0,1.626272,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.030524,0.15,4 +5430,0,0.28241,1,1,0,2,4,,4,8,Spencer,Rd,931802,0,0.282,0,6.777846,4.5,4.5 +5820,0,0.291687,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,7.908,8.2,0,7.000484,4.5,4.5 +5143,0,0.279012,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,9.035,9.314,0,6.696286,4.5,4.5 +6896,0,0.298913,1,1,0,2,4,,4,8,Spencer,Rd,931802,0.924,1.223,0,7.173915,4.5,4.5 +6309,0,0.507514,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,11.092,11.599,0,12.180343,4.5,4.5 +6393,0,1.007664,1,1,0,2,5,,4,8,Hyne,Rd,931803,1.001,2.009,0,24.183927,5.8,4.5 +6491,0,0.570531,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,10.522,11.092,0,13.692753,4.5,4.5 +6077,0,0.252651,1,1,0,2,5,,5,8,Hyne,Rd,931803,2.009,2.261,0,6.063614,3.7,5 +7442,0,0.421257,1,1,0,2,5,,5,8,Pleasant Valley,Rd,936106,0.087,0.509,0,10.110178,3.7,5 +7856,0,0.706113,1,1,0,2,5,,5,8,Jacoby,,943010,0,0.706,0,16.946716,3.7,5 +8138,0,1.1445,1,1,0,2,4,,5,8,Kensington,Rd,942603,3.056,4.2,0,27.468006,3,4 +27032,0,1.020874,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.500982,0.15,4 +19909,0,0.091124,1,1,0,2,5,,5,8,Buno,Rd,4103156,2.214,2.305,0,2.186974,3.7,5 +19910,0,0.433377,1,1,0,2,5,,5,8,Pleasant Valley,Rd,4103155,1.651,2.085,0,10.401057,3.7,5 +19945,0,0.106369,1,1,0,2,5,,5,8,Pleasant Valley,Rd,4102974,0,0.106,0,2.552859,3.7,5 +19908,0,0.129885,1,1,0,2,5,,5,8,Pleasant Valley,Rd,4104009,0,0.13,0,3.117244,3.7,5 +7398,0,0.362151,1,1,0,2,4,,5,8,Kensington,Rd,942603,4.261,4.623,0,8.691613,3,4 +37460,-1,0.021826,0,1,0,2,4,,5,8,Jacoby,,4102973,0,0.022,0,0.523826,3,4 +7397,0,0.86901,1,1,0,2,5,,5,8,Pleasant Valley,Rd,942603,5.386,6.254,0,20.856249,3.7,5 +8135,0,0.195671,1,1,0,2,5,,5,8,Pleasant Valley,Rd,942603,6.254,6.45,0,4.696103,3.7,5 +2446,-1,0.671063,0,3,0,1,1,,4,3,W I 96,,657304,0.614,1.285,0,,0.8,7.5 +2930,1,0.190249,3,0,0,1,1,,4,3,E I 96,,657303,0.566,0.756,0,,0.8,7.5 +2933,1,0.199785,1,0,0,1,1,ROF,4,3,E I 96/Kent Lake,RAMP,657210,0,0.2,0,,2.24,5 +2946,0,0.284742,1,1,0,2,4,,4,3,Kensington Lake,Rd,656903,0.581,0.865,0,6.833815,4.5,4.5 +3002,1,0.303733,1,0,0,1,1,RON,4,3,Kent Lake/W I 96,RAMP,657307,0.054,0.358,0,,1.09,4 +3085,0,0.89217,1,1,0,2,5,GRV,5,3,Martindale,Rd,656802,1.746,2.637,0,21.412072,5.55,5 +3364,0,0.24969,1,1,0,2,4,,4,3,Silver Lake,Rd,656604,0.546,0.796,0,5.992561,4.5,4.5 +3398,0,0.39089,1,1,0,2,7,,4,3,11 Mile,Rd,656603,0.422,0.813,0,9.381366,6.55,4.5 +3573,0,0.703696,1,1,0,2,4,,5,3,Pontiac,Trl,656507,4.291,4.995,0,16.888694,3,4 +7886,0,1.082406,1,1,0,2,5,,4,8,Silver Lake,Rd,942310,0.554,1.636,0,25.977751,5.8,4.5 +8124,0,1.433504,1,1,0,2,7,GRV,5,8,Dixboro,Rd,942604,0.494,1.927,0,34.404084,5.55,5 +8156,0,0.537695,1,1,0,2,5,,4,8,Kensington,Rd,942603,0,0.538,0,12.904688,5.8,4.5 +19821,0,0.753075,1,1,0,2,4,,4,3,Grand River,Ave,4104142,0.967,1.72,0,18.073812,4.5,4.5 +25267,0,0.487212,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.69308,0.15,4 +26141,0,0.845079,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.2819,0.15,4 +26986,0,0.655221,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.725315,0.15,4 +27074,0,0.172813,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.147507,0.15,4 +27078,0,0.877236,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.053667,0.15,4 +27079,0,0.440443,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.570629,0.15,4 +27068,0,1.277301,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,30.655214,0.15,4 +27066,0,0.391916,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.405993,0.15,4 +3403,0,0.422559,1,1,0,2,7,GRV,4,3,11 Mile,Rd,656603,0,0.422,0,10.141407,6.55,4.5 +7864,0,0.494309,1,1,0,2,7,GRV,5,8,Dixboro,Rd,942604,0,0.494,0,11.863415,5.55,5 +29803,0,0.110379,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.649102,0.15,4 +7681,1,0.767521,3,0,0,1,1,,5,8,E I 96,,935105,26.7,27.467,0,,1.02,7 +7404,0,0.204532,2,2,0,2,3,,5,8,Kensington,Rd,942603,1.629,1.833,0,4.908777,1.7,4 +7619,1,0.209973,1,0,0,1,1,RON,5,8,Kensington/E I 96,RAMP,935206,0,0.21,0,,1.09,4 +7621,1,0.219341,1,0,0,1,1,ROF,5,8,E I 96/Kensington,RAMP,935205,0,0.219,0,,2.24,5 +7682,1,0.194161,3,0,0,1,1,,5,8,E I 96,,935105,26.506,26.7,0,,1.02,7 +7882,0,0.007853,2,2,0,2,3,,5,8,Kensington,Rd,942603,1.621,1.629,0,0.188466,1.7,4 +8144,0,0.054382,1,1,0,2,3,,5,8,Kensington,Rd,942603,1.833,1.888,0,1.305163,1.7,4 +7402,0,0.004642,1,1,0,2,3,,5,8,Kensington,Rd,942603,1.888,1.892,0,0.111418,1.7,4 +2693,0,0.580731,1,1,0,2,4,,4,3,Kent Lake,Rd,656903,0,0.581,0,13.937541,4.5,4.5 +3046,0,0.315832,1,1,0,2,5,,4,3,Silver Lake,Rd,656604,0.23,0.546,0,7.579967,5.8,4.5 +3369,0,0.23027,1,1,0,2,5,,4,3,Silver Lake,Rd,656604,0,0.23,0,5.526479,5.8,4.5 +2671,1,0.56618,3,0,0,1,1,,4,3,E I 96,,657303,0,0.566,0,,0.8,7.5 +2721,-1,0.614082,0,3,0,1,1,,4,3,W I 96,,657304,0,0.614,0,,0.8,7.5 +2797,0,0.753571,1,1,0,2,5,GRV,5,3,Martindale,Rd,656802,0.992,1.746,0,18.085706,5.55,5 +3072,0,0.644462,1,1,1,2,5,,4,3,11 Mile,Rd,656603,0.813,1.457,0,15.467093,5.8,4.5 +3577,0,1.065978,1,1,0,2,4,,4,3,Pontiac,Trl,656507,2.993,4.058,0,25.583476,4.5,4.5 +25261,0,0.361195,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.668669,0.15,4 +25263,0,0.489357,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.744564,0.15,4 +25265,0,0.74478,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,17.874716,0.15,4 +27081,0,0.538459,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.923019,0.15,4 +25476,0,0.399951,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.598831,0.15,4 +2614,0,0.433855,1,1,1,2,4,,4,3,Lafayette,St,656507,2.559,2.993,0,10.412528,4.5,4.5 +3579,0,0.072139,1,1,1,2,4,,4,3,Lafayette,St,656507,2.487,2.559,0,1.731345,4.5,4.5 +2611,0,0.232864,1,1,0,2,4,,5,3,Pontiac,Trl,656507,4.058,4.291,0,5.588738,3,4 +27077,0,0.403024,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,9.672572,0.15,4 +3070,0,0.635844,1,1,0,2,5,,5,3,11 Mile,Rd,656603,1.564,2.2,0,15.260256,3.7,5 +3089,0,0.431982,1,1,0,2,5,,4,3,Martindale,Rd,656802,0.56,0.992,0,10.367579,5.8,4.5 +3395,0,0.106587,1,1,1,2,5,,4,3,11 Mile,Rd,656603,1.457,1.564,0,2.558094,5.8,4.5 +25260,0,0.501489,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.03573,0.15,4 +26839,0,0.621312,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.91148,0.15,4 +26987,0,0.952222,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.853331,0.15,4 +2673,1,0.299554,1,0,0,1,1,RON,4,3,N Kent Lake/E I 96,RAMP,657301,0,0.299,0,,1.09,4 +2683,0,0.174727,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,0.902,1.077,0,4.193442,4.5,4.5 +2932,1,0.153031,1,0,0,1,1,RON,4,3,S Kent Lake/E I 96,RAMP,657302,0,0.153,0,,1.09,4 +3075,0,0.335208,1,1,0,2,5,,4,3,Martindale,Rd,656802,3.495,3.83,0,8.044991,5.8,4.5 +3568,0,0.438688,1,1,0,2,4,,4,3,Pontiac,Trl,656507,5.309,5.747,0,10.528509,4.5,4.5 +19817,0,0.702401,1,1,0,2,4,,4,3,Grand River,Ave,4104142,2.577,3.28,0,16.857616,4.5,4.5 +19818,0,0.457225,1,1,0,2,4,,4,3,Grand River,Ave,4104142,2.12,2.577,0,10.973401,4.5,4.5 +19819,0,0.351311,1,1,0,2,4,,4,3,Grand River,Ave,4104142,1.769,2.12,0,8.431453,4.5,4.5 +26979,0,0.502232,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.053564,0.15,4 +26982,0,0.821448,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.714758,0.15,4 +2607,0,0.314097,1,1,0,2,4,,4,3,Pontiac,Trl,656507,4.995,5.309,0,7.538339,4.5,4.5 +27076,0,0.64653,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.516715,0.15,4 +2684,0,0.030383,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,0.865,0.896,0,0.729197,4.5,4.5 +19820,0,0.049383,1,1,0,2,4,,4,3,Grand River,Ave,4104142,1.72,1.769,0,1.185195,4.5,4.5 +2945,0,0.006935,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,0.896,0.902,0,0.16643,4.5,4.5 +2493,1,0.269462,2,0,0,1,1,ROF,4,3,W I 96/Kent Lake,RAMP,657308,0,0.269,0,,2.24,5 +2623,1,0.104048,1,0,0,1,1,ROF,4,3,W I 96/S Kent Lake,RAMP,657305,0,0.104,0,,2.24,5 +2668,1,0.319883,3,0,0,1,1,,4,3,E I 96,,657303,0.756,1.076,0,,0.8,7.5 +2941,0,0.064897,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,1.132,1.197,0,1.557524,4.5,4.5 +3313,1,0.054116,1,0,0,1,1,RON,4,3,S Kent Lake/W I 96,RAMP,657307,0,0.054,0,,1.09,4 +20250,1,0.042173,1,0,0,1,1,RON,4,3,N Kent Lake/W I 96,RAMP,4403524,0,0.042,0,,1.09,4 +2943,0,0.031715,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,1.077,1.109,0,0.761161,4.5,4.5 +2682,0,0.023233,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,1.109,1.132,0,0.557595,4.5,4.5 +3466,1,0.122188,1,0,0,1,1,ROF,4,3,W I 96/N Kent Lake,RAMP,657308,0.269,0.392,0,,2.24,5 +2606,0,0.624136,1,1,0,2,4,,4,3,Pontiac,Trl,656507,5.747,6.371,0,14.979268,4.5,4.5 +2792,0,0.509732,1,1,0,2,5,GRV,4,3,Martindale,Rd,656802,2.985,3.495,0,12.233575,6.55,4.5 +26980,0,0.493488,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.843713,0.15,4 +29806,0,0.619205,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.860919,0.15,4 +3567,0,0.100295,1,1,0,2,4,,4,3,Pontiac,Trl,656507,6.371,6.471,0,2.407072,4.5,4.5 +26981,0,0.204388,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.905303,0.15,4 +3587,0,1.003284,1,1,0,2,4,,5,3,General Motors,Rd,661208,0,1.003,0,24.078824,3,4 +21011,0,0.883075,1,1,0,2,4,,5,3,Hickory Ridge,Trl,4410281,1.119,2.002,0,21.19379,3,4 +26067,0,1.20984,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.036161,0.15,4 +27083,0,0.449157,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.779777,0.15,4 +27085,0,1.308652,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,31.407649,0.15,4 +27086,0,0.22329,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,5.358971,0.15,4 +29478,0,1.513585,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.326051,0.15,4 +3056,0,0.710129,1,1,0,2,4,,5,3,Stobart,Rd,661304,0,0.71,0,17.043099,3,4 +26978,0,1.5876,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.102408,0.15,4 +7855,0,0.446271,1,1,0,2,4,,5,8,Stobart,Rd,943101,0.839,1.285,0,10.710504,3,4 +3190,0,0.16428,1,1,0,2,4,,5,3,Stobart,Rd,661304,0.71,0.874,0,3.94272,3,4 +21010,0,0.767392,1,1,0,2,4,,5,3,Hickory Ridge,Trl,4410281,2.002,2.769,0,18.417418,3,4 +26068,0,0.958901,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.013632,0.15,4 +27082,0,0.689342,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.544207,0.15,4 +26974,0,0.263639,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,6.327334,0.15,4 +26976,0,1.042475,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.019397,0.15,4 +7073,1,0.711994,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,15.296,16.008,0,17.087854,1.7,4 +7422,0,0.753447,1,1,0,2,5,,5,8,Commerce,Rd,936705,1.463,2.216,0,18.082722,3.7,5 +7931,0,1.034868,1,1,0,2,5,GRV,5,8,Clyde,Rd,939905,10.913,11.947,0,24.836829,5.55,5 +8149,0,1.012666,1,1,0,2,5,,5,8,Fenton,Rd,934505,3.139,4.151,0,24.303981,3.7,5 +8165,0,0.646469,1,1,0,2,7,,5,8,Hartland,Rd,4105279,1.853,2.499,0,15.515262,5.8,6 +19921,-1,0.617568,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,2.86,3.477,0,14.821641,1.7,4 +21004,0,1.004563,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,7.057,8.061,0,24.109514,3.7,5 +26051,0,0.954643,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.911422,0.15,4 +26052,0,0.989717,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.75322,0.15,4 +26950,0,1.229466,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.507186,0.15,4 +27094,0,0.463328,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.11987,0.15,4 +29851,0,1.083469,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.003265,0.15,4 +5512,0,1.04434,1,1,0,2,4,,5,8,Old US 23,,932204,13.673,14.717,0,25.064166,3,4 +5591,1,0.251432,1,0,0,1,2,ROF,5,8,N US 23/Highland,RAMP,931804,0,0.251,0,,2.24,5 +5709,1,0.21907,1,0,0,1,2,RON,5,8,Highland/S US 23,RAMP,932106,0.053,0.272,0,,1.09,4 +5910,1,0.566022,2,0,0,1,2,,5,8,N US 23,,931510,14.38,14.946,0,,1.02,7 +6184,-1,0.564217,0,2,0,1,2,,5,8,S US 23,,932002,14.42,14.984,0,,1.02,7 +7075,1,1.544957,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,12.996,14.541,0,37.078972,1.7,4 +8162,0,1.009278,1,1,0,2,5,,5,8,Pleasant Valley,Rd,934505,1.12,2.129,0,24.222676,3.7,5 +37459,1,0.025939,1,0,0,2,4,,5,8,Jacoby,,943010,0.706,0.732,0,0.622535,3,4 +26049,0,1.501309,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.031405,0.15,4 +26053,0,1.813282,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,43.518771,0.15,4 +27090,0,1.115794,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.779066,0.15,4 +27091,0,1.279698,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.712741,0.15,4 +29852,0,1.134067,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.217609,0.15,4 +5821,0,1.301465,1,1,0,2,4,,5,8,Old US 23,Hwy,932204,12.372,13.673,0,31.235152,3,4 +37455,0,0.021393,1,1,0,2,3,,5,8,Hartland,Rd,4105279,0,0.021,0,0.513421,1.7,4 +7077,0,0.033753,2,2,1,2,3,,5,8,Highland,Rd,933209,12.81,12.844,0,0.810068,1.7,4 +5433,1,0.236613,1,0,0,1,2,RON,5,8,Highland/N US 23,RAMP,931806,0.064,0.301,0,,1.09,4 +5434,1,0.262717,1,0,0,1,2,ROF,5,8,S US 23/Highland,RAMP,932107,0,0.263,0,,2.24,5 +7082,0,0.134219,2,2,1,2,3,,5,8,Highland,Rd,933209,12.521,12.655,0,3.221261,1.7,4 +5592,1,0.06583,1,0,0,1,2,ROF,5,8,N US 23/EB Highland,RAMP,931804,0.251,0.317,0,,2.24,5 +5708,1,0.052978,1,0,0,1,2,RON,5,8,EB Highland/S US 23,RAMP,932106,0,0.053,0,,1.09,4 +7079,0,0.057405,2,2,1,2,3,,5,8,Highland,Rd,933209,12.726,12.784,0,1.377709,1.7,4 +20907,1,0.041249,1,0,0,1,2,RON,5,8,WB Highland/S US 23,RAMP,4104289,0,0.041,0,,1.09,4 +20910,1,0.047319,1,0,0,1,2,RON,5,8,EB Highland/N US 23,RAMP,4104287,0,0.047,0,,1.09,4 +20911,1,0.072538,1,0,0,1,2,ROF,5,8,N US 23/WB Highland,RAMP,4104286,0,0.073,0,,2.24,5 +5435,1,0.059562,1,0,0,1,2,ROF,5,8,S US 23/WB Highland,RAMP,932107,0.263,0.322,0,,2.24,5 +7080,0,0.057293,2,2,1,2,3,,5,8,Highland,Rd,933209,12.669,12.726,0,1.375026,1.7,4 +7081,0,0.01378,2,2,1,2,3,,5,8,Highland,Rd,933209,12.655,12.669,0,0.330712,1.7,4 +20909,1,0.062427,1,0,0,1,2,ROF,5,8,S US 23/EB Highland,RAMP,4104288,0,0.062,0,,2.24,5 +5432,1,0.064148,1,0,0,1,2,RON,5,8,WB Highland/N US 23,RAMP,931806,0,0.064,0,,1.09,4 +7078,0,0.026878,2,2,1,2,3,,5,8,Highland,Rd,933209,12.784,12.81,0,0.645061,1.7,4 +37453,0,0.334436,2,2,1,2,5,,5,8,Hartland,Rd,4105279,0.021,0.356,0,8.026455,3.7,5 +6978,0,0.121418,1,1,0,2,7,,5,8,Avon,St,4105279,1.732,1.853,0,2.914022,5.8,6 +7753,0,1.120616,1,1,0,2,5,GRV,5,8,Pleasant Valley,Rd,934505,0,1.12,0,26.894774,5.55,5 +7074,1,0.755602,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,14.541,15.296,0,18.134458,1.7,4 +8153,0,0.989435,1,1,0,2,5,,5,8,Fenton,Rd,934505,2.15,3.139,0,23.746445,3.7,5 +19923,-1,0.755752,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,1.699,2.454,0,18.13804,1.7,4 +26048,0,0.888732,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.329563,0.15,4 +26050,0,0.494246,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.861898,0.15,4 +30159,0,0.473262,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.358278,0.15,4 +19922,-1,0.405485,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,2.454,2.86,0,9.731642,1.7,4 +8160,0,0.020684,1,1,0,2,5,,5,8,Fenton,Rd,934505,2.129,2.15,0,0.496424,3.7,5 +8131,0,2.136941,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,5.669,7.806,0,51.286594,3.7,5 +26916,0,1.139494,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.347846,0.15,4 +7939,0,1.010573,1,1,0,2,5,GRV,5,8,Clyde,Rd,939905,9.903,10.913,0,24.253753,5.55,5 +8137,0,0.507553,1,1,0,2,5,,5,8,Fenton,Rd,934505,5.162,5.669,0,12.181276,3.7,5 +26942,0,0.960763,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.0583,0.15,4 +26989,0,0.570476,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.691421,0.15,4 +8147,0,1.011176,1,1,0,2,5,,5,8,Fenton,Rd,934505,4.151,5.162,0,24.268229,3.7,5 +2199,1,1.229685,2,0,0,2,3,DIV,5,3,Highland,Rd,648906,0.872,2.101,0,29.512439,1.7,4 +2494,0,1.193215,1,1,0,2,5,GRV,5,3,Wardlow,Rd,650309,0,1.193,0,28.637163,5.55,5 +21007,0,1.000898,1,1,0,2,4,,5,3,Hickory Ridge,Rd,4410281,5.052,6.052,0,24.021544,3,4 +21070,-1,1.130518,0,2,0,2,3,DIV,5,3,Highland,Rd,4410120,0.871,2.002,0,27.132437,1.7,4 +26959,0,0.993688,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.848505,0.15,4 +26960,0,1.185012,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,28.440296,0.15,4 +27087,0,1.087976,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.111423,0.15,4 +27093,0,1.094186,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.260457,0.15,4 +29849,0,1.00025,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.006008,0.15,4 +29850,0,1.112769,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.706462,0.15,4 +19854,0,0.543585,1,1,0,2,5,,5,3,Commerce,Rd,4104140,0.185,0.729,0,13.046033,3.7,5 +21008,0,1.527124,1,1,0,2,4,,5,3,Hickory Ridge,Rd,4410281,3.525,5.052,0,36.650977,3,4 +27088,0,0.955459,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.931013,0.15,4 +7421,0,0.349484,1,1,0,2,5,,5,8,Commerce,Rd,936705,2.216,2.565,0,8.387605,3.7,5 +19855,0,0.185288,1,1,0,2,5,,5,8,Commerce,Rd,4104140,0,0.185,0,4.446919,3.7,5 +19853,0,0.382268,1,1,0,2,5,,5,3,Commerce,Rd,4104140,0.729,1.111,0,9.174427,3.7,5 +27092,0,0.431058,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.345391,0.15,4 +2200,1,0.872366,2,0,0,2,3,DIV,5,3,Highland,Rd,648906,0,0.872,0,20.936779,1.7,4 +21005,0,0.983817,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,6.074,7.057,0,23.611598,3.7,5 +21071,-1,0.871761,0,2,0,2,3,DIV,5,3,Highland,Rd,4410120,0,0.871,0,20.922259,1.7,4 +7072,1,0.31025,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,16.008,16.318,0,7.446008,1.7,4 +21006,0,0.021502,1,1,0,2,4,,5,3,Hickory Ridge,Rd,4410281,6.052,6.074,0,0.516042,3,4 +26949,0,0.530727,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.737449,0.15,4 +28552,0,1.146263,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.510312,0.15,4 +29796,0,1.095817,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.299616,0.15,4 +2202,0,1.443732,1,1,0,2,5,,5,3,Middle,Rd,648808,0.878,2.321,0,34.649577,3.7,5 +2205,0,1.023127,1,1,0,2,5,,5,3,Clyde,Rd,648706,0.884,1.907,0,24.555056,3.7,5 +21001,0,2.135561,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,10.095,12.23,0,51.253464,3.7,5 +26921,0,1.07011,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.682639,0.15,4 +26943,0,1.260961,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,30.263054,0.15,4 +29798,0,1.449295,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.78309,0.15,4 +2206,0,0.884257,1,1,0,2,5,,5,3,Clyde,Rd,648706,0,0.884,0,21.22216,3.7,5 +21002,0,1.03104,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,9.065,10.095,0,24.744967,3.7,5 +21003,0,1.003447,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,8.061,9.065,0,24.082724,3.7,5 +26945,0,0.152134,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,3.651209,0.15,4 +3400,0,0.491449,1,1,0,2,5,GRV,5,3,Halsey,Rd,651401,0,0.491,0,11.794775,5.55,5 +6300,1,2.107118,2,0,0,1,2,,5,8,N US 23,,931510,22.161,24.268,0,,1.02,7 +6488,0,0.956255,1,1,0,2,5,,5,8,White Lake,Rd,931905,4.043,4.999,0,22.95011,3.7,5 +6737,-1,1.989793,0,2,0,1,2,,5,8,S US 23,,932002,22.107,24.096,0,,1.02,7 +6739,0,0.681982,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,23.764,24.446,0,16.367565,3.7,5 +7276,0,0.888013,1,1,0,2,5,,5,8,Center,Rd,941603,6.142,7.03,0,21.312308,3.7,5 +7383,0,2.38802,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,4.938,7.325,0,57.312469,5.8,6 +19983,0,1.26262,1,1,0,2,5,,5,8,Bennett Lake,Rd,3251563,0,1.262,0,30.302888,3.7,5 +21060,0,0.834021,1,1,0,2,4,,5,3,Holly,Rd,4410127,3.743,4.577,0,20.016503,3,4 +7293,0,1.003116,1,1,0,2,7,GRV,5,8,Center,Rd,941603,3.01,4.013,0,24.074793,5.55,5 +8104,0,2.240743,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,0.266,2.506,0,53.777842,3.7,5 +6982,0,1.005731,1,1,0,2,4,,5,8,Argentine,Rd,934310,10.214,11.22,0,24.137532,3,4 +7315,0,1.994695,1,1,0,2,7,,5,8,Center,Rd,941603,0,1.994,0,47.872679,5.8,6 +24596,0,2.11974,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,50.87376,0.15,4 +27096,0,1.080081,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.921932,0.15,4 +27102,0,1.268654,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.447707,0.15,4 +30163,0,1.44954,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.788963,0.15,4 +6983,0,1.0071,1,1,0,2,4,,5,8,Argentine,Rd,934310,9.208,10.214,0,24.170397,3,4 +7303,0,1.01633,1,1,0,2,7,GRV,5,8,Center,Rd,941603,1.994,3.01,0,24.391914,5.55,5 +30165,0,1.605094,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.522261,0.15,4 +6980,0,0.743566,1,1,0,2,4,,5,8,Argentine,Rd,934310,11.723,12.467,0,17.845582,3,4 +7258,0,0.493318,1,1,0,2,5,,5,8,Bennett Lake,Rd,941606,0,0.493,0,11.839625,3.7,5 +6981,0,0.503766,1,1,0,2,4,,5,8,Argentine,Rd,934310,11.22,11.723,0,12.090391,3,4 +34063,0,0.694764,1,1,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +7817,0,0.311705,1,1,0,2,5,,5,8,Bennett Lake,Rd,941905,0.514,0.825,0,7.480928,3.7,5 +7862,0,0.265627,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,0,0.266,0,6.375042,3.7,5 +7289,0,1.005371,1,1,0,2,7,GRV,5,8,Center,Rd,941603,4.013,5.018,0,24.128912,5.55,5 +27097,0,0.810858,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.460591,0.15,4 +27104,0,0.864951,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.758829,0.15,4 +5513,0,1.006878,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,22.063,23.069,0,24.165067,3.7,5 +7283,0,0.93304,1,1,0,2,7,,5,8,Center,Rd,941603,5.018,5.95,0,22.392962,5.8,6 +29479,0,1.070676,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.696215,0.15,4 +30169,0,0.548776,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.170629,0.15,4 +6592,1,0.478211,2,0,0,1,2,,5,8,N US 23,,931510,21.683,22.161,0,,1.02,7 +6814,1,0.251189,1,0,0,1,2,ROF,5,8,N US 23/Center,RAMP,931902,0,0.251,0,,2.24,5 +6815,1,0.254349,1,0,0,1,2,RON,5,8,Center/N US 23,RAMP,931904,0,0.254,0,,1.09,4 +6897,-1,0.408703,0,2,0,1,2,,5,8,S US 23,,932002,21.698,22.107,0,,1.02,7 +6901,1,0.207537,1,0,0,1,2,ROF,5,8,S US 23/Center,RAMP,932201,0,0.208,0,,2.24,5 +7278,0,0.128252,1,1,0,2,5,,5,8,Center,Rd,941603,5.976,6.104,0,3.078059,3.7,5 +6900,1,0.213428,1,0,0,1,2,RON,5,8,Center/S US 23,RAMP,932110,0,0.213,0,,1.09,4 +7279,0,0.025353,1,1,0,2,5,,5,8,Center,Rd,941603,5.95,5.976,0,0.608474,3.7,5 +7277,0,0.038585,1,1,0,2,5,,5,8,Center,Rd,941603,6.104,6.142,0,0.926036,3.7,5 +6906,0,0.694803,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,23.069,23.764,0,16.675279,3.7,5 +7329,0,0.168909,1,1,0,2,5,,5,8,Linden,Rd,937506,4.749,4.918,0,4.053819,3.7,5 +7985,0,0.511836,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,3.04,3.552,0,12.284058,3.7,5 +27095,0,0.349818,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.395633,0.15,4 +8081,0,0.534768,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,2.506,3.04,0,12.83444,3.7,5 +6303,0,0.36823,1,1,0,2,5,,5,8,White Lake,Rd,931905,4.999,5.367,0,8.837515,3.7,5 +34062,0,0.821763,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19984,0,0.168073,1,1,0,2,5,,5,8,Linden,Rd,3251558,0,0.168,0,4.033746,3.7,5 +2998,0,0.173246,2,2,0,2,4,,4,3,Saginaw,,650602,0.381,0.555,0,4.157909,4.5,4.5 +3079,0,0.900846,1,1,0,2,5,,5,3,Fish Lake,Rd,649104,7.654,8.555,0,21.620297,3.7,5 +6816,0,1.388111,1,1,0,2,5,,5,8,White Lake,Rd,931905,0,1.388,0,33.314652,3.7,5 +34065,0,0.665997,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34066,0,0.641218,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +6594,0,1.168799,1,1,0,2,5,,5,8,White Lake,Rd,931905,1.441,2.61,0,28.051168,3.7,5 +7274,0,1.009689,1,1,0,2,5,GRV,5,8,Center,Rd,941603,8.031,9.041,0,24.232538,5.55,5 +7344,0,1.668068,1,1,0,2,5,,5,8,Denton Hill,Rd,937306,0,1.668,0,40.033622,3.7,5 +7351,0,1.014283,1,1,0,2,7,,5,8,Carmer,Rd,937206,0,1.014,0,24.342782,5.8,6 +7352,0,1.545926,1,1,0,2,7,,5,8,Hartland,Rd,937104,7.081,8.626,0,37.102218,5.8,6 +7359,0,0.179634,1,1,0,2,7,,5,8,Hartland,Rd,937104,6.901,7.081,0,4.311227,5.8,6 +26906,0,0.612052,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.689259,0.15,4 +26907,0,1.513296,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.319107,0.15,4 +34106,0,1.435657,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7275,0,1.001607,1,1,0,2,5,GRV,5,8,Center,Rd,941603,7.03,8.031,0,24.038578,5.55,5 +7361,0,0.747198,1,1,0,2,7,,5,8,Hartland,Rd,937104,6.154,6.901,0,17.93276,5.8,6 +7368,0,0.607973,1,1,0,2,7,,5,8,Hartland,Rd,937104,5.547,6.154,0,14.591343,5.8,6 +7374,0,0.50973,1,1,0,2,7,,5,8,Hartland,Rd,937104,5.037,5.547,0,12.233508,5.8,6 +5813,1,0.756573,2,0,0,1,2,,5,8,N US 23,,931510,24.519,25.275,0,,1.02,7 +6185,-1,0.790754,0,2,0,1,2,,5,8,S US 23,,932002,24.47,25.261,0,,1.02,7 +6302,0,0.773605,1,1,0,2,5,,5,8,White Lake,Rd,931905,2.61,3.383,0,18.566527,3.7,5 +6396,0,1.031024,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,24.446,25.476,0,24.744576,3.7,5 +7381,0,1.095923,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,7.325,8.421,0,26.302159,5.8,6 +34067,1,0.751512,2,0,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +34068,-1,0.743693,0,2,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +6076,1,0.251004,2,0,0,1,2,,5,8,N US 23,,931510,24.268,24.519,0,,1.02,7 +6078,0,0.334222,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.383,3.717,0,8.021327,3.7,5 +6304,1,0.29464,1,0,0,1,2,RON,5,8,White Lake/N US 23,RAMP,931907,0,0.295,0,,1.09,4 +6394,-1,0.374285,0,2,0,1,2,,5,8,S US 23,,932002,24.096,24.47,0,,1.02,7 +6903,1,0.265402,1,0,0,1,2,ROF,5,8,S US 23/White Lake,RAMP,932203,0,0.265,0,,2.24,5 +5140,0,0.204072,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.816,4.02,0,4.89772,3.7,5 +5987,1,0.181664,1,0,0,1,2,ROF,5,8,N US 23/White Lake,RAMP,931906,0,0.182,0,,2.24,5 +6902,1,0.17388,1,0,0,1,2,RON,5,8,White Lake/S US 23,RAMP,932202,0,0.174,0,,1.09,4 +6818,0,0.022372,1,1,0,2,5,,5,8,White Lake,Rd,931905,4.02,4.043,0,0.536924,3.7,5 +5815,0,0.08676,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.717,3.804,0,2.082252,3.7,5 +5593,0,0.012652,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.804,3.816,0,0.30365,3.7,5 +34105,0,0.600079,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19982,0,0.014274,1,1,0,2,5,,,8,Shiawassee,Ave,3251563,1.262,1.276,0,0.342584,3.7,5 +11031,0,0.187272,1,1,0,2,7,,,8,Shiawassee,Ave,1530104,0.046,0.233,0,4.494532,5.8,6 +11028,0,0.184768,1,1,0,2,7,,,8,Shiawassee,Ave,1530104,0.236,0.421,0,4.434433,5.8,6 +8096,0,0.503183,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,9.332,9.835,0,12.076399,3.7,5 +26908,0,1.036778,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.882683,0.15,4 +8090,0,0.847796,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,9.835,10.683,0,20.347109,3.7,5 +6817,0,0.053527,1,1,0,2,5,,5,8,White Lake,Rd,931905,1.388,1.441,0,1.284645,3.7,5 +34064,0,0.652562,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34107,0,0.722954,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19976,0,0.069244,1,1,0,2,7,,5,8,Hartland,Rd,3251928,0,0.069,0,1.661854,5.8,6 +2667,0,1.024176,1,1,0,2,5,GRV,5,3,Rose Center,Rd,649409,1.099,2.123,0,24.580213,5.55,5 +19980,0,1.034459,1,1,0,2,5,,5,3,Fenton,Rd,3251564,1.151,2.186,0,24.827004,3.7,5 +20998,0,1.098694,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,14.737,15.835,0,26.368664,3.7,5 +26909,0,1.073802,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.771251,0.15,4 +26910,0,0.764417,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.346012,0.15,4 +2669,0,1.099832,1,1,0,2,5,GRV,5,3,Rose Center,Rd,649409,0,1.099,0,26.395958,5.55,5 +20999,0,1.502551,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,13.235,14.737,0,36.061226,3.7,5 +19981,0,1.100123,1,1,0,2,5,,5,3,Holly,Rd,3251564,0.052,1.151,0,26.402942,3.7,5 +26912,0,1.567096,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.610304,0.15,4 +2481,0,0.512579,1,1,0,2,4,,5,3,Milford,Rd,679302,3.383,3.895,0,12.301904,3,4 +2663,0,0.499533,1,1,0,2,5,,5,3,Academy,,649503,0.367,0.866,0,11.98878,3.7,5 +3091,0,1.050585,1,1,0,2,5,,5,3,Fish Lake,Rd,649104,6.604,7.654,0,25.214029,3.7,5 +19979,0,1.109481,1,1,0,2,5,,5,3,Fenton,Rd,3251564,2.186,3.295,0,26.627546,3.7,5 +2571,0,0.297304,1,1,0,2,4,,4,3,Broad,,650710,0,0.297,0,7.135303,4.5,4.5 +3505,0,0.131604,1,1,0,2,5,,4,3,Oakland,,651008,0,0.132,0,3.158495,5.8,4.5 +3506,0,0.262017,1,1,0,2,5,,4,3,Academy,Rd,651002,0,0.262,0,6.288413,5.8,4.5 +2542,0,0.114638,1,1,0,2,7,,4,3,Maple,,650805,0,0.115,0,2.75132,6.55,4.5 +2563,0,0.24808,1,1,0,2,4,,4,3,Broad,,650710,0.297,0.545,0,5.953909,4.5,4.5 +3138,0,0.251705,1,1,0,2,7,,4,3,Saginaw,,650602,0.056,0.308,0,6.04092,6.55,4.5 +3407,0,0.118714,1,1,0,2,5,,4,3,Oakland,,651008,0.132,0.25,0,2.849134,5.8,4.5 +3404,0,0.06991,1,1,0,2,7,,4,3,Michigan,,651207,0,0.07,0,1.67784,6.55,4.5 +2552,0,0.064149,1,1,0,2,7,,4,3,Sherman,,650802,0.124,0.188,0,1.539565,6.55,4.5 +3082,0,0.073724,2,2,0,2,4,,4,3,Saginaw,,650602,0.308,0.381,0,1.769387,4.5,4.5 +2517,0,0.062226,1,1,0,2,4,,4,3,Maple,,650805,0.115,0.177,0,1.493427,4.5,4.5 +2523,0,1.795292,1,1,0,2,5,GRV,5,3,Belford,Rd,649602,0.51,2.305,0,43.087008,5.55,5 +2662,0,2.080217,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,0,2.08,0,49.925205,3,4 +21063,0,0.999842,1,1,0,2,4,,5,3,Holly,Rd,4410127,0.501,1.5,0,23.996215,3,4 +27100,0,1.293909,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,31.053823,0.15,4 +28610,0,1.5851,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,38.042393,0.15,4 +27099,0,1.855646,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,44.53551,0.15,4 +2582,0,0.995906,1,1,0,2,5,GRV,5,3,Quick,Rd,649505,0,0.996,0,23.901732,5.55,5 +2661,0,0.591164,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,2.08,2.671,0,14.187939,3,4 +3059,0,0.60188,1,1,0,2,5,,5,3,Fish Lake,Rd,649104,8.555,9.156,0,14.44512,3.7,5 +21064,0,0.164607,1,1,1,2,4,,4,3,Holly,Rd,4410127,0.336,0.501,0,3.95056,4.5,4.5 +26936,0,0.04544,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.090569,0.15,4 +27375,0,0.364006,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.736155,0.15,4 +2659,0,0.418512,1,1,0,2,4,,4,3,Grange Hall,Rd,649504,2.671,3.089,0,10.044283,4.5,4.5 +2819,0,0.571425,2,2,0,2,4,,4,3,Saginaw,,650602,0.743,1.314,0,13.71419,4.5,4.5 +26935,0,0.728293,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.479041,0.15,4 +26932,0,0.17257,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.141683,0.15,4 +2852,0,0.188625,2,2,0,2,4,,4,3,Saginaw,,650602,0.555,0.743,0,4.526998,4.5,4.5 +2656,0,0.104361,1,1,1,2,4,,4,3,Grange Hall,Rd,649504,3.089,3.193,0,2.504664,4.5,4.5 +21065,0,0.336041,1,1,1,2,4,,4,3,Holly,Rd,4410127,0,0.336,0,8.064985,4.5,4.5 +21061,0,1.46469,1,1,0,2,4,,5,3,Holly,Rd,4410127,2.279,3.743,0,35.152559,3,4 +21062,0,0.77945,1,1,0,2,4,,5,3,Holly,Rd,4410127,1.5,2.279,0,18.706794,3,4 +34108,0,0.931477,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19978,0,1.258343,1,1,0,2,5,GRV,5,3,Thompson,Rd,3251565,0.383,1.64,0,30.200232,5.55,5 +34081,0,1.14127,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +477,0,0.500129,1,1,0,2,4,,4,3,Wise,Rd,630008,0,0.5,0,12.003098,4.5,4.5 +518,0,0.914966,1,1,0,2,4,,4,3,Bogie Lake,Rd,630007,0,0.915,0,21.959179,4.5,4.5 +698,0,0.580369,1,1,0,2,5,,4,3,Carey,Rd,630309,0,0.58,0,13.928862,5.8,4.5 +1012,0,0.19248,1,1,0,2,5,,4,3,Lake,Dr,631101,0.394,0.587,0,4.619511,5.8,4.5 +1033,0,0.539552,1,1,0,2,5,,4,3,Willow,Rd,629505,1.962,2.501,0,12.949259,5.8,4.5 +1138,0,1.172071,1,1,0,2,4,,4,3,Glengary,Rd,630108,2.294,3.466,0,28.129695,4.5,4.5 +1188,0,0.187961,1,1,1,2,3,,4,3,Union Lake,Rd,629405,1.263,1.451,0,4.511056,3.7,5 +1277,0,0.16335,1,1,0,2,4,,4,3,Sleeth,Rd,629507,3.734,3.897,0,3.920388,4.5,4.5 +1334,0,0.360847,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,0.752,1.113,0,8.660339,4.5,4.5 +1375,0,0.670391,1,1,0,2,4,,4,3,Hiller,Rd,632709,0.502,1.173,0,16.089383,4.5,4.5 +37667,0,0.953051,1,1,0,2,5,,4,3,Oxbow Lake,Rd,630010,0.06,1.013,0,22.873223,5.8,4.5 +1981,0,0.326537,1,1,0,2,5,,4,3,Carroll Lake,Rd,629303,0.171,0.498,0,7.836894,5.8,4.5 +2042,0,0.784078,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,0.549,1.333,0,18.817863,4.5,4.5 +2096,0,0.741714,1,1,0,2,5,,4,3,Ladd,Rd,629608,0.537,1.278,0,17.801143,5.8,4.5 +2184,0,1.385346,2,2,1,2,3,,4,3,Highland,Rd,648906,9.938,11.323,0,33.248311,3.7,5 +2439,0,0.49601,1,1,0,2,4,,3,3,West Maple,Rd,657406,6.93,7.426,0,11.904241,6,4.5 +2477,0,1.303272,1,1,0,2,5,,4,3,Teggerdine,Rd,650405,0,1.303,0,31.278525,5.8,4.5 +2695,-1,1.416117,0,3,0,1,1,,4,3,W I 96,,657304,8.639,10.055,0,,0.8,7.5 +2771,0,1.252545,1,1,0,2,4,,5,3,White Lake,Rd,649303,4.871,6.124,0,30.061083,3,4 +2787,0,1.0784,1,1,0,2,4,,5,3,Milford,Rd,660504,0.356,1.434,0,25.881603,3,4 +2877,1,0.765205,3,0,0,1,1,,4,3,E I 96,,657303,7.931,8.696,0,,0.8,7.5 +3009,0,1.232689,1,1,0,2,3,,4,3,Pontiac,Trl,657404,5.187,6.419,0,29.584548,3.7,5 +3086,0,0.998559,1,1,0,2,5,,5,3,Duck Lake,Rd,661010,0,0.998,0,23.965423,3.7,5 +3204,0,0.311282,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,1.025,1.336,0,7.470767,3.7,5 +3868,0,0.646257,1,1,0,2,4,,4,3,Park,Dr,705704,2.327,2.973,0,15.510165,4.5,4.5 +4886,0,0.183436,1,1,0,2,7,,4,3,Keith,Rd,709003,0.319,0.503,0,4.402457,6.55,4.5 +19803,0,0.44979,2,2,1,2,4,,4,3,Grand River,Ave,4104142,10.289,10.739,0,10.794964,4.5,4.5 +19838,0,0.504656,1,1,0,2,4,,4,3,Commerce,Rd,4104140,9.686,10.19,0,12.111753,4.5,4.5 +25713,0,0.829942,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.918609,0.15,4 +25719,0,0.217961,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,5.231063,0.15,4 +25720,0,0.737997,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.711936,0.15,4 +25722,0,0.329719,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.913257,0.15,4 +25724,0,1.356825,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,32.563811,0.15,4 +25737,0,0.51249,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.299754,0.15,4 +25738,0,0.866686,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.800472,0.15,4 +26880,0,0.512616,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.302779,0.15,4 +26954,0,1.968445,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,47.242682,0.15,4 +27107,0,1.401789,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.642926,0.15,4 +27111,0,0.426729,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.241501,0.15,4 +27119,0,0.650182,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.604357,0.15,4 +27120,0,0.576586,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.838067,0.15,4 +27123,0,0.64146,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.39503,0.15,4 +27137,0,0.68766,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.503839,0.15,4 +27140,0,0.627794,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.067061,0.15,4 +27195,0,0.866067,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.785616,0.15,4 +30230,0,0.828249,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.877975,0.15,4 +730,0,0.976402,1,1,0,2,5,,4,3,Sleeth,Rd,629507,0.024,1,0,23.43365,5.8,4.5 +821,0,0.397614,1,1,0,2,4,,4,3,Benstein,Rd,629509,0,0.398,0,9.542737,4.5,4.5 +1246,0,0.502206,1,1,0,2,4,,4,3,Wixom,Rd,631910,0.499,1.001,0,12.052945,4.5,4.5 +1913,0,0.974422,1,1,0,2,4,,5,3,Wixom,Rd,631910,2.557,3.531,0,23.386133,3,4 +2040,0,0.390107,1,1,0,2,4,,4,3,Beck,Rd,629604,0.288,0.677,0,9.362561,4.5,4.5 +2634,0,0.569091,1,1,0,2,4,,4,3,West Maple,Rd,657406,5.084,5.653,0,13.658183,4.5,4.5 +2649,1,3.803202,3,0,0,1,1,,4,3,E I 96,,657303,3.153,6.955,0,,0.8,7.5 +2965,0,0.959447,1,1,0,2,4,,5,3,Milford,Rd,656804,4.189,5.148,0,23.026717,3,4 +3124,0,0.998138,1,1,0,2,5,GRV,5,3,Hill,Rd,657608,0,0.998,0,23.955301,5.55,5 +3168,0,1.38505,1,1,0,2,4,,4,3,Pontiac,Trl,657404,2.108,3.492,0,33.241201,4.5,4.5 +3428,0,0.80482,1,1,0,2,4,,4,3,West Maple,Rd,657406,6.126,6.93,0,19.315691,4.5,4.5 +3516,-1,3.596748,0,3,0,1,1,,4,3,W I 96,,657304,3.179,6.775,0,,0.8,7.5 +4009,0,0.85999,1,1,0,2,7,,4,3,Charms,Rd,705705,0,0.86,0,20.639751,6.55,4.5 +19812,0,1.058822,1,1,0,2,4,,4,3,Grand River,Ave,4104142,6.039,7.097,0,25.411737,4.5,4.5 +19842,0,1.05651,1,1,0,2,4,,4,3,Commerce,Rd,4104140,6.589,7.645,0,25.356251,4.5,4.5 +25975,0,1.50198,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.047516,0.15,4 +26998,0,1.200954,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.822895,0.15,4 +26999,0,1.259251,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,30.222027,0.15,4 +27150,0,1.128157,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.075763,0.15,4 +27159,0,1.235771,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,29.658508,0.15,4 +27162,0,0.659108,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.818599,0.15,4 +27163,0,0.152891,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.669391,0.15,4 +27164,0,0.149062,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.577476,0.15,4 +3019,0,0.636648,1,1,0,2,3,,5,3,Milford,Rd,656804,2.019,2.655,0,15.279556,1.7,4 +3498,0,0.998559,1,1,0,2,4,,4,3,Pontiac,Trl,657404,1.109,2.108,0,23.965413,4.5,4.5 +19814,0,0.819147,1,1,0,2,4,,4,3,Grand River,Ave,4104142,4.956,5.775,0,19.659522,4.5,4.5 +24622,0,1.510357,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.248577,0.15,4 +27156,0,0.429516,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.308387,0.15,4 +27157,0,0.793806,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.05135,0.15,4 +30229,0,0.74839,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.96137,0.15,4 +2775,0,1.023073,1,1,0,2,3,,5,3,Milford,Rd,656804,0.996,2.019,0,24.553742,1.7,4 +3055,0,0.250747,1,1,0,2,5,,5,3,11 Mile,Rd,656603,2.559,2.81,0,6.017924,3.7,5 +3057,0,0.363017,1,1,0,2,3,,5,3,Milford,Rd,656804,0.633,0.996,0,8.712402,1.7,4 +2955,0,0.437637,1,1,0,2,5,GRV,4,3,Hill,Rd,656805,2.69,3.127,0,10.503294,6.55,4.5 +3016,0,0.240579,2,2,0,2,3,,4,3,Milford,Rd,656804,3.448,3.688,0,5.773899,3.7,5 +3510,0,1.07719,1,1,0,2,4,,4,3,Pontiac,Trl,657404,0,1.077,0,25.852555,4.5,4.5 +19815,0,0.417929,1,1,1,2,4,,4,3,Grand River,Ave,4104142,3.885,4.302,0,10.030291,4.5,4.5 +2749,0,0.4993,1,1,0,2,3,,5,3,Milford,Rd,656804,2.655,3.154,0,11.983204,1.7,4 +2540,-1,0.327353,0,3,0,1,1,,4,3,W I 96,,657304,2.852,3.179,0,,0.8,7.5 +2706,0,0.098138,2,2,1,2,4,,4,3,Milford,Rd,656804,4.091,4.189,0,2.355316,4.5,4.5 +2919,1,0.314042,3,0,0,1,1,,4,3,E I 96,,657303,2.839,3.153,0,,0.8,7.5 +3844,1,0.377454,1,0,0,1,1,ROF,4,3,W I 96/N Milford,RAMP,683801,0,0.377,0,,2.24,5 +20793,1,0.280773,1,0,0,1,1,RON,4,3,N Milford/E I 96,RAMP,4405372,0,0.281,0,,1.09,4 +2437,-1,0.338487,0,3,0,1,1,,4,3,W I 96,,657304,2.514,2.852,0,,0.8,7.5 +2665,1,0.230882,3,0,0,1,1,,4,3,E I 96,,657303,2.609,2.839,0,,0.8,7.5 +2969,0,0.199537,2,2,0,2,3,,4,3,Milford,Rd,656804,3.884,4.084,0,4.788888,3.7,5 +3266,1,0.326445,1,0,0,1,1,ROF,4,3,E I 96/Milford,RAMP,657403,0,0.326,0,,2.24,5 +3843,1,0.351968,1,0,0,1,1,RON,4,3,Milford/W I 96,RAMP,683802,0,0.352,0,,1.09,4 +20549,1,0.262089,1,0,0,1,1,ROF,4,3,W I 96/S Milford,RAMP,4407799,0,0.262,0,,2.24,5 +3576,1,0.271446,1,0,0,1,1,RON,4,3,S Milford/E I 96,RAMP,657402,0,0.271,0,,1.09,4 +2748,0,0.040611,2,2,0,2,3,,4,3,Milford,Rd,656804,3.844,3.884,0,0.974668,3.7,5 +2711,0,0.003544,2,2,0,2,3,,4,3,Milford,Rd,656804,4.084,4.087,0,0.085052,3.7,5 +2966,0,0.003936,2,2,0,2,3,,4,3,Milford,Rd,656804,4.087,4.091,0,0.094461,3.7,5 +2697,0,0.605034,1,1,0,2,5,,4,3,Hill,Rd,656805,2.085,2.69,0,14.520819,5.8,4.5 +27168,0,0.692542,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.62102,0.15,4 +3182,0,0.032534,1,1,0,2,4,,4,3,Pontiac,Trl,657404,1.077,1.109,0,0.780824,4.5,4.5 +27148,0,0.725145,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.403471,0.15,4 +27158,0,0.808659,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.407819,0.15,4 +19813,0,0.264223,1,1,0,2,4,,4,3,Grand River,Ave,4104142,5.775,6.039,0,6.341358,4.5,4.5 +1397,0,0.73566,1,1,0,2,4,,5,3,Wixom,Rd,631910,3.531,4.267,0,17.655842,3,4 +2699,0,0.978782,1,1,0,2,4,,4,3,Milford,Rd,656804,7.169,8.148,0,23.490774,4.5,4.5 +2830,0,2.033656,1,1,0,2,5,GRV,5,3,Hill,Rd,657608,0.998,3.031,0,48.807753,5.55,5 +2901,0,0.332613,1,1,0,2,4,,4,3,Atlantic,St,660202,0,0.333,0,7.98271,4.5,4.5 +19846,0,0.577021,1,1,0,2,4,,4,3,Commerce,St,4104140,4.602,5.179,0,13.848495,4.5,4.5 +25731,0,0.304099,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.298378,0.15,4 +26977,0,1.551322,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.231736,0.15,4 +27149,0,0.479699,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.512768,0.15,4 +27169,0,1.152524,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.660579,0.15,4 +27170,0,0.649644,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.591466,0.15,4 +27173,0,0.431388,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.353324,0.15,4 +27359,0,1.89242,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,45.41809,0.15,4 +2705,0,0.998711,1,1,0,2,4,,5,3,Milford,Rd,656804,5.148,6.147,0,23.969075,3,4 +2959,0,1.02271,1,1,0,2,4,,5,3,Milford,Rd,656804,6.147,7.169,0,24.545036,3,4 +2958,0,0.284537,1,1,0,2,4,,4,3,Milford,Rd,656804,8.148,8.432,0,6.828878,4.5,4.5 +3125,0,0.458495,1,1,0,2,5,,4,3,Main,St,660502,0.035,0.493,0,11.003868,5.8,4.5 +3380,0,0.29501,1,1,0,2,4,,4,3,General Motors,Rd,661208,2.521,2.816,0,7.080236,4.5,4.5 +25728,0,0.249932,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.998379,0.15,4 +25729,0,0.365035,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.760836,0.15,4 +27174,0,0.447532,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.740772,0.15,4 +27176,0,0.272711,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.545053,0.15,4 +27178,0,0.255622,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.134922,0.15,4 +27180,0,0.236019,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.664452,0.15,4 +27358,0,0.448044,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.753048,0.15,4 +2982,0,0.738288,1,1,0,2,5,GRV,5,3,Hill,Rd,657608,3.031,3.769,0,17.71891,5.55,5 +27179,0,0.36567,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.776072,0.15,4 +2970,0,0.034557,1,1,0,2,5,,4,3,Main,St,660502,0,0.035,0,0.829362,5.8,4.5 +3064,0,0.150165,1,1,0,2,4,,4,3,Main,St,660502,0.903,1.053,0,3.603971,4.5,4.5 +3388,0,0.20858,1,1,0,2,4,,4,3,Huron,St,660605,0.275,0.484,0,5.005923,4.5,4.5 +3482,0,0.239868,1,1,0,2,5,,4,3,1st,St,660203,0.05,0.29,0,5.756832,5.8,4.5 +19848,0,0.187096,1,1,0,2,4,,4,3,Commerce,St,4104140,4.367,4.554,0,4.490304,4.5,4.5 +25730,0,0.38396,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.215039,0.15,4 +25732,0,0.394188,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.460519,0.15,4 +2921,0,0.243099,1,1,0,2,4,,4,3,Huron,St,660605,0.032,0.275,0,5.834374,4.5,4.5 +3387,0,0.285665,1,1,0,2,4,,4,3,Main,St,660502,0.617,0.903,0,6.855963,4.5,4.5 +3229,0,0.032319,1,1,0,2,4,,4,3,General Motors,Rd,660605,0,0.032,0,0.775667,4.5,4.5 +2832,0,0.124494,1,1,0,2,5,,4,3,Main,St,660502,0.493,0.617,0,2.987866,5.8,4.5 +2528,0,0.184536,1,1,0,2,4,,4,3,Milford,Rd,660504,0,0.185,0,4.428869,4.5,4.5 +3076,0,0.171331,1,1,0,2,4,,4,3,Summit,St,660504,0.185,0.356,0,4.111952,4.5,4.5 +19849,0,0.272221,1,1,0,2,4,,4,3,Commerce,Rd,4104140,4.095,4.367,0,6.533308,4.5,4.5 +19850,0,0.083349,1,1,0,2,4,,4,3,Commerce,Rd,4104140,4.012,4.095,0,2.000368,4.5,4.5 +2818,0,0.037066,1,1,0,2,4,,4,3,Main,St,660502,1.053,1.09,0,0.889596,4.5,4.5 +2492,0,0.050198,1,1,0,2,5,,4,3,1st,St,660203,0,0.05,0,1.20474,5.8,4.5 +3149,0,0.14159,1,1,0,2,4,,4,3,River,Dr,660204,0,0.142,0,3.398169,4.5,4.5 +3268,0,0.02296,1,1,0,2,4,,4,3,River,Dr,660204,0.142,0.165,0,0.551037,4.5,4.5 +20601,-1,0.05867,0,1,0,2,5,,4,3,River/1st Cutoff,,4401618,0,0.059,0,1.408081,5.8,4.5 +25734,0,0.17488,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.19713,0.15,4 +19847,0,0.047759,1,1,0,2,4,,4,3,Commerce,St,4104140,4.554,4.602,0,1.146221,4.5,4.5 +27172,0,1.651262,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,39.63028,0.15,4 +3065,0,0.517547,1,1,0,2,7,GRV,5,3,Charms,Rd,660802,0,0.517,0,12.421135,5.55,5 +617,0,0.996976,1,1,0,2,4,,5,3,Wixom,Trl,631910,5,5.997,0,23.92742,3,4 +2147,0,0.758504,1,1,0,2,4,,5,3,Wixom,Trl,631910,5.997,6.755,0,18.204103,3,4 +19844,0,0.754231,1,1,0,2,4,,5,3,Commerce,Rd,4104140,5.584,6.338,0,18.101549,3,4 +21907,0,0.643653,1,1,0,2,5,,4,3,Duck Lake,Rd,4413156,0,0.644,0,15.447677,5.8,4.5 +19845,0,0.405183,1,1,0,2,4,,4,3,Commerce,Rd,4104140,5.179,5.584,0,9.724395,4.5,4.5 +2776,0,0.125746,1,1,0,2,4,,4,3,Atlantic,St,660202,0.333,0.458,0,3.017906,4.5,4.5 +1068,0,0.733878,1,1,0,2,4,,5,3,Wixom,Rd,631910,4.267,5,0,17.613067,3,4 +1169,0,0.023698,1,1,0,2,5,,4,3,Sleeth,Rd,629507,0,0.024,0,0.568741,5.8,4.5 +19843,0,0.251475,1,1,0,2,4,,5,3,Commerce,Rd,4104140,6.338,6.589,0,6.035411,3,4 +21905,0,0.381146,1,1,0,2,5,,4,3,Duck Lake,Rd,4413156,0.644,1.025,0,9.147505,5.8,4.5 +558,0,0.05919,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.543,2.602,0,1.420549,3.7,5 +1881,0,0.619238,1,1,0,2,5,,4,3,12 Mile,Rd,639102,0,0.619,0,14.861708,5.8,4.5 +2622,0,0.310388,1,1,1,2,4,,4,3,Beck,Rd,662105,0.361,0.671,0,7.449318,4.5,4.5 +2648,1,0.547452,3,0,0,1,1,,4,3,E I 96,,657303,6.955,7.502,0,,0.8,7.5 +2823,0,0.600269,1,1,1,2,3,,4,3,Pontiac,Trl,657404,4.181,4.781,0,14.406466,3.7,5 +2845,-1,0.406175,0,3,0,1,1,,4,3,W I 96,,657304,7.607,8.013,0,,0.8,7.5 +2888,0,0.725039,1,1,0,2,5,,4,3,11 Mile,Rd,661506,0,0.725,0,17.400929,5.8,4.5 +3885,0,0.710141,1,1,0,2,5,,4,3,West,Rd,705704,0,0.71,0,17.043384,5.8,4.5 +19807,0,0.655215,2,2,1,2,4,,4,3,Grand River,Ave,4104142,8.324,8.979,0,15.725152,4.5,4.5 +21902,0,0.50716,1,1,1,2,4,,4,3,Park,Dr,4413388,0,0.507,0,12.17184,4.5,4.5 +25979,0,0.676739,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.241745,0.15,4 +27154,0,0.509295,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.223081,0.15,4 +27166,0,0.579438,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.90652,0.15,4 +27167,0,0.545281,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.086755,0.15,4 +27187,0,0.530668,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.73603,0.15,4 +27189,0,0.580394,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.929461,0.15,4 +27190,0,0.477778,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.466668,0.15,4 +1125,0,0.456613,1,1,1,2,4,,4,3,Wixom,Rd,639101,1.244,1.701,0,10.958714,4.5,4.5 +1596,0,0.686751,1,1,0,2,4,,4,3,Napier,Rd,621905,3.297,3.983,0,16.48202,4.5,4.5 +19810,0,0.330048,1,1,0,2,4,,4,3,Grand River,Ave,4104142,7.548,7.878,0,7.921143,4.5,4.5 +25978,0,0.704536,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.908866,0.15,4 +27185,0,0.324242,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.781806,0.15,4 +25977,0,0.585863,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.060712,0.15,4 +1290,0,0.307548,1,1,0,2,4,,4,3,Napier,Rd,621905,2.989,3.297,0,7.38115,4.5,4.5 +19811,0,0.450588,1,1,0,2,4,,4,3,Grand River,Ave,4104142,7.097,7.548,0,10.81411,4.5,4.5 +29793,0,0.49456,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.869429,0.15,4 +2121,0,0.374632,1,1,0,2,4,,4,3,Napier,Rd,621905,4.007,4.382,0,8.991164,4.5,4.5 +1113,0,0.02406,1,1,0,2,4,,4,3,Napier,Rd,621905,3.983,4.007,0,0.577435,4.5,4.5 +27184,0,0.011428,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,0.274264,0.15,4 +1608,0,0.49474,1,1,0,2,4,,4,3,Wixom,Rd,639101,0.75,1.244,0,11.873764,4.5,4.5 +459,0,0.583115,1,1,1,2,4,,4,3,Wixom,Rd,639101,1.701,2.284,0,13.99476,4.5,4.5 +37172,0,0.024848,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.602,2.627,0,0.596363,3.7,5 +3137,-1,0.832562,0,3,0,1,1,,4,3,W I 96,,657304,6.775,7.607,0,,0.8,7.5 +19808,0,0.180094,2,2,1,2,4,,4,3,Grand River,Ave,4104142,8.144,8.324,0,4.322244,4.5,4.5 +2007,0,0.13616,2,2,1,2,4,,4,3,Wixom,Rd,639101,2.284,2.42,0,3.267836,4.5,4.5 +37186,1,0.369582,1,0,0,1,1,RON,4,3,SB Wixom/W I 96,RAMP,664401,0.061,0.43,0,,1.09,4 +37187,0,0.164393,2,2,1,2,4,,4,3,Beck,Rd,656605,3.679,3.843,0,3.945436,4.5,4.5 +37173,0,0.203451,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.627,2.83,0,4.882833,3.7,5 +37185,1,0.067708,1,0,0,1,1,RON,4,3,NB Wixom/W I 96,RAMP,4463299,0,0.068,0,,1.09,4 +19809,0,0.266585,1,1,0,2,4,,4,3,Grand River,Ave,4104142,7.878,8.144,0,6.398036,4.5,4.5 +1016,0,0.051895,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.491,2.543,0,1.245473,3.7,5 +1490,0,0.071005,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.42,2.491,0,1.704118,3.7,5 +319,0,0.540528,2,2,1,2,3,,4,3,Wixom,Rd,639101,3.633,4.173,0,12.972673,3.7,5 +2879,0,0.419983,1,2,1,2,4,,4,3,Pontiac,Trl,657404,3.637,4.056,0,10.079586,4.5,4.5 +27160,0,0.607762,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.586296,0.15,4 +27161,0,0.53563,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.855123,0.15,4 +27186,0,0.533678,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.808275,0.15,4 +3179,0,0.144568,1,2,1,2,4,,4,3,Pontiac,Trl,657404,3.492,3.637,0,3.469643,4.5,4.5 +1221,0,0.233072,2,2,1,2,3,,4,3,Wixom,Rd,639101,3.244,3.477,0,5.593717,3.7,5 +27131,0,0.486788,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.682911,0.15,4 +27165,0,0.523512,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.564295,0.15,4 +1706,0,0.414132,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.83,3.244,0,9.939178,3.7,5 +781,0,0.155978,2,2,1,2,3,,4,3,Wixom,Rd,639101,3.477,3.633,0,3.743476,3.7,5 +1405,0,0.262176,1,1,1,2,4,,4,3,Wixom,Rd,631910,0,0.262,0,6.292236,4.5,4.5 +27196,0,0.553538,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.284914,0.15,4 +3115,0,0.124379,2,2,0,2,4,,4,3,Pontiac,Trl,657404,4.056,4.181,0,2.985104,4.5,4.5 +943,0,0.236852,1,1,1,2,4,,4,3,Wixom,Rd,631910,0.262,0.499,0,5.684458,4.5,4.5 +2608,0,0.274213,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,0.275,0.55,0,6.581105,3.7,5 +3013,0,0.423601,1,1,0,2,5,,4,3,11 Mile,Rd,661506,0.996,1.42,0,10.166427,5.8,4.5 +3022,0,0.501334,1,1,1,2,4,,4,3,Beck,Rd,656605,3.178,3.679,0,12.032018,4.5,4.5 +3308,0,0.243727,1,1,0,2,5,,4,3,Taft,Rd,656608,2.999,3.243,0,5.849444,5.8,4.5 +19805,0,0.359757,2,2,1,2,4,,4,3,Grand River,Ave,4104142,9.224,9.584,0,8.634167,4.5,4.5 +25057,0,0.800432,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.210361,0.15,4 +27194,0,0.400531,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.612748,0.15,4 +29632,0,0.504221,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.101313,0.15,4 +29633,0,0.523598,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.566364,0.15,4 +3023,0,0.557313,1,1,0,2,4,,4,3,Beck,Rd,656605,2.446,3.003,0,13.375523,4.5,4.5 +3329,0,0.271407,1,1,0,2,5,,4,3,11 Mile,Rd,661506,0.725,0.996,0,6.51377,5.8,4.5 +25984,0,0.222772,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.346534,0.15,4 +3337,0,0.175085,1,1,1,2,4,,4,3,Beck,Rd,656605,3.003,3.178,0,4.202047,4.5,4.5 +37175,1,0.213178,1,0,0,1,1,ROF,4,3,E I 96/SB Wixom,RAMP,657005,0,0.213,0,,2.24,5 +2602,1,0.428751,3,0,0,1,1,,4,3,E I 96,,657303,7.502,7.931,0,,0.8,7.5 +2956,-1,0.626625,0,3,0,1,1,,4,3,W I 96,,657304,8.013,8.639,0,,0.8,7.5 +37183,1,0.065714,2,0,0,1,1,ROF,4,3,W I 96/NB Wixom,RAMP,664402,0.374,0.439,0,,2.24,5 +37179,1,0.126526,2,0,0,1,1,RON,4,3,SB Wixom/E I 96,RAMP,4463297,0,0.127,0,,1.09,4 +19806,0,0.245217,2,2,1,2,4,,4,3,Grand River,Ave,4104142,8.979,9.224,0,5.885214,4.5,4.5 +37184,1,0.060847,1,0,0,1,1,RON,4,3,SB Wixom/W I 96,RAMP,664401,0,0.061,0,,1.09,4 +37174,1,1.336751,3,0,0,1,1,,4,3,E I 96,,657303,8.696,10.032,0,,0.8,7.5 +37180,1,0.201345,2,0,0,1,1,RON,4,3,NB Wixom/E I 96,RAMP,4463296,0.11,0.311,0,,1.09,4 +37176,1,0.059823,2,0,0,1,1,ROF,4,3,E I 96/NB Wixom,RAMP,4463295,0,0.06,0,,2.24,5 +37177,1,0.053011,1,0,0,1,1,ROF,4,3,E I 96/SB Wixom,RAMP,657005,0.213,0.266,0,,2.24,5 +37182,1,0.072153,2,0,0,1,1,ROF,4,3,W I 96/SB Wixom,RAMP,4463298,0,0.072,0,,2.24,5 +37181,1,0.3737,2,0,0,1,1,ROF,4,3,W I 96/NB Wixom,RAMP,664402,0,0.374,0,,2.24,5 +37178,1,0.110102,1,0,0,1,1,RON,4,3,NB Wixom/E I 96,RAMP,4463296,0,0.11,0,,1.09,4 +3000,0,0.534234,1,1,0,2,5,,4,3,Taft,Rd,656608,2.465,2.999,0,12.821617,5.8,4.5 +3344,0,0.581511,1,1,0,2,5,,4,3,11 Mile,Rd,661506,1.42,2.001,0,13.956276,5.8,4.5 +25985,0,0.504026,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.096612,0.15,4 +25986,0,0.507999,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.191982,0.15,4 +3526,0,0.475322,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,0.55,1.025,0,11.40774,3.7,5 +19804,0,0.705098,2,2,1,2,4,,4,3,Grand River,Ave,4104142,9.584,10.289,0,16.922354,4.5,4.5 +29634,0,0.553083,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.273992,0.15,4 +27193,0,0.212312,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.095492,0.15,4 +2997,0,0.086985,1,1,0,2,5,,4,3,Taft,Rd,656608,3.243,3.33,0,2.087638,5.8,4.5 +27141,0,0.290266,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.966386,0.15,4 +3202,0,0.285775,1,1,1,2,4,,4,3,Beck,Rd,662105,1.316,1.602,0,6.858599,4.5,4.5 +3871,0,0.244616,1,1,0,2,4,,4,3,Park,Dr,705704,2.083,2.327,0,5.870773,4.5,4.5 +3879,0,0.519665,1,1,0,2,5,,4,3,West,Rd,705704,1.033,1.552,0,12.471959,5.8,4.5 +27171,0,0.360908,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.661783,0.15,4 +29635,0,0.306139,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.347344,0.15,4 +29889,0,0.205176,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.924218,0.15,4 +3581,0,0.315096,1,1,1,2,4,,4,3,Beck,Rd,662105,0.671,0.986,0,7.562316,4.5,4.5 +3881,0,0.218386,1,1,0,2,5,,4,3,West,Rd,705704,0.814,1.033,0,5.241269,5.8,4.5 +3882,0,0.10428,1,1,0,2,5,,4,3,West,Rd,705704,0.71,0.814,0,2.502725,5.8,4.5 +27188,0,0.231036,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.544865,0.15,4 +3524,0,0.329918,1,1,1,2,4,,4,3,Beck,Rd,662105,0.986,1.316,0,7.918025,4.5,4.5 +2822,0,0.290758,1,1,1,2,3,,4,3,Pontiac,Trl,657404,4.896,5.187,0,6.978202,3.7,5 +3280,0,0.306093,1,1,1,2,4,,4,3,Beck,Rd,662105,1.809,2.115,0,7.346236,4.5,4.5 +27191,0,0.274555,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.589324,0.15,4 +27192,0,0.312243,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.493843,0.15,4 +3111,0,0.115262,1,1,1,2,3,,4,3,Pontiac,Trl,657404,4.781,4.896,0,2.766281,3.7,5 +3594,0,0.20738,1,1,1,2,4,,4,3,Beck,Rd,662105,1.602,1.809,0,4.977113,4.5,4.5 +2139,0,0.287582,1,1,0,2,4,,4,3,Beck,Rd,629604,0,0.288,0,6.901974,4.5,4.5 +3873,0,0.531145,1,1,0,2,4,,4,3,Park,Dr,705704,1.552,2.083,0,12.747478,4.5,4.5 +21900,0,0.231101,1,1,0,2,4,,4,3,Park,Dr,4413388,0.725,0.956,0,5.546429,4.5,4.5 +27138,0,0.74194,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.806569,0.15,4 +21901,0,0.217876,1,1,1,2,4,,4,3,Park,Dr,4413388,0.507,0.725,0,5.229024,4.5,4.5 +1487,0,0.394482,1,1,0,2,5,,4,3,Lake,Dr,631101,0,0.394,0,9.467556,5.8,4.5 +27130,0,0.285679,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.856305,0.15,4 +1061,0,0.777671,1,1,0,2,5,,4,3,Sleeth,Rd,629507,1.295,2.073,0,18.664095,5.8,4.5 +1811,0,0.498691,1,1,0,2,4,,4,3,Benstein,Rd,629509,2.001,2.5,0,11.968592,4.5,4.5 +2119,0,1.948065,1,1,0,2,4,,4,3,Glengary,Rd,630108,0,1.947,0,46.75355,4.5,4.5 +2458,0,0.472957,1,1,0,2,4,,4,3,West Maple,Rd,657406,5.653,6.126,0,11.350974,4.5,4.5 +3929,0,0.370409,1,1,0,2,5,,4,3,Loon Lake,Rd,705506,0.56,0.93,0,8.889805,5.8,4.5 +19840,0,1.01392,1,1,0,2,4,,4,3,Commerce,Rd,4104140,7.671,8.685,0,24.334082,4.5,4.5 +27084,0,1.485048,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.641162,0.15,4 +27151,0,1.284851,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,30.836414,0.15,4 +27153,0,0.563331,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,13.519947,0.15,4 +27198,0,0.562593,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.502239,0.15,4 +1892,0,0.342406,1,1,0,2,4,,4,3,Wixom,Rd,631910,1.655,1.997,0,8.217742,4.5,4.5 +3625,0,0.537506,1,1,0,2,7,,4,3,Charms,Rd,705705,0.86,1.397,0,12.900149,6.55,4.5 +27155,0,0.449188,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.780514,0.15,4 +27197,0,0.473695,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.368692,0.15,4 +29789,0,0.141792,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.403017,0.15,4 +798,0,0.498719,1,1,0,2,4,,4,3,Wixom,Rd,631910,1.001,1.499,0,11.96926,4.5,4.5 +29790,0,0.668897,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.053533,0.15,4 +333,0,0.15565,1,1,0,2,4,,4,3,Wixom,Rd,631910,1.499,1.655,0,3.735602,4.5,4.5 +819,0,0.498136,1,1,0,2,4,,5,3,Wixom,Rd,631910,1.997,2.495,0,11.955275,3,4 +3930,0,0.559715,1,1,0,2,5,,4,3,Loon Lake,Rd,705506,0,0.56,0,13.433156,5.8,4.5 +353,0,0.062102,1,1,0,2,4,,5,3,Wixom,Rd,631910,2.495,2.557,0,1.490439,3,4 +27152,0,0.993889,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.853333,0.15,4 +27145,0,0.500677,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.016252,0.15,4 +1533,0,0.295543,1,1,0,2,5,,4,3,Sleeth,Rd,629507,1,1.295,0,7.093027,5.8,4.5 +27147,0,0.560849,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.460378,0.15,4 +19841,0,0.025976,1,1,0,2,4,,4,3,Commerce,Rd,4104140,7.645,7.671,0,0.623414,4.5,4.5 +1251,0,0.469236,1,1,0,2,4,,4,3,Benstein,Rd,629509,1.007,1.476,0,11.261657,4.5,4.5 +3914,0,0.422298,1,1,0,2,5,,4,3,Loon Lake,Rd,705506,1.437,1.86,0,10.135158,5.8,4.5 +27116,0,0.726992,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.447803,0.15,4 +29791,0,0.890424,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.370185,0.15,4 +29888,0,0.229688,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.512514,0.15,4 +3926,0,0.50767,1,1,0,2,5,,4,3,Loon Lake,Rd,705506,0.93,1.437,0,12.184068,5.8,4.5 +356,0,0.232981,1,1,0,2,4,,4,3,Benstein,Rd,629509,0.398,0.63,0,5.59154,4.5,4.5 +1598,0,0.504618,1,1,0,2,5,,4,3,McCoy,Rd,629610,0,0.504,0,12.110823,5.8,4.5 +27117,0,0.254537,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.108891,0.15,4 +29792,0,0.771954,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.526907,0.15,4 +1740,0,0.376441,1,1,0,2,4,,4,3,Benstein,Rd,629509,0.63,1.007,0,9.034586,4.5,4.5 +3909,0,0.276946,1,1,0,2,5,,4,3,Loon Lake,Rd,705506,1.86,2.136,0,6.6467,5.8,4.5 +27115,0,0.126573,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.037752,0.15,4 +801,0,0.52581,1,1,0,2,4,,4,3,Benstein,Rd,629509,1.476,2.001,0,12.619452,4.5,4.5 +1618,0,0.346477,1,1,0,2,4,,4,3,Glengary,Rd,630108,1.947,2.294,0,8.315443,4.5,4.5 +270,0,0.401178,1,1,0,2,5,,4,3,Sleeth,Rd,629507,2.814,3.215,0,9.628283,5.8,4.5 +609,0,0.913602,1,1,0,2,4,,4,3,Benstein,Rd,629509,3.258,4.171,0,21.926445,4.5,4.5 +1644,0,0.324865,1,1,0,2,5,,4,3,Bass Lake,Rd,629506,0.771,1.096,0,7.796765,5.8,4.5 +2111,0,0.771263,1,1,0,2,5,,4,3,Bass Lake,Rd,629506,0,0.771,0,18.510302,5.8,4.5 +19839,0,1.001348,1,1,0,2,4,,4,3,Commerce,Rd,4104140,8.685,9.686,0,24.032347,4.5,4.5 +25739,0,0.881723,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.161343,0.15,4 +30232,0,0.926428,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.234275,0.15,4 +611,0,0.74144,1,1,0,2,5,,4,3,Sleeth,Rd,629507,2.073,2.814,0,17.794571,5.8,4.5 +491,0,0.54927,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,0,0.549,0,13.182482,4.5,4.5 +853,0,0.350284,1,1,0,2,4,,4,3,Benstein,Rd,629509,2.709,3.059,0,8.406812,4.5,4.5 +25740,0,0.421774,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.122585,0.15,4 +27109,0,0.604096,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.498312,0.15,4 +1313,0,0.208601,1,1,0,2,4,,4,3,Benstein,Rd,629509,2.5,2.709,0,5.006419,4.5,4.5 +1060,0,0.199359,1,1,0,2,4,,4,3,Benstein,Rd,629509,3.059,3.258,0,4.784613,4.5,4.5 +1835,0,0.158669,1,1,0,2,4,,4,3,Sleeth,Rd,629507,3.215,3.374,0,3.808064,4.5,4.5 +1325,0,0.360674,1,1,0,2,4,,4,3,Sleeth,Rd,629507,3.374,3.734,0,8.65617,4.5,4.5 +2192,1,1.313113,2,0,0,2,3,DIV,4,3,Highland,Rd,648906,6.118,7.431,0,31.514709,3.7,5 +2806,0,0.222415,1,1,0,2,4,,4,3,White Lake,Rd,649303,2.638,2.86,0,5.337957,4.5,4.5 +2961,0,0.161126,1,1,0,2,5,,4,3,Jackson,Blvd,649302,0.538,0.699,0,3.867017,5.8,4.5 +2973,0,0.75328,1,1,0,2,4,,4,3,Milford,Rd,660504,4.703,5.456,0,18.07873,4.5,4.5 +3231,0,0.594477,1,1,0,2,5,,5,3,Cooley Lake,Rd,661204,1.648,2.242,0,14.267457,3.7,5 +21055,0,0.896274,1,1,0,2,5,,4,3,Duck Lake,Rd,4410161,3.501,4.397,0,21.510574,5.8,4.5 +21082,-1,0.708069,0,2,0,2,3,DIV,4,3,Highland,Rd,4410081,0,0.708,0,16.993657,3.7,5 +21957,0,0.987829,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,1.283,2.271,0,23.70789,4.5,4.5 +22097,0,0.831995,1,1,0,2,4,,4,3,Ormond,Rd,4412712,0,0.832,0,19.967877,4.5,4.5 +25831,0,0.459323,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.023764,0.15,4 +26911,0,2.516261,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,60.390272,0.15,4 +26951,0,0.889554,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.349288,0.15,4 +26952,0,0.77069,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.496571,0.15,4 +27199,0,0.973999,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.375987,0.15,4 +27205,0,1.025959,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.623008,0.15,4 +27207,0,0.632298,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.175158,0.15,4 +27331,0,2.070558,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,49.693394,0.15,4 +2196,1,1.341981,2,0,0,2,3,DIV,5,3,Highland,Rd,648906,3.827,5.169,0,32.207534,1.7,4 +3054,0,0.780967,1,1,0,2,5,,4,3,Wardlow,Rd,649210,0,0.781,0,18.743202,5.8,4.5 +3565,0,1.253986,1,1,0,2,4,,5,3,Milford,Rd,660504,2.444,3.698,0,30.095673,3,4 +21058,0,1.709692,1,1,0,2,5,,5,3,Duck Lake,Rd,4410161,1.29,2.999,0,41.032617,3.7,5 +21066,-1,1.31208,0,2,0,2,3,DIV,5,3,Highland,Rd,4410120,3.853,5.165,0,31.489912,1.7,4 +25826,0,1.632556,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,39.181334,0.15,4 +25827,0,1.217084,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.210011,0.15,4 +27787,0,1.816288,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,43.590915,0.15,4 +29848,0,1.218836,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.252057,0.15,4 +2794,0,0.653939,1,1,0,2,4,,5,3,Milford,Rd,660504,1.434,2.088,0,15.694545,3,4 +2503,0,0.356971,1,1,0,2,4,,5,3,Milford,Rd,660504,2.088,2.444,0,8.567302,3,4 +2197,1,0.644353,2,0,0,2,3,DIV,4,3,Highland,Rd,648906,3.183,3.827,0,15.464483,3.7,5 +2498,0,0.366013,1,1,0,2,5,,4,3,Wardlow,Rd,649703,0.366,0.732,0,8.784311,5.8,4.5 +3108,0,0.730388,1,1,0,2,4,,4,3,Milford,Rd,660504,3.718,4.448,0,17.529307,4.5,4.5 +21068,-1,0.670347,0,2,0,2,3,DIV,4,3,Highland,Rd,4410120,3.183,3.853,0,16.088337,3.7,5 +21960,0,0.650448,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,0,0.65,0,15.610741,4.5,4.5 +29797,0,0.805149,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.323585,0.15,4 +3257,0,0.020162,1,1,0,2,4,,4,3,Milford,Rd,660504,3.698,3.718,0,0.483884,4.5,4.5 +2500,0,0.366465,1,1,0,2,5,,4,3,Wardlow,Rd,649703,0,0.366,0,8.795171,5.8,4.5 +2820,0,0.254687,1,1,0,2,4,,4,3,Milford,Rd,660504,4.448,4.703,0,6.112477,4.5,4.5 +27200,0,0.384336,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.224067,0.15,4 +21959,0,0.323192,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,0.65,0.973,0,7.756612,4.5,4.5 +21958,0,0.309931,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,0.973,1.283,0,7.438332,4.5,4.5 +21059,0,1.290385,1,1,0,2,5,,5,3,Duck Lake,Rd,4410161,0,1.29,0,30.96924,3.7,5 +25718,0,0.926806,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.243336,0.15,4 +25828,0,0.769313,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.463514,0.15,4 +3540,0,0.251607,1,1,0,2,5,,5,3,Cooley Lake,Rd,661204,1.396,1.648,0,6.038578,3.7,5 +2194,0,0.506302,2,2,0,2,3,,5,3,Highland,Rd,648906,5.216,5.722,0,12.151258,1.7,4 +2985,0,0.584753,1,1,0,2,5,,4,3,Wardlow,Rd,649210,0.79,1.374,0,14.034067,5.8,4.5 +27212,0,0.452778,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.866663,0.15,4 +27210,0,0.24492,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.878073,0.15,4 +27211,0,0.505339,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.128132,0.15,4 +2195,0,0.046754,2,2,0,2,3,,5,3,Highland,Rd,648906,5.169,5.216,0,1.12209,1.7,4 +3001,0,0.009183,1,1,0,2,5,,4,3,Wardlow,Rd,649210,0.781,0.79,0,0.220386,5.8,4.5 +2193,0,0.396806,2,2,0,2,3,,5,3,Highland,Rd,648906,5.722,6.118,0,9.523335,1.7,4 +21057,0,0.189215,1,1,0,2,5,,5,3,Duck Lake,Rd,4410161,2.999,3.188,0,4.541149,3.7,5 +21056,0,0.312842,1,1,0,2,5,,5,3,Duck Lake,Rd,4410161,3.188,3.501,0,7.508218,3.7,5 +2907,0,1.121095,1,1,0,2,4,,4,3,White Lake,Rd,649303,0,1.121,0,26.90627,4.5,4.5 +3093,0,1.595084,1,1,0,2,4,,5,3,Milford,Rd,660504,7.265,8.859,0,38.282023,3,4 +3123,0,0.369667,1,1,0,2,5,GRV,5,3,Rose Center,Rd,660906,2.221,2.591,0,8.872001,5.55,5 +3244,0,1.552677,1,1,0,2,5,GRV,5,3,Rose Center,Rd,660906,0,1.552,0,37.264249,5.55,5 +25829,0,0.581276,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,13.950613,0.15,4 +27203,0,0.945891,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.701389,0.15,4 +3273,0,0.779523,1,1,0,2,4,,4,3,Milford,Rd,660504,6.486,7.265,0,18.708544,4.5,4.5 +3586,0,0.738469,1,1,0,2,4,,4,3,Milford,Rd,660504,5.747,6.486,0,17.723245,4.5,4.5 +21948,0,0.520968,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,2.316,2.837,0,12.503228,4.5,4.5 +2717,0,0.291608,1,1,0,2,4,,4,3,Milford,Rd,660504,5.456,5.747,0,6.998594,4.5,4.5 +21954,0,0.045283,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,2.271,2.316,0,1.086798,4.5,4.5 +2807,0,1.098409,1,1,0,2,4,,5,3,Milford,Rd,660504,8.859,9.957,0,26.361826,3,4 +2906,0,0.623798,1,1,0,2,4,,4,3,White Lake,Rd,649303,1.121,1.744,0,14.971148,4.5,4.5 +27202,0,0.901931,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.646348,0.15,4 +27201,0,0.638343,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.320221,0.15,4 +21054,0,0.383911,1,1,0,2,5,,4,3,Duck Lake,Rd,4410161,4.397,4.781,0,9.213865,5.8,4.5 +25830,0,0.321176,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,7.708229,0.15,4 +39722,1,0.018973,1,0,0,2,4,,4,3,Rose Center,Rd,660906,2.591,2.61,0,0.455346,4.5,4.5 +26924,0,1.697286,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,40.734856,0.15,4 +2940,0,0.669029,1,1,0,2,5,GRV,5,3,Rose Center,Rd,660906,1.552,2.221,0,16.056695,5.55,5 +2189,1,0.050759,2,0,0,2,3,DIV,4,3,Highland,Rd,648906,8.243,8.294,0,1.218207,3.7,5 +3053,0,1.323918,1,1,0,2,5,,4,3,Cooley Lake,Rd,661204,2.439,3.762,0,31.774043,5.8,4.5 +4110,0,1.555244,1,1,0,2,4,,4,3,Bogie Lake,Rd,703507,0,1.555,0,37.325852,4.5,4.5 +21078,-1,0.049287,0,2,0,2,3,DIV,4,3,Highland,Rd,4410081,2.125,2.174,0,1.182883,3.7,5 +25736,0,0.934341,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.424179,0.15,4 +27108,0,1.439304,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,34.543304,0.15,4 +27146,0,0.999108,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.9786,0.15,4 +27215,0,1.444527,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.66864,0.15,4 +27216,0,0.575065,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.801549,0.15,4 +25735,0,0.710193,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.044634,0.15,4 +27218,0,1.157811,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.787471,0.15,4 +3376,0,0.196544,1,1,0,2,5,,4,3,Cooley Lake,Rd,661204,2.242,2.439,0,4.717052,5.8,4.5 +2191,1,0.266139,2,0,0,2,3,DIV,4,3,Highland,Rd,648906,7.431,7.697,0,6.38733,3.7,5 +21080,-1,0.33282,0,2,0,2,3,DIV,4,3,Highland,Rd,4410081,1.243,1.576,0,7.987685,3.7,5 +27213,0,0.815716,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.577189,0.15,4 +29847,0,0.86517,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.764073,0.15,4 +21081,-1,0.535704,0,2,0,2,3,DIV,4,3,Highland,Rd,4410081,0.708,1.243,0,12.856891,3.7,5 +2190,1,0.546154,2,0,0,2,3,DIV,4,3,Highland,Rd,648906,7.697,8.243,0,13.107698,3.7,5 +21079,-1,0.549327,0,2,0,2,3,DIV,4,3,Highland,Rd,4410081,1.576,2.125,0,13.183847,3.7,5 +27209,0,0.964792,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.154998,0.15,4 +29846,0,0.98503,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.64073,0.15,4 +4107,0,0.010575,1,1,0,2,4,,4,3,Bogie Lake,Rd,703507,1.555,1.565,0,0.253807,4.5,4.5 +741,0,0.927236,1,1,0,2,4,,4,3,Bogie Lake,Rd,630101,0.817,1.744,0,22.253659,4.5,4.5 +3045,0,0.339287,1,1,0,2,5,GRV,5,3,Cooley Lake,Rd,661204,4.515,4.855,0,8.142884,5.55,5 +25721,0,1.015669,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.376044,0.15,4 +27126,0,1.118446,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,26.842698,0.15,4 +1607,0,0.589187,1,1,0,2,5,,4,3,Carey,Rd,630309,0.595,1.184,0,14.140483,5.8,4.5 +3368,0,0.753496,1,1,0,2,5,GRV,5,3,Cooley Lake,Rd,661204,3.762,4.515,0,18.083892,5.55,5 +2107,0,0.015049,1,1,0,2,5,,4,3,Carey,Rd,630309,0.58,0.595,0,0.361173,5.8,4.5 +268,0,0.456665,1,1,0,2,4,,4,3,Bogie Lake,Rd,630101,1.744,2.201,0,10.959967,4.5,4.5 +1181,0,0.344073,1,1,0,2,4,,4,3,Bogie Lake,Rd,630101,0.473,0.817,0,8.257758,4.5,4.5 +1843,0,0.75264,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,0,0.752,0,18.063366,4.5,4.5 +2186,0,0.444981,2,2,1,2,3,,4,3,Highland,Rd,648906,8.951,9.396,0,10.679549,3.7,5 +3989,0,0.453371,1,1,0,2,5,,4,3,Teggerdine,Rd,704201,0,0.453,0,10.88091,5.8,4.5 +27217,0,1.215902,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,29.181639,0.15,4 +2187,0,0.254755,2,2,1,2,3,,4,3,Highland,Rd,648906,8.697,8.951,0,6.114128,3.7,5 +2188,0,0.402766,2,2,1,2,3,,4,3,Highland,Rd,648906,8.294,8.697,0,9.666386,3.7,5 +2185,0,0.542269,2,2,1,2,3,,4,3,Highland,Rd,648906,9.396,9.938,0,13.01445,3.7,5 +3980,0,0.069394,1,1,0,2,5,,4,3,Teggerdine,Rd,704201,0.453,0.523,0,1.665459,5.8,4.5 +2741,0,1.040605,1,1,0,2,5,,5,3,Ormond,Rd,649309,0,1.04,0,24.97451,3.7,5 +2789,0,1.005528,1,1,0,2,4,,5,3,White Lake,Rd,649303,3.866,4.871,0,24.132663,3,4 +2793,0,0.757398,1,1,0,2,4,,4,3,White Lake,Rd,649303,3.109,3.866,0,18.177549,4.5,4.5 +22092,0,0.504948,1,1,0,2,4,,4,3,Ormond,Rd,4412712,1.58,2.084,0,12.118748,4.5,4.5 +27204,0,0.928346,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.280308,0.15,4 +22095,0,0.74811,1,1,0,2,4,,4,3,Ormond,Rd,4412712,0.832,1.58,0,17.954631,4.5,4.5 +2804,0,0.248916,1,1,0,2,4,,4,3,White Lake,Rd,649303,2.86,3.109,0,5.973979,4.5,4.5 +22089,0,0.497012,1,1,0,2,4,,4,3,Ormond,Rd,4412712,2.084,2.581,0,11.928298,4.5,4.5 +27206,0,0.222945,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.350679,0.15,4 +2728,0,1.003857,1,1,0,2,5,,5,3,Ormond,Rd,649309,1.04,2.044,0,24.092574,3.7,5 +26948,0,0.464341,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.144174,0.15,4 +27106,0,0.951436,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.834468,0.15,4 +86,0,0.209717,1,1,0,2,4,,4,3,13 Mile,Rd,607408,17.226,17.436,0,5.033211,4.5,4.5 +365,0,1.004141,1,1,0,2,5,GRV,4,3,Halsted,Rd,633802,4.142,5.146,0,24.099386,6.55,4.5 +482,0,0.160318,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,6.505,6.665,0,3.847624,3.7,5 +581,1,0.498899,2,0,0,1,1,RFF,3,3,W I 96/E I 696,RAMP,634208,0.957,1.456,0,,0.58,7 +699,1,0.702578,1,0,0,1,1,RFF,3,3,W I 96/E M 5,RAMP,639103,0,0.702,0,,0.58,7 +966,1,0.675215,2,0,0,1,1,RFF,3,3,W I 696/E I 96,RAMP,637802,0.325,1,0,,0.58,7 +1057,0,0.109913,1,1,0,2,5,,3,3,Ladd,Rd,629608,0.165,0.275,0,2.637921,8,4.5 +1286,0,0.542712,1,1,0,2,4,,4,3,Decker,Rd,621906,1.114,1.657,0,13.025092,4.5,4.5 +1304,0,0.273014,1,1,0,2,4,,4,3,Farmington,Rd,634005,4.72,4.993,0,6.552325,4.5,4.5 +1320,0,0.668067,1,1,0,2,5,,3,3,Hills Tech,Dr,639108,0.163,0.831,0,16.033605,8,4.5 +1722,0,0.143704,1,1,0,2,4,,4,3,Drake,Rd,633804,5.489,5.633,0,3.448891,4.5,4.5 +1904,0,0.675018,1,1,0,2,4,,4,3,Richardson,Rd,631704,1.93,2.605,0,16.200431,4.5,4.5 +1945,1,0.326436,1,0,0,1,1,RFS,3,3,E M 5/E I 696,RAMP,637801,0,0.326,0,,0.22,6 +2046,0,0.150601,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,3.582,3.733,0,3.614413,3.7,5 +2082,0,0.351462,1,1,0,2,5,GRV,4,3,Walnut Lake,Rd,622906,0.605,0.957,0,8.43509,6.55,4.5 +2479,1,0.308223,2,0,0,1,2,,3,3,E M 5,,657303,12.649,12.957,0,,0.58,7 +2588,-1,0.586101,0,2,0,1,2,,3,3,W M 5 Connector,,657304,12.701,13.287,0,,0.58,7 +2626,0,0.108733,2,2,0,2,3,,3,3,Pontiac,Trl,657404,7.024,7.133,0,2.609597,5,5 +3077,0,0.584127,2,2,0,2,4,,3,3,10 Mile,Rd,656510,11.854,12.438,0,14.019048,6,4.5 +3359,0,0.867656,1,1,0,2,3,,4,3,Pontiac,Trl,657404,10.224,11.092,0,20.823744,3.7,5 +3533,1,0.501084,2,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,4.1,4.601,0,12.02602,5,5 +3832,0,0.538978,1,1,1,2,3,,4,3,Maple,Rd,683906,2.328,2.867,0,12.93548,3.7,5 +4474,1,1.264144,2,0,0,1,1,,3,3,E I 696,,710701,0,1.264,0,,0.58,7 +4766,-1,1.372837,0,2,0,1,1,,3,3,W I 696,,710702,0,1.372,0,,0.58,7 +19791,0,0.099767,2,2,1,2,4,,3,3,Grand River,,4104142,13.927,14.027,0,2.394402,6,4.5 +19827,0,0.929485,1,1,0,2,3,,4,3,Commerce,Rd,4104140,13.834,14.763,0,22.307632,3.7,5 +20147,-1,0.358864,0,1,0,1,2,,3,3,N M 5,,4402006,5.714,6.072,0,,0.58,7 +20194,1,0.016847,4,0,0,2,3,DIV,4,3,S M 5,,4402005,0.93,0.946,0,0.404325,3.7,5 +20486,-1,0.016498,0,4,0,2,3,DIV,4,3,N M 5,,4402006,0.928,0.945,0,0.395951,3.7,5 +20723,0,0.661632,1,1,0,2,4,,4,3,Welch,Rd,4403557,0.36,1.022,0,15.879167,4.5,4.5 +20792,-1,0.652913,0,2,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.708,3.36,0,15.669901,5,5 +20961,1,0.525911,1,0,0,1,1,RFF,3,3,W I 696/N M 5,RAMP,4410622,0,0.526,0,,0.58,7 +25042,0,0.538605,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.926528,0.15,4 +25043,0,0.497095,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.93027,0.15,4 +25044,0,0.52073,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.497522,0.15,4 +25048,0,0.562411,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.497874,0.15,4 +25049,0,0.54427,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.062482,0.15,4 +25051,0,0.400665,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.615958,0.15,4 +25055,0,0.504242,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.10182,0.15,4 +25058,0,0.544535,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.068832,0.15,4 +25444,0,0.529137,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.699277,0.15,4 +25446,0,0.517873,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.428946,0.15,4 +25837,0,0.43722,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.493284,0.15,4 +25839,0,0.491183,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.788394,0.15,4 +25840,0,0.407151,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.771615,0.15,4 +25842,0,0.532626,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.783019,0.15,4 +25845,0,0.145308,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.487384,0.15,4 +25846,0,0.585888,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.061311,0.15,4 +25847,0,0.482013,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.568322,0.15,4 +25849,0,0.482449,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.578779,0.15,4 +25851,0,0.511226,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.269421,0.15,4 +26208,0,0.726389,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.433334,0.15,4 +27124,0,0.532173,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.772144,0.15,4 +27135,0,0.282342,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.776198,0.15,4 +27219,0,0.50685,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.164393,0.15,4 +27246,0,0.505768,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.138422,0.15,4 +27250,0,0.454474,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.907379,0.15,4 +27274,0,0.464694,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.152658,0.15,4 +28927,0,0.484448,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.626742,0.15,4 +29687,0,0.671426,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.114234,0.15,4 +641,0,0.495434,2,2,1,2,4,,4,3,Novi,Rd,621910,0.514,1.009,0,11.890409,4.5,4.5 +957,0,0.352463,1,1,1,2,3,,4,3,Haggerty,Rd,639005,4.05,4.403,0,8.459104,3.7,5 +1274,0,0.121235,1,1,0,2,4,,4,3,13 Mile,Rd,639110,1.169,1.291,0,2.90965,4.5,4.5 +2595,1,0.617971,4,0,0,1,1,,3,3,E I 96,,657303,10.722,11.34,0,,0.58,7 +2858,-1,0.618308,0,4,0,1,1,,3,3,W I 96,,657304,10.793,11.411,0,,0.58,7 +3061,1,0.493511,2,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,2.563,3.056,0,11.844263,5,5 +3162,0,0.99596,1,1,0,2,4,,4,3,Meadowbrook,Rd,656706,4.005,5.001,0,23.903044,4.5,4.5 +19281,0,0.443256,1,1,0,2,4,,4,3,14 Mile,Rd,1794106,0.42,0.863,0,10.638147,4.5,4.5 +19798,0,0.376551,1,1,1,2,4,,3,3,Grand River,Ave,4104142,12.05,12.427,0,9.037219,6,4.5 +20436,1,1.31743,2,0,0,1,2,,4,3,S M 5,,4402005,3.462,4.778,0,,0.8,7.5 +37209,0,0.23957,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.749669,0.15,4 +20790,-1,1.479494,0,3,0,1,2,,4,3,N M 5,,4402006,3.458,4.937,0,,0.8,7.5 +20971,-1,0.373413,0,2,0,1,2,FCD,4,3,N M 5 CD,,4410616,0.321,0.695,0,,0.8,7.5 +20979,1,0.369852,2,0,0,1,2,FCD,4,3,S M 5 CD,,4410612,0.225,0.595,0,,0.8,7.5 +21980,1,0.321203,1,0,0,1,2,RON,4,3,W 12 Mile/N M 5 CD,RAMP,4412723,0,0.321,0,,1.09,4 +21984,1,0.450021,1,0,0,1,2,ROF,4,3,S M 5 CD/12 Mile,RAMP,4412722,0,0.45,0,,2.24,5 +24865,0,0.380965,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.14316,0.15,4 +25064,0,0.564405,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.545711,0.15,4 +25067,0,0.904386,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,21.705275,0.15,4 +25853,0,1.001364,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.032736,0.15,4 +27132,0,0.641309,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.391405,0.15,4 +27221,0,0.294417,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.066019,0.15,4 +30233,0,0.852079,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.449894,0.15,4 +30234,0,0.92703,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.248709,0.15,4 +816,0,0.070917,2,3,1,2,3,,3,3,Novi,Rd,621910,1.766,1.837,0,1.701997,5,5 +2444,1,0.22931,1,0,0,1,1,RON,4,3,S Novi/E I 96,RAMP,664608,0,0.229,0,,1.09,4 +2599,1,0.310948,3,0,0,1,1,,3,3,E I 96,,657303,10.032,10.343,0,,0.58,7 +2864,-1,0.319145,0,3,0,1,1,,3,3,W I 96,,657304,10.055,10.374,0,,0.58,7 +3357,1,0.311704,2,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,1.742,2.053,0,7.480903,5,5 +3416,1,0.384568,1,0,0,1,1,ROF,4,3,E I 96/Novi,RAMP,664609,0,0.384,0,,2.24,5 +3489,1,0.328115,1,0,0,1,1,RON,3,3,S Novi/W I 96,RAMP,664607,0,0.328,0,,1.09,4 +19801,0,0.474513,2,2,1,2,4,,4,3,Grand River,Ave,4104142,10.885,11.36,0,11.388318,4.5,4.5 +25997,0,0.533668,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.808036,0.15,4 +27143,0,0.084733,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.033588,0.15,4 +27225,0,0.175606,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.214534,0.15,4 +27226,0,0.555547,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.333134,0.15,4 +19802,0,0.146942,2,2,1,2,4,,4,3,Grand River,Ave,4104142,10.739,10.885,0,3.52661,4.5,4.5 +27144,0,0.628317,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.079597,0.15,4 +3490,1,0.242742,2,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,1.499,1.742,0,5.825807,3.7,5 +27224,0,0.307748,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.385955,0.15,4 +2521,1,0.108699,2,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,1.39,1.499,0,2.608769,3.7,5 +27142,0,0.21199,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.087749,0.15,4 +1211,0,0.136453,2,2,1,2,3,,3,3,Novi,Rd,621910,2.185,2.321,0,3.274872,5,5 +19799,0,0.361211,1,1,1,2,4,,3,3,Grand River,Ave,4104142,11.689,12.05,0,8.669055,6,4.5 +26873,0,0.474147,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.37953,0.15,4 +27223,0,0.297116,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.130785,0.15,4 +25988,0,0.339108,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.138582,0.15,4 +1430,0,0.165885,2,2,1,2,3,,3,3,Novi,Rd,621910,2.321,2.487,0,3.981239,5,5 +1694,0,0.155862,2,2,1,2,3,,3,3,Novi,Rd,621910,2.029,2.185,0,3.740677,5,5 +19800,0,0.329429,1,1,1,2,4,,3,3,Grand River,Ave,4104142,11.36,11.689,0,7.906287,6,4.5 +27222,0,0.251007,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.024166,0.15,4 +27227,0,0.174288,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.182907,0.15,4 +351,0,0.191571,2,3,1,2,3,,3,3,Novi,Rd,621910,1.837,2.029,0,4.597694,5,5 +27220,0,0.346911,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.325871,0.15,4 +1747,0,0.153487,3,3,1,2,3,,3,3,Novi,Rd,621910,1.163,1.316,0,3.683681,5,5 +2518,1,0.471671,2,0,0,1,1,ROF,3,3,W I 96/Novi,RAMP,664606,0,0.472,0,,2.24,5 +2585,-1,0.419218,0,3,0,1,1,,3,3,W I 96,,657304,10.374,10.793,0,,0.58,7 +3035,1,0.509883,2,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,2.053,2.563,0,12.237182,5,5 +25068,0,0.54967,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.192071,0.15,4 +25069,0,0.31593,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.582311,0.15,4 +1917,0,0.08237,3,3,1,2,3,,3,3,Novi,Rd,621910,1.481,1.564,0,1.976889,5,5 +2873,1,0.379448,4,0,0,1,1,,3,3,E I 96,,657303,10.343,10.722,0,,0.58,7 +19216,1,0.317149,1,0,0,1,1,RON,3,3,N Novi/W I 96,RAMP,1813010,0,0.317,0,,1.09,4 +19217,1,0.416721,1,0,0,1,1,RON,3,3,N Novi/E I 96,RAMP,1813009,0,0.417,0,,1.09,4 +295,0,0.076853,2,2,1,2,3,,3,3,Novi,Rd,621910,1.646,1.723,0,1.844473,5,5 +1857,0,0.04338,2,2,1,2,3,,3,3,Novi,Rd,621910,1.723,1.766,0,1.041108,5,5 +1402,0,0.08253,3,3,1,2,3,,3,3,Novi,Rd,621910,1.564,1.646,0,1.980721,5,5 +1257,0,0.165033,3,3,1,2,3,,3,3,Novi,Rd,621910,1.316,1.481,0,3.960783,5,5 +2179,0,0.137694,3,3,1,2,3,,3,3,Novi,Rd,621910,1.025,1.163,0,3.30465,5,5 +37210,0,0.318721,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.649307,0.15,4 +523,0,0.445246,1,1,0,2,5,,4,3,Old Novi,Rd,621910,0,0.445,0,10.685899,5.8,4.5 +1323,0,0.103909,1,1,0,2,5,,4,3,13 Mile,Rd,639110,1.926,2.03,0,2.49382,5.8,4.5 +1620,0,0.662612,2,2,1,2,4,,4,3,Novi,Rd,621906,0,0.662,0,15.902687,4.5,4.5 +2061,0,0.333223,1,1,0,2,5,,4,3,Walled Lake,Dr,621909,0.742,1.075,0,7.997363,5.8,4.5 +2073,0,0.068962,2,2,1,2,4,,4,3,Novi,Rd,621910,0.445,0.514,0,1.655084,4.5,4.5 +19553,0,0.780207,1,1,0,2,5,,4,3,Lake,Dr,1868801,0.46,1.24,0,18.724979,5.8,4.5 +551,0,0.775256,1,1,0,2,5,,4,3,Lake,Dr,631101,0.587,1.362,0,18.606146,5.8,4.5 +509,0,0.395973,1,1,0,2,5,,4,3,Walled Lake,Dr,621909,0.346,0.742,0,9.50336,5.8,4.5 +1435,0,0.254351,1,1,0,2,5,,3,3,Walled Lake,Dr,621909,0.092,0.346,0,6.104415,8,4.5 +2745,0,0.237277,1,1,0,2,3,,3,3,Ladd,Rd,657404,6.419,6.656,0,5.694644,5,5 +2899,0,0.368221,1,1,0,2,3,,3,3,Pontiac,Trl,657404,6.656,7.024,0,8.837306,5,5 +1528,0,0.165428,1,1,0,2,5,,3,3,Ladd,Rd,629608,0,0.165,0,3.97028,8,4.5 +1954,0,0.091628,1,1,0,2,5,,3,3,Walled Lake,Dr,621909,0,0.092,0,2.199084,8,4.5 +25841,0,0.152707,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.664956,0.15,4 +1830,0,0.386366,1,1,0,2,5,,4,3,13 Mile,Rd,639110,1.54,1.926,0,9.272794,5.8,4.5 +20543,0,0.699635,2,2,1,2,4,,4,3,Novi,Rd,4403802,0,0.699,0,16.791231,4.5,4.5 +19554,0,0.460013,1,1,0,2,5,,4,3,Lake,Dr,1868801,0,0.46,0,11.040313,5.8,4.5 +820,0,0.24936,1,1,0,2,4,,4,3,13 Mile,Rd,639110,1.291,1.54,0,5.984629,4.5,4.5 +1782,0,0.451568,2,2,1,2,4,,4,3,Novi,Rd,621906,0.662,1.114,0,10.837629,4.5,4.5 +19280,0,0.365851,1,1,0,2,5,,4,3,14 Mile,Rd,1794106,0.863,1.229,0,8.780424,5.8,4.5 +381,0,0.772934,2,2,0,2,3,,3,3,Haggerty,Rd,639005,2.774,3.547,0,18.550426,5,5 +396,1,0.292941,2,0,0,1,1,,3,3,E I 96,,639202,0.463,0.756,0,,0.58,7 +863,1,0.463583,2,0,0,1,1,,3,3,E I 96,,639202,0,0.463,0,,0.58,7 +2502,1,0.130409,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.708,3.838,0,3.129815,5,5 +2546,1,0.324465,2,0,0,1,2,,3,3,E M 5 Connector,,657303,11.955,12.28,0,,0.58,7 +2559,-1,0.748639,0,2,0,1,2,,3,3,W M 5 Connector,,657304,11.953,12.701,0,,0.58,7 +3084,0,0.250853,1,1,0,2,3,,3,3,10 Mile,Rd,656510,11.4,11.651,0,6.020478,5,5 +3184,0,0.988876,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,2.997,3.986,0,23.733014,6,4.5 +19795,0,0.319815,1,1,1,2,4,,3,3,Grand River,Ave,4104142,13.031,13.351,0,7.675552,6,4.5 +19900,1,0.329122,2,0,0,1,2,,3,3,S M 5,,4402005,5.113,5.442,0,,0.58,7 +20249,1,0.335115,2,0,0,1,2,,3,3,S M 5,,4402005,4.778,5.113,0,,0.58,7 +20349,-1,0.488652,0,2,0,1,2,,3,3,N M 5,,4402006,5.225,5.714,0,,0.58,7 +20488,-1,0.044755,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.307,2.352,0,1.074128,5,5 +20960,1,0.158659,2,0,0,1,1,RFF,3,3,S M 5/E I 96,RAMP,4410623,0,0.159,0,,0.58,7 +20966,1,0.508062,1,0,0,1,2,ROF,3,3,N M 5/12 Mile,RAMP,4410619,0,0.508,0,,2.24,5 +20969,-1,0.57462,0,2,0,1,1,RFF,3,3,N M 5 CD,,4410616,1.035,1.61,0,,0.58,7 +27228,0,0.480599,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.534374,0.15,4 +27229,0,0.364059,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.737417,0.15,4 +3198,0,0.142335,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,2.487,2.629,0,3.416034,6,4.5 +19797,0,0.546211,1,1,1,2,4,,3,3,Grand River,Ave,4104142,12.427,12.973,0,13.109073,6,4.5 +24867,0,0.27144,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.51456,0.15,4 +27235,0,0.390457,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.370957,0.15,4 +29631,0,0.363346,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.720308,0.15,4 +2908,0,0.241302,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,2.246,2.487,0,5.791255,6,4.5 +2894,0,0.367796,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,2.629,2.997,0,8.827096,6,4.5 +26151,0,0.344185,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.260447,0.15,4 +26153,0,0.406646,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.759494,0.15,4 +19796,0,0.058265,1,1,1,2,4,,3,3,Grand River,Ave,4104142,12.973,13.031,0,1.398348,6,4.5 +20981,1,0.306094,1,0,0,1,1,RFS,3,3,E I 96/N M 5 CD,RAMP,4410611,0,0.306,0,,0.22,6 +2575,-1,0.434964,0,4,0,1,1,,3,3,W I 96,,657304,11.411,11.846,0,,0.58,7 +2841,1,0.615613,3,0,0,1,1,,3,3,E I 696,,657303,11.34,11.955,0,,0.58,7 +2880,1,0.350854,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.056,3.407,0,8.420497,5,5 +20251,-1,0.383397,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,1.666,2.05,0,9.201527,5,5 +20967,1,0.111744,1,0,0,1,2,ROF,3,3,N M 5 CD/12 Mile,RAMP,4410618,0,0.112,0,,2.24,5 +20970,-1,0.340992,0,3,0,1,2,FCD,3,3,N M 5 CD,,4410616,0.695,1.035,0,,0.58,7 +20973,-1,0.433705,0,1,0,1,1,RFF,3,3,S M 5 CD/W I 96,RAMP,4410615,0,0.434,0,,0.58,7 +20977,1,0.251487,3,0,0,1,2,FCD,3,3,S M 5 CD,,4410612,0.938,1.189,0,,0.58,7 +2884,0,0.019741,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,3.986,4.005,0,0.47378,6,4.5 +20976,1,0.128453,2,0,0,1,2,FCD,3,3,S M 5 CD,,4410612,1.189,1.318,0,,0.58,7 +2848,-1,0.106456,0,3,0,1,1,,3,3,W I 696,,657304,11.846,11.953,0,,0.58,7 +3264,1,0.18821,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.449,3.637,0,4.517035,5,5 +20724,-1,0.193721,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.114,2.307,0,4.649297,5,5 +20965,1,0.312457,1,0,0,1,2,ROF,3,3,N M 5/12 Mile,RAMP,4410619,0.508,0.82,0,,2.24,5 +20968,1,0.252981,1,0,0,1,2,RON,3,3,E 12 Mile/N M 5,RAMP,4410617,0,0.253,0,,1.09,4 +20974,1,0.290627,1,0,0,1,2,RON,3,3,E 12 Mile/S M 5,RAMP,4410614,0,0.291,0,,1.09,4 +20975,1,0.268018,1,0,0,1,2,RON,4,3,W 12 Mile/S M 5,RAMP,4410613,0,0.268,0,,1.09,4 +20978,1,0.342835,3,0,0,1,2,FCD,3,3,S M 5 CD,,4410612,0.595,0.938,0,,0.58,7 +19902,-1,0.064182,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.05,2.114,0,1.540379,5,5 +2604,1,0.042073,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.407,3.449,0,1.009763,5,5 +21981,1,0.020939,1,0,0,2,3,RSF,3,3,S M 5 CD/12 Mile,RAMP,4412722,0.45,0.471,0,0.502525,5,5 +2964,1,0.070878,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.637,3.708,0,1.701065,5,5 +20964,1,0.021629,1,0,0,2,3,RSF,3,3,N M 5/12 Mile,RAMP,4410619,0.82,0.842,0,0.519087,5,5 +843,0,0.476372,2,2,0,2,3,,3,3,Haggerty,Rd,639005,2.298,2.774,0,11.432937,5,5 +1504,1,0.387952,3,0,0,1,1,RFF,3,3,W I 96/E I 696,RAMP,634208,0.464,0.852,0,,0.58,7 +1813,1,0.337616,2,0,0,1,1,RFF,3,3,W I 696/E I 96,RAMP,637802,1.142,1.48,0,,0.58,7 +1951,1,0.827059,2,0,0,1,1,,3,3,E I 96,,639202,0.756,1.583,0,,0.58,7 +2762,1,0.369076,2,0,0,1,2,,3,3,E M 5,,657303,12.28,12.649,0,,0.58,7 +3410,0,0.203161,1,1,0,2,3,,3,3,10 Mile,Rd,656510,11.651,11.854,0,4.875869,5,5 +19794,0,0.167677,1,1,1,2,4,,3,3,Grand River,Ave,4104142,13.351,13.518,0,4.024239,6,4.5 +25056,0,0.377766,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.066381,0.15,4 +29630,0,0.404451,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.706816,0.15,4 +27230,0,0.168477,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.043457,0.15,4 +27232,0,0.180423,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.33016,0.15,4 +1875,0,0.259551,2,2,1,2,3,,3,3,Haggerty,Rd,639005,2.038,2.298,0,6.229217,5,5 +19792,0,0.25349,1,1,1,2,4,,3,3,Grand River,,4104142,13.674,13.927,0,6.083766,6,4.5 +19793,0,0.155877,1,1,1,2,4,,3,3,Grand River,,4104142,13.518,13.674,0,3.741039,6,4.5 +500,1,0.142422,2,0,0,1,1,RFF,3,3,W I 696/E I 96,RAMP,637802,1,1.142,0,,0.58,7 +2939,1,0.255514,1,0,0,1,1,RFS,3,3,W I 696/E M 5,RAMP,657106,0,0.255,0,,0.22,6 +20963,1,0.453799,2,0,0,1,1,RFF,3,3,W I 96/W M 5,RAMP,4410620,0,0.454,0,,0.58,7 +2678,1,0.29932,1,0,0,1,1,RFS,3,3,W M 5/E I 96,RAMP,657107,0,0.299,0,,0.22,6 +1034,1,0.105549,2,0,0,1,1,RFF,3,3,W I 96/E I 696,RAMP,634208,0.852,0.957,0,,0.58,7 +1827,0,0.163127,1,1,0,2,5,,3,3,Hills Tech,Dr,639108,0,0.163,0,3.915038,8,4.5 +1939,0,0.482993,2,2,0,2,3,,3,3,Haggerty,Rd,639005,3.547,4.03,0,11.591821,5,5 +20542,-1,0.288411,0,3,0,1,2,,3,3,N M 5,,4402006,4.937,5.225,0,,0.58,7 +3474,1,0.261282,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.838,4.1,0,6.270769,5,5 +20102,-1,0.220581,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.487,2.708,0,5.293945,5,5 +20299,-1,0.135109,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.352,2.487,0,3.242628,5,5 +1417,0,0.020607,2,2,0,2,3,,3,3,Haggerty,Rd,639005,4.03,4.05,0,0.494559,5,5 +25059,0,0.198063,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.753518,0.15,4 +357,0,0.77841,1,1,0,2,3,,4,3,Haggerty,Rd,639005,5.342,6.12,0,18.681839,3.7,5 +1505,0,0.118602,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,4.384,4.503,0,2.846444,3.7,5 +1950,0,0.472604,1,1,0,2,4,,4,3,13 Mile,Rd,639110,0,0.472,0,11.342499,4.5,4.5 +20297,-1,1.110843,0,4,0,2,3,DIV,4,3,N M 5,,4402006,1.994,3.105,0,26.660242,3.7,5 +20889,1,1.110463,4,0,0,2,3,DIV,4,3,S M 5,,4402005,1.996,3.106,0,26.651113,3.7,5 +25063,0,0.605092,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.522216,0.15,4 +28953,0,0.524706,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.59294,0.15,4 +204,0,0.546661,1,1,0,2,4,,4,3,13 Mile,Rd,639110,0.499,1.046,0,13.119854,4.5,4.5 +20100,-1,0.353195,0,3,0,2,3,DIV,4,3,N M 5,,4402006,3.105,3.458,0,8.476681,3.7,5 +20654,1,0.355858,3,0,0,2,3,DIV,4,3,S M 5,,4402005,3.106,3.462,0,8.540582,3.7,5 +1770,0,0.123953,1,1,0,2,4,,4,3,13 Mile,Rd,639110,1.046,1.169,0,2.974874,4.5,4.5 +20972,-1,0.321288,0,1,0,1,2,FCD,4,3,N M 5 CD,,4410616,0,0.321,0,,0.8,7.5 +20980,1,0.225336,1,0,0,1,2,FCD,4,3,S M 5 CD,,4410612,0,0.225,0,,0.8,7.5 +706,0,0.026561,1,1,0,2,4,,4,3,13 Mile,Rd,639110,0.472,0.499,0,0.637455,4.5,4.5 +19283,0,0.1894,1,1,0,2,4,,4,3,14 Mile,Rd,1794106,0.054,0.243,0,4.545602,4.5,4.5 +25060,0,0.578165,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.875971,0.15,4 +19282,0,0.177256,1,1,0,2,4,,4,3,14 Mile,Rd,1794106,0.243,0.42,0,4.254135,4.5,4.5 +19901,0,0.360369,1,1,0,2,4,,4,3,Welch,Rd,4403557,0,0.36,0,8.648867,4.5,4.5 +2049,0,0.241276,1,1,0,2,4,,4,3,14 Mile,Rd,5500000,4.53,4.771,0,5.790615,4.5,4.5 +19284,0,0.053795,1,1,0,2,4,,4,3,14 Mile,Rd,1794106,0,0.054,0,1.291074,4.5,4.5 +1969,0,0.026967,2,2,1,2,3,,4,3,14 Mile,Rd,5500000,4.503,4.53,0,0.647215,3.7,5 +85,0,0.47806,1,1,0,2,4,,4,3,13 Mile,Rd,607408,17.436,17.914,0,11.47343,4.5,4.5 +1278,0,0.467838,1,1,0,2,3,,4,3,Haggerty,Rd,639005,4.581,5.049,0,11.228102,3.7,5 +1774,0,0.178529,1,1,0,2,3,,4,3,Haggerty,Rd,639005,4.403,4.581,0,4.284688,3.7,5 +822,0,0.293049,1,1,0,2,3,,4,3,Haggerty,Rd,639005,5.049,5.342,0,7.03317,3.7,5 +501,0,0.391599,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,3.733,4.124,0,9.398371,3.7,5 +28697,0,0.509098,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.218355,0.15,4 +931,0,0.260288,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,4.124,4.384,0,6.246911,3.7,5 +1914,0,0.385153,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,6.12,6.505,0,9.243662,3.7,5 +577,0,0.493451,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,8.667,9.16,0,11.842828,3.7,5 +876,0,0.600557,1,1,0,2,4,,4,3,Richardson,Rd,631704,0,0.6,0,14.413374,4.5,4.5 +2081,0,0.498308,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,1.838,2.336,0,11.959403,4.5,4.5 +3004,0,0.554078,1,1,0,2,3,,3,3,Pontiac,Trl,657404,8.458,9.012,0,13.297874,5,5 +3765,0,0.394366,1,1,0,2,4,,4,3,Commerce,Rd,683909,1.748,2.142,0,9.464777,4.5,4.5 +37751,-1,0.213118,0,2,0,2,3,DIV,4,3,West Maple,Rd,4416612,0,0.213,0,5.114833,3.7,5 +19834,0,0.607644,1,1,0,2,4,,4,3,Commerce,Rd,4104140,11.686,12.294,0,14.583459,4.5,4.5 +20791,0,0.687825,1,1,0,2,4,,4,3,Welch,Rd,4403557,2.347,3.035,0,16.507791,4.5,4.5 +26971,0,0.631037,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.144886,0.15,4 +27113,0,0.338255,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.118128,0.15,4 +27122,0,0.731492,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.555805,0.15,4 +27241,0,0.610719,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.657267,0.15,4 +29788,0,0.884627,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.23105,0.15,4 +486,0,0.278795,1,1,0,2,4,,4,3,Decker,Rd,621906,2.565,2.844,0,6.691078,4.5,4.5 +2757,0,0.28956,1,1,0,2,3,,3,3,Pontiac,Trl,657404,7.851,8.141,0,6.949433,5,5 +3768,0,0.538702,1,1,0,2,5,,4,3,Commerce,Rd,683909,0.618,1.157,0,12.928858,5.8,4.5 +3769,0,0.6184,1,1,0,2,5,,4,3,Commerce,Rd,683909,0,0.618,0,14.841594,5.8,4.5 +3841,0,0.350443,1,1,1,2,3,,3,3,West Maple,Rd,683906,0.129,0.479,0,8.410638,5,5 +25061,0,0.275107,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.602561,0.15,4 +27129,0,0.409219,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.821264,0.15,4 +27244,0,0.493631,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.847156,0.15,4 +3102,0,0.107493,2,2,1,2,3,,3,3,Pontiac,Trl,657404,7.744,7.851,0,2.579829,5,5 +21903,0,0.656792,2,2,0,2,4,,3,3,Maple,Rd,4413197,0,0.657,0,15.763011,6,4.5 +27133,0,0.503117,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.074809,0.15,4 +27136,0,0.301268,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.230426,0.15,4 +561,0,0.261783,1,1,0,2,5,,3,3,Ladd,Rd,629608,0.275,0.537,0,6.282789,8,4.5 +27134,0,0.187823,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.507761,0.15,4 +2842,0,0.364339,2,2,0,2,3,,3,3,Pontiac,Trl,657404,7.133,7.497,0,8.744136,5,5 +3439,0,0.153634,2,2,1,2,3,,3,3,Pontiac,Trl,657404,7.59,7.744,0,3.687221,5,5 +3842,0,0.12875,2,2,1,2,3,,3,3,West Maple,Rd,683906,0,0.129,0,3.089992,5,5 +2547,0,0.093166,2,2,1,2,3,,3,3,Pontiac,Trl,657404,7.497,7.59,0,2.235989,5,5 +27121,0,0.589419,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.146063,0.15,4 +946,0,0.294607,1,1,0,2,4,,3,3,Decker,Rd,621906,2.27,2.565,0,7.070579,6,4.5 +1322,0,0.243336,1,1,0,2,4,,3,3,Decker,Rd,621906,2.027,2.27,0,5.840058,6,4.5 +3840,0,0.22306,1,1,1,2,3,,3,3,West Maple,Rd,683906,0.479,0.702,0,5.353442,5,5 +27247,0,0.096082,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.305961,0.15,4 +27249,0,0.2861,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.866395,0.15,4 +2474,0,0.111879,1,1,0,2,3,,3,3,Pontiac,Trl,657404,8.141,8.253,0,2.685103,5,5 +27248,0,0.204603,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.910481,0.15,4 +3317,0,0.204966,1,1,0,2,3,,3,3,Pontiac,Trl,657404,8.253,8.458,0,4.919181,5,5 +1829,0,0.370542,1,1,0,2,4,,4,3,Decker,Rd,621906,1.657,2.027,0,8.893005,4.5,4.5 +3767,0,0.486218,1,1,0,2,4,,4,3,Commerce,Rd,683909,1.157,1.643,0,11.669232,4.5,4.5 +1337,0,0.109443,1,1,0,2,4,,4,3,Decker,Rd,621906,3.275,3.385,0,2.626644,4.5,4.5 +1846,0,0.431901,1,1,0,2,4,,4,3,Decker,Rd,621906,2.844,3.275,0,10.365634,4.5,4.5 +25062,0,0.340353,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.168472,0.15,4 +27245,0,0.236239,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.669726,0.15,4 +3766,0,0.104803,1,1,0,2,4,,4,3,Commerce,Rd,683909,1.643,1.748,0,2.515261,4.5,4.5 +982,0,0.687644,1,1,0,2,4,,4,3,Commerce,Rd,630006,0.814,1.502,0,16.503463,4.5,4.5 +1345,0,0.412414,1,1,0,2,4,,4,3,Newton,Rd,631805,0.497,0.909,0,9.897927,4.5,4.5 +1531,0,0.251224,1,1,0,2,4,,4,3,Commerce,Rd,629707,1.333,1.584,0,6.029388,4.5,4.5 +19835,0,0.506949,1,1,0,2,4,,4,3,Commerce,Rd,4104140,11.179,11.686,0,12.166782,4.5,4.5 +27112,0,1.079547,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.909132,0.15,4 +27251,0,0.476717,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.441209,0.15,4 +27252,0,0.259512,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.228279,0.15,4 +1603,0,0.814602,1,1,0,2,4,,4,3,Commerce,Rd,630006,0,0.814,0,19.550444,4.5,4.5 +19836,0,0.499131,1,1,0,2,4,,4,3,Commerce,Rd,4104140,10.68,11.179,0,11.979149,4.5,4.5 +19837,0,0.490192,1,1,0,2,4,,4,3,Commerce,Rd,4104140,10.19,10.68,0,11.764618,4.5,4.5 +1874,0,0.171393,1,1,0,2,5,,4,3,Carroll Lake,Rd,629303,0,0.171,0,4.11343,5.8,4.5 +1853,0,0.49699,1,1,0,2,4,,4,3,Newton,Rd,631805,0,0.497,0,11.927757,4.5,4.5 +536,0,0.253641,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,1.584,1.838,0,6.087382,4.5,4.5 +415,0,0.336855,1,1,0,2,4,,4,3,Newton,Rd,631805,1.193,1.53,0,8.084527,4.5,4.5 +883,0,0.284028,1,1,0,2,4,,4,3,Newton,Rd,631805,0.909,1.193,0,6.816673,4.5,4.5 +1047,0,0.68542,1,1,0,2,3,,4,3,Haggerty,Hwy,639005,7.403,8.088,0,16.450079,3.7,5 +39832,1,0.061509,2,0,0,2,3,,4,3,Pontiac,Trl,657404,9.454,9.516,0,1.47622,3.7,5 +39853,0,0.436758,1,1,1,2,3,,4,3,West Maple,Rd,683906,1.892,2.328,0,10.482191,3.7,5 +20298,0,0.278703,1,1,0,2,4,,4,3,Welch,Rd,4403557,1.415,1.694,0,6.68887,4.5,4.5 +20396,1,0.049118,2,0,0,2,3,DIV,4,3,S M 5,,4402005,0,0.049,0,1.17882,3.7,5 +20722,-1,0.043616,0,2,0,2,3,DIV,4,3,N M 5,,4402006,0,0.044,0,1.046783,3.7,5 +25848,0,0.549511,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.188263,0.15,4 +25850,0,0.517688,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.424521,0.15,4 +25852,0,0.479966,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.519178,0.15,4 +26972,0,0.476682,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.440373,0.15,4 +27118,0,0.915098,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.962358,0.15,4 +27253,0,0.510532,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.252771,0.15,4 +27254,0,0.427575,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.261792,0.15,4 +3836,-1,0.024403,0,2,0,2,3,DIV,4,3,West Maple,Rd,4416612,0.524,0.549,0,0.58567,3.7,5 +25843,0,0.545121,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.082901,0.15,4 +39849,1,1.049627,4,0,0,2,3,DIV,4,3,S M 5,,4402005,0.946,1.996,0,25.191044,3.7,5 +20487,0,0.015951,1,1,0,2,4,,4,3,Welch,Rd,4403557,1.022,1.038,0,0.382828,4.5,4.5 +25443,0,0.401575,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.637807,0.15,4 +27243,0,0.067298,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.615151,0.15,4 +39850,-1,1.049803,0,4,0,2,3,DIV,4,3,N M 5,,4402006,0.945,1.994,0,25.195264,3.7,5 +39852,1,0.065339,2,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.546,1.611,0,1.568127,3.7,5 +3835,-1,0.226241,0,2,0,2,3,DIV,4,3,West Maple,Rd,4416612,0.549,0.775,0,5.429772,3.7,5 +3460,0,0.225853,2,2,1,2,3,,4,3,Pontiac,Trl,657404,9.229,9.454,0,5.420475,3.7,5 +20101,0,0.653351,1,1,0,2,4,,4,3,Welch,Rd,4403557,1.694,2.347,0,15.680429,4.5,4.5 +27239,0,0.640591,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.374177,0.15,4 +2487,0,0.217268,2,2,1,2,3,,4,3,Pontiac,Trl,657404,9.012,9.229,0,5.214425,3.7,5 +27237,0,0.146402,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.513648,0.15,4 +39834,1,0.033202,2,0,0,2,3,,4,3,Pontiac,Trl,657404,9.574,9.607,0,0.796844,3.7,5 +39833,1,0.057611,2,0,0,2,3,,4,3,Pontiac,Trl,657404,9.516,9.574,0,1.382654,3.7,5 +1520,0,0.309235,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,7.094,7.403,0,7.421652,3.7,5 +25442,0,0.513314,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.319536,0.15,4 +2030,0,0.429132,1,1,0,2,3,,4,3,Haggerty,Hwy,639005,6.665,7.094,0,10.299176,3.7,5 +25844,0,0.259304,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.223299,0.15,4 +537,0,0.605597,1,1,0,2,5,,4,3,Walnut Lake,Rd,622906,0,0.605,0,14.53432,5.8,4.5 +596,0,0.330326,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,8.088,8.419,0,7.927824,3.7,5 +3473,0,0.324989,2,2,1,2,3,,4,3,Pontiac,Trl,657404,9.899,10.224,0,7.799746,3.7,5 +1032,0,0.248306,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,8.419,8.667,0,5.959352,3.7,5 +39800,1,0.066881,2,0,0,2,4,,4,3,Oakley Park,Rd,629707,2.773,2.839,0,1.605136,4.5,4.5 +1035,0,0.390621,1,1,0,2,3,,4,3,Union Lake,Rd,629405,0.238,0.628,0,9.374903,3.7,5 +1259,0,0.320669,1,1,0,2,3,,4,3,Richardson,Rd,631704,1.229,1.55,0,7.696065,3.7,5 +19831,0,0.19882,1,1,0,2,3,,4,3,Commerce,Rd,4104140,12.973,13.171,0,4.771688,3.7,5 +26144,0,0.709728,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.033471,0.15,4 +27236,0,0.636859,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.284605,0.15,4 +27255,0,0.864508,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.748193,0.15,4 +27257,0,0.48982,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.755673,0.15,4 +29689,0,0.981326,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.551826,0.15,4 +30231,0,0.394257,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.462157,0.15,4 +409,0,0.427086,1,1,0,2,4,,4,3,Richardson,Rd,631704,0.6,1.027,0,10.250064,4.5,4.5 +39802,1,0.073832,2,0,0,2,4,,4,3,Oakley Park,Rd,629707,2.859,2.933,0,1.771977,4.5,4.5 +1583,0,0.436821,1,1,1,2,4,,4,3,Oakley Park,Rd,629707,2.336,2.773,0,10.483693,4.5,4.5 +27240,0,0.642225,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.413389,0.15,4 +27242,0,0.293554,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.045305,0.15,4 +1506,0,0.237885,1,1,0,2,3,,4,3,Union Lake,Rd,629405,0,0.238,0,5.70923,3.7,5 +1963,0,0.201748,2,2,0,2,4,,4,3,Richardson,Rd,631704,1.027,1.229,0,4.84194,4.5,4.5 +584,0,0.38333,1,1,0,2,3,,4,3,Union Lake,Rd,629405,0.628,1.012,0,9.199915,3.7,5 +19832,0,0.638913,1,1,0,2,4,,4,3,Commerce,Rd,4104140,12.334,12.973,0,15.33391,4.5,4.5 +19833,0,0.040286,1,1,0,2,4,,4,3,Commerce,Rd,4104140,12.294,12.334,0,0.96687,4.5,4.5 +1660,0,0.251497,1,1,1,2,3,,4,3,Union Lake,Rd,629405,1.012,1.263,0,6.035929,3.7,5 +341,0,0.237378,1,1,0,2,4,,4,3,Richardson,Rd,631704,1.693,1.93,0,5.697078,4.5,4.5 +2109,0,0.428631,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,9.16,9.589,0,10.287146,3.7,5 +2102,0,0.13455,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,3.23,3.364,0,3.229188,4.5,4.5 +807,0,0.143112,1,1,0,2,4,,4,3,Richardson,Rd,631704,1.55,1.693,0,3.434689,4.5,4.5 +25833,0,0.086158,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.06778,0.15,4 +19830,0,0.521344,1,1,0,2,3,,4,3,Commerce,Rd,4104140,13.171,13.693,0,12.512255,3.7,5 +4229,0,0.31947,1,1,0,2,7,,4,3,Keith,Rd,709003,0,0.319,0,7.66729,6.55,4.5 +19828,0,0.128574,1,1,0,2,3,,4,3,Commerce,Rd,4104140,13.705,13.834,0,3.085784,3.7,5 +19829,0,0.012664,1,1,0,2,3,,4,3,Commerce,Rd,4104140,13.693,13.705,0,0.303926,3.7,5 +91,0,0.442348,1,1,0,2,4,,4,3,13 Mile,Rd,607408,15.511,15.954,0,10.616352,4.5,4.5 +640,0,0.406484,1,1,0,2,4,,4,3,Drake,Rd,633804,3.192,3.598,0,9.75561,4.5,4.5 +923,0,0.468577,1,1,0,2,4,,4,3,Farmington,Rd,634005,2.359,2.827,0,11.245847,4.5,4.5 +1329,0,0.533813,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,1.628,2.162,0,12.811503,3.7,5 +1338,0,0.401067,1,1,0,2,4,,4,3,Halsted,Rd,633802,2.146,2.547,0,9.625618,4.5,4.5 +2825,1,0.546576,4,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,6.067,6.613,0,13.117826,3.7,5 +4444,-1,2.943349,0,4,0,1,1,,4,3,W I 696,,710702,1.372,4.315,0,,0.8,7.5 +4806,1,2.987791,4,0,0,1,1,,4,3,E I 696,,710701,1.264,4.251,0,,0.8,7.5 +19780,0,0.501877,2,2,1,2,4,,3,3,Grand River,,4104142,15.555,16.056,0,12.045041,6,4.5 +20844,-1,0.548499,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4414623,4.674,5.222,0,13.163971,3.7,5 +24878,0,0.649424,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.586178,0.15,4 +24930,0,0.511118,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.266843,0.15,4 +25950,0,0.501769,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.042455,0.15,4 +26159,0,0.557726,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.385419,0.15,4 +27263,0,0.514979,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.359486,0.15,4 +27267,0,0.544834,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.076022,0.15,4 +28929,0,0.503323,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.079747,0.15,4 +29204,0,0.506647,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.159534,0.15,4 +29217,0,0.512875,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.308993,0.15,4 +29739,0,0.553303,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.279274,0.15,4 +29873,0,0.514827,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.355844,0.15,4 +463,0,0.500824,1,1,0,2,4,,3,3,Halsted,Rd,633802,1.136,1.637,0,12.019783,6,4.5 +854,0,0.375574,1,1,0,2,5,,3,3,11 Mile,Rd,637803,0.154,0.529,0,9.013768,8,4.5 +2072,0,0.259309,1,1,0,2,4,,4,3,Drake,Rd,633804,2.062,2.322,0,6.223417,4.5,4.5 +3232,1,0.421183,2,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,5.07,5.491,0,10.108404,3.7,5 +19784,0,0.360257,2,2,1,2,4,,3,3,Grand River,,4104142,14.56,14.92,0,8.646174,6,4.5 +20351,-1,0.413148,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4414623,3.678,4.091,0,9.915555,3.7,5 +20962,1,0.453244,1,0,0,1,1,RFF,3,3,N M 5/E I 696,RAMP,4410621,0,0.453,0,,0.58,7 +24875,0,0.487403,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.697674,0.15,4 +26183,0,0.60235,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.456391,0.15,4 +27272,0,0.358643,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.607428,0.15,4 +27275,0,0.289984,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.959619,0.15,4 +29629,0,0.461569,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.077661,0.15,4 +912,1,0.132076,1,0,0,2,4,,3,3,Halsted,Rd,639203,0,0.132,0,3.169824,6,4.5 +1418,0,0.482725,1,1,1,2,4,,3,3,Halsted,Rd,633802,0.128,0.611,0,11.585398,6,4.5 +2475,1,0.273907,3,0,0,1,2,,3,3,E M 5,,657303,13.348,13.622,0,,0.58,7 +2758,1,0.391667,2,0,0,1,2,,3,3,E M 5,,657303,12.957,13.348,0,,0.58,7 +3547,-1,0.389943,0,3,0,1,2,,3,3,W M 5,,657304,13.287,13.677,0,,0.58,7 +19788,0,0.089142,2,2,1,2,4,,3,3,Grand River,,4104142,14.314,14.403,0,2.139403,6,4.5 +20842,-1,0.23003,0,2,0,1,2,,3,3,N M 5,,4402006,6.072,6.302,0,,0.58,7 +25065,0,0.370743,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.897838,0.15,4 +27273,0,0.24852,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.964483,0.15,4 +30240,0,0.332703,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.984866,0.15,4 +2435,0,0.09392,2,2,1,2,4,,3,3,10 Mile,Rd,656510,12.438,12.532,0,2.254087,6,4.5 +19790,0,0.221453,2,2,1,2,4,,3,3,Grand River,,4104142,14.027,14.249,0,5.314872,6,4.5 +19789,0,0.065767,2,2,1,2,4,,3,3,Grand River,,4104142,14.249,14.314,0,1.578411,6,4.5 +1987,1,0.168483,1,0,0,1,2,ROF,3,3,E M 5/Grand River,RAMP,633903,0,0.168,0,,2.24,5 +2534,-1,0.220415,0,2,0,1,2,,3,3,W M 5,,657304,13.677,13.897,0,,0.58,7 +2935,1,0.179723,1,0,0,1,2,RON,3,3,Grand River/W M 5,RAMP,657108,0,0.18,0,,1.09,4 +19787,0,0.106527,2,2,1,2,4,,3,3,Grand River,,4104142,14.403,14.51,0,2.556642,6,4.5 +20604,0,0.060792,1,1,0,2,4,,3,3,Halsted,Rd,4404524,0,0.061,0,1.459,6,4.5 +19786,0,0.027544,3,3,1,2,4,,3,3,Grand River,,4104142,14.51,14.538,0,0.661065,6,4.5 +37930,1,0.115502,1,0,0,1,2,RON,3,3,Grand River/W M 5,RAMP,4416467,0,0.116,0,,1.09,4 +19785,0,0.022144,3,3,1,2,4,,3,3,Grand River,,4104142,14.538,14.56,0,0.531446,6,4.5 +922,0,0.453821,1,1,0,2,4,,3,3,Halsted,Rd,633802,0.682,1.136,0,10.891693,6,4.5 +1314,0,0.153654,1,1,0,2,5,,3,3,11 Mile,Rd,637803,0,0.154,0,3.687696,8,4.5 +959,0,0.071308,1,1,1,2,4,,3,3,Halsted,Rd,633802,0.611,0.682,0,1.711402,6,4.5 +862,0,0.195,1,1,0,2,5,,3,3,Hills Tech,Dr,639108,0.831,1.026,0,4.679993,8,4.5 +2009,0,0.163212,1,1,0,2,4,,3,3,Halsted,Rd,633802,1.637,1.8,0,3.91708,6,4.5 +3215,1,0.469397,2,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,4.601,5.07,0,11.265525,5,5 +20544,-1,0.318186,0,2,0,2,3,DIV,3,3,12 Mile,Rd,4414623,3.36,3.678,0,7.636452,5,5 +25052,0,0.398331,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.559934,0.15,4 +1426,1,0.325031,2,0,0,1,1,RFF,3,3,W I 696/E I 96,RAMP,637802,0,0.325,0,,0.58,7 +1743,1,0.383601,2,0,0,1,1,RFF,3,3,W I 96/E I 696,RAMP,634208,1.456,1.839,0,,0.58,7 +25050,0,0.314259,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.542209,0.15,4 +30239,0,0.241918,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.806034,0.15,4 +285,0,0.191427,2,2,1,2,4,,3,3,Halsted,Rd,633802,1.94,2.131,0,4.59425,6,4.5 +1492,0,0.140303,1,1,1,2,4,,3,3,Halsted,Rd,633802,1.8,1.94,0,3.367267,6,4.5 +1847,0,0.01459,2,2,1,2,4,,3,3,Halsted,Rd,633802,2.131,2.146,0,0.350153,6,4.5 +389,0,0.300377,1,1,0,2,5,,3,3,11 Mile,Rd,637803,0.529,0.829,0,7.209037,8,4.5 +1546,0,0.588515,1,1,0,2,4,,3,3,Drake,Rd,633804,1.002,1.59,0,14.124361,6,4.5 +19781,0,0.360354,2,2,1,2,4,,3,3,Grand River,,4104142,15.194,15.555,0,8.648497,6,4.5 +26896,0,0.456307,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.951359,0.15,4 +29681,0,0.570445,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.690674,0.15,4 +19782,0,0.251334,2,2,1,2,4,,3,3,Grand River,,4104142,14.943,15.194,0,6.032018,6,4.5 +19783,0,0.023309,2,2,1,2,4,,3,3,Grand River,,4104142,14.92,14.943,0,0.559411,6,4.5 +620,0,0.171798,1,1,0,2,4,,3,3,Drake,Rd,633804,1.891,2.062,0,4.123162,6,4.5 +1071,0,0.300534,1,1,0,2,4,,3,3,Drake,Rd,633804,1.59,1.891,0,7.212806,6,4.5 +1568,0,0.853536,1,1,0,2,4,,4,3,Drake,Rd,633804,2.322,3.175,0,20.484853,4.5,4.5 +2923,1,0.576274,2,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,5.491,6.067,0,13.830587,3.7,5 +20149,-1,0.582519,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4414623,4.091,4.674,0,13.980446,3.7,5 +27271,0,0.383188,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.1965,0.15,4 +27270,0,0.165678,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.976274,0.15,4 +29872,0,0.182054,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.369297,0.15,4 +1089,0,0.016734,1,1,0,2,4,,4,3,Drake,Rd,633804,3.175,3.192,0,0.401617,4.5,4.5 +88,0,0.414451,1,1,0,2,4,,4,3,13 Mile,Rd,607408,16.535,16.949,0,9.946836,4.5,4.5 +983,0,0.441895,1,1,0,2,4,,4,3,Halsted,Rd,633802,3.141,3.582,0,10.605491,4.5,4.5 +991,0,0.63907,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,2.162,2.8,0,15.337681,3.7,5 +1000,0,0.52979,1,1,0,2,4,,4,3,Drake,Rd,633804,4.192,4.722,0,12.71497,4.5,4.5 +25417,0,0.499984,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.99961,0.15,4 +25917,0,0.521876,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.525022,0.15,4 +28699,0,0.504453,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.106862,0.15,4 +29221,0,0.501107,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.026575,0.15,4 +87,0,0.277401,1,1,0,2,4,,4,3,13 Mile,Rd,607408,16.949,17.226,0,6.657634,4.5,4.5 +1444,0,0.550498,1,1,0,2,4,,4,3,Halsted,Rd,633802,2.59,3.141,0,13.211964,4.5,4.5 +25854,0,0.490676,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.776236,0.15,4 +873,0,0.043366,1,1,0,2,4,,4,3,Halsted,Rd,633802,2.547,2.59,0,1.040776,4.5,4.5 +524,0,0.423555,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,3.159,3.582,0,10.16532,3.7,5 +2070,0,0.373534,1,1,0,2,4,,4,3,Halsted,Rd,633802,3.768,4.142,0,8.964827,4.5,4.5 +519,0,0.186037,1,1,0,2,4,,4,3,Halsted,Rd,633802,3.582,3.768,0,4.464887,4.5,4.5 +453,0,0.249724,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,2.909,3.159,0,5.993384,3.7,5 +1212,0,0.108768,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,2.8,2.909,0,2.610431,3.7,5 +90,0,0.467957,1,1,0,2,4,,4,3,13 Mile,Rd,607408,15.954,16.422,0,11.230968,4.5,4.5 +1471,0,0.506321,1,1,0,2,4,,4,3,Drake,Rd,633804,3.686,4.192,0,12.151714,4.5,4.5 +27258,0,0.498084,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.95401,0.15,4 +27265,0,0.51527,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.366476,0.15,4 +89,0,0.11339,1,1,0,2,4,,4,3,13 Mile,Rd,607408,16.422,16.535,0,2.721349,4.5,4.5 +1983,0,0.088399,1,1,0,2,4,,4,3,Drake,Rd,633804,3.598,3.686,0,2.12157,4.5,4.5 +674,0,0.408617,1,1,0,2,4,,4,3,Drake,Rd,633804,4.794,5.202,0,9.806807,4.5,4.5 +27279,0,0.494753,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.874069,0.15,4 +538,0,0.071874,1,1,0,2,4,,4,3,Drake,Rd,633804,4.722,4.794,0,1.724967,4.5,4.5 +135,0,0.286661,1,1,0,2,4,,4,3,Drake,Rd,633804,5.202,5.489,0,6.879874,4.5,4.5 +349,0,0.371395,1,1,0,2,5,,4,3,Power,Rd,634001,0.937,1.308,0,8.913469,5.8,4.5 +1376,0,0.408037,1,1,0,2,4,,4,3,Farmington,Rd,634005,1.951,2.359,0,9.7929,4.5,4.5 +2090,0,0.532518,1,1,0,2,4,,4,3,Farmington,Rd,634005,0.817,1.349,0,12.780434,4.5,4.5 +3029,0,0.157177,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,7.065,7.222,0,3.77225,3.7,5 +24879,0,0.283762,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.810289,0.15,4 +27268,0,0.638224,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.317386,0.15,4 +27269,0,0.540609,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.974609,0.15,4 +677,0,0.204181,1,1,1,2,5,,3,3,Shiawassee,,633209,0,0.204,0,4.900355,8,4.5 +19779,0,0.130835,2,2,1,2,4,,3,3,Grand River,,4104142,16.056,16.187,0,3.140043,6,4.5 +2535,0,0.068484,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,6.613,6.682,0,1.643617,3.7,5 +27628,0,0.1824,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.377612,0.15,4 +3347,0,0.383668,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,6.682,7.065,0,9.208036,3.7,5 +246,0,0.299033,1,1,0,2,4,,4,3,10 Mile,Rd,633409,0,0.299,0,7.176803,4.5,4.5 +550,0,0.48483,1,1,0,2,4,,4,3,Farmington,Rd,634005,0.332,0.817,0,11.635913,4.5,4.5 +724,0,0.429893,1,1,0,2,5,,4,3,Power,Rd,634001,0.507,0.937,0,10.317428,5.8,4.5 +24877,0,0.303265,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.278358,0.15,4 +24883,0,0.310242,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.445818,0.15,4 +25865,0,0.509671,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.232105,0.15,4 +399,0,0.132707,1,1,0,2,4,,4,3,Farmington,Rd,634005,0.199,0.332,0,3.18497,4.5,4.5 +24880,0,0.041479,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,0.995495,0.15,4 +1165,0,0.20101,1,1,0,2,5,,4,3,Power,Rd,634001,0.306,0.507,0,4.824234,5.8,4.5 +1308,0,0.263366,1,1,0,2,4,,3,3,10 Mile,Rd,633409,0.4,0.664,0,6.320773,6,4.5 +1805,0,0.101553,1,1,0,2,4,,4,3,10 Mile,Rd,633409,0.299,0.4,0,2.437265,4.5,4.5 +24882,0,0.134631,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.231132,0.15,4 +1886,0,0.358301,1,1,0,2,4,,4,3,Farmington,Rd,634005,1.593,1.951,0,8.599217,4.5,4.5 +2027,0,0.500711,1,1,0,2,4,,4,3,11 Mile,Rd,634509,0,0.501,0,12.017067,4.5,4.5 +2562,0,0.272097,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,7.222,7.494,0,6.530324,3.7,5 +27276,0,0.548094,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.154258,0.15,4 +27729,0,0.351408,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.433799,0.15,4 +1110,0,0.236945,1,1,0,2,4,,4,3,Farmington,Rd,634005,1.356,1.593,0,5.686688,4.5,4.5 +1590,0,0.006777,1,1,0,2,4,,4,3,Farmington,Rd,634005,1.349,1.356,0,0.162642,4.5,4.5 +26175,0,0.385571,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.253713,0.15,4 +3532,0,0.38044,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,7.494,7.875,0,9.130562,3.7,5 +29677,0,0.341238,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.189715,0.15,4 +94,0,0.340167,2,2,0,2,4,,4,3,13 Mile,Rd,607408,14.616,14.956,0,8.164018,4.5,4.5 +1753,0,0.30195,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,0.767,1.069,0,7.246798,3.7,5 +1933,0,0.393652,1,1,0,2,4,,4,3,Farmington,Rd,634005,3.362,3.756,0,9.447646,4.5,4.5 +27261,0,0.506846,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.164306,0.15,4 +27280,0,0.382241,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.17378,0.15,4 +27281,0,0.22109,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.30616,0.15,4 +27422,0,0.640017,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.360407,0.15,4 +30238,0,0.236945,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.68667,0.15,4 +93,0,0.509978,1,1,0,2,4,,4,3,13 Mile,Rd,607408,14.956,15.466,0,12.239475,4.5,4.5 +374,0,0.497012,1,1,0,2,4,,4,3,Farmington,Rd,634005,2.865,3.362,0,11.928287,4.5,4.5 +27264,0,0.502184,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.05241,0.15,4 +29201,0,0.509018,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.216422,0.15,4 +92,0,0.045332,1,1,0,2,4,,4,3,13 Mile,Rd,607408,15.466,15.511,0,1.087967,4.5,4.5 +465,0,0.038264,1,1,0,2,4,,4,3,Farmington,Rd,634005,2.827,2.865,0,0.918335,4.5,4.5 +949,0,0.424645,1,1,0,2,4,,4,3,Farmington,Rd,634005,3.896,4.321,0,10.191473,4.5,4.5 +37742,-1,0.031318,0,2,0,2,3,,4,3,Farmington,Rd,4416317,0.043,0.074,0,0.751637,3.7,5 +27259,0,0.514418,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.346034,0.15,4 +27260,0,0.504314,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.103546,0.15,4 +511,0,0.064294,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,1.564,1.628,0,1.543053,3.7,5 +1410,0,0.140762,1,1,0,2,4,,4,3,Farmington,Rd,634005,3.756,3.896,0,3.378296,4.5,4.5 +37741,1,0.030938,2,0,0,2,3,,4,3,Farmington,Rd,634005,4.365,4.396,0,0.742522,3.7,5 +95,0,0.199403,2,2,0,2,4,,4,3,13 Mile,Rd,607408,14.417,14.616,0,4.785675,4.5,4.5 +26158,0,0.547966,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.151193,0.15,4 +27266,0,0.555673,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.336151,0.15,4 +96,0,0.183899,2,2,0,2,4,,4,3,13 Mile,Rd,607408,14.233,14.417,0,4.413566,4.5,4.5 +97,0,0.127838,2,2,0,2,4,,4,3,13 Mile,Rd,607408,14.105,14.233,0,3.06811,4.5,4.5 +2131,0,0.153329,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,0.613,0.767,0,3.679899,3.7,5 +26155,0,0.390478,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.371479,0.15,4 +731,0,0.328427,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,2.193,2.522,0,7.882258,4.5,4.5 +1049,0,0.602161,1,1,0,2,4,,4,3,Halsted,Rd,632404,0.125,0.727,0,14.451864,4.5,4.5 +3203,0,1.070806,1,1,0,2,3,,4,3,Pontiac,Trl,657404,11.851,12.922,0,25.699333,3.7,5 +3394,0,0.816131,1,1,0,2,5,,4,3,Old Orchard,Trl,668002,0,0.816,0,19.587134,5.8,4.5 +37710,-1,0.037269,0,2,0,2,3,,4,3,Drake,Rd,4415863,0,0.037,0,0.89445,3.7,5 +19825,0,0.895949,1,1,0,2,3,,4,3,Commerce,Rd,4104140,15.535,16.431,0,21.502779,3.7,5 +25046,0,0.50658,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.157921,0.15,4 +25836,0,0.315838,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.580122,0.15,4 +27282,0,0.560222,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.445323,0.15,4 +27284,0,0.597432,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.338364,0.15,4 +27286,0,0.584946,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.038703,0.15,4 +1404,0,0.337569,1,1,0,2,5,GRV,4,3,Halsted,Rd,633802,5.584,5.921,0,8.101664,6.55,4.5 +37709,1,0.033688,2,0,0,2,3,,4,3,Drake,Rd,633804,6.164,6.198,0,0.808504,3.7,5 +2045,0,0.527948,1,1,0,2,5,GRV,4,3,Walnut Lake,Rd,622906,0.957,1.485,0,12.670741,6.55,4.5 +3827,0,0.556524,1,1,1,2,3,,4,3,Maple,Rd,683906,3.656,4.212,0,13.356571,3.7,5 +25047,0,0.638413,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.321919,0.15,4 +25835,0,0.585348,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.048357,0.15,4 +25838,0,0.522893,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.549442,0.15,4 +27238,0,0.677243,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.253833,0.15,4 +3829,0,0.108519,1,1,1,2,3,,4,3,Maple,Rd,683906,3.256,3.364,0,2.604447,3.7,5 +3830,0,0.345739,1,1,1,2,3,,4,3,Maple,Rd,683906,2.91,3.256,0,8.297739,3.7,5 +3831,0,0.043155,1,1,1,2,3,,4,3,Maple,Rd,683906,2.867,2.91,0,1.035729,3.7,5 +1923,0,0.438569,1,1,0,2,5,GRV,4,3,Halsted,Rd,633802,5.146,5.584,0,10.525653,6.55,4.5 +3828,0,0.291386,1,1,1,2,3,,4,3,Maple,Rd,683906,3.364,3.656,0,6.993263,3.7,5 +942,0,0.228412,1,1,0,2,5,GRV,4,3,Halsted,Rd,633802,5.921,6.15,0,5.481892,6.55,4.5 +1234,0,0.531701,1,1,0,2,4,,4,3,Drake,Rd,633804,5.633,6.164,0,12.760818,4.5,4.5 +1170,0,0.270633,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,1.923,2.193,0,6.495202,4.5,4.5 +1536,0,0.310563,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,1.612,1.923,0,7.453508,4.5,4.5 +27283,0,0.728729,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.489501,0.15,4 +27289,0,0.518564,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.445537,0.15,4 +27288,0,0.548499,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.16398,0.15,4 +1521,0,0.12518,1,1,0,2,4,,4,3,Halsted,Rd,632404,0,0.125,0,3.004317,4.5,4.5 +878,0,0.325053,1,1,0,2,4,,4,3,Drake,Rd,633804,6.894,7.219,0,7.801284,4.5,4.5 +1342,0,0.127607,1,1,0,2,4,,4,3,Drake,Rd,633804,6.766,6.894,0,3.062567,4.5,4.5 +367,0,0.503894,1,1,0,2,4,,4,3,Green Lake,Rd,631903,1.158,1.662,0,12.093448,4.5,4.5 +19826,0,0.772602,1,1,0,2,3,,4,3,Commerce,Rd,4104140,14.763,15.535,0,18.542456,3.7,5 +25832,0,0.494439,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.86653,0.15,4 +27125,0,0.887941,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.310574,0.15,4 +27290,0,0.066021,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.58451,0.15,4 +29690,0,0.62203,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.928722,0.15,4 +29754,0,0.84224,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.213755,0.15,4 +886,0,0.278228,1,1,0,2,4,,4,3,Green Lake,Rd,631903,0.478,0.756,0,6.677482,4.5,4.5 +1347,0,0.293562,1,1,0,2,4,,4,3,Green Lake,Rd,631903,0.184,0.478,0,7.04548,4.5,4.5 +3222,0,0.231852,1,1,0,2,3,,4,3,Pontiac,Trl,657404,11.323,11.555,0,5.564446,3.7,5 +1856,0,0.184306,1,1,0,2,4,,4,3,Green Lake,Rd,631903,0,0.184,0,4.423341,4.5,4.5 +3036,0,0.231653,1,1,0,2,3,,4,3,Pontiac,Trl,657404,11.092,11.323,0,5.559675,3.7,5 +2913,0,0.29648,1,1,0,2,3,,4,3,Pontiac,Trl,657404,11.555,11.851,0,7.115531,3.7,5 +420,0,0.402679,1,1,0,2,4,,4,3,Green Lake,Rd,631903,0.756,1.158,0,9.66429,4.5,4.5 +1926,0,0.11709,1,1,0,2,4,,4,3,Green Lake,Rd,631903,1.662,1.779,0,2.810165,4.5,4.5 +1884,0,0.19817,1,1,0,2,4,,4,3,Hiller,Rd,632709,0.304,0.502,0,4.756072,4.5,4.5 +598,0,0.304277,1,1,0,2,5,,4,3,Hiller,Rd,632709,0,0.304,0,7.302643,5.8,4.5 +579,0,0.236258,1,1,0,2,5,,4,3,Willow,Rd,629505,2.501,2.738,0,5.670181,5.8,4.5 +626,0,0.197287,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,3.257,3.455,0,4.734887,4.5,4.5 +1527,0,0.210016,1,1,0,2,4,,4,3,Farmington,Rd,634005,5.804,6.014,0,5.04039,4.5,4.5 +37725,-1,0.049702,0,2,0,2,3,,4,3,Maple,Rd,4415865,0,0.05,0,1.19286,3.7,5 +25445,0,0.508664,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.207926,0.15,4 +26003,0,0.526455,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.634921,0.15,4 +27277,0,0.513286,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.318868,0.15,4 +27287,0,0.467818,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.227635,0.15,4 +27686,0,0.5637,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.528809,0.15,4 +844,0,0.342672,1,1,0,2,4,,4,3,Farmington,Rd,634005,4.993,5.335,0,8.224121,4.5,4.5 +3824,0,0.292823,1,1,1,2,3,,4,3,Maple,Rd,683906,4.92,5.213,0,7.02774,3.7,5 +25053,0,0.523775,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.570604,0.15,4 +3825,0,0.27302,1,1,1,2,3,,4,3,Maple,Rd,683906,4.647,4.92,0,6.552472,3.7,5 +37726,1,0.035726,2,0,0,2,3,,4,3,Maple,Rd,683906,5.264,5.3,0,0.857416,3.7,5 +1833,0,0.41205,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,2.845,3.257,0,9.889189,4.5,4.5 +269,0,0.323864,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,2.522,2.845,0,7.772734,4.5,4.5 +27285,0,0.484011,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.616275,0.15,4 +3822,0,0.426691,1,1,1,2,3,,4,3,Maple,Rd,683906,5.6,6.027,0,10.240582,3.7,5 +25054,0,0.55817,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.396092,0.15,4 +552,0,0.280894,1,1,1,2,4,,4,3,Walnut Lake,Rd,622906,3.661,3.942,0,6.741457,4.5,4.5 +26002,0,0.426925,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.24619,0.15,4 +30236,0,0.595494,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.291848,0.15,4 +30237,0,0.543431,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.042338,0.15,4 +1056,0,0.478406,1,1,0,2,4,,4,3,Farmington,Rd,634005,6.014,6.492,0,11.481733,4.5,4.5 +2153,0,0.206532,1,1,1,2,4,,4,3,Walnut Lake,Rd,622906,3.455,3.661,0,4.956764,4.5,4.5 +2897,0,0.994527,1,1,0,2,3,,4,3,Pontiac,Trl,657404,12.922,13.916,0,23.868646,3.7,5 +3069,0,0.901916,1,1,0,2,5,,4,3,Old Orchard,Trl,668002,0.816,1.718,0,21.645983,5.8,4.5 +25981,0,0.80239,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.257357,0.15,4 +25982,0,0.353549,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.485178,0.15,4 +911,0,0.397561,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,8.087,8.485,0,9.541457,3.7,5 +2905,0,0.603088,1,1,0,2,3,,4,3,Pontiac,Trl,657404,13.916,14.519,0,14.474101,3.7,5 +574,0,0.280132,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,0.916,1.196,0,6.723169,3.7,5 +1543,0,1.00802,1,1,0,2,5,,4,3,Willow,Rd,629505,0.705,1.713,0,24.192478,5.8,4.5 +1776,0,0.611942,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,0.334,0.945,0,14.686616,4.5,4.5 +3515,0,0.544012,1,1,0,2,4,,4,3,Andersonville,Rd,650409,0.706,1.25,0,13.056295,4.5,4.5 +3589,0,0.276012,2,2,1,2,3,,4,3,Highland,Rd,648906,13.266,13.541,0,6.624297,3.7,5 +3609,0,0.517866,2,2,1,2,3,,4,3,Dixie,Hwy,689103,1.831,2.348,0,12.428784,3.7,5 +4100,0,0.401255,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,4.876,5.277,0,9.630118,5.8,4.5 +4105,0,0.396448,1,1,0,2,5,GRV,4,3,Pontiac Lake,Rd,703707,2.737,3.134,0,9.51476,6.55,4.5 +4146,0,0.352918,1,1,0,2,4,,4,3,Crescent Lake,Rd,699308,1.285,1.638,0,8.470037,4.5,4.5 +4622,0,0.279939,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,4.949,5.228,0,6.718539,3.7,5 +37691,1,0.016484,1,0,0,2,3,,4,3,Williams Lake,Rd,4463015,0,0.017,0,0.395616,3.7,5 +4759,0,1.162671,1,1,0,2,5,,4,3,Hatchery,Rd,4462999,0.126,1.289,0,27.904109,5.8,4.5 +4804,0,0.505177,1,1,0,2,4,,4,3,Airport,Rd,696506,1.007,1.512,0,12.124253,4.5,4.5 +25716,0,0.572737,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.745696,0.15,4 +26064,0,0.608669,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.608066,0.15,4 +27175,0,0.808945,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.414684,0.15,4 +27293,0,0.851306,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.431343,0.15,4 +27296,0,0.826215,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.829149,0.15,4 +27297,0,0.708975,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.015403,0.15,4 +27300,0,0.472594,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.342259,0.15,4 +27305,0,0.224057,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.377356,0.15,4 +27306,0,0.828342,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.880216,0.15,4 +27307,0,0.881111,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.146653,0.15,4 +27312,0,0.698299,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.759187,0.15,4 +27314,0,0.623615,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.966763,0.15,4 +27318,0,0.455719,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.937254,0.15,4 +27321,0,0.521586,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.518068,0.15,4 +282,0,0.617879,1,1,0,2,5,,4,3,Farnsworth,St,632308,0.233,0.851,0,14.829104,5.8,4.5 +565,0,1.089274,1,1,0,2,5,,4,3,Cooley Lake,Rd,4416312,1.515,2.604,0,26.142586,5.8,4.5 +802,0,0.568209,1,1,0,2,4,,4,3,Union Lake,Rd,629405,3.821,4.389,0,13.637016,4.5,4.5 +1215,0,0.86024,1,1,1,2,3,,4,3,Williams Lake,Rd,4463020,1.132,1.992,0,20.645757,3.7,5 +1252,0,1.004827,1,1,0,2,4,,4,3,Union Lake,Rd,629405,2.816,3.821,0,24.115851,4.5,4.5 +1330,0,1.060538,1,1,0,2,5,,4,3,Oxbow Lake,Rd,630010,1.013,2.073,0,25.452916,5.8,4.5 +1433,0,0.839821,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,2.12,2.959,0,20.155704,4.5,4.5 +1513,0,0.209701,1,1,0,2,4,,4,3,Wise,Rd,630008,1.658,1.868,0,5.032826,4.5,4.5 +2182,0,0.760251,2,2,1,2,3,,4,3,Highland,Rd,648906,11.594,12.354,0,18.246018,3.7,5 +25187,0,1.039488,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.947722,0.15,4 +25723,0,1.031486,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.755659,0.15,4 +25727,0,1.193004,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.632102,0.15,4 +27301,0,1.052443,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.258641,0.15,4 +27311,0,0.700869,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.820855,0.15,4 +27326,0,0.547737,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.145698,0.15,4 +27328,0,0.8031,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.274395,0.15,4 +27329,0,0.403253,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.678075,0.15,4 +1021,0,0.423048,1,1,0,2,5,,4,3,Cooley Lake,Rd,4416312,1.092,1.515,0,10.153147,5.8,4.5 +1739,0,0.403936,1,1,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.588,0.992,0,9.694454,5.8,4.5 +37668,-1,0.041221,0,1,0,2,4,,4,3,Bogie Lake,Rd,4415866,0,0.041,0,0.989297,4.5,4.5 +2024,0,1.158451,1,1,0,2,4,,4,3,Wise,Rd,630008,0.5,1.658,0,27.802832,4.5,4.5 +27110,0,1.007268,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.174434,0.15,4 +27323,0,0.771633,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.519191,0.15,4 +27324,0,0.949526,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.788614,0.15,4 +171,0,0.410256,1,1,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.178,0.588,0,9.846133,5.8,4.5 +998,0,0.547051,1,1,0,2,5,,4,3,Carroll Lake,Rd,629303,1,1.547,0,13.129216,5.8,4.5 +2069,0,0.085615,1,1,0,2,4,,4,3,Bogie Lake,Rd,630007,0.915,1,0,2.05475,4.5,4.5 +37666,0,0.383177,1,1,1,2,4,,4,3,Bogie Lake,Rd,630101,0.09,0.473,0,9.196246,4.5,4.5 +1469,0,0.50256,1,1,0,2,5,,4,3,Carroll Lake,Rd,629303,0.498,1,0,12.061452,5.8,4.5 +27327,0,0.691074,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.585771,0.15,4 +1493,0,0.100429,1,1,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.992,1.092,0,2.410287,5.8,4.5 +682,0,0.497197,1,1,0,2,5,,4,3,Round Lake,Rd,630503,0.318,0.815,0,11.93273,5.8,4.5 +27322,0,0.429522,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.308531,0.15,4 +1123,0,0.318493,1,1,0,2,5,,4,3,Round Lake,Rd,630503,0,0.318,0,7.643827,5.8,4.5 +750,0,0.314687,1,1,0,2,5,,4,3,Hutchins,St,632306,0.047,0.362,0,7.552499,5.8,4.5 +1645,0,0.047277,1,1,0,2,5,,4,3,Hutchins,St,632306,0,0.047,0,1.134651,5.8,4.5 +397,0,0.245622,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,1.653,1.899,0,5.894938,4.5,4.5 +25726,0,0.51866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.447852,0.15,4 +864,0,0.54017,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,1.113,1.653,0,12.96409,4.5,4.5 +1299,0,0.325951,1,1,0,2,4,,4,3,Union Lake,Rd,629405,4.536,4.861,0,7.822813,4.5,4.5 +1795,0,0.146868,1,1,0,2,4,,4,3,Union Lake,Rd,629405,4.389,4.536,0,3.524825,4.5,4.5 +1952,0,0.22098,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,1.899,2.12,0,5.30353,4.5,4.5 +25725,0,0.60558,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.533914,0.15,4 +2183,0,0.270686,2,2,1,2,3,,4,3,Highland,Rd,648906,11.323,11.594,0,6.496455,3.7,5 +840,0,0.705273,1,1,0,2,5,,4,3,Willow,Rd,629505,0,0.705,0,16.926563,5.8,4.5 +1497,0,0.306622,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,0.254,0.56,0,7.358936,3.7,5 +1697,0,1.132615,1,1,1,2,3,,4,3,Williams Lake,Rd,4463020,0,1.132,0,27.182762,3.7,5 +1741,0,0.281702,1,1,0,2,4,,4,3,Union Lake,Rd,629405,2.535,2.816,0,6.760853,4.5,4.5 +2138,0,0.253725,2,2,0,2,3,,4,3,Cooley Lake,Rd,630603,0,0.254,0,6.089391,3.7,5 +273,0,0.542926,1,1,0,2,4,,4,3,Wise,Rd,630008,1.868,2.41,0,13.030227,4.5,4.5 +2155,0,0.406043,1,1,1,2,3,,4,3,Union Lake,Rd,629405,1.68,2.086,0,9.745039,3.7,5 +746,0,0.229014,1,1,1,2,3,,4,3,Union Lake,Rd,629405,1.451,1.68,0,5.49633,3.7,5 +1650,0,0.365491,1,1,1,2,3,,4,3,Union Lake,Rd,629405,2.086,2.451,0,8.771778,3.7,5 +1179,0,0.083624,2,2,0,2,3,,4,3,Union Lake,Rd,629405,2.451,2.535,0,2.006965,3.7,5 +1027,0,0.35594,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,0.56,0.916,0,8.542562,3.7,5 +24820,0,0.479725,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.513403,0.15,4 +25733,0,1.026871,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.6449,0.15,4 +316,0,0.312548,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,2.032,2.344,0,7.501159,3.7,5 +1059,0,0.438508,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,2.546,2.984,0,10.524197,3.7,5 +2031,0,0.54749,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,2.959,3.506,0,13.139754,4.5,4.5 +2181,0,0.362964,2,2,1,2,3,,4,3,Highland,Rd,648906,12.354,12.716,0,8.71114,3.7,5 +4103,0,0.284015,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,3.918,4.202,0,6.816366,5.8,4.5 +25152,0,0.545294,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.08705,0.15,4 +27325,0,0.729728,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.513477,0.15,4 +315,0,0.177265,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,0.156,0.334,0,4.254357,4.5,4.5 +777,0,0.156441,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,0,0.156,0,3.754584,4.5,4.5 +778,0,0.039781,2,2,0,2,3,,4,3,Williams Lake,Rd,4463020,1.992,2.032,0,0.954736,3.7,5 +37690,-1,0.428652,0,2,0,2,3,DIV,4,3,Williams Lake,Rd,4463013,0,0.429,0,10.28765,3.7,5 +4102,0,0.674178,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,4.202,4.876,0,16.180268,5.8,4.5 +37688,0,0.171423,2,2,1,2,3,,4,3,Williams Lake,Rd,4463020,3.19,3.362,0,4.11415,3.7,5 +26046,0,0.46487,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.156881,0.15,4 +27303,0,0.579548,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.909142,0.15,4 +1530,0,0.201504,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,2.344,2.546,0,4.836098,3.7,5 +608,0,0.206063,1,1,1,2,3,,4,3,Williams Lake,Rd,4463020,2.984,3.19,0,4.945509,3.7,5 +37686,0,0.549247,2,2,1,2,3,,4,3,Highland,Rd,648906,12.716,13.266,0,13.181921,3.7,5 +37716,1,0.041708,2,0,0,2,3,,4,3,Maple,Rd,683906,4.282,4.324,0,1.000992,3.7,5 +27302,0,0.081204,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.948894,0.15,4 +37689,1,0.435048,2,0,0,2,3,DIV,4,3,Williams Lake,Rd,4463020,3.362,3.797,0,10.441152,3.7,5 +2754,0,2.099498,1,1,0,2,4,,5,3,White Lake,Rd,649303,6.124,8.222,0,50.387941,3,4 +3621,0,1.168971,1,1,0,2,5,,5,3,Andersonville,Rd,688910,1.302,2.471,0,28.0553,3.7,5 +4119,0,0.769723,1,1,0,2,3,,4,3,Nelsey,Rd,701610,0,0.77,0,18.473343,3.7,5 +27330,0,1.224881,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.397134,0.15,4 +2440,0,1.260087,1,1,0,2,5,,5,3,Teggerdine,Rd,650405,1.776,3.036,0,30.242085,3.7,5 +4106,0,0.598102,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,1.733,2.331,0,14.354447,5.8,4.5 +27208,0,1.445582,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.693974,0.15,4 +2453,0,0.473467,1,1,0,2,5,,4,3,Teggerdine,Rd,650405,1.303,1.776,0,11.363201,5.8,4.5 +26953,0,0.021662,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,0.519877,0.15,4 +4643,0,0.331057,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,4.618,4.949,0,7.945368,3.7,5 +37694,0,0.126381,1,1,1,2,5,,4,3,Hatchery,Rd,4462999,0,0.126,0,3.033134,5.8,4.5 +37693,-1,0.156395,0,2,0,2,3,DIV,4,3,Williams Lake,Rd,4463013,0.429,0.585,0,3.753484,3.7,5 +27304,0,0.109305,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.623316,0.15,4 +37692,1,0.082712,2,0,0,2,3,DIV,4,3,Williams Lake,Rd,4463020,3.797,3.879,0,1.985087,3.7,5 +3960,0,0.989197,1,1,0,2,3,,4,3,Maceday Lake,Rd,704908,2.604,3.593,0,23.740717,3.7,5 +27295,0,0.702072,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.849737,0.15,4 +37091,-1,0.146409,0,3,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0.538,0.685,0,3.513811,3.7,5 +37075,1,0.088317,2,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,0.831,0.919,0,2.119608,3.7,5 +37076,1,0.092618,3,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,0.919,1.011,0,2.222833,3.7,5 +3561,0,0.126387,1,1,0,2,4,,4,3,Andersonville,Rd,650409,0,0.126,0,3.033286,4.5,4.5 +21974,0,0.055318,1,1,1,2,3,,4,3,White Lake,Rd,4412733,0.662,0.717,0,1.327637,3.7,5 +26961,0,0.471344,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.31226,0.15,4 +27299,0,0.549331,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.183953,0.15,4 +3620,0,0.339054,1,1,0,2,5,,5,3,Andersonville,Rd,688910,2.471,2.81,0,8.137284,3.7,5 +21962,0,0.127658,1,1,1,2,4,,5,3,White Lake,Rd,4412877,0,0.128,0,3.063796,3,4 +3619,0,0.26856,1,1,0,2,4,,5,3,Andersonville,Rd,688910,2.81,3.078,0,6.445448,3,4 +2747,0,0.093763,1,1,0,2,4,,4,3,Andersonville,Rd,649303,8.622,8.716,0,2.250323,4.5,4.5 +3517,0,0.579542,1,1,0,2,4,,4,3,Andersonville,Rd,650409,0.126,0.706,0,13.908996,4.5,4.5 +21977,0,0.661794,1,1,1,2,3,,4,3,White Lake,Rd,4412733,0,0.662,0,15.883058,3.7,5 +3610,0,0.363634,2,2,1,2,3,,4,3,Dixie,Hwy,689103,1.467,1.831,0,8.727227,3.7,5 +21973,0,0.937574,1,1,0,2,3,,4,3,White Lake,Rd,4412733,0.717,1.654,0,22.501784,3.7,5 +26962,0,0.629295,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.103086,0.15,4 +26963,0,0.499753,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.994083,0.15,4 +3611,0,0.16548,2,2,1,2,3,,4,3,Dixie,Hwy,689103,1.302,1.467,0,3.971509,3.7,5 +21972,0,0.255403,1,1,0,2,5,,4,3,White Lake,Rd,4412733,1.654,1.91,0,6.129672,5.8,4.5 +1161,0,0.484209,1,1,0,2,4,,4,3,Cass Elizabeth,Rd,630806,0,0.484,0,11.621017,4.5,4.5 +1220,0,0.628861,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,2.46,3.089,0,15.092656,4.5,4.5 +1918,0,0.945586,1,1,0,2,5,,4,3,Hospital,Rd,630709,1.07,2.016,0,22.694075,5.8,4.5 +2117,0,0.501146,1,1,0,2,3,,4,3,Cooley Lake,Rd,630603,3.042,3.543,0,12.027497,3.7,5 +3511,0,0.537843,2,2,1,2,3,,4,3,Highland,Rd,648906,15.016,15.554,0,12.908235,3.7,5 +4088,0,0.499415,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,6.816,7.315,0,11.98596,5.8,4.5 +4988,0,0.866571,1,1,0,2,5,,4,3,Lochaven,Rd,708805,1.407,2.274,0,20.797707,5.8,4.5 +25135,0,1.010069,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.241659,0.15,4 +25147,0,0.385612,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.254696,0.15,4 +25270,0,0.550753,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.218065,0.15,4 +25275,0,0.614781,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.754735,0.15,4 +27177,0,0.363181,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.716355,0.15,4 +27332,0,0.246667,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.920002,0.15,4 +29484,0,0.624156,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.979751,0.15,4 +29485,0,1.200712,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.817096,0.15,4 +403,0,0.604713,1,1,0,2,4,,4,3,Hiller,Rd,632709,1.509,2.113,0,14.513103,4.5,4.5 +1067,0,0.098994,1,1,0,2,5,,4,3,Willow,Rd,629505,1.713,1.812,0,2.375861,5.8,4.5 +1512,0,0.327359,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,1.737,2.064,0,7.856617,3.7,5 +4994,0,0.654434,1,1,0,2,5,,4,3,Lochaven,Rd,708805,0.587,1.241,0,15.706407,5.8,4.5 +5091,0,0.352649,1,1,0,2,5,,4,3,Greer,Rd,706201,0,0.353,0,8.463572,5.8,4.5 +5077,0,0.507902,1,1,0,2,5,,4,3,Lochaven,Rd,708805,0,0.508,0,12.189649,5.8,4.5 +27313,0,0.72068,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.296327,0.15,4 +5050,0,0.079032,1,1,0,2,5,,4,3,Lochaven,Rd,708805,0.508,0.587,0,1.896759,5.8,4.5 +361,0,1.07065,1,1,0,2,5,,4,3,Hospital,Rd,630709,0,1.07,0,25.695611,5.8,4.5 +2106,0,0.540785,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,1.196,1.737,0,12.97884,3.7,5 +25144,0,0.739201,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.740831,0.15,4 +4993,0,0.166323,1,1,0,2,5,,4,3,Lochaven,Rd,708805,1.241,1.407,0,3.991741,5.8,4.5 +462,0,0.194437,1,1,0,2,4,,4,3,Hiller,Rd,632709,1.315,1.509,0,4.666484,4.5,4.5 +5085,0,0.40368,1,1,0,2,5,,4,3,Greer,Rd,706201,0.353,0.756,0,9.688313,5.8,4.5 +27127,0,0.095117,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.28281,0.15,4 +27128,0,0.366879,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.805086,0.15,4 +29686,0,0.526503,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.636073,0.15,4 +616,0,0.150344,1,1,0,2,5,,4,3,Willow,Rd,629505,1.812,1.962,0,3.608256,5.8,4.5 +921,0,0.142138,1,1,0,2,4,,4,3,Hiller,Rd,632709,1.173,1.315,0,3.411302,4.5,4.5 +589,0,0.471417,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,2.57,3.042,0,11.314007,3.7,5 +1040,0,0.506569,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,2.064,2.57,0,12.157665,3.7,5 +25145,0,0.755481,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.131546,0.15,4 +1960,0,0.416883,1,1,0,2,4,,4,3,Hiller,Rd,632709,2.113,2.53,0,10.005183,4.5,4.5 +359,0,0.346652,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,1.603,1.95,0,8.319654,4.5,4.5 +2140,0,0.503571,1,1,0,2,5,,4,3,Hospital,Rd,630709,2.016,2.519,0,12.085709,5.8,4.5 +3539,0,0.36958,2,2,1,2,3,,4,3,Highland,Rd,648906,14.178,14.548,0,8.869926,3.7,5 +4097,0,0.37819,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,5.931,6.309,0,9.076571,5.8,4.5 +4814,0,0.502946,1,1,0,2,4,,4,3,Airport,Rd,696506,0,0.503,0,12.070699,4.5,4.5 +25155,0,0.488328,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.719879,0.15,4 +25332,0,0.549772,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.194526,0.15,4 +1281,0,0.499762,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,0.945,1.445,0,11.994282,4.5,4.5 +4945,0,0.967346,1,1,0,2,5,,4,3,Lochaven,Rd,708805,2.274,3.241,0,23.216307,5.8,4.5 +827,0,0.158105,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,1.445,1.603,0,3.794525,4.5,4.5 +1637,0,0.508829,1,1,0,2,5,,4,3,Hospital,Rd,630709,2.519,3.028,0,12.211895,5.8,4.5 +3582,0,0.381548,2,2,1,2,3,,4,3,Highland,Rd,648906,13.541,13.923,0,9.15716,3.7,5 +4099,0,0.431937,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,5.277,5.709,0,10.366484,5.8,4.5 +25153,0,0.548438,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.162502,0.15,4 +4098,0,0.222044,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,5.709,5.931,0,5.329052,5.8,4.5 +27320,0,0.130037,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.120892,0.15,4 +25154,0,0.100787,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.418888,0.15,4 +3566,0,0.255235,2,2,1,2,3,,4,3,Highland,Rd,648906,13.923,14.178,0,6.125648,3.7,5 +1705,0,0.510769,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,1.95,2.46,0,12.258462,4.5,4.5 +25146,0,0.428698,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.288749,0.15,4 +3529,0,0.364461,2,2,1,2,3,,4,3,Highland,Rd,648906,14.548,14.912,0,8.747075,3.7,5 +4096,0,0.506777,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,6.309,6.816,0,12.162648,5.8,4.5 +4813,0,0.504495,1,1,0,2,4,,4,3,Airport,Rd,696506,0.503,1.007,0,12.107886,4.5,4.5 +25150,0,0.463461,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.123067,0.15,4 +25333,0,0.066636,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.599275,0.15,4 +3523,0,0.10421,2,2,1,2,3,,4,3,Highland,Rd,648906,14.912,15.016,0,2.501051,3.7,5 +721,0,0.960947,1,1,0,2,4,,4,3,Cass Elizabeth,Rd,630806,0.484,1.445,0,23.062729,4.5,4.5 +25136,0,0.518952,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.454838,0.15,4 +25271,0,0.569292,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.663011,0.15,4 +20950,0,0.827954,1,1,0,2,5,,4,3,Parkway,St,4412689,0,0.828,0,19.870907,5.8,4.5 +1695,0,0.164127,1,1,0,2,4,,4,3,Cass Elizabeth,Rd,630806,1.445,1.609,0,3.939049,4.5,4.5 +595,0,0.557794,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,3.526,4.083,0,13.387048,3.7,5 +3478,0,0.568435,2,2,1,2,3,,4,3,Highland,Rd,648906,15.554,16.122,0,13.642436,3.7,5 +4085,0,0.180184,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,7.563,7.743,0,4.324425,5.8,4.5 +4153,0,0.63004,1,1,0,2,4,,4,3,Crescent Lake,Rd,699308,0,0.63,0,15.120953,4.5,4.5 +25137,0,0.549822,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.195732,0.15,4 +25156,0,0.262061,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.289461,0.15,4 +25272,0,0.418489,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.043732,0.15,4 +25273,0,0.601649,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.439583,0.15,4 +318,0,0.218155,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,3.308,3.526,0,5.235708,4.5,4.5 +1285,0,0.507922,1,1,0,2,3,,4,3,Cooley Lake,Rd,630603,3.543,4.05,0,12.190128,3.7,5 +830,0,0.17918,1,1,0,2,3,,4,3,Cooley Lake,Rd,630603,4.05,4.23,0,4.300309,3.7,5 +780,0,0.2188,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,3.089,3.308,0,5.251208,4.5,4.5 +4152,0,0.482584,1,1,0,2,4,,4,3,Crescent Lake,Rd,699308,0.63,1.112,0,11.582019,4.5,4.5 +25158,0,0.187725,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.505395,0.15,4 +4087,0,0.248117,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,7.315,7.563,0,5.954808,5.8,4.5 +4151,0,0.172662,1,1,0,2,4,,4,3,Crescent Lake,Rd,699308,1.112,1.285,0,4.143894,4.5,4.5 +2127,0,0.091266,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,4.083,4.174,0,2.190383,3.7,5 +25248,0,0.480024,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.520578,0.15,4 +25269,0,0.508126,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.195036,0.15,4 +3452,0,0.49389,2,2,1,2,3,,4,3,Highland,Rd,648906,16.308,16.802,0,11.853353,3.7,5 +3455,0,0.186325,2,2,1,2,3,,4,3,Highland,Rd,648906,16.122,16.308,0,4.471803,3.7,5 +4079,0,0.549721,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,7.96,8.51,0,13.193305,4.5,4.5 +4083,0,0.217114,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,7.743,7.96,0,5.210727,5.8,4.5 +3451,0,0.193921,2,2,1,2,3,,4,3,Highland,Rd,648906,16.802,16.996,0,4.654114,3.7,5 +25138,0,0.304436,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.306469,0.15,4 +25139,0,0.203553,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.885272,0.15,4 +2454,0,0.221764,1,1,0,2,4,,4,3,Maybee,Rd,653405,0.901,1.123,0,5.32234,4.5,4.5 +3259,0,0.536343,1,1,0,2,4,,4,3,Airport,Rd,653108,0,0.536,0,12.872231,4.5,4.5 +3941,0,0.408194,2,2,1,2,3,,4,3,Dixie,Hwy,689103,4.253,4.661,0,9.796656,3.7,5 +4442,0,0.187013,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,0.888,1.075,0,4.48832,4.5,4.5 +4610,0,0.51166,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,6.848,7.36,0,12.279835,3.7,5 +4732,0,0.182055,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,2.41,2.592,0,4.369322,4.5,4.5 +24898,0,0.471397,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.313528,0.15,4 +25159,0,0.568676,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.648224,0.15,4 +25161,0,0.52223,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.533516,0.15,4 +25165,0,0.33474,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.033767,0.15,4 +25171,0,0.79849,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.16375,0.15,4 +25338,0,1.037138,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.891312,0.15,4 +27294,0,0.657731,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.785532,0.15,4 +27319,0,0.501078,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.025882,0.15,4 +4619,0,0.18549,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,6.117,6.303,0,4.451769,3.7,5 +4754,0,0.495927,1,1,0,2,5,,4,3,Hatchery,Rd,4462999,1.366,1.862,0,11.902247,5.8,4.5 +4802,0,0.543267,1,1,0,2,4,,4,3,Airport,Rd,696506,2.015,2.558,0,13.038418,4.5,4.5 +25163,0,0.662152,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.891642,0.15,4 +26066,0,0.703124,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.874971,0.15,4 +27308,0,0.538868,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.932832,0.15,4 +27310,0,0.674191,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.180595,0.15,4 +25149,0,0.323369,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.760852,0.15,4 +27315,0,0.521413,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.513901,0.15,4 +4757,0,0.07764,1,1,0,2,5,,4,3,Hatchery,Rd,4462999,1.289,1.366,0,1.863372,5.8,4.5 +4620,0,0.332367,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,5.785,6.117,0,7.976802,3.7,5 +4621,0,0.55687,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,5.228,5.785,0,13.364868,3.7,5 +4734,0,0.387842,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,2.022,2.41,0,9.308205,4.5,4.5 +4803,0,0.503116,1,1,0,2,4,,4,3,Airport,Rd,696506,1.512,2.015,0,12.074794,4.5,4.5 +27316,0,0.502395,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.057474,0.15,4 +27317,0,0.608861,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.612673,0.15,4 +4747,0,0.160373,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,1.862,2.022,0,3.848953,4.5,4.5 +4613,0,0.284059,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,6.38,6.664,0,6.817425,3.7,5 +4794,0,0.376303,1,1,0,2,4,,4,3,Airport,Rd,696506,2.663,3.039,0,9.031281,4.5,4.5 +25162,0,0.429138,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.299311,0.15,4 +27333,0,0.288626,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.927022,0.15,4 +4801,0,0.105076,1,1,0,2,4,,4,3,Airport,Rd,696506,2.558,2.663,0,2.521825,4.5,4.5 +4618,0,0.076973,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,6.303,6.38,0,1.84736,3.7,5 +4611,0,0.184844,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,6.664,6.848,0,4.436249,3.7,5 +3170,0,0.628294,1,1,0,2,4,,4,3,Andersonville,Rd,650409,1.423,2.051,0,15.079063,4.5,4.5 +3423,0,0.901606,1,1,0,2,4,,4,3,Maybee,Rd,653405,0,0.901,0,21.638552,4.5,4.5 +3606,0,0.48121,2,2,1,2,3,,4,3,Dixie,Hwy,689103,2.722,3.203,0,11.549041,3.7,5 +25336,0,1.011554,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.277299,0.15,4 +27338,0,0.318902,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.653652,0.15,4 +3480,0,0.173489,1,1,0,2,4,,4,3,Andersonville,Rd,650409,1.25,1.423,0,4.163733,4.5,4.5 +27340,0,0.476688,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.44051,0.15,4 +1228,0,0.381178,2,2,1,2,3,,4,3,Ortonville,Rd,627809,0,0.381,0,9.148271,3.7,5 +3608,0,0.136597,2,2,1,2,3,,4,3,Dixie,Hwy,689103,2.348,2.485,0,3.278338,3.7,5 +3607,0,0.237395,2,2,1,2,3,,4,3,Dixie,Hwy,689103,2.485,2.722,0,5.697482,3.7,5 +3605,0,0.611636,2,2,1,2,3,,4,3,Dixie,Hwy,689103,3.203,3.815,0,14.679261,3.7,5 +5096,0,0.256425,2,2,1,2,3,,4,3,Dixie,Hwy,689103,3.997,4.253,0,6.154189,3.7,5 +26968,0,0.59449,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.267754,0.15,4 +3151,0,0.294487,1,1,1,2,4,,4,3,Andersonville,Rd,650409,2.051,2.346,0,7.06768,4.5,4.5 +2590,0,0.220003,1,1,0,2,4,,4,3,Airport,Rd,653108,0.536,0.756,0,5.280083,4.5,4.5 +3604,0,0.182082,2,2,1,2,3,,4,3,Dixie,Hwy,689103,3.815,3.997,0,4.369956,3.7,5 +26969,0,0.505898,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.141542,0.15,4 +4164,0,0.228001,1,1,0,2,5,,4,3,Frembes,Rd,698604,0.521,0.749,0,5.472014,5.8,4.5 +4170,0,0.374159,1,1,0,2,5,,4,3,Frembes,Rd,698604,0,0.374,0,8.979808,5.8,4.5 +4685,0,0.404243,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,3.156,3.56,0,9.70183,4.5,4.5 +4778,0,0.145063,2,2,1,2,3,,4,3,Walton,Blvd,696509,0.262,0.407,0,3.481506,3.7,5 +5054,0,0.159993,2,2,1,2,3,,4,3,Dixie,Hwy,689103,6.045,6.205,0,3.839836,3.7,5 +5062,0,0.218572,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.588,5.806,0,5.24573,3.7,5 +25167,0,0.376939,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.046532,0.15,4 +26128,0,0.232502,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.58005,0.15,4 +27334,0,0.439353,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.544468,0.15,4 +29755,0,0.167972,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.031322,0.15,4 +4144,0,0.503014,1,1,0,2,4,,4,3,Crescent Lake,Rd,699308,1.638,2.141,0,12.072328,4.5,4.5 +4689,0,0.289054,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,2.867,3.156,0,6.9373,4.5,4.5 +4717,0,0.274772,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,2.592,2.867,0,6.594527,4.5,4.5 +4134,0,0.16964,1,1,0,2,5,,4,3,Floradale,Rd,700007,0,0.17,0,4.07136,5.8,4.5 +4606,0,0.106814,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,7.401,7.507,0,2.563542,3.7,5 +5078,0,0.1669,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.304,5.471,0,4.005603,3.7,5 +5092,0,0.500231,2,2,1,2,3,,4,3,Dixie,Hwy,689103,4.661,5.161,0,12.005533,3.7,5 +19598,1,0.080235,1,0,0,1,3,RSF,4,3,Dixie/Williams Lake Connector,,1915507,0,0.08,0,,3.7,5 +25170,0,0.336573,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.077748,0.15,4 +27336,0,0.257141,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.171391,0.15,4 +4608,0,0.040749,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,7.36,7.401,0,0.977967,3.7,5 +27337,0,0.240653,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.775682,0.15,4 +4169,0,0.147279,1,1,0,2,5,,4,3,Frembes,Rd,698604,0.374,0.521,0,3.534699,5.8,4.5 +5075,0,0.116426,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.471,5.588,0,2.794232,3.7,5 +4792,0,0.178703,2,2,1,2,3,,4,3,Walton,Blvd,696509,0,0.179,0,4.288875,3.7,5 +25169,0,0.3318,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.96319,0.15,4 +5082,0,0.057084,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.247,5.304,0,1.370005,3.7,5 +5090,0,0.086154,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.161,5.247,0,2.067688,3.7,5 +4789,0,0.082954,2,2,1,2,3,,4,3,Walton,Blvd,696509,0.179,0.262,0,1.990905,3.7,5 +26143,0,0.605396,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.529493,0.15,4 +4684,0,0.24769,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,3.56,3.808,0,5.944562,4.5,4.5 +4155,0,0.177549,1,1,0,2,5,,4,3,Frembes,Rd,698604,0.982,1.159,0,4.261182,5.8,4.5 +4445,0,0.293196,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,0.287,0.58,0,7.036697,4.5,4.5 +4158,0,0.232726,1,1,0,2,5,,4,3,Frembes,Rd,698604,0.749,0.982,0,5.585417,5.8,4.5 +4461,0,0.250932,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,0,0.251,0,6.022378,4.5,4.5 +5059,0,0.238649,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.806,6.045,0,5.72758,3.7,5 +26130,0,0.219582,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.26996,0.15,4 +27342,0,0.018186,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,0.436466,0.15,4 +4457,0,0.036467,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,0.251,0.287,0,0.875204,4.5,4.5 +4443,0,0.307295,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,0.58,0.888,0,7.375091,4.5,4.5 +4775,0,0.222134,2,2,1,2,3,,4,3,Walton,Blvd,696509,0.407,0.629,0,5.331204,3.7,5 +2658,0,0.346633,1,1,0,2,4,,4,3,Maybee,Rd,653405,1.869,2.216,0,8.319197,4.5,4.5 +4362,0,0.50407,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,2.349,2.853,0,12.097681,4.5,4.5 +4368,0,0.328821,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,2.02,2.349,0,7.891713,4.5,4.5 +26054,0,0.625248,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.005942,0.15,4 +26970,0,0.273061,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.553468,0.15,4 +26973,0,0.397966,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.55118,0.15,4 +30182,0,0.851026,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.424628,0.15,4 +2677,0,0.465528,1,1,0,2,4,,4,3,Maybee,Rd,653405,1.404,1.869,0,11.17266,4.5,4.5 +4361,0,0.03717,2,2,1,2,4,,4,3,Sashabaw,Rd,697309,2.853,2.89,0,0.892071,4.5,4.5 +27309,0,0.541989,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.007728,0.15,4 +3281,0,0.280953,1,1,0,2,4,,4,3,Maybee,Rd,653405,1.123,1.404,0,6.742865,4.5,4.5 +4419,0,0.721025,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,1.3,2.02,0,17.304603,4.5,4.5 +4432,0,0.225014,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,1.075,1.3,0,5.40033,4.5,4.5 +771,0,0.332449,1,1,0,2,3,,5,3,Ortonville,Rd,627809,10.096,10.428,0,7.978766,1.7,4 +1873,-1,5.06942,0,3,0,1,1,,5,3,S I 75,,646106,34.021,39.088,0,,1.02,7 +1999,-1,3.672303,0,3,0,1,1,,5,3,S I 75,,646106,42.577,46.248,0,,1.02,7 +2254,1,4.080061,3,0,0,1,1,,5,3,N I 75,,647308,42.121,46.2,0,,1.02,7 +2258,1,4.77457,3,0,0,1,1,,5,3,N I 75,,647308,34.081,38.854,0,,1.02,7 +2412,0,1.238017,1,1,0,2,5,GRV,5,3,Groveland,,646602,3.769,5.006,0,29.712401,5.55,5 +2414,0,0.412865,1,1,0,2,5,GRV,5,3,Groveland,,646602,2.555,2.968,0,9.908758,5.55,5 +2417,0,2.054534,1,1,0,2,5,GRV,5,3,Groveland,,646602,0,2.054,0,49.308815,5.55,5 +2448,0,0.135554,2,2,0,2,4,,5,3,Dixie,Hwy,651802,10.648,10.783,0,3.253297,3,4 +2511,0,1.555426,1,1,0,2,5,GRV,5,3,Belford,Rd,649602,3.344,4.899,0,37.330215,5.55,5 +2592,0,0.939054,1,1,0,2,5,,5,3,Oak Hill,Rd,651801,0.766,1.705,0,22.537296,3.7,5 +2613,0,0.588484,2,2,0,2,4,,5,3,Dixie,Hwy,651802,2.95,3.538,0,14.123607,3,4 +2633,0,1.239489,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,10.303,11.542,0,29.747746,3,4 +2689,0,1.256312,1,1,0,2,5,GRV,5,3,Rattalee Lake,Rd,649405,7.191,8.447,0,30.151497,5.55,5 +2700,0,0.67377,1,1,0,2,5,,4,3,Davisburg,Rd,649404,7.224,7.898,0,16.17049,5.8,4.5 +3017,0,0.949407,1,1,0,2,5,GRV,5,3,Hadley,Rd,654204,6.112,7.061,0,22.785756,5.55,5 +3032,0,0.520391,1,1,0,2,5,,5,3,Andersonville,Rd,679309,2.697,3.217,0,12.489372,3.7,5 +4237,0,0.585127,1,1,0,2,5,GRV,5,3,Sashabaw,Rd,697309,13.46,14.045,0,14.043056,5.55,5 +21043,0,1.952213,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,0.682,2.633,0,46.853107,3,4 +25320,0,1.420885,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.101248,0.15,4 +26085,0,1.451517,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.836405,0.15,4 +26923,0,0.869525,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.868605,0.15,4 +27349,0,1.657749,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,39.785972,0.15,4 +27350,0,0.347073,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,8.329742,0.15,4 +27353,0,0.973199,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.356782,0.15,4 +309,0,0.980939,1,1,0,2,5,GRV,5,3,Wildwood,Rd,646202,0,0.981,0,23.542527,5.55,5 +909,-1,3.020203,0,3,0,1,1,,5,3,S I 75,,646106,39.318,42.337,0,,1.02,7 +2256,1,2.749679,3,0,0,1,1,,5,3,N I 75,,647308,39.094,41.843,0,,1.02,7 +2419,0,1.077592,1,1,0,2,5,,5,3,Tripp,Rd,646509,0,1.077,0,25.862217,3.7,5 +2530,0,1.239014,2,2,0,2,4,,5,3,Dixie,Hwy,651802,7.072,8.31,0,29.73634,3,4 +2553,0,1.305232,2,2,0,2,4,,5,3,Dixie,Hwy,651802,4.328,5.633,0,31.325566,3,4 +2578,0,1.140617,1,1,0,2,5,,5,3,Holly,Rd,651609,1.791,2.932,0,27.374811,3.7,5 +2646,0,0.935696,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,6.385,7.321,0,22.456713,3,4 +2691,0,2.334665,1,1,0,2,6,GRV,5,3,Rattalee Lake,Rd,649405,3.522,5.856,0,56.031961,5.55,5 +2709,0,1.369202,1,1,0,2,5,,5,3,Davisburg,Rd,649404,2.771,4.14,0,32.860854,3.7,5 +3557,0,0.248563,1,1,0,2,5,,4,3,East,,650907,0,0.249,0,5.965521,5.8,4.5 +27346,0,0.89609,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.506155,0.15,4 +27372,0,0.816698,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.600752,0.15,4 +2692,0,1.277487,1,1,0,2,6,GRV,5,3,Rattalee Lake,Rd,649405,2.245,3.522,0,30.659683,5.55,5 +2710,0,0.765116,1,1,0,2,5,,5,3,Davisburg,Rd,649404,2.006,2.771,0,18.362788,3.7,5 +3116,0,1.032021,1,1,0,2,4,,5,3,Milford,Rd,679302,1.588,2.62,0,24.768497,3,4 +3270,0,1.792009,1,1,0,2,5,,5,3,Holly,Rd,651609,0,1.791,0,43.008216,3.7,5 +26925,0,0.325317,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,7.807607,0.15,4 +26927,0,1.103052,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.473251,0.15,4 +2712,0,1.252255,1,1,0,2,5,,5,3,Davisburg,Rd,649404,0.754,2.006,0,30.054113,3.7,5 +3454,0,1.588458,1,1,0,2,4,,5,3,Milford,Rd,679302,0,1.588,0,38.122985,3,4 +2829,0,0.24004,1,1,0,2,4,,5,3,Milford,Rd,660907,0,0.24,0,5.760968,3,4 +26926,0,0.975083,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.401998,0.15,4 +2694,0,0.344187,1,1,0,2,6,GRV,5,3,Rattalee Lake,Rd,649405,1.901,2.245,0,8.260494,5.55,5 +3592,0,0.251954,1,1,0,2,5,,4,3,Maple,,650805,0.606,0.858,0,6.046889,5.8,4.5 +26929,0,0.256599,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.158366,0.15,4 +2653,0,1.969961,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,4.175,6.144,0,47.279057,3,4 +26083,0,2.094671,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,50.272116,0.15,4 +2654,0,0.610087,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,3.565,4.175,0,14.642077,3,4 +3584,0,0.372768,1,1,0,2,5,,4,3,Elm,,650808,0.37,0.743,0,8.946442,5.8,4.5 +2551,0,0.621881,1,1,0,2,5,GRV,5,3,Quick,Rd,649505,1.298,1.92,0,14.925141,5.55,5 +3353,0,0.050631,1,1,0,2,5,,5,3,Fagan,Rd,651504,0,0.051,0,1.215143,3.7,5 +26913,0,1.095695,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.296675,0.15,4 +2255,1,0.278456,3,0,0,1,1,,5,3,N I 75,,647308,41.843,42.121,0,,1.02,7 +3286,1,0.3186,1,0,0,1,1,ROF,5,3,N I 75/Grange Hall,RAMP,651605,0,0.319,0,,2.24,5 +27369,0,1.357186,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.572469,0.15,4 +2428,1,0.181592,1,0,0,1,1,RON,5,3,Grange Hall/N I 75,RAMP,646205,0,0.182,0,,1.09,4 +2652,0,0.22855,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,6.144,6.373,0,5.485189,3,4 +3330,1,0.187106,1,0,0,1,1,RON,5,3,Grange Hall/S I 75,RAMP,651604,0,0.187,0,,1.09,4 +3338,1,0.296783,1,0,0,1,1,ROF,5,3,S I 75/Grange Hall,RAMP,651603,0,0.297,0,,2.24,5 +448,-1,0.239702,0,3,0,1,1,,5,3,S I 75,,646106,42.337,42.577,0,,1.02,7 +2651,0,0.012608,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,6.373,6.385,0,0.302582,3,4 +2496,0,1.319743,2,2,0,2,4,,5,3,Dixie,Hwy,651802,9.328,10.648,0,31.673839,3,4 +3598,0,1.018236,2,2,0,2,4,,5,3,Dixie,Hwy,651802,8.31,9.328,0,24.437665,3,4 +2533,0,0.51441,1,1,0,2,5,,5,3,Holly,Rd,651609,4.501,5.015,0,12.345836,3.7,5 +2690,0,0.781674,1,1,0,2,5,GRV,5,3,Rattalee Lake,Rd,649405,5.856,6.637,0,18.760168,5.55,5 +2701,0,2.500368,1,1,0,2,5,,5,3,Davisburg,Rd,649404,4.725,7.224,0,60.008829,3.7,5 +3113,0,2.032373,1,1,0,2,5,,5,3,Andersonville,Rd,679309,0.666,2.697,0,48.776957,3.7,5 +25318,0,1.095022,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.28053,0.15,4 +29801,0,1.108105,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.594516,0.15,4 +29802,0,1.189291,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,28.542978,0.15,4 +2708,0,0.578882,1,1,0,2,5,,5,3,Davisburg,Rd,649404,4.14,4.718,0,13.893157,3.7,5 +3453,0,0.665757,1,1,0,2,5,,5,3,Andersonville,Rd,679309,0,0.666,0,15.978171,3.7,5 +2703,0,0.006324,1,1,0,2,5,,5,3,Davisburg,Rd,649404,4.718,4.725,0,0.151767,3.7,5 +2257,1,0.240014,3,0,0,1,1,,5,3,N I 75,,647308,38.854,39.094,0,,1.02,7 +2950,1,0.231327,1,0,0,1,1,ROF,5,3,N I 75/Holly,RAMP,651709,0,0.231,0,,2.24,5 +3201,0,1.124793,1,1,0,2,5,,5,3,Holly,Rd,651609,2.932,4.056,0,26.995042,3.7,5 +26956,0,1.467947,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.230734,0.15,4 +27376,0,0.325919,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,7.822066,0.15,4 +1366,-1,0.229798,0,3,0,1,1,,5,3,S I 75,,646106,39.088,39.318,0,,1.02,7 +3058,1,0.373593,1,0,0,1,1,RON,5,3,Holly/S I 75,RAMP,651704,0,0.373,0,,1.09,4 +3194,0,0.27702,1,1,0,2,5,,5,3,Holly,Rd,651609,4.066,4.343,0,6.648469,3.7,5 +3199,0,0.009697,1,1,0,2,5,,5,3,Holly,Rd,651609,4.056,4.066,0,0.232735,3.7,5 +3042,1,0.227699,1,0,0,1,1,ROF,5,3,S I 75/Holly,RAMP,651705,0,0.228,0,,2.24,5 +3117,0,0.148609,1,1,0,2,5,,5,3,Holly,Rd,651609,4.352,4.501,0,3.566613,3.7,5 +2975,1,0.138904,1,0,0,1,1,RON,5,3,Holly/N I 75,RAMP,651708,0,0.139,0,,1.09,4 +3134,0,0.00958,1,1,0,2,5,,5,3,Holly,Rd,651609,4.343,4.352,0,0.229914,3.7,5 +2926,0,0.765999,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,0,0.766,0,18.383965,5.55,5 +3081,0,0.996652,1,1,0,2,5,,5,3,Holly,Rd,651609,5.015,6.011,0,23.91964,3.7,5 +3318,0,0.103032,2,2,0,2,4,,5,3,Dixie,Hwy,651802,4.225,4.328,0,2.472774,3,4 +27361,0,0.415981,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,9.983555,0.15,4 +3382,0,0.687052,2,2,0,2,4,,5,3,Dixie,Hwy,651802,3.538,4.225,0,16.489245,3,4 +2413,0,0.70424,1,1,0,2,5,GRV,5,3,Groveland,,646602,3.065,3.769,0,16.901771,5.55,5 +2427,0,0.76519,1,1,0,2,5,,5,3,McGinnis,Rd,646403,0,0.765,0,18.364553,3.7,5 +2432,0,0.997651,1,1,0,2,5,GRV,5,3,Wildwood,Rd,646202,2.048,3.046,0,23.943616,5.55,5 +2637,0,1.254455,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,8.8,10.054,0,30.106914,3,4 +2641,0,0.983494,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,7.817,8.8,0,23.603863,3,4 +27345,0,1.5665,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.595996,0.15,4 +27356,0,1.44187,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.604888,0.15,4 +27373,0,1.525748,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.617949,0.15,4 +2537,0,1.439444,2,2,0,2,4,,5,3,Dixie,Hwy,651802,5.633,7.072,0,34.546658,3,4 +2643,0,0.382522,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,7.434,7.817,0,9.180539,3,4 +27374,0,0.964033,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.136786,0.15,4 +2645,0,0.11345,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,7.321,7.434,0,2.722803,3,4 +27354,0,0.596676,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.320231,0.15,4 +27348,0,1.127974,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.071383,0.15,4 +21969,0,0.073673,1,1,0,2,5,GRV,5,3,Groveland,,4412746,0,0.074,0,1.768148,5.55,5 +2433,0,1.029567,1,1,0,2,5,GRV,5,3,Wildwood,Rd,646202,1.019,2.048,0,24.70962,5.55,5 +2426,0,0.790807,1,1,0,2,7,GRV,5,3,McGinnis,Rd,646403,0.765,1.556,0,18.979371,5.55,5 +2434,0,0.03835,1,1,0,2,5,GRV,5,3,Wildwood,Rd,646202,0.981,1.019,0,0.920408,5.55,5 +2431,0,1.001003,1,1,0,2,5,GRV,5,3,Barron,Rd,646204,0,1.001,0,24.024081,5.55,5 +2635,0,0.249646,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,10.054,10.303,0,5.991505,3,4 +2429,0,0.763049,1,1,0,2,5,GRV,5,3,Barron,Rd,646204,1.231,1.994,0,18.313173,5.55,5 +2430,0,0.23078,1,1,0,2,5,GRV,5,3,Barron,Rd,646204,1.001,1.231,0,5.538715,5.55,5 +2478,-1,0.448382,0,2,0,2,4,DIV,5,3,Dixie,Hwy,651802,11.201,11.649,0,10.761168,3,4 +3384,1,0.489863,1,0,0,1,1,RON,5,3,Dixie/N I 75,RAMP,651407,0,0.49,0,,1.09,4 +20099,1,0.421791,2,0,0,2,3,DIV,5,3,Dixie,Hwy,4400697,0.202,0.623,0,10.122981,1.7,4 +24576,-1,0.436147,0,2,0,2,3,DIV,,3,Dixie,Hwy,0,0,0,0,10.467517,1.7,4 +24579,1,0.360793,2,0,0,2,3,DIV,,3,Dixie,Hwy,0,0,0,0,8.659024,1.7,4 +34114,1,1.013753,3,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34115,-1,1.320984,0,3,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +24574,-1,0.332909,0,3,0,1,1,,,3,S I 75,,0,0,0,0,,1.02,7 +24575,1,0.421581,1,0,0,1,1,ROF,,3,S I 75/Dixie,RAMP,0,0,0,0,,2.24,5 +770,-1,0.349143,0,3,0,1,1,,5,3,S I 75,,646106,46.248,46.597,0,,1.02,7 +2253,1,0.207842,3,0,0,1,1,,5,3,N I 75,,647308,46.2,46.408,0,,1.02,7 +2420,1,0.219262,1,0,0,1,1,RON,5,3,Dixie/S I 75,RAMP,646503,0,0.219,0,,1.09,4 +3462,-1,0.17491,0,2,0,2,3,DIV,5,3,Dixie,Hwy,651802,11.649,11.824,0,4.197841,1.7,4 +3488,-1,0.094545,0,2,0,2,3,DIV,5,3,Dixie,Hwy,651802,11.824,11.919,0,2.269089,1.7,4 +10862,1,0.251492,1,0,0,1,1,ROF,5,3,S I 75/Dixie,RAMP,1503207,0.422,0.673,0,,2.24,5 +19215,1,0.186075,1,0,0,1,1,ROF,5,3,N I 75/Dixie,RAMP,1813110,0,0.186,0,,2.24,5 +24577,1,0.093902,1,0,0,1,1,ROF,,3,N I 75/Dixie,RAMP,0,0,0,0,,2.24,5 +24578,1,0.097984,2,0,0,2,3,DIV,,3,Dixie,Hwy,0,0,0,0,2.351605,1.7,4 +24580,1,0.078229,3,0,0,1,1,,,3,N I 75,,0,0,0,0,,1.02,7 +24581,1,0.068167,1,0,0,1,1,RON,,3,Dixie/N I 75,RAMP,0,0,0,0,,1.09,4 +34116,0,0.674801,2,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +2483,0,0.418049,2,2,0,2,4,,5,3,Dixie,Hwy,651802,10.783,11.201,0,10.033177,3,4 +20296,1,0.201534,2,0,0,2,4,DIV,5,3,Dixie,Hwy,4400697,0,0.202,0,4.836806,3,4 +34113,0,1.0094,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +2416,0,0.449081,1,1,0,2,5,GRV,5,3,Groveland,,646602,2.054,2.503,0,10.777946,5.55,5 +19977,0,0.52118,1,1,0,2,6,GRV,5,3,Van,Rd,3251568,0,0.521,0,12.508311,5.55,5 +2415,0,0.051981,1,1,0,2,5,GRV,5,3,Groveland,,646602,2.503,2.555,0,1.247538,5.55,5 +2418,0,0.037812,1,1,0,2,6,GRV,5,3,Van,Rd,646510,0,0.038,0,0.907494,5.55,5 +20957,0,0.036315,1,1,0,2,6,GRV,5,3,Groveland/Van Cutoff,,4411382,0,0.036,0,0.871567,5.55,5 +339,0,1.468355,1,1,0,2,3,,5,3,Ortonville,Rd,627809,6.271,7.738,0,35.24053,1.7,4 +1261,0,0.757599,1,1,0,2,3,,5,3,Ortonville,Rd,627809,5.022,5.779,0,18.182386,1.7,4 +1998,-1,1.227131,0,3,0,1,1,,4,3,S I 75,,646106,32.334,33.561,0,,0.8,7.5 +2261,1,1.372107,3,0,0,1,1,,4,3,N I 75,,647308,32.3,33.672,0,,0.8,7.5 +2670,0,0.500521,1,1,0,2,5,GRV,5,3,Rattalee Lake,Rd,649405,11.642,12.142,0,12.012511,5.55,5 +2791,0,0.499141,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,5.338,5.837,0,11.979372,5.55,5 +2835,0,2.156512,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,3.182,5.338,0,51.756289,5.55,5 +2934,0,1.477851,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,1.705,3.182,0,35.468425,5.55,5 +4245,0,1.004682,1,1,0,2,4,,5,3,Sashabaw,Rd,697309,8.305,9.309,0,24.11237,3,4 +4962,0,1.356108,1,1,0,2,5,,4,3,Holcomb,Rd,689110,1.301,2.657,0,32.546602,5.8,4.5 +25322,0,1.048718,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.169229,0.15,4 +25328,0,0.91095,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.862793,0.15,4 +25330,0,0.906695,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.760674,0.15,4 +25331,0,0.580856,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,13.940552,0.15,4 +26957,0,0.612442,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.698613,0.15,4 +29784,0,1.505964,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.143128,0.15,4 +2625,0,1.124455,2,2,0,2,4,,5,3,Dixie,Hwy,651802,1.826,2.95,0,26.986919,3,4 +2676,0,1.733175,1,1,0,2,5,GRV,5,3,Rattalee Lake,Rd,649405,9.909,11.642,0,41.59621,5.55,5 +2928,0,1.064389,2,2,1,2,4,,4,3,Dixie,Hwy,651802,0,1.064,0,25.545344,4.5,4.5 +4964,0,1.301309,1,1,0,2,5,,5,3,Holcomb,Rd,689110,0,1.301,0,31.231413,3.7,5 +24593,0,1.886308,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,45.271397,0.15,4 +27364,0,1.109921,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.638098,0.15,4 +27534,0,1.379204,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.100885,0.15,4 +2698,0,0.96678,1,1,0,2,5,,4,3,Davisburg,Rd,649404,7.898,8.864,0,23.202724,5.8,4.5 +3500,0,0.762004,2,2,1,2,4,,4,3,Dixie,Hwy,651802,1.064,1.826,0,18.288095,4.5,4.5 +3623,0,0.171942,1,1,0,2,5,,5,3,Big Lake,Rd,688909,3.411,3.583,0,4.126615,3.7,5 +27101,0,0.730041,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.52099,0.15,4 +27367,0,0.084312,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.023479,0.15,4 +21385,0,0.164956,1,1,0,2,5,,4,3,Bridge Lake,Rd,4414257,0.416,0.581,0,3.958934,5.8,4.5 +2679,0,1.463177,1,1,0,2,5,GRV,5,3,Rattalee Lake,Rd,649405,8.447,9.909,0,35.116239,5.55,5 +27362,0,1.347354,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.336503,0.15,4 +27363,0,0.366594,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,8.798245,0.15,4 +1486,-1,0.279925,0,3,0,1,1,,5,3,S I 75,,646106,33.561,33.841,0,,1.02,7 +2260,1,0.139468,3,0,0,1,1,,4,3,N I 75,,647308,33.672,33.811,0,,0.8,7.5 +3614,0,0.150655,2,2,1,2,3,,5,3,Dixie,Hwy,689103,0.428,0.579,0,3.615708,1.7,4 +3616,0,0.130499,2,2,1,2,3,,5,3,Dixie,Hwy,689103,0.201,0.331,0,3.131966,1.7,4 +4129,1,0.204567,1,0,0,1,1,ROF,4,3,N I 75/Dixie,RAMP,700202,0,0.205,0,,2.24,5 +4135,1,0.251447,1,0,0,1,1,ROF,5,3,S I 75/Dixie,RAMP,700001,0,0.251,0,,2.24,5 +4137,1,0.381454,1,0,0,1,1,RON,5,3,N Dixie/S I 75,RAMP,699910,0,0.381,0,,1.09,4 +4141,1,0.134326,1,0,0,1,1,RON,5,3,N Dixie/N I 75,RAMP,699909,0,0.134,0,,1.09,4 +2259,1,0.270258,3,0,0,1,1,,4,3,N I 75,,647308,33.811,34.081,0,,0.8,7.5 +3618,0,0.149454,2,2,1,2,3,,4,3,Dixie,Hwy,689103,0,0.149,0,3.586902,3.7,5 +4122,1,0.217931,1,0,0,1,1,RON,4,3,S Dixie/N I 75,RAMP,700203,0,0.218,0,,1.09,4 +1011,-1,0.179954,0,3,0,1,1,,5,3,S I 75,,646106,33.841,34.021,0,,1.02,7 +3617,0,0.051187,2,2,1,2,3,,4,3,Dixie,Hwy,689103,0.149,0.201,0,1.228495,3.7,5 +4143,1,0.163392,1,0,0,1,1,RON,5,3,S Dixie/S I 75,RAMP,699908,0,0.163,0,,1.09,4 +3613,0,0.052906,2,2,1,2,3,,5,3,Dixie,Hwy,689103,0.579,0.632,0,1.269747,1.7,4 +3615,0,0.097547,2,2,1,2,3,,5,3,Dixie,Hwy,689103,0.331,0.428,0,2.341117,1.7,4 +25326,0,0.510913,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.261908,0.15,4 +1385,0,1.302241,1,1,0,2,3,,5,3,Ortonville,Rd,627809,7.767,9.069,0,31.253783,1.7,4 +2584,0,0.59394,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,13.709,14.303,0,14.254563,3,4 +25321,0,0.65422,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.701283,0.15,4 +27355,0,1.362584,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.702013,0.15,4 +27357,0,1.242282,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.814763,0.15,4 +2605,0,2.167217,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,11.542,13.709,0,52.013208,3,4 +25329,0,1.669295,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,40.063076,0.15,4 +27351,0,1.447632,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.743178,0.15,4 +29783,0,1.413179,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.916291,0.15,4 +1901,0,0.028767,1,1,0,2,3,,5,3,Ortonville,Rd,627809,7.738,7.767,0,0.690413,1.7,4 +2686,0,0.10479,1,1,0,2,5,,4,3,Mill,,654508,0.382,0.486,0,2.514969,5.8,4.5 +21044,0,0.062433,1,1,0,2,4,,4,3,Oakwood,Rd,4410182,0.619,0.682,0,1.498383,4.5,4.5 +25324,0,0.169852,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.076448,0.15,4 +29787,0,0.126828,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.043862,0.15,4 +469,0,0.594834,1,1,1,2,3,,4,3,Ortonville,Rd,627809,9.097,9.691,0,14.276027,3.7,5 +3569,0,0.354316,1,1,0,2,5,,4,3,Mill,,654508,0,0.354,0,8.503589,5.8,4.5 +21045,0,0.61947,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,0,0.619,0,14.867276,3,4 +2014,0,0.40463,1,1,0,2,3,,5,3,Ortonville,Rd,627809,9.691,10.096,0,9.711129,1.7,4 +2805,0,0.517937,1,1,0,2,5,,4,3,South,St,654506,0.03,0.548,0,12.430477,5.8,4.5 +928,0,0.027578,1,1,1,2,3,,4,3,Ortonville,Rd,627809,9.069,9.097,0,0.661865,3.7,5 +3333,0,0.029692,1,1,0,2,5,,4,3,South,St,654506,0,0.03,0,0.712617,5.8,4.5 +20954,-1,0.020803,0,1,0,2,5,,4,3,Ortonville/South Cutoff,,4411913,0,0.021,0,0.499273,5.8,4.5 +3143,0,0.027368,1,1,0,2,5,,4,3,Mill,,654508,0.354,0.382,0,0.656839,5.8,4.5 +3585,0,0.099326,1,1,0,2,5,,4,3,South,St,654506,0.548,0.647,0,2.383834,5.8,4.5 +910,0,0.422613,1,1,0,2,5,,4,3,Church,St,627002,0.189,0.611,0,10.142718,5.8,4.5 +25323,0,0.074863,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.796723,0.15,4 +585,0,0.569345,1,1,0,2,4,,4,3,Waldon,Rd,627303,0.946,1.515,0,13.664274,4.5,4.5 +1517,0,1.007885,1,1,0,2,3,,5,3,Ortonville,Rd,627809,2.842,3.849,0,24.189237,1.7,4 +1997,-1,1.638517,0,3,0,1,1,,4,3,S I 75,,646106,30.058,31.696,0,,0.8,7.5 +2162,0,1.586314,1,1,0,2,4,,5,3,Clarkston,Rd,627307,0.996,2.582,0,38.071544,3,4 +2264,1,1.590196,3,0,0,1,1,,4,3,N I 75,,647308,30.072,31.662,0,,0.8,7.5 +2786,0,1.507717,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,5.837,7.344,0,36.185203,5.55,5 +4251,0,1.008506,1,1,0,2,4,,5,3,Sashabaw,Rd,697309,5.113,6.121,0,24.204148,3,4 +25334,0,0.952166,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.851974,0.15,4 +25335,0,1.706546,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,40.957114,0.15,4 +25339,0,0.710495,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.051884,0.15,4 +29481,0,1.495785,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.89884,0.15,4 +489,0,0.834482,1,1,0,2,4,,4,3,Clarkston,Rd,627307,0.162,0.996,0,20.027571,4.5,4.5 +1036,0,0.871188,1,1,0,2,4,,4,3,Waldon,Rd,627303,0.075,0.946,0,20.908512,4.5,4.5 +1940,0,0.093279,2,2,0,2,3,,4,3,Ortonville,Rd,627809,1.688,1.781,0,2.238706,3.7,5 +2445,1,0.343803,1,0,0,1,1,ROF,4,3,S I 75/M 15,RAMP,654501,0,0.344,0,,2.24,5 +2672,1,0.394599,1,0,0,1,1,RON,4,3,N M 15/S I 75,RAMP,653709,0,0.395,0,,1.09,4 +3322,1,0.259992,1,0,0,1,1,RON,4,3,S M 15/S I 75,RAMP,654502,0,0.26,0,,1.09,4 +470,0,0.270904,1,1,0,2,3,,4,3,Ortonville,Rd,627809,1.067,1.338,0,6.501689,3.7,5 +948,0,0.161498,1,1,0,2,4,,4,3,Clarkston,Rd,627307,0,0.162,0,3.875945,4.5,4.5 +1409,0,0.15691,1,1,0,2,5,,4,3,Washington,,627305,0,0.157,0,3.765829,5.8,4.5 +25341,0,0.125244,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.005865,0.15,4 +25343,0,0.308405,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.401715,0.15,4 +26964,0,0.192615,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.622763,0.15,4 +26966,0,0.354853,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.516466,0.15,4 +4941,0,0.159958,1,1,0,2,5,,4,3,Holcomb,,689110,2.657,2.817,0,3.838984,5.8,4.5 +845,0,0.254272,1,1,0,2,3,,4,3,Ortonville,Rd,627809,1.338,1.592,0,6.102528,3.7,5 +383,0,0.095491,2,2,0,2,3,,4,3,Ortonville,Rd,627809,1.592,1.688,0,2.291781,3.7,5 +1386,0,0.09452,1,1,0,2,3,,4,3,Ortonville,Rd,627809,0.899,0.993,0,2.268487,3.7,5 +324,0,0.191076,1,1,0,2,3,,4,3,Ortonville,Rd,627809,0.708,0.899,0,4.585814,3.7,5 +1507,0,0.074565,1,1,0,2,4,,4,3,Waldon,Rd,627303,0,0.075,0,1.789564,4.5,4.5 +929,0,0.073814,1,1,0,2,3,,4,3,Ortonville,Rd,627809,0.993,1.067,0,1.771534,3.7,5 +25340,0,0.199523,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.788549,0.15,4 +480,0,0.214707,1,1,0,2,3,,5,3,Ortonville,Rd,627809,2.126,2.341,0,5.152974,1.7,4 +908,-1,0.369054,0,3,0,1,1,,4,3,S I 75,,646106,31.696,32.065,0,,0.8,7.5 +2262,1,0.34113,3,0,0,1,1,,4,3,N I 75,,647308,31.959,32.3,0,,0.8,7.5 +2798,1,0.253056,1,0,0,1,1,RON,5,3,N M 15/N I 75,RAMP,654503,0,0.253,0,,1.09,4 +3153,1,0.374624,1,0,0,1,1,ROF,5,3,N I 75/M 15,RAMP,654504,0,0.375,0,,2.24,5 +447,-1,0.268964,0,3,0,1,1,,4,3,S I 75,,646106,32.065,32.334,0,,0.8,7.5 +1443,0,0.221066,2,2,0,2,3,,5,3,Ortonville,Rd,627809,1.905,2.126,0,5.30558,1.7,4 +3256,1,0.482693,1,0,0,1,1,RON,5,3,S M 15/N I 75,RAMP,654505,0,0.483,0,,1.09,4 +1961,0,0.086661,2,2,0,2,3,,5,3,Ortonville,Rd,627809,1.819,1.905,0,2.079874,1.7,4 +406,0,0.037785,2,2,0,2,3,,4,3,Ortonville,Rd,627809,1.781,1.819,0,0.906831,3.7,5 +2028,0,0.501145,1,1,0,2,3,,5,3,Ortonville,Rd,627809,2.341,2.842,0,12.027469,1.7,4 +2263,1,0.297605,3,0,0,1,1,,4,3,N I 75,,647308,31.662,31.959,0,,0.8,7.5 +25337,0,0.10775,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.586004,0.15,4 +1756,0,1.172966,1,1,0,2,3,,5,3,Ortonville,Rd,627809,3.849,5.022,0,28.151184,1.7,4 +28558,0,1.195353,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,28.688467,0.15,4 +907,-1,0.178568,0,3,0,1,1,,4,3,S I 75,,646106,29.619,29.798,0,,0.8,7.5 +1655,0,0.501656,1,1,0,2,4,,5,3,Clarkston,Rd,627307,2.582,3.083,0,12.039732,3,4 +2265,1,0.30558,3,0,0,1,1,,4,3,N I 75,,647308,29.494,29.8,0,,0.8,7.5 +4112,1,0.349453,1,0,0,1,1,ROF,5,3,N I 75/N Sashabaw,RAMP,703102,0,0.349,0,,2.24,5 +4115,1,0.131033,1,0,0,1,1,RON,4,3,N Sashabaw/S I 75,RAMP,703010,0,0.131,0,,1.09,4 +4252,0,0.9382,2,1,0,2,4,,5,3,Sashabaw,Rd,697309,4.175,5.113,0,22.516809,3,4 +446,-1,0.260713,0,3,0,1,1,,4,3,S I 75,,646106,29.798,30.058,0,,0.8,7.5 +1656,1,0.364981,1,0,0,1,1,ROF,4,3,S I 75/Sashabaw,RAMP,627407,0,0.365,0,,2.24,5 +1767,0,0.499898,1,1,0,2,4,,4,3,Waldon,Rd,627303,1.515,2.014,0,11.99754,4.5,4.5 +4254,0,0.032719,2,2,1,2,4,,5,3,Sashabaw,Rd,697309,4.125,4.158,0,0.785245,3,4 +4270,0,0.178595,1,2,1,2,4,,4,3,Sashabaw,Rd,697309,3.946,4.125,0,4.286277,4.5,4.5 +19599,1,0.227052,1,0,0,1,1,RON,4,3,S Sashabaw/S I 75,RAMP,1849503,0,0.227,0,,1.09,4 +4306,0,0.071309,2,2,1,2,4,,4,3,Sashabaw,Rd,697309,3.858,3.93,0,1.711416,4.5,4.5 +4304,0,0.016739,1,2,1,2,4,,4,3,Sashabaw,Rd,697309,3.93,3.946,0,0.401724,4.5,4.5 +4113,1,0.270004,1,0,0,1,1,RON,5,3,Sashabaw/N I 75,RAMP,703101,0,0.27,0,,1.09,4 +2696,0,0.994818,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,7.367,8.361,0,23.875624,5.55,5 +4248,0,1.668163,1,1,0,2,4,,5,3,Sashabaw,Rd,697309,6.121,7.788,0,40.035922,3,4 +3300,0,0.023001,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,7.344,7.367,0,0.552031,5.55,5 +4246,0,0.516584,1,1,0,2,4,,5,3,Sashabaw,Rd,697309,7.788,8.305,0,12.398008,3,4 +2000,0,1.004506,1,1,0,2,4,,5,3,Seymour Lake,Rd,627107,0.55,1.554,0,24.10815,3,4 +2746,0,2.009825,1,1,0,2,5,GRV,5,3,Hadley,Rd,654204,2.657,4.666,0,48.2358,5.55,5 +29786,0,1.809946,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,43.438703,0.15,4 +449,0,0.550039,1,1,0,2,4,,5,3,Seymour Lake,Rd,627107,0,0.55,0,13.200934,3,4 +812,0,0.491271,1,1,0,2,3,,5,3,Ortonville,Rd,627809,5.779,6.271,0,11.790513,1.7,4 +3212,0,1.34101,1,1,0,2,5,GRV,5,3,Hadley,Rd,654204,4.666,6.007,0,32.184245,5.55,5 +21968,0,0.08015,1,1,0,2,5,GRV,5,3,Hadley,Rd,4412747,0,0.08,0,1.923591,5.55,5 +920,0,1.019014,1,1,0,2,4,,5,3,Seymour Lake,Rd,627107,1.554,2.573,0,24.456347,3,4 +4242,0,1.009929,1,1,0,2,5,,5,3,Sashabaw,Rd,697309,9.309,10.319,0,24.238295,3.7,5 +25325,0,0.501296,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.031098,0.15,4 +29785,0,1.12293,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.950327,0.15,4 +26084,0,0.495539,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.892945,0.15,4 +20959,0,0.084023,1,1,0,2,5,GRV,5,3,Sashabaw,Rd,4410633,0,0.084,0,2.016563,5.55,5 +2411,0,1.60163,1,1,0,2,5,,5,3,Groveland,,646602,5.006,6.608,0,38.439116,3.7,5 +34080,0,0.923055,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +310,0,1.147837,1,1,0,2,3,,5,3,Ortonville,,627809,10.428,11.576,0,27.548092,1.7,4 +21039,0,1.284163,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,3.088,4.371,0,30.819923,3,4 +34079,0,0.987984,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +3341,0,1.032315,1,1,0,2,5,,5,3,Hadley,Rd,654204,7.061,8.093,0,24.775555,3.7,5 +21041,0,0.454525,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,2.633,3.088,0,10.908592,3,4 +27352,0,0.656525,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.756606,0.15,4 +58,0,0.517328,2,2,0,2,4,,3,3,9 Mile,Rd,607709,0.508,1.025,0,12.415875,6,4.5 +201,-1,0.667602,0,3,0,2,3,DIV,3,3,8 Mile,Rd,640807,11.251,11.918,0,16.022448,5,5 +1993,-1,0.769694,0,4,0,1,1,,3,3,S I 75,,646106,0.769,1.539,0,,0.58,7 +2302,1,0.723204,4,0,0,1,1,,3,3,N I 75,,647308,0.791,1.514,0,,0.58,7 +2326,1,0.388247,2,0,0,2,5,,3,3,Chrysler,Dr,646902,0.554,0.942,0,9.317928,8,4.5 +2406,-1,0.347117,0,4,0,2,5,,3,3,Chrysler,Dr,646702,0.556,0.903,0,8.330804,8,4.5 +4531,1,0.132665,1,0,0,1,1,ROF,3,3,N I 75/John R,RAMP,710409,0,0.133,0,,2.24,5 +4545,1,0.15712,1,0,0,1,1,RON,3,3,John R/S I 75,RAMP,710310,0,0.157,0,,1.09,4 +11006,1,0.263748,3,0,0,1,1,,3,1,E I 94,,1576405,26.084,26.348,0,,0.58,7 +11602,0,0.629075,1,1,0,2,5,,3,1,Scotten,St,1577306,0.729,1.357,0,15.097798,8,4.5 +11732,1,0.198139,2,0,0,2,3,,3,1,Michigan,Ave,1577103,4.683,4.881,0,4.755336,5,5 +11879,-1,0.494294,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,1.105,1.599,0,11.863068,3.7,5 +11936,1,0.245294,3,0,0,1,2,,3,1,S M 10,,1577509,7.236,7.481,0,,0.58,7 +11946,1,0.169662,2,0,0,1,1,RFS,3,1,E I 94/E I 96,RAMP,1581702,0.149,0.319,0,,0.22,6 +12284,1,0.459935,1,0,0,1,1,RFS,3,1,E I 96/E I 94,RAMP,1577409,0,0.46,0,,0.22,6 +12473,-1,0.144383,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0,0.144,0,3.465191,5,5 +12505,0,0.142967,1,1,0,2,5,,3,1,Euclid,St,1583804,1.086,1.229,0,3.431198,8,4.5 +12533,0,0.238521,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.575,9.813,0,5.7245,5,5 +12646,1,0.236447,1,0,0,1,1,RON,3,1,Grand River/W I 94,RAMP,1581705,0.033,0.27,0,,1.09,4 +12826,0,0.300041,1,1,0,2,5,,3,1,Junction,St,1581110,0.801,1.101,0,7.200989,8,4.5 +12920,0,0.10328,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.355,0.458,0,2.478709,8,4.5 +12922,0,0.068027,2,2,0,2,4,,3,1,Grand,Blvd,1581907,0,0.068,0,1.63264,6,4.5 +12925,0,0.204665,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.307,2.512,0,4.911958,5,5 +12975,-1,0.368496,0,4,0,1,1,,3,1,W I 96,,1577405,3.175,3.543,0,,0.58,7 +12999,0,0.230431,1,1,0,2,4,,3,1,Clark,St,1581210,0.383,0.613,0,5.530341,6,4.5 +13007,1,0.148034,1,0,0,1,1,RFF,3,1,W I 94/W I 96,RAMP,1581704,0.143,0.291,0,,0.58,7 +13049,1,0.352135,4,0,0,1,1,,3,1,E I 96,,1577404,3.174,3.526,0,,0.58,7 +13069,1,0.281755,1,0,0,1,1,RFS,3,1,W I 94/E I 96,RAMP,1577402,0,0.282,0,,0.22,6 +13186,0,0.146777,2,2,0,2,4,,3,1,Grand,Blvd,1577308,2.307,2.454,0,3.52266,6,4.5 +13229,0,0.232571,1,1,0,2,4,,3,1,McGraw,St,1581903,3.38,3.612,0,5.581701,6,4.5 +13249,-1,0.246241,0,3,0,1,2,,3,1,N M 10,,1577510,7.22,7.466,0,,0.58,7 +13435,0,0.365169,3,3,0,2,3,,3,1,Fort,St,1585010,2.408,2.773,0,8.764064,5,5 +13490,0,0.195961,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.322,0.518,0,4.703064,6,4.5 +13500,0,0.333221,1,1,0,2,5,,3,1,Calvert,St,1584802,1.286,1.62,0,7.997293,8,4.5 +13508,0,0.245012,2,2,0,2,5,,3,1,Webb,St,1584710,0.256,0.501,0,5.880279,8,4.5 +13515,0,0.175433,1,1,1,2,5,,3,2,Glendale,St,1584707,0.509,0.684,0,4.210389,8,4.5 +13547,0,0.186652,1,1,0,2,3,,3,1,Linwood,St,1584609,0.163,0.35,0,4.479658,5,5 +13762,1,0.183647,1,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0,0.184,0,4.407525,5,5 +13847,0,0.22562,1,1,0,2,5,,3,1,Nevada,St,1585907,0.398,0.623,0,5.414874,8,4.5 +14231,0,0.165619,1,1,0,2,4,,3,1,State Fair,St,1586002,0.902,1.067,0,3.974867,6,4.5 +14239,-1,0.274985,0,3,0,1,1,,3,1,W I 94,,1588802,26.02,26.295,0,,0.58,7 +14278,-1,0.217911,0,1,0,2,3,,3,3,8 Mile,Rd,1586007,0,0.218,0,5.229872,5,5 +14537,0,0.264818,2,2,1,2,3,,3,2,Woodward,Ave,1591001,0.487,0.752,0,6.355643,5,5 +14566,1,0.268754,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,0.972,1.241,0,6.450091,5,5 +14689,-1,0.184221,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.04,0.224,0,4.421298,8,4.5 +14709,1,0.468091,3,0,0,2,3,,3,1,Dragoon,St,1590007,0,0.468,0,11.234188,5,5 +14783,-1,0.482969,0,4,0,1,1,,3,1,S I 75,,1595106,19.557,20.04,0,,0.58,7 +14809,1,1.050184,3,0,0,1,1,,3,2,N I 75,,1592010,9.707,10.756,0,,0.58,7 +14813,1,0.333202,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.018,1.351,0,7.996856,8,4.5 +15064,1,0.114451,1,0,0,1,1,ROF,3,1,S I 75/Dragoon,RAMP,1595303,0,0.114,0,,2.24,5 +15337,-1,0.38868,0,3,0,1,1,,4,2,S I 75,,1595106,9.461,9.85,0,,0.8,7.5 +15361,1,0.340355,4,0,0,1,1,,3,1,N I 75,,1592010,19.963,20.304,0,,0.58,7 +15621,1,0.280058,1,0,0,1,1,ROF,4,2,N I 75/Allen,RAMP,1592304,0,0.28,0,,2.24,5 +15705,-1,0.494869,0,4,0,2,3,DIV,3,2,Fort,St,1592106,9.262,9.757,0,11.876857,5,5 +15779,1,0.230777,4,0,0,2,3,DIV,3,2,Fort,St,1592105,9.716,9.947,0,5.538651,5,5 +15817,-1,0.256043,0,2,0,2,4,,3,1,14th,St,1621303,0.87,1.126,0,6.145039,6,4.5 +16011,1,0.199076,2,0,0,2,5,DV2,3,2,Manchester,Pkwy,1597406,0.32,0.519,0,4.777815,8,4.5 +16277,0,0.448276,1,1,0,2,5,,3,1,Vinewood,St,1609505,1.351,1.799,0,10.758612,8,4.5 +16517,0,0.146388,1,1,0,2,5,,3,1,Toledo,St,1609403,0.604,0.75,0,3.513312,8,4.5 +16742,0,0.124546,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,0.847,0.971,0,2.989105,6,4.5 +17250,0,0.197953,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.893,5.09,0,4.750874,5,5 +17441,0,0.234828,1,1,0,2,5,,3,2,3rd,St,1661508,0.592,0.827,0,5.635862,8,4.5 +17660,0,0.232938,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,2.94,3.173,0,5.590505,5,5 +17939,0,0.762674,1,1,0,2,4,,4,2,Inkster,Rd,1674404,6.12,6.882,0,18.304175,4.5,4.5 +18003,0,0.276963,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.98,23.257,0,6.647122,5,5 +18155,0,0.232165,1,1,0,2,5,,3,2,12th,St,1665208,0.489,0.721,0,5.571965,8,4.5 +18157,0,0.223676,1,1,1,2,4,,3,2,Trenton,Rd,1665008,1.315,1.538,0,5.368227,6,4.5 +18200,0,0.167871,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,0.842,1.01,0,4.028905,8,4.5 +18239,1,0.190358,1,0,0,2,4,DIV,4,2,Racho,Rd,1692908,2.328,2.519,0,4.568584,4.5,4.5 +18475,0,0.539826,2,2,0,2,5,,4,2,Pardee,Rd,1655206,0,0.54,0,12.955833,5.8,4.5 +18679,0,0.165424,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,16.916,17.082,0,3.97017,5,5 +19106,0,0.743556,1,1,0,2,3,,4,2,Middle Belt,Rd,1674403,5.424,6.167,0,17.845345,3.7,5 +19149,0,0.498942,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,2.577,3.076,0,11.974598,4.5,4.5 +19663,1,0.564751,3,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,11.287,11.852,0,13.554025,5,5 +20013,1,0.233877,1,0,0,1,2,RON,3,2,M 1/W M 8,RAMP,1924006,0,0.234,0,,1.09,4 +20014,1,0.24429,1,0,0,1,2,ROF,3,2,E M 8/M 1,RAMP,1924005,0,0.244,0,,2.24,5 +20342,0,0.177522,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,19.55,19.728,0,4.260535,5,5 +20428,0,0.236536,2,2,1,2,3,,3,2,Biddle,Ave,4302169,12.16,12.396,0,5.676856,5,5 +21040,1,0.242635,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,7.986,8.229,0,5.823244,3.7,5 +22285,-1,0.427913,0,4,0,1,2,,3,2,W M 8,,4702011,0.744,1.172,0,,0.58,7 +22313,1,0.437421,4,0,0,1,2,,3,2,E M 8,,4702009,3.216,3.653,0,,0.58,7 +22413,-1,0.193377,0,2,0,2,3,,3,1,Michigan,Ave,4701012,0.112,0.305,0,4.641053,5,5 +22415,-1,0.199777,0,2,0,2,5,DV2,3,2,Manchester,Pkwy,4700711,0.316,0.516,0,4.794643,8,4.5 +22505,1,0.167204,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.123,1.29,0,4.012902,8,4.5 +22581,0,0.225894,1,1,0,2,5,,3,1,24th,St,4705563,1.681,1.907,0,5.421456,8,4.5 +22667,0,0.499664,1,1,0,2,5,,3,2,Reeck,Rd,4705866,0.499,0.999,0,11.99194,8,4.5 +22878,0,0.37304,2,2,0,2,5,,4,2,Superior,Rd,4705981,0.797,1.17,0,8.952968,5.8,4.5 +22896,1,0.351942,2,0,0,1,1,RFS,3,1,W I 96/W I 94,RAMP,4705636,0,0.352,0,,0.22,6 +23007,0,0.703417,2,2,0,2,5,,4,2,Superior,Rd,4705981,0,0.703,0,16.882018,5.8,4.5 +23073,-1,0.458275,0,2,0,2,5,,3,2,Davison,St,4705659,0,0.458,0,10.9986,8,4.5 +23317,0,0.090979,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.836,0.927,0,2.183487,8,4.5 +23333,0,0.49698,2,2,1,2,3,,3,2,Allen,Rd,4705756,6.827,7.324,0,11.927514,5,5 +23351,-1,0.167249,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0.825,0.992,0,4.013988,8,4.5 +23533,1,0.430227,2,0,0,2,5,,3,2,Davison,St,4705657,0,0.43,0,10.325451,8,4.5 +23796,-1,0.190605,0,1,0,2,4,DIV,4,2,Racho,Rd,4707867,0,0.191,0,4.574526,4.5,4.5 +23856,0,0.149679,1,1,0,2,5,,3,2,4th,St,5491107,0.761,0.911,0,3.592287,8,4.5 +24243,0,0.234873,1,1,0,2,5,,3,2,2nd,St,4711051,0.216,0.451,0,5.63695,8,4.5 +24253,1,0.203688,1,0,0,1,1,ROF,3,1,E I 94/Grand River,RAMP,4710307,0,0.204,0,,2.24,5 +26160,0,0.516527,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.396639,0.15,4 +26748,0,0.544359,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.064615,0.15,4 +27378,0,0.513423,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.322161,0.15,4 +27386,0,0.603516,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.484382,0.15,4 +30530,0,0.548214,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.157129,0.15,4 +30531,0,0.191794,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.603045,0.15,4 +30532,0,0.596673,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.320145,0.15,4 +30775,0,0.26583,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.37992,0.15,4 +30783,0,0.622331,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.935946,0.15,4 +30787,0,0.336728,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.081481,0.15,4 +30790,0,0.260395,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.249479,0.15,4 +30793,0,0.557763,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.3863,0.15,4 +30800,0,0.495924,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.902175,0.15,4 +31089,0,0.553464,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.283132,0.15,4 +31860,0,0.185387,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.449287,0.15,4 +31918,0,0.423298,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.159151,0.15,4 +32029,0,0.127006,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.048151,0.15,4 +32040,0,0.266492,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.395807,0.15,4 +32044,0,0.245142,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.88342,0.15,4 +32045,0,0.43371,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.409034,0.15,4 +32047,0,0.200117,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.802814,0.15,4 +32063,0,0.543172,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.036134,0.15,4 +32074,0,0.50031,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.007444,0.15,4 +32077,0,0.491167,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.788011,0.15,4 +32078,0,0.454111,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.898668,0.15,4 +32093,0,0.207916,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.989985,0.15,4 +32103,0,0.303671,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.288116,0.15,4 +32108,0,0.305372,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.328931,0.15,4 +32110,0,0.240532,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.772765,0.15,4 +32114,0,0.161858,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.884604,0.15,4 +32116,0,0.359172,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.620118,0.15,4 +32411,0,0.279581,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.709951,0.15,4 +32696,0,0.129168,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.100035,0.15,4 +33353,0,0.39482,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.475679,0.15,4 +33595,0,0.221099,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.306383,0.15,4 +33699,0,0.206088,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.946102,0.15,4 +8448,0,2.228884,1,1,0,2,4,,5,6,Huron River,Dr,1225907,0,2.228,0,53.49321,3,4 +8633,0,2.853915,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.92,5.773,0,68.493971,3,4 +8869,0,1.371001,1,1,0,2,7,,5,6,Sigler,Rd,1226701,9.028,10.399,0,32.904027,5.8,6 +12454,0,0.126062,3,3,1,2,3,,4,2,Eureka,Rd,1578308,8.969,9.095,0,3.025494,3.7,5 +14811,1,0.3895,1,0,0,1,1,RON,4,2,Huron River/N I 75,RAMP,1592103,0,0.389,0,,1.09,4 +14947,1,1.314876,2,0,0,1,2,,4,2,Fort,St,1592105,0,1.315,0,,0.8,7.5 +15340,1,0.325881,1,0,0,1,1,ROF,4,2,S I 75/Huron River,RAMP,1595108,0,0.326,0,,2.24,5 +15514,1,0.271242,3,0,0,1,1,,4,2,N I 75,,1592010,0.236,0.507,0,,0.8,7.5 +15648,0,0.270337,1,1,0,2,4,,4,2,King,Rd,1592206,3.782,4.052,0,6.488092,4.5,4.5 +15743,-1,1.181146,0,2,0,1,2,,4,2,Fort,St,1592106,0,1.181,0,,0.8,7.5 +15774,-1,0.299385,0,3,0,1,1,,4,2,S I 75,,1595106,0.214,0.514,0,,0.8,7.5 +16604,0,0.555467,2,2,1,2,4,,4,2,Sibley,Rd,1607308,8.527,9.083,0,13.331215,4.5,4.5 +17042,0,0.265999,2,2,0,2,4,,4,2,Vreeland,Rd,1606105,2.603,2.868,0,6.383984,4.5,4.5 +17070,0,0.953033,1,1,0,2,4,,4,2,Huron River,Dr,1606009,3.775,4.727,0,22.872793,4.5,4.5 +17078,0,0.291793,1,1,0,2,4,,4,2,Huron River,Dr,1606009,2.415,2.707,0,7.003025,4.5,4.5 +17461,0,0.174859,2,2,0,2,3,,4,2,Dix Toledo,Hwy,1688707,0.717,0.891,0,4.196627,3.7,5 +17532,0,0.30517,1,1,0,2,5,,4,2,Olmstead,Rd,1694707,0,0.305,0,7.324082,5.8,4.5 +18575,0,0.394389,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,6.061,6.455,0,9.46533,4.5,4.5 +18662,0,0.471905,3,3,1,2,3,,4,2,West,Rd,1674210,6.582,7.054,0,11.325726,3.7,5 +18672,0,0.247459,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,9.421,9.668,0,5.939018,4.5,4.5 +18736,0,0.689123,1,1,0,2,5,,4,2,Woodruff,Rd,1694803,2.105,2.793,0,16.538946,5.8,4.5 +19052,0,0.394636,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,2.724,3.119,0,9.471275,4.5,4.5 +19890,0,0.633665,1,1,0,2,4,,4,2,Old Fort,St,4302168,2.033,2.666,0,15.207949,4.5,4.5 +20129,0,1.344766,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,26.344,27.688,0,32.274387,1.7,4 +20532,0,0.918125,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,1.949,2.867,0,22.035007,4.5,4.5 +20644,0,0.721667,1,1,0,2,4,,4,2,Fort,St,4302168,0.857,1.579,0,17.320016,4.5,4.5 +20708,0,1.333398,1,1,0,2,4,,5,6,US Turnpike,,4301655,10.854,12.187,0,32.001546,3,4 +30309,0,0.533549,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.805171,0.15,4 +30311,0,0.524484,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.587605,0.15,4 +30322,0,0.345739,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.29773,0.15,4 +31282,0,1.74023,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,41.765516,0.15,4 +31400,0,1.370032,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,32.880764,0.15,4 +40346,1,0.383283,3,0,0,2,3,DIV,4,3,University,Dr,624301,3.395,3.778,0,9.198797,3.7,5 +31869,0,0.411174,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.868169,0.15,4 +31870,0,0.410509,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.852212,0.15,4 +32126,0,1.179151,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,28.299614,0.15,4 +32128,0,1.49404,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.856972,0.15,4 +32129,0,0.430717,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.33721,0.15,4 +40347,-1,0.399717,0,3,0,2,3,DIV,4,3,University,Dr,5500949,0.491,0.891,0,9.593213,3.7,5 +33994,0,1.592111,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,38.210672,0.15,4 +8658,0,0.709705,1,1,0,2,5,,5,6,Dixie,Hwy,1225809,1.202,1.912,0,17.032928,3.7,5 +8659,0,1.138831,1,1,0,2,5,,5,6,Pointe Aux Peaux,,1225708,0,1.138,0,27.331953,3.7,5 +8692,0,1.778344,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,3.442,5.22,0,42.680257,3.7,5 +8725,0,0.733035,1,1,0,2,5,,5,6,Sigler,Rd,1226701,6.054,6.786,0,17.592829,3.7,5 +9338,1,1.375425,2,0,0,1,1,,5,6,N I 275,,1228001,1.178,2.553,0,,1.02,7 +9419,1,4.699214,3,0,0,1,1,,5,6,N I 75,,1226910,21.394,26.092,0,,1.02,7 +9445,-1,4.430018,0,3,0,1,1,,5,6,S I 75,,1226909,21.453,25.881,0,,1.02,7 +10224,0,0.912971,1,1,0,2,5,,5,6,Port Sunlight,Rd,1236810,1.176,2.088,0,21.911306,3.7,5 +19886,0,1.117701,1,1,0,2,4,,5,6,US Turnpike,,4301655,9.737,10.854,0,26.824834,3,4 +20133,-1,1.328436,0,2,0,1,1,,5,6,S I 275,,4301662,0.546,1.874,0,,1.02,7 +20280,0,0.905529,1,1,0,2,5,,5,6,Swan Creek,Rd,4300077,0,0.905,0,21.732708,3.7,5 +20382,0,0.516248,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,5.502,6.018,0,12.389942,3,4 +20418,0,0.698631,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,21.855,22.553,0,16.767151,1.7,4 +30325,0,1.022793,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.54703,0.15,4 +30326,0,1.311893,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,31.48542,0.15,4 +30328,0,0.59148,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,14.195516,0.15,4 +30329,0,0.943908,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,22.653789,0.15,4 +30331,0,1.384593,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,33.230227,0.15,4 +8660,0,1.270815,1,1,0,2,5,,5,6,Nadeau,Rd,1225701,1.328,2.598,0,30.499557,3.7,5 +9273,0,1.855301,1,1,0,2,6,,5,6,Newport South,Rd,1230208,0.825,2.68,0,44.52723,5.8,6 +9301,0,0.487982,1,1,0,2,5,,5,6,Newport,Rd,1228304,2.759,3.247,0,11.71156,3.7,5 +9308,1,0.443387,1,0,0,1,1,RFF,5,6,S I 75/N I 275,RAMP,1228208,0,0.443,0,,1.02,7 +9331,1,1.161542,1,0,0,1,1,RFS,5,6,S I 275/N I 75,RAMP,1228002,0,1.161,0,,0.22,6 +9339,1,1.178278,2,0,0,1,1,,5,6,N I 75/N I 275,RAMP,1228001,0,1.178,0,,1.02,7 +9422,1,0.630606,3,0,0,1,1,,5,6,N I 75,,1226910,19.515,20.145,0,,1.02,7 +9423,1,1.185442,4,0,0,1,1,,5,6,N I 75,,1226910,18.33,19.515,0,,1.02,7 +9448,-1,0.613876,0,3,0,1,1,,5,6,S I 75,,1226909,20.064,20.678,0,,1.02,7 +9449,-1,1.721779,0,3,0,1,1,,5,6,S I 75,,1226909,18.343,20.064,0,,1.02,7 +20335,-1,0.545878,0,2,0,1,1,,5,6,S I 275,,4301662,0,0.546,0,,1.02,7 +31018,0,0.896436,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.514469,0.15,4 +31276,0,1.593482,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,38.24358,0.15,4 +31281,0,0.523838,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.57212,0.15,4 +20473,0,0.401271,1,1,0,2,5,,4,6,Vivian,Rd,4301667,1.444,1.845,0,9.63051,5.8,4.5 +8422,1,0.263727,1,0,0,1,1,RON,4,6,Nadeau/S I 75,RAMP,1225908,0,0.264,0,,1.09,4 +8664,0,0.133288,1,1,0,2,4,,4,6,Nadeau,Rd,1225701,0.97,1.104,0,3.198924,4.5,4.5 +8706,1,0.399627,1,0,0,1,1,ROF,5,6,S I 75/Nadeau,RAMP,1225603,0,0.4,0,,2.24,5 +9340,1,0.253486,1,0,0,1,1,RON,5,6,Nadeau/N I 75,RAMP,1227909,0,0.253,0,,1.09,4 +9424,1,0.589953,3,0,0,1,1,,5,6,N I 75,,1226910,17.74,18.33,0,,1.02,7 +9450,-1,0.610245,0,3,0,1,1,,5,6,S I 75,,1226909,17.733,18.343,0,,1.02,7 +8485,0,0.158624,1,1,0,2,4,,4,6,Nadeau,Rd,1225701,0.812,0.97,0,3.806974,4.5,4.5 +8477,0,0.22444,1,1,1,2,4,,5,6,Nadeau,Rd,1225701,1.104,1.328,0,5.386556,3,4 +8512,1,0.399826,1,0,0,1,1,ROF,5,6,N I 75/Nadeau,RAMP,1225604,0,0.4,0,,2.24,5 +9302,0,0.455183,1,1,0,2,5,,5,6,Newport,Rd,1228304,1.69,2.145,0,10.924401,3.7,5 +31274,0,1.129914,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.117937,0.15,4 +20636,0,0.28764,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,21.568,21.855,0,6.903354,1.7,4 +9274,0,0.825293,1,1,0,2,6,,5,6,Newport South,Rd,1230208,0,0.825,0,19.807025,5.8,6 +20826,0,0.533537,1,1,0,2,6,,5,6,Stoney Creek,Rd,4301624,0,0.533,0,12.804897,5.8,6 +20827,0,0.460796,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,4.33,4.791,0,11.0591,4.5,4.5 +30334,0,1.102337,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,26.456082,0.15,4 +8471,0,1.019408,1,1,0,2,5,,5,6,Nadeau,Rd,1225701,2.598,3.617,0,24.465786,3.7,5 +20132,0,0.006418,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,4.324,4.33,0,0.154022,4.5,4.5 +20586,0,0.366559,1,1,0,2,6,,5,6,Stoney Creek,Rd,4301624,0.533,0.9,0,8.797415,5.8,6 +30333,0,0.215251,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,5.166015,0.15,4 +20587,0,0.711658,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,4.791,5.502,0,17.079796,3,4 +9272,0,0.46377,1,1,0,2,6,,5,6,Newport South,Rd,1230208,2.68,3.143,0,11.130485,5.8,6 +9298,0,0.232786,1,1,0,2,5,,5,6,Swan Creek,Rd,1228304,3.719,3.951,0,5.586875,3.7,5 +9329,1,0.210944,1,0,0,1,1,RON,5,6,Swan Creek/N I 75,RAMP,1228005,0,0.211,0,,1.09,4 +9330,1,0.335999,1,0,0,1,1,ROF,5,6,N I 75/Swan Creek,RAMP,1228004,0,0.336,0,,2.24,5 +9421,1,0.958703,3,0,0,1,1,,5,6,N I 75,,1226910,20.145,21.103,0,,1.02,7 +9299,0,0.471864,1,1,1,2,5,,5,6,Newport,Rd,1228304,3.247,3.719,0,11.324732,3.7,5 +9447,-1,0.38649,0,3,0,1,1,,5,6,S I 75,,1226909,20.678,21.064,0,,1.02,7 +37025,1,0.20919,2,0,0,2,3,DIV,3,5,Packard,St,1430704,2.874,3.083,0,5.020562,5,5 +30335,0,0.07221,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,1.733041,0.15,4 +37028,-1,0.229522,0,2,0,2,3,DIV,3,5,Packard,St,4603898,0.262,0.492,0,5.508525,5,5 +9307,1,0.381902,1,0,0,1,1,ROF,5,6,S I 75/Swan Creek,RAMP,1228210,0,0.382,0,,2.24,5 +9420,1,0.290886,3,0,0,1,1,,5,6,N I 75,,1226910,21.103,21.394,0,,1.02,7 +9446,-1,0.389021,0,3,0,1,1,,5,6,S I 75,,1226909,21.064,21.453,0,,1.02,7 +20284,1,0.480445,1,0,0,1,1,RON,5,6,Swan Creek/S I 75,RAMP,4301676,0,0.48,0,,1.09,4 +20083,0,0.404884,1,1,0,2,5,,5,6,Swan Creek,Rd,4300077,0.905,1.31,0,9.717212,3.7,5 +20773,0,0.029645,1,1,0,2,5,,5,6,Swan Creek,Rd,4300077,1.31,1.34,0,0.711485,3.7,5 +9296,0,0.163457,1,1,0,2,5,,5,6,Swan Creek,Rd,1228304,3.956,4.119,0,3.922958,3.7,5 +20525,0,0.075987,1,1,0,2,5,,5,6,Swan Creek,Rd,4300077,1.34,1.416,0,1.823687,3.7,5 +9297,0,0.004299,1,1,0,2,5,,5,6,Swan Creek,Rd,1228304,3.951,3.956,0,0.103187,3.7,5 +8805,0,0.75234,1,1,0,2,5,,5,6,Sigler,Rd,1226701,4.418,5.17,0,18.056166,3.7,5 +8864,0,1.122502,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,2.32,3.442,0,26.940059,3.7,5 +9335,1,2.711647,3,0,0,1,1,,5,6,N I 275,,1228001,3.139,5.85,0,,1.02,7 +20383,-1,2.881946,0,3,0,1,1,,5,6,S I 275,,4301662,2.492,5.373,0,,1.02,7 +20524,0,0.646433,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,24.327,24.973,0,15.51438,1.7,4 +31283,0,0.655807,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,15.73936,0.15,4 +33993,0,1.615521,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,38.7725,0.15,4 +8807,1,0.278643,1,0,0,1,1,RON,5,6,Telegraph/N I 275,RAMP,1226607,0,0.279,0,,1.09,4 +8997,1,0.27331,1,0,0,1,1,RON,5,6,Telegraph/N I 275,RAMP,1226609,0,0.273,0,,1.09,4 +9011,1,0.317934,1,0,0,1,1,RON,5,6,Telegraph/S I 275,RAMP,1226602,0,0.318,0,,1.09,4 +9337,1,0.330819,2,0,0,1,1,,5,6,N I 275,,1228001,2.553,2.884,0,,1.02,7 +19588,1,0.062244,1,0,0,1,1,ROF,5,6,N I 275/Telegraph,RAMP,1854007,0,0.062,0,,2.24,5 +20082,0,1.188725,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.907,24.096,0,28.529388,1.7,4 +20468,0,0.100314,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.798,22.899,0,2.407537,1.7,4 +20828,-1,0.377029,0,2,0,1,1,,5,6,S I 275,,4301662,1.874,2.251,0,,1.02,7 +20087,1,0.359482,1,0,0,1,1,ROF,5,6,S I 275/Telegraph,RAMP,4301683,0,0.359,0,,2.24,5 +20231,0,0.09831,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.553,22.652,0,2.359431,1.7,4 +9336,1,0.255895,3,0,0,1,1,,5,6,N I 275,,1228001,2.884,3.139,0,,1.02,7 +20588,-1,0.241182,0,2,0,1,1,,5,6,S I 275,,4301662,2.251,2.492,0,,1.02,7 +8812,1,0.291363,1,0,0,1,1,RON,5,6,Telegraph/S I 275,RAMP,1226604,0,0.291,0,,1.09,4 +20704,0,0.076509,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.722,22.798,0,1.836213,1.7,4 +19882,0,0.070378,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.652,22.722,0,1.689077,1.7,4 +9000,1,0.401771,1,0,0,1,1,ROF,5,6,N I 275/Telegraph,RAMP,1226608,0,0.402,0,,2.24,5 +8806,1,0.118388,1,0,0,1,1,ROF,5,6,N I 275/Telegraph,RAMP,1226608,0.402,0.52,0,,2.24,5 +20279,0,0.008695,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.899,22.907,0,0.208686,1.7,4 +20772,0,0.231125,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,24.096,24.327,0,5.547009,1.7,4 +8693,0,1.145813,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,1.174,2.32,0,27.499515,3.7,5 +9002,1,0.414094,1,0,0,1,1,ROF,5,6,N I 275/Carleton/Rockwood,RAMP,1226606,0,0.414,0,,2.24,5 +31284,0,0.31486,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,7.556636,0.15,4 +8909,0,0.883682,1,1,0,2,5,,5,6,Sigler,Rd,1226701,5.17,6.054,0,21.208361,3.7,5 +30319,0,0.903573,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.685756,0.15,4 +30321,0,0.022572,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,0.54174,0.15,4 +20331,0,1.371039,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,24.973,26.344,0,32.904934,1.7,4 +8470,0,1.266738,1,1,0,2,5,,5,6,Pointe Aux Peaux,,1225708,1.138,2.405,0,30.401719,3.7,5 +20235,0,1.265588,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,8.472,9.737,0,30.374107,3,4 +20875,0,1.295492,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,6.751,8.046,0,31.091798,3,4 +31012,0,0.921226,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,22.109432,0.15,4 +20180,0,0.732506,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,6.018,6.751,0,17.580149,3,4 +31011,0,0.508493,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.203829,0.15,4 +20640,0,0.376633,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,8.046,8.422,0,9.039192,3,4 +33996,0,0.415431,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,9.970351,0.15,4 +20422,0,0.049747,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,8.422,8.472,0,1.193921,3,4 +10225,0,0.859132,1,1,0,2,5,,4,6,Port Sunlight,Rd,1236810,0.317,1.176,0,20.619162,5.8,4.5 +31013,0,1.400999,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,33.623966,0.15,4 +10227,0,0.112157,1,1,0,2,5,,4,6,Lakeview,Blvd,1236810,0.205,0.317,0,2.691759,5.8,4.5 +32123,0,0.131689,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.160527,0.15,4 +32124,0,0.706602,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,16.958449,0.15,4 +8452,0,1.189661,1,1,0,2,5,,5,6,Dixie,Hwy,1225809,3.666,4.855,0,28.551873,3.7,5 +8467,0,0.86678,1,1,0,2,5,,5,6,Dixie,Hwy,1225809,1.912,2.778,0,20.802718,3.7,5 +8698,0,1.003047,1,1,0,2,7,,5,6,Sigler,Rd,1226701,8.026,9.028,0,24.073133,5.8,6 +8808,0,1.125499,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,5.22,6.345,0,27.011968,3.7,5 +30324,0,1.156163,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.74792,0.15,4 +31107,0,1.675169,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,40.204053,0.15,4 +32127,0,0.727053,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,17.449266,0.15,4 +8647,0,0.888418,1,1,0,2,5,,5,6,Dixie,Hwy,1225809,2.778,3.666,0,21.322034,3.7,5 +8874,0,1.239559,1,1,0,2,5,,5,6,Sigler,Rd,1226701,6.786,8.026,0,29.74942,3.7,5 +31859,0,0.47847,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.483275,0.15,4 +31401,0,0.599203,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,14.380867,0.15,4 +8646,0,0.662216,1,1,0,2,5,,5,6,Dixie,Hwy,1225809,4.855,5.517,0,15.893176,3.7,5 +9306,1,0.465601,1,0,0,1,1,RON,5,6,Huron River/S I 75,RAMP,1228302,0,0.465,0,,1.09,4 +9444,-1,0.379948,0,3,0,1,1,,5,6,S I 75,,1226909,25.881,26.261,0,,1.02,7 +16188,0,0.664859,1,1,0,2,4,,4,2,Huron River,Dr,1606009,3.11,3.775,0,15.956616,4.5,4.5 +20879,0,0.341298,1,1,0,2,4,,4,2,Fort,St,4302168,0.516,0.857,0,8.191144,4.5,4.5 +31857,0,0.519339,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.464125,0.15,4 +8640,0,0.401714,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.228,2.63,0,9.641139,3,4 +9417,1,0.172676,3,0,0,1,1,,5,6,N I 75,,1226910,26.592,26.764,0,,1.02,7 +9443,-1,0.500266,0,3,0,1,1,,5,6,S I 75,,1226909,26.261,26.761,0,,1.02,7 +16773,0,0.125664,1,1,0,2,4,,4,2,Huron River,Dr,1606009,2.707,2.832,0,3.015939,4.5,4.5 +20184,0,0.363472,1,1,0,2,4,,4,2,Fort,St,4302168,0.153,0.516,0,8.723326,4.5,4.5 +20386,0,0.152945,1,1,0,2,4,,5,6,Dixie,Hwy,4302168,0,0.153,0,3.670675,3,4 +31858,0,0.577306,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,13.855345,0.15,4 +8431,0,0.181762,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.695,2.877,0,4.362294,3,4 +9305,1,0.355461,1,0,0,1,1,ROF,5,6,S I 75/Huron River,RAMP,1228303,0,0.355,0,,2.24,5 +9327,0,0.067737,1,1,0,2,5,,5,6,Sylvania,Dr,1228009,0.23,0.298,0,1.625698,3.7,5 +9328,1,0.230194,1,0,0,1,1,ROF,5,6,N I 75/Huron River,RAMP,1228009,0,0.23,0,,2.24,5 +9418,1,0.499905,3,0,0,1,1,,5,6,N I 75,,1226910,26.092,26.592,0,,1.02,7 +31855,0,0.198912,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.773879,0.15,4 +31856,0,0.160213,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,3.845115,0.15,4 +8423,0,0.035623,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.885,2.92,0,0.854948,3,4 +8634,0,0.007382,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.877,2.885,0,0.177157,3,4 +9326,1,0.242227,1,0,0,1,1,RON,5,6,Huron River/N I 75,RAMP,1228101,0,0.242,0,,1.09,4 +8636,0,0.052399,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.643,2.695,0,1.257565,3,4 +8439,0,0.013326,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.63,2.643,0,0.31983,3,4 +14864,-1,0.21444,0,3,0,1,1,,4,2,S I 75,,1595106,0,0.214,0,,0.8,7.5 +15381,1,0.236117,3,0,0,1,1,,4,2,N I 75,,1592010,0,0.236,0,,0.8,7.5 +15698,1,0.386838,1,0,0,1,1,ROF,4,2,N I 75/Huron River,RAMP,1592102,0,0.387,0,,2.24,5 +16769,0,0.120335,2,2,0,2,4,,4,2,Huron River,Dr,1606009,2.99,3.11,0,2.888031,4.5,4.5 +17075,0,0.1412,2,2,0,2,4,,4,2,Huron River,Dr,1606009,2.841,2.983,0,3.388811,4.5,4.5 +17074,0,0.007188,2,2,0,2,4,,4,2,Huron River,Dr,1606009,2.983,2.99,0,0.172519,4.5,4.5 +15486,1,0.149302,1,0,0,1,1,RON,4,2,Huron River/S I 75,RAMP,1595107,0,0.149,0,,1.09,4 +16191,0,0.008956,2,2,0,2,4,,4,2,Huron River,Dr,1606009,2.832,2.841,0,0.214954,4.5,4.5 +31853,0,0.553618,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.286842,0.15,4 +31854,0,0.09085,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.180392,0.15,4 +9315,0,2.419335,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,4.02,6.438,0,58.064037,3,4 +12517,0,0.494668,2,2,1,2,3,,4,2,Eureka,Rd,1578308,5.594,6.089,0,11.872029,3.7,5 +14821,1,0.283704,1,0,0,1,1,RON,4,2,West/N I 75,RAMP,1592205,0,0.284,0,,1.09,4 +15014,1,0.725196,3,0,0,1,1,,4,2,N I 75,,1592010,4.591,5.316,0,,0.8,7.5 +37126,1,0.215929,1,0,0,1,1,ROF,4,2,S I 75/W West,RAMP,4707550,0.215,0.431,0,,2.24,5 +15656,0,2.004934,1,1,0,2,5,,4,2,King,Rd,1592206,0,2.004,0,48.118423,5.8,4.5 +37129,1,0.311417,1,0,0,1,1,ROF,4,2,N I 75/E West,RAMP,4707547,0.171,0.482,0,,2.24,5 +16628,0,0.685681,1,1,0,2,4,,4,2,Sibley,Rd,1607308,4.997,5.682,0,16.456355,4.5,4.5 +17058,0,0.435288,1,1,0,2,4,,4,2,Huron River,Dr,1606101,0.337,0.772,0,10.446902,4.5,4.5 +17712,0,0.052053,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,6.139,6.191,0,1.249278,4.5,4.5 +17872,0,0.447639,1,1,0,2,4,,4,2,West,Rd,1674210,3.005,3.453,0,10.743326,4.5,4.5 +18029,0,0.492764,1,1,0,2,4,,4,2,Inkster,Rd,1674404,2.105,2.598,0,11.826344,4.5,4.5 +18204,0,0.755828,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,2.397,3.152,0,18.139864,4.5,4.5 +18954,0,1.005773,1,1,0,2,7,,4,2,Leroy,Ave,1654504,0,1.006,0,24.138559,6.55,4.5 +19109,0,1.008506,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,1.426,2.434,0,24.204148,3.7,5 +20824,0,0.833317,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,27.688,28.521,0,19.999616,1.7,4 +37366,-1,0.033374,0,2,0,2,4,,3,5,Maple,Rd,4605990,0,0.033,0,0.800985,6,4.5 +37367,1,0.023567,1,0,0,2,4,,3,5,SB N Maple/NB N Maple,TURN,4605987,0,0.024,0,0.565615,6,4.5 +23833,1,0.21513,1,0,0,1,1,ROF,4,2,S I 75/W West,RAMP,4707550,0,0.215,0,,2.24,5 +31226,0,0.507,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.167992,0.15,4 +31288,0,0.668452,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.042849,0.15,4 +31872,0,0.541282,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.990757,0.15,4 +32073,0,0.496452,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.914858,0.15,4 +32138,0,0.539808,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.955393,0.15,4 +32141,0,0.360685,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.656442,0.15,4 +32146,0,1.003405,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.081719,0.15,4 +32152,0,0.498635,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.967235,0.15,4 +32154,0,0.485478,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.651483,0.15,4 +32157,0,0.409155,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.819715,0.15,4 +32158,0,0.379013,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.096308,0.15,4 +32159,0,0.495137,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.883285,0.15,4 +32162,0,0.508053,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.193271,0.15,4 +32164,0,0.521376,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.513027,0.15,4 +32168,0,0.502121,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.050902,0.15,4 +16179,0,0.395896,1,1,0,2,5,,5,2,Huron River,Dr,1606101,2.417,2.813,0,9.501507,3.7,5 +16753,0,0.360295,1,1,0,2,4,,4,2,Huron River,Dr,1606101,0.772,1.132,0,8.647074,4.5,4.5 +17879,0,0.462776,1,1,0,2,5,GRV,5,2,West,Rd,1674210,1.54,2.003,0,11.106628,5.55,5 +18206,0,0.742861,1,1,0,2,5,,5,2,Van Horn,Rd,1674101,0.662,1.405,0,17.828665,3.7,5 +30351,0,1.041697,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.000734,0.15,4 +31286,0,1.07715,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.851611,0.15,4 +31287,0,0.812712,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,19.505088,0.15,4 +17448,0,0.500773,1,1,0,2,5,,5,2,West,Rd,1674210,0.506,1.007,0,12.018541,3.7,5 +17806,0,0.588388,1,1,0,2,5,,5,2,Huron River,Dr,1674101,0,0.588,0,14.121303,3.7,5 +19036,0,0.704679,1,1,0,2,5,,5,2,Huron River,Dr,1670406,10.075,10.779,0,16.912305,3.7,5 +31291,0,0.599237,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,14.381681,0.15,4 +31292,0,0.989335,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,23.744044,0.15,4 +18589,0,0.609509,1,1,0,2,5,,5,2,Willow,Rd,1670406,9.466,10.075,0,14.628224,3.7,5 +17056,0,0.479769,1,1,0,2,5,,5,2,Huron River,Dr,1606101,2.813,3.292,0,11.514447,3.7,5 +18648,0,0.073915,1,1,0,2,5,,5,2,Van Horn,Rd,1674101,0.588,0.662,0,1.77395,3.7,5 +18262,0,0.533859,1,1,0,2,5,GRV,5,2,West,Rd,1674210,1.007,1.54,0,12.812628,5.55,5 +31289,0,0.452799,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,10.867179,0.15,4 +31290,0,0.091357,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,2.192557,0.15,4 +17057,0,1.192672,1,1,0,2,5,,5,2,Huron River,Dr,1606101,1.132,2.324,0,28.624131,3.7,5 +17804,0,0.245106,1,1,0,2,5,,5,2,Van Horn,Rd,1674101,1.405,1.65,0,5.882544,3.7,5 +18030,0,0.174524,1,1,0,2,4,,4,2,Inkster,Rd,1674404,0.928,1.102,0,4.188573,4.5,4.5 +18127,0,0.354646,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,0.083,0.438,0,8.511503,3.7,5 +18257,0,0.440048,1,1,0,2,5,GRV,5,2,West,Rd,1674210,2.566,3.005,0,10.561144,5.55,5 +18647,0,0.747088,1,1,0,2,5,,5,2,Van Horn,Rd,1674101,1.65,2.397,0,17.930121,3.7,5 +30673,0,0.669771,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,16.074507,0.15,4 +32144,0,0.495825,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.899809,0.15,4 +16752,0,0.092357,1,1,0,2,5,,5,2,Huron River,Dr,1606101,2.324,2.417,0,2.216574,3.7,5 +23902,0,0.08512,1,1,0,2,5,,5,2,Middle Belt/Huron River Cutoff,,4707050,0,0.085,0,2.042881,3.7,5 +18544,0,0.083162,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,0,0.083,0,1.995892,3.7,5 +17442,0,0.562742,1,1,0,2,5,GRV,5,2,West,Rd,1674210,2.003,2.566,0,13.505808,5.55,5 +17700,0,0.988171,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,0.438,1.426,0,23.716099,3.7,5 +32143,0,0.383916,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,9.213993,0.15,4 +18443,0,0.737948,1,1,0,2,4,,4,2,Inkster,Rd,1674404,0.19,0.928,0,17.710741,4.5,4.5 +18916,0,0.190294,1,1,0,2,4,,4,2,Inkster,Rd,1674404,0,0.19,0,4.567046,4.5,4.5 +17605,0,0.502909,1,1,0,2,4,,4,2,Inkster,Rd,1674404,1.102,1.605,0,12.069813,4.5,4.5 +19015,0,0.500378,1,1,0,2,4,,4,2,Inkster,Rd,1674404,1.605,2.105,0,12.009071,4.5,4.5 +30674,0,0.378344,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.08025,0.15,4 +12155,0,0.542353,2,2,1,2,3,,4,2,Eureka,Rd,1578308,3.557,4.1,0,13.01648,3.7,5 +16635,0,0.225158,1,1,0,2,4,,5,2,Sibley,Rd,1607308,3.774,3.999,0,5.403789,3,4 +18336,0,0.490228,1,1,0,2,4,,4,2,Inkster,Rd,1674404,4.106,4.596,0,11.76546,4.5,4.5 +18560,0,0.429793,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,4.233,4.663,0,10.315022,4.5,4.5 +18660,0,0.638667,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,3.422,4.06,0,15.328015,3.7,5 +31297,0,0.986268,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,23.67044,0.15,4 +32160,0,0.778498,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,18.683943,0.15,4 +32166,0,0.842633,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,20.223199,0.15,4 +32169,0,0.495978,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.903472,0.15,4 +16638,0,0.429759,1,1,0,2,4,,5,2,Sibley,Rd,1607308,2.57,2.999,0,10.314222,3,4 +30704,0,0.467249,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.213983,0.15,4 +16388,0,0.775155,1,1,0,2,4,,5,2,Sibley,Rd,1607308,2.999,3.774,0,18.603713,3,4 +32468,0,0.819787,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,19.674893,0.15,4 +31298,0,0.013298,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,0.319153,0.15,4 +12524,0,0.487399,2,2,1,2,3,,4,2,Eureka,Rd,1578308,3.07,3.557,0,11.697571,3.7,5 +32170,0,0.505265,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.126351,0.15,4 +12163,0,0.161885,2,2,1,2,3,,4,2,Eureka,Rd,1578308,2.908,3.07,0,3.885242,3.7,5 +19031,0,0.570874,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,3.663,4.233,0,13.700973,4.5,4.5 +32171,0,0.501146,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.027497,0.15,4 +16385,0,0.997734,1,1,0,2,4,,5,2,Sibley,Rd,1607308,3.999,4.997,0,23.945612,3,4 +16660,0,0.997284,1,1,0,2,5,,5,2,King,Rd,1607306,4.352,5.349,0,23.934814,3.7,5 +17699,0,0.308471,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,2.434,2.742,0,7.403299,3.7,5 +19013,0,0.306958,1,1,0,2,4,,4,2,Inkster,Rd,1674404,3.097,3.403,0,7.366986,4.5,4.5 +30316,0,0.894913,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,21.477911,0.15,4 +19107,0,0.679896,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,2.742,3.422,0,16.317513,3.7,5 +31293,0,0.894278,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,21.462662,0.15,4 +17604,0,0.498731,1,1,0,2,4,,4,2,Inkster,Rd,1674404,2.598,3.097,0,11.969547,4.5,4.5 +18125,0,0.501246,1,1,0,2,4,,4,2,Inkster,Rd,1674404,3.605,4.106,0,12.029893,4.5,4.5 +18542,0,0.201274,1,1,0,2,4,,4,2,Inkster,Rd,1674404,3.403,3.605,0,4.830583,4.5,4.5 +12151,0,0.497246,2,2,1,2,3,,4,2,Eureka,Rd,1578308,4.597,5.094,0,11.933903,3.7,5 +17698,0,0.503502,1,1,0,2,4,,4,2,Middle Belt,Rd,1674403,4.921,5.424,0,12.084045,4.5,4.5 +17715,0,0.504424,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,5.16,5.664,0,12.106184,4.5,4.5 +18327,0,0.526778,1,1,0,2,4,,4,2,Inkster,Rd,1674404,5.593,6.12,0,12.642677,4.5,4.5 +30671,0,0.500107,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.002569,0.15,4 +32173,0,0.505223,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.12536,0.15,4 +18139,0,0.496716,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,4.663,5.16,0,11.921193,4.5,4.5 +18220,0,0.357798,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,4.06,4.418,0,8.587142,3.7,5 +32172,0,0.501459,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.035012,0.15,4 +17822,0,0.502875,1,1,0,2,4,,4,2,Middle Belt,Rd,1674403,4.418,4.921,0,12.068999,4.5,4.5 +31067,0,0.505278,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.126683,0.15,4 +12520,0,0.497747,2,2,1,2,3,,4,2,Eureka,Rd,1578308,4.1,4.597,0,11.945939,3.7,5 +32079,0,0.549579,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.189887,0.15,4 +17526,0,0.261114,1,1,0,2,4,,4,2,Inkster,Rd,1674404,4.845,5.106,0,6.266739,4.5,4.5 +19126,0,0.47543,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,5.664,6.139,0,11.410311,4.5,4.5 +17947,0,0.248838,1,1,0,2,4,,4,2,Inkster,Rd,1674404,4.596,4.845,0,5.972101,4.5,4.5 +18931,0,0.468221,1,1,0,2,4,,4,2,Inkster,Rd,1674404,5.106,5.574,0,11.237301,4.5,4.5 +18458,0,0.019337,1,1,0,2,4,,4,2,Inkster,Rd,1674404,5.574,5.593,0,0.464078,4.5,4.5 +12519,0,0.403072,2,2,1,2,3,,4,2,Eureka,Rd,1578308,5.094,5.497,0,9.673734,3.7,5 +32075,0,0.504672,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.112125,0.15,4 +32076,0,0.4891,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.7384,0.15,4 +32161,0,0.515958,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.382995,0.15,4 +12147,0,0.096986,2,2,1,2,3,,4,2,Eureka,Rd,1578308,5.497,5.594,0,2.327672,3.7,5 +15017,1,2.211512,3,0,0,1,1,,4,2,N I 75,,1592010,2.38,4.591,0,,0.8,7.5 +15620,-1,2.311135,0,3,0,1,1,,4,2,S I 75,,1595106,2.412,4.722,0,,0.8,7.5 +16168,0,0.259976,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,1.035,1.295,0,6.239421,4.5,4.5 +16204,0,0.680208,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,0.284,0.964,0,16.324994,5.8,4.5 +16774,0,1.001877,1,1,0,2,4,,4,2,Huron River,Dr,1606009,1.414,2.415,0,24.045038,4.5,4.5 +17548,0,0.346111,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,1.216,1.562,0,8.306674,4.5,4.5 +17801,0,0.821862,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,4.396,5.218,0,19.724678,4.5,4.5 +18582,0,0.406604,2,2,0,2,5,,4,2,Hall,Rd,1692302,0.583,0.989,0,9.758484,5.8,4.5 +37345,1,0.138581,1,0,0,1,1,RON,4,2,SB Telegraph/W I 94,RAMP,1578710,0,0.139,0,,1.09,4 +21458,0,0.743412,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,0.397,1.14,0,17.841893,3.7,5 +30676,0,0.565165,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.563962,0.15,4 +30681,0,0.574856,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.796544,0.15,4 +30685,0,0.360429,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.650285,0.15,4 +30688,0,0.398647,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.567522,0.15,4 +32130,0,0.493272,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.83852,0.15,4 +17079,0,1.070294,1,1,0,2,4,,4,2,Huron River,Dr,1606009,0.344,1.414,0,25.687062,4.5,4.5 +18067,0,0.678464,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,0.093,0.771,0,16.283127,4.5,4.5 +30315,0,0.609266,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.622392,0.15,4 +17062,0,0.087405,1,1,0,2,4,,4,2,Huron River,Dr,1606101,0.249,0.337,0,2.097729,4.5,4.5 +21661,0,0.073106,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,0.324,0.397,0,1.75454,3.7,5 +32134,0,0.178551,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.285221,0.15,4 +16183,0,0.303943,1,1,1,2,5,,4,2,Erie,St,1606010,0.07,0.374,0,7.29464,5.8,4.5 +17080,0,0.278708,2,2,0,2,4,,4,2,Huron River,Dr,1606009,0.055,0.333,0,6.689003,4.5,4.5 +21667,0,0.162939,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,0,0.163,0,3.910536,3.7,5 +32136,0,0.278087,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.67408,0.15,4 +20379,0,0.028604,2,2,1,2,3,,4,6,Telegraph,Rd,4300001,28.538,28.567,0,0.686498,3.7,5 +20584,0,0.017279,2,2,0,2,3,,4,6,Telegraph,Rd,4300001,28.521,28.538,0,0.4147,3.7,5 +21668,0,0.080052,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,0.163,0.243,0,1.92125,3.7,5 +21922,0,0.080713,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,0.243,0.324,0,1.937113,3.7,5 +18250,-1,0.08013,0,2,0,2,4,,4,2,Garden,Blvd,1692303,0,0.08,0,1.923116,4.5,4.5 +24280,1,0.0886,2,0,0,2,4,,4,2,Garden,Blvd,4710963,0,0.089,0,2.1264,4.5,4.5 +16777,0,0.01046,1,1,0,2,4,,4,2,Huron River,Dr,1606009,0.333,0.344,0,0.251031,4.5,4.5 +18251,0,0.012492,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,0.08,0.093,0,0.299814,4.5,4.5 +30318,0,0.215348,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.168345,0.15,4 +17735,0,0.444885,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,0.771,1.216,0,10.677239,4.5,4.5 +30687,0,0.658669,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.808066,0.15,4 +16169,0,0.448002,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,0,0.448,0,10.752046,4.5,4.5 +17084,0,0.24713,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,1.728,1.975,0,5.931128,5.8,4.5 +17802,0,0.718306,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,3.152,3.87,0,17.239334,4.5,4.5 +17870,0,0.522346,1,1,0,2,4,,4,2,West,Rd,1674210,4.009,4.531,0,12.536294,4.5,4.5 +21515,0,0.394014,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,1.872,2.266,0,9.45634,3.7,5 +21997,0,0.311685,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,1.488,1.799,0,7.480448,3.7,5 +30535,0,0.638059,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.313408,0.15,4 +30690,0,0.255191,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.12459,0.15,4 +30693,0,0.474274,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.382577,0.15,4 +32135,0,0.364517,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.748406,0.15,4 +17087,0,0.7645,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,0.964,1.728,0,18.347995,5.8,4.5 +32140,0,0.171876,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.125028,0.15,4 +32156,0,0.100304,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.407287,0.15,4 +21245,0,0.347818,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,1.14,1.488,0,8.347636,3.7,5 +16196,0,0.173074,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,2.458,2.631,0,4.15378,5.8,4.5 +18255,0,0.250838,1,1,0,2,4,,4,2,West,Rd,1674210,3.758,4.009,0,6.020123,4.5,4.5 +30691,0,0.496799,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.923176,0.15,4 +30692,0,0.517956,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.430937,0.15,4 +16781,0,0.483561,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,1.975,2.458,0,11.605461,5.8,4.5 +17083,0,0.342759,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,2.631,2.974,0,8.226211,5.8,4.5 +17437,0,0.305254,1,1,0,2,4,,4,2,West,Rd,1674210,3.453,3.758,0,7.326099,4.5,4.5 +17050,0,0.58725,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,0.448,1.035,0,14.093994,4.5,4.5 +30684,0,0.19753,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.740722,0.15,4 +30689,0,0.444219,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.661264,0.15,4 +21730,0,0.073265,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,1.799,1.872,0,1.758356,3.7,5 +37313,0,0.271516,2,2,1,2,3,,4,2,West,Rd,1674210,4.981,5.252,0,6.516389,3.7,5 +18203,0,0.329487,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,4.067,4.396,0,7.907686,4.5,4.5 +37310,0,0.352557,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,3.374,3.726,0,8.461378,3.7,5 +21299,0,0.551723,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,2.266,2.818,0,13.241364,3.7,5 +18646,0,0.1967,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,3.87,4.067,0,4.720798,4.5,4.5 +30682,0,0.459373,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.024952,0.15,4 +30683,0,0.379024,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.096575,0.15,4 +37311,0,0.147294,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,3.726,3.873,0,3.535066,3.7,5 +37312,0,0.450125,1,1,0,2,4,,4,2,West,Rd,1674210,4.531,4.981,0,10.803002,4.5,4.5 +37360,1,0.028568,2,0,0,2,4,,3,5,Maple,Rd,1452206,3.087,3.116,0,0.685635,6,4.5 +37315,0,0.191836,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0.181,0.372,0,4.604056,3.7,5 +37391,-1,0.00684,0,1,0,2,4,,5,8,Winans Lake,Rd,4105274,0.057,0.064,0,0.164152,3,4 +37361,-1,0.026799,0,2,0,2,4,,3,5,Maple,Rd,4605989,0.05,0.077,0,0.643166,6,4.5 +37346,1,0.382726,2,0,0,1,1,RON,4,2,Telegraph/W I 94,RAMP,1578710,0.139,0.521,0,,1.09,4 +37365,1,0.029842,2,0,0,2,4,,3,5,Maple,Rd,1452206,3.173,3.203,0,0.716202,6,4.5 +37314,0,0.180614,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0,0.181,0,4.334729,3.7,5 +37363,0,0.057132,1,1,0,2,4,,3,5,Maple,Rd,1452206,3.116,3.173,0,1.37116,6,4.5 +37390,1,0.011217,1,0,0,2,4,,5,8,Hamburg,Rd,4105277,0,0.011,0,0.269204,3,4 +37358,-1,0.021846,0,1,0,2,4,,3,5,NB N Maple/SB N Maple,TURN,4605988,0,0.022,0,0.524312,6,4.5 +37316,0,0.372427,1,1,0,2,5,,4,2,Old Dix Toledo,Hwy,4718579,0,0.372,0,8.938258,5.8,4.5 +37359,1,0.017336,2,0,0,2,4,,3,5,Maple,Rd,1452206,3.07,3.087,0,0.41606,6,4.5 +14791,1,0.40902,3,0,0,1,1,,4,2,N I 75,,1592010,0.507,0.916,0,,0.8,7.5 +15074,1,0.2997,3,0,0,1,1,,4,2,N I 75,,1592010,1.719,2.019,0,,0.8,7.5 +15503,-1,0.559257,0,3,0,1,1,,4,2,S I 75,,1595106,0.514,1.073,0,,0.8,7.5 +15659,1,0.380279,1,0,0,1,1,ROF,4,2,N I 75/Gibraltar,RAMP,1592107,0,0.38,0,,2.24,5 +18472,0,0.31783,2,2,1,2,4,,4,2,Gibraltar,Rd,1692303,2.041,2.359,0,7.627921,4.5,4.5 +18735,0,0.6255,1,1,0,2,5,GRV,4,2,Woodruff,Rd,1694803,1.147,1.772,0,15.011995,6.55,4.5 +19089,0,0.319664,1,1,0,2,5,,4,2,Olmstead,Rd,1694707,1.227,1.547,0,7.671932,5.8,4.5 +30678,0,0.471424,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.314171,0.15,4 +31849,0,0.507703,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.184866,0.15,4 +17781,0,0.473112,1,1,0,2,5,,4,2,Olmstead,Rd,1694707,0.305,0.778,0,11.354693,5.8,4.5 +30679,0,0.0853,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.047201,0.15,4 +30313,0,0.192515,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.620371,0.15,4 +30312,0,0.084598,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.030342,0.15,4 +17476,0,0.449385,1,1,0,2,5,,4,2,Olmstead,Rd,1694707,0.778,1.227,0,10.785245,5.8,4.5 +18581,0,0.582926,2,2,0,2,5,,4,2,Hall,Rd,1692302,0,0.583,0,13.990219,5.8,4.5 +18838,0,0.284632,2,2,1,2,4,,4,2,Gibraltar,Rd,1692303,1.757,2.041,0,6.831177,4.5,4.5 +25533,0,0.501399,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.033578,0.15,4 +19051,0,0.195241,2,2,1,2,4,,4,2,Gibraltar,Rd,1692303,1.562,1.757,0,4.68578,4.5,4.5 +15125,1,0.80348,3,0,0,1,1,,4,2,N I 75,,1592010,0.916,1.719,0,,0.8,7.5 +20239,0,0.399886,1,1,0,2,4,,4,2,Old Fort,St,4302168,1.633,2.033,0,9.597253,4.5,4.5 +31850,0,0.493101,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.834413,0.15,4 +20426,0,0.053897,1,1,0,2,4,,4,2,Old Fort,St,4302168,1.579,1.633,0,1.293524,4.5,4.5 +31851,0,0.575605,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.814515,0.15,4 +14793,-1,0.370316,0,3,0,1,1,,4,2,S I 75,,1595106,2.042,2.412,0,,0.8,7.5 +14822,1,0.347576,1,0,0,1,1,RON,4,2,W Gibraltar/N I 75,RAMP,1592110,0,0.347,0,,1.09,4 +15070,1,0.361067,3,0,0,1,1,,4,2,N I 75,,1592010,2.019,2.38,0,,0.8,7.5 +15152,1,0.40726,1,0,0,1,1,ROF,4,2,S I 75/W Gibraltar,RAMP,1595110,0,0.407,0,,2.24,5 +17424,0,0.093565,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,2.631,2.724,0,2.24555,4.5,4.5 +32131,0,0.559832,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.435975,0.15,4 +15051,1,0.299128,1,0,0,1,1,RON,4,2,Gibraltar/S I 75,RAMP,1593808,0,0.299,0,,1.09,4 +15104,1,0.366379,1,0,0,1,1,ROF,4,2,S I 75/E Gibraltar,,1595109,0,0.366,0,,2.24,5 +15360,1,0.297253,1,0,0,1,1,RON,4,2,E Gibraltar/N I 75,RAMP,1592108,0,0.297,0,,1.09,4 +15400,-1,0.268377,0,3,0,1,1,,4,2,S I 75,,1595106,1.773,2.042,0,,0.8,7.5 +18252,0,0.121261,2,2,1,2,4,,4,2,Gibraltar,Rd,1692303,2.359,2.48,0,2.910255,4.5,4.5 +17736,0,0.10795,1,1,1,2,4,,4,2,Gibraltar,Rd,1692303,2.523,2.631,0,2.590796,4.5,4.5 +17965,0,0.04258,2,2,1,2,4,,4,2,Gibraltar,Rd,1692303,2.48,2.523,0,1.021929,4.5,4.5 +17049,0,0.732812,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,1.295,2.027,0,17.587481,4.5,4.5 +18644,0,0.171771,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,5.218,5.39,0,4.122498,4.5,4.5 +19117,0,0.147913,2,2,1,2,3,,4,2,West,Rd,1674210,5.854,6.002,0,3.54992,3.7,5 +30672,0,0.442576,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.621831,0.15,4 +30675,0,0.629349,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.104372,0.15,4 +30694,0,0.131223,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.149352,0.15,4 +30697,0,0.142977,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.431436,0.15,4 +18254,0,0.498687,2,2,1,2,3,,4,2,West,Rd,1674210,5.252,5.751,0,11.968495,3.7,5 +30695,0,0.495092,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.882207,0.15,4 +30696,0,0.504941,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.118582,0.15,4 +17869,0,0.103211,2,2,1,2,3,,4,2,West,Rd,1674210,5.751,5.854,0,2.477061,3.7,5 +16162,0,0.575408,2,2,0,2,4,,4,2,Vreeland,Rd,1606105,2.027,2.603,0,13.809803,4.5,4.5 +17799,0,0.66475,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,5.397,6.061,0,15.953992,4.5,4.5 +19110,0,0.196472,3,3,1,2,3,,4,2,West,Rd,1674210,6.386,6.582,0,4.71532,3.7,5 +23808,1,0.533705,2,0,0,2,5,DV2,4,2,Hall,Rd,4707704,0.491,1.024,0,12.808928,5.8,4.5 +24481,-1,0.484352,0,2,0,2,5,DV2,4,2,Hall,Rd,4710003,0.659,1.143,0,11.624437,5.8,4.5 +32133,0,0.50187,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.044874,0.15,4 +23809,1,0.460446,2,0,0,2,5,DV2,4,2,Hall,Rd,4707704,0.03,0.491,0,11.050711,5.8,4.5 +24489,-1,0.509935,0,2,0,2,5,DV2,4,2,Hall,Rd,4710003,0.149,0.659,0,12.238445,5.8,4.5 +18201,0,0.007112,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,5.39,5.397,0,0.170693,4.5,4.5 +14918,1,0.339839,1,0,0,1,1,RON,4,2,West/S I 75,RAMP,1595201,0,0.34,0,,1.09,4 +15242,-1,0.718524,0,3,0,1,1,,4,2,S I 75,,1595106,4.722,5.441,0,,0.8,7.5 +40307,1,0.327436,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,5.681,6.008,0,7.858463,3.7,5 +19114,0,0.020077,2,2,1,2,3,,4,2,West,Rd,1674210,6.169,6.19,0,0.481851,3.7,5 +23834,1,0.17075,1,0,0,1,1,ROF,4,2,N I 75/E West,RAMP,4707547,0,0.171,0,,2.24,5 +18230,0,0.102669,2,2,1,2,3,,4,2,West,Rd,1674210,6.009,6.111,0,2.464058,3.7,5 +18669,0,0.006845,2,2,1,2,3,,4,2,West,Rd,1674210,6.002,6.009,0,0.164276,3.7,5 +17834,0,0.058068,2,2,1,2,3,,4,2,West,Rd,1674210,6.111,6.169,0,1.39363,3.7,5 +18666,0,0.119687,2,2,1,2,3,,4,2,West,Rd,1674210,6.19,6.309,0,2.872499,3.7,5 +17828,0,0.068855,3,3,1,2,3,,4,2,West,Rd,1674210,6.317,6.386,0,1.652526,3.7,5 +18227,0,0.007954,2,2,1,2,3,,4,2,West,Rd,1674210,6.309,6.317,0,0.190901,3.7,5 +31875,0,0.496202,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.908859,0.15,4 +12306,1,1.514628,2,0,0,1,2,,4,2,N I 75/US 24,CONN,1579905,0,1.514,0,,0.8,7.5 +12514,0,0.24882,2,2,1,2,3,,4,2,Eureka,Rd,1578308,7.088,7.336,0,5.971671,3.7,5 +13191,-1,1.589024,0,2,0,1,2,,4,2,S I 75/US 24,CONN,1578409,0,1.589,0,,0.8,7.5 +14766,-1,0.416677,0,3,0,1,1,,4,2,S I 75,,1595106,7.13,7.546,0,,0.8,7.5 +15251,0,0.24937,1,1,0,2,5,,4,2,Carter,Rd,1594403,0,0.249,0,5.984882,5.8,4.5 +37372,1,0.043288,2,0,0,2,4,,4,5,Maple,Rd,1452206,3.214,3.258,0,1.03892,4.5,4.5 +15654,0,0.50932,1,1,0,2,4,,4,2,King,Rd,1592206,2.004,2.513,0,12.223683,4.5,4.5 +15699,1,0.428126,3,0,0,1,1,,4,2,N I 75,,1592010,7.132,7.56,0,,0.8,7.5 +16621,0,0.449211,1,1,1,2,4,,4,2,Sibley,Rd,1607308,6.993,7.442,0,10.781058,4.5,4.5 +17567,0,0.716844,2,2,0,2,3,,4,2,Dix Toledo,Hwy,1688707,0,0.717,0,17.204245,3.7,5 +17839,0,0.730202,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,7.66,8.39,0,17.524846,4.5,4.5 +17845,0,0.466799,1,1,0,2,5,,4,2,Racho,Rd,1692908,0.062,0.528,0,11.203172,5.8,4.5 +18372,0,0.518344,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,0,0.518,0,12.44026,4.5,4.5 +19641,1,0.341542,1,0,0,1,1,RON,4,2,Sibley/N I 75,RAMP,1840807,0,0.341,0,,1.09,4 +19645,1,0.344844,1,0,0,1,1,ROF,4,2,S I 75/Sibley,RAMP,1840806,0,0.345,0,,2.24,5 +37392,1,0.055541,1,0,0,2,5,,5,8,Hamburg,Rd,940105,1.955,2.011,0,1.332996,3.7,5 +22059,0,0.524851,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,5.391,5.915,0,12.596417,3.7,5 +30699,0,0.566128,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.58707,0.15,4 +30798,0,0.620037,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.88089,0.15,4 +32149,0,0.256502,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.15606,0.15,4 +32165,0,0.552934,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.270409,0.15,4 +32167,0,0.586488,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.075708,0.15,4 +16378,0,0.891876,1,1,0,2,4,,4,2,Sibley,Rd,1607308,6.101,6.993,0,21.405024,4.5,4.5 +21514,0,0.306507,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,4.373,4.679,0,7.356162,3.7,5 +32147,0,1.018192,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.436615,0.15,4 +16379,0,0.311796,1,1,0,2,4,,4,2,Sibley,Rd,1607308,5.682,5.994,0,7.483104,4.5,4.5 +32145,0,0.513396,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.321493,0.15,4 +16624,0,0.107386,1,1,0,2,4,,4,2,Sibley,Rd,1607308,5.994,6.101,0,2.577266,4.5,4.5 +21606,0,0.436116,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,3.937,4.373,0,10.466785,3.7,5 +32151,0,0.495413,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.889901,0.15,4 +37370,-1,0.031268,0,2,0,2,4,,4,5,NB N Maple/SB N Maple,TURN,1431903,0.44,0.471,0,0.750438,4.5,4.5 +37371,-1,0.040569,0,2,0,2,4,,4,5,Maple,Rd,4605990,0.046,0.087,0,0.973657,4.5,4.5 +37369,1,0.011889,2,0,0,2,4,,4,5,Maple,Rd,1452206,3.203,3.214,0,0.285342,4.5,4.5 +37368,-1,0.012957,0,2,0,2,4,,4,5,Maple,Rd,4605990,0.033,0.046,0,0.310979,4.5,4.5 +21789,0,0.063605,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,3.873,3.937,0,1.526525,3.7,5 +37309,0,0.55599,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,2.818,3.374,0,13.343765,3.7,5 +21244,0,0.513629,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,4.877,5.391,0,12.327089,3.7,5 +21348,0,0.198041,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,4.679,4.877,0,4.752983,3.7,5 +12146,0,0.498534,2,2,1,2,3,,4,2,Eureka,Rd,1578308,6.089,6.587,0,11.964821,3.7,5 +18065,0,0.504071,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,1.077,1.581,0,12.097698,4.5,4.5 +18673,0,0.394602,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,6.653,7.047,0,9.470444,4.5,4.5 +21729,0,0.370789,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,6.506,6.876,0,8.898941,3.7,5 +30418,0,0.503959,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.09502,0.15,4 +30706,0,0.506224,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.149387,0.15,4 +31113,0,0.482873,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.588962,0.15,4 +32174,0,0.493161,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.835872,0.15,4 +18373,0,0.559265,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,0.518,1.077,0,13.422368,4.5,4.5 +19124,0,0.461889,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,6.191,6.653,0,11.085327,4.5,4.5 +32163,0,0.490138,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.763314,0.15,4 +17868,0,0.496427,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,1.581,2.077,0,11.914244,4.5,4.5 +17546,0,0.499495,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,2.077,2.577,0,11.98787,4.5,4.5 +18234,0,0.612639,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,7.047,7.66,0,14.703328,4.5,4.5 +21921,0,0.590644,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,5.915,6.506,0,14.175456,3.7,5 +30707,0,0.557305,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.375315,0.15,4 +30708,0,0.500891,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.021373,0.15,4 +11881,-1,0.1984,0,2,0,2,3,DIV,4,2,Telegraph,Rd,1576806,0.406,0.604,0,4.761601,3.7,5 +12516,0,0.479059,2,2,1,2,3,,4,2,Eureka,Rd,1578308,6.587,7.066,0,11.497421,3.7,5 +21457,1,0.228731,2,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,7.26,7.489,0,5.489555,3.7,5 +31116,0,0.503766,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.090383,0.15,4 +32064,0,0.480698,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.536749,0.15,4 +32175,0,0.496104,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.906488,0.15,4 +32176,0,0.520364,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.488737,0.15,4 +32065,0,0.498356,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.960534,0.15,4 +11882,-1,0.405674,0,2,0,2,3,DIV,4,2,Telegraph,Rd,1576806,0,0.406,0,9.736186,3.7,5 +21607,1,0.384053,2,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,6.876,7.26,0,9.217284,3.7,5 +11880,-1,0.501335,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,0.604,1.105,0,12.032049,3.7,5 +21349,1,0.497215,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,7.489,7.986,0,11.933166,3.7,5 +12145,0,0.021894,2,2,1,2,3,,4,2,Eureka,Rd,1578308,7.066,7.088,0,0.525467,3.7,5 +14944,1,1.382254,3,0,0,1,1,,4,2,N I 75,,1592010,5.316,6.697,0,,0.8,7.5 +14953,-1,1.18132,0,3,0,1,1,,4,2,S I 75,,1595106,5.441,6.622,0,,0.8,7.5 +15649,0,0.327627,1,1,0,2,4,,4,2,King,Rd,1592206,2.682,3.01,0,7.863054,4.5,4.5 +16613,0,0.094818,2,2,0,2,4,,4,2,Sibley,Rd,1607308,8.024,8.118,0,2.275643,4.5,4.5 +21302,0,0.269688,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,1.055,1.324,0,6.472501,3.7,5 +22111,0,0.624516,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,1.324,1.948,0,14.988379,3.7,5 +30702,0,0.530245,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.725883,0.15,4 +32137,0,0.564849,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.556388,0.15,4 +32153,0,0.509239,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.221736,0.15,4 +15355,0,0.168833,1,1,0,2,4,,4,2,King,Rd,1592206,2.513,2.682,0,4.052001,4.5,4.5 +21568,0,0.322271,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0.559,0.881,0,7.734498,3.7,5 +32139,0,0.483582,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.605976,0.15,4 +21849,0,0.084488,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0.372,0.457,0,2.027718,3.7,5 +37375,1,0.030857,1,0,0,2,4,,4,5,Maple,Rd,1452206,3.435,3.466,0,0.740573,4.5,4.5 +32150,0,0.208633,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.007188,0.15,4 +15033,0,0.054103,1,1,0,2,5,,4,2,Carter,Rd,1594403,0.249,0.303,0,1.298478,5.8,4.5 +37374,0,0.177735,1,1,0,2,4,,4,5,Maple,Rd,1452206,3.258,3.435,0,4.265628,4.5,4.5 +21671,0,0.102307,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0.457,0.559,0,2.455371,3.7,5 +21408,0,0.173326,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0.881,1.055,0,4.159819,3.7,5 +16377,0,0.58222,1,1,1,2,4,,4,2,Sibley,Rd,1607308,7.442,8.024,0,13.973285,4.5,4.5 +30701,0,0.515607,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.374578,0.15,4 +30703,0,0.341913,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.205908,0.15,4 +15348,0,0.772219,1,1,0,2,4,,4,2,King,Rd,1592206,3.01,3.782,0,18.533266,4.5,4.5 +31873,0,0.548248,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.157955,0.15,4 +37128,1,0.582128,1,0,0,1,1,ROF,4,2,N I 75/W West,RAMP,4718434,0,0.582,0,,2.24,5 +40187,-1,0.764445,0,2,0,2,3,DIV,4,2,Fort,St,1592106,3.809,4.573,0,18.346689,3.7,5 +14941,1,0.43517,3,0,0,1,1,,4,2,N I 75,,1592010,6.697,7.132,0,,0.8,7.5 +40382,1,0.034742,1,0,0,2,4,,3,5,Geddes,Rd,1448104,3.055,3.09,0,0.833805,6,4.5 +40368,1,0.262477,1,0,0,1,1,ROF,4,2,N I 75/Dix Toledo,RAMP,1592207,0,0.262,0,,2.24,5 +15786,-1,0.252768,0,3,0,1,1,,4,2,S I 75,,1595106,6.622,6.874,0,,0.8,7.5 +16372,0,0.112149,2,2,1,2,4,,4,2,Sibley,Rd,1607308,8.415,8.527,0,2.69158,4.5,4.5 +40370,1,0.309025,1,0,0,1,1,ROF,4,2,S I 75/Dix Toledo,RAMP,1594407,0,0.309,0,,2.24,5 +40383,1,0.235025,1,0,0,1,2,ROF,4,5,N US 23/Geddes,RAMP,1431310,0,0.235,0,,2.24,5 +31867,0,0.522917,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.550007,0.15,4 +40386,1,0.037783,1,0,0,2,4,,4,5,Geddes,Rd,1448104,3.208,3.246,0,0.906785,4.5,4.5 +40385,0,0.118815,1,1,0,2,4,,3,5,Geddes,Rd,1448104,3.09,3.208,0,2.85157,6,4.5 +40384,1,0.294944,1,0,0,1,2,RON,4,5,Geddes/N US 23,RAMP,1431402,0.02,0.315,0,,1.09,4 +15018,-1,0.255347,0,3,0,1,1,,4,2,S I 75,,1595106,6.874,7.13,0,,0.8,7.5 +16373,0,0.22593,2,2,1,2,4,,4,2,Sibley,Rd,1607308,8.118,8.344,0,5.422329,4.5,4.5 +40367,0,0.14324,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,1.948,2.092,0,3.437749,3.7,5 +40371,1,0.189963,1,0,0,1,1,RON,4,2,Dix Toledo/N I 75,RAMP,4719476,0,0.19,0,,1.09,4 +40381,-1,0.030753,0,2,0,2,4,,3,5,Geddes,Rd,4606197,0.062,0.093,0,0.738078,6,4.5 +40380,1,0.19349,1,0,0,1,2,RON,3,5,Geddes/S US 23,RAMP,4606199,0.019,0.212,0,,1.09,4 +40369,1,0.218042,1,0,0,1,1,RON,4,2,Dix Toledo/S I 75,RAMP,4719477,0,0.218,0,,1.09,4 +16612,0,0.070948,2,2,1,2,4,,4,2,Sibley,Rd,1607308,8.344,8.415,0,1.702753,4.5,4.5 +21409,0,0.287186,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,2.092,2.379,0,6.892473,3.7,5 +12510,1,0.348328,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.094,8.442,0,8.359863,3.7,5 +14896,1,0.561414,3,0,0,1,1,,4,2,N I 75,,1592010,8.3,8.861,0,,0.8,7.5 +15663,-1,0.656362,0,3,0,1,1,,4,2,S I 75,,1595106,8.21,8.866,0,,0.8,7.5 +19121,0,0.756782,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,8.664,9.421,0,18.162766,4.5,4.5 +19130,0,0.675286,1,1,0,2,4,,4,2,Racho,Rd,1692908,1.085,1.76,0,16.206874,4.5,4.5 +23793,-1,0.251613,0,3,0,2,3,DIV,4,2,Eureka,Rd,4707874,0,0.252,0,6.03872,3.7,5 +30323,0,0.471065,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.305563,0.15,4 +30795,0,0.578044,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.873046,0.15,4 +32178,0,0.346959,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.327022,0.15,4 +32262,0,0.470753,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.298069,0.15,4 +17846,0,0.497652,1,1,0,2,5,,4,2,Racho,Rd,1692908,0.528,1.026,0,11.943657,5.8,4.5 +30698,0,0.422122,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.13092,0.15,4 +30700,0,0.545443,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.090636,0.15,4 +17531,0,0.059382,1,1,0,2,4,,4,2,Racho,Rd,1692908,1.026,1.085,0,1.42517,4.5,4.5 +17710,0,0.274452,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,8.39,8.664,0,6.586858,4.5,4.5 +12139,0,0.443845,2,3,1,2,3,,4,2,Eureka,Rd,1578308,7.65,8.094,0,10.652275,3.7,5 +18796,0,0.241723,1,1,0,2,4,,4,2,Racho,Rd,1692908,1.76,2.002,0,5.801353,4.5,4.5 +30705,0,0.413103,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.914472,0.15,4 +32058,0,0.318899,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.653573,0.15,4 +12143,0,0.248315,2,2,1,2,3,,4,2,Eureka,Rd,1578308,7.336,7.585,0,5.959569,3.7,5 +12512,0,0.065744,2,3,1,2,3,,4,2,Eureka,Rd,1578308,7.585,7.65,0,1.577844,3.7,5 +32177,0,0.332135,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.971237,0.15,4 +18563,0,0.32669,1,1,0,2,4,,4,2,Racho,Rd,1692908,2.002,2.328,0,7.840569,4.5,4.5 +30799,0,0.254745,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.113889,0.15,4 +14829,-1,0.66403,0,3,0,1,1,,4,2,S I 75,,1595106,7.546,8.21,0,,0.8,7.5 +15615,1,0.739999,3,0,0,1,1,,4,2,N I 75,,1592010,7.56,8.3,0,,0.8,7.5 +30317,0,0.474649,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.391579,0.15,4 +31864,0,0.279844,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.716255,0.15,4 +12509,1,0.105899,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.498,8.604,0,2.541584,3.7,5 +14474,1,0.226834,1,0,0,1,1,RON,4,2,Eureka/S I 75,RAMP,1589406,0.083,0.31,0,,1.09,4 +14795,1,0.207533,1,0,0,1,1,RON,4,2,Eureka/N I 75,RAMP,1592303,0,0.208,0,,1.09,4 +14877,1,0.57261,3,0,0,1,1,,4,2,N I 75,,1592010,9.134,9.707,0,,0.8,7.5 +14887,1,0.272958,3,0,0,1,1,,4,2,N I 75,,1592010,8.861,9.134,0,,0.8,7.5 +15119,1,0.304503,1,0,0,1,1,ROF,4,2,S I 75/Eureka,RAMP,1595203,0,0.304,0,,2.24,5 +15622,1,0.373187,1,0,0,1,1,ROF,4,2,N I 75/Eureka,RAMP,1592302,0,0.373,0,,2.24,5 +15637,-1,0.595715,0,3,0,1,1,,4,2,S I 75,,1595106,8.866,9.461,0,,0.8,7.5 +23790,-1,0.109439,0,3,0,2,3,DIV,4,2,Eureka,Rd,4707874,0.405,0.514,0,2.626527,3.7,5 +30794,0,0.546634,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.119208,0.15,4 +32223,0,0.52835,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.680397,0.15,4 +32225,0,0.513993,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.335843,0.15,4 +23792,-1,0.153131,0,3,0,2,3,DIV,4,2,Eureka,Rd,4707874,0.252,0.405,0,3.675143,3.7,5 +12135,1,0.055442,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.442,8.498,0,1.330613,3.7,5 +13891,1,0.083259,1,0,0,1,1,RON,4,2,E Eureka/S I 75,RAMP,1589406,0,0.083,0,,1.09,4 +37127,1,0.469743,1,0,0,1,1,ROF,4,2,S I 75/E West,RAMP,4718435,0,0.47,0,,2.24,5 +19520,1,0.066517,1,0,0,1,1,RON,4,2,W Eureka/S I 75,RAMP,1881002,0.015,0.082,0,,1.09,4 +19521,1,0.014982,1,0,0,2,3,RSF,4,2,W Eureka/S I 75,RAMP,1881002,0,0.015,0,0.359576,3.7,5 +12079,1,0.205166,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.763,8.969,0,4.923991,3.7,5 +23789,-1,0.170554,0,3,0,2,3,DIV,4,2,Eureka,Rd,4707874,0.514,0.685,0,4.093298,3.7,5 +12460,1,0.12593,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.638,8.763,0,3.022318,3.7,5 +12134,1,0.033951,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.604,8.638,0,0.814829,3.7,5 +15323,1,0.032483,1,0,0,2,3,RSF,4,2,N I 75/Eureka,RAMP,1592302,0.373,0.406,0,0.779581,3.7,5 +23788,-1,0.188572,0,3,0,2,3,DIV,4,2,Eureka,Rd,4707874,0.685,0.873,0,4.525718,3.7,5 +19040,0,0.285612,1,1,0,2,5,,4,2,Lee,Rd,1709810,0.672,0.957,0,6.854686,5.8,4.5 +20086,0,0.260024,1,1,0,2,4,,5,6,US Turnpike,,4301655,13.34,13.599,0,6.240584,3,4 +20472,0,0.260737,1,1,0,2,4,,5,6,US Turnpike,,4301655,12.187,12.448,0,6.257677,3,4 +20283,0,0.891826,1,1,0,2,4,,5,6,US Turnpike,,4301655,12.448,13.34,0,21.403813,3,4 +17066,0,0.341185,1,1,0,2,4,,4,2,Huron River,Dr,1606009,4.727,5.069,0,8.188434,4.5,4.5 +20287,0,0.503688,1,1,0,2,4,,4,2,Jefferson,Ave,4302169,0.85,1.354,0,12.0885,4.5,4.5 +20712,0,0.078126,1,1,0,2,4,,5,6,US Turnpike,,4302169,0,0.078,0,1.875017,3,4 +31852,0,0.424239,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.181747,0.15,4 +32121,0,0.712814,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.107538,0.15,4 +32125,0,0.172697,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.144727,0.15,4 +19039,0,0.672126,1,1,0,2,5,,4,2,Lee,Rd,1709810,0,0.672,0,16.131028,5.8,4.5 +20476,0,0.772463,1,1,0,2,4,,,2,Jefferson,Ave,4302169,0.078,0.85,0,18.539121,3,4 +32122,0,0.508608,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.206596,0.15,4 +20090,0,0.522552,1,1,0,2,4,,4,2,Jefferson,Ave,4302169,1.354,1.876,0,12.541257,4.5,4.5 +16761,0,0.083742,1,1,0,2,4,,4,2,Huron River,Dr,1606009,5.069,5.152,0,2.009811,4.5,4.5 +20780,0,0.072955,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,1.876,1.949,0,1.750912,4.5,4.5 +22246,-1,0.118538,0,1,0,2,4,,4,2,Jefferson/Huron River Cutoff,,4702732,0,0.119,0,2.844918,4.5,4.5 +19038,0,0.114545,1,1,0,2,5,,4,2,Milleville,Rd,1709806,0.356,0.47,0,2.74908,5.8,4.5 +11923,0,0.410024,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.24,12.65,0,9.840565,5,5 +14891,-1,0.417601,0,2,0,2,3,DIV,4,2,Fort,St,1592106,4.573,4.99,0,10.022435,3.7,5 +15766,1,0.44333,2,0,0,2,3,DIV,4,2,Fort,St,1592105,4.708,5.151,0,10.639927,3.7,5 +17450,0,0.829187,1,1,0,2,5,,4,2,River,Rd,1691206,2.704,3.533,0,19.900487,5.8,4.5 +17654,0,0.779048,1,1,0,2,5,,4,2,River,Rd,1691206,1.925,2.704,0,18.697153,5.8,4.5 +17751,0,0.716615,1,1,0,2,4,,4,2,Meridian,Rd,1690909,1.837,2.553,0,17.198762,4.5,4.5 +18051,0,0.705432,1,1,0,2,5,,4,2,Groh,Rd,1690905,0,0.705,0,16.930367,5.8,4.5 +18164,0,0.85492,1,1,0,2,5,,4,2,River,Rd,1691503,0.885,1.74,0,20.518091,5.8,4.5 +18663,0,0.6292,1,1,0,2,4,,3,2,Pennsylvania,Ave,1674307,12.525,13.154,0,15.100808,6,4.5 +18948,0,0.470148,1,1,0,2,4,,4,2,Grosse Ile,Pkwy,1692407,0.299,0.769,0,11.283556,4.5,4.5 +20240,0,0.181413,2,2,0,2,4,,4,2,Jefferson,Ave,4302169,7.265,7.446,0,4.353908,4.5,4.5 +20340,1,0.357397,2,0,0,2,3,DV2,4,2,Jefferson,Ave,4302169,10.036,10.393,0,8.577529,3.7,5 +22300,0,0.730315,1,1,0,2,4,,4,2,Bridge,Rd,4705855,0,0.73,0,17.527571,4.5,4.5 +22748,0,0.898175,2,2,1,2,3,,4,2,Allen,Rd,4705756,1.93,2.828,0,21.556204,3.7,5 +22881,0,0.127599,1,1,1,2,5,,3,2,Oak,St,4705862,0.649,0.777,0,3.062383,8,4.5 +23738,-1,0.68188,0,2,0,2,3,DV2,4,2,Jefferson,Ave,4707956,0,0.682,0,16.36512,3.7,5 +30426,0,0.243938,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.854503,0.15,4 +30434,0,0.507921,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.190115,0.15,4 +31651,0,0.764467,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.347204,0.15,4 +32413,0,0.980817,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.5396,0.15,4 +32424,0,0.227448,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.458758,0.15,4 +33770,0,0.80523,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.325522,0.15,4 +15373,1,0.513414,2,0,0,2,3,DIV,4,2,Fort,St,1592105,2.242,2.755,0,12.321927,3.7,5 +15440,-1,0.007401,0,2,0,2,3,DIV,4,2,Fort,St,1592106,3.801,3.809,0,0.177622,3.7,5 +15449,-1,0.421988,0,2,0,2,3,DIV,4,2,Fort,St,1592106,2.172,2.594,0,10.127702,3.7,5 +15497,1,0.008751,2,0,0,2,3,DIV,4,2,Fort,St,1592105,3.959,3.968,0,0.210025,3.7,5 +17023,0,0.627131,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,4.125,4.752,0,15.051155,4.5,4.5 +40199,0,0.165411,2,2,0,2,4,,3,2,Miller,Rd,1589801,1.914,2.08,0,3.969858,6,4.5 +17774,0,0.69998,1,1,0,2,5,,4,2,Gibraltar,Rd,1698604,0,0.7,0,16.799515,5.8,4.5 +18098,0,0.923116,1,1,0,2,5,,4,2,Gibraltar,Rd,1698410,0,0.923,0,22.154795,5.8,4.5 +18577,0,0.526087,1,1,0,2,5,,4,2,Gibraltar,Rd,1692303,4.463,4.989,0,12.626096,5.8,4.5 +20592,0,0.934969,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,4.206,5.14,0,22.439248,4.5,4.5 +22678,0,0.372509,1,1,0,2,3,,4,2,Allen,Rd,4705756,0.449,0.822,0,8.940209,3.7,5 +30425,0,0.44142,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.59408,0.15,4 +30428,0,0.491006,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.784155,0.15,4 +32132,0,0.508503,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.204075,0.15,4 +32142,0,1.001954,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.046886,0.15,4 +32197,0,0.196973,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.727354,0.15,4 +32198,0,0.140485,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.371644,0.15,4 +32208,0,0.477528,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.460665,0.15,4 +33812,0,0.192585,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.622032,0.15,4 +17642,0,0.72641,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,3.347,4.073,0,17.433832,4.5,4.5 +18513,0,0.73716,1,1,0,2,5,,4,2,Woodruff,Rd,1694803,2.793,3.53,0,17.691838,5.8,4.5 +20137,0,0.816454,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,2.998,3.814,0,19.594887,4.5,4.5 +14836,1,0.520832,2,0,0,2,3,DIV,4,2,Fort,St,1592105,1.721,2.242,0,12.499978,3.7,5 +15083,1,0.308345,2,0,0,2,3,DIV,4,2,Fort,St,1592105,1.413,1.721,0,7.40028,3.7,5 +15728,-1,0.571066,0,2,0,2,3,DIV,4,2,Fort,St,1592106,1.601,2.172,0,13.705577,3.7,5 +15729,-1,0.330989,0,2,0,2,3,DIV,4,2,Fort,St,1592106,1.27,1.601,0,7.943731,3.7,5 +18401,0,0.260294,1,1,0,2,4,,4,2,Old Fort,St,1688706,1.032,1.292,0,6.247066,4.5,4.5 +19275,0,0.389249,1,1,0,2,3,,4,2,Allen,Rd,1798905,0,0.389,0,9.341978,3.7,5 +14897,-1,0.089499,0,2,0,1,2,,4,2,Fort,St,1592106,1.181,1.27,0,,0.8,7.5 +15010,1,0.098268,2,0,0,1,2,,4,2,Fort,St,1592105,1.315,1.413,0,,0.8,7.5 +18064,0,0.152215,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,3.194,3.347,0,3.653161,4.5,4.5 +18867,0,0.139865,1,1,0,2,4,,4,2,Old Fort,St,1688706,0.892,1.032,0,3.356763,4.5,4.5 +18691,0,0.0631,1,1,0,2,3,,4,2,Gibraltar,Rd,1692303,3.119,3.182,0,1.514406,3.7,5 +18471,0,0.012549,2,2,0,2,3,,4,2,Gibraltar,Rd,1692303,3.182,3.194,0,0.301184,3.7,5 +23262,0,0.255735,1,1,0,2,3,,4,2,Allen,Rd,4705756,0,0.256,0,6.137649,3.7,5 +17991,0,0.018225,1,1,0,2,4,,4,2,Old Fort,Rd,1688706,1.292,1.311,0,0.43739,4.5,4.5 +22955,0,0.19383,1,1,0,2,3,,4,2,Allen,Rd,4705756,0.256,0.449,0,4.651926,3.7,5 +20339,0,0.13121,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,2.867,2.998,0,3.149033,4.5,4.5 +19049,0,0.390773,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,4.073,4.463,0,9.378542,4.5,4.5 +20832,0,0.391433,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,3.814,4.206,0,9.394391,4.5,4.5 +32192,0,0.63629,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.270965,0.15,4 +32195,0,0.181054,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.345287,0.15,4 +14784,1,0.297883,2,0,0,2,3,DIV,4,2,Fort,St,1592105,3.661,3.959,0,7.149186,3.7,5 +14895,-1,0.648001,0,2,0,2,3,DIV,4,2,Fort,St,1592106,2.594,3.242,0,15.552019,3.7,5 +15727,-1,0.295487,0,2,0,2,3,DIV,4,2,Fort,St,1592106,3.242,3.537,0,7.091678,3.7,5 +15775,1,0.621261,2,0,0,2,3,DIV,4,2,Fort,St,1592105,2.755,3.376,0,14.910253,3.7,5 +16140,0,0.460439,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,3.665,4.125,0,11.050524,4.5,4.5 +17733,0,0.45107,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,6.773,7.223,0,10.825677,4.5,4.5 +23334,0,0.440371,1,1,0,2,3,,4,2,Allen,Rd,4705756,1.383,1.823,0,10.568909,3.7,5 +30430,0,0.526469,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.635246,0.15,4 +33811,0,0.551794,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.243059,0.15,4 +17030,0,0.23548,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,3.113,3.349,0,5.651523,4.5,4.5 +23669,0,0.560926,1,1,0,2,3,,4,2,Allen,Rd,4705756,0.822,1.383,0,13.462227,3.7,5 +30310,0,0.510667,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.256007,0.15,4 +16151,0,0.244833,2,2,0,2,4,,4,2,Vreeland,Rd,1606105,2.868,3.113,0,5.875997,4.5,4.5 +30308,0,0.201352,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.832453,0.15,4 +17024,0,0.2692,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,3.349,3.618,0,6.460798,4.5,4.5 +32196,0,0.279434,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.706426,0.15,4 +16717,0,0.046796,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,3.618,3.665,0,1.123094,4.5,4.5 +18151,0,0.317246,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,6.455,6.773,0,7.613907,4.5,4.5 +30435,0,0.454658,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.911802,0.15,4 +30436,0,0.502229,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.053488,0.15,4 +23025,0,0.107215,2,2,1,2,3,,4,2,Allen,Rd,4705756,1.823,1.93,0,2.573162,3.7,5 +14770,1,0.285224,2,0,0,2,3,DIV,4,2,Fort,St,1592105,3.376,3.661,0,6.845378,3.7,5 +18424,0,0.308911,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,7.223,7.532,0,7.413855,4.5,4.5 +30431,0,0.055332,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.327958,0.15,4 +18010,1,0.042287,2,0,0,2,4,DV2,4,2,Van Horn,Rd,1674101,7.641,7.683,0,1.0149,4.5,4.5 +15726,-1,0.264338,0,2,0,2,3,DIV,4,2,Fort,St,1592106,3.537,3.801,0,6.34411,3.7,5 +18096,0,0.389831,1,1,0,2,5,,4,2,Stoeflet,St,1698403,0.369,0.759,0,9.355935,5.8,4.5 +18289,0,0.36131,1,1,0,2,5,,4,2,Adams,Dr,1698303,0.585,0.946,0,8.671438,5.8,4.5 +17734,0,0.117737,1,1,0,2,5,,,2,Gibraltar,Rd,1692303,5.089,5.206,0,2.825695,3.7,5 +32191,0,0.259978,1,1,0,2,99,,,2,Centroid Connector,,0,0,0,0,6.239464,0.15,4 +18097,0,0.221104,1,1,0,2,5,,4,2,Gibraltar,Rd,1698409,0.449,0.67,0,5.306495,5.8,4.5 +18100,0,0.116421,1,1,0,2,5,,4,2,Gibraltar,Rd,1698501,0.341,0.457,0,2.79411,5.8,4.5 +18152,0,0.099454,1,1,0,2,5,,4,2,Gibraltar,Rd,1692303,4.989,5.089,0,2.386893,5.8,4.5 +18099,0,0.005718,1,1,0,2,5,,4,2,Worth,St,1698501,0.335,0.341,0,0.137228,5.8,4.5 +32190,0,0.137621,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.302906,0.15,4 +32189,0,0.034423,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.826161,0.15,4 +18290,0,0.104651,1,1,0,2,5,,4,2,Adams,Dr,1698303,0.946,1.05,0,2.511624,5.8,4.5 +19148,0,0.054349,1,1,0,2,5,,4,2,Gibraltar,Rd,1692303,5.206,5.261,0,1.304367,5.8,4.5 +17980,0,0.710488,1,1,0,2,5,,4,2,River,Rd,1691206,0.602,1.312,0,17.051714,5.8,4.5 +18947,0,0.299056,1,1,1,2,4,,4,2,Grosse Ile,Pkwy,1692407,0,0.299,0,7.177353,4.5,4.5 +20185,0,0.488867,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,5.727,6.215,0,11.732808,4.5,4.5 +20427,0,0.796945,2,2,0,2,4,,4,2,Jefferson,Ave,4302169,6.468,7.265,0,19.126674,4.5,4.5 +30429,0,0.465271,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.166502,0.15,4 +30604,0,0.364101,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.73842,0.15,4 +32199,0,0.604838,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.516118,0.15,4 +20387,0,0.586394,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,5.14,5.727,0,14.073462,4.5,4.5 +30266,0,0.248099,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.954379,0.15,4 +40193,0,0.067215,2,2,0,2,4,,4,2,Van Horn,Rd,1674101,8.443,8.51,0,1.613154,4.5,4.5 +30427,0,0.466177,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.18824,0.15,4 +20880,0,0.077253,2,2,0,2,4,,4,2,Jefferson,Ave,4302169,6.215,6.292,0,1.854064,4.5,4.5 +20645,0,0.17584,2,2,0,2,4,,4,2,Jefferson,Ave,4302169,6.292,6.468,0,4.220163,4.5,4.5 +17979,0,0.602334,1,1,0,2,5,,4,2,River,Rd,1691206,0,0.602,0,14.456022,5.8,4.5 +30420,0,0.436623,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.478945,0.15,4 +30419,0,0.312742,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.505801,0.15,4 +12356,0,0.332025,2,2,1,2,3,,3,2,Eureka,Rd,1578308,10.588,10.919,0,7.968605,5,5 +15253,0,0.379094,1,1,0,2,5,,3,2,Leroy,Ave,1594007,0.923,1.302,0,9.098262,8,4.5 +15318,0,0.758312,1,1,0,2,5,,4,2,Harrison,Ave,1592804,0.69,1.448,0,18.199478,5.8,4.5 +15344,0,0.681408,1,1,0,2,4,,4,2,King,Rd,1592206,5.313,5.994,0,16.353795,4.5,4.5 +15655,1,0.41243,3,0,0,2,3,DIV,4,2,Fort,St,1592105,7.272,7.684,0,9.898315,3.7,5 +15718,-1,0.406634,0,3,0,2,3,DIV,4,2,Fort,St,1592106,7.126,7.533,0,9.759222,3.7,5 +16355,0,0.342239,1,1,1,2,4,,4,2,Sibley,Rd,1607308,10.317,10.659,0,8.213745,4.5,4.5 +18363,0,0.250535,1,1,0,2,5,,4,2,Quarry,Rd,1663601,0,0.251,0,6.012835,5.8,4.5 +18661,0,0.673145,2,2,0,2,3,,4,2,West,Rd,1674210,8.216,8.889,0,16.155478,3.7,5 +18664,0,0.153348,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,11.089,11.242,0,3.680355,6,4.5 +20781,0,0.382405,1,1,0,2,3,,4,2,Jefferson,Ave,4302169,9.56,9.942,0,9.177721,3.7,5 +22668,0,0.515685,1,1,0,2,5,,4,2,Grange,Rd,4705846,0,0.516,0,12.376435,5.8,4.5 +23521,0,0.387133,2,2,1,2,3,,4,2,Allen,Rd,4705756,4.82,5.207,0,9.291186,3.7,5 +30528,0,0.849542,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.389,0.15,4 +30602,0,0.734954,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.638886,0.15,4 +30774,0,0.317162,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.611895,0.15,4 +31865,0,0.521285,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.510847,0.15,4 +31866,0,0.718178,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.236283,0.15,4 +32211,0,0.750876,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.021014,0.15,4 +32214,0,0.718368,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.24084,0.15,4 +32217,0,0.406977,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.767443,0.15,4 +32218,0,0.244454,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.866898,0.15,4 +32220,0,0.436052,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.465256,0.15,4 +32222,0,0.563035,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.512837,0.15,4 +32229,0,0.405448,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.73075,0.15,4 +32244,0,0.767052,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.409239,0.15,4 +32252,0,0.392662,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.423887,0.15,4 +15346,0,0.471306,1,1,0,2,4,,4,2,King,Rd,1592206,4.329,4.8,0,11.311339,4.5,4.5 +16588,0,0.411618,1,1,1,2,4,,4,2,Sibley,Rd,1607308,9.421,9.832,0,9.878834,4.5,4.5 +17825,0,0.505003,2,2,0,2,3,,4,2,West,Rd,1674210,7.293,7.797,0,12.120079,3.7,5 +22814,0,0.442038,2,2,1,2,3,,4,2,Allen,Rd,4705756,3.823,4.265,0,10.608923,3.7,5 +32206,0,0.502095,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.050288,0.15,4 +32232,0,0.50106,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.025436,0.15,4 +15647,0,0.277301,1,1,0,2,4,,4,2,King,Rd,1592206,4.052,4.329,0,6.655215,4.5,4.5 +18223,0,0.238468,2,2,0,2,3,,4,2,West,Rd,1674210,7.054,7.293,0,5.723231,3.7,5 +23436,0,0.495965,2,2,1,2,3,,4,2,Allen,Rd,4705756,2.828,3.324,0,11.903162,3.7,5 +31871,0,0.244939,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.878537,0.15,4 +32234,0,0.496805,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.923308,0.15,4 +23092,0,0.499904,2,2,1,2,3,,4,2,Allen,Rd,4705756,3.324,3.823,0,11.997708,3.7,5 +32233,0,0.497101,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.930432,0.15,4 +16370,0,0.338278,1,1,1,2,4,,4,2,Sibley,Rd,1607308,9.083,9.421,0,8.118683,4.5,4.5 +22531,0,0.555143,2,2,1,2,3,,4,2,Allen,Rd,4705756,4.265,4.82,0,13.323422,3.7,5 +31868,0,0.256631,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.159152,0.15,4 +32231,0,0.508033,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.192786,0.15,4 +15089,0,0.439856,1,1,0,2,5,,4,2,Harrison,Ave,1592804,0.25,0.69,0,10.556549,5.8,4.5 +15645,0,0.512567,1,1,0,2,4,,4,2,King,Rd,1592206,4.8,5.313,0,12.301613,4.5,4.5 +19108,0,0.419073,2,2,0,2,3,,4,2,West,Rd,1674210,7.797,8.216,0,10.057745,3.7,5 +23173,0,0.267502,1,1,0,2,5,,4,2,Grange,Rd,4705839,1.051,1.319,0,6.420057,5.8,4.5 +30540,0,0.484232,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.62157,0.15,4 +32210,0,0.457055,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.969324,0.15,4 +32212,0,0.240696,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.776711,0.15,4 +23172,0,0.227623,1,1,0,2,5,,4,2,Grange,Rd,4705839,0.824,1.051,0,5.462954,5.8,4.5 +22805,0,0.314106,1,1,0,2,5,,4,2,Grange,Rd,4705839,1.5,1.814,0,7.538551,5.8,4.5 +23017,0,0.181424,1,1,0,2,5,,4,2,Grange,Rd,4705839,1.319,1.5,0,4.354173,5.8,4.5 +32213,0,0.258831,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.211951,0.15,4 +32207,0,0.25326,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.078232,0.15,4 +32209,0,0.252735,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.065637,0.15,4 +16587,0,0.172388,1,1,1,2,4,,4,2,Sibley,Rd,1607308,10.145,10.317,0,4.137323,4.5,4.5 +32203,0,0.500678,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.016265,0.15,4 +16356,0,0.312789,1,1,1,2,4,,4,2,Sibley,Rd,1607308,9.832,10.145,0,7.506947,4.5,4.5 +12067,0,0.256048,2,2,1,2,3,,3,2,Eureka,Rd,1578308,9.593,9.849,0,6.145163,5,5 +15050,0,0.336973,1,1,0,2,5,,3,2,Leroy,Ave,1594007,0.157,0.494,0,8.087359,8,4.5 +18129,0,0.108914,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,10.331,10.44,0,2.613933,6,4.5 +18174,0,0.583884,2,2,1,2,3,,3,2,Dix Toledo,Hwy,1688707,1.909,2.493,0,14.013226,5,5 +18202,0,0.223732,1,1,0,2,5,,3,2,McCann,Rd,1664901,0.276,0.5,0,5.369563,8,4.5 +18724,0,0.374801,2,2,1,2,3,,3,2,Dix Toledo,Hwy,1688707,1.426,1.801,0,8.995215,5,5 +22954,0,0.396339,2,2,1,2,3,,3,2,Allen,Rd,4705756,5.929,6.325,0,9.512129,5,5 +32224,0,0.257606,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.18255,0.15,4 +32237,0,0.368496,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.843906,0.15,4 +32238,0,0.342705,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.224921,0.15,4 +17836,0,0.517223,2,2,1,2,4,,3,2,Pennsylvania,Rd,1674307,9.814,10.331,0,12.413343,6,4.5 +23181,0,0.427958,2,2,1,2,3,,4,2,Allen,Rd,4705756,5.207,5.635,0,10.270989,3.7,5 +31862,0,0.060209,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.445022,0.15,4 +18233,0,0.145912,2,2,1,2,4,,3,2,Pennsylvania,Rd,1674307,9.668,9.814,0,3.501898,6,4.5 +18978,0,0.534986,2,2,0,2,3,,4,2,Dix Toledo,Hwy,1688707,0.891,1.426,0,12.839659,3.7,5 +19531,1,0.203104,1,0,0,2,3,RSF,3,2,Pennsylvania/Dix Toledo,Ramp,1878410,0,0.203,0,4.874494,5,5 +19532,1,0.217827,4,0,0,2,3,RSF,3,2,Dix Toledo/Allen,Ramp,1878409,0,0.218,0,5.227854,5,5 +23261,0,0.095061,2,2,1,2,3,,3,2,Allen,Rd,4705756,5.834,5.929,0,2.281456,5,5 +22180,1,0.15081,1,0,0,2,3,RSF,4,2,NE Dix Toledo/N/S Allen,Ramp,4704338,0,0.151,0,3.619452,5,5 +22181,-1,0.053171,0,1,0,2,3,RSF,4,2,N Allen/SW Dix Toledo,Ramp,4704337,0,0.053,0,1.276106,5,5 +22182,-1,0.066875,0,1,0,2,3,RSF,4,2,S Allen/SW Dix Toledo,Ramp,4704335,0.179,0.245,0,1.605001,5,5 +22183,-1,0.178636,0,4,0,2,3,RSF,4,2,S Allen/SW Dix Toledo,Ramp,4704335,0,0.179,0,4.287266,5,5 +22888,0,0.132709,2,2,0,2,3,,4,2,Allen,Rd,4705756,5.635,5.768,0,3.185004,3.7,5 +22595,0,0.02849,2,2,1,2,3,,4,2,Allen,Rd,4705756,5.768,5.796,0,0.683769,3.7,5 +23603,0,0.037372,2,2,1,2,3,,3,2,Allen,Rd,4705756,5.796,5.834,0,0.89694,5,5 +12444,0,0.311201,2,2,1,2,3,,3,2,Eureka,Rd,1578308,9.282,9.593,0,7.468816,5,5 +22803,0,0.201161,1,1,0,2,5,,3,2,Reeck,Rd,4705866,0.298,0.499,0,4.82786,8,4.5 +23668,0,0.333335,2,2,1,2,3,,3,2,Allen,Rd,4705756,6.494,6.827,0,8.000032,5,5 +32240,0,0.356703,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.560871,0.15,4 +32241,0,0.221126,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.30703,0.15,4 +33311,0,0.247732,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.945569,0.15,4 +22677,0,0.169152,2,2,1,2,3,,3,2,Allen,Rd,4705756,6.325,6.494,0,4.059659,5,5 +32235,0,0.294962,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.079092,0.15,4 +12073,0,0.187386,2,2,1,2,3,,3,2,Eureka,Rd,1578308,9.095,9.282,0,4.497274,5,5 +15276,0,0.15699,1,1,0,2,5,,3,2,Leroy,Ave,1594007,0,0.157,0,3.767754,8,4.5 +23016,0,0.235045,1,1,0,2,5,,3,2,Reeck,Rd,4705866,0.063,0.298,0,5.64108,8,4.5 +18402,0,0.108018,2,2,1,2,3,,3,2,Dix Toledo,Hwy,1688707,1.801,1.909,0,2.592428,5,5 +23015,0,0.062949,1,1,0,2,5,,3,2,Reeck,Rd,4705866,0,0.063,0,1.510771,8,4.5 +32236,0,0.128815,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.091551,0.15,4 +19112,0,0.424764,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,10.664,11.089,0,10.194345,6,4.5 +22669,0,0.493631,1,1,0,2,5,,4,2,Grange,Rd,4705846,0.516,1.009,0,11.847149,5.8,4.5 +30414,0,0.431622,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.358921,0.15,4 +32219,0,0.494311,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.863468,0.15,4 +32221,0,0.109943,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.638632,0.15,4 +17702,0,0.224169,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,10.44,10.664,0,5.380047,6,4.5 +18645,0,0.275863,1,1,0,2,5,,3,2,McCann,Rd,1664901,0,0.276,0,6.620711,8,4.5 +32226,0,0.242131,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.81115,0.15,4 +12004,0,0.415783,2,2,1,2,3,,3,2,Eureka,Rd,1578308,9.985,10.401,0,9.97879,5,5 +15268,0,0.410549,1,1,0,2,5,,3,2,Leroy,Ave,1594007,0.494,0.904,0,9.853165,8,4.5 +17896,0,0.447904,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,2.493,2.94,0,10.749701,5,5 +32227,0,0.249982,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.999562,0.15,4 +12372,0,0.136493,2,2,1,2,3,,3,2,Eureka,Rd,1578308,9.849,9.985,0,3.275831,5,5 +32230,0,0.250725,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.01741,0.15,4 +15048,0,0.018225,1,1,0,2,5,,3,2,Leroy,Ave,1594007,0.904,0.923,0,0.437411,8,4.5 +12361,0,0.125966,2,2,1,2,3,,3,2,Eureka,Rd,1578308,10.401,10.527,0,3.023177,5,5 +18642,0,0.332577,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,0.509,0.842,0,7.981846,8,4.5 +32057,0,0.390608,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.374601,0.15,4 +11995,0,0.060571,2,2,1,2,3,,3,2,Eureka,Rd,1578308,10.527,10.588,0,1.453693,5,5 +30773,0,0.021401,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.513615,0.15,4 +14781,1,0.120402,2,0,0,2,3,DIV,4,2,Fort,St,1592105,6.179,6.299,0,2.889647,3.7,5 +15314,0,0.386002,1,1,0,2,5,,4,2,Harrison,Ave,1592804,1.488,1.874,0,9.26404,5.8,4.5 +15343,0,0.47256,2,2,0,2,4,,4,2,King,Rd,1592206,6.033,6.506,0,11.341447,4.5,4.5 +15722,-1,0.498899,0,2,0,2,3,DIV,4,2,Fort,St,1592106,6.021,6.52,0,11.973566,3.7,5 +16567,0,0.427589,1,1,0,2,4,,4,2,Sibley,Rd,1607308,11.128,11.555,0,10.262132,4.5,4.5 +17932,0,0.358535,2,2,0,2,3,,4,2,West,Rd,1674210,9.037,9.395,0,8.604843,3.7,5 +20288,1,0.426311,2,0,0,2,3,DV2,4,2,Jefferson,Ave,4302169,8.084,8.51,0,10.231463,3.7,5 +23819,-1,0.424631,0,2,0,2,3,DV2,4,2,Jefferson,Ave,4707571,0,0.425,0,10.191153,3.7,5 +32204,0,0.588615,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.126771,0.15,4 +32205,0,0.556414,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.353948,0.15,4 +15692,1,0.35058,2,0,0,2,3,DIV,4,2,Fort,St,1592105,5.319,5.669,0,8.413929,3.7,5 +15723,-1,0.39878,0,2,0,2,3,DIV,4,2,Fort,St,1592106,5.117,5.516,0,9.570728,3.7,5 +15725,-1,0.12716,0,2,0,2,3,DIV,4,2,Fort,St,1592106,4.99,5.117,0,3.051847,3.7,5 +18221,0,0.047219,2,2,0,2,3,,4,2,West,Rd,1674210,8.889,8.936,0,1.13326,3.7,5 +15122,1,0.085812,2,0,0,2,3,DIV,4,2,Fort,St,1592105,5.151,5.237,0,2.059492,3.7,5 +15322,0,0.147604,1,1,0,2,5,,4,2,Veterans,Pkwy,1592803,0,0.148,0,3.542491,5.8,4.5 +17823,0,0.100195,2,2,0,2,3,,4,2,West,Rd,1674210,8.936,9.037,0,2.404681,3.7,5 +15376,1,0.082166,2,0,0,2,3,DIV,4,2,Fort,St,1592105,5.237,5.319,0,1.971978,3.7,5 +14888,1,0.374399,2,0,0,2,3,DIV,4,2,Fort,St,1592105,5.805,6.179,0,8.985573,3.7,5 +15433,-1,0.418293,0,2,0,2,3,DIV,4,2,Fort,St,1592106,5.516,5.934,0,10.039036,3.7,5 +14913,1,0.135543,2,0,0,2,3,DIV,4,2,Fort,St,1592105,5.669,5.805,0,3.253027,3.7,5 +15080,0,0.040405,1,1,0,2,5,,4,2,Harrison,Ave,1592804,1.448,1.488,0,0.969708,5.8,4.5 +14884,-1,0.08673,0,2,0,2,3,DIV,4,2,Fort,St,1592106,5.934,6.021,0,2.08151,3.7,5 +15643,0,0.039557,2,2,0,2,4,,4,2,King,Rd,1592206,5.994,6.033,0,0.949368,4.5,4.5 +15640,1,0.799788,2,0,0,2,3,DIV,4,2,Fort,St,1592105,6.299,7.099,0,19.194905,3.7,5 +15719,-1,0.503953,0,2,0,2,3,DIV,4,2,Fort,St,1592106,6.52,7.023,0,12.094882,3.7,5 +16354,0,0.257799,2,2,0,2,4,,4,2,Sibley,Rd,1607308,10.771,11.029,0,6.187167,4.5,4.5 +16586,0,0.111999,1,1,1,2,4,,4,2,Sibley,Rd,1607308,10.659,10.771,0,2.687977,4.5,4.5 +14956,1,0.082605,2,0,0,2,3,DIV,4,2,Fort,St,1592105,7.099,7.182,0,1.982519,3.7,5 +15307,1,0.114615,1,0,0,1,3,RSF,4,2,Fort/Sibley,Ramp,1592806,0,0.115,0,,3.7,5 +15429,-1,0.102725,0,3,0,2,3,DIV,4,2,Fort,St,1592106,7.023,7.126,0,2.4654,3.7,5 +16344,0,0.073034,1,1,0,2,4,,4,2,Sibley,Rd,1607308,11.055,11.128,0,1.752818,4.5,4.5 +16572,0,0.025685,2,2,0,2,4,,4,2,Sibley,Rd,1607308,11.029,11.055,0,0.616441,4.5,4.5 +15491,1,0.089941,3,0,0,2,3,DIV,4,2,Fort,St,1592105,7.182,7.272,0,2.158586,3.7,5 +15075,0,0.205061,1,1,0,2,5,,4,2,Harrison,Ave,1592804,1.874,2.079,0,4.921464,5.8,4.5 +20477,0,0.181361,2,2,0,2,3,,4,2,Jefferson,Ave,4302169,7.903,8.084,0,4.352661,3.7,5 +32245,0,0.153574,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.685774,0.15,4 +19891,0,0.275689,2,2,0,2,3,,4,2,Jefferson,Ave,4302169,7.446,7.722,0,6.616536,3.7,5 +32246,0,0.308854,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.412503,0.15,4 +32247,0,0.181003,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.344064,0.15,4 +17512,0,0.136591,2,2,0,2,3,,4,2,West,Rd,1674210,9.395,9.532,0,3.278173,3.7,5 +20713,0,0.181234,2,2,0,2,3,,4,2,Jefferson,Ave,4302169,7.722,7.903,0,4.349616,3.7,5 +16561,0,0.38204,1,1,0,2,4,,4,2,Sibley,Rd,1607308,11.649,12.031,0,9.168949,4.5,4.5 +20091,1,1.04949,2,0,0,2,3,DV2,4,2,Jefferson,Ave,4302169,8.51,9.56,0,25.187759,3.7,5 +23818,-1,1.052521,0,2,0,2,3,DV2,4,2,Jefferson,Ave,4707571,0.425,1.477,0,25.260492,3.7,5 +30437,0,0.685691,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.456581,0.15,4 +15642,0,0.189903,2,2,0,2,4,,4,2,King,Rd,1592206,6.506,6.696,0,4.557671,4.5,4.5 +32243,0,0.323268,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.758433,0.15,4 +15342,0,0.009501,2,2,0,2,4,,4,2,King,Rd,1592206,6.696,6.705,0,0.228021,4.5,4.5 +16340,0,0.093469,1,1,0,2,4,,4,2,Sibley,Rd,1607308,11.555,11.649,0,2.243261,4.5,4.5 +11986,0,0.10433,2,2,1,2,3,,3,2,Eureka,Rd,1578308,11.465,11.569,0,2.503912,5,5 +14879,-1,0.126152,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.339,8.465,0,3.027654,5,5 +15034,0,0.103177,1,1,0,2,5,,3,2,Leroy,Ave,1594007,1.866,1.969,0,2.47624,8,4.5 +15081,1,0.254733,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.589,8.843,0,6.113585,5,5 +15302,0,0.256306,1,1,0,2,4,,3,2,Quarry,Rd,1592905,0.125,0.382,0,6.151349,6,4.5 +15714,-1,0.238908,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.465,8.703,0,5.733799,5,5 +17701,0,0.170777,1,1,0,2,4,,3,2,Pennsylvania,Ave,1674307,11.988,12.159,0,4.098652,6,4.5 +18611,0,0.371634,2,2,0,2,4,,3,2,Trenton,Rd,1665008,0,0.372,0,8.919224,6,4.5 +30416,0,0.37269,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.944566,0.15,4 +30424,0,0.527875,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.669006,0.15,4 +32200,0,0.534912,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.837886,0.15,4 +32202,0,0.507785,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.186831,0.15,4 +32248,0,0.113951,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.73482,0.15,4 +32249,0,0.15571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.737036,0.15,4 +32250,0,0.197202,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.732839,0.15,4 +32253,0,0.15246,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.659028,0.15,4 +32254,0,0.13733,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.295919,0.15,4 +32256,0,0.202466,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.859183,0.15,4 +15425,-1,0.312286,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.026,8.339,0,7.494862,5,5 +15426,-1,0.304407,0,3,0,2,3,DIV,4,2,Fort,St,1592106,7.533,7.837,0,7.305757,3.7,5 +15558,1,0.36322,3,0,0,2,3,DIV,4,2,Fort,St,1592105,7.821,8.184,0,8.71728,3.7,5 +15717,-1,0.189479,0,3,0,2,3,DIV,4,2,Fort,St,1592106,7.837,8.026,0,4.547485,3.7,5 +18545,0,0.024538,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,11.635,11.66,0,0.588913,6,4.5 +31863,0,0.395658,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.495787,0.15,4 +32215,0,0.355398,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.529551,0.15,4 +18224,0,0.393685,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,11.242,11.635,0,9.448451,6,4.5 +32216,0,0.250392,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.009396,0.15,4 +14858,1,0.137181,3,0,0,2,3,DIV,4,2,Fort,St,1592105,7.684,7.821,0,3.292338,3.7,5 +15511,1,0.121112,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.467,8.589,0,2.906695,5,5 +18128,0,0.328472,1,1,0,2,4,,3,2,Pennsylvania,Ave,1674307,11.66,11.988,0,7.883338,6,4.5 +15524,1,0.283517,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.184,8.467,0,6.804417,5,5 +32255,0,0.111231,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.669554,0.15,4 +32257,0,0.151447,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.634717,0.15,4 +11989,0,0.293818,2,2,1,2,3,,3,2,Eureka,Rd,1578308,10.919,11.213,0,7.051628,5,5 +15035,0,0.228504,1,1,0,2,5,,3,2,Leroy,Ave,1594007,1.302,1.53,0,5.484107,8,4.5 +18159,0,0.311431,1,1,1,2,4,,3,2,Trenton,Rd,1665008,0.726,1.037,0,7.47434,6,4.5 +30415,0,0.271624,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.518981,0.15,4 +30432,0,0.248864,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.972731,0.15,4 +32258,0,0.26666,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.399832,0.15,4 +33594,0,0.22983,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.515916,0.15,4 +18595,0,0.189084,1,1,1,2,4,,3,2,Trenton,Rd,1665008,0.537,0.726,0,4.53801,6,4.5 +18177,0,0.165609,1,1,0,2,4,,3,2,Trenton,Rd,1665008,0.372,0.537,0,3.974606,6,4.5 +18586,0,0.277081,1,1,1,2,4,,3,2,Trenton,Rd,1665008,1.037,1.315,0,6.649954,6,4.5 +15252,0,0.336355,1,1,0,2,5,,3,2,Leroy,Ave,1594007,1.53,1.866,0,8.072524,8,4.5 +32148,0,0.249379,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.985092,0.15,4 +32260,0,0.248106,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.954535,0.15,4 +32251,0,0.165665,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.975966,0.15,4 +12355,0,0.252121,2,2,1,2,3,,3,2,Eureka,Rd,1578308,11.213,11.465,0,6.050907,5,5 +18357,0,0.303504,1,1,0,2,5,,4,2,Quarry,Rd,1663601,0.5,0.803,0,7.284091,5.8,4.5 +19111,0,0.366273,1,1,0,2,4,,3,2,Pennsylvania,Ave,1674307,12.159,12.525,0,8.79056,6,4.5 +18816,0,0.249627,1,1,0,2,5,,4,2,Quarry,Rd,1663601,0.251,0.5,0,5.991041,5.8,4.5 +30417,0,0.350356,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.408554,0.15,4 +32201,0,0.020684,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.496418,0.15,4 +18810,0,0.193982,1,1,0,2,5,,4,2,Quarry,Rd,1663601,0.803,0.997,0,4.655556,5.8,4.5 +15069,0,0.125361,1,1,0,2,4,,3,2,Quarry,Rd,1592905,0,0.125,0,3.008654,6,4.5 +20533,0,0.093831,2,2,0,2,3,,4,2,Jefferson,Ave,4302169,9.942,10.036,0,2.251932,3.7,5 +11970,0,0.429842,2,2,1,2,3,,3,2,Eureka,Ave,1578308,11.593,12.023,0,10.316209,5,5 +15709,-1,0.248815,0,3,0,2,3,DIV,3,2,Fort,St,1592106,9.014,9.262,0,5.971569,5,5 +15780,1,0.322417,2,0,0,2,3,DIV,3,2,Fort,St,1592105,9.1,9.422,0,7.738018,5,5 +23014,0,0.399997,1,1,1,2,5,,3,2,Oak,St,4705862,0.25,0.649,0,9.599929,8,4.5 +30421,0,0.472893,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.349433,0.15,4 +30422,0,0.399501,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.588026,0.15,4 +30423,0,0.376207,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.028966,0.15,4 +15421,-1,0.06269,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.763,8.826,0,1.504553,5,5 +15781,1,0.141991,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.923,9.065,0,3.407782,5,5 +15063,1,0.073028,1,0,0,2,4,,3,2,Quarry,Rd,1592906,0,0.073,0,1.752663,6,4.5 +15066,-1,0.042858,0,1,0,2,4,,3,2,Quarry,Rd,1592905,0.382,0.424,0,1.028592,6,4.5 +14837,1,0.043564,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.88,8.923,0,1.045543,5,5 +15713,-1,0.059623,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.703,8.763,0,1.430954,5,5 +14779,1,0.036264,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.843,8.88,0,0.870326,5,5 +15299,-1,0.026902,0,1,0,2,4,,3,2,Quarry,Rd,1592905,0.424,0.451,0,0.645637,6,4.5 +14876,-1,0.187838,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.826,9.014,0,4.508119,5,5 +15510,1,0.035141,2,0,0,2,3,DIV,3,2,Fort,St,1592105,9.065,9.1,0,0.843377,5,5 +15508,1,0.293726,4,0,0,2,3,DIV,3,2,Fort,St,1592105,9.422,9.716,0,7.049423,5,5 +23013,0,0.2496,1,1,1,2,5,,3,2,Oak,St,4705862,0,0.25,0,5.990399,8,4.5 +12344,0,0.023524,2,2,1,2,3,,3,2,Eureka,Rd,1578308,11.569,11.593,0,0.564586,5,5 +12303,0,0.21766,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.023,12.24,0,5.22385,5,5 +18584,0,0.291834,1,1,0,2,5,,3,2,12th,St,1665208,0.197,0.489,0,7.004017,8,4.5 +18488,0,1.3371,1,1,0,2,5,,4,2,River,Rd,1690910,0.451,1.788,0,32.090409,5.8,4.5 +17533,0,0.614109,1,1,0,2,5,,4,2,Meridian,Rd,1690909,0.713,1.327,0,14.738618,5.8,4.5 +18489,0,0.226215,1,1,0,2,5,,4,2,River,Rd,1690910,1.788,2.014,0,5.429164,5.8,4.5 +18578,0,0.93759,1,1,0,2,5,,4,2,Grosse Ile,Pkwy,1692407,1.35,2.287,0,22.502172,5.8,4.5 +18707,0,1.017686,1,1,0,2,5,,4,2,Macomb,St,1691501,0,1.017,0,24.424461,5.8,4.5 +18708,0,0.510162,1,1,0,2,5,,4,2,River,Rd,1691503,0,0.51,0,12.243898,5.8,4.5 +30439,0,0.852193,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.452625,0.15,4 +32414,0,0.502562,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.061493,0.15,4 +17849,0,0.605475,1,1,0,2,5,,4,2,Meridian,Rd,1690909,0.107,0.713,0,14.531406,5.8,4.5 +18052,0,0.539446,1,1,0,2,5,,4,2,Groh,Rd,1690905,0.705,1.245,0,12.946707,5.8,4.5 +32155,0,0.813207,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.516972,0.15,4 +17848,0,0.107451,1,1,0,2,5,,4,2,Meridian,Rd,1690909,0,0.107,0,2.578818,5.8,4.5 +30438,0,0.129153,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.099677,0.15,4 +17977,0,0.239911,1,1,0,2,4,,4,2,Meridian,Rd,1690909,1.597,1.837,0,5.757853,4.5,4.5 +30440,0,0.221888,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.325317,0.15,4 +18271,0,0.270658,1,1,0,2,4,,4,2,Meridian,Rd,1690909,1.327,1.597,0,6.495787,4.5,4.5 +18163,0,0.641315,1,1,0,2,5,,4,2,River,Rd,1690910,2.014,2.655,0,15.391564,5.8,4.5 +17978,0,0.070939,1,1,0,2,5,,4,2,Manchester,Blvd,1691009,0.819,0.89,0,1.702545,5.8,4.5 +18709,0,0.280402,1,1,0,2,5,,4,2,River,Rd,1691503,0.51,0.79,0,6.729655,5.8,4.5 +18392,0,0.094878,1,1,0,2,5,,4,2,River,Rd,1691503,0.79,0.885,0,2.277069,5.8,4.5 +18949,0,0.73802,1,1,0,2,5,,4,2,Parke,Ln,1691807,1.196,1.934,0,17.712481,5.8,4.5 +23254,0,0.250841,1,1,0,2,5,,4,2,Bridge,Rd,4705855,0.974,1.225,0,6.020182,5.8,4.5 +32261,0,0.641468,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.395237,0.15,4 +17449,0,1.181863,1,1,0,2,4,,4,2,Meridian,Rd,1690909,2.553,3.735,0,28.364717,4.5,4.5 +17547,0,1.308796,1,1,0,2,5,,4,2,River,Rd,1691503,1.74,3.048,0,31.411114,5.8,4.5 +32184,0,0.723569,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.365648,0.15,4 +32185,0,0.485124,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.642976,0.15,4 +32183,0,0.222105,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.330528,0.15,4 +18706,0,0.586644,1,1,0,2,4,,4,2,Meridian,Rd,1690909,3.891,4.477,0,14.079464,4.5,4.5 +31650,0,0.622299,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.935185,0.15,4 +32186,0,0.360004,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.640093,0.15,4 +18971,0,0.391934,1,1,0,2,5,,4,2,River,Rd,1691206,3.533,3.925,0,9.406414,5.8,4.5 +18836,0,0.173512,1,1,0,2,5,,4,2,Horsemill,Rd,1692003,0,0.174,0,4.164293,5.8,4.5 +19066,0,0.155692,1,1,0,2,4,,4,2,Meridian,Rd,1690909,3.735,3.891,0,3.736607,4.5,4.5 +23425,0,0.244258,1,1,0,2,5,,4,2,Bridge,Rd,4705855,0.73,0.974,0,5.862198,5.8,4.5 +18837,0,0.156254,1,1,0,2,5,,4,2,Horsemill,Rd,1692003,0.994,1.15,0,3.750107,5.8,4.5 +20833,1,0.811686,2,0,0,2,3,DV2,3,2,Biddle,Ave,4302169,10.724,11.536,0,19.480465,5,5 +23737,-1,0.575877,0,2,0,2,3,DV2,3,2,Biddle,Ave,4707956,0.682,1.257,0,13.821045,5,5 +31413,0,0.231807,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.563369,0.15,4 +32242,0,0.163097,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.914327,0.15,4 +20138,1,0.331415,2,0,0,2,3,DV2,4,2,Jefferson,Ave,4302169,10.393,10.724,0,7.953966,3.7,5 +19016,0,0.010985,1,1,0,2,4,,3,2,Pennsylvania,Ave,1674307,13.154,13.165,0,0.263641,6,4.5 +11906,0,0.162833,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.732,12.895,0,3.907995,5,5 +17445,0,0.290526,2,2,0,2,5,,3,2,3rd,St,1661508,0.012,0.302,0,6.972616,8,4.5 +20186,0,0.312984,2,2,1,2,3,,3,2,Biddle,Ave,4302169,11.536,11.849,0,7.511618,5,5 +22523,0,0.162829,1,1,1,2,5,,3,2,Oak,St,4705862,1.139,1.302,0,3.907903,8,4.5 +32179,0,0.329764,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.914328,0.15,4 +32180,0,0.497303,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.935276,0.15,4 +22666,0,0.362241,1,1,1,2,5,,3,2,Oak,St,4705862,0.777,1.139,0,8.693786,8,4.5 +12292,0,0.081571,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.65,12.732,0,1.957715,5,5 +40197,1,0.015735,1,0,0,2,3,,3,3,N I 75/Rochester,RAMP,682608,0.303,0.319,0,0.37763,5,5 +40194,-1,0.239698,0,2,0,2,3,DV2,3,2,Biddle,Ave,5491102,0,0.24,0,5.752752,5,5 +18396,0,0.011911,2,2,0,2,5,,3,2,Plum,St,1661508,0,0.012,0,0.285866,8,4.5 +11898,0,0.12012,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.977,13.097,0,2.882875,5,5 +18855,0,0.290043,2,2,0,2,5,,3,2,3rd,St,1661508,0.302,0.592,0,6.961023,8,4.5 +20881,0,0.155067,2,2,1,2,3,,3,2,Biddle,Ave,4302169,11.849,12.004,0,3.721612,5,5 +23426,0,0.080642,1,1,1,2,5,,3,2,Oak,St,4705862,1.384,1.465,0,1.935418,8,4.5 +24138,0,0.28997,1,1,0,2,5,,3,2,4th,St,5491107,0.471,0.761,0,6.95927,8,4.5 +12289,0,0.082343,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.895,12.977,0,1.97622,5,5 +23593,0,0.082185,1,1,1,2,5,,3,2,Oak,St,4705862,1.302,1.384,0,1.972439,8,4.5 +20646,0,0.155934,2,2,1,2,3,,3,2,Biddle,Ave,4302169,12.004,12.16,0,3.742412,5,5 +23171,0,0.144198,1,1,1,2,5,,3,2,Oak,St,4705862,1.465,1.609,0,3.460761,8,4.5 +1321,-1,0.624595,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,4.201,4.825,0,14.99029,5,5 +3655,0,0.047302,1,1,0,2,5,,3,3,Mapleridge,Dr,688107,0,0.047,0,1.135241,8,4.5 +3738,0,0.603265,2,2,0,2,4,,3,3,9 Mile,Rd,684404,4.101,4.704,0,14.478355,6,4.5 +4002,1,0.300455,3,0,0,1,2,,3,3,S M 10,,710010,7.934,8.234,0,,0.58,7 +4828,1,0.227422,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,3.046,3.274,0,5.458121,8,4.5 +5066,-1,0.540667,0,3,0,1,2,,3,3,N M 10,,710102,7.895,8.435,0,,0.58,7 +10879,1,0.732814,3,0,0,1,1,,3,2,E I 94,,1576405,16.306,17.039,0,,0.58,7 +11204,1,0.320196,3,0,0,1,1,,3,1,E I 94,,1576405,24.33,24.65,0,,0.58,7 +11601,0,0.467588,1,1,0,2,5,,3,1,Scotten,St,1577306,1.357,1.825,0,11.222115,8,4.5 +11615,0,0.241695,1,1,0,2,5,,3,1,Junction,St,1577210,0.311,0.553,0,5.800679,8,4.5 +11619,1,0.222288,1,0,0,1,1,ROF,3,1,E I 94/Livernois,RAMP,1577206,0,0.222,0,,2.24,5 +11662,0,0.102008,1,1,0,2,5,,3,1,Martin,St,1577205,0.96,1.062,0,2.448181,8,4.5 +11668,0,0.238791,1,1,0,2,5,,3,1,Cecil,St,1577203,0.243,0.482,0,5.730979,8,4.5 +11674,0,0.352197,1,1,0,2,5,,3,1,Central,St,1577202,2.567,2.919,0,8.452726,8,4.5 +11693,0,0.300673,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.305,1.605,0,7.216145,6,4.5 +11781,0,0.133771,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,0.53,0.664,0,3.210511,6,4.5 +11806,1,0.388259,1,0,0,1,1,RFF,3,2,E I 94/M 39,RAMP,1576901,0.188,0.576,0,,0.58,7 +11839,-1,0.249697,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,10.043,10.293,0,5.992735,5,5 +12041,0,0.434112,1,1,0,2,5,,3,1,Paul,Dr,1582602,0.126,0.56,0,10.418678,8,4.5 +12157,0,0.395553,2,2,1,2,4,,3,2,Goddard,Rd,1578601,3.594,3.989,0,9.493278,6,4.5 +12204,0,0.246351,2,2,0,2,4,,3,1,McGraw,St,1581903,0.915,1.161,0,5.912418,6,4.5 +12217,1,0.173792,1,0,0,2,5,DV2,3,1,Bretton,Dr,1582509,0.261,0.435,0,4.171001,8,4.5 +12397,0,0.146212,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.723,2.869,0,3.509091,5,5 +12482,0,0.496819,2,2,0,2,4,,3,1,Chicago,St,1581803,0.659,1.155,0,11.92366,6,4.5 +12664,-1,0.56791,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,0.95,1.518,0,,0.58,7 +12815,0,0.765343,2,2,0,2,3,,3,1,Grand River,Ave,1577408,1.916,2.681,0,18.368239,5,5 +12852,1,0.633651,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,0.907,1.54,0,,0.58,7 +12899,0,0.313681,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.217,4.531,0,7.528338,6,4.5 +12903,-1,1.005648,0,2,0,2,7,DV2,3,2,Oakman,Blvd,1580610,0.555,1.561,0,24.135541,7,4.5 +13210,0,0.125129,1,1,0,2,5,,3,2,Chase,Rd,1580503,1.061,1.186,0,3.003105,8,4.5 +13302,1,1.005838,2,0,0,2,7,DV2,3,2,Oakman,Blvd,1580701,0.368,1.373,0,24.14011,7,4.5 +13351,1,0.144895,2,0,0,2,4,,3,1,Grand,Blvd,1577308,0.156,0.301,0,3.477485,6,4.5 +13358,0,0.431138,2,2,1,2,3,,3,2,Northline,Rd,1578505,3.565,3.996,0,10.34731,5,5 +13573,0,0.111719,1,1,0,2,4,,3,1,Outer,Dr,1584506,0,0.112,0,2.681265,6,4.5 +13668,-1,0.39857,0,4,0,1,1,,3,2,W I 94,,1588802,16.406,16.805,0,,0.58,7 +14286,-1,0.237544,0,3,0,1,1,,3,1,W I 94,,1588802,24.157,24.394,0,,0.58,7 +14738,0,0.829769,1,1,0,2,4,,3,2,Miller,Rd,1589801,2.733,3.563,0,19.914452,6,4.5 +14814,0,0.497733,1,1,0,2,5,,3,1,Tireman,St,1594805,0.599,1.096,0,11.945596,8,4.5 +14890,0,0.498883,2,2,0,2,3,,3,1,Warren,Ave,1591804,1.38,1.879,0,11.973195,5,5 +14967,-1,0.35124,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,5.102,5.454,0,8.429753,8,4.5 +14982,1,0.322837,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,16.16,16.483,0,7.748089,5,5 +15038,0,0.234565,2,2,1,2,4,,3,2,Outer,Dr,1596803,0.568,0.803,0,5.629558,6,4.5 +15043,0,0.252451,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,1.991,2.243,0,6.058823,5,5 +15131,1,0.30686,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0.049,0.356,0,7.364634,6,4.5 +15278,-1,0.325196,0,3,0,1,2,,3,1,S M 39,,1592407,7.901,8.226,0,,0.58,7 +15349,1,0.316688,1,0,0,1,1,RON,4,2,Allen/S I 75,RAMP,1595204,0,0.317,0,,1.09,4 +15456,1,0.209438,3,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,0.743,0.952,0,5.026505,5,5 +15468,1,0.322544,3,0,0,1,2,,3,1,N M 39,,1592408,7.864,8.186,0,,0.58,7 +15584,-1,0.906634,0,3,0,1,1,,3,2,S I 75,,1595106,9.85,10.756,0,,0.58,7 +15673,0,0.251609,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,1.5,1.752,0,6.038623,6,4.5 +16274,0,0.312459,1,1,0,2,5,,3,1,Buchanan,St,1609609,0.553,0.865,0,7.499014,8,4.5 +16574,0,0.515216,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,16.295,16.811,0,12.365177,5,5 +16687,1,1.881471,4,0,0,1,1,,3,1,E I 96,,1606201,9.954,11.835,0,,0.58,7 +16832,0,0.435408,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,12.949,13.385,0,10.449799,5,5 +16852,-1,1.902092,0,4,0,1,1,,3,1,W I 96,,1606503,9.666,11.568,0,,0.58,7 +17051,1,0.441507,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,16.592,17.034,0,10.596157,5,5 +17135,0,0.797391,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,9.539,10.337,0,19.137391,6,4.5 +17428,1,0.327898,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,1.872,2.2,0,7.869556,5,5 +17554,0,0.873087,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,13.927,14.8,0,20.954089,5,5 +17603,0,0.253372,2,2,0,2,3,,3,2,Inkster,Rd,1674404,15.598,15.851,0,6.080929,5,5 +17615,0,0.238609,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,14.916,15.155,0,5.726608,5,5 +17621,0,0.494877,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0.927,1.421,0,11.877047,5,5 +17993,1,0.124858,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.691,4.816,0,2.996601,5,5 +18244,0,0.181734,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,8.007,8.189,0,4.361623,8,4.5 +18452,0,0.498798,1,1,1,2,4,,3,1,Joy,Rd,1677810,6.974,7.473,0,11.971153,6,4.5 +18515,0,0.384865,2,2,0,2,4,,3,2,Pelham,Rd,1652704,4.085,4.47,0,9.236751,6,4.5 +18524,0,0.500221,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,9.935,10.435,0,12.005297,5,5 +18641,1,0.348321,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,4.833,5.181,0,8.359713,8,4.5 +18758,0,0.308256,1,1,0,2,4,,3,2,Wick,Rd,1664408,4.688,4.996,0,7.398138,6,4.5 +18846,0,0.256124,2,2,0,2,3,,3,1,McNichols,Rd,1680701,16.335,16.591,0,6.146979,5,5 +18879,0,0.446002,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,4.666,5.112,0,10.704041,5,5 +18903,1,0.382003,1,0,0,2,5,DV2,3,2,Pinecrest,Dr,1656703,0.753,1.135,0,9.168061,8,4.5 +18985,0,0.319538,1,1,0,2,5,,3,2,Champaign,Rd,1653005,1.417,1.736,0,7.668911,8,4.5 +19164,0,0.181526,2,2,1,2,3,,3,2,Van Born,Rd,1670203,9.982,10.163,0,4.356628,5,5 +19267,-1,0.235143,0,3,0,2,3,DIV,3,2,Evergreen,Rd,1804103,0.733,0.968,0,5.643443,5,5 +19549,1,0.454435,1,0,0,1,1,ROF,3,2,W I 94/Pelham,RAMP,1869510,0,0.454,0,,2.24,5 +19551,1,0.297408,1,0,0,1,1,RON,3,2,Pelham/E I 94,RAMP,1869508,0,0.297,0,,1.09,4 +19712,1,0.5778,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,4.182,4.76,0,13.867211,5,5 +20004,-1,0.281819,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,1.82,2.101,0,6.763652,5,5 +21414,0,0.270233,2,2,1,2,3,,3,2,Merriman,Rd,4700000,8.244,8.515,0,6.485581,5,5 +21733,0,0.485804,2,2,1,2,3,,3,1,Wyoming,Ave,4700001,0,0.486,0,11.659296,5,5 +21844,1,0.249809,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,16.927,17.177,0,5.995406,5,5 +22545,-1,0.145394,0,2,0,2,4,,3,1,Grand,Blvd,4704945,0,0.145,0,3.489466,6,4.5 +22691,-1,0.160109,0,1,0,2,5,DV2,3,1,Bretton,Dr,4704882,0.235,0.395,0,3.842607,8,4.5 +22716,-1,0.39995,0,1,0,2,5,DV2,3,2,Pinecrest,Dr,4704864,0,0.4,0,9.598809,8,4.5 +23006,0,1.21705,1,1,0,2,7,,4,2,Superior,Rd,4705980,0,1.217,0,29.209202,6.55,4.5 +23060,-1,0.46617,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0,0.466,0,11.188077,5,5 +23273,0,0.495786,1,1,0,2,4,,3,1,Schoolcraft,St,4705258,10.948,11.444,0,11.898875,6,4.5 +23400,-1,0.34028,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,0,0.34,0,8.166715,6,4.5 +23634,0,0.162757,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,4.121,4.283,0,3.906159,5,5 +23692,-1,0.347782,0,3,0,2,3,DV2,3,2,Greenfield,,4704562,1.02,1.368,0,8.346775,5,5 +24004,1,0.235428,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,3.376,3.612,0,5.65027,5,5 +24109,0,0.406731,1,1,0,2,5,,3,1,Paul,Dr,4710428,0,0.407,0,9.761539,8,4.5 +27396,0,0.510274,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.246582,0.15,4 +30277,0,0.258521,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.204499,0.15,4 +30471,0,0.061889,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.485339,0.15,4 +30481,0,0.107775,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.586594,0.15,4 +30542,0,0.497861,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.948665,0.15,4 +30546,0,0.510591,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.254192,0.15,4 +30551,0,0.229887,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.517284,0.15,4 +30554,0,0.495391,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.889393,0.15,4 +30557,0,0.207654,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.983692,0.15,4 +30558,0,0.452227,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.85344,0.15,4 +30561,0,0.245996,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.903915,0.15,4 +30568,0,0.262644,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.303455,0.15,4 +30608,0,0.54607,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.105687,0.15,4 +32054,0,0.398526,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.56462,0.15,4 +32272,0,0.330253,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.926081,0.15,4 +32276,0,0.362951,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.710823,0.15,4 +32282,0,0.262195,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.292679,0.15,4 +32288,0,0.4514,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.833588,0.15,4 +32293,0,0.424707,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.192958,0.15,4 +32295,0,0.297245,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.133888,0.15,4 +32307,0,0.131832,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.163975,0.15,4 +32310,0,0.425913,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.221908,0.15,4 +32323,0,0.250747,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.017923,0.15,4 +32328,0,0.517385,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.417234,0.15,4 +32332,0,0.499871,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.9969,0.15,4 +32343,0,0.249644,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.991462,0.15,4 +32347,0,0.518828,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.451866,0.15,4 +32373,0,0.714164,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.139928,0.15,4 +32579,0,0.35954,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.628969,0.15,4 +32664,0,0.50238,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.057122,0.15,4 +32700,0,0.632496,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.179913,0.15,4 +32733,0,0.484567,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.629613,0.15,4 +33011,0,0.496157,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.907767,0.15,4 +33049,0,0.238618,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.726827,0.15,4 +33050,0,0.512025,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.288599,0.15,4 +33600,0,0.770891,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.501377,0.15,4 +33648,0,0.320338,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.688124,0.15,4 +33649,0,0.50953,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.228712,0.15,4 +33650,0,0.511942,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.2866,0.15,4 +33712,0,0.504307,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.103379,0.15,4 +33801,0,0.421308,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.111384,0.15,4 +33819,0,0.354091,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.498177,0.15,4 +33888,0,0.381,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.144002,0.15,4 +10826,1,0.360162,1,0,0,1,1,ROF,4,2,E I 94/Ecorse,RAMP,1576709,0,0.36,0,,2.24,5 +11202,1,1.377392,3,0,0,1,1,,4,2,E I 94,,1576405,13.024,14.401,0,,0.8,7.5 +11862,-1,0.325044,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,5.548,5.873,0,7.801051,5,5 +12451,0,0.495951,2,2,1,2,4,,4,2,Goddard,Rd,1578601,0.493,0.989,0,11.902818,4.5,4.5 +12777,0,0.501762,2,2,1,2,4,,4,2,Northline,Rd,1578505,0.487,0.989,0,12.042295,4.5,4.5 +14072,-1,1.271123,0,3,0,1,1,,4,2,W I 94,,1588802,13.019,14.289,0,,0.8,7.5 +15044,0,0.499812,3,3,1,2,3,,3,2,Ford,Rd,1595510,12.523,13.023,0,11.995497,5,5 +15790,1,0.379728,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,13.226,13.606,0,9.113467,5,5 +16059,0,0.301941,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,12.52,12.822,0,7.246593,6,4.5 +16884,0,0.253392,2,2,0,2,3,,4,2,Ecorse,Rd,5495384,9.459,9.712,0,6.081398,3.7,5 +17515,0,0.254401,2,2,1,2,3,,3,2,Inkster,Rd,1674404,11.107,11.361,0,6.105631,5,5 +17582,0,0.381159,2,2,0,2,4,,3,2,Pelham,Rd,1652704,2.849,3.23,0,9.147823,6,4.5 +17588,0,0.436138,1,1,0,2,5,,3,2,Gulley,Rd,1643407,0.32,0.756,0,10.467301,8,4.5 +17596,1,0.238853,1,0,0,2,5,DV2,3,2,Wilson,Dr,1643301,0.749,0.988,0,5.732478,8,4.5 +17620,0,0.269349,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,10.417,10.686,0,6.464387,5,5 +17625,0,0.250488,2,2,0,2,4,,3,2,Beech Daly,Rd,1692903,7.023,7.274,0,6.011711,6,4.5 +17661,0,0.349436,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,2.152,2.502,0,8.386471,8,4.5 +17924,0,0.20967,2,2,0,2,3,,3,2,Van Born,Rd,1670203,6.53,6.739,0,5.032072,5,5 +18727,0,0.350039,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,3.531,3.881,0,8.400938,8,4.5 +18790,0,0.493242,1,1,0,2,4,,4,2,Wick,Rd,1664408,1.509,2.002,0,11.837811,4.5,4.5 +19099,0,0.246205,1,1,0,2,5,,3,2,Avondale,Ave,1686907,5.202,5.448,0,5.908909,8,4.5 +21240,1,0.2494,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,12.432,12.681,0,5.985598,5,5 +21854,0,0.498827,2,2,1,2,3,,3,2,Merriman,Rd,4700000,3.576,4.074,0,11.97185,5,5 +22802,0,0.26933,2,2,0,2,5,,3,2,Monroe,Rd,4705943,2.788,3.057,0,6.463909,8,4.5 +22983,-1,0.33935,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,13.195,13.534,0,8.144405,5,5 +24518,-1,0.485681,0,1,0,2,5,DV2,3,2,Wilson,Dr,4711427,0.5,0.986,0,11.656355,8,4.5 +27399,0,0.250554,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.013289,0.15,4 +31861,0,0.741452,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.794846,0.15,4 +31905,0,0.266966,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.407182,0.15,4 +32360,0,0.440088,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.562103,0.15,4 +32361,0,0.493744,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.849848,0.15,4 +32367,0,0.260526,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.252615,0.15,4 +32368,0,0.494407,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.865759,0.15,4 +32380,0,0.249106,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.978539,0.15,4 +32385,0,0.455252,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.926049,0.15,4 +32392,0,0.727621,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.462893,0.15,4 +32393,0,0.249728,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.993472,0.15,4 +32394,0,0.496571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.917693,0.15,4 +32400,0,0.488471,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.723307,0.15,4 +32512,0,0.500374,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.008982,0.15,4 +33937,0,0.358922,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.614127,0.15,4 +33938,0,0.553581,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.285937,0.15,4 +33979,0,0.129662,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.111877,0.15,4 +10742,1,0.369628,3,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0.93,1.3,0,,0.8,7.5 +10829,1,0.257853,3,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0.082,0.34,0,,0.8,7.5 +11061,1,1.535819,3,0,0,1,1,,4,2,E I 94,,1576405,10.171,11.706,0,,0.8,7.5 +11992,1,0.246763,1,0,0,1,1,RON,4,2,N Merriman/E I 94,RAMP,1578406,0,0.247,0,,1.09,4 +11996,1,0.326541,1,0,0,1,1,RON,4,2,S Merriman/E I 94,RAMP,1578404,0,0.326,0,,1.09,4 +13195,1,0.168958,1,0,0,1,1,ROF,4,2,E I 94/N Merriman,RAMP,1578405,0,0.169,0,,2.24,5 +13458,-1,1.618886,0,3,0,1,1,,4,2,W I 94,,1588802,10.285,11.904,0,,0.8,7.5 +13942,-1,0.112363,0,3,0,1,1,FCD,4,2,W I 94 CD,,1588904,0.925,1.038,0,,0.8,7.5 +16899,0,0.309895,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,7.648,7.958,0,7.437477,4.5,4.5 +17503,0,0.399183,1,1,0,2,5,,4,2,Smith,Rd,1682506,0.616,1.015,0,9.580402,5.8,4.5 +17973,0,0.65466,2,2,1,2,4,,3,2,Van Born,Rd,1670203,4.369,5.023,0,15.71184,6,4.5 +18126,0,0.205091,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,8.216,8.421,0,4.922185,3.7,5 +18733,0,0.43231,1,1,0,2,5,,4,2,Beverly,Rd,1664409,3.001,3.433,0,10.37545,5.8,4.5 +18922,0,0.104541,1,1,0,2,4,,4,2,Inkster,Rd,1674404,8.51,8.615,0,2.508977,4.5,4.5 +21466,-1,0.090868,0,2,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.336,1.427,0,2.180836,3.7,5 +21669,1,0.091363,2,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.14,1.231,0,2.1927,3.7,5 +22500,1,0.1981,1,0,0,1,1,ROF,4,2,E I 94/Middlebelt,RAMP,4705456,0,0.198,0,,2.24,5 +23136,1,0.165249,1,0,0,1,1,RON,4,2,S Middlebelt/W I 94,RAMP,4706189,0,0.165,0,,1.09,4 +24492,0,0.623101,1,1,0,2,4,,4,2,Goddard,Rd,4711342,1.77,2.392,0,14.95443,4.5,4.5 +31884,0,0.477341,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.456184,0.15,4 +32369,0,0.49845,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.962791,0.15,4 +13269,1,0.350234,1,0,0,1,1,ROF,4,2,E I 94/S Merriman,RAMP,1578403,0,0.35,0,,2.24,5 +24072,-1,1.318211,0,2,0,2,3,DIV,4,2,John Dingell,Dr,4711337,1.572,2.889,0,31.637069,3.7,5 +24081,1,1.839148,2,0,0,2,3,DIV,4,2,John Dingell,Dr,4711336,0.951,2.79,0,44.139556,3.7,5 +33943,0,0.330926,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.94223,0.15,4 +11354,1,0.082071,2,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0,0.082,0,,0.8,7.5 +21248,1,0.245468,4,0,0,2,3,DIV,4,2,W G Rogell,Dr,4700021,0.474,0.719,0,5.891235,3.7,5 +21931,-1,0.381425,0,3,0,2,3,DIV,4,2,W G Rogell,Dr,4700000,0.771,1.153,0,9.154192,3.7,5 +30536,0,0.262829,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.307903,0.15,4 +18016,-1,0.163861,0,1,0,2,3,RSF,4,2,E/W Goddard/S W G Rogell,Ramp,1688703,0,0.164,0,3.932663,3.7,5 +22001,1,0.277768,4,0,0,2,3,DIV,4,2,W G Rogell,Dr,4700021,0.719,0.997,0,6.666422,3.7,5 +24079,0,0.108708,1,1,0,2,4,,4,2,Goddard,Rd,4711342,1.661,1.77,0,2.608991,4.5,4.5 +17921,1,0.129328,1,0,0,2,3,RSF,4,2,N W G Rogell/E/W Goddard,Ramp,1688704,0,0.129,0,3.103873,3.7,5 +21680,-1,0.183734,0,3,0,2,3,DIV,4,2,W G Rogell,Dr,4700000,1.153,1.336,0,4.409606,3.7,5 +21848,1,0.142993,3,0,0,2,3,DIV,4,2,W G Rogell,Dr,4700021,0.997,1.14,0,3.431821,3.7,5 +37937,1,0.329798,1,0,0,1,1,RON,4,2,S Merriman/W I 94,RAMP,4718585,0,0.33,0,,1.09,4 +14158,-1,0.265414,0,3,0,1,1,FCD,4,2,W I 94 CD,,1588904,0.056,0.322,0,,0.8,7.5 +16906,0,0.464171,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,6.967,7.431,0,11.140104,4.5,4.5 +17600,0,0.596403,1,1,0,2,5,,4,2,Smith,Rd,1682506,0.02,0.616,0,14.313676,5.8,4.5 +17984,0,0.291247,2,2,1,2,4,,3,2,Van Born,Rd,1670203,4.025,4.316,0,6.989933,6,4.5 +18307,0,0.558437,1,1,0,2,5,,4,2,Beverly,Rd,1664409,2.442,3.001,0,13.402479,5.8,4.5 +21301,1,0.195037,3,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.586,1.781,0,4.680876,3.7,5 +21355,0,0.496066,2,2,1,2,3,,4,2,Merriman,Rd,4700000,2.568,3.064,0,11.905576,3.7,5 +21736,-1,0.231615,0,3,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.71,1.942,0,5.558771,3.7,5 +31881,0,0.534902,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.837642,0.15,4 +18435,0,0.477817,1,1,0,2,4,,4,2,Wick,Rd,1682705,3.016,3.494,0,11.467604,4.5,4.5 +21798,-1,0.230637,0,3,0,2,3,DIV,4,2,Merriman,Rd,4700000,2.065,2.296,0,5.535282,3.7,5 +22110,1,0.236809,3,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.874,2.111,0,5.683423,3.7,5 +14461,0,0.369597,1,1,0,2,4,,4,2,Wickham,Rd,1589307,0,0.37,0,8.870318,4.5,4.5 +14403,-1,0.056343,0,1,0,1,1,FCD,4,2,W I 94 CD,,1588904,0,0.056,0,,0.8,7.5 +13766,1,0.028095,1,0,0,2,4,,4,2,Wickham,Rd,1589307,0.37,0.398,0,0.674289,4.5,4.5 +21308,-1,0.092933,0,3,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.962,2.055,0,2.230393,3.7,5 +21523,-1,0.020106,0,3,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.942,1.962,0,0.482556,3.7,5 +23661,-1,0.039675,0,1,0,2,4,,4,2,Wickham,Rd,4706172,0,0.04,0,0.952194,4.5,4.5 +22066,-1,0.010215,0,3,0,2,3,DIV,4,2,Merriman,Rd,4700000,2.055,2.065,0,0.24517,3.7,5 +21574,0,0.272391,2,2,1,2,3,,4,2,Merriman,Rd,4700000,2.296,2.568,0,6.537395,3.7,5 +17563,0,0.290836,2,2,0,2,4,,3,2,Van Born,Rd,1670203,3.734,4.025,0,6.980071,6,4.5 +22120,0,0.512167,2,2,1,2,3,,4,2,Merriman,Rd,4700000,3.064,3.576,0,12.292009,3.7,5 +10962,1,0.321917,3,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0.609,0.93,0,,0.8,7.5 +14380,1,0.282434,2,0,0,1,1,ROF,4,2,W I 94/N Merriman,RAMP,1589404,0,0.282,0,,2.24,5 +14433,-1,0.287686,0,3,0,1,1,FCD,4,2,W I 94 CD,,1588904,0.322,0.609,0,,0.8,7.5 +16904,0,0.217854,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,7.431,7.648,0,5.228496,4.5,4.5 +31882,0,0.081563,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.95751,0.15,4 +10746,1,0.109016,3,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0.34,0.449,0,,0.8,7.5 +13697,1,0.284498,1,0,0,1,1,RON,4,2,N Merriman/W I 94,RAMP,1589403,0,0.284,0,,1.09,4 +14126,1,0.187647,1,0,0,1,1,ROF,4,2,W I 94/N Merriman,RAMP,1589404,0.282,0.47,0,,2.24,5 +21407,1,0.246894,2,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.339,1.586,0,5.925453,3.7,5 +21567,1,0.108149,2,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.231,1.339,0,2.595567,3.7,5 +37936,1,0.180108,1,0,0,1,1,ROF,4,2,W I 94/S Merriman,RAMP,4718584,0,0.18,0,,2.24,5 +21256,-1,0.183833,0,2,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.427,1.611,0,4.411995,3.7,5 +22015,-1,0.099646,0,2,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.611,1.71,0,2.391493,3.7,5 +11493,1,0.159814,3,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0.449,0.609,0,,0.8,7.5 +31880,0,0.481216,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.549179,0.15,4 +14195,-1,0.316167,0,3,0,1,1,FCD,4,2,W I 94 CD,,1588904,0.609,0.925,0,,0.8,7.5 +31886,0,0.540708,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.977002,0.15,4 +31888,0,0.062361,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.496664,0.15,4 +18286,0,0.234984,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,3.296,3.531,0,5.639614,8,4.5 +17562,0,0.052721,2,2,1,2,4,,3,2,Van Born,Rd,1670203,4.316,4.369,0,1.265311,6,4.5 +17821,0,0.655759,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,6.764,7.419,0,15.738223,3.7,5 +18237,0,0.503905,1,1,0,2,4,,4,2,Northline,Rd,1664702,1.103,1.606,0,12.093727,4.5,4.5 +18450,0,0.619132,1,1,0,2,4,,4,2,Inkster,Rd,1674404,7.497,8.116,0,14.859175,4.5,4.5 +18808,0,0.517758,1,1,0,2,4,,4,2,Goddard,Rd,1664205,0.497,1.015,0,12.426199,4.5,4.5 +31889,0,0.477018,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.448436,0.15,4 +31890,0,0.491617,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.798801,0.15,4 +31893,0,0.469989,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.279747,0.15,4 +32362,0,0.496148,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.907549,0.15,4 +18219,0,0.342418,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,6.422,6.764,0,8.218043,3.7,5 +18675,0,0.501592,1,1,0,2,4,,4,2,Northline,Rd,1664702,0.601,1.103,0,12.038218,4.5,4.5 +31118,0,0.575309,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.807425,0.15,4 +31891,0,0.516235,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.389643,0.15,4 +18659,0,0.254584,1,1,0,2,3,,4,2,Middle Belt,Rd,1674403,6.167,6.422,0,6.110015,3.7,5 +18353,0,0.497308,1,1,0,2,4,,4,2,Goddard,Rd,1664205,0,0.497,0,11.935382,4.5,4.5 +19014,0,0.49434,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,7.419,7.914,0,11.864156,3.7,5 +31879,0,0.563606,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.526543,0.15,4 +31885,0,0.532009,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.768218,0.15,4 +18543,0,0.30203,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,7.914,8.216,0,7.248713,3.7,5 +13178,0,0.487054,2,2,1,2,4,,4,2,Northline,Rd,1578505,0,0.487,0,11.689303,4.5,4.5 +18923,0,0.379966,1,1,0,2,4,,4,2,Inkster,Rd,1674404,7.117,7.497,0,9.119195,4.5,4.5 +32046,0,0.51625,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.389995,0.15,4 +32363,0,0.494204,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.860891,0.15,4 +17518,0,0.235065,1,1,0,2,4,,4,2,Inkster,Rd,1674404,6.882,7.117,0,5.641568,4.5,4.5 +12793,0,0.49345,2,2,1,2,4,,4,2,Goddard,Rd,1578601,0,0.493,0,11.842797,4.5,4.5 +17517,0,0.394804,1,1,0,2,4,,4,2,Inkster,Rd,1674404,8.116,8.51,0,9.47529,4.5,4.5 +32388,0,0.51062,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.254874,0.15,4 +32482,0,0.498316,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.959575,0.15,4 +11251,1,1.198252,3,0,0,1,1,,4,2,E I 94,,1576405,11.706,12.904,0,,0.8,7.5 +12463,1,0.216561,1,0,0,1,1,RON,4,2,Ecorse/W I 94,RAMP,1578709,0,0.217,0,,1.09,4 +13888,1,0.41361,1,0,0,1,1,ROF,4,2,W I 94/Ecorse,RAMP,1588908,0,0.414,0,,2.24,5 +14273,-1,0.940549,0,3,0,1,1,,4,2,W I 94,,1588802,11.904,12.844,0,,0.8,7.5 +14312,-1,0.174792,0,3,0,1,1,,4,2,W I 94,,1588802,12.844,13.019,0,,0.8,7.5 +16896,0,0.315556,1,1,0,2,3,,4,2,Ecorse,Rd,5495384,8.665,8.98,0,7.573344,3.7,5 +17931,0,0.505036,2,2,1,2,3,,3,2,Van Born,Rd,1670203,5.525,6.029,0,12.120852,5,5 +18325,0,0.517337,1,1,0,2,4,,4,2,Inkster,Rd,1674404,10.09,10.607,0,12.416096,4.5,4.5 +18729,0,0.33843,1,1,1,2,5,,4,2,Beverly,Rd,1664409,4.118,4.456,0,8.122328,5.8,4.5 +18794,0,0.51544,1,1,0,2,4,,4,2,Wick,Rd,1664408,0.499,1.014,0,12.37056,4.5,4.5 +19053,0,0.496213,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,9.412,9.908,0,11.909121,3.7,5 +31897,0,0.539132,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.939178,0.15,4 +11446,1,0.236532,1,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,1.3,1.536,0,,0.8,7.5 +13746,-1,0.384988,0,3,0,1,1,FCD,4,2,W I 94 CD,,1588904,1.038,1.423,0,,0.8,7.5 +16898,0,0.70655,1,1,0,2,3,,4,2,Ecorse,Rd,5495384,7.958,8.665,0,16.957197,3.7,5 +17643,0,0.49559,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,8.916,9.412,0,11.894166,3.7,5 +18351,0,0.499108,1,1,0,2,4,,4,2,Wick,Rd,1664408,0,0.499,0,11.978592,4.5,4.5 +23486,1,0.39167,1,0,0,1,1,ROF,4,2,W I 94/Middlebelt,RAMP,4705459,0,0.392,0,,2.24,5 +31894,0,0.492558,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.821386,0.15,4 +32390,0,0.50846,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.203041,0.15,4 +11200,1,0.197879,1,0,0,1,1,RON,4,2,Middlebelt/E I 94,RAMP,1576707,0,0.198,0,,1.09,4 +19105,0,0.184426,2,2,0,2,3,,4,2,Middle Belt,Rd,1674403,8.571,8.755,0,4.426224,3.7,5 +17697,0,0.150402,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,8.421,8.571,0,3.609642,3.7,5 +18950,0,0.031071,2,2,0,2,3,,4,2,Middle Belt,Rd,1674403,8.755,8.786,0,0.745715,3.7,5 +23143,1,0.299986,1,0,0,1,1,RON,4,2,N Middlebelt/W I 94,RAMP,4705460,0,0.3,0,,1.09,4 +18068,0,0.086407,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,8.83,8.916,0,2.07377,3.7,5 +18473,0,0.043313,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,8.786,8.83,0,1.039515,3.7,5 +14078,-1,0.196601,0,1,0,1,1,FCD,4,2,W I 94 CD,,1588904,1.423,1.619,0,,0.8,7.5 +31892,0,0.530217,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.725202,0.15,4 +17556,0,0.501284,2,2,1,2,3,,3,2,Van Born,Rd,1670203,5.023,5.525,0,12.030807,5,5 +18044,0,0.509614,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,9.908,10.417,0,12.23074,3.7,5 +18292,0,0.685038,1,1,1,2,5,,4,2,Beverly,Rd,1664409,3.433,4.118,0,16.44091,5.8,4.5 +31896,0,0.504397,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.105522,0.15,4 +31895,0,0.17169,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.120569,0.15,4 +16892,0,0.261631,2,2,0,2,3,,4,2,Ecorse,Rd,5495384,9.002,9.264,0,6.279145,3.7,5 +17611,0,0.526408,1,1,0,2,4,,4,2,Inkster,Rd,1674404,9.564,10.09,0,12.633794,4.5,4.5 +18337,0,0.495121,1,1,0,2,4,,4,2,Wick,Rd,1664408,1.014,1.509,0,11.882905,4.5,4.5 +33728,0,0.54703,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.128719,0.15,4 +18035,0,0.290782,2,2,0,2,4,,4,2,Inkster,Rd,1674404,9.273,9.564,0,6.978772,4.5,4.5 +18449,0,0.163848,2,2,0,2,4,,4,2,Inkster,Rd,1674404,9.109,9.273,0,3.932363,4.5,4.5 +16895,0,0.022121,2,2,0,2,3,,4,2,Ecorse,Rd,5495384,8.98,9.002,0,0.530907,3.7,5 +32386,0,0.266126,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.387014,0.15,4 +11039,1,0.119596,3,0,0,1,1,,4,2,E I 94,,1576405,12.904,13.024,0,,0.8,7.5 +11886,1,0.215074,1,0,0,1,1,RON,4,2,Ecorse/E I 94,RAMP,1576710,0,0.215,0,,1.09,4 +16887,0,0.195274,2,2,0,2,3,,4,2,Ecorse,Rd,5495384,9.264,9.459,0,4.686574,3.7,5 +17511,0,0.500227,2,2,0,2,3,,3,2,Van Born,Rd,1670203,6.029,6.53,0,12.005442,5,5 +17937,0,0.499943,1,1,0,2,4,,4,2,Inkster,Rd,1674404,10.607,11.107,0,11.998622,4.5,4.5 +14984,0,0.492384,2,2,1,2,3,,3,2,Ford,Rd,1595510,11.028,11.52,0,11.817222,5,5 +15794,1,0.643714,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,11.675,12.319,0,15.449136,5,5 +16346,0,0.495967,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,11.01,11.506,0,11.903208,6,4.5 +17514,0,0.210819,2,2,1,2,3,,3,2,Inkster,Rd,1674404,13.397,13.607,0,5.059661,5,5 +17601,1,0.494603,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,4.22,4.714,0,11.870466,8,4.5 +17675,0,0.234657,1,1,0,2,5,,3,2,John Daly,Rd,1642902,2.012,2.247,0,5.631765,8,4.5 +17920,0,0.49696,1,1,0,2,5,,3,2,Avondale,Ave,1686907,2.205,2.702,0,11.927034,8,4.5 +18305,0,0.499995,1,1,0,2,5,,3,2,Avondale,Ave,1686907,3.695,4.195,0,11.999881,8,4.5 +18558,0,0.333804,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,12.582,12.915,0,8.01129,5,5 +18559,0,0.498611,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,10.919,11.417,0,11.966674,5,5 +18704,0,0.063659,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,5.804,5.868,0,1.527809,8,4.5 +19185,0,0.252024,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,0.252,0.504,0,6.048564,8,4.5 +22014,0,0.249282,2,2,1,2,3,,3,2,Merriman,Rd,4700000,5.824,6.073,0,5.982771,5,5 +22919,-1,0.663524,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,11.644,12.308,0,15.924574,5,5 +23387,1,0.495143,1,0,0,2,5,DV2,3,2,Maplewood,Ave,4704589,1.749,2.244,0,11.883426,8,4.5 +24262,-1,0.494469,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711013,0.491,0.985,0,11.867249,8,4.5 +24522,-1,0.495156,0,1,0,2,5,DV2,3,2,Maplewood,Ave,4708693,0.85,1.345,0,11.883755,8,4.5 +31312,0,0.501029,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.024685,0.15,4 +31789,0,0.503441,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.082576,0.15,4 +31904,0,0.347644,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.343463,0.15,4 +31906,0,0.191799,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.603176,0.15,4 +31911,0,0.314149,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.539573,0.15,4 +31913,0,0.455946,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.942713,0.15,4 +31919,0,0.25692,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.16608,0.15,4 +31920,0,0.494583,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.869987,0.15,4 +31928,0,0.503773,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.090546,0.15,4 +32372,0,0.516013,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.384321,0.15,4 +33936,0,0.660211,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.845055,0.15,4 +33965,0,0.495877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.901049,0.15,4 +33982,0,0.694164,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.659947,0.15,4 +15795,1,0.523375,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,11.152,11.675,0,12.561002,5,5 +15796,1,0.50852,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,10.644,11.152,0,12.204479,5,5 +16242,0,0.230157,1,1,0,2,5,,3,2,Palmer,Rd,1607406,7.038,7.268,0,5.523779,8,4.5 +18138,0,0.482207,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,11.417,11.899,0,11.572964,5,5 +18713,0,0.023639,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,4.698,4.721,0,0.567344,8,4.5 +21679,0,0.49448,2,2,1,2,3,,3,2,Merriman,Rd,4700000,4.83,5.324,0,11.86751,5,5 +23559,-1,0.509368,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,10.612,11.121,0,12.224821,5,5 +31197,0,0.39807,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.553688,0.15,4 +15797,1,0.319527,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,10.324,10.644,0,7.668659,5,5 +17779,0,0.247656,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,2.361,2.609,0,5.943736,8,4.5 +21415,0,0.640177,2,2,1,2,3,,3,2,Merriman,Rd,4700000,4.168,4.807,0,15.36425,5,5 +22649,-1,0.315852,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,10.296,10.612,0,7.580449,5,5 +30270,0,0.125406,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.009749,0.15,4 +30273,0,0.617926,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.830224,0.15,4 +31299,0,0.655114,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.722744,0.15,4 +31198,0,0.142482,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.41956,0.15,4 +15798,1,0.062899,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,10.261,10.324,0,1.509584,5,5 +22939,-1,0.059958,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,10.236,10.296,0,1.438987,5,5 +17808,0,0.25493,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,2.609,2.863,0,6.118312,8,4.5 +21612,0,0.093058,2,2,1,2,3,,3,2,Merriman,Rd,4700000,4.074,4.168,0,2.23339,5,5 +21930,0,0.02254,2,2,0,2,3,,3,2,Merriman,Rd,4700000,4.807,4.83,0,0.540966,5,5 +16490,0,0.323678,1,1,0,2,4,,3,2,Palmer,Rd,1607406,6.715,7.038,0,7.768279,6,4.5 +21465,0,0.24955,2,2,1,2,3,,3,2,Merriman,Rd,4700000,5.324,5.574,0,5.989201,5,5 +31300,0,0.561767,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.482405,0.15,4 +31304,0,0.343046,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.233094,0.15,4 +31301,0,0.257203,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.172861,0.15,4 +21255,0,0.249869,2,2,1,2,3,,3,2,Merriman,Rd,4700000,5.574,5.824,0,5.996845,5,5 +17783,0,0.251885,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,0,0.252,0,6.045231,8,4.5 +18715,0,0.192502,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,3.968,4.16,0,4.620044,8,4.5 +33934,0,0.283887,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.813286,0.15,4 +33935,0,0.409262,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.822288,0.15,4 +32371,0,0.124533,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.988799,0.15,4 +18284,0,0.086996,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,3.881,3.968,0,2.087895,8,4.5 +37165,0,7.938496,1,1,0,0,82,,3,5,Norfolk Southern Railway,,4604999,23.22,31.155,1,,0.15,4 +31901,0,0.2611,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.266401,0.15,4 +18705,0,0.45957,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,4.91,5.369,0,11.029673,8,4.5 +19029,0,0.660276,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,11.921,12.582,0,15.846621,5,5 +23215,-1,0.523418,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,11.121,11.644,0,12.562039,5,5 +30271,0,0.289018,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.936425,0.15,4 +31664,0,0.362995,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.711888,0.15,4 +31932,0,0.274637,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.591286,0.15,4 +18273,0,0.188601,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,4.721,4.91,0,4.52642,8,4.5 +16485,0,0.272586,1,1,0,2,5,,3,2,Palmer,Rd,1607406,7.268,7.541,0,6.542062,8,4.5 +18270,0,0.435544,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,5.369,5.804,0,10.453051,8,4.5 +17619,0,0.022443,2,2,0,2,3,,3,2,Middle Belt,Rd,1674403,11.899,11.921,0,0.538639,5,5 +31903,0,0.251193,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.028636,0.15,4 +15265,0,0.49381,2,2,1,2,3,,3,2,Ford,Rd,1595510,10.031,10.525,0,11.851441,5,5 +16107,0,0.275961,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,10.037,10.313,0,6.623057,6,4.5 +17594,0,0.301982,1,1,0,2,5,,3,2,Avondale,Ave,1686907,2.702,3.004,0,7.247571,8,4.5 +18690,0,0.123217,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,6.861,6.984,0,2.957216,8,4.5 +19012,1,0.259618,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,3.236,3.495,0,6.230837,8,4.5 +19027,0,0.245007,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,13.914,14.159,0,5.880157,5,5 +21573,0,0.243785,2,2,1,2,3,,3,2,Merriman,Rd,4700000,7.066,7.31,0,5.850851,5,5 +23389,1,0.350141,1,0,0,2,5,DV2,3,2,Maplewood,Ave,4704589,0.9,1.25,0,8.403384,8,4.5 +24244,-1,0.259683,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711017,1.253,1.512,0,6.232401,8,4.5 +24527,-1,0.35006,0,1,0,2,5,DV2,3,2,Maplewood,Ave,4708693,0,0.35,0,8.401447,8,4.5 +31199,0,0.50156,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.037445,0.15,4 +31934,0,0.132889,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.189331,0.15,4 +16357,0,0.534693,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,9.502,10.037,0,12.832641,6,4.5 +17219,1,0.502739,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,2.733,3.236,0,12.065731,8,4.5 +21307,0,0.246973,2,2,1,2,3,,3,2,Merriman,Rd,4700000,6.569,6.816,0,5.927364,5,5 +24245,-1,0.502707,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711017,0.75,1.253,0,12.06496,8,4.5 +21522,0,0.311014,2,2,1,2,3,,3,2,Merriman,Rd,4700000,6.258,6.569,0,7.464347,5,5 +21735,0,0.184978,2,2,1,2,3,,3,2,Merriman,Rd,4700000,6.073,6.258,0,4.439468,5,5 +22065,0,0.243812,2,2,1,2,3,,3,2,Merriman,Rd,4700000,6.816,7.059,0,5.851488,5,5 +21797,0,0.006702,2,2,1,2,3,,3,2,Merriman,Rd,4700000,7.059,7.066,0,0.160846,5,5 +15540,0,0.495006,2,2,1,2,3,,3,2,Ford,Rd,1595510,9.537,10.031,0,11.880152,5,5 +22119,0,0.242113,2,2,1,2,3,,3,2,Merriman,Rd,4700000,7.557,7.799,0,5.810716,5,5 +30274,0,0.363913,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.733911,0.15,4 +30275,0,0.27571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.617044,0.15,4 +30279,0,0.381687,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.160482,0.15,4 +21354,0,0.247127,2,2,1,2,3,,3,2,Merriman,Rd,4700000,7.31,7.557,0,5.931057,5,5 +21853,0,0.257969,2,2,1,2,3,,3,2,Merriman,Rd,4700000,7.799,8.057,0,6.191259,5,5 +23390,0,0.147663,1,1,0,2,5,,3,2,Maplewood,Ave,4704589,0.752,0.9,0,3.543909,8,4.5 +21611,0,0.187886,2,2,1,2,3,,3,2,Merriman,Rd,4700000,8.057,8.244,0,4.509272,5,5 +16097,0,0.481515,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,10.529,11.01,0,11.556371,6,4.5 +18124,1,0.246139,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,3.729,3.976,0,5.907343,8,4.5 +18455,0,0.249014,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,13.413,13.662,0,5.976339,5,5 +18701,0,0.373777,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,6.363,6.736,0,8.97064,8,4.5 +18900,0,0.245567,1,1,0,2,5,,3,2,Avondale,Ave,1686907,3.205,3.451,0,5.893618,8,4.5 +24278,-1,0.246084,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711013,0,0.246,0,5.906022,8,4.5 +26862,0,0.266022,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.384525,0.15,4 +31933,0,0.268543,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.44503,0.15,4 +16353,0,0.215995,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,10.313,10.529,0,5.183871,6,4.5 +18268,0,0.494696,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,5.868,6.363,0,11.872702,8,4.5 +19209,0,0.20137,1,1,0,2,5,,3,2,Avondale,Ave,1686907,3.004,3.205,0,4.832891,8,4.5 +33790,0,0.499955,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.998924,0.15,4 +31917,0,0.048556,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.165345,0.15,4 +18438,0,0.165216,1,1,0,2,5,,3,2,Marquette,Ave,1685107,3.564,3.729,0,3.965183,8,4.5 +32430,0,0.172065,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.129556,0.15,4 +18655,0,0.069136,1,1,0,2,5,,3,2,Marquette,Ave,1685107,3.495,3.564,0,1.659271,8,4.5 +18267,0,0.124389,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,6.736,6.861,0,2.985324,8,4.5 +30253,0,0.135354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.248495,0.15,4 +32431,0,0.001727,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.041441,0.15,4 +17714,0,0.260111,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,13.153,13.413,0,6.242655,5,5 +18640,0,0.244084,1,1,0,2,5,,3,2,Avondale,Ave,1686907,3.451,3.695,0,5.858011,8,4.5 +18137,0,0.238313,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,12.915,13.153,0,5.719523,5,5 +17930,1,0.24456,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,3.976,4.22,0,5.869429,8,4.5 +18040,0,0.244666,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,13.662,13.907,0,5.871979,5,5 +24277,-1,0.244682,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711013,0.246,0.491,0,5.872365,8,4.5 +17617,0,0.007041,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,13.907,13.914,0,0.168977,5,5 +15046,0,0.502975,2,2,1,2,3,,3,2,Ford,Rd,1595510,10.525,11.028,0,12.071401,5,5 +18247,0,0.302078,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,7.417,7.719,0,7.249871,8,4.5 +18926,0,0.243153,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,14.405,14.648,0,5.835674,5,5 +23388,1,0.500108,1,0,0,2,5,DV2,3,2,Maplewood,Ave,4704589,1.25,1.749,0,12.002586,8,4.5 +24523,-1,0.339992,0,1,0,2,5,DV2,3,2,Maplewood,Ave,4708693,0.51,0.85,0,8.159818,8,4.5 +31200,0,0.495325,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.887792,0.15,4 +32435,0,0.233607,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.606557,0.15,4 +18248,0,0.371769,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,6.984,7.356,0,8.922459,8,4.5 +18689,0,0.061871,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,7.356,7.417,0,1.484898,8,4.5 +18688,0,0.13878,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,7.719,7.858,0,3.330715,8,4.5 +32479,0,0.145947,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.502735,0.15,4 +18681,0,0.14278,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,7.864,8.007,0,3.426731,8,4.5 +24526,-1,0.160109,0,1,0,2,5,DV2,3,2,Maplewood,Ave,4708693,0.35,0.51,0,3.842625,8,4.5 +32350,0,0.153721,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.689305,0.15,4 +32351,0,0.203504,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.884094,0.15,4 +18246,0,0.006146,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,7.858,7.864,0,0.147514,8,4.5 +18555,0,0.245701,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,14.159,14.405,0,5.896822,5,5 +18453,0,0.26187,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,14.648,14.909,0,6.284876,5,5 +18039,0,0.006905,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,14.909,14.916,0,0.165724,5,5 +15793,1,0.397267,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,12.319,12.716,0,9.534402,5,5 +17687,0,0.31321,1,1,0,2,5,,3,2,John Daly,Rd,1642902,0.811,1.124,0,7.51703,8,4.5 +18775,0,0.776761,2,2,0,2,3,,3,2,Inkster,Rd,1674404,12.108,12.884,0,18.642255,5,5 +19178,0,0.500417,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,1,1.5,0,12.010016,8,4.5 +22633,-1,0.375814,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,12.308,12.683,0,9.019533,5,5 +31898,0,0.482648,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.583546,0.15,4 +31900,0,0.499073,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.977763,0.15,4 +31915,0,0.553201,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.276822,0.15,4 +33932,0,0.342531,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.22074,0.15,4 +17770,0,0.496434,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,0.504,1,0,11.914423,8,4.5 +31196,0,0.499571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.989712,0.15,4 +31899,0,0.486903,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.68566,0.15,4 +19030,0,0.232337,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,10.686,10.919,0,5.576086,5,5 +32389,0,0.249963,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.999106,0.15,4 +31908,0,0.110983,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.663596,0.15,4 +31910,0,0.094522,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.268533,0.15,4 +17720,0,0.313406,1,1,0,2,5,,3,2,John Daly,Rd,1642902,0.248,0.561,0,7.521745,8,4.5 +17744,0,0.50202,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,1.5,2.002,0,12.04848,8,4.5 +18445,0,0.498914,2,2,1,2,3,,3,2,Inkster,Rd,1674404,11.609,12.108,0,11.973938,5,5 +31878,0,0.521594,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.518249,0.15,4 +32507,0,0.499508,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.988199,0.15,4 +18919,0,0.247982,2,2,1,2,3,,3,2,Inkster,Rd,1674404,11.361,11.609,0,5.951556,5,5 +32391,0,0.291597,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.998333,0.15,4 +19152,0,0.150301,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,2.002,2.152,0,3.607213,8,4.5 +17716,0,0.249677,1,1,0,2,5,,3,2,John Daly,Rd,1642902,0.561,0.811,0,5.992255,8,4.5 +33933,0,0.310618,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.454827,0.15,4 +31877,0,0.025961,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.623071,0.15,4 +15791,1,0.253719,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,12.973,13.226,0,6.089266,5,5 +17683,0,0.488641,1,1,0,2,5,,3,2,John Daly,Rd,1642902,1.124,1.612,0,11.727375,8,4.5 +17934,0,0.489333,2,2,1,2,3,,3,2,Inkster,Rd,1674404,12.908,13.397,0,11.743991,5,5 +23301,-1,0.305161,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,12.89,13.195,0,7.323859,5,5 +31907,0,0.257813,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.187521,0.15,4 +31924,0,0.481008,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.544187,0.15,4 +31927,0,0.470112,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.282681,0.15,4 +15792,1,0.256866,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,12.716,12.973,0,6.164775,5,5 +23639,-1,0.206405,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,12.683,12.89,0,4.95373,5,5 +18321,0,0.02311,2,2,0,2,3,,3,2,Inkster,Rd,1674404,12.884,12.908,0,0.554635,5,5 +31912,0,0.249329,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.983902,0.15,4 +17676,0,0.377494,1,1,0,2,5,,3,2,John Daly,Rd,1642902,1.635,2.012,0,9.059863,8,4.5 +17678,0,0.022869,1,1,0,2,5,,3,2,John Daly,Rd,1642902,1.612,1.635,0,0.548855,8,4.5 +14563,0,0.503911,2,2,1,2,3,,3,2,Ford,Rd,1595510,11.52,12.024,0,12.093869,5,5 +16086,0,0.512151,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,11.506,12.018,0,12.291621,6,4.5 +17220,1,0.508629,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,4.714,5.223,0,12.207097,8,4.5 +17634,0,0.49659,1,1,0,2,5,,3,2,John Daly,Rd,1642902,3.252,3.748,0,11.918162,8,4.5 +18031,0,0.24718,2,2,0,2,3,,3,2,Inkster,Rd,1674404,14.612,14.859,0,5.932317,5,5 +18116,0,0.504952,1,1,0,2,5,,3,2,Avondale,Ave,1686907,4.195,4.699,0,12.118843,8,4.5 +23386,1,0.501037,1,0,0,2,5,DV2,3,2,Maplewood,Ave,4704589,2.244,2.745,0,12.024878,8,4.5 +24261,-1,0.508582,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711013,0.985,1.493,0,12.205971,8,4.5 +24513,-1,0.501189,0,1,0,2,5,DV2,3,2,Maplewood,Ave,4708693,1.345,1.846,0,12.028537,8,4.5 +31310,0,0.501599,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.038373,0.15,4 +31922,0,0.5041,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.098399,0.15,4 +31926,0,0.243031,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.83274,0.15,4 +31931,0,0.502531,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.060747,0.15,4 +32374,0,0.498462,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.963098,0.15,4 +32438,0,0.50119,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.028572,0.15,4 +31914,0,0.247443,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.938641,0.15,4 +31929,0,0.249358,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.984604,0.15,4 +31930,0,0.250006,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.000146,0.15,4 +31916,0,0.248482,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.963579,0.15,4 +31923,0,0.251104,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.0265,0.15,4 +31925,0,0.249962,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.999083,0.15,4 +31921,0,0.242927,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.830245,0.15,4 +16326,0,0.193742,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,12.327,12.52,0,4.649816,6,4.5 +17595,0,0.252469,1,1,0,2,5,,3,2,Avondale,Ave,1686907,4.949,5.202,0,6.059263,8,4.5 +17630,1,0.500475,1,0,0,2,5,DV2,3,2,Wilson,Dr,1643301,0,0.5,0,12.011407,8,4.5 +17668,0,0.499314,1,1,0,2,5,,3,2,John Daly,Rd,1642902,2.247,2.746,0,11.983539,8,4.5 +17933,0,0.23053,2,2,1,2,3,,3,2,Inkster,Rd,1674404,13.878,14.109,0,5.532721,5,5 +24103,-1,0.24867,0,1,0,2,5,DV2,3,2,Wilson,Dr,4711427,0.252,0.5,0,5.968075,8,4.5 +17796,0,0.249799,1,1,0,2,5,,3,2,Avondale,Ave,1686907,4.699,4.949,0,5.995179,8,4.5 +18918,0,0.270734,2,2,1,2,3,,3,2,Inkster,Rd,1674404,13.607,13.878,0,6.497614,5,5 +16334,0,0.251473,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,12.018,12.269,0,6.035347,6,4.5 +18917,0,0.24471,2,2,0,2,3,,3,2,Inkster,Rd,1674404,14.361,14.605,0,5.873033,5,5 +24259,-1,0.251821,0,1,0,2,5,DV2,3,2,Wilson,Dr,4711427,0,0.252,0,6.043707,8,4.5 +32437,0,0.500192,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.004618,0.15,4 +17513,0,0.252005,2,2,0,2,3,,3,2,Inkster,Rd,1674404,14.109,14.361,0,6.04813,5,5 +18444,0,0.006424,2,2,0,2,3,,3,2,Inkster,Rd,1674404,14.605,14.612,0,0.154175,5,5 +16068,0,0.057495,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,12.269,12.327,0,1.379881,6,4.5 +32436,0,0.004959,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.119024,0.15,4 +17624,1,0.248706,1,0,0,2,5,DV2,3,2,Wilson,Dr,1643301,0.5,0.749,0,5.968934,8,4.5 +17659,0,0.499052,1,1,0,2,5,,3,2,John Daly,Rd,1642902,2.746,3.245,0,11.977237,8,4.5 +17640,0,0.006907,1,1,0,2,5,,3,2,John Daly,Rd,1642902,3.245,3.252,0,0.165761,8,4.5 +15262,0,0.247312,3,3,1,2,3,,3,2,Ford,Rd,1595510,12.276,12.523,0,5.935498,5,5 +18914,0,0.301183,2,2,0,2,3,,3,2,Inkster,Rd,1674404,15.108,15.409,0,7.22839,5,5 +32395,0,0.50371,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.089039,0.15,4 +32396,0,0.247275,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.934593,0.15,4 +15536,0,0.251935,3,3,1,2,3,,3,2,Ford,Rd,1595510,12.024,12.276,0,6.046434,5,5 +17510,0,0.249586,2,2,0,2,3,,3,2,Inkster,Rd,1674404,14.859,15.108,0,5.990053,5,5 +18440,0,0.18113,2,2,0,2,3,,3,2,Inkster,Rd,1674404,15.409,15.59,0,4.347125,5,5 +18028,0,0.00773,2,2,0,2,3,,3,2,Inkster,Rd,1674404,15.59,15.598,0,0.185531,5,5 +11076,1,1.20414,4,0,0,1,1,,4,2,E I 94,,1576405,15.102,16.306,0,,0.8,7.5 +11873,-1,0.250458,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,3.35,3.6,0,6.011001,5,5 +11931,1,0.188166,1,0,0,1,5,,4,2,Byers,,1579910,0.339,0.527,0,,5.8,4.5 +12779,0,0.345827,2,2,1,2,4,,3,2,Goddard,Rd,1578601,1.983,2.329,0,8.299843,6,4.5 +37334,1,0.095495,2,0,0,1,1,ROF,4,2,E I 94/NB Telegraph,RAMP,4712150,0,0.095,0,,2.24,5 +13100,0,0.395175,2,2,1,2,3,,4,2,Northline,Rd,1578505,1.98,2.375,0,9.484197,3.7,5 +37317,1,0.701821,3,0,0,1,1,,4,2,E I 94,,1576405,14.401,15.102,0,,0.8,7.5 +16864,0,0.389694,1,1,0,2,3,,4,2,Ecorse,Rd,5495384,11.033,11.423,0,9.352661,3.7,5 +17505,0,0.666433,1,1,0,2,5,,3,2,Mortenview,Dr,1656610,0.85,1.516,0,15.994384,8,4.5 +17508,0,0.319562,2,2,0,2,5,,3,2,Pardee,Rd,1655206,2.738,3.058,0,7.669488,8,4.5 +17874,0,0.563224,2,2,1,2,3,,3,2,Van Born,Rd,1670203,8.022,8.586,0,13.517372,5,5 +18066,0,0.489709,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,4.583,5.072,0,11.75301,4.5,4.5 +18774,0,0.384206,1,1,0,2,4,,3,2,Wick,Rd,1664408,2.995,3.379,0,9.220933,6,4.5 +22109,1,0.2458,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,10.239,10.485,0,5.899197,5,5 +30748,0,0.5263,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.631199,0.15,4 +30749,0,0.390359,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.368612,0.15,4 +32294,0,0.473881,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.373145,0.15,4 +32370,0,0.495319,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.887648,0.15,4 +32439,0,0.52941,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.705833,0.15,4 +32443,0,0.384442,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.226599,0.15,4 +32444,0,0.385754,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.258098,0.15,4 +32445,0,0.279656,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.711742,0.15,4 +32449,0,0.372138,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.931313,0.15,4 +32452,0,0.390596,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.374307,0.15,4 +32455,0,0.505704,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.136896,0.15,4 +32456,0,0.277804,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.667297,0.15,4 +32463,0,0.367964,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.831146,0.15,4 +33730,0,0.468868,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.25284,0.15,4 +11877,-1,0.497558,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,2.102,2.599,0,11.941388,3.7,5 +11934,0,0.719331,2,2,1,2,4,,4,2,Northline,Rd,1578505,0.989,1.708,0,17.263952,4.5,4.5 +12784,0,0.463637,2,2,1,2,4,,4,2,Goddard,Rd,1578601,0.989,1.453,0,11.127295,4.5,4.5 +18579,0,0.499609,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,3.575,4.075,0,11.990613,4.5,4.5 +21660,1,0.623962,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,8.86,9.484,0,14.975088,3.7,5 +30486,0,0.4994,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.98559,0.15,4 +32030,0,0.484131,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.619151,0.15,4 +32387,0,0.485435,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.650428,0.15,4 +18835,0,0.499729,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,3.076,3.575,0,11.993493,4.5,4.5 +18249,0,0.508182,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,4.075,4.583,0,12.196375,4.5,4.5 +11878,-1,0.502631,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,1.599,2.102,0,12.063134,3.7,5 +13123,0,0.247985,2,2,1,2,4,,4,2,Northline,Rd,1578505,1.708,1.956,0,5.951649,4.5,4.5 +21917,1,0.376389,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,8.484,8.86,0,9.03333,3.7,5 +32042,0,0.550302,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.207247,0.15,4 +32460,0,0.484175,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.620211,0.15,4 +33451,0,0.52104,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.504959,0.15,4 +22060,1,0.255567,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,8.229,8.484,0,6.133599,3.7,5 +11908,0,0.02409,2,2,1,2,3,,4,2,Northline,Rd,1578505,1.956,1.98,0,0.578149,3.7,5 +11875,-1,0.226249,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,2.808,3.034,0,5.429967,5,5 +12781,0,0.500472,2,2,1,2,4,,4,2,Goddard,Rd,1578601,1.459,1.96,0,12.011321,4.5,4.5 +21456,1,0.285326,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,9.484,9.769,0,6.847836,5,5 +31883,0,0.498123,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.95495,0.15,4 +32453,0,0.488047,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.713117,0.15,4 +33580,0,0.550495,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.211876,0.15,4 +12443,0,0.006877,2,2,1,2,4,,4,2,Goddard,Rd,1578601,1.453,1.459,0,0.165046,4.5,4.5 +11876,-1,0.209004,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,2.599,2.808,0,5.016102,5,5 +12442,0,0.023179,2,2,1,2,4,,3,2,Goddard,Rd,1578601,1.96,1.983,0,0.556307,6,4.5 +11874,-1,0.315571,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,3.034,3.35,0,7.573699,5,5 +21242,1,0.470115,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,9.769,10.239,0,11.282767,5,5 +11870,-1,0.586744,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,4.073,4.659,0,14.081846,3.7,5 +11930,1,0.339334,1,0,0,1,5,,4,2,Byers,,1579910,0,0.339,0,,5.8,4.5 +16876,0,0.492824,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,9.97,10.463,0,11.827774,3.7,5 +17530,0,0.2121,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,5.857,6.069,0,5.090395,4.5,4.5 +17893,0,0.490127,2,2,1,2,3,,3,2,Van Born,Rd,1670203,7.514,8.004,0,11.763048,5,5 +18334,0,0.489884,1,1,0,2,4,,4,2,Wick,Rd,1664408,2.002,2.492,0,11.757213,4.5,4.5 +21347,1,0.224302,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,11.316,11.54,0,5.383241,3.7,5 +32383,0,0.208066,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.993588,0.15,4 +32451,0,0.532088,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.770117,0.15,4 +32464,0,0.513769,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.330448,0.15,4 +32466,0,0.146274,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.510575,0.15,4 +33571,0,0.527914,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.66993,0.15,4 +33729,0,0.518363,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.440703,0.15,4 +17950,0,0.508069,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,5.349,5.857,0,12.193644,4.5,4.5 +18341,0,0.277248,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,5.072,5.349,0,6.653953,4.5,4.5 +32384,0,0.360284,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.646817,0.15,4 +17912,0,0.247401,2,2,1,2,3,,3,2,Van Born,Rd,1670203,7.027,7.275,0,5.937627,5,5 +18462,0,0.454263,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,6.237,6.691,0,10.902323,4.5,4.5 +32381,0,0.293879,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.053102,0.15,4 +32382,0,0.450697,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.816737,0.15,4 +32465,0,0.460525,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.052595,0.15,4 +16877,0,0.246566,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,9.724,9.97,0,5.917591,3.7,5 +16879,0,0.011696,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,9.712,9.724,0,0.280709,3.7,5 +18935,0,0.167392,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,6.069,6.237,0,4.01742,4.5,4.5 +17498,0,0.288401,2,2,0,2,3,,3,2,Van Born,Rd,1670203,6.739,7.027,0,6.921621,5,5 +18046,0,0.332846,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,6.691,7.023,0,7.988312,4.5,4.5 +17485,0,0.239651,2,2,1,2,3,,3,2,Van Born,Rd,1670203,7.275,7.514,0,5.751621,5,5 +11872,-1,0.410609,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,3.6,4.011,0,9.854604,3.7,5 +18781,0,0.479014,1,1,0,2,4,,4,2,Wick,Rd,1664408,2.492,2.971,0,11.496345,4.5,4.5 +21918,1,0.376157,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,10.485,10.861,0,9.02777,3.7,5 +32446,0,0.472514,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.340348,0.15,4 +32461,0,0.459071,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.0177,0.15,4 +32462,0,0.400084,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.602017,0.15,4 +18324,0,0.024239,2,2,0,2,4,,3,2,Wick,Rd,1664408,2.971,2.995,0,0.581737,6,4.5 +21513,1,0.328718,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,10.987,11.316,0,7.889237,3.7,5 +32458,0,0.301124,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.226979,0.15,4 +33570,0,0.302847,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.268337,0.15,4 +33731,0,0.314403,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.545665,0.15,4 +21605,1,0.031267,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,10.956,10.987,0,0.750418,3.7,5 +11871,-1,0.062336,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,4.011,4.073,0,1.496058,3.7,5 +21788,1,0.094595,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,10.861,10.956,0,2.270276,3.7,5 +37339,1,0.240198,2,0,0,1,1,ROF,4,2,W I 94/Telegraph,RAMP,1580004,0,0.24,0,,2.24,5 +37357,-1,0.01723,0,2,0,2,4,,3,5,Maple,Rd,4605989,0.033,0.05,0,0.413515,6,4.5 +37344,1,0.092924,2,0,0,1,1,RON,4,2,NB Telegraph/W I 94,RAMP,4712153,0,0.093,0,,1.09,4 +37322,-1,0.77806,0,3,0,1,1,,4,2,W I 94,,1588802,14.289,15.067,0,,0.8,7.5 +37342,1,0.107773,2,0,0,1,1,ROF,4,2,W I 94/SB Telegraph,RAMP,4712152,0,0.108,0,,2.24,5 +37337,1,0.098498,2,0,0,1,1,RON,4,2,SB Telegraph/E I 94,RAMP,4712151,0,0.099,0,,1.09,4 +12526,1,0.159213,1,0,0,1,3,RSF,4,2,S US 24/Ecorse,RAMP,1578706,0,0.159,0,,3.7,5 +37335,1,0.103834,1,0,0,1,1,RON,4,2,NB Telegraph/E I 94,RAMP,1576808,0,0.104,0,,1.09,4 +37331,1,0.284276,2,0,0,1,1,ROF,4,2,E I 94/Telegraph,RAMP,1576804,0,0.284,0,,2.24,5 +16874,0,0.010171,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,10.875,10.886,0,0.244111,3.7,5 +37356,1,0.020613,1,0,0,2,4,,3,5,SB N Maple/NB N Maple,TURN,1446110,0.316,0.337,0,0.494719,6,4.5 +16875,0,0.412504,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,10.463,10.875,0,9.900087,3.7,5 +37338,1,0.269722,2,0,0,1,1,RON,4,2,Telegraph/E I 94,RAMP,1576808,0.104,0.373,0,,1.09,4 +11868,-1,0.206569,0,4,0,2,3,DIV,4,2,Telegraph,Rd,1576806,4.729,4.936,0,4.957659,3.7,5 +22058,1,0.212489,4,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,11.608,11.82,0,5.099729,3.7,5 +11869,-1,0.070078,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,4.659,4.729,0,1.681865,3.7,5 +12465,1,0.152139,1,0,0,1,3,RSF,4,2,Ecorse/N US 24,RAMP,1580002,0,0.152,0,,3.7,5 +12884,1,0.133362,1,0,0,1,3,RSF,4,2,Ecorse/S US 24,RAMP,1578705,0,0.133,0,,3.7,5 +13209,1,0.127339,1,0,0,1,3,RSF,4,2,N US 24/W Ecorse,RAMP,1580001,0,0.127,0,,3.7,5 +16871,0,0.137832,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,10.886,11.023,0,3.30796,3.7,5 +21243,1,0.067821,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,11.54,11.608,0,1.627707,3.7,5 +40310,-1,0.152125,0,2,0,2,4,DIV,4,3,Wattles,Rd,4416867,0.198,0.35,0,3.650994,4.5,4.5 +40309,-1,0.017552,0,2,0,2,4,DIV,4,3,Wattles,Rd,4416867,0.18,0.198,0,0.42124,4.5,4.5 +37145,1,0.026246,1,0,0,1,1,RON,3,3,S Rochester/N I 75,RAMP,5492912,0.015,0.041,0,,1.09,4 +37146,1,0.167647,1,0,0,1,1,RON,4,3,Rochester/N I 75,RAMP,682607,0.033,0.201,0,,1.09,4 +40311,0,0.197043,2,2,1,2,3,,4,3,Rochester,Rd,4413538,6.008,6.205,0,4.729025,3.7,5 +16870,0,0.009902,1,1,0,2,3,,4,2,Ecorse,Rd,5495384,11.023,11.033,0,0.237649,3.7,5 +40308,-1,0.012506,0,3,0,2,3,DIV,4,3,Rochester,Rd,4406170,3.156,3.168,0,0.300144,3.7,5 +11867,-1,0.238372,0,4,0,2,3,DIV,4,2,Telegraph,Rd,1576806,4.936,5.174,0,5.720938,3.7,5 +21919,1,0.20141,4,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,11.82,12.021,0,4.833845,3.7,5 +37340,1,0.119744,1,0,0,1,1,ROF,4,2,W I 94/NB Telegraph,RAMP,1580004,0.24,0.36,0,,2.24,5 +37324,1,0.111985,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,12.021,12.133,0,2.687644,3.7,5 +37355,1,0.032208,2,0,0,2,4,,3,5,Maple,Rd,1452206,3.038,3.07,0,0.772985,6,4.5 +37326,-1,0.075717,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,5.174,5.25,0,1.817215,3.7,5 +37332,1,0.076718,2,0,0,1,1,ROF,4,2,E I 94/SB Telegraph,RAMP,1576804,0.284,0.361,0,,2.24,5 +37330,-1,0.155644,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,5.25,5.405,0,3.735467,3.7,5 +37328,1,0.130727,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,12.133,12.264,0,3.137447,3.7,5 +37354,-1,0.032988,0,2,0,2,4,,3,5,Maple,Rd,4605989,0,0.033,0,0.79172,6,4.5 +11863,-1,0.142898,0,4,0,2,3,DIV,4,2,Telegraph,Rd,1576806,5.405,5.548,0,3.429556,3.7,5 +21455,1,0.167843,4,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,12.264,12.432,0,4.028237,3.7,5 +17458,0,0.018199,2,2,1,2,3,,3,2,Van Born,Rd,1670203,8.004,8.022,0,0.436777,5,5 +11901,0,0.352443,2,2,1,2,3,,3,2,Northline,Rd,1578505,3.013,3.365,0,8.458634,5,5 +12816,0,0.570657,2,2,1,2,4,,3,2,Goddard,Rd,1578601,2.735,3.306,0,13.695764,6,4.5 +18466,0,0.494468,2,2,0,2,5,,3,2,Pardee,Rd,1655206,1.56,2.054,0,11.867224,8,4.5 +30487,0,0.505971,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.143293,0.15,4 +30620,0,0.633354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.20049,0.15,4 +30680,0,0.52957,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.709668,0.15,4 +30796,0,0.437013,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.48832,0.15,4 +32440,0,0.397608,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.542587,0.15,4 +32442,0,0.498037,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.952882,0.15,4 +11907,0,0.352387,2,2,1,2,3,,4,2,Northline,Rd,1578505,2.375,2.727,0,8.45728,3.7,5 +18939,0,0.507564,2,2,0,2,5,,3,2,Pardee,Rd,1655206,1.052,1.56,0,12.181535,8,4.5 +18953,0,0.27138,2,2,0,2,5,,4,2,Pardee,Rd,1655206,0.54,0.811,0,6.513109,5.8,4.5 +30488,0,0.500422,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.010127,0.15,4 +32441,0,0.384365,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.224772,0.15,4 +27379,0,0.236849,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.684373,0.15,4 +32062,0,0.464848,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.15636,0.15,4 +23008,0,0.093449,2,2,0,2,5,,4,2,Superior,Rd,4705981,0.703,0.797,0,2.242772,5.8,4.5 +13097,0,0.271123,2,2,1,2,3,,3,2,Northline,Rd,1578505,2.727,2.998,0,6.506942,5,5 +17719,1,0.257103,1,0,0,2,4,DIV,4,2,Racho,Rd,1692908,2.748,3.005,0,6.17047,4.5,4.5 +18474,0,0.241513,2,2,0,2,5,,4,2,Pardee,Rd,1655206,0.811,1.052,0,5.796321,5.8,4.5 +23794,-1,0.246593,0,1,0,2,4,DIV,4,2,Racho,Rd,4707867,0.431,0.677,0,5.918226,4.5,4.5 +32434,0,0.311941,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.486588,0.15,4 +18048,1,0.229604,1,0,0,2,4,DIV,4,2,Racho,Rd,1692908,2.519,2.748,0,5.510498,4.5,4.5 +23795,-1,0.240298,0,1,0,2,4,DIV,4,2,Racho,Rd,4707867,0.191,0.431,0,5.767155,4.5,4.5 +32433,0,0.022517,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.540413,0.15,4 +30797,0,0.010844,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.260257,0.15,4 +12515,0,0.406815,2,2,1,2,4,,3,2,Goddard,Rd,1578601,2.329,2.735,0,9.76355,6,4.5 +18934,0,0.316598,2,2,0,2,5,,3,2,Pardee,Rd,1655206,2.054,2.371,0,7.598356,8,4.5 +32447,0,0.391715,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.401156,0.15,4 +32448,0,0.400967,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.623199,0.15,4 +32450,0,0.224064,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.377534,0.15,4 +18461,0,0.367679,2,2,0,2,5,,3,2,Pardee,Rd,1655206,2.371,2.738,0,8.824288,8,4.5 +30314,0,0.388607,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.326558,0.15,4 +13094,0,0.200298,2,2,1,2,3,,3,2,Northline,Rd,1578505,3.365,3.565,0,4.807162,5,5 +30489,0,0.499002,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.97604,0.15,4 +12158,0,0.132244,2,2,1,2,4,,3,2,Goddard,Rd,1578601,3.462,3.594,0,3.173856,6,4.5 +18436,0,0.354986,1,1,0,2,5,,3,2,Mortenview,Dr,1656610,0.495,0.85,0,8.519673,8,4.5 +32228,0,0.295954,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.102894,0.15,4 +32259,0,0.536621,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.878893,0.15,4 +12525,0,0.156101,2,2,1,2,4,,3,2,Goddard,Rd,1578601,3.306,3.462,0,3.746436,6,4.5 +13723,-1,1.339535,0,4,0,1,1,,4,2,W I 94,,1588802,15.067,16.406,0,,0.8,7.5 +16849,0,0.180764,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,11.981,12.161,0,4.338324,5,5 +17497,0,0.624656,1,1,0,2,5,,3,2,Mortenview,Dr,1656610,1.898,2.522,0,14.991752,8,4.5 +17867,0,0.485505,2,2,1,2,3,,3,2,Van Born,Rd,1670203,9.023,9.509,0,11.652122,5,5 +18313,0,0.06259,1,1,0,2,4,,3,2,Wick,Rd,1664408,4.13,4.192,0,1.502171,6,4.5 +18910,0,0.472956,2,2,0,2,5,,3,2,Pardee,Rd,1655206,3.62,4.093,0,11.350938,8,4.5 +19032,0,0.496393,2,2,1,2,3,,3,2,Pelham,Rd,1652704,1.421,1.918,0,11.913434,5,5 +23424,0,0.4957,2,2,0,2,5,,3,2,Monroe,Rd,4705943,1.365,1.86,0,11.896798,8,4.5 +31382,0,0.483188,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.596505,0.15,4 +32457,0,0.361644,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.679457,0.15,4 +32470,0,0.520212,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.485082,0.15,4 +32472,0,0.481973,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.567353,0.15,4 +33733,0,0.179067,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.297608,0.15,4 +18320,0,0.36959,1,1,0,2,4,,3,2,Wick,Rd,1664408,3.379,3.749,0,8.870162,6,4.5 +18912,0,0.562389,2,2,0,2,5,,3,2,Pardee,Rd,1655206,3.058,3.62,0,13.497325,8,4.5 +23423,0,0.497766,2,2,0,2,5,,3,2,Monroe,Rd,4705943,0.867,1.365,0,11.946389,8,4.5 +32459,0,0.253962,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.095079,0.15,4 +33732,0,0.638279,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.318701,0.15,4 +18319,0,0.12444,1,1,0,2,4,,3,2,Wick,Rd,1664408,3.881,4.005,0,2.986549,6,4.5 +18773,0,0.132113,1,1,0,2,4,,3,2,Wick,Rd,1664408,3.749,3.881,0,3.170718,6,4.5 +18768,0,0.124849,1,1,0,2,4,,3,2,Wick,Rd,1664408,4.005,4.13,0,2.996385,6,4.5 +32474,0,0.25222,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.053287,0.15,4 +16857,0,0.26737,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,11.463,11.73,0,6.416885,5,5 +17438,0,0.437946,2,2,1,2,3,,3,2,Van Born,Rd,1670203,8.586,9.023,0,10.510693,5,5 +23012,0,0.487732,2,2,0,2,5,,3,2,Monroe,Rd,4705943,2.3,2.788,0,11.705561,8,4.5 +16862,0,0.039857,1,1,0,2,3,,3,2,Ecorse,Rd,5495384,11.423,11.463,0,0.956579,5,5 +32454,0,0.450223,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.805341,0.15,4 +16854,0,0.2509,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,11.73,11.981,0,6.021595,5,5 +23170,0,0.439859,2,2,0,2,5,,3,2,Monroe,Rd,4705943,1.86,2.3,0,10.556624,8,4.5 +18312,0,0.366322,1,1,0,2,4,,3,2,Wick,Rd,1664408,4.322,4.688,0,8.791727,6,4.5 +18909,0,0.382065,1,1,0,2,5,,3,2,Mortenview,Dr,1656610,1.516,1.898,0,9.169561,8,4.5 +33734,0,0.511016,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.264379,0.15,4 +33735,0,0.31992,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.678081,0.15,4 +33736,0,0.485677,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.656242,0.15,4 +18763,0,0.129193,1,1,0,2,4,,3,2,Wick,Rd,1664408,4.192,4.322,0,3.100635,6,4.5 +32471,0,0.239792,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.755014,0.15,4 +32296,0,0.315577,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.573853,0.15,4 +11807,1,0.187728,1,0,0,1,1,RFF,3,2,E I 94/Pelham & M 39,RAMP,1576901,0,0.188,0,,0.58,7 +16840,0,0.426982,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,12.523,12.949,0,10.247576,5,5 +17756,0,0.455753,2,2,1,2,3,,3,2,Van Born,Rd,1670203,9.526,9.982,0,10.938065,5,5 +19006,0,0.313057,2,2,0,2,3,,3,2,Pelham,Rd,1652704,2.248,2.561,0,7.51337,5,5 +32473,0,0.420718,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.097223,0.15,4 +16842,0,0.180487,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,12.342,12.523,0,4.331689,5,5 +32469,0,0.193672,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.648132,0.15,4 +16843,0,0.180679,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,12.161,12.342,0,4.336294,5,5 +32467,0,0.289356,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.944544,0.15,4 +17423,0,0.017694,2,2,1,2,3,,3,2,Van Born,Rd,1670203,9.509,9.526,0,0.424664,5,5 +17613,0,0.165221,2,2,0,2,3,,3,2,Pelham,Rd,1652704,1.918,2.083,0,3.96531,5,5 +19023,0,0.150021,2,2,0,2,3,,3,2,Pelham,Rd,1652704,2.083,2.233,0,3.600505,5,5 +17599,0,0.015057,2,2,0,2,3,,3,2,Pelham,Rd,1652704,2.233,2.248,0,0.361371,5,5 +18997,0,0.092567,2,2,0,2,3,,3,2,Pelham,Rd,1652704,2.561,2.653,0,2.221619,5,5 +19550,1,0.328199,1,0,0,1,1,RON,3,2,Pelham/W I 94,RAMP,1869509,0,0.328,0,,1.09,4 +19552,1,0.256596,1,0,0,1,1,ROF,3,2,E I 94/Pelham,RAMP,1869507,0,0.257,0,,2.24,5 +18520,0,0.195419,2,2,1,2,3,,3,2,Pelham,Rd,1652704,2.653,2.849,0,4.690055,5,5 +11850,-1,0.324074,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,7.773,8.096,0,7.77777,5,5 +12177,0,0.499696,1,1,0,2,5,,3,2,Carlysle,,1578908,0.498,0.997,0,11.992707,8,4.5 +14805,1,0.229347,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,14.348,14.577,0,5.50432,5,5 +17113,0,0.058026,2,2,1,2,3,,2,2,Michigan,Ave,1600206,15.543,15.601,0,1.392624,6,5 +17136,0,0.228068,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,14.33,14.558,0,5.473638,6,4.5 +17137,1,0.083656,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,15.086,15.17,0,2.007744,5,5 +17559,0,0.496876,1,1,0,2,5,,3,2,Gulley,Rd,1643407,2.319,2.816,0,11.925025,8,4.5 +18830,0,0.129603,2,2,1,2,3,,2,2,Oakwood,Blvd,1648503,5.452,5.582,0,3.110483,6,5 +18907,0,0.499916,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,3.495,3.995,0,11.997972,8,4.5 +20012,-1,0.229247,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,0,0.229,0,5.501937,5,5 +22057,1,0.304643,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.662,14.966,0,7.311426,5,5 +23152,-1,0.204131,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.935,15.139,0,4.899149,5,5 +23710,0,0.274819,2,2,0,2,5,,2,2,Monroe,,4706600,0.159,0.433,0,6.595651,8.5,4.5 +24014,0,0.05526,2,2,1,2,3,,2,2,Outer,Dr,4710471,1.117,1.173,0,1.326231,6,5 +32327,0,0.23298,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.59152,0.15,4 +32365,0,0.492321,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.815701,0.15,4 +32398,0,0.141732,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.40156,0.15,4 +32475,0,0.511425,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.274189,0.15,4 +32483,0,0.065651,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,1.575624,0.15,4 +32487,0,0.364918,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.758025,0.15,4 +32491,0,0.338034,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,8.112822,0.15,4 +32492,0,0.259623,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.230945,0.15,4 +32496,0,0.520211,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.485066,0.15,4 +32499,0,0.538855,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,12.932529,0.15,4 +32502,0,0.126346,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.032296,0.15,4 +32503,0,0.607514,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.580342,0.15,4 +32552,0,0.408343,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.800243,0.15,4 +32628,0,0.430995,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.343873,0.15,4 +32720,0,0.379036,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.096862,0.15,4 +32969,0,0.544162,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.059899,0.15,4 +33726,0,0.340418,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.170033,0.15,4 +33727,0,0.346868,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.324834,0.15,4 +33973,0,0.487572,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.701733,0.15,4 +33974,0,0.518689,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.448535,0.15,4 +33983,0,0.642571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.421715,0.15,4 +11857,-1,0.249733,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,6.543,6.793,0,5.993584,5,5 +17151,1,0.575819,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,14.105,14.681,0,13.819662,5,5 +17578,0,0.624438,1,1,0,2,5,,3,2,Gulley,Rd,1643407,1.068,1.692,0,14.98651,8,4.5 +18562,0,0.250553,1,1,0,2,4,,3,2,Beech Daly,Rd,1692903,8.143,8.394,0,6.01327,6,4.5 +19061,0,0.474618,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,2.997,3.472,0,11.390842,8,4.5 +21241,1,0.250013,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,13.427,13.677,0,6.000304,5,5 +22797,-1,0.497137,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,13.954,14.451,0,11.93129,5,5 +30913,0,0.524281,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.582746,0.15,4 +31909,0,0.206537,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.956883,0.15,4 +32378,0,0.520498,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.491957,0.15,4 +32498,0,0.370995,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.903888,0.15,4 +32509,0,0.510849,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.260365,0.15,4 +32510,0,0.484465,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.627149,0.15,4 +17580,0,0.249745,1,1,0,2,5,,3,2,Gulley,Rd,1643407,0.818,1.068,0,5.993873,8,4.5 +18936,0,0.622369,1,1,0,2,4,,3,2,Beech Daly,Rd,1692903,7.521,8.143,0,14.936853,6,4.5 +19074,0,0.247112,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,2.502,2.749,0,5.930698,8,4.5 +32511,0,0.245989,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.903726,0.15,4 +19129,0,0.247375,2,2,0,2,4,,3,2,Beech Daly,Rd,1692903,7.274,7.521,0,5.936992,6,4.5 +17647,0,0.248752,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,2.749,2.997,0,5.970039,8,4.5 +32377,0,0.248905,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.973729,0.15,4 +32379,0,0.30317,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.276071,0.15,4 +17585,0,0.062007,1,1,0,2,5,,3,2,Gulley,Rd,1643407,0.756,0.818,0,1.488162,8,4.5 +32513,0,0.187454,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.498899,0.15,4 +17154,1,0.123733,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,13.861,13.985,0,2.969598,5,5 +17572,0,0.605024,1,1,0,2,5,,3,2,Gulley,Rd,1643407,1.692,2.297,0,14.520568,8,4.5 +18342,0,0.569283,1,1,0,2,4,,3,2,Beech Daly,Rd,1692903,8.394,8.963,0,13.662782,6,4.5 +23074,-1,0.125372,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,13.828,13.954,0,3.008919,5,5 +32319,0,0.131609,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.158611,0.15,4 +15789,1,0.130621,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,13.606,13.736,0,3.134906,5,5 +22706,-1,0.171148,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,13.534,13.705,0,4.107545,5,5 +31325,0,0.451413,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.833906,0.15,4 +31329,0,0.428439,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.282547,0.15,4 +32397,0,0.407472,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.779333,0.15,4 +32399,0,0.428129,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.275098,0.15,4 +15788,1,0.125085,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,13.736,13.861,0,3.002041,5,5 +23409,-1,0.12359,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,13.705,13.828,0,2.96617,5,5 +18047,0,0.023636,1,1,0,2,4,,3,2,Beech Daly,Rd,1692903,8.963,8.986,0,0.56726,6,4.5 +32508,0,0.129895,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.117474,0.15,4 +16666,1,0.120347,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,13.985,14.105,0,2.888323,5,5 +17564,0,0.022511,1,1,0,2,5,,3,2,Gulley,Rd,1643407,2.297,2.319,0,0.540257,8,4.5 +11859,-1,0.187838,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,6.044,6.232,0,4.508112,5,5 +21405,1,0.372685,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,13.055,13.427,0,8.944442,5,5 +11861,-1,0.11057,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,5.873,5.984,0,2.653671,5,5 +21727,1,0.122789,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,12.805,12.928,0,2.946946,5,5 +21996,1,0.124363,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,12.681,12.805,0,2.984717,5,5 +21511,1,0.126544,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,12.928,13.055,0,3.037061,5,5 +11860,-1,0.060495,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,5.984,6.044,0,1.451888,5,5 +17501,0,0.023435,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,3.472,3.495,0,0.562437,8,4.5 +11858,-1,0.311418,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,6.232,6.543,0,7.474042,5,5 +12542,0,0.024303,1,1,0,2,5,,3,2,Carlysle,,1578908,0.473,0.498,0,0.583277,8,4.5 +11852,-1,0.166339,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,7.563,7.729,0,3.992127,5,5 +11854,-1,0.312288,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,7.227,7.539,0,7.49492,5,5 +12093,1,0.105609,1,0,0,1,3,RSF,3,2,W US 12/N US 24,RAMP,1580010,0,0.106,0,,5,5 +13081,1,0.109951,1,0,0,1,3,RSF,3,2,S US 24/E US 12,RAMP,1579101,0,0.11,0,,5,5 +17149,1,0.024111,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,14.709,14.734,0,0.578669,5,5 +19539,1,0.080143,1,0,0,1,3,RSF,3,2,N US 24/W US 12,RAMP,1876808,0,0.08,0,,5,5 +19541,1,0.123661,1,0,0,1,3,RSF,3,2,E US 12/S US 24,RAMP,1876806,0,0.124,0,,5,5 +21512,1,0.16891,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.452,14.621,0,4.053831,5,5 +21787,1,0.225722,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.198,14.424,0,5.417327,5,5 +23162,-1,0.027386,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.677,14.704,0,0.657261,5,5 +32506,0,0.348297,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.359138,0.15,4 +32845,0,0.37443,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.986309,0.15,4 +22513,-1,0.205154,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.451,14.656,0,4.923699,5,5 +32504,0,0.180915,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.341951,0.15,4 +12706,1,0.113132,1,0,0,1,3,RSF,3,2,S US 24/W US 12,RAMP,1579104,0,0.113,0,,5,5 +19542,1,0.090453,1,0,0,1,3,RSF,3,2,W US 12/S US 24,RAMP,1876805,0,0.09,0,,5,5 +17150,1,0.02839,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,14.681,14.709,0,0.681359,5,5 +23504,-1,0.020592,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.656,14.677,0,0.494202,5,5 +11851,-1,0.04322,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,7.729,7.773,0,1.037285,5,5 +21346,1,0.040454,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.621,14.662,0,0.970903,5,5 +11855,-1,0.309085,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,6.918,7.227,0,7.418047,5,5 +21916,1,0.425754,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,13.773,14.198,0,10.218104,5,5 +11856,-1,0.125047,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,6.793,6.918,0,3.001128,5,5 +22108,1,0.095346,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,13.677,13.773,0,2.288304,5,5 +12092,1,0.134434,1,0,0,1,3,RSF,3,2,N US 24/E US 12,RAMP,1580009,0,0.134,0,,5,5 +17139,1,0.32965,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,14.757,15.086,0,7.91159,5,5 +19540,1,0.116125,1,0,0,1,3,RSF,3,2,E US 12/N US 24,RAMP,1876807,0,0.116,0,,5,5 +22580,-1,0.210516,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.724,14.935,0,5.052386,5,5 +21604,1,0.028751,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.424,14.452,0,0.690019,5,5 +11853,-1,0.023818,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,7.539,7.563,0,0.571634,5,5 +17143,1,0.022984,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,14.734,14.757,0,0.55161,5,5 +22872,-1,0.020307,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.704,14.724,0,0.487366,5,5 +11846,-1,0.405387,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.047,9.452,0,9.7293,5,5 +12074,0,0.479762,1,1,0,2,5,,3,2,Hass,Ave,1579305,1.373,1.853,0,11.514293,8,4.5 +14804,0,0.376987,3,3,1,2,3,,3,2,Ford,Rd,1595510,13.524,13.901,0,9.047686,5,5 +15741,0,0.236089,2,2,0,2,4,,3,2,Beech Daly,Rd,1596409,0.502,0.738,0,5.666125,6,4.5 +16119,0,0.376642,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,13.272,13.649,0,9.039413,6,4.5 +17493,0,0.49821,1,1,0,2,5,,3,2,Gulley,Rd,1643407,3.819,4.317,0,11.957046,8,4.5 +21564,1,0.448505,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,15.868,16.316,0,10.764125,5,5 +30880,0,0.527124,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.650986,0.15,4 +30881,0,0.49729,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.934969,0.15,4 +30884,0,0.512584,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.302021,0.15,4 +30885,0,0.378988,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.095701,0.15,4 +32324,0,0.519879,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.477093,0.15,4 +32490,0,0.365806,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.779341,0.15,4 +32501,0,0.317964,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.631136,0.15,4 +17120,0,0.122524,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,13.15,13.272,0,2.940568,6,4.5 +17502,0,0.34,1,1,0,2,5,,3,2,Gulley,Rd,1643407,2.976,3.316,0,8.159997,8,4.5 +18306,0,0.189013,1,1,0,2,5,,3,2,Avondale,Ave,1686907,5.764,5.953,0,4.536311,8,4.5 +24477,0,0.499183,1,1,0,2,5,,3,2,Beech Daly,Rd,4710028,0,0.499,0,11.980393,8,4.5 +30886,0,0.386756,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.282155,0.15,4 +18901,0,0.263685,1,1,0,2,5,,3,2,Avondale,Ave,1686907,5.448,5.711,0,6.328445,8,4.5 +18528,0,0.053161,1,1,0,2,5,,3,2,Avondale,Ave,1686907,5.711,5.764,0,1.275853,8,4.5 +14907,0,0.501696,2,2,0,2,4,,3,2,Beech Daly,Rd,1596409,0,0.502,0,12.040704,6,4.5 +16321,0,0.202057,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,12.822,13.024,0,4.849363,6,4.5 +32376,0,0.450811,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.819466,0.15,4 +16245,0,0.119816,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,13.03,13.15,0,2.875586,6,4.5 +16045,0,0.005891,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,13.024,13.03,0,0.141394,6,4.5 +17593,0,0.011477,1,1,0,2,5,,3,2,Wilson,Dr,1643301,0.988,0.999,0,0.275454,8,4.5 +17545,0,0.160281,1,1,0,2,5,,3,2,Gulley,Rd,1643407,2.816,2.976,0,3.846744,8,4.5 +17495,0,0.503427,1,1,0,2,5,,3,2,Gulley,Rd,1643407,3.316,3.819,0,12.082247,8,4.5 +12900,0,0.505344,1,1,0,2,5,,3,2,Hass,Ave,1579305,0.868,1.373,0,12.128247,8,4.5 +15204,0,0.276978,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,1.004,1.281,0,6.647475,6,4.5 +15260,0,0.250807,3,3,1,2,3,,3,2,Ford,Rd,1595510,13.023,13.273,0,6.019376,5,5 +30549,0,0.493432,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.842359,0.15,4 +30882,0,0.24951,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.988248,0.15,4 +15464,0,0.266353,2,2,0,2,4,,3,2,Beech Daly,Rd,1596409,0.738,1.004,0,6.392483,6,4.5 +14987,0,0.219567,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,1.281,1.5,0,5.269599,6,4.5 +15042,0,0.250703,3,3,1,2,3,,3,2,Ford,Rd,1595510,13.273,13.524,0,6.016866,5,5 +30879,0,0.249108,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.978599,0.15,4 +11848,-1,0.324782,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,8.224,8.549,0,7.794779,5,5 +17153,0,0.187302,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,14.022,14.209,0,4.495239,6,4.5 +21843,1,0.467265,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.966,15.433,0,11.214357,5,5 +30887,0,0.359851,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.636431,0.15,4 +32489,0,0.338419,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.122056,0.15,4 +32493,0,0.464372,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.144935,0.15,4 +32494,0,0.369742,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.873801,0.15,4 +33724,0,0.227807,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.467376,0.15,4 +11849,-1,0.127828,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,8.096,8.224,0,3.067876,5,5 +32273,0,0.351975,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.447405,0.15,4 +32495,0,0.351654,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.439685,0.15,4 +11847,-1,0.498219,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,8.549,9.047,0,11.957259,5,5 +16992,0,0.351397,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,13.649,14,0,8.433534,6,4.5 +21726,1,0.434602,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,15.433,15.868,0,10.430449,5,5 +30883,0,0.36514,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.763361,0.15,4 +32488,0,0.499692,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.992601,0.15,4 +33574,0,0.392723,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.425343,0.15,4 +16270,0,0.021442,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,14,14.022,0,0.514605,6,4.5 +33725,0,0.209074,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.017775,0.15,4 +16262,0,0.12114,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,14.209,14.33,0,2.907364,6,4.5 +32325,0,0.474492,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.387813,0.15,4 +11842,-1,0.113135,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.549,9.663,0,2.715236,5,5 +13342,1,0.121242,1,0,0,1,3,RSF,3,2,S US 24/M 153,,1579302,0,0.121,0,,5,5 +14901,1,0.063136,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,14.028,14.091,0,1.515255,5,5 +21036,1,0.370104,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,16.433,16.803,0,8.882485,5,5 +21271,-1,0.063835,0,3,0,2,3,DIV,3,2,Ford,Rd,4700214,0.127,0.191,0,1.532039,5,5 +31320,0,0.552242,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.253809,0.15,4 +32326,0,0.345407,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.289778,0.15,4 +32847,0,0.366374,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.792984,0.15,4 +11844,-1,0.06179,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.475,9.537,0,1.482957,5,5 +12283,1,0.126142,1,0,0,1,3,RSF,3,2,M 153/S US 24,RAMP,1579209,0,0.126,0,,5,5 +13354,1,0.080627,1,0,0,1,3,RSF,3,2,N US 24/M 153,,1579210,0.049,0.129,0,,5,5 +15675,1,0.028382,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,13.954,13.983,0,0.681177,5,5 +21375,-1,0.041073,0,3,0,2,3,DIV,3,2,Ford,Rd,4700214,0.024,0.065,0,0.985759,5,5 +21454,1,0.106068,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,16.316,16.422,0,2.545621,5,5 +15630,1,0.023072,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,13.901,13.924,0,0.553725,5,5 +21374,-1,0.023964,0,3,0,2,3,DIV,3,2,Ford,Rd,4700214,0,0.024,0,0.575128,5,5 +12131,1,0.032654,1,0,0,1,3,RSF,3,2,N US 24/M 153,,1579210,0.129,0.162,0,,5,5 +15329,1,0.030475,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,13.924,13.954,0,0.731391,5,5 +12144,1,0.048848,1,0,0,1,3,RSF,3,2,N US 24/M 153,,1579210,0,0.049,0,,5,5 +11845,-1,0.02299,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.452,9.475,0,0.551757,5,5 +11843,-1,0.012503,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.537,9.549,0,0.30008,5,5 +15141,1,0.02272,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,14.005,14.028,0,0.545282,5,5 +21276,-1,0.039686,0,3,0,2,3,DIV,3,2,Ford,Rd,4700214,0.065,0.105,0,0.952456,5,5 +21297,1,0.010799,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,16.422,16.433,0,0.259167,5,5 +22084,-1,0.022331,0,3,0,2,3,DIV,3,2,Ford,Rd,4700214,0.105,0.127,0,0.535951,5,5 +15389,1,0.022118,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,13.983,14.005,0,0.530822,5,5 +13297,1,0.022007,1,0,0,1,3,RSF,3,2,S US 24/M 153,,1579302,0.121,0.143,0,,5,5 +11840,-1,0.164092,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.879,10.043,0,3.938219,5,5 +11841,-1,0.216787,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.663,9.879,0,5.202883,5,5 +21995,1,0.124424,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,16.803,16.927,0,2.986181,5,5 +13283,0,0.021161,1,1,0,2,5,,3,2,Hass,Ave,1579305,1.853,1.874,0,0.507871,8,4.5 +15734,0,0.2575,3,3,1,2,3,,3,2,Ford,Rd,1595510,14.091,14.348,0,6.179994,5,5 +12175,0,0.499156,1,1,0,2,5,,3,2,Carlysle,,1578908,1.498,1.997,0,11.979734,8,4.5 +17421,1,0.493047,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,2.23,2.723,0,11.833118,5,5 +18833,1,0.421639,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,2.894,3.316,0,10.119336,5,5 +18895,0,0.305875,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,4.494,4.8,0,7.340996,8,4.5 +18991,0,0.216791,2,2,0,2,4,,3,2,Pelham,Rd,1652704,3.868,4.085,0,5.202996,6,4.5 +22521,0,0.361849,2,2,0,2,5,,2,2,Monroe,,4705943,4.396,4.758,0,8.684385,8.5,4.5 +23009,0,0.251411,2,2,0,2,5,,3,2,Monroe,,4705943,3.787,4.039,0,6.033867,8,4.5 +24005,1,0.429031,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,2.947,3.376,0,10.296752,5,5 +24007,1,0.42184,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,2.281,2.703,0,10.124155,5,5 +27403,0,0.487843,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.708224,0.15,4 +30483,0,0.09973,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.393515,0.15,4 +32278,0,0.533732,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.809568,0.15,4 +32317,0,0.081025,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.94461,0.15,4 +32477,0,0.239307,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.74337,0.15,4 +12540,0,0.500799,1,1,0,2,5,,3,2,Carlysle,,1578908,0.997,1.498,0,12.019177,8,4.5 +17491,0,0.498952,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,3.995,4.494,0,11.974849,8,4.5 +23251,0,0.37512,2,2,0,2,5,,3,2,Monroe,Rd,4705943,3.412,3.787,0,9.002892,8,4.5 +32284,0,0.509353,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.224462,0.15,4 +32366,0,0.515683,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.376398,0.15,4 +32500,0,0.188327,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.519852,0.15,4 +32364,0,0.249455,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.986914,0.15,4 +32497,0,0.18584,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.460167,0.15,4 +22665,0,0.231346,2,2,0,2,5,,3,2,Monroe,Rd,4705943,3.057,3.288,0,5.552314,8,4.5 +23418,0,0.124215,2,2,0,2,5,,3,2,Monroe,Rd,4705943,3.288,3.412,0,2.981171,8,4.5 +18832,1,0.311752,3,0,0,2,3,DV2,2,2,Outer,Dr,1662401,3.537,3.849,0,7.482056,6,5 +24009,1,0.660279,3,0,0,2,3,DV2,2,2,Outer,Dr,4710471,1.4,2.06,0,15.846693,6,5 +32476,0,0.357401,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,8.577618,0.15,4 +32484,0,0.266881,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.405154,0.15,4 +32486,0,0.476303,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.431262,0.15,4 +32629,0,0.608723,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,14.60935,0.15,4 +33818,0,0.371312,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,8.911492,0.15,4 +33976,0,0.620102,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,14.882439,0.15,4 +17130,1,0.240508,2,0,0,2,3,DIV,2,2,Michigan,Ave,1600206,15.283,15.523,0,5.772192,6,5 +18368,1,0.337374,3,0,0,2,3,DV2,2,2,Outer,Dr,1662401,3.849,4.186,0,8.096966,6,5 +22573,-1,0.238092,0,3,0,2,3,DIV,2,2,Michigan,Ave,4705565,15.25,15.488,0,5.714207,6,5 +17132,1,0.113015,2,0,0,2,3,DIV,2,2,Michigan,Ave,1600206,15.17,15.283,0,2.71235,6,5 +22864,-1,0.111393,0,3,0,2,3,DIV,2,2,Michigan,Ave,4705565,15.139,15.25,0,2.673435,6,5 +24010,0,0.132446,2,2,1,2,3,,2,2,Outer,Dr,4710471,1.268,1.4,0,3.178706,6,5 +24012,0,0.076146,2,2,1,2,3,,2,2,Outer,Dr,4710471,1.173,1.249,0,1.82751,6,5 +24011,0,0.018846,2,2,1,2,3,,2,2,Outer,Dr,4710471,1.249,1.268,0,0.45231,6,5 +17127,0,0.019548,2,2,1,2,3,,2,2,Michigan,Ave,1600206,15.523,15.543,0,0.46916,6,5 +18369,1,0.221668,3,0,0,2,3,DV2,2,2,Outer,Dr,1662401,3.316,3.537,0,5.320039,6,5 +22879,0,0.343569,2,2,0,2,5,,3,2,Monroe,,4705943,4.039,4.382,0,8.245651,8,4.5 +24008,1,0.221122,3,0,0,2,3,DV2,2,2,Outer,Dr,4710471,2.06,2.281,0,5.306938,6,5 +22662,0,0.013803,2,2,0,2,5,,2,2,Monroe,,4705943,4.382,4.396,0,0.331265,8.5,4.5 +12528,0,0.499044,1,1,0,2,5,,3,2,Carlysle,,1578908,1.997,2.496,0,11.977062,8,4.5 +17479,0,0.385135,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,4.8,5.185,0,9.243246,8,4.5 +17581,0,0.504778,2,2,0,2,4,,3,2,Pelham,Rd,1652704,3.347,3.852,0,12.11467,6,4.5 +32358,0,0.560233,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.445603,0.15,4 +32710,0,0.262819,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.307656,0.15,4 +32714,0,0.261117,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.266804,0.15,4 +32318,0,0.199787,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.794896,0.15,4 +18888,0,0.309728,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,5.185,5.494,0,7.433463,8,4.5 +18994,0,0.117656,2,2,0,2,4,,3,2,Pelham,Rd,1652704,3.23,3.347,0,2.823744,6,4.5 +12161,0,0.025223,1,1,0,2,5,,3,2,Carlysle,,1578908,2.496,2.521,0,0.605356,8,4.5 +18840,1,0.030175,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,2.2,2.23,0,0.724203,5,5 +18993,0,0.016299,2,2,0,2,4,,3,2,Pelham,Rd,1652704,3.852,3.868,0,0.39117,6,4.5 +11782,0,0.530009,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,0,0.53,0,12.720207,6,4.5 +18866,0,0.340647,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,5.112,5.452,0,8.175533,5,5 +32279,0,0.310393,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.449432,0.15,4 +18834,1,0.171547,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,2.723,2.894,0,4.117119,5,5 +19048,0,0.112813,2,2,1,2,4,,3,2,Village,Rd,1652107,0.013,0.126,0,2.707508,6,4.5 +24006,1,0.244557,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,2.703,2.947,0,5.869374,5,5 +18580,0,0.013352,1,1,1,2,4,,3,2,Village,Rd,1652107,0,0.013,0,0.320448,6,4.5 +17467,0,0.018058,2,2,1,2,4,,3,2,Rotunda,Dr,1646520,0,0.018,0,0.433385,6,4.5 +23591,0,0.407016,2,2,0,2,5,,2,2,Monroe,,4705943,4.758,5.165,0,9.768394,8.5,4.5 +17667,0,0.15064,1,1,0,2,5,,2,2,Beech,Ave,1651105,1.053,1.203,0,3.615371,8.5,4.5 +23565,0,0.031458,2,2,0,2,5,,2,2,Monroe,,4706600,0.433,0.465,0,0.754991,8.5,4.5 +32277,0,0.32647,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.835278,0.15,4 +15097,1,0.172923,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,15.228,15.401,0,4.150144,5,5 +16253,0,0.492324,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,10.337,10.829,0,11.815782,6,4.5 +17081,0,0.105873,2,2,1,2,3,,2,2,Michigan,Ave,1600206,15.995,16.101,0,2.540948,6,5 +17569,0,0.257574,1,1,0,2,5,,3,2,Cherry Hill,,1653104,0.19,0.447,0,6.181766,8,4.5 +18618,0,0.690622,2,2,0,2,5,,3,2,Golfview,Dr,1649401,0.601,1.292,0,16.574932,8,4.5 +19080,0,0.24356,1,1,0,2,5,,2,2,Garrison,,1651109,0.031,0.274,0,5.845432,8.5,4.5 +19155,0,0.133489,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,14.8,14.933,0,3.203736,5,5 +20009,-1,0.342197,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,0.904,1.246,0,8.212739,5,5 +22851,1,0.27238,2,0,0,2,3,DV2,3,2,Outer,Dr,4706543,1.712,1.985,0,6.537111,5,5 +23133,-1,0.27736,0,2,0,2,3,DV2,3,2,Outer,Dr,4706544,0.082,0.359,0,6.656643,5,5 +32271,0,0.607123,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.570962,0.15,4 +32480,0,0.053912,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,1.293884,0.15,4 +33786,0,0.645036,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.480859,0.15,4 +33978,0,0.374576,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.98983,0.15,4 +17108,0,0.225007,2,2,1,2,3,,2,2,Michigan,Ave,1600206,15.601,15.826,0,5.400173,6,5 +17131,0,0.394989,1,1,1,2,5,,3,2,Cherry Hill,Rd,1607409,14.57,14.965,0,9.479734,8,4.5 +18624,-1,0.549145,0,2,0,2,3,DV2,3,2,Outer,Dr,1649401,0.038,0.587,0,13.179471,5,5 +22707,1,0.0462,2,0,0,2,5,DV2,3,2,Military,,4706543,1.182,1.228,0,1.108793,8,4.5 +23132,1,0.475738,2,0,0,2,5,DV2,3,2,Military,,4706543,1.237,1.712,0,11.417707,8,4.5 +23219,-1,0.370032,0,2,0,2,5,DV2,3,2,Military,,4706304,0.07,0.44,0,8.880767,8,4.5 +23711,-1,0.048034,0,2,0,2,5,DV2,3,2,Military,,4706304,0,0.048,0,1.152814,8,4.5 +24017,-1,0.541778,0,2,0,2,3,DV2,3,2,Outer,Dr,4710471,0.025,0.566,0,13.002674,5,5 +24192,0,0.230422,1,1,0,2,5,,2,2,Garrison,,4711176,0,0.23,0,5.530117,8.5,4.5 +24015,0,0.51423,2,2,1,2,3,,3,2,Outer,Dr,4710471,0.603,1.117,0,12.34152,5,5 +18630,-1,0.038102,0,2,0,2,3,DV2,3,2,Outer,Dr,1649401,0,0.038,0,0.914441,5,5 +24016,-1,0.037102,0,2,0,2,3,DV2,3,2,Outer,Dr,4710471,0.566,0.603,0,0.890449,5,5 +16256,0,0.012019,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,14.558,14.57,0,0.288445,6,4.5 +15836,0,0.081948,1,1,0,2,5,,2,2,Haigh,,1600004,0.058,0.14,0,1.966747,8.5,4.5 +32481,0,0.068502,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,1.644059,0.15,4 +23564,-1,0.067883,0,2,0,2,5,DV2,3,2,Military,,4706544,0,0.068,0,1.629186,8,4.5 +23377,-1,0.014125,0,2,0,2,5,DV2,3,2,Outer,Dr,4706544,0.068,0.082,0,0.338991,8,4.5 +24019,-1,0.024619,0,2,0,2,3,DV2,3,2,Outer,Dr,4710471,0,0.025,0,0.590844,5,5 +18622,-1,0.014336,0,2,0,2,5,DV2,3,2,Golfview,Dr,1649401,0.587,0.601,0,0.34407,8,4.5 +19081,-1,0.030538,0,1,0,2,5,,2,2,Garrison,,1651109,0,0.031,0,0.732916,8.5,4.5 +22920,0,0.382925,2,2,0,2,5,,3,2,Military,,4706543,0.799,1.182,0,9.190209,8,4.5 +23051,0,0.075728,2,2,0,2,5,,2,2,Military,,4706543,0.714,0.789,0,1.817464,8.5,4.5 +24200,1,0.029715,1,0,0,2,5,,2,2,Garrison/Military Cutoff,,4711175,0,0.03,0,0.713159,8.5,4.5 +23052,0,0.009637,2,2,0,2,5,,2,2,Military,,4706543,0.789,0.799,0,0.231285,8.5,4.5 +17086,0,0.169495,2,2,1,2,3,,2,2,Michigan,Ave,1600206,15.826,15.995,0,4.067872,6,5 +33977,0,0.149468,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,3.587233,0.15,4 +18982,0,0.150885,1,1,0,2,5,,3,2,Cherry Hill,,1653104,0.039,0.19,0,3.621247,8,4.5 +30888,0,0.297634,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.143207,0.15,4 +17570,1,0.039125,1,0,0,2,5,,3,2,Cherry Hill,,1653104,0,0.039,0,0.939004,8,4.5 +22558,-1,0.040166,0,1,0,2,5,,3,2,Cherry Hill,,4706303,0.035,0.075,0,0.963994,8,4.5 +16239,-1,0.02705,0,1,0,2,5,,3,2,Cherry Hill,Rd,1607409,14.965,14.992,0,0.649194,8,4.5 +22161,1,0.054584,1,0,0,2,5,,3,2,Cherry Hill,,4704427,0,0.055,0,1.310023,8,4.5 +23134,-1,0.026639,0,1,0,2,5,,3,2,Cherry Hill,,4706303,0,0.027,0,0.639338,8,4.5 +23378,-1,0.012571,0,2,0,2,5,DV2,3,2,Military,,4706304,0.057,0.07,0,0.301704,8,4.5 +17116,-1,0.025403,0,1,0,2,5,,3,2,S Military/Cherry Hill Cutoff,Rd,1607409,14.992,15.017,0,0.609676,8,4.5 +22160,1,0.006512,1,0,0,2,5,,3,2,Cherry Hill,,4704427,0.055,0.061,0,0.156281,8,4.5 +22553,1,0.008838,2,0,0,2,5,DV2,3,2,Military,,4706543,1.228,1.237,0,0.212114,8,4.5 +22852,-1,0.008351,0,1,0,2,5,,3,2,Cherry Hill,,4706303,0.027,0.035,0,0.200413,8,4.5 +23643,-1,0.00906,0,2,0,2,5,DV2,3,2,Military,,4706304,0.048,0.057,0,0.217435,8,4.5 +15332,1,0.637397,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,14.591,15.228,0,15.297528,5,5 +15539,0,0.419868,2,2,1,2,4,,3,2,Outer,Dr,1596803,0.052,0.472,0,10.07682,6,4.5 +20010,-1,0.662786,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,0.242,0.904,0,15.906871,5,5 +32314,0,0.503681,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.088337,0.15,4 +32315,0,0.483566,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.605596,0.15,4 +32375,0,0.663198,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.916743,0.15,4 +22557,1,0.376191,2,0,0,2,3,DV2,3,2,Outer,Dr,4706543,1.985,2.361,0,9.028581,5,5 +22987,-1,0.383137,0,2,0,2,3,DV2,3,2,Outer,Dr,4706544,0.359,0.742,0,9.195295,5,5 +14567,1,0.035463,4,0,0,2,4,DV2,3,2,Outer,Dr,1596803,0.017,0.052,0,0.85111,6,4.5 +15632,1,0.013791,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,14.577,14.591,0,0.33099,5,5 +20011,-1,0.012308,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,0.229,0.242,0,0.295384,5,5 +22782,-1,0.016718,0,3,0,2,3,DV2,3,2,Outer,Dr,4706544,0.742,0.759,0,0.401241,5,5 +22637,-1,0.036209,0,4,0,2,4,DV2,3,2,Outer,Dr,4706544,0.759,0.795,0,0.869005,6,4.5 +14988,1,0.01673,3,0,0,2,3,DV2,3,2,Outer,Dr,1596803,0,0.017,0,0.401517,5,5 +15264,0,0.096439,2,2,1,2,4,,3,2,Outer,Dr,1596803,0.472,0.568,0,2.31453,6,4.5 +18536,-1,0.03261,0,1,0,2,5,,3,2,Golfview,Dr,1649401,1.292,1.324,0,0.782631,8,4.5 +32316,0,0.25121,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.029044,0.15,4 +32313,0,0.133636,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.207259,0.15,4 +15833,0,0.266354,1,1,0,2,5,,2,2,Brady,Rd,1600102,0.208,0.474,0,6.392497,8.5,4.5 +17054,0,0.169498,2,2,0,2,3,,3,2,Michigan,Ave,1600206,16.423,16.592,0,4.067963,5,5 +32274,0,0.290975,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.983405,0.15,4 +15835,0,0.076237,1,1,0,2,5,,3,2,Brady,Rd,1600102,0.05,0.126,0,1.829692,8,4.5 +17072,0,0.068191,2,2,1,2,3,,2,2,Michigan,Ave,1600206,16.209,16.277,0,1.636584,6,5 +17664,0,0.069104,1,1,0,2,5,,2,2,Garrison,,1651109,0.382,0.451,0,1.658487,8.5,4.5 +18809,0,0.077078,1,1,0,2,5,,2,2,Oakwood,Blvd,1648503,5.783,5.86,0,1.849882,8.5,4.5 +19076,0,0.145042,1,1,0,2,5,,3,2,Garrison,,1651109,0.451,0.596,0,3.480998,8,4.5 +17076,0,0.107891,2,2,1,2,3,,2,2,Michigan,Ave,1600206,16.101,16.209,0,2.589391,6,5 +18613,0,0.108155,1,1,0,2,5,,2,2,Garrison,,1651109,0.274,0.382,0,2.595713,8.5,4.5 +23709,0,0.076992,1,1,0,2,5,,2,2,Monroe,,4706600,0.082,0.159,0,1.847819,8.5,4.5 +17065,0,0.146117,2,2,1,2,3,,3,2,Michigan,Ave,1600206,16.277,16.423,0,3.506797,5,5 +18827,0,0.200878,2,2,1,2,3,,2,2,Oakwood,Blvd,1648503,5.582,5.783,0,4.821081,6,5 +15834,0,0.081571,1,1,0,2,5,,3,2,Brady,Rd,1600102,0.126,0.208,0,1.957693,8,4.5 +18981,0,0.130937,1,1,0,2,5,,3,2,Cherry Hill,,1653104,0.447,0.578,0,3.142483,8,4.5 +32275,0,0.099225,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.381389,0.15,4 +15039,1,0.293293,1,0,0,1,3,RSF,3,2,E M 153/Evergreen,RAMP,1596905,0,0.293,0,,5,5 +15458,1,0.229643,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,15.719,15.948,0,5.511441,5,5 +15679,1,0.086948,2,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,1.426,1.513,0,2.086755,5,5 +15735,1,0.090685,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,15.628,15.719,0,2.176448,5,5 +18851,1,0.245604,1,0,0,2,3,,3,2,Edward N Hines,Dr,1689409,14.933,15.179,0,5.894497,5,5 +19264,-1,0.085888,0,2,0,2,3,DIV,3,2,Evergreen,Rd,1804103,1.427,1.513,0,2.061318,5,5 +20007,-1,0.124719,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,1.291,1.416,0,2.99325,5,5 +23048,1,0.240004,1,0,0,1,3,RSF,3,2,N Evergreen/E M 153,RAMP,4706539,0,0.24,0,,5,5 +23049,1,0.236916,1,0,0,1,3,RSF,3,2,S Evergreen/E M 153,RAMP,4706540,0,0.237,0,,5,5 +14849,1,0.227172,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,15.401,15.628,0,5.452131,5,5 +15529,1,0.196555,1,0,0,1,3,RSF,3,2,Edward N Hines/Ford,RAMP,1596903,0,0.196,0,,5,5 +15256,1,0.245625,1,0,0,1,3,RSF,3,2,Ford/Edward N Hines,RAMP,1596904,0,0.246,0,,5,5 +20008,-1,0.044822,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,1.246,1.291,0,1.075722,5,5 +14979,1,0.329759,3,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,1.012,1.341,0,7.914211,5,5 +19266,-1,0.40444,0,3,0,2,3,DIV,3,2,Evergreen,Rd,1804103,0.968,1.372,0,9.706565,5,5 +15196,1,0.059734,2,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,0.952,1.012,0,1.433624,5,5 +14889,1,0.049496,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0,0.049,0,1.187908,6,4.5 +14848,1,0.085099,3,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,1.341,1.426,0,2.042369,5,5 +14803,1,0.045955,1,0,0,1,3,RSF,3,2,E M 153/Evergreen,RAMP,1596905,0.293,0.339,0,,5,5 +19265,-1,0.054685,0,3,0,2,3,DIV,3,2,Evergreen,,1804103,1.372,1.427,0,1.312447,5,5 +14905,0,0.072758,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,1.725,1.798,0,1.746201,5,5 +15145,1,0.148904,2,0,0,2,3,DIV,3,1,Evergreen,Rd,1596908,1.576,1.725,0,3.573699,5,5 +15199,1,0.211597,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,15.948,16.16,0,5.078323,5,5 +15460,1,0.054805,1,0,0,1,3,RSF,3,2,W M 153/Evergreen,RAMP,1597001,0.215,0.269,0,,5,5 +20006,-1,0.227024,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,1.416,1.643,0,5.448568,5,5 +19262,-1,0.149102,0,2,0,2,3,DIV,3,2,Evergreen,Rd,1804103,1.564,1.713,0,3.578437,5,5 +23050,1,0.217523,1,0,0,1,3,RSF,3,2,S Evergreen/W M 153,RAMP,4706541,0,0.218,0,,5,5 +19263,-1,0.051175,0,2,0,2,3,DIV,3,2,Evergreen,Rd,1804103,1.513,1.564,0,1.228192,5,5 +12040,0,0.126278,1,1,0,2,4,,3,1,Ann Arbor,Trl,1582602,0,0.126,0,3.030682,6,4.5 +15261,0,0.192714,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,1.798,1.991,0,4.625145,5,5 +15737,1,0.214656,1,0,0,1,3,RSF,3,2,W M 153/Evergreen,RAMP,1597001,0,0.215,0,,5,5 +20005,-1,0.17709,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,1.643,1.82,0,4.250167,5,5 +14903,1,0.186614,1,0,0,1,3,RSF,3,2,N Evergreen/W M 153,RAMP,1596909,0,0.187,0,,5,5 +15393,1,0.063024,2,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,1.513,1.576,0,1.512566,5,5 +1885,-1,0.425871,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,1.236,1.662,0,10.220904,5,5 +3663,0,0.453468,1,1,0,2,5,,4,3,Shiawassee,,686405,0,0.453,0,10.88323,5.8,4.5 +3749,0,0.396557,1,1,1,2,4,,4,3,9 Mile,Rd,684404,0.995,1.392,0,9.517375,4.5,4.5 +11820,-1,0.391883,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,14.597,14.989,0,9.405202,5,5 +12496,0,0.12462,2,2,0,2,4,,3,1,Outer,Dr,1582410,0.181,0.306,0,2.990871,6,4.5 +13036,0,0.492693,1,1,0,2,4,,3,2,Chicago,St,1579408,0.458,0.95,0,11.824642,6,4.5 +13088,0,0.492515,2,2,0,2,4,,3,2,5 Mile,Rd,1579605,0.486,0.978,0,11.820355,6,4.5 +13154,0,0.374467,1,1,0,2,4,,3,1,Lahser,Rd,1582205,1.269,1.643,0,8.987219,6,4.5 +13236,0,0.247645,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.978,3.225,0,5.943479,6,4.5 +15392,0,0.125413,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,6.466,6.591,0,3.009917,5,5 +16499,0,0.522097,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,3.456,3.978,0,12.530322,6,4.5 +16504,0,0.473733,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,2.982,3.456,0,11.369583,6,4.5 +16655,-1,0.338323,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,1.371,1.709,0,8.119758,5,5 +16725,1,0.249573,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,1.419,1.669,0,5.989749,5,5 +16776,0,0.491221,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,12.802,13.293,0,11.789311,5,5 +16873,-1,0.435088,0,4,0,1,1,,3,2,W I 96,,1606503,7.383,7.818,0,,0.58,7 +17005,1,0.579841,4,0,0,1,1,,3,2,E I 96,,1606201,7.503,8.082,0,,0.58,7 +17148,0,1.029288,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,6.408,7.437,0,24.702919,6,4.5 +17589,0,0.372181,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,6.96,7.332,0,8.932338,5,5 +18111,0,0.494068,2,2,0,2,4,,3,2,Joy,Rd,1677810,3.49,3.984,0,11.857625,6,4.5 +18131,0,0.500826,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,19.414,19.915,0,12.019823,5,5 +18451,0,0.473375,2,2,0,2,3,,3,2,Inkster,Rd,1674404,20.108,20.581,0,11.361002,5,5 +18962,0,1.762103,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,11.103,12.864,0,42.29048,5,5 +19161,0,0.255646,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,13.022,13.277,0,6.1355,5,5 +19730,1,0.314326,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,1.211,1.525,0,7.543819,5,5 +21413,0,0.499065,2,2,1,2,3,,3,2,Merriman,Rd,4700000,12.6,13.098,0,11.977555,5,5 +21994,1,0.368081,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,21.482,21.85,0,8.833935,5,5 +22906,-1,0.069603,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,7.881,7.95,0,1.67047,8,4.5 +23463,1,0.084226,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,7.849,7.933,0,2.021421,8,4.5 +24029,0,0.455594,2,2,1,2,3,,3,2,Warren,Rd,4710470,12.944,13.4,0,10.934253,5,5 +26230,0,0.504296,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.103111,0.15,4 +28068,0,0.510069,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.241655,0.15,4 +30562,0,0.501957,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.046975,0.15,4 +30569,0,0.498645,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.967479,0.15,4 +30892,0,0.255837,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.140094,0.15,4 +30893,0,0.10264,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.463364,0.15,4 +30899,0,0.476702,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.440854,0.15,4 +30902,0,0.245838,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.900123,0.15,4 +30904,0,0.531408,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.753802,0.15,4 +32515,0,0.494822,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.875731,0.15,4 +32516,0,0.473433,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.362397,0.15,4 +32518,0,0.477026,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.448634,0.15,4 +32525,0,0.409772,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.834523,0.15,4 +32526,0,0.488027,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.712637,0.15,4 +32530,0,0.489148,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.739543,0.15,4 +32531,0,0.500506,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.012142,0.15,4 +32540,0,0.499387,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.985281,0.15,4 +32673,0,0.250594,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.014259,0.15,4 +33588,0,0.487753,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.706074,0.15,4 +33719,0,0.5583,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.399196,0.15,4 +33918,0,0.347333,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.335999,0.15,4 +16303,0,0.484479,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,5.376,5.861,0,11.627486,6,4.5 +16614,1,0.206393,1,0,0,1,1,RON,3,2,Middlebelt/E I 96,RAMP,1606401,0,0.206,0,,1.09,4 +16700,1,0.574037,4,0,0,1,1,,3,2,E I 96,,1606201,5.582,6.155,0,,0.58,7 +16834,1,0.130562,1,0,0,1,1,ROF,3,2,W I 96/Middlebelt,RAMP,1606601,0,0.131,0,,2.24,5 +16860,0,0.377137,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,11.334,11.711,0,9.051281,5,5 +16865,0,0.333526,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,11.001,11.334,0,8.004616,5,5 +16880,-1,0.538923,0,4,0,1,1,,3,2,W I 96,,1606503,5.313,5.851,0,,0.58,7 +16937,0,0.499571,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,6.944,7.443,0,11.9897,6,4.5 +17092,0,0.214217,1,1,0,2,5,,3,2,Harrison,Rd,1604906,0.784,0.999,0,5.141208,8,4.5 +17472,0,0.338265,1,1,1,2,5,,3,2,Chicago,Rd,1697001,0.501,0.839,0,8.118356,8,4.5 +17705,0,0.080252,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,17.334,17.414,0,1.926044,5,5 +18007,0,0.283889,2,2,0,2,4,,3,2,Joy,Rd,1677810,2.033,2.317,0,6.813339,6,4.5 +18135,0,0.179426,2,2,1,2,3,,3,2,Inkster,Rd,1674404,17.946,18.125,0,4.306228,5,5 +18158,0,1.239378,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,8.931,10.17,0,29.745083,5,5 +18990,0,0.499054,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,2.251,2.75,0,11.977305,8,4.5 +21796,0,0.263943,2,2,1,2,3,,3,2,Merriman,Rd,4700000,10.6,10.864,0,6.334639,5,5 +23033,-1,0.246767,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,6.094,6.341,0,5.922418,8,4.5 +23490,1,0.279911,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,6.044,6.324,0,6.717875,8,4.5 +24032,0,0.498263,2,2,1,2,3,,3,2,Warren,Rd,4710470,11.412,11.91,0,11.958317,5,5 +32520,0,0.253353,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.080478,0.15,4 +32545,0,0.502141,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.051384,0.15,4 +32549,0,0.352438,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.45852,0.15,4 +32564,0,0.499366,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.984785,0.15,4 +32565,0,0.550549,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.213182,0.15,4 +32573,0,0.298401,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.161625,0.15,4 +33581,0,0.537972,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.911335,0.15,4 +33582,0,0.459756,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.034136,0.15,4 +33583,0,0.531112,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.746697,0.15,4 +33722,0,0.518471,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.443305,0.15,4 +33723,0,0.477963,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.471121,0.15,4 +16867,0,0.657699,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,10.343,11.001,0,15.784776,5,5 +17019,0,0.525968,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,4.388,4.914,0,12.623227,6,4.5 +18550,0,0.3332,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,16.083,16.416,0,7.996792,5,5 +18591,0,0.485743,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,8.445,8.931,0,11.65784,5,5 +18893,0,0.490466,1,1,0,2,4,,3,2,Joy,Rd,1677810,1.037,1.527,0,11.771181,6,4.5 +22013,0,0.241974,2,2,1,2,3,,3,2,Merriman,Rd,4700000,9.361,9.603,0,5.807366,5,5 +24035,0,0.536411,2,2,1,2,3,,3,2,Warren,Rd,4710470,10.299,10.835,0,12.873875,5,5 +30567,0,0.356904,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.565686,0.15,4 +31314,0,0.338708,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.128994,0.15,4 +32581,0,0.496769,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.922448,0.15,4 +32582,0,0.258391,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.201385,0.15,4 +33586,0,0.498373,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.960943,0.15,4 +33688,0,0.418754,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.050086,0.15,4 +16200,0,0.504004,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,3.884,4.388,0,12.096086,6,4.5 +21464,0,0.28714,2,2,0,2,3,,3,2,Merriman,Rd,4700000,8.8,9.087,0,6.89136,5,5 +24036,0,0.255981,2,2,1,2,3,,3,2,Warren,Rd,4710470,10.043,10.299,0,6.143555,5,5 +31316,0,0.527607,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.662569,0.15,4 +24037,0,0.094152,2,2,1,2,3,,3,2,Warren,Rd,4710470,9.949,10.043,0,2.25965,5,5 +31317,0,0.173408,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.161781,0.15,4 +18770,0,0.145633,1,1,0,2,5,,3,2,Hawthorn,Dr,1684904,0,0.146,0,3.495194,8,4.5 +21929,0,0.225779,2,2,0,2,3,,3,2,Merriman,Rd,4700000,8.515,8.74,0,5.418684,5,5 +21678,0,0.05938,2,2,0,2,3,,3,2,Merriman,Rd,4700000,8.74,8.8,0,1.425116,5,5 +21254,0,0.274294,2,2,1,2,3,,3,2,Merriman,Rd,4700000,9.087,9.361,0,6.583061,5,5 +17489,0,0.135938,2,2,1,2,4,,3,2,Joy,Rd,1677810,0.901,1.037,0,3.262506,6,4.5 +21521,0,0.276714,2,2,1,2,3,,3,2,Merriman,Rd,4700000,9.824,10.101,0,6.641147,5,5 +31306,0,0.499583,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.989984,0.15,4 +17915,0,0.360472,1,1,0,2,4,,3,2,Joy,Rd,1677810,0.54,0.901,0,8.65132,6,4.5 +31313,0,0.248196,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.956699,0.15,4 +21734,0,0.221319,2,2,1,2,3,,3,2,Merriman,Rd,4700000,9.603,9.824,0,5.311645,5,5 +22064,0,0.333156,2,2,1,2,3,,3,2,Merriman,Rd,4700000,10.267,10.6,0,7.995742,5,5 +21306,0,0.166576,2,2,1,2,3,,3,2,Merriman,Rd,4700000,10.101,10.267,0,3.997829,5,5 +16622,0,0.462785,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,4.914,5.376,0,11.106829,6,4.5 +18036,0,0.378051,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,15.398,15.776,0,9.073216,5,5 +24033,0,0.332625,2,2,1,2,3,,3,2,Warren,Rd,4710470,11.08,11.412,0,7.982992,5,5 +30565,0,0.594939,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.278543,0.15,4 +32543,0,0.367937,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.830486,0.15,4 +32583,0,0.501096,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.026293,0.15,4 +24034,0,0.244248,2,2,1,2,3,,3,2,Warren,Rd,4710470,10.835,11.08,0,5.861944,5,5 +30566,0,0.224637,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.391278,0.15,4 +32584,0,0.26034,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.248164,0.15,4 +19025,0,0.242871,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,15.155,15.398,0,5.828912,5,5 +19022,0,0.18715,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,15.895,16.083,0,4.491599,5,5 +17612,0,0.119905,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,15.776,15.895,0,2.877722,5,5 +17610,0,0.232299,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,16.628,16.86,0,5.57518,5,5 +18422,0,0.506435,1,1,0,2,4,,3,2,Joy,Rd,1677810,1.527,2.033,0,12.154429,6,4.5 +32574,0,0.288265,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.918358,0.15,4 +32577,0,0.57743,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.85831,0.15,4 +32578,0,0.4974,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.937594,0.15,4 +32580,0,0.22419,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.380557,0.15,4 +32575,0,0.130001,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.120021,0.15,4 +18133,0,0.212465,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,16.416,16.628,0,5.099156,5,5 +18132,0,0.282832,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,17.051,17.334,0,6.78797,5,5 +18549,0,0.13648,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,16.914,17.051,0,3.275516,5,5 +19021,0,0.054144,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,16.86,16.914,0,1.299465,5,5 +16065,0,0.499572,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,5.944,6.443,0,11.989738,6,4.5 +16590,-1,0.472025,0,4,0,1,1,,3,2,W I 96,,1606503,4.841,5.313,0,,0.58,7 +17012,1,0.465829,4,0,0,1,1,,3,2,E I 96,,1606201,5.116,5.582,0,,0.58,7 +17672,0,0.43552,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,1.536,1.972,0,10.452487,8,4.5 +18548,0,0.234337,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,18.429,18.663,0,5.624083,5,5 +21852,0,0.485512,2,2,1,2,3,,3,2,Merriman,Rd,4700000,11.614,12.1,0,11.652288,5,5 +23040,-1,0.392685,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,5.085,5.478,0,9.42444,8,4.5 +23610,1,0.602933,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,5.045,5.648,0,14.470387,8,4.5 +32570,0,0.498341,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.960184,0.15,4 +32588,0,0.475842,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.420202,0.15,4 +32590,0,0.501311,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.031458,0.15,4 +33930,0,0.249515,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.98835,0.15,4 +16881,-1,0.485859,0,4,0,1,1,,3,2,W I 96,,1606503,4.355,4.841,0,,0.58,7 +17014,1,0.528832,4,0,0,1,1,,3,2,E I 96,,1606201,4.587,5.116,0,,0.58,7 +21572,0,0.448668,2,2,1,2,3,,3,2,Merriman,Rd,4700000,10.864,11.313,0,10.768041,5,5 +23076,-1,0.079254,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,4.897,4.976,0,1.902091,8,4.5 +23620,1,0.096865,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,4.862,4.959,0,2.324753,8,4.5 +16559,1,0.171757,1,0,0,1,1,RON,3,2,Merriman/W I 96,RAMP,1606508,0,0.172,0,,1.09,4 +16916,1,0.18429,1,0,0,1,1,ROF,3,2,E I 96/Merriman,RAMP,1606306,0,0.184,0,,2.24,5 +16615,1,0.165252,1,0,0,1,1,RON,3,2,Merriman/E I 96,RAMP,1606307,0,0.165,0,,1.09,4 +16835,1,0.129731,1,0,0,1,1,ROF,3,2,W I 96/Merriman,RAMP,1606509,0,0.13,0,,2.24,5 +21353,0,0.242068,2,2,1,2,3,,3,2,Merriman,Rd,4700000,11.313,11.555,0,5.809622,5,5 +22118,0,0.059845,2,2,1,2,3,,3,2,Merriman,Rd,4700000,11.555,11.614,0,1.436275,5,5 +23042,-1,0.109365,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,4.976,5.085,0,2.624757,8,4.5 +23618,1,0.086098,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,4.959,5.045,0,2.066347,8,4.5 +17908,0,0.288677,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,1.248,1.536,0,6.928244,8,4.5 +21610,0,0.500028,2,2,1,2,3,,3,2,Merriman,Rd,4700000,12.1,12.6,0,12.000669,5,5 +18186,0,0.305553,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,0.942,1.248,0,7.33328,8,4.5 +16941,0,0.200888,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,5.743,5.944,0,4.821319,6,4.5 +16557,1,0.202301,1,0,0,1,1,RON,3,2,Middlebelt/W I 96,RAMP,1606510,0,0.202,0,,1.09,4 +16915,1,0.186414,1,0,0,1,1,ROF,3,2,E I 96/Middlebelt,RAMP,1606310,0,0.186,0,,2.24,5 +18034,0,0.281778,3,3,1,2,3,,3,2,Middle Belt,Rd,1674403,17.89,18.172,0,6.76266,5,5 +23038,-1,0.218316,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,5.667,5.885,0,5.23959,8,4.5 +23580,1,0.211423,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,5.648,5.859,0,5.074143,8,4.5 +32562,0,0.500599,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.014385,0.15,4 +32571,0,0.547183,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.132397,0.15,4 +23039,-1,0.189084,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,5.478,5.667,0,4.538023,8,4.5 +31769,0,0.330598,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.934353,0.15,4 +32589,0,0.28671,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.881036,0.15,4 +18448,0,0.476749,3,3,1,2,3,,3,2,Middle Belt,Rd,1674403,17.414,17.89,0,11.441983,5,5 +17609,0,0.196221,3,3,1,2,3,,3,2,Middle Belt,Rd,1674403,18.172,18.368,0,4.709307,5,5 +23034,-1,0.112603,0,4,0,2,5,,3,2,Schoolcraft,Rd,4705258,5.981,6.094,0,2.702482,8,4.5 +23509,1,0.080082,4,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,5.964,6.044,0,1.921959,8,4.5 +19020,0,0.060621,3,3,1,2,3,,3,2,Middle Belt,Rd,1674403,18.368,18.429,0,1.454912,5,5 +23037,-1,0.096349,0,4,0,2,5,,3,2,Schoolcraft,Rd,4705258,5.885,5.981,0,2.312374,8,4.5 +23510,1,0.104862,4,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,5.859,5.964,0,2.516697,8,4.5 +16939,0,0.500864,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,6.443,6.944,0,12.02074,6,4.5 +19019,0,0.250074,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,18.914,19.164,0,6.001775,5,5 +19184,0,0.278941,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,1.972,2.251,0,6.694587,8,4.5 +33931,0,0.511993,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.287829,0.15,4 +32586,0,0.254254,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.102105,0.15,4 +17608,0,0.251241,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,18.663,18.914,0,6.029779,5,5 +18547,0,0.249855,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,19.164,19.414,0,5.996531,5,5 +13125,0,0.028305,1,1,0,2,4,,3,2,Chicago,St,1579408,0,0.028,0,0.679309,6,4.5 +16661,0,0.547808,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,5.861,6.408,0,13.147398,6,4.5 +17602,0,0.19289,2,2,1,2,3,,3,2,Inkster,Rd,1674404,16.821,17.014,0,4.629353,5,5 +17877,0,0.647807,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,10.17,10.817,0,15.547377,5,5 +18522,0,0.459435,2,2,0,2,4,,3,2,Joy,Rd,1677810,3.031,3.49,0,11.026448,6,4.5 +22656,1,0.050111,1,0,0,1,3,,3,2,N Inkster/E Chicago,,4706062,0,0.05,0,,5,5 +22657,1,0.039534,1,0,0,1,3,,3,2,W Chicago/N Inkster,,4706063,0,0.04,0,,5,5 +24031,0,0.496,2,2,1,2,3,,3,2,Warren,Rd,4710470,11.91,12.406,0,11.903997,5,5 +30889,0,0.565593,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.574222,0.15,4 +30896,0,0.4725,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.339991,0.15,4 +32541,0,0.206749,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.961981,0.15,4 +32542,0,0.46443,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.146317,0.15,4 +32548,0,0.492586,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.822075,0.15,4 +32644,0,0.477061,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.449458,0.15,4 +32547,0,0.325121,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.802904,0.15,4 +30559,0,0.243811,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.851458,0.15,4 +32546,0,0.144102,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.458437,0.15,4 +32544,0,0.167718,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.02522,0.15,4 +17107,0,0.222296,1,1,0,2,5,,3,2,Harrison,Rd,1604906,0.275,0.498,0,5.335115,8,4.5 +18432,0,0.220507,2,2,0,2,3,,3,2,Inkster,Rd,1674404,17.368,17.588,0,5.292166,5,5 +18875,0,0.473453,1,1,1,2,5,,3,2,Chicago,Rd,1697001,1,1.473,0,11.362877,8,4.5 +18998,0,0.502273,2,2,0,2,4,,3,2,Joy,Rd,1677810,2.529,3.031,0,12.054548,6,4.5 +32556,0,0.499736,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.993659,0.15,4 +33585,0,0.507148,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.171563,0.15,4 +16227,0,0.275473,1,1,0,2,5,,3,2,Harrison,Rd,1604906,0,0.275,0,6.611341,8,4.5 +17583,0,0.211962,2,2,0,2,4,,3,2,Joy,Rd,1677810,2.317,2.529,0,5.087091,6,4.5 +32555,0,0.328828,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.891863,0.15,4 +32554,0,0.026569,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.637661,0.15,4 +16211,0,0.286848,1,1,0,2,5,,3,2,Harrison,Rd,1604906,0.498,0.784,0,6.884351,8,4.5 +19183,0,0.160921,1,1,1,2,5,,3,2,Chicago,Rd,1697001,0.839,1,0,3.862096,8,4.5 +32551,0,0.299414,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.185943,0.15,4 +32550,0,0.035416,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.849973,0.15,4 +18906,0,0.258351,2,2,0,2,3,,3,2,Inkster,Rd,1674404,17.11,17.368,0,6.200423,5,5 +17500,0,0.095597,2,2,1,2,3,,3,2,Inkster,Rd,1674404,17.014,17.11,0,2.294323,5,5 +18552,0,0.298491,2,2,1,2,3,,3,2,Inkster,Rd,1674404,17.648,17.946,0,7.163779,5,5 +17598,0,0.02976,2,2,1,2,3,,3,2,Inkster,Rd,1674404,17.618,17.648,0,0.714235,5,5 +22658,1,0.050126,1,0,0,1,3,,3,2,S Inkster/W Chicago,,4706064,0,0.05,0,,5,5 +18616,0,0.0288,1,1,1,2,5,,3,2,Chicago,Rd,1697001,1.473,1.502,0,0.691198,8,4.5 +22659,1,0.040274,1,0,0,1,3,,3,2,E Chicago/S Inkster,,4706065,0,0.04,0,,5,5 +18022,0,0.029563,2,2,0,2,3,,3,2,Inkster,Rd,1674404,17.588,17.618,0,0.70951,5,5 +18913,0,0.336241,2,2,0,2,3,,3,2,Inkster,Rd,1674404,16.106,16.442,0,8.069778,5,5 +24030,0,0.538398,2,2,1,2,3,,3,2,Warren,Rd,4710470,12.406,12.944,0,12.921544,5,5 +30560,0,0.495212,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.885078,0.15,4 +30890,0,0.289913,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.957918,0.15,4 +30891,0,0.51653,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.396731,0.15,4 +33587,0,0.52519,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.60456,0.15,4 +17509,0,0.25451,2,2,0,2,3,,3,2,Inkster,Rd,1674404,15.851,16.106,0,6.108243,5,5 +18439,0,0.310974,2,2,0,2,3,,3,2,Inkster,Rd,1674404,16.442,16.753,0,7.463376,5,5 +19154,0,0.21785,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,10.885,11.103,0,5.228405,5,5 +17649,0,0.067544,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,10.817,10.885,0,1.621062,5,5 +18027,0,0.06864,2,2,1,2,3,,3,2,Inkster,Rd,1674404,16.753,16.821,0,1.647356,5,5 +23769,-1,0.069297,0,1,0,2,3,,3,2,Edward Hines/Inkster,Ramp,4707940,0.074,0.143,0,1.663122,5,5 +23770,0,0.073749,1,1,0,2,3,,3,2,Edward Hines/Inkster,,4707940,0,0.074,0,1.769982,5,5 +23771,0,0.032513,1,1,0,2,3,,3,2,Inkster/Edward Hines,Ramp,4707932,0,0.033,0,0.780319,5,5 +30547,0,0.254706,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.11294,0.15,4 +12902,0,0.429624,1,1,0,2,4,,3,2,Chicago,St,1579408,0.028,0.458,0,10.310985,6,4.5 +30897,0,0.25081,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.01944,0.15,4 +30898,0,0.249504,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.988102,0.15,4 +32521,0,0.25421,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.101048,0.15,4 +11887,0,0.485943,2,2,0,2,4,,3,2,5 Mile,Rd,1579605,0,0.486,0,11.662627,6,4.5 +14294,1,0.123991,1,0,0,1,1,RON,3,2,Beech Daly/W I 96,RAMP,1589410,0,0.124,0,,1.09,4 +16692,1,0.532928,4,0,0,1,1,,3,2,E I 96,,1606201,6.637,7.17,0,,0.58,7 +16778,0,0.462453,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,12.339,12.802,0,11.098861,5,5 +16878,-1,0.507887,0,4,0,1,1,,3,2,W I 96,,1606503,6.437,6.945,0,,0.58,7 +18783,0,0.215214,2,2,1,2,3,,3,2,Inkster,Rd,1674404,19.129,19.344,0,5.165139,5,5 +22907,-1,0.451184,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,7.43,7.881,0,10.828416,8,4.5 +22909,-1,0.144298,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,6.979,7.123,0,3.463156,8,4.5 +23471,1,0.101995,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,6.963,7.065,0,2.447875,8,4.5 +30272,0,0.495084,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.882021,0.15,4 +32018,0,0.485943,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.662628,0.15,4 +32528,0,0.462202,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.092856,0.15,4 +32529,0,0.516703,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.400878,0.15,4 +32563,0,0.244562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.869483,0.15,4 +33584,0,0.490189,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.764536,0.15,4 +16589,-1,0.58577,0,4,0,1,1,,3,2,W I 96,,1606503,5.851,6.437,0,,0.58,7 +16845,0,0.250845,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,11.837,12.088,0,6.020291,5,5 +17006,1,0.48148,4,0,0,1,1,,3,2,E I 96,,1606201,6.155,6.637,0,,0.58,7 +19116,0,0.573659,2,2,1,2,3,,3,2,Inkster,Rd,1674404,18.446,19.019,0,13.76781,5,5 +23029,-1,0.575568,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,6.341,6.916,0,13.813625,8,4.5 +23487,1,0.55504,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,6.324,6.879,0,13.320971,8,4.5 +30268,0,0.526101,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.626418,0.15,4 +32568,0,0.506926,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.166231,0.15,4 +16853,0,0.12573,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,11.711,11.837,0,3.017516,5,5 +32569,0,0.282434,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.778427,0.15,4 +32566,0,0.26697,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.407269,0.15,4 +16844,0,0.251972,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,12.088,12.339,0,6.047334,5,5 +17707,0,0.320256,2,2,1,2,3,,3,2,Inkster,Rd,1674404,18.125,18.446,0,7.686143,5,5 +16556,1,0.108415,1,0,0,1,1,RON,3,2,Inkster/W I 96,RAMP,1606602,0,0.108,0,,1.09,4 +16907,1,0.150073,1,0,0,1,1,ROF,3,2,E I 96/Inkster,RAMP,1606403,0,0.15,0,,2.24,5 +18668,0,0.056727,2,2,1,2,3,,3,2,Inkster,Rd,1674404,19.019,19.076,0,1.36144,5,5 +22933,-1,0.063245,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,6.916,6.979,0,1.517891,8,4.5 +23475,1,0.084505,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,6.879,6.963,0,2.02812,8,4.5 +18229,0,0.053532,2,2,1,2,3,,3,2,Inkster,Rd,1674404,19.076,19.129,0,1.284776,5,5 +16632,0,0.500631,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,7.443,7.944,0,12.015149,6,4.5 +17519,0,0.217015,1,1,0,2,3,,3,2,Inkster,Rd,1674404,19.725,19.942,0,5.208362,5,5 +17904,0,0.523328,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,2.75,3.273,0,12.559874,8,4.5 +32559,0,0.234875,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.637003,0.15,4 +32560,0,0.520686,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.49647,0.15,4 +32618,0,0.490877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.781047,0.15,4 +32561,0,0.268779,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.450686,0.15,4 +32558,0,0.26513,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.36313,0.15,4 +18328,0,0.173852,2,2,1,2,3,,3,2,Inkster,Rd,1674404,19.344,19.518,0,4.172459,5,5 +17940,0,0.206323,1,1,0,2,3,,3,2,Inkster,Rd,1674404,19.518,19.725,0,4.951742,5,5 +18924,0,0.166664,1,1,0,2,3,,3,2,Inkster,Rd,1674404,19.942,20.108,0,3.99994,5,5 +16121,1,0.33336,4,0,0,1,1,,3,2,E I 96,,1606201,7.17,7.503,0,,0.58,7 +16584,-1,0.438737,0,4,0,1,1,,3,2,W I 96,,1606503,6.945,7.383,0,,0.58,7 +23468,1,0.414032,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,7.435,7.849,0,9.93677,8,4.5 +32517,0,0.26463,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.35113,0.15,4 +12382,1,0.192338,2,0,0,1,1,ROF,3,2,W I 96/Inkster,RAMP,1579509,0,0.192,0,,2.24,5 +14253,1,0.203022,1,0,0,1,1,RON,3,2,Inkster/E I 96,RAMP,1589409,0,0.203,0,,1.09,4 +22908,-1,0.306218,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,7.123,7.43,0,7.349241,8,4.5 +23469,1,0.369636,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,7.065,7.435,0,8.871255,8,4.5 +32514,0,0.219506,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.268146,0.15,4 +16611,1,0.254481,1,0,0,1,1,ROF,3,2,E I 96/Beech Daly,RAMP,1606404,0,0.254,0,,2.24,5 +32527,0,0.488791,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.730988,0.15,4 +559,0,0.498276,1,1,0,2,4,,3,3,9 Mile,Rd,633904,0.501,0.999,0,11.958627,6,4.5 +899,1,0.583449,4,0,0,2,3,DIV,3,3,Grand River,,633807,0.749,1.332,0,14.002782,5,5 +2023,-1,0.608782,0,4,0,2,3,DIV,3,3,Grand River,,634904,0.72,1.328,0,14.610779,5,5 +16448,0,0.206824,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,5.26,5.467,0,4.963776,6,4.5 +16657,-1,0.397507,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,0.974,1.371,0,9.54018,5,5 +16726,1,0.416127,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,1.003,1.419,0,9.987055,5,5 +17662,0,0.495224,1,1,0,2,3,,3,2,Inkster,Rd,1674404,22.111,22.606,0,11.885378,5,5 +17918,0,0.190051,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,5.28,5.47,0,4.561228,5,5 +18966,0,0.502684,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,11.04,11.542,0,12.06441,5,5 +19017,0,0.562925,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,21.85,22.413,0,13.510202,5,5 +21098,0,0.571387,1,1,0,2,5,,3,3,Shiawassee,,4410043,0.061,0.632,0,13.713284,8,4.5 +21481,0,0.399413,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,7.077,7.477,0,9.58592,5,5 +22012,0,0.506282,2,2,1,2,3,,3,2,Merriman,Rd,4700000,15.091,15.598,0,12.150773,5,5 +25856,0,0.553477,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.283446,0.15,4 +29749,0,0.498567,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.965603,0.15,4 +30939,0,0.555738,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.337711,0.15,4 +30942,0,0.45579,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.938952,0.15,4 +30946,0,0.556762,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.362285,0.15,4 +32595,0,0.502772,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.066523,0.15,4 +32597,0,0.502069,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.049664,0.15,4 +32690,0,0.490886,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.781261,0.15,4 +17652,0,0.526386,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,10.041,10.568,0,12.633263,5,5 +18638,0,0.200702,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,4.474,4.674,0,4.81684,5,5 +18920,0,0.503159,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,20.413,20.916,0,12.075827,5,5 +21677,0,0.481348,2,2,1,2,3,,3,2,Merriman,Rd,4700000,13.598,14.079,0,11.552349,5,5 +30944,0,0.500162,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.003898,0.15,4 +30948,0,0.497965,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.951149,0.15,4 +30952,0,0.499094,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.978267,0.15,4 +31338,0,0.499287,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.982879,0.15,4 +21928,0,0.499426,2,2,1,2,3,,3,2,Merriman,Rd,4700000,13.098,13.598,0,11.986216,5,5 +19001,0,0.499616,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,3.974,4.474,0,11.990791,5,5 +21463,0,0.516651,2,2,1,2,3,,3,2,Merriman,Rd,4700000,14.079,14.595,0,12.399633,5,5 +21253,0,0.496244,2,2,1,2,3,,3,2,Merriman,Rd,4700000,14.595,15.091,0,11.909865,5,5 +17447,0,0.472378,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,10.568,11.04,0,11.337062,5,5 +17704,0,0.498066,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,19.915,20.413,0,11.953595,5,5 +31340,0,0.500934,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.022418,0.15,4 +32538,0,0.499218,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.981236,0.15,4 +18429,0,0.297163,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,4.674,4.971,0,7.131916,5,5 +18446,0,0.498242,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,20.916,21.414,0,11.957815,5,5 +30947,0,0.497919,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.950049,0.15,4 +30950,0,0.250141,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.003382,0.15,4 +30951,0,0.162585,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.902033,0.15,4 +17606,0,0.250367,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,21.6,21.85,0,6.008803,5,5 +18115,0,0.308944,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,4.971,5.28,0,7.414647,5,5 +30943,0,0.441522,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.596533,0.15,4 +32594,0,0.319857,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.676562,0.15,4 +18032,0,0.186564,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,21.414,21.6,0,4.477538,5,5 +384,0,0.325549,1,1,0,2,5,,3,3,Shiawassee,,633708,0.571,0.896,0,7.813165,8,4.5 +410,0,0.764194,1,1,0,2,4,,3,3,Orchard Lake,Rd,633806,0,0.764,0,18.340663,6,4.5 +938,-1,0.244214,0,2,0,2,3,DIV,3,3,Grand River,,634904,0.149,0.393,0,5.861138,5,5 +1196,0,0.337544,1,1,0,2,5,,3,3,Folsom,,634102,1.014,1.352,0,8.101066,8,4.5 +1413,1,0.216614,2,0,0,2,3,DIV,3,3,Grand River,,633807,0.132,0.349,0,5.198746,5,5 +1595,0,0.334554,1,1,0,2,4,,3,3,9 Mile,Rd,633904,1.161,1.495,0,8.029285,6,4.5 +2052,0,0.242546,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,0.499,0.742,0,5.821103,6,4.5 +20913,0,0.490295,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,6.267,6.757,0,11.767087,5,5 +25857,0,0.173252,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.158058,0.15,4 +25862,0,0.327177,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.852241,0.15,4 +25864,0,0.200801,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.819234,0.15,4 +25866,0,0.199349,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.784373,0.15,4 +26211,0,0.430357,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.328567,0.15,4 +29752,0,0.571067,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.7056,0.15,4 +296,0,0.190235,1,1,0,2,5,,3,3,Tuck,,634108,0.431,0.621,0,4.565648,8,4.5 +20915,0,0.370866,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,5.763,6.134,0,8.900792,5,5 +30945,0,0.444029,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.656699,0.15,4 +20914,0,0.133519,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,6.134,6.267,0,3.204446,5,5 +760,0,0.430929,1,1,0,2,5,,3,3,Tuck,,634108,0,0.431,0,10.342299,8,4.5 +378,0,0.195045,1,1,0,2,4,,3,3,Orchard Lake,Rd,633806,0.818,1.012,0,4.681069,6,4.5 +576,0,0.525778,1,1,0,2,5,,3,3,Shiawassee,,633708,0,0.526,0,12.618682,8,4.5 +1031,0,0.438445,1,1,0,2,5,,3,3,Freedom,Rd,633606,3.296,3.735,0,10.522671,8,4.5 +1394,0,0.123961,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0.112,0.236,0,2.975066,5,5 +1673,0,0.164018,1,1,0,2,5,,3,3,Folsom,,634102,0.85,1.014,0,3.936426,8,4.5 +19771,0,0.109719,2,2,1,2,3,,3,3,Grand River,,4104142,17.901,18.01,0,2.633247,5,5 +26204,0,0.168619,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.046845,0.15,4 +26206,0,0.137972,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.311322,0.15,4 +29728,0,0.568738,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.64972,0.15,4 +29729,0,0.446235,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.709642,0.15,4 +19773,0,0.230681,2,2,1,2,4,,3,3,Grand River,,4104142,17.593,17.824,0,5.536333,6,4.5 +841,0,0.053572,2,2,0,2,4,,3,3,Orchard Lake,Rd,633806,0.764,0.818,0,1.285728,6,4.5 +1908,0,0.112228,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0,0.112,0,2.693469,5,5 +19772,0,0.076861,2,2,1,2,3,,3,3,Grand River,,4104142,17.824,17.901,0,1.844675,5,5 +1319,0,0.21496,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0.456,0.671,0,5.159046,5,5 +1962,0,0.202212,1,1,0,2,5,,3,3,Shiawassee,,633209,1.283,1.485,0,4.853094,8,4.5 +26192,0,0.156893,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.765431,0.15,4 +26205,0,0.218805,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.251318,0.15,4 +937,0,0.120409,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0.236,0.357,0,2.889827,5,5 +1825,0,0.099499,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0.357,0.456,0,2.387983,5,5 +2143,0,0.348796,1,1,0,2,4,,3,3,9 Mile,Rd,633904,1.495,1.844,0,8.371096,6,4.5 +19770,0,0.232556,2,2,1,2,3,,3,3,Grand River,,4104142,18.01,18.243,0,5.581339,5,5 +1395,-1,0.14913,0,2,0,2,3,DIV,3,3,Grand River,,634904,0,0.149,0,3.579119,5,5 +1936,1,0.132428,2,0,0,2,3,DIV,3,3,Grand River,,633807,0,0.132,0,3.178264,5,5 +507,0,0.043686,1,1,0,2,5,,3,3,Freedom,Rd,634606,0.407,0.45,0,1.048459,8,4.5 +2108,0,0.044972,1,1,0,2,5,,3,3,Shiawassee,,633708,0.526,0.571,0,1.079338,8,4.5 +476,-1,0.326409,0,4,0,2,3,DIV,3,3,Grand River,,634904,0.393,0.72,0,7.833823,5,5 +517,0,0.190562,2,2,0,2,4,,3,3,Middlebelt,Rd,634610,0,0.191,0,4.573479,6,4.5 +1357,1,0.400174,4,0,0,2,3,DIV,3,3,Grand River,,633807,0.349,0.749,0,9.604178,5,5 +29753,0,0.428281,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.278746,0.15,4 +22155,0,0.320351,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,6.757,7.077,0,7.688433,5,5 +2068,0,0.255304,2,2,0,2,4,,3,3,Middlebelt,Rd,634610,0.191,0.446,0,6.127298,6,4.5 +1564,0,0.028307,2,2,0,2,4,,3,3,Middlebelt,Rd,634610,0.446,0.474,0,0.679373,6,4.5 +1085,0,0.024989,2,2,0,2,4,,3,3,Middlebelt,Rd,634610,0.474,0.499,0,0.599735,6,4.5 +614,0,0.507117,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,1.005,1.512,0,12.170802,6,4.5 +2095,0,0.162301,1,1,0,2,4,,3,3,9 Mile,Rd,633904,0.999,1.161,0,3.895228,6,4.5 +25859,0,0.364262,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.742286,0.15,4 +2146,0,0.064265,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,1.512,1.576,0,1.542354,6,4.5 +1541,0,0.194782,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,0.742,0.936,0,4.674775,6,4.5 +1065,0,0.068853,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,0.936,1.005,0,1.652466,6,4.5 +16464,0,0.495715,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,3.978,4.473,0,11.897151,6,4.5 +18389,0,0.316265,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,12.042,12.358,0,7.590364,5,5 +18498,0,0.502533,2,2,0,2,3,,3,2,Inkster,Rd,1674404,21.117,21.619,0,12.0608,5,5 +19206,0,0.301949,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,5.977,6.279,0,7.246787,5,5 +27408,0,0.5024,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.05761,0.15,4 +30955,0,0.502797,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.067118,0.15,4 +32593,0,0.500486,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.01167,0.15,4 +32665,0,0.491079,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.785896,0.15,4 +32688,0,0.241944,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.806662,0.15,4 +18037,0,0.535491,2,2,0,2,3,,3,2,Inkster,Rd,1674404,20.581,21.117,0,12.851795,5,5 +18703,0,0.499707,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,11.542,12.042,0,11.99296,5,5 +32537,0,0.500455,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.010925,0.15,4 +32539,0,0.501583,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.03799,0.15,4 +17592,0,0.507213,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,5.47,5.977,0,12.173115,5,5 +18088,0,0.491857,2,2,0,2,3,,3,2,Inkster,Rd,1674404,21.619,22.111,0,11.80458,5,5 +32591,0,0.502347,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.056332,0.15,4 +32592,0,0.502158,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.051783,0.15,4 +17886,0,0.18661,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,12.524,12.711,0,4.478633,5,5 +32557,0,0.500056,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.001336,0.15,4 +18162,0,0.165962,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,12.358,12.524,0,3.983099,5,5 +17653,0,0.311364,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,12.711,13.022,0,7.472725,5,5 +16463,0,0.496492,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,4.473,4.97,0,11.915798,6,4.5 +18639,0,0.246959,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,6.464,6.711,0,5.927021,5,5 +30954,0,0.497599,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.942371,0.15,4 +32598,0,0.50133,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.031923,0.15,4 +18899,0,0.184817,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,6.279,6.464,0,4.435614,5,5 +30953,0,0.251777,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.042642,0.15,4 +16462,0,0.26326,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,4.97,5.233,0,6.318235,6,4.5 +18011,0,0.248833,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,6.711,6.96,0,5.971985,5,5 +16456,0,0.027225,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,5.233,5.26,0,0.6534,6,4.5 +284,0,0.473238,1,1,1,2,4,,3,3,Inkster,Rd,636410,0.543,1.016,0,11.357723,6,4.5 +1238,-1,0.493979,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,0.242,0.736,0,11.855504,5,5 +3661,0,0.264758,1,1,0,2,5,,4,3,Shiawassee,,686405,1.251,1.515,0,6.354202,5.8,4.5 +3720,0,0.491202,1,1,0,2,5,,4,3,Beech,Rd,684801,0.525,1.016,0,11.78884,5.8,4.5 +3752,0,0.43816,1,1,0,2,4,,4,3,9 Mile,Rd,684404,0,0.438,0,10.515844,4.5,4.5 +16665,-1,0.741106,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,0.233,0.974,0,17.786555,5,5 +16729,1,0.723305,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,0.28,1.003,0,17.359325,5,5 +19733,1,0.489278,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,0.223,0.713,0,11.742668,5,5 +21097,0,0.505859,1,1,0,2,5,,3,3,Shiawassee,,4410043,0.632,1.138,0,12.140615,8,4.5 +25860,0,0.140868,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.380839,0.15,4 +26231,0,0.435081,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.441953,0.15,4 +29746,0,0.4985,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.96399,0.15,4 +29748,0,0.55286,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.268652,0.15,4 +32692,0,0.490802,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.779247,0.15,4 +321,-1,0.315916,0,4,0,2,3,DIV,3,3,Grand River,,634904,1.328,1.644,0,7.581994,5,5 +435,1,0.293338,4,0,0,2,3,DIV,3,3,Grand River,,633807,1.332,1.625,0,7.040107,5,5 +917,0,0.236557,1,1,1,2,4,,3,3,Inkster,Rd,636410,0.023,0.259,0,5.677362,6,4.5 +1174,-1,0.04054,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,0,0.041,0,0.972971,5,5 +16731,1,0.258481,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,0.022,0.28,0,6.203553,5,5 +19737,1,0.049295,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,0,0.049,0,1.183085,5,5 +25855,0,0.556379,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.353088,0.15,4 +30941,0,0.238754,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.7301,0.15,4 +30940,0,0.402138,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.651315,0.15,4 +16759,-1,0.042409,0,2,0,2,3,DIV,3,3,8 Mile,Rd,1600603,0,0.042,0,1.01781,5,5 +22154,1,0.061143,2,0,0,2,3,DIV,3,2,8 Mile,Rd,4412701,7.477,7.538,0,1.467436,5,5 +16732,1,0.013162,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,0.009,0.022,0,0.315886,5,5 +16750,1,0.008329,4,0,0,2,3,DIV,3,3,Grand River,,1600604,0,0.009,0,0.199885,5,5 +25861,0,0.409348,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.824344,0.15,4 +30243,0,0.425655,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.215722,0.15,4 +18608,0,0.026855,2,2,0,2,3,,3,2,Inkster,Rd,1674404,22.97,22.996,0,0.644515,5,5 +19075,0,0.363995,1,1,0,2,3,,3,2,Inkster,Rd,1674404,22.606,22.97,0,8.735888,5,5 +1728,-1,0.201555,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,0.041,0.242,0,4.837316,5,5 +16681,-1,0.201372,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,0.032,0.233,0,4.832931,5,5 +18175,0,0.098424,2,2,0,2,3,,3,2,Inkster,Rd,1674404,22.996,23.095,0,2.362169,5,5 +19735,1,0.174189,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,0.049,0.223,0,4.180537,5,5 +16696,-1,0.018928,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,0.013,0.032,0,0.454274,5,5 +16709,-1,0.012582,0,4,0,2,3,DIV,3,3,Grand River,,1600605,0,0.013,0,0.301967,5,5 +1883,0,0.011667,2,2,0,2,3,,3,2,Inkster,Rd,636410,0,0.012,0,0.279999,5,5 +1373,0,0.01126,2,2,0,2,3,,3,3,Inkster,Rd,636410,0.012,0.023,0,0.270244,5,5 +458,0,0.283172,1,1,1,2,4,,3,3,Inkster,Rd,636410,0.259,0.543,0,6.796116,6,4.5 +1017,0,0.500597,1,1,0,2,4,,3,3,9 Mile,Rd,633904,0,0.501,0,12.014339,6,4.5 +1845,0,0.432647,1,1,0,2,4,,4,3,Inkster,Rd,636410,1.016,1.448,0,10.383536,4.5,4.5 +26213,0,0.501625,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.039004,0.15,4 +29745,0,0.514686,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.352475,0.15,4 +1336,0,0.199427,1,1,0,2,4,,4,3,Inkster,Rd,636410,1.448,1.648,0,4.786257,4.5,4.5 +328,-1,0.400546,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,0.836,1.236,0,9.613101,5,5 +3662,0,0.79771,1,1,0,2,5,,4,3,Shiawassee,,686405,0.453,1.251,0,19.145046,5.8,4.5 +3722,0,0.158389,1,1,0,2,5,,4,3,Beech,Rd,684801,0.024,0.182,0,3.80133,5.8,4.5 +19731,1,0.35635,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,0.855,1.211,0,8.552389,5,5 +27409,0,0.494413,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.865915,0.15,4 +29750,0,0.489371,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.744912,0.15,4 +29751,0,0.512275,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.294598,0.15,4 +30949,0,0.149659,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.591815,0.15,4 +32596,0,0.134517,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.228414,0.15,4 +33980,0,0.499714,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.993128,0.15,4 +33981,0,0.512604,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.302495,0.15,4 +792,-1,0.099752,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,0.736,0.836,0,2.39404,5,5 +19732,1,0.142058,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,0.713,0.855,0,3.409399,5,5 +27410,0,0.252485,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.059635,0.15,4 +16438,0,0.465815,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,5.467,5.933,0,11.179559,6,4.5 +3723,0,0.01115,2,2,1,2,4,,3,3,Beech,Rd,684801,0.013,0.024,0,0.267595,6,4.5 +3724,0,0.012807,2,2,1,2,4,,3,2,Beech Daly,Rd,684801,0,0.013,0,0.307365,6,4.5 +3721,0,0.34295,1,1,0,2,5,,4,3,Beech,Rd,684801,0.182,0.525,0,8.230788,5.8,4.5 +3719,0,0.606425,1,1,0,2,5,,4,3,Beech,Rd,684801,1.016,1.622,0,14.554203,5.8,4.5 +3751,0,0.290538,1,1,0,2,4,,4,3,9 Mile,Rd,684404,0.438,0.729,0,6.972904,4.5,4.5 +26233,0,0.510385,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.249248,0.15,4 +29747,0,0.501854,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.044497,0.15,4 +3750,0,0.267045,1,1,0,2,4,,4,3,9 Mile,Rd,684404,0.729,0.995,0,6.409083,4.5,4.5 +11831,-1,0.156458,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.358,12.514,0,3.754993,5,5 +12285,0,0.565317,2,2,0,2,4,,3,1,Fenkell,St,1579605,2.413,2.978,0,13.567619,6,4.5 +12421,0,0.502028,1,1,0,2,5,,3,1,Burt,Rd,1582303,0.496,0.998,0,12.048665,8,4.5 +13208,0,0.279972,1,1,0,2,4,,3,1,Chicago,St,1579408,2.406,2.686,0,6.71932,6,4.5 +14559,1,0.330292,2,0,0,2,4,DV2,3,1,Outer,Dr,1596803,3.617,3.947,0,7.927013,6,4.5 +14807,0,0.332286,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,3.983,4.315,0,7.974866,5,5 +15733,0,1.096006,2,2,0,2,4,,3,1,Outer,Dr,1596803,2.178,3.274,0,26.304151,6,4.5 +16580,0,0.284885,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,0.711,0.995,0,6.837233,6,4.5 +16688,1,0.540409,5,0,0,1,1,,3,1,E I 96,,1606201,9.08,9.621,0,,0.58,7 +16798,0,0.27825,2,2,0,2,5,,3,1,Rouge Park,Dr,1605403,0.599,0.877,0,6.677999,8,4.5 +16829,0,0.286505,2,2,1,2,3,,3,1,Plymouth,Rd,1604102,14.749,15.036,0,6.876127,5,5 +16866,-1,0.413666,0,5,0,1,1,,3,1,W I 96,,1606503,8.947,9.36,0,,0.58,7 +17145,0,0.163006,1,1,0,2,4,,3,1,Ann Arbor,Trl,1604508,9.13,9.293,0,3.912133,6,4.5 +17415,0,0.650407,2,2,0,2,5,,3,1,Spinoza,Dr,1624005,1.427,2.077,0,15.609764,8,4.5 +17490,0,0.121652,1,1,0,2,5,,3,1,Tireman,St,1645409,0.275,0.396,0,2.919639,8,4.5 +18076,0,0.143491,1,1,0,2,3,,3,1,Edward N Hines,Dr,1689409,13.48,13.623,0,3.443794,5,5 +18329,0,0.755806,1,1,0,2,4,,3,1,Joy,Rd,1677810,5.483,6.239,0,18.13935,6,4.5 +21452,1,0.044315,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.326,19.371,0,1.06355,5,5 +23279,-1,0.330555,0,2,0,2,4,DV2,3,1,Outer,Dr,4704599,0.332,0.663,0,7.933309,6,4.5 +23281,-1,0.491441,0,2,0,2,5,,3,1,Schoolcraft,St,4705258,9.415,9.907,0,11.794576,8,4.5 +23362,1,0.890477,2,0,0,2,5,,3,1,Schoolcraft,St,4705231,8.965,9.855,0,21.371447,8,4.5 +24021,0,0.086234,2,2,1,2,3,,3,1,Warren,Rd,4710470,14.877,14.964,0,2.069604,5,5 +30384,0,0.534477,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.827446,0.15,4 +31194,0,0.523303,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.559273,0.15,4 +32610,0,0.928939,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,22.294526,0.15,4 +32611,0,0.953206,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,22.876945,0.15,4 +32615,0,0.259265,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.222362,0.15,4 +32623,0,0.252488,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.059709,0.15,4 +33717,0,0.602322,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.45573,0.15,4 +40605,0,0.996973,1,1,0,2,6,GRV,5,8,Chase Lake,Rd,943607,5.867,6.864,0,23.92736,5.55,5 +33916,0,0.510246,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.245906,0.15,4 +11836,-1,0.238237,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,11.118,11.357,0,5.717692,5,5 +12504,0,0.321794,1,1,0,2,5,,3,1,Parkway,St,1583502,0.36,0.682,0,7.723065,8,4.5 +12547,0,0.474135,1,1,0,2,4,,3,2,Chicago,St,1579408,1.449,1.923,0,11.379251,6,4.5 +15730,0,0.191967,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,2.718,2.91,0,4.607211,6,4.5 +17147,0,0.461082,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,7.942,8.403,0,11.065968,6,4.5 +18632,0,0.469878,2,2,0,2,4,,3,2,Joy,Rd,1677810,4.51,4.98,0,11.277073,6,4.5 +21404,1,0.248474,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,17.996,18.244,0,5.963372,5,5 +24026,0,0.478238,2,2,1,2,3,,3,2,Warren,Rd,4710470,13.905,14.383,0,11.47772,5,5 +32239,0,0.758715,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.209168,0.15,4 +32341,0,0.491766,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.802388,0.15,4 +32519,0,0.493562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.845492,0.15,4 +32609,0,0.558671,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.408097,0.15,4 +32622,0,0.517075,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.409804,0.15,4 +32624,0,0.487053,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.689282,0.15,4 +32631,0,0.48624,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.669752,0.15,4 +32632,0,0.304147,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.299528,0.15,4 +32634,0,0.464416,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.145983,0.15,4 +32636,0,0.505301,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.12722,0.15,4 +33573,0,0.518702,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.448837,0.15,4 +33975,0,0.610879,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.661099,0.15,4 +15140,0,0.524579,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,2.001,2.526,0,12.589901,6,4.5 +16863,0,0.505104,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,7.437,7.942,0,12.12249,6,4.5 +24028,0,0.375921,2,2,1,2,3,,3,2,Warren,Rd,4710470,13.4,13.775,0,9.022097,5,5 +30548,0,0.491668,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.800028,0.15,4 +15388,0,0.249533,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,1.752,2.001,0,5.988783,6,4.5 +14898,0,0.192132,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,2.526,2.718,0,4.611168,6,4.5 +24027,0,0.129081,2,2,1,2,3,,3,2,Warren,Rd,4710470,13.775,13.905,0,3.097946,5,5 +32340,0,0.249485,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.987643,0.15,4 +32633,0,0.114438,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.746503,0.15,4 +12858,0,0.498746,1,1,0,2,4,,3,2,Chicago,St,1579408,0.95,1.449,0,11.969898,6,4.5 +16585,0,0.288223,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,0.209,0.497,0,6.917354,6,4.5 +17681,0,0.507726,2,2,0,2,4,,3,2,Joy,Rd,1677810,3.984,4.492,0,12.185427,6,4.5 +32522,0,0.487381,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.697139,0.15,4 +32635,0,0.249324,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.983787,0.15,4 +32637,0,0.490313,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.767515,0.15,4 +16605,0,0.208607,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,0,0.209,0,5.006566,6,4.5 +15205,0,0.154022,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,2.91,3.064,0,3.696522,6,4.5 +16582,0,0.213847,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,0.497,0.711,0,5.132321,6,4.5 +32638,0,0.249642,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.991404,0.15,4 +19095,0,0.018337,2,2,0,2,4,,3,2,Joy,Rd,1677810,4.492,4.51,0,0.440098,6,4.5 +32625,0,0.248025,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.952601,0.15,4 +11837,-1,0.578008,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,10.541,11.118,0,13.872196,5,5 +12431,0,0.360173,1,1,0,2,5,,3,1,Parkway,St,1583502,0,0.36,0,8.644148,8,4.5 +16859,0,0.612091,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,8.466,9.078,0,14.690193,6,4.5 +17457,0,0.300488,1,1,0,2,5,,3,2,Warrendale,Dr,1648010,0,0.3,0,7.211719,8,4.5 +18384,0,0.24792,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,13.232,13.48,0,5.950069,5,5 +18592,0,0.36797,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,12.864,13.232,0,8.831288,5,5 +21565,1,0.571496,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,17.424,17.996,0,13.715893,5,5 +24024,0,0.344304,2,2,1,2,3,,3,2,Warren,Rd,4710470,14.406,14.75,0,8.263307,5,5 +11838,-1,0.247603,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,10.293,10.541,0,5.942466,5,5 +21658,1,0.247192,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,17.177,17.424,0,5.932597,5,5 +24025,0,0.023406,2,2,1,2,3,,3,2,Warren,Rd,4710470,14.383,14.406,0,0.561733,5,5 +17462,0,0.217897,1,1,0,2,5,,3,2,Woodbine,Ave,1647508,0,0.218,0,5.229517,8,4.5 +32630,0,0.062047,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.48912,0.15,4 +17146,0,0.02348,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,8.442,8.466,0,0.563521,6,4.5 +16861,0,0.039363,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,8.403,8.442,0,0.944724,6,4.5 +24023,0,0.127325,2,2,1,2,3,,3,2,Warren,Rd,4710470,14.75,14.877,0,3.05579,5,5 +16267,0,0.052228,1,1,0,2,4,,3,1,Ann Arbor,Trl,1604508,9.078,9.13,0,1.253479,6,4.5 +11833,-1,0.35397,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,11.757,12.111,0,8.49528,5,5 +12002,0,0.250539,1,1,0,2,4,,3,2,Chicago,St,1579408,1.945,2.195,0,6.01293,6,4.5 +17243,0,0.427925,1,1,0,2,4,,3,2,Joy,Rd,1677810,5.005,5.432,0,10.270198,6,4.5 +21914,1,0.248633,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,18.747,18.995,0,5.967195,5,5 +30878,0,0.24389,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.853366,0.15,4 +32616,0,0.239048,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.737141,0.15,4 +11835,-1,0.253702,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,11.357,11.61,0,6.088856,5,5 +21298,1,0.249875,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,18.244,18.494,0,5.996996,5,5 +11834,-1,0.147191,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,11.61,11.757,0,3.532578,5,5 +22107,1,0.253105,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,18.494,18.747,0,6.07453,5,5 +17830,0,0.024793,2,2,0,2,4,,3,2,Joy,Rd,1677810,4.98,5.005,0,0.59504,6,4.5 +11832,-1,0.24639,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.111,12.358,0,5.913364,5,5 +21657,1,0.330947,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,18.995,19.326,0,7.942727,5,5 +12385,0,0.02197,1,1,0,2,4,,3,2,Chicago,St,1579408,1.923,1.945,0,0.527278,6,4.5 +12341,0,0.242382,1,1,0,2,5,,3,1,Parkway,St,1583502,0.682,0.924,0,5.81717,8,4.5 +18784,0,0.051073,1,1,0,2,4,,3,1,Joy,Rd,1677810,5.432,5.483,0,1.225759,6,4.5 +13285,0,0.210851,1,1,0,2,4,,3,2,Chicago,St,1579408,2.195,2.406,0,5.060429,6,4.5 +32617,0,0.242499,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.819967,0.15,4 +11823,-1,0.583091,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,13.311,13.894,0,13.994182,5,5 +12012,1,0.065471,3,0,0,2,3,,3,2,N US 24 CD,,1580109,0.226,0.291,0,1.571293,5,5 +12774,0,0.467387,2,2,1,2,4,,3,2,5 Mile,Rd,1579605,1.482,1.949,0,11.217287,6,4.5 +15899,1,0.211797,1,0,0,1,1,RON,3,1,US 24/E I 96,RAMP,1598906,0,0.212,0,,1.09,4 +16510,0,0.462717,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,2.004,2.467,0,11.105206,6,4.5 +16554,1,0.175559,1,0,0,1,1,RON,3,2,US 24/W I 96,RAMP,1606604,0,0.176,0,,1.09,4 +16609,1,0.244139,1,0,0,1,1,ROF,3,2,E I 96/US 24,RAMP,1606409,0,0.244,0,,2.24,5 +16690,1,0.352863,4,0,0,1,1,,3,2,E I 96,,1606201,8.518,8.87,0,,0.58,7 +16728,0,0.229696,2,2,1,2,3,,3,2,Plymouth,Rd,1604102,13.942,14.171,0,5.512699,5,5 +16833,1,0.140656,1,0,0,1,1,ROF,3,2,W I 96/Beech Daly,RAMP,1606603,0,0.141,0,,2.24,5 +16868,-1,0.288568,0,4,0,1,1,,3,2,W I 96,,1606503,8.322,8.611,0,,0.58,7 +17002,1,0.209452,4,0,0,1,1,,3,1,E I 96,,1606201,8.87,9.08,0,,0.58,7 +21453,1,0.566307,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,20.206,20.772,0,13.591371,5,5 +22728,-1,0.421406,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,8.448,8.87,0,10.113748,8,4.5 +22902,-1,0.10344,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,7.95,8.054,0,2.48255,8,4.5 +23449,1,0.426587,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,8.428,8.855,0,10.238093,8,4.5 +24265,-1,0.065431,0,3,0,2,3,,3,2,S US 24 CD,,4711490,0.237,0.302,0,1.570335,5,5 +30258,0,0.527616,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.662793,0.15,4 +32639,0,0.503532,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.084771,0.15,4 +32641,0,0.481162,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.547883,0.15,4 +32642,0,0.504991,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.119788,0.15,4 +32645,0,0.453733,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.889584,0.15,4 +32648,0,0.514692,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.352601,0.15,4 +16573,0,0.342717,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,1.328,1.671,0,8.22522,6,4.5 +16583,-1,0.504349,0,5,0,1,1,,3,2,W I 96,,1606503,7.818,8.322,0,,0.58,7 +16772,0,0.436872,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,13.293,13.729,0,10.484923,5,5 +17004,1,0.435901,5,0,0,1,1,,3,2,E I 96,,1606201,8.082,8.518,0,,0.58,7 +23450,1,0.421641,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,8.007,8.428,0,10.119385,8,4.5 +31195,0,0.501968,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.047243,0.15,4 +32567,0,0.517174,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.412176,0.15,4 +16579,0,0.332878,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,0.995,1.328,0,7.989073,6,4.5 +16552,0,0.274761,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,1.671,1.945,0,6.59427,6,4.5 +16903,1,0.171122,1,0,0,1,1,RON,3,2,Beech Daly/E I 96,RAMP,1606407,0,0.171,0,,1.09,4 +23461,1,0.074107,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,7.933,8.007,0,1.778557,8,4.5 +16516,0,0.058671,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,1.945,2.004,0,1.408112,6,4.5 +16730,0,0.212434,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,13.729,13.942,0,5.098421,5,5 +32643,0,0.254912,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.117882,0.15,4 +32640,0,0.208153,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.995667,0.15,4 +11982,0,0.459017,2,2,1,2,4,,3,2,5 Mile,Rd,1579605,0.978,1.437,0,11.0164,6,4.5 +16509,0,0.515919,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,2.467,2.982,0,12.382058,6,4.5 +22859,-1,0.39495,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,8.054,8.448,0,9.478789,8,4.5 +30257,0,0.516786,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.402855,0.15,4 +32646,0,0.499618,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.990826,0.15,4 +32647,0,0.486027,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.664645,0.15,4 +13173,0,0.044789,2,2,1,2,4,,3,2,5 Mile,Rd,1579605,1.437,1.482,0,1.074924,6,4.5 +11825,-1,0.333299,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.941,13.274,0,7.999183,5,5 +16264,0,0.074094,2,2,1,2,3,,3,2,Plymouth,Rd,1604102,14.464,14.538,0,1.778262,5,5 +21725,1,0.579432,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.584,20.164,0,13.906367,5,5 +11826,-1,0.232411,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.709,12.941,0,5.577866,5,5 +11827,-1,0.096203,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.613,12.709,0,2.308862,5,5 +12305,1,0.049628,1,0,0,1,3,RSF,3,2,N US 24/Plymouth,RAMP,1579410,0,0.05,0,,5,5 +16648,1,0.022674,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.267,14.29,0,0.544175,5,5 +22520,-1,0.022652,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0.096,0.119,0,0.543652,5,5 +11829,-1,0.071788,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.53,12.602,0,1.722913,5,5 +12383,1,0.124544,1,0,0,1,3,RSF,3,2,Plymouth/S US 24,RAMP,1579409,0,0.125,0,,5,5 +12819,1,0.080374,1,0,0,1,3,RSF,3,2,N US 24/Plymouth,RAMP,1579410,0.05,0.13,0,,5,5 +11830,-1,0.016404,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.514,12.53,0,0.393705,5,5 +12539,1,0.028476,1,0,0,1,3,RSF,3,2,N US 24/Plymouth,RAMP,1579410,0.13,0.158,0,,5,5 +16712,1,0.039108,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.188,14.227,0,0.938596,5,5 +22661,-1,0.066771,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0.03,0.096,0,1.602508,5,5 +22660,-1,0.02957,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0,0.03,0,0.709685,5,5 +16727,1,0.016802,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.171,14.188,0,0.403246,5,5 +16699,1,0.040084,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.227,14.267,0,0.962023,5,5 +11828,-1,0.010768,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.602,12.613,0,0.258422,5,5 +16634,1,0.105101,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.359,14.464,0,2.522417,5,5 +21345,1,0.11523,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.371,19.486,0,2.765515,5,5 +22946,-1,0.098841,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0.193,0.292,0,2.372188,5,5 +12094,1,0.116293,1,0,0,1,3,RSF,3,2,Plymouth/N US 24,RAMP,1580104,0,0.116,0,,5,5 +13169,1,0.078969,1,0,0,1,3,RSF,3,2,S US 24/Plymouth,RAMP,1579502,0.038,0.117,0,,5,5 +16639,1,0.06843,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.29,14.359,0,1.642329,5,5 +22056,1,0.062427,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.497,19.56,0,1.498244,5,5 +23416,-1,0.050837,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0.119,0.17,0,1.220099,5,5 +21033,1,0.011734,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.486,19.497,0,0.281623,5,5 +11971,1,0.037927,1,0,0,1,3,RSF,3,2,S US 24/Plymouth,RAMP,1579502,0,0.038,0,,5,5 +21841,1,0.024645,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.56,19.584,0,0.591486,5,5 +12731,1,0.020434,1,0,0,1,3,RSF,3,2,S US 24/Plymouth,RAMP,1579502,0.117,0.137,0,,5,5 +23083,-1,0.023583,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0.17,0.193,0,0.56599,5,5 +11824,-1,0.036925,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,13.274,13.311,0,0.88621,5,5 +12011,1,0.225832,2,0,0,2,3,,3,2,N US 24 CD,,1580109,0,0.226,0,5.419967,5,5 +21563,1,0.042266,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,20.164,20.206,0,1.014392,5,5 +23383,1,0.035835,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,8.929,8.965,0,0.860043,8,4.5 +24410,-1,0.237006,0,2,0,2,3,,3,2,S US 24 CD,,4711490,0,0.237,0,5.688138,5,5 +23396,1,0.046231,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,8.855,8.901,0,1.109552,8,4.5 +23394,1,0.02825,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,8.901,8.929,0,0.678012,8,4.5 +16564,0,0.211953,2,2,1,2,3,,3,2,Plymouth,Rd,1604102,14.538,14.749,0,5.086874,5,5 +11821,-1,0.512302,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,14.085,14.597,0,12.295248,5,5 +12713,0,0.403192,2,2,0,2,4,,3,1,Fenkell,St,1579605,2.01,2.413,0,9.6766,6,4.5 +15898,1,0.279209,1,0,0,1,1,ROF,3,1,W I 96/US 24,RAMP,1598907,0,0.279,0,,2.24,5 +16581,-1,0.33618,0,4,0,1,1,,3,1,W I 96,,1606503,8.611,8.947,0,,0.58,7 +21296,1,0.372261,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,20.772,21.144,0,8.934266,5,5 +23698,-1,0.373355,0,2,0,2,5,,3,1,Schoolcraft,St,4705258,9.042,9.415,0,8.960518,8,4.5 +32524,0,0.431507,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.356161,0.15,4 +32626,0,0.508529,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.204699,0.15,4 +33716,0,0.417668,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.024032,0.15,4 +13301,1,0.274991,2,0,0,2,3,,3,2,N US 24 CD,,1580109,0.291,0.566,0,6.599792,5,5 +22428,-1,0.035742,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,8.948,8.984,0,0.857796,8,4.5 +24453,-1,0.282255,0,2,0,2,3,,3,2,S US 24 CD,,4711490,0.302,0.585,0,6.774126,5,5 +22569,-1,0.050731,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,8.87,8.92,0,1.217554,8,4.5 +22515,-1,0.027893,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,8.92,8.948,0,0.669429,8,4.5 +11822,-1,0.190426,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,13.894,14.085,0,4.570231,5,5 +23617,-1,0.058057,0,2,0,2,5,,3,1,Schoolcraft,St,4705258,8.984,9.042,0,1.393358,8,4.5 +13091,0,0.037884,2,2,0,2,4,,3,2,5 Mile,Rd,1579605,1.972,2.01,0,0.909218,6,4.5 +21034,1,0.338048,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,21.144,21.482,0,8.113141,5,5 +11895,0,0.022837,2,2,0,2,4,,3,2,5 Mile,Rd,1579605,1.949,1.972,0,0.548076,6,4.5 +32627,0,0.478324,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.479781,0.15,4 +13225,0,0.151629,1,1,0,2,5,,3,1,Chicago,St,1581803,0,0.152,0,3.6391,8,4.5 +14565,0,0.249708,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,2.991,3.241,0,5.992986,5,5 +14817,0,0.284009,1,1,0,2,5,,3,1,Tireman,St,1594805,0,0.284,0,6.816223,8,4.5 +14921,0,0.408226,2,2,1,2,3,,3,1,Warren,Rd,1591804,0.517,0.925,0,9.797434,5,5 +16223,0,0.296244,1,1,0,2,5,,3,1,Spinoza,Dr,1624005,0,0.296,0,7.109857,8,4.5 +17380,0,0.04802,1,1,0,2,5,,3,1,Tireman,St,1625510,0.184,0.232,0,1.152471,8,4.5 +17419,0,0.259558,2,2,0,2,5,,3,1,Spinoza,Dr,1624005,0.296,0.556,0,6.229395,8,4.5 +17941,0,0.36448,1,1,0,2,4,,3,1,Joy,Rd,1677810,6.239,6.603,0,8.747525,6,4.5 +23717,0,0.042944,1,1,0,2,5,,3,1,Tireman,St,4707998,0,0.043,0,1.030653,8,4.5 +32649,0,0.3786,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.086399,0.15,4 +32650,0,0.447746,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.7459,0.15,4 +14925,0,0.201049,2,2,1,2,3,,3,1,Warren,Rd,1591804,0.316,0.517,0,4.825184,5,5 +15328,0,0.680997,2,2,0,2,4,,3,1,Outer,Dr,1596803,1.402,2.082,0,16.343928,6,4.5 +15628,1,0.541977,2,0,0,2,4,DV2,3,2,Outer,Dr,1596803,0.86,1.402,0,13.007455,6,4.5 +17469,0,0.1127,1,1,0,2,5,,3,1,Tireman,St,1645409,0.677,0.79,0,2.704807,8,4.5 +23442,-1,0.535094,0,2,0,2,4,DV2,3,2,Outer,Dr,4704579,0,0.535,0,12.842249,6,4.5 +32600,0,0.121062,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.905479,0.15,4 +32603,0,0.50572,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.137276,0.15,4 +14931,0,0.315617,2,2,1,2,3,,3,1,Warren,Rd,1591804,0,0.316,0,7.574806,5,5 +16259,0,0.24662,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,9.293,9.539,0,5.918891,6,4.5 +17878,0,0.303628,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,13.623,13.927,0,7.287068,5,5 +14802,0,0.057081,2,2,1,2,4,,3,2,Outer,Dr,1596803,0.803,0.86,0,1.369942,6,4.5 +17484,0,0.280832,1,1,0,2,5,,3,1,Tireman,St,1645409,0.396,0.677,0,6.739966,8,4.5 +32602,0,0.281813,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.76351,0.15,4 +32601,0,0.018653,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.447675,0.15,4 +15094,0,0.095755,2,2,0,2,4,,3,1,Outer,Dr,1596803,2.082,2.178,0,2.298121,6,4.5 +17381,0,0.184278,1,1,0,2,5,,3,1,Tireman,St,1625510,0,0.184,0,4.422671,8,4.5 +17416,0,0.525476,2,2,0,2,5,,3,1,Spinoza,Dr,1624005,0.902,1.427,0,12.611435,8,4.5 +14980,1,0.168462,2,0,0,2,4,DV2,3,1,Outer,Dr,1596803,3.449,3.617,0,4.043097,6,4.5 +17090,0,0.598724,2,2,0,2,5,,3,1,Rouge Park,Dr,1605403,0,0.599,0,14.369383,8,4.5 +23280,-1,0.168574,0,2,0,2,4,DV2,3,1,Outer,Dr,4704599,0.164,0.332,0,4.045768,6,4.5 +32607,0,0.264409,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.345817,0.15,4 +32608,0,0.267066,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.409592,0.15,4 +32613,0,0.223085,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.354032,0.15,4 +15197,1,0.163782,2,0,0,2,4,DV2,3,1,Outer,Dr,1596803,3.285,3.449,0,3.93077,6,4.5 +23287,-1,0.163813,0,2,0,2,4,DV2,3,1,Outer,Dr,4704599,0,0.164,0,3.931523,6,4.5 +15457,0,0.011009,2,2,0,2,4,,3,1,Outer,Dr,1596803,3.274,3.285,0,0.264212,6,4.5 +12996,0,0.012032,1,1,0,2,4,,3,1,Chicago,St,1579408,2.686,2.698,0,0.28877,6,4.5 +17417,0,0.29917,2,2,0,2,5,,3,1,Spinoza,Dr,1624005,0.603,0.902,0,7.180078,8,4.5 +17418,0,0.047088,2,2,0,2,5,,3,1,Spinoza,Dr,1624005,0.556,0.603,0,1.13011,8,4.5 +14910,0,0.236982,2,2,1,2,3,,3,1,Warren,Ave,1591804,1.143,1.38,0,5.687566,5,5 +15060,0,0.314696,1,1,0,2,5,,3,1,Tireman,St,1594805,0.284,0.599,0,7.552695,8,4.5 +15633,0,0.253955,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,2.494,2.748,0,6.094914,5,5 +40455,1,0.819587,3,0,0,1,1,,4,8,E I 96,,935105,15.166,15.985,0,,0.8,7.5 +32338,0,0.558423,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.402152,0.15,4 +14920,0,0.1502,2,2,1,2,3,,3,1,Warren,Rd,1591804,0.925,1.075,0,3.604791,5,5 +14917,0,0.068634,2,2,1,2,3,,3,1,Warren,Rd,1591804,1.075,1.143,0,1.647228,5,5 +32652,0,0.054493,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.307832,0.15,4 +14806,0,0.251062,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,2.243,2.494,0,6.025499,5,5 +15333,0,0.243739,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,2.748,2.991,0,5.849743,5,5 +12916,0,0.255721,2,2,0,2,5,,3,1,Chicago,St,1581803,0.278,0.533,0,6.137309,8,4.5 +15263,0,0.368454,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,3.491,3.859,0,8.842892,5,5 +18925,0,0.248729,1,1,0,2,4,,3,1,Joy,Rd,1677810,6.725,6.974,0,5.969504,6,4.5 +32605,0,0.166113,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.98672,0.15,4 +33917,0,0.484133,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.619194,0.15,4 +17520,0,0.122145,1,1,0,2,4,,3,1,Joy,Rd,1677810,6.603,6.725,0,2.931492,6,4.5 +32604,0,0.143457,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.442958,0.15,4 +13226,0,0.12594,2,2,0,2,5,,3,1,Chicago,St,1581803,0.152,0.278,0,3.022551,8,4.5 +15537,0,0.250188,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,3.241,3.491,0,6.004509,5,5 +12751,0,0.125591,2,2,0,2,5,,3,1,Chicago,St,1581803,0.533,0.659,0,3.014188,8,4.5 +15045,0,0.123762,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,3.859,3.983,0,2.970277,5,5 +11647,0,0.178141,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.8,2.978,0,4.275394,6,4.5 +12934,-1,0.435825,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,0,0.436,0,,0.58,7 +12991,0,0.495976,2,2,0,2,4,,3,1,Fenkell,St,1579605,3.475,3.971,0,11.903417,6,4.5 +13022,1,0.345834,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,0,0.346,0,,0.58,7 +13234,1,0.063329,3,0,0,2,4,DV2,3,1,Outer,Dr,1582205,0.215,0.279,0,1.519905,6,4.5 +13235,0,0.074691,2,2,0,2,4,,3,1,Burt,Rd,1582303,1.906,1.981,0,1.79259,6,4.5 +14057,1,0.141863,1,0,0,1,1,ROF,3,1,E I 96/Outer,RAMP,1589502,0,0.142,0,,2.24,5 +14853,0,0.158885,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.312,5.471,0,3.813231,5,5 +15636,0,0.249842,1,1,0,2,5,,3,1,Lyndon,St,1594902,0.667,0.917,0,5.99621,8,4.5 +16318,0,0.474021,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,15.311,15.785,0,11.3765,5,5 +17000,1,0.333875,5,0,0,1,1,,3,1,E I 96,,1606201,9.621,9.954,0,,0.58,7 +22234,-1,0.063538,0,3,0,2,4,DV2,3,1,Outer,Dr,4704245,0.112,0.176,0,1.52491,6,4.5 +22757,-1,0.353673,0,2,0,2,4,,3,1,Schoolcraft,St,4705258,10.096,10.45,0,8.488153,6,4.5 +23345,1,0.15394,2,0,0,2,4,,3,1,Schoolcraft,St,4705231,10.47,10.624,0,3.694564,6,4.5 +23349,1,0.315326,2,0,0,2,4,,3,1,Schoolcraft,St,4705231,10.117,10.433,0,7.567831,6,4.5 +24388,1,0.179965,2,0,0,2,4,DV2,3,1,Outer,Dr,4710104,0.311,0.491,0,4.319155,6,4.5 +24509,-1,0.179914,0,3,0,2,4,DV2,3,1,Outer,Dr,4708702,0.327,0.507,0,4.317927,6,4.5 +32621,0,0.560294,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.447058,0.15,4 +32654,0,0.55305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.273195,0.15,4 +32965,0,0.566843,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.604233,0.15,4 +14556,0,0.243305,2,2,0,2,4,,3,1,Outer,Dr,1596803,4.279,4.522,0,5.839315,6,4.5 +23354,1,0.175831,2,0,0,2,4,,3,1,Schoolcraft,St,4705231,9.942,10.117,0,4.219942,6,4.5 +14976,0,0.33195,2,2,0,2,4,,3,1,Outer,Dr,1596803,3.947,4.279,0,7.96679,6,4.5 +16208,0,0.386772,2,2,0,2,5,,3,1,Rouge Park,Dr,1605403,0.877,1.263,0,9.282536,8,4.5 +16625,0,0.086507,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,15.036,15.122,0,2.076167,5,5 +32612,0,0.243467,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.843201,0.15,4 +32614,0,0.252844,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.068266,0.15,4 +16149,0,0.189083,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,15.122,15.311,0,4.537999,5,5 +15532,0,0.397531,2,2,0,2,4,,3,1,Outer,Dr,1596803,4.522,4.92,0,9.540753,6,4.5 +32620,0,0.245369,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.888849,0.15,4 +15258,0,0.046208,2,2,0,2,4,,3,1,Outer,Dr,1596803,4.92,4.966,0,1.108981,6,4.5 +23359,1,0.073427,2,0,0,2,5,,3,1,Schoolcraft,St,4705231,9.855,9.929,0,1.762254,8,4.5 +32619,0,0.098243,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.357832,0.15,4 +13233,1,0.099257,2,0,0,2,4,DV2,3,1,Outer,Dr,1582205,0.116,0.215,0,2.382166,6,4.5 +15041,1,0.024964,2,0,0,2,4,DV2,3,1,Outer,Dr,1596803,4.966,4.991,0,0.599144,6,4.5 +22235,-1,0.112181,0,2,0,2,4,DV2,3,1,Outer,Dr,4704245,0,0.112,0,2.692354,6,4.5 +23356,1,0.01285,2,0,0,2,4,,3,1,Schoolcraft,St,4705231,9.929,9.942,0,0.308408,6,4.5 +14638,1,0.149938,1,0,0,1,1,RON,3,1,Outer/W I 96,RAMP,1590704,0,0.15,0,,1.09,4 +14639,1,0.216224,3,0,0,1,1,FCD,3,1,E I 96 CD,,1590703,0,0.216,0,,0.58,7 +11889,0,0.31826,2,2,0,2,4,,3,1,Fenkell,St,1579605,2.978,3.296,0,7.638247,6,4.5 +12493,1,0.301029,3,0,0,2,4,DV2,3,1,Outer,Dr,1582205,0.771,1.072,0,7.224687,6,4.5 +14810,0,0.241085,1,1,0,2,5,,3,1,Lyndon,St,1594902,0.426,0.667,0,5.786046,8,4.5 +16578,-1,0.305958,0,5,0,1,1,,3,1,W I 96,,1606503,9.36,9.666,0,,0.58,7 +22231,-1,0.305912,0,3,0,2,4,DV2,3,1,Outer,Dr,4704245,0.667,0.973,0,7.34189,6,4.5 +23063,-1,0.136877,0,2,0,2,4,,3,1,Schoolcraft,St,4705258,9.959,10.096,0,3.285054,6,4.5 +24389,1,0.311392,2,0,0,2,4,DV2,3,1,Outer,Dr,4710104,0,0.311,0,7.473418,6,4.5 +24510,-1,0.31266,0,3,0,2,4,DV2,3,1,Outer,Dr,4708702,0.015,0.327,0,7.503832,6,4.5 +30903,0,0.455211,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.925068,0.15,4 +12927,1,0.327127,3,0,0,2,4,DV2,3,1,Outer,Dr,1582205,0.279,0.606,0,7.851036,6,4.5 +13734,1,0.172839,1,0,0,1,1,RON,3,1,Outer/W I 96,RAMP,1589503,0,0.173,0,,1.09,4 +22233,-1,0.326054,0,3,0,2,4,DV2,3,1,Outer,Dr,4704245,0.176,0.502,0,7.825304,6,4.5 +23363,-1,0.012961,0,2,0,2,4,,3,1,Schoolcraft,St,4705258,9.946,9.959,0,0.311053,6,4.5 +23535,-1,0.039635,0,2,0,2,5,,3,1,Schoolcraft,St,4705258,9.907,9.946,0,0.951241,8,4.5 +12759,1,0.165083,3,0,0,2,4,DV2,3,1,Outer,Dr,1582205,0.606,0.771,0,3.961996,6,4.5 +22232,-1,0.165221,0,3,0,2,4,DV2,3,1,Outer,Dr,4704245,0.502,0.667,0,3.965308,6,4.5 +15754,0,0.014125,1,1,0,2,5,,3,1,Lyndon,St,1594902,0.412,0.426,0,0.339003,8,4.5 +12035,1,0.052434,1,0,0,2,4,DV2,3,1,Lasher,Rd,1582205,1.087,1.139,0,1.258426,6,4.5 +22230,-1,0.062999,0,1,0,2,4,DV2,3,1,Lasher,Rd,4704245,0.973,1.036,0,1.511978,6,4.5 +12330,1,0.015527,1,0,0,2,4,DV2,3,1,Outer,Dr,1582205,1.072,1.087,0,0.372657,6,4.5 +24512,-1,0.014783,0,3,0,2,4,DV2,3,1,Outer,Dr,4708702,0,0.015,0,0.354803,6,4.5 +11646,0,0.129126,1,1,0,2,4,,3,1,Lahser,Rd,1582205,1.139,1.269,0,3.099024,6,4.5 +14667,1,0.206316,1,0,0,1,1,ROF,3,1,W I 96/Outer,RAMP,1590504,0,0.206,0,,2.24,5 +14668,1,0.261791,3,0,0,1,1,FCD,3,1,W I 96 CD,,1590503,0,0.262,0,,0.58,7 +33720,0,0.141382,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.393166,0.15,4 +13089,0,0.178986,2,2,0,2,4,,3,1,Fenkell,St,1579605,3.296,3.475,0,4.295653,6,4.5 +30905,0,0.050878,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.22108,0.15,4 +30907,0,0.127281,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.054755,0.15,4 +12117,0,0.351806,1,1,0,2,4,,3,1,Burt,Rd,1582303,1.307,1.658,0,8.443338,6,4.5 +12935,-1,0.514379,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,0.436,0.95,0,,0.58,7 +13023,1,0.560954,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,0.346,0.907,0,,0.58,7 +14665,-1,0.030976,0,1,0,1,5,,3,1,Kentfield,St,1590506,0.367,0.398,0,,8,4.5 +14666,1,0.242866,1,0,0,1,1,RON,3,1,Evergreen/W I 96,RAMP,1590505,0,0.243,0,,1.09,4 +15201,0,0.198039,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,4.788,4.986,0,4.752946,5,5 +16707,0,0.254373,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,16.041,16.295,0,6.104952,5,5 +21924,1,0.037155,3,0,0,2,5,,3,1,E I 96 Service Drive,,4700002,0.408,0.445,0,0.89171,8,4.5 +32657,0,0.258909,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.213824,0.15,4 +12422,0,0.309204,1,1,0,2,4,,3,1,Burt,Rd,1582303,0.998,1.307,0,7.4209,6,4.5 +17126,0,0.255978,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,15.785,16.041,0,6.143461,5,5 +32336,0,0.263591,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.326195,0.15,4 +32659,0,0.24852,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.96449,0.15,4 +14637,1,0.252083,1,0,0,1,1,ROF,3,1,E I 96/Evergreen,RAMP,1590705,0,0.252,0,,2.24,5 +22010,1,0.375396,2,0,0,2,5,,3,1,E I 96 Service Drive,,4700002,0,0.375,0,9.009505,8,4.5 +11960,0,0.247776,1,1,0,2,4,,3,1,Burt,Rd,1582303,1.658,1.906,0,5.946627,6,4.5 +23347,1,0.03732,2,0,0,2,4,,3,1,Schoolcraft,St,4705231,10.433,10.47,0,0.895683,6,4.5 +21926,1,0.032232,3,0,0,2,5,,3,1,E I 96 Service Drive,,4700002,0.375,0.408,0,0.773557,8,4.5 +15461,0,0.309309,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,4.479,4.788,0,7.423425,5,5 +15738,0,0.163901,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,4.315,4.479,0,3.933625,5,5 +14562,0,0.086158,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.122,5.208,0,2.067795,5,5 +14662,1,0.149999,2,0,0,1,1,ROF,3,1,W I 96/N Evergreen,RAMP,1590507,0.03,0.18,0,,2.24,5 +17214,1,0.317855,1,0,0,1,1,ROF,3,1,W I 96/S Evergreen,RAMP,1628807,0,0.318,0,,2.24,5 +14636,1,0.200059,1,0,0,1,1,RON,3,1,Evergreen/E I 96,RAMP,1590706,0,0.2,0,,1.09,4 +14983,0,0.135379,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,4.986,5.122,0,3.249106,5,5 +21673,1,0.163862,2,0,0,2,5,,3,1,E I 96 Service Drive,,4700002,0.486,0.65,0,3.932678,8,4.5 +14664,-1,0.040976,0,1,0,1,5,,3,1,Evergreen/W I 96,Ramp,1590506,0.485,0.526,0,,8,4.5 +15100,0,0.089692,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.222,5.312,0,2.152611,5,5 +15335,0,0.014502,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.208,5.222,0,0.348045,5,5 +14663,1,0.030269,2,0,0,1,1,ROF,3,1,W I 96/Evergreen,RAMP,1590507,0,0.03,0,,2.24,5 +12331,0,0.308481,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.477,2.785,0,7.403533,6,4.5 +14940,0,0.495981,1,1,0,2,5,,3,1,Lyndon,St,1594902,0.917,1.413,0,11.90354,8,4.5 +15331,0,0.160066,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.97,6.13,0,3.841586,5,5 +23586,0,0.32943,1,1,0,2,4,,3,1,Schoolcraft,St,4705258,10.619,10.948,0,7.90631,6,4.5 +24387,1,0.496618,2,0,0,2,4,DV2,3,1,Outer,Dr,4710104,0.491,0.988,0,11.918823,6,4.5 +24506,-1,0.496461,0,2,0,2,4,DV2,3,1,Outer,Dr,4708702,0.507,1.004,0,11.915066,6,4.5 +32653,0,0.450393,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.809429,0.15,4 +12760,0,0.23607,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.146,2.382,0,5.665676,6,4.5 +32656,0,0.227612,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.462692,0.15,4 +13017,0,0.165023,1,1,0,2,4,,3,1,Burt,Rd,1582303,1.981,2.146,0,3.96056,6,4.5 +23415,-1,0.169624,0,2,0,2,4,,3,1,Schoolcraft,St,4705258,10.45,10.619,0,4.070981,6,4.5 +32655,0,0.070985,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.703642,0.15,4 +12572,0,0.095462,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.382,2.477,0,2.291085,6,4.5 +12118,0,0.014016,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.785,2.8,0,0.336389,6,4.5 +15395,0,0.33283,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.637,5.97,0,7.987911,5,5 +15683,0,0.166005,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.471,5.637,0,3.984127,5,5 +12304,0,0.183121,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.034,4.217,0,4.394903,6,4.5 +15096,0,0.144663,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,6.13,6.274,0,3.471909,5,5 +24385,1,0.185511,2,0,0,2,4,DV2,3,1,Outer,Dr,4710104,0.988,1.173,0,4.452254,6,4.5 +24503,-1,0.185203,0,2,0,2,4,DV2,3,1,Outer,Dr,4708702,1.004,1.189,0,4.444881,6,4.5 +33920,0,0.435034,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.440808,0.15,4 +12630,0,0.063301,2,2,0,2,4,,3,1,Fenkell,St,1579605,3.971,4.034,0,1.51923,6,4.5 +15678,0,0.177947,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,6.288,6.466,0,4.270739,5,5 +30895,0,0.056508,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.356188,0.15,4 +14847,0,0.013952,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,6.274,6.288,0,0.334845,5,5 +12495,0,0.181174,2,2,0,2,4,,3,1,Outer,Dr,1582410,0,0.181,0,4.348168,6,4.5 +24380,0,0.035924,2,2,0,2,4,,3,1,Outer,Dr,4710104,1.173,1.209,0,0.862175,6,4.5 +932,-1,0.29013,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.713,3.003,0,6.963116,5,5 +3743,0,0.31376,2,2,1,2,4,,3,3,9 Mile,Rd,684404,2.626,2.94,0,7.530242,6,4.5 +11812,-1,0.499462,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,16.59,17.089,0,11.987095,5,5 +12420,0,0.499593,2,2,0,2,4,,3,1,Lahser,Rd,1582205,3.26,3.759,0,11.990241,6,4.5 +12894,0,0.394421,3,3,0,2,3,,3,1,Grand River,Ave,1577408,0.007,0.401,0,9.466115,5,5 +15742,0,0.447048,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,8.758,9.205,0,10.72914,5,5 +16437,0,0.499669,1,1,0,2,5,,3,1,Burt,Rd,1600904,0.351,0.851,0,11.992048,8,4.5 +18070,1,0.203607,3,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,14.564,14.768,0,4.886563,5,5 +18301,0,0.243764,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,8.452,8.696,0,5.850328,5,5 +19720,1,0.328748,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.859,3.188,0,7.889958,5,5 +21603,1,0.476058,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,23.475,23.951,0,11.425399,5,5 +23736,-1,0.20675,0,3,0,2,3,DV2,3,1,McNichols,Rd,4707964,0,0.207,0,4.961999,5,5 +24372,0,0.488921,1,1,0,2,5,,3,1,Berg,Rd,4710137,0.636,1.124,0,11.734108,8,4.5 +26224,0,0.488096,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.714302,0.15,4 +29680,0,0.469972,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.279321,0.15,4 +32534,0,0.369514,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.868343,0.15,4 +32662,0,0.363818,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.731642,0.15,4 +32663,0,0.668636,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,16.047265,0.15,4 +32677,0,0.47978,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.514722,0.15,4 +32678,0,0.483352,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.600447,0.15,4 +33053,0,0.488857,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.732565,0.15,4 +33054,0,0.245934,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.902424,0.15,4 +33572,0,0.49362,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.846879,0.15,4 +33575,0,0.487404,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.697689,0.15,4 +33579,0,0.351155,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.427727,0.15,4 +33709,0,0.318085,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.634041,0.15,4 +33711,0,0.496044,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.905049,0.15,4 +33919,0,0.647038,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,15.528904,0.15,4 +11816,-1,0.496949,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,15.596,16.092,0,11.926787,5,5 +16640,-1,0.296051,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,2.203,2.499,0,7.105215,5,5 +16720,1,0.291957,4,0,0,2,3,DIV,3,1,Grand River,Ave,1600604,2.253,2.545,0,7.00698,5,5 +17916,0,0.289234,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,7.645,7.934,0,6.941609,5,5 +18390,0,0.319077,2,2,0,2,3,,3,1,McNichols,Rd,1680701,13.678,13.997,0,7.657857,5,5 +21450,1,0.496401,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,22.48,22.977,0,11.913626,5,5 +32523,0,0.533883,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.813199,0.15,4 +32536,0,0.4943,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.863195,0.15,4 +32679,0,0.241163,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.787907,0.15,4 +32681,0,0.503479,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.083502,0.15,4 +32682,0,0.262048,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.289156,0.15,4 +33715,0,0.55786,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.388652,0.15,4 +18967,0,0.244572,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,13.277,13.522,0,5.869733,5,5 +33713,0,0.615373,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.768961,0.15,4 +33714,0,0.445761,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.698271,0.15,4 +18600,0,0.156628,2,2,0,2,3,,3,1,McNichols,Rd,1680701,13.522,13.678,0,3.759071,5,5 +16649,-1,0.234449,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,1.709,1.944,0,5.626768,5,5 +16722,1,0.047235,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,1.944,1.991,0,1.133652,5,5 +18635,0,0.040806,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,7.415,7.455,0,0.979355,5,5 +32535,0,0.510987,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.263699,0.15,4 +32680,0,0.334684,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.032415,0.15,4 +32685,0,0.362594,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.702258,0.15,4 +16723,1,0.275377,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,1.669,1.944,0,6.60905,5,5 +18999,0,0.08302,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,7.332,7.415,0,1.992484,5,5 +16641,-1,0.251419,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,1.952,2.203,0,6.034055,5,5 +16721,1,0.261907,4,0,0,2,3,DIV,3,1,Grand River,Ave,1600604,1.991,2.253,0,6.285778,5,5 +18113,0,0.182717,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,7.462,7.645,0,4.385216,5,5 +16647,-1,0.007845,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,1.944,1.952,0,0.188285,5,5 +18426,0,0.006801,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,7.455,7.462,0,0.163222,5,5 +11817,-1,0.34383,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,15.252,15.596,0,8.251925,5,5 +17887,0,0.361465,2,2,0,2,3,,3,1,McNichols,Rd,1680701,14.02,14.381,0,8.675152,5,5 +21655,1,0.346384,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,22.134,22.48,0,8.313226,5,5 +30900,0,0.474554,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.389302,0.15,4 +30901,0,0.372142,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.931413,0.15,4 +32026,0,0.394082,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.457973,0.15,4 +11819,-1,0.106396,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,14.989,15.095,0,2.553508,5,5 +21842,1,0.129251,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,21.85,21.979,0,3.102024,5,5 +11818,-1,0.157013,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,15.095,15.252,0,3.768322,5,5 +21913,1,0.154771,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,21.979,22.134,0,3.714506,5,5 +18082,0,0.022352,2,2,0,2,3,,3,1,McNichols,Rd,1680701,13.997,14.02,0,0.536453,5,5 +18587,0,0.156295,3,3,0,2,3,,3,1,McNichols,Rd,1680701,14.381,14.537,0,3.75108,5,5 +18380,0,0.026954,3,3,0,2,3,,3,1,McNichols,Rd,1680701,14.537,14.564,0,0.646898,5,5 +11813,-1,0.289487,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,16.3,16.59,0,6.94769,5,5 +16608,-1,0.612039,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,2.552,3.164,0,14.688935,5,5 +16714,1,0.602044,4,0,0,2,3,DIV,3,1,Grand River,Ave,1600604,2.658,3.26,0,14.449067,5,5 +18636,0,0.247857,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,8.205,8.452,0,5.948576,5,5 +21724,1,0.302465,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,23.173,23.475,0,7.259157,5,5 +24374,0,0.310628,1,1,0,2,5,,3,1,Berg,Rd,4710137,0.325,0.636,0,7.455072,8,4.5 +32661,0,0.63984,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,15.356153,0.15,4 +11815,-1,0.183627,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,16.092,16.276,0,4.407044,5,5 +21239,1,0.172221,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,22.977,23.149,0,4.133314,5,5 +24379,1,0.15044,2,0,0,1,3,RSF,3,1,Short,St,4710127,0,0.15,0,,5,5 +16718,1,0.025723,4,0,0,2,3,DIV,3,1,Grand River,Ave,1600604,2.545,2.57,0,0.617345,5,5 +21992,1,0.023683,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,23.149,23.173,0,0.568385,5,5 +24377,1,0.077371,1,0,0,1,3,RSF,3,1,Short/Grand River,TURN,4710127,0.15,0.228,0,,5,5 +16716,1,0.087777,4,0,0,2,3,DIV,3,1,Grand River,Ave,1600604,2.57,2.658,0,2.106647,5,5 +16633,-1,0.027024,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,2.525,2.552,0,0.648582,5,5 +11814,-1,0.024163,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,16.276,16.3,0,0.57992,5,5 +16637,-1,0.025859,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,2.499,2.525,0,0.620613,5,5 +19204,0,0.176198,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,7.956,8.132,0,4.228753,5,5 +17590,0,0.022006,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,7.934,7.956,0,0.528141,5,5 +18897,0,0.072404,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,8.132,8.205,0,1.737702,5,5 +24376,0,0.325143,1,1,0,2,5,,3,1,Berg,Rd,4710137,0,0.325,0,7.803434,8,4.5 +32660,0,0.152623,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.66296,0.15,4 +32689,0,0.289416,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.945994,0.15,4 +16606,-1,0.062687,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,3.164,3.226,0,1.504498,5,5 +12944,0,0.007097,3,3,0,2,3,,3,1,Grand River,Ave,1577408,0,0.007,0,0.170329,5,5 +1964,-1,0.094407,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.076,2.17,0,2.265756,5,5 +3642,1,0.158568,1,0,0,1,3,RSF,4,3,S US 24/W M 102,RAMP,688303,0,0.159,0,,5,5 +3747,0,0.430143,1,1,1,2,4,,4,3,9 Mile,Rd,684404,1.56,1.99,0,10.323431,4.5,4.5 +4504,-1,0.639108,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,0.089,0.728,0,15.338589,5,5 +4707,1,0.721582,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,0.081,0.803,0,17.317976,5,5 +11896,1,0.132487,1,0,0,1,3,RSF,3,1,E M 102/S US 24,RAMP,1579809,0,0.133,0,,5,5 +19726,1,0.094969,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.06,2.155,0,2.279256,5,5 +21022,0,0.493241,1,1,0,2,5,,3,3,Berg,Rd,4410215,0.519,1.012,0,11.837776,8,4.5 +26226,0,0.513907,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.33377,0.15,4 +27404,0,0.581661,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.959854,0.15,4 +27405,0,0.504258,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.102186,0.15,4 +27406,0,0.529439,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.706535,0.15,4 +27740,0,0.586799,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.083168,0.15,4 +27742,0,0.549277,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.182645,0.15,4 +28073,0,0.527974,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.671383,0.15,4 +29679,0,0.533789,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.810941,0.15,4 +32533,0,0.253662,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.087892,0.15,4 +32675,0,0.231954,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.5669,0.15,4 +881,-1,0.069913,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,1.662,1.732,0,1.677914,5,5 +19729,1,0.18387,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,1.525,1.709,0,4.412868,5,5 +27407,0,0.515563,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.373521,0.15,4 +32674,0,0.531656,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.75975,0.15,4 +32532,0,0.480114,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.522743,0.15,4 +19727,1,0.21813,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,1.841,2.06,0,5.235127,5,5 +32676,0,0.491421,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.794105,0.15,4 +19728,1,0.132666,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,1.709,1.841,0,3.183996,5,5 +412,-1,0.344117,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,1.732,2.076,0,8.258807,5,5 +30250,0,0.492772,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.826529,0.15,4 +3748,0,0.167687,1,1,1,2,4,,4,3,9 Mile,Rd,684404,1.392,1.56,0,4.024485,4.5,4.5 +26229,0,0.500979,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.023506,0.15,4 +1906,-1,0.312621,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.335,2.648,0,7.502903,5,5 +3899,-1,0.009053,0,4,0,2,3,DIV,3,1,Telegraph,Rd,710009,0,0.009,0,0.217268,5,5 +4715,1,0.009103,4,0,0,2,3,DIV,3,1,Telegraph,Rd,710106,0,0.009,0,0.218467,5,5 +13126,1,0.179873,1,0,0,1,3,RSF,3,1,N US 24/E M 102,RAMP,1580301,0,0.18,0,,5,5 +13127,1,0.126981,1,0,0,1,3,RSF,3,1,E M 102/N US 24,RAMP,1580302,0,0.127,0,,5,5 +19723,1,0.282285,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.327,2.609,0,6.774849,5,5 +19725,1,0.077781,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.155,2.232,0,1.866754,5,5 +24371,0,0.465852,1,1,0,2,5,,3,1,Berg,Rd,4710137,1.124,1.59,0,11.180457,8,4.5 +32670,0,0.265898,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.381542,0.15,4 +33577,0,0.527625,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.662996,0.15,4 +33578,0,0.49918,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.980309,0.15,4 +11811,-1,0.384655,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,17.089,17.473,0,9.231725,5,5 +21451,1,0.399784,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,23.951,24.35,0,9.594827,5,5 +32671,0,0.242895,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.829479,0.15,4 +11810,-1,0.050332,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,17.473,17.524,0,1.207965,5,5 +13092,1,0.122324,1,0,0,1,3,RSF,3,1,S US 24/E M 102,RAMP,1579810,0,0.122,0,,5,5 +21344,1,0.06308,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,24.35,24.413,0,1.513918,5,5 +21031,1,0.021611,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,24.413,24.435,0,0.518668,5,5 +11809,-1,0.026742,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,17.524,17.55,0,0.641818,5,5 +19724,1,0.094468,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.232,2.327,0,2.267228,5,5 +4879,1,0.122092,1,0,0,1,3,RSF,3,3,W M 102/N US 24,RAMP,710001,0,0.122,0,,5,5 +4883,1,0.088689,1,0,0,1,3,RSF,3,3,N US 24/W M 102,RAMP,709910,0,0.089,0,,5,5 +1448,-1,0.089494,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.17,2.259,0,2.147855,5,5 +3728,1,0.122803,1,0,0,1,3,RSF,4,3,W M 102/S US 24,RAMP,684602,0,0.123,0,,5,5 +4519,-1,0.033644,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,0.055,0.089,0,0.80746,5,5 +5033,1,0.026672,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,0.055,0.081,0,0.640121,5,5 +34179,-1,0.213649,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,3.483,3.697,0,5.127582,6,4.5 +4584,-1,0.046106,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,0.009,0.055,0,1.106553,5,5 +5042,1,0.045438,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,0.009,0.055,0,1.090514,5,5 +345,-1,0.075468,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.259,2.335,0,1.811232,5,5 +19721,1,0.163171,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.696,2.859,0,3.916113,5,5 +21023,0,0.518998,1,1,0,2,5,,3,3,Berg,Rd,4410215,0,0.519,0,12.455947,8,4.5 +1388,-1,0.065242,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.648,2.713,0,1.565811,5,5 +19722,1,0.087084,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.609,2.696,0,2.090024,5,5 +27411,0,0.106216,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.549193,0.15,4 +3744,0,0.358012,2,2,1,2,4,,3,3,9 Mile,Rd,684404,2.268,2.626,0,8.592278,6,4.5 +4956,-1,0.372022,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,1.016,1.388,0,8.928529,5,5 +5028,1,0.219136,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,1.017,1.236,0,5.259274,5,5 +21021,0,0.571418,1,1,0,2,5,,3,3,Berg,Rd,4410215,1.012,1.583,0,13.714033,8,4.5 +26225,0,0.306078,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.345864,0.15,4 +27637,0,0.491058,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.785393,0.15,4 +27743,0,0.535553,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.85327,0.15,4 +29892,0,0.537796,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.907093,0.15,4 +3745,0,0.257483,2,2,1,2,4,,3,3,9 Mile,Rd,684404,2.011,2.268,0,6.179581,6,4.5 +4011,1,0.214447,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,0.803,1.017,0,5.146722,5,5 +4278,-1,0.288157,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,0.728,1.016,0,6.915778,5,5 +3746,0,0.021074,2,2,0,2,4,,3,3,9 Mile,Rd,684404,1.99,2.011,0,0.505774,6,4.5 +11959,0,0.33388,1,1,0,2,5,,3,1,Bentler,St,1582209,0.018,0.352,0,8.013114,8,4.5 +12867,0,0.196507,2,2,0,2,3,,3,1,Grand River,Ave,1577408,1.033,1.229,0,4.716166,5,5 +13155,0,0.430606,2,2,0,2,4,,3,1,Lahser,Rd,1582205,2.487,2.917,0,10.334555,6,4.5 +15257,0,0.281834,1,1,0,2,3,,3,1,Evergreen,Rd,1596908,7.468,7.75,0,6.764008,5,5 +16739,0,0.316331,1,1,0,2,5,,3,1,Pickford,St,1616109,0.252,0.569,0,7.591941,8,4.5 +18588,1,0.231726,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.453,15.685,0,5.561419,5,5 +19097,0,0.218307,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,9.441,9.659,0,5.239371,5,5 +23731,-1,0.231731,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,0.889,1.12,0,5.561538,5,5 +30555,0,0.496919,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.926058,0.15,4 +32686,0,0.331405,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.95373,0.15,4 +32693,0,0.188012,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.51228,0.15,4 +33921,0,0.379038,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.096901,0.15,4 +33922,0,0.372923,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.950159,0.15,4 +33923,0,0.172134,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.131211,0.15,4 +33924,0,0.50065,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.015611,0.15,4 +33925,0,0.367523,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.820556,0.15,4 +33926,0,0.377411,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.057875,0.15,4 +12657,0,0.257002,1,1,0,2,4,,3,1,Lahser,Rd,1582205,1.764,2.021,0,6.16804,6,4.5 +12890,0,0.247528,3,3,0,2,3,,3,1,Grand River,Ave,1577408,0.451,0.699,0,5.940683,5,5 +12929,0,0.500758,1,1,0,2,4,,3,1,Burt,Rd,1582303,3.225,3.726,0,12.0182,6,4.5 +17549,1,0.226712,3,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.017,15.244,0,5.441088,5,5 +23734,-1,0.210428,0,3,0,2,3,DV2,3,1,McNichols,Rd,4707964,0.452,0.663,0,5.050276,5,5 +32684,0,0.495228,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.88548,0.15,4 +12928,0,0.12119,1,1,0,2,4,,3,1,Lahser,Rd,1582205,1.643,1.764,0,2.908572,6,4.5 +12116,0,0.246642,1,1,0,2,5,,3,1,Redford,St,1582204,0.01,0.256,0,5.919407,8,4.5 +12494,0,0.235457,1,1,0,2,4,,3,1,Lahser,Rd,1582205,2.021,2.256,0,5.650964,6,4.5 +17873,1,0.249355,3,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,14.768,15.017,0,5.984522,5,5 +23735,-1,0.245768,0,3,0,2,3,DV2,3,1,McNichols,Rd,4707964,0.207,0.452,0,5.898422,5,5 +11957,0,0.009548,1,1,0,2,5,,3,1,Redford,St,1582204,0,0.01,0,0.229163,8,4.5 +12036,0,0.121291,1,1,0,2,4,,3,1,Lahser,Rd,1582205,2.266,2.387,0,2.910974,6,4.5 +12214,0,0.009536,1,1,0,2,4,,3,1,Lahser,Rd,1582205,2.256,2.266,0,0.228867,6,4.5 +11645,0,0.084046,1,1,0,2,5,,3,1,Redford,St,1582204,0.256,0.34,0,2.017093,8,4.5 +12891,0,0.049971,3,3,0,2,3,,3,1,Grand River,Ave,1577408,0.401,0.451,0,1.199307,5,5 +13324,0,0.09973,2,2,0,2,4,,3,1,Lahser,Rd,1582205,2.387,2.487,0,2.393526,6,4.5 +12570,0,0.121582,1,1,0,2,5,,3,1,Trinity,St,1582302,1.858,1.98,0,2.91796,8,4.5 +12886,0,0.245893,2,2,0,2,3,,3,1,Grand River,Ave,1577408,0.718,0.964,0,5.901423,5,5 +18845,1,0.178604,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.275,15.453,0,4.286495,5,5 +23732,-1,0.190616,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,0.698,0.889,0,4.57479,5,5 +12889,0,0.019306,3,3,0,2,3,,3,1,Grand River,Ave,1577408,0.699,0.718,0,0.46334,5,5 +23733,-1,0.035199,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,0.663,0.698,0,0.844786,5,5 +19151,1,0.030893,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.244,15.275,0,0.741432,5,5 +11958,0,0.017844,1,1,0,2,5,,3,1,Bentler,St,1582209,0,0.018,0,0.428259,8,4.5 +12761,0,0.078566,1,1,0,2,4,,3,1,Burt,Rd,1582303,3.726,3.804,0,1.88558,6,4.5 +32683,0,0.008608,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.206596,0.15,4 +12869,0,0.068908,2,2,0,2,3,,3,1,Grand River,Ave,1577408,0.964,1.033,0,1.653802,5,5 +12571,0,0.011119,1,1,0,2,5,,3,1,Trinity,St,1582302,1.98,1.991,0,0.266845,8,4.5 +12658,0,0.258922,2,2,0,2,4,,3,1,Lahser,Rd,1582205,3.001,3.26,0,6.214126,6,4.5 +13016,0,0.15145,1,1,0,2,5,,3,1,Bentler,St,1582209,0.667,0.818,0,3.634811,8,4.5 +17038,0,0.252499,1,1,0,2,5,,3,1,Pickford,St,1616109,0,0.252,0,6.059967,8,4.5 +17792,0,0.249646,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,8.941,9.191,0,5.991497,5,5 +12843,0,0.08353,2,2,0,2,4,,3,1,Lahser,Rd,1582205,2.917,3.001,0,2.004717,6,4.5 +18114,0,0.245348,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,8.696,8.941,0,5.888351,5,5 +13325,0,0.31515,1,1,0,2,5,,3,1,Bentler,St,1582209,0.352,0.667,0,7.563592,8,4.5 +32687,0,0.250137,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.003294,0.15,4 +17591,0,0.249903,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,9.191,9.441,0,5.997666,5,5 +33928,0,0.250427,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.010248,0.15,4 +12844,0,0.194859,1,1,0,2,5,,3,1,Bentler,St,1582209,0.818,1.013,0,4.676618,8,4.5 +32691,0,0.174263,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.182305,0.15,4 +12659,1,0.374141,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,0.826,1.2,0,8.97938,6,4.5 +12865,0,0.376029,2,2,0,2,3,,3,1,Grand River,Ave,1577408,1.229,1.605,0,9.024686,5,5 +14554,0,0.447623,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,7.009,7.457,0,10.742944,5,5 +18071,1,0.208867,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.794,16.003,0,5.012805,5,5 +23360,-1,0.416986,0,2,0,2,4,DV2,3,1,Outer,Dr,4704597,0.457,0.874,0,10.007653,6,4.5 +23729,-1,0.210315,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,1.228,1.438,0,5.047554,5,5 +18258,1,0.109497,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.685,15.794,0,2.627936,5,5 +23730,-1,0.107896,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,1.12,1.228,0,2.589503,5,5 +12037,1,0.245093,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,0.328,0.573,0,5.882237,6,4.5 +12860,0,0.302743,2,2,1,2,3,,3,1,Grand River,Ave,1577408,1.605,1.908,0,7.265833,5,5 +14974,0,0.418198,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,6.591,7.009,0,10.036743,5,5 +23385,-1,0.250467,0,2,0,2,4,DV2,3,1,Outer,Dr,4704597,0,0.25,0,6.011202,6,4.5 +12332,0,0.02202,2,2,0,2,4,,3,1,Outer,Dr,1582410,0.306,0.328,0,0.528472,6,4.5 +11648,1,0.195418,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,0.573,0.768,0,4.69004,6,4.5 +23384,-1,0.194971,0,2,0,2,4,DV2,3,1,Outer,Dr,4704597,0.25,0.445,0,4.679312,6,4.5 +12859,0,0.007925,2,2,1,2,3,,3,1,Grand River,Ave,1577408,1.908,1.916,0,0.190203,5,5 +12930,1,0.045661,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,0.78,0.826,0,1.095866,6,4.5 +12216,1,0.008924,1,0,0,2,5,DV2,3,1,Bretton,Dr,1582509,0.253,0.261,0,0.214176,8,4.5 +22692,-1,0.008805,0,1,0,2,5,DV2,3,1,Bretton,Dr,4704882,0.226,0.235,0,0.211311,8,4.5 +23361,-1,0.011471,0,2,0,2,4,DV2,3,1,Outer,Dr,4704597,0.445,0.457,0,0.275314,6,4.5 +13156,1,0.011952,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,0.768,0.78,0,0.286843,6,4.5 +17550,0,0.262616,2,2,0,2,3,,3,1,McNichols,Rd,1680701,16.058,16.321,0,6.302781,5,5 +15530,0,0.0114,1,1,0,2,3,,3,1,Evergreen,Rd,1596908,7.457,7.468,0,0.273608,5,5 +17740,1,0.055372,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,16.003,16.058,0,1.328935,5,5 +23728,-1,0.055248,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,1.438,1.494,0,1.325951,5,5 +12497,1,0.193252,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,1.2,1.393,0,4.638056,6,4.5 +23358,-1,0.195461,0,2,0,2,4,DV2,3,1,Outer,Dr,4704597,0.874,1.069,0,4.691067,6,4.5 +19055,0,0.013504,2,2,0,2,3,,3,1,McNichols,Rd,1680701,16.321,16.335,0,0.324092,5,5 +14909,0,0.295945,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,8.462,8.758,0,7.102685,5,5 +15398,0,0.184398,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,8.11,8.295,0,4.425553,5,5 +16472,0,0.43341,1,1,0,2,5,,3,1,Pickford,St,1616109,0.569,1.002,0,10.401833,8,4.5 +18898,0,0.275957,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,9.659,9.935,0,6.622978,5,5 +15040,0,0.214295,1,1,0,2,3,,3,1,Evergreen,Rd,1596908,7.75,7.964,0,5.143088,5,5 +15686,0,0.145987,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,7.964,8.11,0,3.503678,5,5 +15149,0,0.167165,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,8.295,8.462,0,4.011955,5,5 +262,-1,0.512933,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,3.593,4.106,0,12.310387,5,5 +2971,0,0.52114,1,1,1,2,4,,3,3,Evergreen,Rd,666003,0.023,0.544,0,12.507355,6,4.5 +3713,0,0.142398,1,1,1,2,4,,3,3,Lahser,Rd,685510,0.447,0.589,0,3.417546,6,4.5 +3740,0,0.393914,2,2,0,2,4,,3,3,9 Mile,Rd,684404,3.582,3.976,0,9.453941,6,4.5 +19714,1,0.249484,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,3.685,3.934,0,5.987622,5,5 +26199,0,0.374937,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.998482,0.15,4 +27414,0,0.596399,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.313568,0.15,4 +27428,0,0.418865,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.052756,0.15,4 +27462,0,0.433493,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.403827,0.15,4 +29891,0,0.543228,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.037473,0.15,4 +33710,0,0.250094,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.002249,0.15,4 +739,-1,0.387297,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,3.206,3.593,0,9.295125,5,5 +12215,0,0.475098,2,2,0,2,4,,3,1,Lahser,Rd,1582205,3.759,4.234,0,11.402354,6,4.5 +16412,0,0.477668,1,1,0,2,5,,3,1,Burt,Rd,1600904,0.851,1.328,0,11.464022,8,4.5 +19718,1,0.434351,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,3.188,3.622,0,10.424413,5,5 +29491,0,0.245458,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.890995,0.15,4 +31339,0,0.518057,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.433372,0.15,4 +32669,0,0.524748,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.593941,0.15,4 +32672,0,0.500724,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.017376,0.15,4 +33576,0,0.248281,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.958735,0.15,4 +32668,0,0.244262,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.862288,0.15,4 +1178,-1,0.203573,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,3.003,3.206,0,4.885757,5,5 +40442,-1,0.085623,0,2,0,2,4,DIV,3,3,Lahser,Rd,4463310,0,0.086,0,2.054942,6,4.5 +40444,1,0.23839,2,0,0,2,4,DIV,3,3,Lahser,Rd,685510,0.17,0.408,0,5.72136,6,4.5 +3717,0,0.011607,2,2,0,2,4,,3,1,Lahser,Rd,685510,0,0.012,0,0.278574,6,4.5 +3716,0,0.010909,2,2,0,2,4,,3,3,Lahser,Rd,685510,0.012,0.023,0,0.261809,6,4.5 +32666,0,0.247266,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.934381,0.15,4 +19717,1,0.062714,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,3.622,3.685,0,1.505147,5,5 +3712,0,0.312565,1,1,1,2,4,,3,3,Lahser,Rd,685510,1.011,1.323,0,7.501557,6,4.5 +3742,0,0.506601,2,2,0,2,4,,3,3,9 Mile,Rd,684404,2.94,3.446,0,12.158423,6,4.5 +26223,0,0.518914,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.453927,0.15,4 +27415,0,0.547926,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.150234,0.15,4 +3711,0,0.100209,1,1,1,2,4,,3,3,Lahser,Rd,685510,1.323,1.423,0,2.405027,6,4.5 +27412,0,0.244308,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.863396,0.15,4 +3741,0,0.135719,2,2,0,2,4,,3,3,9 Mile,Rd,684404,3.446,3.582,0,3.257257,6,4.5 +15143,0,0.236445,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,9.205,9.441,0,5.674686,5,5 +32667,0,0.482862,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.58868,0.15,4 +33708,0,0.529868,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.716828,0.15,4 +19713,1,0.24817,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,3.934,4.182,0,5.95608,5,5 +1828,-1,0.094587,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,4.106,4.201,0,2.27008,5,5 +2730,0,0.011199,2,2,0,2,3,,3,1,Evergreen,Rd,666003,0,0.011,0,0.268767,5,5 +3269,0,0.011389,2,2,0,2,3,,3,3,Evergreen,Rd,666003,0.011,0.023,0,0.273336,5,5 +2657,0,0.505729,1,1,1,2,4,,3,3,Evergreen,Rd,666003,1.003,1.509,0,12.137485,6,4.5 +3739,0,0.125599,2,2,0,2,4,,3,3,9 Mile,Rd,684404,3.976,4.101,0,3.014373,6,4.5 +26200,0,0.357602,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.582439,0.15,4 +26227,0,0.372781,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.946736,0.15,4 +2924,0,0.276224,1,1,1,2,4,,3,3,Evergreen,Rd,666003,0.727,1.003,0,6.629369,6,4.5 +3233,0,0.157487,1,1,1,2,4,,3,3,Evergreen,Rd,666003,0.57,0.727,0,3.7797,6,4.5 +2713,0,0.025964,1,1,1,2,4,,3,3,Evergreen,Rd,666003,0.544,0.57,0,0.623134,6,4.5 +26197,0,0.200422,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.81013,0.15,4 +10835,1,0.604528,3,0,0,1,1,,3,2,E I 94,,1576405,21.924,22.529,0,,0.58,7 +10865,1,1.348319,3,0,0,1,1,,3,2,E I 94,,1576405,17.558,18.906,0,,0.58,7 +11750,0,0.176354,3,3,1,2,3,,3,2,Michigan,Ave,1577103,1.378,1.554,0,4.232505,5,5 +11763,1,0.343626,1,0,0,1,1,RON,3,2,US 12/E I 94,RAMP,1577102,0,0.344,0,,1.09,4 +11765,1,0.295773,2,0,0,1,1,ROF,3,2,E I 94/US 12 & Wyoming,RAMP,1577010,0,0.296,0,,2.24,5 +11766,0,0.3519,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,4.256,4.608,0,8.445602,6,4.5 +11799,1,0.660749,2,0,0,1,1,RFS,3,2,E I 94/N M 39,RAMP,1576907,0,0.661,0,,0.22,6 +12348,0,0.196947,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.281,7.478,0,4.726717,6,4.5 +13128,1,0.323476,2,0,0,1,1,RFF,3,2,S M 39/I 94,RAMP,1580306,0,0.323,0,,0.58,7 +14008,-1,1.181505,0,3,0,1,1,,3,2,W I 94,,1588802,17.659,18.84,0,,0.58,7 +14442,-1,0.67287,0,3,0,1,1,,2,2,W I 94,,1588802,21.544,22.216,0,,0.32,8.5 +14741,0,0.221951,2,2,0,2,4,,3,2,Miller,Rd,1589801,2.33,2.552,0,5.326819,6,4.5 +14830,-1,0.589683,0,3,0,2,3,DIV,3,1,Fort,St,1592106,14,14.589,0,14.152383,5,5 +14952,-1,0.583353,0,3,0,1,1,,3,2,S I 75,,1595106,15.365,15.948,0,,0.58,7 +15055,0,0.469248,1,1,0,2,5,,3,2,Emmons,Blvd,1593310,1.518,1.987,0,11.261951,8,4.5 +15093,0,0.622823,3,3,1,2,3,,3,2,Ford,Rd,1595510,19.351,19.973,0,14.947763,5,5 +15151,0,0.728901,2,2,1,2,4,,3,2,Allen,Rd,1594605,0.435,1.164,0,17.493615,6,4.5 +15229,1,0.744628,3,0,0,1,1,,3,1,N I 75,,1592010,15.324,16.069,0,,0.58,7 +15287,-1,0.409981,0,3,0,1,2,,3,2,S M 39,,1592407,2.765,3.175,0,,0.58,7 +15371,-1,0.202304,0,3,0,2,3,DIV,3,1,Fort,St,1592106,13.798,14,0,4.855307,5,5 +15470,1,0.315973,3,0,0,2,3,DIV,3,1,Fort,St,1592105,14.439,14.755,0,7.583354,5,5 +15482,1,0.189618,4,0,0,1,2,,3,2,N M 39,,1592408,2.988,3.177,0,,0.58,7 +15693,-1,0.07338,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0,0.073,0,1.761121,8,4.5 +15747,1,0.217093,3,0,0,2,3,DIV,3,1,Fort,St,1592105,13.928,14.146,0,5.210242,5,5 +17430,0,0.31253,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,1.106,1.419,0,7.50071,5,5 +17455,0,0.441087,1,1,0,2,5,,3,2,River,Dr,1660207,0.692,1.133,0,10.586091,8,4.5 +17791,1,0.420219,2,0,0,2,5,,3,2,Van Born/N M 39 Service Drive,,1670203,10.265,10.685,0,10.085254,8,4.5 +17889,0,0.211478,2,2,1,2,3,,3,2,Dix,Ave,1688707,7.922,8.133,0,5.075482,5,5 +18346,0,0.205777,1,1,0,2,5,,3,2,Marion Industrial,Hwy,1708204,0.961,1.167,0,4.938644,8,4.5 +19547,1,0.360139,1,0,0,1,1,RFF,3,2,W I 94/N M 39,RAMP,1869601,0.186,0.546,0,,0.58,7 +20187,0,0.292825,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,16.767,17.06,0,7.0278,5,5 +22845,0,0.231658,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0.546,0.777,0,5.559794,5,5 +23963,0,0.546376,1,1,0,2,4,,3,1,Mellon,St,4706636,0.055,0.601,0,13.113022,6,4.5 +24338,0,0.497167,2,2,1,2,3,,3,2,Southfield,Rd,4710185,0.409,0.906,0,11.932016,5,5 +24362,0,0.486779,1,1,0,2,5,,3,2,Goddard,Rd,5491821,0,0.487,0,11.682707,8,4.5 +24394,1,0.305895,3,0,0,2,3,DV2,3,1,Outer,Dr,4710093,1.621,1.927,0,7.341489,5,5 +24421,1,0.300518,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,0.38,0.68,0,7.212437,5,5 +24441,1,0.296835,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,2.612,2.908,0,7.124035,5,5 +24457,1,0.305656,3,0,0,2,3,DV2,3,1,Outer,Dr,4710092,1.365,1.67,0,7.335738,5,5 +31942,0,0.677092,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.250197,0.15,4 +31946,0,0.443638,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.647316,0.15,4 +31957,0,0.371149,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.907574,0.15,4 +31958,0,0.345586,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.294058,0.15,4 +31963,0,0.478767,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.490415,0.15,4 +32401,0,0.367154,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.811696,0.15,4 +32407,0,0.61515,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.763607,0.15,4 +32427,0,0.599238,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.381709,0.15,4 +32428,0,0.633454,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.202901,0.15,4 +32741,0,0.427276,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.254616,0.15,4 +32748,0,0.881702,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,21.160851,0.15,4 +32776,0,0.593922,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.254131,0.15,4 +12058,0,0.322339,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,5.733,6.056,0,7.736143,8,4.5 +12870,0,0.31651,2,2,1,2,3,,3,2,Northline,Rd,1578505,5.489,5.806,0,7.596236,5,5 +14777,0,0.19397,1,1,0,2,5,,3,2,Champaign,Rd,1592404,0.823,1.017,0,4.655283,8,4.5 +14825,1,0.490655,3,0,0,1,1,,3,2,N I 75,,1592010,12.78,13.27,0,,0.58,7 +14827,1,2.023959,3,0,0,1,1,,3,2,N I 75,,1592010,10.756,12.78,0,,0.58,7 +15176,0,0.271297,1,1,0,2,4,,3,2,Allen,Rd,1594602,0.537,0.808,0,6.511127,6,4.5 +15192,1,0.362733,1,0,0,1,1,RON,3,2,Dix/S I 75,RAMP,1594504,0,0.363,0,,1.09,4 +15233,1,0.267143,4,0,0,2,3,DIV,3,2,N M 39,,1592408,1.009,1.276,0,6.411422,5,5 +15234,1,0.151764,1,0,0,1,1,ROF,3,2,N I 75/S Dix,RAMP,1594410,0,0.152,0,,2.24,5 +15295,-1,2.025556,0,3,0,1,1,,3,2,S I 75,,1595106,10.756,12.781,0,,0.58,7 +15403,-1,0.427914,0,3,0,2,3,DIV,3,2,Fort,St,1592106,11.515,11.943,0,10.269931,5,5 +15432,-1,0.501957,0,3,0,1,1,,3,2,S I 75,,1595106,12.781,13.283,0,,0.58,7 +15580,-1,0.266998,0,4,0,2,3,DIV,3,2,S M 39,,1592407,1.017,1.284,0,6.407951,5,5 +15756,1,0.50009,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.932,12.432,0,12.002163,5,5 +17480,0,0.549864,1,1,0,2,4,,3,2,Moran,Rd,1660106,0,0.55,0,13.196737,6,4.5 +17622,0,0.341358,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0.419,0.76,0,8.192596,5,5 +18364,0,0.142132,1,1,0,2,5,,3,2,Reeck,Rd,1662707,1.874,2.016,0,3.411158,8,4.5 +18381,0,0.370098,3,3,1,2,3,,3,2,Dix,Ave,1688707,5.253,5.623,0,8.882348,5,5 +18979,0,0.393585,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,3.369,3.763,0,9.446047,5,5 +24350,0,0.157118,1,1,0,2,5,,3,2,London,Ave,4710165,0.272,0.429,0,3.770831,8,4.5 +24360,0,0.166255,1,1,0,2,5,,3,2,Superior,Ave,4711367,0.487,0.653,0,3.990122,8,4.5 +30808,0,0.304691,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.312592,0.15,4 +30813,0,0.375406,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.009737,0.15,4 +30821,0,0.165503,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.972077,0.15,4 +30824,0,0.171251,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.110029,0.15,4 +30825,0,0.423086,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.15406,0.15,4 +30827,0,0.35997,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.639282,0.15,4 +31007,0,0.516834,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.404016,0.15,4 +31956,0,0.551038,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.224905,0.15,4 +31970,0,0.380882,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.141167,0.15,4 +31972,0,0.161893,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.885438,0.15,4 +31973,0,0.378038,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.072922,0.15,4 +33738,0,0.55844,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.402561,0.15,4 +33739,0,0.648384,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.561223,0.15,4 +12440,0,0.578188,2,2,1,2,4,,3,2,Goddard,Rd,1578601,4.518,5.096,0,13.876506,6,4.5 +12883,1,0.266707,2,0,0,2,3,DIV,3,2,Northline,Rd,1578505,4.581,4.848,0,6.400979,5,5 +18178,0,0.338381,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,1.841,2.18,0,8.121141,8,4.5 +18366,0,0.493543,1,1,0,2,5,,3,2,Reeck,Rd,1662707,0.741,1.235,0,11.845024,8,4.5 +22530,0,0.499874,2,2,1,2,3,,3,2,Allen,Rd,4705756,8.321,8.82,0,11.996987,5,5 +23816,-1,0.138693,0,2,0,2,3,DIV,3,2,Northline,Rd,4707653,0,0.139,0,3.32864,5,5 +30785,0,0.485596,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.65431,0.15,4 +30828,0,0.595676,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.296214,0.15,4 +31964,0,0.293863,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.052708,0.15,4 +31974,0,0.44908,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.777932,0.15,4 +12946,0,0.175032,1,1,0,2,3,,3,2,Northline,Rd,1578505,4.269,4.444,0,4.200773,5,5 +15114,1,0.294549,1,0,0,1,1,ROF,3,2,S I 75/Northline,RAMP,1595205,0,0.294,0,,2.24,5 +15616,1,0.161797,1,0,0,1,1,RON,3,2,Northline/N I 75,RAMP,1592307,0,0.162,0,,1.09,4 +18153,1,0.679184,2,0,0,2,5,DV2,3,2,Prechter,Blvd,1665305,0,0.679,0,16.300422,8,4.5 +18829,0,0.741507,1,1,0,2,5,,3,2,Reeck,Rd,1662707,0,0.741,0,17.796162,8,4.5 +22813,0,0.499238,2,2,1,2,3,,3,2,Allen,Rd,4705756,7.822,8.321,0,11.981712,5,5 +23817,-1,0.668084,0,2,0,2,5,DV2,3,2,Prechter,Blvd,4707652,0,0.668,0,16.034008,8,4.5 +30784,0,0.240735,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.777632,0.15,4 +30816,0,0.373161,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.955862,0.15,4 +12961,0,0.158303,2,2,1,2,3,,3,2,Northline,Rd,1578505,3.996,4.155,0,3.799262,5,5 +14789,-1,0.385356,0,2,0,1,5,,3,2,Frontage,Rd,1592306,0,0.385,0,,8,4.5 +22747,0,0.18935,2,2,1,2,3,,3,2,Allen,Rd,4705756,7.387,7.576,0,4.544402,5,5 +30792,0,0.255259,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.126228,0.15,4 +23024,0,0.062573,2,2,1,2,3,,3,2,Allen,Rd,4705756,7.324,7.387,0,1.501751,5,5 +23091,0,0.190499,2,2,1,2,3,,3,2,Allen,Rd,4705756,7.631,7.822,0,4.571967,5,5 +23435,0,0.055382,2,2,1,2,3,,3,2,Allen,Rd,4705756,7.576,7.631,0,1.329159,5,5 +13349,0,0.11466,2,2,1,2,3,,3,2,Northline,Rd,1578505,4.155,4.269,0,2.751851,5,5 +13282,1,0.136791,2,0,0,2,3,DIV,3,2,Northline,Rd,1578505,4.444,4.581,0,3.282995,5,5 +23422,0,0.538536,1,1,0,2,5,,3,2,Reeck,Rd,4705866,0.999,1.537,0,12.924853,8,4.5 +31975,0,0.139401,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.345635,0.15,4 +12072,0,0.176127,2,2,1,2,4,,3,2,Goddard,Rd,1578601,4.342,4.518,0,4.227058,6,4.5 +14972,1,0.100321,1,0,0,2,4,,3,2,Allen,Rd,1594602,0.074,0.175,0,2.407703,6,4.5 +18576,0,0.093091,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0,0.093,0,2.234176,5,5 +18828,0,0.24739,1,1,0,2,5,,3,2,Reeck,Rd,1662707,1.235,1.482,0,5.937358,8,4.5 +31690,0,0.458162,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.995893,0.15,4 +33968,0,0.256706,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.160948,0.15,4 +13367,0,0.256507,2,2,1,2,4,,3,2,Goddard,Rd,1578601,3.989,4.246,0,6.15617,6,4.5 +15191,0,0.074399,2,2,1,2,3,,3,2,Pelham,Rd,1594602,0,0.074,0,1.785567,5,5 +12453,0,0.095656,2,2,1,2,4,,3,2,Goddard,Rd,1578601,4.246,4.342,0,2.295745,6,4.5 +14968,0,0.288114,1,1,0,2,4,,3,2,Allen,Rd,1594602,0.249,0.537,0,6.914736,6,4.5 +19047,0,0.283831,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0.135,0.419,0,6.811948,5,5 +31698,0,0.217131,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.211134,0.15,4 +15189,1,0.074313,1,0,0,2,4,,3,2,Allen,Rd,1594602,0.175,0.249,0,1.783521,6,4.5 +21460,1,0.026885,1,0,0,2,4,,3,2,Pelham/Allen Cutoff,,4700003,0,0.027,0,0.645244,6,4.5 +24488,-1,0.06712,0,1,0,2,4,,3,2,Allen,Rd,4708238,0,0.067,0,1.610889,6,4.5 +17641,0,0.042198,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0.093,0.135,0,1.012744,5,5 +18826,0,0.265001,1,1,0,2,5,,3,2,Reeck,Rd,1662707,1.609,1.874,0,6.360021,8,4.5 +31691,0,0.204256,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.902133,0.15,4 +18365,0,0.127187,1,1,0,2,5,,3,2,Reeck,Rd,1662707,1.482,1.609,0,3.05248,8,4.5 +30826,0,0.235762,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.658283,0.15,4 +13271,0,0.371204,2,2,1,2,3,,3,2,Northline,Rd,1578505,5.118,5.489,0,8.908899,5,5 +13279,0,0.109331,2,2,1,2,3,,3,2,Northline,Rd,1578505,4.848,4.957,0,2.623944,5,5 +18182,0,0.354721,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,1.151,1.506,0,8.513294,8,4.5 +30786,0,0.414135,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.939236,0.15,4 +31966,0,0.327393,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.857428,0.15,4 +33314,0,0.389057,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.33736,0.15,4 +12878,0,0.161469,2,2,1,2,3,,3,2,Northline,Rd,1578505,4.957,5.118,0,3.875256,5,5 +31965,0,0.372076,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.929821,0.15,4 +19173,0,0.196058,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,3.173,3.369,0,4.705389,5,5 +24220,0,0.134366,1,1,0,2,5,,3,2,Superior,Ave,4711367,0.353,0.487,0,3.224788,8,4.5 +18621,0,0.141884,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,1.01,1.151,0,3.405207,8,4.5 +18614,0,0.335488,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,1.506,1.841,0,8.051711,8,4.5 +12061,0,0.413255,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,5.096,5.509,0,9.918123,8,4.5 +12439,0,0.224803,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,5.509,5.733,0,5.395265,8,4.5 +14224,-1,0.490266,0,3,0,1,1,,3,2,W I 94,,1588802,17.169,17.659,0,,0.58,7 +14751,-1,0.48968,0,4,0,2,3,DIV,3,2,S M 39,,1592407,1.964,2.454,0,11.752311,5,5 +15160,0,0.470141,1,1,0,2,5,,3,2,Park,Ave,1594603,1.253,1.723,0,11.283376,8,4.5 +15162,0,0.196654,2,2,0,2,4,,3,2,Allen,Rd,1594602,1.991,2.187,0,4.719689,6,4.5 +15226,1,0.519915,4,0,0,2,3,DIV,3,2,N M 39,,1592408,1.961,2.481,0,12.477962,5,5 +15309,0,0.136127,1,1,0,2,5,,3,2,Champaign,Rd,1592404,1.765,1.901,0,3.267039,8,4.5 +16818,0,0.451752,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,13.385,13.836,0,10.842057,5,5 +18891,0,0.583067,1,1,0,2,5,,3,2,Moore,Ave,1657805,0.441,1.024,0,13.993609,8,4.5 +19548,1,0.185611,1,0,0,1,1,RFF,3,2,W I 94/M 39 & Pelham,RAMP,1869601,0,0.186,0,,0.58,7 +30818,0,0.513063,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.313518,0.15,4 +31967,0,0.408872,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.812925,0.15,4 +31968,0,0.442226,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.613419,0.15,4 +31971,0,0.416855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.004516,0.15,4 +31977,0,0.269796,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.475109,0.15,4 +32290,0,0.344553,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.269275,0.15,4 +32297,0,0.44622,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.709272,0.15,4 +14939,0,0.289775,2,2,0,2,4,,3,2,Allen,Rd,1594602,1.349,1.638,0,6.954598,6,4.5 +15170,0,0.246105,2,2,1,2,4,,3,2,Allen,Rd,1594602,0.857,1.103,0,5.906531,6,4.5 +18423,0,0.201481,1,1,0,2,5,,3,2,Moore,Ave,1657805,0.24,0.441,0,4.835555,8,4.5 +18506,0,0.339129,1,1,0,2,5,,3,2,Champaign,Rd,1653005,1.736,2.075,0,8.139092,8,4.5 +33737,0,0.558456,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.402953,0.15,4 +19033,0,0.166432,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0.76,0.927,0,3.994359,5,5 +14951,0,0.048491,1,1,0,2,4,,3,2,Allen,Rd,1594602,0.808,0.857,0,1.16378,6,4.5 +32291,0,0.06563,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.575121,0.15,4 +18825,0,0.403249,1,1,0,2,5,,3,2,Reeck,Rd,1662707,2.016,2.419,0,9.677974,8,4.5 +14943,0,0.196996,2,2,1,2,4,,3,2,Allen,Rd,1594602,1.103,1.3,0,4.727896,6,4.5 +15165,0,0.049141,2,2,0,2,4,,3,2,Allen,Rd,1594602,1.3,1.349,0,1.179391,6,4.5 +14935,0,0.3292,2,2,0,2,4,,3,2,Allen,Rd,1594602,1.662,1.991,0,7.900792,6,4.5 +14775,0,0.151443,1,1,0,2,5,,3,2,Champaign,Rd,1592404,1.901,2.052,0,3.634626,8,4.5 +15164,0,0.023079,2,2,0,2,4,,3,2,Allen,Rd,1594602,1.638,1.662,0,0.553901,6,4.5 +11063,1,0.519331,3,0,0,1,1,,3,2,E I 94,,1576405,17.039,17.558,0,,0.58,7 +11802,1,0.125395,2,0,0,1,2,FCD,3,2,N M 39 CD,,1576906,0,0.125,0,,0.58,7 +11803,1,0.593298,2,0,0,1,1,RFS,3,2,S M 39/E I 94,RAMP,1576902,0,0.593,0,,0.22,6 +11805,1,0.375386,1,0,0,1,1,RFS,3,2,E I 94/S M 39,RAMP,1576901,0.576,0.951,0,,0.22,6 +12823,1,0.316056,2,0,0,1,1,RFF,3,2,W I 94/S M 39 & Pelham,RAMP,1580309,0,0.316,0,,0.58,7 +12824,1,0.342664,1,0,0,1,1,RFS,3,2,W I 94/S M 39,RAMP,1580309,0.316,0.659,0,,0.22,6 +14301,1,0.274186,1,0,0,1,2,ROF,3,2,N M 39/Van Born,RAMP,1589506,0,0.274,0,,2.24,5 +15224,1,0.477175,3,0,0,1,2,,3,2,N M 39,,1592408,2.511,2.988,0,,0.58,7 +15572,-1,0.221702,0,3,0,1,2,,3,2,S M 39,,1592407,2.544,2.765,0,,0.58,7 +18894,1,0.216818,1,0,0,2,5,DV2,3,2,Pinecrest,Dr,1656703,1.135,1.352,0,5.203627,8,4.5 +22695,-1,0.186067,0,1,0,2,5,DV2,3,2,Pinecrest,Dr,4704864,0.4,0.586,0,4.465613,8,4.5 +24297,1,0.353986,1,0,0,1,1,RFS,3,2,N M 39/W I 94,RAMP,4710283,0,0.354,0,,0.22,6 +32286,0,0.20793,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.990317,0.15,4 +32287,0,0.194345,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.664281,0.15,4 +32289,0,0.244747,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.873939,0.15,4 +11801,1,0.275323,1,0,0,1,2,FCD,3,2,N M 39 CD,,1576906,0.125,0.401,0,,0.58,7 +13129,1,0.300511,2,0,0,1,1,RFF,3,2,S M 39/W I 94,RAMP,1580306,0.323,0.624,0,,0.58,7 +14341,-1,0.364205,0,3,0,1,1,,3,2,W I 94,,1588802,16.805,17.169,0,,0.58,7 +18932,1,0.021189,2,0,0,2,5,,3,2,Van Born/N M 39 Service Drive,,1670203,10.244,10.265,0,0.508545,8,4.5 +17528,0,0.080708,2,2,1,2,3,,3,2,Van Born,Rd,1670203,10.163,10.244,0,1.936985,5,5 +14407,1,0.248983,1,0,0,1,2,RON,3,2,Van Born/S M 39,RAMP,1589504,0,0.249,0,,1.09,4 +11800,1,0.028233,2,0,0,1,2,FCD,3,2,N M 39 CD,,1576906,0.401,0.429,0,,0.58,7 +11797,1,0.394186,1,0,0,1,1,RFS,3,2,N M 39/E I 94,RAMP,1576908,0.037,0.431,0,,0.22,6 +15290,-1,0.04675,0,4,0,1,2,,3,2,S M 39,,1592407,2.497,2.544,0,,0.58,7 +15483,1,0.029969,4,0,0,1,2,,3,2,N M 39,,1592408,2.481,2.511,0,,0.58,7 +15577,-1,0.02386,0,4,0,2,3,DIV,3,2,S M 39,,1592407,2.454,2.478,0,0.572629,5,5 +15574,-1,0.01931,0,4,0,2,3,DIV,3,2,S M 39,,1592407,2.478,2.497,0,0.463437,5,5 +11804,1,0.056798,1,0,0,1,1,RFF,3,2,I 94/S M 39,RAMP,1576901,0.951,1.008,0,,0.58,7 +11798,1,0.037345,1,0,0,1,2,FCD,3,2,N M 39 CD,,1576908,0,0.037,0,,0.58,7 +11796,1,0.05571,1,0,0,1,1,RFF,3,2,M 39/E I 94,RAMP,1576908,0.431,0.487,0,,0.58,7 +15608,0,0.445471,1,1,0,2,5,,3,2,Champaign,Rd,1592404,1.017,1.462,0,10.691297,8,4.5 +18420,0,0.431314,1,1,0,2,5,,3,2,Moore,Ave,1657805,1.024,1.455,0,10.351544,8,4.5 +30822,0,0.219053,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.257261,0.15,4 +30829,0,0.332973,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.991344,0.15,4 +14932,0,0.332645,1,1,0,2,5,,3,2,Park,Ave,1594603,0.92,1.253,0,7.98347,8,4.5 +15606,0,0.302707,1,1,0,2,5,,3,2,Champaign,Rd,1592404,1.462,1.765,0,7.264959,8,4.5 +27019,0,0.443337,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.640086,0.15,4 +31969,0,0.143163,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.435916,0.15,4 +30823,0,0.280593,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.734225,0.15,4 +24351,0,0.113407,1,1,0,2,5,,3,2,London,Ave,4710165,0.159,0.272,0,2.721779,8,4.5 +24356,0,0.012453,1,1,0,2,5,,3,2,London,Ave,4710165,0.146,0.159,0,0.298882,8,4.5 +14926,0,0.029775,2,2,1,2,3,,3,2,Allen,Rd,1594605,0,0.03,0,0.714612,5,5 +15155,0,0.397599,2,2,1,2,4,,3,2,Allen,Rd,1594605,0.03,0.427,0,9.542365,6,4.5 +15485,1,0.312916,4,0,0,2,3,DIV,3,2,N M 39,,1592408,1.648,1.961,0,7.50999,5,5 +15579,-1,0.169926,0,4,0,2,3,DIV,3,2,S M 39,,1592407,1.5,1.67,0,4.078232,5,5 +30806,0,0.463777,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.130638,0.15,4 +30807,0,0.409208,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.820982,0.15,4 +14933,0,0.399233,2,2,1,2,3,,3,2,Allen,Rd,1594602,2.187,2.586,0,9.581598,5,5 +15293,-1,0.294646,0,4,0,2,3,DIV,3,2,S M 39,,1592407,1.67,1.964,0,7.071494,5,5 +19545,0,0.133369,2,2,1,2,4,,3,2,Roosevelt,,1869605,0,0.133,0,3.200858,6,4.5 +19544,0,0.152008,2,2,0,2,4,,3,2,Roosevelt,,1869605,0.133,0.285,0,3.648194,6,4.5 +19543,0,0.014853,2,2,0,2,3,,3,2,Roosevelt,,1869605,0.285,0.3,0,0.356482,5,5 +15161,0,0.011034,2,2,1,2,3,,3,2,Allen,Rd,1594602,2.586,2.597,0,0.264805,5,5 +15227,1,0.207961,4,0,0,2,3,DIV,3,2,N M 39,,1592408,1.44,1.648,0,4.991071,5,5 +15294,-1,0.21575,0,4,0,2,3,DIV,3,2,S M 39,,1592407,1.284,1.5,0,5.177996,5,5 +15487,1,0.164204,4,0,0,2,3,DIV,3,2,N M 39,,1592408,1.276,1.44,0,3.940901,5,5 +14922,0,0.007761,2,2,1,2,4,,3,2,Allen,Rd,1594605,0.427,0.435,0,0.186274,6,4.5 +12086,0,0.441217,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,6.778,7.219,0,10.589219,8,4.5 +12299,0,0.327703,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,6.424,6.752,0,7.864863,8,4.5 +13204,0,0.231013,2,2,0,2,3,,3,2,Northline,Rd,1578505,6.234,6.465,0,5.544321,5,5 +14942,1,0.302583,4,0,0,2,3,DIV,3,2,Fort,St,1592105,10.739,11.041,0,7.262002,5,5 +15057,0,0.326949,1,1,0,2,5,,3,2,Emmons,Ave,1593310,0.403,0.73,0,7.846767,8,4.5 +15700,-1,0.25252,0,4,0,2,3,DIV,3,2,Fort,St,1592106,10.641,10.894,0,6.060469,5,5 +17475,0,0.290349,1,1,0,2,5,,3,2,Moran,Ave,1660106,1.106,1.396,0,6.968382,8,4.5 +17897,0,0.406436,3,3,1,2,3,,3,2,Dix,Ave,1688707,4.124,4.531,0,9.754464,5,5 +31874,0,0.355457,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.530972,0.15,4 +31876,0,0.349632,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.391161,0.15,4 +31976,0,0.399055,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.577309,0.15,4 +31978,0,0.26976,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.474248,0.15,4 +31986,0,0.326432,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.834357,0.15,4 +32055,0,0.323985,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.775648,0.15,4 +32403,0,0.364972,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.759319,0.15,4 +32405,0,0.337503,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.100064,0.15,4 +13263,0,0.302172,2,2,1,2,3,,3,2,Northline,Rd,1578505,5.806,6.108,0,7.252117,5,5 +18403,0,0.055691,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,3.788,3.844,0,1.336581,5,5 +30772,0,0.322,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.727996,0.15,4 +31940,0,0.326242,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.829799,0.15,4 +32056,0,0.498067,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.953598,0.15,4 +18585,0,0.399752,1,1,1,2,4,,3,2,Trenton,Rd,1665008,1.538,1.938,0,9.594041,6,4.5 +24225,0,0.169231,1,1,0,2,5,,3,2,Superior,Ave,4711367,0.653,0.822,0,4.061532,8,4.5 +18156,1,0.06129,1,0,0,2,4,,3,2,Trenton,Rd,1665008,1.938,1.999,0,1.470964,6,4.5 +23815,-1,0.054186,0,1,0,2,4,,3,2,Trenton,Rd,4707669,0,0.054,0,1.300452,6,4.5 +18607,0,0.025733,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,3.763,3.788,0,0.617582,5,5 +18087,0,0.280306,3,3,1,2,3,,3,2,Dix,Ave,1688707,3.844,4.124,0,6.727347,5,5 +12864,0,0.126379,2,2,1,2,3,,3,2,Northline,Rd,1578505,6.108,6.234,0,3.033095,5,5 +31987,0,0.2555,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.132004,0.15,4 +11985,0,0.249899,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,6.174,6.424,0,5.997569,8,4.5 +15292,0,0.403155,1,1,0,2,5,,3,2,Emmons,Ave,1593310,0,0.403,0,9.675726,8,4.5 +17439,0,0.103772,3,3,1,2,3,,3,2,Dix,Ave,1688707,4.923,5.027,0,2.490526,5,5 +18887,0,0.250317,1,1,0,2,5,,3,2,Moran,Ave,1660106,0.707,0.957,0,6.007602,8,4.5 +30814,0,0.194623,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.670947,0.15,4 +31984,0,0.147014,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.528328,0.15,4 +31985,0,0.362786,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.706865,0.15,4 +32292,0,0.376434,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.034408,0.15,4 +33969,0,0.340797,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.179117,0.15,4 +12354,0,0.11863,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,6.056,6.174,0,2.847126,8,4.5 +17568,0,0.221851,3,3,1,2,3,,3,2,Dix,Ave,1688707,4.531,4.752,0,5.324432,5,5 +33970,0,0.228218,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.477228,0.15,4 +18889,0,0.157169,1,1,0,2,4,,3,2,Moran,Ave,1660106,0.55,0.707,0,3.772046,6,4.5 +19174,0,0.115883,3,3,1,2,3,,3,2,Dix,Ave,1688707,4.752,4.868,0,2.781199,5,5 +17875,0,0.05496,3,3,1,2,3,,3,2,Dix,Ave,1688707,4.868,4.923,0,1.319048,5,5 +30815,0,0.083887,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.013299,0.15,4 +18847,0,0.225855,3,3,1,2,3,,3,2,Dix,Ave,1688707,5.027,5.253,0,5.420529,5,5 +18414,0,0.14877,1,1,0,2,5,,3,2,Moran,Ave,1660106,0.957,1.106,0,3.57047,8,4.5 +30812,0,0.293844,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.052267,0.15,4 +31982,0,0.093545,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.245074,0.15,4 +12691,0,0.357141,1,1,1,2,4,,3,2,Ford,Ave,1578505,6.784,7.141,0,8.571387,6,4.5 +14950,1,0.3349,4,0,0,2,3,DIV,3,2,Fort,St,1592105,10.076,10.411,0,8.037598,5,5 +15704,-1,0.273035,0,4,0,2,3,DIV,3,2,Fort,St,1592106,9.978,10.251,0,6.552842,5,5 +18583,0,0.458144,1,1,0,2,5,,3,2,12th,St,1665208,0.721,1.179,0,10.995456,8,4.5 +30677,0,0.498537,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.964897,0.15,4 +32041,0,0.448274,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.758574,0.15,4 +15413,-1,0.220772,0,4,0,2,3,DIV,3,2,Fort,St,1592106,9.757,9.978,0,5.298537,5,5 +32193,0,0.336828,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.083875,0.15,4 +32194,0,0.279137,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.699282,0.15,4 +15506,1,0.129226,4,0,0,2,3,DIV,3,2,Fort,St,1592105,9.947,10.076,0,3.101417,5,5 +13055,0,0.294997,1,1,1,2,4,,3,2,Ford,Ave,1578505,6.49,6.784,0,7.079937,6,4.5 +15412,-1,0.279977,0,4,0,2,3,DIV,3,2,Fort,St,1592106,10.251,10.53,0,6.719446,5,5 +15778,1,0.328071,4,0,0,2,3,DIV,3,2,Fort,St,1592105,10.411,10.739,0,7.873708,5,5 +31979,0,0.369738,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.87371,0.15,4 +31980,0,0.293409,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.041825,0.15,4 +31981,0,0.333949,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.014768,0.15,4 +12809,0,0.024288,2,2,0,2,3,,3,2,Ford,Ave,1578505,6.465,6.49,0,0.582915,5,5 +14871,-1,0.110772,0,4,0,2,3,DIV,3,2,Fort,St,1592106,10.53,10.641,0,2.658518,5,5 +32043,0,0.097505,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.340125,0.15,4 +12687,0,0.140086,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.141,7.281,0,3.362062,6,4.5 +15285,0,0.462601,1,1,0,2,5,,3,2,Emmons,Blvd,1593310,1.056,1.518,0,11.102422,8,4.5 +15695,-1,0.16453,0,3,0,2,3,DIV,3,2,Fort,St,1592106,11.351,11.515,0,3.948714,5,5 +15762,1,0.113733,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.453,11.567,0,2.729601,5,5 +18409,0,0.427842,1,1,0,2,5,,3,2,Moran,Ave,1660106,1.748,2.176,0,10.268212,8,4.5 +18865,0,0.223081,1,1,0,2,5,,3,2,River,Dr,1660207,0.469,0.692,0,5.353953,8,4.5 +24369,0,0.210292,1,1,0,2,5,,3,2,Harrison,Blvd,5491819,0.39,0.6,0,5.047015,8,4.5 +32404,0,0.197626,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.743012,0.15,4 +14937,1,0.386826,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.067,11.453,0,9.283825,5,5 +15696,-1,0.40123,0,3,0,2,3,DIV,3,2,Fort,St,1592106,10.894,11.295,0,9.629526,5,5 +18872,0,0.328864,1,1,0,2,5,,3,2,Moran,Ave,1660106,1.419,1.748,0,7.892732,8,4.5 +24370,0,0.390048,1,1,0,2,5,,3,2,Harrison,Blvd,5491819,0,0.39,0,9.361163,8,4.5 +33742,0,0.408473,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.803351,0.15,4 +11917,0,0.026193,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,6.752,6.778,0,0.628641,8,4.5 +15768,1,0.0254,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.041,11.067,0,0.609597,5,5 +15404,-1,0.056149,0,3,0,2,3,DIV,3,2,Fort,St,1592106,11.295,11.351,0,1.347578,5,5 +18881,0,0.023247,1,1,0,2,5,,3,2,Moran,Ave,1660106,1.396,1.419,0,0.557936,8,4.5 +32406,0,0.023356,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.56055,0.15,4 +15056,0,0.30268,1,1,0,2,5,,3,2,Emmons,Blvd,1593310,0.753,1.056,0,7.264311,8,4.5 +15489,1,0.255694,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.676,11.932,0,6.136645,5,5 +15759,1,0.10921,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.567,11.676,0,2.621043,5,5 +15288,0,0.02329,1,1,0,2,5,,3,2,Emmons,Blvd,1593310,0.73,0.753,0,0.558961,8,4.5 +11932,0,0.289942,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,7.219,7.509,0,6.958617,8,4.5 +17460,0,0.46903,1,1,0,2,5,,3,2,River,Dr,1660207,0,0.469,0,11.25672,8,4.5 +24367,0,0.062893,1,1,0,2,5,,3,2,Harrison,Blvd,5491820,0,0.063,0,1.50944,8,4.5 +14755,-1,0.19295,0,4,0,2,3,DIV,3,2,S M 39,,1592407,0.744,0.937,0,4.630791,5,5 +14782,1,0.670105,3,0,0,1,1,,3,2,N I 75,,1592010,14.111,14.781,0,,0.58,7 +14785,1,0.227497,1,0,0,1,1,ROF,3,2,S I 75/Southfield,RAMP,1595004,0,0.227,0,,2.24,5 +14893,1,0.276703,3,0,0,1,1,,3,2,N I 75,,1592010,13.834,14.111,0,,0.58,7 +14955,-1,0.150289,0,3,0,1,1,,3,2,S I 75,,1595106,13.999,14.149,0,,0.58,7 +15022,-1,0.669348,0,3,0,1,1,,3,2,S I 75,,1595106,14.149,14.818,0,,0.58,7 +15157,0,0.424798,1,1,0,2,5,,3,2,Cicotte,Ave,1592410,1.094,1.518,0,10.195147,8,4.5 +15235,1,0.396276,4,0,0,2,3,DIV,3,2,N M 39,,1592408,0.539,0.935,0,9.510632,5,5 +15408,1,0.167996,1,0,0,1,1,RON,3,2,N Southfield/N I 75,RAMP,1592409,0,0.168,0,,1.09,4 +15476,1,0.264616,3,0,0,2,3,DIV,3,2,Fort,St,1592105,13.156,13.421,0,6.350779,5,5 +15513,1,0.147756,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.164,0.312,0,3.546155,5,5 +15587,-1,0.153569,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0.163,0.317,0,3.685661,5,5 +15610,0,0.257616,2,2,0,2,5,,3,2,Champaign,Rd,1592404,0.025,0.282,0,6.182786,8,4.5 +15681,-1,0.264598,0,3,0,2,3,DIV,3,2,Fort,St,1592106,13.011,13.275,0,6.350357,5,5 +18848,0,0.146237,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.567,6.713,0,3.509677,5,5 +19057,0,0.352645,3,3,1,2,3,,3,2,Dix,Ave,1688707,7.555,7.908,0,8.463488,5,5 +30810,0,0.432261,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.374257,0.15,4 +30811,0,0.410572,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.853735,0.15,4 +32402,0,0.272784,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.546826,0.15,4 +32706,0,0.241652,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.799638,0.15,4 +33971,0,0.5058,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.139196,0.15,4 +33972,0,0.544102,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.058458,0.15,4 +14820,1,0.337345,3,0,0,1,1,,3,2,N I 75,,1592010,13.27,13.608,0,,0.58,7 +15172,-1,0.398468,0,3,0,1,1,,3,2,S I 75,,1595106,13.283,13.681,0,,0.58,7 +15313,0,0.540718,2,2,0,2,5,,3,2,Champaign,Rd,1592404,0.282,0.823,0,12.977234,8,4.5 +15583,-1,0.197399,0,4,0,2,3,DIV,3,2,S M 39,,1592407,0.547,0.744,0,4.737584,5,5 +15612,1,0.413832,1,0,0,1,1,ROF,3,2,N I 75/N Dix,RAMP,1592401,0,0.414,0,,2.24,5 +18478,1,0.29255,3,0,0,2,3,DV2,3,2,Dix,Ave,1688707,5.797,6.09,0,7.021196,5,5 +23724,-1,0.150008,0,3,0,2,3,DV2,3,2,Dix,Ave,4707989,0.254,0.404,0,3.600183,5,5 +31961,0,0.372263,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.934309,0.15,4 +32705,0,0.205755,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.93812,0.15,4 +15567,1,0.325629,1,0,0,1,1,ROF,3,2,S I 75/Dix,RAMP,1595207,0,0.326,0,,2.24,5 +23726,-1,0.225824,0,3,0,2,3,DV2,3,2,Dix,Ave,4707989,0.01,0.236,0,5.419778,5,5 +24340,1,0.235516,1,0,0,1,1,RON,3,2,Dix/N I 75,RAMP,4710178,0,0.236,0,,1.09,4 +15021,1,0.092166,1,0,0,1,1,ROF,3,2,N I 75/S Dix,RAMP,1594410,0.152,0.244,0,,2.24,5 +17969,0,0.052765,3,3,0,2,3,,3,2,Dix,Ave,1688707,5.623,5.675,0,1.266364,5,5 +15228,1,0.044934,1,0,0,1,1,ROF,3,2,N I 75/S Dix,RAMP,1594410,0.244,0.289,0,,2.24,5 +18958,1,0.100536,3,0,0,2,3,DV2,3,2,Dix,Ave,1688707,5.697,5.797,0,2.412854,5,5 +23727,-1,0.009785,0,3,0,2,3,DV2,3,2,Dix,Ave,4707989,0,0.01,0,0.234831,5,5 +17551,0,0.021398,3,3,0,2,3,,3,2,Dix,Ave,1688707,5.675,5.697,0,0.513551,5,5 +23725,-1,0.018656,0,3,0,2,3,DV2,3,2,Dix,Ave,4707989,0.236,0.254,0,0.447747,5,5 +17552,0,0.22057,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.153,6.374,0,5.29369,5,5 +30817,0,0.314938,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.558518,0.15,4 +17742,0,0.051362,3,3,0,2,3,,3,2,Dix,Ave,1688707,6.102,6.153,0,1.232682,5,5 +18072,1,0.011989,3,0,0,2,3,DV2,3,2,Dix,Ave,1688707,6.09,6.102,0,0.287732,5,5 +19056,0,0.193646,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.374,6.567,0,4.647496,5,5 +31375,0,0.153584,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.686019,0.15,4 +30819,0,0.052442,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.258612,0.15,4 +30809,0,0.276646,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.639516,0.15,4 +14758,-1,0.063033,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0.484,0.547,0,1.512782,5,5 +14816,1,0.226814,3,0,0,1,1,,3,2,N I 75,,1592010,13.608,13.834,0,,0.58,7 +14973,1,0.247554,1,0,0,1,1,RON,3,2,S Southfield/S I 75,RAMP,1594505,0,0.248,0,,1.09,4 +15177,-1,0.317264,0,3,0,1,1,,3,2,S I 75,,1595106,13.681,13.999,0,,0.58,7 +15306,1,0.20668,1,0,0,1,1,RON,3,2,S Southfield/N I 75,RAMP,1592406,0,0.207,0,,1.09,4 +15496,1,0.031969,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.507,0.539,0,0.76725,5,5 +15600,1,0.338829,1,0,0,1,1,ROF,3,2,N I 75/Southfield,RAMP,1592405,0,0.339,0,,2.24,5 +30820,0,0.256692,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.160611,0.15,4 +32704,0,0.227493,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.459839,0.15,4 +15243,1,0.135423,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.312,0.447,0,3.250154,5,5 +15585,-1,0.145448,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0.317,0.462,0,3.490759,5,5 +15274,1,0.156824,1,0,0,1,1,RON,3,2,N Southfield/S I 75,RAMP,1595003,0,0.157,0,,1.09,4 +15499,1,0.020724,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.447,0.468,0,0.497377,5,5 +15237,1,0.038982,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.468,0.507,0,0.935572,5,5 +15296,-1,0.021199,0,4,0,2,3,DIV,3,2,S M 39,,1592407,0.462,0.484,0,0.508779,5,5 +15595,1,0.024872,2,0,0,2,3,RSF,3,2,N I 75/Southfield,RAMP,1592405,0.339,0.364,0,0.596921,5,5 +15406,0,0.191436,1,1,0,2,5,,3,2,Cicotte,Ave,1592410,1.518,1.71,0,4.59447,8,4.5 +17743,0,0.211583,3,3,1,2,3,,3,2,Dix,Ave,1688707,7.133,7.345,0,5.077995,5,5 +17970,0,0.209496,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.924,7.133,0,5.0279,5,5 +32426,0,0.219457,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.266976,0.15,4 +15494,1,0.074484,4,0,0,2,3,DIV,3,2,N M 39,,1592408,0.935,1.009,0,1.787627,5,5 +15581,-1,0.080455,0,4,0,2,3,DIV,3,2,S M 39,,1592407,0.937,1.017,0,1.930913,5,5 +32707,0,0.216354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.192501,0.15,4 +32708,0,0.193835,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.652035,0.15,4 +18260,0,0.189578,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.734,6.924,0,4.549862,5,5 +32709,0,0.096534,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.316826,0.15,4 +18479,0,0.02105,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.713,6.734,0,0.505209,5,5 +33676,0,0.258653,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.20768,0.15,4 +32429,0,0.082415,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.977969,0.15,4 +17440,0,0.210339,3,3,1,2,3,,3,2,Dix,Ave,1688707,7.345,7.555,0,5.04813,5,5 +14857,-1,0.19351,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.358,12.552,0,4.644234,5,5 +15753,1,0.057492,3,0,0,2,3,DIV,3,2,Fort,St,1592105,12.644,12.702,0,1.379799,5,5 +24339,0,0.409393,2,2,1,2,3,,3,2,Southfield,Rd,4710185,0,0.409,0,9.825438,5,5 +31006,0,0.419374,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.064969,0.15,4 +31962,0,0.200993,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.823833,0.15,4 +33740,0,0.518645,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.447484,0.15,4 +33741,0,0.537013,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.888313,0.15,4 +33810,0,0.441395,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.593482,0.15,4 +14867,-1,0.268476,0,3,0,2,3,DIV,3,2,Fort,St,1592106,11.943,12.212,0,6.443423,5,5 +14928,1,0.137111,3,0,0,2,3,DIV,3,2,Fort,St,1592105,12.507,12.644,0,3.290668,5,5 +15484,1,0.07548,3,0,0,2,3,DIV,3,2,Fort,St,1592105,12.432,12.507,0,1.811515,5,5 +15694,-1,0.146592,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.212,12.358,0,3.518205,5,5 +15315,0,0.024667,1,1,0,2,5,,3,2,Champaign,Rd,1592404,0,0.025,0,0.592,8,4.5 +14760,-1,0.112258,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0.051,0.163,0,2.694189,5,5 +14856,-1,0.141963,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.653,12.795,0,3.407116,5,5 +15246,1,0.113061,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.051,0.164,0,2.713456,5,5 +15248,1,0.027365,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0,0.027,0,0.656752,5,5 +15478,1,0.015904,4,0,0,2,3,DIV,3,2,Fort,St,1592105,12.949,12.965,0,0.381698,5,5 +15687,-1,0.019823,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.795,12.815,0,0.475759,5,5 +15752,1,0.247294,3,0,0,2,3,DIV,3,2,Fort,St,1592105,12.702,12.949,0,5.935046,5,5 +15688,-1,0.101852,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.552,12.653,0,2.44444,5,5 +14764,-1,0.027798,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0,0.028,0,0.667145,5,5 +15589,-1,0.023461,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0.028,0.051,0,0.563059,5,5 +14851,-1,0.195436,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.815,13.011,0,4.690464,5,5 +15751,1,0.191643,3,0,0,2,3,DIV,3,2,Fort,St,1592105,12.965,13.156,0,4.599439,5,5 +15515,1,0.023494,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.027,0.051,0,0.563851,5,5 +31959,0,0.184196,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.420703,0.15,4 +14769,1,0.484764,3,0,0,1,1,,3,2,N I 75,,1592010,14.781,15.265,0,,0.58,7 +14773,-1,0.547505,0,3,0,1,1,,3,2,S I 75,,1595106,14.818,15.365,0,,0.58,7 +15156,1,0.209934,1,0,0,1,1,ROF,3,2,N I 75/Lafayette,RAMP,1592501,0,0.21,0,,2.24,5 +15407,0,0.256753,1,1,0,2,5,,3,2,Cicotte,Ave,1592410,0.837,1.094,0,6.162081,8,4.5 +21790,1,0.175847,1,0,0,1,1,RON,3,2,Outer/S I 75,RAMP,4700025,0.076,0.252,0,,1.09,4 +24396,1,0.167457,3,0,0,2,3,DIV,3,1,Outer,Dr,4710093,1.429,1.596,0,4.01897,5,5 +24420,1,0.521566,3,0,0,2,3,DIV,3,2,Outer,Dr,4710093,0.68,1.202,0,12.517575,5,5 +24442,1,0.565499,3,0,0,2,3,DIV,3,2,Outer,Dr,4710092,2.046,2.612,0,13.571983,5,5 +24451,1,0.166524,3,0,0,2,3,DIV,3,1,Outer,Dr,4710092,1.698,1.864,0,3.996565,5,5 +31989,0,0.593328,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.239879,0.15,4 +31991,0,0.579233,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.901589,0.15,4 +31990,0,0.024252,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.582044,0.15,4 +18694,0,0.014242,3,3,1,2,3,,3,2,Dix,Ave,1688707,7.908,7.922,0,0.341798,5,5 +14840,-1,0.232744,0,3,0,2,3,DIV,3,2,Fort,St,1592106,13.275,13.508,0,5.585856,5,5 +15471,1,0.273421,3,0,0,2,3,DIV,3,2,Fort,St,1592105,13.642,13.915,0,6.562106,5,5 +15670,-1,0.272497,0,3,0,2,3,DIV,3,2,Fort,St,1592106,13.508,13.78,0,6.539919,5,5 +15748,1,0.221208,3,0,0,2,3,DIV,3,2,Fort,St,1592105,13.421,13.642,0,5.30898,5,5 +15158,0,0.022979,1,1,0,2,5,,3,2,Cicotte,Ave,1592410,0.814,0.837,0,0.551485,8,4.5 +15665,-1,0.017518,0,3,0,2,3,DIV,3,1,Fort,St,1592106,13.78,13.798,0,0.420442,5,5 +24395,1,0.025034,3,0,0,2,3,DIV,3,1,Outer,Dr,4710093,1.596,1.621,0,0.600805,5,5 +14914,1,0.013097,3,0,0,2,3,DIV,3,1,Fort,St,1592105,13.915,13.928,0,0.314327,5,5 +24456,1,0.027478,3,0,0,2,3,DIV,3,1,Outer,Dr,4710092,1.67,1.698,0,0.659473,5,5 +15282,1,0.254384,1,0,0,1,1,ROF,3,2,S I 75/Outer,RAMP,1595209,0,0.254,0,,2.24,5 +15533,1,0.058724,3,0,0,1,1,,3,1,N I 75,,1592010,15.265,15.324,0,,0.58,7 +23954,1,0.108914,1,0,0,1,1,RON,3,1,Outer/N I 75,RAMP,4706751,0.158,0.267,0,,1.09,4 +23955,1,0.075381,1,0,0,1,1,RON,3,2,Outer/N I 75,RAMP,4706751,0.083,0.158,0,,1.09,4 +24398,1,0.057225,3,0,0,2,3,DIV,3,1,Outer,Dr,4710093,1.372,1.429,0,1.373396,5,5 +24450,1,0.046743,3,0,0,2,3,DIV,3,1,Outer,Dr,4710092,1.864,1.911,0,1.12184,5,5 +15004,-1,0.034379,0,2,0,2,5,,3,2,Lafayette,Blvd,1594503,2.334,2.368,0,0.825098,8,4.5 +15214,-1,0.049949,0,2,0,2,5,,3,2,Lafayette,Blvd,1594503,2.284,2.334,0,1.198779,8,4.5 +23959,1,0.083692,2,0,0,2,5,,3,2,Lafayette,Blvd,4706749,0,0.084,0,2.008604,8,4.5 +23960,-1,0.034531,0,1,0,1,5,,3,2,E Outer/S Lafayette,Ramp,4706748,0,0.035,0,,8,4.5 +24400,1,0.025655,3,0,0,2,3,DIV,3,2,Outer,Dr,4710093,1.346,1.372,0,0.615717,5,5 +24402,1,0.054807,3,0,0,2,3,DIV,3,2,Outer,Dr,4710093,1.253,1.308,0,1.315369,5,5 +24444,1,0.070236,3,0,0,2,3,DIV,3,2,Outer,Dr,4710092,1.946,2.016,0,1.68566,5,5 +15016,0,0.062669,1,1,0,2,5,,3,2,Lafayette,Blvd,1594503,2.221,2.284,0,1.504061,8,4.5 +22005,1,0.044895,1,0,0,1,1,RON,3,2,N Outer/S I 75,RAMP,4700025,0.032,0.076,0,,1.09,4 +24403,1,0.051401,3,0,0,2,3,DIV,3,2,Outer,Dr,4710093,1.202,1.253,0,1.233619,5,5 +21670,1,0.041363,1,0,0,1,1,RON,3,2,Outer/S I 75,RAMP,4700026,0,0.041,0,,1.09,4 +22004,1,0.031541,1,0,0,1,3,RSF,3,2,N Outer/S I 75,RAMP,4700025,0,0.032,0,,5,5 +24443,1,0.030242,3,0,0,2,3,DIV,3,2,Outer,Dr,4710092,2.016,2.046,0,0.725804,5,5 +23957,1,0.04672,1,0,0,1,3,RSF,3,2,S Outer/N I 75,RAMP,4706751,0,0.047,0,,5,5 +23958,-1,0.032139,0,1,0,2,3,,3,2,W Outer/Lafayette,TURN,4706750,0,0.032,0,0.771329,5,5 +24401,1,0.038396,3,0,0,2,3,DIV,3,2,Outer,Dr,4710093,1.308,1.346,0,0.921492,5,5 +23956,1,0.036113,1,0,0,1,1,RON,3,2,S Outer/N I 75,RAMP,4706751,0.047,0.083,0,,1.09,4 +23961,1,0.026148,1,0,0,1,1,RON,3,2,N Outer/N I 75,RAMP,4706747,0.01,0.036,0,,1.09,4 +24447,1,0.023992,3,0,0,2,3,DIV,3,2,Outer,Dr,4710092,1.922,1.946,0,0.575811,5,5 +23962,1,0.010088,1,0,0,1,1,RON,3,1,N Outer/N I 75,RAMP,4706747,0,0.01,0,,1.09,4 +24449,1,0.010899,3,0,0,2,3,DIV,3,1,Outer,Dr,4710092,1.911,1.922,0,0.26157,5,5 +10850,1,0.199131,3,0,0,1,1,,3,2,E I 94,,1576405,18.906,19.105,0,,0.58,7 +11562,1,0.632813,3,0,0,1,1,,3,2,E I 94,,1576405,20.136,20.768,0,,0.58,7 +11774,0,0.072588,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,2.575,2.647,0,1.742111,6,4.5 +11775,0,0.36005,3,3,1,2,4,,3,2,Rotunda,Dr,1577009,2.215,2.575,0,8.64121,6,4.5 +11785,1,0.205701,1,0,0,1,1,RON,3,2,Schaefer/W I 94,RAMP,1577006,0.367,0.573,0,,1.09,4 +11795,1,0.210242,1,0,0,1,1,ROF,3,2,E I 94/Oakwood,RAMP,1576910,0,0.21,0,,2.24,5 +13732,1,0.423678,1,0,0,1,1,ROF,3,2,W I 94/Schaefer,RAMP,1589003,0,0.424,0,,2.24,5 +13759,-1,0.193161,0,3,0,1,1,,3,2,W I 94,,1588802,18.84,19.033,0,,0.58,7 +13818,1,0.278593,2,0,0,1,3,RSF,3,2,E M 153/Greenfield,RAMP,1589606,0,0.279,0,,5,5 +13915,1,0.238597,2,0,0,1,3,RSF,3,2,Greenfield/W M 153,RAMP,1589608,0.011,0.25,0,,5,5 +13919,1,0.321501,1,0,0,1,1,RON,3,2,Schaefer/E I 94,RAMP,1589002,0,0.321,0,,1.09,4 +14176,-1,0.409465,0,3,0,1,1,,3,2,W I 94,,1588802,20.214,20.623,0,,0.58,7 +14181,1,0.260643,1,0,0,1,1,ROF,3,2,W I 94/W Oakwood,RAMP,1589001,0,0.261,0,,2.24,5 +14425,1,0.234173,1,0,0,1,1,ROF,3,2,W I 94/E Oakwood,RAMP,1588910,0,0.234,0,,2.24,5 +14560,1,0.485379,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,17.692,18.178,0,11.649092,5,5 +15077,0,0.188121,2,2,0,2,4,,3,2,Hubbard,Dr,1594801,1.69,1.878,0,4.514902,6,4.5 +15175,-1,0.463223,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,2.449,2.912,0,11.117359,8,4.5 +15211,1,0.33125,3,0,0,1,2,,3,2,N M 39,,1592408,5.424,5.756,0,,0.58,7 +15564,-1,0.292376,0,3,0,1,2,,3,2,S M 39,,1592407,5.453,5.745,0,,0.58,7 +15832,1,0.214211,2,0,0,1,3,RSF,3,2,Greenfield/W Michigan,RAMP,1600108,0,0.214,0,,5,5 +16786,1,0.240978,2,0,0,1,3,RSF,3,2,E Michigan/Greenfield,RAMP,1600502,0,0.241,0,,5,5 +16972,1,0.430886,4,0,0,2,3,DIV,2,2,Michigan,Ave,1600206,18.606,19.036,0,10.341258,6,5 +18383,0,0.434478,2,2,1,2,3,,3,2,Outer,Dr,1662401,0.108,0.543,0,10.427481,5,5 +18398,0,0.181365,2,2,1,2,3,,3,2,Greenfield,,1651002,2.319,2.5,0,4.352759,5,5 +19153,1,0.485049,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.177,2.662,0,11.641168,8,4.5 +19167,0,0.08497,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.961,3.046,0,2.039276,5,5 +19993,-1,0.423936,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,3.375,3.798,0,10.174464,5,5 +37778,1,0.127603,2,0,0,1,1,ROF,3,2,I 94/Schaefer,RAMP,1589003,0.424,0.551,0,,2.24,5 +22900,-1,0.391362,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,2.027,2.419,0,9.392679,5,5 +37759,-1,0.140558,0,2,0,2,3,DV2,3,2,Schaefer,Rd,4704975,0,0.141,0,3.373389,5,5 +32280,0,0.475608,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.41459,0.15,4 +32408,0,0.443206,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.636932,0.15,4 +32715,0,0.108924,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.614187,0.15,4 +32718,0,0.453498,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.88396,0.15,4 +32719,0,0.286287,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.870885,0.15,4 +32721,0,0.412397,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.897534,0.15,4 +32722,0,0.424737,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.193692,0.15,4 +32724,0,0.21111,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.066637,0.15,4 +32726,0,0.235393,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.649428,0.15,4 +32730,0,0.209911,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.037853,0.15,4 +32747,0,0.228723,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.489354,0.15,4 +33652,0,0.247648,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.943548,0.15,4 +33777,0,0.52636,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.632629,0.15,4 +33778,0,0.309046,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.417103,0.15,4 +33779,0,0.53914,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.939371,0.15,4 +11778,0,0.710698,3,3,1,2,4,,3,2,Rotunda,Dr,1577009,1.168,1.879,0,17.056764,6,4.5 +15221,1,0.551712,3,0,0,1,2,,3,2,N M 39,,1592408,3.821,4.372,0,,0.58,7 +15377,-1,0.612769,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,1.082,1.694,0,14.706446,8,4.5 +15568,-1,0.544508,0,3,0,1,2,,3,2,S M 39,,1592407,3.844,4.389,0,,0.58,7 +15669,-1,0.187418,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.894,1.082,0,4.498029,8,4.5 +17435,1,0.408796,3,0,0,2,3,DIV,3,2,Outer,Dr,1662401,0.918,1.326,0,9.811101,5,5 +18716,1,0.532114,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.824,1.356,0,12.770732,8,4.5 +18896,0,0.454446,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,3.697,4.152,0,10.906715,5,5 +19072,0,0.075249,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,3.185,3.26,0,1.805986,5,5 +19168,1,0.224837,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.6,0.824,0,5.396092,8,4.5 +23999,1,0.537264,3,0,0,2,3,DIV,3,2,Outer,Dr,4710471,4.271,4.808,0,12.894337,5,5 +30339,0,0.556523,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.356547,0.15,4 +30801,0,0.70529,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.926953,0.15,4 +32553,0,0.725035,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.400849,0.15,4 +32731,0,0.511564,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.277538,0.15,4 +32736,0,0.291199,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.988774,0.15,4 +33780,0,0.693049,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.633179,0.15,4 +14949,-1,0.137753,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.757,0.894,0,3.30607,8,4.5 +15284,-1,0.455548,0,4,0,1,2,,3,2,S M 39,,1592407,3.389,3.844,0,,0.58,7 +15481,1,0.468805,4,0,0,1,2,,3,2,N M 39,,1592408,3.352,3.821,0,,0.58,7 +18377,1,0.225075,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,1.647,1.872,0,5.401811,5,5 +18721,1,0.155415,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.444,0.6,0,3.729958,8,4.5 +18841,1,0.280237,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,1.367,1.647,0,6.725689,5,5 +24002,1,0.280403,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,3.95,4.23,0,6.72968,5,5 +24003,1,0.338641,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,3.612,3.95,0,8.127377,5,5 +27398,0,0.34405,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.257198,0.15,4 +32285,0,0.315572,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.57372,0.15,4 +32359,0,0.357894,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.589447,0.15,4 +33232,0,0.352616,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.462779,0.15,4 +32283,0,0.262796,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.307116,0.15,4 +33817,0,0.297931,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.150346,0.15,4 +14998,1,0.087523,1,0,0,1,2,ROF,3,2,N M 39/Outer,RAMP,1591604,0,0.088,0,,2.24,5 +15123,-1,0.09951,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.643,0.742,0,2.388242,8,4.5 +15223,1,0.174679,4,0,0,1,2,,3,2,N M 39,,1592408,3.177,3.352,0,,0.58,7 +15359,-1,0.225735,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.417,0.643,0,5.417637,8,4.5 +15569,-1,0.213834,0,4,0,1,2,,3,2,S M 39,,1592407,3.175,3.389,0,,0.58,7 +17767,1,0.181397,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.12,0.302,0,4.35352,8,4.5 +19182,1,0.120428,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0,0.12,0,2.890268,8,4.5 +19546,1,0.115286,1,0,0,1,1,RFF,3,2,I 94/N M 39,RAMP,1869601,0.546,0.661,0,,0.58,7 +14916,1,0.102235,1,0,0,1,2,RON,3,2,Outer/S M 39,RAMP,1594704,0,0.102,0,,1.09,4 +19175,1,0.127908,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.302,0.43,0,3.069788,8,4.5 +15174,-1,0.014445,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.742,0.757,0,0.346669,8,4.5 +18843,1,0.040287,4,0,0,2,3,DIV,3,2,Outer,Dr,1662401,1.326,1.367,0,0.966887,5,5 +24001,1,0.040428,4,0,0,2,3,DIV,3,2,Outer,Dr,4710471,4.23,4.271,0,0.970266,5,5 +19170,1,0.014681,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.43,0.444,0,0.35235,8,4.5 +14997,1,0.085455,1,0,0,1,2,RON,3,2,Outer/N M 39,RAMP,1591606,0,0.085,0,,1.09,4 +15150,1,0.10381,1,0,0,1,2,ROF,3,2,S M 39/Outer,RAMP,1594705,0,0.104,0,,2.24,5 +11779,0,0.459315,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,0.709,1.168,0,11.023568,6,4.5 +18882,0,0.363275,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,4.303,4.666,0,8.718592,5,5 +32281,0,0.362432,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.698357,0.15,4 +32735,0,0.505117,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.122808,0.15,4 +11780,0,0.045451,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,0.664,0.709,0,1.090825,6,4.5 +18884,0,0.151177,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,4.152,4.303,0,3.628239,5,5 +32734,0,0.095258,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.286188,0.15,4 +18382,1,0.360282,3,0,0,2,3,DIV,3,2,Outer,Dr,1662401,0.558,0.918,0,8.64676,5,5 +23998,1,0.229697,3,0,0,2,3,DIV,3,2,Outer,Dr,4710471,4.808,5.038,0,5.512728,5,5 +30802,0,0.33857,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.125679,0.15,4 +30804,0,0.140486,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.371666,0.15,4 +30803,0,0.042816,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.027578,0.15,4 +18849,0,0.014853,2,2,1,2,3,,3,2,Outer,Dr,1662401,0.543,0.558,0,0.356472,5,5 +14101,1,0.24218,1,0,0,1,1,RON,3,2,E Oakwood/W I 94,RAMP,1588909,0.142,0.384,0,,1.09,4 +14354,1,0.141559,1,0,0,1,1,RON,3,2,E Oakwood/W I 94,RAMP,1588909,0,0.142,0,,1.09,4 +19073,0,0.088093,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,3.097,3.185,0,2.11424,5,5 +14081,1,0.061926,1,0,0,1,1,RON,3,2,W Oakwood/W I 94,RAMP,1589405,0,0.062,0,,1.09,4 +19079,0,0.050969,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,3.046,3.097,0,1.223249,5,5 +11777,0,0.050191,3,3,1,2,4,,3,2,Rotunda,Dr,1577009,1.879,1.929,0,1.20459,6,4.5 +14823,-1,0.466505,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,1.812,2.279,0,11.196128,8,4.5 +15134,1,0.143369,1,0,0,1,2,ROF,3,2,S M 39/Oakwood,RAMP,1594708,0,0.143,0,,2.24,5 +15220,1,0.187386,3,0,0,1,2,,3,2,N M 39,,1592408,4.794,4.981,0,,0.58,7 +15281,-1,0.456299,0,3,0,1,2,,3,2,S M 39,,1592407,4.997,5.453,0,,0.58,7 +15283,-1,0.41403,0,3,0,1,2,,3,2,S M 39,,1592407,4.389,4.803,0,,0.58,7 +15474,1,0.443189,3,0,0,1,2,,3,2,N M 39,,1592408,4.981,5.424,0,,0.58,7 +15479,1,0.422011,3,0,0,1,2,,3,2,N M 39,,1592408,4.372,4.794,0,,0.58,7 +15565,-1,0.194466,0,3,0,1,2,,3,2,S M 39,,1592407,4.803,4.997,0,,0.58,7 +15658,-1,0.078542,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,2.279,2.357,0,1.885002,8,4.5 +18700,1,0.078497,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.099,2.177,0,1.883917,8,4.5 +18714,1,0.079377,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,1.435,1.514,0,1.905053,8,4.5 +19058,0,0.278142,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,3.26,3.538,0,6.675402,5,5 +19163,1,0.33435,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,1.678,2.012,0,8.0244,8,4.5 +32081,0,0.384932,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.238379,0.15,4 +32732,0,0.128156,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.075751,0.15,4 +14915,1,0.154166,1,0,0,1,2,RON,3,2,Oakwood/S M 39,RAMP,1594707,0,0.154,0,,1.09,4 +14996,1,0.12218,1,0,0,1,2,ROF,3,2,N M 39/Oakwood,RAMP,1591607,0,0.122,0,,2.24,5 +18902,0,0.106339,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,3.591,3.697,0,2.552146,5,5 +19166,1,0.078518,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,1.356,1.435,0,1.884423,8,4.5 +15086,-1,0.066714,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,1.746,1.812,0,1.601124,8,4.5 +18018,0,0.053107,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,3.538,3.591,0,1.274558,5,5 +15320,-1,0.051272,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,1.694,1.746,0,1.230529,8,4.5 +14377,1,0.132992,1,0,0,1,2,ROF,3,2,S M 39/Rotunda,RAMP,1589601,0,0.133,0,,2.24,5 +15436,-1,0.091636,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,2.357,2.449,0,2.199264,8,4.5 +14994,1,0.136714,1,0,0,1,2,RON,3,2,Rotunda/N M 39,RAMP,1591609,0,0.137,0,,1.09,4 +14995,1,0.147117,1,0,0,1,2,RON,3,2,Oakwood/N M 39,RAMP,1591608,0,0.147,0,,1.09,4 +17755,1,0.163823,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,1.514,1.678,0,3.931753,8,4.5 +11776,0,0.285927,3,3,1,2,4,,3,2,Rotunda,Dr,1577009,1.929,2.215,0,6.862255,6,4.5 +14205,1,0.151429,1,0,0,1,2,ROF,3,2,N M 39/Rotunda,RAMP,1589602,0,0.151,0,,2.24,5 +13701,1,0.149598,1,0,0,1,2,RON,3,2,Rotunda/S M 39,RAMP,1589510,0,0.15,0,,1.09,4 +19160,1,0.08649,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.012,2.099,0,2.075766,8,4.5 +14954,1,0.221926,1,0,0,1,3,RSF,3,2,N M 39/W M 153,RAMP,1591710,0,0.222,0,,5,5 +14958,1,0.231262,1,0,0,1,3,RSF,3,2,E M 153/N M 39,RAMP,1591708,0,0.231,0,,5,5 +14961,1,0.28538,1,0,0,1,3,RSF,3,2,N M 39/E M 153,RAMP,1591707,0,0.285,0,,5,5 +14969,1,0.254624,1,0,0,1,3,RSF,3,2,W US 12/N M 39,RAMP,1591704,0,0.255,0,,5,5 +14970,1,0.209276,1,0,0,1,3,RSF,3,2,N M 39/W US 12,RAMP,1591703,0,0.209,0,,5,5 +14990,1,0.164825,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,16.998,17.162,0,3.955799,5,5 +14991,1,0.177174,1,0,0,1,3,RSF,3,2,E US 12/N M 39,RAMP,1591702,0,0.177,0,,5,5 +14992,1,0.176238,1,0,0,1,3,RSF,3,2,N M 39/E US 12,RAMP,4719481,0,0.176,0,,5,5 +15108,1,0.187889,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0.896,1.084,0,4.509347,6,4.5 +15210,1,0.336497,3,0,0,1,2,,3,2,N M 39,,1592408,6.668,7.004,0,,0.58,7 +15236,-1,0.043939,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.07,3.114,0,1.054546,8,4.5 +15280,-1,0.871219,0,3,0,1,2,,3,2,S M 39,,1592407,5.745,6.616,0,,0.58,7 +15473,1,0.414369,3,0,0,1,2,,3,2,N M 39,,1592408,5.756,6.17,0,,0.58,7 +15562,-1,0.388155,0,3,0,1,2,,3,2,S M 39,,1592407,6.616,7.004,0,,0.58,7 +15578,-1,0.395879,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.677,4.072,0,9.501094,8,4.5 +16020,0,0.095547,2,2,1,2,5,,3,1,Paul,Dr,1597101,1.768,1.864,0,2.293133,8,4.5 +16029,1,0.148731,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.373,0.522,0,3.56954,8,4.5 +16038,-1,0.149153,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.414,0.563,0,3.579675,8,4.5 +16043,1,0.364257,2,0,0,1,3,RSF,3,2,W M 153/N M 39,RAMP,1597009,0,0.364,0,,5,5 +17011,1,0.130207,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.689,17.819,0,3.124968,5,5 +18682,1,0.411189,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.416,3.827,0,9.868537,8,4.5 +18687,1,0.12554,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.87,2.995,0,3.012953,8,4.5 +19997,-1,0.234066,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,2.631,2.866,0,5.617586,5,5 +22994,-1,0.071972,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.124,1.196,0,1.727321,5,5 +23397,-1,0.15259,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,0.889,1.042,0,3.662168,6,4.5 +30497,0,0.457818,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.987641,0.15,4 +32264,0,0.439102,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.538451,0.15,4 +32738,0,0.277033,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.648781,0.15,4 +32740,0,0.167994,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.03185,0.15,4 +33279,0,0.226396,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.433503,0.15,4 +33776,0,0.648646,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.567504,0.15,4 +33781,0,0.188316,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.519592,0.15,4 +33785,0,0.248573,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.965745,0.15,4 +14861,-1,0.140926,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.384,3.524,0,3.382213,8,4.5 +14900,1,0.157272,3,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,0.134,0.291,0,3.774539,5,5 +15887,1,0.319327,1,0,0,1,3,RSF,3,2,S M 39/W US 12,RAMP,1599001,0,0.319,0,,5,5 +15888,1,0.209073,1,0,0,1,3,RSF,3,2,W US 12/S M 39,RAMP,1598910,0,0.209,0,,5,5 +17027,1,0.150201,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.191,17.341,0,3.604813,5,5 +19143,1,0.08911,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.072,3.161,0,2.138638,8,4.5 +19269,-1,0.17022,0,3,0,2,3,DIV,3,2,Evergreen,Rd,1804103,0.119,0.289,0,4.085271,5,5 +23035,-1,0.161987,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.743,0.905,0,3.887683,5,5 +32265,0,0.323579,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.765906,0.15,4 +32739,0,0.414172,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.940126,0.15,4 +32750,0,0.453437,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.882479,0.15,4 +33598,0,0.325852,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.820454,0.15,4 +33599,0,0.623637,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.967294,0.15,4 +33820,0,0.335819,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.059657,0.15,4 +17028,1,0.157264,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.034,17.191,0,3.774337,5,5 +19258,1,0.026055,2,0,0,2,3,DIV,3,2,S Evergreen/E Michigan,,1804105,0,0.026,0,0.625329,5,5 +19260,1,0.066703,2,0,0,2,3,DIV,3,2,E Michigan/N Evergreen,,1804104,0.099,0.166,0,1.600863,5,5 +23058,-1,0.055926,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.52,0.576,0,1.34222,5,5 +33821,0,0.351318,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.43164,0.15,4 +19270,-1,0.118871,0,2,0,2,3,DIV,3,2,S Evergreen/W Michigan,,1804103,0,0.119,0,2.852911,5,5 +19261,1,0.099144,2,0,0,2,3,DIV,3,2,E Michigan/N Evergreen,,1804104,0,0.099,0,2.379456,5,5 +23059,-1,0.053635,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.466,0.52,0,1.287252,5,5 +15629,1,0.13408,2,0,0,2,3,DIV,3,2,W Michigan/N Evergreen,,1596908,0,0.134,0,3.217921,5,5 +19257,1,0.065844,2,0,0,2,3,DIV,3,2,S Evergreen/E Michigan,,1804105,0.026,0.092,0,1.580266,5,5 +23041,-1,0.0719,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.576,0.647,0,1.725608,5,5 +19256,1,0.04702,2,0,0,2,3,DIV,3,2,S Evergreen/E Michigan,,1804105,0.092,0.139,0,1.128472,5,5 +19259,1,0.02553,2,0,0,2,3,DIV,3,2,E Michigan/N Evergreen Cutoff,,1804104,0.166,0.191,0,0.612722,5,5 +23036,-1,0.095384,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.647,0.743,0,2.289219,5,5 +15732,1,0.451385,3,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,0.291,0.743,0,10.833249,5,5 +19268,-1,0.443742,0,3,0,2,3,DIV,3,2,Evergreen,Rd,1804103,0.289,0.733,0,10.649812,5,5 +14062,1,0.238133,1,0,0,1,3,RSF,3,2,E US 12/S M 39,RAMP,1589508,0,0.238,0,,5,5 +14966,-1,0.14542,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.114,3.26,0,3.490077,8,4.5 +17021,1,0.173068,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.516,17.689,0,4.153632,5,5 +22995,-1,0.219228,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.905,1.124,0,5.261467,5,5 +17026,1,0.174614,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.341,17.516,0,4.190735,5,5 +14503,-1,0.063359,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.26,3.323,0,1.520628,8,4.5 +15889,1,0.155267,1,0,0,1,3,RSF,3,2,S M 39/E US 12,RAMP,1598909,0,0.155,0,,5,5 +15103,-1,0.060635,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.323,3.384,0,1.45525,8,4.5 +17728,1,0.053602,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.018,3.072,0,1.286442,8,4.5 +14965,1,0.136434,1,0,0,1,2,RON,3,2,W US 12/N M 39,RAMP,1591705,0,0.136,0,,1.09,4 +15133,1,0.170044,2,0,0,1,2,ROF,3,2,S M 39/W US 12,RAMP,1594710,0,0.17,0,,2.24,5 +32266,0,0.319945,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.678687,0.15,4 +33775,0,0.375384,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.009222,0.15,4 +15691,-1,0.059451,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.524,3.584,0,1.426835,8,4.5 +18685,1,0.154151,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.251,3.405,0,3.699614,8,4.5 +19142,1,0.090155,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.161,3.251,0,2.163715,8,4.5 +15005,-1,0.060333,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.584,3.644,0,1.447991,8,4.5 +14752,-1,0.032397,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.644,3.677,0,0.77753,8,4.5 +19139,1,0.010772,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.405,3.416,0,0.258523,8,4.5 +13329,0,0.531692,1,1,0,2,5,,3,1,Paul,Dr,1582602,0.56,1.092,0,12.760597,8,4.5 +14561,1,0.248032,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,16.483,16.731,0,5.952768,5,5 +14883,1,0.459866,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0.356,0.816,0,11.036795,6,4.5 +15025,-1,0.07098,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.54,4.611,0,1.703514,8,4.5 +15037,1,0.300938,1,0,0,1,3,RSF,3,2,E M 153/S M 39,RAMP,1597006,0,0.301,0,,5,5 +15279,-1,0.470088,0,3,0,1,2,,3,2,S M 39,,1592407,7.004,7.474,0,,0.58,7 +15472,1,0.454664,3,0,0,1,2,,3,2,N M 39,,1592408,7.004,7.458,0,,0.58,7 +15626,1,0.174609,1,0,0,1,3,RSF,3,2,S M 39/E M 153,RAMP,1597008,0,0.175,0,,5,5 +19104,1,0.152646,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,4.134,4.286,0,3.663507,8,4.5 +20001,-1,0.256931,0,4,0,2,3,DIV,3,1,Ford,Rd,1924107,2.176,2.433,0,6.166338,5,5 +23399,-1,0.495286,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,0.34,0.835,0,11.886861,6,4.5 +32267,0,0.193324,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.639769,0.15,4 +32311,0,0.494267,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.862411,0.15,4 +32322,0,0.43147,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.355275,0.15,4 +33773,0,0.459382,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.025158,0.15,4 +33774,0,0.544784,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.074818,0.15,4 +33787,0,0.211908,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.085789,0.15,4 +32268,0,0.295488,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.091718,0.15,4 +32269,0,0.311645,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.479487,0.15,4 +32312,0,0.272229,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.533507,0.15,4 +20002,-1,0.067314,0,4,0,2,3,DIV,3,1,Ford,Rd,1924107,2.108,2.176,0,1.615544,5,5 +20003,-1,0.006968,0,4,0,2,3,DIV,3,1,Ford,Rd,1924107,2.101,2.108,0,0.167234,5,5 +32321,0,0.243708,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.848996,0.15,4 +14963,1,0.141108,1,0,0,1,2,ROF,3,2,N M 39/E M 153,RAMP,1591706,0,0.141,0,,2.24,5 +15062,1,0.151062,1,0,0,1,2,RON,3,2,E M 153/S M 39,RAMP,1594802,0,0.151,0,,1.09,4 +15291,-1,0.17982,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.11,4.289,0,4.315679,8,4.5 +19128,1,0.18612,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.84,4.026,0,4.46689,8,4.5 +15117,1,0.026313,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0.816,0.842,0,0.631503,6,4.5 +23482,1,0.036619,1,0,0,1,4,,3,2,Hubbard/Southfield Svc Cutoff,,4706271,0,0.037,0,,6,4.5 +14875,1,0.054008,3,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0.842,0.896,0,1.296201,6,4.5 +23398,-1,0.053957,0,3,0,2,4,DIV,3,2,Hubbard,Dr,4704580,0.835,0.889,0,1.294964,6,4.5 +14750,-1,0.023478,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.072,4.096,0,0.563473,8,4.5 +15576,-1,0.013672,0,1,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.096,4.11,0,0.328135,8,4.5 +17718,1,0.013674,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.827,3.84,0,0.328178,8,4.5 +15505,-1,0.115866,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.289,4.405,0,2.780773,8,4.5 +17696,1,0.107366,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,4.026,4.134,0,2.576785,8,4.5 +15241,-1,0.134654,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.405,4.54,0,3.231698,8,4.5 +15190,-1,0.183412,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,4.65,4.833,0,4.401898,8,4.5 +15200,1,0.258612,2,0,0,1,3,RSF,3,1,S M 39/W M 153,RAMP,1597005,0,0.259,0,,5,5 +15209,1,0.405519,3,0,0,1,2,,3,1,N M 39,,1592408,7.458,7.864,0,,0.58,7 +15465,1,0.154163,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,16.731,16.885,0,3.699915,5,5 +15561,-1,0.426433,0,3,0,1,2,,3,1,S M 39,,1592407,7.474,7.901,0,,0.58,7 +17690,1,0.168862,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,4.393,4.562,0,4.052694,8,4.5 +20000,-1,0.093337,0,4,0,2,3,DIV,3,1,Ford,Rd,1924107,2.433,2.526,0,2.240095,5,5 +14801,1,0.226224,1,0,0,1,3,RSF,3,1,W M 153/S M 39,RAMP,1597007,0,0.226,0,,5,5 +15206,1,0.112786,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,16.885,16.998,0,2.706859,5,5 +19999,-1,0.085805,0,4,0,2,3,DIV,3,1,Ford,Rd,1924107,2.526,2.612,0,2.059319,5,5 +15452,-1,0.039103,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,4.611,4.65,0,0.938477,8,4.5 +18650,1,0.05178,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,4.342,4.393,0,1.242721,8,4.5 +19102,1,0.055315,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,4.286,4.342,0,1.327565,8,4.5 +19998,-1,0.019927,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,2.612,2.631,0,0.478244,5,5 +14669,1,0.133751,1,0,0,1,2,ROF,3,1,S M 39/W M 153,RAMP,1590501,0,0.134,0,,2.24,5 +14936,1,0.107781,1,0,0,1,2,RON,3,1,W M 153/N M 39,RAMP,1591802,0,0.108,0,,1.09,4 +15450,-1,0.087737,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,4.905,4.993,0,2.105699,8,4.5 +19100,1,0.192437,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,4.641,4.833,0,4.618487,8,4.5 +14971,-1,0.071942,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,4.833,4.905,0,1.726608,8,4.5 +19101,1,0.078554,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,4.562,4.641,0,1.885296,8,4.5 +15188,-1,0.109626,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,4.993,5.102,0,2.631013,8,4.5 +13159,0,0.042821,1,1,0,2,5,,3,1,Paul,Dr,1582602,1.092,1.135,0,1.027704,8,4.5 +17009,1,0.437399,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.888,18.325,0,10.497585,5,5 +22969,-1,0.168691,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.514,1.683,0,4.04858,5,5 +22993,-1,0.222727,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.196,1.419,0,5.345439,5,5 +32716,0,0.250331,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.007954,0.15,4 +32737,0,0.23519,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.644553,0.15,4 +19145,1,0.050735,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.819,2.87,0,1.217643,8,4.5 +14894,1,0.196045,1,0,0,1,2,RON,3,2,E US 12/S M 39,RAMP,1594709,0,0.196,0,,1.09,4 +14993,1,0.177108,1,0,0,1,2,ROF,3,2,N M 39/E US 12,RAMP,1591610,0,0.177,0,,2.24,5 +15498,-1,0.158544,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,2.912,3.07,0,3.805068,8,4.5 +18695,1,0.157137,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.662,2.819,0,3.771277,8,4.5 +17010,1,0.068912,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.819,17.888,0,1.653883,5,5 +32742,0,0.221889,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.325332,0.15,4 +22970,-1,0.096049,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.419,1.514,0,2.305177,5,5 +16030,1,0.277919,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.095,0.373,0,6.670063,8,4.5 +16039,-1,0.282664,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.131,0.414,0,6.783926,8,4.5 +16042,-1,0.041107,0,1,0,2,5,DIV,3,2,Mercury,Dr,1597010,0,0.041,0,0.986572,8,4.5 +17003,1,0.023155,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,18.433,18.456,0,0.555723,5,5 +22910,-1,0.083095,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.837,1.92,0,1.994287,5,5 +32083,0,0.228059,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.473422,0.15,4 +32717,0,0.087492,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.099818,0.15,4 +32725,0,0.230407,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.529759,0.15,4 +32798,0,0.213129,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.115086,0.15,4 +33262,0,0.260635,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.25523,0.15,4 +16014,1,0.17598,1,0,0,2,5,DIV,3,2,S Mercury/W Michigan Cutoff,,1597209,0,0.176,0,4.223521,8,4.5 +16016,1,0.087278,1,0,0,2,5,DIV,3,2,E Michigan/N Mercury Cutoff,,1597208,0.028,0.115,0,2.094665,8,4.5 +16017,1,0.027726,1,0,0,2,5,DIV,3,2,E Michigan/N Mercury Cutoff,,1597208,0,0.028,0,0.665419,8,4.5 +17007,1,0.107811,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,18.325,18.433,0,2.587466,5,5 +22931,-1,0.085765,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.737,1.823,0,2.058351,5,5 +22932,-1,0.053935,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.683,1.737,0,1.294442,5,5 +16015,1,0.056769,1,0,0,2,5,DIV,3,2,E Michigan/N Mercury Cutoff,,1597208,0.115,0.172,0,1.362457,8,4.5 +16031,1,0.095202,1,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0,0.095,0,2.284855,8,4.5 +16041,-1,0.040416,0,1,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.041,0.081,0,0.969977,8,4.5 +16040,-1,0.04996,0,1,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.081,0.131,0,1.199036,8,4.5 +22930,-1,0.013719,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.823,1.837,0,0.329244,5,5 +17001,1,0.119824,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,18.456,18.576,0,2.875774,5,5 +22903,-1,0.097951,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.92,2.018,0,2.350831,5,5 +32752,0,0.147392,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.537403,0.15,4 +22901,-1,0.009994,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,2.018,2.027,0,0.239868,5,5 +16998,1,0.029841,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,18.576,18.606,0,0.716188,5,5 +14571,1,0.361434,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,17.162,17.524,0,8.674416,5,5 +14869,1,0.35851,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,1.084,1.443,0,8.60425,6,4.5 +16022,1,0.123466,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,1.217,1.341,0,2.963187,8,4.5 +16025,1,0.173431,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.844,1.018,0,4.162332,8,4.5 +16032,-1,0.1168,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,1.25,1.367,0,2.803195,8,4.5 +16035,-1,0.246787,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.812,1.059,0,5.922893,8,4.5 +19996,-1,0.301343,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,2.866,3.167,0,7.232235,5,5 +23393,-1,0.175208,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,1.259,1.434,0,4.204988,6,4.5 +32306,0,0.28703,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.888729,0.15,4 +32743,0,0.280858,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.740588,0.15,4 +33782,0,0.306495,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.355875,0.15,4 +23395,-1,0.217136,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,1.042,1.259,0,5.21126,6,4.5 +32744,0,0.262976,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.311414,0.15,4 +33784,0,0.264526,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.348634,0.15,4 +16021,0,0.427944,2,2,1,2,5,,3,2,Mercury,Dr,1597101,1.341,1.768,0,10.270667,8,4.5 +32746,0,0.200919,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.822054,0.15,4 +14859,1,0.231176,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,1.459,1.69,0,5.548232,6,4.5 +16027,1,0.221287,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.536,0.757,0,5.310895,8,4.5 +16036,-1,0.235087,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.577,0.812,0,5.642077,8,4.5 +23391,-1,0.232804,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,1.45,1.683,0,5.587306,6,4.5 +32728,0,0.214447,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.146727,0.15,4 +33653,0,0.25006,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.001439,0.15,4 +33654,0,0.229724,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.513386,0.15,4 +15102,1,0.016093,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,1.443,1.459,0,0.386225,6,4.5 +16028,1,0.013839,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.522,0.536,0,0.332133,8,4.5 +16037,-1,0.013804,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.563,0.577,0,0.331297,8,4.5 +23392,-1,0.016351,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,1.434,1.45,0,0.392427,6,4.5 +16026,1,0.087372,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.757,0.844,0,2.096939,8,4.5 +14981,1,0.091389,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,17.601,17.692,0,2.193342,5,5 +19994,-1,0.190138,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,3.184,3.375,0,4.563319,5,5 +32308,0,0.192383,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.617193,0.15,4 +32727,0,0.203134,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.875211,0.15,4 +33783,0,0.201399,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.833584,0.15,4 +15198,1,0.060347,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,17.541,17.601,0,1.448337,5,5 +16023,1,0.178819,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,1.038,1.217,0,4.29166,8,4.5 +16033,-1,0.170646,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,1.08,1.25,0,4.095502,8,4.5 +16024,1,0.020865,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,1.018,1.038,0,0.500768,8,4.5 +16034,-1,0.021043,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,1.059,1.08,0,0.505022,8,4.5 +15541,1,0.016918,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,17.524,17.541,0,0.406032,5,5 +19995,-1,0.017782,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,3.167,3.184,0,0.426777,5,5 +33651,0,0.137647,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.30352,0.15,4 +11566,1,0.281655,3,0,0,1,1,,3,2,E I 94,,1576405,19.105,19.386,0,,0.58,7 +11791,1,0.151508,1,0,0,1,1,ROF,3,2,E I 94/Greenfield,RAMP,1577004,0,0.152,0,,2.24,5 +11793,1,0.056991,1,0,0,1,1,RON,3,2,W Oakwood/E I 94,RAMP,1577003,0,0.057,0,,1.09,4 +12389,1,0.181305,1,0,0,1,1,ROF,3,2,E I 94/Schaefer,RAMP,1580403,0.297,0.479,0,,2.24,5 +14434,-1,0.243881,0,3,0,1,1,,3,2,W I 94,,1588802,19.033,19.277,0,,0.58,7 +17427,0,0.58119,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,1.688,2.269,0,13.948564,5,5 +17981,0,0.173156,2,2,0,2,4,,3,2,Raupp,Ave,1688707,9.229,9.402,0,4.155747,6,4.5 +18417,0,0.20672,2,2,1,2,3,,3,2,Greenfield,,1651002,1.862,2.069,0,4.961286,5,5 +18507,0,0.46588,2,2,1,2,4,,3,2,Allen,Rd,1651002,1.124,1.589,0,11.181123,6,4.5 +18514,0,0.469895,2,2,1,2,4,,3,2,Allen,Rd,1651002,0.654,1.124,0,11.277471,6,4.5 +24528,1,0.031804,1,0,0,1,1,RON,3,2,Enterprise/E I 94,RAMP,4708481,0,0.032,0,,1.09,4 +32412,0,0.354709,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.513024,0.15,4 +32723,0,0.440296,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.567092,0.15,4 +33657,0,0.387921,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.310116,0.15,4 +33658,0,0.538011,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.912261,0.15,4 +33659,0,0.473059,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.35341,0.15,4 +17422,0,0.170917,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.436,2.607,0,4.101999,5,5 +18533,0,0.166349,2,2,1,2,4,,3,2,Allen,Rd,1651002,0.488,0.654,0,3.992367,6,4.5 +18534,0,0.487723,2,2,1,2,4,,3,2,Allen,Rd,1651002,0,0.488,0,11.70536,6,4.5 +24428,1,0.232701,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,0,0.233,0,5.584826,5,5 +24429,1,0.233217,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,3.058,3.291,0,5.597202,5,5 +32422,0,0.259503,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.228072,0.15,4 +32423,0,0.247275,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.934591,0.15,4 +18850,0,0.10846,1,1,1,2,3,,3,2,Outer,Dr,1662401,0,0.108,0,2.603048,5,5 +11794,1,0.286511,1,0,0,1,1,RON,3,2,E Oakwood/E I 94,RAMP,1577001,0,0.286,0,,1.09,4 +12634,0,0.046548,2,2,0,2,5,,3,2,Enterprise,Dr,1580402,0.133,0.18,0,1.117152,8,4.5 +17420,0,0.183928,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.607,2.79,0,4.414267,5,5 +24310,0,0.096939,1,1,0,2,5,,3,2,Enterprise,Dr,4710258,0.028,0.125,0,2.326536,8,4.5 +12633,0,0.13307,2,2,0,2,5,,3,2,Enterprise,Dr,1580402,0,0.133,0,3.193691,8,4.5 +19171,0,0.083908,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.877,2.961,0,2.013787,5,5 +19193,0,0.055127,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.814,2.869,0,1.323043,5,5 +22236,-1,0.036273,0,1,0,2,5,,3,2,Enterprise/Oakwood Cutoff,,4704187,0,0.036,0,0.87056,8,4.5 +24312,-1,0.027795,0,1,0,2,5,,3,2,Enterprise,Dr,4710258,0,0.028,0,0.667089,8,4.5 +19187,0,0.008038,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.869,2.877,0,0.19291,5,5 +17666,0,0.023183,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.79,2.814,0,0.556395,5,5 +32425,0,0.352824,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.467771,0.15,4 +33816,0,0.369194,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.860662,0.15,4 +24425,1,0.147135,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,0.233,0.38,0,3.531228,5,5 +24439,1,0.149828,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,2.908,3.058,0,3.595864,5,5 +17426,0,0.166368,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.269,2.436,0,3.992821,5,5 +10847,1,0.749751,3,0,0,1,1,,3,2,E I 94,,1576405,19.386,20.136,0,,0.58,7 +14420,-1,0.937032,0,3,0,1,1,,3,2,W I 94,,1588802,19.277,20.214,0,,0.58,7 +11792,1,0.048223,1,0,0,1,1,RON,3,2,W Oakwood/E I 94,RAMP,1577003,0.057,0.105,0,,1.09,4 +32749,0,0.160411,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.849865,0.15,4 +12187,1,0.24953,1,0,0,1,1,RON,3,2,Greenfield/W I 94,RAMP,1580405,0,0.25,0,,1.09,4 +12388,1,0.29742,2,0,0,1,1,ROF,3,2,E I 94/Greenfield & Schaefer,RAMP,1580403,0,0.297,0,,2.24,5 +18406,0,0.208617,2,2,1,2,3,,3,2,Greenfield,,1651002,2.11,2.319,0,5.006819,5,5 +17429,0,0.269551,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,1.419,1.688,0,6.469223,5,5 +17451,0,0.880695,2,2,1,2,3,,3,2,Dix,Ave,1688707,8.133,9.014,0,21.13669,5,5 +31943,0,0.513731,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.329544,0.15,4 +31950,0,0.601811,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.443464,0.15,4 +18858,0,0.049016,2,2,1,2,3,,3,2,Dix,Ave,1688707,9.014,9.063,0,1.176377,5,5 +18393,0,0.165891,2,2,0,2,4,,3,2,Raupp,Ave,1688707,9.063,9.229,0,3.981383,6,4.5 +37874,1,0.127101,1,0,0,1,1,RON,3,1,Ambassador Bridge/W I 96,RAMP,4718925,0,0.127,0,,1.09,4 +37880,0,0.321076,1,1,0,2,7,,4,3,Tienken,Rd,626010,0.702,1.023,0,7.705818,6.55,4.5 +18460,0,0.154296,2,2,1,2,3,,3,2,Greenfield,,1651002,1.708,1.862,0,3.7031,5,5 +18779,0,0.312478,2,2,0,2,3,,3,2,Greenfield,Rd,1648509,0.089,0.401,0,7.499482,5,5 +40454,1,0.398949,1,0,0,1,1,ROF,5,8,E I 96/Nixon,RAMP,5490671,0,0.399,0,,2.24,5 +37903,1,0.027864,1,0,0,2,4,,4,3,Washington,Rd,4415706,0.06,0.088,0,0.668737,4.5,4.5 +23373,0,0.606511,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,0.902,1.509,0,14.55626,5,5 +18757,0,0.27357,2,2,0,2,3,,3,2,Greenfield,Rd,1648509,0.401,0.675,0,6.565676,5,5 +18497,0,0.118291,2,2,1,2,3,,3,2,Greenfield,Rd,1651002,1.589,1.708,0,2.838992,5,5 +32410,0,0.236394,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.673447,0.15,4 +37782,1,0.132756,3,0,0,1,1,ROF,3,2,I 94/N Schaefer,RAMP,1589003,0.656,0.789,0,,2.24,5 +37781,1,0.105003,2,0,0,1,1,ROF,3,2,I 94/N Schaefer,RAMP,1589003,0.551,0.656,0,,2.24,5 +37904,-1,0.389769,0,2,0,2,4,DIV,4,6,Custer,Rd,4300467,1.896,2.285,0,9.354444,4.5,4.5 +37795,1,0.132443,1,0,0,1,1,RON,3,2,S Schaefer/I 94,RAMP,4706627,0,0.132,0,,1.09,4 +37788,1,0.106615,3,0,0,1,1,RON,3,2,N Schaefer/I 94,RAMP,1577006,0.019,0.125,0,,1.09,4 +37789,1,0.138716,2,0,0,1,1,RON,3,2,N Schaefer/I 94,RAMP,1577006,0.125,0.264,0,,1.09,4 +37796,1,0.181029,1,0,0,1,1,ROF,3,2,I 94/Butler,RAMP,1803401,0,0.181,0,,2.24,5 +37772,0,0.494684,2,2,1,2,3,,3,2,Schaefer,Rd,4706528,1.984,2.478,0,11.872417,5,5 +37794,1,0.13665,1,0,0,1,1,ROF,3,2,Ford Gate 10/S Schaefer,RAMP,1648601,0,0.137,0,,2.24,5 +37901,0,1.094283,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.262789,0.15,4 +37875,1,0.096373,2,0,0,1,1,RON,3,1,Ambassador Bridge/W I 96,RAMP,4718925,0.127,0.223,0,,1.09,4 +37797,1,0.136867,1,0,0,1,1,RON,3,2,Butler/Ford Gate 10,RAMP,4718370,0,0.137,0,,1.09,4 +37792,1,0.102906,2,0,0,1,1,RON,3,2,Schaefer/I 94,RAMP,1577006,0.264,0.367,0,,1.09,4 +37798,0,0.442664,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.623946,0.15,4 +37876,1,0.21371,1,0,0,1,1,RON,3,1,Ambassador Bridge/N I 75,RAMP,4718924,0.106,0.32,0,,1.09,4 +37777,0,0.007521,2,2,1,2,4,,3,2,Butler,St,1628608,0.366,0.374,0,0.180512,6,4.5 +37774,0,0.00901,2,2,1,2,4,,3,2,Butler,St,1628608,0.243,0.252,0,0.216237,6,4.5 +37793,1,0.096962,1,0,0,1,1,ROF,3,2,Ford Gate 10/N Schaefer,RAMP,1648602,0,0.097,0,,2.24,5 +37764,1,0.17231,2,0,0,2,3,DV2,3,2,Schaefer,Rd,4706528,1.646,1.818,0,4.135437,5,5 +37776,0,0.114421,2,2,1,2,4,,3,2,Butler,St,1628608,0.252,0.366,0,2.746115,6,4.5 +37773,0,0.243072,2,2,0,2,4,,3,2,Butler,St,1628608,0,0.243,0,5.833732,6,4.5 +37799,1,0.011759,1,0,0,2,3,RSF,3,2,N Schaefer/I 94,RAMP,0,0,0,0,0.282219,5,5 +37785,1,0.018826,3,0,0,1,1,RON,3,2,Ford Gate 10/I 94 & Schaefer,RAMP,1577006,0,0.019,0,,1.09,4 +37766,-1,0.007546,0,2,0,2,3,DV2,3,2,Schaefer,Rd,4704975,0.315,0.322,0,0.181104,5,5 +37768,-1,0.163311,0,2,0,2,3,DV2,3,2,Schaefer,Rd,4704975,0.322,0.485,0,3.919455,5,5 +37767,1,0.165607,2,0,0,2,3,DV2,3,2,Schaefer,Rd,4706528,1.818,1.984,0,3.97458,5,5 +37765,-1,0.174111,0,2,0,2,3,DV2,3,2,Schaefer,Rd,4704975,0.141,0.315,0,4.178672,5,5 +18807,-1,0.088935,0,1,0,1,3,,3,2,Greenfield,Rd,1648509,0,0.089,0,,5,5 +22494,0,0.052083,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0.842,0.894,0,1.249987,5,5 +23964,0,0.055174,2,2,0,2,3,,3,2,Greenfield,Rd,4706636,0,0.055,0,1.324179,5,5 +22705,0,0.064855,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0.777,0.842,0,1.556508,5,5 +23638,0,0.00825,2,2,0,2,3,,3,1,Schaefer,Hwy,4706528,0.894,0.902,0,0.197994,5,5 +37872,1,0.023585,1,0,0,1,1,RON,3,1,Ambassador Bridge/N I 75,RAMP,4718924,0,0.024,0,,1.09,4 +11621,0,0.34591,1,1,0,2,5,,2,2,Maple,Rd,1580509,0,0.346,0,8.301852,8.5,4.5 +11758,0,0.160587,2,2,1,2,3,,2,2,Michigan,Ave,1577103,0.456,0.617,0,3.854079,6,5 +11760,0,0.09056,3,3,1,2,3,,2,2,Michigan,Ave,1577103,0.284,0.375,0,2.173444,6,5 +11771,0,0.24348,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,3.193,3.436,0,5.843516,6,4.5 +12551,0,0.209074,1,1,0,2,5,,2,2,Schlaff,Ave,1580505,0.107,0.316,0,5.01778,8.5,4.5 +15631,1,0.259592,4,0,0,2,3,DIV,2,2,Ford,Rd,1595510,18.474,18.734,0,6.230212,6,5 +18103,1,0.379053,3,0,0,2,3,DV2,2,2,Greenfield,,1651002,3.452,3.831,0,9.097275,6,5 +18476,0,0.522435,1,1,0,2,5,,2,2,Prospect,Ave,1653505,0.171,0.693,0,12.538432,8.5,4.5 +19990,-1,0.249382,0,4,0,2,3,DIV,2,2,Ford,Rd,1924107,4.119,4.368,0,5.985162,6,5 +23477,0,0.242778,2,2,1,2,3,,2,2,Schaefer,Rd,4706528,3.035,3.277,0,5.826667,6,5 +23699,-1,0.156211,0,3,0,2,3,DV2,2,2,Greenfield,,4704562,0.224,0.38,0,3.749054,6,5 +30495,0,0.275627,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.615039,0.15,4 +30496,0,0.260536,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.252856,0.15,4 +32421,0,0.243155,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.835721,0.15,4 +32754,0,0.265623,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.374951,0.15,4 +32757,0,0.218898,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.253551,0.15,4 +32758,0,0.204719,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.913261,0.15,4 +32877,0,0.476457,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.434958,0.15,4 +33642,0,0.267181,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.412332,0.15,4 +33655,0,0.284114,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.818727,0.15,4 +11762,0,0.105451,3,3,1,2,3,,2,2,Michigan,Ave,1577103,0,0.105,0,2.530819,6,5 +11772,1,0.399838,3,0,0,2,4,DIV,3,2,Rotunda,Dr,1577009,2.793,3.193,0,9.596109,6,4.5 +18274,0,0.288887,2,2,1,2,3,,3,2,Greenfield,,1651002,2.958,3.247,0,6.933294,5,5 +18280,0,0.233813,2,2,1,2,3,,3,2,Greenfield,,1651002,2.725,2.958,0,5.611519,5,5 +22239,1,0.201444,2,0,0,1,4,,3,2,E Rotunda/S Greenfield,Ramp,4703397,0,0.201,0,,6,4.5 +22564,-1,0.452907,0,3,0,2,4,DIV,3,2,Rotunda,Dr,4706236,0.092,0.544,0,10.869763,6,4.5 +23712,-1,0.25104,0,2,0,1,4,,3,2,S Greenfield/W Rotunda,Ramp,4706240,0,0.251,0,,6,4.5 +32713,0,0.413286,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.918855,0.15,4 +33656,0,0.511255,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,12.270116,0.15,4 +11773,1,0.145916,2,0,0,2,4,DIV,3,2,Rotunda,Dr,1577009,2.647,2.793,0,3.501989,6,4.5 +22563,-1,0.091608,0,2,0,2,4,DIV,3,2,Rotunda,Dr,4706236,0,0.092,0,2.198583,6,4.5 +15831,1,0.176369,2,0,0,1,3,RSF,2,2,W Michigan/Greenfield,RAMP,1600203,0,0.176,0,,5,5 +16782,1,0.194571,2,0,0,1,3,RSF,2,2,Greenfield/E Michigan,RAMP,1600503,0,0.195,0,,5,5 +18256,0,0.157349,2,2,1,2,3,,2,2,Greenfield,,1651002,3.247,3.404,0,3.776382,6,5 +22157,-1,0.180814,0,3,0,2,3,DV2,2,2,Greenfield,,4704562,0,0.181,0,4.339547,6,5 +18253,0,0.047292,3,3,1,2,3,,2,2,Greenfield,,1651002,3.404,3.452,0,1.134997,6,5 +22156,-1,0.043023,0,3,0,2,3,DV2,2,2,Greenfield,,4704562,0.181,0.224,0,1.032542,6,5 +16971,1,0.049194,3,0,0,2,3,DIV,2,2,Michigan,Ave,1600206,19.036,19.086,0,1.180668,6,5 +22860,-1,0.066929,0,4,0,2,3,DIV,2,2,Michigan,Ave,4704788,2.419,2.486,0,1.606307,6,5 +22559,1,0.19812,2,0,0,1,4,,3,2,N Greenfield/E Rotunda,Ramp,4706239,0.008,0.206,0,,6,4.5 +22835,-1,0.192602,0,2,0,1,4,,3,2,W Rotunda/N Greenfield,Ramp,4704807,0.009,0.201,0,,6,4.5 +18283,-1,0.040501,0,2,0,2,3,,3,2,Greenfield,,1651002,2.611,2.652,0,0.97203,5,5 +18297,-1,0.049454,0,2,0,2,3,,3,2,Greenfield,,1651002,2.562,2.611,0,1.186894,5,5 +23483,1,0.040444,2,0,0,2,3,,3,2,Greenfield,,4706242,0.111,0.152,0,0.970658,5,5 +23714,1,0.049517,2,0,0,2,3,,3,2,Greenfield,,4706242,0.062,0.111,0,1.1884,5,5 +18282,0,0.072793,2,2,1,2,3,,3,2,Greenfield,,1651002,2.652,2.725,0,1.747029,5,5 +18376,-1,0.061905,0,2,0,2,3,,3,2,Greenfield,,1651002,2.5,2.562,0,1.485716,5,5 +23713,1,0.061756,2,0,0,2,3,,3,2,Greenfield,,4706242,0,0.062,0,1.482132,5,5 +23715,1,0.00787,2,0,0,1,4,,3,2,N Greenfield/E Rotunda,Ramp,4706239,0,0.008,0,,6,4.5 +22836,-1,0.008484,0,2,0,1,4,,3,2,W Rotunda/N Greenfield,Ramp,4704807,0,0.009,0,,6,4.5 +11761,0,0.178983,3,3,1,2,3,,2,2,Michigan,Ave,1577103,0.105,0.284,0,4.295583,6,5 +32751,0,0.178986,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.295668,0.15,4 +12390,0,0.16376,1,1,0,2,5,,2,2,Chase,Rd,1580503,0.518,0.681,0,3.930235,8.5,4.5 +15259,1,0.22389,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,18.251,18.474,0,5.373351,5,5 +18020,1,0.248177,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.044,4.292,0,5.956256,5,5 +19991,-1,0.221431,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,3.897,4.119,0,5.314346,5,5 +23696,-1,0.0609,0,3,0,2,3,DV2,3,2,Greenfield,,4704562,0.783,0.844,0,1.461611,5,5 +32301,0,0.259562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.229498,0.15,4 +32755,0,0.307414,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,7.377937,0.15,4 +32759,0,0.164463,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.947101,0.15,4 +32760,0,0.253991,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.095777,0.15,4 +32762,0,0.183852,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.412457,0.15,4 +18090,1,0.213249,3,0,0,2,3,DV2,2,2,Greenfield,,1651002,3.831,4.044,0,5.117975,6,5 +22826,-1,0.215927,0,3,0,2,3,DV2,2,2,Greenfield,,4704562,0.38,0.596,0,5.182243,6,5 +32729,0,0.265635,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.375245,0.15,4 +32756,0,0.263302,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.319247,0.15,4 +32761,0,0.263679,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.328297,0.15,4 +14831,0,0.019886,2,2,0,2,4,,2,2,Hubbard,Dr,1594801,1.878,1.898,0,0.477268,8,4.5 +23697,-1,0.187425,0,3,0,2,3,DV2,3,2,Greenfield,,4704562,0.596,0.783,0,4.4982,5,5 +13853,1,0.175881,2,0,0,1,3,RSF,3,2,W M 153/Greenfield,RAMP,1589607,0,0.176,0,,5,5 +13989,1,0.199395,2,0,0,1,3,RSF,3,2,Greenfield/E M 153,RAMP,1589605,0,0.199,0,,5,5 +17995,1,0.223084,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.468,4.691,0,5.354018,5,5 +32298,0,0.316158,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.587801,0.15,4 +32299,0,0.251189,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.028547,0.15,4 +32300,0,0.297234,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.133608,0.15,4 +17998,1,0.11855,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.35,4.468,0,2.845197,5,5 +23693,-1,0.118312,0,3,0,2,3,DV2,3,2,Greenfield,,4704562,0.902,1.02,0,2.839494,5,5 +18004,1,0.057802,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.292,4.35,0,1.387247,5,5 +23695,-1,0.058091,0,3,0,2,3,DV2,3,2,Greenfield,,4704562,0.844,0.902,0,1.39418,5,5 +14017,1,0.010602,2,0,0,1,3,RSF,3,2,E M 153/Greenfield,RAMP,1589606,0.279,0.289,0,,5,5 +13658,1,0.010961,2,0,0,1,3,RSF,3,2,Greenfield/W M 153,RAMP,1589608,0,0.011,0,,5,5 +19992,-1,0.098831,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,3.798,3.897,0,2.371946,5,5 +15535,1,0.072984,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,18.178,18.251,0,1.75161,5,5 +12096,0,0.0583,1,1,0,2,5,,2,2,Schlaff,Ave,1580505,0.564,0.622,0,1.399191,8.5,4.5 +12188,0,0.201251,1,1,0,2,5,,2,2,Chase,Rd,1580503,0.317,0.518,0,4.830027,8.5,4.5 +11759,0,0.081577,2,2,1,2,3,,2,2,Michigan,Ave,1577103,0.375,0.456,0,1.957854,6,5 +12310,0,0.247948,1,1,0,2,5,,2,2,Schlaff,Ave,1580505,0.316,0.564,0,5.950749,8.5,4.5 +11937,0,0.357926,1,1,0,2,5,,3,2,Chase,Rd,1580503,0.703,1.061,0,8.590229,8,4.5 +12095,0,0.021614,1,1,0,2,5,,2,2,Chase,Rd,1580503,0.681,0.703,0,0.518735,8.5,4.5 +11042,1,0.8103,3,0,0,1,1,,3,2,E I 94,,1576405,20.768,21.578,0,,0.58,7 +11768,0,0.144952,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,3.958,4.103,0,3.478849,6,4.5 +11769,0,0.419954,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,3.538,3.958,0,10.078902,6,4.5 +14385,-1,0.749525,0,3,0,1,1,,3,2,W I 94,,1588802,20.794,21.544,0,,0.58,7 +18956,0,0.171,1,1,0,2,5,,2,2,Prospect,Ave,1653505,0,0.171,0,4.103992,8.5,4.5 +23127,0,0.18749,2,2,1,2,3,,3,2,Schaefer,Rd,4706528,2.478,2.666,0,4.499761,5,5 +18738,0,0.157935,1,1,0,1,5,,3,2,Rotunda/Schaefer Cutoff,,1648603,0,0.158,0,,8,4.5 +37758,1,0.137243,2,0,0,2,3,DV2,3,2,Schaefer,Rd,4706528,1.509,1.646,0,3.293829,5,5 +13710,-1,0.17121,0,3,0,1,1,,3,2,W I 94,,1588802,20.623,20.794,0,,0.58,7 +11770,0,0.10175,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,3.436,3.538,0,2.44199,6,4.5 +32712,0,0.10061,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.414646,0.15,4 +18696,0,0.16704,1,1,0,2,5,,2,2,Prospect,Ave,1648607,0.272,0.439,0,4.008964,8.5,4.5 +22982,0,0.219865,2,2,1,2,3,,3,2,Schaefer,Rd,4706528,2.666,2.885,0,5.276753,5,5 +12550,0,0.107266,1,1,0,2,5,,2,2,Schlaff,Ave,1580505,0,0.107,0,2.574377,8.5,4.5 +18726,0,0.096534,1,1,0,1,5,,3,2,Schaefer/Rotunda Cutoff,,1648604,0,0.097,0,,8,4.5 +18725,0,0.036246,1,1,0,2,5,,2,2,Maple,Rd,1648605,0.035,0.071,0,0.869904,8.5,4.5 +22632,0,0.121247,2,2,1,2,3,,2,2,Schaefer,Rd,4706528,2.913,3.035,0,2.909937,6,5 +22779,0,0.028054,2,2,1,2,3,,2,2,Schaefer,Rd,4706528,2.885,2.913,0,0.673303,6,5 +10828,1,0.345874,3,0,0,1,1,,3,2,E I 94,,1576405,21.578,21.924,0,,0.58,7 +11767,0,0.153301,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,4.103,4.256,0,3.679217,6,4.5 +11783,1,0.19358,1,0,0,1,1,RON,3,2,Rotunda/E I 94,RAMP,1577008,0,0.194,0,,1.09,4 +14102,1,0.104965,1,0,0,1,1,ROF,3,2,W I 94/Rotunda,RAMP,1589004,0,0.105,0,,3.07,5 +11755,0,0.239068,2,2,1,2,3,,2,2,Michigan,Ave,1577103,0.808,1.047,0,5.73764,6,5 +12015,1,0.141759,2,0,0,2,4,DV2,2,2,Oakman,Blvd,1580701,0.226,0.368,0,3.402208,8,4.5 +13211,-1,0.141481,0,4,0,2,4,DV2,2,2,Oakman,Blvd,1580610,0.414,0.555,0,3.395554,8,4.5 +15095,1,0.185575,4,0,0,2,3,DIV,2,2,Ford,Rd,1595510,18.972,19.158,0,4.453798,6,5 +19987,-1,0.176991,0,4,0,2,3,DIV,2,2,Ford,Rd,1924107,4.742,4.919,0,4.247787,6,5 +22841,0,0.250637,2,2,0,2,3,,2,2,Schaefer,Rd,4706528,3.514,3.764,0,6.015283,6,5 +30649,0,0.244386,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.865267,0.15,4 +30961,0,0.29725,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,7.133994,0.15,4 +32764,0,0.203457,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.882971,0.15,4 +32766,0,0.241241,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.789777,0.15,4 +33337,0,0.276918,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.646024,0.15,4 +11756,0,0.147014,2,2,1,2,3,,2,2,Michigan,Ave,1577103,0.661,0.808,0,3.528343,6,5 +23123,0,0.236392,2,2,0,2,3,,2,2,Schaefer,Rd,4706528,3.277,3.514,0,5.673398,6,5 +30647,0,0.30008,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,7.201926,0.15,4 +32753,0,0.243516,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.844373,0.15,4 +11757,0,0.043947,2,2,1,2,3,,2,2,Michigan,Ave,1577103,0.617,0.661,0,1.054726,6,5 +15330,1,0.238674,4,0,0,2,3,DIV,2,2,Ford,Rd,1595510,18.734,18.972,0,5.728182,6,5 +19989,-1,0.248867,0,4,0,2,3,DIV,2,2,Ford,Rd,1924107,4.368,4.617,0,5.972799,6,5 +22489,0,0.336153,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,3.785,4.121,0,8.067682,5,5 +19988,-1,0.125402,0,4,0,2,3,DIV,2,2,Ford,Rd,1924107,4.617,4.742,0,3.009651,6,5 +22702,0,0.02044,2,2,0,2,3,,2,2,Schaefer,Rd,4706528,3.764,3.785,0,0.490551,6,5 +11622,0,0.184381,2,2,1,2,4,,2,2,Oakman,Blvd,1580610,0,0.184,0,4.425149,8,4.5 +11754,0,0.154362,2,2,1,2,3,,2,2,Michigan,Ave,1577103,1.047,1.201,0,3.704677,6,5 +14739,0,0.174829,2,2,0,2,4,,2,2,Miller,Rd,1589801,2.558,2.733,0,4.195885,8,4.5 +30648,0,0.158593,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,3.806229,0.15,4 +32763,0,0.149612,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,3.590679,0.15,4 +32765,0,0.208479,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.003485,0.15,4 +30637,0,0.240991,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.783777,0.15,4 +14740,0,0.006695,2,2,0,2,4,,2,2,Miller,Rd,1589801,2.552,2.558,0,0.160686,8,4.5 +11623,-1,0.229607,0,4,0,2,4,DV2,2,2,Oakman,Blvd,1580610,0.184,0.414,0,5.510558,8,4.5 +11752,0,0.132106,3,3,1,2,3,,2,2,Michigan,Ave,1577103,1.209,1.341,0,3.170552,6,5 +12014,1,0.225899,2,0,0,2,4,DV2,2,2,Oakman,Blvd,1580701,0,0.226,0,5.421577,8,4.5 +11753,0,0.007539,3,3,1,2,3,,2,2,Michigan,Ave,1577103,1.201,1.209,0,0.180936,6,5 +11751,0,0.037294,3,3,1,2,3,,2,2,Michigan,Ave,1577103,1.341,1.378,0,0.895066,6,5 +15627,0,0.062807,3,3,1,2,3,,2,2,Ford,Rd,1595510,19.277,19.34,0,1.507372,6,5 +15676,1,0.058356,4,0,0,2,3,DIV,2,2,Ford,Rd,1595510,19.218,19.277,0,1.40054,6,5 +14845,1,0.060488,4,0,0,2,3,DIV,2,2,Ford,Rd,1595510,19.158,19.218,0,1.451715,6,5 +15327,0,0.011011,3,3,1,2,3,,2,2,Ford,Rd,1595510,19.34,19.351,0,0.264273,6,5 +19043,0,0.184708,1,1,0,2,5,,3,2,Great Lakes,Ave,1708110,0.201,0.386,0,4.432994,8,4.5 +20782,0,0.632211,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,14.156,14.788,0,15.173066,5,5 +32699,0,0.377122,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.050929,0.15,4 +32773,0,0.402446,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.658713,0.15,4 +19892,0,0.383813,2,2,1,2,3,,3,2,Biddle,Ave,4302169,12.468,12.852,0,9.211515,5,5 +20478,0,0.356116,2,2,1,2,3,,3,2,Biddle,Ave,4302169,13.176,13.532,0,8.546778,5,5 +31938,0,0.33194,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.966556,0.15,4 +32702,0,0.286186,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.868466,0.15,4 +33813,0,0.204065,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.89755,0.15,4 +33991,0,0.453091,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.874186,0.15,4 +13041,0,0.31987,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.478,7.798,0,7.676868,6,4.5 +18852,0,0.451092,1,1,0,2,5,,3,2,3rd,St,1661508,0.827,1.278,0,10.826219,8,4.5 +24242,0,0.450557,1,1,0,2,5,,3,2,2nd,St,4711051,0.451,0.901,0,10.813379,8,4.5 +24544,0,0.524983,1,1,0,2,5,,3,2,4th,St,5491107,0.922,1.447,0,12.599596,8,4.5 +32027,0,0.430343,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.328226,0.15,4 +32028,0,0.159908,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.837799,0.15,4 +33992,0,0.357176,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.572233,0.15,4 +30433,0,0.157835,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.788047,0.15,4 +30619,0,0.071788,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.722907,0.15,4 +24119,0,0.011323,1,1,0,2,5,,3,2,4th,St,5491107,0.911,0.922,0,0.271761,8,4.5 +30618,0,0.026854,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.644502,0.15,4 +12868,0,0.079905,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.881,7.961,0,1.917727,6,4.5 +20714,0,0.324371,2,2,1,2,3,,3,2,Biddle,Ave,4302169,12.852,13.176,0,7.784902,5,5 +12686,0,0.083037,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.798,7.881,0,1.992897,6,4.5 +12518,0,0.10312,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.961,8.064,0,2.474885,6,4.5 +20092,0,0.268474,2,2,1,2,3,,3,2,Biddle,Ave,4302169,13.887,14.156,0,6.443382,5,5 +24357,0,0.439293,1,1,0,2,5,,3,2,Goddard,Rd,5491821,0.487,0.926,0,10.543041,8,4.5 +32703,0,0.286011,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.864271,0.15,4 +33744,0,0.394649,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.471569,0.15,4 +31983,0,0.355854,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.54049,0.15,4 +20289,0,0.355095,2,2,1,2,3,,3,2,Biddle,Ave,4302169,13.532,13.887,0,8.522284,5,5 +15277,0,0.377767,1,1,0,2,5,,3,2,Emmons,Blvd,1593310,1.987,2.365,0,9.066404,8,4.5 +20241,0,0.072357,2,2,1,2,3,,3,2,Biddle,Ave,4302169,12.396,12.468,0,1.736559,5,5 +20139,0,0.463788,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,15.258,15.722,0,11.130909,5,5 +22682,0,0.286111,1,1,0,2,5,,3,2,Visger,Rd,4705487,0.519,0.805,0,6.866659,8,4.5 +24332,0,0.273296,2,2,1,2,3,,3,2,Southfield,Rd,4710185,1.298,1.571,0,6.559098,5,5 +24390,1,0.434984,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,2.864,3.299,0,10.439607,5,5 +24392,1,0.276304,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,2.216,2.492,0,6.631286,5,5 +24470,1,0.276388,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,0.804,1.081,0,6.633301,5,5 +24472,1,0.431559,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,0,0.431,0,10.357409,5,5 +32767,0,0.510968,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.263238,0.15,4 +32769,0,0.476788,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.442902,0.15,4 +32770,0,0.310079,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.441892,0.15,4 +24336,0,0.244269,2,2,1,2,3,,3,2,Southfield,Rd,4710185,0.906,1.151,0,5.862446,5,5 +31939,0,0.521029,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.504687,0.15,4 +33743,0,0.497582,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.94197,0.15,4 +18860,0,0.295389,1,1,0,2,5,,3,2,River,Dr,1660207,1.353,1.648,0,7.089347,8,4.5 +18862,0,0.219965,1,1,0,2,5,,3,2,River,Dr,1660207,1.133,1.353,0,5.279154,8,4.5 +24335,0,0.147284,2,2,1,2,3,,3,2,Southfield,Rd,4710185,1.151,1.298,0,3.534824,5,5 +31988,0,0.18172,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.36127,0.15,4 +32768,0,0.029863,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.716723,0.15,4 +24391,1,0.37212,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,2.492,2.864,0,8.930891,5,5 +24471,1,0.373016,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,0.431,0.804,0,8.952383,5,5 +23267,0,0.188799,1,1,0,2,5,,3,1,Visger,St,4705487,0.182,0.371,0,4.531177,8,4.5 +30805,0,0.359513,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.628316,0.15,4 +31954,0,0.345705,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.296928,0.15,4 +24393,1,0.288411,3,0,0,2,3,DV2,3,1,Outer,Dr,4710093,1.927,2.216,0,6.921872,5,5 +24469,1,0.284143,3,0,0,2,3,DV2,3,1,Outer,Dr,4710092,1.081,1.365,0,6.819433,5,5 +15746,1,0.293294,3,0,0,2,3,DIV,3,1,Fort,St,1592105,14.146,14.439,0,7.039047,5,5 +23608,0,0.181932,1,1,0,2,5,,3,1,Visger,St,4705487,0,0.182,0,4.366372,8,4.5 +31952,0,0.318149,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.635572,0.15,4 +31953,0,0.195158,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.683797,0.15,4 +31955,0,0.216731,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.201551,0.15,4 +22960,0,0.147984,1,1,0,2,5,,3,1,Visger,St,4705487,0.371,0.519,0,3.551626,8,4.5 +20534,0,0.456478,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,14.788,15.244,0,10.955482,5,5 +24331,0,0.156291,2,2,1,2,3,,3,2,Southfield,Rd,4710185,1.571,1.727,0,3.75099,5,5 +20341,0,0.013984,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,15.244,15.258,0,0.335609,5,5 +20594,0,0.74851,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,15.905,16.653,0,17.964247,5,5 +23675,0,0.6015,1,1,0,2,5,,3,2,Visger,Rd,4705487,0.805,1.406,0,14.436001,8,4.5 +31945,0,0.348489,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.363747,0.15,4 +31947,0,0.574298,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.783161,0.15,4 +31960,0,0.470132,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.283179,0.15,4 +32772,0,0.42024,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.085758,0.15,4 +20834,0,0.182988,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,15.722,15.905,0,4.391704,5,5 +19141,0,0.200846,1,1,0,2,5,,3,2,Great Lakes,Ave,1708110,0,0.201,0,4.820311,8,4.5 +32701,0,0.050764,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.218336,0.15,4 +20389,0,0.114683,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,16.653,16.767,0,2.752383,5,5 +33593,0,0.227428,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.458263,0.15,4 +33591,0,0.833122,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,19.994931,0.15,4 +17951,0,0.362205,1,1,0,2,5,,3,2,Marion Industrial,Hwy,1708204,1.167,1.529,0,8.692912,8,4.5 +11532,1,0.578784,3,0,0,1,1,,3,1,E I 94,,1576405,23.567,24.145,0,,0.58,7 +11667,1,0.122106,1,0,0,1,1,RON,3,1,Cecil/E I 94,RAMP,1577204,0,0.122,0,,1.09,4 +11671,0,0.094566,1,1,0,2,5,,3,1,Cecil,St,1577203,0,0.095,0,2.269579,8,4.5 +11680,0,0.17057,2,2,0,2,4,,3,1,Central,St,1577202,1.573,1.744,0,4.093684,6,4.5 +11688,0,0.09796,1,1,0,2,5,,3,1,Central,St,1577202,0,0.098,0,2.351033,8,4.5 +11740,0,0.291989,3,3,1,2,3,,3,1,Michigan,Ave,1577103,2.881,3.173,0,7.007743,5,5 +12409,0,0.039895,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,0.577,0.616,0,0.957475,6,4.5 +12474,-1,0.35606,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.144,0.5,0,8.545442,5,5 +13439,0,0.489725,2,2,1,2,3,,3,1,Fort,St,1585010,1.415,1.904,0,11.753407,5,5 +13444,0,0.315022,2,2,0,2,3,,3,1,Fort,St,1585010,0.425,0.74,0,7.560537,5,5 +14043,1,0.179386,1,0,0,1,1,ROF,3,1,W I 94/Cecil,RAMP,1589006,0,0.179,0,,2.24,5 +14066,-1,0.656475,0,3,0,1,1,,3,1,W I 94,,1588802,23.501,24.157,0,,0.58,7 +14716,0,0.177908,1,1,0,2,5,,3,1,Waterman,St,1590002,0.415,0.593,0,4.269793,8,4.5 +14719,0,0.110923,1,1,0,2,4,,3,1,Springwells,St,1589810,0.919,1.03,0,2.66215,6,4.5 +14725,0,0.384116,1,1,0,2,5,,3,1,Lawndale,St,1589808,0.487,0.871,0,9.218794,8,4.5 +14726,0,0.100951,1,1,0,2,5,,3,1,Lawndale,St,1589808,0.386,0.487,0,2.422813,8,4.5 +14729,0,0.458948,1,1,0,2,5,,3,1,Woodmere,St,1589805,0.575,1.033,0,11.014756,8,4.5 +14731,0,0.265738,1,1,0,2,5,,3,1,Woodmere,St,1589805,0.194,0.459,0,6.377706,8,4.5 +14747,1,0.706696,2,0,0,2,4,DV2,3,2,Miller,Rd,1589801,0.698,1.405,0,16.960698,6,4.5 +14776,1,0.535719,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0.082,0.618,0,12.85725,8,4.5 +14833,1,0.522716,4,0,0,1,1,,3,1,N I 75,,1592010,19.02,19.543,0,,0.58,7 +14881,-1,1.511769,0,4,0,1,1,,3,1,S I 75,,1595106,16.376,17.887,0,,0.58,7 +15028,-1,0.524799,0,4,0,1,1,,3,1,S I 75,,1595106,19.032,19.557,0,,0.58,7 +15217,1,1.242664,4,0,0,1,1,,3,1,N I 75,,1592010,16.587,17.83,0,,0.58,7 +16300,0,0.174847,1,1,0,2,5,,3,1,Chamberlain,St,1611603,0,0.175,0,4.196326,8,4.5 +16325,0,0.331374,2,2,0,2,4,,3,1,John Kronk,St,1610302,0.493,0.825,0,7.95298,6,4.5 +16535,0,0.108125,1,1,0,2,5,,3,1,Lafayette,Blvd,1611306,0,0.108,0,2.594996,8,4.5 +16808,0,0.33856,1,1,0,2,5,,3,1,Chamberlain,St,1611603,0.35,0.689,0,8.125445,8,4.5 +16826,-1,0.207633,0,2,0,2,5,,3,1,W I 94 Service Drive,,1610609,0.252,0.46,0,4.983202,8,4.5 +17347,0,0.254764,2,2,0,2,3,,3,1,Dix,St,1627003,2.83,3.085,0,6.114333,5,5 +17354,0,0.182275,2,2,0,2,3,,3,2,Dix,Ave,1627003,1.494,1.676,0,4.374598,5,5 +17646,-1,0.1029,0,1,0,2,4,,3,2,Vernor,Ave,1651306,0.086,0.189,0,2.46959,6,4.5 +20882,0,0.247379,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,17.06,17.308,0,5.937085,5,5 +22605,-1,0.478847,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0.482,0.961,0,11.492324,8,4.5 +22764,0,0.308093,2,2,0,2,4,,3,2,Ferney,Ave,4704830,0.102,0.41,0,7.394241,6,4.5 +23308,1,0.09415,1,0,0,2,4,,3,2,Vernor,Ave,4706187,0,0.094,0,2.259596,6,4.5 +23566,0,0.342264,2,2,0,2,5,,3,1,Dearborn,St,4706467,0.688,1.03,0,8.214347,8,4.5 +30615,0,0.246878,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.925069,0.15,4 +32876,0,0.206263,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.950314,0.15,4 +32878,0,0.425855,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.220518,0.15,4 +32882,0,0.378776,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.090627,0.15,4 +32885,0,0.435428,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.450269,0.15,4 +33822,0,0.228372,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.480921,0.15,4 +33843,0,0.316113,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.586713,0.15,4 +14198,0,0.444045,2,2,0,2,3,,3,1,Schaefer,,1589705,0.398,0.842,0,10.657072,5,5 +14748,0,0.424823,2,2,1,2,4,,3,2,Miller,Rd,1589801,0.273,0.698,0,10.19575,6,4.5 +17355,0,0.235129,2,2,0,2,3,,3,2,Dix,Ave,1627003,1.259,1.494,0,5.643088,5,5 +17360,0,0.370782,2,2,0,2,3,,3,1,Dix,St,1627003,0.213,0.583,0,8.898761,5,5 +39931,1,0.084067,2,0,0,1,3,,3,1,Ambassador,Brg,4718953,0.068,0.152,0,,5,5 +21275,0,0.245821,2,2,0,2,3,,3,1,Fort,St,4700047,0.275,0.521,0,5.899706,5,5 +39936,1,0.468908,2,0,0,1,3,,3,1,DIBC Inspection to I 75,,4719479,0,0.469,0,,5,5 +31944,0,0.24869,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.968548,0.15,4 +13305,1,0.215528,1,0,0,1,1,ROF,3,1,S I 75/S Schaefer,RAMP,1581401,0,0.216,0,,2.24,5 +13307,1,0.236772,1,0,0,1,1,RON,3,1,N Fort/N I 75,RAMP,1581403,0,0.237,0,,1.09,4 +14157,1,0.153625,1,0,0,1,1,RON,3,1,Schaefer/N I 75,RAMP,1589704,0,0.154,0,,1.09,4 +14203,0,0.064624,2,2,1,2,3,,3,1,Schaefer,,1589705,0.038,0.103,0,1.550966,5,5 +14945,1,0.19917,1,0,0,1,1,ROF,3,1,S I 75/N Schaefer,RAMP,1595210,0,0.199,0,,2.24,5 +15128,-1,0.19818,0,3,0,1,1,,3,1,S I 75,,1595106,16.178,16.376,0,,0.58,7 +15303,1,0.131634,1,0,0,1,1,ROF,3,1,N I 75/Schaefer,RAMP,1592004,0,0.132,0,,2.24,5 +15367,-1,0.447178,0,3,0,2,3,DIV,3,1,Fort,St,1592106,14.927,15.374,0,10.732266,5,5 +15588,1,0.384819,3,0,0,1,1,,3,1,N I 75,,1592010,16.203,16.587,0,,0.58,7 +15660,1,0.13411,3,0,0,1,1,,3,1,N I 75,,1592010,16.069,16.203,0,,0.58,7 +15664,-1,0.273628,0,3,0,2,3,DIV,3,1,Fort,St,1592106,14.589,14.863,0,6.567078,5,5 +15745,1,0.31336,3,0,0,2,3,DIV,3,1,Fort,St,1592105,14.755,15.068,0,7.520639,5,5 +21274,1,0.275027,3,0,0,2,3,DIV,3,1,Fort,St,4700047,0,0.275,0,6.600656,5,5 +23299,0,0.228533,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0,0.229,0,5.484786,5,5 +31951,0,0.316374,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.592983,0.15,4 +32775,0,0.586167,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.06801,0.15,4 +33809,0,0.345306,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.287344,0.15,4 +15240,1,0.261154,1,0,0,1,1,RON,3,1,Schaefer/S I 75,RAMP,1592008,0.042,0.303,0,,1.09,4 +15785,-1,0.229085,0,3,0,1,1,,3,1,S I 75,,1595106,15.948,16.178,0,,0.58,7 +14778,1,0.041641,1,0,0,1,1,RON,3,1,Schaefer/S I 75,RAMP,1592008,0,0.042,0,,1.09,4 +22237,-1,0.04745,0,1,0,1,1,RON,3,1,N Schaefer/S I 75,RAMP,4704090,0,0.048,0,,1.09,4 +13771,0,0.019888,2,2,1,2,3,,3,1,Schaefer,,1589705,0.018,0.038,0,0.47732,5,5 +13954,0,0.018045,2,2,1,2,3,,3,1,Schaefer,,1589705,0,0.018,0,0.433078,5,5 +17361,0,0.212528,1,1,0,2,4,,3,1,Dix,St,1627003,0,0.213,0,5.100674,6,4.5 +17433,0,0.165121,2,2,0,2,3,,3,1,Oakwood,Blvd,1648503,0.941,1.106,0,3.962905,5,5 +23213,0,0.176045,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0.229,0.405,0,4.225079,5,5 +23047,0,0.141084,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0.405,0.546,0,3.386024,5,5 +13814,0,0.179298,2,2,0,2,3,,3,1,Schaefer,,1589705,0.219,0.398,0,4.303142,5,5 +31949,0,0.096709,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.321016,0.15,4 +13816,0,0.019487,2,2,0,2,3,,3,1,Schaefer,,1589705,0.147,0.167,0,0.467696,5,5 +15469,1,0.115698,3,0,0,2,3,DIV,3,1,Fort,St,1592105,15.068,15.184,0,2.776743,5,5 +15286,1,0.04431,1,0,0,1,1,ROF,3,1,N I 75/Fort,RAMP,1592005,0,0.044,0,,2.24,5 +15298,1,0.086274,1,0,0,1,1,ROF,3,1,N I 75/Schaefer,RAMP,1592004,0.132,0.218,0,,2.24,5 +15661,-1,0.064358,0,3,0,2,3,DIV,3,1,Fort,St,1592106,14.863,14.927,0,1.54459,5,5 +13987,0,0.02339,2,2,0,2,3,,3,1,Schaefer,,1589705,0.195,0.219,0,0.561368,5,5 +14202,0,0.028659,2,2,0,2,3,,3,1,Schaefer,,1589705,0.167,0.195,0,0.68781,5,5 +13988,0,0.044789,2,2,1,2,3,,3,1,Schaefer,,1589705,0.103,0.147,0,1.074943,5,5 +14911,1,0.061512,3,0,0,2,3,DIV,3,1,Fort,St,1592105,15.184,15.245,0,1.476285,5,5 +17358,0,0.439424,2,2,0,2,3,,3,1,Dix,Ave,1627003,0.63,1.069,0,10.546188,5,5 +17359,0,0.046435,2,2,0,2,3,,3,1,Dix,St,1627003,0.583,0.63,0,1.114438,5,5 +17356,0,0.133408,2,2,0,2,3,,3,2,Dix,Ave,1627003,1.126,1.259,0,3.201797,5,5 +17357,0,0.056717,2,2,0,2,3,,3,2,Dix,Ave,1627003,1.069,1.126,0,1.361208,5,5 +13809,0,0.474152,2,2,0,2,3,,3,2,Coolidge,Hwy,1589705,0.868,1.342,0,11.379637,5,5 +13982,0,0.026404,2,2,0,2,3,,3,2,Coolidge,Hwy,1589705,0.842,0.868,0,0.633697,5,5 +22137,0,0.496558,2,2,0,2,3,,3,1,Fort,St,4700047,0.521,1.017,0,11.917388,5,5 +13445,0,0.274017,3,3,0,2,3,,3,1,Fort,St,1585010,0.152,0.425,0,6.576401,5,5 +17362,0,0.151941,1,1,0,2,5,,3,1,Flora,St,1626507,0,0.152,0,3.646578,8,4.5 +23135,0,0.647733,1,1,0,2,5,,3,2,Industrial,Ave,4706467,1.359,2.006,0,15.545596,8,4.5 +23379,0,0.328454,1,1,0,2,5,,3,1,Dearborn,St,4706467,1.03,1.359,0,7.882902,8,4.5 +13446,0,0.13303,2,2,0,2,3,,3,1,Fort,St,1585010,0.019,0.152,0,3.192714,5,5 +14036,0,0.049508,1,1,0,2,5,,3,1,Reisener,St,1589801,0,0.05,0,1.188181,8,4.5 +40025,1,0.036305,1,0,0,2,3,,4,3,Orchard lake / W 14 MIle cutof,Rd,5500007,0,0.036,0,0.871328,3.7,5 +13447,0,0.01857,2,2,1,2,3,,3,1,Fort,St,1585010,0,0.019,0,0.445684,5,5 +14749,0,0.224014,2,2,1,2,4,,3,1,Miller,Rd,1589801,0.05,0.273,0,5.376325,6,4.5 +18601,0,0.060143,1,1,0,2,4,,3,2,Vernor,Ave,1651306,0.026,0.086,0,1.443432,6,4.5 +22768,0,0.101765,1,1,0,2,4,,3,2,Ferney,Ave,4704830,0,0.102,0,2.442363,6,4.5 +19065,0,0.026163,1,1,0,2,5,,3,2,Vernor,Ave,1651306,0,0.026,0,0.627922,8,4.5 +14733,0,0.169789,1,1,0,2,5,,3,1,Forman,St,1589802,0.122,0.291,0,4.074943,8,4.5 +14730,0,0.115234,1,1,0,2,5,,3,1,Woodmere,St,1589805,0.459,0.575,0,2.765619,8,4.5 +32785,0,0.218506,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.244151,0.15,4 +10815,1,0.51371,3,0,0,1,1,,3,1,E I 94,,1576405,23.053,23.567,0,,0.58,7 +11700,0,0.120026,1,1,0,2,4,,3,1,Lonyo,St,1577110,0.237,0.357,0,2.880618,6,4.5 +11743,0,0.105752,3,3,1,2,3,,3,1,Michigan,Ave,1577103,2.203,2.309,0,2.53804,5,5 +12651,0,0.155484,2,2,0,2,4,,3,1,McGraw,St,1581903,0.428,0.584,0,3.731612,6,4.5 +13005,1,0.137257,1,0,0,1,1,ROF,3,1,W I 94/Addison,RAMP,1581703,0,0.137,0,,2.24,5 +13957,-1,0.432546,0,3,0,1,1,,3,1,W I 94,,1588802,22.765,23.197,0,,0.58,7 +14396,0,0.252884,2,2,0,2,4,,3,2,Wyoming,Ave,1589610,0.058,0.311,0,6.06922,6,4.5 +16061,0,0.177761,2,2,0,2,4,,3,1,John Kronk,St,1610302,0,0.178,0,4.266269,6,4.5 +17553,0,0.586836,2,2,0,2,4,,3,2,Southern,Ave,1653407,0.233,0.819,0,14.084074,6,4.5 +30482,0,0.235081,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.641934,0.15,4 +32409,0,0.298979,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.175506,0.15,4 +32880,0,0.288677,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.928242,0.15,4 +14744,1,0.336973,2,0,0,2,4,DV2,3,2,Miller,Rd,1589801,1.577,1.914,0,8.087362,6,4.5 +14746,1,0.160356,2,0,0,2,4,DV2,3,2,Miller,Rd,1589801,1.405,1.565,0,3.848532,6,4.5 +18481,-1,0.245924,0,2,0,2,5,,3,2,Eagle,Pass,4719116,0.013,0.259,0,5.902165,8,4.5 +18960,1,0.187652,2,0,0,2,5,,3,2,Wren,St,4719115,0.013,0.201,0,4.503645,8,4.5 +24564,0,0.039057,2,2,0,2,4,,3,2,Wyoming,Ave,1653404,0.334,0.373,0,0.937374,6,4.5 +24565,0,0.423554,2,2,0,2,4,,3,2,Wyoming,Ave,1653404,0.373,0.797,0,10.165295,6,4.5 +14745,1,0.012444,2,0,0,2,4,DV2,3,2,Miller,Rd,1589801,1.565,1.577,0,0.298661,6,4.5 +18484,0,0.216888,1,1,0,2,4,,3,2,Southern,Ave,1653407,0.016,0.233,0,5.205323,6,4.5 +24203,0,0.168808,1,1,0,1,4,,3,2,Service,Dr,4711170,0,0.169,0,,6,4.5 +24204,0,0.174956,1,1,0,1,4,,3,2,Service,Dr,4711169,0,0.175,0,,6,4.5 +34117,0,0.250342,2,2,0,2,4,,3,2,Miller,Rd,1589801,2.08,2.33,0,6.008215,6,4.5 +18968,0,0.015915,1,1,0,2,4,,3,2,Southern,Ave,1653407,0,0.016,0,0.38196,6,4.5 +14399,0,0.058017,2,2,0,2,4,,3,2,Southern/Wyoming Connector,,1589610,0,0.058,0,1.392413,6,4.5 +18959,1,0.059245,2,0,0,2,5,,3,2,Wren,St,4719115,0.201,0.26,0,1.42187,8,4.5 +18977,0,0.334437,2,2,0,2,4,,3,2,Wyoming,Ave,1653404,0,0.334,0,8.026491,6,4.5 +22762,0,0.316762,1,1,0,2,5,,3,2,Ferney,Ave,4704830,0.41,0.726,0,7.602297,8,4.5 +32879,0,0.11738,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.817127,0.15,4 +11550,1,0.276272,3,0,0,1,1,,3,2,E I 94,,1576405,22.529,22.805,0,,0.58,7 +11745,0,0.173826,2,2,0,2,3,,3,1,Michigan,Ave,1577103,1.872,2.046,0,4.171812,5,5 +11746,0,0.107891,3,3,1,2,3,,3,2,Michigan,Ave,1577103,1.764,1.872,0,2.589373,5,5 +12391,1,0.281825,1,0,0,1,1,ROF,3,2,W I 94/US 12,RAMP,1580702,0,0.282,0,,2.24,5 +13904,1,0.314463,1,0,0,1,1,ROF,3,2,Wyoming/US 12,RAMP,1589701,0,0.314,0,,2.24,5 +13950,0,0.327552,2,2,0,2,4,,3,2,Wyoming,Ave,1589610,0.321,0.648,0,7.861247,6,4.5 +14214,-1,0.540386,0,3,0,1,1,,3,2,W I 94,,1588802,22.216,22.756,0,,0.58,7 +22315,0,0.025303,2,2,1,2,3,,3,1,Wyoming,Ave,4706472,0.122,0.147,0,0.607271,5,5 +11749,0,0.159808,3,3,1,2,3,,3,2,Michigan,Ave,1577103,1.554,1.714,0,3.835403,5,5 +11764,1,0.396491,2,0,0,1,1,ROF,3,2,E I 94/US 12,RAMP,1577010,0.296,0.692,0,,2.24,5 +12186,1,0.37192,1,0,0,1,1,ROF,3,2,E I 94/Wyoming,RAMP,1580404,0,0.372,0,,2.24,5 +22990,1,0.494416,1,0,0,1,1,RON,3,2,US 12/W I 94,RAMP,4706471,0,0.494,0,,1.09,4 +32416,0,0.255803,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.139282,0.15,4 +12392,1,0.100568,1,0,0,1,1,ROF,3,2,W I 94/US 12,RAMP,1580702,0.282,0.382,0,,2.24,5 +32418,0,0.088411,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.121864,0.15,4 +14153,0,0.009879,2,2,0,2,4,,3,2,Wyoming,Ave,1589610,0.311,0.321,0,0.237094,6,4.5 +37144,1,0.033391,1,0,0,1,1,RON,3,3,Rochester/N I 75,RAMP,682607,0,0.033,0,,1.09,4 +11748,0,0.050312,3,3,1,2,3,,3,2,Michigan,Ave,1577103,1.714,1.764,0,1.20749,5,5 +14095,0,0.038783,2,2,0,2,4,,3,1,Wyoming,Ave,1589610,0.648,0.687,0,0.930798,6,4.5 +11090,1,0.12466,3,0,0,1,1,,3,1,E I 94,,1576405,22.929,23.053,0,,0.58,7 +11704,1,0.110468,1,0,0,1,1,RON,3,1,Wier/E I 94,RAMP,1577108,0,0.11,0,,1.09,4 +11744,0,0.157427,3,3,1,2,3,,3,1,Michigan,Ave,1577103,2.046,2.203,0,3.778237,5,5 +13148,0,0.200655,1,1,0,2,4,,3,1,McGraw,St,1581903,0.076,0.276,0,4.815715,6,4.5 +11302,1,0.123894,3,0,0,1,1,,3,1,E I 94,,1576405,22.805,22.929,0,,0.58,7 +11705,1,0.141059,1,0,0,1,1,RON,3,1,Wyoming/E I 94,RAMP,1577106,0,0.141,0,,1.09,4 +24465,1,0.092533,2,0,0,2,3,,3,1,Weir,St,4711432,0,0.093,0,2.220792,5,5 +13147,0,0.075492,2,2,1,2,3,,3,1,McGraw,St,1581903,0,0.076,0,1.8118,5,5 +22600,0,0.093874,2,2,1,2,3,,3,1,Wyoming,Ave,4706472,0.028,0.122,0,2.252987,5,5 +14161,-1,0.008612,0,3,0,1,1,,3,2,W I 94,,1588802,22.756,22.765,0,,0.58,7 +22820,0,0.027836,2,2,1,2,3,,3,1,Wyoming,Ave,4706472,0,0.028,0,0.668074,5,5 +24306,1,0.037513,2,0,0,2,3,,3,1,Weir,St,4711432,0.093,0.13,0,0.900309,5,5 +11703,0,0.076179,1,1,0,2,4,,3,1,Addison,St,1577109,0,0.076,0,1.828308,6,4.5 +12919,0,0.151983,2,2,0,2,4,,3,1,McGraw,St,1581903,0.276,0.428,0,3.647582,6,4.5 +11702,0,0.048507,1,1,0,2,4,,3,1,Addison,St,1577109,0.076,0.125,0,1.164176,6,4.5 +12841,0,0.36667,1,1,1,2,4,,3,1,Vernor,Hwy,1581909,0,0.367,0,8.800072,6,4.5 +16670,0,0.293146,1,1,0,2,5,,3,1,Woodmere,St,1616904,0,0.293,0,7.035511,8,4.5 +17349,-1,0.510536,0,2,0,2,3,DV2,3,1,Dix,Ave,1627003,2.218,2.729,0,12.252861,5,5 +22925,1,0.515243,2,0,0,2,3,DV2,3,1,Dix,,4706198,0.52,1.035,0,12.36583,5,5 +17350,-1,0.402809,0,2,0,2,3,DV2,3,2,Dix,Ave,1627003,1.816,2.218,0,9.667427,5,5 +17351,-1,0.127682,0,2,0,2,3,DV2,3,2,Dix,Ave,1627003,1.688,1.816,0,3.064364,5,5 +19059,-1,0.054435,0,2,0,2,4,,3,2,Vernor,Ave,1651306,0.189,0.244,0,1.30645,6,4.5 +23139,1,0.127772,2,0,0,2,3,DV2,3,2,Dix,Ave,4706198,0,0.128,0,3.066523,5,5 +23140,1,0.392605,2,0,0,2,3,DV2,3,2,Dix,Ave,4706198,0.128,0.52,0,9.422527,5,5 +23309,1,0.064249,2,0,0,2,4,,3,2,Vernor,Ave,4706187,0.094,0.158,0,1.541983,6,4.5 +17352,0,0.01167,2,2,0,2,3,,3,2,Dix,Ave,1627003,1.676,1.688,0,0.28007,5,5 +19050,0,0.109731,2,2,0,2,4,,3,2,Vernor,Ave,1651306,0.244,0.353,0,2.633545,6,4.5 +16218,0,0.163266,1,1,0,2,5,,3,1,Woodmere,St,1616710,0,0.163,0,3.918384,8,4.5 +16985,0,0.145068,1,1,0,2,5,,3,1,Woodmere,,1616801,0,0.145,0,3.481641,8,4.5 +12568,0,0.202906,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,0.374,0.577,0,4.869749,6,4.5 +12842,0,0.007062,1,1,1,2,4,,3,1,Vernor,Hwy,1581909,0.367,0.374,0,0.169477,6,4.5 +11701,0,0.237068,1,1,0,2,4,,3,1,Lonyo,St,1577110,0,0.237,0,5.689629,6,4.5 +16419,0,0.285218,1,1,0,2,5,,3,1,Woodmere,St,1616904,0.293,0.578,0,6.845226,8,4.5 +32874,0,0.071009,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.704216,0.15,4 +17348,-1,0.101725,0,2,0,2,3,DV2,3,1,Dix,St,1627003,2.729,2.83,0,2.4414,5,5 +22783,1,0.099625,2,0,0,2,3,DV2,3,1,Dix,,4706198,1.035,1.135,0,2.391002,5,5 +23138,0,0.008457,1,1,0,2,4,,3,1,Lonyo,St,4706195,0,0.009,0,0.202979,6,4.5 +11675,0,0.21907,2,2,0,2,5,,3,1,Central,St,1577202,2.348,2.567,0,5.25769,8,4.5 +11678,0,0.428231,2,2,0,2,4,,3,1,Central,St,1577202,1.794,2.223,0,10.277545,6,4.5 +11698,0,0.298568,1,1,0,2,4,,3,1,Lonyo,St,1577110,0.79,1.089,0,7.16562,6,4.5 +11699,0,0.433405,1,1,0,2,4,,3,1,Lonyo,St,1577110,0.357,0.79,0,10.401732,6,4.5 +11741,0,0.358213,3,3,1,2,3,,3,1,Michigan,Ave,1577103,2.523,2.881,0,8.5971,5,5 +16549,0,0.315566,2,2,0,2,4,,3,1,John Kronk,St,1610302,0.178,0.493,0,7.573585,6,4.5 +32417,0,0.395625,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.495006,0.15,4 +33887,0,0.471672,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.320125,0.15,4 +32886,0,0.393358,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.440583,0.15,4 +32884,0,0.080236,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.925668,0.15,4 +11690,1,0.016477,1,0,0,1,1,RON,3,1,Lonyo/E I 94,RAMP,1577201,0,0.016,0,,1.09,4 +11694,0,0.118857,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.186,1.305,0,2.852571,6,4.5 +11696,0,0.019441,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.111,1.13,0,0.466592,6,4.5 +11742,0,0.213573,3,3,1,2,3,,3,1,Michigan,Ave,1577103,2.309,2.523,0,5.12576,5,5 +12487,0,0.331316,2,2,0,2,4,,3,1,McGraw,St,1581903,0.584,0.915,0,7.95159,6,4.5 +14275,1,0.128265,1,0,0,1,1,ROF,3,1,W I 94/Lonyo,RAMP,1589005,0,0.128,0,,2.24,5 +14305,-1,0.303352,0,3,0,1,1,,3,1,W I 94,,1588802,23.197,23.501,0,,0.58,7 +11695,0,0.055616,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.13,1.186,0,1.334783,6,4.5 +11689,1,0.119507,1,0,0,1,1,RON,3,1,Lonyo/E I 94,RAMP,1577201,0.016,0.136,0,,1.09,4 +11697,0,0.02203,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.089,1.111,0,0.528718,6,4.5 +22179,1,0.025261,1,0,0,1,1,RON,3,1,N Lonyo/E I 94,RAMP,4704360,0,0.025,0,,1.09,4 +11679,0,0.050829,2,2,0,2,4,,3,1,Central,St,1577202,1.744,1.794,0,1.2199,6,4.5 +11676,0,0.052384,2,2,0,2,5,,3,1,Central,St,1577202,2.296,2.348,0,1.257207,8,4.5 +16465,-1,0.252253,0,2,0,2,5,,3,1,W I 94 Service Drive,,1610609,0,0.252,0,6.05407,8,4.5 +16546,1,0.251697,1,0,0,2,5,,3,1,E I 94 Service Drive,,1611109,0.056,0.307,0,6.040738,8,4.5 +11677,0,0.073164,2,2,0,2,5,,3,1,Central,St,1577202,2.223,2.296,0,1.755934,8,4.5 +11670,0,0.093417,1,1,0,2,5,,3,1,Cecil,St,1577203,0.095,0.188,0,2.242002,8,4.5 +11669,0,0.055377,1,1,0,2,5,,3,1,Cecil,St,1577203,0.188,0.243,0,1.329058,8,4.5 +14724,0,0.359473,1,1,0,2,4,,3,1,Westend,St,1589810,0.089,0.448,0,8.627341,6,4.5 +20290,0,0.195148,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,18.592,18.787,0,4.683549,5,5 +20479,0,0.473855,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,18.118,18.592,0,11.372524,5,5 +30617,0,0.485238,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.645705,0.15,4 +32698,0,1.052436,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,25.258452,0.15,4 +32777,0,0.319941,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.67859,0.15,4 +18798,0,0.621712,1,1,0,2,5,,3,2,Marion Industrial,Hwy,1708204,0.34,0.961,0,14.921094,8,4.5 +19893,0,0.282254,1,1,0,2,3,,3,1,Jefferson,Ave,4302169,17.743,18.025,0,6.774087,5,5 +20429,0,0.188902,1,1,0,2,3,,3,2,Jefferson,Ave,4302169,17.458,17.646,0,4.533641,5,5 +32694,0,0.484586,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.630065,0.15,4 +33592,0,0.523848,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.572348,0.15,4 +18684,0,0.102716,1,1,0,2,5,,3,2,Marion Industrial,Hwy,1708204,0.237,0.34,0,2.465182,8,4.5 +18683,0,0.124179,1,1,0,2,5,,3,2,Marion Industrial,Hwy,1708204,0.113,0.237,0,2.980305,8,4.5 +20647,0,0.150129,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,17.308,17.458,0,3.603101,5,5 +32771,0,0.181621,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.3589,0.15,4 +32697,0,0.03627,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.870484,0.15,4 +16338,0,0.189091,1,1,0,2,5,,3,1,Brennan,St,1609903,0,0.189,0,4.538174,8,4.5 +20242,0,0.096424,1,1,0,2,3,,3,1,Jefferson,Ave,4302169,17.646,17.743,0,2.314165,5,5 +32695,0,0.418016,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.032396,0.15,4 +20715,0,0.093337,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,18.025,18.118,0,2.24009,5,5 +13440,0,0.309234,2,2,0,2,3,,3,1,Fort,St,1585010,1.106,1.415,0,7.421612,5,5 +14732,0,0.193757,1,1,0,2,5,,3,1,Woodmere,St,1589805,0,0.194,0,4.650173,8,4.5 +15604,1,0.845207,4,0,0,1,1,,3,1,N I 75,,1592010,17.83,18.675,0,,0.58,7 +15773,-1,0.807039,0,4,0,1,1,,3,1,S I 75,,1595106,17.887,18.694,0,,0.58,7 +22538,-1,0.33784,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0,0.338,0,8.10816,8,4.5 +22988,0,0.462765,1,1,0,2,5,,3,1,Dearborn,St,4706467,0,0.463,0,11.106364,8,4.5 +15369,1,0.286847,1,0,0,1,1,RON,3,1,W Dearborn/S I 75,RAMP,1592506,0.056,0.343,0,,1.09,4 +15405,1,0.286203,1,0,0,1,1,ROF,3,1,N I 75/Dearborn,RAMP,1592505,0,0.286,0,,2.24,5 +22497,0,0.118689,2,2,0,2,5,,3,1,Dearborn,St,4706467,0.569,0.688,0,2.848529,8,4.5 +32774,0,0.24566,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.895838,0.15,4 +15154,1,0.056372,1,0,0,1,1,RON,3,1,W Dearborn/S I 75,RAMP,1592506,0,0.056,0,,1.09,4 +22344,1,0.044696,1,0,0,1,1,RON,3,1,E Dearborn/S I 75,RAMP,4701530,0,0.045,0,,1.09,4 +22989,0,0.052052,1,1,0,2,5,,3,1,Dearborn,St,4706467,0.463,0.515,0,1.249237,8,4.5 +22638,0,0.033209,2,2,0,2,5,,3,1,Dearborn,St,4706467,0.536,0.569,0,0.797019,8,4.5 +22853,0,0.021422,2,2,0,2,5,,3,1,Dearborn,St,4706467,0.515,0.536,0,0.51412,8,4.5 +13443,0,0.174918,2,2,0,2,3,,3,1,Fort,St,1585010,0.74,0.915,0,4.198035,5,5 +14728,0,0.268588,1,1,0,2,5,,3,1,Lawndale,St,1589808,0,0.269,0,6.446103,8,4.5 +17098,0,0.175301,1,1,0,2,5,,3,1,Chamberlain,St,1611603,0.175,0.35,0,4.20722,8,4.5 +32783,0,0.169774,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.07458,0.15,4 +33842,0,0.424252,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.182044,0.15,4 +32784,0,0.143707,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.448962,0.15,4 +13442,0,0.175286,2,2,0,2,3,,3,1,Fort,St,1585010,0.915,1.091,0,4.206866,5,5 +13441,0,0.015113,2,2,0,2,3,,3,1,Fort,St,1585010,1.091,1.106,0,0.362723,5,5 +14727,0,0.117955,1,1,0,2,5,,3,1,Lawndale,St,1589808,0.269,0.386,0,2.83092,8,4.5 +13713,1,0.131327,1,0,0,1,1,RON,3,1,Springwells/S I 75,RAMP,1589702,0,0.131,0,,1.09,4 +14720,0,0.091963,1,1,0,2,4,,3,1,Springwells,St,1589810,0.827,0.919,0,2.207119,6,4.5 +14723,0,0.257516,1,1,0,2,4,,3,1,Westend,St,1589810,0.448,0.705,0,6.180392,6,4.5 +14927,1,0.345617,4,0,0,1,1,,3,1,N I 75,,1592010,18.675,19.02,0,,0.58,7 +15132,1,0.14098,1,0,0,1,1,ROF,3,1,N I 75/Springwells,RAMP,1592507,0,0.141,0,,2.24,5 +15502,-1,0.338748,0,4,0,1,1,,3,1,S I 75,,1595106,18.694,19.032,0,,0.58,7 +14721,0,0.078004,1,1,0,2,4,,3,1,Springwells,St,1589810,0.75,0.827,0,1.872102,6,4.5 +15613,1,0.081931,3,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0,0.082,0,1.966352,8,4.5 +15769,1,0.131955,1,0,0,1,1,ROF,3,1,S I 75/Springwells,RAMP,1595301,0,0.132,0,,2.24,5 +22895,-1,0.062376,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0.42,0.482,0,1.49703,8,4.5 +14722,0,0.044059,2,2,0,2,4,,3,1,Springwells,St,1589810,0.705,0.75,0,1.057408,6,4.5 +23187,-1,0.046658,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0.373,0.42,0,1.119797,8,4.5 +23531,-1,0.035477,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0.338,0.373,0,0.851458,8,4.5 +15365,1,0.125542,1,0,0,1,1,RON,3,1,Springwells/N I 75,RAMP,1592508,0,0.126,0,,1.09,4 +20783,0,0.251879,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,19.023,19.275,0,6.0451,5,5 +30614,0,0.163265,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.918372,0.15,4 +30616,0,0.435331,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.447939,0.15,4 +33841,0,0.446584,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.718009,0.15,4 +20093,0,0.236164,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,18.787,19.023,0,5.667926,5,5 +14717,0,0.415567,1,1,0,2,5,,3,1,Waterman,St,1590002,0,0.415,0,9.9736,8,4.5 +20535,0,0.135263,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,19.415,19.55,0,3.246321,5,5 +11682,0,0.287389,2,2,0,2,4,,3,1,Central,St,1577202,1.132,1.419,0,6.897328,6,4.5 +11737,0,0.324613,2,2,1,2,3,,3,1,Michigan,Ave,1577103,3.764,4.089,0,7.790703,5,5 +12021,0,0.132402,2,2,1,2,3,,3,1,Livernois,Ave,1581701,1.889,2.021,0,3.177638,5,5 +12195,0,0.496948,2,2,1,2,3,,3,1,Livernois,Ave,1581701,1.392,1.889,0,11.926764,5,5 +12328,0,0.319098,2,2,0,2,3,,3,1,Vernor,Hwy,1581909,1.534,1.853,0,7.658347,5,5 +12552,0,0.243701,1,1,0,2,5,,3,1,Junction,St,1581110,1.101,1.344,0,5.848834,8,4.5 +14711,0,0.585745,1,1,0,2,5,,3,1,Waterman,St,1590002,0.891,1.477,0,14.057881,8,4.5 +16281,0,0.223096,1,1,0,2,5,,3,1,Toledo,St,1609403,0.176,0.399,0,5.354314,8,4.5 +16304,0,0.1972,1,1,0,2,5,,3,1,Lafayette,Blvd,1611306,0.108,0.305,0,4.73281,8,4.5 +16547,0,0.337676,2,2,0,2,4,,3,1,John Kronk,St,1610302,1.328,1.665,0,8.10423,6,4.5 +16792,0,0.168043,1,1,0,2,5,,3,1,Buchanan,St,1609609,0.221,0.389,0,4.033034,8,4.5 +32779,0,0.351696,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.440696,0.15,4 +32787,0,0.189299,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.543167,0.15,4 +32891,0,0.307824,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.387767,0.15,4 +11685,0,0.263436,1,1,0,2,5,,3,1,Central,St,1577202,0.514,0.778,0,6.322469,8,4.5 +13015,0,0.187716,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,1.059,1.247,0,4.505177,6,4.5 +13231,0,0.169745,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,0.889,1.059,0,4.073876,6,4.5 +16533,0,0.364803,1,1,0,2,4,,3,1,Springwells,St,1611602,0.21,0.575,0,8.755271,6,4.5 +17346,0,0.564949,2,2,0,2,3,,3,1,Dix,St,1627003,3.085,3.65,0,13.558777,5,5 +30286,0,0.269815,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.475567,0.15,4 +32781,0,0.099672,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.392119,0.15,4 +33257,0,0.282344,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.776258,0.15,4 +11956,0,0.222537,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,0.667,0.889,0,5.340895,6,4.5 +32415,0,0.224328,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.383869,0.15,4 +32888,0,0.369243,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.861821,0.15,4 +12114,0,0.050381,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,0.616,0.667,0,1.209153,6,4.5 +11683,0,0.207613,2,2,0,2,4,,3,1,Central,St,1577202,0.924,1.132,0,4.982702,6,4.5 +11684,0,0.146394,2,2,0,2,4,,3,1,Central,St,1577202,0.778,0.924,0,3.513453,6,4.5 +32789,0,0.10073,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.41753,0.15,4 +11686,0,0.25505,1,1,0,2,5,,3,1,Central,St,1577202,0.259,0.514,0,6.121207,8,4.5 +16811,0,0.209882,1,1,0,2,4,,3,1,Springwells,St,1611602,0,0.21,0,5.037177,6,4.5 +11687,0,0.161414,1,1,0,2,5,,3,1,Central,St,1577202,0.098,0.259,0,3.873935,8,4.5 +12757,0,0.264765,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,1.247,1.511,0,6.354357,6,4.5 +32889,0,0.084969,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.039252,0.15,4 +12569,0,0.022721,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,1.511,1.534,0,0.545306,6,4.5 +17345,0,0.028716,2,2,0,2,3,,3,1,Dix,St,1627003,3.65,3.678,0,0.689195,5,5 +14710,0,0.012823,1,1,0,2,5,,3,1,Waterman,St,1590002,1.477,1.489,0,0.307747,8,4.5 +11665,0,0.294377,1,1,0,2,5,,3,1,Martin,St,1577205,0.314,0.608,0,7.06505,8,4.5 +11666,0,0.314077,1,1,0,2,5,,3,1,Martin,St,1577205,0,0.314,0,7.537851,8,4.5 +11738,0,0.36031,3,3,1,2,3,,3,1,Michigan,Ave,1577103,3.404,3.764,0,8.647437,5,5 +13138,0,0.281762,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.127,2.408,0,6.762295,5,5 +16058,0,0.503164,2,2,0,2,4,,3,1,John Kronk,St,1610302,0.825,1.328,0,12.075933,6,4.5 +30472,0,0.299452,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.186845,0.15,4 +32883,0,0.439658,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.5518,0.15,4 +11681,0,0.154331,2,2,0,2,4,,3,1,Central,St,1577202,1.419,1.573,0,3.703933,6,4.5 +32881,0,0.084969,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.039257,0.15,4 +11664,0,0.143541,1,1,0,2,5,,3,1,Martin,St,1577205,0.608,0.752,0,3.444987,8,4.5 +11739,0,0.231662,3,3,1,2,3,,3,1,Michigan,Ave,1577103,3.173,3.404,0,5.559881,5,5 +11451,1,0.184268,3,0,0,1,1,,3,1,E I 94,,1576405,24.145,24.33,0,,0.58,7 +11663,0,0.208476,1,1,0,2,5,,3,1,Martin,St,1577205,0.752,0.96,0,5.003432,8,4.5 +30474,0,0.021026,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.504617,0.15,4 +13311,0,0.105656,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.021,2.127,0,2.535733,5,5 +12830,0,0.10772,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.408,2.516,0,2.585275,5,5 +16276,0,0.2213,1,1,0,2,5,,3,1,Buchanan,St,1609609,0,0.221,0,5.311197,8,4.5 +12641,0,0.207247,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.516,2.723,0,4.973938,5,5 +11643,0,0.156831,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,1.926,2.083,0,3.763946,5,5 +12910,-1,0.274318,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.93,1.204,0,6.583627,5,5 +13137,-1,0.275218,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.655,0.93,0,6.605233,5,5 +13437,0,0.289751,2,2,1,2,3,,3,1,Fort,St,1585010,2.045,2.335,0,6.954027,5,5 +14704,1,0.243468,2,0,0,2,3,,3,1,Dragoon,St,1590007,0.896,1.139,0,5.843234,5,5 +14705,1,0.275327,2,0,0,2,3,,3,1,Dragoon,St,1590007,0.62,0.896,0,6.607845,5,5 +15607,1,0.236234,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0.618,0.854,0,5.669605,8,4.5 +16052,0,0.290028,1,1,0,2,5,,3,1,Lafayette,Blvd,1610502,0.141,0.43,0,6.960684,8,4.5 +23202,-1,0.240586,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0.961,1.201,0,5.774068,8,4.5 +30284,0,0.426839,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.244137,0.15,4 +33990,0,0.391145,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.387483,0.15,4 +14712,0,0.13405,1,1,0,2,5,,3,1,Waterman,St,1590002,0.757,0.891,0,3.217194,8,4.5 +16323,0,0.140554,1,1,0,2,5,,3,1,Lafayette,Blvd,1610502,0,0.141,0,3.373307,8,4.5 +32778,0,0.129184,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.100412,0.15,4 +32780,0,0.124761,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.99427,0.15,4 +16322,0,0.012785,1,1,0,2,5,,3,1,Beard,St,1611304,0.051,0.063,0,0.306841,8,4.5 +16813,1,0.140021,1,0,0,2,5,,3,1,Lafayette,Blvd,1611305,0,0.14,0,3.360505,8,4.5 +17101,-1,0.140271,0,1,0,2,5,,3,1,Lexington,St,1611306,0.305,0.446,0,3.366514,8,4.5 +14718,0,0.057979,1,1,0,2,5,,3,1,Green,St,1589906,0.751,0.809,0,1.391488,8,4.5 +17103,0,0.047127,1,1,0,2,5,,3,1,Beard,St,1611304,0.063,0.11,0,1.131037,8,4.5 +13438,0,0.140827,2,2,1,2,3,,3,1,Fort,St,1585010,1.904,2.045,0,3.379841,5,5 +14713,0,0.052582,1,1,0,2,5,,3,1,Waterman,St,1590002,0.704,0.757,0,1.261976,8,4.5 +14714,0,0.070228,1,1,0,2,5,,3,1,Waterman,St,1590002,0.634,0.704,0,1.685462,8,4.5 +14715,0,0.040917,1,1,0,2,5,,3,1,Waterman,St,1590002,0.593,0.634,0,0.982003,8,4.5 +12640,-1,0.090342,0,2,0,2,3,,3,1,Livernois,Ave,1581701,1.204,1.294,0,2.168215,5,5 +14703,1,0.114279,2,0,0,2,3,,3,1,Dragoon,St,1590007,1.139,1.253,0,2.742694,5,5 +12115,0,0.073246,2,2,0,2,3,,3,1,Vernor,Hwy,1581909,1.853,1.926,0,1.757904,5,5 +12475,0,0.097347,2,2,1,2,3,,3,1,Livernois,Ave,1581701,1.294,1.392,0,2.33633,5,5 +16518,0,0.17602,1,1,0,2,5,,3,1,Toledo,St,1609403,0,0.176,0,4.224485,8,4.5 +12020,-1,0.076339,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.54,0.616,0,1.832147,5,5 +12317,-1,0.039446,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.5,0.54,0,0.946705,5,5 +14708,1,0.049813,2,0,0,2,3,,3,1,Dragoon,St,1590007,0.468,0.518,0,1.195502,5,5 +15563,1,0.420997,4,0,0,1,1,,3,1,N I 75,,1592010,19.543,19.963,0,,0.58,7 +15593,1,0.073369,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0.907,0.981,0,1.760845,8,4.5 +17031,0,0.072447,1,1,0,2,5,,3,1,Lafayette,Blvd,1610502,0.43,0.503,0,1.73874,8,4.5 +22621,-1,0.073514,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,1.253,1.327,0,1.764347,8,4.5 +22911,-1,0.051905,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,1.201,1.253,0,1.24573,8,4.5 +15127,1,0.124817,1,0,0,1,1,ROF,3,1,N I 75/Livernois,RAMP,1592509,0,0.125,0,,2.24,5 +15300,1,0.126593,1,0,0,1,1,RON,3,1,Livernois/S I 75,RAMP,1595302,0,0.127,0,,1.09,4 +14771,1,0.053771,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0.854,0.907,0,1.290494,8,4.5 +11630,-1,0.038644,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.616,0.655,0,0.927449,5,5 +13436,0,0.072835,2,2,1,2,3,,3,1,Fort,St,1585010,2.335,2.408,0,1.748052,5,5 +15362,1,0.140557,1,0,0,1,1,RON,3,1,Dragoon/N I 75,RAMP,1592510,0,0.141,0,,1.09,4 +16733,0,0.143373,1,1,0,2,5,,3,1,Lafayette,Blvd,1610502,0.503,0.646,0,3.440948,8,4.5 +23628,-1,0.120258,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,1.327,1.447,0,2.886192,8,4.5 +14707,1,0.07812,4,0,0,2,3,,3,1,Dragoon,St,1590007,0.518,0.596,0,1.874891,5,5 +14706,1,0.024428,2,0,0,2,3,,3,1,Dragoon,St,1590007,0.596,0.62,0,0.586276,5,5 +15059,1,0.036933,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0.981,1.018,0,0.886391,8,4.5 +14690,-1,0.040077,0,1,0,2,5,,3,1,Lafayette,Blvd,1590407,0,0.04,0,0.961851,8,4.5 +23292,-1,0.063707,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,1.447,1.511,0,1.52896,8,4.5 +13232,0,0.224107,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.083,2.307,0,5.378557,5,5 +32039,0,0.143766,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.450373,0.15,4 +27377,0,0.16251,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.900242,0.15,4 +11734,0,0.35774,2,2,1,2,3,,3,1,Michigan,Ave,1577103,4.218,4.576,0,8.585757,5,5 +12097,0,0.34378,1,1,0,2,5,,3,1,Junction,St,1581110,1.632,1.976,0,8.250713,8,4.5 +13213,0,0.371735,1,1,0,2,4,,3,1,Clark,St,1581210,0.012,0.383,0,8.921635,6,4.5 +11617,0,0.119385,1,1,0,2,5,,3,1,Junction,St,1577210,0,0.119,0,2.865238,8,4.5 +11736,0,0.11426,2,2,1,2,3,,3,1,Michigan,Ave,1577103,4.089,4.203,0,2.742248,5,5 +16512,0,0.163549,1,1,0,2,5,,3,1,Buchanan,St,1609609,0.389,0.553,0,3.925177,8,4.5 +32892,0,0.239334,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.744013,0.15,4 +11616,0,0.191902,1,1,0,2,5,,3,1,Junction,St,1577210,0.119,0.311,0,4.605657,8,4.5 +11939,0,0.170068,1,1,0,2,5,,3,1,Junction,St,1581110,1.976,2.146,0,4.081643,8,4.5 +32890,0,0.093606,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.246547,0.15,4 +11735,0,0.015061,2,2,1,2,3,,3,1,Michigan,Ave,1577103,4.203,4.218,0,0.361453,5,5 +12393,0,0.288018,1,1,0,2,5,,3,1,Junction,St,1581110,1.344,1.632,0,6.912442,8,4.5 +16796,0,0.205054,1,1,0,2,5,,3,1,Toledo,St,1609403,0.399,0.604,0,4.921291,8,4.5 +32053,0,0.240034,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.760813,0.15,4 +32788,0,0.259715,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.233158,0.15,4 +32052,0,0.116038,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.784923,0.15,4 +11733,1,0.107419,2,0,0,2,3,,3,1,Michigan,Ave,1577103,4.576,4.683,0,2.578059,5,5 +22414,-1,0.111946,0,2,0,2,3,,3,1,Michigan,Ave,4701012,0,0.112,0,2.686708,5,5 +24170,0,0.056855,1,1,0,2,5,,3,1,Clark,St,4711780,0,0.057,0,1.36451,8,4.5 +13212,0,0.011442,1,1,0,2,4,,3,1,Clark,St,1581210,0,0.012,0,0.274607,6,4.5 +13357,0,0.155875,2,2,0,2,4,,3,1,Grand,Blvd,1577308,0,0.156,0,3.741,6,4.5 +40,0,0.506886,2,2,0,2,4,,3,3,9 Mile,Rd,607709,3.996,4.503,0,12.165274,6,4.5 +1114,-1,0.222656,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,7.963,8.185,0,5.343736,5,5 +2732,-1,0.435633,0,2,0,2,5,DV2,3,3,Oak Park,Blvd,665504,1.247,1.683,0,10.455183,8,4.5 +11963,0,0.334023,1,1,0,2,4,,3,1,Hubbell,St,1583004,0.664,0.998,0,8.016551,6,4.5 +12001,1,0.653413,3,0,0,1,2,,3,1,S M 10,,1577509,5.453,6.107,0,,0.58,7 +12059,1,0.488134,3,0,0,1,2,,3,1,S M 10,,1577509,2.944,3.431,0,,0.58,7 +12197,1,0.2697,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.313,7.583,0,6.472804,5,5 +12307,0,0.497283,2,2,0,2,4,,3,1,Fenkell,St,1579605,7.451,7.949,0,11.9348,6,4.5 +12427,-1,0.324164,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,4.323,4.648,0,,0.58,7 +12503,0,0.253957,2,2,0,2,4,,3,1,Meyers,Rd,1583210,2.749,3.003,0,6.09497,6,4.5 +12562,1,0.132414,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,3.454,3.587,0,3.177927,6,4.5 +12578,1,0.33567,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,4.303,4.638,0,,0.58,7 +12773,0,0.356638,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.657,6.013,0,8.559307,5,5 +12836,0,0.184539,2,2,0,2,4,,3,1,Chicago,St,1581803,4.148,4.332,0,4.428941,6,4.5 +12904,-1,0.362843,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.595,2.958,0,8.70824,8,4.5 +13237,-1,0.060608,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.479,2.54,0,1.454593,8,4.5 +13260,-1,0.67674,0,3,0,1,2,,3,1,N M 10,,1577510,5.419,6.095,0,,0.58,7 +13291,0,0.189338,2,2,0,2,4,,3,1,Fenkell,St,1579605,6.264,6.453,0,4.544118,6,4.5 +13343,-1,0.409914,0,3,0,1,2,,3,1,N M 10,,1577510,3.004,3.414,0,,0.58,7 +13529,0,0.311775,1,1,0,2,3,,3,1,Linwood,St,1584609,3.271,3.583,0,7.482596,5,5 +13580,0,0.148666,2,2,0,2,4,,3,1,Outer,Dr,1584503,1.295,1.444,0,3.567979,6,4.5 +14541,0,0.14138,2,2,0,2,4,,3,1,Rosa Parks,Blvd,1590905,2.911,3.052,0,3.393117,6,4.5 +14587,-1,0.338456,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,2.788,3.126,0,8.122954,8,4.5 +14608,1,0.391498,3,0,0,2,5,,3,1,James Couzens,Fwy,1590804,3.149,3.541,0,9.395943,8,4.5 +15169,1,0.441794,3,0,0,1,2,,3,1,N M 39,,1592408,12.175,12.617,0,,0.58,7 +15528,-1,0.506435,0,3,0,1,2,,3,1,S M 39,,1592407,12.107,12.614,0,,0.58,7 +15597,1,0.065521,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.481,2.547,0,1.57251,8,4.5 +15893,-1,0.43861,0,2,0,2,5,,3,1,Davison,St,1598908,0.579,1.018,0,10.526635,8,4.5 +16219,0,0.158891,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.51,1.669,0,3.813378,6,4.5 +16389,0,0.245496,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,19.781,20.027,0,5.891895,5,5 +16408,0,0.249394,1,1,0,2,5,,3,1,Asbury,Park,1601110,0,0.249,0,5.985447,8,4.5 +16498,0,0.440329,2,2,0,2,4,,3,1,Tireman,Ave,1623409,1.561,2.001,0,10.567887,6,4.5 +16568,-1,2.674892,0,3,0,1,1,,3,1,W I 96,,1606503,12.258,14.932,0,,0.58,7 +16663,1,0.441755,1,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0.518,0.959,0,10.602122,8,4.5 +16809,0,0.146259,1,1,0,2,4,,3,1,Dexter,Ave,1613006,3.405,3.552,0,3.510221,6,4.5 +16812,0,0.056268,1,1,0,2,5,,3,1,Curtis,St,1620803,0.639,0.695,0,1.350443,8,4.5 +16891,0,0.496635,2,2,0,2,4,,3,1,Lyndon,St,1612706,1.503,2,0,11.919247,6,4.5 +16994,1,2.569491,3,0,0,1,1,,3,1,E I 96,,1606201,12.552,15.121,0,,0.58,7 +17274,0,0.252106,2,2,0,2,3,,3,2,Warren,Ave,1628604,1.496,1.748,0,6.050537,5,5 +17831,1,0.189129,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,10.529,10.718,0,4.539106,6,4.5 +17882,0,0.280216,2,2,0,2,3,,3,1,McNichols,Rd,1680701,19.708,19.988,0,6.725178,5,5 +18864,0,0.24955,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,9.311,9.561,0,5.989202,5,5 +18944,0,0.279107,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,13.639,13.918,0,6.69858,5,5 +19686,1,0.222808,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,7.944,8.167,0,5.347388,5,5 +21122,1,0.435427,2,0,0,2,5,DV2,3,3,Oak Park,Blvd,4409248,1.247,1.683,0,10.450238,8,4.5 +21351,0,0.313936,2,2,0,2,3,,3,1,Wyoming,St,4700001,4.698,5.011,0,7.534463,5,5 +22349,-1,0.131994,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,3.472,3.604,0,3.167859,6,4.5 +22550,0,0.151725,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,8.642,8.794,0,3.641404,5,5 +22786,1,0.179278,2,0,0,2,5,DV2,3,1,Oakman,Blvd,4705439,0.176,0.355,0,4.302665,8,4.5 +23455,0,0.287377,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,14.442,14.729,0,6.89705,6,4.5 +23723,-1,0.188858,0,2,0,2,4,DV2,3,1,Joy,Rd,4707990,0,0.189,0,4.532602,6,4.5 +23751,0,0.031521,2,2,0,2,4,,3,1,Puritan,St,4707953,3.243,3.274,0,0.756503,6,4.5 +24285,0,0.369233,2,2,0,2,4,,3,1,Fullerton,St,4710521,2.554,2.923,0,8.861597,6,4.5 +27429,0,0.345843,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.300229,0.15,4 +29669,0,0.516496,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.395905,0.15,4 +29670,0,0.520039,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.480934,0.15,4 +29671,0,0.366133,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.787189,0.15,4 +29674,0,0.534357,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.824568,0.15,4 +30963,0,0.198449,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.762776,0.15,4 +32901,0,0.345735,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.29765,0.15,4 +32908,0,0.443025,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.632589,0.15,4 +32909,0,0.447811,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.747458,0.15,4 +32913,0,0.395191,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.484596,0.15,4 +32920,0,0.147832,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.547976,0.15,4 +32923,0,0.253204,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.076901,0.15,4 +32927,0,0.322496,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.739905,0.15,4 +32934,0,0.454017,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.896418,0.15,4 +32936,0,0.02143,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.514324,0.15,4 +32942,0,0.025975,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.623398,0.15,4 +32948,0,0.255409,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.129822,0.15,4 +32954,0,0.249651,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.991619,0.15,4 +33647,0,0.250494,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.011855,0.15,4 +33685,0,0.387774,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.306578,0.15,4 +33686,0,0.376929,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.0463,0.15,4 +33800,0,0.492284,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.814806,0.15,4 +33881,0,0.151346,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.632308,0.15,4 +12732,0,0.311306,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.952,6.264,0,7.471348,6,4.5 +12806,0,0.256435,2,2,0,2,3,,3,1,Grand River,Ave,1577408,3.9,4.156,0,6.15443,5,5 +12917,0,0.43107,2,2,0,2,4,,3,1,Chicago,St,1581803,2.214,2.645,0,10.34568,6,4.5 +12936,0,0.499372,1,1,0,2,4,,3,1,Meyers,Rd,1583210,0.501,1.001,0,11.984926,6,4.5 +13161,-1,0.424204,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,2.618,3.042,0,,0.58,7 +13241,1,0.404862,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,2.624,3.029,0,,0.58,7 +13327,-1,0.161391,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.157,0.318,0,3.87338,8,4.5 +14631,1,0.184219,1,0,0,1,1,RON,3,1,Greenfield/E I 96,RAMP,1590801,0,0.184,0,,1.09,4 +14648,0,0.334524,2,2,0,2,4,,3,1,Hubbell,St,1590607,1.001,1.336,0,8.02857,6,4.5 +14653,1,0.217539,1,0,0,1,1,ROF,3,1,W I 96/Greenfield,RAMP,1590606,0,0.218,0,,2.24,5 +14754,1,0.153302,1,0,0,1,2,RON,3,1,Plymouth/S M 39,RAMP,1594810,0,0.153,0,,1.09,4 +14790,0,0.504394,2,2,0,2,5,,3,1,Tireman,St,1594805,2.093,2.597,0,12.105444,8,4.5 +14824,1,0.232451,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0.157,0.389,0,5.57883,8,4.5 +14862,0,0.505816,2,2,0,2,3,,3,1,Warren,Ave,1591804,2.876,3.382,0,12.139576,5,5 +15444,1,0.556214,3,0,0,1,2,,3,1,N M 39,,1592408,9.672,10.228,0,,0.58,7 +15547,-1,0.350718,0,3,0,1,2,,3,1,S M 39,,1592407,10.226,10.577,0,,0.58,7 +16531,0,0.189627,2,2,0,2,4,,3,1,Lyndon,St,1612706,0,0.19,0,4.551046,6,4.5 +16545,0,0.492678,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,17.783,18.276,0,11.824265,5,5 +17579,1,0.105593,3,0,0,2,3,,3,1,Greenfield,Rd,1651002,7.621,7.727,0,2.534239,5,5 +17677,0,0.325319,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,6.985,7.311,0,7.807665,5,5 +18551,0,0.498732,2,2,0,2,4,,3,1,Joy,Rd,1677810,8.47,8.968,0,11.969572,6,4.5 +22162,0,0.19783,1,1,0,1,5,,3,1,Greenfield Service Drive,,4704393,0,0.198,0,,8,4.5 +22166,-1,0.107636,0,3,0,2,3,,3,1,Greenfield,Rd,4704392,0,0.108,0,2.583259,5,5 +23079,0,0.29022,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,12.928,13.218,0,6.965288,6,4.5 +23124,0,0.500254,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,6.289,6.789,0,12.006105,5,5 +24107,0,0.432554,1,1,0,2,5,,3,1,Paul,Dr,4710428,0.473,0.906,0,10.381298,8,4.5 +39839,-1,0.165025,0,2,0,2,3,,4,3,Pontiac,Trl,4463510,0.165,0.33,0,3.960592,3.7,5 +30543,0,0.247029,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.928688,0.15,4 +32019,0,0.517975,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.431401,0.15,4 +32303,0,0.505539,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.132939,0.15,4 +32304,0,0.514152,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.339651,0.15,4 +32896,0,0.638793,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,15.331039,0.15,4 +32973,0,0.50515,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.123606,0.15,4 +32977,0,0.503324,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.079778,0.15,4 +32986,0,0.249889,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.99733,0.15,4 +32987,0,0.496423,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.914146,0.15,4 +32991,0,0.493602,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.846451,0.15,4 +33721,0,0.325894,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.82146,0.15,4 +33906,0,0.54388,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.053124,0.15,4 +13144,0,0.535445,2,2,0,2,4,,3,1,Chicago,St,1581803,1.679,2.214,0,12.850682,6,4.5 +14835,1,0.127261,1,0,0,1,2,ROF,3,1,N M 39/Joy,RAMP,1591806,0,0.127,0,,2.24,5 +14866,0,0.489161,2,2,0,2,3,,3,1,Warren,Ave,1591804,2.387,2.876,0,11.739856,5,5 +15026,1,0.10618,1,0,0,1,2,RON,3,1,Joy/S M 39,RAMP,1594806,0,0.106,0,,1.09,4 +15032,0,0.485532,2,2,0,2,5,,3,1,Tireman,St,1594805,1.608,2.093,0,11.65278,8,4.5 +15186,-1,0.190721,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.103,6.293,0,4.577306,8,4.5 +15207,1,0.670204,3,0,0,1,2,,3,1,N M 39,,1592408,9.002,9.672,0,,0.58,7 +15549,-1,0.624662,0,3,0,1,2,,3,1,S M 39,,1592407,9.049,9.673,0,,0.58,7 +19024,0,0.478346,2,2,0,2,4,,3,1,Joy,Rd,1677810,7.992,8.47,0,11.480315,6,4.5 +19092,1,0.178201,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.835,6.013,0,4.276826,8,4.5 +32023,0,0.519648,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.471542,0.15,4 +32024,0,0.535674,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.856178,0.15,4 +32270,0,0.499092,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.978201,0.15,4 +32335,0,0.250339,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.008134,0.15,4 +32971,0,0.47303,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.352711,0.15,4 +32974,0,0.25003,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.000717,0.15,4 +32975,0,0.495642,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.89541,0.15,4 +32990,0,0.482639,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.58334,0.15,4 +33771,0,0.529452,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.706853,0.15,4 +14885,0,0.466551,2,2,0,2,3,,3,1,Warren,Ave,1591804,1.879,2.345,0,11.197224,5,5 +14964,-1,0.187759,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,5.668,5.856,0,4.506206,8,4.5 +15036,0,0.468658,1,1,0,2,5,,3,1,Tireman,St,1594805,1.096,1.565,0,11.247795,8,4.5 +15061,1,0.180226,1,0,0,1,2,ROF,3,1,S M 39/Warren,RAMP,1594804,0,0.18,0,,2.24,5 +15208,1,0.491762,3,0,0,1,2,,3,1,N M 39,,1592408,8.186,8.678,0,,0.58,7 +15553,-1,0.485894,0,3,0,1,2,,3,1,S M 39,,1592407,8.226,8.712,0,,0.58,7 +19093,1,0.111147,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.334,5.445,0,2.667528,8,4.5 +32021,0,0.51147,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.275273,0.15,4 +32309,0,0.551105,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.226522,0.15,4 +32339,0,0.248176,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.956225,0.15,4 +33010,0,0.470575,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.293808,0.15,4 +33772,0,0.618472,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.843332,0.15,4 +32320,0,0.261608,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.278594,0.15,4 +32337,0,0.24867,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.968088,0.15,4 +14818,1,0.091504,1,0,0,1,2,RON,3,1,Warren/S M 39,RAMP,1594803,0,0.092,0,,1.09,4 +14934,1,0.111591,1,0,0,1,2,ROF,3,1,N M 39/Warren,RAMP,1591803,0,0.112,0,,2.24,5 +14873,0,0.042003,2,2,0,2,3,,3,1,Warren,Ave,1591804,2.345,2.387,0,1.008081,5,5 +15448,-1,0.148531,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,5.454,5.602,0,3.564744,8,4.5 +17686,1,0.123022,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.181,5.304,0,2.952531,8,4.5 +15187,-1,0.066432,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,5.602,5.668,0,1.594371,8,4.5 +19098,1,0.029636,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.304,5.334,0,0.711274,8,4.5 +15275,-1,0.337288,0,3,0,1,2,,3,1,S M 39,,1592407,8.712,9.049,0,,0.58,7 +15447,-1,0.246577,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,5.856,6.103,0,5.91784,8,4.5 +15466,1,0.323846,3,0,0,1,2,,3,1,N M 39,,1592408,8.678,9.002,0,,0.58,7 +17674,1,0.176842,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.658,5.835,0,4.244204,8,4.5 +14860,1,0.118032,1,0,0,1,2,RON,3,1,Warren/N M 39,RAMP,1591805,0,0.118,0,,1.09,4 +18627,1,0.212757,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.445,5.658,0,5.106162,8,4.5 +14800,0,0.043013,2,2,0,2,5,,3,1,Tireman,St,1594805,1.565,1.608,0,1.032302,8,4.5 +12323,0,0.393162,2,2,0,2,4,,3,1,Chicago,St,1581803,1.155,1.548,0,9.435877,6,4.5 +14780,1,0.143498,1,0,0,1,2,ROF,3,1,S M 39/Joy,RAMP,1594808,0,0.144,0,,2.24,5 +14832,1,0.142361,1,0,0,1,2,RON,3,1,Joy/N M 39,RAMP,1591808,0,0.142,0,,1.09,4 +15445,-1,0.127021,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.726,6.853,0,3.04851,8,4.5 +18038,0,0.47637,1,1,1,2,4,,3,1,Joy,Rd,1677810,7.473,7.949,0,11.432882,6,4.5 +18620,1,0.169472,1,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.414,6.584,0,4.067333,8,4.5 +30544,0,0.488547,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.725137,0.15,4 +32020,0,0.53337,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.800869,0.15,4 +32022,0,0.516505,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.396127,0.15,4 +32025,0,0.522357,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.536568,0.15,4 +32330,0,0.248503,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.964081,0.15,4 +32331,0,0.475799,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.419168,0.15,4 +32334,0,0.482976,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.591424,0.15,4 +32333,0,0.249316,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.983576,0.15,4 +30545,0,0.248139,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.955335,0.15,4 +32329,0,0.247227,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.933452,0.15,4 +15446,-1,0.242689,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.361,6.603,0,5.824534,8,4.5 +18623,1,0.168011,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.166,6.334,0,4.032275,8,4.5 +19088,1,0.153229,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.013,6.166,0,3.677504,8,4.5 +14962,-1,0.067586,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.293,6.361,0,1.622071,8,4.5 +15184,-1,0.066617,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.603,6.67,0,1.598808,8,4.5 +17614,0,0.042763,2,2,0,2,4,,3,1,Joy,Rd,1677810,7.949,7.992,0,1.02631,6,4.5 +19087,1,0.080403,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.334,6.414,0,1.929672,8,4.5 +14960,-1,0.055953,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.67,6.726,0,1.342877,8,4.5 +12027,0,0.092783,2,2,0,2,4,,3,1,Chicago,St,1581803,1.548,1.641,0,2.226782,6,4.5 +15007,0,0.085785,1,1,0,2,5,,3,1,Fitzpatrick,St,1594809,0.071,0.157,0,2.058828,8,4.5 +15273,-1,0.55325,0,3,0,1,2,,3,1,S M 39,,1592407,9.673,10.226,0,,0.58,7 +15015,1,0.042008,1,0,0,2,5,,3,1,Fitzpatrick,St,1594809,0,0.042,0,1.008189,8,4.5 +15183,-1,0.158363,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.853,7.011,0,3.800724,8,4.5 +19086,1,0.122193,1,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.584,6.706,0,2.932622,8,4.5 +14763,1,0.029239,1,0,0,2,5,,3,1,Fitzpatrick,St,1594809,0.042,0.071,0,0.701732,8,4.5 +14959,-1,0.029962,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,7.011,7.041,0,0.719083,8,4.5 +23718,1,0.039753,2,0,0,2,5,,3,1,Fitzpatrick,St,4707996,0,0.04,0,0.95408,8,4.5 +18619,1,0.062888,1,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.706,6.769,0,1.50931,8,4.5 +11636,0,0.037708,2,2,0,2,4,,3,1,Chicago,St,1581803,1.641,1.679,0,0.904992,6,4.5 +13326,-1,0.156843,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0,0.157,0,3.764229,8,4.5 +14826,1,0.156976,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0,0.157,0,3.76743,8,4.5 +32305,0,0.248317,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.959603,0.15,4 +32978,0,0.248856,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.97255,0.15,4 +32302,0,0.250205,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.004922,0.15,4 +32976,0,0.249364,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.984738,0.15,4 +24108,0,0.066828,1,1,0,2,5,,3,1,Paul,Dr,4710428,0.407,0.473,0,1.603869,8,4.5 +32988,0,0.25498,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.119526,0.15,4 +32989,0,0.256706,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.160935,0.15,4 +32992,0,0.250141,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.00339,0.15,4 +32972,0,0.24944,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.986559,0.15,4 +12043,-1,0.458126,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,1.933,2.391,0,,0.58,7 +12123,1,0.384048,2,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,1.968,2.352,0,,0.58,7 +12812,0,0.307397,2,2,0,2,3,,3,1,Grand River,Ave,1577408,2.757,3.064,0,7.37752,5,5 +13110,0,0.18748,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.97,5.157,0,4.499522,6,4.5 +13328,-1,0.160694,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,1.323,1.483,0,3.856663,8,4.5 +14634,1,0.238192,1,0,0,1,1,RFF,3,1,E I 96 Local/E I 96 Express,RAMP,1590708,0,0.238,0,,0.58,7 +14657,1,0.204431,1,0,0,1,1,RFF,3,1,W I 96 Express/W I 96 Local,RAMP,1590602,0,0.204,0,,0.58,7 +14659,1,0.260549,1,0,0,1,1,RFS,3,1,S M 39/E I 96,RAMP,1590510,0,0.261,0,,0.22,6 +14765,1,0.160564,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.325,1.485,0,3.853537,8,4.5 +15180,1,0.378804,3,0,0,1,2,,3,1,N M 39,,1592408,11.233,11.611,0,,0.58,7 +15543,-1,0.409731,0,3,0,1,2,,3,1,S M 39,,1592407,11.229,11.638,0,,0.58,7 +15598,1,0.087539,2,0,0,1,1,RFF,3,1,W I 96/M 39,RAMP,1591903,0.369,0.457,0,,0.58,7 +15707,1,0.166396,1,0,0,1,1,RFS,3,1,N M 39/E I 96,RAMP,1591901,0.166,0.332,0,,0.22,6 +16548,0,0.464886,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,17.319,17.783,0,11.157267,5,5 +16571,-1,0.495885,0,3,0,1,1,,3,1,W I 96,,1606503,11.568,12.064,0,,0.58,7 +16999,1,0.538392,3,0,0,1,1,,3,1,E I 96,,1606201,11.835,12.373,0,,0.58,7 +17496,0,0.227939,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.085,8.313,0,5.470533,5,5 +22905,0,0.272438,1,1,0,2,4,,3,1,Schoolcraft,St,4705258,11.953,12.226,0,6.538515,6,4.5 +24378,0,0.472604,1,1,0,2,5,,3,1,Fullerton,St,4710521,0.06,0.532,0,11.342503,8,4.5 +30260,0,0.526302,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.631248,0.15,4 +30906,0,0.468697,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.248733,0.15,4 +32348,0,0.270491,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.491786,0.15,4 +32979,0,0.261596,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.278299,0.15,4 +32981,0,0.496155,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.907731,0.15,4 +32985,0,0.479661,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.511866,0.15,4 +33447,0,0.515291,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.366976,0.15,4 +33670,0,0.440989,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.583729,0.15,4 +12218,-1,0.360088,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.825,1.185,0,8.642109,8,4.5 +12501,-1,0.293396,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,1.518,1.811,0,,0.58,7 +12577,1,0.292204,2,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,1.54,1.832,0,,0.58,7 +14661,1,0.217845,1,0,0,1,1,RFS,3,1,N M 39/W I 96,RAMP,1590508,0,0.218,0,,0.22,6 +14794,1,0.192083,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0.635,0.827,0,4.609987,8,4.5 +15271,-1,0.652029,0,3,0,1,2,,3,1,S M 39,,1592407,10.577,11.229,0,,0.58,7 +15441,1,0.615618,3,0,0,1,2,,3,1,N M 39,,1592408,10.617,11.233,0,,0.58,7 +15507,1,0.163245,1,0,0,1,1,RFS,3,1,E I 96/S M 39,RAMP,1591904,0.235,0.398,0,,0.22,6 +15512,1,0.234706,2,0,0,1,1,RFF,3,1,E I 96/M 39,RAMP,1591904,0,0.235,0,,0.58,7 +15603,1,0.237225,2,0,0,1,1,RFF,3,1,M 39/W I 96,RAMP,1591902,0.338,0.575,0,,0.58,7 +16562,0,0.465839,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,16.811,17.276,0,11.180145,5,5 +17414,-1,0.030694,0,1,0,2,5,,3,1,Borman,Ave,1624313,0,0.031,0,0.736668,8,4.5 +24256,1,0.239225,1,0,0,1,1,RFS,3,1,W I 96/S M 39,RAMP,4710305,0,0.239,0,,0.22,6 +30261,0,0.506818,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.163629,0.15,4 +30541,0,0.486408,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.67379,0.15,4 +32349,0,0.456733,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.961592,0.15,4 +33448,0,0.534562,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.829498,0.15,4 +32651,0,0.232775,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.586608,0.15,4 +12660,-1,0.254198,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.484,0.738,0,6.100759,8,4.5 +14815,1,0.150851,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0.484,0.635,0,3.620412,8,4.5 +15182,1,0.389585,3,0,0,1,2,,3,1,N M 39,,1592408,10.228,10.617,0,,0.58,7 +13157,-1,0.084839,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.318,0.403,0,2.03614,8,4.5 +14819,1,0.094632,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0.389,0.484,0,2.271177,8,4.5 +14828,1,0.121349,1,0,0,1,2,ROF,3,1,N M 39/Plymouth,RAMP,1591809,0,0.121,0,,2.24,5 +16558,0,0.042483,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,17.276,17.319,0,1.0196,5,5 +12845,-1,0.081137,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.403,0.484,0,1.947276,8,4.5 +15500,1,0.181467,2,0,0,1,1,RFF,3,1,I 96/S M 39,RAMP,1591904,0.398,0.579,0,,0.58,7 +15757,1,0.165853,1,0,0,1,1,RFF,3,1,N M 39/I 96,RAMP,1591901,0,0.166,0,,0.58,7 +12423,-1,0.086555,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.738,0.825,0,2.077324,8,4.5 +14635,1,0.164688,1,0,0,1,1,RFF,3,1,E I 96 Express/E I 96 Local,RAMP,1590707,0,0.165,0,,0.58,7 +14658,1,0.232666,1,0,0,1,1,RFS,3,1,E I 96/N M 39,RAMP,1590601,0,0.233,0,,0.22,6 +14660,1,0.17238,1,0,0,1,1,RFF,3,1,W I 96 Local/W I 96 Express,RAMP,1590509,0,0.172,0,,0.58,7 +14787,1,0.300672,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0.827,1.127,0,7.216121,8,4.5 +14788,1,0.104889,1,0,0,1,1,RFS,3,1,S M 39/W I 96,RAMP,1591902,0.233,0.338,0,,0.22,6 +15566,1,0.215927,1,0,0,1,1,RFF,3,1,I 96/N M 39,RAMP,1591903,0.59,0.805,0,,0.58,7 +15614,1,0.232704,2,0,0,1,1,RFF,3,1,S M 39/I 96,RAMP,1591902,0,0.233,0,,0.58,7 +24491,1,0.127656,1,0,0,1,5,,3,1,Southfield Service Drive,,4708709,0,0.128,0,,8,4.5 +24498,-1,0.177308,0,1,0,1,5,,3,1,Southfield Service Drive,,4708708,0,0.177,0,,8,4.5 +12221,-1,0.121824,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,1.811,1.933,0,,0.58,7 +12428,1,0.136165,2,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,1.832,1.968,0,,0.58,7 +15575,1,0.132932,1,0,0,1,1,RFS,3,1,W I 96/N M 39,RAMP,1591903,0.457,0.59,0,,0.22,6 +19272,1,0.129464,1,0,0,2,5,,3,1,I 96 Service Drive,,1804001,0,0.129,0,3.107139,8,4.5 +24538,-1,0.061861,0,1,0,2,5,,3,1,I 96 Service Drive,,4708258,0,0.062,0,1.484661,8,4.5 +24381,1,0.059878,1,0,0,2,5,,3,1,Fullerton,St,4710521,0,0.06,0,1.437076,8,4.5 +11961,-1,0.138066,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,1.185,1.323,0,3.313584,8,4.5 +14772,1,0.162195,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.163,1.325,0,3.892692,8,4.5 +14786,1,0.035164,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.127,1.163,0,0.843938,8,4.5 +12549,0,0.367252,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.531,4.898,0,8.814039,6,4.5 +12846,-1,0.392907,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,1.587,1.98,0,9.429764,8,4.5 +14761,1,0.388079,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.594,1.982,0,9.313905,8,4.5 +15267,-1,0.469118,0,3,0,1,2,,3,1,S M 39,,1592407,11.638,12.107,0,,0.58,7 +15427,1,0.564232,3,0,0,1,2,,3,1,N M 39,,1592408,11.611,12.175,0,,0.58,7 +23300,0,0.466368,1,1,0,2,4,,3,1,Schoolcraft,St,4705258,11.444,11.91,0,11.19282,6,4.5 +30894,0,0.386877,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.285055,0.15,4 +32344,0,0.36092,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.66209,0.15,4 +32346,0,0.617343,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.816238,0.15,4 +32345,0,0.390711,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.37706,0.15,4 +13018,-1,0.103993,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,1.483,1.587,0,2.495839,8,4.5 +14762,1,0.10857,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.485,1.594,0,2.605673,8,4.5 +23115,0,0.043124,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,11.91,11.953,0,1.03497,6,4.5 +12847,1,0.06236,1,0,0,1,2,RON,3,1,Schoolcraft/N M 39,RAMP,1582603,0,0.062,0,,1.09,4 +14929,1,0.077815,1,0,0,1,2,ROF,3,1,S M 39/Schoolcraft,RAMP,1594901,0,0.078,0,,2.24,5 +11913,0,0.035575,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.935,4.97,0,0.853798,6,4.5 +12424,-1,0.111385,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.14,2.251,0,2.673249,8,4.5 +12813,0,0.035293,2,2,0,2,3,,3,1,Grand River,Ave,1577408,2.722,2.757,0,0.847021,5,5 +14878,1,0.232183,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.097,2.329,0,5.572393,8,4.5 +15493,1,0.110529,1,0,0,1,2,ROF,3,1,N M 39/M 5,RAMP,1591905,0,0.111,0,,2.24,5 +24275,1,0.118715,1,0,0,1,2,RON,3,1,M 5/S M 39,RAMP,4710300,0,0.119,0,,1.09,4 +12119,-1,0.207676,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.251,2.459,0,4.984224,8,4.5 +12296,0,0.036539,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.898,4.935,0,0.876924,6,4.5 +12814,0,0.041092,2,2,0,2,3,,3,1,Grand River,Ave,1577408,2.681,2.722,0,0.986213,5,5 +11962,-1,0.020086,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.459,2.479,0,0.482066,8,4.5 +12573,-1,0.159903,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,1.98,2.14,0,3.837661,8,4.5 +14757,1,0.115139,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.982,2.097,0,2.763333,8,4.5 +15715,1,0.114043,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.329,2.443,0,2.737039,8,4.5 +15667,1,0.038443,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.443,2.481,0,0.922644,8,4.5 +11966,1,0.272259,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,2.352,2.624,0,,0.58,7 +13331,-1,0.227063,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,2.391,2.618,0,,0.58,7 +24375,0,0.456813,1,1,0,2,5,,3,1,Fullerton,St,4710521,0.532,0.989,0,10.963504,8,4.5 +36627,1,0.044568,2,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0.449,0.493,0,1.069641,8,4.5 +32980,0,0.498462,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.963078,0.15,4 +32984,0,0.234612,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.630677,0.15,4 +14656,1,0.312726,1,0,0,1,1,RFF,3,1,W I 96 Express/M 39,RAMP,1590604,0,0.313,0,,0.58,7 +15383,1,0.258974,1,0,0,1,1,RFF,3,1,M 39/E I 96 Local,RAMP,1591901,0.399,0.658,0,,0.58,7 +15601,1,0.369277,1,0,0,1,1,RFF,3,1,W I 96 Local/M 39,RAMP,1591903,0,0.369,0,,0.58,7 +16686,1,0.178726,2,0,0,1,1,,3,1,E I 96,,1606201,12.373,12.552,0,,0.58,7 +16848,-1,0.194894,0,3,0,1,1,,3,1,W I 96,,1606503,12.064,12.258,0,,0.58,7 +24254,1,0.295124,1,0,0,1,1,RFF,3,1,M 39/E I 96 Express,RAMP,4710306,0,0.295,0,,0.58,7 +32982,0,0.220994,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.303861,0.15,4 +15706,1,0.066927,2,0,0,1,1,RFF,3,1,M 39/E I 96,RAMP,1591901,0.332,0.399,0,,0.58,7 +14633,1,0.212642,1,0,0,1,1,ROF,3,1,E I 96/Greenfield,RAMP,1590710,0,0.213,0,,2.24,5 +14654,1,0.198197,1,0,0,1,1,RON,3,1,Greenfield/W I 96,RAMP,1590605,0.01,0.208,0,,1.09,4 +17560,1,0.19848,3,0,0,2,3,,3,1,Greenfield,Rd,1651002,7.826,8.024,0,4.763508,5,5 +22163,-1,0.2185,0,3,0,2,3,,3,1,Greenfield,Rd,4704392,0.207,0.426,0,5.244005,5,5 +22167,0,0.26287,1,1,0,1,5,,3,1,Greenfield Service Drive,,4704391,0,0.263,0,,8,4.5 +17573,1,0.070531,3,0,0,2,3,,3,1,Greenfield,Rd,1651002,7.727,7.797,0,1.692739,5,5 +22165,-1,0.07118,0,3,0,2,3,,3,1,Greenfield,Rd,4704392,0.108,0.179,0,1.708315,5,5 +14632,1,0.011024,1,0,0,2,3,RSF,3,1,E I 96/Greenfield,RAMP,1590710,0.213,0.224,0,0.264583,5,5 +17565,1,0.028814,3,0,0,2,3,,3,1,Greenfield,Rd,1651002,7.797,7.826,0,0.691543,5,5 +22164,-1,0.028322,0,3,0,2,3,,3,1,Greenfield,Rd,4704392,0.179,0.207,0,0.679738,5,5 +24373,0,0.037771,1,1,0,2,5,,3,1,Fullerton,St,4710521,0.989,1.027,0,0.906497,8,4.5 +14655,1,0.010081,1,0,0,2,3,RSF,3,1,Greenfield/W I 96,RAMP,1590605,0,0.01,0,0.241947,5,5 +39838,-1,0.035432,0,3,0,2,3,,4,3,Pontiac,Trl,4463510,0.129,0.165,0,0.850372,3.7,5 +17499,0,0.042338,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.043,8.085,0,1.016123,5,5 +17527,1,0.018654,3,0,0,2,3,,3,1,Greenfield,Rd,1651002,8.024,8.043,0,0.447697,5,5 +11927,0,0.188547,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.547,5.735,0,4.525117,6,4.5 +12807,0,0.467286,2,2,0,2,3,,3,1,Grand River,Ave,1577408,3.433,3.9,0,11.214874,5,5 +17466,0,0.111577,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.7,8.812,0,2.677851,5,5 +23381,0,0.487284,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,12.441,12.928,0,11.694815,6,4.5 +30609,0,0.603233,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.477586,0.15,4 +32950,0,0.366317,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.7916,0.15,4 +32994,0,0.075634,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.815206,0.15,4 +32998,0,0.358069,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.593665,0.15,4 +33055,0,0.374036,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.976864,0.15,4 +23550,0,0.215083,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,12.226,12.441,0,5.161989,6,4.5 +32983,0,0.368434,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.842424,0.15,4 +12811,0,0.175913,2,2,0,2,3,,3,1,Grand River,Ave,1577408,3.064,3.24,0,4.221919,5,5 +12848,0,0.22294,1,1,0,2,5,,3,1,Saint Marys,St,1582710,0,0.223,0,5.350571,8,4.5 +13121,0,0.156133,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.299,5.455,0,3.747184,6,4.5 +11929,0,0.141838,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.157,5.299,0,3.40412,6,4.5 +12810,0,0.192652,2,2,0,2,3,,3,1,Grand River,Ave,1577408,3.24,3.433,0,4.623645,5,5 +12733,0,0.091602,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.455,5.547,0,2.198437,6,4.5 +12849,0,0.152215,1,1,0,2,5,,3,1,Saint Marys,St,1582710,0.223,0.375,0,3.653158,8,4.5 +17481,0,0.228404,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.472,8.7,0,5.481686,5,5 +17487,0,0.158529,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.313,8.472,0,3.804706,5,5 +13120,0,0.217123,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.735,5.952,0,5.210955,6,4.5 +18261,0,0.333294,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.978,9.311,0,7.999065,5,5 +32996,0,0.371048,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.90516,0.15,4 +17432,0,0.166712,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.812,8.978,0,4.001079,5,5 +12028,0,0.50065,1,1,0,2,4,,3,1,Chicago,St,1581803,3.146,3.646,0,12.015591,6,4.5 +12466,-1,0.166298,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.062,2.228,0,3.991162,8,4.5 +12825,1,0.16679,2,0,0,2,5,DV2,3,1,Oakman,Blvd,1580701,1.874,2.041,0,4.002961,8,4.5 +14652,0,0.338542,2,2,0,2,4,,3,1,Hubbell,St,1590607,0,0.338,0,8.12502,6,4.5 +17025,0,0.24334,2,2,0,2,4,,3,1,Tireman,Ave,1623409,0.751,0.995,0,5.840172,6,4.5 +17045,1,0.269269,1,0,0,2,5,DV2,3,1,Manor,,1623608,0.947,1.216,0,6.462453,8,4.5 +17281,0,0.266617,2,2,1,2,3,,3,2,Warren,Ave,1628604,0.498,0.764,0,6.398819,5,5 +17785,0,0.336229,2,2,0,2,3,,3,1,Greenfield,,1651002,5.814,6.151,0,8.069487,5,5 +19115,0,0.499002,2,2,0,2,4,,3,1,Joy,Rd,1677810,9.468,9.967,0,11.976046,6,4.5 +22627,0,0.335896,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,5.287,5.623,0,8.061509,5,5 +22760,-1,0.276245,0,1,0,2,5,DV2,3,1,Manor,,4704845,0.94,1.216,0,6.629872,8,4.5 +30493,0,0.482776,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.586629,0.15,4 +33003,0,0.256092,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.146218,0.15,4 +12737,0,0.503269,1,1,0,2,5,,3,2,Chase,Rd,1580503,1.683,2.187,0,12.078452,8,4.5 +16400,0,0.172752,2,2,0,2,4,,3,1,Tireman,Ave,1623409,0.324,0.497,0,4.146039,6,4.5 +17283,0,0.324268,2,2,1,2,3,,3,2,Warren,Ave,1628604,0.058,0.382,0,7.782437,5,5 +17880,0,0.249383,2,2,0,2,3,,3,1,Greenfield,,1651002,5.316,5.565,0,5.98518,5,5 +30473,0,0.200266,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.806373,0.15,4 +33005,0,0.148259,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.558222,0.15,4 +17884,0,0.249561,2,2,1,2,3,,3,1,Greenfield,,1651002,5.066,5.316,0,5.989466,5,5 +17895,1,0.224567,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.816,5.041,0,5.389616,5,5 +23690,-1,0.224745,0,3,0,2,3,DV2,3,1,Greenfield,,4704562,1.368,1.593,0,5.393881,5,5 +24106,0,0.011576,1,1,0,2,5,,3,2,Paul,Dr,4710428,0.906,0.917,0,0.277835,8,4.5 +17892,0,0.025484,2,2,1,2,3,,3,1,Greenfield,,1651002,5.041,5.066,0,0.611612,5,5 +17284,0,0.057817,2,2,1,2,3,,3,2,Warren,Ave,1628604,0,0.058,0,1.387619,5,5 +16652,0,0.323928,2,2,0,2,4,,3,1,Tireman,Ave,1623409,0,0.324,0,7.774268,6,4.5 +17864,0,0.249679,2,2,0,2,3,,3,1,Greenfield,,1651002,5.565,5.814,0,5.992295,5,5 +30479,0,0.443767,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.650405,0.15,4 +12997,0,0.497572,1,1,0,2,5,,3,2,Chase,Rd,1580503,1.186,1.683,0,11.941721,8,4.5 +17282,0,0.115685,2,2,1,2,3,,3,2,Warren,Ave,1628604,0.382,0.498,0,2.776432,5,5 +16141,0,0.254859,2,2,0,2,4,,3,1,Tireman,Ave,1623409,0.497,0.751,0,6.11661,6,4.5 +12202,0,0.166583,1,1,0,2,4,,3,1,Chicago,St,1581803,2.979,3.146,0,3.997988,6,4.5 +14650,0,0.251748,2,2,0,2,4,,3,1,Hubbell,St,1590607,0.502,0.754,0,6.041956,6,4.5 +17745,0,0.203841,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,6.481,6.684,0,4.89218,5,5 +18134,0,0.383801,2,2,0,2,4,,3,1,Joy,Rd,1677810,8.968,9.352,0,9.211226,6,4.5 +33004,0,0.388177,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.316237,0.15,4 +33007,0,0.24983,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.995931,0.15,4 +33009,0,0.253794,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.09106,0.15,4 +33680,0,0.399561,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.589475,0.15,4 +17782,0,0.163824,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,6.151,6.314,0,3.931773,5,5 +17771,0,0.166252,1,1,0,2,3,,3,1,Greenfield,Rd,1651002,6.314,6.481,0,3.990041,5,5 +12649,0,0.221012,1,1,0,2,4,,3,1,Chicago,St,1581803,2.645,2.866,0,5.304278,6,4.5 +17694,0,0.129517,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,6.684,6.814,0,3.10841,5,5 +17688,0,0.171503,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,6.814,6.985,0,4.116065,5,5 +12483,0,0.113428,1,1,0,2,4,,3,1,Chicago,St,1581803,2.866,2.979,0,2.722274,6,4.5 +14651,0,0.163462,2,2,0,2,4,,3,1,Hubbell,St,1590607,0.338,0.502,0,3.923084,6,4.5 +33002,0,0.250428,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.010269,0.15,4 +33001,0,0.148988,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.575709,0.15,4 +17706,0,0.115899,2,2,0,2,4,,3,1,Joy,Rd,1677810,9.352,9.468,0,2.781578,6,4.5 +14649,0,0.247738,2,2,0,2,4,,3,1,Hubbell,St,1590607,0.754,1.001,0,5.945702,6,4.5 +33008,0,0.120218,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.885222,0.15,4 +12738,-1,0.501035,0,2,0,2,7,DV2,3,2,Oakman,Blvd,1580610,1.561,2.062,0,12.024837,7,4.5 +13131,1,0.501007,2,0,0,2,7,DV2,3,2,Oakman,Blvd,1580701,1.373,1.874,0,12.024168,7,4.5 +14736,0,0.148333,1,1,0,2,5,,3,2,Miller,Rd,1589801,4.062,4.21,0,3.559981,8,4.5 +16719,0,0.367955,2,2,0,2,4,,3,1,Tireman,Ave,1623409,0.995,1.363,0,8.830929,6,4.5 +17279,0,0.249626,2,2,0,2,3,,3,2,Warren,Ave,1628604,0.994,1.244,0,5.991014,5,5 +22977,0,0.252231,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,4.784,5.036,0,6.053533,5,5 +30484,0,0.249149,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.979586,0.15,4 +32900,0,0.514726,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.353422,0.15,4 +17280,0,0.229877,2,2,1,2,3,,3,2,Warren,Ave,1628604,0.764,0.994,0,5.517055,5,5 +23210,0,0.37613,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,4.407,4.784,0,9.027114,5,5 +33006,0,0.46288,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.109114,0.15,4 +30494,0,0.021072,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.505737,0.15,4 +23369,0,0.124112,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,4.283,4.407,0,2.978687,5,5 +22842,0,0.251914,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,5.036,5.287,0,6.045925,5,5 +14737,0,0.499216,1,1,0,2,4,,3,2,Miller,Rd,1589801,3.563,4.062,0,11.981184,6,4.5 +17275,0,0.115384,2,2,0,2,3,,3,2,Warren,Ave,1628604,1.381,1.496,0,2.76922,5,5 +30490,0,0.251395,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.033486,0.15,4 +30491,0,0.507405,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.177715,0.15,4 +17278,0,0.116593,2,2,0,2,3,,3,2,Warren,Ave,1628604,1.244,1.36,0,2.798221,5,5 +17277,0,0.02054,2,2,0,2,3,,3,2,Warren,Ave,1628604,1.36,1.381,0,0.492954,5,5 +14735,0,0.230316,1,1,0,2,5,,3,2,Miller,Rd,1589801,4.21,4.44,0,5.52758,8,4.5 +16201,0,0.118219,2,2,0,2,4,,3,1,Tireman,Ave,1623409,1.378,1.496,0,2.837251,6,4.5 +30492,0,0.157324,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.775774,0.15,4 +16459,0,0.015312,2,2,0,2,4,,3,1,Tireman,Ave,1623409,1.363,1.378,0,0.367483,6,4.5 +32902,0,0.115662,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.775887,0.15,4 +14734,0,0.123545,1,1,0,2,5,,3,2,Miller,Rd,1589801,4.44,4.564,0,2.965074,8,4.5 +16677,0,0.081057,1,1,0,2,5,,3,1,Esper,St,1623606,0.522,0.603,0,1.945372,8,4.5 +17085,0,0.056189,2,2,0,2,4,,3,1,Tireman,Ave,1623409,1.496,1.552,0,1.348543,6,4.5 +16165,1,0.06547,1,0,0,2,5,DV2,3,1,Manor,,1623608,0.882,0.947,0,1.571274,8,4.5 +16426,0,0.011203,1,1,0,2,5,,3,1,Esper,St,1623606,0.603,0.614,0,0.268868,8,4.5 +16785,0,0.008861,2,2,0,2,4,,3,1,Tireman,Ave,1623409,1.552,1.561,0,0.212667,6,4.5 +22761,-1,0.058563,0,1,0,2,5,DV2,3,1,Manor,,4704845,0.882,0.94,0,1.405509,8,4.5 +13244,0,0.350634,1,1,0,2,4,,3,1,Meyers,Rd,1583210,0,0.351,0,8.415211,6,4.5 +13318,0,0.251472,1,1,0,2,4,,3,1,Chicago,St,1581803,3.646,3.898,0,6.035335,6,4.5 +18667,0,0.500204,2,2,0,2,4,,3,1,Joy,Rd,1677810,9.967,10.467,0,12.004891,6,4.5 +23554,0,0.348033,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,5.789,6.137,0,8.35278,5,5 +32911,0,0.385383,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.249189,0.15,4 +32960,0,0.394389,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.465338,0.15,4 +22490,0,0.165596,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,5.623,5.789,0,3.974302,5,5 +23370,0,0.152238,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,6.137,6.289,0,3.653717,5,5 +12013,-1,0.130202,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.4,2.53,0,3.124836,8,4.5 +16476,1,0.149412,1,0,0,2,5,DV2,3,1,Manor,,1623608,1.232,1.381,0,3.585878,8,4.5 +22498,1,0.110678,2,0,0,2,5,DV2,3,1,Oakman,Blvd,4705439,0,0.111,0,2.656261,8,4.5 +22729,-1,0.149596,0,1,0,2,5,DV2,3,1,Manor,,4704845,1.231,1.381,0,3.590315,8,4.5 +22784,0,0.149524,1,1,0,2,5,,3,1,Meyers,Rd,4705438,0.291,0.441,0,3.588569,8,4.5 +12311,-1,0.172123,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.228,2.4,0,4.130948,8,4.5 +12636,1,0.16324,2,0,0,2,5,DV2,3,1,Oakman,Blvd,1580701,2.041,2.204,0,3.91775,8,4.5 +32914,0,0.082031,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.96875,0.15,4 +33891,0,0.08234,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.976157,0.15,4 +32912,0,0.088616,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.126777,0.15,4 +33798,0,0.080637,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.93529,0.15,4 +11624,-1,0.056332,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.53,2.586,0,1.351976,8,4.5 +23484,1,0.056336,2,0,0,2,5,DV2,3,1,Oakman,Blvd,4705439,0.111,0.167,0,1.352073,8,4.5 +23055,0,0.015262,1,1,0,2,5,,3,1,Meyers,Rd,4705438,0.276,0.291,0,0.366296,8,4.5 +13130,-1,0.008758,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.586,2.595,0,0.210197,8,4.5 +16745,1,0.015197,1,0,0,2,5,DV2,3,1,Manor,,1623608,1.216,1.232,0,0.364736,8,4.5 +22759,-1,0.015124,0,1,0,2,5,DV2,3,1,Manor,,4704845,1.216,1.231,0,0.362987,8,4.5 +23057,1,0.008859,2,0,0,2,5,DV2,3,1,Oakman,Blvd,4705439,0.167,0.176,0,0.212611,8,4.5 +18228,0,0.0618,2,2,0,2,4,,3,1,Joy,Rd,1677810,10.467,10.529,0,1.483196,6,4.5 +13145,0,0.250136,1,1,0,2,4,,3,1,Chicago,St,1581803,3.898,4.148,0,6.00326,6,4.5 +13245,0,0.150848,1,1,0,2,4,,3,1,Meyers,Rd,1583210,0.351,0.501,0,3.620343,6,4.5 +32907,0,0.156164,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.747945,0.15,4 +11654,0,0.081753,1,1,0,2,4,,3,1,Meyers,Rd,1583210,1.787,1.868,0,1.962083,6,4.5 +12335,1,0.176723,1,0,0,1,1,RON,3,1,Schaefer/W I 96,RAMP,1583104,0,0.177,0,,1.09,4 +12665,-1,0.669462,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,3.654,4.323,0,,0.58,7 +12766,1,0.607019,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,3.696,4.303,0,,0.58,7 +12802,0,0.408398,2,2,0,2,3,,3,1,Grand River,Ave,1577408,4.654,5.062,0,9.801562,5,5 +13242,1,0.205405,1,0,0,1,1,ROF,3,1,E I 96/Schaefer,RAMP,1583109,0,0.205,0,,2.24,5 +14643,0,0.432522,2,2,0,2,4,,3,1,Hubbell,St,1590607,2.072,2.505,0,10.380525,6,4.5 +15894,-1,0.344085,0,2,0,2,5,,3,1,W I 96 Service Drive,,1598908,0.235,0.579,0,8.258049,8,4.5 +16397,0,0.375146,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,18.903,19.278,0,9.003495,5,5 +16807,0,0.161317,1,1,0,2,4,,3,1,Lyndon,St,1612706,0.843,1.004,0,3.871614,6,4.5 +23297,0,0.233927,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,7.588,7.822,0,5.614241,5,5 +23458,0,0.358927,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,13.581,13.939,0,8.614258,6,4.5 +24346,0,0.501476,1,1,0,2,4,,3,1,Fullerton,St,4710521,1.538,2.039,0,12.035415,6,4.5 +32966,0,0.14983,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.595922,0.15,4 +33877,0,0.455505,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.932112,0.15,4 +12851,-1,0.612574,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,3.042,3.654,0,,0.58,7 +13024,1,0.666876,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,3.029,3.696,0,,0.58,7 +14645,0,0.349509,2,2,0,2,4,,3,1,Hubbell,St,1590607,1.652,2.001,0,8.388222,6,4.5 +16409,0,0.278358,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,18.5,18.778,0,6.680593,5,5 +24364,0,0.433449,1,1,0,2,5,,3,1,Fullerton,St,4710521,1.027,1.46,0,10.402774,8,4.5 +32967,0,0.329862,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.916679,0.15,4 +32968,0,0.174757,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.194165,0.15,4 +33904,0,0.279084,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.698007,0.15,4 +33905,0,0.213111,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.114659,0.15,4 +16451,0,0.224024,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,18.276,18.5,0,5.376586,5,5 +17665,0,0.150995,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,7.311,7.461,0,3.623886,5,5 +33907,0,0.207561,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.981455,0.15,4 +17597,0,0.159619,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,7.461,7.621,0,3.830861,5,5 +14646,0,0.150053,2,2,0,2,4,,3,1,Hubbell,St,1590607,1.502,1.652,0,3.601267,6,4.5 +16053,0,0.124467,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,18.778,18.903,0,2.987203,5,5 +14647,0,0.166119,2,2,0,2,4,,3,1,Hubbell,St,1590607,1.336,1.502,0,3.986853,6,4.5 +14644,0,0.071065,2,2,0,2,4,,3,1,Hubbell,St,1590607,2.001,2.072,0,1.705565,6,4.5 +24347,0,0.056922,1,1,0,2,5,,3,1,W I 96 Service Drive,,4710172,0.025,0.082,0,1.366128,8,4.5 +24348,0,0.077899,2,2,0,2,5,,3,1,Fullerton,St,4710521,1.46,1.538,0,1.869571,8,4.5 +24349,0,0.025155,1,1,0,2,5,,3,1,W I 96 Service Drive,,4710172,0,0.025,0,0.603709,8,4.5 +12425,0,0.245485,1,1,0,2,4,,3,1,Hubbell,St,1583004,0.25,0.496,0,5.891634,6,4.5 +12805,0,0.32509,2,2,0,2,3,,3,1,Grand River,Ave,1577408,4.156,4.481,0,7.802166,5,5 +16299,0,0.3124,2,2,0,2,4,,3,1,Lyndon,St,1612706,0.19,0.502,0,7.497592,6,4.5 +23548,0,0.207057,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,13.218,13.425,0,4.969363,6,4.5 +32941,0,0.160204,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.844897,0.15,4 +32961,0,0.328102,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.874449,0.15,4 +32964,0,0.353567,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.485609,0.15,4 +32940,0,0.306468,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.355231,0.15,4 +32939,0,0.255824,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.139777,0.15,4 +12663,0,0.162137,1,1,0,2,4,,3,1,Hubbell,St,1583004,0.088,0.25,0,3.891294,6,4.5 +12804,0,0.172158,2,2,0,2,3,,3,1,Grand River,Ave,1577408,4.481,4.654,0,4.131797,5,5 +22439,0,0.148607,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,13.432,13.581,0,3.566567,6,4.5 +12662,0,0.088117,1,1,0,2,4,,3,1,Hubbell,St,1583004,0,0.088,0,2.11482,6,4.5 +23201,0,0.007015,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,13.425,13.432,0,0.168371,6,4.5 +32963,0,0.074334,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.784019,0.15,4 +17096,0,0.341229,1,1,0,2,4,,3,1,Lyndon,St,1612706,0.502,0.843,0,8.189488,6,4.5 +12220,0,0.168699,1,1,0,2,4,,3,1,Hubbell,St,1583004,0.496,0.664,0,4.048767,6,4.5 +12502,0,0.338549,1,1,0,2,4,,3,1,Meyers,Rd,1583210,1.163,1.502,0,8.125188,6,4.5 +12782,0,0.391067,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.251,5.642,0,9.385607,5,5 +13243,1,0.167522,1,0,0,1,1,RON,3,1,Grand River/E I 96,RAMP,1583110,0,0.168,0,,1.09,4 +14642,1,0.260084,1,0,0,1,1,ROF,3,1,W I 96/Grand River,RAMP,1590608,0,0.26,0,,2.24,5 +16329,0,0.37897,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,19.402,19.781,0,9.095291,5,5 +16978,1,0.28018,1,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0.238,0.518,0,6.724314,8,4.5 +22775,0,0.33647,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,6.953,7.289,0,8.075287,5,5 +24344,0,0.306495,2,2,0,2,4,,3,1,Fullerton,St,4710521,2.235,2.541,0,7.355887,6,4.5 +32829,0,0.376317,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.03161,0.15,4 +32957,0,0.367036,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.808855,0.15,4 +16393,0,0.124708,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,19.278,19.402,0,2.992989,5,5 +22978,0,0.163922,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,6.789,6.953,0,3.934133,5,5 +32958,0,0.142751,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.42603,0.15,4 +32959,0,0.129873,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.116963,0.15,4 +12792,0,0.030589,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.107,5.137,0,0.734147,5,5 +15896,-1,0.0543,0,3,0,2,5,,3,1,W I 96 Service Drive,,1598908,0.061,0.115,0,1.303208,8,4.5 +16415,1,0.108974,3,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0,0.109,0,2.615378,8,4.5 +22628,0,0.165502,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,7.289,7.455,0,3.97205,5,5 +24345,0,0.195716,2,2,0,2,4,,3,1,Fullerton,St,4710521,2.039,2.235,0,4.697189,6,4.5 +24476,1,0.023435,1,0,0,1,3,RSF,3,1,Grand River/I 96 Crossover,,4710079,0,0.023,0,,5,5 +23704,0,0.077882,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,7.455,7.533,0,1.869166,5,5 +12799,0,0.044905,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.062,5.107,0,1.077721,5,5 +15897,-1,0.060674,0,1,0,2,5,,3,1,Schaefer/W I 96,Ramp,1598908,0,0.061,0,1.456167,8,4.5 +23555,0,0.055583,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,7.533,7.588,0,1.333986,5,5 +15895,-1,0.013036,0,3,0,2,5,,3,1,W I 96 Service Drive,,1598908,0.115,0.128,0,0.312853,8,4.5 +16105,1,0.06879,1,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0.169,0.238,0,1.650965,8,4.5 +16153,1,0.059956,3,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0.109,0.169,0,1.438934,8,4.5 +24475,1,0.087989,1,0,0,1,3,RSF,3,1,Grand River/I 96 Crossover,,4710079,0.023,0.111,0,,5,5 +12767,0,0.162812,1,1,0,2,4,,3,1,Meyers,Rd,1583210,1.001,1.163,0,3.907496,6,4.5 +12044,0,0.277815,1,1,0,2,4,,3,1,Meyers,Rd,1583210,1.509,1.787,0,6.667567,6,4.5 +12775,0,0.014772,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.642,5.657,0,0.354534,5,5 +24337,0,0.012953,2,2,0,2,4,,3,1,Fullerton,St,4710521,2.541,2.554,0,0.31088,6,4.5 +12340,0,0.007045,2,2,0,2,4,,3,1,Meyers,Rd,1583210,1.502,1.509,0,0.169073,6,4.5 +12937,0,0.468551,1,1,0,2,4,,3,1,Meyers,Rd,1583210,2.037,2.506,0,11.24523,6,4.5 +16297,0,0.332839,1,1,0,2,4,,3,1,Lyndon,St,1612706,1.17,1.503,0,7.988129,6,4.5 +22917,0,0.408582,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,7.885,8.293,0,9.805967,5,5 +23456,0,0.196134,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,14.022,14.218,0,4.707208,6,4.5 +32929,0,0.374195,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.980689,0.15,4 +33896,0,0.14261,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.422645,0.15,4 +22427,0,0.082277,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,13.939,14.022,0,1.974636,6,4.5 +33013,0,0.142726,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.425431,0.15,4 +23125,0,0.062489,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,7.822,7.885,0,1.499745,5,5 +33014,0,0.060454,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.450884,0.15,4 +16529,0,0.16604,1,1,0,2,4,,3,1,Lyndon,St,1612706,1.004,1.17,0,3.984967,6,4.5 +22776,0,0.349315,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,8.293,8.642,0,8.383567,5,5 +32928,0,0.184695,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.432687,0.15,4 +32930,0,0.218039,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.232938,0.15,4 +22423,0,0.223826,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,14.218,14.442,0,5.371827,6,4.5 +13162,0,0.169044,1,1,0,2,4,,3,1,Meyers,Rd,1583210,1.868,2.037,0,4.057056,6,4.5 +12666,0,0.243254,2,2,0,2,4,,3,1,Meyers,Rd,1583210,2.506,2.749,0,5.838102,6,4.5 +35,0,0.475894,2,2,1,2,4,,3,3,9 Mile,Rd,607709,5.507,5.983,0,11.421455,6,4.5 +34177,0,0.244587,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,13.177,13.422,0,5.870096,5,5 +3371,0,0.48259,2,2,0,2,5,,3,3,Oak Park,Blvd,665103,0,0.483,0,11.582158,8,4.5 +12076,1,0.534237,3,0,0,1,2,,3,1,S M 10,,1577509,0.54,1.074,0,,0.58,7 +12080,1,0.5256,3,0,0,1,2,,3,1,S M 10,,1577509,0.014,0.54,0,,0.58,7 +13158,-1,0.250333,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.724,4.975,0,6.007992,8,4.5 +13334,0,0.239008,1,1,0,2,4,,3,1,Meyers,Rd,1583210,5.006,5.245,0,5.736189,6,4.5 +13346,-1,0.566238,0,3,0,1,2,,3,1,N M 10,,1577510,0.508,1.074,0,,0.58,7 +13347,-1,0.422572,0,3,0,1,2,,3,1,N M 10,,1577510,0.086,0.508,0,,0.58,7 +13409,1,0.192854,1,0,0,1,2,ROF,3,1,N M 10/James Couzens Fwy,RAMP,1585105,0,0.193,0,,2.24,5 +13558,1,0.500926,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,3.116,3.616,0,12.022222,6,4.5 +13565,1,0.248653,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,1.672,1.92,0,5.967665,6,4.5 +13586,1,0.221131,2,0,0,2,4,DV2,3,1,Vassar,Ave,1584503,0.518,0.739,0,5.307142,6,4.5 +13596,0,0.190945,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,1.429,1.62,0,4.58267,8,4.5 +13600,1,0.221432,1,0,0,1,2,RON,3,1,James Couzens Fwy/S M 10,RAMP,1584501,0,0.221,0,,1.09,4 +13603,1,0.241837,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0.439,0.681,0,5.804079,5,5 +14599,-1,0.311649,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.672,0.983,0,7.479574,8,4.5 +14600,-1,0.379418,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.292,0.672,0,9.106024,8,4.5 +14620,1,0.171497,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.85,1.022,0,4.115917,8,4.5 +14622,1,0.361269,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.332,0.693,0,8.670455,8,4.5 +14886,1,0.248994,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,4.727,4.976,0,5.975862,8,4.5 +15249,-1,0.450498,0,3,0,1,2,,3,1,S M 39,,1592407,14.648,15.098,0,,0.58,7 +15411,1,0.471067,3,0,0,1,2,,3,1,N M 39,,1592408,14.611,15.081,0,,0.58,7 +16347,0,0.25257,1,1,0,2,5,,3,1,Hubbell,St,1601208,0,0.253,0,6.061692,8,4.5 +16375,0,0.245205,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.126,2.371,0,5.88491,8,4.5 +17957,0,0.189867,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,11.929,12.119,0,4.556812,5,5 +18697,0,0.309733,2,2,0,2,3,,3,1,McNichols,Rd,1680701,17.993,18.302,0,7.433586,5,5 +18750,0,0.249775,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,11.555,11.804,0,5.994604,5,5 +19523,-1,0.253747,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.471,0.725,0,6.089923,5,5 +34176,0,0.014013,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,13.163,13.177,0,0.336308,5,5 +22704,0,0.013739,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,11.036,11.05,0,0.329737,5,5 +23464,-1,0.306553,0,2,0,2,4,DV2,3,1,Vassar,Ave,4704573,0,0.306,0,7.357261,6,4.5 +23489,-1,0.026244,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,3.697,3.723,0,0.629846,6,4.5 +23549,-1,0.248695,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,1.56,1.809,0,5.968677,6,4.5 +23759,0,0.310639,1,1,0,2,4,,3,1,Puritan,St,4707953,1.522,1.833,0,7.455342,6,4.5 +23774,-1,0.033606,0,1,0,1,4,,3,1,Vassar/Outer Cutoff,,4707899,0,0.034,0,,6,4.5 +27434,0,0.52759,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.662171,0.15,4 +27448,0,0.467137,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.211281,0.15,4 +27458,0,0.564444,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.546665,0.15,4 +30255,0,0.543701,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.048824,0.15,4 +32953,0,0.28914,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.93937,0.15,4 +32962,0,0.363771,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.730507,0.15,4 +33034,0,0.227018,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.448425,0.15,4 +33036,0,0.13201,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.16823,0.15,4 +33040,0,0.432811,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.387475,0.15,4 +33043,0,0.364371,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.744914,0.15,4 +33872,0,0.408884,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.813209,0.15,4 +11649,-1,0.19697,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.522,3.719,0,4.727278,8,4.5 +13568,1,0.280922,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,0.895,1.176,0,6.742121,6,4.5 +15254,-1,0.70881,0,3,0,1,2,,3,1,S M 39,,1592407,13.58,14.288,0,,0.58,7 +15269,1,0.226802,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.494,3.721,0,5.443242,8,4.5 +15419,1,0.719302,3,0,0,1,2,,3,1,N M 39,,1592408,13.563,14.282,0,,0.58,7 +16396,0,0.242025,1,1,0,2,5,,3,1,Asbury,Park,1601110,0.999,1.241,0,5.808603,8,4.5 +17492,0,0.277724,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,11.154,11.432,0,6.665371,5,5 +17741,0,0.280087,2,2,0,2,3,,3,1,McNichols,Rd,1680701,17.216,17.496,0,6.722077,5,5 +17786,0,0.240498,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,10.31,10.551,0,5.771951,5,5 +23616,-1,0.266668,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,0.578,0.844,0,6.400041,6,4.5 +23763,0,0.205914,1,1,0,2,4,,3,1,Puritan,St,4707953,0.539,0.745,0,4.941931,6,4.5 +30259,0,0.259337,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.224092,0.15,4 +30263,0,0.306504,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.356091,0.15,4 +30264,0,0.287043,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.88904,0.15,4 +33035,0,0.477165,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.451968,0.15,4 +33046,0,0.232076,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.569833,0.15,4 +33051,0,0.501725,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.041412,0.15,4 +33681,0,0.37413,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.97913,0.15,4 +12762,-1,0.124236,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.977,3.101,0,2.981675,8,4.5 +15255,-1,0.655524,0,3,0,1,2,,3,1,S M 39,,1592407,12.614,13.269,0,,0.58,7 +15410,1,0.123616,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.979,3.103,0,2.966794,8,4.5 +15422,1,0.677221,3,0,0,1,2,,3,1,N M 39,,1592408,12.617,13.294,0,,0.58,7 +18477,0,0.383813,2,2,0,2,3,,3,1,McNichols,Rd,1680701,16.591,16.974,0,9.211505,5,5 +23765,0,0.435648,1,1,0,2,5,,3,1,Puritan,St,4707953,0.065,0.5,0,10.455549,8,4.5 +30550,0,0.389851,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.356417,0.15,4 +30556,0,0.457309,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.975413,0.15,4 +32658,0,0.403715,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.689172,0.15,4 +22159,-1,0.013128,0,1,0,2,5,DV2,3,1,Warwick,St,4704536,0.172,0.186,0,0.315078,8,4.5 +22642,-1,0.014848,0,1,0,2,5,DV2,3,1,Bretton,Dr,4704882,0.406,0.421,0,0.356348,8,4.5 +22690,-1,0.010859,0,1,0,2,5,DV2,3,1,Bretton,Dr,4704882,0.395,0.406,0,0.260618,8,4.5 +23768,-1,0.007821,0,1,0,2,5,,3,1,Puritan,St,4707953,0,0.008,0,0.187696,8,4.5 +24473,1,0.018935,1,0,0,2,5,DV2,3,1,Warwick,St,4710085,0.212,0.231,0,0.45444,8,4.5 +12038,1,0.013827,1,0,0,2,5,DV2,3,1,Bretton,Dr,1582509,0.435,0.449,0,0.331843,8,4.5 +24474,1,0.012965,1,0,0,2,5,DV2,3,1,Warwick,St,4710085,0.2,0.212,0,0.311157,8,4.5 +23766,0,0.046122,1,1,0,2,5,,3,1,Puritan,St,4707953,0.018,0.065,0,1.10694,8,4.5 +30552,0,0.114739,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.753747,0.15,4 +23767,0,0.010552,1,1,0,2,5,,3,1,Puritan,St,4707953,0.008,0.018,0,0.253238,8,4.5 +22158,-1,0.008733,0,1,0,2,5,DV2,3,1,Warwick,St,4704536,0.186,0.194,0,0.209585,8,4.5 +13019,-1,0.437356,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.54,2.977,0,10.496548,8,4.5 +15556,1,0.43267,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.547,2.979,0,10.384081,8,4.5 +15765,1,0.101172,1,0,0,1,2,ROF,3,1,S M 39/M 5,RAMP,1594904,0,0.101,0,,2.24,5 +23764,0,0.039365,1,1,0,2,4,,3,1,Puritan,St,4707953,0.5,0.539,0,0.944766,6,4.5 +15430,1,0.115048,1,0,0,1,2,RON,3,1,M 5/N M 39,RAMP,1591906,0,0.115,0,,1.09,4 +12574,-1,0.300127,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.101,3.401,0,7.203037,8,4.5 +14874,1,0.107678,1,0,0,1,2,RON,3,1,McNichols/S M 39,RAMP,1594905,0,0.108,0,,1.09,4 +15167,1,0.269275,3,0,0,1,2,,3,1,N M 39,,1592408,13.294,13.563,0,,0.58,7 +15379,1,0.314784,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.103,3.418,0,7.554828,8,4.5 +15424,1,0.114473,1,0,0,1,2,RON,3,1,McNichols/N M 39,RAMP,1591908,0,0.115,0,,1.09,4 +15428,1,0.082292,1,0,0,1,2,ROF,3,1,N M 39/McNichols,RAMP,1591907,0,0.082,0,,2.24,5 +15527,-1,0.310975,0,3,0,1,2,,3,1,S M 39,,1592407,13.269,13.58,0,,0.58,7 +18259,0,0.04238,2,2,0,2,3,,3,1,McNichols,Rd,1680701,16.974,17.017,0,1.017125,5,5 +12120,-1,0.047014,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.475,3.522,0,1.128327,8,4.5 +12333,-1,0.074065,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.401,3.475,0,1.777569,8,4.5 +15708,1,0.08584,1,0,0,1,2,ROF,3,1,S M 39/McNichols,RAMP,1594906,0,0.086,0,,2.24,5 +17968,0,0.199088,2,2,0,2,3,,3,1,McNichols,Rd,1680701,17.017,17.216,0,4.778121,5,5 +15370,1,0.060142,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.418,3.478,0,1.443419,8,4.5 +15312,1,0.016227,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.478,3.494,0,0.389445,8,4.5 +12498,-1,0.321804,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.124,4.445,0,7.723294,8,4.5 +13571,1,0.235483,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,0.425,0.661,0,5.651602,6,4.5 +15111,1,0.438384,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.977,4.416,0,10.521213,8,4.5 +18302,0,0.477734,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,10.435,10.912,0,11.465623,5,5 +23622,-1,0.232048,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,0.315,0.547,0,5.569144,6,4.5 +30256,0,0.525649,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.615585,0.15,4 +30563,0,0.251343,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.032236,0.15,4 +30564,0,0.486812,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.683478,0.15,4 +32355,0,0.470955,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.302919,0.15,4 +13572,1,0.313783,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,0.112,0.425,0,7.530782,6,4.5 +23626,-1,0.314635,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,0,0.315,0,7.551252,6,4.5 +33927,0,0.283684,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.808408,0.15,4 +32357,0,0.246729,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.921486,0.15,4 +12931,-1,0.242936,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.733,3.976,0,5.83046,8,4.5 +13569,1,0.205819,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,0.689,0.895,0,4.939663,6,4.5 +15130,1,0.243595,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.734,3.977,0,5.846276,8,4.5 +13238,-1,0.013986,0,1,0,2,5,,3,1,Southfield Service Drive,,1582601,3.719,3.733,0,0.33566,8,4.5 +15135,1,0.01319,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.721,3.734,0,0.31655,8,4.5 +13570,1,0.028392,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,0.661,0.689,0,0.681418,6,4.5 +23619,-1,0.031249,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,0.547,0.578,0,0.749971,6,4.5 +12763,-1,0.147846,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.976,4.124,0,3.548301,8,4.5 +12039,-1,0.043918,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.476,4.519,0,1.054037,8,4.5 +14912,1,0.03686,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,4.477,4.514,0,0.884651,8,4.5 +15166,1,0.328348,3,0,0,1,2,,3,1,N M 39,,1592408,14.282,14.611,0,,0.58,7 +15525,-1,0.359881,0,3,0,1,2,,3,1,S M 39,,1592407,14.288,14.648,0,,0.58,7 +17793,0,0.198084,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,10.956,11.154,0,4.754018,5,5 +14872,1,0.131474,1,0,0,1,2,RON,3,1,7 Mile/S M 39,RAMP,1594908,0,0.131,0,,1.09,4 +15548,1,0.090495,1,0,0,1,2,ROF,3,1,N M 39/7 Mile,RAMP,1591909,0,0.09,0,,2.24,5 +15020,1,0.061258,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,4.416,4.477,0,1.470201,8,4.5 +18012,0,0.043839,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,10.912,10.956,0,1.052126,5,5 +12334,-1,0.030106,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.445,4.476,0,0.722555,8,4.5 +11650,-1,0.205066,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.519,4.724,0,4.921592,8,4.5 +14892,1,0.213104,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,4.514,4.727,0,5.114497,8,4.5 +15702,1,0.157331,1,0,0,1,2,ROF,3,1,S M 39/7 Mile,RAMP,1594909,0,0.157,0,,2.24,5 +15712,1,0.143022,1,0,0,1,2,RON,3,1,7 Mile/N M 39,RAMP,1591910,0,0.143,0,,1.09,4 +16405,0,0.247415,1,1,0,2,5,,3,1,Asbury,Park,1601110,0.501,0.748,0,5.937961,8,4.5 +17748,0,0.282223,2,2,0,2,3,,3,1,McNichols,Rd,1680701,17.496,17.778,0,6.773343,5,5 +18885,0,0.247987,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,9.811,10.059,0,5.951692,5,5 +23761,0,0.283159,1,1,0,2,4,,3,1,Puritan,St,4707953,1.024,1.307,0,6.795826,6,4.5 +30553,0,0.377471,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.059299,0.15,4 +33065,0,0.376312,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.031498,0.15,4 +33682,0,0.372935,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.95044,0.15,4 +33683,0,0.378142,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.075403,0.15,4 +16406,0,0.25132,1,1,0,2,5,,3,1,Asbury,Park,1601110,0.249,0.501,0,6.031678,8,4.5 +23762,0,0.278988,1,1,0,2,4,,3,1,Puritan,St,4707953,0.745,1.024,0,6.695714,6,4.5 +33063,0,0.37582,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.019682,0.15,4 +32952,0,0.001627,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.039057,0.15,4 +16399,0,0.12541,1,1,0,2,5,,3,1,Asbury,Park,1601110,0.874,0.999,0,3.009836,8,4.5 +16402,0,0.125821,1,1,0,2,5,,3,1,Asbury,Park,1601110,0.748,0.874,0,3.0197,8,4.5 +27441,0,0.124061,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.977464,0.15,4 +33044,0,0.002179,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.052286,0.15,4 +17586,0,0.250381,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,9.561,9.811,0,6.009145,5,5 +23760,0,0.214923,1,1,0,2,4,,3,1,Puritan,St,4707953,1.307,1.522,0,5.158161,6,4.5 +17752,0,0.251351,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,10.059,10.31,0,6.032418,5,5 +19156,0,0.214986,2,2,0,2,3,,3,1,McNichols,Rd,1680701,17.778,17.993,0,5.159671,5,5 +13567,1,0.280604,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,1.176,1.456,0,6.734488,6,4.5 +16380,0,0.504628,1,1,0,2,5,,3,1,Asbury,Park,1601110,1.497,2.001,0,12.111084,8,4.5 +18817,0,0.222012,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,11.432,11.654,0,5.328293,5,5 +19054,0,0.24983,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,10.805,11.055,0,5.995915,5,5 +23572,-1,0.280604,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,1.064,1.345,0,6.734507,6,4.5 +27442,0,0.500471,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.011307,0.15,4 +32951,0,0.247608,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.942589,0.15,4 +33037,0,0.494671,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.872104,0.15,4 +16387,0,0.241496,1,1,0,2,5,,3,1,Asbury,Park,1601110,1.255,1.497,0,5.7959,8,4.5 +23573,-1,0.220095,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,0.844,1.064,0,5.282274,6,4.5 +33045,0,0.247305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.935331,0.15,4 +33047,0,0.244871,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.876912,0.15,4 +16395,0,0.014017,1,1,0,2,5,,3,1,Asbury,Park,1601110,1.241,1.255,0,0.336419,8,4.5 +16376,0,0.124779,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.001,2.126,0,2.994705,8,4.5 +30516,0,0.132164,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.171945,0.15,4 +13566,1,0.215308,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,1.456,1.672,0,5.167382,6,4.5 +18493,0,0.24064,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,10.565,10.805,0,5.77537,5,5 +23571,-1,0.215256,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,1.345,1.56,0,5.166133,6,4.5 +33039,0,0.248346,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.960312,0.15,4 +33041,0,0.247387,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.93729,0.15,4 +33861,0,0.261355,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.272528,0.15,4 +17506,0,0.014088,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,10.551,10.565,0,0.338117,5,5 +18358,0,0.275158,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,11.654,11.929,0,6.60379,5,5 +19198,0,0.24757,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,11.307,11.555,0,5.941691,5,5 +17486,0,0.25197,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,11.055,11.307,0,6.047286,5,5 +291,-1,0.056501,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.427,5.483,0,1.356022,5,5 +2235,1,0.251303,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,0.221,0.473,0,6.031272,5,5 +3292,1,0.381757,2,0,0,2,5,,3,3,Southfield,Rd,665901,0.544,0.926,0,9.162175,8,4.5 +3651,0,0.344322,1,1,0,2,5,,3,3,Mount Vernon,St,688107,0.553,0.897,0,8.263719,8,4.5 +3666,1,0.094729,2,0,0,2,5,,3,3,Southfield,Rd,686303,0.397,0.491,0,2.273505,8,4.5 +3735,0,0.313288,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.049,5.362,0,7.518911,6,4.5 +4048,-1,0.814568,0,3,0,1,2,,3,3,N M 10,,710102,9.064,9.878,0,,0.58,7 +4394,1,0.678402,3,0,0,1,2,,3,3,N M 39,,710703,0.341,1.019,0,,0.58,7 +4735,1,0.280268,3,0,0,1,2,,3,3,S M 10,,710010,9.203,9.483,0,,0.58,7 +4746,1,0.169947,4,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.631,0.801,0,4.078726,8,4.5 +4762,1,0.134378,4,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.362,0.496,0,3.225078,8,4.5 +4817,1,0.140708,1,0,0,1,2,ROF,3,3,S M 10/M 102,RAMP,710603,0,0.141,0,,2.24,5 +4832,1,0.438363,3,0,0,1,2,,3,3,S M 10,,710010,9.483,9.921,0,,0.58,7 +4833,-1,0.478852,0,3,0,1,2,,3,3,S M 39,,710003,0.218,0.696,0,,0.58,7 +13598,0,0.485239,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,0.448,0.934,0,11.645731,8,4.5 +19704,1,0.151768,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.342,5.493,0,3.642425,5,5 +22040,-1,0.230912,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.895,1.126,0,5.541889,8,4.5 +22047,-1,0.184903,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.469,0.654,0,4.43766,8,4.5 +26217,0,0.51685,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.404394,0.15,4 +27423,0,0.500521,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.012501,0.15,4 +27425,0,0.51442,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.346087,0.15,4 +27444,0,0.20837,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.000873,0.15,4 +27452,0,0.243745,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.849876,0.15,4 +27454,0,0.393606,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.446551,0.15,4 +29699,0,0.422996,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.151901,0.15,4 +29704,0,0.308115,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.394759,0.15,4 +29705,0,0.31156,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.477439,0.15,4 +32353,0,0.489433,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.746384,0.15,4 +33052,0,0.517293,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.415043,0.15,4 +1670,-1,0.360789,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,4.825,5.186,0,8.658936,5,5 +12219,-1,0.101895,0,3,0,2,5,,3,1,Southfield Service Drive,,1582601,5.352,5.453,0,2.445491,8,4.5 +15011,1,0.080042,2,0,0,1,3,RSF,3,1,Circle,Dr,1592003,0.211,0.291,0,,5,5 +15085,1,0.040946,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,5.333,5.374,0,0.982704,8,4.5 +15159,1,0.328024,3,0,0,1,2,,3,1,N M 39,,1592408,15.081,15.409,0,,0.58,7 +15520,-1,0.327003,0,3,0,1,2,,3,1,S M 39,,1592407,15.098,15.425,0,,0.58,7 +19710,1,0.407109,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,4.76,5.167,0,9.770608,5,5 +31384,0,0.524933,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.598396,0.15,4 +32352,0,0.245491,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.891791,0.15,4 +32354,0,0.497192,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.932603,0.15,4 +32356,0,0.284,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.816002,0.15,4 +12932,-1,0.119946,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.975,5.095,0,2.878708,8,4.5 +14880,1,0.120282,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,4.976,5.096,0,2.886777,8,4.5 +13599,0,0.028331,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,0.42,0.448,0,0.67995,8,4.5 +12661,-1,0.228271,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,5.095,5.323,0,5.478499,8,4.5 +14924,1,0.236785,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,5.096,5.333,0,5.682831,8,4.5 +15380,1,0.206509,1,0,0,1,2,ROF,3,1,N M 39/M 102,RAMP,1592001,0,0.206,0,,2.24,5 +15551,1,0.196617,1,0,0,1,2,RON,3,1,M 102/S M 39,RAMP,1594910,0,0.197,0,,1.09,4 +12499,-1,0.028802,0,3,0,2,5,,3,1,Southfield Service Drive,,1582601,5.323,5.352,0,0.691241,8,4.5 +755,-1,0.196531,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.23,5.427,0,4.716745,5,5 +3624,1,0.109118,1,0,0,1,2,ROF,3,3,S M 39/M 102,RAMP,688709,0,0.109,0,,2.24,5 +3668,1,0.214354,2,0,0,2,5,,3,3,Southfield,Rd,686303,0.024,0.238,0,5.1445,8,4.5 +4716,1,0.328965,3,0,0,1,2,,3,3,N M 39,,710703,0.012,0.341,0,,0.58,7 +4807,-1,0.205394,0,3,0,1,2,,3,3,S M 39,,710003,0.012,0.218,0,,0.58,7 +15311,1,0.121136,2,0,0,1,3,RSF,3,1,Circle,Dr,1592003,0.09,0.211,0,,5,5 +15492,1,0.17093,2,0,0,1,3,RSF,3,1,Circle,Dr,1592002,0,0.171,0,,5,5 +19706,1,0.111561,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.211,5.323,0,2.677461,5,5 +26088,0,0.172034,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.128807,0.15,4 +2988,1,0.086836,3,0,0,2,5,,3,3,Southfield,Rd,665901,0.926,1.013,0,2.084056,8,4.5 +1191,-1,0.044256,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.186,5.23,0,1.062146,5,5 +15771,1,0.042111,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,5.414,5.456,0,1.010676,8,4.5 +19707,1,0.044547,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.167,5.211,0,1.069131,5,5 +4398,1,0.012014,3,0,0,1,2,,3,1,N M 39,,710703,0,0.012,0,,0.58,7 +4863,-1,0.012218,0,3,0,1,2,,3,1,S M 39,,710003,0,0.012,0,,0.58,7 +21985,1,0.011872,2,0,0,2,5,,3,1,Southfield Service Drive,,4412721,0.011,0.023,0,0.284931,8,4.5 +22034,1,0.011392,2,0,0,2,5,,3,3,Southfield,Rd,4412721,0,0.011,0,0.273402,8,4.5 +15777,1,0.040341,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,5.374,5.414,0,0.968179,8,4.5 +3670,1,0.012017,3,0,0,2,5,,3,1,Southfield Service Drive,,686303,0,0.012,0,0.288409,8,4.5 +3669,1,0.011803,3,0,0,2,5,,3,3,Southfield,Rd,686303,0.012,0.024,0,0.283282,8,4.5 +3627,1,0.103907,1,0,0,1,2,RON,3,3,M 102/N M 39,RAMP,688708,0,0.104,0,,1.09,4 +3667,1,0.158502,2,0,0,2,5,,3,3,Southfield,Rd,686303,0.238,0.397,0,3.804036,8,4.5 +15366,1,0.068247,2,0,0,1,3,RSF,3,3,Circle,Dr,1592003,0,0.068,0,,5,5 +15354,1,0.02172,2,0,0,1,3,RSF,3,1,Circle,Dr,1592003,0.068,0.09,0,,5,5 +19705,1,0.018919,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.323,5.342,0,0.454068,5,5 +2989,0,0.421287,1,1,1,2,5,,3,3,Southfield,Rd,665901,0,0.421,0,10.110888,8,4.5 +3652,0,0.219291,1,1,0,2,5,,3,3,Mount Vernon,St,688107,0.334,0.553,0,5.262992,8,4.5 +3736,0,0.225558,2,2,1,2,4,,3,3,9 Mile,Rd,684404,4.823,5.049,0,5.413388,6,4.5 +4049,-1,0.357564,0,2,0,1,2,,3,3,N M 10,,710102,8.435,8.793,0,,0.58,7 +4415,1,0.258804,2,0,0,1,2,,3,3,S M 10,,710010,8.571,8.83,0,,0.58,7 +4477,1,0.355255,1,0,0,1,2,RFF,3,3,N M 10/N M 39,RAMP,710608,0,0.355,0,,0.58,7 +4492,1,0.361155,1,0,0,2,5,,3,3,Northwestern,Hwy,710508,3.274,3.635,0,8.667717,8,4.5 +4708,1,0.028058,2,0,0,1,2,,3,3,N M 39,,710703,1.019,1.047,0,,0.58,7 +4808,1,0.32084,1,0,0,1,2,RFS,3,3,N M 39/N M 10,RAMP,710610,0,0.321,0,,0.22,6 +4810,-1,0.30888,0,3,0,1,2,,3,3,S M 39,,710003,0.978,1.287,0,,0.58,7 +4812,1,0.463576,1,0,0,1,2,RFF,3,3,S M 10/S M 39,RAMP,710607,0,0.464,0,,0.58,7 +20202,-1,0.574459,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,2.041,2.615,0,13.787018,8,4.5 +22049,-1,0.257427,0,1,0,2,5,,3,3,9 Mile/Southfield,Ramp,4412717,0,0.257,0,6.178255,8,4.5 +27394,0,0.19154,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.596949,0.15,4 +27397,0,0.486284,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.670816,0.15,4 +27453,0,0.549878,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.197072,0.15,4 +3737,0,0.119177,2,2,0,2,4,,3,3,9 Mile,Rd,684404,4.704,4.823,0,2.860255,6,4.5 +3653,0,0.208168,1,1,0,2,5,,3,3,Mount Vernon,St,688107,0.125,0.334,0,4.996025,8,4.5 +4491,1,0.077468,1,0,0,1,2,ROF,3,3,S M 10/9 Mile,RAMP,710510,0,0.077,0,,2.24,5 +4850,1,0.336927,3,0,0,1,2,,3,3,S M 10,,710010,8.234,8.571,0,,0.58,7 +27395,0,0.210678,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.056277,0.15,4 +3654,0,0.078102,1,1,0,2,5,,3,3,Mount Vernon,St,688107,0.047,0.125,0,1.874445,8,4.5 +3658,1,0.135697,2,0,0,2,5,,3,3,Winora,,687608,0,0.136,0,3.256735,8,4.5 +3664,1,0.113361,1,0,0,1,2,ROF,3,3,S M 39/S M 10 Service Drive,RAMP,686307,0,0.113,0,,2.24,5 +3676,1,0.193442,1,0,0,1,2,RON,3,3,N M 10 Service Drive/N M 10,RAMP,686104,0,0.193,0,,1.09,4 +4480,1,0.217877,1,0,0,1,2,RFF,3,3,S M 39/S M 10,RAMP,710605,0.235,0.453,0,,0.58,7 +4624,1,0.373111,2,0,0,1,2,,3,3,S M 10,,710010,8.83,9.203,0,,0.58,7 +4798,1,0.276339,1,0,0,1,2,ROF,3,3,S M 10/S M 10 Service Drive,RAMP,710005,0,0.276,0,,2.24,5 +4815,1,0.234942,2,0,0,1,2,RFF,3,3,S M 39/S M 10,RAMP,710605,0,0.235,0,,0.58,7 +4818,-1,0.282069,0,2,0,1,2,,3,3,S M 39,,710003,0.696,0.978,0,,0.58,7 +5061,-1,0.271166,0,2,0,1,2,,3,3,N M 10,,710102,8.793,9.064,0,,0.58,7 +22048,-1,0.211773,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.257,0.469,0,5.082543,8,4.5 +2731,0,0.122954,1,1,1,2,5,,3,3,Southfield,Rd,665901,0.421,0.544,0,2.950894,8,4.5 +3665,1,0.154852,2,0,0,2,5,,3,3,Southfield,Rd,686303,0.491,0.646,0,3.716458,8,4.5 +20841,0,0.046039,1,1,0,2,5,,3,3,Southfield,Rd,4401144,0,0.046,0,1.104926,8,4.5 +3657,1,0.095342,2,0,0,2,5,,3,3,Winora,,687608,0.136,0.231,0,2.288212,8,4.5 +4776,1,0.085827,4,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.276,0.362,0,2.059858,8,4.5 +861,0,0.119577,3,3,1,2,3,,3,3,Southfield,Rd,611304,4.625,4.744,0,2.869857,5,5 +4381,1,0.216287,3,0,0,1,2,,3,3,N M 39,,710703,1.047,1.263,0,,0.58,7 +4706,1,0.021873,3,0,0,1,2,,3,3,N M 39,,710703,1.263,1.285,0,,0.58,7 +826,0,0.124912,3,3,1,2,3,,3,3,Southfield,Rd,611304,4.5,4.625,0,2.99788,5,5 +1610,-1,0.725239,0,3,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.717,6.442,0,17.405743,5,5 +3638,1,0.281073,2,0,0,2,7,DIV,3,3,Northland,Dr,688308,0.057,0.338,0,6.745756,7,4.5 +4484,1,0.164616,1,0,0,1,2,RON,3,3,Northland Mall/S M 10,RAMP,710604,0,0.165,0,,1.09,4 +4673,1,0.135957,3,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.934,1.07,0,3.262959,8,4.5 +13597,0,0.495692,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,0.934,1.429,0,11.89661,8,4.5 +13602,-1,0.028987,0,1,0,1,3,RSF,3,1,Greenlodge,St,1584410,0,0.029,0,,5,5 +13608,1,0.198407,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0,0.198,0,4.76176,5,5 +14602,-1,0.034969,0,3,0,2,5,,3,1,James Couzens,Fwy,1590805,0.163,0.198,0,0.839254,8,4.5 +14625,1,0.096472,3,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.117,0.213,0,2.315337,8,4.5 +16352,0,0.249368,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.619,2.869,0,5.984833,8,4.5 +17788,0,0.067616,2,2,1,2,3,,3,1,Greenfield,Rd,1651002,12.156,12.223,0,1.622788,5,5 +19529,-1,0.222227,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0,0.222,0,5.333457,5,5 +19696,1,0.681426,3,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.732,6.413,0,16.354234,5,5 +19905,-1,0.268413,0,2,0,2,7,DIV,3,3,Northland,Dr,4406956,0.056,0.324,0,6.441907,7,4.5 +21372,1,0.274256,1,0,0,1,2,ROF,3,3,N M 10/N M 10 Service Drive,RAMP,4700041,0.061,0.335,0,,2.24,5 +22038,-1,0.113333,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,1.227,1.34,0,2.72,8,4.5 +27443,0,0.19582,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.699675,0.15,4 +33038,0,0.511047,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.265122,0.15,4 +33048,0,0.150965,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.623158,0.15,4 +16371,0,0.125657,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.494,2.619,0,3.015761,8,4.5 +16374,0,0.122844,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.371,2.494,0,2.948252,8,4.5 +30515,0,0.141965,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.407151,0.15,4 +2113,-1,0.041589,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.676,5.717,0,0.998138,5,5 +19701,1,0.036164,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.639,5.675,0,0.867936,5,5 +27445,0,0.092835,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.228037,0.15,4 +27446,0,0.10761,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.582636,0.15,4 +1852,-1,0.16966,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.483,5.653,0,4.071851,5,5 +3639,1,0.027117,2,0,0,2,7,DIV,3,3,Northland,Dr,688308,0.03,0.057,0,0.650799,7,4.5 +19702,1,0.145121,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.493,5.639,0,3.482906,5,5 +20254,-1,0.055641,0,2,0,2,7,DIV,3,3,Northland,Dr,4406956,0,0.056,0,1.335386,7,4.5 +583,-1,0.023224,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.653,5.676,0,0.557369,5,5 +3641,1,0.013835,2,0,0,2,7,,3,1,Northland,Dr,688308,0,0.014,0,0.332033,7,4.5 +3640,1,0.016044,2,0,0,2,7,,3,3,Northland,Dr,688308,0.014,0.03,0,0.385044,7,4.5 +16351,0,0.108608,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.869,2.977,0,2.606597,8,4.5 +19697,1,0.057495,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.675,5.732,0,1.379886,5,5 +4679,1,0.132864,3,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.801,0.934,0,3.188729,8,4.5 +22039,-1,0.101105,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,1.126,1.227,0,2.426525,8,4.5 +22136,1,0.12674,1,0,0,1,2,ROF,3,3,N M 10/N M 10 Service Drive,RAMP,4700041,0.335,0.461,0,,2.24,5 +21382,1,0.02743,1,0,0,1,2,ROF,3,3,N M 10/N M 10 Service Drive,RAMP,4462958,0,0.027,0,,2.24,5 +19197,0,0.125692,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,11.804,11.93,0,3.016599,5,5 +14601,-1,0.094375,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.198,0.292,0,2.264993,8,4.5 +14623,1,0.05796,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.274,0.332,0,1.391032,8,4.5 +19196,0,0.144409,2,2,1,2,3,,3,1,Greenfield,Rd,1651002,11.969,12.114,0,3.465824,5,5 +18748,0,0.039364,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,11.93,11.969,0,0.944731,5,5 +14624,1,0.060315,3,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.213,0.274,0,1.447563,8,4.5 +18746,0,0.042244,2,2,1,2,3,,3,1,Greenfield,Rd,1651002,12.114,12.156,0,1.013861,5,5 +40212,0,0.012269,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.949,5.961,0,0.29446,6,4.5 +3636,1,0.234655,2,0,0,2,7,DIV,3,3,Northland,Dr,688308,0.379,0.613,0,5.631724,7,4.5 +13604,1,0.102517,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0.337,0.439,0,2.460403,5,5 +14604,-1,0.056063,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.029,0.085,0,1.345518,8,4.5 +19525,-1,0.068242,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.355,0.423,0,1.637811,5,5 +19530,1,0.111118,1,0,0,1,3,,3,3,W M 102/N M 10,RAMP,1879310,0,0.111,0,,5,5 +20491,-1,0.241309,0,2,0,2,7,DIV,3,3,Northland,Dr,4406956,0.364,0.605,0,5.791405,7,4.5 +20727,-1,0.040272,0,2,0,2,7,DIV,3,3,Northland,Dr,4406956,0.324,0.364,0,0.966526,7,4.5 +22037,-1,0.018032,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,1.34,1.358,0,0.432773,8,4.5 +22055,1,0.039683,2,0,0,1,3,RSF,3,1,Motor,Dr,4700040,0,0.04,0,,5,5 +4602,1,0.160029,1,0,0,1,2,RON,3,3,W M 102/N M 10,RAMP,710006,0,0.16,0,,1.09,4 +4984,1,0.129331,3,0,0,1,2,,3,3,S M 10,,710010,9.921,10.05,0,,0.58,7 +5060,-1,0.130534,0,3,0,1,2,,3,3,N M 10,,710102,9.878,10.009,0,,0.58,7 +12082,1,0.014505,3,0,0,1,2,,3,3,S M 10,,1577509,0,0.014,0,,0.58,7 +13350,-1,0.015401,0,3,0,1,2,,3,3,N M 10,,1577510,0,0.015,0,,0.58,7 +13606,1,0.043221,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0.227,0.271,0,1.037294,5,5 +14584,1,0.149231,2,0,0,1,3,RSF,3,1,Motor,Dr,1590809,0,0.149,0,,5,5 +14606,-1,0.014052,0,2,0,2,5,,3,3,Northwestern,Hwy,1590805,0,0.014,0,0.337257,8,4.5 +14629,1,0.013195,2,0,0,2,5,,3,3,Northwestern,Hwy,1590804,0,0.013,0,0.316682,8,4.5 +19526,-1,0.067611,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.287,0.355,0,1.622652,5,5 +21656,1,0.030429,2,0,0,1,3,RSF,3,3,Motor,Dr,4700040,0.164,0.194,0,,5,5 +21993,1,0.106445,2,0,0,1,3,RSF,3,1,Motor,Dr,4700040,0.04,0.146,0,,5,5 +22036,-1,0.115762,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,1.358,1.474,0,2.778299,8,4.5 +13607,1,0.029073,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0.198,0.227,0,0.697751,5,5 +21786,1,0.017464,2,0,0,1,3,RSF,3,1,Motor,Dr,4700040,0.146,0.164,0,,5,5 +3637,1,0.040533,2,0,0,2,7,DIV,3,3,Northland,Dr,688308,0.338,0.379,0,0.972796,7,4.5 +4666,1,0.11218,3,0,0,2,5,,3,3,Northwestern,Hwy,710005,1.084,1.196,0,2.692317,8,4.5 +19528,-1,0.046961,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.222,0.269,0,1.127062,5,5 +4671,1,0.014709,3,0,0,2,5,,3,3,Northwestern,Hwy,710005,1.07,1.084,0,0.353007,8,4.5 +4790,1,0.020105,3,0,0,2,5,,3,3,Northwestern,Hwy,710005,1.196,1.217,0,0.482509,8,4.5 +19522,-1,0.019955,0,1,0,1,3,,3,3,S M 10/w M 102,,1879404,0,0.02,0,,5,5 +19527,-1,0.01795,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.269,0.287,0,0.430798,5,5 +13348,-1,0.070068,0,3,0,1,2,,3,1,N M 10,,1577510,0.015,0.086,0,,0.58,7 +13605,1,0.066078,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0.271,0.337,0,1.585864,5,5 +14626,1,0.017994,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.099,0.117,0,0.431853,8,4.5 +14627,1,0.069312,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.03,0.099,0,1.663489,8,4.5 +14628,1,0.01636,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.013,0.03,0,0.392633,8,4.5 +14605,-1,0.014713,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.014,0.029,0,0.353103,8,4.5 +21590,1,0.060497,1,0,0,1,2,ROF,3,1,N M 10/W M 102,RAMP,4700041,0,0.061,0,,2.24,5 +22035,-1,0.050986,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,1.474,1.525,0,1.223673,8,4.5 +2240,0,0.003526,3,3,0,2,3,,3,1,Greenfield,Rd,648307,0,0.004,0,0.084626,5,5 +14603,-1,0.078256,0,3,0,2,5,,3,1,James Couzens,Fwy,1590805,0.085,0.163,0,1.878139,8,4.5 +19195,0,0.064922,3,3,1,2,3,,3,1,Greenfield,Rd,1651002,12.223,12.288,0,1.558137,5,5 +13601,-1,0.04953,0,1,0,1,3,RSF,3,1,Greenlodge,St,1584410,0.029,0.078,0,,5,5 +17773,0,0.010507,3,3,0,2,3,,3,1,Greenfield,Rd,1651002,12.288,12.299,0,0.252161,5,5 +19524,-1,0.04853,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.423,0.471,0,1.164713,5,5 +34178,1,0.253891,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,3.616,3.87,0,6.093382,6,4.5 +2239,0,0.012201,3,3,0,2,3,,3,3,Greenfield,Rd,648307,0.004,0.016,0,0.292835,5,5 +2236,1,0.205622,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,0.016,0.221,0,4.934927,5,5 +2231,1,0.187392,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,0.819,1.006,0,4.4974,5,5 +3628,1,0.278763,2,0,0,2,7,DIV,3,3,J L Hudson,Dr,688602,0.376,0.655,0,6.690315,7,4.5 +3643,-1,0.211418,0,2,0,2,7,DIV,3,3,Providence,Dr,688208,0.08,0.291,0,5.074032,7,4.5 +3649,0,0.495859,1,1,0,2,5,,3,3,Mount Vernon,St,688107,1.048,1.544,0,11.900611,8,4.5 +3732,0,0.204091,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.668,5.872,0,4.89819,6,4.5 +3734,0,0.292314,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.362,5.654,0,7.01554,6,4.5 +20441,-1,0.277881,0,2,0,2,7,DIV,3,3,J L Hudson,Dr,4406951,0.359,0.637,0,6.669144,7,4.5 +21126,1,0.274224,2,0,0,2,7,DIV,3,3,Providence,Dr,4409226,0.016,0.29,0,6.581384,7,4.5 +26215,0,0.491839,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.804124,0.15,4 +27457,0,0.160391,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.849385,0.15,4 +29702,0,0.164162,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.939887,0.15,4 +29703,0,0.168487,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.043685,0.15,4 +3633,1,0.330883,2,0,0,2,7,DIV,3,3,J L Hudson,Dr,688602,0.034,0.365,0,7.941202,7,4.5 +3646,-1,0.016546,0,2,0,2,7,DIV,3,3,Providence,Dr,688208,0,0.017,0,0.397104,7,4.5 +3647,1,0.183932,2,0,0,2,7,DIV,3,3,North Park,Dr,688206,0.212,0.396,0,4.414359,7,4.5 +3648,1,0.211934,2,0,0,2,7,DIV,3,3,North Park,Dr,688206,0,0.212,0,5.086416,7,4.5 +20894,-1,0.345883,0,2,0,2,7,DIV,3,3,J L Hudson,Dr,4406951,0,0.346,0,8.301194,7,4.5 +21127,1,0.015744,2,0,0,2,7,DIV,3,3,Providence,Dr,4409226,0,0.016,0,0.377853,7,4.5 +21128,-1,0.191402,0,2,0,2,7,DIV,3,3,North Park,Dr,4409126,0.242,0.433,0,4.593652,7,4.5 +21129,-1,0.210172,0,2,0,2,7,DIV,3,3,North Park,Dr,4409126,0.032,0.242,0,5.044123,7,4.5 +27450,0,0.163533,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.924795,0.15,4 +3992,1,0.134546,4,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.496,0.631,0,3.229101,8,4.5 +21130,-1,0.031466,0,2,0,2,7,,3,3,North Park,Dr,4409126,0,0.032,0,0.755173,7,4.5 +22042,-1,0.08739,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.774,0.861,0,2.097367,8,4.5 +22043,-1,0.015387,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.759,0.774,0,0.369292,8,4.5 +22046,-1,0.104836,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.654,0.759,0,2.516064,8,4.5 +3634,0,0.033695,1,1,0,2,7,,3,3,J L Hudson,Dr,688602,0,0.034,0,0.808687,7,4.5 +22041,-1,0.033789,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.861,0.895,0,0.810926,8,4.5 +27449,0,0.198262,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.758296,0.15,4 +29700,0,0.106868,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.564823,0.15,4 +29701,0,0.116641,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.799388,0.15,4 +3629,1,0.01167,2,0,0,2,7,DIV,3,3,J L Hudson,Dr,688602,0.365,0.376,0,0.280088,7,4.5 +3644,-1,0.010791,0,2,0,2,7,DIV,3,3,Providence,Dr,688208,0.069,0.08,0,0.258991,7,4.5 +3645,-1,0.052331,0,2,0,2,7,DIV,3,3,Providence,Dr,688208,0.017,0.069,0,1.255932,7,4.5 +20659,-1,0.013392,0,2,0,2,7,DIV,3,3,J L Hudson,Dr,4406951,0.346,0.359,0,0.321409,7,4.5 +27455,0,0.295761,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.098274,0.15,4 +27456,0,0.316658,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.599789,0.15,4 +3650,0,0.151487,1,1,0,2,5,,3,3,Mount Vernon,St,688107,0.897,1.048,0,3.635694,8,4.5 +3733,0,0.01391,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.654,5.668,0,0.333843,6,4.5 +2234,1,0.254394,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,0.473,0.727,0,6.105444,5,5 +27459,0,0.15995,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.838812,0.15,4 +2232,1,0.09165,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,0.727,0.819,0,2.199608,5,5 +40213,1,0.0219,2,0,0,2,7,DIV,3,3,J L Hudson,Dr,688602,0.655,0.677,0,0.525598,7,4.5 +2229,0,0.076224,3,3,1,2,3,,3,3,Greenfield,Rd,648307,1.219,1.295,0,1.829372,5,5 +3731,0,0.076918,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.872,5.949,0,1.846037,6,4.5 +2230,1,0.213026,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,1.006,1.219,0,5.112613,5,5 +2228,0,0.210606,3,3,1,2,3,,3,3,Greenfield,Rd,648307,1.295,1.506,0,5.054538,5,5 +12071,1,1.448691,3,0,0,1,2,,3,1,S M 10,,1577509,1.495,2.944,0,,0.58,7 +12224,0,0.50667,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.999,4.506,0,12.160071,6,4.5 +12426,0,0.124337,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.009,2.133,0,2.984077,6,4.5 +12896,0,0.501046,2,2,0,2,4,,3,1,Fenkell,St,1579605,6.453,6.954,0,12.025101,6,4.5 +13344,-1,1.469516,0,3,0,1,2,,3,1,N M 10,,1577510,1.535,3.004,0,,0.58,7 +13562,1,0.12155,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,2.547,2.668,0,2.91719,6,4.5 +13587,1,0.182709,2,0,0,2,4,DV2,3,1,Vassar,Ave,1584503,0.335,0.518,0,4.385024,6,4.5 +14590,-1,0.365522,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,2.156,2.521,0,8.772531,8,4.5 +14594,-1,0.475625,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,1.314,1.79,0,11.415006,8,4.5 +14612,1,0.348096,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,2.195,2.543,0,8.354314,8,4.5 +14615,1,0.516229,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.348,1.864,0,12.389507,8,4.5 +17650,0,0.322515,2,2,0,2,3,,3,1,McNichols,Rd,1680701,18.669,18.991,0,7.740355,5,5 +18147,0,0.313848,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,12.606,12.92,0,7.53234,5,5 +22918,0,0.127216,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,9.796,9.923,0,3.053179,5,5 +23542,-1,0.253424,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.242,2.496,0,6.082175,6,4.5 +23757,0,0.499977,1,1,0,2,4,,3,1,Puritan,St,4707953,2.023,2.523,0,11.999442,6,4.5 +32791,0,0.188001,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.512031,0.15,4 +32792,0,0.133083,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.193984,0.15,4 +32794,0,0.145445,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.49067,0.15,4 +32796,0,0.106067,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.545608,0.15,4 +32945,0,0.501047,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.02512,0.15,4 +33028,0,0.289099,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.938378,0.15,4 +33860,0,0.122364,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.936747,0.15,4 +33875,0,0.263232,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.317573,0.15,4 +12850,0,0.168369,1,1,0,2,4,,3,1,Hubbell,St,1583004,1.498,1.666,0,4.040863,6,4.5 +18263,0,0.190585,2,2,0,2,3,,3,1,McNichols,Rd,1680701,18.302,18.493,0,4.574034,5,5 +23758,0,0.190299,1,1,0,2,4,,3,1,Puritan,St,4707953,1.833,2.023,0,4.567175,6,4.5 +32946,0,0.138106,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.314532,0.15,4 +33017,0,0.259409,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.225814,0.15,4 +33018,0,0.159879,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.837091,0.15,4 +32947,0,0.254756,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.114141,0.15,4 +33016,0,0.258667,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.208007,0.15,4 +32793,0,0.1201,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.882398,0.15,4 +13020,0,0.249443,1,1,0,2,4,,3,1,Hubbell,St,1583004,1.248,1.498,0,5.986635,6,4.5 +13330,0,0.250334,1,1,0,2,4,,3,1,Hubbell,St,1583004,0.998,1.248,0,6.008012,6,4.5 +12575,0,0.343011,1,1,0,2,4,,3,1,Hubbell,St,1583004,1.666,2.009,0,8.232262,6,4.5 +17881,0,0.176178,2,2,0,2,3,,3,1,McNichols,Rd,1680701,18.493,18.669,0,4.228282,5,5 +13021,0,0.365675,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.379,2.744,0,8.776195,6,4.5 +13564,1,0.253471,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,1.92,2.174,0,6.083306,6,4.5 +13589,1,0.060477,2,0,0,2,4,DV2,3,1,Vassar,Ave,1584503,0.029,0.09,0,1.451448,6,4.5 +14597,-1,0.208741,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.995,1.203,0,5.009785,8,4.5 +14618,1,0.209739,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.069,1.279,0,5.033736,8,4.5 +18943,0,0.129759,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,12.438,12.568,0,3.114223,5,5 +23546,-1,0.253673,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,1.809,2.062,0,6.088146,6,4.5 +23775,1,0.055277,1,0,0,2,4,,3,1,Vassar/Couzens Cutoff,,4707898,0,0.055,0,1.326638,6,4.5 +12764,0,0.249217,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.744,2.994,0,5.981207,6,4.5 +17543,0,0.319489,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,12.119,12.438,0,7.667726,5,5 +33027,0,0.359555,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.629311,0.15,4 +33026,0,0.077103,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.850479,0.15,4 +12576,0,0.191376,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.994,3.185,0,4.593013,6,4.5 +14619,1,0.047511,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.022,1.069,0,1.140257,8,4.5 +13590,0,0.02938,2,2,0,2,4,,3,1,Vassar,Ave,1584503,0,0.029,0,0.705117,6,4.5 +14598,-1,0.011455,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.983,0.995,0,0.274927,8,4.5 +13563,1,0.37348,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,2.174,2.547,0,8.963532,6,4.5 +13239,0,0.115566,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.263,2.379,0,2.773581,6,4.5 +23545,-1,0.118383,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.062,2.181,0,2.841187,6,4.5 +33029,0,0.180527,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.332644,0.15,4 +33030,0,0.026836,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.644065,0.15,4 +33031,0,0.036248,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.869959,0.15,4 +12121,0,0.116049,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.133,2.249,0,2.785174,6,4.5 +11964,0,0.013944,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.249,2.263,0,0.334659,6,4.5 +23543,-1,0.061635,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.181,2.242,0,1.479232,6,4.5 +32795,0,0.102247,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.453919,0.15,4 +12075,1,0.421308,3,0,0,1,2,,3,1,S M 10,,1577509,1.074,1.495,0,,0.58,7 +13345,-1,0.460991,0,3,0,1,2,,3,1,N M 10,,1577510,1.074,1.535,0,,0.58,7 +13407,1,0.198849,1,0,0,1,2,ROF,3,1,N M 10/7 Mile,RAMP,1585107,0,0.199,0,,2.24,5 +13574,1,0.160215,1,0,0,1,2,RON,3,1,7 Mile/S M 10,RAMP,1584505,0,0.16,0,,1.09,4 +13588,1,0.245049,2,0,0,2,4,DV2,3,1,Vassar,Ave,1584503,0.09,0.335,0,5.881182,6,4.5 +14616,1,0.047267,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.301,1.348,0,1.134396,8,4.5 +13408,1,0.151286,1,0,0,1,2,RON,3,1,7 Mile/N M 10,RAMP,1585106,0,0.151,0,,1.09,4 +13575,1,0.193377,1,0,0,1,2,ROF,3,1,S M 10/7 Mile,RAMP,1584504,0,0.193,0,,2.24,5 +14596,-1,0.078509,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,1.203,1.282,0,1.884213,8,4.5 +18468,0,0.038378,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,12.568,12.606,0,0.921082,5,5 +14617,1,0.021854,4,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.279,1.301,0,0.524501,8,4.5 +14595,-1,0.032332,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,1.282,1.314,0,0.775969,8,4.5 +12387,0,0.112872,2,2,0,2,4,,3,1,Fenkell,St,1579605,7.231,7.344,0,2.70893,6,4.5 +13163,0,0.168243,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.507,3.675,0,4.037829,6,4.5 +14609,1,0.347788,4,0,0,2,5,,3,1,James Couzens,Fwy,1590804,2.801,3.149,0,8.346918,8,4.5 +18963,0,0.091704,2,2,0,2,3,,3,1,McNichols,Rd,1680701,19.275,19.367,0,2.200896,5,5 +23298,0,0.168445,1,1,1,2,3,,3,1,Schaefer,Hwy,4706528,9.297,9.465,0,4.042686,5,5 +23755,0,0.060476,1,1,0,2,4,,3,1,Puritan,St,4707953,2.798,2.858,0,1.45143,6,4.5 +33056,0,0.385625,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.254989,0.15,4 +33058,0,0.377834,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.068017,0.15,4 +33062,0,0.301594,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.238253,0.15,4 +33684,0,0.403746,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.689898,0.15,4 +33876,0,0.336005,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.064115,0.15,4 +12629,0,0.277685,2,2,0,2,4,,3,1,Fenkell,St,1579605,6.954,7.231,0,6.664432,6,4.5 +23478,0,0.251325,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,9.045,9.297,0,6.031805,5,5 +23756,0,0.275361,1,1,0,2,4,,3,1,Puritan,St,4707953,2.523,2.798,0,6.608665,6,4.5 +33057,0,0.111114,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.666734,0.15,4 +23705,0,0.251523,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,8.794,9.045,0,6.036564,5,5 +19157,0,0.284183,2,2,0,2,3,,3,1,McNichols,Rd,1680701,18.991,19.275,0,6.820392,5,5 +23044,0,0.330892,1,1,1,2,3,,3,1,Schaefer,Hwy,4706528,9.465,9.796,0,7.941401,5,5 +33042,0,0.310027,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.440657,0.15,4 +33064,0,0.124541,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.988978,0.15,4 +13333,0,0.25362,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.254,3.507,0,6.086891,6,4.5 +23753,0,0.109032,1,1,0,2,4,,3,1,Puritan,St,4707953,3.019,3.128,0,2.616759,6,4.5 +12184,0,0.107194,2,2,0,2,4,,3,1,Fenkell,St,1579605,7.344,7.451,0,2.572654,6,4.5 +12223,0,0.125086,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.003,3.128,0,3.002075,6,4.5 +12045,0,0.125851,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.128,3.254,0,3.020421,6,4.5 +23754,0,0.16041,1,1,0,2,4,,3,1,Puritan,St,4707953,2.858,3.019,0,3.849846,6,4.5 +23752,0,0.115118,1,1,0,2,4,,3,1,Puritan,St,4707953,3.128,3.243,0,2.762837,6,4.5 +12667,0,0.049183,1,1,1,2,4,,3,1,Meyers,Rd,1583210,3.812,3.861,0,1.180391,6,4.5 +13557,1,0.15568,1,0,0,1,2,RON,3,1,Meyers/S M 10,RAMP,1584507,0,0.156,0,,1.09,4 +14588,-1,0.101077,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,2.687,2.788,0,2.425848,8,4.5 +14611,1,0.224493,3,0,0,2,5,,3,1,James Couzens,Fwy,1590804,2.543,2.768,0,5.387834,8,4.5 +18078,0,0.221659,2,2,0,2,3,,3,1,McNichols,Rd,1680701,19.486,19.708,0,5.319811,5,5 +12853,0,0.136967,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.675,3.812,0,3.287216,6,4.5 +14610,1,0.033854,4,0,0,2,5,,3,1,James Couzens,Fwy,1590804,2.768,2.801,0,0.812502,8,4.5 +12429,0,0.137594,3,3,0,2,4,,3,1,Meyers,Rd,1583210,3.861,3.999,0,3.302258,6,4.5 +14589,-1,0.165719,0,3,0,2,5,,3,1,James Couzens,Fwy,1590805,2.521,2.687,0,3.977267,8,4.5 +18385,0,0.088229,3,3,0,2,3,,3,1,McNichols,Rd,1680701,19.398,19.486,0,2.117484,5,5 +18596,0,0.03084,1,1,0,2,3,,3,1,McNichols,Rd,1680701,19.367,19.398,0,0.740171,5,5 +13406,1,0.194594,1,0,0,1,2,ROF,3,1,N M 10/Meyers,RAMP,1585108,0,0.195,0,,2.24,5 +11967,0,0.500936,1,1,1,2,4,,3,1,Meyers,Rd,1583210,4.506,5.006,0,12.022453,6,4.5 +16743,0,0.123735,3,3,0,2,5,,3,1,Curtis,St,1620803,0.179,0.303,0,2.969636,8,4.5 +17636,0,0.062138,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,13.101,13.163,0,1.491307,5,5 +23211,0,0.155537,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,10.392,10.548,0,3.732897,5,5 +23536,-1,0.373637,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,3.11,3.483,0,8.967298,6,4.5 +32944,0,0.502998,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.071949,0.15,4 +33059,0,0.25214,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.051363,0.15,4 +33067,0,0.208502,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.004056,0.15,4 +13559,1,0.224804,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,2.891,3.116,0,5.395285,6,4.5 +13561,1,0.197196,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,2.668,2.866,0,4.732702,6,4.5 +14592,-1,0.227616,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,1.914,2.142,0,5.462795,8,4.5 +14614,1,0.317349,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.864,2.181,0,7.616371,8,4.5 +16659,0,0.103276,2,2,0,2,5,,3,1,Curtis,St,1620803,0,0.103,0,2.478613,8,4.5 +23538,-1,0.21104,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.771,2.982,0,5.064961,6,4.5 +23540,-1,0.189217,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.557,2.746,0,4.541211,6,4.5 +23635,0,0.299257,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,10.052,10.352,0,7.182175,5,5 +22551,0,0.01395,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,10.039,10.052,0,0.334803,5,5 +22703,0,0.115616,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,9.923,10.039,0,2.774794,5,5 +23541,-1,0.061334,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.496,2.557,0,1.47201,6,4.5 +14593,-1,0.12435,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,1.79,1.914,0,2.984394,8,4.5 +23479,0,0.040887,2,2,0,2,3,,3,1,Schaefer,Hwy,4706528,10.352,10.392,0,0.981279,5,5 +14613,1,0.014075,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,2.181,2.195,0,0.337805,8,4.5 +23539,-1,0.025285,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.746,2.771,0,0.606846,6,4.5 +13560,1,0.025283,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,2.866,2.891,0,0.606781,6,4.5 +14591,-1,0.013989,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,2.142,2.156,0,0.33574,8,4.5 +16411,0,0.062201,2,2,0,2,5,,3,1,Curtis,St,1620803,0.103,0.165,0,1.492814,8,4.5 +23537,-1,0.127359,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.982,3.11,0,3.056622,6,4.5 +33060,0,0.137274,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.294574,0.15,4 +33061,0,0.02269,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.544566,0.15,4 +16150,0,0.013965,3,3,0,2,5,,3,1,Curtis,St,1620803,0.165,0.179,0,0.335159,8,4.5 +17958,0,0.180975,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,12.92,13.101,0,4.343411,5,5 +23045,0,0.248112,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,10.548,10.796,0,5.954681,5,5 +22843,0,0.240479,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,10.796,11.036,0,5.771508,5,5 +16220,0,0.107478,1,1,0,2,5,,3,1,Curtis,St,1620803,0.42,0.527,0,2.579472,8,4.5 +16475,0,0.116671,3,3,0,2,5,,3,1,Curtis,St,1620803,0.303,0.42,0,2.800092,8,4.5 +17102,0,0.111465,1,1,0,2,5,,3,1,Curtis,St,1620803,0.527,0.639,0,2.675163,8,4.5 +33066,0,0.148778,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.57066,0.15,4 +32943,0,0.030768,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.738442,0.15,4 +17353,0,0.217589,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,13.422,13.639,0,5.222133,5,5 +37,0,0.236812,2,2,1,2,4,,3,3,9 Mile,Rd,607709,4.776,5.012,0,5.683478,6,4.5 +530,0,0.488364,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,0.021,0.509,0,11.720726,6,4.5 +952,-1,0.190864,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,6.998,7.188,0,4.580744,5,5 +3298,-1,0.504927,0,2,0,2,5,DV2,3,3,Oak Park,Blvd,665504,0.489,0.994,0,12.118259,8,4.5 +13591,0,0.367461,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,2.055,2.423,0,8.819075,8,4.5 +19692,1,0.372393,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,6.797,7.17,0,8.937422,5,5 +21124,1,0.505034,2,0,0,2,5,DV2,3,3,Oak Park,Blvd,4409248,0.489,0.994,0,12.12081,8,4.5 +23462,-1,0.183055,0,2,0,2,4,DV2,3,1,Vassar,Ave,4704573,0.306,0.489,0,4.393317,6,4.5 +27432,0,0.54426,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.062238,0.15,4 +29492,0,0.308518,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.404434,0.15,4 +29660,0,0.675955,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,16.22291,0.15,4 +1412,-1,0.30438,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,6.693,6.998,0,7.305114,5,5 +13592,0,0.123746,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,1.932,2.055,0,2.969916,8,4.5 +16339,0,0.324171,1,1,0,2,5,,3,1,Hubbell,St,1601208,0.415,0.739,0,7.780104,8,4.5 +19693,1,0.125036,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,6.672,6.797,0,3.000861,5,5 +33022,0,0.392983,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.431582,0.15,4 +33023,0,0.115352,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.768448,0.15,4 +33687,0,0.46262,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.102878,0.15,4 +13593,0,0.183581,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,1.748,1.932,0,4.405944,8,4.5 +14621,1,0.15741,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.693,0.85,0,3.77783,8,4.5 +16343,0,0.162403,1,1,0,2,5,,3,1,Hubbell,St,1601208,0.253,0.415,0,3.897681,8,4.5 +33032,0,0.179285,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.302839,0.15,4 +13595,0,0.095613,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,1.62,1.716,0,2.294717,8,4.5 +33033,0,0.214375,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.145004,0.15,4 +13594,0,0.032649,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,1.716,1.748,0,0.783573,8,4.5 +690,-1,0.245164,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,6.442,6.688,0,5.883937,5,5 +19694,1,0.259184,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,6.413,6.672,0,6.220411,5,5 +27433,0,0.247324,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.935786,0.15,4 +27619,0,0.26774,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.425749,0.15,4 +1934,-1,0.00578,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,6.688,6.693,0,0.138726,5,5 +2636,0,0.010943,1,1,0,2,5,,3,1,Hubbell,,666306,0,0.011,0,0.262641,8,4.5 +3160,0,0.011884,1,1,0,2,5,,3,3,Hubbell,,666306,0.011,0.023,0,0.285206,8,4.5 +33025,0,0.09691,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.325839,0.15,4 +33873,0,0.396972,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.527328,0.15,4 +36,0,0.494992,2,2,1,2,4,,3,3,9 Mile,Rd,607709,5.012,5.507,0,11.879801,6,4.5 +1099,0,0.250855,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,0.758,1.009,0,6.020511,6,4.5 +2734,-1,0.489533,0,2,0,2,5,DV2,3,3,Oak Park,Blvd,665504,0,0.489,0,11.748801,8,4.5 +21125,1,0.489446,2,0,0,2,5,DV2,3,3,Oak Park,Blvd,4409248,0,0.489,0,11.746716,8,4.5 +27435,0,0.248876,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.973036,0.15,4 +27436,0,0.499143,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.979436,0.15,4 +27447,0,0.511997,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.287918,0.15,4 +27438,0,0.186062,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.465489,0.15,4 +27440,0,0.231086,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.546063,0.15,4 +3083,0,0.08191,2,2,0,2,5,,3,3,Church,Rd,664908,0.104,0.186,0,1.965837,8,4.5 +1577,0,0.098135,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,0.66,0.758,0,2.355232,6,4.5 +2077,0,0.150603,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,0.509,0.66,0,3.614484,6,4.5 +1578,0,0.23797,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,1.186,1.424,0,5.711273,6,4.5 +650,0,0.177105,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,1.009,1.186,0,4.250513,6,4.5 +1100,0,0.007525,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,1.424,1.431,0,0.180602,6,4.5 +490,-1,0.390902,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,7.188,7.579,0,9.381656,5,5 +12579,0,0.481071,2,2,0,2,4,,3,1,Meyers,Rd,1583210,5.502,5.983,0,11.545692,6,4.5 +13583,1,0.212697,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,0.805,1.017,0,5.104728,6,4.5 +19690,1,0.280155,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,7.388,7.668,0,6.723716,5,5 +23452,-1,0.229306,0,2,0,2,4,DV2,3,1,Outer,Dr,4704573,0.76,0.989,0,5.503354,6,4.5 +23476,0,0.322994,1,1,1,2,3,,3,1,Schaefer,Hwy,4706528,11.447,11.77,0,7.751862,5,5 +29493,0,0.411126,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.867031,0.15,4 +32956,0,0.522952,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.550858,0.15,4 +33019,0,0.249253,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.982074,0.15,4 +33024,0,0.483957,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.614964,0.15,4 +33690,0,0.487867,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.708797,0.15,4 +33691,0,0.508426,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.202219,0.15,4 +23453,-1,0.270445,0,2,0,2,4,DV2,3,1,Vassar,Ave,4704573,0.489,0.76,0,6.490673,6,4.5 +23636,0,0.151353,1,1,1,2,3,,3,1,Schaefer,Hwy,4706528,11.296,11.447,0,3.632483,5,5 +33874,0,0.296688,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.120508,0.15,4 +22491,0,0.245953,1,1,1,2,3,,3,1,Schaefer,Hwy,4706528,11.05,11.296,0,5.902884,5,5 +13584,1,0.038774,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,0.766,0.805,0,0.930567,6,4.5 +23488,-1,0.027272,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,3.723,3.75,0,0.65452,6,4.5 +33021,0,0.23978,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.754717,0.15,4 +13585,1,0.027303,2,0,0,2,4,DV2,3,1,Vassar,Ave,1584503,0.739,0.766,0,0.655273,6,4.5 +19691,1,0.218222,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,7.17,7.388,0,5.237323,5,5 +7,0,0.010429,2,2,0,2,3,,3,1,Schaefer,Hwy,644004,0,0.011,0,0.250288,5,5 +1679,0,0.010561,2,2,0,2,3,,3,3,Coolidge,Hwy,644004,0.011,0.021,0,0.253466,5,5 +13581,0,0.220009,2,2,0,2,4,,3,1,Outer,Dr,1584503,1.075,1.295,0,5.280227,6,4.5 +33689,0,0.250249,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.005968,0.15,4 +12854,0,0.242994,2,2,0,2,4,,3,1,Meyers,Rd,1583210,5.259,5.502,0,5.831855,6,4.5 +13582,1,0.05791,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,1.017,1.075,0,1.38983,6,4.5 +23451,-1,0.058244,0,2,0,2,4,DV2,3,1,Outer,Dr,4704573,0.989,1.047,0,1.397866,6,4.5 +13025,0,0.014088,1,1,0,2,4,,3,1,Meyers,Rd,1583210,5.245,5.259,0,0.338117,6,4.5 +32955,0,0.250634,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.015222,0.15,4 +1597,-1,0.276413,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,7.686,7.963,0,6.633905,5,5 +19689,1,0.275941,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,7.668,7.944,0,6.622586,5,5 +2041,-1,0.107085,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,7.579,7.686,0,2.570038,5,5 +2580,0,0.009872,2,2,0,2,4,,3,3,Meyers,Rd,666702,0.01,0.02,0,0.236936,6,4.5 +2861,0,0.010086,2,2,0,2,4,,3,1,Meyers,Rd,666702,0,0.01,0,0.24206,6,4.5 +39,0,0.189393,2,2,0,2,4,,3,3,9 Mile,Rd,607709,4.503,4.692,0,4.545441,6,4.5 +27427,0,0.259439,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.226539,0.15,4 +29672,0,0.525702,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.616837,0.15,4 +38,0,0.083549,2,2,1,2,4,,3,3,9 Mile,Rd,607709,4.692,4.776,0,2.005171,6,4.5 +2245,0,0.206594,1,1,0,2,7,,3,3,Scotia,,648205,0.423,0.63,0,4.958259,7,4.5 +2990,-1,0.253154,0,2,0,2,5,DV2,3,3,Oak Park,Blvd,665504,0.994,1.247,0,6.0757,8,4.5 +21123,1,0.253288,2,0,0,2,5,DV2,3,3,Oak Park,Blvd,4409248,0.994,1.247,0,6.078921,8,4.5 +29673,0,0.206752,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.962054,0.15,4 +2246,0,0.214992,1,1,0,2,7,,3,3,Scotia,,648205,0.208,0.423,0,5.159797,7,4.5 +2244,0,0.007528,1,1,0,2,7,,3,3,Scotia,,648205,0.63,0.637,0,0.180668,7,4.5 +11637,0,0.330019,2,2,0,2,4,,3,1,Joy,Rd,1581806,0.994,1.324,0,7.920447,6,4.5 +11655,-1,0.202147,0,1,0,2,5,,3,1,Chicago,St,1583606,0.069,0.271,0,4.851532,8,4.5 +11661,0,0.13774,1,1,0,2,5,,3,1,Martin,St,1577205,1.062,1.2,0,3.305751,8,4.5 +12105,0,0.026587,3,3,1,2,3,,3,1,Livernois,Ave,1581701,5.233,5.259,0,0.638096,5,5 +12109,0,0.218359,1,1,1,2,5,,3,1,Elmhurst,St,1581710,1.083,1.301,0,5.240625,8,4.5 +12211,1,0.17801,1,0,0,1,1,RON,3,1,Livernois/W I 96,RAMP,1582003,0,0.178,0,,1.09,4 +12402,1,0.19526,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.411,2.606,0,4.686237,6,4.5 +12479,1,0.529849,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0,0.53,0,12.716374,6,4.5 +12677,0,0.141672,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.711,7.852,0,3.400127,5,5 +12685,0,0.21089,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.157,7.368,0,5.061369,5,5 +12831,0,0.295909,2,2,1,2,3,,3,1,Livernois,Ave,1581701,3.474,3.77,0,7.101817,5,5 +12933,1,0.359151,2,0,0,2,5,,3,1,Turner,St,1583105,0.666,1.025,0,8.619621,8,4.5 +12985,-1,0.350911,0,4,0,1,1,,3,1,W I 96,,1577405,1.432,1.783,0,,0.58,7 +12986,-1,0.588808,0,4,0,1,1,,3,1,W I 96,,1577405,0.843,1.432,0,,0.58,7 +13060,1,0.438025,4,0,0,1,1,,3,1,E I 96,,1577404,1.33,1.768,0,,0.58,7 +13062,1,0.491318,4,0,0,1,1,,3,1,E I 96,,1577404,0.839,1.33,0,,0.58,7 +13224,1,0.170355,1,0,0,1,1,ROF,3,1,E I 96/Livernois,RAMP,1581802,0,0.17,0,,2.24,5 +13227,0,0.253187,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.212,0.465,0,6.076485,6,4.5 +13320,0,0.17859,2,2,0,2,4,,3,1,McGraw,St,1581903,1.367,1.546,0,4.286165,6,4.5 +13544,0,0.215833,2,2,0,2,3,,3,1,Linwood,St,1584609,0.888,1.104,0,5.179995,5,5 +16106,1,0.069745,1,0,0,2,5,,3,1,Nardin,Park,1618610,0,0.07,0,1.673871,8,4.5 +16111,0,0.243408,1,1,0,2,5,,3,1,Epworth,St,1618206,0.787,1.03,0,5.841782,8,4.5 +16359,0,0.300969,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,0.533,0.834,0,7.223247,8,4.5 +16360,0,0.20099,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,0,0.201,0,4.823759,8,4.5 +16526,1,0.149765,3,0,0,2,5,,3,1,Turner,St,1609002,0,0.15,0,3.594354,8,4.5 +16532,0,0.239058,1,1,0,2,4,,3,1,Dexter,Ave,1613006,2.604,2.843,0,5.737399,6,4.5 +16643,0,0.304309,2,2,0,2,4,,3,1,Tireman,St,1623409,3.119,3.423,0,7.303405,6,4.5 +16672,0,0.212662,1,1,0,2,5,,3,1,Fullerton,St,1617909,0.183,0.395,0,5.103879,8,4.5 +16882,0,0.213069,1,1,0,2,5,,3,1,Kay,St,1618509,0,0.213,0,5.113657,8,4.5 +17044,1,0.336296,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,1.449,1.785,0,8.071096,8,4.5 +17105,0,0.261067,2,2,0,2,4,,3,1,Dexter,Ave,1613006,0.831,1.092,0,6.265613,6,4.5 +17266,0,0.380179,2,2,1,2,3,,3,1,Warren,Ave,1628604,2.996,3.376,0,9.124287,5,5 +19538,1,0.167763,1,0,0,2,5,,3,1,Chicago,St,1877809,0,0.168,0,4.026318,8,4.5 +21412,0,0.251061,2,2,0,2,3,,3,1,Wyoming,St,4700001,2.504,2.755,0,6.025472,5,5 +22323,0,0.258437,3,3,1,2,3,,3,1,Davison,St,4702009,1.242,1.501,0,6.202493,5,5 +22355,-1,0.195596,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.432,2.627,0,4.694297,6,4.5 +22368,-1,0.542608,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0,0.542,0,13.022587,6,4.5 +23097,1,0.279363,3,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0.53,0.81,0,6.704707,8,4.5 +23269,1,0.331841,2,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0,0.332,0,7.96419,8,4.5 +23780,-1,0.323815,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,1.439,1.763,0,7.771551,8,4.5 +32801,0,0.312594,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.502259,0.15,4 +32804,0,0.304828,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.315868,0.15,4 +32809,0,0.253257,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.07816,0.15,4 +32810,0,0.240844,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.780245,0.15,4 +32816,0,0.231746,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.561913,0.15,4 +32817,0,0.193626,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.647019,0.15,4 +32832,0,0.266185,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.388445,0.15,4 +32841,0,0.390935,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.382434,0.15,4 +32856,0,0.268997,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.455918,0.15,4 +32921,0,0.238722,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.729321,0.15,4 +33644,0,0.23971,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.753033,0.15,4 +33679,0,0.288416,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.921986,0.15,4 +12398,0,0.058412,2,2,1,2,3,,3,1,Livernois,Ave,1581701,4.055,4.114,0,1.401897,5,5 +13319,0,0.28103,1,1,0,2,4,,3,1,Chicago,St,1581803,4.952,5.233,0,6.744711,6,4.5 +16669,0,0.500043,1,1,0,2,5,,3,1,Central,St,1618310,0,0.5,0,12.001023,8,4.5 +16851,0,0.172853,2,2,0,2,4,,3,1,Tireman,Ave,1623409,2.406,2.579,0,4.148484,6,4.5 +17270,0,0.330511,2,2,1,2,3,,3,2,Warren,Ave,1628604,2.12,2.451,0,7.932258,5,5 +18326,0,0.220719,1,1,0,2,4,,3,1,Joy,Rd,1677810,11.335,11.556,0,5.297253,6,4.5 +21571,0,0.495543,2,2,0,2,3,,3,1,Wyoming,St,4700001,1.504,2,0,11.89303,5,5 +32910,0,0.681798,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,16.36314,0.15,4 +33797,0,0.441579,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.597897,0.15,4 +11691,0,0.466973,1,1,0,2,4,,3,2,Lonyo,Rd,1577110,1.757,2.224,0,11.207361,6,4.5 +16258,0,0.250497,2,2,0,2,4,,3,1,Tireman,Ave,1623409,2.001,2.252,0,6.011929,6,4.5 +17272,0,0.069198,2,2,1,2,3,,3,2,Warren,Ave,1628604,2,2.069,0,1.660747,5,5 +17273,0,0.251588,2,2,0,2,3,,3,2,Warren,Ave,1628604,1.748,2,0,6.038115,5,5 +21305,0,0.334313,2,2,1,2,3,,3,2,Wyoming,Ave,4700001,0.672,1.006,0,8.023518,5,5 +21520,0,0.185893,2,2,1,2,3,,3,2,Wyoming,Ave,4700001,0.486,0.672,0,4.461425,5,5 +30485,0,0.250526,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.01263,0.15,4 +32843,0,0.299939,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.198532,0.15,4 +33882,0,0.437643,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.503427,0.15,4 +32842,0,0.502895,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.069491,0.15,4 +21795,0,0.247567,2,2,0,2,3,,3,2,Wyoming,Ave,4700001,1.257,1.504,0,5.941612,5,5 +22063,0,0.251052,2,2,1,2,3,,3,2,Wyoming,Ave,4700001,1.006,1.257,0,6.025252,5,5 +11692,0,0.15183,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.605,1.757,0,3.64392,6,4.5 +30475,0,0.490751,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.778029,0.15,4 +17271,0,0.051737,2,2,1,2,3,,3,2,Warren,Ave,1628604,2.069,2.12,0,1.241679,5,5 +32835,0,0.106617,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.558802,0.15,4 +17134,0,0.15421,2,2,0,2,4,,3,1,Tireman,Ave,1623409,2.252,2.406,0,3.701038,6,4.5 +12189,-1,0.39259,0,2,0,2,4,DV2,3,1,Oakman,Blvd,1580610,3.225,3.618,0,9.422156,6,4.5 +12404,0,0.250738,2,2,0,2,4,,3,1,Chicago,St,1581803,4.645,4.896,0,6.017704,6,4.5 +12467,-1,0.257499,0,2,0,2,4,DV2,3,1,Oakman,Blvd,1580610,2.968,3.225,0,6.179965,6,4.5 +16090,1,0.23075,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1622405,0.218,0.448,0,5.537989,6,4.5 +16965,1,0.42337,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1622405,0.448,0.872,0,10.160883,6,4.5 +17826,1,0.061366,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,10.967,11.029,0,1.472789,6,4.5 +22117,0,0.177566,2,2,0,2,3,,3,1,Wyoming,St,4700001,2.007,2.185,0,4.261578,5,5 +23719,-1,0.252149,0,2,0,2,4,DV2,3,1,Joy,Rd,4707990,0.438,0.69,0,6.051576,6,4.5 +33890,0,0.561384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.473208,0.15,4 +16576,1,0.208234,2,0,0,2,5,DV2,3,1,Oakman,Blvd,1622405,0,0.208,0,4.997607,8,4.5 +17244,1,0.103505,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,10.718,10.821,0,2.48412,6,4.5 +23722,-1,0.103355,0,2,0,2,4,DV2,3,1,Joy,Rd,4707990,0.189,0.292,0,2.480531,6,4.5 +18225,1,0.130951,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,10.836,10.967,0,3.142833,6,4.5 +23720,-1,0.130891,0,2,0,2,4,DV2,3,1,Joy,Rd,4707990,0.307,0.438,0,3.141382,6,4.5 +18785,1,0.01506,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,10.821,10.836,0,0.361447,6,4.5 +23721,-1,0.015306,0,2,0,2,4,DV2,3,1,Joy,Rd,4707990,0.292,0.307,0,0.367347,6,4.5 +12635,-1,0.010019,0,2,0,2,4,DV2,3,1,Oakman,Blvd,1580610,2.958,2.968,0,0.240449,6,4.5 +16349,1,0.009527,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1622405,0.208,0.218,0,0.228655,6,4.5 +21352,0,0.007595,2,2,0,2,3,,3,1,Wyoming,St,4700001,2,2.007,0,0.182288,5,5 +12650,0,0.31311,2,2,0,2,4,,3,1,Chicago,St,1581803,4.332,4.645,0,7.514645,6,4.5 +21609,0,0.297803,2,2,0,2,3,,3,1,Wyoming,St,4700001,2.206,2.504,0,7.147274,5,5 +21851,0,0.021475,2,2,0,2,3,,3,1,Wyoming,St,4700001,2.185,2.206,0,0.515391,5,5 +18782,0,0.116126,1,1,0,2,4,,3,1,Joy,Rd,1677810,11.219,11.335,0,2.787023,6,4.5 +32833,0,0.1342,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.220799,0.15,4 +17239,1,0.190788,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,11.029,11.219,0,4.578914,6,4.5 +32834,0,0.193619,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.646845,0.15,4 +12203,0,0.022685,2,2,0,2,4,,3,1,Chicago,St,1581803,4.896,4.919,0,0.544448,6,4.5 +11949,0,0.032973,1,1,0,2,4,,3,1,Chicago,St,1581803,4.919,4.952,0,0.791357,6,4.5 +11620,0,0.201126,1,1,0,2,5,,3,1,Martin,St,1577205,1.499,1.7,0,4.827017,8,4.5 +16079,0,0.037437,2,2,0,2,4,,3,1,Tireman,St,1623409,2.861,2.899,0,0.898486,6,4.5 +17037,0,0.244841,1,1,0,2,5,,3,1,Central,St,1617202,0,0.245,0,5.876186,8,4.5 +17268,0,0.271187,2,2,1,2,3,,3,1,Warren,Ave,1628604,2.582,2.853,0,6.50848,5,5 +30480,0,0.456783,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.962781,0.15,4 +32805,0,0.292305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.015319,0.15,4 +32806,0,0.268779,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.450695,0.15,4 +11672,0,0.054813,1,1,0,2,5,,3,1,Central,St,1577202,2.974,3.029,0,1.315501,8,4.5 +11673,0,0.054813,1,1,0,2,5,,3,1,Central,St,1577202,2.919,2.974,0,1.315505,8,4.5 +16156,0,0.017214,1,1,0,2,5,,3,1,Radcliffe,St,1617104,0.324,0.341,0,0.413133,8,4.5 +16342,0,0.271028,2,2,0,2,4,,3,1,Tireman,St,1623409,2.59,2.861,0,6.504669,6,4.5 +16981,0,0.284216,1,1,0,2,5,,3,1,Central,St,1617202,0.245,0.529,0,6.821192,8,4.5 +17269,0,0.131551,2,2,1,2,3,,3,1,Warren,Ave,1628604,2.451,2.582,0,3.157234,5,5 +16667,0,0.213084,1,1,0,2,5,,3,1,Central,St,1617202,0.529,0.742,0,5.114016,8,4.5 +16570,0,0.011678,2,2,0,2,4,,3,1,Tireman,Ave,1623409,2.579,2.59,0,0.280268,6,4.5 +11660,0,0.299262,1,1,0,2,5,,3,1,Martin,St,1577205,1.2,1.499,0,7.182296,8,4.5 +30476,0,0.188637,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.527286,0.15,4 +12030,0,0.206309,2,2,0,2,4,,3,1,McGraw,St,1581903,1.161,1.367,0,4.951412,6,4.5 +30478,0,0.173736,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.169662,0.15,4 +12559,0,0.285289,2,2,1,2,3,,3,1,Livernois,Ave,1581701,3.77,4.055,0,6.846926,5,5 +16949,0,0.219932,2,2,0,2,4,,3,1,Tireman,St,1623409,2.899,3.119,0,5.278376,6,4.5 +32808,0,0.375509,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.012214,0.15,4 +17267,0,0.142406,2,2,1,2,3,,3,1,Warren,Ave,1628604,2.853,2.996,0,3.417743,5,5 +32807,0,0.227978,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.471478,0.15,4 +11952,0,0.064417,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.148,0.212,0,1.546,6,4.5 +12765,1,0.072699,2,0,0,2,5,,3,1,Turner,St,1583105,1.025,1.098,0,1.744774,8,4.5 +12837,0,0.079644,1,1,0,2,4,,3,1,Chicago,St,1581803,5.473,5.552,0,1.911462,6,4.5 +13219,0,0.19102,2,2,1,2,3,,3,1,Livernois,Ave,1581701,4.611,4.802,0,4.58449,5,5 +16979,0,0.319823,1,1,0,2,5,,3,1,Central,St,1619101,0,0.32,0,7.675758,8,4.5 +18921,0,0.305497,1,1,0,2,4,,3,1,Joy,Rd,1677810,11.664,11.97,0,7.331923,6,4.5 +32802,0,0.178599,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.286375,0.15,4 +32818,0,0.319661,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.671873,0.15,4 +32821,0,0.145827,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.49985,0.15,4 +17516,0,0.090852,1,1,0,2,4,,3,1,Joy,Rd,1677810,11.573,11.664,0,2.180443,6,4.5 +17938,0,0.01736,1,1,0,2,4,,3,1,Joy,Rd,1677810,11.556,11.573,0,0.416646,6,4.5 +13010,0,0.240002,1,1,0,2,4,,3,1,Chicago,St,1581803,5.233,5.473,0,5.76004,6,4.5 +16664,0,0.184997,1,1,0,2,5,,3,1,Central,St,1619101,0.32,0.505,0,4.439926,8,4.5 +32819,0,0.193412,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.641896,0.15,4 +33889,0,0.380956,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.142953,0.15,4 +11951,0,0.147909,1,1,0,2,4,,3,1,Joy,Rd,1581806,0,0.148,0,3.54982,6,4.5 +12104,0,0.477511,2,2,1,2,3,,3,1,Livernois,Ave,1581701,4.114,4.591,0,11.460256,5,5 +32820,0,0.467332,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.215975,0.15,4 +11944,0,0.019683,2,2,1,2,3,,3,1,Livernois,Ave,1581701,4.591,4.611,0,0.472381,5,5 +16984,0,0.231017,1,1,0,2,5,,3,1,Epworth,St,1618206,1.03,1.261,0,5.544415,8,4.5 +32803,0,0.113349,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.720371,0.15,4 +11950,1,0.1311,1,0,0,1,1,RON,3,1,Livernois/E I 96,RAMP,1581804,0,0.131,0,,1.09,4 +12683,0,0.279592,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.368,7.648,0,6.71021,5,5 +13004,0,0.257871,2,2,1,2,3,,3,1,Livernois,Ave,1581701,4.802,5.059,0,6.188898,5,5 +13160,1,0.21601,3,0,0,2,5,,3,1,Turner,St,1583105,1.222,1.438,0,5.184235,8,4.5 +22892,1,0.212464,1,0,0,1,1,ROF,3,1,W I 96/Livernois,RAMP,4705651,0,0.212,0,,2.24,5 +12042,1,0.028511,2,0,0,2,5,,3,1,Turner,St,1583105,1.174,1.203,0,0.684274,8,4.5 +12318,0,0.067195,3,3,1,2,3,,3,1,Livernois,Ave,1581701,5.104,5.171,0,1.61267,5,5 +12338,1,0.047594,2,0,0,2,5,,3,1,Turner,St,1583105,1.127,1.174,0,1.142263,8,4.5 +12405,-1,0.043624,0,1,0,2,4,,3,1,Chicago,St,1581803,5.56,5.603,0,1.046987,6,4.5 +22346,1,0.058135,1,0,0,2,5,,3,1,Woodside,,4701502,0.04,0.098,0,1.39523,8,4.5 +22347,1,0.039549,1,0,0,2,5,,3,1,Woodside,,4701502,0,0.04,0,0.949177,8,4.5 +22686,1,0.061869,2,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0.387,0.449,0,1.484858,8,4.5 +23773,1,0.054612,1,0,0,2,4,,3,1,Chicago,St,4707920,0,0.055,0,1.310692,6,4.5 +12047,0,0.062828,1,1,0,2,4,,3,1,Chicago,St,1583604,0.032,0.095,0,1.507863,6,4.5 +12046,-1,0.031751,0,1,0,2,4,,3,1,Chicago,St,1583604,0,0.032,0,0.762019,6,4.5 +12564,0,0.00731,1,1,0,2,4,,3,1,Chicago,St,1581803,5.552,5.56,0,0.175444,6,4.5 +12747,0,0.029832,3,3,1,2,3,,3,1,Livernois,Ave,1581701,5.059,5.089,0,0.715963,5,5 +12560,0,0.014502,3,3,1,2,3,,3,1,Livernois,Ave,1581701,5.089,5.104,0,0.348045,5,5 +12110,-1,0.057982,0,1,0,2,4,,3,1,Chicago,St,1581803,5.603,5.661,0,1.39158,6,4.5 +12500,1,0.028729,2,0,0,2,5,,3,1,Turner,St,1583105,1.098,1.127,0,0.689489,8,4.5 +23679,1,0.037318,3,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0.493,0.53,0,0.89564,8,4.5 +11652,1,0.019734,2,0,0,2,5,,3,1,Turner,St,1583105,1.203,1.222,0,0.473619,8,4.5 +22963,1,0.054863,2,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0.332,0.387,0,1.316705,8,4.5 +12678,0,0.063309,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.648,7.711,0,1.519407,5,5 +11948,0,0.150764,1,1,0,2,5,,3,1,Elmhurst,St,1581710,0.211,0.361,0,3.618325,8,4.5 +12025,1,0.133408,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.76,0.893,0,3.201798,6,4.5 +12200,1,0.35985,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.257,1.616,0,8.636388,6,4.5 +12476,1,0.369021,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.097,6.466,0,8.856496,5,5 +12716,0,0.278036,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.674,6.952,0,6.67287,5,5 +13332,-1,0.280683,0,2,0,1,1,FCD,3,1,W I 96 CD,,1583106,5.162,5.443,0,,0.58,7 +15890,-1,0.602031,0,2,0,2,4,DV2,3,1,Davison,St,1598908,1.124,1.726,0,14.44875,6,4.5 +16104,1,0.190269,4,0,0,1,1,,3,1,E I 96,,1606201,15.599,15.789,0,,0.58,7 +16367,0,0.72508,2,2,0,2,4,,3,1,Lyndon,St,1612706,2.263,2.988,0,17.401922,6,4.5 +16477,1,0.358537,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,0.214,0.572,0,8.604888,8,4.5 +16566,-1,0.219954,0,4,0,1,1,,3,1,W I 96,,1606503,15.351,15.57,0,,0.58,7 +16668,0,0.154656,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,1.351,1.506,0,3.711744,8,4.5 +16831,1,0.418158,1,0,0,1,1,ROF,3,1,W I 96/Davison,RAMP,1606605,0,0.418,0,,2.24,5 +16846,-1,0.418244,0,4,0,1,1,,3,1,W I 96,,1606503,14.932,15.351,0,,0.58,7 +16901,1,0.405924,1,0,0,1,1,RON,3,1,Davison/E I 96,RAMP,1606501,0,0.406,0,,1.09,4 +21047,1,0.197016,2,0,0,1,1,RON,3,1,W M 8/W I 96 CD,RAMP,4700014,0,0.197,0,,1.09,4 +21732,0,0.079047,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.785,3.864,0,1.897134,5,5 +22305,-1,0.347443,0,3,0,1,1,RON,3,1,W M 8,,4702010,0.203,0.551,0,,1.09,4 +22306,-1,0.203324,0,1,0,1,1,RON,3,1,W M 8,,4702010,0,0.203,0,,1.09,4 +22333,1,0.352104,3,0,0,1,1,ROF,3,1,E M 8,,4702009,0.266,0.618,0,,2.24,5 +22360,-1,0.358675,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,1.26,1.619,0,8.608199,6,4.5 +22365,-1,0.144839,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0.778,0.922,0,3.476131,6,4.5 +22767,0,0.33215,2,2,0,2,5,,3,1,Schoolcraft,St,4705258,15.19,15.522,0,7.971607,8,4.5 +23778,1,0.649167,2,0,0,2,4,DV2,3,1,Davison,St,4707877,0,0.649,0,15.579998,6,4.5 +23786,-1,0.358539,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0.198,0.556,0,8.604926,8,4.5 +24325,0,0.217691,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.4,3.618,0,5.224582,6,4.5 +32858,0,0.216706,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.200935,0.15,4 +32903,0,0.751313,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,18.031503,0.15,4 +12124,1,0.345168,2,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,4.938,5.283,0,,0.58,7 +12734,0,0.175828,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.21,6.386,0,4.219873,5,5 +12770,0,0.196881,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.013,6.21,0,4.725152,5,5 +14640,1,0.279775,2,0,0,1,1,ROF,3,1,E I 96/E M 8,RAMP,1590702,0,0.28,0,,2.24,5 +16152,1,0.155621,2,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,1.011,1.166,0,3.734899,8,4.5 +16333,0,0.109769,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,20.272,20.382,0,2.634465,5,5 +16682,1,0.478391,4,0,0,1,1,,3,1,E I 96,,1606201,15.121,15.599,0,,0.58,7 +21462,0,0.158947,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.228,3.387,0,3.814736,5,5 +22334,1,0.265587,1,0,0,1,1,ROF,3,1,E M 8,,4702009,0,0.266,0,,2.24,5 +24327,0,0.366302,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.034,3.4,0,8.791244,6,4.5 +32831,0,0.412813,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.907514,0.15,4 +32894,0,0.16497,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.95928,0.15,4 +32895,0,0.329315,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.903551,0.15,4 +32897,0,0.427486,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.259659,0.15,4 +32898,0,0.432988,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.391706,0.15,4 +33795,0,0.29489,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.077369,0.15,4 +33892,0,0.244507,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.868177,0.15,4 +16336,0,0.245498,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,20.027,20.272,0,5.891963,5,5 +21927,0,0.253896,2,2,0,2,3,,3,1,Wyoming,St,4700001,2.755,3.009,0,6.093515,5,5 +33893,0,0.175299,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.207185,0.15,4 +33799,0,0.180858,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.340584,0.15,4 +21676,0,0.21909,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.009,3.228,0,5.25817,5,5 +12339,1,0.299522,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,4.638,4.938,0,,0.58,7 +14630,1,0.228227,1,0,0,1,1,ROF,3,1,E I 96/Wyoming,RAMP,1590802,0,0.228,0,,2.24,5 +22011,0,0.277337,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.508,3.785,0,6.656094,5,5 +21252,0,0.121522,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.387,3.508,0,2.916524,5,5 +24330,0,0.110255,2,2,0,2,4,,3,1,Fullerton,St,4710521,2.923,3.034,0,2.646109,6,4.5 +16414,1,0.051428,2,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0.959,1.011,0,1.23427,8,4.5 +12727,0,0.18245,2,2,1,2,3,,3,1,Grand River,Ave,1577408,6.444,6.627,0,4.378808,5,5 +16330,0,0.225821,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,20.382,20.608,0,5.41971,5,5 +12729,0,0.058662,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.386,6.444,0,1.407885,5,5 +12107,0,0.082513,1,1,0,2,5,,3,1,Elmhurst,St,1581710,0.112,0.195,0,1.980305,8,4.5 +12430,0,0.147268,1,1,0,2,5,,3,1,Cloverlawn,St,1583501,0,0.147,0,3.534431,8,4.5 +12480,1,0.180492,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.53,0.71,0,4.331815,6,4.5 +12717,0,0.01333,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.661,6.674,0,0.31991,5,5 +22367,-1,0.173041,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0.542,0.715,0,4.152982,6,4.5 +16261,0,0.027423,1,2,0,2,3,,3,1,Plymouth,Rd,1604102,20.608,20.635,0,0.658163,5,5 +23776,1,0.044629,2,0,0,2,3,,3,1,Plymouth,Rd,4707883,0,0.045,0,1.0711,5,5 +12721,0,0.011184,2,2,1,2,3,,3,1,Grand River,Ave,1577408,6.649,6.661,0,0.268417,5,5 +12723,0,0.022589,2,2,1,2,3,,3,1,Grand River,Ave,1577408,6.627,6.649,0,0.54213,5,5 +12108,0,0.01607,1,1,0,2,5,,3,1,Elmhurst,St,1581710,0.195,0.211,0,0.385674,8,4.5 +12321,1,0.049709,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.71,0.76,0,1.19302,6,4.5 +22366,-1,0.062171,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0.715,0.778,0,1.492098,6,4.5 +23772,1,0.2087,2,0,0,1,1,RON,3,1,Wyoming/E I 96,RAMP,4707931,0,0.209,0,,1.09,4 +32893,0,0.227198,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.452758,0.15,4 +11653,1,0.138606,2,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,5.283,5.421,0,,0.58,7 +12222,-1,0.365259,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,4.648,5.013,0,,0.58,7 +14641,1,0.217593,1,0,0,1,1,ROF,3,1,W I 96/Wyoming,RAMP,1590701,0,0.218,0,,2.24,5 +16599,0,0.263654,2,2,0,2,4,,3,1,Lyndon,St,1612706,2,2.263,0,6.327694,6,4.5 +21794,0,0.2479,2,2,0,2,3,,3,1,Wyoming,St,4700001,4.261,4.509,0,5.94959,5,5 +23454,0,0.254854,2,2,0,2,5,,3,1,Schoolcraft,St,4705258,14.935,15.19,0,6.116504,8,4.5 +32905,0,0.254845,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.116277,0.15,4 +32949,0,0.26459,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.350166,0.15,4 +22062,0,0.217468,2,2,0,2,3,,3,1,Wyoming,St,4700001,4.044,4.261,0,5.219227,5,5 +22421,0,0.206741,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,14.729,14.935,0,4.961793,6,4.5 +24341,1,0.19554,1,0,0,1,1,RON,3,1,Wyoming/W I 96,RAMP,4710177,0,0.196,0,,1.09,4 +32938,0,0.263052,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.313251,0.15,4 +15892,-1,0.054272,0,2,0,2,5,,3,1,Davison,St,1598908,1.018,1.072,0,1.302535,8,4.5 +21304,0,0.168043,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.876,4.044,0,4.033028,5,5 +15891,-1,0.051883,0,2,0,2,4,DV2,3,1,Davison,St,1598908,1.072,1.124,0,1.245203,6,4.5 +21519,0,0.011391,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.864,3.876,0,0.273394,5,5 +32904,0,0.093584,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.24602,0.15,4 +21570,0,0.188605,2,2,0,2,3,,3,1,Wyoming,St,4700001,4.509,4.698,0,4.526523,5,5 +11965,-1,0.14978,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,5.013,5.162,0,,0.58,7 +32926,0,0.249898,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.99755,0.15,4 +11634,1,0.056008,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.893,0.949,0,1.344187,6,4.5 +12322,0,0.165663,1,1,1,2,5,,3,1,Elmhurst,St,1581710,0.917,1.083,0,3.975903,8,4.5 +12336,1,0.27856,2,0,0,2,5,,3,1,Turner,St,1583105,0,0.279,0,6.68544,8,4.5 +12750,0,0.160639,1,1,1,2,5,,3,1,Elmhurst,St,1581710,0.583,0.743,0,3.855345,8,4.5 +12911,1,0.32652,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,5.749,6.075,0,7.836478,5,5 +12988,-1,0.400574,0,4,0,1,1,,3,1,W I 96,,1577405,0.05,0.45,0,,0.58,7 +13067,1,0.391384,4,0,0,1,1,,3,1,E I 96,,1577404,0,0.391,0,,0.58,7 +22364,-1,0.073501,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0.922,0.996,0,1.764013,6,4.5 +23186,1,0.089539,2,0,0,2,5,,3,1,Bryden,St,4705644,1.179,1.269,0,2.148937,8,4.5 +24295,0,0.218733,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.809,4.027,0,5.249602,6,4.5 +32825,0,0.179941,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.318574,0.15,4 +33678,0,0.299349,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.184383,0.15,4 +33903,0,0.287522,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.900531,0.15,4 +11651,1,0.235057,2,0,0,2,5,,3,1,Turner,St,1583105,0.352,0.587,0,5.641371,8,4.5 +12210,1,0.136538,1,0,0,1,1,RON,3,1,Grand River/W I 96,RAMP,1582002,0,0.137,0,,1.09,4 +12712,0,0.098522,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.952,7.05,0,2.364519,5,5 +12987,-1,0.39304,0,4,0,1,1,,3,1,W I 96,,1577405,0.45,0.843,0,,0.58,7 +13009,0,0.175299,1,1,1,2,5,,3,1,Elmhurst,St,1581710,0.407,0.583,0,4.207166,8,4.5 +13066,1,0.44751,4,0,0,1,1,,3,1,E I 96,,1577404,0.391,0.839,0,,0.58,7 +13223,1,0.193351,1,0,0,1,1,ROF,3,1,E I 96/Grand River,RAMP,1581801,0,0.193,0,,2.24,5 +22819,1,0.12577,2,0,0,2,5,,3,1,Bryden,St,4705644,0.81,0.935,0,3.018487,8,4.5 +23526,1,0.231727,2,0,0,2,5,,3,1,Bryden,St,4705644,0.948,1.179,0,5.56146,8,4.5 +32824,0,0.226799,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.443164,0.15,4 +33249,0,0.338516,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.124394,0.15,4 +13240,1,0.079538,3,0,0,2,5,,3,1,Turner,St,1583105,0.587,0.666,0,1.908905,8,4.5 +22536,1,0.012451,2,0,0,2,5,,3,1,Bryden,St,4705644,0.935,0.948,0,0.298815,8,4.5 +12122,1,0.053988,2,0,0,2,5,,3,1,Turner,St,1583105,0.298,0.352,0,1.295703,8,4.5 +13222,0,0.046027,1,1,0,2,5,,3,1,Elmhurst,St,1581710,0.361,0.407,0,1.104641,8,4.5 +12337,1,0.019123,2,0,0,2,5,,3,1,Turner,St,1583105,0.279,0.298,0,0.458941,8,4.5 +12705,0,0.106797,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.05,7.157,0,2.56313,5,5 +32823,0,0.073517,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.764413,0.15,4 +12647,1,0.103894,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.014,1.118,0,2.493444,6,4.5 +22362,-1,0.091891,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,1.038,1.13,0,2.205389,6,4.5 +24308,0,0.054878,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.739,3.794,0,1.317077,6,4.5 +16746,1,0.19868,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,0.015,0.214,0,4.768322,8,4.5 +23787,-1,0.198006,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0,0.198,0,4.752143,8,4.5 +23903,1,0.226258,2,0,0,2,5,,3,1,Bryden,St,4707027,0.022,0.248,0,5.430192,8,4.5 +24324,0,0.064194,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.618,3.682,0,1.540656,6,4.5 +16977,1,0.019814,4,0,0,1,1,,3,1,E I 96,,1606201,15.789,15.809,0,,0.58,7 +13142,1,0.016482,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.949,0.966,0,0.395568,6,4.5 +12915,1,0.048562,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.966,1.014,0,1.165479,6,4.5 +22363,-1,0.042453,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0.996,1.038,0,1.018861,6,4.5 +23904,1,0.02169,2,0,0,2,5,,3,1,Bryden,St,4707027,0,0.022,0,0.52057,8,4.5 +17046,0,0.015398,1,1,0,2,5,,3,1,American,St,1615601,0,0.015,0,0.369545,8,4.5 +24311,0,0.051038,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.682,3.733,0,1.224908,6,4.5 +12989,-1,0.049917,0,4,0,1,1,,3,1,W I 96,,1577405,0,0.05,0,,0.58,7 +24309,0,0.005888,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.733,3.739,0,0.141323,6,4.5 +12481,1,0.138609,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.118,1.257,0,3.326622,6,4.5 +22361,-1,0.130101,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,1.13,1.26,0,3.122416,6,4.5 +24300,0,0.015202,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.794,3.809,0,0.364855,6,4.5 +11631,1,0.208173,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,5.417,5.625,0,4.996146,5,5 +12563,0,0.162141,1,1,1,2,5,,3,1,Elmhurst,St,1581710,0.755,0.917,0,3.891373,8,4.5 +32822,0,0.361529,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.676702,0.15,4 +33250,0,0.249802,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.995244,0.15,4 +13220,1,0.12365,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,5.625,5.749,0,2.96759,5,5 +16109,0,0.325933,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,0.834,1.16,0,7.8224,8,4.5 +16982,0,0.191552,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,1.16,1.351,0,4.597247,8,4.5 +16986,0,0.182755,1,1,0,2,5,,3,1,Fullerton,St,1617909,0,0.183,0,4.386108,8,4.5 +12748,1,0.021419,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.075,6.097,0,0.514055,5,5 +12642,1,0.267264,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.816,7.083,0,6.414343,5,5 +13143,1,0.238732,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.779,2.018,0,5.729576,6,4.5 +16164,1,0.3491,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,1.1,1.449,0,8.378404,8,4.5 +16425,1,0.341401,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,0.747,1.088,0,8.193629,8,4.5 +16470,0,0.05567,1,1,0,2,4,,3,1,Dexter,Ave,1613006,2.858,2.914,0,1.336087,6,4.5 +22295,-1,0.224674,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.709,0.934,0,5.392181,5,5 +22327,1,0.224121,3,0,0,2,3,DIV,3,1,Davison,St,4702009,0.778,1.002,0,5.378897,5,5 +22358,-1,0.416212,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,1.629,2.045,0,9.989099,6,4.5 +23781,-1,0.346405,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,1.093,1.439,0,8.313724,8,4.5 +23782,-1,0.300249,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0.782,1.082,0,7.205973,8,4.5 +22297,-1,0.055031,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.639,0.694,0,1.320743,5,5 +22329,1,0.054878,3,0,0,2,3,DIV,3,1,Davison,St,4702009,0.708,0.763,0,1.317063,5,5 +32837,0,0.066479,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.595485,0.15,4 +32838,0,0.139929,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.358301,0.15,4 +33796,0,0.088915,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.133955,0.15,4 +16676,1,0.164234,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,0.583,0.747,0,3.941627,8,4.5 +22461,0,0.110099,1,1,0,2,5,,3,1,Schoolcraft,St,4705258,15.522,15.632,0,2.642377,8,4.5 +23784,-1,0.164124,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0.567,0.731,0,3.938975,8,4.5 +22299,-1,0.042077,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.591,0.633,0,1.009845,5,5 +22331,1,0.025493,3,0,0,2,3,DIV,3,1,Davison,St,4702009,0.677,0.702,0,0.611836,5,5 +22301,-1,0.012561,0,3,0,2,3,RSF,3,1,W M 8,,4702010,0.578,0.591,0,0.301462,5,5 +22304,-1,0.027764,0,3,0,1,1,RON,3,1,W M 8,,4702010,0.551,0.578,0,,1.09,4 +22332,1,0.059302,3,0,0,1,1,ROF,3,1,E M 8,,4702009,0.618,0.677,0,,2.24,5 +23777,1,0.024052,2,0,0,2,4,DV2,3,1,Davison,St,4707877,0.649,0.673,0,0.57724,6,4.5 +16224,1,0.010366,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,0.572,0.583,0,0.248787,8,4.5 +22298,-1,0.005784,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.633,0.639,0,0.138813,5,5 +22330,1,0.005939,3,0,0,2,3,DIV,3,1,Davison,St,4702009,0.702,0.708,0,0.14254,5,5 +23785,-1,0.010429,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0.556,0.567,0,0.250287,8,4.5 +23783,-1,0.050819,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0.731,0.782,0,1.219662,8,4.5 +22766,0,0.006499,1,1,0,2,5,,3,1,Schoolcraft,St,4705258,15.632,15.639,0,0.155985,8,4.5 +13316,1,0.152844,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.626,1.779,0,3.668265,6,4.5 +32839,0,0.137494,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.299856,0.15,4 +12026,1,0.009599,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.616,1.626,0,0.230374,6,4.5 +22296,-1,0.015216,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.694,0.709,0,0.365184,5,5 +22328,1,0.015222,3,0,0,2,3,DIV,3,1,Davison,St,4702009,0.763,0.778,0,0.365322,5,5 +22359,-1,0.010359,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,1.619,1.629,0,0.248626,6,4.5 +32836,0,0.029596,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.710299,0.15,4 +12022,0,0.031545,3,3,1,2,3,,3,1,Livernois,Ave,1581701,6.479,6.511,0,0.757073,5,5 +12834,1,0.242638,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.03,2.272,0,5.823301,6,4.5 +22324,0,0.187906,3,3,1,2,3,,3,1,Davison,St,4702009,1.055,1.242,0,4.509748,5,5 +22357,-1,0.234104,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.059,2.293,0,5.618492,6,4.5 +33012,0,0.350928,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.422281,0.15,4 +33015,0,0.364949,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.75878,0.15,4 +22294,-1,0.026301,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.934,0.96,0,0.631234,5,5 +22326,1,0.027258,3,0,0,2,3,DIV,3,1,Davison,St,4702009,1.002,1.03,0,0.654188,5,5 +12319,0,0.013673,3,3,1,2,3,,3,1,Livernois,Ave,1581701,6.466,6.479,0,0.328142,5,5 +16418,0,0.010463,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,1.506,1.516,0,0.251112,8,4.5 +22293,-1,0.021585,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.96,0.981,0,0.518031,5,5 +22325,1,0.024953,3,0,0,2,3,DIV,3,1,Davison,St,4702009,1.03,1.055,0,0.598882,5,5 +11632,1,0.017415,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.731,6.748,0,0.417968,5,5 +13139,1,0.060966,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.748,6.809,0,1.463176,5,5 +12912,1,0.006918,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.809,6.816,0,0.166028,5,5 +32830,0,0.08668,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.080313,0.15,4 +12648,1,0.139206,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.272,2.411,0,3.340948,6,4.5 +22356,-1,0.139206,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.293,2.432,0,3.340941,6,4.5 +16738,0,0.015036,1,1,0,2,4,,3,1,Dexter,Ave,1613006,2.843,2.858,0,0.360861,6,4.5 +12477,1,0.229765,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.083,7.313,0,5.514355,5,5 +17099,0,0.485524,1,1,0,2,4,,3,1,Dexter,Ave,1613006,2.92,3.405,0,11.652577,6,4.5 +16216,0,0.006028,1,1,0,2,4,,3,1,Dexter,Ave,1613006,2.914,2.92,0,0.144676,6,4.5 +11170,1,0.266324,3,0,0,1,1,,3,1,E I 94,,1576405,25.061,25.327,0,,0.58,7 +11610,0,0.094848,1,1,0,2,5,,3,1,30th,St,1577302,0.529,0.624,0,2.276352,8,4.5 +11612,1,0.125345,1,0,0,1,1,ROF,3,1,E I 94/30th,RAMP,1577301,0,0.125,0,,2.24,5 +11657,0,0.254627,1,1,0,2,5,,3,1,Euclid,St,1583804,0.153,0.408,0,6.111052,8,4.5 +12112,0,0.123903,2,2,0,2,4,,3,1,McGraw,St,1581903,3.183,3.307,0,2.973678,6,4.5 +12205,0,0.207277,2,2,0,2,4,,3,1,McGraw,St,1581903,2.248,2.455,0,4.974658,6,4.5 +12418,1,0.143523,2,0,0,1,1,RFF,3,1,E I 96/I 94,RAMP,1582104,0,0.144,0,,0.58,7 +12486,0,0.532617,1,1,0,2,5,,3,1,Scotten,St,1581901,0.073,0.606,0,12.782807,8,4.5 +12621,0,0.272232,2,2,0,2,3,,3,1,Grand River,Ave,1577408,8.432,8.704,0,6.53357,5,5 +12833,1,0.126884,1,0,0,1,1,RFF,3,1,I 94/W I 96,RAMP,1581704,0.291,0.418,0,,0.58,7 +12984,-1,0.704674,0,4,0,1,1,,3,1,W I 96,,1577405,1.783,2.487,0,,0.58,7 +13059,1,0.691466,4,0,0,1,1,,3,1,E I 96,,1577404,1.768,2.459,0,,0.58,7 +13203,1,0.358496,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.274,1.633,0,8.603901,6,4.5 +13381,-1,0.369745,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0.625,0.994,0,8.87387,6,4.5 +14020,-1,0.727188,0,3,0,1,1,,3,1,W I 94,,1588802,24.981,25.708,0,,0.58,7 +14271,1,0.174617,1,0,0,1,1,RON,3,1,30th/W I 94,RAMP,1589009,0,0.175,0,,1.09,4 +16135,0,0.260409,2,2,1,2,4,,3,1,Tireman,St,1623409,3.976,4.236,0,6.249817,6,4.5 +16292,1,0.350255,2,0,0,2,5,,3,1,Turner,St,1609002,0.864,1.214,0,8.406117,8,4.5 +16363,0,0.204428,1,1,0,2,5,,3,1,Epworth,St,1618206,0.582,0.787,0,4.906261,8,4.5 +16390,0,0.553593,2,2,1,2,4,,3,1,Tireman,St,1623409,3.423,3.976,0,13.286222,6,4.5 +16555,0,0.22676,1,1,0,2,5,,3,1,Beechwood,St,1610105,0.364,0.591,0,5.442247,8,4.5 +16797,1,0.428424,2,0,0,2,5,,3,1,E I 96 Service Drive,,1609002,1.409,1.838,0,10.282165,8,4.5 +17258,0,0.121594,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.098,4.22,0,2.91825,5,5 +30469,0,0.257492,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.179814,0.15,4 +30779,0,0.368313,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.839505,0.15,4 +30780,0,0.250957,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.022978,0.15,4 +32814,0,0.228019,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.472445,0.15,4 +33646,0,0.327715,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.865172,0.15,4 +11613,0,0.081239,1,1,0,2,5,,3,1,Junction,St,1577210,0.965,1.047,0,1.949741,8,4.5 +11618,1,0.103803,1,0,0,1,1,RON,3,1,Livernois/E I 94,RAMP,1577208,0,0.104,0,,1.09,4 +12406,0,0.165432,1,1,0,2,4,,3,1,McGraw,St,1581903,2.083,2.248,0,3.970367,6,4.5 +12652,0,0.245306,1,1,0,2,4,,3,1,McGraw,St,1581903,1.837,2.083,0,5.887352,6,4.5 +13003,0,0.304316,2,2,1,2,3,,3,1,Livernois,Ave,1581701,3.17,3.474,0,7.303579,5,5 +14054,-1,0.190301,0,3,0,1,1,,3,1,W I 94,,1588802,24.394,24.585,0,,0.58,7 +14106,1,0.229314,1,0,0,1,1,ROF,3,1,W I 94/Livernois,RAMP,1589008,0,0.229,0,,2.24,5 +17263,0,0.157604,2,2,1,2,3,,3,1,Warren,Ave,1628604,3.679,3.837,0,3.782484,5,5 +17264,0,0.120526,2,2,1,2,3,,3,1,Warren,Ave,1628604,3.559,3.679,0,2.892635,5,5 +17265,0,0.18284,2,2,1,2,3,,3,1,Warren,Ave,1628604,3.376,3.559,0,4.388154,5,5 +32797,0,0.262114,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.290728,0.15,4 +32799,0,0.064789,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.554945,0.15,4 +13149,0,0.14455,2,2,0,2,4,,3,1,McGraw,St,1581903,1.546,1.69,0,3.469206,6,4.5 +13312,0,0.194898,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.975,3.17,0,4.677557,5,5 +11943,0,0.013949,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.961,2.975,0,0.334777,5,5 +14360,1,0.148898,1,0,0,1,1,RON,3,1,Livernois/W I 94,RAMP,1589007,0,0.149,0,,1.09,4 +12196,0,0.091947,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.869,2.961,0,2.206716,5,5 +12838,0,0.147093,1,1,0,2,4,,3,1,McGraw,St,1581903,1.69,1.837,0,3.53023,6,4.5 +16595,0,0.327781,1,1,0,2,5,,3,1,Epworth,St,1618206,0.254,0.582,0,7.866746,8,4.5 +16160,0,0.254545,1,1,0,2,5,,3,1,Epworth,St,1618206,0,0.254,0,6.109088,8,4.5 +32840,0,0.164344,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.944252,0.15,4 +11406,1,0.411395,3,0,0,1,1,,3,1,E I 94,,1576405,24.65,25.061,0,,0.58,7 +11614,0,0.412635,1,1,0,2,5,,3,1,Junction,St,1577210,0.553,0.965,0,9.903251,8,4.5 +14237,-1,0.396343,0,3,0,1,1,,3,1,W I 94,,1588802,24.585,24.981,0,,0.58,7 +16072,0,0.364216,1,1,0,2,5,,3,1,Beechwood,St,1610105,0,0.364,0,8.74119,8,4.5 +17261,0,0.148024,2,2,1,2,3,,3,1,Warren,Ave,1628604,3.837,3.985,0,3.55257,5,5 +17260,0,0.037129,2,2,1,2,3,,3,1,Warren,Ave,1628604,3.985,4.022,0,0.891107,5,5 +17259,0,0.076314,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.022,4.098,0,1.831539,5,5 +12111,0,0.140906,2,2,0,2,4,,3,1,Joy,Rd,1581806,0.853,0.994,0,3.381754,6,4.5 +12626,0,0.282414,2,2,0,2,3,,3,1,Grand River,Ave,1577408,8.105,8.388,0,6.777934,5,5 +12753,0,0.088448,1,1,0,2,7,,3,1,Maplewood,St,1581808,0.439,0.527,0,2.122756,7,4.5 +16064,0,0.309061,1,1,0,2,5,,3,1,Beechwood,St,1610105,0.845,1.154,0,7.417453,8,4.5 +16525,1,0.222494,2,0,0,2,5,,3,1,Turner,St,1609002,0.642,0.864,0,5.339848,8,4.5 +16551,0,0.335434,1,1,0,2,5,,3,1,Beechwood,St,1610105,1.154,1.489,0,8.050407,8,4.5 +16803,1,0.453914,2,0,0,2,5,,3,1,Turner,St,1609002,0.188,0.642,0,10.893941,8,4.5 +32067,0,0.269028,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.456661,0.15,4 +33885,0,0.532174,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.772166,0.15,4 +12212,1,0.231755,2,0,0,1,1,ROF,3,1,W I 96/Joy,RAMP,1582005,0,0.232,0,,2.24,5 +12324,0,0.267194,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.586,0.853,0,6.412646,6,4.5 +12565,0,0.042975,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.543,0.586,0,1.031399,6,4.5 +12628,0,0.253077,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.852,8.105,0,6.073849,5,5 +21666,1,0.164702,1,0,0,1,1,RON,3,1,Joy/E I 96,RAMP,4700037,0,0.165,0,,1.09,4 +16328,0,0.116157,1,1,0,2,5,,3,1,Beechwood,St,1610105,1.489,1.605,0,2.787767,8,4.5 +12752,0,0.055055,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.488,0.543,0,1.321309,6,4.5 +13011,0,0.022898,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.465,0.488,0,0.549549,6,4.5 +16294,1,0.038229,2,0,0,2,5,,3,1,Turner,St,1609002,0.15,0.188,0,0.917484,8,4.5 +16331,0,0.254068,1,1,0,2,5,,3,1,Beechwood,St,1610105,0.591,0.845,0,6.097643,8,4.5 +32844,0,0.239478,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.747463,0.15,4 +32846,0,0.007011,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.168275,0.15,4 +11656,0,0.15316,1,1,0,2,5,,3,1,Euclid,St,1583804,0,0.153,0,3.675852,8,4.5 +33645,0,0.270306,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.487352,0.15,4 +12754,0,0.097852,1,1,0,2,7,,3,1,Maplewood,St,1581808,0.527,0.625,0,2.348452,7,4.5 +12625,0,0.044336,2,2,0,2,3,,3,1,Grand River,Ave,1577408,8.388,8.432,0,1.064073,5,5 +32813,0,0.216679,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.200292,0.15,4 +11329,1,0.410966,3,0,0,1,1,,3,1,E I 94,,1576405,25.327,25.738,0,,0.58,7 +39926,1,0.291435,2,0,0,1,3,,3,1,DIBC Plaza to Canada,,4718952,0,0.291,0,,5,5 +11595,-1,0.235356,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0,0.235,0,5.648553,6,4.5 +11598,0,0.398724,1,1,0,2,5,,3,1,Scotten,St,1577306,1.953,2.352,0,9.569369,8,4.5 +12566,0,0.346688,2,2,0,2,4,,3,1,McGraw,St,1581903,2.716,3.063,0,8.320521,6,4.5 +13073,1,0.140532,1,0,0,1,1,RON,3,1,W Grand/E I 94,RAMP,1577309,0,0.141,0,,1.09,4 +13281,1,0.137671,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,0.884,1.022,0,3.304106,6,4.5 +13286,1,0.250479,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,0.634,0.884,0,6.011504,6,4.5 +14042,1,0.153842,2,0,0,1,1,ROF,3,1,W I 94/W Grand,RAMP,1589010,0,0.154,0,,2.24,5 +16514,0,0.189823,1,1,0,2,5,,3,1,Vinewood,St,1609505,2.024,2.213,0,4.555756,8,4.5 +16751,1,0.190694,1,0,0,2,5,,3,1,E I 94 Service Drive,,1609703,0,0.191,0,4.576663,8,4.5 +17254,0,0.026888,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.516,4.543,0,0.645319,5,5 +23587,0,0.098485,1,1,0,2,5,,3,1,24th,St,4705563,1.907,2.006,0,2.363632,8,4.5 +23997,-1,0.115906,0,1,0,2,5,,3,1,W I 94 Service Drive,,4710473,0,0.116,0,2.781756,8,4.5 +32049,0,0.110442,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.650612,0.15,4 +32263,0,0.298081,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.153938,0.15,4 +11609,1,0.143844,1,0,0,1,1,RON,3,1,30th/E I 94,RAMP,1577303,0,0.144,0,,1.09,4 +11611,0,0.054472,1,1,0,2,5,,3,1,30th,St,1577302,0.475,0.529,0,1.307334,8,4.5 +11597,0,0.109209,1,1,0,2,5,,3,1,Scotten,St,1577306,2.352,2.461,0,2.621015,8,4.5 +39928,0,0.067932,2,2,0,1,3,,3,1,Ambassador,Brg,4718953,0,0.068,0,,5,5 +13012,0,0.114294,2,2,0,2,4,,3,1,McGraw,St,1581903,2.576,2.69,0,2.743049,6,4.5 +13268,1,0.127435,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.147,1.274,0,3.058447,6,4.5 +13382,-1,0.146161,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0.479,0.625,0,3.507872,6,4.5 +17256,0,0.06469,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.301,4.366,0,1.55255,5,5 +23994,-1,0.134204,0,2,0,2,5,,3,1,W I 94 Service Drive,,4710473,0.253,0.387,0,3.220892,8,4.5 +30452,0,0.183602,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.40646,0.15,4 +30781,0,0.233113,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.594703,0.15,4 +30782,0,0.144043,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.457042,0.15,4 +33294,0,0.228758,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.490197,0.15,4 +11596,0,0.049525,1,1,0,2,5,,3,1,Scotten,St,1577306,2.461,2.51,0,1.188608,8,4.5 +11953,0,0.100128,2,2,0,2,4,,3,1,McGraw,St,1581903,2.455,2.555,0,2.403069,6,4.5 +17257,0,0.081381,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.22,4.301,0,1.953151,5,5 +23995,-1,0.137438,0,2,0,2,5,,3,1,W I 94 Service Drive,,4710473,0.116,0.253,0,3.29851,8,4.5 +12485,0,0.073323,1,1,0,2,5,,3,1,Scotten,St,1581901,0,0.073,0,1.759753,8,4.5 +13321,0,0.020609,2,2,0,2,4,,3,1,McGraw,St,1581903,2.555,2.576,0,0.494609,6,4.5 +11594,-1,0.184801,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0.235,0.42,0,4.435219,6,4.5 +12088,-1,0.058457,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0.42,0.479,0,1.402961,6,4.5 +13272,1,0.064542,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.082,1.147,0,1.549001,6,4.5 +17255,0,0.150272,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.366,4.516,0,3.606523,5,5 +12839,0,0.025833,2,2,0,2,4,,3,1,McGraw,St,1581903,2.69,2.716,0,0.620004,6,4.5 +39950,1,0.8614,3,0,0,2,5,,3,1,Lakeside,St,5494521,0,0.861,0,20.673609,8,4.5 +39924,1,0.373951,2,0,0,1,3,,3,1,DIBC Plaza to Canada,,4719480,0,0.374,0,,5,5 +40026,-1,0.007658,0,2,0,2,3,,4,3,Orchard Lake,Rd,5499978,0.032,0.04,0,0.183783,3.7,5 +14270,1,0.022466,2,0,0,2,4,,3,1,W I 94/W Grand,RAMP,1589010,0.154,0.176,0,0.539177,6,4.5 +13275,1,0.060513,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.022,1.082,0,1.452304,6,4.5 +11640,0,0.066267,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.141,0.207,0,1.590407,8,4.5 +13294,0,0.199406,1,1,0,2,4,,3,1,Grand,Blvd,1577308,0.434,0.634,0,4.785733,6,4.5 +13341,0,0.133748,2,2,0,2,4,,3,1,Grand,Blvd,1577308,0.301,0.434,0,3.20996,6,4.5 +16794,0,0.224355,1,1,0,2,5,,3,1,Vinewood,St,1609505,1.799,2.024,0,5.384513,8,4.5 +32050,0,0.172654,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.143692,0.15,4 +32051,0,0.225304,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.407308,0.15,4 +11599,0,0.107024,1,1,0,2,5,,3,1,Scotten,St,1577306,1.846,1.953,0,2.56858,8,4.5 +11639,0,0.140951,1,1,0,2,5,,3,1,Buchanan,St,1581905,0,0.141,0,3.382823,8,4.5 +11600,0,0.021265,1,1,0,2,5,,3,1,Scotten,St,1577306,1.825,1.846,0,0.510349,8,4.5 +23924,-1,0.025503,0,2,0,2,4,DV2,3,1,Grand,Blvd,4706941,0,0.026,0,0.612072,6,4.5 +13230,0,0.147913,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.207,0.355,0,3.549921,8,4.5 +32048,0,0.081304,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.951294,0.15,4 +11256,1,0.221574,3,0,0,1,1,,3,1,E I 94,,1576405,25.862,26.084,0,,0.58,7 +11945,1,0.148929,2,0,0,1,1,RFF,3,1,E I 94/I 96,RAMP,1581702,0,0.149,0,,0.58,7 +12213,1,0.127519,2,0,0,1,1,RFF,3,1,I 96/W I 94,RAMP,1582104,0.303,0.431,0,,0.58,7 +12407,0,0.120572,2,2,0,2,4,,3,1,McGraw,St,1581903,3.063,3.183,0,2.893737,6,4.5 +14204,-1,0.16688,0,3,0,1,1,,3,1,W I 94,,1588802,25.853,26.02,0,,0.58,7 +14435,-1,0.14548,0,3,0,1,1,,3,1,W I 94,,1588802,25.708,25.853,0,,0.58,7 +17252,0,0.222601,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.617,4.839,0,5.342412,5,5 +23246,0,0.466183,1,1,0,2,5,,3,1,24th,St,4705563,2.006,2.472,0,11.188388,8,4.5 +11494,1,0.124176,3,0,0,1,1,,3,1,E I 94,,1576405,25.738,25.862,0,,0.58,7 +17253,0,0.073906,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.543,4.617,0,1.773754,5,5 +17251,0,0.053277,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.839,4.893,0,1.278649,5,5 +12419,1,0.159734,1,0,0,1,1,RFS,3,1,E I 96/W I 94,RAMP,1582104,0.144,0.303,0,,0.22,6 +13072,1,0.274222,1,0,0,1,1,RFS,3,1,E I 94/W I 96,RAMP,1577310,0,0.274,0,,0.22,6 +12411,1,0.210242,1,0,0,1,1,ROF,3,1,W I 96/Grand,RAMP,1582007,0,0.21,0,,2.24,5 +12548,0,0.085116,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.09,9.175,0,2.042773,5,5 +12938,0,0.317828,1,1,0,2,5,,3,1,Euclid,St,1583804,0.595,0.913,0,7.627863,8,4.5 +12979,-1,0.490707,0,4,0,1,1,,3,1,W I 96,,1577405,2.487,2.978,0,,0.58,7 +13057,1,0.504598,4,0,0,1,1,,3,1,E I 96,,1577404,2.459,2.963,0,,0.58,7 +13146,1,0.143893,1,0,0,1,1,RON,3,1,Grand/E I 96,RAMP,1581902,0,0.144,0,,1.09,4 +13189,1,0.190887,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.801,1.992,0,4.581277,6,4.5 +13366,-1,0.187672,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.174,1.361,0,4.504134,6,4.5 +13546,0,0.259285,1,1,0,2,3,,3,1,Linwood,St,1584609,0.35,0.609,0,6.222831,5,5 +16115,0,0.072124,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0,0.072,0,1.73098,6,4.5 +16225,0,0.279139,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0.335,0.614,0,6.699334,6,4.5 +30777,0,0.25365,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.087601,0.15,4 +32849,0,0.2713,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.511196,0.15,4 +32850,0,0.271739,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.521725,0.15,4 +12029,0,0.058021,2,2,0,2,5,,3,1,Scotten,St,1581901,0.649,0.707,0,1.392502,8,4.5 +12484,1,0.174866,1,0,0,1,1,ROF,3,1,E I 96/Grand,RAMP,1581810,0,0.175,0,,2.24,5 +12594,0,0.017617,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.072,9.09,0,0.422802,5,5 +12618,0,0.288054,2,2,0,2,3,,3,1,Grand River,Ave,1577408,8.704,8.992,0,6.91329,5,5 +13192,1,0.0307,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.77,1.801,0,0.736808,6,4.5 +13370,-1,0.069282,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.063,1.132,0,1.662756,6,4.5 +16522,1,0.057197,3,0,0,2,5,,3,1,Turner,St,1609002,1.265,1.322,0,1.37272,8,4.5 +16704,1,0.056732,2,0,0,2,4,,3,1,Tireman,St,1623409,4.371,4.428,0,1.361576,6,4.5 +19536,-1,0.075604,0,3,0,2,5,,3,1,W I 96 Service Drive,,1877903,0.073,0.148,0,1.814494,8,4.5 +19537,-1,0.024316,0,3,0,2,5,,3,1,W I 96 Service Drive,,1877903,0.048,0.073,0,0.583592,8,4.5 +23918,-1,0.042772,0,2,0,2,4,,3,1,Tireman,St,4706952,0,0.043,0,1.02654,6,4.5 +32815,0,0.179301,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.303219,0.15,4 +17017,0,0.134775,2,2,1,2,4,,3,1,Tireman,St,1623409,4.236,4.371,0,3.234589,6,4.5 +12325,0,0.043285,2,2,0,2,5,,3,1,Scotten,St,1581901,0.606,0.649,0,1.038844,8,4.5 +16802,1,0.050673,3,0,0,2,5,,3,1,Turner,St,1609002,1.214,1.265,0,1.216155,8,4.5 +12410,1,0.160169,1,0,0,1,1,RON,3,1,Grand/W I 96,RAMP,1582006,0,0.16,0,,1.09,4 +32812,0,0.08701,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.088242,0.15,4 +13197,1,0.073369,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.697,1.77,0,1.760854,6,4.5 +13202,1,0.052937,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.633,1.686,0,1.270492,6,4.5 +13373,-1,0.038201,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.011,1.049,0,0.916826,6,4.5 +16116,1,0.028966,1,0,0,2,4,,3,1,Tireman,St,1623409,4.428,4.457,0,0.695174,6,4.5 +16288,1,0.018634,3,0,0,2,5,,3,1,E I 96 Service Drive,,1609002,1.322,1.341,0,0.447214,8,4.5 +16799,1,0.03155,3,0,0,2,5,,3,1,E I 96 Service Drive,,1609002,1.341,1.372,0,0.757188,8,4.5 +16990,1,0.034406,1,0,0,2,4,,3,1,Tireman,St,1623409,4.457,4.491,0,0.825751,6,4.5 +23917,-1,0.052634,0,1,0,2,4,,3,1,Tireman,St,4706952,0.043,0.095,0,1.263226,6,4.5 +16519,1,0.026744,3,0,0,2,5,,3,1,E I 96 Service Drive,,1609002,1.372,1.399,0,0.641853,8,4.5 +13379,-1,0.01698,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0.994,1.011,0,0.407515,6,4.5 +16283,1,0.010309,2,0,0,2,5,,3,1,E I 96 Service Drive,,1609002,1.399,1.409,0,0.247425,8,4.5 +13201,1,0.011224,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.686,1.697,0,0.269377,6,4.5 +13372,-1,0.013581,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.049,1.063,0,0.325943,6,4.5 +19535,-1,0.022034,0,3,0,2,5,,3,1,W I 96 Service Drive,,1877903,0.148,0.17,0,0.528805,8,4.5 +12227,0,0.090024,1,1,0,2,5,,3,1,Lothrop,St,1583905,0,0.09,0,2.160585,8,4.5 +12614,0,0.079757,2,2,0,2,3,,3,1,Grand River,Ave,1577408,8.992,9.072,0,1.914172,5,5 +16479,0,0.169576,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0.165,0.335,0,4.069812,6,4.5 +11638,0,0.054047,1,1,0,2,5,,3,1,Scotten,St,1581901,0.707,0.761,0,1.297127,8,4.5 +13368,-1,0.041311,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.132,1.174,0,0.991471,6,4.5 +16748,0,0.077553,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0.088,0.165,0,1.861266,6,4.5 +17048,0,0.015362,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0.072,0.088,0,0.368692,6,4.5 +13164,0,0.187493,1,1,0,2,5,,3,1,Euclid,St,1583804,0.408,0.595,0,4.499837,8,4.5 +17106,0,0.162834,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0.614,0.776,0,3.90801,6,4.5 +32068,0,0.253995,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.095887,0.15,4 +16222,0,0.054634,2,2,0,2,4,,3,1,Dexter,Ave,1613006,0.776,0.831,0,1.311225,6,4.5 +32811,0,0.248448,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.962757,0.15,4 +12544,0,0.239031,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.175,9.414,0,5.736738,5,5 +12977,-1,0.196797,0,4,0,1,1,,3,1,W I 96,,1577405,2.978,3.175,0,,0.58,7 +13187,1,0.315805,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.992,2.307,0,7.57932,6,4.5 +13361,-1,0.318195,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.361,1.679,0,7.636691,6,4.5 +30470,0,0.288869,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.932859,0.15,4 +32875,0,0.304064,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.297533,0.15,4 +13050,1,0.210598,4,0,0,1,1,,3,1,E I 96,,1577404,2.963,3.174,0,,0.58,7 +12535,0,0.161479,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.414,9.575,0,3.875484,5,5 +30778,0,0.114491,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.747775,0.15,4 +30788,0,0.129976,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.119415,0.15,4 +11954,0,0.072935,1,1,0,2,4,,3,1,McGraw,St,1581903,3.307,3.38,0,1.750445,6,4.5 +12668,0,0.172909,1,1,0,2,5,,3,1,Euclid,St,1583804,0.913,1.086,0,4.14982,8,4.5 +13545,0,0.279097,2,2,0,2,3,,3,1,Linwood,St,1584609,0.609,0.888,0,6.698336,5,5 +32848,0,0.251991,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.047786,0.15,4 +13228,0,0.222885,1,1,0,2,4,,3,1,Joy,Rd,1581806,1.324,1.547,0,5.349245,6,4.5 +13505,0,0.318279,1,1,0,2,5,,3,1,Calvert,St,1584802,0.295,0.613,0,7.638707,8,4.5 +13536,0,0.128083,2,2,0,2,3,,3,1,Linwood,St,1584609,2.215,2.343,0,3.073991,5,5 +13537,0,0.063653,2,2,0,2,3,,3,1,Linwood,St,1584609,2.151,2.215,0,1.527672,5,5 +14543,1,0.206503,3,0,0,2,4,,3,1,Rosa Parks,Blvd,1590905,2.695,2.902,0,4.956068,6,4.5 +14551,1,0.064063,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.668,1.732,0,1.537521,5,5 +16099,0,0.064094,1,1,0,2,5,,3,1,La Salle,Blvd,1619310,0,0.064,0,1.538247,8,4.5 +16113,0,0.256732,1,1,0,2,5,,3,1,Glendale,St,1617705,1.099,1.355,0,6.161557,8,4.5 +16117,-1,0.19241,0,2,0,2,5,,3,1,Elmhurst,St,1617608,0.509,0.701,0,4.617841,8,4.5 +16416,1,0.159478,2,0,0,2,5,,3,1,Tuxedo,St,1617607,0.703,0.863,0,3.827472,8,4.5 +16427,-1,0.230928,0,2,0,2,4,,3,1,14th,St,1615502,0.93,1.161,0,5.54228,6,4.5 +16596,0,0.195922,1,1,0,2,5,,3,1,Fullerton,St,1617703,0,0.196,0,4.702129,8,4.5 +16735,1,0.130064,2,0,0,2,5,,3,1,Tuxedo,St,1617607,1.111,1.241,0,3.121528,8,4.5 +16973,0,0.130122,1,1,0,2,5,,3,1,Webb,St,1619410,0.133,0.263,0,3.122918,8,4.5 +16996,-1,0.063819,0,2,0,2,4,,3,1,14th,St,1615502,0.135,0.199,0,1.531663,6,4.5 +17100,0,0.241625,2,2,1,2,4,,3,1,Dexter,Ave,1613006,2.26,2.502,0,5.799002,6,4.5 +22320,0,0.176929,3,3,1,2,3,,3,1,Davison,St,4702009,2.172,2.349,0,4.246301,5,5 +22733,0,0.265856,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.06,1.326,0,6.380549,8,4.5 +22958,1,0.313611,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,0.298,0.611,0,7.526656,8,4.5 +23357,-1,0.313606,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0,0.314,0,7.526539,8,4.5 +32090,0,0.257187,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.172484,0.15,4 +32851,0,0.058329,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.399897,0.15,4 +32852,0,0.243117,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.834818,0.15,4 +32859,0,0.186573,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.477753,0.15,4 +33897,0,0.391643,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.399431,0.15,4 +33900,0,0.174307,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.183374,0.15,4 +33901,0,0.341343,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.192242,0.15,4 +13506,0,0.196132,1,1,0,2,5,,3,1,Calvert,St,1584802,0.099,0.295,0,4.707157,8,4.5 +16155,0,0.254938,1,1,0,2,5,,3,1,Boston,Blvd,1617601,0.436,0.691,0,6.118511,8,4.5 +16591,0,0.216583,1,1,0,2,5,,3,1,Kay,St,1618509,0.213,0.43,0,5.197981,8,4.5 +16602,-1,0.196055,0,2,0,2,5,,3,1,Elmhurst,St,1617608,0,0.196,0,4.705316,8,4.5 +16814,0,0.260391,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.618,1.878,0,6.249377,6,4.5 +17035,1,0.350737,2,0,0,2,5,,3,1,Tuxedo,St,1617607,0.353,0.703,0,8.417695,8,4.5 +30589,0,0.290208,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.965003,0.15,4 +32826,0,0.235104,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.642495,0.15,4 +33245,0,0.320044,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.681065,0.15,4 +16110,0,0.163524,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,0.201,0.364,0,3.924569,8,4.5 +16417,0,0.215884,1,1,0,2,5,,3,1,Boston,Blvd,1617601,0.22,0.436,0,5.181215,8,4.5 +16983,0,0.168535,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,0.364,0.533,0,4.044845,8,4.5 +32035,0,0.236127,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.667059,0.15,4 +32828,0,0.154217,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.701219,0.15,4 +11635,0,0.253327,1,1,1,2,5,,3,1,Elmhurst,St,1581710,1.301,1.554,0,6.079845,8,4.5 +16421,0,0.258538,1,1,0,2,5,,3,1,Fullerton,St,1617909,0.395,0.654,0,6.204916,8,4.5 +16471,0,0.312629,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.944,2.257,0,7.503092,6,4.5 +16536,0,0.051583,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.878,1.93,0,1.238002,6,4.5 +16305,0,0.013989,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.93,1.944,0,0.335738,6,4.5 +16217,0,0.003927,2,2,1,2,4,,3,1,Dexter,Ave,1613006,2.257,2.26,0,0.094239,6,4.5 +16306,0,0.1125,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.344,1.457,0,2.699997,6,4.5 +16815,0,0.238591,2,2,0,2,4,,3,1,Dexter,Ave,1613006,1.092,1.331,0,5.726178,6,4.5 +22599,0,0.099978,1,1,0,2,5,,3,1,Chicago,St,4705652,0,0.1,0,2.399476,8,4.5 +13493,0,0.051023,1,1,0,2,5,,3,1,Chicago,St,1584804,0.105,0.156,0,1.224547,8,4.5 +16212,0,0.052255,1,1,0,2,5,,3,1,Petoskey,Ave,1615408,0.193,0.245,0,1.254118,8,4.5 +13494,0,0.104754,1,1,0,2,5,,3,1,Chicago,St,1584804,0,0.105,0,2.514102,8,4.5 +16112,0,0.013065,1,1,0,2,5,,3,1,McQuade,St,1617810,0.24,0.253,0,0.313571,8,4.5 +16221,0,0.108234,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.457,1.565,0,2.597619,6,4.5 +17104,0,0.053062,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.565,1.618,0,1.273487,6,4.5 +23265,0,0.131616,1,1,0,2,5,,3,1,Chicago,Blvd,4705652,0.166,0.298,0,3.158792,8,4.5 +23607,0,0.065984,1,1,0,2,5,,3,1,Chicago,Blvd,4705652,0.1,0.166,0,1.583621,8,4.5 +23901,1,0.067047,1,0,0,2,5,,3,1,Dexter/Chicago Cutoff,,4707054,0,0.067,0,1.609134,8,4.5 +16537,0,0.013843,2,2,0,2,4,,3,1,Dexter,Ave,1613006,1.331,1.344,0,0.332231,6,4.5 +16369,-1,0.313045,0,2,0,2,5,,3,1,Elmhurst,St,1617608,0.196,0.509,0,7.513078,8,4.5 +32857,0,0.224936,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.398465,0.15,4 +32860,0,0.150995,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.623892,0.15,4 +13317,1,0.165436,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.954,3.119,0,3.970463,6,4.5 +13531,0,0.155603,2,2,0,2,3,,3,1,Linwood,St,1584609,3.104,3.26,0,3.734484,5,5 +13532,0,0.22966,2,2,0,2,3,,3,1,Linwood,St,1584609,2.875,3.104,0,5.511837,5,5 +16364,0,0.310139,1,1,0,2,5,,3,1,Fullerton,St,1617703,0.196,0.506,0,7.443335,8,4.5 +22321,0,0.165753,3,3,1,2,3,,3,1,Davison,St,4702009,2.006,2.172,0,3.978076,5,5 +22322,0,0.505732,3,3,1,2,3,,3,1,Davison,St,4702009,1.501,2.006,0,12.137577,5,5 +22352,-1,0.165404,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.972,3.137,0,3.969685,6,4.5 +33898,0,0.424583,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.189987,0.15,4 +33899,0,0.425665,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.21596,0.15,4 +16810,0,0.102304,2,2,1,2,4,,3,1,Dexter,Ave,1613006,2.502,2.604,0,2.455293,6,4.5 +11947,1,0.042077,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.912,2.954,0,1.009849,6,4.5 +12201,1,0.305168,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.606,2.912,0,7.324041,6,4.5 +16478,1,0.125611,1,0,0,2,5,DV2,3,1,Kendall,St,1615510,0.643,0.769,0,3.014668,8,4.5 +22353,-1,0.064418,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.907,2.972,0,1.546042,6,4.5 +22354,-1,0.27986,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.627,2.907,0,6.71665,6,4.5 +23779,-1,0.137577,0,1,0,2,5,DV2,3,1,Kendall,St,4707876,1.763,1.901,0,3.301842,8,4.5 +16747,0,0.011375,1,1,0,2,5,,3,1,Kendall,St,1615510,0.632,0.643,0,0.272995,8,4.5 +16166,1,0.020263,1,0,0,2,5,,3,1,Kendall,St,1615510,0.769,0.789,0,0.486318,8,4.5 +13530,0,0.011171,1,1,0,2,3,,3,1,Linwood,St,1584609,3.26,3.271,0,0.268101,5,5 +13533,0,0.219801,2,2,0,2,3,,3,1,Linwood,St,1584609,2.655,2.875,0,5.275215,5,5 +13534,0,0.1242,2,2,0,2,3,,3,1,Linwood,St,1584609,2.531,2.655,0,2.980794,5,5 +13535,0,0.188301,2,2,0,2,3,,3,1,Linwood,St,1584609,2.343,2.531,0,4.519222,5,5 +13008,1,0.175553,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,3.119,3.294,0,4.213279,6,4.5 +22351,-1,0.175553,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,3.137,3.312,0,4.213271,6,4.5 +32915,0,0.230216,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.525189,0.15,4 +32918,0,0.211985,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.087647,0.15,4 +32919,0,0.187307,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.49536,0.15,4 +32925,0,0.197323,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.735742,0.15,4 +32917,0,0.115117,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.762806,0.15,4 +12835,1,0.160053,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,3.294,3.454,0,3.841283,6,4.5 +16167,-1,0.153848,0,2,0,2,4,,3,1,14th,St,1615502,1.161,1.315,0,3.69235,6,4.5 +22350,-1,0.15982,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,3.312,3.472,0,3.835682,6,4.5 +17047,-1,0.010416,0,1,0,2,4,,3,1,14th,St,1615502,1.315,1.325,0,0.249986,6,4.5 +14542,0,0.009294,2,2,0,2,4,,3,1,Rosa Parks,Blvd,1590905,2.902,2.911,0,0.223046,6,4.5 +13492,0,0.167341,1,1,0,2,4,,3,1,Clairmount,St,1584807,0,0.167,0,4.01618,6,4.5 +13503,0,0.154112,1,1,0,2,5,,3,1,Calvert,St,1584802,0.779,0.933,0,3.698686,8,4.5 +13539,0,0.22405,2,2,0,2,3,,3,1,Linwood,St,1584609,1.612,1.836,0,5.377199,5,5 +13543,0,0.227679,2,2,0,2,3,,3,1,Linwood,St,1584609,1.104,1.332,0,5.464307,5,5 +15871,-1,0.20123,0,2,0,2,4,,3,1,14th,St,1621303,1.311,1.512,0,4.829524,6,4.5 +16988,-1,0.134838,0,2,0,2,4,,3,1,14th,St,1621303,1.814,1.949,0,3.236123,6,4.5 +17093,-1,0.135445,0,2,0,2,4,,3,1,14th,St,1615502,0,0.135,0,3.250677,6,4.5 +22681,1,0.24479,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,0.611,0.856,0,5.874966,8,4.5 +23355,-1,0.244872,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0.314,0.558,0,5.876926,8,4.5 +32071,0,0.238645,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.727476,0.15,4 +12918,0,0.284014,1,1,0,2,4,,3,1,Joy,Rd,1581806,1.547,1.831,0,6.816329,6,4.5 +13542,0,0.033825,2,2,0,2,3,,3,1,Linwood,St,1584609,1.332,1.365,0,0.811797,5,5 +32854,0,0.238943,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.734643,0.15,4 +13541,0,0.232701,2,2,0,2,3,,3,1,Linwood,St,1584609,1.365,1.598,0,5.584825,5,5 +13540,0,0.013843,2,2,0,2,3,,3,1,Linwood,St,1584609,1.598,1.612,0,0.332241,5,5 +13504,0,0.165933,1,1,0,2,5,,3,1,Calvert,St,1584802,0.613,0.779,0,3.982381,8,4.5 +13538,0,0.315044,2,2,0,2,3,,3,1,Linwood,St,1584609,1.836,2.151,0,7.561046,5,5 +16209,0,0.289326,1,1,0,2,5,,3,1,La Salle,Blvd,1621208,1.112,1.401,0,6.943832,8,4.5 +17033,1,0.055139,2,0,0,2,5,,3,1,Tuxedo,St,1617607,1.056,1.111,0,1.323336,8,4.5 +22544,0,0.083479,1,1,0,2,5,,3,1,La Salle,Blvd,4704949,0,0.084,0,2.003507,8,4.5 +16154,1,0.193053,2,0,0,2,5,,3,1,Tuxedo,St,1617607,0.863,1.056,0,4.633283,8,4.5 +13491,0,0.154339,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.167,0.322,0,3.704126,6,4.5 +16301,-1,0.184658,0,2,0,2,4,,3,1,14th,St,1621303,1.126,1.311,0,4.431798,6,4.5 +32072,0,0.24214,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.811368,0.15,4 +33643,0,0.266998,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.407944,0.15,4 +32066,0,0.064627,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.551041,0.15,4 +13501,0,0.166553,1,1,0,2,5,,3,1,Calvert,St,1584802,1.12,1.286,0,3.997284,8,4.5 +14553,1,0.223401,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.255,1.478,0,5.361633,5,5 +16114,-1,0.1461,0,2,0,2,4,,3,1,14th,St,1621303,1.668,1.814,0,3.506406,6,4.5 +23337,1,0.189823,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,0.933,1.123,0,4.555744,8,4.5 +23352,-1,0.189562,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0.636,0.825,0,4.549497,8,4.5 +16365,-1,0.077305,0,2,0,2,4,,3,1,14th,St,1621303,1.591,1.668,0,1.855312,6,4.5 +23353,-1,0.077166,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0.558,0.636,0,1.851994,8,4.5 +23672,1,0.077028,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,0.856,0.933,0,1.848683,8,4.5 +32069,0,0.067654,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.62369,0.15,4 +32827,0,0.15269,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.664562,0.15,4 +32420,0,0.06113,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.467112,0.15,4 +32070,0,0.047872,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.148938,0.15,4 +16889,-1,0.065689,0,2,0,2,4,,3,1,14th,St,1621303,1.512,1.577,0,1.576529,6,4.5 +16597,-1,0.013498,0,2,0,2,4,,3,1,14th,St,1621303,1.577,1.591,0,0.323963,6,4.5 +13502,0,0.186635,1,1,0,2,5,,3,1,Calvert,St,1584802,0.933,1.12,0,4.479232,8,4.5 +14552,1,0.190071,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.478,1.668,0,4.561715,5,5 +14557,1,0.01355,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.241,1.255,0,0.325206,5,5 +23000,0,0.132738,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.927,1.06,0,3.185722,8,4.5 +11990,1,0.196079,3,0,0,1,2,,3,1,S M 10,,1577509,6.456,6.652,0,,0.58,7 +13252,-1,0.21277,0,3,0,1,2,,3,1,N M 10,,1577510,6.466,6.678,0,,0.58,7 +13398,1,0.141035,1,0,0,1,2,ROF,3,1,N M 10/Glendale,RAMP,1585210,0,0.141,0,,2.24,5 +13399,1,0.24398,1,0,0,1,2,RFS,3,1,N M 10/E M 8,RAMP,1585209,0,0.244,0,,0.22,6 +13513,1,0.122426,1,0,0,1,2,RON,3,1,Glandale/S M 10,RAMP,1584708,0,0.122,0,,1.09,4 +13519,0,0.069093,1,1,1,2,5,,3,1,Glendale,St,1584707,0.131,0.2,0,1.65823,8,4.5 +13520,0,0.130481,1,1,1,2,5,,3,1,Glendale,St,1584707,0,0.131,0,3.131556,8,4.5 +14540,1,0.268651,1,0,0,1,2,RFS,3,1,W M 8/N M 10,RAMP,1590906,0,0.269,0,,0.22,6 +14545,1,0.223233,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,2.294,2.517,0,5.357591,5,5 +14547,1,0.378404,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.858,2.236,0,9.081693,5,5 +14575,1,0.315654,1,0,0,1,2,RFS,3,2,W M 8/S M 10,RAMP,1590902,0,0.316,0,,0.22,6 +16467,1,0.130449,1,0,0,2,7,,3,1,Tuxedo,St,1617607,1.241,1.371,0,3.130778,7,4.5 +16678,-1,0.131028,0,2,0,2,5,,3,1,Elmhurst,St,1617608,0.887,1.018,0,3.144665,8,4.5 +17059,-1,0.224604,0,2,0,2,4,,3,1,14th,St,1615502,0.706,0.93,0,5.390491,6,4.5 +22288,-1,0.235931,0,3,0,1,2,,3,1,W M 8,,4702011,0.126,0.361,0,,0.58,7 +22316,1,0.262936,3,0,0,1,2,,3,2,E M 8,,4702009,2.655,2.918,0,,0.58,7 +23633,0,0.122803,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.762,1.885,0,2.947264,8,4.5 +24284,1,0.302074,1,0,0,1,2,RFS,3,1,S M 10/E M 8,RAMP,4710290,0,0.302,0,,0.22,6 +33902,0,0.276593,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.638242,0.15,4 +16180,-1,0.336413,0,2,0,2,4,,3,1,14th,St,1615502,0.369,0.706,0,8.073919,6,4.5 +16673,0,0.162791,1,1,0,2,5,,3,1,Glendale,St,1617705,1.444,1.606,0,3.906989,8,4.5 +16991,-1,0.186114,0,2,0,2,5,,3,1,Elmhurst,St,1617608,0.701,0.887,0,4.466725,8,4.5 +32091,0,0.329078,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.89788,0.15,4 +32855,0,0.123305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.959329,0.15,4 +16987,0,0.088356,1,1,0,2,5,,3,1,Glendale,St,1617705,1.355,1.444,0,2.120533,8,4.5 +16433,-1,0.106229,0,2,0,2,4,,3,1,14th,St,1615502,0.263,0.369,0,2.549504,6,4.5 +16685,-1,0.06385,0,2,0,2,4,,3,1,14th,St,1615502,0.199,0.263,0,1.532402,6,4.5 +14546,1,0.057671,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,2.236,2.294,0,1.384111,5,5 +12000,1,0.310541,3,0,0,1,2,,3,1,S M 10,,1577509,6.107,6.417,0,,0.58,7 +13253,-1,0.223179,0,3,0,1,2,,3,1,N M 10,,1577510,6.243,6.466,0,,0.58,7 +13255,-1,0.147481,0,3,0,1,2,,3,1,N M 10,,1577510,6.095,6.243,0,,0.58,7 +14544,1,0.17833,3,0,0,2,4,,3,1,Rosa Parks,Blvd,1590905,2.517,2.695,0,4.27993,6,4.5 +22290,-1,0.043498,0,3,0,2,3,DIV,3,1,Davison,St,4702011,0.082,0.126,0,1.043951,5,5 +22318,1,0.133545,3,0,0,2,3,DIV,3,1,Davison,St,4702009,2.512,2.645,0,3.205075,5,5 +24286,1,0.211169,1,0,0,1,2,ROF,3,1,N M 10/Davison,RAMP,4710289,0,0.211,0,,2.24,5 +22319,0,0.162891,3,3,1,2,3,,3,1,Davison,St,4702009,2.349,2.512,0,3.909395,5,5 +22291,-1,0.082104,0,3,0,2,3,DIV,3,1,Davison,St,4702011,0,0.082,0,1.970484,5,5 +13521,1,0.198454,1,0,0,1,2,RFS,3,1,E M 8/S M 10,RAMP,1584706,0,0.198,0,,0.22,6 +23296,0,0.244248,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.885,2.129,0,5.861959,8,4.5 +22976,1,0.023944,1,0,0,2,3,,3,1,Woodrow Wilson,St,4705617,2.129,2.153,0,0.574649,5,5 +22317,1,0.010019,3,0,0,1,2,,3,1,E M 8,,4702009,2.645,2.655,0,,0.58,7 +11999,1,0.039154,3,0,0,1,2,,3,1,S M 10,,1577509,6.417,6.456,0,,0.58,7 +11972,1,0.415544,3,0,0,1,2,,3,1,S M 10,,1577509,6.821,7.236,0,,0.58,7 +13251,-1,0.291913,0,3,0,1,2,,3,1,N M 10,,1577510,6.678,6.97,0,,0.58,7 +13511,0,0.168259,2,2,0,2,5,,3,1,Webb,St,1584710,0,0.168,0,4.038208,8,4.5 +15650,-1,0.076117,0,3,0,2,5,,3,1,Elmhurst,St,1591106,0.13,0.206,0,1.826803,8,4.5 +22916,0,0.101832,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.479,1.581,0,2.443972,8,4.5 +23553,0,0.052481,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.326,1.378,0,1.259532,8,4.5 +33677,0,0.208849,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.012382,0.15,4 +14548,1,0.062622,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.795,1.858,0,1.502933,5,5 +14549,1,0.051636,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.744,1.795,0,1.239266,5,5 +14550,0,0.011702,2,2,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.732,1.744,0,0.280854,5,5 +23209,0,0.101066,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.378,1.479,0,2.425592,8,4.5 +11987,1,0.168602,3,0,0,1,2,,3,1,S M 10,,1577509,6.652,6.821,0,,0.58,7 +22626,0,0.181323,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.581,1.762,0,4.351742,8,4.5 +27380,0,0.183793,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.411026,0.15,4 +32089,0,0.010235,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.245635,0.15,4 +13512,1,0.109628,1,0,0,1,2,ROF,3,1,E M 8/Woodrow Wilson,RAMP,1584709,0,0.11,0,,2.24,5 +23419,-1,0.012527,0,3,0,2,5,,3,1,S M 10 Service Drive,,4705973,0,0.013,0,0.300647,8,4.5 +13250,-1,0.249729,0,3,0,1,2,,3,1,N M 10,,1577510,6.97,7.22,0,,0.58,7 +13396,1,0.130563,1,0,0,1,2,ROF,3,1,N M 10/Webb,RAMP,1585302,0,0.131,0,,2.24,5 +13507,1,0.127542,1,0,0,1,2,RON,3,1,Webb/S M 10,RAMP,1584801,0,0.128,0,,1.09,4 +13510,0,0.040016,2,2,0,2,5,,3,1,Webb,St,1584710,0.168,0.208,0,0.960376,8,4.5 +17363,1,0.02677,1,0,0,2,5,,3,1,S M 10 Service Drive,,1626010,0,0.027,0,0.64249,8,4.5 +13397,1,0.121956,1,0,0,1,2,RON,3,1,Webb/N M 10,RAMP,1585301,0,0.122,0,,1.09,4 +13509,0,0.048071,2,2,0,2,5,,3,1,Webb,St,1584710,0.208,0.256,0,1.153693,8,4.5 +13516,0,0.126375,1,1,1,2,5,,3,2,Glendale,St,1584707,0.383,0.509,0,3.033008,8,4.5 +17040,0,0.193787,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.194,1.388,0,4.650894,6,4.5 +22286,-1,0.319246,0,4,0,1,2,,3,2,W M 8,,4702011,0.425,0.744,0,,0.58,7 +22314,1,0.297471,4,0,0,1,2,,3,2,E M 8,,4702009,2.918,3.216,0,,0.58,7 +32085,0,0.139795,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.355087,0.15,4 +32086,0,0.294522,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.068526,0.15,4 +33879,0,0.303763,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.290323,0.15,4 +13517,0,0.135583,1,1,1,2,5,,3,2,Glendale,St,1584707,0.247,0.383,0,3.253989,8,4.5 +13518,0,0.047352,1,1,1,2,5,,3,1,Glendale,St,1584707,0.2,0.247,0,1.136442,8,4.5 +32088,0,0.10448,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.507515,0.15,4 +16741,0,0.055688,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.388,1.444,0,1.336501,6,4.5 +22287,-1,0.063677,0,3,0,1,2,,3,2,W M 8,,4702011,0.361,0.425,0,,0.58,7 +24283,1,0.064233,2,0,0,1,2,RFF,3,2,S M 10/E M 8,RAMP,4710290,0.302,0.366,0,,0.58,7 +16473,0,0.06644,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.444,1.51,0,1.594552,6,4.5 +16474,0,0.154918,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,0.971,1.126,0,3.71804,6,4.5 +16159,0,0.068305,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.126,1.194,0,1.639311,6,4.5 +50,0,0.244897,1,1,1,2,4,,3,3,9 Mile,Rd,607709,2.25,2.495,0,5.87754,6,4.5 +972,-1,0.474782,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.95,12.425,0,11.394771,5,5 +1209,-1,0.079516,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,9.627,9.706,0,1.908384,5,5 +1458,1,0.43301,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.987,12.42,0,10.392236,5,5 +12006,1,0.291855,3,0,0,1,2,,3,1,S M 10,,1577509,4.742,5.034,0,,0.58,7 +12832,1,0.250393,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,9.581,9.831,0,6.009425,5,5 +13266,-1,0.252311,0,3,0,1,2,,3,1,N M 10,,1577510,4.765,5.018,0,,0.58,7 +13298,0,0.239015,2,2,0,2,4,,3,1,Fenkell,St,1579605,9.182,9.42,0,5.736363,6,4.5 +14577,1,0.412549,2,0,0,2,5,,3,1,Keeler,Ave,1590901,2.612,3.024,0,9.90117,8,4.5 +15910,-1,0.240536,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,0.895,1.135,0,5.772861,5,5 +15944,1,0.230024,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,0.9,1.13,0,5.520568,5,5 +17859,0,0.313748,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,15.222,15.536,0,7.529948,5,5 +18079,0,0.241269,1,1,0,2,3,,3,1,McNichols,Rd,1680701,21.392,21.633,0,5.790463,5,5 +19402,0,0.218296,2,2,0,2,4,,3,1,John R,St,1715605,1.393,1.611,0,5.239106,6,4.5 +19677,1,0.043519,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,9.613,9.656,0,1.044448,5,5 +22061,0,0.242081,2,2,0,2,3,,3,1,Wyoming,St,4700001,7.002,7.244,0,5.80994,5,5 +22663,-1,0.402714,0,2,0,2,5,,3,1,Hughes,St,4705979,1.217,1.62,0,9.665147,8,4.5 +23744,0,0.199854,1,1,0,2,4,,3,1,Puritan,St,4707953,4.917,5.117,0,4.796487,6,4.5 +27418,0,0.326242,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.829801,0.15,4 +27464,0,0.302298,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.255158,0.15,4 +30973,0,0.449107,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.778563,0.15,4 +32861,0,0.243345,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.840271,0.15,4 +32873,0,0.473073,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.353759,0.15,4 +33020,0,0.253242,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.077818,0.15,4 +33088,0,0.591145,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.187491,0.15,4 +33698,0,0.27993,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.718313,0.15,4 +12053,1,0.430629,3,0,0,1,2,,3,1,S M 10,,1577509,3.841,4.272,0,,0.58,7 +12198,1,0.251671,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,8.582,8.834,0,6.040095,5,5 +13122,0,0.716521,2,2,0,2,4,,3,1,Fenkell,St,1579605,8.221,8.938,0,17.196503,6,4.5 +13293,-1,0.550173,0,3,0,1,2,,3,1,N M 10,,1577510,3.726,4.276,0,,0.58,7 +14581,1,0.823598,2,0,0,2,5,,3,1,Keeler,Ave,1590901,1.438,2.261,0,19.76635,8,4.5 +16466,0,0.463462,1,1,0,2,5,,3,1,Curtis,St,1620803,1.447,1.911,0,11.123079,8,4.5 +18359,0,0.525859,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,14.385,14.91,0,12.620625,5,5 +19158,0,0.468789,1,1,0,2,3,,3,1,McNichols,Rd,1680701,20.51,20.979,0,11.250935,5,5 +22009,0,0.375456,2,2,0,2,3,,3,1,Wyoming,St,4700001,6.007,6.382,0,9.010947,5,5 +23421,-1,0.444647,0,2,0,2,5,,3,1,Hughes,St,4705979,0.441,0.886,0,10.67152,8,4.5 +23747,0,0.465759,1,1,0,2,4,,3,1,Puritan,St,4707953,4.041,4.507,0,11.178205,6,4.5 +32869,0,0.499206,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.980936,0.15,4 +33075,0,0.50301,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.072247,0.15,4 +33079,0,0.505422,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.130139,0.15,4 +33083,0,0.504607,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.110563,0.15,4 +33084,0,0.248992,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.975819,0.15,4 +33704,0,0.507884,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.189209,0.15,4 +11933,0,0.272773,2,2,0,2,4,,3,1,Fenkell,St,1579605,7.949,8.221,0,6.546562,6,4.5 +12054,1,0.170524,4,0,0,1,2,,3,1,S M 10,,1577509,3.671,3.841,0,,0.58,7 +13296,-1,0.312095,0,3,0,1,2,,3,1,N M 10,,1577510,3.414,3.726,0,,0.58,7 +13404,1,0.150947,1,0,0,1,2,ROF,3,1,N M 10/Wyoming,RAMP,1585110,0,0.151,0,,2.24,5 +13554,1,0.21472,1,0,0,1,2,RON,3,1,N Wyoming/S M 10,RAMP,1584601,0,0.215,0,,1.09,4 +17557,0,0.522168,1,1,0,2,3,,3,1,McNichols,Rd,1680701,19.988,20.51,0,12.532036,5,5 +21675,0,0.16844,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.508,5.676,0,4.042559,5,5 +23420,-1,0.441247,0,2,0,2,5,,3,1,Hughes,St,4705979,0,0.441,0,10.58993,8,4.5 +23748,0,0.522848,1,1,0,2,4,,3,1,Puritan,St,4707953,3.518,4.041,0,12.548349,6,4.5 +32935,0,0.411982,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.887573,0.15,4 +33074,0,0.515501,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.37203,0.15,4 +33076,0,0.252704,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.064886,0.15,4 +33705,0,0.504024,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.096582,0.15,4 +12056,1,0.239275,3,0,0,1,2,,3,1,S M 10,,1577509,3.431,3.671,0,,0.58,7 +13405,1,0.105494,1,0,0,1,2,RON,3,1,Wyoming/N M 10,RAMP,1585109,0,0.105,0,,1.09,4 +13556,1,0.099606,2,0,0,1,2,ROF,3,1,S M 10/Wyoming,RAMP,1584509,0,0.1,0,,2.24,5 +14586,-1,0.366967,0,3,0,2,5,,3,1,James Couzens,Fwy,1590805,3.126,3.493,0,8.807206,8,4.5 +21411,0,0.155299,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.228,5.383,0,3.727179,5,5 +23750,0,0.189051,1,1,0,2,4,,3,1,Puritan,St,4707953,3.274,3.463,0,4.537214,6,4.5 +33880,0,0.233253,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.598082,0.15,4 +32937,0,0.012568,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.301627,0.15,4 +13555,1,0.23815,2,0,0,1,2,RON,3,1,Wyoming/S M 10,RAMP,1584510,0,0.238,0,,1.09,4 +14582,1,0.060573,2,0,0,2,5,,3,1,Keeler,Ave,1590901,1.377,1.438,0,1.453745,8,4.5 +22116,0,0.124965,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.011,5.136,0,2.999155,5,5 +14607,1,0.078535,3,0,0,2,5,,3,1,Keeler/James Couzens Fwy,Ramp,1590804,3.541,3.619,0,1.884847,8,4.5 +21608,0,0.065811,2,2,1,2,3,,3,1,Wyoming,St,4700001,5.162,5.228,0,1.579458,5,5 +21850,0,0.02549,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.136,5.162,0,0.611755,5,5 +14583,1,0.014643,4,0,0,2,5,,3,1,Keeler,Ave,1590901,1.363,1.377,0,0.351437,8,4.5 +13403,1,0.036274,1,0,0,2,5,,3,1,James Couzens,Fwy,1585110,0.151,0.187,0,0.870578,8,4.5 +14585,-1,0.012964,0,4,0,2,5,,3,1,James Couzens,Fwy,1590805,3.493,3.506,0,0.311138,8,4.5 +21925,0,0.12507,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.383,5.508,0,3.001684,5,5 +23749,0,0.054845,1,1,0,2,4,,3,1,Puritan,St,4707953,3.463,3.518,0,1.316273,6,4.5 +21461,0,0.163736,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.676,5.84,0,3.929658,5,5 +21251,0,0.166781,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.84,6.007,0,4.002747,5,5 +33071,0,0.077632,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.863172,0.15,4 +33069,0,0.249932,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.998365,0.15,4 +33073,0,0.253567,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.08562,0.15,4 +16734,0,0.53072,1,1,0,2,5,,3,1,Curtis,St,1620803,0.917,1.447,0,12.737278,8,4.5 +18686,0,0.466714,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,13.918,14.385,0,11.201132,5,5 +21518,0,0.248085,2,2,0,2,3,,3,1,Wyoming,St,4700001,6.507,6.755,0,5.954044,5,5 +33077,0,0.499274,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.982574,0.15,4 +33080,0,0.249384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.985206,0.15,4 +33082,0,0.51783,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.427913,0.15,4 +17032,0,0.054885,1,1,0,2,5,,3,1,Curtis,St,1620803,0.862,0.917,0,1.317238,8,4.5 +16534,0,0.167072,1,1,0,2,5,,3,1,Curtis,St,1620803,0.695,0.862,0,4.009738,8,4.5 +21731,0,0.125025,2,2,0,2,3,,3,1,Wyoming,St,4700001,6.382,6.507,0,3.000603,5,5 +21303,0,0.246995,2,2,0,2,3,,3,1,Wyoming,St,4700001,6.755,7.002,0,5.927873,5,5 +33081,0,0.250212,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.00508,0.15,4 +33078,0,0.247858,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.948585,0.15,4 +12007,1,0.470585,3,0,0,1,2,,3,1,S M 10,,1577509,4.272,4.742,0,,0.58,7 +12643,1,0.330432,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,8.082,8.413,0,7.930373,5,5 +13267,-1,0.489792,0,3,0,1,2,,3,1,N M 10,,1577510,4.276,4.765,0,,0.58,7 +14580,1,0.106568,1,0,0,2,5,,3,1,Keeler,Ave,1590901,2.261,2.368,0,2.557624,8,4.5 +18854,0,0.144811,1,1,0,2,3,,3,1,McNichols,Rd,1680701,20.99,21.135,0,3.475457,5,5 +23169,-1,0.076521,0,2,0,2,5,,3,1,Hughes,St,4705979,0.886,0.962,0,1.836511,8,4.5 +23745,0,0.2512,1,1,0,2,4,,3,1,Puritan,St,4707953,4.666,4.917,0,6.028808,6,4.5 +32862,0,0.159332,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.823958,0.15,4 +32922,0,0.265536,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.372865,0.15,4 +33086,0,0.249727,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.99344,0.15,4 +33703,0,0.362049,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.68918,0.15,4 +13553,1,0.180859,1,0,0,1,2,ROF,3,1,S M 10/Livernois,RAMP,1584604,0,0.181,0,,2.24,5 +24268,1,0.190188,1,0,0,1,2,RON,3,1,Livernois/N M 10,RAMP,4711346,0,0.19,0,,1.09,4 +12478,1,0.169721,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,8.413,8.582,0,4.073315,5,5 +12089,0,0.232254,2,2,0,2,4,,3,1,Fenkell,St,1579605,8.949,9.182,0,5.574102,6,4.5 +13140,1,0.068831,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.763,7.832,0,1.651954,5,5 +13402,1,0.206264,1,0,0,1,2,ROF,3,1,N M 10/Livernois,RAMP,1585204,0,0.206,0,,2.24,5 +14578,1,0.197983,2,0,0,2,5,,3,1,Keeler,Ave,1590901,2.414,2.612,0,4.751591,8,4.5 +22801,-1,0.235481,0,2,0,2,5,,3,1,Hughes,St,4705979,0.982,1.217,0,5.651541,8,4.5 +12023,1,0.12702,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.583,7.71,0,3.048469,5,5 +13552,1,0.139643,1,0,0,1,2,RON,3,1,Livernois/S M 10,RAMP,1584606,0,0.14,0,,1.09,4 +13313,1,0.053592,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.71,7.763,0,1.286214,5,5 +14579,1,0.036527,1,0,0,2,5,,3,1,Keeler,Ave,1590901,2.378,2.414,0,0.876649,8,4.5 +23010,-1,0.00922,0,2,0,2,5,,3,1,Hughes,St,4705979,0.972,0.982,0,0.221286,8,4.5 +12913,1,0.250548,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.832,8.082,0,6.013146,5,5 +23746,0,0.146791,1,1,0,2,4,,3,1,Puritan,St,4707953,4.519,4.666,0,3.522986,6,4.5 +13551,0,0.125576,1,1,0,2,5,,3,1,Dexter,Ave,1584607,0,0.126,0,3.013827,8,4.5 +13550,0,0.050774,1,1,0,2,5,,3,1,Belden,St,1584607,0.126,0.176,0,1.218587,8,4.5 +18597,0,0.098213,1,1,0,2,3,,3,1,McNichols,Rd,1680701,21.135,21.233,0,2.35711,5,5 +32933,0,0.48703,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.68873,0.15,4 +33085,0,0.249864,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.99673,0.15,4 +32863,0,0.018088,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.434102,0.15,4 +18264,0,0.158835,1,1,0,2,3,,3,1,McNichols,Rd,1680701,21.233,21.392,0,3.812037,5,5 +13314,1,0.250067,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,9.083,9.333,0,6.001607,5,5 +18148,0,0.30149,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,14.921,15.222,0,7.235749,5,5 +32868,0,0.50228,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.054716,0.15,4 +33068,0,0.246859,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.924621,0.15,4 +12024,1,0.24912,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,8.834,9.083,0,5.978874,5,5 +13141,1,0.247814,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,9.333,9.581,0,5.947531,5,5 +42,0,0.244023,2,2,0,2,4,,3,3,9 Mile,Rd,607709,3.268,3.512,0,5.856561,6,4.5 +647,0,0.581738,1,1,0,2,4,,3,3,Livernois,,642501,0.021,0.602,0,13.961718,6,4.5 +1712,-1,0.270142,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,8.646,8.916,0,6.483418,5,5 +3098,0,0.387458,1,1,0,2,4,,3,3,Wyoming,,666706,0.346,0.733,0,9.298984,6,4.5 +13577,1,0.437652,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,1.799,2.237,0,10.503654,6,4.5 +19682,1,0.174194,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,8.79,8.964,0,4.180654,5,5 +21072,0,0.125992,1,1,0,2,5,,3,3,Drayton,,4410116,0.151,0.277,0,3.023811,8,4.5 +22142,0,0.561895,2,2,0,2,4,,3,3,Pinecrest,,4412705,0.072,0.634,0,13.48548,6,4.5 +23798,-1,0.4377,0,2,0,2,4,DV2,3,1,Outer,Dr,4707854,0.355,0.793,0,10.504807,6,4.5 +25625,0,0.445688,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.696517,0.15,4 +25626,0,0.46386,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.132632,0.15,4 +27426,0,0.309864,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.436742,0.15,4 +27430,0,0.574584,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.790023,0.15,4 +27460,0,0.321685,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.720443,0.15,4 +27463,0,0.082448,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.978752,0.15,4 +27465,0,0.557741,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.385782,0.15,4 +33070,0,0.224518,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.388425,0.15,4 +33072,0,0.221498,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.315959,0.15,4 +33693,0,0.444378,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.66508,0.15,4 +33694,0,0.508127,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.195043,0.15,4 +669,-1,0.249883,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,8.185,8.435,0,5.997198,5,5 +13578,1,0.281134,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,1.518,1.799,0,6.747227,6,4.5 +19685,1,0.246621,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,8.167,8.413,0,5.918902,5,5 +22115,0,0.326623,2,2,0,2,3,,3,1,Wyoming,St,4700001,7.662,7.989,0,7.838959,5,5 +23799,-1,0.281053,0,2,0,2,4,DV2,3,1,Outer,Dr,4707854,0.074,0.355,0,6.745278,6,4.5 +26168,0,0.389987,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.359694,0.15,4 +29696,0,0.401637,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.639299,0.15,4 +33692,0,0.273412,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.561895,0.15,4 +33695,0,0.506514,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.156345,0.15,4 +21350,0,0.166009,2,2,0,2,3,,3,1,Wyoming,St,4700001,7.497,7.662,0,3.984205,5,5 +21569,0,0.239363,2,2,0,2,3,,3,1,Wyoming,St,4700001,7.257,7.497,0,5.744702,5,5 +13579,1,0.074227,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,1.444,1.518,0,1.78144,6,4.5 +23800,-1,0.074322,0,2,0,2,4,DV2,3,1,Outer,Dr,4707854,0,0.074,0,1.783736,6,4.5 +21793,0,0.013254,2,2,0,2,3,,3,1,Wyoming,St,4700001,7.244,7.257,0,0.318096,5,5 +2541,0,0.3252,1,1,0,2,4,,3,3,Wyoming,,666706,0.021,0.346,0,7.804796,6,4.5 +2833,0,0.010492,2,2,0,2,3,,3,3,Wyoming,,666706,0.01,0.021,0,0.251802,5,5 +3126,0,0.010222,2,2,0,2,3,,3,1,Wyoming,St,666706,0,0.01,0,0.24532,5,5 +27421,0,0.070269,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.686448,0.15,4 +33706,0,0.220745,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.297884,0.15,4 +33707,0,0.220096,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.282296,0.15,4 +102,-1,0.21081,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,8.435,8.646,0,5.059436,5,5 +19684,1,0.22064,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,8.413,8.634,0,5.295365,5,5 +19683,1,0.156702,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,8.634,8.79,0,3.760852,5,5 +41,0,0.484778,2,2,0,2,4,,3,3,9 Mile,Rd,607709,3.512,3.996,0,11.634675,6,4.5 +2247,0,0.26967,1,1,0,2,4,,3,3,Rosewood,,648106,0,0.27,0,6.472076,6,4.5 +3296,-1,0.275056,0,2,0,2,5,DV2,3,3,Oak Park,Blvd,665504,1.683,1.958,0,6.601347,8,4.5 +21121,1,0.315246,2,0,0,2,5,DV2,3,3,Oak Park,Blvd,4409248,1.683,1.998,0,7.565901,8,4.5 +27431,0,0.47666,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.43983,0.15,4 +21074,-1,0.0394,0,2,0,2,5,DV2,3,3,Drayton,,4410116,0,0.039,0,0.94559,8,4.5 +21073,0,0.111813,1,1,0,2,5,,3,3,Drayton,,4410116,0.039,0.151,0,2.683519,8,4.5 +1692,-1,0.448807,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,9.178,9.627,0,10.771361,5,5 +12199,1,0.328738,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,10.253,10.581,0,7.889721,5,5 +19678,1,0.450279,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,9.163,9.613,0,10.806695,5,5 +12399,1,0.4215,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,9.831,10.253,0,10.115997,5,5 +13576,1,0.272713,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,2.237,2.509,0,6.54511,6,4.5 +23797,-1,0.272598,0,2,0,2,4,DV2,3,1,Outer,Dr,4707854,0.793,1.065,0,6.542361,6,4.5 +39871,1,0.013189,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,2.509,2.522,0,0.316538,6,4.5 +21,-1,0.136495,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,9.042,9.178,0,3.275888,5,5 +19680,1,0.198073,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,8.964,9.163,0,4.753746,5,5 +663,-1,0.125963,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,8.916,9.042,0,3.02311,5,5 +22146,-1,0.056484,0,1,0,2,4,,3,1,Pinecrest,,4412705,0,0.057,0,1.355609,6,4.5 +22145,-1,0.015685,0,1,0,2,4,,3,3,Pinecrest,,4412705,0.057,0.072,0,0.376446,6,4.5 +1096,0,0.010178,2,2,0,2,3,,3,3,Livernois,,642501,0.01,0.021,0,0.244282,5,5 +1574,0,0.010235,2,2,0,2,3,,3,1,Livernois,Ave,642501,0,0.01,0,0.245635,5,5 +45,0,0.205871,1,1,1,2,4,,3,3,9 Mile,Rd,607709,2.824,3.03,0,4.940912,6,4.5 +1678,1,0.387123,1,0,0,2,4,DV2,3,3,Livernois,,642501,0.602,0.989,0,9.290942,6,4.5 +20146,-1,0.388123,0,1,0,2,4,DV2,3,3,Livernois,,4416623,0,0.388,0,9.314961,6,4.5 +22141,0,0.404091,2,2,0,2,4,,3,3,Pinecrest,,4412705,0.634,1.038,0,9.698182,6,4.5 +24864,0,0.367183,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.812403,0.15,4 +25623,0,0.515653,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.375674,0.15,4 +25624,0,0.377247,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.053926,0.15,4 +26173,0,0.454372,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.904937,0.15,4 +26857,0,0.483102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.594439,0.15,4 +40214,-1,0.014321,0,2,0,2,7,DIV,3,3,Northland,Dr,4406956,0.605,0.62,0,0.343703,7,4.5 +43,0,0.223068,1,1,1,2,4,,3,3,9 Mile,Rd,607709,3.045,3.268,0,5.353639,6,4.5 +22099,0,0.301106,1,1,1,2,5,,3,3,Pinecrest,,4412705,1.175,1.476,0,7.226534,8,4.5 +24863,0,0.16161,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.878636,0.15,4 +22101,0,0.136673,1,1,1,2,5,,3,3,Pinecrest,,4412705,1.038,1.175,0,3.280147,8,4.5 +44,0,0.014531,2,2,1,2,4,,3,3,9 Mile,Rd,607709,3.03,3.045,0,0.348746,6,4.5 +47,0,0.162493,1,1,0,2,4,,3,3,9 Mile,Rd,607709,2.601,2.764,0,3.899841,6,4.5 +649,0,0.191447,1,1,0,2,5,,3,3,Withington,,643301,0.633,0.825,0,4.594719,8,4.5 +751,-1,0.143539,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.737,11.88,0,3.444943,5,5 +1240,1,0.147488,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.726,11.874,0,3.539716,5,5 +2076,0,0.180586,2,1,0,2,5,,3,3,Troy,Ave,642609,0,0.181,0,4.334059,8,4.5 +46,0,0.06049,1,1,1,2,4,,3,3,9 Mile,Rd,607709,2.764,2.824,0,1.451751,6,4.5 +1098,0,0.067947,2,2,0,2,5,,3,3,Planavon,,643103,0,0.068,0,1.630718,8,4.5 +529,0,0.036929,2,1,0,2,5,,3,3,Allen,,642503,0.933,0.97,0,0.886299,8,4.5 +48,0,0.02554,1,1,0,2,4,,3,3,9 Mile,Rd,607709,2.576,2.601,0,0.612965,6,4.5 +283,-1,0.069733,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.88,11.95,0,1.673597,5,5 +648,0,0.060563,1,1,0,2,5,,3,3,Bermuda,,642807,0,0.061,0,1.4535,8,4.5 +1445,1,0.074153,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.874,11.948,0,1.779683,5,5 +1576,0,0.107286,1,1,0,2,5,,3,3,Vester,,642808,0,0.107,0,2.574864,8,4.5 +1565,1,0.039659,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.948,11.987,0,0.951816,5,5 +49,0,0.081146,1,1,1,2,4,,3,3,9 Mile,Rd,607709,2.495,2.576,0,1.947508,6,4.5 +15905,-1,0.194028,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,2.051,2.245,0,4.656664,5,5 +15923,0,0.494026,1,1,0,2,4,,3,1,Merrill Plaisance,St,1598607,0,0.494,0,11.856629,6,4.5 +15938,1,0.173431,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,2.076,2.25,0,4.162348,5,5 +16157,0,0.372301,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,2.397,2.769,0,8.935224,6,4.5 +16296,0,0.202609,1,1,0,2,4,,3,1,Pontchartrain,Blvd,1615401,0,0.203,0,4.862607,6,4.5 +16736,1,0.171992,2,0,0,2,5,,3,1,2nd,Blvd,1615405,0,0.172,0,4.127816,8,4.5 +16737,0,0.122016,1,1,0,2,5,,3,1,Pilgrim,St,1614102,0.172,0.294,0,2.928375,8,4.5 +17034,-1,0.218715,0,2,0,2,5,,3,1,3rd,St,1615404,0,0.219,0,5.249166,8,4.5 +17909,0,0.19368,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.232,22.426,0,4.648325,5,5 +18360,1,0.539145,2,0,0,2,3,DV2,3,1,7 Mile,Rd,1700106,15.711,16.25,0,12.939486,5,5 +19407,0,0.264663,2,2,0,2,4,,3,1,John R,St,1715605,0.279,0.544,0,6.351914,6,4.5 +23739,0,0.351458,1,1,0,2,4,,3,2,Puritan,St,4707953,5.64,5.991,0,8.434994,6,4.5 +23802,-1,0.535617,0,2,0,2,3,DV2,3,1,7 Mile,Rd,4707816,0.11,0.645,0,12.854804,5,5 +32099,0,0.253402,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.081642,0.15,4 +33878,0,0.404811,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.715472,0.15,4 +12005,1,0.419543,3,0,0,1,2,,3,1,S M 10,,1577509,5.034,5.453,0,,0.58,7 +12288,0,0.436351,2,2,0,2,4,,3,1,Fenkell,St,1579605,9.63,10.067,0,10.472435,6,4.5 +13264,-1,0.401175,0,3,0,1,2,,3,1,N M 10,,1577510,5.018,5.419,0,,0.58,7 +13400,1,0.192878,1,0,0,1,2,ROF,3,1,N M 10/Linwood,RAMP,1585206,0,0.193,0,,2.24,5 +13524,0,0.164167,1,1,0,2,3,,3,1,Linwood,St,1584609,3.957,4.122,0,3.940013,5,5 +16469,0,0.180179,1,1,0,2,5,,3,1,Rosa Parks,Blvd,1614105,0,0.18,0,4.324304,8,4.5 +17749,0,0.471516,1,1,0,2,3,,3,1,McNichols,Rd,1680701,21.633,22.105,0,11.316384,5,5 +23741,0,0.313941,1,1,0,2,4,,3,1,Puritan,St,4707953,5.171,5.485,0,7.534594,6,4.5 +24478,1,0.229335,1,0,0,1,2,RON,3,1,Linwood/S M 10,RAMP,4710004,0,0.229,0,,1.09,4 +30578,0,0.221662,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.319891,0.15,4 +30579,0,0.325318,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.807625,0.15,4 +30965,0,0.494002,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.85605,0.15,4 +32931,0,0.047287,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.134898,0.15,4 +12901,0,0.1876,2,2,0,2,4,,3,1,Fenkell,St,1579605,9.42,9.608,0,4.502406,6,4.5 +13401,1,0.183417,1,0,0,1,2,RON,3,1,Linwood/N M 10,RAMP,1585205,0,0.183,0,,1.09,4 +13525,0,0.151586,1,1,0,2,3,,3,1,Linwood,St,1584609,3.806,3.957,0,3.638066,5,5 +13549,1,0.181934,1,0,0,1,2,ROF,3,1,S M 10/Linwood,RAMP,1584608,0,0.182,0,,2.24,5 +13527,0,0.126273,1,1,0,2,3,,3,1,Linwood,St,1584609,3.624,3.75,0,3.030556,5,5 +13528,0,0.041218,1,1,0,2,3,,3,1,Linwood,St,1584609,3.583,3.624,0,0.989226,5,5 +22348,0,0.033901,1,1,0,2,4,,3,1,Linwood,St,4701495,0,0.034,0,0.81363,6,4.5 +12612,0,0.022362,2,2,0,2,4,,3,1,Fenkell,St,1579605,9.608,9.63,0,0.536677,6,4.5 +13526,0,0.055791,1,1,0,2,3,,3,1,Linwood,St,1584609,3.75,3.806,0,1.338985,5,5 +23250,-1,0.021948,0,3,0,2,5,,3,1,Hughes,St,4705979,1.629,1.651,0,0.526764,8,4.5 +14576,1,0.009061,2,0,0,2,5,,3,1,Keeler,Ave,1590901,3.024,3.034,0,0.217459,8,4.5 +23417,-1,0.009302,0,3,0,2,5,,3,1,Hughes,St,4705979,1.62,1.629,0,0.223245,8,4.5 +16806,0,0.333652,1,1,0,2,3,,3,1,Linwood,St,1614310,0,0.334,0,8.007647,5,5 +23743,0,0.048218,1,1,0,2,4,,3,1,Puritan,St,4707953,5.117,5.165,0,1.157243,6,4.5 +23742,0,0.005986,1,1,0,2,3,,3,1,Puritan,St,4707953,5.165,5.171,0,0.143663,5,5 +16528,0,0.163343,1,1,0,2,3,,3,1,Linwood,St,1614310,0.334,0.497,0,3.920235,5,5 +13523,0,0.282159,1,1,0,2,5,,3,1,Rosa Parks,Blvd,1584701,0,0.282,0,6.771805,8,4.5 +32932,0,0.256984,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.167607,0.15,4 +13522,0,0.053404,1,1,0,2,5,,3,1,Rosa Parks,Blvd,1584701,0.282,0.336,0,1.281696,8,4.5 +17036,0,0.012863,1,1,0,2,5,,3,1,Pilgrim,St,1614102,0.159,0.172,0,0.308714,8,4.5 +17097,0,0.165776,1,1,0,2,5,,3,2,Rosa Parks,Blvd,1614105,0.288,0.454,0,3.978616,8,4.5 +23740,0,0.154848,1,1,0,2,4,,3,1,Puritan,St,4707953,5.485,5.64,0,3.716347,6,4.5 +16215,0,0.108031,1,1,0,2,5,,3,1,Rosa Parks,Blvd,1614105,0.18,0.288,0,2.592744,8,4.5 +16214,0,0.222275,1,1,0,2,5,,3,2,Rosa Parks,Blvd,1614105,0.454,0.676,0,5.334601,8,4.5 +18298,0,0.127533,1,1,0,2,3,,3,1,McNichols,Rd,1680701,22.105,22.232,0,3.060793,5,5 +17094,0,0.537135,1,1,0,2,4,,3,1,Pontchartrain,Blvd,1615401,0.567,1.104,0,12.891233,6,4.5 +17637,0,0.068316,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,15.536,15.604,0,1.639591,5,5 +16527,1,0.049714,1,0,0,2,4,,3,1,Pontchartrain,Blvd,1615401,1.126,1.175,0,1.193139,6,4.5 +18574,1,0.055427,2,0,0,2,3,DV2,3,1,7 Mile,Rd,1700106,15.655,15.711,0,1.330244,5,5 +23801,1,0.085016,1,0,0,2,4,,3,1,Pontchartrain/7 Mile Cutoff,,4707817,0,0.085,0,2.040375,6,4.5 +23803,-1,0.070559,0,2,0,2,3,DV2,3,1,7 Mile,Rd,4707816,0.039,0.11,0,1.693422,5,5 +18945,1,0.039474,2,0,0,2,3,DV2,3,1,7 Mile,Rd,1700106,15.616,15.655,0,0.947386,5,5 +23804,-1,0.039217,0,2,0,2,3,DV2,3,1,7 Mile,Rd,4707816,0,0.039,0,0.941213,5,5 +19144,1,0.011583,2,0,0,2,3,DV2,3,1,7 Mile,Rd,1700106,15.604,15.616,0,0.277983,5,5 +16295,1,0.015294,1,0,0,2,4,,3,1,Pontchartrain,Blvd,1615401,1.175,1.191,0,0.367052,6,4.5 +16674,0,0.041455,1,1,0,2,4,,3,1,Pontchartrain,Blvd,1622308,0,0.042,0,0.99491,6,4.5 +16805,0,0.021969,1,1,0,2,4,,3,1,Pontchartrain,Blvd,1615401,1.104,1.126,0,0.527265,6,4.5 +16423,-1,0.011912,0,1,0,2,4,,3,1,Pontchartrain,Blvd,1622308,0.042,0.053,0,0.285883,6,4.5 +16213,0,0.364074,1,1,0,2,4,,3,1,Pontchartrain,Blvd,1615401,0.203,0.567,0,8.737767,6,4.5 +30966,0,0.321061,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.705474,0.15,4 +30964,0,0.042392,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.017397,0.15,4 +12403,0,0.382215,2,2,0,2,4,,3,2,Oakman,Blvd,1581709,3.587,3.969,0,9.173166,6,4.5 +16158,0,0.312924,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.77,2.083,0,7.510187,6,4.5 +17039,0,0.140987,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,2.083,2.224,0,3.38368,6,4.5 +18742,0,0.220712,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.582,22.802,0,5.2971,5,5 +32097,0,0.268695,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.448689,0.15,4 +33701,0,0.439407,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.545766,0.15,4 +17095,0,0.424425,1,1,0,2,5,,3,1,Woodrow Wilson,St,1614108,0.059,0.483,0,10.186211,8,4.5 +16740,0,0.17305,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,2.224,2.397,0,4.153199,6,4.5 +17482,0,0.095153,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.426,22.521,0,2.283679,5,5 +30956,0,0.100926,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.42223,0.15,4 +33089,0,0.355398,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.529548,0.15,4 +19094,0,0.06062,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.521,22.582,0,1.454883,5,5 +16012,1,0.281308,2,0,0,2,5,DV2,3,2,Manchester,Pkwy,1597406,0.038,0.32,0,6.751383,8,4.5 +22416,-1,0.315984,0,2,0,2,5,DV2,3,2,Manchester,Pkwy,4700711,0,0.316,0,7.583624,8,4.5 +30957,0,0.134412,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.225899,0.15,4 +32112,0,0.122929,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.950298,0.15,4 +16420,0,0.081465,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.689,1.77,0,1.955164,6,4.5 +16671,0,0.020055,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.669,1.689,0,0.481315,6,4.5 +24102,1,0.036579,1,0,0,2,5,DV2,3,2,Manchester,Pkwy,4711291,0,0.037,0,0.877904,8,4.5 +16013,1,0.038301,1,0,0,2,5,,3,2,Manchester,Pkwy,1597406,0,0.038,0,0.919218,8,4.5 +14538,0,0.227609,2,2,1,2,3,,3,2,Woodward,Ave,1591001,0.26,0.487,0,5.462606,5,5 +14539,0,0.259748,2,2,1,2,3,,3,2,Woodward,Ave,1591001,0,0.26,0,6.233963,5,5 +18191,0,0.16261,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.818,22.98,0,3.902634,5,5 +18517,0,0.015555,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.802,22.818,0,0.373318,5,5 +14371,0,0.145543,1,1,0,2,5,,3,1,Nevada,St,1585907,0.02,0.165,0,3.493042,8,4.5 +15906,-1,0.121376,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,1.93,2.051,0,2.913015,5,5 +15908,-1,0.304071,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,1.502,1.806,0,7.29771,5,5 +15919,1,0.066806,1,0,0,2,4,,3,1,Merrill Plaisance,St,1598607,0.761,0.828,0,1.603352,6,4.5 +15940,1,0.178534,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,1.854,2.032,0,4.28482,5,5 +15942,1,0.251027,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,1.554,1.805,0,6.024646,5,5 +17544,0,0.048781,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,16.618,16.666,0,1.170756,5,5 +19405,0,0.253226,2,2,0,2,4,,3,1,John R,St,1715605,0.749,1.003,0,6.077434,6,4.5 +19640,1,0.06422,1,0,0,2,4,,3,1,Woodward/Merrill Cutoff,,1841106,0,0.064,0,1.541291,6,4.5 +30960,0,0.164346,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.944307,0.15,4 +30962,0,0.234127,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.619039,0.15,4 +30968,0,0.256076,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.145828,0.15,4 +30969,0,0.225085,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.402036,0.15,4 +31902,0,0.244844,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.876252,0.15,4 +32115,0,0.291701,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.000817,0.15,4 +15907,-1,0.123269,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,1.806,1.93,0,2.958457,5,5 +15922,0,0.161047,1,1,0,2,4,,3,1,Merrill Plaisance,St,1598607,0.494,0.655,0,3.865126,6,4.5 +15921,0,0.076692,1,1,0,2,4,,3,1,Merrill Plaisance,St,1598607,0.655,0.732,0,1.840596,6,4.5 +16468,1,0.034866,1,0,0,2,5,,3,1,2nd,Blvd,1615405,0.172,0.207,0,0.83679,8,4.5 +22178,1,0.064626,1,0,0,2,5,,3,1,2nd,Blvd,4704374,0,0.065,0,1.551031,8,4.5 +15920,0,0.029483,1,1,0,2,4,,3,1,Merrill Plaisance,St,1598607,0.732,0.761,0,0.707588,6,4.5 +15941,1,0.048707,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,1.805,1.854,0,1.168965,5,5 +13786,0,0.019661,1,1,0,2,5,,3,1,Nevada,St,1585907,0,0.02,0,0.471859,8,4.5 +15909,-1,0.367104,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,1.135,1.502,0,8.810489,5,5 +15943,1,0.423763,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,1.13,1.554,0,10.170316,5,5 +17860,0,0.345807,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,16.272,16.618,0,8.299375,5,5 +18060,0,0.022474,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,16.25,16.272,0,0.539371,5,5 +14140,0,0.232484,1,1,0,2,5,,3,1,Nevada,St,1585907,0.165,0.398,0,5.579605,8,4.5 +19406,0,0.205767,2,2,0,2,4,,3,1,John R,St,1715605,0.544,0.749,0,4.938397,6,4.5 +30959,0,0.149495,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.587876,0.15,4 +32098,0,0.22195,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.326801,0.15,4 +15918,1,0.030707,1,0,0,2,3,,3,1,Merrill Plaisance,St,1598607,0.828,0.859,0,0.736963,5,5 +15939,1,0.044422,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,2.032,2.076,0,1.066116,5,5 +19042,0,0.249787,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,16.666,16.916,0,5.994879,5,5 +19404,0,0.274014,2,2,0,2,4,,3,1,John R,St,1715605,1.003,1.277,0,6.576337,6,4.5 +30967,0,0.25566,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.135846,0.15,4 +30970,0,0.278333,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.679986,0.15,4 +19403,0,0.116336,2,2,0,2,4,,3,1,John R,St,1715605,1.277,1.393,0,2.792071,6,4.5 +53,0,0.240563,1,1,1,2,4,,3,3,9 Mile,Rd,607709,1.511,1.752,0,5.773514,6,4.5 +418,1,0.375425,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,12.42,12.796,0,9.010207,5,5 +504,-1,0.348403,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,12.425,12.773,0,8.361666,5,5 +1088,-1,0.406992,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,10.432,10.839,0,9.767806,5,5 +2385,0,0.508259,1,1,1,2,4,,3,3,John R,Rd,646806,0.021,0.529,0,12.198212,6,4.5 +13769,0,0.382493,2,2,0,2,4,,3,1,State Fair,St,1586002,0.02,0.402,0,9.179837,6,4.5 +19223,0,0.186557,1,1,0,2,5,,3,3,Fern,,1812608,0,0.187,0,4.477363,8,4.5 +19670,1,0.402126,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,10.418,10.82,0,9.651029,5,5 +21494,0,0.096638,1,1,0,2,5,,3,3,Chesterfield,,4413567,0,0.097,0,2.319307,8,4.5 +24550,0,0.435034,1,1,0,2,4,,3,3,Hilton,,642306,0.021,0.456,0,10.440823,6,4.5 +25867,0,0.52151,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.516244,0.15,4 +25868,0,0.221798,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.323156,0.15,4 +29975,0,0.456349,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.952376,0.15,4 +29976,0,0.472953,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.350868,0.15,4 +30971,0,0.319316,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.663582,0.15,4 +30974,0,0.317804,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.627303,0.15,4 +33697,0,0.337943,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.110629,0.15,4 +2071,-1,0.423415,0,3,0,2,3,DIV,3,3,8 Mile,Rd,640807,9.84,10.263,0,10.161949,5,5 +15901,-1,0.241004,0,1,0,2,3,,3,1,W M 1 Service Drive,,1598701,0.033,0.274,0,5.784084,5,5 +15913,-1,0.169469,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,0.279,0.449,0,4.067251,5,5 +15924,1,0.195466,1,0,0,2,3,,3,1,E M 1 Service Drive,,1598510,0.033,0.228,0,4.691185,5,5 +15928,1,0.167584,1,0,0,2,3,,3,1,8 Mile Service Drive,,1598509,0.235,0.402,0,4.022022,5,5 +15935,-1,0.112991,0,3,0,2,3,,3,3,W M 102 Service Drive,,1598508,0.22,0.333,0,2.711784,5,5 +15947,1,0.267623,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,0.223,0.49,0,6.422957,5,5 +31548,0,0.527807,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.667365,0.15,4 +32870,0,0.515246,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.365912,0.15,4 +32871,0,0.537594,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.902254,0.15,4 +33087,0,0.552188,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.252523,0.15,4 +578,-1,0.241872,0,3,0,2,3,DIV,3,3,Woodward,Ave,616808,12.773,13.015,0,5.804921,5,5 +775,1,0.223418,3,0,0,2,3,DIV,3,3,Woodward,Ave,614101,12.796,13.019,0,5.36204,5,5 +1575,1,0.21796,1,0,0,2,3,,3,3,E M 1 Service Drive,,642802,0,0.218,0,5.231034,5,5 +15933,1,0.076786,1,0,0,1,3,,3,1,8 Mile Service Drive,,1598509,0,0.077,0,,5,5 +15937,-1,0.187565,0,1,0,2,3,,3,3,W M 102 Service Drive,,1598508,0,0.188,0,4.501549,5,5 +19675,1,0.401934,3,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,9.821,10.223,0,9.646408,5,5 +20536,-1,0.246425,0,1,0,2,3,,3,3,W M 1 Service Drive,,4400020,0,0.246,0,5.914189,5,5 +773,-1,0.133417,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,9.706,9.84,0,3.202011,5,5 +19676,1,0.165018,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,9.656,9.821,0,3.960431,5,5 +15932,1,0.125444,1,0,0,2,3,,3,1,8 Mile Service Drive,,1598509,0.077,0.202,0,3.010657,5,5 +34119,-1,0.016762,0,3,0,2,3,,3,1,W M 1 Service Drive,,1598701,0.017,0.033,0,0.402287,5,5 +15936,-1,0.032075,0,3,0,2,3,,3,3,W M 102 Service Drive,,1598508,0.188,0.22,0,0.769809,5,5 +15927,1,0.016898,3,0,0,2,3,,3,3,E M 1 Service Drive,,1598510,0,0.017,0,0.405541,5,5 +15926,1,0.016,3,0,0,2,3,,3,1,E M 1 Service Drive,,1598510,0.017,0.033,0,0.384004,5,5 +15904,-1,0.016557,0,3,0,2,3,,3,3,W M 1 Service Drive,,1598701,0,0.017,0,0.397371,5,5 +15917,-1,0.017276,0,3,0,2,3,DIV,3,3,Woodward,Ave,1598610,0,0.017,0,0.414618,5,5 +15931,1,0.032732,3,0,0,2,3,,3,1,8 Mile Service Drive,,1598509,0.202,0.235,0,0.785566,5,5 +15951,1,0.017153,3,0,0,2,3,DIV,3,3,Woodward,Ave,1598507,0,0.017,0,0.411675,5,5 +15950,1,0.20612,3,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,0.017,0.223,0,4.946874,5,5 +15916,-1,0.261756,0,3,0,2,3,DIV,3,1,Woodward,Ave,1598610,0.017,0.279,0,6.282154,5,5 +14170,0,0.019747,1,1,0,2,4,,3,1,State Fair,St,1586002,0,0.02,0,0.473929,6,4.5 +15911,-1,0.311095,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,0.584,0.895,0,7.466281,5,5 +15912,-1,0.135526,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,0.449,0.584,0,3.252628,5,5 +15945,1,0.313036,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,0.587,0.9,0,7.512853,5,5 +15946,1,0.096465,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,0.49,0.587,0,2.315154,5,5 +15934,-1,0.090921,0,3,0,2,3,,3,3,W M 102 Service Drive,,1598508,0.333,0.423,0,2.182099,5,5 +24549,-1,0.020753,0,1,0,2,4,,3,3,Hilton,,642306,0,0.021,0,0.49806,6,4.5 +24552,-1,0.162433,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,10.27,10.432,0,3.898395,5,5 +24553,1,0.096886,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,10.223,10.32,0,2.325258,5,5 +34820,-1,0.013498,0,1,0,2,7,,3,3,Hilton/E M 102,,1850901,0.061,0.075,0,0.32394,7,4.5 +34819,-1,0.061334,0,1,0,2,7,,3,1,Hilton/E M 102,,1850901,0,0.061,0,1.472006,7,4.5 +32872,0,0.316844,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.604249,0.15,4 +33696,0,0.366077,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.785855,0.15,4 +24551,-1,0.007025,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,10.263,10.27,0,0.168597,5,5 +24554,1,0.097848,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,10.32,10.418,0,2.348343,5,5 +30972,0,0.256481,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.155542,0.15,4 +1097,0,0.062952,1,1,0,2,5,,3,3,Fair,,642805,0,0.063,0,1.510859,8,4.5 +51,0,0.252825,1,1,1,2,4,,3,3,9 Mile,Rd,607709,1.997,2.25,0,6.067805,6,4.5 +1677,0,0.516637,1,1,0,2,4,,3,3,Hilton,,642306,0.456,0.972,0,12.399296,6,4.5 +27385,0,0.390379,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.369105,0.15,4 +27420,0,0.246801,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.923231,0.15,4 +27417,0,0.197766,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.746381,0.15,4 +27419,0,0.172446,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.138703,0.15,4 +25869,0,0.32245,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.738808,0.15,4 +52,0,0.245208,1,1,1,2,4,,3,3,9 Mile,Rd,607709,1.752,1.997,0,5.884982,6,4.5 +639,-1,0.344643,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,10.839,11.184,0,8.271438,5,5 +13979,0,0.499655,2,2,0,2,4,,3,1,State Fair,St,1586002,0.402,0.902,0,11.991729,6,4.5 +19399,0,0.168744,1,1,0,2,4,,3,1,John R,St,1715605,1.955,2.124,0,4.04986,6,4.5 +19667,1,0.345097,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,10.82,11.165,0,8.282327,5,5 +32119,0,0.098289,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.358929,0.15,4 +32120,0,0.276411,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.633873,0.15,4 +32865,0,0.263669,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.328047,0.15,4 +19401,0,0.1659,2,2,0,2,4,,3,1,John R,St,1715605,1.611,1.777,0,3.981593,6,4.5 +19400,0,0.178148,1,1,0,2,4,,3,1,John R,St,1715605,1.777,1.955,0,4.275558,6,4.5 +19398,0,0.168363,1,1,0,2,4,,3,1,John R,St,1715605,2.124,2.292,0,4.040721,6,4.5 +31579,0,0.263052,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.313238,0.15,4 +32117,0,0.239948,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.758755,0.15,4 +32118,0,0.070531,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.692747,0.15,4 +2177,-1,0.067024,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,11.184,11.251,0,1.608579,5,5 +19664,1,0.067523,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,11.22,11.287,0,1.620541,5,5 +19666,1,0.055245,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,11.165,11.22,0,1.325879,5,5 +2387,0,0.010423,1,1,0,2,4,,3,1,John R,St,646806,0,0.01,0,0.250151,6,4.5 +2386,0,0.01052,1,1,0,2,4,,3,3,John R,Rd,646806,0.01,0.021,0,0.252471,6,4.5 +55,0,0.196095,2,2,0,2,4,,3,3,9 Mile,Rd,607709,1.165,1.361,0,4.70627,6,4.5 +2325,1,0.205084,2,0,0,2,5,,3,3,Chrysler,Dr,646902,0.942,1.147,0,4.922007,8,4.5 +2383,0,0.080998,2,2,0,2,4,,3,3,John R,Rd,646806,0.809,0.889,0,1.94395,6,4.5 +2404,-1,0.245103,0,3,0,2,5,,3,3,Chrysler,Dr,646702,1.049,1.294,0,5.882479,8,4.5 +29974,0,0.576003,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.824072,0.15,4 +54,0,0.150182,1,1,1,2,4,,3,3,9 Mile,Rd,607709,1.361,1.511,0,3.604375,6,4.5 +2384,0,0.279458,1,1,1,2,4,,3,3,John R,Rd,646806,0.529,0.809,0,6.706997,6,4.5 +27384,0,0.191657,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.599767,0.15,4 +2405,-1,0.146219,0,1,0,2,5,,3,3,Chrysler,Dr,646702,0.903,1.049,0,3.509263,8,4.5 +2381,0,0.303989,2,2,0,2,4,,3,3,John R,Rd,646806,0.997,1.301,0,7.295731,6,4.5 +3867,1,0.140694,1,0,0,1,1,ROF,3,3,S I 75/9 Mile,RAMP,710401,0,0.141,0,,2.24,5 +4867,1,0.116021,1,0,0,1,1,RON,3,3,9 Mile/N I 75,RAMP,710410,0,0.116,0,,1.09,4 +56,0,0.058746,2,2,1,2,4,,3,3,9 Mile,Rd,607709,1.107,1.165,0,1.409896,6,4.5 +2323,1,0.110808,2,0,0,2,5,,3,3,Chrysler,Dr,646902,1.287,1.398,0,2.659395,8,4.5 +2324,1,0.140525,2,0,0,2,5,,3,3,Chrysler,Dr,646902,1.147,1.287,0,3.3726,8,4.5 +2382,0,0.107811,2,2,0,2,4,,3,3,John R,Rd,646806,0.889,0.997,0,2.587468,6,4.5 +2403,-1,0.101154,0,3,0,2,5,,3,3,Chrysler,Dr,646702,1.294,1.395,0,2.427691,8,4.5 +57,0,0.0816,2,2,1,2,4,,3,3,9 Mile,Rd,607709,1.025,1.107,0,1.958408,6,4.5 +2380,0,0.034641,2,2,0,2,4,,3,3,John R,Rd,646806,1.301,1.336,0,0.831384,6,4.5 +3893,-1,0.355015,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,5.562,5.917,0,8.520366,5,5 +4179,1,0.287594,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,5.616,5.904,0,6.902264,5,5 +4458,0,0.390356,1,1,0,2,5,,3,4,Toepfer,Dr,802903,1.453,1.843,0,9.368547,8,4.5 +5355,0,0.223677,2,2,1,2,4,,3,4,9 Mile,Rd,803006,5.775,5.999,0,5.368248,6,4.5 +11443,1,0.734329,3,0,0,1,1,,3,1,E I 94,,1576405,33.804,34.538,0,,0.58,7 +11642,1,0.05708,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.503,0.56,0,1.369916,5,5 +11900,1,0.241866,3,0,0,1,2,,2,1,S M 10,,1577509,11.097,11.339,0,,0.32,8.5 +11983,1,0.123682,2,0,0,2,4,,1,1,Brush,St,4718307,0.42,0.544,0,2.968377,8,4.5 +12065,-1,0.040556,0,3,0,2,4,,1,1,John R,St,1577608,0.091,0.131,0,0.973349,8,4.5 +12154,1,0.226531,3,0,0,1,1,,1,1,N I 375,,1577706,0.605,0.831,0,,0.32,8.5 +12174,-1,0.258582,0,3,0,1,1,,1,1,S I 375,,1577705,0.6,0.859,0,,0.32,8.5 +12237,0,0.11169,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.807,0.918,0,2.680552,6,4.5 +12359,0,0.053437,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.027,12.081,0,1.282485,6,5 +12436,0,0.050904,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.59,0.64,0,1.221686,8,4.5 +12458,0,0.414556,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.786,3.2,0,9.949344,6,4.5 +12619,0,0.332065,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.04,3.372,0,7.969563,6,4.5 +12893,1,0.187333,1,0,0,1,1,ROF,3,1,E I 94/Chalmers,RAMP,1578101,0,0.187,0,,2.24,5 +12965,-1,0.218289,0,4,0,1,1,,3,1,W I 96,,1577405,4.366,4.584,0,,0.58,7 +13001,-1,0.055271,0,4,0,2,4,,1,1,3rd,St,1581602,0.708,0.764,0,1.326498,8,4.5 +13037,1,0.33408,4,0,0,1,1,,3,1,E I 96,,1577404,4.287,4.621,0,,0.58,7 +13043,-1,0.164914,0,3,0,1,2,,2,1,N M 10,,1577510,11.08,11.245,0,,0.32,8.5 +13453,1,0.317806,1,0,0,1,1,RFS,3,1,S I 75/S M 10,RAMP,1585004,0,0.318,0,,0.22,6 +13455,1,0.370047,1,0,0,1,1,RFS,3,1,S M 10/N I 75,RAMP,1585002,0,0.37,0,,0.22,6 +13626,0,0.082489,2,2,0,2,4,,1,1,Adams,Ave,1584401,0.101,0.184,0,1.97974,8,4.5 +13634,1,0.02302,3,0,0,2,5,,1,1,2nd,St,4718974,0.024,0.047,0,0.55248,8.5,4.5 +13645,1,0.059043,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.025,0.084,0,1.417027,8.5,4.5 +13647,1,0.241828,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0,0.242,0,5.803869,8,4.5 +13664,0,0.082172,1,1,0,2,4,,3,1,Chene,St,1587501,0,0.082,0,1.972118,6,4.5 +13702,-1,1.050386,0,3,0,1,1,,3,1,W I 94,,1588802,32.903,33.954,0,,0.58,7 +13708,1,0.067848,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,0.27,0.338,0,1.628343,6,4.5 +13820,-1,0.323854,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,1.576,1.9,0,7.772505,6,4.5 +14032,1,0.325889,3,0,0,2,4,DV2,3,1,Larned,St,1585504,0.95,1.276,0,7.821332,6,4.5 +14060,0,0.159178,1,1,0,2,5,,3,1,State Fair,St,1588609,2.06,2.22,0,3.82027,8,4.5 +14150,1,0.145349,1,0,0,1,1,RFF,2,1,S I 75/N M 10,RAMP,1585403,0,0.145,0,,0.32,8.5 +14165,-1,0.067817,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.396,0.464,0,1.627616,6,4.5 +14196,-1,0.068374,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.243,0.311,0,1.640972,8.5,4.5 +14212,0,0.250794,1,1,0,2,5,,3,1,Seymour,St,1588403,0.66,0.911,0,6.019055,8,4.5 +14246,0,0.277707,2,2,1,2,3,,3,1,Conner,St,1588005,1.05,1.328,0,6.664964,5,5 +14263,0,0.250617,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,0.892,1.143,0,6.014808,6,4.5 +14314,1,0.053552,3,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.124,0.177,0,1.285259,8.5,4.5 +14317,0,0.315108,3,3,0,2,3,,3,1,Mack,Ave,1587509,4.09,4.405,0,7.562588,5,5 +14343,-1,0.051363,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.549,0.6,0,1.232706,8,4.5 +14489,0,0.0773,2,2,1,2,3,,1,1,Woodward,Ave,1591001,6.23,6.308,0,1.855195,6,5 +14834,-1,0.11678,0,2,0,2,5,,3,1,Henry,Dr,1595509,1.019,1.136,0,2.802725,8,4.5 +15053,1,0.068415,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.243,0.311,0,1.641961,8.5,4.5 +15118,1,0.434192,4,0,0,1,1,,1,1,N I 75,,1592010,23.343,23.777,0,,0.32,8.5 +15364,-1,0.227644,0,3,0,1,1,,1,1,S I 75,,1595106,23.171,23.398,0,,0.32,8.5 +15571,1,0.060633,1,0,0,1,1,RFS,3,1,S M 10/S I 75 CD,RAMP,1591108,0.089,0.149,0,,0.22,6 +15955,0,0.057566,1,1,0,2,4,,1,1,Grand River,Ave,1598501,0.185,0.243,0,1.381572,8,4.5 +15964,1,0.044227,2,0,0,2,4,,1,1,Witherell,St,1598410,0,0.044,0,1.061449,8,4.5 +16358,0,0.11484,1,1,0,2,5,,3,1,Lawton,St,1608601,0.111,0.226,0,2.756153,8,4.5 +17285,0,0.07009,1,1,0,2,5,,1,1,Centre,St,1628206,0.044,0.114,0,1.682158,8.5,4.5 +17288,-1,0.095118,0,3,0,2,5,,1,1,Macomb,St,1628108,0.125,0.22,0,2.282841,8.5,4.5 +17298,0,0.101717,1,1,0,2,5,,3,1,Saint Aubin,St,1628007,0.11,0.211,0,2.441206,8,4.5 +17317,-1,0.326391,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.071,0.397,0,7.833384,6,4.5 +17328,1,0.05589,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0,0.056,0,1.341353,6,4.5 +17332,0,0.056881,1,1,0,2,5,,3,1,Rivard,St,1627905,0.352,0.409,0,1.365134,8,4.5 +18352,1,0.178364,3,0,0,2,7,,3,1,Lycaste,St,1634606,0,0.178,0,4.280728,7,4.5 +39956,1,0.358436,3,0,0,2,5,,3,1,Riverbank,Rd,5494522,1.177,1.535,0,8.602457,8,4.5 +40065,1,0.022659,2,0,0,2,9,,3,3,Orchard Lake/Orchard Lake,TURN,5500215,0,0.023,0,0.543822,7,4.5 +18521,1,0.941058,3,0,0,2,5,,3,1,The Strand,St,1633206,1.409,2.349,0,22.585382,8,4.5 +18523,1,0.402303,3,0,0,2,5,,3,1,The Strand,St,1633206,1.006,1.409,0,9.655278,8,4.5 +40027,-1,0.022844,0,2,0,2,3,,4,3,Orchard Lake,Rd,5499978,0.04,0.062,0,0.548261,3.7,5 +39959,0,0.223157,1,1,0,2,5,,3,1,Picnic,Way,5494510,0,0.223,0,5.355771,8,4.5 +18572,0,0.251553,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,23.667,23.918,0,6.037268,5,5 +18730,1,0.354138,1,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,0.759,1.113,0,8.499315,6,4.5 +21489,0,0.055541,1,1,0,2,5,,1,1,Elizabeth,St,4700499,0.076,0.132,0,1.332992,8.5,4.5 +21674,1,0.038481,2,0,0,2,4,,1,1,Park,Ave,4700018,0.198,0.237,0,0.923534,8,4.5 +21872,0,0.181354,1,1,1,2,3,,3,1,Warren,Ave,4700429,6.192,6.373,0,4.352502,5,5 +22139,-1,0.05779,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.325,0.383,0,1.386953,5,5 +22343,1,0.066868,1,0,0,2,5,,1,1,Clinton,St,4705738,0,0.067,0,1.604831,8.5,4.5 +22408,0,0.077988,1,1,0,2,5,,3,1,Joseph Campau,St,4701218,0,0.078,0,1.871712,8,4.5 +22463,-1,0.05592,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0,0.056,0,1.342078,6,4.5 +22510,0,0.080063,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.234,0.314,0,1.921508,6,5 +22639,0,0.37889,1,1,0,2,4,,3,1,Dickerson,St,4705398,1.679,2.057,0,9.09335,6,4.5 +22709,1,0.087901,1,0,0,2,5,,1,1,Randolph,St,4705736,0.048,0.136,0,2.109632,8.5,4.5 +22720,1,0.318124,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,1.571,1.889,0,7.634968,6,4.5 +22741,0,0.172163,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,4.318,4.49,0,4.131916,5,5 +22756,0,0.081257,1,1,0,2,5,,1,1,Broadway,St,4705737,0.178,0.26,0,1.950172,8.5,4.5 +22790,-1,0.22738,0,2,0,2,3,,3,1,14th,St,4705601,0.706,0.933,0,5.457109,5,5 +23163,0,0.217146,1,1,0,2,5,,3,1,24th,St,4705563,1.238,1.456,0,5.211501,8,4.5 +23195,-1,0.286616,0,1,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,0,0.287,0,6.878781,6,4.5 +23218,1,0.202113,2,0,0,2,3,,3,1,Rosa Parks,Blvd,4705605,0.925,1.127,0,4.850715,5,5 +23256,0,0.103489,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.669,0.772,0,2.483726,5,5 +23605,0,0.352462,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,8.676,9.028,0,8.459087,5,5 +23667,0,0.051681,2,2,0,2,5,,3,1,Edlie,St,4705781,0,0.052,0,1.240355,8,4.5 +23900,-1,0.171989,0,1,0,1,1,RON,1,1,Grand River/S I 75,RAMP,4707198,0,0.172,0,,1.09,4 +24069,0,0.17075,1,1,0,2,5,,3,1,Atwater,St,4711889,0.926,1.097,0,4.097994,8,4.5 +24240,0,0.32476,1,1,0,2,5,,3,1,Saint Jean,St,4711073,0,0.325,0,7.794236,8,4.5 +24422,1,0.119697,3,0,0,2,5,,1,1,Monroe,St,4711771,0.378,0.498,0,2.872736,8.5,4.5 +24440,1,0.027688,2,0,0,2,5,,3,1,E I 96 Service Drive,,4710513,0.41,0.438,0,0.664517,8,4.5 +27467,0,0.446921,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.726097,0.15,4 +27469,0,0.242547,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.82114,0.15,4 +30346,0,0.054235,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.301637,0.15,4 +30360,0,0.21749,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.219758,0.15,4 +30371,0,0.374748,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.993958,0.15,4 +30501,0,0.19394,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.654567,0.15,4 +30719,0,0.480018,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.520422,0.15,4 +32031,0,0.4094,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.82559,0.15,4 +32711,0,0.22904,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.496951,0.15,4 +33097,0,0.311296,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.471102,0.15,4 +33103,0,0.191596,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.598316,0.15,4 +33117,0,0.261494,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.275853,0.15,4 +33124,0,0.465389,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.169325,0.15,4 +33126,0,0.163257,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.918166,0.15,4 +33128,0,0.461889,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.085341,0.15,4 +33143,0,0.092306,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.215333,0.15,4 +33150,0,0.223345,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.360291,0.15,4 +33526,0,0.154651,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.711623,0.15,4 +17294,0,0.122872,1,1,0,2,7,,1,1,Woodbridge,St,4712427,0.119,0.242,0,2.948934,8.5,4.5 +17336,0,0.054645,1,1,0,2,5,,1,1,Rivard,St,1627905,0.119,0.174,0,1.311468,8.5,4.5 +22635,0,0.122349,2,2,1,2,5,,1,1,Franklin,St,4712428,0.119,0.242,0,2.936368,8.5,4.5 +23176,0,0.200812,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.293,0.493,0,4.819481,5,5 +24361,0,0.137813,2,2,0,2,4,,3,1,Atwater,St,4711889,0.106,0.244,0,3.307512,6,4.5 +33105,0,0.147481,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.539544,0.15,4 +11718,0,0.044813,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.499,6.544,0,1.075504,5,5 +12251,0,0.086547,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.458,0.545,0,2.077125,6,4.5 +13427,0,0.514781,2,2,1,2,3,,3,1,Fort,St,1585010,3.987,4.502,0,12.354734,5,5 +13454,1,0.478421,1,0,0,1,1,RFS,2,1,N M 10/S I 75 CD,RAMP,1585003,0,0.478,0,,0.22,6 +14946,-1,0.213721,0,3,0,1,1,,3,1,S I 75,,1595106,22.957,23.171,0,,0.58,7 +15105,1,0.146814,1,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.474,0.621,0,3.523531,8,4.5 +15163,1,0.133827,1,0,0,1,1,RON,3,1,I 75 Service Drive/I 75 CD,RAMP,1595104,0,0.134,0,,1.09,4 +15232,1,0.207217,3,0,0,1,1,,3,1,N I 75,,1592010,22.938,23.145,0,,0.58,7 +15443,1,0.092769,1,0,0,1,1,ROF,3,1,S M 10/Trumbull,RAMP,1595507,0,0.093,0,,3.07,5 +15570,1,0.149768,1,0,0,1,1,RFF,3,1,S M 10/S I 75 CD,RAMP,1591108,0.149,0.299,0,,0.32,8.5 +16182,0,0.080702,2,2,0,2,5,,3,1,Bagley,St,4718918,0.831,0.912,0,1.936847,8,4.5 +20835,0,0.363593,2,2,0,2,4,,3,1,Jefferson,Ave,4302169,19.808,20.172,0,8.726233,6,4.5 +21459,1,0.381428,2,0,0,1,1,FCD,3,1,N I 75 CD,RAMP,4700028,0.361,0.742,0,,0.58,7 +22385,0,0.206986,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.539,0.746,0,4.967669,6,4.5 +23365,-1,0.070363,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4705605,0.062,0.132,0,1.688703,5,5 +23914,1,0.070386,2,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706959,0.1,0.171,0,1.689267,5,5 +27470,0,0.081163,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.9479,0.15,4 +33168,0,0.283664,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.807939,0.15,4 +33171,0,0.155644,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.735465,0.15,4 +20140,0,0.080466,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,19.728,19.808,0,1.931176,5,5 +11606,0,0.438999,1,1,0,2,5,,3,1,Scotten,St,1577306,0,0.439,0,10.535982,8,4.5 +11626,1,0.275455,2,0,0,2,4,DV2,3,1,Grand,Blvd,1581303,0.529,0.804,0,6.610923,6,4.5 +11724,0,0.329508,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.61,5.94,0,7.908185,5,5 +12312,0,0.190833,1,1,0,2,4,,3,1,Clark,St,1581210,0.857,1.048,0,4.579987,6,4.5 +12415,1,0.38668,1,0,0,1,1,RFF,3,1,S I 75/W I 96,RAMP,1582101,0,0.387,0,,0.58,7 +37844,-1,0.147526,0,2,0,2,5,,3,1,22nd,St,1590407,1.405,1.553,0,3.540621,8,4.5 +37809,1,0.287873,3,0,0,1,1,,3,1,N I 75,,1592010,21.298,21.586,0,,0.58,7 +12468,1,0.195097,2,0,0,2,5,DV2,3,1,Grand,Blvd,1581303,0,0.195,0,4.682325,8,4.5 +12656,0,0.12112,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,3.381,3.503,0,2.906875,5,5 +12758,0,0.14607,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.512,2.658,0,3.505676,5,5 +37858,1,0.139098,2,0,0,1,1,ROF,3,1,E I 96/Ambassador Bridge,RAMP,4718926,0.255,0.394,0,,2.24,5 +37849,1,0.194788,1,0,0,1,1,ROF,3,1,S I 75/Ambassador Bridge,RAMP,4718927,0,0.195,0,,2.24,5 +13429,0,0.353391,2,2,1,2,3,,3,1,Fort,St,1585010,3.518,3.871,0,8.481372,5,5 +37866,1,0.141618,1,0,0,1,1,RON,3,1,Ambassador Brg Trucks/S I 75,RAMP,4718920,0.186,0.327,0,,1.09,4 +14674,1,0.190243,1,0,0,1,1,FCD,3,1,S I 75 CD/S I 75,RAMP,1590408,0,0.19,0,,0.58,7 +37819,-1,0.172208,0,4,0,1,1,,3,1,S I 75,,1595106,20.953,21.125,0,,0.58,7 +37854,1,0.193498,1,0,0,1,1,RON,3,1,S I 75 Service Drive/S I 75,RAMP,4718929,0,0.194,0,,1.09,4 +39922,1,0.016686,1,0,0,2,3,,3,1,21st/N I 75,TURN,4718957,0,0.017,0,0.400461,5,5 +14691,1,0.316992,1,0,0,1,1,RFF,3,1,E I 96/N I 75 CD,RAMP,1590406,0.319,0.636,0,,0.58,7 +14699,0,0.109317,1,1,0,2,4,,3,1,Sainte Anne,St,1590210,0,0.109,0,2.623614,6,4.5 +37881,0,0.380197,1,1,0,2,7,,4,3,Tienken,Rd,626010,1.023,1.403,0,9.12473,6.55,4.5 +37871,1,0.326764,2,0,0,1,1,RON,3,1,Ambassador Bridge/S I 75,RAMP,4718923,0.111,0.438,0,,1.09,4 +14838,1,0.226206,2,0,0,1,1,,3,1,N I 75,,1592010,22.118,22.344,0,,0.58,7 +37850,1,0.305339,1,0,0,1,1,ROF,3,1,S I 75/Vernor,RAMP,4718928,0,0.305,0,,2.24,5 +37853,1,0.154549,2,0,0,2,5,,3,1,N I 75 Service Drive,,4718930,0,0.155,0,3.70917,8,4.5 +37803,1,0.16756,3,0,0,1,1,,3,1,N I 75,,1592010,21.13,21.298,0,,0.58,7 +15113,1,0.196541,1,0,0,1,1,FCD,3,1,N I 75/N I 75 CD,RAMP,1592605,0,0.197,0,,0.58,7 +37859,1,0.145692,1,0,0,1,1,ROF,3,1,N I 75/Ambassador Bridge,RAMP,4718919,0,0.146,0,,2.24,5 +15181,-1,0.272535,0,2,0,2,5,,3,1,S I 75 Service Drive,,1595509,0,0.273,0,6.540831,8,4.5 +37860,1,0.142238,2,0,0,1,1,ROF,3,1,N I 75/Ambassador Bridge,RAMP,4718919,0.146,0.288,0,,2.24,5 +37864,1,0.18589,2,0,0,1,1,RON,3,1,Ambassador Brg Trucks/S I 75,RAMP,4718920,0,0.186,0,,1.09,4 +37839,0,0.070924,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,3.311,3.381,0,1.702187,5,5 +15755,-1,0.258267,0,2,0,1,1,,3,1,S I 75,,1595106,22.054,22.312,0,,0.58,7 +21846,1,0.294291,1,0,0,1,1,RFF,3,1,S I 75 CD/W I 96,RAMP,4700030,0,0.294,0,,0.58,7 +22170,-1,0.274663,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704383,0.544,0.818,0,6.59191,6,4.5 +22174,-1,0.210659,0,2,0,2,5,DV2,3,1,Grand,Blvd,4704383,0,0.211,0,5.055817,8,4.5 +23368,0,0.197058,1,1,0,2,5,,3,1,20th,St,4705623,0,0.197,0,4.7294,8,4.5 +24252,1,0.347692,1,0,0,1,1,RFF,3,1,E I 96/N I 75,RAMP,4710310,0,0.348,0,,0.58,7 +24329,0,0.2736,1,1,0,2,5,,3,1,Jefferson,Ave,4710239,0,0.274,0,6.566389,8,4.5 +40023,-1,0.031895,0,2,0,2,3,,4,3,Orchard Lake,Rd,5499978,0,0.032,0,0.765472,3.7,5 +37870,1,0.110798,1,0,0,1,1,RON,3,1,Ambassador Bridge/S I 75,RAMP,4718923,0,0.111,0,,1.09,4 +30444,0,0.223409,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.361817,0.15,4 +30453,0,0.182651,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.383626,0.15,4 +30454,0,0.117353,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.816472,0.15,4 +32485,0,0.34277,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.226487,0.15,4 +33804,0,0.09239,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.217359,0.15,4 +33884,0,0.147112,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.530697,0.15,4 +12098,0,0.303942,1,1,0,2,4,,3,1,Clark,St,1581210,1.048,1.352,0,7.294604,6,4.5 +12905,0,0.207239,2,2,0,2,4,,3,1,Clark,St,1581210,1.479,1.686,0,4.973725,6,4.5 +12998,0,0.189182,1,1,0,2,5,,3,1,Junction,St,1581110,0.612,0.801,0,4.540371,8,4.5 +13433,0,0.21629,2,2,1,2,3,,3,1,Fort,St,1585010,2.907,3.123,0,5.190966,5,5 +14686,-1,0.035167,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.54,0.575,0,0.844018,8,4.5 +14688,-1,0.135882,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.224,0.36,0,3.261164,8,4.5 +14702,0,0.293904,1,1,0,2,5,,3,1,Scotten,St,1590108,0,0.294,0,7.053693,8,4.5 +14938,-1,0.331459,0,4,0,1,1,,3,1,S I 75,,1595106,20.04,20.371,0,,0.58,7 +15590,1,0.420682,4,0,0,1,1,,3,1,N I 75,,1592010,20.304,20.724,0,,0.58,7 +15721,1,0.056246,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.645,1.701,0,1.349911,8,4.5 +15763,-1,0.421414,0,4,0,1,1,,3,1,S I 75,,1595106,20.371,20.793,0,,0.58,7 +15767,1,0.136016,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.351,1.487,0,3.264377,8,4.5 +20595,0,0.141391,2,2,0,2,4,,3,1,Jefferson,Ave,4302169,20.172,20.313,0,3.393386,6,4.5 +33364,0,0.281142,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.747414,0.15,4 +33366,0,0.221747,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.321929,0.15,4 +12190,0,0.321671,1,1,0,2,5,,3,1,Junction,St,1581110,0,0.322,0,7.720098,8,4.5 +12191,0,0.149046,1,1,0,2,5,,3,1,Junction,St,1581110,0.322,0.471,0,3.577108,8,4.5 +13434,0,0.134595,2,2,1,2,3,,3,1,Fort,St,1585010,2.773,2.907,0,3.230269,5,5 +11938,0,0.0812,2,2,0,2,5,,3,1,Junction,St,1581110,0.471,0.552,0,1.948804,8,4.5 +13303,0,0.059934,2,2,0,2,5,,3,1,Junction,St,1581110,0.552,0.612,0,1.438412,8,4.5 +30611,0,0.147173,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.532151,0.15,4 +30612,0,0.133366,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.200776,0.15,4 +32038,0,0.182751,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.386029,0.15,4 +32419,0,0.243334,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.840013,0.15,4 +32782,0,0.359681,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.632335,0.15,4 +33808,0,0.41446,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.947039,0.15,4 +32036,0,0.138011,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.312258,0.15,4 +14687,-1,0.17975,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.36,0.54,0,4.314005,8,4.5 +15124,1,0.153062,1,0,0,1,1,ROF,3,1,N I 75/Clark,RAMP,1592601,0,0.153,0,,2.24,5 +15129,1,0.118376,1,0,0,1,1,RON,3,1,Clark/S I 75,RAMP,1595304,0,0.118,0,,1.09,4 +15495,1,0.158382,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.487,1.645,0,3.801157,8,4.5 +12740,0,0.161914,2,2,0,2,4,,3,1,Clark,St,1581210,1.686,1.848,0,3.885936,6,4.5 +20390,0,0.217018,2,2,0,2,4,,3,1,Jefferson,Ave,4302169,20.313,20.53,0,5.208438,6,4.5 +12469,1,0.066569,2,0,0,2,4,DV2,3,1,Grand,Blvd,1581303,0.195,0.262,0,1.59765,6,4.5 +13431,0,0.231628,2,2,1,2,3,,3,1,Fort,St,1585010,3.269,3.5,0,5.559063,5,5 +14682,0,0.151454,1,1,0,2,5,,3,1,Lafayette,Blvd,1590407,0.805,0.957,0,3.634904,8,4.5 +14882,1,0.133225,1,0,0,1,1,ROF,3,1,S I 75/Clark,RAMP,1595305,0,0.133,0,,2.24,5 +15418,1,0.151987,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.927,2.079,0,3.647697,8,4.5 +15710,1,0.183333,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.744,1.927,0,4.399992,8,4.5 +37867,1,0.251428,1,0,0,1,1,RON,3,1,Ambassador Bridge/W I 96,RAMP,4718921,0,0.251,0,,1.09,4 +22173,-1,0.062936,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704383,0.211,0.274,0,1.51046,6,4.5 +30456,0,0.230322,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.527724,0.15,4 +32037,0,0.334845,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.03629,0.15,4 +33806,0,0.242631,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.823133,0.15,4 +33807,0,0.415523,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.972543,0.15,4 +11625,0,0.057907,2,2,0,2,4,,3,1,Clark,St,1581210,1.352,1.41,0,1.389774,6,4.5 +13432,0,0.145153,2,2,1,2,3,,3,1,Fort,St,1585010,3.123,3.269,0,3.483673,5,5 +14684,-1,0.032109,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.682,0.714,0,0.770614,8,4.5 +15357,1,0.172746,1,0,0,1,1,RON,3,1,Clark/N I 75,RAMP,1592602,0,0.173,0,,1.09,4 +13214,0,0.069238,2,2,0,2,4,,3,1,Clark,St,1581210,1.41,1.479,0,1.661705,6,4.5 +15431,1,0.042336,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.701,1.744,0,1.016061,8,4.5 +14685,-1,0.107236,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.575,0.682,0,2.573661,8,4.5 +14683,-1,0.090872,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.714,0.805,0,2.180929,8,4.5 +13430,0,0.017512,2,2,1,2,3,,3,1,Fort,St,1585010,3.5,3.518,0,0.42029,5,5 +12016,1,0.192381,2,0,0,2,4,DV2,3,1,Grand,Blvd,1581303,0.336,0.529,0,4.61715,6,4.5 +22171,-1,0.192824,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704383,0.351,0.544,0,4.627766,6,4.5 +12313,1,0.07484,2,0,0,2,4,DV2,3,1,Grand,Blvd,1581303,0.262,0.336,0,1.796171,6,4.5 +15701,1,0.017453,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,2.079,2.096,0,0.418861,8,4.5 +22172,-1,0.077569,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704383,0.274,0.351,0,1.861667,6,4.5 +14681,-1,0.016585,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.957,0.973,0,0.398033,8,4.5 +11727,0,0.0759,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.217,5.293,0,1.821611,5,5 +12032,1,0.112602,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.39,0.503,0,2.702454,5,5 +12329,0,0.199612,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.765,2.965,0,4.790681,5,5 +12906,0,0.219312,1,1,0,2,4,,3,1,Grand,Blvd,1581303,1.044,1.264,0,5.26348,6,4.5 +37818,-1,0.160543,0,4,0,1,1,,3,1,S I 75,,1595106,20.793,20.953,0,,0.58,7 +37820,-1,0.059379,0,4,0,1,1,,3,1,S I 75,,1595106,21.125,21.184,0,,0.58,7 +13132,0,0.240284,1,1,0,2,4,,3,1,Grand,Blvd,1581303,0.804,1.044,0,5.766823,6,4.5 +37801,1,0.195167,4,0,0,1,1,,3,1,N I 75,,1592010,20.935,21.13,0,,0.58,7 +16279,0,0.240197,1,1,0,2,5,,3,1,Vinewood,St,1609505,0.469,0.709,0,5.764733,8,4.5 +16795,0,0.453723,1,1,0,2,5,,3,1,Vinewood,St,1609505,0.709,1.162,0,10.889363,8,4.5 +21278,-1,0.051876,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.273,0.325,0,1.245013,5,5 +32034,0,0.158778,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.810665,0.15,4 +33883,0,0.340176,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.16423,0.15,4 +11603,0,0.00915,1,1,0,2,5,,3,1,Scotten,St,1577306,0.719,0.729,0,0.219607,8,4.5 +11604,0,0.224066,1,1,0,2,5,,3,1,Scotten,St,1577306,0.495,0.719,0,5.377575,8,4.5 +12491,0,0.107355,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.658,2.765,0,2.57653,5,5 +24137,0,0.201937,1,1,0,2,5,,3,1,Toledo,St,4711260,0,0.202,0,4.84649,8,4.5 +12553,0,0.225694,1,1,0,2,4,,3,1,Clark,St,1581210,0.631,0.857,0,5.416648,6,4.5 +21628,0,0.10749,1,1,0,2,5,,3,1,Toledo,St,4700069,0,0.108,0,2.579758,8,4.5 +12739,0,0.018021,1,1,0,2,4,,3,1,Clark,St,1581210,0.613,0.631,0,0.432514,6,4.5 +11605,0,0.056541,1,1,0,2,5,,3,1,Scotten,St,1577306,0.439,0.495,0,1.356994,8,4.5 +24136,0,0.071764,1,1,0,2,5,,3,1,Toledo,St,4711260,0.202,0.274,0,1.722344,8,4.5 +11730,0,0.070127,2,2,1,2,3,,3,1,Michigan,Ave,1577103,4.97,5.041,0,1.683037,5,5 +12470,1,0.076286,2,0,0,2,3,DV2,3,1,Grand,Blvd,1581303,1.464,1.54,0,1.830858,5,5 +12489,1,0.145141,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.178,0.323,0,3.483383,5,5 +16515,0,0.18883,1,1,0,2,5,,3,1,Vinewood,St,1609505,1.162,1.351,0,4.531911,8,4.5 +21430,-1,0.146619,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0,0.147,0,3.518847,5,5 +22168,-1,0.071686,0,2,0,2,3,DV2,3,1,Grand,Blvd,4704385,0.208,0.28,0,1.720462,5,5 +23652,0,0.157467,1,1,0,2,5,,3,1,24th,St,4705563,0.959,1.116,0,3.779216,8,4.5 +11731,0,0.089061,2,2,1,2,3,,3,1,Michigan,Ave,1577103,4.881,4.97,0,2.137462,5,5 +12923,0,0.098036,2,2,0,2,4,,3,1,Grand,Blvd,1581907,0.068,0.166,0,2.352871,6,4.5 +12192,0,0.112614,2,2,0,2,3,,3,1,Grand,Blvd,1581303,1.54,1.653,0,2.702725,5,5 +12653,0,0.011764,2,2,0,2,3,,3,1,Grand,Blvd,1581907,0.166,0.178,0,0.282344,5,5 +11728,0,0.159042,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.058,5.217,0,3.81702,5,5 +12637,1,0.200702,2,0,0,2,4,DV2,3,1,Grand,Blvd,1581303,1.264,1.464,0,4.816844,6,4.5 +22169,-1,0.208324,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704385,0,0.208,0,4.999779,6,4.5 +11729,0,0.017403,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.041,5.058,0,0.417669,5,5 +12206,1,0.06754,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.323,0.39,0,1.62096,5,5 +21431,-1,0.126771,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.147,0.273,0,3.042516,5,5 +23318,0,0.110689,1,1,0,2,5,,3,1,24th,St,4705563,1.116,1.227,0,2.656541,8,4.5 +32032,0,0.141135,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.38723,0.15,4 +33802,0,0.159557,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.829369,0.15,4 +23505,0,0.011314,1,1,0,2,5,,3,1,24th,St,4705563,1.227,1.238,0,0.271546,8,4.5 +32033,0,0.075848,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.820356,0.15,4 +11644,0,0.151023,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,3.04,3.191,0,3.624559,5,5 +37821,-1,0.331832,0,3,0,1,1,,3,1,S I 75,,1595106,21.184,21.516,0,,0.58,7 +37843,-1,0.225293,0,2,0,2,5,,3,1,S I 75 Service Drive,,1590407,1.18,1.405,0,5.407043,8,4.5 +37845,-1,0.254669,0,2,0,2,7,,3,1,22nd,St,1590407,1.553,1.807,0,6.112046,7,4.5 +12034,0,0.075584,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.965,3.04,0,1.81401,5,5 +30450,0,0.045182,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.084367,0.15,4 +37832,-1,0.246906,0,2,0,1,1,,3,1,W I 96,,1577405,5.134,5.38,0,,0.58,7 +11726,0,0.144528,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.293,5.437,0,3.46866,5,5 +12963,-1,0.549522,0,2,0,1,1,,3,1,W I 96,,1577405,4.584,5.134,0,,0.58,7 +13034,1,0.40564,2,0,0,1,1,,3,1,E I 96,,1577404,4.621,5.026,0,,0.58,7 +37800,1,0.211187,4,0,0,1,1,,3,1,N I 75,,1592010,20.724,20.935,0,,0.58,7 +14692,1,0.318731,2,0,0,1,1,RFF,3,1,E I 96/N I 75,RAMP,1590406,0,0.319,0,,0.58,7 +17053,0,0.110858,1,1,0,2,5,,3,1,Lawton,St,1608601,0,0.111,0,2.660596,8,4.5 +24427,1,0.357955,2,0,0,2,5,,3,1,E I 96 Service Drive,,4710513,0.448,0.806,0,8.590929,8,4.5 +21847,1,0.157478,2,0,0,1,1,RFF,3,1,S I 75/W I 96,RAMP,4700030,0.294,0.452,0,,0.58,7 +24438,1,0.010618,2,0,0,2,5,,3,1,E I 96 Service Drive,,4710513,0.438,0.448,0,0.254821,8,4.5 +13306,1,0.20488,1,0,0,1,1,ROF,3,1,W I 96/Michigan,RAMP,1581402,0,0.205,0,,2.24,5 +11725,0,0.049994,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.56,5.61,0,1.199852,5,5 +22369,0,0.336066,2,2,0,1,3,,3,1,Ambassador,Brg,4701342,0.18,0.516,0,,5,5 +33164,0,0.115492,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.771815,0.15,4 +33165,0,0.17023,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.085524,0.15,4 +39938,1,0.226471,2,0,0,2,7,,3,1,E I 96 Service Drive,,4710513,0.806,1.033,0,5.435299,7,4.5 +22370,0,0.179972,2,2,0,1,3,,3,1,Ambassador,Brg,4701342,0,0.18,0,,5,5 +24328,0,0.023058,1,1,0,2,5,,3,1,Jefferson,Ave,4710239,0.274,0.297,0,0.553391,8,4.5 +39923,1,0.029729,1,0,0,2,3,,3,1,DIBC Customs Plaza/21st,,4718956,0,0.03,0,0.713504,5,5 +37857,1,0.072893,1,0,0,1,1,ROF,3,1,S I 75/Ambassador Bridge,RAMP,4718927,0.195,0.268,0,,2.24,5 +37852,1,0.118416,1,0,0,1,1,ROF,3,1,N I 75/Vernor,RAMP,4718922,0,0.118,0,,2.24,5 +37856,1,0.255419,1,0,0,1,1,ROF,3,1,E I 96/Ambassador Bridge,RAMP,4718926,0,0.255,0,,2.24,5 +24557,0,0.098817,2,2,1,2,3,,3,1,Fort,St,1585010,3.871,3.97,0,2.371619,5,5 +13428,0,0.017593,2,2,1,2,3,,3,1,Fort,St,1585010,3.97,3.987,0,0.42222,5,5 +34024,0,0.15289,2,2,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4 +11722,0,0.228336,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.012,6.24,0,5.480071,5,5 +12492,0,0.30868,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,3.503,3.811,0,7.408324,5,5 +15121,1,0.113496,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.028,0.141,0,2.723901,8,4.5 +15171,-1,0.644833,0,3,0,1,1,,3,1,S I 75,,1595106,22.312,22.957,0,,0.58,7 +15402,-1,0.192148,0,2,0,2,5,,3,1,S I 75 Service Drive,,1595509,0.486,0.678,0,4.611545,8,4.5 +15416,1,0.163673,1,0,0,1,1,RON,3,1,12th/S I 75 CD,RAMP,1595103,0,0.164,0,,1.09,4 +15546,1,0.437795,3,0,0,1,1,,3,1,N I 75,,1592010,22.344,22.782,0,,0.58,7 +15750,-1,0.176257,0,1,0,1,1,ROF,3,1,N I 75 CD/12th,RAMP,1595102,0,0.176,0,,2.24,5 +16436,0,0.164298,2,2,0,2,5,,3,1,Bagley,St,4718918,0.667,0.831,0,3.943144,8,4.5 +16705,0,0.216757,2,2,0,2,5,,3,1,Bagley,St,4718918,0.213,0.429,0,5.202176,8,4.5 +21663,1,0.260853,2,0,0,1,1,FCD,3,1,N I 75 CD,RAMP,4700028,0.1,0.361,0,,0.58,7 +22000,-1,0.449037,0,2,0,1,1,FCD,3,1,S I 75 CD,RAMP,4700029,0.298,0.747,0,,0.58,7 +22389,0,0.109363,1,1,0,2,4,,3,1,Lafayette,Blvd,4718963,0.083,0.192,0,2.624719,6,4.5 +22575,-1,0.34772,0,2,0,2,5,,3,1,14th,St,4705601,0,0.348,0,8.345281,8,4.5 +23131,-1,0.26246,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4705605,0.477,0.739,0,6.299049,5,5 +23912,1,0.257659,2,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706959,0.514,0.772,0,6.183826,5,5 +24270,0,0.074086,1,1,0,2,5,,3,1,20th,St,4711899,0,0.074,0,1.77806,8,4.5 +37827,-1,0.538075,0,3,0,1,1,,3,1,S I 75,,1595106,21.516,22.054,0,,0.58,7 +37831,1,0.321504,1,0,0,1,1,,3,1,E I 96,,1577404,5.429,5.75,0,,0.58,7 +16724,0,0.082331,2,2,0,2,5,,3,1,Bagley,St,4718918,0.13,0.213,0,1.975951,8,4.5 +37842,-1,0.206858,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.973,1.18,0,4.964593,8,4.5 +30357,0,0.256573,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.157758,0.15,4 +30449,0,0.334926,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.038221,0.15,4 +33169,0,0.181591,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.35818,0.15,4 +37828,1,0.116873,1,0,0,1,1,ROF,3,1,E I 96/22nd,RAMP,4719004,0,0.117,0,,2.24,5 +37829,1,0.402563,2,0,0,1,1,,3,1,E I 96,,1577404,5.026,5.429,0,,0.58,7 +37838,0,0.119431,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,3.191,3.311,0,2.866354,5,5 +39939,1,0.013314,2,0,0,2,7,,3,1,E I 96 Service Drive,,4710513,1.033,1.046,0,0.319538,7,4.5 +39941,0,0.018232,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0,0.018,0,0.437576,8.5,4.5 +39919,0,0.167017,1,1,0,2,5,,3,1,21st,St,4718958,0,0.167,0,4.008401,8,4.5 +37816,1,0.532389,3,0,0,1,1,,3,1,N I 75,,1592010,21.586,22.118,0,,0.58,7 +37841,1,0.183792,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,2.096,2.28,0,4.41101,8,4.5 +16410,0,0.074687,1,1,0,2,5,,3,1,Bagley,St,4718918,0,0.075,0,1.792498,8,4.5 +23295,0,0.103221,1,1,0,2,5,,3,1,20th,St,4718959,0,0.103,0,2.477299,8,4.5 +37836,-1,0.443997,0,1,0,1,1,,3,1,W I 96,,1577405,5.38,5.824,0,,0.58,7 +22699,0,0.059094,1,1,0,2,5,,3,1,20th,St,4718959,0.179,0.238,0,1.418262,8,4.5 +22973,0,0.075343,1,1,0,2,5,,3,1,20th,St,4718959,0.103,0.179,0,1.808234,8,4.5 +17029,0,0.055724,1,1,0,2,5,,3,1,Bagley,St,4718918,0.075,0.13,0,1.337368,8,4.5 +22390,0,0.0827,1,1,0,2,4,,3,1,Lafayette,Blvd,4718963,0,0.083,0,1.984808,6,4.5 +30441,0,0.078299,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.879168,0.15,4 +14957,-1,0.213543,0,2,0,2,5,,3,1,S I 75 Service Drive,,1595509,0.273,0.486,0,5.125032,8,4.5 +21923,1,0.099913,2,0,0,1,1,FCD,3,1,N I 75 CD,RAMP,4700028,0,0.1,0,,0.58,7 +21999,-1,0.29855,0,2,0,1,1,FCD,3,1,S I 75 CD,RAMP,4700029,0,0.298,0,,0.58,7 +23067,-1,0.237118,0,2,0,2,3,,3,1,14th,St,4705601,0.469,0.706,0,5.690834,5,5 +23402,-1,0.088435,0,2,0,2,3,,3,1,14th,St,4705601,0.38,0.469,0,2.12244,5,5 +30361,0,0.170094,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.08225,0.15,4 +30359,0,0.089272,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.142532,0.15,4 +11723,0,0.072069,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.94,6.012,0,1.72966,5,5 +13309,-1,0.119712,0,1,0,2,3,,3,1,Vernor,Hwy,1581408,0.034,0.153,0,2.873078,5,5 +17016,-1,0.025218,0,1,0,2,3,,3,1,Vernor,Hwy,1608206,0.272,0.297,0,0.605239,5,5 +22719,1,0.112101,1,0,0,2,3,,3,1,Vernor,Hwy,4704854,0,0.112,0,2.690418,5,5 +30445,0,0.15626,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.750234,0.15,4 +30447,0,0.084828,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.035862,0.15,4 +30448,0,0.10943,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.626312,0.15,4 +13308,0,0.033558,1,1,0,2,3,,3,1,Vernor,Hwy,1581408,0,0.034,0,0.805384,5,5 +30446,0,0.101321,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.4317,0.15,4 +15358,1,0.027515,1,0,0,2,5,,3,1,Vernor,Hwy,1595105,0,0.028,0,0.66037,8,4.5 +23579,-1,0.032808,0,2,0,2,3,,3,1,14th,St,4705601,0.348,0.38,0,0.78738,5,5 +23916,1,0.028175,2,0,0,2,5,,3,1,N I 75 Service Drive,,4706955,0,0.028,0,0.676211,8,4.5 +16175,0,0.215018,2,2,0,2,5,,3,1,Bagley,St,4718918,0.443,0.657,0,5.160432,8,4.5 +22387,0,0.21719,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.312,0.529,0,5.21256,6,4.5 +23481,-1,0.344951,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4705605,0.132,0.477,0,8.278828,5,5 +23913,1,0.34391,2,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706959,0.171,0.514,0,8.25385,5,5 +33166,0,0.287944,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.91065,0.15,4 +33803,0,0.215453,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.170863,0.15,4 +22388,0,0.120155,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.192,0.312,0,2.883727,6,4.5 +16449,0,0.013069,2,2,0,2,5,,3,1,Bagley,St,4718918,0.429,0.443,0,0.313653,8,4.5 +22386,0,0.010183,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.529,0.539,0,0.244402,6,4.5 +17055,0,0.009601,2,2,0,2,5,,3,1,Bagley,St,4718918,0.657,0.667,0,0.230421,8,4.5 +11720,0,0.17167,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.252,6.423,0,4.120072,5,5 +12250,0,0.185584,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.545,0.73,0,4.454021,6,4.5 +15106,1,0.212786,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.248,0.461,0,5.106873,8,4.5 +15109,1,0.24834,1,0,0,1,1,RON,3,1,12th/N I 75,RAMP,1592607,0,0.248,0,,1.09,4 +15316,-1,0.20199,0,2,0,2,5,,3,1,Henry,Dr,1595509,0.744,0.946,0,4.847767,8,4.5 +15345,1,0.108738,1,0,0,1,1,RFF,3,1,N I 75 CD/N I 75,RAMP,1592606,0,0.109,0,,0.58,7 +22850,-1,0.089601,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4705605,0.739,0.829,0,2.150416,5,5 +23188,1,0.208776,1,0,0,1,1,ROF,3,1,S I 75/12th,RAMP,4705635,0,0.209,0,,2.24,5 +23911,1,0.095184,2,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706959,0.772,0.867,0,2.284424,5,5 +11721,0,0.011882,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.24,6.252,0,0.285158,5,5 +14919,-1,0.043486,0,2,0,2,5,,3,1,Henry,Dr,1595509,0.7,0.744,0,1.04367,8,4.5 +15350,1,0.078349,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.141,0.219,0,1.880375,8,4.5 +23563,1,0.079793,4,0,0,2,3,,3,1,Rosa Parks,Blvd,4705605,0.846,0.925,0,1.91504,5,5 +15153,-1,0.022148,0,2,0,2,5,,3,1,S I 75 Service Drive,,1595509,0.678,0.7,0,0.531556,8,4.5 +15115,1,0.028973,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.219,0.248,0,0.69534,8,4.5 +22556,0,0.016855,2,2,0,2,3,,3,1,Rosa Parks,Blvd,4705605,0.829,0.846,0,0.404527,5,5 +11719,0,0.075951,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.423,6.499,0,1.822834,5,5 +12247,0,0.076602,1,1,1,2,4,,3,1,Trumbull,St,1577506,0.73,0.807,0,1.838444,6,4.5 +15289,1,0.155719,3,0,0,1,1,,3,1,N I 75,,1592010,22.782,22.938,0,,0.58,7 +14865,1,0.013089,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.461,0.474,0,0.314131,8,4.5 +15079,-1,0.073636,0,2,0,2,5,,3,1,Henry,Dr,1595509,0.946,1.019,0,1.767253,8,4.5 +11709,0,0.061609,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.307,7.369,0,1.47862,6,5 +12294,1,0.075538,2,0,0,2,4,,1,1,Grand River,Ave,1577408,12.468,12.544,0,1.812901,8,4.5 +12592,0,0.071516,1,1,0,2,3,,1,1,Cass,Ave,1577605,0,0.072,0,1.716375,6,5 +12908,0,0.086753,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.297,0.383,0,2.082061,8.5,4.5 +12980,-1,0.073502,0,3,0,1,2,,1,1,N M 10,,1577510,12.282,12.356,0,,0.32,8.5 +13380,1,0.093216,3,0,0,1,2,,1,1,S M 10,,1577509,12.281,12.374,0,,0.32,8.5 +13415,0,0.052382,2,2,0,2,4,,1,1,Fort,St,1585010,5.456,5.508,0,1.257173,8,4.5 +13834,-1,0.080199,0,4,0,2,3,,1,1,Congress,St,1585505,0.134,0.214,0,1.92478,6,5 +13984,-1,0.076307,0,3,0,2,5,,1,1,State,St,4718987,0.029,0.105,0,1.831368,8.5,4.5 +14005,-1,0.057254,0,3,0,2,4,,1,1,Clifford,St,1589707,0.612,0.669,0,1.374104,8,4.5 +14306,1,0.123418,3,0,0,2,3,,1,1,Larned,St,1585504,0,0.123,0,2.962029,6,5 +21410,1,0.053176,2,0,0,2,4,,1,1,Park,Ave,4700018,0.271,0.325,0,1.27623,8,4.5 +22375,0,0.054323,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.474,1.528,0,1.303745,8,4.5 +23102,0,0.231605,1,1,0,2,4,,1,1,Civic Center,Dr,4705626,0.128,0.359,0,5.55852,8,4.5 +30467,0,0.123137,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.955287,0.15,4 +33134,0,0.062967,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.511204,0.15,4 +33136,0,0.037067,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.889611,0.15,4 +33206,0,0.096996,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.327916,0.15,4 +33849,0,0.117466,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.819187,0.15,4 +11714,0,0.138301,2,2,1,2,3,,1,1,Michigan,Ave,1577103,6.833,6.971,0,3.319218,6,5 +11891,1,0.358967,3,0,0,1,2,,1,1,S M 10,,1577509,11.741,12.099,0,,0.32,8.5 +40122,0,0.245271,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.34,9.586,0,5.886503,6,4.5 +12194,0,0.070197,1,1,1,2,4,,1,1,3rd,St,1581602,0.071,0.141,0,1.684724,8,4.5 +12253,0,0.193122,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.201,0.394,0,4.634926,6,4.5 +12555,0,0.06919,1,1,0,2,4,,1,1,1st,St,1581603,0,0.069,0,1.660559,8,4.5 +12827,0,0.064764,1,1,0,2,5,,3,1,6th,St,1581510,0.136,0.201,0,1.554336,8,4.5 +12990,-1,0.478214,0,3,0,1,2,,1,1,N M 10,,1577510,11.629,12.107,0,,0.32,8.5 +13135,0,0.065864,1,1,0,2,5,,3,1,6th,St,1581510,0.07,0.136,0,1.580736,8,4.5 +13418,0,0.068874,2,2,0,2,3,,1,1,Fort,St,1585010,5.241,5.31,0,1.652976,6,5 +13422,0,0.125268,2,2,0,2,3,,3,1,Fort,St,1585010,4.906,5.031,0,3.00642,5,5 +13449,1,0.06888,2,0,0,2,5,,1,1,5th,St,1585008,0.132,0.201,0,1.653128,8.5,4.5 +13450,1,0.13173,2,0,0,1,2,ROF,1,1,S M 10/Howard,RAMP,1585008,0,0.132,0,,3.07,5 +13617,0,0.065287,2,2,0,2,4,,1,1,Bagley,St,1584404,0,0.065,0,1.566897,8,4.5 +13629,1,0.072234,2,0,0,2,9,,1,1,Plum,St,4708762,0,0.072,0,1.733617,8.5,4.5 +14427,1,0.18843,1,0,0,1,2,RON,1,1,Abbott/N M 10,RAMP,1585405,0,0.188,0,,1.09,4 +14694,0,0.069648,1,1,0,2,5,,1,1,2nd,St,1590404,0,0.07,0,1.671553,8.5,4.5 +14696,-1,0.07027,0,2,0,2,5,,1,1,4th,St,1590403,0.068,0.138,0,1.686491,8.5,4.5 +14698,0,0.099616,1,1,0,2,5,,3,1,Cabacier,St,1590310,0,0.1,0,2.390794,8,4.5 +22379,0,0.074986,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.185,1.26,0,1.799655,8,4.5 +22382,0,0.075108,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.974,1.049,0,1.802594,6,4.5 +23700,0,0.065252,2,2,0,2,5,,3,1,Howard,St,4705597,0.511,0.577,0,1.566052,8,4.5 +24317,-1,0.012896,0,2,0,2,4,DV2,3,1,Jefferson,Ave,4710239,1.744,1.757,0,0.309512,6,4.5 +24531,1,0.326308,2,0,0,2,4,DV2,3,1,Jefferson,Ave,4708422,0,0.326,0,7.831402,6,4.5 +30462,0,0.072558,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.741396,0.15,4 +30466,0,0.079535,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.908831,0.15,4 +30613,0,0.156269,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.750449,0.15,4 +31948,0,0.150436,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.610475,0.15,4 +33163,0,0.372419,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.938059,0.15,4 +33182,0,0.040265,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.966363,0.15,4 +33187,0,0.152222,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.65332,0.15,4 +33189,0,0.116297,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.791134,0.15,4 +33193,0,0.074568,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.78963,0.15,4 +12255,0,0.065047,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.071,0.136,0,1.561119,6,4.5 +13424,0,0.080736,2,2,1,2,3,,3,1,Fort,St,1585010,4.728,4.808,0,1.937659,5,5 +13425,0,0.215821,2,2,1,2,3,,3,1,Fort,St,1585010,4.512,4.728,0,5.179707,5,5 +22384,0,0.080681,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.746,0.827,0,1.93634,6,4.5 +22697,0,0.221273,1,1,0,2,7,,3,1,Howard,St,4705597,0.29,0.511,0,5.310542,7,4.5 +24321,0,0.046062,2,2,1,2,4,,3,1,Jefferson,Ave,4710239,1.698,1.744,0,1.105498,6,4.5 +24323,0,0.176383,2,2,1,2,4,,3,1,Jefferson,Ave,4710239,1.37,1.546,0,4.233188,6,4.5 +32786,0,0.16743,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.018321,0.15,4 +33185,0,0.177349,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.256381,0.15,4 +33844,0,0.172389,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.137344,0.15,4 +23702,-1,0.061512,0,3,0,2,4,DV2,3,1,Rosa Parks,Blvd,4705605,0,0.062,0,1.4763,6,4.5 +23915,1,0.100173,2,0,0,2,4,DV2,3,1,Rosa Parks,Blvd,4706959,0,0.1,0,2.404142,6,4.5 +24326,1,0.050614,2,0,0,2,4,DV2,3,1,Rosa Parks,Blvd,4710239,1.32,1.37,0,1.214741,6,4.5 +13426,0,0.01006,2,2,1,2,3,,3,1,Fort,St,1585010,4.502,4.512,0,0.241445,5,5 +12254,0,0.064671,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.136,0.201,0,1.552102,6,4.5 +24322,0,0.151359,2,2,1,2,4,,3,1,Jefferson,Ave,4710239,1.546,1.698,0,3.63262,6,4.5 +30461,0,0.070702,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.696838,0.15,4 +13423,0,0.097372,2,2,0,2,3,,3,1,Fort,St,1585010,4.808,4.906,0,2.336922,5,5 +22383,0,0.146596,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.827,0.974,0,3.518314,6,4.5 +12256,0,0.07093,1,1,0,2,4,,3,1,Trumbull,St,1577506,0,0.071,0,1.702319,6,4.5 +33194,0,0.07963,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.911111,0.15,4 +11717,0,0.191161,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.544,6.735,0,4.587864,5,5 +11893,1,0.166712,3,0,0,1,2,,1,1,S M 10,,1577509,11.394,11.56,0,,0.32,8.5 +12994,-1,0.111387,0,3,0,1,2,,1,1,N M 10,,1577510,11.517,11.629,0,,0.32,8.5 +13038,-1,0.092648,0,3,0,1,2,,1,1,N M 10,,1577510,11.425,11.517,0,,0.32,8.5 +13451,1,0.228091,1,0,0,1,1,RFF,3,1,N I 75 CD/S M 10,RAMP,1585007,0,0.228,0,,0.32,8.5 +40914,1,0.094232,2,0,0,2,4,,4,4,Jefferson,Ave,0,0,0,0,2.26156,4.5,4.5 +14469,1,0.277996,2,0,0,1,2,RON,1,1,Bagley/N M 10,RAMP,1585404,0,0.278,0,,1.09,4 +15477,1,0.198009,3,0,0,1,1,,1,1,N I 75,,1592010,23.145,23.343,0,,0.32,8.5 +15555,1,0.192116,1,0,0,1,1,ROF,1,1,N I 75/Grand River,RAMP,1591110,0,0.192,0,,3.07,5 +16132,0,0.222415,1,1,0,2,5,,3,1,Bagley,St,4718918,0.912,1.134,0,5.337952,8,4.5 +23249,1,0.363946,2,0,0,1,2,ROF,1,1,S M 10/Bagley,RAMP,4705710,0,0.364,0,,3.07,5 +23532,-1,0.123477,0,1,0,2,5,,1,1,S M 10 Service Drive,,4705628,0,0.123,0,2.963448,8.5,4.5 +33192,0,0.158968,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.815222,0.15,4 +12252,0,0.064516,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.394,0.458,0,1.548378,6,4.5 +33172,0,0.069816,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.67559,0.15,4 +33170,0,0.044793,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.075024,0.15,4 +11897,1,0.05477,3,0,0,1,2,,1,1,S M 10,,1577509,11.339,11.394,0,,0.32,8.5 +13040,-1,0.179878,0,3,0,1,2,,2,1,N M 10,,1577510,11.245,11.425,0,,0.32,8.5 +13133,-1,0.113604,0,1,0,2,5,,3,1,Brooklyn,St,1581509,0.296,0.409,0,2.726494,8,4.5 +13452,1,0.318756,1,0,0,1,1,RFS,1,1,N I 75 CD/N M 10,RAMP,1585006,0,0.319,0,,0.22,6 +21246,1,0.033433,2,0,0,1,1,FCD,3,1,N I 75 CD,RAMP,4700028,0.742,0.775,0,,0.58,7 +16505,1,0.04205,1,0,0,2,5,,3,1,Elizabeth,St,1608305,0.151,0.193,0,1.009211,8,4.5 +11715,0,0.088241,2,2,1,2,3,,1,1,Michigan,Ave,1577103,6.745,6.833,0,2.117792,6,5 +11892,1,0.180078,3,0,0,1,2,,1,1,S M 10,,1577509,11.56,11.741,0,,0.32,8.5 +12638,0,0.193521,1,1,0,2,5,,3,1,6th,St,1581510,0.201,0.395,0,4.64451,8,4.5 +12394,0,0.034015,1,1,0,2,5,,1,1,6th,St,1581510,0.395,0.429,0,0.816356,8.5,4.5 +11716,0,0.009429,2,2,1,2,3,,1,1,Michigan,Ave,1577103,6.735,6.745,0,0.226291,6,5 +15557,1,0.067146,2,0,0,1,1,RFF,1,1,N M 10/N I 75,RAMP,1591109,0.23,0.297,0,,0.32,8.5 +15559,1,0.148486,1,0,0,1,1,RFS,1,1,N M 10/N I 75,RAMP,1591109,0.081,0.23,0,,0.22,6 +33195,0,0.121528,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.916667,0.15,4 +15560,1,0.08124,1,0,0,1,1,RFF,1,1,N M 10/N I 75,RAMP,1591109,0,0.081,0,,0.32,8.5 +40913,1,0.027117,2,0,0,2,4,,4,4,Jefferson,Ave,0,0,0,0,0.650813,4.5,4.5 +13215,1,0.058012,2,0,0,2,4,DV2,1,1,3rd,St,1581602,0.65,0.708,0,1.392295,8,4.5 +12051,1,0.025078,2,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0,0.025,0,0.601883,8.5,4.5 +11941,1,0.054661,2,0,0,2,4,DV2,1,1,3rd,St,1581602,0.596,0.65,0,1.311858,8,4.5 +13419,0,0.065562,2,2,0,2,3,,1,1,Fort,St,1585010,5.176,5.241,0,1.573494,6,5 +24314,-1,0.133602,0,2,0,2,4,DV2,3,1,Jefferson,Ave,4710239,1.86,1.993,0,3.206442,6,4.5 +24358,1,0.026107,1,0,0,1,2,ROF,3,1,S M 10/Joe Louis Parking,RAMP,4718279,0,0.026,0,,3.07,5 +24514,1,0.128541,1,0,0,1,2,ROF,3,1,S M 10/Jefferson,RAMP,4718278,0.179,0.307,0,,3.07,5 +13421,0,0.075869,2,2,0,2,3,,3,1,Fort,St,1585010,5.031,5.107,0,1.820862,5,5 +13448,1,0.070197,2,0,0,2,5,,1,1,5th,St,1585008,0.201,0.271,0,1.684725,8.5,4.5 +22380,0,0.058659,1,1,1,2,4,,1,1,Lafayette,Blvd,4718963,1.127,1.185,0,1.407815,8,4.5 +24315,-1,0.103207,0,2,0,2,4,DV2,3,1,Jefferson,Ave,4710239,1.757,1.86,0,2.476957,6,4.5 +13134,0,0.07046,1,1,0,2,5,,3,1,6th,St,1581510,0,0.07,0,1.691047,8,4.5 +22381,0,0.078069,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,1.049,1.127,0,1.873647,6,4.5 +13420,0,0.068998,2,2,0,2,3,,1,1,Fort,St,1585010,5.107,5.176,0,1.65595,6,5 +14695,-1,0.070872,0,2,0,2,5,,1,1,4th,St,1590403,0.138,0.209,0,1.700927,8.5,4.5 +11888,1,0.131301,3,0,0,1,2,,1,1,S M 10,,1577509,12.15,12.281,0,,0.32,8.5 +12982,-1,0.17565,0,3,0,1,2,,1,1,N M 10,,1577510,12.107,12.282,0,,0.32,8.5 +13410,1,0.155758,1,0,0,1,2,ROF,1,1,S M 10/Larned,RAMP,1585101,0,0.156,0,,3.07,5 +13839,0,0.067133,2,2,0,2,5,,1,1,Congress,St,1585505,0,0.067,0,1.611187,8.5,4.5 +14387,1,0.167881,1,0,0,1,2,RON,1,1,Congress/N M 10,RAMP,1585406,0,0.168,0,,1.09,4 +22774,0,0.043363,1,1,0,2,4,,1,1,3rd,St,4705626,0.084,0.128,0,1.040712,8,4.5 +24098,1,0.178922,1,0,0,1,2,ROF,3,1,S M 10/Jefferson,RAMP,4718278,0,0.179,0,,3.07,5 +24313,-1,0.195319,0,1,0,2,4,DV2,1,1,Jefferson,Ave,4710239,1.993,2.189,0,4.687652,8,4.5 +24530,1,0.100746,1,0,0,2,4,DV2,1,1,Jefferson,Ave,4708422,0.326,0.427,0,2.417893,8,4.5 +23043,-1,0.084234,0,1,0,2,4,,3,1,Wayne,St,4705626,0,0.084,0,2.021623,6,4.5 +11890,1,0.050347,3,0,0,1,2,,1,1,S M 10,,1577509,12.099,12.15,0,,0.32,8.5 +12193,0,0.070783,1,1,0,2,5,,1,1,3rd,St,1581602,0,0.071,0,1.698802,8.5,4.5 +13835,-1,0.012027,0,4,0,2,3,,1,1,Congress,St,1585505,0.122,0.134,0,0.28865,6,5 +13836,-1,0.054436,0,4,0,2,5,,1,1,Congress,St,1585505,0.067,0.122,0,1.306465,8.5,4.5 +11712,0,0.158711,2,2,1,2,3,,1,1,Michigan,Ave,1577103,6.988,7.146,0,3.809062,6,5 +12314,1,0.067081,2,0,0,2,4,,1,1,1st,St,1581603,0.305,0.372,0,1.609944,8,4.5 +12345,0,0.062113,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.222,12.284,0,1.490704,6,5 +12396,0,0.057369,2,2,0,2,5,,1,1,Washington,Blvd,1581607,0.23,0.287,0,1.376859,8.5,4.5 +12438,0,0.053698,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.484,0.538,0,1.288763,8,4.5 +12537,0,0.063466,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.264,0.328,0,1.523175,6,5 +12828,1,0.047571,3,0,0,2,4,DV2,1,1,3rd,St,1581602,0.385,0.433,0,1.141707,8,4.5 +13614,0,0.075169,2,2,0,2,4,,1,1,Bagley,St,1584404,0.217,0.292,0,1.804048,8,4.5 +13619,0,0.07112,1,1,0,2,5,,1,1,Plaza,Dr,4718975,0,0.071,0,1.706881,8.5,4.5 +13627,0,0.06226,2,2,0,2,4,,1,1,Adams,Ave,1584401,0.039,0.101,0,1.494244,8,4.5 +16506,0,0.064481,1,1,0,2,5,,1,1,2nd,St,1608101,0,0.065,0,1.547555,8.5,4.5 +22186,-1,0.042494,0,3,0,2,4,DV2,1,1,3rd,St,4704292,0.256,0.298,0,1.019847,8,4.5 +22378,0,0.068519,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.26,1.329,0,1.644464,8,4.5 +22791,0,0.068538,1,1,0,2,5,,1,1,Howard,St,4705597,0.724,0.792,0,1.644902,8.5,4.5 +33138,0,0.057017,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.368418,0.15,4 +33176,0,0.096485,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.315638,0.15,4 +33198,0,0.095929,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.302289,0.15,4 +33200,0,0.037675,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.904207,0.15,4 +33203,0,0.141558,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.397386,0.15,4 +33845,0,0.118075,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.833796,0.15,4 +13000,1,0.113534,3,0,0,2,4,DV2,1,1,3rd,St,1581602,0.272,0.385,0,2.724812,8,4.5 +13310,1,0.064482,3,0,0,2,4,DV2,1,1,3rd,St,1581602,0.207,0.272,0,1.547559,8,4.5 +16850,0,0.101342,2,2,0,2,5,,1,1,Abbott,St,1608010,0,0.101,0,2.432219,8.5,4.5 +22187,-1,0.121723,0,3,0,2,4,DV2,1,1,3rd,St,4704292,0.134,0.256,0,2.921344,8,4.5 +22188,-1,0.064627,0,3,0,2,4,DV2,1,1,3rd,St,4704292,0.069,0.134,0,1.551038,8,4.5 +23403,0,0.083856,2,2,0,2,5,,1,1,Howard,St,4705597,0.626,0.709,0,2.012549,8.5,4.5 +33186,0,0.115571,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.773707,0.15,4 +33190,0,0.108895,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.613471,0.15,4 +14697,-1,0.067647,0,2,0,2,5,,1,1,4th,St,1590403,0,0.068,0,1.623517,8.5,4.5 +23364,1,0.049042,2,0,0,2,5,,1,1,Howard,St,4705597,0.577,0.626,0,1.17701,8.5,4.5 +11713,0,0.016593,2,2,1,2,3,,1,1,Michigan,Ave,1577103,6.971,6.988,0,0.398231,6,5 +33188,0,0.075732,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.817557,0.15,4 +11940,1,0.066232,3,0,0,2,4,DV2,1,1,3rd,St,1581602,0.141,0.207,0,1.589572,8,4.5 +22189,-1,0.069259,0,3,0,2,4,DV2,1,1,3rd,St,4704292,0,0.069,0,1.662221,8,4.5 +33180,0,0.050933,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.222397,0.15,4 +33183,0,0.063402,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.521647,0.15,4 +23068,0,0.014155,2,2,0,2,5,,1,1,Howard,St,4705597,0.709,0.724,0,0.339721,8.5,4.5 +16784,0,0.068537,1,1,0,2,5,,1,1,Abbott,St,1608010,0.115,0.184,0,1.644885,8.5,4.5 +16569,0,0.014131,2,2,0,2,5,,1,1,Abbott,St,1608010,0.101,0.115,0,0.339136,8.5,4.5 +33199,0,0.027384,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.657219,0.15,4 +12353,0,0.082027,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.081,12.163,0,1.968649,6,5 +13216,1,0.038794,2,0,0,2,4,,1,1,1st,St,1581603,0.479,0.518,0,0.931056,8,4.5 +13616,0,0.071144,2,2,0,2,4,,1,1,Bagley,St,1584404,0.073,0.144,0,1.707468,8,4.5 +40120,0,0.492136,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.811255,0.15,4 +40057,-1,0.483535,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,0.297,0.78,0,11.604847,3.7,5 +39858,0,0.009464,1,1,0,2,9,,1,1,Plum,St,4718980,0,0.01,0,0.227131,8.5,4.5 +33177,0,0.130826,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.139821,0.15,4 +33197,0,0.088772,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.130537,0.15,4 +12395,1,0.163155,2,0,0,2,4,DV2,1,1,3rd,St,1581602,0.433,0.596,0,3.915731,8,4.5 +40058,1,0.503852,3,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,0.267,0.771,0,12.092447,3.7,5 +40121,0,0.512494,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.29986,0.15,4 +33184,0,0.089486,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.147674,0.15,4 +13635,1,0.024103,4,0,0,2,9,,1,1,2nd,St,4718974,0,0.024,0,0.578478,8.5,4.5 +11627,1,0.065371,2,0,0,2,4,,1,1,1st,St,1581603,0.414,0.479,0,1.568905,8,4.5 +13615,0,0.072623,2,2,0,2,4,,1,1,Bagley,St,1584404,0.144,0.217,0,1.742953,8,4.5 +30349,0,0.07599,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.823754,0.15,4 +12100,1,0.042233,2,0,0,2,4,,1,1,1st,St,1581603,0.372,0.414,0,1.0136,8,4.5 +33204,0,0.019032,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.456766,0.15,4 +12347,0,0.017867,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.204,12.222,0,0.428816,6,5 +12349,0,0.026762,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.178,12.204,0,0.642287,6,5 +13628,0,0.038974,2,2,0,2,4,,1,1,Adams,Ave,1584401,0,0.039,0,0.935365,8,4.5 +21488,0,0.076423,1,1,0,2,5,,1,1,Elizabeth,St,4700499,0,0.076,0,1.834155,8.5,4.5 +12907,1,0.042246,2,0,0,2,4,,1,1,1st,St,1581603,0.518,0.56,0,1.013902,8,4.5 +12350,0,0.015091,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.163,12.178,0,0.362193,6,5 +12437,0,0.051492,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.538,0.59,0,1.235809,8,4.5 +11710,0,0.076103,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.231,7.307,0,1.826468,6,5 +12538,0,0.056175,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.208,0.264,0,1.348204,6,5 +12556,0,0.07016,1,1,0,2,4,,1,1,1st,St,1581603,0.069,0.139,0,1.683837,8,4.5 +12590,0,0.0698,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.072,0.141,0,1.675196,6,5 +13417,0,0.068248,2,2,0,2,3,,1,1,Fort,St,1585010,5.31,5.378,0,1.637947,6,5 +22376,0,0.076512,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.397,1.474,0,1.836277,8,4.5 +30464,0,0.065637,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.575294,0.15,4 +30465,0,0.115723,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.777351,0.15,4 +33205,0,0.088827,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.131854,0.15,4 +14693,1,0.070382,2,0,0,2,5,,1,1,2nd,St,1590404,0.07,0.14,0,1.689175,8.5,4.5 +22377,0,0.068355,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.329,1.397,0,1.640523,8,4.5 +11711,0,0.084911,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.146,7.231,0,2.037862,6,5 +13416,0,0.077504,2,2,0,2,3,,1,1,Fort,St,1585010,5.378,5.456,0,1.860094,6,5 +30463,0,0.020824,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.499783,0.15,4 +12586,0,0.066628,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.141,0.208,0,1.599074,6,5 +33174,0,0.016613,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.398707,0.15,4 +12301,1,0.06117,3,0,0,2,4,,1,1,Grand River,Ave,1577408,12.352,12.413,0,1.468075,8,4.5 +12302,1,0.067899,3,0,0,2,4,,1,1,Grand River,Ave,1577408,12.284,12.352,0,1.629571,8,4.5 +12450,0,0.06586,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.407,0.472,0,1.580638,6,5 +12829,0,0.068677,2,2,0,2,5,,1,1,Washington,Blvd,1581607,0.081,0.15,0,1.648259,8.5,4.5 +13610,0,0.082215,2,2,0,2,4,,1,1,Bagley,St,1584404,0.406,0.489,0,1.97315,8,4.5 +13611,0,0.068632,2,2,0,2,4,,1,1,Bagley,St,1584404,0.338,0.406,0,1.64717,8,4.5 +13846,-1,0.036225,0,3,0,2,4,,1,1,Clifford,St,1589707,0.533,0.569,0,0.869392,8,4.5 +40345,1,0.185444,2,0,0,2,3,DIV,4,3,University,Dr,624301,3.131,3.316,0,4.450659,3.7,5 +33135,0,0.104811,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.515475,0.15,4 +33140,0,0.05834,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.400153,0.15,4 +33851,0,0.076243,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.829821,0.15,4 +12508,0,0.079108,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.328,0.407,0,1.898596,6,5 +13613,0,0.045651,2,2,0,2,4,,1,1,Bagley,St,1584404,0.292,0.338,0,1.095631,8,4.5 +13618,-1,0.075931,0,3,0,2,5,,1,1,Middle,St,1584403,0,0.076,0,1.822347,8.5,4.5 +13859,-1,0.039117,0,3,0,2,4,,1,1,Clifford,St,1589707,0.45,0.489,0,0.938804,8,4.5 +14009,-1,0.043644,0,3,0,2,4,,1,1,Clifford,St,1589707,0.489,0.533,0,1.047459,8,4.5 +33137,0,0.052043,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.249022,0.15,4 +33139,0,0.023873,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.572956,0.15,4 +12445,0,0.011903,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.472,0.484,0,0.285674,6,5 +12298,1,0.054752,3,0,0,2,4,,1,1,Grand River,Ave,1577408,12.413,12.468,0,1.314052,8,4.5 +12557,0,0.080204,2,2,0,2,5,,1,1,Washington,Blvd,1581607,0.15,0.23,0,1.924901,8.5,4.5 +33202,0,0.006609,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.158625,0.15,4 +12639,0,0.080964,2,2,0,2,5,,1,1,Washington,Blvd,1581607,0,0.081,0,1.943128,8.5,4.5 +13650,-1,0.042817,0,3,0,2,4,,1,1,Clifford,St,1589707,0.569,0.612,0,1.027619,8,4.5 +21517,1,0.034527,2,0,0,2,4,,1,1,Park,Ave,4700018,0.237,0.271,0,0.828641,8,4.5 +12019,0,0.060753,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.095,0.156,0,1.45808,8.5,4.5 +12101,0,0.049932,1,1,0,2,5,,1,1,Shelby,St,1581608,0,0.05,0,1.198377,8.5,4.5 +12178,1,0.066863,4,0,0,2,4,,1,1,Brush,St,4718307,0.114,0.18,0,1.604703,8,4.5 +12955,-1,0.139705,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577510,12.642,12.782,0,3.352918,6,5 +12969,-1,0.224847,0,3,0,1,2,,1,1,N M 10,,1577510,12.356,12.581,0,,0.32,8.5 +13356,1,0.097779,4,0,0,2,3,DIV,1,1,Jefferson,Ave,1577509,12.709,12.807,0,2.346702,6,5 +13374,1,0.224778,3,0,0,1,2,,1,1,S M 10,,1577509,12.374,12.599,0,,0.32,8.5 +13815,-1,0.060695,0,3,0,2,3,,1,1,Congress,St,1585505,0.627,0.687,0,1.456691,6,5 +13854,-1,0.06578,0,2,0,2,5,,1,1,Lafayette,St,1585508,0.06,0.126,0,1.578727,8.5,4.5 +14134,1,0.059781,3,0,0,2,3,,1,1,Larned,St,1585504,0.484,0.544,0,1.434756,6,5 +14252,1,0.066508,3,0,0,2,3,,1,1,Larned,St,1585504,0.123,0.19,0,1.59619,6,5 +14363,-1,0.069288,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.426,0.495,0,1.662916,8,4.5 +17292,1,0.065729,2,0,0,2,4,,1,1,Fort,St,1628107,0.059,0.125,0,1.577484,8,4.5 +17305,0,0.130663,1,1,0,2,4,,1,1,Atwater,Dr,4708755,0.331,0.462,0,3.135904,8,4.5 +17307,0,0.202816,1,1,0,2,4,,1,1,Atwater,Dr,4708755,0.015,0.218,0,4.867591,8,4.5 +19643,-1,0.08226,0,3,0,2,5,,1,1,W Jefferson Service Drive,,1908101,0.068,0.15,0,1.974245,8.5,4.5 +19646,1,0.149837,3,0,0,2,5,,1,1,W Jefferson Service Drive,,1908010,0,0.15,0,3.596082,8.5,4.5 +23885,-1,0.05121,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0.025,0.076,0,1.229029,6,5 +24165,1,0.051583,2,0,0,2,3,DIV,1,1,Randolph,St,4711788,0.149,0.201,0,1.238003,6,5 +24195,1,0.094666,2,0,0,2,5,,1,1,Monroe,St,4711771,0.283,0.378,0,2.271975,8.5,4.5 +24214,1,0.093575,1,0,0,2,3,,1,1,Detroit Windsor Tunnel,,4711784,0,0.094,0,2.245804,6,5 +24269,0,0.422686,1,1,0,2,3,,1,1,Detroit Windsor Tunnel,,4711786,0,0.423,0,10.14447,6,5 +24416,-1,0.093051,0,1,0,2,3,,1,1,Detroit Windsor Tunnel,,4711785,0,0.093,0,2.23323,6,5 +24494,0,0.128669,1,1,0,2,5,,1,1,Bates,St,4711781,0,0.129,0,3.088065,8.5,4.5 +30458,0,0.137093,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.290238,0.15,4 +33113,0,0.082763,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.986305,0.15,4 +33114,0,0.059781,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.434748,0.15,4 +33201,0,0.079099,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.898365,0.15,4 +33209,0,0.125293,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.007021,0.15,4 +33210,0,0.073033,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.752788,0.15,4 +33213,0,0.067301,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.615221,0.15,4 +33215,0,0.057743,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.385828,0.15,4 +33218,0,0.069353,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.664473,0.15,4 +33220,0,0.04131,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.991451,0.15,4 +12742,0,0.079103,1,1,0,2,5,,1,1,Civic Center,Dr,1581605,0,0.079,0,1.898464,8.5,4.5 +22823,0,0.133626,1,1,0,2,4,,1,1,Civic Center,Dr,4705626,0.359,0.493,0,3.20703,8,4.5 +12315,0,0.049936,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.045,0.095,0,1.198476,8.5,4.5 +30457,0,0.062315,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.495548,0.15,4 +30459,0,0.095501,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.292034,0.15,4 +33826,0,0.024744,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.593861,0.15,4 +33827,0,0.017959,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.431015,0.15,4 +19644,-1,0.067874,0,3,0,2,5,,1,1,W Jefferson Service Drive,,1908101,0,0.068,0,1.628967,8.5,4.5 +12743,0,0.02659,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.018,0.045,0,0.638163,8.5,4.5 +39943,-1,0.00621,0,1,0,2,5,,1,1,Macomb,St,1628108,0.333,0.34,0,0.149029,8.5,4.5 +39942,0,0.032906,1,1,0,2,5,,1,1,Civic Center,Dr,5500335,0,0.033,0,0.789732,8.5,4.5 +22539,0,0.014935,1,1,0,2,4,,1,1,Civic Center,Dr,4708755,0,0.015,0,0.358433,8,4.5 +12316,0,0.062843,2,2,0,2,5,,1,1,Griswold,St,1581609,0.071,0.134,0,1.508221,8.5,4.5 +13218,0,0.071281,1,1,0,2,5,,1,1,Griswold,St,1581609,0.282,0.354,0,1.710743,8.5,4.5 +13828,-1,0.044978,0,4,0,2,3,,1,1,Congress,St,1585505,0.411,0.456,0,1.079462,6,5 +14244,1,0.082962,3,0,0,2,3,,1,1,Larned,St,1585504,0.19,0.273,0,1.991077,6,5 +14485,0,0.061742,2,2,0,2,3,,1,1,Woodward,Ave,1591001,6.551,6.613,0,1.481814,6,5 +17286,0,0.043919,1,1,0,2,5,,1,1,Centre,St,1628206,0,0.044,0,1.05405,8.5,4.5 +17342,0,0.056604,1,1,0,2,5,,1,1,Bates,St,1627903,0.069,0.126,0,1.358487,8.5,4.5 +22689,-1,0.047271,0,3,0,2,5,,1,1,Gratiot,Ave,4705742,0.035,0.083,0,1.134495,8.5,4.5 +22898,0,0.064744,1,1,0,2,5,,1,1,Farmer,St,4705739,0.105,0.169,0,1.55385,8.5,4.5 +23053,0,0.085525,1,1,0,2,5,,1,1,Broadway,St,4705737,0.025,0.11,0,2.052606,8.5,4.5 +23520,0,0.08631,1,1,0,2,5,,1,1,Library,St,4705757,0,0.086,0,2.071449,8.5,4.5 +23862,1,0.040953,2,0,0,2,3,DIV,1,1,Randolph,St,4711788,0.288,0.329,0,0.982871,6,5 +23877,1,0.046201,3,0,0,2,3,DIV,1,1,Woodward,Ave,4707254,0.077,0.123,0,1.108832,6,5 +23881,-1,0.038583,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0.171,0.21,0,0.925997,6,5 +24224,-1,0.070065,0,2,0,2,3,DV2,1,1,Monroe,St,4711771,0,0.07,0,1.681561,6,5 +24302,1,0.020847,2,0,0,2,3,,1,1,Woodward,Ave,4711773,0,0.021,0,0.500317,6,5 +24419,1,0.071859,2,0,0,2,3,DV2,1,1,Monroe,St,4711778,0,0.072,0,1.724609,6,5 +24540,-1,0.029397,0,3,0,2,3,,1,1,Campus Martius,,4711774,0,0.029,0,0.705528,6,5 +31064,0,0.080691,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.936594,0.15,4 +33219,0,0.051334,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.232026,0.15,4 +33222,0,0.05328,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.278722,0.15,4 +33828,0,0.054397,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.305532,0.15,4 +33846,0,0.054548,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.309155,0.15,4 +33848,0,0.114112,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.738685,0.15,4 +33850,0,0.076736,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.841657,0.15,4 +11707,0,0.07453,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.383,7.457,0,1.788721,6,5 +11942,0,0.071312,1,1,0,2,5,,1,1,Shelby,St,1581608,0.111,0.182,0,1.711494,8.5,4.5 +12103,0,0.070303,2,2,0,2,5,,1,1,Griswold,St,1581609,0.134,0.204,0,1.687265,8.5,4.5 +13136,0,0.069459,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.227,0.297,0,1.667013,8.5,4.5 +13412,0,0.079892,2,2,0,2,4,,1,1,Fort,St,1585010,5.572,5.652,0,1.917411,8,4.5 +13414,0,0.063477,2,2,0,2,4,,1,1,Fort,St,1585010,5.508,5.572,0,1.523456,8,4.5 +13830,-1,0.067385,0,4,0,2,3,,1,1,Congress,St,1585505,0.261,0.329,0,1.617232,6,5 +22373,0,0.078145,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.591,1.669,0,1.875474,8,4.5 +33173,0,0.081804,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.963285,0.15,4 +33230,0,0.05429,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.302962,0.15,4 +11628,0,0.071627,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.156,0.227,0,1.719059,8.5,4.5 +13832,-1,0.047582,0,4,0,2,3,,1,1,Congress,St,1585505,0.214,0.261,0,1.141972,6,5 +13002,1,0.054193,2,0,0,2,5,,1,1,Shelby,St,1581608,0.252,0.306,0,1.30062,8.5,4.5 +22374,0,0.062627,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.528,1.591,0,1.503051,8,4.5 +11708,0,0.013881,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.369,7.383,0,0.333151,6,5 +13217,1,0.069621,2,0,0,2,5,,1,1,Shelby,St,1581608,0.182,0.252,0,1.670914,8.5,4.5 +30468,0,0.024293,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.583033,0.15,4 +12102,0,0.061041,1,1,0,2,5,,1,1,Shelby,St,1581608,0.05,0.111,0,1.464996,8.5,4.5 +13829,-1,0.082469,0,4,0,2,3,,1,1,Congress,St,1585505,0.329,0.411,0,1.979259,6,5 +30498,0,0.055654,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.335707,0.15,4 +33221,0,0.053414,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.281935,0.15,4 +11629,0,0.078097,2,2,0,2,5,,1,1,Griswold,St,1581609,0.204,0.282,0,1.874332,8.5,4.5 +11706,0,0.063098,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.457,7.521,0,1.51435,6,5 +13411,-1,0.048064,0,1,0,2,4,,1,1,Fort,St,1585010,5.652,5.7,0,1.153541,8,4.5 +23879,1,0.027634,3,0,0,2,3,,1,1,Woodward,Ave,4707254,0.03,0.057,0,0.663226,6,5 +23878,1,0.020056,3,0,0,2,3,DIV,1,1,Woodward,Ave,4707254,0.057,0.077,0,0.481344,6,5 +14483,1,0.016591,3,0,0,2,3,,1,1,Woodward,Ave,1591001,6.634,6.651,0,0.398181,6,5 +24248,-1,0.019158,0,2,0,2,3,,1,1,Woodward,Ave,4711776,0,0.019,0,0.459802,6,5 +24383,-1,0.018365,0,2,0,2,3,,1,1,Campus Martius,,4711775,0,0.018,0,0.440757,6,5 +23880,1,0.029552,3,0,0,2,3,,1,1,Woodward,Ave,4707254,0,0.03,0,0.709239,6,5 +14484,1,0.020919,2,0,0,2,3,,1,1,Woodward,Ave,1591001,6.613,6.634,0,0.502052,6,5 +12069,-1,0.044467,0,3,0,2,4,,1,1,John R,St,1577608,0.046,0.091,0,1.067198,8,4.5 +12746,0,0.071161,1,1,0,2,5,,1,1,Griswold,St,1581609,0.442,0.513,0,1.707873,8.5,4.5 +14201,-1,0.033051,0,3,0,2,5,,1,1,State,St,4718987,0.142,0.175,0,0.793232,8.5,4.5 +14486,0,0.093016,2,2,0,2,3,,1,1,Woodward,Ave,1591001,6.458,6.551,0,2.232376,6,5 +14487,0,0.068768,2,2,0,2,3,,1,1,Woodward,Ave,1591001,6.39,6.458,0,1.65042,6,5 +15958,0,0.065036,1,1,0,2,4,,1,1,Grand River,Ave,1598501,0,0.065,0,1.560853,8,4.5 +22608,0,0.094585,1,1,0,2,5,,1,1,Farmer,St,4705739,0.169,0.264,0,2.270031,8.5,4.5 +23614,0,0.069445,1,1,0,2,5,,1,1,Farmer,St,4705739,0.264,0.333,0,1.666681,8.5,4.5 +30347,0,0.025943,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.622637,0.15,4 +12290,1,0.057376,2,0,0,2,4,,1,1,Grand River,Ave,1577408,12.544,12.601,0,1.377029,8,4.5 +12909,0,0.088414,1,1,0,2,5,,1,1,Griswold,St,1581609,0.354,0.442,0,2.121939,8.5,4.5 +13811,-1,0.036572,0,3,0,2,5,,1,1,State,St,4718987,0.105,0.142,0,0.877733,8.5,4.5 +33178,0,0.019785,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.474839,0.15,4 +33847,0,0.104835,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.516031,0.15,4 +33179,0,0.020661,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.495853,0.15,4 +12077,-1,0.046218,0,3,0,2,4,,1,1,John R,St,1577608,0,0.046,0,1.109227,8,4.5 +13843,-1,0.038885,0,3,0,2,4,,1,1,Clifford,St,1589707,0.669,0.708,0,0.933242,8,4.5 +14488,0,0.081941,2,2,0,2,3,,1,1,Woodward,Ave,1591001,6.308,6.39,0,1.966586,6,5 +22966,-1,0.035358,0,3,0,2,5,,1,1,Gratiot,Ave,4705742,0,0.035,0,0.848603,8.5,4.5 +24417,-1,0.030227,0,3,0,2,5,,1,1,Gratiot,Ave,4711891,0,0.03,0,0.725454,8.5,4.5 +24483,-1,0.033654,0,3,0,2,5,,1,1,State,St,4711890,0,0.034,0,0.807699,8.5,4.5 +15957,0,0.061622,1,1,0,2,4,,1,1,Grand River,Ave,1598501,0.065,0.127,0,1.478928,8,4.5 +22781,0,0.068202,1,1,0,2,5,,1,1,Broadway,St,4705737,0.11,0.178,0,1.636857,8.5,4.5 +30348,0,0.043633,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.047182,0.15,4 +15956,0,0.058522,1,1,0,2,4,,1,1,Grand River,Ave,1598501,0.127,0.185,0,1.404526,8,4.5 +13363,1,0.056695,4,0,0,2,3,DIV,1,1,Jefferson,Ave,1577509,12.652,12.709,0,1.36067,6,5 +13821,-1,0.075135,0,3,0,2,3,,1,1,Congress,St,1585505,0.533,0.608,0,1.803252,6,5 +14193,1,0.139753,3,0,0,2,3,,1,1,Larned,St,1585504,0.334,0.474,0,3.354061,6,5 +23876,1,0.063483,3,0,0,2,3,DIV,1,1,Woodward,Ave,4707254,0.123,0.187,0,1.523581,6,5 +24186,-1,0.057138,0,2,0,2,4,,1,1,Cadillac,Sq,4711769,0.081,0.139,0,1.371317,8,4.5 +24209,-1,0.06116,0,3,0,2,3,DIV,1,1,Woodward,Ave,4711772,0.065,0.126,0,1.467842,6,5 +24434,1,0.058659,2,0,0,2,4,,1,1,Cadillac,Sq,4711770,0.081,0.14,0,1.407805,8,4.5 +30500,0,0.034203,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.820863,0.15,4 +33852,0,0.079654,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.911707,0.15,4 +33853,0,0.09467,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.272074,0.15,4 +12744,-1,0.014909,0,2,0,2,5,,1,1,Griswold,St,1581609,0,0.015,0,0.357811,8.5,4.5 +12964,-1,0.045082,0,3,0,2,3,DIV,1,1,Jefferson,Ave,1577510,12.581,12.626,0,1.081966,6,5 +14234,1,0.044819,3,0,0,2,3,,1,1,Larned,St,1585504,0.273,0.318,0,1.075655,6,5 +19642,-1,0.044936,0,3,0,2,5,,1,1,W Jefferson Service Drive,,1908101,0.15,0.195,0,1.078475,8.5,4.5 +12558,0,0.049745,2,2,0,2,5,,1,1,Griswold,St,1581609,0.021,0.071,0,1.193869,8.5,4.5 +12745,-1,0.006481,0,2,0,2,5,,1,1,Griswold,St,1581609,0.015,0.021,0,0.15554,8.5,4.5 +13369,1,0.053338,3,0,0,2,3,DIV,1,1,Jefferson,Ave,1577509,12.599,12.652,0,1.280106,6,5 +12960,-1,0.016219,0,3,0,2,3,DIV,1,1,Jefferson,Ave,1577510,12.626,12.642,0,0.389253,6,5 +14233,1,0.016288,3,0,0,2,3,,1,1,Larned,St,1585504,0.318,0.334,0,0.390901,6,5 +13826,-1,0.061025,0,3,0,2,3,,1,1,Congress,St,1585505,0.472,0.533,0,1.464612,6,5 +17344,0,0.045692,1,1,0,2,5,,1,1,Bates,St,1627903,0,0.046,0,1.096615,8.5,4.5 +23996,1,0.081249,2,0,0,2,4,,1,1,Cadillac,Sq,4711770,0,0.081,0,1.949977,8,4.5 +24194,1,0.020727,3,0,0,2,3,,1,1,Woodward,Ave,4711773,0.021,0.042,0,0.497456,6,5 +24291,-1,0.081381,0,2,0,2,4,,1,1,Cadillac,Sq,4711769,0,0.081,0,1.953144,8,4.5 +33228,0,0.059558,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.429381,0.15,4 +33229,0,0.039788,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.954923,0.15,4 +13827,-1,0.016226,0,4,0,2,3,,1,1,Congress,St,1585505,0.456,0.472,0,0.389419,6,5 +24320,-1,0.047015,0,3,0,2,3,DIV,1,1,Woodward,Ave,4711772,0.018,0.065,0,1.128369,6,5 +24171,-1,0.017989,0,3,0,2,3,DIV,1,1,Woodward,Ave,4711772,0,0.018,0,0.431725,6,5 +24542,1,0.021673,3,0,0,2,3,,1,1,Woodward,Ave,4711773,0.042,0.063,0,0.52016,6,5 +24384,1,0.022227,3,0,0,2,3,,1,1,Woodward,Ave,4711773,0.063,0.086,0,0.533444,6,5 +24249,1,0.005184,2,0,0,2,3,,1,1,Woodward,Ave,4711773,0.086,0.091,0,0.124412,6,5 +17343,0,0.023329,1,1,0,2,5,,1,1,Bates,St,1627903,0.046,0.069,0,0.5599,8.5,4.5 +33227,0,0.022835,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.548031,0.15,4 +33191,0,0.055802,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.339241,0.15,4 +33211,0,0.068513,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.64432,0.15,4 +33212,0,0.008847,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.212333,0.15,4 +13817,-1,0.018127,0,3,0,2,3,,1,1,Congress,St,1585505,0.608,0.627,0,0.435054,6,5 +23884,-1,0.061515,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0.076,0.138,0,1.476351,6,5 +24151,-1,0.011558,0,2,0,2,4,,1,1,Cadillac,Sq,4711769,0.139,0.15,0,0.277384,8,4.5 +24229,1,0.061271,2,0,0,2,3,DIV,1,1,Randolph,St,4711788,0.201,0.262,0,1.470496,6,5 +24359,1,0.022129,2,0,0,2,4,,1,1,Cadillac,Sq,4711770,0.14,0.162,0,0.531101,8,4.5 +30499,0,0.080131,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.923152,0.15,4 +33854,0,0.070385,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.689236,0.15,4 +23882,-1,0.022355,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0.149,0.171,0,0.536524,6,5 +23883,-1,0.011622,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0.138,0.149,0,0.278931,6,5 +14172,1,0.010817,3,0,0,2,3,,1,1,Larned,St,1585504,0.474,0.484,0,0.259611,6,5 +24140,1,0.026604,2,0,0,2,3,DIV,1,1,Randolph,St,4711788,0.262,0.288,0,0.638507,6,5 +11988,1,0.054794,2,0,0,2,4,,1,1,Brush,St,4718307,0.365,0.42,0,1.315047,8,4.5 +11997,1,0.065461,2,0,0,2,4,,1,1,Brush,St,4718307,0.246,0.312,0,1.571057,8,4.5 +17290,1,0.05821,2,0,0,2,5,,1,1,Macomb,St,1628108,0,0.058,0,1.397045,8.5,4.5 +17341,-1,0.047592,0,2,0,2,5,,1,1,Bates,St,1627903,0.126,0.173,0,1.142211,8.5,4.5 +22540,0,0.045506,1,1,0,2,5,,1,1,Farmer,St,4705739,0,0.046,0,1.092133,8.5,4.5 +23682,-1,0.057581,0,3,0,2,5,,1,1,Gratiot,Ave,4705742,0.083,0.14,0,1.381936,8.5,4.5 +23858,0,0.06808,2,2,0,2,3,,1,1,Randolph,St,4711788,0.395,0.463,0,1.633926,6,5 +23888,-1,0.05526,0,2,0,2,3,,1,1,Randolph,St,4707251,0,0.055,0,1.326236,6,5 +24105,1,0.053488,2,0,0,2,3,,1,1,Randolph,St,4711788,0.463,0.517,0,1.283708,6,5 +24464,1,0.065094,3,0,0,2,5,,1,1,Monroe,St,4711771,0.151,0.216,0,1.562264,8.5,4.5 +33223,0,0.0737,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.768795,0.15,4 +23534,0,0.054543,1,1,0,2,5,,1,1,Farmer,St,4705739,0.046,0.1,0,1.309036,8.5,4.5 +24134,-1,0.080944,0,2,0,2,3,DV2,1,1,Monroe,St,4711771,0.07,0.151,0,1.94265,6,5 +24272,1,0.081619,2,0,0,2,3,DV2,1,1,Monroe,St,4711778,0.072,0.153,0,1.958848,6,5 +33224,0,0.004903,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.117671,0.15,4 +23190,0,0.004633,1,1,0,2,5,,1,1,Farmer,St,4705739,0.1,0.105,0,0.111189,8.5,4.5 +22985,0,0.047748,1,1,0,2,5,,1,1,Randolph,St,4705736,0,0.048,0,1.145963,8.5,4.5 +23071,0,0.019877,3,3,1,2,3,,1,1,Gratiot,Ave,4705742,0.177,0.197,0,0.477046,6,5 +23376,0,0.01486,1,1,0,2,5,,1,1,Broadway,St,4705737,0.01,0.025,0,0.356645,8.5,4.5 +23406,0,0.036767,2,1,0,2,5,,1,1,Gratiot,Ave,4705742,0.14,0.177,0,0.88241,8.5,4.5 +23887,-1,0.033433,0,2,0,2,3,,1,1,Randolph,St,4707251,0.055,0.089,0,0.80239,6,5 +24519,1,0.02874,2,0,0,2,3,,1,1,Randolph,St,4711788,0.517,0.545,0,0.689758,6,5 +23708,0,0.009743,1,1,0,2,5,,1,1,Broadway,St,4705737,0,0.01,0,0.233834,8.5,4.5 +22794,0,0.037525,3,3,1,2,3,,1,1,Gratiot,Ave,4705742,0.197,0.234,0,0.900604,6,5 +11998,1,0.065832,4,0,0,2,4,,1,1,Brush,St,4718307,0.18,0.246,0,1.579975,8,4.5 +14289,-1,0.060008,0,2,0,2,5,,1,1,Lafayette,St,1585508,0,0.06,0,1.440203,8.5,4.5 +17293,1,0.059349,2,0,0,2,4,,1,1,Fort,St,1628107,0,0.059,0,1.424366,8,4.5 +24139,0,0.047634,2,2,0,2,3,,1,1,Randolph,St,4711788,0.348,0.395,0,1.143215,6,5 +24228,0,0.018148,2,2,0,2,3,,1,1,Randolph,St,4711788,0.329,0.348,0,0.435554,6,5 +14108,-1,0.053855,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.495,0.549,0,1.292509,8,4.5 +17289,-1,0.066384,0,3,0,2,5,,1,1,Macomb,St,1628108,0.058,0.125,0,1.593219,8.5,4.5 +24304,1,0.067232,3,0,0,2,5,,1,1,Monroe,St,4711771,0.216,0.283,0,1.61357,8.5,4.5 +11991,1,0.053735,2,0,0,2,4,,1,1,Brush,St,4718307,0.312,0.365,0,1.289639,8,4.5 +34014,0,0.101171,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4 +17306,0,0.113726,1,1,0,2,4,,1,1,Atwater,Dr,4708755,0.218,0.331,0,2.729429,8,4.5 +12536,-1,0.430915,0,2,0,1,1,,1,1,S I 375,,1577705,0.17,0.6,0,,0.32,8.5 +12971,1,0.437512,2,0,0,1,1,,1,1,N I 375,,1577706,0.167,0.605,0,,0.32,8.5 +13730,1,0.056558,3,0,0,2,4,DV2,1,1,Lafayette,St,1585507,0.214,0.27,0,1.357391,8,4.5 +13806,-1,0.128885,0,3,0,2,3,,1,1,Congress,St,1585505,0.85,0.979,0,3.093249,6,5 +13813,-1,0.071665,0,3,0,2,3,,1,1,Congress,St,1585505,0.687,0.759,0,1.719956,6,5 +14089,1,0.119362,3,0,0,2,3,,1,1,Larned,St,1585504,0.707,0.827,0,2.864678,6,5 +14098,1,0.091375,3,0,0,2,3,,1,1,Larned,St,1585504,0.616,0.707,0,2.192991,6,5 +14180,0,0.076195,1,2,0,2,5,,1,1,Beaubien,St,1587305,0,0.076,0,1.828681,8.5,4.5 +14226,-1,0.135747,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.095,0.231,0,3.257917,8.5,4.5 +14388,-1,0.056828,0,3,0,2,4,DV2,1,1,Lafayette,St,1585508,0.339,0.396,0,1.363878,8,4.5 +14391,0,0.060717,1,1,1,2,4,,1,1,Beaubien,St,1587305,0.236,0.297,0,1.457216,8,4.5 +17340,1,0.052818,3,0,0,2,5,,1,1,Saint Antoine,St,1627904,0,0.053,0,1.267622,8.5,4.5 +22192,1,0.148412,3,0,0,2,3,DIV,1,1,Jefferson,Ave,4704291,0.051,0.2,0,3.561893,6,5 +22193,1,0.051305,3,0,0,2,3,DIV,1,1,Jefferson,Ave,4704291,0,0.051,0,1.231325,6,5 +23087,-1,0.119433,0,3,0,2,3,DIV,1,1,Jefferson,Ave,4705824,0.049,0.169,0,2.866389,6,5 +33160,0,0.032956,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.790933,0.15,4 +12611,-1,0.03661,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577705,0,0.037,0,0.878632,6,5 +13339,-1,0.07124,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577705,0.057,0.128,0,1.709758,6,5 +13375,1,0.073757,4,0,0,2,3,DIV,1,1,Jefferson,Ave,1577706,0.059,0.132,0,1.770176,6,5 +13718,0,0.053388,1,1,1,2,4,,1,1,Beaubien,St,1587305,0.182,0.236,0,1.281301,8,4.5 +14411,0,0.084968,1,2,0,2,5,,1,1,Beaubien,St,1587305,0.076,0.161,0,2.039241,8.5,4.5 +33175,0,0.112994,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.711864,0.15,4 +33181,0,0.096617,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.318803,0.15,4 +33829,0,0.124888,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.997312,0.15,4 +12162,1,0.058568,4,0,0,2,3,DIV,1,1,Jefferson,Ave,1577706,0,0.059,0,1.405628,6,5 +24166,1,0.02739,1,0,0,2,3,,1,1,Randolph,St,4711788,0.071,0.099,0,0.657351,6,5 +24413,0,0.027708,1,1,0,2,3,,1,1,Randolph,St,4711788,0.099,0.126,0,0.664983,6,5 +12945,-1,0.01036,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577510,12.782,12.792,0,0.248648,6,5 +23886,-1,0.024838,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0,0.025,0,0.596119,6,5 +24267,1,0.02263,2,0,0,2,3,DIV,1,1,Randolph,St,4711788,0.126,0.149,0,0.54312,6,5 +12008,0,0.061299,2,2,0,2,4,,1,1,Brush,St,4718307,0.052,0.114,0,1.471172,8,4.5 +13184,0,0.052248,2,2,0,2,4,,1,1,Brush,St,4718307,0,0.052,0,1.253957,8,4.5 +13261,-1,0.020129,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577705,0.037,0.057,0,0.483087,6,5 +14129,1,0.071811,3,0,0,2,3,,1,1,Larned,St,1585504,0.544,0.616,0,1.723454,6,5 +33217,0,0.070954,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.702904,0.15,4 +33216,0,0.011198,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.268756,0.15,4 +33207,0,0.02772,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.66528,0.15,4 +13256,-1,0.04178,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577705,0.128,0.17,0,1.002729,6,5 +13371,1,0.035199,4,0,0,2,3,DIV,1,1,Jefferson,Ave,1577706,0.132,0.167,0,0.844776,6,5 +14167,0,0.021269,2,2,0,2,4,,1,1,Beaubien,St,1587305,0.161,0.182,0,0.510446,8,4.5 +23431,-1,0.049307,0,3,0,2,3,DIV,1,1,Jefferson,Ave,4705824,0,0.049,0,1.183372,6,5 +13748,1,0.117273,3,0,0,2,4,DV2,1,1,Lafayette,Ave,1585507,0.097,0.214,0,2.814559,8,4.5 +13754,1,0.096676,3,0,0,2,4,DV2,1,1,Lafayette,St,1585507,0,0.097,0,2.320216,8,4.5 +13764,-1,0.116696,0,3,0,2,4,DV2,1,1,Lafayette,St,1585508,0.222,0.339,0,2.800703,8,4.5 +13810,-1,0.090871,0,3,0,2,3,,1,1,Congress,St,1585505,0.759,0.85,0,2.180911,6,5 +14422,-1,0.096541,0,2,0,2,4,DV2,1,1,Lafayette,St,1585508,0.126,0.222,0,2.316993,8,4.5 +30502,0,0.112724,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.705384,0.15,4 +33214,0,0.125563,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.013506,0.15,4 +14114,-1,0.06451,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.361,0.426,0,1.548246,8,4.5 +14370,-1,0.06489,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.297,0.361,0,1.557352,8,4.5 +17291,1,0.009866,1,0,0,2,4,,1,1,Fort,St,1628107,0.125,0.135,0,0.236784,8,4.5 +24104,1,0.066033,2,0,0,2,4,,1,1,Beaubien,St,4711284,0.066,0.132,0,1.584796,8,4.5 +24116,1,0.065737,2,0,0,2,4,,1,1,Beaubien,St,4711284,0,0.066,0,1.5777,8,4.5 +13646,1,0.066922,2,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.057,0.124,0,1.60612,8.5,4.5 +33112,0,0.035946,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.862692,0.15,4 +33115,0,0.067423,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.618157,0.15,4 +33225,0,0.079139,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.899346,0.15,4 +14320,1,0.013456,2,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.043,0.057,0,0.322937,8.5,4.5 +17339,1,0.060733,3,0,0,2,5,,1,1,Saint Antoine,St,1627904,0.053,0.114,0,1.457602,8.5,4.5 +30503,0,0.035972,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.86332,0.15,4 +14011,-1,0.011666,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.231,0.243,0,0.279992,8.5,4.5 +17295,0,0.119031,1,1,0,2,5,,1,1,Woodbridge,St,4712427,0,0.119,0,2.856739,8.5,4.5 +17303,0,0.072886,2,2,1,2,5,,1,1,Saint Antoine,St,1628002,0,0.073,0,1.749258,8.5,4.5 +22922,0,0.119184,2,2,1,2,5,,1,1,Franklin,St,4712428,0,0.119,0,2.860421,8.5,4.5 +24517,0,0.106032,2,2,0,2,4,,3,1,Atwater,St,4711889,0,0.106,0,2.544758,6,4.5 +33159,0,0.020767,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.498398,0.15,4 +17304,0,0.075426,1,1,0,2,4,,1,1,Atwater,Dr,4708755,0.462,0.537,0,1.810215,8,4.5 +17302,0,0.047257,1,2,0,2,5,,1,1,Saint Antoine,St,1628002,0.073,0.12,0,1.134164,8.5,4.5 +17301,0,0.025297,1,2,0,2,5,,1,1,Saint Antoine,St,1628002,0.12,0.145,0,0.60713,8.5,4.5 +24363,0,0.049242,1,1,0,2,5,,1,1,Schweizer,Pl,4711888,0,0.049,0,1.181819,8.5,4.5 +33158,0,0.064986,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.559659,0.15,4 +33162,0,0.004284,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.10282,0.15,4 +13772,1,0.149686,2,0,0,1,1,ROF,1,1,S I 375/Larned,RAMP,1585506,0,0.15,0,,3.07,5 +13773,-1,0.052011,0,3,0,2,3,,1,1,Larned,St,1585505,0.979,1.031,0,1.248261,6,5 +14083,1,0.052336,3,0,0,2,3,,1,1,Larned,St,1585504,0.827,0.879,0,1.256057,6,5 +14319,1,0.146113,2,0,0,1,1,RON,1,1,Larned/N I 375,RAMP,1586008,0,0.146,0,,1.09,4 +15058,1,0.153311,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.079,0.232,0,3.67947,8.5,4.5 +17333,0,0.113153,1,1,0,2,5,,3,1,Rivard,St,1627905,0.239,0.352,0,2.715677,8,4.5 +22618,1,0.036282,2,0,0,2,5,,1,1,S I 375 Service Drive,,4704921,0,0.036,0,0.87076,8.5,4.5 +22809,-1,0.051691,0,3,0,2,3,DIV,1,1,Jefferson,Ave,4705824,0.169,0.22,0,1.240577,6,5 +14230,-1,0.012109,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.052,0.064,0,0.290625,8.5,4.5 +14030,-1,0.051974,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0,0.052,0,1.247376,8.5,4.5 +14014,-1,0.031096,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.064,0.095,0,0.746292,8.5,4.5 +15054,1,0.010412,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.232,0.243,0,0.249899,8.5,4.5 +14080,1,0.070983,3,0,0,2,4,DV2,3,1,Larned,St,1585504,0.879,0.95,0,1.703604,6,4.5 +15073,1,0.052846,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0,0.053,0,1.268298,8.5,4.5 +17318,-1,0.070832,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0,0.071,0,1.699963,6,4.5 +22190,1,0.049031,3,0,0,2,3,DIV,1,1,Jefferson,Ave,4704291,0.229,0.278,0,1.176733,6,5 +22526,-1,0.040854,0,3,0,2,3,DIV,1,1,Jefferson,Ave,4705824,0.22,0.261,0,0.980494,6,5 +23516,0,0.031471,3,3,1,2,3,,1,1,Jefferson,Ave,4705824,0.261,0.293,0,0.755312,6,5 +22191,1,0.029088,3,0,0,2,3,DIV,1,1,Jefferson,Ave,4704291,0.2,0.229,0,0.698119,6,5 +23868,1,0.015527,3,0,0,2,5,,1,1,N I 375 Service Drive,,4707406,0,0.016,0,0.372649,8.5,4.5 +15065,1,0.015678,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.064,0.079,0,0.376279,8.5,4.5 +15072,1,0.010684,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.053,0.064,0,0.256416,8.5,4.5 +17335,0,0.05489,1,1,0,2,5,,3,1,Rivard,St,1627905,0.174,0.228,0,1.317371,8,4.5 +17334,0,0.01092,1,1,0,2,5,,3,1,Rivard,St,1627905,0.228,0.239,0,0.262069,8,4.5 +18527,1,0.852792,3,0,0,2,5,,3,1,The Strand,St,1633206,0,0.853,0,20.467006,8,4.5 +24292,0,0.187444,1,1,0,2,4,,3,1,Atwater,St,4711889,0.536,0.723,0,4.498659,6,4.5 +33093,0,0.191317,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.5916,0.15,4 +17337,0,0.048253,1,1,0,2,5,,1,1,Rivard,St,1627905,0.071,0.119,0,1.158074,8.5,4.5 +22883,0,0.083392,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.493,0.577,0,2.001409,5,5 +23641,0,0.2026,1,1,0,2,5,,3,1,Franklin,St,4712428,0.242,0.444,0,4.862397,8,4.5 +24132,0,0.101612,1,1,0,2,5,,3,1,Riopelle,St,4711283,0,0.102,0,2.438684,8,4.5 +24226,0,0.201573,1,1,0,2,4,,3,1,Atwater,St,4711889,0.244,0.445,0,4.837752,6,4.5 +17338,0,0.070606,1,1,0,2,5,,3,1,Rivard,St,1627905,0,0.071,0,1.694538,8,4.5 +33106,0,0.134402,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.225659,0.15,4 +23598,0,0.010507,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.658,0.669,0,0.252177,5,5 +24135,0,0.09054,1,1,0,2,4,,3,1,Atwater,St,4711889,0.445,0.536,0,2.172949,6,4.5 +33090,0,0.142995,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.431878,0.15,4 +33095,0,0.097515,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.340352,0.15,4 +24118,0,0.058937,1,1,0,2,5,,3,1,Riopelle,St,4711283,0.102,0.161,0,1.414495,8,4.5 +24117,0,0.02669,1,1,0,2,5,,3,1,Riopelle,St,4711283,0.161,0.187,0,0.640565,8,4.5 +22590,0,0.081536,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.577,0.658,0,1.956871,5,5 +33096,0,0.052241,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.253787,0.15,4 +24187,0,0.202735,1,1,0,2,4,,3,1,Atwater,St,4711889,0.723,0.926,0,4.865634,6,4.5 +17300,0,0.109465,1,1,0,2,5,,3,1,Saint Aubin,St,1628007,0,0.11,0,2.627149,8,4.5 +18525,1,0.153356,3,0,0,2,5,,3,1,The Strand,St,1633206,0.853,1.006,0,3.680543,8,4.5 +24299,0,0.057782,1,1,0,2,5,,3,1,Loiter,Way,4710277,0.23,0.287,0,1.386776,8,4.5 +39958,0,0.129788,1,1,0,2,5,,3,1,Picnic,Way,5494461,0,0.13,0,3.114901,8,4.5 +4903,1,0.249982,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.498,2.748,0,5.999573,5,5 +4974,-1,0.253424,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.499,2.753,0,6.082184,5,5 +5366,0,0.295387,2,2,1,2,4,,3,4,9 Mile,Rd,803006,2.499,2.795,0,7.089299,6,4.5 +10739,1,0.82213,3,0,0,1,1,,3,1,E I 94,,1576405,32.982,33.804,0,,0.58,7 +10961,1,0.425755,3,0,0,1,1,,3,1,E I 94,,1576405,29.784,30.21,0,,0.58,7 +11981,1,0.210981,1,0,0,1,5,,3,1,Old Mount Elliott,St,1577808,4.578,4.789,0,,8,4.5 +12140,-1,0.544186,0,4,0,1,1,,3,2,S I 75,,1577705,5.409,5.953,0,,0.58,7 +12295,0,0.288839,2,2,1,2,4,,3,1,Harper,Ave,1578108,2.751,3.04,0,6.932133,6,4.5 +13107,0,0.095224,3,3,0,2,3,,3,1,Van Dyke,St,1577904,1.627,1.722,0,2.285365,5,5 +13183,0,0.063107,2,2,0,2,3,,3,1,Mount Elliott,St,1577808,2.912,2.975,0,1.514572,5,5 +13295,1,0.50391,4,0,0,1,1,,3,2,N I 75,,1577706,5.437,5.941,0,,0.58,7 +13699,1,0.330162,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,0.338,0.668,0,7.923889,6,4.5 +13789,0,0.114919,2,2,0,2,4,,3,1,Davison,St,4702009,6.929,7.044,0,2.758065,6,4.5 +13796,0,0.281498,1,1,0,2,5,,3,1,Canfield,St,1585701,1.503,1.785,0,6.755948,8,4.5 +13857,0,0.402707,1,1,1,2,5,,3,1,Lynch,Rd,1586705,0.212,0.614,0,9.664975,8,4.5 +13862,1,0.231026,3,0,0,2,3,,3,1,Forest,Ave,5491069,0.627,0.858,0,5.544629,5,5 +13903,1,0.154733,4,0,0,2,4,,3,1,Harper,Ave,4718377,0.793,0.948,0,3.713582,6,4.5 +13940,0,0.171106,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.483,0.654,0,4.106535,5,5 +13943,0,0.308469,1,1,0,2,5,,3,1,Chene,St,1587501,1.432,1.74,0,7.403263,8,4.5 +13948,0,0.126522,2,2,0,2,4,,3,1,Nevada,St,1585907,3.78,3.906,0,3.036531,6,4.5 +14003,0,0.047214,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0,0.047,0,1.133147,6,4.5 +14013,-1,0.590207,0,3,0,1,1,,3,1,W I 94,,1588802,29.586,30.176,0,,0.58,7 +14025,0,0.139743,1,1,1,2,3,,3,1,Conner,St,1588005,2.827,2.966,0,3.353826,5,5 +14067,0,0.011489,1,1,0,2,5,,3,1,Antietam,Ave,1587309,0.655,0.666,0,0.27574,8,4.5 +14117,0,0.182146,1,1,0,2,5,,3,1,Lynch,Rd,1586705,0,0.182,0,4.371497,8,4.5 +14145,-1,0.330063,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.464,0.794,0,7.921516,6,4.5 +14262,0,0.326825,1,1,0,2,5,,3,1,Miller,St,1586408,0,0.327,0,7.843811,8,4.5 +14283,1,0.2231,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,4.398,4.621,0,5.354389,6,4.5 +14533,0,0.155427,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.132,1.288,0,3.730239,5,5 +15023,-1,0.025415,0,2,0,2,4,,3,1,Harper,Ave,1591307,0.478,0.503,0,0.609962,6,4.5 +15375,-1,0.418697,0,2,0,2,5,,3,2,Dequindre,St,1591301,1.697,2.115,0,10.04873,8,4.5 +15770,0,0.25194,2,2,0,2,4,,2,2,Joseph Campau,St,1591101,1.059,1.311,0,6.046549,8,4.5 +17186,0,0.336457,1,1,0,2,5,,3,1,Sherwood,St,1630706,1.015,1.351,0,8.074969,8,4.5 +17207,0,0.258427,1,1,0,2,4,,2,2,Conant,St,1629706,1.082,1.34,0,6.202248,8,4.5 +17213,0,0.083387,1,1,0,2,5,,3,1,Chestnut,St,1629109,0,0.083,0,2.00128,8,4.5 +17319,1,0.055416,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.954,1.009,0,1.329987,6,4.5 +17320,1,0.216458,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.738,0.954,0,5.194994,6,4.5 +17373,0,0.350913,1,1,0,2,5,,3,2,John R,St,1625909,1.242,1.593,0,8.421921,8,4.5 +17382,1,0.476344,2,0,0,2,5,,3,2,Nagel,Ave,1625409,1.679,2.155,0,11.432264,8,4.5 +17651,0,0.110111,2,2,0,2,3,,3,1,McNichols,Rd,1680701,26.369,26.479,0,2.642663,5,5 +18056,0,0.118155,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,20.293,20.411,0,2.835713,5,5 +18987,0,0.207959,1,1,0,2,4,,2,2,Caniff,St,1632110,1.216,1.424,0,4.991011,8,4.5 +19191,0,0.326304,1,1,0,2,5,,3,1,Huber,St,1632002,0.227,0.553,0,7.831296,8,4.5 +19434,0,0.294066,1,1,0,2,5,,3,1,Erwin,St,1713508,0,0.294,0,7.057594,8,4.5 +19462,0,0.343283,1,1,0,2,5,,3,2,Buffalo,St,1712103,0.172,0.515,0,8.238786,8,4.5 +22081,-1,0.231127,0,2,0,2,3,,3,1,Warren,Ave,4700429,2.444,2.675,0,5.547043,5,5 +22451,-1,0.048506,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.959,1.007,0,1.164139,6,4.5 +22453,-1,0.220475,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.738,0.959,0,5.291398,6,4.5 +22454,-1,0.053268,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.685,0.738,0,1.278431,6,4.5 +22613,-1,0.348169,0,4,0,2,4,DV2,3,2,Oakland,St,4704923,0.586,0.934,0,8.356062,6,4.5 +22795,0,0.250264,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.303,1.553,0,6.006347,5,5 +23153,0,0.238398,1,1,0,2,4,,3,1,Grand,Blvd,4705610,0.246,0.484,0,5.721541,6,4.5 +23166,0,0.107035,1,1,0,2,4,,3,1,Dickerson,St,4705398,2.309,2.416,0,2.568828,6,4.5 +23234,0,0.160757,1,1,0,2,5,,3,1,McDougall,St,4704611,0.875,1.035,0,3.858176,8,4.5 +23606,0,0.347216,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.232,5.579,0,8.333186,5,5 +23813,-1,0.223469,0,2,0,2,4,DV2,3,1,Outer,Dr,4707670,0.036,0.26,0,5.363248,6,4.5 +23853,0,0.185588,1,1,0,2,3,,3,1,Mount Elliott,St,4707516,0.054,0.24,0,4.454116,5,5 +23941,1,0.407112,4,0,0,2,4,DV2,3,2,Oakland,St,4708768,2.006,2.413,0,9.770687,6,4.5 +28747,0,0.256237,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.149679,0.15,4 +28903,0,0.221764,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.322338,0.15,4 +30298,0,0.318301,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.639215,0.15,4 +30455,0,0.331936,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.966453,0.15,4 +30519,0,0.347252,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.33406,0.15,4 +30522,0,0.397171,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.532095,0.15,4 +30645,0,0.132893,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.189437,0.15,4 +30854,0,0.407231,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.773553,0.15,4 +33111,0,0.30105,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.225202,0.15,4 +33240,0,0.356783,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.562799,0.15,4 +33241,0,0.335454,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.050884,0.15,4 +33243,0,0.421484,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.115606,0.15,4 +33248,0,0.235549,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.653183,0.15,4 +33324,0,0.265989,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.38374,0.15,4 +33369,0,0.235017,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.640404,0.15,4 +33614,0,0.24984,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.996164,0.15,4 +33626,0,0.376956,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.046952,0.15,4 +33631,0,0.27033,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.487922,0.15,4 +33634,0,0.24191,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.805833,0.15,4 +33638,0,0.252572,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.061738,0.15,4 +33640,0,0.334581,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.02994,0.15,4 +33641,0,0.254174,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.100178,0.15,4 +33663,0,0.30992,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.438085,0.15,4 +33664,0,0.220055,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.28132,0.15,4 +33665,0,0.231155,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.547711,0.15,4 +10699,1,0.221274,3,0,0,1,1,,3,1,E I 94,,1576405,28.639,28.86,0,,0.58,7 +10943,1,0.465734,3,0,0,1,1,,2,1,E I 94,,1576405,27.903,28.369,0,,0.32,8.5 +11899,1,0.493985,1,0,0,1,1,RFS,2,1,W I 94/S I 75,RAMP,1577703,0,0.494,0,,0.22,6 +11902,1,0.277806,3,0,0,1,2,,2,1,S M 10,,1577509,10.82,11.097,0,,0.32,8.5 +11914,1,0.460565,1,0,0,1,1,RFS,2,1,E I 94/N I 75,RAMP,1577701,0,0.461,0,,0.22,6 +11920,1,0.442367,3,0,0,1,2,,2,1,S M 10,,1577509,8.692,9.135,0,,0.32,8.5 +12136,1,0.20688,1,0,0,1,1,ROF,2,1,E I 94/John R,RAMP,1577606,0,0.207,0,,3.07,5 +12148,0,0.082277,1,1,0,2,4,,2,1,Cass,Ave,1577605,3.036,3.118,0,1.974642,8,4.5 +12240,0,0.066056,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.096,2.162,0,1.585335,8,4.5 +12379,0,0.036949,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.544,11.581,0,0.886779,6,5 +12384,-1,1.138171,0,4,0,1,1,,3,1,S I 75,,1577705,4.271,5.409,0,,0.58,7 +12408,1,0.142241,2,0,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,1581907,1.804,1.946,0,3.413781,6,5 +12671,-1,0.258498,0,3,0,2,5,,2,1,N M 10 Service Drive,,1584210,1.038,1.297,0,6.203962,8.5,4.5 +12866,0,0.305368,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,1.484,1.79,0,7.328826,6,4.5 +12872,0,0.096541,1,1,0,2,4,,2,1,3rd,St,4708767,0.577,0.673,0,2.316983,8,4.5 +13045,-1,0.248102,0,3,0,1,2,,2,1,N M 10,,1577510,10.832,11.08,0,,0.32,8.5 +13099,-1,0.434771,0,3,0,1,2,,2,1,N M 10,,1577510,8.713,9.148,0,,0.32,8.5 +13105,1,0.180467,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.168,4.349,0,4.331216,6,4.5 +13115,1,0.11595,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.633,3.749,0,2.782789,8,4.5 +13254,-1,0.648001,0,3,0,1,1,,3,1,S I 75,,1577705,2.837,3.485,0,,0.58,7 +13284,1,0.170715,1,0,0,1,1,RFS,3,1,S I 75/E I 94,RAMP,1577708,0,0.171,0,,0.22,6 +13287,1,0.125789,1,0,0,1,1,ROF,3,1,E I 94/Russel,RAMP,1577707,0,0.126,0,,3.07,5 +13340,1,1.156564,4,0,0,1,1,,3,1,N I 75,,1577706,4.281,5.437,0,,0.58,7 +13353,1,0.399956,3,0,0,1,1,,3,1,N I 75,,1577706,2.861,3.261,0,,0.58,7 +13390,1,0.157324,1,0,0,1,2,RON,2,1,Grand/N M 10,RAMP,1585307,0,0.157,0,,1.09,4 +13464,1,0.124961,4,0,0,2,3,,2,1,Forest,Ave,1584908,1.001,1.126,0,2.999071,6,5 +13479,1,0.154485,1,0,0,1,2,ROF,2,1,S M 10/Grand,RAMP,1584902,0,0.154,0,,3.07,5 +13675,1,0.167786,1,0,0,1,1,RON,3,1,Holbrook/S I 75,RAMP,1585710,0,0.168,0,,1.09,4 +13686,0,0.386592,1,1,0,2,4,,3,1,Holbrook,St,1585801,0.771,1.158,0,9.278207,6,4.5 +13715,0,0.068867,1,1,0,2,5,,3,1,Milwaukee,St,1585705,0.859,0.928,0,1.652815,8,4.5 +13740,0,0.124978,1,1,0,2,5,,2,1,Ferry,St,1585703,0,0.125,0,2.999471,8.5,4.5 +13753,0,0.080146,2,2,0,2,5,,3,1,Chene,St,1587501,2.687,2.768,0,1.923513,8,4.5 +13842,1,0.183873,1,0,0,1,1,ROF,3,1,N I 75/Holbrook,RAMP,1586108,0,0.184,0,,2.24,5 +14004,0,0.08785,1,1,0,2,5,,3,1,Ferry,St,1585703,1.148,1.236,0,2.108396,8,4.5 +14019,0,0.138231,1,1,0,2,5,,3,1,Piquette,St,1585704,0.13,0.268,0,3.317541,8,4.5 +14154,1,0.148196,1,0,0,1,2,RON,2,1,Grand River/N M 10,RAMP,1585402,0,0.148,0,,1.09,4 +14217,-1,0.270071,0,3,0,1,1,,3,1,W I 94,,1588802,28.558,28.828,0,,0.58,7 +14220,0,0.215248,1,1,0,2,5,,3,1,Piquette,St,1585704,0.337,0.552,0,5.165956,8,4.5 +14296,0,0.08521,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.508,0.593,0,2.045041,8.5,4.5 +14364,-1,0.489621,0,3,0,1,1,,2,1,W I 94,,1588802,27.852,28.341,0,,0.32,8.5 +14511,0,0.095028,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.375,4.47,0,2.280666,6,5 +14518,0,0.054389,3,3,1,2,3,,2,1,Woodward,Ave,1591001,3.75,3.804,0,1.305342,6,5 +14569,1,0.258052,3,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,1590905,0.273,0.531,0,6.19324,5,5 +15414,-1,0.23364,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0.661,0.895,0,5.607369,8,4.5 +15526,-1,0.139602,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,0.911,1.05,0,3.350439,8.5,4.5 +15605,1,0.178254,2,0,0,2,5,,2,1,Hamilton,,1591107,1.031,1.209,0,4.278107,8.5,4.5 +15982,1,0.085629,1,0,0,2,5,,2,1,S M 10 Service Drive,,1598402,0,0.086,0,2.055088,8.5,4.5 +15990,-1,0.137835,0,2,0,2,5,,2,1,Medbury,St,1598202,0.126,0.264,0,3.308037,8.5,4.5 +15993,0,0.127323,1,1,0,2,5,,3,1,Baltimore,St,1598107,0.452,0.579,0,3.05576,8,4.5 +16000,0,0.126488,1,1,0,2,5,,2,1,Lothrop,Rd,1598105,0,0.126,0,3.035722,8.5,4.5 +16263,0,0.128878,1,1,0,2,5,,2,1,Selden,St,1607907,0,0.129,0,3.093063,8.5,4.5 +16286,-1,0.258899,0,2,0,2,4,,3,1,14th,St,1621303,0.611,0.87,0,6.213567,6,4.5 +16429,0,0.071392,1,1,0,2,5,,3,1,Temple,St,1608504,0.725,0.796,0,1.713414,8,4.5 +17230,1,0.125771,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.669,6.795,0,3.0185,6,5 +17388,1,0.339339,2,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.559,0.898,0,8.144131,8,4.5 +17407,0,0.092336,1,1,0,2,4,,2,1,3rd,St,1625110,0,0.092,0,2.21606,8,4.5 +19004,0,0.11971,1,1,0,2,4,,3,2,Caniff,St,1632110,0.555,0.675,0,2.87303,6,4.5 +19253,0,0.188468,1,1,0,2,5,,3,2,Dequindre,St,1805203,0,0.188,0,4.523233,8,4.5 +21634,-1,0.140959,0,2,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,4700471,1.629,1.77,0,3.383027,6,5 +21945,-1,0.126675,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.549,0.675,0,3.040204,6,5 +22646,0,0.098248,1,1,0,2,5,,3,1,Beaubien,St,4705574,0.551,0.649,0,2.35795,8,4.5 +22876,1,0.175943,1,0,0,1,1,RFS,3,1,N I 75/E I 94,RAMP,4705723,0.44,0.616,0,,0.22,6 +22928,1,0.09783,3,0,0,2,4,,3,1,Brush,St,4705554,1.042,1.14,0,2.347919,6,4.5 +22934,-1,0.155239,0,3,0,2,4,,3,1,John R,St,4705731,2.113,2.268,0,3.725726,6,4.5 +22962,0,0.082406,1,1,0,2,5,,3,1,Beaubien,St,4705574,0.759,0.842,0,1.977748,8,4.5 +23056,1,0.176977,1,0,0,1,1,RFS,3,1,S I 75/W I 94,RAMP,4705662,0.294,0.471,0,,0.22,6 +23231,0,0.321398,2,2,0,2,5,,3,1,McDougall,St,4704611,1.196,1.518,0,7.71354,8,4.5 +23414,0,0.062836,2,2,0,2,4,,3,1,Russell,St,4705681,0.821,0.883,0,1.508057,6,4.5 +23574,-1,0.059686,0,3,0,2,4,,2,1,John R,St,4705731,1.886,1.945,0,1.432471,8,4.5 +23922,-1,0.19301,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706942,0.251,0.444,0,4.632243,5,5 +23951,0,0.036463,1,1,0,2,4,,3,1,Oakland,St,4708768,0.25,0.287,0,0.875112,6,4.5 +23993,1,0.035426,3,0,0,2,5,,2,1,2nd,Ave,4710491,0,0.035,0,0.850212,8.5,4.5 +24467,-1,0.180057,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.305,1.485,0,4.321368,6,4.5 +24507,-1,0.135957,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.633,0.769,0,3.262961,8,4.5 +30584,0,0.135522,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.252527,0.15,4 +30591,0,0.093797,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.25113,0.15,4 +30650,0,0.256129,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.147104,0.15,4 +32061,0,0.234962,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.639079,0.15,4 +33261,0,0.084553,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.029276,0.15,4 +33267,0,0.177405,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.257712,0.15,4 +33273,0,0.274236,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.58166,0.15,4 +33276,0,0.231837,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.564085,0.15,4 +33286,0,0.161384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.873218,0.15,4 +33296,0,0.130186,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.124458,0.15,4 +33833,0,0.299778,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.19468,0.15,4 +33863,0,0.306771,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.362503,0.15,4 +37887,0,0.122959,2,2,1,2,5,,3,3,Town Center,Dr,1882209,0,0.123,0,2.951006,8,4.5 +10750,1,0.160675,3,0,0,1,1,,3,1,E I 94,,1576405,26.45,26.61,0,,0.58,7 +11457,1,0.283094,3,0,0,1,1,,3,1,E I 94,,1576405,26.993,27.276,0,,0.58,7 +11904,1,0.302493,3,0,0,1,2,,2,1,S M 10,,1577509,9.953,10.255,0,,0.32,8.5 +11968,-1,0.036258,0,2,0,2,5,,3,1,W I 94 Service Drive,,1584002,0.167,0.203,0,0.870198,8,4.5 +12106,1,0.263854,3,0,0,2,5,,3,1,Kirby,St,1581707,0.171,0.435,0,6.332503,8,4.5 +12125,1,0.128835,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.325,0.454,0,3.092045,8.5,4.5 +12127,0,0.293144,2,2,0,2,4,,3,1,Trumbull,St,1577506,2.542,2.835,0,7.035461,6,4.5 +12137,0,0.256828,2,2,0,2,4,,3,1,Trumbull,St,1577506,2.094,2.351,0,6.163863,6,4.5 +12258,1,0.180407,1,0,0,1,1,ROF,3,1,E I 94/Trumbull,RAMP,1577505,0,0.18,0,,2.24,5 +12267,1,0.258795,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0.446,0.704,0,6.211073,5,5 +12274,1,0.155377,1,0,0,1,1,RON,3,1,Linwood/E I 94,RAMP,1577501,0,0.155,0,,1.09,4 +12279,0,0.284517,1,1,0,2,3,,3,1,Linwood,St,1577410,0.165,0.45,0,6.828413,5,5 +12457,0,0.1771,2,2,0,2,3,,3,1,Grand River,Ave,1577408,10.473,10.65,0,4.250397,5,5 +12654,1,0.064145,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.883,0.947,0,1.539488,5,5 +12769,-1,0.143724,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.259,0.403,0,3.449377,8.5,4.5 +12818,-1,0.079217,0,4,0,2,4,DV2,2,1,Anthony Wayne,Dr,4708767,1,1.079,0,1.901206,8,4.5 +12914,1,0.23576,2,0,0,2,5,,3,1,Kirby,St,1581707,0.65,0.886,0,5.658238,8,4.5 +13053,-1,0.293357,0,3,0,1,2,,2,1,N M 10,,1577510,9.952,10.245,0,,0.32,8.5 +13150,0,0.116045,1,1,0,2,5,,3,1,Buchanan,St,1581905,1.221,1.337,0,2.785082,8,4.5 +13175,1,0.158906,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,3.141,3.3,0,3.813739,6,4.5 +13465,1,0.125647,4,0,0,2,3,,2,1,Forest,Ave,1584908,0.876,1.001,0,3.015539,6,5 +13474,1,0.138271,4,0,0,2,3,,3,1,Forest,Ave,1584908,0,0.138,0,3.318492,5,5 +13475,1,0.109615,1,0,0,1,2,ROF,2,1,S M 10/Forest,RAMP,1584907,0,0.11,0,,3.07,5 +14022,-1,0.306699,0,3,0,1,1,,3,1,W I 94,,1588802,26.295,26.602,0,,0.58,7 +14041,1,0.149956,1,0,0,1,1,ROF,3,1,W I 94/Linwood,RAMP,1589102,0,0.15,0,,2.24,5 +14222,-1,0.402172,0,3,0,1,1,,3,1,W I 94,,1588802,26.602,27.004,0,,0.58,7 +14480,1,0.135709,1,0,0,1,2,RON,2,1,Forest/N M 10,RAMP,1585310,0,0.136,0,,1.09,4 +17235,1,0.267416,4,0,0,2,3,DIV,3,1,Warren,Ave,1628604,6.121,6.389,0,6.417992,5,5 +17413,0,0.087613,1,1,1,2,4,,3,1,Lincoln,St,1625103,0,0.088,0,2.102712,6,4.5 +21751,-1,0.268959,0,4,0,2,3,DIV,3,1,Warren,Ave,4700429,0,0.269,0,6.455016,5,5 +21817,-1,0.29817,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.474,0.772,0,7.156086,5,5 +23151,-1,0.22618,0,2,0,2,3,,3,1,14th,St,4705601,1.157,1.384,0,5.428315,5,5 +23207,0,0.097642,1,1,1,2,4,,3,1,14th,St,4705601,1.872,1.969,0,2.343412,6,4.5 +23689,1,0.079048,4,0,0,2,4,DV2,2,1,Anthony Wayne,Dr,5500021,0.017,0.096,0,1.897163,8,4.5 +24525,-1,0.166507,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,0.277,0.444,0,3.996164,6,4.5 +30363,0,0.40804,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.79297,0.15,4 +33121,0,0.273317,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.559599,0.15,4 +33301,0,0.231622,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.558938,0.15,4 +33805,0,0.23267,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.584091,0.15,4 +11641,0,0.186742,1,1,0,2,5,,3,1,Buchanan,St,1581905,1.035,1.221,0,4.481805,8,4.5 +12031,0,0.235847,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.799,1.035,0,5.66033,8,4.5 +12413,1,0.175135,1,0,0,1,1,ROF,3,1,W I 96/Warren,RAMP,1582009,0,0.175,0,,2.24,5 +12414,1,0.165666,1,0,0,1,1,RON,3,1,M L King/W I 96,RAMP,1582010,0,0.166,0,,1.09,4 +12462,0,0.19625,2,2,0,2,3,,3,1,Grand River,Ave,1577408,10.053,10.249,0,4.710008,5,5 +12921,1,0.231845,1,0,0,1,1,ROF,3,1,E I 96/M L King,RAMP,1581906,0,0.232,0,,2.24,5 +12972,-1,0.16751,0,4,0,1,1,,3,1,W I 96,,1577405,3.818,3.986,0,,0.58,7 +13046,1,0.127451,4,0,0,1,1,,3,1,E I 96,,1577404,3.834,3.961,0,,0.58,7 +13949,1,0.429839,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0.263,0.692,0,10.316133,8,4.5 +14218,1,0.287881,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0.692,0.98,0,6.909144,8,4.5 +16057,0,0.323818,1,1,0,2,5,,3,1,Lawton,St,1608601,0.676,0.999,0,7.771626,8,4.5 +16324,0,0.11285,1,1,0,2,5,,3,1,Lawton,St,1608601,0.563,0.676,0,2.708404,8,4.5 +17245,0,0.214753,2,2,1,2,3,,3,1,Warren,Ave,1628604,5.315,5.53,0,5.154077,5,5 +24288,1,0.14819,1,0,0,1,1,RON,3,1,Warren/E I 96,RAMP,4710288,0,0.148,0,,1.09,4 +24445,1,0.41017,2,0,0,2,5,,3,1,E I 96 Service Drive,,4710513,0,0.41,0,9.844091,8,4.5 +30451,0,0.304857,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.316568,0.15,4 +33120,0,0.395156,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.483747,0.15,4 +12756,0,0.187455,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.458,0.646,0,4.498912,8,4.5 +12970,-1,0.380312,0,4,0,1,1,,3,1,W I 96,,1577405,3.986,4.366,0,,0.58,7 +13042,1,0.325953,4,0,0,1,1,,3,1,E I 96,,1577404,3.961,4.287,0,,0.58,7 +22873,0,0.225981,1,1,0,2,5,,3,1,24th,St,4705563,1.456,1.681,0,5.423549,8,4.5 +12327,0,0.090811,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.708,0.799,0,2.179462,8,4.5 +12488,0,0.062412,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.646,0.708,0,1.497877,8,4.5 +10792,1,0.102245,3,0,0,1,1,,3,1,E I 94,,1576405,26.348,26.45,0,,0.58,7 +12228,-1,0.130637,0,2,0,2,5,,3,1,W I 94 Service Drive,,1584002,0,0.131,0,3.135295,8,4.5 +12400,1,0.198976,1,0,0,1,1,ROF,3,1,E I 96/Warren,RAMP,1581706,0,0.199,0,,2.24,5 +12412,1,0.178776,1,0,0,1,1,RON,3,1,Warren/W I 96,RAMP,1582008,0,0.179,0,,1.09,4 +12527,0,0.074605,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.841,9.916,0,1.790521,5,5 +12561,1,0.081447,2,0,0,2,5,,3,1,Kirby,St,1581707,0.006,0.088,0,1.954736,8,4.5 +12973,-1,0.275458,0,4,0,1,1,,3,1,W I 96,,1577405,3.543,3.818,0,,0.58,7 +13047,1,0.307598,4,0,0,1,1,,3,1,E I 96,,1577404,3.526,3.834,0,,0.58,7 +13315,1,0.240591,2,0,0,1,1,RFF,3,1,I 94/E I 96,RAMP,1581702,0.319,0.559,0,,0.58,7 +14268,1,0.236136,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,1.076,1.312,0,5.667256,8,4.5 +16930,0,0.262013,1,1,0,2,5,,3,1,Lawton,St,1608601,0.999,1.261,0,6.288315,8,4.5 +17248,0,0.091903,2,2,1,2,3,,3,1,Warren,Ave,1628604,5.151,5.243,0,2.205682,5,5 +24235,1,0.25442,1,0,0,1,1,RFS,3,1,W I 96/E I 94,RAMP,4710382,0.171,0.425,0,,0.22,6 +12017,1,0.058702,2,0,0,2,5,,3,1,E I 96 Service Drive,,1581309,0.194,0.253,0,1.408846,8,4.5 +14000,1,0.03612,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0.98,1.016,0,0.86687,8,4.5 +17249,0,0.060955,3,3,1,2,3,,3,1,Warren,Ave,1628604,5.09,5.151,0,1.46293,5,5 +24236,1,0.170724,1,0,0,1,1,RFF,3,1,W I 96/I 94,RAMP,4710382,0,0.171,0,,0.58,7 +12018,1,0.033799,2,0,0,2,5,,3,1,E I 96 Service Drive,,1581309,0.253,0.287,0,0.811179,8,4.5 +13837,1,0.059941,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,1.016,1.076,0,1.438579,8,4.5 +13006,1,0.143026,2,0,0,1,1,RFS,3,1,W I 94/I 96,RAMP,1581704,0,0.143,0,,0.22,6 +12401,1,0.006386,2,0,0,2,5,,3,1,Kirby,St,1581707,0,0.006,0,0.153258,8,4.5 +12532,0,0.027945,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.813,9.841,0,0.670679,5,5 +12645,1,0.03315,1,0,0,1,1,RON,3,1,Grand River/W I 94,RAMP,1581705,0,0.033,0,,1.09,4 +19534,1,0.028957,1,0,0,1,1,RON,3,1,E Grand River/W I 94,RAMP,1877910,0,0.029,0,,1.09,4 +17246,0,0.071653,2,2,1,2,3,,3,1,Warren,Ave,1628604,5.243,5.315,0,1.719667,5,5 +12229,-1,0.036356,0,1,0,2,5,,3,1,W I 94 Service Drive,,1584002,0.131,0.167,0,0.872546,8,4.5 +12282,0,0.105415,1,1,0,2,3,,3,1,Linwood,St,1577410,0,0.105,0,2.529953,5,5 +12522,0,0.136732,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.916,10.053,0,3.281561,5,5 +12281,0,0.060004,1,1,0,2,3,,3,1,Linwood,St,1577410,0.105,0.165,0,1.440096,5,5 +12320,1,0.083602,2,0,0,2,5,,3,1,Kirby,St,1581707,0.088,0.171,0,2.006458,8,4.5 +12924,1,0.233811,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.65,0.883,0,5.611461,5,5 +16980,0,0.325917,1,1,0,2,5,,3,1,Lawton,St,1608601,0.237,0.563,0,7.822012,8,4.5 +32187,0,0.415987,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.983696,0.15,4 +13151,1,0.089493,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.56,0.65,0,2.147832,5,5 +21952,-1,0.090635,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.383,0.474,0,2.175231,5,5 +14152,1,0.009589,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0.253,0.263,0,0.230127,8,4.5 +14392,1,0.011108,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0.242,0.253,0,0.266602,8,4.5 +16108,0,0.011228,1,1,0,2,5,,3,1,Lawton,St,1608601,0.226,0.237,0,0.269476,8,4.5 +32188,0,0.232509,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.580227,0.15,4 +30364,0,0.042766,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.026382,0.15,4 +12461,0,0.223707,2,2,0,2,3,,3,1,Grand River,Ave,1577408,10.249,10.473,0,5.368968,5,5 +17242,0,0.1396,2,2,0,2,3,,3,1,Warren,Ave,1628604,5.53,5.669,0,3.350409,5,5 +23238,0,0.081509,1,1,1,2,4,,3,1,14th,St,4705601,1.71,1.792,0,1.956217,6,4.5 +23576,-1,0.161969,0,2,0,2,3,,3,1,14th,St,4705601,1.549,1.71,0,3.887258,5,5 +32899,0,0.140879,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.381092,0.15,4 +33292,0,0.047824,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.147783,0.15,4 +23551,0,0.079625,1,1,1,2,4,,3,1,14th,St,4705601,1.792,1.872,0,1.91099,6,4.5 +22863,-1,0.149729,0,2,0,2,3,,3,1,14th,St,4705601,1.384,1.533,0,3.593507,5,5 +22572,-1,0.015282,0,2,0,2,3,,3,1,14th,St,4705601,1.533,1.549,0,0.366763,5,5 +30477,0,0.124058,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.977393,0.15,4 +12259,1,0.09259,2,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,1.425,1.518,0,2.222161,5,5 +12260,1,0.247138,4,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,1.178,1.425,0,5.931301,5,5 +12326,0,0.138066,1,1,1,2,4,,3,1,McGraw,St,1581903,3.884,4.022,0,3.313579,6,4.5 +13181,0,0.199641,2,2,0,2,4,,3,1,Grand,Blvd,1577308,2.618,2.818,0,4.791382,6,4.5 +16800,-1,0.224505,0,2,0,2,4,,3,1,14th,St,1621303,0.104,0.328,0,5.38811,6,4.5 +23631,-1,0.094767,0,2,0,2,4,,3,1,14th,St,4705601,2.253,2.348,0,2.274405,6,4.5 +23905,-1,0.19154,0,2,0,2,5,,3,1,W I 94 Service Drive,,4707026,0,0.192,0,4.59696,8,4.5 +30776,0,0.178973,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.295359,0.15,4 +30791,0,0.096273,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.310544,0.15,4 +32060,0,0.250288,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.006902,0.15,4 +33300,0,0.247888,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.949323,0.15,4 +33660,0,0.270991,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.503786,0.15,4 +12755,0,0.128515,1,1,0,2,4,,3,1,McGraw,St,1581903,3.688,3.817,0,3.084357,6,4.5 +13013,0,0.075698,1,1,0,2,4,,3,1,McGraw,St,1581903,3.612,3.688,0,1.816742,6,4.5 +13548,0,0.1634,1,1,0,2,3,,3,1,Linwood,St,1584609,0,0.163,0,3.921609,5,5 +32790,0,0.156638,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.759321,0.15,4 +17091,-1,0.103764,0,2,0,2,4,,3,1,14th,St,1621303,0,0.104,0,2.490346,6,4.5 +30789,0,0.115114,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.762727,0.15,4 +12567,0,0.067912,1,1,1,2,4,,3,1,McGraw,St,1581903,3.817,3.884,0,1.629896,6,4.5 +13185,0,0.16417,2,2,0,2,4,,3,1,Grand,Blvd,1577308,2.454,2.618,0,3.940069,6,4.5 +14574,1,0.007618,2,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,0.079,0.087,0,0.182842,5,5 +16521,-1,0.282991,0,2,0,2,4,,3,1,14th,St,1621303,0.328,0.611,0,6.791772,6,4.5 +17408,0,0.010815,1,1,0,2,3,,3,1,Lothrop,St,1625106,0.52,0.531,0,0.259562,5,5 +23923,-1,0.250639,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706942,0,0.251,0,6.01534,5,5 +33886,0,0.300825,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.21979,0.15,4 +32059,0,0.048881,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.173154,0.15,4 +14573,1,0.153834,2,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,1590905,0.087,0.241,0,3.692018,5,5 +14572,1,0.031871,3,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,1590905,0.241,0.273,0,0.764894,5,5 +11453,1,0.291242,3,0,0,1,1,,3,1,E I 94,,1576405,26.61,26.901,0,,0.58,7 +11633,1,0.11061,3,0,0,2,5,,3,1,Kirby,St,1581707,0.435,0.546,0,2.65465,8,4.5 +12264,1,0.324404,2,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0.759,1.083,0,7.785694,5,5 +22624,-1,0.231043,0,2,0,2,4,,3,1,14th,St,4705601,2.022,2.253,0,5.545038,6,4.5 +22915,-1,0.053057,0,2,0,2,4,,3,1,14th,St,4705601,1.969,2.022,0,1.273357,6,4.5 +12113,0,0.074813,1,1,1,2,4,,3,1,McGraw,St,1581903,4.022,4.097,0,1.795506,6,4.5 +12262,1,0.09504,2,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,1.083,1.178,0,2.280949,5,5 +10761,1,0.091093,3,0,0,1,1,,3,1,E I 94,,1576405,26.901,26.993,0,,0.58,7 +12265,1,0.054599,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0.704,0.759,0,1.310374,5,5 +13221,1,0.104433,2,0,0,2,5,,3,1,Kirby,St,1581707,0.546,0.65,0,2.506385,8,4.5 +24276,1,0.074044,2,0,0,1,1,RON,3,1,14th/E I 94,RAMP,4710299,0,0.074,0,,1.09,4 +13176,1,0.278212,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,2.863,3.141,0,6.6771,6,4.5 +16235,0,0.357058,2,2,0,2,5,,3,1,Holden,St,1609803,0.217,0.574,0,8.569401,8,4.5 +24532,-1,0.213059,0,2,0,2,4,DV2,3,1,Grand,Blvd,4710494,0,0.213,0,5.113408,6,4.5 +33272,0,0.28112,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.746876,0.15,4 +33274,0,0.263518,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.324432,0.15,4 +13179,0,0.045337,2,2,0,2,4,,3,1,Grand,Blvd,1577308,2.818,2.863,0,1.088082,6,4.5 +22971,0,0.065102,2,2,0,2,4,,3,1,Lincoln,St,4705588,0,0.065,0,1.562457,6,4.5 +33299,0,0.143111,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.434675,0.15,4 +24529,-1,0.064118,0,2,0,2,4,DV2,3,1,Grand,Blvd,4710494,0.213,0.277,0,1.538829,6,4.5 +11903,1,0.564602,3,0,0,1,2,,2,1,S M 10,,1577509,10.255,10.82,0,,0.32,8.5 +12033,1,0.24099,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,1.281,1.522,0,5.783758,5,5 +12169,0,0.168825,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.512,1.68,0,4.051796,6,4.5 +12447,0,0.385782,2,2,0,2,3,,3,1,Grand River,Ave,1577408,10.816,11.201,0,9.258774,5,5 +12581,1,0.238763,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.855,1.093,0,5.730311,8.5,4.5 +12857,0,0.111814,1,1,0,2,5,,3,1,Canfield,St,1584102,0.415,0.526,0,2.683538,8,4.5 +13048,-1,0.586618,0,3,0,1,2,,2,1,N M 10,,1577510,10.245,10.832,0,,0.32,8.5 +13167,-1,0.187086,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.841,1.028,0,4.490064,8.5,4.5 +13469,1,0.268726,4,0,0,2,3,,3,1,Forest,Ave,1584908,0.453,0.722,0,6.449424,5,5 +21378,-1,0.240871,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,1.105,1.346,0,5.780903,5,5 +22923,1,0.284111,2,0,0,2,3,,3,1,Rosa Parks,Blvd,4705605,1.127,1.411,0,6.818675,5,5 +23642,1,0.320695,3,0,0,2,3,,3,1,Rosa Parks,Blvd,4705605,1.422,1.743,0,7.69667,5,5 +32997,0,0.19281,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.627439,0.15,4 +33376,0,0.265214,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.365127,0.15,4 +33512,0,0.261176,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.268213,0.15,4 +12207,1,0.213498,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,1.068,1.281,0,5.12396,5,5 +21544,-1,0.213473,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.892,1.105,0,5.123344,5,5 +23494,-1,0.213881,0,2,0,2,3,,3,1,14th,St,4705601,0.944,1.157,0,5.13314,5,5 +12490,1,0.120169,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.947,1.068,0,2.884053,5,5 +21633,-1,0.120163,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.772,0.892,0,2.88391,5,5 +22506,-1,0.010392,0,2,0,2,3,,3,1,14th,St,4705601,0.933,0.944,0,0.249416,5,5 +22636,1,0.011064,3,0,0,2,3,,3,1,Rosa Parks,Blvd,4705605,1.411,1.422,0,0.265539,5,5 +12166,0,0.138598,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.793,1.931,0,3.326346,6,4.5 +12271,1,0.138296,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0.145,0.284,0,3.319108,5,5 +13338,0,0.23904,1,1,0,2,5,,3,1,Canfield,St,1584102,0.111,0.35,0,5.736971,8,4.5 +13472,1,0.170065,4,0,0,2,3,,3,1,Forest,Ave,1584908,0.215,0.385,0,4.081548,5,5 +13473,1,0.076502,4,0,0,2,3,,3,1,Forest,Ave,1584908,0.138,0.215,0,1.836044,5,5 +32887,0,0.315218,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.565227,0.15,4 +32995,0,0.180859,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.340622,0.15,4 +33000,0,0.151435,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.634443,0.15,4 +12272,1,0.145392,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0,0.145,0,3.489418,5,5 +12456,0,0.166117,2,2,0,2,3,,3,1,Grand River,Ave,1577408,10.65,10.816,0,3.986814,5,5 +13337,0,0.111007,1,1,0,2,5,,3,1,Canfield,St,1584102,0,0.111,0,2.664173,8,4.5 +12269,1,0.162144,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0.284,0.446,0,3.891449,5,5 +12168,0,0.112567,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.68,1.793,0,2.701614,6,4.5 +13026,0,0.064575,1,1,0,2,5,,3,1,Canfield,St,1584102,0.35,0.415,0,1.549796,8,4.5 +12141,0,0.08081,2,2,0,2,3,,3,1,Trumbull,St,1577506,1.931,2.012,0,1.93944,5,5 +33288,0,0.048171,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.156111,0.15,4 +13471,1,0.068196,4,0,0,2,3,,3,1,Forest,Ave,1584908,0.385,0.453,0,1.636706,5,5 +33289,0,0.089535,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.148843,0.15,4 +33290,0,0.03762,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.90289,0.15,4 +12138,0,0.081585,2,2,0,2,3,,3,1,Trumbull,St,1577506,2.012,2.094,0,1.958047,5,5 +12181,0,0.114541,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.201,1.315,0,2.748986,6,4.5 +12231,0,0.056425,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.032,1.088,0,1.354209,6,4.5 +12380,0,0.30422,2,2,0,2,3,,3,1,Grand River,Ave,1577408,11.24,11.544,0,7.301282,5,5 +12840,1,0.143429,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,1.62,1.763,0,3.442294,5,5 +13456,1,0.101633,1,0,0,1,2,ROF,2,1,S M 10/Grand River,RAMP,1585001,0,0.102,0,,3.07,5 +21953,-1,0.177392,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,1.411,1.588,0,4.25742,5,5 +30356,0,0.044365,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.064763,0.15,4 +30362,0,0.242322,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.815722,0.15,4 +30740,0,0.197567,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.741617,0.15,4 +12183,0,0.112926,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.088,1.201,0,2.710214,6,4.5 +12170,0,0.165806,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.346,1.512,0,3.979337,6,4.5 +13152,1,0.073579,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,1.546,1.62,0,1.765897,5,5 +22087,-1,0.049198,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,1.362,1.411,0,1.180761,5,5 +12171,0,0.019417,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.326,1.346,0,0.466,6,4.5 +12381,0,0.013749,2,2,1,2,3,,3,1,Grand River,Ave,1577408,11.226,11.24,0,0.329966,5,5 +13322,1,0.024064,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,1.522,1.546,0,0.577545,5,5 +21279,-1,0.015544,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,1.346,1.362,0,0.373055,5,5 +12172,0,0.01104,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.315,1.326,0,0.264969,6,4.5 +12441,0,0.024924,2,2,1,2,3,,3,1,Grand River,Ave,1577408,11.201,11.226,0,0.598185,5,5 +16394,0,0.150847,1,1,0,2,5,,3,1,Temple,St,1608504,0.574,0.725,0,3.620333,8,4.5 +30355,0,0.150305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.60731,0.15,4 +12235,0,0.113109,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.918,1.032,0,2.714625,6,4.5 +33363,0,0.152654,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.663695,0.15,4 +30358,0,0.012118,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.290821,0.15,4 +13247,1,0.025504,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,1.32,1.345,0,0.612091,8.5,4.5 +11658,1,0.008824,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,1.311,1.32,0,0.211778,8.5,4.5 +12655,1,0.041338,2,0,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,1581907,1.763,1.804,0,0.992108,6,5 +12941,-1,0.010074,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,1.028,1.038,0,0.241776,8.5,4.5 +21756,-1,0.041238,0,2,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,4700471,1.588,1.629,0,0.989708,6,5 +12342,1,0.01019,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,1.093,1.104,0,0.244565,8.5,4.5 +12050,-1,0.262665,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.466,0.729,0,6.303954,8.5,4.5 +12768,1,0.229015,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.626,0.855,0,5.496355,8.5,4.5 +12821,0,0.174667,1,1,0,2,4,,2,1,3rd,St,4708767,0.673,0.848,0,4.191999,8,4.5 +13467,0,0.093614,2,2,0,2,3,,2,1,Forest,Ave,1584908,0.773,0.866,0,2.246738,6,5 +32999,0,0.230862,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.540678,0.15,4 +33302,0,0.072615,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.742761,0.15,4 +33866,0,0.183687,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.408495,0.15,4 +12580,0,0.093652,1,1,0,2,5,,3,1,Canfield,St,1584102,0.526,0.62,0,2.247646,8,4.5 +13027,1,0.086473,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.539,0.626,0,2.075357,8.5,4.5 +13459,1,0.11075,1,0,0,1,2,RON,2,1,Forest/S M 10,RAMP,1584909,0,0.111,0,,1.09,4 +13870,1,0.098444,1,0,0,1,2,ROF,2,1,N M 10/Forest,RAMP,1585401,0,0.098,0,,3.07,5 +11969,1,0.033632,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.454,0.487,0,0.807175,8.5,4.5 +12343,-1,0.045114,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.421,0.466,0,1.082728,8.5,4.5 +13468,1,0.051289,2,0,0,2,3,,2,1,Forest,Ave,1584908,0.722,0.773,0,1.230932,6,5 +13246,1,0.051941,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.487,0.539,0,1.246591,8.5,4.5 +12506,-1,0.018364,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.403,0.421,0,0.44073,8.5,4.5 +11659,-1,0.112545,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.729,0.841,0,2.701082,8.5,4.5 +30586,0,0.108284,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.598817,0.15,4 +30587,0,0.015112,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.362689,0.15,4 +40553,1,0.037395,2,0,0,2,4,,4,3,Tienken,Rd,626010,3.429,3.466,0,0.897489,4.5,4.5 +13466,1,0.00915,4,0,0,2,3,,2,1,Forest,Ave,1584908,0.866,0.876,0,0.219603,6,5 +10707,1,0.373258,3,0,0,1,1,,2,1,E I 94,,1576405,27.317,27.69,0,,0.32,8.5 +11911,1,0.014001,3,0,0,1,2,,2,1,S M 10,,1577509,9.735,9.749,0,,0.32,8.5 +11912,1,0.365144,3,0,0,1,2,,2,1,S M 10,,1577509,9.37,9.735,0,,0.32,8.5 +12085,1,0.308084,1,0,0,1,1,RFS,3,1,E I 94/N M 10,RAMP,1577508,0,0.308,0,,0.22,6 +12236,0,0.055584,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.438,2.493,0,1.334012,8,4.5 +12434,0,0.313219,1,1,0,2,5,,2,1,S M 10 Service Drive,,1584209,0,0.313,0,7.517246,8.5,4.5 +12697,1,0.308803,1,0,0,1,1,RFS,2,1,S M 10/E I 94,RAMP,1577603,0,0.309,0,,0.22,6 +12709,1,0.364564,1,0,0,1,1,RFS,2,1,N M 10/E I 94,RAMP,1577602,0,0.364,0,,0.22,6 +12783,-1,0.178717,0,3,0,2,4,,2,1,3rd,St,4708767,1.531,1.709,0,4.289208,8,4.5 +13076,-1,0.33199,0,3,0,1,2,,2,1,N M 10,,1577510,9.375,9.707,0,,0.32,8.5 +13386,1,0.306494,1,0,0,1,1,RFS,2,1,W I 94/N M 10,RAMP,1585309,0,0.306,0,,0.22,6 +13476,1,0.401939,1,0,0,1,1,RFS,2,1,W I 94/S M 10,RAMP,1584906,0,0.402,0,,0.22,6 +13477,1,0.324311,1,0,0,1,1,RFS,3,1,S M 10/W I 94,RAMP,1584905,0,0.324,0,,0.22,6 +13609,1,0.310243,1,0,0,1,1,RFS,3,1,N M 10/W I 94,RAMP,1584406,0,0.31,0,,0.22,6 +14010,-1,0.367844,0,3,0,1,1,,2,1,W I 94,,1588802,27.298,27.666,0,,0.32,8.5 +14279,0,0.114927,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.393,0.508,0,2.758253,8.5,4.5 +15986,-1,0.137114,0,2,0,2,4,DV2,2,1,Palmer,St,1598203,0.124,0.262,0,3.290734,8,4.5 +15995,0,0.115265,1,1,0,2,5,,2,1,Baltimore,St,1598107,0.251,0.367,0,2.766351,8.5,4.5 +16483,0,0.313431,1,1,0,2,5,,3,1,Elijah McCoy,Dr,1609801,0.061,0.374,0,7.52234,8,4.5 +16654,0,0.124932,1,1,0,2,5,,2,1,Antoinette,St,1609806,0,0.125,0,2.998375,8.5,4.5 +33271,0,0.181802,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.363243,0.15,4 +33303,0,0.25773,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,6.185508,0.15,4 +33305,0,0.1035,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.483991,0.15,4 +33823,0,0.120564,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.893531,0.15,4 +11209,1,0.041202,3,0,0,1,1,,3,1,E I 94,,1576405,27.276,27.317,0,,0.58,7 +12087,1,0.290386,1,0,0,1,1,RFS,3,1,E I 94/S M 10,RAMP,1577507,0,0.29,0,,0.22,6 +12128,0,0.114751,2,2,0,2,4,,3,1,Trumbull,St,1577506,2.427,2.542,0,2.754014,6,4.5 +12749,0,0.255149,1,1,0,2,5,,3,1,Kirby,St,1581707,0.886,1.141,0,6.123582,8,4.5 +14007,-1,0.226374,0,3,0,1,1,,3,1,W I 94,,1588802,27.004,27.23,0,,0.58,7 +14225,-1,0.067905,0,3,0,1,1,,3,1,W I 94,,1588802,27.23,27.298,0,,0.58,7 +12133,0,0.076401,2,2,0,2,4,,3,1,Trumbull,St,1577506,2.351,2.427,0,1.833621,6,4.5 +13961,1,0.135516,1,0,0,1,1,RON,3,1,Trumbull/W I 94,RAMP,1589103,0,0.136,0,,1.09,4 +11919,1,0.152818,3,0,0,1,2,,2,1,S M 10,,1577509,9.135,9.288,0,,0.32,8.5 +12715,0,0.013903,1,1,0,2,4,,2,1,3rd,St,4708767,2.183,2.197,0,0.333674,8,4.5 +12771,-1,0.262439,0,3,0,2,4,,2,1,3rd,St,4708767,1.782,2.044,0,6.298527,8,4.5 +13096,-1,0.189058,0,4,0,1,2,,2,1,N M 10,,1577510,9.148,9.337,0,,0.32,8.5 +13118,1,0.133807,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.368,3.502,0,3.211368,8,4.5 +13389,1,0.112343,1,0,0,1,2,ROF,2,1,N M 10/Milwaukee,RAMP,1585308,0,0.112,0,,3.07,5 +13478,1,0.124565,1,0,0,1,2,RON,2,1,Milwaukee/S M 10,RAMP,1584904,0,0.125,0,,1.09,4 +14068,0,0.118538,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.146,0.264,0,2.844909,8.5,4.5 +15582,0,0.233053,1,1,0,2,5,,2,1,S M 10 Service Drive,,1591107,1.425,1.658,0,5.593263,8.5,4.5 +15997,0,0.123371,1,1,0,2,5,,2,1,Baltimore,St,1598107,0,0.123,0,2.960899,8.5,4.5 +17409,0,0.122243,1,1,0,2,5,,3,1,Baltimore,St,1625104,0,0.122,0,2.933831,8,4.5 +17412,0,0.068267,1,1,1,2,4,,3,1,Lincoln,St,1625103,0.088,0.156,0,1.638402,6,4.5 +13168,1,0.044249,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.324,3.368,0,1.061971,8,4.5 +13893,0,0.045518,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.084,0.129,0,1.092442,8.5,4.5 +15519,-1,0.037942,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,1.155,1.193,0,0.910614,8.5,4.5 +15586,1,0.048772,1,0,0,2,5,,2,1,S M 10 Service Drive,,1591107,1.376,1.425,0,1.170517,8.5,4.5 +15596,1,0.013397,2,0,0,2,5,,2,1,Hamilton,,1591107,1.274,1.287,0,0.321534,8.5,4.5 +24515,-1,0.128371,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.505,0.633,0,3.080912,8,4.5 +24524,-1,0.017681,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.444,0.461,0,0.424353,8,4.5 +13174,1,0.024074,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.3,3.324,0,0.57778,8,4.5 +13833,0,0.083851,2,2,0,2,5,,3,1,Milwaukee,St,1585705,0,0.084,0,2.012429,8,4.5 +15594,1,0.082254,2,0,0,2,5,,2,1,S M 10 Service Drive,,1591107,1.287,1.37,0,1.974088,8.5,4.5 +17411,0,0.102018,1,1,1,2,4,,3,1,Lincoln,St,1625103,0.156,0.258,0,2.448438,6,4.5 +17410,0,0.014841,1,1,0,2,4,,2,1,Lincoln,St,1625103,0.258,0.273,0,0.35619,8,4.5 +15591,1,0.006513,2,0,0,2,5,,2,1,S M 10 Service Drive,,1591107,1.37,1.376,0,0.156323,8.5,4.5 +15523,-1,0.043607,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,1.05,1.094,0,1.046563,8.5,4.5 +24516,-1,0.043713,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.461,0.505,0,1.049119,8,4.5 +15602,1,0.064836,2,0,0,2,5,,2,1,Hamilton,,1591107,1.209,1.274,0,1.556068,8.5,4.5 +15522,-1,0.048136,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,1.094,1.142,0,1.155271,8.5,4.5 +15521,-1,0.013365,0,3,0,2,5,,2,1,N M 10 Service Drive,,1591204,1.142,1.155,0,0.320755,8.5,4.5 +13388,1,0.02253,2,0,0,1,2,ROF,2,1,N M 10/Milwaukee,RAMP,1585308,0.112,0.135,0,,3.07,5 +15517,0,0.021544,1,1,0,2,5,,2,1,Baltimore,St,1591204,1.241,1.263,0,0.517054,8.5,4.5 +24355,1,0.020368,1,0,0,1,5,,2,1,Milwaukee Ramp/Baltimore Cutof,,4711347,0,0.02,0,,8.5,4.5 +13387,1,0.044466,2,0,0,1,2,ROF,2,1,N M 10/Milwaukee,RAMP,1585308,0.135,0.179,0,,3.07,5 +15518,-1,0.047882,0,2,0,2,5,,2,1,Baltimore,St,1591204,1.193,1.241,0,1.149157,8.5,4.5 +13929,0,0.01655,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.129,0.146,0,0.397201,8.5,4.5 +15516,0,0.025154,1,1,0,2,5,,2,1,Baltimore,St,1591204,1.263,1.288,0,0.603706,8.5,4.5 +11915,1,0.082827,3,0,0,1,2,,2,1,S M 10,,1577509,9.288,9.37,0,,0.32,8.5 +13090,-1,0.038148,0,3,0,1,2,,2,1,N M 10,,1577510,9.337,9.375,0,,0.32,8.5 +12772,-1,0.072455,0,3,0,2,4,,2,1,3rd,St,4708767,1.709,1.782,0,1.738922,8,4.5 +12722,-1,0.083395,0,3,0,2,4,,2,1,3rd,St,4708767,2.099,2.183,0,2.001484,8,4.5 +13117,1,0.130461,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.502,3.633,0,3.13107,8,4.5 +14190,0,0.128312,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.264,0.393,0,3.079484,8.5,4.5 +15996,0,0.128039,1,1,0,2,5,,2,1,Baltimore,St,1598107,0.123,0.251,0,3.072942,8.5,4.5 +33270,0,0.073376,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.761031,0.15,4 +12736,-1,0.055213,0,3,0,2,4,,2,1,3rd,St,4708767,2.044,2.099,0,1.325115,8,4.5 +33268,0,0.054997,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.319922,0.15,4 +12796,-1,0.245788,0,4,0,2,4,DV2,2,1,Anthony Wayne,Dr,4708767,1.173,1.419,0,5.898918,8,4.5 +12808,-1,0.081427,0,4,0,2,4,DV2,2,1,Anthony Wayne,Dr,4708767,1.079,1.161,0,1.954236,8,4.5 +12939,-1,0.247239,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0,0.247,0,5.933744,8.5,4.5 +13064,-1,0.072147,0,3,0,1,2,,2,1,N M 10,,1577510,9.707,9.779,0,,0.32,8.5 +17231,1,0.122687,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.547,6.669,0,2.94448,6,5 +22134,-1,0.12173,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.427,0.549,0,2.921513,6,5 +23684,1,0.24581,4,0,0,2,4,DV2,2,1,Anthony Wayne,Dr,5500021,0.19,0.436,0,5.899437,8,4.5 +23688,1,0.081278,4,0,0,2,4,DV2,2,1,Anthony Wayne,Dr,5500021,0.096,0.177,0,1.950671,8,4.5 +30658,0,0.184069,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.417652,0.15,4 +33254,0,0.225509,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.412209,0.15,4 +11905,1,0.203488,3,0,0,1,2,,2,1,S M 10,,1577509,9.749,9.953,0,,0.32,8.5 +12940,-1,0.0119,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.247,0.259,0,0.285589,8.5,4.5 +13056,-1,0.173413,0,3,0,1,2,,2,1,N M 10,,1577510,9.779,9.952,0,,0.32,8.5 +17234,1,0.051058,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.389,6.44,0,1.225391,6,5 +21428,-1,0.094079,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.32,0.414,0,2.257889,6,5 +12435,1,0.011753,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.313,0.325,0,0.282061,8.5,4.5 +21537,-1,0.051068,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.269,0.32,0,1.225624,6,5 +17233,1,0.093876,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.44,6.534,0,2.253036,6,5 +12798,-1,0.012638,0,4,0,2,4,DV2,2,1,Anthony Wayne,Dr,4708767,1.161,1.173,0,0.303313,8,4.5 +17232,1,0.01307,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.534,6.547,0,0.31368,6,5 +21272,-1,0.013023,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.414,0.427,0,0.312551,6,5 +23685,1,0.012658,4,0,0,2,4,DV2,2,1,Anthony Wayne,Dr,5500021,0.177,0.19,0,0.303783,8,4.5 +12785,-1,0.111935,0,2,0,2,4,DV2,2,1,Anthony Wayne,Dr,4708767,1.419,1.531,0,2.686437,8,4.5 +15987,-1,0.124399,0,2,0,2,4,DV2,2,1,Palmer,St,1598203,0,0.124,0,2.985588,8,4.5 +30659,0,0.069777,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.674641,0.15,4 +33253,0,0.081668,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.960023,0.15,4 +16269,1,0.073981,2,0,0,2,5,,2,1,Kirby,St,1608005,0,0.074,0,1.775534,8.5,4.5 +17152,1,0.012807,2,0,0,2,5,,2,1,Kirby,St,1608005,0.074,0.087,0,0.307362,8.5,4.5 +33295,0,0.12194,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.926562,0.15,4 +33297,0,0.032998,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.791945,0.15,4 +33298,0,0.029352,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.704436,0.15,4 +12238,0,0.128902,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.309,2.438,0,3.093646,8,4.5 +12239,0,0.146911,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.162,2.309,0,3.525865,8,4.5 +33284,0,0.11223,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.693517,0.15,4 +33865,0,0.19089,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.581367,0.15,4 +11177,1,0.195797,3,0,0,1,1,,2,1,E I 94,,1576405,27.708,27.903,0,,0.32,8.5 +12159,0,0.134613,2,2,0,2,4,,2,1,Cass,Ave,1577605,2.638,2.773,0,3.230714,8,4.5 +13778,1,0.224432,1,0,0,1,1,RON,2,1,John R/W I 94,RAMP,1589104,0,0.224,0,,1.09,4 +13876,-1,0.16786,0,3,0,1,1,,2,1,W I 94,,1588802,27.684,27.852,0,,0.32,8.5 +14516,0,0.174961,3,3,1,2,3,,2,1,Woodward,Ave,1591001,3.96,4.135,0,4.199056,6,5 +14517,0,0.15528,3,3,1,2,3,,2,1,Woodward,Ave,1591001,3.804,3.96,0,3.726718,6,5 +15991,-1,0.125993,0,2,0,2,5,,2,1,Medbury,St,1598202,0,0.126,0,3.023832,8.5,4.5 +16145,0,0.112992,1,1,0,2,5,,2,1,Antoinette,St,1609806,0.136,0.249,0,2.711797,8.5,4.5 +33269,0,0.16464,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.95135,0.15,4 +14056,-1,0.018383,0,3,0,1,1,,2,1,W I 94,,1588802,27.666,27.684,0,,0.32,8.5 +11415,1,0.017811,3,0,0,1,1,,2,1,E I 94,,1576405,27.69,27.708,0,,0.32,8.5 +31992,0,0.045393,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.089432,0.15,4 +33894,0,0.054594,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.310245,0.15,4 +16403,0,0.01086,1,1,0,2,5,,2,1,Antoinette,St,1609806,0.125,0.136,0,0.260648,8.5,4.5 +12156,0,0.20831,2,2,0,2,4,,2,1,Cass,Ave,1577605,2.773,2.981,0,4.999448,8,4.5 +15994,0,0.08515,1,1,0,2,5,,2,1,Baltimore,St,1598107,0.367,0.452,0,2.043606,8.5,4.5 +12153,0,0.055089,2,2,0,2,4,,2,1,Cass,Ave,1577605,2.981,3.036,0,1.322136,8,4.5 +12173,0,0.138109,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.493,2.631,0,3.314617,8,4.5 +14514,0,0.148762,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.142,4.291,0,3.570292,6,5 +15985,0,0.111596,1,1,1,2,5,,2,1,Palmer,St,1598203,0.262,0.373,0,2.678308,8.5,4.5 +15509,0,0.10106,1,1,0,2,5,,2,1,Antoinette,St,1591205,0,0.101,0,2.425446,8.5,4.5 +12160,0,0.006528,2,2,0,2,4,,2,1,Cass,Ave,1577605,2.631,2.638,0,0.156666,8,4.5 +14515,0,0.007849,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.135,4.142,0,0.188372,6,5 +14513,0,0.050501,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.291,4.342,0,1.212028,6,5 +14512,0,0.033061,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.342,4.375,0,0.79347,6,5 +14323,0,0.12976,1,1,0,2,5,,3,1,Piquette,St,1585704,0,0.13,0,3.114247,8,4.5 +23235,-1,0.167181,0,3,0,2,4,,3,1,John R,St,4705731,1.945,2.113,0,4.012332,6,4.5 +12130,0,0.17067,2,2,0,2,5,,3,1,Woodland,St,1577607,0.172,0.343,0,4.09608,8,4.5 +12226,0,0.170361,1,1,0,2,5,,2,1,Euclid,St,1583804,2.097,2.268,0,4.088675,8.5,4.5 +13482,0,0.172378,1,1,0,2,4,,3,1,Clairmount,St,1584807,1.355,1.527,0,4.137075,6,4.5 +13691,0,0.202451,1,1,0,2,4,,3,1,Holbrook,St,1585801,0.512,0.714,0,4.858836,6,4.5 +14526,0,0.273961,2,2,1,2,3,,3,1,Woodward,Ave,1591001,2.421,2.695,0,6.575053,5,5 +16002,0,0.169254,1,1,0,2,5,,3,1,Owen,St,1597904,0.343,0.512,0,4.062095,8,4.5 +16163,0,0.134322,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.205,0.339,0,3.223736,6,4.5 +17367,0,0.268224,1,1,0,2,5,,3,1,Brush,St,1625910,0.059,0.327,0,6.437365,8,4.5 +17375,-1,0.485806,0,3,0,2,5,,3,1,John R,St,1625909,0.41,0.896,0,11.659339,8,4.5 +17378,-1,0.120921,0,3,0,2,5,,3,1,John R,St,1625909,0.128,0.249,0,2.902099,8,4.5 +17396,-1,0.226269,0,4,0,2,5,,3,1,3rd,St,1625110,1.257,1.483,0,5.430455,8,4.5 +17403,-1,0.084969,0,2,0,2,5,,2,1,3rd,St,1625110,0.38,0.465,0,2.039266,8.5,4.5 +22177,-1,0.127382,0,2,0,2,5,DV2,3,1,Arden Park,Blvd,4704378,0,0.127,0,3.05718,8,4.5 +22701,-1,0.117147,0,1,0,2,7,,2,1,Seward,St,4705618,0.299,0.416,0,2.811533,8.5,4.5 +22935,1,0.13815,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.963,2.101,0,3.315612,8,4.5 +23289,-1,0.139294,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.666,1.805,0,3.343049,8,4.5 +23649,0,0.048342,1,1,0,2,5,,3,1,Arden Park,Blvd,4705652,2.136,2.184,0,1.160199,8,4.5 +23919,0,0.108466,1,1,0,2,4,,2,1,Pallister,St,4706949,0.546,0.655,0,2.603181,8,4.5 +23948,0,0.127313,1,1,0,2,4,,3,1,Oakland,St,4708768,0.83,0.957,0,3.05552,6,4.5 +23974,1,0.163101,4,0,0,2,5,,3,1,2nd,Blvd,4710491,1.28,1.443,0,3.914432,8,4.5 +23979,1,0.189959,3,0,0,2,5,,3,1,2nd,Ave,4710491,0.809,0.999,0,4.559025,8,4.5 +30285,0,0.12354,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.964968,0.15,4 +30651,0,0.050054,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.201288,0.15,4 +32080,0,0.306604,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.358502,0.15,4 +33835,0,0.098905,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.37372,0.15,4 +33985,0,0.292355,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.016526,0.15,4 +33986,0,0.154291,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.702982,0.15,4 +11925,1,0.414275,4,0,0,1,2,,3,1,S M 10,,1577509,7.78,8.194,0,,0.58,7 +13104,-1,0.302835,0,4,0,1,2,,3,1,N M 10,,1577510,8.121,8.423,0,,0.58,7 +13165,0,0.168687,1,1,0,2,5,,3,1,Euclid,St,1583804,1.594,1.763,0,4.048478,8,4.5 +13207,-1,0.475646,0,3,0,1,2,,3,1,N M 10,,1577510,7.466,7.942,0,,0.58,7 +13393,1,0.149732,1,0,0,1,2,ROF,3,1,N M 10/Chicago,RAMP,1585304,0,0.15,0,,2.24,5 +13481,1,0.158544,1,0,0,1,2,RON,3,1,Clairmount/S M 10,RAMP,1584808,0,0.159,0,,1.09,4 +13486,0,0.163459,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.85,1.014,0,3.923024,6,4.5 +13488,0,0.156459,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.526,0.682,0,3.755017,6,4.5 +15545,-1,0.408589,0,2,0,2,5,,3,1,N M 10 Service Drive,,1591204,0.204,0.613,0,9.806141,8,4.5 +15552,-1,0.163115,0,3,0,2,4,,3,1,N M 10 Service Drive,,1591204,0.012,0.175,0,3.914763,6,4.5 +15617,1,0.247059,2,0,0,2,5,,3,1,Hamilton,,1591107,0.4,0.647,0,5.929414,8,4.5 +15641,1,0.11576,2,0,0,2,4,,3,1,Hamilton,,1591107,0.192,0.307,0,2.778242,6,4.5 +17401,-1,0.247714,0,2,0,2,5,,3,1,3rd,St,1625110,0.539,0.786,0,5.945124,8,4.5 +23240,0,0.242313,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.314,0.556,0,5.815522,8,4.5 +23291,-1,0.170084,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.325,1.495,0,4.082026,8,4.5 +23575,1,0.170035,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.623,1.793,0,4.08085,8,4.5 +30281,0,0.261104,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.266485,0.15,4 +30283,0,0.230006,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.520152,0.15,4 +30290,0,0.231239,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.54973,0.15,4 +12225,0,0.205671,1,1,0,2,5,,3,1,Euclid,St,1583804,1.229,1.434,0,4.936112,8,4.5 +14568,1,0.441894,3,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,1590905,0.531,0.972,0,10.605452,5,5 +23578,0,0.199821,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.114,0.314,0,4.795694,8,4.5 +23921,-1,0.441259,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706942,0.444,0.885,0,10.590225,5,5 +13489,0,0.00849,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.518,0.526,0,0.203751,6,4.5 +13335,0,0.148722,1,1,0,2,5,,3,1,Euclid,St,1583804,1.446,1.594,0,3.56932,8,4.5 +12048,0,0.011379,1,1,0,2,5,,3,1,Euclid,St,1583804,1.434,1.446,0,0.273088,8,4.5 +30289,0,0.10371,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.489039,0.15,4 +11935,1,0.298212,3,0,0,1,2,,3,1,S M 10,,1577509,7.481,7.78,0,,0.58,7 +13394,1,0.182,1,0,0,1,2,RON,3,1,Chicago/N M 10,RAMP,1585303,0.014,0.196,0,,1.09,4 +13487,0,0.167744,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.682,0.85,0,4.025854,6,4.5 +13495,1,0.015934,2,0,0,2,5,,3,1,S M 10/Chicago,RAMP,1584803,0.128,0.144,0,0.382417,8,4.5 +15644,1,0.183602,2,0,0,2,5,,3,1,S M 10 Service Drive,,1591107,0.008,0.192,0,4.406452,8,4.5 +23150,1,0.113054,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.377,1.491,0,2.713299,8,4.5 +23312,-1,0.060998,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.183,1.244,0,1.463946,8,4.5 +23348,-1,0.085498,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0.992,1.078,0,2.051943,8,4.5 +23493,1,0.087807,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.29,1.377,0,2.107374,8,4.5 +23611,-1,0.110396,0,3,0,2,4,,3,1,Hamilton,Ave,4705640,0,0.11,0,2.649508,6,4.5 +32092,0,0.077473,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.859346,0.15,4 +32095,0,0.231491,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.555783,0.15,4 +32853,0,0.088761,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.130267,0.15,4 +22937,0,0.201353,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.556,0.757,0,4.832474,8,4.5 +32094,0,0.050992,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.223802,0.15,4 +22647,0,0.065711,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.757,0.823,0,1.577059,8,4.5 +23651,0,0.013527,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.823,0.836,0,0.32465,8,4.5 +13496,1,0.127661,1,0,0,1,2,ROF,3,1,S M 10/Chicago,RAMP,1584803,0,0.128,0,,2.24,5 +23340,-1,0.105709,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.078,1.183,0,2.537019,8,4.5 +16424,0,0.09084,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.114,0.205,0,2.180153,6,4.5 +22571,1,0.077821,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.545,1.623,0,1.867697,8,4.5 +22606,1,0.148945,1,0,0,1,2,RON,3,1,Chicago/S M 10,RAMP,4705639,0,0.149,0,,1.09,4 +23311,-1,0.080968,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.244,1.325,0,1.943239,8,4.5 +13395,1,0.013658,2,0,0,2,5,,3,1,Chicago/N M 10,RAMP,1585303,0,0.014,0,0.327797,8,4.5 +22862,1,0.054604,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.491,1.545,0,1.31049,8,4.5 +15646,1,0.007968,2,0,0,2,5,,3,1,S M 10 Service Drive,,1591107,0,0.008,0,0.191241,8,4.5 +16744,1,0.054867,3,0,0,2,4,,3,1,Hamilton,Ave,1615607,0,0.055,0,1.316819,6,4.5 +16989,0,0.046545,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.055,0.101,0,1.117072,6,4.5 +16675,0,0.012857,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.101,0.114,0,0.308576,6,4.5 +15554,-1,0.011961,0,3,0,2,4,,3,1,N M 10 Service Drive,,1591204,0,0.012,0,0.287053,6,4.5 +11924,1,0.346039,4,0,0,1,2,,2,1,S M 10,,1577509,8.194,8.54,0,,0.32,8.5 +12855,0,0.16477,1,1,0,2,5,,3,1,Euclid,St,1583804,1.763,1.928,0,3.954484,8,4.5 +13102,-1,0.289782,0,4,0,1,2,,2,1,N M 10,,1577510,8.423,8.713,0,,0.32,8.5 +13391,1,0.099193,1,0,0,1,2,RON,2,1,Seward/N M 10,RAMP,1585306,0,0.099,0,,1.09,4 +15544,-1,0.132768,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,0.613,0.745,0,3.186444,8.5,4.5 +15609,1,0.282591,2,0,0,2,5,,2,1,Hamilton,,1591107,0.749,1.031,0,6.782187,8.5,4.5 +15611,1,0.101675,2,0,0,2,5,,3,1,Hamilton,,1591107,0.647,0.749,0,2.440204,8,4.5 +11921,1,0.152884,4,0,0,1,2,,2,1,S M 10,,1577509,8.54,8.692,0,,0.32,8.5 +13480,1,0.130192,1,0,0,1,2,ROF,2,1,S M 10/Pallister,RAMP,1584810,0,0.13,0,,3.07,5 +15538,-1,0.139599,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,0.771,0.911,0,3.350376,8.5,4.5 +23920,1,0.050949,2,0,0,2,4,,2,1,Pallister,St,4706949,0.495,0.546,0,1.222774,8,4.5 +15542,-1,0.025777,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,0.745,0.771,0,0.618646,8.5,4.5 +12432,0,0.12057,1,1,0,2,5,,2,1,Euclid,St,1583804,1.977,2.097,0,2.893674,8.5,4.5 +12669,0,0.04911,1,1,0,2,5,,2,1,Euclid,St,1583804,1.928,1.977,0,1.17864,8.5,4.5 +17402,-1,0.073512,0,2,0,2,5,,2,1,3rd,St,1625110,0.465,0.539,0,1.764277,8.5,4.5 +13483,0,0.170212,1,1,0,2,4,,3,1,Clairmount,St,1584807,1.185,1.355,0,4.085081,6,4.5 +17399,-1,0.067797,0,2,0,2,5,,3,1,3rd,St,1625110,0.976,1.044,0,1.627138,8,4.5 +17400,-1,0.190015,0,2,0,2,5,,3,1,3rd,St,1625110,0.786,0.976,0,4.560368,8,4.5 +23237,1,0.170543,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.793,1.963,0,4.093037,8,4.5 +23290,-1,0.170557,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.495,1.666,0,4.093359,8,4.5 +33988,0,0.155425,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.730201,0.15,4 +33989,0,0.162478,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.899466,0.15,4 +12613,-1,0.179008,0,4,0,1,2,,3,1,N M 10,,1577510,7.942,8.121,0,,0.58,7 +13392,1,0.142862,1,0,0,1,2,ROF,3,1,N M 10/Clairmount,RAMP,1585305,0,0.143,0,,2.24,5 +13484,0,0.119139,1,1,0,2,4,,3,1,Clairmount,St,1584807,1.065,1.185,0,2.859334,6,4.5 +15618,1,0.092633,2,0,0,2,5,,3,1,Hamilton,,1591107,0.307,0.4,0,2.223191,8,4.5 +13485,0,0.051892,1,1,0,2,4,,3,1,Clairmount,St,1584807,1.014,1.065,0,1.245413,6,4.5 +15550,-1,0.028999,0,4,0,2,5,,3,1,N M 10 Service Drive,,1591204,0.175,0.204,0,0.695985,8,4.5 +17398,-1,0.199806,0,2,0,2,5,,3,1,3rd,St,1625110,1.044,1.244,0,4.795336,8,4.5 +17397,-1,0.013211,0,2,0,2,5,,3,1,3rd,St,1625110,1.244,1.257,0,0.317071,8,4.5 +33987,0,0.146623,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.518954,0.15,4 +23977,1,0.199398,4,0,0,2,5,,3,1,2nd,Blvd,4710491,1.067,1.267,0,4.785544,8,4.5 +23978,1,0.06819,4,0,0,2,5,,3,1,2nd,Blvd,4710491,0.999,1.067,0,1.63657,8,4.5 +23976,1,0.013589,3,0,0,2,5,,3,1,2nd,Blvd,4710491,1.267,1.28,0,0.326126,8,4.5 +12132,0,0.172399,2,2,0,2,5,,3,1,Woodland,St,1577607,0,0.172,0,4.137583,8,4.5 +13498,0,0.170366,1,1,0,2,5,,3,1,Calvert,St,1584802,1.791,1.961,0,4.088791,8,4.5 +14529,0,0.19096,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.741,1.932,0,4.583045,5,5 +14531,0,0.215441,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.463,1.678,0,5.170574,5,5 +16006,0,0.169901,2,2,0,2,5,,3,1,Webb,St,1597707,0.172,0.342,0,4.077635,8,4.5 +32906,0,0.277841,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.668177,0.15,4 +32916,0,0.263746,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.32991,0.15,4 +32924,0,0.252813,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.067517,0.15,4 +33282,0,0.105056,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.52134,0.15,4 +33984,0,0.256292,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.151013,0.15,4 +16007,0,0.172335,2,2,0,2,5,,3,1,Webb,St,1597707,0,0.172,0,4.136033,8,4.5 +16161,0,0.010902,2,2,1,2,4,,3,1,Hamilton,Ave,1615607,0.593,0.604,0,0.261638,6,4.5 +17043,0,0.127601,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.339,0.467,0,3.062413,6,4.5 +17394,-1,0.126339,0,4,0,2,5,,3,1,3rd,St,1625110,1.61,1.736,0,3.032132,8,4.5 +16422,0,0.126353,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.467,0.593,0,3.032476,6,4.5 +17041,0,0.242464,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,0.604,0.847,0,5.819143,6,4.5 +13499,0,0.171725,1,1,0,2,5,,3,1,Calvert,St,1584802,1.62,1.791,0,4.121392,8,4.5 +17395,-1,0.126685,0,4,0,2,5,,3,1,3rd,St,1625110,1.483,1.61,0,3.040432,8,4.5 +13514,0,0.343602,1,1,1,2,5,,3,2,Glendale,St,1584707,0.684,1.028,0,8.246441,8,4.5 +32087,0,0.256621,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.1589,0.15,4 +32107,0,0.275154,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.603697,0.15,4 +32109,0,0.260855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.260513,0.15,4 +14532,0,0.175483,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.288,1.463,0,4.211583,5,5 +13497,0,0.17229,1,1,0,2,5,,3,1,Calvert,St,1584802,1.961,2.134,0,4.134959,8,4.5 +14528,0,0.254462,2,2,1,2,3,,3,1,Woodward,Ave,1591001,1.932,2.186,0,6.107096,5,5 +24089,1,0.126824,4,0,0,2,5,,3,1,2nd,Blvd,4710491,1.506,1.633,0,3.043764,8,4.5 +32082,0,0.123551,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.965226,0.15,4 +33675,0,0.150227,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.605453,0.15,4 +24424,1,0.063023,4,0,0,2,5,,3,1,2nd,Blvd,4710491,1.443,1.506,0,1.51256,8,4.5 +16005,0,0.172942,2,2,0,2,5,,3,1,Webb,St,1597707,0.342,0.515,0,4.150606,8,4.5 +24541,1,0.12643,4,0,0,2,5,,3,1,2nd,Blvd,4710491,1.633,1.76,0,3.034328,8,4.5 +14527,0,0.235063,2,2,1,2,3,,3,1,Woodward,Ave,1591001,2.186,2.421,0,5.641515,5,5 +22645,0,0.034658,2,2,0,2,5,,3,1,Chicago,Blvd,4705652,2.101,2.136,0,0.83179,8,4.5 +17374,0,0.346173,1,1,0,2,5,,3,2,John R,St,1625909,0.896,1.242,0,8.308145,8,4.5 +30653,0,0.278376,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.681017,0.15,4 +30654,0,0.479579,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.509901,0.15,4 +14530,0,0.062329,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.678,1.741,0,1.495893,5,5 +13166,0,0.138656,1,1,0,2,5,,3,1,Euclid,St,1583804,2.565,2.704,0,3.327743,8,4.5 +13336,0,0.12556,1,1,0,2,5,,3,1,Euclid,St,1583804,2.44,2.565,0,3.013431,8,4.5 +14142,0,0.068643,2,2,0,2,4,,3,1,Holbrook,St,1585801,0.264,0.333,0,1.647429,6,4.5 +14522,0,0.432489,2,2,1,2,3,,2,1,Woodward,Ave,1591001,3.13,3.563,0,10.379729,6,5 +14523,0,0.246804,2,2,1,2,3,,3,1,Woodward,Ave,1591001,2.884,3.13,0,5.923289,5,5 +15998,0,0.173089,1,1,0,2,5,,2,1,Lothrop,Rd,1598105,0.296,0.469,0,4.154126,8.5,4.5 +22648,1,0.115554,4,0,0,2,4,,3,1,Brush,St,4705554,2.06,2.175,0,2.773307,6,4.5 +22849,-1,0.240845,0,3,0,2,4,,3,1,John R,St,4705731,2.702,2.942,0,5.780288,6,4.5 +23206,0,0.070504,1,1,0,2,5,,3,1,Brush,St,4705574,1.683,1.754,0,1.692092,8,4.5 +23341,0,0.311012,1,1,0,2,5,,3,1,Beaubien,St,4705574,1.01,1.321,0,7.464283,8,4.5 +23581,1,0.240824,3,0,0,2,4,,3,1,Brush,St,4705554,1.632,1.873,0,5.779787,6,4.5 +23981,1,0.188845,4,0,0,2,5,,3,1,2nd,Ave,4710491,0.561,0.75,0,4.53228,8,4.5 +24504,-1,0.085304,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.8,0.886,0,2.047284,8,4.5 +33674,0,0.352891,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.469388,0.15,4 +12049,0,0.172211,1,1,0,2,5,,2,1,Euclid,St,1583804,2.268,2.44,0,4.133053,8.5,4.5 +15999,0,0.169161,1,1,0,2,5,,2,1,Lothrop,Rd,1598105,0.126,0.296,0,4.059863,8.5,4.5 +23703,-1,0.17032,0,1,0,2,7,,2,1,Seward,St,4705618,0.416,0.587,0,4.08769,8.5,4.5 +23986,1,0.074953,3,0,0,2,5,,2,1,2nd,Ave,4710491,0.328,0.402,0,1.798862,8.5,4.5 +30287,0,0.111427,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.674249,0.15,4 +30291,0,0.097071,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.329709,0.15,4 +32084,0,0.129141,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.099382,0.15,4 +17405,-1,0.097381,0,2,0,2,5,,2,1,3rd,St,1625110,0.206,0.303,0,2.337151,8.5,4.5 +17406,0,0.113229,1,1,0,2,4,,2,1,3rd,St,1625110,0.092,0.206,0,2.717499,8,4.5 +17404,-1,0.077483,0,2,0,2,5,,2,1,3rd,St,1625110,0.303,0.38,0,1.859598,8.5,4.5 +23982,1,0.073443,4,0,0,2,5,,2,1,2nd,Ave,4710491,0.488,0.561,0,1.762622,8.5,4.5 +23984,1,0.085246,4,0,0,2,5,,2,1,2nd,Ave,4710491,0.402,0.488,0,2.045898,8.5,4.5 +30288,0,0.107353,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.576468,0.15,4 +23991,1,0.067287,3,0,0,2,5,,2,1,2nd,Ave,4710491,0.127,0.195,0,1.614889,8.5,4.5 +23992,1,0.092037,3,0,0,2,5,,2,1,2nd,Ave,4710491,0.035,0.127,0,2.20888,8.5,4.5 +33283,0,0.08887,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.132877,0.15,4 +23987,1,0.132901,3,0,0,2,5,,2,1,2nd,Ave,4710491,0.195,0.328,0,3.189631,8.5,4.5 +24505,-1,0.031017,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.769,0.8,0,0.744397,8,4.5 +13844,0,0.130683,1,1,0,2,4,,3,1,Holbrook,St,1585801,0,0.131,0,3.13639,6,4.5 +14525,0,0.131215,2,2,1,2,3,,3,1,Woodward,Ave,1591001,2.695,2.826,0,3.149161,5,5 +16004,0,0.172273,1,1,0,2,5,,3,1,Owen,St,1597904,0,0.172,0,4.134554,8,4.5 +23562,-1,0.180141,0,3,0,2,4,,3,1,John R,St,4705731,3.067,3.247,0,4.323395,6,4.5 +23980,1,0.059453,3,0,0,2,5,,3,1,2nd,Ave,4710491,0.75,0.809,0,1.426868,8,4.5 +14524,0,0.057458,2,2,1,2,3,,3,1,Woodward,Ave,1591001,2.826,2.884,0,1.379001,5,5 +22555,-1,0.124433,0,3,0,2,4,,3,1,John R,St,4705731,2.942,3.067,0,2.9864,6,4.5 +14118,0,0.133678,1,1,0,2,4,,3,1,Holbrook,St,1585801,0.131,0.264,0,3.208268,6,4.5 +16003,0,0.170649,1,1,0,2,5,,3,1,Owen,St,1597904,0.172,0.343,0,4.095578,8,4.5 +17379,-1,0.055779,0,3,0,2,5,,3,1,John R,St,1625909,0.073,0.128,0,1.338703,8,4.5 +23217,-1,0.085157,0,3,0,2,5,,3,1,John R,St,4705731,3.247,3.332,0,2.043757,8,4.5 +17368,0,0.059136,1,1,0,2,5,,3,1,Brush,St,1625910,0,0.059,0,1.419271,8,4.5 +13109,1,0.13862,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,3.961,4.1,0,3.326874,6,4.5 +14018,0,0.12743,2,2,0,2,5,,3,1,Milwaukee,St,1585705,0.593,0.72,0,3.058326,8,4.5 +23130,-1,0.167808,0,3,0,2,4,,3,1,John R,St,4705731,2.534,2.702,0,4.027384,6,4.5 +23343,1,0.130596,3,0,0,2,4,,3,1,Brush,St,4705554,1.501,1.632,0,3.134313,6,4.5 +23648,-1,0.080829,0,3,0,2,4,,3,1,John R,St,4705731,2.322,2.403,0,1.939888,6,4.5 +23677,0,0.156197,1,2,0,2,5,,3,1,Beaubien,St,4705574,0.854,1.01,0,3.748725,8,4.5 +23680,1,0.155735,3,0,0,2,4,,3,1,Brush,St,4705554,1.345,1.501,0,3.737646,6,4.5 +24493,-1,0.138672,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.098,1.237,0,3.328126,6,4.5 +30294,0,0.096028,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.304683,0.15,4 +33864,0,0.109319,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.62365,0.15,4 +13112,1,0.12726,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,3.834,3.961,0,3.054235,6,4.5 +14519,0,0.081516,3,3,1,2,3,,2,1,Woodward,Ave,1591001,3.669,3.75,0,1.956374,6,5 +14521,0,0.092586,2,2,1,2,3,,2,1,Woodward,Ave,1591001,3.563,3.655,0,2.222073,6,5 +23315,-1,0.012496,0,3,0,2,4,,3,1,John R,St,4705731,2.403,2.415,0,0.299902,6,4.5 +24496,-1,0.126989,0,1,0,2,4,DV2,3,1,Grand,Blvd,4710494,0.971,1.098,0,3.047725,6,4.5 +13114,1,0.085343,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.749,3.834,0,2.048235,8,4.5 +24502,-1,0.085465,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.886,0.971,0,2.051155,8,4.5 +12142,0,0.013499,1,1,0,2,4,,2,1,Cass,Ave,1577605,3.118,3.132,0,0.323969,8,4.5 +14520,0,0.013286,3,3,1,2,3,,2,1,Woodward,Ave,1591001,3.655,3.669,0,0.318861,6,5 +22998,-1,0.118964,0,3,0,2,4,,3,1,John R,St,4705731,2.415,2.534,0,2.855129,6,4.5 +30292,0,0.090731,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.177535,0.15,4 +30293,0,0.127169,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.052053,0.15,4 +13933,0,0.138607,1,1,0,2,5,,3,1,Milwaukee,St,1585705,0.72,0.859,0,3.326575,8,4.5 +15992,0,0.138716,1,1,0,2,5,,3,1,Baltimore,St,1598107,0.579,0.718,0,3.329175,8,4.5 +22964,1,0.082445,3,0,0,2,4,,3,1,Brush,St,4705554,1.251,1.334,0,1.978687,6,4.5 +22644,-1,0.053983,0,3,0,2,4,,3,1,John R,St,4705731,2.268,2.322,0,1.295599,6,4.5 +23270,1,0.054113,3,0,0,2,4,,3,1,Brush,St,4705554,1.197,1.251,0,1.298703,6,4.5 +23612,1,0.056799,3,0,0,2,4,,3,1,Brush,St,4705554,1.14,1.197,0,1.363186,6,4.5 +13106,1,0.068795,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.1,4.168,0,1.65108,6,4.5 +24143,-1,0.068815,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.237,1.305,0,1.651552,6,4.5 +22687,1,0.011927,3,0,0,2,4,,3,1,Brush,St,4705554,1.334,1.345,0,0.286238,6,4.5 +22684,0,0.011842,1,2,0,2,5,,3,1,Beaubien,St,4705574,0.842,0.854,0,0.284208,8,4.5 +12670,0,0.095561,1,1,0,2,5,,3,1,Euclid,St,1583804,2.773,2.868,0,2.293468,8,4.5 +22338,1,0.062608,1,0,0,2,5,,3,1,Beaubien,St,4705574,1.506,1.568,0,1.502602,8,4.5 +22938,1,0.124544,4,0,0,2,4,,3,1,Brush,St,4705554,1.935,2.06,0,2.989051,6,4.5 +23949,0,0.302263,1,1,0,2,4,,3,1,Oakland,St,4708768,0.528,0.83,0,7.254307,6,4.5 +33281,0,0.099771,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.394495,0.15,4 +12856,0,0.068784,1,1,0,2,5,,3,1,Euclid,St,1583804,2.704,2.773,0,1.650828,8,4.5 +22753,0,0.124794,1,1,0,2,5,,3,1,Beaubien,St,4705574,1.381,1.506,0,2.99506,8,4.5 +23028,0,0.060491,1,1,0,2,5,,3,1,Beaubien,St,4705574,1.321,1.381,0,1.451791,8,4.5 +23241,1,0.06254,3,0,0,2,4,,3,1,Brush,St,4705554,1.873,1.935,0,1.500963,6,4.5 +14477,0,0.178779,2,2,0,2,4,,3,1,Holbrook,St,1585801,0.333,0.512,0,4.290699,6,4.5 +16001,1,0.068142,1,0,0,2,5,,3,1,Alger,St,1598001,0.265,0.333,0,1.63542,8,4.5 +23443,1,0.11508,2,0,0,2,5,,3,1,Beaubien,St,4705574,1.568,1.683,0,2.761928,8,4.5 +23950,0,0.241251,1,1,0,2,4,,3,1,Oakland,St,4708768,0.287,0.528,0,5.790029,6,4.5 +30839,0,0.206482,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.955569,0.15,4 +12433,0,0.083722,1,1,0,2,5,,3,1,Euclid,St,1583804,2.868,2.952,0,2.009329,8,4.5 +33280,0,0.050432,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.210368,0.15,4 +15385,-1,0.297512,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,1.231,1.528,0,7.140297,8,4.5 +17364,0,0.391671,1,1,0,2,5,,3,1,Brush,St,1625910,0.437,0.828,0,9.400094,8,4.5 +17386,1,0.566501,2,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.922,1.488,0,13.59602,8,4.5 +19062,-1,0.340571,0,1,0,2,4,DV2,3,1,Caniff,St,1632110,0,0.341,0,8.17371,6,4.5 +22617,-1,0.239282,0,2,0,2,4,DV2,3,1,Oakland,St,4704923,0,0.239,0,5.742757,6,4.5 +23807,1,0.343102,1,0,0,2,4,DV2,3,1,Caniff,St,4707783,0,0.343,0,8.234445,6,4.5 +23943,1,0.233089,2,0,0,2,4,DV2,3,1,Oakland,St,4708768,1.493,1.726,0,5.594141,6,4.5 +23947,0,0.269999,1,1,0,2,4,,3,1,Oakland,St,4708768,0.957,1.227,0,6.479966,6,4.5 +33862,0,0.375569,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.013645,0.15,4 +17365,0,0.095073,1,1,0,2,5,,3,1,Brush,St,1625910,0.342,0.437,0,2.281763,8,4.5 +22175,-1,0.170187,0,2,0,2,5,DV2,3,1,Arden Park,Blvd,4704378,0.298,0.468,0,4.084496,8,4.5 +22176,-1,0.170552,0,2,0,2,5,DV2,3,1,Arden Park,Blvd,4704378,0.127,0.298,0,4.093252,8,4.5 +22732,1,0.170021,2,0,0,2,5,DV2,3,1,Arden Park,Blvd,4705652,2.482,2.652,0,4.080498,8,4.5 +22999,1,0.170472,2,0,0,2,5,DV2,3,1,Arden Park,Blvd,4705652,2.312,2.482,0,4.091337,8,4.5 +30652,0,0.337914,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.109939,0.15,4 +17376,-1,0.014266,0,3,0,2,5,,3,1,John R,St,1625909,0.396,0.41,0,0.342388,8,4.5 +23316,1,0.127437,2,0,0,2,5,DV2,3,1,Arden Park,Blvd,4705652,2.184,2.312,0,3.058494,8,4.5 +17377,-1,0.146959,0,3,0,2,5,,3,1,John R,St,1625909,0.249,0.396,0,3.527018,8,4.5 +17366,0,0.014428,1,1,0,2,5,,3,1,Brush,St,1625910,0.327,0.342,0,0.346263,8,4.5 +23944,0,0.170529,1,1,0,2,4,,3,1,Oakland,St,4708768,1.322,1.493,0,4.092688,6,4.5 +30280,0,0.100411,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.409854,0.15,4 +30282,0,0.073602,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.766445,0.15,4 +23945,0,0.084074,1,1,0,2,4,,3,1,Oakland,St,4708768,1.238,1.322,0,2.017783,6,4.5 +23946,0,0.010957,1,1,0,2,4,,3,1,Oakland,St,4708768,1.227,1.238,0,0.262975,6,4.5 +22616,-1,0.346876,0,4,0,2,4,DV2,3,2,Oakland,St,4704923,0.239,0.586,0,8.325035,6,4.5 +23942,1,0.280368,4,0,0,2,4,DV2,3,2,Oakland,St,4708768,1.726,2.006,0,6.728841,6,4.5 +12083,0,0.156112,2,2,0,2,5,,3,1,Woodland,St,1577607,0.343,0.499,0,3.746696,8,4.5 +12078,0,0.012251,1,1,0,2,5,,3,1,Woodland,St,1577607,0.499,0.511,0,0.294033,8,4.5 +15399,-1,0.317176,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0.914,1.231,0,7.612227,8,4.5 +13800,0,0.057088,1,1,0,2,4,,3,1,Holbrook,St,1585801,0.714,0.771,0,1.37011,6,4.5 +15401,-1,0.019351,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0.895,0.914,0,0.464412,8,4.5 +17387,1,0.023572,2,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.898,0.922,0,0.565719,8,4.5 +14147,1,0.16903,1,0,0,1,1,ROF,3,2,S I 75/Caniff,RAMP,1585805,0,0.169,0,,2.24,5 +14475,1,0.200353,1,0,0,1,1,RON,3,2,Caniff/N I 75,RAMP,1586109,0,0.2,0,,1.09,4 +19045,0,0.156413,1,1,1,2,4,,3,2,Caniff,St,1632110,0.341,0.497,0,3.753904,6,4.5 +15378,-1,0.050997,0,2,0,2,5,,3,2,Dequindre,St,1591301,1.646,1.697,0,1.223928,8,4.5 +15384,-1,0.083134,0,2,0,2,5,,3,2,Dequindre,St,1591301,1.528,1.612,0,1.995218,8,4.5 +17384,1,0.124834,3,0,0,2,5,,3,2,Nagel,Ave,1625409,1.525,1.65,0,2.996026,8,4.5 +19251,-1,0.085616,0,2,0,2,5,,3,2,Dequindre,St,1805203,0.246,0.332,0,2.054785,8,4.5 +17179,-1,0.053924,0,2,0,2,5,,3,2,Yemans,St,1630904,0,0.054,0,1.294181,8,4.5 +17385,1,0.03729,2,0,0,2,5,,3,2,Chrysler,Dr,1625409,1.488,1.525,0,0.894969,8,4.5 +19252,0,0.057875,1,1,0,2,5,,3,2,Dequindre,St,1805203,0.188,0.246,0,1.389006,8,4.5 +17178,0,0.036503,1,1,0,2,5,,3,2,Yemans,St,1630904,0.054,0.09,0,0.876065,8,4.5 +17383,1,0.028778,2,0,0,2,5,,3,2,Nagel,Ave,1625409,1.65,1.679,0,0.690665,8,4.5 +19035,0,0.058513,1,1,0,2,4,,3,2,Caniff,St,1632110,0.497,0.555,0,1.404307,6,4.5 +15382,-1,0.034021,0,2,0,2,5,,3,2,Dequindre,St,1591301,1.612,1.646,0,0.816504,8,4.5 +11973,0,0.183489,1,1,0,2,4,,2,1,Brush,St,4718307,0.957,1.141,0,4.403729,8,4.5 +12149,1,0.276668,4,0,0,1,1,,2,1,N I 75,,1577706,1.686,1.962,0,,0.32,8.5 +12244,0,0.147895,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.773,1.92,0,3.549486,8,4.5 +12386,-1,0.404744,0,4,0,1,1,,2,1,S I 75,,1577705,1.958,2.363,0,,0.32,8.5 +12875,0,0.010115,2,2,0,2,4,,2,1,Russell,St,1577709,0.786,0.797,0,0.242772,8,4.5 +12897,-1,0.271967,0,4,0,1,1,,2,1,S I 75,,1577705,1.686,1.958,0,,0.32,8.5 +13276,0,0.277984,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,0.179,0.456,0,6.671628,6,4.5 +13359,1,0.310346,4,0,0,1,1,,2,1,N I 75,,1577706,1.962,2.273,0,,0.32,8.5 +13624,-1,0.081987,0,4,0,2,4,,1,1,Adams,Ave,1584401,0.274,0.356,0,1.96769,8,4.5 +13638,1,0.147745,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.474,0.621,0,3.545876,8.5,4.5 +13706,1,0.1231,1,0,0,1,1,RON,2,1,Mack/N I 75,RAMP,1586103,0,0.123,0,,1.09,4 +13936,0,0.163366,1,1,0,2,5,,3,1,Canfield,St,1585701,0.764,0.927,0,3.920781,8,4.5 +14090,0,0.157708,1,1,0,2,5,,2,1,Canfield,St,1585701,0,0.158,0,3.785002,8.5,4.5 +14120,1,0.120312,1,0,0,1,1,ROF,2,1,S I 75/Mack,RAMP,1585610,0,0.12,0,,3.07,5 +14132,1,0.097159,2,0,0,2,3,DIV,3,1,Mack,Ave,1585609,0.767,0.864,0,2.331809,5,5 +14209,0,0.278126,1,1,0,2,5,,3,1,Ferry,St,1585703,0.87,1.148,0,6.675033,8,4.5 +14243,1,0.122247,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.419,0.541,0,2.933929,6,5 +14504,0,0.080441,3,3,1,2,3,,2,1,Woodward,Ave,1591001,5.018,5.098,0,1.930596,6,5 +14948,1,0.24472,4,0,0,1,1,,1,1,N I 75,,1592010,23.777,24.021,0,,0.32,8.5 +15439,-1,0.435463,0,2,0,1,1,RFF,2,1,S I 75,,1591219,0,0.435,0,,0.32,8.5 +15599,-1,0.311708,0,3,0,1,2,,1,1,S I 75/Gratiot,CONN,1595106,23.947,24.259,0,,0.32,8.5 +15959,1,0.097565,2,0,0,2,5,,1,1,Witherell,St,1598410,0.179,0.276,0,2.341564,8.5,4.5 +15969,0,0.079371,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.297,0.377,0,1.904908,8.5,4.5 +16361,-1,0.378607,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.479,0.857,0,9.08657,8.5,4.5 +16928,1,0.442105,3,0,0,2,4,DV2,2,1,Beaubien,St,1608803,0.589,1.031,0,10.610524,8,4.5 +17221,1,0.3248,4,0,0,2,3,DIV,3,1,Warren,Ave,1628604,7.705,8.03,0,7.7952,5,5 +21626,-1,0.200093,0,4,0,2,3,DIV,3,1,Warren,Ave,4700429,1.586,1.786,0,4.802237,5,5 +22088,1,0.077746,2,0,0,2,5,,1,1,Elizabeth,St,4700499,0.309,0.386,0,1.865907,8.5,4.5 +22603,-1,0.44417,0,3,0,2,4,DV2,2,1,Beaubien,St,4704944,0,0.444,0,10.660079,8,4.5 +22856,0,0.323392,1,1,0,2,5,,3,1,Russell,St,4705681,0,0.323,0,7.761412,8,4.5 +23093,1,0.222063,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.776,0.998,0,5.329521,8.5,4.5 +23248,0,0.040721,1,1,1,2,4,,1,1,John R,St,4705731,0.055,0.096,0,0.977297,8,4.5 +23401,0,0.080854,2,2,0,2,4,,2,1,John R,St,4705731,0.982,1.063,0,1.940493,8,4.5 +23437,1,0.171894,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.604,0.776,0,4.125455,8.5,4.5 +23823,-1,0.078716,0,2,0,2,3,DIV,2,1,Mack,Ave,4707551,0.908,0.987,0,1.889193,6,5 +23826,-1,0.122245,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.639,0.761,0,2.93389,6,5 +23891,-1,0.106671,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.834,0.941,0,2.560107,8.5,4.5 +30580,0,0.291803,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,7.00328,0.15,4 +30583,0,0.161307,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.871376,0.15,4 +30585,0,0.277212,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,6.653094,0.15,4 +30831,0,0.244975,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.879396,0.15,4 +33208,0,0.302654,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.263693,0.15,4 +33287,0,0.341458,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,8.194993,0.15,4 +33831,0,0.426974,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.24737,0.15,4 +33859,0,0.377205,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,9.052916,0.15,4 +12208,0,0.124185,2,2,0,2,3,,2,1,Martin Luther King Jr,Blvd,1581907,1.946,2.071,0,2.980448,6,5 +12280,0,0.18923,1,1,0,2,4,,2,1,Cass,Ave,1577605,1.026,1.215,0,4.541529,8,4.5 +12876,0,0.138525,1,1,0,2,4,,2,1,3rd,St,4708767,0.386,0.525,0,3.324608,8,4.5 +13014,1,0.193574,3,0,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,1581907,2.196,2.389,0,4.645774,6,5 +13300,0,0.090534,1,1,0,2,4,,2,1,Cass,Ave,1577605,1.215,1.306,0,2.172827,8,4.5 +13644,1,0.03552,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.084,0.12,0,0.852489,8.5,4.5 +14497,0,0.127205,2,2,1,2,3,,2,1,Woodward,Ave,1591001,5.581,5.708,0,3.052916,6,5 +14501,0,0.156439,3,3,1,2,3,,2,1,Woodward,Ave,1591001,5.182,5.339,0,3.754545,6,5 +15126,-1,0.232281,0,4,0,1,1,,1,1,S I 75,,1595106,23.398,23.63,0,,0.32,8.5 +15977,0,0.081677,2,2,1,2,5,,2,1,Temple,St,1598402,0.408,0.489,0,1.960245,8.5,4.5 +15983,0,0.119385,1,1,0,2,5,,2,1,Alexandrine,St,1598301,0.417,0.536,0,2.86525,8.5,4.5 +22654,0,0.078492,1,1,0,2,4,,2,1,John R,St,4705731,0.293,0.372,0,1.883802,8,4.5 +22945,0,0.07817,1,1,0,2,5,,2,1,Ledyard,St,4705718,0,0.078,0,1.87607,8.5,4.5 +23831,-1,0.193674,0,3,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,4707551,0.026,0.22,0,4.648177,6,5 +23897,-1,0.027218,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.262,0.29,0,0.653238,8.5,4.5 +30353,0,0.126517,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.036415,0.15,4 +30354,0,0.157966,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.791175,0.15,4 +30581,0,0.136544,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.277051,0.15,4 +30835,0,0.072972,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.751333,0.15,4 +30837,0,0.189138,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.539307,0.15,4 +30851,0,0.141036,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.384857,0.15,4 +33671,0,0.194331,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.663952,0.15,4 +12371,0,0.065097,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.797,11.862,0,1.562334,6,5 +12887,0,0.101369,1,1,0,2,4,,2,1,3rd,St,4708767,0,0.101,0,2.432852,8,4.5 +15980,0,0.080541,3,3,0,2,5,,2,1,Temple,St,1598402,0.24,0.321,0,1.932972,8.5,4.5 +15981,1,0.154564,3,0,0,2,5,DV2,2,1,Temple,St,1598402,0.086,0.24,0,3.709527,8.5,4.5 +16080,-1,0.101596,0,2,0,2,5,,2,1,2nd,Ave,1607903,0,0.102,0,2.438296,8.5,4.5 +16952,1,0.101392,2,0,0,2,5,,2,1,2nd,Ave,1607904,0,0.101,0,2.433419,8.5,4.5 +23890,-1,0.155617,0,3,0,2,5,DV2,2,1,Temple,St,4707212,0,0.156,0,3.734806,8.5,4.5 +30267,0,0.148893,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.573439,0.15,4 +30352,0,0.034955,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.83892,0.15,4 +32505,0,0.161255,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.870119,0.15,4 +33870,0,0.226941,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.446581,0.15,4 +12373,0,0.159111,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.638,11.797,0,3.818657,6,5 +14105,1,0.198171,1,0,0,1,1,RFS,2,1,S I 75/N M 10,RAMP,1585403,0.145,0.343,0,,0.22,6 +16645,1,0.200875,2,0,0,2,5,,2,1,S M 10 Service Drive,,1608405,0.027,0.228,0,4.821002,8.5,4.5 +15573,1,0.088562,1,0,0,1,1,RFF,2,1,S M 10/S I 75 CD,RAMP,1591108,0,0.089,0,,0.32,8.5 +12230,-1,0.031272,0,3,0,2,5,,2,1,N M 10 Service Drive,,1584210,1.32,1.352,0,0.750524,8.5,4.5 +12377,0,0.027355,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.581,11.608,0,0.656516,6,5 +12507,-1,0.023547,0,3,0,2,5,,2,1,N M 10 Service Drive,,1584210,1.297,1.32,0,0.565128,8.5,4.5 +16173,1,0.032097,1,0,0,2,5,,2,1,Temple,St,1608504,0.796,0.828,0,0.770329,8.5,4.5 +16266,1,0.026785,2,0,0,2,5,,2,1,S M 10 Service Drive,,1608405,0,0.027,0,0.642848,8.5,4.5 +12376,0,0.029354,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.608,11.638,0,0.704505,6,5 +12880,0,0.095218,1,1,0,2,4,,2,1,3rd,St,4708767,0.291,0.386,0,2.285228,8,4.5 +12882,0,0.189757,1,1,0,2,4,,2,1,3rd,St,4708767,0.101,0.291,0,4.55418,8,4.5 +12367,0,0.056842,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.907,11.964,0,1.36421,6,5 +12741,-1,0.045544,0,2,0,2,4,,2,1,3rd,St,1581602,0.764,0.809,0,1.093047,8,4.5 +37635,-1,0.040499,0,1,0,2,4,,5,3,Coats,Rd,4415708,0.025,0.065,0,0.97197,3,4 +23660,0,0.043543,1,1,0,2,5,,2,1,Ledyard,St,4705718,0.122,0.165,0,1.045024,8.5,4.5 +23899,-1,0.059808,0,1,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.172,0.232,0,1.435394,8.5,4.5 +30269,0,0.206036,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.944866,0.15,4 +12368,0,0.045375,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.862,11.907,0,1.088991,6,5 +37634,1,0.038608,2,0,0,2,4,,5,3,Baldwin,Rd,4415710,0.024,0.062,0,0.926593,3,4 +23324,0,0.08072,1,1,0,2,5,,2,1,Ledyard,St,4705718,0.165,0.246,0,1.93729,8.5,4.5 +12362,0,0.063096,2,2,0,2,3,,1,1,Grand River,Ave,1577408,11.964,12.027,0,1.514298,6,5 +23898,-1,0.030546,0,2,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.232,0.262,0,0.733115,8.5,4.5 +22655,0,0.043441,1,1,0,2,5,,2,1,Ledyard,St,4705718,0.078,0.122,0,1.042577,8.5,4.5 +15978,0,0.043581,2,2,1,2,5,,2,1,Temple,St,1598402,0.364,0.408,0,1.045955,8.5,4.5 +15979,0,0.043656,3,3,0,2,5,,2,1,Temple,St,1598402,0.321,0.364,0,1.047733,8.5,4.5 +11955,0,0.099113,2,2,0,2,3,,2,1,Martin Luther King Jr,Blvd,1581907,2.071,2.17,0,2.378718,6,5 +12248,0,0.097837,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.5,1.597,0,2.348088,8,4.5 +15984,0,0.168224,1,1,0,2,5,,2,1,Alexandrine,St,1598301,0.249,0.417,0,4.037377,8.5,4.5 +17121,0,0.124981,2,2,0,2,5,,2,1,Selden,St,1607907,0.253,0.378,0,2.999541,8.5,4.5 +30849,0,0.168522,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.044532,0.15,4 +33868,0,0.176683,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.240392,0.15,4 +12873,0,0.051996,1,1,0,2,4,,2,1,3rd,St,4708767,0.525,0.577,0,1.247894,8,4.5 +16246,0,0.1241,2,2,0,2,5,,2,1,Selden,St,1607907,0.129,0.253,0,2.978404,8.5,4.5 +12246,0,0.160581,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.597,1.758,0,3.853948,8,4.5 +22499,0,0.12519,1,1,0,2,5,,2,1,Canfield,St,4705666,0,0.125,0,3.004567,8.5,4.5 +12245,0,0.014737,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.758,1.773,0,0.353692,8,4.5 +12249,0,0.185373,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.314,1.5,0,4.448964,8,4.5 +12257,0,0.00869,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.306,1.314,0,0.208568,8,4.5 +13323,1,0.026063,3,0,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,1581907,2.17,2.196,0,0.625509,6,5 +23832,-1,0.026231,0,3,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,4707551,0,0.026,0,0.629553,6,5 +14502,0,0.084175,3,3,1,2,3,,2,1,Woodward,Ave,1591001,5.098,5.182,0,2.02019,6,5 +33869,0,0.128319,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.079652,0.15,4 +12363,0,0.144697,1,1,1,2,4,,2,1,Cass,Ave,1577605,0.779,0.924,0,3.47273,8,4.5 +13640,1,0.047912,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.319,0.367,0,1.149876,8.5,4.5 +14494,0,0.103156,2,2,1,2,3,,2,1,Woodward,Ave,1591001,5.883,5.986,0,2.47575,6,5 +14495,0,0.140565,2,2,1,2,3,,2,1,Woodward,Ave,1591001,5.742,5.883,0,3.373563,6,5 +14774,-1,0.316666,0,4,0,1,1,,1,1,S I 75,,1595106,23.63,23.947,0,,0.32,8.5 +15972,0,0.079348,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.043,0.122,0,1.904349,8.5,4.5 +22112,1,0.127767,1,0,0,1,1,RON,1,1,Clifford/N I 75,RAMP,4700017,0,0.128,0,,1.09,4 +23892,-1,0.145505,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.688,0.834,0,3.492116,8.5,4.5 +23893,-1,0.108915,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.58,0.688,0,2.613964,8.5,4.5 +33141,0,0.07483,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.795908,0.15,4 +33144,0,0.08656,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.077434,0.15,4 +33673,0,0.173803,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.171265,0.15,4 +12365,0,0.042723,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.736,0.779,0,1.025361,8,4.5 +13641,1,0.031698,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.288,0.319,0,0.760748,8.5,4.5 +13643,1,0.019903,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.12,0.14,0,0.477672,8.5,4.5 +16563,0,0.123976,1,1,0,2,5,,1,1,Columbia,St,1609808,0,0.124,0,2.975429,8.5,4.5 +23895,-1,0.031562,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.468,0.5,0,0.757496,8.5,4.5 +23896,-1,0.135041,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.333,0.468,0,3.240973,8.5,4.5 +15110,1,0.107497,1,0,0,1,1,ROF,1,1,S I 75/Grand River,RAMP,1595307,0,0.108,0,,3.07,5 +13632,1,0.032545,3,0,0,2,5,,1,1,2nd,St,4718974,0.076,0.109,0,0.781078,8.5,4.5 +13633,1,0.029142,3,0,0,2,5,,1,1,2nd,St,4718974,0.047,0.076,0,0.699407,8.5,4.5 +12375,0,0.021265,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.668,0.689,0,0.510371,8,4.5 +15973,0,0.04284,1,1,0,2,5,,1,1,Montcalm,St,1598408,0,0.043,0,1.028171,8.5,4.5 +33142,0,0.071153,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.707678,0.15,4 +12378,0,0.027205,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.64,0.668,0,0.652919,8,4.5 +12369,0,0.047568,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.689,0.736,0,1.141627,8,4.5 +13642,1,0.036653,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.251,0.288,0,0.879667,8.5,4.5 +23894,-1,0.080054,0,2,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.5,0.58,0,1.921305,8.5,4.5 +15975,0,0.12438,1,1,0,2,5,,2,1,Temple,St,1598402,0.568,0.693,0,2.985113,8.5,4.5 +15976,0,0.078727,1,1,0,2,5,,2,1,Temple,St,1598402,0.489,0.568,0,1.889443,8.5,4.5 +12287,0,0.034227,1,1,0,2,4,,2,1,Cass,Ave,1577605,0.992,1.026,0,0.821449,8,4.5 +12346,0,0.067875,1,1,1,2,4,,2,1,Cass,Ave,1577605,0.924,0.992,0,1.628992,8,4.5 +30838,0,0.025721,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.617303,0.15,4 +14496,0,0.034504,2,2,1,2,3,,2,1,Woodward,Ave,1591001,5.708,5.742,0,0.828101,6,5 +14491,0,0.09792,2,2,1,2,3,,1,1,Woodward,Ave,1591001,6.08,6.178,0,2.350092,6,5 +14492,0,0.0542,2,2,1,2,3,,1,1,Woodward,Ave,1591001,6.026,6.08,0,1.3008,6,5 +15971,0,0.103298,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.122,0.225,0,2.479146,8.5,4.5 +21091,0,0.09719,1,1,0,2,5,,1,1,Elizabeth,St,4700499,0.212,0.309,0,2.33255,8.5,4.5 +21379,0,0.079576,1,1,0,2,5,,1,1,Elizabeth,St,4700499,0.132,0.212,0,1.90983,8.5,4.5 +13639,1,0.106652,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.367,0.474,0,2.559644,8.5,4.5 +14493,0,0.039964,2,2,1,2,3,,1,1,Woodward,Ave,1591001,5.986,6.026,0,0.95914,6,5 +13625,-1,0.090087,0,4,0,2,4,,1,1,Adams,Ave,1584401,0.184,0.274,0,2.162089,8,4.5 +14490,0,0.052619,2,2,1,2,3,,1,1,Woodward,Ave,1591001,6.178,6.23,0,1.262854,6,5 +15970,0,0.071891,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.225,0.297,0,1.725377,8.5,4.5 +22944,0,0.197659,1,1,0,2,4,,2,1,John R,St,4705731,0.096,0.293,0,4.743809,8,4.5 +11918,0,0.311727,1,1,0,2,4,,2,1,Brush,St,4718307,1.141,1.452,0,7.481437,8,4.5 +14308,1,0.133196,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.12,0.253,0,3.196696,6,5 +14500,0,0.078924,3,3,1,2,3,,2,1,Woodward,Ave,1591001,5.339,5.418,0,1.894183,6,5 +22735,0,0.050736,2,2,0,2,4,,2,1,John R,St,4705731,0.663,0.714,0,1.217655,8,4.5 +23656,0,0.144136,1,1,0,2,4,,2,1,John R,St,4705731,0.372,0.516,0,3.459269,8,4.5 +23829,-1,0.130221,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.339,0.469,0,3.125307,6,5 +30832,0,0.21546,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.171041,0.15,4 +33858,0,0.26573,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,6.377524,0.15,4 +33871,0,0.180341,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.328187,0.15,4 +14331,1,0.120022,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0,0.12,0,2.880526,6,5 +14498,0,0.151967,2,2,1,2,3,,2,1,Woodward,Ave,1591001,5.429,5.581,0,3.647206,6,5 +23830,-1,0.119099,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.22,0.339,0,2.858376,6,5 +14499,0,0.01088,3,3,1,2,3,,2,1,Woodward,Ave,1591001,5.418,5.429,0,0.261115,6,5 +23322,0,0.13643,1,1,0,2,4,,2,1,John R,St,4705731,0.516,0.652,0,3.274326,8,4.5 +23004,0,0.010914,2,2,0,2,4,,2,1,John R,St,4705731,0.652,0.663,0,0.261946,8,4.5 +22289,0,0.183503,2,2,0,2,4,,2,1,John R,St,4705731,0.714,0.897,0,4.404078,8,4.5 +30836,0,0.126725,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.041391,0.15,4 +23411,0,0.084735,2,2,0,2,4,,2,1,John R,St,4705731,0.897,0.982,0,2.03364,8,4.5 +30833,0,0.127079,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.049906,0.15,4 +30834,0,0.007129,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.171105,0.15,4 +14299,1,0.069679,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.253,0.323,0,1.6723,6,5 +23828,-1,0.074123,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.469,0.543,0,1.778945,6,5 +11916,0,0.011263,1,1,1,2,4,,2,1,Brush,St,4718307,1.452,1.464,0,0.270319,8,4.5 +14255,1,0.096132,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.323,0.419,0,2.307158,6,5 +23827,-1,0.095876,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.543,0.639,0,2.301027,6,5 +16055,0,0.008122,2,2,0,2,4,,2,1,Saint Antoine,St,1608803,0.581,0.589,0,0.194917,8,4.5 +11413,1,0.147651,3,0,0,1,1,,2,1,E I 94,,1576405,28.492,28.639,0,,0.32,8.5 +11894,1,0.256105,1,0,0,1,1,RFS,2,1,N I 75/W I 94,RAMP,1577704,0,0.256,0,,0.22,6 +11928,-1,0.210659,0,4,0,1,1,,2,1,S I 75,,1577705,2.363,2.573,0,,0.32,8.5 +13355,1,0.299985,4,0,0,1,1,,2,1,N I 75,,1577706,2.273,2.573,0,,0.32,8.5 +13696,0,0.120325,1,1,0,2,5,,2,1,Ferry,St,1585703,0.426,0.547,0,2.887808,8.5,4.5 +14077,0,0.132644,1,1,0,2,5,,2,1,Canfield,St,1585701,0.282,0.414,0,3.18346,8.5,4.5 +14109,-1,0.216929,0,3,0,1,1,,2,1,W I 94,,1588802,28.341,28.558,0,,0.32,8.5 +14324,1,0.188664,1,0,0,1,1,ROF,2,1,W I 94/Beaubien,RAMP,1585410,0,0.189,0,,3.07,5 +14374,1,0.236343,2,0,0,1,1,RFS,2,1,E I 94/S I 75,RAMP,1585407,0.06,0.297,0,,0.22,6 +16601,0,0.06977,1,1,0,2,5,,2,1,Saint Antoine,St,1608803,1.526,1.596,0,1.674479,8.5,4.5 +16804,-1,0.197722,0,1,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.499,1.697,0,4.745321,8.5,4.5 +16816,-1,0.016147,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.193,1.209,0,0.387525,8.5,4.5 +16894,0,0.119056,1,1,0,2,5,,2,1,Saint Antoine,St,1608803,1.407,1.526,0,2.857336,8.5,4.5 +17223,1,0.060996,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,7.478,7.539,0,1.463894,6,5 +17226,1,0.152545,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,7.191,7.344,0,3.661081,6,5 +21369,-1,0.152042,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,1.071,1.223,0,3.64902,6,5 +21946,-1,0.063195,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,1.358,1.421,0,1.51669,6,5 +22532,1,0.100399,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,1.22,1.321,0,2.409574,8.5,4.5 +22818,1,0.241074,3,0,0,2,5,,2,1,Brush,St,4705554,0,0.241,0,5.785773,8.5,4.5 +23149,-1,0.242104,0,3,0,2,4,,2,1,John R,St,4705731,1.383,1.625,0,5.810493,8,4.5 +23185,1,0.164055,4,0,0,2,4,,2,1,Brush,St,4705554,0.328,0.492,0,3.937324,8,4.5 +30840,0,0.090577,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.173851,0.15,4 +33263,0,0.122377,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.937046,0.15,4 +33304,0,0.1399,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.357589,0.15,4 +33832,0,0.115115,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.76277,0.15,4 +13460,1,0.131047,4,0,0,2,4,,2,1,Forest,Ave,1584908,1.266,1.397,0,3.145131,8,4.5 +14505,0,0.161047,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.857,5.018,0,3.865133,6,5 +14507,0,0.075468,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.701,4.777,0,1.811239,6,5 +17228,1,0.125766,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.929,7.055,0,3.018384,6,5 +17229,1,0.133837,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.795,6.929,0,3.212099,6,5 +21625,-1,0.124391,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.809,0.934,0,2.985382,6,5 +21812,-1,0.133837,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.675,0.809,0,3.212096,6,5 +22504,0,0.147588,2,2,0,2,4,,2,1,John R,St,4705731,1.223,1.37,0,3.542117,8,4.5 +30842,0,0.096924,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.326165,0.15,4 +30848,0,0.106143,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.547439,0.15,4 +12243,0,0.080793,1,1,0,2,4,,2,1,Cass,Ave,1577605,1.92,2.001,0,1.939027,8,4.5 +13463,1,0.140285,4,0,0,2,3,,2,1,Forest,Ave,1584908,1.126,1.266,0,3.366844,6,5 +30596,0,0.129575,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.109798,0.15,4 +30657,0,0.090725,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.177389,0.15,4 +12242,0,0.0822,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.001,2.083,0,1.972795,8,4.5 +30655,0,0.072553,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.741277,0.15,4 +30656,0,0.010923,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.262146,0.15,4 +12241,0,0.012531,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.083,2.096,0,0.300737,8,4.5 +14506,0,0.080231,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.777,4.857,0,1.925535,6,5 +14509,0,0.074959,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.613,4.688,0,1.79901,6,5 +14510,0,0.143695,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.47,4.613,0,3.448679,6,5 +14508,0,0.012952,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.688,4.701,0,0.310846,6,5 +14082,0,0.123885,1,1,0,2,5,,2,1,Canfield,St,1585701,0.158,0.282,0,2.973244,8.5,4.5 +22789,0,0.081633,2,2,0,2,4,,2,1,John R,St,4705731,1.141,1.223,0,1.959185,8,4.5 +30843,0,0.1059,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.541606,0.15,4 +33264,0,0.067447,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.618722,0.15,4 +23065,0,0.078436,2,2,0,2,4,,2,1,John R,St,4705731,1.063,1.141,0,1.882472,8,4.5 +17227,1,0.136723,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,7.055,7.191,0,3.281341,6,5 +21538,-1,0.137474,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.934,1.071,0,3.299367,6,5 +23525,1,0.012829,4,0,0,2,4,,2,1,Brush,St,4705554,0.315,0.328,0,0.307886,8,4.5 +23492,0,0.012261,2,2,0,2,4,,2,1,John R,St,4705731,1.37,1.383,0,0.294259,8,4.5 +22535,1,0.074087,3,0,0,2,5,,2,1,Brush,St,4705554,0.241,0.315,0,1.778097,8.5,4.5 +13705,0,0.137189,1,1,0,2,5,,2,1,Ferry,St,1585703,0.125,0.262,0,3.292536,8.5,4.5 +14351,-1,0.094705,0,1,0,2,5,,2,1,Hendrie,St,1585408,0.331,0.426,0,2.272911,8.5,4.5 +15988,-1,0.095306,0,2,0,2,5,,2,1,Medbury,St,1598202,0.333,0.428,0,2.287336,8.5,4.5 +16890,1,0.160406,2,0,0,2,5,,2,1,Saint Antoine,St,1608803,1.676,1.836,0,3.849753,8.5,4.5 +22855,1,0.189208,4,0,0,2,4,,2,1,Brush,St,4705554,0.643,0.832,0,4.541001,8,4.5 +23927,1,0.063038,2,0,0,2,5,,2,1,E I 94 Service Drive,,4706937,0.209,0.272,0,1.512922,8.5,4.5 +23929,1,0.13867,2,0,0,2,5,,2,1,E I 94 Service Drive,,4706937,0,0.139,0,3.328082,8.5,4.5 +33266,0,0.155193,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.72463,0.15,4 +22570,-1,0.18111,0,3,0,2,4,,2,1,John R,St,4705731,1.705,1.886,0,4.346635,8,4.5 +22861,-1,0.080024,0,3,0,2,4,,2,1,John R,St,4705731,1.625,1.705,0,1.920586,8,4.5 +33265,0,0.02452,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.58847,0.15,4 +22936,0,0.159422,1,1,0,2,5,,3,1,Beaubien,St,4705574,0.391,0.551,0,3.82614,8,4.5 +23569,1,0.078508,3,0,0,2,4,,3,1,Brush,St,4705554,0.882,0.961,0,1.884182,6,4.5 +14127,0,0.068793,1,1,0,2,5,,3,1,Piquette,St,1585704,0.268,0.337,0,1.651037,8,4.5 +23222,1,0.081826,3,0,0,2,4,,3,1,Brush,St,4705554,0.961,1.042,0,1.963816,6,4.5 +15989,-1,0.069428,0,2,0,2,5,,2,1,Medbury,St,1598202,0.264,0.333,0,1.666261,8.5,4.5 +22566,1,0.050471,3,0,0,2,4,,2,1,Brush,St,4705554,0.832,0.882,0,1.211296,8,4.5 +23239,0,0.046512,1,1,0,2,5,,2,1,Beaubien,St,4705574,0.345,0.391,0,1.116286,8.5,4.5 +23928,1,0.06992,2,0,0,2,5,,2,1,E I 94 Service Drive,,4706937,0.139,0.209,0,1.678082,8.5,4.5 +23577,0,0.034292,1,1,0,2,5,,2,1,Beaubien,St,4705574,0.31,0.345,0,0.823008,8.5,4.5 +13700,0,0.164209,1,1,0,2,5,,2,1,Ferry,St,1585703,0.262,0.426,0,3.941008,8.5,4.5 +23141,1,0.150669,4,0,0,2,4,,2,1,Brush,St,4705554,0.492,0.643,0,3.616045,8,4.5 +33661,0,0.211109,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.066619,0.15,4 +16368,1,0.080234,2,0,0,2,5,,2,1,Saint Antoine,St,1608803,1.596,1.676,0,1.925614,8.5,4.5 +30841,0,0.03939,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.945367,0.15,4 +10701,1,0.122603,3,0,0,1,1,,2,1,E I 94,,1576405,28.369,28.492,0,,0.32,8.5 +22785,1,0.098728,1,0,0,1,1,RFF,2,1,S I 75/W I 94,RAMP,4705662,0.471,0.57,0,,0.32,8.5 +22914,1,0.113746,1,0,0,1,1,RON,2,1,Beaubien/E I 94,RAMP,4705575,0,0.114,0,,1.09,4 +14381,1,0.060267,2,0,0,1,1,RFF,2,1,E I 94/S I 75,RAMP,1585407,0,0.06,0,,0.32,8.5 +23926,1,0.034717,1,0,0,2,5,,2,1,E I 94 Service Drive,,4706937,0.272,0.306,0,0.833201,8.5,4.5 +16598,1,0.013389,2,0,0,2,5,,2,1,Saint Antoine,St,1608803,1.836,1.85,0,0.321342,8.5,4.5 +23925,1,0.023745,1,0,0,2,5,,2,1,S I 75 Service Drive,,4706937,0.306,0.33,0,0.56987,8.5,4.5 +13999,0,0.06431,1,1,0,2,5,,2,1,Canfield,St,1585701,0.699,0.764,0,1.543431,8.5,4.5 +14065,0,0.152585,1,1,0,2,5,,2,1,Canfield,St,1585701,0.414,0.567,0,3.66204,8.5,4.5 +16575,-1,0.034328,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.146,1.18,0,0.823866,8.5,4.5 +16627,1,0.242748,3,0,0,2,4,DV2,2,1,Saint Antoine,St,1608803,1.031,1.273,0,5.825941,8,4.5 +16858,-1,0.288578,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.857,1.146,0,6.925875,8.5,4.5 +22568,-1,0.242736,0,3,0,2,4,DV2,2,1,Saint Antoine,St,4704944,0.444,0.687,0,5.825673,8,4.5 +30846,0,0.143375,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.441006,0.15,4 +30847,0,0.143283,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.438782,0.15,4 +30850,0,0.143511,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.444265,0.15,4 +16046,1,0.080259,3,0,0,2,4,DV2,2,1,Saint Antoine,St,1608803,1.273,1.354,0,1.926217,8,4.5 +17224,1,0.124019,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,7.354,7.478,0,2.976449,6,5 +22080,-1,0.124043,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,1.234,1.358,0,2.977035,6,5 +22549,-1,0.080305,0,3,0,2,4,DV2,2,1,Saint Antoine,St,4704944,0.687,0.767,0,1.927315,8,4.5 +30845,0,0.087967,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.111206,0.15,4 +33895,0,0.097052,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.329248,0.15,4 +16925,1,0.012135,2,0,0,2,4,DV2,2,1,Saint Antoine,St,1608803,1.354,1.366,0,0.291251,8,4.5 +22547,-1,0.012393,0,2,0,2,4,DV2,2,1,Saint Antoine,St,4704944,0.767,0.779,0,0.297428,8,4.5 +30844,0,0.082391,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.977379,0.15,4 +17225,1,0.01008,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,7.344,7.354,0,0.24192,6,5 +16623,1,0.041245,2,0,0,2,5,DV2,2,1,Saint Antoine,St,1608803,1.366,1.407,0,0.989884,8.5,4.5 +22546,-1,0.039283,0,2,0,2,5,DV2,2,1,Saint Antoine,St,4704944,0.779,0.819,0,0.942781,8.5,4.5 +21273,-1,0.010589,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,1.223,1.234,0,0.254141,6,5 +16345,-1,0.012744,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.18,1.193,0,0.305856,8.5,4.5 +14012,0,0.121792,1,1,0,2,5,,2,1,Canfield,St,1585701,0.578,0.699,0,2.923002,8.5,4.5 +30307,0,0.094955,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.278914,0.15,4 +30830,0,0.091944,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.206662,0.15,4 +14027,0,0.01083,1,1,0,2,5,,2,1,Canfield,St,1585701,0.567,0.578,0,0.25992,8.5,4.5 +13470,1,0.187695,1,0,0,1,1,ROF,2,1,N I 75/Warren,RAMP,1586104,0,0.188,0,,3.07,5 +13750,-1,0.146509,0,1,0,1,1,RON,2,1,Warren/S I 75,RAMP,1585702,0,0.147,0,,1.09,4 +22815,1,0.222905,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.998,1.22,0,5.34971,8.5,4.5 +12957,1,0.28831,3,0,0,1,1,,2,1,N I 75,,1577706,2.573,2.861,0,,0.32,8.5 +13652,1,0.148684,1,0,0,1,1,RON,2,1,Warren/E I 94,RAMP,1586209,0,0.149,0,,1.09,4 +13673,0,0.101909,1,1,0,2,5,,2,1,Ferry,St,1585703,0.547,0.648,0,2.445827,8.5,4.5 +13865,1,0.234416,1,0,0,1,1,RON,2,1,Warren/N I 75,RAMP,1586105,0,0.234,0,,1.09,4 +14321,0,0.081597,1,1,0,2,5,,3,1,Ferry,St,1585703,0.695,0.776,0,1.95833,8,4.5 +22596,1,0.159751,2,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,1.485,1.645,0,3.834015,8.5,4.5 +22929,0,0.177917,2,2,0,2,4,,3,1,Russell,St,4705681,0.643,0.821,0,4.27,6,4.5 +23223,0,0.150065,1,1,0,2,4,,3,1,Russell,St,4705681,0.493,0.643,0,3.601555,6,4.5 +23512,1,0.299861,1,0,0,1,1,RFF,2,1,N I 75/E I 94,RAMP,4705723,0,0.3,0,,0.32,8.5 +30593,0,0.204127,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.899059,0.15,4 +30594,0,0.129198,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.100741,0.15,4 +30595,0,0.136558,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.277395,0.15,4 +12464,-1,0.263637,0,3,0,1,1,,2,1,S I 75,,1577705,2.573,2.837,0,,0.32,8.5 +14310,1,0.272938,1,0,0,1,1,ROF,2,1,S I 75/Warren,RAMP,1585501,0,0.273,0,,3.07,5 +14365,1,0.288116,1,0,0,1,1,RFF,2,1,E I 94/S I 75,RAMP,1585407,0.297,0.585,0,,0.32,8.5 +16539,-1,0.210238,0,1,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.209,1.419,0,5.045719,8.5,4.5 +16309,-1,0.08017,0,1,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.419,1.499,0,1.924087,8.5,4.5 +23167,1,0.139873,1,0,0,1,1,RFF,2,1,N I 75/E I 94,RAMP,4705723,0.3,0.44,0,,0.32,8.5 +13660,0,0.046314,1,1,0,2,5,,3,1,Ferry,St,1585703,0.648,0.695,0,1.111526,8,4.5 +17222,1,0.166589,3,0,0,2,3,DIV,3,1,Warren,Ave,1628604,7.539,7.705,0,3.998142,5,5 +21752,-1,0.165455,0,3,0,2,3,DIV,3,1,Warren,Ave,4700429,1.421,1.586,0,3.970917,5,5 +22889,1,0.096166,4,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,1.389,1.485,0,2.307982,8.5,4.5 +23570,0,0.15424,1,1,0,2,4,,3,1,Russell,St,4705681,0.339,0.493,0,3.70176,6,4.5 +23182,1,0.054794,4,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,1.334,1.389,0,1.315056,8.5,4.5 +23522,1,0.013172,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,1.321,1.334,0,0.316134,8.5,4.5 +22567,0,0.015286,2,2,1,2,4,,3,1,Russell,St,4705681,0.323,0.339,0,0.366867,6,4.5 +14337,0,0.093756,1,1,0,2,5,,3,1,Ferry,St,1585703,0.776,0.87,0,2.250135,8,4.5 +30592,0,0.052243,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.253834,0.15,4 +12885,0,0.088961,1,1,0,2,4,,2,1,Russell,St,1577709,0.093,0.182,0,2.135054,8,4.5 +12993,-1,0.167595,0,3,0,1,1,,1,1,S I 375,,1577705,0.859,1.027,0,,0.32,8.5 +13044,-1,0.210688,0,4,0,1,1,,2,1,S I 375,,1577705,1.232,1.443,0,,0.32,8.5 +13278,0,0.148847,1,1,0,2,4,,2,1,Russell,St,1577709,0.377,0.526,0,3.572326,8,4.5 +13362,1,0.139429,3,0,0,1,1,,2,1,N I 375,,1577706,1.175,1.314,0,,0.32,8.5 +13365,1,0.254833,3,0,0,1,1,,1,1,N I 375,,1577706,0.831,1.086,0,,0.32,8.5 +13736,1,0.302141,1,0,0,1,1,RON,1,1,Madison/N I 375,RAMP,1586010,0,0.302,0,,1.09,4 +13855,0,0.050797,1,1,0,2,5,,3,1,Orleans,St,1587405,0,0.051,0,1.219123,8,4.5 +14070,1,0.053869,4,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.227,0.281,0,1.292863,8.5,4.5 +14093,0,0.434825,1,1,0,2,5,,3,1,Antietam,Ave,1587309,0.136,0.571,0,10.435797,8,4.5 +14336,1,0.473681,1,0,0,1,1,RFS,1,1,S I 75/N Connector 8,RAMP,1585606,0,0.474,0,,0.22,6 +14383,1,0.176237,1,0,0,1,1,RFF,2,1,S Connector 8/N I 75,RAMP,1586101,0.128,0.304,0,,0.32,8.5 +14413,1,0.361222,1,0,0,1,1,RFS,2,1,N I 375/S I 75,RAMP,1585605,0,0.361,0,,0.22,6 +14414,1,0.362989,1,0,0,1,1,RFS,2,1,S Connector 8/S I 375,RAMP,1585603,0,0.363,0,,0.22,6 +14451,1,0.329373,2,0,0,1,1,RFS,1,1,N I 75,,1585602,0,0.329,0,,0.22,6 +15067,1,0.10514,2,0,0,1,2,,2,1,N I 75/Gratiot,CONN,1592010,24.458,24.563,0,,0.32,8.5 +15231,1,0.206704,3,0,0,1,2,,2,1,N I 75/Gratiot,CONN,1592010,24.251,24.458,0,,0.32,8.5 +15442,1,0.191287,1,0,0,1,1,RFF,2,1,N I 375/N Connector 8,RAMP,1591208,0.14,0.331,0,,0.32,8.5 +15716,-1,0.360928,0,3,0,1,2,,2,1,S I 75/Gratiot,CONN,1595106,24.259,24.62,0,,0.32,8.5 +17805,0,0.0823,1,1,1,2,5,,2,1,Winder,St,1638104,0.216,0.298,0,1.975203,8.5,4.5 +22030,0,0.178312,1,1,0,2,5,,3,1,Erskine,St,4700425,0,0.178,0,4.279478,8,4.5 +22650,0,0.138503,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,0.85,0.989,0,3.324065,5,5 +22679,0,0.331356,1,1,0,2,5,,2,1,N I 75 Service Drive,,4705748,0,0.331,0,7.952548,8.5,4.5 +22869,0,0.094569,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.43,0.525,0,2.269664,6,5 +23103,1,0.045106,1,0,0,2,5,,1,1,Clinton,St,4705738,0.117,0.162,0,1.082537,8.5,4.5 +23303,-1,0.367885,0,1,0,1,1,ROF,1,1,S I 375/Madison,RAMP,4705734,0,0.368,0,,3.07,5 +30295,0,0.112216,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.693189,0.15,4 +30297,0,0.147341,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.536174,0.15,4 +30340,0,0.028865,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.692758,0.15,4 +30341,0,0.073966,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.775173,0.15,4 +30582,0,0.228924,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.49418,0.15,4 +33110,0,0.350181,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,8.404349,0.15,4 +33226,0,0.067208,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.613003,0.15,4 +11977,0,0.149237,1,1,1,2,4,,1,1,Brush,St,4718307,0.651,0.8,0,3.581694,8,4.5 +11978,0,0.055582,1,1,1,2,4,,1,1,Brush,St,4718307,0.595,0.651,0,1.333979,8,4.5 +14256,0,0.1539,1,1,0,2,5,,1,1,Saint Antoine,St,1587307,0.453,0.607,0,3.693592,8.5,4.5 +14796,1,0.23,3,0,0,1,2,,1,1,N I 75/Gratiot,CONN,1592010,24.021,24.251,0,,0.32,8.5 +15488,0,0.052358,1,1,1,2,4,,1,1,Madison,St,1591207,0.142,0.194,0,1.256581,8,4.5 +15504,1,0.15831,1,0,0,1,2,RON,1,1,Brush/N Connector 8,RAMP,1591206,0,0.158,0,,1.09,4 +15967,0,0.157546,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.476,0.634,0,3.781094,8.5,4.5 +15968,0,0.099467,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.377,0.476,0,2.387219,8.5,4.5 +17807,0,0.147551,1,1,0,2,5,,2,1,Winder,St,1638104,0.068,0.216,0,3.541222,8.5,4.5 +22956,1,0.214332,2,0,0,1,1,RFS,1,1,N I 75/S I 375,RAMP,4705745,0.147,0.361,0,,0.22,6 +23589,0,0.054876,1,1,1,2,5,,1,1,John R,St,4705731,0,0.055,0,1.317016,8.5,4.5 +30306,0,0.15615,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.747591,0.15,4 +30343,0,0.082949,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.990771,0.15,4 +30852,0,0.088346,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.120296,0.15,4 +13622,0,0.06308,2,2,0,2,4,,1,1,Adams,Ave,1584401,0.436,0.499,0,1.513914,8,4.5 +13623,0,0.080175,2,2,0,2,4,,1,1,Adams,Ave,1584401,0.356,0.436,0,1.924194,8,4.5 +15501,-1,0.080348,0,2,0,2,4,,1,1,Madison,St,1591207,0,0.08,0,1.928346,8,4.5 +23225,1,0.079629,2,0,0,2,4,,1,1,Madison,St,4704642,0,0.08,0,1.911105,8,4.5 +24886,0,0.076783,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.842787,0.15,4 +33855,0,0.142946,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.430699,0.15,4 +15961,1,0.029137,3,0,0,2,4,,1,1,Witherell,St,1598410,0.098,0.127,0,0.699282,8,4.5 +15963,1,0.035643,2,0,0,2,4,,1,1,Witherell,St,1598410,0.044,0.08,0,0.855438,8,4.5 +15960,1,0.051409,2,0,0,2,5,,1,1,Witherell,St,1598410,0.127,0.179,0,1.233823,8.5,4.5 +15962,1,0.018325,2,0,0,2,4,,1,1,Witherell,St,1598410,0.08,0.098,0,0.439789,8,4.5 +30303,0,0.04907,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.17768,0.15,4 +12055,-1,0.072979,0,3,0,2,4,,1,1,John R,St,1577608,0.189,0.262,0,1.751502,8,4.5 +15490,-1,0.061679,0,2,0,2,4,,1,1,Madison,St,1591207,0.08,0.142,0,1.480288,8,4.5 +23224,1,0.068006,2,0,0,2,4,,1,1,Madison,St,4704642,0.08,0.148,0,1.632148,8,4.5 +30344,0,0.049212,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.181083,0.15,4 +30345,0,0.046561,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.11746,0.15,4 +12064,-1,0.039008,0,3,0,2,4,,1,1,John R,St,1577608,0.131,0.17,0,0.936195,8,4.5 +12063,-1,0.018705,0,3,0,2,4,,1,1,John R,St,1577608,0.17,0.189,0,0.448917,8,4.5 +15954,0,0.014626,1,1,0,2,4,,1,1,Randolph,St,1598501,0.243,0.257,0,0.351014,8,4.5 +13621,0,0.025779,2,2,0,2,4,,1,1,Adams,Ave,1584401,0.499,0.525,0,0.618697,8,4.5 +11974,0,0.056343,1,1,0,2,4,,2,1,Brush,St,4718307,0.901,0.957,0,1.352225,8,4.5 +11975,0,0.046533,1,1,1,2,4,,1,1,Brush,St,4718307,0.855,0.901,0,1.116801,8,4.5 +13637,1,0.103451,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.621,0.725,0,2.482814,8.5,4.5 +17811,0,0.068037,1,1,0,2,5,,2,1,Winder,St,1638104,0,0.068,0,1.632877,8.5,4.5 +23263,1,0.14673,2,0,0,1,1,RFF,1,1,N I 75,,4705745,0,0.147,0,,0.32,8.5 +11976,0,0.054371,1,1,1,2,4,,1,1,Brush,St,4718307,0.8,0.855,0,1.304905,8,4.5 +13636,1,0.037831,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.725,0.763,0,0.907949,8.5,4.5 +13651,-1,0.078068,0,2,0,2,5,,1,1,Beaubien,St,1587305,0.645,0.723,0,1.873624,8.5,4.5 +14058,1,0.027892,4,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.332,0.359,0,0.669411,8.5,4.5 +15467,0,0.100386,2,2,0,2,4,,1,1,Madison,St,1591207,0.261,0.362,0,2.409274,8,4.5 +33132,0,0.096618,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.318823,0.15,4 +15480,0,0.066847,1,1,1,2,4,,1,1,Madison,St,1591207,0.194,0.261,0,1.60433,8,4.5 +30304,0,0.08113,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.947116,0.15,4 +11979,0,0.051616,1,1,1,2,4,,1,1,Brush,St,4718307,0.544,0.595,0,1.238784,8,4.5 +33133,0,0.01858,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.445909,0.15,4 +23445,1,0.050155,1,0,0,2,5,,1,1,Clinton,St,4705738,0.067,0.117,0,1.203714,8.5,4.5 +23501,0,0.062142,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.314,0.377,0,1.491409,6,5 +14092,-1,0.044261,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.6,0.645,0,1.062267,8,4.5 +14295,1,0.050392,4,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.281,0.332,0,1.209401,8.5,4.5 +23159,0,0.053606,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.377,0.43,0,1.286536,6,5 +14033,0,0.056803,1,1,0,2,5,,1,1,Saint Antoine,St,1587307,0.396,0.453,0,1.363262,8.5,4.5 +14258,0,0.036703,1,1,0,2,5,,1,1,Saint Antoine,St,1587307,0.359,0.396,0,0.880861,8.5,4.5 +12152,1,0.08869,3,0,0,1,1,,1,1,N I 375,,1577706,1.086,1.175,0,,0.32,8.5 +12681,-1,0.138879,0,3,0,1,1,,1,1,S I 375,,1577705,1.093,1.232,0,,0.32,8.5 +15451,1,0.139863,1,0,0,1,1,RFS,1,1,N I 375/N Connector 8,RAMP,1591208,0,0.14,0,,0.22,6 +13035,-1,0.066882,0,3,0,1,1,,1,1,S I 375,,1577705,1.027,1.093,0,,0.32,8.5 +13113,-1,0.243526,0,4,0,1,1,,2,1,S I 75,,1577705,1.443,1.686,0,,0.32,8.5 +13360,1,0.23734,4,0,0,1,1,,2,1,N I 75,,1577706,1.448,1.686,0,,0.32,8.5 +14183,1,0.084959,2,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.604,0.689,0,2.039018,6,5 +16593,-1,0.2332,0,2,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.191,0.424,0,5.596789,8.5,4.5 +23670,1,0.197752,2,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.331,0.529,0,4.746053,8.5,4.5 +23824,-1,0.084457,0,2,0,2,3,DIV,2,1,Mack,Ave,4707551,0.824,0.908,0,2.026964,6,5 +30301,0,0.400742,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,9.617813,0.15,4 +30302,0,0.143579,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.445903,0.15,4 +33662,0,0.411481,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,9.875535,0.15,4 +14185,1,0.062514,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.541,0.604,0,1.500346,6,5 +14223,1,0.08597,1,0,0,1,1,ROF,2,1,N I 75/Mack,RAMP,1586102,0,0.086,0,,3.07,5 +14334,1,0.103045,1,0,0,1,1,RON,2,1,Mack/S I 75,RAMP,1585608,0,0.103,0,,1.09,4 +16362,-1,0.014797,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.424,0.439,0,0.355131,8.5,4.5 +23825,-1,0.062419,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.761,0.824,0,1.498055,6,5 +16592,-1,0.029307,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.449,0.479,0,0.703357,8.5,4.5 +16883,-1,0.010372,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.439,0.449,0,0.248938,8.5,4.5 +22749,1,0.013544,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.59,0.604,0,0.325064,8.5,4.5 +23026,1,0.010187,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.58,0.59,0,0.244484,8.5,4.5 +23335,1,0.051007,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.529,0.58,0,1.224157,8.5,4.5 +12150,1,0.134312,4,0,0,1,1,,2,1,N I 75,,1577706,1.314,1.448,0,,0.32,8.5 +16885,0,0.098683,1,1,1,2,5,,2,1,S I 75 Service Drive,,1608804,0.092,0.191,0,2.368381,8.5,4.5 +30296,0,0.161586,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.878064,0.15,4 +15438,-1,0.13506,0,2,0,1,1,RFS,2,1,S I 75,,1591219,0.435,0.57,0,,0.22,6 +16366,0,0.092379,1,1,1,2,5,,2,1,S I 75 Service Drive,,1608804,0,0.092,0,2.217087,8.5,4.5 +13277,0,0.175162,2,2,0,2,4,,2,1,Russell,St,1577709,0.611,0.786,0,4.203895,8,4.5 +14179,1,0.078036,2,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.689,0.767,0,1.872869,6,5 +12877,0,0.085703,2,2,0,2,4,,2,1,Russell,St,1577709,0.526,0.611,0,2.056871,8,4.5 +13880,-1,0.061919,0,3,0,2,5,DV2,1,1,Antietam,Ave,1587320,0,0.062,0,1.486056,8.5,4.5 +13955,1,0.065078,2,0,0,2,5,DV2,1,1,Antietam,Ave,1587309,0,0.065,0,1.561865,8.5,4.5 +14290,1,0.134655,1,0,0,1,1,RON,1,1,Monroe/N I 375,RAMP,1586009,0,0.135,0,,1.09,4 +15049,1,0.233755,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.318,0.551,0,5.610123,8.5,4.5 +17330,0,0.229653,1,1,0,2,5,,3,1,Rivard,St,1627905,0.42,0.65,0,5.511672,8,4.5 +22577,0,0.07885,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.525,0.603,0,1.892389,6,5 +24273,1,0.053837,3,0,0,2,5,,1,1,Monroe,St,4711771,0.498,0.551,0,1.292083,8.5,4.5 +33109,0,0.155024,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.720577,0.15,4 +13967,-1,0.054796,0,2,0,2,5,,1,1,S I 375 Service Drive,,5491063,0.051,0.106,0,1.315101,8.5,4.5 +14464,1,0.135964,1,0,0,1,1,ROF,1,1,S I 375/Monroe,RAMP,1585510,0,0.136,0,,3.07,5 +17287,-1,0.113758,0,3,0,2,5,,1,1,Macomb,St,1628108,0.22,0.333,0,2.7302,8.5,4.5 +22824,0,0.118434,1,1,0,2,5,,1,1,Clinton,St,4705738,0.162,0.281,0,2.842418,8.5,4.5 +30342,0,0.10834,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.600172,0.15,4 +14309,1,0.05018,4,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.177,0.227,0,1.204313,8.5,4.5 +14160,-1,0.102446,0,2,0,2,5,,1,1,S I 375 Service Drive,,5491063,0.106,0.208,0,2.458693,8.5,4.5 +13981,-1,0.054121,0,2,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.311,0.365,0,1.298906,8.5,4.5 +39946,1,0.447617,3,0,0,2,5,,3,1,Sunset,Dr,5494520,0,0.447,0,10.742811,8,4.5 +14021,-1,0.055046,0,2,0,2,5,DV2,3,1,Antietam,Ave,1587320,0.062,0.117,0,1.321097,8,4.5 +14128,1,0.059826,2,0,0,2,5,DV2,3,1,Antietam,Ave,1587309,0.065,0.125,0,1.435821,8,4.5 +15031,1,0.011033,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.551,0.562,0,0.264795,8.5,4.5 +17329,0,0.05117,1,1,0,2,5,,3,1,Rivard,St,1627905,0.65,0.701,0,1.228079,8,4.5 +13935,0,0.011455,1,1,0,2,5,,3,1,Antietam,Ave,1587309,0.125,0.136,0,0.27492,8,4.5 +22940,0,0.127321,3,3,0,2,3,,2,1,Gratiot,Ave,4705742,0.723,0.85,0,3.055698,6,5 +23243,0,0.110152,3,3,0,2,3,,2,1,Gratiot,Ave,4705742,0.613,0.723,0,2.643641,6,5 +23583,0,0.00932,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.603,0.613,0,0.223675,6,5 +15052,1,0.006284,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.311,0.318,0,0.150806,8.5,4.5 +17331,0,0.01075,1,1,0,2,5,,3,1,Rivard,St,1627905,0.409,0.42,0,0.258009,8,4.5 +15352,1,0.182422,2,0,0,1,2,,3,1,N I 75/Gratiot,CONN,1592010,24.563,24.745,0,,0.58,7 +15423,-1,0.14055,0,2,0,1,2,,3,1,S I 75/Gratiot,CONN,1595106,24.62,24.76,0,,0.58,7 +17800,-1,0.183509,0,2,0,2,5,,3,1,Napolean,St,1638308,0.085,0.268,0,4.404224,8,4.5 +18397,1,0.115791,1,0,0,2,5,,3,1,I 75/I 375 Service Drive,,1633609,0,0.116,0,2.778995,8,4.5 +23407,0,0.140612,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.106,1.247,0,3.374695,5,5 +23485,0,0.278358,1,1,0,2,5,,3,1,Orleans,St,4705675,0,0.278,0,6.680586,8,4.5 +30513,0,0.175502,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.212044,0.15,4 +12881,0,0.151529,1,1,0,2,4,,2,1,Russell,St,1577709,0.225,0.377,0,3.636704,8,4.5 +14277,1,0.127732,2,0,0,1,1,RFS,2,1,S Connector 8/N I 75,RAMP,1586101,0,0.128,0,,0.22,6 +17803,0,0.084679,1,1,0,2,5,,2,1,Napolean,St,1638308,0,0.085,0,2.03229,8.5,4.5 +13280,0,0.043105,2,2,0,2,4,,2,1,Russell,St,1577709,0.182,0.225,0,1.034511,8,4.5 +23142,0,0.084913,1,1,0,2,5,,3,1,Orleans,St,4705675,0.278,0.363,0,2.037918,8,4.5 +30514,0,0.032285,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.77483,0.15,4 +15758,-1,0.072692,0,2,0,1,2,,3,1,S I 75/Gratiot,CONN,1595106,24.76,24.833,0,,0.58,7 +19271,1,0.059009,1,0,0,1,2,RON,3,1,Orleans/I 75,RAMP,1804007,0,0.059,0,,1.09,4 +23319,0,0.037699,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.061,1.099,0,0.904788,5,5 +23653,0,0.072179,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,0.989,1.061,0,1.732288,5,5 +17798,-1,0.034299,0,2,0,2,5,,3,1,Napolean,St,1638308,0.268,0.302,0,0.823175,8,4.5 +23001,0,0.007566,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.099,1.106,0,0.181573,5,5 +13900,0,0.083789,1,1,0,2,5,,3,1,Antietam,Ave,1587309,0.571,0.655,0,2.010935,8,4.5 +12070,0,0.17859,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,0,0.179,0,4.286149,6,4.5 +23072,0,0.056614,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.247,1.303,0,1.358738,5,5 +12068,0,0.160777,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,0.842,1.002,0,3.858643,6,4.5 +13774,0,0.123823,1,1,0,2,5,,3,1,Chene,St,1587501,2.001,2.125,0,2.971747,8,4.5 +13792,1,0.135665,2,0,0,2,3,DIV,3,1,Mack,Ave,1587509,0,0.136,0,3.25595,5,5 +13848,0,0.114886,1,1,0,2,5,,3,1,Canfield,St,1585701,1.388,1.503,0,2.757254,8,4.5 +13895,0,0.143124,1,1,0,2,5,,3,1,Canfield,St,1585701,1.157,1.3,0,3.434972,8,4.5 +13944,0,0.241027,2,2,0,2,5,,3,1,Chene,St,1587501,2.447,2.687,0,5.784639,8,4.5 +14061,1,0.202709,3,0,0,2,3,,3,1,Forest,Ave,5491069,0.143,0.346,0,4.865005,5,5 +21370,-1,0.202673,0,2,0,2,3,,3,1,Warren,Ave,4700429,1.96,2.162,0,4.864158,5,5 +22402,0,0.127693,2,2,0,2,5,,3,1,Dequindre,St,4701224,0.388,0.515,0,3.064631,8,4.5 +22403,0,0.320071,2,2,0,2,5,,3,1,Dequindre,St,4701224,0.068,0.388,0,7.681714,8,4.5 +23822,-1,0.17303,0,2,0,2,3,DIV,3,1,Mack,Ave,4707551,0.987,1.16,0,4.152711,5,5 +30300,0,0.352343,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.456232,0.15,4 +33237,0,0.348364,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.360739,0.15,4 +13899,0,0.230421,1,1,0,2,5,,3,1,Canfield,St,1585701,0.927,1.157,0,5.530105,8,4.5 +32993,0,0.270498,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.49194,0.15,4 +30299,0,0.040629,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.975088,0.15,4 +13265,0,0.321028,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,1.163,1.484,0,7.70467,6,4.5 +21482,-1,0.173493,0,3,0,2,3,,3,1,Warren,Ave,4700429,1.786,1.96,0,4.163842,5,5 +22400,1,0.168304,2,0,0,2,3,DIV,3,1,Dequindre,St,4701224,0.548,0.717,0,4.039294,5,5 +13270,0,0.161113,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,1.002,1.163,0,3.866709,6,4.5 +14300,1,0.143151,3,0,0,2,3,,3,1,Forest,Ave,5491069,0,0.143,0,3.43562,5,5 +22401,1,0.033107,2,0,0,2,5,DIV,3,1,Dequindre,St,4701224,0.515,0.548,0,0.794575,8,4.5 +24333,-1,0.050541,0,2,0,2,5,DIV,3,1,Dequindre,St,4711782,0,0.051,0,1.212995,8,4.5 +17218,1,0.019758,2,0,0,2,3,DIV,3,1,Dequindre/Forest Cutoff,,1628604,8.03,8.05,0,0.474191,5,5 +13274,0,0.258567,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,0.456,0.715,0,6.205607,6,4.5 +13657,0,0.202971,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.28,0.483,0,4.871314,5,5 +13956,0,0.261383,1,1,0,2,5,,3,1,Chene,St,1587501,1.74,2.001,0,6.273197,8,4.5 +33094,0,0.161636,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.879273,0.15,4 +33236,0,0.183162,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.395883,0.15,4 +13852,0,0.129094,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.151,0.28,0,3.09825,5,5 +22404,1,0.067704,2,0,0,2,5,,3,1,Dequindre,St,4701224,0,0.068,0,1.624897,8,4.5 +23820,-1,0.097048,0,2,0,2,5,,3,1,Dequindre/Mack Cutoff,,4707552,0,0.097,0,2.32916,8,4.5 +23821,-1,0.058693,0,2,0,2,3,DIV,3,1,Mack,Ave,4707551,1.16,1.218,0,1.408636,5,5 +14458,0,0.014955,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.136,0.151,0,0.358909,5,5 +12874,0,0.12668,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,0.715,0.842,0,3.040312,6,4.5 +13851,0,0.087996,1,1,0,2,5,,3,1,Canfield,St,1585701,1.3,1.388,0,2.111912,8,4.5 +33234,0,0.020869,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.500858,0.15,4 +13767,0,0.160819,1,1,0,2,5,,3,1,Chene,St,1587501,2.286,2.447,0,3.859657,8,4.5 +13889,1,0.109863,3,0,0,2,3,,3,1,Forest,Ave,5491069,0.517,0.627,0,2.636716,5,5 +13951,0,0.160781,1,1,0,2,5,,3,1,Chene,St,1587501,2.125,2.286,0,3.858736,8,4.5 +14079,1,0.171672,3,0,0,2,3,,3,1,Forest,Ave,5491069,0.346,0.517,0,4.12013,5,5 +21067,-1,0.281391,0,2,0,2,3,,3,1,Warren,Ave,4700429,2.162,2.444,0,6.753392,5,5 +23232,0,0.160886,2,2,0,2,5,,3,1,McDougall,St,4704611,1.035,1.196,0,3.861262,8,4.5 +11514,1,0.289407,3,0,0,1,1,,3,1,E I 94,,1576405,28.86,29.15,0,,0.58,7 +12062,0,0.09317,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,1.79,1.883,0,2.236078,6,4.5 +12780,0,0.466026,2,2,0,2,3,,3,1,Mount Elliott,St,1577808,2.975,3.441,0,11.184623,5,5 +13079,1,0.224184,2,0,0,2,4,DIV,3,1,Grand,Blvd,1577308,5.284,5.508,0,5.380421,6,4.5 +13262,1,0.023424,1,0,0,2,4,,3,1,Saint Aubin,St,1577801,1.883,1.906,0,0.562166,6,4.5 +13808,0,0.193423,1,1,0,2,4,,2,2,Holbrook,St,1585801,1.767,1.96,0,4.642147,8,4.5 +13998,-1,0.296804,0,3,0,1,1,,3,1,W I 94,,1588802,28.828,29.125,0,,0.58,7 +19556,0,0.252367,2,2,0,2,4,,3,2,Hamtramck,Dr,1857310,0.708,0.96,0,6.056803,6,4.5 +19557,0,0.253798,2,2,0,2,4,,3,2,Hamtramck,Dr,1857310,0.454,0.708,0,6.091149,6,4.5 +22396,-1,0.199018,0,2,0,2,4,DV2,3,1,Grand,Blvd,4701247,0.199,0.398,0,4.776439,6,4.5 +24274,0,0.470948,2,2,0,2,5,,3,1,Saint Aubin,Blvd,4711426,0.117,0.588,0,11.302763,8,4.5 +30626,0,0.49093,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.782325,0.15,4 +30638,0,0.206117,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.946802,0.15,4 +30855,0,0.326099,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.826378,0.15,4 +32970,0,0.505074,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.121785,0.15,4 +12724,-1,0.329691,0,4,0,1,1,,3,1,S I 75,,1577705,3.68,4.01,0,,0.58,7 +12950,1,0.339078,4,0,0,1,1,,3,1,N I 75,,1577706,3.679,4.018,0,,0.58,7 +13087,1,0.051369,1,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.955,5.006,0,1.232865,6,4.5 +13093,1,0.325981,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.629,4.955,0,7.823555,6,4.5 +13717,0,0.228369,1,1,0,2,5,,3,1,Piquette,St,1585704,0.552,0.78,0,5.480852,8,4.5 +13799,0,0.095434,2,2,0,2,5,,3,1,Milwaukee,St,1585705,1.371,1.467,0,2.290416,8,4.5 +13908,1,0.125864,1,0,0,1,1,RON,3,1,Clay/S I 75,RAMP,1585707,0,0.126,0,,1.09,4 +14257,0,0.220688,2,2,0,2,5,,3,1,Clay,St,1585708,0.375,0.595,0,5.296509,8,4.5 +14288,1,0.133564,1,0,0,1,1,ROF,3,1,N I 75/Clay,RAMP,1586106,0,0.134,0,,2.24,5 +14342,1,0.375924,1,0,0,1,1,RFS,3,1,W I 94/N I 75,RAMP,1585409,0.11,0.486,0,,0.22,6 +14463,0,0.188684,2,2,0,2,5,,3,1,Clay,St,1585708,0,0.189,0,4.528415,8,4.5 +15434,-1,0.251846,0,3,0,2,5,,3,1,Chrysler,Dr,1591301,0.009,0.261,0,6.044295,8,4.5 +17392,1,0.218292,4,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.028,0.246,0,5.239013,8,4.5 +19561,-1,0.030734,0,2,0,2,4,DV2,3,1,Hamtramck,Dr,1857310,0,0.031,0,0.737608,6,4.5 +22398,-1,0.067634,0,2,0,2,4,DV2,3,1,Hamtramck,Dr,4701247,0.087,0.154,0,1.623212,6,4.5 +22800,0,0.209553,2,2,0,2,4,,3,1,Russell,St,4705681,1.044,1.253,0,5.029269,6,4.5 +24452,-1,0.047648,0,1,0,2,4,DV2,3,1,Grand,Blvd,4710494,2.129,2.177,0,1.143559,6,4.5 +24458,-1,0.302114,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.797,2.099,0,7.250739,6,4.5 +33255,0,0.215337,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.168093,0.15,4 +33499,0,0.444139,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.659333,0.15,4 +12951,1,0.241463,4,0,0,1,1,,3,1,N I 75,,1577706,3.261,3.502,0,,0.58,7 +13103,1,0.167181,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.349,4.516,0,4.012354,6,4.5 +13661,0,0.348263,1,1,0,2,5,,3,1,Milwaukee,St,1585705,1.023,1.371,0,8.358312,8,4.5 +23382,1,0.294058,1,0,0,1,1,RFF,3,1,S I 75/W I 94,RAMP,4705662,0,0.294,0,,0.32,8.5 +24466,-1,0.174688,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.485,1.66,0,4.192516,6,4.5 +33285,0,0.216997,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.207926,0.15,4 +23650,0,0.110514,1,1,0,2,5,,3,1,Beaubien,St,4705574,0.649,0.759,0,2.652341,8,4.5 +33259,0,0.172565,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.141571,0.15,4 +33260,0,0.038213,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.917114,0.15,4 +13892,0,0.095479,1,1,0,2,5,,3,1,Milwaukee,St,1585705,0.928,1.023,0,2.291502,8,4.5 +23952,0,0.250209,1,1,0,2,4,,3,1,Oakland,St,4708768,0,0.25,0,6.005022,6,4.5 +23953,0,0.012052,1,1,0,2,4,,3,1,Oakland,St,4706921,0,0.012,0,0.289252,6,4.5 +12297,-1,0.195514,0,4,0,1,1,,3,1,S I 75,,1577705,3.485,3.68,0,,0.58,7 +13098,1,0.082241,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.516,4.598,0,1.973777,6,4.5 +13352,1,0.177519,4,0,0,1,1,,3,1,N I 75,,1577706,3.502,3.679,0,,0.58,7 +22877,1,0.023267,4,0,0,2,5,,3,1,Russell,St,4705681,1.325,1.348,0,0.558414,8,4.5 +24462,-1,0.024808,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.772,1.797,0,0.595392,6,4.5 +24463,-1,0.111907,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.66,1.772,0,2.68577,6,4.5 +15437,-1,0.009444,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0,0.009,0,0.226644,8,4.5 +13095,1,0.031081,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.598,4.629,0,0.745952,6,4.5 +22517,0,0.032354,2,2,0,2,4,,3,1,Russell,St,4705681,1.253,1.285,0,0.776505,6,4.5 +23907,1,0.02853,1,0,0,2,4,,3,1,Grand/Russell Cutoff,,4706970,0,0.029,0,0.684725,6,4.5 +23513,0,0.026309,2,2,0,2,4,,3,1,Russell,St,4705681,1.285,1.312,0,0.631427,6,4.5 +23168,0,0.013098,2,2,0,2,4,,3,1,Russell,St,4705681,1.312,1.325,0,0.31436,6,4.5 +17393,1,0.028094,1,0,0,1,5,,3,1,Chrysler,Dr,1625409,0,0.028,0,,8,4.5 +12129,1,0.26289,4,0,0,1,1,,3,1,N I 75,,1577706,4.018,4.281,0,,0.58,7 +12730,-1,0.260928,0,4,0,1,1,,3,1,S I 75,,1577705,4.01,4.271,0,,0.58,7 +14281,0,0.060756,1,1,0,2,5,,3,1,Clay,St,1585708,0.189,0.249,0,1.458149,8,4.5 +14362,1,0.143883,1,0,0,1,1,RON,3,1,Clay/N I 75,RAMP,1586107,0,0.144,0,,1.09,4 +15415,-1,0.322699,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0.338,0.661,0,7.744779,8,4.5 +17389,1,0.24676,2,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.312,0.559,0,5.922231,8,4.5 +33256,0,0.242659,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.823812,0.15,4 +33834,0,0.361569,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.677649,0.15,4 +14405,1,0.130998,1,0,0,1,1,ROF,3,1,S I 75/Clay,RAMP,1585709,0,0.131,0,,2.24,5 +15417,-1,0.049282,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0.289,0.338,0,1.182761,8,4.5 +15420,-1,0.027954,0,3,0,2,5,,3,1,Chrysler,Dr,1591301,0.261,0.289,0,0.67089,8,4.5 +13757,0,0.125381,2,2,0,2,5,,3,1,Clay,St,1585708,0.249,0.375,0,3.009155,8,4.5 +17391,1,0.038249,4,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.246,0.285,0,0.917972,8,4.5 +17390,1,0.027817,3,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.285,0.312,0,0.667614,8,4.5 +33258,0,0.10261,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.462635,0.15,4 +14468,0,0.263039,2,2,0,2,5,,3,1,Milwaukee,St,1585705,1.467,1.73,0,6.312938,8,4.5 +23082,0,0.160049,2,2,0,2,4,,3,1,Russell,St,4705681,0.883,1.044,0,3.841166,6,4.5 +14344,1,0.109878,2,0,0,1,1,RFF,3,1,W I 94/N I 75,RAMP,1585409,0,0.11,0,,0.32,8.5 +22583,1,0.118627,2,0,0,1,1,RFF,3,1,N I 75/E I 94,RAMP,4705723,0.616,0.734,0,,0.32,8.5 +13083,1,0.220953,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,5.063,5.284,0,5.302876,6,4.5 +14459,0,0.013932,2,2,0,2,5,,3,1,Milwaukee,St,1585705,1.73,1.743,0,0.334368,8,4.5 +22397,-1,0.045205,0,2,0,2,4,DV2,3,1,Grand,Blvd,4701247,0.154,0.199,0,1.084909,6,4.5 +13086,1,0.056352,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,5.006,5.063,0,1.352439,6,4.5 +19558,0,0.311423,2,2,0,2,4,,3,2,Hamtramck,Dr,1857310,0.143,0.454,0,7.474141,6,4.5 +24423,0,0.11725,2,2,0,2,5,,3,1,Saint Aubin,St,4711426,0,0.117,0,2.814008,8,4.5 +19559,-1,0.089676,0,2,0,2,4,DV2,3,1,Hamtramck,Dr,1857310,0.053,0.143,0,2.15223,6,4.5 +19560,-1,0.022372,0,2,0,2,4,DV2,3,1,Hamtramck,Dr,1857310,0.031,0.053,0,0.536929,6,4.5 +22399,-1,0.086464,0,2,0,2,4,DV2,3,1,Hamtramck,Dr,4701247,0,0.087,0,2.075146,6,4.5 +22694,1,0.034965,1,0,0,2,4,DV2,3,1,E Grand/N Hamtramck Cutoff,,4704869,0,0.035,0,0.839149,6,4.5 +24455,-1,0.030259,0,1,0,2,4,DV2,3,1,Grand,Blvd,4710494,2.099,2.129,0,0.726227,6,4.5 +23910,-1,0.038875,0,1,0,2,4,DV2,3,1,S Hamtramck/W Grand Cutoff,,4706968,0,0.039,0,0.933003,6,4.5 +22693,1,0.035218,1,0,0,2,4,DV2,3,1,E Grand/N Hamtramck Cutoff,,4704869,0.035,0.07,0,0.845229,6,4.5 +14376,0,0.330177,1,1,0,2,4,,3,2,Holbrook,St,1585801,1.218,1.548,0,7.924236,6,4.5 +15772,0,0.208102,1,1,0,2,4,,2,2,Joseph Campau,St,1591101,0.851,1.059,0,4.994437,8,4.5 +15783,0,0.26613,2,2,0,2,4,,3,2,Joseph Campau,St,1591101,0.323,0.589,0,6.387113,6,4.5 +18992,0,0.201128,1,1,0,2,4,,2,2,Caniff,St,1632110,1.015,1.216,0,4.827084,8,4.5 +30857,0,0.339295,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.143091,0.15,4 +33277,0,0.147287,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.534885,0.15,4 +33341,0,0.334397,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.025528,0.15,4 +17180,0,0.045089,1,1,0,2,5,,3,2,Poland,St,1630810,0.119,0.164,0,1.082147,8,4.5 +24406,0,0.154276,2,2,0,2,5,,3,1,Saint Aubin,Blvd,4711426,0.588,0.742,0,3.702616,8,4.5 +17181,0,0.119002,1,1,0,2,5,,3,2,Poland,St,1630810,0,0.119,0,2.856042,8,4.5 +19457,0,0.158697,1,1,0,2,5,,3,2,Lumpkin,St,1712308,0.459,0.618,0,3.808726,8,4.5 +13672,0,0.060076,1,1,0,2,4,,3,2,Holbrook,St,1585801,1.158,1.218,0,1.441824,6,4.5 +19002,0,0.17187,1,1,0,2,4,,3,2,Caniff,St,1632110,0.843,1.015,0,4.12487,6,4.5 +19003,0,0.16805,1,1,0,2,4,,3,2,Caniff,St,1632110,0.675,0.843,0,4.033197,6,4.5 +33275,0,0.273277,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.558653,0.15,4 +15784,0,0.322843,2,2,0,2,4,,3,2,Joseph Campau,St,1591101,0,0.323,0,7.74823,6,4.5 +30856,0,0.050484,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.211625,0.15,4 +14361,0,0.218874,1,1,0,2,4,,2,2,Holbrook,St,1585801,1.548,1.767,0,5.25298,8,4.5 +30639,0,0.234413,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.62592,0.15,4 +30640,0,0.23382,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.611692,0.15,4 +33639,0,0.206296,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.951099,0.15,4 +15776,0,0.155289,1,1,0,2,4,,2,2,Joseph Campau,St,1591101,0.696,0.851,0,3.726946,8,4.5 +15782,0,0.106958,1,1,0,2,4,,2,2,Joseph Campau,St,1591101,0.589,0.696,0,2.566991,8,4.5 +11133,1,0.210767,3,0,0,1,1,,3,1,E I 94,,1576405,29.574,29.784,0,,0.58,7 +12052,1,0.159049,1,0,0,1,1,ROF,3,1,E I 94/Mount Elliot,RAMP,1577807,0,0.159,0,,2.24,5 +13077,1,0.301099,2,0,0,2,4,DIV,3,1,Grand,Blvd,1577308,5.508,5.809,0,7.226379,6,4.5 +13783,1,0.137382,2,0,0,2,4,,3,1,Harper,Ave,4718377,0.58,0.717,0,3.297172,6,4.5 +14228,-1,0.46146,0,3,0,1,1,,3,1,W I 94,,1588802,29.125,29.586,0,,0.58,7 +14247,1,0.216179,2,0,0,2,4,,3,1,Harper,Ave,4718377,0.263,0.479,0,5.188303,6,4.5 +14339,1,0.1653,1,0,0,1,1,RON,3,1,Mount Elliot/W I 94,RAMP,1589107,0,0.165,0,,1.09,4 +14419,0,0.11608,1,1,0,2,5,,3,1,Ferry,St,1585703,1.351,1.467,0,2.785928,8,4.5 +15030,-1,0.188976,0,4,0,2,4,,3,1,Harper,Ave,1591307,0,0.189,0,4.535419,6,4.5 +22393,-1,0.09122,0,2,0,2,4,DIV,3,1,Grand,Blvd,4701331,0,0.091,0,2.189288,6,4.5 +30624,0,0.311163,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.467901,0.15,4 +30627,0,0.22451,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.388232,0.15,4 +33247,0,0.145076,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.481816,0.15,4 +33824,0,0.314478,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.547464,0.15,4 +11349,1,0.424069,3,0,0,1,1,,3,1,E I 94,,1576405,29.15,29.574,0,,0.58,7 +13259,1,0.150763,1,0,0,1,1,ROF,3,1,E I 94/Chene,RAMP,1577802,0,0.151,0,,2.24,5 +13917,0,0.059664,2,2,0,2,5,,3,1,Chene,St,1587501,3.087,3.146,0,1.431939,8,4.5 +14156,1,0.056808,3,0,0,2,4,,3,1,Harper,Ave,4718377,0.149,0.206,0,1.36338,6,4.5 +14238,0,0.159073,2,2,0,2,5,,3,1,Chene,St,1587501,2.928,3.087,0,3.817745,8,4.5 +14410,1,0.148976,2,0,0,2,4,,3,1,Harper,Ave,4718377,0,0.149,0,3.575433,6,4.5 +22394,-1,0.220048,0,2,0,2,4,DIV,3,1,Grand,Blvd,4701247,0.614,0.834,0,5.281163,6,4.5 +13728,0,0.023922,2,2,0,2,5,,3,1,Chene,St,1587501,3.146,3.17,0,0.574119,8,4.5 +22395,-1,0.216101,0,2,0,2,4,DIV,3,1,Grand,Blvd,4701247,0.398,0.614,0,5.186421,6,4.5 +23604,1,0.22521,1,0,0,1,1,RON,3,1,Chene/W I 94,RAMP,4705754,0,0.225,0,,1.09,4 +13779,0,0.114827,1,1,0,2,5,,3,1,Ferry,St,1585703,1.236,1.351,0,2.755855,8,4.5 +14460,0,0.160269,2,2,0,2,5,,3,1,Chene,St,1587501,2.768,2.928,0,3.846468,8,4.5 +30588,0,0.153756,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.690156,0.15,4 +30590,0,0.086749,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.08198,0.15,4 +12861,1,0.163154,1,0,0,1,1,RON,3,1,Chene/E I 94,RAMP,1577805,0,0.163,0,,1.09,4 +13874,1,0.057043,3,0,0,2,4,,3,1,Harper,Ave,4718377,0.206,0.263,0,1.369023,6,4.5 +23229,0,0.130309,2,2,0,2,5,,3,1,McDougall,St,4704611,1.518,1.648,0,3.127407,8,4.5 +23495,0,0.137579,1,1,0,2,4,,3,1,Grand,Blvd,4705610,0.108,0.246,0,3.301898,6,4.5 +30442,0,0.234184,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.62042,0.15,4 +14454,0,0.165462,1,1,0,2,5,,3,1,Ferry,St,1585703,1.467,1.632,0,3.971092,8,4.5 +13075,1,0.146475,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,5.809,5.955,0,3.515408,6,4.5 +13777,1,0.089329,2,0,0,2,4,,3,1,Harper,Ave,4718377,0.491,0.58,0,2.143886,6,4.5 +22391,-1,0.125294,0,2,0,2,4,DV2,3,1,Grand,Blvd,4701331,0.199,0.324,0,3.007057,6,4.5 +22392,-1,0.107391,0,2,0,2,4,DV2,3,1,Grand,Blvd,4701331,0.091,0.199,0,2.577381,6,4.5 +23908,1,0.055905,2,0,0,2,5,DV2,3,1,Grand/Hamtramck Cutoff,,4706969,0.028,0.084,0,1.341713,8,4.5 +13656,1,0.01187,2,0,0,2,4,,3,1,Harper,Ave,4718377,0.479,0.491,0,0.284873,6,4.5 +22986,1,0.087659,2,0,0,2,4,DV2,3,1,Grand,Blvd,4705610,0.021,0.108,0,2.103826,6,4.5 +23226,-1,0.029906,0,2,0,2,5,DV2,3,1,McDougall,St,4704611,1.648,1.678,0,0.717744,8,4.5 +23909,1,0.027954,2,0,0,2,5,DV2,3,1,McDougall,St,4706969,0,0.028,0,0.670902,8,4.5 +23304,1,0.020465,2,0,0,2,4,DV2,3,1,Grand,Blvd,4705610,0,0.021,0,0.491154,6,4.5 +13074,1,0.011772,2,0,0,2,5,DV2,3,1,McDougall,St,1577308,5.955,5.967,0,0.282529,8,4.5 +33246,0,0.151261,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.630273,0.15,4 +15027,-1,0.288746,0,4,0,2,4,,3,1,Harper,Ave,1591307,0.189,0.478,0,6.929893,6,4.5 +14367,1,0.07553,2,0,0,2,4,,3,1,Harper,Ave,4718377,0.717,0.793,0,1.812712,6,4.5 +13180,0,0.21018,1,1,0,2,3,,3,1,Mount Elliott,St,1577808,3.799,4.009,0,5.04432,5,5 +17210,0,0.493336,2,2,1,2,4,,3,2,Conant,St,1629706,0.28,0.773,0,11.840068,6,4.5 +17211,0,0.28015,2,2,1,2,4,,3,1,Conant,St,1629706,0,0.28,0,6.723601,6,4.5 +33522,0,0.509154,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.219694,0.15,4 +30853,0,0.171145,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.107484,0.15,4 +19555,0,0.197262,2,2,0,2,4,,3,2,Hamtramck,Dr,1857310,0.96,1.157,0,4.734282,6,4.5 +17208,0,0.208644,1,1,0,2,4,,2,2,Conant,St,1629706,0.873,1.082,0,5.007468,8,4.5 +18569,0,0.114634,1,1,0,2,5,,3,2,Buffalo,St,1712103,0,0.115,0,2.751207,8,4.5 +14149,0,0.091405,1,1,0,2,5,,3,2,Holbrook,St,1585801,1.96,2.051,0,2.193725,8,4.5 +17209,0,0.100136,2,2,1,2,4,,3,2,Conant,St,1629706,0.773,0.873,0,2.403257,6,4.5 +19463,0,0.057171,1,1,0,2,5,,3,2,Buffalo,St,1712103,0.115,0.172,0,1.372108,8,4.5 +30629,0,0.039137,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.939277,0.15,4 +30628,0,0.044591,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.070173,0.15,4 +13182,0,0.316131,1,1,0,2,3,,3,1,Mount Elliott,St,1577808,3.483,3.799,0,7.587145,5,5 +11984,0,0.041745,2,2,0,2,3,,3,1,Mount Elliott,St,1577808,3.441,3.483,0,1.001877,5,5 +13177,0,0.233465,1,1,0,2,3,,3,1,Mount Elliott,St,1577808,4.291,4.524,0,5.60315,5,5 +19186,0,0.047228,1,1,0,2,5,,3,1,Lynch,Rd,1632008,0,0.047,0,1.133474,8,4.5 +30625,0,0.143891,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.453373,0.15,4 +12778,0,0.050206,1,1,0,2,3,,3,1,Mount Elliott,St,1577808,4.241,4.291,0,1.204943,5,5 +12776,1,0.053539,1,0,0,1,5,,3,1,Old Mount Elliott,St,1577808,4.524,4.578,0,,8,4.5 +19179,0,0.012175,1,1,0,2,5,,3,1,Lynch,Rd,1632008,0.047,0.059,0,0.2922,8,4.5 +23854,0,0.054315,1,1,0,2,3,,3,1,Mount Elliott,St,4707516,0,0.054,0,1.303571,5,5 +3632,-1,0.33092,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,0.667,0.998,0,7.942091,5,5 +3905,1,0.31478,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,0.683,0.997,0,7.554715,5,5 +5372,0,0.503613,2,2,0,2,4,,3,4,9 Mile,Rd,803006,0.493,0.996,0,12.086715,6,4.5 +13288,1,0.572814,4,0,0,1,1,,3,1,N I 75,,1577706,7.799,8.371,0,,0.58,7 +13377,-1,0.564314,0,4,0,1,1,,3,1,S I 75,,1577705,7.793,8.358,0,,0.58,7 +13678,1,0.207501,1,0,0,1,1,ROF,3,1,S I 75/7 Mile,RAMP,1586001,0,0.208,0,,2.24,5 +13679,0,0.16998,1,1,0,2,4,,3,1,Dequindre,St,1585803,2.246,2.416,0,4.079515,6,4.5 +13684,0,0.302107,2,2,0,2,4,,3,1,Nevada,St,1585907,2.112,2.414,0,7.250557,6,4.5 +13788,1,0.204545,1,0,0,1,1,RON,3,1,7 Mile/N I 75,RAMP,1586205,0,0.205,0,,1.09,4 +14139,0,0.281815,1,1,0,2,5,,3,1,Carpenter,St,1585807,0.167,0.448,0,6.763568,8,4.5 +14304,1,0.311435,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,2.589,2.9,0,7.474443,6,4.5 +15137,1,0.097612,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.161,1.259,0,2.342688,8,4.5 +15310,-1,0.102059,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.154,1.256,0,2.449426,8,4.5 +15744,0,0.222978,2,2,0,2,4,,3,1,Joseph Campau,St,1591101,1.844,2.067,0,5.351473,6,4.5 +16273,-1,0.336805,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,1.893,2.23,0,8.083313,5,5 +16315,0,0.340557,1,1,0,2,4,,3,1,Ryan,Rd,1602103,1.278,1.618,0,8.17337,6,4.5 +17195,0,0.288355,2,2,0,2,4,,3,1,Conant,St,1629706,3.703,3.991,0,6.92053,6,4.5 +17199,0,0.557829,2,2,0,2,4,,3,1,Conant,St,1629706,2.591,3.149,0,13.387892,6,4.5 +18145,0,0.347635,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,18.577,18.924,0,8.343246,5,5 +18628,0,0.209339,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.727,24.936,0,5.024135,5,5 +22205,-1,0.58359,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,0.417,1,0,14.006154,6,4.5 +22281,-1,0.382658,0,3,0,1,2,,3,1,W M 8,,4702011,2.411,2.795,0,,0.58,7 +22309,1,0.544839,3,0,0,1,2,,3,1,E M 8,,4702009,4.761,5.305,0,,0.58,7 +22342,1,0.172299,3,0,0,2,5,,3,1,Davison,St,4705657,2.065,2.238,0,4.135185,8,4.5 +22468,0,0.335698,1,1,0,2,4,,3,1,Mount Elliott,St,4705057,1.875,2.211,0,8.05676,6,4.5 +22715,-1,0.174952,0,3,0,2,5,,3,1,Davison,St,4705659,2.049,2.224,0,4.198841,8,4.5 +23840,1,0.336702,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,2.364,2.7,0,8.08085,5,5 +26010,0,0.499722,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.993332,0.15,4 +27472,0,0.248641,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.967381,0.15,4 +30641,0,0.249381,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.985141,0.15,4 +32867,0,0.27701,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.648233,0.15,4 +33312,0,0.460596,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.054302,0.15,4 +33323,0,0.247398,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.937542,0.15,4 +33327,0,0.340836,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.180058,0.15,4 +33328,0,0.249106,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.978535,0.15,4 +33331,0,0.265539,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.372941,0.15,4 +33335,0,0.243534,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.844819,0.15,4 +33340,0,0.138931,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.334342,0.15,4 +33344,0,0.347438,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.338506,0.15,4 +33837,0,0.195567,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.693602,0.15,4 +12084,1,0.430412,4,0,0,1,1,,3,1,N I 75,,1577706,6.799,7.229,0,,0.58,7 +12357,-1,0.253579,0,4,0,1,1,,3,1,S I 75,,1577705,6.549,6.802,0,,0.58,7 +12895,1,0.280674,4,0,0,1,1,,3,1,N I 75,,1577706,6.518,6.799,0,,0.58,7 +13378,-1,0.430889,0,4,0,1,1,,3,1,S I 75,,1577705,6.802,7.233,0,,0.58,7 +13722,1,0.129005,1,0,0,1,1,RFF,3,2,S I 75/W M 8,RAMP,1585904,0.246,0.375,0,,0.58,7 +13751,0,0.272863,2,2,0,2,4,,3,1,Dequindre,St,1585803,0.974,1.247,0,6.548705,6,4.5 +14026,0,0.313495,2,2,0,2,4,,3,1,Nevada,St,1585907,1.084,1.397,0,7.523877,6,4.5 +15244,1,0.012056,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0,0.012,0,0.289335,8,4.5 +15374,-1,0.010123,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0,0.01,0,0.242954,8,4.5 +15651,1,0.204947,2,0,0,1,2,RON,3,2,Oakland/E M 8,RAMP,1591104,0,0.205,0,,1.09,4 +15662,1,0.095733,2,0,0,1,1,RFF,3,2,E M 8/S I 75,RAMP,1591103,0.218,0.314,0,,0.58,7 +15711,0,0.266489,2,2,0,2,4,,3,1,Joseph Campau,St,1591101,2.245,2.511,0,6.39574,6,4.5 +15761,0,0.173644,1,1,0,2,5,,3,1,Goddard,St,1591010,0.895,1.069,0,4.167463,8,4.5 +17299,0,0.187289,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.726,17.913,0,4.494933,5,5 +18192,0,0.071999,2,2,0,2,3,,3,1,McNichols,Rd,1680701,23.911,23.983,0,1.727965,5,5 +18419,1,0.177961,3,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,23.733,23.911,0,4.271074,5,5 +22283,-1,0.256324,0,3,0,1,2,,3,2,W M 8,,4702011,1.614,1.87,0,,0.58,7 +22311,1,0.333055,3,0,0,1,2,,3,2,E M 8,,4702009,3.968,4.302,0,,0.58,7 +22478,-1,0.292571,0,3,0,2,3,DV2,3,1,McNichols,Rd,4705005,0.028,0.32,0,7.021706,5,5 +23245,-1,0.165242,0,2,0,2,5,,3,2,Davison,St,4705659,1.077,1.242,0,3.965803,8,4.5 +23681,1,0.479113,2,0,0,2,5,,3,1,Davison,St,4705657,1.072,1.551,0,11.498715,8,4.5 +23933,0,0.157922,1,1,0,2,4,,3,1,Oakland,St,4708768,3.428,3.586,0,3.790124,6,4.5 +32100,0,0.215093,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.162221,0.15,4 +33317,0,0.289569,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.949654,0.15,4 +33338,0,0.144142,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.459399,0.15,4 +33348,0,0.404998,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.719944,0.15,4 +33349,0,0.435954,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.462889,0.15,4 +16008,0,0.172709,2,2,0,2,5,,3,2,Manchester,St,1597406,0.863,1.036,0,4.145009,8,4.5 +18995,1,0.295729,3,0,0,2,3,DV2,3,2,McNichols,Rd,1680701,23.367,23.663,0,7.097508,5,5 +22284,-1,0.442296,0,4,0,1,2,,3,2,W M 8,,4702011,1.172,1.614,0,,0.58,7 +22312,1,0.315726,4,0,0,1,2,,3,2,E M 8,,4702009,3.653,3.968,0,,0.58,7 +22607,1,0.165173,2,0,0,2,5,,3,2,Davison,St,4705657,0.685,0.85,0,3.96415,8,4.5 +23503,-1,0.173228,0,2,0,2,5,,3,2,Davison,St,4705659,0.685,0.858,0,4.157479,8,4.5 +23936,0,0.335518,2,2,0,2,4,,3,2,Oakland,St,4708768,2.835,3.17,0,8.052428,6,4.5 +23937,0,0.159592,2,2,0,2,4,,3,2,Oakland,St,4708768,2.675,2.835,0,3.830203,6,4.5 +24250,1,0.254905,1,0,0,1,2,RON,3,2,Oakland/W M 8,RAMP,4710330,0,0.255,0,,1.09,4 +24251,1,0.227154,1,0,0,1,2,ROF,3,2,E M 8/Oakland,RAMP,4710325,0,0.227,0,,2.24,5 +30577,0,0.16548,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.971524,0.15,4 +32105,0,0.264279,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.342703,0.15,4 +33702,0,0.163004,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.9121,0.15,4 +14534,0,0.048634,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.084,1.132,0,1.167204,5,5 +14535,0,0.259149,2,2,1,2,3,,3,2,Woodward,Ave,1591001,0.825,1.084,0,6.219572,5,5 +16010,0,0.172644,2,2,0,2,5,,3,2,Manchester,St,1597406,0.519,0.691,0,4.143454,8,4.5 +17370,0,0.131313,1,1,0,2,5,,3,2,John R,St,1625909,1.746,1.878,0,3.15151,8,4.5 +22512,-1,0.171387,0,2,0,2,5,,3,2,Davison,St,4705659,0.513,0.685,0,4.113291,8,4.5 +23189,1,0.083375,2,0,0,2,5,,3,2,Davison,St,4705657,0.43,0.514,0,2.001006,8,4.5 +22796,-1,0.05522,0,2,0,2,5,,3,2,Davison,St,4705659,0.458,0.513,0,1.325291,8,4.5 +14536,0,0.072674,2,2,1,2,3,,3,2,Woodward,Ave,1591001,0.752,0.825,0,1.744182,5,5 +17372,0,0.098056,1,1,0,2,5,,3,2,John R,St,1625909,1.593,1.691,0,2.353338,8,4.5 +22897,1,0.171404,2,0,0,2,5,,3,2,Davison,St,4705657,0.514,0.685,0,4.113685,8,4.5 +17371,0,0.055438,1,1,0,2,5,,3,2,John R,St,1625909,1.691,1.746,0,1.330519,8,4.5 +16009,0,0.172236,2,2,0,2,5,,3,2,Manchester,St,1597406,0.691,0.863,0,4.133666,8,4.5 +17369,0,0.125346,1,1,0,2,5,,3,2,John R,St,1625909,1.878,2.003,0,3.008314,8,4.5 +17679,0,0.080457,2,2,0,2,3,,3,1,McNichols,Rd,1680701,23.257,23.338,0,1.930959,5,5 +32102,0,0.142253,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.414072,0.15,4 +33352,0,0.376097,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.02633,0.15,4 +23935,0,0.247826,2,2,0,2,4,,3,2,Oakland,St,4708768,3.17,3.418,0,5.947814,6,4.5 +17483,1,0.029639,3,0,0,2,3,DV2,3,2,McNichols,Rd,1680701,23.338,23.367,0,0.711329,5,5 +22479,-1,0.027722,0,3,0,2,3,DV2,3,1,McNichols,Rd,4705005,0,0.028,0,0.665334,5,5 +23934,0,0.00972,2,2,0,2,4,,3,2,Oakland,St,4708768,3.418,3.428,0,0.233282,6,4.5 +15666,1,0.217885,2,0,0,1,1,RFF,3,2,E M 8/S I 75,RAMP,1591103,0,0.218,0,,0.58,7 +22604,-1,0.100677,0,4,0,2,4,DV2,3,2,Oakland,St,4704923,1.088,1.189,0,2.416253,6,4.5 +22612,-1,0.086267,0,4,0,2,4,DV2,3,2,Oakland,St,4704923,0.934,1.02,0,2.070408,6,4.5 +22871,-1,0.101886,0,2,0,2,5,,3,2,Davison,St,4705659,0.907,1.009,0,2.445273,8,4.5 +23613,1,0.160037,3,0,0,2,5,,3,2,Davison,St,4705657,0.85,1.01,0,3.840885,8,4.5 +23938,1,0.097662,4,0,0,2,4,DV2,3,2,Oakland,St,4708768,2.578,2.675,0,2.343886,6,4.5 +23940,1,0.095066,4,0,0,2,4,DV2,3,2,Oakland,St,4708768,2.413,2.508,0,2.281585,6,4.5 +30576,0,0.092376,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.217012,0.15,4 +30958,0,0.284996,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.839894,0.15,4 +32111,0,0.286327,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.87184,0.15,4 +33836,0,0.303464,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.283143,0.15,4 +23161,-1,0.049101,0,2,0,2,5,,3,2,Davison,St,4705659,0.858,0.907,0,1.178435,8,4.5 +14327,1,0.10456,1,0,0,1,1,RFF,3,2,S I 75/W M 8,RAMP,1585904,0.375,0.48,0,,0.58,7 +14482,1,0.122418,1,0,0,1,1,ROF,3,2,I 75/Oakland,RAMP,1591007,0,0.122,0,,2.24,5 +15953,1,0.096496,1,0,0,1,1,RON,3,2,Oakland/I 75,RAMP,1598503,0,0.097,0,,1.09,4 +22611,-1,0.067984,0,4,0,2,4,DV2,3,2,Oakland,St,4704923,1.02,1.088,0,1.63162,6,4.5 +23271,1,0.021259,3,0,0,2,5,,3,2,Davison,St,4705657,1.01,1.031,0,0.510217,8,4.5 +23585,-1,0.046781,0,3,0,2,5,,3,2,Davison,St,4705659,1.03,1.077,0,1.122744,8,4.5 +23939,1,0.069756,4,0,0,2,4,DV2,3,2,Oakland,St,4708768,2.508,2.578,0,1.674156,6,4.5 +22579,-1,0.02151,0,3,0,2,5,,3,2,Davison,St,4705659,1.009,1.03,0,0.516229,8,4.5 +22688,1,0.012811,2,0,0,2,5,,3,2,Davison,St,4705657,1.059,1.072,0,0.307462,8,4.5 +22965,1,0.028203,3,0,0,2,5,,3,2,Davison,St,4705657,1.031,1.059,0,0.676884,8,4.5 +14400,1,0.210812,1,0,0,1,1,RON,3,1,McNichols/S I 75,RAMP,1585905,0,0.211,0,,1.09,4 +18743,1,0.070423,3,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,23.663,23.733,0,1.690142,5,5 +14144,1,0.198171,1,0,0,1,1,ROF,3,1,N I 75/McNichols,RAMP,1586202,0,0.198,0,,2.24,5 +12978,-1,0.560558,0,4,0,1,1,,3,1,S I 75,,1577705,7.233,7.793,0,,0.58,7 +13289,1,0.569782,4,0,0,1,1,,3,1,N I 75,,1577706,7.229,7.799,0,,0.58,7 +14465,0,0.209668,2,2,0,2,4,,3,1,Nevada,St,1585907,0.874,1.084,0,5.032023,6,4.5 +15185,1,0.145166,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.552,0.697,0,3.483985,8,4.5 +15219,1,0.427819,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.124,0.552,0,10.267646,8,4.5 +15351,-1,0.069502,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.59,0.659,0,1.668047,8,4.5 +15368,-1,0.460653,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.088,0.549,0,11.055675,8,4.5 +17954,0,0.230983,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.332,17.563,0,5.543602,5,5 +23448,-1,0.103743,0,2,0,2,5,,3,1,S I 75 Service Drive,,4704576,0,0.104,0,2.489831,8,4.5 +23930,1,0.112526,2,0,0,2,5,,3,1,Oakland,St,4708768,3.937,4.049,0,2.700622,8,4.5 +33700,0,0.259406,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.225754,0.15,4 +14303,0,0.158818,1,1,0,2,5,,3,1,Nevada,St,1585907,0.623,0.782,0,3.811631,8,4.5 +23932,0,0.311277,1,1,0,2,4,,3,1,Oakland,St,4708768,3.586,3.897,0,7.470644,6,4.5 +32101,0,0.099635,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.391242,0.15,4 +32104,0,0.265465,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.371151,0.15,4 +14457,0,0.063432,2,2,0,2,4,,3,1,Nevada,St,1585907,0.811,0.874,0,1.522358,6,4.5 +13714,0,0.028904,1,1,0,2,4,,3,1,Nevada,St,1585907,0.782,0.811,0,0.693705,6,4.5 +15363,-1,0.041012,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.549,0.59,0,0.984278,8,4.5 +23931,1,0.039772,2,0,0,2,5,,3,1,Oakland,St,4708768,3.897,3.937,0,0.954539,8,4.5 +13974,1,0.169373,1,0,0,1,1,RON,3,1,7 Mile/S I 75,RAMP,1585908,0,0.169,0,,1.09,4 +14476,1,0.168627,1,0,0,1,1,ROF,3,1,N I 75/7 Mile,RAMP,1586204,0,0.169,0,,2.24,5 +15178,1,0.146051,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.814,0.96,0,3.505219,8,4.5 +15326,-1,0.152329,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.81,0.963,0,3.655887,8,4.5 +18467,0,0.194163,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.082,17.276,0,4.659913,5,5 +31576,0,0.224574,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.389785,0.15,4 +32096,0,0.169606,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.070553,0.15,4 +32866,0,0.268811,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.451463,0.15,4 +15179,1,0.117221,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.697,0.814,0,2.813305,8,4.5 +15338,-1,0.151358,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.659,0.81,0,3.632601,8,4.5 +15168,1,0.077689,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.084,1.161,0,1.864535,8,4.5 +15317,-1,0.073688,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.08,1.154,0,1.768519,8,4.5 +15173,1,0.123692,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.96,1.084,0,2.968619,8,4.5 +15319,-1,0.117238,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.963,1.08,0,2.813723,8,4.5 +18144,0,0.05652,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.276,17.332,0,1.356468,5,5 +15239,1,0.112084,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.012,0.124,0,2.690021,8,4.5 +22477,-1,0.069272,0,3,0,2,3,DV2,3,1,McNichols,Rd,4705005,0.32,0.39,0,1.662524,5,5 +14443,1,0.136107,1,0,0,1,1,ROF,3,1,S I 75/McNichols,RAMP,1585906,0,0.136,0,,2.24,5 +24257,1,0.112818,1,0,0,1,1,RON,3,1,McNichols/N I 75,RAMP,4710302,0,0.113,0,,1.09,4 +15372,-1,0.077851,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.01,0.088,0,1.868431,8,4.5 +22476,-1,0.182803,0,3,0,2,3,DV2,3,1,McNichols,Rd,4705005,0.39,0.572,0,4.387274,5,5 +17631,0,0.16299,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.563,17.726,0,3.911765,5,5 +12898,1,0.24114,4,0,0,1,1,,3,1,N I 75,,1577706,5.941,6.182,0,,0.58,7 +13170,-1,0.229823,0,4,0,1,1,,3,1,S I 75,,1577705,6.319,6.549,0,,0.58,7 +13290,1,0.336193,4,0,0,1,1,,3,1,N I 75,,1577706,6.182,6.518,0,,0.58,7 +13689,1,0.200462,2,0,0,1,1,RFF,3,1,S I 75/E M 8,RAMP,1585902,0.323,0.523,0,,0.58,7 +14049,1,0.369666,2,0,0,1,1,RFS,3,1,W M 8/N I 75,RAMP,1586201,0,0.37,0,,0.22,6 +14235,0,0.38486,2,2,0,2,4,,3,1,Dequindre,St,1585803,0.589,0.974,0,9.236639,6,4.5 +14240,1,0.246075,1,0,0,1,1,RFS,3,1,S I 75/W M 8,RAMP,1585904,0,0.246,0,,0.22,6 +14406,0,0.445021,1,1,0,2,5,,3,1,Dequindre,St,1585803,0.069,0.514,0,10.680513,8,4.5 +14431,1,0.179918,1,0,0,1,1,RFS,3,1,W M 8/N I 75,RAMP,1586201,0.37,0.549,0,,0.22,6 +15787,0,0.385442,1,1,0,2,5,,3,1,Goddard,St,1591010,0.51,0.895,0,9.250616,8,4.5 +15952,1,0.320927,1,0,0,1,1,RFS,3,1,E M 8/N I 75,RAMP,1598504,0,0.321,0,,0.22,6 +22282,-1,0.540585,0,3,0,1,2,,3,1,W M 8,,4702011,1.87,2.411,0,,0.58,7 +22310,1,0.459563,3,0,0,1,2,,3,1,E M 8,,4702009,4.302,4.761,0,,0.58,7 +22652,-1,0.202803,0,3,0,2,5,,3,1,Davison,St,4705659,1.539,1.742,0,4.867271,8,4.5 +23031,1,0.069868,3,0,0,2,5,,3,1,Davison,St,4705657,1.731,1.801,0,1.676824,8,4.5 +23344,1,0.179795,3,0,0,2,5,,3,1,Davison,St,4705657,1.551,1.731,0,4.315092,8,4.5 +24279,1,0.268736,1,0,0,1,1,RFS,3,1,N I 75/W M 8,RAMP,4710292,0,0.269,0,,0.22,6 +24281,1,0.219817,1,0,0,1,1,RFS,3,1,N I 75/E M 8,RAMP,4710291,0,0.22,0,,0.22,6 +33839,0,0.251638,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.039315,0.15,4 +13124,-1,0.366529,0,4,0,1,1,,3,1,S I 75,,1577705,5.953,6.319,0,,0.58,7 +14254,1,0.324725,1,0,0,1,1,RFS,3,1,W M 8/S I 75,RAMP,1585810,0,0.325,0,,0.22,6 +14285,1,0.32294,1,0,0,1,1,RFS,3,1,S I 75/E M 8,RAMP,1585902,0,0.323,0,,0.22,6 +15653,1,0.273934,2,0,0,1,1,RFS,3,1,E M 8/S I 75,RAMP,1591103,0.314,0.587,0,,0.22,6 +22942,-1,0.296807,0,2,0,2,5,,3,1,Davison,St,4705659,1.242,1.539,0,7.123366,8,4.5 +24101,1,0.116604,1,0,0,1,2,ROF,3,2,W M 8/Oakland,RAMP,4711335,0,0.117,0,,2.24,5 +13776,0,0.074961,2,2,0,2,4,,3,1,Dequindre,St,1585803,0.514,0.589,0,1.799069,6,4.5 +15652,1,0.083027,2,0,0,1,1,RFF,3,1,E M 8/S I 75,RAMP,1591103,0.587,0.67,0,,0.58,7 +27477,0,0.107331,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.57595,0.15,4 +13879,1,0.120053,1,0,0,1,1,RFF,3,1,W M 8/N I 75,RAMP,1586201,0.549,0.669,0,,0.58,7 +33351,0,0.177699,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.264778,0.15,4 +13670,0,0.166647,1,1,0,2,5,,3,1,Carpenter,St,1585807,0,0.167,0,3.999516,8,4.5 +33343,0,0.269419,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.466056,0.15,4 +14016,-1,0.069307,0,1,0,2,5,,3,2,Carpenter,Ave,1585803,0,0.069,0,1.663356,8,4.5 +33342,0,0.175626,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.215032,0.15,4 +15720,0,0.121448,2,2,0,2,4,,3,1,Joseph Campau,St,1591101,2.123,2.245,0,2.914743,6,4.5 +22755,1,0.264637,3,0,0,2,5,,3,1,Davison,St,4705657,1.801,2.065,0,6.35128,8,4.5 +22992,-1,0.256621,0,3,0,2,5,,3,1,Davison,St,4705659,1.793,2.049,0,6.158906,8,4.5 +14481,0,0.062626,1,1,0,2,5,,3,1,Goddard,St,1591010,0.448,0.51,0,1.503031,8,4.5 +23655,-1,0.05073,0,3,0,2,5,,3,1,Davison,St,4705659,1.742,1.793,0,1.217509,8,4.5 +15724,0,0.056384,2,2,0,2,4,,3,1,Joseph Campau,St,1591101,2.067,2.123,0,1.353209,6,4.5 +33278,0,0.192714,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.625147,0.15,4 +13462,0,0.187294,2,2,0,2,4,,3,1,Nevada,St,1585907,1.71,1.898,0,4.495054,6,4.5 +14002,0,0.202567,1,1,0,2,4,,3,1,Dequindre,St,1585803,1.724,1.926,0,4.861603,6,4.5 +15668,0,0.418226,1,1,0,2,4,,3,1,Joseph Campau,St,1591101,3.016,3.434,0,10.037434,6,4.5 +17198,0,0.281359,2,2,0,2,4,,3,1,Conant,St,1629706,3.149,3.43,0,6.752624,6,4.5 +18680,0,0.176162,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,18.209,18.385,0,4.227879,5,5 +19194,0,0.282511,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.195,24.477,0,6.780256,5,5 +32181,0,0.394223,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.461349,0.15,4 +33339,0,0.271627,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.519054,0.15,4 +13910,0,0.229545,1,1,0,2,4,,3,1,Dequindre,St,1585803,1.494,1.724,0,5.509076,6,4.5 +14350,0,0.235836,2,2,0,2,4,,3,1,Nevada,St,1585907,1.397,1.633,0,5.660071,6,4.5 +17680,0,0.109004,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.086,24.195,0,2.616105,5,5 +33315,0,0.257052,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.169238,0.15,4 +33316,0,0.215658,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.175795,0.15,4 +13669,0,0.247432,1,1,0,2,4,,3,1,Dequindre,St,1585803,1.247,1.494,0,5.938367,6,4.5 +17910,0,0.102908,2,2,0,2,3,,3,1,McNichols,Rd,1680701,23.983,24.086,0,2.46978,5,5 +33318,0,0.238713,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.72911,0.15,4 +14034,0,0.077431,2,2,0,2,4,,3,1,Nevada,St,1585907,1.633,1.71,0,1.858354,6,4.5 +13845,0,0.319692,1,1,0,2,4,,3,1,Dequindre,St,1585803,1.926,2.246,0,7.672619,6,4.5 +18940,0,0.295406,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.913,18.209,0,7.089751,5,5 +32182,0,0.397114,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.530737,0.15,4 +33350,0,0.050124,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.20297,0.15,4 +13864,0,0.214239,2,2,0,2,4,,3,1,Nevada,St,1585907,1.898,2.112,0,5.141739,6,4.5 +15689,0,0.331813,1,1,0,2,4,,3,1,Joseph Campau,St,1591101,2.684,3.016,0,7.963521,6,4.5 +18996,0,0.249754,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.477,24.727,0,5.994105,5,5 +15703,0,0.173137,1,1,0,2,4,,3,1,Joseph Campau,St,1591101,2.511,2.684,0,4.155281,6,4.5 +17197,0,0.185611,2,2,0,2,4,,3,1,Conant,St,1629706,3.43,3.616,0,4.454656,6,4.5 +18349,0,0.192295,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,18.385,18.577,0,4.61509,5,5 +17196,0,0.0869,2,2,0,2,4,,3,1,Conant,St,1629706,3.616,3.703,0,2.085612,6,4.5 +904,-1,0.469702,0,3,0,1,1,,3,3,S I 75,,646106,0.004,0.474,0,,0.58,7 +2304,1,0.461474,3,0,0,1,1,,3,3,N I 75,,647308,0.004,0.466,0,,0.58,7 +2328,1,0.33434,3,0,0,2,5,,3,3,Chrysler,Dr,646902,0.02,0.354,0,8.024159,8,4.5 +2408,-1,0.277453,0,3,0,2,5,,3,3,Chrysler,Dr,646702,0.022,0.299,0,6.658875,8,4.5 +4176,0,0.531839,2,2,0,2,3,,3,4,Dequindre,Rd,799402,0.02,0.552,0,12.764125,5,5 +4376,0,0.492913,2,2,0,2,4,,3,4,9 Mile,Rd,803006,0,0.493,0,11.829913,6,4.5 +4379,-1,0.50077,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,0,0.501,0,12.018476,5,5 +4493,1,0.470567,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,0,0.47,0,11.293615,5,5 +13898,0,0.124593,1,1,0,2,4,,3,1,State Fair,St,1586002,1.773,1.898,0,2.990228,6,4.5 +14291,0,0.28733,1,1,0,2,4,,3,1,Dequindre,St,1585803,2.908,3.195,0,6.895923,6,4.5 +17191,0,0.196684,2,2,0,2,4,,3,1,Conant,St,1629706,4.576,4.772,0,4.720409,6,4.5 +25742,0,0.251272,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.030531,0.15,4 +25743,0,0.558247,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.397924,0.15,4 +26008,0,0.498254,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.958102,0.15,4 +27471,0,0.524371,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.584913,0.15,4 +27474,0,0.505407,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.12977,0.15,4 +27475,0,0.606212,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.549096,0.15,4 +28199,0,0.565341,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.56818,0.15,4 +29890,0,0.635205,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.244922,0.15,4 +30909,0,0.254234,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.101614,0.15,4 +33336,0,0.141826,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.403829,0.15,4 +12081,1,0.559687,3,0,0,1,1,,3,1,N I 75,,1577706,8.52,9.079,0,,0.58,7 +13376,-1,0.320041,0,4,0,1,1,,3,1,S I 75,,1577705,8.537,8.856,0,,0.58,7 +14084,0,0.33206,1,1,0,2,4,,3,1,State Fair,St,1586002,1.318,1.65,0,7.969442,6,4.5 +14096,1,0.171116,3,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0.397,0.568,0,4.106794,5,5 +14266,-1,0.296219,0,1,0,2,3,,3,3,8 Mile,Rd,1586007,0.369,0.665,0,7.109257,5,5 +15084,1,0.082911,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.79,1.873,0,1.98987,8,4.5 +15272,-1,0.092438,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.774,1.866,0,2.218516,8,4.5 +30911,0,0.458449,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.002787,0.15,4 +30912,0,0.228827,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.491848,0.15,4 +31657,0,0.392147,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.411527,0.15,4 +31663,0,0.515896,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.381505,0.15,4 +33619,0,0.335977,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.063453,0.15,4 +12892,1,0.14805,4,0,0,1,1,,3,1,N I 75,,1577706,8.371,8.52,0,,0.58,7 +12976,-1,0.17897,0,4,0,1,1,,3,1,S I 75,,1577705,8.358,8.537,0,,0.58,7 +14076,0,0.05797,2,2,0,2,4,,3,1,State Fair,St,1586002,1.26,1.318,0,1.391282,6,4.5 +15112,1,0.163552,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.422,1.585,0,3.925259,8,4.5 +15304,-1,0.163551,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.418,1.582,0,3.925227,8,4.5 +22002,1,0.236071,1,0,0,1,1,RON,3,1,8 Mile/S I 75,RAMP,4700022,0,0.236,0,,1.09,4 +31658,0,0.273381,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.561142,0.15,4 +32113,0,0.217282,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.21476,0.15,4 +32864,0,0.22631,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.431449,0.15,4 +14006,0,0.192999,1,1,0,2,4,,3,1,State Fair,St,1586002,1.067,1.26,0,4.631977,6,4.5 +15301,-1,0.174895,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.582,1.757,0,4.197484,8,4.5 +15297,-1,0.01753,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.757,1.774,0,0.420722,8,4.5 +15136,1,0.162856,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.259,1.422,0,3.908539,8,4.5 +15305,-1,0.162998,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.256,1.418,0,3.911956,8,4.5 +15088,1,0.204626,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.585,1.79,0,4.911034,8,4.5 +22003,1,0.278116,1,0,0,1,1,ROF,3,1,N I 75/8 Mile,RAMP,4700024,0,0.278,0,,2.24,5 +1363,-1,0.004349,0,3,0,1,1,,3,1,S I 75,,646106,0,0.004,0,,0.58,7 +2305,1,0.004349,3,0,0,1,1,,3,1,N I 75,,647308,0,0.004,0,,0.58,7 +2330,1,0.004074,3,0,0,2,5,,3,1,N I 75 Service Drive,,646902,0,0.004,0,0.097772,8,4.5 +2410,-1,0.004281,0,3,0,2,5,,3,1,S I 75 Service Drive,,646702,0,0.004,0,0.102743,8,4.5 +14175,-1,0.101833,0,2,0,2,3,,3,3,8 Mile,Rd,1586007,0.218,0.32,0,2.443993,5,5 +14311,1,0.022242,3,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0.244,0.266,0,0.533814,5,5 +15270,-1,0.070224,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.866,1.937,0,1.685369,8,4.5 +21373,1,0.07193,1,0,0,1,3,RSF,3,3,N I 75/W M 102,RAMP,4700043,0.23,0.302,0,,5,5 +21627,1,0.123343,1,0,0,1,3,RSF,3,1,N I 75/W M 102,RAMP,4700043,0.087,0.211,0,,5,5 +15900,1,0.223305,1,0,0,1,3,RSF,3,1,E M 102/S I 75,RAMP,1598905,0,0.223,0,,5,5 +13831,1,0.060657,3,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0.184,0.244,0,1.455762,5,5 +21540,1,0.019663,1,0,0,1,3,RSF,3,1,N I 75/W M 102,RAMP,4700043,0.211,0.23,0,,5,5 +12974,-1,0.211362,0,3,0,1,1,,3,1,S I 75,,1577705,8.856,9.068,0,,0.58,7 +14037,1,0.193858,1,0,0,1,1,RON,3,1,W M 102/S I 75,RAMP,1586004,0,0.194,0,,1.09,4 +14287,1,0.08136,3,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0.316,0.397,0,1.952651,5,5 +15082,1,0.165739,3,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.873,2.039,0,3.977725,8,4.5 +17813,1,0.090879,1,0,0,1,3,,3,1,E I 75 Service Drive,,1638102,0,0.091,0,,5,5 +21871,1,0.0873,1,0,0,1,3,RSF,3,1,N I 75/W M 102,RAMP,4700043,0,0.087,0,,5,5 +13861,1,0.049449,3,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0.266,0.316,0,1.186784,5,5 +15250,-1,0.116953,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.937,2.054,0,2.806879,8,4.5 +15247,-1,0.00533,0,3,0,2,5,,3,1,S I 75 Service Drive,,1591302,2.054,2.059,0,0.127925,8,4.5 +15245,-1,0.011529,0,3,0,2,5,,3,1,S I 75 Service Drive,,1591302,2.059,2.07,0,0.276684,8,4.5 +15078,1,0.022818,3,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,2.039,2.061,0,0.54762,8,4.5 +15076,1,0.012221,3,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,2.061,2.074,0,0.293301,8,4.5 +14206,-1,0.049587,0,3,0,2,3,,3,3,8 Mile,Rd,1586007,0.32,0.369,0,1.190088,5,5 +2409,-1,0.01727,0,3,0,2,5,,3,3,S I 75 Service Drive,,646702,0.004,0.022,0,0.414477,8,4.5 +2329,1,0.01595,3,0,0,2,5,,3,3,N I 75 Service Drive,,646902,0.004,0.02,0,0.382804,8,4.5 +14197,0,0.123254,1,1,0,2,4,,3,1,State Fair,St,1586002,1.65,1.773,0,2.958106,6,4.5 +33334,0,0.262854,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.308501,0.15,4 +1768,-1,0.115199,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,11.918,12.034,0,2.764782,5,5 +14267,0,0.025175,2,2,0,2,4,,3,1,Dequindre,St,1585803,3.195,3.22,0,0.604204,6,4.5 +19658,1,0.122781,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,11.913,12.036,0,2.946734,5,5 +30910,0,0.252004,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.048104,0.15,4 +33354,0,0.274275,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.582596,0.15,4 +19661,1,0.060953,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,11.852,11.913,0,1.46288,5,5 +1271,-1,0.148849,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,12.034,12.182,0,3.572369,5,5 +19657,1,0.125662,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,12.036,12.161,0,3.015881,5,5 +4449,0,0.02039,2,2,0,2,3,,3,4,Dequindre,Rd,799402,0,0.02,0,0.489364,5,5 +60,0,0.496564,2,2,0,2,4,,3,3,9 Mile,Rd,607709,0,0.496,0,11.917544,6,4.5 +4774,0,0.470172,2,2,0,2,3,,3,4,Dequindre,Rd,799402,0.552,1.022,0,11.284126,5,5 +26162,0,0.519125,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.458998,0.15,4 +26888,0,0.258987,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.215677,0.15,4 +27382,0,0.459385,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.025249,0.15,4 +27383,0,0.199574,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.789786,0.15,4 +443,-1,0.29534,0,4,0,1,1,,3,3,S I 75,,646106,0.474,0.769,0,,0.58,7 +2303,1,0.325022,4,0,0,1,1,,3,3,N I 75,,647308,0.466,0.791,0,,0.58,7 +4896,1,0.17574,1,0,0,1,1,ROF,3,3,S I 75/M 102,RAMP,710309,0,0.176,0,,2.24,5 +2407,-1,0.257147,0,4,0,2,5,,3,3,Chrysler,Dr,646702,0.299,0.556,0,6.171528,8,4.5 +2327,1,0.199371,2,0,0,2,5,,3,3,Chrysler,Dr,646902,0.354,0.554,0,4.784915,8,4.5 +4874,1,0.113259,1,0,0,1,1,RON,3,3,M 102/N I 75,RAMP,710408,0,0.113,0,,1.09,4 +26163,0,0.251567,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.03761,0.15,4 +59,0,0.011247,2,2,0,2,4,,3,3,9 Mile,Rd,607709,0.496,0.508,0,0.269929,6,4.5 +27381,0,0.385789,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.258938,0.15,4 +4448,0,0.168655,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.022,1.191,0,4.047728,5,5 +4174,0,0.081656,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.191,1.272,0,1.959739,5,5 +14189,1,0.196578,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,2.12,2.317,0,4.717877,6,4.5 +17192,0,0.299075,2,2,0,2,4,,3,1,Conant,St,1629706,4.277,4.576,0,7.177797,6,4.5 +22206,-1,0.20348,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,0.213,0.417,0,4.883524,6,4.5 +27478,0,0.233824,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.611782,0.15,4 +27479,0,0.265403,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.369668,0.15,4 +30908,0,0.250915,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.021955,0.15,4 +33325,0,0.330507,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.932162,0.15,4 +33332,0,0.26485,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.356407,0.15,4 +14335,1,0.222353,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,1.898,2.12,0,5.336483,6,4.5 +14348,0,0.329603,1,1,0,2,4,,3,1,Dequindre,St,1585803,2.416,2.745,0,7.910467,6,4.5 +17194,0,0.270036,2,2,0,2,4,,3,1,Conant,St,1629706,3.991,4.261,0,6.480867,6,4.5 +22207,-1,0.213494,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,0,0.213,0,5.123862,6,4.5 +13682,0,0.162835,1,1,0,2,4,,3,1,Dequindre,St,1585803,2.745,2.908,0,3.908034,6,4.5 +17193,0,0.015706,2,2,0,2,4,,3,1,Conant,St,1629706,4.261,4.277,0,0.376943,6,4.5 +33330,0,0.307942,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.390607,0.15,4 +14192,1,0.27226,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,2.317,2.589,0,6.534251,6,4.5 +33329,0,0.234827,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.635842,0.15,4 +4095,-1,0.166099,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,0.501,0.667,0,3.986383,5,5 +4202,1,0.212124,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,0.47,0.683,0,5.090988,5,5 +25741,0,0.563314,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.519525,0.15,4 +27473,0,0.56877,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.650487,0.15,4 +26011,0,0.248821,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.9717,0.15,4 +14389,0,0.319369,2,2,0,2,4,,3,1,Nevada,St,1585907,2.909,3.228,0,7.66485,6,4.5 +14404,0,0.551448,2,2,0,2,3,,3,1,Davison,St,4702009,5.99,6.542,0,13.234757,5,5 +14473,0,0.351429,2,2,0,2,3,,3,1,Davison,St,4702009,5.543,5.894,0,8.4343,5,5 +16287,-1,0.247114,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.644,0.891,0,5.930729,5,5 +16327,0,0.217936,1,1,0,2,5,,3,1,Ryan,Rd,1602103,0.062,0.28,0,5.230454,8,4.5 +17176,0,0.203105,1,1,0,2,5,,3,1,Charles,St,1631501,0.323,0.526,0,4.874518,8,4.5 +17200,0,0.241937,2,2,0,2,4,,3,1,Conant,St,1629706,2.35,2.591,0,5.806489,6,4.5 +17632,0,0.598824,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,19.2,19.799,0,14.371778,5,5 +18964,0,0.261487,2,2,0,2,3,,3,1,McNichols,Rd,1680701,25.488,25.749,0,6.275692,5,5 +18980,0,0.310404,1,1,0,2,4,,3,2,Caniff,St,1632110,1.424,1.734,0,7.4497,6,4.5 +19146,0,0.208625,1,1,0,2,5,,3,1,Luce,St,1632102,0.425,0.633,0,5.007,8,4.5 +19458,0,0.247701,1,1,0,2,5,,3,1,Buffalo,St,1712103,1.269,1.517,0,5.94482,8,4.5 +22473,0,0.248285,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,0.625,0.873,0,5.958851,6,4.5 +23846,1,0.24714,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,1.114,1.361,0,5.93136,5,5 +30923,0,0.189744,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.553865,0.15,4 +30926,0,0.418584,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.046019,0.15,4 +33620,0,0.478569,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.485647,0.15,4 +33621,0,0.499809,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.995425,0.15,4 +13906,0,0.206932,1,1,0,2,5,,2,1,Carpenter,St,1585807,0.653,0.86,0,4.966375,8.5,4.5 +17177,0,0.323272,1,1,0,2,5,,3,1,Charles,St,1631501,0,0.323,0,7.758523,8,4.5 +17203,0,0.195037,2,2,0,2,4,,3,1,Conant,St,1629706,1.845,2.04,0,4.680891,6,4.5 +19177,0,0.161992,1,1,0,2,5,,3,1,Luce,St,1632102,0,0.162,0,3.887807,8,4.5 +30524,0,0.200599,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.814385,0.15,4 +30636,0,0.252377,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.057047,0.15,4 +30916,0,0.206656,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.959755,0.15,4 +33320,0,0.270475,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.491391,0.15,4 +13716,0,0.204813,1,1,0,2,5,,2,1,Carpenter,St,1585807,0.448,0.653,0,4.915515,8.5,4.5 +15764,0,0.253361,2,2,0,2,4,,2,2,Joseph Campau,St,1591101,1.311,1.564,0,6.080666,8,4.5 +15749,0,0.279975,2,2,0,2,4,,3,1,Joseph Campau,St,1591101,1.564,1.844,0,6.719406,6,4.5 +40231,1,0.055057,3,0,0,1,3,DIV,3,1,Davison,St,4702009,5.319,5.374,0,,5,5 +17201,0,0.171724,2,2,0,2,4,,3,1,Conant,St,1629706,2.178,2.35,0,4.12138,6,4.5 +40241,1,0.308888,2,0,0,1,1,RON,3,3,Greenfield/W I 696,RAMP,1903910,0.013,0.322,0,,1.09,4 +33319,0,0.21849,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.243763,0.15,4 +33838,0,0.291147,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.987524,0.15,4 +32800,0,0.234543,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.629039,0.15,4 +40239,0,0.111994,2,2,1,2,3,,3,3,Greenfield,Rd,648307,2.711,2.823,0,2.687866,5,5 +40242,1,0.013333,2,0,0,1,1,ROF,3,3,E I 696/Greenfield,RAMP,1903901,0.339,0.352,0,,2.24,5 +40225,-1,0.022967,0,3,0,2,3,DIV,3,1,Davison,St,4702011,2.795,2.816,0,0.551202,5,5 +40230,1,0.051518,1,0,0,2,5,,3,1,Davison,St,4705657,2.238,2.289,0,1.236424,8,4.5 +40227,0,0.026336,1,1,0,2,7,,3,1,Gallagher,St,1716109,0,0.026,0,0.632054,7,4.5 +40226,-1,0.049987,0,1,0,2,5,,3,1,Davison,St,4705659,2.224,2.274,0,1.199696,8,4.5 +40228,1,0.02211,1,0,0,1,3,,3,1,E M 8/W M 8,TURN,4700701,0,0.022,0,,5,5 +17202,0,0.138001,2,2,0,2,4,,3,1,Conant,St,1629706,2.04,2.178,0,3.312032,6,4.5 +13873,0,0.051608,2,2,0,2,3,,3,1,Davison,St,4702009,5.491,5.543,0,1.238581,5,5 +16332,0,0.062326,1,1,0,2,5,,3,1,Ryan,Rd,1602103,0,0.062,0,1.49583,8,4.5 +17205,0,0.15732,1,1,0,2,4,,2,1,Conant,St,1629706,1.568,1.726,0,3.77568,8,4.5 +17206,0,0.228155,1,1,0,2,4,,2,2,Conant,St,1629706,1.34,1.568,0,5.475724,8,4.5 +30635,0,0.207492,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.979806,0.15,4 +17204,0,0.119273,1,1,0,2,4,,2,1,Conant,St,1629706,1.726,1.845,0,2.862542,8,4.5 +19147,0,0.151656,1,1,0,2,5,,3,1,Luce,St,1632102,0.273,0.425,0,3.63974,8,4.5 +30925,0,0.017758,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.426183,0.15,4 +33636,0,0.14157,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.397689,0.15,4 +33637,0,0.280122,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.722934,0.15,4 +19172,0,0.110932,1,1,0,2,5,,3,1,Luce,St,1632102,0.162,0.273,0,2.662365,8,4.5 +33635,0,0.16841,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.04184,0.15,4 +13947,0,0.495276,2,2,0,2,4,,3,1,Nevada,St,1585907,2.414,2.909,0,11.886628,6,4.5 +16317,0,0.249796,1,1,0,2,4,,3,1,Ryan,Rd,1602103,0.778,1.028,0,5.995108,6,4.5 +17558,0,0.494441,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.994,25.488,0,11.866585,5,5 +17852,0,0.275969,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,18.924,19.2,0,6.623249,5,5 +33333,0,0.530327,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.72785,0.15,4 +16320,0,0.318919,1,1,0,2,4,,3,1,Ryan,Rd,1602103,0.28,0.599,0,7.654045,6,4.5 +17974,0,0.05712,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.936,24.994,0,1.370881,5,5 +16319,0,0.179428,1,1,0,2,4,,3,1,Ryan,Rd,1602103,0.599,0.778,0,4.306268,6,4.5 +16316,0,0.249542,1,1,0,2,4,,3,1,Ryan,Rd,1602103,1.028,1.278,0,5.989,6,4.5 +33313,0,0.038715,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.929157,0.15,4 +33309,0,0.2593,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.223194,0.15,4 +14251,0,0.096259,2,2,0,2,3,,3,1,Davison,St,4702009,5.894,5.99,0,2.310207,5,5 +33308,0,0.243641,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.847377,0.15,4 +16302,-1,0.231891,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.163,0.395,0,5.565387,5,5 +17172,0,0.216372,1,1,0,2,5,,3,1,Charles,St,1631501,0.84,1.057,0,5.192934,8,4.5 +18974,0,0.128937,1,1,0,2,4,,3,1,Caniff,St,1632110,1.992,2.121,0,3.09449,6,4.5 +19082,0,0.097105,1,1,0,2,5,,3,1,Luce,St,1632102,0.898,0.995,0,2.33051,8,4.5 +19460,0,0.222839,1,1,0,2,5,,3,1,Buffalo,St,1712103,0.798,1.02,0,5.34813,8,4.5 +22418,1,0.23003,1,0,0,1,4,,3,1,Harold,St,4700638,0,0.23,0,,6,4.5 +22475,0,0.207847,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,0.169,0.376,0,4.988322,6,4.5 +23198,-1,0.043289,0,2,0,2,3,DIV,3,1,Mount Elliott,St,4704717,0.021,0.064,0,1.038948,5,5 +23848,1,0.232653,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,0.633,0.865,0,5.583662,5,5 +23850,1,0.053398,2,0,0,2,3,DIV,3,1,Mount Elliott,St,4707516,0.543,0.596,0,1.281557,5,5 +23855,1,0.04191,2,0,0,1,3,,3,1,Mound/Mount Elliott,Ramp,4707513,0,0.042,0,,5,5 +30320,0,0.126133,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.027185,0.15,4 +30917,0,0.218244,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.23785,0.15,4 +18976,0,0.252799,1,1,0,2,4,,3,1,Caniff,St,1632110,1.734,1.987,0,6.067183,6,4.5 +19461,0,0.282569,1,1,0,2,5,,3,1,Buffalo,St,1712103,0.515,0.798,0,6.781651,8,4.5 +30520,0,0.255878,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.141079,0.15,4 +30924,0,0.288397,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.921531,0.15,4 +30918,0,0.0332,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.796802,0.15,4 +16310,-1,0.139836,0,1,0,2,3,DIV,3,1,Mound,Rd,1602205,0,0.14,0,3.356068,5,5 +23197,-1,0.035588,0,2,0,2,3,DIV,3,1,Mount Elliott,St,4704717,0.064,0.1,0,0.854121,5,5 +23857,1,0.022875,1,0,0,2,3,DIV,3,1,Mound,Rd,4707512,0.108,0.131,0,0.548994,5,5 +23860,1,0.064607,1,0,0,2,3,DIV,3,1,Mound,Rd,4707512,0,0.065,0,1.550556,5,5 +18975,0,0.005305,1,1,0,2,4,,3,1,Caniff,St,1632110,1.987,1.992,0,0.127321,6,4.5 +23859,1,0.043192,1,0,0,2,3,DIV,3,1,Mound,Rd,4707512,0.065,0.108,0,1.036597,5,5 +16308,-1,0.02292,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.14,0.163,0,0.550076,5,5 +23849,1,0.036692,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,0.596,0.633,0,0.880619,5,5 +16293,-1,0.200366,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.395,0.595,0,4.808787,5,5 +17174,0,0.226954,1,1,0,2,5,,3,1,Charles,St,1631501,0.576,0.803,0,5.446902,8,4.5 +19131,0,0.101574,1,1,0,2,5,,3,1,Luce,St,1632102,0.633,0.735,0,2.437783,8,4.5 +19459,0,0.248973,1,1,0,2,5,,3,1,Buffalo,St,1712103,1.02,1.269,0,5.975342,8,4.5 +23847,1,0.248551,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,0.865,1.114,0,5.965235,5,5 +17175,0,0.050152,1,1,0,2,5,,3,1,Charles,St,1631501,0.526,0.576,0,1.203651,8,4.5 +17173,0,0.037045,1,1,0,2,5,,3,1,Charles,St,1631501,0.803,0.84,0,0.889088,8,4.5 +19096,0,0.136202,1,1,0,2,5,,3,1,Luce,St,1632102,0.735,0.871,0,3.268857,8,4.5 +30915,0,0.14384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.452149,0.15,4 +16291,-1,0.048669,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.595,0.644,0,1.168061,5,5 +30914,0,0.047967,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.151213,0.15,4 +19090,0,0.027066,1,1,0,2,5,,3,1,Luce,St,1632102,0.871,0.898,0,0.649588,8,4.5 +23020,0,0.076844,2,2,0,2,4,,3,1,Mount Elliott,Ct,4705805,0.138,0.214,0,1.844254,6,4.5 +23852,0,0.281552,1,1,0,2,3,,3,1,Mount Elliott,St,4707516,0.24,0.521,0,6.757245,5,5 +23329,0,0.137634,1,1,0,2,4,,3,1,Mount Elliott,Ct,4705805,0,0.138,0,3.303207,6,4.5 +23199,-1,0.021106,0,2,0,2,3,DIV,3,1,Mount Elliott,St,4704717,0,0.021,0,0.506541,5,5 +23851,1,0.021135,2,0,0,2,3,DIV,3,1,Mount Elliott,St,4707516,0.521,0.543,0,0.507249,5,5 +13726,0,0.029453,1,1,0,2,5,,3,1,Lynch,Rd,1586705,0.182,0.212,0,0.706869,8,4.5 +19078,0,0.119407,1,1,0,2,5,,3,1,Luce,St,1632102,0.995,1.114,0,2.865768,8,4.5 +22474,0,0.248455,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,0.376,0.625,0,5.962926,6,4.5 +13802,0,0.225317,2,2,0,2,4,,3,1,Davison,St,4702009,6.569,6.794,0,5.407603,6,4.5 +14293,0,0.226133,2,2,0,2,4,,3,1,Nevada,St,1585907,3.419,3.645,0,5.427188,6,4.5 +16278,-1,0.251396,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,1.391,1.642,0,6.033499,5,5 +18161,0,0.213461,2,2,0,2,3,,3,1,McNichols,Rd,1680701,26.016,26.229,0,5.123067,5,5 +18570,0,0.227341,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,19.933,20.161,0,5.45619,5,5 +22471,0,0.216838,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,1.156,1.372,0,5.204119,6,4.5 +23842,1,0.251325,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,1.861,2.113,0,6.031788,5,5 +30633,0,0.249798,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.995144,0.15,4 +30921,0,0.255707,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.136974,0.15,4 +14194,0,0.168816,2,2,0,2,4,,3,1,Nevada,St,1585907,3.228,3.397,0,4.051594,6,4.5 +16285,-1,0.235921,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.891,1.126,0,5.662116,5,5 +18698,0,0.240098,2,2,0,2,3,,3,1,McNichols,Rd,1680701,25.749,25.989,0,5.762362,5,5 +23845,1,0.24779,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,1.361,1.608,0,5.946957,5,5 +18386,0,0.026349,1,1,1,2,3,,3,1,McNichols,Rd,1680701,25.989,26.016,0,0.632376,5,5 +16282,-1,0.15634,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,1.126,1.283,0,3.752169,5,5 +23844,1,0.145086,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,1.608,1.753,0,3.482076,5,5 +14159,0,0.027068,2,2,0,2,3,,3,1,Davison,St,4702009,6.542,6.569,0,0.649627,5,5 +13677,0,0.021644,2,2,0,2,4,,3,1,Nevada,St,1585907,3.397,3.419,0,0.519451,6,4.5 +16280,-1,0.108027,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,1.283,1.391,0,2.592651,5,5 +23843,1,0.107903,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,1.753,1.861,0,2.589678,5,5 +16275,-1,0.251119,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,1.642,1.893,0,6.026866,5,5 +23841,1,0.251122,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,2.113,2.364,0,6.026924,5,5 +30920,0,0.251114,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.026741,0.15,4 +30919,0,0.118736,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.849666,0.15,4 +33622,0,0.140733,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.37758,0.15,4 +19137,0,0.112133,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,19.799,19.911,0,2.691183,5,5 +18941,0,0.022099,1,1,1,2,3,,3,1,7 Mile,Rd,1700106,19.911,19.933,0,0.530374,5,5 +14471,0,0.135493,2,2,0,2,4,,3,1,Davison,St,4702009,6.794,6.929,0,3.251826,6,4.5 +17883,0,0.140451,2,2,0,2,3,,3,1,McNichols,Rd,1680701,26.229,26.369,0,3.370829,5,5 +22472,0,0.282777,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,0.873,1.156,0,6.786651,6,4.5 +30634,0,0.250722,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.01733,0.15,4 +30632,0,0.034879,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.837105,0.15,4 +14169,0,0.13492,2,2,0,2,4,,3,1,Nevada,St,1585907,3.645,3.78,0,3.238088,6,4.5 +18350,0,0.132561,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,20.161,20.293,0,3.181463,5,5 +22469,0,0.251158,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,1.624,1.875,0,6.027801,6,4.5 +33623,0,0.132968,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.191238,0.15,4 +33624,0,0.256552,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.157245,0.15,4 +22470,0,0.251439,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,1.372,1.624,0,6.034531,6,4.5 +30646,0,0.244402,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.865646,0.15,4 +3895,0,0.480014,2,2,0,2,4,,3,4,Ryan,Rd,799302,0.02,0.5,0,11.520325,6,4.5 +4185,-1,0.244479,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,1.53,1.774,0,5.867506,5,5 +4196,1,0.331787,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,1.499,1.831,0,7.962885,5,5 +4681,1,0.468776,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,0.019,0.488,0,11.250617,5,5 +5370,0,0.467511,2,2,0,2,4,,3,4,9 Mile,Rd,803006,1.521,1.988,0,11.220261,6,4.5 +6842,0,0.608065,2,2,0,2,5,,3,4,Sherwood,Ave,804507,0.021,0.629,0,14.593556,8,4.5 +6844,1,0.498442,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,12.353,12.851,0,11.962614,5,5 +14103,1,0.61085,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,3.176,3.786,0,14.660398,6,4.5 +22202,-1,0.609411,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1.224,1.833,0,14.625864,6,4.5 +25620,0,0.535334,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.84801,0.15,4 +25621,0,0.515936,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.382472,0.15,4 +25745,0,0.519239,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.461736,0.15,4 +25747,0,0.491966,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.807194,0.15,4 +25749,0,0.496582,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.917964,0.15,4 +25750,0,0.512141,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.291375,0.15,4 +4460,-1,0.439401,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,1.091,1.53,0,10.545623,5,5 +4483,1,0.389795,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,1.11,1.499,0,9.355082,5,5 +14418,1,0.275564,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,2.9,3.176,0,6.61354,6,4.5 +16312,0,0.236422,1,1,0,2,4,,3,1,Ryan,Rd,1602103,1.789,2.025,0,5.674118,6,4.5 +25645,0,0.2665,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.396007,0.15,4 +33347,0,0.232478,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.57948,0.15,4 +33618,0,0.285106,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.842533,0.15,4 +16314,0,0.156843,1,1,0,2,4,,3,1,Ryan,Rd,1602103,1.618,1.775,0,3.764234,6,4.5 +22204,-1,0.112015,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1,1.112,0,2.688357,6,4.5 +16313,0,0.013954,1,1,0,2,4,,3,1,Ryan,Rd,1602103,1.775,1.789,0,0.334894,6,4.5 +22203,-1,0.111392,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1.112,1.224,0,2.673411,6,4.5 +4788,-1,0.093093,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,0.998,1.091,0,2.234227,5,5 +4930,1,0.112487,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,0.997,1.11,0,2.699686,5,5 +16311,0,0.228241,1,1,0,2,4,,3,1,Ryan,Rd,1602103,2.025,2.253,0,5.477776,6,4.5 +30387,0,0.254029,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.096693,0.15,4 +33345,0,0.234587,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.630079,0.15,4 +33346,0,0.095826,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.299818,0.15,4 +4571,0,0.010582,1,1,0,2,4,,3,1,Ryan,Rd,799302,0,0.011,0,0.253957,6,4.5 +4186,0,0.009733,1,1,0,2,4,,3,4,Ryan,Rd,799302,0.011,0.02,0,0.233584,6,4.5 +33326,0,0.247759,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.946208,0.15,4 +4178,0,0.500198,2,2,0,2,4,,3,4,Ryan,Rd,799302,0.534,1.034,0,12.004746,6,4.5 +5371,0,0.524912,2,2,0,2,4,,3,4,9 Mile,Rd,803006,0.996,1.521,0,12.597882,6,4.5 +25622,0,0.509639,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.231338,0.15,4 +25748,0,0.503473,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.083354,0.15,4 +26165,0,0.508998,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.215946,0.15,4 +4916,0,0.033367,2,2,0,2,4,,3,4,Ryan,Rd,799302,0.5,0.534,0,0.800802,6,4.5 +3889,0,0.249714,2,2,1,2,4,,3,4,Ryan,Rd,799302,1.034,1.283,0,5.993142,6,4.5 +25996,0,0.255262,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.126288,0.15,4 +3896,1,0.103064,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.016,2.119,0,2.473535,5,5 +4561,-1,0.090475,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.016,2.107,0,2.171401,5,5 +14031,1,0.230579,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,3.915,4.146,0,5.533889,6,4.5 +16250,-1,0.241017,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,2.401,2.642,0,5.784397,5,5 +17183,0,0.24352,1,1,0,2,5,,3,1,Sherwood,St,1630706,1.522,1.765,0,5.844487,8,4.5 +22198,-1,0.230346,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,2.016,2.246,0,5.528301,6,4.5 +22465,0,0.303411,1,1,0,2,4,,3,1,Mount Elliott,St,4705057,2.381,2.684,0,7.281876,6,4.5 +23837,1,0.367993,3,0,0,2,3,DIV,3,1,Mound,Rd,4707516,2.871,3.239,0,8.831824,5,5 +31510,0,0.248525,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.964598,0.15,4 +33357,0,0.238036,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.712859,0.15,4 +33617,0,0.246963,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.927118,0.15,4 +16271,-1,0.156859,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,2.23,2.387,0,3.764617,5,5 +22201,-1,0.107504,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1.833,1.94,0,2.580093,6,4.5 +23839,1,0.156947,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,2.7,2.857,0,3.766727,5,5 +33322,0,0.24693,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.926325,0.15,4 +33610,0,0.265058,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.361394,0.15,4 +33321,0,0.136677,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.280253,0.15,4 +33611,0,0.151526,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.636627,0.15,4 +14210,1,0.110676,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,3.786,3.897,0,2.656235,6,4.5 +22200,-1,0.057228,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1.94,1.998,0,1.373472,6,4.5 +13907,1,0.018311,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,3.897,3.915,0,0.439458,6,4.5 +22199,-1,0.018209,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1.998,2.016,0,0.437006,6,4.5 +16252,-1,0.013943,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,2.387,2.401,0,0.33463,5,5 +23838,1,0.013944,3,0,0,2,3,DIV,3,1,Mound,Rd,4707516,2.857,2.871,0,0.33466,5,5 +3894,-1,0.224801,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,1.774,1.999,0,5.395219,5,5 +3900,1,0.168225,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,1.831,1.999,0,4.037408,5,5 +16247,-1,0.23179,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,2.642,2.873,0,5.562961,5,5 +23836,1,0.104727,3,0,0,2,3,DIV,3,1,Mound,Rd,4707516,3.239,3.344,0,2.513447,5,5 +31511,0,0.27533,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.60792,0.15,4 +33355,0,0.123823,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.971756,0.15,4 +33356,0,0.240297,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.767129,0.15,4 +33360,0,0.195137,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.683279,0.15,4 +3994,1,0.010224,3,0,0,2,3,DIV,3,1,Mound,Rd,799110,0,0.01,0,0.245369,5,5 +24247,1,0.010165,2,0,0,2,3,DIV,3,1,Mound,Rd,4718270,0.009,0.019,0,0.243955,5,5 +4921,1,0.01667,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,1.999,2.016,0,0.400073,5,5 +4915,-1,0.017292,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,1.999,2.016,0,0.415003,5,5 +24479,1,0.008856,2,0,0,2,3,DIV,3,4,Mound,Rd,4718270,0,0.009,0,0.212554,5,5 +5016,1,0.009044,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,0.01,0.019,0,0.217062,5,5 +14438,0,0.086986,3,3,0,2,4,,3,1,Outer,Dr,1586002,4.187,4.274,0,2.087666,6,4.5 +17185,0,0.158389,1,1,0,2,5,,3,1,Sherwood,St,1630706,1.351,1.509,0,3.801335,8,4.5 +22467,0,0.157492,1,1,0,2,4,,3,1,Mount Elliott,St,4705057,2.211,2.368,0,3.779812,6,4.5 +30575,0,0.152918,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.67004,0.15,4 +30597,0,0.248391,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.961382,0.15,4 +13724,1,0.040913,3,0,0,2,4,DV2,3,1,Outer,Dr,1586002,4.146,4.187,0,0.98191,6,4.5 +22197,-1,0.041201,0,3,0,2,4,DV2,3,1,Outer,Dr,4704283,2.246,2.287,0,0.988829,6,4.5 +22466,0,0.012983,1,1,0,2,4,,3,1,Mount Elliott,St,4705057,2.368,2.381,0,0.311586,6,4.5 +30574,0,0.152502,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.660051,0.15,4 +14329,0,0.087801,3,3,0,2,4,,3,1,Outer,Dr,1586002,4.274,4.362,0,2.107214,6,4.5 +14292,1,0.036394,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,4.362,4.398,0,0.873454,6,4.5 +23814,-1,0.036272,0,2,0,2,4,DV2,3,1,Outer,Dr,4707670,0,0.036,0,0.870529,6,4.5 +17184,0,0.012774,1,1,0,2,5,,3,1,Sherwood,St,1630706,1.509,1.522,0,0.306581,8,4.5 +4258,-1,0.286791,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.107,2.394,0,6.882986,5,5 +4563,1,0.121412,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.248,2.369,0,2.913894,5,5 +17182,0,0.227077,1,1,0,2,5,,3,1,Sherwood,St,1630706,1.765,1.993,0,5.449857,8,4.5 +22464,0,0.170299,1,1,0,2,4,,3,1,Mount Elliott,St,4705057,2.684,2.855,0,4.087168,6,4.5 +30570,0,0.2575,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.18001,0.15,4 +33361,0,0.236506,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.676142,0.15,4 +33616,0,0.14224,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.413756,0.15,4 +4917,1,0.12902,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.119,2.248,0,3.096489,5,5 +33359,0,0.125691,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.016593,0.15,4 +3952,-1,0.105821,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.394,2.499,0,2.539711,5,5 +4260,1,0.129075,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.369,2.498,0,3.09781,5,5 +6843,0,0.011044,2,2,0,2,5,,3,4,Sherwood,St,804507,0.01,0.021,0,0.265054,8,4.5 +6930,0,0.010148,2,2,0,2,5,,3,1,Sherwood,St,804507,0,0.01,0,0.243543,8,4.5 +4298,1,0.5307,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,0.488,1.018,0,12.736795,5,5 +5368,0,0.349602,2,2,1,2,4,,3,4,9 Mile,Rd,803006,2.01,2.359,0,8.390454,6,4.5 +5533,1,0.500267,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,11.853,12.353,0,12.006399,5,5 +6837,0,0.397119,2,2,0,2,5,,3,4,Sherwood,Ave,804507,0.629,1.026,0,9.530861,8,4.5 +25172,0,0.515319,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.36765,0.15,4 +25618,0,0.261769,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.282447,0.15,4 +25619,0,0.243998,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.855949,0.15,4 +5369,0,0.021274,2,2,1,2,4,,3,4,9 Mile,Rd,803006,1.988,2.01,0,0.510573,6,4.5 +25746,0,0.26652,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.39647,0.15,4 +6831,0,0.160791,2,2,0,2,5,,3,4,Sherwood,Ave,804507,1.026,1.187,0,3.858989,8,4.5 +5367,0,0.140073,2,2,1,2,4,,3,4,9 Mile,Rd,803006,2.359,2.499,0,3.361759,6,4.5 +11040,1,0.20127,3,0,0,1,1,,3,1,E I 94,,1576405,31.927,32.128,0,,0.58,7 +12604,0,0.090975,2,2,0,2,5,,3,1,French,Rd,1578003,1.856,1.947,0,2.183403,8,4.5 +12631,0,0.259208,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,1.95,2.209,0,6.220987,8,4.5 +12693,0,0.359863,2,2,1,2,4,,3,1,Harper,Ave,1578108,1.345,1.704,0,8.636721,6,4.5 +13031,0,0.198998,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.615,0.814,0,4.77595,8,4.5 +13052,0,0.241157,1,1,0,2,4,,3,1,McClellan,St,1577907,1.722,1.963,0,5.787759,6,4.5 +13058,0,0.258325,1,1,0,2,4,,3,1,McClellan,St,1577907,0.777,1.035,0,6.199789,6,4.5 +13190,0,0.160897,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,2.095,2.256,0,3.861521,6,4.5 +13681,1,0.39797,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.817,3.215,0,9.55127,6,4.5 +13703,0,0.162166,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.547,0.709,0,3.891976,6,4.5 +13711,1,0.243471,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,1.907,2.151,0,5.843294,6,4.5 +13765,0,0.208219,1,1,0,2,4,,3,1,Lafayette,St,1585508,2.375,2.583,0,4.997263,6,4.5 +13797,1,0.351731,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.094,1.445,0,8.44155,5,5 +13805,1,0.370282,3,0,0,2,3,,3,1,Forest,Ave,5491069,2.299,2.669,0,8.886776,5,5 +13913,-1,0.372024,0,2,0,2,5,,3,1,W I 94 Service Drive,,1587906,0.129,0.501,0,8.928578,8,4.5 +13926,0,0.097494,1,1,1,2,3,,3,1,Mack,Ave,1587509,2.358,2.455,0,2.339865,5,5 +13927,0,0.382552,1,1,0,2,4,,3,1,Van Dyke,St,1587710,1.219,1.601,0,9.181256,6,4.5 +13977,-1,0.374495,0,3,0,1,1,,3,1,W I 94,,1588802,31.731,32.105,0,,0.58,7 +14071,1,0.270034,2,0,0,2,5,,3,1,E I 94 Service Drive,,1588708,0.066,0.336,0,6.480808,8,4.5 +14099,1,0.211178,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.493,1.704,0,5.068271,6,4.5 +17160,0,0.518212,2,2,0,2,5,,3,1,Kercheval,St,1631701,2,2.518,0,12.437094,8,4.5 +17167,0,0.170498,1,1,0,2,5,,3,1,Kercheval,St,1631701,0.738,0.909,0,4.091958,8,4.5 +19199,-1,0.24323,0,3,0,2,4,,3,1,Charlevoix,St,1631706,1.644,1.887,0,5.837516,6,4.5 +19451,0,0.209842,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0.245,0.455,0,5.036199,8,4.5 +19453,-1,0.262104,0,3,0,2,4,,3,1,Charlevoix,St,1712809,0.434,0.696,0,6.290488,6,4.5 +21376,-1,0.372622,0,2,0,2,3,,3,1,Warren,Ave,4700429,4.11,4.482,0,8.942921,5,5 +21868,-1,0.236414,0,2,0,2,3,,3,1,Warren,Ave,4700429,2.675,2.911,0,5.673947,5,5 +22195,1,0.166502,1,0,0,1,4,,3,1,E Jefferson/E Grand,Ramp,4704285,0,0.167,0,,6,4.5 +22525,-1,0.147141,0,3,0,2,3,DIV,3,1,Jefferson,Ave,4705824,2.212,2.359,0,3.531382,5,5 +22598,0,0.216214,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.016,5.232,0,5.189147,5,5 +40678,-1,0.019578,0,2,0,2,4,DIV,3,1,Grand,Blvd,5494519,0,0.02,0,0.469873,6,4.5 +22887,1,0.102292,2,0,0,2,4,DIV,3,1,Grand,Blvd,4705761,0.019,0.121,0,2.455016,6,4.5 +23244,0,0.259311,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,2.686,2.946,0,6.223453,5,5 +23472,-1,0.209268,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.328,0.537,0,5.022436,6,4.5 +23864,1,0.109968,3,0,0,2,3,DIV,3,1,Jefferson,Ave,4707464,0.194,0.304,0,2.639232,5,5 +24238,0,0.184852,1,1,0,2,4,,3,1,Saint Jean,St,4711073,0.477,0.662,0,4.436456,6,4.5 +30380,0,0.273291,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.558977,0.15,4 +30715,0,0.231475,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.5554,0.15,4 +30722,0,0.246598,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.918356,0.15,4 +30726,0,0.255634,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.135207,0.15,4 +30733,0,0.200084,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.802017,0.15,4 +30742,0,0.353231,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.477544,0.15,4 +30979,0,0.345336,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.288076,0.15,4 +33104,0,0.356336,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.552061,0.15,4 +33362,0,0.262122,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.290931,0.15,4 +12057,1,0.170311,2,0,0,2,5,DV2,3,1,McDougall,St,1577806,0.352,0.523,0,4.087452,8,4.5 +12797,0,0.156215,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.069,1.225,0,3.749148,6,4.5 +13198,0,0.189609,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,0.88,1.069,0,4.550604,6,4.5 +13743,-1,0.157521,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,1.52,1.678,0,3.780501,6,4.5 +13824,0,0.137115,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.535,0.672,0,3.290752,6,4.5 +13890,1,0.3645,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.632,1.997,0,8.74801,6,4.5 +13941,1,0.160349,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,1.394,1.554,0,3.848373,6,4.5 +13992,0,0.329593,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.672,1.002,0,7.910231,6,4.5 +14326,0,0.221846,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.229,1.451,0,5.324315,5,5 +14456,0,0.115149,2,2,0,2,4,,3,1,Grand,Blvd,1587703,0.376,0.491,0,2.763578,6,4.5 +17155,-1,0.221736,0,3,0,2,4,,3,1,Charlevoix,St,1631706,0.748,0.969,0,5.321673,6,4.5 +17171,0,0.221794,1,1,0,2,5,,3,1,Kercheval,St,1631701,0,0.222,0,5.323067,8,4.5 +17311,-1,0.082534,0,3,0,2,4,DV2,3,1,Larned,St,1627910,1.035,1.117,0,1.980804,6,4.5 +22405,-1,0.172792,0,2,0,2,5,DV2,3,1,McDougall,St,4701223,0.067,0.24,0,4.14702,8,4.5 +22511,0,0.216815,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.553,1.77,0,5.203551,5,5 +22584,-1,0.161991,0,3,0,2,4,,3,1,Joseph Campau,St,4705698,0,0.162,0,3.887792,6,4.5 +23278,0,0.162189,1,1,0,2,5,,3,1,McDougall,St,4704611,0,0.162,0,3.892547,8,4.5 +23663,0,0.200772,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,1.146,1.347,0,4.818524,5,5 +30510,0,0.230842,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.540204,0.15,4 +30992,0,0.123936,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.97446,0.15,4 +30994,0,0.35969,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.632555,0.15,4 +30995,0,0.329526,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.908623,0.15,4 +30997,0,0.29213,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.011117,0.15,4 +33102,0,0.521944,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.526663,0.15,4 +33367,0,0.216447,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.194717,0.15,4 +33368,0,0.242559,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.821427,0.15,4 +33857,0,0.189453,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.546867,0.15,4 +13653,1,0.291196,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,0.72,1.011,0,6.988704,6,4.5 +13901,1,0.291884,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.33,1.621,0,7.005225,6,4.5 +13946,-1,0.180083,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.956,1.136,0,4.321988,6,4.5 +13993,0,0.109998,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.425,0.535,0,2.639951,6,4.5 +14015,1,0.12826,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.746,0.874,0,3.078236,8,4.5 +14358,1,0.267578,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.478,0.746,0,6.421877,8,4.5 +17314,-1,0.291795,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.451,0.742,0,7.003079,6,4.5 +17322,1,0.109501,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.576,0.685,0,2.628021,6,4.5 +22455,-1,0.2109,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.375,0.685,0,5.061602,6,4.5 +22787,1,0.120235,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.754,0.874,0,2.885633,8,4.5 +22827,1,0.157426,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.597,0.754,0,3.778221,8,4.5 +22828,1,0.118214,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.478,0.597,0,2.837129,8,4.5 +22949,0,0.202573,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.772,0.975,0,4.861754,5,5 +24386,0,0.200502,1,1,0,2,5,,3,1,McDougall,St,4710517,0.334,0.535,0,4.812049,8,4.5 +24397,0,0.323552,1,1,0,2,5,,3,1,Robert Bradby,Dr,4710517,0.011,0.334,0,7.765258,8,4.5 +24414,0,0.428253,1,1,0,2,5,,3,1,Prince Hall,Dr,4710514,0.011,0.439,0,10.278068,8,4.5 +30505,0,0.287417,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.897998,0.15,4 +30507,0,0.157523,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.780552,0.15,4 +30508,0,0.243421,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.842099,0.15,4 +33099,0,0.156489,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.755728,0.15,4 +33668,0,0.339274,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.142566,0.15,4 +33669,0,0.29831,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.15945,0.15,4 +13695,1,0.040869,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,0.668,0.709,0,0.980861,6,4.5 +14091,-1,0.01093,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.834,0.845,0,0.26233,6,4.5 +17324,1,0.2257,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.248,0.376,0,5.416804,6,4.5 +22456,-1,0.226583,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.248,0.375,0,5.437997,6,4.5 +22458,-1,0.010919,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.237,0.248,0,0.262062,6,4.5 +14136,-1,0.040932,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.794,0.834,0,0.982377,6,4.5 +17323,1,0.10229,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.376,0.576,0,2.454959,6,4.5 +17326,1,0.169961,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.067,0.237,0,4.079066,6,4.5 +22460,-1,0.169959,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.067,0.237,0,4.079014,6,4.5 +30305,0,0.174739,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.193735,0.15,4 +33100,0,0.12554,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.01296,0.15,4 +33856,0,0.1617,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.880809,0.15,4 +13969,1,0.043705,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.276,1.319,0,1.04892,6,4.5 +17316,-1,0.043249,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.397,0.44,0,1.037986,6,4.5 +17315,-1,0.010305,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.44,0.451,0,0.247316,6,4.5 +17327,1,0.010853,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.056,0.067,0,0.260462,6,4.5 +22462,-1,0.010897,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.056,0.067,0,0.261524,6,4.5 +13909,1,0.010216,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.319,1.33,0,0.245195,6,4.5 +14046,-1,0.111078,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.845,0.956,0,2.665877,6,4.5 +13663,1,0.01093,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,0.709,0.72,0,0.26233,6,4.5 +17325,1,0.010919,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.237,0.248,0,0.262062,6,4.5 +13838,0,0.171187,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.254,0.425,0,4.108477,6,4.5 +14064,-1,0.086716,0,1,0,2,5,DV2,3,1,Antietam,Ave,1587309,0.877,0.964,0,2.081194,8,4.5 +14421,1,0.15813,2,0,0,2,5,DV2,3,1,Chene,St,1587501,1.071,1.23,0,3.795113,8,4.5 +22831,1,0.085976,1,0,0,2,5,DV2,3,1,Antietam,Ave,4704812,0.213,0.299,0,2.063413,8,4.5 +22833,-1,0.163386,0,2,0,2,5,DV2,3,1,Chene,St,4704811,0.011,0.174,0,3.921255,8,4.5 +33667,0,0.237115,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.690751,0.15,4 +33830,0,0.252212,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.053094,0.15,4 +13881,-1,0.211065,0,1,0,2,5,DV2,3,1,Antietam,Ave,1587309,0.666,0.877,0,5.065568,8,4.5 +22832,1,0.213394,1,0,0,2,5,DV2,3,1,Antietam,Ave,4704812,0,0.213,0,5.121453,8,4.5 +30506,0,0.158455,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.802927,0.15,4 +33666,0,0.168499,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.043967,0.15,4 +17321,1,0.052556,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.685,0.738,0,1.261337,6,4.5 +17212,0,0.010885,1,1,0,2,5,,3,1,Chestnut,St,1629109,0.083,0.094,0,0.261248,8,4.5 +14001,0,0.195888,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.058,0.254,0,4.701314,6,4.5 +14135,0,0.201994,1,1,0,2,5,,3,1,Chene,St,1587501,1.23,1.432,0,4.847849,8,4.5 +13840,0,0.011187,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.047,0.058,0,0.268494,6,4.5 +13742,1,0.16687,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.905,1.071,0,4.004873,8,4.5 +22830,1,0.148438,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.299,0.448,0,3.562516,8,4.5 +22834,0,0.010999,2,2,0,2,5,,3,1,Chene,St,4704811,0,0.011,0,0.263975,8,4.5 +24399,0,0.01093,1,1,0,2,5,,3,1,Robert Bradby,Dr,4710517,0,0.011,0,0.262325,8,4.5 +13850,1,0.030659,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.874,0.905,0,0.735822,8,4.5 +22829,1,0.030693,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.448,0.478,0,0.736638,8,4.5 +24426,0,0.010885,1,1,0,2,5,,3,1,Prince Hall,Dr,4710514,0,0.011,0,0.26124,8,4.5 +13741,1,0.282319,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,1.022,1.304,0,6.775649,6,4.5 +13756,-1,0.282372,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,1.147,1.43,0,6.77693,6,4.5 +13849,0,0.149271,1,1,0,2,4,,3,1,Chene,St,1587501,0.082,0.231,0,3.582508,6,4.5 +14448,1,0.169975,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.297,0.467,0,4.079399,8,4.5 +17312,-1,0.281966,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.753,1.035,0,6.767188,6,4.5 +22672,0,0.171536,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.975,1.146,0,4.116873,5,5 +22771,1,0.17002,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.885,1.055,0,4.080481,8,4.5 +13654,1,0.055053,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.231,0.286,0,1.321269,8,4.5 +22769,1,0.056663,1,0,0,2,5,DV2,3,1,Chene,St,4704812,1.066,1.123,0,1.359913,8,4.5 +17313,-1,0.010719,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.742,0.753,0,0.257245,6,4.5 +22770,1,0.010897,1,0,0,2,5,DV2,3,1,Chene,St,4704812,1.055,1.066,0,0.261524,8,4.5 +13781,1,0.010835,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.286,0.297,0,0.260035,8,4.5 +13897,1,0.010753,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.621,1.632,0,0.258084,6,4.5 +13690,1,0.010981,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.467,0.478,0,0.263547,8,4.5 +13922,-1,0.010876,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,1.136,1.147,0,0.261029,6,4.5 +22772,1,0.010857,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.874,0.885,0,0.260576,8,4.5 +13648,1,0.010807,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,1.011,1.022,0,0.259368,6,4.5 +17296,0,0.185814,1,1,0,2,5,,3,1,Joseph Campau,St,1628009,0.047,0.233,0,4.459532,8,4.5 +30981,0,0.141954,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.406901,0.15,4 +33091,0,0.031013,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.744302,0.15,4 +17297,0,0.047199,1,1,0,2,5,,3,1,Joseph Campau,St,1628009,0,0.047,0,1.132776,8,4.5 +13749,-1,0.090464,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,1.43,1.52,0,2.171147,6,4.5 +13752,1,0.089479,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,1.304,1.394,0,2.147495,6,4.5 +30989,0,0.155425,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.730197,0.15,4 +30990,0,0.110926,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.66222,0.15,4 +33101,0,0.163992,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.935804,0.15,4 +13257,0,0.01106,1,1,0,2,5,,3,1,McDougall,St,1577806,0.523,0.534,0,0.265452,8,4.5 +30996,0,0.123333,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.959988,0.15,4 +12790,0,0.218997,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.332,1.551,0,5.255936,6,4.5 +13193,0,0.160875,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.934,2.095,0,3.861009,6,4.5 +13662,0,0.329013,1,1,1,2,3,,3,1,Mack,Ave,1587509,0.9,1.229,0,7.896302,5,5 +13760,0,0.234744,1,1,0,2,5,,3,1,Canfield,St,1585701,2.016,2.25,0,5.633864,8,4.5 +17157,-1,0.136741,0,3,0,2,4,,3,1,Charlevoix,St,1631706,0.282,0.418,0,3.28178,6,4.5 +22870,0,0.292285,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,2.055,2.347,0,7.014846,5,5 +23236,0,0.384962,1,1,0,2,5,,3,1,McDougall,St,4704611,0.49,0.875,0,9.239077,8,4.5 +30511,0,0.128205,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.076924,0.15,4 +30991,0,0.240582,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.773977,0.15,4 +33233,0,0.250167,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.003997,0.15,4 +13745,0,0.110072,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.654,0.764,0,2.641721,5,5 +23275,0,0.13205,1,1,0,2,5,,3,1,McDougall,St,4704611,0.269,0.401,0,3.169201,8,4.5 +23502,0,0.139778,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.77,1.91,0,3.35467,5,5 +23590,0,0.160289,1,1,0,2,5,,3,1,Joseph Campau,St,4705698,0.162,0.322,0,3.846928,8,4.5 +17158,-1,0.110557,0,3,0,2,4,,3,1,Charlevoix,St,1631706,0.171,0.282,0,2.653378,6,4.5 +23277,0,0.106371,1,1,0,2,5,,3,1,McDougall,St,4704611,0.162,0.269,0,2.552895,8,4.5 +13737,0,0.114461,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.764,0.878,0,2.747055,5,5 +23160,0,0.145307,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.91,2.055,0,3.487362,5,5 +23274,0,0.089254,1,1,0,2,5,,3,1,McDougall,St,4704611,0.401,0.49,0,2.142091,8,4.5 +14415,0,0.022222,1,1,1,2,3,,3,1,Mack,Ave,1587509,0.878,0.9,0,0.533336,5,5 +13674,1,0.23561,3,0,0,2,3,,3,1,Forest,Ave,5491069,0.858,1.094,0,5.654641,5,5 +13793,0,0.231049,1,1,0,2,5,,3,1,Canfield,St,1585701,1.785,2.016,0,5.545176,8,4.5 +30443,0,0.316603,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.59847,0.15,4 +33231,0,0.156319,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.751654,0.15,4 +30526,0,0.021591,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.518183,0.15,4 +17156,-1,0.329248,0,3,0,2,4,,3,1,Charlevoix,St,1631706,0.418,0.748,0,7.901955,6,4.5 +30993,0,0.339562,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.149483,0.15,4 +30512,0,0.085012,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.040293,0.15,4 +13196,0,0.10633,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.225,1.332,0,2.551925,6,4.5 +11993,0,0.110768,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.823,1.934,0,2.658424,6,4.5 +11994,0,0.166606,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.551,1.717,0,3.998544,6,4.5 +23584,0,0.186205,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,2.5,2.686,0,4.468912,5,5 +30509,0,0.191022,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.584525,0.15,4 +31001,0,0.280913,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.741905,0.15,4 +13194,0,0.106048,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.717,1.823,0,2.545149,6,4.5 +22578,0,0.152899,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,2.347,2.5,0,3.669585,5,5 +12009,1,0.01096,2,0,0,2,4,DV2,3,1,Mount Elliott,St,1577808,0.253,0.264,0,0.263037,6,4.5 +12010,0,0.151297,1,1,0,2,5,,3,1,Mount Elliott,St,1577808,0.046,0.197,0,3.631117,8,4.5 +14236,0,0.221855,1,1,0,2,4,,3,1,Lafayette,St,1585508,1.897,2.119,0,5.32451,6,4.5 +17309,-1,0.363394,0,3,0,2,4,DV2,3,1,Larned,St,1627910,1.128,1.492,0,8.721454,6,4.5 +22742,0,0.226628,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,1.72,1.947,0,5.439073,5,5 +23872,-1,0.010897,0,2,0,2,4,DV2,3,1,Mount Elliott,St,4707392,0.056,0.067,0,0.261517,6,4.5 +30977,0,0.093217,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.237214,0.15,4 +30985,0,0.248151,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.955615,0.15,4 +30986,0,0.123345,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.960288,0.15,4 +30987,0,0.237273,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.694558,0.15,4 +31003,0,0.294734,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.073615,0.15,4 +33529,0,0.283553,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.805264,0.15,4 +13877,1,0.36336,3,0,0,2,4,DV2,3,1,Larned,St,1585504,2.008,2.371,0,8.72064,6,4.5 +23328,0,0.215537,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,1.347,1.562,0,5.172899,5,5 +30988,0,0.125082,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.001968,0.15,4 +12060,1,0.055745,2,0,0,2,5,DV2,3,1,McDougall,St,1577806,0.286,0.342,0,1.337869,8,4.5 +22407,-1,0.056329,0,2,0,2,5,DV2,3,1,McDougall,St,4701223,0,0.056,0,1.351907,8,4.5 +13883,1,0.010886,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.997,2.008,0,0.261256,6,4.5 +17310,-1,0.010886,0,3,0,2,4,DV2,3,1,Larned,St,1627910,1.117,1.128,0,0.261256,6,4.5 +22406,-1,0.010835,0,2,0,2,5,DV2,3,1,McDougall,St,4701223,0.056,0.067,0,0.260035,8,4.5 +13258,1,0.010835,2,0,0,2,5,DV2,3,1,McDougall,St,1577806,0.342,0.352,0,0.260035,8,4.5 +23019,0,0.157523,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,1.562,1.72,0,3.780553,5,5 +30978,0,0.150099,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.602379,0.15,4 +13841,1,0.010393,3,0,0,2,4,DV2,3,1,Larned,St,1585504,2.371,2.381,0,0.249431,6,4.5 +23873,-1,0.056015,0,2,0,2,4,DV2,3,1,Mount Elliott,St,4707392,0,0.056,0,1.344355,6,4.5 +13206,1,0.05562,2,0,0,2,4,DV2,3,1,Mount Elliott,St,1577808,0.197,0.253,0,1.334875,6,4.5 +12003,0,0.21844,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,0.507,0.725,0,5.242552,6,4.5 +14330,0,0.208367,1,1,1,2,4,,3,1,Lafayette,St,1585508,1.678,1.886,0,5.000811,6,4.5 +30734,0,0.236258,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.670191,0.15,4 +13199,0,0.154268,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,0.725,0.88,0,3.70242,6,4.5 +13200,1,0.13251,2,0,0,2,4,DV2,3,1,Mount Elliott,St,1577808,0.314,0.446,0,3.180231,6,4.5 +23870,-1,0.132685,0,2,0,2,4,DV2,3,1,Mount Elliott,St,4707392,0.117,0.249,0,3.184442,6,4.5 +12803,1,0.060765,2,0,0,2,4,DV2,3,1,Mount Elliott,St,1577808,0.446,0.507,0,1.458358,6,4.5 +23869,-1,0.062053,0,2,0,2,4,DV2,3,1,Mount Elliott,St,4707392,0.249,0.311,0,1.48926,6,4.5 +14347,0,0.011242,1,1,0,2,4,,3,1,Lafayette,St,1585508,1.886,1.897,0,0.269797,6,4.5 +13205,1,0.049995,2,0,0,2,4,DV2,3,1,Mount Elliott,St,1577808,0.264,0.314,0,1.199871,6,4.5 +17308,-1,0.009967,0,3,0,2,4,DV2,3,1,Larned,St,1627910,1.492,1.502,0,0.239208,6,4.5 +23871,-1,0.049663,0,2,0,2,4,DV2,3,1,Mount Elliott,St,4707392,0.067,0.117,0,1.191911,6,4.5 +39278,1,0.047848,1,0,0,2,3,RSF,3,2,S I 75/Outer,RAMP,1595209,0.273,0.321,0,1.148343,5,5 +13665,-1,0.11245,0,3,0,2,4,DIV,3,1,Grand,Blvd,1587703,0,0.112,0,2.698807,6,4.5 +14250,0,0.25615,1,1,0,2,4,,3,1,Lafayette,St,1585508,2.119,2.375,0,6.147589,6,4.5 +22194,1,0.111543,3,0,0,2,4,DIV,3,1,Grand,Blvd,4704287,0,0.112,0,2.677042,6,4.5 +23430,0,0.072562,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,1.947,2.019,0,1.741485,5,5 +30980,0,0.239638,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.751305,0.15,4 +31002,0,0.123254,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.958086,0.15,4 +31004,0,0.126813,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.04352,0.15,4 +23086,-1,0.175415,0,3,0,2,3,DIV,3,1,Jefferson,Ave,4705824,2.019,2.194,0,4.209956,5,5 +23866,1,0.098861,3,0,0,2,3,DIV,3,1,Jefferson,Ave,4707464,0.076,0.174,0,2.372665,5,5 +23867,1,0.075583,3,0,0,2,3,DIV,3,1,Jefferson,Ave,4707464,0,0.076,0,1.813982,5,5 +22808,-1,0.017843,0,3,0,2,3,DIV,3,1,Jefferson,Ave,4705824,2.194,2.212,0,0.428227,5,5 +23180,1,0.019287,2,0,0,2,4,DIV,3,1,Grand,Blvd,4705761,0,0.019,0,0.462879,6,4.5 +23865,1,0.019463,3,0,0,2,3,DIV,3,1,Jefferson,Ave,4707464,0.174,0.194,0,0.467111,5,5 +13790,0,0.131483,2,2,0,2,4,,3,1,Grand,Blvd,1587703,0.245,0.376,0,3.155589,6,4.5 +14332,0,0.132488,3,3,0,2,4,,3,1,Grand,Blvd,1587703,0.112,0.245,0,3.179703,6,4.5 +13801,0,0.172703,1,1,0,2,4,,3,1,Grand,Blvd,1587703,0.991,1.164,0,4.144872,6,4.5 +13952,1,0.181586,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,1.3,1.482,0,4.358071,6,4.5 +13964,0,0.205225,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.909,2.115,0,4.925411,5,5 +13975,0,0.183696,1,1,0,2,4,,3,1,Grand,Blvd,1587703,0.808,0.991,0,4.408694,6,4.5 +14379,0,0.184158,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.709,0.893,0,4.419782,6,4.5 +17170,0,0.255825,1,1,0,2,5,,3,1,Kercheval,St,1631701,0.222,0.478,0,6.139812,8,4.5 +19125,-1,0.205912,0,3,0,2,4,,3,1,Charlevoix,St,1631706,1.225,1.431,0,4.94189,6,4.5 +30731,0,0.173067,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.153597,0.15,4 +30769,0,0.353522,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.484522,0.15,4 +30998,0,0.251387,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.033277,0.15,4 +33420,0,0.356923,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.566147,0.15,4 +13823,1,0.298475,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,1.002,1.3,0,7.163393,6,4.5 +19207,-1,0.256163,0,3,0,2,4,,3,1,Charlevoix,St,1631706,0.969,1.225,0,6.147913,6,4.5 +30999,0,0.264091,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.338187,0.15,4 +31000,0,0.076888,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.845306,0.15,4 +13976,1,0.174633,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.318,1.493,0,4.191199,6,4.5 +14164,0,0.140636,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.717,1.858,0,3.375262,5,5 +14173,0,0.181614,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.525,1.707,0,4.358736,5,5 +23473,-1,0.174611,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.153,0.328,0,4.190655,6,4.5 +14417,0,0.074259,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.451,1.525,0,1.782211,5,5 +14191,1,0.153958,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.164,1.318,0,3.694981,6,4.5 +23474,-1,0.153487,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0,0.153,0,3.683692,6,4.5 +14408,0,0.0106,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.707,1.717,0,0.254389,5,5 +14171,0,0.051329,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.858,1.909,0,1.231901,5,5 +13768,1,0.260144,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,1.482,1.742,0,6.243449,6,4.5 +14449,0,0.162513,2,2,0,2,4,,3,1,Grand,Blvd,1587703,0.645,0.808,0,3.900309,6,4.5 +17168,0,0.106892,1,1,0,2,5,,3,1,Kercheval,St,1631701,0.632,0.738,0,2.565413,8,4.5 +17169,0,0.154083,1,1,0,2,5,,3,1,Kercheval,St,1631701,0.478,0.632,0,3.698004,8,4.5 +13782,0,0.153798,2,2,0,2,4,,3,1,Grand,Blvd,1587703,0.491,0.645,0,3.691156,6,4.5 +13902,1,0.165334,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,1.742,1.907,0,3.968012,6,4.5 +14116,0,0.243341,1,1,1,2,3,,3,1,Mack,Ave,1587509,2.115,2.358,0,5.840182,5,5 +14119,0,0.325882,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.893,1.219,0,7.821158,6,4.5 +19201,-1,0.112208,0,3,0,2,4,,3,1,Charlevoix,St,1631706,1.431,1.543,0,2.69299,6,4.5 +30729,0,0.05273,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.265528,0.15,4 +30730,0,0.061622,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.478937,0.15,4 +19200,-1,0.100969,0,3,0,2,4,,3,1,Charlevoix,St,1631706,1.543,1.644,0,2.423249,6,4.5 +11084,1,0.361852,3,0,0,1,1,,3,1,E I 94,,1576405,30.833,31.195,0,,0.58,7 +11297,1,0.62358,3,0,0,1,1,,3,1,E I 94,,1576405,30.21,30.833,0,,0.58,7 +11922,0,0.206912,2,2,0,2,3,,3,1,Van Dyke,St,1577904,0.342,0.549,0,4.965888,5,5 +12366,0,0.060524,1,1,0,2,4,,3,1,Harper,Ave,1578108,0,0.061,0,1.452577,6,4.5 +12689,0,0.425333,1,1,0,2,4,,3,1,McClellan,St,1577907,1.963,2.389,0,10.208002,6,4.5 +12701,0,0.096856,1,1,0,2,5,,3,1,Burns,St,1577906,1.171,1.268,0,2.32455,8,4.5 +12703,1,0.196065,1,0,0,1,1,RON,3,1,M 53/E I 94,RAMP,1577905,0,0.196,0,,1.09,4 +12714,0,0.345403,2,2,1,2,4,,3,1,Harper,Ave,1578108,0.385,0.73,0,8.289675,6,4.5 +13119,0,0.342008,2,2,0,2,3,,3,1,Van Dyke,St,1577904,0,0.342,0,8.208199,5,5 +13763,-1,0.616854,0,3,0,1,1,,3,1,W I 94,,1588802,30.176,30.793,0,,0.58,7 +13939,1,0.015079,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.57,1.585,0,0.361905,5,5 +14050,1,0.192855,1,0,0,1,1,ROF,3,1,W I 94/M 53,RAMP,1589110,0,0.193,0,,2.24,5 +14125,1,0.111264,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.862,1.974,0,2.670325,6,4.5 +14143,0,0.033937,1,1,0,2,5,,3,1,Frontenac,St,1587703,2.909,2.943,0,0.814491,8,4.5 +14151,1,0.307828,2,0,0,2,5,,3,1,E I 94 Service Drive,,1586301,0.29,0.598,0,7.387877,8,4.5 +14259,-1,0.311481,0,2,0,2,5,,3,1,Duncan,Ave,1586404,0,0.311,0,7.475542,8,4.5 +14264,0,0.007063,2,2,0,2,5,,3,1,Grinnell,Ave,1586702,0.526,0.533,0,0.169501,8,4.5 +14269,-1,0.325322,0,2,0,2,5,,3,1,Duncan,Ave,1586404,0.349,0.675,0,7.807724,8,4.5 +14397,1,0.327819,2,0,0,2,5,,3,1,E I 94 Service Drive,,1586301,0.642,0.969,0,7.867651,8,4.5 +14437,-1,0.361185,0,3,0,1,1,,3,1,W I 94,,1588802,30.793,31.154,0,,0.58,7 +21631,-1,0.29985,0,2,0,2,3,,3,1,Warren,Ave,4700429,3.469,3.769,0,7.196403,5,5 +22734,0,0.464099,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,3.996,4.46,0,11.138388,5,5 +23320,0,0.367897,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,3.208,3.576,0,8.829534,5,5 +23470,-1,0.160596,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.537,0.698,0,3.854315,6,4.5 +30623,0,0.28075,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.738006,0.15,4 +31005,0,0.050068,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.201636,0.15,4 +33092,0,0.314267,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.542415,0.15,4 +33235,0,0.372792,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.946997,0.15,4 +33244,0,0.170212,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.085084,0.15,4 +12786,0,0.173063,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,2.739,2.912,0,4.153518,6,4.5 +13896,0,0.350791,1,1,0,2,5,,3,1,Frontenac,St,1587703,2.508,2.859,0,8.418978,8,4.5 +14087,0,0.244407,1,1,0,2,4,,3,1,Grand,Blvd,1587703,2.264,2.508,0,5.865769,6,4.5 +21753,-1,0.220229,0,2,0,2,3,,3,1,Warren,Ave,4700429,2.911,3.131,0,5.285505,5,5 +22574,0,0.277215,1,1,0,2,4,,3,1,Grand,Blvd,4705610,0.703,0.98,0,6.653159,6,4.5 +22865,0,0.219048,1,1,0,2,4,,3,1,Grand,Blvd,4705610,0.484,0.703,0,5.257159,6,4.5 +33370,0,0.206396,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.953508,0.15,4 +33525,0,0.244484,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.867606,0.15,4 +12787,0,0.320894,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,2.256,2.576,0,7.701458,6,4.5 +13188,0,0.162742,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,2.576,2.739,0,3.9058,6,4.5 +11980,1,0.159917,1,0,0,2,4,,3,1,Harper,Ave,1577810,0,0.16,0,3.838001,6,4.5 +13171,0,0.051657,1,1,0,2,5,,3,1,Concord,St,1577901,2.867,2.919,0,1.23976,8,4.5 +15002,0,0.05433,1,1,0,2,4,,3,1,Harper,Ave,1591307,0.831,0.885,0,1.30392,6,4.5 +15013,-1,0.157563,0,2,0,2,4,,3,1,Harper,Ave,1591307,0.503,0.661,0,3.781517,6,4.5 +13172,1,0.110519,1,0,0,1,1,RON,3,1,Mount Elliot/E I 94,RAMP,1577809,0,0.111,0,,1.09,4 +14047,1,0.038018,1,0,0,2,4,,3,1,Harper,Ave,4718377,0.963,1.001,0,0.912433,6,4.5 +13712,1,0.015621,1,0,0,2,4,,3,1,Harper,Ave,4718377,0.948,0.963,0,0.374908,6,4.5 +14088,1,0.104715,1,0,0,1,1,ROF,3,1,W I 94/Mount Elliot,RAMP,1589108,0,0.105,0,,2.24,5 +15008,0,0.170379,1,1,0,2,4,,3,1,Harper,Ave,1591307,0.661,0.831,0,4.089095,6,4.5 +14141,0,0.207884,1,1,0,2,5,,3,1,E I 94 Service Drive,,1586301,0.083,0.29,0,4.989205,8,4.5 +15001,0,0.106854,1,1,0,2,4,,3,1,Harper,Ave,1591307,0.885,0.992,0,2.564485,6,4.5 +14390,0,0.049699,1,1,0,2,5,,3,1,Frontenac,St,1587703,2.859,2.909,0,1.192777,8,4.5 +13934,1,0.050105,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.974,2.024,0,1.20252,6,4.5 +21588,-1,0.270638,0,2,0,2,3,,3,1,Warren,Ave,4700429,3.131,3.402,0,6.495313,5,5 +23466,-1,0.062427,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.797,0.859,0,1.498241,6,4.5 +23654,0,0.080799,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,3.127,3.208,0,1.939178,5,5 +33371,0,0.279575,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.709795,0.15,4 +33537,0,0.259356,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.22455,0.15,4 +14462,1,0.124949,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.445,1.57,0,2.998779,5,5 +22941,0,0.161296,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,2.946,3.107,0,3.87111,5,5 +23467,-1,0.098948,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.698,0.797,0,2.374748,6,4.5 +22651,0,0.020242,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,3.107,3.127,0,0.485809,5,5 +14023,0,0.209529,1,1,0,2,4,,3,1,Grand,Blvd,1587703,2.055,2.264,0,5.028686,6,4.5 +21815,-1,0.054438,0,2,0,2,3,,3,1,Warren,Ave,4700429,3.415,3.469,0,1.306501,5,5 +21483,-1,0.012974,0,2,0,2,3,,3,1,Warren,Ave,4700429,3.402,3.415,0,0.311368,5,5 +23465,-1,0.031557,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.859,0.891,0,0.757367,6,4.5 +14241,1,0.030932,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,2.024,2.055,0,0.742357,6,4.5 +11910,0,0.205741,3,3,0,2,3,,3,1,Van Dyke,St,1577904,0.902,1.108,0,4.937791,5,5 +12718,0,0.093137,1,1,0,2,4,,3,1,Harper,Ave,1578108,0.061,0.154,0,2.235283,6,4.5 +14338,0,0.20098,1,1,0,2,5,,3,1,Miller,Rd,1586408,0.557,0.758,0,4.823528,8,4.5 +18404,0,0.275818,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.794,1.07,0,6.61964,8,4.5 +18408,0,0.211641,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.285,0.496,0,5.079374,8,4.5 +18418,0,0.137721,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0,0.138,0,3.305309,8,4.5 +30621,0,0.3069,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.36559,0.15,4 +14373,0,0.23042,1,1,0,2,5,,3,1,Miller,Rd,1586408,0.327,0.557,0,5.53007,8,4.5 +18416,0,0.147134,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.138,0.285,0,3.531205,8,4.5 +25344,0,0.294927,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.078254,0.15,4 +33242,0,0.275376,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.609036,0.15,4 +18407,0,0.165996,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.628,0.794,0,3.983902,8,4.5 +19188,0,0.250734,1,1,0,2,5,,3,1,Huber,St,1632002,0.553,0.804,0,6.017614,8,4.5 +30622,0,0.219527,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.268656,0.15,4 +33251,0,0.274229,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.581504,0.15,4 +33252,0,0.131884,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.165213,0.15,4 +11926,1,0.132139,1,0,0,1,1,ROF,3,1,E I 94/M 53,RAMP,1577903,0,0.132,0,,2.24,5 +12364,0,0.231499,1,1,0,2,4,,3,1,Harper,Ave,1578108,0.154,0.385,0,5.555986,6,4.5 +12725,0,0.181667,3,3,0,2,3,,3,1,Van Dyke,St,1577904,0.72,0.902,0,4.360017,5,5 +14280,1,0.130013,1,0,0,1,1,RON,3,1,M 53/W I 94,RAMP,1589109,0,0.13,0,,1.09,4 +13111,0,0.110316,3,3,0,2,3,,3,1,Van Dyke,St,1577904,0.61,0.72,0,2.647584,5,5 +13986,1,0.017767,1,0,0,2,5,,3,1,E I 94 Service Drive,,1586301,0.624,0.642,0,0.426405,8,4.5 +13116,0,0.061462,2,2,0,2,3,,3,1,Van Dyke,St,1577904,0.549,0.61,0,1.47509,5,5 +13704,1,0.025888,1,0,0,2,5,,3,1,E I 94 Service Drive,,1586301,0.598,0.624,0,0.621306,8,4.5 +14265,-1,0.020568,0,2,0,2,5,,3,1,Duncan,Ave,1586404,0.329,0.349,0,0.493634,8,4.5 +14260,-1,0.017434,0,2,0,2,5,,3,1,Duncan,Ave,1586404,0.311,0.329,0,0.418415,8,4.5 +13108,0,0.477858,3,3,0,2,3,,3,1,Van Dyke,St,1577904,1.15,1.627,0,11.468599,5,5 +14372,0,0.268421,2,2,0,2,5,,3,1,Grinnell,Ave,1586702,0.257,0.526,0,6.442099,8,4.5 +14051,0,0.023913,1,1,0,2,5,,3,1,Saint Cyril,Ave,1586702,0.234,0.257,0,0.573902,8,4.5 +13070,0,0.277803,1,1,0,2,5,,3,1,Burns,St,1577906,0.894,1.171,0,6.66727,8,4.5 +13071,0,0.165144,1,1,0,2,5,,3,1,Burns,St,1577906,0.538,0.703,0,3.963454,8,4.5 +14113,0,0.120423,2,2,0,2,4,,3,1,Van Dyke,St,1587710,1.923,2.043,0,2.89015,6,4.5 +14478,1,0.340947,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.958,2.299,0,8.182722,5,5 +21542,-1,0.340767,0,2,0,2,3,,3,1,Warren,Ave,4700429,3.769,4.11,0,8.178411,5,5 +30504,0,0.354646,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.511507,0.15,4 +33238,0,0.397876,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.549029,0.15,4 +13804,1,0.189338,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.769,1.958,0,4.544102,5,5 +14453,0,0.158465,1,1,0,2,4,,3,1,Van Dyke,St,1587710,1.601,1.76,0,3.803152,6,4.5 +30744,0,0.199002,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.776051,0.15,4 +30745,0,0.18866,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.527833,0.15,4 +30746,0,0.203068,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.873622,0.15,4 +13744,1,0.183689,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.585,1.769,0,4.408543,5,5 +13911,1,0.158687,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.704,1.862,0,3.808478,6,4.5 +30743,0,0.198341,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.760175,0.15,4 +14232,0,0.163262,2,2,0,2,4,,3,1,Van Dyke,St,1587710,1.76,1.923,0,3.918295,6,4.5 +23002,0,0.42012,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,3.576,3.996,0,10.082869,5,5 +13924,0,0.103318,2,2,0,2,4,,3,1,Van Dyke,St,1587710,2.043,2.147,0,2.479639,6,4.5 +30741,0,0.184997,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.439937,0.15,4 +30747,0,0.339274,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.142572,0.15,4 +33365,0,0.067396,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.6175,0.15,4 +12702,0,0.191154,1,1,0,2,5,,3,1,Burns,St,1577906,0.703,0.894,0,4.587698,8,4.5 +10888,1,0.595226,3,0,0,1,1,,3,1,E I 94,,1576405,31.195,31.79,0,,0.58,7 +12358,0,0.1402,2,2,1,2,4,,3,1,Harper,Ave,1578108,1.009,1.149,0,3.364802,6,4.5 +13039,0,0.077964,1,1,1,2,4,,3,1,McClellan,St,1577907,2.601,2.679,0,1.871132,6,4.5 +13719,-1,0.477134,0,3,0,1,1,,3,1,W I 94,,1588802,31.154,31.631,0,,0.58,7 +13923,0,0.462354,2,2,0,2,5,,3,1,Grinnell,Ave,1586702,0.533,0.995,0,11.096489,8,4.5 +14261,0,0.32105,1,1,0,2,5,,3,1,Duncan,Ave,1586404,0.675,0.996,0,7.705201,8,4.5 +22891,0,0.307808,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.708,5.016,0,7.387401,5,5 +30983,0,0.308207,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.396971,0.15,4 +31009,0,0.273326,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.559834,0.15,4 +12711,0,0.223423,2,2,1,2,4,,3,1,Harper,Ave,1578108,0.786,1.009,0,5.362148,6,4.5 +13065,0,0.110362,1,1,0,2,5,,3,1,Burns,St,1577906,1.533,1.643,0,2.64868,8,4.5 +13068,0,0.213406,1,1,0,2,5,,3,1,Burns,St,1577906,1.268,1.482,0,5.121741,8,4.5 +12700,0,0.051329,1,1,0,2,5,,3,1,Burns,St,1577906,1.482,1.533,0,1.23189,8,4.5 +12360,0,0.05514,2,2,1,2,4,,3,1,Harper,Ave,1578108,0.73,0.786,0,1.323354,6,4.5 +31008,0,0.471923,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.326145,0.15,4 +11196,1,0.136288,3,0,0,1,1,,3,1,E I 94,,1576405,31.79,31.927,0,,0.58,7 +12684,1,0.218113,1,0,0,1,1,RON,3,1,M 3/E I 94,RAMP,1577910,0,0.218,0,,1.09,4 +12696,0,0.142406,2,2,1,2,4,,3,1,Harper,Ave,1578108,1.149,1.291,0,3.417749,6,4.5 +12983,0,0.170685,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,2.209,2.38,0,4.096434,8,4.5 +13051,0,0.072266,1,1,0,2,4,,3,1,McClellan,St,1577907,2.389,2.461,0,1.734381,6,4.5 +19452,0,0.24529,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0,0.245,0,5.886959,8,4.5 +23524,0,0.087278,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.588,4.675,0,2.094682,5,5 +24298,1,0.161048,1,0,0,1,1,ROF,3,1,E I 94/M 3,RAMP,4710282,0,0.161,0,,2.24,5 +12688,0,0.139867,1,1,1,2,4,,3,1,McClellan,St,1577907,2.461,2.601,0,3.356804,6,4.5 +14100,1,0.192723,1,0,0,1,1,RON,3,1,M 3/W I 94,RAMP,1587905,0,0.193,0,,1.09,4 +14393,-1,0.10011,0,3,0,1,1,,3,1,W I 94,,1588802,31.631,31.731,0,,0.58,7 +22817,0,0.077075,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.504,4.581,0,1.84981,5,5 +24490,1,0.204341,1,0,0,1,1,ROF,3,1,W I 94/M 3,RAMP,4710000,0,0.204,0,,2.24,5 +23439,0,0.038274,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.46,4.498,0,0.918567,5,5 +23095,0,0.006383,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.498,4.504,0,0.153187,5,5 +22534,0,0.006676,3,3,1,2,3,,3,1,Gratiot,Ave,4705742,4.581,4.588,0,0.160216,5,5 +12627,0,0.052899,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,2.38,2.433,0,1.269573,8,4.5 +12352,0,0.053094,2,2,1,2,4,,3,1,Harper,Ave,1578108,1.291,1.345,0,1.274254,6,4.5 +12624,0,0.043543,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,2.505,2.549,0,1.045042,8,4.5 +12981,0,0.072459,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,2.433,2.505,0,1.739026,8,4.5 +23184,0,0.032646,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.675,4.708,0,0.783494,5,5 +13612,0,0.361867,2,2,0,2,5,,3,1,Grinnell,Ave,1586702,0.995,1.357,0,8.684806,8,4.5 +30982,0,0.288802,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.931242,0.15,4 +33372,0,0.266236,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.389668,0.15,4 +12699,0,0.229732,1,1,0,2,4,,3,1,McClellan,St,1577907,0,0.23,0,5.513572,6,4.5 +13032,0,0.18504,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.279,0.464,0,4.440971,8,4.5 +13707,0,0.18268,1,1,0,2,4,,3,1,Lafayette,St,1585508,2.638,2.82,0,4.384326,6,4.5 +13733,0,0.067398,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.078,0.145,0,1.61754,6,4.5 +17162,0,0.198565,2,2,0,2,5,,3,1,Kercheval,St,1631701,1.615,1.813,0,4.765566,8,4.5 +39966,0,0.105043,1,1,0,2,5,,3,1,Inselruhe,St,5494512,0.298,0.403,0,2.521041,8,4.5 +18529,1,0.340705,2,0,0,2,5,,3,1,Central,Way,1633203,0.498,0.838,0,8.176917,8,4.5 +22882,0,0.163101,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,2.666,2.829,0,3.914423,5,5 +22948,0,0.120796,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.281,3.402,0,2.899107,5,5 +30735,0,0.199126,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.779029,0.15,4 +31010,0,0.232153,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.571668,0.15,4 +33154,0,0.502906,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.069742,0.15,4 +33825,0,0.273941,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.574588,0.15,4 +39965,0,0.112615,1,1,0,2,5,,3,1,Inselruhe,St,5494512,0.185,0.298,0,2.702757,8,4.5 +18532,1,0.151175,2,0,0,2,5,,3,1,Central,Way,1633203,0,0.151,0,3.628201,8,4.5 +39960,1,0.130474,2,0,0,2,5,,3,1,Picnic,Way,5494510,0.223,0.354,0,3.131381,8,4.5 +23602,0,0.427066,2,2,1,2,4,,,1,Douglas MacArthur,Brg,4705761,0.15,0.577,0,10.249588,3,4 +39951,1,0.64508,3,0,0,2,5,,3,1,Riverbank,Rd,5494522,0,0.645,0,15.481918,8,4.5 +18604,1,0.153068,3,0,0,2,5,,3,1,Sunset,Dr,1633110,0,0.153,0,3.673624,8,4.5 +18590,1,0.125214,2,0,0,2,5,,3,1,Casino,Way,1633110,0.153,0.278,0,3.005143,8,4.5 +23175,0,0.193609,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,2.473,2.666,0,4.646626,5,5 +23515,0,0.113493,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,2.359,2.473,0,2.723841,5,5 +30709,0,0.166428,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.994262,0.15,4 +30713,0,0.223203,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.356875,0.15,4 +22196,1,0.187595,1,0,0,1,4,,3,1,E Grand/E Jefferson,Ramp,4704284,0,0.188,0,,6,4.5 +22594,1,0.028749,2,0,0,2,4,DIV,3,1,Grand,Blvd,4705761,0.121,0.15,0,0.689988,6,4.5 +23863,1,0.041944,3,0,0,2,3,DIV,3,1,Jefferson,Ave,4707464,0.304,0.346,0,1.006668,5,5 +30714,0,0.103375,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.480995,0.15,4 +14146,0,0.054674,1,1,0,2,4,,3,1,Lafayette,St,1585508,2.583,2.638,0,1.312171,6,4.5 +30716,0,0.100138,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.403312,0.15,4 +13921,0,0.077762,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0,0.078,0,1.866283,6,4.5 +40066,0,0.58693,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.086317,0.15,4 +18531,1,0.346745,2,0,0,2,5,,3,1,Central,Way,1633203,0.151,0.498,0,8.321879,8,4.5 +39963,0,0.185162,1,1,0,2,5,,3,1,Inselruhe,St,5494512,0,0.185,0,4.4439,8,4.5 +13871,1,0.124414,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.379,2.503,0,2.985944,6,4.5 +14470,0,0.243411,1,1,0,2,4,,3,1,Lafayette,St,1585508,2.82,3.064,0,5.841876,6,4.5 +17165,0,0.15202,1,1,0,2,5,,3,1,Kercheval,St,1631701,1.152,1.304,0,3.648491,8,4.5 +19456,-1,0.092252,0,3,0,2,4,,3,1,Charlevoix,St,1712809,0.027,0.119,0,2.214056,6,4.5 +30721,0,0.155172,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.72413,0.15,4 +30723,0,0.158699,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.808777,0.15,4 +30724,0,0.109217,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.621197,0.15,4 +31996,0,0.298998,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.175957,0.15,4 +33123,0,0.348916,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.373985,0.15,4 +33374,0,0.105919,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.542053,0.15,4 +33378,0,0.227686,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.464459,0.15,4 +13727,0,0.210697,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.145,0.356,0,5.056735,6,4.5 +14401,0,0.191195,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.356,0.547,0,4.588673,6,4.5 +17166,0,0.243238,1,1,0,2,5,,3,1,Kercheval,St,1631701,0.909,1.152,0,5.837702,8,4.5 +30732,0,0.180599,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.334374,0.15,4 +33377,0,0.174822,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.195725,0.15,4 +19192,-1,0.228517,0,3,0,2,4,,3,1,Charlevoix,St,1631706,1.887,2.116,0,5.484408,6,4.5 +30728,0,0.073042,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.752997,0.15,4 +30984,0,0.256367,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.152813,0.15,4 +31700,0,0.283036,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.792873,0.15,4 +13694,1,0.144338,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.235,2.379,0,3.464122,6,4.5 +13885,1,0.083864,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.151,2.235,0,2.012724,6,4.5 +23861,-1,0.029525,0,3,0,2,4,,3,1,Charlevoix,St,4707490,0,0.03,0,0.708597,6,4.5 +23597,0,0.300943,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,2.916,3.217,0,7.222635,5,5 +30725,0,0.297714,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.145129,0.15,4 +18371,0,0.088823,1,1,0,2,4,,3,1,Iroquois,St,1634303,0,0.089,0,2.131746,6,4.5 +22589,0,0.086453,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,2.829,2.916,0,2.074873,5,5 +23255,0,0.06417,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.217,3.281,0,1.540092,5,5 +12698,0,0.189829,1,1,0,2,4,,3,1,McClellan,St,1577907,0.344,0.534,0,4.555895,6,4.5 +13688,1,0.115269,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.503,2.618,0,2.766461,6,4.5 +13866,1,0.198501,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.618,2.817,0,4.764029,6,4.5 +17163,0,0.173199,2,2,0,2,5,,3,1,Kercheval,St,1631701,1.442,1.615,0,4.156781,8,4.5 +19454,-1,0.198839,0,3,0,2,4,,3,1,Charlevoix,St,1712809,0.235,0.434,0,4.772148,6,4.5 +17164,0,0.137667,2,2,0,2,5,,3,1,Kercheval,St,1631701,1.304,1.442,0,3.304003,8,4.5 +12695,0,0.099644,1,1,0,2,4,,3,1,McClellan,St,1577907,0.677,0.777,0,2.391456,6,4.5 +13061,0,0.143721,1,1,0,2,4,,3,1,McClellan,St,1577907,0.534,0.677,0,3.449313,6,4.5 +19455,-1,0.115398,0,3,0,2,4,,3,1,Charlevoix,St,1712809,0.119,0.235,0,2.769554,6,4.5 +13063,0,0.114063,1,1,0,2,4,,3,1,McClellan,St,1577907,0.23,0.344,0,2.737523,6,4.5 +12675,0,0.151421,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.464,0.615,0,3.634112,8,4.5 +39955,1,0.350953,3,0,0,2,5,,3,1,Riverbank,Rd,5494522,0.826,1.177,0,8.422877,8,4.5 +33157,0,0.28504,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.840952,0.15,4 +39954,1,0.181013,3,0,0,2,5,,3,1,Riverbank,Rd,5494522,0.645,0.826,0,4.344323,8,4.5 +33155,0,0.157356,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.776545,0.15,4 +39961,1,0.053931,2,0,0,2,5,,3,1,Vista,Dr,5494516,0,0.054,0,1.294356,8,4.5 +22671,0,0.207973,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.402,3.61,0,4.991361,5,5 +23018,0,0.449727,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.869,4.318,0,10.793439,5,5 +33156,0,0.329111,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.898663,0.15,4 +17161,0,0.18686,2,2,0,2,5,,3,1,Kercheval,St,1631701,1.813,2,0,4.484651,8,4.5 +23662,0,0.069341,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.61,3.679,0,1.664173,5,5 +30711,0,0.046856,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.124541,0.15,4 +30712,0,0.191353,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.592478,0.15,4 +33375,0,0.261642,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.279402,0.15,4 +12676,0,0.165506,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.113,0.279,0,3.972142,8,4.5 +13033,0,0.11327,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0,0.113,0,2.718469,8,4.5 +23327,0,0.189669,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.679,3.869,0,4.552055,5,5 +24239,0,0.152103,1,1,0,2,5,,3,1,Saint Jean,St,4711073,0.325,0.477,0,3.650468,8,4.5 +12300,0,0.296378,2,2,1,2,4,,3,1,Harper,Ave,1578108,2.26,2.556,0,7.113072,6,4.5 +12615,0,0.360384,1,1,0,2,5,,3,1,French,Rd,1578003,0.653,1.013,0,8.649206,8,4.5 +12617,0,0.329472,1,1,0,2,5,,3,1,French,Rd,1578003,0,0.329,0,7.907317,8,4.5 +12995,0,0.28671,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,1.663,1.95,0,6.881043,8,4.5 +13709,0,0.112194,1,1,1,2,3,,3,1,Mack,Ave,1587509,3.277,3.389,0,2.692666,5,5 +14284,0,0.136927,3,3,0,2,3,,3,1,Conner,St,1588005,2.09,2.227,0,3.286245,5,5 +19443,0,0.321058,1,1,0,2,5,,3,1,Canfield,St,1713306,0.489,0.81,0,7.705384,8,4.5 +19447,0,0.19192,2,2,0,2,5,,3,1,Shoemaker,St,1713304,1.103,1.294,0,4.606082,8,4.5 +21632,0,0.129021,2,2,0,2,3,,3,1,Warren,Ave,4700429,5.051,5.435,0,3.096499,5,5 +24213,0,0.228271,1,1,0,2,4,,3,1,Saint Jean,St,4711073,2.032,2.26,0,5.478495,6,4.5 +25535,0,0.285557,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.853367,0.15,4 +30718,0,0.268308,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.439386,0.15,4 +30739,0,0.335966,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.063188,0.15,4 +33107,0,0.308959,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.415025,0.15,4 +33386,0,0.381319,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.151647,0.15,4 +33527,0,0.322145,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.73148,0.15,4 +12673,0,0.187167,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,1.15,1.337,0,4.491998,8,4.5 +13054,0,0.165305,1,1,0,2,4,,3,1,McClellan,St,1577907,1.391,1.556,0,3.96731,6,4.5 +13918,0,0.197186,1,1,1,2,3,,3,1,Mack,Ave,1587509,2.821,3.018,0,4.732465,5,5 +19446,0,0.254387,1,1,0,2,5,,3,1,Canfield,St,1713306,0.068,0.322,0,6.105276,8,4.5 +21754,0,0.172252,2,2,0,2,3,,3,1,Warren,Ave,4700429,4.878,5.051,0,4.134039,5,5 +33383,0,0.32232,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.735678,0.15,4 +33540,0,0.379384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.105217,0.15,4 +12692,0,0.355587,1,1,0,2,4,,3,1,McClellan,St,1577907,1.035,1.391,0,8.534082,6,4.5 +13735,0,0.195646,1,1,1,2,3,,3,1,Mack,Ave,1587509,2.455,2.651,0,4.695512,5,5 +14409,0,0.170042,1,1,1,2,3,,3,1,Mack,Ave,1587509,2.651,2.821,0,4.081014,5,5 +12672,0,0.171597,1,1,0,2,3,,3,1,Cadillac,Blvd,1578001,1.492,1.663,0,4.118336,5,5 +14479,1,0.204615,3,0,0,2,3,,3,1,Forest,Ave,5491069,2.669,2.874,0,4.910765,5,5 +21277,0,0.208212,2,2,1,2,3,,3,1,Warren,Ave,4700429,4.482,4.69,0,4.997078,5,5 +12690,0,0.166543,1,1,0,2,4,,3,1,McClellan,St,1577907,1.556,1.722,0,3.997031,6,4.5 +13029,0,0.154936,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,1.337,1.492,0,3.718463,8,4.5 +21951,0,0.122474,2,2,0,2,3,,3,1,Warren,Ave,4700429,4.756,4.878,0,2.939365,5,5 +22085,0,0.065727,2,2,0,2,3,,3,1,Warren,Ave,4700429,4.69,4.756,0,1.577444,5,5 +12674,0,0.169091,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.814,0.983,0,4.058172,8,4.5 +13729,0,0.259142,1,1,1,2,3,,3,1,Mack,Ave,1587509,3.018,3.277,0,6.219403,5,5 +13030,0,0.166872,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.983,1.15,0,4.004935,8,4.5 +12966,0,0.323656,1,1,0,2,5,,3,1,French,Rd,1578003,0.329,0.653,0,7.767752,8,4.5 +19445,0,0.111798,1,1,0,2,5,,3,1,Canfield,St,1713306,0.322,0.434,0,2.683147,8,4.5 +33385,0,0.173658,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.167786,0.15,4 +33384,0,0.010509,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.252218,0.15,4 +19444,0,0.054805,1,1,0,2,5,,3,1,Canfield,St,1713306,0.434,0.489,0,1.31531,8,4.5 +10741,1,0.387059,3,0,0,1,1,,3,1,E I 94,,1576405,32.128,32.515,0,,0.58,7 +11445,1,0.220004,3,0,0,1,1,,3,1,E I 94,,1576405,32.515,32.735,0,,0.58,7 +12632,0,0.294784,2,2,0,2,4,,3,1,Harper,Ave,1578108,1.819,2.113,0,7.074821,6,4.5 +12954,1,0.170724,1,0,0,1,1,RON,3,1,French/E I 94,RAMP,1578004,0,0.171,0,,1.09,4 +12958,0,0.153684,1,1,0,2,5,,3,1,French,Rd,1578003,1.269,1.423,0,3.688413,8,4.5 +13803,-1,0.404753,0,3,0,1,1,,3,1,W I 94,,1588802,32.105,32.51,0,,0.58,7 +19449,0,0.127309,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0.642,1.066,0,3.055427,8,4.5 +24205,0,0.294039,2,2,0,2,4,,3,1,Saint Jean,St,4711073,2.323,2.617,0,7.056938,6,4.5 +12959,0,0.201162,1,1,0,2,5,,3,1,French,Rd,1578003,1.013,1.214,0,4.827896,8,4.5 +12968,1,0.147578,1,0,0,1,1,ROF,3,1,E I 94/French,RAMP,1578002,0,0.148,0,,2.24,5 +13882,1,0.058589,2,0,0,2,5,,3,1,E I 94 Service Drive,,1588708,0.336,0.395,0,1.406139,8,4.5 +14386,1,0.157452,1,0,0,1,1,RON,3,1,French/W I 94,RAMP,1589201,0,0.157,0,,1.09,4 +19450,0,0.186917,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0.455,0.642,0,4.486003,8,4.5 +30736,0,0.342711,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.225069,0.15,4 +30737,0,0.117327,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.815852,0.15,4 +30738,0,0.169532,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.068767,0.15,4 +14333,1,0.026987,2,0,0,2,5,,3,1,E I 94 Service Drive,,1588708,0.449,0.476,0,0.647696,8,4.5 +12609,0,0.054788,1,1,0,2,5,,3,1,French,Rd,1578003,1.214,1.269,0,1.314902,8,4.5 +13666,1,0.054142,2,0,0,2,5,,3,1,E I 94 Service Drive,,1588708,0.395,0.449,0,1.299406,8,4.5 +13775,0,0.008038,1,1,0,2,5,,3,1,W I 94 Service Drive,,1587906,0.501,0.509,0,0.192916,8,4.5 +12351,0,0.114339,2,2,1,2,4,,3,1,Harper,Ave,1578108,1.704,1.819,0,2.74414,6,4.5 +12608,0,0.27108,2,2,0,2,5,,3,1,French,Rd,1578003,1.423,1.694,0,6.505928,8,4.5 +30523,0,0.149463,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.587109,0.15,4 +12956,0,0.162356,2,2,0,2,5,,3,1,French,Rd,1578003,1.694,1.856,0,3.896546,8,4.5 +30525,0,0.122158,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.931801,0.15,4 +19448,0,0.036293,2,2,0,2,5,,3,1,Shoemaker,St,1713304,1.066,1.103,0,0.871044,8,4.5 +24206,0,0.063097,2,2,0,2,4,,3,1,Saint Jean,St,4711073,2.26,2.323,0,1.51432,6,4.5 +33381,0,0.049369,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.184851,0.15,4 +33382,0,0.034036,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.816852,0.15,4 +11199,1,0.247649,3,0,0,1,1,,3,1,E I 94,,1576405,32.735,32.982,0,,0.58,7 +12585,1,0.155296,1,0,0,1,1,RON,3,1,Conner/E I 94,RAMP,1578008,0,0.155,0,,1.09,4 +12588,-1,0.059816,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.35,0.41,0,1.435572,5,5 +12623,0,0.108827,2,2,1,2,4,,3,1,Harper,Ave,1578108,2.151,2.26,0,2.611856,6,4.5 +12947,1,0.097072,1,0,0,1,1,ROF,3,1,E I 94/Conner,RAMP,1578006,0,0.097,0,,2.24,5 +12949,-1,0.05867,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.179,0.238,0,1.40808,5,5 +13693,1,0.065159,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.476,2.541,0,1.563826,5,5 +14086,1,0.108909,1,0,0,1,3,RSF,3,1,W I 94/Conner,RAMP,1589204,0.129,0.238,0,,5,5 +14307,1,0.187794,1,0,0,1,1,RON,3,1,N Conner/W I 94,RAMP,1589203,0,0.188,0,,1.09,4 +14369,-1,0.281166,0,3,0,1,1,,3,1,W I 94,,1588802,32.622,32.903,0,,0.58,7 +14466,1,0.057784,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.541,2.598,0,1.38681,5,5 +12589,-1,0.035559,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.238,0.273,0,0.853421,5,5 +13692,-1,0.112278,0,3,0,1,1,,3,1,W I 94,,1588802,32.51,32.622,0,,0.58,7 +14137,1,0.198767,1,0,0,1,1,RON,3,1,S Conner/W I 94,RAMP,1589202,0,0.199,0,,1.09,4 +12309,0,0.037746,2,2,0,2,4,,3,1,Harper,Ave,1578108,2.113,2.151,0,0.905894,6,4.5 +12948,-1,0.076309,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.273,0.35,0,1.831405,5,5 +14245,0,0.228274,1,1,1,2,3,,3,1,Conner,St,1588005,2.598,2.827,0,5.478586,5,5 +12587,1,0.059593,1,0,0,1,1,ROF,3,1,E I 94/SB Conner,RAMP,1578006,0.097,0.157,0,,2.24,5 +12599,-1,0.081694,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.098,0.179,0,1.960646,5,5 +13968,1,0.064352,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.38,2.444,0,1.544453,5,5 +14069,1,0.129245,1,0,0,1,1,ROF,3,1,W I 94/Conner,RAMP,1589204,0,0.129,0,,2.24,5 +14177,1,0.055937,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.324,2.38,0,1.342482,5,5 +24454,1,0.042784,1,0,0,1,1,ROF,3,1,E I 94/NB Conner,RAMP,4718277,0,0.043,0,,2.24,5 +22743,0,0.033185,1,1,0,2,4,,3,1,Hern,St,4705812,0,0.033,0,0.796444,6,4.5 +13884,1,0.031214,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.444,2.476,0,0.749125,5,5 +12601,-1,0.044102,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0,0.044,0,1.058451,5,5 +12942,1,0.039325,1,0,0,1,3,RSF,3,1,E I 94/SB Conner,RAMP,1578006,0.157,0.196,0,,5,5 +12952,-1,0.053429,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.044,0.098,0,1.282293,5,5 +14053,1,0.096849,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.227,2.324,0,2.324375,5,5 +22208,1,0.022575,1,0,0,1,3,RSF,3,1,North/South Conner Cutoff,,4704280,0.022,0.045,0,,5,5 +22209,1,0.022277,1,0,0,1,3,RSF,3,1,North/South Conner Cutoff,,4704280,0,0.022,0,,5,5 +13807,0,0.33478,3,3,0,2,3,,3,1,Mack,Ave,1587509,3.755,4.09,0,8.034719,5,5 +13856,1,0.313896,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,3.215,3.529,0,7.533503,6,4.5 +14384,0,0.112244,1,1,1,2,3,,3,1,Mack,Ave,1587509,3.389,3.501,0,2.69385,5,5 +19442,-1,0.464279,0,3,0,2,4,,3,1,Charlevoix,St,1713402,0,0.464,0,11.142687,6,4.5 +33098,0,0.515177,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.36425,0.15,4 +30720,0,0.087429,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.098285,0.15,4 +13978,0,0.253801,1,1,1,2,3,,3,1,Mack,Ave,1587509,3.501,3.755,0,6.091214,5,5 +17159,-1,0.166027,0,4,0,2,7,,3,1,Kercheval,St,1631701,2.518,2.684,0,3.984642,7,4.5 +33108,0,0.247372,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.93692,0.15,4 +14213,0,0.449818,3,3,0,2,3,,3,1,Conner,St,1588005,1.641,2.09,0,10.795639,5,5 +18749,0,0.095324,2,2,0,2,5,,3,1,Chandler Park,Dr,1632805,0.297,0.392,0,2.287768,8,4.5 +18751,0,0.29677,2,2,0,2,5,,3,1,Chandler Park,Dr,1632805,0,0.297,0,7.12248,8,4.5 +21377,0,0.207077,2,2,1,2,3,,3,1,Warren,Ave,4700429,5.656,5.863,0,4.969846,5,5 +30338,0,0.026604,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.638484,0.15,4 +33119,0,0.189091,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.538179,0.15,4 +33380,0,0.39394,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.454566,0.15,4 +21486,0,0.221154,2,2,1,2,3,,3,1,Warren,Ave,4700429,5.435,5.656,0,5.307703,5,5 +12620,0,0.19532,2,2,1,2,4,,3,1,Harper,Ave,1578108,2.556,2.751,0,4.687671,6,4.5 +33379,0,0.400853,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.620469,0.15,4 +30337,0,0.097379,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.337095,0.15,4 +14440,0,0.313229,2,2,1,2,3,,3,1,Conner,St,1588005,1.328,1.641,0,7.517487,5,5 +21089,0,0.207303,1,1,1,2,3,,3,1,Warren,Ave,4700429,5.863,6.07,0,4.975279,5,5 +22086,0,0.1218,1,1,1,2,3,,3,1,Warren,Ave,4700429,6.07,6.192,0,2.923201,5,5 +18739,0,0.16911,2,2,0,2,5,,3,1,Chandler Park,Dr,1632805,0.59,0.759,0,4.058648,8,4.5 +23511,0,0.251207,1,1,0,2,4,,3,1,Dickerson,St,4705398,2.057,2.309,0,6.028976,6,4.5 +18744,0,0.197665,2,2,0,2,5,,3,1,Chandler Park,Dr,1632805,0.392,0.59,0,4.74396,8,4.5 +4378,-1,0.361759,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,4.136,4.498,0,8.682211,5,5 +4625,1,0.372031,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,4.126,4.498,0,8.928733,5,5 +5313,0,0.376509,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,0.02,0.397,0,9.036206,5,5 +5361,0,0.434881,2,2,1,2,4,,3,4,9 Mile,Rd,803006,4.002,4.436,0,10.437137,6,4.5 +12449,0,0.558565,1,1,0,2,4,,3,1,Chalmers,St,1578102,4.09,4.649,0,13.405565,6,4.5 +13082,0,0.221905,2,2,0,2,3,,3,1,Van Dyke,St,1577904,3.906,4.128,0,5.325711,5,5 +13785,1,0.138945,3,0,0,2,4,DV2,3,1,Outer,Dr,1588005,5.527,5.666,0,3.334672,6,4.5 +13959,0,0.189608,1,1,0,2,5,,3,1,Findlay,St,1588110,0.199,0.388,0,4.550595,8,4.5 +13990,0,0.313234,2,2,0,2,3,,3,1,Gunston,St,1588008,0.599,0.913,0,7.517608,5,5 +14094,0,0.501827,1,1,0,2,5,,3,1,State Fair,St,1588609,0.214,0.716,0,12.043842,8,4.5 +14215,0,0.310943,1,1,0,2,5,,3,1,Greiner,St,1588404,0.496,0.807,0,7.462635,8,4.5 +14282,0,0.251405,1,1,0,2,3,,3,1,Hoover,St,1588008,1.909,2.161,0,6.033709,5,5 +14398,0,0.274199,2,2,1,2,3,,3,1,Conner,St,1588005,3.321,3.595,0,6.58077,5,5 +16233,0,0.249559,2,2,0,2,4,,3,1,Schoenherr,St,1602409,0.31,0.56,0,5.989412,6,4.5 +18571,0,0.565794,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.912,22.478,0,13.579049,5,5 +22446,-1,0.139597,0,3,0,2,4,DV2,3,1,Outer,Dr,4705082,1.004,1.143,0,3.350338,6,4.5 +22533,0,0.287901,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,7.606,7.894,0,6.90963,5,5 +22880,0,0.388966,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0.545,0.934,0,9.335189,5,5 +30643,0,0.247171,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.932101,0.15,4 +30750,0,0.500764,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.018331,0.15,4 +30765,0,0.37279,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.94696,0.15,4 +30768,0,0.50012,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.002878,0.15,4 +30770,0,0.502543,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.061031,0.15,4 +33392,0,0.220369,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.288855,0.15,4 +33396,0,0.222214,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.333125,0.15,4 +33406,0,0.258653,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.207668,0.15,4 +33411,0,0.33299,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.991762,0.15,4 +33413,0,0.500566,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.013577,0.15,4 +33419,0,0.240622,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.774928,0.15,4 +33630,0,0.376333,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.031996,0.15,4 +13101,0,0.527479,3,3,0,2,3,,3,1,Van Dyke,St,1577904,2.381,2.908,0,12.659492,5,5 +13784,0,0.580503,2,2,0,2,3,,3,1,Conner,St,1588005,3.946,4.526,0,13.932083,5,5 +13980,0,0.059737,1,1,0,2,5,,3,1,Lynch,Rd,1586705,1.207,1.267,0,1.433677,8,4.5 +18811,0,0.243426,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.162,21.406,0,5.842217,5,5 +19432,0,0.649187,1,1,0,2,5,,3,1,French,Rd,1714006,0.324,0.973,0,15.580486,8,4.5 +30630,0,0.535793,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.859025,0.15,4 +33390,0,0.500376,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.009028,0.15,4 +33422,0,0.301786,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.242856,0.15,4 +33423,0,0.428309,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.27941,0.15,4 +33425,0,0.300459,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.211026,0.15,4 +33625,0,0.309829,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.435902,0.15,4 +11909,0,0.47444,3,3,0,2,3,,3,1,Van Dyke,St,1577904,1.906,2.381,0,11.386569,5,5 +14315,0,0.347945,1,1,1,2,5,,3,1,Lynch,Rd,1586705,0.614,0.962,0,8.350679,8,4.5 +30631,0,0.375719,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.017264,0.15,4 +33627,0,0.500497,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.011935,0.15,4 +13912,0,0.244871,1,1,0,2,5,,3,1,Lynch,Rd,1586705,0.962,1.207,0,5.876897,8,4.5 +12720,0,0.183952,3,3,0,2,3,,3,1,Van Dyke,St,1577904,1.722,1.906,0,4.414844,5,5 +33628,0,0.283742,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.809798,0.15,4 +12710,0,0.216191,3,3,0,2,3,,3,1,Van Dyke,St,1577904,3.191,3.407,0,5.188577,5,5 +14138,0,0.213525,2,2,0,2,4,,3,1,Nevada,St,1585907,4.181,4.394,0,5.124594,6,4.5 +14426,0,0.320465,2,2,0,2,4,,3,1,Davison,St,4702009,7.222,7.543,0,7.69117,6,4.5 +17189,0,0.218541,1,1,0,2,5,,3,1,Sherwood,St,1630706,0.284,0.502,0,5.244981,8,4.5 +17538,0,0.256309,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,20.656,20.912,0,6.15141,5,5 +18965,0,0.183624,2,2,0,2,3,,3,1,McNichols,Rd,1680701,26.794,26.977,0,4.406972,5,5 +33307,0,0.252441,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.058576,0.15,4 +33428,0,0.243037,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.832892,0.15,4 +17190,0,0.283957,1,1,0,2,5,,3,1,Sherwood,St,1630706,0,0.284,0,6.81496,8,4.5 +19159,0,0.314176,2,2,0,2,3,,3,1,McNichols,Rd,1680701,26.479,26.794,0,7.540215,5,5 +33426,0,0.079023,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.89655,0.15,4 +33427,0,0.257715,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.185167,0.15,4 +14455,0,0.178036,2,2,0,2,4,,3,1,Davison,St,4702009,7.044,7.222,0,4.272875,6,4.5 +14353,0,0.274779,2,2,0,2,4,,3,1,Nevada,St,1585907,3.906,4.181,0,6.594702,6,4.5 +17187,0,0.254523,1,1,0,2,5,,3,1,Sherwood,St,1630706,0.76,1.015,0,6.108557,8,4.5 +17853,0,0.244397,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,20.411,20.656,0,5.865527,5,5 +30922,0,0.242048,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.809148,0.15,4 +33429,0,0.246752,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.922049,0.15,4 +17188,0,0.257751,1,1,0,2,5,,3,1,Sherwood,St,1630706,0.502,0.76,0,6.186017,8,4.5 +33310,0,0.255058,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.121385,0.15,4 +13085,0,0.282898,3,3,0,2,3,,3,1,Van Dyke,St,1577904,2.908,3.191,0,6.789564,5,5 +18598,0,0.217893,2,2,0,2,5,,3,1,McNichols,Rd,1680701,26.977,27.195,0,5.229443,8,4.5 +33421,0,0.408969,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.815266,0.15,4 +12708,0,0.251753,3,3,0,2,3,,3,1,Van Dyke,St,1577904,3.655,3.906,0,6.042077,5,5 +19138,0,0.163616,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,20.912,21.075,0,3.92679,5,5 +33430,0,0.135734,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.257611,0.15,4 +13084,0,0.247823,3,3,0,2,3,,3,1,Van Dyke,St,1577904,3.407,3.655,0,5.947741,5,5 +18805,0,0.087051,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.075,21.162,0,2.089216,5,5 +33424,0,0.22989,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.517348,0.15,4 +13671,0,0.405849,1,1,0,2,5,,3,1,Lynch,Rd,1586705,1.372,1.778,0,9.740383,8,4.5 +14155,0,0.234358,2,2,0,2,3,,3,1,Conner,St,1588005,3.595,3.83,0,5.624591,5,5 +19433,0,0.323711,1,1,0,2,5,,3,1,French,Rd,1714006,0,0.324,0,7.769059,8,4.5 +33239,0,0.461039,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.064943,0.15,4 +13860,0,0.105521,1,1,0,2,5,,3,1,Lynch,Rd,1586705,1.267,1.372,0,2.532509,8,4.5 +33629,0,0.342463,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.219104,0.15,4 +14163,0,0.198615,1,1,0,2,5,,3,1,Findlay,St,1588110,0,0.199,0,4.76677,8,4.5 +33546,0,0.211938,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.086523,0.15,4 +13962,0,0.116345,2,2,0,2,3,,3,1,Conner,St,1588005,3.83,3.946,0,2.792285,5,5 +33391,0,0.095968,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.303234,0.15,4 +14123,0,0.244718,1,1,0,2,5,,3,1,Greiner,St,1588404,0,0.245,0,5.873237,8,4.5 +14186,1,0.251036,3,0,0,2,3,DV2,3,1,Outer,Dr,1588005,4.78,5.031,0,6.024865,5,5 +14355,0,0.234578,1,1,0,2,3,,3,1,Hoover,St,1588008,1.178,1.412,0,5.629872,5,5 +17539,0,0.034849,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.662,21.697,0,0.836382,5,5 +22450,-1,0.508512,0,3,0,2,3,DV2,3,1,Outer,Dr,4705082,0,0.508,0,12.204286,5,5 +23252,0,0.244507,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0,0.245,0,5.868171,5,5 +30766,0,0.248048,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.953144,0.15,4 +30767,0,0.363044,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.713058,0.15,4 +33398,0,0.276476,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.635417,0.15,4 +33400,0,0.262049,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.289175,0.15,4 +33432,0,0.251375,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.033006,0.15,4 +33435,0,0.248686,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.968468,0.15,4 +14428,1,0.253802,3,0,0,2,3,DV2,3,1,Outer,Dr,1588005,4.526,4.78,0,6.091253,5,5 +13798,1,0.246339,3,0,0,2,3,DV2,3,1,Outer,Dr,1588005,5.155,5.401,0,5.912125,5,5 +17956,0,0.243262,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.419,21.662,0,5.838295,5,5 +22448,-1,0.122927,0,3,0,2,3,DV2,3,1,Outer,Dr,4705082,0.633,0.755,0,2.950247,5,5 +13972,1,0.124169,3,0,0,2,3,DV2,3,1,Outer,Dr,1588005,5.031,5.155,0,2.980048,5,5 +22449,-1,0.124169,0,3,0,2,3,DV2,3,1,Outer,Dr,4705082,0.508,0.633,0,2.980048,5,5 +23835,0,0.01402,1,1,0,2,5,,3,1,Greiner,St,4707539,0,0.014,0,0.336469,8,4.5 +13963,1,0.125554,3,0,0,2,3,DV2,3,1,Outer,Dr,1588005,5.401,5.527,0,3.013288,5,5 +22447,-1,0.248526,0,3,0,2,3,DV2,3,1,Outer,Dr,4705082,0.755,1.004,0,5.964635,5,5 +18354,0,0.013069,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.406,21.419,0,0.31365,5,5 +13685,0,0.194705,1,1,0,2,3,,3,1,Hoover,St,1588008,0.983,1.178,0,4.672909,5,5 +23253,0,0.251666,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0.245,0.496,0,6.039986,5,5 +33431,0,0.248359,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.960624,0.15,4 +33433,0,0.251407,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.033765,0.15,4 +13819,0,0.070432,1,1,0,2,3,,3,1,Hoover,St,1588008,0.913,0.983,0,1.690373,5,5 +19519,0,0.074271,1,1,0,2,5,,3,1,Hoover,St,1881003,0,0.074,0,1.782507,8,4.5 +23011,0,0.049018,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0.496,0.545,0,1.176429,5,5 +13931,0,0.251775,1,1,0,2,5,,3,1,Greiner,St,1588404,0.245,0.496,0,6.042603,8,4.5 +14039,0,0.249627,1,1,0,2,3,,3,1,Hoover,St,1588008,1.412,1.662,0,5.991037,5,5 +18942,0,0.215638,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.697,21.912,0,5.175313,5,5 +33434,0,0.247206,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.932954,0.15,4 +33437,0,0.248252,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.958059,0.15,4 +13868,0,0.247638,1,1,0,2,3,,3,1,Hoover,St,1588008,1.662,1.909,0,5.943308,5,5 +4310,-1,0.220495,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,3.145,3.365,0,5.29188,5,5 +4524,0,0.516199,1,1,0,2,4,,3,4,Hoover,Rd,798909,0.027,0.543,0,12.388776,6,4.5 +4657,1,0.364492,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.164,3.529,0,8.747816,5,5 +5071,0,0.505973,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,0.02,0.526,0,12.143354,5,5 +5364,0,0.562364,2,2,0,2,4,,3,4,9 Mile,Rd,803006,2.926,3.489,0,13.496741,6,4.5 +14162,0,0.164366,2,2,0,2,4,,3,1,Outer,Dr,1588005,5.893,6.057,0,3.944792,6,4.5 +25467,0,0.57177,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.72248,0.15,4 +27482,0,0.55223,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.25352,0.15,4 +27485,0,0.298499,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.163979,0.15,4 +27487,0,0.271476,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.515419,0.15,4 +27544,0,0.506231,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.149547,0.15,4 +28748,0,0.48676,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.682229,0.15,4 +28855,0,0.251788,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.042902,0.15,4 +28858,0,0.546404,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.113706,0.15,4 +33418,0,0.2205,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.292002,0.15,4 +33439,0,0.22399,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.375758,0.15,4 +4553,1,0.249888,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.748,2.998,0,5.99731,5,5 +4972,-1,0.142857,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.856,2.999,0,3.42856,5,5 +12704,0,0.17574,2,2,0,2,3,,3,1,Van Dyke,St,1577904,4.415,4.591,0,4.217752,5,5 +13878,1,0.220668,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,4.678,4.899,0,5.296022,6,4.5 +13958,0,0.281985,1,1,0,2,5,,3,1,Conner,St,1588005,6.057,6.339,0,6.767646,8,4.5 +23811,-1,0.250676,0,2,0,2,4,DV2,3,1,Outer,Dr,4707670,0.287,0.537,0,6.016226,6,4.5 +30573,0,0.233458,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.602999,0.15,4 +30644,0,0.251393,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.033432,0.15,4 +33613,0,0.256861,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.164673,0.15,4 +33615,0,0.249305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.983323,0.15,4 +30572,0,0.262483,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.2996,0.15,4 +30642,0,0.248595,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.966291,0.15,4 +14148,1,0.057385,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,4.621,4.678,0,1.37724,6,4.5 +23812,-1,0.026955,0,2,0,2,4,DV2,3,1,Outer,Dr,4707670,0.26,0.287,0,0.64692,6,4.5 +30571,0,0.237012,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.688292,0.15,4 +33612,0,0.27931,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.70344,0.15,4 +4629,-1,0.103165,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.753,2.856,0,2.475964,5,5 +12707,0,0.272724,2,2,0,2,3,,3,1,Van Dyke,St,1577904,4.128,4.401,0,6.545367,5,5 +14184,1,0.190349,2,0,0,2,4,DV2,3,1,Outer,Dr,1587207,0,0.19,0,4.568386,6,4.5 +23810,-1,0.190513,0,2,0,2,4,DV2,3,1,Outer,Dr,4707670,0.537,0.728,0,4.572301,6,4.5 +30927,0,0.21597,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.183278,0.15,4 +33440,0,0.265628,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.375082,0.15,4 +13080,0,0.014363,2,2,0,2,3,,3,1,Van Dyke,St,1577904,4.401,4.415,0,0.344701,5,5 +14424,0,0.132971,2,2,0,2,4,,3,1,Outer,Dr,1587207,0.19,0.323,0,3.191293,6,4.5 +3946,1,0.10742,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.057,3.164,0,2.578085,5,5 +13078,0,0.295027,2,2,0,2,3,,3,1,Van Dyke,St,1577904,4.591,4.886,0,7.08065,5,5 +14368,0,0.285028,1,1,0,2,5,,3,1,Conner,St,1588005,6.339,6.624,0,6.840681,8,4.5 +4250,1,0.058616,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.998,3.057,0,1.406774,5,5 +4627,-1,0.146031,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.999,3.145,0,3.504747,5,5 +4059,0,0.01008,3,3,1,2,3,,3,4,Van Dyke,St,799108,0.01,0.02,0,0.24191,5,5 +4346,0,0.010289,3,3,1,2,3,,3,1,Van Dyke,St,799108,0,0.01,0,0.246938,5,5 +16241,0,0.011665,1,1,0,2,5,,3,1,Bramford,St,1602307,0.285,0.296,0,0.279971,8,4.5 +4341,0,0.51106,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,0.526,1.037,0,12.265429,5,5 +27486,0,0.480476,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.531415,0.15,4 +28908,0,0.529596,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.710295,0.15,4 +28910,0,0.33805,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.113202,0.15,4 +25173,0,0.207492,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.9798,0.15,4 +4052,0,0.158626,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,1.037,1.196,0,3.807018,5,5 +26148,0,0.226566,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.437587,0.15,4 +26149,0,0.227351,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.456416,0.15,4 +5365,0,0.131831,2,2,1,2,4,,3,4,9 Mile,Rd,803006,2.795,2.926,0,3.163955,6,4.5 +4340,1,0.259621,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.529,3.788,0,6.230897,5,5 +5031,-1,0.20793,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,3.701,3.909,0,4.990324,5,5 +13875,0,0.249067,1,1,0,2,3,,3,1,Hoover,St,1588008,2.41,2.659,0,5.977613,5,5 +33417,0,0.433264,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.398346,0.15,4 +14188,0,0.077709,2,2,0,2,4,,3,1,Outer,Dr,1588005,5.815,5.893,0,1.865021,6,4.5 +14430,0,0.149441,2,2,0,2,4,,3,1,Outer,Dr,1588005,5.666,5.815,0,3.586574,6,4.5 +4013,-1,0.33611,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,3.365,3.701,0,8.066644,5,5 +33438,0,0.289675,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.952206,0.15,4 +33606,0,0.304214,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.301144,0.15,4 +14052,0,0.042053,1,1,0,2,3,,3,1,Hoover,St,1588008,2.161,2.203,0,1.009269,5,5 +33412,0,0.199708,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.792993,0.15,4 +14055,0,0.207496,1,1,0,2,3,,3,1,Hoover,St,1588008,2.203,2.41,0,4.979898,5,5 +4704,-1,0.227324,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,3.909,4.136,0,5.455785,5,5 +5063,1,0.106986,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.892,3.999,0,2.567656,5,5 +13920,0,0.221878,2,2,1,2,3,,3,1,Groesbeck,Hwy,1588008,2.718,2.94,0,5.325078,5,5 +15000,0,0.193755,1,1,0,2,5,,3,1,Hoover,St,1591508,0,0.194,0,4.650115,8,4.5 +4051,1,0.10389,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.788,3.892,0,2.493358,5,5 +4865,1,0.01017,1,0,0,2,4,,3,4,Hoover,Rd,798909,0.017,0.027,0,0.244084,6,4.5 +4663,1,0.017152,1,0,0,2,4,,3,1,Hoover,Rd,798909,0,0.017,0,0.411657,6,4.5 +14111,0,0.059296,1,1,0,2,3,,3,1,Hoover,St,1588008,2.659,2.718,0,1.423096,5,5 +4969,1,0.127264,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.999,4.126,0,3.054328,5,5 +5314,0,0.009299,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,0.011,0.02,0,0.223179,5,5 +5315,0,0.010956,3,3,1,2,3,,3,1,Groesbeck,Hwy,803009,0,0.011,0,0.262946,5,5 +4589,0,0.498406,1,1,0,2,4,,3,4,Hoover,Rd,798909,0.543,1.042,0,11.961736,6,4.5 +5362,0,0.255438,2,2,0,2,4,,3,4,9 Mile,Rd,803006,3.746,4.002,0,6.130514,6,4.5 +27481,0,0.558028,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.392662,0.15,4 +28900,0,0.535344,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.848246,0.15,4 +5363,0,0.257818,2,2,0,2,4,,3,4,9 Mile,Rd,803006,3.489,3.746,0,6.187629,6,4.5 +26147,0,0.244404,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.865702,0.15,4 +27480,0,0.018991,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.455788,0.15,4 +4279,0,0.251649,1,1,0,2,4,,3,4,Hoover,Rd,798909,1.042,1.293,0,6.039576,6,4.5 +12794,0,0.227537,1,1,0,2,4,,3,1,Chalmers,St,1578102,3.422,3.65,0,5.46088,6,4.5 +14216,0,0.193091,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,0,0.193,0,4.634173,6,4.5 +14249,-1,0.31805,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,0.488,0.806,0,7.633196,6,4.5 +14450,0,0.498815,1,1,0,2,5,,3,1,Greiner,St,1588404,0.995,1.493,0,11.971549,8,4.5 +16236,0,0.250776,2,2,0,2,4,,3,1,Schoenherr,St,1602409,0.059,0.31,0,6.018624,6,4.5 +22522,0,0.610694,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0.977,1.588,0,14.656662,5,5 +22724,1,0.158949,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,0.642,0.801,0,3.814768,6,4.5 +23027,0,0.146116,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,6.518,6.664,0,3.506785,5,5 +23438,0,0.503568,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,6.765,7.268,0,12.08562,5,5 +23497,0,0.362251,1,1,0,2,4,,3,1,Dickerson,St,4705398,3.435,3.797,0,8.694014,6,4.5 +30764,0,0.386565,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.277569,0.15,4 +33397,0,0.183331,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.399933,0.15,4 +33408,0,0.135535,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.252842,0.15,4 +33441,0,0.33647,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.075279,0.15,4 +33443,0,0.247589,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.942144,0.15,4 +13413,0,0.424004,1,1,0,2,3,,3,1,Gunston,St,1588008,0,0.424,0,10.176084,5,5 +14199,0,0.372572,1,1,0,2,5,,3,1,Findlay,St,1588110,0.388,0.761,0,8.941725,8,4.5 +14472,-1,0.342012,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,0.146,0.488,0,8.20829,6,4.5 +22725,1,0.32981,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,0.312,0.642,0,7.915436,6,4.5 +23671,0,0.468336,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.86,6.329,0,11.240059,5,5 +33387,0,0.288618,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.926843,0.15,4 +33633,0,0.357248,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.573946,0.15,4 +13858,0,0.240563,1,1,1,2,3,,3,1,Conner,St,1588005,2.966,3.207,0,5.773509,5,5 +14112,-1,0.14571,0,4,0,2,4,DV2,3,1,Outer,Dr,1588006,0,0.146,0,3.497034,6,4.5 +14208,0,0.099069,2,2,0,2,3,,3,1,Conner,St,1588005,3.207,3.306,0,2.377645,5,5 +22727,1,0.128191,4,0,0,2,4,DV2,3,1,Outer,Dr,4704846,0,0.128,0,3.07658,6,4.5 +23264,0,0.109436,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.579,5.688,0,2.626472,5,5 +13994,0,0.0153,2,2,0,2,3,,3,1,Conner,St,1588005,3.306,3.321,0,0.367192,5,5 +22680,0,0.15813,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.702,5.86,0,3.795126,5,5 +22726,1,0.183791,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,0.128,0.312,0,4.410994,6,4.5 +22957,0,0.013875,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.688,5.702,0,0.332993,5,5 +14040,0,0.112512,1,1,0,2,3,,3,1,Gunston,St,1588008,0.424,0.536,0,2.700277,5,5 +13869,0,0.063,2,2,0,2,3,,3,1,Gunston,St,1588008,0.536,0.599,0,1.51201,5,5 +33632,0,0.378284,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.078814,0.15,4 +33442,0,0.213765,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.130361,0.15,4 +13983,0,0.167998,1,1,0,2,5,,3,1,Findlay,St,1588110,0.761,0.929,0,4.031945,8,4.5 +23336,0,0.189739,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,6.329,6.518,0,4.553745,5,5 +33394,0,0.283943,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.81463,0.15,4 +33399,0,0.178545,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.285087,0.15,4 +33436,0,0.498589,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.966144,0.15,4 +33395,0,0.309387,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.425299,0.15,4 +33401,0,0.154645,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.711472,0.15,4 +22664,0,0.043054,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0.934,0.977,0,1.033305,5,5 +13996,0,0.187596,1,1,0,2,5,,3,1,Greiner,St,1588404,0.807,0.995,0,4.502305,8,4.5 +33409,0,0.250399,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.009572,0.15,4 +22750,0,0.1005,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,6.664,6.765,0,2.411995,5,5 +13461,-1,0.312348,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,1.11,1.422,0,7.496359,6,4.5 +22722,1,0.312286,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,1.105,1.417,0,7.494857,6,4.5 +23030,0,0.41534,1,1,0,2,4,,3,1,Dickerson,St,4705398,2.746,3.161,0,9.968152,6,4.5 +30369,0,0.407209,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.773019,0.15,4 +30517,0,0.239123,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.738949,0.15,4 +30518,0,0.394024,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.456566,0.15,4 +30521,0,0.41136,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.872641,0.15,4 +31995,0,0.404622,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.710938,0.15,4 +33127,0,0.390927,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.382238,0.15,4 +13791,-1,0.151652,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,0.959,1.11,0,3.639643,6,4.5 +22339,0,0.259286,1,1,0,2,4,,3,1,Dickerson,St,4705398,3.176,3.435,0,6.222874,6,4.5 +22723,1,0.304774,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,0.801,1.105,0,7.314575,6,4.5 +13966,-1,0.153041,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,0.806,0.959,0,3.672987,6,4.5 +22754,0,0.014146,2,2,0,2,4,,3,1,Dickerson,St,4705398,3.161,3.176,0,0.339495,6,4.5 +22875,0,0.330711,1,1,0,2,4,,3,1,Dickerson,St,4705398,2.416,2.746,0,7.937054,6,4.5 +30375,0,0.308464,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.403144,0.15,4 +12455,0,0.207395,1,1,0,2,4,,3,1,Chalmers,St,1578102,3.215,3.422,0,4.977472,6,4.5 +14274,-1,0.15346,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,1.422,1.576,0,3.683041,6,4.5 +22721,1,0.153602,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,1.417,1.571,0,3.686455,6,4.5 +33122,0,0.063889,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.533332,0.15,4 +12795,0,0.01467,1,1,0,2,4,,3,1,Chalmers,St,1578102,3.2,3.215,0,0.35207,6,4.5 +12791,0,0.109782,1,1,0,2,4,,3,1,Chalmers,St,1578102,3.98,4.09,0,2.634774,6,4.5 +13787,0,0.245259,1,1,0,2,5,,3,1,Seymour,St,1588403,0.164,0.409,0,5.886206,8,4.5 +14242,0,0.251681,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,0.391,0.643,0,6.040355,6,4.5 +33125,0,0.370471,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.891308,0.15,4 +33145,0,0.504038,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.096923,0.15,4 +33388,0,0.064653,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.551662,0.15,4 +33389,0,0.225905,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.421728,0.15,4 +13997,0,0.197863,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,0.193,0.391,0,4.748714,6,4.5 +33548,0,0.387843,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.308222,0.15,4 +13965,0,0.163915,1,1,0,2,5,,3,1,Seymour,St,1588403,0,0.164,0,3.933968,8,4.5 +22816,0,0.277658,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,7.329,7.606,0,6.663795,5,5 +33393,0,0.118807,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.85136,0.15,4 +33407,0,0.289326,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.943819,0.15,4 +14345,-1,0.057134,0,1,0,2,5,,3,1,Greiner,St,1588404,1.553,1.61,0,1.371222,8,4.5 +23094,0,0.060356,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,7.268,7.329,0,1.448538,5,5 +14227,-1,0.059182,0,1,0,2,5,,3,1,Greiner,St,1588404,1.493,1.553,0,1.42038,8,4.5 +16237,0,0.059454,2,2,0,2,4,,3,1,Schoenherr,St,1602409,0,0.059,0,1.426894,6,4.5 +23592,0,0.089285,2,2,0,2,3,,3,1,McNichols,Rd,4705875,1.588,1.677,0,2.142839,5,5 +12452,0,0.331027,1,1,0,2,4,,3,1,Chalmers,St,1578102,3.65,3.98,0,7.944642,6,4.5 +14024,0,0.249861,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,0.643,0.892,0,5.996653,6,4.5 +14439,0,0.250788,1,1,0,2,5,,3,1,Seymour,St,1588403,0.409,0.66,0,6.018919,8,4.5 +33146,0,0.059981,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.439548,0.15,4 +3626,1,0.250151,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,4.997,5.247,0,6.003635,5,5 +4093,0,0.348088,1,1,0,2,5,,3,4,Toepfer,Rd,802903,0.673,1.021,0,8.354115,8,4.5 +4675,0,0.262223,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.02,0.283,0,6.293364,6,4.5 +4787,-1,0.281562,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,4.998,5.279,0,6.757497,5,5 +5358,0,0.349411,2,2,1,2,4,,3,4,9 Mile,Rd,803006,4.998,5.347,0,8.385876,6,4.5 +13872,0,0.251274,1,1,0,2,5,,3,1,State Fair,St,1588609,1.215,1.466,0,6.030575,8,4.5 +18057,0,0.124654,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,22.913,23.038,0,2.991695,5,5 +25204,0,0.248038,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.952919,0.15,4 +26494,0,0.261322,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.271726,0.15,4 +27484,0,0.224504,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.388084,0.15,4 +27491,0,0.3839,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.213607,0.15,4 +27492,0,0.381687,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.160478,0.15,4 +27493,0,0.243995,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.855887,0.15,4 +31202,0,0.188127,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.51504,0.15,4 +33410,0,0.263273,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.318561,0.15,4 +4094,-1,0.167528,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,4.498,4.665,0,4.020666,5,5 +4307,1,0.186821,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,4.498,4.685,0,4.483696,5,5 +14045,0,0.49869,1,1,0,2,5,,3,1,State Fair,St,1588609,0.716,1.215,0,11.968571,8,4.5 +16226,0,0.249331,2,2,0,2,4,,3,1,Schoenherr,St,1602409,1.063,1.312,0,5.983933,6,4.5 +18355,0,0.435263,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,22.478,22.913,0,10.446306,5,5 +31203,0,0.500074,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.001778,0.15,4 +33415,0,0.500014,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.000328,0.15,4 +33416,0,0.251168,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.028034,0.15,4 +33403,0,0.250208,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.004995,0.15,4 +33405,0,0.257743,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.185843,0.15,4 +33414,0,0.240335,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.768036,0.15,4 +33590,0,0.261062,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.26548,0.15,4 +16228,0,0.251003,2,2,0,2,4,,3,1,Schoenherr,St,1602409,0.812,1.063,0,6.024068,6,4.5 +16229,0,0.252244,2,2,0,2,4,,3,1,Schoenherr,St,1602409,0.56,0.812,0,6.053852,6,4.5 +3631,-1,0.33262,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,4.665,4.998,0,7.982889,5,5 +4006,1,0.312577,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,4.685,4.997,0,7.501844,5,5 +16205,0,0.239189,2,2,0,2,4,,3,1,Schoenherr,St,1602409,1.312,1.551,0,5.740526,6,4.5 +4839,0,0.010286,2,2,0,2,4,,3,1,Schoenherr,St,798810,0,0.01,0,0.246857,6,4.5 +4498,0,0.010009,2,2,0,2,4,,3,4,Schoenherr,St,798810,0.01,0.02,0,0.240225,6,4.5 +4076,0,0.246902,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.506,0.753,0,5.925648,6,4.5 +4703,0,0.041317,1,1,0,2,5,,3,4,Toepfer,Rd,802903,0.299,0.34,0,0.991601,8,4.5 +5311,0,0.579782,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,0.589,1.169,0,13.91477,5,5 +5360,0,0.280311,2,2,1,2,4,,3,4,9 Mile,Rd,803006,4.436,4.717,0,6.727475,6,4.5 +25205,0,0.322633,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.743184,0.15,4 +27495,0,0.267943,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.430627,0.15,4 +5312,0,0.192851,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,0.397,0.589,0,4.628415,5,5 +5030,0,0.19958,1,1,0,2,5,,3,4,Toepfer,Rd,802903,0.1,0.299,0,4.789911,8,4.5 +4360,0,0.217107,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.289,0.506,0,5.210559,6,4.5 +4377,0,0.332536,1,1,0,2,5,,3,4,Toepfer,Rd,802903,0.34,0.673,0,7.980855,8,4.5 +25223,0,0.366649,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.799582,0.15,4 +27483,0,0.267703,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.424878,0.15,4 +4352,0,0.006696,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.283,0.289,0,0.16071,6,4.5 +5073,0,0.217846,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.785,1.002,0,5.228299,6,4.5 +5359,0,0.281361,2,2,1,2,4,,3,4,9 Mile,Rd,803006,4.717,4.998,0,6.752666,6,4.5 +27494,0,0.223747,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.369939,0.15,4 +4063,0,0.031482,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.753,0.785,0,0.755558,6,4.5 +4184,-1,0.219983,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,5.342,5.562,0,5.279598,5,5 +4452,1,0.24367,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,5.373,5.616,0,5.848073,5,5 +13928,0,0.250999,1,1,0,2,5,,3,1,State Fair,St,1588609,1.466,1.717,0,6.023973,8,4.5 +19140,0,0.123586,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,23.293,23.417,0,2.966056,5,5 +22597,0,0.2117,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,8.464,8.676,0,5.080805,5,5 +23523,0,0.199589,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,7.894,8.094,0,4.790136,5,5 +33152,0,0.290068,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.961636,0.15,4 +33446,0,0.231789,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.56293,0.15,4 +33450,0,0.25642,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.154083,0.15,4 +17857,0,0.123118,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,23.038,23.161,0,2.954821,5,5 +33404,0,0.274794,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.595055,0.15,4 +17540,0,0.132231,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,23.161,23.293,0,3.173537,5,5 +33445,0,0.23087,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.540882,0.15,4 +31305,0,0.27662,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.638888,0.15,4 +33449,0,0.247396,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.937515,0.15,4 +4781,1,0.125366,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,5.247,5.373,0,3.008783,5,5 +4459,-1,0.062757,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,5.279,5.342,0,1.506165,5,5 +14298,0,0.201547,1,1,0,2,5,,3,1,State Fair,St,1588609,1.859,2.06,0,4.837127,8,4.5 +18812,0,0.250319,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,23.417,23.667,0,6.007659,5,5 +23183,0,0.177266,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,8.094,8.271,0,4.254382,5,5 +33402,0,0.381378,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.15308,0.15,4 +33444,0,0.242312,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.815498,0.15,4 +13738,0,0.142242,1,1,0,2,5,,3,1,State Fair,St,1588609,1.717,1.859,0,3.413806,8,4.5 +22890,0,0.193223,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,8.271,8.464,0,4.637357,5,5 +33148,0,0.13498,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.239531,0.15,4 +33151,0,0.2141,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.138392,0.15,4 +33153,0,0.18235,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.376409,0.15,4 +33589,0,0.231932,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.566368,0.15,4 +3630,0,0.216078,1,1,0,2,5,,3,4,Toepfer,Rd,802903,1.021,1.237,0,5.185871,8,4.5 +5356,0,0.346743,2,2,1,2,4,,3,4,9 Mile,Rd,803006,5.428,5.775,0,8.321835,6,4.5 +27489,0,0.250727,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.017444,0.15,4 +27490,0,0.311248,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.469958,0.15,4 +27488,0,0.247063,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.929502,0.15,4 +5357,0,0.081209,2,2,1,2,4,,3,4,9 Mile,Rd,803006,5.347,5.428,0,1.949026,6,4.5 +4786,0,0.215687,1,1,0,2,5,,3,4,Toepfer,Rd,802903,1.237,1.453,0,5.176483,8,4.5 +5336,0,0.239845,2,2,1,2,4,,3,4,9 Mile,Rd,803006,9.188,9.427,0,5.756284,6,4.5 +6266,0,0.392357,2,2,1,2,4,,3,4,Greater Mack,Ave,809106,0.198,0.59,0,9.416569,6,4.5 +12862,0,0.223026,1,1,1,2,4,,3,1,Chalmers,St,1578102,2.112,2.335,0,5.352629,6,4.5 +13457,1,0.398752,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,7.092,7.49,0,9.570042,5,5 +17832,0,0.49178,1,1,0,2,5,,3,2,Kerby,Rd,1637802,0.647,1.139,0,11.802716,8,4.5 +17856,0,0.632643,1,1,0,2,5,,3,2,Cook,Rd,1637610,0.563,1.195,0,15.183436,8,4.5 +18019,1,0.452908,2,0,0,2,4,DV2,3,1,Outer,Dr,1635202,1.581,2.034,0,10.869787,6,4.5 +18077,1,0.049198,1,0,0,2,4,DV2,3,1,Alter,Rd,1635003,3.15,3.199,0,1.180746,6,4.5 +18720,1,0.014845,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,1.457,1.471,0,0.356269,6,4.5 +18777,-1,0.714427,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,0.325,1.039,0,17.146256,5,5 +18813,1,0.638179,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,0.862,1.5,0,15.316306,5,5 +18951,0,0.539992,2,2,0,2,4,,3,2,Moross,Rd,1632608,0.802,1.341,0,12.959797,6,4.5 +19417,0,0.413769,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,1.472,1.886,0,9.930451,6,4.5 +19425,0,0.453392,1,1,0,2,5,,3,2,Grosse Pointe,Blvd,1715203,1.919,2.373,0,10.881412,8,4.5 +19427,0,0.525817,1,1,0,2,5,,3,2,Grosse Pointe,Blvd,1715203,1.037,1.562,0,12.619605,8,4.5 +19431,0,0.21256,1,1,0,2,5,,3,2,Fisher,Rd,1714801,0,0.213,0,5.101436,8,4.5 +21873,0,0.333012,1,1,1,2,3,,3,1,Warren,Ave,4700429,7.643,7.976,0,7.992295,5,5 +22227,-1,0.40735,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,0.203,0.61,0,9.776397,5,5 +22256,0,0.245491,2,2,0,2,4,,3,2,Vernier,Rd,4702103,1.625,1.871,0,5.891794,6,4.5 +22675,0,0.202271,1,1,0,2,4,,3,2,Kercheval,Ave,4705782,3.206,3.408,0,4.854497,6,4.5 +22804,0,0.369104,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,7.789,8.158,0,8.858504,5,5 +22996,-1,0.013996,0,1,0,2,4,DV2,3,1,Outer,Dr,4705402,0.049,0.063,0,0.335914,6,4.5 +23022,0,0.413349,2,2,0,2,4,,3,2,Kercheval,Ave,4705782,3.856,4.27,0,9.920373,6,4.5 +23066,-1,0.367934,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,0.508,0.876,0,8.830414,6,4.5 +23146,-1,0.221114,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,0.477,0.698,0,5.306734,6,4.5 +27496,0,0.260606,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.254539,0.15,4 +27505,0,0.352788,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.466901,0.15,4 +30755,0,0.622273,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.934543,0.15,4 +30756,0,0.700266,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.806393,0.15,4 +30758,0,0.372073,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.92976,0.15,4 +30935,0,0.196477,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.71544,0.15,4 +33291,0,0.627014,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.048331,0.15,4 +33453,0,0.626603,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.038476,0.15,4 +33459,0,0.382714,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.18514,0.15,4 +33462,0,0.612821,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.707704,0.15,4 +33467,0,0.697053,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.729261,0.15,4 +33472,0,0.231855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.564518,0.15,4 +33479,0,0.181861,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.364673,0.15,4 +33482,0,0.169328,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.063867,0.15,4 +33490,0,0.298068,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.153626,0.15,4 +33493,0,0.440401,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.569628,0.15,4 +33496,0,0.364229,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.741484,0.15,4 +33532,0,0.434741,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.433784,0.15,4 +33536,0,0.369007,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.85618,0.15,4 +33567,0,0.60808,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.593918,0.15,4 +14352,0,0.331881,2,2,0,2,3,,3,1,Mack,Ave,1587509,6.015,6.347,0,7.965139,5,5 +18205,0,0.280218,1,1,0,2,5,,3,1,Alter,Rd,1635003,0.652,0.932,0,6.725236,8,4.5 +18309,0,0.70862,1,1,0,2,5,,3,1,Lakewood,St,1634903,0.059,0.767,0,17.006869,8,4.5 +18348,0,0.076864,1,1,0,2,5,,3,1,Conner,St,1634703,0.694,0.771,0,1.844731,8,4.5 +19435,0,0.057568,1,1,0,2,5,,3,1,Freud,St,1713403,1.627,1.685,0,1.381639,8,4.5 +22587,0,0.309489,1,1,0,2,5,,3,1,Dickerson,St,4706136,0.228,0.537,0,7.427729,8,4.5 +22588,1,0.315143,2,0,0,2,3,DV2,3,2,Jefferson,Ave,4705824,6.078,6.393,0,7.56344,5,5 +22739,-1,0.280609,0,2,0,2,3,DV2,3,2,Jefferson,Ave,4706128,0,0.281,0,6.73462,5,5 +23258,0,0.640758,1,1,0,2,5,,3,2,Vernor,Hwy,4705783,1.402,2.042,0,15.378197,8,4.5 +23429,0,0.153623,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,4.49,4.644,0,3.686947,5,5 +23432,0,0.641137,1,1,0,2,5,,3,2,Charlevoix,Ave,4705784,0.736,1.377,0,15.387288,8,4.5 +23519,0,0.209467,1,1,0,2,4,,3,2,Kercheval,St,4705782,1.347,1.557,0,5.0272,6,4.5 +33506,0,0.218533,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.244798,0.15,4 +33507,0,0.365818,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.77964,0.15,4 +33510,0,0.619594,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.870244,0.15,4 +33511,0,0.593893,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.253432,0.15,4 +33513,0,0.500689,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.016537,0.15,4 +19438,0,0.327254,1,1,0,2,5,,3,1,Freud,St,1713403,0.883,1.21,0,7.854091,8,4.5 +19439,0,0.339096,1,1,0,2,5,,3,1,Freud,St,1713403,0.544,0.883,0,8.138314,8,4.5 +19441,0,0.176606,1,1,0,2,5,,3,1,Freud,St,1713403,0.289,0.466,0,4.238542,8,4.5 +22953,0,0.208109,1,1,0,2,5,,3,1,Lycaste,St,4705775,0.291,0.499,0,4.994618,8,4.5 +30976,0,0.271304,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.511302,0.15,4 +22676,0,0.06149,1,1,0,2,5,,3,1,Lycaste,St,4705775,0.499,0.561,0,1.475751,8,4.5 +19440,0,0.078024,1,1,0,2,5,,3,1,Freud,St,1713403,0.466,0.544,0,1.87257,8,4.5 +23260,0,0.291409,1,1,0,2,5,,3,1,Lycaste,St,4705775,0,0.291,0,6.993819,8,4.5 +30727,0,0.314141,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.53938,0.15,4 +30975,0,0.012358,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.296584,0.15,4 +23332,0,0.1164,2,2,0,2,5,,3,1,Edlie,St,4705781,0.052,0.168,0,2.793607,8,4.5 +22585,0,0.350098,1,1,0,2,5,,3,1,Clairpointe,Ave,4706135,0.451,0.801,0,8.402358,8,4.5 +18314,0,0.302206,1,1,0,2,5,,3,1,Lenox,St,1634802,0.235,0.537,0,7.252951,8,4.5 +18343,0,0.235276,1,1,0,2,5,,3,1,Lenox,St,1634802,0,0.235,0,5.646612,8,4.5 +33503,0,0.241012,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.78429,0.15,4 +33504,0,0.271764,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.522345,0.15,4 +19436,0,0.314386,1,1,0,2,5,,3,1,Freud,St,1713403,1.313,1.627,0,7.545271,8,4.5 +22586,0,0.227774,1,1,0,2,5,,3,1,Dickerson,St,4706136,0,0.228,0,5.466564,8,4.5 +33509,0,0.246387,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.913294,0.15,4 +19437,0,0.103058,1,1,0,2,5,,3,1,Freud,St,1713403,1.21,1.313,0,2.473399,8,4.5 +33373,0,0.174826,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.195827,0.15,4 +18311,0,0.058701,1,1,0,2,5,,3,1,Lakewood,St,1634903,0,0.059,0,1.408814,8,4.5 +12879,0,0.274289,1,1,0,2,4,,3,1,Chalmers,St,1578102,0.762,1.036,0,6.582933,6,4.5 +14104,0,0.477114,2,2,1,2,3,,3,1,Mack,Ave,1587509,4.717,5.194,0,11.450744,5,5 +14187,0,0.274832,2,2,1,2,3,,3,1,Mack,Ave,1587509,5.194,5.468,0,6.595975,5,5 +18094,0,0.394421,1,1,0,2,4,,3,1,Alter,Rd,1635003,2.43,2.825,0,9.466094,6,4.5 +18118,0,0.209879,1,1,0,2,4,,3,1,Alter,Rd,1635003,1.859,2.069,0,5.037088,6,4.5 +21325,0,0.179166,1,1,1,2,3,,3,1,Warren,Ave,4700429,7.087,7.266,0,4.299995,5,5 +22302,0,0.291089,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,5.277,5.568,0,6.986143,5,5 +22746,0,0.280539,1,1,0,2,5,,3,1,Kercheval,St,4705782,0.301,0.581,0,6.732933,8,4.5 +23088,0,0.336545,1,1,0,2,5,,3,2,Charlevoix,Ave,4705784,1.377,1.714,0,8.077083,8,4.5 +23177,1,0.189836,3,0,0,2,4,,3,1,Charlevoix,St,4705784,2.009,2.199,0,4.556065,6,4.5 +23220,0,0.348731,1,1,0,2,4,,3,1,Dickerson,St,4705398,1.075,1.424,0,8.369551,6,4.5 +23518,1,0.470499,2,0,0,2,4,,3,1,Vernor,Hwy,4705783,0.3,0.771,0,11.291975,6,4.5 +33118,0,0.314352,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.54446,0.15,4 +33502,0,0.31676,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.602244,0.15,4 +33516,0,0.090318,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.167643,0.15,4 +33517,0,0.287128,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.891068,0.15,4 +33519,0,0.262215,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.29317,0.15,4 +33523,0,0.355912,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.541882,0.15,4 +33909,0,0.240717,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.777198,0.15,4 +13905,0,0.18713,3,3,1,2,3,,3,1,Conner,St,1588005,0.427,0.614,0,4.491127,5,5 +14444,0,0.284497,1,1,1,2,3,,3,1,Conner,St,1588005,0,0.284,0,6.827926,5,5 +22528,1,0.060788,2,0,0,2,4,,3,1,Vernor,Hwy,4705783,0.24,0.3,0,1.458907,6,4.5 +22811,1,0.239605,2,0,0,2,4,,3,1,Vernor,Hwy,4705783,0,0.24,0,5.750512,6,4.5 +22822,0,0.358593,1,1,0,2,5,,3,1,Dickerson,St,4705398,0.717,1.075,0,8.60624,8,4.5 +23023,0,0.300957,1,1,0,2,5,,3,1,Kercheval,St,4705782,0,0.301,0,7.222974,8,4.5 +23085,0,0.316723,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,4.644,4.96,0,7.601351,5,5 +23444,0,0.140555,1,1,0,2,5,,3,1,Dickerson,St,4705398,0.389,0.529,0,3.373326,8,4.5 +23599,1,0.239353,3,0,0,2,4,,3,1,Charlevoix,St,4705784,2.539,2.778,0,5.744473,6,4.5 +33500,0,0.332592,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.982199,0.15,4 +14097,0,0.142367,3,3,1,2,3,,3,1,Conner,St,1588005,0.284,0.427,0,3.416808,5,5 +14359,0,0.185368,2,2,1,2,3,,3,1,Mack,Ave,1587509,4.531,4.717,0,4.448823,5,5 +14467,0,0.436182,1,1,1,2,3,,3,1,Conner,St,1588005,0.614,1.05,0,10.468366,5,5 +14074,0,0.126348,2,2,1,2,3,,3,1,Mack,Ave,1587509,4.405,4.531,0,3.032345,5,5 +22731,0,0.205193,1,1,0,2,5,,3,1,Dickerson,St,4705398,0.183,0.389,0,4.924632,8,4.5 +22806,0,0.266812,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,4.96,5.227,0,6.403479,5,5 +22997,0,0.183451,1,1,0,2,5,,3,1,Dickerson,St,4705398,0,0.183,0,4.402819,8,4.5 +22670,0,0.050178,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,5.227,5.277,0,1.204274,5,5 +22884,1,0.279332,3,0,0,2,4,,3,1,Charlevoix,St,4705784,2.199,2.478,0,6.703956,6,4.5 +33505,0,0.30217,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.252077,0.15,4 +33521,0,0.059887,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.437286,0.15,4 +23101,0,0.187484,1,1,0,2,5,,3,1,Dickerson,St,4705398,0.529,0.717,0,4.499627,8,4.5 +22591,1,0.061091,3,0,0,2,4,,3,1,Charlevoix,St,4705784,2.478,2.539,0,1.466195,6,4.5 +12521,0,0.254408,1,1,0,2,4,,3,1,Chalmers,St,1578102,1.725,1.979,0,6.105801,6,4.5 +12871,0,0.393114,1,1,0,2,4,,3,1,Chalmers,St,1578102,1.332,1.725,0,9.43473,6,4.5 +18722,1,0.220639,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,1.236,1.457,0,5.295339,6,4.5 +21591,0,0.407237,1,1,1,2,3,,3,1,Warren,Ave,4700429,6.432,6.839,0,9.773684,5,5 +33130,0,0.427225,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.253396,0.15,4 +33161,0,0.388059,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.313409,0.15,4 +22926,0,0.255022,1,1,0,2,4,,3,1,Dickerson,St,4705398,1.424,1.679,0,6.120533,6,4.5 +33116,0,0.180384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.329222,0.15,4 +21755,0,0.058881,1,1,1,2,3,,3,1,Warren,Ave,4700429,6.373,6.432,0,1.413138,5,5 +23191,-1,0.190735,0,1,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,0.287,0.477,0,4.577645,6,4.5 +33358,0,0.087329,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.095905,0.15,4 +12863,0,0.118575,1,1,0,2,4,,3,1,Chalmers,St,1578102,1.979,2.098,0,2.845805,6,4.5 +18723,1,0.12326,1,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,1.113,1.236,0,2.958242,6,4.5 +33131,0,0.148191,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.556589,0.15,4 +33129,0,0.049457,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.186966,0.15,4 +12513,0,0.014304,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.098,2.112,0,0.343291,6,4.5 +12523,0,0.295471,1,1,0,2,4,,3,1,Chalmers,St,1578102,1.036,1.332,0,7.091303,6,4.5 +33528,0,0.103486,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.483659,0.15,4 +18080,0,0.325116,1,1,0,2,4,,3,1,Alter,Rd,1635003,2.825,3.15,0,7.802778,6,4.5 +21487,0,0.247865,1,1,1,2,3,,3,1,Warren,Ave,4700429,6.839,7.087,0,5.948768,5,5 +23313,-1,0.049396,0,1,0,2,4,DV2,3,1,Alter,Rd,4705402,0,0.049,0,1.185497,6,4.5 +12534,0,0.442064,1,1,0,2,4,,3,1,Chalmers,St,1578102,0,0.442,0,10.609536,6,4.5 +18120,0,0.138491,2,2,0,2,4,,3,1,Alter,Rd,1635003,1.543,1.681,0,3.323783,6,4.5 +18189,0,0.158728,1,1,0,2,4,,3,1,Alter,Rd,1635003,1.219,1.378,0,3.809484,6,4.5 +18308,0,0.2288,1,1,0,2,5,,3,1,Lakewood,St,1634903,0.767,0.996,0,5.491199,8,4.5 +22592,0,0.028809,1,1,0,2,5,,3,1,Vernor,Hwy,4705783,1.036,1.064,0,0.691426,8,4.5 +23090,0,0.267769,1,1,0,2,5,,3,1,Kercheval,St,4705782,0.769,1.037,0,6.426447,8,4.5 +23174,0,0.271193,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,5.755,6.026,0,6.508622,5,5 +33501,0,0.487765,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.70637,0.15,4 +33518,0,0.208998,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.01595,0.15,4 +33520,0,0.241846,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.804299,0.15,4 +23596,0,0.094858,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,5.568,5.663,0,2.276598,5,5 +23325,0,0.091357,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,5.663,5.755,0,2.192576,5,5 +12529,0,0.181292,1,1,0,2,4,,3,1,Chalmers,St,1578102,0.581,0.762,0,4.351,6,4.5 +12888,0,0.139011,1,1,0,2,4,,3,1,Chalmers,St,1578102,0.442,0.581,0,3.336256,6,4.5 +22527,1,0.212358,3,0,0,2,4,,3,1,Charlevoix,St,4705784,1.744,1.956,0,5.096584,6,4.5 +22885,1,0.212285,2,0,0,2,4,,3,1,Vernor,Hwy,4705783,0.823,1.036,0,5.094829,6,4.5 +23434,0,0.187626,1,1,0,2,5,,3,1,Kercheval,St,4705782,0.581,0.769,0,4.503022,8,4.5 +23178,1,0.05262,2,0,0,2,4,,3,1,Vernor,Hwy,4705783,0.771,0.823,0,1.262879,6,4.5 +23517,1,0.053066,3,0,0,2,4,,3,1,Charlevoix,St,4705784,1.956,2.009,0,1.273584,6,4.5 +18119,0,0.177807,2,2,0,2,4,,3,1,Alter,Rd,1635003,1.681,1.859,0,4.267357,6,4.5 +22810,0,0.030093,1,1,0,2,5,,3,1,Charlevoix,St,4705784,1.714,1.744,0,0.722232,8,4.5 +18198,0,0.104353,1,1,0,2,4,,3,1,Alter,Rd,1635003,1.115,1.219,0,2.504469,6,4.5 +18199,0,0.183113,1,1,0,2,5,,3,1,Alter,Rd,1635003,0.932,1.115,0,4.394711,8,4.5 +22807,0,0.015805,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,6.062,6.078,0,0.379313,5,5 +22947,0,0.036531,2,2,0,2,3,,3,1,Jefferson,Ave,4705824,6.026,6.062,0,0.876737,5,5 +22529,0,0.27399,1,1,0,2,4,,3,2,Kercheval,St,4705782,1.073,1.347,0,6.575757,6,4.5 +23600,0,0.337494,1,1,0,2,5,,3,2,Vernor,Hwy,4705783,1.064,1.402,0,8.099859,8,4.5 +18181,0,0.16484,1,1,0,2,4,,3,1,Alter,Rd,1635003,1.378,1.543,0,3.956161,6,4.5 +22812,0,0.036732,1,1,0,2,4,,3,1,Kercheval,St,4705782,1.037,1.073,0,0.881575,6,4.5 +14124,0,0.125068,2,2,1,2,3,,3,1,Mack,Ave,1587509,5.66,5.785,0,3.00164,5,5 +33489,0,0.399077,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.577846,0.15,4 +33497,0,0.433995,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.415891,0.15,4 +33498,0,0.436081,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.46594,0.15,4 +18108,0,0.361791,1,1,0,2,4,,3,1,Alter,Rd,1635003,2.069,2.43,0,8.682976,6,4.5 +33167,0,0.186199,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.468765,0.15,4 +33487,0,0.40178,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.642729,0.15,4 +13973,0,0.192188,2,2,1,2,3,,3,1,Mack,Ave,1587509,5.468,5.66,0,4.612516,5,5 +21090,0,0.201514,1,1,1,2,3,,3,1,Warren,Ave,4700429,7.266,7.468,0,4.836343,5,5 +22031,0,0.174895,1,1,1,2,3,,3,1,Warren,Ave,4700429,7.468,7.643,0,4.197472,5,5 +13932,0,0.176058,2,2,1,2,3,,3,1,Mack,Ave,1587509,5.785,5.961,0,4.225389,5,5 +33908,0,0.243836,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.852058,0.15,4 +13683,0,0.053593,2,2,1,2,3,,3,1,Mack,Ave,1587509,5.961,6.015,0,1.286225,5,5 +33514,0,0.093313,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.239518,0.15,4 +18296,0,0.349852,1,1,0,2,5,,3,1,Alter,Rd,1635003,0,0.35,0,8.396445,8,4.5 +18265,0,0.301844,1,1,0,2,5,,3,1,Alter,Rd,1635003,0.35,0.652,0,7.244255,8,4.5 +17913,0,0.209798,1,1,0,2,5,,3,2,Saint Clair,Ave,1635305,0.9,1.11,0,5.03514,8,4.5 +17961,0,0.418154,1,1,0,2,5,,3,2,Saint Clair,Ave,1635305,0,0.418,0,10.035707,8,4.5 +19421,0,0.138894,1,1,0,2,4,,3,2,Cadieux,Rd,1715405,0.592,0.731,0,3.333458,6,4.5 +19423,0,0.308072,1,1,0,2,4,,3,2,Cadieux,Rd,1715405,0,0.308,0,7.393723,6,4.5 +22674,0,0.173696,1,1,0,2,5,,3,2,Waterloo,Ave,4705783,2.428,2.602,0,4.168713,8,4.5 +22886,0,0.31291,2,2,0,2,4,,3,2,Kercheval,St,4705782,2.116,2.429,0,7.509851,6,4.5 +23179,0,0.559784,2,2,0,2,4,,3,2,Kercheval,St,4705782,1.557,2.116,0,13.434814,6,4.5 +23326,0,0.395662,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,7.044,7.439,0,9.495881,5,5 +33457,0,0.338606,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.126535,0.15,4 +33476,0,0.287208,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.892987,0.15,4 +33531,0,0.273982,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.575564,0.15,4 +33912,0,0.246463,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.915124,0.15,4 +22740,-1,0.036389,0,2,0,2,3,DV2,3,2,Jefferson,Ave,4706128,0.281,0.317,0,0.873347,5,5 +23514,0,0.562255,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,6.481,7.044,0,13.494121,5,5 +33306,0,0.610134,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.643206,0.15,4 +33508,0,0.202327,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.855837,0.15,4 +33515,0,0.463342,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.120217,0.15,4 +22303,0,0.088431,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,6.393,6.481,0,2.122342,5,5 +33533,0,0.268613,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.446717,0.15,4 +14029,0,0.1898,2,2,0,2,3,,3,1,Mack,Ave,1587509,6.682,6.872,0,4.555201,5,5 +14346,0,0.195606,2,2,0,2,3,,3,1,Mack,Ave,1587509,6.486,6.682,0,4.694541,5,5 +18023,1,0.42457,2,0,0,2,4,DV2,3,1,Outer,Dr,1635202,1.157,1.581,0,10.189689,6,4.5 +19419,0,0.112956,1,1,0,2,4,,3,2,Cadieux,Rd,1715405,0.909,1.022,0,2.710932,6,4.5 +22744,0,0.385678,1,1,0,2,5,,3,2,Charlevoix,Ave,4705784,0.351,0.736,0,9.256272,8,4.5 +23106,-1,0.424023,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,0,0.424,0,10.176558,6,4.5 +33492,0,0.440915,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.581963,0.15,4 +33494,0,0.196712,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.721086,0.15,4 +33530,0,0.433139,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.395324,0.15,4 +33538,0,0.114471,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.747307,0.15,4 +13676,0,0.139616,2,2,0,2,3,,3,1,Mack,Ave,1587509,6.347,6.486,0,3.350791,5,5 +23105,-1,0.084135,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,0.424,0.508,0,2.019231,6,4.5 +32585,0,0.205766,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.938386,0.15,4 +33495,0,0.182273,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.374544,0.15,4 +33524,0,0.137592,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.302203,0.15,4 +33491,0,0.12365,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.967604,0.15,4 +22951,0,0.386175,1,1,0,2,5,,3,2,Vernor,Hwy,4705783,2.042,2.428,0,9.268209,8,4.5 +33539,0,0.079069,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.897648,0.15,4 +33911,0,0.226575,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.437801,0.15,4 +33910,0,0.279894,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.717456,0.15,4 +19420,0,0.178214,1,1,0,2,4,,3,2,Cadieux,Rd,1715405,0.731,0.909,0,4.277129,6,4.5 +19418,0,0.450486,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,1.022,1.472,0,10.811672,6,4.5 +13667,1,0.182098,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,6.886,7.068,0,4.370361,5,5 +22229,-1,0.177945,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,0,0.178,0,4.27069,5,5 +13863,0,0.014141,2,2,0,2,3,,3,1,Mack,Ave,1587509,6.872,6.886,0,0.339393,5,5 +14340,1,0.023852,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,7.068,7.092,0,0.572438,5,5 +22228,-1,0.024808,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,0.178,0.203,0,0.595397,5,5 +17763,0,0.004536,1,1,0,2,5,,3,2,Guilford,St,1639410,0,0.005,0,0.108858,8,4.5 +17758,0,0.005614,1,1,0,2,5,,3,1,Guilford,St,1639410,0.005,0.01,0,0.134741,8,4.5 +23427,0,0.17424,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,7.439,7.613,0,4.181768,5,5 +33458,0,0.101556,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.437352,0.15,4 +23084,0,0.175386,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,7.613,7.789,0,4.209269,5,5 +17922,0,0.178365,1,1,0,2,5,,3,2,Saint Clair,Ave,1635305,0.722,0.9,0,4.280758,8,4.5 +19429,0,0.164825,1,1,0,2,5,,3,2,Fisher,Rd,1714801,0.389,0.554,0,3.955801,8,4.5 +23259,0,0.372206,1,1,0,2,4,,3,2,Kercheval,Ave,4705782,2.78,3.152,0,8.932953,6,4.5 +23665,0,0.403453,1,1,0,2,5,,3,2,Waterloo,Ave,4705783,2.602,3.005,0,9.682866,8,4.5 +33474,0,0.220352,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.28844,0.15,4 +33475,0,0.286582,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.877977,0.15,4 +33486,0,0.309748,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.433945,0.15,4 +33535,0,0.35703,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.56871,0.15,4 +17955,0,0.164723,1,1,0,2,5,,3,2,Saint Clair,Ave,1635305,0.418,0.583,0,3.953344,8,4.5 +22593,0,0.173853,1,1,0,2,4,,3,2,Kercheval,Ave,4705782,2.429,2.603,0,4.172462,6,4.5 +23601,0,0.1768,1,1,0,2,4,,3,2,Kercheval,Ave,4705782,2.603,2.78,0,4.24321,6,4.5 +19422,0,0.283889,1,1,0,2,4,,3,2,Cadieux,Rd,1715405,0.308,0.592,0,6.813347,6,4.5 +17923,0,0.138814,1,1,0,2,5,,3,2,Saint Clair,Ave,1635305,0.583,0.722,0,3.331526,8,4.5 +33534,0,0.063441,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.522583,0.15,4 +19430,0,0.176858,1,1,0,2,5,,3,2,Fisher,Rd,1714801,0.213,0.389,0,4.244604,8,4.5 +33473,0,0.384632,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.23118,0.15,4 +19428,1,0.138376,1,0,0,2,5,,3,2,Fisher,Rd,1714801,0.554,0.692,0,3.321013,8,4.5 +23021,0,0.054583,1,1,0,2,5,,3,2,Ridge,Rd,4705783,3.151,3.206,0,1.309982,8,4.5 +23330,0,0.145668,1,1,0,2,5,,3,2,Waterloo,Ave,4705783,3.005,3.151,0,3.496024,8,4.5 +18759,-1,0.138459,0,1,0,2,5,,3,2,McKinley,Ave,1632705,0,0.139,0,3.323022,8,4.5 +22952,0,0.054141,1,1,0,2,4,,3,2,Kercheval,Ave,4705782,3.152,3.206,0,1.299391,6,4.5 +3968,1,0.273495,4,0,0,2,3,DIV,3,2,8 Mile,Rd,802803,7.294,7.567,0,6.56389,5,5 +4308,0,0.473919,1,1,0,2,5,,3,4,Toepfer,Dr,802903,2.866,3.34,0,11.374046,8,4.5 +4628,-1,0.259457,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,7.309,7.568,0,6.226966,5,5 +5348,0,0.066034,2,2,1,2,4,,3,4,9 Mile,Rd,803006,7.533,7.599,0,1.584808,6,4.5 +10748,1,0.909775,3,0,0,1,1,,3,2,E I 94,,1576405,37.008,37.917,0,,0.58,7 +11294,1,0.360199,3,0,0,1,1,,3,1,E I 94,,1576405,35.625,35.985,0,,0.58,7 +12263,0,0.445225,2,2,0,2,4,,3,1,Morang,Dr,1578203,1.511,1.956,0,10.685393,6,4.5 +12273,1,0.145291,1,0,0,1,1,RON,3,1,Cadieux/E I 94,RAMP,1578202,0,0.145,0,,1.09,4 +12276,0,0.226313,2,2,1,2,5,,3,1,Harper,Ave,1578108,5.209,5.435,0,5.43151,8,4.5 +12596,0,0.344856,1,1,0,2,5,,3,1,Morang,Dr,1578203,0.08,0.425,0,8.276538,8,4.5 +13687,1,0.176924,1,0,0,1,1,ROF,3,1,W I 94/Cadieux,RAMP,1589209,0,0.177,0,,2.24,5 +13925,1,0.340029,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,9.473,9.812,0,8.160686,5,5 +14211,-1,0.620927,0,3,0,1,1,,3,2,W I 94,,1588802,36.691,37.311,0,,0.58,7 +14313,1,0.117922,1,0,0,1,1,ROF,3,2,W I 94/Allard,RAMP,1589303,0,0.118,0,,2.24,5 +14446,-1,0.313481,0,3,0,1,1,,3,1,W I 94,,1588802,35.671,35.985,0,,0.58,7 +16094,0,0.021082,2,2,0,2,4,,3,1,Kelly,Rd,1602605,1.231,1.252,0,0.505977,6,4.5 +16170,0,0.316514,2,2,0,2,4,,3,1,Hayes,St,1602506,1.802,2.118,0,7.596334,6,4.5 +18634,1,0.18759,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,2.701,2.889,0,4.50216,6,4.5 +18822,1,0.361504,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,3.534,3.896,0,8.676104,5,5 +18824,1,0.354445,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,2.869,3.224,0,8.506673,5,5 +19412,0,0.166403,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.515,2.681,0,3.993672,6,4.5 +20447,1,0.321084,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,0.288,0.609,0,7.70602,6,4.5 +20457,1,0.320462,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,1.697,2.018,0,7.691098,6,4.5 +21429,0,0.188414,1,1,1,2,3,,3,1,Warren,Ave,4700429,8.12,8.308,0,4.521944,5,5 +22215,-1,0.33961,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,2.579,2.919,0,8.150652,5,5 +22508,1,0.216732,3,0,0,2,5,,3,2,Harper,Ave,4705400,1.116,1.333,0,5.20157,8,4.5 +22758,-1,0.686331,0,3,0,2,5,,3,2,Harper,Ave,4705399,1.21,1.896,0,16.471936,8,4.5 +23114,-1,0.187436,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,1.943,2.13,0,4.498472,6,4.5 +23164,-1,0.035902,0,2,0,2,3,DV2,3,1,Moross,Rd,4705319,2.556,2.592,0,0.861646,5,5 +23204,-1,0.347149,0,2,0,2,3,DV2,3,1,Moross,Rd,4705319,1.528,1.875,0,8.331583,5,5 +23428,-1,0.223291,0,2,0,2,5,,3,1,W I 94 Service Drive,,4705828,0.781,1.004,0,5.358988,8,4.5 +24319,0,0.748112,2,2,0,2,5,,3,2,Beaconsfield,Rd,4711343,0.473,1.221,0,17.9547,8,4.5 +24485,0,0.341333,2,2,0,2,5,,3,2,Beaconsfield,Rd,4711343,0.132,0.473,0,8.192,8,4.5 +24887,0,0.330113,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.922721,0.15,4 +27026,0,0.245118,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.882825,0.15,4 +29723,0,0.339316,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.143589,0.15,4 +30383,0,0.401298,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.63116,0.15,4 +30752,0,0.425778,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.218676,0.15,4 +30761,0,0.295552,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.093245,0.15,4 +31477,0,0.201959,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.847008,0.15,4 +31994,0,0.144474,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.46737,0.15,4 +32008,0,0.370905,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.901712,0.15,4 +33460,0,0.496877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.925059,0.15,4 +33563,0,0.323502,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.764052,0.15,4 +33915,0,0.447265,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.734363,0.15,4 +11197,1,0.36108,3,0,0,1,1,,3,1,E I 94,,1576405,34.538,34.899,0,,0.58,7 +12266,0,0.365836,2,2,0,2,4,,3,1,Morang,Dr,1578203,1.081,1.447,0,8.78006,6,4.5 +12606,0,0.449721,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.864,4.314,0,10.793309,6,4.5 +13971,-1,0.698224,0,3,0,1,1,,3,1,W I 94,,1588802,34.51,35.208,0,,0.58,7 +14395,1,0.275133,2,0,0,2,5,,3,1,Hern,Ave,1588709,1.103,1.378,0,6.603186,8,4.5 +16192,0,0.091643,2,2,0,2,4,,3,1,Hayes,St,1602506,0.882,0.974,0,2.199423,6,4.5 +17737,0,0.421607,1,1,0,2,5,,3,1,Berkshire,St,1640409,0,0.422,0,10.118557,8,4.5 +17963,0,0.24909,1,1,0,2,4,,3,1,Whittier,St,1635202,3.353,3.602,0,5.978162,6,4.5 +17971,0,0.33759,1,1,0,2,4,,3,1,Whittier,St,1635202,3.015,3.353,0,8.102162,6,4.5 +18702,1,0.388272,2,0,0,2,4,DV2,3,1,Outer,Dr,1632805,1.471,1.86,0,9.318518,6,4.5 +19409,0,0.184601,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.772,2.956,0,4.430418,6,4.5 +23144,-1,0.32946,0,2,0,2,4,DV2,3,1,Outer,Dr,4704718,0.713,1.042,0,7.907041,6,4.5 +23507,-1,0.363722,0,2,0,2,3,DV2,3,1,Moross,Rd,4705319,2.193,2.556,0,8.729331,5,5 +30365,0,0.339914,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.157937,0.15,4 +30372,0,0.315532,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.572769,0.15,4 +31999,0,0.338336,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.120076,0.15,4 +32000,0,0.251577,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.037848,0.15,4 +40910,1,0.030098,2,0,0,2,4,,4,4,William P Rosso,Hwy,0,0,0,0,0.722363,4.5,4.5 +33147,0,0.266341,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.392189,0.15,4 +12286,0,0.118624,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.746,3.864,0,2.846967,6,4.5 +12374,1,0.310841,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.509,0.82,0,7.460183,6,4.5 +12446,1,0.033404,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.278,0.311,0,0.801689,6,4.5 +14378,-1,0.556644,0,3,0,1,1,,3,1,W I 94,,1588802,33.954,34.51,0,,0.58,7 +14429,1,0.220344,2,0,0,2,5,,3,1,Hern,Ave,1588709,0.476,0.697,0,5.288245,8,4.5 +16203,0,0.680095,2,2,0,2,4,,3,1,Hayes,St,1602506,0,0.68,0,16.322283,6,4.5 +17731,0,0.225583,1,1,0,2,5,,3,1,Berkshire,St,1640409,0.422,0.647,0,5.413994,8,4.5 +22514,-1,0.322998,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.564,0.887,0,7.751948,6,4.5 +22717,-1,0.014819,0,1,0,2,5,,3,1,W I 94 Service Drive,,4704859,0.22,0.235,0,0.355648,8,4.5 +23410,-1,0.052405,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.275,0.327,0,1.25771,6,4.5 +30376,0,0.216194,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.188667,0.15,4 +30377,0,0.097959,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.351013,0.15,4 +30378,0,0.084035,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.016837,0.15,4 +31998,0,0.530754,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.738104,0.15,4 +12616,0,0.014081,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.523,3.537,0,0.337952,6,4.5 +12728,1,0.198046,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.311,0.509,0,4.753099,6,4.5 +12800,0,0.357928,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.428,2.786,0,8.590269,6,4.5 +12801,0,0.013122,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.386,2.399,0,0.314935,6,4.5 +13747,1,0.156629,1,0,0,2,5,,3,1,Hern,St,1588709,0.32,0.476,0,3.759098,8,4.5 +13894,1,0.15056,1,0,0,1,1,RON,3,1,Chalmers/W I 94,RAMP,1589205,0,0.151,0,,1.09,4 +22798,-1,0.202805,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.362,0.564,0,4.867321,6,4.5 +24282,1,0.035962,1,0,0,2,4,,3,1,Chalmers/Hayes Cutoff,,4710944,0,0.036,0,0.863099,6,4.5 +12293,0,0.151084,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.372,3.523,0,3.626011,6,4.5 +12459,0,0.028509,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.399,2.428,0,0.684225,6,4.5 +12291,0,0.19441,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.537,3.732,0,4.665849,6,4.5 +12511,0,0.051224,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.335,2.386,0,1.229382,6,4.5 +22718,-1,0.220175,0,1,0,2,5,,3,1,W I 94 Service Drive,,4704859,0,0.22,0,5.284189,8,4.5 +23075,-1,0.034445,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.327,0.362,0,0.826686,6,4.5 +12610,0,0.013964,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.732,3.746,0,0.335144,6,4.5 +12726,1,0.219649,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.82,1.04,0,5.271585,6,4.5 +23506,-1,0.186279,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.887,1.073,0,4.47069,6,4.5 +16197,0,0.187288,2,2,0,2,4,,3,1,Hayes,St,1602506,0.695,0.882,0,4.49492,6,4.5 +16198,0,0.014918,2,2,0,2,4,,3,1,Hayes,St,1602506,0.68,0.695,0,0.358024,6,4.5 +17726,-1,0.023001,0,2,0,2,5,,3,1,Berkshire,St,1640409,0.647,0.67,0,0.552033,8,4.5 +13721,1,0.372793,2,0,0,2,5,,3,1,Hern,Ave,1588709,0.73,1.103,0,8.947024,8,4.5 +14412,1,0.174432,1,0,0,1,1,ROF,3,1,W I 94/Outer Drive,RAMP,1589206,0,0.174,0,,2.24,5 +12370,1,0.141556,1,0,0,1,1,RON,3,1,Outer/E I 94,RAMP,1578105,0,0.142,0,,1.09,4 +12448,1,0.209672,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.014,0.224,0,5.032125,6,4.5 +22730,-1,0.211335,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.063,0.275,0,5.072031,6,4.5 +12788,1,0.054068,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.224,0.278,0,1.297643,6,4.5 +14166,1,0.014798,2,0,0,2,5,,3,1,Hern,Ave,1588709,0.697,0.711,0,0.355149,8,4.5 +13960,1,0.018492,2,0,0,2,5,,3,1,Hern,Ave,1588709,0.711,0.73,0,0.4438,8,4.5 +23145,-1,0.014462,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,0.698,0.713,0,0.347095,6,4.5 +12789,1,0.014027,1,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0,0.014,0,0.336648,6,4.5 +30379,0,0.169438,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.066501,0.15,4 +30370,0,0.223178,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.356282,0.15,4 +30368,0,0.204172,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.900129,0.15,4 +13867,0,0.208347,2,2,0,2,5,,3,1,Seymour,St,1588403,1.035,1.244,0,5.000318,8,4.5 +16133,0,0.120104,2,2,0,2,4,,3,1,Kelly,Rd,1602605,0.519,0.639,0,2.882506,6,4.5 +16136,0,0.128441,2,2,0,2,4,,3,1,Kelly,Rd,1602605,0.391,0.519,0,3.082577,6,4.5 +16174,0,0.442319,2,2,0,2,4,,3,1,Hayes,St,1602506,1.107,1.549,0,10.615653,6,4.5 +17962,0,0.34359,1,1,0,2,4,,3,1,Whittier,St,1635202,3.602,3.946,0,8.246158,6,4.5 +30367,0,0.141572,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.397732,0.15,4 +33840,0,0.437599,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.502385,0.15,4 +14035,0,0.08086,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,1.143,1.224,0,1.940634,6,4.5 +16138,0,0.23467,2,2,0,2,4,,3,1,Kelly,Rd,1602605,0.156,0.391,0,5.632087,6,4.5 +16143,0,0.156262,1,1,0,2,4,,3,1,Kelly,Rd,1602605,0,0.156,0,3.750289,6,4.5 +16185,0,0.133556,2,2,0,2,4,,3,1,Hayes,St,1602506,0.974,1.107,0,3.205339,6,4.5 +14038,0,0.124732,2,2,0,2,5,,3,1,Seymour,St,1588403,0.911,1.035,0,2.99356,8,4.5 +16172,0,0.252476,2,2,0,2,4,,3,1,Hayes,St,1602506,1.549,1.802,0,6.059418,6,4.5 +30771,0,0.236275,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.670594,0.15,4 +30366,0,0.224932,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.398369,0.15,4 +30373,0,0.336516,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.076383,0.15,4 +30374,0,0.315426,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.570222,0.15,4 +16124,0,0.243392,2,2,0,2,4,,3,1,Kelly,Rd,1602605,0.81,1.053,0,5.841414,6,4.5 +16128,0,0.170816,2,2,0,2,4,,3,1,Kelly,Rd,1602605,0.639,0.81,0,4.099573,6,4.5 +12593,0,0.064035,2,2,0,2,4,,3,1,Morang,Dr,1578203,1.447,1.511,0,1.536842,6,4.5 +16101,0,0.177501,2,2,0,2,4,,3,1,Kelly,Rd,1602605,1.053,1.231,0,4.260015,6,4.5 +11539,1,0.726321,3,0,0,1,1,,3,1,E I 94,,1576405,34.899,35.625,0,,0.58,7 +12605,0,0.336549,2,2,1,2,4,,3,1,Harper,Ave,1578108,4.468,4.805,0,8.077165,6,4.5 +13795,-1,0.463116,0,3,0,1,1,,3,1,W I 94,,1588802,35.208,35.671,0,,0.58,7 +17990,0,0.217283,1,1,0,2,4,,3,1,Whittier,St,1635202,2.798,3.015,0,5.214781,6,4.5 +18006,0,0.118048,1,1,0,2,4,,3,1,Whittier,St,1635202,2.422,2.54,0,2.833151,6,4.5 +18678,1,0.63966,2,0,0,2,4,DV2,3,1,Outer,Dr,1632805,1.86,2.499,0,15.351831,6,4.5 +22524,1,0.154594,1,0,0,1,1,RON,3,1,Whittier/W I 94,RAMP,4705827,0,0.155,0,,1.09,4 +23119,-1,0.705881,0,2,0,2,4,DV2,3,1,Outer,Dr,4704718,1.042,1.748,0,16.941155,6,4.5 +32004,0,0.192906,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.629751,0.15,4 +33551,0,0.206867,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.96481,0.15,4 +12278,0,0.154496,2,2,0,2,4,,3,1,Harper,Ave,1578108,4.314,4.468,0,3.707903,6,4.5 +12719,1,0.144771,1,0,0,1,1,ROF,3,1,E I 94/Harper,RAMP,1578107,0,0.145,0,,2.24,5 +30669,0,0.103166,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.47599,0.15,4 +33488,0,0.07437,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.784879,0.15,4 +13649,1,0.05273,2,0,0,2,5,,3,1,Hern,Ave,1588709,1.378,1.43,0,1.265515,8,4.5 +18017,1,0.191791,2,0,0,2,4,DV2,3,1,Outer,Dr,1635202,2.034,2.226,0,4.602978,6,4.5 +23064,-1,0.191288,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,0.876,1.067,0,4.590913,6,4.5 +21697,0,0.130448,1,1,1,2,3,,3,1,Warren,Ave,4700429,7.976,8.106,0,3.130742,5,5 +21592,0,0.013942,1,1,1,2,3,,3,1,Warren,Ave,4700429,8.106,8.12,0,0.334611,5,5 +18014,1,0.180409,2,0,0,2,4,DV2,3,1,Outer,Dr,1635202,2.226,2.406,0,4.329807,6,4.5 +18637,1,0.121525,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,2.579,2.701,0,2.916606,6,4.5 +23062,-1,0.180871,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,1.067,1.248,0,4.340894,6,4.5 +23116,-1,0.121724,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,1.821,1.943,0,2.921367,6,4.5 +32587,0,0.072139,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.731342,0.15,4 +33550,0,0.221933,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.326387,0.15,4 +33552,0,0.058101,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.394435,0.15,4 +33553,0,0.233548,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.605147,0.15,4 +18643,1,0.066404,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,2.513,2.579,0,1.593687,6,4.5 +23118,-1,0.073007,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,1.748,1.821,0,1.752173,6,4.5 +18654,1,0.014018,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,2.499,2.513,0,0.336429,6,4.5 +23061,-1,0.016603,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,1.248,1.265,0,0.398464,6,4.5 +18009,1,0.016045,2,0,0,2,4,DV2,3,1,Outer,Dr,1635202,2.406,2.422,0,0.385078,6,4.5 +40911,-1,0.028008,0,1,0,2,4,,4,4,William P Rosso,Hwy,0,0,0,0,0.672196,4.5,4.5 +12603,0,0.321034,2,2,1,2,4,,3,1,Harper,Ave,1578108,4.888,5.209,0,7.704808,6,4.5 +23594,-1,0.301163,0,2,0,2,5,,3,1,W I 94 Service Drive,,4705828,0.329,0.63,0,7.227922,8,4.5 +30762,0,0.128697,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.088732,0.15,4 +32003,0,0.117613,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.822701,0.15,4 +12277,0,0.083553,2,2,1,2,4,,3,1,Harper,Ave,1578108,4.805,4.888,0,2.005262,6,4.5 +18002,0,0.174944,1,1,0,2,4,,3,1,Whittier,St,1635202,2.54,2.715,0,4.19866,6,4.5 +18001,0,0.082934,1,1,0,2,4,,3,1,Whittier,St,1635202,2.715,2.798,0,1.990418,6,4.5 +12600,1,0.215063,1,0,0,1,1,ROF,3,1,E I 94/Cadieux,RAMP,1578110,0,0.215,0,,2.24,5 +14168,1,0.14206,1,0,0,1,1,RON,3,1,Cadieux/W I 94,RAMP,1589208,0,0.142,0,,1.09,4 +23595,-1,0.151081,0,2,0,2,5,,3,1,W I 94 Service Drive,,4705828,0.63,0.781,0,3.625949,8,4.5 +19410,0,0.056342,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.716,2.772,0,1.352197,6,4.5 +19411,0,0.034504,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.681,2.716,0,0.828093,6,4.5 +12595,0,0.615481,2,2,0,2,4,,3,1,Morang,Dr,1578203,0.466,1.081,0,14.771543,6,4.5 +18823,1,0.310766,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,3.224,3.534,0,7.458377,5,5 +22912,-1,0.317707,0,2,0,2,3,DV2,3,1,Moross,Rd,4705319,1.875,2.193,0,7.624969,5,5 +31543,0,0.171377,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.113049,0.15,4 +32011,0,0.147583,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.541991,0.15,4 +32012,0,0.277481,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.659538,0.15,4 +12268,0,0.041003,1,1,0,2,5,,3,1,Morang,Dr,1578203,0.425,0.466,0,0.984063,8,4.5 +19408,0,0.169163,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.956,3.126,0,4.05991,6,4.5 +31997,0,0.249613,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.990701,0.15,4 +33560,0,0.278026,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.672635,0.15,4 +24303,0,0.106211,2,2,0,2,5,,3,1,Beaconsfield,Rd,4711343,0.026,0.132,0,2.549065,8,4.5 +24461,-1,0.025904,0,2,0,2,5,,3,1,W Moross/E Moross,TURN,4711343,0,0.026,0,0.621687,8,4.5 +3908,1,0.250304,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,6.503,6.754,0,6.007285,5,5 +4257,-1,0.365696,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,6.484,6.849,0,8.776701,5,5 +4913,0,0.374355,1,1,0,2,5,,3,4,Toepfer,Dr,802903,2.169,2.543,0,8.98451,8,4.5 +5351,0,0.399401,2,2,1,2,4,,3,4,9 Mile,Rd,803006,6.45,6.849,0,9.585618,6,4.5 +6621,1,0.279558,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,0.024,0.304,0,6.709399,5,5 +13698,0,0.49952,1,1,0,2,5,,3,1,State Fair,St,1588609,2.469,2.968,0,11.988487,8,4.5 +16091,-1,0.343808,0,2,0,2,4,DV2,3,1,Kelly,Rd,1602605,1.329,1.673,0,8.251384,6,4.5 +20317,-1,0.315504,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,0,0.316,0,7.572085,5,5 +20452,1,0.262591,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,0.025,0.288,0,6.302181,6,4.5 +20456,1,0.279061,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,2.018,2.297,0,6.697476,6,4.5 +22708,0,0.01112,1,1,0,2,5,,3,1,7 Mile,Rd,4705321,0.16,0.171,0,0.266878,8,4.5 +23321,1,0.078265,4,0,0,2,4,DV2,3,1,Kelly,Rd,4705320,0,0.078,0,1.878354,6,4.5 +24889,0,0.413639,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.927326,0.15,4 +24891,0,0.403576,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.685822,0.15,4 +24896,0,0.414909,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.957825,0.15,4 +25628,0,0.253134,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.075211,0.15,4 +27501,0,0.227989,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.471738,0.15,4 +27502,0,0.396189,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.508538,0.15,4 +4205,1,0.25058,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,6.253,6.503,0,6.013916,5,5 +4560,-1,0.224715,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,6.259,6.484,0,5.393162,5,5 +13887,0,0.249086,1,1,0,2,5,,3,1,State Fair,St,1588609,2.22,2.469,0,5.978056,8,4.5 +16146,0,0.497891,2,2,0,2,4,,3,1,Hayes,St,1602506,2.619,3.117,0,11.949381,6,4.5 +17727,0,0.319956,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,24.094,24.414,0,7.678937,5,5 +33557,0,0.554137,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.299281,0.15,4 +16148,0,0.308743,2,2,0,2,4,,3,1,Hayes,St,1602506,2.118,2.427,0,7.409827,6,4.5 +18245,0,0.122962,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,23.918,24.041,0,2.951094,5,5 +16147,0,0.192166,2,2,0,2,4,,3,1,Hayes,St,1602506,2.427,2.619,0,4.611975,6,4.5 +18058,0,0.053099,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,24.041,24.094,0,1.274385,5,5 +4494,1,0.254679,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,5.998,6.253,0,6.112291,5,5 +4914,-1,0.342356,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,5.917,6.259,0,8.216541,5,5 +30751,0,0.47712,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.450885,0.15,4 +33149,0,0.456377,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.953044,0.15,4 +3890,1,0.094427,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,5.904,5.998,0,2.266253,5,5 +6644,0,0.013024,3,3,1,2,3,,3,1,Gratiot,Ave,804806,0,0.013,0,0.312572,5,5 +6629,0,0.011317,3,3,1,2,3,,3,4,Gratiot,Ave,804806,0.013,0.024,0,0.271614,5,5 +33559,0,0.041417,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.994005,0.15,4 +18820,0,0.098767,2,2,1,2,3,,3,1,Moross,Rd,1632608,3.933,4.032,0,2.370401,5,5 +23104,0,0.160005,1,1,0,2,5,,3,1,7 Mile,Rd,4705321,0,0.16,0,3.840125,8,4.5 +18819,0,0.022031,2,2,1,2,3,,3,1,Moross,Rd,1632608,4.032,4.054,0,0.528744,5,5 +16093,-1,0.077272,0,4,0,2,4,DV2,3,1,Kelly,Rd,1602605,1.252,1.329,0,1.854537,6,4.5 +18821,1,0.037814,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,3.896,3.933,0,0.907527,5,5 +3892,0,0.302553,1,1,0,2,5,,3,4,Toepfer,Dr,802903,1.866,2.169,0,7.261276,8,4.5 +5353,0,0.292196,2,2,1,2,4,,3,4,9 Mile,Rd,803006,6.135,6.427,0,7.012716,6,4.5 +6601,1,0.190415,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,0.717,0.907,0,4.569951,5,5 +20313,-1,0.170409,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,0.711,0.881,0,4.089818,5,5 +20314,-1,0.160256,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,0.551,0.711,0,3.846154,5,5 +24888,0,0.380533,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.132787,0.15,4 +27024,0,0.385426,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.250226,0.15,4 +27466,0,0.252268,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.05444,0.15,4 +6618,1,0.283383,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,0.304,0.587,0,6.801191,5,5 +20315,-1,0.235194,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,0.316,0.551,0,5.644658,5,5 +25310,0,0.259129,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.219088,0.15,4 +6609,1,0.129636,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,0.587,0.717,0,3.111274,5,5 +4183,0,0.023513,1,1,0,2,5,,3,4,Toepfer,Dr,802903,1.843,1.866,0,0.564324,8,4.5 +5354,0,0.136381,2,2,1,2,4,,3,4,9 Mile,Rd,803006,5.999,6.135,0,3.273145,6,4.5 +27500,0,0.247735,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.945634,0.15,4 +6566,1,0.238024,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,0.907,1.145,0,5.712569,5,5 +20312,-1,0.227877,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,0.881,1.109,0,5.469054,5,5 +5352,0,0.022438,2,2,1,2,4,,3,4,9 Mile,Rd,803006,6.427,6.45,0,0.538505,6,4.5 +3951,-1,0.433544,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,6.849,7.283,0,10.405066,5,5 +4574,1,0.386268,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,6.88,7.266,0,9.270435,5,5 +16077,-1,0.349014,0,2,0,2,4,DV2,3,1,Kelly,Rd,1602605,1.902,2.251,0,8.376324,6,4.5 +16085,-1,0.229213,0,2,0,2,4,DV2,3,1,Kelly,Rd,1602605,1.673,1.902,0,5.501104,6,4.5 +22541,1,0.363068,2,0,0,2,4,DV2,3,1,Kelly,Rd,4705320,0.653,1.016,0,8.71362,6,4.5 +22825,1,0.201616,2,0,0,2,4,DV2,3,1,Kelly,Rd,4705320,0.451,0.653,0,4.838784,6,4.5 +32009,0,0.331807,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.963356,0.15,4 +32013,0,0.345361,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.288666,0.15,4 +23003,1,0.372748,2,0,0,2,4,DV2,3,1,Kelly,Rd,4705320,0.078,0.451,0,8.945957,6,4.5 +13680,0,0.217062,1,1,0,2,5,,3,1,State Fair,St,1588609,2.968,3.185,0,5.209479,8,4.5 +30381,0,0.391856,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.404546,0.15,4 +33558,0,0.418522,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.044529,0.15,4 +30382,0,0.109959,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.639017,0.15,4 +4931,1,0.126657,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,6.754,6.88,0,3.039773,5,5 +14349,0,0.012091,1,1,0,2,5,,3,1,State Fair,St,1588609,3.185,3.197,0,0.29019,8,4.5 +32010,0,0.331238,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.949722,0.15,4 +16070,-1,0.231506,0,2,0,2,4,DV2,3,1,Kelly,Rd,1602605,2.251,2.482,0,5.556141,6,4.5 +23446,1,0.22846,2,0,0,2,4,DV2,3,1,Kelly,Rd,4705320,1.016,1.244,0,5.483045,6,4.5 +4269,1,0.027708,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,7.266,7.294,0,0.664999,5,5 +4973,-1,0.025674,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,7.283,7.309,0,0.616171,5,5 +24159,1,0.012946,2,0,0,2,4,DV2,3,4,Kelly,Rd,4718271,0,0.013,0,0.310716,6,4.5 +24048,1,0.012295,2,0,0,2,4,DV2,3,1,Kelly,Rd,4718271,0.013,0.025,0,0.295088,6,4.5 +20454,1,0.012845,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,0.012,0.025,0,0.308272,6,4.5 +20455,1,0.012217,2,0,0,2,4,DV2,3,1,Kelly,Rd,4208040,0,0.012,0,0.293204,6,4.5 +4559,0,0.323473,1,1,0,2,5,,3,4,Toepfer,Dr,802903,2.543,2.866,0,7.763362,8,4.5 +5349,0,0.519261,2,2,1,2,4,,3,4,9 Mile,Rd,803006,7.014,7.533,0,12.462267,6,4.5 +24894,0,0.264891,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.357383,0.15,4 +27499,0,0.45223,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.853513,0.15,4 +5350,0,0.164595,2,2,1,2,4,,3,4,9 Mile,Rd,803006,6.849,7.014,0,3.950288,6,4.5 +24893,0,0.289635,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.951249,0.15,4 +24885,0,0.282418,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.77804,0.15,4 +24890,0,0.22337,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.360891,0.15,4 +27023,0,0.292312,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.015486,0.15,4 +13770,1,0.184664,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.534,8.719,0,4.43194,5,5 +18609,0,0.248198,2,2,0,2,4,,3,1,Chandler Park,Dr,1632805,3.715,3.964,0,5.956762,6,4.5 +18612,1,0.239602,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,3.476,3.715,0,5.750451,6,4.5 +18877,1,0.183766,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.762,1.945,0,4.410388,5,5 +18886,1,0.181549,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.494,1.676,0,4.357165,5,5 +21816,0,0.387426,1,1,1,2,3,,3,1,Warren,Ave,4700429,9.084,9.471,0,9.298219,5,5 +22220,-1,0.085092,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,1.645,1.731,0,2.042209,5,5 +23109,-1,0.185551,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,2.772,2.957,0,4.453225,6,4.5 +23346,-1,0.269288,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.334,0.604,0,6.462916,5,5 +23459,-1,0.155052,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.156,0.311,0,3.721237,5,5 +30668,0,0.320186,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.684457,0.15,4 +30760,0,0.211131,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.067137,0.15,4 +30763,0,0.530837,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.740082,0.15,4 +33483,0,0.597085,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.330037,0.15,4 +33484,0,0.612292,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.695016,0.15,4 +33549,0,0.302106,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.250533,0.15,4 +18633,1,0.484895,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,2.889,3.373,0,11.637475,6,4.5 +19415,0,0.242802,1,1,0,2,4,,3,1,Cadieux,Rd,1715405,2.015,2.258,0,5.827257,6,4.5 +22138,0,0.213495,1,1,1,2,3,,3,1,Warren,Ave,4700429,8.495,8.708,0,5.123879,5,5 +23113,-1,0.5369,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,2.13,2.667,0,12.885604,6,4.5 +33565,0,0.57285,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.748408,0.15,4 +33566,0,0.202044,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.849062,0.15,4 +21326,0,0.186516,1,1,1,2,3,,3,1,Warren,Ave,4700429,8.308,8.495,0,4.476393,5,5 +19416,0,0.129253,1,1,0,2,4,,3,1,Cadieux,Rd,1715405,1.886,2.015,0,3.102061,6,4.5 +19413,0,0.243002,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.272,2.515,0,5.832054,6,4.5 +19414,0,0.014004,1,1,0,2,4,,3,1,Cadieux,Rd,1715405,2.258,2.272,0,0.336092,6,4.5 +22032,0,0.375537,1,1,1,2,3,,3,1,Warren,Ave,4700429,8.708,9.084,0,9.01289,5,5 +30759,0,0.386607,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.278559,0.15,4 +18629,1,0.102706,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,3.373,3.476,0,2.464953,6,4.5 +23111,-1,0.105316,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,2.667,2.772,0,2.527596,6,4.5 +31513,0,0.200871,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.820905,0.15,4 +33564,0,0.171922,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.126129,0.15,4 +11075,1,0.092917,3,0,0,1,1,,3,2,E I 94,,1576405,36.639,36.732,0,,0.58,7 +11253,1,0.32407,3,0,0,1,1,,3,1,E I 94,,1576405,36.315,36.639,0,,0.58,7 +14059,-1,0.097118,0,3,0,1,1,,3,2,W I 94,,1588802,36.594,36.691,0,,0.58,7 +14366,1,0.096994,1,0,0,1,1,ROF,3,2,W I 94/Moross,RAMP,1589302,0,0.097,0,,2.24,5 +15212,1,0.094926,1,0,0,1,1,RON,3,2,Moross/E I 94,RAMP,1592009,0.077,0.172,0,,1.09,4 +15225,1,0.076643,1,0,0,1,1,RON,3,1,Moross/E I 94,RAMP,1592009,0,0.077,0,,1.09,4 +18861,1,0.243956,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,2.5,2.744,0,5.854945,5,5 +18871,1,0.310151,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,2.137,2.447,0,7.443614,5,5 +22609,-1,0.368612,0,2,0,2,3,DV2,3,1,Moross,Rd,4705319,1.16,1.528,0,8.846684,5,5 +22643,0,0.23783,1,1,0,2,5,,3,1,Chester,St,4705401,0.287,0.525,0,5.707913,8,4.5 +22821,-1,0.542329,0,2,0,2,5,,3,2,Harper,Ave,4705399,0.614,1.156,0,13.015905,8,4.5 +23069,1,0.52422,2,0,0,2,5,,3,2,Harper,Ave,4705400,0.563,1.087,0,12.581271,8,4.5 +23404,1,0.074991,2,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0.488,0.563,0,1.799784,8,4.5 +23615,-1,0.292393,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.814,1.106,0,7.017434,5,5 +31993,0,0.362749,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.70597,0.15,4 +32106,0,0.417316,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.015577,0.15,4 +33547,0,0.169543,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.069036,0.15,4 +11071,1,0.329484,3,0,0,1,1,,3,1,E I 94,,1576405,35.985,36.315,0,,0.58,7 +12591,1,0.168528,1,0,0,1,1,ROF,3,1,E I 94/Moross,RAMP,1578205,0,0.169,0,,2.24,5 +14221,-1,0.282993,0,3,0,1,1,,3,1,W I 94,,1588802,35.985,36.267,0,,0.58,7 +14297,-1,0.326052,0,3,0,1,1,,3,1,W I 94,,1588802,36.267,36.594,0,,0.58,7 +14357,1,0.166239,1,0,0,1,1,RON,3,1,Moross/W I 94,RAMP,1589210,0,0.166,0,,1.09,4 +17794,1,0.044502,1,0,0,2,5,,3,1,Hereford,St,1638603,1.482,1.526,0,1.068046,8,4.5 +22685,-1,0.348087,0,2,0,2,5,,3,1,Harper,Ave,4705399,0.102,0.45,0,8.354088,8,4.5 +22788,1,0.323208,2,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0.086,0.409,0,7.756981,8,4.5 +22968,1,0.101573,1,0,0,2,5,,3,1,Chester,St,4705401,0,0.102,0,2.437762,8,4.5 +12270,0,0.071957,1,1,0,2,5,,3,1,Morang,Dr,1578203,0.008,0.08,0,1.726959,8,4.5 +12598,0,0.007951,1,1,0,2,5,,3,1,Morang,Dr,1578203,0,0.008,0,0.190824,8,4.5 +12602,1,0.03128,2,0,0,2,5,,3,1,Harper,Ave,1578108,5.435,5.467,0,0.750718,8,4.5 +22516,1,0.085504,2,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0,0.086,0,2.052087,8,4.5 +22867,-1,0.071251,0,2,0,2,5,,3,1,Harper,Ave,4705399,0.031,0.102,0,1.710027,8,4.5 +23155,-1,0.030553,0,2,0,2,5,,3,1,Harper,Ave,4705399,0,0.031,0,0.733265,8,4.5 +17765,1,0.018151,1,0,0,2,5,,3,1,Hereford,St,1638603,1.526,1.544,0,0.435631,8,4.5 +22696,0,0.185548,1,1,0,2,5,,3,1,Chester,St,4705401,0.102,0.287,0,4.453162,8,4.5 +22899,-1,0.053092,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,1.106,1.16,0,1.274209,5,5 +23491,1,0.026033,3,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0.436,0.462,0,0.624782,8,4.5 +23678,-1,0.032956,0,3,0,2,5,,3,1,Harper,Ave,4705399,0.45,0.483,0,0.790935,8,4.5 +22503,1,0.0278,3,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0.409,0.436,0,0.667209,8,4.5 +18868,1,0.05295,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,2.447,2.5,0,1.270798,5,5 +23441,-1,0.056684,0,3,0,2,5,,3,1,Harper,Ave,4705399,0.508,0.565,0,1.360418,8,4.5 +23342,-1,0.025085,0,3,0,2,5,,3,1,Harper,Ave,4705399,0.483,0.508,0,0.602049,8,4.5 +23148,1,0.025676,3,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0.462,0.488,0,0.616216,8,4.5 +14110,1,0.048916,1,0,0,1,1,ROF,3,1,W I 94/Moross,RAMP,1589302,0.097,0.146,0,,2.24,5 +23100,-1,0.049106,0,2,0,2,5,,3,1,Harper,Ave,4705399,0.565,0.614,0,1.178552,8,4.5 +29886,0,0.558039,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.392929,0.15,4 +33914,0,0.514457,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.346976,0.15,4 +18853,1,0.125102,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,2.744,2.869,0,3.00245,5,5 +32001,0,0.38842,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.32207,0.15,4 +32002,0,0.368943,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.854637,0.15,4 +18873,1,0.19187,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.945,2.137,0,4.604877,5,5 +22610,-1,0.210676,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.604,0.814,0,5.056217,5,5 +23647,0,0.029973,1,1,0,2,5,,3,1,Chester,St,4705401,0.525,0.555,0,0.719355,8,4.5 +10966,1,0.276214,3,0,0,1,1,,3,2,E I 94,,1576405,36.732,37.008,0,,0.58,7 +12261,1,0.152924,1,0,0,1,1,ROF,3,2,E I 94/Allard,RAMP,1578209,0,0.153,0,,2.24,5 +22792,1,0.029029,2,0,0,2,5,,3,2,Harper,Ave,4705400,1.087,1.116,0,0.696688,8,4.5 +23032,-1,0.054047,0,2,0,2,5,,3,2,Harper,Ave,4705399,1.156,1.21,0,1.297121,8,4.5 +13659,1,0.363572,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,7.712,8.076,0,8.725735,5,5 +14229,1,0.198632,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.324,8.523,0,4.767158,5,5 +17829,0,0.289895,1,1,0,2,5,,3,2,Kerby,Rd,1637802,1.139,1.429,0,6.957469,8,4.5 +18890,1,0.071221,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.423,1.494,0,1.709296,5,5 +22222,-1,0.197718,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,1.436,1.633,0,4.745239,5,5 +22225,-1,0.361857,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,0.823,1.185,0,8.684574,5,5 +22452,-1,0.0786,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.077,0.156,0,1.886407,5,5 +30265,0,0.277234,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.653611,0.15,4 +33468,0,0.217926,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.230212,0.15,4 +33469,0,0.267274,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.414579,0.15,4 +30262,0,0.156142,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.74741,0.15,4 +33485,0,0.146847,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.524338,0.15,4 +14272,1,0.221632,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,7.49,7.712,0,5.319158,5,5 +22226,-1,0.212907,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,0.61,0.823,0,5.109757,5,5 +14452,1,0.125114,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.199,8.324,0,3.002741,5,5 +22223,-1,0.1383,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,1.298,1.436,0,3.319203,5,5 +14325,1,0.123483,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.076,8.199,0,2.963593,5,5 +22224,-1,0.112901,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,1.185,1.298,0,2.709621,5,5 +21543,1,0.007142,1,1,1,2,3,,3,2,Calvin,St,4700429,9.48,9.487,0,0.171403,5,5 +21698,1,0.008853,1,1,1,2,3,,3,1,Calvin,St,4700429,9.471,9.48,0,0.212476,5,5 +17738,0,0.00746,1,1,0,2,5,,3,1,Gateshead,Dr,1639605,0.008,0.015,0,0.179035,8,4.5 +17746,0,0.007537,1,1,0,2,5,,3,2,Gateshead,Dr,1639605,0,0.008,0,0.180885,8,4.5 +18892,1,0.006893,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.416,1.423,0,0.165437,5,5 +18905,1,0.0683,3,0,0,2,4,DV2,3,2,Moross,Rd,1632608,1.341,1.41,0,1.639202,6,4.5 +22221,-1,0.012053,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,1.633,1.645,0,0.289263,5,5 +22426,-1,0.06423,0,3,0,2,4,DV2,3,2,Moross,Rd,4705319,0,0.064,0,1.541527,6,4.5 +23460,-1,0.006451,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.071,0.077,0,0.154822,5,5 +13953,1,0.011786,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.523,8.534,0,0.282868,5,5 +18904,1,0.006481,3,0,0,2,3,DV2,3,2,Moross,Rd,1632608,1.41,1.416,0,0.155544,5,5 +22459,-1,0.006758,0,3,0,2,3,DV2,3,2,Moross,Rd,4705319,0.064,0.071,0,0.162195,5,5 +13930,1,0.1278,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,9.168,9.296,0,3.067191,5,5 +22217,-1,0.142749,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,2.261,2.404,0,3.425979,5,5 +30936,0,0.239552,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.749253,0.15,4 +33561,0,0.225046,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.401103,0.15,4 +18883,1,0.085936,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.676,1.762,0,2.06247,5,5 +33562,0,0.148156,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.55575,0.15,4 +31512,0,0.083503,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.004067,0.15,4 +23683,-1,0.023224,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.311,0.334,0,0.557382,5,5 +18605,0,0.022789,1,1,0,2,4,,3,1,Chandler Park,Dr,1632805,3.964,3.986,0,0.54693,6,4.5 +14122,1,0.449021,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.719,9.168,0,10.776499,5,5 +22218,-1,0.486854,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,1.774,2.261,0,11.684508,5,5 +22219,-1,0.043892,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,1.731,1.774,0,1.053412,5,5 +14115,1,0.176924,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,9.296,9.473,0,4.246178,5,5 +22216,-1,0.175459,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,2.404,2.579,0,4.211006,5,5 +17855,0,0.01493,1,1,0,2,5,,3,2,Cook,Rd,1637610,1.195,1.21,0,0.358319,8,4.5 +3907,-1,0.180541,0,3,0,1,1,,3,4,W I 94,,798502,0,0.18,0,,0.58,7 +4062,1,0.982029,3,0,0,1,1,,3,4,E I 94,,798501,0,0.982,0,,0.58,7 +4309,0,0.365038,2,2,0,2,4,,3,4,8 Mile,Rd,802804,8.107,8.472,0,8.760921,6,4.5 +4430,0,0.173337,2,2,1,2,3,,3,4,Harper,Ave,798408,0,0.173,0,4.160099,5,5 +4847,1,0.167045,1,0,0,1,1,ROF,3,4,W I 94/8 Mile,RAMP,801409,0,0.167,0,,2.24,5 +5340,0,0.227897,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.358,8.586,0,5.469517,6,4.5 +5908,0,0.280172,1,1,0,2,5,,3,4,Beaconsville,Rd,847401,0,0.28,0,6.724122,8,4.5 +6267,0,0.082156,1,1,0,2,4,,3,4,Greater Mack,Ave,809106,0,0.082,0,1.97174,6,4.5 +13995,-1,0.558151,0,3,0,1,1,,3,2,W I 94,,1588802,37.311,37.869,0,,0.58,7 +22263,-1,0.451263,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.469,0.92,0,10.830312,5,5 +22275,1,0.426079,4,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,0.518,0.944,0,10.225895,5,5 +23120,1,0.632479,3,0,0,2,5,,3,2,Harper,Ave,4705400,1.333,1.965,0,15.179501,8,4.5 +27503,0,0.240379,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.769101,0.15,4 +28192,0,0.690351,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.568433,0.15,4 +28723,0,0.447603,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.742478,0.15,4 +33544,0,0.285538,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.852907,0.15,4 +33556,0,0.461431,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.074337,0.15,4 +4626,0,0.186386,2,2,0,2,4,,3,4,8 Mile,Rd,802804,7.921,8.107,0,4.473275,6,4.5 +22264,-1,0.159047,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.31,0.469,0,3.817125,5,5 +22276,1,0.195092,4,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,0.323,0.518,0,4.682219,5,5 +30753,0,0.178104,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.274496,0.15,4 +4971,0,0.193279,2,2,0,2,4,,3,4,8 Mile,Rd,802804,7.727,7.921,0,4.638691,6,4.5 +22266,-1,0.214777,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.087,0.302,0,5.154637,5,5 +22277,1,0.323014,4,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,0,0.323,0,7.752339,5,5 +24172,0,0.119021,2,2,0,2,5,,3,2,Beaconsfield,Rd,4711343,1.221,1.34,0,2.856508,8,4.5 +32007,0,0.276709,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.641011,0.15,4 +4256,-1,0.052238,0,2,0,2,4,,3,4,8 Mile,Rd,802804,7.608,7.66,0,1.253705,6,4.5 +4705,1,0.036003,2,0,0,2,4,,3,2,8 Mile,Rd,802803,7.626,7.662,0,0.864073,6,4.5 +22267,-1,0.05716,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.03,0.087,0,1.371844,5,5 +30670,0,0.175728,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.217463,0.15,4 +32006,0,0.146122,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.506935,0.15,4 +4558,-1,0.011263,0,2,0,2,4,,3,2,8 Mile,Rd,802804,7.597,7.608,0,0.270322,6,4.5 +5032,1,0.058462,2,0,0,2,3,,3,2,8 Mile,Rd,802803,7.567,7.626,0,1.40309,5,5 +22268,-1,0.029594,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0,0.03,0,0.71026,5,5 +4912,-1,0.028945,0,4,0,2,3,DIV,3,2,8 Mile,Rd,802804,7.568,7.597,0,0.694672,5,5 +3950,0,0.066986,2,2,0,2,4,,3,4,8 Mile,Rd,802804,7.66,7.727,0,1.607672,6,4.5 +24060,0,0.124764,2,2,0,2,5,,3,2,Beaconsfield,Rd,4711343,1.34,1.465,0,2.994339,8,4.5 +24415,-1,0.028399,0,2,0,2,3,,3,2,Beaconsfield,Rd,4711343,1.465,1.493,0,0.681571,5,5 +22763,0,0.111344,2,2,0,2,5,,3,2,Beaconsfield,Rd,4705313,0,0.111,0,2.672266,8,4.5 +22265,-1,0.008269,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.302,0.31,0,0.198456,5,5 +32005,0,0.266018,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.384439,0.15,4 +33554,0,0.242525,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.820609,0.15,4 +4177,-1,0.802855,0,3,0,1,1,,3,4,W I 94,,798502,0.18,0.983,0,,0.58,7 +4702,0,0.219234,1,1,0,2,5,,3,4,Toepfer,Dr,802903,3.549,3.768,0,5.261621,8,4.5 +5347,0,0.432528,2,2,1,2,4,,3,4,9 Mile,Rd,803006,7.599,8.031,0,10.380663,6,4.5 +6178,0,0.367657,1,1,0,2,5,,3,4,Beaconsville,Rd,847401,0.28,0.648,0,8.823775,8,4.5 +20409,1,0.311067,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,0.965,1.276,0,7.465616,6,4.5 +20446,1,0.356634,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,0.609,0.965,0,8.559211,6,4.5 +20458,1,0.356504,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,1.341,1.697,0,8.556107,6,4.5 +20495,1,0.303397,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,1.038,1.341,0,7.281522,6,4.5 +27020,0,0.339484,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.147608,0.15,4 +27022,0,0.669497,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.067921,0.15,4 +27497,0,0.33682,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.083682,0.15,4 +29722,0,0.342793,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.227024,0.15,4 +5027,0,0.198225,1,1,0,2,5,,3,4,Toepfer,Dr,802903,3.351,3.549,0,4.757401,8,4.5 +4010,0,0.010809,1,1,0,2,5,,3,4,Toepfer,Dr,802903,3.34,3.351,0,0.25941,8,4.5 +27021,0,0.057618,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.382821,0.15,4 +4506,1,0.199045,1,0,0,1,1,RON,3,4,9 Mile/W I 94,RAMP,801410,0,0.199,0,,1.09,4 +4925,1,0.221903,1,0,0,1,1,ROF,3,4,E I 94/9 Mile,RAMP,800906,0,0.222,0,,2.24,5 +5344,0,0.09215,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.157,8.249,0,2.211592,6,4.5 +5984,0,0.43527,1,1,0,2,5,,3,4,Beaconsville,Rd,847401,0.648,1.083,0,10.446477,8,4.5 +5345,0,0.112585,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.044,8.157,0,2.702046,6,4.5 +5346,0,0.013207,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.031,8.044,0,0.316958,6,4.5 +5341,0,0.072141,2,2,0,2,4,,3,4,9 Mile,Rd,803006,8.286,8.358,0,1.731384,6,4.5 +5343,0,0.015843,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.249,8.265,0,0.380229,6,4.5 +5342,0,0.021158,2,2,0,2,4,,3,4,9 Mile,Rd,803006,8.265,8.286,0,0.507792,6,4.5 +13916,1,0.413626,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,9.946,10.36,0,9.927031,5,5 +14073,1,0.164129,1,0,0,1,1,RON,3,2,M 102/W I 94,RAMP,1589304,0,0.164,0,,1.09,4 +14302,-1,0.22533,0,3,0,1,1,,3,2,W I 94,,1588802,37.869,38.095,0,,0.58,7 +22213,-1,0.414021,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,3.054,3.468,0,9.936511,5,5 +22260,-1,0.15103,0,2,0,2,3,DIV,3,2,Vernier,Rd,4702103,1.134,1.285,0,3.624712,5,5 +22272,1,0.155242,2,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,1.155,1.31,0,3.725816,5,5 +33477,0,0.481408,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.5538,0.15,4 +33478,0,0.489877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.757054,0.15,4 +33480,0,0.466126,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.187021,0.15,4 +33541,0,0.457974,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.991369,0.15,4 +4012,0,0.162723,2,2,0,2,4,,3,4,8 Mile,Rd,802804,8.472,8.635,0,3.905352,6,4.5 +11450,1,0.360014,3,0,0,1,1,,3,2,E I 94,,1576405,37.917,38.277,0,,0.58,7 +12234,1,0.132191,1,0,0,1,1,RON,3,2,M 102/E I 94,RAMP,1578304,0,0.132,0,,1.09,4 +12583,1,0.127462,2,0,0,2,3,,3,2,Harper,Ave,1578305,0,0.128,0,3.059086,5,5 +14063,-1,0.3121,0,3,0,1,1,,3,2,W I 94,,1588802,38.095,38.407,0,,0.58,7 +22261,-1,0.15758,0,2,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.977,1.134,0,3.781923,5,5 +22273,1,0.15624,2,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,0.999,1.155,0,3.749765,5,5 +22457,1,0.114836,1,0,0,1,1,RON,3,2,Harper/W I 94,RAMP,4705311,0,0.115,0,,1.09,4 +23080,-1,0.091408,0,2,0,2,3,,3,2,Harper,Ave,4705399,2.1,2.192,0,2.193792,5,5 +23625,1,0.212595,3,0,0,2,3,,3,2,Harper,Ave,4705400,2.082,2.294,0,5.102286,5,5 +12584,1,0.117504,1,0,0,1,1,ROF,3,2,E I 94/M 102,RAMP,1578301,0,0.118,0,,2.24,5 +22262,-1,0.056788,0,2,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.92,0.977,0,1.362915,5,5 +22274,1,0.054809,4,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,0.944,0.999,0,1.315421,5,5 +22345,-1,0.148733,0,3,0,2,5,,3,2,Harper,Ave,4705399,1.896,2.045,0,3.569586,8,4.5 +22837,1,0.075721,3,0,0,2,5,,3,2,Harper,Ave,4705400,1.965,2.041,0,1.817306,8,4.5 +23447,-1,0.030214,0,3,0,2,5,,3,2,Harper,Ave,4705399,2.045,2.075,0,0.725145,8,4.5 +23412,-1,0.025354,0,3,0,2,3,,3,2,Harper,Ave,4705399,2.075,2.1,0,0.608495,5,5 +22548,1,0.024689,3,0,0,2,3,,3,2,Harper,Ave,4705400,2.041,2.066,0,0.592535,5,5 +23547,1,0.016023,3,0,0,2,3,,3,2,Harper,Ave,4705400,2.066,2.082,0,0.38454,5,5 +10964,1,0.180525,3,0,0,1,1,,3,2,E I 94,,1576405,38.277,38.458,0,,0.58,7 +22799,-1,0.221716,0,2,0,2,5,,3,2,S I 94 Service Drive,,4705399,2.192,2.413,0,5.32118,8,4.5 +12233,1,0.0277,2,0,0,2,3,,3,2,Harper,Ave,1578305,0.128,0.155,0,0.664802,5,5 +23283,0,0.110948,2,2,1,2,3,,3,2,Harper,Ave,4705400,2.294,2.405,0,2.662749,5,5 +14107,1,0.133541,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,9.812,9.946,0,3.204993,5,5 +22214,-1,0.134976,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,2.919,3.054,0,3.239413,5,5 +33461,0,0.16717,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.012084,0.15,4 +33542,0,0.15248,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.659528,0.15,4 +13937,1,0.275367,2,0,0,2,4,DIV,3,2,Mack,Ave,1587509,10.379,10.654,0,6.608803,6,4.5 +22211,-1,0.273871,0,2,0,2,4,DIV,3,2,Mack,Ave,4704270,3.49,3.763,0,6.572898,6,4.5 +22259,-1,0.209061,0,2,0,2,3,DIV,3,2,Vernier,Rd,4702103,1.285,1.494,0,5.017466,5,5 +22271,1,0.208929,2,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,1.31,1.519,0,5.014286,5,5 +22257,-1,0.117266,0,2,0,2,4,DIV,3,2,Vernier,Rd,4702103,1.508,1.625,0,2.81439,6,4.5 +22269,1,0.114226,2,0,0,2,4,DIV,3,2,Vernier,Rd,4702102,1.532,1.646,0,2.741435,6,4.5 +14130,1,0.019238,2,0,0,2,3,DIV,3,2,Mack,Ave,1587509,10.36,10.379,0,0.461723,5,5 +22212,-1,0.021958,0,2,0,2,3,DIV,3,2,Mack,Ave,4704270,3.468,3.49,0,0.527,5,5 +22258,-1,0.013838,0,2,0,2,3,DIV,3,2,Vernier,Rd,4702103,1.494,1.508,0,0.332101,5,5 +22270,1,0.012956,2,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,1.519,1.532,0,0.310936,5,5 +14423,1,0.215008,2,0,0,2,4,DIV,3,2,Mack,Ave,1587509,10.654,10.869,0,5.16019,6,4.5 +22210,-1,0.215176,0,2,0,2,4,DIV,3,2,Mack,Ave,4704270,3.763,3.979,0,5.164228,6,4.5 +14178,0,0.013149,1,1,0,2,4,,3,2,Mack,Ave,1587509,10.869,10.882,0,0.315581,6,4.5 +4157,0,0.577337,2,2,1,2,3,,3,4,Harper,Ave,798408,0.173,0.751,0,13.856099,5,5 +5338,0,0.370754,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.639,9.01,0,8.898107,6,4.5 +26096,0,0.261539,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.276936,0.15,4 +28726,0,0.365232,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.765563,0.15,4 +29916,0,0.460656,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.055733,0.15,4 +5339,0,0.053209,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.586,8.639,0,1.277023,6,4.5 +29917,0,0.456461,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.955071,0.15,4 +5871,0,0.115549,2,2,1,2,4,,3,4,Greater Mack,Ave,809106,0.082,0.198,0,2.773166,6,4.5 +4427,0,0.370145,2,2,1,2,3,,3,4,Harper,Ave,798408,0.751,1.121,0,8.883483,5,5 +5337,0,0.177969,2,2,1,2,4,,3,4,9 Mile,Rd,803006,9.01,9.188,0,4.27125,6,4.5 +18780,-1,0.32515,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,0,0.325,0,7.803598,5,5 +18815,1,0.405331,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,0.456,0.862,0,9.727947,5,5 +18818,0,0.45654,2,2,0,2,3,,3,2,Jefferson,Ave,1632609,0,0.456,0,10.956965,5,5 +19426,0,0.357155,1,1,0,2,5,,3,2,Grosse Pointe,Blvd,1715203,1.562,1.919,0,8.57171,8,4.5 +33455,0,0.188296,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.519103,0.15,4 +33456,0,0.278135,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.675231,0.15,4 +33470,0,0.281487,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.755688,0.15,4 +23331,0,0.237774,2,2,0,2,4,,3,2,Kercheval,Ave,4705782,3.619,3.856,0,5.706573,6,4.5 +23666,0,0.21053,2,2,0,2,4,,3,2,Kercheval,Ave,4705782,3.408,3.619,0,5.052715,6,4.5 +33471,0,0.279977,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.719449,0.15,4 +33454,0,0.176485,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.235635,0.15,4 +17865,0,0.072313,1,1,0,2,5,,3,2,Morningside,Dr,1636204,0.93,1.002,0,1.735503,8,4.5 +18762,-1,0.239694,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,3.091,3.331,0,5.752656,5,5 +18792,1,0.242753,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,3.549,3.791,0,5.826065,5,5 +33543,0,0.248366,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.960777,0.15,4 +33913,0,0.713525,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.124596,0.15,4 +17817,0,0.190753,1,1,0,2,5,,3,2,Provencal,Rd,1637806,0.009,0.2,0,4.578071,8,4.5 +18765,-1,0.619781,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,1.883,2.503,0,14.874749,5,5 +18772,-1,0.210258,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,1.039,1.25,0,5.046183,5,5 +18793,1,1.35984,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,2.189,3.549,0,32.636167,5,5 +18806,1,0.20954,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,1.5,1.709,0,5.028954,5,5 +18957,0,0.178676,1,1,0,2,4,,3,2,Moross,Rd,1632608,0.009,0.187,0,4.288233,6,4.5 +23314,0,0.348453,1,1,0,2,5,,3,2,Woodland Shore,Dr,4705375,0,0.348,0,8.362881,8,4.5 +30754,0,0.632028,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.168674,0.15,4 +17833,0,0.253705,1,1,0,2,5,,3,2,Kerby,Rd,1637802,0.393,0.647,0,6.088913,8,4.5 +18952,0,0.477104,1,1,0,2,4,,3,2,Moross,Rd,1632608,0.325,0.802,0,11.45049,6,4.5 +23433,0,0.312379,1,1,0,2,5,,3,2,Kercheval,Ave,4705782,4.468,4.781,0,7.497091,8,4.5 +33465,0,0.470891,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.301388,0.15,4 +30757,0,0.386064,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.265527,0.15,4 +17841,0,0.183492,1,1,0,2,5,,3,2,Kerby,Rd,1637802,0.21,0.393,0,4.403812,8,4.5 +18955,0,0.137344,1,1,0,2,4,,3,2,Moross,Rd,1632608,0.187,0.325,0,3.296266,6,4.5 +19424,0,0.203671,1,1,0,2,5,,3,2,Grosse Pointe,Blvd,1715203,2.373,2.576,0,4.888098,8,4.5 +22745,0,0.198599,2,2,0,2,4,,3,2,Kercheval,Ave,4705782,4.27,4.468,0,4.766373,6,4.5 +17843,0,0.200849,1,1,0,2,5,,3,2,Kerby,Rd,1637802,0.009,0.21,0,4.820381,8,4.5 +17854,0,0.009193,1,1,0,2,5,,3,2,Kerby,Rd,1637802,0,0.009,0,0.220621,8,4.5 +23089,0,0.152605,1,1,0,2,5,,3,2,Kercheval,Ave,4705782,4.781,4.933,0,3.662516,8,4.5 +17858,0,0.374202,1,1,0,2,5,,3,2,Cook,Rd,1637610,0.189,0.563,0,8.980848,8,4.5 +17891,0,0.46745,1,1,0,2,5,,3,2,Morningside,Dr,1636204,0,0.467,0,11.218803,8,4.5 +33464,0,0.432796,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.387094,0.15,4 +33466,0,0.225814,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.419535,0.15,4 +17861,0,0.188589,1,1,0,2,5,,3,2,Cook,Rd,1637610,0,0.189,0,4.526131,8,4.5 +17862,0,0.088494,1,1,0,2,5,,3,2,Ballantyne,Rd,1636207,0,0.089,0,2.123851,8,4.5 +17876,0,0.367748,1,1,0,2,5,,3,2,Morningside,Dr,1636204,0.467,0.835,0,8.825964,8,4.5 +17866,1,0.094945,1,0,0,2,5,,3,2,Morningside,Dr,1636204,0.835,0.93,0,2.278677,8,4.5 +22738,-1,0.094934,0,1,0,2,5,,3,2,Morningside,Dr,4706089,0,0.095,0,2.278411,8,4.5 +18767,-1,0.480505,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,1.25,1.73,0,11.532108,5,5 +18797,1,0.479949,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,1.709,2.189,0,11.518768,5,5 +18969,0,0.008558,1,1,0,2,4,,3,2,Moross,Rd,1632608,0,0.009,0,0.205398,6,4.5 +18766,-1,0.153008,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,1.73,1.883,0,3.672183,5,5 +17819,0,0.009074,1,1,0,2,5,,3,2,Provencal,Rd,1637806,0,0.009,0,0.217773,8,4.5 +18764,-1,0.588637,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,2.503,3.091,0,14.127288,5,5 +33293,0,0.190342,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.568197,0.15,4 +33452,0,0.600267,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.406399,0.15,4 +33568,0,0.180894,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.341451,0.15,4 +5331,0,0.220402,2,2,0,2,4,,3,4,9 Mile,Rd,803006,9.925,10.145,0,5.289659,6,4.5 +22253,0,0.184017,1,1,0,2,4,,3,2,Vernier,Rd,4702103,2.412,2.596,0,4.41641,6,4.5 +24058,1,0.074672,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,4718263,0,0.075,0,1.792133,5,5 +24080,-1,0.072129,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,4718264,0,0.072,0,1.73109,5,5 +24184,0,0.350765,1,1,0,2,5,,3,4,Marter,Rd,4718268,0.455,0.805,0,8.418372,8,4.5 +24486,0,0.038419,1,1,0,2,5,,3,4,Marter,Rd,4718268,0.1,0.138,0,0.922066,8,4.5 +27507,0,0.268064,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.433531,0.15,4 +27510,0,0.347194,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.332651,0.15,4 +33463,0,0.50519,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.124572,0.15,4 +33569,0,0.441133,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.58719,0.15,4 +17906,0,0.413572,1,1,0,2,5,,3,2,Marter,Rd,1635905,0,0.414,0,9.92573,8,4.5 +22254,0,0.352672,2,2,0,2,4,,3,2,Vernier,Rd,4702103,2.059,2.412,0,8.464127,6,4.5 +33481,0,0.362737,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.705677,0.15,4 +33555,0,0.420049,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.081186,0.15,4 +22255,0,0.188457,2,2,0,2,4,,3,2,Vernier,Rd,4702103,1.871,2.059,0,4.522973,6,4.5 +17900,0,0.207216,1,1,0,2,5,,3,2,Marter,Rd,1635905,0.414,0.621,0,4.973185,8,4.5 +33545,0,0.388118,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.314831,0.15,4 +24071,0,0.099519,1,1,0,2,5,,3,2,Marter,Rd,4718268,0,0.1,0,2.38845,8,4.5 +5333,0,0.258972,2,2,0,2,4,,3,4,9 Mile,Rd,803006,9.594,9.853,0,6.215323,6,4.5 +5869,0,0.345654,2,2,1,2,4,,3,4,Greater Mack,Ave,809106,0.59,0.936,0,8.295693,6,4.5 +27498,0,0.345826,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.299826,0.15,4 +27509,0,0.331162,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.947878,0.15,4 +4633,0,0.031503,1,1,0,2,5,,3,4,Colony,St,799603,0.581,0.612,0,0.756068,8,4.5 +5335,0,0.097176,2,2,1,2,4,,3,4,9 Mile,Rd,803006,9.427,9.525,0,2.332223,6,4.5 +19651,0,0.199173,1,1,0,2,5,,3,4,Cavalier,Dr,1835407,0,0.199,0,4.780143,8,4.5 +5334,0,0.069785,2,2,0,2,4,,3,4,9 Mile,Rd,803006,9.525,9.594,0,1.674842,6,4.5 +5832,0,0.16963,1,1,0,2,5,,3,4,Nine Mack,Dr,809107,0.091,0.261,0,4.071124,8,4.5 +6249,0,0.206662,2,2,1,2,4,,3,4,Greater Mack,Ave,809106,0.936,1.142,0,4.959887,6,4.5 +6212,0,0.091008,1,1,0,2,5,,3,4,Nine Mack,Dr,809107,0,0.091,0,2.184185,8,4.5 +4030,0,0.018044,1,1,0,2,5,,3,4,Colony,St,799603,0.563,0.581,0,0.433067,8,4.5 +24290,0,0.316671,1,1,0,2,5,,3,4,Marter,Rd,4718268,0.138,0.455,0,7.600099,8,4.5 +5332,0,0.071293,2,2,0,2,4,,3,4,9 Mile,Rd,803006,9.853,9.925,0,1.711038,6,4.5 +27508,0,0.330153,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.923662,0.15,4 +18761,-1,0.490498,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,3.331,3.821,0,11.771954,5,5 +18789,1,0.96771,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,3.791,4.759,0,23.225045,5,5 +22250,0,0.198605,1,1,0,2,4,,3,2,Vernier,Rd,4702103,2.966,3.165,0,4.766529,6,4.5 +22251,0,0.287049,1,1,0,2,4,,3,2,Vernier,Rd,4702103,2.679,2.966,0,6.889164,6,4.5 +22252,0,0.083813,1,1,0,2,4,,3,2,Vernier,Rd,4702103,2.596,2.679,0,2.011513,6,4.5 +17863,0,0.255075,1,1,0,2,5,,3,2,Morningside,Dr,1636204,1.002,1.257,0,6.121789,8,4.5 +22249,0,0.008609,1,1,0,2,4,,3,2,Vernier,Rd,4702103,3.165,3.174,0,0.206625,6,4.5 +18760,-1,0.478532,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,3.821,4.3,0,11.484772,5,5 +24054,0,0.511011,2,2,1,2,3,,3,4,Jefferson,Ave,4718263,0.865,1.376,0,12.264273,5,5 +24067,0,0.21196,1,1,0,2,5,,3,4,Marter,Rd,4718268,0.805,1.017,0,5.087033,8,4.5 +24264,1,0.286259,2,0,0,2,3,DV2,3,4,Lakeshore,Dr,4718263,0.448,0.735,0,6.870217,5,5 +24296,-1,0.291633,0,2,0,2,3,DV2,3,4,Lakeshore,Dr,4718264,0.435,0.727,0,6.999188,5,5 +26828,0,0.254475,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.107401,0.15,4 +27511,0,0.24598,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.903526,0.15,4 +24163,1,0.130535,2,0,0,2,3,DV2,3,4,Lakeshore,Dr,4718263,0.735,0.865,0,3.132844,5,5 +24188,-1,0.132946,0,2,0,2,3,DV2,3,4,Lake Shore,Dr,4718264,0.727,0.86,0,3.190707,5,5 +25605,0,0.185681,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.456352,0.15,4 +24409,1,0.37386,2,0,0,2,3,DV2,3,4,Lakeshore,Dr,4718263,0.075,0.448,0,8.972644,5,5 +24495,-1,0.363164,0,2,0,2,3,DV2,3,4,Lakeshore,Dr,4718264,0.072,0.435,0,8.715945,5,5 +26513,0,0.205151,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.923623,0.15,4 +27506,0,0.202031,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.848736,0.15,4 +28,0,0.858079,1,1,0,2,5,GRV,5,3,Gallagher,Rd,609402,0,0.858,0,20.593895,5.55,5 +65,0,0.51112,1,1,0,2,5,,3,3,10 Mile,Rd,607703,0.203,0.714,0,12.266881,8,4.5 +72,1,0.427533,2,0,0,2,5,,3,3,Heights,Dr,607610,0.297,0.725,0,10.260803,8,4.5 +80,-1,0.438055,0,3,0,2,5,,3,3,Progress,Dr,607607,0.249,0.687,0,10.51333,8,4.5 +151,0,0.464734,2,2,1,2,3,,3,3,13 Mile,Rd,607408,0.568,1.033,0,11.153626,5,5 +155,1,0.553404,2,0,0,2,3,DIV,4,3,Big Beaver,Rd,607204,5.013,5.567,0,13.28169,3.7,5 +181,0,0.468869,1,1,0,2,4,,4,3,Hamlin,Rd,606606,3.63,4.099,0,11.25286,4.5,4.5 +192,0,0.345683,1,1,0,2,5,GRV,4,3,Washington,Rd,4415706,0.906,1.252,0,8.296383,6.55,4.5 +212,0,0.567349,1,1,0,2,3,,4,3,Avon,Rd,605102,4.454,5.022,0,13.616374,3.7,5 +248,0,0.431892,1,1,0,2,4,,4,3,Orion,Rd,604708,2.149,2.58,0,10.365405,4.5,4.5 +455,0,0.719209,1,1,1,2,4,,4,3,South,Blvd,616405,7.02,7.739,0,17.261009,4.5,4.5 +903,0,0.50019,2,2,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.827,2.327,0,12.004558,8,4.5 +1015,-1,0.780542,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,3.037,3.818,0,18.732997,3.7,5 +1064,0,0.21652,1,1,1,2,4,,4,3,Wattles,Rd,618802,6.364,6.58,0,5.196477,4.5,4.5 +1163,1,0.780861,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,3.05,3.831,0,18.740654,3.7,5 +1268,0,0.511088,1,1,0,2,4,,4,3,Auburn,Rd,625105,9.667,10.178,0,12.266122,4.5,4.5 +1306,0,0.660836,2,2,1,2,3,,4,3,Long Lake,Rd,641102,13.619,14.28,0,15.860064,3.7,5 +1592,0,0.709761,1,1,0,2,4,,4,3,Adams,Rd,4415861,13.524,14.234,0,17.034262,4.5,4.5 +1622,0,0.068338,2,2,1,2,3,,3,3,14 Mile,Rd,625804,0.622,0.69,0,1.64011,5,5 +1729,0,0.527126,1,1,0,2,4,,4,3,Square Lake,Rd,615807,7.563,8.09,0,12.651017,4.5,4.5 +2250,1,0.251868,2,0,0,2,5,DV2,3,3,Whitcomb,,647603,0.497,0.749,0,6.044837,8,4.5 +2485,0,0.515521,1,1,0,2,5,,4,3,Parkdale,,678507,1.499,2.015,0,12.372494,5.8,4.5 +2572,0,0.456802,1,1,0,2,5,,3,3,Lincoln,,651908,3.883,4.339,0,10.963247,8,4.5 +2796,0,1.007874,1,1,0,2,5,,5,4,Dequindre,Rd,667605,2.624,3.631,0,24.188979,3.7,5 +3112,1,1.423495,3,0,0,1,2,,4,3,E M 59,,648906,30.066,31.489,0,,0.8,7.5 +3188,0,0.634833,1,1,0,2,4,,4,3,Joslyn,Rd,674110,5.301,5.936,0,15.235996,4.5,4.5 +3537,-1,1.398283,0,3,0,1,2,,4,3,W M 59,,677208,8.545,9.943,0,,0.8,7.5 +3542,0,0.233355,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,21.267,21.5,0,5.600521,5,5 +3771,0,0.439433,2,2,1,2,3,,4,3,Maple,Rd,683906,19.23,19.67,0,10.546399,3.7,5 +4499,0,0.884102,1,1,0,2,4,,5,3,Clintonville,Rd,697001,2.412,3.296,0,21.218459,3,4 +5394,0,1.013702,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,1.065,2.079,0,24.32884,3,4 +6054,0,1.053957,1,1,0,2,6,GRV,5,4,Indian Trail,Rd,817101,0,1.054,0,25.294962,5.55,5 +6221,0,0.994592,1,1,0,2,5,,5,4,27 Mile,Rd,819105,1.993,2.988,0,23.870198,3.7,5 +6377,0,1.260849,1,1,0,2,6,GRV,5,4,36 Mile,Rd,822708,0,1.261,0,30.260367,5.55,5 +6419,-1,0.860519,0,2,0,1,2,,4,4,S M 53,,813706,12.262,13.123,0,,0.8,7.5 +6474,0,1.249472,1,1,0,2,5,GRV,5,4,34 Mile,Rd,821608,0,1.249,0,29.987334,5.55,5 +6701,0,1.036031,1,1,0,2,4,,4,4,Mound,Rd,814501,4.517,5.553,0,24.864756,4.5,4.5 +19466,1,0.377001,4,0,0,1,1,,3,3,E I 696,,1903903,4.885,5.262,0,,0.58,7 +19508,0,0.54539,1,1,0,2,5,GRV,5,3,Gunn,Rd,1895401,0.109,0.654,0,13.089359,5.55,5 +19700,-1,0.35607,0,4,0,1,1,,3,3,W I 696,,1904002,4.885,5.241,0,,0.58,7 +19751,0,2.071044,1,1,0,2,5,,5,4,North,Ave,1817105,6.3,8.371,0,49.70505,3.7,5 +19877,1,1.002958,2,0,0,1,2,,4,4,N M 53,,4210208,12.238,13.241,0,,0.8,7.5 +20067,0,1.026393,1,1,0,2,5,,5,4,Jewell,Rd,4208421,0.995,2.021,0,24.633439,3.7,5 +20112,0,1.80732,1,1,0,2,6,GRV,5,4,Omo,Rd,4208329,0,1.807,0,43.375686,5.55,5 +20295,0,0.172419,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,9.812,9.984,0,4.138061,6,4.5 +20328,0,0.366453,1,1,1,2,4,,4,4,Van Dyke,Ave,4211016,8.761,9.127,0,8.794872,4.5,4.5 +20721,-1,0.251679,0,2,0,2,5,DV2,3,3,Whitcomb,,4400514,0.497,0.749,0,6.040294,8,4.5 +20797,0,0.46524,1,1,0,2,5,,4,3,Giddings,Rd,4407722,0.262,0.727,0,11.165753,5.8,4.5 +20983,0,1.007581,1,1,0,2,4,,5,3,Romeo,,4410333,2.485,3.492,0,24.18195,3,4 +21138,-1,0.642737,0,3,0,2,3,DIV,4,3,Big Beaver,Rd,4408243,4.493,5.135,0,15.425699,3.7,5 +21173,0,1.124969,1,1,0,2,4,GRV,4,3,Snell,Rd,4408229,0,1.125,0,26.999248,6.55,4.5 +21442,0,0.298316,1,1,0,2,4,,4,3,Runyon,Rd,4413806,0.561,0.859,0,7.159576,4.5,4.5 +21595,0,0.605043,1,1,1,2,4,,4,3,Rochester,Rd,4413538,15.824,16.429,0,14.52104,4.5,4.5 +24968,0,1.525274,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,36.606568,0.15,4 +24970,0,1.030579,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.733901,0.15,4 +24975,0,1.400134,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,33.603227,0.15,4 +24978,0,0.76891,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.453831,0.15,4 +24980,0,0.689308,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.5434,0.15,4 +24982,0,0.905541,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.732984,0.15,4 +25072,0,0.72729,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.454958,0.15,4 +25075,0,0.700348,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.808342,0.15,4 +25076,0,0.511128,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.267082,0.15,4 +25082,0,0.492955,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.830931,0.15,4 +25084,0,0.512613,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.302702,0.15,4 +25085,0,0.528544,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.685062,0.15,4 +25087,0,0.550676,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.216224,0.15,4 +25090,0,0.498574,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.965768,0.15,4 +25099,0,0.3321,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.970392,0.15,4 +25370,0,0.538897,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.933516,0.15,4 +26100,0,1.17886,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,28.292636,0.15,4 +27517,0,1.023912,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,24.573887,0.15,4 +27518,0,0.809789,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,19.434942,0.15,4 +27526,0,0.995398,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,23.889557,0.15,4 +27532,0,0.568292,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.639001,0.15,4 +27542,0,0.60543,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.530319,0.15,4 +27546,0,0.577473,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.859357,0.15,4 +27550,0,0.559701,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.432815,0.15,4 +27553,0,0.514058,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.337402,0.15,4 +27562,0,0.626255,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.030109,0.15,4 +27563,0,0.600825,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.419805,0.15,4 +27962,0,1.133569,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.205647,0.15,4 +28022,0,0.536278,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.870674,0.15,4 +28286,0,0.492254,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.814084,0.15,4 +28449,0,0.516522,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.396522,0.15,4 +28460,0,0.511016,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.264377,0.15,4 +28534,0,0.677992,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.271796,0.15,4 +29017,0,0.518443,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.442642,0.15,4 +29517,0,0.610358,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.648601,0.15,4 +29624,0,0.501056,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.02535,0.15,4 +29826,0,1.520815,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,36.499566,0.15,4 +30176,0,1.516345,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.392283,0.15,4 +20,-1,0.493326,0,3,0,1,1,,4,3,S I 75,,646106,12.553,13.046,0,,0.8,7.5 +126,0,0.443718,2,2,0,2,4,,3,3,13 Mile,Rd,607408,7.003,7.446,0,10.64923,6,4.5 +325,0,0.504995,2,2,1,2,4,,3,3,10 Mile,Rd,633409,7.35,7.855,0,12.119891,6,4.5 +363,0,0.658376,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,4.074,4.732,0,15.801022,5.8,4.5 +375,0,0.554178,1,1,0,2,4,,4,3,Quarton,Rd,617206,2.691,3.245,0,13.300275,4.5,4.5 +408,0,0.11952,2,2,0,2,4,,4,3,South,Blvd,616405,0.867,0.987,0,2.868475,4.5,4.5 +411,0,0.572523,1,1,0,2,5,,4,3,Eastways,Rd,615707,0.23,0.802,0,13.740549,5.8,4.5 +431,0,0.779277,2,2,1,2,3,,4,3,Walton,Blvd,616602,0.25,1.029,0,18.702649,3.7,5 +485,-1,0.524008,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,2.535,3.059,0,12.57619,3.7,5 +40319,-1,0.031674,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0.46,0.491,0,0.760174,3.7,5 +497,-1,0.618011,0,2,0,1,1,RFF,4,3,S I 75 BL,,625912,0,0.618,0,,0.8,7.5 +556,0,0.485827,1,1,0,2,5,,4,3,Saxon,Dr,625804,7.001,7.487,0,11.659845,5.8,4.5 +567,0,0.461915,1,1,0,2,5,,4,3,Lincoln,,611106,0.643,1.105,0,11.085965,5.8,4.5 +592,0,0.519949,1,1,0,2,5,,4,3,Squirrel,Rd,617001,1.493,2.012,0,12.478771,5.8,4.5 +779,0,0.370131,1,1,0,2,5,,4,3,Kensington,Rd,616302,1.025,1.395,0,8.883154,5.8,4.5 +806,0,0.414613,1,1,0,2,5,,4,3,Beach,Rd,626301,2.325,2.739,0,9.950709,5.8,4.5 +856,0,0.50972,1,1,0,2,3,,4,3,Adams,Rd,4415861,4.163,4.673,0,12.233276,3.7,5 +888,0,0.435635,1,1,0,2,4,,4,3,Square Lake,Rd,615807,0.465,0.901,0,10.45524,4.5,4.5 +1025,0,0.386349,1,1,0,2,4,,4,3,Franklin,Rd,616801,1.021,1.407,0,9.272374,4.5,4.5 +1158,1,0.321235,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,0.317,0.638,0,7.709646,3.7,5 +1227,0,0.398074,1,1,0,2,3,,4,3,Orchard Lake,Rd,634003,9.694,10.092,0,9.55378,3.7,5 +1296,0,0.156269,1,1,0,2,4,,4,3,Opdyke,Rd,616205,0.671,0.828,0,3.750468,4.5,4.5 +1423,0,0.028692,1,1,0,2,3,,4,3,Long Lake,Rd,641102,7,7.029,0,0.688602,3.7,5 +1453,1,0.505383,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,2.554,3.059,0,12.129184,3.7,5 +1719,1,0.225559,2,0,0,2,4,DIV,4,3,Featherstone,,616508,0.842,1.068,0,5.413419,4.5,4.5 +1735,0,0.382538,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.009,3.392,0,9.180912,4.5,4.5 +1930,0,0.025,1,1,0,2,4,,4,3,Livernois,Rd,625408,3.442,3.467,0,0.600008,4.5,4.5 +1937,0,0.421628,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,10.84,11.262,0,10.119066,4.5,4.5 +2038,-1,0.377423,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,0.262,0.639,0,9.05815,3.7,5 +2115,0,0.326732,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,2.804,3.131,0,7.841558,4.5,4.5 +2170,0,0.471943,1,1,0,2,5,,4,3,Kensington,Rd,616302,0,0.472,0,11.326621,5.8,4.5 +2286,1,0.299405,3,0,0,1,1,,4,3,N I 75,,647308,12.459,12.758,0,,0.8,7.5 +2345,0,0.464471,1,1,1,2,4,,4,3,John R,Rd,646806,10.05,10.515,0,11.147309,4.5,4.5 +2803,1,0.655853,1,0,0,1,1,ROF,4,3,N I 75/Crooks,RAMP,681303,0,0.656,0,,2.24,5 +2936,0,0.114163,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,14.573,14.687,0,2.739906,5,5 +3092,1,0.37245,1,0,0,1,1,RON,4,3,Crooks/S I 75,RAMP,681302,0.091,0.463,0,,1.09,4 +3237,-1,0.366388,0,3,0,1,2,,4,3,W M 59,,677208,2.566,2.933,0,,0.8,7.5 +3258,1,0.354431,3,0,0,1,2,,4,3,E M 59,,648906,24.164,24.518,0,,0.8,7.5 +3386,1,0.010981,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.223,7.234,0,0.263542,3.7,5 +3424,1,0.090598,2,0,0,1,1,RON,4,3,Crooks/S I 75,RAMP,681302,0,0.091,0,,1.09,4 +3679,0,0.375289,1,1,0,2,4,,4,3,Lahser,Rd,685510,10.577,10.952,0,9.006931,4.5,4.5 +3799,0,0.293722,1,1,1,2,3,,3,3,Maple,Rd,683906,12.736,13.03,0,7.049329,5,5 +3910,-1,0.42624,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,10.694,11.12,0,10.229769,3.7,5 +4409,-1,0.173926,0,4,0,1,1,,3,3,W I 696,,710702,11.286,11.46,0,,0.58,7 +4780,1,0.204017,4,0,0,1,1,,3,3,E I 696,,710701,11.291,11.495,0,,0.58,7 +4852,1,0.473755,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,4.303,4.777,0,11.370116,4.5,4.5 +4980,1,0.506421,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,10.689,11.196,0,12.154096,3.7,5 +40257,0,0.009501,1,1,0,2,5,,3,3,Webster,Rd,610103,0.981,0.99,0,0.228021,8,4.5 +40251,-1,0.16135,0,2,0,2,5,,4,3,Corporate,Dr,5491101,0,0.161,0,3.872412,5.8,4.5 +19823,0,0.65049,1,1,0,2,3,,4,3,Commerce,Rd,4104140,17.6,18.251,0,15.611768,3.7,5 +20345,-1,0.370401,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,3.073,3.443,0,8.889617,8,4.5 +20992,1,0.335226,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,1.195,1.53,0,8.045418,8,4.5 +21161,-1,0.489326,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,0.491,0.98,0,11.743815,3.7,5 +21769,0,0.255666,2,2,1,2,3,,4,3,Rochester,Rd,4413538,7.075,7.331,0,6.135996,3.7,5 +25086,0,0.530315,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.727565,0.15,4 +25175,0,0.549827,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.195843,0.15,4 +25177,0,0.589688,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.152516,0.15,4 +25178,0,0.39055,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.373201,0.15,4 +25181,0,0.762477,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.299453,0.15,4 +25183,0,0.277883,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.669191,0.15,4 +25188,0,0.606341,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.552177,0.15,4 +25190,0,0.712617,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.102802,0.15,4 +25192,0,0.693423,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.642161,0.15,4 +25193,0,0.412966,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.91118,0.15,4 +25196,0,0.504562,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.1095,0.15,4 +25197,0,0.408504,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.804096,0.15,4 +25198,0,0.736398,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.673563,0.15,4 +25646,0,0.410322,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.847727,0.15,4 +25648,0,0.468814,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.251529,0.15,4 +25650,0,0.283558,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.805397,0.15,4 +25655,0,0.178578,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.285871,0.15,4 +40250,1,0.064794,2,0,0,2,5,,4,3,Corporate,Dr,1888801,0.503,0.568,0,1.555048,5.8,4.5 +25660,0,0.518702,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.448854,0.15,4 +25662,0,0.534683,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.832383,0.15,4 +25663,0,0.588337,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.120092,0.15,4 +25664,0,0.514193,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.340635,0.15,4 +25672,0,0.381152,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.147647,0.15,4 +25990,0,0.61361,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.726641,0.15,4 +26218,0,0.240979,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.783491,0.15,4 +26219,0,0.315158,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.563785,0.15,4 +27566,0,0.427778,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.26668,0.15,4 +27576,0,0.431017,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.3444,0.15,4 +27577,0,0.487476,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.699422,0.15,4 +27585,0,0.373688,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.96852,0.15,4 +27588,0,0.521921,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.526101,0.15,4 +27597,0,0.350208,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.404992,0.15,4 +27608,0,0.517099,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.410388,0.15,4 +27610,0,0.628961,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.095059,0.15,4 +27613,0,0.526364,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.632734,0.15,4 +27618,0,0.676092,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,16.226199,0.15,4 +27620,0,0.58176,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.962228,0.15,4 +27642,0,0.919043,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.057036,0.15,4 +27753,0,0.903428,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.68227,0.15,4 +28264,0,0.517946,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.430714,0.15,4 +28267,0,0.383289,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.198928,0.15,4 +28268,0,0.65189,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.645355,0.15,4 +29043,0,0.327702,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.864846,0.15,4 +29046,0,0.320086,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.682065,0.15,4 +29683,0,0.609706,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.632951,0.15,4 +29684,0,0.704663,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.911901,0.15,4 +29763,0,0.753556,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.085344,0.15,4 +29883,0,0.643612,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.446677,0.15,4 +29896,0,0.461107,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.06656,0.15,4 +29897,0,0.340431,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.170343,0.15,4 +113,0,0.551471,1,1,0,2,4,,4,3,13 Mile,Rd,607408,10.203,10.754,0,13.2353,4.5,4.5 +493,0,0.312378,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,6.034,6.346,0,7.497075,4.5,4.5 +796,0,0.680719,1,1,0,2,3,,4,3,Long Lake,Rd,641102,2.954,3.634,0,16.337248,3.7,5 +1023,0,0.17011,1,1,0,2,4,,4,3,10 Mile,Rd,633409,3.889,4.06,0,4.082644,4.5,4.5 +1039,0,0.441673,2,2,1,2,4,,4,3,Franklin,Rd,638109,0.741,1.182,0,10.600158,4.5,4.5 +1045,0,0.384908,1,1,0,2,4,,4,3,Quarton,Rd,618807,0.976,1.361,0,9.237792,4.5,4.5 +1152,0,0.487884,1,1,0,2,4,,4,3,Inkster,Rd,616805,0,0.488,0,11.709225,4.5,4.5 +1389,0,0.440455,1,1,0,2,4,,4,3,Cranbrook,Rd,618210,0,0.44,0,10.570927,4.5,4.5 +1627,0,0.451409,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,1.006,1.457,0,10.833825,5.8,4.5 +39989,0,0.114804,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,1.733,1.847,0,2.755302,4.5,4.5 +1949,0,0.258967,1,1,1,2,4,,4,3,11 Mile,Rd,634509,4.137,4.396,0,6.215198,4.5,4.5 +40011,-1,0.011212,0,2,0,2,3,,4,3,14 Mile,Rd,5499977,0.087,0.098,0,0.269092,3.7,5 +2866,0,0.154105,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.666,10.821,0,3.698523,3.7,5 +3693,0,0.451046,1,1,0,2,4,,4,3,Lahser,Rd,685510,6.042,6.493,0,10.825097,4.5,4.5 +3810,0,0.599623,2,2,1,2,3,,4,3,Maple,Rd,683906,9.543,10.142,0,14.390963,3.7,5 +3978,1,0.456512,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,6.103,6.56,0,10.956295,3.7,5 +4055,-1,0.418008,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,6.104,6.522,0,10.03219,3.7,5 +4740,-1,2.535364,0,4,0,1,1,,4,3,W I 696,,710702,4.955,7.49,0,,0.8,7.5 +4791,1,1.173098,3,0,0,1,1,,4,3,E I 696,,710701,7.763,8.936,0,,0.8,7.5 +4933,1,0.442655,3,0,0,1,2,,4,3,S M 10,,710010,3.941,4.384,0,,0.8,7.5 +5086,-1,0.34492,0,3,0,1,2,,4,3,N M 10,,710102,3.974,4.319,0,,0.8,7.5 +19220,1,0.412155,2,0,0,1,1,RFF,4,3,E I 696/S M 10,RAMP,1813003,0,0.412,0,,0.8,7.5 +20190,0,0.263309,1,1,0,2,5,,4,3,Northwestern,Hwy,4400087,0.715,0.978,0,6.319422,5.8,4.5 +20431,0,0.268714,1,1,0,2,4,,4,3,Franklin,Rd,4400056,2.047,2.315,0,6.449126,4.5,4.5 +25201,0,0.830823,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.939746,0.15,4 +25449,0,0.513946,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.334697,0.15,4 +25453,0,0.607778,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.586681,0.15,4 +25756,0,0.48478,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.634726,0.15,4 +25769,0,0.514665,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.35197,0.15,4 +25774,0,0.518205,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.436908,0.15,4 +26000,0,0.560552,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.453244,0.15,4 +27292,0,0.642678,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.424274,0.15,4 +27630,0,0.622598,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.942346,0.15,4 +27632,0,0.33884,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.132157,0.15,4 +27635,0,0.612183,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.692383,0.15,4 +27663,0,0.550967,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.223216,0.15,4 +27707,0,0.45035,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.808399,0.15,4 +27847,0,0.501001,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.02402,0.15,4 +27965,0,0.629436,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.106467,0.15,4 +28061,0,0.509954,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.238893,0.15,4 +29730,0,0.538001,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.912023,0.15,4 +29732,0,0.539511,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.94826,0.15,4 +29733,0,0.535254,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.846089,0.15,4 +29734,0,0.562983,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.511593,0.15,4 +29735,0,0.493133,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.835197,0.15,4 +29738,0,0.553896,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.293514,0.15,4 +106,0,0.427956,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.051,12.478,0,10.270932,4.5,4.5 +977,0,0.443264,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,2.967,3.41,0,10.638341,3.7,5 +1118,0,0.601024,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,4.012,4.612,0,14.424581,4.5,4.5 +39993,0,0.205961,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,1.12,1.326,0,4.943062,4.5,4.5 +1787,0,0.620787,1,1,0,2,4,,4,3,11 Mile,Rd,634509,1.996,2.617,0,14.898893,4.5,4.5 +1789,0,0.138179,1,1,0,2,4,,4,3,10 Mile,Rd,633409,2.286,2.425,0,3.316285,4.5,4.5 +1976,0,0.361593,1,1,1,2,4,,4,3,Inkster,Rd,636410,3.67,4.032,0,8.678226,4.5,4.5 +2620,0,0.256384,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,9.807,10.064,0,6.153204,3.7,5 +3135,0,0.536151,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,9.061,9.597,0,12.86762,3.7,5 +4472,1,2.464914,4,0,0,1,1,,4,3,E I 696,,710701,4.9,7.364,0,,0.8,7.5 +4640,1,0.471358,2,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,1.737,2.208,0,11.312583,3.7,5 +4899,1,0.054403,4,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.313,3.367,0,1.30566,3.7,5 +37646,1,0.17727,4,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.367,3.544,0,4.254477,3.7,5 +5089,-1,0.441398,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,1.782,2.223,0,10.593558,3.7,5 +24874,0,0.590829,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.179902,0.15,4 +27647,0,0.374405,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.98571,0.15,4 +27649,0,0.312805,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.507331,0.15,4 +27651,0,0.364157,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.739769,0.15,4 +27652,0,0.57911,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.898642,0.15,4 +27656,0,0.481309,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.551423,0.15,4 +27657,0,0.255476,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.13143,0.15,4 +27658,0,0.526533,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.636802,0.15,4 +27666,0,0.512545,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.30108,0.15,4 +27667,0,0.359641,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.631382,0.15,4 +27669,0,0.531852,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.76446,0.15,4 +29742,0,0.569334,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.664012,0.15,4 +29885,0,0.386888,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.285309,0.15,4 +222,0,0.510003,1,1,0,2,4,,4,3,11 Mile,Rd,634509,1.486,1.996,0,12.240077,4.5,4.5 +274,0,0.440405,2,2,1,2,4,,3,3,10 Mile,Rd,633409,1.456,1.897,0,10.569717,6,4.5 +292,0,0.232403,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,2.781,3.013,0,5.577662,4.5,4.5 +1354,1,0.443146,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,1.523,1.966,0,10.635512,3.7,5 +2480,0,0.18161,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,8.687,8.868,0,4.358649,3.7,5 +27668,0,0.52893,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.69432,0.15,4 +27671,0,0.269894,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.477465,0.15,4 +27673,0,0.421114,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.106727,0.15,4 +27674,0,0.503706,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.088955,0.15,4 +27675,0,0.513864,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.332726,0.15,4 +394,0,0.099562,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,0.961,1.061,0,2.389483,3.7,5 +1186,0,0.433294,2,2,1,2,4,,3,3,10 Mile,Rd,633409,0.902,1.335,0,10.399047,6,4.5 +29743,0,0.50534,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.128152,0.15,4 +29744,0,0.498656,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.967749,0.15,4 +1867,1,0.140125,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,1.383,1.523,0,3.362991,3.7,5 +744,0,0.12152,2,2,1,2,4,,3,3,10 Mile,Rd,633409,1.335,1.456,0,2.916473,6,4.5 +430,1,0.083492,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,2.399,2.483,0,2.003801,3.7,5 +818,1,0.346932,1,0,0,1,1,RON,4,3,N Orchard Lake/E I 696,RAMP,640905,0,0.347,0,,1.09,4 +1019,1,0.385357,1,0,0,1,1,ROF,4,3,W I 696/Orchard Lake,RAMP,640908,0,0.385,0,,2.24,5 +1154,0,0.448245,1,1,0,2,4,,4,3,11 Mile,Rd,634509,1.003,1.451,0,10.757873,4.5,4.5 +3118,0,0.373963,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,8.063,8.437,0,8.975103,3.7,5 +4441,-1,0.320455,0,4,0,1,1,,4,3,W I 696,,710702,4.635,4.955,0,,0.8,7.5 +4805,1,0.330011,4,0,0,1,1,,4,3,E I 696,,710701,4.57,4.9,0,,0.8,7.5 +26174,0,0.47303,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.352729,0.15,4 +896,1,0.433471,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,1.966,2.399,0,10.403294,3.7,5 +1331,0,0.09143,3,3,1,2,3,,4,3,Orchard Lake,Rd,634003,2.709,2.801,0,2.194309,3.7,5 +19587,1,0.242127,1,0,0,1,1,RON,4,3,N Orchard Lake/W I 96,RAMP,1915509,0,0.242,0,,1.09,4 +749,1,0.128207,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,2.483,2.611,0,3.076961,3.7,5 +19589,1,0.241625,1,0,0,1,1,RON,4,3,S Orchard Lake/E I 696,RAMP,1915508,0,0.242,0,,1.09,4 +1840,0,0.079089,3,3,1,2,3,,4,3,Orchard Lake,Rd,634003,2.63,2.709,0,1.898147,3.7,5 +279,0,0.019266,3,3,1,2,3,,4,3,Orchard Lake,Rd,634003,2.611,2.63,0,0.462377,3.7,5 +1953,0,0.022648,3,3,0,2,3,,4,3,Orchard Lake,Rd,634003,2.872,2.894,0,0.543554,3.7,5 +400,0,0.070973,3,3,1,2,3,,4,3,Orchard Lake,Rd,634003,2.801,2.872,0,1.703348,3.7,5 +1434,0,0.073034,3,3,0,2,3,,4,3,Orchard Lake,Rd,634003,2.894,2.967,0,1.752817,3.7,5 +27670,0,0.366547,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.797128,0.15,4 +714,0,0.035357,1,1,0,2,4,,4,3,11 Mile,Rd,634509,1.451,1.486,0,0.848576,4.5,4.5 +2763,0,0.249959,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,8.437,8.687,0,5.999024,3.7,5 +1192,0,0.367057,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,2.008,2.375,0,8.809366,4.5,4.5 +1839,0,0.390077,1,1,0,2,4,,4,3,10 Mile,Rd,633409,1.897,2.286,0,9.361851,4.5,4.5 +756,0,0.406374,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,2.375,2.781,0,9.752984,4.5,4.5 +569,0,0.352651,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,3.42,3.773,0,8.46362,4.5,4.5 +29740,0,0.514282,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.342763,0.15,4 +1854,0,0.406991,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,3.013,3.42,0,9.767787,4.5,4.5 +3471,0,0.193214,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,8.868,9.061,0,4.637145,3.7,5 +1602,0,0.128409,2,2,1,2,4,,4,3,Middlebelt,Rd,634610,3.883,4.012,0,3.081809,4.5,4.5 +2101,0,0.110471,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,3.773,3.883,0,2.651303,4.5,4.5 +100,0,0.872132,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.957,13.829,0,20.931162,4.5,4.5 +1284,0,0.30437,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,5.019,5.323,0,7.304879,4.5,4.5 +1406,0,0.335951,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,3.973,4.309,0,8.062825,3.7,5 +39998,0,0.055579,2,2,1,2,4,,4,3,14 Mile,Rd,5499983,0.053,0.109,0,1.333895,4.5,4.5 +4347,-1,0.514567,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,1.267,1.782,0,12.349611,3.7,5 +4861,1,0.466008,2,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,1.271,1.737,0,11.184203,3.7,5 +4952,-1,0.486827,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,0.78,1.267,0,11.683849,3.7,5 +5081,1,0.500484,2,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,0.771,1.271,0,12.011617,3.7,5 +26156,0,0.585821,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.059709,0.15,4 +27648,0,0.431717,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.361207,0.15,4 +27655,0,0.52764,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.66335,0.15,4 +27680,0,0.390065,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.361557,0.15,4 +29675,0,0.755857,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.140576,0.15,4 +368,0,0.229365,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,3.41,3.64,0,5.504763,3.7,5 +27677,0,0.471324,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.311772,0.15,4 +99,0,0.125242,1,1,0,2,4,,4,3,13 Mile,Rd,607408,13.829,13.954,0,3.005808,4.5,4.5 +1927,0,0.333415,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,3.64,3.973,0,8.001949,3.7,5 +27676,0,0.52409,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.578171,0.15,4 +373,0,0.150485,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,4.62,4.771,0,3.611643,3.7,5 +39999,1,0.024065,2,0,0,2,4,,4,3,14 Mile,Rd,5499983,0.029,0.053,0,0.577556,4.5,4.5 +39970,0,0.036768,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,5.12,5.157,0,0.882423,4.5,4.5 +39968,0,0.603912,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,5.157,5.761,0,14.493879,4.5,4.5 +27602,0,0.570127,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.68304,0.15,4 +27682,0,0.189474,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.547369,0.15,4 +27683,0,0.165234,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.965619,0.15,4 +944,0,0.311357,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,4.309,4.62,0,7.472574,3.7,5 +40005,1,0.007057,2,0,0,2,3,,4,3,14 Mile,Rd,5500000,0.155,0.162,0,0.169374,3.7,5 +39976,0,0.018008,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,3.691,3.709,0,0.432201,4.5,4.5 +40007,-1,0.034098,0,3,0,2,3,,4,3,14 Mile,Rd,5499977,0.16,0.194,0,0.818345,3.7,5 +40006,1,0.070945,2,0,0,2,3,,4,3,14 Mile,Rd,5500000,0.162,0.233,0,1.702687,3.7,5 +40009,-1,0.039917,0,2,0,2,3,,4,3,14 Mile,Rd,5499977,0.12,0.16,0,0.958019,3.7,5 +40008,1,0.042172,1,0,0,2,3,,4,3,W 14 Mile / Orchard Lake cutof,Rd,5500008,0,0.042,0,1.012126,3.7,5 +40012,-1,0.086626,0,2,0,2,3,,4,3,14 Mile,Rd,5499977,0,0.087,0,2.079016,3.7,5 +39980,0,0.092363,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,3.202,3.294,0,2.216718,4.5,4.5 +27678,0,0.230358,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.528585,0.15,4 +27679,0,0.253288,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.078905,0.15,4 +27681,0,0.217988,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.231706,0.15,4 +101,0,0.300092,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.657,12.957,0,7.202217,4.5,4.5 +27262,0,0.54483,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.075926,0.15,4 +27650,0,0.449719,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.793263,0.15,4 +1780,0,0.213997,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,4.805,5.019,0,5.135922,4.5,4.5 +214,0,0.168623,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,4.636,4.805,0,4.046951,4.5,4.5 +678,0,0.024098,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,4.612,4.636,0,0.578364,4.5,4.5 +103,0,0.053849,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.603,12.657,0,1.292386,4.5,4.5 +104,0,0.0369,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.566,12.603,0,0.885592,4.5,4.5 +105,0,0.088072,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.478,12.566,0,2.11373,4.5,4.5 +953,0,0.482029,1,1,1,2,4,,4,3,Middlebelt,Rd,634610,5.552,6.034,0,11.568707,4.5,4.5 +39995,0,0.282299,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,0.535,0.817,0,6.775171,4.5,4.5 +27653,0,0.52206,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.529432,0.15,4 +27654,0,0.442717,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.625211,0.15,4 +360,0,0.195375,1,1,1,2,4,,4,3,Middlebelt,Rd,634610,5.356,5.552,0,4.689011,4.5,4.5 +829,0,0.033132,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,5.323,5.356,0,0.795159,4.5,4.5 +39997,0,0.426453,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,0.109,0.535,0,10.234876,4.5,4.5 +267,0,0.553269,1,1,1,2,4,,4,3,11 Mile,Rd,634509,3.215,3.768,0,13.278467,4.5,4.5 +837,0,0.309874,1,1,0,2,4,,4,3,10 Mile,Rd,633409,2.895,3.205,0,7.436967,4.5,4.5 +1247,0,0.46999,1,1,0,2,4,,4,3,Inkster,Rd,636410,2.546,3.016,0,11.279752,4.5,4.5 +27638,0,0.514101,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.338429,0.15,4 +27660,0,0.338799,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.13118,0.15,4 +27684,0,0.554229,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.301504,0.15,4 +404,0,0.403616,1,1,0,2,4,,4,3,Inkster,Rd,636410,2.016,2.42,0,9.686781,4.5,4.5 +1293,0,0.470362,1,1,0,2,4,,4,3,10 Mile,Rd,633409,2.425,2.895,0,11.288689,4.5,4.5 +27665,0,0.509883,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.237199,0.15,4 +1734,0,0.126986,1,1,0,2,4,,4,3,Inkster,Rd,636410,2.42,2.546,0,3.047659,4.5,4.5 +334,0,0.346597,1,1,0,2,4,,4,3,Inkster,Rd,636410,3.176,3.523,0,8.318321,4.5,4.5 +1180,0,0.377908,1,1,0,2,4,,4,3,11 Mile,Rd,634509,2.617,2.995,0,9.0698,4.5,4.5 +27661,0,0.481135,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.547233,0.15,4 +2895,0,0.210072,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,9.597,9.807,0,5.041723,3.7,5 +27659,0,0.301705,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.240918,0.15,4 +740,0,0.220069,1,1,1,2,4,,4,3,11 Mile,Rd,634509,2.995,3.215,0,5.281653,4.5,4.5 +799,0,0.160256,1,1,0,2,4,,4,3,Inkster,Rd,636410,3.016,3.176,0,3.846137,4.5,4.5 +27672,0,0.244144,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.859449,0.15,4 +1893,0,0.147262,1,1,1,2,4,,4,3,Inkster,Rd,636410,3.523,3.67,0,3.534279,4.5,4.5 +1495,0,0.532066,1,1,0,2,4,,4,3,10 Mile,Rd,633409,3.358,3.889,0,12.769588,4.5,4.5 +29741,0,0.457487,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.979693,0.15,4 +371,0,0.152999,1,1,0,2,4,,4,3,10 Mile,Rd,633409,3.205,3.358,0,3.671966,4.5,4.5 +37649,-1,0.189327,0,4,0,2,3,DIV,4,3,Northwestern,Hwy,710102,3.355,3.545,0,4.543855,3.7,5 +37650,-1,0.217299,0,4,0,2,3,DIV,4,3,Northwestern,Hwy,710102,3.545,3.762,0,5.215166,3.7,5 +25777,0,0.262639,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.303348,0.15,4 +30249,0,0.513202,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.31684,0.15,4 +1832,0,0.369273,1,1,1,2,4,,4,3,11 Mile,Rd,634509,3.768,4.137,0,8.862546,4.5,4.5 +37647,1,0.260976,4,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.544,3.805,0,6.26343,3.7,5 +3727,0,0.123442,1,1,0,2,5,,4,3,Beck,Rd,684704,0,0.123,0,2.962607,5.8,4.5 +4616,1,0.106327,3,0,0,2,3,DIV,4,3,S M 10,,710010,3.835,3.941,0,2.551847,3.7,5 +4756,-1,0.212069,0,3,0,2,3,DIV,4,3,N M 10,,710102,3.762,3.974,0,5.089653,3.7,5 +25779,0,0.236103,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.666469,0.15,4 +27629,0,0.173276,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.158628,0.15,4 +37070,1,0.029412,2,0,0,2,3,,4,3,S Telegraph/N Franklin,TURN,4463205,0,0.029,0,0.705896,3.7,5 +3726,-1,0.068719,0,1,0,2,5,,4,3,Beck,Rd,684704,0.123,0.192,0,1.649252,5.8,4.5 +4581,1,0.029669,3,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.805,3.835,0,0.712053,3.7,5 +20982,1,0.061459,2,0,0,2,5,,4,3,Beck,Rd,4410517,0,0.062,0,1.475018,5.8,4.5 +37068,0,0.020573,1,1,0,2,5,,4,3,Northwestern,Hwy,4415772,0,0.021,0,0.493745,5.8,4.5 +110,0,0.379947,1,1,0,2,4,,4,3,13 Mile,Rd,607408,11.208,11.588,0,9.118725,4.5,4.5 +39994,0,0.303324,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,0.817,1.12,0,7.279786,4.5,4.5 +2026,0,0.502316,1,1,0,2,4,,4,3,Inkster,Rd,636410,5.03,5.532,0,12.055584,4.5,4.5 +3335,0,0.203641,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.359,10.562,0,4.887376,3.7,5 +4249,1,0.623931,3,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,2.578,3.201,0,14.974349,3.7,5 +5088,-1,0.647335,0,3,0,2,3,DIV,4,3,Northwestern,Hwy,710102,2.573,3.22,0,15.536047,3.7,5 +20189,0,0.328359,1,1,0,2,4,,4,3,Franklin,Rd,4400056,1.032,1.36,0,7.880619,4.5,4.5 +26210,0,0.514773,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.354558,0.15,4 +27687,0,0.374503,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.988083,0.15,4 +27691,0,0.321219,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.709266,0.15,4 +27692,0,0.168473,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.043357,0.15,4 +29688,0,0.502916,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.069976,0.15,4 +107,0,0.096361,1,1,0,2,4,,4,3,13 Mile,Rd,607408,11.954,12.051,0,2.312674,4.5,4.5 +2078,0,0.109076,1,1,0,2,4,,4,3,Inkster,Rd,636410,4.527,4.636,0,2.617817,4.5,4.5 +3878,1,0.369607,2,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,2.208,2.578,0,8.870566,3.7,5 +4760,-1,0.34983,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,2.223,2.573,0,8.395929,3.7,5 +27634,0,0.316488,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.595722,0.15,4 +26154,0,0.151474,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.635376,0.15,4 +27662,0,0.209631,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.031136,0.15,4 +27664,0,0.128175,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.076197,0.15,4 +1463,0,0.331366,1,1,1,2,4,,4,3,Inkster,Rd,636410,4.032,4.363,0,7.952791,4.5,4.5 +3239,0,0.154338,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.204,10.359,0,3.704112,3.7,5 +26673,0,0.263085,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.314044,0.15,4 +27685,0,0.175331,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.207949,0.15,4 +3550,0,0.1406,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.064,10.204,0,3.3744,3.7,5 +993,0,0.130703,1,1,1,2,4,,4,3,Inkster,Rd,636410,4.363,4.494,0,3.13687,4.5,4.5 +532,0,0.032973,1,1,1,2,4,,4,3,Inkster,Rd,636410,4.494,4.527,0,0.791348,4.5,4.5 +108,0,0.294528,1,1,0,2,4,,4,3,13 Mile,Rd,607408,11.66,11.954,0,7.068682,4.5,4.5 +478,0,0.39408,1,1,0,2,4,,4,3,Inkster,Rd,636410,4.636,5.03,0,9.457929,4.5,4.5 +27689,0,0.318704,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.648903,0.15,4 +27690,0,0.239498,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.747952,0.15,4 +109,0,0.071699,1,1,0,2,4,,4,3,13 Mile,Rd,607408,11.588,11.66,0,1.720765,4.5,4.5 +1043,0,0.347308,1,1,0,2,4,,4,3,Inkster,Rd,636410,5.577,5.924,0,8.3354,4.5,4.5 +39991,0,0.406506,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,1.326,1.733,0,9.75614,4.5,4.5 +27688,0,0.380499,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.131973,0.15,4 +1515,0,0.045227,1,1,0,2,4,,4,3,Inkster,Rd,636410,5.532,5.577,0,1.085455,4.5,4.5 +111,0,0.297367,1,1,0,2,4,,4,3,13 Mile,Rd,607408,10.911,11.208,0,7.136818,4.5,4.5 +20596,0,0.264495,1,1,0,2,4,,4,3,Franklin,Rd,4400056,0.443,0.708,0,6.347888,4.5,4.5 +27631,0,0.650389,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.609345,0.15,4 +28377,0,0.654755,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.714117,0.15,4 +3018,0,0.069389,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.562,10.632,0,1.665348,3.7,5 +4066,1,0.088158,4,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.224,3.313,0,2.11579,3.7,5 +4758,-1,0.135685,0,4,0,2,3,DIV,4,3,Northwestern,Hwy,710102,3.22,3.355,0,3.256435,3.7,5 +20141,0,0.28551,1,1,0,2,4,,4,3,Franklin,Rd,4400056,0,0.285,0,6.852248,4.5,4.5 +3225,-1,0.053605,0,2,0,2,4,,4,3,Franklin,Rd,663607,0,0.054,0,1.286528,4.5,4.5 +4532,1,0.022994,4,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.201,3.224,0,0.551862,3.7,5 +21107,0,0.034586,1,1,0,2,3,,4,3,Northwestern/Franklin Turn,,4410021,0,0.035,0,0.830065,3.7,5 +20836,0,0.158045,1,1,0,2,4,,4,3,Franklin,Rd,4400056,0.285,0.443,0,3.793076,4.5,4.5 +3164,0,0.034938,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.632,10.666,0,0.838515,3.7,5 +20391,0,0.323791,1,1,0,2,4,,4,3,Franklin,Rd,4400056,0.708,1.032,0,7.770982,4.5,4.5 +27633,0,0.283297,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.79913,0.15,4 +112,0,0.156888,1,1,0,2,4,,4,3,13 Mile,Rd,607408,10.754,10.911,0,3.765316,4.5,4.5 +20649,0,0.512887,1,1,0,2,4,,4,3,Franklin,Rd,4400056,1.534,2.047,0,12.309291,4.5,4.5 +20884,0,0.174255,1,1,0,2,4,,4,3,Franklin,Rd,4400056,1.36,1.534,0,4.182124,4.5,4.5 +39985,0,0.136651,1,1,0,2,4,GRV,4,3,14 Mile,Rd,5499983,2.356,2.492,0,3.279616,6.55,4.5 +39987,0,0.508638,1,1,0,2,4,GRV,4,3,14 Mile,Rd,5499983,1.847,2.356,0,12.207317,6.55,4.5 +369,0,0.317754,1,1,0,2,3,,4,3,Long Lake,Rd,641102,1.55,1.868,0,7.626101,3.7,5 +842,0,0.529644,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,10.111,10.641,0,12.711462,4.5,4.5 +935,0,0.214615,1,1,0,2,5,,4,3,Lone Pine,Rd,616805,2.661,2.876,0,5.150763,5.8,4.5 +1233,0,0.390385,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,0,0.39,0,9.369234,5.8,4.5 +1327,0,0.192558,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,7.439,7.632,0,4.621392,3.7,5 +1931,0,0.669551,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,5.642,6.311,0,16.069236,4.5,4.5 +1943,0,0.246529,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,8.379,8.626,0,5.916707,4.5,4.5 +3816,0,0.244381,1,1,0,2,3,,4,3,Maple,Rd,683906,7.662,7.906,0,5.865141,3.7,5 +19590,0,0.345563,1,1,0,2,5,,4,3,Lone Pine,Rd,1852108,0.507,0.853,0,8.293509,5.8,4.5 +20537,0,0.25551,1,1,0,2,4,,4,3,Franklin,Rd,4400056,4.397,4.652,0,6.132236,4.5,4.5 +24953,0,0.542101,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.010435,0.15,4 +25189,0,0.414542,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.949016,0.15,4 +25448,0,0.553803,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.291267,0.15,4 +25761,0,0.517762,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.426297,0.15,4 +25762,0,0.501615,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.038751,0.15,4 +27695,0,0.47194,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.326549,0.15,4 +27703,0,0.482873,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.588957,0.15,4 +27704,0,0.305277,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.326658,0.15,4 +27705,0,0.544991,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.079779,0.15,4 +29764,0,0.296523,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.116546,0.15,4 +743,0,0.164034,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,6.346,6.51,0,3.936819,3.7,5 +1063,0,0.524742,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,7.036,7.56,0,12.593814,4.5,4.5 +2083,0,0.312621,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,4.912,5.225,0,7.502907,4.5,4.5 +3818,0,0.409642,1,1,0,2,3,,4,3,Maple,Rd,683906,6.876,7.286,0,9.83141,3.7,5 +25751,0,0.535247,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.845929,0.15,4 +26005,0,0.608531,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.604754,0.15,4 +27708,0,0.437406,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.497755,0.15,4 +27710,0,0.506561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.157475,0.15,4 +27711,0,0.505349,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.128374,0.15,4 +27712,0,0.482869,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.588846,0.15,4 +3820,0,0.466808,1,1,0,2,3,,4,3,Maple,Rd,683906,6.285,6.752,0,11.203387,3.7,5 +25752,0,0.503217,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.077209,0.15,4 +25753,0,0.571058,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.705386,0.15,4 +680,0,0.353466,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,5.992,6.346,0,8.483191,3.7,5 +3819,0,0.124106,1,1,0,2,3,,4,3,Maple,Rd,683906,6.752,6.876,0,2.97855,3.7,5 +271,0,0.488677,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,6.51,6.998,0,11.728254,3.7,5 +1076,0,0.496357,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,4.2,4.696,0,11.912575,4.5,4.5 +25447,0,0.497637,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.943292,0.15,4 +26004,0,0.504831,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.115946,0.15,4 +26006,0,0.454117,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.898807,0.15,4 +1837,0,0.441303,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,6.998,7.439,0,10.591283,3.7,5 +624,0,0.216521,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,4.696,4.912,0,5.196505,4.5,4.5 +26007,0,0.461889,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.08533,0.15,4 +1535,0,0.346887,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,6.689,7.036,0,8.325276,4.5,4.5 +3817,0,0.376108,1,1,0,2,3,,4,3,Maple,Rd,683906,7.286,7.662,0,9.026604,3.7,5 +25760,0,0.527844,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.668261,0.15,4 +2044,0,0.343153,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,6.346,6.689,0,8.235672,4.5,4.5 +27709,0,0.373695,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.968672,0.15,4 +387,0,0.427942,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,7.951,8.379,0,10.270604,4.5,4.5 +1584,0,0.35353,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,5.225,5.578,0,8.48472,4.5,4.5 +27699,0,0.489775,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.754598,0.15,4 +851,0,0.391295,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,7.56,7.951,0,9.391068,4.5,4.5 +372,0,0.063657,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,5.578,5.642,0,1.527774,4.5,4.5 +1302,0,0.69731,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,9.414,10.111,0,16.735441,4.5,4.5 +1449,0,0.38268,1,1,0,2,5,,4,3,Lone Pine,Rd,640302,0.591,0.974,0,9.184324,5.8,4.5 +2097,0,0.500371,1,1,0,2,3,,4,3,Long Lake,Rd,641102,0.365,0.865,0,12.008898,3.7,5 +24823,0,0.682895,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.389469,0.15,4 +24824,0,0.697901,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.749614,0.15,4 +25993,0,0.439324,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.543787,0.15,4 +25994,0,0.693957,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.654957,0.15,4 +27698,0,0.474903,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.39767,0.15,4 +1965,0,0.344762,1,1,0,2,5,,4,3,Lone Pine,Rd,640302,0.247,0.591,0,8.274279,5.8,4.5 +25991,0,0.319376,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.66502,0.15,4 +563,0,0.364601,1,1,0,2,3,,4,3,Long Lake,Rd,641102,0,0.365,0,8.750416,3.7,5 +1713,0,0.631568,1,1,0,2,3,,4,3,Orchard Lake,Rd,634003,9.063,9.694,0,15.157637,3.7,5 +2002,0,0.263055,1,1,0,2,3,,4,3,Orchard Lake,Rd,634003,8.8,9.063,0,6.313321,3.7,5 +1798,0,0.409102,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,9.005,9.414,0,9.81844,4.5,4.5 +19591,0,0.507557,1,1,0,2,5,,4,3,Lone Pine,Rd,1852108,0,0.507,0,12.181376,5.8,4.5 +25992,0,0.434731,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.433543,0.15,4 +963,0,0.206661,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,8.799,9.005,0,4.959862,4.5,4.5 +987,0,0.253583,1,1,0,2,5,,4,3,Lone Pine,Rd,640302,0.974,1.228,0,6.085986,5.8,4.5 +1422,0,0.17301,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,8.626,8.799,0,4.152241,4.5,4.5 +1599,0,0.412323,1,1,0,2,3,,4,3,Long Lake,Rd,641102,0.865,1.277,0,9.895746,3.7,5 +25186,0,0.808301,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.399229,0.15,4 +835,0,0.273004,1,1,0,2,3,,4,3,Long Lake,Rd,641102,1.277,1.55,0,6.552107,3.7,5 +599,0,0.219813,1,1,0,2,4,,4,3,Inkster,Rd,616805,1.451,1.671,0,5.275505,4.5,4.5 +1382,0,0.150303,1,1,0,2,5,,4,3,Walnut Lake,Rd,622906,6.683,6.833,0,3.60727,5.8,4.5 +2060,0,0.028539,1,1,0,2,4,,4,3,Quarton,Rd,618807,0.476,0.505,0,0.684939,4.5,4.5 +3813,0,0.280061,1,1,0,2,3,,4,3,Maple,Rd,683906,8.557,8.836,0,6.721469,3.7,5 +20717,0,0.457797,1,1,0,2,4,,4,3,Franklin,Rd,4400056,3.085,3.542,0,10.987128,4.5,4.5 +24954,0,0.479847,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.516318,0.15,4 +25764,0,0.527302,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.655241,0.15,4 +27706,0,0.27857,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.685681,0.15,4 +27715,0,0.492063,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.809517,0.15,4 +29731,0,0.49675,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.921999,0.15,4 +30244,0,0.121093,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.906239,0.15,4 +495,0,0.563086,1,1,0,2,4,,4,3,Inkster,Rd,616805,0.6,1.162,0,13.514055,4.5,4.5 +3814,0,0.263094,1,1,0,2,3,,4,3,Maple,Rd,683906,8.294,8.557,0,6.314268,3.7,5 +712,0,0.111798,1,1,0,2,4,,4,3,Inkster,Rd,616805,0.488,0.6,0,2.683149,4.5,4.5 +2047,0,0.288785,1,1,0,2,4,,4,3,Inkster,Rd,616805,1.162,1.451,0,6.93084,4.5,4.5 +3815,0,0.387681,1,1,0,2,3,,4,3,Maple,Rd,683906,7.906,8.294,0,9.304333,3.7,5 +879,0,0.476495,1,1,0,2,4,,4,3,Quarton,Rd,618807,0,0.476,0,11.435883,4.5,4.5 +1895,0,0.371714,1,1,0,2,5,,4,3,Walnut Lake,Rd,622906,6.311,6.683,0,8.921134,5.8,4.5 +2129,0,0.470439,1,1,0,2,4,,4,3,Inkster,Rd,616805,1.671,2.141,0,11.290544,4.5,4.5 +1703,0,0.243389,1,1,0,2,5,,4,3,Inkster,Rd,616805,2.141,2.385,0,5.841334,5.8,4.5 +1392,0,0.198558,1,1,0,2,5,,4,3,Inkster,Rd,616805,2.463,2.661,0,4.765393,5.8,4.5 +1219,0,0.078166,1,1,0,2,5,,4,3,Inkster,Rd,616805,2.385,2.463,0,1.875983,5.8,4.5 +3812,0,0.423837,1,1,0,2,3,,4,3,Maple,Rd,683906,8.836,9.26,0,10.172097,3.7,5 +19895,0,0.490438,1,1,0,2,4,,4,3,Franklin,Rd,4400056,2.594,3.085,0,11.770502,4.5,4.5 +25763,0,0.474274,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.382582,0.15,4 +20244,0,0.278954,1,1,0,2,4,,4,3,Franklin,Rd,4400056,2.315,2.594,0,6.694887,4.5,4.5 +3811,0,0.282513,2,2,1,2,3,,4,3,Maple,Rd,683906,9.26,9.543,0,6.780308,3.7,5 +1554,0,0.471331,1,1,0,2,4,,4,3,Quarton,Rd,618807,0.505,0.976,0,11.311948,4.5,4.5 +1721,0,0.457416,1,1,0,2,5,,4,3,Walnut Lake,Rd,622906,6.833,7.29,0,10.977978,5.8,4.5 +20292,0,0.403812,1,1,0,2,4,,4,3,Franklin,Rd,4400056,3.651,4.054,0,9.691488,4.5,4.5 +25755,0,0.482875,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.589006,0.15,4 +29682,0,0.487254,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.694092,0.15,4 +27713,0,0.05712,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.370883,0.15,4 +20481,0,0.108534,1,1,0,2,4,,4,3,Franklin,Rd,4400056,3.542,3.651,0,2.604811,4.5,4.5 +20095,0,0.256448,1,1,0,2,4,,4,3,Franklin,Rd,4400056,4.054,4.311,0,6.154751,4.5,4.5 +20785,0,0.086101,1,1,0,2,4,,4,3,Franklin,Rd,4400056,4.311,4.397,0,2.066434,4.5,4.5 +1407,0,0.470926,1,1,0,2,3,,4,3,Long Lake,Rd,641102,2.225,2.696,0,11.302234,3.7,5 +1642,0,0.223085,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,0.39,0.613,0,5.354049,5.8,4.5 +25200,0,0.845054,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.281295,0.15,4 +27700,0,1.315728,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,31.577479,0.15,4 +27701,0,0.626543,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.037026,0.15,4 +27702,0,0.540016,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.96038,0.15,4 +29765,0,0.683085,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.394031,0.15,4 +27625,0,0.542906,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.029735,0.15,4 +1928,0,0.3574,1,1,0,2,3,,4,3,Long Lake,Rd,641102,1.868,2.225,0,8.577608,3.7,5 +379,0,0.199801,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,10.641,10.84,0,4.795226,4.5,4.5 +945,0,0.25831,1,1,0,2,3,,4,3,Long Lake,Rd,641102,2.696,2.954,0,6.199442,3.7,5 +1166,0,0.392975,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,0.613,1.006,0,9.431404,5.8,4.5 +20142,0,0.184273,1,1,0,2,4,,4,3,Franklin,Rd,4400056,5.046,5.23,0,4.422545,4.5,4.5 +20344,0,0.393658,1,1,0,2,4,,4,3,Franklin,Rd,4400056,4.652,5.046,0,9.447792,4.5,4.5 +20837,0,0.290716,1,1,0,2,4,,4,3,Franklin,Rd,4400056,5.23,5.521,0,6.977177,4.5,4.5 +119,0,0.322086,1,1,0,2,4,,4,3,13 Mile,Rd,607408,9,9.322,0,7.730076,4.5,4.5 +39972,0,0.391183,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,4.371,4.762,0,9.38839,4.5,4.5 +1732,0,0.242977,2,2,1,2,4,,3,3,10 Mile,Rd,633409,5.587,5.83,0,5.831445,6,4.5 +2640,0,0.530456,2,2,0,2,4,,3,3,Evergreen,Rd,666003,3.49,4.02,0,12.730933,6,4.5 +3536,0,0.495927,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,12.509,13.005,0,11.902244,5,5 +3694,0,0.542483,1,1,0,2,4,,4,3,Lahser,Rd,685510,5.5,6.042,0,13.019596,4.5,4.5 +3701,0,0.326608,2,2,1,2,4,,3,3,Lahser,Rd,685510,3.699,4.026,0,7.838582,6,4.5 +40449,1,0.462686,2,0,0,2,4,DIV,3,3,Civic Center,Dr,684205,0.313,0.775,0,11.104456,6,4.5 +4056,-1,0.484939,0,3,0,1,2,,3,3,N M 10,,710102,5.846,6.33,0,,0.58,7 +4238,-1,0.119344,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.976,4.096,0,2.864264,5,5 +4282,1,0.659496,3,0,0,1,2,,3,3,S M 10,,710010,5.652,6.311,0,,0.58,7 +4508,0,0.280335,1,1,1,2,5,,3,3,Northwestern,Hwy,710508,0.769,1.049,0,6.728038,8,4.5 +4730,-1,1.784523,0,3,0,1,1,,3,3,W I 696,,710702,8.242,10.026,0,,0.58,7 +4785,1,0.447405,4,0,0,1,1,,3,3,E I 696,,710701,9.394,9.841,0,,0.58,7 +5014,1,0.119967,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,3.974,4.095,0,2.879208,5,5 +19756,1,0.326069,2,0,0,1,1,RFF,3,3,W I 696/N M 10,RAMP,1903904,0.253,0.579,0,,0.58,7 +20245,0,0.152707,1,1,0,2,5,,3,3,11 Mile,Rd,4400088,1.399,1.552,0,3.664961,8,4.5 +37072,1,0.205849,2,0,0,2,3,DV2,4,3,Joslyn,Rd,674110,3.097,3.303,0,4.940364,3.7,5 +20653,1,0.125989,2,0,0,1,1,ROF,3,3,W I 696/Lahser,RAMP,4400160,0,0.126,0,,2.24,5 +27644,0,0.276843,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.644229,0.15,4 +27719,0,0.23514,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.643363,0.15,4 +27722,0,0.242057,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.809358,0.15,4 +27735,0,0.659443,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.826622,0.15,4 +27736,0,0.289178,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.94026,0.15,4 +28085,0,0.601942,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.446614,0.15,4 +28108,0,0.380521,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.1325,0.15,4 +29676,0,0.494665,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.871967,0.15,4 +1784,0,0.206042,1,1,1,2,4,,4,3,Franklin,Rd,638109,1.393,1.599,0,4.945011,4.5,4.5 +2043,0,0.127397,2,2,1,2,4,,3,3,10 Mile,Rd,633409,4.77,4.897,0,3.057526,6,4.5 +3763,0,0.298135,2,2,1,2,4,,3,3,Civic Center,Dr,684205,0.015,0.313,0,7.15524,6,4.5 +4005,1,0.40715,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,2.589,2.996,0,9.771594,5,5 +4060,-1,0.789653,0,5,0,1,2,,3,3,N M 10,,710102,4.777,5.566,0,,0.58,7 +4392,-1,0.228396,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,2.821,3.05,0,5.4815,5,5 +4513,0,0.579753,1,1,1,2,5,,3,3,Northwestern,Hwy,710508,0,0.58,0,13.914077,8,4.5 +5067,1,0.30678,4,0,0,1,2,,3,3,S M 10,,710010,5.036,5.343,0,,0.58,7 +19481,1,0.246353,1,0,0,1,1,RON,3,3,N US 24/E I 696,RAMP,1903806,0,0.246,0,,1.09,4 +20885,0,0.746142,1,1,0,2,5,,3,3,Northwestern,Hwy,4400088,0,0.746,0,17.907403,8,4.5 +27738,0,0.24552,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.89247,0.15,4 +30252,0,0.552084,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.250005,0.15,4 +568,0,0.496392,1,1,0,2,4,,4,3,10 Mile,Rd,633409,4.06,4.556,0,11.913408,4.5,4.5 +4433,-1,0.563233,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,2.041,2.604,0,13.517592,5,5 +4697,1,0.546963,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,2.042,2.589,0,13.127121,5,5 +27636,0,0.493005,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.832112,0.15,4 +27639,0,0.500304,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.007306,0.15,4 +2099,0,0.192224,1,1,0,2,4,,4,3,10 Mile,Rd,633409,4.556,4.748,0,4.613373,4.5,4.5 +492,0,0.021793,2,2,1,2,4,,3,3,10 Mile,Rd,633409,4.748,4.77,0,0.523027,6,4.5 +1287,0,0.23653,1,1,1,2,4,,4,3,Franklin,Rd,638109,1.599,1.835,0,5.676714,4.5,4.5 +4408,-1,0.21727,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,2.604,2.821,0,5.214471,5,5 +831,0,0.01388,1,1,0,2,4,,3,3,Civic Center,Dr,638109,1.835,1.849,0,0.333127,6,4.5 +3764,0,0.014984,1,1,0,2,4,,3,3,Civic Center,Dr,684205,0,0.015,0,0.359617,6,4.5 +3660,0,0.110904,2,2,0,2,5,,4,3,Swanson,Rd,686906,0,0.111,0,2.661695,5.8,4.5 +4384,-1,0.099808,0,3,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.41,3.51,0,2.395397,5,5 +4687,1,0.308464,3,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,3.246,3.554,0,7.403141,5,5 +4739,1,0.232909,5,0,0,1,2,,4,3,S M 10,,710010,4.384,4.616,0,,0.8,7.5 +4751,-1,0.153879,0,4,0,1,2,,4,3,N M 10,,710102,4.434,4.588,0,,0.8,7.5 +4970,1,0.182645,1,0,0,1,2,ROF,3,3,N M 10/N US 24,RAMP,710109,0,0.183,0,,2.24,5 +5043,1,0.142626,1,0,0,1,2,RON,4,3,S US 24/N M 10,RAMP,710105,0.149,0.292,0,,1.09,4 +5079,-1,0.119556,0,4,0,1,2,,3,3,N M 10,,710102,4.588,4.708,0,,0.58,7 +19218,1,0.238059,1,0,0,1,1,RON,4,3,S US 24/W I 696,RAMP,1813005,0,0.238,0,,1.09,4 +20597,0,0.363776,1,1,1,2,5,,4,3,Northwestern,Hwy,4400087,0,0.364,0,8.730632,5.8,4.5 +27643,0,0.408057,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.793371,0.15,4 +27646,0,0.388358,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.320592,0.15,4 +1616,0,0.019319,1,1,1,2,4,,4,3,Franklin,Rd,638109,1.373,1.393,0,0.463654,4.5,4.5 +4422,-1,0.249006,0,3,0,1,1,,4,3,W I 696,,710702,7.993,8.242,0,,0.8,7.5 +19219,1,0.164142,1,0,0,1,1,RFF,4,3,N M 10/W I 696,RAMP,1813004,0,0.164,0,,0.8,7.5 +20392,0,0.351229,1,1,0,2,5,,4,3,Northwestern,Hwy,4400087,0.364,0.715,0,8.429501,5.8,4.5 +27645,0,0.198143,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.755442,0.15,4 +5080,-1,0.115512,0,4,0,1,2,,4,3,N M 10,,710102,4.319,4.434,0,,0.8,7.5 +2558,1,0.119676,1,0,0,1,2,RON,3,3,N US 24/S M 10,RAMP,663707,0,0.12,0,,1.09,4 +2847,1,0.305592,1,0,0,1,2,ROF,4,3,S M 10/S US 24,RAMP,663706,0,0.306,0,,2.24,5 +3948,1,0.202123,1,0,0,1,2,RON,3,3,N US 24/N M 10,RAMP,710108,0,0.202,0,,1.09,4 +4117,1,0.151232,4,0,0,1,2,,3,3,S M 10,,710010,4.746,4.897,0,,0.58,7 +4386,-1,0.360777,0,3,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.05,3.41,0,8.658641,5,5 +4749,-1,0.069489,0,4,0,1,2,,3,3,N M 10,,710102,4.708,4.777,0,,0.58,7 +4978,1,0.187442,1,0,0,1,2,ROF,3,3,S M 10/N US 24,RAMP,710107,0,0.187,0,,2.24,5 +5021,1,0.120906,3,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,3.125,3.246,0,2.901748,5,5 +5023,1,0.128707,3,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,2.996,3.125,0,3.088972,5,5 +4033,1,0.187378,1,0,0,1,2,RON,4,3,S US 24/S M 10,RAMP,710101,0,0.187,0,,1.09,4 +4418,1,0.129868,4,0,0,1,2,,4,3,S M 10,,710010,4.616,4.746,0,,0.8,7.5 +3531,1,0.135269,1,0,0,1,2,RON,3,3,N US 24/S M 10,RAMP,663707,0.12,0.255,0,,1.09,4 +4226,1,0.139116,4,0,0,1,2,,3,3,S M 10,,710010,4.897,5.036,0,,0.58,7 +4000,1,0.201894,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,3.554,3.756,0,4.845464,5,5 +4286,-1,0.058107,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.7,3.758,0,1.394575,5,5 +27731,0,0.336065,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.065553,0.15,4 +30251,0,0.320278,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.686664,0.15,4 +4723,1,0.149453,1,0,0,1,2,RON,4,3,S US 24/N M 10,RAMP,710105,0,0.149,0,,1.09,4 +4875,-1,0.190024,0,3,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.51,3.7,0,4.560568,5,5 +5049,1,0.201128,1,0,0,1,2,ROF,4,3,N M 10/S US 24,RAMP,710104,0,0.201,0,,2.24,5 +3945,-1,0.209613,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.767,3.976,0,5.03071,5,5 +5020,1,0.218801,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,3.756,3.974,0,5.251215,5,5 +21108,1,0.023842,1,0,0,2,3,,3,3,S Telegraph/Northwestern SD,,4410016,0,0.024,0,0.572213,5,5 +4982,-1,0.008564,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.758,3.767,0,0.205544,5,5 +1534,0,0.470276,2,2,1,2,4,,3,3,10 Mile,Rd,633409,4.897,5.367,0,11.286626,6,4.5 +21019,0,0.283102,1,1,0,2,5,,3,3,Berg,Rd,4410215,2.072,2.355,0,6.794442,8,4.5 +26176,0,0.255861,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.140664,0.15,4 +28066,0,0.326074,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.825786,0.15,4 +29678,0,0.434002,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.41604,0.15,4 +21017,0,0.267268,1,1,0,2,5,,3,3,Berg,Rd,4410215,2.565,2.832,0,6.414423,8,4.5 +27739,0,0.255987,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.143677,0.15,4 +27741,0,0.335822,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.059723,0.15,4 +21018,0,0.210678,1,1,0,2,5,,3,3,Berg,Rd,4410215,2.355,2.565,0,5.056282,8,4.5 +1062,0,0.219711,2,2,1,2,4,,3,3,10 Mile,Rd,633409,5.367,5.587,0,5.273072,6,4.5 +40451,0,0.07006,2,2,1,2,4,,3,3,Civic Center,Dr,684205,1.182,1.252,0,1.681433,6,4.5 +4462,1,0.457875,3,0,0,1,1,,3,3,E I 696,,710701,8.936,9.394,0,,0.58,7 +4765,1,0.30892,3,0,0,1,2,,3,3,S M 10,,710010,5.343,5.652,0,,0.58,7 +19480,1,0.235466,1,0,0,1,1,RFF,3,3,S M 10/E I 696,RAMP,1903808,0,0.235,0,,0.58,7 +20650,0,0.365459,1,1,0,2,5,,3,3,Northwestern,Hwy,4400088,0.746,1.111,0,8.771016,8,4.5 +27728,0,0.404677,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.712251,0.15,4 +3677,1,0.159956,1,0,0,1,2,ROF,3,3,S M 10/Lahser,RAMP,686101,0,0.16,0,,2.24,5 +4849,0,0.189469,1,1,1,2,5,,3,3,Northwestern,Hwy,710508,0.58,0.769,0,4.547257,8,4.5 +5072,-1,0.279248,0,3,0,1,2,,3,3,N M 10,,710102,5.566,5.846,0,,0.58,7 +20432,0,0.287726,1,1,0,2,5,,3,3,11 Mile,Rd,4400088,1.111,1.399,0,6.905419,8,4.5 +116,0,0.377994,1,1,0,2,4,,4,3,13 Mile,Rd,607408,9.573,9.95,0,9.071863,4.5,4.5 +40000,-1,0.025676,0,2,0,2,4,,4,3,14 Mile,Rd,5499984,0,0.026,0,0.616227,4.5,4.5 +2714,0,0.422583,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,11.83,12.253,0,10.141991,5,5 +4131,-1,0.521802,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,5.092,5.614,0,12.52324,3.7,5 +5007,1,0.200461,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,5.091,5.292,0,4.811056,3.7,5 +27604,0,0.456356,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.95254,0.15,4 +27716,0,0.519237,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.461699,0.15,4 +27718,0,0.502755,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.066125,0.15,4 +27732,0,0.572216,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.733176,0.15,4 +27733,0,0.591741,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.201782,0.15,4 +28062,0,0.535873,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.860956,0.15,4 +28063,0,0.508708,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.208981,0.15,4 +28064,0,0.536245,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.869874,0.15,4 +28379,0,0.359192,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.620611,0.15,4 +2839,0,0.375202,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,11.435,11.81,0,9.004857,3.7,5 +4737,-1,0.499615,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,4.471,4.97,0,11.990772,3.7,5 +5010,1,0.497369,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,4.47,4.967,0,11.936852,3.7,5 +3132,0,0.1734,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,11.261,11.435,0,4.161593,3.7,5 +4233,-1,0.375221,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710009,4.096,4.471,0,9.005306,3.7,5 +4676,1,0.375386,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,4.095,4.47,0,9.009255,3.7,5 +2972,0,0.020291,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,11.81,11.83,0,0.486984,5,5 +115,0,0.231928,1,1,0,2,4,,4,3,13 Mile,Rd,607408,9.95,10.182,0,5.566279,4.5,4.5 +4139,-1,0.122051,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,4.97,5.092,0,2.929221,3.7,5 +4672,1,0.124419,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,4.967,5.091,0,2.986048,3.7,5 +114,0,0.020561,2,2,0,2,4,,4,3,13 Mile,Rd,607408,10.182,10.203,0,0.493465,4.5,4.5 +39982,0,0.5339,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,2.668,3.202,0,12.813592,4.5,4.5 +4067,-1,0.490369,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,5.614,6.104,0,11.76886,3.7,5 +4667,1,0.811758,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,5.292,6.103,0,19.482194,3.7,5 +25767,0,0.495289,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.88693,0.15,4 +25768,0,0.502384,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.057218,0.15,4 +25770,0,0.584329,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.023906,0.15,4 +39983,0,0.176041,1,1,0,2,4,GRV,4,3,14 Mile,Rd,5499983,2.492,2.668,0,4.224986,6.55,4.5 +40001,1,0.028968,2,0,0,2,4,,4,3,14 Mile,Rd,5499983,0,0.029,0,0.695239,4.5,4.5 +39978,0,0.396441,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,3.294,3.691,0,9.514589,4.5,4.5 +117,0,0.237697,1,1,0,2,4,,4,3,13 Mile,Rd,607408,9.335,9.573,0,5.704722,4.5,4.5 +2629,0,0.170996,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,12.338,12.509,0,4.103894,5,5 +2902,0,0.085297,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,12.253,12.338,0,2.047128,5,5 +27734,0,0.220794,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.299044,0.15,4 +28065,0,0.392113,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.410719,0.15,4 +27721,0,0.27675,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.64201,0.15,4 +118,0,0.012667,1,1,0,2,4,,4,3,13 Mile,Rd,607408,9.322,9.335,0,0.303999,4.5,4.5 +39974,0,0.173457,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,3.709,3.882,0,4.162979,4.5,4.5 +27717,0,0.539474,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.947375,0.15,4 +331,0,0.555915,2,2,1,2,4,,3,3,10 Mile,Rd,633409,6.19,6.746,0,13.341967,6,4.5 +3675,1,0.391675,2,0,0,2,5,DV2,3,3,Central Park,Blvd,686105,0,0.392,0,9.400191,8,4.5 +3707,0,0.058056,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.744,2.802,0,1.393353,6,4.5 +3755,0,0.171233,2,2,1,2,4,,3,3,Civic Center,Dr,684205,1.953,2.124,0,4.109603,6,4.5 +4008,1,0.641362,3,0,0,1,2,,3,3,S M 10,,710010,6.311,6.952,0,,0.58,7 +4455,1,0.896223,4,0,0,1,1,,3,3,E I 696,,710701,10.395,11.291,0,,0.58,7 +4727,-1,0.857329,0,4,0,1,1,,3,3,W I 696,,710702,10.429,11.286,0,,0.58,7 +4844,1,0.423569,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,1.58,2.003,0,10.165647,8,4.5 +5070,-1,0.603881,0,3,0,1,2,,3,3,N M 10,,710102,6.33,6.934,0,,0.58,7 +19485,1,0.263232,1,0,0,1,1,ROF,3,3,E I 696/Evergreen,RAMP,1903709,0,0.263,0,,2.24,5 +19753,1,0.239196,1,0,0,1,1,RON,3,3,Evergreen/W I 696,RAMP,1903906,0,0.239,0,,1.09,4 +20302,-1,0.478296,0,2,0,2,5,DV2,3,3,Central Park,Blvd,4406962,0,0.478,0,11.479104,8,4.5 +20305,-1,0.228493,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,0,0.228,0,5.483829,8,4.5 +20482,-1,0.477741,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,1.885,2.363,0,11.465778,8,4.5 +20798,-1,0.40243,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,0.615,1.017,0,9.658323,8,4.5 +20997,1,0.463078,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,0,0.463,0,11.113868,8,4.5 +26198,0,0.609108,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.618593,0.15,4 +27737,0,0.494264,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.862341,0.15,4 +28069,0,0.548108,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.15459,0.15,4 +28076,0,0.318702,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.648849,0.15,4 +28077,0,0.560165,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.443971,0.15,4 +28079,0,0.323887,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.7733,0.15,4 +29691,0,0.385995,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.263887,0.15,4 +29693,0,0.566578,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.597868,0.15,4 +1243,0,0.30035,2,2,1,2,4,,3,3,10 Mile,Rd,633409,5.83,6.13,0,7.20839,6,4.5 +3709,0,0.448517,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.018,2.467,0,10.764408,6,4.5 +3758,0,0.29664,1,1,1,2,4,,3,3,Civic Center,Dr,684205,1.416,1.712,0,7.11937,6,4.5 +4507,1,0.42869,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,1.151,1.58,0,10.28855,8,4.5 +20108,-1,0.386139,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,0.228,0.615,0,9.267331,8,4.5 +28067,0,0.248162,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.955879,0.15,4 +28075,0,0.275466,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.611188,0.15,4 +3708,0,0.277583,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.467,2.744,0,6.661981,6,4.5 +3759,0,0.163977,1,1,1,2,4,,3,3,Civic Center,Dr,684205,1.252,1.416,0,3.935455,6,4.5 +4848,1,0.101814,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,1.049,1.151,0,2.443545,8,4.5 +3659,1,0.130728,1,0,0,1,2,RON,3,3,Lahser/S M 10,RAMP,687506,0,0.131,0,,1.09,4 +4485,1,0.101562,1,0,0,1,2,ROF,3,3,N M 10/Lahser,RAMP,710602,0,0.102,0,,2.24,5 +795,0,0.060347,2,2,1,2,4,,3,3,10 Mile,Rd,633409,6.13,6.19,0,1.448332,6,4.5 +3756,0,0.172313,2,2,1,2,4,,3,3,Civic Center,Dr,684205,1.781,1.953,0,4.135518,6,4.5 +3757,0,0.068407,2,2,1,2,4,,3,3,Civic Center,Dr,684205,1.712,1.781,0,1.641774,6,4.5 +3703,0,0.411595,2,2,1,2,4,,3,3,Lahser,Rd,685510,3.025,3.437,0,9.878285,6,4.5 +4411,-1,0.403174,0,4,0,1,1,,3,3,W I 696,,710702,10.026,10.429,0,,0.58,7 +4784,1,0.30535,4,0,0,1,1,,3,3,E I 696,,710701,10.09,10.395,0,,0.58,7 +20718,0,0.155325,2,2,0,2,5,,3,3,11 Mile,Rd,4400088,1.73,1.885,0,3.727799,8,4.5 +27730,0,0.559813,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.435517,0.15,4 +28074,0,0.450464,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.811147,0.15,4 +28080,0,0.679755,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,16.314126,0.15,4 +4456,1,0.248925,4,0,0,1,1,,3,3,E I 696,,710701,9.841,10.09,0,,0.58,7 +19478,1,0.199216,1,0,0,1,1,RON,3,3,N Lahser/E I 696,RAMP,1903810,0,0.199,0,,1.09,4 +19504,1,0.253324,2,0,0,1,1,RFF,3,3,W I 696/N M 10,RAMP,1903904,0,0.253,0,,0.58,7 +19896,0,0.178554,2,2,0,2,5,,3,3,11 Mile,Rd,4400088,1.552,1.73,0,4.285298,8,4.5 +3704,0,0.135329,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.89,3.025,0,3.247888,6,4.5 +19479,1,0.223587,1,0,0,1,1,RON,3,3,S Lahser/E I 696,RAMP,1903809,0,0.224,0,,1.09,4 +3706,0,0.074045,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.802,2.876,0,1.777069,6,4.5 +3671,1,0.033565,1,0,0,2,5,,3,3,Coral Gables,,686207,0,0.034,0,0.805561,8,4.5 +3705,0,0.013322,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.876,2.89,0,0.319722,6,4.5 +3702,0,0.263041,2,2,1,2,4,,3,3,Lahser,Rd,685510,3.437,3.699,0,6.312993,6,4.5 +28078,0,0.293632,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.047157,0.15,4 +787,0,0.48647,2,2,1,2,4,,3,3,10 Mile,Rd,633409,6.864,7.35,0,11.67528,6,4.5 +2916,0,0.065036,3,3,1,2,4,,3,3,Evergreen,Rd,666003,2.013,2.078,0,1.560857,6,4.5 +3635,1,0.089388,1,0,0,1,2,ROF,3,3,S M 10/10 Mile,RAMP,688506,0,0.089,0,,2.24,5 +4819,1,0.080493,1,0,0,1,2,RON,3,3,10 Mile/N M 10,RAMP,710601,0,0.081,0,,1.09,4 +4837,1,0.368326,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.411,2.779,0,8.839828,8,4.5 +20849,-1,0.355829,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.353,1.709,0,8.539899,8,4.5 +26222,0,0.44672,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.72129,0.15,4 +27623,0,0.421869,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.124853,0.15,4 +28072,0,0.169801,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.075228,0.15,4 +2647,1,0.06991,3,0,0,2,4,,3,3,Evergreen,Rd,666003,1.885,1.955,0,1.677847,6,4.5 +4501,1,0.16238,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.233,2.396,0,3.897117,8,4.5 +4842,1,0.101172,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.132,2.233,0,2.428136,8,4.5 +20356,-1,0.18401,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.087,1.271,0,4.41623,8,4.5 +4502,1,0.129313,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.003,2.132,0,3.103523,8,4.5 +20550,-1,0.070234,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.017,1.087,0,1.685627,8,4.5 +2917,0,0.119746,1,1,1,2,4,,3,3,Evergreen,Rd,666003,1.695,1.815,0,2.873906,6,4.5 +1229,0,0.053083,2,2,1,2,4,,3,3,10 Mile,Rd,633409,6.811,6.864,0,1.273991,6,4.5 +20154,-1,0.067268,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.271,1.338,0,1.614444,8,4.5 +1715,0,0.064751,2,2,1,2,4,,3,3,10 Mile,Rd,633409,6.746,6.811,0,1.554023,6,4.5 +3224,1,0.058237,3,0,0,2,4,,3,3,Evergreen,Rd,666003,1.955,2.013,0,1.397695,6,4.5 +27416,0,0.191842,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.604203,0.15,4 +28070,0,0.196694,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.720646,0.15,4 +3754,0,0.010213,2,2,1,2,4,,3,3,Civic Center,Dr,684205,2.124,2.134,0,0.245119,6,4.5 +20609,-1,0.093416,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.709,1.802,0,2.24199,8,4.5 +2912,0,0.459708,2,2,0,2,4,,3,3,Evergreen,Rd,666003,3.03,3.49,0,11.032996,6,4.5 +20786,-1,0.150339,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,2.58,2.731,0,3.608146,8,4.5 +20994,1,0.120693,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,0.703,0.824,0,2.896643,8,4.5 +27611,0,0.451973,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.847353,0.15,4 +29884,0,0.492805,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.827329,0.15,4 +20096,-1,0.178388,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,2.402,2.58,0,4.281317,8,4.5 +20995,1,0.177388,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,0.526,0.703,0,4.257317,8,4.5 +3673,1,0.087211,2,0,0,2,5,DV2,3,3,Central Park,Blvd,686105,0.392,0.479,0,2.09306,8,4.5 +20293,-1,0.039006,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,2.363,2.402,0,0.936136,8,4.5 +20996,1,0.063124,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,0.463,0.526,0,1.514985,8,4.5 +40291,-1,0.241254,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.033,1.274,0,5.790101,5,5 +3672,0,0.045036,1,1,0,2,5,,3,3,Central Park,Blvd,686105,0.479,0.524,0,1.080874,8,4.5 +3221,0,0.042491,2,2,0,2,4,,3,3,Evergreen,Rd,666003,2.988,3.03,0,1.019789,6,4.5 +19484,1,0.272339,1,0,0,1,1,RON,3,3,Evergreen/E I 696,RAMP,1903710,0,0.272,0,,1.09,4 +19749,1,0.252753,1,0,0,1,1,ROF,3,3,W I 696/Evergreen,RAMP,1903907,0,0.253,0,,2.24,5 +20538,-1,0.342494,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,2.731,3.073,0,8.219849,8,4.5 +20993,1,0.371251,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,0.824,1.195,0,8.910021,8,4.5 +122,0,0.465188,1,1,0,2,4,,4,3,13 Mile,Rd,607408,7.988,8.453,0,11.164503,4.5,4.5 +39973,0,0.48851,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,3.882,4.371,0,11.724249,4.5,4.5 +2565,0,0.335475,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,13.695,14.03,0,8.051409,5,5 +3219,0,0.311137,1,1,0,2,4,,3,3,Evergreen,Rd,666003,4.721,5.032,0,7.467286,6,4.5 +3696,0,0.431818,1,1,0,2,4,,4,3,Lahser,Rd,685510,5.04,5.472,0,10.36363,4.5,4.5 +27723,0,0.566228,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.58948,0.15,4 +27726,0,0.501398,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.033558,0.15,4 +28082,0,0.525461,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.611056,0.15,4 +28083,0,0.503424,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.082173,0.15,4 +28086,0,0.602449,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.458779,0.15,4 +120,0,0.457018,1,1,0,2,4,,4,3,13 Mile,Rd,607408,8.543,9,0,10.968437,4.5,4.5 +3226,0,0.506364,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,13.005,13.511,0,12.152744,5,5 +3698,0,0.229099,1,1,0,2,4,,4,3,Lahser,Rd,685510,4.454,4.683,0,5.498385,4.5,4.5 +27720,0,0.526812,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.64349,0.15,4 +28103,0,0.509889,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.237342,0.15,4 +3700,0,0.28251,1,1,0,2,4,,4,3,Lahser,Rd,685510,4.026,4.308,0,6.780242,4.5,4.5 +3699,0,0.145507,1,1,0,2,4,,4,3,Lahser,Rd,685510,4.308,4.454,0,3.492173,4.5,4.5 +3697,0,0.357691,1,1,0,2,4,,4,3,Lahser,Rd,685510,4.683,5.04,0,8.584581,4.5,4.5 +2851,0,0.184091,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,13.511,13.695,0,4.418185,5,5 +28084,0,0.262724,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.30537,0.15,4 +121,0,0.090845,1,1,0,2,4,,4,3,13 Mile,Rd,607408,8.453,8.543,0,2.18028,4.5,4.5 +28081,0,0.245838,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.900101,0.15,4 +27724,0,0.531773,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.76256,0.15,4 +28374,0,0.501975,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.047399,0.15,4 +3695,0,0.027689,1,1,0,2,4,,4,3,Lahser,Rd,685510,5.472,5.5,0,0.664524,4.5,4.5 +39971,0,0.35895,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,4.762,5.12,0,8.614793,4.5,4.5 +2911,0,0.263286,1,1,0,2,4,,3,3,Evergreen,Rd,666003,4.197,4.461,0,6.318865,6,4.5 +3240,0,0.543243,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,14.03,14.573,0,13.037843,5,5 +27615,0,0.229931,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.518355,0.15,4 +28087,0,0.594697,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.272717,0.15,4 +3220,0,0.177388,1,1,0,2,4,,3,3,Evergreen,Rd,666003,4.02,4.197,0,4.257312,6,4.5 +2639,0,0.260226,1,1,0,2,4,,3,3,Evergreen,Rd,666003,4.461,4.721,0,6.245423,6,4.5 +123,0,0.458389,2,2,0,2,4,,3,3,13 Mile,Rd,607408,7.529,7.988,0,11.001326,6,4.5 +2638,0,0.352348,2,2,1,2,4,,4,3,Evergreen,Rd,666003,5.445,5.797,0,8.456351,4.5,4.5 +27607,0,0.498743,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.969837,0.15,4 +27725,0,0.486717,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.681202,0.15,4 +2910,0,0.41336,2,2,1,2,4,,4,3,Evergreen,Rd,666003,5.032,5.445,0,9.920643,4.5,4.5 +2909,0,0.182297,1,1,0,2,4,,4,3,Evergreen,Rd,666003,5.873,6.055,0,4.375138,4.5,4.5 +3218,0,0.075701,1,1,0,2,4,,4,3,Evergreen,Rd,666003,5.797,5.873,0,1.816814,4.5,4.5 +27609,0,0.504897,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.117521,0.15,4 +125,0,0.082917,2,2,0,2,4,,3,3,13 Mile,Rd,607408,7.446,7.529,0,1.990002,6,4.5 +2094,0,0.156116,1,1,0,2,5,,4,3,Saxon,Dr,625804,7.487,7.643,0,3.746786,5.8,4.5 +1073,0,0.718901,1,1,0,2,3,,4,3,Long Lake,Rd,641102,4.931,5.649,0,17.253619,3.7,5 +1112,0,1.094522,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,2.98,4.074,0,26.268534,5.8,4.5 +1797,0,0.925323,1,1,0,2,4,,4,3,Quarton,Rd,617206,1.206,2.131,0,22.207752,4.5,4.5 +1899,0,0.231438,1,1,0,2,5,,4,3,Hickory Grove,,616301,0.702,0.933,0,5.55451,5.8,4.5 +3686,0,0.285954,1,1,0,2,4,,4,3,Lahser,Rd,685510,8.273,8.559,0,6.862893,4.5,4.5 +3803,0,0.475819,2,2,1,2,3,,4,3,Maple,Rd,683906,11.237,11.713,0,11.41966,3.7,5 +3966,1,0.390941,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,8.263,8.653,0,9.382589,3.7,5 +3967,-1,0.353249,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,8.302,8.655,0,8.477968,3.7,5 +25452,0,0.625481,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.011549,0.15,4 +25454,0,0.402267,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.654415,0.15,4 +25666,0,0.925932,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.222358,0.15,4 +25667,0,0.303561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.285468,0.15,4 +25754,0,0.280981,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.743548,0.15,4 +27744,0,0.396672,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.520129,0.15,4 +27751,0,0.954797,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.915123,0.15,4 +27759,0,0.61866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.847831,0.15,4 +29737,0,0.434154,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.419705,0.15,4 +1935,0,0.523884,1,1,0,2,4,,4,3,Quarton,Rd,617206,0,0.524,0,12.573227,4.5,4.5 +3691,0,0.433074,1,1,0,2,4,,4,3,Lahser,Rd,685510,7.059,7.492,0,10.393781,4.5,4.5 +3806,0,0.166,2,2,1,2,3,,4,3,Maple,Rd,683906,10.274,10.44,0,3.984001,3.7,5 +3974,1,0.267038,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,7.198,7.465,0,6.408912,3.7,5 +4021,-1,0.48747,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710009,7.113,7.601,0,11.699285,3.7,5 +25450,0,0.584721,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.033308,0.15,4 +25451,0,0.55774,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.385761,0.15,4 +25772,0,0.549759,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.19422,0.15,4 +25773,0,0.523962,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.575099,0.15,4 +27745,0,0.516117,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.386812,0.15,4 +27747,0,0.50423,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.101522,0.15,4 +27757,0,0.41651,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.996238,0.15,4 +4035,-1,0.591431,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710009,6.522,7.113,0,14.19434,3.7,5 +5004,1,0.552641,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,6.56,7.112,0,13.263389,3.7,5 +25766,0,0.464392,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.145419,0.15,4 +27967,0,0.48066,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.535836,0.15,4 +3808,0,0.101824,2,2,1,2,3,,4,3,Maple,Rd,683906,10.164,10.265,0,2.443787,3.7,5 +5002,1,0.078659,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,7.112,7.191,0,1.887807,3.7,5 +19513,1,0.175342,1,0,0,1,3,RSF,4,3,W Maple/N US 24,,1890601,0,0.175,0,,3.7,5 +19514,1,0.164764,1,0,0,1,3,RSF,4,3,N US 24/W Maple,,1890510,0,0.165,0,,3.7,5 +3809,0,0.021555,2,2,0,2,3,,4,3,Maple,Rd,683906,10.142,10.164,0,0.517312,3.7,5 +4661,1,0.006972,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,7.191,7.198,0,0.167325,3.7,5 +3807,0,0.009004,2,2,1,2,3,,4,3,Maple,Rd,683906,10.265,10.274,0,0.216105,3.7,5 +593,0,0.497104,1,1,0,2,4,,4,3,Quarton,Rd,618807,1.361,1.858,0,11.930489,4.5,4.5 +3975,-1,0.252296,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,7.827,8.079,0,6.055105,3.7,5 +4989,1,0.244192,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,7.826,8.07,0,5.860613,3.7,5 +25758,0,0.469131,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.25915,0.15,4 +27114,0,0.4327,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.384811,0.15,4 +27390,0,0.466859,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.204608,0.15,4 +27391,0,0.451457,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.834972,0.15,4 +27714,0,0.488915,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.733952,0.15,4 +25757,0,0.308592,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.406201,0.15,4 +3991,-1,0.226198,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,7.601,7.827,0,5.428745,3.7,5 +4997,1,0.361562,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,7.465,7.826,0,8.677491,3.7,5 +606,1,0.01796,1,0,0,2,4,,4,3,Meadow,Way,620005,0.175,0.193,0,0.431036,4.5,4.5 +3971,-1,0.223199,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,8.079,8.302,0,5.356773,3.7,5 +4645,1,0.192494,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,8.07,8.263,0,4.619848,3.7,5 +808,-1,0.021753,0,1,0,2,3,,4,3,Quarton,Rd,618807,1.858,1.88,0,0.522081,3.7,5 +3692,0,0.566385,1,1,0,2,4,,4,3,Lahser,Rd,685510,6.493,7.059,0,13.593246,4.5,4.5 +3804,0,0.683929,2,2,0,2,3,,4,3,Maple,Rd,683906,10.554,11.237,0,16.414288,3.7,5 +25765,0,0.52527,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.606478,0.15,4 +25771,0,0.55633,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.351909,0.15,4 +3805,0,0.113381,2,2,1,2,3,,4,3,Maple,Rd,683906,10.44,10.554,0,2.721133,3.7,5 +1082,0,0.39401,1,1,0,2,4,,4,3,Quarton,Rd,617206,0.812,1.206,0,9.456249,4.5,4.5 +1560,0,0.288776,1,1,0,2,4,,4,3,Quarton,Rd,617206,0.524,0.812,0,6.930634,4.5,4.5 +3689,0,0.499065,1,1,0,2,4,,4,3,Lahser,Rd,685510,7.515,8.014,0,11.977554,4.5,4.5 +25759,0,0.515727,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.377452,0.15,4 +27476,0,0.534169,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.820056,0.15,4 +27746,0,0.459251,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.022019,0.15,4 +27756,0,0.290047,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.961128,0.15,4 +3690,0,0.022441,1,1,0,2,4,,4,3,Lahser,Rd,685510,7.492,7.515,0,0.538591,4.5,4.5 +3688,0,0.178695,1,1,0,2,4,,4,3,Lahser,Rd,685510,8.014,8.192,0,4.288689,4.5,4.5 +3687,0,0.08123,1,1,0,2,4,,4,3,Lahser,Rd,685510,8.192,8.273,0,1.94953,4.5,4.5 +520,0,1.021346,1,1,0,2,4,,4,3,Franklin,Rd,616801,0,1.021,0,24.512295,4.5,4.5 +926,0,0.308163,1,1,0,2,3,,4,3,Long Lake,Rd,641102,4.14,4.448,0,7.39591,3.7,5 +1213,0,0.505861,1,1,0,2,5,,4,3,Hickory Grove,,616301,1.239,1.744,0,12.140652,5.8,4.5 +1612,0,0.3135,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,2.094,2.407,0,7.524005,5.8,4.5 +3682,0,0.396538,1,1,0,2,4,,4,3,Lahser,Rd,685510,9.57,9.967,0,9.5169,4.5,4.5 +3928,-1,0.671229,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,9.686,10.357,0,16.109506,3.7,5 +4634,1,0.662014,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,9.681,10.343,0,15.888339,3.7,5 +4985,1,0.544697,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,8.653,9.198,0,13.072722,3.7,5 +25199,0,0.389454,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.346896,0.15,4 +27580,0,0.406108,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.746593,0.15,4 +27627,0,0.793052,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.033254,0.15,4 +27752,0,0.410021,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.840508,0.15,4 +27760,0,0.374539,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.98894,0.15,4 +332,0,0.206951,1,1,0,2,3,,4,3,Long Lake,Rd,641102,3.634,3.841,0,4.966816,3.7,5 +1619,0,0.483471,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,1.591,2.074,0,11.603311,5.8,4.5 +4856,-1,0.610529,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,8.655,9.266,0,14.652685,3.7,5 +27624,0,0.480035,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.520845,0.15,4 +27694,0,0.574804,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.795293,0.15,4 +27697,0,0.595229,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.285507,0.15,4 +1149,0,0.133432,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,1.457,1.591,0,3.20238,5.8,4.5 +27626,0,0.475865,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.42076,0.15,4 +1140,0,0.019442,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,2.074,2.094,0,0.466614,5.8,4.5 +1888,0,0.27622,2,2,1,2,3,,4,3,Long Lake,Rd,641102,3.841,4.117,0,6.629286,3.7,5 +4482,-1,0.420624,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,9.266,9.686,0,10.094964,3.7,5 +4981,1,0.483008,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,9.198,9.681,0,11.592189,3.7,5 +1379,0,0.02301,2,2,1,2,3,,4,3,Long Lake,Rd,641102,4.117,4.14,0,0.552251,3.7,5 +1501,0,0.254981,1,1,0,2,5,,4,3,Hickory Grove,,616301,1.764,2.019,0,6.119542,5.8,4.5 +3915,-1,0.337409,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,10.357,10.694,0,8.097827,3.7,5 +3961,1,0.34697,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,10.343,10.689,0,8.327292,3.7,5 +1489,0,0.019403,1,1,0,2,5,,4,3,Hickory Grove,,616301,1.744,1.764,0,0.465677,5.8,4.5 +1132,0,0.232597,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,2.407,2.64,0,5.582327,5.8,4.5 +1549,0,0.415192,1,1,0,2,3,,4,3,Long Lake,Rd,641102,4.516,4.931,0,9.964599,3.7,5 +3684,0,0.494261,1,1,0,2,4,,4,3,Lahser,Rd,685510,8.692,9.186,0,11.862267,4.5,4.5 +27754,0,0.502068,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.04964,0.15,4 +27761,0,0.418662,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.047883,0.15,4 +25668,0,0.50574,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.137754,0.15,4 +2056,0,0.067277,1,1,0,2,3,,4,3,Long Lake,Rd,641102,4.448,4.516,0,1.614641,3.7,5 +1593,0,0.340152,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,2.64,2.98,0,8.163659,5.8,4.5 +3685,0,0.132363,1,1,0,2,4,,4,3,Lahser,Rd,685510,8.559,8.692,0,3.176701,4.5,4.5 +3683,0,0.384769,1,1,0,2,4,,4,3,Lahser,Rd,685510,9.186,9.57,0,9.234449,4.5,4.5 +1266,0,0.305267,1,1,0,2,5,,4,3,Hickory Grove,,616301,0.933,1.239,0,7.326416,5.8,4.5 +3680,0,0.475876,1,1,0,2,4,,4,3,Lahser,Rd,685510,10.101,10.577,0,11.421021,4.5,4.5 +27581,0,0.578206,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.87695,0.15,4 +27579,0,0.253198,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.076743,0.15,4 +3681,0,0.134669,1,1,0,2,4,,4,3,Lahser,Rd,685510,9.967,10.101,0,3.232048,4.5,4.5 +3802,0,0.45262,2,2,1,2,3,,4,3,Maple,Rd,683906,11.713,12.166,0,10.862879,3.7,5 +27755,0,0.565199,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.564765,0.15,4 +27758,0,0.562498,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.499944,0.15,4 +29736,0,0.516347,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.392329,0.15,4 +25775,0,0.479126,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.499031,0.15,4 +521,0,0.375025,1,1,0,2,5,,4,3,Lincoln,,611106,0.268,0.643,0,9.000601,5.8,4.5 +1399,0,0.561405,2,2,0,2,4,,4,3,Cranbrook,Rd,618210,0.471,1.033,0,13.473714,4.5,4.5 +3801,0,0.503798,1,1,1,2,3,,4,3,Maple,Rd,683906,12.166,12.669,0,12.091141,3.7,5 +27908,0,0.547958,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.15099,0.15,4 +27918,0,0.244552,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.869256,0.15,4 +398,0,0.268423,1,1,0,2,5,,4,3,Lincoln,,611106,0,0.268,0,6.442142,5.8,4.5 +933,0,0.031079,2,2,0,2,4,,4,3,Cranbrook,Rd,618210,0.44,0.471,0,0.745889,4.5,4.5 +27603,0,0.134871,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.236911,0.15,4 +3800,0,0.066779,1,1,1,2,3,,3,3,Maple,Rd,683906,12.669,12.736,0,1.602688,5,5 +838,0,0.30109,1,1,0,2,4,,4,3,Quarton,Rd,617206,2.39,2.691,0,7.226164,4.5,4.5 +25670,0,0.335502,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.052044,0.15,4 +1301,0,0.259084,1,1,0,2,4,,4,3,Quarton,Rd,617206,2.131,2.39,0,6.218021,4.5,4.5 +25669,0,0.347541,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.340981,0.15,4 +286,1,0.574408,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,1.698,2.272,0,13.785785,3.7,5 +1311,1,0.749416,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,0.948,1.698,0,17.985977,3.7,5 +1522,-1,0.558753,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,1.696,2.255,0,13.410079,3.7,5 +1641,-1,0.229794,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,1.466,1.696,0,5.51506,3.7,5 +2150,0,0.249028,1,1,0,2,3,,4,3,Long Lake,Rd,641102,5.723,5.972,0,5.976673,3.7,5 +25671,0,0.311135,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.467229,0.15,4 +27593,0,0.513786,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.330854,0.15,4 +27594,0,0.640172,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.364118,0.15,4 +27595,0,0.497824,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.947772,0.15,4 +27596,0,0.463545,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.125077,0.15,4 +27748,0,0.559117,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.4188,0.15,4 +759,0,0.289715,1,1,0,2,5,,4,3,Hickory Grove,,616301,0.197,0.487,0,6.953148,5.8,4.5 +1526,-1,0.191648,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,0.639,0.831,0,4.599558,3.7,5 +1563,0,0.456882,1,1,0,2,4,,4,3,Opdyke,Rd,616205,0,0.457,0,10.965173,4.5,4.5 +1791,1,0.310502,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,0.638,0.948,0,7.452046,3.7,5 +2144,-1,0.635728,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,0.831,1.466,0,15.257469,3.7,5 +25455,0,0.585661,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.055854,0.15,4 +27640,0,0.361187,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.668493,0.15,4 +27749,0,0.423828,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.171861,0.15,4 +27750,0,0.536082,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.865974,0.15,4 +2019,0,0.196393,1,1,0,2,5,,4,3,Hickory Grove,,616301,0.506,0.702,0,4.713432,5.8,4.5 +483,0,0.019073,1,1,0,2,5,,4,3,Hickory Grove,,616301,0.487,0.506,0,0.457756,5.8,4.5 +622,0,0.073354,1,1,0,2,3,,4,3,Long Lake,Rd,641102,5.649,5.723,0,1.760505,3.7,5 +1558,0,0.21457,1,1,0,2,4,,4,3,Opdyke,Rd,616205,0.457,0.671,0,5.149678,4.5,4.5 +1613,0,0.197115,1,1,0,2,5,,4,3,Hickory Grove,,616301,0,0.197,0,4.730769,5.8,4.5 +25778,0,0.163977,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.935453,0.15,4 +27765,0,0.222006,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.328135,0.15,4 +27764,0,0.17286,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.148631,0.15,4 +1700,1,0.282052,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,2.272,2.554,0,6.769243,3.7,5 +29047,0,0.300614,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.214733,0.15,4 +25350,0,0.282656,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.783755,0.15,4 +1050,-1,0.281142,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,2.255,2.535,0,6.747397,3.7,5 +496,0,0.270343,1,1,0,2,3,,4,3,Long Lake,Rd,641102,6.14,6.41,0,6.488237,3.7,5 +1538,0,0.483695,1,1,0,2,3,,4,3,Long Lake,Rd,641102,6.517,7,0,11.608687,3.7,5 +2067,0,0.55326,1,1,0,2,5,,4,3,Kensington,Rd,616302,0.472,1.025,0,13.278229,5.8,4.5 +27598,0,0.333779,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.010705,0.15,4 +27762,0,0.276451,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.634835,0.15,4 +960,0,0.14936,1,1,0,2,3,,4,3,Long Lake,Rd,641102,5.99,6.14,0,3.584649,3.7,5 +27763,0,0.353525,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.484599,0.15,4 +1419,0,0.018691,2,2,0,2,3,,4,3,Long Lake,Rd,641102,5.972,5.99,0,0.448583,3.7,5 +2048,0,0.106978,1,1,0,2,3,,4,3,Long Lake,Rd,641102,6.41,6.517,0,2.56746,3.7,5 +990,1,0.20706,3,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.102,0.309,0,4.96945,6,5 +40340,-1,0.036459,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0.208,0.244,0,0.875017,3.7,5 +1348,1,0.167602,4,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.349,0.516,0,4.022449,6,5 +1349,0,0.380019,1,1,0,2,5,,3,3,Bagley,,641410,0.838,1.218,0,9.120454,8,4.5 +1438,0,0.203527,2,2,1,2,3,,3,3,Orchard Lake,Rd,641405,0.099,0.302,0,4.884658,5,5 +40326,1,0.279674,1,0,0,1,1,FCD,4,3,N I 75 CD,,5500964,0.45,0.729,0,,0.8,7.5 +1485,-1,0.831386,0,3,0,1,1,,4,3,S I 75,,646106,24.241,25.073,0,,0.8,7.5 +1686,0,0.435903,2,2,1,2,4,,4,3,Opdyke,Rd,616205,5.225,5.66,0,10.461672,4.5,4.5 +1900,0,0.395972,1,1,0,2,4,,4,3,Square Lake,Rd,640407,2.059,2.455,0,9.50333,4.5,4.5 +2269,1,0.554469,3,0,0,1,1,,4,3,N I 75,,647308,24.45,25.005,0,,0.8,7.5 +37384,0,1.134606,1,1,0,2,4,,5,8,Winans Lake,Rd,940105,2.092,3.226,0,27.23055,3,4 +2687,0,0.27425,2,2,1,2,3,,3,3,Baldwin,Ave,672209,1.105,1.379,0,6.581996,5,5 +2777,0,0.182194,2,2,1,2,3,,3,3,Joslyn,Ave,674110,0.704,0.887,0,4.372661,5,5 +2778,0,0.506505,2,2,1,2,3,,3,3,Walton,Blvd,672601,0,0.506,0,12.156132,5,5 +36145,1,0.235887,1,0,0,1,1,FCD,4,3,N I 75 CD,,5500964,0,0.236,0,,0.8,7.5 +2881,1,0.129408,2,0,0,2,3,,3,3,Cesar E Chavez,Ave,672206,2.309,2.439,0,3.105781,5,5 +2981,0,0.235762,2,1,0,2,5,,3,3,Pike,,676308,0.13,0.366,0,5.658298,8,4.5 +3044,0,0.214474,2,2,0,2,3,,3,3,Montcalm,,673306,0,0.214,0,5.147365,5,5 +3073,0,0.225926,2,1,1,2,3,,3,3,Cesar E Chavez,Ave,672206,0.178,0.403,0,5.422226,5,5 +3141,0,0.090015,1,1,1,2,5,,3,3,Columbia,,673503,0.172,0.262,0,2.160358,8,4.5 +3172,0,0.586778,1,1,1,2,3,,4,3,Perry,,674007,2.353,2.94,0,14.082666,3.7,5 +3265,1,0.115611,2,0,0,2,5,,2,3,Lafayette,,676403,0,0.116,0,2.774659,8.5,4.5 +3351,0,0.162584,2,2,0,2,3,,3,3,Huron,St,648906,20.633,20.796,0,3.902007,5,5 +3432,0,0.81122,1,1,0,2,4,,4,3,Golf,Dr,673008,0,0.811,0,19.469281,4.5,4.5 +3504,0,0.625287,1,1,1,2,4,,4,3,Brown,Rd,4416311,0.262,0.887,0,15.006881,4.5,4.5 +3578,0,0.513918,1,1,1,2,4,,3,3,Kennett,Rd,673310,0.432,0.945,0,12.334037,6,4.5 +4236,0,0.664835,1,1,0,2,5,,4,3,Watkins Lake,Rd,697604,0,0.665,0,15.956039,5.8,4.5 +4552,0,0.223164,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,1.562,1.785,0,5.355942,4.5,4.5 +4567,-1,0.797612,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710110,4.727,5.525,0,19.142684,3.7,5 +4968,0,0.609846,2,2,0,2,3,,4,3,Telegraph,Rd,710110,0.009,0.619,0,14.636304,3.7,5 +20789,-1,0.143556,0,2,0,2,3,,4,3,Dixie,Hwy,4400845,0,0.144,0,3.445342,3.7,5 +20942,1,0.636594,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,1.549,2.186,0,15.278265,3.7,5 +21491,0,0.684295,2,1,0,2,5,,4,3,Great Lakes Crossings,Rd,4413601,0.517,1.201,0,16.42308,5.8,4.5 +24972,0,0.630705,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.136931,0.15,4 +25247,0,0.217478,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.219476,0.15,4 +25250,0,0.511548,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.277144,0.15,4 +27335,0,0.406088,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.746123,0.15,4 +27768,0,0.400499,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.611975,0.15,4 +27769,0,0.535157,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.843769,0.15,4 +27791,0,0.447041,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.728977,0.15,4 +27792,0,0.506891,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.165374,0.15,4 +27795,0,0.507103,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.170463,0.15,4 +27807,0,0.372896,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.949494,0.15,4 +27808,0,0.482984,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.591608,0.15,4 +27810,0,0.405611,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.734674,0.15,4 +27814,0,0.164285,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.942837,0.15,4 +27827,0,0.364418,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.746021,0.15,4 +27832,0,0.280165,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.723952,0.15,4 +27833,0,0.389856,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.356556,0.15,4 +27838,0,0.621547,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.917116,0.15,4 +27864,0,0.207274,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.974577,0.15,4 +27910,0,0.618873,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.852951,0.15,4 +27955,0,0.879606,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.110551,0.15,4 +1095,0,0.348274,1,1,0,2,4,,4,3,Voorheis,Rd,641608,0.113,0.462,0,8.358587,4.5,4.5 +1260,0,0.343468,2,2,0,2,3,,4,3,Elizabeth Lake,Rd,630906,6.032,6.375,0,8.243237,3.7,5 +1377,1,0.109657,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.336,0.446,0,2.631757,5,5 +1742,0,0.549863,1,1,0,2,4,,4,3,Square Lake,Rd,640407,0.471,1.02,0,13.196723,4.5,4.5 +1836,0,0.616608,2,2,0,2,3,,4,3,Orchard Lake,Rd,634003,10.939,11.556,0,14.798581,3.7,5 +1909,0,0.64276,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,11.262,11.905,0,15.426242,4.5,4.5 +2600,0,0.266351,1,1,0,2,5,,4,3,County Center,Dr,668206,0.634,0.9,0,6.392417,5.8,4.5 +3381,0,0.34433,2,2,0,2,3,,4,3,Huron,St,648906,18.915,19.26,0,8.263924,3.7,5 +3934,0,0.609503,2,2,0,2,3,,4,3,Telegraph,Rd,710110,0.663,1.273,0,14.62808,3.7,5 +4014,0,0.335299,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,9.995,10.33,0,8.047181,4.5,4.5 +4586,0,0.125165,3,3,0,2,3,,3,3,Telegraph,Rd,710110,2.654,2.779,0,3.00397,5,5 +20201,0,0.643235,1,1,0,2,3,,4,3,Cass Lake,Rd,4407378,1.901,2.544,0,15.437644,3.7,5 +21083,0,0.425244,1,1,0,2,4,,4,3,Voorheis,Rd,4410050,0.61,1.035,0,10.205868,4.5,4.5 +27777,0,0.140514,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.372346,0.15,4 +27779,0,0.308626,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.407025,0.15,4 +27826,0,0.219161,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.259854,0.15,4 +27839,0,0.553593,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.28623,0.15,4 +27850,0,0.209959,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.039013,0.15,4 +27854,0,0.540966,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.983189,0.15,4 +27868,0,0.467623,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.222963,0.15,4 +29762,0,0.458246,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.997914,0.15,4 +785,0,0.602315,2,2,0,2,3,,4,3,Orchard Lake,Rd,634003,10.092,10.694,0,14.45556,3.7,5 +20153,0,0.454134,1,1,1,2,3,,4,3,Cass Lake,Rd,4407378,0.236,0.69,0,10.899213,3.7,5 +20848,0,0.226317,1,1,1,2,3,,4,3,Cass Lake,Rd,4407378,0.69,0.916,0,5.43161,3.7,5 +25134,0,0.873675,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.9682,0.15,4 +25180,0,0.412611,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.902666,0.15,4 +20608,0,0.625712,1,1,1,2,3,,4,3,Cass Lake,Rd,4407378,0.916,1.541,0,15.017092,3.7,5 +20403,0,0.359675,1,1,0,2,3,,4,3,Cass Lake,Rd,4407378,1.541,1.901,0,8.632205,3.7,5 +323,0,0.245155,2,2,0,2,3,,4,3,Orchard Lake,Rd,634003,10.694,10.939,0,5.883724,3.7,5 +20355,0,0.235756,1,1,1,2,3,,4,3,Cass Lake,Rd,4407378,0,0.236,0,5.658139,3.7,5 +27860,0,0.257823,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.18776,0.15,4 +25179,0,0.031893,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,0.76543,0.15,4 +27853,0,0.612941,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.71059,0.15,4 +1573,0,0.113447,1,1,0,2,4,,4,3,Voorheis,Rd,641608,0,0.113,0,2.722727,4.5,4.5 +358,0,0.163685,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,5.369,5.533,0,3.928441,3.7,5 +3409,0,0.355927,2,2,1,2,3,,4,3,Huron,St,648906,18.184,18.54,0,8.542259,3.7,5 +4027,0,0.332594,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,9.363,9.695,0,7.98226,4.5,4.5 +4182,0,0.424789,1,1,0,2,4,,4,3,Watkins Lake,Rd,698005,0.259,0.684,0,10.194948,4.5,4.5 +4579,0,0.721128,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,0.284,1.005,0,17.307073,4.5,4.5 +20661,0,0.423699,1,1,0,2,4,,4,3,Cass Lake,Rd,4407378,2.72,3.143,0,10.168783,4.5,4.5 +27794,0,0.622301,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.935218,0.15,4 +27852,0,0.568596,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.646297,0.15,4 +27855,0,0.395221,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.4853,0.15,4 +27858,0,0.499097,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.978321,0.15,4 +28481,0,0.477422,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.458137,0.15,4 +1148,0,0.172698,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,4.869,5.042,0,4.144756,3.7,5 +3414,0,0.358444,2,2,1,2,3,,4,3,Highland,Rd,648906,17.826,18.184,0,8.602651,3.7,5 +3440,0,0.20997,2,2,1,2,3,,4,3,Highland,Rd,648906,17.578,17.788,0,5.039284,3.7,5 +20896,0,0.175543,2,2,1,2,3,,4,3,Cass Lake,Rd,4407378,2.544,2.72,0,4.213031,3.7,5 +824,0,0.32734,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,5.042,5.369,0,7.856151,3.7,5 +4596,0,0.154494,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,0.13,0.284,0,3.707864,4.5,4.5 +25176,0,0.400695,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.616681,0.15,4 +27869,0,0.325294,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.807067,0.15,4 +3418,0,0.038323,2,2,1,2,3,,4,3,Highland,Rd,648906,17.788,17.826,0,0.919749,3.7,5 +4604,0,0.129893,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,0,0.13,0,3.11743,4.5,4.5 +4075,0,0.206497,1,1,1,2,4,,4,3,Pontiac Lake,Rd,703707,8.863,9.07,0,4.955928,4.5,4.5 +4562,0,0.484416,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,1.005,1.49,0,11.625976,4.5,4.5 +25249,0,0.597347,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.336333,0.15,4 +20256,0,0.25194,1,1,0,2,4,,4,3,Cass Lake,Rd,4407378,3.299,3.551,0,6.046557,4.5,4.5 +20443,0,0.155787,1,1,0,2,4,,4,3,Cass Lake,Rd,4407378,3.143,3.299,0,3.738898,4.5,4.5 +4047,0,0.293099,1,1,1,2,4,,4,3,Pontiac Lake,Rd,703707,9.07,9.363,0,7.034367,4.5,4.5 +4556,0,0.072231,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,1.49,1.562,0,1.733543,4.5,4.5 +1400,0,0.26113,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,5.771,6.032,0,6.267127,3.7,5 +3397,0,0.21434,2,2,1,2,3,,4,3,Huron,St,648906,18.54,18.754,0,5.144149,3.7,5 +4192,0,0.166282,1,1,0,2,7,,4,3,Josephine,Ave,697808,0.502,0.668,0,3.990761,6.55,4.5 +21085,0,0.127464,1,1,0,2,4,,4,3,Voorheis,Rd,4410050,0.252,0.379,0,3.059124,4.5,4.5 +25133,0,0.42502,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.200482,0.15,4 +27856,0,0.261616,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.278794,0.15,4 +21084,0,0.230748,1,1,0,2,4,,4,3,Voorheis,Rd,4410050,0.379,0.61,0,5.537949,4.5,4.5 +1915,0,0.237985,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,5.533,5.771,0,5.711633,3.7,5 +27871,0,0.532774,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.786575,0.15,4 +3389,0,0.1612,2,2,1,2,3,,4,3,Huron,St,648906,18.754,18.915,0,3.868812,3.7,5 +4193,0,0.166695,1,1,0,2,7,,4,3,Josephine,Ave,697808,0.336,0.502,0,4.000669,6.55,4.5 +25274,0,0.0594,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.425595,0.15,4 +27857,0,0.201475,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.835392,0.15,4 +27851,0,0.425992,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.22382,0.15,4 +2781,0,0.332054,1,1,1,2,4,,4,3,County Center,Dr,668206,0,0.332,0,7.969296,4.5,4.5 +4025,0,0.146,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,9.695,9.841,0,3.504001,4.5,4.5 +4187,0,0.259035,1,1,0,2,4,,4,3,Watkins Lake,Rd,698005,0,0.259,0,6.216852,4.5,4.5 +27771,0,0.402056,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.649353,0.15,4 +27770,0,0.436494,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.475868,0.15,4 +4015,0,0.153682,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,9.841,9.995,0,3.688371,4.5,4.5 +2878,0,0.214771,2,1,0,2,5,,4,3,County Center,Dr,668206,0.419,0.634,0,5.154497,5.8,4.5 +19511,1,0.08504,1,0,0,1,3,RSF,4,3,Telegraph/County Center E,Ramp,1890605,0,0.085,0,,3.7,5 +2525,0,0.036737,1,2,0,2,4,,4,3,County Center,Dr,668206,0.383,0.419,0,0.8817,4.5,4.5 +4607,0,0.020984,2,2,0,2,3,,4,3,Telegraph,Rd,710110,0.642,0.663,0,0.503609,3.7,5 +4959,0,0.023633,2,2,0,2,3,,4,3,Telegraph,Rd,710110,0.619,0.642,0,0.567194,3.7,5 +19512,1,0.122811,1,0,0,1,3,RSF,4,3,Telegraph/Country Center W,Ramp,1890604,0,0.123,0,,3.7,5 +2815,0,0.040474,1,1,1,2,4,,4,3,County Center,Dr,668206,0.342,0.383,0,0.971378,4.5,4.5 +3100,0,0.010229,1,1,1,2,4,,4,3,County Center,Dr,668206,0.332,0.342,0,0.245487,4.5,4.5 +27778,0,0.144348,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.464355,0.15,4 +457,0,0.264818,1,1,0,2,5,,4,3,Fairfax,,620109,0,0.265,0,6.355642,5.8,4.5 +466,1,0.232677,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.592,0.825,0,5.584249,5,5 +1253,0,0.666313,1,1,0,2,4,,4,3,Square Lake,Rd,640407,1.02,1.686,0,15.991506,4.5,4.5 +1326,0,0.539208,2,2,0,2,3,,4,3,Orchard Lake,Rd,634003,11.556,12.095,0,12.940985,3.7,5 +3095,0,0.301077,1,1,0,2,4,,4,3,Golf,Dr,673008,0.811,1.112,0,7.22585,4.5,4.5 +4924,-1,0.249866,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710110,3.951,4.201,0,5.996783,3.7,5 +20945,1,0.313001,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,0.715,1.028,0,7.512033,3.7,5 +27836,0,0.428718,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.289228,0.15,4 +27840,0,0.648233,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.557588,0.15,4 +27841,0,0.581378,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.953076,0.15,4 +27842,0,0.452227,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.853456,0.15,4 +27878,0,0.384472,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.227328,0.15,4 +27909,0,0.548863,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.172722,0.15,4 +5,0,0.420921,1,1,0,2,4,,3,3,Voorheis,Rd,641608,0.68,1.1,0,10.102114,6,4.5 +646,1,0.201852,1,0,0,1,3,RSF,4,3,Orchard Lake/S US 24,RAMP,641710,0,0.202,0,,3.7,5 +941,0,0.159794,2,2,0,2,3,,4,3,Orchard Lake,Rd,641405,1.551,1.711,0,3.835064,3.7,5 +1572,0,0.241251,1,1,0,2,4,,4,3,Old Telegraph,Rd,641706,0,0.241,0,5.790022,4.5,4.5 +2034,0,0.123745,2,2,0,2,3,,4,3,Orchard Lake,Rd,641405,1.891,2.015,0,2.969869,3.7,5 +3904,-1,0.551774,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710110,3.303,3.855,0,13.242569,3.7,5 +4932,-1,0.109633,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710110,3.18,3.29,0,2.631201,3.7,5 +20947,1,0.318601,3,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,0.303,0.622,0,7.646423,3.7,5 +20949,1,0.106206,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,0,0.106,0,2.548943,3.7,5 +27867,0,0.406382,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.753166,0.15,4 +644,1,0.133306,1,0,0,1,3,RSF,4,3,S US 24/Orchard Lake,RAMP,641709,0,0.133,0,,3.7,5 +1523,0,0.063952,2,2,0,2,3,,4,3,Orchard Lake,Rd,641405,2.015,2.079,0,1.534854,3.7,5 +20948,1,0.196981,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,0.106,0.303,0,4.727548,3.7,5 +1094,1,0.053223,1,0,0,2,4,,4,3,Old Telegraph,Rd,641706,0.241,0.294,0,1.277345,4.5,4.5 +20840,1,0.042585,1,0,0,2,4,,4,3,Old Telegraph,Rd,4400148,0.029,0.072,0,1.022038,4.5,4.5 +4576,-1,0.012839,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710110,3.29,3.303,0,0.308135,3.7,5 +20145,1,0.029163,1,0,0,2,3,,4,3,Old Telegraph,Rd,4400148,0,0.029,0,0.699915,3.7,5 +645,0,0.217962,1,1,0,2,4,,3,3,Voorheis,Rd,641608,0.462,0.68,0,5.231091,6,4.5 +4939,0,0.349739,3,3,0,2,3,,4,3,Telegraph,Rd,710110,2.779,3.128,0,8.393736,3.7,5 +27861,0,0.205053,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.921283,0.15,4 +27863,0,0.128164,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.075945,0.15,4 +4585,0,0.052076,3,3,0,2,3,,4,3,Telegraph,Rd,710110,3.128,3.18,0,1.249813,3.7,5 +528,0,0.083661,1,1,0,2,4,,4,3,Old Telegraph,Rd,641705,0.131,0.215,0,2.007856,4.5,4.5 +2075,0,0.132846,2,2,0,2,4,,4,3,Old Telegraph,Rd,641705,0.215,0.347,0,3.188313,4.5,4.5 +3356,0,0.127783,1,1,0,2,4,,4,3,Golf,Dr,673008,1.112,1.24,0,3.066788,4.5,4.5 +20946,1,0.093593,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,0.622,0.715,0,2.246243,3.7,5 +484,0,0.180557,2,2,0,2,3,,4,3,Orchard Lake,Rd,641405,1.711,1.891,0,4.333368,3.7,5 +1676,1,0.131,1,0,0,2,4,,4,3,Old Telegraph,Rd,641705,0,0.131,0,3.144009,4.5,4.5 +4929,-1,0.096701,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710110,3.855,3.951,0,2.320836,3.7,5 +19221,1,0.031848,1,0,0,2,3,,4,3,Old Telegraph,Rd,1812909,0.041,0.073,0,0.76434,3.7,5 +19222,1,0.041334,1,0,0,2,4,,4,3,Old Telegraph,Rd,1812909,0,0.041,0,0.992022,4.5,4.5 +2012,0,0.284705,2,2,0,2,3,,4,3,Orchard Lake,Rd,641405,1.266,1.551,0,6.832911,3.7,5 +337,0,0.166373,1,1,0,2,4,,4,3,Square Lake,Rd,640407,1.893,2.059,0,3.99296,4.5,4.5 +4920,-1,0.189728,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710110,4.538,4.727,0,4.553473,3.7,5 +20943,1,0.240264,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,1.309,1.549,0,5.766343,3.7,5 +803,0,0.206461,2,2,0,2,4,,4,3,Square Lake,Rd,640407,1.686,1.893,0,4.955073,4.5,4.5 +4569,-1,0.336751,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710110,4.201,4.538,0,8.082019,3.7,5 +20944,1,0.281122,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,1.028,1.309,0,6.746929,3.7,5 +20353,0,0.023657,1,1,0,2,3,,4,3,Fairfax,,4406801,0,0.024,0,0.567759,3.7,5 +26177,0,0.168897,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.053529,0.15,4 +27848,0,0.147637,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.543283,0.15,4 +27822,0,0.393898,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.453548,0.15,4 +924,1,0.146021,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.446,0.592,0,3.504501,5,5 +1371,0,0.261066,2,2,0,2,3,,3,3,Elizabeth Lake,Rd,630906,6.984,7.245,0,6.265588,5,5 +2573,0,0.413582,1,1,1,2,3,,3,3,Baldwin,Ave,672209,0.131,0.544,0,9.925972,5,5 +2784,0,0.184835,2,2,1,2,3,,3,3,Cesar E Chavez,Ave,672206,1.237,1.422,0,4.436035,5,5 +3155,-1,0.749793,0,3,0,2,3,,3,3,Cass,Ave,674803,0.434,1.183,0,17.995028,5,5 +3375,0,0.465348,2,2,1,2,3,,3,3,Huron,St,648906,19.651,20.116,0,11.168363,5,5 +3401,0,0.248438,2,1,1,2,3,,3,3,Cesar E Chavez,Ave,672206,0.573,0.822,0,5.96252,5,5 +4951,0,0.171228,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.39,1.561,0,4.109469,3.7,5 +27800,0,0.437867,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.508818,0.15,4 +27865,0,0.491342,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.792213,0.15,4 +29760,0,0.445683,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.696393,0.15,4 +30188,0,0.422635,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.143241,0.15,4 +1905,0,0.18643,2,2,1,2,3,,3,3,Elizabeth Lake,Rd,630906,6.459,6.646,0,4.474321,5,5 +3379,0,0.391256,2,2,1,2,3,,3,3,Huron,St,648906,19.26,19.651,0,9.390147,5,5 +3922,0,0.161637,3,3,0,2,3,,3,3,Telegraph,Rd,710110,2.058,2.22,0,3.879282,5,5 +27870,0,0.417563,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.021502,0.15,4 +27872,0,0.439549,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.549179,0.15,4 +27875,0,0.187948,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.510756,0.15,4 +27876,0,0.440513,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.572313,0.15,4 +4947,0,0.167489,3,3,0,2,3,,3,3,Telegraph,Rd,710110,2.22,2.387,0,4.019735,5,5 +4942,0,0.266611,3,3,0,2,3,,3,3,Telegraph,Rd,710110,2.387,2.654,0,6.398659,5,5 +810,0,0.063373,2,2,1,2,3,,3,3,Elizabeth Lake,Rd,630906,6.375,6.438,0,1.520964,5,5 +3430,1,0.149378,1,0,0,1,3,RSF,4,3,Elizabeth Lake/Telegraph,,675601,0,0.149,0,,5,5 +4120,1,0.135119,1,0,0,1,3,RSF,4,3,Elizabeth Lake/Telegraph,,700803,0,0.135,0,,5,5 +4594,0,0.418711,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.561,1.98,0,10.049053,3.7,5 +3923,0,0.038613,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.98,2.018,0,0.926724,3.7,5 +4948,0,0.039932,2,2,0,2,3,,3,3,Telegraph,Rd,710110,2.018,2.058,0,0.95837,5,5 +344,0,0.021136,2,2,1,2,3,,3,3,Elizabeth Lake,Rd,630906,6.438,6.459,0,0.507271,5,5 +27877,0,0.186313,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.471514,0.15,4 +1880,0,0.169366,2,2,0,2,3,,3,3,Elizabeth Lake,Rd,630906,6.814,6.984,0,4.064776,5,5 +27873,0,0.449906,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.797736,0.15,4 +317,0,0.168612,2,2,0,2,3,,3,3,Elizabeth Lake,Rd,630906,6.646,6.814,0,4.046699,5,5 +3180,0,0.467257,2,2,0,2,3,,3,3,Cesar E Chavez,Ave,672206,1.842,2.309,0,11.214169,5,5 +3508,0,0.420248,2,2,1,2,3,,3,3,Cesar E Chavez,Ave,672206,1.422,1.842,0,10.085941,5,5 +3937,0,0.069138,2,2,0,2,5,,4,3,County Center,Dr,705009,0.397,0.466,0,1.659307,5.8,4.5 +27775,0,0.220371,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.288903,0.15,4 +3944,1,0.178713,2,0,0,2,5,DV2,4,3,County Center,Dr,705009,0.113,0.292,0,4.289106,5.8,4.5 +3990,-1,0.18155,0,2,0,2,5,DV2,4,3,County Center,Dr,703707,10.5,10.682,0,4.357192,5.8,4.5 +20193,1,0.162654,1,0,0,1,3,RSF,4,3,Telegraph/Pontiac Lake,Ramp,4400152,0,0.163,0,,3.7,5 +4001,-1,0.106215,0,2,0,2,4,DV2,4,3,Pontiac Lake,Rd,703707,10.33,10.436,0,2.549155,4.5,4.5 +20600,1,0.112606,2,0,0,2,4,DV2,4,3,Pontiac Lake,Rd,4400151,0,0.113,0,2.702539,4.5,4.5 +3949,1,0.113238,1,0,0,1,3,RSF,4,3,Telegraph/County Center E,Ramp,705009,0,0.113,0,,3.7,5 +3998,-1,0.064272,0,2,0,2,4,DV2,4,3,County Center,Dr,703707,10.436,10.5,0,1.542538,4.5,4.5 +4955,0,0.015777,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.31,1.326,0,0.378643,3.7,5 +20395,1,0.080446,2,0,0,2,5,DV2,4,3,County Center,Dr,4400151,0.113,0.193,0,1.930706,5.8,4.5 +4603,0,0.064134,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.326,1.39,0,1.539228,3.7,5 +4958,0,0.037368,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.273,1.31,0,0.89682,3.7,5 +3939,0,0.104765,2,2,0,2,5,,4,3,County Center,Dr,705009,0.292,0.397,0,2.514367,5.8,4.5 +3932,0,0.126135,1,1,0,2,5,,4,3,County Center,Dr,705009,0.466,0.592,0,3.027246,5.8,4.5 +3559,0,0.035781,1,1,0,2,5,,4,3,County Center,Dr,668206,0.9,0.936,0,0.858737,5.8,4.5 +27773,0,0.298365,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.160766,0.15,4 +915,0,0.272553,2,2,0,2,3,,3,3,State,,630906,7.245,7.517,0,6.541273,5,5 +2003,0,0.28482,2,2,0,2,3,,3,3,State,,630906,7.517,7.802,0,6.835668,5,5 +3209,0,0.361543,2,2,0,2,7,,3,3,Johnson,,673005,0.357,0.719,0,8.677042,7,4.5 +3363,0,0.083816,2,2,1,2,3,,3,3,Huron,St,648906,20.344,20.428,0,2.01158,5,5 +3528,0,0.147577,1,1,1,2,7,,3,3,Johnson,,673005,0.21,0.357,0,3.541839,7,4.5 +27879,0,0.198168,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.75602,0.15,4 +29759,0,0.337493,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.099843,0.15,4 +3372,0,0.228247,2,2,1,2,3,,3,3,Huron,St,648906,20.116,20.344,0,5.47793,5,5 +2556,0,0.209924,1,1,1,2,7,,3,3,Johnson,,673005,0,0.21,0,5.038187,7,4.5 +423,0,0.099585,1,1,0,2,5,,3,3,Williams,,5500202,0,0.1,0,2.390039,8,4.5 +514,1,0.11385,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.057,0.171,0,2.73239,5,5 +1974,0,0.024707,1,1,0,2,5,,3,3,Franklin,Blvd,5500204,0.183,0.208,0,0.592957,8,4.5 +2724,1,0.144027,2,0,0,2,5,,3,3,Pike,,676308,0.366,0.51,0,3.456651,8,4.5 +3361,0,0.20543,2,2,0,2,3,,3,3,Huron,St,648906,20.428,20.633,0,4.930321,5,5 +27798,0,0.068593,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.646238,0.15,4 +890,0,0.129343,1,1,0,2,5,,3,3,Franklin,Blvd,5500204,0,0.129,0,3.10424,8,4.5 +1887,1,0.094771,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.242,0.336,0,2.274506,5,5 +3575,1,0.05204,2,0,0,2,5,,3,3,Pike,,676308,0.51,0.562,0,1.248955,8,4.5 +27797,0,0.061821,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.483712,0.15,4 +29758,0,0.145982,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.503568,0.15,4 +424,0,0.054063,1,1,0,2,5,,3,3,Franklin,Blvd,5500204,0.129,0.183,0,1.297513,8,4.5 +27799,0,0.01468,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,0.352311,0.15,4 +2063,1,0.070384,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.171,0.242,0,1.689214,5,5 +1461,0,0.099384,1,1,0,2,5,,3,3,Franklin,Blvd,5500204,0.208,0.307,0,2.38522,8,4.5 +889,0,0.193643,1,1,0,2,5,,3,3,Bagley,,641410,1.218,1.411,0,4.647424,8,4.5 +979,0,0.034486,2,2,1,2,3,,3,3,Orchard Lake,Rd,641405,0.302,0.337,0,0.827662,5,5 +1350,0,0.161821,1,1,0,2,5,,3,3,Williams,,5500202,0.1,0.261,0,3.8837,8,4.5 +2783,0,0.169979,2,1,1,2,3,,3,3,Cesar E Chavez,Ave,672206,0.403,0.573,0,4.079501,5,5 +3483,-1,0.239243,0,3,0,2,3,,3,3,Cass,Ave,674803,0.194,0.434,0,5.741842,5,5 +24556,-1,0.096571,0,3,0,2,3,,3,3,Cass,Ave,674803,0.098,0.194,0,2.317707,5,5 +27786,0,0.343396,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.241515,0.15,4 +29757,0,0.181146,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.347496,0.15,4 +27574,0,0.262792,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.307011,0.15,4 +27880,0,0.011622,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,0.278932,0.15,4 +2462,0,0.175458,2,1,0,2,7,,3,3,Johnson,,673005,0.719,0.894,0,4.210989,7,4.5 +24555,-1,0.097859,0,3,0,2,3,,2,3,Cass,Ave,674803,0,0.098,0,2.348617,6,5 +24583,1,0.061746,2,0,0,2,5,,2,3,Lafayette,,0,0,0,0,1.481899,8.5,4.5 +527,1,0.039556,3,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.309,0.349,0,0.949337,6,5 +2856,0,0.13089,1,1,1,2,3,,3,3,Baldwin,Ave,672209,0,0.131,0,3.141365,5,5 +27784,0,0.054425,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.306211,0.15,4 +2452,0,0.30997,2,2,0,2,3,,3,3,Montcalm,,673305,0,0.31,0,7.439273,5,5 +2504,0,0.560743,1,1,1,2,4,,3,3,Kennett,Rd,673310,0.945,1.506,0,13.457837,6,4.5 +3250,0,0.306835,1,1,1,2,3,,3,3,Baldwin,Ave,672209,0.544,0.851,0,7.364036,5,5 +3367,0,0.370734,2,2,0,2,3,,3,3,Montcalm,,673305,0.315,0.686,0,8.897618,5,5 +27789,0,0.302109,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.250618,0.15,4 +27790,0,0.27155,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.517196,0.15,4 +3074,0,0.415756,2,1,1,2,3,,3,3,Cesar E Chavez,Ave,672206,0.822,1.237,0,9.978137,5,5 +3421,0,0.004938,2,2,0,2,3,,3,3,Montcalm,,673305,0.31,0.315,0,0.118521,5,5 +27788,0,0.189849,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.556384,0.15,4 +2949,0,0.253599,2,2,1,2,3,,3,3,Baldwin,Ave,672209,0.851,1.105,0,6.086386,5,5 +2739,0,1.683479,1,1,0,2,5,,5,3,Maybee,Rd,654403,0,1.683,0,40.403492,3.7,5 +3007,0,0.217646,2,2,1,2,3,,4,3,Walton,Blvd,673510,1.34,1.557,0,5.223505,3.7,5 +3158,1,0.129027,2,0,0,2,3,,4,3,Dixie,Hwy,672206,2.439,2.568,0,3.09665,3.7,5 +3426,0,0.358879,2,2,1,2,3,,4,3,Baldwin,Rd,655009,0.472,0.831,0,8.613087,3.7,5 +4540,0,1.024886,1,1,0,2,4,,4,3,Clintonville,Rd,697001,0.259,1.284,0,24.597259,4.5,4.5 +20541,-1,0.114868,0,2,0,2,3,,4,3,Dixie,Hwy,4400845,0.144,0.258,0,2.756832,3.7,5 +21490,0,0.153734,2,2,1,2,3,,4,3,Telegraph,Rd,4413717,0,0.154,0,3.689618,3.7,5 +26113,0,0.480965,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.543169,0.15,4 +29482,0,0.935402,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.449656,0.15,4 +4769,0,0.627158,2,2,1,2,3,,4,3,Walton,Blvd,696509,2.154,2.781,0,15.051803,3.7,5 +4770,0,0.324287,2,2,1,2,3,,4,3,Walton,Blvd,696509,1.83,2.154,0,7.782897,3.7,5 +5011,0,0.625968,2,2,1,2,3,,4,3,Dixie,Hwy,689103,7.493,8.119,0,15.023242,3.7,5 +25045,0,0.396374,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.512966,0.15,4 +25166,0,0.902068,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.649627,0.15,4 +27881,0,0.496233,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.90958,0.15,4 +29483,0,0.300839,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.220145,0.15,4 +30183,0,0.938792,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.531002,0.15,4 +4217,0,0.566912,1,1,0,2,5,,4,3,Watkins Lake,Rd,697604,0.665,1.231,0,13.605898,5.8,4.5 +4549,0,0.679305,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,1.785,2.464,0,16.303312,4.5,4.5 +5017,0,0.455042,2,2,1,2,3,,4,3,Dixie,Hwy,689103,7.038,7.493,0,10.920997,3.7,5 +4200,0,0.279966,1,1,0,2,5,,4,3,Watkins Lake,Rd,697604,1.231,1.511,0,6.719184,5.8,4.5 +4543,0,0.258983,1,1,0,2,4,,4,3,Clintonville,Rd,697001,0,0.259,0,6.215595,4.5,4.5 +4771,0,0.550792,2,2,1,2,3,,4,3,Walton,Blvd,696509,1.28,1.83,0,13.219016,3.7,5 +4133,0,0.285434,1,1,0,2,4,,4,3,Silver Lake,Rd,700108,0,0.285,0,6.850423,4.5,4.5 +4999,0,0.260293,2,2,1,2,3,,4,3,Dixie,Hwy,689103,8.255,8.515,0,6.247031,3.7,5 +5003,0,0.045468,2,2,1,2,3,,4,3,Dixie,Hwy,689103,8.21,8.255,0,1.091225,3.7,5 +5005,0,0.090706,2,2,1,2,3,,4,3,Dixie,Hwy,689103,8.119,8.21,0,2.176944,3.7,5 +4965,1,0.0938,2,0,0,2,3,,4,3,Dixie,Hwy,689103,8.515,8.609,0,2.251195,3.7,5 +20348,-1,0.09408,0,2,0,2,3,,4,3,Dixie,Hwy,4400847,0,0.094,0,2.25793,3.7,5 +3947,0,0.009006,2,2,1,2,3,,4,3,Telegraph,Rd,710110,0,0.009,0,0.216148,3.7,5 +4132,0,0.314317,1,1,0,2,4,,4,3,Silver Lake,Rd,700108,0.285,0.6,0,7.543598,4.5,4.5 +4761,0,0.180657,2,2,1,2,3,,4,3,Walton,Blvd,696509,2.904,3.084,0,4.335768,3.7,5 +4767,0,0.122167,2,2,1,2,3,,4,3,Walton,Blvd,696509,2.781,2.904,0,2.932011,3.7,5 +4521,0,0.566689,1,1,0,2,4,,4,3,Clintonville,Rd,697001,1.284,1.85,0,13.600546,4.5,4.5 +26112,0,0.798269,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.158464,0.15,4 +3285,0,0.5051,1,1,0,2,4,,4,3,Maybee,Rd,653405,2.875,3.38,0,12.122389,4.5,4.5 +4515,0,0.123296,1,1,0,2,4,,4,3,Clintonville,Rd,697001,2.289,2.412,0,2.959099,4.5,4.5 +26115,0,0.526826,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.643815,0.15,4 +4520,0,0.438743,1,1,0,2,4,,4,3,Clintonville,Rd,697001,1.85,2.289,0,10.529835,4.5,4.5 +26117,0,0.185234,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.44562,0.15,4 +3390,0,0.241006,2,2,1,2,3,,4,3,Baldwin,Ave,672209,2.224,2.465,0,5.784147,3.7,5 +3521,0,0.72044,2,2,1,2,3,,4,3,Walton,Blvd,673510,0,0.72,0,17.290568,3.7,5 +27343,0,0.626066,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.025592,0.15,4 +27883,0,0.868754,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.850101,0.15,4 +27886,0,0.654761,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.714259,0.15,4 +27887,0,0.17151,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.116235,0.15,4 +2617,0,0.41493,1,1,1,2,4,,3,3,Kennett,Rd,673310,0.017,0.432,0,9.958314,6,4.5 +3320,0,0.619472,2,2,1,2,3,,4,3,Walton,Blvd,673510,0.72,1.34,0,14.867323,3.7,5 +21384,-1,0.533537,0,2,0,2,3,DIV,4,3,Telegraph,Rd,4414294,0,0.533,0,12.804896,3.7,5 +21446,1,0.53334,2,0,0,2,3,DIV,4,3,Telegraph,Rd,4413717,0.154,0.687,0,12.800152,3.7,5 +27884,0,0.085659,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.055809,0.15,4 +30187,0,0.069367,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.664806,0.15,4 +2891,1,0.016751,1,0,0,2,4,,4,3,Kennett,Rd,673310,0,0.017,0,0.402021,4.5,4.5 +27885,0,0.402914,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.669931,0.15,4 +21444,0,0.385477,2,2,1,2,3,,4,3,Telegraph,Rd,4413717,0.823,1.208,0,9.251444,3.7,5 +21383,-1,0.134614,0,2,0,2,3,DIV,4,3,Telegraph,Rd,4414294,0.533,0.668,0,3.230729,3.7,5 +21445,1,0.13575,2,0,0,2,3,DIV,4,3,Telegraph,Rd,4413717,0.687,0.823,0,3.257998,3.7,5 +3050,0,0.235264,2,2,1,2,3,,3,3,Baldwin,Ave,672209,1.747,1.982,0,5.646324,5,5 +27793,0,0.465799,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.179182,0.15,4 +3373,0,0.368101,2,2,1,2,3,,3,3,Baldwin,Ave,672209,1.379,1.747,0,8.834418,5,5 +3476,0,0.172119,1,1,1,2,5,,3,3,Columbia,,673503,0,0.172,0,4.130849,8,4.5 +2772,0,0.242567,2,2,1,2,3,,3,3,Baldwin,Ave,672209,1.982,2.224,0,5.821608,5,5 +2974,0,0.297031,2,2,1,2,3,,4,3,Baldwin,Rd,655009,0,0.297,0,7.128746,3.7,5 +27298,0,0.295578,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.093866,0.15,4 +2727,0,0.174886,2,2,1,2,3,,4,3,Baldwin,Rd,655009,0.297,0.472,0,4.197257,3.7,5 +3066,0,0.333711,2,2,1,2,3,,4,3,Baldwin,Ave,672209,2.465,2.799,0,8.009065,3.7,5 +1872,-1,0.293166,0,3,0,1,1,,4,3,S I 75,,646106,25.398,25.692,0,,0.8,7.5 +3355,1,0.337542,1,0,0,1,1,ROF,4,3,S I 75/Baldwin,RAMP,668908,0,0.338,0,,2.24,5 +27882,0,1.054622,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.310918,0.15,4 +27890,0,0.57858,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.885922,0.15,4 +28583,0,0.9139,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.933593,0.15,4 +25342,0,0.638761,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.330256,0.15,4 +1010,-1,0.326042,0,3,0,1,1,,4,3,S I 75,,646106,25.073,25.398,0,,0.8,7.5 +2268,1,0.36917,3,0,0,1,1,,4,3,N I 75,,647308,25.005,25.374,0,,0.8,7.5 +37093,-1,0.048612,0,3,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0.49,0.538,0,1.16669,3.7,5 +2685,0,0.180234,1,1,1,2,4,,4,3,Brown,Rd,4416311,0,0.18,0,4.325615,4.5,4.5 +2760,1,0.3415,1,0,0,1,1,ROF,4,3,N I 75/N Baldwin,RAMP,669001,0,0.341,0,,2.24,5 +3033,1,0.31742,1,0,0,1,1,RON,4,3,N Baldwin/S I 75,RAMP,668909,0,0.317,0,,1.09,4 +21492,0,0.516697,2,2,0,2,5,,4,3,Great Lakes Crossings,Rd,4413601,0,0.517,0,12.400716,5.8,4.5 +37094,1,0.024765,3,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,1.307,1.332,0,0.594361,3.7,5 +30184,0,0.475058,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.401394,0.15,4 +37089,1,0.196779,3,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,1.332,1.529,0,4.722694,3.7,5 +37111,0,0.587765,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.106365,0.15,4 +37086,1,0.230718,1,0,0,1,1,RON,4,3,S Baldwin/S I 75,RAMP,4412910,0,0.231,0,,1.09,4 +2267,1,0.229561,3,0,0,1,1,,4,3,N I 75,,647308,25.374,25.603,0,,0.8,7.5 +3277,1,0.186863,1,0,0,1,1,ROF,4,3,N I 75/S Baldwin,RAMP,669003,0,0.187,0,,2.24,5 +37110,0,0.456865,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.964763,0.15,4 +37105,1,0.060801,3,0,0,2,4,DIV,4,3,Baldwin,Rd,655009,1.551,1.612,0,1.459215,4.5,4.5 +37107,-1,0.208856,0,2,0,2,4,DIV,4,3,Baldwin,Rd,4414691,0.788,0.997,0,5.012553,4.5,4.5 +37113,-1,0.195746,0,2,0,2,5,DV2,3,4,Kennedy,Cir,4211477,0,0.196,0,4.697905,8,4.5 +27776,0,0.199489,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.787737,0.15,4 +2532,0,0.081669,1,1,1,2,4,,4,3,Brown,Rd,4416311,0.18,0.262,0,1.960055,4.5,4.5 +506,-1,0.233524,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,0.028,0.262,0,5.604576,3.7,5 +610,0,0.364156,2,2,0,2,4,,4,3,Auburn,Ave,625105,1.142,1.506,0,8.739745,4.5,4.5 +958,1,0.290016,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,0.027,0.317,0,6.960377,3.7,5 +1135,0,0.273579,2,2,1,2,4,,4,3,South,Blvd,616406,0.548,0.822,0,6.565907,4.5,4.5 +1147,0,0.629926,2,2,1,2,3,,4,3,University,Dr,624301,1.311,1.94,0,15.118233,3.7,5 +1207,-1,1.175446,0,4,0,1,1,,4,3,S I 75,,646106,17.065,18.24,0,,0.8,7.5 +1421,1,0.398199,3,0,0,2,3,DIV,4,3,Square Lake,Rd,625903,1.744,2.142,0,9.556777,3.7,5 +1460,1,0.293476,4,0,0,2,3,DIV,3,3,Woodward,Ave,641407,0.918,1.211,0,7.043424,5,5 +1758,-1,0.383008,0,3,0,2,3,DIV,4,3,Square Lake,Rd,625912,1.77,2.152,0,9.192203,3.7,5 +2092,0,0.288265,2,2,1,2,4,,4,3,Opdyke,Rd,616205,3.07,3.358,0,6.918358,4.5,4.5 +2281,1,0.918213,5,0,0,1,1,,4,3,N I 75,,647308,17.252,18.17,0,,0.8,7.5 +2681,-1,0.598452,0,2,0,1,2,,4,3,W M 59,,677208,0.87,1.468,0,,0.8,7.5 +2938,0,0.499178,2,2,1,2,4,,4,3,Featherstone,,673909,0.111,0.611,0,11.980283,4.5,4.5 +3192,1,0.188153,4,0,0,2,3,DIV,3,3,Woodward,Ave,672705,0.077,0.265,0,4.51568,5,5 +3255,0,0.390552,2,2,1,2,3,,3,3,East,Blvd,672807,1.169,1.56,0,9.373249,5,5 +3294,1,0.775861,2,0,0,1,2,,4,3,E M 59,,648906,22.19,22.966,0,,0.8,7.5 +25182,0,0.304334,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.304013,0.15,4 +27772,0,0.491517,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.796402,0.15,4 +27829,0,0.337561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.101466,0.15,4 +27859,0,0.278664,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.687928,0.15,4 +27862,0,0.549428,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.186266,0.15,4 +27891,0,0.802901,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.26963,0.15,4 +27894,0,0.497264,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.934335,0.15,4 +27895,0,0.45699,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.967761,0.15,4 +27903,0,0.293703,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.048865,0.15,4 +27905,0,0.398813,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.571507,0.15,4 +27919,0,0.544729,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.073489,0.15,4 +27921,0,0.514244,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.341845,0.15,4 +27928,0,0.253224,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.077366,0.15,4 +605,1,0.412597,4,0,0,2,3,DIV,3,3,Woodward,Ave,616906,0.905,1.317,0,9.902319,5,5 +1074,1,0.635067,3,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,3.036,3.67,0,15.241619,3.7,5 +1242,-1,0.432466,0,4,0,2,3,DIV,3,3,Woodward,Ave,622302,0.882,1.314,0,10.379192,5,5 +1499,0,0.102375,1,1,0,2,4,,3,3,Franklin,Rd,620409,0.806,0.908,0,2.456988,6,4.5 +2114,0,0.18411,1,1,0,2,4,,3,3,South,Blvd,624102,0.599,0.783,0,4.418633,6,4.5 +2716,0,0.141566,2,2,1,2,3,,4,3,East,Blvd,672807,0.022,0.163,0,3.397583,3.7,5 +2853,1,0.275581,3,0,0,2,3,DIV,3,3,Saginaw,St,674904,0,0.275,0,6.613951,5,5 +20252,-1,0.671133,0,3,0,2,3,DIV,4,3,Square Lake,Rd,4404559,0.546,1.217,0,16.107182,3.7,5 +20480,-1,0.271818,0,3,0,2,3,DIV,3,3,Saginaw,St,4400013,0,0.272,0,6.523636,5,5 +27387,0,0.294898,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.077558,0.15,4 +27849,0,0.524071,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.577693,0.15,4 +27912,0,0.285432,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.850375,0.15,4 +27915,0,0.370561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.893465,0.15,4 +27916,0,0.245973,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.903358,0.15,4 +27917,0,0.237044,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.689052,0.15,4 +30245,0,0.389323,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.343756,0.15,4 +992,1,0.106481,2,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,2.67,2.777,0,2.555548,3.7,5 +1387,0,0.313915,2,2,0,2,4,,4,3,Franklin,Rd,620409,0.091,0.405,0,7.533961,4.5,4.5 +3957,1,0.134041,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,11.196,11.33,0,3.21698,3.7,5 +4389,-1,0.023511,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710009,11.169,11.193,0,0.564256,3.7,5 +20657,-1,0.118342,0,2,0,2,3,DIV,4,3,Square Lake,Rd,4404559,0.203,0.322,0,2.840216,3.7,5 +425,1,0.090224,2,0,0,2,4,DIV,4,3,Square Lake,Rd,640407,2.455,2.545,0,2.16537,4.5,4.5 +19248,1,0.095165,2,0,0,1,3,RSF,4,3,S Telegraph/Square Lake Cutoff,,1807807,0,0.095,0,,3.7,5 +20399,-1,0.09004,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4404559,0,0.09,0,2.16095,4.5,4.5 +20941,1,0.146205,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,2.186,2.332,0,3.508928,3.7,5 +1462,1,0.030601,2,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,2.64,2.67,0,0.734428,3.7,5 +20892,-1,0.031882,0,2,0,2,3,DIV,4,3,Square Lake,Rd,4404559,0.171,0.203,0,0.765166,3.7,5 +1975,1,0.094704,2,0,0,2,4,DIV,4,3,Square Lake,Rd,640407,2.545,2.64,0,2.272888,4.5,4.5 +20197,-1,0.081445,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4404559,0.09,0.171,0,1.954688,4.5,4.5 +19247,1,0.007256,2,0,0,1,3,RSF,4,3,S Telegraph/Square Lake Cutoff,,1807807,0.095,0.102,0,,3.7,5 +20940,1,0.016349,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,2.332,2.348,0,0.392366,3.7,5 +3883,-1,0.01538,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710110,5.525,5.54,0,0.369128,3.7,5 +531,1,0.258835,3,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,2.777,3.036,0,6.212052,3.7,5 +2006,0,0.08244,1,1,1,2,4,,4,3,Franklin,Rd,620409,0,0.082,0,1.978552,4.5,4.5 +20439,-1,0.22489,0,3,0,2,3,DIV,4,3,Square Lake,Rd,4404559,0.322,0.546,0,5.397359,3.7,5 +3876,-1,0.048525,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,11.12,11.169,0,1.164601,3.7,5 +37069,-1,0.151132,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710009,11.193,11.344,0,3.627174,3.7,5 +1902,0,0.008643,2,2,0,2,4,,4,3,Franklin,Rd,620409,0.082,0.091,0,0.207437,4.5,4.5 +1556,0,0.265025,2,2,0,2,4,,3,3,Franklin,Rd,620409,0.541,0.806,0,6.360591,6,4.5 +2062,0,0.136173,2,2,0,2,4,,4,3,Franklin,Rd,620409,0.405,0.541,0,3.268153,4.5,4.5 +634,0,0.267893,1,1,0,2,4,,3,3,South,Blvd,624102,0.331,0.599,0,6.429426,6,4.5 +1029,0,0.306167,1,1,0,2,4,,3,3,Franklin,Rd,620409,0.908,1.214,0,7.348015,6,4.5 +1759,0,0.437693,1,1,0,2,4,,3,3,Franklin,Rd,620409,1.214,1.652,0,10.504621,6,4.5 +1859,0,0.305266,1,1,0,2,5,,3,3,Bagley,,641410,0.533,0.838,0,7.326385,8,4.5 +2471,1,0.36901,3,0,0,2,3,DIV,3,3,Saginaw,St,674904,0.275,0.644,0,8.856251,5,5 +2704,0,0.134692,1,1,0,2,4,,3,3,Rapid,,676501,0,0.135,0,3.232602,6,4.5 +3444,1,0.20943,3,0,0,2,3,DIV,3,3,Saginaw,St,674904,0.644,0.854,0,5.026328,5,5 +20094,-1,0.215417,0,3,0,2,3,DIV,3,3,Saginaw,St,4400013,0.637,0.852,0,5.169997,5,5 +20291,-1,0.365073,0,3,0,2,3,DIV,3,3,Saginaw,St,4400013,0.272,0.637,0,8.76175,5,5 +27844,0,0.628725,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.089407,0.15,4 +27846,0,0.498639,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.96733,0.15,4 +1083,0,0.331255,1,1,0,2,4,,3,3,South,Blvd,624102,0,0.331,0,7.950114,6,4.5 +299,0,0.174854,1,1,0,2,5,,3,3,Bagley,,641410,0.358,0.533,0,4.196492,8,4.5 +1264,0,0.029048,1,1,0,2,4,,3,3,Franklin,Rd,620409,1.652,1.681,0,0.697146,6,4.5 +3461,1,0.076744,4,0,0,2,3,DIV,3,3,Woodward,Ave,672705,0,0.077,0,1.841856,5,5 +20729,1,0.02229,1,0,0,2,3,,3,3,Woodward Turn Channel,,4407547,0,0.022,0,0.534953,5,5 +27843,0,0.202076,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.849823,0.15,4 +27845,0,0.22791,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.469844,0.15,4 +3185,0,0.008484,1,1,0,2,4,,3,3,Rapid,,676501,0.135,0.143,0,0.203627,6,4.5 +1020,1,0.406444,4,0,0,2,3,DIV,4,3,Woodward,Ave,616906,0.406,0.812,0,9.754653,3.7,5 +1255,-1,0.384887,0,4,0,2,3,DIV,4,3,Woodward,Ave,622302,0.418,0.803,0,9.237292,3.7,5 +1744,-1,0.418128,0,4,0,2,3,DIV,4,3,Woodward,Ave,622302,0,0.418,0,10.03506,3.7,5 +2110,1,0.406071,4,0,0,2,3,DIV,4,3,Woodward,Ave,616906,0,0.406,0,9.745716,3.7,5 +27914,0,0.432959,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.391017,0.15,4 +28099,0,0.454224,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.901384,0.15,4 +564,1,0.092578,4,0,0,2,3,DIV,3,3,Woodward,Ave,616906,0.812,0.905,0,2.221884,5,5 +1731,-1,0.078775,0,4,0,2,3,DIV,3,3,Woodward,Ave,622302,0.803,0.882,0,1.890597,5,5 +3469,-1,0.021491,0,2,0,2,3,,3,3,East,Blvd,672807,0,0.022,0,0.515791,5,5 +623,1,0.188416,3,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,3.67,3.859,0,4.521982,3.7,5 +3678,0,0.121167,1,1,0,2,4,,4,3,Lahser,Rd,685510,10.952,11.073,0,2.907999,4.5,4.5 +19903,-1,0.194625,0,3,0,2,3,DIV,4,3,Square Lake,Rd,4404559,1.217,1.412,0,4.671001,3.7,5 +2151,1,0.099558,3,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,3.859,3.958,0,2.38939,3.7,5 +20725,-1,0.078132,0,3,0,2,3,DIV,4,3,Square Lake,Rd,4404559,1.412,1.49,0,1.875157,3.7,5 +20888,1,0.019383,1,0,0,2,3,,4,3,W Square Lake/Lahser Turn,,4400153,0,0.019,0,0.465187,3.7,5 +2154,1,0.026924,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,0,0.027,0,0.646169,3.7,5 +20489,-1,0.018939,0,3,0,2,3,DIV,4,3,Square Lake,Rd,4404559,1.49,1.509,0,0.454539,3.7,5 +974,-1,0.028129,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,0,0.028,0,0.675087,3.7,5 +1647,1,0.020714,3,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,3.958,3.979,0,0.497138,3.7,5 +687,0,0.352416,2,2,1,2,4,,3,3,South,Blvd,616406,0.196,0.548,0,8.457976,6,4.5 +2436,0,0.363945,2,2,1,2,3,,4,3,East,Blvd,672807,0.163,0.527,0,8.734689,3.7,5 +3405,0,0.32112,2,2,1,2,3,,3,3,East,Blvd,672807,0.527,0.848,0,7.706886,5,5 +27904,0,0.373035,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.95283,0.15,4 +27911,0,0.439616,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.550777,0.15,4 +27913,0,0.351482,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.435557,0.15,4 +1127,0,0.195851,2,2,1,2,4,,3,3,South,Blvd,616406,0,0.196,0,4.700436,6,4.5 +1611,0,0.012505,2,2,1,2,4,,3,3,South,Blvd,624102,0.783,0.796,0,0.300128,6,4.5 +3563,0,0.321664,2,2,1,2,3,,3,3,East,Blvd,672807,0.848,1.169,0,7.719935,5,5 +505,0,0.387562,1,1,0,2,5,,3,3,Paddock,,624209,0.161,0.549,0,9.301497,8,4.5 +1162,0,0.304445,2,2,1,2,3,,3,3,University,Dr,624301,0.863,1.168,0,7.306684,5,5 +1292,0,0.367246,1,1,0,2,5,,3,3,Pike,,625107,0.495,0.862,0,8.813904,8,4.5 +1639,0,0.141845,2,2,1,2,3,,3,3,University,Dr,624301,0.721,0.863,0,3.404269,5,5 +2055,0,0.365624,2,2,0,2,4,,3,3,Auburn,Ave,625105,0.458,0.823,0,8.77497,6,4.5 +2543,0,0.329843,1,1,1,2,3,,3,3,Perry,,674007,1.127,1.457,0,7.91624,5,5 +2632,0,0.145913,2,2,0,2,3,,3,3,Montcalm,,673306,1.023,1.169,0,3.501905,5,5 +2743,0,0.507159,2,2,0,2,5,,3,3,Madison,,673804,0,0.507,0,12.171804,8,4.5 +2808,0,0.184135,2,2,1,2,3,,3,3,East,Blvd,673106,0.498,0.682,0,4.419245,5,5 +3008,0,0.179725,2,2,1,2,3,,3,3,Joslyn,Ave,674110,0.066,0.246,0,4.313408,5,5 +3130,0,0.163217,1,1,1,2,3,,3,3,Perry,,674007,0.782,0.945,0,3.9172,5,5 +3245,-1,0.431925,0,2,0,1,2,,3,3,W M 59,,677208,0,0.432,0,,0.58,7 +3297,1,0.330099,2,0,0,1,2,,3,3,E M 59,,648906,21.557,21.887,0,,0.58,7 +3385,0,0.336987,1,1,0,2,5,,3,3,Saginaw,St,674704,0.56,0.897,0,8.087677,8,4.5 +27785,0,0.305109,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.322619,0.15,4 +27811,0,0.514417,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.346019,0.15,4 +27866,0,0.24866,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.967847,0.15,4 +27893,0,0.307682,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.384357,0.15,4 +27923,0,0.397113,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.530706,0.15,4 +27925,0,0.235661,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.655863,0.15,4 +29756,0,0.492128,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.811079,0.15,4 +30189,0,0.392312,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.415482,0.15,4 +508,0,0.320653,2,2,0,2,4,,3,3,Auburn,Ave,625105,0.137,0.458,0,7.695667,6,4.5 +1258,0,0.313501,1,1,0,2,5,,3,3,Pike,,625107,0.181,0.495,0,7.524018,8,4.5 +1275,0,0.134582,1,1,0,2,5,,3,3,Paddock,,625001,1.274,1.408,0,3.229959,8,4.5 +1303,-1,0.326152,0,3,0,2,3,,3,3,University,Dr,624301,0.211,0.537,0,7.827649,5,5 +2555,0,0.050165,2,2,0,2,5,,2,3,Perry,,674007,0.219,0.269,0,1.203964,8.5,4.5 +2816,0,0.053505,1,1,0,2,5,,2,3,Mill,,675903,0.146,0.2,0,1.284111,8.5,4.5 +2871,0,0.082308,1,1,0,2,5,,2,3,Wayne,,675205,0.085,0.167,0,1.975392,8.5,4.5 +2977,1,0.145402,4,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.534,0.679,0,3.489649,6,5 +3276,0,0.084788,1,1,0,2,5,,2,3,Saginaw,St,674704,0,0.085,0,2.034921,8.5,4.5 +3302,1,0.348491,4,0,0,2,3,,3,3,Huron,St,648906,21.175,21.524,0,8.36379,5,5 +3336,1,0.098116,2,0,0,2,3,,2,3,Huron,St,648906,21.077,21.175,0,2.354788,6,5 +421,0,0.068109,1,1,0,2,5,,2,3,Saginaw,St,641406,0.083,0.151,0,1.634618,8.5,4.5 +422,1,0.12627,5,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.677,0.804,0,3.030477,6,5 +1958,0,0.098977,2,2,0,2,3,,2,3,Orchard Lake,Rd,641405,0,0.099,0,2.375452,6,5 +1973,1,0.114341,4,0,0,2,3,DIV,3,3,Woodward,Ave,641407,0.804,0.918,0,2.744183,5,5 +2615,1,0.142221,5,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.319,0.461,0,3.413299,6,5 +3346,0,0.072316,2,2,1,2,3,,2,3,Huron,St,648906,20.967,21.039,0,1.735578,6,5 +3570,1,0.074444,2,0,0,2,5,,2,3,Lawrence,,4416276,0.178,0.253,0,1.786654,8.5,4.5 +3601,0,0.070231,2,1,1,2,5,,2,3,Pike,,676308,0,0.07,0,1.685546,8.5,4.5 +27802,0,0.060745,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.457872,0.15,4 +27803,0,0.079547,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.909117,0.15,4 +27823,0,0.126689,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.040545,0.15,4 +27824,0,0.156813,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.763502,0.15,4 +27825,0,0.080472,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.931334,0.15,4 +28297,0,0.215126,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.163024,0.15,4 +2461,0,0.069107,1,1,0,2,5,,2,3,Wayne,,675205,0.252,0.321,0,1.658566,8.5,4.5 +2885,1,0.078527,2,0,0,2,5,,2,3,Lawrence,,4416276,0.033,0.112,0,1.884639,8.5,4.5 +3287,0,0.060205,2,1,1,2,5,,2,3,Pike,,676308,0.07,0.13,0,1.444915,8.5,4.5 +3350,0,0.100311,2,2,0,2,3,,2,3,Huron,St,648906,20.796,20.896,0,2.407457,6,5 +24562,1,0.08985,5,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.516,0.606,0,2.156393,6,5 +24563,1,0.071265,5,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.606,0.677,0,1.710355,6,5 +1052,0,0.083215,1,1,0,2,5,,2,3,Saginaw,St,641406,0,0.083,0,1.997162,8.5,4.5 +2593,0,0.045519,1,1,0,2,5,,2,3,Wayne,,675205,0.167,0.213,0,1.092466,8.5,4.5 +2609,1,0.066581,2,0,0,2,5,,2,3,Lawrence,,4416276,0.112,0.178,0,1.597943,8.5,4.5 +3349,0,0.07047,2,2,0,2,3,,2,3,Huron,St,648906,20.896,20.967,0,1.691287,6,5 +2736,0,0.038998,1,1,0,2,5,,2,3,Wayne,,675205,0.213,0.252,0,0.935944,8.5,4.5 +976,0,0.137123,2,2,0,2,3,,2,3,Auburn,Ave,625105,0,0.137,0,3.29096,6,5 +2889,1,0.054109,4,0,0,2,3,DIV,3,3,Woodward,Ave,672705,0.265,0.319,0,1.29862,5,5 +210,0,0.036966,1,2,0,2,5,,2,3,Pike,,625107,0.071,0.108,0,0.88719,8.5,4.5 +1748,-1,0.073695,0,2,0,2,5,,2,3,Pike,,625107,0.108,0.181,0,1.768669,8.5,4.5 +2587,0,0.067681,1,1,0,2,5,,2,3,Perry,,674007,0.07,0.138,0,1.624346,8.5,4.5 +3274,1,0.072335,5,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.461,0.534,0,1.73604,6,5 +3307,0,0.036232,2,2,0,2,5,,2,3,Water,,676009,0.062,0.098,0,0.869565,8.5,4.5 +3495,1,0.06784,2,0,0,2,5,,2,3,Mill,,675903,0.278,0.346,0,1.628156,8.5,4.5 +708,0,0.070808,1,2,0,2,5,,2,3,Pike,,625107,0,0.071,0,1.699391,8.5,4.5 +1972,0,0.070889,1,1,0,2,5,,2,3,Saginaw,St,641406,0.151,0.222,0,1.701338,8.5,4.5 +2868,0,0.069824,2,2,0,2,5,,2,3,Perry,,674007,0,0.07,0,1.675768,8.5,4.5 +2996,0,0.070053,2,2,0,2,5,,2,3,Water,,676009,0.098,0.168,0,1.681268,8.5,4.5 +27801,0,0.062483,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.499581,0.15,4 +27804,0,0.079673,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.91216,0.15,4 +2526,1,0.078994,2,0,0,2,5,,2,3,Mill,,675903,0.2,0.278,0,1.895853,8.5,4.5 +2846,0,0.081683,1,1,0,2,5,,2,3,Perry,,674007,0.138,0.219,0,1.960384,8.5,4.5 +3340,0,0.038297,2,2,1,2,3,,2,3,Huron,St,648906,21.039,21.077,0,0.919125,6,5 +2601,1,0.036064,1,0,0,2,5,,2,3,Lawrence,,4416276,0.253,0.289,0,0.865529,8.5,4.5 +2203,0,0.061943,2,2,0,2,5,,2,3,Water,,676009,0,0.062,0,1.486632,8.5,4.5 +3279,1,0.070205,2,0,0,2,5,,2,3,Mill,,675903,0.346,0.416,0,1.684923,8.5,4.5 +2499,1,0.118148,5,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.95,1.068,0,2.835556,6,5 +2538,0,0.289336,1,1,0,2,5,,3,3,Saginaw,St,674704,0.271,0.56,0,6.94406,8,4.5 +2849,0,0.219207,1,1,1,2,3,,3,3,Perry,,674007,0.462,0.681,0,5.260966,5,5 +2963,0,0.079345,1,1,1,2,5,,2,3,Lafayette,,676403,0.254,0.333,0,1.904276,8.5,4.5 +27780,0,0.136509,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.276211,0.15,4 +1459,1,0.10236,5,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0,0.102,0,2.456637,6,5 +2826,0,0.100825,1,1,0,2,5,,2,3,Saginaw,St,674704,0.17,0.271,0,2.419804,8.5,4.5 +3399,0,0.144152,1,1,0,2,5,,2,3,Oakland,Ave,672206,0.034,0.178,0,3.459658,8.5,4.5 +3572,0,0.051966,1,1,0,2,5,,2,3,Lafayette,,676403,0.178,0.23,0,1.247196,8.5,4.5 +27781,0,0.087299,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,2.095172,0.15,4 +27782,0,0.059037,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.41688,0.15,4 +2707,0,0.039607,1,1,0,2,5,,2,3,Lafayette,,676403,0.139,0.178,0,0.950576,8.5,4.5 +3171,0,0.085004,1,1,0,2,5,,2,3,Wayne,,675205,0,0.085,0,2.040092,8.5,4.5 +2967,0,0.022897,1,1,0,2,5,,2,3,Lafayette,,676403,0.116,0.139,0,0.549535,8.5,4.5 +2978,0,0.055445,1,1,0,2,5,,2,3,Saginaw,St,674704,0.085,0.14,0,1.330671,8.5,4.5 +27783,0,0.058441,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.402595,0.15,4 +2755,0,0.033527,1,1,0,2,5,,2,3,Oakland,Ave,672206,0,0.034,0,0.804658,8.5,4.5 +3121,0,0.029624,1,1,0,2,5,,2,3,Saginaw,St,674704,0.14,0.17,0,0.710975,8.5,4.5 +3262,0,0.02349,1,1,1,2,5,,2,3,Lafayette,,676403,0.23,0.254,0,0.563753,8.5,4.5 +1799,-1,0.100543,0,2,0,2,5,,2,3,University,Dr,624301,0.111,0.211,0,2.41303,8.5,4.5 +2788,1,0.191641,3,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.759,0.95,0,4.599393,6,5 +3144,0,0.078359,2,2,0,2,5,,2,3,Perry,,674007,0.383,0.462,0,1.88062,8.5,4.5 +1903,0,0.037458,1,1,0,2,5,,2,3,University,Dr,624301,0.073,0.111,0,0.899,8.5,4.5 +3527,0,0.11425,2,2,0,2,5,,2,3,Perry,,674007,0.269,0.383,0,2.741996,8.5,4.5 +2719,1,0.079758,4,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.679,0.759,0,1.914201,6,5 +2561,0,0.101274,1,1,1,2,3,,3,3,Perry,,674007,0.681,0.782,0,2.430571,5,5 +1569,0,0.237668,1,1,0,2,5,,3,3,Paddock,,625001,0.968,1.206,0,5.704043,8,4.5 +1771,0,0.06787,1,1,0,2,5,,3,3,Paddock,,625001,1.206,1.274,0,1.628887,8,4.5 +1223,-1,0.139196,0,2,0,2,3,,3,3,University,Dr,624301,0.582,0.721,0,3.340696,5,5 +3169,1,0.235123,2,0,0,2,3,,3,3,University Drive Access,RAMP,677605,0,0.235,0,5.642941,5,5 +973,0,0.161416,1,1,0,2,5,,3,3,Paddock,,624209,0,0.161,0,3.873973,8,4.5 +3299,1,0.033149,4,0,0,2,3,,3,3,E M 59,,648906,21.524,21.557,0,0.79558,5,5 +1708,-1,0.04481,0,3,0,2,3,,3,3,University,Dr,624301,0.537,0.582,0,1.075429,5,5 +1494,0,0.244044,1,1,0,2,5,,3,3,Glenwood,,4414416,0.654,0.898,0,5.857058,8,4.5 +3062,0,0.303258,1,1,0,2,5,,3,3,Saginaw,St,674704,0.897,1.2,0,7.278196,8,4.5 +3214,0,0.429999,2,2,0,2,3,,3,3,Montcalm,,673306,0.283,0.713,0,10.319985,5,5 +27805,0,0.208976,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.015425,0.15,4 +27806,0,0.289462,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.947077,0.15,4 +2766,0,0.068723,2,2,0,2,3,,3,3,Montcalm,,673306,0.214,0.283,0,1.649349,5,5 +526,0,0.167925,1,1,0,2,5,,3,3,Glenwood,,4414416,1.09,1.258,0,4.030192,8,4.5 +989,0,0.192169,1,1,0,2,5,,3,3,Glenwood,,4414416,0.898,1.09,0,4.612058,8,4.5 +27924,0,0.203296,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.879109,0.15,4 +2836,0,0.181743,1,1,1,2,3,,3,3,Perry,,674007,0.945,1.127,0,4.361838,5,5 +2074,0,0.008064,1,1,0,2,5,,3,3,Glenwood,,4414416,1.258,1.266,0,0.193526,8,4.5 +2744,0,0.239607,2,2,1,2,3,,3,3,Joslyn,Ave,674110,0.246,0.485,0,5.750571,5,5 +2904,0,0.310452,2,2,0,2,3,,3,3,Montcalm,,673306,0.713,1.023,0,7.450838,5,5 +27809,0,0.477252,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.454057,0.15,4 +2466,0,0.219071,2,2,1,2,3,,3,3,Joslyn,Ave,674110,0.485,0.704,0,5.257695,5,5 +836,0,0.314428,1,1,0,2,5,,3,3,Pike,,625107,0.862,1.176,0,7.546266,8,4.5 +1547,0,0.319166,2,2,0,2,4,,3,3,Auburn,Ave,625105,0.823,1.142,0,7.659978,6,4.5 +2650,1,0.263755,1,0,0,1,2,RON,3,3,East/W M 59,RAMP,677210,0,0.264,0,,1.09,4 +2942,-1,0.438001,0,2,0,1,2,,4,3,W M 59,,677208,0.432,0.87,0,,0.8,7.5 +3034,0,0.194711,2,2,1,2,3,,3,3,East,Blvd,673106,0,0.195,0,4.673067,5,5 +3295,1,0.303083,2,0,0,1,2,,3,3,E M 59,,648906,21.887,22.19,0,,0.58,7 +3562,1,0.366648,1,0,0,1,2,ROF,3,3,E M 59/East,RAMP,677204,0,0.367,0,,2.24,5 +27874,0,0.444813,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.675503,0.15,4 +27892,0,0.387348,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.296353,0.15,4 +27922,0,0.18187,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.364887,0.15,4 +2954,0,0.236034,2,2,1,2,3,,3,3,East,Blvd,672807,1.56,1.796,0,5.664805,5,5 +2742,0,0.055997,2,2,1,2,3,,3,3,East,Blvd,673106,0.315,0.371,0,1.343934,5,5 +2920,1,0.205289,1,0,0,1,2,ROF,4,3,W M 59/East,RAMP,677209,0,0.205,0,,2.24,5 +2952,1,0.135639,1,0,0,1,2,RON,3,3,East/E M 59,RAMP,677205,0.059,0.195,0,,1.09,4 +37928,1,0.079135,1,0,0,1,2,RON,3,3,S East/E M 59,RAMP,4416469,0,0.079,0,,1.09,4 +2761,0,0.114299,2,2,1,2,3,,3,3,East,Blvd,673106,0.195,0.309,0,2.743178,5,5 +3253,1,0.059201,1,0,0,1,2,RON,3,3,N East/E M 59,RAMP,677205,0,0.059,0,,1.09,4 +3005,0,0.005666,2,2,1,2,3,,3,3,East,Blvd,673106,0.309,0.315,0,0.13598,5,5 +2465,0,0.127036,2,2,1,2,3,,3,3,East,Blvd,673106,0.371,0.498,0,3.048868,5,5 +1624,0,0.143204,2,2,1,2,3,,3,3,University,Dr,624301,1.168,1.311,0,3.436888,5,5 +2725,0,0.312706,2,2,1,2,3,,3,3,East,Blvd,673106,1.055,1.368,0,7.504939,5,5 +2876,0,0.440334,1,1,1,2,3,,4,3,Perry,,674007,1.913,2.353,0,10.568027,3.7,5 +3243,0,0.111435,2,2,1,2,4,,3,3,Featherstone,,673909,0,0.111,0,2.674441,6,4.5 +3486,0,0.293064,2,2,1,2,3,,3,3,East,Blvd,673106,0.762,1.055,0,7.033527,5,5 +3503,0,0.183576,1,1,1,2,3,,3,3,Perry,,674007,1.457,1.64,0,4.405824,5,5 +3176,0,0.272822,1,1,1,2,3,,3,3,Perry,,674007,1.64,1.913,0,6.547735,5,5 +2515,0,0.080392,2,2,1,2,3,,3,3,East,Blvd,673106,0.682,0.762,0,1.929401,5,5 +3551,0,0.1219,2,2,1,2,5,,4,3,Madison,,673804,0.507,0.629,0,2.925596,5.8,4.5 +197,1,0.400005,1,0,0,1,2,ROF,4,3,N I 75 BL/Opdyke,RAMP,616310,0,0.4,0,,2.24,5 +688,1,0.221217,1,0,0,1,2,RON,4,3,N Opdyke/N I 75 BL,RAMP,616308,0,0.221,0,,1.09,4 +1150,-1,0.609043,0,3,0,1,2,,4,3,S I 75 BL,,625912,1.161,1.77,0,,0.8,7.5 +1542,1,0.279526,2,0,0,1,2,,4,3,N I 75 BL,,625903,1.224,1.504,0,,0.8,7.5 +1716,0,0.299451,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.783,2.082,0,7.186834,4.5,4.5 +1890,0,0.2968,1,1,0,2,4,,4,3,South,Blvd,616405,0,0.297,0,7.123212,4.5,4.5 +2136,1,0.264102,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,0,0.264,0,6.338453,4.5,4.5 +4877,1,0.58552,2,0,0,1,1,RFF,4,3,S I 75/N I 75 BL,RAMP,710405,0,0.585,0,,0.8,7.5 +21133,-1,0.279263,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4409039,0,0.279,0,6.702308,4.5,4.5 +21910,-1,0.972376,0,2,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,23.337025,5.8,4.5 +27584,0,0.75147,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.035284,0.15,4 +27589,0,0.432,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.36799,0.15,4 +27902,0,0.351707,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.440972,0.15,4 +27927,0,0.356088,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.546108,0.15,4 +30246,0,0.362926,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.710231,0.15,4 +30247,0,0.462294,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.095048,0.15,4 +615,1,0.067263,3,0,0,2,3,DIV,4,3,Square Lake,Rd,625903,1.676,1.744,0,1.614302,3.7,5 +1195,0,0.057539,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.324,1.381,0,1.380939,4.5,4.5 +25347,0,0.459992,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.039807,0.15,4 +27774,0,0.479624,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.510975,0.15,4 +29761,0,0.468658,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.247786,0.15,4 +27582,0,0.256944,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.166664,0.15,4 +27583,0,0.2187,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.248794,0.15,4 +28461,0,0.236111,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.666658,0.15,4 +30248,0,0.271572,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.517719,0.15,4 +866,0,0.247899,1,1,0,2,4,,4,3,Opdyke,Rd,616205,0.939,1.187,0,5.949579,4.5,4.5 +2171,1,0.229429,1,0,0,1,2,RON,4,3,S Opdyke/N I 75 BL,RAMP,616309,0,0.229,0,,1.09,4 +1066,1,0.172648,3,0,0,1,2,,4,3,N I 75 BL,,625903,1.504,1.676,0,,0.8,7.5 +1519,0,0.11185,1,1,0,2,4,,4,3,Opdyke,Rd,616205,0.828,0.939,0,2.684393,4.5,4.5 +1920,0,0.096211,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.193,1.289,0,2.309065,4.5,4.5 +1091,0,0.005525,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.187,1.193,0,0.132611,4.5,4.5 +1629,0,0.034893,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.289,1.324,0,0.837441,4.5,4.5 +884,0,0.401729,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.381,1.783,0,9.64149,4.5,4.5 +27926,0,0.180391,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.329384,0.15,4 +1142,0,0.465359,2,2,1,2,4,,4,3,South,Blvd,616406,1.088,1.553,0,11.16862,4.5,4.5 +1468,0,0.415851,2,2,1,2,4,,4,3,Opdyke,Rd,616205,2.299,2.714,0,9.980418,4.5,4.5 +25268,0,0.531111,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.746658,0.15,4 +27901,0,0.49014,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.763357,0.15,4 +695,0,0.266323,2,2,1,2,4,,4,3,South,Blvd,616406,0.822,1.088,0,6.391741,4.5,4.5 +21908,-1,0.173752,0,2,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,4.170054,5.8,4.5 +21909,-1,0.168293,0,2,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,4.039023,5.8,4.5 +1702,0,0.216417,2,2,1,2,4,,4,3,Opdyke,Rd,616205,2.082,2.299,0,5.194008,4.5,4.5 +1803,0,0.143056,2,2,1,2,4,,4,3,Opdyke,Rd,616205,2.714,2.857,0,3.433339,4.5,4.5 +1877,0,0.212935,2,2,1,2,4,,4,3,Opdyke,Rd,616205,2.857,3.07,0,5.110431,4.5,4.5 +366,1,0.266773,2,0,0,1,2,,4,3,N I 75 BL,,625903,0.607,0.874,0,,0.8,7.5 +1446,1,0.201127,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,0.264,0.465,0,4.827053,4.5,4.5 +1508,1,0.277907,1,0,0,1,2,RON,4,3,Square Lake/S I 75 BL,RAMP,625605,0.032,0.31,0,,1.09,4 +1628,-1,0.309124,0,3,0,1,2,,4,3,S I 75 BL,,625912,0.852,1.161,0,,0.8,7.5 +1924,1,0.350587,2,0,0,1,2,,4,3,N I 75 BL,,625903,0.874,1.224,0,,0.8,7.5 +2128,-1,0.233942,0,3,0,1,2,,4,3,S I 75 BL,,625912,0.618,0.852,0,,0.8,7.5 +21131,-1,0.176207,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4409039,0.291,0.467,0,4.228966,4.5,4.5 +590,1,0.224248,1,0,0,1,2,ROF,4,3,S I 75 BL/Square Lake,RAMP,625604,0,0.224,0,,2.24,5 +2118,1,0.032205,1,0,0,1,4,RSF,4,3,Square Lake/S I 75 BL,RAMP,625605,0,0.032,0,,4.5,4.5 +21132,-1,0.012085,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4409039,0.279,0.291,0,0.29004,4.5,4.5 +27587,0,0.273083,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.554,0.15,4 +1760,0,0.38141,2,2,0,2,4,,4,3,South,Blvd,616405,0.486,0.867,0,9.153849,4.5,4.5 +27929,0,0.317275,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.614594,0.15,4 +582,0,0.143726,2,2,0,2,4,,4,3,South,Blvd,616405,0.297,0.44,0,3.449413,4.5,4.5 +1450,0,0.045333,2,2,0,2,4,,4,3,South,Blvd,616405,0.44,0.486,0,1.087991,4.5,4.5 +547,-1,0.167939,0,4,0,1,1,,4,3,S I 75,,646106,18.947,19.115,0,,0.8,7.5 +670,0,0.158759,2,2,1,2,4,,4,3,Opdyke,Rd,616205,4.17,4.329,0,3.810218,4.5,4.5 +1136,0,0.466612,2,2,1,2,3,,4,3,University,Dr,624301,2.428,2.894,0,11.198693,3.7,5 +1310,0,0.175177,1,1,1,2,4,,4,3,Auburn,Rd,625105,2.125,2.3,0,4.204256,4.5,4.5 +1343,0,0.650229,2,2,1,2,4,,4,3,Opdyke,Rd,616205,4.329,4.979,0,15.605497,4.5,4.5 +1672,0,0.011213,2,2,1,2,4,,4,3,Featherstone,,616508,0.092,0.103,0,0.269124,4.5,4.5 +2277,1,0.264625,4,0,0,1,1,,4,3,N I 75,,647308,18.918,19.183,0,,0.8,7.5 +2874,-1,0.312537,0,3,0,1,2,,4,3,W M 59,,677208,1.677,1.989,0,,0.8,7.5 +3291,1,0.31239,3,0,0,1,2,,4,3,E M 59,,648906,23.245,23.557,0,,0.8,7.5 +25151,0,0.313658,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.527785,0.15,4 +27897,0,0.249823,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.995747,0.15,4 +27899,0,0.407714,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.785135,0.15,4 +701,1,0.339305,1,0,0,1,2,ROF,4,3,E M 59/Opdyke,RAMP,616502,0,0.339,0,,2.24,5 +1704,0,0.268972,2,2,1,2,4,,4,3,Opdyke,Rd,616205,3.429,3.698,0,6.455333,4.5,4.5 +1807,0,0.551264,2,2,0,2,4,,4,3,Auburn,Ave,625105,1.574,2.125,0,13.230333,4.5,4.5 +3293,1,0.279444,2,0,0,1,2,,4,3,E M 59,,648906,22.966,23.245,0,,0.8,7.5 +27920,0,0.563893,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.533441,0.15,4 +30190,0,0.492697,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.82472,0.15,4 +27896,0,0.267352,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.416451,0.15,4 +2141,0,0.0677,2,2,0,2,4,,4,3,Auburn,Ave,625105,1.506,1.574,0,1.624801,4.5,4.5 +549,0,0.070848,2,2,1,2,4,,4,3,Opdyke,Rd,616205,3.358,3.429,0,1.700342,4.5,4.5 +748,0,0.228708,2,2,1,2,4,,4,3,Opdyke,Rd,616205,3.698,3.927,0,5.488984,4.5,4.5 +797,1,0.215323,1,0,0,1,2,ROF,4,3,W M 59/Opdyke,RAMP,616506,0,0.215,0,,2.24,5 +1164,1,0.224816,1,0,0,1,2,RON,4,3,Opdyke/E M 59,RAMP,616503,0,0.225,0,,1.09,4 +1496,1,0.277382,1,0,0,1,2,RON,4,3,Opdyke/W M 59,RAMP,616507,0,0.277,0,,1.09,4 +3174,-1,0.208958,0,2,0,1,2,,4,3,W M 59,,677208,1.468,1.677,0,,0.8,7.5 +1709,0,0.243681,2,2,1,2,4,,4,3,Opdyke,Rd,616205,3.927,4.17,0,5.848355,4.5,4.5 +1617,0,0.487386,2,2,1,2,3,,4,3,University,Dr,624301,1.94,2.428,0,11.69727,3.7,5 +3166,0,0.56179,2,2,1,2,4,,4,3,Featherstone,,673909,0.611,1.172,0,13.48295,4.5,4.5 +27831,0,0.417409,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.017828,0.15,4 +27898,0,0.474834,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.39601,0.15,4 +27813,0,0.254321,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.103701,0.15,4 +27900,0,0.328084,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.874016,0.15,4 +1024,0,0.09185,2,2,1,2,4,,4,3,Featherstone,,616508,0,0.092,0,2.204396,4.5,4.5 +723,1,0.517661,1,0,0,1,1,RFF,4,3,E M 59/S I 75,RAMP,616504,0,0.518,0,,0.8,7.5 +1244,1,0.485076,1,0,0,1,1,RFF,4,3,S I 75/W M 59,RAMP,616505,0,0.485,0,,0.8,7.5 +1440,0,0.488328,1,1,1,2,4,,4,3,Auburn,Rd,625105,2.521,3.009,0,11.719878,4.5,4.5 +1994,-1,0.32012,0,4,0,1,1,,4,3,S I 75,,646106,18.24,18.56,0,,0.8,7.5 +2280,1,0.323881,4,0,0,1,1,,4,3,N I 75,,647308,18.17,18.494,0,,0.8,7.5 +3105,1,0.551537,1,0,0,1,1,RFF,4,3,N I 75/E M 59,RAMP,675005,0,0.551,0,,0.8,7.5 +3278,1,0.118423,3,0,0,1,2,,4,3,E M 59,,648906,23.796,23.915,0,,0.8,7.5 +3552,-1,0.118881,0,3,0,1,2,,4,3,W M 59,,677208,2.239,2.358,0,,0.8,7.5 +3554,1,0.220999,1,0,0,1,1,RFS,4,3,S I 75/E M 59,RAMP,677207,0,0.221,0,,0.22,6 +4904,1,0.217306,1,0,0,1,1,RFS,4,3,W M 59/S I 75,RAMP,710303,0,0.217,0,,0.22,6 +1959,0,0.220996,1,1,1,2,4,,4,3,Auburn,Rd,625105,2.3,2.521,0,5.303904,4.5,4.5 +27906,0,0.281038,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.744909,0.15,4 +27931,0,0.236198,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.668761,0.15,4 +2596,-1,0.249412,0,3,0,1,2,,4,3,W M 59,,677208,1.989,2.239,0,,0.8,7.5 +3283,1,0.239109,3,0,0,1,2,,4,3,E M 59,,648906,23.557,23.796,0,,0.8,7.5 +1008,-1,0.279312,0,4,0,1,1,,4,3,S I 75,,646106,18.668,18.947,0,,0.8,7.5 +2278,1,0.310079,4,0,0,1,1,,4,3,N I 75,,647308,18.608,18.918,0,,0.8,7.5 +3271,1,0.24926,3,0,0,1,2,,4,3,E M 59,,648906,23.915,24.164,0,,0.8,7.5 +3546,-1,0.209013,0,3,0,1,2,,4,3,W M 59,,677208,2.358,2.566,0,,0.8,7.5 +4547,1,0.482453,1,0,0,1,1,RFF,4,3,W M 59/N I 75,RAMP,710305,0,0.482,0,,0.8,7.5 +340,1,0.207936,1,0,0,1,1,RFS,4,3,E M 59/N I 75,RAMP,624210,0,0.208,0,,0.22,6 +1483,-1,0.107701,0,4,0,1,1,,4,3,S I 75,,646106,18.56,18.668,0,,0.8,7.5 +2279,1,0.11408,4,0,0,1,1,,4,3,N I 75,,647308,18.494,18.608,0,,0.8,7.5 +4898,1,0.210796,1,0,0,1,1,RFS,4,3,N I 75/W M 59,RAMP,710304,0,0.211,0,,0.22,6 +1194,1,0.479105,2,0,0,2,4,DIV,4,3,Featherstone,,616508,0.363,0.842,0,11.498528,4.5,4.5 +2088,-1,0.593784,0,4,0,1,1,,4,3,S I 75,,646106,19.115,19.709,0,,0.8,7.5 +20042,1,0.725022,1,0,0,1,1,ROF,4,3,S I 75/Chrysler,RAMP,1920603,0,0.725,0,,2.24,5 +20043,1,0.682783,1,0,0,1,1,RON,4,3,Chrysler/S I 75,RAMP,1920510,0,0.683,0,,1.09,4 +20044,1,0.129325,1,0,0,1,1,ROF,4,3,N I 75/Chrysler,RAMP,1920509,0.341,0.47,0,,2.24,5 +24546,1,0.287314,4,0,0,1,1,,4,3,N I 75,,647308,19.183,19.47,0,,0.8,7.5 +40330,-1,0.680561,0,4,0,1,1,,4,3,S I 75,,646106,19.878,20.559,0,,0.8,7.5 +27834,0,0.462013,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.088316,0.15,4 +27835,0,0.197462,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.739086,0.15,4 +554,0,0.245476,2,2,1,2,4,,4,3,Opdyke,Rd,616205,4.979,5.225,0,5.891418,4.5,4.5 +40341,1,0.029708,1,0,0,1,1,RON,4,3,E University/S I 75,RAMP,5500952,0,0.03,0,,1.09,4 +40342,1,0.042957,1,0,0,1,1,RON,4,3,W University/S I 75,RAMP,5500954,0,0.043,0,,1.09,4 +1995,-1,0.169175,0,4,0,1,1,,4,3,S I 75,,646106,19.709,19.878,0,,0.8,7.5 +37386,-1,0.032845,0,1,0,2,4,,5,8,Hamburg,Rd,4105276,0,0.033,0,0.78829,3,4 +20045,1,0.340914,1,0,0,1,1,ROF,4,3,N I 75/Chrysler,RAMP,1920509,0,0.341,0,,2.24,5 +445,-1,0.508142,0,3,0,1,1,,4,3,S I 75,,646106,23.503,24.011,0,,0.8,7.5 +697,1,0.333623,3,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.919,1.252,0,8.006954,3.7,5 +906,-1,0.843721,0,4,0,1,1,,4,3,S I 75,,646106,22.659,23.503,0,,0.8,7.5 +1968,0,0.162434,2,2,1,2,4,,4,3,Silver Bell,Rd,626102,1.206,1.368,0,3.898419,4.5,4.5 +2166,-1,0.075908,0,3,0,2,3,DIV,4,3,Lapeer,Rd,616605,1.164,1.24,0,1.821793,3.7,5 +2272,1,1.532108,4,0,0,1,1,,4,3,N I 75,,647308,22.299,23.831,0,,0.8,7.5 +2591,0,0.397522,1,1,1,2,5,,4,3,Harmon,Rd,678010,0.89,1.287,0,9.540534,5.8,4.5 +2995,0,0.321593,2,2,1,2,3,,4,3,Walton,Blvd,672601,1.692,2.014,0,7.718225,3.7,5 +37074,1,0.011272,1,0,0,1,1,RON,4,3,Joslyn/S I 75,RAMP,669205,0,0.011,0,,1.09,4 +3197,0,0.217313,2,2,1,2,3,,4,3,Joslyn,Rd,674110,2.752,2.969,0,5.215521,3.7,5 +3342,0,0.363783,1,1,0,2,5,,4,3,Giddings,Rd,676006,1.686,2.049,0,8.730793,5.8,4.5 +3415,0,0.377831,1,1,0,2,5,,4,3,Taylor,Rd,669207,0.472,0.849,0,9.067934,5.8,4.5 +21050,0,0.248672,2,2,1,2,4,,4,3,Brown,Rd,4416311,2.061,2.309,0,5.968131,4.5,4.5 +27533,0,0.213147,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.115535,0.15,4 +27567,0,1.055965,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.343167,0.15,4 +27817,0,0.524046,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.577106,0.15,4 +27938,0,0.939218,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.54123,0.15,4 +27941,0,0.58624,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.069767,0.15,4 +27942,0,0.440546,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.573098,0.15,4 +27944,0,0.522761,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.546261,0.15,4 +27947,0,0.422715,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.145154,0.15,4 +27948,0,0.269854,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.476485,0.15,4 +27960,0,0.617644,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.823453,0.15,4 +29854,0,0.437396,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.497501,0.15,4 +30185,0,1.049715,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.19317,0.15,4 +2527,0,0.279953,2,2,1,2,3,,4,3,Joslyn,Rd,674110,2.472,2.752,0,6.718884,3.7,5 +3106,0,0.54058,2,2,1,2,3,,4,3,Joslyn,Ave,674110,1.695,2.235,0,12.973909,3.7,5 +3147,0,0.632993,2,2,1,2,3,,4,3,Walton,Blvd,672601,1.011,1.644,0,15.19182,3.7,5 +27815,0,0.261033,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.264801,0.15,4 +27888,0,0.56372,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.529284,0.15,4 +27937,0,0.408041,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.79298,0.15,4 +27945,0,0.555972,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.343332,0.15,4 +27946,0,0.318319,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.639649,0.15,4 +2838,0,0.41209,2,2,0,2,5,,3,3,Columbia,,673503,0.262,0.674,0,9.89015,8,4.5 +3467,0,0.48751,2,2,1,2,3,,3,3,Joslyn,Ave,674110,1.207,1.695,0,11.700237,5,5 +3479,0,0.472266,2,2,1,2,3,,3,3,Walton,Blvd,672601,0.539,1.011,0,11.334388,5,5 +27812,0,0.24305,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.833203,0.15,4 +2510,0,0.032916,2,2,1,2,3,,3,3,Walton,Blvd,672601,0.506,0.539,0,0.789982,5,5 +2495,0,0.320786,2,2,1,2,3,,3,3,Joslyn,Ave,674110,0.887,1.207,0,7.698859,5,5 +2544,0,0.338075,2,2,0,2,5,,3,3,Columbia,,673503,0.674,1.012,0,8.113807,8,4.5 +2817,0,0.236691,2,2,1,2,3,,4,3,Joslyn,Rd,674110,2.235,2.472,0,5.680585,3.7,5 +27889,0,0.518532,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.444777,0.15,4 +3306,0,0.048154,2,2,1,2,3,,4,3,Walton,Blvd,672601,1.644,1.692,0,1.155691,3.7,5 +27816,0,0.385021,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.240515,0.15,4 +2442,0,0.471615,1,1,0,2,5,,4,3,Taylor,Rd,669207,0,0.472,0,11.318755,5.8,4.5 +27936,0,0.367275,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.814611,0.15,4 +1226,0,0.485737,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,0,0.486,0,11.657692,5.8,4.5 +2271,1,0.248282,3,0,0,1,1,,4,3,N I 75,,647308,23.831,24.079,0,,0.8,7.5 +2733,1,0.062787,2,0,0,2,4,DIV,4,3,Joslyn,Rd,674110,3.907,3.97,0,1.506898,4.5,4.5 +2870,0,0.890055,1,1,1,2,5,,4,3,Harmon,Rd,678010,0,0.89,0,21.361313,5.8,4.5 +3477,1,0.37966,1,0,0,1,1,ROF,4,3,N I 75/Joslyn,RAMP,678201,0,0.38,0,,2.24,5 +19601,1,0.473517,1,0,0,1,1,ROF,4,3,S I 75/N Joslyn,RAMP,1849501,0,0.473,0,,2.24,5 +20493,0,0.452828,2,2,1,2,4,,4,3,Giddings,Rd,4407628,0,0.453,0,10.867877,4.5,4.5 +21053,-1,0.016478,0,2,0,2,4,RSF,4,3,Joslyn/Brown Cutoff,,4463373,0,0.017,0,0.395468,4.5,4.5 +24971,0,0.456481,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.955554,0.15,4 +25164,0,1.158939,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,27.814539,0.15,4 +25168,0,0.598101,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.35442,0.15,4 +2270,1,0.371476,3,0,0,1,1,,4,3,N I 75,,647308,24.079,24.45,0,,0.8,7.5 +2522,1,0.187235,3,0,0,2,4,DIV,4,3,Joslyn,Rd,674110,3.61,3.797,0,4.493629,4.5,4.5 +19597,1,0.291613,1,0,0,1,1,RON,4,3,S Joslyn/N I 75,RAMP,1849506,0,0.292,0,,1.09,4 +27767,0,0.481939,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.566544,0.15,4 +1996,-1,0.230936,0,3,0,1,1,,4,3,S I 75,,646106,24.011,24.241,0,,0.8,7.5 +2509,1,0.232128,1,0,0,1,1,RON,4,3,N Joslyn/N I 75,RAMP,678110,0,0.232,0,,1.09,4 +2568,1,0.17295,1,0,0,1,1,ROF,4,3,S I 75/S Joslyn,RAMP,678109,0,0.173,0,,2.24,5 +2581,0,0.149355,2,2,0,2,3,,4,3,Joslyn,Rd,674110,3.398,3.547,0,3.584518,3.7,5 +2814,0,0.051263,3,2,1,2,3,,4,3,Joslyn,Rd,674110,3.558,3.61,0,1.230309,3.7,5 +3543,0,0.010905,2,2,0,2,3,,4,3,Joslyn,Rd,674110,3.547,3.558,0,0.261724,3.7,5 +2893,-1,0.204461,0,2,0,2,3,DV2,4,3,Joslyn,Rd,4416557,0.126,0.33,0,4.907066,3.7,5 +2619,0,0.043897,2,2,1,2,3,,4,3,Joslyn,Rd,674110,3.303,3.347,0,1.05352,3.7,5 +2862,0,0.05104,2,2,0,2,3,,4,3,Joslyn,Rd,674110,3.347,3.398,0,1.224954,3.7,5 +39790,-1,0.008299,0,2,0,2,4,DIV,4,3,Brown,Rd,4463371,0.224,0.232,0,0.19918,4.5,4.5 +2459,0,0.689854,1,1,0,2,4,,4,3,Joslyn,Rd,674110,4.411,5.101,0,16.556498,4.5,4.5 +3429,0,0.19996,1,1,0,2,4,,4,3,Joslyn,Rd,674110,5.101,5.301,0,4.799039,4.5,4.5 +21051,0,0.462296,2,2,0,2,4,,4,3,Brown,Rd,4416311,1.599,2.061,0,11.095101,4.5,4.5 +27940,0,0.344209,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.261026,0.15,4 +27943,0,0.329455,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.906925,0.15,4 +39786,1,0.084802,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,1.514,1.599,0,2.035245,4.5,4.5 +27939,0,0.095289,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.286928,0.15,4 +417,0,0.685114,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,0.521,1.206,0,16.442735,5.8,4.5 +20304,0,0.471132,2,2,1,2,4,,4,3,Giddings,Rd,4407628,0.453,0.924,0,11.307163,4.5,4.5 +27339,0,0.632668,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.184025,0.15,4 +27950,0,0.667679,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.024299,0.15,4 +27951,0,0.495295,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.88709,0.15,4 +784,0,0.035504,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,0.486,0.521,0,0.852096,5.8,4.5 +390,1,0.197036,2,0,0,2,4,DIV,4,3,Opdyke,Rd,616205,6.433,6.63,0,4.728873,4.5,4.5 +548,-1,1.750733,0,4,0,1,1,,4,3,S I 75,,646106,20.559,22.31,0,,0.8,7.5 +684,1,0.054682,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0,0.055,0,1.312359,3.7,5 +1332,0,0.249844,2,2,1,2,3,,4,3,Walton,Blvd,616602,0,0.25,0,5.996247,3.7,5 +1545,-1,0.171239,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,0,0.171,0,4.109731,3.7,5 +2274,1,1.491139,4,0,0,1,1,,4,3,N I 75,,647308,20.523,22.013,0,,0.8,7.5 +2764,0,0.187695,2,2,1,2,3,,4,3,Lapeer,Rd,674007,3.811,3.999,0,4.504672,3.7,5 +3026,0,0.38755,1,1,0,2,5,,4,3,Giddings,Rd,676006,0.782,1.169,0,9.301201,5.8,4.5 +3530,0,0.261116,1,1,0,2,5,,4,3,Pontiac,Rd,677501,0.196,0.457,0,6.266775,5.8,4.5 +19595,1,0.144221,2,0,0,1,2,,4,3,S I 75 BL,,1849507,0.191,0.336,0,,0.8,7.5 +20350,-1,0.102908,0,2,0,2,4,DIV,4,3,Opdyke,Rd,4404111,0,0.103,0,2.469798,4.5,4.5 +21176,-1,0.203349,0,2,0,1,2,,4,3,N I 75 BL,,4408159,0.137,0.34,0,,0.8,7.5 +27819,0,0.237808,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.707391,0.15,4 +27953,0,0.250655,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.015721,0.15,4 +29853,0,0.656026,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.744616,0.15,4 +2488,0,0.314983,2,2,1,2,3,,4,3,Walton,Blvd,672601,2.222,2.537,0,7.55959,3.7,5 +2594,0,0.207836,2,2,1,2,3,,4,3,Perry,,674007,3.207,3.415,0,4.988056,3.7,5 +2872,0,0.267245,2,2,1,2,3,,4,3,Perry,,674007,2.94,3.207,0,6.413868,3.7,5 +2980,0,0.576774,1,1,0,2,5,,4,3,Giddings,Rd,676006,0,0.577,0,13.84257,5.8,4.5 +27957,0,0.214297,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.143126,0.15,4 +2738,0,0.170488,2,2,1,2,3,,4,3,Walton,Blvd,672601,2.014,2.184,0,4.091717,3.7,5 +27954,0,0.263276,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.31863,0.15,4 +27956,0,0.263905,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.333713,0.15,4 +3343,0,0.113019,1,1,0,2,5,,4,3,Giddings,Rd,676006,0.669,0.782,0,2.712461,5.8,4.5 +2720,0,0.092376,1,1,0,2,5,,4,3,Giddings,Rd,676006,0.577,0.669,0,2.217028,5.8,4.5 +2774,0,0.037807,2,2,1,2,3,,4,3,Walton,Blvd,672601,2.184,2.222,0,0.907363,3.7,5 +2557,0,0.196059,1,1,0,2,5,,4,3,Pontiac,Rd,677501,0,0.196,0,4.705427,5.8,4.5 +3365,0,0.334748,2,2,1,2,3,,4,3,Perry,,674007,3.415,3.749,0,8.033957,3.7,5 +3041,0,0.061923,2,2,1,2,3,,4,3,Lapeer,Rd,674007,3.749,3.811,0,1.48616,3.7,5 +2089,-1,0.349486,0,4,0,1,1,,4,3,S I 75,,646106,22.31,22.659,0,,0.8,7.5 +2753,0,0.516298,1,1,0,2,5,,4,3,Giddings,Rd,676006,1.169,1.686,0,12.391162,5.8,4.5 +4533,1,0.456635,1,0,0,1,1,RFS,4,3,S I 75 BL,RAMP,710406,0,0.457,0,,0.22,6 +27949,0,0.585218,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.045234,0.15,4 +27796,0,0.354897,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.517537,0.15,4 +815,1,0.326383,1,0,0,1,1,RFS,4,3,N I 75 BL/S I 75,RAMP,625306,0,0.326,0,,0.22,6 +2273,1,0.285619,4,0,0,1,1,,4,3,N I 75,,647308,22.013,22.299,0,,0.8,7.5 +4857,1,0.195181,1,0,0,1,1,RFS,4,3,N I 75 BL/N I 75,RAMP,710504,0,0.195,0,,0.22,6 +19596,1,0.191435,1,0,0,1,1,RFF,4,3,S I 75 BL,,1849507,0,0.191,0,,0.8,7.5 +21177,-1,0.137114,0,1,0,1,1,RFF,4,3,N I 75 BL/S I 75,,4408159,0,0.137,0,,0.8,7.5 +350,1,0.253868,1,0,0,1,1,RFS,4,3,N I 75/S I 75 BL,RAMP,625307,0,0.254,0,,0.22,6 +40333,1,0.180754,2,0,0,2,3,DIV,4,3,University,Dr,624301,2.894,3.075,0,4.33809,3.7,5 +1638,0,0.301881,2,2,1,2,4,,4,3,Opdyke,Rd,616205,5.852,6.154,0,7.245134,4.5,4.5 +36146,1,0.244871,1,0,0,1,1,RON,4,3,Chrysler/N I 75,RAMP,4416271,0,0.245,0,,1.09,4 +2903,0,0.360716,1,1,0,2,5,,4,3,Pontiac,Rd,677501,0.565,0.926,0,8.657177,5.8,4.5 +27828,0,0.351701,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.440824,0.15,4 +27952,0,0.349918,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.398036,0.15,4 +40325,1,0.335606,2,0,0,1,1,ROF,4,3,N I 75/University,RAMP,5500963,0,0.336,0,,2.24,5 +40329,1,0.213879,2,0,0,1,1,FCD,4,3,N I 75 CD,,5500964,0.236,0.45,0,,0.8,7.5 +40339,1,0.026851,2,0,0,2,3,DIV,4,3,University,Dr,624301,3.104,3.131,0,0.644435,3.7,5 +40338,1,0.033472,2,0,0,1,1,ROF,4,3,S I 75/University,RAMP,678208,0.372,0.405,0,,2.24,5 +1763,0,0.19148,2,2,1,2,4,,4,3,Opdyke,Rd,616205,5.66,5.852,0,4.595522,4.5,4.5 +3211,0,0.108126,1,1,0,2,5,,4,3,Pontiac,Rd,677501,0.457,0.565,0,2.595031,5.8,4.5 +26131,0,0.145225,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.485388,0.15,4 +27830,0,0.145799,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.499181,0.15,4 +40327,1,0.728816,4,0,0,1,1,,4,3,N I 75,,647308,19.47,20.198,0,,0.8,7.5 +40331,1,0.299731,1,0,0,1,1,RON,4,3,E University/S I 75,RAMP,5500952,0.03,0.329,0,,1.09,4 +40337,1,0.045596,1,0,0,1,1,ROF,4,3,S I 75/W University,RAMP,5500955,0,0.046,0,,2.24,5 +40348,0,0.203488,1,1,0,2,5,,4,3,Pontiac,Rd,677501,0.926,1.129,0,4.883719,5.8,4.5 +1955,0,0.204608,2,2,1,2,4,,4,3,Opdyke,Rd,616205,6.154,6.358,0,4.910598,4.5,4.5 +789,0,0.075178,2,2,1,2,4,,4,3,Opdyke,Rd,616205,6.358,6.433,0,1.804277,4.5,4.5 +40322,1,0.066554,2,0,0,1,1,ROF,4,3,N I 75/W University,RAMP,5500956,0,0.067,0,,2.24,5 +40321,1,0.083866,2,0,0,1,1,ROF,4,3,N I 75/University,RAMP,5500963,0.336,0.419,0,,2.24,5 +25191,0,0.357507,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.580171,0.15,4 +40324,1,0.038284,2,0,0,2,3,DIV,4,3,University,Dr,624301,3.316,3.354,0,0.918828,3.7,5 +602,-1,0.488969,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,0.171,0.66,0,11.735259,3.7,5 +1131,1,0.518317,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.155,0.674,0,12.439619,3.7,5 +689,1,0.060316,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.095,0.155,0,1.447587,3.7,5 +20843,-1,0.07953,0,2,0,2,3,DIV,4,3,Opdyke,Rd,4404111,0.147,0.227,0,1.908718,3.7,5 +1128,1,0.040455,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.055,0.095,0,0.970916,3.7,5 +20148,-1,0.044227,0,2,0,2,4,DIV,4,3,Opdyke,Rd,4404111,0.103,0.147,0,1.061455,4.5,4.5 +20603,1,0.037413,1,0,0,2,3,,4,3,Opdyke,Rd,4404112,0,0.037,0,0.897904,3.7,5 +633,-1,0.34598,0,3,0,2,3,DIV,4,3,Lapeer,Rd,616605,0.819,1.164,0,8.30352,3.7,5 +4516,1,0.272701,1,0,0,1,2,RON,4,3,S M 24/I 75,RAMP,710506,0,0.273,0,,1.09,4 +4854,1,0.229905,1,0,0,1,2,ROF,4,3,S I 75 BL,,710507,0,0.23,0,,2.24,5 +19592,1,0.331421,1,0,0,1,2,RON,4,3,N I 75 BL,,1849509,0,0.331,0,,1.09,4 +19593,1,0.248037,2,0,0,1,2,ROF,4,3,S I 75/N M 24,RAMP,1849508,0,0.248,0,,2.24,5 +19594,1,0.162657,2,0,0,1,2,ROF,4,3,S I 75/N M 24,,1849507,0.336,0.498,0,,2.24,5 +21175,-1,0.163482,0,1,0,1,2,RON,4,3,N I 75 BL,,4408159,0.34,0.504,0,,1.09,4 +692,1,0.10741,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.674,0.781,0,2.57783,3.7,5 +1137,1,0.137577,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.781,0.919,0,3.301853,3.7,5 +2132,-1,0.158583,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,0.66,0.819,0,3.806003,3.7,5 +716,1,0.780822,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,2.27,3.05,0,18.739723,3.7,5 +832,-1,0.780019,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,2.257,3.037,0,18.720461,3.7,5 +970,0,0.704311,2,2,0,2,4,,4,3,Silver Bell,Rd,626102,1.686,2.39,0,16.903457,4.5,4.5 +3157,0,0.485332,1,1,1,2,5,,4,3,Harmon,Rd,678106,0.539,1.024,0,11.647968,5.8,4.5 +21048,0,0.595343,2,2,0,2,4,,4,3,Brown,Rd,4416311,2.719,3.314,0,14.28823,4.5,4.5 +27932,0,0.375569,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.013658,0.15,4 +27934,0,0.365703,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.776876,0.15,4 +27935,0,0.489743,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.753833,0.15,4 +27963,0,0.656254,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.75009,0.15,4 +29855,0,0.67035,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.08839,0.15,4 +2752,0,0.569934,1,1,0,2,5,,4,3,Giddings,Rd,676006,2.193,2.763,0,13.678406,5.8,4.5 +3485,0,0.539219,1,1,1,2,5,,4,3,Harmon,Rd,678106,0,0.539,0,12.941254,5.8,4.5 +21049,0,0.409766,2,2,0,2,4,,4,3,Brown,Rd,4416311,2.309,2.719,0,9.834388,4.5,4.5 +27959,0,0.295586,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.094056,0.15,4 +3025,0,0.143853,1,1,0,2,5,,4,3,Giddings,Rd,676006,2.049,2.193,0,3.452463,5.8,4.5 +27961,0,0.290871,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.98091,0.15,4 +27933,0,0.502445,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.058681,0.15,4 +1452,0,0.317704,2,2,0,2,4,,4,3,Silver Bell,Rd,626102,1.368,1.686,0,7.624889,4.5,4.5 +20107,0,0.261647,1,1,0,2,5,,4,3,Giddings,Rd,4407722,0,0.262,0,6.279538,5.8,4.5 +700,1,0.564627,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,1.495,2.06,0,13.551058,3.7,5 +913,-1,0.564546,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,1.483,2.047,0,13.549111,3.7,5 +1141,1,0.24335,3,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,1.252,1.495,0,5.840409,3.7,5 +1370,-1,0.242671,0,3,0,2,3,DIV,4,3,Lapeer,Rd,616605,1.24,1.483,0,5.824113,3.7,5 +2855,0,0.014511,1,1,1,2,5,,4,3,Harmon,Rd,678106,1.024,1.039,0,0.348257,5.8,4.5 +1156,1,0.209914,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,2.06,2.27,0,5.037941,3.7,5 +1288,-1,0.210125,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,2.047,2.257,0,5.04299,3.7,5 +21046,0,0.011862,2,2,0,2,4,,4,3,Brown,Rd,4416311,3.314,3.326,0,0.284685,4.5,4.5 +2057,0,0.40306,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,2.401,2.804,0,9.673444,4.5,4.5 +27535,0,0.534167,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.820015,0.15,4 +503,0,0.010757,2,2,0,2,4,,4,3,Silver Bell,Rd,626102,2.39,2.401,0,0.258158,4.5,4.5 +18,-1,0.239623,0,3,0,1,1,,3,3,S I 75,,646106,6.11,6.349,0,,0.58,7 +137,0,0.213156,2,2,1,2,3,,3,3,13 Mile,Rd,607408,4.018,4.231,0,5.115736,5,5 +167,1,0.225064,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.005,2.23,0,5.401546,5,5 +278,1,0.330131,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,5.659,5.989,0,7.923155,5,5 +294,1,0.261487,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,9,9.261,0,6.275685,5,5 +301,-1,0.648706,0,4,0,2,5,,3,3,10 Mile,Rd,644205,0.934,1.583,0,15.568953,8,4.5 +428,0,0.491632,1,1,0,2,5,,3,3,Webster,Rd,644506,0.475,0.967,0,11.799165,8,4.5 +439,0,0.211417,2,2,1,2,4,,3,3,Main,,644806,3.916,4.127,0,5.073997,6,4.5 +672,0,0.170472,1,1,0,2,4,,3,3,Southfield,Rd,613803,0,0.17,0,4.091338,6,4.5 +757,-1,0.371051,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,9.002,9.373,0,8.905236,5,5 +897,0,0.211075,1,1,0,2,4,,3,3,Wattles,Rd,618802,2.894,3.105,0,5.065806,6,4.5 +1053,0,0.410656,2,2,1,2,3,,3,3,14 Mile,Rd,625804,3.62,4.03,0,9.855749,5,5 +1416,1,0.649321,4,0,0,2,5,,3,3,10 Mile,Rd,633409,10.327,10.976,0,15.583696,8,4.5 +1456,0,0.206573,1,1,0,2,5,,3,3,Delemere,Blvd,612708,0.513,0.72,0,4.957748,8,4.5 +1467,0,0.194609,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.794,1.988,0,4.67062,8,4.5 +1669,1,0.217903,3,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,10.271,10.489,0,5.229678,3.7,5 +1802,0,0.344815,2,2,1,2,3,,3,3,14 Mile,Rd,625804,4.03,4.375,0,8.275569,5,5 +1956,-1,0.329889,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,5.659,5.989,0,7.917345,5,5 +2293,1,0.287029,3,0,0,1,1,,3,3,N I 75,,647308,6.154,6.441,0,,0.58,7 +2361,1,0.164505,2,0,0,2,4,DIV,3,3,John R,Rd,646806,5.854,6.018,0,3.948117,6,4.5 +2473,1,0.435729,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,1.817,2.252,0,10.457498,6,4.5 +2497,0,0.354805,1,1,0,2,5,,3,3,Catalpa,Dr,656010,2.725,3.08,0,8.515331,8,4.5 +2925,0,0.253469,2,2,0,2,3,,3,3,Crooks,Rd,659810,2.196,2.45,0,6.083263,5,5 +2953,0,0.543266,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,17.59,18.134,0,13.038395,5,5 +3097,0,0.266461,2,2,0,2,5,,3,3,Kirts,Blvd,681204,0.276,0.542,0,6.395055,8,4.5 +3360,0,0.260578,2,2,0,2,3,,3,3,Crooks,Rd,659810,2.45,2.71,0,6.253869,5,5 +3435,0,0.422232,2,2,0,2,4,,3,3,Campbell,Rd,652509,3.589,4.012,0,10.133562,6,4.5 +3600,0,0.265008,1,1,1,2,5,,3,3,Concord,Dr,658204,0.241,0.506,0,6.3602,8,4.5 +3783,0,0.49871,2,2,1,2,3,,3,3,Maple,Rd,683906,16.226,16.724,0,11.969041,5,5 +4816,1,0.324118,1,0,0,1,1,RON,3,3,14 Mile/S I 75,RAMP,694202,0,0.324,0,,1.09,4 +4820,1,0.231928,1,0,0,1,1,ROF,3,3,S I 75/E 14 Mile,RAMP,694201,0,0.232,0,,2.24,5 +4829,1,0.250966,1,0,0,1,1,ROF,3,3,N I 75/E 14 Mile,RAMP,694108,0,0.251,0,,2.24,5 +4919,0,0.387413,2,2,1,2,4,,3,3,Coolidge,Rd,693006,0,0.387,0,9.2979,6,4.5 +19472,1,0.98152,4,0,0,1,1,,3,3,E I 696,,1903903,1.355,2.336,0,,0.58,7 +19716,-1,0.923637,0,4,0,1,1,,3,3,W I 696,,1904002,1.419,2.342,0,,0.58,7 +19897,0,0.519296,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,6.036,6.555,0,12.463097,6,4.5 +20401,-1,0.435937,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406809,1.568,2.004,0,10.462477,6,4.5 +20655,-1,0.225289,0,3,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0.647,0.872,0,5.40693,3.7,5 +21150,-1,0.22548,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.483,1.709,0,5.411512,5,5 +21882,0,0.261661,2,2,0,2,3,,3,3,Rochester,Rd,4413538,2.224,2.486,0,6.279867,5,5 +25440,0,0.239977,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.759449,0.15,4 +25658,0,0.192063,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.609502,0.15,4 +26178,0,0.530998,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.743963,0.15,4 +27559,0,0.245501,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.892026,0.15,4 +27980,0,0.643849,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.452379,0.15,4 +27983,0,0.352547,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.46113,0.15,4 +27989,0,0.542991,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.031795,0.15,4 +27991,0,0.516253,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.390079,0.15,4 +28000,0,0.227264,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.454343,0.15,4 +28003,0,0.477364,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.456735,0.15,4 +28007,0,0.559199,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.420771,0.15,4 +28010,0,0.207988,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.991723,0.15,4 +28020,0,0.27193,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.526315,0.15,4 +28023,0,0.263835,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.332045,0.15,4 +28026,0,0.596058,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.305387,0.15,4 +28035,0,0.28743,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.898308,0.15,4 +28040,0,0.249904,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.997699,0.15,4 +28283,0,0.496998,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.927962,0.15,4 +28284,0,0.244202,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.860837,0.15,4 +28288,0,0.50842,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.202074,0.15,4 +28364,0,0.26121,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.26905,0.15,4 +28382,0,0.564109,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.538614,0.15,4 +28432,0,0.461032,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.064767,0.15,4 +29697,0,0.56034,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.448154,0.15,4 +29967,0,0.234588,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.630116,0.15,4 +11,0,0.340704,1,1,0,2,5,,3,3,Normandy,Rd,644402,0,0.341,0,8.176887,8,4.5 +129,0,0.339892,2,2,0,2,3,,3,3,13 Mile,Rd,607408,5.663,6.003,0,8.157417,5,5 +298,1,0.382857,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,8.406,8.789,0,9.18857,5,5 +348,0,0.299331,2,2,1,2,4,,3,3,10 Mile,Rd,633409,9.025,9.324,0,7.183946,6,4.5 +580,1,0.216331,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,5.989,6.205,0,5.191946,5,5 +711,0,0.582036,2,2,1,2,3,,3,3,Southfield,Rd,611304,1.997,2.578,0,13.968864,5,5 +892,0,0.319667,2,2,0,2,4,,3,3,Coolidge,Hwy,644004,3.691,4.011,0,7.671998,6,4.5 +955,-1,0.351248,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,8.405,8.756,0,8.42994,5,5 +1090,-1,0.214234,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,5.989,6.203,0,5.141613,5,5 +1282,0,0.240768,2,2,1,2,3,,3,3,14 Mile,Rd,625804,5.52,5.761,0,5.778423,5,5 +1826,0,0.337417,1,1,0,2,5,,3,3,Webster,Rd,610103,0,0.337,0,8.097997,8,4.5 +2216,0,0.375125,2,2,1,2,3,,3,3,Greenfield,Rd,648307,3.513,3.888,0,9.002993,5,5 +2951,0,0.267721,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,16.011,16.279,0,6.425312,5,5 +3048,0,0.240419,1,1,0,2,5,,3,3,Lincoln,Dr,665304,0,0.24,0,5.770065,8,4.5 +3597,0,0.36651,2,2,1,2,5,,3,3,Catalpa,Dr,656010,0.817,1.183,0,8.796243,8,4.5 +19475,1,0.240151,4,0,0,1,1,,3,3,E I 696,,1903903,0,0.24,0,,0.58,7 +19476,1,0.300656,2,0,0,1,1,RON,3,3,Greenfield/E I 696,RAMP,1903902,0,0.301,0,,1.09,4 +19736,-1,0.214186,0,4,0,1,1,,3,3,W I 696,,1904002,0,0.214,0,,0.58,7 +19738,1,0.272265,2,0,0,1,1,ROF,3,3,W I 696/Greenfield,RAMP,1904001,0,0.272,0,,2.24,5 +20886,0,0.37736,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,4.564,4.941,0,9.056633,6,4.5 +25463,0,0.186416,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.473983,0.15,4 +25614,0,0.253558,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.085384,0.15,4 +25615,0,0.370432,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.890366,0.15,4 +27437,0,0.506523,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.156542,0.15,4 +27617,0,0.584788,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.034905,0.15,4 +27993,0,0.550712,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.217086,0.15,4 +28051,0,0.49152,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.796488,0.15,4 +28053,0,0.251458,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.034992,0.15,4 +28057,0,0.171564,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.11754,0.15,4 +28059,0,0.277102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.65044,0.15,4 +28097,0,0.276742,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.641818,0.15,4 +28100,0,0.274254,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.582102,0.15,4 +28104,0,0.255978,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.143462,0.15,4 +28105,0,0.347366,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.336786,0.15,4 +28106,0,0.303696,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.288709,0.15,4 +28107,0,0.304736,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.313672,0.15,4 +28111,0,0.252586,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.062053,0.15,4 +28302,0,0.262067,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.289606,0.15,4 +29663,0,0.279587,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.710077,0.15,4 +720,0,0.466968,2,3,1,2,3,,3,3,Southfield,Rd,611304,3.034,3.501,0,11.207235,5,5 +1757,0,0.496168,2,2,1,2,4,,3,3,10 Mile,Rd,633409,7.855,8.351,0,11.90804,6,4.5 +2220,1,0.201696,2,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,2.509,2.711,0,4.840701,5,5 +3730,0,0.471295,1,1,0,2,5,,3,3,Lincoln,Dr,684507,0.503,0.974,0,11.31108,8,4.5 +4402,-1,0.649841,0,4,0,1,1,,3,3,W I 696,,710702,12.344,12.994,0,,0.58,7 +4451,1,0.806666,4,0,0,1,1,,3,3,E I 696,,710701,11.495,12.301,0,,0.58,7 +4722,-1,0.884776,0,4,0,1,1,,3,3,W I 696,,710702,11.46,12.344,0,,0.58,7 +4779,1,0.710103,4,0,0,1,1,,3,3,E I 696,,710701,12.301,13.011,0,,0.58,7 +19482,1,0.199985,2,0,0,1,1,RON,3,3,Southfield/E I 696,RAMP,1903802,0,0.2,0,,1.09,4 +19741,1,0.23566,2,0,0,1,1,ROF,3,3,W I 696/Southfield,RAMP,1903909,0,0.236,0,,2.24,5 +20393,-1,0.354583,0,2,0,2,4,,3,3,11 Mile,Rd,4400088,3.807,4.162,0,8.509982,6,4.5 +20988,1,0.250441,2,0,0,2,4,,3,3,11 Mile,Rd,4410282,1.907,2.158,0,6.010589,6,4.5 +26166,0,0.58936,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.14465,0.15,4 +27622,0,0.27129,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.510962,0.15,4 +28115,0,0.499918,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.998025,0.15,4 +729,0,0.249442,2,3,1,2,3,,3,3,Southfield,Rd,611304,3.754,4.004,0,5.986612,5,5 +28071,0,0.431826,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.363831,0.15,4 +734,0,0.188657,3,3,1,2,3,,3,3,Southfield,Rd,611304,4.004,4.192,0,4.52778,5,5 +726,0,0.253787,2,3,1,2,3,,3,3,Southfield,Rd,611304,3.501,3.754,0,6.090894,5,5 +717,0,0.414166,2,2,1,2,3,,3,3,Southfield,Rd,611304,2.578,2.993,0,9.939976,5,5 +20143,-1,0.126763,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,3.443,3.57,0,3.042305,8,4.5 +20991,1,0.163943,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,1.53,1.694,0,3.934643,8,4.5 +27616,0,0.086105,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.066515,0.15,4 +27621,0,0.403138,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.675314,0.15,4 +29692,0,0.375984,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.023611,0.15,4 +19483,1,0.23123,1,0,0,1,1,ROF,3,3,E I 696/Southfield,RAMP,1903801,0,0.231,0,,2.24,5 +19748,1,0.287344,1,0,0,1,1,RON,3,3,Southfield/W I 696,RAMP,1903908,0,0.287,0,,1.09,4 +718,0,0.041236,3,3,1,2,3,,3,3,Southfield,Rd,611304,2.993,3.034,0,0.989675,5,5 +20598,-1,0.076693,0,4,0,2,4,,3,3,11 Mile,Rd,4400088,3.731,3.807,0,1.840633,6,4.5 +20989,1,0.051801,2,0,0,2,4,,3,3,11 Mile,Rd,4410282,1.856,1.907,0,1.243233,6,4.5 +20990,1,0.161401,2,0,0,2,4,,3,3,11 Mile,Rd,4410282,1.694,1.856,0,3.873624,6,4.5 +20838,-1,0.160836,0,4,0,2,4,,3,3,11 Mile,Rd,4400088,3.57,3.731,0,3.86007,6,4.5 +1262,0,0.490363,2,2,1,2,4,,3,3,10 Mile,Rd,633409,8.351,8.841,0,11.768722,6,4.5 +2224,1,0.197292,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,2.008,2.205,0,4.735006,5,5 +3729,0,0.516412,1,1,0,2,5,,3,3,Lincoln,Dr,684507,0.974,1.49,0,12.393878,8,4.5 +4450,1,0.396053,4,0,0,1,1,,3,3,E I 696,,710701,13.011,13.407,0,,0.58,7 +4720,-1,0.396625,0,4,0,1,1,,3,3,W I 696,,710702,12.994,13.391,0,,0.58,7 +19477,1,0.338844,2,0,0,1,1,ROF,3,3,E I 696/Greenfield,RAMP,1903901,0,0.339,0,,2.24,5 +19739,1,0.013371,2,0,0,1,1,RON,3,3,Greenfield/W I 696,RAMP,1903910,0,0.013,0,,1.09,4 +26170,0,0.47604,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.424961,0.15,4 +28112,0,0.494891,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.877389,0.15,4 +29695,0,0.271679,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.520284,0.15,4 +26214,0,0.248524,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.96457,0.15,4 +28113,0,0.080543,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.93304,0.15,4 +2225,1,0.249499,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,1.759,2.008,0,5.987964,5,5 +2226,0,0.054623,3,3,1,2,3,,3,3,Greenfield,Rd,648307,1.704,1.759,0,1.310963,5,5 +813,0,0.172529,2,2,1,2,4,,3,3,10 Mile,Rd,633409,8.852,9.025,0,4.140687,6,4.5 +2221,1,0.176778,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,2.332,2.509,0,4.242662,5,5 +2222,1,0.080389,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,2.252,2.332,0,1.929334,5,5 +26196,0,0.15341,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.681841,0.15,4 +2223,1,0.04648,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,2.205,2.252,0,1.115525,5,5 +2218,0,0.336857,2,2,1,2,3,,3,3,Greenfield,Rd,648307,3.01,3.346,0,8.084559,5,5 +20191,0,0.401885,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,4.162,4.564,0,9.645239,6,4.5 +28101,0,0.497274,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.934577,0.15,4 +28102,0,0.37293,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.95033,0.15,4 +19486,1,0.138962,2,0,0,2,4,,3,3,11 Mile,Rd,1903708,0,0.139,0,3.335078,6,4.5 +2219,0,0.187066,2,2,1,2,3,,3,3,Greenfield,Rd,648307,2.823,3.01,0,4.489593,5,5 +2217,0,0.166872,2,2,1,2,3,,3,3,Greenfield,Rd,648307,3.346,3.513,0,4.004921,5,5 +127,0,0.49958,1,1,0,2,4,,3,3,13 Mile,Rd,607408,6.503,7.003,0,11.989916,6,4.5 +354,0,0.301295,1,1,0,2,5,,3,3,Beverly,Rd,610804,1.431,1.732,0,7.23107,8,4.5 +693,0,0.477746,2,2,1,2,3,,3,3,Southfield,Rd,611304,0.985,1.463,0,11.465911,5,5 +1014,0,0.497302,1,1,1,2,3,,3,3,14 Mile,Rd,625804,6.504,7.001,0,11.935246,5,5 +2211,0,0.172475,2,2,1,2,3,,3,3,Greenfield,Rd,648307,4.847,5.019,0,4.139397,5,5 +3446,0,0.094023,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,15.42,15.514,0,2.256543,5,5 +25776,0,0.129785,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.114849,0.15,4 +28294,0,0.463522,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.124519,0.15,4 +28296,0,0.500135,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.003249,0.15,4 +28320,0,0.50525,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.126004,0.15,4 +696,0,0.347862,2,2,1,2,3,,3,3,Southfield,Rd,611304,1.463,1.811,0,8.348692,5,5 +2472,0,0.403186,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,15.017,15.42,0,9.676468,5,5 +27614,0,0.522819,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.547661,0.15,4 +28299,0,0.498767,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.970418,0.15,4 +709,0,0.186143,2,2,1,2,3,,3,3,Southfield,Rd,611304,1.811,1.997,0,4.467432,5,5 +3493,0,0.162517,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,14.687,14.85,0,3.9004,5,5 +3161,0,0.16699,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,14.85,15.017,0,4.007765,5,5 +27612,0,0.282592,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.782199,0.15,4 +347,0,0.380909,1,1,0,2,5,,3,3,Beverly,Rd,610804,1.05,1.431,0,9.141806,8,4.5 +685,0,0.498353,2,2,1,2,3,,3,3,Southfield,Rd,611304,0,0.498,0,11.960465,5,5 +686,0,0.48708,2,2,1,2,3,,3,3,Southfield,Rd,611304,0.498,0.985,0,11.689924,5,5 +2213,0,0.322693,2,2,1,2,3,,3,3,Greenfield,Rd,648307,4.197,4.519,0,7.744627,5,5 +3251,0,0.497389,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,15.514,16.011,0,11.937334,5,5 +28295,0,0.246753,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.922067,0.15,4 +28298,0,0.504503,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.108062,0.15,4 +28300,0,0.089896,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.157502,0.15,4 +2214,0,0.183065,2,2,1,2,3,,3,3,Greenfield,Rd,648307,4.014,4.197,0,4.393553,5,5 +28110,0,0.248918,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.974039,0.15,4 +2215,0,0.125569,2,2,1,2,3,,3,3,Greenfield,Rd,648307,3.888,4.014,0,3.01366,5,5 +2212,0,0.327619,2,2,1,2,3,,3,3,Greenfield,Rd,648307,4.519,4.847,0,7.862849,5,5 +29657,0,0.188208,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.517001,0.15,4 +128,0,0.500544,1,1,0,2,4,,3,3,13 Mile,Rd,607408,6.003,6.503,0,12.013052,6,4.5 +355,0,0.31711,1,1,0,2,5,,3,3,Beverly,Rd,610804,1.732,2.049,0,7.610641,8,4.5 +1182,0,0.25158,1,1,1,2,3,,3,3,14 Mile,Rd,625804,6.001,6.253,0,6.037912,5,5 +2209,0,0.221267,1,1,0,2,3,,3,3,Greenfield,Rd,648307,5.297,5.519,0,5.310409,5,5 +28291,0,0.493918,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.854033,0.15,4 +28293,0,0.494013,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.856307,0.15,4 +27606,0,0.194092,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.658203,0.15,4 +742,0,0.251484,1,1,1,2,3,,3,3,14 Mile,Rd,625804,6.253,6.504,0,6.035623,5,5 +2210,0,0.278274,1,1,0,2,3,,3,3,Greenfield,Rd,648307,5.019,5.297,0,6.678575,5,5 +1653,0,0.222254,2,2,0,2,3,,3,3,14 Mile,Rd,625804,5.779,6.001,0,5.3341,5,5 +2207,0,0.231515,1,1,0,2,3,,3,3,Greenfield,Rd,648307,5.785,6.016,0,5.556371,5,5 +25464,0,0.213493,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.123836,0.15,4 +2208,0,0.266036,1,1,0,2,3,,3,3,Greenfield,Rd,648307,5.519,5.785,0,6.384859,5,5 +828,0,0.018522,2,2,1,2,3,,3,3,14 Mile,Rd,625804,5.761,5.779,0,0.444523,5,5 +327,1,0.105989,4,0,0,2,5,,3,3,10 Mile,Rd,633409,9.825,9.931,0,2.543738,8,4.5 +994,0,0.274133,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,2.507,2.782,0,6.579191,6,4.5 +1201,-1,0.185965,0,2,0,2,5,,3,3,10 Mile,Rd,644205,0.431,0.617,0,4.463161,8,4.5 +2999,0,0.451815,1,1,0,2,5,,3,3,Catalpa,Dr,656010,1.792,2.243,0,10.843548,8,4.5 +19473,1,0.774265,4,0,0,1,1,,3,3,E I 696,,1903903,0.581,1.355,0,,0.58,7 +19719,-1,0.842171,0,4,0,1,1,,3,3,W I 696,,1904002,0.577,1.419,0,,0.58,7 +20246,0,0.498032,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,5.538,6.036,0,11.952771,6,4.5 +27601,0,0.561504,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.476103,0.15,4 +27837,0,0.248423,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.962149,0.15,4 +28025,0,0.546448,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.114743,0.15,4 +28052,0,0.25295,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.070801,0.15,4 +28055,0,0.382817,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.187614,0.15,4 +893,-1,0.3139,0,2,0,2,4,,3,3,10 Mile,Rd,644205,0,0.314,0,7.533597,6,4.5 +1235,1,0.260669,2,0,0,2,4,,3,3,10 Mile,Rd,633409,9.403,9.664,0,6.256058,6,4.5 +1977,0,0.205667,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,2.05,2.255,0,4.93601,6,4.5 +2991,0,0.488897,1,1,0,2,5,,3,3,Lincoln,Dr,665304,0.483,0.972,0,11.733518,8,4.5 +19474,1,0.341113,4,0,0,1,1,,3,3,E I 696,,1903903,0.24,0.581,0,,0.58,7 +19668,1,0.268302,1,0,0,1,1,RON,3,3,Coolidge/W I 696,RAMP,1904008,0,0.268,0,,1.09,4 +19688,1,0.230579,1,0,0,1,1,ROF,3,3,E I 696/Coolidge,RAMP,1904003,0,0.231,0,,2.24,5 +19734,-1,0.363161,0,4,0,1,1,,3,3,W I 696,,1904002,0.214,0.577,0,,0.58,7 +26194,0,0.355292,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.526999,0.15,4 +27439,0,0.48323,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.597508,0.15,4 +29694,0,0.288613,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.926708,0.15,4 +26193,0,0.271525,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.516596,0.15,4 +1723,0,0.079173,2,2,1,2,4,,3,3,10 Mile,Rd,633409,9.324,9.403,0,1.900149,6,4.5 +3301,0,0.096644,1,1,0,2,5,,3,3,Lincoln,Dr,665304,0.387,0.483,0,2.319456,8,4.5 +2768,0,0.14652,1,1,0,2,5,,3,3,Lincoln,Dr,665304,0.24,0.387,0,3.516483,8,4.5 +8,0,0.371347,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,1.633,2.005,0,8.912328,6,4.5 +790,1,0.161173,2,0,0,2,4,,3,3,10 Mile,Rd,633409,9.664,9.825,0,3.868154,6,4.5 +1681,-1,0.116959,0,2,0,2,4,,3,3,10 Mile,Rd,644205,0.314,0.431,0,2.807006,6,4.5 +1680,0,0.045022,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,2.005,2.05,0,1.080522,6,4.5 +1464,0,0.252265,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,2.255,2.507,0,6.054362,6,4.5 +27451,0,0.342143,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.211421,0.15,4 +2079,0,0.221436,2,2,0,2,4,,3,3,Coolidge,Hwy,644004,3.006,3.228,0,5.314465,6,4.5 +2795,0,0.425473,2,2,1,2,5,,3,3,Catalpa,Dr,656010,1.366,1.792,0,10.211351,8,4.5 +20433,0,0.47,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,5.068,5.538,0,11.27999,6,4.5 +28050,0,0.486968,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.687231,0.15,4 +28093,0,0.27916,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.699848,0.15,4 +28096,0,0.336714,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.081137,0.15,4 +28098,0,0.3099,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.437597,0.15,4 +28109,0,0.310898,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.461552,0.15,4 +20651,0,0.127172,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,4.941,5.068,0,3.052124,6,4.5 +28049,0,0.256115,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.146765,0.15,4 +3321,0,0.183285,2,2,1,2,5,,3,3,Catalpa,Dr,656010,1.183,1.366,0,4.398829,8,4.5 +28092,0,0.274723,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.59335,0.15,4 +533,0,0.224865,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,2.782,3.006,0,5.39675,6,4.5 +1351,0,0.184228,2,2,0,2,4,,3,3,Coolidge,Hwy,644004,3.507,3.691,0,4.42146,6,4.5 +28091,0,0.253705,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.08891,0.15,4 +28306,0,0.239367,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.744801,0.15,4 +1861,0,0.279332,2,2,0,2,4,,3,3,Coolidge,Hwy,644004,3.228,3.507,0,6.703968,6,4.5 +764,-1,0.317935,0,4,0,2,5,,3,3,10 Mile,Rd,644205,0.617,0.934,0,7.630428,8,4.5 +1938,1,0.396481,4,0,0,2,5,,3,3,10 Mile,Rd,633409,9.931,10.327,0,9.515539,8,4.5 +27930,0,0.526848,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.644341,0.15,4 +19660,1,0.267652,1,0,0,1,1,ROF,3,3,W I 696/Coolidge,RAMP,1904104,0,0.268,0,,2.24,5 +19687,1,0.286562,1,0,0,1,1,RON,3,3,Coolidge/E I 696,RAMP,1904004,0,0.287,0,,1.09,4 +2242,0,0.369687,1,1,0,2,7,,3,3,Scotia,,648205,0.844,1.214,0,8.872486,7,4.5 +29658,0,0.190015,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.560365,0.15,4 +2241,0,0.039557,1,1,0,2,7,,3,3,Scotia,,648205,1.214,1.253,0,0.949376,7,4.5 +3436,0,0.462332,1,1,0,2,5,,3,3,Catalpa,Dr,656010,2.243,2.705,0,11.095965,8,4.5 +27994,0,0.42065,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.095605,0.15,4 +27995,0,0.278589,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.686128,0.15,4 +27996,0,0.242471,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.8193,0.15,4 +27997,0,0.418965,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.055165,0.15,4 +28090,0,0.241404,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.79369,0.15,4 +1193,-1,0.246054,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,8.756,9.002,0,5.905296,5,5 +1662,1,0.210423,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,8.789,9,0,5.050149,5,5 +3037,0,0.019424,1,1,0,2,5,,3,3,Catalpa,Dr,656010,2.705,2.725,0,0.466174,8,4.5 +134,0,0.460102,2,2,1,2,3,,3,3,13 Mile,Rd,607408,4.516,4.976,0,11.042459,5,5 +244,-1,0.237567,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,7.297,7.535,0,5.701603,5,5 +625,-1,0.26975,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,7.535,7.805,0,6.47399,5,5 +694,1,0.778807,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,7.526,8.305,0,18.691372,5,5 +1013,0,0.15518,2,2,1,2,3,,3,3,14 Mile,Rd,625804,4.826,4.982,0,3.724315,5,5 +1104,0,0.239981,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.027,1.267,0,5.759548,8,4.5 +1818,1,0.218216,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,7.308,7.526,0,5.237179,5,5 +1978,1,0.148081,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,4.888,5.036,0,3.553942,6,4.5 +2922,0,0.128065,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,16.99,17.118,0,3.073559,5,5 +28011,0,0.354403,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.505676,0.15,4 +28308,0,0.346185,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.308451,0.15,4 +28311,0,0.287445,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.898689,0.15,4 +28317,0,0.256421,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.154097,0.15,4 +29902,0,0.330457,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.930957,0.15,4 +427,1,0.358897,2,0,0,2,4,DV2,3,3,Coolidge,Hwy,644004,4.011,4.37,0,8.613529,6,4.5 +2161,0,0.249508,1,1,0,2,5,,3,3,Webster,Rd,610103,0.482,0.731,0,5.988188,8,4.5 +3012,0,0.397135,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,16.373,16.77,0,9.531237,5,5 +28307,0,0.243395,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.841471,0.15,4 +28322,0,0.281172,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.748122,0.15,4 +28326,0,0.354977,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.519436,0.15,4 +3328,0,0.094299,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,16.279,16.373,0,2.26318,5,5 +28309,0,0.371674,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.920187,0.15,4 +1925,0,0.144312,1,1,0,2,5,,3,3,Webster,Rd,610103,0.337,0.482,0,3.46349,8,4.5 +3230,0,0.219642,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,16.77,16.99,0,5.271405,5,5 +28325,0,0.251664,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.039924,0.15,4 +426,1,0.224355,2,0,0,2,4,DV2,3,3,Coolidge,Hwy,644004,4.663,4.888,0,5.38453,6,4.5 +805,0,0.249597,1,1,0,2,5,,3,3,Webster,Rd,610103,0.731,0.981,0,5.990334,8,4.5 +28056,0,0.269731,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.473549,0.15,4 +28321,0,0.034311,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,0.823475,0.15,4 +1979,1,0.137112,2,0,0,2,4,DV2,3,3,Coolidge,Hwy,644004,4.37,4.507,0,3.29069,6,4.5 +891,1,0.156723,2,0,0,2,4,DV2,3,3,Coolidge,Hwy,644004,4.507,4.663,0,3.76136,6,4.5 +28310,0,0.159147,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.819517,0.15,4 +28319,0,0.14183,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.40391,0.15,4 +131,0,0.479364,2,2,0,2,3,,3,3,13 Mile,Rd,607408,5.119,5.598,0,11.504748,5,5 +300,1,0.272581,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.393,5.666,0,6.541946,6,4.5 +1101,-1,0.352323,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,6.836,7.188,0,8.455752,5,5 +1579,-1,0.242459,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,6.593,6.836,0,5.819011,5,5 +1581,0,0.30118,2,2,0,2,5,,3,3,Normandy,Rd,644402,0.713,1.014,0,7.228317,8,4.5 +1632,1,0.27149,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,6.594,6.866,0,6.515769,5,5 +1778,0,0.34349,2,2,1,2,3,,3,3,14 Mile,Rd,625804,5.177,5.52,0,8.243754,5,5 +2015,1,0.323206,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,6.866,7.189,0,7.756956,5,5 +25462,0,0.459313,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.023512,0.15,4 +28028,0,0.475856,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.420543,0.15,4 +28030,0,0.281967,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.767197,0.15,4 +28054,0,0.269383,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.465182,0.15,4 +29903,0,0.411781,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.882742,0.15,4 +29904,0,0.412125,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.891011,0.15,4 +25616,0,0.347356,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.336542,0.15,4 +25617,0,0.341925,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.206207,0.15,4 +28058,0,0.234166,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.619991,0.15,4 +130,0,0.065411,2,2,0,2,3,,3,3,13 Mile,Rd,607408,5.598,5.663,0,1.56987,5,5 +124,1,0.388937,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,6.205,6.594,0,9.334476,5,5 +642,-1,0.390721,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,6.203,6.593,0,9.3773,5,5 +1684,0,0.215458,1,1,0,2,5,,3,3,Normandy,Rd,644402,0.341,0.556,0,5.170997,8,4.5 +766,0,0.138419,2,2,0,2,5,,3,3,Normandy,Rd,644402,0.574,0.713,0,3.32205,8,4.5 +1203,0,0.018284,2,2,0,2,5,,3,3,Normandy,Rd,644402,0.556,0.574,0,0.438827,8,4.5 +133,0,0.014564,2,2,1,2,3,,3,3,13 Mile,Rd,607408,4.976,4.991,0,0.34953,5,5 +727,-1,0.097582,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,7.188,7.286,0,2.341976,5,5 +763,1,0.223609,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.17,5.393,0,5.366613,6,4.5 +1824,1,0.106798,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,7.189,7.295,0,2.563155,5,5 +132,0,0.017114,2,2,0,2,3,,3,3,13 Mile,Rd,607408,5.101,5.119,0,0.410746,5,5 +995,1,0.117382,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.052,5.17,0,2.817166,6,4.5 +1465,1,0.016711,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.036,5.052,0,0.401067,6,4.5 +28313,0,0.09523,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.28551,0.15,4 +555,0,0.195122,2,2,1,2,3,,3,3,14 Mile,Rd,625804,4.982,5.177,0,4.682937,5,5 +1352,1,0.255969,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.919,6.175,0,6.143261,6,4.5 +28031,0,0.211402,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.073655,0.15,4 +28029,0,0.245125,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.883009,0.15,4 +1862,1,0.253415,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.666,5.919,0,6.081948,6,4.5 +1415,-1,0.108401,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,8.296,8.405,0,2.601615,5,5 +1582,0,0.2352,1,1,0,2,5,,3,3,Webster,Rd,644506,0.24,0.475,0,5.644799,8,4.5 +1855,1,0.101753,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,8.305,8.406,0,2.442067,5,5 +2152,-1,0.492126,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,7.805,8.296,0,11.811024,5,5 +3051,0,0.130252,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,17.443,17.573,0,3.126056,5,5 +28021,0,0.247533,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.940801,0.15,4 +28323,0,0.270207,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.484966,0.15,4 +28327,0,0.298712,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.169083,0.15,4 +3374,0,0.325099,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,17.118,17.443,0,7.802368,5,5 +28304,0,0.342232,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.213571,0.15,4 +28305,0,0.23421,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.62103,0.15,4 +28324,0,0.331326,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.95183,0.15,4 +2080,0,0.240162,1,1,0,2,5,,3,3,Webster,Rd,644506,0,0.24,0,5.763899,8,4.5 +28315,0,0.264493,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.347821,0.15,4 +3254,0,0.017539,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,17.573,17.59,0,0.420929,5,5 +136,0,0.284838,2,2,1,2,3,,3,3,13 Mile,Rd,607408,4.231,4.516,0,6.836102,5,5 +846,0,0.197472,2,2,1,2,3,,3,3,14 Mile,Rd,625804,4.403,4.601,0,4.739339,5,5 +1685,0,0.30706,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.487,1.794,0,7.369446,8,4.5 +28041,0,0.341027,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.184656,0.15,4 +28047,0,0.203166,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.875975,0.15,4 +655,0,0.134141,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.267,1.401,0,3.219392,8,4.5 +1439,0,0.255572,1,1,0,2,5,,3,3,Delemere,Blvd,612708,0,0.256,0,6.13374,8,4.5 +1488,0,0.225955,2,2,0,2,3,,3,3,14 Mile,Rd,625804,4.601,4.826,0,5.422918,5,5 +12,0,0.086184,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.401,1.487,0,2.068416,8,4.5 +553,0,0.257913,1,1,0,2,5,,3,3,Delemere,Blvd,612708,0.256,0.513,0,6.189908,8,4.5 +28043,0,0.277533,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.660796,0.15,4 +28033,0,0.385011,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.240253,0.15,4 +28048,0,0.333328,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.999861,0.15,4 +28045,0,0.24049,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.771769,0.15,4 +1305,0,0.028086,2,2,1,2,3,,3,3,14 Mile,Rd,625804,4.375,4.403,0,0.674054,5,5 +176,0,0.178228,2,2,1,2,3,,3,3,Big Beaver,Rd,607204,0.281,0.459,0,4.277461,5,5 +342,0,0.276441,1,1,0,2,4,,4,3,Charing Cross,Rd,619207,0,0.276,0,6.634591,4.5,4.5 +413,1,0.179132,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,3.059,3.238,0,4.299163,3.7,5 +601,0,0.554154,1,1,0,2,5,,3,3,Kensington,Rd,616302,2.771,3.325,0,13.299688,8,4.5 +1544,0,0.424079,1,1,0,2,3,,4,3,Adams,Rd,4415861,1.619,2.043,0,10.177886,3.7,5 +1594,0,0.269648,1,1,0,2,4,,4,3,Wattles,Rd,618802,1.125,1.395,0,6.47156,4.5,4.5 +1633,0,0.202403,2,2,0,2,3,,4,3,Long Lake,Rd,641102,8.761,8.963,0,4.857664,3.7,5 +1745,0,0.333876,1,1,0,2,5,,4,3,Beach,Rd,626301,1.452,1.786,0,8.013015,5.8,4.5 +2035,-1,0.172801,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,3.059,3.232,0,4.147225,3.7,5 +3413,0,0.440212,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.872,5.312,0,10.565095,5,5 +3789,0,0.47934,2,2,0,2,3,,3,3,Maple,Rd,683906,14.219,14.698,0,11.504159,5,5 +4876,1,0.330191,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,2.263,2.593,0,7.92458,6,4.5 +25457,0,0.36128,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.670725,0.15,4 +25654,0,0.26004,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.240965,0.15,4 +27907,0,0.308069,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.393659,0.15,4 +28002,0,0.58351,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.004248,0.15,4 +28331,0,0.496934,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.926407,0.15,4 +28333,0,0.254628,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.111074,0.15,4 +28340,0,0.31286,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.508636,0.15,4 +28342,0,0.293914,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.053944,0.15,4 +28343,0,0.336072,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.065727,0.15,4 +28349,0,0.503054,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.073302,0.15,4 +28350,0,0.483908,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.613803,0.15,4 +28351,0,0.311053,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.465271,0.15,4 +28352,0,0.337034,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.088816,0.15,4 +28359,0,0.315889,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.581326,0.15,4 +488,0,0.437007,2,2,0,2,3,,3,3,Adams,Rd,4415861,0.672,1.109,0,10.48816,5,5 +513,1,0.187189,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,4.622,4.809,0,4.492531,5,5 +628,0,0.097503,1,1,0,2,5,,3,3,Old Woodward,Ave,613810,0.653,0.751,0,2.340068,8,4.5 +656,0,0.234901,1,1,0,2,5,,2,3,Lincoln,,611106,1.603,1.838,0,5.637618,8.5,4.5 +673,0,0.141196,1,1,0,2,5,,2,3,Brown,St,4463518,0.351,0.492,0,3.388698,8.5,4.5 +1153,1,0.35355,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,4.268,4.622,0,8.48521,5,5 +1218,0,0.046483,2,2,0,2,5,,3,3,Oakland,,621305,0.119,0.165,0,1.115584,8,4.5 +1420,0,0.435083,1,1,0,2,3,,3,3,Big Beaver,Rd,617206,3.582,4.016,0,10.441993,5,5 +1503,-1,0.536565,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,4.273,4.809,0,12.877559,5,5 +1701,0,0.118964,2,2,0,2,5,,3,3,Oakland,,621305,0,0.119,0,2.855137,8,4.5 +1815,0,0.226619,1,1,1,2,5,,3,3,Old Woodward,Ave,613810,0.427,0.653,0,5.438849,8,4.5 +3796,0,0.207129,1,1,0,2,3,,2,3,Maple,Rd,683906,13.581,13.788,0,4.971101,6,5 +25066,0,0.28005,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.721207,0.15,4 +25458,0,0.221461,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.315076,0.15,4 +28337,0,0.255987,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.143678,0.15,4 +28338,0,0.528242,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.677809,0.15,4 +28362,0,0.344817,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,8.275613,0.15,4 +571,0,0.498372,1,1,0,2,5,,2,3,Lincoln,,611106,1.105,1.603,0,11.960921,8.5,4.5 +950,0,0.212769,2,2,0,2,4,,2,3,Southfield,Rd,613803,0.66,0.872,0,5.106456,8,4.5 +3798,0,0.462422,1,1,1,2,3,,3,3,Maple,Rd,683906,13.03,13.492,0,11.098137,5,5 +27981,0,0.261422,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.274131,0.15,4 +28360,0,0.375243,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,9.005841,0.15,4 +28363,0,0.237549,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,5.70118,0.15,4 +1698,0,0.334603,1,1,0,2,4,,3,3,Southfield,Rd,613803,0.17,0.505,0,8.030463,6,4.5 +1783,0,0.15459,2,2,0,2,4,,2,3,Southfield,Rd,613803,0.505,0.66,0,3.710152,8,4.5 +27982,0,0.354445,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.50667,0.15,4 +668,0,0.18035,1,1,0,2,5,,2,3,Brown,St,4463518,0,0.18,0,4.328395,8.5,4.5 +852,0,0.216609,2,2,0,2,4,,2,3,Southfield,Rd,613803,0.872,1.089,0,5.198616,8,4.5 +1559,0,0.203655,1,1,0,2,5,,2,3,Chester,,613807,0.335,0.539,0,4.887731,8.5,4.5 +3797,0,0.088853,2,2,1,2,3,,2,3,Maple,Rd,683906,13.492,13.581,0,2.132464,6,5 +671,0,0.170982,1,1,0,2,5,,2,3,Brown,St,4463518,0.18,0.351,0,4.103579,8.5,4.5 +28361,0,0.13914,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.339362,0.15,4 +676,0,0.156137,1,1,0,2,5,,3,3,Willits,,611204,0.304,0.46,0,3.747296,8,4.5 +1773,0,0.050787,2,1,0,2,5,,3,3,Chester,,613807,0.539,0.59,0,1.218894,8,4.5 +224,-1,0.496083,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,3.655,4.151,0,11.90599,3.7,5 +326,1,0.311809,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,3.655,3.966,0,7.483407,3.7,5 +1168,0,0.317108,1,1,0,2,3,,4,3,Big Beaver,Rd,617206,3.265,3.582,0,7.610583,3.7,5 +28347,0,0.530937,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.742478,0.15,4 +715,-1,0.423466,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,3.232,3.655,0,10.163192,3.7,5 +2142,1,0.416666,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,3.238,3.655,0,9.99998,3.7,5 +1643,0,0.019138,2,2,0,2,3,,4,3,Quarton,Rd,617206,3.245,3.265,0,0.459316,3.7,5 +847,0,0.211944,1,1,1,2,5,,3,3,Old Woodward,Ave,613810,0.215,0.427,0,5.086646,8,4.5 +885,1,0.102395,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,4.166,4.268,0,2.457476,5,5 +2017,-1,0.1214,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,4.151,4.273,0,2.913597,5,5 +629,1,0.214771,1,0,0,2,5,,4,3,Old Woodward,Ave,613810,0,0.215,0,5.154504,5.8,4.5 +1850,1,0.199733,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,3.966,4.166,0,4.793601,3.7,5 +1661,0,0.057471,1,1,0,2,5,,3,3,Oak,,619905,1.36,1.418,0,1.379294,8,4.5 +1055,1,0.015495,2,0,0,2,5,,3,3,Oak,,619905,1.418,1.433,0,0.371873,8,4.5 +667,0,0.053204,1,1,0,2,5,,2,3,Lincoln,,611106,2.019,2.072,0,1.276901,8.5,4.5 +1078,-1,0.100898,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,5.395,5.496,0,2.421543,6,5 +1265,-1,0.226665,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,5.078,5.305,0,5.439967,6,5 +1328,0,0.283261,2,2,0,2,3,,2,3,Adams,Rd,4415861,0.131,0.414,0,6.79826,6,5 +1636,1,0.207605,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,5.079,5.287,0,4.982529,6,5 +1752,1,0.155481,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,5.393,5.549,0,3.731539,6,5 +1808,0,0.100222,1,1,0,2,5,,2,3,Old Woodward,Ave,613810,1.161,1.261,0,2.405339,8.5,4.5 +3790,0,0.156501,2,2,0,2,3,,2,3,Maple,Rd,683906,14.062,14.219,0,3.756024,6,5 +27586,0,0.148149,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.555572,0.15,4 +27998,0,0.251024,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.024584,0.15,4 +28001,0,0.270704,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.496892,0.15,4 +28367,0,0.426571,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.237696,0.15,4 +27999,0,0.280914,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.741946,0.15,4 +525,1,0.140156,1,0,0,2,5,,2,3,Old Woodward,Ave,613810,1.261,1.401,0,3.363743,8.5,4.5 +664,0,0.160397,1,1,0,2,5,,2,3,Lincoln,,611106,1.838,1.998,0,3.849517,8.5,4.5 +20540,1,0.036845,1,0,0,2,5,,2,3,Old Woodward,Ave,4400125,0.031,0.068,0,0.884285,8.5,4.5 +643,1,0.10693,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,5.287,5.393,0,2.566315,6,5 +1555,-1,0.090121,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,5.305,5.395,0,2.162893,6,5 +20788,1,0.030945,1,0,0,2,3,,2,3,Old Woodward,Ave,4400125,0,0.031,0,0.742691,6,5 +666,0,0.020626,1,1,0,2,5,,2,3,Lincoln,,611106,1.998,2.019,0,0.495024,8.5,4.5 +691,0,0.075066,1,1,0,2,5,,2,3,Old Woodward,Ave,613810,1.086,1.161,0,1.801588,8.5,4.5 +1398,0,0.161222,1,1,0,2,5,,2,3,Old Woodward,Ave,613810,0.751,0.912,0,3.86933,8.5,4.5 +1761,-1,0.269437,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,4.809,5.078,0,6.466486,6,5 +1889,1,0.170635,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,4.909,5.079,0,4.095239,6,5 +3792,0,0.106591,2,2,0,2,3,,2,3,Maple,Rd,683906,13.949,14.055,0,2.55819,6,5 +20300,0,0.056799,1,1,0,2,5,,2,3,Brown,St,4463518,0.492,0.549,0,1.363185,8.5,4.5 +28358,0,0.218935,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,5.25443,0.15,4 +29685,0,0.1188,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,2.851196,0.15,4 +2013,0,0.174292,1,1,0,2,5,,2,3,Old Woodward,Ave,613810,0.912,1.086,0,4.183015,8.5,4.5 +40390,-1,0.017115,0,1,0,2,4,,4,5,Geddes,Rd,4606198,0.042,0.059,0,0.410767,4.5,4.5 +419,1,0.06571,2,0,0,2,5,,3,3,Park,,613706,0,0.066,0,1.577039,8,4.5 +3795,0,0.115275,1,1,0,2,3,,2,3,Maple,Rd,683906,13.788,13.903,0,2.766593,6,5 +1159,0,0.107346,1,1,0,2,5,,3,3,Park,,613706,0.066,0.173,0,2.5763,8,4.5 +1470,1,0.099484,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,4.809,4.909,0,2.387606,6,5 +1720,0,0.107654,1,1,0,2,5,,2,3,Peabody,,613802,0,0.108,0,2.583707,8.5,4.5 +3793,0,0.01761,2,2,0,2,3,,2,3,Maple,Rd,683906,13.931,13.949,0,0.422644,6,5 +20103,0,0.042836,2,2,0,2,5,,2,3,Brown,St,4463518,0.549,0.592,0,1.028053,8.5,4.5 +3794,0,0.028141,1,1,1,2,3,,2,3,Maple,Rd,683906,13.903,13.931,0,0.675383,6,5 +28366,0,0.074646,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.791495,0.15,4 +28365,0,0.061314,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.471543,0.15,4 +3791,0,0.006861,2,2,0,2,3,,2,3,Maple,Rd,683906,14.055,14.062,0,0.164666,6,5 +401,-1,0.162901,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,5.496,5.659,0,3.909627,5,5 +1122,1,0.110003,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,5.549,5.659,0,2.64006,5,5 +2160,0,0.084647,2,2,0,2,3,,2,3,Adams,Rd,4415861,0.046,0.131,0,2.031524,6,5 +385,-1,0.046283,0,2,0,2,3,,2,3,Adams,Rd,4415861,0,0.046,0,1.110786,6,5 +1551,0,0.258303,2,2,0,2,3,,2,3,Adams,Rd,4415861,0.414,0.672,0,6.199269,6,5 +177,0,0.280944,2,2,1,2,3,,3,3,Big Beaver,Rd,607204,0,0.281,0,6.742667,5,5 +867,0,0.366033,2,2,0,2,3,,3,3,Adams,Rd,4415861,1.109,1.475,0,8.784791,5,5 +28336,0,0.30623,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.34953,0.15,4 +961,0,0.141837,1,1,1,2,3,,4,3,Big Beaver,Rd,617206,4.016,4.158,0,3.404081,3.7,5 +1272,0,0.143577,2,2,0,2,3,,3,3,Adams,Rd,4415861,1.475,1.619,0,3.445851,5,5 +498,0,0.43666,1,1,0,2,3,,4,3,Long Lake,Rd,641102,7.512,7.948,0,10.479833,3.7,5 +512,0,0.445922,1,1,0,2,3,,4,3,Adams,Rd,4415861,2.664,3.11,0,10.70214,3.7,5 +1455,0,0.185722,1,1,0,2,5,,4,3,Kensington,Rd,616302,1.395,1.581,0,4.457329,5.8,4.5 +2130,0,0.305042,1,1,0,2,4,,4,3,Wattles,Rd,618802,0.423,0.728,0,7.321019,4.5,4.5 +2135,0,0.74376,1,1,0,2,5,,4,3,Squirrel,Rd,617001,0,0.744,0,17.85025,5.8,4.5 +27766,0,0.592554,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.221294,0.15,4 +28330,0,0.619467,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.867206,0.15,4 +28332,0,0.494977,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.879452,0.15,4 +28368,0,0.536312,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.871483,0.15,4 +28369,0,0.358359,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.60061,0.15,4 +29894,0,0.715335,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.168036,0.15,4 +220,0,0.308609,1,1,0,2,5,,4,3,Kensington,Rd,616302,2.036,2.345,0,7.406615,5.8,4.5 +735,0,0.125325,1,1,0,2,4,,4,3,Charing Cross,Rd,619207,0.441,0.567,0,3.007791,4.5,4.5 +940,0,0.174765,1,1,0,2,5,,4,3,Wattles,Rd,618802,0,0.175,0,4.194353,5.8,4.5 +2167,0,0.304364,1,1,0,2,4,,4,3,Charing Cross,Rd,619207,0.567,0.871,0,7.304731,4.5,4.5 +28118,0,0.537981,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.911555,0.15,4 +28328,0,0.291139,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.987345,0.15,4 +1172,0,0.165046,1,1,0,2,4,,4,3,Charing Cross,Rd,619207,0.276,0.441,0,3.961095,4.5,4.5 +28639,0,0.404387,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.705285,0.15,4 +1922,-1,0.019205,0,1,0,2,3,,4,3,Lone Pine,Rd,623006,4.732,4.751,0,0.460916,3.7,5 +791,0,0.455673,1,1,0,2,5,,4,3,Kensington,Rd,616302,1.581,2.036,0,10.936144,5.8,4.5 +1659,0,0.426402,1,1,0,2,5,,4,3,Kensington,Rd,616302,2.345,2.771,0,10.233643,5.8,4.5 +28329,0,0.161787,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.882897,0.15,4 +872,0,0.163014,1,1,0,2,5,,4,3,Wattles,Rd,618802,0.175,0.338,0,3.912339,5.8,4.5 +28371,0,0.446525,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.716612,0.15,4 +405,0,0.085662,1,1,0,2,4,,4,3,Wattles,Rd,618802,0.338,0.423,0,2.055882,4.5,4.5 +964,0,0.482512,1,1,0,2,3,,4,3,Long Lake,Rd,641102,7.029,7.512,0,11.58029,3.7,5 +2050,0,0.302556,1,1,0,2,5,,4,3,Squirrel,Rd,617001,0.744,1.046,0,7.261345,5.8,4.5 +25673,0,0.26767,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.424088,0.15,4 +703,0,0.229644,1,1,0,2,5,,4,3,Eastways,Rd,615707,0,0.23,0,5.511453,5.8,4.5 +1539,0,0.446627,1,1,0,2,5,,4,3,Squirrel,Rd,617001,1.046,1.493,0,10.719038,5.8,4.5 +473,0,0.338621,1,1,0,2,3,,4,3,Adams,Rd,4415861,2.326,2.664,0,8.126892,3.7,5 +2093,0,0.232157,1,1,0,2,4,,4,3,Wattles,Rd,618802,0.893,1.125,0,5.571779,4.5,4.5 +29895,0,0.265394,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.369446,0.15,4 +2165,0,0.224994,1,1,0,2,3,,4,3,Adams,Rd,4415861,2.101,2.326,0,5.399853,3.7,5 +1793,0,0.057959,1,1,0,2,3,,4,3,Adams,Rd,4415861,2.043,2.101,0,1.391017,3.7,5 +1630,0,0.164718,1,1,0,2,4,,4,3,Wattles,Rd,618802,0.728,0.893,0,3.953233,4.5,4.5 +603,0,0.050436,1,1,0,2,3,,4,3,Long Lake,Rd,641102,8.404,8.454,0,1.210461,3.7,5 +705,0,0.483209,1,1,0,2,3,,4,3,Adams,Rd,4415861,3.655,4.138,0,11.597016,3.7,5 +1054,0,0.141285,1,1,0,2,3,,4,3,Long Lake,Rd,641102,8.262,8.404,0,3.390835,3.7,5 +25456,0,0.256833,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.163982,0.15,4 +28265,0,0.246085,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.906049,0.15,4 +1175,0,0.434668,1,1,0,2,3,,4,3,Adams,Rd,4415861,3.22,3.655,0,10.432043,3.7,5 +1540,0,0.303924,1,1,0,2,3,,4,3,Long Lake,Rd,641102,7.958,8.262,0,7.294177,3.7,5 +2051,0,0.010356,1,1,0,2,3,,4,3,Long Lake,Rd,641102,7.948,7.958,0,0.248533,3.7,5 +1736,0,0.110307,1,1,0,2,3,,4,3,Adams,Rd,4415861,3.11,3.22,0,2.647364,3.7,5 +713,0,0.025198,1,1,0,2,3,,4,3,Adams,Rd,4415861,4.138,4.163,0,0.604758,3.7,5 +28370,0,0.507204,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.172892,0.15,4 +1256,0,0.538849,1,1,0,2,5,,4,3,Beach,Rd,626301,1.786,2.325,0,12.93238,5.8,4.5 +2133,0,0.307036,1,1,0,2,3,,4,3,Long Lake,Rd,641102,8.454,8.761,0,7.368872,3.7,5 +25647,0,0.255429,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.1303,0.15,4 +28266,0,0.536971,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.887299,0.15,4 +172,1,0.277034,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,1.008,1.285,0,6.648814,5,5 +2837,0,0.353683,2,2,1,2,3,,3,3,Crooks,Rd,659810,3.741,4.095,0,8.4884,5,5 +3785,0,0.420343,2,2,1,2,3,,3,3,Maple,Rd,683906,15.381,15.801,0,10.088229,5,5 +4905,1,0.277055,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,1.087,1.364,0,6.649317,6,4.5 +8457,0,0.288957,1,1,1,2,5,,3,3,Meijer,Dr,982010,0,0.289,0,6.934957,8,4.5 +21154,-1,0.277961,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,0.488,0.766,0,6.671054,5,5 +27605,0,0.266219,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.389257,0.15,4 +28116,0,0.402573,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.661764,0.15,4 +28339,0,0.445729,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.697504,0.15,4 +28346,0,0.180124,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.322987,0.15,4 +28353,0,0.190698,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.576749,0.15,4 +28354,0,0.192907,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.629763,0.15,4 +28372,0,0.177592,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.262198,0.15,4 +28373,0,0.323204,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.756906,0.15,4 +28375,0,0.414521,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.948499,0.15,4 +28378,0,0.319508,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.668188,0.15,4 +28381,0,0.278389,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.681328,0.15,4 +29887,0,0.322161,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.731867,0.15,4 +3787,0,0.472064,2,2,1,2,3,,3,3,Maple,Rd,683906,14.746,15.218,0,11.329525,5,5 +4906,1,0.523065,2,0,0,2,4,DIV,3,3,Coolidge,Rd,693006,0.565,1.087,0,12.553549,6,4.5 +3788,0,0.048048,2,2,0,2,3,,3,3,Maple,Rd,683906,14.698,14.746,0,1.153148,5,5 +4910,0,0.177252,2,2,1,2,4,,3,3,Coolidge,Rd,693006,0.387,0.565,0,4.25404,6,4.5 +3786,0,0.154647,2,2,1,2,3,,3,3,Maple,Rd,683906,15.227,15.381,0,3.711533,5,5 +173,1,0.37552,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,0.618,0.994,0,9.012471,5,5 +4897,1,0.26753,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,1.556,1.823,0,6.420728,6,4.5 +21155,-1,0.244204,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,0.229,0.473,0,5.860888,5,5 +28279,0,0.281892,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.765404,0.15,4 +28341,0,0.578808,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.891402,0.15,4 +28348,0,0.532323,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.775743,0.15,4 +28385,0,0.217682,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.224369,0.15,4 +28386,0,0.158525,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.804599,0.15,4 +21156,-1,0.22873,0,2,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,0,0.229,0,5.489512,5,5 +28384,0,0.221365,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.312765,0.15,4 +174,1,0.097186,2,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,0.521,0.618,0,2.332461,5,5 +175,0,0.062201,2,2,1,2,3,,3,3,Big Beaver,Rd,607204,0.459,0.521,0,1.492826,5,5 +28278,0,0.135079,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.24189,0.15,4 +4902,1,0.191423,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,1.364,1.556,0,4.594156,6,4.5 +4885,1,0.215699,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,2.047,2.263,0,5.176777,6,4.5 +25368,0,0.170372,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.088936,0.15,4 +28383,0,0.172688,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.144509,0.15,4 +4893,1,0.205014,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,1.823,2.028,0,4.920339,6,4.5 +4888,1,0.018985,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,2.028,2.047,0,0.455641,6,4.5 +28456,0,0.175798,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.219154,0.15,4 +3107,0,0.244796,2,2,1,2,3,,3,3,Crooks,Rd,659810,3.214,3.459,0,5.875092,5,5 +3784,0,0.42448,2,2,1,2,3,,3,3,Maple,Rd,683906,15.801,16.226,0,10.187523,5,5 +8455,0,0.460192,1,1,0,2,5,,3,3,Meijer,Dr,982010,0.613,1.073,0,11.044619,8,4.5 +28037,0,0.489438,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.74652,0.15,4 +28292,0,0.673199,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,16.156769,0.15,4 +28376,0,0.339144,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.139461,0.15,4 +2126,0,0.148606,1,1,0,2,5,,3,3,Delemere,Blvd,612708,0.72,0.868,0,3.566534,8,4.5 +8456,0,0.323947,1,1,0,2,5,,3,3,Meijer,Dr,982010,0.289,0.613,0,7.77473,8,4.5 +28032,0,0.24677,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.922485,0.15,4 +3861,0,0.0435,1,1,0,2,5,,3,3,Delemere,,681404,0,0.044,0,1.043998,8,4.5 +28034,0,0.09438,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.265122,0.15,4 +3038,0,0.341998,2,2,1,2,3,,3,3,Crooks,Rd,659810,2.71,3.052,0,8.207945,5,5 +3445,0,0.162327,2,2,1,2,3,,3,3,Crooks,Rd,659810,3.052,3.214,0,3.895846,5,5 +3131,0,0.282334,2,2,1,2,3,,3,3,Crooks,Rd,659810,3.459,3.741,0,6.776015,5,5 +168,1,0.360177,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,1.645,2.005,0,8.644256,5,5 +3525,0,0.21022,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.325,4.536,0,5.045283,5,5 +21151,-1,0.317502,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.166,1.483,0,7.620049,5,5 +28280,0,0.307931,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.390336,0.15,4 +28281,0,0.116886,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.805254,0.15,4 +28282,0,0.134276,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.222618,0.15,4 +28356,0,0.274543,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.589034,0.15,4 +28387,0,0.382781,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.186738,0.15,4 +29964,0,0.629264,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.102324,0.15,4 +170,1,0.209724,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,1.285,1.495,0,5.033371,5,5 +21153,-1,0.276894,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,0.766,1.042,0,6.645465,5,5 +25441,0,0.236993,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.687825,0.15,4 +169,1,0.14983,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,1.495,1.645,0,3.59593,5,5 +29963,0,0.25743,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.178325,0.15,4 +21152,-1,0.123456,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.042,1.166,0,2.962937,5,5 +2550,0,0.230387,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.095,4.325,0,5.529299,5,5 +28380,0,0.275294,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.607052,0.15,4 +3165,0,0.158116,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.536,4.694,0,3.794782,5,5 +28355,0,0.239076,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.737829,0.15,4 +28389,0,0.260752,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.25805,0.15,4 +2441,0,0.158498,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.714,4.872,0,3.803963,5,5 +2867,0,0.020264,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.694,4.714,0,0.486344,5,5 +968,0,0.443417,1,1,0,2,5,,4,3,Beach,Rd,626301,0.796,1.24,0,10.642011,5.8,4.5 +1222,0,0.354684,2,2,1,2,3,,4,3,Long Lake,Rd,641102,9.268,9.623,0,8.512407,3.7,5 +1788,0,0.486371,2,2,1,2,4,,4,3,Wattles,Rd,618802,1.897,2.384,0,11.672898,4.5,4.5 +3518,0,0.243499,2,2,1,2,3,,4,3,Crooks,Rd,659810,6,6.244,0,5.843983,3.7,5 +4860,1,0.075492,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,3.45,3.525,0,1.811816,4.5,4.5 +25438,0,0.535582,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.853967,0.15,4 +25439,0,0.53442,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.826092,0.15,4 +25652,0,0.548832,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.171972,0.15,4 +27966,0,0.576114,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.826746,0.15,4 +28335,0,0.283411,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.801872,0.15,4 +28344,0,0.498418,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.962036,0.15,4 +28357,0,0.450042,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.800997,0.15,4 +28390,0,0.546867,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.124801,0.15,4 +28391,0,0.555443,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.33062,0.15,4 +29898,0,0.238162,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.71588,0.15,4 +1111,0,0.303349,1,1,0,2,4,,4,3,Wattles,Rd,618802,1.586,1.89,0,7.28037,4.5,4.5 +4870,1,0.483898,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,2.593,3.077,0,11.613559,4.5,4.5 +28393,0,0.350345,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.408273,0.15,4 +28394,0,0.348103,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.354468,0.15,4 +1591,0,0.191776,1,1,0,2,4,,4,3,Wattles,Rd,618802,1.395,1.586,0,4.602623,4.5,4.5 +4868,1,0.373243,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,3.077,3.45,0,8.957829,4.5,4.5 +1707,0,0.227305,2,2,0,2,3,,4,3,Long Lake,Rd,641102,9.029,9.256,0,5.455308,3.7,5 +4858,1,0.54403,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,3.525,4.069,0,13.056726,4.5,4.5 +25459,0,0.494771,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.874501,0.15,4 +25649,0,0.401606,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.63854,0.15,4 +28392,0,0.297684,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.144406,0.15,4 +502,0,0.21302,1,1,0,2,5,,4,3,Beach,Rd,626301,1.24,1.452,0,5.112488,5.8,4.5 +1155,0,0.066009,2,2,0,2,3,,4,3,Long Lake,Rd,641102,8.963,9.029,0,1.584208,3.7,5 +25674,0,0.494584,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.870027,0.15,4 +28334,0,0.263031,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.312735,0.15,4 +4855,1,0.233838,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,4.069,4.303,0,5.612116,4.5,4.5 +1355,0,0.308548,1,1,1,2,4,,4,3,Wattles,Rd,618802,2.586,2.894,0,7.40515,4.5,4.5 +3560,0,0.421044,2,2,1,2,3,,3,3,Crooks,Rd,659810,5.312,5.733,0,10.105059,5,5 +28345,0,0.400724,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.617367,0.15,4 +1291,0,0.202011,1,1,1,2,4,,4,3,Wattles,Rd,618802,2.384,2.586,0,4.84826,4.5,4.5 +3252,0,0.26704,2,2,1,2,3,,4,3,Crooks,Rd,659810,5.733,6,0,6.408968,3.7,5 +1882,1,0.27318,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,9.981,10.254,0,6.556312,3.7,5 +3110,1,0.192778,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,6.522,6.714,0,4.62667,3.7,5 +19515,0,0.482143,2,2,1,2,5,,4,3,Corporate,Dr,1888801,0.021,0.503,0,11.571438,5.8,4.5 +20195,-1,0.2685,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0.362,0.63,0,6.443996,3.7,5 +21163,-1,0.192119,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,0.279,0.471,0,4.610867,3.7,5 +320,1,0.220235,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,9.761,9.981,0,5.285644,3.7,5 +20397,-1,0.223809,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0.138,0.362,0,5.371415,3.7,5 +782,1,0.138466,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,9.623,9.761,0,3.323185,3.7,5 +20602,-1,0.138151,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0,0.138,0,3.31562,3.7,5 +19516,0,0.021051,2,2,1,2,5,,4,3,Corporate,Dr,1888801,0,0.021,0,0.505231,5.8,4.5 +3191,1,0.277933,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,6.244,6.522,0,6.670388,3.7,5 +21164,-1,0.278769,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,0,0.279,0,6.690454,3.7,5 +27964,0,0.331083,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.945989,0.15,4 +29899,0,0.318489,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.643736,0.15,4 +3366,1,0.333666,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,6.734,7.068,0,8.007988,3.7,5 +25437,0,0.287779,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.906695,0.15,4 +2821,1,0.019651,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,6.714,6.734,0,0.471632,3.7,5 +21162,-1,0.020131,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,0.471,0.491,0,0.483155,3.7,5 +2176,1,0.016226,3,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,10.254,10.271,0,0.389421,3.7,5 +20890,-1,0.016984,0,3,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0.63,0.647,0,0.407609,3.7,5 +3043,1,0.155955,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.068,7.223,0,3.742917,3.7,5 +143,0,0.431048,2,2,1,2,3,,3,3,13 Mile,Rd,607408,2.287,2.718,0,10.345164,5,5 +434,0,0.106516,1,1,0,2,5,,3,3,Washington,,644804,1.642,1.748,0,2.556394,8,4.5 +438,0,0.343114,2,2,0,2,4,,3,3,Main,,644806,1.772,2.115,0,8.234731,6,4.5 +657,1,0.520418,2,0,0,2,5,DV2,3,3,4th,St,644705,0.844,1.364,0,12.490037,8,4.5 +905,-1,0.513295,0,3,0,1,1,,3,3,S I 75,,646106,3.645,4.158,0,,0.58,7 +1103,-1,0.178376,0,2,0,2,5,,3,3,10 Mile,Rd,644205,2.965,3.144,0,4.281034,8,4.5 +1381,1,0.213405,2,0,0,2,5,,3,3,10 Mile,Rd,633409,12.366,12.58,0,5.121713,8,4.5 +1588,0,0.414778,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,0.085,0.499,0,9.954665,8,4.5 +1870,0,0.396967,1,1,0,2,5,,3,3,Girard,,645301,0.419,0.816,0,9.527218,8,4.5 +2297,1,0.58311,3,0,0,1,1,,3,3,N I 75,,647308,3.567,4.149,0,,0.58,7 +2312,1,0.210366,2,0,0,2,4,,3,3,Stephenson,Hwy,646902,4.008,4.218,0,5.048783,6,4.5 +2368,0,0.462001,2,2,1,2,4,,3,3,John R,Rd,646806,3.527,3.989,0,11.088032,6,4.5 +2390,-1,0.198109,0,3,0,2,4,,3,3,Stephenson,Hwy,646702,4.022,4.22,0,4.754622,6,4.5 +2450,0,0.232024,2,2,0,2,4,,3,3,Campbell,Rd,652509,1.576,1.808,0,5.568585,6,4.5 +2549,0,0.250653,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,19.521,19.772,0,6.015681,5,5 +2782,0,0.226483,1,1,0,2,5,,3,3,Lincoln,,651908,2.426,2.652,0,5.435602,8,4.5 +2860,0,0.176655,2,2,0,2,3,,3,3,Crooks,Rd,659810,0,0.177,0,4.239727,5,5 +3260,0,0.489014,1,1,0,2,5,,3,3,Gardenia,,671806,0.549,1.038,0,11.73633,8,4.5 +19469,1,0.465774,4,0,0,1,1,,3,3,E I 696,,1903903,3.502,3.967,0,,0.58,7 +19665,1,0.178889,1,0,0,1,1,RON,3,3,Hilton Campbell/W I 696,RAMP,1904102,0,0.179,0,,1.09,4 +19669,1,0.216331,1,0,0,1,1,ROF,3,3,E I 696/Hilton Campbell,RAMP,1904006,0,0.216,0,,2.24,5 +19709,-1,0.46787,0,4,0,1,1,,3,3,W I 696,,1904002,3.504,3.972,0,,0.58,7 +20192,0,0.231026,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.062,8.293,0,5.544634,6,4.5 +20398,-1,0.521497,0,2,0,2,5,DV2,2,3,4th,St,4404212,0,0.521,0,12.515924,8.5,4.5 +21898,0,0.320457,2,2,0,2,3,,3,3,Rochester,Rd,4413538,0,0.32,0,7.69097,5,5 +26180,0,0.629522,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.108529,0.15,4 +26861,0,0.346258,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.310181,0.15,4 +28014,0,0.524662,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.591893,0.15,4 +28027,0,0.329609,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.91061,0.15,4 +28289,0,0.314873,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.556963,0.15,4 +28316,0,0.63465,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.231607,0.15,4 +28395,0,0.347076,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.32982,0.15,4 +28399,0,0.3663,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.791189,0.15,4 +28400,0,0.313752,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.530038,0.15,4 +28403,0,0.279527,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.708655,0.15,4 +28405,0,0.271894,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.525455,0.15,4 +28408,0,0.457094,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.970254,0.15,4 +28416,0,0.220086,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.282073,0.15,4 +28419,0,0.474545,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.389088,0.15,4 +28420,0,0.453479,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.883493,0.15,4 +28455,0,0.552294,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.255046,0.15,4 +29973,0,0.581446,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.954715,0.15,4 +494,1,0.202517,4,0,0,2,5,,3,3,10 Mile,Rd,633409,11.44,11.642,0,4.860418,8,4.5 +539,0,0.097571,1,1,0,2,5,,2,3,Lafayette,,644803,0.308,0.405,0,2.341716,8.5,4.5 +637,-1,0.296118,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,9.858,10.154,0,7.106837,6,5 +652,-1,0.139638,0,4,0,2,5,,3,3,10 Mile,Rd,644205,2.108,2.247,0,3.351315,8,4.5 +768,0,0.06156,1,1,0,2,5,,2,3,6th,St,644706,0.277,0.339,0,1.477437,8.5,4.5 +880,1,0.290998,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,9.872,10.163,0,6.983957,6,5 +996,0,0.062739,1,1,0,2,5,,2,3,4th,St,644705,0.356,0.419,0,1.50573,8.5,4.5 +1474,0,0.091388,1,1,0,2,5,,2,3,Washington,,644804,0.518,0.609,0,2.193324,8.5,4.5 +1714,1,0.8677,2,0,0,2,3,DIV,3,3,Woodward,Ave,614101,10.304,11.171,0,20.824798,5,5 +1769,-1,0.821077,0,2,0,2,3,DIV,3,3,Woodward,Ave,616808,10.352,11.173,0,19.705848,5,5 +1988,0,0.081597,2,2,1,2,3,,2,3,Main,,644806,0.681,0.762,0,1.958337,6,5 +2674,0,0.087137,1,1,0,2,5,,2,3,Troy,,652306,0,0.087,0,2.091278,8.5,4.5 +3145,0,0.124965,1,1,0,2,5,,3,3,Catalpa,Dr,656010,3.548,3.672,0,2.999167,8,4.5 +3377,0,0.056295,1,1,0,2,5,,2,3,Lincoln,,651908,1.641,1.697,0,1.351073,8.5,4.5 +3574,0,0.158616,1,1,0,2,5,,2,3,West,,652303,0,0.159,0,3.806786,8.5,4.5 +3856,1,0.063163,1,0,0,2,5,,2,3,5th,St,681804,0,0.063,0,1.515915,8.5,4.5 +19471,1,0.949953,4,0,0,1,1,,3,3,E I 696,,1903903,2.336,3.286,0,,0.58,7 +19493,-1,0.324925,0,3,0,2,3,,2,3,W M 1 Service Drive,,1903703,0,0.325,0,7.7982,6,5 +19501,1,0.328904,3,0,0,2,3,,2,3,E M 1 Service Drive,,1903609,0,0.329,0,7.893687,6,5 +19715,-1,0.906256,0,4,0,1,1,,3,3,W I 696,,1904002,2.342,3.248,0,,0.58,7 +20097,0,0.021917,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.289,7.311,0,0.526008,8,4.5 +26167,0,0.240456,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.77095,0.15,4 +27979,0,0.536685,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.880441,0.15,4 +28314,0,0.346925,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.326203,0.15,4 +28417,0,0.165138,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.963322,0.15,4 +28427,0,0.224264,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,5.382334,0.15,4 +28433,0,0.129253,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.102064,0.15,4 +29662,0,0.488611,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,11.726654,0.15,4 +29893,0,0.191857,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,4.604574,0.15,4 +29970,0,0.265126,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,6.363025,0.15,4 +956,1,0.463723,4,0,0,2,5,,3,3,10 Mile,Rd,633409,10.976,11.44,0,11.129359,8,4.5 +1863,-1,0.52475,0,4,0,2,5,,3,3,10 Mile,Rd,644205,1.583,2.108,0,12.594006,8,4.5 +27978,0,0.569543,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.669035,0.15,4 +19659,1,0.303204,2,0,0,1,1,RON,3,3,M 1/W I 696,RAMP,1904105,0,0.303,0,,1.09,4 +19679,1,0.242149,2,0,0,1,1,ROF,3,3,E I 696/M 1,RAMP,1904005,0,0.242,0,,2.24,5 +28301,0,0.358072,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.59372,0.15,4 +1860,1,0.140594,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,10.163,10.304,0,3.374252,6,5 +2175,-1,0.197432,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,10.154,10.352,0,4.738368,6,5 +2931,0,0.182907,1,1,0,2,5,,2,3,Lincoln,,651908,1.458,1.641,0,4.389765,8.5,4.5 +3408,0,0.016028,1,1,0,2,5,,2,3,Lincoln,,651908,1.442,1.458,0,0.384682,8.5,4.5 +303,-1,0.223662,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,9.373,9.597,0,5.367892,5,5 +1666,1,0.337677,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,9.261,9.598,0,8.104242,5,5 +1865,-1,0.261837,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,9.597,9.858,0,6.284082,6,5 +2172,1,0.273602,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,9.598,9.872,0,6.566456,6,5 +3241,0,0.468141,1,1,0,2,5,,3,3,Catalpa,Dr,656010,3.08,3.548,0,11.235396,8,4.5 +20294,0,0.487783,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,6.801,7.289,0,11.706785,8,4.5 +27183,0,0.313724,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.529384,0.15,4 +27990,0,0.274102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.578441,0.15,4 +27992,0,0.243855,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.852524,0.15,4 +20719,0,0.229515,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,6.555,6.784,0,5.508356,6,4.5 +20483,0,0.017044,2,2,0,2,4,,2,3,11 Mile,Rd,4400088,6.784,6.801,0,0.409054,8,4.5 +1980,0,0.245523,1,1,0,2,5,,2,3,4th,St,644705,0,0.245,0,5.892559,8.5,4.5 +3396,0,0.088093,1,1,0,2,5,,2,3,West,,652303,0.274,0.362,0,2.114236,8.5,4.5 +28089,0,0.29251,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,7.020229,0.15,4 +28431,0,0.133772,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.210536,0.15,4 +1466,0,0.110696,1,1,0,2,5,,2,3,4th,St,644705,0.245,0.356,0,2.656699,8.5,4.5 +3494,0,0.054129,1,1,0,2,5,,2,3,West,,652303,0.159,0.213,0,1.299105,8.5,4.5 +28094,0,0.10676,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,2.56223,0.15,4 +28303,0,0.056471,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.355299,0.15,4 +2467,0,0.061036,1,1,0,2,5,,2,3,West,,652303,0.213,0.274,0,1.464864,8.5,4.5 +2779,0,0.088973,1,1,0,2,5,,2,3,West,,652303,0.362,0.451,0,2.135356,8.5,4.5 +28418,0,0.045359,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.088605,0.15,4 +9,-1,0.05506,0,4,0,2,5,,3,3,10 Mile,Rd,644205,2.247,2.302,0,1.321443,8,4.5 +1411,-1,0.116494,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.192,11.309,0,2.795845,5,5 +1475,1,0.051401,4,0,0,2,3,,2,3,Main,,644806,0.082,0.133,0,1.233634,6,5 +1580,-1,0.474546,0,2,0,2,5,,3,3,10 Mile,Rd,644205,2.491,2.965,0,11.3891,8,4.5 +1894,1,0.515477,2,0,0,2,5,,3,3,10 Mile,Rd,633409,11.851,12.366,0,12.371438,8,4.5 +3020,0,0.125921,1,1,0,2,5,,2,3,Lincoln,,651908,2.01,2.136,0,3.022101,8.5,4.5 +19470,1,0.215784,4,0,0,1,1,,3,3,E I 696,,1903903,3.286,3.502,0,,0.58,7 +19490,-1,0.060356,0,3,0,2,3,,2,3,W M 1 Service Drive,,1903703,0.42,0.48,0,1.448538,6,5 +19495,1,0.048729,3,0,0,2,5,,3,3,S M 1/E I 696,RAMP,1903610,0.067,0.116,0,1.169484,8,4.5 +19498,1,0.060524,3,0,0,2,3,,2,3,E M 1 Service Drive,,1903609,0.46,0.52,0,1.452583,6,5 +19502,1,0.220721,2,0,0,1,1,ROF,3,3,W I 696/M 1,RAMP,1903607,0,0.221,0,,2.24,5 +19655,1,0.299457,2,0,0,1,1,RON,3,3,M 1/E I 696,RAMP,1904106,0,0.299,0,,1.09,4 +28401,0,0.276858,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.644583,0.15,4 +28421,0,0.342612,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.222684,0.15,4 +1006,0,0.340662,1,1,0,2,5,,3,3,Oakland,Park,644903,0,0.341,0,8.175895,8,4.5 +1084,1,0.05345,3,0,0,2,5,,2,3,10 Mile,Rd,633409,11.765,11.819,0,1.282794,8.5,4.5 +19488,-1,0.243847,0,3,0,2,3,,3,3,W M 1 Service Drive,,1903703,0.578,0.822,0,5.852326,5,5 +19489,-1,0.09833,0,3,0,2,3,,3,3,W M 1 Service Drive,,1903703,0.48,0.578,0,2.35993,5,5 +19497,1,0.346326,3,0,0,2,3,,3,3,E M 1 Service Drive,,1903609,0.52,0.866,0,8.311827,5,5 +28423,0,0.220387,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.289284,0.15,4 +2065,1,0.089079,4,0,0,2,5,,3,3,10 Mile,Rd,633409,11.642,11.731,0,2.1379,8,4.5 +19494,1,0.050114,3,0,0,2,5,,3,3,S M 1/E I 696,RAMP,1903610,0.116,0.166,0,1.202728,8,4.5 +1561,1,0.033935,4,0,0,2,5,,2,3,10 Mile,Rd,633409,11.731,11.765,0,0.81444,8.5,4.5 +275,1,0.01357,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.171,11.184,0,0.32567,5,5 +545,0,0.026987,1,1,0,2,5,,3,3,Oakland,Park,644903,0.341,0.368,0,0.64769,8,4.5 +1273,-1,0.019904,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.173,11.192,0,0.477703,5,5 +635,1,0.032403,2,0,0,2,5,,2,3,10 Mile,Rd,633409,11.819,11.851,0,0.777661,8.5,4.5 +1986,1,0.081488,2,0,0,2,3,,3,3,Main,St,644806,0,0.082,0,1.955722,5,5 +1001,0,0.219002,2,2,0,2,5,,2,3,Washington,,644804,0.108,0.327,0,5.256058,8.5,4.5 +1003,0,0.330197,2,2,0,2,3,,2,3,Main,,644806,0.133,0.463,0,7.924722,6,5 +1202,-1,0.08494,0,4,0,2,5,,2,3,10 Mile,Rd,644205,2.337,2.422,0,2.038566,8.5,4.5 +3310,0,0.123945,1,1,0,2,5,,2,3,Lincoln,,651908,1.764,1.888,0,2.974691,8.5,4.5 +28088,0,0.145886,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.501275,0.15,4 +1984,-1,0.028725,0,3,0,2,5,,2,3,Washington,,644804,0.023,0.052,0,0.689401,8.5,4.5 +19499,1,0.079241,3,0,0,2,3,,2,3,E M 1 Service Drive,,1903609,0.38,0.46,0,1.901781,6,5 +19496,1,0.066911,3,0,0,1,5,,2,3,S M 1/E I 696,RAMP,1903610,0,0.067,0,,8.5,4.5 +19500,1,0.051626,3,0,0,2,3,,2,3,E M 1 Service Drive,,1903609,0.329,0.38,0,1.23903,6,5 +432,-1,0.022738,0,1,0,2,5,,2,3,Washington,,644804,0,0.023,0,0.545701,8.5,4.5 +1682,-1,0.034442,0,4,0,2,5,,2,3,10 Mile,Rd,644205,2.302,2.337,0,0.826619,8.5,4.5 +19487,1,0.086974,2,0,0,2,7,,2,3,Washington,,1903704,0,0.087,0,2.087366,8.5,4.5 +19491,-1,0.050355,0,3,0,2,3,,2,3,W M 1 Service Drive,,1903703,0.37,0.42,0,1.208513,6,5 +19492,-1,0.04471,0,3,0,2,3,,2,3,W M 1 Service Drive,,1903703,0.325,0.37,0,1.073051,6,5 +1472,-1,0.0562,0,3,0,2,5,,2,3,Washington,,644804,0.052,0.108,0,1.348797,8.5,4.5 +540,0,0.191117,2,2,0,2,5,,2,3,Washington,,644804,0.327,0.518,0,4.586816,8.5,4.5 +3327,0,0.067478,1,1,0,2,5,,2,3,Lincoln,,651908,1.697,1.764,0,1.619461,8.5,4.5 +28428,0,0.039194,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,0.940648,0.15,4 +765,-1,0.069268,0,4,0,2,5,,3,3,10 Mile,Rd,644205,2.422,2.491,0,1.662426,8,4.5 +436,0,0.2013,2,2,0,2,3,,2,3,Main,,644806,0.48,0.681,0,4.831202,6,5 +3207,0,0.121789,1,1,0,2,5,,2,3,Lincoln,,651908,1.888,2.01,0,2.922946,8.5,4.5 +542,0,0.016623,2,2,0,2,3,,2,3,Main,,644806,0.463,0.48,0,0.398947,6,5 +2086,0,0.084694,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,0,0.085,0,2.03266,8,4.5 +2827,0,0.289951,1,1,0,2,5,,2,3,Lincoln,,651908,2.136,2.426,0,6.958814,8.5,4.5 +19711,-1,0.255574,0,4,0,1,1,,3,3,W I 696,,1904002,3.248,3.504,0,,0.58,7 +26858,0,0.388505,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.324122,0.15,4 +28434,0,0.285066,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.84159,0.15,4 +28435,0,0.354371,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.504906,0.15,4 +429,0,0.119414,1,1,0,2,5,,2,3,4th,St,644705,0.724,0.844,0,2.865939,8.5,4.5 +433,0,0.285125,1,1,0,2,5,,3,3,Washington,,644804,0.959,1.244,0,6.842989,8,4.5 +437,0,0.290206,2,2,1,2,3,,3,3,Main,,644806,1.114,1.405,0,6.964951,5,5 +2994,0,0.538793,1,1,0,2,5,,3,3,Gardenia,,671806,0,0.539,0,12.931038,8,4.5 +3312,0,0.287588,1,1,0,2,5,,3,3,Troy,,652306,0.441,0.729,0,6.902122,8,4.5 +20599,0,0.379669,2,2,0,2,4,,2,3,11 Mile,Rd,4400088,7.654,8.034,0,9.112058,8,4.5 +28406,0,0.441559,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.597427,0.15,4 +28409,0,0.292496,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.019905,0.15,4 +543,0,0.058568,2,2,0,2,3,,2,3,Main,,644806,0.939,0.997,0,1.405621,6,5 +658,0,0.062326,1,1,0,2,5,,2,3,6th,St,644706,0.462,0.525,0,1.495814,8.5,4.5 +659,0,0.109328,2,2,0,2,5,,2,3,Lafayette,,644803,0.579,0.688,0,2.623868,8.5,4.5 +1356,0,0.083056,1,1,1,2,5,,2,3,Washington,,644804,0.819,0.902,0,1.993334,8.5,4.5 +1864,0,0.062868,1,1,1,2,5,,2,3,4th,St,644705,0.542,0.605,0,1.508835,8.5,4.5 +36706,-1,0.062496,0,1,0,2,9,,2,3,7th,St,671703,0.122,0.184,0,1.499914,8.5,4.5 +2859,0,0.060015,1,1,0,2,5,,2,3,Center,,4415777,0.025,0.085,0,1.440348,8.5,4.5 +3148,0,0.05953,1,1,0,2,5,,2,3,Troy,,652306,0.265,0.324,0,1.428719,8.5,4.5 +3305,0,0.064024,1,1,0,2,5,,2,3,2nd,St,671706,0.056,0.12,0,1.536578,8.5,4.5 +3433,0,0.062787,1,1,0,2,5,,2,3,3rd,St,671705,0,0.063,0,1.506882,8.5,4.5 +3857,0,0.058778,1,1,0,2,5,,2,3,Williams,,681802,0.178,0.237,0,1.410676,8.5,4.5 +20144,0,0.063176,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.473,7.536,0,1.516225,8,4.5 +21134,1,0.103453,1,0,0,2,5,,2,3,Sherman,Dr,4408769,0.078,0.181,0,2.482874,8.5,4.5 +534,0,0.063725,1,1,1,2,5,,2,3,4th,St,644705,0.419,0.483,0,1.529389,8.5,4.5 +541,0,0.058947,1,1,0,2,5,,2,3,Washington,,644804,0.667,0.726,0,1.414725,8.5,4.5 +1585,0,0.062379,1,1,0,2,5,,2,3,6th,St,644706,0.339,0.401,0,1.497092,8.5,4.5 +1586,0,0.054547,1,1,1,2,5,,2,3,Lafayette,,644803,0.463,0.517,0,1.309135,8.5,4.5 +2780,0,0.061715,1,1,0,2,5,,2,3,7th,St,671703,0,0.062,0,1.481172,8.5,4.5 +21495,0,0.058259,1,1,0,2,5,,2,3,Center,,4413543,0.059,0.117,0,1.398204,8.5,4.5 +2084,0,0.057464,1,1,0,2,5,,2,3,Lafayette,,644803,0.405,0.463,0,1.379127,8.5,4.5 +1106,0,0.061739,1,1,1,2,5,,2,3,Lafayette,,644803,0.517,0.579,0,1.481739,8.5,4.5 +1002,0,0.057979,1,1,0,2,5,,2,3,Washington,,644804,0.609,0.667,0,1.391491,8.5,4.5 +1105,0,0.060959,1,1,0,2,5,,2,3,6th,St,644706,0.401,0.462,0,1.463021,8.5,4.5 +3205,-1,0.059912,0,1,0,2,5,,2,3,7th,St,671703,0.062,0.122,0,1.437876,8.5,4.5 +21496,1,0.058628,1,0,0,2,5,,2,3,Center,,4413543,0,0.059,0,1.407076,8.5,4.5 +302,0,0.059771,1,1,1,2,5,,2,3,4th,St,644705,0.483,0.542,0,1.434496,8.5,4.5 +2085,0,0.05865,1,1,0,2,5,,2,3,Washington,,644804,0.726,0.785,0,1.407603,8.5,4.5 +36707,0,0.059744,2,2,0,2,3,,2,3,Main,,644806,0.762,0.822,0,1.433845,6,5 +3434,0,0.060063,1,1,0,2,5,,2,3,5th,St,680804,0,0.06,0,1.441512,8.5,4.5 +1587,0,0.034681,1,1,1,2,5,,2,3,Washington,,644804,0.785,0.819,0,0.832355,8.5,4.5 +20539,0,0.090953,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.323,7.414,0,2.182883,8,4.5 +21135,0,0.077755,2,2,0,2,5,,2,3,Sherman,Dr,4408769,0,0.078,0,1.866116,8.5,4.5 +20787,0,0.011723,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.311,7.323,0,0.281347,8,4.5 +2469,-1,0.056248,0,3,0,2,5,,2,3,2nd,St,671706,0,0.056,0,1.349953,8.5,4.5 +2576,0,0.056032,1,1,0,2,5,,2,3,Center,,4415777,0.085,0.141,0,1.344761,8.5,4.5 +20346,0,0.059236,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.414,7.473,0,1.421665,8,4.5 +898,0,0.057113,1,1,1,2,5,,2,3,Washington,,644804,0.902,0.959,0,1.370713,8.5,4.5 +3208,-1,0.058298,0,1,0,2,5,,2,3,Center,,4415777,0.141,0.2,0,1.399158,8.5,4.5 +894,0,0.058558,1,1,0,2,5,,2,3,4th,St,644705,0.666,0.724,0,1.405394,8.5,4.5 +1476,0,0.057934,2,2,0,2,3,,2,3,Main,,644806,0.822,0.88,0,1.39041,6,5 +1688,0,0.059512,1,1,0,2,5,,2,3,6th,St,644706,0.586,0.646,0,1.428297,8.5,4.5 +2463,0,0.060207,1,1,0,2,5,,2,3,5th,St,4415779,0.105,0.165,0,1.444975,8.5,4.5 +2900,0,0.059761,1,1,0,2,5,,2,3,7th,St,4416278,0.031,0.091,0,1.434257,8.5,4.5 +3263,0,0.056968,1,1,0,2,5,,2,3,Troy,,652306,0.149,0.206,0,1.367227,8.5,4.5 +3859,0,0.057545,1,1,0,2,5,,2,3,Williams,,681802,0.062,0.119,0,1.38107,8.5,4.5 +17,0,0.061749,1,1,0,2,5,,2,3,6th,St,644706,0.525,0.586,0,1.481979,8.5,4.5 +3860,0,0.061653,1,1,0,2,5,,2,3,Williams,,681802,0,0.062,0,1.479681,8.5,4.5 +1004,0,0.058751,2,2,0,2,3,,2,3,Main,,644806,0.88,0.939,0,1.410018,6,5 +1353,0,0.060808,1,1,0,2,5,,2,3,4th,St,644705,0.605,0.666,0,1.459402,8.5,4.5 +2740,0,0.060901,1,1,0,2,5,,2,3,5th,St,4415779,0.044,0.105,0,1.461633,8.5,4.5 +3858,0,0.059305,1,1,0,2,5,,2,3,Williams,,681802,0.119,0.178,0,1.423319,8.5,4.5 +2960,0,0.061867,1,1,0,2,5,,2,3,Troy,,652306,0.087,0.149,0,1.484798,8.5,4.5 +3450,0,0.058814,1,1,0,2,5,,2,3,Troy,,652306,0.206,0.265,0,1.411526,8.5,4.5 +2507,0,0.117065,1,1,0,2,5,,2,3,Troy,,652306,0.324,0.441,0,2.809552,8.5,4.5 +2751,0,0.058783,1,1,0,2,5,,2,3,3rd,St,671705,0.123,0.182,0,1.410781,8.5,4.5 +20839,0,0.118123,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.536,7.654,0,2.834943,8,4.5 +1358,0,0.059306,2,2,0,2,3,,2,3,Main,,644806,0.997,1.057,0,1.423346,6,5 +3024,0,0.06071,1,1,0,2,5,,2,3,3rd,St,671705,0.063,0.123,0,1.457052,8.5,4.5 +900,0,0.057717,2,2,0,2,3,,2,3,Main,,644806,1.057,1.114,0,1.3852,6,5 +1477,0,0.075187,2,2,1,2,3,,3,3,Main,,644806,1.697,1.772,0,1.804482,5,5 +1985,0,0.286617,1,1,0,2,5,,3,3,Washington,,644804,1.244,1.531,0,6.87881,8,4.5 +1989,0,0.292522,2,2,1,2,3,,3,3,Main,,644806,1.405,1.697,0,7.020524,5,5 +3358,0,0.11796,1,1,0,2,5,,3,3,Catalpa,Dr,656010,3.672,3.79,0,2.831039,8,4.5 +1473,0,0.111016,1,1,0,2,5,,3,3,Washington,,644804,1.531,1.642,0,2.664388,8,4.5 +19907,0,0.118205,1,1,0,2,5,,3,3,Farnum,,4407473,0,0.118,0,2.836922,8,4.5 +29666,0,0.3351,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,8.042401,0.15,4 +28425,0,0.053166,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.275979,0.15,4 +20394,0,0.028047,2,2,0,2,4,,2,3,11 Mile,Rd,4400088,8.034,8.062,0,0.673118,8,4.5 +28407,0,0.255969,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.143262,0.15,4 +2737,0,0.01063,1,1,0,2,5,,3,3,Gardenia,,671806,0.539,0.549,0,0.255114,8,4.5 +140,0,0.469415,2,2,0,2,3,,3,3,13 Mile,Rd,607408,3.028,3.497,0,11.26595,5,5 +535,0,0.349707,2,2,0,2,5,,3,3,Normandy,Rd,644402,2.624,2.973,0,8.392967,8,4.5 +1868,0,0.244862,2,2,0,2,4,,3,3,Main,,644806,2.888,3.133,0,5.876698,6,4.5 +2516,0,0.311339,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.673,18.984,0,7.472141,5,5 +2579,0,0.284805,2,2,0,2,3,,3,3,Crooks,Rd,659810,0.177,0.461,0,6.835327,5,5 +3555,0,0.322104,2,2,0,2,3,,3,3,Crooks,Rd,659810,1.376,1.698,0,7.730505,5,5 +21890,0,0.252974,2,2,0,2,3,,3,3,Rochester,Rd,4413538,1.217,1.47,0,6.07138,5,5 +25376,0,0.427213,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.253111,0.15,4 +28016,0,0.475273,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.406556,0.15,4 +28044,0,0.484222,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.621328,0.15,4 +28046,0,0.510495,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.251872,0.15,4 +28318,0,0.271464,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.515127,0.15,4 +28437,0,0.614097,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.738321,0.15,4 +29901,0,0.403048,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.673164,0.15,4 +2536,0,0.232375,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.274,18.506,0,5.577,5,5 +2603,0,0.432934,2,2,0,2,3,,3,3,Crooks,Rd,659810,0.461,0.894,0,10.39041,5,5 +3564,0,0.251327,2,2,0,2,3,,3,3,Crooks,Rd,659810,0.894,1.145,0,6.03185,5,5 +28013,0,0.402811,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.667475,0.15,4 +3246,0,0.035087,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.134,18.169,0,0.842091,5,5 +28024,0,0.269073,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.457751,0.15,4 +2944,0,0.105184,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.169,18.274,0,2.52441,5,5 +2598,0,0.230338,2,2,0,2,3,,3,3,Crooks,Rd,659810,1.145,1.376,0,5.52811,5,5 +28015,0,0.286307,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.871357,0.15,4 +3509,0,0.166496,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.506,18.673,0,3.995894,5,5 +28017,0,0.16858,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.045916,0.15,4 +139,0,0.124536,2,2,0,2,3,,3,3,13 Mile,Rd,607408,3.497,3.622,0,2.988855,5,5 +997,0,0.635646,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.988,2.624,0,15.255501,8,4.5 +3235,0,0.227692,2,2,1,2,3,,3,3,Crooks,Rd,659810,1.969,2.196,0,5.464609,5,5 +28039,0,0.507594,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.182266,0.15,4 +28440,0,0.272923,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.550145,0.15,4 +28441,0,0.28847,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.923282,0.15,4 +138,0,0.396919,2,2,0,2,3,,3,3,13 Mile,Rd,607408,3.622,4.018,0,9.526063,5,5 +3242,0,0.221642,2,2,0,2,3,,3,3,Crooks,Rd,659810,1.698,1.919,0,5.319416,5,5 +2937,0,0.0495,2,2,1,2,3,,3,3,Crooks,Rd,659810,1.919,1.969,0,1.188005,5,5 +28005,0,0.30678,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.362715,0.15,4 +307,0,0.190594,1,1,0,2,5,GRV,3,3,Girard,,645301,0.229,0.419,0,4.574251,7,4.5 +1478,0,0.241033,2,2,0,2,4,,3,3,Main,,644806,2.354,2.595,0,5.784789,6,4.5 +2844,0,0.444963,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,19.076,19.521,0,10.679109,5,5 +21891,0,0.131392,2,2,0,2,3,,3,3,Rochester,Rd,4413538,1.085,1.217,0,3.153405,5,5 +21895,0,0.149065,2,2,0,2,3,,3,3,Rochester,Rd,4413538,0.672,0.821,0,3.577572,5,5 +28018,0,0.44354,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.644953,0.15,4 +28019,0,0.15911,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.818646,0.15,4 +28443,0,0.146489,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.515734,0.15,4 +3487,0,0.092516,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.984,19.076,0,2.220392,5,5 +21897,0,0.109968,2,2,0,2,3,,3,3,Rochester,Rd,4413538,0.32,0.43,0,2.639238,5,5 +1990,0,0.239132,2,2,0,2,4,,3,3,Main,,644806,2.115,2.354,0,5.739159,6,4.5 +21896,0,0.24142,2,2,0,2,3,,3,3,Rochester,Rd,4413538,0.43,0.672,0,5.794088,5,5 +769,0,0.228886,1,1,0,2,5,,3,3,Girard,,645301,0,0.229,0,5.49326,8,4.5 +1005,0,0.17424,2,2,0,2,4,,3,3,Main,,644806,2.595,2.769,0,4.181768,6,4.5 +21894,0,0.264835,2,2,0,2,3,,3,3,Rochester,Rd,4413538,0.821,1.085,0,6.356041,5,5 +544,0,0.101406,2,2,0,2,4,,3,3,Main,,644806,2.769,2.871,0,2.433732,6,4.5 +305,0,0.017465,2,2,0,2,4,,3,3,Main,,644806,2.871,2.888,0,0.419155,6,4.5 +28415,0,0.243317,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.839611,0.15,4 +142,0,0.135163,2,2,0,2,3,,3,3,13 Mile,Rd,607408,2.718,2.853,0,3.243914,5,5 +440,0,0.120123,2,2,0,2,4,,3,3,Main,,644806,3.514,3.634,0,2.882961,6,4.5 +21888,0,0.389072,2,2,0,2,3,,3,3,Rochester,Rd,4413538,1.47,1.859,0,9.337731,5,5 +27977,0,0.321035,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.704835,0.15,4 +28012,0,0.233721,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.609313,0.15,4 +141,0,0.174818,2,2,0,2,3,,3,3,13 Mile,Rd,607408,2.853,3.028,0,4.195639,5,5 +1360,0,0.220481,2,2,0,2,4,,3,3,Main,,644806,3.133,3.353,0,5.291546,6,4.5 +25377,0,0.290188,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.964517,0.15,4 +28438,0,0.14689,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.52535,0.15,4 +902,0,0.160346,2,2,0,2,4,,3,3,Main,,644806,3.353,3.514,0,3.848301,6,4.5 +1359,0,0.267617,2,2,0,2,4,,3,3,Main,,644806,3.634,3.901,0,6.422818,6,4.5 +25364,0,0.240664,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.775941,0.15,4 +901,0,0.01422,2,2,1,2,4,,3,3,Main,,644806,3.901,3.916,0,0.341277,6,4.5 +21885,0,0.172259,2,2,0,2,3,,3,3,Rochester,Rd,4413538,2.052,2.224,0,4.134225,5,5 +21887,0,0.193164,2,2,0,2,3,,3,3,Rochester,Rd,4413538,1.859,2.052,0,4.635928,5,5 +654,-1,0.221539,0,2,0,2,5,,3,3,10 Mile,Rd,644205,3.781,4.002,0,5.316929,8,4.5 +1007,0,0.263392,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.097,1.36,0,6.321398,8,4.5 +1187,1,0.218196,2,0,0,2,5,,3,3,10 Mile,Rd,633409,13.119,13.337,0,5.236711,8,4.5 +1204,1,0.215978,2,0,0,2,5,DV2,3,3,4th,St,644705,1.842,2.057,0,5.183472,8,4.5 +1364,-1,0.604419,0,3,0,1,1,,3,3,S I 75,,646106,3.041,3.645,0,,0.58,7 +1871,-1,0.360864,0,4,0,1,1,,3,3,S I 75,,646106,2.68,3.041,0,,0.58,7 +2298,1,0.435903,3,0,0,1,1,,3,3,N I 75,,647308,3.131,3.567,0,,0.58,7 +2299,1,0.469184,4,0,0,1,1,,3,3,N I 75,,647308,2.662,3.131,0,,0.58,7 +2314,1,0.102345,2,0,0,2,4,,3,3,Stephenson,Hwy,646902,3.463,3.566,0,2.45627,6,4.5 +2316,1,0.435194,2,0,0,2,5,,3,3,Stephenson,Hwy,646902,2.944,3.379,0,10.444654,8,4.5 +2372,0,0.162525,2,2,1,2,4,,3,3,John R,Rd,646806,2.52,2.682,0,3.900605,6,4.5 +2393,-1,0.196903,0,3,0,2,5,,3,3,Stephenson,Hwy,646702,3.281,3.477,0,4.725682,8,4.5 +2396,-1,0.289719,0,2,0,2,5,,3,3,Stephenson,Hwy,646702,2.957,3.247,0,6.953254,8,4.5 +2957,1,0.112825,2,0,0,1,1,RFF,3,3,I 75/W I 696,RAMP,652609,0.352,0.465,0,,0.58,7 +3345,0,0.269591,1,1,0,2,5,,3,3,Gardenia,,671806,1.441,1.711,0,6.470178,8,4.5 +3370,0,0.162847,1,1,0,2,5,,3,3,Lincoln,,651908,3.248,3.41,0,3.908333,8,4.5 +3420,0,0.300971,2,2,0,2,4,,3,3,Campbell,Rd,652509,0.503,0.804,0,7.223315,6,4.5 +4891,1,0.143573,2,0,0,1,1,RFF,3,3,E I 696/I 75,RAMP,710402,0,0.144,0,,0.58,7 +19467,1,0.584823,4,0,0,1,1,,3,3,E I 696,,1903903,4.301,4.885,0,,0.58,7 +19703,-1,0.585018,0,4,0,1,1,,3,3,W I 696,,1904002,4.3,4.885,0,,0.58,7 +20247,0,0.050842,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.943,8.994,0,1.220215,6,4.5 +20656,-1,0.212909,0,2,0,2,5,DV2,3,3,4th,St,4404212,0.998,1.21,0,5.109825,8,4.5 +28412,0,0.607212,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.57309,0.15,4 +28413,0,0.246128,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.907077,0.15,4 +28422,0,0.484015,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.61635,0.15,4 +28447,0,0.096455,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.314916,0.15,4 +28451,0,0.165496,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.971898,0.15,4 +29659,0,0.232348,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.57636,0.15,4 +29664,0,0.330475,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.931407,0.15,4 +10,-1,0.210071,0,2,0,2,5,,3,3,10 Mile,Rd,644205,3.234,3.444,0,5.041698,8,4.5 +441,0,0.352636,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,0.499,0.852,0,8.463275,8,4.5 +468,1,0.183843,2,0,0,2,5,,3,3,10 Mile,Rd,633409,12.658,12.841,0,4.412238,8,4.5 +762,0,0.505831,1,1,1,2,4,,3,3,Hilton,,642306,1.49,1.996,0,12.139954,6,4.5 +2660,0,0.258768,1,1,0,2,5,,3,3,Lincoln,,651908,2.652,2.911,0,6.210427,8,4.5 +19653,1,0.174947,1,0,0,1,1,RON,3,3,Bermuda Mohawk/E I 696,RAMP,1904107,0,0.175,0,,1.09,4 +19662,1,0.201521,1,0,0,1,1,ROF,3,3,W I 696/Bermuda Mohawk,RAMP,1904103,0,0.202,0,,2.24,5 +28398,0,0.260968,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.263222,0.15,4 +29972,0,0.536287,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.870878,0.15,4 +28444,0,0.08128,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.95072,0.15,4 +653,-1,0.090303,0,3,0,2,5,,3,3,10 Mile,Rd,644205,3.144,3.234,0,2.167263,8,4.5 +927,1,0.077998,3,0,0,2,5,,3,3,10 Mile,Rd,633409,12.58,12.658,0,1.871942,8,4.5 +1481,0,0.095479,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.002,1.097,0,2.291495,8,4.5 +27424,0,0.132762,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.186298,0.15,4 +1992,0,0.149715,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,0.852,1.002,0,3.593152,8,4.5 +1658,1,0.277661,2,0,0,2,5,,3,3,10 Mile,Rd,633409,12.841,13.119,0,6.663869,8,4.5 +1683,-1,0.33693,0,2,0,2,5,,3,3,10 Mile,Rd,644205,3.444,3.781,0,8.086313,8,4.5 +2512,0,0.33693,1,1,0,2,5,,3,3,Lincoln,,651908,2.911,3.248,0,8.086316,8,4.5 +3114,0,0.299119,2,2,0,2,4,,3,3,Campbell,Rd,652509,0.051,0.35,0,7.178844,6,4.5 +19468,1,0.333383,4,0,0,1,1,,3,3,E I 696,,1903903,3.967,4.301,0,,0.58,7 +19708,-1,0.328155,0,4,0,1,1,,3,3,W I 696,,1904002,3.972,4.3,0,,0.58,7 +3402,0,0.051087,2,2,0,2,4,,3,3,Campbell,Rd,652509,0,0.051,0,1.226082,6,4.5 +3316,0,0.152854,2,2,0,2,4,,3,3,Campbell,Rd,652509,0.35,0.503,0,3.668489,6,4.5 +1687,1,0.219291,2,0,0,2,5,DV2,3,3,4th,St,644705,1.622,1.842,0,5.262993,8,4.5 +2392,-1,0.11243,0,3,0,2,4,,3,3,Stephenson,Hwy,646702,3.477,3.59,0,2.698316,6,4.5 +2962,0,0.351441,1,1,0,2,5,,3,3,Gardenia,,671806,1.038,1.39,0,8.434587,8,4.5 +3071,0,0.285569,2,2,0,2,4,,3,3,Campbell,Rd,652509,1.012,1.297,0,6.853666,6,4.5 +20652,0,0.219058,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.55,8.769,0,5.257388,6,4.5 +20891,-1,0.219853,0,2,0,2,5,DV2,3,3,4th,St,4404212,0.778,0.998,0,5.276471,8,4.5 +16,1,0.258294,2,0,0,2,5,DV2,3,3,4th,St,644705,1.364,1.622,0,6.199061,8,4.5 +3472,0,0.191177,2,2,0,2,4,,3,3,Campbell,Rd,652509,0.821,1.012,0,4.588247,6,4.5 +20196,-1,0.256464,0,2,0,2,5,DV2,3,3,4th,St,4404212,0.521,0.778,0,6.155138,8,4.5 +20887,0,0.257921,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.293,8.55,0,6.190102,6,4.5 +29665,0,0.255136,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.123263,0.15,4 +28411,0,0.046956,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.126934,0.15,4 +28424,0,0.061668,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.480026,0.15,4 +2624,0,0.016741,2,2,0,2,4,,3,3,Campbell,Rd,652509,0.804,0.821,0,0.401794,6,4.5 +2802,0,0.278721,2,2,0,2,4,,3,3,Campbell,Rd,652509,1.297,1.576,0,6.68931,6,4.5 +28410,0,0.36333,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.719928,0.15,4 +28448,0,0.159222,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.82133,0.15,4 +29879,0,0.174188,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.180502,0.15,4 +20434,0,0.173683,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.769,8.943,0,4.168395,6,4.5 +2313,1,0.442428,2,0,0,2,4,,3,3,Stephenson,Hwy,646902,3.566,4.008,0,10.618274,6,4.5 +2391,-1,0.432664,0,3,0,2,4,,3,3,Stephenson,Hwy,646702,3.59,4.022,0,10.38393,6,4.5 +4882,1,0.153757,1,0,0,1,1,ROF,3,3,S I 75/11 Mile,RAMP,710404,0,0.154,0,,2.24,5 +4517,1,0.09109,1,0,0,1,1,RON,3,3,11 Mile/N I 75,RAMP,710503,0,0.091,0,,1.09,4 +2702,0,0.05186,2,2,0,2,5,,3,3,Gardenia,,671806,1.39,1.441,0,1.24465,8,4.5 +66,0,0.203083,1,1,0,2,5,,3,3,10 Mile,Rd,607703,0,0.203,0,4.874003,8,4.5 +73,1,0.215783,2,0,0,2,5,,3,3,I 696 Service,Dr,607610,0.082,0.297,0,5.178803,8,4.5 +74,1,0.081694,2,0,0,2,5,,3,3,I 75 Service,Dr,607610,0,0.082,0,1.96065,8,4.5 +81,-1,0.248674,0,3,0,2,5,,3,3,I 696 Service,Dr,607607,0,0.249,0,5.968176,8,4.5 +84,1,0.150014,2,0,0,1,1,RFF,3,3,W I 696/I 75,RAMP,607606,0,0.15,0,,0.58,7 +308,-1,0.564777,0,3,0,1,1,,3,3,S I 75,,646106,2.116,2.68,0,,0.58,7 +1869,0,0.044478,2,2,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.602,1.647,0,1.067463,8,4.5 +2300,1,0.581797,3,0,0,1,1,,3,3,N I 75,,647308,2.08,2.662,0,,0.58,7 +2319,1,0.247616,2,0,0,2,5,,3,3,N Chrysler/I 75 Service Drive,Ramp,646902,2.274,2.522,0,5.942793,8,4.5 +2377,0,0.256422,2,2,0,2,4,,3,3,John R,Rd,646806,1.76,2.017,0,6.154128,6,4.5 +2399,-1,0.248956,0,2,0,2,5,,3,3,S Chrysler/S Stephenson,Ramp,646702,2.353,2.602,0,5.974951,8,4.5 +2569,0,0.298692,1,1,0,2,5,,3,3,Lincoln,,651908,3.584,3.883,0,7.168606,8,4.5 +4522,1,0.145473,2,0,0,1,1,RFF,3,3,I 75/E I 696,RAMP,710501,0.324,0.469,0,,0.58,7 +4862,1,0.156025,1,0,0,1,1,RFS,3,3,N I 75/E I 696,RAMP,710501,0.168,0.324,0,,0.22,6 +4889,1,0.219125,1,0,0,1,1,RFS,3,3,E I 696/S I 75,RAMP,710402,0.144,0.363,0,,0.22,6 +19390,1,0.342506,1,0,0,1,1,RFS,3,3,N I 75/W I 696,RAMP,1738907,0,0.342,0,,0.22,6 +19392,1,0.328526,1,0,0,1,1,RFS,3,3,W I 696/S I 75,RAMP,1738903,0,0.328,0,,0.22,6 +26164,0,0.260679,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.256305,0.15,4 +546,0,0.183237,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.36,1.544,0,4.397699,8,4.5 +2321,1,0.333697,2,0,0,2,5,,3,3,Chrysler,Dr,646902,1.814,2.148,0,8.00872,8,4.5 +2400,-1,0.211832,0,2,0,2,5,,3,3,Chrysler,Dr,646702,2.142,2.353,0,5.083957,8,4.5 +2401,-1,0.317782,0,3,0,2,5,,3,3,Chrysler,Dr,646702,1.824,2.142,0,7.626766,8,4.5 +306,0,0.058531,2,2,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.544,1.602,0,1.404755,8,4.5 +2320,1,0.126206,3,0,0,2,5,,3,3,Chrysler,Dr,646902,2.148,2.274,0,3.028941,8,4.5 +4526,1,0.167898,2,0,0,1,1,RFF,3,3,N I 75/I 696,RAMP,710501,0,0.168,0,,0.58,7 +4538,1,0.09892,1,0,0,1,1,RFF,3,3,I 696/S I 75,RAMP,710402,0.363,0.462,0,,0.58,7 +2389,1,0.058073,1,0,0,2,5,,3,3,Service Drive Crossover,,646708,0,0.058,0,1.393751,8,4.5 +82,1,0.124473,2,0,0,1,1,RFF,3,3,I 696/N I 75,RAMP,607606,0.332,0.457,0,,0.58,7 +2318,1,0.178372,3,0,0,2,5,,3,3,I 75 Service Drive,,646902,2.522,2.7,0,4.280924,8,4.5 +2398,-1,0.102986,0,2,0,2,5,,3,3,Stephenson,Hwy,646702,2.602,2.705,0,2.471652,8,4.5 +2508,0,0.118251,1,1,0,2,5,,3,3,Lincoln,,651908,3.466,3.584,0,2.838033,8,4.5 +3496,1,0.151421,2,0,0,1,1,RFF,3,3,S I 75/I 696,RAMP,652609,0,0.151,0,,0.58,7 +19391,1,0.305606,2,0,0,1,1,RFS,3,3,S I 75/E I 696,RAMP,1738904,0,0.306,0,,0.22,6 +19393,1,0.322663,1,0,0,1,1,RFS,3,3,E I 696/N I 75,RAMP,1738902,0,0.323,0,,0.22,6 +2554,1,0.200552,2,0,0,1,1,RFS,3,3,S I 75/W I 696,RAMP,652609,0.151,0.352,0,,0.22,6 +2317,1,0.244062,2,0,0,2,5,,3,3,Stephenson,Hwy,646902,2.7,2.944,0,5.857483,8,4.5 +2397,-1,0.252025,0,2,0,2,5,,3,3,Stephenson,Hwy,646702,2.705,2.957,0,6.048597,8,4.5 +2564,0,0.055198,1,1,0,2,5,,3,3,Lincoln,,651908,3.41,3.466,0,1.324746,8,4.5 +19510,-1,0.060035,0,1,0,2,5,,3,3,Service Drive Crossover,,1890902,0,0.06,0,1.440848,8,4.5 +83,1,0.182172,2,0,0,1,1,RFS,3,3,W I 696/N I 75,RAMP,607606,0.15,0.332,0,,0.22,6 +2378,0,0.257283,2,2,0,2,4,,3,3,John R,Rd,646806,1.503,1.76,0,6.174792,6,4.5 +29668,0,0.212091,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.090179,0.15,4 +1361,0,0.180758,2,2,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.647,1.827,0,4.338185,8,4.5 +28426,0,0.113139,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.715328,0.15,4 +2374,0,0.207355,2,2,1,2,4,,3,3,John R,Rd,646806,2.11,2.318,0,4.976531,6,4.5 +2376,0,0.036445,2,2,0,2,4,,3,3,John R,Rd,646806,2.017,2.053,0,0.874674,6,4.5 +2375,0,0.057076,2,2,0,2,4,,3,3,John R,Rd,646806,2.053,2.11,0,1.369826,6,4.5 +2373,0,0.202308,2,2,1,2,4,,3,3,John R,Rd,646806,2.318,2.52,0,4.855402,6,4.5 +2370,0,0.319035,2,2,1,2,4,,3,3,John R,Rd,646806,3.032,3.351,0,7.656845,6,4.5 +3028,0,0.30689,1,1,0,2,5,,3,3,Gardenia,,671806,1.711,2.018,0,7.365368,8,4.5 +20720,0,0.304494,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,9.226,9.53,0,7.307853,6,4.5 +28397,0,0.328932,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.894379,0.15,4 +28404,0,0.484356,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.624549,0.15,4 +28445,0,0.24438,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.865116,0.15,4 +2394,-1,0.015735,0,2,0,2,5,,3,3,Stephenson,Hwy,646702,3.265,3.281,0,0.37764,8,4.5 +4859,1,0.159503,1,0,0,1,1,ROF,3,3,N I 75/11 Mile,RAMP,710502,0,0.159,0,,2.24,5 +19898,0,0.23174,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.994,9.226,0,5.561765,6,4.5 +28450,0,0.469495,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.267874,0.15,4 +3864,1,0.112606,1,0,0,1,1,RON,3,3,11 Mile/S I 75,RAMP,710403,0,0.113,0,,1.09,4 +2395,-1,0.018141,0,2,0,2,5,,3,3,Stephenson,Hwy,646702,3.247,3.265,0,0.435387,8,4.5 +2315,1,0.084377,2,0,0,2,5,,3,3,Stephenson,Hwy,646902,3.379,3.463,0,2.025052,8,4.5 +28396,0,0.042255,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.014108,0.15,4 +2371,0,0.34993,2,2,1,2,4,,3,3,John R,Rd,646806,2.682,3.032,0,8.398328,6,4.5 +20484,0,0.281886,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,9.53,9.812,0,6.765256,6,4.5 +2369,0,0.176438,2,2,1,2,4,,3,3,John R,Rd,646806,3.351,3.527,0,4.234521,6,4.5 +149,0,0.408901,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.281,1.69,0,9.813635,5,5 +444,-1,0.259888,0,3,0,1,1,,3,3,S I 75,,646106,4.158,4.418,0,,0.58,7 +660,-1,1.412016,0,3,0,1,1,,3,3,S I 75,,646106,4.698,6.11,0,,0.58,7 +2294,1,1.645726,3,0,0,1,1,,3,3,N I 75,,647308,4.509,6.154,0,,0.58,7 +2366,0,0.49618,2,2,1,2,4,,3,3,John R,Rd,646806,4.55,5.046,0,11.908309,6,4.5 +2539,1,0.328365,1,0,0,1,1,ROF,3,3,S I 75/12 Mile,RAMP,664209,0,0.328,0,,2.24,5 +2869,0,0.01904,3,3,0,2,3,,3,3,12 Mile,Rd,4462980,20.449,20.468,0,0.456949,5,5 +3031,1,0.483665,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,0.79,1.273,0,11.607971,6,4.5 +3186,1,0.168292,1,0,0,1,1,RON,3,3,W 12 Mile/S I 75,RAMP,664210,0,0.168,0,,1.09,4 +3261,0,0.443231,2,2,1,2,4,,3,3,Campbell,Rd,652509,2.579,3.022,0,10.637536,6,4.5 +20846,-1,0.481141,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406809,0.543,1.024,0,11.547393,6,4.5 +21493,1,0.213076,1,0,0,1,1,RON,3,3,E 12 Mile/S I 75,RAMP,4413584,0,0.213,0,,1.09,4 +27565,0,0.529544,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.709059,0.15,4 +28453,0,0.527923,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.670142,0.15,4 +2892,0,0.417072,2,2,1,2,4,,3,3,Campbell,Rd,652509,1.975,2.392,0,10.009724,6,4.5 +3272,0,0.127589,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,20.002,20.13,0,3.062141,5,5 +3448,1,0.540846,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,0.249,0.79,0,12.980301,6,4.5 +20151,-1,0.542759,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406809,0,0.543,0,13.02621,6,4.5 +28042,0,0.287073,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.889755,0.15,4 +28439,0,0.543866,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.052791,0.15,4 +3167,0,0.167692,2,2,0,2,4,,3,3,Campbell,Rd,652509,1.808,1.975,0,4.024617,6,4.5 +3583,0,0.230698,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,19.772,20.002,0,5.536747,5,5 +28414,0,0.32682,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.843668,0.15,4 +1362,0,0.208618,1,1,0,2,5,,3,3,Girard,,645301,0.816,1.025,0,5.006842,8,4.5 +3458,0,0.186946,2,2,1,2,4,,3,3,Campbell,Rd,652509,2.392,2.579,0,4.486708,6,4.5 +2759,0,0.215869,2,2,1,2,4,,3,3,Stephenson,Hwy,680107,0,0.216,0,5.180852,6,4.5 +2976,0,0.22365,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,20.13,20.353,0,5.367595,5,5 +2476,0,0.033149,2,2,1,2,4,,3,3,Stephenson,Hwy,680107,0.216,0.249,0,0.795586,6,4.5 +2886,0,0.045589,3,3,0,2,3,,3,3,12 Mile,Rd,4462980,20.353,20.399,0,1.094141,5,5 +2610,0,0.027961,3,3,0,2,3,,3,3,12 Mile,Rd,4462980,20.399,20.427,0,0.671068,5,5 +3513,1,0.030712,1,0,0,1,1,ROF,3,3,S I 75/W 12 Mile,RAMP,664209,0.328,0.359,0,,2.24,5 +3571,0,0.022421,3,3,0,2,3,,3,3,12 Mile,Rd,4462980,20.427,20.449,0,0.538109,5,5 +37929,1,0.020846,1,0,0,1,1,ROF,3,3,S I 75/E 12 Mile,RAMP,4416470,0,0.021,0,,2.24,5 +28442,0,0.092589,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.222133,0.15,4 +28454,0,0.078493,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.883831,0.15,4 +145,0,0.107205,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.911,2.018,0,2.572917,5,5 +2756,1,0.543584,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,1.273,1.817,0,13.046009,6,4.5 +3352,0,0.567155,2,2,0,2,4,,3,3,Campbell,Rd,652509,3.022,3.589,0,13.611727,6,4.5 +20606,-1,0.544358,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406809,1.024,1.568,0,13.064582,6,4.5 +27969,0,0.289897,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.957525,0.15,4 +27975,0,0.501382,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.033164,0.15,4 +28290,0,0.482221,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.573312,0.15,4 +144,0,0.269058,2,2,1,2,3,,3,3,13 Mile,Rd,607408,2.018,2.287,0,6.45738,5,5 +27988,0,0.291812,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.003478,0.15,4 +147,0,0.089953,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.708,1.798,0,2.158871,5,5 +146,0,0.112884,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.798,1.911,0,2.709207,5,5 +148,0,0.017846,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.69,1.708,0,0.428308,5,5 +27976,0,0.077996,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.871893,0.15,4 +28287,0,0.085954,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.062904,0.15,4 +1107,-1,0.27999,0,3,0,1,1,,3,3,S I 75,,646106,4.418,4.698,0,,0.58,7 +2367,0,0.56105,2,2,1,2,4,,3,3,John R,Rd,646806,3.989,4.55,0,13.465207,6,4.5 +3236,0,0.280726,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,20.706,20.987,0,6.737431,5,5 +28402,0,0.530301,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.727231,0.15,4 +28452,0,0.228914,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.493924,0.15,4 +2295,1,0.170814,3,0,0,1,1,,3,3,N I 75,,647308,4.338,4.509,0,,0.58,7 +2883,1,0.250286,1,0,0,1,1,ROF,3,3,N I 75/12 Mile,RAMP,664304,0,0.25,0,,2.24,5 +3512,1,0.188382,1,0,0,1,1,RON,3,3,E 12 Mile/N I 75,RAMP,664302,0,0.188,0,,1.09,4 +3544,0,0.076543,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,20.63,20.706,0,1.837024,5,5 +2296,1,0.188624,3,0,0,1,1,,3,3,N I 75,,647308,4.149,4.338,0,,0.58,7 +2589,0,0.106963,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,20.468,20.575,0,2.567102,5,5 +3183,1,0.151578,1,0,0,1,1,RON,3,3,W 12 Mile/N I 75,RAMP,664303,0,0.152,0,,1.09,4 +2531,1,0.020182,1,0,0,1,1,ROF,3,3,N I 75/W 12 Mile,RAMP,664304,0.25,0.27,0,,2.24,5 +2583,0,0.01507,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,20.615,20.63,0,0.361686,5,5 +3548,0,0.039135,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,20.575,20.615,0,0.939242,5,5 +20199,1,0.023577,1,0,0,1,1,ROF,3,3,N I 75/E 12 Mile,RAMP,4406923,0,0.024,0,,2.24,5 +2577,0,0.280072,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,20.987,21.267,0,6.721736,5,5 +27564,0,0.244776,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.874618,0.15,4 +28312,0,0.275664,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.61593,0.15,4 +150,0,0.248794,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.033,1.281,0,5.97105,5,5 +2252,1,0.243886,2,0,0,2,5,DV2,3,3,Whitcomb,,647603,0,0.244,0,5.853257,8,4.5 +2365,0,0.330744,2,2,1,2,4,,3,3,John R,Rd,646806,5.046,5.377,0,7.937847,6,4.5 +20248,-1,0.24358,0,2,0,2,5,DV2,3,3,Whitcomb,,4400514,0,0.244,0,5.845924,8,4.5 +27970,0,0.359568,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.629622,0.15,4 +27971,0,0.261824,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.283768,0.15,4 +27974,0,0.17195,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.1268,0.15,4 +2630,0,0.150306,1,1,1,2,5,,3,3,Concord,Dr,658204,0.091,0.241,0,3.607353,8,4.5 +3602,0,0.091141,1,1,1,2,5,,3,3,Whitcomb,,658204,0,0.091,0,2.187392,8,4.5 +25093,0,0.245442,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.890604,0.15,4 +27561,0,0.164879,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.957092,0.15,4 +27968,0,0.212028,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.088677,0.15,4 +2251,1,0.252948,2,0,0,2,5,DV2,3,3,Whitcomb,,647603,0.244,0.497,0,6.070752,8,4.5 +2362,0,0.304996,2,2,1,2,4,,3,3,John R,Rd,646806,5.549,5.854,0,7.319896,6,4.5 +19899,-1,0.253482,0,2,0,2,5,DV2,3,3,Whitcomb,,4400514,0.244,0.497,0,6.083577,8,4.5 +25096,0,0.280937,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.742488,0.15,4 +27560,0,0.261407,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.273767,0.15,4 +29968,0,0.253255,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.078112,0.15,4 +2364,0,0.16244,2,2,1,2,4,,3,3,John R,Rd,646806,5.377,5.539,0,3.898553,6,4.5 +2363,0,0.009251,2,2,1,2,4,,3,3,John R,Rd,646806,5.539,5.549,0,0.222013,6,4.5 +159,1,0.319685,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,3.448,3.953,0,7.672441,5,5 +314,0,0.333195,2,2,0,2,3,,3,3,14 Mile,Rd,625804,2.018,2.351,0,7.996681,5,5 +1109,-1,1.025139,0,3,0,1,1,,3,3,S I 75,,646106,9.66,10.685,0,,0.58,7 +1550,0,0.354164,2,2,1,2,4,,4,3,Livernois,Rd,625408,0.987,1.342,0,8.499928,4.5,4.5 +1779,0,0.275989,2,2,1,2,3,,4,3,Long Lake,Rd,641102,11.746,12.022,0,6.623731,3.7,5 +2087,-1,0.271152,0,3,0,1,1,,3,3,S I 75,,646106,8.678,8.949,0,,0.58,7 +2159,0,0.125547,1,1,0,2,4,,4,3,Wattles,Rd,618802,4.599,4.725,0,3.013122,4.5,4.5 +2288,1,0.99767,3,0,0,1,1,,3,3,N I 75,,647308,9.613,10.61,0,,0.58,7 +2289,1,1.09965,3,0,0,1,1,,3,3,N I 75,,647308,8.513,9.613,0,,0.58,7 +2351,0,0.269923,2,2,1,2,4,,4,3,John R,Rd,646806,8.059,8.329,0,6.478163,4.5,4.5 +3778,0,0.333078,2,2,1,2,3,,3,3,Maple,Rd,683906,17.645,17.978,0,7.993883,5,5 +3855,1,0.315215,1,0,0,1,1,ROF,4,3,S I 75/Rochester,RAMP,682605,0,0.315,0,,2.24,5 +4926,1,0.276059,1,0,0,1,1,RON,4,3,W Big Beaver/N I 75,RAMP,691506,0,0.276,0,,1.09,4 +4934,1,0.31954,1,0,0,1,1,ROF,3,3,S I 75/W Big Beaver,RAMP,691505,0,0.32,0,,2.24,5 +19570,-1,0.249638,0,1,0,1,1,FCD,3,3,S I 75 CD,,1854307,0.57,0.82,0,,0.58,7 +19578,1,0.219239,1,0,0,1,1,FCD,3,3,N I 75 CD,,1854302,0.574,0.793,0,,0.58,7 +21142,-1,0.52432,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,2.912,3.436,0,12.583686,5,5 +37132,1,0.016866,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,3.953,3.97,0,0.404783,5,5 +21870,0,0.40995,2,2,0,2,3,,3,3,Rochester,Rd,4413538,3.126,3.536,0,9.83879,5,5 +25012,0,0.477324,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.455775,0.15,4 +25348,0,0.506666,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.159991,0.15,4 +25351,0,0.464382,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.145163,0.15,4 +25355,0,0.421561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.117464,0.15,4 +25460,0,0.522333,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.535998,0.15,4 +25898,0,0.213586,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.126073,0.15,4 +27973,0,0.508994,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.21585,0.15,4 +28276,0,0.512652,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.303643,0.15,4 +28463,0,0.502869,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.068863,0.15,4 +29610,0,0.579995,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.919885,0.15,4 +29611,0,0.593949,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.254785,0.15,4 +29856,0,0.530419,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.730052,0.15,4 +29857,0,0.517262,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.414279,0.15,4 +29858,0,0.532089,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.770127,0.15,4 +161,1,0.336737,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.665,3.002,0,8.081687,5,5 +1589,-1,0.711413,0,3,0,1,1,,3,3,S I 75,,646106,8.949,9.66,0,,0.58,7 +1609,0,0.308987,2,2,1,2,4,,3,3,Livernois,Rd,625408,0,0.309,0,7.415698,6,4.5 +2036,0,0.510242,2,2,1,2,3,,3,3,14 Mile,Rd,625804,3.032,3.542,0,12.245808,5,5 +2810,0,0.736587,2,2,0,2,5,,3,3,Kirts,Blvd,681204,0.542,1.278,0,17.678089,8,4.5 +3781,0,0.39877,2,2,1,2,3,,3,3,Maple,Rd,683906,16.825,17.224,0,9.570484,5,5 +21144,-1,0.318942,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,2.163,2.481,0,7.654596,5,5 +25356,0,0.387605,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.30251,0.15,4 +27987,0,0.504084,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.09801,0.15,4 +28006,0,0.289251,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.942013,0.15,4 +28009,0,0.564058,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.537395,0.15,4 +28036,0,0.558442,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.402619,0.15,4 +28388,0,0.5027,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.064805,0.15,4 +1524,0,0.078028,2,2,1,2,3,,3,3,14 Mile,Rd,625804,3.542,3.62,0,1.872684,5,5 +28038,0,0.247213,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.933118,0.15,4 +28008,0,0.284751,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.834032,0.15,4 +3782,0,0.100735,2,2,1,2,3,,3,3,Maple,Rd,683906,16.724,16.825,0,2.41765,5,5 +163,1,0.105014,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.52,2.625,0,2.520331,5,5 +4935,1,0.297742,1,0,0,1,1,RON,3,3,E Big Beaver/S I 75,RAMP,691504,0,0.298,0,,1.09,4 +19572,-1,0.179719,0,1,0,1,1,FCD,3,3,S I 75 CD,,1854307,0.301,0.481,0,,0.58,7 +19575,1,0.20345,1,0,0,1,1,ROF,4,3,N I 75/W Big Beaver,RAMP,1854305,0,0.203,0,,2.24,5 +19576,1,0.204883,1,0,0,1,1,RON,3,3,E Big Beaver/N I 75,RAMP,1854303,0,0.205,0,,1.09,4 +19579,1,0.140593,2,0,0,1,1,FCD,3,3,N I 75 CD,,1854302,0.434,0.574,0,,0.58,7 +21147,-1,0.126099,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.91,2.036,0,3.026383,5,5 +27986,0,0.300135,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.203238,0.15,4 +28004,0,0.381043,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.14503,0.15,4 +166,1,0.128565,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.23,2.358,0,3.085554,5,5 +19562,1,0.214251,1,0,0,1,1,ROF,3,3,S I 75/E Big Beaver,RAMP,1854309,0,0.214,0,,2.24,5 +21149,-1,0.091016,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.709,1.8,0,2.184376,5,5 +27984,0,0.336554,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.077291,0.15,4 +27985,0,0.346241,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.309772,0.15,4 +164,1,0.125892,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.394,2.52,0,3.021404,5,5 +19563,1,0.236998,1,0,0,1,1,RON,3,3,W Big Beaver/S I 75,RAMP,1854308,0,0.237,0,,1.09,4 +21148,-1,0.110291,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.8,1.91,0,2.646979,5,5 +165,1,0.03579,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.358,2.394,0,0.858963,5,5 +19571,-1,0.089452,0,2,0,1,1,FCD,3,3,S I 75 CD,,1854307,0.481,0.57,0,,0.58,7 +4923,1,0.270241,1,0,0,1,1,ROF,3,3,N I 75/E Big Beaver,RAMP,691507,0,0.27,0,,2.24,5 +19573,-1,0.301366,0,1,0,1,1,FCD,3,3,S I 75 CD,,1854307,0,0.301,0,,0.58,7 +19582,1,0.241076,1,0,0,1,1,FCD,3,3,N I 75 CD,,1854302,0.193,0.434,0,,0.58,7 +162,1,0.040684,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.625,2.665,0,0.976414,5,5 +21145,-1,0.119167,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,2.043,2.163,0,2.86002,5,5 +21146,-1,0.007441,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,2.036,2.043,0,0.178577,5,5 +19583,1,0.192706,1,0,0,1,1,FCD,3,3,N I 75 CD,,1854302,0,0.193,0,,0.58,7 +1479,0,0.200916,2,2,1,2,4,,3,3,Main,,644806,4.623,4.824,0,4.821995,6,4.5 +1635,0,0.263484,2,2,0,2,3,,3,3,14 Mile,Rd,625804,2.506,2.77,0,6.323607,5,5 +3780,0,0.382919,2,2,1,2,3,,3,3,Maple,Rd,683906,17.224,17.606,0,9.190046,5,5 +21878,0,0.129964,2,2,0,2,3,,3,3,Rochester,Rd,4413538,2.996,3.126,0,3.11914,5,5 +25360,0,0.398246,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.557907,0.15,4 +25362,0,0.306766,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.362389,0.15,4 +29608,0,0.357907,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.589759,0.15,4 +719,0,0.23257,2,2,0,2,3,,3,3,14 Mile,Rd,625804,2.799,3.032,0,5.581682,5,5 +1991,0,0.496169,2,2,1,2,4,,3,3,Main,,644806,4.127,4.623,0,11.908049,6,4.5 +25363,0,0.262692,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.304618,0.15,4 +29607,0,0.380275,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.126591,0.15,4 +1160,0,0.029312,2,2,0,2,3,,3,3,14 Mile,Rd,625804,2.77,2.799,0,0.703482,5,5 +1480,0,0.330365,2,2,1,2,4,,3,3,Main,,644806,4.824,5.154,0,7.928766,6,4.5 +21881,0,0.3096,2,2,0,2,3,,3,3,Rochester,Rd,4413538,2.486,2.795,0,7.430396,5,5 +1879,0,0.155092,2,2,0,2,3,,3,3,14 Mile,Rd,625804,2.351,2.506,0,3.722217,5,5 +21880,0,0.200882,2,2,0,2,3,,3,3,Rochester,Rd,4413538,2.795,2.996,0,4.821158,5,5 +25358,0,0.267965,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.431156,0.15,4 +3779,0,0.038163,2,2,1,2,3,,3,3,Maple,Rd,683906,17.606,17.645,0,0.915919,5,5 +160,1,0.631206,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,3.002,3.448,0,15.148933,5,5 +1718,0,0.109234,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.561,0.67,0,2.621616,6,4.5 +21143,-1,0.4304,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,2.481,2.912,0,10.329606,5,5 +25359,0,0.459526,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.028633,0.15,4 +28203,0,0.471354,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.31249,0.15,4 +1897,0,0.215694,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.309,0.525,0,5.176663,6,4.5 +1383,0,0.036031,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.525,0.561,0,0.864739,6,4.5 +1766,0,0.149247,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.824,0.973,0,3.581933,6,4.5 +1231,0,0.153892,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.67,0.824,0,3.693399,6,4.5 +1269,0,0.01457,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.973,0.987,0,0.349678,6,4.5 +25349,0,0.199084,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.778006,0.15,4 +25354,0,0.139993,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.359832,0.15,4 +613,0,0.211719,2,2,1,2,4,,4,3,Livernois,Rd,625408,2.289,2.5,0,5.081267,4.5,4.5 +662,-1,1.868195,0,3,0,1,1,,4,3,S I 75,,646106,10.685,12.553,0,,0.8,7.5 +39898,-1,0.143797,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4416835,0,0.144,0,3.451122,3.7,5 +2145,0,0.478277,2,2,1,2,4,,4,3,Livernois,Rd,625408,2.5,2.978,0,11.478647,4.5,4.5 +2158,0,0.249212,1,1,0,2,4,,4,3,Wattles,Rd,618802,3.647,3.896,0,5.981077,4.5,4.5 +2287,1,1.849154,3,0,0,1,1,,4,3,N I 75,,647308,10.61,12.459,0,,0.8,7.5 +25345,0,0.311833,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.48399,0.15,4 +25365,0,0.260723,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.25734,0.15,4 +25367,0,0.492406,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.817749,0.15,4 +28277,0,0.549203,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.180869,0.15,4 +28458,0,0.531199,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.748787,0.15,4 +1077,0,0.421371,1,1,0,2,4,,3,3,Wattles,Rd,618802,3.105,3.526,0,10.112896,6,4.5 +27972,0,0.509136,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.219272,0.15,4 +28462,0,0.52131,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.511434,0.15,4 +19565,-1,0.218457,0,1,0,1,1,FCD,3,3,S I 75 CD,,1854307,0.82,1.038,0,,0.58,7 +19577,1,0.1914,1,0,0,1,1,FCD,3,3,N I 75 CD,,1854302,0.793,0.985,0,,0.58,7 +627,0,0.120437,1,1,0,2,4,,4,3,Wattles,Rd,618802,3.526,3.647,0,2.89049,4.5,4.5 +753,0,0.098562,2,2,0,2,3,,4,3,Long Lake,Rd,641102,10.701,10.799,0,2.365488,3.7,5 +25366,0,0.491794,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.803051,0.15,4 +1190,1,0.212516,3,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,10.489,10.701,0,5.100372,3.7,5 +20437,-1,0.206363,0,3,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0.872,1.079,0,4.952715,3.7,5 +25651,0,0.380231,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.12555,0.15,4 +27600,0,0.362944,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.710657,0.15,4 +370,0,0.447755,1,1,0,2,4,,4,3,Livernois,Rd,625408,2.995,3.442,0,10.746109,4.5,4.5 +39896,0,0.016365,2,2,1,2,4,,4,3,Livernois,Rd,625408,2.978,2.995,0,0.392765,4.5,4.5 +39910,0,0.508207,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.196959,0.15,4 +1652,0,0.70369,2,2,0,2,4,,4,3,Wattles,Rd,618802,3.896,4.599,0,16.888553,4.5,4.5 +2169,0,0.328175,2,2,1,2,4,,4,3,Livernois,Rd,625408,1.672,2,0,7.876189,4.5,4.5 +25346,0,0.549098,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.178361,0.15,4 +25461,0,0.539211,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.941059,0.15,4 +1075,0,0.330328,2,2,1,2,4,,4,3,Livernois,Rd,625408,1.342,1.672,0,7.927874,4.5,4.5 +1665,0,0.288856,2,2,1,2,4,,4,3,Livernois,Rd,625408,2,2.289,0,6.932547,4.5,4.5 +213,0,0.122448,2,2,1,2,3,,4,3,Long Lake,Rd,641102,11.624,11.746,0,2.938749,3.7,5 +28457,0,0.495261,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.886275,0.15,4 +157,1,0.503027,3,0,0,2,3,DIV,4,3,Big Beaver,Rd,607204,4.206,4.709,0,12.072637,3.7,5 +456,-1,0.089764,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.439,1.529,0,2.154329,5,5 +1206,-1,2.051841,0,3,0,1,1,,4,3,S I 75,,646106,6.627,8.678,0,,0.8,7.5 +2291,1,1.634789,3,0,0,1,1,,4,3,N I 75,,647308,6.69,8.325,0,,0.8,7.5 +2292,1,0.249245,3,0,0,1,1,,3,3,N I 75,,647308,6.441,6.69,0,,0.58,7 +2354,0,0.43709,2,2,1,2,4,,4,3,John R,Rd,646806,7.059,7.496,0,10.490156,4.5,4.5 +3438,1,0.43493,2,0,0,2,4,DIV,4,3,Stephenson,Hwy,680107,3.299,3.734,0,10.438323,4.5,4.5 +3774,0,0.388059,2,2,1,2,3,,3,3,Maple,Rd,683906,18.53,18.918,0,9.313406,5,5 +4830,1,0.313577,1,0,0,1,1,RON,3,3,14 Mile/N I 75,RAMP,694107,0.041,0.354,0,,1.09,4 +20152,-1,0.083713,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.183,0.266,0,2.00911,5,5 +20893,-1,0.395795,0,2,0,2,4,DIV,4,3,Stephenson,Hwy,4406170,1.047,1.443,0,9.499085,4.5,4.5 +21140,-1,0.622959,0,3,0,2,3,DIV,4,3,Big Beaver,Rd,4408243,3.684,4.307,0,14.951015,3.7,5 +21835,0,0.283565,2,2,0,2,3,,4,3,Rochester,Rd,4413538,3.536,3.819,0,6.80555,3.7,5 +29628,0,0.599346,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.384308,0.15,4 +800,0,0.18097,2,2,1,2,3,,3,3,14 Mile,Rd,625804,1.731,1.912,0,4.343269,5,5 +2750,1,0.269332,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,2.617,2.887,0,6.463978,6,4.5 +3776,0,0.388281,2,2,1,2,3,,3,3,Maple,Rd,683906,18.119,18.507,0,9.318744,5,5 +20400,-1,0.269769,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406170,0.365,0.634,0,6.474446,6,4.5 +25127,0,0.263852,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.332443,0.15,4 +25352,0,0.247128,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.931071,0.15,4 +25382,0,0.357594,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.582251,0.15,4 +25361,0,0.330226,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.925436,0.15,4 +776,0,0.008178,2,2,1,2,3,,3,3,14 Mile,Rd,625804,2.01,2.018,0,0.19628,5,5 +335,0,0.097943,2,2,1,2,3,,3,3,14 Mile,Rd,625804,1.912,2.01,0,2.350634,5,5 +25353,0,0.356215,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.549151,0.15,4 +3777,0,0.141513,2,2,1,2,3,,3,3,Maple,Rd,683906,17.978,18.119,0,3.396312,5,5 +631,-1,0.019347,0,2,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.688,1.707,0,0.464336,5,5 +1689,-1,0.27772,0,3,0,1,1,,3,3,S I 75,,646106,6.349,6.627,0,,0.58,7 +3021,1,0.356681,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,2.261,2.617,0,8.56034,6,4.5 +4821,1,0.225671,1,0,0,1,1,ROF,3,3,S I 75/W 14 Mile,RAMP,694110,0,0.226,0,,2.24,5 +20605,-1,0.356666,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406170,0.008,0.365,0,8.559988,6,4.5 +20795,-1,0.019454,0,2,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.024,0.043,0,0.466894,5,5 +25381,0,0.127985,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.071639,0.15,4 +1250,-1,0.024352,0,2,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.707,1.731,0,0.584459,5,5 +20845,-1,0.008023,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406170,0,0.008,0,0.192554,6,4.5 +20105,-1,0.023895,0,2,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0,0.024,0,0.573477,5,5 +25383,0,0.118097,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.834336,0.15,4 +1557,-1,0.076338,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.529,1.605,0,1.832122,5,5 +20547,-1,0.11865,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.043,0.162,0,2.847605,5,5 +21441,1,0.038233,1,0,0,1,3,RSF,3,3,WB 14 Mile/S I 75,RAMP,4413936,0,0.038,0,,5,5 +1081,-1,0.082497,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.605,1.688,0,1.979919,5,5 +3447,1,0.008431,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,2.252,2.261,0,0.202336,6,4.5 +20354,-1,0.020582,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.162,0.183,0,0.493964,5,5 +2468,1,0.412293,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,2.887,3.299,0,9.895025,6,4.5 +20198,-1,0.412744,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406170,0.634,1.047,0,9.905856,6,4.5 +3775,0,0.022766,2,2,1,2,3,,3,3,Maple,Rd,683906,18.507,18.53,0,0.546382,5,5 +158,1,0.236267,3,0,0,2,3,DIV,4,3,Big Beaver,Rd,607204,3.97,4.206,0,5.670416,3.7,5 +2290,1,0.188907,3,0,0,1,1,,4,3,N I 75,,647308,8.325,8.513,0,,0.8,7.5 +3850,1,0.303246,1,0,0,1,1,ROF,4,3,N I 75/Rochester,RAMP,682608,0,0.303,0,,2.24,5 +19904,-1,0.067836,0,2,0,2,3,DIV,4,3,Stephenson,Hwy,4406170,1.722,1.79,0,1.628054,3.7,5 +20546,1,0.103263,1,0,0,1,1,ROF,4,3,S I 75/S Rochester,RAMP,4406259,0,0.103,0,,2.24,5 +21141,-1,0.230789,0,3,0,2,3,DIV,4,3,Big Beaver,Rd,4408243,3.453,3.684,0,5.538944,3.7,5 +21828,1,0.178689,3,0,0,2,3,DIV,4,3,Stephenson,Hwy,4413538,4.135,4.314,0,4.288538,3.7,5 +25375,0,0.104798,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.515153,0.15,4 +29900,0,0.368708,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.848989,0.15,4 +29966,0,0.095908,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.301802,0.15,4 +20253,-1,0.066763,0,3,0,2,3,DIV,4,3,Stephenson,Hwy,4406170,1.656,1.722,0,1.602304,3.7,5 +21174,-1,0.08038,0,1,0,2,3,,4,3,Rochester,Rd,4408199,0,0.08,0,1.929119,3.7,5 +21831,1,0.060992,2,0,0,2,3,,4,3,Rochester,Rd,4413538,4.054,4.115,0,1.463814,3.7,5 +21834,0,0.134423,2,2,0,2,3,,4,3,Rochester,Rd,4413538,3.819,3.954,0,3.226142,3.7,5 +21832,0,0.100407,2,2,0,2,3,,4,3,Rochester,Rd,4413538,3.954,4.054,0,2.409769,3.7,5 +2464,1,0.144642,2,0,0,2,4,DIV,4,3,Stephenson,Hwy,680107,3.734,3.878,0,3.471396,4.5,4.5 +20658,-1,0.171281,0,2,0,2,4,DIV,4,3,Stephenson,Hwy,4406170,1.443,1.614,0,4.110753,4.5,4.5 +20440,-1,0.041827,0,2,0,2,3,DIV,4,3,Stephenson,Hwy,4406170,1.614,1.656,0,1.003855,3.7,5 +21830,1,0.019996,2,0,0,2,3,,4,3,Rochester,Rd,4413538,4.115,4.135,0,0.479895,3.7,5 +37137,1,0.152253,3,0,0,2,3,DIV,3,3,Rochester,Rd,4413538,4.486,4.638,0,3.654067,5,5 +37136,1,0.009605,3,0,0,2,3,DIV,3,3,Rochester,Rd,4413538,4.477,4.486,0,0.230519,5,5 +3853,1,0.077206,1,0,0,1,1,RON,4,3,S Rochester/S I 75,RAMP,682606,0,0.077,0,,1.09,4 +3854,1,0.057247,1,0,0,1,1,ROF,4,3,S I 75/N Rochester,RAMP,682605,0.315,0.372,0,,2.24,5 +20104,-1,0.063842,0,1,0,1,1,RON,4,3,N Rochester/S I 75,RAMP,4406181,0,0.064,0,,1.09,4 +37142,-1,0.022381,0,3,0,2,3,DIV,3,3,Rochester,Rd,4406170,2.125,2.148,0,0.537156,5,5 +3852,1,0.165858,1,0,0,1,1,RON,4,3,Rochester/S I 75,RAMP,682606,0.077,0.243,0,,1.09,4 +20490,-1,0.042292,0,2,0,2,3,DIV,4,3,Rochester,Rd,4406170,1.8,1.842,0,1.015012,3.7,5 +20794,-1,0.016472,0,1,0,2,3,RSF,4,3,N Rochester/S I 75,RAMP,4406181,0.064,0.08,0,0.395329,5,5 +21824,1,0.123582,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,4.314,4.437,0,2.965976,3.7,5 +20726,-1,0.009727,0,2,0,2,3,DIV,4,3,Stephenson,Hwy,4406170,1.79,1.8,0,0.233443,3.7,5 +20301,-1,0.123155,0,3,0,2,3,DIV,3,3,Rochester,Rd,4406170,1.842,1.965,0,2.955731,5,5 +37138,1,0.022417,3,0,0,2,3,DIV,3,3,Rochester,Rd,4413538,4.638,4.661,0,0.538006,5,5 +40302,1,0.18022,2,0,0,2,4,DIV,4,3,Wattles,Rd,618802,4.725,4.905,0,4.325282,4.5,4.5 +37134,1,0.022616,3,0,0,2,3,DIV,3,3,Rochester,Rd,4413538,4.437,4.46,0,0.54279,5,5 +594,-1,0.011139,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.022,1.033,0,0.267333,5,5 +2358,1,0.06058,2,0,0,2,4,DIV,3,3,John R,Rd,646806,6.468,6.529,0,1.453926,6,4.5 +3772,0,0.240923,3,3,0,2,3,,3,3,Maple,Rd,683906,18.989,19.23,0,5.782155,5,5 +20402,-1,0.246295,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.452,0.698,0,5.911075,5,5 +25372,0,0.310231,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.445545,0.15,4 +25378,0,0.248615,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.966767,0.15,4 +29965,0,0.794363,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,19.064718,0.15,4 +2124,-1,0.07265,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.274,1.346,0,1.743609,5,5 +20607,-1,0.100791,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.351,0.452,0,2.418989,5,5 +25373,0,0.238694,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.728652,0.15,4 +25380,0,0.252123,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.050963,0.15,4 +1372,-1,0.072078,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.346,1.419,0,1.729879,5,5 +4826,1,0.259936,1,0,0,1,1,ROF,3,3,N I 75/W 14 Mile,RAMP,694109,0,0.26,0,,2.24,5 +4831,1,0.040849,1,0,0,1,3,RSF,3,3,EB 14 Mile/N I 75,RAMP,694107,0,0.041,0,,5,5 +20847,-1,0.084754,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.266,0.351,0,2.034092,5,5 +916,-1,0.020555,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.419,1.439,0,0.493318,5,5 +24582,1,0.035093,1,0,0,2,5,,3,3,Concord,Dr,0,0,0,0,0.84223,8,4.5 +25379,0,0.282055,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.769318,0.15,4 +3773,0,0.071491,3,3,0,2,3,,3,3,Maple,Rd,683906,18.918,18.989,0,1.715791,5,5 +1046,-1,0.222262,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,0.799,1.022,0,5.33428,5,5 +2359,1,0.437402,2,0,0,2,4,DIV,3,3,John R,Rd,646806,6.031,6.468,0,10.497655,6,4.5 +20200,-1,0.211098,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.711,0.922,0,5.066363,5,5 +2360,1,0.013192,2,0,0,2,4,DIV,3,3,John R,Rd,646806,6.018,6.031,0,0.316597,6,4.5 +1144,-1,0.108884,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,0.69,0.799,0,2.613223,5,5 +20895,-1,0.11917,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.922,1.041,0,2.860077,5,5 +2355,0,0.369077,2,2,1,2,4,,3,3,John R,Rd,646806,6.69,7.059,0,8.857857,6,4.5 +2356,1,0.065398,2,0,0,2,4,DIV,3,3,John R,Rd,646806,6.625,6.69,0,1.569561,6,4.5 +2357,1,0.095839,2,0,0,2,4,DIV,3,3,John R,Rd,646806,6.529,6.625,0,2.300146,6,4.5 +2353,0,0.545353,2,2,1,2,4,,4,3,John R,Rd,646806,7.496,8.041,0,13.08847,4.5,4.5 +25369,0,0.400014,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.600334,0.15,4 +156,1,0.304764,3,0,0,2,3,DIV,4,3,Big Beaver,Rd,607204,4.709,5.013,0,7.314345,3.7,5 +29626,0,0.402626,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.663035,0.15,4 +29627,0,0.453179,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.876291,0.15,4 +2352,0,0.018158,2,2,1,2,4,,4,3,John R,Rd,646806,8.041,8.059,0,0.435793,4.5,4.5 +21139,-1,0.185789,0,3,0,2,3,DIV,4,3,Big Beaver,Rd,4408243,4.307,4.493,0,4.458936,3.7,5 +597,0,0.371263,1,1,1,2,4,,4,3,Wattles,Rd,618802,5.539,5.91,0,8.910302,4.5,4.5 +728,0,0.561778,2,2,1,2,3,,4,3,Long Lake,Rd,641102,12.719,13.281,0,13.482666,3.7,5 +2348,0,0.359729,2,2,1,2,4,,4,3,John R,Rd,646806,9.049,9.409,0,8.633489,4.5,4.5 +21776,1,0.012437,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,5.668,5.681,0,0.298492,3.7,5 +28459,0,0.545892,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.101417,0.15,4 +28465,0,0.495222,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.885338,0.15,4 +28466,0,0.497867,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.948816,0.15,4 +1654,1,0.150919,2,0,0,2,4,DIV,4,3,Wattles,Rd,618802,4.923,5.073,0,3.622054,4.5,4.5 +21777,1,0.299842,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,5.368,5.668,0,7.196211,3.7,5 +25357,0,0.527078,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.649868,0.15,4 +29609,0,0.528806,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.691352,0.15,4 +21779,1,0.224169,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,5.144,5.368,0,5.380051,3.7,5 +1048,0,0.149788,1,1,1,2,4,,4,3,Wattles,Rd,618802,5.389,5.539,0,3.5949,4.5,4.5 +40387,-1,0.041651,0,1,0,2,4,,4,5,Geddes,Rd,4606198,0,0.042,0,0.999627,4.5,4.5 +21771,0,0.429461,2,2,1,2,3,,4,3,Rochester,Rd,4413538,6.225,6.654,0,10.307065,3.7,5 +25384,0,0.500156,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.003736,0.15,4 +28464,0,0.501933,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.046403,0.15,4 +21774,0,0.020226,2,2,1,2,3,,4,3,Rochester,Rd,4413538,6.205,6.225,0,0.485418,3.7,5 +21770,0,0.014368,2,2,1,2,3,,4,3,Rochester,Rd,4413538,6.654,6.669,0,0.344832,3.7,5 +1167,0,0.13562,2,2,1,2,3,,4,3,Long Lake,Rd,641102,12.583,12.719,0,3.254873,3.7,5 +1537,0,0.454087,1,1,1,2,4,,4,3,Wattles,Rd,618802,5.91,6.364,0,10.898078,4.5,4.5 +2349,0,0.619679,2,2,1,2,4,,4,3,John R,Rd,646806,8.43,9.049,0,14.872294,4.5,4.5 +2350,0,0.100215,2,2,1,2,4,,4,3,John R,Rd,646806,8.329,8.43,0,2.405168,4.5,4.5 +245,0,0.276441,2,2,1,2,3,,4,3,Long Lake,Rd,641102,13.281,13.557,0,6.63459,3.7,5 +2346,0,0.502745,2,2,1,2,4,,4,3,John R,Rd,646806,9.548,10.05,0,12.065889,4.5,4.5 +2347,0,0.13896,2,2,1,2,4,,4,3,John R,Rd,646806,9.409,9.548,0,3.335037,4.5,4.5 +1804,0,0.062085,2,2,1,2,3,,4,3,Long Lake,Rd,641102,13.557,13.619,0,1.490029,3.7,5 +40552,-1,0.041175,0,1,0,2,4,,4,3,Tienken,Rd,5499957,0,0.041,0,0.988196,4.5,4.5 +225,0,0.190064,1,1,0,2,4,,4,3,Avon,Rd,605102,1.303,1.493,0,4.561526,4.5,4.5 +704,0,0.169277,1,1,0,2,5,,4,3,Dutton,Rd,626101,3.033,3.202,0,4.062654,5.8,4.5 +999,1,0.554982,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,4.09,4.645,0,13.319567,4.5,4.5 +1121,0,0.407856,2,2,1,2,3,,4,3,Walton,Blvd,616602,4.286,4.694,0,9.788543,3.7,5 +1143,1,0.524071,1,0,0,1,1,RON,4,3,Crooks/N I 75,RAMP,625609,0,0.524,0,,1.09,4 +1239,0,0.271503,1,1,0,2,4,,4,3,Livernois,Rd,625408,7.859,8.13,0,6.516063,4.5,4.5 +1428,0,0.795612,1,1,0,2,5,GRV,4,3,Silver Bell,Rd,626102,6.032,6.828,0,19.09468,6.55,4.5 +40546,0,0.116896,1,1,0,2,5,,4,3,Livernois,Rd,625408,10.201,10.318,0,2.805492,5.8,4.5 +1621,1,0.379445,1,0,0,1,1,ROF,4,3,S I 75/Crooks,RAMP,625608,0,0.379,0,,2.24,5 +1777,0,0.458271,1,1,0,2,4,,4,3,South,Blvd,616405,4.016,4.474,0,10.998498,4.5,4.5 +1820,0,0.350081,1,1,0,2,3,,4,3,Adams,Rd,4415861,9.096,9.446,0,8.401945,3.7,5 +1823,0,0.300019,1,1,1,2,4,,4,3,Auburn,Rd,625105,6.18,6.479,0,7.200447,4.5,4.5 +1971,1,1.050853,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,1.227,2.277,0,25.220469,4.5,4.5 +2285,1,2.639826,3,0,0,1,1,,4,3,N I 75,,647308,12.758,15.397,0,,0.8,7.5 +2331,0,0.409988,1,1,0,2,4,,4,3,John R,Rd,646806,14.765,15.175,0,9.839711,4.5,4.5 +2800,1,0.365601,1,0,0,1,2,ROF,4,3,W M 59/Crooks,RAMP,681305,0,0.366,0,,2.24,5 +3049,0,0.546571,1,1,0,2,4,,4,3,Crooks,Rd,659810,11.369,11.916,0,13.117699,4.5,4.5 +3150,1,1.852823,3,0,0,1,2,,4,3,E M 59,,648906,27.584,29.436,0,,0.8,7.5 +3163,-1,0.28287,0,3,0,1,2,,4,3,W M 59,,677208,5.526,5.809,0,,0.8,7.5 +39870,1,0.097458,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,4.645,4.743,0,2.338986,4.5,4.5 +21397,-1,1.065961,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,1.23,2.295,0,25.583073,4.5,4.5 +21703,0,0.32856,2,2,1,2,3,,4,3,Rochester,Rd,4413538,11.462,11.79,0,7.885451,3.7,5 +24900,0,0.555291,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.326991,0.15,4 +24908,0,0.602207,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.452957,0.15,4 +25542,0,0.613906,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.733747,0.15,4 +25546,0,0.761433,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.274381,0.15,4 +25989,0,0.449077,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.777851,0.15,4 +27696,0,0.488817,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.731597,0.15,4 +28472,0,0.692828,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.627863,0.15,4 +28486,0,0.374406,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.985746,0.15,4 +28491,0,0.481469,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.55526,0.15,4 +28496,0,0.609305,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.623309,0.15,4 +28497,0,0.491456,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.794933,0.15,4 +28498,0,0.595194,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.284653,0.15,4 +28503,0,0.472227,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.333453,0.15,4 +28509,0,0.922994,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.151846,0.15,4 +28524,0,0.492012,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.808297,0.15,4 +586,0,1.102545,1,1,0,2,4,,4,3,Auburn,Rd,625105,4.161,5.263,0,26.461092,4.5,4.5 +825,0,0.365149,1,1,0,2,5,,4,3,Squirrel,Rd,617001,3.658,4.023,0,8.763571,5.8,4.5 +1108,-1,2.304104,0,3,0,1,1,,4,3,S I 75,,646106,13.046,15.349,0,,0.8,7.5 +1553,0,0.324189,1,1,1,2,3,,4,3,Adams,Rd,4415861,6.361,6.685,0,7.780541,3.7,5 +1746,0,0.499864,1,1,0,2,4,,4,3,Square Lake,Rd,615807,2.579,3.079,0,11.996726,4.5,4.5 +34582,1,0.027242,2,0,0,2,7,,4,3,Squirrel/Hamlin,TURN,4414050,0,0.027,0,0.653816,6.55,4.5 +1822,0,0.504687,1,1,0,2,4,,4,3,South,Blvd,616405,2.506,3.011,0,12.112491,4.5,4.5 +37613,1,0.280922,1,0,0,1,2,ROF,4,3,W M 59/Hamlin,RAMP,4462968,0,0.281,0,,2.24,5 +37610,1,0.135631,1,0,0,1,2,RON,4,3,Adams/E M 59,RAMP,4462966,0.123,0.258,0,,1.09,4 +3267,1,0.393551,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,9.365,9.758,0,9.445232,3.7,5 +27578,0,1.01025,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.245994,0.15,4 +28271,0,0.927786,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.266855,0.15,4 +28484,0,0.533372,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.800929,0.15,4 +28519,0,0.470331,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.28795,0.15,4 +28523,0,0.524974,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.59937,0.15,4 +29777,0,0.458302,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.999253,0.15,4 +19,-1,0.598445,0,3,0,1,1,,4,3,S I 75,,646106,15.589,16.187,0,,0.8,7.5 +1294,0,0.581067,1,1,0,2,3,,4,3,Adams,Rd,4415861,5.205,5.786,0,13.945603,3.7,5 +1910,0,0.338116,1,1,0,2,4,,4,3,Square Lake,Rd,615807,1.552,1.89,0,8.114787,4.5,4.5 +2039,0,0.246335,1,1,0,2,4,,4,3,South,Blvd,616405,1.688,1.934,0,5.912032,4.5,4.5 +2112,0,0.469586,1,1,0,2,5,,4,3,Beach,Rd,625404,0.644,1.113,0,11.270054,5.8,4.5 +2125,0,0.642403,1,1,0,2,5,,4,3,Squirrel,Rd,617001,2.186,2.828,0,15.417674,5.8,4.5 +2284,1,0.299625,3,0,0,1,1,,4,3,N I 75,,647308,15.397,15.697,0,,0.8,7.5 +4938,1,0.351769,1,0,0,1,1,RON,4,3,Adams/N I 75,RAMP,691310,0,0.352,0,,1.09,4 +28269,0,0.50232,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.055687,0.15,4 +28270,0,0.480661,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.535858,0.15,4 +28517,0,0.42099,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.103772,0.15,4 +28527,0,0.398131,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.555142,0.15,4 +1727,0,0.267491,1,1,0,2,4,,4,3,Square Lake,Rd,615807,1.285,1.552,0,6.419787,4.5,4.5 +2120,0,0.17375,1,1,0,2,5,,4,3,Squirrel,Rd,617001,2.012,2.186,0,4.169989,5.8,4.5 +2157,0,0.384306,1,1,0,2,4,,4,3,Square Lake,Rd,615807,0.901,1.285,0,9.223338,4.5,4.5 +27599,0,0.380384,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.129223,0.15,4 +918,0,0.464658,1,1,0,2,5,,4,3,Squirrel,Rd,617001,3.122,3.587,0,11.151791,5.8,4.5 +1801,0,0.42095,1,1,0,2,4,,4,3,South,Blvd,616405,1.267,1.688,0,10.102807,4.5,4.5 +28518,0,0.43933,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.54392,0.15,4 +29776,0,0.341796,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.203092,0.15,4 +874,0,0.280262,2,2,0,2,4,,4,3,South,Blvd,616405,0.987,1.267,0,6.726288,4.5,4.5 +1374,0,0.140662,1,1,0,2,5,,4,3,Squirrel,Rd,617001,2.982,3.122,0,3.375887,5.8,4.5 +27591,0,0.272257,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.534174,0.15,4 +28526,0,0.231928,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.566264,0.15,4 +1625,0,0.153306,1,1,0,2,5,,4,3,Squirrel,Rd,617001,2.828,2.982,0,3.679333,5.8,4.5 +27575,0,0.395893,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.501439,0.15,4 +1280,0,0.071492,1,1,0,2,5,,4,3,Squirrel,Rd,617001,3.587,3.658,0,1.715801,5.8,4.5 +179,0,0.246784,1,1,0,2,5,,4,3,Arlund,Way,607102,0,0.247,0,5.922804,5.8,4.5 +464,0,0.207833,1,1,0,2,5,,4,3,Beach,Rd,625404,0,0.208,0,4.987988,5.8,4.5 +587,1,0.171442,1,0,0,1,1,RON,4,3,Square Lake/S I 75,RAMP,625607,0,0.171,0,,1.09,4 +967,0,0.273832,2,2,1,2,3,,4,3,Adams,Rd,4415861,4.673,4.946,0,6.571957,3.7,5 +1038,1,0.285684,1,0,0,1,1,ROF,4,3,S I 75/Square Lake,RAMP,625606,0,0.286,0,,2.24,5 +1199,0,0.474175,1,1,0,2,4,,4,3,Square Lake,Rd,615807,2.105,2.579,0,11.380194,4.5,4.5 +29768,0,0.513022,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.31253,0.15,4 +758,0,0.106863,1,1,1,2,4,,4,3,Square Lake,Rd,615807,1.901,2.008,0,2.564706,4.5,4.5 +1173,0,0.011124,1,1,1,2,4,,4,3,Square Lake,Rd,615807,1.89,1.901,0,0.266965,4.5,4.5 +1858,0,0.096996,1,1,0,2,4,,4,3,Square Lake,Rd,615807,2.008,2.105,0,2.327904,4.5,4.5 +572,1,0.294275,1,0,0,1,1,ROF,4,3,N I 75/Adams,RAMP,616803,0,0.294,0,,2.24,5 +661,-1,0.239549,0,3,0,1,1,,4,3,S I 75,,646106,15.349,15.589,0,,0.8,7.5 +1102,0,0.212075,1,1,0,2,3,,4,3,Adams,Rd,4415861,4.952,5.164,0,5.089793,3.7,5 +1070,0,0.006009,2,2,1,2,3,,4,3,Adams,Rd,4415861,4.946,4.952,0,0.144209,3.7,5 +1146,0,0.041157,1,1,0,2,3,,4,3,Adams,Rd,4415861,5.164,5.205,0,0.987764,3.7,5 +178,0,0.173159,1,1,0,2,5,,4,3,Arlund,Way,607102,0.247,0.42,0,4.155825,5.8,4.5 +2010,0,0.436097,1,1,0,2,5,,4,3,Beach,Rd,625404,0.208,0.644,0,10.466339,5.8,4.5 +29767,0,0.354066,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.497585,0.15,4 +29766,0,0.09769,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.344571,0.15,4 +380,0,0.500102,1,1,0,2,4,,4,3,South,Blvd,616405,2.006,2.506,0,12.002449,4.5,4.5 +1401,0,0.20301,1,1,0,2,3,,4,3,Adams,Rd,4415861,5.786,5.989,0,4.872234,3.7,5 +1532,0,0.072604,1,1,0,2,4,,4,3,South,Blvd,616405,1.934,2.006,0,1.742506,4.5,4.5 +1432,0,0.371726,1,1,1,2,3,,4,3,Adams,Rd,4415861,5.989,6.361,0,8.921418,3.7,5 +34584,1,0.422572,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,0.097,0.519,0,10.141737,4.5,4.5 +1037,0,0.369912,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.791,4.161,0,8.877879,4.5,4.5 +1725,1,0.013879,3,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.88,0.894,0,0.333087,4.5,4.5 +2929,-1,0.639198,0,3,0,1,2,,4,3,W M 59,,677208,2.933,3.572,0,,0.8,7.5 +39847,-1,0.311378,0,2,0,2,3,DIV,4,3,West Maple,Rd,4416612,0.213,0.524,0,7.47307,3.7,5 +21434,-1,0.117919,0,3,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.781,0.899,0,2.830067,4.5,4.5 +25202,0,0.249368,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.984828,0.15,4 +40075,0,0.521707,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.520964,0.15,4 +28485,0,0.611668,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.68002,0.15,4 +28529,0,0.225108,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.402596,0.15,4 +29780,0,0.736024,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.664577,0.15,4 +30192,0,0.269444,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.466652,0.15,4 +636,0,0.0668,1,1,1,2,5,,4,3,Squirrel,Rd,4414555,0,0.067,0,1.60321,5.8,4.5 +1315,0,0.115477,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.494,3.61,0,2.771448,4.5,4.5 +1391,1,0.010354,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.068,0.078,0,0.2485,4.5,4.5 +3187,1,0.200574,3,0,0,1,2,,4,3,E M 59,,648906,24.518,24.719,0,,0.8,7.5 +37931,1,0.308638,1,0,0,1,2,ROF,4,3,W M 59/Squirrel,RAMP,4462970,0,0.309,0,,2.24,5 +21392,1,0.277213,1,0,0,1,2,ROF,4,3,E M 59/SB Squirrel,RAMP,4414041,0,0.277,0,,2.24,5 +21437,-1,0.010561,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.068,0.079,0,0.25346,4.5,4.5 +29778,0,0.290729,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.977484,0.15,4 +30191,0,0.284669,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.832051,0.15,4 +29779,0,0.330261,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.926262,0.15,4 +1248,0,0.102425,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.392,3.494,0,2.458191,4.5,4.5 +855,0,0.012955,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.61,3.623,0,0.310918,4.5,4.5 +1300,1,0.012188,1,0,0,2,4,,4,3,Squirrel,Ct,4414555,0.161,0.173,0,0.292509,4.5,4.5 +34504,0,0.168556,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.623,3.791,0,4.045355,4.5,4.5 +2173,0,0.062768,1,1,0,2,5,,4,3,Squirrel,Rd,4414555,0.067,0.13,0,1.506428,5.8,4.5 +1796,1,0.031172,1,0,0,2,5,,4,3,Squirrel,Ct,4414555,0.13,0.161,0,0.748138,5.8,4.5 +34585,1,0.175486,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,0.519,0.695,0,4.211669,4.5,4.5 +1429,1,0.165989,3,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.611,0.777,0,3.983737,4.5,4.5 +3181,1,0.360513,3,0,0,1,2,,4,3,E M 59,,648906,24.719,25.079,0,,0.8,7.5 +21389,1,0.34072,1,0,0,1,2,RON,4,3,Squirrel/E M 59,RAMP,4414043,0.021,0.362,0,,1.09,4 +21391,1,0.393344,1,0,0,1,2,ROF,4,3,E M 59/NB Squirrel,RAMP,4414042,0,0.393,0,,2.24,5 +21435,-1,0.205526,0,3,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.575,0.781,0,4.932621,4.5,4.5 +934,1,0.086919,3,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.524,0.611,0,2.086055,4.5,4.5 +21390,1,0.020935,2,0,0,1,4,RSF,4,3,Squirrel/E M 59,RAMP,4414043,0,0.021,0,,4.5,4.5 +21436,-1,0.032249,0,3,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.543,0.575,0,0.773986,4.5,4.5 +969,1,0.102985,3,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.777,0.88,0,2.471646,4.5,4.5 +40128,0,0.013253,1,1,0,2,5,,3,2,Levan,Rd,1604605,4.212,4.225,0,0.318077,8,4.5 +1232,1,0.452033,2,0,0,2,4,DIV,4,3,Featherstone,,616508,1.068,1.52,0,10.848789,4.5,4.5 +30194,0,0.511879,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.285091,0.15,4 +30195,0,0.499088,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.9781,0.15,4 +28528,0,0.306785,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.362847,0.15,4 +30193,0,0.293432,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.042374,0.15,4 +1018,1,0.200737,3,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.894,1.095,0,4.817692,4.5,4.5 +40072,-1,0.221304,0,2,0,2,4,DIV,4,3,Featherstone,,4463325,0.744,0.965,0,5.311296,4.5,4.5 +40073,-1,0.451241,0,2,0,2,4,DIV,4,3,Featherstone,,4463325,0.965,1.416,0,10.829784,4.5,4.5 +40074,-1,0.032087,0,2,0,2,4,,4,3,Featherstone,,4463325,1.416,1.448,0,0.770093,4.5,4.5 +560,1,0.132066,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,1.095,1.227,0,3.16959,4.5,4.5 +21399,-1,0.015256,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,1.109,1.125,0,0.366144,4.5,4.5 +40071,-1,0.744211,0,2,0,2,4,DIV,4,3,Featherstone,,4463325,0,0.744,0,17.86106,4.5,4.5 +37593,1,0.01539,2,0,0,2,3,DIV,4,3,Adams,Rd,4415861,8.263,8.279,0,0.36936,3.7,5 +34583,1,0.096717,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,0,0.097,0,2.321199,4.5,4.5 +37592,1,0.084689,2,0,0,2,3,DIV,4,3,Adams,Rd,4415861,8.179,8.263,0,2.032547,3.7,5 +1217,0,0.030437,1,1,0,2,4,,4,3,South,Blvd,616405,3.394,3.424,0,0.730486,4.5,4.5 +1566,0,0.722148,1,1,0,2,4,,4,3,Square Lake,Rd,615807,3.079,3.801,0,17.331546,4.5,4.5 +3315,1,0.553697,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,8.303,8.857,0,13.288722,3.7,5 +4834,0,0.745043,1,1,0,2,4,,4,3,Coolidge,Rd,693006,5.54,6.285,0,17.881042,4.5,4.5 +25587,0,0.530203,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.72486,0.15,4 +39867,0,0.998879,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.973096,0.15,4 +28531,0,0.581819,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.963656,0.15,4 +4838,0,0.367124,1,1,0,2,4,,4,3,Coolidge,Rd,693006,5.173,5.54,0,8.810979,4.5,4.5 +4841,1,0.203953,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,4.856,5.06,0,4.894874,4.5,4.5 +4843,1,0.079013,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,4.777,4.856,0,1.896318,4.5,4.5 +28522,0,0.591245,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.189884,0.15,4 +1912,0,0.383043,1,1,0,2,4,,4,3,South,Blvd,616405,3.011,3.394,0,9.193028,4.5,4.5 +272,0,0.117961,1,1,0,2,4,,4,3,Square Lake,Rd,615807,3.801,3.919,0,2.831061,4.5,4.5 +3331,1,0.515256,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.788,8.303,0,12.366151,3.7,5 +21157,-1,0.515537,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,1.544,2.059,0,12.37288,3.7,5 +25589,0,0.580505,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.932123,0.15,4 +25653,0,0.289805,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.955318,0.15,4 +27291,0,0.302762,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.266294,0.15,4 +28530,0,0.505332,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.127975,0.15,4 +288,1,0.017302,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,4.073,4.09,0,0.415249,4.5,4.5 +3099,1,0.315809,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.452,7.767,0,7.579416,3.7,5 +20352,-1,0.015739,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4405539,0.16,0.176,0,0.377729,4.5,4.5 +21159,-1,0.315394,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,1.208,1.524,0,7.569449,3.7,5 +1696,1,0.154255,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,3.919,4.073,0,3.70213,4.5,4.5 +20545,-1,0.160066,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4405539,0,0.16,0,3.841577,4.5,4.5 +21158,-1,0.020433,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,1.524,1.544,0,0.490391,3.7,5 +2513,1,0.114395,2,0,0,1,1,ROF,4,3,N I 75/Crooks,RAMP,681303,0.656,0.77,0,,2.24,5 +3063,1,0.217308,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.234,7.452,0,5.215385,3.7,5 +40255,1,0.015605,2,0,0,2,3,,4,3,N I 75/Crooks,RAMP,681303,0.77,0.786,0,0.374528,3.7,5 +40253,1,0.083713,2,0,0,2,5,,4,3,Corporate,Dr,1848503,0.251,0.335,0,2.009122,5.8,4.5 +2812,1,0.02075,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.767,7.788,0,0.497997,3.7,5 +39859,0,0.013571,1,1,1,2,4,,4,3,Auburn,Rd,625105,6.166,6.18,0,0.325711,4.5,4.5 +1911,0,0.577444,1,1,0,2,4,,4,3,South,Blvd,616405,3.424,4.002,0,13.858652,4.5,4.5 +3003,1,0.508099,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,8.857,9.365,0,12.194382,3.7,5 +34581,-1,0.210696,0,3,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.899,1.109,0,5.056701,4.5,4.5 +1276,0,0.862365,1,1,0,2,4,,4,3,Auburn,Rd,625105,5.304,6.166,0,20.696756,4.5,4.5 +2449,0,0.139676,2,2,1,2,4,,4,3,Crooks,Rd,659810,10.542,10.681,0,3.352215,4.5,4.5 +27590,0,1.036744,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.881862,0.15,4 +28487,0,0.425171,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.204107,0.15,4 +28515,0,0.333438,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.002509,0.15,4 +28516,0,0.759476,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.227416,0.15,4 +28514,0,0.364899,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.757578,0.15,4 +1772,0,0.040762,1,1,0,2,4,,4,3,Auburn,Rd,625105,5.263,5.304,0,0.978279,4.5,4.5 +1817,0,0.504726,1,1,0,2,3,,4,3,Adams,Rd,4415861,8.591,9.096,0,12.113434,3.7,5 +25714,0,0.511976,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.287413,0.15,4 +37575,-1,0.332888,0,3,0,1,2,,4,3,W M 59,,677208,4.332,4.665,0,,0.8,7.5 +253,1,0.386285,1,0,0,1,2,ROF,4,3,E M 59/Crooks,RAMP,604703,0,0.386,0,,2.24,5 +3152,1,0.32611,3,0,0,1,2,,4,3,E M 59,,648906,26.964,27.29,0,,0.8,7.5 +3392,0,0.058428,2,2,1,2,3,,4,3,Crooks,Rd,659810,9.999,10.058,0,1.40226,3.7,5 +3862,1,0.292499,1,0,0,1,2,RON,4,3,S Crooks/W M 59,RAMP,681306,0,0.292,0,,1.09,4 +2968,1,0.24117,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,9.758,9.999,0,5.788079,3.7,5 +2723,0,0.02354,2,2,1,2,3,,4,3,Crooks,Rd,659810,10.289,10.313,0,0.564969,3.7,5 +3090,1,0.296922,1,0,0,1,2,RON,4,3,N Crooks/E M 59,RAMP,681304,0,0.297,0,,1.09,4 +3067,0,0.231454,2,2,1,2,3,,4,3,Crooks,Rd,659810,10.058,10.289,0,5.554906,3.7,5 +40070,-1,0.105037,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,1.125,1.23,0,2.520888,4.5,4.5 +2828,0,0.469591,1,1,0,2,4,,4,3,Crooks,Rd,659810,10.9,11.369,0,11.270175,4.5,4.5 +28488,0,0.514587,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.35008,0.15,4 +191,0,0.109188,2,2,1,2,4,,4,3,Hamlin,Rd,606606,0,0.109,0,2.620524,4.5,4.5 +3122,0,0.218846,2,2,1,2,4,,4,3,Crooks,Rd,659810,10.681,10.9,0,5.252298,4.5,4.5 +205,0,0.42361,1,1,0,2,5,,4,3,Brewster,Rd,605703,0.943,1.366,0,10.166639,5.8,4.5 +280,0,0.655078,1,1,0,2,4,,4,3,Adams,Rd,4415861,11.45,12.105,0,15.72186,4.5,4.5 +630,0,1.09144,1,1,1,2,5,,4,3,Squirrel,Rd,4414558,4.192,5.283,0,26.194571,5.8,4.5 +1030,0,0.93054,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,3.831,4.762,0,22.332971,4.5,4.5 +1567,0,0.438967,1,1,0,2,4,,4,3,Dutton,Rd,626101,1.454,1.893,0,10.535206,4.5,4.5 +2149,1,0.686813,2,0,0,2,3,DIV,4,3,Walton,Blvd,616602,2.221,2.908,0,16.483502,3.7,5 +21118,-1,0.706643,0,2,0,2,3,DIV,4,3,Walton,Blvd,4409857,0.684,1.39,0,16.95942,3.7,5 +25184,0,0.622647,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.943526,0.15,4 +28473,0,0.531881,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.765146,0.15,4 +28483,0,0.525308,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.607384,0.15,4 +28490,0,0.552678,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.264276,0.15,4 +28536,0,0.555784,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.338811,0.15,4 +28540,0,0.523275,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.558603,0.15,4 +30201,0,0.46482,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.15568,0.15,4 +857,1,0.18338,2,0,0,2,5,DIV,4,3,Squirrel,Rd,4414558,3.181,3.364,0,4.401128,5.8,4.5 +1552,1,0.348829,2,0,0,2,3,DIV,4,3,Walton,Blvd,616602,1.522,1.871,0,8.371892,3.7,5 +21119,-1,0.316843,0,2,0,2,3,DIV,4,3,Walton,Blvd,4409857,0.367,0.684,0,7.604234,3.7,5 +21120,-1,0.36689,0,2,0,2,3,DIV,4,3,Walton,Blvd,4409857,0,0.367,0,8.805355,3.7,5 +21393,-1,0.181523,0,2,0,2,5,DIV,4,3,Squirrel,Rd,4414559,3.189,3.37,0,4.35656,5.8,4.5 +24899,0,0.513162,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.315881,0.15,4 +25554,0,0.536866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.88478,0.15,4 +28480,0,0.790352,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.968436,0.15,4 +28482,0,0.612522,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.700528,0.15,4 +30186,0,0.530416,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.729993,0.15,4 +30197,0,0.815763,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.578321,0.15,4 +1454,1,0.454998,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,2.277,2.732,0,10.919956,4.5,4.5 +1982,0,0.476505,2,2,1,2,3,,4,3,Walton,Blvd,616602,1.029,1.505,0,11.436109,3.7,5 +40317,1,0.044073,1,0,0,1,1,RON,4,3,University/N I 75,RAMP,5500951,0,0.044,0,,1.09,4 +21109,0,0.358758,1,1,1,2,5,,4,3,Five Points,Dr,4463363,0.102,0.46,0,8.610184,5.8,4.5 +21396,-1,0.444584,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,2.295,2.74,0,10.67001,4.5,4.5 +25194,0,0.386209,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.269016,0.15,4 +25195,0,0.365639,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.775337,0.15,4 +30196,0,0.4149,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.957604,0.15,4 +40318,1,0.035154,1,0,0,1,1,RON,4,3,W University/N I 75,RAMP,5500957,0,0.035,0,,1.09,4 +1316,1,0.01826,3,0,0,2,3,DIV,4,3,Squirrel,Rd,4414558,2.732,2.75,0,0.438249,3.7,5 +21395,-1,0.016267,0,3,0,2,3,DIV,4,3,Squirrel,Rd,4414559,2.74,2.756,0,0.390409,3.7,5 +40315,1,0.37157,1,0,0,1,1,ROF,4,3,S I 75/University,RAMP,678208,0,0.372,0,,2.24,5 +21394,-1,0.069472,0,3,0,2,3,DIV,4,3,Squirrel,Rd,4414559,3.119,3.189,0,1.66734,3.7,5 +2058,0,0.016763,2,2,1,2,3,,4,3,Walton,Blvd,616602,1.505,1.522,0,0.402311,3.7,5 +471,0,0.303694,1,1,1,2,5,,4,3,Squirrel,Rd,4414558,3.63,3.934,0,7.288657,5.8,4.5 +930,0,0.265944,1,1,1,2,5,,4,3,Squirrel,Rd,4414558,3.364,3.63,0,6.382663,5.8,4.5 +25185,0,0.245355,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.888522,0.15,4 +1080,0,0.258209,1,1,1,2,5,,4,3,Squirrel,Rd,4414558,3.934,4.192,0,6.197016,5.8,4.5 +30203,0,0.589668,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.15203,0.15,4 +619,1,0.350437,2,0,0,2,3,DIV,4,3,Walton,Blvd,616602,1.871,2.221,0,8.410495,3.7,5 +24897,0,0.530148,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.723558,0.15,4 +377,0,0.999222,1,1,0,2,5,,4,3,Squirrel,Rd,4414558,5.283,6.282,0,23.981332,5.8,4.5 +2148,0,0.665934,1,1,0,2,4,,4,3,Dutton,Rd,626101,0.788,1.454,0,15.982411,4.5,4.5 +27568,0,0.683986,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.415674,0.15,4 +28532,0,0.565879,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.581106,0.15,4 +618,0,0.224433,1,1,0,2,4,,4,3,Dutton,Rd,626101,0.564,0.788,0,5.386395,4.5,4.5 +1134,0,0.356428,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,3.219,3.575,0,8.554281,4.5,4.5 +27569,0,0.534757,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.83418,0.15,4 +1615,0,0.088521,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,3.131,3.219,0,2.124496,4.5,4.5 +1500,0,0.256228,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,3.575,3.831,0,6.149461,4.5,4.5 +28535,0,0.544042,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.057014,0.15,4 +228,0,0.292665,1,1,0,2,4,,4,3,Avon,Rd,605102,0.531,0.824,0,7.023956,4.5,4.5 +231,0,0.456848,1,1,0,2,4,,4,3,Old Perch,Rd,604710,0.64,1.096,0,10.964354,4.5,4.5 +516,0,0.752862,1,1,0,2,4,,4,3,Tienken,Rd,626010,1.937,2.689,0,18.068687,4.5,4.5 +761,0,0.506271,2,2,0,2,3,,4,3,Walton,Blvd,616602,3.509,4.015,0,12.150498,3.7,5 +2032,0,0.335597,1,1,0,2,3,,4,3,Adams,Rd,4415861,10.16,10.495,0,8.054327,3.7,5 +24901,0,0.538623,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.926956,0.15,4 +24903,0,0.552862,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.268678,0.15,4 +25547,0,0.749381,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.985133,0.15,4 +230,0,0.470043,1,1,0,2,4,,4,3,Avon,Rd,605102,0,0.47,0,11.281042,4.5,4.5 +1724,0,0.714307,1,1,0,2,3,,4,3,Adams,Rd,4415861,9.446,10.16,0,17.14338,3.7,5 +24902,0,0.546807,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.123359,0.15,4 +25717,0,0.581682,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.960379,0.15,4 +229,0,0.061132,1,1,0,2,4,,4,3,Avon,Rd,605102,0.47,0.531,0,1.467156,4.5,4.5 +206,0,0.468027,1,1,1,2,5,,4,3,Brewster,Rd,605703,0.475,0.943,0,11.232653,5.8,4.5 +1947,0,0.294083,1,1,0,2,4,,4,3,Tienken,Rd,626010,1.643,1.937,0,7.057983,4.5,4.5 +2168,1,0.236089,2,0,0,2,3,DIV,4,3,Walton,Blvd,616602,2.908,3.144,0,5.666124,3.7,5 +2178,0,0.496058,1,1,0,2,4,,4,3,Adams,Rd,4415861,10.955,11.45,0,11.905403,4.5,4.5 +21117,-1,0.23485,0,2,0,2,3,DIV,4,3,Walton,Blvd,4409857,1.39,1.625,0,5.63639,3.7,5 +24905,0,0.482153,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.57168,0.15,4 +28476,0,0.28802,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.912485,0.15,4 +2122,0,0.397358,1,1,0,2,4,,4,3,Adams,Rd,4415861,10.516,10.914,0,9.536588,4.5,4.5 +2033,0,0.021053,2,2,0,2,3,,4,3,Adams,Rd,4415861,10.495,10.516,0,0.505273,3.7,5 +2156,0,0.041032,1,1,0,2,4,,4,3,Adams,Rd,4415861,10.914,10.955,0,0.984758,4.5,4.5 +858,0,0.212984,1,1,0,2,4,,4,3,Tienken,Rd,626010,1.403,1.616,0,5.111604,4.5,4.5 +392,0,0.026372,1,1,0,2,4,,4,3,Tienken,Rd,626010,1.616,1.643,0,0.632932,4.5,4.5 +208,0,0.403679,1,1,1,2,5,,4,3,Brewster,Rd,605703,0,0.404,0,9.688302,5.8,4.5 +747,0,0.245475,2,2,1,2,3,,4,3,Walton,Blvd,616602,3.227,3.473,0,5.891405,3.7,5 +24904,0,0.283682,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.808362,0.15,4 +28474,0,0.462815,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.107556,0.15,4 +1663,0,0.083469,2,2,1,2,3,,4,3,Walton,Blvd,616602,3.144,3.227,0,2.003259,3.7,5 +277,0,0.036321,2,2,1,2,3,,4,3,Walton,Blvd,616602,3.473,3.509,0,0.871716,3.7,5 +207,0,0.071013,1,1,1,2,5,,4,3,Brewster,Rd,605703,0.404,0.475,0,1.704322,5.8,4.5 +227,0,0.274709,1,1,1,2,4,,4,3,Avon,Rd,605102,0.824,1.098,0,6.593016,4.5,4.5 +232,0,0.218401,1,1,0,2,4,,4,3,Old Perch,Rd,604710,0.421,0.64,0,5.24163,4.5,4.5 +226,0,0.205017,1,1,0,2,4,,4,3,Avon,Rd,605102,1.098,1.303,0,4.920399,4.5,4.5 +233,0,0.421449,1,1,0,2,4,,4,3,Old Perch,Rd,604710,0,0.421,0,10.114773,4.5,4.5 +28475,0,0.466961,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.207054,0.15,4 +297,0,0.271158,2,2,1,2,3,,4,3,Walton,Blvd,616602,4.015,4.286,0,6.507788,3.7,5 +28477,0,0.476674,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.440166,0.15,4 +2066,0,0.048215,1,1,0,2,4,,4,3,Tienken,Rd,626010,2.689,2.738,0,1.157162,4.5,4.5 +200,0,0.42386,1,1,0,2,7,GRV,4,3,Brewster,Rd,605703,2.038,2.462,0,10.172636,6.55,4.5 +980,0,0.255807,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,5.274,5.53,0,6.139366,5.8,4.5 +1116,0,0.646966,1,1,0,2,4,,4,3,Adams,Rd,4415861,12.54,13.187,0,15.527189,4.5,4.5 +1623,0,0.458554,1,1,0,2,5,,4,3,Dutton,Rd,626101,2.443,2.902,0,11.005303,5.8,4.5 +28469,0,0.610683,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.656385,0.15,4 +28578,0,0.626737,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.041677,0.15,4 +30199,0,0.73001,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.520249,0.15,4 +202,0,0.468244,1,1,0,2,5,,4,3,Brewster,Rd,605703,1.57,2.038,0,11.237851,5.8,4.5 +612,0,0.43511,1,1,0,2,4,,4,3,Adams,Rd,4415861,12.105,12.54,0,10.442631,4.5,4.5 +638,0,0.290025,1,1,0,2,5,GRV,4,3,Dutton,Rd,626101,2.153,2.443,0,6.9606,6.55,4.5 +25549,0,0.54766,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.14384,0.15,4 +28489,0,0.290567,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.973615,0.15,4 +1087,0,0.260489,1,1,0,2,5,GRV,4,3,Dutton,Rd,626101,1.893,2.153,0,6.251736,6.55,4.5 +203,0,0.204107,1,1,0,2,5,,4,3,Brewster,Rd,605703,1.366,1.57,0,4.898572,5.8,4.5 +30198,0,0.299515,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.188367,0.15,4 +199,0,0.55587,1,1,0,2,7,GRV,4,3,Brewster,Rd,605703,2.462,3.018,0,13.340881,6.55,4.5 +575,0,0.512336,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,4.762,5.274,0,12.296069,5.8,4.5 +2004,0,0.337309,1,1,0,2,4,,4,3,Adams,Rd,4415861,13.187,13.524,0,8.095416,4.5,4.5 +24965,0,0.664814,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.95554,0.15,4 +30177,0,0.11872,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.849273,0.15,4 +1145,0,0.131435,1,1,0,2,5,,4,3,Dutton,Rd,626101,2.902,3.033,0,3.15444,5.8,4.5 +28470,0,0.57776,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.866231,0.15,4 +2064,0,0.244811,1,1,0,2,5,GRV,4,3,Silver Bell,Rd,626102,5.787,6.032,0,5.875464,6.55,4.5 +515,0,0.257766,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,5.53,5.787,0,6.186379,5.8,4.5 +185,0,0.222312,1,1,1,2,4,,4,3,Hamlin,Rd,606606,2.074,2.296,0,5.33549,4.5,4.5 +209,1,0.425138,1,0,0,1,2,ROF,4,3,E M 59/M 150,RAMP,605207,0,0.425,0,,2.24,5 +391,0,0.512746,1,1,0,2,4,,4,3,Square Lake,Rd,615807,5.581,6.093,0,12.305905,4.5,4.5 +1781,0,0.502996,1,1,0,2,4,,4,3,South,Blvd,616405,5.509,6.011,0,12.071906,4.5,4.5 +1921,0,0.36866,1,1,0,2,4,,4,3,Auburn,Rd,625105,7.776,8.145,0,8.847829,4.5,4.5 +2016,0,0.337405,1,1,0,2,4,,4,3,Livernois,Rd,625408,5.693,6.03,0,8.097724,4.5,4.5 +2338,0,0.726492,1,1,1,2,4,,4,3,John R,Rd,646806,12.375,13.102,0,17.435815,4.5,4.5 +2586,-1,0.330125,0,3,0,1,2,,4,3,W M 59,,677208,7.905,8.235,0,,0.8,7.5 +2865,-1,1.799396,0,3,0,1,2,,4,3,W M 59,,677208,6.106,7.905,0,,0.8,7.5 +3136,1,0.311225,3,0,0,1,2,,4,3,E M 59,,648906,29.436,29.747,0,,0.8,7.5 +3846,1,0.300352,1,0,0,1,2,RON,4,3,S M 150/W M 59,RAMP,683004,0,0.3,0,,1.09,4 +3848,1,0.317744,1,0,0,1,2,RON,4,3,S M 150/E M 59,RAMP,683002,0,0.318,0,,1.09,4 +21708,0,0.362772,2,2,1,2,3,,4,3,Rochester,Rd,4413538,10.467,10.829,0,8.706524,3.7,5 +21714,0,0.078038,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.295,9.373,0,1.872904,3.7,5 +24913,0,0.472837,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.348087,0.15,4 +24917,0,0.511587,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.278081,0.15,4 +25080,0,0.438964,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.535136,0.15,4 +27341,0,0.673439,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.162537,0.15,4 +28273,0,0.529096,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.698307,0.15,4 +28499,0,0.535604,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.854499,0.15,4 +28508,0,0.48325,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.598002,0.15,4 +28513,0,0.451676,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.840231,0.15,4 +1092,0,0.254412,1,1,0,2,4,,4,3,South,Blvd,616405,5.003,5.257,0,6.105881,4.5,4.5 +1424,0,0.649546,1,1,0,2,4,,4,3,Livernois,Rd,625408,4.012,4.661,0,15.589106,4.5,4.5 +1819,0,0.253477,1,1,0,2,4,,4,3,Square Lake,Rd,615807,5.078,5.332,0,6.083456,4.5,4.5 +24916,0,0.555521,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.332503,0.15,4 +25715,0,0.437309,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.495411,0.15,4 +28511,0,0.502558,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.061395,0.15,4 +28512,0,0.51707,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.409668,0.15,4 +28525,0,0.55561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.334649,0.15,4 +1442,0,0.335972,1,1,1,2,4,,4,3,Square Lake,Rd,615807,4.743,5.078,0,8.063335,4.5,4.5 +24964,0,0.552122,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.250938,0.15,4 +25657,0,0.455695,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.936689,0.15,4 +1970,-1,0.454309,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4405539,0.176,0.63,0,10.903411,4.5,4.5 +1079,-1,0.201086,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4405539,0.63,0.831,0,4.826068,4.5,4.5 +1944,0,0.544308,1,1,0,2,4,,4,3,Livernois,Rd,625408,3.467,4.012,0,13.063385,4.5,4.5 +25659,0,0.368255,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.838111,0.15,4 +732,0,0.496847,1,1,0,2,4,,4,3,South,Blvd,616405,4.506,5.003,0,11.92433,4.5,4.5 +1237,0,0.317714,1,1,0,2,4,,4,3,Livernois,Rd,625408,5.125,5.443,0,7.625147,4.5,4.5 +28506,0,0.494484,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.867623,0.15,4 +28510,0,0.445888,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.701317,0.15,4 +1396,0,0.032232,1,1,0,2,4,,4,3,South,Blvd,616405,4.474,4.506,0,0.773557,4.5,4.5 +1726,0,0.46414,1,1,0,2,4,,4,3,Livernois,Rd,625408,4.661,5.125,0,11.139369,4.5,4.5 +472,0,0.250413,1,1,0,2,4,,4,3,Livernois,Rd,625408,5.443,5.693,0,6.009906,4.5,4.5 +293,0,0.24898,1,1,0,2,4,,4,3,Square Lake,Rd,615807,5.332,5.581,0,5.975516,4.5,4.5 +25661,0,0.573772,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.77052,0.15,4 +26129,0,0.553969,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.295258,0.15,4 +1809,0,0.251594,1,1,0,2,4,,4,3,South,Blvd,616405,5.257,5.509,0,6.038265,4.5,4.5 +24911,0,0.440634,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.575218,0.15,4 +40549,-1,0.066442,0,1,0,2,4,,4,3,Livernois,Rd,5499956,0,0.066,0,1.594614,4.5,4.5 +1216,0,0.668581,1,1,0,2,4,,4,3,Auburn,Rd,625105,7.108,7.776,0,16.045946,4.5,4.5 +40550,1,0.039423,2,0,0,2,4,,4,3,Livernois,Rd,625408,10.109,10.149,0,0.946141,4.5,4.5 +28493,0,0.555659,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.335813,0.15,4 +28507,0,0.514065,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.337551,0.15,4 +28520,0,0.683351,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.400434,0.15,4 +28521,0,0.592036,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.208854,0.15,4 +1646,0,0.28721,1,1,0,2,4,,4,3,Livernois,Rd,625408,6.03,6.317,0,6.893043,4.5,4.5 +1699,0,0.389292,1,1,1,2,4,,4,3,Auburn,Rd,625105,6.719,7.108,0,9.343008,4.5,4.5 +28502,0,0.491601,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.798418,0.15,4 +28504,0,0.31895,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.654798,0.15,4 +1317,0,0.239477,1,1,1,2,4,,4,3,Auburn,Rd,625105,6.479,6.719,0,5.747442,4.5,4.5 +1171,0,0.258562,1,1,0,2,4,,4,3,Livernois,Rd,625408,6.317,6.576,0,6.205482,4.5,4.5 +733,0,0.065525,1,1,0,2,4,,4,3,Livernois,Rd,625408,6.576,6.641,0,1.572607,4.5,4.5 +40551,1,0.04205,1,0,0,2,4,,4,3,N Livernois / W Tienken cutoff,Rd,5499955,0,0.042,0,1.009211,4.5,4.5 +40548,1,0.026039,2,0,0,2,4,,4,3,Livernois,Rd,625408,10.083,10.109,0,0.624932,4.5,4.5 +28495,0,0.387851,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.308422,0.15,4 +28505,0,0.271828,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.52386,0.15,4 +499,0,0.416037,1,1,0,2,4,,4,3,Livernois,Rd,625408,7.443,7.859,0,9.984898,4.5,4.5 +24907,0,0.453138,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.875321,0.15,4 +186,0,0.460236,1,1,1,2,4,,4,3,Hamlin,Rd,606606,1.614,2.074,0,11.045656,4.5,4.5 +21707,0,0.374131,2,2,1,2,3,,4,3,Rochester,Rd,4413538,10.829,11.204,0,8.979142,3.7,5 +28492,0,0.521982,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.52757,0.15,4 +28494,0,0.479045,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.497089,0.15,4 +187,0,0.045167,1,1,1,2,4,,4,3,Hamlin,Rd,606606,1.569,1.614,0,1.084001,4.5,4.5 +21705,0,0.258061,2,2,1,2,3,,4,3,Rochester,Rd,4413538,11.204,11.462,0,6.193459,3.7,5 +895,0,0.338478,1,1,0,2,4,,4,3,South,Blvd,616405,6.682,7.02,0,8.123483,4.5,4.5 +1571,0,0.501301,1,1,0,2,4,,4,3,Square Lake,Rd,615807,6.597,7.099,0,12.031228,4.5,4.5 +2341,0,0.201371,1,1,1,2,4,,4,3,John R,Rd,646806,11.532,11.733,0,4.832904,4.5,4.5 +21764,0,0.36389,2,2,1,2,3,,4,3,Rochester,Rd,4413538,8.196,8.56,0,8.73337,3.7,5 +24919,0,0.512577,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.301844,0.15,4 +25665,0,0.501939,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.046535,0.15,4 +28262,0,0.566068,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.585632,0.15,4 +28272,0,0.579222,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.901319,0.15,4 +29519,0,0.606093,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.546232,0.15,4 +1130,0,0.410005,1,1,0,2,4,,4,3,Square Lake,Rd,615807,6.093,6.503,0,9.84013,4.5,4.5 +21768,0,0.361259,2,2,1,2,3,,4,3,Rochester,Rd,4413538,7.331,7.692,0,8.670217,3.7,5 +24918,0,0.514126,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.33902,0.15,4 +28263,0,0.521187,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.508482,0.15,4 +21765,0,0.504416,2,2,1,2,3,,4,3,Rochester,Rd,4413538,7.692,8.196,0,12.105972,3.7,5 +1816,0,0.094213,1,1,0,2,4,,4,3,Square Lake,Rd,615807,6.503,6.597,0,2.261103,4.5,4.5 +1751,0,0.670364,1,1,0,2,4,,4,3,South,Blvd,616405,6.011,6.682,0,16.088738,4.5,4.5 +21763,0,0.240008,2,2,1,2,3,,4,3,Rochester,Rd,4413538,8.56,8.8,0,5.760185,3.7,5 +25083,0,0.580265,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.92637,0.15,4 +29520,0,0.59367,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.24807,0.15,4 +3129,1,0.318427,3,0,0,1,2,,4,3,E M 59,,648906,29.747,30.066,0,,0.8,7.5 +3545,-1,0.309409,0,3,0,1,2,,4,3,W M 59,,677208,8.235,8.545,0,,0.8,7.5 +3845,1,0.422743,1,0,0,1,2,ROF,4,3,W M 59/M 150,RAMP,683005,0,0.423,0,,2.24,5 +3849,1,0.289237,1,0,0,1,2,RON,4,3,N M 150/E M 59,RAMP,683001,0,0.289,0,,1.09,4 +21757,0,0.088384,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.051,9.139,0,2.121221,3.7,5 +21762,0,0.209144,2,2,1,2,3,,4,3,Rochester,Rd,4413538,8.8,9.009,0,5.019458,3.7,5 +21760,0,0.042213,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.009,9.051,0,1.013106,3.7,5 +3847,1,0.313196,1,0,0,1,2,RON,4,3,N M 150/W M 59,RAMP,683003,0,0.313,0,,1.09,4 +21715,0,0.088085,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.207,9.295,0,2.114034,3.7,5 +21716,0,0.067998,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.139,9.207,0,1.631962,3.7,5 +1755,0,0.277588,1,1,0,2,4,,4,3,Square Lake,Rd,615807,7.099,7.376,0,6.662102,4.5,4.5 +2343,0,0.290444,1,1,1,2,4,,4,3,John R,Rd,646806,10.787,11.077,0,6.970647,4.5,4.5 +29005,0,0.509846,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.236295,0.15,4 +29006,0,0.546883,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.125186,0.15,4 +2344,0,0.272528,1,1,1,2,4,,4,3,John R,Rd,646806,10.515,10.787,0,6.54066,4.5,4.5 +2342,0,0.454526,1,1,1,2,4,,4,3,John R,Rd,646806,11.077,11.532,0,10.908622,4.5,4.5 +562,0,0.187193,1,1,0,2,4,,4,3,Square Lake,Rd,615807,7.376,7.563,0,4.492621,4.5,4.5 +2340,0,0.470371,1,1,1,2,4,,4,3,John R,Rd,646806,11.733,12.203,0,11.288905,4.5,4.5 +24914,0,0.588559,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.125425,0.15,4 +29518,0,0.505826,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.139831,0.15,4 +2339,0,0.172021,1,1,1,2,4,,4,3,John R,Rd,646806,12.203,12.375,0,4.128507,4.5,4.5 +183,0,0.688036,1,1,1,2,4,,4,3,Hamlin,Rd,606606,2.41,3.098,0,16.512853,4.5,4.5 +1312,0,0.646895,1,1,0,2,4,,4,3,Auburn,Rd,625105,8.515,9.162,0,15.525484,4.5,4.5 +2334,0,0.386615,1,1,0,2,4,,4,3,John R,Rd,646806,13.837,14.224,0,9.278749,4.5,4.5 +24909,0,0.496793,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.923036,0.15,4 +24910,0,0.563892,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.533414,0.15,4 +24920,0,0.577327,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.855855,0.15,4 +25078,0,0.546575,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.117795,0.15,4 +28501,0,0.492269,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.814458,0.15,4 +21711,0,0.445119,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.708,10.153,0,10.682854,3.7,5 +24906,0,0.53088,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.741118,0.15,4 +24921,0,0.225383,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.409181,0.15,4 +30202,0,0.535567,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.853611,0.15,4 +1403,0,0.334878,2,2,1,2,4,,4,3,Auburn,Rd,625105,8.145,8.48,0,8.037083,4.5,4.5 +21712,0,0.334935,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.373,9.708,0,8.038429,3.7,5 +1810,0,0.035274,2,2,1,2,4,,4,3,Auburn,Rd,625105,8.48,8.515,0,0.846587,4.5,4.5 +21709,0,0.313683,2,2,1,2,3,,4,3,Rochester,Rd,4413538,10.153,10.467,0,7.528384,3.7,5 +28500,0,0.505661,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.135854,0.15,4 +184,0,0.113395,1,1,1,2,4,,4,3,Hamlin,Rd,606606,2.296,2.41,0,2.721485,4.5,4.5 +1764,0,0.505272,1,1,0,2,4,,4,3,Auburn,Rd,625105,9.162,9.667,0,12.12653,4.5,4.5 +2337,0,0.347526,1,1,0,2,4,,4,3,John R,Rd,646806,13.102,13.449,0,8.340613,4.5,4.5 +24922,0,0.566962,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.607091,0.15,4 +25077,0,0.492477,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.819448,0.15,4 +2336,0,0.254886,1,1,0,2,4,,4,3,John R,Rd,646806,13.449,13.704,0,6.117266,4.5,4.5 +2335,0,0.133196,1,1,0,2,4,,4,3,John R,Rd,646806,13.704,13.837,0,3.196715,4.5,4.5 +182,0,0.532353,1,1,0,2,4,,4,3,Hamlin,Rd,606606,3.098,3.63,0,12.776462,4.5,4.5 +2333,0,0.24284,1,1,0,2,4,,4,3,John R,Rd,646806,14.224,14.466,0,5.828159,4.5,4.5 +2332,0,0.299009,1,1,0,2,4,,4,3,John R,Rd,646806,14.466,14.765,0,7.176217,4.5,4.5 +35751,1,0.026773,1,0,0,2,4,,4,3,Sheldon,Rd,605709,0.021,0.048,0,0.642562,4.5,4.5 +217,0,0.866678,1,1,1,2,3,,4,3,Avon,Rd,605102,3.064,3.931,0,20.800271,3.7,5 +35752,-1,0.031263,0,1,0,2,4,,4,3,Tienken,Rd,4415702,0,0.031,0,0.750305,4.5,4.5 +1295,0,0.340539,1,1,0,2,5,,3,3,2nd,St,609801,0.347,0.687,0,8.172943,8,4.5 +40545,0,0.369738,1,1,0,2,4,,4,3,Livernois,Rd,625408,9.713,10.083,0,8.873722,4.5,4.5 +35750,-1,0.028992,0,1,0,2,4,,4,3,Sheldon,Rd,4415701,0.017,0.046,0,0.695815,4.5,4.5 +3052,0,0.179021,1,1,0,2,5,,3,3,Romeo,Rd,678504,0,0.179,0,4.296498,8,4.5 +3553,0,0.505704,1,1,0,2,5,GRV,4,3,Mead,Rd,667710,0,0.506,0,12.136897,6.55,4.5 +35746,0,0.535328,1,1,1,2,4,,4,3,Tienken,Rd,626010,4.476,5.011,0,12.847876,4.5,4.5 +21645,0,0.36721,2,2,1,2,4,,4,3,Rochester,Rd,4413538,13.818,14.185,0,8.813045,4.5,4.5 +24966,0,0.993317,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.839612,0.15,4 +25537,0,0.564901,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.557625,0.15,4 +27573,0,0.467295,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.215092,0.15,4 +28539,0,0.579809,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.915411,0.15,4 +29769,0,0.58818,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.116316,0.15,4 +29770,0,0.843171,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.236105,0.15,4 +30200,0,0.470614,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.294741,0.15,4 +221,0,0.352055,1,1,0,2,3,,4,3,Avon,Rd,605102,2.029,2.381,0,8.449309,3.7,5 +40544,0,0.69131,1,1,0,2,4,,4,3,Tienken,Rd,626010,2.738,3.429,0,16.591441,4.5,4.5 +40407,1,0.677995,2,0,0,2,3,DIV,4,3,Livernois,Rd,625408,8.539,9.217,0,16.271889,3.7,5 +1124,0,0.248221,2,2,1,2,4,,4,3,University,Dr,616602,4.983,5.231,0,5.957301,4.5,4.5 +21651,0,0.265746,2,2,1,2,4,,3,3,Main,,4413538,12.613,12.879,0,6.377914,6,4.5 +25074,0,0.425165,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.203971,0.15,4 +25545,0,0.328051,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.873222,0.15,4 +25548,0,0.281341,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.752173,0.15,4 +28479,0,0.58387,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.012891,0.15,4 +29771,0,0.464013,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.136309,0.15,4 +223,0,0.535683,1,1,0,2,4,,4,3,Avon,Rd,605102,1.493,2.029,0,12.856386,4.5,4.5 +28478,0,0.502428,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.058266,0.15,4 +40405,-1,0.283313,0,2,0,2,3,DIV,4,3,Livernois,Rd,4416832,0,0.283,0,6.79951,3.7,5 +681,0,0.278314,2,2,1,2,3,,4,3,Walton,Blvd,616602,4.694,4.972,0,6.679527,3.7,5 +1309,0,0.139564,1,1,0,2,4,,4,3,Livernois,Rd,625408,9.574,9.713,0,3.349531,4.5,4.5 +40409,0,0.010597,2,2,1,2,3,,4,3,Walton,Blvd,616602,4.972,4.983,0,0.254317,3.7,5 +40547,0,0.279272,1,1,1,2,4,,4,3,Tienken,Rd,626010,3.545,3.824,0,6.702524,4.5,4.5 +29772,0,0.333911,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.013867,0.15,4 +218,0,0.460921,1,1,0,2,3,,4,3,Avon,Rd,605102,2.604,3.064,0,11.062114,3.7,5 +21699,0,0.23774,2,2,1,2,4,,4,3,Rochester,Rd,4413538,12.066,12.304,0,5.705764,4.5,4.5 +25541,0,0.596436,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.314459,0.15,4 +219,0,0.222897,1,1,0,2,3,,4,3,Avon,Rd,605102,2.381,2.604,0,5.349537,3.7,5 +25543,0,0.394345,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.464282,0.15,4 +21700,0,0.276122,2,2,1,2,4,,4,3,Rochester,Rd,4413538,11.79,12.066,0,6.626929,4.5,4.5 +21653,0,0.309699,2,2,1,2,4,,3,3,Main,,4413538,12.304,12.613,0,7.432771,6,4.5 +25544,0,0.174417,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.186011,0.15,4 +1369,0,0.41429,1,1,1,2,4,,4,3,Tienken,Rd,626010,4.062,4.476,0,9.942957,4.5,4.5 +2824,0,0.350125,2,2,0,2,4,,3,3,University,Dr,678410,0.396,0.746,0,8.403006,6,4.5 +21647,0,0.213263,2,2,1,2,4,,3,3,Main,,4413538,13.144,13.358,0,5.118301,6,4.5 +25553,0,0.270423,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.49016,0.15,4 +3463,0,0.166313,2,2,0,2,4,,3,3,University,Dr,678410,0.142,0.308,0,3.9915,6,4.5 +25550,0,0.371991,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.927782,0.15,4 +2489,0,0.141642,2,2,0,2,4,,3,3,University,Dr,678410,0,0.142,0,3.399406,6,4.5 +3120,0,0.08808,2,2,0,2,4,,3,3,University,Dr,678410,0.308,0.396,0,2.113929,6,4.5 +1878,0,0.237636,1,1,1,2,4,,4,3,Tienken,Rd,626010,3.824,4.062,0,5.703264,4.5,4.5 +21649,0,0.249264,2,2,1,2,4,,3,3,Main,,4413538,12.879,13.128,0,5.98233,6,4.5 +25552,0,0.220222,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.285326,0.15,4 +21648,0,0.016231,2,2,1,2,4,,3,3,Main,,4413538,13.128,13.144,0,0.389538,6,4.5 +21646,0,0.460356,2,2,1,2,4,,4,3,Main,,4413538,13.358,13.818,0,11.048554,4.5,4.5 +25551,0,0.297099,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.130372,0.15,4 +250,0,0.725477,1,1,0,2,4,,4,3,Orion,Rd,604708,1.103,1.828,0,17.411456,4.5,4.5 +1711,0,0.248395,1,1,0,2,5,GRV,4,3,Dutton,Rd,626101,3.782,4.03,0,5.961492,6.55,4.5 +21597,0,0.59512,1,1,1,2,4,,4,3,Rochester,Rd,4413538,14.911,15.506,0,14.282872,4.5,4.5 +24983,0,0.500197,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.004722,0.15,4 +28538,0,0.615463,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.771105,0.15,4 +467,0,0.505415,1,1,0,2,5,GRV,4,3,Livernois,Rd,625408,10.812,11.317,0,12.129952,6.55,4.5 +925,0,0.49457,1,1,0,2,5,GRV,4,3,Livernois,Rd,625408,10.318,10.812,0,11.86969,6.55,4.5 +251,0,0.320713,1,1,0,2,4,,4,3,Orion,Rd,604708,1.828,2.149,0,7.697114,4.5,4.5 +252,0,0.617305,1,1,0,2,4,,4,3,Orion,Rd,604708,0,0.617,0,14.815312,4.5,4.5 +21638,0,0.344533,1,1,1,2,4,,4,3,Rochester,Rd,4413538,14.314,14.659,0,8.268784,4.5,4.5 +28542,0,0.607713,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.58512,0.15,4 +29781,0,0.213821,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.131715,0.15,4 +249,0,0.485578,1,1,0,2,4,,4,3,Orion,Rd,604708,0.617,1.103,0,11.65388,4.5,4.5 +21643,0,0.129251,1,1,1,2,4,,4,3,Rochester,Rd,4413538,14.185,14.314,0,3.102013,4.5,4.5 +21637,0,0.252147,1,1,1,2,4,,4,3,Rochester,Rd,4413538,14.659,14.911,0,6.051537,4.5,4.5 +21596,0,0.318012,1,1,1,2,4,,4,3,Rochester,Rd,4413538,15.506,15.824,0,7.632289,4.5,4.5 +24981,0,0.485633,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.655183,0.15,4 +216,0,0.156419,1,1,1,2,3,,4,3,Avon,Rd,605102,3.931,4.087,0,3.754047,3.7,5 +1738,0,0.763359,1,1,0,2,5,,3,3,Letica,Dr,609801,0.687,1.451,0,18.320628,8,4.5 +3457,0,0.327876,1,1,0,2,5,,4,3,Parkdale,,678507,0.513,0.841,0,7.869015,5.8,4.5 +25538,0,0.578127,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.875049,0.15,4 +27572,0,0.46371,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.129046,0.15,4 +25536,0,0.132788,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.186909,0.15,4 +2486,0,0.318586,1,1,0,2,5,,3,3,Parkdale,,678507,0.194,0.513,0,7.646055,8,4.5 +25539,0,0.549368,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.184837,0.15,4 +28541,0,0.235182,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.644368,0.15,4 +2773,0,0.194284,1,1,0,2,5,,3,3,Parkdale,,678507,0,0.194,0,4.662822,8,4.5 +215,0,0.36729,1,1,0,2,3,,4,3,Avon,Rd,605102,4.087,4.454,0,8.814964,3.7,5 +25073,0,0.117255,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.81413,0.15,4 +2769,0,0.658736,1,1,0,2,5,,4,3,Parkdale,,678507,0.841,1.499,0,15.809652,5.8,4.5 +25071,0,0.535226,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.845418,0.15,4 +27541,0,0.613507,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.724163,0.15,4 +27540,0,0.186631,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.479136,0.15,4 +39805,-1,0.072089,0,2,0,2,4,,4,3,Oakley Park,Rd,4416630,0.089,0.161,0,1.730131,4.5,4.5 +27516,0,0.907797,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.787129,0.15,4 +27536,0,0.889627,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.351039,0.15,4 +196,0,0.252474,1,1,0,2,5,,4,3,Sheldon,Rd,605709,0.498,0.751,0,6.059383,5.8,4.5 +27538,0,0.306432,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.354358,0.15,4 +27539,0,0.474167,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.380017,0.15,4 +35749,0,0.450802,1,1,1,2,5,,4,3,Sheldon,Rd,605709,0.048,0.498,0,10.819257,5.8,4.5 +193,0,0.396489,1,1,0,2,5,GRV,4,3,Washington,Rd,4415706,0.51,0.906,0,9.515743,6.55,4.5 +39806,-1,0.023408,0,2,0,2,4,,4,3,Martin,Pkwy,4416631,0,0.023,0,0.56179,4.5,4.5 +234,0,0.784239,1,1,0,2,4,,4,3,Orion,Rd,604708,7.169,7.954,0,18.821739,4.5,4.5 +510,0,0.507782,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,7.719,8.227,0,12.186769,5.55,5 +1511,1,1.572502,2,0,0,2,3,DIV,5,3,M 24,,616604,12.377,13.949,0,37.740037,1.7,4 +2422,0,1.442106,1,1,0,2,5,GRV,5,3,Oxford,Rd,646502,2.34,3.782,0,34.610536,5.55,5 +2875,0,0.340932,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,6.643,6.984,0,8.18236,5.55,5 +2984,0,1.967101,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,4.354,6.321,0,47.210421,3,4 +21013,-1,1.580638,0,2,0,2,3,DIV,5,3,M 24,,4410277,1.324,2.904,0,37.935308,1.7,4 +21025,0,1.882204,1,1,0,2,5,GRV,5,3,Oxford,Rd,4410182,11.531,13.413,0,45.172886,5.55,5 +21087,0,1.504977,1,1,0,2,5,GRV,5,3,Coats,Rd,4410047,3.979,5.483,0,36.119436,5.55,5 +21103,0,1.534396,1,1,0,2,4,,5,3,Lakeville,Rd,4410040,1.475,3.009,0,36.825494,3,4 +21501,0,0.875485,1,1,0,2,4,,5,3,Rochester,Rd,4413538,25.743,26.618,0,21.011649,3,4 +25562,0,1.217816,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.227595,0.15,4 +25565,0,0.515456,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.370943,0.15,4 +25568,0,0.54006,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.96144,0.15,4 +28533,0,0.784273,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.822556,0.15,4 +28544,0,0.909886,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.837274,0.15,4 +28555,0,0.877441,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.058587,0.15,4 +28557,0,0.888067,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.313598,0.15,4 +29480,0,0.834867,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.036814,0.15,4 +30170,0,0.426485,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.235633,0.15,4 +30174,0,0.823439,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.762525,0.15,4 +30175,0,0.773003,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.55207,0.15,4 +290,0,0.553344,1,1,0,2,5,,4,3,Waldon,Rd,627303,6.161,6.714,0,13.280263,5.8,4.5 +823,0,0.762613,1,1,0,2,4,,4,3,Clarkston,Rd,627307,7.352,8.115,0,18.302709,4.5,4.5 +1198,1,0.519653,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,7.843,8.363,0,12.471683,3.7,5 +1447,0,0.687366,1,1,0,2,5,,4,3,Drahner,Rd,626708,1.467,2.155,0,16.496777,5.8,4.5 +2948,0,0.469822,1,1,0,2,4,,4,3,Seymour Lake,Rd,669104,1.867,2.337,0,11.27574,4.5,4.5 +3206,0,0.632804,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,0.697,1.33,0,15.187294,3,4 +37632,1,0.042135,2,0,0,2,4,,5,3,Baldwin,Rd,655009,7.085,7.127,0,1.01123,3,4 +37633,-1,0.038709,0,1,0,2,4,,5,3,Baldwin,Rd,4415709,0.023,0.062,0,0.929013,3,4 +21113,-1,0.520668,0,2,0,2,3,DIV,4,3,Lapeer,Rd,4410003,0.103,0.624,0,12.496033,3.7,5 +40659,0,1.302431,1,1,0,2,6,GRV,5,3,Dunlap,Rd,627009,0,1.302,0,31.258344,5.55,5 +28471,0,1.511741,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.281794,0.15,4 +28560,0,1.211633,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,29.079185,0.15,4 +28561,0,0.965388,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.169311,0.15,4 +28569,0,1.181098,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.34634,0.15,4 +28572,0,0.684831,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.435936,0.15,4 +28573,0,1.121609,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.918624,0.15,4 +28575,0,0.584059,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.017419,0.15,4 +28587,0,1.199779,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.794694,0.15,4 +30147,0,0.312904,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,7.509696,0.15,4 +1022,0,1.113952,1,1,0,2,5,GRV,4,3,Waldon,Rd,627303,3.522,4.636,0,26.734852,6.55,4.5 +1072,0,0.219293,1,1,0,2,4,,5,3,Clarkston,Rd,627307,4.944,5.163,0,5.263029,3,4 +1775,0,0.80304,1,1,0,2,4,,4,3,Clarkston,Rd,627307,5.755,6.557,0,19.272968,4.5,4.5 +3217,0,1.255857,1,1,0,2,4,,4,3,Baldwin,Rd,655009,4.425,5.68,0,30.140556,4.5,4.5 +37630,0,1.456517,1,1,0,2,5,,5,3,Indianwood,Rd,655208,0.039,1.496,0,34.956408,3.7,5 +26101,0,1.073357,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.760576,0.15,4 +28565,0,1.140238,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.365707,0.15,4 +28566,0,0.613752,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.730051,0.15,4 +1548,0,0.878514,1,1,0,2,4,,5,3,Clarkston,Rd,627307,4.066,4.944,0,21.084324,3,4 +4479,0,1.087249,1,1,0,2,4,,5,3,Clintonville,Rd,697001,3.296,4.383,0,26.093971,3,4 +26098,0,1.558869,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.412862,0.15,4 +26099,0,0.793008,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.032203,0.15,4 +817,0,0.502006,1,1,0,2,5,,5,3,Waldon,Rd,627303,3.021,3.522,0,12.048138,3.7,5 +26116,0,0.604464,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.507134,0.15,4 +4463,0,0.20358,1,1,0,2,4,,5,3,Clintonville,Rd,697001,4.383,4.586,0,4.885929,3,4 +767,0,1.007243,1,1,0,2,5,GRV,5,3,Eston,Rd,627507,0.516,1.522,0,24.173836,5.55,5 +3156,0,0.499267,1,1,0,2,5,GRV,5,3,Indianwood,Rd,653307,0.253,0.752,0,11.982402,5.55,5 +26091,0,0.802435,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.258438,0.15,4 +26092,0,0.815377,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.569042,0.15,4 +3427,0,0.647771,1,1,0,2,5,GRV,5,3,Dartmouth,Rd,653806,0.5,1.147,0,15.54651,5.55,5 +621,0,0.591449,1,1,0,2,4,,5,3,Clarkston,Rd,627307,5.163,5.755,0,14.194774,3,4 +1184,0,0.515624,1,1,0,2,5,,5,3,Eston,Rd,627507,0,0.516,0,12.37497,3.7,5 +2447,0,0.380408,1,1,0,2,5,GRV,5,3,Indianwood,Rd,653307,0.752,1.133,0,9.1298,5.55,5 +2457,0,0.127537,1,1,0,2,5,GRV,5,3,Indianwood,Rd,653307,1.133,1.26,0,3.060881,5.55,5 +28570,0,1.100545,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,26.413084,0.15,4 +754,0,0.034329,1,1,0,2,5,,4,3,Waldon,Rd,627303,6.127,6.161,0,0.823893,5.8,4.5 +28568,0,0.209045,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.017084,0.15,4 +1279,0,0.795054,1,1,0,2,4,,4,3,Clarkston,Rd,627307,6.557,7.352,0,19.081288,4.5,4.5 +37626,0,0.412356,1,1,0,2,4,,5,3,Baldwin,Rd,655009,6.672,7.085,0,9.896553,3,4 +28567,0,0.364773,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,8.754544,0.15,4 +28571,0,1.002947,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.070719,0.15,4 +28576,0,1.009817,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.235617,0.15,4 +2790,0,0.992544,1,1,0,2,4,,5,3,Baldwin,Rd,655009,5.68,6.672,0,23.821059,3,4 +37631,-1,0.042853,0,1,0,2,4,,5,3,Baldwin,Rd,4415707,0,0.043,0,1.028472,3,4 +37623,0,0.885783,1,1,0,2,5,GRV,5,3,Coats,Rd,4410047,0.067,0.952,0,21.258787,5.55,5 +37625,0,0.635547,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,0.062,0.697,0,15.253139,3,4 +2025,0,0.539025,1,1,0,2,5,GRV,5,3,Drahner,Rd,626708,0,0.539,0,12.936602,5.55,5 +2799,0,1.012956,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,3.341,4.354,0,24.310939,3,4 +2979,0,0.875071,1,1,0,2,4,,5,3,Seymour Lake,Rd,669104,0,0.875,0,21.001702,3,4 +21088,0,1.141172,1,1,0,2,5,GRV,5,3,Coats,Rd,4410047,2.838,3.979,0,27.388121,5.55,5 +40680,-1,0.028081,0,2,0,2,4,DIV,3,1,Grand,Blvd,5494519,0.123,0.151,0,0.673947,6,4.5 +28581,0,1.049963,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.199103,0.15,4 +29794,0,1.515019,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.360457,0.15,4 +2008,0,0.755818,1,1,0,2,4,,5,3,Seymour Lake,Rd,627107,4.199,4.955,0,18.139622,3,4 +3210,0,1.287806,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,1.33,2.618,0,30.907342,3,4 +26086,0,1.122622,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.942928,0.15,4 +26087,0,0.250268,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,6.00643,0.15,4 +3088,0,0.400858,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,2.838,3.239,0,9.620597,3,4 +3334,0,0.220868,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,2.618,2.838,0,5.300841,3,4 +2801,0,0.102329,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,3.239,3.341,0,2.455899,3,4 +1042,0,0.440336,1,1,0,2,5,GRV,4,3,Drahner,Rd,626708,1.027,1.467,0,10.568062,6.55,4.5 +1514,0,0.488464,1,1,0,2,5,GRV,5,3,Drahner,Rd,626708,0.539,1.027,0,11.723136,5.55,5 +3442,0,0.644446,1,1,0,2,5,GRV,4,3,Sanders,Rd,671008,0,0.644,0,15.466716,6.55,4.5 +3558,0,0.473518,1,1,0,2,4,,4,3,Seymour Lake,Rd,669104,0.875,1.348,0,11.364439,4.5,4.5 +21093,0,0.702178,1,1,0,2,5,GRV,4,3,Coats,Rd,4410047,1.837,2.539,0,16.852272,6.55,4.5 +28574,0,0.841662,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.199885,0.15,4 +28579,0,0.784288,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.822909,0.15,4 +28580,0,0.169153,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,4.059668,0.15,4 +21094,0,0.884853,1,1,0,2,5,GRV,4,3,Coats,Rd,4410047,0.952,1.837,0,21.236465,6.55,4.5 +21092,0,0.299281,1,1,0,2,5,GRV,4,3,Coats,Rd,4410047,2.539,2.838,0,7.182748,6.55,4.5 +3104,0,0.363447,1,1,0,2,5,GRV,4,3,Sanders,Rd,671008,0.644,1.008,0,8.722735,6.55,4.5 +3249,0,0.519087,1,1,0,2,4,,4,3,Seymour Lake,Rd,669104,1.348,1.867,0,12.45808,4.5,4.5 +25571,0,0.653059,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.673409,0.15,4 +736,1,1.146105,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,5.06,6.206,0,27.506527,3.7,5 +783,0,0.258255,1,1,0,2,4,,4,3,Clarkston,Rd,627307,9.162,9.42,0,6.19812,4.5,4.5 +978,-1,1.145667,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,5.047,6.193,0,27.496013,3.7,5 +1851,0,1.324054,1,1,0,2,5,,4,3,Waldon,Rd,627303,6.714,8.038,0,31.77729,5.8,4.5 +2438,0,1.185096,1,1,0,2,4,,4,3,Joslyn,Rd,674110,6.954,8.139,0,28.442313,4.5,4.5 +2574,0,0.265838,1,1,0,2,5,,4,3,Heights,Rd,669109,0.648,0.914,0,6.380111,5.8,4.5 +3309,0,1.629285,1,1,0,2,5,,4,3,Indianwood,Rd,655208,2.302,3.931,0,39.102831,5.8,4.5 +27531,0,1.163475,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,27.923404,0.15,4 +28582,0,0.904099,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.698383,0.15,4 +28584,0,0.114175,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.740188,0.15,4 +28585,0,0.418475,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.043391,0.15,4 +30173,0,0.892538,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.420919,0.15,4 +2612,0,0.390345,1,1,0,2,4,,4,3,Joslyn,Rd,674110,6.564,6.954,0,9.368269,4.5,4.5 +25160,0,1.01999,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.479765,0.15,4 +2887,0,0.628402,1,1,0,2,4,,4,3,Joslyn,Rd,674110,5.936,6.564,0,15.081645,4.5,4.5 +1224,0,1.047666,1,1,0,2,4,,4,3,Clarkston,Rd,627307,8.115,9.162,0,25.143974,4.5,4.5 +3078,0,0.966288,1,1,0,2,5,,4,3,Joslyn,Rd,674110,8.391,9.357,0,23.190907,5.8,4.5 +3154,0,0.806655,1,1,0,2,5,,4,3,Indianwood,Rd,655208,1.496,2.302,0,19.359727,5.8,4.5 +3590,0,0.713803,1,1,0,2,5,,4,3,Joslyn,Rd,674110,9.357,10.071,0,17.131283,5.8,4.5 +3411,0,0.2525,1,1,0,2,5,,4,3,Joslyn,Rd,674110,8.139,8.391,0,6.060011,5.8,4.5 +2857,0,0.648499,1,1,0,2,5,,4,3,Heights,Rd,669109,0,0.648,0,15.563971,5.8,4.5 +25540,0,0.377843,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.068238,0.15,4 +454,0,0.598844,1,1,0,2,5,,4,3,Waldon,Rd,627303,8.392,8.99,0,14.372264,5.8,4.5 +1176,1,1.127334,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,3.933,5.06,0,27.056025,3.7,5 +1437,-1,1.127544,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,3.92,5.047,0,27.061051,3.7,5 +914,0,0.353673,1,1,0,2,5,,4,3,Waldon,Rd,627303,8.038,8.392,0,8.48815,5.8,4.5 +557,-1,0.102479,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,3.818,3.92,0,2.459497,3.7,5 +722,1,0.102041,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,3.831,3.933,0,2.448985,3.7,5 +2005,0,0.011157,1,1,0,2,5,,4,3,Waldon,Rd,627303,8.99,9.001,0,0.267776,5.8,4.5 +322,0,1.005263,1,1,0,2,4,,4,3,Clarkston,Rd,627307,9.42,10.425,0,24.126306,4.5,4.5 +869,0,0.290978,2,2,0,2,3,,4,3,Broadway,St,616604,6.825,7.116,0,6.983477,3.7,5 +3248,0,0.593068,1,1,0,2,5,,4,3,Heights,Rd,669109,1.249,1.842,0,14.233621,5.8,4.5 +28586,0,0.435984,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.463616,0.15,4 +28603,0,0.588958,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.134998,0.15,4 +3541,0,0.334835,1,1,0,2,5,,4,3,Heights,Rd,669109,0.914,1.249,0,8.036049,5.8,4.5 +30172,0,0.454305,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.903319,0.15,4 +30171,0,0.22163,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.319131,0.15,4 +738,0,0.308796,2,2,0,2,3,,4,3,Lapeer,Rd,616604,6.472,6.781,0,7.411103,3.7,5 +984,-1,0.266364,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,6.193,6.459,0,6.392727,3.7,5 +1177,1,0.266306,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,6.206,6.472,0,6.391348,3.7,5 +2163,0,0.013023,1,1,0,2,4,,4,3,Clarkston,Rd,627307,10.425,10.438,0,0.312543,4.5,4.5 +2947,-1,0.224667,0,1,0,2,5,,4,3,Heights,Rd,669109,1.842,2.066,0,5.391997,5.8,4.5 +20435,1,0.218564,1,0,0,2,5,,4,3,Odanah,,4400397,0,0.219,0,5.245527,5.8,4.5 +1335,0,0.04405,2,2,0,2,3,,4,3,Lapeer,Rd,616604,6.781,6.825,0,1.05719,3.7,5 +1058,0,0.213203,2,2,0,2,3,,4,3,Park,Blvd,616604,7.427,7.64,0,5.116863,3.7,5 +3323,0,0.406319,1,1,0,2,4,,4,3,Flint,,655105,0.383,0.789,0,9.751654,4.5,4.5 +28556,0,0.173372,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.160924,0.15,4 +28612,0,0.254293,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.103038,0.15,4 +28614,0,0.468548,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.245158,0.15,4 +1529,0,0.311546,2,2,0,2,3,,4,3,Park,Blvd,616604,7.116,7.427,0,7.477112,3.7,5 +3391,0,0.119191,1,1,0,2,4,,4,3,Flint,,655105,0.264,0.383,0,2.86059,4.5,4.5 +1093,1,0.058927,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,7.742,7.801,0,1.414238,3.7,5 +1570,0,0.101703,2,2,0,2,3,,4,3,Lapeer,Rd,616604,7.64,7.742,0,2.440874,3.7,5 +21115,-1,0.061512,0,2,0,2,3,DIV,4,3,Lapeer,Rd,4410003,0,0.062,0,1.476295,3.7,5 +1675,1,0.042403,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,7.801,7.843,0,1.01767,3.7,5 +3159,0,0.014013,1,1,0,2,5,,4,3,Indianwood,Rd,655208,3.931,3.945,0,0.336301,5.8,4.5 +21114,-1,0.041658,0,2,0,2,3,DIV,4,3,Lapeer,Rd,4410003,0.062,0.103,0,0.99978,3.7,5 +1380,0,0.539515,2,2,0,2,3,,3,3,Washington,,616604,10.513,11.053,0,12.948372,5,5 +1891,0,0.268243,2,2,0,2,3,,3,3,Washington,,616604,10.245,10.513,0,6.437836,5,5 +2020,0,0.390621,1,1,0,2,5,,4,3,Drahner,Rd,626708,3.555,3.945,0,9.37491,5.8,4.5 +2616,0,0.306251,1,1,0,2,4,,3,3,Burdick,,669104,3.524,3.83,0,7.350027,6,4.5 +3068,0,0.758086,1,1,0,2,5,,5,3,Ray,Rd,671410,0.014,0.772,0,18.194055,3.7,5 +3080,0,0.210566,1,1,0,2,5,,3,3,Glaspie,,670401,0.992,1.203,0,5.053578,8,4.5 +25560,0,1.489127,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.73904,0.15,4 +28546,0,1.503208,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.076996,0.15,4 +28548,0,0.257074,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.169773,0.15,4 +28549,0,0.603907,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.493761,0.15,4 +522,0,0.514165,1,1,0,2,5,,4,3,Drahner,Rd,626708,2.505,3.019,0,12.339955,5.8,4.5 +3193,0,1.027757,1,1,0,2,4,,5,3,Seymour Lake,Rd,669104,2.337,3.364,0,24.666166,3,4 +28563,0,1.209366,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,29.024795,0.15,4 +28564,0,0.467365,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.216771,0.15,4 +985,0,0.350303,1,1,0,2,5,,4,3,Drahner,Rd,626708,2.155,2.505,0,8.407278,5.8,4.5 +28562,0,0.56292,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.510081,0.15,4 +474,0,0.536075,1,1,0,2,5,,4,3,Drahner,Rd,626708,3.019,3.555,0,12.86579,5.8,4.5 +28597,0,0.423071,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.153696,0.15,4 +2890,0,0.159676,1,1,0,2,4,,3,3,Burdick,,669104,3.364,3.524,0,3.832214,6,4.5 +28589,0,0.126993,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.047826,0.15,4 +1390,1,0.464347,2,0,0,2,3,DIV,5,3,M 24,,616604,11.794,12.258,0,11.144338,1.7,4 +2022,1,0.118736,2,0,0,2,3,DIV,5,3,M 24,,616604,12.258,12.377,0,2.849655,1.7,4 +21014,-1,0.120483,0,2,0,2,3,DIV,5,3,M 24,,4410277,1.203,1.324,0,2.891594,1.7,4 +21015,-1,0.457686,0,2,0,2,3,DIV,5,3,M 24,,4410277,0.746,1.203,0,10.984468,1.7,4 +1907,1,0.74166,2,0,0,2,3,DIV,5,3,M 24,,616604,11.053,11.794,0,17.799843,1.7,4 +21016,-1,0.745874,0,2,0,2,3,DIV,5,3,M 24,,4410277,0,0.746,0,17.900976,1.7,4 +3393,0,0.014227,1,1,0,2,5,,5,3,Ray,Rd,671410,0,0.014,0,0.341453,3.7,5 +1249,0,0.917371,2,2,0,2,3,,4,3,Lapeer,Rd,616604,9.328,10.245,0,22.016909,3.7,5 +1710,1,0.482436,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,8.363,8.845,0,11.578468,3.7,5 +21104,0,0.888849,1,1,0,2,4,,4,3,Lakeville,Rd,4410040,0.586,1.475,0,21.332381,4.5,4.5 +21112,-1,0.4823,0,2,0,2,3,DIV,4,3,Lapeer,Rd,4410003,0.624,1.106,0,11.575201,3.7,5 +25564,0,0.706241,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.94978,0.15,4 +28550,0,1.0574,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.377605,0.15,4 +1509,0,0.355859,1,1,0,2,5,,4,3,Drahner,Rd,626708,3.945,4.301,0,8.540608,5.8,4.5 +28592,0,0.540373,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.968963,0.15,4 +28594,0,0.505749,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.137984,0.15,4 +28595,0,0.526614,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.638743,0.15,4 +1225,1,0.219734,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,8.845,9.065,0,5.273611,3.7,5 +1737,0,0.263413,2,2,0,2,3,,4,3,Lapeer,Rd,616604,9.065,9.328,0,6.321912,3.7,5 +21111,-1,0.215218,0,2,0,2,3,DIV,4,3,Lapeer,Rd,4410003,1.106,1.321,0,5.165222,3.7,5 +21106,0,0.51407,1,1,0,2,4,,4,3,Lakeville,Rd,4410040,0,0.514,0,12.337674,4.5,4.5 +28591,0,0.420707,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.096978,0.15,4 +21105,0,0.072518,1,1,0,2,4,,4,3,Lakeville,Rd,4410040,0.514,0.586,0,1.740427,4.5,4.5 +24960,0,1.191662,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.599895,0.15,4 +25576,0,1.183262,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.398299,0.15,4 +2423,0,0.908192,1,1,0,2,5,,5,3,Oxford,Rd,646502,1.433,2.34,0,21.796616,3.7,5 +28543,0,0.874011,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.976252,0.15,4 +28547,0,0.594347,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.264317,0.15,4 +2424,0,0.541444,1,1,0,2,5,,5,3,Ray,Rd,646502,0.891,1.433,0,12.994666,3.7,5 +2425,0,0.89137,1,1,0,2,5,,5,3,Oxford,Rd,646502,0,0.891,0,21.392873,3.7,5 +2470,0,0.089554,1,1,0,2,5,,3,3,Glaspie,,670401,1.203,1.292,0,2.149308,8,4.5 +28545,0,0.141261,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,3.390255,0.15,4 +2053,1,1.110311,2,0,0,2,3,DIV,5,3,M 24,,616604,13.949,15.059,0,26.647459,1.7,4 +21012,-1,1.10725,0,2,0,2,3,DIV,5,3,M 24,,4410277,2.904,4.011,0,26.574008,1.7,4 +21030,0,0.241833,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,8.439,8.68,0,5.803985,3,4 +21035,0,0.866173,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,6.63,7.496,0,20.788146,3,4 +34077,-1,0.979327,0,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34078,0,1.179761,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34112,1,0.979473,2,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +3431,0,1.062197,1,1,0,2,5,GRV,5,3,Baldwin,Rd,4415709,6.321,7.382,0,25.492736,5.55,5 +21037,0,1.003901,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,5.627,6.63,0,24.093627,3,4 +21032,0,0.942731,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,7.496,8.439,0,22.625553,3,4 +25555,0,0.768025,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.432605,0.15,4 +21086,0,0.488887,1,1,0,2,5,GRV,5,3,Coats,Rd,4410047,5.483,5.972,0,11.733278,5.55,5 +25557,0,0.46668,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.200318,0.15,4 +21028,0,2.286519,1,1,0,2,5,GRV,5,3,Oakwood,Rd,4410182,8.697,10.983,0,54.876446,5.55,5 +21029,0,0.016489,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,8.68,8.697,0,0.395734,3,4 +21027,0,0.511131,1,1,0,2,5,GRV,5,3,Oakwood,Rd,4410182,10.983,11.494,0,12.267144,5.55,5 +25559,0,0.725819,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,17.419664,0.15,4 +2421,0,0.033785,1,1,0,2,5,GRV,5,3,Oxford/Oakwood Cutoff,,646502,3.782,3.816,0,0.810832,5.55,5 +20953,0,0.052921,1,1,0,2,5,GRV,5,3,Oxford,Rd,4411922,0,0.053,0,1.270115,5.55,5 +21026,0,0.037745,1,1,0,2,5,GRV,5,3,Oakwood,Rd,4410182,11.494,11.531,0,0.905891,5.55,5 +1,0,1.801707,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,2.915,4.716,0,43.240974,5.55,5 +25,0,0.275728,1,1,0,2,5,GRV,5,3,Gunn,Rd,609405,2.457,2.733,0,6.61747,5.55,5 +241,0,0.390079,1,1,0,2,4,,5,3,Orion,Rd,604708,2.996,3.386,0,9.361907,3,4 +304,0,1.679829,1,1,0,2,5,,5,3,Stony Creek,Rd,627705,0,1.679,0,40.315893,3.7,5 +2597,0,0.633742,1,1,0,2,5,GRV,5,3,Kline,Rd,667704,0,0.634,0,15.209819,5.55,5 +20986,0,0.382215,1,1,0,2,5,,5,3,Romeo,,4410333,0.102,0.484,0,9.173161,3.7,5 +21100,0,0.722402,1,1,0,2,4,,5,3,Lakeville,Rd,4410040,4.587,5.309,0,17.337642,3,4 +21553,0,1.038347,1,1,0,2,4,,5,3,Rochester,Rd,4413538,20.02,21.058,0,24.920334,3,4 +24979,0,0.847184,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.332423,0.15,4 +27389,0,0.701292,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.831016,0.15,4 +28588,0,1.289482,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,30.947571,0.15,4 +28598,0,1.012054,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.289289,0.15,4 +28607,0,1.130671,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.136096,0.15,4 +29130,0,1.089401,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.145633,0.15,4 +4,0,0.950828,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,0.704,1.655,0,22.819868,5.55,5 +237,0,1.260138,1,1,0,2,4,,4,3,Orion,Rd,604708,5.226,6.486,0,30.243307,4.5,4.5 +707,0,0.097666,1,1,0,2,5,,5,3,Stoney Creek,Rd,609508,1.174,1.272,0,2.343973,3.7,5 +1831,0,0.945409,1,1,0,2,5,,5,3,Adams,Rd,4415861,15.645,16.591,0,22.689823,3.7,5 +24974,0,1.742303,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,41.815284,0.15,4 +28602,0,0.965802,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.179243,0.15,4 +28604,0,0.774366,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.584785,0.15,4 +28613,0,0.692358,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.616594,0.15,4 +29774,0,0.387824,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,9.307787,0.15,4 +29775,0,1.038571,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.925713,0.15,4 +236,0,0.524466,1,1,0,2,4,,4,3,Orion,Rd,604708,6.486,7.01,0,12.587172,4.5,4.5 +675,0,1.174366,1,1,0,2,5,,4,3,Stoney Creek,Rd,609508,0,1.174,0,28.18479,5.8,4.5 +28559,0,0.447608,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.742583,0.15,4 +235,0,0.159183,1,1,0,2,4,,4,3,Orion,Rd,604708,7.01,7.169,0,3.820403,4.5,4.5 +1245,0,0.500591,1,1,0,2,5,,5,3,Adams,Rd,4415861,16.591,17.091,0,12.014181,3.7,5 +13,0,0.704432,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,0,0.704,0,16.906375,5.55,5 +26,0,0.83781,1,1,0,2,5,GRV,5,3,Gunn,Rd,609405,1.619,2.457,0,20.107448,5.55,5 +239,0,0.274402,1,1,0,2,4,,5,3,Orion,Rd,604708,4.015,4.289,0,6.58564,3,4 +24976,0,0.785965,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.863153,0.15,4 +24977,0,0.298332,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,7.159975,0.15,4 +28467,0,0.8012,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.228805,0.15,4 +238,0,0.937123,1,1,0,2,4,,5,3,Orion,Rd,604708,4.289,5.226,0,22.490962,3,4 +1126,0,0.040139,1,1,0,2,5,,4,3,Adams,Rd,4415861,15.605,15.645,0,0.963327,5.8,4.5 +240,0,0.629129,1,1,0,2,4,,5,3,Orion,Rd,604708,3.386,4.015,0,15.099102,3,4 +2,0,0.758176,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,2.157,2.915,0,18.196235,5.55,5 +725,0,0.915273,1,1,0,2,5,,5,3,Stoney Creek,Rd,609508,1.272,2.187,0,21.966547,3.7,5 +28611,0,0.826014,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.824336,0.15,4 +3,0,0.501912,1,1,0,2,5,,5,3,Lake George,Rd,609408,1.655,2.157,0,12.045889,3.7,5 +2811,0,0.542028,1,1,0,2,5,GRV,5,3,Predmore,Rd,667508,0.963,1.505,0,13.008672,5.55,5 +1086,0,0.998331,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,4.716,5.714,0,23.959946,5.55,5 +21102,0,1.004878,1,1,0,2,4,,5,3,Lakeville,Rd,4410040,3.009,4.014,0,24.117073,3,4 +25561,0,1.784381,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,42.825148,0.15,4 +25569,0,1.05083,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.219909,0.15,4 +28615,0,0.962116,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.090791,0.15,4 +28616,0,1.012273,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.294545,0.15,4 +20987,0,0.101596,1,1,0,2,5,,5,3,Romeo,,4410333,0,0.102,0,2.438312,3.7,5 +346,0,1.264991,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,6.455,7.719,0,30.359774,5.55,5 +25563,0,1.550605,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.214524,0.15,4 +25572,0,2.071382,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,49.713175,0.15,4 +1346,0,0.74103,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,5.714,6.455,0,17.784718,5.55,5 +21101,0,0.573182,1,1,0,2,4,,5,3,Lakeville,Rd,4410040,4.014,4.587,0,13.756358,3,4 +23,0,0.498385,1,1,0,2,5,,5,3,Gunn,Rd,609405,4.038,4.536,0,11.961237,3.7,5 +30,0,0.499536,1,1,0,2,4,GRV,4,3,Snell,Rd,609310,1.217,1.716,0,11.988863,6.55,4.5 +21557,0,0.904911,1,1,0,2,4,,5,3,Rochester,Rd,4413538,18.038,18.943,0,21.717865,3,4 +27388,0,1.030703,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.736868,0.15,4 +28606,0,1.341001,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.184019,0.15,4 +29128,0,0.972517,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.340414,0.15,4 +24,0,1.305644,1,1,0,2,5,GRV,5,3,Gunn,Rd,609405,2.733,4.038,0,31.335451,5.55,5 +32,0,0.354125,1,1,0,2,4,,4,3,Snell,Rd,609310,0,0.354,0,8.498988,4.5,4.5 +21593,0,1.10185,1,1,0,2,4,,5,3,Rochester,Rd,4413538,16.936,18.038,0,26.444389,3,4 +28608,0,1.005605,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.13452,0.15,4 +28609,0,0.854414,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.50593,0.15,4 +29773,0,1.352198,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.452749,0.15,4 +242,0,0.174508,1,1,0,2,4,,5,3,Orion,Rd,604708,2.822,2.996,0,4.188201,3,4 +247,0,0.170299,1,1,0,2,4,,5,3,Orion,Rd,604708,2.58,2.751,0,4.087172,3,4 +243,0,0.0711,1,1,0,2,4,,5,3,Orion,Rd,604708,2.751,2.822,0,1.706398,3,4 +31,0,0.374645,1,1,0,2,4,,4,3,Snell,Rd,609310,0.843,1.217,0,8.991484,4.5,4.5 +21594,0,0.507883,1,1,1,2,4,,5,3,Rochester,Rd,4413538,16.429,16.936,0,12.189194,3,4 +21555,0,0.644499,1,1,0,2,4,,5,3,Rochester,Rd,4413538,19.375,20.02,0,15.467985,3,4 +28605,0,1.10197,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.447282,0.15,4 +1866,0,0.378117,1,1,0,2,5,,5,3,Stony Creek,Rd,627705,1.679,2.057,0,9.074809,3.7,5 +21556,0,0.433032,1,1,0,2,4,,5,3,Rochester,Rd,4413538,18.943,19.375,0,10.392758,3,4 +15,0,0.494965,1,1,0,2,5,,5,3,Gunn,Rd,609405,4.536,5.031,0,11.879165,3.7,5 +24963,0,0.689732,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.55357,0.15,4 +27522,0,1.073639,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.767331,0.15,4 +29,0,0.385967,1,1,0,2,4,GRV,4,3,Snell,Rd,609310,1.716,2.102,0,9.263199,6.55,4.5 +28468,0,0.457955,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.990911,0.15,4 +14,0,0.171103,1,1,0,2,5,GRV,5,3,Gunn,Rd,609405,6.016,6.187,0,4.106483,5.55,5 +256,0,0.53487,1,1,0,2,5,GRV,5,3,Mack,Rd,604404,0,0.535,0,12.836885,5.55,5 +3047,0,0.97628,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,3.661,4.637,0,23.430718,5.55,5 +20984,0,0.752515,1,1,0,2,4,,5,3,Romeo,,4410333,1.732,2.485,0,18.060355,3,4 +21505,0,0.996628,1,1,0,2,4,,5,3,Rochester,Rd,4413538,23.212,24.208,0,23.919077,3,4 +24955,0,0.957069,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.969656,0.15,4 +24956,0,0.764727,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.353459,0.15,4 +25567,0,1.475461,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.411053,0.15,4 +20985,0,1.248821,1,1,0,2,5,,5,3,Romeo,,4410333,0.484,1.732,0,29.971716,3.7,5 +21545,0,0.711191,1,1,0,2,4,,5,3,Rochester,Rd,4413538,22.501,23.212,0,17.068578,3,4 +21548,0,1.017746,1,1,0,2,4,,5,3,Rochester,Rd,4413538,21.058,22.075,0,24.425906,3,4 +28599,0,0.774897,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.597526,0.15,4 +28601,0,0.895401,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.489624,0.15,4 +28600,0,0.852592,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.462198,0.15,4 +21099,0,0.502855,1,1,0,2,4,,5,3,Lakeville,Rd,4410040,5.309,5.812,0,12.06852,3,4 +21546,0,0.425683,1,1,0,2,4,,5,3,Rochester,Rd,4413538,22.075,22.501,0,10.216385,3,4 +21502,0,0.504742,1,1,0,2,4,,5,3,Rochester,Rd,4413538,25.238,25.743,0,12.1138,3,4 +21503,0,1.030215,1,1,0,2,4,,5,3,Rochester,Rd,4413538,24.208,25.238,0,24.725169,3,4 +24957,0,1.039213,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.941116,0.15,4 +27515,0,1.06221,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.493033,0.15,4 +2506,0,0.029151,1,1,0,2,5,,5,4,Dequindre,Rd,667605,3.631,3.661,0,0.699629,3.7,5 +254,0,1.00999,1,1,0,2,5,GRV,5,3,Mack,Rd,604404,1.074,2.084,0,24.239757,5.55,5 +2767,0,1.011147,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,4.637,5.648,0,24.267526,5.55,5 +25566,0,2.081994,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,49.967846,0.15,4 +28554,0,1.408396,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.801513,0.15,4 +255,0,0.539128,1,1,0,2,5,GRV,5,3,Mack,Rd,604404,0.535,1.074,0,12.939068,5.55,5 +2484,0,0.995943,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,5.648,6.643,0,23.902622,5.55,5 +264,0,1.089505,1,1,0,2,5,GRV,5,3,Leonard,Rd,604205,0,1.089,0,26.14813,5.55,5 +21024,0,1.058913,1,1,0,2,5,GRV,5,3,Oakwood,Rd,4410182,13.413,14.472,0,25.413923,5.55,5 +34076,0,1.257867,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19958,0,1.070012,1,1,0,2,5,GRV,5,3,Hosner,Rd,3440080,0,1.07,0,25.680296,5.55,5 +257,0,0.041888,1,1,0,2,5,GRV,5,3,Hosner,Rd,604305,0,0.042,0,1.005318,5.55,5 +665,0,0.359508,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,8.227,8.586,0,8.628196,5.55,5 +259,0,0.38401,1,1,0,2,5,,5,3,Elmwood,,604205,2.224,2.608,0,9.21624,3.7,5 +34075,0,1.483965,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +263,0,0.585987,1,1,0,2,5,GRV,5,3,Leonard,Rd,604205,1.089,1.675,0,14.06368,5.55,5 +21497,0,1.463036,1,1,0,2,4,,5,3,Rochester,Rd,4413538,26.829,28.292,0,35.112874,3,4 +260,0,0.14534,1,1,0,2,5,,5,3,Elmwood,,604205,2.078,2.224,0,3.48817,3.7,5 +28590,0,0.182407,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,4.37777,0.15,4 +21499,0,0.115844,1,1,0,2,4,,5,3,Forest,,4413538,26.618,26.734,0,2.780252,3,4 +25558,0,0.127615,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,3.062759,0.15,4 +21498,0,0.095347,1,1,0,2,4,,5,3,Forest,,4413538,26.734,26.829,0,2.288334,3,4 +29795,0,0.146651,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,3.519612,0.15,4 +261,0,0.095174,1,1,0,2,5,,5,3,Elmwood,,604205,1.983,2.078,0,2.284186,3.7,5 +25556,0,0.124335,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,2.984034,0.15,4 +258,0,1.129688,1,1,0,2,5,GRV,5,3,Leonard,Rd,604205,3.136,4.265,0,27.112501,5.55,5 +3921,0,0.590147,1,1,0,2,5,,4,4,18 Mile,Rd,802504,1.002,1.592,0,14.16353,5.8,4.5 +3987,1,2.304379,3,0,0,1,1,,4,4,E I 94,,798501,11.823,14.127,0,,0.8,7.5 +4080,0,0.039445,2,2,1,2,3,,4,4,Dequindre,Rd,799402,10.416,10.456,0,0.946677,3.7,5 +4294,0,0.164952,2,2,1,2,3,,4,4,Garfield,Rd,798703,4.516,4.681,0,3.95885,3.7,5 +4325,0,0.27769,1,1,0,2,5,,4,4,17 Mile,Rd,802410,0,0.278,0,6.664563,5.8,4.5 +4332,0,0.093938,2,2,0,2,5,,3,4,Market,St,800808,0.758,0.852,0,2.254504,8,4.5 +4406,-1,0.309727,0,2,0,2,4,DIV,3,4,Hayes,Rd,801010,0.506,0.815,0,7.43345,6,4.5 +4510,0,0.446667,2,2,1,2,4,,4,4,Ryan,Rd,799302,10.109,10.556,0,10.720011,4.5,4.5 +4587,0,0.503527,2,2,1,2,4,,4,4,19 Mile,Rd,802506,0.524,1.027,0,12.084651,4.5,4.5 +4590,0,0.093912,2,2,1,2,3,,3,4,14 Mile,Rd,798407,4.383,4.477,0,2.253883,5,5 +4726,1,0.813431,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,8.23,9.044,0,19.52234,3.7,5 +4881,-1,2.281263,0,3,0,1,1,,4,4,W I 94,,798502,11.871,14.152,0,,0.8,7.5 +4954,0,0.465042,1,1,0,2,4,,4,4,18 Mile,Rd,802504,0,0.465,0,11.161014,4.5,4.5 +4967,1,0.180658,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.353,10.533,0,4.335802,3.7,5 +5055,0,0.389695,1,1,0,2,4,,3,4,Masonic,Blvd,802104,0,0.39,0,9.352679,6,4.5 +5101,0,0.056529,1,1,0,2,4,,3,4,Martin,Rd,803308,0.919,0.975,0,1.356685,6,4.5 +5125,-1,0.058366,0,4,0,2,5,,3,4,11 Mile,Rd,803209,6.17,6.228,0,1.400779,8,4.5 +5182,1,0.093426,4,0,0,2,5,,3,4,11 Mile,Rd,803208,6.167,6.261,0,2.242215,8,4.5 +5221,0,0.188035,1,1,0,2,5,,3,4,Frazho,Rd,803110,1.817,2.005,0,4.51285,8,4.5 +5247,0,0.188429,2,2,1,2,4,,3,4,10 Mile,Rd,803101,5.813,6.002,0,4.522294,6,4.5 +5274,0,0.237833,2,2,1,2,3,,3,4,Groesbeck,Hwy,803009,11.477,11.715,0,5.707992,5,5 +5300,0,0.115553,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,3.576,3.691,0,2.773265,5,5 +5328,0,0.568616,1,1,0,2,5,,3,4,Stephens,Dr,803008,0.585,1.153,0,13.646795,8,4.5 +40491,0,0.161625,1,1,1,2,5,,4,4,Romeo Plank,Rd,819207,0.835,0.996,0,3.878996,5.8,4.5 +5461,0,0.481815,1,1,0,2,4,,4,4,Clinton River,Rd,820606,8.051,8.533,0,11.563555,4.5,4.5 +5487,0,0.28954,1,1,1,2,3,,3,4,Cass,Ave,819209,2.095,2.385,0,6.948968,5,5 +5542,0,0.389137,1,1,0,2,4,,4,4,21 Mile,Rd,817708,3.312,3.701,0,9.339288,4.5,4.5 +5547,0,0.330034,1,1,0,2,4,,4,4,Clinton River,Rd,820606,4.548,4.878,0,7.920822,4.5,4.5 +5642,0,0.218934,1,1,0,2,5,,3,4,Rose,St,819509,0.338,0.557,0,5.254423,8,4.5 +5717,1,0.634878,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,5.585,6.22,0,15.237062,3.7,5 +5839,0,0.528459,1,1,0,2,4,,4,4,Canal,Rd,820607,3.143,3.671,0,12.683012,4.5,4.5 +5854,0,0.19309,2,2,1,2,4,,4,4,15 Mile,Rd,803605,6.037,6.23,0,4.634153,4.5,4.5 +5903,1,0.064321,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.758,1.822,0,1.543706,5,5 +5960,1,0.215836,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,2.384,2.6,0,5.180072,3.7,5 +6002,0,0.597993,1,1,0,2,4,,4,4,24 Mile,Rd,815510,6.042,6.64,0,14.351828,4.5,4.5 +6005,1,0.51563,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,3.058,3.573,0,12.375116,3.7,5 +40490,0,0.227953,1,1,0,2,5,,4,4,Romeo Plank,Rd,819207,0.543,0.77,0,5.470861,5.8,4.5 +6057,0,0.935045,1,1,0,2,4,,4,4,Utica,Rd,4211434,7.973,8.908,0,22.441069,4.5,4.5 +6085,-1,0.395323,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,6.045,6.44,0,9.487742,3.7,5 +6095,0,0.199564,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.805,5.005,0,4.789529,4.5,4.5 +6147,0,0.444805,1,1,0,2,4,,4,4,Moravian,Dr,803604,5.76,6.204,0,10.675326,4.5,4.5 +6171,0,1.137298,1,1,0,2,5,,4,4,Irwin,Dr,831903,0,1.137,0,27.295143,5.8,4.5 +6219,0,0.500672,1,1,0,2,4,,4,4,26 Mile,Rd,816702,5.855,6.356,0,12.01612,4.5,4.5 +6281,1,0.775005,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,0,0.775,0,18.60011,3.7,5 +6282,0,0.32484,1,1,0,2,4,,4,4,Moravian,Dr,803604,1.464,1.789,0,7.796149,4.5,4.5 +6296,1,0.05143,2,0,0,2,4,,3,4,Gratiot/River Cutoff,,831808,0,0.051,0,1.234331,6,4.5 +6317,-1,0.473962,0,2,0,1,2,,4,4,S M 53,,813706,3.384,3.858,0,,0.8,7.5 +6343,0,0.358017,1,1,0,2,4,,4,4,22 Mile,Rd,807104,5.151,5.509,0,8.592403,4.5,4.5 +6453,0,0.254611,2,2,1,2,4,,3,4,13 Mile,Rd,803410,3.075,3.329,0,6.110669,6,4.5 +6568,0,0.261893,1,1,0,2,5,,3,4,Common,Rd,4211479,2.886,3.147,0,6.285435,8,4.5 +6580,0,0.774254,1,1,0,2,5,,4,4,Saal,Rd,820810,0.583,1.357,0,18.582091,5.8,4.5 +6673,0,0.607591,2,2,1,2,3,,4,4,23 Mile,Rd,807106,6.23,6.837,0,14.582173,3.7,5 +6706,0,0.236228,2,2,1,2,3,,3,4,12 Mile,Rd,803401,5.752,5.988,0,5.669484,5,5 +6786,0,0.698136,1,1,0,2,4,,4,4,Clinton River,Rd,820606,2.057,2.755,0,16.755256,4.5,4.5 +19337,-1,1.065365,0,4,0,1,1,,3,4,W I 696,,1740308,5.558,6.623,0,,0.58,7 +19378,1,1.045883,4,0,0,1,1,,3,4,E I 696,,1740201,5.607,6.652,0,,0.58,7 +20033,1,0.145223,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,2.461,2.606,0,3.485358,3.7,5 +20051,0,0.201338,1,1,1,2,5,,3,4,Main,St,4208720,0.493,0.694,0,4.832101,8,4.5 +20064,0,0.357208,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,6.286,6.643,0,8.573002,4.5,4.5 +20207,-1,0.230157,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.117,11.347,0,5.523771,5,5 +37519,-1,0.298106,0,2,0,2,4,,4,4,Van Dyke,Ave,4211014,0,0.298,0,7.154544,4.5,4.5 +20664,0,0.286646,2,2,1,2,4,,4,4,Hayes,Rd,4208921,1.943,2.23,0,6.879514,4.5,4.5 +20696,1,0.491049,2,0,0,2,4,DIV,3,4,Hayes,Rd,4204196,0.506,0.996,0,11.785172,6,4.5 +20765,1,0.162526,4,0,0,1,2,,4,4,N M 53,,4210208,3.324,3.487,0,,0.8,7.5 +24785,0,0.789944,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.958644,0.15,4 +25001,0,0.519382,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.465164,0.15,4 +25675,0,0.368456,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.842941,0.15,4 +25875,0,0.45302,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.872477,0.15,4 +25879,0,0.384072,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.217733,0.15,4 +28119,0,0.625656,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.015749,0.15,4 +28125,0,0.90062,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,21.614871,0.15,4 +28133,0,0.47557,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.413685,0.15,4 +28159,0,0.745517,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.892418,0.15,4 +28165,0,0.448907,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.773777,0.15,4 +28274,0,0.519305,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.46331,0.15,4 +28622,0,0.190878,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.581084,0.15,4 +28626,0,0.56498,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.559531,0.15,4 +28651,0,0.251766,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.042394,0.15,4 +28659,0,0.190645,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.575487,0.15,4 +28672,0,0.359529,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.628701,0.15,4 +28685,0,0.45896,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.01503,0.15,4 +28687,0,0.348523,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.364549,0.15,4 +28696,0,0.493539,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.844937,0.15,4 +28710,0,0.262447,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.298735,0.15,4 +28716,0,0.437951,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.510835,0.15,4 +28924,0,0.344052,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.257258,0.15,4 +29147,0,0.46487,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.156884,0.15,4 +29655,0,0.50264,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.063369,0.15,4 +30212,0,0.525884,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.621225,0.15,4 +3965,0,0.440111,2,2,1,2,4,,3,4,Hoover,Rd,798909,5.558,5.998,0,10.562671,6,4.5 +4016,1,0.553713,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,11.649,12.203,0,13.289117,3.7,5 +4490,0,0.16195,1,1,0,2,4,,3,4,Hayes,Rd,801010,2.04,2.202,0,3.8868,6,4.5 +4518,0,0.29137,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.526,7.818,0,6.992879,5,5 +4530,0,0.390254,2,2,1,2,4,,3,4,Ryan,Rd,799302,5.703,6.093,0,9.366101,6,4.5 +4695,0,0.446472,2,2,1,2,3,,3,4,Dequindre,Rd,799402,5.613,6.06,0,10.715336,5,5 +4811,0,0.372309,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,5.744,6.116,0,8.935412,5,5 +4936,0,0.539668,1,1,0,2,5,,3,4,Masonic,Blvd,802703,1.999,2.539,0,12.952028,8,4.5 +4990,1,0.331683,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.771,6.103,0,7.960401,5,5 +5022,0,0.519751,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.595,6.115,0,12.474031,5,5 +5157,-1,0.203445,0,2,0,2,5,,3,4,11 Mile,Rd,803209,2.826,3.029,0,4.882683,8,4.5 +5199,1,0.238033,2,0,0,2,5,,3,4,11 Mile,Rd,803208,2.701,2.939,0,5.712802,8,4.5 +5258,0,0.236905,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.437,2.674,0,5.685711,6,4.5 +5393,0,0.376284,2,2,1,2,4,,3,4,Chicago,Rd,804109,2.739,3.115,0,9.030822,6,4.5 +5569,0,0.484372,2,2,1,2,4,,4,4,17 Mile,Rd,805203,2.523,3.007,0,11.624935,4.5,4.5 +5618,0,0.255129,1,1,0,2,3,,4,4,18 Mile,Rd,805207,2.758,3.013,0,6.123103,3.7,5 +5732,1,0.571195,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,2.254,2.825,0,13.708687,3.7,5 +5841,1,0.331442,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,6.768,7.099,0,7.954614,5,5 +5968,0,0.490145,2,2,1,2,4,,4,4,15 Mile,Rd,803605,2.536,3.026,0,11.763479,4.5,4.5 +6763,0,0.480761,2,2,1,2,3,,3,4,12 Mile,Rd,803401,2.218,2.698,0,11.538275,5,5 +6966,0,0.680924,1,1,0,2,5,,3,4,Chicago,Rd,804109,3.919,4.6,0,16.342172,8,4.5 +19342,-1,0.270555,0,4,0,1,1,,3,4,W I 696,,1740308,2.732,3.003,0,,0.58,7 +19370,1,0.175176,2,0,0,1,1,ROF,3,4,E I 696/M 53,RAMP,1740203,0,0.175,0,,2.24,5 +19382,1,0.631377,4,0,0,1,1,,3,4,E I 696,,1740201,2.94,3.572,0,,0.58,7 +26376,0,0.101592,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.438197,0.15,4 +27557,0,0.520292,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.487003,0.15,4 +28718,0,0.284639,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.831337,0.15,4 +28719,0,0.477694,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.464646,0.15,4 +28727,0,0.550667,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.216001,0.15,4 +28728,0,0.568263,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.638315,0.15,4 +28730,0,0.253383,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.081194,0.15,4 +28732,0,0.26367,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.328084,0.15,4 +28737,0,0.514225,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.341404,0.15,4 +28740,0,0.441511,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.596267,0.15,4 +28741,0,0.433413,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.401906,0.15,4 +28744,0,0.372277,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.934656,0.15,4 +28751,0,0.486216,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.669185,0.15,4 +28753,0,0.463614,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.126728,0.15,4 +28755,0,0.248872,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.972934,0.15,4 +28757,0,0.447475,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.739399,0.15,4 +28758,0,0.442513,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.62032,0.15,4 +28761,0,0.094772,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.274534,0.15,4 +28762,0,0.25159,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.038149,0.15,4 +28767,0,0.368115,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.834765,0.15,4 +28830,0,0.547673,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.144142,0.15,4 +29651,0,0.494305,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.863321,0.15,4 +29652,0,0.516411,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.393868,0.15,4 +29653,0,0.557773,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.38655,0.15,4 +29711,0,0.574748,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.793943,0.15,4 +4429,0,0.277433,2,2,1,2,3,,3,4,Dequindre,Rd,799402,3.398,3.675,0,6.658387,5,5 +4551,0,0.4744,2,2,1,2,4,,3,4,Ryan,Rd,799302,2.538,3.012,0,11.385602,6,4.5 +4895,0,0.503692,2,2,1,2,4,,3,4,Ryan,Rd,799302,3.536,4.04,0,12.088616,6,4.5 +5000,1,0.539109,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,3.492,4.031,0,12.938616,5,5 +5162,-1,0.40087,0,2,0,2,5,,3,4,11 Mile,Rd,803209,1.152,1.553,0,9.620871,8,4.5 +5204,1,0.382538,2,0,0,2,5,,3,4,11 Mile,Rd,803208,1.182,1.564,0,9.18091,8,4.5 +5264,0,0.361934,2,2,1,2,4,,3,4,10 Mile,Rd,803101,0.627,0.989,0,8.686424,6,4.5 +5388,1,0.506879,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,8.84,9.346,0,12.165104,5,5 +5476,0,0.362229,1,1,0,2,4,,3,4,Chicago,Rd,804109,0.998,1.36,0,8.693491,6,4.5 +5489,0,0.503746,2,2,0,2,3,,3,4,13 Mile,Rd,805105,0.936,1.44,0,12.089906,5,5 +6440,0,0.499238,1,1,0,2,5,,3,4,Stephens,Rd,806307,0.499,0.998,0,11.981701,8,4.5 +6848,0,0.415327,2,2,1,2,3,,3,4,12 Mile,Rd,803401,0.925,1.34,0,9.967838,5,5 +19344,-1,0.98923,0,4,0,1,1,,3,4,W I 696,,1740308,0.915,1.904,0,,0.58,7 +19385,1,0.947915,4,0,0,1,1,,3,4,E I 696,,1740201,0.926,1.874,0,,0.58,7 +25098,0,0.543576,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.04583,0.15,4 +25800,0,0.561367,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.472807,0.15,4 +28769,0,0.50131,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.031448,0.15,4 +28775,0,0.241299,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.791183,0.15,4 +28783,0,0.575291,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.806972,0.15,4 +28785,0,0.513106,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.314544,0.15,4 +28786,0,0.458086,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.994061,0.15,4 +28791,0,0.495771,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.898507,0.15,4 +28793,0,0.501309,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.031423,0.15,4 +29913,0,0.519527,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.468658,0.15,4 +76,-1,0.144849,0,3,0,2,5,,3,3,Progress,Dr,607607,1.31,1.455,0,3.476374,8,4.5 +3289,0,0.478922,1,1,0,2,5,,3,3,Lincoln,,651908,4.405,4.883,0,11.494119,8,4.5 +4172,0,0.110005,2,2,1,2,3,,3,4,Dequindre,Rd,799402,2.494,2.604,0,2.640119,5,5 +5168,-1,0.304516,0,2,0,2,5,,3,4,W I 696 Service Drive,,803209,0.138,0.442,0,7.308376,8,4.5 +5210,1,0.174687,3,0,0,2,5,,3,4,E I 696 Service Drive,,803208,0,0.175,0,4.192479,8,4.5 +5266,0,0.486388,2,2,1,2,4,,3,4,10 Mile,Rd,803101,0,0.486,0,11.673308,6,4.5 +6859,0,0.498988,1,1,0,2,5,,3,4,Stephens,Rd,806307,0,0.499,0,11.975721,8,4.5 +6940,0,0.130059,2,2,1,2,4,,3,4,11 Mile,Rd,805404,0,0.13,0,3.121406,6,4.5 +19330,1,0.185721,1,0,0,1,1,ROF,3,4,W I 696/Dequindre,RAMP,1740309,0,0.186,0,,2.24,5 +19346,-1,0.358077,0,4,0,1,1,,3,4,W I 696,,1740308,0,0.358,0,,0.58,7 +19387,1,0.392331,4,0,0,1,1,,3,4,E I 696,,1740201,0,0.392,0,,0.58,7 +19464,1,0.333207,4,0,0,1,1,,3,3,E I 696,,1903903,5.869,6.202,0,,0.58,7 +19698,-1,0.362231,0,4,0,1,1,,3,3,W I 696,,1904002,5.852,6.214,0,,0.58,7 +26860,0,0.461077,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.065852,0.15,4 +27461,0,0.405471,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.731302,0.15,4 +27545,0,0.252747,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.065929,0.15,4 +28788,0,0.479964,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.519134,0.15,4 +28789,0,0.53209,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.770152,0.15,4 +28797,0,0.23941,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.745837,0.15,4 +64,0,0.182301,1,1,0,2,5,,3,3,10 Mile,Rd,607703,0.714,0.896,0,4.375225,8,4.5 +69,1,0.139437,2,0,0,2,5,,3,3,Heights,Dr,607610,0.903,1.042,0,3.34648,8,4.5 +77,-1,0.425362,0,3,0,2,5,,3,3,Progress,Dr,607607,0.885,1.31,0,10.208696,8,4.5 +1205,0,0.504774,2,2,1,2,5,,3,3,Woodward Heights,Blvd,644905,2.34,2.844,0,12.114577,8,4.5 +2311,0,0.506626,1,1,0,2,5,,3,3,Couzens,,647006,0,0.507,0,12.15903,8,4.5 +2388,-1,0.102037,0,1,0,2,5,,3,3,E I 696 Service Drive/10 Mile,Ramp,646802,0,0.102,0,2.448887,8,4.5 +2840,1,0.113001,1,0,0,2,5,,3,3,10 Mile/W I 696 Service Drive,RAMP,660108,0.125,0.238,0,2.712027,8,4.5 +4768,0,0.381464,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.643,2.025,0,9.155125,5,5 +19465,1,0.607155,4,0,0,1,1,,3,3,E I 696,,1903903,5.262,5.869,0,,0.58,7 +19699,-1,0.611461,0,4,0,1,1,,3,3,W I 696,,1904002,5.241,5.852,0,,0.58,7 +27548,0,0.320127,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.68304,0.15,4 +27549,0,0.479265,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.502356,0.15,4 +442,0,0.012576,2,2,1,2,5,,3,3,Woodward Heights,Blvd,644905,2.327,2.34,0,0.301817,8,4.5 +71,1,0.084922,2,0,0,2,5,,3,3,Heights,Dr,607610,0.725,0.81,0,2.038117,8,4.5 +79,-1,0.076438,0,3,0,2,5,,3,3,Progress,Dr,607607,0.687,0.763,0,1.834514,8,4.5 +2307,0,0.107074,1,1,0,2,5,,3,3,Couzens,,647006,0.714,0.821,0,2.569782,8,4.5 +2831,0,0.065444,1,1,0,2,5,,3,3,Lincoln,,651908,4.339,4.405,0,1.570659,8,4.5 +29971,0,0.043,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.031992,0.15,4 +19395,1,0.155362,1,0,0,1,1,RON,3,3,Couzens/W I 696,RAMP,1738810,0,0.155,0,,1.09,4 +19396,1,0.122189,1,0,0,1,1,ROF,3,3,E I 696/Couzens,RAMP,1738809,0,0.122,0,,2.24,5 +70,1,0.092981,2,0,0,2,5,,3,3,Heights,Dr,607610,0.81,0.903,0,2.231548,8,4.5 +78,-1,0.121999,0,3,0,2,5,,3,3,Progress,Dr,607607,0.763,0.885,0,2.92797,8,4.5 +2309,0,0.057865,2,2,0,2,5,,3,3,Couzens,,647006,0.546,0.603,0,1.388762,8,4.5 +2310,0,0.039078,2,2,0,2,5,,3,3,Couzens,,647006,0.507,0.546,0,0.937873,8,4.5 +2308,0,0.110154,1,1,0,2,5,,3,3,Couzens,,647006,0.603,0.714,0,2.643696,8,4.5 +2306,0,0.202526,1,1,0,2,5,,3,3,Couzens,,647006,0.821,1.023,0,4.86063,8,4.5 +27547,0,0.068867,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.652815,0.15,4 +4447,0,0.070222,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.521,1.591,0,1.685334,5,5 +4173,0,0.05239,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.591,1.643,0,1.257366,5,5 +61,0,0.201911,1,1,0,2,5,,3,3,10 Mile,Rd,607703,1.03,1.232,0,4.845853,8,4.5 +68,1,0.337692,4,0,0,2,5,,3,3,Heights,Dr,607610,1.042,1.38,0,8.104619,8,4.5 +4446,0,0.469444,2,2,1,2,3,,3,4,Dequindre,Rd,799402,2.025,2.494,0,11.266657,5,5 +19389,1,0.146997,1,0,0,1,1,ROF,3,3,E I 696/Dequindre,RAMP,1738908,0,0.147,0,,2.24,5 +19394,1,0.190584,1,0,0,1,1,RON,3,3,Dequindre/W I 696,RAMP,1738901,0,0.191,0,,1.09,4 +62,0,0.061621,1,1,0,2,5,,3,3,10 Mile,Rd,607703,0.968,1.03,0,1.478911,8,4.5 +2770,1,0.124606,1,0,0,2,5,,3,3,10 Mile/W I 696 Service Drive,Ramp,660108,0,0.125,0,2.99055,8,4.5 +63,0,0.072067,1,1,0,2,5,,3,3,10 Mile,Rd,607703,0.896,0.968,0,1.729601,8,4.5 +67,1,0.152763,3,0,0,2,5,,3,3,Heights,Dr,607610,1.38,1.532,0,3.666309,8,4.5 +4162,0,0.134283,2,2,1,2,3,,3,4,Dequindre,Rd,799402,3.02,3.154,0,3.222793,5,5 +20098,0,0.574,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,9.984,10.558,0,13.776007,6,4.5 +25097,0,0.535383,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.849197,0.15,4 +28446,0,0.527913,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.669907,0.15,4 +27543,0,0.253279,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.078689,0.15,4 +4755,0,0.27014,2,2,1,2,3,,3,4,Dequindre,Rd,799402,2.604,2.874,0,6.483371,5,5 +75,-1,0.06391,0,3,0,2,5,,3,3,Progress,Dr,607607,1.455,1.519,0,1.533848,8,4.5 +5170,-1,0.080367,0,3,0,2,5,,3,4,W I 696 Service Drive,,803209,0,0.08,0,1.928811,8,4.5 +5169,-1,0.057477,0,3,0,2,5,,3,4,W I 696 Service Drive,,803209,0.08,0.138,0,1.37945,8,4.5 +4438,0,0.145856,2,2,1,2,3,,3,4,Dequindre,Rd,799402,2.874,3.02,0,3.500533,5,5 +4745,0,0.243999,2,2,1,2,3,,3,4,Dequindre,Rd,799402,3.154,3.398,0,5.855969,5,5 +24862,0,0.515182,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.364371,0.15,4 +28790,0,0.25288,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.069126,0.15,4 +28792,0,0.251228,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.029465,0.15,4 +5265,0,0.140653,2,2,1,2,4,,3,4,10 Mile,Rd,803101,0.486,0.627,0,3.375673,6,4.5 +3872,0,0.470841,2,2,1,2,4,,3,4,Ryan,Rd,799302,3.065,3.536,0,11.300186,6,4.5 +5164,-1,0.078692,0,2,0,2,4,,3,4,11 Mile,Rd,803209,0.691,0.77,0,1.888614,6,4.5 +5205,1,0.422813,2,0,0,2,4,,3,4,11 Mile,Rd,803208,0.759,1.182,0,10.147502,6,4.5 +19329,1,0.219876,1,0,0,1,1,ROF,3,4,W I 696/11 Mile,RAMP,1740310,0,0.22,0,,2.24,5 +19345,-1,0.557388,0,4,0,1,1,,3,4,W I 696,,1740308,0.358,0.915,0,,0.58,7 +19371,1,0.182731,1,0,0,1,1,RON,3,4,11 Mile/E I 696,RAMP,1740202,0,0.183,0,,1.09,4 +19386,1,0.533942,4,0,0,1,1,,3,4,E I 696,,1740201,0.392,0.926,0,,0.58,7 +28784,0,0.476929,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.446295,0.15,4 +28794,0,0.511697,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.280726,0.15,4 +5166,-1,0.116379,0,2,0,2,5,,3,4,W I 696 Service Drive,,803209,0.466,0.582,0,2.793093,8,4.5 +5208,1,0.388572,2,0,0,2,5,,3,4,E I 696 Service Drive,,803208,0.221,0.61,0,9.325717,8,4.5 +6504,1,0.106302,2,0,0,2,4,,3,4,11 Mile,Rd,805404,0.264,0.37,0,2.55125,6,4.5 +6922,1,0.206962,2,0,0,2,4,,3,4,11 Mile,Rd,805405,0,0.207,0,4.967082,6,4.5 +19388,1,0.207263,1,0,0,1,1,RON,3,4,Dequindre/E I 696,RAMP,1740110,0,0.207,0,,1.09,4 +5209,1,0.046755,3,0,0,2,5,,3,4,E I 696 Service Drive,,803208,0.175,0.221,0,1.122123,8,4.5 +6512,1,0.079251,2,0,0,2,4,,3,4,11 Mile,Rd,805404,0.157,0.236,0,1.902028,6,4.5 +6929,0,0.026769,2,2,1,2,4,,3,4,11 Mile,Rd,805404,0.13,0.157,0,0.642446,6,4.5 +5167,-1,0.023284,0,2,0,2,5,,3,4,W I 696 Service Drive,,803209,0.442,0.466,0,0.558818,8,4.5 +6923,1,0.027655,2,0,0,2,4,,3,4,11 Mile,Rd,805404,0.236,0.264,0,0.663731,6,4.5 +5633,1,0.02984,1,0,0,2,4,,3,4,Service Drive/ 11 Mile Cutoff,,805403,0,0.03,0,0.716151,6,4.5 +5165,-1,0.109501,0,2,0,2,4,,3,4,11 Mile,Rd,803209,0.582,0.691,0,2.628021,6,4.5 +5207,1,0.09792,2,0,0,2,4,,3,4,11 Mile,Rd,803208,0.61,0.708,0,2.350083,6,4.5 +5206,1,0.051215,2,0,0,2,4,,3,4,11 Mile,Rd,803208,0.708,0.759,0,1.229158,6,4.5 +5163,-1,0.382338,0,2,0,2,4,,3,4,11 Mile,Rd,803209,0.77,1.152,0,9.176119,6,4.5 +4247,0,0.052852,2,2,1,2,4,,3,4,Ryan,Rd,799302,3.012,3.065,0,1.268442,6,4.5 +28782,0,0.263495,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.323869,0.15,4 +3866,0,0.553124,2,2,1,2,4,,3,4,Ryan,Rd,799302,4.502,5.055,0,13.274985,6,4.5 +4382,0,0.546367,2,2,1,2,3,,3,4,Dequindre,Rd,799402,4.493,5.04,0,13.112796,5,5 +5483,0,0.4986,1,1,0,2,4,,3,4,Chicago,Rd,804109,0,0.499,0,11.96639,6,4.5 +5536,0,0.434418,2,2,1,2,3,,3,4,13 Mile,Rd,805105,0,0.434,0,10.426021,5,5 +6860,0,0.270088,2,2,1,2,3,,3,4,12 Mile,Rd,803401,0,0.27,0,6.48211,5,5 +25374,0,0.473733,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.369591,0.15,4 +28798,0,0.516473,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.395349,0.15,4 +28799,0,0.301827,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.243838,0.15,4 +28801,0,0.565662,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.575893,0.15,4 +28806,0,0.546933,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.126386,0.15,4 +2566,0,0.336529,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,21.677,22.014,0,8.076701,5,5 +4709,0,0.47658,2,2,1,2,3,,3,4,Dequindre,Rd,799402,4.017,4.493,0,11.437927,5,5 +28796,0,0.269056,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.457342,0.15,4 +28802,0,0.561003,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.464073,0.15,4 +3234,0,0.177375,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,21.5,21.677,0,4.257011,5,5 +4156,0,0.341668,2,2,1,2,3,,3,4,Dequindre,Rd,799402,3.675,4.017,0,8.200025,5,5 +28795,0,0.253972,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.095327,0.15,4 +28803,0,0.246018,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.904435,0.15,4 +153,0,0.372126,2,2,1,2,3,,3,3,13 Mile,Rd,607408,0,0.372,0,8.931019,5,5 +2248,0,0.393346,2,2,1,2,5,,3,3,Whitcomb,,647603,0.91,1.303,0,9.440297,8,4.5 +4371,0,0.156277,2,2,1,2,3,,3,4,Dequindre,Rd,799402,5.245,5.401,0,3.750652,5,5 +25094,0,0.258013,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.19232,0.15,4 +28285,0,0.564884,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.557226,0.15,4 +29969,0,0.249512,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.988277,0.15,4 +152,0,0.19597,2,2,1,2,3,,3,3,13 Mile,Rd,607408,0.372,0.568,0,4.70327,5,5 +25095,0,0.211155,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.067728,0.15,4 +2249,1,0.161319,2,0,0,2,5,DV2,3,3,Whitcomb,,647603,0.749,0.91,0,3.871645,8,4.5 +20485,-1,0.163227,0,2,0,2,5,DV2,3,3,Whitcomb,,4400514,0.749,0.912,0,3.917449,8,4.5 +4101,0,0.132998,2,2,1,2,3,,3,4,Dequindre,Rd,799402,5.04,5.173,0,3.191955,5,5 +4698,0,0.072584,2,2,1,2,3,,3,4,Dequindre,Rd,799402,5.173,5.245,0,1.742012,5,5 +28768,0,0.265225,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.365407,0.15,4 +4089,0,0.21195,2,2,1,2,3,,3,4,Dequindre,Rd,799402,5.401,5.613,0,5.0868,5,5 +4544,0,0.462545,2,2,1,2,4,,3,4,Ryan,Rd,799302,4.04,4.502,0,11.101087,6,4.5 +6852,0,0.52989,2,2,1,2,3,,3,4,12 Mile,Rd,803401,0.395,0.925,0,12.717349,5,5 +28800,0,0.54941,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.18585,0.15,4 +28804,0,0.520762,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.498281,0.15,4 +28805,0,0.25492,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.118077,0.15,4 +6854,0,0.124677,2,2,1,2,3,,3,4,12 Mile,Rd,803401,0.27,0.395,0,2.992248,5,5 +4539,0,0.2098,2,2,1,2,4,,3,4,Ryan,Rd,799302,5.324,5.534,0,5.035202,6,4.5 +5481,0,0.499461,1,1,0,2,4,,3,4,Chicago,Rd,804109,0.499,0.998,0,11.98706,6,4.5 +5532,0,0.180256,2,2,1,2,3,,3,4,13 Mile,Rd,805105,0.434,0.615,0,4.326141,5,5 +25802,0,0.515485,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.371641,0.15,4 +28765,0,0.09883,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.371924,0.15,4 +4890,0,0.269253,2,2,1,2,4,,3,4,Ryan,Rd,799302,5.055,5.324,0,6.46207,6,4.5 +5528,0,0.321591,2,2,1,2,3,,3,4,13 Mile,Rd,805105,0.615,0.936,0,7.718176,5,5 +4873,0,0.168976,2,2,1,2,4,,3,4,Ryan,Rd,799302,5.534,5.703,0,4.055436,6,4.5 +4901,0,0.026637,2,2,1,2,4,,3,4,Ryan,Rd,799302,2.512,2.538,0,0.639299,6,4.5 +5009,1,0.52702,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,2.297,2.824,0,12.648475,5,5 +5161,-1,0.638135,0,2,0,2,5,,3,4,11 Mile,Rd,803209,1.553,2.191,0,15.315243,8,4.5 +5203,1,0.658655,2,0,0,2,5,,3,4,11 Mile,Rd,803208,1.564,2.223,0,15.80772,8,4.5 +5262,0,0.460538,2,2,1,2,4,,3,4,10 Mile,Rd,803101,1.525,1.985,0,11.052912,6,4.5 +5552,0,0.467381,1,1,0,2,5,,3,4,Stephens,Rd,805007,0.339,0.806,0,11.21714,8,4.5 +6688,0,0.307439,1,1,0,2,5,,3,4,Sherwood,Ave,804507,2.257,2.564,0,7.378525,8,4.5 +6974,1,0.532364,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,10.062,10.594,0,12.776738,5,5 +19326,1,0.168059,2,0,0,1,1,RON,3,4,S Mound/ W I 696,RAMP,1740401,0.46,0.628,0,,1.09,4 +19343,-1,0.828247,0,4,0,1,1,,3,4,W I 696,,1740308,1.904,2.732,0,,0.58,7 +19350,1,0.302027,1,0,0,1,1,RON,3,4,N Mound/E I 696,RAMP,1740305,0,0.302,0,,1.09,4 +19354,1,0.300754,2,0,0,2,5,,3,4,N Mound Service Drive,,1740304,0.066,0.366,0,7.218104,8,4.5 +19355,1,0.350609,2,0,0,2,5,,3,4,S Mound Service Dr/S Mound,Ramp,1740303,0.507,0.858,0,8.414626,8,4.5 +19359,1,0.3329,2,0,0,1,1,ROF,3,4,E I 696/S Mound,RAMP,1740302,0.453,0.786,0,,2.24,5 +19361,1,0.300298,2,0,0,1,1,ROF,3,4,E I 696/S Mound,RAMP,1740302,0,0.3,0,,2.24,5 +19384,1,0.787385,4,0,0,1,1,,3,4,E I 696,,1740201,1.874,2.661,0,,0.58,7 +20800,0,0.26742,1,1,0,2,5,,3,4,Frazho,Rd,4200036,0.752,1.02,0,6.418073,8,4.5 +25433,0,0.50898,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.215527,0.15,4 +26041,0,0.534876,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.837014,0.15,4 +26145,0,0.493299,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.839182,0.15,4 +28773,0,0.512701,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.304818,0.15,4 +28787,0,0.496957,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.926958,0.15,4 +28809,0,0.330919,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.942047,0.15,4 +3887,0,0.253734,2,2,1,2,4,,3,4,Ryan,Rd,799302,1.781,2.035,0,6.089605,6,4.5 +5263,0,0.536329,2,2,1,2,4,,3,4,10 Mile,Rd,803101,0.989,1.525,0,12.871901,6,4.5 +5606,0,0.290472,1,1,0,2,5,,3,4,Stephens,Rd,805007,0,0.29,0,6.971335,8,4.5 +26172,0,0.508525,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.2046,0.15,4 +28810,0,0.257351,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.176418,0.15,4 +4175,0,0.255609,2,2,1,2,4,,3,4,Ryan,Rd,799302,1.526,1.781,0,6.134618,6,4.5 +6856,0,0.188725,1,1,0,2,5,,3,4,Stephens,Rd,806307,0.998,1.187,0,4.529393,8,4.5 +4908,0,0.476807,2,2,1,2,4,,3,4,Ryan,Rd,799302,2.035,2.512,0,11.443357,6,4.5 +5553,0,0.04821,1,1,0,2,5,,3,4,Stephens,Rd,805007,0.29,0.339,0,1.157036,8,4.5 +28811,0,0.255827,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.139842,0.15,4 +20801,0,0.425993,1,1,0,2,5,,3,4,Frazho,Rd,4200036,0.326,0.752,0,10.223822,8,4.5 +25432,0,0.547524,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.140577,0.15,4 +26818,0,0.544731,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.073555,0.15,4 +28776,0,0.48823,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.717509,0.15,4 +28777,0,0.501727,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.041439,0.15,4 +28778,0,0.228496,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.483916,0.15,4 +20802,0,0.326383,1,1,0,2,5,,3,4,Frazho,Rd,4200036,0,0.326,0,7.833191,8,4.5 +28779,0,0.203878,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.893083,0.15,4 +5015,1,0.230347,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,1.797,2.028,0,5.528327,5,5 +5259,0,0.293338,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.144,2.437,0,7.040109,6,4.5 +5616,1,0.507754,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,10.842,11.35,0,12.186092,5,5 +6770,0,0.222854,2,2,0,2,5,,3,4,Sherwood,Ave,804507,1.799,2.022,0,5.348496,8,4.5 +25140,0,0.228279,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.478698,0.15,4 +28885,0,0.381471,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.155303,0.15,4 +3982,1,0.125269,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,2.171,2.297,0,3.006456,5,5 +5649,1,0.085698,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,10.594,10.68,0,2.056761,5,5 +19307,1,0.053602,1,0,0,2,5,,3,4,N Mound/Service Drive,Ramp,1740602,0,0.054,0,1.286445,8,4.5 +4289,1,0.143893,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,2.028,2.171,0,3.453427,5,5 +5260,0,0.136787,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.007,2.144,0,3.282876,6,4.5 +6955,1,0.16197,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,10.68,10.842,0,3.887285,5,5 +5261,0,0.021818,2,2,1,2,4,,3,4,10 Mile,Rd,803101,1.985,2.007,0,0.52362,6,4.5 +28807,0,0.402364,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.656739,0.15,4 +6692,0,0.075881,1,1,0,2,5,,3,4,Sherwood,Ave,804507,2.181,2.257,0,1.821148,8,4.5 +28760,0,0.209943,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.038627,0.15,4 +6695,0,0.158894,1,1,0,2,5,,3,4,Sherwood,Ave,804507,2.022,2.181,0,3.813461,8,4.5 +3977,1,0.419149,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,2.824,3.243,0,10.059572,5,5 +5158,-1,0.388918,0,2,0,2,5,,3,4,11 Mile,Rd,803209,2.437,2.826,0,9.334029,8,4.5 +5159,-1,0.155953,0,2,0,2,5,,3,4,11 Mile,Rd,803209,2.281,2.437,0,3.742882,8,4.5 +5201,1,0.159027,2,0,0,2,5,,3,4,11 Mile,Rd,803208,2.311,2.47,0,3.816649,8,4.5 +5657,1,0.397874,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,9.664,10.062,0,9.548966,5,5 +19306,1,0.343377,1,0,0,2,5,,3,4,11 Mile/N Mound,Ramp,1740603,0,0.343,0,8.241038,8,4.5 +19309,1,0.360537,1,0,0,2,5,,3,4,S Mound/11 Mile,Ramp,1740510,0,0.36,0,8.65288,8,4.5 +19314,1,0.68514,2,0,0,1,1,RON,3,4,S Mound/E I 696,RAMP,1740505,0,0.685,0,,1.09,4 +19323,1,0.312053,2,0,0,1,1,ROF,3,4,W I 696/N Mound,RAMP,1740402,0.384,0.696,0,,2.24,5 +19325,1,0.241209,2,0,0,1,1,ROF,3,4,W I 696/N Mound,RAMP,1740402,0,0.241,0,,2.24,5 +19328,1,0.229463,2,0,0,1,1,RON,3,4,S Mound/ W I 696,RAMP,1740401,0,0.229,0,,1.09,4 +19349,1,0.310333,1,0,0,1,1,RON,3,4,N Mound/E I 696,RAMP,1740305,0.302,0.612,0,,1.09,4 +20760,0,0.124439,1,1,0,2,5,,3,4,Mackersie,Ave,4200036,1.219,1.344,0,2.986525,8,4.5 +26739,0,0.222012,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.328294,0.15,4 +26743,0,0.241715,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.801166,0.15,4 +28808,0,0.05919,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.420548,0.15,4 +29880,0,0.49546,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.89105,0.15,4 +5160,-1,0.089823,0,2,0,2,5,,3,4,11 Mile,Rd,803209,2.191,2.281,0,2.155746,8,4.5 +5202,1,0.088029,2,0,0,2,5,,3,4,11 Mile,Rd,803208,2.223,2.311,0,2.112686,8,4.5 +19311,1,0.38818,2,0,0,1,1,ROF,3,4,W I 696/S Mound,RAMP,1740508,0,0.388,0,,2.24,5 +19312,1,0.38503,2,0,0,1,1,ROF,3,4,E I 696/N Mound,RAMP,1740507,0,0.385,0,,2.24,5 +19313,1,0.546409,2,0,0,1,1,RON,3,4,N Mound/ W I 696,RAMP,1740506,0,0.546,0,,1.09,4 +19353,1,0.379218,2,0,0,2,5,,3,4,N Mound Service Drive,,1740304,0.366,0.745,0,9.101223,8,4.5 +19356,1,0.337374,2,0,0,2,5,,3,4,S Mound Service Drive,,1740303,0.17,0.507,0,8.09697,8,4.5 +19357,1,0.14426,1,0,0,2,5,,3,4,S Mound Service Drive,,1740303,0.026,0.17,0,3.46225,8,4.5 +20799,0,0.113194,1,1,0,2,5,,3,4,Frazho,Rd,4200036,1.02,1.133,0,2.716666,8,4.5 +19360,1,0.152836,1,0,0,1,1,ROF,3,4,E I 696/S Mound,RAMP,1740302,0.3,0.453,0,,2.24,5 +19327,1,0.230797,2,0,0,1,1,RON,3,4,S Mound/ W I 696,RAMP,1740401,0.229,0.46,0,,1.09,4 +19358,1,0.025791,1,0,0,2,5,,3,4,S Mound Service Drive,,1740303,0,0.026,0,0.618991,8,4.5 +20761,0,0.086631,1,1,0,2,5,,3,4,Frazho,Rd,4200036,1.133,1.219,0,2.079146,8,4.5 +19324,1,0.142794,1,0,0,1,1,ROF,3,4,W I 696/N Mound,RAMP,1740402,0.241,0.384,0,,2.24,5 +19352,1,0.102799,1,0,0,2,5,,3,4,N Mound Service Drive,,1740304,0.745,0.848,0,2.467182,8,4.5 +19308,1,0.049906,1,0,0,1,3,RSF,3,4,11 Mile/S Mound,Ramp,1740601,0,0.05,0,,5,5 +19310,1,0.076717,1,0,0,1,3,RSF,3,4,N Mound/11 Mile,Ramp,1740509,0,0.077,0,,5,5 +19351,1,0.026092,1,0,0,2,5,,3,4,N Mound Service Drive,,1740304,0.848,0.874,0,0.626211,8,4.5 +5001,1,0.106282,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,3.243,3.349,0,2.550768,5,5 +6976,1,0.178149,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,9.486,9.664,0,4.27558,5,5 +5658,1,0.140008,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,9.346,9.486,0,3.360203,5,5 +4658,1,0.143312,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,3.349,3.492,0,3.43948,5,5 +5200,1,0.231866,2,0,0,2,5,,3,4,11 Mile,Rd,803208,2.47,2.701,0,5.564786,8,4.5 +6674,0,0.488857,1,1,0,2,5,,3,4,Sherwood,Ave,804507,2.564,3.053,0,11.732568,8,4.5 +19383,1,0.279672,4,0,0,1,1,,3,4,E I 696,,1740201,2.661,2.94,0,,0.58,7 +19348,1,0.083414,1,0,0,1,1,RON,3,4,N Mound/E I 696,RAMP,1740305,0.612,0.696,0,,1.09,4 +6667,0,0.026036,1,1,0,2,5,,3,4,Sherwood,Ave,804507,3.053,3.079,0,0.624861,8,4.5 +4655,1,0.972501,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,4.031,5.003,0,23.340021,5,5 +5398,1,0.5588,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,7.837,8.396,0,13.411198,5,5 +5459,1,0.166363,2,0,0,2,3,DV2,3,4,13 Mile,Rd,805105,1.811,1.977,0,3.992703,5,5 +5474,0,0.686706,1,1,0,2,4,,3,4,Chicago,Rd,804109,1.36,2.046,0,16.480941,6,4.5 +6787,0,0.320471,2,2,1,2,3,,3,4,12 Mile,Rd,803401,1.664,1.985,0,7.691302,5,5 +20694,-1,0.166337,0,2,0,2,3,DV2,3,4,13 Mile,Rd,4204468,0,0.166,0,3.992083,5,5 +26738,0,0.55721,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.373035,0.15,4 +28774,0,0.444626,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.671021,0.15,4 +28812,0,0.685125,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.44301,0.15,4 +28814,0,0.565965,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.583164,0.15,4 +28815,0,0.577143,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.851432,0.15,4 +28817,0,0.291915,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.005959,0.15,4 +29911,0,0.501083,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.026001,0.15,4 +29912,0,0.523313,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.559517,0.15,4 +29914,0,0.519753,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.474064,0.15,4 +29915,0,0.549565,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.189568,0.15,4 +6790,0,0.100401,2,2,1,2,3,,3,4,12 Mile,Rd,803401,1.34,1.44,0,2.40962,5,5 +28781,0,0.540596,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.974308,0.15,4 +28816,0,0.499856,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.99654,0.15,4 +6789,0,0.224251,2,2,1,2,3,,3,4,12 Mile,Rd,803401,1.44,1.664,0,5.38202,5,5 +28770,0,0.262049,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.289166,0.15,4 +5472,0,0.370998,2,2,0,2,3,,3,4,13 Mile,Rd,805105,1.44,1.811,0,8.903961,5,5 +28772,0,0.274469,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.587245,0.15,4 +5783,1,0.444193,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,8.396,8.84,0,10.660639,5,5 +6766,0,0.210873,2,2,1,2,3,,3,4,12 Mile,Rd,803401,2.007,2.218,0,5.060964,5,5 +28780,0,0.612392,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.697418,0.15,4 +28813,0,0.300529,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.212707,0.15,4 +6777,0,0.022078,2,2,0,2,3,,3,4,12 Mile,Rd,803401,1.985,2.007,0,0.529877,5,5 +4648,1,0.287833,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.051,5.339,0,6.908004,5,5 +5399,1,0.077939,2,0,0,2,4,DV2,3,4,Chicago,Rd,804109,2.41,2.488,0,1.870547,6,4.5 +5402,1,0.292942,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,7.53,7.822,0,7.030604,5,5 +5458,0,0.03729,1,1,0,2,4,,3,4,Chicago,Rd,804109,2.354,2.392,0,0.894951,6,4.5 +20689,-1,0.095861,0,2,0,2,4,DV2,3,4,Chicago,Rd,4204468,0.523,0.619,0,2.300654,6,4.5 +4338,1,0.032756,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.003,5.036,0,0.786135,5,5 +5443,1,0.354383,2,0,0,2,4,DV2,3,4,13 Mile,Rd,805105,1.999,2.353,0,8.505189,6,4.5 +20690,-1,0.335174,0,2,0,2,4,DV2,3,4,13 Mile,Rd,4204468,0.188,0.523,0,8.04417,6,4.5 +5454,1,0.021924,2,0,0,2,3,DV2,3,4,13 Mile,Rd,805105,1.977,1.999,0,0.526165,5,5 +20692,-1,0.022046,0,2,0,2,3,DV2,3,4,13 Mile,Rd,4204468,0.166,0.188,0,0.529112,5,5 +5791,1,0.014566,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,7.822,7.837,0,0.349591,5,5 +4991,1,0.014911,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.036,5.051,0,0.357853,5,5 +5453,1,0.018343,1,0,0,2,4,,3,4,Chicago,Rd,804109,2.392,2.41,0,0.440235,6,4.5 +3969,1,0.24337,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.528,5.771,0,5.840885,5,5 +5451,1,0.239835,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,7.099,7.339,0,5.756036,5,5 +5470,0,0.285267,1,1,0,2,4,,3,4,Chicago,Rd,804109,2.069,2.354,0,6.846414,6,4.5 +28724,0,0.248928,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.974268,0.15,4 +28759,0,0.339078,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.137863,0.15,4 +29654,0,0.26939,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.465355,0.15,4 +4330,1,0.189365,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.339,5.528,0,4.544765,5,5 +5797,1,0.190833,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,7.339,7.53,0,4.579993,5,5 +5473,0,0.022692,1,1,0,2,4,,3,4,Chicago,Rd,804109,2.046,2.069,0,0.544602,6,4.5 +5395,0,0.093998,2,2,1,2,4,,3,4,Chicago,Rd,804109,2.645,2.739,0,2.255944,6,4.5 +5396,0,0.156929,2,2,1,2,4,,3,4,Chicago,Rd,804109,2.488,2.645,0,3.766301,6,4.5 +3959,1,0.36066,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,8.114,8.475,0,8.655843,3.7,5 +4082,0,0.458522,2,2,1,2,3,,4,4,Dequindre,Rd,799402,8.083,8.542,0,11.004532,3.7,5 +4194,0,0.532172,2,2,1,2,3,,3,4,14 Mile,Rd,798407,8.998,9.53,0,12.772123,5,5 +4864,0,0.494723,2,2,1,2,4,,4,4,Ryan,Rd,799302,8.112,8.606,0,11.873353,4.5,4.5 +4996,1,0.562868,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,12.922,13.485,0,13.508836,3.7,5 +5651,0,0.440687,1,1,0,2,3,,4,4,18 Mile,Rd,805207,0.973,1.413,0,10.576489,3.7,5 +5740,1,0.561659,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,0.962,1.523,0,13.479814,3.7,5 +5878,1,0.497176,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,4.26,4.757,0,11.932216,3.7,5 +6053,0,0.443717,2,2,1,2,4,,4,4,15 Mile,Rd,803605,0.975,1.418,0,10.649217,4.5,4.5 +6708,0,0.419478,2,2,1,2,4,,4,4,17 Mile,Rd,805203,0.973,1.392,0,10.067477,4.5,4.5 +25091,0,0.505691,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.136572,0.15,4 +25092,0,0.530186,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.724461,0.15,4 +28764,0,0.536688,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.880503,0.15,4 +28818,0,0.512891,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.30938,0.15,4 +28826,0,0.489638,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.751314,0.15,4 +29020,0,0.525055,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.60133,0.15,4 +29612,0,0.490701,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.776824,0.15,4 +29613,0,0.51138,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.273112,0.15,4 +29618,0,0.538666,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.927977,0.15,4 +29859,0,0.503236,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.077652,0.15,4 +29862,0,0.49504,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.880962,0.15,4 +30216,0,0.509941,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.238572,0.15,4 +4160,0,0.343828,2,2,1,2,3,,3,4,14 Mile,Rd,798407,10.122,10.466,0,8.251873,5,5 +4235,1,0.467818,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,13.979,14.447,0,11.22763,3.7,5 +4369,0,0.417888,2,2,1,2,3,,4,4,Dequindre,Rd,799402,6.65,7.068,0,10.029317,3.7,5 +4529,0,0.540885,2,2,1,2,4,,4,4,Ryan,Rd,799302,6.588,7.128,0,12.981235,4.5,4.5 +5752,1,0.462793,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,0,0.463,0,11.107028,3.7,5 +6136,0,0.313244,2,2,1,2,4,,4,4,15 Mile,Rd,803605,0.228,0.541,0,7.517856,4.5,4.5 +27554,0,0.267344,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.41625,0.15,4 +28837,0,0.544065,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.057564,0.15,4 +28840,0,0.521035,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.504849,0.15,4 +28842,0,0.563794,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.531062,0.15,4 +29621,0,0.541868,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.004827,0.15,4 +30217,0,0.23051,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.532235,0.15,4 +702,0,0.415268,2,2,1,2,3,,3,3,14 Mile,Rd,625804,0,0.415,0,9.966437,5,5 +4086,0,0.202837,2,2,1,2,3,,4,4,Dequindre,Rd,799402,6.373,6.576,0,4.8681,3.7,5 +27555,0,0.570627,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.695046,0.15,4 +27556,0,0.510684,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.256409,0.15,4 +2123,0,0.206993,2,2,1,2,3,,3,3,14 Mile,Rd,625804,0.415,0.622,0,4.967829,5,5 +27558,0,0.273164,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.555928,0.15,4 +4370,0,0.313463,2,2,1,2,3,,4,4,Dequindre,Rd,799402,6.06,6.373,0,7.523113,3.7,5 +4694,0,0.074769,2,2,1,2,3,,4,4,Dequindre,Rd,799402,6.576,6.65,0,1.794461,3.7,5 +154,1,0.442118,2,0,0,2,3,DIV,4,3,Big Beaver,Rd,607204,5.567,6.009,0,10.61084,3.7,5 +3770,0,0.556908,2,2,1,2,3,,4,3,Maple,Rd,683906,19.67,20.226,0,13.365801,3.7,5 +4084,0,0.58541,2,2,1,2,3,,4,4,Dequindre,Rd,799402,7.068,7.653,0,14.049839,3.7,5 +21137,-1,0.352694,0,3,0,2,3,DIV,4,3,Big Beaver,Rd,4408243,5.135,5.488,0,8.464664,3.7,5 +27551,0,0.502284,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.054824,0.15,4 +27552,0,0.500232,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.005562,0.15,4 +28841,0,0.532249,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.773983,0.15,4 +29622,0,0.262993,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.311844,0.15,4 +29625,0,0.499716,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.993196,0.15,4 +6146,0,0.228312,2,2,1,2,4,,4,4,15 Mile,Rd,803605,0,0.228,0,5.479485,4.5,4.5 +29623,0,0.511053,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.265261,0.15,4 +4693,0,0.413478,2,2,1,2,3,,4,4,Dequindre,Rd,799402,7.653,8.067,0,9.923477,3.7,5 +4367,0,0.016434,2,2,1,2,3,,4,4,Dequindre,Rd,799402,8.067,8.083,0,0.394422,3.7,5 +4168,0,0.144259,2,2,1,2,3,,3,4,14 Mile,Rd,798407,9.78,9.924,0,3.462222,5,5 +4228,0,0.468784,2,2,1,2,4,,4,4,Ryan,Rd,799302,6.093,6.562,0,11.250819,4.5,4.5 +28838,0,0.487685,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.704443,0.15,4 +28843,0,0.569745,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.673879,0.15,4 +4431,0,0.197983,2,2,1,2,3,,3,4,14 Mile,Rd,798407,9.924,10.122,0,4.75159,5,5 +4440,0,0.25016,2,2,1,2,3,,3,4,14 Mile,Rd,798407,9.53,9.78,0,6.003834,5,5 +28836,0,0.257796,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.187102,0.15,4 +4872,0,0.026035,2,2,1,2,4,,4,4,Ryan,Rd,799302,6.562,6.588,0,0.624838,4.5,4.5 +4336,1,0.479121,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,13.5,13.979,0,11.498903,3.7,5 +4869,0,0.108982,2,2,1,2,4,,4,4,Ryan,Rd,799302,7.566,7.675,0,2.615577,4.5,4.5 +5749,1,0.321816,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,0.463,0.784,0,7.723573,3.7,5 +6123,0,0.133281,2,2,1,2,4,,4,4,15 Mile,Rd,803605,0.541,0.675,0,3.198751,4.5,4.5 +28846,0,0.242568,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.821629,0.15,4 +29619,0,0.497783,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.946788,0.15,4 +29620,0,0.559923,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.438145,0.15,4 +4227,0,0.438127,2,2,1,2,4,,4,4,Ryan,Rd,799302,7.128,7.566,0,10.515059,4.5,4.5 +6093,0,0.300193,2,2,1,2,4,,4,4,15 Mile,Rd,803605,0.675,0.975,0,7.204624,4.5,4.5 +28845,0,0.479342,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.504201,0.15,4 +4527,0,0.415798,2,2,1,2,4,,4,4,Ryan,Rd,799302,7.675,8.091,0,9.979149,4.5,4.5 +5742,1,0.177315,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,0.784,0.962,0,4.255567,3.7,5 +4225,0,0.020714,2,2,1,2,4,,4,4,Ryan,Rd,799302,8.091,8.112,0,0.497127,4.5,4.5 +4652,1,0.015068,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,13.485,13.5,0,0.361624,3.7,5 +4223,0,0.463373,2,2,1,2,4,,4,4,Ryan,Rd,799302,9.112,9.576,0,11.120956,4.5,4.5 +4366,0,0.552546,2,2,1,2,3,,4,4,Dequindre,Rd,799402,9.075,9.628,0,13.26111,3.7,5 +5390,0,0.365473,2,2,1,2,4,,4,4,17 Mile,Rd,805203,0,0.365,0,8.771349,4.5,4.5 +5946,0,0.358915,1,1,0,2,3,,4,4,18 Mile,Rd,805207,0,0.359,0,8.613951,3.7,5 +28275,0,0.535109,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.842623,0.15,4 +28819,0,0.51807,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.433681,0.15,4 +28821,0,0.487948,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.710751,0.15,4 +29614,0,0.48604,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.664959,0.15,4 +1344,0,0.323718,1,1,1,2,4,,4,3,Wattles,Rd,618802,6.58,6.904,0,7.769238,4.5,4.5 +4692,0,0.533735,2,2,1,2,3,,4,4,Dequindre,Rd,799402,8.542,9.075,0,12.809632,3.7,5 +25089,0,0.497906,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.949737,0.15,4 +4691,0,0.405047,2,2,1,2,3,,4,4,Dequindre,Rd,799402,9.675,10.08,0,9.721117,3.7,5 +25088,0,0.508388,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.201309,0.15,4 +4081,0,0.047712,2,2,1,2,3,,4,4,Dequindre,Rd,799402,9.628,9.675,0,1.145092,3.7,5 +4365,0,0.336258,2,2,1,2,3,,4,4,Dequindre,Rd,799402,10.08,10.416,0,8.070192,3.7,5 +4523,0,0.506105,2,2,1,2,4,,4,4,Ryan,Rd,799302,8.606,9.112,0,12.146514,4.5,4.5 +6825,0,0.482144,2,2,1,2,4,,4,4,17 Mile,Rd,805203,0.491,0.973,0,11.571452,4.5,4.5 +28834,0,0.482644,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.583444,0.15,4 +29615,0,0.507892,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.18941,0.15,4 +6696,0,0.125668,2,2,1,2,4,,4,4,17 Mile,Rd,805203,0.365,0.491,0,3.016023,4.5,4.5 +4851,0,0.53359,2,2,1,2,4,,4,4,Ryan,Rd,799302,9.576,10.109,0,12.806168,4.5,4.5 +5563,0,0.500382,1,1,0,2,3,,4,4,18 Mile,Rd,805207,0.472,0.973,0,12.009178,3.7,5 +28847,0,0.501592,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.0382,0.15,4 +28848,0,0.488354,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.720502,0.15,4 +6555,0,0.11348,1,1,0,2,3,,4,4,18 Mile,Rd,805207,0.359,0.472,0,2.723509,3.7,5 +4195,0,0.48096,2,2,1,2,3,,3,4,14 Mile,Rd,798407,8.489,8.97,0,11.543036,5,5 +4207,1,0.483685,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,12.439,12.922,0,11.608429,3.7,5 +4266,1,0.507645,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,6.593,7.101,0,12.183486,3.7,5 +5739,1,0.485257,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,1.523,2.008,0,11.646168,3.7,5 +5845,1,0.453931,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,5.77,6.224,0,10.894343,3.7,5 +6046,0,0.53176,2,2,1,2,4,,4,4,15 Mile,Rd,803605,1.504,2.035,0,12.762249,4.5,4.5 +28763,0,0.520006,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.480151,0.15,4 +28771,0,0.540085,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.96204,0.15,4 +28825,0,0.516861,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.404673,0.15,4 +28831,0,0.497529,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.940694,0.15,4 +28849,0,0.501003,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.024076,0.15,4 +29617,0,0.548572,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.16573,0.15,4 +28833,0,0.501853,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.044462,0.15,4 +4478,0,0.027531,2,2,1,2,3,,3,4,14 Mile,Rd,798407,8.97,8.998,0,0.660749,5,5 +28829,0,0.508911,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.213876,0.15,4 +6047,0,0.08512,2,2,1,2,4,,4,4,15 Mile,Rd,803605,1.418,1.504,0,2.042871,4.5,4.5 +28827,0,0.498975,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.9754,0.15,4 +29860,0,0.519415,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.465966,0.15,4 +4511,0,0.360104,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.871,8.231,0,8.642498,5,5 +4647,1,0.490432,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,6.103,6.593,0,11.770376,3.7,5 +5455,1,0.544106,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,6.224,6.768,0,13.058554,3.7,5 +28850,0,0.501127,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.02706,0.15,4 +4216,0,0.2347,2,2,1,2,3,,3,4,14 Mile,Rd,798407,8.231,8.466,0,5.632791,5,5 +4481,0,0.023236,2,2,1,2,3,,3,4,14 Mile,Rd,798407,8.466,8.489,0,0.557673,5,5 +28832,0,0.261991,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.287779,0.15,4 +28839,0,0.236625,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.678998,0.15,4 +4221,0,0.053728,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.818,7.871,0,1.289483,5,5 +3963,1,0.619619,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,7.101,7.72,0,14.870861,3.7,5 +5456,1,0.556331,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,5.214,5.77,0,13.351936,3.7,5 +5970,0,0.184272,2,2,1,2,4,,4,4,15 Mile,Rd,803605,2.351,2.536,0,4.422521,4.5,4.5 +28852,0,0.499332,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.983979,0.15,4 +6032,0,0.293599,2,2,1,2,4,,4,4,15 Mile,Rd,803605,2.058,2.351,0,7.046377,4.5,4.5 +6038,0,0.022774,2,2,1,2,4,,4,4,15 Mile,Rd,803605,2.035,2.058,0,0.54658,4.5,4.5 +4836,1,0.213593,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,12.203,12.416,0,5.126224,3.7,5 +4983,1,0.372717,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,7.72,8.093,0,8.945217,3.7,5 +5733,1,0.222921,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,2.031,2.254,0,5.350111,3.7,5 +5846,1,0.435963,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,4.778,5.214,0,10.463113,3.7,5 +28828,0,0.277036,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.648859,0.15,4 +28844,0,0.276152,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.627648,0.15,4 +28851,0,0.489843,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.756234,0.15,4 +29861,0,0.508832,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.211957,0.15,4 +4264,1,0.021208,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,8.093,8.114,0,0.508997,3.7,5 +5479,1,0.020794,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,4.757,4.778,0,0.499065,3.7,5 +5735,1,0.022463,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,2.008,2.031,0,0.539112,3.7,5 +4496,1,0.022481,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,12.416,12.439,0,0.539539,3.7,5 +4259,1,0.622695,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,9.117,9.74,0,14.944689,3.7,5 +4977,1,0.23589,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.117,10.353,0,5.661354,3.7,5 +5737,0,0.019521,1,1,0,2,3,,4,4,18 Mile,Rd,805207,1.996,2.015,0,0.46851,3.7,5 +5940,1,0.441222,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,3.313,3.754,0,10.589338,3.7,5 +5956,1,0.437397,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,2.755,3.192,0,10.497517,3.7,5 +6408,0,0.352854,2,2,1,2,4,,4,4,17 Mile,Rd,805203,1.649,2.002,0,8.468486,4.5,4.5 +26136,0,0.54439,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.065358,0.15,4 +28709,0,0.538931,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.934346,0.15,4 +28712,0,0.50748,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.179521,0.15,4 +28822,0,0.517978,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.431467,0.15,4 +28823,0,0.507519,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.180452,0.15,4 +28854,0,0.494833,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.87599,0.15,4 +29649,0,0.565569,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.573647,0.15,4 +6262,0,0.256885,2,2,1,2,4,,4,4,17 Mile,Rd,805203,1.392,1.649,0,6.165243,4.5,4.5 +28824,0,0.523242,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.557809,0.15,4 +6962,0,0.554233,1,1,0,2,3,,4,4,18 Mile,Rd,805207,1.442,1.996,0,13.301601,3.7,5 +28820,0,0.499078,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.977869,0.15,4 +29832,0,0.503307,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.079363,0.15,4 +29833,0,0.514675,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.352189,0.15,4 +28711,0,0.265953,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.382876,0.15,4 +5392,0,0.028625,1,1,0,2,3,,4,4,18 Mile,Rd,805207,1.413,1.442,0,0.686994,3.7,5 +5548,1,0.154724,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,2.6,2.755,0,3.713378,3.7,5 +4979,1,0.64297,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,8.475,9.117,0,15.431276,3.7,5 +5484,0,0.225685,2,2,1,2,4,,4,4,17 Mile,Rd,805203,2.297,2.523,0,5.416445,4.5,4.5 +5534,1,0.506122,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,3.754,4.26,0,12.146925,3.7,5 +28835,0,0.519043,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.457027,0.15,4 +29650,0,0.570888,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.701304,0.15,4 +26859,0,0.278399,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.68158,0.15,4 +29616,0,0.270494,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.491845,0.15,4 +6947,0,0.273739,2,2,1,2,4,,4,4,17 Mile,Rd,805203,2.024,2.297,0,6.569736,4.5,4.5 +6661,0,0.021575,2,2,1,2,4,,4,4,17 Mile,Rd,805203,2.002,2.024,0,0.51781,4.5,4.5 +3954,1,0.376933,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,9.74,10.117,0,9.046384,3.7,5 +6743,0,0.375812,1,1,0,2,3,,4,4,18 Mile,Rd,805207,2.382,2.758,0,9.019496,3.7,5 +28731,0,0.504567,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.109617,0.15,4 +28853,0,0.523725,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.569396,0.15,4 +29647,0,0.276201,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.628824,0.15,4 +29648,0,0.27997,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.719283,0.15,4 +5545,1,0.121139,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,3.192,3.313,0,2.907344,3.7,5 +6833,0,0.367193,1,1,0,2,3,,4,4,18 Mile,Rd,805207,2.015,2.382,0,8.812629,3.7,5 +4253,0,0.498955,2,2,1,2,4,,3,4,Hoover,Rd,798909,3.555,4.054,0,11.974928,6,4.5 +4324,0,0.271763,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,3.54,3.812,0,6.522323,5,5 +4638,0,0.034862,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.485,3.52,0,0.836697,5,5 +4937,0,0.584033,1,1,0,2,5,,3,4,Masonic,Blvd,802703,0.502,1.086,0,14.016802,8,4.5 +5105,0,0.411073,1,1,0,2,5,,3,4,Martin,Rd,803307,1.683,2.094,0,9.865746,8,4.5 +5106,0,0.581446,1,1,0,2,5,,3,4,Martin,Rd,803307,1.102,1.683,0,13.954698,8,4.5 +5149,-1,0.150511,0,2,0,2,5,,3,4,11 Mile,Rd,803209,4.37,4.52,0,3.612255,8,4.5 +5190,1,0.187885,2,0,0,2,5,,3,4,11 Mile,Rd,803208,4.363,4.551,0,4.509245,8,4.5 +5227,0,0.290657,1,1,0,2,5,,3,4,Frazho,Rd,803110,0,0.291,0,6.97577,8,4.5 +5252,0,0.280004,2,2,1,2,4,,3,4,10 Mile,Rd,803101,4.006,4.286,0,6.720087,6,4.5 +5574,0,0.214061,2,2,0,2,5,,3,4,Bunert,Rd,805804,0.816,1.03,0,5.137473,8,4.5 +6537,0,0.336431,2,2,1,2,4,,3,4,13 Mile,Rd,803410,1.094,1.43,0,8.074354,6,4.5 +6614,0,0.455522,1,1,0,2,5,,3,4,Common,Rd,4211479,0.909,1.364,0,10.932537,8,4.5 +6731,0,0.438324,1,1,0,2,5,,3,4,Stephens,Rd,841910,1.305,1.743,0,10.51977,8,4.5 +6744,0,0.595342,2,2,1,2,3,,3,4,12 Mile,Rd,803401,4.024,4.619,0,14.288203,5,5 +19319,1,0.241474,1,0,0,1,1,ROF,3,4,W I 696/Hoover,RAMP,1740406,0,0.241,0,,2.24,5 +19339,-1,0.67788,0,4,0,1,1,,3,4,W I 696,,1740308,4.058,4.736,0,,0.58,7 +19379,1,0.970089,4,0,0,1,1,,3,4,E I 696,,1740201,4.637,5.607,0,,0.58,7 +28646,0,0.147858,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.548588,0.15,4 +28648,0,0.621756,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.922154,0.15,4 +28669,0,0.4987,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.968799,0.15,4 +28750,0,0.519548,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.469158,0.15,4 +28862,0,0.496165,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.907952,0.15,4 +28868,0,0.288843,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.932226,0.15,4 +28873,0,0.255677,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.136251,0.15,4 +28876,0,0.4977,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.94481,0.15,4 +28880,0,0.575975,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.823389,0.15,4 +28886,0,0.488693,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.728626,0.15,4 +28915,0,0.499841,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.996173,0.15,4 +4039,0,0.702396,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,2.279,2.981,0,16.857512,5,5 +4866,0,0.21946,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.288,2.507,0,5.267042,6,4.5 +5109,0,0.5921,1,1,0,2,5,,3,4,Martin,Rd,803307,0,0.592,0,14.210391,8,4.5 +5153,-1,0.396036,0,2,0,2,5,,3,4,11 Mile,Rd,803209,3.446,3.842,0,9.504867,8,4.5 +5194,1,0.390944,2,0,0,2,5,,3,4,11 Mile,Rd,803208,3.479,3.87,0,9.382658,8,4.5 +5254,0,0.28776,2,2,1,2,4,,3,4,10 Mile,Rd,803101,3.212,3.5,0,6.906246,6,4.5 +5504,0,0.285329,1,1,0,2,5,,3,4,Stephens,Rd,841910,0.516,0.802,0,6.8479,8,4.5 +6388,0,0.33799,1,1,0,2,5,,3,4,Lawrence,St,846504,1.247,1.585,0,8.111761,8,4.5 +19340,-1,0.505593,0,4,0,1,1,,3,4,W I 696,,1740308,3.553,4.058,0,,0.58,7 +19381,1,0.463684,4,0,0,1,1,,3,4,E I 696,,1740201,3.572,4.035,0,,0.58,7 +28871,0,0.551985,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.247638,0.15,4 +28890,0,0.345672,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.296136,0.15,4 +28892,0,0.554866,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.316787,0.15,4 +28895,0,0.572742,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.745816,0.15,4 +28896,0,0.381026,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.144613,0.15,4 +4412,0,0.251964,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,1.777,2.029,0,6.047134,5,5 +5255,0,0.284895,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.927,3.212,0,6.837471,6,4.5 +5505,0,0.329599,1,1,0,2,5,,3,4,Lawrence,St,846504,0.503,0.833,0,7.910374,8,4.5 +5690,0,0.284639,1,1,0,2,5,,3,4,Stephens,Rd,841910,0.232,0.516,0,6.831335,8,4.5 +26146,0,0.31168,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.48033,0.15,4 +28754,0,0.337832,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.107967,0.15,4 +28897,0,0.248493,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.963837,0.15,4 +28898,0,0.284525,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.828603,0.15,4 +5056,0,0.168828,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,1.526,1.695,0,4.05188,5,5 +5420,0,0.170114,1,1,0,2,5,,3,4,Lawrence,St,846504,0.333,0.503,0,4.082731,8,4.5 +5689,0,0.231921,1,1,0,2,5,,3,4,Stephens,Dr,841910,0,0.232,0,5.566105,8,4.5 +4731,0,0.082026,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,1.695,1.777,0,1.968613,5,5 +4329,0,0.250374,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,2.029,2.279,0,6.008978,5,5 +5257,0,0.135041,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.674,2.809,0,3.240986,6,4.5 +6892,-1,0.280396,0,2,0,2,5,DV2,3,4,Lawrence,St,846504,0.833,1.113,0,6.729502,8,4.5 +20157,1,0.308873,2,0,0,2,5,DV2,3,4,Lawrence,St,4208281,0,0.309,0,7.412941,8,4.5 +28752,0,0.049917,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.198005,0.15,4 +29186,0,0.324271,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.782495,0.15,4 +6732,-1,0.133781,0,2,0,2,5,DV2,3,4,Lawrence,St,846504,1.113,1.247,0,3.210752,8,4.5 +20156,1,0.106144,2,0,0,2,5,DV2,3,4,Lawrence,St,4208281,0.309,0.415,0,2.547465,8,4.5 +5256,0,0.118069,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.809,2.927,0,2.833665,6,4.5 +28899,0,0.24955,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.989208,0.15,4 +5046,0,0.060215,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,2.981,3.042,0,1.445153,5,5 +5155,-1,0.139284,0,3,0,2,5,,3,4,11 Mile,Rd,803209,3.155,3.295,0,3.342824,8,4.5 +5196,1,0.095455,3,0,0,2,5,,3,4,11 Mile,Rd,803208,3.189,3.284,0,2.290916,8,4.5 +19322,1,0.154687,2,0,0,1,1,RON,3,4,M 53/W I 696,RAMP,1740403,0,0.155,0,,1.09,4 +19341,-1,0.549957,0,4,0,1,1,,3,4,W I 696,,1740308,3.003,3.553,0,,0.58,7 +26369,0,0.518505,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.444115,0.15,4 +5197,1,0.177177,3,0,0,2,5,,3,4,11 Mile,Rd,803208,3.012,3.189,0,4.25225,8,4.5 +5198,1,0.072617,2,0,0,2,5,,3,4,11 Mile,Rd,803208,2.939,3.012,0,1.742804,8,4.5 +6177,0,0.206125,1,1,0,2,5,,3,4,Lawrence,St,846504,1.585,1.791,0,4.946997,8,4.5 +4719,0,0.277436,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,3.248,3.525,0,6.658464,5,5 +5156,-1,0.126666,0,3,0,2,5,,3,4,11 Mile,Rd,803209,3.029,3.155,0,3.039995,8,4.5 +28749,0,0.24271,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.82503,0.15,4 +5044,0,0.206252,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,3.042,3.248,0,4.950043,5,5 +4396,0,0.015188,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,3.525,3.54,0,0.364519,5,5 +28894,0,0.457001,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.968026,0.15,4 +5195,1,0.194543,2,0,0,2,5,,3,4,11 Mile,Rd,803208,3.284,3.479,0,4.669023,8,4.5 +19368,1,0.18627,1,0,0,1,1,RON,3,4,M 53/E I 696,RAMP,1740205,0,0.186,0,,1.09,4 +5154,-1,0.151467,0,2,0,2,5,,3,4,11 Mile,Rd,803209,3.295,3.446,0,3.635196,8,4.5 +19321,1,0.133153,1,0,0,1,1,ROF,3,4,W I 696/M 53,RAMP,1740404,0,0.133,0,,2.24,5 +4356,0,0.238647,1,1,0,2,4,,3,4,Hoover,Rd,798909,1.8,2.039,0,5.727537,6,4.5 +5253,0,0.506999,2,2,1,2,4,,3,4,10 Mile,Rd,803101,3.5,4.006,0,12.167988,6,4.5 +6891,0,0.503444,1,1,0,2,5,,3,4,Stephens,Rd,841910,0.802,1.305,0,12.082654,8,4.5 +28893,0,0.253778,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.090664,0.15,4 +28901,0,0.351846,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.444307,0.15,4 +28902,0,0.357073,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.56974,0.15,4 +4528,0,0.24691,1,1,0,2,4,,3,4,Hoover,Rd,798909,1.543,1.789,0,5.92583,6,4.5 +4680,0,0.01077,1,1,0,2,4,,3,4,Hoover,Rd,798909,1.789,1.8,0,0.258471,6,4.5 +4314,0,0.221061,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.039,2.26,0,5.305465,6,4.5 +4019,0,0.027902,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.26,2.288,0,0.669657,6,4.5 +4428,0,0.061094,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.988,3.049,0,1.466266,6,4.5 +5107,0,0.436887,1,1,0,2,5,,3,4,Martin,Rd,803307,0.665,1.102,0,10.485284,8,4.5 +5152,-1,0.280651,0,2,0,2,5,,3,4,11 Mile,Rd,803209,3.842,4.123,0,6.735633,8,4.5 +5192,1,0.190171,3,0,0,2,5,,3,4,11 Mile,Rd,803208,4.082,4.272,0,4.564111,8,4.5 +19320,1,0.193069,1,0,0,1,1,RON,3,4,Hoover/W I 696,RAMP,1740405,0,0.193,0,,1.09,4 +19366,1,0.172191,1,0,0,1,1,RON,3,4,Hoover/E I 696,RAMP,1740207,0,0.172,0,,1.09,4 +19380,1,0.601686,4,0,0,1,1,,3,4,E I 696,,1740201,4.035,4.637,0,,0.58,7 +26368,0,0.538258,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.918187,0.15,4 +28874,0,0.542404,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.017689,0.15,4 +29881,0,0.325963,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.8231,0.15,4 +5193,1,0.212236,2,0,0,2,5,,3,4,11 Mile,Rd,803208,3.87,4.082,0,5.09367,8,4.5 +28891,0,0.483249,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.597974,0.15,4 +19367,1,0.1506,1,0,0,1,1,ROF,3,4,E I 696/Hoover,RAMP,1740206,0,0.151,0,,2.24,5 +28887,0,0.284493,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.827835,0.15,4 +28888,0,0.27533,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.607922,0.15,4 +5108,0,0.073202,1,1,0,2,5,,3,4,Martin,Rd,803307,0.592,0.665,0,1.756838,8,4.5 +4525,0,0.308725,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.507,2.816,0,7.409403,6,4.5 +5191,1,0.09115,3,0,0,2,5,,3,4,11 Mile,Rd,803208,4.272,4.363,0,2.187598,8,4.5 +4744,0,0.172631,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.816,2.988,0,4.143147,6,4.5 +4592,0,0.256018,2,2,1,2,4,,3,4,Hoover,Rd,798909,3.049,3.305,0,6.144439,6,4.5 +5150,-1,0.129719,0,3,0,2,5,,3,4,11 Mile,Rd,803209,4.24,4.37,0,3.113259,8,4.5 +5151,-1,0.117109,0,3,0,2,5,,3,4,11 Mile,Rd,803209,4.123,4.24,0,2.810612,8,4.5 +4554,0,0.23593,2,2,1,2,4,,3,4,Hoover,Rd,798909,3.32,3.555,0,5.662331,6,4.5 +4283,0,0.014151,2,2,1,2,4,,3,4,Hoover,Rd,798909,3.305,3.32,0,0.339618,6,4.5 +4222,0,0.169421,2,2,1,2,4,,3,4,Hoover,Rd,798909,4.547,4.716,0,4.0661,6,4.5 +5037,0,0.489896,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,4.293,4.782,0,11.757497,5,5 +5500,0,0.451592,1,1,0,2,5,,3,4,Chicago,Rd,804109,3.45,3.902,0,10.838204,8,4.5 +5681,0,0.078863,1,1,0,2,5,,3,4,Kennedy,Cir,4211476,0.251,0.33,0,1.892703,8,4.5 +6135,1,0.246499,2,0,0,2,5,DV2,3,4,Lorraine,Ave,811007,0.503,0.75,0,5.915973,8,4.5 +6544,0,0.538401,2,2,1,2,4,,3,4,13 Mile,Rd,803410,0.556,1.094,0,12.921627,6,4.5 +6624,-1,0.268941,0,2,0,2,5,DV2,3,4,Common,Rd,4211479,0.363,0.632,0,6.454584,8,4.5 +6751,0,0.034149,2,2,1,2,3,,3,4,12 Mile,Rd,803401,3.469,3.503,0,0.819573,5,5 +20748,1,0.268922,2,0,0,2,5,DV2,3,4,Common,Rd,4211478,0.363,0.632,0,6.454117,8,4.5 +37117,1,0.015927,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.132,4.148,0,0.382241,5,5 +28729,0,0.064238,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.541717,0.15,4 +28866,0,0.547345,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.136268,0.15,4 +28904,0,0.594924,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.278175,0.15,4 +28906,0,0.403415,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.68197,0.15,4 +28907,0,0.397469,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.539258,0.15,4 +5041,0,0.012986,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,4.033,4.046,0,0.311655,5,5 +5831,1,0.334195,2,0,0,2,5,DV2,3,4,Lorraine,Blvd,811007,0,0.334,0,8.020673,8,4.5 +6470,0,0.274941,1,1,0,2,5,,3,4,Kennedy,Cir,4211475,0,0.275,0,6.598592,8,4.5 +6759,1,0.267864,2,0,0,2,3,DIV,3,4,12 Mile,Rd,803401,2.929,3.197,0,6.428738,5,5 +37115,0,0.242574,1,1,0,2,5,,3,4,Kennedy,Cir,4211476,0,0.243,0,5.821768,8,4.5 +28743,0,0.311913,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.485904,0.15,4 +4032,0,0.220763,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,3.812,4.033,0,5.298304,5,5 +6760,0,0.031017,2,2,1,2,3,,3,4,12 Mile,Rd,803401,2.698,2.729,0,0.744413,5,5 +28746,0,0.251715,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.041165,0.15,4 +37116,1,0.032372,2,0,0,2,3,,3,4,Utica,Rd,4211434,0,0.032,0,0.776925,5,5 +6144,1,0.160331,2,0,0,2,5,DV2,3,4,Lorraine,Blvd,811007,0.334,0.494,0,3.847951,8,4.5 +6625,-1,0.19363,0,2,0,2,5,DV2,3,4,Common,Rd,4211479,0.157,0.351,0,4.64713,8,4.5 +20749,1,0.194146,2,0,0,2,5,DV2,3,4,Common,Rd,4211478,0.156,0.35,0,4.659506,8,4.5 +28909,0,0.264203,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.340869,0.15,4 +29710,0,0.25731,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.175447,0.15,4 +6062,0,0.008842,1,1,0,2,5,,3,4,Kennedy,Cir,4211476,0.243,0.251,0,0.212214,8,4.5 +37114,0,0.02126,1,1,0,2,5,,3,4,Towne Center,Cir,4211471,0.113,0.134,0,0.510231,8,4.5 +20750,1,0.009004,2,0,0,2,5,DV2,3,4,Common,Rd,4211478,0.147,0.156,0,0.216105,8,4.5 +6627,-1,0.009398,0,2,0,2,5,DV2,3,4,Common,Rd,4211479,0.148,0.157,0,0.225558,8,4.5 +28911,0,0.057993,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.391822,0.15,4 +5788,1,0.008767,2,0,0,2,5,DV2,3,4,Lorraine,Ave,811007,0.494,0.503,0,0.210414,8,4.5 +4020,0,0.057934,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.25,5.308,0,1.390419,5,5 +5124,1,0.284804,2,0,0,2,5,DV2,3,4,Kennedy,Cir,4211476,0.5,0.785,0,6.835308,8,4.5 +5626,1,0.191052,1,0,0,1,3,RSF,3,4,Van Dyke/ Chicago,Ramp,812207,0,0.191,0,,5,5 +6016,1,0.156415,1,0,0,1,3,RSF,3,4,Chicago/ Van Dyke,Ramp,812206,0,0.156,0,,5,5 +6169,0,0.19796,2,2,1,2,4,,3,4,Chicago,Rd,804109,3.252,3.45,0,4.751039,6,4.5 +6549,0,0.451007,1,1,1,2,5,,3,4,13 Mile,Rd,803410,0,0.451,0,10.824165,8,4.5 +20753,-1,0.24733,0,2,0,2,5,DV2,3,4,Kennedy,Cir,4211477,0.196,0.443,0,5.935917,8,4.5 +28739,0,0.583618,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.006827,0.15,4 +29706,0,0.576679,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.840306,0.15,4 +4317,0,0.253138,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,4.791,5.044,0,6.075321,5,5 +28745,0,0.266932,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.406367,0.15,4 +4712,0,0.008354,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,4.782,4.791,0,0.200507,5,5 +4024,0,0.184069,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.044,5.228,0,4.417663,5,5 +5387,0,0.05516,2,2,1,2,4,,3,4,Chicago,Rd,804109,3.115,3.17,0,1.323837,6,4.5 +5629,1,0.119617,1,0,0,1,3,RSF,3,4,Van Dyke/ Chicago,Ramp,812205,0,0.12,0,,5,5 +5036,0,0.02237,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.228,5.25,0,0.536871,5,5 +5385,0,0.063868,2,2,1,2,4,,3,4,Chicago,Rd,804109,3.17,3.234,0,1.532838,6,4.5 +5382,0,0.01841,2,2,1,2,4,,3,4,Chicago,Rd,804109,3.234,3.252,0,0.44185,6,4.5 +4004,0,0.065387,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.53,5.595,0,1.569298,5,5 +28742,0,0.244009,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.856225,0.15,4 +4710,0,0.192007,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.338,5.53,0,4.608173,5,5 +5035,0,0.029762,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.308,5.338,0,0.714287,5,5 +5780,1,0.249758,2,0,0,2,5,DV2,3,4,Lorraine,Ave,811007,0.75,0.999,0,5.994192,8,4.5 +6012,0,0.163879,2,2,1,2,4,,3,4,Rio,Rd,812208,0,0.164,0,3.933095,6,4.5 +29808,0,0.319541,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.668978,0.15,4 +29809,0,0.288305,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.919314,0.15,4 +28905,0,0.059724,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.433369,0.15,4 +6547,0,0.093763,2,2,1,2,4,,3,4,13 Mile,Rd,803410,0.451,0.545,0,2.250304,6,4.5 +4966,0,0.30914,2,2,1,2,4,,3,4,Hoover,Rd,798909,4.054,4.363,0,7.419362,6,4.5 +6615,-1,0.276744,0,2,0,2,5,DV2,3,4,Common,Rd,4211479,0.632,0.909,0,6.641849,8,4.5 +6748,0,0.520816,2,2,1,2,3,,3,4,12 Mile,Rd,803401,3.503,4.024,0,12.499579,5,5 +20747,1,0.277058,2,0,0,2,5,DV2,3,4,Common,Rd,4211478,0.632,0.909,0,6.649403,8,4.5 +28872,0,0.254058,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.097399,0.15,4 +4617,0,0.183333,2,2,1,2,4,,3,4,Hoover,Rd,798909,4.363,4.547,0,4.399984,6,4.5 +3917,0,0.501885,1,1,0,2,5,,3,4,Masonic,Blvd,802703,0,0.502,0,12.045243,8,4.5 +4268,0,0.515121,2,2,1,2,4,,3,4,Hoover,Rd,798909,5.043,5.558,0,12.362904,6,4.5 +6972,0,0.01699,1,1,0,2,5,,3,4,Chicago,Rd,804109,3.902,3.919,0,0.407762,8,4.5 +3924,0,0.327186,2,2,1,2,4,,3,4,Hoover,Rd,798909,4.716,5.043,0,7.852474,6,4.5 +4598,0,0.249508,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,2.251,2.5,0,5.988189,6,4.5 +5128,-1,0.378991,0,2,0,2,5,,3,4,11 Mile,Rd,803209,5.232,5.611,0,9.095784,8,4.5 +5187,1,0.369465,2,0,0,2,5,,3,4,11 Mile,Rd,803208,5.264,5.634,0,8.867164,8,4.5 +5225,0,0.319933,1,1,0,2,5,,3,4,Frazho,Rd,803110,1.002,1.322,0,7.678388,8,4.5 +5250,0,0.317541,2,2,1,2,4,,3,4,10 Mile,Rd,803101,4.996,5.314,0,7.620993,6,4.5 +5305,0,0.261915,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,2.688,2.949,0,6.285967,5,5 +5307,0,0.506017,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,1.84,2.346,0,12.144402,5,5 +5329,0,0.528446,1,1,0,2,5,,3,4,Stephens,Dr,803008,0.056,0.585,0,12.682702,8,4.5 +19338,-1,0.822482,0,4,0,1,1,,3,4,W I 696,,1740308,4.736,5.558,0,,0.58,7 +25689,0,0.366985,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.807628,0.15,4 +25691,0,0.298953,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.174862,0.15,4 +28870,0,0.445942,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.702603,0.15,4 +28879,0,0.333664,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.007941,0.15,4 +28912,0,0.335919,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.062067,0.15,4 +28914,0,0.32399,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.775753,0.15,4 +4045,0,0.26247,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,1.739,2.001,0,6.299279,6,4.5 +5251,0,0.709888,2,2,1,2,4,,3,4,10 Mile,Rd,803101,4.286,4.996,0,17.037303,6,4.5 +6387,0,0.59855,1,1,0,2,5,,3,4,Stephens,Rd,841910,1.743,2.342,0,14.365195,8,4.5 +28859,0,0.418216,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.03719,0.15,4 +28877,0,0.49213,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.811122,0.15,4 +28883,0,0.374129,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.979097,0.15,4 +25141,0,0.23182,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.563679,0.15,4 +28884,0,0.29625,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.110012,0.15,4 +28881,0,0.331375,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.953005,0.15,4 +3869,0,0.101591,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,1.485,1.586,0,2.438187,6,4.5 +5308,0,0.116797,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,1.723,1.84,0,2.803119,5,5 +5309,0,0.110776,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,1.612,1.723,0,2.658623,5,5 +5330,1,0.056338,2,0,0,2,5,,3,4,Stephens,Dr,803008,0,0.056,0,1.352101,8,4.5 +4022,0,0.095289,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,1.389,1.485,0,2.28694,6,4.5 +4892,0,0.152602,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,1.586,1.739,0,3.662445,6,4.5 +6176,-1,0.060146,0,2,0,2,5,,3,4,Stephens,Rd,841910,2.342,2.402,0,1.443493,8,4.5 +5057,0,0.249524,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,2.001,2.251,0,5.988576,6,4.5 +4728,0,0.242335,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,2.715,2.957,0,5.816045,6,4.5 +5129,-1,0.342485,0,2,0,2,5,,3,4,11 Mile,Rd,803209,4.89,5.232,0,8.219645,8,4.5 +5188,1,0.338649,2,0,0,2,5,,3,4,11 Mile,Rd,803208,4.926,5.264,0,8.127583,8,4.5 +5226,0,0.711818,1,1,0,2,5,,3,4,Frazho,Rd,803110,0.291,1.002,0,17.083632,8,4.5 +26370,0,0.307751,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.386021,0.15,4 +28863,0,0.496866,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.924776,0.15,4 +28889,0,0.499462,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.987081,0.15,4 +29882,0,0.37078,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.89871,0.15,4 +5189,1,0.374945,2,0,0,2,5,,3,4,11 Mile,Rd,803208,4.551,4.926,0,8.998674,8,4.5 +28878,0,0.323938,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.774511,0.15,4 +28875,0,0.26039,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.249372,0.15,4 +5148,-1,0.36996,0,2,0,2,5,,3,4,11 Mile,Rd,803209,4.52,4.89,0,8.879045,8,4.5 +28869,0,0.323299,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.759179,0.15,4 +5053,0,0.088359,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,2.627,2.715,0,2.120608,6,4.5 +4288,0,0.126477,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,2.5,2.627,0,3.035446,6,4.5 +4500,0,0.221714,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.016,3.238,0,5.32114,5,5 +4840,0,0.059184,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,2.957,3.016,0,1.420413,5,5 +4489,0,0.19777,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.288,3.485,0,4.746474,5,5 +4824,0,0.049561,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.238,3.288,0,1.189465,5,5 +5249,0,0.278812,2,2,1,2,4,,3,4,10 Mile,Rd,803101,5.314,5.592,0,6.691481,6,4.5 +25251,0,0.568008,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.632184,0.15,4 +25252,0,0.026922,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.646117,0.15,4 +5306,0,0.34184,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,2.346,2.688,0,8.204162,5,5 +5248,0,0.221124,2,2,1,2,4,,3,4,10 Mile,Rd,803101,5.592,5.813,0,5.306982,6,4.5 +5126,-1,0.438587,0,4,0,2,5,,3,4,11 Mile,Rd,803209,5.731,6.17,0,10.52609,8,4.5 +5185,1,0.247903,4,0,0,2,5,,3,4,11 Mile,Rd,803208,5.765,6.013,0,5.949682,8,4.5 +5223,0,0.168259,1,1,0,2,5,,3,4,Frazho,Rd,803110,1.455,1.624,0,4.038211,8,4.5 +5304,0,0.462463,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,2.949,3.412,0,11.099104,5,5 +6503,0,0.478312,1,1,0,2,5,,3,4,Bunert,Rd,805804,0,0.478,0,11.479477,8,4.5 +5224,0,0.133187,1,1,0,2,5,,3,4,Frazho,Rd,803110,1.322,1.455,0,3.196485,8,4.5 +28913,0,0.081195,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.948678,0.15,4 +6496,0,0.280683,2,2,0,2,5,,3,4,Bunert,Rd,805804,0.536,0.816,0,6.736389,8,4.5 +19318,1,0.183173,1,0,0,1,1,RON,3,4,M 97/W I 696,RAMP,1740407,0,0.183,0,,1.09,4 +19365,1,0.12988,1,0,0,1,1,ROF,3,4,E I 696/M 97,RAMP,1740208,0,0.13,0,,2.24,5 +5127,-1,0.120152,0,4,0,2,5,,3,4,11 Mile,Rd,803209,5.611,5.731,0,2.883653,8,4.5 +5186,1,0.130938,4,0,0,2,5,,3,4,11 Mile,Rd,803208,5.634,5.765,0,3.14251,8,4.5 +6913,0,0.057458,2,2,0,2,5,,3,4,Bunert,Rd,805804,0.478,0.536,0,1.378982,8,4.5 +28647,0,0.138657,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.327774,0.15,4 +5222,0,0.193677,1,1,0,2,5,,3,4,Frazho,Rd,803110,1.624,1.817,0,4.64825,8,4.5 +28649,0,0.145891,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.501372,0.15,4 +5184,1,0.114375,4,0,0,2,5,,3,4,11 Mile,Rd,803208,6.013,6.127,0,2.744999,8,4.5 +5301,0,0.069162,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,3.507,3.576,0,1.659895,5,5 +6209,1,0.099717,1,0,0,1,3,RSF,3,4,S M 97/E I 696,RAMP,810701,0,0.1,0,,5,5 +6876,1,0.140908,1,0,0,1,3,RSF,3,4,E I 696/S M 97,RAMP,825205,0,0.141,0,,5,5 +5183,1,0.040313,4,0,0,2,5,,3,4,11 Mile,Rd,803208,6.127,6.167,0,0.967517,8,4.5 +5302,0,0.059401,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,3.447,3.507,0,1.425619,5,5 +5303,0,0.035452,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,3.412,3.447,0,0.85084,5,5 +4206,0,0.2253,1,1,0,2,4,,3,4,Hayes,Rd,801010,1.014,1.24,0,5.407204,6,4.5 +4211,0,0.361461,1,1,0,2,5,,3,4,Masonic,Blvd,802703,1.49,1.852,0,8.675073,8,4.5 +4577,0,0.252566,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.507,4.76,0,6.061586,5,5 +5104,0,0.291684,1,1,0,2,4,,3,4,Martin,Rd,803308,0,0.292,0,7.000422,6,4.5 +6521,0,0.583732,2,2,1,2,4,,3,4,13 Mile,Rd,803410,2.081,2.665,0,14.009564,6,4.5 +6605,0,0.449411,1,1,0,2,5,,3,4,Common,Rd,4211479,1.895,2.345,0,10.785874,8,4.5 +6715,0,0.205113,2,2,1,2,3,,3,4,12 Mile,Rd,803401,5.025,5.23,0,4.922705,5,5 +25631,0,0.514745,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.353868,0.15,4 +28857,0,0.26372,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.329277,0.15,4 +28918,0,0.260784,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.258815,0.15,4 +29715,0,0.497033,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.928801,0.15,4 +29717,0,0.512844,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.308262,0.15,4 +4426,0,0.101413,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.029,4.13,0,2.433914,5,5 +6612,0,0.400223,1,1,0,2,5,,3,4,Common,Rd,4211479,1.495,1.895,0,9.605342,8,4.5 +6721,0,0.405775,2,2,1,2,3,,3,4,12 Mile,Rd,803401,4.619,5.025,0,9.738597,5,5 +28670,0,0.499289,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.982928,0.15,4 +28861,0,0.265579,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.373894,0.15,4 +28867,0,0.488817,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.731607,0.15,4 +28864,0,0.269767,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.474401,0.15,4 +28865,0,0.261738,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.281715,0.15,4 +6613,0,0.13128,1,1,0,2,5,,3,4,Common,Rd,4211479,1.364,1.495,0,3.150719,8,4.5 +28860,0,0.248209,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.957005,0.15,4 +4743,0,0.25705,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.772,4.029,0,6.169202,5,5 +4322,0,0.252009,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.52,3.772,0,6.048225,5,5 +4505,0,0.239141,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.268,4.507,0,5.739378,5,5 +4846,0,0.137752,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.13,4.268,0,3.306058,5,5 +4383,0,0.225083,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,5.005,5.23,0,5.401983,5,5 +4583,0,0.404604,1,1,0,2,5,,3,4,Masonic,Blvd,802703,1.086,1.49,0,9.710491,8,4.5 +6523,0,0.595712,2,2,1,2,4,,3,4,13 Mile,Rd,803410,1.486,2.081,0,14.297077,6,4.5 +25253,0,0.566443,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.594634,0.15,4 +28917,0,0.492522,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.820532,0.15,4 +28856,0,0.267183,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.412404,0.15,4 +6528,0,0.055618,2,2,1,2,4,,3,4,13 Mile,Rd,803410,1.43,1.486,0,1.334835,6,4.5 +28725,0,0.087375,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.096999,0.15,4 +4711,0,0.217893,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.787,5.005,0,5.229426,5,5 +4272,0,0.027614,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.76,4.787,0,0.662741,5,5 +4565,0,0.272827,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,5.23,5.503,0,6.547841,5,5 +4262,0,0.240753,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,5.503,5.744,0,5.778083,5,5 +5102,0,0.429213,1,1,0,2,4,,3,4,Martin,Rd,803308,0.49,0.919,0,10.301114,6,4.5 +6600,0,0.521141,1,1,0,2,5,,3,4,Common,Rd,4211479,2.365,2.886,0,12.507392,8,4.5 +6711,0,0.242147,2,2,1,2,3,,3,4,12 Mile,Rd,803401,5.51,5.752,0,5.811533,5,5 +25230,0,0.240924,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.782174,0.15,4 +28671,0,0.338527,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.124639,0.15,4 +29714,0,0.488609,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.726618,0.15,4 +5103,0,0.198214,1,1,0,2,4,,3,4,Martin,Rd,803308,0.292,0.49,0,4.757132,6,4.5 +6714,0,0.279708,2,2,1,2,3,,3,4,12 Mile,Rd,803401,5.23,5.51,0,6.712997,5,5 +6880,0,0.270602,2,2,0,2,5,,3,4,Bunert,Rd,805804,1.03,1.301,0,6.494454,8,4.5 +6873,0,0.237047,2,2,0,2,5,,3,4,Bunert,Rd,805804,1.301,1.538,0,5.689138,8,4.5 +28668,0,0.244511,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.868276,0.15,4 +6603,0,0.019994,1,1,0,2,5,,3,4,Common,Rd,4211479,2.345,2.365,0,0.479851,8,4.5 +28673,0,0.302881,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.269134,0.15,4 +4835,-1,0.181401,0,2,0,2,4,DIV,3,4,Hayes,Rd,801010,0.815,0.997,0,4.353628,6,4.5 +4495,0,0.017771,2,2,0,2,4,,3,4,Hayes,Rd,801010,0.997,1.014,0,0.426514,6,4.5 +4074,0,0.430627,1,1,0,2,4,,3,4,Hayes,Rd,801010,1.526,1.957,0,10.335058,6,4.5 +6506,0,0.06794,2,2,1,2,4,,3,4,13 Mile,Rd,803410,2.665,2.733,0,1.630556,6,4.5 +28144,0,0.492649,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.823574,0.15,4 +28722,0,0.28601,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.864246,0.15,4 +29716,0,0.527032,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.648761,0.15,4 +28916,0,0.271854,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.524496,0.15,4 +3913,0,0.147578,1,1,0,2,5,,3,4,Masonic,Blvd,802703,1.852,1.999,0,3.541874,8,4.5 +28720,0,0.272054,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.529289,0.15,4 +4359,0,0.275838,1,1,0,2,4,,3,4,Hayes,Rd,801010,1.25,1.526,0,6.620103,6,4.5 +6457,0,0.341929,2,2,1,2,4,,3,4,13 Mile,Rd,803410,2.733,3.075,0,8.206289,6,4.5 +4686,0,0.010837,1,1,0,2,4,,3,4,Hayes,Rd,801010,1.24,1.25,0,0.260092,6,4.5 +4825,0,0.08334,1,1,0,2,4,,3,4,Hayes,Rd,801010,1.957,2.04,0,2.000149,6,4.5 +4145,1,0.470319,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,9.964,10.434,0,11.287663,3.7,5 +4311,1,0.21045,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,11.439,11.649,0,5.050806,3.7,5 +4546,0,0.202353,2,2,1,2,3,,3,4,14 Mile,Rd,798407,6.02,6.223,0,4.856481,5,5 +4718,0,0.409368,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,7.722,8.131,0,9.82483,3.7,5 +5400,0,0.425441,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,0.585,1.011,0,10.210579,4.5,4.5 +5516,0,0.590379,1,1,1,2,5,,4,4,Plumbrook,Rd,803610,1.013,1.603,0,14.169106,5.8,4.5 +5723,1,0.486717,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,4.014,4.501,0,11.681201,3.7,5 +5726,1,0.528187,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,3.027,3.555,0,12.676485,3.7,5 +5728,0,0.516497,1,1,0,2,4,,4,4,Utica,Rd,4211434,6.54,7.056,0,12.395923,4.5,4.5 +5879,0,0.529736,2,2,1,2,4,,4,4,15 Mile,Rd,803605,4.284,4.813,0,12.713671,4.5,4.5 +6436,-1,0.028814,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,1.193,1.222,0,0.69153,3.7,5 +6803,0,0.361382,1,1,1,2,4,,4,4,17 Mile,Rd,828307,0.963,1.325,0,8.673175,4.5,4.5 +20815,1,0.028929,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,1.193,1.222,0,0.694292,3.7,5 +27401,0,0.559517,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.428417,0.15,4 +28429,0,0.381471,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.155298,0.15,4 +28766,0,0.584266,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.022374,0.15,4 +28919,0,0.498748,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.969956,0.15,4 +28928,0,0.423249,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.157975,0.15,4 +28930,0,0.241888,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.8053,0.15,4 +28933,0,0.248541,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.96499,0.15,4 +28939,0,0.280482,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.73156,0.15,4 +28940,0,0.595783,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.298782,0.15,4 +29864,0,0.296957,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.126958,0.15,4 +29865,0,0.270498,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.491944,0.15,4 +29906,0,0.509268,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.22244,0.15,4 +4239,0,0.881172,2,2,1,2,3,,3,4,14 Mile,Rd,798407,6.223,7.104,0,21.148131,5,5 +5083,0,0.200932,1,1,1,2,4,,4,4,Maple Lane,Dr,798910,0.792,0.993,0,4.822365,4.5,4.5 +5885,0,0.02103,2,2,1,2,4,,4,4,15 Mile,Rd,803605,3.595,3.616,0,0.504722,4.5,4.5 +6861,-1,0.214596,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,0,0.215,0,5.150308,3.7,5 +20075,1,0.214394,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,0,0.214,0,5.14546,3.7,5 +25371,0,0.622866,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.948793,0.15,4 +28941,0,0.520975,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.503396,0.15,4 +28948,0,0.237099,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.690376,0.15,4 +28949,0,0.509204,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.220901,0.15,4 +28951,0,0.536679,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.880305,0.15,4 +28952,0,0.555391,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.32939,0.15,4 +3996,0,0.337119,3,3,1,2,3,,4,4,Van Dyke,Ave,799108,6.243,6.58,0,8.090846,3.7,5 +4234,0,0.233614,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.176,7.41,0,5.606746,5,5 +4299,0,0.109983,3,3,1,2,3,,4,4,Van Dyke,Ave,799108,6.133,6.243,0,2.639597,3.7,5 +4436,1,0.128331,1,0,0,1,3,RSF,4,4,N M 53/W 14 Mile,RAMP,799107,0,0.128,0,,5,5 +4752,0,0.165492,1,1,0,1,3,RSF,4,4,W 14 Mile/N M 53,RAMP,799104,0,0.166,0,,5,5 +4536,0,0.069305,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.41,7.479,0,1.663319,5,5 +4232,0,0.047191,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.479,7.526,0,1.132587,5,5 +4696,0,0.017878,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,6.115,6.133,0,0.429062,5,5 +5019,0,0.326312,3,3,1,2,3,,4,4,Van Dyke,Ave,799108,6.58,6.906,0,7.831497,3.7,5 +28738,0,0.257912,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.189891,0.15,4 +4537,0,0.072939,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.104,7.176,0,1.750527,5,5 +40279,0,0.263115,2,2,1,2,3,,3,4,12 Mile,Rd,803401,3.197,3.46,0,6.314758,5,5 +6442,-1,0.544695,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,0.215,0.759,0,13.072682,3.7,5 +20120,1,0.578298,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,0.615,1.193,0,13.87915,3.7,5 +28735,0,0.264876,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.357024,0.15,4 +28946,0,0.534424,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.826176,0.15,4 +28947,0,0.583715,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.009155,0.15,4 +28950,0,0.537049,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.889186,0.15,4 +30218,0,0.614557,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.749357,0.15,4 +40277,0,0.246916,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,4.046,4.293,0,5.925995,5,5 +40116,-1,0.516296,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,4416846,0.905,1.421,0,12.391115,3.7,5 +40280,-1,0.200066,0,2,0,2,3,DIV,3,4,12 Mile,Rd,4212085,0,0.2,0,4.801579,5,5 +40115,-1,0.581729,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,4416846,0.324,0.905,0,13.961504,3.7,5 +40278,1,0.200248,2,0,0,2,3,DIV,3,4,12 Mile,Rd,803401,2.729,2.929,0,4.805963,5,5 +5934,0,0.018838,2,2,1,2,4,,4,4,15 Mile,Rd,803605,3.026,3.045,0,0.452108,4.5,4.5 +20515,1,0.40071,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,0.214,0.615,0,9.617031,3.7,5 +5889,0,0.550641,2,2,1,2,4,,4,4,15 Mile,Rd,803605,3.045,3.595,0,13.215375,4.5,4.5 +5730,1,0.184316,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,2.825,3.009,0,4.423584,3.7,5 +6857,-1,0.433952,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,0.759,1.193,0,10.414846,3.7,5 +28733,0,0.236672,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.680129,0.15,4 +28734,0,0.51397,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.335286,0.15,4 +28756,0,0.495473,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.891341,0.15,4 +5727,1,0.018438,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,3.009,3.027,0,0.44251,3.7,5 +4600,0,0.536942,1,1,0,2,4,,4,4,Maple Lane,Dr,798910,0,0.537,0,12.886607,4.5,4.5 +28736,0,0.698137,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.755296,0.15,4 +6958,0,0.272345,2,2,1,2,4,,3,4,Hoover,Rd,804109,4.6,4.872,0,6.536282,6,4.5 +4293,0,0.255186,1,1,1,2,4,,4,4,Maple Lane,Dr,798910,0.537,0.792,0,6.124469,4.5,4.5 +5463,0,0.479645,2,2,1,2,4,,4,4,Dodge Park,Rd,812702,0,0.48,0,11.51147,4.5,4.5 +5882,0,0.259497,2,2,1,2,4,,4,4,15 Mile,Rd,803605,4.024,4.284,0,6.227936,4.5,4.5 +5883,0,0.408344,2,2,1,2,4,,4,4,15 Mile,Rd,803605,3.616,4.024,0,9.800265,4.5,4.5 +6768,0,0.10565,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,0.48,0.585,0,2.535608,4.5,4.5 +3943,1,0.522788,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,10.434,10.956,0,12.5469,3.7,5 +5541,0,0.494824,1,1,1,2,5,,4,4,Plumbrook,Rd,803610,0,0.495,0,11.875766,5.8,4.5 +5725,1,0.458702,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,3.555,4.014,0,11.008856,3.7,5 +5898,0,0.401266,1,1,1,2,4,,4,4,17 Mile,Rd,828307,0.142,0.544,0,9.630384,4.5,4.5 +5907,0,0.173222,1,1,1,2,5,,4,4,Plumbrook,Rd,843902,0.333,0.507,0,4.157317,5.8,4.5 +6174,0,0.369957,1,1,0,2,5,,4,4,16 1/2 Mile,Rd,835704,0.616,0.986,0,8.878967,5.8,4.5 +6524,0,0.215184,1,1,0,2,4,,4,4,18 Mile,Rd,805207,3.545,3.76,0,5.164411,4.5,4.5 +6835,-1,0.626568,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,2.227,2.853,0,15.037624,3.7,5 +6938,0,0.279587,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,2.019,2.298,0,6.710078,4.5,4.5 +20864,1,0.297798,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,2.227,2.525,0,7.147148,3.7,5 +28692,0,0.415727,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.977441,0.15,4 +28700,0,0.498796,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.971094,0.15,4 +29907,0,0.503153,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.075675,0.15,4 +4963,1,0.321657,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,10.956,11.278,0,7.719772,3.7,5 +5863,0,0.267152,1,1,1,2,4,,4,4,17 Mile,Rd,805203,3.196,3.463,0,6.411648,4.5,4.5 +6422,-1,0.897993,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,1.329,2.227,0,21.551837,3.7,5 +6590,0,0.460995,1,1,0,2,5,,4,4,16 1/2 Mile,Rd,835704,0,0.461,0,11.063868,5.8,4.5 +20169,1,0.5077,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,1.719,2.227,0,12.184799,3.7,5 +28954,0,0.409341,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.824178,0.15,4 +28955,0,0.280662,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.735886,0.15,4 +20371,1,0.346255,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,1.373,1.719,0,8.310114,3.7,5 +4615,1,0.141547,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,11.278,11.419,0,3.397119,3.7,5 +40603,1,0.069584,1,0,0,2,9,,3,1,Davison,St,4705657,2.289,2.359,0,1.670017,7,4.5 +20574,1,0.151125,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,1.222,1.373,0,3.626988,3.7,5 +6847,-1,0.107598,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,1.222,1.329,0,2.582356,3.7,5 +4631,1,0.019107,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,11.419,11.439,0,0.458565,3.7,5 +6672,0,0.170369,1,1,1,2,4,,4,4,17 Mile,Rd,805203,3.026,3.196,0,4.088858,4.5,4.5 +5886,0,0.01847,2,2,1,2,4,,4,4,17 Mile,Rd,805203,3.007,3.026,0,0.443291,4.5,4.5 +28943,0,0.256278,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.150663,0.15,4 +28944,0,0.232167,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.572001,0.15,4 +29863,0,0.253017,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.072403,0.15,4 +6482,0,0.155376,1,1,0,2,5,,4,4,16 1/2 Mile,Rd,835704,0.461,0.616,0,3.729012,5.8,4.5 +6294,0,0.086672,1,1,1,2,4,,4,4,17 Mile,Rd,828307,0.056,0.142,0,2.080119,4.5,4.5 +5691,-1,0.075793,0,1,0,2,5,,4,4,Plumbrook,Rd,843902,0.507,0.582,0,1.819026,5.8,4.5 +6727,0,0.055788,1,1,1,2,4,,4,4,17 Mile,Rd,828307,0,0.056,0,1.338905,4.5,4.5 +20695,0,0.033669,1,1,0,2,5,,4,4,Bonnett,Dr,4204233,0,0.034,0,0.808047,5.8,4.5 +6122,0,0.005666,1,1,1,2,4,,4,4,17 Mile,Rd,805203,3.463,3.469,0,0.135976,4.5,4.5 +5906,0,0.333395,1,1,1,2,5,,4,4,Plumbrook,Rd,843902,0,0.333,0,8.001479,5.8,4.5 +6119,0,0.485711,1,1,0,2,4,,4,4,18 Mile,Rd,805207,3.059,3.545,0,11.657063,4.5,4.5 +6409,-1,0.387686,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,2.853,3.241,0,9.304456,3.7,5 +20412,1,0.486606,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,2.758,3.245,0,11.678537,3.7,5 +28698,0,0.389001,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.336031,0.15,4 +28942,0,0.66435,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.944411,0.15,4 +28945,0,0.656578,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.757875,0.15,4 +20630,1,0.233614,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,2.525,2.758,0,5.606731,3.7,5 +5389,0,0.045781,2,2,0,2,3,,4,4,18 Mile,Rd,805207,3.013,3.059,0,1.098742,3.7,5 +6747,-1,0.143346,0,4,0,2,3,DIV,4,4,Van Dyke,Ave,813706,3.241,3.384,0,3.440308,3.7,5 +20076,1,0.079791,4,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,3.245,3.324,0,1.914978,3.7,5 +28956,0,0.643632,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.447156,0.15,4 +5501,0,0.419884,1,1,1,2,4,,4,4,17 Mile,Rd,828307,0.544,0.963,0,10.077222,4.5,4.5 +5521,0,0.518437,1,1,1,2,5,,4,4,Plumbrook,Rd,803610,0.495,1.013,0,12.44248,5.8,4.5 +6685,0,0.258696,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.511,1.77,0,6.208712,4.5,4.5 +28932,0,0.442785,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.626844,0.15,4 +6690,0,0.179587,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.173,1.353,0,4.310091,4.5,4.5 +5377,0,0.142132,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.031,1.173,0,3.411158,4.5,4.5 +6716,0,0.020657,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.011,1.031,0,0.495758,4.5,4.5 +5374,0,0.158287,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.353,1.511,0,3.798877,4.5,4.5 +6949,0,0.116468,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.77,1.886,0,2.795237,4.5,4.5 +6531,0,0.132731,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.886,2.019,0,3.185549,4.5,4.5 +28925,0,0.440884,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.581207,0.15,4 +28926,0,0.045051,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.081219,0.15,4 +37527,-1,0.22119,0,2,0,2,4,DIV,4,4,Utica,Rd,4211012,0,0.221,0,5.308565,4.5,4.5 +37526,1,0.226448,2,0,0,2,4,DIV,4,4,Utica,Rd,4211434,7.369,7.595,0,5.43475,4.5,4.5 +37528,1,0.020589,2,0,0,2,4,,4,4,Dodge Park,Rd,812702,2.739,2.76,0,0.494147,4.5,4.5 +4128,0,0.278696,1,1,0,2,4,,4,4,Hayes,Rd,801010,3.281,3.559,0,6.688695,4.5,4.5 +4255,0,0.489223,2,2,1,2,3,,3,4,14 Mile,Rd,798407,4.974,5.463,0,11.741353,5,5 +4465,0,0.343302,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,6.765,7.108,0,8.23924,3.7,5 +5874,0,0.513643,2,2,1,2,4,,4,4,15 Mile,Rd,803605,5.041,5.555,0,12.327434,4.5,4.5 +6353,0,0.527855,1,1,0,2,4,,4,4,Moravian,Dr,803604,0.25,0.777,0,12.668509,4.5,4.5 +28430,0,0.51762,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.422884,0.15,4 +28920,0,0.415599,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.974376,0.15,4 +28922,0,0.509713,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.233106,0.15,4 +28957,0,0.447926,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.750229,0.15,4 +4476,0,0.417358,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,6.116,6.533,0,10.016599,3.7,5 +4550,0,0.2625,2,2,1,2,3,,3,4,14 Mile,Rd,798407,5.463,5.725,0,6.30001,5,5 +5006,0,0.505898,1,1,0,2,5,,4,4,Red Run,Rd,798902,0.133,0.639,0,12.141562,5.8,4.5 +6357,0,0.141514,1,1,0,2,5,,4,4,Moravian,Dr,803604,0,0.141,0,3.396345,5.8,4.5 +28436,0,0.383039,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.192941,0.15,4 +28938,0,0.307868,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.388836,0.15,4 +4244,0,0.295231,2,2,1,2,3,,3,4,14 Mile,Rd,798407,5.725,6.02,0,7.085539,5,5 +3877,0,0.133333,1,1,0,2,5,,4,4,Red Run,Rd,798902,0,0.133,0,3.199988,5.8,4.5 +4795,0,0.231436,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,6.533,6.765,0,5.55446,3.7,5 +6355,0,0.108112,1,1,0,2,5,,4,4,Moravian,Dr,803604,0.141,0.25,0,2.594677,5.8,4.5 +4040,0,0.509914,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,7.108,7.617,0,12.237947,3.7,5 +5877,0,0.228115,2,2,1,2,4,,4,4,15 Mile,Rd,803605,4.813,5.041,0,5.474754,4.5,4.5 +28935,0,0.592972,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.231325,0.15,4 +28936,0,0.62861,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.086637,0.15,4 +28937,0,0.360544,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.653064,0.15,4 +5048,0,0.104534,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,7.617,7.722,0,2.508817,3.7,5 +4280,0,0.467725,2,2,1,2,3,,3,4,14 Mile,Rd,798407,4.477,4.944,0,11.225405,5,5 +4724,0,0.288228,1,1,0,2,4,,4,4,Hayes,Rd,801010,2.549,2.837,0,6.917479,4.5,4.5 +28201,0,0.502039,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.048928,0.15,4 +28721,0,0.465611,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.174658,0.15,4 +28959,0,0.539153,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.939672,0.15,4 +28715,0,0.278655,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.687718,0.15,4 +4555,0,0.029261,2,2,1,2,3,,3,4,14 Mile,Rd,798407,4.944,4.974,0,0.702253,5,5 +4201,0,0.346944,1,1,0,2,4,,3,4,Hayes,Rd,801010,2.202,2.549,0,8.326652,6,4.5 +4580,0,0.069729,1,1,0,2,5,,3,4,Masonic,Blvd,802703,2.539,2.608,0,1.673491,8,4.5 +4405,0,0.443653,1,1,0,2,4,,4,4,Hayes,Rd,801010,2.837,3.281,0,10.647676,4.5,4.5 +4665,0,0.323434,1,1,0,2,4,,4,4,Hayes,Rd,801010,3.559,3.882,0,7.762417,4.5,4.5 +5873,0,0.482544,2,2,1,2,4,,4,4,15 Mile,Rd,803605,5.555,6.037,0,11.581065,4.5,4.5 +6286,0,0.32926,1,1,0,2,4,,4,4,Moravian,Dr,803604,1.135,1.464,0,7.902249,4.5,4.5 +6328,0,0.258186,1,1,0,2,4,,4,4,Moravian,Dr,803604,0.877,1.135,0,6.196476,4.5,4.5 +28921,0,0.378255,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.07812,0.15,4 +6345,0,0.099848,1,1,0,2,4,,4,4,Moravian,Dr,803604,0.777,0.877,0,2.39635,4.5,4.5 +4165,1,0.425187,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.858,9.283,0,10.204494,3.7,5 +4407,1,0.246913,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,9.044,9.29,0,5.925906,3.7,5 +5488,0,0.314707,1,1,0,2,5,,4,4,Plumbrook,Rd,803610,1.621,1.936,0,7.552963,5.8,4.5 +5718,1,0.428393,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,5.157,5.585,0,10.281436,3.7,5 +5734,0,0.340093,1,1,0,2,4,,4,4,Utica,Rd,4211434,5.734,6.074,0,8.162242,4.5,4.5 +5959,0,0.287537,1,1,0,2,4,,4,4,Clinton River,Rd,820606,4.261,4.548,0,6.900889,4.5,4.5 +6382,0,0.137995,1,2,1,2,4,,4,4,17 Mile,Rd,828307,1.325,1.463,0,3.311892,4.5,4.5 +6779,0,0.545477,1,1,0,2,4,,4,4,Clinton River,Rd,820606,3.32,3.866,0,13.091459,4.5,4.5 +20030,1,0.416981,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,3.695,4.112,0,10.007549,3.7,5 +20676,0,0.201159,2,2,1,2,4,,4,4,Hayes,Rd,4208921,0.726,0.928,0,4.827811,4.5,4.5 +28960,0,0.432694,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.384662,0.15,4 +28961,0,0.43178,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.362729,0.15,4 +28963,0,0.328681,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.888333,0.15,4 +29839,0,0.691235,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.589632,0.15,4 +4736,1,0.513333,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,9.302,9.815,0,12.320003,3.7,5 +4928,1,0.292477,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.373,8.666,0,7.019452,3.7,5 +5720,1,0.524227,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,4.623,5.147,0,12.581447,3.7,5 +5731,0,0.30534,1,1,0,2,4,,4,4,Utica,Rd,4211434,6.094,6.399,0,7.328168,4.5,4.5 +20028,1,0.123488,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,4.314,4.438,0,2.963704,3.7,5 +28931,0,0.267002,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.408039,0.15,4 +28934,0,0.285845,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.860275,0.15,4 +4420,1,0.148407,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,9.815,9.964,0,3.561772,3.7,5 +5722,1,0.12247,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,4.501,4.623,0,2.939269,3.7,5 +6089,0,0.140685,1,1,0,2,4,,4,4,Utica,Rd,4211434,6.399,6.54,0,3.37645,4.5,4.5 +5013,1,0.20266,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.171,8.373,0,4.863848,3.7,5 +20027,1,0.373485,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,4.438,4.811,0,8.963631,3.7,5 +4130,1,0.011547,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,9.29,9.302,0,0.27712,3.7,5 +20026,1,0.02048,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,4.811,4.832,0,0.491521,3.7,5 +3988,1,0.020925,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.15,8.171,0,0.502199,3.7,5 +4395,1,0.01855,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.131,8.15,0,0.445195,3.7,5 +20025,1,0.018691,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,4.832,4.85,0,0.448593,3.7,5 +5719,1,0.009973,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,5.147,5.157,0,0.239357,3.7,5 +4573,1,0.191797,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.666,8.858,0,4.603118,3.7,5 +20029,1,0.202288,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,4.112,4.314,0,4.854911,3.7,5 +5495,0,0.017839,2,2,0,2,5,,4,4,Plumbrook,Rd,803610,1.603,1.621,0,0.428129,5.8,4.5 +6092,0,0.019722,1,1,0,2,4,,4,4,Utica,Rd,4211434,6.074,6.094,0,0.473324,4.5,4.5 +6363,0,0.548057,1,1,0,2,4,,4,4,Clinton River,Rd,820606,2.755,3.303,0,13.15338,4.5,4.5 +20031,1,0.430557,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,3.265,3.695,0,10.33337,3.7,5 +20032,1,0.658661,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,2.606,3.265,0,15.807876,3.7,5 +5966,0,0.017893,1,1,0,2,4,,4,4,Clinton River,Rd,820606,3.303,3.32,0,0.429438,4.5,4.5 +5736,0,0.607029,1,1,0,2,4,,4,4,Utica,Rd,4211434,5.005,5.612,0,14.568685,4.5,4.5 +6094,0,0.122449,1,1,0,2,4,,4,4,Utica,Rd,4211434,5.612,5.734,0,2.938777,4.5,4.5 +20691,0,0.318609,2,2,1,2,4,,4,4,Hayes,Rd,4208921,0,0.319,0,7.646625,4.5,4.5 +28964,0,0.607198,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.572746,0.15,4 +28962,0,0.051194,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.228646,0.15,4 +20679,0,0.224166,2,2,1,2,4,,4,4,Hayes,Rd,4208921,0.502,0.726,0,5.379983,4.5,4.5 +20680,0,0.183826,2,2,1,2,4,,4,4,Hayes,Rd,4208921,0.319,0.502,0,4.411822,4.5,4.5 +5765,0,0.341828,1,1,0,2,5,,4,4,Stadler,Rd,819304,0,0.342,0,8.203862,5.8,4.5 +6064,0,0.365195,1,1,0,2,5,,4,4,Saal,Rd,820810,0.218,0.583,0,8.764679,5.8,4.5 +6350,0,0.395157,1,1,0,2,4,,4,4,Clinton River,Rd,820606,3.866,4.261,0,9.483767,4.5,4.5 +20671,0,0.307068,2,2,1,2,4,,4,4,Hayes,Rd,4208921,1.434,1.741,0,7.369631,4.5,4.5 +28690,0,0.452949,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.870769,0.15,4 +29840,0,0.347647,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.343535,0.15,4 +29905,0,0.731955,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.56692,0.15,4 +6472,0,0.217656,1,1,0,2,5,,4,4,Saal,Rd,820810,0,0.218,0,5.223739,5.8,4.5 +28691,0,0.153544,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.685059,0.15,4 +5857,0,0.150756,1,1,0,2,5,,4,4,Stadler,Rd,819304,0.342,0.493,0,3.618133,5.8,4.5 +20673,0,0.506755,2,2,1,2,4,,4,4,Hayes,Rd,4208921,0.928,1.434,0,12.162124,4.5,4.5 +20666,0,0.180848,2,2,1,2,4,,4,4,Hayes,Rd,4208921,1.762,1.943,0,4.340346,4.5,4.5 +20670,0,0.021129,2,2,1,2,4,,4,4,Hayes,Rd,4208921,1.741,1.762,0,0.507098,4.5,4.5 +4189,0,0.438138,1,1,0,2,4,,4,4,Ryan,Rd,799302,14.767,15.205,0,10.515314,4.5,4.5 +4639,0,0.571578,1,1,0,2,3,,4,4,Dequindre,Rd,799402,14.71,15.282,0,13.717871,3.7,5 +5397,0,0.29992,2,2,1,2,3,,4,4,23 Mile,Rd,807106,2.933,3.233,0,7.198091,3.7,5 +5656,0,0.450048,2,2,0,2,5,,4,4,Utica,Rd,4211434,9.311,9.761,0,10.801146,5.8,4.5 +5867,0,0.465841,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,5.184,5.649,0,11.18019,3.7,5 +5963,0,0.221538,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,3.059,3.28,0,5.316904,4.5,4.5 +6001,0,0.129323,1,1,0,2,4,,4,4,21 Mile,Rd,817708,0.171,0.301,0,3.103757,4.5,4.5 +6037,0,0.446506,1,1,0,2,4,,4,4,Mound,Rd,814501,0.275,0.721,0,10.716142,4.5,4.5 +6148,-1,0.064247,0,4,0,2,3,DIV,3,4,W M 59,,807801,2.922,2.986,0,1.541919,5,5 +6199,-1,2.429343,0,2,0,1,2,,4,4,S M 53,,813706,6.084,8.513,0,,0.8,7.5 +6226,0,0.974876,1,1,0,2,5,,4,4,27 Mile,Rd,819105,0,0.975,0,23.397028,5.8,4.5 +6254,1,0.199695,3,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,2.868,3.068,0,4.792674,3.7,5 +6508,0,0.620482,1,1,0,2,4,,4,4,24 Mile,Rd,815510,3.043,3.664,0,14.891566,4.5,4.5 +6570,1,0.068511,4,0,0,2,3,DIV,3,4,E M 59,,807710,2.923,2.992,0,1.644258,5,5 +6784,0,0.495534,1,1,0,2,4,,4,4,22 Mile,Rd,807104,1.649,2.145,0,11.892812,4.5,4.5 +6827,0,0.066978,1,1,0,2,5,,3,4,Auburn,Rd,807009,3.368,3.435,0,1.607483,8,4.5 +6960,0,0.373652,1,1,1,2,4,,4,4,19 Mile,Rd,805301,2.653,3.027,0,8.967648,4.5,4.5 +20173,0,0.418856,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,4.304,4.722,0,10.052552,4.5,4.5 +20326,-1,0.218074,0,2,0,2,5,DIV,4,4,18 1/2 Mile,Rd,4210492,0.281,0.499,0,5.233783,5.8,4.5 +20502,0,0.569223,2,2,1,2,4,,4,4,Hayes,Rd,4208921,6.463,7.032,0,13.661347,4.5,4.5 +20576,1,2.406942,2,0,0,1,2,,4,4,N M 53,,4210208,6.073,8.48,0,,0.8,7.5 +20633,0,0.324028,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,4.903,5.227,0,7.776668,4.5,4.5 +20672,0,0.533312,1,1,0,2,4,,4,4,Shelby,Rd,4210686,2.481,3.014,0,12.79948,4.5,4.5 +20682,0,0.334325,1,1,0,2,4,,3,4,Cass,Ave,4210686,0.041,0.375,0,8.023812,6,4.5 +20735,-1,0.160133,0,3,0,2,3,DIV,4,4,26 Mile,Rd,4204059,2.037,2.197,0,3.843189,3.7,5 +20767,1,0.186801,2,0,0,2,5,DIV,4,4,18 1/2 Mile,Rd,4210491,0.836,1.023,0,4.483223,5.8,4.5 +24961,0,0.577022,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.848526,0.15,4 +24962,0,0.246804,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.923296,0.15,4 +26933,0,0.392712,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.425077,0.15,4 +28704,0,0.331742,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.961798,0.15,4 +28970,0,0.508078,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.193864,0.15,4 +28978,0,0.504718,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.113232,0.15,4 +28981,0,0.529681,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.712335,0.15,4 +28987,0,0.149953,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.598882,0.15,4 +28988,0,0.669509,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.068226,0.15,4 +28989,0,0.429009,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.296208,0.15,4 +28990,0,0.520734,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.497622,0.15,4 +28993,0,0.36683,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.803931,0.15,4 +29001,0,0.229413,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.505906,0.15,4 +29513,0,0.529705,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.712913,0.15,4 +4199,0,0.377267,1,1,0,2,4,,4,4,Ryan,Rd,799302,12.468,12.846,0,9.054406,4.5,4.5 +4660,0,0.268961,1,1,0,2,3,,4,4,Dequindre,Rd,799402,12.468,12.737,0,6.455064,3.7,5 +4927,1,0.178095,2,0,0,2,4,DIV,4,4,Mound,Rd,799110,12.582,12.76,0,4.274283,4.5,4.5 +5622,1,0.289832,2,0,0,2,4,DIV,4,4,Mound,Rd,812510,0,0.29,0,6.955962,4.5,4.5 +5641,0,0.513793,1,1,0,2,5,,4,4,Dobry,Dr,805309,1.02,1.533,0,12.331032,5.8,4.5 +6164,1,1.168387,3,0,0,1,2,,4,4,E M 59,,807710,0.351,1.519,0,,0.8,7.5 +6402,-1,0.228061,0,1,0,2,5,,4,4,Auburn,Rd,807009,2.244,2.472,0,5.473458,5.8,4.5 +6431,0,0.408509,1,1,0,2,5,,4,4,Utica,Rd,807007,1.079,1.487,0,9.804226,5.8,4.5 +6480,0,0.461386,1,1,0,2,5,,4,4,18 1/2 Mile,Rd,805208,0,0.461,0,11.07327,5.8,4.5 +6569,-1,1.129688,0,3,0,1,2,,4,4,W M 59,,807801,0.39,1.519,0,,0.8,7.5 +6795,0,1.046171,1,1,0,2,4,,4,4,22 Mile,Rd,807104,0,1.046,0,25.108103,4.5,4.5 +6838,0,0.349002,1,1,0,2,4,,4,4,Auburn,Rd,807009,0.996,1.345,0,8.376042,4.5,4.5 +6968,0,0.075523,2,2,1,2,4,,4,4,19 Mile,Rd,805301,0.988,1.064,0,1.812551,4.5,4.5 +20681,0,0.698496,1,1,0,2,4,,4,4,Shelby,Rd,4210686,0.375,1.073,0,16.763895,4.5,4.5 +24915,0,0.39774,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.545754,0.15,4 +28984,0,0.898919,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,21.574056,0.15,4 +28986,0,1.494561,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,35.869469,0.15,4 +29007,0,0.451097,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.826335,0.15,4 +29010,0,0.321192,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.708601,0.15,4 +29012,0,0.516215,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.389152,0.15,4 +29516,0,0.566786,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.602852,0.15,4 +29829,0,0.516961,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.407056,0.15,4 +4210,0,0.503168,2,2,1,2,4,,4,4,Ryan,Rd,799302,11.116,11.619,0,12.07604,4.5,4.5 +4669,0,0.683687,2,2,1,2,3,,4,4,Dequindre,Rd,799402,11.551,12.235,0,16.408484,3.7,5 +6435,0,0.589434,1,1,0,2,5,,4,4,Utica,Rd,807007,0,0.589,0,14.146405,5.8,4.5 +6953,0,0.638194,1,1,0,2,5,,4,4,Dobry,Dr,805309,0.382,1.02,0,15.316657,5.8,4.5 +6969,0,0.487172,1,1,0,2,4,,4,4,19 Mile,Rd,805301,0,0.487,0,11.69212,4.5,4.5 +24912,0,0.508457,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.202962,0.15,4 +29002,0,0.50747,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.179272,0.15,4 +29021,0,0.570747,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.697927,0.15,4 +29022,0,0.530007,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.720164,0.15,4 +4690,0,0.623283,2,2,1,2,3,,4,4,Dequindre,Rd,799402,10.456,11.079,0,14.9588,3.7,5 +4364,0,0.439024,2,2,1,2,3,,4,4,Dequindre,Rd,799402,11.079,11.518,0,10.536569,3.7,5 +4078,0,0.033287,2,2,1,2,3,,4,4,Dequindre,Rd,799402,11.518,11.551,0,0.798894,3.7,5 +343,0,0.08807,2,2,1,2,4,,4,3,South,Blvd,616405,7.925,8.013,0,2.113691,4.5,4.5 +4348,0,0.159257,2,2,1,2,3,,4,4,Dequindre,Rd,799402,12.235,12.394,0,3.822166,3.7,5 +5949,1,0.406389,1,0,0,1,2,ROF,4,4,W M 59/Dequindre,RAMP,807802,0,0.406,0,,2.24,5 +6155,-1,0.389908,0,3,0,1,2,,4,4,W M 59,,807801,0,0.39,0,,0.8,7.5 +6579,1,0.350861,3,0,0,1,2,,4,4,E M 59,,807710,0,0.351,0,,0.8,7.5 +180,1,0.354464,1,0,0,1,2,RON,4,3,Dequindre/W M 59,RAMP,607006,0,0.354,0,,1.09,4 +809,0,0.186276,1,1,1,2,4,,4,3,South,Blvd,616405,7.739,7.925,0,4.470617,4.5,4.5 +1041,1,0.301356,1,0,0,1,2,ROF,4,3,E M 59/Dequindre,RAMP,625510,0,0.301,0,,2.24,5 +3096,1,0.35182,3,0,0,1,2,,4,3,E M 59,,648906,31.489,31.84,0,,0.8,7.5 +3228,-1,0.350334,0,3,0,1,2,,4,3,W M 59,,677208,9.943,10.293,0,,0.8,7.5 +4061,0,0.074317,2,2,1,2,3,,4,4,Dequindre,Rd,799402,12.394,12.468,0,1.783598,3.7,5 +5645,0,0.287912,1,1,0,2,5,,4,4,Dobry,Dr,805309,0.094,0.382,0,6.909898,5.8,4.5 +6193,1,0.267173,1,0,0,1,2,RON,4,4,Dobry/E M 59,RAMP,807709,0,0.267,0,,1.09,4 +6539,0,0.093902,2,2,1,2,5,,4,4,Dobry,Dr,805309,0,0.094,0,2.253645,5.8,4.5 +4503,0,0.178414,2,2,1,2,4,,4,4,Ryan,Rd,799302,10.938,11.116,0,4.281945,4.5,4.5 +6548,0,0.501258,1,1,0,2,4,,4,4,19 Mile,Rd,805301,0.487,0.988,0,12.030184,4.5,4.5 +28713,0,0.505561,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.133465,0.15,4 +28714,0,0.500029,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.000698,0.15,4 +4214,0,0.173221,2,2,1,2,4,,4,4,Ryan,Rd,799302,10.556,10.729,0,4.15731,4.5,4.5 +4845,0,0.208869,2,2,1,2,4,,4,4,Ryan,Rd,799302,10.729,10.938,0,5.012867,4.5,4.5 +4488,0,0.339218,2,2,1,2,4,,4,4,Ryan,Rd,799302,12.129,12.468,0,8.141234,4.5,4.5 +6855,0,0.48986,1,1,0,2,5,,4,4,Utica,Rd,807007,0.589,1.079,0,11.756641,5.8,4.5 +29023,0,0.503296,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.079104,0.15,4 +4823,0,0.510402,2,2,1,2,4,,4,4,Ryan,Rd,799302,11.619,12.129,0,12.249637,4.5,4.5 +4198,0,0.431432,1,1,0,2,4,,4,4,Ryan,Rd,799302,13.613,14.044,0,10.354369,4.5,4.5 +4326,0,0.505503,1,1,0,2,3,,4,4,Dequindre,Rd,799402,13.741,14.246,0,12.132066,3.7,5 +6846,0,0.6267,1,1,1,2,4,,4,4,Auburn,Rd,807009,0.369,0.996,0,15.0408,4.5,4.5 +20058,0,1.035069,1,1,0,2,7,,4,4,Hamlin,Rd,4208566,0,1.035,0,24.841653,6.55,4.5 +25079,0,0.499393,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.985436,0.15,4 +25081,0,0.545244,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.08585,0.15,4 +28994,0,0.831599,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,19.958385,0.15,4 +28995,0,0.55722,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.373281,0.15,4 +29515,0,0.553779,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.290698,0.15,4 +4644,0,0.50032,1,1,0,2,3,,4,4,Dequindre,Rd,799402,13.24,13.741,0,12.007689,3.7,5 +6429,0,0.30364,1,1,1,2,4,,4,4,Auburn,Rd,807009,0,0.304,0,7.28737,4.5,4.5 +4054,0,0.494555,1,1,0,2,3,,4,4,Dequindre,Rd,799402,12.746,13.24,0,11.869331,3.7,5 +4342,0,0.00884,1,1,0,2,3,,4,4,Dequindre,Rd,799402,12.737,12.746,0,0.212168,3.7,5 +5535,0,0.065565,1,1,1,2,4,,4,4,Auburn,Rd,807009,0.304,0.369,0,1.573552,4.5,4.5 +4036,0,0.464651,1,1,0,2,3,,4,4,Dequindre,Rd,799402,14.246,14.71,0,11.151616,3.7,5 +4487,0,0.35758,1,1,0,2,4,,4,4,Ryan,Rd,799302,13.256,13.613,0,8.581929,4.5,4.5 +29004,0,0.502147,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.051537,0.15,4 +4822,0,0.410187,1,1,0,2,4,,4,4,Ryan,Rd,799302,12.846,13.256,0,9.84448,4.5,4.5 +4800,0,0.41681,1,1,0,2,4,,4,4,Ryan,Rd,799302,14.044,14.461,0,10.003451,4.5,4.5 +4469,0,0.305669,1,1,0,2,4,,4,4,Ryan,Rd,799302,14.461,14.767,0,7.336059,4.5,4.5 +28985,0,0.085303,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.047266,0.15,4 +4224,1,0.549227,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,11.125,11.674,0,13.181457,3.7,5 +5634,1,0.242873,2,0,0,2,5,,4,4,Dobry,Dr,805309,2.047,2.289,0,5.828945,5.8,4.5 +5967,1,0.487358,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,1.258,1.745,0,11.696581,3.7,5 +6154,-1,1.006923,0,4,0,1,2,,4,4,W M 59,,807801,1.519,2.526,0,,0.8,7.5 +6578,1,1.197368,4,0,0,1,2,,4,4,E M 59,,807710,1.519,2.716,0,,0.8,7.5 +6851,0,0.127876,1,1,0,2,5,,4,4,Utica,Rd,807007,2.11,2.238,0,3.069021,5.8,4.5 +6951,0,0.494551,1,1,1,2,5,,4,4,Merrill,Rd,813809,0.504,0.998,0,11.869218,5.8,4.5 +6961,0,0.246427,1,1,1,2,4,,4,4,19 Mile,Rd,805301,2.02,2.266,0,5.914244,4.5,4.5 +37529,-1,0.030815,0,1,0,2,4,,4,4,Dodge Park,Rd,4211013,0,0.031,0,0.739549,4.5,4.5 +20568,-1,0.242352,0,2,0,2,5,,4,4,Hall,Rd,4205539,0.559,0.801,0,5.816444,5.8,4.5 +29008,0,0.573774,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.770576,0.15,4 +29013,0,0.599886,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.397275,0.15,4 +4305,1,0.257978,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.867,11.125,0,6.191465,3.7,5 +5564,1,0.272772,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,1.745,2.018,0,6.546526,3.7,5 +5655,1,0.311865,2,0,0,2,4,DIV,4,4,19 Mile,Rd,805301,1.621,1.932,0,7.484751,4.5,4.5 +6970,0,0.068201,1,1,1,2,5,,4,4,18 1/2 Mile,Rd,805208,0.625,0.693,0,1.636813,5.8,4.5 +29018,0,0.279711,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.713053,0.15,4 +29019,0,0.294384,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.065225,0.15,4 +29830,0,0.50199,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.047749,0.15,4 +29831,0,0.521064,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.505528,0.15,4 +6758,0,0.163369,1,1,0,2,5,,4,4,18 1/2 Mile,Rd,805208,0.461,0.625,0,3.920859,5.8,4.5 +6546,1,0.183985,2,0,0,2,4,DIV,4,4,19 Mile,Rd,805301,1.437,1.621,0,4.415632,4.5,4.5 +4623,1,0.062791,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.533,10.596,0,1.506991,3.7,5 +5964,1,0.23727,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,2.018,2.255,0,5.694472,3.7,5 +6550,0,0.339656,1,1,1,2,5,,4,4,18 1/2 Mile,Rd,805208,0.693,1.032,0,8.151737,5.8,4.5 +5558,1,0.128738,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,2.255,2.384,0,3.089703,3.7,5 +20324,1,0.050919,2,0,0,2,3,,4,4,18 1/2 Mile,Rd,4210490,0,0.051,0,1.222065,3.7,5 +6967,0,0.019438,1,1,1,2,4,,4,4,19 Mile,Rd,805301,2,2.02,0,0.466523,4.5,4.5 +3927,1,0.521293,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,11.674,12.196,0,12.511042,3.7,5 +5539,0,0.598233,1,1,0,2,5,,4,4,Utica,Rd,807007,1.487,2.086,0,14.357594,5.8,4.5 +5603,1,0.583246,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,0.675,1.258,0,13.997905,3.7,5 +6950,1,0.252284,2,0,0,2,5,,4,4,Dobry,Dr,805309,1.533,1.786,0,6.054821,5.8,4.5 +20163,1,0.247838,2,0,0,1,2,ROF,4,4,E M 59/Mound,RAMP,4208242,0,0.248,0,,2.24,5 +20164,1,0.26692,2,0,0,1,2,RON,4,4,Mound/W M 59,RAMP,4208241,0,0.267,0,,1.09,4 +20573,-1,0.317644,0,2,0,2,5,,4,4,Hall,Rd,4205539,0,0.318,0,7.623465,5.8,4.5 +29011,0,0.316242,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.589808,0.15,4 +29014,0,0.510093,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.242226,0.15,4 +29015,0,0.516476,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.395415,0.15,4 +29016,0,0.495274,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.88658,0.15,4 +3903,1,0.330309,2,0,0,2,4,DIV,4,4,Mound,Rd,799110,12.252,12.582,0,7.927413,4.5,4.5 +5638,1,0.239077,2,0,0,2,5,,4,4,Dobry,Dr,805309,1.786,2.025,0,5.737851,5.8,4.5 +6004,1,0.329048,2,0,0,2,4,DIV,4,4,Mound,Rd,812510,0.29,0.619,0,7.89714,4.5,4.5 +20571,-1,0.220218,0,2,0,2,5,,4,4,Hall,Rd,4205539,0.318,0.538,0,5.285232,5.8,4.5 +4950,1,0.056065,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,12.196,12.252,0,1.345561,3.7,5 +5998,1,0.056333,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,0.619,0.675,0,1.35199,3.7,5 +6946,1,0.021829,2,0,0,2,5,,4,4,Dobry,Dr,805309,2.025,2.047,0,0.523885,5.8,4.5 +20570,-1,0.021261,0,2,0,2,5,,4,4,Hall,Rd,4205539,0.538,0.559,0,0.510259,5.8,4.5 +6853,0,0.024633,1,1,0,2,5,,4,4,Utica,Rd,807007,2.086,2.11,0,0.591192,5.8,4.5 +5650,0,0.504115,2,2,0,2,5,,4,4,Merrill,Rd,813809,0,0.504,0,12.098765,5.8,4.5 +6541,0,0.387322,1,1,1,2,4,,4,4,19 Mile,Rd,805301,2.266,2.653,0,9.295738,4.5,4.5 +20817,0,0.248649,2,2,1,2,5,,4,4,18 1/2 Mile,Rd,4210491,0.274,0.522,0,5.967572,5.8,4.5 +28706,0,0.332881,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.989133,0.15,4 +29646,0,0.357629,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.583095,0.15,4 +30211,0,0.489035,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.736841,0.15,4 +28708,0,0.020407,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,0.48976,0.15,4 +20519,-1,0.281207,0,2,0,2,5,DIV,4,4,18 1/2 Mile,Rd,4210492,0,0.281,0,6.748956,5.8,4.5 +20577,1,0.31392,2,0,0,2,5,DIV,4,4,18 1/2 Mile,Rd,4210491,0.522,0.836,0,7.534072,5.8,4.5 +28705,0,0.165349,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.968372,0.15,4 +5546,0,0.41423,1,1,0,2,5,,4,4,Merrill,Rd,813809,1.169,1.583,0,9.941515,5.8,4.5 +5905,0,0.498418,1,1,0,2,5,,4,4,Nineteen 1/2 Mile,Rd,843607,0,0.498,0,11.962035,5.8,4.5 +6022,0,0.191379,1,1,1,2,5,,3,4,Utica,Rd,4211434,10.209,10.4,0,4.593097,8,4.5 +6829,0,0.113635,1,1,0,2,5,,3,4,Auburn,Rd,807009,2.915,3.028,0,2.727248,8,4.5 +6941,1,0.298012,2,0,0,2,5,,4,4,Dobry,Dr,805309,2.289,2.587,0,7.15228,5.8,4.5 +20563,1,0.173959,2,0,0,1,2,ROF,3,4,W M 59/Mound,RAMP,4205542,0,0.174,0,,2.24,5 +6535,0,0.055419,1,1,0,2,5,,4,4,Merrill,Rd,813809,0.998,1.054,0,1.330059,5.8,4.5 +5958,0,0.114932,1,1,0,2,5,,4,4,Merrill,Rd,813809,1.054,1.169,0,2.758366,5.8,4.5 +29024,0,0.099599,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.390367,0.15,4 +29025,0,0.023767,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,0.570409,0.15,4 +5522,0,0.442923,1,1,0,2,5,,4,4,Auburn,Rd,807009,2.472,2.915,0,10.630159,5.8,4.5 +20565,-1,0.086198,0,2,0,2,5,,4,4,Hall,Rd,4205539,0.801,0.887,0,2.068742,5.8,4.5 +5955,0,0.055945,1,1,0,2,5,,4,4,Merrill,Rd,813809,1.583,1.639,0,1.342689,5.8,4.5 +20564,-1,0.099742,0,2,0,2,5,,3,4,Hall,Rd,4205539,0.887,0.987,0,2.393814,8,4.5 +5647,0,0.266227,1,1,1,2,5,,3,4,Utica,Rd,4211434,9.943,10.209,0,6.389452,8,4.5 +6035,0,0.182012,1,1,0,2,5,,3,4,Utica,Rd,4211434,9.761,9.943,0,4.368282,8,4.5 +28999,0,0.171347,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.112316,0.15,4 +29000,0,0.242277,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.814643,0.15,4 +5518,0,0.339644,1,1,0,2,5,,3,4,Auburn,Rd,807009,3.028,3.368,0,8.151449,8,4.5 +6163,1,0.207381,4,0,0,1,2,,3,4,E M 59,,807710,2.716,2.923,0,,0.58,7 +6556,-1,0.396239,0,4,0,1,2,,3,4,W M 59,,807801,2.526,2.922,0,,0.58,7 +28997,0,0.260473,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.251353,0.15,4 +5635,0,0.059308,2,2,0,2,5,,3,4,Utica,Rd,4211434,10.4,10.459,0,1.423395,8,4.5 +20162,1,0.149522,2,0,0,1,2,RON,3,4,Mound/E M 59,RAMP,4208243,0,0.15,0,,1.09,4 +28996,0,0.117071,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.809695,0.15,4 +5491,0,0.245614,1,1,0,2,4,,4,4,22 Mile,Rd,807104,1.046,1.292,0,5.894737,4.5,4.5 +20674,0,0.263199,1,1,0,2,4,,4,4,Shelby,Rd,4210686,2.218,2.481,0,6.316777,4.5,4.5 +20677,0,0.226978,1,1,0,2,4,,4,4,Shelby,Rd,4210686,1.514,1.74,0,5.447461,4.5,4.5 +28992,0,0.570544,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.693062,0.15,4 +29514,0,0.509034,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.216817,0.15,4 +5527,0,0.467959,1,1,0,2,4,,4,4,Auburn,Rd,807009,1.648,2.116,0,11.231022,4.5,4.5 +6413,0,0.30396,1,1,0,2,4,,4,4,Auburn,Rd,807009,1.345,1.648,0,7.295043,4.5,4.5 +29003,0,0.319987,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.679687,0.15,4 +29009,0,0.491375,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.793011,0.15,4 +29828,0,0.396863,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.524722,0.15,4 +6830,-1,0.120936,0,2,0,2,4,DIV,4,4,Auburn,Rd,807009,2.123,2.244,0,2.902469,4.5,4.5 +6834,0,0.006723,1,1,0,2,4,,4,4,Auburn,Rd,807009,2.116,2.123,0,0.161351,4.5,4.5 +6443,0,0.274951,1,1,0,2,4,,4,4,Mound,Rd,814501,0,0.275,0,6.598828,4.5,4.5 +20678,0,0.44026,1,1,0,2,4,,4,4,Shelby,Rd,4210686,1.073,1.514,0,10.566237,4.5,4.5 +29512,0,0.237312,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.69549,0.15,4 +6401,0,0.171327,1,1,0,2,4,,4,4,21 Mile,Rd,817708,0,0.171,0,4.111841,4.5,4.5 +28152,0,0.494493,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.867835,0.15,4 +28991,0,0.511652,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.279658,0.15,4 +6793,0,0.357929,1,1,0,2,4,,4,4,22 Mile,Rd,807104,1.292,1.649,0,8.590307,4.5,4.5 +20675,0,0.477708,1,1,0,2,4,,4,4,Shelby,Rd,4210686,1.74,2.218,0,11.465002,4.5,4.5 +5568,0,0.292799,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,1.28,1.573,0,7.027177,4.5,4.5 +5625,0,0.355705,1,1,0,2,4,,4,4,Mound,Rd,814501,2.418,2.774,0,8.536908,4.5,4.5 +6071,1,0.341733,2,0,0,1,4,,4,4,Park/E 26 Mile,Ramp,821910,0,0.342,0,,4.5,4.5 +6520,0,0.308389,1,1,0,2,4,,4,4,24 Mile,Rd,815510,1.346,1.654,0,7.401342,4.5,4.5 +6683,1,0.137779,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,1.158,1.296,0,3.306698,3.7,5 +6754,0,0.476488,1,1,0,2,3,,4,4,23 Mile,Rd,807106,1.205,1.681,0,11.435702,3.7,5 +6782,0,0.655136,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.952,1.607,0,15.723261,3.7,5 +19879,0,0.438931,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,6.28,6.719,0,10.534336,4.5,4.5 +20358,1,0.134032,2,0,0,1,4,,4,4,W 26 Mile/Park,Ramp,4208108,0.111,0.245,0,,4.5,4.5 +20626,0,0.533301,1,1,0,2,4,,4,4,Shelby,Rd,4210686,4.891,5.425,0,12.799227,4.5,4.5 +20665,0,0.452625,1,1,0,2,4,,4,4,Shelby,Rd,4210686,3.966,4.419,0,10.862999,4.5,4.5 +20741,-1,0.564555,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,0,0.564,0,13.549318,3.7,5 +27520,0,1.049111,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,25.17867,0.15,4 +29030,0,0.528668,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.688026,0.15,4 +29031,0,0.393141,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.43539,0.15,4 +29034,0,0.500253,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.006083,0.15,4 +29035,0,0.371459,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.915027,0.15,4 +29036,0,0.49744,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.938557,0.15,4 +29040,0,0.642345,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.41628,0.15,4 +5648,0,0.276554,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.331,0.607,0,6.6373,3.7,5 +6325,0,0.829262,1,1,0,2,3,,4,4,23 Mile,Rd,807106,0.106,0.935,0,19.90229,3.7,5 +6944,0,0.403329,1,1,1,2,4,,4,4,24 Mile,Rd,815510,0.424,0.827,0,9.679907,4.5,4.5 +24923,0,0.680522,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.332536,0.15,4 +29032,0,0.54374,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.049768,0.15,4 +29038,0,0.785557,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.853377,0.15,4 +29039,0,0.46475,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.154008,0.15,4 +211,0,0.203847,1,1,0,2,3,,4,3,Avon,Rd,605102,5.022,5.225,0,4.892329,3.7,5 +4323,0,0.299893,1,1,0,2,3,,4,3,Dequindre,Rd,799402,15.282,15.582,0,7.197438,3.7,5 +5391,0,0.192077,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.139,0.331,0,4.609839,3.7,5 +5450,0,0.046557,1,1,0,2,3,,4,3,Avon,Rd,814405,0,0.047,0,1.117362,3.7,5 +6757,0,0.088804,1,1,0,2,3,,4,4,23 Mile,Rd,807106,0.017,0.106,0,2.131289,3.7,5 +6334,0,0.017459,1,1,0,2,3,,4,3,23 Mile,Rd,807106,0,0.017,0,0.41901,3.7,5 +5785,0,0.092238,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.047,0.139,0,2.213716,3.7,5 +5637,0,0.423833,1,1,1,2,4,,4,4,24 Mile,Rd,815510,0,0.424,0,10.171989,4.5,4.5 +6954,0,0.277352,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.607,0.885,0,6.656445,3.7,5 +5477,0,0.067826,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.885,0.952,0,1.627817,3.7,5 +5448,0,0.269525,1,1,0,2,3,,4,4,23 Mile,Rd,807106,0.935,1.205,0,6.468612,3.7,5 +26105,0,0.540677,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.976243,0.15,4 +4777,0,0.066959,1,1,0,2,4,,4,4,Ryan,Rd,799302,15.205,15.272,0,1.607023,4.5,4.5 +6936,0,0.519048,1,1,1,2,4,,4,4,24 Mile,Rd,815510,0.827,1.346,0,12.457147,4.5,4.5 +20663,0,0.460727,1,1,0,2,4,,4,4,Shelby,Rd,4210686,4.419,4.879,0,11.057441,4.5,4.5 +24924,0,0.633637,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.207278,0.15,4 +20627,0,0.01209,1,1,0,2,4,,4,4,Shelby,Rd,4210686,4.879,4.891,0,0.290164,4.5,4.5 +5375,0,0.440801,1,1,0,2,3,,4,4,26 Mile,Rd,816702,0,0.441,0,10.57922,3.7,5 +6801,-1,0.089188,0,2,0,2,9,,4,4,Park,Rd,822103,0.511,0.6,0,2.140524,6.55,4.5 +6915,0,0.478702,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,0.484,0.962,0,11.488842,4.5,4.5 +19656,-1,0.204782,0,1,0,1,9,,4,4,Park/26 Mile,Ramp,1830602,0,0.205,0,,6.55,4.5 +21171,-1,0.262498,0,2,0,2,9,,4,4,Park,Rd,4408232,5.818,6.081,0,6.299958,6.55,4.5 +24985,0,0.620808,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.899404,0.15,4 +5605,0,0.483964,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,0,0.484,0,11.61513,4.5,4.5 +6229,0,0.283707,1,1,0,2,3,,4,4,Dequindre,Rd,814405,2.141,2.425,0,6.808974,3.7,5 +6650,0,0.534066,1,1,0,2,3,,4,4,Dequindre,Rd,814405,1.607,2.141,0,12.817573,3.7,5 +19600,0,0.309838,1,1,0,2,3,,4,4,Mount Vernon,Rd,1909604,0,0.31,0,7.4361,3.7,5 +5865,1,0.330236,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,0.828,1.158,0,7.925657,3.7,5 +6499,0,0.318006,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,0.962,1.28,0,7.632142,4.5,4.5 +20623,0,0.176749,1,1,0,2,4,,4,4,Shelby,Rd,4210686,5.868,6.044,0,4.241981,4.5,4.5 +24984,0,0.543858,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.05258,0.15,4 +24986,0,0.665953,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.982876,0.15,4 +24987,0,0.624526,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.988622,0.15,4 +6686,0,0.354993,1,1,0,2,3,,4,4,26 Mile,Rd,816702,0.441,0.796,0,8.51982,3.7,5 +6263,0,0.032391,1,1,0,2,3,,4,4,26 Mile,Rd,816702,0.796,0.828,0,0.777374,3.7,5 +20624,0,0.443058,1,1,0,2,4,,4,4,Shelby,Rd,4210686,5.425,5.868,0,10.633394,4.5,4.5 +6293,-1,0.310452,0,2,0,2,4,,4,4,Park,Rd,822103,0.079,0.389,0,7.450858,4.5,4.5 +19654,1,0.120744,1,0,0,1,7,,4,4,Visitor Center,,1830702,0,0.121,0,,6.55,4.5 +21167,-1,0.182858,0,1,0,2,4,,4,4,Park,Rd,4408232,6.309,6.492,0,4.388582,4.5,4.5 +21169,-1,0.171953,0,2,0,2,4,,4,4,Park,Rd,4408232,6.087,6.259,0,4.126872,4.5,4.5 +5897,-1,0.11528,0,2,0,2,4,,4,4,Park,Rd,822103,0.389,0.504,0,2.76673,4.5,4.5 +21170,-1,0.00652,0,2,0,2,9,,4,4,Park,Rd,4408232,6.081,6.087,0,0.156473,6.55,4.5 +5498,-1,0.006715,0,2,0,2,9,,4,4,Park,Rd,822103,0.504,0.511,0,0.161167,6.55,4.5 +6726,-1,0.078512,0,1,0,2,4,,4,4,Park,Rd,822103,0,0.079,0,1.884296,4.5,4.5 +21165,-1,0.084367,0,1,0,2,4,,4,4,Park,Rd,4408232,6.627,6.712,0,2.024806,4.5,4.5 +21166,-1,0.135157,0,2,0,2,4,,4,4,Park,Rd,4408232,6.492,6.627,0,3.243775,4.5,4.5 +20731,1,0.083617,2,0,0,2,4,,4,4,Park,Rd,4204063,0,0.084,0,2.006797,4.5,4.5 +20357,1,0.068081,2,0,0,1,4,,4,4,W 26 Mile/Park,Ramp,4208108,0.245,0.313,0,,4.5,4.5 +21168,-1,0.050443,0,2,0,2,4,,4,4,Park,Rd,4408232,6.259,6.309,0,1.210642,4.5,4.5 +6479,1,0.148896,1,0,0,1,4,,4,4,E 26 Mile/Park,Ramp,821908,0,0.149,0,,4.5,4.5 +27519,0,0.727232,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.453562,0.15,4 +30179,0,0.766831,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.403935,0.15,4 +6380,-1,0.196018,0,2,0,2,9,,4,4,Park,Rd,822103,0.6,0.796,0,4.704429,6.55,4.5 +5624,0,0.509355,1,1,0,2,4,,4,4,24 Mile,Rd,815510,2.041,2.55,0,12.224529,4.5,4.5 +6316,0,0.705987,2,2,1,2,3,,4,4,23 Mile,Rd,807106,2.227,2.933,0,16.943699,3.7,5 +6937,0,0.532319,1,1,0,2,4,,4,4,Mound,Rd,814501,1.245,1.777,0,12.775668,4.5,4.5 +20415,0,0.495306,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,5.227,5.722,0,11.887333,4.5,4.5 +28537,0,0.502776,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.066626,0.15,4 +28972,0,0.498524,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.964566,0.15,4 +28975,0,0.476387,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.433278,0.15,4 +29042,0,0.503124,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.074977,0.15,4 +5661,0,0.455259,1,1,0,2,4,,4,4,Mound,Rd,814501,0.78,1.235,0,10.926217,4.5,4.5 +6745,0,0.281959,1,1,0,2,3,,4,4,23 Mile,Rd,807106,1.945,2.227,0,6.767017,3.7,5 +20668,0,0.522049,1,1,0,2,4,,4,4,Shelby,Rd,4210686,3.411,3.933,0,12.529188,4.5,4.5 +26107,0,0.522103,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.530467,0.15,4 +29041,0,0.308146,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.395503,0.15,4 +6318,0,0.224277,1,1,0,2,3,,4,4,23 Mile,Rd,807106,1.721,1.945,0,5.382658,3.7,5 +20669,0,0.397101,1,1,0,2,4,,4,4,Shelby,Rd,4210686,3.014,3.411,0,9.530434,4.5,4.5 +6749,0,0.039704,1,1,0,2,3,,4,4,23 Mile,Rd,807106,1.681,1.721,0,0.952897,3.7,5 +26106,0,0.301387,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.233283,0.15,4 +20667,0,0.032924,1,1,0,2,4,,4,4,Shelby,Rd,4210686,3.933,3.966,0,0.790182,4.5,4.5 +6045,0,0.058548,1,1,0,2,4,,4,4,Mound,Rd,814501,0.721,0.78,0,1.405143,4.5,4.5 +5630,0,0.009665,1,1,0,2,4,,4,4,Mound,Rd,814501,1.235,1.245,0,0.231953,4.5,4.5 +6014,0,0.300717,1,1,0,2,4,,4,4,24 Mile,Rd,815510,1.74,2.041,0,7.217205,4.5,4.5 +6347,0,0.503751,1,1,0,2,4,,4,4,Mound,Rd,814501,1.777,2.281,0,12.090034,4.5,4.5 +29029,0,0.510642,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.255411,0.15,4 +29033,0,0.405216,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.725184,0.15,4 +6116,0,0.086075,1,1,0,2,4,,4,4,24 Mile,Rd,815510,1.654,1.74,0,2.065794,4.5,4.5 +5952,0,0.137545,1,1,0,2,4,,4,4,Mound,Rd,814501,2.281,2.418,0,3.301088,4.5,4.5 +27098,0,0.501048,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.025151,0.15,4 +28973,0,0.537086,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.890056,0.15,4 +6924,0,0.441515,1,1,0,2,4,,4,4,24 Mile,Rd,815510,2.602,3.043,0,10.596354,4.5,4.5 +20228,0,0.558357,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,5.722,6.28,0,13.400567,4.5,4.5 +27371,0,0.503293,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.079037,0.15,4 +29037,0,0.506968,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.167244,0.15,4 +6926,0,0.051926,1,1,0,2,4,,4,4,24 Mile,Rd,815510,2.55,2.602,0,1.246224,4.5,4.5 +5383,0,0.706207,1,1,0,2,4,,4,4,Mound,Rd,814501,3.811,4.517,0,16.948965,4.5,4.5 +5565,0,0.483479,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,2.051,2.534,0,11.603491,4.5,4.5 +6258,1,0.416921,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,1.818,2.235,0,10.006098,3.7,5 +20276,0,0.288066,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,7.473,7.761,0,6.913581,4.5,4.5 +20738,-1,0.417943,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,0.986,1.404,0,10.030633,3.7,5 +24988,0,0.556637,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.359291,0.15,4 +27820,0,0.527266,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.654377,0.15,4 +28967,0,0.860074,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,20.641776,0.15,4 +28968,0,0.544674,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.072178,0.15,4 +5549,0,0.652876,1,1,0,2,4,,4,4,Mound,Rd,814501,3.146,3.798,0,15.66903,4.5,4.5 +6468,0,0.266108,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,1.785,2.051,0,6.386592,4.5,4.5 +6680,1,0.288141,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,1.53,1.818,0,6.915374,3.7,5 +20739,-1,0.317863,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,0.668,0.986,0,7.628719,3.7,5 +27818,0,0.544163,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.059917,0.15,4 +29028,0,0.436164,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.467928,0.15,4 +6875,0,0.211537,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,1.573,1.785,0,5.076899,4.5,4.5 +5864,1,0.090907,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,1.44,1.53,0,2.18177,3.7,5 +20740,-1,0.103737,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,0.564,0.668,0,2.489685,3.7,5 +29026,0,0.510593,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.254225,0.15,4 +29027,0,0.502777,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.066649,0.15,4 +6260,1,0.143637,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,1.296,1.44,0,3.447289,3.7,5 +20360,1,0.110755,2,0,0,1,4,,4,4,W 26 Mile/Park,Ramp,4208108,0,0.111,0,,4.5,4.5 +6928,0,0.372166,1,1,0,2,4,,4,4,Mound,Rd,814501,2.774,3.146,0,8.931982,4.5,4.5 +6862,0,0.01254,1,1,0,2,4,,4,4,Mound,Rd,814501,3.798,3.811,0,0.300949,4.5,4.5 +6464,0,0.471602,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,2.587,3.059,0,11.318446,4.5,4.5 +20701,0,0.563375,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,6.719,7.282,0,13.521011,4.5,4.5 +24989,0,0.555544,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.333048,0.15,4 +27821,0,0.526603,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.638464,0.15,4 +6871,0,0.053229,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,2.534,2.587,0,1.2775,4.5,4.5 +20465,0,0.190784,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,7.282,7.473,0,4.578823,4.5,4.5 +5862,1,0.382253,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,2.235,2.617,0,9.174071,3.7,5 +20737,-1,0.382694,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,1.404,1.786,0,9.184655,3.7,5 +20769,0,0.741257,1,1,1,2,4,,4,4,Van Dyke,Ave,4211016,7.774,8.515,0,17.790164,4.5,4.5 +28965,0,0.397671,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.544114,0.15,4 +6675,1,0.250619,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,2.617,2.868,0,6.014851,3.7,5 +20736,-1,0.250381,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,1.786,2.037,0,6.009142,3.7,5 +28966,0,0.405735,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.737643,0.15,4 +30180,0,0.415879,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.981088,0.15,4 +20079,0,0.012772,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,7.761,7.774,0,0.306539,4.5,4.5 +20521,0,0.246163,1,1,1,2,4,,4,4,Van Dyke,Ave,4211016,8.515,8.761,0,5.907922,4.5,4.5 +5457,0,0.117081,1,1,0,2,4,,4,4,Canal,Rd,820607,1.526,1.643,0,2.809941,4.5,4.5 +5623,1,0.374603,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,1.299,1.674,0,8.99047,3.7,5 +5965,0,0.604776,1,1,0,2,4,,4,4,21 Mile,Rd,817708,1.704,2.309,0,14.514626,4.5,4.5 +6025,1,0.257,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,2.801,3.058,0,6.167996,3.7,5 +6113,-1,0.383771,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.285,4.668,0,9.210499,3.7,5 +6283,0,0.774931,1,1,0,2,4,,4,4,19 Mile,Rd,820705,0.575,1.35,0,18.59834,4.5,4.5 +6780,0,0.558083,1,1,0,2,4,,4,4,22 Mile,Rd,807104,3.588,4.146,0,13.393998,4.5,4.5 +20022,1,0.401028,2,0,0,2,5,DV2,4,4,Northpointe,Blvd,1923203,0.265,0.666,0,9.624669,5.8,4.5 +20039,1,0.252324,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,0.215,0.468,0,6.055776,3.7,5 +20566,0,0.341764,2,2,1,2,4,,4,4,Hayes,Rd,4208921,4.036,4.377,0,8.202325,4.5,4.5 +20611,-1,0.411503,0,2,0,2,5,DV2,4,4,Northpointe,Blvd,4205518,0.218,0.629,0,9.876076,5.8,4.5 +20768,0,0.585536,2,2,1,2,4,,3,4,Van Dyke,Ave,4211016,1.733,2.318,0,14.052864,6,4.5 +24990,0,0.518227,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.437438,0.15,4 +24995,0,0.583551,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.005229,0.15,4 +24999,0,0.289768,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.954441,0.15,4 +25008,0,0.454933,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.918404,0.15,4 +28146,0,0.338207,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.116965,0.15,4 +28675,0,0.613704,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.728891,0.15,4 +28693,0,0.545543,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.093037,0.15,4 +28980,0,0.564594,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.550255,0.15,4 +29335,0,0.509088,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.218123,0.15,4 +29835,0,0.49396,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.855031,0.15,4 +29837,0,0.567083,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.610002,0.15,4 +30204,0,0.282137,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.771299,0.15,4 +5486,0,0.893368,1,1,0,2,4,,4,4,Clinton River,Rd,820606,1.163,2.057,0,21.440822,4.5,4.5 +5924,0,0.084112,1,1,0,2,4,,4,4,19 Mile,Rd,820705,0,0.084,0,2.018678,4.5,4.5 +6010,0,0.076452,1,1,0,2,4,,4,4,Clinton River,Rd,820606,0.763,0.84,0,1.834851,4.5,4.5 +6145,-1,0.755879,0,4,0,2,3,DIV,3,4,Hall,Rd,807801,3.024,3.779,0,18.141107,5,5 +6620,-1,1.644729,0,2,0,1,2,,4,4,S M 53,,813706,3.858,5.502,0,,0.8,7.5 +6762,0,0.729249,1,1,0,2,4,,4,4,Canal,Rd,820607,0,0.729,0,17.501973,4.5,4.5 +6927,1,0.758987,4,0,0,2,3,DIV,3,4,Hall,Rd,820202,0.034,0.793,0,18.215684,5,5 +19878,0,0.463068,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,0.825,1.288,0,11.113625,4.5,4.5 +20323,1,1.835904,2,0,0,1,2,,4,4,N M 53,,4210208,3.605,5.44,0,,0.8,7.5 +24998,0,0.355617,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.534815,0.15,4 +25004,0,0.251033,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.024786,0.15,4 +25010,0,0.401412,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.633883,0.15,4 +28147,0,0.33702,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.088477,0.15,4 +28150,0,0.501733,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.041595,0.15,4 +5675,0,0.175585,1,1,0,2,4,,4,4,Utica,Rd,4211434,8.908,9.083,0,4.214033,4.5,4.5 +6935,0,0.395217,1,1,0,2,4,,4,4,Riverland,Dr,820109,0,0.395,0,9.485214,4.5,4.5 +20634,1,0.331492,1,0,0,1,2,ROF,4,4,S M 53/Van Dyke,RAMP,4210504,0,0.331,0,,2.24,5 +20867,0,0.397478,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,0.092,0.489,0,9.539467,4.5,4.5 +28702,0,0.382888,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.1893,0.15,4 +28703,0,0.174995,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.199889,0.15,4 +37524,1,0.028929,2,0,0,2,4,,4,4,18 1/2 Mile,Rd,4210491,1.023,1.052,0,0.6943,4.5,4.5 +20174,1,0.239722,2,0,0,1,2,ROF,4,4,N M 53/Van Dyke,RAMP,4210502,0,0.24,0,,2.24,5 +37525,1,0.029921,3,0,0,2,4,,4,4,Van Dyke,Ave,4211016,0,0.03,0,0.718103,4.5,4.5 +20869,1,0.301326,1,0,0,1,2,RON,4,4,Van Dyke/N M 53,RAMP,4210503,0,0.301,0,,1.09,4 +37523,-1,0.030554,0,2,0,2,4,,4,4,18 1/2 Mile,Rd,4210492,0.499,0.53,0,0.733298,4.5,4.5 +37522,1,0.062134,3,0,0,2,4,,4,4,Van Dyke,Ave,4211016,0.03,0.092,0,1.491226,4.5,4.5 +37521,-1,0.061175,0,3,0,2,4,,4,4,Van Dyke,Ave,4211014,0.327,0.388,0,1.468193,4.5,4.5 +37520,-1,0.028839,0,3,0,2,4,,4,4,Van Dyke,Ave,4211014,0.298,0.327,0,0.692135,4.5,4.5 +20516,1,0.117926,2,0,0,1,2,,4,4,N M 53,,4210208,3.487,3.605,0,,0.8,7.5 +5628,0,0.128808,1,1,0,2,5,GRV,4,4,Dawn,Dr,820107,0,0.129,0,3.091385,6.55,4.5 +6042,0,0.227525,1,1,0,2,4,,4,4,Utica,Rd,4211434,9.083,9.311,0,5.460594,4.5,4.5 +20414,0,0.097391,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,0.591,0.688,0,2.337375,4.5,4.5 +20632,0,0.101616,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,0.489,0.591,0,2.438774,4.5,4.5 +20227,0,0.136213,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,0.688,0.825,0,3.269106,4.5,4.5 +5619,0,0.323675,1,1,0,2,4,,4,4,Clinton River,Rd,820606,0.84,1.163,0,7.768209,4.5,4.5 +6518,0,0.146052,1,1,0,2,4,,4,4,Riverland,Dr,820109,0.395,0.541,0,3.50525,4.5,4.5 +6410,0,0.763552,1,1,0,2,4,,4,4,Clinton River,Rd,820606,0,0.763,0,18.325237,4.5,4.5 +20700,0,0.29524,2,2,1,2,4,,3,4,Van Dyke,Ave,4211016,1.288,1.583,0,7.085763,6,4.5 +5544,0,0.064279,1,1,0,2,4,,3,4,Clinton River,Rd,814201,0,0.064,0,1.542696,6,4.5 +20464,0,0.09705,2,2,1,2,4,,3,4,Van Dyke,Ave,4211016,1.583,1.68,0,2.329211,6,4.5 +5492,1,0.047376,1,0,0,2,5,,3,4,Auburn,Rd,807009,3.435,3.482,0,1.13702,8,4.5 +6554,-1,0.037403,0,4,0,2,3,DIV,3,4,W M 59,,807801,2.986,3.024,0,0.897666,5,5 +20078,0,0.043243,2,2,1,2,4,,3,4,Van Dyke,Ave,4211016,1.69,1.733,0,1.03782,6,4.5 +20683,0,0.040842,1,1,0,2,4,,3,4,Cass,Ave,4210686,0,0.041,0,0.980213,6,4.5 +6114,1,0.034191,4,0,0,2,3,DIV,3,4,E M 59,,820202,0,0.034,0,0.820574,5,5 +20275,0,0.010093,2,2,1,2,4,,3,4,Van Dyke,Ave,4211016,1.68,1.69,0,0.242236,6,4.5 +30213,0,0.177,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.247995,0.15,4 +6712,0,0.490938,1,1,0,2,4,,4,4,19 Mile,Rd,820705,0.084,0.575,0,11.782519,4.5,4.5 +29836,0,0.754185,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.100449,0.15,4 +28694,0,0.252977,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.07145,0.15,4 +25007,0,0.342622,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.222927,0.15,4 +5840,0,0.267441,2,2,0,2,5,,4,4,Delco,Blvd,814307,0.252,0.519,0,6.418578,5.8,4.5 +6013,1,0.138581,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,1.161,1.299,0,3.325942,3.7,5 +6206,-1,0.338836,0,2,0,1,2,,4,4,S M 53,,813706,5.502,5.841,0,,0.8,7.5 +6291,1,0.341045,1,0,0,1,2,RON,4,4,Hall/S M 53,RAMP,821008,0,0.341,0,,1.09,4 +6332,0,0.500391,1,1,0,2,4,,4,4,Canal,Rd,820607,0.729,1.229,0,12.009386,4.5,4.5 +6516,-1,0.141521,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.143,4.285,0,3.396515,3.7,5 +6756,1,0.33224,1,0,0,1,2,ROF,4,4,N M 53/E Hall,RAMP,821104,0,0.332,0,,2.24,5 +20121,1,0.374463,2,0,0,1,2,,4,4,N M 53,,4210208,5.44,5.815,0,,0.8,7.5 +5409,1,0.313593,1,0,0,1,2,ROF,4,4,S M 53/Hall,RAMP,821007,0,0.314,0,,2.24,5 +5452,1,0.316446,1,0,0,1,2,RON,4,4,Hall/N M 53,RAMP,821103,0.051,0.367,0,,1.09,4 +5744,1,0.217052,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,0.925,1.142,0,5.209248,3.7,5 +6126,-1,0.20022,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,3.899,4.099,0,4.805281,3.7,5 +6225,1,0.211281,1,0,0,1,2,ROF,4,4,N M 53/W Hall,RAMP,821102,0,0.211,0,,2.24,5 +6610,-1,0.243176,0,2,0,1,2,,4,4,S M 53,,813706,5.841,6.084,0,,0.8,7.5 +20370,1,0.36718,1,0,0,1,2,RON,4,4,W Hall/S M 53,RAMP,4210000,0,0.367,0,,1.09,4 +20816,1,0.25898,2,0,0,1,2,,4,4,N M 53,,4210208,5.815,6.073,0,,0.8,7.5 +6104,1,0.051855,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,0.873,0.925,0,1.244526,3.7,5 +6529,-1,0.119387,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,3.779,3.899,0,2.865277,3.7,5 +6510,1,0.079746,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,0.793,0.873,0,1.913914,3.7,5 +6724,1,0.052173,1,0,0,1,3,RSF,4,4,S M 53/Hall,RAMP,821007,0.314,0.366,0,,3.7,5 +5842,1,0.050636,1,0,0,1,3,RSF,4,4,Hall/N M 53,RAMP,821103,0,0.051,0,,3.7,5 +6115,-1,0.020362,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.123,4.143,0,0.488691,3.7,5 +6414,1,0.019075,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,1.142,1.161,0,0.457799,3.7,5 +6519,-1,0.024023,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.099,4.123,0,0.57655,3.7,5 +5848,0,0.296435,1,1,0,2,4,,4,4,Canal,Rd,820607,1.229,1.526,0,7.114432,4.5,4.5 +5927,0,0.180867,1,1,0,2,5,,4,4,Delco,Blvd,814307,0,0.181,0,4.340804,5.8,4.5 +29834,0,0.348002,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.352045,0.15,4 +5519,0,0.071021,1,1,0,2,5,,4,4,Delco,Blvd,814307,0.181,0.252,0,1.704502,5.8,4.5 +25000,0,0.247152,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.931649,0.15,4 +28998,0,0.286298,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.871155,0.15,4 +5478,0,0.794209,1,1,0,2,4,,4,4,22 Mile,Rd,807104,2.723,3.517,0,19.06102,4.5,4.5 +6361,0,0.901424,1,1,0,2,4,,4,4,21 Mile,Rd,817708,0.803,1.704,0,21.634187,4.5,4.5 +20125,0,0.392678,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,3.036,3.429,0,9.424269,4.5,4.5 +24992,0,0.508373,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.200957,0.15,4 +28151,0,0.701547,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.837127,0.15,4 +5608,0,0.502746,1,1,0,2,4,,4,4,21 Mile,Rd,817708,0.301,0.803,0,12.065899,4.5,4.5 +20520,0,0.403175,2,2,0,2,4,,4,4,Van Dyke,Ave,4211016,2.318,2.721,0,9.67621,4.5,4.5 +26731,0,0.467895,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.22948,0.15,4 +20327,0,0.314707,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,2.721,3.036,0,7.552977,4.5,4.5 +28153,0,0.307442,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.37861,0.15,4 +6356,0,0.577956,1,1,0,2,4,,4,4,22 Mile,Rd,807104,2.145,2.723,0,13.870944,4.5,4.5 +20580,0,0.338401,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,3.724,4.062,0,8.12162,4.5,4.5 +28977,0,0.49939,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.985361,0.15,4 +28979,0,0.507264,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.174334,0.15,4 +20820,0,0.295256,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,3.429,3.724,0,7.086154,4.5,4.5 +20375,0,0.241507,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,4.062,4.304,0,5.796156,4.5,4.5 +24996,0,0.278227,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.677448,0.15,4 +28982,0,0.514365,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.34475,0.15,4 +6783,0,0.071905,1,1,0,2,4,,4,4,22 Mile,Rd,807104,3.517,3.588,0,1.725716,4.5,4.5 +24991,0,0.501299,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.031169,0.15,4 +5729,1,0.749175,4,0,0,2,3,DIV,3,4,Hall,Rd,820202,2.159,2.908,0,17.98019,5,5 +5775,1,0.314345,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,1.516,1.831,0,7.544279,3.7,5 +6098,-1,0.74176,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,5.163,5.905,0,17.802246,3.7,5 +6224,0,0.5193,1,1,0,2,4,,4,4,Canal,Rd,820607,2.078,2.598,0,12.463197,4.5,4.5 +6710,0,0.25086,2,2,1,2,4,,4,4,19 Mile,Rd,820705,1.604,1.855,0,6.020638,4.5,4.5 +20035,1,0.321266,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,1.434,1.755,0,7.710377,3.7,5 +20617,0,0.233977,2,2,1,2,4,,4,4,Hayes,Rd,4208921,2.97,3.204,0,5.615441,4.5,4.5 +28156,0,0.265376,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.369021,0.15,4 +28695,0,0.356613,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.558712,0.15,4 +29641,0,0.629892,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.117399,0.15,4 +29643,0,0.603014,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.472336,0.15,4 +29645,0,0.576235,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.829647,0.15,4 +30215,0,0.311354,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.472506,0.15,4 +5485,1,0.638081,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,0.878,1.516,0,15.313944,3.7,5 +20034,1,0.706209,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,1.755,2.461,0,16.949019,3.7,5 +5884,1,0.103586,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,0.775,0.878,0,2.486063,3.7,5 +5490,0,0.237641,2,2,1,2,4,,4,4,19 Mile,Rd,820705,1.366,1.604,0,5.703373,4.5,4.5 +5887,0,0.01683,2,2,1,2,4,,4,4,19 Mile,Rd,820705,1.35,1.366,0,0.40393,4.5,4.5 +6102,-1,0.016979,0,4,0,2,3,DIV,3,4,Hall,Rd,807801,5.026,5.043,0,0.40749,5,5 +6502,1,0.017486,4,0,0,2,3,DIV,3,4,Hall,Rd,820202,2.038,2.056,0,0.419658,5,5 +6684,1,0.574217,3,0,0,2,3,DIV,3,4,Schoenherr,Rd,820804,2.072,2.646,0,13.781217,5,5 +6761,0,0.415084,1,1,0,2,4,,4,4,Canal,Rd,820607,1.643,2.058,0,9.962017,4.5,4.5 +20036,1,0.808936,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,0.625,1.434,0,19.414471,3.7,5 +29373,0,0.175443,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.210634,0.15,4 +30214,0,0.442779,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.626688,0.15,4 +6106,-1,0.249145,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.677,4.926,0,5.979469,3.7,5 +6925,1,0.255856,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,1.674,1.93,0,6.140539,3.7,5 +20024,1,0.050265,2,0,0,2,3,,4,4,Northpointe,Blvd,1923203,0,0.05,0,1.206371,3.7,5 +20037,1,0.044195,3,0,0,2,3,DIV,3,4,Schoenherr,Rd,1922901,0.581,0.625,0,1.060669,5,5 +25002,0,0.194154,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.659702,0.15,4 +25744,0,0.188012,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.512287,0.15,4 +28157,0,0.202275,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.854595,0.15,4 +20023,1,0.215045,2,0,0,2,5,DV2,4,4,Northpointe,Blvd,1923203,0.05,0.265,0,5.161084,5.8,4.5 +20613,-1,0.21788,0,2,0,2,5,DV2,4,4,Northpointe,Blvd,4205518,0,0.218,0,5.229127,5.8,4.5 +6511,-1,0.008265,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.668,4.677,0,0.198357,3.7,5 +6919,1,0.109043,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,1.93,2.038,0,2.617041,3.7,5 +6509,-1,0.100308,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.926,5.026,0,2.407399,3.7,5 +25003,0,0.148432,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.562373,0.15,4 +29329,0,0.159221,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.821298,0.15,4 +20038,1,0.11325,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,0.468,0.581,0,2.717996,3.7,5 +5373,1,0.241557,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,1.831,2.072,0,5.79737,3.7,5 +6329,0,0.020554,1,1,0,2,4,,4,4,Canal,Rd,820607,2.058,2.078,0,0.493303,4.5,4.5 +6261,1,0.04435,3,0,0,2,3,DIV,3,4,Schoenherr,Rd,820804,2.646,2.69,0,1.064402,5,5 +29642,0,0.333081,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.993944,0.15,4 +29644,0,0.307686,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.384474,0.15,4 +6091,1,0.103273,4,0,0,2,3,DIV,3,4,Hall,Rd,820202,2.056,2.159,0,2.478548,5,5 +6505,-1,0.120323,0,4,0,2,3,DIV,3,4,Hall,Rd,807801,5.043,5.163,0,2.887749,5,5 +6425,1,0.11092,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,2.69,2.801,0,2.662092,3.7,5 +4946,0,0.523995,2,1,1,2,4,,4,4,19 Mile,Rd,802506,0,0.524,0,12.575871,4.5,4.5 +6166,0,0.332945,1,1,0,2,5,,4,4,Saal,Rd,820810,1.357,1.69,0,7.99067,5.8,4.5 +20619,0,0.327884,2,2,1,2,4,,4,4,Hayes,Rd,4208921,2.301,2.629,0,7.869209,4.5,4.5 +29838,0,0.614127,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.73904,0.15,4 +28160,0,0.059005,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.416111,0.15,4 +5806,0,0.125839,1,1,1,2,4,,4,4,Saal,Rd,820810,1.69,1.816,0,3.020128,4.5,4.5 +20621,0,0.071062,2,2,1,2,4,,4,4,Hayes,Rd,4208921,2.23,2.301,0,1.70548,4.5,4.5 +20618,1,0.158459,2,0,0,2,4,,4,4,Hayes,Rd,4208921,2.811,2.97,0,3.803027,4.5,4.5 +19278,0,0.079364,2,2,0,2,7,,4,4,Shoreline,Dr,1795001,0.186,0.265,0,1.904727,6.55,4.5 +20569,0,0.381798,2,2,1,2,4,,4,4,Hayes,Rd,4208921,3.61,3.992,0,9.163145,4.5,4.5 +28154,0,0.36502,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.760484,0.15,4 +28155,0,0.44307,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.633686,0.15,4 +28162,0,0.197081,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.72995,0.15,4 +19277,0,0.19556,2,2,0,2,7,,4,4,Shoreline,Dr,1795001,0.265,0.46,0,4.693447,6.55,4.5 +20612,0,0.283838,2,2,1,2,4,,4,4,Hayes,Rd,4208921,3.204,3.487,0,6.812117,4.5,4.5 +19279,0,0.185491,2,2,0,2,7,,4,4,Shoreline,Dr,1795001,0,0.186,0,4.451784,6.55,4.5 +20572,0,0.123049,2,2,1,2,4,,4,4,Hayes,Rd,4208921,3.487,3.61,0,2.95317,4.5,4.5 +26741,0,0.281821,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.763706,0.15,4 +28161,0,0.236778,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.682675,0.15,4 +6404,1,0.149425,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,2.908,3.058,0,3.58621,3.7,5 +6497,-1,0.140275,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,5.905,6.045,0,3.366609,3.7,5 +20567,0,0.043642,2,2,1,2,4,,4,4,Hayes,Rd,4208921,3.992,4.036,0,1.04742,4.5,4.5 +5560,0,0.555581,1,1,0,2,4,,4,4,21 Mile,Rd,817708,2.309,2.865,0,13.333949,4.5,4.5 +5567,0,0.124159,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,4.052,4.176,0,2.979809,3.7,5 +6352,0,0.565916,1,1,0,2,4,,4,4,22 Mile,Rd,807104,4.146,4.712,0,13.581993,4.5,4.5 +20552,0,0.555752,2,2,1,2,4,,4,4,Hayes,Rd,4208921,5.002,5.558,0,13.338046,4.5,4.5 +28127,0,0.502344,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.056256,0.15,4 +28164,0,0.508245,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.197887,0.15,4 +28213,0,0.503718,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.08924,0.15,4 +28674,0,0.522884,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.549219,0.15,4 +6374,0,0.279631,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,3.365,3.644,0,6.711144,3.7,5 +6943,0,0.017133,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,3.271,3.288,0,0.411195,3.7,5 +5636,1,0.212823,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,3.058,3.271,0,5.107743,3.7,5 +20041,1,0.206929,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,0,0.207,0,4.966306,3.7,5 +20040,1,0.008421,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,0.207,0.215,0,0.202109,3.7,5 +20610,-1,0.017487,0,2,0,2,3,,4,4,Northpointe,Blvd,4205518,0.629,0.647,0,0.419676,3.7,5 +6794,0,0.076376,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,3.288,3.365,0,1.833034,3.7,5 +5971,0,0.408274,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,3.644,4.052,0,9.798573,3.7,5 +6687,0,0.252417,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,4.644,4.896,0,6.058017,3.7,5 +5376,0,0.467419,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,4.176,4.644,0,11.218052,3.7,5 +6264,0,0.287563,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,4.896,5.184,0,6.90151,3.7,5 +5951,0,0.433212,1,1,0,2,4,,4,4,21 Mile,Rd,817708,2.879,3.312,0,10.397078,4.5,4.5 +20553,0,0.561245,2,2,1,2,4,,4,4,Hayes,Rd,4208921,4.441,5.002,0,13.469883,4.5,4.5 +24993,0,0.514265,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.34236,0.15,4 +24994,0,0.506834,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.164015,0.15,4 +6346,0,0.014685,1,1,0,2,4,,4,4,21 Mile,Rd,817708,2.865,2.879,0,0.352431,4.5,4.5 +20555,0,0.063507,2,2,1,2,4,,4,4,Hayes,Rd,4208921,4.377,4.441,0,1.524159,4.5,4.5 +6776,0,0.438668,1,1,0,2,4,,4,4,22 Mile,Rd,807104,4.712,5.151,0,10.528022,4.5,4.5 +20513,0,0.460654,2,2,1,2,4,,4,4,Hayes,Rd,4208921,5.558,6.018,0,11.055689,4.5,4.5 +28163,0,0.5037,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.088796,0.15,4 +28215,0,0.510373,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.24894,0.15,4 +28971,0,0.501012,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.024277,0.15,4 +28129,0,0.508974,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.215369,0.15,4 +20506,0,0.445323,2,2,1,2,4,,4,4,Hayes,Rd,4208921,6.018,6.463,0,10.687755,4.5,4.5 +5378,0,0.695258,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.533,5.228,0,16.686184,3.7,5 +5974,0,0.561962,1,1,0,2,4,,4,4,Schoenherr,Rd,820804,7.099,7.661,0,13.487095,4.5,4.5 +6234,0,0.375852,1,1,0,2,4,,4,4,26 Mile,Rd,816702,4.487,4.863,0,9.020448,4.5,4.5 +6604,-1,2.557377,0,2,0,1,2,,4,4,S M 53,,813706,9.115,11.672,0,,0.8,7.5 +6636,0,0.384167,1,1,0,2,5,,4,4,27 Mile,Rd,819105,1.609,1.993,0,9.220001,5.8,4.5 +6718,0,0.465209,1,1,0,2,5,,4,4,Jewell,Rd,816307,0.535,1,0,11.165017,5.8,4.5 +6865,0,0.666368,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,4.389,5.055,0,15.992829,4.5,4.5 +6921,0,0.870666,1,1,0,2,4,,4,4,24 Mile,Rd,815510,4.173,5.044,0,20.89599,4.5,4.5 +20450,0,0.308043,1,1,0,2,4,,4,4,Hayes,Rd,4208921,8.731,9.039,0,7.39304,4.5,4.5 +20865,1,2.539574,2,0,0,1,2,,4,4,N M 53,,4210208,9.09,11.629,0,,0.8,7.5 +26990,0,0.761891,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,18.285374,0.15,4 +27370,0,0.570103,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.682462,0.15,4 +28166,0,0.907857,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,21.788559,0.15,4 +28169,0,0.898031,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,21.552738,0.15,4 +28174,0,0.534439,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.826541,0.15,4 +28175,0,0.471609,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.318624,0.15,4 +28176,0,0.642034,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.408822,0.15,4 +28178,0,0.514596,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.350307,0.15,4 +6009,0,0.28219,1,1,0,2,4,,4,4,24 Mile,Rd,815510,3.762,4.044,0,6.772563,4.5,4.5 +37266,1,0.184976,1,0,0,1,2,ROF,4,4,N M 53/26 Mile,RAMP,822005,0,0.185,0,,2.24,5 +6705,0,0.110284,2,2,1,2,3,,4,4,23 Mile,Rd,807106,3.957,4.067,0,2.646808,3.7,5 +28179,0,0.691507,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.596165,0.15,4 +28974,0,0.516399,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.393579,0.15,4 +6713,0,0.576426,2,2,1,2,3,,4,4,23 Mile,Rd,807106,3.233,3.809,0,13.834233,3.7,5 +20868,0,0.180523,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,4.722,4.903,0,4.33256,4.5,4.5 +26931,0,0.576253,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.830075,0.15,4 +28976,0,0.532112,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.770678,0.15,4 +6707,0,0.085426,2,2,1,2,3,,4,4,23 Mile,Rd,807106,3.809,3.894,0,2.050224,3.7,5 +6277,0,0.062604,2,2,1,2,3,,4,4,23 Mile,Rd,807106,3.894,3.957,0,1.502503,3.7,5 +28969,0,0.567488,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.619722,0.15,4 +6100,0,0.09819,1,1,0,2,4,,4,4,24 Mile,Rd,815510,3.664,3.762,0,2.356559,4.5,4.5 +6197,-1,0.260974,0,2,0,1,2,,4,4,S M 53,,813706,8.854,9.115,0,,0.8,7.5 +6268,0,0.118531,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.415,4.533,0,2.844746,3.7,5 +6314,1,0.345294,1,0,0,1,2,ROF,4,4,S M 53/23 Mile,RAMP,814601,0,0.345,0,,2.24,5 +6406,1,0.343577,1,0,0,1,2,RON,4,4,23 Mile/N M 53,RAMP,814605,0,0.344,0,,1.09,4 +20170,1,0.249397,2,0,0,1,2,,4,4,N M 53,,4210208,8.841,9.09,0,,0.8,7.5 +28180,0,0.591964,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.207136,0.15,4 +5381,0,0.20999,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.095,4.305,0,5.039749,3.7,5 +6007,1,0.34481,1,0,0,1,2,ROF,4,4,N M 53/23 Mile,RAMP,814606,0,0.345,0,,2.24,5 +6207,1,0.194973,1,0,0,1,2,ROF,4,4,N M 53/W 23 Mile,RAMP,814604,0,0.195,0,,2.24,5 +6231,1,0.331981,1,0,0,1,2,RON,4,4,23 Mile/S M 53,RAMP,4212033,0,0.332,0,,1.09,4 +6608,-1,0.340921,0,2,0,1,2,,4,4,S M 53,,813706,8.513,8.854,0,,0.8,7.5 +20372,1,0.361153,2,0,0,1,2,,4,4,N M 53,,4210208,8.48,8.841,0,,0.8,7.5 +37267,1,0.020237,1,0,0,2,3,,4,4,N M 53/26 Mile,RAMP,822005,0.185,0.205,0,0.485683,3.7,5 +37248,1,0.202289,1,0,0,1,2,RON,4,4,W 23 Mile/S M 53,RAMP,4212034,0,0.202,0,,1.09,4 +6275,0,0.027582,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.067,4.095,0,0.661975,3.7,5 +6698,0,0.072643,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.342,4.415,0,1.743444,3.7,5 +6700,0,0.037338,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.305,4.342,0,0.8961,3.7,5 +5403,0,0.53537,1,1,0,2,5,,4,4,Jewell,Rd,816307,0,0.535,0,12.848871,5.8,4.5 +26918,0,0.585553,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.053266,0.15,4 +28177,0,0.366799,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.80318,0.15,4 +5617,0,0.129297,1,1,0,2,4,,4,4,24 Mile,Rd,815510,4.044,4.173,0,3.10313,4.5,4.5 +37263,1,0.326817,1,0,0,1,2,ROF,5,4,N M 53/26 Mile,RAMP,822006,0,0.327,0,,2.24,5 +5401,0,0.532575,1,1,0,2,5,,5,4,Jewell,Rd,816307,1.538,2.07,0,12.7818,3.7,5 +5557,0,0.765356,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,3.28,4.045,0,18.36854,4.5,4.5 +37249,1,0.144101,3,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,3.068,3.212,0,3.458421,3.7,5 +6195,-1,0.591275,0,2,0,1,2,,4,4,S M 53,,813706,11.672,12.262,0,,0.8,7.5 +6237,0,0.325861,1,1,0,2,4,,4,4,26 Mile,Rd,816702,3.529,3.855,0,7.820661,4.5,4.5 +37254,-1,0.043985,0,2,0,2,3,,4,4,26 Mile,Rd,4212025,0.05,0.095,0,1.055631,3.7,5 +20631,1,0.358852,2,0,0,1,2,,4,4,N M 53,,4210208,11.629,11.988,0,,0.8,7.5 +27525,0,0.551344,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.232261,0.15,4 +28168,0,0.534372,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.824917,0.15,4 +28170,0,0.651393,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,15.633422,0.15,4 +27570,0,0.515988,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.383719,0.15,4 +37251,1,0.042438,2,0,0,2,3,,4,4,26 Mile,Rd,816702,3.233,3.275,0,1.018505,3.7,5 +37255,0,0.105211,2,2,0,2,3,,4,4,26 Mile,Rd,816702,3.275,3.38,0,2.525074,3.7,5 +37252,-1,0.152337,0,3,0,2,3,DIV,4,4,26 Mile,Rd,4204059,2.197,2.349,0,3.656088,3.7,5 +37258,1,0.078962,2,0,0,2,4,,4,4,26 Mile,Rd,816702,3.45,3.529,0,1.895077,4.5,4.5 +37256,1,0.050801,2,0,0,2,3,,4,4,26 Mile,Rd,816702,3.38,3.431,0,1.21923,3.7,5 +20226,1,0.250073,2,0,0,1,2,,4,4,N M 53,,4210208,11.988,12.238,0,,0.8,7.5 +37260,-1,0.020772,0,2,0,2,3,,4,4,26 Mile,Rd,4212026,0.052,0.073,0,0.498533,3.7,5 +37257,1,0.019144,2,0,0,2,3,,4,4,26 Mile,Rd,816702,3.431,3.45,0,0.459468,3.7,5 +37265,1,0.323078,1,0,0,1,2,RON,4,4,26 Mile/N M 53,RAMP,822007,0.02,0.342,0,,1.09,4 +37261,-1,0.076038,0,2,0,2,4,,4,4,26 Mile,Rd,4212026,0.073,0.149,0,1.824924,4.5,4.5 +37264,1,0.019564,1,0,0,2,3,,4,4,26 Mile/N M 53,RAMP,822007,0,0.02,0,0.469528,3.7,5 +37253,-1,0.017512,0,2,0,2,3,,4,4,26 Mile,Rd,4212025,0.033,0.05,0,0.42029,3.7,5 +37250,1,0.02083,2,0,0,2,3,,4,4,26 Mile,Rd,816702,3.212,3.233,0,0.49993,3.7,5 +5555,0,0.089304,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,4.299,4.389,0,2.143289,4.5,4.5 +5795,0,0.537571,1,1,0,2,5,,5,4,Jewell,Rd,816307,1,1.538,0,12.901701,3.7,5 +28172,0,0.538956,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.934942,0.15,4 +6868,0,0.253953,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,4.045,4.299,0,6.094864,4.5,4.5 +28171,0,0.251949,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,6.046771,0.15,4 +5843,0,0.634813,1,1,0,2,5,,4,4,27 Mile,Rd,819105,0.975,1.609,0,15.235505,5.8,4.5 +6656,0,0.625412,1,1,0,2,4,,4,4,26 Mile,Rd,816702,3.862,4.487,0,15.009881,4.5,4.5 +20068,0,0.572471,1,1,0,2,5,,4,4,Jewell,Rd,4208421,0.423,0.995,0,13.739306,5.8,4.5 +28167,0,0.277101,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.650429,0.15,4 +20069,0,0.422946,1,1,0,2,5,,4,4,Jewell,Rd,4208421,0,0.423,0,10.150711,5.8,4.5 +5849,0,0.006926,1,1,0,2,4,,4,4,26 Mile,Rd,816702,3.855,3.862,0,0.166222,4.5,4.5 +5611,0,0.586119,1,1,0,2,4,,4,4,24 Mile,Rd,815510,5.044,5.63,0,14.066859,4.5,4.5 +5799,0,0.442567,1,1,0,2,4,,4,4,Schoenherr,Rd,820804,6.209,6.652,0,10.621612,4.5,4.5 +6257,0,0.509188,2,2,1,2,3,,4,4,23 Mile,Rd,807106,5.721,6.23,0,12.220508,3.7,5 +20500,0,0.681408,1,1,0,2,4,,4,4,Hayes,Rd,4208921,7.032,7.714,0,16.353785,4.5,4.5 +27103,0,0.508359,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.200625,0.15,4 +28173,0,0.493723,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.849359,0.15,4 +28181,0,0.525909,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.621805,0.15,4 +28182,0,0.531677,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.760255,0.15,4 +6571,0,0.540572,1,1,0,2,4,,4,4,Schoenherr,Rd,820804,5.649,6.19,0,12.973716,4.5,4.5 +6691,0,0.43755,2,2,1,2,3,,4,4,23 Mile,Rd,807106,5.228,5.666,0,10.501206,3.7,5 +28183,0,0.512904,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.309696,0.15,4 +28983,0,0.501086,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.026073,0.15,4 +6156,0,0.019347,1,1,0,2,4,,4,4,Schoenherr,Rd,820804,6.19,6.209,0,0.464318,4.5,4.5 +6678,0,0.055144,2,2,1,2,3,,4,4,23 Mile,Rd,807106,5.666,5.721,0,1.323445,3.7,5 +5404,0,0.447971,1,1,0,2,4,,4,4,Schoenherr,Rd,820804,6.652,7.099,0,10.751303,4.5,4.5 +24782,0,0.505455,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.130926,0.15,4 +6501,0,0.393973,1,1,0,2,4,,4,4,24 Mile,Rd,815510,5.649,6.042,0,9.455353,4.5,4.5 +20453,0,0.468032,1,1,0,2,4,,4,4,Hayes,Rd,4208921,8.056,8.524,0,11.232771,4.5,4.5 +6917,0,0.018761,1,1,0,2,4,,4,4,24 Mile,Rd,815510,5.63,5.649,0,0.450259,4.5,4.5 +20498,0,0.342843,1,1,0,2,4,,4,4,Hayes,Rd,4208921,7.714,8.056,0,8.228221,4.5,4.5 +20451,0,0.206854,1,1,0,2,4,,4,4,Hayes,Rd,4208921,8.524,8.731,0,4.964492,4.5,4.5 +5962,0,0.675672,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,5.332,6.007,0,16.216118,4.5,4.5 +6634,0,0.516732,1,1,0,2,4,,5,4,26 Mile,Rd,816702,5.339,5.855,0,12.401572,3,4 +6879,0,0.444443,1,1,0,2,4,,5,4,Schoenherr,Rd,820804,8.274,8.718,0,10.666635,3,4 +37237,1,0.017242,1,0,0,2,4,,4,4,25 Mile,Rd,4211019,6.037,6.055,0,0.413801,4.5,4.5 +26988,0,0.501055,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,12.025316,0.15,4 +5573,0,0.61288,1,1,0,2,4,,5,4,Schoenherr,Rd,820804,7.661,8.274,0,14.709118,3,4 +6449,0,0.277311,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,5.055,5.332,0,6.655463,4.5,4.5 +26944,0,0.493176,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,11.836231,0.15,4 +27214,0,0.57634,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.832159,0.15,4 +5847,0,0.475979,1,1,0,2,4,,5,4,26 Mile,Rd,816702,4.863,5.339,0,11.423496,3,4 +27529,0,0.682716,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,16.38519,0.15,4 +27530,0,0.727756,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,17.466147,0.15,4 +37236,1,0.029875,1,0,0,2,4,,4,4,25 Mile,Rd,4211019,6.007,6.037,0,0.71701,4.5,4.5 +37235,0,0.197356,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,6.088,6.286,0,4.736535,4.5,4.5 +3925,-1,2.528956,0,3,0,1,1,,3,4,W I 94,,798502,5.69,8.218,0,,0.58,7 +3981,1,0.417027,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800010,0.748,1.165,0,10.008643,6,4.5 +4023,0,0.481766,1,1,0,2,5,,3,4,Fresard,St,799707,0.304,0.786,0,11.562392,8,4.5 +4126,0,0.354959,2,2,1,2,3,,3,4,Harper,Ave,798408,6,6.355,0,8.519016,5,5 +4284,0,0.710153,1,1,0,2,5,,4,4,Quinn,Rd,4211435,0,0.71,0,17.043679,5.8,4.5 +4319,1,2.304691,3,0,0,1,1,,3,4,E I 94,,798501,5.923,8.227,0,,0.58,7 +4334,0,0.260099,1,1,0,2,5,,3,4,Beaconsfield,Ave,798602,0,0.26,0,6.242377,8,4.5 +4349,0,0.975247,1,1,0,2,3,,3,4,14 Mile,Rd,798407,0.395,1.37,0,23.405927,5,5 +4423,0,0.346999,2,2,1,2,3,,3,4,Harper,Ave,798408,1.808,2.155,0,8.327969,5,5 +4534,1,1.051045,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,4.367,5.418,0,25.225081,3.7,5 +4612,1,0.417445,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800009,0,0.417,0,10.018685,6,4.5 +4636,1,0.695749,2,0,0,2,4,DIV,3,4,Masonic,Blvd,802104,3.313,4.008,0,16.697968,6,4.5 +5123,0,0.236059,1,1,0,2,4,,4,4,Harrington,St,825404,0.556,0.792,0,5.665411,4.5,4.5 +5232,0,0.134009,2,2,1,2,4,,3,4,10 Mile,Rd,803101,9.222,9.356,0,3.216219,6,4.5 +5275,0,0.557334,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,10.92,11.477,0,13.376018,3.7,5 +5276,0,0.166124,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,10.754,10.92,0,3.986977,3.7,5 +5277,0,0.568348,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,10.186,10.754,0,13.640362,3.7,5 +5289,0,0.153877,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,6.528,6.682,0,3.693049,5,5 +5668,1,1.041066,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,9.02,10.061,0,24.985577,3.7,5 +5756,0,0.112667,2,2,0,2,3,,3,4,Utica,Rd,4211434,2.107,2.22,0,2.704004,5,5 +5761,0,0.283491,2,2,1,2,4,,4,4,15 Mile,Rd,803605,9.345,9.628,0,6.803777,4.5,4.5 +5870,1,0.563675,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,7.475,8.038,0,13.528193,3.7,5 +5950,1,0.422323,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,6.331,6.753,0,10.135762,5,5 +5977,0,0.309973,1,1,0,2,4,,3,4,Kelly,Rd,827505,0.511,0.821,0,7.439351,6,4.5 +6061,0,0.55544,1,1,0,2,5,,4,4,Little Mack,Ave,825403,0.347,0.902,0,13.33055,5.8,4.5 +6368,0,0.120136,2,2,0,2,4,,3,4,13 Mile,Rd,803410,6.421,6.541,0,2.883276,6,4.5 +6640,0,0.511079,2,2,1,2,3,,3,4,12 Mile,Rd,803401,9.06,9.571,0,12.265902,5,5 +6939,0,0.515115,1,1,0,2,4,,3,4,Martin,Rd,803308,4.052,4.567,0,12.362756,6,4.5 +20056,0,0.278675,1,1,0,2,5,,4,4,Nunneley,Rd,4208681,0.203,0.482,0,6.688193,5.8,4.5 +20158,-1,0.695899,0,2,0,2,4,DIV,3,4,Masonic,Blvd,4208279,0,0.696,0,16.701578,6,4.5 +20221,-1,0.508794,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,7.493,8.002,0,12.211061,3.7,5 +20257,-1,0.365034,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,6.294,6.659,0,8.760813,5,5 +20754,0,0.380041,2,2,0,2,4,,3,4,Little Mack,Ave,4208744,4.366,4.746,0,9.120991,6,4.5 +24412,0,0.287461,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,6.098,6.386,0,6.899069,5,5 +25105,0,0.487872,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.708927,0.15,4 +25114,0,0.344648,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.271541,0.15,4 +25118,0,0.185743,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.457842,0.15,4 +25125,0,0.225611,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.414664,0.15,4 +25207,0,0.667741,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.025781,0.15,4 +25872,0,0.325315,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.80757,0.15,4 +25892,0,0.253403,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.081669,0.15,4 +26094,0,0.565983,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.583603,0.15,4 +28187,0,0.504531,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.108739,0.15,4 +28188,0,0.344578,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.269875,0.15,4 +28189,0,0.271084,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.506024,0.15,4 +28190,0,0.461068,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.065629,0.15,4 +28194,0,0.624747,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.993933,0.15,4 +28195,0,0.515221,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.365315,0.15,4 +28202,0,0.234414,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.625946,0.15,4 +29495,0,0.661217,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.869199,0.15,4 +29496,0,0.370446,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.890708,0.15,4 +29709,0,0.442279,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.614691,0.15,4 +29924,0,0.498218,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.957223,0.15,4 +29932,0,0.571547,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.717124,0.15,4 +4073,-1,0.343932,0,3,0,1,1,,3,4,W I 94,,798502,3.382,3.725,0,,0.58,7 +4333,1,0.881462,3,0,0,1,1,,3,4,E I 94,,798501,2.821,3.702,0,,0.58,7 +4400,0,0.28257,2,2,0,2,4,,3,4,Masonic,Blvd,802104,1.561,1.843,0,6.781679,6,4.5 +4437,1,0.230422,2,0,0,1,1,RFF,3,4,11 Mile/E I 94,RAMP,801008,0.192,0.422,0,,0.58,7 +5112,-1,0.24424,0,2,0,2,5,,3,4,11 Mile,Rd,803209,7.862,8.106,0,5.861756,8,4.5 +5173,1,0.343151,2,0,0,2,5,,3,4,11 Mile,Rd,803208,7.801,8.144,0,8.235623,8,4.5 +5215,0,0.332108,1,1,1,2,5,,3,4,Frazho,Rd,803110,3.585,3.917,0,7.970593,8,4.5 +5242,0,0.345057,2,2,0,2,4,,3,4,10 Mile,Rd,803101,7.406,7.751,0,8.281356,6,4.5 +5299,0,0.461179,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,3.691,4.152,0,11.06829,5,5 +5321,0,0.213675,1,1,0,2,5,,3,4,Stephens,Dr,803008,2.689,2.902,0,5.128211,8,4.5 +5768,0,0.184921,2,2,0,2,3,,3,4,Utica,Rd,4211434,0.284,0.469,0,4.438115,5,5 +6272,1,0.255722,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,3.78,4.035,0,6.137337,5,5 +6333,1,0.318972,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,3.461,3.78,0,7.655326,5,5 +6421,0,0.354557,2,2,1,2,4,,3,4,13 Mile,Rd,803410,4.637,4.991,0,8.509375,6,4.5 +6559,0,0.465163,1,1,1,2,5,,3,4,Common,Rd,4211479,4.341,4.806,0,11.163909,8,4.5 +6666,0,0.183603,2,2,0,2,3,,3,4,12 Mile,Rd,803401,7.642,7.826,0,4.406461,5,5 +6973,0,0.226304,1,1,1,2,4,,3,4,Martin,Rd,803308,2.518,2.744,0,5.431284,6,4.5 +19315,1,0.178656,1,0,0,1,1,ROF,3,4,W I 696/M 3,RAMP,1740410,0,0.179,0,,2.24,5 +19331,-1,0.240492,0,2,0,1,1,RFF,3,4,W I 696,,1740308,8.931,9.171,0,,0.58,7 +19335,-1,0.687927,0,3,0,1,1,,3,4,W I 696,,1740308,7.477,8.164,0,,0.58,7 +19363,1,0.196913,1,0,0,1,1,RON,3,4,M 3/E I 696,RAMP,1740210,0,0.197,0,,1.09,4 +19376,1,0.622492,3,0,0,1,1,,3,4,E I 696,,1740201,7.476,8.098,0,,0.58,7 +20267,-1,0.223642,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,3.774,3.998,0,5.367401,5,5 +20268,-1,0.35043,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,3.424,3.774,0,8.410319,5,5 +20905,0,0.225214,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,2.103,2.328,0,5.405133,6,4.5 +24941,0,0.474395,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.385479,0.15,4 +24942,0,0.528038,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.672921,0.15,4 +25126,0,0.38066,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.135836,0.15,4 +25203,0,0.407237,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.773678,0.15,4 +25222,0,0.243899,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.853588,0.15,4 +25224,0,0.325775,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.818599,0.15,4 +25225,0,0.570986,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.703655,0.15,4 +25228,0,0.565953,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.582864,0.15,4 +25428,0,0.387752,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.306049,0.15,4 +25679,0,0.466957,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.206959,0.15,4 +25700,0,0.517058,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.409389,0.15,4 +25787,0,0.25888,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.21313,0.15,4 +26119,0,0.358431,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.602336,0.15,4 +26499,0,0.332659,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.983815,0.15,4 +29933,0,0.30585,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.340411,0.15,4 +5117,-1,0.257112,0,2,0,2,5,,3,4,11 Mile,Rd,803209,6.998,7.255,0,6.170692,8,4.5 +5178,1,0.258213,2,0,0,2,5,,3,4,11 Mile,Rd,803208,7.03,7.288,0,6.197124,8,4.5 +5218,0,0.543257,1,1,0,2,5,,3,4,Frazho,Rd,803110,2.687,3.23,0,13.038167,8,4.5 +5245,0,0.453326,2,2,0,2,4,,3,4,10 Mile,Rd,803101,6.507,6.96,0,10.879832,6,4.5 +5323,0,0.295988,1,1,0,2,5,,3,4,Stephens,Dr,803008,1.871,2.167,0,7.103705,8,4.5 +5890,0,0.252043,1,1,0,2,4,,3,4,Hayes,Rd,808510,1.275,1.527,0,6.049032,6,4.5 +6441,1,0.524924,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,2.355,2.88,0,12.59818,5,5 +6536,1,0.256997,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,1.727,1.984,0,6.167926,5,5 +19336,-1,0.853818,0,4,0,1,1,,3,4,W I 696,,1740308,6.623,7.477,0,,0.58,7 +19377,1,0.823647,4,0,0,1,1,,3,4,E I 696,,1740201,6.652,7.476,0,,0.58,7 +20306,-1,0.306826,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,2.535,2.842,0,7.363824,5,5 +20309,-1,0.296172,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,1.689,1.985,0,7.108118,5,5 +24892,0,0.431536,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.356862,0.15,4 +24895,0,0.51517,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.364091,0.15,4 +25257,0,0.446532,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.716778,0.15,4 +25630,0,0.690319,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.567649,0.15,4 +25676,0,0.553076,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.273833,0.15,4 +25677,0,0.263267,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.318418,0.15,4 +25693,0,0.421366,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.112774,0.15,4 +25695,0,0.532571,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.781696,0.15,4 +25696,0,0.28796,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.911031,0.15,4 +27468,0,0.46611,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.186638,0.15,4 +28652,0,0.68879,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.530955,0.15,4 +5246,0,0.505542,2,2,0,2,4,,3,4,10 Mile,Rd,803101,6.002,6.507,0,12.133013,6,4.5 +5326,0,0.324747,2,2,0,2,5,,3,4,Stephens,Dr,803008,1.335,1.66,0,7.793919,8,4.5 +5892,0,0.33723,1,1,0,2,4,,3,4,Hayes,Ave,808510,0.684,1.021,0,8.093526,6,4.5 +25629,0,0.423735,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.16964,0.15,4 +28654,0,0.307824,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.387771,0.15,4 +5327,0,0.18182,2,2,0,2,5,,3,4,Stephens,Dr,803008,1.153,1.335,0,4.363672,8,4.5 +5944,0,0.227761,1,1,0,2,4,,3,4,Hayes,Ave,808510,0.283,0.51,0,5.466275,6,4.5 +25255,0,0.246434,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.914407,0.15,4 +25256,0,0.16903,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.056718,0.15,4 +6285,0,0.173905,1,1,0,2,4,,3,4,Hayes,Ave,808510,0.51,0.684,0,4.173731,6,4.5 +6284,0,0.254109,1,1,0,2,4,,3,4,Hayes,Rd,808510,1.021,1.275,0,6.098615,6,4.5 +5325,0,0.188508,2,2,0,2,5,,3,4,Stephens,Dr,803008,1.66,1.848,0,4.524192,8,4.5 +6365,1,0.259348,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,1.467,1.727,0,6.224349,5,5 +20310,-1,0.250915,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,1.439,1.689,0,6.021958,5,5 +5324,0,0.023338,2,2,0,2,5,,3,4,Stephens,Dr,803008,1.848,1.871,0,0.560108,8,4.5 +28653,0,0.240404,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.7697,0.15,4 +5119,-1,0.285059,0,2,0,2,5,,3,4,11 Mile,Rd,803209,6.338,6.623,0,6.841418,8,4.5 +5180,1,0.316121,2,0,0,2,5,,3,4,11 Mile,Rd,803208,6.34,6.656,0,7.586909,8,4.5 +5220,0,0.448552,1,1,0,2,5,,3,4,Frazho,Rd,803110,2.005,2.454,0,10.765245,8,4.5 +5881,0,0.206124,1,1,0,2,4,,3,4,Hayes,Rd,808510,1.78,1.986,0,4.946967,6,4.5 +25688,0,0.222387,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.337281,0.15,4 +28655,0,0.687111,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.490659,0.15,4 +29254,0,0.278487,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.683681,0.15,4 +6280,0,0.252846,1,1,0,2,4,,3,4,Hayes,Rd,808510,1.527,1.78,0,6.068304,6,4.5 +19317,1,0.161007,1,0,0,1,1,ROF,3,4,W I 696/M 97,RAMP,1740408,0,0.161,0,,2.24,5 +19364,1,0.211921,2,0,0,1,1,RON,3,4,M 97/E I 696,RAMP,1740209,0,0.212,0,,1.09,4 +5120,-1,0.110351,0,4,0,2,5,,3,4,11 Mile,Rd,803209,6.228,6.338,0,2.648416,8,4.5 +5181,1,0.079179,4,0,0,2,5,,3,4,11 Mile,Rd,803208,6.261,6.34,0,1.900296,8,4.5 +6276,0,0.058616,2,2,1,2,4,,3,4,Hayes,Rd,808510,1.986,2.045,0,1.406783,6,4.5 +5876,0,0.097163,2,2,1,2,4,,3,4,Hayes,Rd,808510,2.045,2.142,0,2.33191,6,4.5 +5219,0,0.23339,1,1,0,2,5,,3,4,Frazho,Rd,803110,2.454,2.687,0,5.601359,8,4.5 +25690,0,0.25699,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.16776,0.15,4 +25692,0,0.248757,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.970166,0.15,4 +5118,-1,0.374985,0,2,0,2,5,,3,4,11 Mile,Rd,803209,6.623,6.998,0,8.99965,8,4.5 +5179,1,0.374552,2,0,0,2,5,,3,4,11 Mile,Rd,803208,6.656,7.03,0,8.989248,8,4.5 +5243,0,0.423216,2,2,0,2,4,,3,4,10 Mile,Rd,803101,6.983,7.406,0,10.157187,6,4.5 +5322,0,0.521594,1,1,0,2,5,,3,4,Stephens,Dr,803008,2.167,2.689,0,12.518246,8,4.5 +25680,0,0.600009,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.400222,0.15,4 +25683,0,0.487638,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.703313,0.15,4 +25694,0,0.352318,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.455622,0.15,4 +25697,0,0.434726,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.433414,0.15,4 +26133,0,0.264676,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.352216,0.15,4 +5244,0,0.022533,2,2,0,2,4,,3,4,10 Mile,Rd,803101,6.96,6.983,0,0.540787,6,4.5 +6526,1,0.317727,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,1.984,2.301,0,7.62545,5,5 +20307,-1,0.269717,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,2.265,2.535,0,6.473215,5,5 +20308,-1,0.279888,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,1.985,2.265,0,6.717315,5,5 +26132,0,0.345277,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.286651,0.15,4 +26135,0,0.339318,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.143629,0.15,4 +6447,1,0.053735,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,2.301,2.355,0,1.289629,5,5 +25678,0,0.300639,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.21534,0.15,4 +5116,-1,0.306047,0,2,0,2,5,,3,4,11 Mile,Rd,803209,7.255,7.561,0,7.34513,8,4.5 +5177,1,0.336959,2,0,0,2,5,,3,4,11 Mile,Rd,803208,7.288,7.625,0,8.087007,8,4.5 +6434,1,0.23301,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,3.164,3.397,0,5.592239,5,5 +19316,1,0.209705,2,0,0,1,1,RON,3,4,M 3/W I 696,RAMP,1740409,0,0.21,0,,1.09,4 +19362,1,0.253823,2,0,0,1,1,ROF,3,4,E I 696/M 3,RAMP,1740301,0,0.254,0,,2.24,5 +20270,-1,0.189397,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,3.173,3.362,0,4.545519,5,5 +25425,0,0.422617,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.14282,0.15,4 +29712,0,0.387359,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.296623,0.15,4 +5216,0,0.330572,1,1,1,2,5,,3,4,Frazho,Rd,803110,3.255,3.585,0,7.933735,8,4.5 +6439,1,0.284147,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,2.88,3.164,0,6.819535,5,5 +20271,-1,0.331378,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,2.842,3.173,0,7.953076,5,5 +5217,0,0.024721,1,1,1,2,5,,3,4,Frazho,Rd,803110,3.23,3.255,0,0.593313,8,4.5 +5115,-1,0.166543,0,3,0,2,5,,3,4,11 Mile,Rd,803209,7.561,7.728,0,3.997032,8,4.5 +5176,1,0.108514,4,0,0,2,5,,3,4,11 Mile,Rd,803208,7.625,7.734,0,2.604335,8,4.5 +5113,-1,0.108912,0,3,0,2,5,,3,4,11 Mile,Rd,803209,7.753,7.862,0,2.613899,8,4.5 +5174,1,0.045169,3,0,0,2,5,,3,4,11 Mile,Rd,803208,7.756,7.801,0,1.084057,8,4.5 +5175,1,0.021945,3,0,0,2,5,,3,4,11 Mile,Rd,803208,7.734,7.756,0,0.526681,8,4.5 +20269,-1,0.061402,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,3.362,3.424,0,1.473639,5,5 +5114,-1,0.024878,0,3,0,2,5,,3,4,11 Mile,Rd,803209,7.728,7.753,0,0.597084,8,4.5 +6351,1,0.064038,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,3.397,3.461,0,1.536916,5,5 +4729,0,0.667736,1,1,0,2,4,,3,4,Masonic,Blvd,802104,0.39,1.057,0,16.025662,6,4.5 +5295,0,0.295362,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,5.045,5.34,0,7.088685,5,5 +5762,0,0.272363,2,2,0,2,3,,3,4,Utica,Rd,4211434,0.736,1.008,0,6.536705,5,5 +6131,0,0.158595,1,1,0,2,5,,3,4,Calahan,Ave,811303,0.508,0.666,0,3.806282,8,4.5 +6450,0,0.661131,2,2,1,2,4,,3,4,13 Mile,Rd,803410,3.56,4.221,0,15.867145,6,4.5 +6563,0,0.240313,1,1,0,2,5,,3,4,Common,Rd,4211479,3.492,3.732,0,5.767507,8,4.5 +6565,0,0.344232,1,1,0,2,5,,3,4,Common,Rd,4211479,3.147,3.492,0,8.261575,8,4.5 +6679,0,0.388273,2,2,1,2,3,,3,4,12 Mile,Rd,803401,6.536,6.924,0,9.318562,5,5 +6977,0,0.493051,1,1,1,2,4,,3,4,Martin,Rd,803308,1.767,2.26,0,11.833217,6,4.5 +25699,0,0.22693,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.446316,0.15,4 +28642,0,0.349265,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.38236,0.15,4 +28644,0,0.523421,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.562112,0.15,4 +28650,0,0.718711,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,17.249064,0.15,4 +29656,0,0.446619,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.718848,0.15,4 +29724,0,0.452584,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.862022,0.15,4 +4725,-1,0.505668,0,2,0,2,4,DIV,3,4,Hayes,Rd,801010,0,0.506,0,12.13602,6,4.5 +5097,0,0.546523,1,1,1,2,4,,3,4,Martin,Rd,803308,1.221,1.767,0,13.116563,6,4.5 +5297,0,0.073865,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,4.672,4.746,0,1.772767,5,5 +5298,0,0.520072,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,4.152,4.672,0,12.481723,5,5 +6681,0,0.146631,2,2,1,2,3,,3,4,12 Mile,Rd,803401,6.389,6.536,0,3.519135,5,5 +20730,1,0.505624,2,0,0,2,4,DIV,3,4,Hayes,Rd,4204196,0,0.506,0,12.134979,6,4.5 +25684,0,0.369247,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.861918,0.15,4 +25685,0,0.352223,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.453357,0.15,4 +25687,0,0.345404,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.289692,0.15,4 +29713,0,0.345225,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.285402,0.15,4 +5098,0,0.142466,1,1,1,2,4,,3,4,Martin,Rd,803308,1.078,1.221,0,3.419174,6,4.5 +25686,0,0.222644,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.343444,0.15,4 +5099,0,0.088551,1,1,1,2,4,,3,4,Martin,Rd,803308,0.99,1.078,0,2.125213,6,4.5 +5100,0,0.014154,1,1,0,2,4,,3,4,Martin,Rd,803308,0.975,0.99,0,0.339689,6,4.5 +6134,0,0.34001,1,1,0,2,5,,3,4,Calahan,Ave,811303,0,0.34,0,8.160239,8,4.5 +6697,0,0.250289,2,2,1,2,3,,3,4,12 Mile,Rd,803401,6.001,6.251,0,6.006932,5,5 +28645,0,0.277322,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.655734,0.15,4 +6702,0,0.01318,2,2,1,2,3,,3,4,12 Mile,Rd,803401,5.988,6.001,0,0.316325,5,5 +6694,0,0.138101,2,2,1,2,3,,3,4,12 Mile,Rd,803401,6.251,6.389,0,3.314419,5,5 +5777,0,0.167784,1,1,0,2,5,,3,4,Calahan,Ave,811303,0.34,0.508,0,4.026817,8,4.5 +28643,0,0.111081,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.665942,0.15,4 +25221,0,0.531633,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.759202,0.15,4 +25229,0,0.182515,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.380358,0.15,4 +5296,0,0.298616,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,4.746,5.045,0,7.166782,5,5 +6452,0,0.231071,2,2,1,2,4,,3,4,13 Mile,Rd,803410,3.329,3.56,0,5.545707,6,4.5 +28117,0,0.554838,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.316116,0.15,4 +28638,0,0.145775,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.498604,0.15,4 +28640,0,0.26592,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.382079,0.15,4 +5774,0,0.355997,1,1,0,2,5,,3,4,Calahan,Ave,811303,0.666,1.022,0,8.543934,8,4.5 +28145,0,0.243557,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.84538,0.15,4 +28641,0,0.287195,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.892677,0.15,4 +6669,0,0.614521,2,2,1,2,3,,3,4,12 Mile,Rd,803401,7.028,7.642,0,14.748502,5,5 +25215,0,0.495975,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.903397,0.15,4 +27025,0,0.434943,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.438634,0.15,4 +25701,0,0.422431,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.138345,0.15,4 +6671,0,0.104118,2,2,1,2,3,,3,4,12 Mile,Rd,803401,6.924,7.028,0,2.498832,5,5 +6878,0,0.258196,1,1,1,2,4,,3,4,Martin,Rd,803308,2.26,2.518,0,6.196697,6,4.5 +25220,0,0.277268,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.654422,0.15,4 +6121,0,0.266492,2,2,0,2,3,,3,4,Utica,Rd,4211434,0.469,0.736,0,6.395807,5,5 +5047,0,0.270566,2,2,0,2,4,,3,4,Masonic,Blvd,802104,1.186,1.457,0,6.493583,6,4.5 +5291,0,0.163745,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,6.058,6.222,0,3.929881,5,5 +5292,0,0.130456,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,5.928,6.058,0,3.130953,5,5 +5758,0,0.120386,2,2,0,2,3,,3,4,Utica,Rd,4211434,1.553,1.673,0,2.889267,5,5 +6118,0,0.276618,2,2,0,2,3,,3,4,Utica,Rd,4211434,1.276,1.553,0,6.63884,5,5 +6427,0,0.305371,2,2,1,2,4,,3,4,13 Mile,Rd,803410,4.332,4.637,0,7.328908,6,4.5 +6560,0,0.498598,1,1,1,2,5,,3,4,Common,Rd,4211479,3.842,4.341,0,11.96636,8,4.5 +25209,0,0.261809,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.283413,0.15,4 +5293,0,0.240089,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,5.688,5.928,0,5.762144,5,5 +5294,0,0.347633,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,5.34,5.688,0,8.343184,5,5 +6561,0,0.110628,1,1,1,2,5,,3,4,Common,Rd,4211479,3.732,3.842,0,2.655065,8,4.5 +6446,0,0.110366,2,2,1,2,4,,3,4,13 Mile,Rd,803410,4.221,4.332,0,2.648776,6,4.5 +4410,0,0.129156,2,2,0,2,4,,3,4,Masonic,Blvd,802104,1.057,1.186,0,3.099747,6,4.5 +6117,0,0.434497,2,2,0,2,3,,3,4,Utica,Rd,4211434,1.673,2.107,0,10.427917,5,5 +5760,0,0.054507,2,2,0,2,3,,3,4,Utica,Rd,4211434,1.222,1.276,0,1.308177,5,5 +6120,0,0.21352,2,2,0,2,3,,3,4,Utica,Rd,4211434,1.008,1.222,0,5.124473,5,5 +4721,0,0.104142,2,2,0,2,4,,3,4,Masonic,Blvd,802104,1.457,1.561,0,2.499405,6,4.5 +5290,0,0.306628,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,6.222,6.528,0,7.359078,5,5 +25112,0,0.366361,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.792655,0.15,4 +25208,0,0.295064,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.081527,0.15,4 +3880,1,0.248286,1,0,0,1,1,ROF,3,4,W I 94/10 Mile,RAMP,801503,0,0.248,0,,2.24,5 +3884,-1,0.469315,0,3,0,1,1,,3,4,W I 94,,798502,2.048,2.517,0,,0.58,7 +4335,1,0.46052,3,0,0,1,1,,3,4,E I 94,,798501,2.046,2.506,0,,0.58,7 +4894,1,0.244116,1,0,0,1,1,RON,3,4,10 Mile/E I 94,RAMP,801004,0,0.244,0,,1.09,4 +4900,1,0.238156,1,0,0,1,1,RON,3,4,11 Mile/W I 94,RAMP,801504,0,0.238,0,,1.09,4 +5212,0,0.540539,1,1,0,2,5,,3,4,Frazho,Rd,803110,4.273,4.814,0,12.972937,8,4.5 +5237,0,0.1288,2,2,1,2,4,,3,4,10 Mile,Rd,803101,8.427,8.556,0,3.091205,6,4.5 +5317,0,0.610103,1,1,0,2,5,,3,4,Stephens,St,803008,3.417,4.027,0,14.642482,8,4.5 +5566,0,0.114316,2,2,0,2,4,,3,4,11 Mile,Rd,806006,0.061,0.175,0,2.743594,6,4.5 +19305,1,0.486436,2,0,0,1,1,RFS,3,4,E I 94/W I 696,RAMP,1740604,0,0.486,0,,0.22,6 +19332,-1,0.267881,0,2,0,1,1,RFS,3,4,W I 696,,1740308,8.663,8.931,0,,0.22,6 +19347,1,0.355022,2,0,0,1,1,RFF,3,4,E I 696/E I 94,RAMP,1740306,0,0.355,0,,0.58,7 +19373,1,0.202134,2,0,0,1,1,RFF,3,4,E I 696,,1740201,8.761,8.963,0,,0.58,7 +20159,0,0.511143,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,0.796,1.307,0,12.267434,6,4.5 +20368,0,0.23798,1,1,1,2,5,,3,4,Kelly,Rd,4208040,2.314,2.552,0,5.711515,8,4.5 +25702,0,0.503667,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.087996,0.15,4 +25783,0,0.260021,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.240495,0.15,4 +5241,0,0.285327,2,2,0,2,4,,3,4,10 Mile,Rd,803101,7.751,8.036,0,6.84785,6,4.5 +5320,0,0.288091,1,1,0,2,5,,3,4,Stephens,Dr,803008,2.902,3.19,0,6.914192,8,4.5 +20405,1,0.347232,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,1.949,2.296,0,8.333573,6,4.5 +20501,1,0.347236,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,0.018,0.365,0,8.333676,6,4.5 +25436,0,0.273019,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.552444,0.15,4 +25682,0,0.259777,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.234655,0.15,4 +26102,0,0.488054,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.713298,0.15,4 +26121,0,0.262132,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.291162,0.15,4 +25681,0,0.259029,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.216697,0.15,4 +5318,0,0.214423,1,1,0,2,5,,3,4,Stephens,Dr,803008,3.202,3.417,0,5.146159,8,4.5 +20407,1,0.167022,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,1.618,1.785,0,4.008523,6,4.5 +20497,1,0.166475,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,0.529,0.695,0,3.995407,6,4.5 +26118,0,0.267957,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.430972,0.15,4 +26593,0,0.257657,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.183762,0.15,4 +20406,1,0.163778,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,1.785,1.949,0,3.930681,6,4.5 +20499,1,0.164041,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,0.365,0.529,0,3.936992,6,4.5 +5319,0,0.011977,1,1,0,2,5,,3,4,Stephens,Dr,803008,3.19,3.202,0,0.287443,8,4.5 +26103,0,0.048591,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.166186,0.15,4 +5239,0,0.27974,2,2,0,2,4,,3,4,10 Mile,Rd,803101,8.044,8.324,0,6.713772,6,4.5 +20369,1,0.018005,1,0,0,2,5,DV2,3,4,Kelly,Rd,4208040,2.296,2.314,0,0.43211,8,4.5 +20503,1,0.017628,1,0,0,2,5,DV2,3,4,Kelly,Rd,4208039,0,0.018,0,0.423063,8,4.5 +5240,0,0.008229,2,2,0,2,4,,3,4,10 Mile,Rd,803101,8.036,8.044,0,0.197484,6,4.5 +5238,0,0.103405,2,2,1,2,4,,3,4,10 Mile,Rd,803101,8.324,8.427,0,2.481729,6,4.5 +5111,-1,0.325962,0,2,0,2,5,,3,4,11 Mile,Rd,803209,8.106,8.432,0,7.823079,8,4.5 +5172,1,0.322765,2,0,0,2,5,,3,4,11 Mile,Rd,803208,8.144,8.467,0,7.746351,8,4.5 +5214,0,0.124877,1,1,1,2,5,,3,4,Frazho,Rd,803110,3.917,4.042,0,2.997058,8,4.5 +19333,-1,0.279653,0,3,0,1,1,,3,4,W I 696,,1740308,8.383,8.663,0,,0.58,7 +19369,1,0.205174,1,0,0,1,1,ROF,3,4,E I 696/11 Mile,RAMP,1740204,0,0.205,0,,2.24,5 +19374,1,0.396522,4,0,0,1,1,,3,4,E I 696,,1740201,8.364,8.761,0,,0.58,7 +20365,1,0.17964,1,0,0,1,1,RON,3,4,11 Mile/W I 696,RAMP,4208095,0,0.18,0,,1.09,4 +25206,0,0.315472,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.571339,0.15,4 +25219,0,0.452695,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.864675,0.15,4 +25226,0,0.292455,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.018922,0.15,4 +25435,0,0.236022,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.664539,0.15,4 +26372,0,0.438686,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.528456,0.15,4 +26450,0,0.354345,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.504276,0.15,4 +25227,0,0.232054,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.569306,0.15,4 +19334,-1,0.218951,0,4,0,1,1,,3,4,W I 696,,1740308,8.164,8.383,0,,0.58,7 +19375,1,0.266339,4,0,0,1,1,,3,4,E I 696,,1740201,8.098,8.364,0,,0.58,7 +5213,0,0.231098,1,1,1,2,5,,3,4,Frazho,Rd,803110,4.042,4.273,0,5.54636,8,4.5 +25111,0,0.251442,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.03462,0.15,4 +20367,0,0.256179,1,1,1,2,5,,3,4,Kelly,Rd,4208040,2.552,2.808,0,6.148305,8,4.5 +25782,0,0.254311,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.103475,0.15,4 +5110,-1,0.133159,0,2,0,2,4,,3,4,11 Mile,Rd,803209,8.432,8.565,0,3.19582,6,4.5 +5171,1,0.128099,2,0,0,2,4,,3,4,11 Mile,Rd,803208,8.467,8.595,0,3.074367,6,4.5 +6465,0,0.060944,2,2,0,2,4,,3,4,11 Mile,Rd,806006,0,0.061,0,1.462658,6,4.5 +4050,1,0.624502,3,0,0,1,1,,3,4,E I 94,,798501,1.421,2.046,0,,0.58,7 +4149,0,0.242346,2,2,1,2,3,,3,4,Harper,Ave,798408,1.566,1.808,0,5.816306,5,5 +4171,-1,0.635032,0,3,0,1,1,,3,4,W I 94,,798502,1.413,2.048,0,,0.58,7 +5234,0,0.32324,2,2,1,2,4,,3,4,10 Mile,Rd,803101,8.743,9.066,0,7.757752,6,4.5 +20047,0,0.513456,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,0.283,0.796,0,12.322939,6,4.5 +26093,0,0.499209,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.981016,0.15,4 +26095,0,0.04067,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.976079,0.15,4 +3870,1,0.221894,1,0,0,1,1,ROF,3,4,E I 94/10 Mile,RAMP,801001,0,0.222,0,,2.24,5 +4167,1,0.220892,1,0,0,1,1,RON,3,4,10 Mile/W I 94,RAMP,801502,0,0.221,0,,1.09,4 +5235,0,0.136412,2,2,1,2,4,,3,4,10 Mile,Rd,803101,8.607,8.743,0,3.273884,6,4.5 +5236,0,0.050348,2,2,0,2,4,,3,4,10 Mile,Rd,803101,8.556,8.607,0,1.208344,6,4.5 +4424,0,0.224171,2,2,1,2,3,,3,4,Harper,Ave,798408,1.342,1.566,0,5.380112,5,5 +5316,0,0.192891,1,1,0,2,5,,3,4,Stephens,St,803008,4.027,4.219,0,4.629384,8,4.5 +20048,0,0.282658,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,0,0.283,0,6.783799,6,4.5 +5233,0,0.155838,2,2,1,2,4,,3,4,10 Mile,Rd,803101,9.066,9.222,0,3.740114,6,4.5 +3874,-1,0.340689,0,3,0,1,1,,3,4,W I 94,,798502,3.041,3.382,0,,0.58,7 +5084,1,0.249352,1,0,0,1,1,ROF,3,4,E I 94/11 Mile,RAMP,801006,0.221,0.471,0,,2.24,5 +5211,0,0.257903,1,1,0,2,5,,3,4,Frazho,St,803110,4.814,5.071,0,6.18967,8,4.5 +6869,0,0.256914,2,2,1,2,4,,3,4,11 Mile,Rd,806006,0.491,0.748,0,6.165926,6,4.5 +19372,1,0.104614,2,0,0,1,1,RFF,3,4,E I 696,,1740201,8.963,9.067,0,,0.58,7 +20575,0,0.491231,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,1.325,1.816,0,11.789547,6,4.5 +25429,0,0.450239,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.80573,0.15,4 +29922,0,0.52012,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.482885,0.15,4 +4046,1,0.314785,4,0,0,1,1,,3,4,E I 94,,798501,2.506,2.821,0,,0.58,7 +4163,-1,0.524009,0,4,0,1,1,,3,4,W I 94,,798502,2.517,3.041,0,,0.58,7 +25703,0,0.012169,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.292061,0.15,4 +4541,1,0.2214,2,0,0,1,1,RFF,3,4,E I 94/W I 696,RAMP,801006,0,0.221,0,,0.58,7 +4453,1,0.210676,1,0,0,1,1,ROF,3,4,W I 94/11 Mile,RAMP,801506,0,0.211,0,,2.24,5 +4753,1,0.191744,1,0,0,1,1,RON,3,4,11 Mile/E I 94,RAMP,801008,0,0.192,0,,1.09,4 +4782,1,0.236788,1,0,0,1,1,RON,3,4,11 Mile/W I 94,RAMP,801505,0,0.237,0,,1.09,4 +6455,0,0.089034,2,2,1,2,4,,3,4,11 Mile,Rd,806006,0.313,0.402,0,2.136825,6,4.5 +6870,0,0.083202,2,2,0,2,4,,3,4,11 Mile,Rd,806006,0.23,0.313,0,1.996845,6,4.5 +6872,0,0.055053,2,2,0,2,4,,3,4,11 Mile,Rd,806006,0.175,0.23,0,1.321277,6,4.5 +5561,0,0.088849,2,2,1,2,4,,3,4,11 Mile,Rd,806006,0.402,0.491,0,2.132365,6,4.5 +20460,0,0.017607,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,1.307,1.325,0,0.422569,6,4.5 +6863,0,0.072111,2,2,1,2,4,,3,4,11 Mile,Rd,806006,0.748,0.82,0,1.730672,6,4.5 +20908,0,0.287507,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,1.816,2.103,0,6.900177,6,4.5 +28200,0,0.024799,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.595166,0.15,4 +6444,0,0.024801,2,2,1,2,4,,3,4,11 Mile,Rd,806006,0.82,0.845,0,0.595235,6,4.5 +4041,1,0.42103,3,0,0,1,1,,3,4,E I 94,,798501,4.532,4.953,0,,0.58,7 +4328,0,0.272737,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.282,2.554,0,6.54569,6,4.5 +5040,-1,0.51995,0,4,0,1,1,,3,4,W I 94,,798502,4.535,5.055,0,,0.58,7 +6096,1,0.210859,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,5.541,5.752,0,5.060606,5,5 +6137,1,0.381982,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.794,5.176,0,9.167567,5,5 +6400,0,0.262157,2,2,1,2,4,,3,4,13 Mile,Rd,803410,5.361,5.623,0,6.291761,6,4.5 +6649,0,0.032078,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.493,8.525,0,0.769872,5,5 +6956,0,0.399259,2,2,0,2,4,,3,4,Martin,Rd,803308,3.37,3.769,0,9.58221,6,4.5 +20260,-1,0.285915,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,5.427,5.713,0,6.861953,5,5 +20262,-1,0.379252,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,4.761,5.14,0,9.102043,5,5 +20857,0,0.655001,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,2.837,3.492,0,15.720029,6,4.5 +25216,0,0.228667,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.48802,0.15,4 +25785,0,0.502259,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.054228,0.15,4 +29869,0,0.135013,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.240302,0.15,4 +6213,1,0.18412,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.428,4.612,0,4.418881,5,5 +6330,1,0.182106,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.612,4.794,0,4.370532,5,5 +6652,0,0.447054,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.046,8.493,0,10.729305,5,5 +6959,0,0.378862,1,1,0,2,4,,3,4,Martin,Rd,803308,2.991,3.37,0,9.092698,6,4.5 +20263,-1,0.184786,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,4.576,4.761,0,4.434858,5,5 +20264,-1,0.233315,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,4.343,4.576,0,5.599549,5,5 +24758,0,0.30505,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.321193,0.15,4 +25218,0,0.28211,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.770639,0.15,4 +25698,0,0.303246,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.2779,0.15,4 +25789,0,0.389518,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.34842,0.15,4 +25790,0,0.27497,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.599278,0.15,4 +6127,0,0.252114,2,2,0,2,3,,3,4,Utica,Rd,4211434,0.032,0.284,0,6.050733,5,5 +6128,0,0.200915,1,1,0,2,5,,3,4,Utica,Rd,811503,0,0.201,0,4.821971,8,4.5 +6235,1,0.280601,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.148,4.428,0,6.734427,5,5 +6963,0,0.222044,1,1,0,2,4,,3,4,Martin,Rd,803308,2.769,2.991,0,5.329066,6,4.5 +20265,-1,0.214535,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,4.128,4.343,0,5.148836,5,5 +6250,1,0.096195,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.035,4.132,0,2.308686,5,5 +20266,-1,0.130387,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,3.998,4.128,0,3.129292,5,5 +6971,0,0.024796,1,1,0,2,4,,3,4,Martin,Rd,803308,2.744,2.769,0,0.595094,6,4.5 +37130,0,0.014944,2,2,1,2,3,,3,2,Northline,Rd,1578505,2.998,3.013,0,0.358657,5,5 +6663,0,0.196272,2,2,0,2,3,,3,4,12 Mile,Rd,803401,7.826,8.022,0,4.710535,5,5 +25217,0,0.283981,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.815533,0.15,4 +6654,0,0.023594,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.022,8.046,0,0.566254,5,5 +25791,0,0.291024,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.98457,0.15,4 +25788,0,0.440452,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.570856,0.15,4 +4646,0,0.241306,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.04,2.282,0,5.791345,6,4.5 +6411,0,0.248197,2,2,1,2,4,,3,4,13 Mile,Rd,803410,5.113,5.361,0,5.956736,6,4.5 +6557,0,0.364502,1,1,1,2,5,,3,4,Common,Rd,4211479,4.806,5.17,0,8.748039,8,4.5 +6576,0,0.170216,1,1,0,2,4,,3,4,Kelly,Rd,827505,0,0.17,0,4.085194,6,4.5 +25212,0,0.591142,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.187404,0.15,4 +25214,0,0.528055,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.673332,0.15,4 +29934,0,0.55496,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.319037,0.15,4 +25211,0,0.23831,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.719446,0.15,4 +25213,0,0.275317,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.607598,0.15,4 +6418,0,0.121562,2,2,1,2,4,,3,4,13 Mile,Rd,803410,4.991,5.113,0,2.917478,6,4.5 +4124,0,0.197015,2,2,0,2,4,,3,4,Masonic,Blvd,802104,1.843,2.04,0,4.72835,6,4.5 +6161,0,0.341125,1,1,0,2,4,,3,4,Kelly,Rd,827505,0.17,0.511,0,8.186991,6,4.5 +6112,1,0.36505,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,5.176,5.541,0,8.761195,5,5 +6551,0,0.025955,1,1,1,2,3,,3,4,Common,Rd,4211479,5.17,5.196,0,0.622921,5,5 +20261,-1,0.287877,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,5.14,5.427,0,6.909052,5,5 +25113,0,0.114804,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.755306,0.15,4 +4031,-1,0.461493,0,3,0,1,1,,3,4,W I 94,,798502,4.074,4.535,0,,0.58,7 +4180,1,0.242135,1,0,0,1,1,RON,3,4,12 Mile/W I 94,RAMP,801507,0,0.242,0,,1.09,4 +4331,1,0.489996,3,0,0,1,1,,3,4,E I 94,,798501,4.042,4.532,0,,0.58,7 +5051,1,0.271118,1,0,0,1,1,ROF,3,4,E I 94/12 Mile,RAMP,801009,0,0.271,0,,2.24,5 +6641,0,0.256013,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.804,9.06,0,6.144311,5,5 +6942,0,0.282646,2,2,0,2,4,,3,4,Martin,Rd,803308,3.769,4.052,0,6.783505,6,4.5 +20900,0,0.273849,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,2.563,2.837,0,6.572379,6,4.5 +25426,0,0.46318,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.116329,0.15,4 +25427,0,0.376751,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.042034,0.15,4 +4044,1,0.340557,4,0,0,1,1,,3,4,E I 94,,798501,3.702,4.042,0,,0.58,7 +5095,-1,0.34819,0,4,0,1,1,,3,4,W I 94,,798502,3.725,4.074,0,,0.58,7 +3953,1,0.221949,1,0,0,1,1,ROF,3,4,W I 94/12 Mile,RAMP,801508,0,0.222,0,,2.24,5 +4345,1,0.22145,1,0,0,1,1,RON,3,4,12 Mile/E I 94,RAMP,801101,0,0.221,0,,1.09,4 +6642,0,0.132768,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.671,8.804,0,3.18643,5,5 +6643,0,0.093814,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.578,8.671,0,2.251536,5,5 +6645,0,0.052715,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.525,8.578,0,1.265169,5,5 +20901,0,0.235019,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,2.328,2.563,0,5.640462,6,4.5 +28198,0,0.021605,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.518515,0.15,4 +3972,-1,0.434396,0,3,0,1,1,,3,4,W I 94,,798502,5.055,5.489,0,,0.58,7 +4007,1,0.330218,1,0,0,1,1,RON,3,4,Little Mack/W I 94,RAMP,801510,0,0.33,0,,1.09,4 +4058,1,0.629596,1,0,0,1,2,,3,4,E I 94/Gratiot Connector,,801102,0,0.629,0,,0.58,7 +4327,1,0.729942,3,0,0,1,1,,3,4,E I 94,,798501,4.953,5.683,0,,0.58,7 +4713,0,0.21077,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.843,3.054,0,5.058486,6,4.5 +4975,-1,0.451724,0,2,0,1,2,,3,4,Gratiot/W I 94 Connector,,801509,0,0.452,0,,0.58,7 +4995,-1,0.200654,0,3,0,1,1,,3,4,W I 94,,798502,5.489,5.69,0,,0.58,7 +6370,0,0.219415,2,2,0,2,4,,3,4,13 Mile,Rd,803410,5.92,6.139,0,5.265948,6,4.5 +20855,0,0.362568,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,3.492,3.854,0,8.701641,6,4.5 +25119,0,0.505391,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.12938,0.15,4 +5045,0,0.116828,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.702,2.818,0,2.803878,6,4.5 +6371,0,0.26918,2,2,0,2,4,,3,4,13 Mile,Rd,803410,5.651,5.92,0,6.460316,6,4.5 +6607,1,0.324124,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,6.006,6.331,0,7.778979,5,5 +20258,-1,0.352847,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,5.941,6.294,0,8.468338,5,5 +6090,1,0.165174,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,5.752,5.917,0,3.964182,5,5 +20259,-1,0.227974,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,5.713,5.941,0,5.471375,5,5 +6373,0,0.027528,2,2,0,2,4,,3,4,13 Mile,Rd,803410,5.623,5.651,0,0.660667,6,4.5 +6088,1,0.089548,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,5.917,6.006,0,2.149142,5,5 +4630,-1,0.0543,0,2,0,2,3,RSF,3,4,Gratiot/W I 94 Connector,,801509,0.452,0.506,0,1.303188,5,5 +4038,0,0.147165,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.554,2.702,0,3.531955,6,4.5 +5039,0,0.02476,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.818,2.843,0,0.594241,6,4.5 +25786,0,0.202829,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.867884,0.15,4 +4037,1,0.240226,3,0,0,1,1,,3,4,E I 94,,798501,5.683,5.923,0,,0.58,7 +4197,1,0.387388,1,0,0,1,1,RON,3,4,Little Mack/E I 94,RAMP,801106,0,0.387,0,,1.09,4 +4387,0,0.167855,2,2,0,2,4,,3,4,Masonic,Blvd,802104,3.054,3.222,0,4.02852,6,4.5 +4486,1,0.240634,1,0,0,1,1,ROF,3,4,E I 94/Little Mack,RAMP,801105,0,0.241,0,,2.24,5 +6369,0,0.282244,2,2,0,2,4,,3,4,13 Mile,Rd,803410,6.139,6.421,0,6.773862,6,4.5 +20759,0,0.038119,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,4.098,4.136,0,0.914864,6,4.5 +25103,0,0.134593,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.230229,0.15,4 +5026,1,0.239866,1,0,0,1,1,ROF,3,4,W I 94/Little Mack,RAMP,801601,0,0.24,0,,2.24,5 +20850,0,0.119524,2,2,0,2,4,,3,4,Little Mack,Ave,4208744,3.969,4.089,0,2.868574,6,4.5 +20854,0,0.104876,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,3.854,3.959,0,2.517027,6,4.5 +20852,0,0.010286,2,2,0,2,4,,3,4,Little Mack,Ave,4208744,3.959,3.969,0,0.246858,6,4.5 +20762,0,0.009042,2,2,0,2,4,,3,4,Little Mack,Ave,4208744,4.089,4.098,0,0.217017,6,4.5 +20758,0,0.229895,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,4.136,4.366,0,5.517471,6,4.5 +25104,0,0.1574,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.777589,0.15,4 +4109,0,0.091239,2,2,0,2,4,,3,4,Masonic,Blvd,802104,3.222,3.313,0,2.18974,6,4.5 +4318,0,0.357625,2,2,1,2,3,,3,4,14 Mile,Rd,798407,2.714,3.071,0,8.583009,5,5 +4642,0,0.513189,1,1,0,2,4,,4,4,Millar,Rd,802408,1.473,1.986,0,12.316536,4.5,4.5 +4809,0,0.195009,2,2,1,2,3,,4,4,Garfield,Rd,798703,2.217,2.412,0,4.680226,3.7,5 +4853,1,0.938656,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,5.845,6.783,0,22.527745,3.7,5 +5282,0,0.440961,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,9.053,9.494,0,10.583061,3.7,5 +5288,0,0.441973,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,6.682,7.124,0,10.607358,5,5 +5412,0,0.224107,1,1,0,2,5,,4,4,Nunneley,Rd,828103,0.051,0.275,0,5.378557,5.8,4.5 +5672,1,0.983982,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,7.643,8.627,0,23.61556,3.7,5 +5741,0,0.235141,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.472,4.707,0,5.643382,4.5,4.5 +5784,0,0.281632,2,2,1,2,4,,4,4,15 Mile,Rd,803605,7.793,8.074,0,6.759174,4.5,4.5 +5856,0,0.659807,1,1,0,2,4,,4,4,Clinton River,Rd,820606,6.279,6.939,0,15.835369,4.5,4.5 +6170,0,0.264417,1,1,0,2,5,,4,4,Kelly,Rd,827505,2.83,3.095,0,6.346008,5.8,4.5 +6230,0,0.473991,1,1,0,2,4,,4,4,Moravian,Dr,803604,3.307,3.78,0,11.375773,4.5,4.5 +6270,0,0.48779,1,1,0,2,4,,4,4,Moravian,Dr,803604,2.638,3.126,0,11.706961,4.5,4.5 +20504,0,0.576905,1,1,0,2,5,,4,4,Little Mack,Ave,4208035,0.892,1.469,0,13.845729,5.8,4.5 +25110,0,0.460445,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.050683,0.15,4 +25781,0,0.557278,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.374664,0.15,4 +25796,0,0.552165,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.251965,0.15,4 +25797,0,0.423284,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.158814,0.15,4 +25803,0,0.426943,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.246634,0.15,4 +25804,0,0.418246,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.037893,0.15,4 +25871,0,0.365837,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.780094,0.15,4 +28660,0,0.461261,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.070259,0.15,4 +4274,0,0.583955,1,1,0,2,3,,4,4,Garfield,Rd,798703,0.674,1.258,0,14.014908,3.7,5 +4374,0,0.165866,1,1,0,2,5,,4,4,Klein,Rd,802304,0,0.166,0,3.980783,5.8,4.5 +4599,0,0.160092,2,2,1,2,3,,3,4,14 Mile,Rd,798407,3.459,3.619,0,3.842198,5,5 +4957,0,0.366588,1,1,0,2,5,,4,4,Mulvey,Rd,798708,0.947,1.313,0,8.798108,5.8,4.5 +5018,0,0.562653,1,1,0,2,5,,4,4,Klein,Rd,802304,0.524,1.087,0,13.503669,5.8,4.5 +5824,0,0.318209,2,2,1,2,4,,4,4,15 Mile,Rd,803605,6.732,7.05,0,7.637005,4.5,4.5 +6105,0,0.088303,2,2,1,2,4,,4,4,Utica,Rd,4211434,3.422,3.51,0,2.119282,4.5,4.5 +6108,0,0.437918,2,2,0,2,4,,3,4,Utica,Rd,4211434,2.22,2.658,0,10.510029,6,4.5 +6273,0,0.61858,1,1,0,2,4,,4,4,Moravian,Dr,803604,2.02,2.638,0,14.845921,4.5,4.5 +25798,0,0.502058,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.049401,0.15,4 +28143,0,0.432049,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.369173,0.15,4 +28717,0,0.574344,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.784251,0.15,4 +28923,0,0.511661,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.27987,0.15,4 +29718,0,0.335518,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.052444,0.15,4 +29926,0,0.425677,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.216251,0.15,4 +3958,0,0.412859,1,1,0,2,5,,4,4,Mulvey,Rd,798708,0.344,0.756,0,9.908624,5.8,4.5 +4263,0,0.343656,1,1,0,2,5,,4,4,Mulvey,Rd,798708,0,0.344,0,8.247748,5.8,4.5 +4595,0,0.425998,2,2,1,2,3,,3,4,14 Mile,Rd,798407,3.764,4.19,0,10.223963,5,5 +6107,0,0.349286,2,2,1,2,4,,4,4,Utica,Rd,4211434,2.733,3.082,0,8.382855,4.5,4.5 +28141,0,0.353675,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.488194,0.15,4 +29925,0,0.460894,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.061446,0.15,4 +4285,0,0.192764,2,2,1,2,3,,3,4,14 Mile,Rd,798407,4.19,4.383,0,4.626339,5,5 +28142,0,0.195722,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.69732,0.15,4 +4290,0,0.144811,2,2,1,2,3,,3,4,14 Mile,Rd,798407,3.619,3.764,0,3.475463,5,5 +5747,0,0.075156,2,2,1,2,4,,4,4,Utica,Rd,4211434,2.658,2.733,0,1.803742,4.5,4.5 +3933,0,0.190307,1,1,0,2,5,,4,4,Mulvey,Rd,798708,0.756,0.947,0,4.567371,5.8,4.5 +5746,0,0.339608,2,2,1,2,4,,4,4,Utica,Rd,4211434,3.082,3.422,0,8.150589,4.5,4.5 +25873,0,0.060879,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.461095,0.15,4 +5745,0,0.232026,2,2,1,2,4,,4,4,Utica,Rd,4211434,3.51,3.742,0,5.56863,4.5,4.5 +5829,0,0.195953,2,2,1,2,4,,4,4,15 Mile,Rd,803605,6.536,6.732,0,4.702867,4.5,4.5 +6103,0,0.425861,2,2,1,2,4,,4,4,Utica,Rd,4211434,3.742,4.168,0,10.220674,4.5,4.5 +28958,0,0.48883,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.731927,0.15,4 +5837,0,0.270916,2,2,1,2,4,,4,4,15 Mile,Rd,803605,6.23,6.501,0,6.501978,4.5,4.5 +5830,0,0.035036,2,2,1,2,4,,4,4,15 Mile,Rd,803605,6.501,6.536,0,0.840852,4.5,4.5 +5743,0,0.083628,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.168,4.251,0,2.007072,4.5,4.5 +6101,0,0.221136,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.251,4.472,0,5.307271,4.5,4.5 +6279,0,0.230875,1,1,0,2,4,,4,4,Moravian,Dr,803604,1.789,2.02,0,5.541003,4.5,4.5 +29927,0,0.345717,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.2972,0.15,4 +28667,0,0.223118,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.354831,0.15,4 +28666,0,0.032473,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,0.779362,0.15,4 +4297,0,0.370291,2,2,1,2,3,,3,4,14 Mile,Rd,798407,3.089,3.459,0,8.886987,5,5 +4582,0,0.269269,1,1,0,2,3,,4,4,Garfield,Rd,798703,0.405,0.674,0,6.462463,3.7,5 +25123,0,0.323459,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.763009,0.15,4 +25870,0,0.480928,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.542275,0.15,4 +29719,0,0.267248,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.413958,0.15,4 +4281,0,0.252575,1,1,0,2,3,,3,4,Garfield,Rd,798703,0.153,0.405,0,6.061804,5,5 +25124,0,0.267789,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.426935,0.15,4 +4591,0,0.152763,1,1,0,2,3,,3,4,Garfield,Rd,798703,0,0.153,0,3.666316,5,5 +3995,0,0.253018,1,1,0,2,5,,4,4,Klein,Rd,802304,0.271,0.524,0,6.072426,5.8,4.5 +4092,0,0.105189,1,1,0,2,5,,4,4,Klein,Rd,802304,0.166,0.271,0,2.524542,5.8,4.5 +25806,0,0.055064,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.321529,0.15,4 +4605,0,0.01777,2,2,1,2,3,,3,4,14 Mile,Rd,798407,3.071,3.089,0,0.426481,5,5 +4273,0,0.380616,2,2,1,2,3,,4,4,Garfield,Rd,798703,1.418,1.798,0,9.134779,3.7,5 +5790,0,0.130688,2,2,1,2,4,,4,4,15 Mile,Rd,803605,7.306,7.437,0,3.136522,4.5,4.5 +25805,0,0.552423,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.258158,0.15,4 +28665,0,0.479216,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.501191,0.15,4 +4578,0,0.15954,1,1,0,2,3,,4,4,Garfield,Rd,798703,1.258,1.418,0,3.828951,3.7,5 +5805,0,0.25577,2,2,1,2,4,,4,4,15 Mile,Rd,803605,7.05,7.306,0,6.138478,4.5,4.5 +4668,0,0.318308,2,2,1,2,3,,4,4,Garfield,Rd,798703,1.899,2.217,0,7.639392,3.7,5 +5008,0,0.100408,2,2,1,2,3,,4,4,Garfield,Rd,798703,1.798,1.899,0,2.409796,3.7,5 +5789,0,0.356304,2,2,1,2,4,,4,4,15 Mile,Rd,803605,7.437,7.793,0,8.551289,4.5,4.5 +4218,1,0.833503,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,7.397,8.23,0,20.004076,3.7,5 +4271,0,0.473824,2,2,1,2,3,,4,4,Garfield,Rd,798703,4.042,4.516,0,11.371774,3.7,5 +4351,0,0.244669,2,2,1,2,3,,4,4,Garfield,Rd,798703,3.257,3.502,0,5.872045,3.7,5 +4358,0,0.543664,1,1,0,2,4,,4,4,Millar,Rd,802408,0.44,0.983,0,13.047943,4.5,4.5 +4961,0,0.279856,1,1,0,2,5,,4,4,17 Mile,Rd,802410,0.722,1.002,0,6.71654,5.8,4.5 +5716,1,0.830456,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,6.22,7.05,0,19.930956,3.7,5 +6245,0,0.332168,1,1,0,2,4,,4,4,Clinton River,Rd,820606,5.947,6.279,0,7.972042,4.5,4.5 +6336,0,0.508654,1,1,0,2,4,,4,4,Clinton River,Rd,820606,5.102,5.61,0,12.207692,4.5,4.5 +25876,0,0.250281,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.006743,0.15,4 +28138,0,0.395722,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.49733,0.15,4 +28661,0,0.290173,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.964157,0.15,4 +28662,0,0.48916,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.739847,0.15,4 +29908,0,0.550696,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.216699,0.15,4 +4683,0,0.439797,1,1,0,2,4,,4,4,Millar,Rd,802408,0,0.44,0,10.555135,4.5,4.5 +5738,0,0.08272,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.723,4.805,0,1.985282,4.5,4.5 +6097,0,0.015185,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.707,4.723,0,0.36444,4.5,4.5 +6771,0,0.175009,1,1,0,2,4,,4,4,Clinton River,Rd,820606,4.927,5.102,0,4.20022,4.5,4.5 +28663,0,0.272591,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.542192,0.15,4 +28664,0,0.232323,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.575744,0.15,4 +5465,0,0.048713,1,1,0,2,4,,4,4,Clinton River,Rd,820606,4.878,4.927,0,1.169106,4.5,4.5 +30223,0,0.228279,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.478701,0.15,4 +3942,0,0.244955,1,1,0,2,5,,4,4,17 Mile,Rd,802410,0.477,0.722,0,5.878928,5.8,4.5 +4295,0,0.059846,1,1,0,2,4,,4,4,18 Mile,Rd,802504,0.592,0.652,0,1.436302,4.5,4.5 +25878,0,0.494435,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.86644,0.15,4 +28689,0,0.549962,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.199098,0.15,4 +4034,0,0.199908,1,1,0,2,5,,4,4,17 Mile,Rd,802410,0.278,0.477,0,4.797797,5.8,4.5 +28688,0,0.602974,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.471385,0.15,4 +4601,0,0.12711,1,1,0,2,4,,4,4,18 Mile,Rd,802504,0.465,0.592,0,3.050632,4.5,4.5 +3986,0,0.350249,1,1,0,2,4,,4,4,18 Mile,Rd,802504,0.652,1.002,0,8.405966,4.5,4.5 +25877,0,0.524625,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.590999,0.15,4 +4191,0,0.323662,2,2,1,2,3,,4,4,Garfield,Rd,798703,2.514,2.837,0,7.767895,3.7,5 +4512,1,0.613733,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,6.783,7.397,0,14.729586,3.7,5 +4987,0,0.489708,1,1,0,2,4,,4,4,Millar,Rd,802408,0.983,1.473,0,11.752992,4.5,4.5 +5673,1,0.592838,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,7.05,7.643,0,14.228115,3.7,5 +28139,0,0.449674,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.792167,0.15,4 +28140,0,0.20447,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.907281,0.15,4 +4471,0,0.083831,2,2,1,2,3,,4,4,Garfield,Rd,798703,2.43,2.514,0,2.011956,3.7,5 +4475,0,0.017896,2,2,1,2,3,,4,4,Garfield,Rd,798703,2.412,2.43,0,0.429502,3.7,5 +4354,0,0.344455,2,2,1,2,3,,4,4,Garfield,Rd,798703,2.837,3.182,0,8.266913,3.7,5 +5939,0,0.336481,1,1,0,2,4,,4,4,Clinton River,Rd,820606,5.61,5.947,0,8.07554,4.5,4.5 +4068,0,0.075829,2,2,1,2,3,,4,4,Garfield,Rd,798703,3.182,3.257,0,1.819887,3.7,5 +6252,0,0.129341,1,1,0,2,4,,4,4,Moravian,Dr,803604,3.126,3.255,0,3.104173,4.5,4.5 +5809,1,0.051394,1,0,0,2,5,,4,4,Nunneley,Rd,828103,0,0.051,0,1.233444,5.8,4.5 +6251,0,0.022682,1,1,0,2,4,,4,4,Moravian,Dr,803604,3.255,3.278,0,0.544358,4.5,4.5 +6246,0,0.028542,1,1,0,2,4,,4,4,Moravian,Dr,803604,3.278,3.307,0,0.684998,4.5,4.5 +4302,0,0.302953,1,1,0,2,5,,4,4,17 Mile,Rd,802410,1.236,1.539,0,7.270873,5.8,4.5 +4575,0,0.186097,2,2,1,2,3,,4,4,Garfield,Rd,798703,3.856,4.042,0,4.466322,3.7,5 +4065,0,0.354006,2,2,1,2,3,,4,4,Garfield,Rd,798703,3.502,3.856,0,8.49614,3.7,5 +4614,0,0.233858,1,1,0,2,5,,4,4,17 Mile,Rd,802410,1.002,1.236,0,5.612601,5.8,4.5 +29909,0,0.347862,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.348681,0.15,4 +25874,0,0.148886,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.573267,0.15,4 +4651,0,0.508904,1,1,0,2,5,,4,4,Beaconsfield,St,798601,0.511,1.02,0,12.213701,5.8,4.5 +4656,0,0.48405,1,1,0,2,3,,3,4,14 Mile,Rd,798407,1.439,1.923,0,11.617204,5,5 +5283,0,0.407297,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,8.646,9.053,0,9.775133,3.7,5 +5285,0,0.401152,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,7.906,8.307,0,9.627658,3.7,5 +5771,0,0.304768,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.584,8.889,0,7.314426,4.5,4.5 +6068,0,0.290963,1,1,1,2,4,,4,4,Kelly,Rd,827505,1.486,1.777,0,6.983103,4.5,4.5 +20508,0,0.468783,1,1,0,2,5,,4,4,Little Mack,Ave,4208035,0,0.469,0,11.250784,5.8,4.5 +25101,0,0.570199,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.684778,0.15,4 +25117,0,0.198063,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.753519,0.15,4 +25585,0,0.432555,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.381326,0.15,4 +25793,0,0.293155,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.03571,0.15,4 +25795,0,0.450945,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.822678,0.15,4 +29928,0,0.46351,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.124233,0.15,4 +4637,0,0.303108,1,1,0,2,3,,3,4,14 Mile,Rd,798407,2.132,2.435,0,7.274581,5,5 +4793,0,0.439744,1,1,0,2,5,,4,4,Beaconsfield,St,798601,0,0.44,0,10.553867,5.8,4.5 +5287,0,0.538568,2,2,1,2,3,,3,4,Groesbeck,Hwy,803009,7.124,7.662,0,12.925622,5,5 +6886,0,0.282769,2,2,0,2,4,,3,4,Kelly,Rd,827505,1.024,1.307,0,6.786459,6,4.5 +25799,0,0.323726,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.769415,0.15,4 +25807,0,0.438808,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.531391,0.15,4 +25881,0,0.285335,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.848039,0.15,4 +4321,0,0.228947,2,2,1,2,3,,3,4,14 Mile,Rd,798407,2.435,2.663,0,5.494734,5,5 +5578,0,0.203076,1,1,0,2,4,,3,4,Kelly,Rd,827505,0.821,1.024,0,4.873817,6,4.5 +25115,0,0.18931,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.543449,0.15,4 +25116,0,0.195428,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.690276,0.15,4 +4635,0,0.050396,2,2,1,2,3,,3,4,14 Mile,Rd,798407,2.663,2.714,0,1.209499,5,5 +6477,0,0.179235,2,2,0,2,4,,3,4,Kelly,Rd,827505,1.307,1.486,0,4.30164,6,4.5 +5286,0,0.243562,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,7.662,7.906,0,5.845495,3.7,5 +4072,0,0.075654,1,1,0,2,5,,3,4,Beaconsfield,Ave,798602,0.26,0.336,0,1.8157,8,4.5 +4339,0,0.208305,1,1,0,2,3,,3,4,14 Mile,Rd,798407,1.923,2.132,0,4.999322,5,5 +5093,0,0.168069,1,1,0,2,5,,3,4,Beaconsfield,Ave,798602,0.336,0.504,0,4.033646,8,4.5 +25880,0,0.232994,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.59186,0.15,4 +4464,0,0.071475,1,1,0,2,5,,4,4,Beaconsfield,St,798601,0.44,0.511,0,1.715408,5.8,4.5 +5130,0,0.500545,1,1,1,2,5,,4,4,Kelly,Rd,827505,2.038,2.539,0,12.013073,5.8,4.5 +5778,0,0.193002,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.074,8.267,0,4.63205,4.5,4.5 +25780,0,0.292966,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.031175,0.15,4 +26104,0,0.535812,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.859486,0.15,4 +5685,0,0.261324,1,1,1,2,4,,4,4,Kelly,Rd,827505,1.777,2.038,0,6.271765,4.5,4.5 +6583,0,0.291754,1,1,0,2,5,,4,4,Kelly,Rd,827505,2.539,2.83,0,7.002098,5.8,4.5 +5284,0,0.338718,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,8.307,8.646,0,8.129237,3.7,5 +5772,0,0.175999,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.408,8.584,0,4.223965,4.5,4.5 +5773,0,0.140754,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.267,8.408,0,3.378094,4.5,4.5 +4466,0,0.557215,1,1,0,2,5,,4,4,Little Mack,Ave,798506,0,0.557,0,13.373164,5.8,4.5 +5875,1,0.57387,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,6.901,7.475,0,13.772884,3.7,5 +20222,-1,0.628541,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,6.864,7.493,0,15.084985,3.7,5 +25102,0,0.072013,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.728303,0.15,4 +29707,0,0.289812,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.955477,0.15,4 +29708,0,0.358907,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.613761,0.15,4 +4662,0,0.024144,1,1,0,2,3,,3,4,14 Mile,Rd,798407,1.37,1.394,0,0.579446,5,5 +5942,1,0.148125,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,6.753,6.901,0,3.555005,5,5 +20223,-1,0.205495,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,6.659,6.864,0,4.931878,5,5 +4343,0,0.04504,1,1,0,2,3,,3,4,14 Mile,Rd,798407,1.394,1.439,0,1.08095,5,5 +37123,1,0.044539,2,0,0,2,4,,3,2,Plymouth / M 14 Cutoff,,4718326,0,0.045,0,1.068932,6,4.5 +5764,0,0.186517,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.91,9.097,0,4.476406,4.5,4.5 +20507,0,0.282273,1,1,0,2,5,,4,4,Little Mack,Ave,4208035,0.469,0.751,0,6.77455,5.8,4.5 +25792,0,0.236876,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.685034,0.15,4 +26584,0,0.372,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.928005,0.15,4 +5766,0,0.021338,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.889,8.91,0,0.512122,4.5,4.5 +5763,0,0.248065,2,2,1,2,4,,4,4,15 Mile,Rd,803605,9.097,9.345,0,5.953554,4.5,4.5 +25109,0,0.340403,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.169666,0.15,4 +20505,0,0.141367,1,1,0,2,5,,4,4,Little Mack,Ave,4208035,0.751,0.892,0,3.39282,5.8,4.5 +4230,1,0.427063,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,5.418,5.845,0,10.249505,3.7,5 +5670,1,0.393499,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,8.627,9.02,0,9.44398,3.7,5 +6194,0,0.515877,1,1,0,2,4,,4,4,Moravian,Dr,803604,4.329,4.845,0,12.381055,4.5,4.5 +6742,0,0.23402,1,1,0,2,4,,4,4,Canal,Rd,820607,5.763,5.997,0,5.616482,4.5,4.5 +6765,0,0.62214,1,1,0,2,4,,4,4,Clinton River,Rd,820606,7.21,7.832,0,14.931355,4.5,4.5 +25121,0,0.687986,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.511654,0.15,4 +28137,0,0.492425,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.818207,0.15,4 +28637,0,0.691855,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.604515,0.15,4 +28658,0,0.442214,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.613143,0.15,4 +29866,0,0.689936,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.558459,0.15,4 +6210,0,0.549088,1,1,0,2,4,,4,4,Moravian,Dr,803604,3.78,4.329,0,13.178101,4.5,4.5 +29910,0,0.604078,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.497868,0.15,4 +5462,0,0.271353,1,1,0,2,4,,4,4,Clinton River,Rd,820606,6.939,7.21,0,6.512461,4.5,4.5 +6433,0,0.542632,1,1,0,2,5,,4,4,Romeo Plank,Rd,819207,0,0.543,0,13.023169,5.8,4.5 +28136,0,0.26127,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.270479,0.15,4 +28135,0,0.435226,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.445421,0.15,4 +5278,0,0.370156,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,9.816,10.186,0,8.88374,3.7,5 +5280,0,0.116395,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,9.512,9.628,0,2.79347,3.7,5 +5419,0,0.208364,1,1,0,2,5,,4,4,Weybridge,St,844409,0.975,1.183,0,5.000728,5.8,4.5 +6469,0,0.346917,1,1,0,2,5,,4,4,Little Mack,Ave,825403,0,0.347,0,8.326018,5.8,4.5 +30224,0,0.247039,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.928941,0.15,4 +5281,0,0.018398,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,9.494,9.512,0,0.441547,3.7,5 +25120,0,0.19078,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.578726,0.15,4 +20057,0,0.203234,1,1,0,2,5,,4,4,Nunneley,Rd,4208681,0,0.203,0,4.877616,5.8,4.5 +5279,0,0.187255,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,9.628,9.816,0,4.494116,3.7,5 +5680,0,0.556322,1,1,0,2,4,,4,4,Harrington,St,825404,0,0.556,0,13.351716,4.5,4.5 +6149,0,0.584024,1,1,0,2,4,,4,4,Moravian,Dr,803604,5.176,5.76,0,14.016583,4.5,4.5 +28636,0,0.653619,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.686849,0.15,4 +6192,0,0.288996,1,1,0,2,4,,4,4,Moravian,Dr,803604,4.845,5.134,0,6.935898,4.5,4.5 +28635,0,0.203994,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.895859,0.15,4 +6165,0,0.041531,1,1,0,2,4,,4,4,Moravian,Dr,803604,5.134,5.176,0,0.996745,4.5,4.5 +5852,0,0.219207,1,1,0,2,4,,4,4,Clinton River,Rd,820606,7.832,8.051,0,5.260962,4.5,4.5 +6312,0,0.145519,1,1,0,2,4,,4,4,Canal,Rd,820607,5.997,6.143,0,3.492464,4.5,4.5 +4140,0,0.218016,2,2,1,2,3,,3,4,Harper,Ave,798408,3.539,3.757,0,5.232385,5,5 +24052,0,0.314094,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,3.545,3.859,0,7.538255,5,5 +25882,0,0.309931,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.438341,0.15,4 +26832,0,0.31792,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.630074,0.15,4 +4148,0,0.528151,2,2,1,2,3,,3,4,Harper,Ave,798408,2.155,2.683,0,12.675621,5,5 +24301,0,0.560091,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,2.232,2.792,0,13.442183,5,5 +25430,0,0.37518,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.004328,0.15,4 +25884,0,0.541828,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.003866,0.15,4 +29497,0,0.212572,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.101734,0.15,4 +5230,0,0.189848,2,2,1,2,4,,3,4,10 Mile,Rd,803101,9.61,9.8,0,4.556341,6,4.5 +5853,0,0.349478,1,1,1,2,5,,3,4,Greater Mack,Ave,809106,1.655,2.005,0,8.387478,8,4.5 +6242,0,0.132152,2,2,0,2,5,,3,4,Greater Mack,Ave,809106,1.523,1.655,0,3.171657,8,4.5 +24459,0,0.36783,2,2,1,2,3,,3,4,Jefferson,Ave,4718263,1.865,2.232,0,8.827928,5,5 +29131,0,0.181751,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.362031,0.15,4 +29919,0,0.4835,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.603994,0.15,4 +29920,0,0.463729,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.129507,0.15,4 +26097,0,0.254258,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.102184,0.15,4 +5231,0,0.253969,2,2,1,2,4,,3,4,10 Mile,Rd,803101,9.356,9.61,0,6.095244,6,4.5 +4316,0,0.304445,1,1,0,2,5,,3,4,Fresard,St,799707,0,0.304,0,7.306691,8,4.5 +24051,0,0.153578,2,2,1,2,3,,3,4,Jefferson,Ave,4718263,1.711,1.865,0,3.685871,5,5 +26089,0,0.20519,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.924557,0.15,4 +5228,0,0.086977,2,2,0,2,4,,3,4,10 Mile,Rd,803101,9.925,10.012,0,2.087444,6,4.5 +5229,0,0.125875,2,2,0,2,4,,3,4,10 Mile,Rd,803101,9.8,9.925,0,3.020993,6,4.5 +4287,1,0.2579,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800010,0.491,0.748,0,6.189609,6,4.5 +4301,1,0.257119,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800009,0.417,0.674,0,6.170866,6,4.5 +4417,0,0.563837,2,2,1,2,3,,3,4,Harper,Ave,798408,2.683,3.247,0,13.532089,5,5 +24258,0,0.326655,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,3.211,3.538,0,7.839724,5,5 +25885,0,0.638787,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,15.330889,0.15,4 +28196,0,0.233926,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.614229,0.15,4 +28197,0,0.651851,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,15.644423,0.15,4 +29923,0,0.35149,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.435748,0.15,4 +25106,0,0.244035,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.856836,0.15,4 +4416,0,0.278761,2,2,1,2,3,,3,4,Harper,Ave,798408,3.26,3.539,0,6.690259,5,5 +4142,0,0.013612,2,2,1,2,3,,3,4,Harper,Ave,798408,3.247,3.26,0,0.326678,5,5 +24405,0,0.418689,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,2.792,3.211,0,10.048537,5,5 +25886,0,0.255118,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.122831,0.15,4 +3999,1,0.20505,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800009,0.674,0.879,0,4.921209,6,4.5 +4597,1,0.206905,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800010,0.284,0.491,0,4.965715,6,4.5 +25883,0,0.226677,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.440242,0.15,4 +24162,0,0.007837,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,3.538,3.545,0,0.188095,5,5 +4413,0,0.479397,2,2,1,2,3,,3,4,Harper,Ave,798408,4.259,4.738,0,11.505538,5,5 +5038,0,0.280552,2,2,1,2,5,,3,4,Masonic,Blvd,802104,4.141,4.422,0,6.733242,8,4.5 +6020,0,0.415999,1,1,0,2,5,,3,4,Greater Mack,Ave,811808,0.362,0.778,0,9.983967,8,4.5 +6360,0,0.191916,2,2,0,2,4,,3,4,13 Mile,Rd,803410,7.165,7.357,0,4.605983,6,4.5 +6631,0,0.41076,2,2,0,2,4,,3,4,12 Mile,Rd,803401,10.079,10.49,0,9.858243,6,4.5 +6866,0,0.420435,1,1,0,2,4,,3,4,Martin,Rd,803308,4.868,5.289,0,10.090445,6,4.5 +24059,0,0.428737,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,4.631,5.059,0,10.289684,5,5 +25888,0,0.280302,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.727248,0.15,4 +25895,0,0.354739,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.513746,0.15,4 +28186,0,0.413708,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.928984,0.15,4 +29721,0,0.497615,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.942764,0.15,4 +4138,0,0.307682,2,2,1,2,3,,3,4,Harper,Ave,798408,3.951,4.259,0,7.384367,5,5 +6632,0,0.349711,2,2,0,2,4,,3,4,12 Mile,Rd,803401,9.73,10.079,0,8.39307,6,4.5 +6934,0,0.195761,1,1,0,2,4,,3,4,Martin,Rd,803308,4.567,4.762,0,4.69826,6,4.5 +25893,0,0.297794,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.147046,0.15,4 +4414,0,0.194626,2,2,1,2,3,,3,4,Harper,Ave,798408,3.757,3.951,0,4.671023,5,5 +6637,0,0.158587,2,2,0,2,4,,3,4,12 Mile,Rd,803401,9.571,9.73,0,3.806091,6,4.5 +25894,0,0.273131,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.555147,0.15,4 +6881,0,0.106073,1,1,0,2,4,,3,4,Martin,Rd,803308,4.762,4.868,0,2.54576,6,4.5 +4136,0,0.537931,2,2,1,2,3,,3,4,Harper,Ave,798408,4.738,5.276,0,12.910355,5,5 +4404,0,0.326676,2,2,1,2,3,,3,4,Harper,Ave,798408,5.276,5.603,0,7.840225,5,5 +6018,0,0.526766,1,1,0,2,5,,3,4,Greater Mack,Ave,811808,0.815,1.342,0,12.642391,8,4.5 +6362,0,0.442429,2,2,0,2,4,,3,4,13 Mile,Rd,803410,6.723,7.165,0,10.618306,6,4.5 +28191,0,0.383958,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.21498,0.15,4 +28193,0,0.131137,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.147277,0.15,4 +6367,0,0.181609,2,2,0,2,4,,3,4,13 Mile,Rd,803410,6.541,6.723,0,4.358618,6,4.5 +5631,0,0.037218,1,1,0,2,5,,3,4,Greater Mack,Ave,811808,0.778,0.815,0,0.89323,8,4.5 +4127,0,0.193315,2,2,1,2,3,,3,4,Harper,Ave,798408,5.603,5.796,0,4.639563,5,5 +4320,0,0.014908,2,2,1,2,4,,3,4,Masonic,Blvd,802104,4.008,4.023,0,0.357789,6,4.5 +4029,0,0.11798,2,2,1,2,4,,3,4,Masonic,Blvd,802104,4.023,4.141,0,2.831521,6,4.5 +4403,0,0.203884,2,2,1,2,3,,3,4,Harper,Ave,798408,5.796,6,0,4.89322,5,5 +24168,0,0.455532,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,4.175,4.631,0,10.932768,5,5 +24271,0,0.228929,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,3.946,4.175,0,5.494299,5,5 +24418,0,0.087064,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,3.859,3.946,0,2.089542,5,5 +4699,0,0.400343,2,2,1,2,5,,3,4,Masonic,Blvd,802104,4.569,4.969,0,9.608228,8,4.5 +6359,0,0.474458,1,1,0,2,4,,3,4,13 Mile,Rd,803410,7.357,7.832,0,11.386989,6,4.5 +24215,0,0.260078,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,5.549,5.81,0,6.241883,5,5 +24508,0,0.31447,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,5.059,5.374,0,7.547279,5,5 +25890,0,0.423216,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.157177,0.15,4 +25891,0,0.247601,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.942428,0.15,4 +5025,0,0.147135,2,2,1,2,5,,3,4,Masonic,Blvd,802104,4.422,4.569,0,3.531229,8,4.5 +25887,0,0.265688,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.376503,0.15,4 +25889,0,0.162859,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.908614,0.15,4 +24343,0,0.175743,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,5.374,5.549,0,4.217841,5,5 +24112,0,0.288786,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,5.81,6.098,0,6.930852,5,5 +3886,-1,0.841387,0,3,0,1,1,,4,4,W I 94,,798502,9.171,10.012,0,,0.8,7.5 +3919,-1,0.339211,0,3,0,1,1,,3,4,W I 94,,798502,8.488,8.827,0,,0.58,7 +3976,1,0.252121,1,0,0,1,1,ROF,3,4,E I 94/Harper,RAMP,800510,0,0.252,0,,2.24,5 +4159,0,0.26393,1,1,0,2,4,,3,4,Rathbone,St,800901,0,0.264,0,6.33433,6,4.5 +4277,1,0.370566,1,0,0,1,1,RON,3,4,Harper/E I 94,RAMP,800509,0,0.371,0,,1.09,4 +4303,1,0.662436,3,0,0,1,1,,4,4,E I 94,,798501,9.394,10.056,0,,0.8,7.5 +4313,1,0.229628,3,0,0,1,1,,3,4,E I 94,,798501,8.569,8.798,0,,0.58,7 +4355,0,0.489249,1,1,0,2,5,,4,4,Union Lake,Rd,801201,0.601,1.09,0,11.741974,5.8,4.5 +4357,0,0.527535,1,1,1,2,4,,3,4,Harper,Ave,798408,9.509,10.036,0,12.660836,6,4.5 +4385,0,0.146607,1,1,1,2,3,,4,4,Harper,Ave,798408,8.525,8.672,0,3.518565,3.7,5 +4388,0,0.153982,1,1,1,2,3,,4,4,Harper,Ave,798408,8.051,8.205,0,3.695569,3.7,5 +4391,0,0.067636,2,2,1,2,3,,4,4,Harper,Ave,798408,7.737,7.805,0,1.623256,3.7,5 +4467,1,0.589354,2,0,0,2,3,DIV,3,4,Metropolitan,Pkwy,801202,2.759,3.348,0,14.144497,5,5 +4470,0,0.39546,1,1,0,2,5,,3,4,Dickinson,St,800808,0,0.395,0,9.491052,8,4.5 +4566,1,0.22428,1,0,0,1,1,ROF,3,4,W I 94/Harper,RAMP,800605,0,0.224,0,,2.24,5 +5632,1,0.409117,2,0,0,2,3,DIV,3,4,Metropolitan,Pkwy,803608,11.098,11.507,0,9.818808,5,5 +5751,1,0.452996,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,8.682,9.135,0,10.871898,3.7,5 +5753,0,0.694861,1,1,0,2,4,,4,4,15 Mile,Rd,803605,10.449,11.143,0,16.67667,4.5,4.5 +6804,0,0.471635,2,2,0,2,4,,3,4,River,Rd,831807,0.116,0.587,0,11.319244,6,4.5 +6845,0,0.480081,1,1,0,2,4,,3,4,Crocker,Blvd,819209,3.402,3.882,0,11.521947,6,4.5 +20160,0,0.319373,1,1,1,2,5,,3,4,Beverly,St,4208277,0.51,0.829,0,7.664942,8,4.5 +20219,-1,0.455739,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,8.619,9.075,0,10.937725,3.7,5 +24114,0,0.286545,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,8.77,9.056,0,6.877082,4.5,4.5 +25108,0,0.4249,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.197609,0.15,4 +25801,0,0.591492,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.195796,0.15,4 +25897,0,0.219279,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.262686,0.15,4 +25932,0,0.305534,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.332825,0.15,4 +29051,0,0.234631,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.631154,0.15,4 +29052,0,0.449592,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.790196,0.15,4 +29053,0,0.110918,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.662038,0.15,4 +29054,0,0.202587,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.862094,0.15,4 +29060,0,0.465338,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.168105,0.15,4 +29868,0,0.460497,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.051925,0.15,4 +29930,0,0.72739,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.457368,0.15,4 +30227,0,0.699086,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.778063,0.15,4 +3979,0,0.72086,1,1,0,2,5,,4,4,Quinn,Rd,4211435,0.71,1.431,0,17.300644,5.8,4.5 +4123,0,0.339052,2,2,1,2,3,,3,4,Harper,Ave,798408,7.235,7.574,0,8.13726,5,5 +4670,0,0.259706,1,1,0,2,3,,3,4,14 Mile,Rd,798407,0.136,0.395,0,6.23295,5,5 +5754,0,0.374707,1,1,0,2,4,,4,4,15 Mile,Rd,803605,10.074,10.449,0,8.992977,4.5,4.5 +20118,0,0.715667,1,1,0,2,5,,4,4,Glenwood,St,4208296,0.267,0.982,0,17.176007,5.8,4.5 +25011,0,0.466441,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.194581,0.15,4 +25122,0,0.660697,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.856738,0.15,4 +25210,0,0.71433,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,17.14392,0.15,4 +29045,0,0.390146,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.363499,0.15,4 +29061,0,0.623724,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.969368,0.15,4 +29929,0,0.554531,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.308738,0.15,4 +25100,0,0.04635,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.1124,0.15,4 +5755,0,0.42308,1,1,0,2,4,,4,4,15 Mile,Rd,803605,9.651,10.074,0,10.153918,4.5,4.5 +5759,1,0.22362,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,8.459,8.682,0,5.366891,3.7,5 +5866,1,0.420502,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,8.038,8.459,0,10.09205,3.7,5 +20119,0,0.266886,1,1,0,2,5,,4,4,Glenwood,St,4208296,0,0.267,0,6.405253,5.8,4.5 +20220,-1,0.61798,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,8.002,8.619,0,14.831532,3.7,5 +25794,0,0.200163,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.803921,0.15,4 +5757,0,0.023179,2,2,1,2,4,,4,4,15 Mile,Rd,803605,9.628,9.651,0,0.556285,4.5,4.5 +25107,0,0.16985,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.076397,0.15,4 +4399,0,0.607989,2,2,1,2,3,,3,4,Harper,Ave,798408,6.628,7.235,0,14.591738,5,5 +20161,0,0.510172,1,1,1,2,5,,3,4,Beverly,St,4208277,0,0.51,0,12.244131,8,4.5 +29720,0,0.528033,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.6728,0.15,4 +4363,0,0.1355,1,1,0,2,3,,3,4,14 Mile,Rd,798407,0,0.136,0,3.251997,5,5 +4401,0,0.265441,2,2,1,2,3,,3,4,Harper,Ave,798408,6.355,6.62,0,6.370593,5,5 +4125,0,0.007501,2,2,1,2,3,,3,4,Harper,Ave,798408,6.62,6.628,0,0.180013,5,5 +28185,0,0.127608,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.062601,0.15,4 +25128,0,0.187869,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.508865,0.15,4 +29048,0,0.190334,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.56801,0.15,4 +29062,0,0.410993,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.86384,0.15,4 +3964,1,0.487304,1,0,0,1,1,RON,4,4,Harper/W I 94,RAMP,800604,0,0.487,0,,1.09,4 +4028,1,0.341326,3,0,0,1,1,,3,4,E I 94,,798501,8.227,8.569,0,,0.58,7 +4267,1,0.359124,1,0,0,1,1,ROF,4,4,W I 94/Harper,RAMP,800603,0,0.359,0,,2.24,5 +4393,0,0.109987,2,2,1,2,3,,3,4,Harper,Ave,798408,7.613,7.723,0,2.639695,5,5 +4588,1,0.231181,1,0,0,1,1,ROF,3,4,E I 94/Harper,RAMP,800508,0,0.231,0,,2.24,5 +4949,-1,0.269651,0,3,0,1,1,,3,4,W I 94,,798502,8.218,8.488,0,,0.58,7 +4397,0,0.026733,2,2,1,2,3,,3,4,Harper,Ave,798408,7.574,7.601,0,0.6416,5,5 +4121,0,0.011892,2,2,1,2,3,,3,4,Harper,Ave,798408,7.601,7.613,0,0.285415,5,5 +4118,0,0.014102,2,2,1,2,3,,3,4,Harper,Ave,798408,7.723,7.737,0,0.338438,5,5 +4111,0,0.320051,1,1,1,2,3,,4,4,Harper,Ave,798408,8.205,8.525,0,7.681228,3.7,5 +20117,0,0.348157,1,1,0,2,5,,4,4,Glenwood,St,4208296,0.982,1.33,0,8.355777,5.8,4.5 +4188,1,0.865618,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,3.348,4.214,0,20.774822,3.7,5 +4213,0,0.323878,1,1,0,2,4,,4,4,Wellington,Cres,800709,0.507,0.831,0,7.773073,4.5,4.5 +5660,1,0.903984,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,10.194,11.098,0,21.695612,3.7,5 +5902,1,0.150258,3,0,0,2,3,DIV,4,4,Broadway,St,833209,0.468,0.619,0,3.606201,3.7,5 +6160,0,0.272205,1,1,0,2,4,,3,4,Harrington,St,825404,1.302,1.574,0,6.532913,6,4.5 +6288,0,0.492211,1,1,0,2,5,,3,4,Church,St,825406,0.509,1.001,0,11.813061,8,4.5 +6299,1,0.2586,3,0,0,2,3,DIV,4,4,Broadway,St,833209,0,0.259,0,6.206397,3.7,5 +6788,0,0.48057,1,1,1,2,3,,3,4,Cass,Ave,819209,2.385,2.865,0,11.533683,5,5 +20213,-1,0.17171,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.023,10.195,0,4.121032,5,5 +20214,-1,0.247497,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,9.776,10.023,0,5.939933,5,5 +25534,0,0.546661,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.119876,0.15,4 +27402,0,0.420242,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.085813,0.15,4 +29058,0,0.633916,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.21398,0.15,4 +29065,0,0.407717,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.785202,0.15,4 +29066,0,0.529941,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.718585,0.15,4 +29068,0,0.434242,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.421806,0.15,4 +29867,0,0.681969,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.367267,0.15,4 +5640,1,0.298928,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,9.309,9.608,0,7.174283,3.7,5 +20055,0,0.479004,1,1,0,2,5,,4,4,Nunneley,Rd,4208681,0.482,0.961,0,11.496099,5.8,4.5 +20215,-1,0.49465,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,9.282,9.776,0,11.871597,3.7,5 +29494,0,0.523477,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.563446,0.15,4 +30226,0,0.502322,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.055721,0.15,4 +3897,1,0.130525,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,4.214,4.344,0,3.1326,3.7,5 +5652,1,0.124463,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,9.185,9.309,0,2.987112,3.7,5 +5662,1,0.110465,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,10.084,10.194,0,2.651171,3.7,5 +5724,1,0.049622,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,9.135,9.185,0,1.19092,3.7,5 +20216,-1,0.133338,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,9.148,9.282,0,3.200119,3.7,5 +20217,-1,0.049205,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,9.099,9.148,0,1.180911,3.7,5 +5664,1,0.022653,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,10.061,10.084,0,0.543673,3.7,5 +20218,-1,0.024099,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,9.075,9.099,0,0.578384,3.7,5 +4878,1,0.023115,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,4.344,4.367,0,0.554767,3.7,5 +5620,1,0.013586,3,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,9.608,9.622,0,0.326068,3.7,5 +6575,0,0.509345,1,1,0,2,4,,3,4,Harrington,St,825404,0.792,1.302,0,12.224284,6,4.5 +6720,0,0.288584,1,1,0,2,5,,3,4,Church,St,825406,0.221,0.509,0,6.926017,8,4.5 +30225,0,0.405406,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.729735,0.15,4 +5407,0,0.220639,1,1,0,2,5,,3,4,Church,St,825406,0,0.221,0,5.295346,8,4.5 +29067,0,0.144869,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.476845,0.15,4 +29064,0,0.258884,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.213213,0.15,4 +28634,0,0.09435,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.264388,0.15,4 +28633,0,0.110777,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.658636,0.15,4 +4372,0,0.258776,2,2,1,2,4,,3,4,Harper,Ave,798408,8.936,9.195,0,6.210614,6,4.5 +26591,0,0.527591,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.662184,0.15,4 +29056,0,0.280359,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.728608,0.15,4 +29057,0,0.300177,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.20425,0.15,4 +5803,0,0.076006,1,1,0,2,4,,4,4,Harrington,St,825404,1.574,1.65,0,1.824147,4.5,4.5 +6173,1,0.209913,3,0,0,2,3,DIV,4,4,Broadway,St,833209,0.259,0.468,0,5.037903,3.7,5 +4091,0,0.109502,2,2,1,2,4,,3,4,Harper,Ave,798408,8.826,8.936,0,2.628058,6,4.5 +4108,0,0.139156,1,1,1,2,3,,4,4,Harper,Ave,798408,8.672,8.811,0,3.339752,3.7,5 +4373,0,0.015685,2,2,1,2,3,,3,4,Harper,Ave,798408,8.811,8.826,0,0.376434,5,5 +4090,0,0.313982,1,1,1,2,4,,3,4,Harper,Ave,798408,9.195,9.509,0,7.535563,6,4.5 +4509,0,0.507231,1,1,0,2,4,,4,4,Wellington,Cres,800709,0,0.507,0,12.173553,4.5,4.5 +5982,0,0.054535,1,1,1,2,5,,3,4,Robertson,St,837804,0.575,0.629,0,1.308851,8,4.5 +6364,0,0.132346,2,2,0,2,3,,3,4,Cass,Ave,819209,2.865,2.998,0,3.176302,5,5 +6589,1,0.244262,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.325,1.569,0,5.862276,5,5 +6890,1,0.253999,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.071,1.325,0,6.095971,5,5 +20052,0,0.145153,2,2,0,2,5,,3,4,Main,St,4208720,0.348,0.493,0,3.48368,8,4.5 +20054,0,0.255559,2,2,0,2,5,,3,4,Main,St,4208720,0,0.256,0,6.133422,8,4.5 +20210,-1,0.071229,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.56,10.631,0,1.70949,5,5 +29050,0,0.244061,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.857474,0.15,4 +29063,0,0.363024,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.712585,0.15,4 +30222,0,0.408331,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.799937,0.15,4 +5417,1,0.317134,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,0.754,1.071,0,7.611226,5,5 +5688,1,0.135221,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,0.619,0.754,0,3.2453,5,5 +20211,-1,0.257805,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.302,10.56,0,6.187313,5,5 +3916,0,0.076347,1,1,0,2,4,,3,4,Wellington,Cres,800709,0.831,0.907,0,1.832324,6,4.5 +20212,-1,0.107033,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.195,10.302,0,2.568798,5,5 +5904,0,0.063732,1,1,1,2,5,,3,4,Robertson,St,837804,0.629,0.693,0,1.529569,8,4.5 +20510,1,0.02987,2,0,0,2,5,,3,4,Main,St,4207941,0,0.03,0,0.716887,8,4.5 +19639,-1,0.03795,0,1,0,2,5,,3,4,Gratiot/Main Cutoff,,1841806,0,0.038,0,0.910797,8,4.5 +20053,0,0.092421,2,2,0,2,5,,3,4,Main,St,4208720,0.256,0.348,0,2.218109,8,4.5 +20208,-1,0.230124,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.887,11.117,0,5.522982,5,5 +5894,0,0.060393,1,1,0,2,5,,3,4,Church,St,825406,1.001,1.062,0,1.449441,8,4.5 +20209,-1,0.255689,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.631,10.887,0,6.136529,5,5 +5494,0,0.064737,1,1,0,2,5,,3,4,Church,St,825406,1.062,1.126,0,1.553676,8,4.5 +3898,0,0.332743,1,1,0,2,4,,3,4,Dickinson,St,800808,0.426,0.758,0,7.98584,6,4.5 +5579,1,0.071534,2,0,0,2,4,,3,4,River,Rd,831807,0,0.072,0,1.716811,6,4.5 +6722,0,0.235876,2,2,0,2,4,,3,4,Crocker,Blvd,819209,3.04,3.276,0,5.661023,6,4.5 +6386,1,0.155138,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.569,1.724,0,3.723316,5,5 +5408,0,0.042163,2,2,0,2,3,,3,4,Cass,Ave,819209,2.998,3.04,0,1.011918,5,5 +6074,1,0.033353,4,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.724,1.758,0,0.800468,5,5 +6289,0,0.126071,1,1,0,2,4,,3,4,Crocker,Blvd,819209,3.276,3.402,0,3.025705,6,4.5 +4190,0,0.030111,1,1,0,2,4,,3,4,Dickinson,St,800808,0.395,0.426,0,0.722672,6,4.5 +5413,0,0.044328,2,2,0,2,4,,3,4,River,Rd,831807,0.072,0.116,0,1.063861,6,4.5 +24055,0,0.632035,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,7.374,8.006,0,15.168843,5,5 +24511,0,0.31648,1,1,0,2,4,,3,4,Jefferson,Ave,4718263,8.006,8.323,0,7.595513,6,4.5 +25896,0,0.46656,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.197432,0.15,4 +29069,0,0.297312,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.135492,0.15,4 +29071,0,0.426064,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.225531,0.15,4 +24266,0,0.631805,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,6.386,7.017,0,15.163327,5,5 +24164,0,0.357049,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,7.017,7.374,0,8.569181,5,5 +3901,1,0.225026,1,0,0,1,1,RON,4,4,Shook/E I 94,RAMP,801108,0,0.225,0,,1.09,4 +4018,1,0.59549,3,0,0,1,1,,3,4,E I 94,,798501,8.798,9.394,0,,0.58,7 +4114,0,0.079597,1,1,1,2,3,,4,4,Harper,Ave,798408,7.972,8.051,0,1.910328,3.7,5 +4434,0,0.329503,1,1,0,2,5,,4,4,Union Lake,Rd,801201,0.186,0.515,0,7.908078,5.8,4.5 +4548,0,0.148296,2,2,0,2,3,,4,4,Shook,Rd,4211898,0.407,0.555,0,3.559098,3.7,5 +4572,1,0.15312,1,0,0,1,1,ROF,4,4,W I 94/Shook,RAMP,800602,0,0.153,0,,2.24,5 +4943,-1,0.344399,0,3,0,1,1,,3,4,W I 94,,798502,8.827,9.171,0,,0.58,7 +29072,0,0.326579,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.837891,0.15,4 +29931,0,0.449239,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.781724,0.15,4 +4261,0,0.20937,1,1,0,2,3,,4,4,Shook,Rd,4211898,0.086,0.295,0,5.024876,3.7,5 +40292,-1,0.01257,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.698,0.711,0,0.301677,5,5 +4390,0,0.146266,1,1,1,2,3,,4,4,Harper,Ave,798408,7.825,7.972,0,3.510379,3.7,5 +4116,0,0.020582,2,2,1,2,3,,4,4,Harper,Ave,798408,7.805,7.825,0,0.493964,3.7,5 +3962,0,0.070505,1,1,0,2,3,,4,4,Shook,Rd,4211898,0,0.071,0,1.692118,3.7,5 +4564,0,0.015265,1,1,0,2,3,,4,4,Shook,Rd,4211898,0.071,0.086,0,0.366351,3.7,5 +3956,0,0.111798,1,1,0,2,3,,4,4,Shook,Rd,4211898,0.295,0.407,0,2.683159,3.7,5 +4677,0,0.085341,1,1,0,2,5,,4,4,Union Lake,Rd,801201,0.515,0.601,0,2.048173,5.8,4.5 +29044,0,0.179908,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.317787,0.15,4 +4243,0,0.136645,2,2,0,2,3,,3,4,Shook,Rd,4211898,0.555,0.692,0,3.279483,5,5 +29070,0,0.37669,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.040559,0.15,4 +3938,0,0.171158,2,2,0,2,3,,3,4,Shook,Rd,4211898,0.692,0.863,0,4.107791,5,5 +24218,0,0.229895,1,1,0,2,4,,3,4,Jefferson,Ave,4718263,8.54,8.77,0,5.517487,6,4.5 +24353,0,0.217547,1,1,0,2,4,,3,4,Jefferson,Ave,4718263,8.323,8.54,0,5.221135,6,4.5 +3891,1,0.092858,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,2.333,2.426,0,2.228603,3.7,5 +3997,1,1.12509,3,0,0,1,1,,4,4,E I 94,,798501,10.51,11.635,0,,0.8,7.5 +5074,-1,1.11702,0,3,0,1,1,,4,4,W I 94,,798502,10.534,11.651,0,,0.8,7.5 +5131,0,0.131898,1,1,0,2,4,,4,4,River,Rd,831807,1.393,1.525,0,3.165548,4.5,4.5 +5570,1,0.239135,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,11.882,12.121,0,5.739237,3.7,5 +5767,0,0.350083,1,1,0,2,5,,4,4,Reimold,St,819809,0.281,0.631,0,8.40199,5.8,4.5 +6265,0,0.258829,1,1,0,2,4,,4,4,Crocker,Blvd,819209,4.884,5.143,0,6.211905,4.5,4.5 +6689,0,0.631152,1,1,0,2,4,,4,4,Crocker,Blvd,819209,4.253,4.884,0,15.147649,4.5,4.5 +6952,0,0.390472,1,1,0,2,5,,4,4,Lanse Creuse,St,5498373,0.531,0.921,0,9.371328,5.8,4.5 +29049,0,0.322668,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.744042,0.15,4 +29074,0,0.165531,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.972733,0.15,4 +3931,1,0.359726,1,0,0,1,1,RON,4,4,W Metropolitan/E I 94,RAMP,801203,0,0.36,0,,1.09,4 +4064,-1,0.233272,0,3,0,1,1,,4,4,W I 94,,798502,10.301,10.534,0,,0.8,7.5 +4300,1,0.342107,3,0,0,1,1,,4,4,E I 94,,798501,10.168,10.51,0,,0.8,7.5 +5094,1,0.33315,1,0,0,1,1,ROF,4,4,W I 94/Metropolitan,RAMP,801603,0,0.333,0,,2.24,5 +5612,1,0.185976,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,11.507,11.693,0,4.463425,3.7,5 +4003,1,0.111825,3,0,0,1,1,,4,4,E I 94,,798501,10.056,10.168,0,,0.8,7.5 +4748,1,0.217936,1,0,0,1,1,RON,4,4,E Metropolitan/E I 94,RAMP,801110,0,0.218,0,,1.09,4 +4907,-1,0.288822,0,3,0,1,1,,4,4,W I 94,,798502,10.012,10.301,0,,0.8,7.5 +4911,1,0.156649,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,2.426,2.583,0,3.759567,3.7,5 +5076,1,0.2308,1,0,0,1,1,ROF,4,4,E I 94/Metropolitan,RAMP,801109,0,0.231,0,,2.24,5 +5610,1,0.021381,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,11.693,11.714,0,0.513145,3.7,5 +20551,1,0.254014,1,0,0,1,1,RON,4,4,E Metropolitan/W I 94,RAMP,4205735,0,0.254,0,,1.09,4 +40672,1,0.130768,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,2.583,2.713,0,3.138424,3.7,5 +40671,1,0.1176,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,11.714,11.832,0,2.822398,3.7,5 +4557,1,0.045608,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,2.713,2.759,0,1.094582,3.7,5 +4700,1,0.217547,1,0,0,1,1,RON,4,4,W Metropolitan/W I 94,RAMP,801602,0,0.218,0,,1.09,4 +5600,1,0.050166,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,11.832,11.882,0,1.203986,3.7,5 +6125,0,0.280655,1,1,0,2,5,,4,4,Reimold,St,819809,0,0.281,0,6.735728,5.8,4.5 +29073,0,0.112712,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.705091,0.15,4 +4350,0,0.209448,1,1,1,2,5,,3,4,Avery,St,798408,10.236,10.446,0,5.026763,8,4.5 +4884,0,0.616105,1,1,0,2,4,,4,4,River,Rd,800901,0.269,0.885,0,14.786515,4.5,4.5 +6026,0,0.387858,1,1,0,2,5,,4,4,Lanse Creuse,St,5498373,0.921,1.309,0,9.308594,5.8,4.5 +6584,0,0.393087,2,2,0,2,4,,3,4,River,Rd,831807,0.587,0.98,0,9.434092,6,4.5 +6021,0,0.304159,1,1,0,2,4,,3,4,Crocker,Blvd,819209,3.949,4.253,0,7.299812,6,4.5 +4071,0,0.200299,1,1,1,2,5,,3,4,Avery,St,798408,10.036,10.236,0,4.807183,8,4.5 +6420,0,0.067422,1,1,0,2,4,,3,4,Crocker,Blvd,819209,3.882,3.949,0,1.618119,6,4.5 +29055,0,0.182618,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.382828,0.15,4 +3865,0,0.004804,1,1,0,2,4,,3,4,River,Rd,800901,0.264,0.269,0,0.115298,6,4.5 +3863,-1,0.219995,0,3,0,1,1,,4,4,W I 94,,798502,11.651,11.871,0,,0.8,7.5 +4296,1,0.188846,3,0,0,1,1,,4,4,E I 94,,798501,11.635,11.823,0,,0.8,7.5 +4439,1,0.176714,1,0,0,1,1,ROF,3,4,W I 94/River,RAMP,801605,0,0.177,0,,2.24,5 +4763,1,0.16608,1,0,0,1,1,RON,4,4,River/W I 94,RAMP,801604,0,0.166,0,,1.09,4 +4783,1,0.203582,1,0,0,1,1,RON,4,4,River/E I 94,RAMP,801208,0,0.204,0,,1.09,4 +5810,0,0.336966,1,1,0,2,4,,4,4,River,Rd,831807,1.049,1.385,0,8.087194,4.5,4.5 +4166,1,0.073555,1,0,0,1,1,ROF,3,4,W I 94/W River,RAMP,801605,0.177,0.25,0,,2.24,5 +6295,0,0.053152,2,1,0,2,4,,3,4,River,Rd,831807,0.98,1.034,0,1.275657,6,4.5 +20155,1,0.048358,1,0,0,1,1,ROF,3,4,W I 94/E River,RAMP,4208283,0,0.048,0,,2.24,5 +6069,0,0.015022,2,1,0,2,4,,3,4,River,Rd,831807,1.034,1.049,0,0.360525,6,4.5 +4953,1,0.162035,1,0,0,1,1,ROF,4,4,E I 94/River,RAMP,801207,0,0.162,0,,2.24,5 +5580,0,0.007809,1,1,0,2,4,,4,4,River,Rd,831807,1.385,1.393,0,0.187411,4.5,4.5 +4231,1,0.368222,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,1.965,2.333,0,8.837339,3.7,5 +5562,1,0.361427,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,12.121,12.482,0,8.674245,3.7,5 +5644,0,0.530803,1,1,0,2,5,,4,4,Lanse Creuse,St,5498373,0,0.531,0,12.739273,5.8,4.5 +6124,0,0.62922,1,1,0,2,4,,4,4,Crocker,Blvd,819209,5.177,5.806,0,15.101273,4.5,4.5 +25931,0,0.398071,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.553696,0.15,4 +6525,0,0.022455,1,1,0,2,4,,4,4,Crocker,Blvd,819209,5.154,5.177,0,0.538911,4.5,4.5 +5868,0,0.011189,1,1,0,2,4,,4,4,Crocker,Blvd,819209,5.143,5.154,0,0.268525,4.5,4.5 +6031,0,0.445739,1,1,0,2,5,,4,4,Lanse Creuse,St,815306,0,0.446,0,10.697747,5.8,4.5 +24354,0,0.241391,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,9.056,9.298,0,5.793395,4.5,4.5 +5677,1,0.971064,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,6.492,7.463,0,23.305525,3.7,5 +5844,0,0.578534,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,4.821,5.4,0,13.884813,4.5,4.5 +5929,0,0.387185,1,1,0,2,4,,4,4,21 Mile,Rd,817708,6.859,7.246,0,9.292449,4.5,4.5 +6029,0,0.406201,1,1,0,2,5,,4,4,Little,Rd,819504,0.809,1.215,0,9.748827,5.8,4.5 +6162,0,0.292793,2,2,1,2,3,,4,4,Cass,Ave,819209,1.588,1.881,0,7.027024,3.7,5 +6247,0,1.020088,1,1,0,2,3,,4,4,23 Mile,Rd,807106,9.132,10.152,0,24.482111,3.7,5 +6424,-1,0.456937,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,9.534,9.991,0,10.966482,3.7,5 +6586,0,0.151081,2,2,1,2,3,,4,4,Gratiot,Ave,832010,4.559,4.709,0,3.625944,3.7,5 +6611,0,1.036639,1,1,0,2,4,,5,4,26 Mile,Rd,816702,8.773,9.809,0,24.879344,3,4 +6693,0,0.49882,1,1,0,2,5,,4,4,Fairchild,Rd,817902,2.073,2.572,0,11.971669,5.8,4.5 +6764,0,0.500722,1,1,0,2,5,,4,4,22 Mile,Rd,807104,8.577,9.078,0,12.017331,5.8,4.5 +19760,0,0.954387,1,1,0,2,4,,4,4,North,Ave,1817105,1.551,2.505,0,22.905291,4.5,4.5 +20059,0,1.018243,1,1,0,2,5,,5,4,25 Mile,Rd,4211019,8.955,9.973,0,24.437837,3.7,5 +20851,0,0.539789,1,1,0,2,4,,4,4,Card,Rd,4200010,2.03,2.57,0,12.954929,4.5,4.5 +24931,0,0.600956,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.422956,0.15,4 +28130,0,0.501754,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.042087,0.15,4 +29077,0,1.052082,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,25.249964,0.15,4 +29078,0,0.61994,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.878552,0.15,4 +29082,0,1.437341,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,34.496189,0.15,4 +29085,0,1.262456,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,30.298954,0.15,4 +29088,0,1.065068,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,25.561629,0.15,4 +29089,0,0.542524,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.020583,0.15,4 +29092,0,0.516458,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.394987,0.15,4 +29227,0,0.508367,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.200815,0.15,4 +3906,0,0.345455,1,1,0,2,4,,4,4,Garfield,Rd,798703,6.577,6.922,0,8.290914,4.5,4.5 +37540,1,0.029028,3,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.559,1.588,0,0.696667,3.7,5 +5466,0,0.441466,1,1,0,2,5,,4,4,22 Mile,Rd,807104,7.053,7.495,0,10.595193,5.8,4.5 +5537,0,0.514784,1,1,0,2,4,,4,4,21 Mile,Rd,817708,5.221,5.735,0,12.354808,4.5,4.5 +5925,0,0.438198,2,2,1,2,4,,4,4,Romeo Plank,Rd,819207,2.835,3.273,0,10.516745,4.5,4.5 +6067,1,0.160508,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,4.808,4.969,0,3.852204,3.7,5 +6111,0,0.460155,1,1,0,2,5,,4,4,Greenfield,Rd,819208,0.43,0.89,0,11.043709,5.8,4.5 +6313,0,0.041373,2,2,1,2,3,,4,4,Romeo Plank,Rd,819207,2.794,2.835,0,0.99294,3.7,5 +6438,-1,0.369627,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,7.956,8.326,0,8.871058,3.7,5 +40493,0,0.423344,1,1,0,2,4,,4,4,Canal,Rd,820607,5.34,5.763,0,10.160257,4.5,4.5 +20807,0,0.50391,1,1,0,2,5,,4,4,Tilch,Rd,4200028,0,0.504,0,12.093839,5.8,4.5 +20906,0,0.559507,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,0,0.559,0,13.428178,5.8,4.5 +25389,0,0.60765,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.583597,0.15,4 +25393,0,0.501441,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.034577,0.15,4 +25394,0,0.508006,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.192151,0.15,4 +25396,0,0.488193,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.716624,0.15,4 +25397,0,0.517865,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.428749,0.15,4 +25403,0,0.63657,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.277682,0.15,4 +25408,0,0.505165,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.123948,0.15,4 +25411,0,0.464309,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.143428,0.15,4 +25482,0,0.522456,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.538932,0.15,4 +29094,0,0.497048,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.929163,0.15,4 +29144,0,0.531727,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.761444,0.15,4 +4219,0,0.22514,2,2,1,2,4,,4,4,19 Mile,Rd,802506,1.527,1.752,0,5.403369,4.5,4.5 +5058,0,0.644799,2,2,1,2,3,,4,4,Garfield,Rd,798703,5.524,6.168,0,15.475183,3.7,5 +6214,0,0.299439,1,1,0,2,4,,4,4,Canal,Rd,820607,4.205,4.504,0,7.186537,4.5,4.5 +6471,-1,0.184748,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,7.056,7.241,0,4.433959,3.7,5 +6918,1,0.19531,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,4.07,4.265,0,4.687433,3.7,5 +25009,0,0.505303,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.127278,0.15,4 +25402,0,0.555166,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.323973,0.15,4 +25406,0,0.560462,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.451079,0.15,4 +28679,0,0.506539,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.156936,0.15,4 +4291,0,0.176434,2,2,1,2,3,,4,4,Garfield,Rd,798703,4.994,5.171,0,4.234413,3.7,5 +4514,0,0.463517,2,2,1,2,4,,4,4,19 Mile,Rd,802506,1.064,1.527,0,11.12441,4.5,4.5 +6755,0,0.469347,1,1,0,2,4,,4,4,Canal,Rd,820607,3.735,4.205,0,11.264339,4.5,4.5 +28158,0,0.44133,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.591924,0.15,4 +28684,0,0.332844,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.988255,0.15,4 +28686,0,0.574878,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.797069,0.15,4 +28680,0,0.196642,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.719399,0.15,4 +5449,0,0.063812,1,1,0,2,4,,4,4,Canal,Rd,820607,3.671,3.735,0,1.531485,4.5,4.5 +28682,0,0.178639,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.287333,0.15,4 +4275,0,0.036216,2,2,1,2,4,,4,4,19 Mile,Rd,802506,1.027,1.064,0,0.869174,4.5,4.5 +3985,0,0.313881,2,2,1,2,3,,4,4,Garfield,Rd,798703,4.681,4.994,0,7.533144,3.7,5 +3983,0,0.353126,2,2,1,2,3,,4,4,Garfield,Rd,798703,5.171,5.524,0,8.475032,3.7,5 +5614,1,0.496854,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,3.573,4.07,0,11.924497,3.7,5 +6084,-1,0.486129,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,6.57,7.056,0,11.667102,3.7,5 +24997,0,0.525222,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.605325,0.15,4 +25481,0,0.550638,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.215314,0.15,4 +28678,0,0.506928,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.166267,0.15,4 +6495,-1,0.129463,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,6.44,6.57,0,3.107116,3.7,5 +4733,0,0.365235,2,2,1,2,3,,4,4,Garfield,Rd,798703,6.168,6.534,0,8.76564,3.7,5 +4203,0,0.043165,2,2,0,2,3,,4,4,Garfield,Rd,798703,6.534,6.577,0,1.035968,3.7,5 +5833,0,0.307771,1,1,0,2,4,,4,4,Canal,Rd,820607,4.504,4.812,0,7.386499,4.5,4.5 +6515,0,0.430386,1,1,0,2,5,,4,4,Greenfield,Rd,819208,0,0.43,0,10.329253,5.8,4.5 +25405,0,0.426192,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.228598,0.15,4 +25407,0,0.402449,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.658781,0.15,4 +3918,0,0.122871,2,2,1,2,4,,4,4,19 Mile,Rd,802506,1.752,1.875,0,2.948893,4.5,4.5 +5444,0,0.06699,1,1,0,2,4,,4,4,Canal,Rd,820607,4.812,4.879,0,1.60777,4.5,4.5 +25404,0,0.041083,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,0.985989,0.15,4 +6456,-1,0.291127,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,7.508,7.799,0,6.987059,3.7,5 +6475,1,0.282727,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,4.526,4.808,0,6.785439,3.7,5 +25401,0,0.517822,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.427724,0.15,4 +30219,0,0.55901,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.416239,0.15,4 +6063,-1,0.267345,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,7.241,7.508,0,6.416274,3.7,5 +6884,1,0.260761,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,4.265,4.526,0,6.258263,3.7,5 +6048,-1,0.157377,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,7.799,7.956,0,3.777052,3.7,5 +5948,0,0.325258,1,1,0,2,4,,4,4,21 Mile,Rd,817708,4.207,4.532,0,7.806194,4.5,4.5 +6647,0,0.839113,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,3.807,4.646,0,20.138709,4.5,4.5 +6773,0,1.012314,1,1,0,2,4,,4,4,22 Mile,Rd,807104,6.041,7.053,0,24.295547,4.5,4.5 +25409,0,0.507876,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.189032,0.15,4 +25410,0,0.50938,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.22512,0.15,4 +28657,0,0.510973,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.263344,0.15,4 +29275,0,0.323575,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.765804,0.15,4 +4468,0,0.328509,1,1,0,2,4,,4,4,Garfield,Rd,798703,7.236,7.564,0,7.884226,4.5,4.5 +6342,0,0.505842,1,1,0,2,4,,4,4,21 Mile,Rd,817708,3.701,4.207,0,12.140207,4.5,4.5 +20806,0,0.461102,1,1,0,2,5,,4,4,Tilch,Rd,4200028,0.504,0.965,0,11.066445,5.8,4.5 +28677,0,0.457523,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.980555,0.15,4 +28676,0,0.087504,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.100084,0.15,4 +4799,0,0.313946,1,1,0,2,4,,4,4,Garfield,Rd,798703,6.922,7.236,0,7.534704,4.5,4.5 +5467,0,0.532765,1,1,0,2,4,,4,4,22 Mile,Rd,807104,5.509,6.041,0,12.786359,4.5,4.5 +28656,0,0.514333,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.343997,0.15,4 +5517,0,0.533707,2,2,1,2,4,,4,4,Romeo Plank,Rd,819207,3.273,3.807,0,12.808971,4.5,4.5 +6337,0,0.285958,1,1,0,2,4,,4,4,21 Mile,Rd,817708,4.661,4.947,0,6.862981,4.5,4.5 +25395,0,0.482653,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.583669,0.15,4 +25398,0,0.514682,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.352361,0.15,4 +5540,0,0.129175,1,1,0,2,4,,4,4,21 Mile,Rd,817708,4.532,4.661,0,3.100202,4.5,4.5 +25399,0,0.236317,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.671598,0.15,4 +5941,0,0.273478,1,1,0,2,4,,4,4,21 Mile,Rd,817708,4.947,5.221,0,6.563477,4.5,4.5 +6227,0,0.175458,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,4.646,4.821,0,4.210988,4.5,4.5 +29091,0,0.604419,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.50605,0.15,4 +37539,0,0.379826,2,2,1,2,3,,4,4,Cass,Ave,819209,0.026,0.406,0,9.115813,3.7,5 +6430,-1,0.326076,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,8.646,8.972,0,7.825831,3.7,5 +6467,1,0.359783,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,5.576,5.936,0,8.634801,3.7,5 +6664,0,0.463009,2,2,1,2,3,,4,4,Cass,Ave,819209,0.406,0.869,0,11.112205,3.7,5 +6769,0,0.651328,1,1,0,2,5,,4,4,Heydenreich,Rd,819502,0.329,0.98,0,15.631881,5.8,4.5 +25386,0,0.759431,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.226337,0.15,4 +25412,0,0.392221,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.413315,0.15,4 +28149,0,0.66205,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.88919,0.15,4 +37536,0,0.641688,2,2,1,2,4,,4,4,19 Mile,Rd,802506,1.875,2.516,0,15.400505,4.5,4.5 +6217,0,0.475824,1,1,1,2,5,,4,4,Romeo Plank,Rd,819207,0.996,1.472,0,11.419775,5.8,4.5 +28131,0,0.446547,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.717121,0.15,4 +28132,0,0.416607,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.998565,0.15,4 +40492,0,0.399259,1,1,0,2,4,,4,4,Canal,Rd,820607,4.879,5.278,0,9.58222,4.5,4.5 +37541,-1,0.033059,0,1,0,2,3,,4,4,Romeo Plank,Rd,4212032,0,0.033,0,0.79342,3.7,5 +37538,0,0.086594,1,1,1,2,5,,4,4,Romeo Plank,Rd,819207,1.472,1.559,0,2.078256,5.8,4.5 +6034,-1,0.320162,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,8.326,8.646,0,7.68388,3.7,5 +6476,0,0.552422,2,2,1,2,3,,4,4,Romeo Plank,Rd,819207,2.242,2.794,0,13.258131,3.7,5 +6874,1,0.234138,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,5.342,5.576,0,5.619314,3.7,5 +25005,0,0.487544,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.701056,0.15,4 +25006,0,0.71477,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.15449,0.15,4 +25400,0,0.672234,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.133627,0.15,4 +6885,0,0.327555,2,2,1,2,3,,4,4,Romeo Plank,Rd,819207,1.914,2.242,0,7.861324,3.7,5 +5684,1,0.373317,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,4.969,5.342,0,8.959599,3.7,5 +5464,0,0.328962,1,1,0,2,5,,4,4,Heydenreich,Rd,819502,0,0.329,0,7.895079,5.8,4.5 +5855,0,0.396401,2,2,1,2,3,,4,4,Cass,Ave,819209,1.123,1.52,0,9.513619,3.7,5 +6432,0,0.809421,1,1,0,2,5,,4,4,Little,Rd,819504,0,0.809,0,19.426094,5.8,4.5 +28134,0,0.513958,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.334997,0.15,4 +6243,0,0.25436,2,2,1,2,3,,4,4,Cass,Ave,819209,0.869,1.123,0,6.104645,3.7,5 +6577,0,0.068746,2,2,1,2,3,,4,4,Cass,Ave,819209,1.52,1.588,0,1.649916,3.7,5 +30220,0,0.21965,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.271604,0.15,4 +4215,0,0.625231,1,1,0,2,5,,4,4,Heydenreich,Rd,802507,0,0.625,0,15.005538,5.8,4.5 +6028,-1,0.561983,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,8.972,9.534,0,13.48758,3.7,5 +6059,1,0.556161,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,5.936,6.492,0,13.347872,3.7,5 +29099,0,0.63249,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.179749,0.15,4 +6385,0,0.066532,1,1,0,2,5,,4,4,Heydenreich,Rd,832703,0.295,0.361,0,1.596772,5.8,4.5 +25385,0,0.289443,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.94664,0.15,4 +26742,0,0.320259,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.686218,0.15,4 +5931,0,0.354674,1,1,0,2,4,,4,4,21 Mile,Rd,817708,5.878,6.232,0,8.512188,4.5,4.5 +6767,0,0.233521,1,1,0,2,5,,4,4,22 Mile,Rd,807104,7.832,8.065,0,5.604493,5.8,4.5 +20902,0,0.411427,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,0.975,1.387,0,9.874248,5.8,4.5 +25387,0,0.509204,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.220894,0.15,4 +25390,0,0.530305,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.727318,0.15,4 +25391,0,0.513061,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.313472,0.15,4 +29282,0,0.507321,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.175713,0.15,4 +25392,0,0.509274,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.222585,0.15,4 +6321,0,0.142117,1,1,0,2,4,,4,4,21 Mile,Rd,817708,5.735,5.878,0,3.410806,4.5,4.5 +6772,0,0.336936,1,1,0,2,5,,4,4,22 Mile,Rd,807104,7.495,7.832,0,8.086462,5.8,4.5 +25388,0,0.511824,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.283769,0.15,4 +5525,0,0.536448,1,1,0,2,4,,4,4,21 Mile,Rd,817708,6.232,6.768,0,12.874761,4.5,4.5 +20904,0,0.191657,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,0.559,0.751,0,4.599758,5.8,4.5 +25413,0,0.586218,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.069238,0.15,4 +29093,0,0.5319,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.765601,0.15,4 +20903,0,0.224403,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,0.751,0.975,0,5.38568,5.8,4.5 +6315,0,0.090543,1,1,0,2,4,,4,4,21 Mile,Rd,817708,6.768,6.859,0,2.17304,4.5,4.5 +6335,0,0.51245,1,1,0,2,5,,4,4,22 Mile,Rd,807104,8.065,8.577,0,12.298804,5.8,4.5 +20898,0,0.475538,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,1.515,1.99,0,11.412915,5.8,4.5 +29090,0,0.50695,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.166812,0.15,4 +29276,0,0.512343,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.29624,0.15,4 +20899,0,0.128173,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,1.387,1.515,0,3.076163,5.8,4.5 +5996,0,0.429169,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,7.486,7.915,0,10.300045,4.5,4.5 +6218,0,1.300214,1,1,0,2,4,,5,4,26 Mile,Rd,816702,7.455,8.755,0,31.205126,3,4 +6248,0,0.552776,1,1,0,2,3,,4,4,23 Mile,Rd,807106,7.987,8.539,0,13.266631,3.7,5 +20060,0,1.396231,1,1,0,2,5,,4,4,25 Mile,Rd,4211019,7.559,8.955,0,33.509537,5.8,4.5 +25930,0,1.563758,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,37.530181,0.15,4 +28120,0,0.50713,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.171131,0.15,4 +29086,0,1.091628,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,26.199071,0.15,4 +5441,0,0.565904,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,6.473,7.039,0,13.581701,4.5,4.5 +6399,0,0.447196,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,7.039,7.486,0,10.732693,4.5,4.5 +6670,0,0.736396,2,2,1,2,3,,4,4,23 Mile,Rd,807106,7.25,7.987,0,17.673516,3.7,5 +6916,0,0.343092,1,1,0,2,4,,4,4,24 Mile,Rd,815510,6.915,7.258,0,8.234197,4.5,4.5 +26941,0,0.756875,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.164991,0.15,4 +28123,0,0.873384,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,20.961219,0.15,4 +28124,0,0.545379,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.0891,0.15,4 +6253,0,0.41312,2,2,1,2,3,,4,4,23 Mile,Rd,807106,6.837,7.25,0,9.914886,3.7,5 +28126,0,0.503177,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.076242,0.15,4 +28128,0,0.524496,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.587914,0.15,4 +5609,0,0.275101,1,1,0,2,4,,4,4,24 Mile,Rd,815510,6.64,6.915,0,6.602436,4.5,4.5 +28121,0,0.60346,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.483052,0.15,4 +28122,0,0.503778,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.090673,0.15,4 +5825,0,0.599311,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,5.874,6.473,0,14.383474,4.5,4.5 +6198,0,0.474384,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,5.4,5.874,0,11.385221,4.5,4.5 +5787,0,0.372906,1,1,0,2,4,,4,4,Romeo Plank,Rd,816509,0.692,1.065,0,8.949741,4.5,4.5 +6633,0,0.72243,1,1,0,2,4,,4,4,26 Mile,Rd,816702,6.733,7.455,0,17.338314,4.5,4.5 +25414,0,0.884938,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,21.238522,0.15,4 +28184,0,0.532776,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.786633,0.15,4 +29146,0,0.417367,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.01681,0.15,4 +6717,0,0.69253,1,1,0,2,4,,4,4,Romeo Plank,Rd,816509,0,0.692,0,16.620714,4.5,4.5 +20063,0,0.288717,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,6.643,6.931,0,6.929199,4.5,4.5 +28625,0,0.460038,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.040913,0.15,4 +5836,0,0.377005,1,1,0,2,4,,4,4,26 Mile,Rd,816702,6.356,6.733,0,9.048121,4.5,4.5 +25415,0,0.191524,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.596588,0.15,4 +6668,0,0.593079,1,1,0,2,3,,4,4,23 Mile,Rd,807106,8.539,9.132,0,14.233897,3.7,5 +29084,0,0.663866,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.932785,0.15,4 +29087,0,0.50293,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.070315,0.15,4 +29079,0,0.022211,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,0.533065,0.15,4 +29080,0,1.042975,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.03139,0.15,4 +5835,0,0.017987,1,1,0,2,4,,5,4,26 Mile,Rd,816702,8.755,8.773,0,0.431677,3,4 +3984,1,0.403768,3,0,0,1,1,,4,4,E I 94,,798501,14.388,14.792,0,,0.8,7.5 +4742,-1,0.372396,0,3,0,1,1,,4,4,W I 94,,798502,14.434,14.806,0,,0.8,7.5 +5475,0,0.430159,1,1,0,2,4,,4,4,Fairchild,Rd,817902,0.045,0.475,0,10.323828,4.5,4.5 +5482,0,0.609127,2,2,1,2,4,,4,4,21 Mile,Rd,817708,8.266,8.875,0,14.619038,4.5,4.5 +5581,1,0.274747,3,0,0,2,3,DIV,4,4,Gratiot,Ave,832010,0.638,0.912,0,6.593935,3.7,5 +6006,-1,0.309324,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,11.008,11.317,0,7.423775,3.7,5 +6383,0,0.60788,2,2,1,2,3,,4,4,Gratiot,Ave,832010,2.133,2.741,0,14.589118,3.7,5 +6451,1,0.326056,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,8.019,8.345,0,7.825346,3.7,5 +6730,0,0.27413,2,2,0,2,5,,3,4,Henry B Joy,Blvd,837908,0.448,0.722,0,6.57912,8,4.5 +19212,0,0.428854,2,2,1,2,4,,4,4,North,Ave,1817105,0.172,0.601,0,10.292489,4.5,4.5 +20166,-1,0.295883,0,3,0,2,3,DIV,4,4,Gratiot,Ave,4208203,12.18,12.476,0,7.101181,3.7,5 +20273,1,0.396935,1,0,0,1,1,RON,4,4,M 59/E I 94,RAMP,4210058,0.035,0.432,0,,1.09,4 +20319,1,0.279533,1,0,0,1,1,RON,4,4,W M 59/W I 94,RAMP,4208181,0,0.279,0,,1.09,4 +20411,1,0.486443,1,0,0,1,1,ROF,4,4,W I 94/M 59,RAMP,4210055,0,0.486,0,,2.24,5 +20698,1,0.288012,1,0,0,1,1,ROF,4,4,E I 94/W M 59,RAMP,4210057,0,0.288,0,,2.24,5 +20862,0,0.38837,1,1,0,2,4,,4,4,Card,Rd,4200010,0,0.388,0,9.320888,4.5,4.5 +24764,0,0.66591,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.981852,0.15,4 +24933,0,0.794208,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,19.060992,0.15,4 +25418,0,0.603672,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.488117,0.15,4 +25423,0,0.491232,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.789577,0.15,4 +25901,0,0.531423,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.754144,0.15,4 +27392,0,0.59529,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.286972,0.15,4 +27400,0,0.640235,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.365637,0.15,4 +28620,0,0.498674,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.968171,0.15,4 +28707,0,0.513232,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.317576,0.15,4 +29059,0,0.63019,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.124562,0.15,4 +29095,0,0.371751,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.922014,0.15,4 +5270,0,0.46147,2,2,1,2,3,,3,4,Groesbeck,Hwy,803009,12.644,13.106,0,11.075272,5,5 +5529,0,0.16876,1,1,1,2,5,,4,4,Elizabeth,Rd,821106,0.752,0.92,0,4.05023,5.8,4.5 +5556,1,0.091449,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,7.463,7.554,0,2.194787,3.7,5 +5973,0,0.224697,1,1,0,2,5,,3,4,Hubbard,Ave,825409,0.464,0.688,0,5.392729,8,4.5 +6024,-1,0.565324,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,9.991,10.556,0,13.567782,3.7,5 +6060,0,0.187732,1,1,0,2,5,,3,4,Elizabeth,Rd,821106,0.92,1.108,0,4.505563,8,4.5 +6553,0,0.509279,1,1,0,2,5,,4,4,Rose,St,819509,1.377,1.886,0,12.222693,5.8,4.5 +6945,0,0.380043,2,2,0,2,4,,3,4,North,Ave,819704,0.707,1.087,0,9.121028,6,4.5 +28683,0,0.546116,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.106791,0.15,4 +29097,0,0.418732,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.049576,0.15,4 +29100,0,0.374454,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.986886,0.15,4 +5271,0,0.192292,2,2,1,2,3,,3,4,Groesbeck,Hwy,803009,12.452,12.644,0,4.615016,5,5 +5272,0,0.380138,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,12.072,12.452,0,9.123319,3.7,5 +6139,0,0.335709,1,1,0,2,5,,3,4,Rose,St,819509,0.929,1.265,0,8.057015,8,4.5 +6376,0,0.293327,1,1,0,2,5,,3,4,Hubbard,Ave,825409,0.17,0.464,0,7.03984,8,4.5 +28629,0,0.295521,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.092497,0.15,4 +29102,0,0.1678,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.027204,0.15,4 +5273,0,0.357209,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,11.715,12.072,0,8.57301,3.7,5 +5804,0,0.214422,1,1,1,2,3,,3,4,Cass,Ave,819209,1.881,2.095,0,5.146122,5,5 +6540,0,0.372233,1,1,0,2,5,,3,4,Rose,St,819509,0.557,0.929,0,8.933589,8,4.5 +6797,0,0.170372,1,1,0,2,5,,4,4,Hubbard,Ave,825409,0,0.17,0,4.088936,5.8,4.5 +6975,0,0.074143,1,1,0,2,5,,4,4,Rose,St,819509,1.303,1.377,0,1.779421,5.8,4.5 +29101,0,0.07178,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.722731,0.15,4 +5781,0,0.038058,1,1,0,2,5,,3,4,Rose,St,819509,1.265,1.303,0,0.913384,8,4.5 +29103,0,0.006632,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.15918,0.15,4 +28681,0,0.267659,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.423822,0.15,4 +5933,0,0.383141,1,1,0,2,5,,4,4,Elizabeth,Rd,821106,0.369,0.752,0,9.195376,5.8,4.5 +6729,0,0.325238,1,1,0,2,5,,4,4,Dunham,Rd,832505,0,0.325,0,7.805722,5.8,4.5 +29098,0,0.055051,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.32123,0.15,4 +6588,0,0.354543,1,1,0,2,5,,4,4,Dunham,Rd,832505,0.325,0.68,0,8.509036,5.8,4.5 +6323,0,0.368536,1,1,0,2,5,,4,4,Elizabeth,Rd,821106,0,0.369,0,8.844874,5.8,4.5 +4312,0,0.12162,1,1,0,2,5,,3,4,Market,St,800808,0.95,1.071,0,2.918891,8,4.5 +5587,0,0.197638,1,1,0,2,5,,3,4,Clair,Ave,837908,0,0.198,0,4.743305,8,4.5 +5899,1,0.314933,3,0,0,2,3,DIV,3,4,Gratiot,Ave,832010,0.323,0.638,0,7.558396,5,5 +6129,0,0.288549,1,1,0,2,4,,3,4,North,Ave,819704,0.41,0.698,0,6.925181,6,4.5 +20167,-1,0.302177,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.878,12.18,0,7.252244,5,5 +20205,-1,0.112059,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.469,11.581,0,2.689408,5,5 +28623,0,0.288657,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.927764,0.15,4 +28631,0,0.177658,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.2638,0.15,4 +30221,0,0.621474,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.91537,0.15,4 +4017,0,0.079627,1,1,0,2,5,,3,4,Market,St,800808,1.071,1.151,0,1.911055,8,4.5 +5572,0,0.25798,1,1,0,2,5,,3,4,Hubbard,Ave,825409,0.688,0.946,0,6.191525,8,4.5 +6143,0,0.153732,1,1,1,2,4,,3,4,North,Ave,819704,0,0.154,0,3.689571,6,4.5 +28630,0,0.2255,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.411991,0.15,4 +28632,0,0.072532,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.740756,0.15,4 +20206,-1,0.12183,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.347,11.469,0,2.923913,5,5 +6530,0,0.137997,1,1,1,2,4,,3,4,North,Ave,819704,0.272,0.41,0,3.311932,6,4.5 +6948,0,0.082479,1,1,1,2,4,,3,4,North,Ave,819704,0.189,0.272,0,1.979496,6,4.5 +5034,0,0.047935,1,1,0,2,5,,3,4,Market,St,800808,1.151,1.199,0,1.15045,8,4.5 +5786,0,0.035509,1,1,1,2,4,,3,4,North,Ave,819704,0.154,0.189,0,0.852213,6,4.5 +6877,0,0.03333,1,1,0,2,5,,3,4,Hubbard,Ave,825409,0.946,0.98,0,0.79991,8,4.5 +5121,0,0.175295,1,1,0,2,5,,3,4,Elizabeth,St,821106,1.239,1.415,0,4.207085,8,4.5 +5678,0,0.131396,1,1,0,2,5,,3,4,Elizabeth,Rd,821106,1.108,1.239,0,3.153516,8,4.5 +5770,0,0.009114,1,1,0,2,4,,3,4,North,Ave,819704,0.698,0.707,0,0.218727,6,4.5 +5586,1,0.096414,4,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.822,1.918,0,2.313937,5,5 +5979,1,0.32285,3,0,0,2,3,DIV,3,4,Gratiot,Ave,832010,0,0.323,0,7.748411,5,5 +20203,-1,0.253832,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.624,11.878,0,6.091974,5,5 +20687,-1,0.060683,0,2,0,2,5,,3,4,Welts,St,4204859,0,0.061,0,1.456391,8,4.5 +20803,1,0.042657,2,0,0,2,5,,3,4,Main,St,4200029,0.096,0.139,0,1.023769,8,4.5 +28621,0,0.172693,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.144624,0.15,4 +28624,0,0.132277,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.174654,0.15,4 +4042,0,0.024611,2,2,0,2,5,,3,4,Market,St,800808,0.852,0.877,0,0.590658,8,4.5 +5418,1,0.078847,4,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.918,1.997,0,1.892322,5,5 +20050,0,0.132914,1,1,0,2,5,,3,4,Main,St,4208720,0.694,0.827,0,3.189925,8,4.5 +20804,0,0.080475,1,1,0,2,5,,3,4,Main,St,4200029,0.016,0.096,0,1.931391,8,4.5 +5052,0,0.072817,2,2,0,2,5,,3,4,Market,St,800808,0.877,0.95,0,1.747611,8,4.5 +6808,1,0.036753,2,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.997,2.034,0,0.88208,5,5 +20049,1,0.025256,2,0,0,2,5,,3,4,Main,St,4208720,0.827,0.853,0,0.60615,8,4.5 +20805,1,0.015644,2,0,0,2,5,,3,4,Main,St,4200029,0,0.016,0,0.375462,8,4.5 +28628,0,0.221127,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.307046,0.15,4 +20204,-1,0.042983,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.581,11.624,0,1.03159,5,5 +5503,0,0.204928,1,1,0,2,5,,3,4,Clair,Ave,837908,0.198,0.403,0,4.918264,8,4.5 +5135,0,0.045072,2,2,0,2,5,,3,4,Clair,Ave,837908,0.403,0.448,0,1.08172,8,4.5 +5267,0,0.399707,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,13.699,14.098,0,9.592973,3.7,5 +6405,-1,0.452138,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,10.556,11.008,0,10.851309,3.7,5 +6867,1,0.465034,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,7.554,8.019,0,11.160816,3.7,5 +25424,0,0.465363,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.168717,0.15,4 +5268,0,0.338518,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,13.36,13.699,0,8.124438,3.7,5 +6527,0,0.433677,2,2,0,2,4,,4,4,North,Ave,819704,1.087,1.521,0,10.408239,4.5,4.5 +5269,0,0.254555,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,13.106,13.36,0,6.109313,3.7,5 +19214,0,0.130604,2,2,1,2,3,,4,4,Groesbeck,Hwy,1817105,0,0.131,0,3.134499,3.7,5 +19213,0,0.041559,2,2,1,2,3,,4,4,Groesbeck,Hwy,1817105,0.131,0.172,0,0.997424,3.7,5 +5523,0,0.566177,1,1,0,2,4,,4,4,21 Mile,Rd,817708,7.246,7.812,0,13.588251,4.5,4.5 +19210,0,0.407362,1,1,0,2,4,,4,4,North,Ave,1817105,1.144,1.551,0,9.776679,4.5,4.5 +20858,0,0.474176,1,1,0,2,4,,4,4,Card,Rd,4200010,1.018,1.492,0,11.380231,4.5,4.5 +24932,0,1.014827,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,24.355851,0.15,4 +28701,0,0.505109,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.122625,0.15,4 +20859,0,0.506644,1,1,0,2,4,,4,4,Card,Rd,4200010,0.512,1.018,0,12.159461,4.5,4.5 +20860,0,0.123493,1,1,0,2,4,,4,4,Card,Rd,4200010,0.388,0.512,0,2.963837,4.5,4.5 +20856,0,0.418734,1,1,0,2,4,,4,4,Card,Rd,4200010,1.492,1.911,0,10.049628,4.5,4.5 +29075,0,0.526525,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.636598,0.15,4 +20853,0,0.119453,1,1,0,2,4,,4,4,Card,Rd,4200010,1.911,2.03,0,2.866864,4.5,4.5 +5880,0,0.408991,1,1,0,2,4,,4,4,21 Mile,Rd,817708,7.858,8.266,0,9.815793,4.5,4.5 +19211,0,0.543009,2,2,1,2,4,,4,4,North,Ave,1817105,0.601,1.144,0,13.03222,4.5,4.5 +25422,0,0.512963,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.311106,0.15,4 +28148,0,0.534614,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.830729,0.15,4 +6278,0,0.045508,1,1,0,2,4,,4,4,21 Mile,Rd,817708,7.812,7.858,0,1.092181,4.5,4.5 +5414,0,0.090824,2,2,1,2,3,,4,4,Gratiot,Ave,832010,0.912,1.003,0,2.17977,3.7,5 +5983,0,0.408309,2,2,0,2,5,,4,4,Henry B Joy,Blvd,837908,1.042,1.45,0,9.799411,5.8,4.5 +6349,-1,0.114127,0,3,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,12.122,12.236,0,2.739057,3.7,5 +20558,1,0.141733,3,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205580,0.317,0.459,0,3.401596,3.7,5 +25925,0,0.189442,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.54662,0.15,4 +6483,0,0.225802,2,2,0,2,5,,3,4,Henry B Joy,Blvd,837908,0.722,0.947,0,5.419258,8,4.5 +25421,0,0.365418,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.770022,0.15,4 +29096,0,0.230744,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.537862,0.15,4 +28618,0,0.314846,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.556302,0.15,4 +6175,0,0.094216,2,2,0,2,5,,3,4,Henry B Joy,Blvd,837908,0.947,1.042,0,2.26118,8,4.5 +6003,-1,0.185471,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,11.611,11.797,0,4.451295,3.7,5 +6836,1,0.177152,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,8.616,8.793,0,4.251651,3.7,5 +6888,0,0.73369,2,2,1,2,3,,4,4,Gratiot,Ave,832010,1.359,2.093,0,17.608558,3.7,5 +5583,0,0.355992,2,2,1,2,3,,4,4,Gratiot,Ave,832010,1.003,1.359,0,8.543816,3.7,5 +6043,1,0.270705,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,8.345,8.616,0,6.496931,3.7,5 +6403,-1,0.294188,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,11.317,11.611,0,7.060522,3.7,5 +5872,1,0.045444,1,0,0,2,3,,4,4,Fairchild,Rd,817902,0,0.045,0,1.090659,3.7,5 +5961,-1,0.211179,0,3,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,11.911,12.122,0,5.068296,3.7,5 +20559,1,0.196213,3,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205580,0.121,0.317,0,4.709105,3.7,5 +27393,0,0.399714,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.593139,0.15,4 +29104,0,0.365749,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.777976,0.15,4 +6354,-1,0.114381,0,3,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,11.797,11.911,0,2.745138,3.7,5 +20562,1,0.1211,3,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205580,0,0.121,0,2.906388,3.7,5 +6728,0,0.040846,2,2,1,2,3,,4,4,Gratiot,Ave,832010,2.093,2.133,0,0.980293,3.7,5 +4292,1,0.260903,3,0,0,1,1,,4,4,E I 94,,798501,14.127,14.388,0,,0.8,7.5 +5069,-1,0.282356,0,3,0,1,1,,4,4,W I 94,,798502,14.152,14.434,0,,0.8,7.5 +6348,-1,0.136738,0,2,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,12.323,12.459,0,3.281716,3.7,5 +19876,1,0.203703,1,0,0,1,1,RON,4,4,E M 59/W I 94,RAMP,4210056,0,0.204,0,,1.09,4 +20318,1,0.311643,1,0,0,1,1,ROF,4,4,E I 94/E M 59,RAMP,4208182,0,0.312,0,,2.24,5 +20557,1,0.113183,2,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205580,0.459,0.572,0,2.716387,3.7,5 +5957,-1,0.086442,0,2,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,12.236,12.323,0,2.074617,3.7,5 +20225,1,0.028129,1,0,0,1,3,RSF,4,4,W I 94/M 59,RAMP,4210055,0.486,0.514,0,,3.7,5 +20622,1,0.148292,2,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205105,0,0.148,0,3.559019,3.7,5 +5954,-1,0.074571,0,2,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,12.459,12.534,0,1.789702,3.7,5 +20461,1,0.035079,1,0,0,1,3,RSF,4,4,M 59/E I 94,RAMP,4210058,0,0.035,0,,3.7,5 +20620,1,0.015138,2,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205105,0.148,0.163,0,0.363316,3.7,5 +3973,1,0.528824,3,0,0,1,1,,4,4,E I 94,,798501,15.153,15.682,0,,0.8,7.5 +4425,1,0.37546,1,0,0,1,1,ROF,4,4,W I 94/21 Mile,RAMP,801609,0,0.375,0,,2.24,5 +4654,-1,0.269904,0,3,0,1,1,,4,4,W I 94,,798502,15.578,15.848,0,,0.8,7.5 +4664,1,0.04126,1,0,0,1,1,RON,4,4,21 Mile/E I 94,RAMP,801305,0,0.041,0,,1.09,4 +5779,0,0.456721,1,1,0,2,5,,4,4,Fairchild,Rd,817902,1.021,1.477,0,10.961305,5.8,4.5 +5850,0,0.241679,2,2,1,2,4,,4,4,21 Mile,Rd,817708,9.223,9.464,0,5.800297,4.5,4.5 +5900,0,0.363515,2,2,1,2,3,,4,4,Gratiot,Ave,832010,3.203,3.567,0,8.724364,3.7,5 +6172,0,0.462089,2,2,1,2,3,,4,4,Gratiot,Ave,832010,2.741,3.203,0,11.090143,3.7,5 +6538,0,0.188589,1,1,0,2,5,,4,4,22 Mile,Rd,818404,0,0.189,0,4.526138,5.8,4.5 +24929,0,0.376593,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.038222,0.15,4 +25419,0,0.298245,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.157887,0.15,4 +29105,0,0.662795,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.907089,0.15,4 +6240,0,0.347189,2,2,1,2,4,,4,4,21 Mile,Rd,817708,8.875,9.223,0,8.332539,4.5,4.5 +6778,0,0.545401,1,1,0,2,4,,4,4,Fairchild,Rd,817902,0.475,1.021,0,13.089618,4.5,4.5 +29108,0,0.516721,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.401296,0.15,4 +25420,0,0.100511,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.412258,0.15,4 +5379,0,0.595935,1,1,0,2,5,,4,4,Fairchild,Rd,817902,1.477,2.073,0,14.302428,5.8,4.5 +29076,0,0.57054,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.692972,0.15,4 +4276,1,0.361501,3,0,0,1,1,,4,4,E I 94,,798501,14.792,15.153,0,,0.8,7.5 +4998,-1,0.77229,0,3,0,1,1,,4,4,W I 94,,798502,14.806,15.578,0,,0.8,7.5 +6201,0,0.090067,2,2,1,2,4,,4,4,21 Mile,Rd,817708,9.846,9.936,0,2.161619,4.5,4.5 +25416,0,0.522181,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.532343,0.15,4 +5460,0,0.382055,2,2,1,2,4,,4,4,21 Mile,Rd,817708,9.464,9.846,0,9.16932,4.5,4.5 +39861,-1,0.553925,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,2.059,2.613,0,13.294195,3.7,5 +4741,1,0.164235,1,0,0,1,1,RON,4,4,21 Mile/W I 94,RAMP,801608,0.069,0.233,0,,1.09,4 +5068,1,0.068651,1,0,0,1,1,RON,4,4,W 21 Mile/W I 94,RAMP,801608,0,0.069,0,,1.09,4 +6017,0,0.048896,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.027,10.076,0,1.173513,4.5,4.5 +5827,0,0.081596,2,2,1,2,4,,4,4,21 Mile,Rd,817708,9.936,10.018,0,1.958301,4.5,4.5 +20745,1,0.044593,1,0,0,1,1,RON,4,4,E 21 Mile/W I 94,RAMP,4201833,0,0.045,0,,1.09,4 +5442,0,0.00964,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.018,10.027,0,0.231361,4.5,4.5 +5627,0,0.140912,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.076,10.217,0,3.381891,4.5,4.5 +4181,1,0.415955,1,0,0,1,1,ROF,4,4,E I 94/21 Mile,RAMP,801303,0,0.416,0,,2.24,5 +5415,0,0.511004,2,2,1,2,3,,4,4,Gratiot,Ave,832010,3.801,4.312,0,12.264085,3.7,5 +6931,0,0.321331,1,1,0,2,5,,4,4,22 Mile,Rd,818404,0.503,0.824,0,7.711944,5.8,4.5 +29106,0,0.414097,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.93833,0.15,4 +29817,0,0.265886,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.381256,0.15,4 +5687,0,0.234494,2,2,1,2,3,,4,4,Gratiot,Ave,832010,3.567,3.801,0,5.627849,3.7,5 +29107,0,0.286527,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.87666,0.15,4 +6138,0,0.037107,1,1,0,2,5,,4,4,22 Mile,Rd,818404,0.466,0.503,0,0.890571,5.8,4.5 +6889,0,0.246554,2,2,1,2,3,,4,4,Gratiot,Ave,832010,4.312,4.559,0,5.917285,3.7,5 +5446,0,1.020496,1,1,0,2,5,,5,4,Fairchild,Rd,817902,4.816,5.837,0,24.491901,3.7,5 +6157,0,0.502479,1,1,0,2,4,,5,4,26 Mile,Rd,816702,11.059,11.562,0,12.059504,3,4 +6660,0,1.26337,2,2,1,2,3,,4,4,23 Mile,Rd,807106,11.187,12.45,0,30.320889,3.7,5 +19757,0,1.013939,1,1,0,2,4,,5,4,North,Ave,1817105,4.678,5.692,0,24.334545,3,4 +20321,0,0.624353,1,1,0,2,5,,5,4,Fairchild,Rd,4208137,0,0.624,0,14.98446,3.7,5 +20811,0,1.078769,1,1,0,2,5,GRV,5,4,Card,Rd,4200010,4.057,5.136,0,25.89045,5.55,5 +29081,0,1.141955,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,27.406912,0.15,4 +29112,0,0.585589,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,14.054132,0.15,4 +29113,0,0.733104,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,17.594484,0.15,4 +6244,0,0.799914,2,2,1,2,3,,4,4,23 Mile,Rd,807106,10.387,11.187,0,19.197946,3.7,5 +19759,0,1.013358,1,1,0,2,4,,5,4,North,Ave,1817105,3.162,4.175,0,24.320592,3,4 +20812,0,0.839641,1,1,0,2,5,,4,4,Card,Rd,4200010,3.218,4.057,0,20.151373,5.8,4.5 +29083,0,1.037446,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,24.898707,0.15,4 +6665,0,0.234943,2,2,1,2,3,,4,4,23 Mile,Rd,807106,10.152,10.387,0,5.638622,3.7,5 +20814,0,0.477702,1,1,0,2,4,,4,4,Card,Rd,4200010,2.57,3.048,0,11.464839,4.5,4.5 +20813,0,0.170148,1,1,0,2,5,,4,4,Card,Rd,4200010,3.048,3.218,0,4.083558,5.8,4.5 +19634,0,0.656762,1,1,0,2,4,,4,4,North,Ave,1817105,2.505,3.162,0,15.7623,4.5,4.5 +19758,0,0.50323,1,1,0,2,4,,5,4,North,Ave,1817105,4.175,4.678,0,12.077519,3,4 +29109,0,0.468943,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,11.254643,0.15,4 +6110,0,0.406549,1,1,0,2,6,,5,4,Indian,Trl,818409,0,0.407,0,9.757169,5.8,6 +6200,0,0.871829,1,1,0,2,4,,5,4,26 Mile,Rd,816702,9.809,10.681,0,20.923887,3,4 +19754,0,0.390763,1,1,0,2,4,,5,4,North,Ave,1817105,5.817,6.208,0,9.378302,3,4 +20808,0,1.064604,1,1,0,2,5,,5,4,Card,Rd,4200010,5.136,6.2,0,25.5505,3.7,5 +29111,0,0.712117,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,17.090807,0.15,4 +19755,0,0.125439,1,1,0,2,4,,5,4,North,Ave,1817105,5.692,5.817,0,3.010538,3,4 +6572,0,0.255186,1,1,0,2,4,,5,4,26 Mile,Rd,816702,10.804,11.059,0,6.124476,3,4 +5826,0,0.123018,1,1,0,2,4,,5,4,26 Mile,Rd,816702,10.681,10.804,0,2.952432,3,4 +19752,0,0.092372,1,1,0,2,4,,5,4,North,Ave,1817105,6.208,6.3,0,2.216926,3,4 +5531,0,0.620291,1,1,0,2,5,,4,4,Fairchild,Rd,817902,2.572,3.192,0,14.886982,5.8,4.5 +6841,0,1.046932,1,1,0,2,5,,4,4,Fairchild,Rd,817902,3.192,4.239,0,25.126359,5.8,4.5 +25952,0,0.498907,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.973764,0.15,4 +25963,0,0.862403,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,20.697676,0.15,4 +25964,0,0.549864,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.196732,0.15,4 +6417,0,0.577648,1,1,0,2,5,,5,4,Fairchild,Rd,817902,4.239,4.816,0,13.863542,3.7,5 +6239,0,0.51057,2,2,1,2,3,,4,4,23 Mile,Rd,807106,12.45,12.96,0,12.25369,3.7,5 +6326,0,0.408317,1,1,0,2,5,,4,4,Chesterfield,Rd,814610,0,0.408,0,9.799615,5.8,4.5 +25951,0,0.532685,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.784447,0.15,4 +25953,0,0.412805,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.907311,0.15,4 +6384,0,0.342506,2,2,1,2,3,,4,4,Gratiot,Ave,832010,4.709,5.052,0,8.220154,3.7,5 +6659,0,0.230362,2,2,1,2,3,,4,4,23 Mile,Rd,807106,12.96,13.191,0,5.52869,3.7,5 +6750,0,0.510532,1,1,0,2,5,,5,4,Omo,Rd,817902,5.837,6.347,0,12.25277,3.7,5 +6514,0,0.057211,1,1,0,2,5,,5,4,Hagen,Rd,818408,0.706,0.763,0,1.37306,3.7,5 +5800,0,0.009929,1,1,0,2,4,,5,4,26 Mile,Rd,816702,11.562,11.571,0,0.238299,3,4 +5493,0,1.123111,1,1,0,2,5,,5,4,Armada Center,Rd,824306,0.083,1.206,0,26.954656,3.7,5 +5838,0,0.887954,1,1,0,2,5,,5,4,27 Mile,Rd,819105,2.988,3.876,0,21.310905,3.7,5 +6202,0,1.06889,1,1,0,2,3,,5,4,Earle Memorial,Hwy,813706,22.709,23.778,0,25.653365,1.7,4 +6381,0,0.917984,1,1,0,2,4,,5,4,Division,Rd,815804,6.104,7.021,0,22.031626,3,4 +6850,0,1.895437,1,1,0,2,5,,5,4,29 Mile,Rd,815710,3.015,4.91,0,45.490477,3.7,5 +8570,0,1.997722,1,1,0,2,5,,5,7,Almont,Rd,972209,0,1.997,0,47.945337,3.7,5 +9188,0,2.988112,1,1,0,2,6,GRV,5,7,Burt,Rd,972704,0,2.988,0,71.714682,5.55,5 +19742,0,2.117353,1,1,0,2,5,,5,4,North,Ave,1817105,15.529,17.646,0,50.816477,3.7,5 +19959,0,2.274117,1,1,0,2,5,,5,7,Dryden,Rd,3440076,0.983,3.257,0,54.578808,3.7,5 +20445,0,2.538642,1,1,0,2,4,,5,4,Capac,Rd,4208938,0,2.538,0,60.927406,3,4 +20517,0,0.887955,1,1,0,2,5,GRV,5,4,33 Mile,Rd,4210214,1.519,2.407,0,21.310932,5.55,5 +27513,0,2.111403,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,50.673672,0.15,4 +27514,0,0.503037,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,12.072887,0.15,4 +28551,0,1.401903,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,33.645664,0.15,4 +29121,0,1.554402,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,37.305659,0.15,4 +29823,0,2.597903,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,62.349684,0.15,4 +3087,0,1.0823,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,1.542,2.624,0,25.975202,5.55,5 +5683,0,1.024564,1,1,0,2,5,,5,4,34 Mile,Rd,821608,2.049,3.073,0,24.589534,3.7,5 +5928,0,0.997096,1,1,0,2,4,,3,4,32 Mile,Rd,815804,3.105,4.102,0,23.930301,6,4.5 +5945,-1,2.171291,0,2,0,2,3,DIV,5,4,S M 53,,813706,16.224,18.395,0,52.110992,1.7,4 +5953,0,0.980396,1,1,0,2,5,,4,4,29 Mile,Rd,815710,1.018,1.998,0,23.5295,5.8,4.5 +5975,0,2.824418,1,1,0,2,6,GRV,5,4,36 Mile,Rd,822708,1.261,4.084,0,67.786022,5.55,5 +6466,0,0.681428,1,1,1,2,4,,5,4,Van Dyke,Rd,817001,3.452,4.133,0,16.354261,3,4 +6517,0,1.105641,1,1,0,2,5,,5,4,Mound,Rd,814501,8.844,9.949,0,26.535393,3.7,5 +20126,0,0.404796,1,1,0,2,4,,4,4,Van Dyke,Ave,4211016,9.127,9.532,0,9.715098,4.5,4.5 +20463,1,2.171411,2,0,0,2,3,DIV,5,4,N M 53,,4210208,16.213,18.384,0,52.113865,1.7,4 +20733,0,0.333539,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,3.054,3.388,0,8.004939,4.5,4.5 +25590,0,0.963412,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,23.121878,0.15,4 +29810,0,1.320975,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,31.703402,0.15,4 +29811,0,1.33631,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,32.071438,0.15,4 +29812,0,1.57064,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,37.695356,0.15,4 +29813,0,0.714622,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.150937,0.15,4 +6445,0,0.762806,1,1,0,2,5,GRV,5,4,Dequindre,Rd,817205,0,0.763,0,18.307353,5.55,5 +6532,0,0.497756,1,1,0,2,5,,5,4,Mound,Rd,814501,6.826,7.324,0,11.946155,3.7,5 +6839,0,1.527821,1,1,0,2,6,GRV,5,4,Inwood,Rd,815801,0.513,2.04,0,36.667711,5.55,5 +20744,0,1.128813,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,0.901,2.03,0,27.09151,4.5,4.5 +25580,0,1.043104,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.034494,0.15,4 +25582,0,1.537144,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,36.891466,0.15,4 +25592,0,0.90735,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,21.776403,0.15,4 +25593,0,1.049849,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.196385,0.15,4 +5792,0,0.274658,1,1,0,2,5,GRV,5,4,Mount Vernon,Rd,816905,2.07,2.345,0,6.591796,5.55,5 +20751,0,0.315896,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,0.508,0.824,0,7.581506,4.5,4.5 +25594,0,0.545031,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.08075,0.15,4 +25595,0,0.760795,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,18.259077,0.15,4 +6545,0,0.426315,1,1,0,2,4,,4,4,Mount Vernon,Rd,816905,3.016,3.442,0,10.231561,4.5,4.5 +20752,0,0.507976,1,1,0,2,5,GRV,4,4,28 Mile,Rd,4208920,0,0.508,0,12.191434,6.55,4.5 +21172,0,0.435408,1,1,0,2,4,GRV,4,4,Snell,Rd,4408229,1.125,1.56,0,10.449793,6.55,4.5 +19509,0,0.10883,1,1,0,2,5,GRV,5,4,Gunn,Rd,1895401,0,0.109,0,2.61191,5.55,5 +6142,0,0.075363,1,1,0,2,4,,4,4,Mount Vernon,Rd,816905,3.442,3.517,0,1.808703,4.5,4.5 +20746,0,0.077414,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,0.824,0.901,0,1.857944,4.5,4.5 +2520,0,1.542143,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,0,1.542,0,37.011432,5.55,5 +25578,0,1.39567,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,33.496084,0.15,4 +25579,0,0.991376,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,23.793031,0.15,4 +5530,0,0.512807,1,1,0,2,6,GRV,5,4,Inwood,Rd,815801,0,0.513,0,12.30737,5.55,5 +5554,0,0.358961,1,1,0,2,5,,4,4,29 Mile,Rd,815710,0,0.359,0,8.615067,5.8,4.5 +5943,0,0.994225,1,1,0,2,5,GRV,4,4,Mound,Rd,814501,5.832,6.826,0,23.861393,6.55,4.5 +6133,0,0.619172,1,1,0,2,5,,4,4,Campground,Rd,816908,0.649,1.268,0,14.860116,5.8,4.5 +20743,0,0.729321,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,2.03,2.759,0,17.5037,4.5,4.5 +25588,0,0.541679,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.000285,0.15,4 +27537,0,0.760153,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.243679,0.15,4 +6338,0,0.279485,1,1,0,2,4,,4,4,Mound,Rd,814501,5.553,5.832,0,6.70765,4.5,4.5 +6534,0,0.451386,1,1,0,2,4,,4,4,Campground,Rd,816908,0.197,0.649,0,10.833269,4.5,4.5 +20742,0,0.295548,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,2.759,3.054,0,7.093148,4.5,4.5 +27521,0,0.622425,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.938192,0.15,4 +27523,0,0.382551,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.181216,0.15,4 +5782,0,0.197384,1,1,0,2,4,,4,4,Campground,Rd,816908,0,0.197,0,4.737214,4.5,4.5 +5776,0,0.368151,1,1,0,2,5,,4,4,Campground,Rd,816908,1.268,1.636,0,8.83562,5.8,4.5 +6864,0,0.659466,1,1,0,2,5,,4,4,29 Mile,Rd,815710,0.359,1.018,0,15.827189,5.8,4.5 +29814,0,0.686252,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.470058,0.15,4 +25586,0,0.18105,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.345212,0.15,4 +6933,0,1.017274,1,1,0,2,5,,5,4,Mound,Rd,814501,7.827,8.844,0,24.414585,3.7,5 +30178,0,1.1739,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,28.173597,0.15,4 +6130,0,0.502923,1,1,0,2,5,,5,4,Mound,Rd,814501,7.324,7.827,0,12.070151,3.7,5 +5524,0,0.884636,1,1,0,2,4,,5,4,32 Mile,Rd,815804,1.33,2.214,0,21.231268,3,4 +6033,0,1.009704,1,1,0,2,5,,5,4,Fisher,Rd,817306,1.033,2.042,0,24.232896,3.7,5 +6066,0,0.799743,1,1,0,2,5,,5,4,34 Mile,Rd,821608,1.249,2.049,0,19.193828,3.7,5 +24958,0,1.133566,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,27.205579,0.15,4 +29825,0,1.196805,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,28.723331,0.15,4 +6415,0,1.252762,1,1,0,2,4,,5,4,32 Mile,Rd,815804,0,1.253,0,30.066287,3,4 +6437,0,1.032874,1,1,0,2,5,,5,4,Fisher,Rd,817306,0,1.033,0,24.788981,3.7,5 +5930,0,0.077053,1,1,0,2,4,,5,4,32 Mile,Rd,815804,1.253,1.33,0,1.849281,3,4 +24959,0,0.23835,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,5.720401,0.15,4 +6832,0,0.891109,1,1,0,2,4,,5,4,32 Mile,Rd,815804,2.214,3.105,0,21.386619,3,4 +5538,0,0.302715,1,1,0,2,5,,5,4,29 Mile,Rd,815710,2.712,3.015,0,7.265159,3.7,5 +5721,0,2.071779,1,1,1,2,4,,5,4,Van Dyke,Rd,817001,1.381,3.452,0,49.722696,3,4 +6340,-1,2.940874,0,2,0,2,3,DIV,5,4,S M 53,,813706,13.284,16.224,0,70.580984,1.7,4 +20699,1,2.972821,2,0,0,2,3,DIV,5,4,N M 53,,4210208,13.241,16.213,0,71.34771,1.7,4 +25591,0,1.080324,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.927774,0.15,4 +25596,0,0.576286,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.830857,0.15,4 +25597,0,0.553968,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.295244,0.15,4 +25598,0,1.014218,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,24.341226,0.15,4 +5543,0,0.34334,1,1,0,2,5,,5,4,29 Mile,Rd,815710,1.998,2.342,0,8.240149,3.7,5 +6086,0,1.150046,1,1,0,2,4,,4,4,Van Dyke,Rd,817001,0.231,1.381,0,27.60111,4.5,4.5 +20066,0,1.121326,1,1,0,2,5,,5,4,Jewell,Rd,4208421,2.021,3.142,0,26.91182,3.7,5 +20693,0,0.590983,1,1,0,2,5,,5,4,28 Mile,Rd,4208920,3.442,4.032,0,14.18359,3.7,5 +29815,0,1.140603,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,27.374479,0.15,4 +19581,-1,0.549563,0,2,0,1,2,RON,4,4,Old M 53,,1917410,0,0.55,0,,1.09,4 +19585,1,0.401559,2,0,0,2,3,,4,4,Old M 53,,1917409,0.034,0.436,0,9.637418,3.7,5 +6019,-1,0.161597,0,2,0,1,2,,4,4,S M 53,,813706,13.123,13.284,0,,0.8,7.5 +19586,1,0.034056,2,0,0,2,3,,4,4,Old M 53,,1917409,0,0.034,0,0.817352,3.7,5 +6498,0,0.231147,1,1,0,2,4,,4,4,Van Dyke,Rd,817001,0,0.231,0,5.547535,4.5,4.5 +20732,0,0.053893,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,3.388,3.442,0,1.293431,4.5,4.5 +19580,-1,0.172612,0,2,0,2,4,,4,4,Van Dyke,Rd,1917410,0.55,0.722,0,4.142685,4.5,4.5 +19584,1,0.159763,2,0,0,2,4,,4,4,Van Dyke,Rd,1917409,0.436,0.595,0,3.834306,4.5,4.5 +20821,0,0.021148,1,1,0,2,4,,4,4,Van Dyke,Ave,4211016,9.532,9.553,0,0.507559,4.5,4.5 +27524,0,0.289159,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,6.939825,0.15,4 +6858,0,0.370695,1,1,0,2,5,,5,4,29 Mile,Rd,815710,2.342,2.712,0,8.896678,3.7,5 +27527,0,1.059045,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.417085,0.15,4 +27528,0,1.088015,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,26.112368,0.15,4 +5406,0,1.003649,1,1,0,2,5,,5,4,Ebeling,Rd,824302,0,1.003,0,24.087582,3.7,5 +5515,0,0.276695,1,1,1,2,4,,3,4,32 Mile,Rd,815804,4.769,5.046,0,6.64067,6,4.5 +5582,0,0.964717,1,1,0,2,5,,5,4,McKay,Rd,821905,0,0.965,0,23.153217,3.7,5 +5938,0,0.190159,1,1,1,2,3,,5,4,M 53,,813706,20.353,20.543,0,4.563813,1.7,4 +20077,0,0.524191,1,1,0,2,5,,5,4,33 Mile,Rd,4210214,0,0.524,0,12.580595,3.7,5 +20113,0,0.854822,1,1,0,2,4,,5,4,Earle Memorial,Hwy,4208310,0.915,1.77,0,20.515716,3,4 +25574,0,0.88958,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,21.349913,0.15,4 +25577,0,1.063289,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.518929,0.15,4 +28617,0,0.861833,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,20.683984,0.15,4 +5520,0,0.306654,1,1,1,2,4,,3,4,Saint Clair,St,815804,4.102,4.408,0,7.35969,6,4.5 +5895,0,0.185692,1,1,0,2,4,,3,4,Gates,St,822607,0.36,0.546,0,4.456607,6,4.5 +20114,0,0.508182,1,1,0,2,4,,5,4,Earle Memorial,Hwy,4208310,0.407,0.915,0,12.196372,3,4 +20115,0,0.466574,1,1,0,2,5,,5,4,McVicar,St,4208305,0,0.467,0,11.197783,3.7,5 +25599,0,0.440376,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.56903,0.15,4 +25601,0,0.38919,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.340564,0.15,4 +27073,0,0.372892,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.949413,0.15,4 +29132,0,0.712581,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,17.101939,0.15,4 +29133,0,0.412126,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,9.891022,0.15,4 +5674,0,0.247526,1,1,1,2,4,,3,4,Main,St,817001,4.553,4.8,0,5.940612,6,4.5 +6828,0,0.207719,1,1,1,2,4,,3,4,Saint Clair,St,815804,4.408,4.616,0,4.985246,6,4.5 +25603,0,0.407264,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.774347,0.15,4 +29640,0,0.398978,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.575465,0.15,4 +6056,0,0.419633,1,1,1,2,4,,3,4,Main,St,817001,4.133,4.553,0,10.071188,6,4.5 +25583,0,0.140688,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.376524,0.15,4 +6463,0,0.260319,1,1,1,2,4,,3,4,Main,St,817001,4.8,5.061,0,6.247652,6,4.5 +6723,0,0.125581,1,1,0,2,5,,3,4,Gates,St,822607,0.219,0.344,0,3.01395,8,4.5 +29639,0,0.257262,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.174285,0.15,4 +6290,0,0.016096,1,1,0,2,5,,3,4,Gates,St,822607,0.344,0.36,0,0.386292,8,4.5 +25600,0,0.050139,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.203333,0.15,4 +6379,0,0.108357,1,1,0,2,5,,3,4,Gates,St,822607,0.11,0.219,0,2.600572,8,4.5 +5923,0,0.153148,1,1,1,2,4,,3,4,Saint Clair,St,815804,4.616,4.769,0,3.675562,6,4.5 +29134,0,0.289473,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,6.947343,0.15,4 +5937,0,1.002362,1,1,1,2,3,,5,4,Earle Memorial,Hwy,813706,20.718,21.72,0,24.056697,1.7,4 +25575,0,0.413415,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,9.921965,0.15,4 +6327,0,0.174981,1,1,1,2,3,,5,4,Earle Memorial,Hwy,813706,20.543,20.718,0,4.199552,1.7,4 +6324,0,0.502702,1,1,1,2,3,,5,4,Earle Memorial,Hwy,813706,21.72,22.223,0,12.064852,1.7,4 +5935,0,0.486221,1,1,1,2,3,,5,4,Earle Memorial,Hwy,813706,22.223,22.709,0,11.669304,1.7,4 +5654,0,0.72684,1,1,0,2,5,,4,4,Powell,Rd,817209,2.762,3.488,0,17.444162,5.8,4.5 +6802,0,0.881031,2,2,1,2,4,,4,4,32 Mile,Rd,815804,5.223,6.104,0,21.144755,4.5,4.5 +20766,0,0.995117,1,1,0,2,5,,4,4,33 Mile,Rd,4210214,0.524,1.519,0,23.8828,5.8,4.5 +25602,0,0.430733,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.337603,0.15,4 +25604,0,0.615324,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.767774,0.15,4 +5499,0,0.154702,2,2,1,2,4,,4,4,32 Mile,Rd,815804,5.068,5.223,0,3.712845,4.5,4.5 +6826,0,0.022335,2,2,1,2,4,,3,4,32 Mile,Rd,815804,5.046,5.068,0,0.536036,6,4.5 +6040,0,0.40109,1,1,0,2,5,,4,4,Powell,Rd,817209,2.361,2.762,0,9.626158,5.8,4.5 +6887,0,1.017614,1,1,0,2,5,,5,4,Kanie,Rd,821906,0,1.017,0,24.422739,3.7,5 +5980,0,0.743792,1,1,0,2,5,,5,4,34 Mile,Rd,821608,5.085,5.829,0,17.851001,3.7,5 +6287,0,0.556973,1,1,0,2,5,,5,4,Brown,Rd,824303,0,0.557,0,13.36736,3.7,5 +6719,0,0.505285,1,1,0,2,5,,5,4,Ebeling,Rd,824302,1.003,1.509,0,12.126848,3.7,5 +5893,0,0.08267,1,1,0,2,5,,5,4,Armada Center,Rd,824306,0,0.083,0,1.984092,3.7,5 +6036,0,1.234095,1,1,0,2,3,,5,4,Earle Memorial,Hwy,813706,23.92,25.154,0,29.618279,1.7,4 +27512,0,2.31651,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,55.596239,0.15,4 +34074,0,1.65355,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34073,0,1.898069,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +28553,0,1.169473,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,28.067342,0.15,4 +5828,0,0.142781,1,1,0,2,3,,5,4,Earle Memorial,Hwy,813706,23.778,23.92,0,3.426752,1.7,4 +34072,0,1.941187,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34111,0,1.874544,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +4688,0,0.061501,1,1,0,2,6,GRV,,7,Burt,Rd,757810,0.984,1.046,0,1.476026,5.55,5 +5480,0,1.036902,1,1,0,2,4,,5,4,Division,Rd,815804,10.025,11.061,0,24.885641,3,4 +5669,0,2.332414,1,1,0,2,6,GRV,5,4,Indian Trail,Rd,817101,1.054,3.386,0,55.977928,5.55,5 +5671,0,2.23665,1,1,0,2,6,GRV,5,4,Wolcott,Rd,817008,2.113,4.349,0,53.679611,5.55,5 +5972,0,2.014346,1,1,0,2,5,,5,4,Armada Center,Rd,824306,3.231,5.245,0,48.344301,3.7,5 +6027,0,1.244088,1,1,0,2,5,,4,4,Armada Ridge,Rd,817602,2.646,3.89,0,29.858102,5.8,4.5 +6274,0,1.07956,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,6.13,7.209,0,25.909435,3,4 +6423,0,1.14859,1,1,0,2,5,,5,4,29 Mile,Rd,815710,7.809,8.957,0,27.566162,3.7,5 +19746,0,2.058319,1,1,0,2,5,,5,4,North,Ave,1817105,10.423,12.481,0,49.399647,3.7,5 +25581,0,1.804911,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,43.317853,0.15,4 +28627,0,2.09116,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,50.18783,0.15,4 +29224,0,1.822023,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,43.728547,0.15,4 +30181,0,2.037457,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,48.898962,0.15,4 +6426,0,1.771099,1,1,0,2,5,,5,4,29 Mile,Rd,815710,4.91,6.681,0,42.506384,3.7,5 +6461,0,1.316649,1,1,0,2,6,,5,4,Indian Trail,Rd,817101,3.386,4.702,0,31.599586,5.8,6 +6704,0,2.02849,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,4.102,6.13,0,48.683767,3,4 +25948,0,2.165624,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,51.974974,0.15,4 +29824,0,2.123989,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,50.975727,0.15,4 +5386,0,1.010726,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,3.091,4.102,0,24.257435,3,4 +6709,0,1.012762,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,2.079,3.091,0,24.306298,3,4 +6849,0,1.128427,1,1,0,2,5,,5,4,29 Mile,Rd,815710,6.681,7.809,0,27.082254,3.7,5 +24967,0,1.544775,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,37.074589,0.15,4 +29129,0,0.832371,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,19.976902,0.15,4 +6055,0,0.529696,1,1,0,2,6,,5,4,Wolcott,Rd,817008,1.583,2.113,0,12.712709,5.8,6 +5646,0,0.60956,1,1,0,2,5,,5,4,Armada Ridge,Rd,817602,0,0.609,0,14.629432,3.7,5 +6372,0,1.006711,1,1,0,2,4,,5,4,Division,Rd,815804,8.032,9.039,0,24.161058,3,4 +6375,0,1.006898,1,1,0,2,5,,5,4,Armada Center,Rd,824306,2.225,3.231,0,24.16555,3.7,5 +6428,0,2.03741,1,1,0,2,5,,5,4,Armada Ridge,Rd,817602,0.609,2.646,0,48.897835,3.7,5 +6699,0,1.012796,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,8.226,9.238,0,24.307105,3,4 +29124,0,1.55484,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,37.316165,0.15,4 +29126,0,2.09006,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,50.161428,0.15,4 +29548,0,1.098676,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,26.36822,0.15,4 +5380,0,1.016987,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,7.209,8.226,0,24.407684,3,4 +6462,0,0.576537,1,1,0,2,5,,5,4,Wolcott,Rd,817008,4.349,4.925,0,13.83689,3.7,5 +6792,0,1.010838,1,1,0,2,4,,5,4,Division,Rd,815804,7.021,8.032,0,24.260101,3,4 +6269,0,1.009764,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,9.238,10.248,0,24.234338,3,4 +6796,0,1.019267,1,1,0,2,4,,5,4,Armada Center,Rd,824306,1.206,2.225,0,24.462416,3,4 +5969,0,0.986415,1,1,0,2,4,,5,4,Division,Rd,815804,9.039,10.025,0,23.673966,3,4 +29549,0,1.482694,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,35.584665,0.15,4 +24753,0,0.90816,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,21.795848,0.15,4 +5653,0,1.442785,1,1,0,2,5,,5,4,New Haven,Rd,814905,8.029,9.472,0,34.626832,3.7,5 +19747,0,1.016918,1,1,0,2,5,,5,4,North,Ave,1817105,9.406,10.423,0,24.406031,3.7,5 +19750,0,1.035789,1,1,0,2,5,,5,4,North,Ave,1817105,8.371,9.406,0,24.858945,3.7,5 +6023,0,0.107012,1,1,0,2,5,,5,4,New Haven,Rd,815710,8.957,9.064,0,2.568294,3.7,5 +20111,0,0.704197,1,1,0,2,6,GRV,5,4,Omo,Rd,4208329,1.807,2.511,0,16.900718,5.55,5 +6039,0,0.896776,1,1,0,2,5,,5,4,New Haven,Rd,814905,7.133,8.029,0,21.522619,3.7,5 +5571,0,1.030755,1,1,0,2,6,,5,4,Armada Center,Rd,824306,5.245,6.276,0,24.738124,5.8,6 +6412,0,0.839066,1,1,0,2,5,,5,4,Ridge,St,817602,4.099,4.938,0,20.137583,3.7,5 +19745,0,2.2898,1,1,0,2,5,,5,4,North,Ave,1817105,12.481,14.77,0,54.955204,3.7,5 +19743,0,0.427187,1,1,0,2,5,,4,4,Fulton,St,1817105,15.102,15.529,0,10.252482,5.8,4.5 +5639,0,0.208404,1,1,0,2,5,,4,4,Main,St,817602,3.89,4.099,0,5.001689,5.8,4.5 +19744,0,0.33113,1,1,0,2,5,,4,4,Fulton,St,1817105,14.77,15.102,0,7.947122,5.8,4.5 +25607,0,0.234764,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.634333,0.15,4 +29257,0,0.17564,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.21536,0.15,4 +6011,0,0.672695,1,1,0,2,5,,5,4,Ridge,St,817602,4.938,5.61,0,16.144682,3.7,5 +20110,0,0.289611,1,1,0,2,6,,5,4,Omo,Rd,4208329,9.153,9.443,0,6.95067,5.8,6 +5575,0,0.249821,1,1,0,2,5,,5,4,Burman,Rd,822808,0,0.25,0,5.995709,3.7,5 +7375,-1,3.513966,0,2,0,1,1,,5,7,W I 69,,962902,3.54,7.053,0,,1.02,7 +7508,1,3.595936,2,0,0,1,1,,5,7,E I 69,,962706,3.48,7.076,0,,1.02,7 +8541,0,0.989102,1,1,0,2,5,,5,7,Belle River,Rd,972307,1.782,2.771,0,23.738451,3.7,5 +8580,0,3.068197,1,1,0,2,5,,5,7,Riley Center,Rd,972105,0,3.068,0,73.636728,3.7,5 +9161,0,2.045051,1,1,0,2,5,,5,7,Berville,Rd,972708,0,2.045,0,49.081232,3.7,5 +9172,0,3.244832,1,1,0,2,6,GRV,5,7,Burt,Rd,972704,2.988,6.232,0,77.875969,5.55,5 +19961,0,2.277108,1,1,0,2,5,,5,7,Hough,Rd,3440075,2.986,5.263,0,54.650597,3.7,5 +20361,0,1.006406,1,1,0,2,4,,5,7,Capac,Rd,4210003,2.594,3.601,0,24.153746,3,4 +24770,0,2.078712,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,49.889082,0.15,4 +29116,0,2.033313,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,48.799507,0.15,4 +29119,0,2.216559,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,53.19742,0.15,4 +19962,0,0.757027,1,1,0,2,5,,5,7,Hough,Rd,3440075,2.229,2.986,0,18.168644,3.7,5 +20364,0,0.57679,1,1,0,2,4,,5,4,Capac,Rd,4210003,0,0.577,0,13.842952,3,4 +29120,0,1.463557,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,35.125368,0.15,4 +20362,0,1.012823,1,1,0,2,4,,5,7,Capac,Rd,4210003,1.582,2.594,0,24.307763,3,4 +20363,0,1.005162,1,1,0,2,4,,5,7,Capac,Rd,4210003,0.577,1.582,0,24.123879,3,4 +7587,-1,1.020936,0,2,0,1,1,,5,7,W I 69,,962902,2.519,3.54,0,,1.02,7 +7702,1,0.920365,2,0,0,1,1,,5,7,E I 69,,962706,2.56,3.48,0,,1.02,7 +8568,0,1.782774,1,1,0,2,5,,5,7,Belle River,Rd,972307,0,1.782,0,42.786572,3.7,5 +19620,1,0.570032,1,0,0,1,1,RON,5,7,Capac/W I 69,RAMP,1847209,0,0.57,0,,1.09,4 +19622,1,0.596477,1,0,0,1,1,ROF,5,7,E I 69/Capac,RAMP,1847207,0,0.596,0,,2.24,5 +20071,0,2.0186,1,1,0,2,4,,5,7,Capac,Rd,4210003,4.882,6.9,0,48.446411,3,4 +29117,0,1.012477,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.299455,0.15,4 +20359,0,1.056235,1,1,0,2,4,,5,7,Capac,Rd,4210003,3.601,4.657,0,25.349639,3,4 +20459,0,0.225814,1,1,0,2,4,,5,7,Capac,Rd,4210003,4.657,4.882,0,5.419541,3,4 +29115,0,1.648075,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,39.553802,0.15,4 +19619,1,0.484902,1,0,0,1,1,ROF,5,7,W I 69/Capac,RAMP,1847210,0,0.485,0,,2.24,5 +19621,1,0.418516,1,0,0,1,1,RON,5,7,Capac/E I 69,RAMP,1847208,0,0.419,0,,1.09,4 +20462,0,0.07202,1,1,0,2,4,,5,7,Capac,Rd,4210003,6.9,6.972,0,1.728471,3,4 +20810,0,0.286693,1,1,0,2,4,,5,7,Capac,Rd,4210003,6.972,7.259,0,6.880624,3,4 +6882,0,2.17507,1,1,0,2,5,,5,7,Bordman,Rd,824010,1.819,3.994,0,52.201687,3.7,5 +19740,0,1.071968,1,1,0,2,5,,5,4,North,Ave,1817105,17.646,18.717,0,25.727231,3.7,5 +8582,0,1.023814,1,1,0,2,5,,5,7,North,Ave,972104,0,1.024,0,24.571535,3.7,5 +19960,0,0.113017,1,1,0,2,5,,5,7,Hough,Rd,3440075,5.263,5.376,0,2.712408,3.7,5 +8574,0,1.988953,1,1,0,2,5,,5,7,Riley Center,Rd,972105,3.138,5.127,0,47.734866,3.7,5 +9158,0,2.666372,1,1,0,2,5,,5,7,Belle River,Rd,972801,0,2.666,0,63.992929,3.7,5 +9160,0,1.046316,1,1,0,2,5,,5,7,Berville,Rd,972708,2.045,3.091,0,25.111573,3.7,5 +9159,0,0.120104,1,1,0,2,5,,5,7,Belle River,Rd,972708,3.091,3.211,0,2.882494,3.7,5 +8425,0,0.079717,1,1,0,2,6,GRV,5,7,Masters,Rd,972701,3.243,3.322,0,1.913201,5.55,5 +9157,0,0.106202,1,1,0,2,5,,5,7,Belle River,Rd,972801,2.666,2.772,0,2.548839,3.7,5 +8576,0,0.070573,1,1,0,2,5,,5,7,Riley Center,Rd,972105,3.068,3.138,0,1.693742,3.7,5 +8573,0,0.535756,1,1,0,2,5,,5,7,Riley Center,Rd,972105,5.127,5.663,0,12.858142,3.7,5 +8571,0,0.118786,1,1,0,2,5,,5,7,Riley Center,Rd,972105,6.03,6.148,0,2.850853,3.7,5 +9165,0,0.267078,1,1,0,2,5,,5,7,Burt,Rd,972704,6.982,7.249,0,6.409865,3.7,5 +19613,1,0.392249,1,0,0,1,1,RON,5,7,Riley Center/W I 69,RAMP,1847307,0,0.392,0,,1.09,4 +19617,1,0.611048,1,0,0,1,1,ROF,5,7,E I 69/Riley Center,RAMP,1847305,0,0.611,0,,2.24,5 +8572,0,0.367122,1,1,0,2,5,,5,7,Riley Center,Rd,972105,5.663,6.03,0,8.810921,3.7,5 +7770,0,2.018392,1,1,0,2,5,,5,7,Imlay City,Rd,962606,0,2.018,0,48.44141,3.7,5 +8428,0,1.008462,1,1,0,2,5,,5,7,Dudley,Rd,972602,1.047,2.055,0,24.20309,3.7,5 +8498,0,2.086127,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,0,2.086,0,50.067043,5.55,5 +9012,0,0.84089,1,1,0,2,6,,5,7,Mason,Rd,973507,0.164,1.005,0,20.181358,5.8,6 +20809,0,0.99989,1,1,0,2,5,,5,7,Capac,Rd,4210003,15.838,16.837,0,23.997368,3.7,5 +25609,0,2.190868,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,52.580835,0.15,4 +25611,0,1.710916,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,41.061985,0.15,4 +4380,0,3.927637,1,1,0,2,5,GRV,5,7,Cade,Rd,755509,0.742,4.669,0,94.263285,5.55,5 +34070,0,2.136415,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34071,-1,1.97337,0,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34110,1,1.972939,2,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34069,0,2.048079,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +4701,0,0.014512,1,1,0,2,5,GRV,5,7,Cade,Rd,755509,4.669,4.684,0,0.34829,5.55,5 +34015,0,1.731276,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34016,0,1.473191,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +4375,0,1.412388,1,1,0,2,6,GRV,5,7,Cade,Rd,755509,8.181,9.593,0,33.897314,5.55,5 +8429,0,1.046779,1,1,0,2,5,GRV,5,7,Dudley,Rd,972602,0,1.047,0,25.122688,5.55,5 +9045,0,1.403006,1,1,0,2,5,,5,7,Martin,Rd,973403,4.51,5.913,0,33.672146,3.7,5 +7519,0,2.757158,1,1,0,2,5,,5,7,Bryce,Rd,962608,3.278,6.034,0,66.171787,3.7,5 +8492,0,3.46332,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,3.96,7.423,0,83.119669,5.55,5 +8510,0,0.775286,1,1,0,2,6,,5,7,Sterling,Rd,972506,3.118,3.893,0,18.606866,5.8,6 +8537,0,0.743173,1,1,0,2,6,,5,7,Foley,Rd,972503,1.256,2,0,17.836161,5.8,6 +20509,0,1.621712,1,1,0,2,5,,5,7,Capac,Rd,4210003,10.913,12.534,0,38.921084,3.7,5 +7747,0,0.452685,1,1,0,2,7,,5,7,Imlay City,Rd,962606,2.581,3.033,0,10.864441,5.8,6 +7774,0,0.551861,1,1,0,2,5,,5,7,Downey,Rd,962605,0,0.552,0,13.244661,3.7,5 +20763,0,0.318866,1,1,0,2,5,,5,7,Capac,Rd,4210003,9.588,9.907,0,7.652786,3.7,5 +25910,0,1.41409,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.938164,0.15,4 +29562,0,1.430371,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,34.328911,0.15,4 +7563,0,0.562679,1,1,0,2,5,,5,7,Imlay City,Rd,962606,2.018,2.581,0,13.504306,3.7,5 +7524,0,0.629919,1,1,0,2,7,,5,7,Mill,St,962608,2.174,2.804,0,15.118067,5.8,6 +7567,0,1.049939,1,1,0,2,5,,4,7,Downey,Rd,962605,0.552,1.602,0,25.198534,5.8,4.5 +7732,0,0.149501,1,1,0,2,7,,4,7,Mill,St,962608,2.025,2.174,0,3.58802,6.55,4.5 +20074,0,0.681812,1,1,0,2,5,,4,7,Main,St,4210003,8.906,9.588,0,16.363499,5.8,4.5 +26081,0,0.090172,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,2.164134,0.15,4 +20272,0,0.251161,1,1,0,2,5,,4,7,Main,St,4210003,8.655,8.906,0,6.027869,5.8,4.5 +28258,0,0.249799,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.995166,0.15,4 +7727,0,0.47392,1,1,0,2,5,,5,7,Bryce,Rd,962608,2.804,3.278,0,11.374088,3.7,5 +8538,0,1.256616,1,1,0,2,6,,5,7,Foley,Rd,972503,0,1.256,0,30.15879,5.8,6 +20514,0,1.006457,1,1,0,2,5,,5,7,Capac,Rd,4210003,9.907,10.913,0,24.154973,3.7,5 +28221,0,1.236766,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,29.682395,0.15,4 +25909,0,0.397894,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.549454,0.15,4 +8495,0,0.993664,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,2.086,3.079,0,23.847934,5.55,5 +8516,0,1.559758,1,1,0,2,6,,5,7,Sterling,Rd,972506,1.559,3.118,0,37.434202,5.8,6 +20116,0,2.007646,1,1,0,2,5,,5,7,Capac,Rd,4210003,13.83,15.838,0,48.1835,3.7,5 +25610,0,2.311205,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,55.468918,0.15,4 +8493,0,0.881013,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,3.079,3.96,0,21.144301,5.55,5 +8517,0,1.558997,1,1,0,2,6,,5,7,Sterling,Rd,972506,0,1.559,0,37.415923,5.8,6 +20316,0,1.296272,1,1,0,2,5,,5,7,Capac,Rd,4210003,12.534,13.83,0,31.110529,3.7,5 +25914,0,0.947939,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.75053,0.15,4 +25608,0,0.431657,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,10.359769,0.15,4 +21289,0,0.242001,1,1,0,2,6,,5,7,Mason,Rd,4502078,0,0.242,0,5.808033,5.8,6 +8468,0,1.006521,1,1,0,2,5,,5,7,Yale,Rd,972601,2.301,3.308,0,24.156495,3.7,5 +8427,0,0.996656,1,1,0,2,5,,5,7,Dudley,Rd,972602,2.055,3.051,0,23.919738,3.7,5 +21380,0,0.967524,1,1,0,2,5,,5,7,Winn,Rd,4500090,0,0.967,0,23.220569,3.7,5 +8472,0,1.008251,1,1,0,2,5,,5,7,Yale,Rd,972601,1.293,2.301,0,24.198026,3.7,5 +9019,0,0.503394,1,1,0,2,5,,5,7,Winn,Rd,973505,0.499,1.002,0,12.081455,3.7,5 +20561,0,0.502167,1,1,0,2,5,,5,7,Capac,Rd,4210003,16.837,17.339,0,12.052002,3.7,5 +9031,0,0.498946,1,1,0,2,5,,5,7,Winn,Rd,973505,0,0.499,0,11.974696,3.7,5 +34017,0,1.610046,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +4204,1,1.194787,2,0,0,1,1,,5,4,E I 94,,798501,22.7,23.894,0,,1.02,7 +4797,-1,1.317491,0,2,0,1,1,,5,4,W I 94,,798502,22.654,23.971,0,,1.02,7 +5585,0,0.538066,1,1,0,2,4,,4,4,Gratiot,Ave,832010,9.423,9.961,0,12.913588,4.5,4.5 +5947,0,0.096183,1,1,0,2,5,,4,4,Main,St,814905,4.812,4.908,0,2.308393,5.8,4.5 +7347,-1,1.681861,0,2,0,1,1,,5,7,W I 69,,962902,21.616,23.297,0,,1.02,7 +7483,1,1.534825,2,0,0,1,1,,5,7,E I 69,,962706,21.651,23.185,0,,1.02,7 +7750,0,1.4678,1,1,0,2,5,,5,7,Gratiot,Ave,963509,9.411,10.879,0,35.227201,3.7,5 +7962,0,1.270297,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,10.369,11.639,0,30.487135,3.7,5 +8192,-1,4.805512,0,2,0,1,1,,5,7,W I 94,,967804,7.833,12.638,0,,1.02,7 +8223,0,2.03984,1,1,0,2,5,,5,7,Meisner,Rd,967607,7.111,9.151,0,48.956148,3.7,5 +8241,1,4.402115,2,0,0,1,1,,5,7,E I 94,,967606,7.845,12.246,0,,1.02,7 +8245,0,3.525822,1,1,0,2,5,,5,7,Green,Dr,967507,0.089,3.615,0,84.61972,3.7,5 +8249,0,0.872635,1,1,0,2,5,,5,7,La Croix,Rd,967504,0.12,0.992,0,20.943234,3.7,5 +8251,0,1.452885,1,1,0,2,5,,5,7,Columbine,St,967409,0.081,1.534,0,34.869229,3.7,5 +8258,0,0.702362,1,1,0,2,6,,5,7,Channel,Dr,967406,0,0.702,0,16.856689,5.8,6 +8305,0,1.023422,1,1,0,2,5,,5,7,Palms,Rd,965609,3.419,4.442,0,24.562122,3.7,5 +8315,0,1.018455,1,1,0,2,6,GRV,5,7,Church,Rd,965408,2.151,3.169,0,24.442909,5.55,5 +8644,0,1.012413,1,1,0,2,5,,5,7,King,Rd,970305,1.292,2.304,0,24.297921,3.7,5 +8676,0,1.064279,1,1,0,2,5,,5,7,Indian,Trl,970302,1.524,2.588,0,25.542706,3.7,5 +8691,0,1.031804,1,1,0,2,5,,5,7,County Line,Rd,970206,1.021,2.053,0,24.763287,3.7,5 +8739,0,1.018808,1,1,0,2,4,,5,7,Marine City,Hwy,970205,7.111,8.129,0,24.451404,3,4 +8929,0,1.02188,1,1,0,2,5,,5,7,Shea,Rd,969506,2.071,3.093,0,24.525118,3.7,5 +8938,0,1.101865,1,1,0,2,5,,5,7,Swartout,Rd,974006,0.673,1.774,0,26.444753,3.7,5 +8970,0,1.017718,1,1,0,2,5,,5,7,Griswold,Rd,969503,1.978,2.996,0,24.425222,3.7,5 +9042,0,1.438572,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,9.036,10.474,0,34.525718,3.7,5 +20518,0,2.031149,1,1,0,2,4,,5,7,Fred W Moore,Hwy,4210005,7.363,9.394,0,48.747568,3,4 +21196,0,0.919915,1,1,0,2,4,,5,7,Pointe Tremble,Rd,4502633,9.212,10.141,0,22.077952,3,4 +21982,0,0.718372,1,1,0,2,4,,4,7,Main,St,4502782,0.633,1.351,0,17.240921,4.5,4.5 +25966,0,1.325467,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,31.811211,0.15,4 +28222,0,1.067267,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.614412,0.15,4 +29149,0,1.06695,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.606811,0.15,4 +29151,0,1.532654,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,36.783697,0.15,4 +29152,0,0.997452,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.938838,0.15,4 +29153,0,1.154577,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.70984,0.15,4 +29157,0,1.449376,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,34.785029,0.15,4 +29161,0,1.944637,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,46.671292,0.15,4 +29163,0,1.164328,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.94386,0.15,4 +29169,0,0.575005,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.800114,0.15,4 +29170,0,1.611253,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,38.670081,0.15,4 +29172,0,0.536926,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.886223,0.15,4 +29174,0,0.161298,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.871151,0.15,4 +29175,0,1.733701,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,41.608832,0.15,4 +29178,0,1.380924,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.142164,0.15,4 +29181,0,2.002622,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,48.062925,0.15,4 +29193,0,1.88605,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,45.2652,0.15,4 +29269,0,1.536222,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,36.869322,0.15,4 +29314,0,2.112299,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,50.695187,0.15,4 +29323,0,1.550118,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,37.202837,0.15,4 +6478,0,2.637305,1,1,0,2,5,,4,4,River,Rd,831807,2.977,5.614,0,63.295332,5.8,4.5 +8777,0,0.990169,1,1,0,2,4,,5,7,Marine City,Hwy,970205,1.017,2.007,0,23.76405,3,4 +8801,0,3.600582,1,1,0,2,6,,5,7,Middle Channel,Dr,974320,0.898,4.498,0,86.413971,5.8,6 +21206,0,0.256641,1,1,0,2,4,,5,7,Dixie,Hwy,4502633,0,0.257,0,6.159389,3,4 +21335,0,1.280045,1,1,0,2,5,,5,7,Bethuy,Rd,4501164,0.17,1.45,0,30.721075,3.7,5 +25927,0,2.833883,1,1,0,2,99,,,4,Centroid Connector,,0,0,0,0,68.013193,0.15,4 +29139,0,0.581812,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.963496,0.15,4 +29192,0,0.903461,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,21.683069,0.15,4 +3902,0,1.730893,1,1,0,2,5,,4,4,River,Rd,800901,3.502,5.233,0,41.541432,5.8,4.5 +29199,0,0.401655,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.639717,0.15,4 +4069,1,0.874759,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,0,0.875,0,20.994209,3.7,5 +4649,0,1.153416,1,1,0,2,4,,4,4,River,Rd,800901,2.349,3.502,0,27.681993,4.5,4.5 +5550,1,0.877742,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,13.569,14.446,0,21.065818,3.7,5 +24543,0,0.01679,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,11.265,11.281,0,0.402968,4.5,4.5 +24935,0,0.664724,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.953364,0.15,4 +25929,0,0.386986,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.287655,0.15,4 +29871,0,0.631265,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.150368,0.15,4 +4880,1,0.454423,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,0.875,1.329,0,10.906144,3.7,5 +5551,1,0.264648,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,13.304,13.569,0,6.351557,3.7,5 +25928,0,0.309236,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.421672,0.15,4 +29870,0,0.327534,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.86082,0.15,4 +4992,0,0.314,1,1,0,2,4,,4,4,River,Rd,800901,2.035,2.349,0,7.53599,4.5,4.5 +24934,0,0.363034,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.712827,0.15,4 +6070,0,0.519014,1,1,0,2,4,,4,4,Bridgeview,St,831906,0,0.519,0,12.456327,4.5,4.5 +24115,0,0.54365,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,10.721,11.265,0,13.047599,4.5,4.5 +24196,0,0.615431,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,11.607,12.222,0,14.770343,4.5,4.5 +24305,0,0.3252,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,11.281,11.607,0,7.80479,4.5,4.5 +29197,0,1.360813,1,1,0,2,99,,,4,Centroid Connector,,0,0,0,0,32.659513,0.15,4 +3920,0,0.677478,1,1,0,2,5,,4,4,Cotton,Rd,801306,1.151,1.829,0,16.259467,5.8,4.5 +4208,1,1.450928,2,0,0,1,1,,5,4,E I 94,,798501,20.736,22.187,0,,1.02,7 +5012,-1,1.320981,0,2,0,1,1,,5,4,W I 94,,798502,20.806,22.127,0,,1.02,7 +5576,0,0.776007,1,1,0,2,4,,4,4,Jefferson,Ave,821205,3.119,3.895,0,18.624162,4.5,4.5 +5936,0,0.561803,1,1,0,2,5,,4,4,Donner,Rd,814703,0,0.562,0,13.483276,5.8,4.5 +6087,0,0.509592,1,1,0,2,5,,4,4,Callens,Rd,814710,0.875,1.385,0,12.230206,5.8,4.5 +6141,0,0.241362,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,3.457,3.698,0,5.792678,5.8,4.5 +6215,0,0.29802,2,2,1,2,4,,4,4,23 Mile,Rd,807106,16.444,16.742,0,7.152481,4.5,4.5 +6454,0,0.510452,1,1,0,2,5,,4,4,24 Mile,Rd,819202,1.018,1.529,0,12.250856,5.8,4.5 +6533,0,0.543458,1,1,0,2,4,,5,4,Washington,St,814905,2.164,2.707,0,13.042996,3,4 +6543,0,0.895352,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,2.562,3.457,0,21.488447,5.8,4.5 +6562,0,0.502045,1,1,0,2,4,,5,4,26 Mile,Rd,816702,15.989,16.491,0,12.049089,3,4 +6883,0,1.468451,1,1,0,2,4,,4,4,Jefferson,Ave,821205,3.895,5.363,0,35.242825,4.5,4.5 +29200,0,1.162364,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,27.896748,0.15,4 +29203,0,0.274085,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.57805,0.15,4 +29209,0,0.566507,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.596158,0.15,4 +29212,0,0.452941,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.870589,0.15,4 +29215,0,0.359909,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.637811,0.15,4 +29225,0,0.960236,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,23.045661,0.15,4 +29235,0,0.389177,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.340246,0.15,4 +6378,0,1.067257,1,1,0,2,4,,4,4,Jefferson,Ave,821205,1.452,2.519,0,25.614158,4.5,4.5 +25923,0,0.537717,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.905209,0.15,4 +29205,0,0.559276,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.422634,0.15,4 +20615,0,0.546289,1,1,0,2,4,,4,4,William P Rosso,Hwy,4205105,0.666,1.213,0,13.11094,4.5,4.5 +4057,0,0.515797,1,1,0,2,5,,4,4,Cotton,Rd,801306,0.577,1.092,0,12.379117,5.8,4.5 +5384,0,0.503554,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,1.119,1.622,0,12.085294,5.8,4.5 +5602,0,0.69589,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.74,11.436,0,16.701356,4.5,4.5 +6573,0,0.347126,2,2,0,2,4,,4,4,Jefferson,Ave,821205,0.21,0.557,0,8.331016,4.5,4.5 +6799,0,0.262586,1,1,0,2,4,,4,4,Jefferson,Ave,821205,1.189,1.452,0,6.302053,4.5,4.5 +25918,0,0.322597,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.742334,0.15,4 +25919,0,0.339991,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.159775,0.15,4 +28619,0,0.647292,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.535007,0.15,4 +29818,0,0.672565,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.141571,0.15,4 +5997,0,0.429828,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.31,10.74,0,10.315872,4.5,4.5 +25921,0,0.533874,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.812974,0.15,4 +6319,0,0.169683,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,0.949,1.119,0,4.07239,5.8,4.5 +29819,0,0.583685,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.008441,0.15,4 +4220,0,0.059061,1,1,0,2,5,,4,4,Cotton,Rd,801306,1.092,1.151,0,1.41747,5.8,4.5 +6158,0,0.378572,2,2,0,2,4,,4,4,Jefferson,Ave,821205,0.557,0.935,0,9.085719,4.5,4.5 +5405,0,0.253841,1,1,0,2,4,,4,4,Jefferson,Ave,821205,0.935,1.189,0,6.092194,4.5,4.5 +37234,0,1.006589,1,1,0,2,5,,4,4,Hayes,Rd,4208921,9.118,10.124,0,24.158146,5.8,4.5 +37289,-1,0.040478,0,2,0,2,4,,4,5,Geddes,Rd,4606143,0,0.04,0,0.971473,4.5,4.5 +37241,-1,0.034487,0,1,0,2,4,,4,4,25 Mile,Rd,4211018,0.046,0.08,0,0.827685,4.5,4.5 +37240,-1,0.018111,0,1,0,2,4,,4,4,25 Mile,Rd,4211018,0.028,0.046,0,0.434654,4.5,4.5 +37247,-1,0.026463,0,1,0,2,4,,4,4,Hayes,Rd,4211017,0.052,0.079,0,0.635116,4.5,4.5 +4344,0,0.484695,1,1,0,2,5,,4,4,Cotton,Rd,801306,0.092,0.577,0,11.632686,5.8,4.5 +6271,0,0.299335,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,1.836,2.135,0,7.184043,5.8,4.5 +6703,0,0.213389,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,1.622,1.836,0,5.121336,5.8,4.5 +6965,0,0.426913,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,2.135,2.562,0,10.245919,5.8,4.5 +5976,0,0.600474,1,1,0,2,4,,4,4,Jefferson,Ave,821205,2.519,3.119,0,14.411367,4.5,4.5 +6957,0,0.580208,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,3.698,4.278,0,13.924989,5.8,4.5 +29202,0,0.85315,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,20.475597,0.15,4 +29206,0,0.413064,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.913527,0.15,4 +3912,1,2.646615,2,0,0,1,1,,4,4,E I 94,,798501,18.09,20.736,0,,0.8,7.5 +4568,-1,2.705638,0,2,0,1,1,,4,4,W I 94,,798502,18.101,20.806,0,,0.8,7.5 +6223,0,0.811227,2,2,1,2,4,,4,4,23 Mile,Rd,807106,14.266,15.077,0,19.469457,4.5,4.5 +6297,0,1.20818,2,2,1,2,4,,5,4,Gratiot,Ave,832010,7.875,9.083,0,28.996319,3,4 +6564,0,0.691187,1,1,0,2,4,,4,4,26 Mile,Rd,816702,14.304,14.995,0,16.588479,4.5,4.5 +6587,0,0.611711,2,2,1,2,4,,4,4,Gratiot,Ave,832010,7.263,7.875,0,14.681066,4.5,4.5 +25949,0,1.418558,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,34.045403,0.15,4 +29220,0,0.780942,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.742611,0.15,4 +29498,0,0.767878,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.429079,0.15,4 +29500,0,0.954573,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,22.90976,0.15,4 +3935,1,0.368447,3,0,0,1,1,,4,4,E I 94,,798501,17.358,17.726,0,,0.8,7.5 +4435,1,0.303814,1,0,0,1,1,RON,4,4,E 23 Mile/E I 94,RAMP,801308,0,0.304,0,,1.09,4 +4641,-1,0.309945,0,3,0,1,1,,4,4,W I 94,,798502,17.486,17.796,0,,0.8,7.5 +4738,1,0.426915,1,0,0,1,1,ROF,4,4,W I 94/23 Mile,RAMP,801702,0,0.427,0,,2.24,5 +4750,1,0.487422,1,0,0,1,1,ROF,4,4,E I 94/23 Mile,RAMP,801307,0,0.487,0,,2.24,5 +5065,1,0.312823,1,0,0,1,1,RON,4,4,W 23 Mile/W I 94,RAMP,801701,0,0.313,0,,1.09,4 +5584,0,1.007013,2,2,1,2,4,,4,4,Gratiot,Ave,832010,5.508,6.515,0,24.168305,4.5,4.5 +6648,0,0.098087,2,2,1,2,3,,4,4,23 Mile,Rd,807106,14.045,14.143,0,2.354076,3.7,5 +6806,0,0.611785,2,2,1,2,4,,4,4,Gratiot,Ave,832010,6.652,7.263,0,14.682833,4.5,4.5 +29138,0,0.776974,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.647371,0.15,4 +29223,0,0.502383,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.05718,0.15,4 +4150,1,0.242298,1,0,0,1,1,RON,4,4,23 Mile/W I 94,RAMP,801610,0,0.242,0,,1.09,4 +5901,0,0.398094,2,2,1,2,3,,4,4,Gratiot,Ave,832010,5.11,5.508,0,9.554263,3.7,5 +6655,0,0.306511,2,2,1,2,3,,4,4,23 Mile,Rd,807106,13.461,13.767,0,7.356266,3.7,5 +4944,0,0.328317,1,1,0,2,5,,4,4,Cotton,Rd,801306,1.829,2.157,0,7.879597,5.8,4.5 +24928,0,0.165028,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.960668,0.15,4 +6233,0,0.179091,2,2,1,2,3,,4,4,23 Mile,Rd,807106,13.767,13.946,0,4.298192,3.7,5 +6653,0,0.027098,2,2,1,2,3,,4,4,23 Mile,Rd,807106,13.946,13.973,0,0.650343,3.7,5 +6232,0,0.07123,2,2,1,2,3,,4,4,23 Mile,Rd,807106,13.973,14.045,0,1.709516,3.7,5 +5416,0,0.136919,2,2,1,2,4,,4,4,Gratiot,Ave,832010,6.515,6.652,0,3.286058,4.5,4.5 +6682,0,0.664551,1,1,0,2,5,,4,4,Donner,Rd,814703,0.562,1.226,0,15.949213,5.8,4.5 +29222,0,0.288024,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.912565,0.15,4 +4161,1,0.260686,1,0,0,1,1,RON,4,4,23 Mile/E I 94,RAMP,801310,0,0.261,0,,1.09,4 +4209,1,0.364064,3,0,0,1,1,,4,4,E I 94,,798501,17.726,18.09,0,,0.8,7.5 +4922,-1,0.30511,0,2,0,1,1,,4,4,W I 94,,798502,17.796,18.101,0,,0.8,7.5 +6228,0,0.059629,2,2,1,2,3,,4,4,23 Mile,Rd,807106,14.143,14.202,0,1.431087,3.7,5 +6639,0,0.063444,2,2,1,2,3,,4,4,23 Mile,Rd,807106,14.202,14.266,0,1.522663,3.7,5 +5796,0,0.683389,1,1,0,2,4,,5,4,26 Mile,Rd,816702,13.621,14.304,0,16.401335,3,4 +25957,0,1.208522,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,29.004539,0.15,4 +25958,0,0.606707,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,14.560959,0.15,4 +6153,0,0.350377,1,1,0,2,4,,5,4,26 Mile,Rd,816702,13.271,13.621,0,8.409044,3,4 +29173,0,0.7612,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.268795,0.15,4 +6109,0,0.221972,1,1,0,2,5,,4,4,24 Mile,Rd,819202,0.184,0.405,0,5.327327,5.8,4.5 +6259,0,0.550018,1,1,0,2,5,,4,4,Foster,Rd,814707,0,0.55,0,13.200439,5.8,4.5 +6630,0,0.293452,2,2,1,2,4,,4,4,23 Mile,Rd,807106,15.516,15.81,0,7.042841,4.5,4.5 +6657,0,0.291815,1,1,0,2,5,,4,4,Sass,Rd,814708,0.766,1.058,0,7.00355,5.8,4.5 +6753,0,0.341268,1,1,0,2,5,,4,4,Callens,Rd,814710,0,0.341,0,8.190423,5.8,4.5 +29211,0,0.914014,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,21.93634,0.15,4 +29214,0,0.529927,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.718237,0.15,4 +29228,0,0.211318,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.071641,0.15,4 +29820,0,0.522348,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.53635,0.15,4 +29827,0,0.630562,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.133485,0.15,4 +6222,0,0.222887,2,2,1,2,4,,4,4,23 Mile,Rd,807106,15.294,15.516,0,5.349276,4.5,4.5 +6638,0,0.21683,2,2,1,2,4,,4,4,23 Mile,Rd,807106,15.077,15.294,0,5.203917,4.5,4.5 +29229,0,0.386834,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.284024,0.15,4 +6635,0,0.516447,1,1,0,2,5,,4,4,Foster,Rd,814707,0.55,1.066,0,12.394718,5.8,4.5 +6513,0,0.18352,1,1,0,2,5,,4,4,24 Mile,Rd,819202,0,0.184,0,4.404473,5.8,4.5 +6322,0,0.452929,1,1,0,2,5,,4,4,Callens,Rd,814710,0.341,0.794,0,10.870305,5.8,4.5 +6628,0,0.307836,2,2,1,2,4,,4,4,23 Mile,Rd,807106,16.136,16.444,0,7.388067,4.5,4.5 +6676,0,0.395231,1,1,0,2,5,,4,4,Sass,Rd,814708,0.118,0.513,0,9.485551,5.8,4.5 +25916,0,0.357892,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.589408,0.15,4 +29216,0,0.266668,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.40003,0.15,4 +6220,0,0.118166,1,1,0,2,5,,4,4,Sass,Rd,814708,0,0.118,0,2.835993,5.8,4.5 +29218,0,0.249828,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.995862,0.15,4 +6216,0,0.326381,2,2,1,2,4,,4,4,23 Mile,Rd,807106,15.81,16.136,0,7.833141,4.5,4.5 +6255,0,0.253231,1,1,0,2,5,,4,4,Sass,Rd,814708,0.513,0.766,0,6.07755,5.8,4.5 +6500,0,0.081141,1,1,0,2,5,,4,4,Callens,Rd,814710,0.794,0.875,0,1.947395,5.8,4.5 +5748,0,0.613109,1,1,0,2,5,,4,4,24 Mile,Rd,819202,0.405,1.018,0,14.71461,5.8,4.5 +6236,0,0.474098,1,1,0,2,5,,4,4,Sass,Rd,814708,1.058,1.532,0,11.378349,5.8,4.5 +29210,0,0.706726,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.961433,0.15,4 +29213,0,0.502481,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.059555,0.15,4 +5794,0,0.563933,1,1,0,2,4,,5,4,26 Mile,Rd,816702,15.425,15.989,0,13.534397,3,4 +6041,0,0.974062,1,1,0,2,4,,5,4,New Haven,Rd,814905,2.996,3.97,0,23.377481,3,4 +6073,0,0.340323,1,1,1,2,4,,4,4,Gratiot,Ave,832010,9.083,9.423,0,8.167743,4.5,4.5 +6152,0,0.429871,1,1,0,2,4,,4,4,26 Mile,Rd,816702,14.995,15.425,0,10.316905,4.5,4.5 +6341,0,0.404465,1,1,0,2,5,,4,4,Main,St,814905,4.408,4.812,0,9.707168,5.8,4.5 +6677,0,0.377819,1,1,0,2,4,,4,4,Main,St,814905,3.97,4.348,0,9.067656,4.5,4.5 +40114,-1,0.323607,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,4416846,0,0.324,0,7.766569,3.7,5 +6256,0,0.059751,1,1,0,2,4,,4,4,Main,St,814905,4.348,4.408,0,1.434022,4.5,4.5 +40113,0,0.011304,1,1,0,2,4,,4,3,11 Mile,Rd,634509,0.992,1.003,0,0.271294,4.5,4.5 +3936,1,0.327089,2,0,0,1,1,ROF,5,4,E I 94/New Haven,RAMP,801403,0,0.327,0,,2.24,5 +4421,1,0.318161,2,0,0,1,1,RON,4,4,New Haven/W I 94,RAMP,801705,0,0.318,0,,1.09,4 +29226,0,0.47531,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,11.407439,0.15,4 +6448,0,0.067524,1,1,0,2,4,,4,4,New Haven,Rd,814905,2.929,2.996,0,1.620576,4.5,4.5 +6132,0,0.221729,1,1,0,2,4,,5,4,New Haven,Rd,814905,2.707,2.929,0,5.321489,3,4 +5468,0,0.995881,1,1,0,2,4,,4,4,Washington,St,814905,0.211,1.207,0,23.901142,4.5,4.5 +5604,0,0.793094,1,1,0,2,4,,4,4,Washington,St,814905,1.371,2.164,0,19.034257,4.5,4.5 +5607,0,0.275535,1,1,0,2,5,,5,4,Baker,Rd,814801,1.444,1.719,0,6.612841,3.7,5 +6150,0,0.957788,1,1,0,2,4,,5,4,26 Mile,Rd,816702,17.469,18.427,0,22.986905,3,4 +6619,0,0.355786,2,2,0,2,4,,4,4,Green,St,807106,18.002,18.358,0,8.538873,4.5,4.5 +6964,0,0.296338,1,1,0,2,5,,4,4,County Line,Rd,814910,0.676,0.972,0,7.112101,5.8,4.5 +20109,0,0.432409,1,1,0,2,5,,4,4,Main,St,4208331,0,0.432,0,10.377804,5.8,4.5 +29196,0,0.721271,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.310515,0.15,4 +29207,0,1.073826,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.771826,0.15,4 +29230,0,0.754184,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.100415,0.15,4 +29232,0,0.607165,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.571958,0.15,4 +29236,0,0.604734,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.513612,0.15,4 +29237,0,0.933,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,22.392008,0.15,4 +30205,0,0.732359,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.576609,0.15,4 +6044,0,0.616447,1,1,0,2,5,,4,4,24 Mile,Rd,819202,1.529,2.145,0,14.794732,5.8,4.5 +6507,0,0.364064,1,1,0,2,5,,4,4,Baker,Rd,814801,0,0.364,0,8.737525,5.8,4.5 +6623,0,0.512796,2,2,1,2,4,,4,4,23 Mile,Rd,807106,17.327,17.84,0,12.307115,4.5,4.5 +29234,0,0.521702,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.520842,0.15,4 +6211,0,0.493516,2,2,1,2,4,,4,4,23 Mile,Rd,807106,16.834,17.327,0,11.844373,4.5,4.5 +6626,0,0.092218,2,2,1,2,4,,4,4,23 Mile,Rd,807106,16.742,16.834,0,2.213226,4.5,4.5 +6099,0,0.668239,1,1,0,2,5,,4,4,Baker,Rd,814801,0.364,1.032,0,16.037735,5.8,4.5 +6000,0,0.411588,1,1,0,2,5,,5,4,Baker,Rd,814801,1.032,1.444,0,9.878124,3.7,5 +6208,0,0.161577,2,2,1,2,4,,4,4,23 Mile,Rd,807106,17.84,18.002,0,3.877843,4.5,4.5 +29233,0,0.706569,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.957666,0.15,4 +5659,0,0.142813,1,1,0,2,5,,4,4,24 Mile,Rd,819202,2.145,2.288,0,3.427503,5.8,4.5 +5999,0,0.164211,1,1,0,2,4,,4,4,Washington,St,814905,1.207,1.371,0,3.941062,4.5,4.5 +3911,1,0.513079,2,0,0,1,1,,5,4,E I 94,,798501,22.187,22.7,0,,1.02,7 +4043,1,0.371122,1,0,0,1,1,ROF,5,4,W I 94/26 Mile,RAMP,801707,0,0.371,0,,2.24,5 +4674,-1,0.527336,0,2,0,1,1,,5,4,W I 94,,798502,22.127,22.654,0,,1.02,7 +4960,1,0.385764,1,0,0,1,1,ROF,5,4,E I 94/26 Mile,RAMP,801405,0,0.386,0,,2.24,5 +5793,0,0.318838,1,1,0,2,4,,5,4,26 Mile,Rd,816702,17.057,17.376,0,7.652113,3,4 +29208,0,0.578716,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.889186,0.15,4 +6151,0,0.566497,1,1,0,2,4,,5,4,26 Mile,Rd,816702,16.491,17.057,0,13.595929,3,4 +4147,1,0.240509,1,0,0,1,1,RON,5,4,26 Mile/W I 94,RAMP,801706,0,0.241,0,,1.09,4 +4609,1,0.202104,1,0,0,1,1,RON,5,4,26 Mile/E I 94,RAMP,801407,0,0.202,0,,1.09,4 +6558,0,0.093158,1,1,0,2,4,,5,4,26 Mile,Rd,816702,17.376,17.469,0,2.235803,3,4 +5859,0,0.141129,1,1,0,2,5,,4,4,Washington,St,814905,0.07,0.211,0,3.387088,5.8,4.5 +6140,0,0.481239,1,1,0,2,5,,4,4,Main,St,815001,0,0.481,0,11.549741,5.8,4.5 +6205,0,0.140712,2,2,0,2,4,,4,4,Green,St,807106,18.358,18.498,0,3.377083,4.5,4.5 +6616,0,0.470308,2,2,0,2,4,,4,4,Green,St,807106,19.08,19.55,0,11.287394,4.5,4.5 +20072,0,0.280371,1,1,0,2,5,,4,4,Main,St,4208331,0.575,0.855,0,6.728895,5.8,4.5 +29195,0,0.43204,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.368964,0.15,4 +20073,0,0.142704,1,1,0,2,5,,4,4,Main,St,4208331,0.432,0.575,0,3.424902,5.8,4.5 +6196,0,0.49319,1,1,0,2,5,,4,4,County Line,Rd,814910,0.183,0.676,0,11.836571,5.8,4.5 +6204,0,0.298689,2,2,0,2,4,,4,4,Green,St,807106,18.781,19.08,0,7.168536,4.5,4.5 +29219,0,0.546124,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.106976,0.15,4 +29231,0,0.390561,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.373458,0.15,4 +6617,0,0.282776,2,2,0,2,4,,4,4,Green,St,807106,18.498,18.781,0,6.786624,4.5,4.5 +6606,0,0.182618,1,1,0,2,5,,4,4,County Line,Rd,814910,0,0.183,0,4.382839,5.8,4.5 +20070,0,0.180839,1,1,0,2,5,,4,4,Main,St,4208331,0.855,1.036,0,4.340134,5.8,4.5 +6602,0,0.517674,1,1,0,2,4,,4,4,Dixie,Hwy,807106,19.612,20.13,0,12.424174,4.5,4.5 +29244,0,0.389217,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.341207,0.15,4 +6203,0,0.0623,2,2,0,2,4,,4,4,Dixie,Hwy,807106,19.55,19.612,0,1.495192,4.5,4.5 +8713,0,1.021156,1,1,0,2,5,,5,7,County Line,Rd,970206,0,1.021,0,24.507754,3.7,5 +8781,0,1.016982,1,1,0,2,4,,5,7,Marine City,Hwy,970205,0,1.017,0,24.407576,3,4 +21334,0,1.016928,1,1,0,2,5,,5,7,Bethuy,Rd,4501164,1.45,2.467,0,24.406282,3.7,5 +6542,0,0.538216,1,1,0,2,5,,4,4,County Line,Rd,814910,0.972,1.51,0,12.91719,5.8,4.5 +29194,0,0.096357,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,2.312561,0.15,4 +19574,0,2.819207,1,1,0,2,5,,5,7,Channel,Dr,1917709,0.531,3.35,0,67.660978,3.7,5 +19681,0,0.531319,1,1,0,2,5,,5,7,Channel,Dr,1917709,0,0.531,0,12.751661,3.7,5 +29140,0,2.398129,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,57.555096,0.15,4 +29141,0,1.293992,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,31.0558,0.15,4 +8742,0,1.030606,1,1,0,2,4,,5,7,Marine City,Hwy,970205,4.031,5.061,0,24.734536,3,4 +8937,0,1.240222,1,1,0,2,5,,5,7,Starville,Rd,974010,1.151,2.391,0,29.765327,3.7,5 +21199,0,1.65444,1,1,0,2,4,,5,7,Dyke,Rd,4502633,4.356,6.011,0,39.706555,3,4 +21200,0,1.047038,1,1,0,2,4,,5,7,Dixie,Hwy,4502633,3.31,4.356,0,25.128908,3,4 +29239,0,1.466696,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,35.200707,0.15,4 +29241,0,0.539579,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.949898,0.15,4 +29242,0,0.920805,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.099322,0.15,4 +8317,0,1.116019,1,1,0,2,5,,5,7,Church,Rd,965408,0,1.116,0,26.784468,3.7,5 +8774,0,1.006788,1,1,0,2,4,,5,7,Marine City,Hwy,970205,2.007,3.014,0,24.162918,3,4 +21202,0,1.127927,1,1,0,2,4,,5,7,Dixie,Hwy,4502633,1.041,2.168,0,27.070241,3,4 +29240,0,2.12375,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,50.969999,0.15,4 +21204,0,0.784021,1,1,0,2,4,,5,7,Dixie,Hwy,4502633,0.257,1.041,0,18.816496,3,4 +8316,0,1.034846,1,1,0,2,5,,5,7,Church,Rd,965408,1.116,2.151,0,24.836303,3.7,5 +21201,0,1.141581,1,1,0,2,4,,5,7,Dixie,Hwy,4502633,2.168,3.31,0,27.39794,3,4 +8757,0,1.017385,1,1,0,2,4,,5,7,Marine City,Hwy,970205,3.014,4.031,0,24.417243,3,4 +29243,0,1.106345,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.552284,0.15,4 +21197,0,3.210894,1,1,0,2,4,,5,7,Dyke,Rd,4502633,6.011,9.212,0,77.061447,3,4 +29136,0,1.283945,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,30.814691,0.15,4 +29148,0,1.570658,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,37.695797,0.15,4 +8818,0,0.898468,1,1,0,2,6,,5,7,Middle Channel,Dr,974320,0,0.898,0,21.563224,5.8,6 +8800,0,0.641092,1,1,0,2,6,,5,7,Cottage,Ln,974401,0,0.641,0,15.386214,5.8,6 +8254,0,0.129287,1,1,0,2,6,,5,7,Golf Course,Rd,967407,1.56,1.689,0,3.10288,5.8,6 +30208,0,1.402707,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.664956,0.15,4 +22093,0,0.053035,1,1,0,2,5,,5,7,Swartout,Rd,4502742,0,0.053,0,1.272841,3.7,5 +8307,0,1.024453,1,1,0,2,5,,5,7,Palms,Rd,965609,1.373,2.397,0,24.586862,3.7,5 +8740,0,2.049889,1,1,0,2,4,,5,7,Marine City,Hwy,970205,5.061,7.111,0,49.197327,3,4 +8927,0,1.53014,1,1,0,2,5,,5,7,Starville,Rd,974010,2.391,3.921,0,36.723355,3.7,5 +8930,0,2.071513,1,1,0,2,5,,5,7,Shea,Rd,969506,0,2.071,0,49.716322,3.7,5 +29145,0,0.827056,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,19.849344,0.15,4 +8308,0,1.017258,1,1,0,2,5,,5,7,Palms,Rd,965609,0.356,1.373,0,24.414182,3.7,5 +8309,0,0.35591,1,1,0,2,5,,5,7,Palms,Rd,965609,0,0.356,0,8.541839,3.7,5 +29238,0,0.9921,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.810389,0.15,4 +8306,0,1.021498,1,1,0,2,5,,5,7,Palms,Rd,965609,2.397,3.419,0,24.515951,3.7,5 +8922,0,1.525925,1,1,0,2,5,,5,7,Starville,Rd,974010,3.921,5.447,0,36.622207,3.7,5 +5665,0,1.054374,1,1,0,2,4,,5,4,Memphis Ridge,Rd,817204,4.022,5.076,0,25.304967,3,4 +6798,0,1.783162,1,1,0,2,5,,5,4,School Section,Rd,822609,2.704,4.487,0,42.795888,3.7,5 +7358,-1,3.723256,0,2,0,1,1,,5,7,W I 69,,962902,11.921,15.643,0,,1.02,7 +7488,1,3.604263,2,0,0,1,1,,5,7,E I 69,,962706,11.98,15.584,0,,1.02,7 +7669,0,0.53999,1,1,0,2,6,GRV,5,7,Lambs,Rd,963704,1.03,1.57,0,12.959753,5.55,5 +7678,0,2.15995,1,1,0,2,5,,5,7,Bauman,Rd,963605,1.086,3.246,0,51.838795,3.7,5 +7776,0,1.032045,1,1,0,2,5,,5,7,Gratiot,Ave,963509,7.4,8.432,0,24.769086,3.7,5 +7877,0,1.005866,1,1,0,2,5,,5,7,Gratiot,Ave,963509,1.488,2.494,0,24.140788,3.7,5 +7929,0,1.531371,1,1,0,2,6,GRV,5,7,Sparling,Rd,961908,2.728,4.259,0,36.752898,5.55,5 +8194,-1,7.292188,0,2,0,1,1,,5,7,W I 94,,967804,0,7.291,0,,1.02,7 +8228,0,1.300887,1,1,0,2,5,,5,7,Meisner,Rd,967607,0,1.301,0,31.221293,3.7,5 +8243,1,7.267295,2,0,0,1,1,,5,7,E I 94,,967606,0,7.266,0,,1.02,7 +8299,0,0.920078,1,1,0,2,5,,5,7,Palms,Rd,965609,12.217,13.137,0,22.081882,3.7,5 +8696,0,1.719063,1,1,0,2,5,,5,7,Alpine,Rd,976210,1.257,2.976,0,41.257502,3.7,5 +8992,0,1.046977,1,1,0,2,5,GRV,5,7,Mayer,Rd,969310,2.527,3.573,0,25.127449,5.55,5 +9047,0,0.76973,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,7.54,8.31,0,18.473528,3.7,5 +9063,0,1.883676,1,1,0,2,5,,5,7,Dolan,Rd,968804,1.437,3.32,0,45.208217,3.7,5 +20861,0,1.47849,1,1,0,2,4,,5,7,Division,Rd,4210005,0.774,2.252,0,35.483754,3,4 +25936,0,1.055761,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.338252,0.15,4 +25961,0,1.701797,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,40.843137,0.15,4 +28204,0,2.495428,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,59.890268,0.15,4 +28205,0,1.799406,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,43.185737,0.15,4 +28208,0,1.431796,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,34.363097,0.15,4 +29189,0,0.882038,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,21.168911,0.15,4 +5502,0,0.12573,1,1,1,2,4,,4,4,Gratiot,Ave,832010,15.152,15.278,0,3.017515,4.5,4.5 +6008,0,2.362336,1,1,0,2,5,,5,4,Ridge,St,817602,8.552,10.914,0,56.696068,3.7,5 +6298,0,1.199762,1,1,0,2,4,,5,4,Gratiot,Ave,832010,11.536,12.736,0,28.794276,3,4 +6416,0,0.604247,1,1,0,2,6,GRV,5,4,29 Mile,Rd,815710,14.546,15.15,0,14.501937,5.55,5 +6775,0,0.612061,1,1,0,2,4,,4,4,Division,Rd,815804,16.591,17.203,0,14.689469,4.5,4.5 +6800,0,2.017922,1,1,0,2,5,,5,4,Haven Ridge,Rd,822207,3.403,5.421,0,48.430126,3.7,5 +8680,0,1.245096,1,1,0,2,5,,5,7,County Line,Rd,970206,5.114,6.359,0,29.882295,3.7,5 +20685,0,1.021067,1,1,0,2,5,GRV,5,4,33 Mile,Rd,4204881,3.489,4.51,0,24.505609,5.55,5 +24936,0,2.164716,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,51.953196,0.15,4 +25954,0,1.682395,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,40.377468,0.15,4 +25955,0,1.522598,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,36.542353,0.15,4 +28225,0,1.691954,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,40.606899,0.15,4 +28226,0,1.367259,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,32.814208,0.15,4 +29164,0,1.478718,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,35.489242,0.15,4 +29165,0,0.636702,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,15.280847,0.15,4 +5896,0,1.030728,1,1,0,2,5,,5,4,Haven Ridge,Rd,822207,1.345,2.375,0,24.737463,3.7,5 +6366,0,0.424772,1,1,0,2,5,,4,4,Main,St,814905,4.991,5.415,0,10.194534,5.8,4.5 +6581,0,0.388415,1,1,0,2,5,,4,4,Clark,St,822108,1.932,2.32,0,9.321966,5.8,4.5 +25956,0,1.557295,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,37.375085,0.15,4 +29816,0,1.653703,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,39.688869,0.15,4 +5932,0,0.154134,1,1,0,2,5,,4,4,Main,St,814905,5.415,5.569,0,3.699213,5.8,4.5 +5133,0,0.35506,1,1,0,2,4,,4,4,Gratiot,Ave,832010,9.961,10.316,0,8.521433,4.5,4.5 +5807,0,0.299102,1,1,0,2,5,,4,4,Clark,St,822108,2.879,3.178,0,7.178445,5.8,4.5 +6292,0,1.026781,1,1,0,2,5,,4,4,Haven Ridge,Rd,822207,0.318,1.345,0,24.642737,5.8,4.5 +6481,0,0.931631,1,1,0,2,4,,5,4,Gratiot,Ave,832010,10.605,11.536,0,22.359142,3,4 +29110,0,0.68288,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.38912,0.15,4 +6167,0,0.558749,1,1,0,2,5,,4,4,Clark,St,822108,2.32,2.879,0,13.409971,5.8,4.5 +6725,0,0.318248,1,1,0,2,5,,4,4,Haven Ridge,Rd,822207,0,0.318,0,7.63796,5.8,4.5 +6791,0,0.08252,1,1,0,2,5,,4,4,Main,St,814905,4.908,4.991,0,1.980477,5.8,4.5 +29168,0,0.219495,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.267875,0.15,4 +29167,0,0.093523,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.244553,0.15,4 +6807,0,0.288572,1,1,0,2,4,,4,4,Gratiot,Ave,832010,10.316,10.605,0,6.925735,4.5,4.5 +5497,0,1.027801,1,1,0,2,5,,5,4,Haven Ridge,Rd,822207,2.375,3.403,0,24.667233,3.7,5 +6840,0,1.562901,1,1,0,2,6,GRV,5,4,29 Mile,Rd,815710,12.983,14.546,0,37.509616,5.55,5 +5861,0,1.512137,1,1,0,2,4,,5,4,Division,Rd,815804,13.538,15.05,0,36.291292,3,4 +6407,0,1.528436,1,1,0,2,5,,5,4,Ridge,St,817602,7.024,8.552,0,36.682471,3.7,5 +20686,0,0.525117,1,1,0,2,5,GRV,5,4,33 Mile,Rd,4204881,2.964,3.489,0,12.602806,5.55,5 +24937,0,1.430969,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,34.343265,0.15,4 +24939,0,0.731719,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,17.561249,0.15,4 +25606,0,2.430775,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,58.338604,0.15,4 +6358,0,0.04624,1,1,0,2,4,,5,4,Division,Rd,815804,13.492,13.538,0,1.109771,3,4 +5471,0,1.541746,1,1,0,2,4,,5,4,Division,Rd,815804,15.05,16.591,0,37.001907,3,4 +24938,0,1.841071,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,44.185716,0.15,4 +5812,0,1.203584,1,1,0,2,4,,5,4,Gratiot,Ave,832010,13.949,15.152,0,28.886026,3,4 +6015,0,0.664869,1,1,0,2,6,,5,4,29 Mile,Rd,815710,15.15,15.815,0,15.956851,5.8,6 +8683,0,1.017384,1,1,0,2,5,,5,7,County Line,Rd,970206,3.076,4.093,0,24.417217,3.7,5 +29166,0,1.708622,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,41.006939,0.15,4 +5981,0,1.213258,1,1,0,2,4,,5,4,Gratiot,Ave,832010,12.736,13.949,0,29.118201,3,4 +28227,0,1.217013,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,29.208321,0.15,4 +8684,0,1.02363,1,1,0,2,5,,5,7,County Line,Rd,970206,2.053,3.076,0,24.567123,3.7,5 +8682,0,1.020848,1,1,0,2,5,,5,7,County Line,Rd,970206,4.093,5.114,0,24.500353,3.7,5 +25960,0,0.655353,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,15.728484,0.15,4 +6050,0,1.535965,1,1,0,2,4,,5,4,Memphis Ridge,Rd,817204,2.486,4.022,0,36.863159,3,4 +6052,0,0.292308,1,1,1,2,4,,4,4,Main,St,817204,0,0.292,0,7.015399,4.5,4.5 +20366,0,0.269647,1,1,0,2,4,,4,4,32 Mile,Rd,4210005,0,0.27,0,6.471522,4.5,4.5 +28232,0,1.542607,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,37.022564,0.15,4 +6051,0,0.479683,1,1,0,2,4,,4,4,Main,St,817204,1.422,1.901,0,11.512396,4.5,4.5 +6460,0,0.199823,1,1,0,2,4,,4,4,Main,St,817204,1.222,1.422,0,4.79575,4.5,4.5 +6752,0,0.088412,1,1,1,2,4,,4,4,Division,Rd,815804,17.513,17.601,0,2.121889,4.5,4.5 +25584,0,0.482691,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.584587,0.15,4 +29249,0,0.499383,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.985183,0.15,4 +29252,0,0.214864,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.156736,0.15,4 +29807,0,0.36999,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.879755,0.15,4 +5447,0,0.309639,1,1,1,2,4,,4,4,Division,Rd,815804,17.203,17.513,0,7.431345,4.5,4.5 +29250,0,0.425899,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.221566,0.15,4 +5615,0,0.339596,1,1,0,2,5,,4,4,Ridge,St,817602,10.914,11.254,0,8.150295,5.8,4.5 +5666,0,0.373138,1,1,0,2,4,,4,4,Main,St,817204,1.901,2.274,0,8.955322,4.5,4.5 +20684,0,0.666576,1,1,0,2,5,,4,4,33 Mile,Rd,4204881,4.51,5.177,0,15.997832,5.8,4.5 +28228,0,0.660719,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.857245,0.15,4 +28230,0,0.293657,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.047776,0.15,4 +6459,0,0.211956,1,1,0,2,4,,4,4,Main,St,817204,2.274,2.486,0,5.086945,4.5,4.5 +5667,0,0.929872,1,1,0,2,4,,4,4,Main,St,817204,0.292,1.222,0,22.316935,4.5,4.5 +5798,0,0.646195,1,1,0,2,4,,4,4,Division,Rd,815804,17.714,18.36,0,15.508677,4.5,4.5 +28231,0,0.557414,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.377924,0.15,4 +6320,0,0.112424,1,1,0,2,4,,4,4,Division,Rd,815804,17.601,17.714,0,2.698184,4.5,4.5 +29248,0,0.207114,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.970733,0.15,4 +7866,0,0.549261,1,1,0,2,5,,5,7,Gratiot,Ave,963509,0.939,1.488,0,13.182258,3.7,5 +8130,0,0.939292,1,1,0,2,4,,5,7,Gratiot,Ave,963509,0,0.939,0,22.543015,3,4 +20165,0,0.503983,1,1,0,2,4,,5,7,Division,Rd,4210005,0.27,0.774,0,12.095604,3,4 +5134,0,0.139397,1,1,0,2,4,,4,4,Gratiot,Ave,832010,15.278,15.417,0,3.345522,4.5,4.5 +5682,0,0.22272,1,1,0,2,5,,4,7,Bordman,Rd,824010,7.377,7.6,0,5.345286,5.8,4.5 +7580,-1,0.76104,0,2,0,1,1,,5,7,W I 69,,962902,11.16,11.921,0,,1.02,7 +7666,1,0.903943,2,0,0,1,1,,5,7,E I 69,,962706,11.077,11.98,0,,1.02,7 +7711,0,1.01301,1,1,0,2,4,,5,7,Kinney,Rd,961905,1.011,2.024,0,24.312232,3,4 +7712,0,1.707738,1,1,0,2,6,GRV,5,7,Lambs,Rd,961904,2.021,3.729,0,40.985719,5.55,5 +7970,0,0.213393,1,1,0,2,5,,5,7,Mill,Rd,961810,0,0.213,0,5.121444,3.7,5 +9162,0,1.505289,1,1,0,2,6,GRV,5,7,Burt,Rd,972704,8.987,10.492,0,36.126938,5.55,5 +9193,0,2.009592,1,1,0,2,6,GRV,5,7,Masters,Rd,972701,5.266,7.275,0,48.230215,5.55,5 +19607,1,0.450174,1,0,0,1,1,RON,5,7,Kinney/W I 69,RAMP,1847403,0,0.45,0,,1.09,4 +19610,1,0.508244,1,0,0,1,1,ROF,5,7,E I 69/Kinney,RAMP,1847310,0,0.508,0,,2.24,5 +25935,0,1.843594,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,44.246264,0.15,4 +25937,0,0.27356,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,6.56543,0.15,4 +26451,0,2.719954,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,65.278885,0.15,4 +26455,0,2.351985,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,56.447639,0.15,4 +29822,0,0.353801,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.491224,0.15,4 +6065,0,1.786775,1,1,0,2,5,,5,7,Bordman,Rd,824010,5.591,7.377,0,42.882603,3.7,5 +25934,0,1.481836,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,35.564069,0.15,4 +9128,0,1.589041,1,1,0,2,5,,5,7,Belle River,Rd,972801,5.67,7.258,0,38.136984,3.7,5 +9117,0,0.132467,1,1,0,2,5,,5,7,Belle River,Rd,972801,7.429,7.561,0,3.179207,3.7,5 +9122,0,0.170229,1,1,0,2,5,,5,7,Belle River,Rd,972801,7.258,7.429,0,4.085505,3.7,5 +7363,-1,3.186173,0,2,0,1,1,,5,7,W I 69,,962902,7.974,11.16,0,,1.02,7 +7493,1,3.120193,2,0,0,1,1,,5,7,E I 69,,962706,7.957,11.077,0,,1.02,7 +25940,0,0.318072,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,7.63373,0.15,4 +5663,0,0.415558,1,1,0,2,4,,4,4,Main,St,817204,7.127,7.542,0,9.973397,4.5,4.5 +6574,0,0.388611,1,1,0,2,5,,5,7,Stoddard,Rd,824207,1.069,1.458,0,9.326654,3.7,5 +20444,0,0.083095,1,1,0,2,5,,5,4,Bordman,Rd,4208939,0,0.083,0,1.994278,3.7,5 +21323,0,0.067867,1,1,0,2,5,,5,7,Bordman,Rd,4502650,0,0.068,0,1.628807,3.7,5 +29821,0,0.433257,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.398172,0.15,4 +6049,0,1.02667,1,1,0,2,4,,4,4,Memphis Ridge,Rd,817204,6.1,7.127,0,24.640074,4.5,4.5 +6458,0,1.023832,1,1,0,2,4,,5,4,Memphis Ridge,Rd,817204,5.076,6.1,0,24.571959,3,4 +29258,0,0.11729,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.814961,0.15,4 +5122,0,1.246872,1,1,0,2,5,,5,7,Bordman,Rd,824010,7.824,9.071,0,29.924918,3.7,5 +7981,0,0.754353,1,1,0,2,4,,5,7,Memphis Ridge,Rd,961807,0.297,1.051,0,18.104475,3,4 +5679,0,0.224456,1,1,0,2,5,,4,7,Bordman,Rd,824010,7.6,7.824,0,5.386934,5.8,4.5 +7734,0,0.074654,1,1,0,2,4,,5,7,Main,St,961807,0,0.075,0,1.791694,3,4 +7248,0,0.222059,1,1,0,2,4,,5,7,Main,St,961807,0.075,0.297,0,5.329424,3,4 +25938,0,0.179816,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.315578,0.15,4 +7953,0,0.96497,1,1,0,2,4,,5,7,Burnell,Rd,961902,0,0.965,0,23.159278,3,4 +7946,0,0.176179,1,1,0,2,4,,5,7,Kinney,Rd,961905,0.835,1.011,0,4.228299,3,4 +8154,0,1.535357,1,1,0,2,5,,5,7,Bauman,Rd,963605,3.246,4.781,0,36.848565,3.7,5 +9065,0,1.401656,1,1,0,2,5,,5,7,Dolan,Rd,968804,0.035,1.437,0,33.639739,3.7,5 +21288,0,0.048589,1,1,0,2,5,,5,7,Dolan,Rd,4502091,0,0.049,0,1.166146,3.7,5 +8688,0,0.670512,1,1,0,2,5,,5,7,Wales Ridge,Rd,976302,0,0.67,0,16.092291,3.7,5 +6159,0,0.090381,1,1,0,2,5,,5,7,Stoddard,Rd,824207,1.458,1.548,0,2.169147,3.7,5 +5802,0,0.034934,1,1,0,2,5,,5,7,Wales Ridge,Rd,824207,1.548,1.583,0,0.838408,3.7,5 +7701,0,2.728475,1,1,0,2,6,GRV,5,7,Sparling,Rd,961908,0,2.728,0,65.483408,5.55,5 +7945,0,1.530638,1,1,0,2,4,,5,7,Kinney,Rd,961905,2.024,3.554,0,36.735309,3,4 +9115,0,1.028852,1,1,0,2,6,GRV,5,7,Cove,Rd,972905,2.567,3.596,0,24.692451,5.55,5 +7943,0,0.515834,1,1,0,2,4,,5,7,Kinney,Rd,961905,4.065,4.581,0,12.380008,3,4 +7710,0,0.510906,1,1,0,2,4,,5,7,Kinney,Rd,961905,3.554,4.065,0,12.261732,3,4 +7940,0,0.256333,1,1,0,2,4,,5,7,Kinney,Rd,961905,4.907,5.163,0,6.151998,3,4 +19608,1,0.419345,1,0,0,1,1,ROF,5,7,W I 69/Kinney,RAMP,1847402,0,0.419,0,,2.24,5 +19609,1,0.4646,1,0,0,1,1,RON,5,7,Kinney/E I 69,RAMP,1847401,0,0.465,0,,1.09,4 +7709,0,0.326261,1,1,0,2,4,,5,7,Kinney,Rd,961905,4.581,4.907,0,7.830272,3,4 +7884,0,1.029793,1,1,0,2,6,GRV,5,7,Lambs,Rd,963704,0,1.03,0,24.715033,5.55,5 +9116,0,1.215001,1,1,0,2,6,GRV,5,7,Cove,Rd,972905,1.352,2.567,0,29.160012,5.55,5 +8687,0,0.133639,1,1,0,2,6,GRV,5,7,Lambs,Rd,976302,2.292,2.425,0,3.207343,5.55,5 +7391,0,1.326015,1,1,0,2,5,,5,7,Gratiot,Ave,963509,4.951,6.277,0,31.824354,3.7,5 +8225,0,1.006043,1,1,0,2,5,,5,7,Meisner,Rd,967607,4.05,5.056,0,24.145022,3.7,5 +8302,0,2.030577,1,1,0,2,5,,5,7,Palms,Rd,965609,7.513,9.544,0,48.733858,3.7,5 +8312,0,1.018476,1,1,0,2,6,GRV,5,7,Church,Rd,965408,6.233,7.251,0,24.443436,5.55,5 +20863,0,1.275853,1,1,0,2,4,,5,7,Division,Rd,4210005,4.039,5.314,0,30.62047,3,4 +28211,0,0.842244,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,20.21385,0.15,4 +28214,0,1.593113,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,38.234716,0.15,4 +28220,0,0.962365,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.096769,0.15,4 +29160,0,1.85999,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,44.639769,0.15,4 +8227,0,1.033784,1,1,0,2,5,GRV,5,7,Meisner,Rd,967607,1.992,3.026,0,24.810811,5.55,5 +8313,0,0.696378,1,1,0,2,6,GRV,5,7,Church,Rd,965408,4.188,4.884,0,16.713062,5.55,5 +28212,0,1.589938,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,38.158507,0.15,4 +29159,0,1.204679,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,28.912305,0.15,4 +8314,0,1.01902,1,1,0,2,6,GRV,5,7,Church,Rd,965408,3.169,4.188,0,24.456482,5.55,5 +28216,0,0.742567,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.82162,0.15,4 +8226,0,1.024191,1,1,0,2,5,,5,7,Meisner,Rd,967607,3.026,4.05,0,24.580576,3.7,5 +29150,0,1.077211,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.853056,0.15,4 +7252,0,2.058905,1,1,0,2,5,,5,7,Gratiot,Ave,963509,2.773,4.832,0,49.413723,3.7,5 +7906,0,1.086475,1,1,0,2,5,,5,7,Bauman,Rd,963605,0,1.086,0,26.075392,3.7,5 +20168,0,0.759964,1,1,0,2,4,,5,7,Division,Rd,4210005,3.279,4.039,0,18.239126,3,4 +24773,0,1.180999,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,28.343966,0.15,4 +28217,0,2.220343,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,53.28824,0.15,4 +28218,0,0.998145,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.95549,0.15,4 +8310,0,0.456493,1,1,0,2,6,GRV,5,7,Church,Rd,965408,8.266,8.722,0,10.955834,5.55,5 +20625,0,1.027012,1,1,0,2,4,,5,7,Division,Rd,4210005,2.252,3.279,0,24.648291,3,4 +8311,0,1.014824,1,1,0,2,6,GRV,5,7,Church,Rd,965408,7.251,8.266,0,24.355771,5.55,5 +7662,0,0.27952,1,1,0,2,5,,5,7,Gratiot,Ave,963509,2.494,2.773,0,6.708488,3.7,5 +7663,0,0.422144,1,1,0,2,6,GRV,5,7,Arlington,Rd,963604,0,0.422,0,10.131446,5.55,5 +21333,0,0.067907,1,1,0,2,6,GRV,5,7,Church,Rd,4501349,0,0.068,0,1.629763,5.55,5 +21329,0,0.024656,1,1,0,2,6,GRV,5,7,Bartel,Rd,4501744,0.771,0.796,0,0.591733,5.55,5 +29465,0,0.414464,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.947125,0.15,4 +28219,0,1.122804,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.9473,0.15,4 +7990,0,0.119354,1,1,0,2,5,,5,7,Gratiot,Ave,963509,4.832,4.951,0,2.864484,3.7,5 +8224,0,2.055821,1,1,0,2,5,,5,7,Meisner,Rd,967607,5.056,7.111,0,49.339714,3.7,5 +8303,0,2.049692,1,1,0,2,5,,5,7,Palms,Rd,965609,5.464,7.513,0,49.1926,3.7,5 +29284,0,1.382184,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.172405,0.15,4 +8304,0,1.022169,1,1,0,2,5,,5,7,Palms,Rd,965609,4.442,5.464,0,24.532044,3.7,5 +29162,0,1.160822,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.859726,0.15,4 +8300,0,1.652426,1,1,0,2,5,,5,7,Palms,Rd,965609,10.565,12.217,0,39.658233,3.7,5 +20697,0,1.584054,1,1,0,2,4,,5,7,Fred W Moore,Hwy,4210005,5.779,7.363,0,38.017284,3,4 +29154,0,1.409017,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.816413,0.15,4 +29246,0,1.257792,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,30.187014,0.15,4 +8175,1,0.425141,1,0,0,1,1,ROF,5,7,W I 94/Division,RAMP,967808,0,0.425,0,,2.24,5 +8193,-1,0.542296,0,2,0,1,1,,5,7,W I 94,,967804,7.291,7.833,0,,1.02,7 +8214,1,0.455848,1,0,0,1,1,ROF,5,7,E I 94/Fred W Moore,RAMP,967704,0,0.456,0,,2.24,5 +8242,1,0.578716,2,0,0,1,1,,5,7,E I 94,,967606,7.266,7.845,0,,1.02,7 +8301,0,1.02123,1,1,0,2,5,,5,7,Palms,Rd,965609,9.544,10.565,0,24.509525,3.7,5 +20628,0,0.224615,1,1,0,2,4,,5,7,Division,Rd,4210005,5.314,5.539,0,5.390749,3,4 +40112,1,0.322191,2,0,0,2,3,,4,3,Orchard Lake,Rd,634003,1.061,1.383,0,7.732595,3.7,5 +40111,1,0.033653,2,0,0,2,4,,4,5,Whittaker,Rd,1439102,9.051,9.084,0,0.807681,4.5,4.5 +40077,1,0.189138,1,0,0,1,1,RON,5,7,Division/W I 94,RAMP,4506226,0,0.189,0,,1.09,4 +20410,0,0.240683,1,1,0,2,4,,5,7,Division,Rd,4210005,5.539,5.779,0,5.776394,3,4 +40076,1,0.195618,1,0,0,1,1,RON,5,7,Fred W Moore/E I 94,RAMP,4506225,0,0.196,0,,1.09,4 +8127,0,1.123206,1,1,0,2,5,,5,7,Gratiot,Ave,963509,6.277,7.4,0,26.956942,3.7,5 +29191,0,1.130182,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.124377,0.15,4 +9044,0,0.726116,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,8.31,9.036,0,17.426783,3.7,5 +7349,-1,4.493708,0,2,0,1,1,,5,7,W I 69,,962902,16.423,20.916,0,,1.02,7 +7486,1,4.468337,2,0,0,1,1,,5,7,E I 69,,962706,16.344,20.811,0,,1.02,7 +7637,0,2.502399,1,1,0,2,5,,5,7,Lapeer,Rd,962901,6.468,8.97,0,60.057575,3.7,5 +7698,0,2.275666,1,1,0,2,5,,5,7,Sparling,Rd,961908,4.259,6.535,0,54.61599,3.7,5 +7968,0,3.622289,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,5.515,9.137,0,86.934946,3.7,5 +8666,0,1.796988,1,1,0,2,6,GRV,5,7,Emerson,Rd,976305,0,1.797,0,43.127704,5.55,5 +8686,0,1.028698,1,1,0,2,5,,5,7,Richman,Rd,976303,0.418,1.447,0,24.688743,3.7,5 +9024,0,1.028635,1,1,0,2,5,,5,7,Wales Center,Rd,968807,1.843,2.871,0,24.687246,3.7,5 +9057,0,1.668833,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,3.666,5.335,0,40.051981,3.7,5 +28206,0,1.996553,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,47.917279,0.15,4 +9027,0,1.843029,1,1,0,2,5,,5,7,Wales Center,Rd,968807,0,1.843,0,44.232685,3.7,5 +9060,0,0.346065,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,3.32,3.666,0,8.305569,3.7,5 +28223,0,0.746649,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.919571,0.15,4 +7726,0,1.023404,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,4.492,5.515,0,24.561707,3.7,5 +9028,0,0.508048,1,1,0,2,5,,5,7,Fitz,Rd,968806,0.946,1.454,0,12.193153,3.7,5 +7403,0,1.042019,1,1,0,2,6,GRV,5,7,Lambs,Rd,963704,2.666,3.708,0,25.008453,5.55,5 +7576,-1,0.779701,0,2,0,1,1,,5,7,W I 69,,962902,15.643,16.423,0,,1.02,7 +7665,1,0.759627,2,0,0,1,1,,5,7,E I 69,,962706,15.584,16.344,0,,1.02,7 +9021,0,1.228708,1,1,0,2,5,,5,7,Wales Center,Rd,968807,3.694,4.922,0,29.488996,3.7,5 +19631,1,0.472877,1,0,0,1,1,ROF,5,7,W I 69/Wales Center,RAMP,1847109,0,0.473,0,,2.24,5 +19632,1,0.395385,1,0,0,1,1,RON,5,7,Wales Center/E I 69,RAMP,1847108,0,0.395,0,,1.09,4 +29253,0,1.258963,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,30.215112,0.15,4 +29256,0,1.292506,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,31.020135,0.15,4 +7607,0,1.096714,1,1,0,2,6,GRV,5,7,Lambs,Rd,963704,1.57,2.666,0,26.321131,5.55,5 +28210,0,1.365642,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,32.77541,0.15,4 +29123,0,1.011182,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.268375,0.15,4 +9022,0,0.822421,1,1,0,2,5,,5,7,Wales Center,Rd,968807,2.871,3.694,0,19.738101,3.7,5 +9006,0,1.093271,1,1,0,2,5,,5,7,Wales Center,Rd,968807,5.868,6.961,0,26.238499,3.7,5 +9017,0,0.513861,1,1,0,2,5,,5,7,Wales Center,Rd,968807,4.922,5.436,0,12.332663,3.7,5 +19629,1,0.355779,1,0,0,1,1,RON,5,7,Wales Center/W I 69,RAMP,1847110,0,0.356,0,,1.09,4 +19635,1,0.469931,1,0,0,1,1,ROF,5,7,E I 69/Wales Center,RAMP,1847107,0,0.47,0,,2.24,5 +9014,0,0.3252,1,1,0,2,5,,5,7,Wales Center,Rd,968807,5.543,5.868,0,7.8048,3.7,5 +9015,0,0.107157,1,1,0,2,5,,5,7,Wales Center,Rd,968807,5.436,5.543,0,2.571776,3.7,5 +8143,0,0.309809,1,1,0,2,6,GRV,5,7,Lambs,Rd,963704,3.708,4.018,0,7.435425,5.55,5 +8586,0,0.38743,1,1,0,2,5,,5,7,Main,St,977005,0,0.387,0,9.298315,3.7,5 +8984,0,1.019308,1,1,0,2,5,,5,7,Mayer,Rd,969310,4.532,5.551,0,24.463391,3.7,5 +9048,0,1.079359,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,6.461,7.54,0,25.904617,3.7,5 +29176,0,1.342227,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,32.213453,0.15,4 +8298,0,1.025245,1,1,0,2,5,,5,7,Palms,Rd,965609,13.137,14.162,0,24.605882,3.7,5 +8986,0,0.958435,1,1,0,2,5,,5,7,Mayer,Rd,969310,3.573,4.532,0,23.002443,3.7,5 +9050,0,1.126296,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,5.335,6.461,0,27.031102,3.7,5 +9071,0,0.490068,1,1,0,2,5,,5,7,Yager,Rd,968704,3.885,4.375,0,11.761642,3.7,5 +9068,0,0.465193,1,1,0,2,5,,5,7,Burns,Rd,968709,0,0.465,0,11.164629,3.7,5 +8007,0,0.839309,1,1,0,2,5,,5,7,Gratiot,Ave,963509,8.572,9.411,0,20.14342,3.7,5 +29177,0,1.339225,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,32.141398,0.15,4 +7569,0,0.140154,1,1,0,2,5,,5,7,Gratiot,Ave,963509,8.432,8.572,0,3.363694,3.7,5 +29188,0,0.591111,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.186663,0.15,4 +7723,0,1.001034,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,9.368,10.369,0,24.024814,3.7,5 +7282,0,0.098239,1,1,0,2,5,,5,7,Henry,St,963308,0.262,0.36,0,2.357731,3.7,5 +7725,0,0.114171,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,9.137,9.251,0,2.740093,3.7,5 +7848,0,0.262284,1,1,0,2,5,,5,7,Henry,St,963308,0,0.262,0,6.294824,3.7,5 +7965,0,0.116971,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,9.251,9.368,0,2.807302,3.7,5 +9070,0,0.097494,1,1,0,2,5,,5,7,Henry/Smith Creek Cutoff,,968707,0,0.098,0,2.339862,3.7,5 +29179,0,0.385712,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.257095,0.15,4 +8668,0,1.049867,1,1,0,2,5,,5,7,Richman,Rd,976303,2.471,3.521,0,25.1968,3.7,5 +8979,0,1.044432,1,1,0,2,5,,5,7,Griswold,Rd,969503,0,1.044,0,25.066375,3.7,5 +29185,0,1.23301,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,29.592236,0.15,4 +29601,0,1.400591,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.614173,0.15,4 +7460,0,1.109214,1,1,0,2,5,,5,7,Lapeer,Rd,962901,8.97,10.079,0,26.621143,3.7,5 +7927,0,0.923683,1,1,0,2,5,,5,7,Sparling,Rd,961908,6.535,7.458,0,22.168387,3.7,5 +8672,0,1.024183,1,1,0,2,5,,5,7,Richman,Rd,976303,1.447,2.471,0,24.580387,3.7,5 +29182,0,1.204217,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,28.901204,0.15,4 +7661,1,0.839203,2,0,0,1,1,,5,7,E I 69,,962706,20.811,21.651,0,,1.02,7 +8972,0,0.604003,1,1,0,2,5,,5,7,Griswold,Rd,969503,1.374,1.978,0,14.496069,3.7,5 +19626,1,0.40515,1,0,0,1,1,ROF,5,7,E I 69/Taylor,RAMP,1847201,0,0.405,0,,2.24,5 +21893,0,0.506989,1,1,0,2,5,,5,7,Dunlap,Rd,4502796,0.51,1.017,0,12.167732,3.7,5 +29184,0,0.472966,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.351184,0.15,4 +8974,0,0.329617,1,1,0,2,5,,5,7,Griswold,Rd,969503,1.044,1.374,0,7.910799,3.7,5 +21904,0,0.50991,1,1,0,2,5,,5,7,Dunlap,Rd,4502796,0,0.51,0,12.237837,3.7,5 +29183,0,0.776164,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,18.62793,0.15,4 +7573,-1,0.69929,0,2,0,1,1,,5,7,W I 69,,962902,20.916,21.616,0,,1.02,7 +19624,1,0.391772,1,0,0,1,1,ROF,5,7,W I 69/Taylor,RAMP,1847203,0,0.392,0,,2.24,5 +19625,1,0.458736,1,0,0,1,1,RON,5,7,Taylor/E I 69,RAMP,1847202,0,0.459,0,,1.09,4 +21892,0,0.622343,1,1,0,2,5,,5,7,Taylor,Dr,4502796,1.017,1.639,0,14.936225,3.7,5 +26075,0,0.380089,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.122136,0.15,4 +19623,1,0.448812,1,0,0,1,1,RON,5,7,Taylor/W I 69,RAMP,1847204,0,0.449,0,,1.09,4 +21889,0,0.338006,1,1,0,2,5,,5,7,Taylor,Dr,4502796,1.639,1.977,0,8.112143,3.7,5 +8250,0,0.426532,1,1,0,2,6,,5,7,Orchid,Blvd,967501,0,0.427,0,10.236766,5.8,6 +8244,0,1.409303,1,1,0,2,6,,5,7,Channel,Dr,967605,1.013,2.422,0,33.823262,5.8,6 +8247,0,0.270798,1,1,0,2,6,,5,7,La Croix,Rd,967504,1.056,1.327,0,6.499161,5.8,6 +8248,0,0.064008,1,1,0,2,6,,5,7,La Croix,Rd,967504,0.992,1.056,0,1.536188,5.8,6 +20046,0,0.06949,1,1,0,2,6,,5,7,La Croix/Green Cutoff,,1918008,0,0.07,0,1.667763,5.8,6 +8246,0,0.089385,1,1,0,2,5,,5,7,Green,Dr,967507,0,0.089,0,2.145233,3.7,5 +8650,0,0.451691,1,1,0,2,4,,4,7,King,Rd,970305,0.779,1.231,0,10.840588,4.5,4.5 +8870,0,1.155296,1,1,0,2,5,,5,7,Marsh,Rd,974108,1.767,2.922,0,27.727109,3.7,5 +8975,0,1.517926,1,1,0,2,5,,5,7,Chartier,Rd,973908,0,1.518,0,36.430235,3.7,5 +21184,0,1.294992,1,1,0,2,4,,5,7,River,Rd,4502633,16.762,18.057,0,31.079807,3,4 +21187,0,0.794985,1,1,0,2,4,,5,7,River,Rd,4502633,15.434,16.229,0,19.079637,3,4 +29265,0,1.021226,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.509419,0.15,4 +29268,0,0.29673,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,7.121522,0.15,4 +8294,0,0.532837,1,1,0,2,5,,5,7,Stone,Rd,966110,0.403,0.936,0,12.788095,3.7,5 +8830,0,1.083739,1,1,0,2,5,,5,7,Stone,Rd,974110,0,1.084,0,26.009746,3.7,5 +8892,0,1.00938,1,1,0,2,5,,5,7,Marsh,Rd,974108,0.248,1.257,0,24.225108,3.7,5 +21189,0,0.925997,1,1,0,2,4,,4,7,Saint Clair River,Dr,4502633,12.823,13.749,0,22.22393,4.5,4.5 +21193,0,0.252374,2,2,1,2,4,,4,7,Pointe Tremble,Rd,4502633,11.466,11.719,0,6.056975,4.5,4.5 +29137,0,1.632864,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,39.188742,0.15,4 +29267,0,0.898262,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,21.55829,0.15,4 +29279,0,0.364099,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.738377,0.15,4 +8252,0,0.080844,1,1,0,2,5,,5,7,Columbine,St,967409,0,0.081,0,1.940259,3.7,5 +8256,0,0.066675,1,1,0,2,6,,5,7,Channel,Dr,967406,0.862,0.929,0,1.600207,5.8,6 +21194,0,0.957398,1,1,0,2,4,,5,7,Pointe Tremble,Rd,4502633,10.509,11.466,0,22.977548,3,4 +24573,0,0.315982,1,1,0,2,5,,,7,Ferry to Harsens Island,,0,0,0,0,7.583566,3.7,5 +8257,0,0.159973,1,1,0,2,5,,5,7,Channel,Dr,967406,0.702,0.862,0,3.839346,3.7,5 +21218,0,0.026052,1,1,0,2,5,,5,7,Ferry Dock,Rd,4502588,0,0.026,0,0.625251,3.7,5 +21195,0,0.36838,1,1,0,2,4,,5,7,Pointe Tremble,Rd,4502633,10.141,10.509,0,8.841121,3,4 +8297,0,0.040765,1,1,0,2,9,,5,7,Ferry Dock,Rd,966005,0,0.041,0,0.978353,5.8,6 +8255,0,0.945131,1,1,0,2,6,,5,7,Channel,Dr,967406,0.929,1.874,0,22.683138,5.8,6 +8253,0,0.051862,1,1,0,2,6,,5,7,Columbine,St,967408,0,0.052,0,1.244686,5.8,6 +8913,0,0.247808,1,1,0,2,5,,5,7,Stone,Rd,974108,0,0.248,0,5.947401,3.7,5 +8292,0,0.62392,1,1,0,2,5,,5,7,Stone,Rd,966110,2.87,3.493,0,14.974091,3.7,5 +8882,0,0.510144,1,1,0,2,5,,5,7,Marsh,Rd,974108,1.257,1.767,0,12.243467,3.7,5 +30209,0,0.868368,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,20.840843,0.15,4 +29135,0,0.143197,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,3.436723,0.15,4 +8293,0,0.156676,1,1,0,2,5,,5,7,Stone,Rd,966110,2.713,2.87,0,3.760235,3.7,5 +8920,0,0.373997,1,1,0,2,5,,5,7,McKinley,Rd,974105,0,0.374,0,8.975937,3.7,5 +8916,0,0.222307,1,1,0,2,5,,5,7,Benoit,Rd,974106,0,0.222,0,5.335367,3.7,5 +22091,0,0.053029,1,1,0,2,5,,5,7,Stone,Rd,4502746,0,0.053,0,1.272699,3.7,5 +21190,0,0.414107,1,1,1,2,4,,4,7,Saint Clair River,Dr,4502633,12.409,12.823,0,9.938559,4.5,4.5 +21192,0,0.157577,1,1,1,2,4,,4,7,Saint Clair River,Dr,4502633,11.853,12.01,0,3.781839,4.5,4.5 +29277,0,0.177628,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.26308,0.15,4 +29281,0,0.395766,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.498378,0.15,4 +8295,0,0.118294,1,1,0,2,5,,4,7,Smith,St,966110,0.285,0.403,0,2.839056,5.8,4.5 +29278,0,0.330306,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,7.927347,0.15,4 +29280,0,0.422901,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,10.149624,0.15,4 +30210,0,0.466652,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.199653,0.15,4 +8296,0,0.061262,1,1,0,2,5,,4,7,Smith,St,966110,0.033,0.095,0,1.470294,5.8,4.5 +21191,0,0.170916,1,1,1,2,4,,4,7,Saint Clair River,Dr,4502633,12.181,12.352,0,4.101986,4.5,4.5 +21188,0,1.685311,1,1,0,2,4,,5,7,River,Rd,4502633,13.749,15.434,0,40.447457,3,4 +29266,0,1.064835,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.556039,0.15,4 +8729,0,0.719006,1,1,0,2,4,,5,7,Marine City,Hwy,970205,9.158,9.877,0,17.256137,3,4 +8844,0,1.17754,1,1,0,2,5,,5,7,Marsh,Rd,974108,4.246,5.423,0,28.260953,3.7,5 +8868,0,0.955833,1,1,0,2,5,,5,7,Marsh,Rd,974108,2.922,3.878,0,22.939992,3.7,5 +8910,0,0.526032,1,1,0,2,5,GRV,5,7,Markel,Rd,969509,4.109,4.635,0,12.624757,5.55,5 +8926,0,1.381242,1,1,0,2,5,,5,7,Shea,Rd,969506,3.093,4.474,0,33.1498,3.7,5 +29261,0,1.382298,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.175143,0.15,4 +29286,0,0.925597,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.214328,0.15,4 +8679,0,1.523806,1,1,0,2,5,GRV,5,7,Indian,Trl,970302,0,1.524,0,36.571341,5.55,5 +8734,0,1.029035,1,1,0,2,4,,5,7,Marine City,Hwy,970205,8.129,9.158,0,24.696848,3,4 +21327,0,1.505072,1,1,0,2,5,,5,7,Broadbridge,Rd,4501745,0.086,1.591,0,36.121725,3.7,5 +29264,0,0.70845,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.002802,0.15,4 +8858,0,0.271748,1,1,0,2,5,,5,7,Marsh,Rd,974108,3.878,4.15,0,6.521951,3.7,5 +21284,1,0.112874,1,0,0,2,5,,5,7,Marsh/Broadbridge Cutoff,,4502200,0,0.113,0,2.708969,3.7,5 +21328,0,0.086421,1,1,0,2,5,,5,7,Broadbridge,Rd,4501745,0,0.086,0,2.074099,3.7,5 +8857,0,0.075616,1,1,0,2,5,,5,7,Marsh,Rd,974108,4.15,4.225,0,1.814779,3.7,5 +8856,0,0.020223,1,1,0,2,5,,5,7,Marsh,Rd,974108,4.225,4.246,0,0.485342,3.7,5 +21186,0,0.533503,1,1,0,2,4,,5,7,River,Rd,4502633,16.229,16.762,0,12.804073,3,4 +8714,0,1.329713,1,1,0,2,4,,5,7,Marine City,Hwy,970205,9.877,11.207,0,31.913115,3,4 +29263,0,1.529842,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,36.716206,0.15,4 +8837,0,0.249965,1,1,0,2,5,,5,7,Marsh,Rd,974108,5.423,5.673,0,5.999162,3.7,5 +29262,0,0.585031,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.040735,0.15,4 +8645,0,0.061047,1,1,0,2,4,,4,7,King,Rd,970305,1.231,1.292,0,1.46513,4.5,4.5 +8287,0,0.406015,1,1,0,2,5,,4,7,Water,St,966706,0.43,0.836,0,9.744362,5.8,4.5 +8290,0,0.279015,2,2,0,2,4,,4,7,Broadway,St,966604,0.241,0.52,0,6.696354,4.5,4.5 +8653,0,0.444935,1,1,0,2,5,,4,7,King,Rd,970305,0,0.445,0,10.67845,5.8,4.5 +21180,0,0.429208,2,2,0,2,4,,4,7,Parker,St,4502633,18.99,19.419,0,10.300999,4.5,4.5 +22151,0,0.198816,1,1,0,2,5,,4,7,Bridge,St,4502654,0,0.199,0,4.771586,5.8,4.5 +29273,0,0.416386,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.993268,0.15,4 +8958,0,0.310923,1,1,1,2,5,,4,7,Chartier,Rd,973908,1.658,1.969,0,7.462156,5.8,4.5 +21183,0,0.713306,1,1,1,2,4,,4,7,River,Rd,4502633,18.057,18.77,0,17.119351,4.5,4.5 +29259,0,0.482478,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.579478,0.15,4 +29260,0,0.459188,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.020522,0.15,4 +8964,0,0.140774,1,1,1,2,5,,4,7,Chartier,Rd,973908,1.518,1.658,0,3.378579,5.8,4.5 +8949,0,0.155832,2,2,1,2,5,,4,7,Chartier,Rd,973908,1.969,2.125,0,3.739957,5.8,4.5 +21182,0,0.219859,1,1,1,2,4,,4,7,River,Rd,4502633,18.77,18.99,0,5.276615,4.5,4.5 +8288,0,0.21002,2,2,1,2,5,,4,7,Belle River,Ave,966610,0.246,0.456,0,5.04048,5.8,4.5 +8656,0,0.115288,1,1,0,2,4,,4,7,West,Blvd,970304,4.441,4.556,0,2.766902,4.5,4.5 +21178,0,0.06153,2,2,0,2,4,,4,7,Parker,St,4502633,19.762,19.823,0,1.476716,4.5,4.5 +29270,0,0.47036,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.288639,0.15,4 +29271,0,0.208854,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.012488,0.15,4 +30207,0,0.280532,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.732775,0.15,4 +8652,0,0.3343,1,1,0,2,5,,4,7,King,Rd,970305,0.445,0.779,0,8.023211,5.8,4.5 +8665,0,0.307932,1,1,0,2,4,,4,7,West,Blvd,970304,4.094,4.402,0,7.390376,4.5,4.5 +29272,0,0.256734,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.161608,0.15,4 +29274,0,0.384422,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.226118,0.15,4 +8662,0,0.039139,1,1,0,2,4,,4,7,West,Blvd,970304,4.402,4.441,0,0.939339,4.5,4.5 +21179,0,0.342746,2,2,0,2,4,,4,7,Parker,St,4502633,19.419,19.762,0,8.225916,4.5,4.5 +8291,0,0.152092,2,2,0,2,4,,4,7,Fairbanks,St,966604,0.089,0.241,0,3.650211,4.5,4.5 +21983,0,0.172523,1,1,0,2,4,,4,7,Main,St,4502782,0.46,0.633,0,4.140562,4.5,4.5 +29283,0,0.168364,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.040742,0.15,4 +8289,0,0.099814,1,1,0,2,5,,4,7,Broadway,St,966604,0.52,0.62,0,2.39554,5.8,4.5 +29285,0,0.085975,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,2.063411,0.15,4 +7350,1,0.473683,2,0,0,2,3,,4,7,Military,St,963509,17.712,18.186,0,11.368387,3.7,5 +7393,0,0.253455,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.418,18.672,0,6.082914,6,4.5 +7469,1,0.252043,2,0,0,2,3,,3,7,I 69 BL,,962706,28.595,28.847,0,6.049024,5,5 +7513,-1,0.250341,0,2,0,2,3,,3,7,I 69 BL,,962902,28.623,28.874,0,6.008182,5,5 +7598,-1,0.251338,0,2,0,2,5,,3,7,Court,St,964102,0.255,0.506,0,6.032112,8,4.5 +7932,-1,0.233562,0,2,0,2,3,,3,7,Electric,Ave,963402,1.633,1.867,0,5.605493,5,5 +8088,1,0.251282,2,0,0,2,5,,3,7,Union,St,964101,0.248,0.5,0,6.030763,8,4.5 +8167,0,2.021032,1,1,0,2,4,,4,7,Range,Rd,968407,0.939,2.959,0,48.504765,4.5,4.5 +8212,1,0.243015,1,0,0,1,1,ROF,5,7,E I 94/Wadhams,RAMP,967706,0,0.243,0,,2.24,5 +8240,1,0.519556,2,0,0,1,1,,5,7,E I 94,,967606,12.246,12.766,0,,1.02,7 +8281,0,1.891809,1,1,0,2,4,,4,7,River,Rd,967105,2.405,4.296,0,45.40341,4.5,4.5 +8889,0,0.09768,1,1,0,2,5,,5,7,Wadhams,Rd,969901,5.801,5.899,0,2.344316,3.7,5 +9084,0,0.253808,2,2,0,2,4,,3,7,Dove,St,968503,2.808,3.061,0,6.091383,6,4.5 +21232,0,0.1312,2,2,0,2,4,,3,7,Water,St,4502548,0.578,0.709,0,3.148806,6,4.5 +24952,0,0.284101,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.818431,0.15,4 +29287,0,0.229253,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.502061,0.15,4 +29290,0,0.535737,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.857682,0.15,4 +29293,0,0.278413,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.681911,0.15,4 +29296,0,1.216865,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,29.204759,0.15,4 +29303,0,0.242158,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.811784,0.15,4 +29304,0,0.258947,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.21473,0.15,4 +29306,0,0.250395,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.009485,0.15,4 +29404,0,0.287353,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.896461,0.15,4 +8217,0,0.659448,1,1,0,2,5,,5,7,Saint Clair,Hwy,967702,11.177,11.837,0,15.826763,3.7,5 +8220,0,0.878464,1,1,0,2,5,,4,7,Meisner,Rd,967607,11.183,12.061,0,21.083143,5.8,4.5 +8627,0,1.016751,1,1,0,2,5,,5,7,King,Rd,970305,5.408,6.424,0,24.402028,3.7,5 +8896,0,1.744206,1,1,0,2,5,,5,7,Wadhams,Rd,969901,0,1.744,0,41.860934,3.7,5 +9038,0,1.889341,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,11.539,13.428,0,45.344178,3.7,5 +20818,0,0.469307,1,1,1,2,4,,4,7,Fred W Moore,Hwy,4210005,11.445,11.914,0,11.263357,4.5,4.5 +21967,0,0.948505,1,1,0,2,4,,4,7,River,Rd,4502782,5.378,6.326,0,22.764127,4.5,4.5 +29156,0,0.673993,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,16.175829,0.15,4 +29295,0,1.155079,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.721896,0.15,4 +29318,0,0.983007,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,23.592173,0.15,4 +8222,0,1.014687,1,1,0,2,5,,5,7,Meisner,Rd,967607,9.151,10.165,0,24.352489,3.7,5 +8629,0,1.020313,1,1,0,2,5,,5,7,King,Rd,970305,3.366,4.386,0,24.487515,3.7,5 +8671,0,1.118312,1,1,0,2,5,,5,7,Indian,Trl,970302,3.616,4.734,0,26.839499,3.7,5 +29324,0,1.135947,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.262719,0.15,4 +8674,0,1.02811,1,1,0,2,5,,5,7,Indian,Trl,970302,2.588,3.616,0,24.674629,3.7,5 +8670,0,0.324816,1,1,0,2,5,,5,7,Indian,Trl,970302,4.734,5.059,0,7.795596,3.7,5 +8221,0,1.017406,1,1,0,2,5,,5,7,Meisner,Rd,967607,10.165,11.183,0,24.417732,3.7,5 +8638,0,1.025165,1,1,0,2,5,,5,7,King,Rd,970305,2.341,3.366,0,24.603971,3.7,5 +29143,0,1.081518,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.956442,0.15,4 +29142,0,0.582256,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.97415,0.15,4 +8641,0,0.036632,1,1,0,2,5,,5,7,King,Rd,970305,2.304,2.341,0,0.87918,3.7,5 +8628,0,1.021564,1,1,0,2,5,,5,7,King,Rd,970305,4.386,5.408,0,24.517548,3.7,5 +30206,0,0.745631,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.895149,0.15,4 +29322,0,0.278551,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,6.685231,0.15,4 +8894,0,1.020076,1,1,0,2,5,,5,7,Wadhams,Rd,969901,2.747,3.767,0,24.481816,3.7,5 +9041,0,1.065139,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,10.474,11.539,0,25.563337,3.7,5 +20325,0,1.023043,1,1,0,2,4,,5,7,Fred W Moore,Hwy,4210005,9.394,10.417,0,24.553041,3,4 +25959,0,0.963367,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.1208,0.15,4 +29299,0,1.856923,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,44.566143,0.15,4 +8895,0,1.003421,1,1,0,2,5,,5,7,Wadhams,Rd,969901,1.744,2.747,0,24.082114,3.7,5 +29158,0,1.080161,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.923861,0.15,4 +8890,0,1.417313,1,1,0,2,5,,5,7,Wadhams,Rd,969901,4.384,5.801,0,34.0155,3.7,5 +8891,0,0.617008,1,1,0,2,5,,5,7,Wadhams,Rd,969901,3.767,4.384,0,14.808184,3.7,5 +8626,0,1.034964,1,1,0,2,5,,5,7,King,Rd,970305,6.424,7.459,0,24.839135,3.7,5 +20123,0,1.027699,1,1,0,2,4,,5,7,Fred W Moore,Hwy,4210005,10.417,11.445,0,24.664782,3,4 +29501,0,1.131044,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.145051,0.15,4 +29502,0,1.100253,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.406077,0.15,4 +29298,0,0.45496,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,10.91903,0.15,4 +21970,0,2.130853,1,1,0,2,4,,4,7,River,Rd,4502782,3.247,5.378,0,51.140476,4.5,4.5 +29325,0,1.128576,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,27.085816,0.15,4 +29327,0,0.707494,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,16.979852,0.15,4 +8218,0,0.478671,1,1,0,2,5,,4,7,Meisner,Rd,967607,12.172,12.65,0,11.488101,5.8,4.5 +21976,0,0.758574,1,1,0,2,4,,5,7,River,Rd,4502782,2.101,2.859,0,18.205768,3,4 +25612,0,0.57098,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.703515,0.15,4 +25613,0,0.824013,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,19.77631,0.15,4 +29326,0,0.772515,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,18.540356,0.15,4 +8219,0,0.11082,1,1,0,2,5,,4,7,Meisner,Rd,967607,12.061,12.172,0,2.659683,5.8,4.5 +21978,0,0.749851,1,1,0,2,4,,5,7,River,Rd,4502782,1.351,2.101,0,17.996435,3,4 +21975,0,0.38804,1,1,0,2,4,,4,7,River,Rd,4502782,2.859,3.247,0,9.312957,4.5,4.5 +8268,0,0.516142,1,1,0,2,4,,4,7,Carney,Dr,967209,0.352,0.868,0,12.387414,4.5,4.5 +8283,0,0.299779,1,1,1,2,4,,4,7,Riverside,Ave,967105,1.777,2.077,0,7.194691,4.5,4.5 +8981,0,0.139201,1,1,0,2,5,,4,7,Vine,St,969402,2.606,2.746,0,3.340813,5.8,4.5 +8998,0,0.186738,1,1,0,2,5,,4,7,9th,St,969001,0.546,0.733,0,4.481706,5.8,4.5 +29312,0,0.211708,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.08099,0.15,4 +29313,0,0.262452,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.298852,0.15,4 +8215,0,0.53471,1,1,0,2,5,,4,7,Saint Clair,Hwy,967702,12.506,13.041,0,12.833041,5.8,4.5 +8216,0,0.669682,1,1,0,2,5,,4,7,Saint Clair,Hwy,967702,11.837,12.506,0,16.072366,5.8,4.5 +8788,0,0.258309,1,1,0,2,5,,4,7,Bree,Rd,970004,0.443,0.702,0,6.19942,5.8,4.5 +9003,0,0.260111,1,1,0,2,5,,4,7,9th,St,969001,0.286,0.546,0,6.242671,5.8,4.5 +9030,0,0.141536,1,1,0,2,4,,4,7,Clinton,Ave,968804,13.994,14.136,0,3.396854,4.5,4.5 +20866,0,0.408352,1,1,0,2,4,,4,7,6th,St,4210005,12.468,12.877,0,9.800452,4.5,4.5 +21906,0,0.345565,2,2,0,2,4,,4,7,Oakland,Ave,4502782,7.021,7.366,0,8.293572,4.5,4.5 +29315,0,0.318186,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,7.636461,0.15,4 +29317,0,0.25567,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.136069,0.15,4 +29332,0,0.239978,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.75948,0.15,4 +29333,0,0.182662,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.383879,0.15,4 +8789,0,0.443483,1,1,0,2,5,,4,7,Bree,Rd,970004,0,0.443,0,10.643588,5.8,4.5 +8269,0,0.352205,1,1,0,2,4,,4,7,Carney,Dr,967209,0,0.352,0,8.452914,4.5,4.5 +9005,0,0.286222,1,1,0,2,7,,4,7,9th,St,969001,0,0.286,0,6.86933,6.55,4.5 +9034,0,0.313828,1,1,0,2,4,,4,7,Clinton,Ave,968804,13.428,13.742,0,7.531866,4.5,4.5 +20578,0,0.208528,1,1,0,2,4,,4,7,Fred W Moore,Hwy,4210005,11.914,12.122,0,5.004667,4.5,4.5 +20171,0,0.282667,1,1,0,2,4,,4,7,Fred W Moore,Hwy,4210005,12.186,12.468,0,6.784005,4.5,4.5 +29321,0,0.490587,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.774081,0.15,4 +20373,0,0.063319,1,1,0,2,4,,4,7,Fred W Moore,Hwy,4210005,12.122,12.186,0,1.519658,4.5,4.5 +29319,0,0.057511,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,1.380263,0.15,4 +29320,0,0.02792,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,0.670074,0.15,4 +9032,0,0.252005,1,1,0,2,4,,4,7,Clinton,Ave,968804,13.742,13.994,0,6.048118,4.5,4.5 +29328,0,0.362543,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.701027,0.15,4 +8784,0,0.182193,1,1,0,2,5,,4,7,Bree,Rd,970004,0.702,0.884,0,4.372637,5.8,4.5 +21956,0,0.336495,1,1,0,2,4,,4,7,River,Rd,4502782,6.326,6.663,0,8.075892,4.5,4.5 +29316,0,0.188086,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.514057,0.15,4 +21955,0,0.357926,2,2,0,2,4,,4,7,Oakland,Ave,4502782,6.663,7.021,0,8.590214,4.5,4.5 +8284,0,0.435053,1,1,1,2,4,,4,7,Riverside,Ave,967105,1.342,1.777,0,10.441283,4.5,4.5 +8285,0,0.282848,1,1,1,2,4,,4,7,Riverside,Ave,967105,1.059,1.342,0,6.788344,4.5,4.5 +8980,0,0.243138,1,1,0,2,5,,4,7,Vine,St,969402,2.746,2.989,0,5.835304,5.8,4.5 +29331,0,0.2903,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.967199,0.15,4 +8286,0,0.076656,2,2,0,2,4,,4,7,Riverside,Ave,967105,0.983,1.059,0,1.839752,4.5,4.5 +9029,0,0.23951,1,1,0,2,4,,4,7,Clinton,Ave,968804,14.136,14.375,0,5.748247,4.5,4.5 +20629,0,0.433812,1,1,0,2,5,,4,7,6th,St,4210005,12.877,13.311,0,10.411487,5.8,4.5 +8168,0,0.467946,1,1,0,2,4,,4,7,Range,Rd,968407,0.471,0.939,0,11.2307,4.5,4.5 +8266,0,0.245705,1,1,0,2,4,,4,7,Brown,St,967209,1.372,1.618,0,5.896924,4.5,4.5 +8982,0,0.125377,1,1,0,2,5,,4,7,Vine,St,969402,2.481,2.606,0,3.009046,5.8,4.5 +29297,0,1.028249,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,24.677982,0.15,4 +29371,0,0.465052,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.161253,0.15,4 +8169,0,0.470658,1,1,0,2,4,,4,7,Range,Rd,968407,0,0.471,0,11.295781,4.5,4.5 +8267,0,0.50363,1,1,0,2,4,,4,7,Carney,Dr,967209,0.868,1.372,0,12.08711,4.5,4.5 +8983,0,0.411764,1,1,0,2,5,,4,7,Vine,St,969402,2.069,2.481,0,9.882346,5.8,4.5 +8264,0,0.263586,1,1,0,2,4,,4,7,Brown,St,967209,1.748,2.011,0,6.326065,4.5,4.5 +29330,0,0.360562,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.653476,0.15,4 +29366,0,0.380033,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.120802,0.15,4 +8265,0,0.129948,1,1,0,2,4,,4,7,Brown,St,967209,1.618,1.748,0,3.118757,4.5,4.5 +8993,0,0.314295,1,1,0,2,5,,4,7,9th,St,969001,0.733,1.047,0,7.543091,5.8,4.5 +8282,0,0.327612,2,2,0,2,4,,4,7,River,Rd,967105,2.077,2.405,0,7.862678,4.5,4.5 +7339,-1,1.989328,0,2,0,1,1,,5,7,W I 69,,962902,23.927,25.916,0,,1.02,7 +7426,0,0.532307,1,1,0,2,4,,5,7,Lapeer,Rd,962901,15.079,15.611,0,12.775373,3,4 +7481,1,2.144133,2,0,0,1,1,,5,7,E I 69,,962706,23.827,25.971,0,,1.02,7 +7548,0,0.238896,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,16.294,16.533,0,5.733498,3.7,5 +7570,1,0.030434,1,0,0,2,3,,4,7,Gratiot/Busha Cutoff,,964003,0,0.03,0,0.730415,3.7,5 +7847,0,0.223217,1,1,0,2,5,,5,7,Gratiot,Rd,963509,13.697,13.92,0,5.3572,3.7,5 +7959,0,0.567589,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,13.885,14.452,0,13.622127,3.7,5 +8103,0,0.252263,1,1,0,2,5,,4,7,Michigan,Rd,963906,2.077,2.329,0,6.054312,5.8,4.5 +8188,-1,2.700167,0,2,0,1,1,,5,7,W I 94,,967804,16.973,19.673,0,,1.02,7 +8190,-1,3.825635,0,2,0,1,1,,5,7,W I 94,,967804,12.898,16.724,0,,1.02,7 +8237,1,2.818168,2,0,0,1,1,,5,7,E I 94,,967606,16.705,19.523,0,,1.02,7 +8239,1,3.699348,2,0,0,1,1,,5,7,E I 94,,967606,12.766,16.465,0,,1.02,7 +8270,0,0.038541,2,2,0,2,4,,4,7,Busha,Hwy,967105,9.388,9.426,0,0.924993,4.5,4.5 +8845,0,1.017544,1,1,0,2,4,,5,7,Wadhams,Rd,969901,10.24,11.257,0,24.42106,3,4 +9189,0,0.709863,1,1,0,2,4,,4,7,Range,Rd,968407,6.022,6.732,0,17.036722,4.5,4.5 +29307,0,1.144725,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.473411,0.15,4 +29340,0,0.423278,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,10.158683,0.15,4 +29341,0,0.542421,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.018092,0.15,4 +29343,0,0.514019,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.336456,0.15,4 +29348,0,0.596354,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.312505,0.15,4 +29349,0,1.109041,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,26.616992,0.15,4 +29350,0,1.148367,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.560801,0.15,4 +29351,0,0.512863,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.308714,0.15,4 +29354,0,1.167935,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,28.030449,0.15,4 +29355,0,0.52448,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.58751,0.15,4 +7235,0,1.158181,1,1,0,2,5,,5,7,Gratiot,Ave,963509,10.879,12.037,0,27.796334,3.7,5 +7721,0,0.763812,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,11.639,12.403,0,18.331492,3.7,5 +7972,0,0.949358,1,1,0,2,5,,5,7,Gratiot,Ave,963509,12.037,12.986,0,22.78458,3.7,5 +8849,0,1.303067,1,1,0,2,4,,5,7,Wadhams,Rd,969901,8.937,10.24,0,31.273602,3,4 +8851,0,1.103194,1,1,0,2,4,,5,7,Wadhams,Rd,969901,7.834,8.937,0,26.476653,3,4 +29187,0,1.218951,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,29.254815,0.15,4 +29346,0,1.381716,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.161176,0.15,4 +29357,0,1.009644,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.231465,0.15,4 +29358,0,0.783142,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,18.795406,0.15,4 +8867,0,0.553079,1,1,0,2,4,,5,7,Wadhams,Rd,969901,6.559,7.112,0,13.273892,3,4 +8878,0,0.379164,1,1,0,2,4,,5,7,Wadhams,Rd,969901,6.18,6.559,0,9.099928,3,4 +8173,1,0.28957,1,0,0,1,1,ROF,5,7,W I 94/Wadhams,RAMP,967810,0,0.29,0,,2.24,5 +8174,1,0.161148,1,0,0,1,1,RON,5,7,Wadhams/W I 94,RAMP,967809,0,0.161,0,,1.09,4 +8191,-1,0.259905,0,2,0,1,1,,5,7,W I 94,,967804,12.638,12.898,0,,1.02,7 +8211,1,0.30655,1,0,0,1,1,RON,5,7,Wadhams/E I 94,RAMP,967707,0,0.307,0,,1.09,4 +8886,0,0.270241,1,1,0,2,4,,5,7,Wadhams,Rd,969901,5.899,6.169,0,6.485777,3,4 +40110,-1,0.038914,0,2,0,2,4,,4,5,Whittaker,Rd,4606157,0,0.039,0,0.933935,4.5,4.5 +8884,0,0.010291,1,1,0,2,4,,5,7,Wadhams,Rd,969901,6.169,6.18,0,0.246993,3,4 +8855,0,0.343572,1,1,0,2,4,,5,7,Wadhams,Rd,969901,7.49,7.834,0,8.245726,3,4 +8860,0,0.378717,1,1,0,2,4,,5,7,Wadhams,Rd,969901,7.112,7.49,0,9.089215,3,4 +29347,0,0.498217,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.957213,0.15,4 +7961,0,1.023898,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,12.403,13.427,0,24.573561,3.7,5 +29356,0,1.078587,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.886078,0.15,4 +29359,0,1.019094,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.458261,0.15,4 +7684,0,0.496127,1,1,0,2,5,,5,7,Gratiot,Ave,963509,13.201,13.697,0,11.907055,3.7,5 +7910,0,0.214376,1,1,0,2,5,,5,7,Gratiot,Ave,963509,12.986,13.201,0,5.145033,3.7,5 +7720,0,0.457993,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,13.427,13.885,0,10.991827,3.7,5 +7266,1,0.33904,1,0,0,1,1,RON,5,7,Wadhams/E I 69,RAMP,962905,0,0.339,0,,1.09,4 +7560,-1,0.629544,0,2,0,1,1,,5,7,W I 69,,962902,23.297,23.927,0,,1.02,7 +7657,1,0.641432,2,0,0,1,1,,5,7,E I 69,,962706,23.185,23.827,0,,1.02,7 +7713,1,0.325803,1,0,0,1,1,RON,5,7,Wadhams/W I 69,RAMP,963301,0,0.326,0,,1.09,4 +8826,0,0.275179,1,1,0,2,4,,5,7,Wadhams,Rd,969901,14.281,14.556,0,6.604294,3,4 +8839,0,1.021832,1,1,0,2,4,,5,7,Wadhams,Rd,969901,12.269,13.291,0,24.523979,3,4 +8965,0,1.021179,1,1,0,2,4,,5,7,Griswold,Rd,969503,4.017,5.038,0,24.508289,3,4 +25969,0,0.197282,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.734757,0.15,4 +25971,0,0.399462,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.587093,0.15,4 +29353,0,1.157949,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.790781,0.15,4 +29360,0,0.518831,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.451956,0.15,4 +8838,0,0.871202,1,1,0,2,4,,5,7,Wadhams,Rd,969901,13.291,14.162,0,20.908841,3,4 +8968,0,1.021368,1,1,0,2,5,,5,7,Griswold,Rd,969503,2.996,4.017,0,24.512827,3.7,5 +7496,1,0.364595,1,0,0,1,1,ROF,5,7,E I 69/Wadhams,RAMP,962903,0,0.365,0,,2.24,5 +8834,0,0.11887,1,1,0,2,4,,5,7,Wadhams,Rd,969901,14.162,14.281,0,2.852883,3,4 +8843,0,1.011843,1,1,0,2,4,,5,7,Wadhams,Rd,969901,11.257,12.269,0,24.284228,3,4 +28224,0,1.243235,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,29.837637,0.15,4 +29190,0,1.146157,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.507774,0.15,4 +29361,0,0.546638,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.119324,0.15,4 +8804,0,0.282641,2,2,0,2,4,,5,7,Wadhams,Rd,969901,14.556,14.839,0,6.783381,3,4 +7829,1,0.379054,1,0,0,1,1,ROF,5,7,W I 69/Wadhams,RAMP,963302,0,0.379,0,,2.24,5 +7632,0,0.231768,1,1,0,2,5,,5,7,Lapeer,Rd,962901,13.606,13.838,0,5.562433,3.7,5 +8798,0,0.082976,2,2,1,2,4,,5,7,Wadhams,Rd,969901,15,15.082,0,1.991426,3,4 +8802,0,0.160956,2,2,0,2,4,,5,7,Wadhams,Rd,969901,14.839,15,0,3.862944,3,4 +7489,0,0.5111,1,1,0,2,5,,5,7,Allen,Rd,962906,3.07,3.581,0,12.266397,3.7,5 +25970,0,0.550034,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.200811,0.15,4 +29352,0,0.353176,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,8.476224,0.15,4 +26074,0,0.323612,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,7.766679,0.15,4 +7386,0,0.26798,2,2,0,2,4,,4,7,Huron,Blvd,963901,1.098,1.366,0,6.431526,4.5,4.5 +7557,0,0.346743,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,15.487,15.834,0,8.321835,3.7,5 +8166,0,1.27643,1,1,0,2,4,,5,7,Range,Rd,968407,2.959,4.236,0,30.63432,3,4 +8170,0,0.3046,1,1,0,2,5,,4,7,Collard,Dr,968305,0.056,0.361,0,7.310411,5.8,4.5 +8261,0,0.711323,1,1,0,2,5,,4,7,River,Rd,967305,0.841,1.552,0,17.071761,5.8,4.5 +8263,0,0.297395,1,1,0,2,5,,4,7,River,Rd,967305,0,0.297,0,7.137478,5.8,4.5 +8273,0,0.339055,1,1,0,2,4,,4,7,Busha,Hwy,967105,7.698,8.037,0,8.137314,4.5,4.5 +8277,0,1.20281,1,1,0,2,4,,4,7,Busha,Hwy,967105,5.64,6.842,0,28.867435,4.5,4.5 +8280,0,0.755202,1,1,0,2,4,,4,7,River,Rd,967105,4.296,5.051,0,18.124838,4.5,4.5 +8898,0,0.154384,1,1,0,2,5,,4,7,Davis,Rd,969701,3.018,3.172,0,3.705222,5.8,4.5 +21986,0,0.300766,1,1,0,2,5,,4,7,Cuttle,Rd,4502830,0.305,0.606,0,7.218377,5.8,4.5 +29363,0,0.261788,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.282916,0.15,4 +29365,0,0.640668,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,15.376031,0.15,4 +29367,0,0.332178,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,7.972276,0.15,4 +29370,0,0.661379,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,15.873101,0.15,4 +8278,0,0.229533,1,1,0,2,4,,4,7,Busha,Hwy,967105,5.41,5.64,0,5.508789,4.5,4.5 +8901,0,0.201923,1,1,0,2,5,,4,7,Davis,Rd,969701,2.816,3.018,0,4.846161,5.8,4.5 +8908,0,0.556854,1,1,0,2,5,,5,7,Davis,Rd,969701,1.998,2.555,0,13.364493,3.7,5 +29308,0,0.678775,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,16.290602,0.15,4 +29345,0,0.667637,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,16.023276,0.15,4 +8906,0,0.261002,1,1,0,2,5,,5,7,Davis,Rd,969701,2.555,2.816,0,6.264042,3.7,5 +8279,0,0.358896,1,1,0,2,4,,4,7,Busha,Hwy,967105,5.051,5.41,0,8.613494,4.5,4.5 +25920,0,0.569962,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.679081,0.15,4 +25922,0,0.581536,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.956858,0.15,4 +29374,0,0.700198,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,16.804748,0.15,4 +40083,0,0.186671,1,1,0,2,5,,2,7,River,St,5492775,0,0.187,0,4.480108,8.5,4.5 +7380,0,0.376433,1,1,0,2,5,,4,7,Michigan,Rd,963906,0.65,1.027,0,9.034404,5.8,4.5 +7717,0,0.434764,1,1,0,2,5,,4,7,6th,St,961901,14.452,14.887,0,10.434347,5.8,4.5 +7769,0,0.545148,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,14.334,14.879,0,13.083564,3.7,5 +8126,0,0.470675,1,1,0,2,4,,4,7,Huron,Blvd,963901,0,0.471,0,11.296206,4.5,4.5 +8132,1,0.352014,1,0,0,1,1,ROF,5,7,W I 94/Gratiot,RAMP,963804,0,0.352,0,,2.24,5 +8189,-1,0.249469,0,2,0,1,1,,5,7,W I 94,,967804,16.724,16.973,0,,1.02,7 +8897,0,0.321489,1,1,0,2,5,,4,7,Cuttle,Rd,969702,0.672,0.994,0,7.71573,5.8,4.5 +9079,0,0.650157,1,1,0,2,4,,4,7,Range,Rd,968407,4.632,5.282,0,15.603759,4.5,4.5 +29291,0,0.561008,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.464191,0.15,4 +29292,0,0.630968,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,15.143223,0.15,4 +40107,1,0.025849,2,0,0,2,4,,4,5,Whittaker,Rd,1439102,9.096,9.121,0,0.620386,4.5,4.5 +40078,1,0.218445,1,0,0,1,1,RON,5,7,Gratiot/E I 94,RAMP,963807,0,0.218,0,,1.09,4 +40081,1,0.342492,1,0,0,1,1,ROF,5,7,E I 94/Gratiot,RAMP,967708,0,0.342,0,,2.24,5 +8238,1,0.239918,2,0,0,1,1,,5,7,E I 94,,967606,16.465,16.705,0,,1.02,7 +7627,0,0.008605,2,2,0,2,3,,5,7,Gratiot,Rd,963509,13.92,13.929,0,0.206514,1.7,4 +40109,1,0.011255,2,0,0,2,4,,4,5,Whittaker,Rd,1439102,9.084,9.096,0,0.270115,4.5,4.5 +40108,-1,0.024089,0,2,0,2,4,,4,5,Whittaker,Rd,4606157,0.039,0.063,0,0.578137,4.5,4.5 +8018,0,0.165039,2,2,0,2,3,,5,7,Gratiot,Rd,963509,13.929,14.094,0,3.960929,1.7,4 +40100,-1,0.097384,0,2,0,2,5,,3,5,Green,Rd,5490676,0.088,0.185,0,2.337209,8,4.5 +7586,0,0.229729,2,2,1,2,3,,5,7,Gratiot,Rd,963509,14.104,14.334,0,5.513495,1.7,4 +40101,0,0.306167,2,2,1,2,4,,4,5,Whittaker,Rd,1439102,9.121,9.427,0,7.348016,4.5,4.5 +40079,1,0.21338,1,0,0,1,1,RON,5,7,Gratiot/W I 94,RAMP,5492910,0,0.213,0,,1.09,4 +40105,-1,0.017998,0,1,0,2,4,,4,5,Stony Creek,Rd,4606156,0.04,0.058,0,0.431946,4.5,4.5 +40104,1,0.019849,1,0,0,2,4,,4,5,Stony Creek,Rd,1431208,11.407,11.427,0,0.476364,4.5,4.5 +40106,-1,0.025921,0,2,0,2,4,,4,5,Whittaker,Rd,4606157,0.063,0.089,0,0.622097,4.5,4.5 +7503,0,0.010769,2,2,0,2,3,,5,7,Gratiot,Rd,963509,14.094,14.104,0,0.258451,1.7,4 +9204,0,0.395891,1,1,0,2,4,,4,7,Range,Rd,968407,4.236,4.632,0,9.501385,4.5,4.5 +9192,0,0.281109,1,1,0,2,4,,4,7,Range,Rd,968407,5.741,6.022,0,6.746608,4.5,4.5 +29344,0,0.369188,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,8.860515,0.15,4 +9198,0,0.196845,1,1,0,2,4,,4,7,Range,Rd,968407,5.544,5.741,0,4.724282,4.5,4.5 +9200,0,0.262645,2,2,0,2,4,,4,7,Range,Rd,968407,5.282,5.544,0,6.303477,4.5,4.5 +7854,0,0.553465,1,1,0,2,5,,4,7,Michigan,Rd,963906,0,0.553,0,13.283156,5.8,4.5 +8275,0,0.565461,1,1,0,2,4,,4,7,Busha,Hwy,967105,7.02,7.585,0,13.571061,4.5,4.5 +8276,0,0.177406,1,1,0,2,4,,4,7,Busha,Hwy,967105,6.842,7.02,0,4.257745,4.5,4.5 +29155,0,0.567387,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.617286,0.15,4 +29368,0,0.508513,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.204313,0.15,4 +21884,0,0.301396,1,1,0,2,5,,4,7,Cuttle,Rd,4502813,0,0.301,0,7.233511,5.8,4.5 +22083,0,0.305311,1,1,0,2,5,,4,7,Cuttle,Rd,4502830,0,0.305,0,7.327475,5.8,4.5 +8274,0,0.113229,1,1,0,2,4,,4,7,Busha,Hwy,967105,7.585,7.698,0,2.717494,4.5,4.5 +7590,0,0.096723,1,1,0,2,5,,4,7,Michigan,Rd,963906,0.553,0.65,0,2.321354,5.8,4.5 +7377,0,0.297823,1,1,0,2,5,,4,7,Michigan,Rd,963906,1.258,1.555,0,7.147755,5.8,4.5 +7562,0,0.407015,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,14.879,15.286,0,9.768363,3.7,5 +7595,0,0.312622,2,2,0,2,4,,4,7,Huron,Blvd,963901,0.786,1.098,0,7.502921,4.5,4.5 +7716,0,0.460748,1,1,0,2,5,,4,7,6th,St,961901,15.001,15.461,0,11.057946,5.8,4.5 +7761,0,0.200481,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,15.286,15.487,0,4.811555,3.7,5 +29338,0,0.610683,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,14.656395,0.15,4 +29372,0,0.266415,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.393949,0.15,4 +29378,0,0.168351,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.04043,0.15,4 +7860,0,0.075034,2,2,0,2,4,,4,7,Huron,Blvd,963901,0.521,0.596,0,1.800812,4.5,4.5 +8125,0,0.050172,1,1,0,2,4,,4,7,Huron,Blvd,963901,0.471,0.521,0,1.204117,4.5,4.5 +29375,0,0.211655,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.079724,0.15,4 +7642,0,0.189879,2,2,0,2,4,,4,7,Huron,Blvd,963901,0.596,0.786,0,4.557088,4.5,4.5 +7957,0,0.11393,1,1,0,2,5,,4,7,6th,St,961901,14.887,15.001,0,2.734326,5.8,4.5 +8119,0,0.231035,1,1,0,2,5,,4,7,Michigan,Rd,963906,1.027,1.258,0,5.544844,5.8,4.5 +29376,0,0.177477,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.259451,0.15,4 +29377,0,0.176879,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.245096,0.15,4 +7366,0,0.298636,1,1,0,2,5,,4,7,Michigan,Rd,963906,1.778,2.077,0,7.167275,5.8,4.5 +7852,0,0.143809,1,1,0,2,5,,4,7,Michigan,Rd,963906,1.634,1.778,0,3.451419,5.8,4.5 +8118,0,0.078805,1,1,0,2,5,,4,7,Michigan,Rd,963906,1.555,1.634,0,1.891328,5.8,4.5 +8262,0,0.543749,1,1,0,2,5,,4,7,River,Rd,967305,0.297,0.841,0,13.049965,5.8,4.5 +7578,0,0.365436,1,1,0,2,5,,4,7,Delaware,Ave,963907,0,0.366,0,8.770472,5.8,4.5 +8259,0,0.831915,1,1,0,2,5,,4,7,River,Rd,967305,2.435,3.267,0,19.965966,5.8,4.5 +8272,0,0.716588,1,1,0,2,4,,4,7,Busha,Hwy,967105,8.037,8.754,0,17.198107,4.5,4.5 +8120,0,0.164352,1,1,0,2,5,,4,7,Huron,Blvd,963901,1.631,1.795,0,3.94444,5.8,4.5 +8260,0,0.883038,1,1,0,2,5,,4,7,River,Rd,967305,1.552,2.435,0,21.192916,5.8,4.5 +29364,0,0.648051,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,15.553225,0.15,4 +7382,0,0.212243,1,1,0,2,5,,4,7,Huron,Blvd,963901,1.418,1.631,0,5.093838,5.8,4.5 +29369,0,0.288337,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.920085,0.15,4 +8122,0,0.052138,2,2,0,2,4,,4,7,Huron,Blvd,963901,1.366,1.418,0,1.251319,4.5,4.5 +7550,0,0.136444,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,16.157,16.294,0,3.274653,3.7,5 +8094,0,0.308904,1,1,0,2,5,,4,7,Delaware,Ave,963907,0.524,0.833,0,7.413697,5.8,4.5 +8271,0,0.633914,2,2,0,2,4,,4,7,Busha,Hwy,967105,8.754,9.388,0,15.213934,4.5,4.5 +29334,0,0.236649,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.679568,0.15,4 +29336,0,0.273563,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.565509,0.15,4 +7355,0,0.158211,1,1,0,2,5,,4,7,Delaware,Ave,963907,0.366,0.524,0,3.797063,5.8,4.5 +7754,0,0.323908,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,15.834,16.157,0,7.773796,3.7,5 +29362,0,0.337661,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.103863,0.15,4 +7385,0,0.069715,2,2,0,2,4,,3,7,24th,St,963010,1.168,1.238,0,1.673152,6,4.5 +7610,0,0.869746,1,1,1,2,4,,4,7,Lapeer,Rd,962901,16.798,17.668,0,20.873906,4.5,4.5 +7617,1,0.397433,1,0,0,1,1,,4,7,W I 69,,0,0,0,0,,0.8,7.5 +7654,1,0.984702,2,0,0,1,2,,5,7,I 69 BL,,962706,26.805,27.79,0,,1.02,7 +7841,0,1.029147,1,1,0,2,5,,5,7,Michigan,Rd,963906,3.822,4.851,0,24.699534,3.7,5 +8184,-1,0.724223,0,2,0,1,1,,5,7,W I 94,,967804,21.73,22.454,0,,1.02,7 +8186,-1,1.146202,0,2,0,1,1,,5,7,W I 94,,967804,20.243,21.389,0,,1.02,7 +8205,0,0.8151,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,3.834,4.649,0,19.562403,5.8,4.5 +40434,1,0.239281,1,0,0,1,1,RON,4,7,Water/Pine Grove,RAMP,4506257,0,0.239,0,,1.09,4 +8235,1,1.216803,2,0,0,1,1,,5,7,E I 94,,967606,20.113,21.329,0,,1.02,7 +8956,0,1.029266,1,1,0,2,4,,5,7,Griswold,Rd,969503,7.094,8.123,0,24.702384,3,4 +9094,0,0.50972,1,1,0,2,4,,4,7,Dove,St,968503,1.027,1.537,0,12.233271,4.5,4.5 +25317,0,0.651785,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,15.642848,0.15,4 +29245,0,0.82726,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,19.854243,0.15,4 +29337,0,0.530027,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.720639,0.15,4 +29379,0,0.514121,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.338902,0.15,4 +29383,0,0.813708,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,19.528985,0.15,4 +29391,0,0.775774,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,18.618582,0.15,4 +29395,0,0.338638,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,8.127306,0.15,4 +7364,0,0.51179,1,1,0,2,5,,4,7,Michigan,Rd,963906,2.803,3.315,0,12.282965,5.8,4.5 +8208,0,0.510133,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,2.809,3.319,0,12.2432,5.8,4.5 +9106,-1,0.16123,0,2,0,2,4,DV2,4,7,Dove,St,4505946,0,0.161,0,3.869525,4.5,4.5 +9178,0,0.982568,1,1,0,2,4,,4,7,Range,Rd,968407,7.046,8.028,0,23.581627,4.5,4.5 +29396,0,0.506306,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.151332,0.15,4 +29403,0,0.538878,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.933073,0.15,4 +9187,0,0.313796,1,1,0,2,4,,4,7,Range,Rd,968407,6.732,7.046,0,7.5311,4.5,4.5 +8187,-1,0.569826,0,2,0,1,1,,5,7,W I 94,,967804,19.673,20.243,0,,1.02,7 +8236,1,0.589756,2,0,0,1,1,,5,7,E I 94,,967606,19.523,20.113,0,,1.02,7 +8318,1,0.304174,1,0,0,1,1,ROF,5,7,W I 94/Range,RAMP,965402,0,0.304,0,,2.24,5 +8319,1,0.342963,1,0,0,1,1,RON,5,7,Range/W I 94,RAMP,965309,0,0.343,0,,1.09,4 +8321,1,0.28271,1,0,0,1,1,RON,5,7,Range/E I 94,RAMP,965305,0,0.283,0,,1.09,4 +9147,0,0.245184,1,1,1,2,4,,5,7,Range,Rd,968407,8.072,8.318,0,5.884418,3,4 +8114,1,0.300494,1,0,0,1,1,ROF,5,7,E I 94/Range,RAMP,963307,0,0.301,0,,2.24,5 +9173,0,0.007455,1,1,1,2,4,,4,7,Range,Rd,968407,8.028,8.036,0,0.178925,4.5,4.5 +9155,0,0.036724,1,1,1,2,4,,4,7,Range,Rd,968407,8.036,8.072,0,0.881365,4.5,4.5 +9137,0,0.237541,1,1,0,2,4,,5,7,Range,Rd,968407,8.318,8.555,0,5.700978,3,4 +37118,0,0.352661,1,1,0,2,4,,4,7,Dove,St,968503,0.164,0.517,0,8.463876,4.5,4.5 +37119,1,0.164127,2,0,0,2,4,DV2,4,7,Dove,St,968503,0,0.164,0,3.939045,4.5,4.5 +37122,-1,0.101233,0,1,0,2,4,,3,2,Plymouth,Rd,1680408,2.773,2.875,0,2.429604,6,4.5 +7843,0,0.474052,1,1,0,2,5,,4,7,Michigan,Rd,963906,2.329,2.803,0,11.37724,5.8,4.5 +8206,0,0.295851,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,3.538,3.834,0,7.10043,5.8,4.5 +29342,0,0.563248,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.51795,0.15,4 +8207,0,0.218988,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,3.319,3.538,0,5.255715,5.8,4.5 +8100,0,0.507189,1,1,0,2,5,,4,7,Michigan,Rd,963906,3.315,3.822,0,12.172527,5.8,4.5 +9102,0,0.510013,1,1,0,2,4,,4,7,Dove,St,968503,0.517,1.027,0,12.240313,4.5,4.5 +29393,0,0.509956,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.238934,0.15,4 +29394,0,0.511483,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.275585,0.15,4 +29390,0,0.392081,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.409954,0.15,4 +7244,1,0.400267,1,0,0,1,1,RFF,5,7,E I 69/W I 94,RAMP,962908,0,0.4,0,,1.02,7 +7309,-1,0.114644,0,1,0,1,1,,4,7,W I 69,,0,0,0,0,,0.8,7.5 +7425,0,0.256491,1,1,0,2,4,,4,7,Lapeer,Rd,962901,15.865,16.121,0,6.155786,4.5,4.5 +7612,1,0.638756,1,0,0,1,1,RFS,5,7,E I 94/W I 69,RAMP,963303,0,0.639,0,,0.22,6 +7656,1,0.636667,2,0,0,1,1,,5,7,E I 69,,962706,25.971,26.607,0,,1.02,7 +8097,0,0.538216,1,1,0,2,5,,5,7,Michigan,Rd,963906,5.077,5.615,0,12.917181,3.7,5 +9108,0,0.523011,1,1,0,2,4,,5,7,Range,Rd,968407,9.744,10.267,0,12.552275,3,4 +25968,0,0.658838,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,15.812113,0.15,4 +26078,0,0.511826,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.283829,0.15,4 +29397,0,0.483675,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.60821,0.15,4 +25967,0,0.421277,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,10.110659,0.15,4 +29398,0,0.477027,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.448649,0.15,4 +9123,0,0.254004,1,1,0,2,4,,5,7,Range,Rd,968407,9.49,9.744,0,6.096087,3,4 +7623,0,0.253607,1,1,0,2,4,,4,7,Lapeer,Rd,962901,15.611,15.865,0,6.086557,4.5,4.5 +7579,0,0.169462,1,1,0,2,5,,5,7,Michigan,Rd,963906,4.851,5.02,0,4.06709,3.7,5 +8164,1,0.580845,1,0,0,1,1,RFF,5,7,E I 94/E I 69,RAMP,963003,0.159,0.74,0,,1.02,7 +8234,1,0.804485,2,0,0,1,1,,5,7,E I 94,,967606,21.329,22.134,0,,1.02,7 +29399,0,0.176324,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.231771,0.15,4 +29400,0,0.172858,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.148602,0.15,4 +7415,1,0.159483,1,0,0,1,1,RFF,5,7,E I 94/E I 69,RAMP,963003,0,0.159,0,,1.02,7 +8185,-1,0.341258,0,2,0,1,1,,5,7,W I 94,,967804,21.389,21.73,0,,1.02,7 +7234,1,0.200181,1,0,0,1,1,,5,7,E I 69/E I 94,RAMP,963002,0,0.2,0,,1.02,7 +7479,1,0.197823,2,0,0,1,2,,5,7,I 69 BL,,962706,26.607,26.805,0,,1.02,7 +7357,0,0.056768,1,1,0,2,5,,5,7,Michigan,Rd,963906,5.02,5.077,0,1.362438,3.7,5 +7424,0,0.254911,1,1,1,2,4,,4,7,Lapeer,Rd,962901,16.376,16.631,0,6.117861,4.5,4.5 +29389,0,0.56526,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.566233,0.15,4 +7622,0,0.255215,1,1,0,2,4,,4,7,Lapeer,Rd,962901,16.121,16.376,0,6.125165,4.5,4.5 +7413,0,0.074566,1,1,1,2,4,,4,7,Lapeer,Rd,962901,16.724,16.798,0,1.78959,4.5,4.5 +8095,0,0.104838,1,1,0,2,5,,4,7,Michigan,Rd,963906,5.731,5.836,0,2.516116,5.8,4.5 +29388,0,0.148634,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,3.567221,0.15,4 +29409,0,0.173076,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.153821,0.15,4 +7356,0,0.116303,1,1,0,2,5,,4,7,Michigan,Rd,963906,5.615,5.731,0,2.791266,5.8,4.5 +7616,0,0.09228,1,1,1,2,4,,4,7,Lapeer,Rd,962901,16.631,16.724,0,2.214732,4.5,4.5 +7544,1,0.846077,2,0,0,2,3,DIV,4,7,Busha,Hwy,963509,16.573,17.42,0,20.30585,3.7,5 +7594,-1,0.444114,0,2,0,2,3,,4,7,Electric,Ave,963402,1.189,1.633,0,10.658737,3.7,5 +7630,-1,0.819378,0,2,0,2,3,DIV,4,7,Busha,Hwy,963402,0,0.819,0,19.665072,3.7,5 +8163,0,0.440596,2,2,0,2,4,,3,7,24th,St,963010,0.032,0.473,0,10.574304,6,4.5 +8203,0,0.254197,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,4.846,5.101,0,6.100721,5.8,4.5 +9091,0,0.251327,1,1,0,2,4,,4,7,Dove,St,968503,2.05,2.301,0,6.03185,4.5,4.5 +29381,0,0.724727,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,17.393455,0.15,4 +29339,0,0.543839,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.052141,0.15,4 +7323,0,0.040832,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,16.533,16.573,0,0.979979,3.7,5 +8204,0,0.197179,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,4.649,4.846,0,4.732286,5.8,4.5 +9092,0,0.513336,1,1,0,2,4,,4,7,Dove,St,968503,1.537,2.05,0,12.320076,4.5,4.5 +29380,0,0.508288,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.198905,0.15,4 +29386,0,0.50022,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.005276,0.15,4 +7321,1,0.292595,2,0,0,2,3,,4,7,Military,St,963509,17.42,17.712,0,7.02227,3.7,5 +7960,-1,0.325892,0,2,0,2,3,,4,7,Electric,Ave,963402,0.819,1.145,0,7.82141,3.7,5 +29401,0,0.207636,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.983255,0.15,4 +29402,0,0.259634,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.231217,0.15,4 +8201,0,0.050788,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,5.172,5.223,0,1.218911,5.8,4.5 +8202,0,0.071787,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,5.101,5.172,0,1.72288,5.8,4.5 +8008,0,0.068142,2,2,0,2,4,,4,7,Conner,St,963409,0.515,0.583,0,1.63542,4.5,4.5 +7414,0,0.032069,2,2,0,2,4,,4,7,24th,St,963010,0,0.032,0,0.769656,4.5,4.5 +7804,-1,0.02499,0,2,0,2,3,,4,7,Electric,Ave,963402,1.164,1.189,0,0.599763,3.7,5 +7719,0,0.018804,2,2,0,2,3,,4,7,Electric,Ave,963402,1.145,1.164,0,0.4513,3.7,5 +19564,1,0.022491,1,0,0,2,4,,4,7,Power,St,1917906,0,0.023,0,0.539792,4.5,4.5 +7407,0,0.252325,2,2,0,2,4,,3,7,24th,St,963010,0.473,0.725,0,6.055808,6,4.5 +9090,0,0.256935,1,1,0,2,4,,4,7,Dove,St,968503,2.301,2.558,0,6.166431,4.5,4.5 +29288,0,0.260039,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.240939,0.15,4 +29405,0,0.220892,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.301405,0.15,4 +29406,0,0.244422,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.866122,0.15,4 +29289,0,0.156707,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.760959,0.15,4 +29387,0,0.251332,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.03196,0.15,4 +8146,0,0.443175,2,2,0,2,4,,3,7,24th,St,963010,0.725,1.168,0,10.63621,6,4.5 +9086,0,0.249551,2,2,0,2,4,,3,7,Dove,St,968503,2.558,2.808,0,5.989224,6,4.5 +29198,0,0.277468,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.659234,0.15,4 +29294,0,0.31404,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,7.536969,0.15,4 +7268,0,0.107339,2,2,1,2,4,,3,7,24th,St,963010,2.251,2.358,0,2.576136,6,4.5 +7299,-1,0.216936,0,3,0,2,3,DIV,3,7,I 69 BL,,962902,27.832,28.048,0,5.206465,5,5 +7405,0,0.161963,1,1,1,2,4,,3,7,Lapeer,Rd,962901,17.668,17.83,0,3.887117,6,4.5 +7477,1,0.170582,3,0,0,2,3,DIV,3,7,I 69 BL,,962706,27.79,27.96,0,4.093969,5,5 +40431,0,0.090862,1,1,1,2,4,,4,7,Water,St,4502548,1.235,1.326,0,2.18069,4.5,4.5 +8934,-1,0.097349,0,1,0,2,4,,3,7,Griswold,Rd,969503,8.167,8.264,0,2.336373,6,4.5 +19605,1,0.139306,1,0,0,2,4,,3,7,Griswold,Rd,1847408,0,0.139,0,3.343354,6,4.5 +29310,0,0.226855,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.444508,0.15,4 +29382,0,0.716345,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.192283,0.15,4 +29407,0,0.420464,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,10.091131,0.15,4 +29411,0,0.417954,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,10.030901,0.15,4 +29412,0,0.365022,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,8.760527,0.15,4 +29413,0,0.25452,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.10849,0.15,4 +30145,0,0.381123,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,9.146964,0.15,4 +30146,0,0.392284,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.414805,0.15,4 +29385,0,0.44674,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,10.721756,0.15,4 +8947,0,0.043816,1,1,0,2,4,,3,7,Griswold,Rd,969503,8.123,8.167,0,1.051582,6,4.5 +40433,1,0.230232,2,0,0,1,1,ROF,4,7,E I 94/Water,RAMP,4506254,0.469,0.699,0,,2.24,5 +29408,0,0.405899,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.741568,0.15,4 +7300,0,0.138561,2,2,1,2,4,,3,7,24th,St,963010,1.753,1.892,0,3.325466,6,4.5 +7345,1,0.248208,2,0,0,2,5,,3,7,Union,St,964101,0,0.248,0,5.956985,8,4.5 +7470,1,0.330245,3,0,0,2,3,,5,7,I 69 BL,,962706,28.012,28.343,0,7.925888,1.7,4 +7514,-1,0.323155,0,3,0,2,3,,3,7,I 69 BL,,962902,28.048,28.372,0,7.755728,5,5 +7809,-1,0.254943,0,2,0,2,5,,3,7,Court,St,964102,0,0.255,0,6.118623,8,4.5 +29300,0,0.258016,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.192394,0.15,4 +29302,0,0.142408,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.417781,0.15,4 +7649,1,0.05229,3,0,0,2,3,DIV,3,7,I 69 BL,,962706,27.96,28.012,0,1.25495,5,5 +8931,-1,0.043149,0,1,0,2,4,,3,7,Griswold,Rd,969503,8.264,8.308,0,1.03557,6,4.5 +8028,0,0.23929,2,2,1,2,4,,3,7,24th,St,963010,2.012,2.251,0,5.742954,6,4.5 +29410,0,0.269369,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.464848,0.15,4 +8033,0,0.080331,2,2,1,2,4,,3,7,24th,St,963010,1.892,1.972,0,1.92795,6,4.5 +7295,0,0.039708,2,2,1,2,4,,3,7,24th,St,963010,1.972,2.012,0,0.952981,6,4.5 +7291,-1,0.251734,0,2,0,2,3,,3,7,I 69 BL,,962902,28.372,28.623,0,6.041626,5,5 +7338,0,0.195652,2,2,0,2,4,,3,7,24th,St,963010,1.494,1.69,0,4.695642,6,4.5 +7648,1,0.252239,2,0,0,2,3,,3,7,I 69 BL,,962706,28.343,28.595,0,6.053726,5,5 +29523,0,0.265773,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.37856,0.15,4 +8121,0,0.256177,2,2,0,2,4,,3,7,24th,St,963010,1.238,1.494,0,6.148253,6,4.5 +8075,0,0.063374,2,2,0,2,4,,3,7,24th,St,963010,1.69,1.753,0,1.520977,6,4.5 +29305,0,0.137947,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.310728,0.15,4 +29435,0,0.213638,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.127309,0.15,4 +29301,0,0.076881,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.845151,0.15,4 +7395,0,0.049439,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.175,18.225,0,1.186541,6,4.5 +7589,-1,0.588158,0,2,0,2,4,DIV,4,7,I 94/Lapeer Connector,,4506261,0,0.588,0,14.115789,4.5,4.5 +8200,1,0.647512,2,0,0,2,4,DIV,3,7,Lapeer/I 94 Connector,,4506260,0,0.648,0,15.540297,6,4.5 +24950,0,0.256681,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.16034,0.15,4 +25974,0,0.247816,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.947589,0.15,4 +26071,0,0.684352,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,16.424445,0.15,4 +26072,0,0.285546,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.853112,0.15,4 +7399,0,0.160001,2,2,0,2,4,,3,7,Lapeer,Rd,962901,17.943,18.103,0,3.840023,6,4.5 +7603,0,0.112988,2,2,0,2,4,,3,7,Lapeer,Rd,962901,17.83,17.943,0,2.711709,6,4.5 +8002,0,0.167079,2,2,1,2,4,,3,7,24th,St,963010,2.358,2.525,0,4.009905,6,4.5 +7602,0,0.072654,2,2,0,2,4,,3,7,Lapeer,Rd,962901,18.103,18.175,0,1.743703,6,4.5 +40435,1,0.240202,1,0,0,1,1,ROF,4,7,W I 94/Water,RAMP,4506258,0,0.24,0,,2.24,5 +40430,1,0.336083,2,0,0,1,1,ROF,4,7,Water/W I 94,RAMP,4506259,0,0.336,0,,2.24,5 +40429,1,0.17613,1,0,0,1,2,,4,7,Lapeer/I 94 Connector,,4506260,0.734,0.91,0,,0.8,7.5 +40436,-1,0.369144,0,3,0,1,1,,3,7,W I 94,,967804,24.458,24.827,0,,0.58,7 +40427,1,0.289925,1,0,0,1,1,RON,4,7,Water/W I 94,RAMP,4506259,0.336,0.626,0,,1.09,4 +7600,0,0.193404,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.225,18.418,0,4.64169,6,4.5 +24951,0,0.407473,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,9.779341,0.15,4 +21230,0,0.217001,2,2,0,2,4,,4,7,Water,St,4502548,0.964,1.181,0,5.20802,4.5,4.5 +21231,0,0.255174,2,2,0,2,4,,3,7,Water,St,4502548,0.709,0.964,0,6.124183,6,4.5 +21229,0,0.054055,1,1,1,2,4,,4,7,Water,St,4502548,1.181,1.235,0,1.297316,4.5,4.5 +7921,0,0.158356,2,2,0,2,4,,3,7,10th,St,963204,0.305,0.463,0,3.800554,6,4.5 +7973,0,0.21529,2,2,0,2,4,,3,7,16th,St,963108,0.746,0.961,0,5.166948,6,4.5 +8133,0,0.321439,2,2,0,2,3,,3,7,Military,St,963509,19.311,19.632,0,7.714535,5,5 +7281,1,0.383317,2,0,0,2,3,,3,7,Military,St,963509,18.654,19.037,0,9.199599,5,5 +7715,-1,0.479939,0,2,0,2,3,,3,7,Electric,Ave,963402,2.085,2.565,0,11.518531,5,5 +7956,-1,0.17702,0,2,0,2,3,,3,7,Electric,Ave,963402,1.908,2.085,0,4.248491,5,5 +7977,0,0.126607,2,2,0,2,4,,3,7,16th,St,963108,0.196,0.323,0,3.038573,6,4.5 +9074,0,0.070171,2,2,0,2,4,,3,7,Reid,Ave,968503,3.252,3.322,0,1.684115,6,4.5 +29414,0,0.366948,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,8.806749,0.15,4 +7502,1,0.265227,2,0,0,2,3,,3,7,Military,St,963509,18.388,18.654,0,6.365454,5,5 +8092,1,0.202733,2,0,0,2,3,,3,7,Military,St,963509,18.186,18.388,0,4.865599,5,5 +7247,0,0.083572,2,2,0,2,4,,3,7,16th,St,963108,0,0.084,0,2.005735,6,4.5 +7245,0,0.072168,2,2,0,2,4,,3,7,16th,St,963108,0.124,0.196,0,1.73204,6,4.5 +7700,-1,0.041581,0,2,0,2,3,,3,7,Electric,Ave,963402,1.867,1.908,0,0.997946,5,5 +21285,-1,0.036402,0,1,0,2,3,,3,7,Electric/16th Cutoff,,4502132,0,0.036,0,0.873653,5,5 +7980,0,0.040383,2,2,0,2,4,,3,7,16th,St,963108,0.084,0.124,0,0.969196,6,4.5 +7238,0,0.423016,2,2,0,2,4,,3,7,16th,St,963108,0.323,0.746,0,10.152378,6,4.5 +9081,0,0.131471,2,2,0,2,4,,3,7,Reid,Ave,968503,3.061,3.193,0,3.155312,6,4.5 +29419,0,0.400643,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,9.615428,0.15,4 +29421,0,0.260136,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.24327,0.15,4 +9080,0,0.059316,2,2,0,2,4,,3,7,Reid,Ave,968503,3.193,3.252,0,1.423576,6,4.5 +7394,1,0.274119,2,0,0,2,3,,3,7,Military,St,963509,19.037,19.311,0,6.578866,5,5 +7699,0,0.186143,2,2,0,2,4,,3,7,10th,St,963204,0.119,0.305,0,4.467439,6,4.5 +7930,0,0.118496,1,1,0,2,4,,3,7,10th,St,963204,0,0.119,0,2.843896,6,4.5 +7280,-1,0.194745,0,2,0,2,3,,3,7,Electric,Ave,963402,2.565,2.76,0,4.673869,5,5 +7302,0,0.162767,2,2,1,2,3,,2,7,Pine Grove,Ave,964203,0.335,0.498,0,3.906414,6,5 +7498,-1,0.091147,0,2,0,2,3,,3,7,I 69 BL,,962902,29.557,29.648,0,2.187531,5,5 +7517,0,0.080181,2,2,0,2,3,,2,7,Military,St,963509,20.58,20.66,0,1.924345,6,5 +40085,0,0.07363,1,1,0,2,5,,2,7,River,St,5492775,0.187,0.26,0,1.767114,8.5,4.5 +7553,-1,0.092177,0,2,0,2,5,,2,7,Court,St,964102,1.193,1.285,0,2.212249,8.5,4.5 +7559,0,0.118491,2,2,0,2,4,,2,7,10th,St,963204,1.411,1.53,0,2.843773,8,4.5 +7588,0,0.085755,2,2,1,2,4,,2,7,Lapeer,Ave,962901,19.379,19.464,0,2.05813,8,4.5 +7604,1,0.091737,2,0,0,2,5,,3,7,Union,St,964101,1.186,1.278,0,2.201695,8,4.5 +7614,0,0.1639,1,1,0,2,5,,3,7,13th,St,963201,0.881,1.045,0,3.933605,8,4.5 +7645,1,0.268339,2,0,0,2,3,,3,7,I 69 BL,,962706,29.353,29.621,0,6.440144,5,5 +7828,0,0.206807,1,1,0,2,4,,3,7,16th,St,963108,1.84,2.047,0,4.963367,6,4.5 +8039,0,0.071792,1,1,0,2,4,,2,7,7th,St,963208,0.97,1.042,0,1.72302,8,4.5 +8047,0,0.103327,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.203,0.307,0,2.47986,8.5,4.5 +21219,0,0.08712,1,1,1,2,4,,2,7,Water,St,4502561,0.08,0.167,0,2.090876,8,4.5 +29247,0,0.27331,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.559447,0.15,4 +29416,0,0.16935,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.06441,0.15,4 +29427,0,0.140477,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.371443,0.15,4 +29429,0,0.039741,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,0.953786,0.15,4 +29431,0,0.101075,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.425808,0.15,4 +29432,0,0.159963,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.839106,0.15,4 +29438,0,0.067464,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.619129,0.15,4 +29439,0,0.117941,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.830581,0.15,4 +7290,-1,0.250429,0,2,0,2,3,,3,7,I 69 BL,,962902,28.874,29.124,0,6.010297,5,5 +7468,1,0.255253,2,0,0,2,3,,3,7,I 69 BL,,962706,29.098,29.353,0,6.126064,5,5 +7512,-1,0.256956,0,2,0,2,3,,3,7,I 69 BL,,962902,29.124,29.381,0,6.166941,5,5 +7691,0,0.062838,2,2,0,2,4,,3,7,10th,St,963204,0.847,0.909,0,1.508102,6,4.5 +7813,0,0.062007,1,1,0,2,5,,3,7,13th,St,963201,0.322,0.384,0,1.488165,8,4.5 +7876,0,0.140654,1,1,0,2,4,,3,7,16th,St,963108,1.349,1.49,0,3.375706,6,4.5 +8070,-1,0.253382,0,2,0,2,5,,3,7,Court,St,964102,0.757,1.01,0,6.081161,8,4.5 +8079,1,0.172479,2,0,0,2,5,,3,7,Union,St,964101,0.832,1.004,0,4.139498,8,4.5 +26076,0,0.253369,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.080867,0.15,4 +29311,0,0.262697,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.304739,0.15,4 +29418,0,0.258886,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.213254,0.15,4 +29521,0,0.283649,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.807574,0.15,4 +7646,1,0.250812,2,0,0,2,3,,3,7,I 69 BL,,962706,28.847,29.098,0,6.019488,5,5 +8142,0,0.128862,2,2,0,2,4,,3,7,16th,St,963108,0.961,1.09,0,3.092699,6,4.5 +29417,0,0.257307,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.175366,0.15,4 +29424,0,0.285823,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.859761,0.15,4 +7879,0,0.197596,2,2,0,2,4,,3,7,16th,St,963108,1.09,1.287,0,4.742308,6,4.5 +8140,0,0.061644,1,1,0,2,4,,3,7,16th,St,963108,1.287,1.349,0,1.479463,6,4.5 +29448,0,0.066729,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.601507,0.15,4 +7335,-1,0.250789,0,2,0,2,5,,3,7,Court,St,964102,0.506,0.757,0,6.018931,8,4.5 +7870,0,0.078213,1,1,0,2,4,,3,7,16th,St,963108,1.569,1.647,0,1.877107,6,4.5 +8013,0,0.077387,1,1,0,2,5,,3,7,13th,St,963201,0.604,0.682,0,1.857298,8,4.5 +8080,1,0.169242,2,0,0,2,5,,3,7,Union,St,964101,0.581,0.75,0,4.061816,8,4.5 +29309,0,0.24564,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.895368,0.15,4 +29525,0,0.186726,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.481426,0.15,4 +7342,1,0.08163,2,0,0,2,5,,3,7,Union,St,964101,0.5,0.581,0,1.959122,8,4.5 +8134,0,0.078769,1,1,0,2,4,,3,7,16th,St,963108,1.49,1.569,0,1.890453,6,4.5 +8091,0,0.19311,1,1,0,2,4,,3,7,16th,St,963108,1.647,1.84,0,4.634635,6,4.5 +8067,0,0.14119,1,1,0,2,5,,3,7,13th,St,963201,0.384,0.525,0,3.388557,8,4.5 +7805,0,0.079602,1,1,0,2,5,,3,7,13th,St,963201,0.525,0.604,0,1.910439,8,4.5 +7816,1,0.081462,2,0,0,2,5,,3,7,Union,St,964101,0.75,0.832,0,1.955092,8,4.5 +29522,0,0.105522,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.532539,0.15,4 +29524,0,0.008456,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.202942,0.15,4 +7755,0,0.199602,1,1,0,2,5,,3,7,13th,St,963201,0.682,0.881,0,4.790437,8,4.5 +29443,0,0.01907,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.457674,0.15,4 +7919,0,0.126682,2,2,0,2,4,,3,7,10th,St,963204,0.523,0.65,0,3.040371,6,4.5 +29415,0,0.162032,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.888772,0.15,4 +7694,0,0.060407,2,2,0,2,4,,3,7,10th,St,963204,0.463,0.523,0,1.449761,6,4.5 +7915,0,0.127417,2,2,0,2,4,,3,7,10th,St,963204,0.719,0.847,0,3.057998,6,4.5 +7693,0,0.069056,2,2,0,2,4,,3,7,10th,St,963204,0.65,0.719,0,1.657348,6,4.5 +7287,-1,0.176179,0,2,0,2,3,,3,7,I 69 BL,,962902,29.381,29.557,0,4.228295,5,5 +7771,0,0.077276,2,2,0,2,4,,3,7,10th,St,963204,1.128,1.205,0,1.854625,6,4.5 +7808,-1,0.182423,0,2,0,2,5,,2,7,Court,St,964102,1.01,1.193,0,4.378143,8.5,4.5 +7814,1,0.181572,2,0,0,2,5,,3,7,Union,St,964101,1.004,1.186,0,4.357733,8,4.5 +29425,0,0.203471,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.883304,0.15,4 +29445,0,0.175756,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,4.21814,0.15,4 +7811,0,0.139747,2,2,0,2,4,,3,7,10th,St,963204,0.909,1.049,0,3.353917,6,4.5 +7601,0,0.078699,2,2,0,2,4,,3,7,10th,St,963204,1.049,1.128,0,1.888771,6,4.5 +7564,0,0.133906,2,2,0,2,4,,2,7,10th,St,963204,1.205,1.339,0,3.213734,8,4.5 +7765,0,0.072151,2,2,0,2,4,,2,7,10th,St,963204,1.339,1.411,0,1.731635,8,4.5 +29437,0,0.152302,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.655255,0.15,4 +29436,0,0.072909,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.749814,0.15,4 +29446,0,0.135876,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.261015,0.15,4 +7556,0,0.070298,2,2,0,2,4,,2,7,10th,Ave,963204,1.929,2,0,1.687146,8,4.5 +7596,0,0.260069,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.926,19.186,0,6.241653,6,4.5 +8420,0,0.217782,1,1,0,2,7,,2,7,Stone,St,964308,0.151,0.369,0,5.226766,8.5,4.5 +8592,0,0.067543,1,1,0,2,4,,3,7,17th,St,971001,0.449,0.516,0,1.621043,6,4.5 +40087,0,0.071086,2,2,0,2,4,,2,7,10th,Ave,963204,2,2.071,0,1.706064,8,4.5 +21234,0,0.090897,2,2,0,2,4,,3,7,Water,St,4502548,0.372,0.463,0,2.181538,6,4.5 +21281,0,0.265089,2,2,0,2,4,,3,7,Water,St,4502548,0.082,0.348,0,6.362137,6,4.5 +29526,0,0.136727,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.281459,0.15,4 +29530,0,0.206347,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.95234,0.15,4 +29531,0,0.242347,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.816338,0.15,4 +7411,0,0.23907,1,1,0,2,5,,3,7,13th,St,963201,1.045,1.284,0,5.737687,8,4.5 +7599,0,0.164619,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.672,18.836,0,3.950867,6,4.5 +8087,0,0.181383,1,1,0,2,4,,3,7,16th,St,963108,2.047,2.228,0,4.353188,6,4.5 +24947,0,0.246277,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.910648,0.15,4 +28253,0,0.254011,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.096256,0.15,4 +8077,0,0.132871,1,1,0,2,4,,3,7,16th,St,963108,2.34,2.473,0,3.188904,6,4.5 +7823,0,0.112009,1,1,0,2,4,,3,7,16th,St,963108,2.228,2.34,0,2.688206,6,4.5 +7392,0,0.090004,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.836,18.926,0,2.1601,6,4.5 +7554,0,0.178056,1,1,0,2,5,,3,7,13th,St,963201,1.284,1.462,0,4.273352,8,4.5 +29532,0,0.016621,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.398913,0.15,4 +7332,-1,0.038625,0,1,0,2,5,,3,7,13th,St,963201,1.462,1.501,0,0.927011,8,4.5 +8799,1,0.030368,1,0,0,2,5,,3,7,Sherman,St,975307,0.09,0.121,0,0.728821,8,4.5 +21280,0,0.024744,2,2,0,2,4,,3,7,Water,St,4502548,0.348,0.372,0,0.593854,6,4.5 +21233,0,0.114745,2,2,0,2,4,,3,7,Water,St,4502548,0.463,0.578,0,2.753891,6,4.5 +29528,0,0.04021,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.965046,0.15,4 +21210,0,0.020378,1,1,0,2,5,,3,7,12th,Ave,4502623,0,0.02,0,0.489063,8,4.5 +7389,0,0.085306,2,2,1,2,4,,2,7,Lapeer,Ave,962901,19.186,19.272,0,2.047333,8,4.5 +7558,0,0.097041,2,2,0,2,4,,3,7,10th,St,963204,1.662,1.759,0,2.328972,6,4.5 +8050,0,0.102275,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.052,0.154,0,2.454595,8.5,4.5 +40086,0,0.253932,1,1,0,2,5,,3,7,River,St,4506224,0,0.254,0,6.094363,8,4.5 +40088,0,0.020526,1,1,0,2,5,,2,7,Stanton,St,964204,0.042,0.062,0,0.492633,8.5,4.5 +28255,0,0.106124,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.546969,0.15,4 +29441,0,0.066085,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.586034,0.15,4 +7762,0,0.132634,2,2,0,2,4,,3,7,10th,St,963204,1.53,1.662,0,3.183216,6,4.5 +7759,0,0.170136,2,2,0,2,4,,3,7,10th,Ave,963204,1.759,1.929,0,4.083263,6,4.5 +21282,0,0.08249,2,2,0,2,4,,3,7,Water,St,4502548,0,0.082,0,1.97977,6,4.5 +7319,0,0.051788,1,1,0,2,5,,2,7,Glenwood,Ave,964202,0,0.052,0,1.242903,8.5,4.5 +40099,-1,0.088069,0,2,0,2,5,,3,5,Green,Rd,5490676,0,0.088,0,2.113649,8,4.5 +7384,0,0.031277,2,2,1,2,4,,2,7,Lapeer,Ave,962901,19.347,19.379,0,0.750646,8,4.5 +26079,0,0.135615,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.254763,0.15,4 +29442,0,0.109711,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.633053,0.15,4 +7592,0,0.075683,2,2,1,2,4,,2,7,Lapeer,Ave,962901,19.272,19.347,0,1.816389,8,4.5 +7799,0,0.049076,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.154,0.203,0,1.17782,8.5,4.5 +8421,0,0.128939,1,1,0,2,7,,2,7,Stone,St,964308,0.023,0.151,0,3.094527,8.5,4.5 +29440,0,0.038187,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,0.916483,0.15,4 +29536,0,0.145475,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.491393,0.15,4 +7974,0,0.022516,1,1,0,2,7,,2,7,Stone,St,964308,0,0.023,0,0.540394,8.5,4.5 +7791,0,0.240471,2,2,0,2,4,,2,7,10th,Ave,963204,2.226,2.467,0,5.771294,8,4.5 +8419,0,0.324391,1,1,0,2,7,,2,7,Stone,St,964308,0.369,0.694,0,7.785374,8.5,4.5 +24927,0,0.05777,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.386487,0.15,4 +29118,0,0.192464,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,4.619134,0.15,4 +8046,0,0.15534,2,2,0,2,4,,2,7,10th,Ave,963204,2.071,2.226,0,3.728162,8,4.5 +28593,0,0.099343,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.384238,0.15,4 +28229,0,0.028969,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,0.695258,0.15,4 +8034,0,0.191112,2,2,1,2,3,,2,7,Pine Grove,Ave,964203,0.498,0.689,0,4.586692,6,5 +8418,0,0.077062,1,1,0,2,7,,2,7,Stone,St,964308,0.694,0.771,0,1.849483,8.5,4.5 +7286,0,0.064943,1,1,0,2,4,,3,7,7th,St,963208,0.397,0.462,0,1.558635,6,4.5 +7429,0,0.06932,2,2,0,2,3,,3,7,Military,St,963509,19.988,20.057,0,1.663679,5,5 +7439,0,0.233179,2,2,0,2,3,,3,7,Military,St,963509,19.632,19.866,0,5.596299,5,5 +7025,0,0.122102,2,2,0,2,3,,3,7,Military,St,963509,19.866,19.988,0,2.930443,5,5 +7467,1,0.123472,2,0,0,2,3,,3,7,I 69 BL,,962706,29.621,29.745,0,2.963333,5,5 +29420,0,0.115853,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.780462,0.15,4 +29426,0,0.109878,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.637076,0.15,4 +7406,0,0.077842,1,1,0,2,4,,3,7,7th,St,963208,0.681,0.759,0,1.868218,6,4.5 +7692,0,0.078556,2,2,0,2,3,,3,7,Military,St,963509,20.275,20.354,0,1.885355,5,5 +29428,0,0.285419,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.850059,0.15,4 +29434,0,0.163391,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.921382,0.15,4 +7017,0,0.139398,2,2,0,2,3,,3,7,Military,St,963509,20.057,20.196,0,3.345548,5,5 +7270,-1,0.12764,0,2,0,2,3,,3,7,I 69 BL,,962902,29.648,29.776,0,3.063358,5,5 +7491,0,0.139686,1,1,0,2,4,,3,7,7th,St,963208,0.462,0.602,0,3.352466,6,4.5 +8071,1,0.140491,2,0,0,2,5,,3,7,Union,St,964101,1.278,1.418,0,3.371783,8,4.5 +7259,0,0.079076,1,1,0,2,4,,3,7,7th,St,963208,0.602,0.681,0,1.897824,6,4.5 +7917,0,0.079005,2,2,0,2,3,,3,7,Military,St,963509,20.196,20.275,0,1.896132,5,5 +7331,-1,0.143606,0,2,0,2,5,,2,7,Court,St,964102,1.285,1.429,0,3.446548,8.5,4.5 +7371,0,0.133081,2,2,0,2,3,,2,7,Military,St,963509,20.354,20.487,0,3.193955,6,5 +8145,0,0.132309,1,1,0,2,4,,2,7,7th,St,963208,0.759,0.891,0,3.175425,8,4.5 +29430,0,0.114237,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.741679,0.15,4 +7307,0,0.078894,1,1,0,2,4,,2,7,7th,St,963208,0.891,0.97,0,1.893459,8,4.5 +29433,0,0.07344,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.76257,0.15,4 +8107,0,0.092639,2,2,0,2,3,,2,7,Military,St,963509,20.487,20.58,0,2.223332,6,5 +7484,0,0.142387,2,2,0,2,4,,2,7,Erie,St,964210,0.388,0.531,0,3.417289,8,4.5 +7786,0,0.2391,2,2,1,2,3,,2,7,Pine Grove,Ave,964203,0,0.239,0,5.738391,6,5 +29114,0,0.267416,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,6.417988,0.15,4 +7310,0,0.054109,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.461,0.515,0,1.298627,8.5,4.5 +7549,0,0.054145,1,1,1,2,5,,2,7,McMorran,Blvd,5492776,0.155,0.209,0,1.299491,8.5,4.5 +7566,0,0.117848,2,2,0,2,3,,2,7,Huron,Ave,963509,20.831,20.949,0,2.828359,6,5 +7978,0,0.117876,2,2,0,2,4,,2,7,Erie,St,964210,0.14,0.258,0,2.829027,8,4.5 +8748,-1,0.115334,0,1,0,2,5,DV2,2,7,Fort,St,975605,0.235,0.35,0,2.76801,8.5,4.5 +21222,1,0.115104,1,0,0,2,5,DV2,2,7,Fort,St,4502560,0.09,0.205,0,2.762491,8.5,4.5 +21225,1,0.121591,2,0,0,2,5,,2,7,Quay,St,4502551,0.167,0.288,0,2.918191,8.5,4.5 +29251,0,0.126819,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.043651,0.15,4 +29534,0,0.116888,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.80531,0.15,4 +29540,0,0.089278,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.142667,0.15,4 +7294,0,0.086565,2,2,0,2,3,,2,7,Huron,Ave,963509,20.66,20.746,0,2.07757,6,5 +7328,0,0.101046,1,1,1,2,5,,2,7,McMorran,Blvd,5492776,0,0.101,0,2.425105,8.5,4.5 +7735,0,0.056441,2,2,0,2,4,,2,7,Erie,St,964210,0,0.056,0,1.354573,8,4.5 +21226,0,0.166528,1,1,0,2,5,,2,7,Quay,St,4502551,0,0.167,0,3.996672,8.5,4.5 +29503,0,0.094267,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.262403,0.15,4 +29538,0,0.075653,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.815675,0.15,4 +29539,0,0.055321,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.327705,0.15,4 +7955,0,0.053784,2,2,0,2,4,,2,7,Erie,St,963208,1.042,1.096,0,1.290816,8,4.5 +21220,0,0.080281,1,1,1,2,4,,2,7,Water,St,4502561,0,0.08,0,1.926747,8,4.5 +7246,0,0.083751,2,2,0,2,4,,2,7,Erie,St,964210,0.056,0.14,0,2.010021,8,4.5 +8064,0,0.024431,1,1,0,2,5,,2,7,Grand River,Ave,964107,0,0.025,0,0.586352,8.5,4.5 +7772,0,0.08424,2,2,0,2,3,,2,7,Huron,Ave,963509,20.746,20.831,0,2.021755,6,5 +8060,0,0.053766,1,1,1,2,5,,2,7,McMorran,Blvd,5492776,0.101,0.155,0,1.290375,8.5,4.5 +7731,0,0.130312,2,2,0,2,4,,2,7,Erie,St,964210,0.258,0.388,0,3.127492,8,4.5 +7797,0,0.100855,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.307,0.407,0,2.420518,8.5,4.5 +7878,0,0.132023,2,2,0,2,3,,2,7,Huron,Ave,963509,20.949,21.081,0,3.168551,6,5 +29535,0,0.127981,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.071538,0.15,4 +29537,0,0.077588,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.862102,0.15,4 +29447,0,0.078385,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.881238,0.15,4 +7583,0,0.053138,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.407,0.461,0,1.275315,8.5,4.5 +8760,0,0.14569,1,1,0,2,5,,2,7,Fort,St,975605,0,0.146,0,3.496571,8.5,4.5 +29422,0,0.140521,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.372494,0.15,4 +29423,0,0.109294,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.623056,0.15,4 +40657,0,0.7011,1,1,0,2,5,,4,7,Degurse,Ave,973906,0,0.701,0,16.826401,5.8,4.5 +7324,1,0.05041,1,0,0,2,5,DV2,2,7,McMorran,Blvd,5492776,0.209,0.259,0,1.209852,8.5,4.5 +8755,-1,0.081011,0,1,0,2,5,DV2,2,7,Fort,St,975605,0.146,0.227,0,1.94426,8.5,4.5 +21224,1,0.081848,1,0,0,2,5,DV2,2,7,Fort,St,4502560,0,0.082,0,1.964352,8.5,4.5 +21338,-1,0.04937,0,1,0,2,5,DV2,2,7,McMorran,Blvd,4500354,0,0.049,0,1.184888,8.5,4.5 +8753,-1,0.007837,0,1,0,2,5,DV2,2,7,Fort,St,975605,0.227,0.235,0,0.188091,8.5,4.5 +21337,-1,0.012547,0,1,0,2,5,DV2,2,7,McMorran,Blvd,4500354,0.049,0.062,0,0.301128,8.5,4.5 +8058,1,0.013083,1,0,0,2,5,DV2,2,7,McMorran,Blvd,5492776,0.259,0.272,0,0.313998,8.5,4.5 +21223,1,0.00832,1,0,0,2,5,DV2,2,7,Fort,St,4502560,0.082,0.09,0,0.199671,8.5,4.5 +9051,-1,0.131522,0,1,0,2,5,DV2,2,7,Fort,St,975605,0.35,0.481,0,3.156524,8.5,4.5 +21221,1,0.132557,1,0,0,2,5,DV2,2,7,Fort,St,4502560,0.205,0.338,0,3.181358,8.5,4.5 +29444,0,0.143288,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.438923,0.15,4 +29533,0,0.026678,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,0.640275,0.15,4 +30143,0,0.016128,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,0.387075,0.15,4 +8042,0,0.054242,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.515,0.569,0,1.30181,8.5,4.5 +7243,0,0.159677,2,2,0,2,4,,2,7,Erie,St,964210,0.531,0.69,0,3.832237,8,4.5 +7521,0,0.096364,2,2,1,2,3,,2,7,Pine Grove,Ave,964203,0.239,0.335,0,2.312743,6,5 +29122,0,0.066571,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.597713,0.15,4 +7634,0,1.305697,1,1,0,2,5,,5,7,Lapeer,Rd,962901,11.347,12.652,0,31.336724,3.7,5 +7851,0,2.339338,1,1,0,2,5,,5,7,Abbottsford,Rd,962509,0,2.339,0,56.144108,3.7,5 +7895,0,1.173158,1,1,0,2,4,,5,7,Beard,Rd,962408,9.698,10.871,0,28.155802,3,4 +8503,0,0.998466,1,1,0,2,5,,5,7,Burtch,Rd,977601,0.991,1.989,0,23.963187,3.7,5 +21217,0,0.998083,1,1,0,2,6,GRV,5,7,Metcalf,Rd,4502618,1.011,2.009,0,23.953995,5.55,5 +21883,0,1.041585,1,1,0,2,5,,5,7,Jeddo,Rd,4505840,19.996,21.037,0,24.998036,3.7,5 +28261,0,1.61725,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,38.813996,0.15,4 +29542,0,1.028844,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.692247,0.15,4 +7639,0,3.613102,1,1,0,2,5,,5,7,Brandon,Rd,962901,2.275,5.888,0,86.714447,3.7,5 +7640,0,1.502775,1,1,0,2,5,,5,7,Fargo,Rd,962507,4.449,5.952,0,36.066593,3.7,5 +7671,0,1.871752,1,1,0,2,5,,5,7,Avoca,Rd,962501,0,1.872,0,44.922054,3.7,5 +7689,0,1.887363,1,1,0,2,4,,5,7,Brockway,Rd,962207,0,1.887,0,45.296711,3,4 +7746,0,0.994858,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,13.96,14.955,0,23.876584,5.55,5 +7824,0,1.499138,1,1,0,2,4,,5,7,Wildcat,Rd,962602,4.938,6.437,0,35.979309,3,4 +7863,0,1.008071,1,1,0,2,6,GRV,5,7,Brown,Rd,962502,6.977,7.985,0,24.193711,5.55,5 +7926,0,1.003773,1,1,0,2,6,GRV,5,7,Metcalf,Rd,962108,2.518,3.522,0,24.090563,5.55,5 +8438,0,0.99273,1,1,0,2,5,,5,7,Yale,Rd,972601,12.126,13.118,0,23.825522,3.7,5 +8994,0,1.179688,1,1,0,2,5,,5,7,Comstock,Rd,973809,4.035,5.214,0,28.31252,3.7,5 +9001,0,0.719061,1,1,0,2,6,,5,7,Sayles,Rd,973702,0,0.719,0,17.25747,5.8,6 +25912,0,1.021772,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.522526,0.15,4 +25946,0,1.004964,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.119127,0.15,4 +29557,0,1.005451,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.130832,0.15,4 +29558,0,1.004931,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.118338,0.15,4 +7643,0,2.101126,1,1,0,2,5,,5,7,Dunnigan,Rd,962901,0,2.101,0,50.427034,3.7,5 +7936,0,2.108295,1,1,0,2,4,,5,7,Emmett,Rd,961905,9.229,11.337,0,50.599091,3,4 +8487,0,2.003462,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,9.428,11.431,0,48.08309,5.55,5 +8527,0,1.482794,1,1,0,2,6,GRV,5,7,Foley,Rd,972503,6.916,8.398,0,35.587051,5.55,5 +8649,0,0.930883,1,1,0,2,4,,5,7,Wilkes,Rd,976409,0,0.931,0,22.341187,3,4 +9076,0,1.002574,1,1,0,2,6,GRV,5,7,Sheridan,Rd,973005,4.003,5.005,0,24.061781,5.55,5 +25941,0,1.911723,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,45.881358,0.15,4 +7705,0,0.651962,1,1,0,2,5,,5,7,Bryce,Rd,962608,7.987,8.639,0,15.647095,3.7,5 +8528,0,0.994019,1,1,0,2,6,GRV,5,7,Foley,Rd,972503,5.922,6.916,0,23.856447,5.55,5 +9112,0,2.004928,1,1,0,2,6,GRV,5,7,Sheridan,Rd,973005,1.998,4.003,0,48.118263,5.55,5 +25942,0,1.399762,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.594292,0.15,4 +25943,0,1.411614,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.87874,0.15,4 +29451,0,1.330997,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,31.943931,0.15,4 +7515,0,0.97838,1,1,0,2,5,,5,7,Bryce,Rd,962608,7.009,7.987,0,23.481121,3.7,5 +8521,0,0.490545,1,1,0,2,6,GRV,5,7,Sullivan,Rd,972505,5.909,6.399,0,11.773072,5.55,5 +8524,0,0.128199,1,1,0,2,6,,5,7,Wilkes,Rd,976409,1.827,1.955,0,3.076768,5.8,6 +9053,0,1.032188,1,1,0,2,6,GRV,5,7,Connell,Rd,973310,1.977,3.009,0,24.772519,5.55,5 +9056,0,1.977383,1,1,0,2,6,GRV,5,7,Connell,Rd,973310,0,1.977,0,47.457204,5.55,5 +25911,0,0.785959,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,18.863008,0.15,4 +9009,0,0.959315,1,1,0,2,6,,5,7,Sayles,Rd,973701,0.072,1.031,0,23.023554,5.8,6 +21324,0,0.105789,1,1,0,2,6,,5,7,Sayles,Rd,4502000,0,0.106,0,2.538936,5.8,6 +8481,0,0.122538,1,1,0,2,6,,5,7,Sayles,Rd,972509,9.73,9.852,0,2.940905,5.8,6 +7707,0,3.269974,1,1,0,2,4,,5,7,Emmett,Rd,961905,5.959,9.229,0,78.479382,3,4 +8523,0,1.484874,1,1,0,2,6,GRV,5,7,Foley,Rd,972503,8.398,9.883,0,35.636976,5.55,5 +7938,0,0.292803,1,1,0,2,4,,5,7,Kinney,Rd,961905,5.667,5.959,0,7.027282,3,4 +24940,0,0.458712,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.009092,0.15,4 +24943,0,0.177722,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.265325,0.15,4 +7465,0,0.174097,1,1,0,2,5,,5,7,Dunnigan,Rd,962901,2.101,2.275,0,4.178328,3.7,5 +7543,0,1.015764,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,12.944,13.96,0,24.378336,5.55,5 +8631,0,0.999763,1,1,0,2,6,GRV,5,7,Bricker,Rd,976704,3.526,4.526,0,23.994311,5.55,5 +7651,0,2.005239,1,1,0,2,6,GRV,5,7,Brown,Rd,962502,4.972,6.977,0,48.125742,5.55,5 +7905,0,1.488399,1,1,0,2,5,,5,7,Beard,Rd,962408,0,1.488,0,35.721565,3.7,5 +7933,0,0.984395,1,1,0,2,4,,5,7,Emmett,Rd,961905,12.225,13.209,0,23.625478,3,4 +8486,0,2.473608,1,1,0,2,6,GRV,5,7,Norman,Rd,972507,11.431,13.905,0,59.366598,5.55,5 +7697,0,0.535888,1,1,0,2,5,,5,7,Metcalf,Rd,962108,0.036,0.571,0,12.861315,3.7,5 +7704,0,0.888101,1,1,0,2,4,,5,7,Emmett,Rd,961905,11.337,12.225,0,21.314419,3,4 +7913,0,0.054777,1,1,0,2,5,,5,7,Metcalf,Rd,962109,0,0.055,0,1.314642,3.7,5 +7865,0,1.002896,1,1,0,2,6,GRV,5,7,Brown,Rd,962502,3.969,4.972,0,24.069494,5.55,5 +8444,0,2.768592,1,1,0,2,5,,4,7,Yale,Rd,972601,8.352,11.121,0,66.446199,5.8,4.5 +34109,0,1.961299,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7679,0,1.798732,1,1,0,2,4,,4,7,Brockway,Rd,962207,2.4,4.198,0,43.169558,4.5,4.5 +8449,0,0.76143,1,1,0,2,5,,5,7,Yale,Rd,972601,7.158,7.92,0,18.274326,3.7,5 +7907,0,0.220721,1,1,0,2,4,,4,7,Main,St,962207,2.179,2.4,0,5.297316,4.5,4.5 +8445,0,0.18928,1,1,0,2,5,,4,7,North,St,972601,8.163,8.352,0,4.542726,5.8,4.5 +29563,0,0.20137,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.83288,0.15,4 +29565,0,0.37332,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.95969,0.15,4 +7908,0,0.125046,1,1,0,2,4,,4,7,Main,St,962207,1.887,2.012,0,3.001104,4.5,4.5 +8446,0,0.243459,1,1,0,2,5,,4,7,Park,Ave,972601,7.92,8.163,0,5.843017,5.8,4.5 +29255,0,0.329772,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,7.914534,0.15,4 +7680,0,0.167231,1,1,0,2,4,,4,7,Main,St,962207,2.012,2.179,0,4.013544,4.5,4.5 +29564,0,0.049078,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,1.177881,0.15,4 +34018,0,1.955745,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8440,0,1.005291,1,1,0,2,5,,5,7,Yale,Rd,972601,11.121,12.126,0,24.126984,3.7,5 +8625,0,2.011272,1,1,0,2,6,,5,7,Bricker,Rd,976704,10.518,12.529,0,48.270521,5.8,6 +7660,0,1.517981,1,1,0,2,5,,5,7,Avoca,Rd,962501,3.872,5.39,0,36.431545,3.7,5 +7744,0,2.000525,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,15.96,17.96,0,48.012606,5.55,5 +7844,0,0.381974,1,1,0,2,4,,5,7,Wildcat,Rd,962602,0.534,0.916,0,9.167365,3,4 +7867,0,1.166156,1,1,0,2,5,,5,7,Glyshaw,Rd,962501,5.39,6.556,0,27.987754,3.7,5 +8483,0,2.996593,1,1,0,2,6,GRV,5,7,Norman,Rd,972507,16.905,19.901,0,71.918232,5.55,5 +8591,0,0.886717,1,1,0,2,5,,5,7,Kilgore,Rd,976706,4.876,5.763,0,21.281204,3.7,5 +29568,0,1.159344,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.824246,0.15,4 +8594,0,1.004393,1,1,0,2,5,,5,7,Kilgore,Rd,976706,2.716,3.72,0,24.105432,3.7,5 +24926,0,1.070389,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.689342,0.15,4 +8602,0,1.746678,1,1,0,2,5,,5,7,Kilgore,Rd,976706,0.969,2.716,0,41.92028,3.7,5 +7541,0,1.005234,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,14.955,15.96,0,24.125607,5.55,5 +8593,0,1.156466,1,1,0,2,5,,5,7,Kilgore,Rd,976706,3.72,4.876,0,27.755178,3.7,5 +24925,0,1.435238,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,34.445706,0.15,4 +25945,0,1.402639,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.663334,0.15,4 +7644,0,1.002904,1,1,0,2,5,,5,7,Fargo,Rd,962507,1.939,2.941,0,24.069706,3.7,5 +7696,0,2.000784,1,1,0,2,6,GRV,5,7,Metcalf,Rd,962108,3.522,5.522,0,48.018814,5.55,5 +7875,0,2.000896,1,1,0,2,5,,5,7,Avoca,Rd,962501,1.872,3.872,0,48.021498,3.7,5 +29556,0,3.011225,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,72.2694,0.15,4 +29559,0,2.053352,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,49.280457,0.15,4 +8590,0,0.923444,1,1,0,2,6,,5,7,Kilgore,Rd,976706,5.763,6.686,0,22.162647,5.8,6 +7861,0,0.940785,1,1,0,2,5,,5,7,Fargo,Rd,962507,0.998,1.939,0,22.578846,3.7,5 +7857,0,1.507756,1,1,0,2,5,,5,7,Fargo,Rd,962507,2.941,4.449,0,36.186152,3.7,5 +7526,0,0.719318,1,1,0,2,5,,5,7,Imlay City,Rd,962606,19.287,20.006,0,17.263628,3.7,5 +7629,0,1.076977,1,1,0,2,5,,5,7,Abbottsford,Rd,962509,2.339,3.416,0,25.847454,3.7,5 +7676,0,2.048756,1,1,0,2,5,,5,7,Beard,Rd,962408,7.65,9.698,0,49.170147,3.7,5 +8588,0,1.002343,1,1,0,2,6,GRV,5,7,Cribbins,Rd,976907,2.006,3.009,0,24.056222,5.55,5 +9058,0,0.429126,1,1,0,2,5,,5,7,Brott,Rd,973302,1.048,1.478,0,10.299034,3.7,5 +22096,0,0.065386,1,1,0,2,5,,5,7,Brott,Rd,4502675,0,0.065,0,1.569259,3.7,5 +24944,0,1.620651,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,38.89563,0.15,4 +24945,0,1.232813,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,29.587506,0.15,4 +7741,0,1.18344,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,17.96,19.143,0,28.402568,5.55,5 +40098,0,0.202903,2,2,0,2,5,,3,5,Green,Rd,4603133,1.803,2.006,0,4.869675,8,4.5 +40097,1,0.087382,2,0,0,2,5,,3,5,Green,Rd,4603133,1.619,1.706,0,2.097177,8,4.5 +40096,-1,0.010432,0,1,0,2,7,,2,5,Ann,St,4606154,0.038,0.048,0,0.250375,8.5,4.5 +7530,0,0.082844,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,19.143,19.226,0,1.988267,5.55,5 +7733,0,0.060744,1,1,0,2,6,,5,7,Imlay City,Rd,962606,19.226,19.287,0,1.457853,5.8,6 +22144,0,0.082936,1,1,0,2,5,,5,7,Imlay City/Brott Cutoff,,4502673,0,0.083,0,1.990454,3.7,5 +7677,0,0.169106,1,1,0,2,5,,5,7,Beard,Rd,962408,7.413,7.582,0,4.058535,3.7,5 +7849,0,0.845875,1,1,0,2,5,,5,7,Abbottsford,Rd,962509,4.428,5.274,0,20.300999,3.7,5 +7628,0,0.064477,1,1,0,2,5,,5,7,Glyshaw/Beard Cutoff,,962510,0,0.065,0,1.547452,3.7,5 +7652,0,0.099932,1,1,0,2,5,,5,7,Glyshaw,Rd,962501,6.556,6.656,0,2.398369,3.7,5 +7904,0,0.068092,1,1,0,2,5,,5,7,Beard,Rd,962408,7.582,7.65,0,1.634198,3.7,5 +7458,0,0.383727,1,1,0,2,5,,5,7,Lapeer,Rd,962901,10.963,11.347,0,9.209436,3.7,5 +24946,0,0.98871,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.729051,0.15,4 +29595,0,1.86635,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,44.79239,0.15,4 +21332,0,0.08699,1,1,0,2,5,,5,7,Imlay City,Rd,4501538,0,0.087,0,2.087754,3.7,5 +7620,0,1.001382,1,1,0,2,4,,5,7,Wildcat,Rd,962602,2.429,3.43,0,24.033179,3,4 +29567,0,0.954149,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.899585,0.15,4 +7839,0,0.89024,1,1,0,2,4,,5,7,Wildcat,Rd,962602,1.538,2.429,0,21.365755,3,4 +29566,0,1.528039,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,36.672927,0.15,4 +7625,0,0.622217,1,1,0,2,4,,5,7,Wildcat,Rd,962602,0.916,1.538,0,14.933219,3,4 +7615,0,1.002151,1,1,0,2,4,,5,7,Wildcat,Rd,962602,3.936,4.938,0,24.051621,3,4 +8482,0,1.004997,1,1,0,2,6,GRV,5,7,Norman,Rd,972507,19.901,20.906,0,24.11994,5.55,5 +8508,0,0.991066,1,1,0,2,5,,5,7,Burtch,Rd,977601,0,0.991,0,23.785592,3.7,5 +29544,0,0.707803,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,16.987278,0.15,4 +29545,0,1.099975,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.399391,0.15,4 +29546,0,0.544967,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.079218,0.15,4 +37120,0,0.024323,1,1,0,2,5,,3,1,Spinoza,Dr,4718421,0,0.024,0,0.583746,8,4.5 +8985,0,0.195285,1,1,0,2,5,,5,7,Gibbons,Rd,973810,2.521,2.716,0,4.686833,3.7,5 +37121,0,0.063429,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,7.548,7.611,0,1.522298,5,5 +7833,0,0.506176,1,1,0,2,4,,5,7,Wildcat,Rd,962602,3.43,3.936,0,12.148234,3,4 +8430,0,1.16768,1,1,0,2,5,,5,7,Yale,Rd,972601,15.121,16.289,0,28.024309,3.7,5 +34019,0,1.898999,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34020,0,1.628176,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7647,0,2.001305,1,1,0,2,5,,5,7,Duce,Rd,962505,5.863,7.865,0,48.031322,3.7,5 +8436,0,1.000783,1,1,0,2,5,,5,7,Yale,Rd,972601,14.121,15.121,0,24.0188,3.7,5 +8437,0,1.002316,1,1,0,2,5,,5,7,Yale,Rd,972601,13.118,14.121,0,24.055573,3.7,5 +7819,0,0.974017,1,1,0,2,4,,5,7,Wildcat,Rd,962602,7.44,8.413,0,23.376413,3,4 +29560,0,1.444476,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,34.667433,0.15,4 +8999,0,1.090296,1,1,0,2,5,,5,7,Comstock,Rd,973809,2.944,4.035,0,26.16711,3.7,5 +29561,0,1.374578,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,32.989861,0.15,4 +7609,0,1.002893,1,1,0,2,4,,5,7,Wildcat,Rd,962602,6.437,7.44,0,24.069426,3,4 +7497,0,0.2244,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,2.001,2.226,0,5.385599,5,5 +40416,-1,1.137439,0,2,0,1,1,,4,7,W I 94,,967804,22.454,23.592,0,,0.8,7.5 +40417,1,0.086404,2,0,0,1,2,,4,7,Lapeer/I 94 Connector,,4506260,0.648,0.734,0,,0.8,7.5 +8329,0,1.873207,1,1,0,2,3,,5,7,Kimball,Dr,964704,8.757,10.63,0,44.956979,1.7,4 +8339,0,0.687497,1,1,0,2,4,,3,7,Gratiot,Ave,964704,2.335,3.022,0,16.499917,6,4.5 +8372,0,0.104641,2,2,0,2,5,,3,7,Holland,Ave,964606,0.217,0.322,0,2.511382,8,4.5 +8384,0,0.174879,1,1,0,2,5,,3,7,Sanborn,St,964604,0.24,0.415,0,4.197107,8,4.5 +8401,0,0.26148,1,1,0,2,5,,4,7,Hancock,St,964505,0.297,0.558,0,6.275522,5.8,4.5 +8407,0,0.234149,1,1,0,2,5,,4,7,Scott,Ave,964405,0,0.234,0,5.619586,5.8,4.5 +8519,0,0.38428,1,1,1,2,4,,3,7,Krafft,Rd,977504,3.915,4.299,0,9.222716,6,4.5 +29543,0,1.733851,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,41.61242,0.15,4 +29571,0,1.950763,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,46.8183,0.15,4 +29576,0,0.434831,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,10.435946,0.15,4 +29580,0,0.356966,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,8.567192,0.15,4 +29581,0,0.352463,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.459101,0.15,4 +29585,0,0.178557,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.285359,0.15,4 +7778,0,1.000532,1,1,0,2,5,,5,7,North,Rd,962604,2.743,3.744,0,24.012774,3.7,5 +8337,0,0.724776,1,1,0,2,4,,4,7,Lakeshore,Rd,964704,3.647,4.372,0,17.394618,4.5,4.5 +8352,0,1.012413,1,1,0,2,4,,5,7,Keewahdin,Rd,964703,2.639,3.652,0,24.297901,3,4 +8360,0,0.205492,1,1,0,2,3,,4,7,M 25,,964608,2.276,2.481,0,4.931808,3.7,5 +8473,0,0.703533,1,1,0,2,4,,4,7,River,Rd,4506233,0.039,0.742,0,16.8848,4.5,4.5 +8489,0,1.553446,1,1,0,2,5,,5,7,Burtch,Rd,977601,3.606,5.16,0,37.2827,3.7,5 +8583,0,0.791872,1,1,0,2,4,,4,7,Krafft,Rd,977504,0.501,1.293,0,19.004934,4.5,4.5 +8597,0,1.000288,1,1,0,2,5,,5,7,State,Rd,970601,2.858,3.858,0,24.006915,3.7,5 +8616,0,0.385262,1,1,0,2,5,,4,7,Water,St,970405,0.814,1.199,0,9.246284,5.8,4.5 +21214,0,0.999355,1,1,0,2,6,GRV,5,7,Metcalf,Rd,4502618,4.007,5.006,0,23.984519,5.55,5 +29554,0,1.387629,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.303097,0.15,4 +29555,0,1.052854,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.268489,0.15,4 +29593,0,1.162958,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,27.910984,0.15,4 +29594,0,1.513225,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,36.317393,0.15,4 +29599,0,1.102088,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.450109,0.15,4 +29602,0,0.741321,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.791696,0.15,4 +29604,0,0.715183,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.164385,0.15,4 +29605,0,0.710523,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.052559,0.15,4 +7606,0,1.852128,1,1,0,2,4,,5,7,Vincent,Rd,962603,0,1.852,0,44.451076,3,4 +7674,0,1.503257,1,1,0,2,5,,5,7,Beard,Rd,962408,10.871,12.374,0,36.078157,3.7,5 +7802,0,0.996851,1,1,0,2,5,,5,7,North,Rd,962604,1.242,2.239,0,23.924415,3.7,5 +7815,0,2.0042,1,1,0,2,4,,5,7,Vincent,Rd,962603,1.852,3.856,0,48.100805,3,4 +29550,0,0.941592,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.598199,0.15,4 +7605,0,0.481685,1,1,0,2,4,,5,7,North,Rd,962604,0,0.482,0,11.560435,3,4 +8479,0,1.212288,1,1,0,2,4,,5,7,River,Rd,978108,0,1.212,0,29.094904,3,4 +8619,0,0.147035,1,1,0,2,7,,4,7,Water,St,970405,0,0.147,0,3.528846,6.55,4.5 +28239,0,0.481422,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.554116,0.15,4 +29551,0,0.970294,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.287066,0.15,4 +8791,0,0.136458,1,1,0,2,4,,5,7,Wadhams,Rd,969901,15.339,15.476,0,3.274996,3,4 +8617,0,0.666557,1,1,0,2,5,,4,7,Water,St,970405,0.147,0.814,0,15.997363,5.8,4.5 +25972,0,0.539289,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.942926,0.15,4 +7593,0,0.504385,1,1,0,2,4,,5,7,North,Rd,962604,0.738,1.242,0,12.10523,3,4 +8584,0,0.501115,1,1,0,2,4,,5,7,Krafft,Rd,977504,0,0.501,0,12.026753,3,4 +8585,0,0.320149,1,1,0,2,4,,5,7,Lightle,Rd,977503,0,0.32,0,7.683581,3,4 +7803,0,0.255985,1,1,0,2,4,,5,7,North,Rd,962604,0.482,0.738,0,6.143638,3,4 +7782,0,0.432287,1,1,0,2,5,,5,7,North,Rd,962604,2.311,2.743,0,10.374884,3.7,5 +40276,0,0.164009,1,1,0,2,4,,4,4,Klix,St,5491476,0,0.164,0,3.936223,4.5,4.5 +40282,-1,0.268097,0,2,0,2,3,DIV,3,4,12 Mile,Rd,4212085,0.2,0.468,0,6.434331,5,5 +8351,0,0.433545,1,1,0,2,5,,5,7,Keewahdin,Rd,964703,3.652,4.085,0,10.405075,3.7,5 +7591,0,0.072326,1,1,0,2,5,,5,7,North,Rd,962604,2.239,2.311,0,1.735831,3.7,5 +8350,0,0.069554,1,1,0,2,5,,5,7,Keewahdin,Rd,964703,4.085,4.155,0,1.669306,3.7,5 +19567,0,0.11185,1,1,0,2,5,,5,7,Keewahdin/North Cutoff,,1917806,0,0.112,0,2.684401,3.7,5 +7777,0,0.999846,1,1,0,2,5,,5,7,North,Rd,962604,5.269,6.269,0,23.996302,3.7,5 +8502,0,1.011992,1,1,0,2,5,,5,7,Burtch,Rd,977601,1.989,3.001,0,24.287807,3.7,5 +21216,0,1.498477,1,1,0,2,6,GRV,5,7,Metcalf,Rd,4502618,2.009,3.508,0,35.963459,5.55,5 +29552,0,0.936367,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.472813,0.15,4 +29597,0,1.089473,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.147341,0.15,4 +29553,0,1.398991,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.575792,0.15,4 +7574,0,1.525455,1,1,0,2,5,,5,7,North,Rd,962604,3.744,5.269,0,36.610926,3.7,5 +21215,0,0.499136,1,1,0,2,6,GRV,5,7,Metcalf,Rd,4502618,3.508,4.007,0,11.979266,5.55,5 +7571,0,1.197101,1,1,0,2,5,,5,7,North,Rd,962604,6.269,7.466,0,28.730424,3.7,5 +29596,0,0.480566,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.533583,0.15,4 +8494,0,0.604945,1,1,0,2,5,,5,7,Burtch,Rd,977601,3.001,3.606,0,14.518679,3.7,5 +7254,0,0.277,1,1,0,2,4,,3,7,Pine Grove,Ave,964203,3.179,3.456,0,6.647997,6,4.5 +7988,0,0.518452,1,1,0,2,4,,4,7,Pine Grove,Ave,964203,4.524,5.043,0,12.442846,4.5,4.5 +8354,0,0.425341,1,1,0,2,4,,5,7,Keewahdin,Rd,964703,1.641,2.067,0,10.208187,3,4 +8365,0,0.171131,2,2,1,2,3,,3,7,M 25,,964608,0.097,0.268,0,4.107135,5,5 +8460,0,0.514279,2,2,0,2,4,,4,7,River,Rd,4506233,1.821,2.335,0,12.342692,4.5,4.5 +8562,0,0.311005,1,1,0,2,4,,4,7,Krafft,Rd,977504,2.192,2.503,0,7.464112,4.5,4.5 +8601,0,0.164311,1,1,0,2,5,,4,7,State,Rd,970601,0.855,1.019,0,3.943458,5.8,4.5 +8609,0,0.532993,1,1,0,2,5,,4,7,Water,St,970405,2.202,2.735,0,12.79183,5.8,4.5 +28241,0,0.664605,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,15.950509,0.15,4 +28245,0,0.424765,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,10.194369,0.15,4 +28247,0,0.53487,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.836875,0.15,4 +28251,0,0.391691,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.40059,0.15,4 +28254,0,0.390191,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.364591,0.15,4 +29579,0,0.320972,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,7.703326,0.15,4 +8461,0,0.509586,2,2,0,2,4,,4,7,River,Rd,4506233,1.311,1.821,0,12.230062,4.5,4.5 +8612,0,0.736596,1,1,0,2,5,,4,7,Water,St,970405,1.212,1.948,0,17.678315,5.8,4.5 +8996,0,0.682734,1,1,0,2,4,,4,7,Krafft,Rd,977504,1.51,2.192,0,16.385621,4.5,4.5 +28233,0,0.626328,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,15.031883,0.15,4 +28240,0,0.733378,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,17.601079,0.15,4 +28234,0,0.554401,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.305624,0.15,4 +8614,0,0.013114,1,1,0,2,5,,4,7,Water,St,970405,1.199,1.212,0,0.314743,5.8,4.5 +8464,0,0.399695,1,1,0,2,4,,4,7,River,Rd,4506233,0.912,1.311,0,9.592677,4.5,4.5 +8603,0,0.553443,1,1,0,2,5,,4,7,State,Rd,970601,0.301,0.855,0,13.282622,5.8,4.5 +28235,0,0.526907,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.645767,0.15,4 +28237,0,0.260524,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.252572,0.15,4 +28238,0,0.501565,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.037551,0.15,4 +8469,0,0.169624,1,1,0,2,4,,4,7,River,Rd,4506233,0.742,0.912,0,4.070987,4.5,4.5 +8604,0,0.301192,1,1,0,2,5,,4,7,State,Rd,970601,0,0.301,0,7.228599,5.8,4.5 +8581,0,0.216559,1,1,0,2,4,,4,7,Krafft,Rd,977504,1.293,1.51,0,5.197427,4.5,4.5 +8610,0,0.254003,1,1,0,2,5,,4,7,Water,St,970405,1.948,2.202,0,6.096082,5.8,4.5 +28236,0,0.700499,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,16.811965,0.15,4 +28256,0,0.186263,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.470317,0.15,4 +8353,0,0.572849,1,1,0,2,4,,4,7,Keewahdin,Rd,964703,2.067,2.639,0,13.748373,4.5,4.5 +8599,0,0.374411,1,1,0,2,5,,5,7,State,Rd,970601,1.858,2.233,0,8.985871,3.7,5 +25319,0,0.525127,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.603059,0.15,4 +28246,0,0.703295,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,16.87908,0.15,4 +8600,0,0.839254,1,1,0,2,5,,4,7,State,Rd,970601,1.019,1.858,0,20.142099,5.8,4.5 +29606,0,0.608018,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.59242,0.15,4 +8598,0,0.625616,1,1,0,2,5,,5,7,State,Rd,970601,2.233,2.858,0,15.014776,3.7,5 +29603,0,0.588499,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.123968,0.15,4 +8375,0,0.525697,1,1,0,2,5,,4,7,Riverside,Dr,964605,0.675,1.2,0,12.616728,5.8,4.5 +8458,0,0.959417,2,2,0,2,4,,4,7,River,Rd,4506233,2.557,3.517,0,23.026015,4.5,4.5 +8605,0,0.318739,1,1,0,2,5,,4,7,Water,St,970405,3.174,3.493,0,7.649736,5.8,4.5 +28250,0,0.490369,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.768864,0.15,4 +29582,0,0.290496,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.971904,0.15,4 +8607,0,0.438574,1,1,0,2,5,,4,7,Water,St,970405,2.735,3.174,0,10.525781,5.8,4.5 +25973,0,0.59163,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,14.199131,0.15,4 +28252,0,0.409227,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.821437,0.15,4 +8459,0,0.221998,2,2,0,2,4,,4,7,River,Rd,4506233,2.335,2.557,0,5.32796,4.5,4.5 +40421,1,0.151639,1,0,0,1,1,ROF,4,7,E I 94/Water,RAMP,4506254,0,0.152,0,,2.24,5 +8377,0,0.216431,1,1,0,2,5,,4,7,Riverside,Dr,964605,0.276,0.492,0,5.19434,5.8,4.5 +29590,0,0.117474,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,2.81937,0.15,4 +21227,0,0.424837,1,1,0,2,5,,4,7,Water,St,4502548,1.326,1.751,0,10.196093,5.8,4.5 +40418,-1,0.100189,0,2,0,1,2,,4,7,I 94/Lapeer Connector,,4506261,0.588,0.688,0,,0.8,7.5 +40419,1,0.2199,1,0,0,1,1,ROF,4,7,E I 94/Lapeer,RAMP,4506255,0,0.22,0,,2.24,5 +8378,0,0.17353,1,1,0,2,5,,4,7,Riverside,Dr,964605,0.102,0.276,0,4.164731,5.8,4.5 +29591,0,0.095963,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,2.303107,0.15,4 +8402,0,0.241456,1,1,0,2,5,,4,7,Hancock,St,964505,0.055,0.297,0,5.794953,5.8,4.5 +29583,0,0.237987,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.711686,0.15,4 +8376,0,0.182482,1,1,0,2,5,,4,7,Riverside,Dr,964605,0.492,0.675,0,4.379558,5.8,4.5 +7492,0,0.294266,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,2.633,2.927,0,7.062389,5,5 +29573,0,0.479888,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,11.517315,0.15,4 +7262,0,0.198371,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,2.927,3.125,0,4.760905,5,5 +8366,0,0.096651,2,2,1,2,3,,3,7,M 25,,964608,0,0.097,0,2.319617,5,5 +7997,0,0.053737,1,1,0,2,4,,3,7,Pine Grove,Ave,964203,3.125,3.179,0,1.289683,6,4.5 +7269,0,0.264306,2,2,1,2,3,,4,7,Pine Grove,Ave,964203,2.226,2.49,0,6.34335,3.7,5 +8373,0,0.21698,2,2,0,2,5,,3,7,Holland,Ave,964606,0,0.217,0,5.207527,8,4.5 +8374,0,0.263568,1,1,0,2,5,,4,7,Riverside,Dr,964605,1.2,1.464,0,6.325629,5.8,4.5 +29467,0,0.189676,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.55222,0.15,4 +8003,0,0.142462,2,2,1,2,3,,4,7,Pine Grove,Ave,964203,2.49,2.633,0,3.41909,3.7,5 +29584,0,0.174273,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.182547,0.15,4 +7992,0,0.04399,1,1,0,2,4,,3,7,Pine Grove,Ave,964203,3.456,3.5,0,1.055771,6,4.5 +8338,0,0.625063,1,1,0,2,4,,4,7,Lakeshore,Rd,964704,3.022,3.647,0,15.001516,4.5,4.5 +8355,0,0.835288,1,1,0,2,4,,3,7,Keewahdin,Rd,964703,0.806,1.641,0,20.046905,6,4.5 +8362,0,0.512626,2,2,1,2,3,,4,7,M 25,,964608,1.259,1.771,0,12.303017,3.7,5 +8542,0,0.044139,2,2,0,2,4,,3,7,Krafft,Rd,977504,3.261,3.305,0,1.059343,6,4.5 +28242,0,0.498684,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.968416,0.15,4 +28243,0,0.60877,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,14.610469,0.15,4 +28248,0,0.388184,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,9.316418,0.15,4 +28249,0,0.510309,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,12.247408,0.15,4 +7249,0,0.473569,1,1,0,2,4,,3,7,Pine Grove,Ave,964203,4.051,4.524,0,11.365645,6,4.5 +8504,0,0.474121,1,1,0,2,4,,4,7,Krafft,Rd,977504,2.787,3.261,0,11.378905,4.5,4.5 +8554,0,0.283545,1,1,0,2,4,,4,7,Krafft,Rd,977504,2.503,2.787,0,6.805073,4.5,4.5 +7739,0,0.551004,1,1,0,2,4,,3,7,Pine Grove,Ave,964203,3.5,4.051,0,13.224087,6,4.5 +29575,0,0.286629,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.879096,0.15,4 +8358,0,0.360265,1,1,0,2,4,,3,7,Keewahdin,Rd,964703,0.152,0.512,0,8.646358,6,4.5 +8364,0,0.647804,2,2,1,2,3,,3,7,M 25,,964608,0.268,0.916,0,15.547285,5,5 +8532,0,0.389165,1,1,1,2,4,,3,7,Krafft,Rd,977504,3.505,3.894,0,9.33995,6,4.5 +26955,0,0.474443,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,11.386631,0.15,4 +29578,0,0.577794,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,13.867051,0.15,4 +8536,0,0.200167,2,2,0,2,4,,3,7,Krafft,Rd,977504,3.305,3.505,0,4.804002,6,4.5 +19250,1,0.037333,1,0,0,2,4,,3,7,M 136/Kraft Cutoff,,1806908,0,0.037,0,0.895993,6,4.5 +8357,0,0.126811,2,2,1,2,4,,3,7,Keewahdin,Rd,964703,0.512,0.639,0,3.043466,6,4.5 +8363,0,0.343147,2,2,1,2,3,,3,7,M 25,,964608,0.916,1.259,0,8.235516,5,5 +8356,0,0.166765,1,1,0,2,4,,3,7,Keewahdin,Rd,964703,0.639,0.806,0,4.00236,6,4.5 +29577,0,0.429356,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,10.304551,0.15,4 +8530,0,0.020495,1,1,1,2,4,,3,7,Krafft,Rd,977504,3.894,3.915,0,0.491875,6,4.5 +8359,0,0.081995,1,1,0,2,4,,3,7,Keewahdin,Rd,964703,0.07,0.152,0,1.967876,6,4.5 +8361,0,0.504349,2,2,1,2,3,,4,7,M 25,,964608,1.771,2.276,0,12.104377,3.7,5 +28244,0,0.258779,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.210697,0.15,4 +29572,0,0.200048,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.80115,0.15,4 +8333,0,1.069964,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,6.391,7.461,0,25.679146,1.7,4 +21211,0,0.160384,1,1,0,2,5,,5,7,Metcalf,Rd,4502618,6.045,6.205,0,3.849222,3.7,5 +29449,0,0.577886,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.869272,0.15,4 +29450,0,0.604733,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.513603,0.15,4 +29592,0,0.885312,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,21.247487,0.15,4 +8595,0,0.785348,1,1,0,2,5,,5,7,State,Rd,970601,4.112,4.897,0,18.848352,3.7,5 +21213,0,0.637629,1,1,0,2,5,,5,7,Metcalf,Rd,4502618,5.006,5.644,0,15.303092,3.7,5 +29598,0,0.966468,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.195237,0.15,4 +29600,0,0.504293,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.10304,0.15,4 +8596,0,0.253174,1,1,0,2,5,,5,7,State,Rd,970601,3.858,4.112,0,6.076166,3.7,5 +21212,0,0.400765,1,1,0,2,5,,5,7,Metcalf,Rd,4502618,5.644,6.045,0,9.618364,3.7,5 +28260,0,0.575786,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.818852,0.15,4 +29452,0,0.44891,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,10.773831,0.15,4 +8330,0,0.408526,1,1,0,2,3,,5,7,M 25,,964704,8.349,8.757,0,9.804634,1.7,4 +8331,0,0.454266,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,7.894,8.349,0,10.902372,1.7,4 +28257,0,0.399442,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.586604,0.15,4 +8480,0,0.387362,1,1,0,2,5,,5,7,Burtch,Rd,977601,5.16,5.547,0,9.296679,3.7,5 +8332,0,0.43333,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,7.461,7.894,0,10.399926,1.7,4 +28259,0,0.197885,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.749246,0.15,4 +8335,0,0.64259,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,5.24,5.883,0,15.422157,1.7,4 +8336,0,0.868529,1,1,0,2,3,,4,7,Lakeshore,Rd,964704,4.372,5.24,0,20.844697,3.7,5 +8334,0,0.508283,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,5.883,6.391,0,12.198781,1.7,4 +21877,0,1.090728,1,1,0,2,5,,5,7,Jeddo,Rd,4505840,23.086,24.176,0,26.177482,3.7,5 +29569,0,0.848029,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,20.352704,0.15,4 +34021,0,1.557241,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +21879,0,2.048436,1,1,0,2,5,,5,7,Jeddo,Rd,4505840,21.037,23.086,0,49.162462,3.7,5 +29541,0,0.933316,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.399578,0.15,4 +29570,0,0.986723,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.681361,0.15,4 +8327,0,0.965028,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,11.633,12.598,0,23.16068,1.7,4 +8328,0,1.002702,1,1,0,2,3,,5,7,Kimball,Dr,964704,10.63,11.633,0,24.064857,1.7,4 +8341,0,0.614676,1,1,0,2,4,,3,7,Gratiot,Ave,964704,1.303,1.918,0,14.752224,6,4.5 +27958,0,0.237973,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.711346,0.15,4 +29574,0,0.112788,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.706903,0.15,4 +34022,-1,0.811083,0,3,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34023,1,0.793885,3,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7346,0,0.078655,1,1,0,2,5,,3,7,10th,Ave,963204,3.71,3.789,0,1.887732,8,4.5 +8177,-1,0.745567,0,2,0,1,1,,3,7,W I 94,,967804,25.024,25.77,0,,0.58,7 +8229,1,0.600849,2,0,0,1,1,,3,7,E I 94,,967606,25.102,25.702,0,,0.58,7 +8325,0,0.094564,1,1,0,2,4,,3,7,State,St,964705,0.105,0.199,0,2.269541,6,4.5 +8347,0,0.21241,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0.456,0.668,0,5.097838,6,4.5 +8348,0,0.178646,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0.277,0.456,0,4.287498,6,4.5 +8394,0,0.154279,1,1,0,2,4,,3,7,Hancock,St,964505,1.121,1.275,0,3.702689,6,4.5 +8411,0,0.212259,1,1,0,2,7,,3,7,Stone,St,964308,1.742,1.954,0,5.094211,7,4.5 +24772,0,0.22338,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.36112,0.15,4 +26357,0,0.283656,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.807755,0.15,4 +29455,0,0.230831,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.539941,0.15,4 +29468,0,0.19968,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.792323,0.15,4 +29504,0,0.277024,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.648583,0.15,4 +29588,0,0.185145,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.443479,0.15,4 +7284,0,0.157285,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.375,1.532,0,3.774834,5,5 +7408,0,0.160717,2,2,0,2,4,,3,7,10th,Ave,963204,2.864,3.025,0,3.857218,6,4.5 +7572,0,0.211425,1,1,0,2,5,,3,7,10th,Ave,963204,3.499,3.71,0,5.074207,8,4.5 +8029,0,0.133212,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.047,1.18,0,3.197077,5,5 +8386,-1,0.32477,0,2,0,1,2,,3,7,I 94/Pine Grove Connector,,964510,0,0.325,0,,0.58,7 +8388,1,0.126612,2,0,0,1,2,,3,7,I 94/Pine Grove Connector,,964509,0.255,0.381,0,,0.58,7 +8392,0,0.172671,1,1,0,2,5,,3,7,Garfield,St,964508,0.664,0.836,0,4.144106,8,4.5 +8397,0,0.172106,2,2,0,2,4,,3,7,Hancock,St,964505,0.715,0.887,0,4.130541,6,4.5 +8405,0,0.162484,1,1,0,2,7,,3,7,Scott,Ave,964405,0.509,0.672,0,3.899623,7,4.5 +8414,0,0.174887,1,1,0,2,5,,3,7,Stone,St,964308,1.298,1.473,0,4.197285,8,4.5 +29463,0,0.130673,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.136142,0.15,4 +29529,0,0.239424,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.746171,0.15,4 +8178,-1,0.196802,0,1,0,1,1,,3,7,W I 94,,967804,24.827,25.024,0,,0.58,7 +8230,1,0.320629,2,0,0,1,1,,3,7,E I 94,,967606,24.781,25.102,0,,0.58,7 +8322,1,0.113101,1,0,0,1,1,RFS,3,7,W I 94/Pine Grove Connector,RAMP,965304,0,0.113,0,,0.22,6 +8406,0,0.274963,1,1,0,2,5,,3,7,Scott,Ave,964405,0.234,0.509,0,6.599102,8,4.5 +24948,0,0.225099,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.402371,0.15,4 +40415,1,1.428613,2,0,0,1,1,,5,7,E I 94,,967606,22.134,23.562,0,,1.02,7 +21208,0,0.161753,1,1,0,2,5,,3,7,12th,Ave,4502623,0.497,0.659,0,3.882072,8,4.5 +24949,0,0.082122,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.970929,0.15,4 +21330,1,0.291363,1,0,0,1,1,RON,3,7,Pine Grove/E I 94,RAMP,4502649,0,0.291,0,,1.09,4 +8017,0,0.189945,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.532,1.722,0,4.558684,5,5 +8385,-1,0.332908,0,2,0,2,3,DIV,3,7,I 94/Pine Grove Connector,,964510,0.325,0.658,0,7.989781,5,5 +8387,1,0.272636,2,0,0,2,3,DIV,3,7,I 94/Pine Grove Connector,,964509,0.381,0.654,0,6.543265,5,5 +8393,0,0.096574,1,1,0,2,5,,3,7,Garfield,St,964508,0.567,0.664,0,2.317785,8,4.5 +8399,0,0.113995,2,2,0,2,3,,3,7,Hancock,St,964505,0.571,0.685,0,2.735885,5,5 +29461,0,0.181521,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.356509,0.15,4 +8400,0,0.013181,2,2,0,2,3,,3,7,Hancock,St,964505,0.558,0.571,0,0.316345,5,5 +7499,0,0.067014,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.82,1.887,0,1.608332,5,5 +7271,0,0.097412,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.887,1.984,0,2.337882,5,5 +8004,0,0.017141,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.984,2.001,0,0.411382,5,5 +7757,0,0.097491,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.722,1.82,0,2.339773,5,5 +29462,0,0.070315,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.687554,0.15,4 +8398,0,0.029858,2,2,0,2,4,,3,7,Hancock,St,964505,0.685,0.715,0,0.716601,6,4.5 +8403,0,0.153727,1,1,0,2,7,,3,7,Scott,Ave,964405,0.682,0.836,0,3.689458,7,4.5 +8416,0,0.081711,1,1,0,2,4,,3,7,Stone,St,964308,1.089,1.171,0,1.961072,6,4.5 +29457,0,0.086912,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.085894,0.15,4 +7505,0,0.1392,2,2,0,2,4,,3,7,10th,Ave,963204,2.705,2.845,0,3.340799,6,4.5 +7296,0,0.022675,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.024,1.047,0,0.544208,5,5 +7611,0,0.019469,2,2,0,2,4,,3,7,10th,Ave,963204,2.845,2.864,0,0.467262,6,4.5 +8404,0,0.010185,1,1,0,2,7,,3,7,Scott,Ave,964405,0.672,0.682,0,0.244442,7,4.5 +8326,0,0.104588,1,1,0,2,4,,3,7,State,St,964705,0,0.105,0,2.510118,6,4.5 +8415,0,0.079485,1,1,0,2,4,,3,7,Stone,St,964308,1.171,1.251,0,1.907639,6,4.5 +29460,0,0.16447,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.947278,0.15,4 +29459,0,0.009327,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.223837,0.15,4 +7348,0,0.087512,1,1,0,2,5,,3,7,10th,Ave,963204,3.411,3.499,0,2.100292,8,4.5 +8390,0,0.231048,1,1,0,2,5,,3,7,Garfield,St,964508,0.993,1.224,0,5.545158,8,4.5 +8395,0,0.07559,1,1,0,2,4,,3,7,Hancock,St,964505,1.045,1.121,0,1.814161,6,4.5 +8412,0,0.178481,1,1,0,2,5,,3,7,Stone,St,964308,1.563,1.742,0,4.283546,8,4.5 +8413,0,0.090168,1,1,0,2,5,,3,7,Stone,St,964308,1.473,1.563,0,2.164027,8,4.5 +8396,0,0.157502,1,1,0,2,4,,3,7,Hancock,St,964505,0.887,1.045,0,3.78006,6,4.5 +7575,0,0.089989,1,1,0,2,5,,3,7,10th,Ave,963204,3.321,3.411,0,2.159739,8,4.5 +8391,0,0.156568,1,1,0,2,5,,3,7,Garfield,St,964508,0.836,0.993,0,3.757641,8,4.5 +29456,0,0.083004,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.992108,0.15,4 +29454,0,0.040879,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.981086,0.15,4 +7511,0,0.098619,1,1,0,2,5,,3,7,10th,Ave,963204,4.245,4.343,0,2.366851,8,4.5 +8342,0,0.139089,1,1,0,2,4,,3,7,Gratiot,Ave,964704,1.164,1.303,0,3.338132,6,4.5 +8369,0,0.157767,1,1,0,2,5,,3,7,Holland,Ave,964606,0.592,0.749,0,3.786409,8,4.5 +8381,0,0.15728,1,1,0,2,5,,3,7,Sanborn,St,964604,0.695,0.852,0,3.774722,8,4.5 +8408,0,0.134459,1,1,0,2,7,,3,7,Stone,St,964308,2.449,2.583,0,3.227014,7,4.5 +27360,0,0.211111,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.066657,0.15,4 +7327,0,0.232627,1,1,0,2,5,,3,7,10th,Ave,963204,4.012,4.245,0,5.583048,8,4.5 +8382,0,0.144579,1,1,0,2,5,,3,7,Sanborn,St,964604,0.55,0.695,0,3.469889,8,4.5 +27366,0,0.193772,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.650537,0.15,4 +29586,0,0.184082,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.417964,0.15,4 +8383,0,0.134887,1,1,0,2,5,,3,7,Sanborn,St,964604,0.415,0.55,0,3.237299,8,4.5 +29587,0,0.256079,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.1459,0.15,4 +7551,0,0.223292,1,1,0,2,5,,3,7,10th,Ave,963204,3.789,4.012,0,5.359019,8,4.5 +29466,0,0.109358,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.624596,0.15,4 +8370,0,0.254425,2,2,0,2,5,,3,7,Holland,Ave,964606,0.337,0.592,0,6.106208,8,4.5 +8371,0,0.015611,2,2,0,2,5,,3,7,Holland,Ave,964606,0.322,0.337,0,0.374666,8,4.5 +8345,0,0.103637,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0.867,0.97,0,2.487291,6,4.5 +8379,0,0.156496,1,1,0,2,5,,3,7,Sanborn,St,964604,0.928,1.084,0,3.755896,8,4.5 +8410,0,0.302403,1,1,0,2,7,,3,7,Stone,St,964308,1.954,2.256,0,7.257663,7,4.5 +28596,0,0.195536,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.692865,0.15,4 +29453,0,0.246803,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.923261,0.15,4 +29589,0,0.058095,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.394278,0.15,4 +8380,0,0.075671,1,1,0,2,5,,3,7,Sanborn,St,964604,0.852,0.928,0,1.816107,8,4.5 +8409,0,0.192592,1,1,0,2,7,,3,7,Stone,St,964308,2.256,2.449,0,4.622217,7,4.5 +29464,0,0.168484,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.04361,0.15,4 +29527,0,0.046956,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.126945,0.15,4 +8346,0,0.198436,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0.668,0.867,0,4.762473,6,4.5 +8344,0,0.09299,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0.97,1.063,0,2.231769,6,4.5 +8343,0,0.100911,1,1,0,2,4,,3,7,Gratiot,Ave,964704,1.063,1.164,0,2.421865,6,4.5 +8367,0,0.13024,1,1,0,2,5,,3,7,Holland,Ave,964606,0.849,0.979,0,3.125761,8,4.5 +25174,0,0.491822,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,11.80372,0.15,4 +8368,0,0.099446,1,1,0,2,5,,3,7,Holland,Ave,964606,0.749,0.849,0,2.3867,8,4.5 +8349,0,0.277154,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0,0.277,0,6.651706,6,4.5 +29458,0,0.280722,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.737328,0.15,4 +8195,1,0.09356,3,0,0,1,1,,2,7,Blue Water Bridge,,967803,0,0.094,0,,0.32,8.5 +21381,-1,0.086475,0,3,0,1,1,,3,7,Blue Water Bridge,,4500000,0,0.087,0,,0.58,7 +8340,0,0.4167,1,1,0,2,4,,3,7,Gratiot,Ave,964704,1.918,2.335,0,10.0008,6,4.5 +8518,0,0.230173,1,1,1,2,4,,3,7,Krafft,Rd,977504,4.299,4.529,0,5.524161,6,4.5 +34120,0,1.024382,2,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34133,0,0.293515,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34122,0,0.273778,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34123,0,0.248837,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34127,0,0.207316,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34126,0,0.255621,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34168,0,0.011144,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.267467,0.15,4 +34128,0,0.148453,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34169,0,0.027994,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.671849,0.15,4 +34125,0,0.120491,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34121,0,0.103502,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34130,0,0.141946,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34134,0,0.601524,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34131,0,0.163647,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34166,0,0.02087,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.500873,0.15,4 +34162,0,0.076207,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,1.828976,0.15,4 +34164,0,0.020759,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.498225,0.15,4 +34170,0,0.012444,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.298647,0.15,4 +34172,0,0.020641,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.495394,0.15,4 +34171,0,0.011734,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.281615,0.15,4 +34163,0,0.009748,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.233964,0.15,4 +34167,0,0.014534,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.348817,0.15,4 +34161,0,0.046018,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,1.104429,0.15,4 +34157,0,0.033438,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.802505,0.15,4 +34158,0,0.023675,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.568204,0.15,4 +34165,0,0.011115,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.266767,0.15,4 +34151,0,0.093319,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34155,0,0.239954,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34173,0,0.015331,1,1,0,2,5,,3,5,Glazier,Way,0,0,0,0,0.367942,8,4.5 +34175,0,0.123024,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.437,5.56,0,2.952577,5,5 +40313,0,0.509237,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.221678,0.15,4 +34212,0,6.983886,1,1,0,0,83,,5,8,Huron & Eastern Railway,,4104388,9.302,16.284,1,,0.15,4 +34213,0,0.040841,1,1,0,3,96,,5,8,Walk Link,,0,0,0,0,0.980188,0.15,4 +34214,0,7.424152,1,1,0,0,83,,5,8,Huron & Eastern Railway,,4104388,1.881,9.302,1,,0.15,4 +34215,0,0.029295,1,1,0,3,96,,5,8,Walk Link,,0,0,0,0,0.703071,0.15,4 +34216,0,1.881771,1,1,0,0,83,,5,8,Huron & Eastern Railway,,4104388,0,1.881,1,,0.15,4 +34217,0,0.024367,1,1,0,3,96,,5,5,Walk Link,,0,0,0,0,0.584817,0.15,4 +34218,0,10.351032,1,1,0,0,83,,5,5,Huron & Eastern Railway,,4605002,15.812,26.159,1,,0.15,4 +34219,0,0.015456,1,1,0,3,96,,2,5,Walk Link,,0,0,0,0,0.37095,0.15,4 +37168,0,0.06276,1,1,0,3,96,,3,8,Walk Link,,0,0,0,0,1.506249,0.15,4 +34222,0,0.010172,1,1,0,3,96,,3,5,Walk Link,,0,0,0,0,0.244129,0.15,4 +34223,0,3.498116,1,1,0,0,82,,4,5,Norfolk Southern Railway,,4604999,31.155,34.652,1,,0.15,4 +34224,0,0.060535,1,1,0,3,96,,3,2,Walk Link,,0,0,0,0,1.452834,0.15,4 +34225,0,5.43063,1,1,0,0,82,,3,2,Norfolk Southern Railway,,4711929,10.786,16.215,1,,0.15,4 +40445,0,0.039069,1,1,1,2,4,,3,3,Lahser,Rd,685510,0.408,0.447,0,0.937652,6,4.5 +40446,0,0.235564,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.65354,0.15,4 +37166,0,0.123593,1,1,0,3,96,,2,5,Walk Link,,0,0,0,0,2.966233,0.15,4 +34230,0,3.514684,1,1,0,0,82,,3,1,Canadian National Railway,,4711927,2.49,6.004,1,,0.15,4 +37163,0,6.779035,1,1,0,0,82,,3,2,Consolidated Rail Corporation,,4711929,16.215,22.992,1,,0.15,4 +34232,0,0.063742,1,1,0,2,7,,3,8,Walnut,St,933407,0.632,0.696,0,1.529805,7,4.5 +39319,0,0.089365,1,1,0,2,7,,3,5,Traver,Rd,1443305,1.889,1.978,0,2.14476,7,4.5 +39322,0,0.400325,1,1,0,2,5,,4,2,6 Mile,Rd,1680701,0.613,1.014,0,9.607792,5.8,4.5 +39321,0,0.332873,1,1,0,2,5,,4,2,Woodruff,Rd,1694803,1.772,2.105,0,7.988961,5.8,4.5 +40909,0,1.491305,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,35.791326,0.15,4 +40908,-1,0.042511,0,1,0,2,4,,4,4,25 Mile,Rd,0,0,0,0,1.02027,4.5,4.5 +40906,-1,0.036952,0,1,0,2,5,,4,4,25 Mile,Rd,0,0,0,0,0.886851,5.8,4.5 +40907,1,0.047693,1,0,0,2,4,,4,4,25 Mile,Rd,0,0,0,0,1.144633,4.5,4.5 +40904,-1,0.03895,0,1,0,2,4,,4,4,Romeo Plank,Rd,0,0,0,0,0.934789,4.5,4.5 +40902,-1,0.027534,0,1,0,2,4,,4,4,25 Mile,Rd,0,0,0,0,0.660825,4.5,4.5 +40905,1,0.04205,1,0,0,2,5,,4,4,25 Mile,Rd,0,0,0,0,1.009208,5.8,4.5 +40903,1,0.035724,2,0,0,2,4,,4,4,Romeo Plank,Rd,0,0,0,0,0.85738,4.5,4.5 +40898,0,0.076913,1,1,0,2,4,,4,4,Romeo Plank,Rd,0,0,0,0,1.845914,4.5,4.5 +40899,1,0.026183,1,0,0,2,4,,4,4,25 Mile,Rd,0,0,0,0,0.628396,4.5,4.5 +40901,1,0.03034,1,0,0,2,4,,4,4,Romeo Plank,Rd,0,0,0,0,0.728155,4.5,4.5 +40896,0,0.228401,1,1,0,2,4,,4,4,25 Mile,Rd,0,0,0,0,5.481614,4.5,4.5 +40900,-1,0.028661,0,1,0,2,4,,4,4,Romeo Plank,Rd,0,0,0,0,0.687862,4.5,4.5 +40895,0,0.296682,1,1,0,2,5,,4,4,25 Mile,Rd,0,0,0,0,7.120364,5.8,4.5 +40892,0,0.303651,1,1,0,2,5,,4,5,Tyler,Rd,0,0,0,0,7.28762,5.8,4.5 +40893,-1,0.245155,0,1,0,1,3,RSF,4,5,N Wiard/Tyler,Ramp,0,0,0,0,,3.7,5 +40890,1,0.066914,1,0,0,2,4,,5,8,Coon Lake,Rd,0,0,0,0,1.605933,3,4 +40891,-1,0.064221,0,1,0,2,4,,5,8,Coon Lake,Rd,0,0,0,0,1.541303,3,4 +39356,0,0.961637,1,1,0,2,4,,5,7,Griswold,Rd,0,0,0,0,23.079296,3,4 +40889,-1,0.044273,0,1,0,2,4,,5,8,Chilson,Rd,0,0,0,0,1.06256,3,4 +39358,-1,0.070519,0,1,0,2,4,,5,7,Griswold,Rd,0,0,0,0,1.692467,3,4 +39357,1,0.06683,1,0,0,2,4,,5,7,Griswold,Rd,0,0,0,0,1.603908,3,4 +39360,-1,0.038826,0,1,0,2,4,,5,7,Griswold,Rd,0,0,0,0,0.931836,3,4 +39359,-1,0.031476,0,1,0,2,4,,5,7,Range,Rd,0,0,0,0,0.755416,3,4 +39362,1,0.038795,1,0,0,2,4,,5,7,Griswold,Rd,0,0,0,0,0.931087,3,4 +39361,1,0.035287,1,0,0,2,4,,5,7,Range,Rd,0,0,0,0,0.846881,3,4 +39364,1,0.058437,1,0,0,2,4,,5,7,Range,Rd,0,0,0,0,1.402488,3,4 +39365,-1,0.072107,0,1,0,2,4,,5,7,Griswold,Rd,0,0,0,0,1.73056,3,4 +39363,-1,0.061932,0,1,0,2,4,,5,7,Range,Rd,0,0,0,0,1.486361,3,4 +39366,1,0.074513,1,0,0,2,4,,5,7,Griswold,Rd,0,0,0,0,1.788319,3,4 +39368,-1,0.073454,0,1,0,2,4,,5,7,Range,Rd,0,0,0,0,1.76289,3,4 +39367,1,0.06892,1,0,0,2,4,,5,7,Range,Rd,0,0,0,0,1.654072,3,4 +39370,0,0.301954,1,1,0,2,4,,5,7,Range,Rd,0,0,0,0,7.246902,3,4 +39369,0,0.477764,1,1,0,2,4,,5,7,Range,Rd,0,0,0,0,11.46633,3,4 +39372,0,0.416193,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.98862,0.15,4 +39371,0,0.924701,1,1,0,2,4,,5,7,Griswold,Rd,0,0,0,0,22.192823,3,4 +34294,0,0.53757,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,4.16,4.698,0,12.901687,8,4.5 +34293,0,0.335512,1,1,0,2,5,,5,8,Hamburg,Rd,932904,1.138,1.473,0,8.052286,3.7,5 +40609,0,0.515407,1,1,0,2,5,,5,8,Hartland,Rd,4105279,1.216,1.732,0,12.369779,3.7,5 +40608,-1,1.267537,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,0.432,1.699,0,30.420891,1.7,4 +40611,0,0.884873,1,1,0,2,6,,5,8,Clark,Rd,4103128,0,0.885,0,21.236957,5.8,6 +40610,0,0.736055,1,1,0,2,6,,5,8,Dunham,Rd,936708,0,0.736,0,17.665329,5.8,6 +37196,1,0.073754,1,0,0,1,1,ROF,4,3,E I 96/SB Beck,RAMP,4462972,0.297,0.37,0,,2.24,5 +37195,1,0.081674,2,0,0,1,1,ROF,4,3,E I 96/NB Beck,RAMP,4462973,0,0.082,0,,2.24,5 +37194,1,0.296648,1,0,0,1,1,ROF,4,3,E I 96/Beck,RAMP,4462972,0,0.297,0,,2.24,5 +37193,0,0.275683,2,2,1,2,4,,4,3,Beck,Rd,662105,0.085,0.361,0,6.616389,4.5,4.5 +37192,0,0.045556,2,2,1,2,3,,4,3,Beck,Rd,662105,0.04,0.085,0,1.09335,3.7,5 +37191,0,0.039899,2,2,1,2,3,,4,3,Beck,Rd,662105,0,0.04,0,0.957573,3.7,5 +39903,1,0.294859,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,10.967,11.262,0,7.076606,3.7,5 +40060,1,0.057346,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0,0.057,0,1.376301,5,5 +34329,0,0.299178,1,1,1,2,3,,3,3,West Maple,Rd,683906,0.702,1.001,0,7.180265,5,5 +37208,0,0.054419,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,1.336,1.39,0,1.306058,3.7,5 +37207,-1,0.278166,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4463321,0,0.278,0,6.675988,3.7,5 +37206,1,0.275981,2,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,0,0.275,0,6.623536,3.7,5 +37205,1,0.150426,1,0,0,1,1,RON,4,3,Beck/W I 96,RAMP,4462978,0.1,0.25,0,,1.09,4 +37204,1,0.127922,1,0,0,1,1,RON,4,3,NB Beck/W I 96,RAMP,4462979,0,0.128,0,,1.09,4 +37203,1,0.09971,1,0,0,1,1,RON,4,3,SB Beck/W I 96,RAMP,4462978,0,0.1,0,,1.09,4 +37202,1,0.060947,2,0,0,1,1,ROF,4,3,W I 96/NB Beck,RAMP,4462976,0.34,0.401,0,,2.24,5 +37201,1,0.064006,2,0,0,1,1,ROF,4,3,W I 96/SB Beck,RAMP,4462977,0,0.064,0,,2.24,5 +37200,1,0.340152,2,0,0,1,1,ROF,4,3,W I 96/Beck,RAMP,4462976,0,0.34,0,,2.24,5 +37199,1,0.355421,2,0,0,1,1,RON,4,3,Beck/E I 96,RAMP,4462974,0.085,0.44,0,,1.09,4 +37198,1,0.093711,2,0,0,1,1,RON,4,3,SB Beck/E I 96,RAMP,4462975,0,0.094,0,,1.09,4 +37197,1,0.084469,1,0,0,1,1,RON,4,3,NB Beck/E I 96,RAMP,4462974,0,0.085,0,,1.09,4 +34342,-1,0.125798,0,2,0,2,3,DV2,4,3,Joslyn,Rd,4416557,0,0.126,0,3.01916,3.7,5 +34343,1,0.128672,2,0,0,2,3,DV2,4,3,Joslyn,Rd,674110,2.969,3.097,0,3.088138,3.7,5 +37073,1,0.363411,1,0,0,1,1,RON,4,3,Joslyn/S I 75,RAMP,669205,0.011,0.375,0,,1.09,4 +39789,-1,0.220629,0,2,0,2,4,DIV,4,3,Joslyn,Rd,4463372,0,0.221,0,5.295101,4.5,4.5 +34346,1,0.27659,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,1.237,1.514,0,6.638163,4.5,4.5 +34347,-1,0.224017,0,2,0,2,4,DIV,4,3,Brown,Rd,4463371,0,0.224,0,5.376402,4.5,4.5 +34348,1,0.010963,2,0,0,2,4,DIV,4,3,Joslyn,Rd,674110,3.896,3.907,0,0.263122,4.5,4.5 +34349,-1,0.070546,0,2,0,2,4,RSF,4,3,Joslyn/Brown Cutoff,,4463373,0.097,0.167,0,1.69311,4.5,4.5 +34350,-1,0.080276,0,2,0,2,4,RSF,4,3,Joslyn/Brown Cutoff,,4463373,0.017,0.097,0,1.926635,4.5,4.5 +34351,1,0.22399,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,0.887,1.111,0,5.375756,4.5,4.5 +34352,1,0.064911,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,1.12,1.185,0,1.557873,4.5,4.5 +34353,1,0.052489,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,1.185,1.237,0,1.259725,4.5,4.5 +39787,-1,0.209719,0,2,0,2,4,DIV,4,3,Brown,Rd,4463371,0.367,0.577,0,5.03325,4.5,4.5 +39788,-1,0.134807,0,2,0,2,4,DIV,4,3,Brown,Rd,4463371,0.577,0.712,0,3.235362,4.5,4.5 +34356,-1,0.134961,0,2,0,2,4,DIV,4,3,Brown,Rd,4463371,0.232,0.367,0,3.239068,4.5,4.5 +34357,1,0.045481,2,0,0,2,4,DIV,4,3,Joslyn,Rd,674110,3.797,3.842,0,1.091544,4.5,4.5 +39791,1,0.009011,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,1.111,1.12,0,0.216274,4.5,4.5 +34359,1,0.053741,2,0,0,2,4,DIV,4,3,Joslyn,Rd,674110,3.842,3.896,0,1.289772,4.5,4.5 +39792,-1,0.066434,0,2,0,2,4,DIV,4,3,Joslyn,Rd,4463372,0.221,0.287,0,1.594425,4.5,4.5 +37079,-1,0.095913,0,2,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0,0.096,0,2.301912,3.7,5 +37084,1,0.019116,2,0,0,2,3,,4,3,S Baldwin/Great Lakes Turn,TURN,4414692,0,0.019,0,0.458787,3.7,5 +37087,1,0.021116,1,0,0,2,3,RSF,4,3,S I 75/Baldwin,RAMP,668908,0.338,0.359,0,0.506787,3.7,5 +37108,1,0.21522,2,0,0,2,4,DIV,4,3,Baldwin,Rd,655009,1.612,1.827,0,5.165284,4.5,4.5 +37112,1,0.170243,2,0,0,2,5,DV2,3,4,Kennedy,Cir,4211476,0.33,0.5,0,4.085835,8,4.5 +37106,1,0.022574,1,0,0,2,3,RSF,4,3,Baldwin/N I 75,RAMP,669002,0,0.023,0,0.541776,3.7,5 +37109,1,0.019219,1,0,0,2,4,,4,3,S Baldwin/Brown,TURN,4414694,0,0.019,0,0.461256,4.5,4.5 +37216,-1,0.514139,0,2,0,2,3,DIV,3,3,12 Mile,Rd,4414623,0.663,1.177,0,12.339332,5,5 +37215,-1,0.307965,0,2,0,2,3,DIV,3,3,12 Mile,Rd,4414623,0.355,0.663,0,7.391154,5,5 +37214,-1,0.198667,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4414623,0.156,0.355,0,4.768013,3.7,5 +37213,-1,0.156164,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4414623,0,0.156,0,3.74793,3.7,5 +37212,0,0.332363,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.976715,0.15,4 +37211,0,0.01595,2,2,1,2,3,,3,3,Novi,Rd,621910,1.009,1.025,0,0.38279,5,5 +37220,1,0.027036,1,0,0,1,1,ROF,4,8,W I 96/WB Highland,RAMP,4104613,0,0.027,0,,2.24,5 +37219,0,0.024674,2,1,0,2,3,,4,8,Highland,Rd,933209,0.134,0.158,0,0.59218,3.7,5 +37218,1,0.267571,2,0,0,2,3,DIV,4,8,Highland,Rd,933209,0.532,0.8,0,6.421705,3.7,5 +37217,-1,0.489844,0,2,0,2,3,DIV,3,3,12 Mile,Rd,4414623,1.177,1.666,0,11.756252,5,5 +39715,-1,1.02651,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,0.248,1.274,0,24.636249,3.7,5 +39729,-1,0.013489,0,1,0,2,4,,4,3,White Lake,Rd,4416625,0.023,0.036,0,0.323728,4.5,4.5 +39728,-1,0.022702,0,1,0,2,4,,4,3,White Lake,Rd,4416625,0,0.023,0,0.544855,4.5,4.5 +37232,0,2.373529,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,56.964689,0.15,4 +37288,1,0.040475,2,0,0,2,4,,4,5,Geddes,Rd,1448104,5.338,5.378,0,0.971411,4.5,4.5 +37287,0,0.622694,1,1,0,2,4,,4,5,Geddes,Rd,1448104,4.716,5.338,0,14.944655,4.5,4.5 +37294,-1,0.092158,0,2,0,2,4,,4,5,Geddes,Rd,4606143,0.04,0.132,0,2.211785,4.5,4.5 +37285,0,0.49066,1,1,0,2,4,,4,5,Superior,Rd,4606142,0.164,0.655,0,11.775836,4.5,4.5 +37286,0,0.54654,1,1,0,2,4,,4,5,Superior,Rd,4606142,0.655,1.201,0,13.116953,4.5,4.5 +37226,-1,0.840562,0,2,0,2,3,DIV,5,8,Highland,Rd,4105117,0.782,1.622,0,20.173491,1.7,4 +37223,0,0.037156,2,2,1,2,3,,4,8,Grand River,Ave,932910,9.861,9.898,0,0.891755,3.7,5 +37222,0,0.116221,2,2,1,2,3,,3,8,Highland,Rd,933209,3.512,3.628,0,2.789307,5,5 +37225,-1,0.332355,0,2,0,2,3,DIV,4,8,Highland,Rd,4105117,0.45,0.782,0,7.976531,3.7,5 +37221,1,0.063964,1,0,0,1,1,ROF,4,8,W I 96/Highland,RAMP,934201,0.317,0.381,0,,2.24,5 +37224,-1,0.450071,0,2,0,2,3,DIV,4,8,Highland,Rd,4105117,0,0.45,0,10.801713,3.7,5 +37233,0,0.34242,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,8.218087,0.15,4 +37231,0,0.307223,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,7.373354,0.15,4 +37230,-1,0.394004,0,2,0,2,3,DIV,3,8,Highland,Rd,4105117,2.591,2.985,0,9.456092,5,5 +37229,-1,0.332053,0,2,0,2,3,DIV,3,8,Highland,Rd,4105117,2.259,2.591,0,7.969282,5,5 +37228,-1,0.637188,0,2,0,2,3,DIV,3,8,Highland,Rd,4105117,1.622,2.259,0,15.292518,5,5 +37227,0,2.153559,1,1,0,2,5,,5,8,Byron,Rd,933401,0.894,3.046,0,51.685427,3.7,5 +39713,0,0.201615,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.018,0.22,0,4.838768,3.7,5 +37302,1,0.415861,1,0,0,1,1,RON,4,5,Baker/E I 94,RAMP,4606001,0,0.416,0,,1.09,4 +37301,1,1.498525,3,0,0,1,1,,4,5,E I 94,,1426109,13.58,15.078,0,,0.8,7.5 +37300,0,0.176785,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.273,0.449,0,4.242848,3.7,5 +37143,-1,0.54701,0,3,0,2,3,DIV,4,3,Rochester,Rd,4406170,2.148,2.695,0,13.128243,3.7,5 +40196,-1,0.009712,0,3,0,2,3,DIV,3,3,Rochester,Rd,4406170,1.965,1.975,0,0.233084,5,5 +37139,1,0.483495,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,4.661,5.144,0,11.603873,3.7,5 +37135,1,0.016923,3,0,0,2,3,DIV,3,3,Rochester,Rd,4413538,4.46,4.477,0,0.40614,5,5 +40195,-1,0.150407,0,3,0,2,3,DIV,3,3,Rochester,Rd,4406170,1.975,2.125,0,3.609777,5,5 +37131,-1,0.017524,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,3.436,3.453,0,0.420584,5,5 +34410,0,0.093903,2,2,1,2,3,,4,3,Long Lake,Rd,641102,11.53,11.624,0,2.253679,3.7,5 +40064,-1,0.366375,0,2,0,2,3,DIV,3,3,Orchard Lake,Rd,641405,0.79,1.156,0,8.793011,5,5 +40033,-1,0.038325,0,3,0,2,3,DIV,4,3,Northwestern,Hwy,4463312,0,0.038,0,0.919806,3.7,5 +39897,1,0.167875,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,10.799,10.967,0,4.029009,3.7,5 +34414,-1,0.25901,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4416844,0,0.259,0,6.216245,3.7,5 +34415,1,0.259009,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,12.022,12.281,0,6.216208,3.7,5 +34416,1,0.302329,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,12.281,12.583,0,7.2559,3.7,5 +37378,-1,0.020087,0,1,0,2,4,,4,5,Maple,Rd,4605983,0.033,0.053,0,0.48209,4.5,4.5 +37377,1,0.010413,1,0,0,2,4,,4,5,Skyline High School,Rd,4605985,0,0.01,0,0.249919,4.5,4.5 +37376,-1,0.033038,0,1,0,2,4,,4,5,Maple,Rd,4605983,0,0.033,0,0.79292,4.5,4.5 +37306,-1,0.63587,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,2.299,2.935,0,15.260887,3.7,5 +39714,-1,0.247785,0,2,0,2,4,DIV,4,5,Jackson,Rd,5490574,0,0.248,0,5.946849,4.5,4.5 +37304,0,0.064472,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.28,6.344,0,1.547337,4.5,4.5 +37411,1,0.017516,1,0,0,2,4,,3,5,Earhart,Rd,1442503,0,0.018,0,0.420375,6,4.5 +37379,1,0.024513,1,0,0,2,4,,4,5,Maple,Rd,1452206,3.466,3.491,0,0.588304,4.5,4.5 +37380,-1,0.010268,0,1,0,2,4,,4,5,Skyline High School,Rd,4605984,0,0.01,0,0.246434,4.5,4.5 +37381,-1,0.041503,0,1,0,2,4,,4,5,Maple,Rd,4605983,0.053,0.095,0,0.996065,4.5,4.5 +37382,1,0.043092,1,0,0,2,4,,4,5,Maple,Rd,1452206,3.491,3.534,0,1.034209,4.5,4.5 +37383,0,0.065705,1,1,0,2,4,,4,5,Maple,Rd,1452206,3.534,3.599,0,1.576913,4.5,4.5 +37393,-1,0.057435,0,1,0,2,5,,5,8,Hamburg,Rd,4105274,0,0.057,0,1.378441,3.7,5 +37394,-1,0.05647,0,1,0,2,4,,5,8,Winans Lake,Rd,4105274,0.064,0.121,0,1.355287,3,4 +37395,1,0.056915,1,0,0,2,4,,5,8,Winans Lake,Rd,940105,2.035,2.092,0,1.365962,3,4 +37396,0,0.425075,1,1,0,2,4,,4,5,Huron River,Dr,1431609,12.549,12.974,0,10.2018,4.5,4.5 +37397,0,0.066458,1,1,0,2,4,,4,5,Huron River,Dr,4605101,0,0.066,0,1.594994,4.5,4.5 +37410,-1,0.014329,0,1,0,2,4,,3,5,Geddes,Rd,4606146,0.025,0.039,0,0.343887,6,4.5 +37409,-1,0.015035,0,1,0,2,4,,3,5,Earhart,Rd,4606147,0,0.015,0,0.360834,6,4.5 +37408,1,0.016243,1,0,0,2,4,,3,5,Geddes,Rd,1448104,2.838,2.855,0,0.389841,6,4.5 +37407,-1,0.025005,0,1,0,2,4,,3,5,Geddes,Rd,4606146,0,0.025,0,0.600131,6,4.5 +37402,0,0.133848,2,2,1,2,4,,4,5,Dixboro,Rd,4605100,0.381,0.515,0,3.212357,4.5,4.5 +37423,1,0.011106,1,0,0,2,5,,3,5,Nixon,Rd,1443105,0.177,0.188,0,0.266546,8,4.5 +37424,-1,0.024877,0,1,0,2,5,,3,5,Nixon,Rd,4606150,0.041,0.066,0,0.597045,8,4.5 +37425,1,0.028219,1,0,0,2,5,,3,5,Nixon,Rd,1443105,0.188,0.216,0,0.677262,8,4.5 +37426,0,0.023787,1,1,0,2,5,,3,5,Nixon,Rd,1443105,0.216,0.24,0,0.570879,8,4.5 +37418,0,0.461093,1,1,0,2,5,,3,5,Earhart,Rd,1442503,0.062,0.523,0,11.066222,8,4.5 +37427,0,0.222547,1,1,1,2,5,,3,5,Huron,Pkwy,1429602,3.805,4.028,0,5.34112,8,4.5 +40373,1,0.045036,2,0,0,2,4,,3,5,Geddes,Rd,1448104,2.998,3.043,0,1.080875,6,4.5 +37415,1,0.044535,1,0,0,2,4,,3,5,Earhart,Rd,1442503,0.018,0.062,0,1.068833,6,4.5 +37414,-1,0.04371,0,1,0,2,4,,3,5,Earhart,Rd,4606147,0.015,0.059,0,1.049034,6,4.5 +37413,-1,0.025959,0,2,0,2,4,,3,5,Geddes,Rd,4606146,0.039,0.065,0,0.623023,6,4.5 +37412,1,0.02689,1,0,0,2,4,,3,5,Geddes,Rd,1448104,2.855,2.881,0,0.645362,6,4.5 +34450,0,0.16631,1,1,1,2,4,,4,4,Utica,Rd,4211434,7.807,7.973,0,3.99144,4.5,4.5 +34451,0,0.440886,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,2.298,2.739,0,10.581271,4.5,4.5 +34452,0,0.31319,1,1,0,2,4,,4,4,Utica,Rd,4211434,7.056,7.369,0,7.516552,4.5,4.5 +37900,0,1.041114,1,1,0,2,4,,5,8,Latson,Rd,940302,0,1.041,0,24.986727,3,4 +37487,1,0.013811,2,0,0,2,4,,4,8,Lee,Rd,931610,0.257,0.271,0,0.331476,4.5,4.5 +37486,1,0.017595,2,0,0,2,4,,4,8,S US 23/Lee,Ramp,932009,0.208,0.225,0,0.422269,4.5,4.5 +37485,-1,0.027758,0,3,0,2,4,,4,8,Lee,Rd,4104575,0.089,0.116,0,0.666197,4.5,4.5 +37484,1,0.024894,3,0,0,2,4,,4,8,Lee,Rd,931610,0.232,0.257,0,0.597454,4.5,4.5 +37483,1,0.268638,1,0,0,1,2,RON,4,8,Lee/S US 23,RAMP,932008,0,0.269,0,,1.09,4 +37482,0,0.369151,1,1,1,2,4,,4,8,Whitmore Lake,Rd,932204,5.337,5.706,0,8.859628,4.5,4.5 +37481,1,0.038748,2,0,0,2,4,,4,8,Whitmore Lake,Rd,932204,5.706,5.744,0,0.92995,4.5,4.5 +37480,-1,0.04433,0,2,0,2,4,,4,8,Whitmore Lake,Rd,4104576,0,0.044,0,1.063919,4.5,4.5 +37479,1,0.116066,3,0,0,2,4,,4,8,Whitmore Lake,Rd,932204,5.763,5.879,0,2.785577,4.5,4.5 +37468,1,0.03046,1,0,0,2,4,,5,8,Kensington,Rd,942603,4.23,4.261,0,0.731052,3,4 +37467,-1,0.033705,0,1,0,2,4,,5,8,Kensington,Rd,4104578,0.052,0.086,0,0.808923,3,4 +37466,-1,0.015591,0,1,0,2,4,,5,8,Jacoby,,4102973,0.022,0.037,0,0.374194,3,4 +37465,1,0.008568,1,0,0,2,4,,5,8,Kensington,Rd,942603,4.222,4.23,0,0.205627,3,4 +37464,1,0.016809,1,0,0,2,4,,5,8,Jacoby,,943010,0.732,0.749,0,0.403406,3,4 +37463,-1,0.029937,0,1,0,2,4,,5,8,Kensington,Rd,4104578,0,0.03,0,0.71848,3,4 +37462,1,0.021285,1,0,0,2,4,,5,8,Kensington,Rd,942603,4.2,4.222,0,0.510838,3,4 +37461,-1,0.02252,0,1,0,2,4,,5,8,Kensington,Rd,4104578,0.03,0.052,0,0.540473,3,4 +37452,-1,0.029617,0,1,0,2,4,,3,8,3rd,St,4104564,0.041,0.071,0,0.710811,6,4.5 +37451,1,0.029771,1,0,0,2,4,,3,8,3rd,St,938410,0.389,0.419,0,0.714513,6,4.5 +37450,-1,0.010116,0,1,0,2,4,,3,8,3rd,St,4104564,0.031,0.041,0,0.242794,6,4.5 +37449,1,0.008816,1,0,0,2,4,,3,8,3rd,St,938410,0.38,0.389,0,0.211586,6,4.5 +37448,-1,0.030781,0,1,0,2,4,,3,8,3rd,St,4104564,0,0.031,0,0.738735,6,4.5 +37447,1,0.031812,1,0,0,2,4,,3,8,3rd,St,938410,0.348,0.38,0,0.763495,6,4.5 +37446,0,0.090687,1,1,0,2,5,,3,8,3rd,St,938410,0.258,0.348,0,2.176483,8,4.5 +37458,-1,0.167685,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,0,0.168,0,4.024447,1.7,4 +37454,-1,0.264133,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,0.168,0.432,0,6.339181,1.7,4 +37457,1,0.152188,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,12.844,12.996,0,3.652503,1.7,4 +37442,0,0.083266,1,1,0,2,4,,3,8,Main,St,940301,4.368,4.452,0,1.998383,6,4.5 +37441,-1,0.036509,0,1,0,2,4,,3,8,Main,St,4104563,0.043,0.079,0,0.876208,6,4.5 +37440,1,0.03608,1,0,0,2,4,,3,8,Main,St,940301,4.332,4.368,0,0.865923,6,4.5 +37439,-1,0.011167,0,1,0,2,4,,3,8,Main,St,4104563,0.031,0.043,0,0.268008,6,4.5 +37438,1,0.011082,1,0,0,2,4,,3,8,Main,St,940301,4.321,4.332,0,0.265957,6,4.5 +37434,0,0.348467,1,1,1,2,7,,3,5,Huron,Pkwy,1429602,4.097,4.445,0,8.363203,7,4.5 +37433,-1,0.026337,0,1,0,2,5,,3,5,Huron,Pkwy,1429602,4.071,4.097,0,0.632078,8,4.5 +37432,1,0.022976,1,0,0,2,5,,3,5,Huron,Pkwy,4606151,0.044,0.067,0,0.551431,8,4.5 +37431,-1,0.014455,0,1,0,2,5,,3,5,Huron,Pkwy,1429602,4.056,4.071,0,0.346911,8,4.5 +37430,1,0.011418,1,0,0,2,5,,3,5,Huron,Pkwy,4606151,0.033,0.044,0,0.274023,8,4.5 +34491,0,0.252438,2,2,0,2,7,,4,3,American,Dr,686915,0,0.252,0,6.058519,6.55,4.5 +34492,0,0.386541,1,1,1,2,7,,4,3,American,Dr,686915,0.252,0.639,0,9.276975,6.55,4.5 +37503,-1,0.083072,0,1,0,2,6,,5,8,Fieldcrest,Dr,4104413,0,0.083,0,1.993739,5.8,6 +37502,1,0.07653,1,0,0,2,6,,5,8,Fieldcrest,Dr,4105311,4.298,4.374,0,1.836727,5.8,6 +37501,1,0.021229,1,0,0,2,4,,5,8,Lee/N US 23,Ramp,4104572,0,0.021,0,0.509497,3,4 +37500,1,0.025836,2,0,0,2,4,,5,8,Lee,Rd,931610,0.416,0.442,0,0.62007,3,4 +37499,-1,0.026867,0,2,0,2,4,,5,8,Lee,Rd,4104410,0.054,0.08,0,0.644801,3,4 +37498,-1,0.022293,0,1,0,2,4,,5,8,N US 23/Lee,Ramp,931701,0.213,0.235,0,0.535026,3,4 +37497,-1,0.053507,0,2,0,2,4,,5,8,Lee,Rd,4104410,0,0.054,0,1.284164,3,4 +37496,1,0.053363,2,0,0,2,4,,5,8,Lee,Rd,931610,0.363,0.416,0,1.280704,3,4 +37506,0,0.206232,1,1,1,2,5,,4,4,Callens,Rd,814710,1.385,1.591,0,4.949558,5.8,4.5 +40602,1,0.013897,3,0,0,1,3,DIV,3,1,Davison,St,4702009,5.305,5.319,0,,5,5 +37493,0,0.041189,1,1,0,2,4,,4,8,Lee,Rd,931610,0.322,0.363,0,0.988533,4.5,4.5 +34505,1,0.446341,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.078,0.524,0,10.71218,4.5,4.5 +34506,-1,0.464848,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.079,0.543,0,11.156354,4.5,4.5 +34507,1,0.067863,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0,0.068,0,1.628709,4.5,4.5 +34508,-1,0.067922,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0,0.068,0,1.630138,4.5,4.5 +34509,-1,0.034871,0,1,0,2,5,,4,3,Squirrel,Ct,4414556,0,0.035,0,0.836896,5.8,4.5 +34510,-1,0.012081,0,1,0,2,4,,4,3,Squirrel,Ct,4414556,0.035,0.047,0,0.289936,4.5,4.5 +39894,-1,0.63381,0,2,0,2,4,DIV,4,3,Sashabaw,Rd,4416849,0.273,0.906,0,15.211435,4.5,4.5 +39893,-1,0.272576,0,2,0,2,4,DIV,4,3,Sashabaw,Rd,4416849,0,0.273,0,6.541814,4.5,4.5 +39892,0,0.061654,2,2,1,2,4,,4,3,Sashabaw,Rd,697309,3.797,3.858,0,1.47969,4.5,4.5 +39891,1,0.208734,2,0,0,2,4,DIV,4,3,Sashabaw,Rd,697309,2.89,3.099,0,5.009605,4.5,4.5 +37505,1,0.212588,1,0,0,1,2,ROF,5,8,N US 23/Lee,RAMP,931701,0,0.213,0,,2.24,5 +37504,1,0.327882,1,0,0,1,2,RON,5,8,Lee/N US 23,RAMP,4104572,0.021,0.349,0,,1.09,4 +37535,1,0.019814,1,0,0,2,4,,4,4,Dodge Park,Rd,812702,2.76,2.779,0,0.475538,4.5,4.5 +37534,-1,0.018452,0,2,0,2,4,,4,4,Utica,Rd,4211012,0.221,0.239,0,0.442848,4.5,4.5 +37533,1,0.016986,2,0,0,2,4,,4,4,Utica,Rd,4211434,7.595,7.612,0,0.407667,4.5,4.5 +37532,-1,0.027952,0,1,0,2,4,,4,4,Dodge Park,Rd,4211013,0.031,0.059,0,0.670848,4.5,4.5 +37531,1,0.19431,2,0,0,2,4,DIV,4,4,Utica,Rd,4211434,7.612,7.807,0,4.663433,4.5,4.5 +37530,-1,0.195749,0,2,0,2,4,DIV,4,4,Utica,Rd,4211012,0.239,0.435,0,4.697968,4.5,4.5 +37518,1,0.090268,1,0,0,2,5,,4,4,WB 18 1/2 Mile/NB Mound Cutoff,,4210493,0,0.09,0,2.166425,5.8,4.5 +37514,0,0.267776,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.426628,0.15,4 +37513,0,0.563632,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.527177,0.15,4 +37512,-1,0.49652,0,2,0,2,4,DIV,4,4,19 Mile,Rd,4211579,0.372,0.869,0,11.916483,4.5,4.5 +37511,-1,0.37243,0,2,0,2,4,DIV,4,4,19 Mile,Rd,4211579,0,0.372,0,8.938316,4.5,4.5 +37510,0,0.068044,2,2,0,2,4,,4,4,19 Mile,Rd,805301,1.932,2,0,1.63305,4.5,4.5 +37509,1,0.373058,2,0,0,2,4,DIV,4,4,19 Mile,Rd,805301,1.064,1.437,0,8.953385,4.5,4.5 +37542,-1,0.026404,0,2,0,2,3,,4,4,Cass,Ave,819209,0,0.026,0,0.633688,3.7,5 +37543,1,0.026945,2,0,0,2,3,,4,4,Cass,Ave,4212030,0,0.027,0,0.646679,3.7,5 +37508,-1,0.110398,0,1,0,2,7,,4,4,Callens Cutoff,,4212020,0,0.11,0,2.649552,6.55,4.5 +37547,1,0.018162,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.603,1.621,0,0.4359,3.7,5 +37546,-1,0.016575,0,1,0,2,3,,4,4,Romeo Plank,Rd,4212032,0.033,0.05,0,0.397804,3.7,5 +37545,1,0.0247,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.621,1.646,0,0.592806,3.7,5 +37544,-1,0.029229,0,2,0,2,3,,4,4,Romeo Plank,Rd,4212031,0.02,0.049,0,0.701507,3.7,5 +39796,0,0.388025,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.312603,0.15,4 +39795,0,0.601429,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.434299,0.15,4 +39794,-1,0.062286,0,2,0,2,4,DIV,4,3,Joslyn,Rd,4463372,0.298,0.36,0,1.494852,4.5,4.5 +39793,-1,0.011121,0,2,0,2,4,DIV,4,3,Joslyn,Rd,4463372,0.287,0.298,0,0.266894,4.5,4.5 +39785,1,0.163709,2,0,0,2,4,RSF,4,3,Joslyn/Brown Cutoff,,4410164,0,0.164,0,3.929008,4.5,4.5 +39784,0,0.441791,1,1,0,2,4,,4,3,Joslyn,Rd,674110,3.97,4.411,0,10.602974,4.5,4.5 +39783,0,0.322014,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.728341,0.15,4 +39782,-1,0.290817,0,2,0,2,3,DIV,4,2,Beck,Rd,4718968,0.702,0.992,0,6.979618,3.7,5 +39781,-1,0.701735,0,2,0,2,3,DIV,4,2,Beck,Rd,4718968,0,0.702,0,16.841648,3.7,5 +39718,0,0.953661,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.887859,0.15,4 +39717,0,0.2115,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.075995,0.15,4 +39716,0,1.230302,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,29.527247,0.15,4 +34549,0,2.000256,1,1,0,2,5,,4,2,Denton,Rd,1599103,2.077,4.077,0,48.006145,5.8,4.5 +37558,-1,0.016242,0,2,0,2,3,,4,4,19 Mile,Rd,4212029,0.033,0.049,0,0.389811,3.7,5 +37557,-1,0.015356,0,2,0,2,3,,4,4,Romeo Plank,Rd,4212028,0.026,0.042,0,0.368534,3.7,5 +37556,-1,0.032508,0,2,0,2,3,,4,4,19 Mile,Rd,4212029,0,0.033,0,0.780201,3.7,5 +37555,1,0.033046,3,0,0,2,3,,4,4,19 Mile,Rd,802506,2.516,2.549,0,0.793099,3.7,5 +37554,1,0.023549,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.722,1.746,0,0.565168,3.7,5 +37553,-1,0.026463,0,2,0,2,3,,4,4,Romeo Plank,Rd,4212028,0,0.026,0,0.635101,3.7,5 +37552,1,0.028708,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.769,1.798,0,0.689,3.7,5 +37551,-1,0.032098,0,2,0,2,3,,4,4,Romeo Plank,Rd,4212028,0.042,0.074,0,0.770341,3.7,5 +37550,0,0.076058,2,2,1,2,3,,4,4,Romeo Plank,Rd,819207,1.646,1.722,0,1.825389,3.7,5 +37549,-1,0.020114,0,2,0,2,3,,4,4,Romeo Plank,Rd,4212031,0,0.02,0,0.482742,3.7,5 +39889,-1,0.341067,0,2,0,2,4,,4,4,Hayes,Rd,4212090,0,0.341,0,8.185606,4.5,4.5 +39888,1,0.182666,2,0,0,2,4,,4,4,Hayes,Rd,4208921,2.629,2.811,0,4.383979,4.5,4.5 +39840,1,0.03053,2,0,0,2,3,,4,3,Martin,Pkwy,4403012,1.17,1.2,0,0.73271,3.7,5 +39841,-1,0.034148,0,2,0,2,3,,4,3,Martin,Pkwy,4416635,0.905,0.939,0,0.819547,3.7,5 +39842,1,0.091247,1,0,0,2,3,,4,3,N Pontiac Trl/S M 5 Cutoff,,5492455,0,0.091,0,2.189934,3.7,5 +39843,1,0.075901,1,0,0,2,3,,4,3,N M 5/N Pontiac Trl Cutoff,,5492460,0,0.076,0,1.821613,3.7,5 +34566,1,0.252125,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.615,10.867,0,6.050989,3.7,5 +34567,1,0.019342,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.596,10.615,0,0.464212,3.7,5 +37515,0,0.119668,2,2,1,2,5,,4,4,18 1/2 Mile,Rd,4210491,0,0.12,0,2.872034,5.8,4.5 +37516,0,0.154175,2,2,1,2,5,,4,4,18 1/2 Mile,Rd,4210491,0.12,0.274,0,3.70019,5.8,4.5 +37607,1,0.014724,1,0,0,2,3,RSF,4,3,Adams/E M 59,RAMP,4462969,0,0.015,0,0.353367,3.7,5 +37598,-1,0.180134,0,2,0,2,3,DIV,4,3,Adams,Rd,4415855,0.619,0.799,0,4.323209,3.7,5 +37606,1,0.014917,1,0,0,2,3,RSF,4,3,E M 59/Adams,RAMP,4462965,0.376,0.391,0,0.358014,3.7,5 +37563,0,0.563891,1,1,0,2,4,,4,3,Dutton,Rd,626101,0,0.564,0,13.533378,4.5,4.5 +37594,-1,0.015312,0,2,0,2,3,DIV,4,3,Adams,Rd,4462960,0,0.015,0,0.367491,3.7,5 +37595,-1,0.074371,0,2,0,2,3,DIV,4,3,Adams,Rd,4415855,0.799,0.873,0,1.784898,3.7,5 +37562,0,0.503677,1,1,0,2,4,,4,3,Dutton,Rd,4462954,0,0.504,0,12.088248,4.5,4.5 +37605,1,0.375901,1,0,0,1,2,ROF,4,3,E M 59/Adams,RAMP,4462965,0,0.376,0,,2.24,5 +37560,1,0.015794,2,0,0,2,3,,4,4,19 Mile,Rd,802506,2.549,2.565,0,0.379058,3.7,5 +37559,1,0.023314,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.746,1.769,0,0.559526,3.7,5 +34586,1,0.299714,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,0.695,0.994,0,7.193127,4.5,4.5 +37579,1,0.193126,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,1.176,1.369,0,4.635033,4.5,4.5 +37581,1,0.614936,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,1.385,1.999,0,14.758452,4.5,4.5 +37578,1,0.181814,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,0.994,1.176,0,4.363536,4.5,4.5 +37564,1,0.673308,3,0,0,1,2,,4,3,E M 59,,648906,25.079,25.752,0,,0.8,7.5 +34591,1,0.446899,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,1.999,2.446,0,10.725566,4.5,4.5 +34592,-1,0.103148,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,0,0.103,0,2.475561,4.5,4.5 +34593,-1,0.431176,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,0.103,0.534,0,10.348232,4.5,4.5 +34594,0,0.209939,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.038525,0.15,4 +37576,-1,0.155135,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,1.003,1.158,0,3.723229,4.5,4.5 +34596,-1,0.160137,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,0.534,0.694,0,3.84329,4.5,4.5 +34597,-1,0.308674,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,0.694,1.003,0,7.408168,4.5,4.5 +34598,0,0.597844,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.348263,0.15,4 +34599,0,0.126908,1,1,0,2,3,,4,3,Adams,Rd,4415861,8.464,8.591,0,3.0458,3.7,5 +34601,-1,0.015543,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,1.372,1.388,0,0.373028,4.5,4.5 +37577,-1,0.214435,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,1.158,1.372,0,5.146436,4.5,4.5 +34603,-1,0.189566,0,2,0,2,3,DIV,4,3,Adams,Rd,4462960,0.015,0.205,0,4.549588,3.7,5 +37572,-1,0.760487,0,3,0,1,2,,4,3,W M 59,,677208,3.572,4.332,0,,0.8,7.5 +34605,1,0.185462,2,0,0,2,3,DIV,4,3,Adams,Rd,4415861,8.279,8.464,0,4.451077,3.7,5 +34606,-1,0.611972,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,1.388,2,0,14.687327,4.5,4.5 +34607,-1,0.443789,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,2,2.443,0,10.650933,4.5,4.5 +34608,0,0.33924,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.141767,0.15,4 +37584,0,0.300019,2,2,1,2,3,,4,3,Adams,Rd,4415861,7.066,7.366,0,7.200466,3.7,5 +37585,1,0.502123,2,0,0,2,3,DIV,4,3,Adams,Rd,4415861,7.366,7.868,0,12.050956,3.7,5 +37608,1,0.06521,1,0,0,1,2,RON,4,3,Adams/E M 59,RAMP,4462969,0.015,0.08,0,,1.09,4 +37589,1,0.310481,2,0,0,2,3,DIV,4,3,Adams,Rd,4415861,7.868,8.179,0,7.451539,3.7,5 +37609,1,0.122751,1,0,0,1,2,RON,4,3,Adams/E M 59,RAMP,4462966,0,0.123,0,,1.09,4 +37569,1,0.342994,3,0,0,1,2,,4,3,E M 59,,648906,25.752,26.095,0,,0.8,7.5 +37580,1,0.015426,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,1.369,1.385,0,0.37023,4.5,4.5 +37618,0,0.205962,2,2,1,2,4,,4,3,Old Wixom,Rd,639101,4.173,4.379,0,4.943092,4.5,4.5 +37582,0,0.381571,2,2,1,2,3,,4,3,Adams,Rd,4415861,6.685,7.066,0,9.157713,3.7,5 +34618,1,0.869259,3,0,0,1,2,,4,3,E M 59,,648906,26.095,26.964,0,,0.8,7.5 +34619,-1,0.861417,0,3,0,1,2,,4,3,W M 59,,677208,4.665,5.526,0,,0.8,7.5 +37672,1,0.021906,1,0,0,2,4,,4,3,Cooley Lake,Rd,4416312,0.056,0.078,0,0.525738,4.5,4.5 +37671,1,0.050664,1,0,0,2,4,,4,3,Bogie Lake,Rd,630101,0.04,0.09,0,1.215946,4.5,4.5 +37670,1,0.056314,2,0,0,2,4,,4,3,Bogie Lake,Rd,4416312,0,0.056,0,1.351529,4.5,4.5 +37665,1,0.203158,1,0,0,1,1,ROF,4,3,E I 696/American,RAMP,4415716,0,0.203,0,,2.24,5 +37664,1,0.195881,1,0,0,1,1,RON,4,3,Franklin/W I 696,RAMP,4415717,0,0.196,0,,1.09,4 +37669,1,0.038292,2,0,0,2,4,,4,3,Bogie Lake,Rd,630007,1,1.039,0,0.919009,4.5,4.5 +37660,0,0.185047,2,2,1,2,4,,4,3,Franklin,Rd,638109,0.556,0.741,0,4.441135,4.5,4.5 +37659,0,0.04554,2,2,1,2,4,,4,3,Franklin,Rd,638109,0.51,0.556,0,1.092958,4.5,4.5 +37657,0,0.072039,2,2,1,2,9,,4,3,Franklin,Rd,4463267,0.133,0.205,0,1.728946,6.55,4.5 +37658,0,0.273275,2,2,1,2,4,,4,3,Franklin,Rd,638109,0.237,0.51,0,6.558595,4.5,4.5 +37655,0,0.024588,2,2,1,2,9,,4,3,Franklin,Rd,4463267,0.108,0.133,0,0.590105,6.55,4.5 +37654,0,0.1083,2,2,1,2,9,,4,3,Franklin,Rd,4463267,0,0.108,0,2.599212,6.55,4.5 +37652,0,0.237016,1,1,1,2,4,,4,3,Franklin,Rd,638109,0,0.237,0,5.688376,4.5,4.5 +37653,0,0.441103,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.821,11.261,0,10.586469,3.7,5 +37644,-1,0.50337,0,4,0,1,1,,4,3,W I 696,,710702,7.49,7.993,0,,0.8,7.5 +37643,1,0.399402,4,0,0,1,1,,4,3,E I 696,,710701,7.364,7.763,0,,0.8,7.5 +37642,-1,0.023335,0,1,0,2,4,,5,3,Baldwin,Rd,4415709,0,0.023,0,0.560043,3,4 +37641,-1,0.024518,0,1,0,2,4,,5,3,Coats,Rd,4415708,0,0.025,0,0.588422,3,4 +37640,1,0.025037,2,0,0,2,4,,5,3,Coats,Rd,4410047,0,0.025,0,0.600885,3,4 +37639,1,0.023808,2,0,0,2,4,,5,3,Baldwin,Rd,4415710,0,0.024,0,0.571401,3,4 +37638,1,0.039485,1,0,0,2,4,,5,3,Indianwood,Rd,655208,0,0.039,0,0.94763,3,4 +37637,-1,0.038087,0,1,0,2,4,,5,3,Indianwood,Rd,4411504,0,0.038,0,0.9141,3,4 +37636,1,0.041608,1,0,0,2,4,,5,3,Coats,Rd,4410047,0.025,0.067,0,0.998598,3,4 +37619,0,0.210953,2,2,1,2,3,,4,3,Wixom,Rd,4414552,0,0.211,0,5.062877,3.7,5 +37615,1,0.023112,1,0,0,2,4,RSF,4,3,W M 59/Hamlin,RAMP,4462968,0.281,0.304,0,0.554689,4.5,4.5 +37604,-1,0.492531,0,2,0,2,3,DIV,4,3,Adams,Rd,4415855,0,0.492,0,11.820747,3.7,5 +37617,1,0.319693,1,0,0,1,2,RON,4,3,Adams/W M 59,RAMP,4462967,0.016,0.336,0,,1.09,4 +37616,1,0.01601,1,0,0,2,3,RSF,4,3,Adams/W M 59,RAMP,4462967,0,0.016,0,0.384228,3.7,5 +37601,-1,0.006768,0,2,0,2,3,DIV,4,3,Adams,Rd,4415855,0.492,0.499,0,0.162429,3.7,5 +37600,-1,0.11972,0,2,0,2,3,DIV,4,3,Adams,Rd,4415855,0.499,0.619,0,2.873283,3.7,5 +37715,-1,0.040964,0,3,0,2,3,,4,3,Maple,Rd,4415862,0.071,0.112,0,0.983137,3.7,5 +37705,0,0.296304,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,4.321,4.618,0,7.111289,3.7,5 +37704,0,0.096402,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,4.225,4.321,0,2.31364,3.7,5 +37703,-1,0.110667,0,2,0,2,3,DIV,4,3,Williams Lake,Rd,4463013,0.764,0.875,0,2.656019,3.7,5 +37702,1,0.271222,2,0,0,2,3,DIV,4,3,Williams Lake,Rd,4463020,3.954,4.225,0,6.509337,3.7,5 +37707,0,0.323903,1,1,1,2,3,,4,3,Maple,Rd,683906,4.324,4.647,0,7.773678,3.7,5 +37711,-1,0.040663,0,2,0,2,3,,4,3,Drake,Rd,4415863,0.065,0.106,0,0.97592,3.7,5 +37699,-1,0.179059,0,2,0,2,3,DIV,4,3,Williams Lake,Rd,4463013,0.585,0.764,0,4.297416,3.7,5 +37708,0,0.497276,1,1,0,2,4,,4,3,Drake,Rd,633804,6.269,6.766,0,11.934623,4.5,4.5 +37712,1,0.041981,2,0,0,2,3,,4,3,Drake,Rd,633804,6.227,6.269,0,1.007544,3.7,5 +37696,1,0.020969,1,0,0,2,3,,4,3,Williams Lake,Rd,4463017,0,0.021,0,0.50325,3.7,5 +37695,1,0.074618,2,0,0,2,3,DIV,4,3,Williams Lake,Rd,4463020,3.879,3.954,0,1.790823,3.7,5 +37685,1,0.049285,1,0,0,2,5,,4,3,Oxbow Lake,Rd,630010,0.01,0.06,0,1.182833,5.8,4.5 +37684,-1,0.041365,0,1,0,2,5,,4,3,Oxbow Lake,Rd,4415869,0.02,0.062,0,0.99276,5.8,4.5 +37683,-1,0.024882,0,1,0,2,5,,4,3,Cooley Lake,Rd,4415868,0.088,0.113,0,0.597169,5.8,4.5 +37682,1,0.022293,1,0,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.156,0.178,0,0.535027,5.8,4.5 +37681,1,0.021151,1,0,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.135,0.156,0,0.507624,5.8,4.5 +37680,1,0.010434,1,0,0,2,5,,4,3,Oxbow Lake,Rd,630010,0,0.01,0,0.250417,5.8,4.5 +37679,-1,0.025516,0,1,0,2,5,,4,3,Cooley Lake,Rd,4415868,0.063,0.088,0,0.612378,5.8,4.5 +37678,-1,0.020385,0,1,0,2,5,,4,3,Oxbow Lake,Rd,4415869,0,0.02,0,0.489229,5.8,4.5 +37677,1,0.056274,1,0,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.078,0.135,0,1.350573,5.8,4.5 +37676,-1,0.062535,0,1,0,2,5,,4,3,Cooley Lake,Rd,4415868,0,0.063,0,1.50085,5.8,4.5 +37675,1,0.018988,1,0,0,2,4,,4,3,Bogie Lake,Rd,630101,0.021,0.04,0,0.455712,4.5,4.5 +37674,1,0.020596,1,0,0,2,4,,4,3,Bogie Lake,Rd,630101,0,0.021,0,0.494312,4.5,4.5 +37673,1,0.016248,1,0,0,2,4,,4,3,Cooley Lake,Rd,4415867,0,0.016,0,0.389947,4.5,4.5 +37722,0,0.340889,1,1,0,2,4,,4,3,Farmington,Rd,634005,5.463,5.804,0,8.181339,4.5,4.5 +37727,-1,0.035209,0,2,0,2,3,,4,3,Maple,Rd,4415865,0.05,0.085,0,0.845006,3.7,5 +37720,-1,0.03143,0,2,0,2,3,,4,3,Maple,Rd,4415862,0.04,0.071,0,0.754315,3.7,5 +37719,1,0.029191,2,0,0,2,3,,4,3,Drake,Rd,633804,6.198,6.227,0,0.700584,3.7,5 +37718,1,0.033271,2,0,0,2,3,,4,3,Maple,Rd,683906,4.249,4.282,0,0.798507,3.7,5 +37717,-1,0.028199,0,2,0,2,3,,4,3,Drake,Rd,4415863,0.037,0.065,0,0.676771,3.7,5 +37713,1,0.03667,3,0,0,2,3,,4,3,Maple,Rd,683906,4.212,4.249,0,0.880086,3.7,5 +37714,-1,0.039803,0,2,0,2,3,,4,3,Maple,Rd,4415862,0,0.04,0,0.955274,3.7,5 +37744,-1,0.049973,0,2,0,2,3,,4,3,Farmington,Rd,4416317,0.074,0.124,0,1.199349,3.7,5 +37743,1,0.052991,2,0,0,2,3,,4,3,Farmington,Rd,634005,4.396,4.449,0,1.271774,3.7,5 +37739,1,0.0441,2,0,0,2,3,,4,3,Farmington,Rd,634005,4.321,4.365,0,1.058388,3.7,5 +37738,0,0.343512,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,1.22,1.564,0,8.244283,3.7,5 +37737,0,0.270704,1,1,0,2,4,,4,3,Farmington,Rd,634005,4.449,4.72,0,6.496899,4.5,4.5 +37740,-1,0.043037,0,2,0,2,3,,4,3,Farmington,Rd,4416317,0,0.043,0,1.032878,3.7,5 +37735,1,0.052806,2,0,0,2,3,,4,3,Farmington,Rd,634005,5.41,5.463,0,1.267337,3.7,5 +37734,-1,0.049979,0,3,0,2,3,,4,3,Farmington,Rd,4415864,0.077,0.127,0,1.199485,3.7,5 +37733,1,0.046729,2,0,0,2,3,,4,3,Farmington,Rd,634005,5.335,5.382,0,1.121489,3.7,5 +37732,-1,0.04518,0,2,0,2,3,,4,3,Farmington,Rd,4415864,0,0.045,0,1.084314,3.7,5 +37731,-1,0.032243,0,2,0,2,3,,4,3,Farmington,Rd,4415864,0.045,0.077,0,0.773833,3.7,5 +37730,1,0.028322,2,0,0,2,3,,4,3,Farmington,Rd,634005,5.382,5.41,0,0.679729,3.7,5 +37729,-1,0.068439,0,3,0,2,3,,4,3,Maple,Rd,4415865,0.085,0.153,0,1.642528,3.7,5 +37728,1,0.067359,2,0,0,2,3,,4,3,Maple,Rd,683906,5.3,5.367,0,1.616605,3.7,5 +37724,1,0.050832,3,0,0,2,3,,4,3,Maple,Rd,683906,5.213,5.264,0,1.219968,3.7,5 +37723,0,0.233057,1,1,1,2,3,,4,3,Maple,Rd,683906,5.367,5.6,0,5.593357,3.7,5 +40136,-1,0.017121,0,1,0,2,4,,4,3,Pontiac,Trl,4416654,0.026,0.043,0,0.410895,4.5,4.5 +40137,1,0.017301,1,0,0,2,4,,4,3,Lyon Center,Dr,4414237,0,0.017,0,0.415225,4.5,4.5 +40138,-1,0.019341,0,1,0,2,4,,4,3,Pontiac,Trl,4416654,0.043,0.063,0,0.464187,4.5,4.5 +40139,1,0.020965,1,0,0,2,4,,4,3,Pontiac,Trl,656507,6.784,6.805,0,0.503163,4.5,4.5 +40140,1,0.024594,1,0,0,2,4,,4,3,Lyon Center,Dr,1825504,0.343,0.368,0,0.59025,4.5,4.5 +40145,1,0.048866,2,0,0,2,4,,4,3,Grand River,Ave,4104142,3.511,3.56,0,1.172783,4.5,4.5 +37189,0,0.064512,2,2,1,2,3,,4,3,Beck,Rd,656605,3.889,3.954,0,1.548279,3.7,5 +40142,-1,0.026073,0,1,0,2,4,,4,3,Lyon Center,Dr,4416653,0,0.026,0,0.625757,4.5,4.5 +40141,1,0.016423,1,0,0,2,4,,4,3,Pontiac,Trl,656507,6.768,6.784,0,0.394144,4.5,4.5 +40144,0,0.274299,1,1,1,2,4,,4,3,Grand River,Ave,4104142,3.61,3.885,0,6.583166,4.5,4.5 +39848,0,0.377689,1,1,0,2,4,,4,3,Welch,Rd,4403557,1.038,1.415,0,9.064529,4.5,4.5 +37934,1,0.020794,2,0,0,2,4,RSF,4,3,W M 59/Squirrel,RAMP,4462970,0.309,0.329,0,0.49905,4.5,4.5 +37935,1,0.349813,1,0,0,1,2,RON,4,3,Squirrel/W M 59,RAMP,4462971,0,0.35,0,,1.09,4 +37944,1,0.093677,3,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.781,1.874,0,2.248249,3.7,5 +37925,1,0.045178,1,0,0,2,5,,1,1,Fisher Crossover,,1803905,0,0.045,0,1.084275,8.5,4.5 +37927,1,0.737758,1,0,0,1,1,ROF,5,6,S I 75/Summit,RAMP,4302985,0,0.738,0,,2.24,5 +37923,1,0.014861,1,0,0,1,1,ROF,1,1,S I 75/Grand River,RAMP,1595307,0.108,0.122,0,,3.07,5 +37922,1,0.111344,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.14,0.251,0,2.672251,8.5,4.5 +37921,1,0.044599,1,0,0,2,5,,1,1,2nd/Fisher Cutoff,,4707199,0,0.045,0,1.070388,8.5,4.5 +37920,1,0.007363,3,0,0,2,5,,1,1,2nd,St,4718974,0.109,0.116,0,0.176717,8.5,4.5 +37919,-1,0.043462,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.29,0.333,0,1.043082,8.5,4.5 +37918,0,0.02024,1,1,0,2,5,,3,2,Howe,Rd,4712012,1.017,1.038,0,0.485771,8,4.5 +37917,-1,0.498443,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,9.352,9.851,0,11.962634,5,5 +37916,1,0.017662,2,0,0,2,3,RSF,4,2,Sheldon/M 14,RAMP,4712090,0,0.018,0,0.423882,5,5 +37915,1,0.017102,2,0,0,2,3,RSF,4,2,W M 14/Sheldon,RAMP,1778207,0.426,0.443,0,0.410437,5,5 +37914,-1,0.08234,0,3,0,2,3,DIV,4,2,Sheldon,Rd,4704692,0.316,0.398,0,1.976168,3.7,5 +37913,-1,0.044346,0,3,0,2,3,DIV,4,2,Sheldon,Rd,4704692,0.271,0.316,0,1.064315,3.7,5 +37190,0,0.058476,2,2,1,2,3,,4,3,Beck,Rd,656605,3.954,4.012,0,1.403435,3.7,5 +37912,0,0.021532,1,1,0,2,3,,4,2,E Michigan/Beck,TURN,4710680,0,0.022,0,0.516772,3.7,5 +37188,0,0.046082,2,2,1,2,3,,4,3,Beck,Rd,656605,3.843,3.889,0,1.105964,3.7,5 +37911,1,0.838442,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,2.41,3.248,0,20.122609,3.7,5 +37757,1,0.280666,2,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.611,1.892,0,6.735994,3.7,5 +39854,-1,0.115467,0,2,0,2,3,DIV,4,3,West Maple,Rd,4416612,0.775,0.89,0,2.771213,3.7,5 +39856,-1,0.217876,0,2,0,2,4,DV2,1,1,3rd,St,4718979,0,0.218,0,5.229014,8,4.5 +37754,1,0.150952,3,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.37,1.521,0,3.622838,3.7,5 +39851,1,0.025025,2,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.521,1.546,0,0.600588,3.7,5 +37752,1,0.209454,2,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.001,1.211,0,5.026889,3.7,5 +37750,-1,0.070456,0,3,0,2,3,,4,3,14 Mile,Rd,4416316,0,0.07,0,1.69095,3.7,5 +37749,1,0.068189,3,0,0,2,3,,4,3,14 Mile,Rd,5500000,1.069,1.137,0,1.63653,3.7,5 +37748,-1,0.035263,0,3,0,2,3,,4,3,14 Mile,Rd,4416316,0.07,0.106,0,0.846308,3.7,5 +37747,1,0.034024,3,0,0,2,3,,4,3,14 Mile,Rd,5500000,1.137,1.171,0,0.816571,3.7,5 +37746,-1,0.047415,0,3,0,2,3,,4,3,14 Mile,Rd,4416316,0.106,0.153,0,1.137964,3.7,5 +37745,1,0.04948,3,0,0,2,3,,4,3,14 Mile,Rd,5500000,1.171,1.22,0,1.187528,3.7,5 +40135,1,0.025373,1,0,0,2,4,,4,3,Lyon Center,Dr,4414237,0.017,0.043,0,0.608945,4.5,4.5 +40134,-1,0.024829,0,1,0,2,4,,4,3,Lyon Center,Dr,4416653,0.044,0.069,0,0.595906,4.5,4.5 +40133,-1,0.017609,0,1,0,2,4,,4,3,Lyon Center,Dr,4416653,0.026,0.044,0,0.422618,4.5,4.5 +40132,-1,0.026245,0,1,0,2,4,,4,3,Pontiac,Trl,4416654,0,0.026,0,0.629873,4.5,4.5 +40131,1,0.021386,1,0,0,2,4,,4,3,Pontiac,Trl,656507,6.746,6.768,0,0.513267,4.5,4.5 +40130,0,0.297307,1,1,0,2,4,,4,3,Pontiac,Trl,656507,6.805,7.102,0,7.13537,4.5,4.5 +37492,-1,0.051217,0,2,0,2,4,,4,8,Lee,Rd,4104575,0.132,0.183,0,1.229208,4.5,4.5 +37491,1,0.051392,2,0,0,2,4,,4,8,Lee,Rd,931610,0.271,0.322,0,1.233402,4.5,4.5 +37490,1,0.207799,1,0,0,1,2,ROF,4,8,S US 23/Lee,RAMP,932009,0,0.208,0,,2.24,5 +37489,-1,0.015463,0,2,0,2,4,,4,8,Lee,Rd,4104575,0.116,0.132,0,0.371101,4.5,4.5 +37488,1,0.025451,1,0,0,2,4,,4,8,EB Lee/WB Lee,TURN,4104577,0,0.026,0,0.610815,4.5,4.5 +39320,0,0.557463,1,1,0,2,5,,4,2,Denton,Rd,1599103,4.077,4.634,0,13.379106,5.8,4.5 +40154,-1,0.029251,0,2,0,2,4,,4,3,Grand River,Ave,4416578,0.071,0.101,0,0.702024,4.5,4.5 +40129,-1,0.060784,0,1,0,2,5,,3,2,Levan,Rd,4719309,0,0.061,0,1.458813,8,4.5 +40174,0,0.211409,1,1,1,2,5,,4,3,Lyon Center,Dr,4414237,0.043,0.254,0,5.07381,5.8,4.5 +40181,-1,0.017362,0,1,0,2,5,,5,8,Hartland Square,Dr,4105286,0,0.017,0,0.416684,3.7,5 +40177,0,0.827456,1,1,1,2,5,,4,3,Lyon Center,Dr,4414238,0,0.827,0,19.858947,5.8,4.5 +40180,1,0.026563,1,0,0,2,5,,5,8,Hartland,Rd,4105285,0.046,0.072,0,0.6375,3.7,5 +40179,-1,0.028236,0,1,0,2,5,,5,8,Hartland,Rd,4105279,0.4,0.428,0,0.677654,3.7,5 +40182,1,0.019698,1,0,0,2,5,,5,8,Hartland,Rd,4105285,0.026,0.046,0,0.472747,3.7,5 +40955,1,0.057515,1,0,0,2,4,,4,3,Napier,Rd,0,0,0,0,1.380367,4.5,4.5 +40147,-1,0.020297,0,2,0,2,4,,4,3,New Hudson,Dr,4416579,0.029,0.049,0,0.487126,4.5,4.5 +40148,-1,0.019341,0,2,0,2,4,,4,3,Grand River,Ave,4416578,0.052,0.071,0,0.46419,4.5,4.5 +40149,1,0.018899,2,0,0,2,4,,4,3,Grand River,Ave,4104142,3.56,3.578,0,0.453571,4.5,4.5 +40150,-1,0.029192,0,2,0,2,4,,4,3,Lyon Center,Dr,4416579,0,0.029,0,0.700608,4.5,4.5 +34767,0,0.237673,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,0.515,0.753,0,5.704153,4.5,4.5 +40151,1,0.023219,2,0,0,2,4,,4,3,Lyon Center,Dr,4414237,0.254,0.277,0,0.557264,4.5,4.5 +40207,1,0.013138,2,0,0,2,5,,3,2,Wren,St,4719115,0,0.013,0,0.315319,8,4.5 +40204,-1,0.013234,0,2,0,2,4,DV2,3,2,Miller,Rd,4719114,0.864,0.877,0,0.317606,6,4.5 +40208,-1,0.01301,0,2,0,2,5,,3,2,Eagle,Pass,4719116,0,0.013,0,0.312232,8,4.5 +40206,-1,0.337331,0,2,0,2,4,DV2,3,2,Miller,Rd,4719114,0.877,1.214,0,8.095941,6,4.5 +40209,0,0.007871,2,2,0,2,4,,3,2,Wyoming,Ave,1653404,0.923,0.931,0,0.188897,6,4.5 +40210,1,0.126357,2,0,0,2,4,,3,2,Wyoming,Ave,1653404,0.797,0.923,0,3.032574,6,4.5 +40211,-1,0.126503,0,2,0,2,4,,3,2,Wyoming,Ave,4719445,0,0.127,0,3.036064,6,4.5 +40240,0,0.012573,1,1,0,2,5,,3,3,Lincoln,Dr,684507,1.49,1.503,0,0.301758,8,4.5 +40233,-1,0.089711,0,2,0,2,3,DIV,3,1,Davison,St,4702011,2.816,2.906,0,2.153075,5,5 +40218,-1,0.277398,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0.713,0.99,0,6.657551,5,5 +40219,-1,0.018022,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0.695,0.713,0,0.432535,5,5 +40220,-1,0.488672,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0.207,0.695,0,11.728116,5,5 +40224,1,0.02048,1,0,0,2,9,,2,1,Temple,St,5496270,0,0.021,0,0.491529,8.5,4.5 +40222,-1,0.024318,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0.182,0.207,0,0.583624,5,5 +40223,-1,0.182264,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0,0.182,0,4.374332,5,5 +40236,1,0.038453,3,0,0,2,3,DIV,3,1,Davison,St,4702009,5.374,5.412,0,0.922861,5,5 +40243,0,0.010833,2,2,1,2,4,,3,3,10 Mile,Rd,633409,8.841,8.852,0,0.259981,6,4.5 +40238,0,0.07824,3,2,1,2,3,,3,1,Davison,St,4702009,5.412,5.491,0,1.877752,5,5 +40244,-1,0.249843,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416853,0,0.25,0,5.996237,5,5 +40245,-1,0.200199,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416853,0.25,0.45,0,4.80477,5,5 +40246,-1,0.046343,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416853,0.45,0.496,0,1.112239,5,5 +40247,-1,0.254091,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416853,0.496,0.75,0,6.098177,5,5 +40248,-1,0.201963,0,2,0,2,3,DIV,3,3,Greenfield,Rd,4416853,0.75,0.952,0,4.84711,5,5 +40249,-1,0.217165,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,0.991,1.208,0,5.211963,3.7,5 +40254,-1,0.011117,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,0.98,0.991,0,0.26681,3.7,5 +40188,1,0.740492,2,0,0,2,3,DIV,4,2,Fort,St,1592105,3.968,4.708,0,17.771805,3.7,5 +40189,1,0.108323,2,0,0,2,4,DV2,4,2,Van Horn,Rd,1674101,7.532,7.641,0,2.599751,4.5,4.5 +40190,-1,0.112234,0,2,0,2,4,DV2,4,2,Van Horn,Rd,4718965,0,0.112,0,2.693625,4.5,4.5 +40191,-1,0.042985,0,2,0,2,4,DV2,4,2,Van Horn,Rd,4718965,0.112,0.155,0,1.031629,4.5,4.5 +40183,-1,0.021149,0,1,0,2,5,,5,8,Hartland,Rd,4105279,0.379,0.4,0,0.507567,3.7,5 +40184,1,0.01621,1,0,0,2,5,,5,8,Hartland Square,Dr,4105287,0,0.016,0,0.389033,3.7,5 +40185,1,0.02605,1,0,0,2,5,,5,8,Hartland,Rd,4105285,0,0.026,0,0.625208,3.7,5 +40186,-1,0.023113,0,1,0,2,5,,5,8,Hartland,Rd,4105279,0.356,0.379,0,0.554721,3.7,5 +40155,1,0.042873,2,0,0,2,4,,4,3,Lyon Center,Dr,4414237,0.295,0.338,0,1.028956,4.5,4.5 +40156,-1,0.03878,0,2,0,2,4,,4,3,New Hudson,Dr,4416579,0.049,0.088,0,0.930719,4.5,4.5 +40159,1,0.042921,2,0,0,2,4,,4,3,Grand River,Ave,4104142,4.302,4.345,0,1.0301,4.5,4.5 +40158,0,0.551507,1,1,0,2,4,,4,3,Grand River,Ave,4104142,4.405,4.956,0,13.236166,4.5,4.5 +40160,-1,0.045068,0,2,0,2,4,,4,3,Grand River,Ave,4416633,0,0.045,0,1.081643,4.5,4.5 +40161,1,0.021173,2,0,0,2,4,,4,3,Grand River,Ave,4104142,4.345,4.366,0,0.508151,4.5,4.5 +40162,-1,0.021365,0,2,0,2,4,,4,3,Grand River,Ave,4416633,0.045,0.066,0,0.512749,4.5,4.5 +40163,1,0.038322,2,0,0,2,4,,4,3,Grand River,Ave,4104142,4.366,4.405,0,0.919716,4.5,4.5 +40164,-1,0.033517,0,2,0,2,4,,4,3,Grand River,Ave,4416633,0.066,0.1,0,0.804411,4.5,4.5 +40165,-1,0.016952,0,2,0,2,4,,4,3,Lyon Center,Dr,4416634,0,0.017,0,0.406836,4.5,4.5 +40166,-1,0.016773,0,2,0,2,4,,4,3,Lyon Center,Dr,4414238,0.862,0.879,0,0.402559,4.5,4.5 +40167,-1,0.027083,0,2,0,2,4,,4,3,Lyon Center,Dr,4416634,0.017,0.044,0,0.649997,4.5,4.5 +40168,-1,0.034781,0,2,0,2,4,,4,3,Lyon Center,Dr,4414238,0.827,0.862,0,0.834742,4.5,4.5 +40169,0,0.155629,2,2,0,2,3,,4,3,Milford,Rd,656804,3.688,3.844,0,3.735088,3.7,5 +40170,0,0.293597,1,1,0,2,3,,5,3,Milford,Rd,656804,3.154,3.448,0,7.046327,1.7,4 +40175,0,0.311948,1,1,1,2,5,,4,3,Lyon Center,Dr,4414237,0.338,0.65,0,7.486762,5.8,4.5 +40172,0,0.343112,1,1,1,2,5,,5,3,Lyon Center,Dr,1825504,0,0.343,0,8.234686,3.7,5 +34821,0,0.09583,1,1,0,2,7,,3,3,Hilton/E M 102,,1850901,0.075,0.171,0,2.299913,7,4.5 +34822,0,0.421652,1,1,0,2,4,,3,3,Lahser,Rd,685510,0.589,1.011,0,10.119645,6,4.5 +40440,0,0.06238,2,2,1,2,4,,3,3,Lahser,Rd,685510,0.023,0.085,0,1.497116,6,4.5 +40443,-1,0.237759,0,2,0,2,4,DIV,3,3,Lahser,Rd,4463310,0.086,0.323,0,5.706209,6,4.5 +40441,1,0.084664,2,0,0,2,4,DIV,3,3,Lahser,Rd,685510,0.085,0.17,0,2.031934,6,4.5 +40447,1,0.406716,2,0,0,2,4,DIV,3,3,Civic Center,Dr,684205,0.775,1.182,0,9.761179,6,4.5 +40450,-1,0.462872,0,2,0,2,4,DIV,3,3,Civic Center,Dr,4463315,0,0.463,0,11.108917,6,4.5 +40448,-1,0.407744,0,2,0,2,4,DIV,3,3,Civic Center,Dr,4463315,0.463,0.87,0,9.785859,6,4.5 +40953,-1,0.091395,0,1,0,2,4,,5,3,Napier,Rd,0,0,0,0,2.193472,3,4 +40950,1,0.095658,2,0,0,2,3,,4,3,10 Mile,Rd,0,0,0,0,2.295784,3.7,5 +40951,-1,0.097477,0,2,0,2,3,,4,3,10 Mile,Rd,0,0,0,0,2.339445,3.7,5 +40945,1,0.031943,2,0,0,2,3,,4,3,10 Mile,Rd,0,0,0,0,0.766636,3.7,5 +40942,0,0.881169,1,1,0,2,3,,4,3,10 Mile,Rd,0,0,0,0,21.148045,3.7,5 +40943,0,0.393881,1,1,0,2,4,,5,3,Napier,Rd,0,0,0,0,9.45314,3,4 +40944,-1,0.031968,0,2,0,2,3,,4,3,10 Mile,Rd,0,0,0,0,0.767239,3.7,5 +40948,1,0.094442,2,0,0,2,3,,5,3,10 Mile,Rd,0,0,0,0,2.266598,1.7,4 +40949,-1,0.093154,0,2,0,2,3,,5,3,10 Mile,Rd,0,0,0,0,2.235707,1.7,4 +40268,0,0.113692,2,2,0,2,4,,4,3,Coolidge,Rd,693006,5.06,5.173,0,2.72861,4.5,4.5 +40269,0,0.007757,1,1,0,2,4,,4,3,Wattles,Rd,618802,1.89,1.897,0,0.186164,4.5,4.5 +40270,-1,0.014952,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,0.473,0.488,0,0.358848,5,5 +40271,1,0.014292,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,0.994,1.008,0,0.342997,5,5 +40272,0,0.008732,2,2,1,2,3,,3,3,Maple,Rd,683906,15.218,15.227,0,0.209565,5,5 +40273,-1,0.735951,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4463391,0.523,1.259,0,17.662821,6,4.5 +40274,-1,0.019147,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4463391,1.464,1.483,0,0.459527,6,4.5 +40275,-1,0.214209,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4463391,1.483,1.698,0,5.141008,6,4.5 +40283,0,0.008944,2,2,1,2,3,,3,4,12 Mile,Rd,803401,3.46,3.469,0,0.21466,5,5 +40284,0,0.011029,2,2,1,2,4,,3,4,13 Mile,Rd,803410,0.545,0.556,0,0.264706,6,4.5 +40285,-1,0.012313,0,2,0,2,5,DV2,3,4,Common,Rd,4211479,0.351,0.363,0,0.295522,8,4.5 +40286,1,0.012314,2,0,0,2,5,DV2,3,4,Common,Rd,4211478,0.35,0.363,0,0.295528,8,4.5 +40263,0,0.110846,2,2,1,2,3,,3,3,13 Mile,Rd,607408,4.991,5.101,0,2.660305,5,5 +40264,0,0.012897,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.014,1.027,0,0.309537,8,4.5 +40265,-1,0.103628,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4416865,1.052,1.156,0,2.48706,6,4.5 +40266,-1,0.49576,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4416865,1.156,1.651,0,11.898251,6,4.5 +40267,-1,0.510039,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4416865,1.651,2.161,0,12.240944,6,4.5 +40256,1,0.015658,2,0,0,2,5,,4,3,Corporate,Dr,1848503,0.335,0.35,0,0.375797,5.8,4.5 +40258,-1,0.495933,0,2,0,2,4,DV2,3,3,Coolidge,Hwy,4416865,0,0.496,0,11.902399,6,4.5 +40259,-1,0.540045,0,2,0,2,4,DV2,3,3,Coolidge,Hwy,4416865,0.496,1.036,0,12.961086,6,4.5 +40260,1,0.012643,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,7.295,7.308,0,0.303427,5,5 +40261,-1,0.011763,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,7.286,7.297,0,0.282305,5,5 +40262,-1,0.016511,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4416865,1.036,1.052,0,0.396257,6,4.5 +40192,-1,0.75576,0,2,0,2,4,DV2,4,2,Van Horn,Rd,4718965,0.155,0.911,0,18.138242,4.5,4.5 +38453,0,0.556509,1,1,0,2,5,,4,6,Monroe,Rd,1232702,0.5,1.056,0,13.356206,5.8,4.5 +34864,0,0.907195,1,1,0,2,4,,4,8,Whitmore Lake,Rd,932204,5.879,6.786,0,21.772686,4.5,4.5 +34865,0,0.392252,2,2,1,2,3,,4,8,Grand River,Ave,932910,23.766,24.158,0,9.414053,3.7,5 +34866,0,0.08178,1,1,0,2,4,,3,8,Old US 23,Hwy,932204,6.786,6.868,0,1.962713,6,4.5 +40203,-1,0.236505,0,2,0,2,4,DV2,3,2,Miller,Rd,4719114,0.628,0.864,0,5.676116,6,4.5 +40201,-1,0.627713,0,2,0,2,4,DV2,3,2,Miller,Rd,4719114,0,0.628,0,15.065121,6,4.5 +40054,-1,0.007188,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,0.29,0.297,0,0.172501,3.7,5 +40954,-1,0.058444,0,1,0,2,4,,4,3,Napier,Rd,0,0,0,0,1.402664,4.5,4.5 +37239,-1,0.027508,0,1,0,2,4,,4,4,25 Mile,Rd,4211018,0,0.028,0,0.66018,4.5,4.5 +37243,1,0.019287,1,0,0,2,4,,4,4,Hayes,Rd,4208921,9.068,9.088,0,0.462881,4.5,4.5 +37244,1,0.030004,1,0,0,2,4,,4,4,Hayes,Rd,4208921,9.088,9.118,0,0.720103,4.5,4.5 +37238,1,0.033744,1,0,0,2,4,,4,4,25 Mile,Rd,4211019,6.055,6.088,0,0.809867,4.5,4.5 +37269,1,0.021431,1,0,0,2,3,,4,4,S M 53/26 Mile,RAMP,822003,0.327,0.349,0,0.51434,3.7,5 +37268,1,0.327626,1,0,0,1,2,ROF,4,4,S M 53/26 Mile,RAMP,822003,0,0.327,0,,2.24,5 +37271,1,0.021438,1,0,0,2,3,,4,4,E 26 Mile/W 26 Mile,TURN,4212027,0,0.021,0,0.514504,3.7,5 +40965,-1,0.072226,0,2,0,2,3,DIV,4,5,W US 12,,0,0,0,0,1.733427,3.7,5 +40966,0,0.203005,1,1,0,2,3,,4,5,Wiard,Rd,0,0,0,0,4.872129,3.7,5 +40967,0,0.278668,1,1,0,2,3,,4,5,Wiard,Rd,0,0,0,0,6.688035,3.7,5 +40968,0,0.374775,2,2,0,2,3,,4,5,Ecorse,Rd,0,0,0,0,8.994588,3.7,5 +40969,0,0.952012,2,2,0,2,3,,4,5,Ecorse,Rd,0,0,0,0,22.848295,3.7,5 +40970,-1,0.11158,0,2,0,2,3,DIV,4,5,Ecorse,Rd,0,0,0,0,2.677924,3.7,5 +40958,0,0.290429,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.970299,0.15,4 +40959,-1,0.166585,0,3,0,2,3,DIV,4,5,Ecorse,Rd,0,0,0,0,3.998038,3.7,5 +40960,1,0.129039,3,0,0,2,3,DIV,4,5,Ecorse,Rd,0,0,0,0,3.096937,3.7,5 +40962,1,0.204547,1,0,0,2,3,DIV,4,5,Wiard,Rd,0,0,0,0,4.909117,3.7,5 +37242,1,0.029265,1,0,0,2,4,,4,4,Hayes,Rd,4208921,9.039,9.068,0,0.70237,4.5,4.5 +37270,1,0.30644,1,0,0,1,2,RON,4,4,26 Mile/S M 53,RAMP,822002,0,0.306,0,,1.09,4 +37246,-1,0.019922,0,1,0,2,4,,4,4,Hayes,Rd,4211017,0.033,0.052,0,0.478135,4.5,4.5 +37245,-1,0.032507,0,1,0,2,4,,4,4,Hayes,Rd,4211017,0,0.033,0,0.780161,4.5,4.5 +34909,1,0.138958,1,0,0,1,1,RON,4,4,21 Mile/E I 94,RAMP,801305,0.041,0.18,0,,1.09,4 +34910,1,0.114306,1,0,0,1,1,RON,4,4,E 21 Mile/E I 94,RAMP,5492909,0,0.114,0,,1.09,4 +40972,1,0.026428,1,0,0,2,4,,4,3,11 Mile,Rd,0,0,0,0,0.634275,4.5,4.5 +40963,0,0.242616,1,1,0,2,5,,4,5,Airport,Dr,0,0,0,0,5.822784,5.8,4.5 +40964,-1,0.070757,0,2,0,2,4,DIV,4,5,Ecorse,Rd,0,0,0,0,1.698165,4.5,4.5 +40987,0,0.624654,1,1,0,2,5,,5,3,Gunn,Rd,0,0,0,0,14.991706,3.7,5 +40995,1,0.037327,1,0,0,2,4,,4,3,Adams,Rd,0,0,0,0,0.895844,4.5,4.5 +40973,1,0.024792,2,0,0,2,4,,4,3,Franklin,Rd,0,0,0,0,0.595016,4.5,4.5 +40971,-1,0.026216,0,1,0,2,4,,4,3,11 Mile,Rd,0,0,0,0,0.629192,4.5,4.5 +40985,0,0.993424,1,1,0,2,4,,4,3,Adams,Rd,0,0,0,0,23.842167,4.5,4.5 +40312,-1,0.327596,0,3,0,2,3,DIV,4,3,Rochester,Rd,4406170,3.168,3.496,0,7.862301,3.7,5 +40989,-1,0.025136,0,1,0,2,5,,4,3,Gunn,Rd,0,0,0,0,0.60326,5.8,4.5 +40990,1,0.024295,1,0,0,2,4,,4,3,Gunn,Rd,0,0,0,0,0.583083,4.5,4.5 +40993,1,0.058219,1,0,0,2,4,,4,3,Adams,Rd,0,0,0,0,1.397253,4.5,4.5 +40994,-1,0.059038,0,1,0,2,4,,4,3,Adams,Rd,0,0,0,0,1.416912,4.5,4.5 +40988,0,0.264114,1,1,0,2,4,,4,3,Adams,Rd,0,0,0,0,6.338745,4.5,4.5 +37892,0,0.326777,2,2,1,2,3,,4,6,Telegraph,Rd,4300001,17.51,17.837,0,7.842658,3.7,5 +37885,0,0.540817,1,1,0,2,7,,4,4,Garfield,Rd,798703,8.036,8.576,0,12.97962,6.55,4.5 +40314,0,0.500517,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.0124,0.15,4 +37886,0,0.447704,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.744905,0.15,4 +37889,0,0.140106,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,19.275,19.415,0,3.362554,5,5 +37891,0,0.692019,2,2,0,2,5,,3,1,Springwells,Ct,4718285,0,0.692,0,16.608456,8,4.5 +37893,0,0.932095,1,1,1,2,3,,5,6,Telegraph,Rd,4300001,17.837,18.768,0,22.370288,1.7,4 +37882,0,0.471235,1,1,0,2,7,,4,4,Garfield,Rd,798703,7.564,8.036,0,11.309637,6.55,4.5 +40979,1,0.031374,1,0,0,2,4,,4,3,11 Mile,Rd,0,0,0,0,0.752987,4.5,4.5 +40980,-1,0.025444,0,1,0,2,4,,4,3,11 Mile,Rd,0,0,0,0,0.61065,4.5,4.5 +40981,0,0.157778,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.786664,0.15,4 +40982,0,0.567253,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.614073,0.15,4 +40991,-1,0.025482,0,1,0,2,4,,4,3,Adams,Rd,0,0,0,0,0.611578,4.5,4.5 +40992,1,0.024552,1,0,0,2,4,,4,3,Adams,Rd,0,0,0,0,0.589238,4.5,4.5 +40215,-1,0.213079,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0.99,1.203,0,5.113894,5,5 +39887,-1,0.501485,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,3.569,4.07,0,12.035651,5,5 +39886,0,0.553376,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.281034,0.15,4 +39885,0,0.507973,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.191351,0.15,4 +39884,-1,0.243204,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,3.326,3.569,0,5.836887,5,5 +39883,-1,0.01305,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,3.313,3.326,0,0.313207,5,5 +39882,-1,0.242931,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,3.07,3.313,0,5.830338,5,5 +39881,-1,0.123189,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,2.947,3.07,0,2.956528,5,5 +39880,0,0.010332,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,14.91,14.921,0,0.247974,5,5 +39879,-1,0.37449,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,2.572,2.947,0,8.987749,5,5 +39878,0,0.506238,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.1497,0.15,4 +39877,-1,0.124795,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,2.448,2.572,0,2.995069,5,5 +39876,0,0.01166,1,1,0,2,5,,3,1,Curtis,St,1620803,1.911,1.922,0,0.279846,8,4.5 +39875,-1,0.375973,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,2.072,2.448,0,9.023362,5,5 +39874,-1,0.169655,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.902,2.072,0,4.071726,5,5 +39873,0,0.011764,1,1,0,2,3,,3,1,McNichols,Rd,1680701,20.979,20.99,0,0.282333,5,5 +39872,-1,0.012256,0,2,0,2,4,DV2,3,1,Outer,Dr,4707854,1.065,1.078,0,0.294147,6,4.5 +40996,-1,0.037072,0,1,0,2,4,,4,3,Adams,Rd,0,0,0,0,0.889736,4.5,4.5 +40997,1,0.049661,1,0,0,2,5,,5,3,Gunn,Rd,0,0,0,0,1.191876,3.7,5 +40998,-1,0.049368,0,1,0,2,5,,5,3,Gunn,Rd,0,0,0,0,1.184824,3.7,5 +40974,-1,0.026858,0,2,0,2,4,,4,3,Franklin,Rd,0,0,0,0,0.644591,4.5,4.5 +40975,1,0.104774,2,0,0,2,4,,4,3,Franklin,Rd,0,0,0,0,2.514567,4.5,4.5 +40976,-1,0.11161,0,2,0,2,4,,4,3,Franklin,Rd,0,0,0,0,2.678652,4.5,4.5 +40977,1,0.068926,2,0,0,2,4,,4,3,Franklin,Rd,0,0,0,0,1.654216,4.5,4.5 +40978,-1,0.060085,0,2,0,2,4,,4,3,Franklin,Rd,0,0,0,0,1.442036,4.5,4.5 +41525,0,0.075367,2,2,0,2,3,,3,1,Warren,Ave,0,0,0,0,1.808804,5,5 +41319,1,0.479533,2,0,0,2,3,DIV,3,4,N M 53,,0,0,0,0,11.50878,5,5 +41320,1,0.497993,2,0,0,2,3,DIV,5,4,N M 53,,0,0,0,0,11.951827,1.7,4 +41321,0,0.169239,1,1,0,2,7,,5,4,M 53/33 Mile Connector,,0,0,0,0,4.061744,5.8,6 +37879,0,0.134121,1,1,0,2,7,,4,3,Tienken,Rd,626010,0.568,0.702,0,3.218895,6.55,4.5 +41322,-1,0.481053,0,2,0,2,3,DIV,3,4,S M 53,,0,0,0,0,11.54528,5,5 +41323,-1,0.974569,0,2,0,2,3,DIV,5,4,S M 53,,0,0,0,0,23.389657,1.7,4 +40126,1,0.035914,1,0,0,2,5,,3,2,Levan,Rd,1604605,3.155,3.191,0,0.861931,8,4.5 +40123,-1,0.173878,0,2,0,2,4,DV2,3,2,Newburgh,Rd,4719274,0,0.174,0,4.173072,6,4.5 +40048,1,0.007356,3,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,0.123,0.13,0,0.176552,3.7,5 +40125,-1,0.035143,0,1,0,2,5,,3,2,Levan,Rd,4719291,0,0.035,0,0.843424,8,4.5 +40124,0,0.013602,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.191,3.205,0,0.326449,8,4.5 +39890,1,0.595313,2,0,0,2,4,DIV,4,2,Ecorse,Rd,5495384,2.36,2.955,0,14.287512,4.5,4.5 +39869,0,0.503183,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.076396,0.15,4 +39868,0,0.493007,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.832165,0.15,4 +39866,0,0.485823,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.659744,0.15,4 +39865,0,1.013434,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.322406,0.15,4 +39864,-1,0.241362,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,3.514,3.756,0,5.792691,3.7,5 +39863,-1,0.394097,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,3.121,3.514,0,9.458328,3.7,5 +41340,0,0.079418,1,1,0,2,5,,1,1,Columbia,St,0,0,0,0,1.906025,8.5,4.5 +41339,0,0.049139,1,1,0,2,5,,1,1,Columbia,St,0,0,0,0,1.179337,8.5,4.5 +41338,0,0.048735,1,1,0,2,5,,1,1,Park,Ave,0,0,0,0,1.169645,8.5,4.5 +41337,0,0.048028,1,1,0,2,5,,1,1,Park,Ave,0,0,0,0,1.152669,8.5,4.5 +41336,0,0.050325,1,1,0,2,5,,1,1,Park,Ave,0,0,0,0,1.207789,8.5,4.5 +41335,0,0.051428,1,1,0,2,5,,1,1,Park,Ave,0,0,0,0,1.234276,8.5,4.5 +41334,0,0.047148,1,1,0,2,5,,1,1,Clifford,St,0,0,0,0,1.131541,8.5,4.5 +41333,0,0.048489,1,1,0,2,5,,1,1,Clifford,St,0,0,0,0,1.163729,8.5,4.5 +41330,0,0.050837,1,1,0,2,5,,1,1,Clifford,St,0,0,0,0,1.220099,8.5,4.5 +41130,1,0.034914,1,0,0,2,4,,5,7,Allen,Rd,0,0,0,0,0.837941,3,4 +41332,0,0.048147,1,1,0,2,5,,1,1,Clifford,St,0,0,0,0,1.155531,8.5,4.5 +41331,0,0.050392,1,1,0,2,5,,1,1,Clifford,St,0,0,0,0,1.209412,8.5,4.5 +40051,1,0.136434,5,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,0.13,0.267,0,3.274415,3.7,5 +39766,-1,0.251401,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.32,1.572,0,6.033633,5,5 +39767,-1,0.330539,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.572,1.902,0,7.932944,5,5 +39734,1,0.020057,1,0,0,2,4,,4,3,White Lake,Rd,649303,1.904,1.924,0,0.481377,4.5,4.5 +39735,1,0.034399,1,0,0,2,4,,4,3,White Lake,Rd,649303,1.924,1.959,0,0.825575,4.5,4.5 +39736,0,0.679435,1,1,0,2,4,,4,3,White Lake,Rd,649303,1.959,2.638,0,16.306432,4.5,4.5 +39737,-1,0.018952,0,1,0,2,4,,4,3,White Lake,Rd,4416627,0.036,0.055,0,0.454843,4.5,4.5 +39738,-1,0.030608,0,1,0,2,4,,4,3,White Lake,Rd,4416627,0.055,0.085,0,0.734586,4.5,4.5 +39730,1,0.021329,1,0,0,2,4,,4,3,White Lake,Rd,649303,1.744,1.766,0,0.511903,4.5,4.5 +39731,1,0.014317,1,0,0,2,4,,4,3,White Lake,Rd,4416626,0,0.014,0,0.343611,4.5,4.5 +39732,1,0.035895,1,0,0,2,4,,4,3,White Lake,Rd,649303,1.868,1.904,0,0.861472,4.5,4.5 +39733,-1,0.03579,0,1,0,2,4,,4,3,White Lake,Rd,4416627,0,0.036,0,0.858969,4.5,4.5 +39724,1,0.036806,1,0,0,2,4,,4,3,White Lake,Rd,649303,1.766,1.802,0,0.88334,4.5,4.5 +39723,1,0.01851,1,0,0,2,4,,4,3,Rose Center,Rd,660906,2.61,2.628,0,0.444231,4.5,4.5 +39721,0,0.066094,1,1,1,2,4,,4,3,White Lake,Rd,649303,1.802,1.868,0,1.586265,4.5,4.5 +35142,0,0.116358,2,2,1,2,3,,4,4,Romeo Plank,Rd,819207,1.798,1.914,0,2.792593,3.7,5 +39725,-1,0.022113,0,1,0,2,4,,4,3,Rose Center,Rd,4416624,0,0.022,0,0.530719,4.5,4.5 +39726,-1,0.019567,0,1,0,2,4,,4,3,White Lake,Rd,4416624,0.022,0.042,0,0.469606,4.5,4.5 +39727,-1,0.031563,0,1,0,2,4,,4,3,White Lake,Rd,4416624,0.042,0.073,0,0.757517,4.5,4.5 +39749,-1,0.368087,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490586,0.838,1.206,0,8.834076,5,5 +39751,-1,0.013411,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.045,2.059,0,0.321866,6,4.5 +39752,1,0.0113,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,1.088,1.1,0,0.271193,8,4.5 +39753,-1,0.011072,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,1.082,1.093,0,0.26573,8,4.5 +39754,-1,0.215085,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0,0.215,0,5.162036,5,5 +39755,-1,0.016707,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.215,0.232,0,0.400976,5,5 +39756,-1,0.06193,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.232,0.294,0,1.48631,5,5 +39757,-1,0.006905,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.294,0.301,0,0.165725,5,5 +39758,0,0.010391,2,2,0,2,4,,3,1,Lyndon,St,1612706,2.988,2.998,0,0.249396,6,4.5 +39759,-1,0.27203,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.301,0.573,0,6.528717,5,5 +39760,1,0.010027,1,0,0,2,5,,3,1,Keeler,Ave,1590901,2.368,2.378,0,0.240652,8,4.5 +39761,-1,0.010245,0,2,0,2,5,,3,1,Hughes,St,4705979,0.962,0.972,0,0.245881,8,4.5 +39762,-1,0.342126,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.573,0.915,0,8.211014,5,5 +39763,-1,0.053179,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.199,1.252,0,1.276307,5,5 +39764,0,0.012533,1,1,0,2,4,,3,1,Puritan,St,4707953,4.507,4.519,0,0.300798,6,4.5 +39765,-1,0.068394,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.252,1.32,0,1.641466,5,5 +39745,0,0.01172,1,1,1,2,5,,3,1,Elmhurst,St,1581710,0.743,0.755,0,0.281285,8,4.5 +39744,-1,0.128318,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490586,0.178,0.307,0,3.079621,5,5 +39746,-1,0.18377,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490586,0.307,0.49,0,4.410487,5,5 +39750,1,0.012003,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.018,2.03,0,0.288083,6,4.5 +39748,-1,0.347409,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490586,0.49,0.838,0,8.337811,5,5 +40062,-1,0.134646,0,2,0,2,3,DIV,3,3,Orchard Lake,Rd,641405,0.409,0.543,0,3.231504,5,5 +38360,0,0.719828,1,1,0,2,4,,4,5,Whittaker,Rd,1439102,8.331,9.051,0,17.275871,4.5,4.5 +39705,-1,0.025265,0,1,0,2,5,,4,5,NORTH,St,5490690,0,0.025,0,0.606367,5.8,4.5 +39706,1,0.025105,1,0,0,2,5,,4,5,North,St,4604989,0.877,0.902,0,0.602512,5.8,4.5 +39707,0,0.475823,1,1,1,2,4,,3,2,7 Mile,Rd,1698901,0.271,0.747,0,11.419748,6,4.5 +39708,0,1.113894,1,1,0,2,5,,3,2,Silver Spring,Dr,1710310,0.048,1.162,0,26.733444,8,4.5 +39709,1,0.048201,1,0,0,2,5,,3,2,Silver Spring,Dr,1710310,0,0.048,0,1.156815,8,4.5 +39710,-1,0.072164,0,1,0,2,5,,3,2,Silver Spring,Dr,4719462,0,0.072,0,1.73194,8,4.5 +39711,1,0.077274,1,0,0,2,5,,3,2,Silver Spring,Dr,1710310,1.162,1.239,0,1.854577,8,4.5 +39712,-1,1.025643,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,1.274,2.299,0,24.615435,3.7,5 +39768,-1,0.157458,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.915,1.072,0,3.778983,5,5 +39769,0,0.011715,2,2,0,2,4,,3,1,Fenkell,St,1579605,8.938,8.949,0,0.281171,6,4.5 +39770,-1,0.126968,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.072,1.199,0,3.047237,5,5 +39771,0,0.25874,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.209763,0.15,4 +39772,0,0.197579,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.741887,0.15,4 +39773,0,0.743883,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,17.853201,0.15,4 +39774,0,0.491338,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.792107,0.15,4 +39778,0,0.041674,2,2,1,2,3,,3,2,Greenfield,,1651002,2.069,2.11,0,1.000172,5,5 +39777,1,0.05261,1,0,0,1,1,ROF,3,2,E I 94/Greenfield,RAMP,1577004,0.152,0.204,0,,2.24,5 +39775,0,0.496384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.913207,0.15,4 +39779,1,0.046877,1,0,0,1,1,ROF,3,2,E I 94/S Greenfield,RAMP,5500788,0,0.047,0,,2.24,5 +39776,0,0.169581,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.069934,0.15,4 +39780,0,0.014633,2,2,1,2,3,,4,2,Beck,Rd,1595603,9.746,9.761,0,0.351194,3.7,5 +39739,-1,0.013647,0,1,0,2,4,,4,3,Duck Lake,Rd,4416628,0.034,0.048,0,0.327536,4.5,4.5 +39740,1,0.011398,1,0,0,2,4,,4,3,Duck Lake,Rd,4416629,0,0.011,0,0.273545,4.5,4.5 +39741,1,0.157926,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,5.259,5.417,0,3.790219,5,5 +39742,1,0.220103,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.511,6.731,0,5.28248,5,5 +39743,-1,0.178471,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490586,0,0.178,0,4.283307,5,5 +39908,1,0.267931,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,11.262,11.53,0,6.430356,3.7,5 +39909,-1,0.267848,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4416835,0.463,0.731,0,6.428364,3.7,5 +40061,-1,0.071716,0,2,0,2,3,DIV,3,3,Orchard Lake,Rd,641405,0.337,0.409,0,1.721182,5,5 +40044,1,0.123354,3,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,0,0.123,0,2.960485,3.7,5 +40040,-1,0.183254,0,3,0,2,3,DIV,4,3,Northwestern,Hwy,5499978,0.161,0.344,0,4.3981,3.7,5 +40063,-1,0.246858,0,2,0,2,3,DIV,3,3,Orchard Lake,Rd,641405,0.543,0.79,0,5.924589,5,5 +40045,-1,0.170928,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,0,0.171,0,4.102262,3.7,5 +39904,-1,0.319492,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4416835,0.144,0.463,0,7.66782,3.7,5 +40059,0,0.110102,2,2,1,2,3,,3,3,Orchard Lake,Rd,641405,1.156,1.266,0,2.642445,5,5 +40034,1,0.027336,3,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,5.062,5.089,0,0.656061,3.7,5 +40035,1,0.190174,3,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,5.089,5.28,0,4.56418,3.7,5 +39918,1,0.082477,1,0,0,1,1,RON,3,1,Ambassador Bridge/N I 75,RAMP,4718924,0.024,0.106,0,,1.09,4 +40884,1,0.021298,1,0,0,2,4,,5,8,Coon Lake,Rd,0,0,0,0,0.51116,3,4 +40876,0,0.32645,2,2,1,2,3,,3,1,Oakwood,Blvd,0,0,0,0,7.83479,5,5 +40410,1,0.190839,2,0,0,2,4,DIV,4,3,Livernois,Rd,625408,9.217,9.408,0,4.580133,4.5,4.5 +40411,-1,0.190877,0,2,0,2,4,DIV,4,3,Livernois,Rd,4416832,0.963,1.154,0,4.581057,4.5,4.5 +38494,0,0.29635,2,2,0,2,4,,3,7,10th,Ave,963204,3.025,3.321,0,7.112409,6,4.5 +38495,0,0.047298,1,1,0,2,4,,3,7,Stone,St,964308,1.251,1.298,0,1.135164,6,4.5 +38496,0,0.155365,1,1,0,2,7,,3,7,Harker,St,5492974,0,0.155,0,3.728749,7,4.5 +40857,-1,0.024899,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,0.597576,6,4.5 +40856,-1,0.036825,0,2,0,2,4,,3,3,Civic Center,Dr,0,0,0,0,0.883809,6,4.5 +40855,1,0.041438,2,0,0,2,4,,3,3,Civic Center,Dr,0,0,0,0,0.994515,6,4.5 +40872,1,0.109201,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,2.620816,6,4.5 +40850,0,0.46973,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.273529,0.15,4 +40854,1,0.027148,2,0,0,2,4,,3,3,Civic Center,Dr,0,0,0,0,0.651542,6,4.5 +40851,1,0.029137,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,0.699276,6,4.5 +40845,-1,0.130906,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,3.141749,6,4.5 +40853,-1,0.028181,0,2,0,2,4,,3,3,Civic Center,Dr,0,0,0,0,0.676335,6,4.5 +40852,-1,0.02861,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,0.686646,6,4.5 +40841,0,0.102547,2,2,1,2,4,,3,3,Civic Center,Dr,0,0,0,0,2.461131,6,4.5 +40870,1,0.189736,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,4.553652,6,4.5 +40412,0,0.165915,1,1,0,2,4,,4,3,Livernois,Rd,625408,9.408,9.574,0,3.981951,4.5,4.5 +40413,0,0.437947,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.510739,0.15,4 +40095,1,0.011212,1,0,0,2,7,,2,5,Observatory,St,1429309,0.482,0.493,0,0.269089,8.5,4.5 +40092,1,0.031087,1,0,0,2,7,,2,5,Observatory,St,1429309,0.451,0.482,0,0.746079,8.5,4.5 +40414,0,0.490535,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.772847,0.15,4 +40437,1,0.726687,2,0,0,1,1,,3,7,E I 94,,967606,24.055,24.781,0,,0.58,7 +40438,1,0.6437,3,0,0,1,1,ROF,3,7,E I 94/Pine Grove,RAMP,4506262,0.433,1.077,0,,2.24,5 +40439,1,0.083511,2,0,0,2,9,,3,7,Harker,St,5492975,0,0.084,0,2.004262,7,4.5 +40152,1,0.031951,2,0,0,2,4,,4,3,Grand River,Ave,4104142,3.578,3.61,0,0.76683,4.5,4.5 +40153,1,0.018074,2,0,0,2,4,,4,3,Lyon Center,Dr,4414237,0.277,0.295,0,0.433785,4.5,4.5 +40957,0,0.316997,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.607938,0.15,4 +40952,1,0.08971,1,0,0,2,4,,5,3,Napier,Rd,0,0,0,0,2.153039,3,4 +40961,-1,0.117724,0,2,0,2,3,DIV,4,5,Wiard,Rd,0,0,0,0,2.825368,3.7,5 +40127,1,0.060295,1,0,0,2,5,,3,2,Levan,Rd,1604605,4.151,4.212,0,1.447081,8,4.5 +40052,-1,0.119099,0,4,0,2,3,DIV,4,3,Northwestern,Hwy,710102,0.171,0.29,0,2.858371,3.7,5 +40361,-1,0.015449,0,3,0,2,3,DIV,4,3,University,Dr,5500949,1.549,1.564,0,0.370783,3.7,5 +40362,1,0.015232,3,0,0,2,3,DIV,4,3,University,Dr,624301,4.432,4.447,0,0.36557,3.7,5 +40363,-1,0.523503,0,2,0,2,4,DIV,3,3,Coolidge,Rd,4463391,0,0.523,0,12.564081,6,4.5 +40391,1,0.020213,1,0,0,2,4,,4,5,Geddes/N US 23,RAMP,1431402,0,0.02,0,0.485103,4.5,4.5 +40392,1,0.03381,2,0,0,2,4,,4,5,Geddes,Rd,1448104,3.263,3.296,0,0.811449,4.5,4.5 +40398,-1,0.171511,0,3,0,1,1,FCD,4,8,W I 96 CD,,935207,22.675,22.846,0,,0.8,7.5 +40395,1,0.141937,1,0,0,1,1,ROF,4,8,W I 96/Spencer,RAMP,5500704,0.442,0.584,0,,2.24,5 +40399,1,0.441892,1,0,0,1,1,ROF,3,8,W I 96/Spencer,RAMP,5500704,0,0.442,0,,2.24,5 +40393,-1,0.02879,0,2,0,2,4,,4,5,Geddes,Rd,4606198,0.059,0.088,0,0.690965,4.5,4.5 +37905,0,0.012962,1,1,0,2,5,,4,6,Herr,Rd,1224507,1.056,1.069,0,0.311091,5.8,4.5 +40394,0,0.12156,2,2,1,2,4,,4,5,Geddes,Rd,1448104,3.296,3.418,0,2.917445,4.5,4.5 +40400,-1,1.555691,0,3,0,1,1,,4,8,W I 96,,935207,23.622,25.177,0,,0.8,7.5 +40401,1,1.584566,3,0,0,1,1,,4,8,E I 96,,935105,23.53,25.115,0,,0.8,7.5 +40402,1,0.88565,2,0,0,1,1,,4,8,E I 96,,2000030,0,0.884,0,,0.8,7.5 +40397,-1,0.021885,0,2,0,1,1,FCD,3,8,W I 96 CD,,935207,22.653,22.675,0,,0.58,7 +40403,-1,0.977462,0,2,0,1,1,,4,8,W I 96,,2000031,0,0.977,0,,0.8,7.5 +39280,0,1.007868,1,1,0,2,5,,5,4,34 Mile,Rd,821608,3.073,4.081,0,24.188833,3.7,5 +38452,0,0.499897,1,1,0,2,5,,4,6,Monroe,Rd,1232702,0,0.5,0,11.997528,5.8,4.5 +39281,0,0.67106,1,1,0,2,5,,5,4,Mount Vernon,Rd,816905,2.345,3.016,0,16.105443,3.7,5 +39282,0,0.277227,1,1,0,2,5,,4,4,22 Mile,Rd,818404,0.189,0.466,0,6.653447,5.8,4.5 +39283,0,0.780359,1,1,0,2,6,GRV,5,4,29 Mile,Rd,815710,15.815,16.595,0,18.728612,5.55,5 +40351,1,0.020002,2,0,0,2,5,,4,3,Pontiac,Rd,677501,1.149,1.169,0,0.480046,5.8,4.5 +40352,-1,0.020466,0,2,0,2,5,,4,3,Pontiac,Rd,4463352,0.021,0.041,0,0.491192,5.8,4.5 +40353,-1,0.008166,0,3,0,2,3,DIV,4,3,University,Dr,5500949,0.891,0.899,0,0.195986,3.7,5 +40354,1,0.016358,3,0,0,2,3,DIV,4,3,University,Dr,624301,3.778,3.795,0,0.39258,3.7,5 +38451,0,0.504139,1,1,0,2,4,,4,6,Sterns,Rd,1223310,6.654,7.158,0,12.09934,4.5,4.5 +38450,0,0.210808,1,1,0,2,5,,4,6,Secor,Rd,1223604,2.64,2.851,0,5.059391,5.8,4.5 +38449,0,0.322691,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,11.547,11.869,0,7.744577,4.5,4.5 +40691,0,0.01705,2,2,1,2,4,,5,3,Sashabaw,Rd,697309,4.158,4.175,0,0.409191,3,4 +40692,1,0.272137,3,0,0,1,1,,4,3,N I 75,,647308,29.8,30.072,0,,0.8,7.5 +40693,1,0.161562,1,0,0,1,1,ROF,5,3,N I 75/S Sashabaw,RAMP,5500786,0,0.162,0,,2.24,5 +39817,-1,0.038187,0,2,0,2,4,,4,3,Martin,Pkwy,4416635,0,0.038,0,0.916486,4.5,4.5 +39819,-1,0.021829,0,1,0,2,4,,4,3,Pga,Dr,4416636,0,0.022,0,0.523893,4.5,4.5 +36963,0,0.100016,1,1,0,2,5,,3,6,7th,St,4302993,1.367,1.467,0,2.400396,8,4.5 +39823,1,0.022802,2,0,0,2,4,,4,3,Martin,Pkwy,4403012,0.939,0.962,0,0.547256,4.5,4.5 +39820,1,0.020706,1,0,0,2,4,,4,3,Pga,Dr,4416637,0,0.021,0,0.496944,4.5,4.5 +39824,-1,0.021165,0,2,0,2,4,,4,3,Martin,Pkwy,4416635,0.674,0.695,0,0.507956,4.5,4.5 +39821,1,0.615003,2,0,0,2,4,DIV,4,3,Martin,Pkwy,4403012,0.324,0.939,0,14.760062,4.5,4.5 +39825,1,0.025458,2,0,0,2,4,,4,3,Library,Dr,4416638,0,0.025,0,0.610994,4.5,4.5 +39822,-1,0.613551,0,2,0,2,4,DIV,4,3,Martin,Pkwy,4416635,0.061,0.674,0,14.725222,4.5,4.5 +39818,-1,0.022415,0,2,0,2,4,,4,3,Martin,Pkwy,4416635,0.038,0.061,0,0.537961,4.5,4.5 +39826,-1,0.019895,0,2,0,2,4,,4,3,Library,Dr,4416639,0,0.02,0,0.477487,4.5,4.5 +39813,0,0.030033,2,2,1,2,4,,4,3,Martin,Pkwy,4403012,0.064,0.094,0,0.720791,4.5,4.5 +39814,0,0.173134,2,2,1,2,4,,4,3,Martin,Pkwy,4403012,0.094,0.267,0,4.155215,4.5,4.5 +40664,-1,0.297752,0,3,0,1,2,,4,3,W M 59,,677208,5.809,6.106,0,,0.8,7.5 +40665,1,0.293693,3,0,0,1,2,,4,3,E M 59,,648906,27.29,27.584,0,,0.8,7.5 +40666,1,0.227347,1,0,0,1,2,RON,4,3,S Crooks/E M 59,RAMP,4463508,0,0.227,0,,1.09,4 +40667,1,0.215069,1,0,0,1,2,RON,4,3,N Crooks/W M 59,RAMP,4463509,0,0.215,0,,1.09,4 +40668,0,0.557964,2,2,0,2,5,,4,3,Oakland,Blvd,1824710,0,0.558,0,13.391125,5.8,4.5 +40669,1,0.032919,1,0,0,2,4,,4,3,Duck Lake,Rd,4410161,5.647,5.68,0,0.790045,4.5,4.5 +40670,-1,0.034061,0,1,0,2,4,,4,3,Duck Lake,Rd,4416628,0,0.034,0,0.817464,4.5,4.5 +40673,1,0.019476,1,0,0,2,3,RSF,4,4,E I 94/Metropolitan,RAMP,801109,0.231,0.25,0,0.467422,3.7,5 +40674,1,0.027288,1,0,0,2,3,RSF,4,4,W I 94/Metropolitan,RAMP,801603,0.333,0.36,0,0.654903,5,5 +38455,0,0.703087,1,1,1,2,5,,4,6,Mall,Rd,4302559,0,0.703,0,16.874083,5.8,4.5 +38454,0,0.349606,1,1,0,2,5,,4,6,Monroe,Rd,1232702,1.056,1.406,0,8.390548,5.8,4.5 +39815,1,0.037624,2,0,0,2,4,,4,3,Martin,Pkwy,4403012,0.267,0.304,0,0.902985,4.5,4.5 +39816,1,0.020113,2,0,0,2,4,,4,3,Martin,Pkwy,4403012,0.304,0.324,0,0.482719,4.5,4.5 +36958,0,0.648996,1,1,0,2,5,,5,6,Temperance,Rd,1232206,4.536,5.185,0,15.575907,3.7,5 +36957,0,0.189444,1,1,0,2,5,,4,6,Secor,Rd,1223604,2.45,2.64,0,4.546661,5.8,4.5 +36956,0,0.494613,1,1,0,2,4,,4,2,Inkster,Rd,1674404,8.615,9.109,0,11.870702,4.5,4.5 +36955,0,0.133832,2,2,1,2,4,,4,7,Pointe Tremble,Rd,4502633,11.719,11.853,0,3.211967,4.5,4.5 +36954,0,0.171258,1,1,1,2,4,,4,7,Saint Clair River,Dr,4502633,12.01,12.181,0,4.110194,4.5,4.5 +36969,0,0.127724,1,1,0,2,5,,4,5,Michigan,Ave,1439807,0.281,0.408,0,3.065365,5.8,4.5 +36986,0,1.014617,1,1,0,2,5,,5,6,Dean,Rd,1235109,1.261,2.275,0,24.350799,3.7,5 +36987,0,0.976505,1,1,0,2,5,,4,6,Dean,Rd,1235109,2.275,3.251,0,23.436125,5.8,4.5 +36975,0,0.279202,1,1,0,2,5,,4,5,North,St,4604989,0.598,0.877,0,6.70084,5.8,4.5 +36979,0,0.497458,1,1,0,2,5,GRV,5,5,Arkona,Rd,1439605,0,0.497,0,11.938999,5.55,5 +36972,0,0.343313,1,1,0,2,5,,4,5,Marvin,St,1440006,0.362,0.705,0,8.239509,5.8,4.5 +36968,0,0.343592,1,1,0,2,5,,4,5,North,St,4604989,0.255,0.598,0,8.246203,5.8,4.5 +36971,0,0.361797,1,1,0,2,5,,4,5,Marvin,St,1440006,0,0.362,0,8.683125,5.8,4.5 +36960,0,0.614284,1,1,0,2,5,,5,6,Newport,Rd,1228304,2.145,2.759,0,14.742814,3.7,5 +36953,0,0.19044,1,1,0,2,5,,4,7,Smith,St,966110,0.095,0.285,0,4.570553,5.8,4.5 +36976,0,0.00838,1,1,1,2,5,,4,5,Arkona,Rd,1439605,0.706,0.714,0,0.201113,5.8,4.5 +36967,0,0.254891,1,1,0,2,5,,4,5,North,St,4604989,0,0.255,0,6.117387,5.8,4.5 +36977,0,0.194254,1,1,1,2,5,,4,5,Arkona,Rd,4603257,0,0.194,0,4.662084,5.8,4.5 +36951,0,0.224475,1,1,0,2,4,,5,6,Main,St,1226001,0.284,0.509,0,5.387402,3,4 +36961,0,0.457124,1,1,0,2,4,,4,6,Nadeau,Rd,1225701,0.355,0.812,0,10.97097,4.5,4.5 +36962,0,0.131885,1,1,0,2,4,,3,6,Front,St,1223803,18.991,19.123,0,3.165231,6,4.5 +36980,0,0.432542,1,1,0,2,5,,5,6,Platt,Rd,1233604,5.529,5.962,0,10.381,3.7,5 +36952,0,0.20736,1,1,0,2,4,,4,6,County,St,1223905,0.061,0.268,0,4.976649,4.5,4.5 +36959,0,0.367767,1,1,0,2,5,,4,6,Jackman,Rd,4300008,1.982,2.35,0,8.826414,5.8,4.5 +36991,0,0.98967,1,1,0,2,5,,5,6,War,Rd,1229809,2.885,3.874,0,23.752068,3.7,5 +36974,0,0.190252,1,1,0,2,5,,4,5,Lewis,Ave,4604992,0.402,0.593,0,4.566038,5.8,4.5 +36970,0,0.192457,1,1,0,2,5,,4,5,Michigan,Ave,1439807,0.408,0.601,0,4.618973,5.8,4.5 +36973,0,0.124471,1,1,0,2,5,,4,5,Lewis,Ave,4604992,0.278,0.402,0,2.987316,5.8,4.5 +36978,0,0.208791,1,1,1,2,5,,4,5,Arkona,Rd,1439605,0.497,0.706,0,5.010979,5.8,4.5 +40306,-1,0.180355,0,2,0,2,4,DIV,4,3,Wattles,Rd,4416867,0,0.18,0,4.328525,4.5,4.5 +36990,0,1.507847,1,1,0,2,5,,5,6,War,Rd,1229809,1.378,2.885,0,36.188338,3.7,5 +36981,0,0.050962,1,1,0,2,5,,5,6,Platt,Rd,4302160,0,0.051,0,1.223077,3.7,5 +36992,0,0.43199,1,1,1,2,5,,5,2,Wahrman,Rd,5495435,0,0.432,0,10.367766,3.7,5 +36985,0,0.998398,1,1,0,2,5,,5,6,Douglas,Rd,1226801,2.434,3.432,0,23.961561,3.7,5 +36984,0,1.007385,1,1,0,2,5,,4,6,Dean,Rd,1235109,0.254,1.261,0,24.177235,5.8,4.5 +36983,0,0.996692,1,1,0,2,5,,4,6,Douglas,Rd,1226801,1.438,2.434,0,23.920615,5.8,4.5 +36982,0,0.400953,1,1,0,2,5,,4,5,Platt,St,4302160,0.051,0.452,0,9.622863,5.8,4.5 +36994,0,0.996356,1,1,0,2,5,,4,2,Harrison,Rd,4718366,0.902,1.898,0,23.912543,5.8,4.5 +36989,0,0.87739,1,1,0,2,5,,5,6,War,Rd,1229809,0.501,1.378,0,21.057371,3.7,5 +36988,0,0.251404,1,1,0,2,5,,3,6,Cooper,St,1224704,0,0.251,0,6.033687,8,4.5 +36993,0,0.996094,1,1,1,2,5,,4,2,Wahrman,Rd,4719472,2.032,3.028,0,23.906249,5.8,4.5 +36995,0,1.002735,1,1,0,2,5,GRV,4,2,Harrison,Rd,4718366,1.898,2.901,0,24.065646,6.55,4.5 +36996,0,0.49338,1,1,1,2,5,,4,2,Harrison,Rd,4718366,2.901,3.394,0,11.841114,5.8,4.5 +36965,0,0.135399,1,1,0,2,4,,5,6,Dexter,St,1239405,0.26,0.395,0,3.249564,3,4 +36964,0,0.056377,1,1,1,2,4,,4,7,Saint Clair River,Dr,4502633,12.352,12.409,0,1.35305,4.5,4.5 +37002,0,0.641701,1,1,0,2,5,,3,3,Elmwood,,628408,1,1.642,0,15.400831,8,4.5 +37007,0,0.247351,1,1,0,2,5,,4,7,Fruit,St,974309,1.585,1.832,0,5.936424,5.8,4.5 +36999,0,0.516844,1,1,0,2,5,,4,2,Hildebrandt,Rd,1682607,0.497,1.014,0,12.404258,5.8,4.5 +37003,0,0.292176,1,1,0,2,5,,4,7,State,St,966009,0.156,0.448,0,7.012226,5.8,4.5 +37006,0,0.11459,1,1,0,2,5,,4,7,State,St,966009,0.731,0.846,0,2.75017,5.8,4.5 +36998,0,0.497315,1,1,0,2,5,,4,2,Hildebrandt,Rd,1682607,0,0.497,0,11.935548,5.8,4.5 +36997,0,0.507573,1,1,1,2,5,,4,2,Harrison,Rd,4718366,3.394,3.901,0,12.181759,5.8,4.5 +37000,-1,0.049686,0,1,0,2,5,,3,2,Silver Spring,Dr,4719228,0,0.05,0,1.192463,8,4.5 +37001,0,1.000501,1,1,0,2,5,,3,3,Elmwood,,628408,0,1,0,24.012033,8,4.5 +40305,-1,0.461129,0,3,0,2,3,DIV,4,3,Rochester,Rd,4406170,2.695,3.156,0,11.067096,3.7,5 +37005,0,0.283704,1,1,0,2,5,,4,7,State,St,966009,0.448,0.731,0,6.808885,5.8,4.5 +40304,0,0.31579,1,1,1,2,4,,4,3,Wattles,Rd,618802,5.073,5.389,0,7.578948,4.5,4.5 +40303,1,0.017553,2,0,0,2,4,DIV,4,3,Wattles,Rd,618802,4.905,4.923,0,0.421278,4.5,4.5 +37004,0,0.249197,1,1,0,2,5,,4,7,Liberty,St,966105,0.278,0.527,0,5.980723,5.8,4.5 +35582,0,0.020853,1,1,0,2,4,,5,2,Sibley,Rd,1607308,1.111,1.132,0,0.500461,3,4 +37008,0,0.055506,1,1,0,2,5,,4,7,Washington,St,974805,0.285,0.34,0,1.332133,5.8,4.5 +39203,1,0.087655,1,0,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,2.103709,4.5,4.5 +39202,-1,0.087861,0,1,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,2.108667,4.5,4.5 +39201,-1,0.065155,0,1,0,2,4,,4,5,Merritt,Rd,0,0,0,0,1.563715,4.5,4.5 +39200,1,0.076972,1,0,0,2,4,,4,5,Merritt,Rd,0,0,0,0,1.847318,4.5,4.5 +39199,-1,0.131272,0,1,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,3.150518,4.5,4.5 +39197,-1,0.024378,0,1,0,2,4,,4,5,Merritt,Rd,0,0,0,0,0.585076,4.5,4.5 +39193,0,0.302673,1,1,0,2,5,,4,5,Merritt,Rd,0,0,0,0,7.264146,5.8,4.5 +39192,0,0.90013,1,1,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,21.603124,4.5,4.5 +39198,1,0.125524,1,0,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,3.012586,4.5,4.5 +39196,1,0.025631,1,0,0,2,4,,4,5,Merritt,Rd,0,0,0,0,0.615147,4.5,4.5 +39189,0,0.836757,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.082167,0.15,4 +39195,1,0.024703,1,0,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,0.592869,4.5,4.5 +39187,0,0.984364,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.624727,0.15,4 +39194,-1,0.02514,0,1,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,0.603353,4.5,4.5 +39185,0,0.381953,1,1,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,9.166866,4.5,4.5 +40604,0,0.195044,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.18,1.375,0,4.681061,5,5 +40606,0,2.403411,1,1,0,2,6,,5,8,Owosso,Rd,943904,0.335,2.737,0,57.681868,5.8,6 +40607,0,1.280281,1,1,0,2,5,,5,8,Eager,Rd,4104848,0,1.28,0,30.72674,3.7,5 +38550,0,0.012797,1,1,0,2,5,,2,1,Second,St,0,0,0,0,0.307126,8.5,4.5 +39569,-1,0.059012,0,1,0,2,4,,5,5,Werkner,Rd,0,0,0,0,1.416287,3,4 +39567,1,0.063632,1,0,0,2,4,,5,5,M 52,,0,0,0,0,1.527159,3,4 +40532,-1,0.056351,0,2,0,2,4,,4,5,State,Rd,1427508,3.201,3.257,0,1.352425,4.5,4.5 +40533,-1,0.02694,0,2,0,2,3,,4,5,State,Rd,1427508,3.275,3.302,0,0.646561,3.7,5 +40534,-1,0.032545,0,1,0,2,3,,4,5,S State / W Ellsworth Cutoff,Rd,5498167,0,0.033,0,0.781079,3.7,5 +40535,-1,0.024211,0,2,0,2,4,,4,5,Ellsworth,Rd,4602939,7.986,8.01,0,0.581073,4.5,4.5 +40536,1,0.032281,2,0,0,2,4,,4,5,Ellsworth,Rd,5498166,0,0.032,0,0.774754,4.5,4.5 +40537,-1,0.010563,0,2,0,2,4,,4,5,Ellsworth,Rd,4602939,8.01,8.021,0,0.253504,4.5,4.5 +40538,-1,0.039977,0,2,0,2,3,,4,5,Ellsworth,Rd,4602939,8.041,8.081,0,0.959458,3.7,5 +40541,1,0.019994,2,0,0,2,3,,4,5,State,St,5498165,0.047,0.067,0,0.479845,3.7,5 +40542,-1,0.020258,0,2,0,2,3,,4,5,Ellsworth,Rd,4602939,8.021,8.041,0,0.486196,3.7,5 +40539,1,0.039696,2,0,0,2,3,,4,5,Ellsworth,Rd,5498166,0.056,0.096,0,0.952708,3.7,5 +40540,1,0.023788,2,0,0,2,3,,4,5,Ellsworth,Rd,5498166,0.032,0.056,0,0.570906,3.7,5 +40559,-1,0.017952,0,2,0,2,4,,4,3,Tienken,Rd,5499957,0.041,0.059,0,0.430854,4.5,4.5 +40558,1,0.052629,1,0,0,2,4,,4,3,Tienken,Rd,626010,3.492,3.545,0,1.263097,4.5,4.5 +40560,-1,0.022167,0,2,0,2,4,,4,3,Livernois,Rd,5499956,0.066,0.089,0,0.532015,4.5,4.5 +40543,-1,0.018173,0,2,0,2,3,,4,5,State,Rd,1427508,3.257,3.275,0,0.436145,3.7,5 +38549,0,0.081409,1,1,0,2,5,,2,1,Second,St,0,0,0,0,1.953826,8.5,4.5 +38548,0,0.080876,1,1,0,2,5,,2,1,Second,St,0,0,0,0,1.941034,8.5,4.5 +38547,0,0.147271,1,1,0,2,5,,2,1,Second,St,0,0,0,0,3.534497,8.5,4.5 +38546,0,0.175672,1,1,0,2,5,,2,1,Second,St,0,0,0,0,4.216133,8.5,4.5 +38545,0,0.097499,1,1,0,2,5,,2,1,Second,St,0,0,0,0,2.339983,8.5,4.5 +38544,0,0.189759,1,1,0,2,5,,2,1,Second,St,0,0,0,0,4.554213,8.5,4.5 +38543,0,0.189716,1,1,0,2,5,,2,1,Second,St,0,0,0,0,4.553193,8.5,4.5 +38542,0,0.094733,1,1,0,2,5,,2,1,Second,St,0,0,0,0,2.273599,8.5,4.5 +38541,0,0.100216,2,1,0,2,5,,2,1,Second,St,0,0,0,0,2.405185,8.5,4.5 +38540,0,0.087361,2,1,0,2,5,,2,1,Second,St,0,0,0,0,2.096658,8.5,4.5 +40882,-1,0.023426,0,1,0,2,4,,5,8,Chilson,Rd,0,0,0,0,0.562227,3,4 +40881,0,0.773095,1,1,0,2,4,,5,8,Chilson,Rd,0,0,0,0,18.55427,3,4 +40883,1,0.024094,1,0,0,2,4,,5,8,Chilson,Rd,0,0,0,0,0.578251,3,4 +40879,0,0.53792,1,1,0,2,4,,5,8,Coon Lake,Rd,0,0,0,0,12.910074,3,4 +40878,0,0.241469,1,1,0,2,4,,5,8,Chilson,Rd,0,0,0,0,5.795259,3,4 +39811,1,0.062897,2,0,0,2,4,,4,3,Martin,Pkwy,4416632,0,0.063,0,1.50952,4.5,4.5 +39812,-1,0.063805,0,2,0,2,4,,4,3,Martin,Pkwy,4403012,0,0.064,0,1.531323,4.5,4.5 +39577,1,0.037681,1,0,0,2,4,,5,5,Werkner,Rd,0,0,0,0,0.904343,3,4 +39576,1,0.094798,1,0,0,2,4,,5,5,M 52,,0,0,0,0,2.27516,3,4 +39570,1,0.064863,1,0,0,2,4,,5,5,Werkner,Rd,0,0,0,0,1.55671,3,4 +39575,-1,0.091982,0,1,0,2,4,,5,5,M 52,,0,0,0,0,2.207567,3,4 +39573,1,0.055463,1,0,0,2,4,,5,5,Werkner,Rd,0,0,0,0,1.331112,3,4 +39571,0,0.788861,1,1,0,2,5,,5,5,Werkner,Rd,0,0,0,0,18.932658,3.7,5 +39574,0,0.639991,1,1,0,2,4,,5,5,M 52,,0,0,0,0,15.359791,3,4 +39565,0,0.878306,1,1,0,2,4,,5,5,M 52,,0,0,0,0,21.079339,3,4 +39568,0,0.687853,1,1,0,2,5,,5,5,Werkner,Rd,0,0,0,0,16.508471,3.7,5 +39566,-1,0.07334,0,1,0,2,4,,5,5,M 52,,0,0,0,0,1.760153,3,4 +39291,0,0.127811,1,1,0,2,5,,4,3,Walnut Lake,Rd,622906,1.485,1.612,0,3.067468,5.8,4.5 +39290,0,0.286289,1,1,0,2,5,,4,3,Dutton,Rd,626101,4.03,4.316,0,6.870929,5.8,4.5 +39289,0,0.579815,1,1,0,2,5,GRV,4,3,Dutton,Rd,626101,3.202,3.782,0,13.915554,6.55,4.5 +39288,0,0.985676,1,1,0,2,5,GRV,5,3,Gunn,Rd,609405,5.031,6.016,0,23.656217,5.55,5 +39287,0,0.488523,1,1,0,2,4,GRV,4,3,Snell,Rd,609310,0.354,0.843,0,11.724563,6.55,4.5 +39286,0,0.333709,1,1,0,2,5,,4,3,Sheldon,Rd,605709,0.751,1.084,0,8.009016,5.8,4.5 +39299,0,1.483434,1,1,0,2,5,GRV,5,8,Burkhart,Rd,933208,4.37,5.852,0,35.602409,5.55,5 +39298,0,0.347757,1,1,0,2,5,,5,3,Martindale,Rd,656802,2.637,2.985,0,8.346176,3.7,5 +39301,0,1.396198,1,1,0,2,5,GRV,5,8,Clyde,Rd,939905,8.507,9.903,0,33.50875,5.55,5 +39302,0,1.12739,1,1,0,2,6,GRV,5,8,Nicholson,Rd,933006,5.806,6.933,0,27.057358,5.55,5 +39297,0,0.785223,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,3.134,3.918,0,18.845349,5.8,4.5 +39572,-1,0.067307,0,1,0,2,4,,5,5,Werkner,Rd,0,0,0,0,1.615366,3,4 +40875,0,0.208022,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.992519,0.15,4 +37259,-1,0.05193,0,2,0,2,3,,4,4,26 Mile,Rd,4212026,0,0.052,0,1.246327,3.7,5 +37262,-1,0.032918,0,3,0,2,3,DIV,4,4,26 Mile,Rd,4212025,0,0.033,0,0.790042,3.7,5 +39296,0,0.406596,1,1,0,2,5,GRV,4,3,Pontiac Lake,Rd,703707,2.331,2.737,0,9.758315,6.55,4.5 +39295,0,0.553569,1,1,0,2,5,,5,3,Rattalee Lake,Rd,649405,6.637,7.191,0,13.285665,3.7,5 +39294,0,0.903408,1,1,0,2,5,,4,3,Jackson,Blvd,649302,0.976,1.879,0,21.681802,5.8,4.5 +39293,0,0.277608,1,1,0,2,5,GRV,4,3,Jackson,Blvd,649302,0.699,0.976,0,6.662596,6.55,4.5 +39300,0,1.534027,1,1,0,2,5,GRV,5,8,Byron,Rd,939703,2.527,4.06,0,36.816639,5.55,5 +35724,1,0.425792,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,9.283,9.708,0,10.219007,3.7,5 +35725,0,0.021142,1,1,0,2,4,,4,4,17 Mile,Rd,5491826,0,0.021,0,0.507398,4.5,4.5 +39285,0,0.528117,1,1,0,2,5,GRV,5,3,Leonard,Rd,604205,2.608,3.136,0,12.674805,5.55,5 +39284,0,0.308232,1,1,0,2,5,,5,3,Elmwood,,604205,1.675,1.983,0,7.397568,3.7,5 +39279,1,0.019063,1,0,0,2,3,RSF,3,2,S I 75/Outer,RAMP,1595209,0.254,0.273,0,0.457501,5,5 +39277,0,0.389861,1,1,0,2,5,,5,5,Barker,Rd,1445807,1.573,1.963,0,9.356655,3.7,5 +39276,0,0.049467,2,2,0,2,5,,2,5,Medical Center,Dr,1839204,0.022,0.072,0,1.187219,8.5,4.5 +39275,0,0.753554,1,1,0,2,5,GRV,5,5,Saline Waterworks,Rd,1432706,5.498,6.251,0,18.0853,5.55,5 +35753,1,0.030774,1,0,0,2,4,,4,3,Tienken,Rd,626010,5.011,5.042,0,0.738585,4.5,4.5 +35754,-1,0.018426,0,1,0,2,4,,4,3,Tienken,Rd,4415702,0.031,0.05,0,0.442218,4.5,4.5 +35755,1,0.020729,1,0,0,2,4,,4,3,Sheldon,Rd,605709,0,0.021,0,0.4975,4.5,4.5 +35756,-1,0.016985,0,1,0,2,4,,4,3,Sheldon,Rd,4415701,0,0.017,0,0.40763,4.5,4.5 +35757,1,0.016976,1,0,0,2,4,,4,3,Tienken,Rd,626010,5.042,5.059,0,0.407422,4.5,4.5 +35758,1,0.046136,1,0,0,2,4,,4,3,Tienken,Rd,626010,5.059,5.105,0,1.107267,4.5,4.5 +35759,-1,0.038838,0,1,0,2,4,,4,3,Tienken,Rd,4415702,0.05,0.089,0,0.932105,4.5,4.5 +35760,0,0.125677,1,1,1,2,4,,4,3,Tienken,Rd,626010,5.105,5.231,0,3.016247,4.5,4.5 +35761,0,0.103846,1,1,1,2,4,,4,3,Tienken,Rd,626010,5.231,5.334,0,2.492308,4.5,4.5 +39810,1,0.019483,2,0,0,2,4,,4,3,Oakley Park,Rd,629707,2.839,2.859,0,0.467604,4.5,4.5 +35763,0,0.28497,1,1,0,2,4,,4,3,Tienken,Rd,626010,5.334,5.619,0,6.839291,4.5,4.5 +39809,1,0.063851,2,0,0,2,4,,4,3,Martin,Rd,631703,0.021,0.085,0,1.532414,4.5,4.5 +39808,1,0.021408,2,0,0,2,4,,4,3,Martin,Pkwy,631703,0,0.021,0,0.513796,4.5,4.5 +35766,1,0.047443,1,0,0,2,4,,4,3,Tienken,Rd,626010,5.619,5.667,0,1.138624,4.5,4.5 +35767,-1,0.053515,0,1,0,2,4,,4,3,Tienken,Rd,4415703,0,0.054,0,1.284356,4.5,4.5 +35768,-1,0.019114,0,1,0,2,4,,4,3,Washington,Rd,4415704,0.023,0.042,0,0.458738,4.5,4.5 +35769,-1,0.023747,0,1,0,2,4,,4,3,Tienken,Rd,4415703,0.054,0.077,0,0.569939,4.5,4.5 +35770,1,0.023408,1,0,0,2,4,,4,3,Washington,Rd,4415706,0.088,0.112,0,0.561791,4.5,4.5 +35771,1,0.018192,1,0,0,2,4,,4,3,Tienken,Rd,626010,5.667,5.685,0,0.436601,4.5,4.5 +35772,1,0.067549,1,0,0,2,4,,4,3,Runyon,Rd,4413806,0,0.068,0,1.621184,4.5,4.5 +35773,-1,0.063461,0,1,0,2,4,,4,3,Runyon,Rd,4415705,0,0.063,0,1.523056,4.5,4.5 +39807,-1,0.062676,0,2,0,2,4,,4,3,Martin,Rd,4416631,0.023,0.086,0,1.504214,4.5,4.5 +35776,0,0.493327,1,1,0,2,4,,4,3,Runyon,Rd,4413806,0.068,0.561,0,11.839856,4.5,4.5 +35779,-1,0.050667,0,1,0,2,4,,4,3,Washington,Rd,4415704,0.042,0.093,0,1.215996,4.5,4.5 +35780,1,0.044787,1,0,0,2,4,,4,3,Washington,Rd,4415706,0.112,0.156,0,1.074882,4.5,4.5 +35781,0,0.353311,1,1,0,2,5,GRV,4,3,Washington,Rd,4415706,0.156,0.51,0,8.479459,6.55,4.5 +37162,0,0.034514,1,1,0,3,96,,2,1,Walk Link,,0,0,0,0,0.828343,0.15,4 +37902,-1,0.022926,0,1,0,2,4,,4,3,Washington,Rd,4415704,0,0.023,0,0.55023,4.5,4.5 +37878,0,0.568451,1,1,0,2,7,,4,3,Tienken,Rd,626010,0,0.568,0,13.642817,6.55,4.5 +41122,0,0.652197,1,1,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,15.652717,3,4 +41121,0,0.666191,1,1,0,2,5,,5,7,Allen,Rd,0,0,0,0,15.988584,3.7,5 +41145,1,0.288931,3,0,0,1,1,,4,3,N I 75,,0,0,0,0,,0.8,7.5 +41144,-1,0.87835,0,3,0,1,1,,4,3,S I 75,,0,0,0,0,,0.8,7.5 +41143,1,0.761206,2,0,0,1,1,,4,3,N I 75 BL,,0,0,0,0,,0.8,7.5 +41146,1,0.229868,3,0,0,1,1,,4,3,N I 75,,0,0,0,0,,0.8,7.5 +40922,0,0.266,1,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,6.384005,8,4.5 +40296,-1,0.221726,0,2,0,2,4,DIV,3,3,John R,Rd,4463374,0.615,0.836,0,5.321421,6,4.5 +40928,-1,0.026163,0,1,0,2,5,,3,5,Dhu Varren,Rd,0,0,0,0,0.627913,8,4.5 +40295,-1,0.437879,0,2,0,2,4,DIV,3,3,John R,Rd,4463374,0.177,0.615,0,10.509094,6,4.5 +40920,0,0.450749,1,1,0,2,5,,3,5,Dhu Varren,Rd,0,0,0,0,10.817967,8,4.5 +40919,0,0.154443,1,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,3.706632,8,4.5 +40364,0,0.406276,2,2,1,2,3,,4,3,Rochester,Rd,4413538,6.669,7.075,0,9.750629,3.7,5 +40388,1,0.015327,1,0,0,2,4,,4,5,W Geddes/E Geddes,TURN,4606200,0,0.015,0,0.367844,4.5,4.5 +40366,-1,0.302295,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4416844,0.259,0.561,0,7.255079,3.7,5 +40389,1,0.016337,1,0,0,2,4,,4,5,Geddes,Rd,1448104,3.246,3.263,0,0.392093,4.5,4.5 +40297,0,0.298954,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.174891,0.15,4 +40298,0,0.553289,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.278943,0.15,4 +40926,-1,0.023469,0,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.563262,8,4.5 +40404,0,0.121327,2,2,1,2,3,,4,3,Livernois,Rd,625408,8.13,8.252,0,2.911857,3.7,5 +40406,1,0.28781,2,0,0,2,3,DIV,4,3,Livernois,Rd,625408,8.252,8.539,0,6.907446,3.7,5 +40408,-1,0.680126,0,2,0,2,3,DIV,4,3,Livernois,Rd,4416832,0.283,0.963,0,16.323029,3.7,5 +40355,1,0.637223,3,0,0,2,3,DIV,4,3,University,Dr,624301,3.795,4.432,0,15.293358,3.7,5 +40356,-1,0.407157,0,3,0,2,3,DIV,4,3,University,Dr,5500949,0.899,1.306,0,9.771774,3.7,5 +40357,0,0.101616,1,1,1,2,5,,4,3,Five Points,Dr,4463363,0,0.102,0,2.438793,5.8,4.5 +40358,-1,0.363099,0,3,0,2,3,DIV,4,3,Squirrel,Rd,4414559,2.756,3.119,0,8.714373,3.7,5 +40359,1,0.430675,3,0,0,2,3,DIV,4,3,Squirrel,Rd,4414558,2.75,3.181,0,10.33621,3.7,5 +40360,-1,0.242547,0,3,0,2,3,DIV,4,3,University,Dr,5500949,1.306,1.549,0,5.821138,3.7,5 +40287,-1,0.49461,0,2,0,2,5,DV2,3,4,Lorraine,Blvd,5495391,0,0.495,0,11.870649,8,4.5 +40290,-1,0.008767,0,2,0,2,5,DV2,3,4,Lorraine,Ave,5495391,0.495,0.503,0,0.210414,8,4.5 +40289,-1,0.49671,0,2,0,2,5,DV2,3,4,Lorraine,Ave,5495391,0.503,1,0,11.92104,8,4.5 +40293,-1,0.164223,0,2,0,2,4,DIV,3,3,John R,Rd,4463374,0,0.164,0,3.941341,6,4.5 +40294,-1,0.01315,0,2,0,2,4,DIV,3,3,John R,Rd,4463374,0.164,0.177,0,0.315612,6,4.5 +40301,1,0.038746,1,0,0,2,5,,2,3,Center,,0,0,0,0,0.929905,8.5,4.5 +37941,0,0.130006,1,1,1,2,3,,3,5,State,St,1427508,4.557,4.686,0,3.120143,5,5 +37942,0,0.205522,1,1,0,2,7,,3,5,Boardwalk,St,1444305,0.577,0.782,0,4.932529,7,4.5 +37943,0,0.252519,1,1,0,2,5,,3,5,Oakbrook,Dr,4605509,0,0.252,0,6.060466,8,4.5 +39100,0,1.22905,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.497192,0.15,4 +37548,1,0.015582,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.588,1.603,0,0.373972,3.7,5 +35861,1,0.760429,2,0,0,2,4,DV2,4,2,Van Horn,Rd,1674101,7.683,8.443,0,18.250294,4.5,4.5 +40198,1,0.015012,1,0,0,2,3,,3,3,S Rochester/N I 75,RAMP,5492912,0,0.015,0,0.360289,5,5 +39703,0,0.589602,1,1,1,2,5,,5,2,Wahrman,Rd,4719472,1.443,2.032,0,14.150446,3.7,5 +39704,0,0.15156,1,1,1,2,5,,4,5,Arkona,Rd,1439605,0.714,0.866,0,3.637443,5.8,4.5 +40117,-1,0.129005,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,4416846,1.421,1.55,0,3.096129,3.7,5 +40014,0,0.380558,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,0.233,0.613,0,9.133394,3.7,5 +40118,0,0.507958,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.19099,0.15,4 +40863,1,0.296809,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,7.123416,6,4.5 +40871,-1,0.109201,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,2.620815,6,4.5 +40867,-1,0.155721,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,3.737294,6,4.5 +40868,1,0.15478,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,3.714715,6,4.5 +40873,1,0.130784,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,3.138808,6,4.5 +40874,0,0.373174,2,2,1,2,3,,3,1,Oakwood,Blvd,0,0,0,0,8.956172,5,5 +40858,1,0.025407,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,0.609757,6,4.5 +40859,1,0.023026,1,0,0,2,4,,3,3,Evergreen Turnaround,,0,0,0,0,0.552616,6,4.5 +40860,-1,0.022496,0,1,0,2,4,,3,3,Evergreen Turnaround,,0,0,0,0,0.539899,6,4.5 +39636,1,0.004536,1,0,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +40869,-1,0.189919,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,4.558067,6,4.5 +39637,-1,1.000862,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39638,1,0.003433,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39639,1,0.460905,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39640,-1,0.004047,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39641,-1,0.227696,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +40917,-1,0.146966,0,2,0,2,4,,4,4,William P Rosso,Hwy,0,0,0,0,3.527192,4.5,4.5 +40927,1,0.025716,1,0,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.617179,8,4.5 +40470,-1,0.241533,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,3.505,3.746,0,5.796781,4.5,4.5 +40469,0,0.011689,2,2,0,2,3,,4,3,Long Lake,Rd,641102,9.256,9.268,0,0.280547,3.7,5 +40468,-1,0.543636,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,2.961,3.505,0,13.047265,4.5,4.5 +40478,-1,0.484009,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,2.029,2.513,0,11.616216,4.5,4.5 +40002,1,0.040738,2,0,0,2,3,,4,3,14 Mile,Rd,5500000,0,0.041,0,0.977719,3.7,5 +40004,1,0.024162,3,0,0,2,3,,4,3,14 Mile,Rd,5500000,0.131,0.155,0,0.579892,3.7,5 +40003,1,0.09011,2,0,0,2,3,,4,3,14 Mile,Rd,5500000,0.041,0.131,0,2.162642,3.7,5 +41134,1,0.035283,1,0,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,0.846788,3,4 +41125,0,0.481242,1,1,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,11.549814,3,4 +41135,1,0.044884,1,0,0,2,5,,5,7,Allen,Rd,0,0,0,0,1.077209,3.7,5 +41131,1,0.049553,1,0,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,1.189282,3,4 +41127,-1,0.031545,0,1,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,0.757088,3,4 +41132,-1,0.046253,0,1,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,1.110082,3,4 +41129,-1,0.034719,0,1,0,2,4,,5,7,Allen,Rd,0,0,0,0,0.833258,3,4 +41142,1,0.993381,2,0,0,1,1,,4,3,S I 75 BL/N I 75,RAMP,0,0,0,0,,0.8,7.5 +41141,1,1.105072,3,0,0,1,1,,4,3,N I 75,,0,0,0,0,,0.8,7.5 +41140,0,2.024342,1,1,0,2,5,GRV,5,3,Sashabaw,Rd,0,0,0,0,48.584204,5.55,5 +41139,0,1.006568,1,1,0,2,5,,5,3,Sashabaw,Rd,0,0,0,0,24.157625,3.7,5 +41138,-1,0.03678,0,1,0,2,5,,5,7,Allen,Rd,0,0,0,0,0.882728,3.7,5 +41137,1,0.03869,1,0,0,2,5,,5,7,Allen,Rd,0,0,0,0,0.928564,3.7,5 +41136,-1,0.044554,0,1,0,2,5,,5,7,Allen,Rd,0,0,0,0,1.069306,3.7,5 +41128,1,0.033775,1,0,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,0.810603,3,4 +41133,-1,0.042084,0,1,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,1.010014,3,4 +41126,0,0.777672,1,1,0,2,5,,5,7,Allen,Rd,0,0,0,0,18.664116,3.7,5 +41094,-1,0.196116,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,4.706774,3.7,5 +41095,1,0.196115,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,4.706766,3.7,5 +41096,-1,0.300623,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,7.214953,3.7,5 +41097,1,0.300439,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,7.210537,3.7,5 +41098,-1,0.235204,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,5.644899,3.7,5 +41099,1,0.235204,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,5.644899,3.7,5 +40614,0,0.488355,1,1,0,2,4,,5,8,Brighton,Rd,940301,0.532,1.02,0,11.720522,3,4 +41324,1,0.492345,2,0,0,2,3,DIV,5,4,N M 53,,0,0,0,0,11.816284,1.7,4 +41325,1,0.024652,1,0,0,2,3,,3,4,M 53 Crossover,,0,0,0,0,0.59166,5,5 +41326,1,0.505297,2,0,0,2,3,DIV,5,4,N M 53,,0,0,0,0,12.12714,1.7,4 +41327,-1,0.502756,0,2,0,2,3,DIV,5,4,S M 53,,0,0,0,0,12.066144,1.7,4 +41328,1,0.023831,1,0,0,2,3,,5,4,M 53 Crossover,,0,0,0,0,0.571941,1.7,4 +41329,0,0.163249,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.917984,0.15,4 +40336,-1,0.016759,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0.191,0.208,0,0.402227,3.7,5 +40334,-1,0.19103,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0,0.191,0,4.584726,3.7,5 +40335,1,0.028864,2,0,0,2,3,DIV,4,3,University,Dr,624301,3.075,3.104,0,0.692731,3.7,5 +40349,1,0.019516,2,0,0,2,5,,4,3,Pontiac,Rd,677501,1.129,1.149,0,0.468383,5.8,4.5 +40323,-1,0.027348,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0.432,0.46,0,0.656344,3.7,5 +40320,1,0.04105,2,0,0,2,3,DIV,4,3,University,Dr,624301,3.354,3.395,0,0.98521,3.7,5 +40316,1,0.210044,1,0,0,1,1,RON,4,3,University/N I 75,RAMP,5500951,0.044,0.254,0,,1.09,4 +40676,-1,0.103423,0,2,0,2,4,DIV,3,1,Grand,Blvd,5494519,0.02,0.123,0,2.48216,6,4.5 +39303,0,1.332847,1,1,0,2,7,,5,8,Schafer,Rd,944107,1.007,2.339,0,31.988325,5.8,6 +39304,0,0.691563,1,1,0,2,5,GRV,5,7,Meisner,Rd,967607,1.301,1.992,0,16.597512,5.55,5 +39305,0,0.326054,1,1,0,2,6,,5,7,Church,Rd,965408,4.884,5.21,0,7.825296,5.8,6 +39306,0,1.023119,1,1,0,2,6,GRV,5,7,Church,Rd,965408,5.21,6.233,0,24.554864,5.55,5 +39307,0,0.744406,1,1,0,2,6,,5,7,Burt,Rd,972704,10.492,11.236,0,17.865732,5.8,6 +39308,0,0.750172,1,1,0,2,6,,5,7,Burt,Rd,972704,6.232,6.982,0,18.00414,5.8,6 +39309,0,0.048842,1,1,0,2,6,,5,7,Brott,Rd,973302,1,1.048,0,1.172212,5.8,6 +39310,0,2.460658,1,1,0,2,6,GRV,5,7,Foley,Rd,972503,2,4.46,0,59.055782,5.55,5 +39311,0,0.083162,1,1,0,2,5,,5,5,Saline Waterworks,Rd,1432706,7.026,7.109,0,1.9959,3.7,5 +39315,0,0.599354,1,1,0,2,5,GRV,5,5,Earhart,Rd,4600037,2.114,2.714,0,14.384492,5.55,5 +39312,0,0.846679,1,1,0,2,4,,4,5,Textile,Rd,1432903,7.392,8.239,0,20.320298,4.5,4.5 +39316,0,0.146024,1,1,0,2,7,,4,5,Warner,Rd,4602926,1.407,1.553,0,3.504571,6.55,4.5 +39317,0,0.249522,1,1,0,2,7,GRV,4,5,Morgan,Rd,1437402,0.5,0.749,0,5.988521,6.55,4.5 +39314,0,0.398464,1,1,0,2,5,,4,5,Merritt,Rd,1438204,1.243,1.642,0,9.563145,5.8,4.5 +39318,0,0.82098,1,1,0,2,7,GRV,3,5,Traver,Rd,1443305,1.068,1.889,0,19.703515,7,4.5 +39313,0,1.435024,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,0.963,2.398,0,34.440588,5.55,5 +40888,1,0.040606,1,0,0,2,4,,5,8,Chilson,Rd,0,0,0,0,0.974532,3,4 +40887,-1,0.081836,0,1,0,2,4,,5,8,Chilson,Rd,0,0,0,0,1.964067,3,4 +40886,1,0.076198,1,0,0,2,4,,5,8,Chilson,Rd,0,0,0,0,1.828745,3,4 +40885,-1,0.022635,0,1,0,2,4,,5,8,Coon Lake,Rd,0,0,0,0,0.543232,3,4 +40615,0,0.126494,1,1,0,2,4,,5,8,Chilson,Rd,940206,2.451,2.578,0,3.035853,3,4 +40924,0,0.261302,1,1,0,2,5,,3,5,Green,Rd,0,0,0,0,6.271258,8,4.5 +40925,1,0.027028,1,0,0,2,5,,3,5,Dhu Varren,Rd,0,0,0,0,0.648679,8,4.5 +40929,1,0.031626,1,0,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.759026,8,4.5 +40930,-1,0.036658,0,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.87978,8,4.5 +40931,-1,0.025593,0,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.61423,8,4.5 +40932,1,0.03415,1,0,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.819602,8,4.5 +40933,1,0.02812,1,0,0,2,5,,3,5,Dhu Varren,Rd,0,0,0,0,0.674889,8,4.5 +40934,-1,0.032999,0,1,0,2,5,,3,5,Dhu Varren,Rd,0,0,0,0,0.791979,8,4.5 +40935,1,0.036358,1,0,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.872603,8,4.5 +40936,-1,0.042804,0,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,1.027295,8,4.5 +40946,-1,0.031223,0,1,0,2,4,,4,3,Napier,Rd,0,0,0,0,0.749347,4.5,4.5 +40938,0,0.924741,1,1,0,2,4,,4,3,Napier,Rd,0,0,0,0,22.193789,4.5,4.5 +40939,0,0.397039,1,1,0,2,3,,5,3,10 Mile,Rd,0,0,0,0,9.528942,1.7,4 +40947,1,0.031331,1,0,0,2,4,,4,3,Napier,Rd,0,0,0,0,0.751955,4.5,4.5 +40587,-1,0.050976,0,1,0,2,4,,4,5,Geddes,Rd,5499930,0,0.051,0,1.223421,4.5,4.5 +40588,-1,0.039349,0,1,0,2,5,,4,5,Ridge,Rd,5499929,0.059,0.099,0,0.944365,5.8,4.5 +40589,1,0.043661,1,0,0,2,5,,4,5,Ridge,Rd,4603889,0.018,0.062,0,1.047872,5.8,4.5 +40500,-1,0.014998,0,1,0,2,4,,4,4,Romeo Plank,Rd,4212036,0.026,0.041,0,0.359943,4.5,4.5 +40501,-1,0.020144,0,1,0,2,4,,4,4,Canal,Rd,4212037,0.021,0.042,0,0.483462,4.5,4.5 +40502,1,0.016585,1,0,0,2,4,,4,4,Canal,Rd,820607,5.303,5.319,0,0.39805,4.5,4.5 +40503,1,0.015037,1,0,0,2,4,,4,4,Romeo Plank,Rd,819207,0.794,0.809,0,0.360885,4.5,4.5 +40504,1,0.020534,1,0,0,2,4,,4,4,Canal,Rd,820607,5.319,5.34,0,0.492804,4.5,4.5 +40505,-1,0.020311,0,1,0,2,4,,4,4,Canal,Rd,4212037,0.042,0.062,0,0.487466,4.5,4.5 +40515,0,0.137063,1,1,0,2,3,,5,6,Saint Anthony,Rd,1223208,3.99,4.127,0,3.289506,1.7,4 +40516,1,0.046235,1,0,0,2,3,,5,6,Saint Anthony,Rd,1223208,4.127,4.173,0,1.10964,1.7,4 +40517,-1,0.047804,0,1,0,2,3,,5,6,US 223,,5493544,0,0.048,0,1.147297,1.7,4 +40518,1,0.018228,1,0,0,1,2,RON,5,6,Saint Anthony/N US 23,RAMP,1223507,0,0.018,0,,1.09,4 +40519,1,0.216949,1,0,0,1,2,RON,5,6,Saint Anthony/N US 23,RAMP,1223507,0.018,0.235,0,,1.09,4 +40520,1,0.023993,1,0,0,2,4,,5,6,Saint Anthony,Rd,1223208,4.173,4.197,0,0.575837,3,4 +40521,-1,0.022776,0,1,0,2,4,,5,6,Saint Anthony,Rd,5493545,0,0.023,0,0.546627,3,4 +40522,1,0.36556,1,0,0,1,2,ROF,5,6,N US 23/Saint Anthony,RAMP,1223506,0,0.365,0,,2.24,5 +40523,0,0.898295,1,1,0,2,4,,5,6,Saint Anthony,Rd,1223208,4.197,5.095,0,21.559071,3,4 +40525,-1,0.439881,0,2,0,1,2,,5,6,S US 23,,1223504,4.89,5.329,0,,1.02,7 +40471,-1,0.289493,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,4.206,4.496,0,6.947823,4.5,4.5 +40472,-1,0.459973,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,3.746,4.206,0,11.039348,4.5,4.5 +40473,0,0.326536,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.836859,0.15,4 +40474,0,0.287993,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.911827,0.15,4 +40475,0,0.398055,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.55332,0.15,4 +40476,0,0.273741,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.56979,0.15,4 +40477,0,0.24845,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.962801,0.15,4 +40479,0,0.458977,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.015447,0.15,4 +40480,0,0.341734,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.201606,0.15,4 +40481,-1,0.331295,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4463391,1.698,2.029,0,7.951087,6,4.5 +40482,0,0.181405,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.35372,0.15,4 +40483,0,0.298394,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.161454,0.15,4 +40484,0,0.165014,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.960337,0.15,4 +40485,-1,0.205141,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4463391,1.259,1.464,0,4.923394,6,4.5 +40486,0,0.179842,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.316218,0.15,4 +40487,0,0.210076,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.041833,0.15,4 +40488,0,0.329834,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.916026,0.15,4 +40489,0,0.522258,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.534194,0.15,4 +40494,-1,0.021275,0,1,0,2,4,,4,4,Canal,Rd,4212037,0,0.021,0,0.510595,4.5,4.5 +40495,1,0.025157,1,0,0,2,4,,4,4,Canal,Rd,820607,5.278,5.303,0,0.60376,4.5,4.5 +40496,-1,0.020911,0,1,0,2,4,,4,4,Romeo Plank,Rd,4212036,0.041,0.062,0,0.501859,4.5,4.5 +40497,1,0.025921,1,0,0,2,4,,4,4,Romeo Plank,Rd,819207,0.809,0.835,0,0.622111,4.5,4.5 +40498,-1,0.026062,0,1,0,2,4,,4,4,Romeo Plank,Rd,4212036,0,0.026,0,0.625483,4.5,4.5 +40499,1,0.023406,1,0,0,2,4,,4,4,Romeo Plank,Rd,819207,0.77,0.794,0,0.561742,4.5,4.5 +40456,1,0.355927,1,0,0,1,1,RON,4,8,Latson/W I 96,RAMP,5490672,0,0.356,0,,1.09,4 +40457,1,0.426545,1,0,0,1,1,ROF,4,8,W I 96/Latson,RAMP,5490673,0,0.426,0,,2.24,5 +40458,1,0.483515,1,0,0,1,1,RON,5,8,Nixon/E I 96,RAMP,5490670,0,0.483,0,,1.09,4 +40459,-1,0.739072,0,3,0,1,1,,4,8,W I 96,,935207,15.213,15.952,0,,0.8,7.5 +40460,1,0.652814,3,0,0,1,1,,5,8,E I 96,,935105,15.985,16.638,0,,1.02,7 +40461,-1,0.586666,0,3,0,1,1,,4,8,W I 96,,935207,15.952,16.539,0,,0.8,7.5 +40462,0,1.415016,1,1,0,2,4,,5,8,Latson,Rd,940302,1.041,2.455,0,33.960394,3,4 +40463,0,0.439405,2,2,1,2,4,,4,8,Latson,Rd,5490669,0.144,0.583,0,10.545711,4.5,4.5 +40464,0,0.127948,2,2,1,2,4,,5,8,Latson,Rd,940302,2.455,2.583,0,3.070748,3,4 +39102,0,1.923839,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,46.172138,0.15,4 +39103,0,1.3663,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.791203,0.15,4 +39104,0,1.063836,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.532061,0.15,4 +40662,0,0.021747,2,2,1,2,3,,4,3,Crooks,Rd,659810,10.52,10.542,0,0.521925,3.7,5 +40663,0,0.207319,2,2,0,2,3,,4,3,Crooks,Rd,659810,10.313,10.52,0,4.975648,3.7,5 +40146,-1,0.052201,0,2,0,2,4,,4,3,Grand River,Ave,4416578,0,0.052,0,1.252817,4.5,4.5 +40465,0,0.143996,2,2,1,2,4,,4,8,Latson,Rd,5490669,0,0.144,0,3.455896,4.5,4.5 +40466,-1,0.449001,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,2.513,2.961,0,10.776019,4.5,4.5 +39579,-1,0.035717,0,1,0,2,4,,5,5,Werkner,Rd,0,0,0,0,0.857214,3,4 +39578,1,0.035645,1,0,0,2,4,,5,5,M 52,,0,0,0,0,0.855471,3,4 +40650,0,0.028836,1,1,0,2,6,,3,1,Georgia,St,1586506,0,0.029,0,0.692073,7,4.5 +40651,0,0.23234,1,1,0,2,6,,3,1,Georgia,St,1586506,0.029,0.261,0,5.576161,7,4.5 +40653,0,0.235095,1,1,0,2,5,,2,7,Merchant,St,975607,0.059,0.294,0,5.642275,8.5,4.5 +40652,0,0.097505,1,1,0,2,5,,2,7,Quay,St,4502551,0.288,0.386,0,2.340119,8.5,4.5 +40658,0,0.214664,1,1,0,2,5,,4,7,Belle River,Ave,966610,1.072,1.287,0,5.151933,5.8,4.5 +40655,1,0.089356,1,0,0,2,5,DV2,2,7,McMorran,Blvd,5492776,0.272,0.362,0,2.144537,8.5,4.5 +40656,-1,0.08982,0,1,0,2,5,DV2,2,7,McMorran,Blvd,4500354,0.062,0.152,0,2.155675,8.5,4.5 +40660,0,0.013975,1,1,0,2,6,,5,3,Dunlap,Rd,627009,1.302,1.316,0,0.335397,5.8,6 +40661,0,1.136837,1,1,0,2,6,GRV,5,3,Dunlap,Rd,627010,3.828,4.964,0,27.284091,5.55,5 +40627,0,0.617247,1,1,0,2,5,,4,6,7th,St,4302993,0,0.617,0,14.813919,5.8,4.5 +40628,0,0.581032,1,1,0,2,4,,4,2,Grosse Ile,Pkwy,1692407,0.769,1.35,0,13.944775,4.5,4.5 +40629,0,0.613248,1,1,0,2,5,,4,2,River,Rd,1691206,1.312,1.925,0,14.717953,5.8,4.5 +40630,0,0.095428,1,1,0,2,4,,4,2,River Access,Rd,4710788,0,0.095,0,2.290282,4.5,4.5 +40631,-1,0.26561,0,2,0,2,3,DIV,3,2,Northline,Rd,4707653,0.139,0.404,0,6.374652,5,5 +40632,-1,0.01992,0,1,0,2,3,,3,2,Reeck,Rd,4705866,1.537,1.557,0,0.478081,5,5 +40633,0,0.022305,2,2,1,2,5,,5,2,Huron,Rd,1607304,2.39,2.412,0,0.535323,3.7,5 +40634,1,0.068043,1,0,0,1,2,ROF,3,2,N M 39/Van Born,RAMP,1589506,0.274,0.342,0,,2.24,5 +40635,-1,0.34385,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.073,0.417,0,8.252407,8,4.5 +40636,1,0.018494,1,0,0,2,5,,3,2,Van Born/Southfield Cutoff,,1869602,0,0.019,0,0.443852,8,4.5 +40637,0,0.028889,1,1,0,2,5,,1,1,State,St,4718987,0,0.029,0,0.693334,8.5,4.5 +40638,-1,0.087392,0,2,0,1,5,,3,1,Kentfield,St,1590506,0.398,0.485,0,,8,4.5 +40639,1,0.041244,3,0,0,2,5,,3,1,E I 96 Service Drive,,4700002,0.445,0.486,0,0.989853,8,4.5 +40640,-1,0.048019,0,1,0,1,5,,3,1,Kentfield,St,5495061,0,0.048,0,,8,4.5 +40641,-1,0.107283,0,3,0,2,5,,3,1,W I 96 Service Drive,,1598908,0.128,0.235,0,2.574784,8,4.5 +40642,0,0.113678,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.137,5.251,0,2.728263,5,5 +40643,0,0.743395,1,1,0,2,6,,3,1,Strong,St,1631803,0,0.743,0,17.841491,7,4.5 +40644,0,0.23168,1,1,0,2,3,,3,1,Mount Elliott,St,1577808,4.009,4.241,0,5.56031,5,5 +40645,0,0.120864,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.507,0.628,0,2.900732,8,4.5 +40646,0,0.010615,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.496,0.507,0,0.254761,8,4.5 +40647,0,0.04178,3,3,0,2,3,,3,1,Van Dyke,St,1577904,1.108,1.15,0,1.002713,5,5 +40648,0,0.494501,1,1,0,2,6,,3,1,Georgia,St,1631905,0,0.494,0,11.868035,7,4.5 +40649,0,0.026371,1,1,0,2,6,,3,1,Georgia,St,1631905,0.494,0.521,0,0.632896,7,4.5 +40590,-1,0.069475,0,1,0,2,4,,4,5,Geddes,Rd,5499930,0.066,0.135,0,1.66741,4.5,4.5 +40591,1,0.069427,1,0,0,2,4,,4,5,Geddes,Rd,4603888,0,0.069,0,1.666253,4.5,4.5 +40592,1,0.037617,1,0,0,2,5,,4,5,Ridge,Rd,1428402,1.588,1.625,0,0.902809,5.8,4.5 +40593,-1,0.041286,0,1,0,2,5,,4,5,Ridge,Rd,5499929,0,0.041,0,0.990872,5.8,4.5 +40594,1,0.018295,1,0,0,2,4,,4,5,Geddes,Rd,1448104,9.703,9.721,0,0.439082,4.5,4.5 +40595,1,0.018301,1,0,0,2,4,,4,5,Ridge,Rd,4603889,0,0.018,0,0.439228,4.5,4.5 +40596,-1,0.014827,0,1,0,2,4,,4,5,Geddes,Rd,5499930,0.051,0.066,0,0.355842,4.5,4.5 +40597,-1,0.017853,0,1,0,2,4,,4,5,Ridge,Rd,5499929,0.041,0.059,0,0.428474,4.5,4.5 +40598,0,0.133241,1,1,0,2,4,,2,1,3rd,St,4708767,0.848,0.981,0,3.197777,8,4.5 +40599,-1,0.018902,0,2,0,2,4,DV2,2,1,3rd,St,4708767,0.981,1,0,0.453657,8,4.5 +40600,1,0.017124,2,0,0,2,4,DV2,2,1,3rd,St,5500021,0,0.017,0,0.410971,8,4.5 +40616,0,0.097374,1,1,0,2,4,,5,8,Chilson/Brighton Cutoff,,4105305,0,0.097,0,2.336973,3,4 +40617,0,2.044633,1,1,0,2,6,GRV,5,8,Bauer,Rd,940108,0.589,2.633,0,49.071201,5.55,5 +40618,0,0.503126,1,1,0,2,5,,5,5,Manchester,Rd,1426204,0,0.503,0,12.075027,3.7,5 +40619,0,0.366118,1,1,0,2,5,,5,5,North,St,1426306,0,0.366,0,8.786838,3.7,5 +40620,0,0.130179,1,1,0,2,5,,5,5,Hayes,St,1452604,0,0.13,0,3.124289,3.7,5 +40621,0,0.1177,1,1,0,2,4,,5,5,Main,St,1425710,18.707,18.824,0,2.824796,3,4 +40622,0,0.163448,1,1,0,2,6,,5,5,Dewey,St,1426308,0,0.163,0,3.922763,5.8,6 +40623,0,0.138163,1,1,0,2,6,,5,5,McKinley,St,1451005,0.076,0.214,0,3.315923,5.8,6 +40624,0,0.04302,1,1,0,2,4,,4,5,Main,St,1446002,0.715,0.758,0,1.03247,4.5,4.5 +40625,0,0.292787,1,1,0,2,5,,4,5,Broad,St,4604061,0,0.293,0,7.026894,5.8,4.5 +40626,0,0.120536,1,1,0,2,5,,4,5,3rd,St,4603162,0.472,0.592,0,2.892869,5.8,4.5 +40562,1,0.021632,2,0,0,2,4,,4,3,Livernois,Rd,625408,10.149,10.17,0,0.519166,4.5,4.5 +40563,0,0.063496,2,2,1,2,4,,4,3,Hamlin,Rd,606606,0.109,0.173,0,1.523912,4.5,4.5 +40564,1,0.397043,2,0,0,2,4,DIV,4,3,Hamlin,Rd,606606,0.173,0.57,0,9.52903,4.5,4.5 +40565,-1,0.4068,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4416644,0,0.407,0,9.763193,4.5,4.5 +40566,1,0.461937,2,0,0,2,4,DIV,4,3,Hamlin,Rd,606606,0.57,1.031,0,11.086482,4.5,4.5 +40567,-1,0.455165,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4416644,0.407,0.862,0,10.923964,4.5,4.5 +40568,0,0.456063,1,1,1,2,4,,4,3,Hamlin,Rd,606606,1.113,1.569,0,10.945518,4.5,4.5 +40569,0,0.231055,1,1,0,2,4,,4,3,Livernois,Rd,625408,7.212,7.443,0,5.545324,4.5,4.5 +40570,0,0.464435,1,1,0,2,4,,4,3,Livernois,Rd,625408,6.641,7.106,0,11.146437,4.5,4.5 +40571,1,0.04738,2,0,0,2,4,,4,3,Livernois,Rd,625408,7.106,7.153,0,1.137113,4.5,4.5 +40572,-1,0.049231,0,2,0,2,4,,4,3,Livernois,Rd,4416643,0,0.049,0,1.181554,4.5,4.5 +40573,-1,0.018065,0,2,0,2,4,,4,3,Livernois,Rd,4416643,0.049,0.067,0,0.43357,4.5,4.5 +40574,1,0.018888,2,0,0,2,4,,4,3,Livernois,Rd,625408,7.153,7.172,0,0.453319,4.5,4.5 +40575,1,0.04021,2,0,0,2,4,,4,3,Livernois,Rd,625408,7.172,7.212,0,0.965037,4.5,4.5 +40576,-1,0.040256,0,2,0,2,4,,4,3,Livernois,Rd,4416643,0.067,0.108,0,0.966142,4.5,4.5 +40577,-1,0.019352,0,2,0,2,4,,4,3,Hamlin,Rd,4416644,0.862,0.881,0,0.464448,4.5,4.5 +40578,-1,0.059352,0,2,0,2,4,,4,3,Hamlin,Rd,4416644,0.881,0.94,0,1.424453,4.5,4.5 +40579,1,0.060041,2,0,0,2,4,,4,3,Hamlin,Rd,606606,1.053,1.113,0,1.440972,4.5,4.5 +40580,1,0.021405,2,0,0,2,4,,4,3,Hamlin,Rd,606606,1.031,1.053,0,0.51372,4.5,4.5 +40581,0,0.261249,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.26997,0.15,4 +40582,0,1.176934,1,1,0,2,5,,5,5,Ridge,Rd,4603889,0.062,1.239,0,28.246416,3.7,5 +40583,0,0.43449,1,1,0,2,4,,4,5,Geddes,Rd,4603888,0.069,0.504,0,10.427749,4.5,4.5 +40584,0,0.451017,1,1,0,2,4,,4,5,Geddes,Rd,1448104,9.204,9.655,0,10.824396,4.5,4.5 +40585,0,0.965903,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0.622,1.588,0,23.181673,5.8,4.5 +40586,1,0.047209,1,0,0,2,4,,4,5,Geddes,Rd,1448104,9.655,9.703,0,1.133006,4.5,4.5 +39642,-1,0.003223,0,1,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39643,1,1.623142,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39599,0,0.769467,1,1,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,18.467219,4.5,4.5 +39598,1,0.269987,2,0,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,6.479694,4.5,4.5 +39597,-1,0.270534,0,2,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,6.492815,4.5,4.5 +39596,1,0.024148,2,0,0,2,4,,4,3,Judah,Rd,0,0,0,0,0.57954,4.5,4.5 +39595,1,0.024794,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.595044,4.5,4.5 +39594,-1,0.025363,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.608716,4.5,4.5 +39593,-1,0.023886,0,2,0,2,4,,4,3,Judah,Rd,0,0,0,0,0.573262,4.5,4.5 +39592,1,0.075951,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.822831,4.5,4.5 +39591,-1,0.075441,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.810581,4.5,4.5 +39590,0,0.285807,2,2,1,2,4,,4,3,Baldwin,Rd,0,0,0,0,6.859373,4.5,4.5 +39589,1,0.066135,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.587247,4.5,4.5 +39588,-1,0.068393,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.641423,4.5,4.5 +39587,1,0.030084,2,0,0,2,4,,4,3,Gregory,Rd,0,0,0,0,0.722011,4.5,4.5 +39586,1,0.030684,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.736412,4.5,4.5 +39585,-1,0.031051,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.745223,4.5,4.5 +39584,-1,0.030096,0,2,0,2,4,,4,3,Gregory,Rd,0,0,0,0,0.722301,4.5,4.5 +39580,-1,0.033872,0,1,0,2,4,,5,5,M 52,,0,0,0,0,0.812927,3,4 +40019,0,0.166627,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,4.771,4.937,0,3.999042,3.7,5 +40067,0,0.374628,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.991065,0.15,4 +40068,0,0.225548,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.413164,0.15,4 +40069,1,0.260127,2,0,0,2,4,DIV,4,3,Featherstone,,616508,0.103,0.363,0,6.243051,4.5,4.5 +40612,0,1.004345,1,1,0,2,6,GRV,5,8,Crooked Lake,Rd,940406,2.05,3.053,0,24.104287,5.55,5 +40613,0,1.014404,1,1,0,2,6,,5,8,Crooked Lake,Rd,940406,3.053,4.067,0,24.345686,5.8,6 +39804,-1,0.022626,0,2,0,2,4,,4,3,Oakley Park,Rd,4416630,0.066,0.089,0,0.543015,4.5,4.5 +40032,-1,0.063648,0,3,0,2,3,DIV,4,3,Orchard Lake,Rd,5499978,0.097,0.161,0,1.527561,3.7,5 +39799,0,0.430991,1,1,0,2,4,,4,3,Martin,Rd,631703,0.085,0.516,0,10.343773,4.5,4.5 +39798,0,0.297055,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,2.933,3.23,0,7.129313,4.5,4.5 +39803,-1,0.066308,0,2,0,2,4,,4,3,Oakley Park,Rd,4416630,0,0.066,0,1.591384,4.5,4.5 +39611,1,0.031235,2,0,0,2,4,,4,3,Waldon,Rd,0,0,0,0,0.749633,4.5,4.5 +39610,1,0.032594,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.782252,4.5,4.5 +39609,-1,0.032802,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.787244,4.5,4.5 +39608,-1,0.031107,0,2,0,2,4,,4,3,Waldon,Rd,0,0,0,0,0.746562,4.5,4.5 +39607,1,0.066126,2,0,0,2,4,,4,3,Waldon,Rd,0,0,0,0,1.587016,4.5,4.5 +39606,-1,0.067658,0,2,0,2,4,,4,3,Waldon,Rd,0,0,0,0,1.623788,4.5,4.5 +39605,0,0.348165,1,1,0,2,5,,4,3,Waldon,Rd,0,0,0,0,8.355964,5.8,4.5 +39604,-1,0.073438,0,2,0,2,4,,4,3,Waldon,Rd,0,0,0,0,1.762522,4.5,4.5 +39603,1,0.070951,2,0,0,2,4,,4,3,Waldon,Rd,0,0,0,0,1.702829,4.5,4.5 +39602,0,0.981105,1,1,0,2,5,,4,3,Waldon,Rd,0,0,0,0,23.546521,5.8,4.5 +39601,1,0.077783,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.866794,4.5,4.5 +39600,-1,0.077776,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.866613,4.5,4.5 +39613,1,0.475566,2,0,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,11.413589,4.5,4.5 +39612,-1,0.478161,0,2,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,11.475859,4.5,4.5 +39619,1,0.035593,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.854224,4.5,4.5 +39618,-1,0.035941,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.862577,4.5,4.5 +39617,-1,0.037107,0,2,0,2,4,,4,3,Maybee,Rd,0,0,0,0,0.890579,4.5,4.5 +39616,-1,0.078466,0,2,0,2,4,,4,3,Maybee,Rd,0,0,0,0,1.883176,4.5,4.5 +39615,1,0.0752,2,0,0,2,4,,4,3,Maybee,Rd,0,0,0,0,1.804799,4.5,4.5 +39614,0,0.859086,1,1,0,2,5,,4,3,Maybee,Rd,0,0,0,0,20.618075,5.8,4.5 +39634,-1,0.002997,0,1,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39633,-1,0.269122,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39632,1,0.319697,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39631,-1,3.870627,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39630,1,3.555608,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39629,1,0.206149,2,0,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,4.94757,4.5,4.5 +39628,-1,0.206584,0,2,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,4.958023,4.5,4.5 +39627,1,0.031154,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.747706,4.5,4.5 +39626,1,0.034336,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.824059,4.5,4.5 +39625,-1,0.032938,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.790522,4.5,4.5 +39624,-1,0.03049,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.731756,4.5,4.5 +39623,1,0.238308,2,0,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,5.719389,4.5,4.5 +39622,-1,0.240313,0,2,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,5.767522,4.5,4.5 +39621,0,0.726268,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.430425,0.15,4 +39620,1,0.036506,2,0,0,2,4,,4,3,Maybee,Rd,0,0,0,0,0.876151,4.5,4.5 +36628,0,0.061802,3,3,1,2,3,,3,1,Livernois,Ave,1581701,5.171,5.233,0,1.483253,5,5 +39837,-1,0.12908,0,2,0,2,3,,4,3,Pontiac,Trl,4463510,0,0.129,0,3.097931,3.7,5 +39836,1,0.13052,2,0,0,2,3,,4,3,Pontiac,Trl,657404,9.649,9.78,0,3.13247,3.7,5 +39835,1,0.042441,2,0,0,2,3,,4,3,Pontiac,Trl,657404,9.607,9.649,0,1.018578,3.7,5 +39831,0,0.119867,2,2,1,2,3,,4,3,Pontiac,Trl,657404,9.78,9.899,0,2.876817,3.7,5 +39830,1,0.880756,3,0,0,2,3,DIV,4,3,S M 5,,4402005,0.049,0.93,0,21.138152,3.7,5 +39829,-1,0.885116,0,3,0,2,3,DIV,4,3,N M 5,,4402006,0.044,0.928,0,21.242775,3.7,5 +39828,-1,0.209775,0,2,0,2,4,DIV,4,3,Martin,Pkwy,4416635,0.695,0.905,0,5.034612,4.5,4.5 +39827,1,0.207543,2,0,0,2,4,DIV,4,3,Martin,Pkwy,4403012,0.962,1.17,0,4.981028,4.5,4.5 +39635,1,0.715392,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39645,-1,1.568873,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39644,1,0.004502,1,0,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39657,-1,0.005283,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39656,1,0.003864,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39651,1,0.222405,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39646,1,0.002639,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39655,-1,0.219402,0,1,0,7,2,,5,8,S US 23 Flex,,0,0,0,0,,1.02,7 +39654,1,0.240428,1,0,0,8,2,,5,8,N US 23 Flex,,0,0,0,0,,1.02,7 +39653,-1,0.183163,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39652,-1,0.004296,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39650,1,0.00358,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39649,-1,0.43509,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39648,-1,0.004728,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39647,1,0.405508,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +36668,1,0.210851,2,0,0,2,4,DV2,2,1,Anthony Wayne,Dr,0,0,0,0,5.060427,8,4.5 +36669,1,0.13751,2,0,0,2,4,DV2,2,1,Palmer,St,0,0,0,0,3.300238,8,4.5 +36670,0,0.011089,1,1,0,2,4,,2,1,Second,Ave,0,0,0,0,0.266141,8,4.5 +36671,0,0.096083,1,1,0,2,4,,2,1,Second,Ave,0,0,0,0,2.305999,8,4.5 +36672,1,0.035488,1,0,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,0.851724,8,4.5 +36673,1,0.071664,1,0,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,1.719928,8,4.5 +36674,-1,0.034305,0,1,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,0.823322,8,4.5 +36675,-1,0.071697,0,1,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,1.720717,8,4.5 +36676,1,0.225209,1,0,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,5.40502,8,4.5 +36677,-1,0.223611,0,1,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,5.36667,8,4.5 +36678,0,0.046272,1,1,1,2,4,,2,1,Second,Ave,0,0,0,0,1.110534,8,4.5 +36679,0,0.055076,1,1,1,2,4,,2,1,Second,Ave,0,0,0,0,1.321831,8,4.5 +36680,0,0.077948,1,1,1,2,4,,2,1,Second,Ave,0,0,0,0,1.870748,8,4.5 +36681,0,0.017679,1,1,1,2,4,,2,1,Second,Ave,0,0,0,0,0.424298,8,4.5 +40300,1,0.025404,1,0,0,2,5,,2,3,Center,,4415777,0,0.025,0,0.609695,8.5,4.5 +40299,0,0.043668,1,1,0,2,5,,2,3,5th,St,4415779,0,0.044,0,1.048034,8.5,4.5 +40862,-1,0.296138,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,7.107321,6,4.5 +37058,1,0.011535,1,0,0,2,5,,3,3,Morgan,Blvd,661904,0.034,0.045,0,0.276849,8,4.5 +37057,-1,0.086801,0,1,0,2,5,,3,3,Taft,Rd,4416333,0.093,0.179,0,2.083235,8,4.5 +37056,-1,0.010859,0,1,0,2,5,,3,3,Taft,Rd,4416333,0.082,0.093,0,0.260611,8,4.5 +37055,-1,0.081662,0,1,0,2,5,,3,3,Taft,Rd,4416333,0,0.082,0,1.959884,8,4.5 +37054,1,0.0854,1,0,0,2,5,,3,3,Taft,Rd,656608,0.413,0.498,0,2.049602,8,4.5 +37052,1,0.081415,1,0,0,2,5,,3,3,Taft,Rd,656608,0.319,0.4,0,1.953958,8,4.5 +37019,0,0.638363,1,1,0,2,5,,4,3,West Maple,Rd,657406,4.446,5.084,0,15.320724,5.8,4.5 +37018,0,0.236085,1,1,0,2,5,,4,7,Michigan,St,966103,0,0.236,0,5.66604,5.8,4.5 +37017,0,0.061721,1,1,0,2,5,,4,7,Liberty,St,966105,0.588,0.65,0,1.481309,5.8,4.5 +37078,-1,0.074577,0,3,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0.096,0.17,0,1.789846,3.7,5 +37016,0,0.061204,1,1,0,2,5,,4,7,Liberty,St,966105,0.527,0.588,0,1.468907,5.8,4.5 +37164,0,0.101037,1,1,0,3,96,,3,2,Walk Link,,0,0,0,0,2.424884,0.15,4 +37015,0,0.116349,1,1,0,2,5,,4,7,Michigan,St,966103,0.236,0.352,0,2.792381,5.8,4.5 +37014,0,0.060788,1,1,0,2,5,,4,7,Howard,St,974707,0.598,0.659,0,1.458914,5.8,4.5 +37059,-1,0.012997,0,1,0,2,5,,3,3,Morgan,Blvd,4416334,0.032,0.045,0,0.311919,8,4.5 +37160,0,10.789584,1,1,0,0,82,,3,2,Norfolk Southern Railway,,4711929,0,10.786,1,,0.15,4 +37060,1,0.070203,2,0,0,2,4,,3,3,Evergreen,Rd,666003,1.815,1.885,0,1.684882,6,4.5 +37013,0,0.113863,1,1,0,2,5,,4,7,Washington,St,974805,0,0.114,0,2.732714,5.8,4.5 +37067,1,0.157376,1,0,0,1,2,RON,3,3,Lahser/N M 10,RAMP,4462981,0,0.157,0,,1.09,4 +37012,0,0.170834,1,1,0,2,5,,4,7,Washington,St,974805,0.114,0.285,0,4.10001,5.8,4.5 +37009,0,0.058211,1,1,0,2,5,,4,7,Clay,St,966109,0,0.058,0,1.397066,5.8,4.5 +37011,0,0.062809,1,1,0,2,5,,4,7,Clay,St,966109,0.058,0.121,0,1.507427,5.8,4.5 +37010,0,0.054645,1,1,0,2,5,,4,7,Michigan,St,974301,0,0.055,0,1.311478,5.8,4.5 +37061,1,0.01542,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.396,2.411,0,0.370071,8,4.5 +37062,-1,0.01458,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.338,1.353,0,0.349914,8,4.5 +37063,-1,0.082175,0,2,0,2,4,,3,3,Evergreen,Rd,4416556,0,0.082,0,1.972196,6,4.5 +37065,-1,0.047452,0,3,0,2,4,,3,3,Evergreen,Rd,4416556,0.151,0.199,0,1.138846,6,4.5 +37064,-1,0.068976,0,3,0,2,4,,3,3,Evergreen,Rd,4416556,0.082,0.151,0,1.655429,6,4.5 +39855,0,0.008049,2,2,0,2,4,,1,1,Bagley,St,1584404,0.065,0.073,0,0.193185,8,4.5 +37083,-1,0.31924,0,3,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0.17,0.49,0,7.661764,3.7,5 +37081,1,0.295704,3,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,1.011,1.307,0,7.096904,3.7,5 +37104,-1,0.076119,0,3,0,2,4,DIV,4,3,Baldwin,Rd,4414691,0.712,0.788,0,1.826845,4.5,4.5 +39857,-1,0.057739,0,2,0,2,4,DV2,1,1,3rd,St,4718979,0.218,0.276,0,1.385741,8,4.5 +37101,1,0.299011,1,0,0,1,1,RON,4,3,Baldwin/N I 75,RAMP,669002,0.023,0.322,0,,1.09,4 +37097,-1,0.027228,0,3,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0.685,0.712,0,0.653484,3.7,5 +37125,1,0.265029,1,0,0,1,1,RON,3,2,W 6 Mile/W I 96,RAMP,1607604,0,0.265,0,,1.09,4 +37099,1,0.022717,3,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,1.529,1.551,0,0.545197,3.7,5 +41315,0,0.054396,1,1,0,2,5,,2,5,State,St,1427508,6.916,6.971,0,1.305513,8.5,4.5 +41263,0,0.10982,1,1,0,2,7,,2,5,Forest,Ave,1429307,0,0.11,0,2.635673,8.5,4.5 +41266,0,0.089266,1,1,0,2,7,,2,5,Forest,Ave,1429307,0.11,0.199,0,2.142395,8.5,4.5 +41267,0,0.202252,1,1,0,2,7,,2,5,University,Ave,1441604,0.334,0.537,0,4.854053,8.5,4.5 +41268,0,0.201019,1,1,0,2,7,,2,5,Church,St,1429305,0.284,0.485,0,4.824447,8.5,4.5 +41270,0,0.054497,1,1,0,2,7,,2,5,Jefferson,St,1453005,0.106,0.16,0,1.307923,8.5,4.5 +41271,0,0.058005,1,1,0,2,7,,2,5,Jefferson,St,1453005,0.16,0.218,0,1.392114,8.5,4.5 +41272,0,0.177764,1,1,0,2,7,,2,5,Church,St,1429305,0.485,0.662,0,4.266342,8.5,4.5 +41273,0,0.115251,1,1,0,2,7,,2,5,Maynard,St,1444802,0,0.115,0,2.766013,8.5,4.5 +41274,0,0.10523,1,1,0,2,7,,1,5,Maynard,St,1444802,0.115,0.22,0,2.525517,8.5,4.5 +41275,0,0.063331,1,1,0,2,7,,1,5,Washington,St,1430707,1.273,1.336,0,1.51994,8.5,4.5 +41276,0,0.117959,1,1,0,2,7,,1,5,Thayer,St,1452409,0,0.118,0,2.831012,8.5,4.5 +41277,0,0.16169,1,1,0,2,7,,1,5,Washington,St,1430707,1.111,1.273,0,3.880553,8.5,4.5 +41278,0,0.105312,1,1,0,2,7,,1,5,Washington,St,1430707,1.006,1.111,0,2.527492,8.5,4.5 +41279,0,0.126379,1,1,0,2,7,,2,5,Washington,St,1430707,1.336,1.462,0,3.033096,8.5,4.5 +41280,0,0.120862,1,1,0,2,7,,2,5,Fletcher,St,1430307,0,0.121,0,2.900698,8.5,4.5 +41281,0,0.063284,1,1,0,2,7,,1,5,Washington,St,1430707,0.942,1.006,0,1.518816,8.5,4.5 +41282,0,0.063869,1,1,0,2,7,,1,5,Washington,St,1430707,0.879,0.942,0,1.53286,8.5,4.5 +41283,0,0.064779,1,1,0,2,7,,1,5,Washington,St,1430707,0.814,0.879,0,1.5547,8.5,4.5 +41284,0,0.062413,1,1,0,2,7,,1,5,Washington,St,1430707,0.751,0.814,0,1.497913,8.5,4.5 +41285,0,0.063649,1,1,0,2,7,,2,5,Fletcher,St,1430307,0.121,0.184,0,1.527582,8.5,4.5 +41316,-1,0.068124,0,3,0,2,4,,1,5,5th,Ave,1430303,0.791,0.859,0,1.634981,8,4.5 +41287,1,0.274804,1,0,0,2,7,,2,5,Ann,St,4604073,0,0.275,0,6.59529,8.5,4.5 +41288,1,0.111974,1,0,0,2,7,,1,5,Ann,St,1430708,0.31,0.422,0,2.687369,8.5,4.5 +41290,0,0.063764,1,1,0,2,7,,1,5,Ann,St,1430708,0.246,0.31,0,1.530337,8.5,4.5 +41291,1,0.145302,1,0,0,2,7,,2,5,Ann,St,4600019,0,0.145,0,3.48724,8.5,4.5 +41292,0,0.063818,1,1,0,2,7,,1,5,Ann,St,1430708,0.183,0.246,0,1.531636,8.5,4.5 +41293,0,0.066009,1,1,0,2,7,,1,5,Ann,St,1430708,0.117,0.183,0,1.584217,8.5,4.5 +41294,0,0.06033,1,1,0,2,7,,1,5,Ann,St,1430708,0.056,0.117,0,1.447926,8.5,4.5 +41295,-1,0.142522,0,1,0,2,7,,2,5,Catherine,St,4604074,0,0.143,0,3.42053,8.5,4.5 +41296,-1,0.125588,0,1,0,2,7,,2,5,Catherine,St,4604074,0.143,0.268,0,3.014104,8.5,4.5 +41318,0,0.064189,1,1,0,2,5,,1,5,4th,Ave,1430302,0.438,0.502,0,1.540545,8.5,4.5 +41298,-1,0.112141,0,1,0,2,7,,1,5,Catherine,St,1430709,0.254,0.366,0,2.691396,8.5,4.5 +41317,1,0.051991,2,0,0,2,4,,1,5,Division,St,1430304,0.935,0.987,0,1.247791,8,4.5 +41300,0,0.064871,1,1,1,2,7,,1,5,Catherine,St,1430709,0.189,0.254,0,1.55691,8.5,4.5 +41301,0,0.147519,1,1,0,2,7,,2,5,Catherine,St,4604074,0.268,0.416,0,3.540445,8.5,4.5 +41302,0,0.062767,1,1,1,2,7,,1,5,Catherine,St,1430709,0.126,0.189,0,1.506402,8.5,4.5 +41303,0,0.213414,1,1,0,2,7,,3,5,Fuller,Ct,1448104,0.982,1.196,0,5.121945,7,4.5 +41306,0,0.288907,1,1,0,2,7,,3,5,Fuller,Ct,1448104,0.694,0.982,0,6.933779,7,4.5 +41308,1,0.279421,1,0,0,2,9,,3,5,Bonisteel,Blvd,4606011,0.22,0.499,0,6.706104,7,4.5 +41309,0,0.192161,1,1,0,2,9,,3,5,Beal,Ave,1443410,0,0.192,0,4.611852,7,4.5 +41310,-1,0.281037,0,1,0,2,9,,3,5,Bonisteel,Blvd,4603256,0.257,0.538,0,6.744895,7,4.5 +41311,0,0.005314,1,1,0,2,9,,3,5,Beal,Ave,1443410,0.192,0.197,0,0.127546,7,4.5 +41312,0,0.291763,1,1,0,2,9,,3,5,Beal,Ave,1443410,0.197,0.489,0,7.00231,7,4.5 +41507,1,0.230422,2,0,0,1,1,FCD,3,8,E I 96 CD,,0,0,0,0,,0.58,7 +41506,1,0.019052,1,0,0,1,1,FCD,3,8,E I 96 CD,,0,0,0,0,,0.58,7 +41509,-1,0.32752,0,2,0,1,1,,5,7,W I 69,,0,0,0,0,,1.02,7 +41508,1,0.467038,1,0,0,1,1,RON,3,8,Spencer/E I 96,RAMP,0,0,0,0,,1.09,4 +41510,-1,1.256145,0,2,0,1,2,,5,7,I 69 BL,,0,0,0,0,,1.02,7 +41513,-1,0.35605,0,1,0,1,1,,5,7,W I 69,,0,0,0,0,,1.02,7 +41511,-1,0.344169,0,2,0,1,2,,5,7,I 69 BL,,0,0,0,0,,1.02,7 +41512,1,0.172514,1,0,0,1,1,RFF,5,7,W I 69/W I 94,RAMP,0,0,0,0,,1.02,7 +41521,1,0.173752,2,0,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,4.170046,5.8,4.5 +41523,0,0.0147,1,1,0,2,7,,4,2,Superior,Rd,0,0,0,0,0.352789,6.55,4.5 +41516,0,1.086078,1,1,1,2,7,,4,2,Lotz,Rd,0,0,0,0,26.065873,6.55,4.5 +41520,1,0.160403,2,0,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,3.849672,5.8,4.5 +41519,1,0.955898,2,0,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,22.94156,5.8,4.5 +41517,0,0.528471,1,1,1,2,7,,4,2,Lotz,Rd,0,0,0,0,12.683312,6.55,4.5 +41518,0,0.473506,2,2,1,2,3,,3,2,Ford,Rd,0,0,0,0,11.364133,5,5 +41524,0,0.139691,2,2,0,2,3,,3,1,Warren,Ave,0,0,0,0,3.352584,5,5 +41526,0,0.169304,2,2,0,2,3,,3,1,Warren,Ave,0,0,0,0,4.063306,5,5 +41527,0,0.068002,2,2,0,2,3,,3,1,Warren,Ave,0,0,0,0,1.632037,5,5 +41528,-1,0.115753,0,2,0,2,5,,3,1,W I 94 Service Drive,,0,0,0,0,2.778084,8,4.5 +41529,0,0.170399,1,1,0,2,7,,3,1,Lemay,St,0,0,0,0,4.089586,7,4.5 +41530,1,0.090973,2,0,0,2,5,,3,1,E I 94 Service Drive,,0,0,0,0,2.18336,8,4.5 +41531,0,0.02062,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0.642,1.066,0,0.494887,8,4.5 +41532,0,0.233668,1,1,0,2,7,,3,1,Lemay,St,0,0,0,0,5.60803,7,4.5 +41533,0,0.255587,2,2,0,2,3,,3,1,Warren,Ave,4700429,5.051,5.435,0,6.134095,5,5 +41534,0,0.276496,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0.642,1.066,0,6.635895,8,4.5 +41535,0,0.294126,1,1,0,2,7,,3,1,Lemay,St,0,0,0,0,7.059017,7,4.5 +41537,-1,0.493085,0,2,0,2,7,,4,2,Vining,Rd,0,0,0,0,11.834046,6.55,4.5 +41538,1,0.493155,2,0,0,2,7,DIV,4,2,Vining,Rd,0,0,0,0,11.835727,6.55,4.5 +41539,0,0.049096,1,1,0,2,4,,4,2,Ecorse,Rd,0,0,0,0,1.178295,4.5,4.5 +41540,0,0.991725,1,1,0,2,4,,4,2,Ecorse,Rd,0,0,0,0,23.801396,4.5,4.5 diff --git a/activitysim/examples/prototype_mtc/test/.gitignore b/activitysim/examples/prototype_mtc/test/.gitignore new file mode 100644 index 000000000..c4c4ffc6a --- /dev/null +++ b/activitysim/examples/prototype_mtc/test/.gitignore @@ -0,0 +1 @@ +*.zip diff --git a/activitysim/examples/prototype_mtc/test/test_mtc.py b/activitysim/examples/prototype_mtc/test/test_mtc.py index b79266f8f..b72ac5c49 100644 --- a/activitysim/examples/prototype_mtc/test/test_mtc.py +++ b/activitysim/examples/prototype_mtc/test/test_mtc.py @@ -1,19 +1,17 @@ +from __future__ import annotations + # ActivitySim # See full license in LICENSE.txt. import os import subprocess import sys +from pathlib import Path import pandas as pd import pandas.testing as pdt import pkg_resources -from activitysim.core import inject - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +from activitysim.core import test, workflow def run_test_mtc(multiprocess=False, chunkless=False, recode=False, sharrow=False): @@ -27,11 +25,7 @@ def test_path(dirname): def regress(): regress_trips_df = pd.read_csv(test_path("regress/final_trips.csv")) final_trips_df = pd.read_csv(test_path("output/final_trips.csv")) - - # person_id,household_id,tour_id,primary_purpose,trip_num,outbound,trip_count,purpose, - # destination,origin,destination_logsum,depart,trip_mode,mode_choice_logsum - # compare_cols = [] - pdt.assert_frame_equal(final_trips_df, regress_trips_df) + test.assert_frame_substantively_equal(final_trips_df, regress_trips_df) file_path = os.path.join(os.path.dirname(__file__), "simulation.py") @@ -121,8 +115,69 @@ def test_mtc_sharrow(): run_test_mtc(sharrow=True) -if __name__ == "__main__": +EXPECTED_MODELS = [ + "initialize_landuse", + "initialize_households", + "compute_accessibility", + "school_location", + "workplace_location", + "auto_ownership_simulate", + "free_parking", + "cdap_simulate", + "mandatory_tour_frequency", + "mandatory_tour_scheduling", + "joint_tour_frequency", + "joint_tour_composition", + "joint_tour_participation", + "joint_tour_destination", + "joint_tour_scheduling", + "non_mandatory_tour_frequency", + "non_mandatory_tour_destination", + "non_mandatory_tour_scheduling", + "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", + "write_data_dictionary", + "track_skim_usage", + "write_trip_matrices", + "write_tables", + "summarize", +] + + +@test.run_if_exists("prototype_mtc_reference_pipeline.zip") +def test_mtc_progressive(): + import activitysim.abm # register components + + state = workflow.create_example("prototype_mtc", temp=True) + + assert state.settings.models == EXPECTED_MODELS + assert state.settings.chunk_size == 0 + assert state.settings.sharrow == False + + for step_name in EXPECTED_MODELS: + state.run.by_name(step_name) + try: + state.checkpoint.check_against( + Path(__file__).parent.joinpath("prototype_mtc_reference_pipeline.zip"), + checkpoint_name=step_name, + ) + except Exception: + print(f"> prototype_mtc {step_name}: ERROR") + raise + else: + print(f"> prototype_mtc {step_name}: ok") + +if __name__ == "__main__": run_test_mtc(multiprocess=False) run_test_mtc(multiprocess=True) run_test_mtc(multiprocess=False, chunkless=True) diff --git a/activitysim/examples/prototype_mtc_extended/configs/input_checker.yaml b/activitysim/examples/prototype_mtc_extended/configs/input_checker.yaml new file mode 100644 index 000000000..ca3268dbb --- /dev/null +++ b/activitysim/examples/prototype_mtc_extended/configs/input_checker.yaml @@ -0,0 +1,60 @@ +# name of input checker python file where input checks are listed +# should exist in the data_model directory +input_checker_code: input_checks.py + + +# ------- checking with pandera examples ---------- +table_list: + - name: households + is_activitysim_input: True # will load via ActivitySim's built-in reader and apply column transformations + validation: + method: pandera + class: Household + + - name: persons + is_activitysim_input: True # will load via ActivitySim's built-in reader and apply column transformations + validation: + method: pandera + class: Person + + - name: land_use + is_activitysim_input: True # will load via ActivitySim's built-in reader and apply column transformations + validation: + method: pandera + class: Landuse + + - name: example_hwy_data + is_activitysim_input: False # will read raw table with pandas.read_csv from above path relative to a data directory + validation: + class: NetworkLinks + method: pandera + +# --------- pydantic examples ---------- +# WARNING: Still in development! + # - name: households + # is_activitysim_input: True # will load via ActivitySim's built-in reader and apply column transformations + # validation: + # method: pydantic + # class: Household + # helper_class: HouseholdValidator + # helper_class_attribute: list_of_households + # children: + # table_name: persons + # child_name: persons # Household class has variable "persons: list[Person]" + # merged_on: household_id + + # - name: persons + # is_activitysim_input: True # will load via ActivitySim's built-in reader and apply column transformations + # validation: + # method: pydantic + # class: Person + # helper_class: PersonValidator + # helper_class_attribute: list_of_persons + + # - name: land_use + # is_activitysim_input: True # will load via ActivitySim's built-in reader and apply column transformations + # validation: + # method: pydantic + # class: Landuse + # helper_class: TazValidator + # helper_class_attribute: list_of_zones diff --git a/activitysim/examples/prototype_mtc_extended/configs/non_mandatory_tour_frequency_alternatives.csv b/activitysim/examples/prototype_mtc_extended/configs/non_mandatory_tour_frequency_alternatives.csv index 0bea47c6f..be633e649 100644 --- a/activitysim/examples/prototype_mtc_extended/configs/non_mandatory_tour_frequency_alternatives.csv +++ b/activitysim/examples/prototype_mtc_extended/configs/non_mandatory_tour_frequency_alternatives.csv @@ -1,100 +1,100 @@ -escort,shopping,othmaint,othdiscr,eatout,social -0,0,0,0,0,0 -0,0,0,1,0,0 -0,0,0,0,0,1 -0,0,0,1,0,1 -0,0,0,0,1,0 -0,0,0,1,1,0 -0,0,0,0,1,1 -0,0,0,1,1,1 -0,0,1,0,0,0 -0,0,1,1,0,0 -0,0,1,0,0,1 -0,0,1,1,0,1 -0,0,1,0,1,0 -0,0,1,1,1,0 -0,0,1,0,1,1 -0,0,1,1,1,1 -0,1,0,0,0,0 -0,1,0,1,0,0 -0,1,0,0,0,1 -0,1,0,1,0,1 -0,1,0,0,1,0 -0,1,0,1,1,0 -0,1,0,0,1,1 -0,1,0,1,1,1 -0,1,1,0,0,0 -0,1,1,1,0,0 -0,1,1,0,0,1 -0,1,1,1,0,1 -0,1,1,0,1,0 -0,1,1,1,1,0 -0,1,1,0,1,1 -0,1,1,1,1,1 -1,0,0,0,0,0 -1,0,0,1,0,0 -1,0,0,0,0,1 -1,0,0,1,0,1 -1,0,0,0,1,0 -1,0,0,1,1,0 -1,0,0,0,1,1 -1,0,0,1,1,1 -1,0,1,0,0,0 -1,0,1,1,0,0 -1,0,1,0,0,1 -1,0,1,1,0,1 -1,0,1,0,1,0 -1,0,1,1,1,0 -1,0,1,0,1,1 -1,0,1,1,1,1 -1,1,0,0,0,0 -1,1,0,1,0,0 -1,1,0,0,0,1 -1,1,0,1,0,1 -1,1,0,0,1,0 -1,1,0,1,1,0 -1,1,0,0,1,1 -1,1,0,1,1,1 -1,1,1,0,0,0 -1,1,1,1,0,0 -1,1,1,0,0,1 -1,1,1,1,0,1 -1,1,1,0,1,0 -1,1,1,1,1,0 -1,1,1,0,1,1 -1,1,1,1,1,1 -2,0,0,0,0,0 -2,0,0,1,0,0 -2,0,0,0,0,1 -2,0,0,1,0,1 -2,0,0,0,1,0 -2,0,0,1,1,0 -2,0,0,0,1,1 -2,0,0,1,1,1 -2,0,1,0,0,0 -2,0,1,1,0,0 -2,0,1,0,0,1 -2,0,1,1,0,1 -2,0,1,0,1,0 -2,0,1,1,1,0 -2,0,1,0,1,1 -2,0,1,1,1,1 -2,1,0,0,0,0 -2,1,0,1,0,0 -2,1,0,0,0,1 -2,1,0,1,0,1 -2,1,0,0,1,0 -2,1,0,1,1,0 -2,1,0,0,1,1 -2,1,0,1,1,1 -2,1,1,0,0,0 -2,1,1,1,0,0 -2,1,1,0,0,1 -2,1,1,1,0,1 -2,1,1,0,1,0 -2,1,1,1,1,0 -2,1,1,0,1,1 -2,1,1,1,1,1 -# extension for flexible ids demonstration,,,,, -# should be removed for actual model run,,,,, -0,0,0,2,0,0 +escort,shopping,othmaint,othdiscr,eatout,social,tot_tours +0,0,0,0,0,0,0 +0,0,0,1,0,0,1 +0,0,0,0,0,1,1 +0,0,0,1,0,1,2 +0,0,0,0,1,0,1 +0,0,0,1,1,0,2 +0,0,0,0,1,1,2 +0,0,0,1,1,1,3 +0,0,1,0,0,0,1 +0,0,1,1,0,0,2 +0,0,1,0,0,1,2 +0,0,1,1,0,1,3 +0,0,1,0,1,0,2 +0,0,1,1,1,0,3 +0,0,1,0,1,1,3 +0,0,1,1,1,1,4 +0,1,0,0,0,0,1 +0,1,0,1,0,0,2 +0,1,0,0,0,1,2 +0,1,0,1,0,1,3 +0,1,0,0,1,0,2 +0,1,0,1,1,0,3 +0,1,0,0,1,1,3 +0,1,0,1,1,1,4 +0,1,1,0,0,0,2 +0,1,1,1,0,0,3 +0,1,1,0,0,1,3 +0,1,1,1,0,1,4 +0,1,1,0,1,0,3 +0,1,1,1,1,0,4 +0,1,1,0,1,1,4 +0,1,1,1,1,1,5 +1,0,0,0,0,0,1 +1,0,0,1,0,0,2 +1,0,0,0,0,1,2 +1,0,0,1,0,1,3 +1,0,0,0,1,0,2 +1,0,0,1,1,0,3 +1,0,0,0,1,1,3 +1,0,0,1,1,1,4 +1,0,1,0,0,0,2 +1,0,1,1,0,0,3 +1,0,1,0,0,1,3 +1,0,1,1,0,1,4 +1,0,1,0,1,0,3 +1,0,1,1,1,0,4 +1,0,1,0,1,1,4 +1,0,1,1,1,1,5 +1,1,0,0,0,0,2 +1,1,0,1,0,0,3 +1,1,0,0,0,1,3 +1,1,0,1,0,1,4 +1,1,0,0,1,0,3 +1,1,0,1,1,0,4 +1,1,0,0,1,1,4 +1,1,0,1,1,1,5 +1,1,1,0,0,0,3 +1,1,1,1,0,0,4 +1,1,1,0,0,1,4 +1,1,1,1,0,1,5 +1,1,1,0,1,0,4 +1,1,1,1,1,0,5 +1,1,1,0,1,1,5 +1,1,1,1,1,1,6 +2,0,0,0,0,0,2 +2,0,0,1,0,0,3 +2,0,0,0,0,1,3 +2,0,0,1,0,1,4 +2,0,0,0,1,0,3 +2,0,0,1,1,0,4 +2,0,0,0,1,1,4 +2,0,0,1,1,1,5 +2,0,1,0,0,0,3 +2,0,1,1,0,0,4 +2,0,1,0,0,1,4 +2,0,1,1,0,1,5 +2,0,1,0,1,0,4 +2,0,1,1,1,0,5 +2,0,1,0,1,1,5 +2,0,1,1,1,1,6 +2,1,0,0,0,0,3 +2,1,0,1,0,0,4 +2,1,0,0,0,1,4 +2,1,0,1,0,1,5 +2,1,0,0,1,0,4 +2,1,0,1,1,0,5 +2,1,0,0,1,1,5 +2,1,0,1,1,1,6 +2,1,1,0,0,0,4 +2,1,1,1,0,0,5 +2,1,1,0,0,1,5 +2,1,1,1,0,1,6 +2,1,1,0,1,0,5 +2,1,1,1,1,0,6 +2,1,1,0,1,1,6 +2,1,1,1,1,1,7 +# extension for flexible ids demonstration,,,,,,0 +# should be removed for actual model run,,,,,,0 +0,0,0,2,0,0,2 diff --git a/activitysim/examples/prototype_mtc_extended/configs/settings.yaml b/activitysim/examples/prototype_mtc_extended/configs/settings.yaml index 1e96b19f4..8c66b35a4 100644 --- a/activitysim/examples/prototype_mtc_extended/configs/settings.yaml +++ b/activitysim/examples/prototype_mtc_extended/configs/settings.yaml @@ -35,6 +35,7 @@ input_table_list: - HHT - auto_ownership - num_workers + # - hinccat1 # # persons (table index 'person_id') # @@ -51,6 +52,8 @@ input_table_list: - pemploy - pstudent - ptype + # - GRADE + # - WEEKS # # land_use (table index 'zone_id') # @@ -182,6 +185,7 @@ checkpoints: True models: + - input_checker ## Disaggregate Accessibility steps - initialize_proto_population # Separate step so proto tables can be split for multiprocess. - compute_disaggregate_accessibility diff --git a/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_annotate_tours_preprocessor.csv b/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_annotate_tours_preprocessor.csv new file mode 100644 index 000000000..bc9a798e3 --- /dev/null +++ b/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_annotate_tours_preprocessor.csv @@ -0,0 +1,53 @@ +Description,Target,Expression +#,, +# define primary_purpose to use for slicing choosers with a value that identifies the spec to be used ,, +# e.g. univ segment means there will be a spec called stop_frequency_univ.csv,, +# so the 'school' tour_type can treat univ and non-univ school tours differently,, +,primary_purpose,"df.tour_type.where((df.tour_type != 'school') | ~df.is_university, 'univ')" +# assigning category columns a new value can be problematic +,primary_purpose,"primary_purpose.where(df.tour_category!='atwork', 'atwork')" +#,, +,distance_in_miles,od_skims['DIST'] +#,, +,is_joint,df.tour_category=='joint' +,_HH_PERSON_COUNT,"lambda exp, persons: persons.query(exp).groupby('household_id').size()" +,num_full,"reindex_i(_HH_PERSON_COUNT('ptype == %s' % PEMPLOY_FULL, persons), df.household_id)" +,num_part,"reindex_i(_HH_PERSON_COUNT('ptype == %s' % PEMPLOY_PART, persons), df.household_id)" +,num_student,"reindex_i(_HH_PERSON_COUNT('pstudent != %s' % PSTUDENT_NOT, persons), df.household_id)" +Num Kids between 0 and 4 (including) years old,num_age_0_4,"reindex_i(_HH_PERSON_COUNT('age < 5', persons), df.household_id)" +Num kids between 4 and 15 (including) years old,num_age_5_15,"reindex_i(_HH_PERSON_COUNT('(age >= 5) & (age <16)', persons), df.household_id)" +Number of Adults (>= 16 years old),num_adult,"reindex_i(_HH_PERSON_COUNT('age >= 16', persons), df.household_id)" +,more_cars_than_workers,df.auto_ownership >= (num_full + num_part) +,tour_mode_is_transit,df.tour_mode.isin(TRANSIT_MODES) +,tour_mode_is_drive_transit,df.tour_mode.isin(DRIVE_TO_TRANSIT_MODES) +,tour_mode_is_non_motorized,df.tour_mode.isin(NONMOTORIZED_MODES) +#,, +#num_work_tours already defined,, +school but not university,num_school_tours,"reindex_i(df[primary_purpose==SCHOOL_TOUR].groupby('person_id').size(), df.person_id)" +,num_univ_tours,(df.is_university) * num_school_tours +#num_escort_tours already defined,, +# indiv tour counts should not include joint tours by point_person,, +,num_shop_tours,"reindex_i(df[~is_joint & (df.tour_type==SHOP_TOUR)].groupby('person_id').size(), df.person_id)" +,num_maint_tours,"reindex_i(df[~is_joint & (df.tour_type==MAINT_TOUR)].groupby('person_id').size(), df.person_id)" +,num_eatout_tours,"reindex_i(df[~is_joint & (df.tour_type==EATOUT_TOUR)].groupby('person_id').size(), df.person_id)" +,num_social_tours,"reindex_i(df[~is_joint & (df.tour_type==SOCIAL_TOUR)].groupby('person_id').size(), df.person_id)" +#,, +Number of subtours in the tour,num_atwork_subtours,"df.atwork_subtour_frequency.map(num_atwork_subtours_map, na_action='ignore').fillna(0).astype(np.int8)" +#,, +Number of hh shop tours including joint,num_hh_shop_tours,"reindex_i(df[df.tour_type==SHOP_TOUR].groupby('household_id').size(), df.person_id)" +Number of hh maint tours including joint,num_hh_maint_tours,"reindex_i(df[df.tour_type==MAINT_TOUR].groupby('household_id').size(), df.person_id)" +tourStartsInPeakPeriod,_tour_starts_in_peak,(network_los.skim_time_period_label(df.start) == 'AM') | (network_los.skim_time_period_label(df.start) == 'PM') +AccesibilityAtOrigin fallback,hhacc,0 +AccesibilityAtOrigin if transit,hhacc,"hhacc.where(~tour_mode_is_transit, df.trPkRetail.where(_tour_starts_in_peak, df.trOpRetail))" +AccesibilityAtOrigin if non_motorized,hhacc,"hhacc.where(~tour_mode_is_non_motorized, df.nmRetail)" +AccesibilityADestination fallback,pracc,0 +AccesibilityADestination peak transit,_dest_trPkRetail,"reindex(accessibility.trPkRetail, df.destination)" +AccesibilityADestination off-peak transit,_dest_trOpRetail,"reindex(accessibility.trOpRetail, df.destination)" +AccesibilityAtDestination if transit,pracc,"pracc.where(~tour_mode_is_transit, _dest_trPkRetail.where(_tour_starts_in_peak, _dest_trOpRetail))" +AccesibilityAtDestination if non_motorized,pracc,"pracc.where(~tour_mode_is_non_motorized, reindex(accessibility.nmRetail, df.destination))" +,destination_area_type,"reindex(land_use.area_type, df.destination)" +,is_mixed,df.composition=='mixed' +,is_adults_tour,df.composition=='adults' +,is_social,primary_purpose=='social' +,is_outbound_school_escort,"(df.school_esc_outbound.isin(['ride_share', 'pure_escort']))" +,is_inbound_school_escort,"(df.school_esc_inbound.isin(['ride_share', 'pure_escort']))" \ No newline at end of file diff --git a/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_escort.csv b/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_escort.csv index e522097e5..1f67721f4 100644 --- a/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_escort.csv +++ b/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_escort.csv @@ -45,5 +45,5 @@ util_alternative_specific_constant_for_outbound_stops_on_joint_tours,Alternative util_alternative_specific_constant_for_return_stops_on_joint_tours,Alternative specific constant for return stops on joint tours,is_joint,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in,,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_1in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_return_stops_on_joint_tours_0out_3in util_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours,Alternative specific constant for the total number of stops on joint tours,is_joint,,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_on_joint_tours_2out_3in # added for school escorting,,,,,,,,,,,,,,,,,, -util_no_stops_to_school_escorting,Do not allow stops for school escort half-tour -- outbound,"(school_esc_outbound.isin(['ride_share', 'pure_escort']))",,,,,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail -util_no_stops_from_school_escorting,Do not allow stops for school escort half-tour -- inbound,"(school_esc_inbound.isin(['ride_share', 'pure_escort']))",,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail +util_no_stops_to_school_escorting,Do not allow stops for school escort half-tour -- outbound,is_outbound_school_escort,,,,,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail +util_no_stops_from_school_escorting,Do not allow stops for school escort half-tour -- inbound,is_inbound_school_escort,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail diff --git a/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_school.csv b/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_school.csv index 9aa97f549..28b5c594c 100644 --- a/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_school.csv +++ b/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_school.csv @@ -42,5 +42,5 @@ util_alternative_specific_constant_for_outbound_stops,Alternative specific const util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,1,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,1,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in # No stops for half tour that includes school escorting,,,,,,,,,,,,,,,,,, -util_no_stops_to_school_escorting,Do not allow stops for school escort half-tour -- outbound,"(school_esc_outbound.isin(['ride_share', 'pure_escort']))",,,,,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail -util_no_stops_from_school_escorting,Do not allow stops for school escort half-tour -- inbound,"(school_esc_inbound.isin(['ride_share', 'pure_escort']))",,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail +util_no_stops_to_school_escorting,Do not allow stops for school escort half-tour -- outbound,is_outbound_school_escort,,,,,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail +util_no_stops_from_school_escorting,Do not allow stops for school escort half-tour -- inbound,is_inbound_school_escort,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail diff --git a/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_univ.csv b/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_univ.csv index 8b4b53031..001ff9b37 100644 --- a/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_univ.csv +++ b/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_univ.csv @@ -42,5 +42,5 @@ util_alternative_specific_constant_for_outbound_stops,Alternative specific const util_alternative_specific_constant_for_return_stops,Alternative specific constant for return stops,1,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in,,coef_alternative_specific_constant_for_return_stops_0out_1in,coef_alternative_specific_constant_for_return_stops_0out_2in,coef_alternative_specific_constant_for_return_stops_0out_3in util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,1,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_1out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in # No stops for half tour that includes school escorting,,,,,,,,,,,,,,,,,, -util_no_stops_to_school_escorting,Do not allow stops for school escort half-tour -- outbound,"(school_esc_outbound.isin(['ride_share', 'pure_escort']))",,,,,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail -util_no_stops_from_school_escorting,Do not allow stops for school escort half-tour -- inbound,"(school_esc_inbound.isin(['ride_share', 'pure_escort']))",,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail +util_no_stops_to_school_escorting,Do not allow stops for school escort half-tour -- outbound,is_outbound_school_escort,,,,,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail +util_no_stops_from_school_escorting,Do not allow stops for school escort half-tour -- inbound,is_inbound_school_escort,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail diff --git a/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_work.csv b/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_work.csv index 764064c83..3357951c5 100644 --- a/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_work.csv +++ b/activitysim/examples/prototype_mtc_extended/configs/stop_frequency_work.csv @@ -43,5 +43,5 @@ util_alternative_specific_constant_for_return_stops,Alternative specific constan util_alternative_specific_constant_for_the_total_number_of_stops,Alternative specific constant for the total number of stops,1,,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_0out_2in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in,coef_alternative_specific_constant_for_the_total_number_of_stops_2out_3in util_number_of_subtours_in_the_tour,Number of subtours in the tour,num_atwork_subtours,,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour,coef_number_of_subtours_in_the_tour # No stops for half tour that includes school escorting,,,,,,,,,,,,,,,,,, -util_no_stops_to_school_escorting,Do not allow stops for school escort half-tour -- outbound,"(school_esc_outbound.isin(['ride_share', 'pure_escort']))",,,,,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail -util_no_stops_from_school_escorting,Do not allow stops for school escort half-tour -- inbound,"(school_esc_inbound.isin(['ride_share', 'pure_escort']))",,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail +util_no_stops_to_school_escorting,Do not allow stops for school escort half-tour -- outbound,is_outbound_school_escort,,,,,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail,coef_unavail +util_no_stops_from_school_escorting,Do not allow stops for school escort half-tour -- inbound,is_inbound_school_escort,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail,,coef_unavail,coef_unavail,coef_unavail diff --git a/activitysim/examples/prototype_mtc_extended/configs/vehicle_type_choice_annotate_choosers_preprocessor.csv b/activitysim/examples/prototype_mtc_extended/configs/vehicle_type_choice_annotate_choosers_preprocessor.csv index d0a98ff3c..c190f781f 100644 --- a/activitysim/examples/prototype_mtc_extended/configs/vehicle_type_choice_annotate_choosers_preprocessor.csv +++ b/activitysim/examples/prototype_mtc_extended/configs/vehicle_type_choice_annotate_choosers_preprocessor.csv @@ -1,6 +1,6 @@ Description,Target,Expression total household distance to work,total_hh_dist_to_work,persons.groupby('household_id')['distance_to_work'].sum().reindex(df.household_id).fillna(0) -total household distance to work capped at 100 mi per worker,total_hh_dist_to_work_cap,"np.where(total_hh_dist_to_work > (100*df.num_workers.values), 100*df.num_workers.values, total_hh_dist_to_work)" +total household distance to work capped at 100 mi per worker,total_hh_dist_to_work_cap,"np.where(total_hh_dist_to_work > (100*df.num_workers.astype('int64').values), 100*df.num_workers.astype('int64').values, total_hh_dist_to_work)" average household distance to work,avg_hh_dist_to_work,persons.groupby('household_id')['distance_to_work'].mean().reindex(df.household_id).fillna(0) household density per square mile,hh_per_mi,(df.TOTHH.values / df.TOTACRE.values) * 640 number of vehicles is greater than the number of drivers,hh_veh_gt_drivers,"np.where(df.auto_ownership > df.num_drivers, 1, 0)" diff --git a/activitysim/examples/prototype_mtc_extended/configs_mp/logging.yaml b/activitysim/examples/prototype_mtc_extended/configs_mp/logging.yaml index e932009c5..64333d141 100644 --- a/activitysim/examples/prototype_mtc_extended/configs_mp/logging.yaml +++ b/activitysim/examples/prototype_mtc_extended/configs_mp/logging.yaml @@ -28,7 +28,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET @@ -37,21 +38,20 @@ logging: class: logging.StreamHandler stream: ext://sys.stdout formatter: simpleFormatter - #level: NOTSET - level: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [WARNING, NOTSET] + level: + if_sub_task: WARNING + if_not_sub_task: NOTSET formatters: simpleFormatter: class: logging.Formatter - #format: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' - format: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [ - '%(processName)-10s %(levelname)s - %(name)s - %(message)s', - '%(levelname)s - %(name)s - %(message)s'] + format: + if_sub_task: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' + if_not_sub_task: '%(levelname)s - %(name)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' - diff --git a/activitysim/examples/prototype_mtc_extended/configs_mp/settings.yaml b/activitysim/examples/prototype_mtc_extended/configs_mp/settings.yaml index 27e13575f..db6543250 100644 --- a/activitysim/examples/prototype_mtc_extended/configs_mp/settings.yaml +++ b/activitysim/examples/prototype_mtc_extended/configs_mp/settings.yaml @@ -42,7 +42,8 @@ trace_od: #resume_after: trip_purpose_and_destination models: - ### mp_initialize_proto step (Create the proto tables in single process to be shared across cores) + - input_checker + # mp_initialize_proto step (Create the proto tables in single process to be shared across cores) - initialize_proto_population ### mp_disaggregate_accessibility (Slice and run proto tables in multiprocess) - compute_disaggregate_accessibility @@ -88,7 +89,7 @@ models: multiprocess_steps: - name: mp_initialize - begin: initialize_proto_population + begin: input_checker - name: mp_disaggregate_accessibility begin: compute_disaggregate_accessibility slice: @@ -104,7 +105,7 @@ multiprocess_steps: tables: - accessibility # don't slice any tables not explicitly listed above in slice.tables - except: True # This is needed after disaggregate accessibilities, otherwise it will return empty logsums tables + exclude: True # This is needed after disaggregate accessibilities, otherwise it will return empty logsums tables - name: mp_simulate begin: school_location slice: diff --git a/activitysim/examples/prototype_mtc_extended/data_model/enums.py b/activitysim/examples/prototype_mtc_extended/data_model/enums.py new file mode 100644 index 000000000..124647e5d --- /dev/null +++ b/activitysim/examples/prototype_mtc_extended/data_model/enums.py @@ -0,0 +1,186 @@ +""" +Data Model Enumerated Variables + +Instructions: modify these enumerated variables as needed for your ActivitySim implementation. +""" +from enum import IntEnum + + +class PersonType(IntEnum): + """ + Provides integer mapping to the person type variable. A person type is + used as a co-variate in numerous ActivitySim modules to explain behavior. + """ + + FULL_TIME_WORKER = 1 + PART_TIME_WORKER = 2 + ADULT_STUDENT = 3 + NON_WORKING_ADULT = 4 + RETIRED = 5 + SECONDARY_SCHOOL_STUDENT = 6 + PRIMARY_SCHOOL_STUDENT = 7 + PRE_SCHOOL_CHILD = 8 + + +class Gender(IntEnum): + """ + Provides an integer mapping for gender. + """ + + MALE = 1 + FEMALE = 2 + OTHER = 3 + + +class Occupation(IntEnum): + """ + Provides an integer mapping for a persons occupation. + """ + + WHITE_COLLAR = 1 + SERVICES = 2 + HEALTH = 3 + RETAIL = 4 + BLUE_COLLAR = 5 + NOT_EMPLOYED = 6 + + +class DailyActivityPattern(IntEnum): + """ + Provides an integer mapping to the daily activity pattern variable. + """ + + MANDATORY = 1 + NON_MANDATORY = 2 + HOME = 3 + + +class Purpose(IntEnum): + """ + Provides an integer mapping for trip and tour purpose. + """ + + WORK = 1 + ADULT_SCHOOL = 2 + CHILD_SCHOOL = 3 + SHOPPING = 4 + ESCORT = 5 + MAINTENANCE = 6 + DISCRETIONARY = 7 + + +class AreaType(IntEnum): + """ + Provide an integer mapping for area type, which serves as a proxy for urban form. + """ + + REGIONAL_CORE = 0 + CBD = 1 + URBAN_BUSINESS = 2 + URBAN = 3 + SUBURBAN = 4 + RURAL = 5 + + +class County(IntEnum): + """ + Provide an integer mapping for county in which a landuse zone resides. + """ + + SAN_FRANSISCO = 1 + SAN_MATEO = 2 + SANTA_CLARA = 3 + ALAMEDA = 4 + CONTRA_COSTA = 5 + SOLANO = 6 + NAPA = 7 + SONOMA = 8 + MARIN = 9 + + +class HHT(IntEnum): + """ + Provide an integer mapping for household/family type. + """ + + GROUP_QUARTERS = 0 + FAMILY_MARRIED_COUPLE = 1 + FAMILY_MALE_HOUSEHOLDER_NO_WIFE = 2 + FAMILY_FEMANLE_HOUSEHOLDER_NO_HUSBAND = 3 + NON_FAMILY_MALE_ALONE = 4 + NON_FAMILY_MALE_NOT_ALONE = 5 + NON_FAMILY_FEMALE_ALONE = 6 + NON_FAMILY_FEMALE_NOT_ALONE = 7 + + +class Mode(IntEnum): + """ + Provides an integer mapping for travel mode. + """ + + DRIVE_ALONE_FREE = 1 + DRIVE_ALONE_PAY = 2 + SHARED_RIDE_2_FREE = 3 + SHARED_RIDE_2_PAY = 4 + SHARED_RIDE_3_FREE = 5 + SHARED_RIDE_3_PAY = 6 + WALK = 7 + BICYCLE = 8 + WALK_TO_TRANSIT_ALL = 9 + WALK_TO_TRANSIT_PREMIUM_ONLY = 10 + PARK_AND_RIDE_TRANSIT_ALL = 11 + PARK_AND_RIDE_TRANSIT_PREMIUM_ONLY = 12 + KISS_AND_RIDE_TRANSIT_ALL = 13 + KISS_AND_RIDE_TRANSIT_PREMIUM_ONLY = 14 + SCHOOL_BUS = 15 + + +class ModelTime(IntEnum): + """ + Provides an integer mapping from military time to model time interval index. + The name represents the starting point of the interval. So the interval from + 3:00 am to 3:30 am is represented by index 1, which is named `ZERO_THREE`. + """ + + ZERO_THREE = 1 + ZERO_THREE_THIRTY = 2 + ZERO_FOUR = 3 + ZERO_FOUR_THIRTY = 4 + ZERO_FIVE = 5 + ZERO_FIVE_THIRTY = 6 + ZERO_SIX = 7 + ZERO_SIX_THIRTY = 8 + ZERO_SEVEN = 9 + ZERO_SEVEN_THIRTY = 10 + ZERO_EIGHT = 11 + ZERO_EIGHT_THIRTY = 12 + ZERO_NINE = 13 + ZERO_NINE_THIRTY = 14 + TEN = 15 + TEN_THIRTY = 16 + ELEVEN = 17 + ELEVEN_THIRTY = 18 + TWELVE = 19 + TWELVE_THIRTY = 20 + THIRTEEN = 21 + THIRTEEN_THIRTY = 22 + FOURTEEN = 23 + FOURTEEN_THIRTY = 24 + FIFTEEN = 25 + FIFTEEN_THIRTY = 26 + SIXTEEN = 27 + SIXTEEN_THIRTY = 28 + SEVENTEEN = 29 + SEVENTEEN_THIRTY = 30 + EIGHTEEN = 31 + EIGHTEEN_THIRTY = 32 + NINETEEN = 33 + NINETEEN_THIRTY = 34 + TWENTY = 35 + TWENTY_THIRTY = 36 + TWENTY_ONE = 37 + TWENTY_ONE_THIRTY = 38 + TWENTY_TWO = 39 + TWENTY_TWO_THIRTY = 40 + TWENTY_THREE = 41 + TWENTY_THREE_THIRTY = 42 diff --git a/activitysim/examples/prototype_mtc_extended/data_model/input_checks.py b/activitysim/examples/prototype_mtc_extended/data_model/input_checks.py new file mode 100644 index 000000000..1cc63e583 --- /dev/null +++ b/activitysim/examples/prototype_mtc_extended/data_model/input_checks.py @@ -0,0 +1,311 @@ +""" +Data Model for ActivitySim Inputs + +Instructions: customize these example values for your own ActivitySim implementation +""" +from __future__ import annotations + +import csv +import logging +import os + +# for skim name parsing +import re +import sys +from typing import List, Optional + +import enums as e +import numpy as np +import openmatrix as omx +import pandas as pd +import pandera as pa +from pydantic import BaseModel, validator + +from activitysim.abm.models.input_checker import TABLE_STORE, log_info +from activitysim.core import config + +logger = logging.getLogger(__name__) + + +class Household(pa.DataFrameModel): + """ + Household data from PopulationSim and input to ActivitySim. + Customize as needed for your application. + + Fields: + household_id: unique number identifying each household + home_zone_id: zone number where household resides, MAZ in two zone systems, TAZ in one zone + hhsize: number of people in the household + income: Annual income in $ + auto_ownership: Seeding for initial number of autos owned by the household + HHT: Household type, see enums.HHT + """ + + household_id: int = pa.Field(unique=True, gt=0) + home_zone_id: int = pa.Field(ge=0) + hhsize: int = pa.Field(gt=0) + income: int = pa.Field(ge=0, raise_warning=True) + auto_ownership: int = pa.Field(ge=0, le=6) + HHT: int = pa.Field(isin=e.HHT, raise_warning=True) + + @pa.dataframe_check( + name="Do household sizes equal the number of persons in that household?", + raise_warning=True, + ) + def check_persons_per_household(cls, households: pd.DataFrame): + persons = TABLE_STORE["persons"] + hhsize = ( + persons.groupby("household_id")["person_id"] + .count() + .reindex(households.household_id) + ) + log_info("test logging info") + return (hhsize == households.set_index("household_id").hhsize).reindex( + households.index + ) + + @pa.dataframe_check( + name="Are all households' home_zone_ids found in the landuse file?" + ) + def check_home_zone_in_landuse(cls, households: pd.DataFrame): + land_use = TABLE_STORE["land_use"] + return households.home_zone_id.isin(land_use.zone_id) + + @pa.dataframe_check(name="Example setup of a passing error check.") + def dummy_example(cls, households: pd.DataFrame): + return True + + @pa.dataframe_check(name="Example of a failed warning check.", raise_warning=True) + def dummy_warning_example(cls, households: pd.DataFrame): + return False + + @pa.dataframe_check( + name="Household workers equals number of workers in persons table?", + raise_warning=True, + ) + def check_workers_per_household(cls, households: pd.DataFrame): + persons = TABLE_STORE["persons"] + num_workers = ( + persons[persons.pemploy.isin([1, 2])] # count full- and part-time workers + .groupby("household_id") + .count() + .pemploy.reindex(households.household_id) + .fillna(0) + ) + + return ( + num_workers == households.set_index("household_id").num_workers + ).reindex(households.index) + + +class Person(pa.DataFrameModel): + """ + Person data from PopulationSim and input to ActivitySim. + Customize as needed for your application. + + person_id: Unique person ID + household_id: household ID of the person + age: Person age + sex: Person sex (see enums.py::Gender) + ptype: Person type (see enums.py::PersonType) + """ + + person_id: int = pa.Field(unique=True, ge=0) + household_id: int = pa.Field(nullable=False) + age: int = pa.Field(ge=0, le=100) + sex: int = pa.Field(isin=e.Gender) + ptype: int = pa.Field(isin=e.PersonType) + + @pa.dataframe_check( + name="Do each persons' household IDs exist in the households table?" + ) + def check_persons_in_households(cls, persons: pd.DataFrame): + households = TABLE_STORE["households"] + return persons.household_id.isin(households.household_id) + + @pa.dataframe_check(name="Does every household ID have a matching person ID?") + def check_households_have_persons(cls, persons: pd.DataFrame): + households = TABLE_STORE["households"] + return households.household_id.isin(persons.household_id) + + @pa.dataframe_check( + name="Are all workers' and college students' ages >=18?", raise_warning=True + ) + def check_worker_college_student_age(cls, persons: pd.DataFrame): + return (~persons.ptype.isin([1, 2, 3])) | (persons.age >= 18) + + @pa.dataframe_check( + name="Are all non-workers' ages in [18,65)?", raise_warning=True + ) + def check_nonworker_age(cls, persons: pd.DataFrame): + return (~(persons.ptype == 4)) | ((persons.age >= 18) & (persons.age < 65)) + + @pa.dataframe_check(name="Are all retirees' ages >=65?", raise_warning=True) + def check_retiree_age(cls, persons: pd.DataFrame): + return (~(persons.ptype == 5)) | (persons.age >= 65) + + @pa.dataframe_check( + name="Are all driving age students' ages in [16,18)?", raise_warning=True + ) + def check_driving_student_age(cls, persons: pd.DataFrame): + return (~(persons.ptype == 6)) | (persons.age.isin(range(16, 18))) + + @pa.dataframe_check( + name="Are all non-driving age students' ages in [6,17)?", raise_warning=True + ) + def check_nondriving_student_age(cls, persons: pd.DataFrame): + return (~(persons.ptype == 7)) | (persons.age.isin(range(6, 17))) + + @pa.dataframe_check( + name="Are all preschool children's ages in [0,6)?", raise_warning=True + ) + def check_preschooler_student_age(cls, persons: pd.DataFrame): + return (~(persons.ptype == 8)) | (persons.age.isin(range(0, 6))) + + +class Landuse(pa.DataFrameModel): + """ + Land use data. + Customize as needed for your application. + + zone_id: TAZ of the zone + DISTRICT: District the zone relies in + SD: Super District + COUNTY: County of zone, see enums.County + TOTHH: Total households + TOTEMP: Total Employment + RETEMPN: Retail trade employment + FPSEMPN: Financial and processional services employment + HEREMPN: Health, educational, and recreational service employment + OTHEMPN: Other employment + AGREMPN: Agricultural and natural resources employment + MWTEMPN: Manufacturing, wholesale trade, and transporation employment + + """ + + zone_id: int = pa.Field(unique=True, ge=0) + DISTRICT: int = pa.Field(ge=0) + SD: int = pa.Field(ge=0) + county_id: int = pa.Field(isin=e.County) + area_type: int = pa.Field(isin=e.AreaType) + TOTHH: int = pa.Field(ge=0) + TOTEMP: int = pa.Field(ge=0) + RETEMPN: int = pa.Field(ge=0) + FPSEMPN: int = pa.Field(ge=0) + HEREMPN: int = pa.Field(ge=0) + OTHEMPN: int = pa.Field(ge=0) + AGREMPN: int = pa.Field(ge=0) + MWTEMPN: int = pa.Field(ge=0) + + @pa.dataframe_check( + name="Is total employment equal to the sum of all employment categories?" + ) + def check_tot_employment(cls, land_use: pd.DataFrame): + tot_emp = land_use[ + ["RETEMPN", "FPSEMPN", "HEREMPN", "OTHEMPN", "AGREMPN", "MWTEMPN"] + ].sum(axis=1) + return (tot_emp == land_use.TOTEMP).reindex(land_use.index) + + @pa.dataframe_check( + name="Do zones' total HH equal number of HH in households table?", + raise_warning=True, + ) + def check_hh_per_zone(cls, land_use: pd.DataFrame): + households = TABLE_STORE["households"] + num_hh = ( + households.groupby("home_zone_id") + .household_id.nunique() + .reindex(land_use.zone_id) + .fillna(0) + ) + return (land_use.set_index("zone_id").TOTHH == num_hh).reindex(land_use.index) + + @pa.dataframe_check( + name="Do zones' populations equal number of people in persons table?", + raise_warning=True, + ) + def check_pop_per_zone(cls, land_use: pd.DataFrame): + persons = TABLE_STORE["persons"] + households = TABLE_STORE["households"] + persons_per_household = persons.groupby("household_id").size() + hh = households[["household_id", "home_zone_id"]].merge( + persons_per_household.rename("persons_per_household"), on="household_id" + ) + pop = hh.groupby(households.home_zone_id)["persons_per_household"].sum() + lu = land_use.set_index("zone_id") + return pop.reindex(lu.index) == lu.TOTPOP + + +class NetworkLinks(pa.DataFrameModel): + """ + Example Network data. + Only including some columns here for illustrative purposes. + + ID: network link ID + Dir: Direction + Length: length of link in miles + AB_LANES: number of lanes in the A-node to B-node direction + BA_LANES: number of lanes in the B-node to A-node direction + FENAME: street name + """ + + ID: int = pa.Field(unique=True, ge=0) + Dir: int = pa.Field(isin=[-1, 0, 1]) + Length: float = pa.Field(ge=0) + AB_LANES: int = pa.Field(ge=0, le=10) + BA_LANES: int = pa.Field(ge=0, le=10) + FENAME: str = pa.Field() + + @pa.dataframe_check(name="All skims in File?", raise_warning=True) + def check_all_skims_exist(cls, land_use: pd.DataFrame): + state = TABLE_STORE["state"] + + # code duplicated from skim_dict_factory.py but need to copy here to not load skim data + los_settings = state.filesystem.read_settings_file("network_los.yaml") + omx_file_paths = state.filesystem.expand_input_file_list( + los_settings["taz_skims"]["omx"] + ) + omx_manifest = dict() + + for omx_file_path in omx_file_paths: + with omx.open_file(omx_file_path, mode="r") as omx_file: + for skim_name in omx_file.listMatrices(): + omx_manifest[skim_name] = omx_file_path + omx_keys = [] + for skim_name in omx_manifest.keys(): + key1, sep, key2 = skim_name.partition("__") + omx_keys.append(key1) + + tour_mode_choice_spec = state.filesystem.read_settings_file( + "tour_mode_choice.yaml" + )["SPEC"] + + def extract_skim_names(file_path): + """ + Helper function to grab the names of the matrices from a given file_path. + + e.g. grabbing 'DRIVEALONE_TIME' from instance of skims['DRIVEALONE_TIME'] in tour_mode_choice.csv + """ + skim_names = [] + + with open(file_path) as csvfile: + csv_reader = csv.reader(csvfile) + for row in csv_reader: + row_string = ",".join(row) + matches = re.findall(r"skims\[['\"]([^'\"]+)['\"]\]", row_string) + skim_names.extend(matches) + + return skim_names + + skim_names = extract_skim_names( + state.filesystem.get_config_file_path(tour_mode_choice_spec) + ) + + missing_skims = [ + skim_name for skim_name in skim_names if skim_name not in omx_keys + ] + if len(missing_skims) > 0: + log_info(f"Missing skims {missing_skims} found in {tour_mode_choice_spec}") + else: + log_info(f"Found all skimms in {tour_mode_choice_spec}") + return len(missing_skims) == 0 diff --git a/activitysim/examples/prototype_mtc_extended/data_model/input_checks_pydantic_dev.py b/activitysim/examples/prototype_mtc_extended/data_model/input_checks_pydantic_dev.py new file mode 100644 index 000000000..b17111906 --- /dev/null +++ b/activitysim/examples/prototype_mtc_extended/data_model/input_checks_pydantic_dev.py @@ -0,0 +1,109 @@ +""" +Data Model for ActivitySim Inputs + +Instructions: customize these example values for your own ActivitySim implementation +""" +from typing import List, Optional +import os, sys, logging + +from pydantic import BaseModel, validator +import pandera as pa +import numpy as np +import pandas as pd +import openmatrix as omx + +import enums as e + +from activitysim.abm.models.input_checker import TABLE_STORE + +logger = logging.getLogger(__name__) + + +class Person(BaseModel): + """ + Person data from PopulationSim and input to ActivitySim. + Customize as needed for your application. + """ + + person_id: int + household_id: int + age: int + sex: int + ptype: int + + +class Household(BaseModel): + """ + Household data from PopulationSim and input to ActivitySim. + Customize as needed for your application. + """ + + household_id: int + home_zone_id: int + hhsize: int + income: int + auto_ownership: int + HHT: int + persons: list[Person] + + +class TravelAnalysisZoneData(BaseModel): + """ + Land use data. + Customize as needed for your application. + + zone_id: TAZ of the zone + DISTRICT: District the zone relies in + SD: Super District + COUNTY: County of zone, see enums.County + TOTHH: Total households + TOTEMP: Total Employment + RETEMPN: Retail trade employment + FPSEMPN: Financial and processional services employment + HEREMPN: Health, educational, and recreational service employment + OTHEMPN: Other employment + AGREMPN: Agricultural and natural resources employment + MWTEMPN: Manufacturing, wholesale trade, and transporation employment + + """ + + zone_id: int + DISTRICT: int + SD: int + county_id: int + area_type: int + TOTHH: int + TOTEMP: int + RETEMPN: int + FPSEMPN: int + HEREMPN: int + OTHEMPN: int + AGREMPN: int + MWTEMPN: int + + +class PersonValidator(BaseModel): + """ + Helper class to validate a list of persons. + See the example notebooks for details on how this works. + """ + + list_of_persons: List[Person] + + +class HouseholdValidator(BaseModel): + """ + Helper class to validate a list of households. + See the example notebooks for details on how this works. + """ + + list_of_households: List[Household] + + +class TazValidator(BaseModel): + """ + Helper class to validate a list of zonal data. + See the example notebooks for details on how this works. + """ + + list_of_zones: List[TravelAnalysisZoneData] diff --git a/activitysim/examples/prototype_mtc_extended/sampling_scenarios.py b/activitysim/examples/prototype_mtc_extended/sampling_scenarios.py index 84e72bedd..03f480fb9 100644 --- a/activitysim/examples/prototype_mtc_extended/sampling_scenarios.py +++ b/activitysim/examples/prototype_mtc_extended/sampling_scenarios.py @@ -1,9 +1,13 @@ +from __future__ import annotations + import argparse import os +import shutil + +import pandas as pd import pkg_resources import yaml -import pandas as pd -import shutil + from activitysim.cli.run import add_run_args, run from activitysim.core.util import named_product @@ -21,8 +25,10 @@ def integer_params(params): d_zones = 1 if params.DESTINATION_SAMPLE_SIZE > 1 else n_zones o_zones = 1 if params.ORIGIN_SAMPLE_SIZE > 1 else n_zones - params.DESTINATION_SAMPLE_SIZE = round(params.DESTINATION_SAMPLE_SIZE * d_zones) - params.ORIGIN_SAMPLE_SIZE = round(params.ORIGIN_SAMPLE_SIZE * o_zones) + params.DESTINATION_SAMPLE_SIZE = int( + round(params.DESTINATION_SAMPLE_SIZE * d_zones) + ) + params.ORIGIN_SAMPLE_SIZE = int(round(params.ORIGIN_SAMPLE_SIZE * o_zones)) return params @@ -171,8 +177,9 @@ def run_scenarios(): run_model() # Copy results to named folder copy_output(scene_name, model_settings) - except: + except Exception: print(f"Failed on scene {scene_name}") + raise if __name__ == "__main__": diff --git a/activitysim/examples/prototype_mtc_extended/test/additional_data/example_hwy_data.csv b/activitysim/examples/prototype_mtc_extended/test/additional_data/example_hwy_data.csv new file mode 100644 index 000000000..f96b81012 --- /dev/null +++ b/activitysim/examples/prototype_mtc_extended/test/additional_data/example_hwy_data.csv @@ -0,0 +1,35497 @@ +ID,Dir,Length,AB_LANES,BA_LANES,CENT_LANE,MODE_ID,NFC,NFC_FLAG,AREA_TYPE,COUNTY,FENAME,FETYPE,PR,BMP,EMP,TransitOnly,Walktime,Alpha,Beta +41445,0,0.47372,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.369275,0.15,4 +5439,0,0.504171,1,1,0,2,4,,5,8,M 36,,932308,9.288,9.791,0,12.100097,3,4 +7044,0,2.780595,1,1,0,2,5,,5,8,Chilson,Rd,933603,1.514,4.294,0,66.734276,3.7,5 +7052,0,1.131603,1,1,0,2,5,,5,8,Golf Club,Rd,933602,0.811,1.942,0,27.158478,3.7,5 +7092,0,1.249086,1,1,0,2,3,,5,8,Highland,Rd,933209,5.027,6.275,0,29.978056,1.7,4 +7160,0,0.237102,2,2,1,2,3,,4,8,Grand River,Rd,932910,14.843,15.08,0,5.690436,3.7,5 +7273,0,2.361953,1,1,0,2,6,GRV,5,8,Cohoctah,Rd,941605,0,2.361,0,56.686861,5.55,5 +7461,0,1.126379,1,1,0,2,4,,5,8,Coon Lake,Rd,935710,12.715,13.841,0,27.033093,3,4 +40452,1,2.564832,3,0,0,1,1,,4,8,E I 96,,935105,12.602,15.166,0,,0.8,7.5 +40453,-1,3.036386,0,3,0,1,1,,4,8,W I 96,,935207,12.178,15.213,0,,0.8,7.5 +7760,0,1.594588,1,1,0,2,6,,5,8,Swarthout,Rd,944806,0,1.594,0,38.270104,5.8,6 +8014,0,0.998241,1,1,0,2,5,,5,8,Faussett,Rd,934509,2.179,3.177,0,23.957788,3.7,5 +8052,0,1.00383,1,1,0,2,6,GRV,5,8,Clyde,Rd,939905,0.986,1.989,0,24.091925,5.55,5 +9524,0,1.620616,1,1,0,2,4,,4,5,Baker,Rd,1426608,0.777,2.397,0,38.894789,4.5,4.5 +9556,1,4.558211,2,0,0,1,1,,5,5,E I 94,,1426109,8.368,12.924,0,,1.02,7 +9651,0,0.818111,1,1,0,2,4,,4,5,Jackson,Rd,1426508,13.096,13.914,0,19.634657,4.5,4.5 +9695,0,1.002933,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,7.105,8.107,0,24.070387,3.7,5 +10004,0,1.022865,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,9.532,10.554,0,24.548764,3,4 +10064,0,1.108566,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,0,1.115,0,26.605594,5.55,5 +10136,0,1.321996,1,1,0,2,3,,5,5,Michigan,Ave,1427301,4.261,5.582,0,31.727903,1.7,4 +10398,-1,4.851275,0,2,0,1,1,,5,5,W I 94,,1426110,8.315,13.164,0,,1.02,7 +10757,0,1.437476,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,0.08,1.517,0,34.499428,3.7,5 +10991,0,1.987447,1,1,0,2,6,GRV,5,5,Saline Waterworks,Rd,1432706,2.01,3.997,0,47.698729,5.55,5 +11092,0,0.316447,1,1,0,2,4,,4,5,Main,St,1446002,0.812,1.128,0,7.594731,4.5,4.5 +11128,0,0.925921,1,1,0,2,5,,5,5,Huron River,Dr,1445801,4.452,5.377,0,22.222113,3.7,5 +11359,0,0.323063,1,1,0,2,5,,4,5,Central,St,4605379,0,0.323,0,7.7535,5.8,4.5 +19920,0,0.824344,1,1,0,2,5,,5,8,Shehan,Rd,4103148,0,0.824,0,19.784267,3.7,5 +21855,0,1.434777,1,1,0,2,5,,5,5,Austin,Rd,4604910,7.18,8.614,0,34.434643,3.7,5 +24594,0,0.588089,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.114129,0.15,4 +24603,0,1.216451,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.194817,0.15,4 +24604,0,1.669329,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.063906,0.15,4 +24608,0,1.330765,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.938363,0.15,4 +24613,0,1.505446,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.130712,0.15,4 +24614,0,0.329505,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.908114,0.15,4 +24616,0,0.951103,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.826464,0.15,4 +24626,0,1.023795,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,24.571074,0.15,4 +24629,0,1.588811,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,38.131462,0.15,4 +24631,0,1.060343,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,25.448236,0.15,4 +24638,0,0.298511,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.164268,0.15,4 +24645,0,1.39543,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.490325,0.15,4 +24647,0,1.775936,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,42.622461,0.15,4 +24649,0,0.757875,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.189011,0.15,4 +24650,0,1.307831,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.387937,0.15,4 +24651,0,0.469697,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.272735,0.15,4 +27060,0,0.628688,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,15.088523,0.15,4 +29636,0,0.845217,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.285198,0.15,4 +29986,0,1.851808,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,44.443397,0.15,4 +30115,0,0.83924,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.141772,0.15,4 +6190,0,2.324564,1,1,0,2,4,,5,8,M 36,,932308,3.703,6.027,0,55.789547,3,4 +6910,0,0.901069,1,1,0,2,4,,5,8,M 36,,932308,0.859,1.76,0,21.625664,3,4 +7217,0,1.87192,1,1,0,2,6,,5,8,Farley,Rd,932707,0,1.871,0,44.926088,5.8,6 +7218,0,1.101658,1,1,0,2,4,,5,8,Pinckney,Rd,932701,0.123,1.225,0,26.439803,3,4 +19927,0,0.25015,1,1,0,2,4,,5,8,M 36,,4103111,9.134,9.384,0,6.003608,3,4 +24662,0,1.841747,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,44.201923,0.15,4 +30149,0,1.718795,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,41.251079,0.15,4 +5692,0,0.158879,1,1,0,2,6,,,5,Prospect Hill,Rd,915607,2.414,2.573,0,3.813099,5.8,6 +9710,0,1.84027,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,8.682,10.521,0,44.166484,3.7,5 +9712,0,1.079227,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,7.603,8.682,0,25.901442,3.7,5 +9717,0,1.629142,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,4.936,6.565,0,39.099412,3.7,5 +9872,0,3.463036,1,1,0,2,4,,5,5,M 52,,1425710,9.381,12.843,0,83.11286,3,4 +10919,0,1.110642,1,1,0,2,5,GRV,5,5,Parker,Rd,1447909,0,1.11,0,26.655416,5.55,5 +10937,0,1.017733,1,1,0,2,6,GRV,5,5,Jacob,Rd,1447706,1.228,2.245,0,24.425603,5.55,5 +11097,0,0.447432,1,1,0,2,6,,5,5,Reno,Rd,1447905,0,0.447,0,10.738361,5.8,6 +24675,0,1.708557,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,41.00536,0.15,4 +24679,0,0.400856,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.620545,0.15,4 +24681,0,1.051095,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.226283,0.15,4 +24682,0,2.335182,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,56.044367,0.15,4 +24684,0,2.40297,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,57.671276,0.15,4 +34047,0,0.943738,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34048,0,1.05608,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34049,0,1.147408,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34050,1,1.274682,2,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34051,-1,1.279914,0,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34054,0,0.859072,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34097,0,1.011921,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34098,0,1.063139,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9719,0,1.673395,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,3.264,4.936,0,40.161481,3.7,5 +9931,0,1.451434,1,1,0,2,4,,5,5,M 52,,1425710,3.765,5.216,0,34.834408,3,4 +9938,0,3.568208,1,1,0,2,4,,5,5,M 52,,1425710,0,3.567,0,85.636992,3,4 +11002,0,1.258925,1,1,0,2,6,GRV,5,5,Logan,Rd,1432503,0.702,1.96,0,30.214205,5.55,5 +11015,0,2.496174,1,1,0,2,6,GRV,5,5,Ely,Rd,1432210,0,2.495,0,59.908178,5.55,5 +11068,0,0.541218,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,0,0.541,0,12.989227,5.55,5 +21524,0,1.579614,1,1,0,2,5,,5,5,Austin,Rd,4604910,0,1.579,0,37.910728,3.7,5 +24566,0,0.609804,1,1,0,2,3,,,5,US 12,,0,0,0,0,14.635305,1.7,4 +24570,0,0.840364,2,2,0,2,3,,,5,US 12,,0,0,0,0,20.168744,1.7,4 +24571,0,0.456018,1,1,0,2,5,,,5,Clinton,Rd,0,0,0,0,10.944423,3.7,5 +24688,0,3.194112,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,76.658695,0.15,4 +24689,0,1.773893,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,42.573443,0.15,4 +19953,0,0.262867,1,1,0,2,3,,5,5,US 12,,3460109,1.126,1.389,0,6.308802,1.7,4 +34095,0,1.466755,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19951,0,1.879828,1,1,0,2,3,,,5,US 12,,3460109,2.24,4.119,0,45.115866,1.7,4 +24558,0,0.091608,1,1,0,2,3,,,5,US 12,,3460109,2.148,2.24,0,2.198585,1.7,4 +34094,0,0.867386,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +24559,0,0.551187,1,1,0,2,3,,,5,US 12,,3460109,1.597,2.148,0,13.228493,1.7,4 +24572,0,0.180297,1,1,0,2,3,,,5,US 12,,0,0,0,0,4.327128,1.7,4 +19952,0,0.0279,1,1,0,2,3,,5,5,US 12,,3460109,1.389,1.417,0,0.669595,1.7,4 +19950,0,0.1564,1,1,0,2,3,,,5,US 12,,3460109,4.119,4.275,0,3.753601,1.7,4 +9722,0,1.685035,1,1,0,2,6,,5,5,Pleasant Lake,Rd,1426007,0.035,1.72,0,40.440831,5.8,6 +11038,0,1.232959,1,1,0,2,6,,5,5,Sharon Hollow,Rd,1432205,4.129,5.361,0,29.591022,5.8,6 +19971,0,1.527581,1,1,0,2,5,,5,5,Austin,Rd,3380142,2.912,4.439,0,36.661955,3.7,5 +24686,0,2.167252,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,52.01405,0.15,4 +24687,0,2.005218,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,48.125227,0.15,4 +5694,0,1.376043,1,1,0,2,6,,5,5,Watkins,Rd,916203,1.083,2.459,0,33.025031,5.8,6 +11067,0,0.652203,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,2.173,2.825,0,15.652881,5.55,5 +11080,0,1.510036,1,1,0,2,6,,5,5,Herman,Rd,1432203,0.863,2.372,0,36.240875,5.8,6 +11115,0,1.185219,1,1,0,2,6,GRV,5,5,Wellwood,Rd,1432107,0,1.185,0,28.445249,5.55,5 +24598,0,1.627566,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.061592,0.15,4 +24691,0,0.934469,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.427254,0.15,4 +24692,0,1.961016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,47.064394,0.15,4 +5693,0,1.083415,1,1,0,2,6,,5,5,Watkins,Rd,916203,0,1.083,0,26.001958,5.8,6 +34096,0,0.724908,1,1,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +11083,0,0.862809,1,1,0,2,6,,5,5,Herman,Rd,1432203,0,0.863,0,20.707406,5.8,6 +11098,0,1.275977,1,1,0,2,6,GRV,5,5,Wellwood,Rd,1432107,1.185,2.46,0,30.623443,5.55,5 +11062,0,1.243263,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,2.825,4.068,0,29.838315,5.55,5 +24690,0,0.982495,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.579886,0.15,4 +11057,0,0.061112,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,1432205,4.068,4.129,0,1.466678,5.55,5 +21472,0,0.082362,1,1,0,2,6,,5,5,Herman,Rd,4603916,0,0.082,0,1.976679,5.8,6 +11070,0,0.046656,1,1,0,2,6,GRV,5,5,Herman/Sharon Hollow Cutoff,,1432203,2.372,2.419,0,1.119744,5.55,5 +9730,0,2.143771,1,1,0,2,6,,5,5,Sharon Valley,Rd,1426005,0,2.143,0,51.450502,5.8,6 +10944,0,1.016416,1,1,0,2,6,GRV,5,5,Below,Rd,1447705,0,1.016,0,24.393986,5.55,5 +11123,0,0.939881,1,1,0,2,6,,5,5,Sharon Hollow,Rd,1447607,0,0.94,0,22.557135,5.8,6 +19972,0,2.27855,1,1,0,2,5,,5,5,Austin,Rd,3380142,0.634,2.912,0,54.685192,3.7,5 +11037,0,1.581507,1,1,0,2,6,,5,5,Sharon Hollow,Rd,1432205,5.361,6.942,0,37.956179,5.8,6 +9729,0,0.061059,1,1,0,2,6,,5,5,Sharon Valley,Rd,1426005,2.143,2.204,0,1.465425,5.8,6 +10936,0,0.979673,1,1,0,2,6,GRV,5,5,Easudes,Rd,1447709,1.099,2.078,0,23.512154,5.55,5 +11110,0,1.228064,1,1,0,2,6,GRV,5,5,Jacob,Rd,1447706,0,1.228,0,29.473546,5.55,5 +11120,0,0.135926,1,1,0,2,6,GRV,5,5,Sharon Hollow,Rd,5498382,0,0.136,0,3.26223,5.55,5 +9727,0,0.035235,1,1,0,2,6,GRV,5,5,Pleasant Lake,Rd,1426007,0,0.035,0,0.845632,5.55,5 +40031,-1,0.035432,0,1,0,2,3,,4,3,Orchard lake / W 14 MIle cutof,Rd,5500010,0,0.036,0,0.850366,3.7,5 +21876,0,0.073745,1,1,0,2,6,,5,5,Sharon Hollow/Pleasant Lake Cu,,4600923,0,0.074,0,1.769884,5.8,6 +9720,0,1.544554,1,1,0,2,6,,5,5,Pleasant Lake,Rd,1426007,1.72,3.264,0,37.069284,5.8,6 +19970,0,0.653389,1,1,0,2,5,,5,5,Austin,Rd,3380142,4.439,5.092,0,15.681341,3.7,5 +24548,0,1.517003,1,1,0,2,4,,5,5,M 52,,1425710,6.836,8.352,0,36.408068,3,4 +24685,0,1.173216,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.157192,0.15,4 +9731,0,0.415581,1,1,0,2,5,,5,5,Hibbard,St,1425809,0.164,0.579,0,9.973939,3.7,5 +9880,0,0.486017,1,1,0,2,4,,5,5,Ann Arbor,St,1425710,6.266,6.752,0,11.664408,3,4 +9907,0,0.367643,1,1,0,2,4,,5,5,Riverside,Dr,1425710,5.899,6.266,0,8.823425,3,4 +11003,0,0.409649,1,1,0,2,6,,5,5,Adrian,Rd,1432503,0.292,0.702,0,9.831581,5.8,6 +24591,0,0.791395,1,1,0,2,5,,5,5,Dutch,Dr,4605721,0,0.791,0,18.993479,3.7,5 +24694,0,0.184011,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,4.416271,0.15,4 +24696,0,0.396229,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.509505,0.15,4 +24701,0,0.422974,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.151375,0.15,4 +30082,0,0.536662,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.879886,0.15,4 +11004,0,0.292299,1,1,0,2,6,,5,5,Adrian,Rd,1432503,0,0.292,0,7.01517,5.8,6 +19968,0,0.199803,1,1,0,2,5,,5,5,Main,St,3380142,5.419,5.619,0,4.79526,3.7,5 +19969,0,0.327356,1,1,0,2,5,,5,5,Main,St,3380142,5.092,5.419,0,7.856534,3.7,5 +24697,0,0.444453,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.666861,0.15,4 +19967,0,0.081067,1,1,0,2,5,,5,5,Main,St,3380142,5.619,5.7,0,1.945611,3.7,5 +24547,0,0.084229,1,1,0,2,4,,5,5,Ann Arbor,St,1425710,6.752,6.836,0,2.021502,3,4 +9732,0,0.16379,1,1,0,2,5,,5,5,Hibbard,St,1425809,0,0.164,0,3.930955,3.7,5 +9924,0,0.391688,1,1,0,2,4,,5,5,City,Rd,1425710,5.507,5.899,0,9.400524,3,4 +24693,0,0.259882,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.237157,0.15,4 +24695,0,0.217852,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,5.228459,0.15,4 +24699,0,0.285309,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.84742,0.15,4 +24700,0,0.375863,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.020722,0.15,4 +9927,0,0.291335,1,1,0,2,4,,5,5,City,Rd,1425710,5.216,5.507,0,6.99204,3,4 +9878,0,1.028947,1,1,0,2,4,,5,5,M 52,,1425710,8.352,9.381,0,24.694728,3,4 +24683,0,1.955897,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,46.941536,0.15,4 +24569,0,0.78264,1,1,0,2,3,,,5,US 12,,0,0,0,0,18.783348,1.7,4 +24568,0,1.366761,1,1,0,2,3,,,5,US 12,,0,0,0,0,32.802272,1.7,4 +34093,0,0.764269,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +24567,0,0.133286,1,1,0,2,4,,,5,M 52,,0,0,0,0,3.198864,3,4 +34092,0,0.707902,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34091,0,0.800525,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +10410,0,0.590269,1,1,0,2,3,,5,5,Michigan,Ave,1427301,0,0.59,0,14.16646,1.7,4 +10996,0,2.420233,1,1,0,2,6,GRV,5,5,Kaiser,Rd,1432606,3.397,5.816,0,58.085598,5.55,5 +11000,0,0.904337,1,1,0,2,6,GRV,5,5,Braun,Rd,1432604,0,0.904,0,21.704081,5.55,5 +19954,0,1.479402,1,1,0,2,5,,5,5,Clinton,Rd,3460105,3.687,5.166,0,35.505644,3.7,5 +21799,0,1.960633,1,1,0,2,5,,5,5,Austin,Rd,4604910,3.237,5.197,0,47.05519,3.7,5 +24704,0,1.780442,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,42.730614,0.15,4 +24706,0,1.451312,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,34.831492,0.15,4 +24710,0,1.830908,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,43.941793,0.15,4 +24711,0,0.874833,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.99598,0.15,4 +19956,0,1.510986,1,1,0,2,5,,5,5,Clinton,Rd,3460105,1.874,3.384,0,36.263655,3.7,5 +24707,0,1.028679,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.688288,0.15,4 +29979,0,1.372868,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.948842,0.15,4 +9934,0,0.198256,1,1,0,2,4,,5,5,M 52,,1425710,3.567,3.765,0,4.758134,3,4 +19957,0,1.659541,1,1,0,2,5,,5,5,Clinton,Rd,3460105,0.215,1.874,0,39.828984,3.7,5 +19955,0,0.302819,1,1,0,2,5,,5,5,Clinton,Rd,3460105,3.384,3.687,0,7.267666,3.7,5 +10870,0,1.947888,1,1,0,2,6,GRV,5,5,Ernest,Rd,1433008,0,1.947,0,46.749301,5.55,5 +22067,0,1.448326,1,1,0,2,5,,5,5,Austin,Rd,4604910,1.789,3.237,0,34.759832,3.7,5 +21309,0,0.21018,1,1,0,2,5,,5,5,Austin,Rd,4604910,1.579,1.789,0,5.044324,3.7,5 +10844,0,1.639628,1,1,0,2,6,GRV,5,5,Ernest,Rd,1433008,1.947,3.586,0,39.351073,5.55,5 +9571,0,1.09711,1,1,0,2,6,GRV,5,5,McCollum,Rd,1427304,0,1.097,0,26.330644,5.55,5 +10142,0,1.927055,1,1,0,2,3,,5,5,Michigan,Ave,1427301,0.59,2.516,0,46.24932,1.7,4 +10408,0,1.745121,1,1,0,2,3,,5,5,Michigan,Ave,1427301,2.516,4.261,0,41.882904,1.7,4 +10999,0,1.794109,1,1,0,2,6,GRV,5,5,Braun,Rd,1432604,0.904,2.697,0,43.058613,5.55,5 +24702,0,0.945904,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.701686,0.15,4 +24703,0,1.850065,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,44.401557,0.15,4 +24705,0,1.558554,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.405292,0.15,4 +10342,0,1.002757,1,1,0,2,6,GRV,5,5,McCollum,Rd,1427304,1.097,2.099,0,24.06617,5.55,5 +9559,0,1.008822,1,1,0,2,6,GRV,5,5,McCollum,Rd,1427304,2.099,3.108,0,24.211739,5.55,5 +10842,0,1.05046,1,1,0,2,6,,5,5,Schneider,Rd,1433009,0,1.05,0,25.211048,5.8,6 +10994,0,2.01074,1,1,0,2,6,GRV,5,5,Saline Waterworks,Rd,1432706,0,2.01,0,48.257761,5.55,5 +11379,0,1.022038,1,1,0,2,5,GRV,5,5,Parker,Rd,1444406,0,1.022,0,24.528912,5.55,5 +21356,0,1.46991,1,1,0,2,5,,5,5,Austin,Rd,4604910,5.473,6.943,0,35.277841,3.7,5 +24708,0,1.061766,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.48239,0.15,4 +21575,0,0.276809,1,1,0,2,5,,5,5,Austin,Rd,4604910,5.197,5.473,0,6.643414,3.7,5 +10841,0,2.03161,1,1,0,2,6,,5,5,Schneider,Rd,1433009,1.05,3.081,0,48.758635,5.8,6 +22121,0,0.23741,1,1,0,2,5,,5,5,Austin,Rd,4604910,6.943,7.18,0,5.697832,3.7,5 +11377,0,0.50034,1,1,0,2,5,GRV,5,5,Parker,Rd,1444406,1.531,2.031,0,12.008164,5.55,5 +11154,0,0.509632,1,1,0,2,5,GRV,5,5,Parker,Rd,1444406,1.022,1.531,0,12.231156,5.55,5 +10921,0,0.164077,1,1,0,2,5,GRV,5,5,Weber,Rd,1447906,0.919,1.083,0,3.937857,5.55,5 +6823,0,1.109876,1,1,0,2,5,,5,8,Patterson Lake,Rd,932401,0.043,1.152,0,26.637022,3.7,5 +9523,0,0.7191,1,1,0,2,4,,4,5,Baker,Rd,1426608,2.397,3.116,0,17.258394,4.5,4.5 +9542,0,0.814681,1,1,0,2,7,GRV,5,5,Dancer,Rd,1426604,4.018,4.832,0,19.552345,5.55,5 +9572,1,2.018787,2,0,0,1,1,,5,5,E I 94,,1426109,5.878,7.896,0,,1.02,7 +9692,0,0.295339,1,1,0,2,4,,4,5,Old US 12,,1426508,6.731,7.027,0,7.088148,4.5,4.5 +9701,0,2.779808,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,0,2.779,0,66.715393,3.7,5 +10069,0,1.366733,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,2.219,3.585,0,32.801597,3.7,5 +10110,0,0.097643,1,1,0,2,5,,4,5,Middle,St,1426303,0.886,0.983,0,2.343428,5.8,4.5 +10400,-1,2.528029,0,2,0,1,1,,5,5,W I 94,,1426110,5.42,7.947,0,,1.02,7 +11016,0,0.570817,1,1,0,2,4,,4,5,Dexter Chelsea,Rd,1452809,6.459,7.029,0,13.699609,4.5,4.5 +11046,0,2.209093,1,1,0,2,6,GRV,5,5,Lima Center,Rd,1453510,0,2.208,0,53.018223,5.55,5 +11228,0,2.064413,1,1,0,2,6,GRV,5,5,Bush,Rd,1452510,1.767,3.831,0,49.545902,5.55,5 +11479,0,0.247761,1,1,0,2,5,,5,5,Island Lake,Rd,1451905,1.407,1.655,0,5.946255,3.7,5 +19766,0,0.068715,1,1,0,2,5,,5,8,Patterson Lake,Rd,4104154,0,0.069,0,1.649168,3.7,5 +21504,0,2.75499,1,1,0,2,5,,5,5,Hadley,Rd,4600021,0,2.754,0,66.119768,3.7,5 +24663,0,1.434852,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.436457,0.15,4 +24727,0,0.388384,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.321206,0.15,4 +24735,0,0.534289,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.822942,0.15,4 +24741,0,0.502752,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.066057,0.15,4 +9590,1,0.725149,2,0,0,1,1,,5,5,E I 94,,1426109,2.199,2.924,0,,1.02,7 +9704,0,0.97234,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,1426009,2.311,3.283,0,23.336158,5.55,5 +9784,0,1.459411,1,1,0,2,5,,5,5,Old US 12,,1426508,0,1.459,0,35.025862,3.7,5 +9799,0,1.734016,1,1,0,2,5,,5,5,Old US 12,,1426508,1.459,3.192,0,41.616377,3.7,5 +9822,0,0.877678,1,1,0,2,4,,5,5,M 52,,1425710,14.824,15.701,0,21.064277,3,4 +10411,-1,0.911762,0,2,0,1,1,,5,5,W I 94,,1426110,2.161,3.073,0,,1.02,7 +11114,0,2.213844,1,1,0,2,6,,5,5,Sylvan,Rd,1447702,4.686,6.899,0,53.132252,5.8,6 +11143,0,1.251642,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1436509,2.042,3.293,0,30.039413,3.7,5 +24724,0,0.664088,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.938107,0.15,4 +24737,0,1.042775,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.026592,0.15,4 +24751,0,1.544797,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.075127,0.15,4 +9706,0,1.821271,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,1426009,0.392,2.212,0,43.710514,5.55,5 +11109,0,1.946875,1,1,0,2,6,GRV,5,5,Struthers,Rd,1447706,2.245,4.191,0,46.724991,5.55,5 +34099,0,0.85475,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9707,0,0.391944,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,1426009,0,0.392,0,9.406658,5.55,5 +24672,0,1.919888,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,46.077304,0.15,4 +24673,0,0.874952,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.99884,0.15,4 +21534,0,0.07215,1,1,0,2,6,GRV,5,5,Grass Lake,Rd,4603820,0,0.072,0,1.731602,5.55,5 +9597,1,1.626236,2,0,0,1,1,,5,5,E I 94,,1426109,0,1.626,0,,1.02,7 +10433,-1,1.67739,0,2,0,1,1,,5,5,W I 94,,1426110,0,1.677,0,,1.02,7 +11158,0,0.904605,1,1,0,2,6,,5,5,Cavanaugh Lake,Rd,1436509,0,0.904,0,21.710519,5.8,6 +22027,0,0.762693,1,1,0,2,5,,5,5,Kalmbach,Rd,4603246,0.53,1.292,0,18.304633,3.7,5 +24713,0,1.180196,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.324708,0.15,4 +34100,0,0.792576,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9596,1,0.573628,2,0,0,1,1,,5,5,E I 94,,1426109,1.626,2.199,0,,1.02,7 +9796,1,0.335771,1,0,0,1,1,ROF,5,5,E I 94/Kalmbach,RAMP,1426503,0,0.336,0,,2.24,5 +10839,0,0.674602,1,1,0,2,7,GRV,5,5,Garvey,Rd,1450909,0,0.674,0,16.190453,5.55,5 +24712,0,0.749854,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.99649,0.15,4 +11050,0,0.784257,1,1,0,2,7,GRV,5,5,Hoppe,Rd,1450810,0,0.784,0,18.822178,5.55,5 +9611,1,0.281595,1,0,0,1,1,ROF,5,5,W I 94/Kalmbach,RAMP,1427003,0,0.282,0,,2.24,5 +9790,1,0.238255,1,0,0,1,1,RON,5,5,Kalmbach/E I 94,RAMP,1426505,0,0.238,0,,1.09,4 +10427,-1,0.484651,0,2,0,1,1,,5,5,W I 94,,1426110,1.677,2.161,0,,1.02,7 +21478,0,0.347701,1,1,0,2,7,GRV,5,5,Kalmbach,Rd,4603246,0,0.348,0,8.344815,5.55,5 +10180,1,0.244312,1,0,0,1,1,RON,5,5,Kalmbach/W I 94,RAMP,1427002,0,0.244,0,,1.09,4 +21268,0,0.181964,1,1,0,2,5,,5,5,Kalmbach,Rd,4603246,0.348,0.53,0,4.367145,3.7,5 +11146,0,1.100111,1,1,0,2,6,,5,5,Cavanaugh Lake,Rd,1436509,0.904,2.004,0,26.402664,5.8,6 +21470,0,0.029755,1,1,0,2,5,,5,5,Kalmbach/Cavanaugh Lake,,4604626,0,0.03,0,0.714114,3.7,5 +21748,0,0.033211,1,1,0,2,6,,5,5,Kalmbach,Rd,4603246,1.292,1.325,0,0.797057,5.8,6 +11144,0,0.037861,1,1,0,2,6,,5,5,Cavanaugh Lake,Rd,1436509,2.004,2.042,0,0.90867,5.8,6 +9702,0,0.583977,1,1,0,2,6,,5,5,Grass Lake,Rd,1426009,4.643,5.227,0,14.01544,5.8,6 +9703,0,1.361362,1,1,0,2,6,,5,5,Grass Lake,Rd,1426009,3.283,4.643,0,32.672688,5.8,6 +10949,0,1.564852,1,1,0,2,6,GRV,5,5,Sylvan,Rd,1447702,3.122,4.686,0,37.556445,5.55,5 +9867,0,1.318022,1,1,0,2,4,,5,5,M 52,,1425710,12.843,14.16,0,31.632517,3,4 +9846,0,0.508827,1,1,0,2,4,,5,5,M 52,,1425710,14.16,14.669,0,12.21184,3,4 +9845,0,0.155109,1,1,0,2,4,,5,5,M 52,,1425710,14.669,14.824,0,3.722604,3,4 +9575,1,1.920738,2,0,0,1,1,,5,5,E I 94,,1426109,3.611,5.531,0,,1.02,7 +9697,0,2.392452,1,1,0,2,5,,5,5,Old US 12,,1426508,3.761,6.153,0,57.418842,3.7,5 +9788,0,0.497092,1,1,0,2,4,,5,5,Main,St,1425710,17.132,17.629,0,11.930208,3,4 +10402,-1,1.623258,0,2,0,1,1,,5,5,W I 94,,1426110,3.503,5.125,0,,1.02,7 +10846,0,1.076308,1,1,0,2,6,,5,5,Pierce,Rd,1450902,0,1.076,0,25.831387,5.8,6 +11211,0,1.064281,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1452508,0.966,2.03,0,25.542741,3.7,5 +11266,0,0.996146,1,1,0,2,6,,5,5,Bush,Rd,1452510,0,0.996,0,23.907503,5.8,6 +24721,0,0.814095,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.538283,0.15,4 +24722,0,0.600015,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.400354,0.15,4 +24726,0,0.399374,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.584975,0.15,4 +24736,0,1.279994,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,30.719856,0.15,4 +24739,0,0.30546,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.331042,0.15,4 +9578,1,0.687819,2,0,0,1,1,,5,5,E I 94,,1426109,2.924,3.611,0,,1.02,7 +9584,1,0.373705,1,0,0,1,1,RON,5,5,Jackson/E I 94,RAMP,1426509,0,0.374,0,,1.09,4 +10337,1,0.200254,1,0,0,1,1,ROF,5,5,W I 94/Jackson,RAMP,1427006,0,0.2,0,,2.24,5 +10404,-1,0.430269,0,2,0,1,1,,5,5,W I 94,,1426110,3.073,3.503,0,,1.02,7 +9767,0,0.265353,1,1,0,2,5,,5,5,Old US 12,,1426508,3.192,3.457,0,6.368483,3.7,5 +9786,1,0.341135,1,0,0,1,1,ROF,5,5,E I 94/Jackson,RAMP,1426507,0,0.341,0,,2.24,5 +9676,1,0.198207,1,0,0,1,1,RON,5,5,Jackson/W I 94,RAMP,1427005,0.063,0.261,0,,1.09,4 +9734,0,0.177203,1,1,0,2,5,,5,5,Old US 12,,1426508,3.51,3.687,0,4.252872,3.7,5 +9638,0,0.052419,1,1,0,2,5,,5,5,Old US 12,,1426508,3.457,3.51,0,1.258055,3.7,5 +9705,0,0.011957,1,1,0,2,5,,5,5,Old US 12,,1426508,3.749,3.761,0,0.286958,3.7,5 +9728,0,0.062332,1,1,0,2,5,,5,5,Old US 12,,1426508,3.687,3.749,0,1.49596,3.7,5 +10294,1,0.062805,1,0,0,1,1,RON,5,5,Jackson/W I 94,RAMP,1427005,0,0.063,0,,1.09,4 +21684,1,0.027262,1,0,0,1,1,RON,5,5,Jackson/W I 94,RAMP,4604623,0,0.027,0,,1.09,4 +11048,0,1.266825,1,1,0,2,6,,5,5,Pierce,Rd,1450902,1.076,2.342,0,30.403808,5.8,6 +11053,0,0.771992,1,1,0,2,6,,5,5,Bush,Rd,1452510,0.996,1.767,0,18.527806,5.8,6 +11126,0,0.722033,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1436509,3.293,4.015,0,17.328788,3.7,5 +11371,0,0.069409,1,1,0,2,5,,5,5,Cavanaugh Lake,Rd,1452508,0.896,0.966,0,1.665822,3.7,5 +9802,0,0.905252,1,1,0,2,4,,5,5,M 52,,1425710,15.701,16.606,0,21.72604,3,4 +29977,0,0.758564,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.205526,0.15,4 +9573,1,0.346292,2,0,0,1,1,,5,5,E I 94,,1426109,5.531,5.878,0,,1.02,7 +9603,1,0.310352,1,0,0,1,1,ROF,5,5,E I 94/M 52,RAMP,1426108,0,0.31,0,,2.24,5 +9616,1,0.473974,1,0,0,1,1,RON,5,5,M 52/E I 94,RAMP,1426107,0,0.474,0,,1.09,4 +9792,0,0.202713,1,1,0,2,4,,5,5,Main,St,1425710,16.858,17.061,0,4.86512,3,4 +9797,0,0.231726,1,1,0,2,4,,5,5,Main,St,1425710,16.617,16.848,0,5.561413,3,4 +10167,1,0.418063,1,0,0,1,1,RON,5,5,M 52/W I 94,RAMP,1426202,0,0.418,0,,1.09,4 +40029,1,0.069633,3,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,4.993,5.062,0,1.671182,3.7,5 +10177,1,0.298735,1,0,0,1,1,ROF,5,5,W I 94/M 52,RAMP,1426201,0,0.299,0,,2.24,5 +24740,0,0.284636,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.831261,0.15,4 +10401,-1,0.294756,0,2,0,1,1,,5,5,W I 94,,1426110,5.125,5.42,0,,1.02,7 +40030,-1,0.034538,0,2,0,2,3,,4,3,Orchard Lake,Rd,5499978,0.062,0.097,0,0.828914,3.7,5 +40022,1,0.006358,3,0,0,2,3,,4,3,Orchard Lake,Rd,634003,4.937,4.943,0,0.152585,3.7,5 +39957,1,0.155169,3,0,0,2,5,,3,1,Riverbank,Rd,5494511,0,0.155,0,3.724051,8,4.5 +40028,1,0.0189,2,0,0,2,3,,4,3,Orchard Lake,Rd,634003,4.974,4.993,0,0.453606,3.7,5 +9801,0,0.010532,1,1,0,2,4,,5,5,M 52,,1425710,16.606,16.617,0,0.252771,3,4 +39944,-1,0.050994,0,2,0,2,5,,1,1,S I 375 Service Drive,,5491063,0,0.051,0,1.223857,8.5,4.5 +9794,0,0.009861,1,1,0,2,4,,5,5,Main,St,1425710,16.848,16.858,0,0.236668,3,4 +9789,0,0.071138,1,1,0,2,4,,5,5,Main,St,1425710,17.061,17.132,0,1.707314,3,4 +24725,0,0.308619,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.406863,0.15,4 +9774,0,0.140256,1,1,0,2,4,,5,5,Main,St,1425710,18.419,18.559,0,3.366135,3,4 +10145,0,0.262935,1,1,0,2,5,,4,5,Middle,St,1426303,0,0.263,0,6.310446,5.8,4.5 +11504,0,0.324407,1,1,0,2,6,,5,5,Sibley,Rd,1452509,0.759,1.084,0,7.785779,5.8,6 +24743,0,0.461962,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.087097,0.15,4 +24744,0,0.371058,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.905401,0.15,4 +29978,0,0.631518,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.156425,0.15,4 +11026,0,0.073895,1,1,0,2,5,,4,5,Cleveland,St,1452602,0,0.074,0,1.773492,5.8,4.5 +9696,0,0.254633,1,1,0,2,5,,4,5,Old US 12,,1426508,6.153,6.407,0,6.111186,5.8,4.5 +9783,0,0.584652,1,1,0,2,4,,4,5,Main,St,1425710,17.629,18.213,0,14.031647,4.5,4.5 +10129,0,0.316494,1,1,0,2,5,,4,5,Middle,St,1426303,0.429,0.745,0,7.595849,5.8,4.5 +10149,0,0.412901,1,1,0,2,6,,4,5,Wilkinson,St,1426205,0.184,0.597,0,9.909635,6.55,4.5 +24742,0,0.150192,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.604603,0.15,4 +30118,0,0.477002,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.448049,0.15,4 +30119,0,0.395511,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.492275,0.15,4 +10155,0,0.1845,1,1,0,2,6,,4,5,Wilkinson,St,1426205,0,0.184,0,4.427991,6.55,4.5 +10140,0,0.165756,1,1,0,2,5,,4,5,Middle,St,1426303,0.263,0.429,0,3.978143,5.8,4.5 +24746,0,0.25929,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.222953,0.15,4 +9694,0,0.168286,1,1,0,2,5,,4,5,Old US 12,,1426508,6.407,6.575,0,4.038867,5.8,4.5 +9693,0,0.155888,1,1,0,2,4,,4,5,Old US 12,,1426508,6.575,6.731,0,3.741318,4.5,4.5 +9780,0,0.20603,1,1,0,2,4,,4,5,Main,St,1425710,18.213,18.419,0,4.944718,4.5,4.5 +10127,0,0.14066,1,1,0,2,5,,4,5,Middle,St,1426303,0.745,0.886,0,3.375836,5.8,4.5 +11150,0,0.445575,1,1,0,2,5,,5,5,Sibley,Rd,1452509,1.259,1.705,0,10.693802,3.7,5 +11367,0,0.176009,1,1,0,2,6,,5,5,Sibley,Rd,1452509,1.084,1.259,0,4.224213,5.8,6 +9770,0,0.237258,1,1,0,2,4,,5,5,Main,St,1425710,18.824,19.061,0,5.694181,3,4 +9771,0,0.147294,1,1,0,2,4,,5,5,Main,St,1425710,18.559,18.707,0,3.535061,3,4 +5713,0,2.05806,1,1,0,2,4,,5,8,M 36,,932408,0,2.057,0,49.39345,3,4 +5919,0,1.602479,1,1,0,2,5,,5,8,Williamsville,Rd,932302,0,1.602,0,38.459493,3.7,5 +6597,0,0.990251,1,1,0,2,5,,5,8,Unadilla,Rd,932304,0,0.99,0,23.766016,3.7,5 +7446,0,0.505372,1,1,0,2,6,GRV,5,8,Roepke,Rd,935903,0,0.505,0,12.128932,5.55,5 +9741,0,3.119299,1,1,0,2,4,,5,5,M 52,,1425710,24.148,27.266,0,74.863174,3,4 +9748,0,3.272879,1,1,0,2,4,,5,5,M 52,,1425710,20.764,24.036,0,78.549093,3,4 +9817,0,1.642565,1,1,0,2,6,GRV,5,5,Roepke,Rd,1426410,0,1.642,0,39.421549,5.55,5 +10096,0,2.219474,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,0,2.219,0,53.267384,3.7,5 +19964,0,2.67045,1,1,0,2,5,,5,5,Waterloo,Rd,3380147,2.387,5.057,0,64.090805,3.7,5 +24658,0,0.90136,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.632648,0.15,4 +24665,0,2.115555,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,50.773315,0.15,4 +24716,0,1.244477,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.86744,0.15,4 +24717,0,2.067956,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,49.630938,0.15,4 +24719,0,0.929466,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.307184,0.15,4 +19965,0,1.505734,1,1,0,2,5,,5,5,Waterloo,Rd,3380147,0.882,2.387,0,36.137621,3.7,5 +34052,0,0.944089,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19966,0,0.709814,1,1,0,2,5,,5,5,Waterloo,Rd,3380147,0.173,0.882,0,17.035531,3.7,5 +9745,0,0.111672,1,1,0,2,4,,5,5,M 52,,1425710,24.036,24.148,0,2.680129,3,4 +6187,0,1.794507,1,1,0,2,4,,5,8,M 106,,932205,0,1.794,0,43.068172,3,4 +34053,0,0.868719,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9816,0,1.20987,1,1,0,2,6,GRV,5,5,Roepke,Rd,1426410,1.642,2.851,0,29.036871,5.55,5 +6189,0,0.502622,1,1,0,2,4,,5,8,Doyle,Rd,932208,1.916,2.419,0,12.062928,3,4 +6907,0,1.005642,1,1,0,2,4,,5,8,M 106,,932303,0.658,1.663,0,24.135415,3,4 +6188,0,0.491333,1,1,0,2,4,,5,8,Doyle,Rd,932208,1.425,1.916,0,11.791996,3,4 +6908,0,0.116319,1,1,0,2,4,,5,8,M 106,,932303,1.663,1.779,0,2.791658,3,4 +19926,0,0.273748,1,1,0,2,4,,5,8,Gregory,Rd,4103111,9.384,9.658,0,6.569949,3,4 +22054,0,0.095879,1,1,0,2,5,,5,5,Werkner,Rd,4603042,0,0.096,0,2.301096,3.7,5 +10099,0,1.501108,1,1,0,2,5,,5,5,Werkner,Rd,1426404,1.627,3.127,0,36.026582,3.7,5 +19963,0,0.865832,1,1,0,2,5,GRV,5,5,Waterloo,Rd,3380147,5.057,5.922,0,20.779977,5.55,5 +6909,0,1.140046,1,1,0,2,5,,5,8,Unadilla,Rd,932307,0,1.14,0,27.361093,3.7,5 +19764,0,2.209504,1,1,0,2,5,,5,8,Doyle,Rd,4104180,1.729,3.938,0,53.028093,3.7,5 +21778,0,0.710749,1,1,0,2,5,,5,5,Hadley,Rd,4600021,2.754,3.464,0,17.057968,3.7,5 +24659,0,0.65135,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.632408,0.15,4 +24660,0,1.350512,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.412286,0.15,4 +24718,0,1.197273,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.73455,0.15,4 +5711,0,0.97358,1,1,0,2,5,,5,8,Williamsville,Rd,932302,1.926,2.9,0,23.365926,3.7,5 +5920,0,0.324557,1,1,0,2,5,,5,8,Williamsville,Rd,932302,1.602,1.926,0,7.789374,3.7,5 +19873,0,0.350085,1,1,0,2,5,,5,8,Hadley,Rd,4104126,0.387,0.737,0,8.402035,3.7,5 +19874,0,0.386926,1,1,0,2,5,,5,5,Hadley,Rd,4104126,0,0.387,0,9.286224,3.7,5 +5437,0,0.110778,1,1,0,2,5,,5,8,Kaiser,Rd,932302,2.9,3.01,0,2.658675,3.7,5 +19765,0,0.81142,1,1,0,2,5,,5,8,Doyle,Rd,4104180,0.918,1.729,0,19.474076,3.7,5 +24657,0,0.513259,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.318223,0.15,4 +9686,0,1.818306,1,1,0,2,4,,5,5,Jackson,Rd,1426508,9.193,11.011,0,43.639355,3,4 +9698,0,3.577427,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,3.529,7.105,0,85.85824,3.7,5 +11017,0,1.005882,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,3.106,4.112,0,24.141177,3.7,5 +11100,0,0.995733,1,1,0,2,5,,4,5,Parker,Rd,1447903,4.441,5.436,0,23.897593,5.8,4.5 +21262,0,1.580942,1,1,0,2,5,GRV,5,5,Fletcher,Rd,4604001,0,1.58,0,37.942617,5.55,5 +24677,0,1.186097,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.466317,0.15,4 +24731,0,0.598151,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.355623,0.15,4 +24732,0,1.462128,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.09107,0.15,4 +24747,0,1.882205,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,45.172915,0.15,4 +24750,0,1.090488,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.17172,0.15,4 +25834,0,3.18074,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,76.337751,0.15,4 +11020,0,2.582447,1,1,0,2,5,,5,5,Fletcher,Rd,1436603,1.139,3.72,0,61.978718,3.7,5 +24680,0,1.233381,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.601151,0.15,4 +9715,0,0.505964,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,6.565,7.071,0,12.143143,3.7,5 +11025,0,1.139241,1,1,0,2,5,,5,5,Fletcher,Rd,1436603,0,1.139,0,27.341778,3.7,5 +9713,0,0.532515,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,7.071,7.603,0,12.78037,3.7,5 +9699,0,0.743375,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,2.786,3.529,0,17.841007,3.7,5 +9700,0,0.006923,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,2.779,2.786,0,0.16615,3.7,5 +9583,0,0.753823,1,1,0,2,5,,4,5,Freer,Rd,1426510,1.58,2.333,0,18.091742,5.8,4.5 +9690,0,1.517386,1,1,0,2,4,,5,5,Old US 12,,1426508,7.416,8.933,0,36.417272,3,4 +9691,0,0.389918,1,1,0,2,4,,4,5,Old US 12,,1426508,7.027,7.416,0,9.358033,4.5,4.5 +10843,0,0.740721,1,1,0,2,5,GRV,5,5,Fletcher,Rd,1450905,0,0.74,0,17.777309,5.55,5 +11219,0,1.481481,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,0.635,2.116,0,35.555546,3.7,5 +24752,0,0.341966,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.207188,0.15,4 +9582,0,0.536433,1,1,0,2,5,,4,5,Freer,Rd,1426510,2.333,2.87,0,12.874386,5.8,4.5 +11044,0,0.075588,1,1,0,2,5,,4,5,McKinley,St,1451005,0,0.076,0,1.814101,5.8,4.5 +24734,0,0.262753,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.306083,0.15,4 +24745,0,0.582546,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.981112,0.15,4 +11271,0,0.540177,1,1,0,2,5,,4,5,Railroad,St,1452809,0.095,0.635,0,12.964251,5.8,4.5 +24729,0,0.340977,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.183443,0.15,4 +22021,0,1.264318,1,1,0,2,5,GRV,5,5,Fletcher,Rd,4604001,1.58,2.844,0,30.343635,5.55,5 +24748,0,0.929387,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.30529,0.15,4 +9557,1,0.472167,2,0,0,1,1,,5,5,E I 94,,1426109,7.896,8.368,0,,1.02,7 +9689,0,0.044088,1,1,0,2,4,,5,5,Old US 12,,1426508,8.933,8.977,0,1.058122,3,4 +10399,-1,0.367991,0,2,0,1,1,,5,5,W I 94,,1426110,7.947,8.315,0,,1.02,7 +21742,0,0.236574,1,1,0,2,5,,5,5,Fletcher,Rd,4604001,2.844,3.081,0,5.677769,3.7,5 +9574,1,0.214604,1,0,0,1,1,ROF,5,5,E I 94/Fletcher,RAMP,1426601,0,0.215,0,,2.24,5 +21198,1,0.151213,1,0,0,1,1,RON,5,5,Fletcher/W I 94,RAMP,4600081,0,0.151,0,,1.09,4 +9558,1,0.112866,1,0,0,1,1,RON,5,5,Fletcher/E I 94,RAMP,1426603,0,0.113,0,,1.09,4 +10298,1,0.266265,1,0,0,1,1,ROF,5,5,W I 94/Fletcher,RAMP,1427008,0,0.266,0,,2.24,5 +9688,0,0.185295,1,1,0,2,4,,5,5,Old US 12,,1426508,8.977,9.162,0,4.447074,3,4 +9687,0,0.030914,1,1,0,2,4,,5,5,Old US 12,,1426508,9.162,9.193,0,0.741928,3,4 +11018,0,0.802863,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,2.116,2.919,0,19.268719,3.7,5 +11045,0,0.870103,1,1,0,2,5,GRV,5,5,Fletcher,Rd,1450905,0.74,1.61,0,20.882471,5.55,5 +11216,0,0.187612,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,2.919,3.106,0,4.502697,3.7,5 +11104,0,0.962481,1,1,0,2,5,,5,5,Parker,Rd,1447903,1.554,2.516,0,23.099547,3.7,5 +24676,0,2.18609,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,52.466171,0.15,4 +11106,0,1.014927,1,1,0,2,5,,5,5,Parker,Rd,1447903,0.498,1.513,0,24.358254,3.7,5 +10758,0,0.080353,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,0,0.08,0,1.92847,3.7,5 +21319,0,0.113724,1,1,0,2,5,,5,5,Pleasant Lake,Rd,4603833,0,0.114,0,2.729382,3.7,5 +9708,0,0.279432,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1426007,10.521,10.8,0,6.706368,3.7,5 +11107,0,0.221653,1,1,0,2,5,,5,5,Parker,Rd,1447903,0.218,0.44,0,5.319675,3.7,5 +10935,0,0.058632,1,1,0,2,5,,5,5,Parker,Rd,1447903,0.44,0.498,0,1.407174,3.7,5 +10934,0,0.040885,1,1,0,2,5,,5,5,Parker,Rd,1447903,1.513,1.554,0,0.981246,3.7,5 +11102,0,1.011304,1,1,0,2,5,,5,5,Parker,Rd,1447903,3.41,4.421,0,24.271288,3.7,5 +10932,0,0.894458,1,1,0,2,5,,5,5,Parker,Rd,1447903,2.516,3.41,0,21.466986,3.7,5 +10929,0,0.020155,1,1,0,2,5,,4,5,Parker,Rd,1447903,4.421,4.441,0,0.483717,5.8,4.5 +9549,0,0.987816,1,1,0,2,5,GRV,5,5,Dancer,Rd,1426604,2.024,3.012,0,23.707591,5.55,5 +9684,0,2.085783,1,1,0,2,4,,5,5,Jackson,Rd,1426508,11.011,13.096,0,50.058804,3,4 +11099,0,1.444767,1,1,0,2,4,,4,5,Parker,Rd,1447903,6.032,7.476,0,34.674419,4.5,4.5 +11214,0,2.347649,1,1,0,2,5,,5,5,Dexter Chelsea,Rd,1452809,4.112,6.459,0,56.343584,3.7,5 +9548,0,1.006676,1,1,0,2,5,GRV,5,5,Dancer,Rd,1426604,3.012,4.018,0,24.160229,5.55,5 +24730,0,0.861322,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.671732,0.15,4 +10927,0,0.595922,1,1,0,2,5,,4,5,Parker,Rd,1447903,5.436,6.032,0,14.302135,5.8,4.5 +10925,0,1.517113,1,1,0,2,4,,4,5,Parker,Rd,1447903,7.476,8.993,0,36.410703,4.5,4.5 +24733,0,0.440558,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.573385,0.15,4 +5714,0,0.649297,1,1,0,2,6,,4,8,Unadilla,St,932504,0,0.649,0,15.583119,6.55,4.5 +5921,0,0.446166,1,1,1,2,4,,4,8,Main,St,932308,6.027,6.473,0,10.707975,4.5,4.5 +6493,0,2.388112,1,1,0,2,5,,5,8,Patterson Lake,Rd,932401,1.964,4.352,0,57.31469,3.7,5 +10044,0,0.969371,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,6.505,7.474,0,23.264916,3.7,5 +10713,0,1.610175,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,2.926,4.536,0,38.644206,3.7,5 +11005,0,0.937562,1,1,0,2,5,,5,5,Island Lake,Rd,1453208,1.097,2.034,0,22.501491,3.7,5 +11108,0,1.571653,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,3.577,5.148,0,37.719669,3,4 +11421,0,2.312564,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,0.615,2.926,0,55.501534,3.7,5 +11424,0,2.260696,1,1,0,2,5,,5,5,Hankerd,Rd,1451910,0.427,2.687,0,54.256702,3.7,5 +19869,0,0.248405,1,1,0,2,5,GRV,5,5,Dexter Town Hall,Rd,4104130,0,0.248,0,5.961712,5.55,5 +24632,0,2.300856,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,55.220547,0.15,4 +24754,0,2.492948,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,59.830742,0.15,4 +24755,0,2.161225,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,51.869408,0.15,4 +24756,0,0.665385,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.969239,0.15,4 +29637,0,1.695492,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.691803,0.15,4 +10046,0,1.555319,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,4.95,6.505,0,37.327663,3.7,5 +11060,0,1.012014,1,1,0,2,5,,5,5,Stofer,Rd,1453802,0.062,1.073,0,24.288337,3.7,5 +11195,0,1.097211,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1453208,0,1.097,0,26.333055,5.55,5 +24620,0,1.370546,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.893092,0.15,4 +11475,0,1.623304,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1451905,1.715,3.338,0,38.959291,5.55,5 +10771,0,0.060703,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1451905,1.655,1.715,0,1.456884,5.55,5 +11233,0,0.061706,1,1,0,2,5,GRV,5,5,Stofer,Rd,1453802,0,0.062,0,1.480949,5.55,5 +21965,0,0.081803,1,1,0,2,5,,5,5,Island Lake,Rd,4600501,0,0.082,0,1.963266,3.7,5 +10737,0,0.182091,1,1,0,2,5,GRV,5,5,Island Lake,Rd,1451909,0,0.182,0,4.370196,5.55,5 +10058,0,1.36571,1,1,0,2,5,,5,5,North Territorial,Rd,1426409,3.585,4.95,0,32.777032,3.7,5 +10720,0,0.427093,1,1,0,2,5,,5,5,Hankerd,Rd,1451910,0,0.427,0,10.250243,3.7,5 +6824,0,0.812551,1,1,0,2,5,,5,8,Patterson Lake,Rd,932401,1.152,1.964,0,19.501235,3.7,5 +19870,0,0.753011,1,1,0,2,5,,5,8,Glen Brook,Rd,4104128,0.225,0.977,0,18.072269,3.7,5 +19871,0,0.224746,1,1,0,2,5,,5,5,Glenbrook,Rd,4104128,0,0.225,0,5.393914,3.7,5 +24664,0,0.712899,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.10957,0.15,4 +11418,0,0.558022,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,4.536,5.094,0,13.39254,3.7,5 +24757,0,0.53354,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.80495,0.15,4 +10033,0,1.333514,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,7.474,8.807,0,32.004347,3,4 +11131,0,1.16458,1,1,0,2,5,,5,5,Huron River,Dr,1445801,2.039,3.203,0,27.949917,3.7,5 +11151,0,2.475127,1,1,0,2,5,,5,5,Island Lake,Rd,1453208,2.034,4.508,0,59.403048,3.7,5 +11314,0,1.801934,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,1.775,3.577,0,43.246413,3,4 +10719,0,0.61486,1,1,0,2,5,,5,5,Dexter Town Hall,Rd,1452002,0,0.615,0,14.756633,3.7,5 +11316,0,1.489333,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,0,1.489,0,35.743999,3,4 +24617,0,1.073627,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.767039,0.15,4 +24618,0,0.29016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.963829,0.15,4 +11112,0,0.28664,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,1.489,1.775,0,6.879354,3,4 +11103,0,0.186497,1,1,0,2,4,,4,5,Island Lake,Rd,1446002,0.239,0.426,0,4.475918,4.5,4.5 +11310,0,0.239147,1,1,0,2,5,,5,5,Island Lake,Rd,1446002,0,0.239,0,5.739537,3.7,5 +11093,0,0.158653,1,1,0,2,4,,4,5,Main,St,1446002,0.556,0.715,0,3.807669,4.5,4.5 +11306,0,0.130935,1,1,0,2,4,,4,5,Island Lake,Rd,1446002,0.426,0.556,0,3.142429,4.5,4.5 +11305,0,0.053899,1,1,0,2,4,,4,5,Main,St,1446002,0.758,0.812,0,1.293587,4.5,4.5 +11339,0,1.249209,1,1,0,2,5,,5,5,Huron River,Dr,1445801,3.203,4.452,0,29.981026,3.7,5 +10032,0,0.725386,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,8.807,9.532,0,17.409266,3,4 +6082,0,0.59369,1,1,0,2,4,,5,8,M 36,,932308,7.639,8.233,0,14.248562,3,4 +7216,0,0.882953,1,1,0,2,5,,5,8,McGregor,Rd,932708,0,0.883,0,21.190875,3.7,5 +7221,0,1.103113,1,1,0,2,4,,5,8,Dexter Pinckney,Rd,932607,0,1.103,0,26.474716,3,4 +11105,0,1.331849,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,5.327,6.659,0,31.964367,3,4 +19867,0,0.772699,1,1,0,2,5,GRV,5,8,Toma,Rd,4104131,0.353,1.125,0,18.544783,5.55,5 +29638,0,1.222887,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.349283,0.15,4 +19868,0,0.213569,1,1,0,2,5,GRV,5,8,Dexter Town Hall,Rd,4104130,0.248,0.462,0,5.125664,5.55,5 +8129,0,0.246725,1,1,0,2,5,GRV,5,8,Tiplady,Rd,939305,1.721,1.967,0,5.921403,5.55,5 +6598,0,0.651925,1,1,1,2,4,,4,8,M 36,,932308,6.965,7.617,0,15.646204,4.5,4.5 +7220,0,1.255227,1,1,0,2,4,,5,8,Dexter Pinckney,Rd,932607,1.103,2.358,0,30.125447,3,4 +19866,0,1.005361,1,1,0,2,5,,4,8,Howell,St,4104131,1.125,2.13,0,24.128675,5.8,4.5 +24759,0,1.333785,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.010836,0.15,4 +24765,0,0.582925,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.990192,0.15,4 +6311,0,0.499259,1,1,0,2,5,,5,8,Darwin,Rd,932401,4.352,4.851,0,11.982207,3.7,5 +5438,0,0.183905,1,1,1,2,4,,4,8,Main,St,932308,6.534,6.718,0,4.413714,4.5,4.5 +24761,0,0.228033,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,5.472784,0.15,4 +24762,0,0.160517,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,3.852415,0.15,4 +19865,0,0.249397,1,1,0,2,5,,4,8,Howell,St,4104131,2.13,2.38,0,5.985538,5.8,4.5 +5712,0,0.061493,1,1,1,2,4,,4,8,Main,St,932308,6.473,6.534,0,1.475837,4.5,4.5 +6912,0,0.247313,1,1,1,2,4,,4,8,Main,St,932308,6.718,6.965,0,5.93552,4.5,4.5 +24763,0,0.38352,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.204479,0.15,4 +7219,0,0.123439,1,1,0,2,4,,4,8,Pearl,St,932701,0,0.123,0,2.962525,4.5,4.5 +6398,0,0.022447,1,1,0,2,4,,5,8,M 36,,932308,7.617,7.639,0,0.538733,3,4 +11113,0,1.113554,1,1,0,2,5,,5,5,McGregor,Rd,1445904,0,1.113,0,26.725305,3.7,5 +11312,0,0.179881,1,1,0,2,4,,5,5,Dexter Pinckney,Rd,1446001,5.148,5.327,0,4.317145,3,4 +5922,0,0.549801,1,1,0,2,4,,5,8,M 36,,932308,8.233,8.782,0,13.195214,3,4 +7214,0,1.234504,1,1,0,2,5,,5,8,McGregor,Rd,932708,1.375,2.61,0,29.628084,3.7,5 +7215,0,0.492968,1,1,0,2,5,,5,8,McGregor,Rd,932708,0.883,1.375,0,11.831224,3.7,5 +5598,0,0.505316,1,1,0,2,4,,5,8,M 36,,932308,8.782,9.288,0,12.127593,3,4 +7115,0,1.005038,1,1,0,2,6,GRV,5,8,Nicholson,Rd,933006,8.944,9.948,0,24.120924,5.55,5 +7190,0,0.857225,1,1,0,2,4,,5,8,Grand River,Ave,932910,0,0.857,0,20.573397,3,4 +7618,-1,3.634811,0,2,0,1,1,,5,8,W I 96,,935207,0,3.633,0,,1.02,7 +7787,1,3.942959,2,0,0,1,1,,5,8,E I 96,,935105,0,3.941,0,,1.02,7 +7806,0,1.508548,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,7.944,9.452,0,36.205141,3.7,5 +7826,0,0.899719,1,1,0,2,6,GRV,5,8,Bell Oak,Rd,943609,0,0.899,0,21.593262,5.55,5 +7920,0,1.505011,1,1,0,2,6,GRV,5,8,Antcliff,Rd,940003,1.004,2.508,0,36.120263,5.55,5 +8099,0,0.855347,1,1,0,2,6,GRV,5,8,Chase Lake,Rd,943607,0,0.855,0,20.528337,5.55,5 +19936,0,1.255767,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,2.251,3.507,0,30.138411,3.7,5 +24768,0,2.306333,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,55.351982,0.15,4 +24769,0,0.841738,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.2017,0.15,4 +24771,0,2.036913,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,48.885916,0.15,4 +24777,0,0.941366,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.592783,0.15,4 +24784,0,1.935098,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,46.442359,0.15,4 +24788,0,1.761242,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,42.269797,0.15,4 +34055,0,0.753274,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34056,0,0.821062,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34101,0,0.870127,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34102,0,0.956628,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34057,-1,0.717233,0,2,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +34058,1,0.71763,2,0,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +266,0,0.738011,1,1,0,2,6,,5,8,Herrington,Rd,355904,0.02,0.757,0,17.712273,5.8,6 +34103,0,0.868489,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34059,0,0.744386,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34104,0,0.887872,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +5715,0,1.76962,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,0,1.769,0,42.47089,5.55,5 +6911,0,0.933866,1,1,0,2,4,,5,8,M 36,,932308,1.76,2.694,0,22.412785,3,4 +7043,0,0.44004,1,1,0,2,5,,4,8,Chilson,Rd,933603,4.294,4.734,0,10.560967,5.8,4.5 +7161,0,0.967405,2,2,1,2,3,,4,8,Grand River,Rd,932910,13.876,14.843,0,23.217722,3.7,5 +7179,0,1.582752,1,1,0,2,4,,5,8,Grand River,Ave,932910,5.932,7.514,0,37.986056,3,4 +7225,0,0.311938,1,1,0,2,5,,5,8,Burkhart,Rd,932601,9.825,10.137,0,7.486505,3.7,5 +7228,0,1.703228,1,1,0,2,5,GRV,5,8,Norton,Rd,932601,7.306,9.009,0,40.877466,5.55,5 +7365,0,1.671458,1,1,0,2,5,,5,8,Bull Run,Rd,943306,5.064,6.735,0,40.114986,3.7,5 +7475,0,1.437763,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,6.276,7.713,0,34.506303,3.7,5 +7582,-1,2.953743,0,3,0,1,1,,4,8,W I 96,,935207,9.068,12.02,0,,0.8,7.5 +7608,-1,4.577377,0,2,0,1,1,,5,8,W I 96,,935207,3.884,8.46,0,,1.02,7 +7775,1,2.891966,3,0,0,1,1,,5,8,E I 96,,935105,9.116,12.007,0,,1.02,7 +7783,1,4.595169,2,0,0,1,1,,5,8,E I 96,,935105,4.204,8.797,0,,1.02,7 +7794,0,0.866719,1,1,0,2,5,,5,8,Norton,Rd,4104400,1.553,2.42,0,20.801248,3.7,5 +7795,0,0.665887,1,1,0,2,5,,5,8,Elliot,Rd,935007,1.504,2.17,0,15.981281,3.7,5 +7830,0,1.005265,1,1,0,2,6,GRV,5,8,Chase Lake,Rd,943607,4.862,5.867,0,24.126371,5.55,5 +37035,0,1.046489,1,1,0,2,4,,5,8,Mason,Rd,4104403,1.779,2.825,0,25.11573,3,4 +8012,0,1.553336,1,1,0,2,7,GRV,5,8,Schafer,Rd,945306,0.47,2.023,0,37.280062,5.55,5 +8032,0,0.169166,1,1,1,2,4,,3,8,Michigan,Ave,944110,8.936,9.105,0,4.059979,6,4.5 +8113,0,1.018624,1,1,0,2,6,GRV,5,8,Marr,Rd,939610,0,1.018,0,24.446975,5.55,5 +19933,0,0.643803,1,1,0,2,5,,5,8,Gregory,Rd,4103111,0,0.644,0,15.451281,3.7,5 +24625,0,0.917717,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.025203,0.15,4 +24666,0,1.225782,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.418769,0.15,4 +24798,0,1.074493,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.787822,0.15,4 +24801,0,1.070415,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.689969,0.15,4 +24803,0,1.153009,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.672223,0.15,4 +24805,0,1.414396,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.945508,0.15,4 +24809,0,0.833812,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.011488,0.15,4 +24813,0,0.239159,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.739819,0.15,4 +29471,0,1.779554,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,42.709299,0.15,4 +6741,0,1.504644,1,1,0,2,5,,5,8,Bradley,Rd,932405,2.016,3.52,0,36.11146,3.7,5 +7232,0,1.736268,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,2.715,4.451,0,41.670436,5.55,5 +7369,0,1.518819,1,1,0,2,5,,5,8,Bull Run,Rd,943306,1.511,3.029,0,36.451661,3.7,5 +7450,0,0.873528,1,1,0,2,7,GRV,5,8,Iosco,Rd,935803,2.769,3.642,0,20.964682,5.55,5 +7457,0,0.669074,1,1,0,2,5,,5,8,Wasson,Rd,935801,1.067,1.735,0,16.057766,3.7,5 +24669,0,2.134153,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,51.219675,0.15,4 +24671,0,1.061826,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.483835,0.15,4 +24793,0,1.947178,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,46.732278,0.15,4 +24819,0,1.61976,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.874232,0.15,4 +27105,0,1.578868,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,37.892836,0.15,4 +5147,0,1.93283,1,1,0,2,5,,5,8,Bradley,Rd,932405,0.084,2.016,0,46.387928,3.7,5 +5992,0,1.154985,1,1,0,2,4,,5,8,M 36,,932403,0,1.155,0,27.719642,3,4 +5993,0,0.519479,1,1,0,2,4,,5,8,M 36,,932403,1.155,1.674,0,12.467503,3,4 +19931,0,1.487608,1,1,0,2,5,,5,8,Gregory,Rd,4103111,6.628,8.115,0,35.702597,3.7,5 +19974,0,1.730153,1,1,0,2,7,,5,8,Dexter,Trl,3330056,2.095,3.824,0,41.523663,5.8,6 +24642,0,0.78125,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.749994,0.15,4 +24816,0,1.350949,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.422771,0.15,4 +19975,0,1.100673,1,1,0,2,7,,5,8,Dexter,Trl,3330056,0.995,2.095,0,26.416154,5.8,6 +5514,0,1.353676,1,1,0,2,4,,5,8,M 36,,932403,1.812,3.165,0,32.488229,3,4 +5146,0,0.083506,1,1,0,2,5,,5,8,Bradley,Rd,932405,0,0.084,0,2.004138,3.7,5 +5823,0,0.138191,1,1,0,2,4,,5,8,M 36,,932403,1.674,1.812,0,3.316579,3,4 +19507,0,0.111345,1,1,0,2,7,,5,8,Plainfield,Rd,1903110,0,0.111,0,2.672291,5.8,6 +19929,0,0.950465,1,1,0,2,4,,5,8,M 36,,4103111,8.142,9.092,0,22.811149,3,4 +19928,0,0.042292,1,1,0,2,4,,5,8,M 36,,4103111,9.092,9.134,0,1.015001,3,4 +19949,0,0.037765,1,1,0,2,7,,5,8,Dexter,Trl,4102084,0,0.038,0,0.90636,5.8,6 +19973,0,0.036356,1,1,0,2,9,,5,8,Dexter,Trl,3330056,3.824,3.861,0,0.872536,5.8,6 +5994,0,0.116859,1,1,0,2,4,,5,8,Spears,Rd,932407,0.72,0.837,0,2.804619,3,4 +5995,0,0.038998,1,1,0,2,4,,5,8,M 36,,932407,0.837,0.876,0,0.935959,3,4 +19506,0,0.027455,1,1,0,2,7,,5,8,Spears,Rd,1903201,0,0.027,0,0.658922,5.8,6 +19930,0,0.026466,1,1,0,2,5,,5,8,Gregory,Rd,4103111,8.115,8.142,0,0.635186,3.7,5 +19768,0,0.058619,1,1,0,2,5,,5,8,Gregory,Rd,4104150,0,0.059,0,1.406857,3.7,5 +265,0,0.983833,1,1,0,2,6,GRV,5,8,Kane,Rd,359501,4.369,5.353,0,23.611988,5.55,5 +6494,0,1.488171,1,1,0,2,5,,5,8,Bradley,Rd,932405,3.52,5.007,0,35.716095,3.7,5 +7454,0,0.241277,1,1,0,2,5,,5,8,Iosco,Rd,935803,1.272,1.513,0,5.790646,3.7,5 +24791,0,0.635249,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.245979,0.15,4 +24792,0,0.745157,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.883764,0.15,4 +7456,0,1.272532,1,1,0,2,6,GRV,5,8,Iosco,Rd,935803,0,1.272,0,30.540768,5.55,5 +7796,0,1.004016,1,1,0,2,5,,5,8,Elliot,Rd,935007,0.5,1.504,0,24.096374,3.7,5 +7798,0,0.500507,1,1,0,2,5,,5,8,Elliot,Rd,935007,0,0.5,0,12.012177,3.7,5 +29470,0,0.601217,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.429213,0.15,4 +7451,0,1.233331,1,1,0,2,5,,5,8,Iosco,Rd,935803,1.536,2.769,0,29.599946,3.7,5 +19932,0,1.502919,1,1,0,2,5,,5,8,Gregory,Rd,4103111,0.644,2.146,0,36.070061,3.7,5 +24653,0,1.101883,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.445182,0.15,4 +7452,0,0.022756,1,1,0,2,5,,5,8,Iosco,Rd,935803,1.513,1.536,0,0.546136,3.7,5 +20320,0,0.021059,1,1,0,2,5,,5,8,Bradley/Iosco Cutoff,,4104264,0,0.021,0,0.505412,3.7,5 +6191,0,0.018042,1,1,0,2,5,,5,8,Bradley,Rd,932405,5.007,5.025,0,0.433003,3.7,5 +7233,0,0.946333,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,1.769,2.715,0,22.711995,5.55,5 +24601,0,1.401348,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.63234,0.15,4 +24817,0,1.168607,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.046579,0.15,4 +26025,0,1.826462,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,43.835092,0.15,4 +8117,0,1.289899,1,1,0,2,5,,5,8,Bull Run,Rd,943306,0,1.289,0,30.957582,3.7,5 +7850,0,0.221476,1,1,0,2,5,,5,8,Bull Run,Rd,943306,1.289,1.511,0,5.315426,3.7,5 +24815,0,1.982206,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,47.572955,0.15,4 +7230,0,1.527166,1,1,0,2,5,GRV,5,8,Pingree,Rd,932601,5.277,6.804,0,36.651987,5.55,5 +7480,0,2.148542,1,1,0,2,6,GRV,5,8,Coon Lake,Rd,935710,3.776,5.924,0,51.565012,5.55,5 +8102,0,0.505619,1,1,0,2,5,,5,8,Bull Run,Rd,943306,4.056,4.561,0,12.134859,3.7,5 +29469,0,1.363851,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.732434,0.15,4 +29472,0,1.626831,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.043942,0.15,4 +29473,0,2.194829,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,52.675907,0.15,4 +8105,0,1.026899,1,1,0,2,5,,5,8,Bull Run,Rd,943306,3.029,4.056,0,24.645581,3.7,5 +7842,0,0.503725,1,1,0,2,5,,5,8,Bull Run,Rd,943306,4.561,5.064,0,12.08939,3.7,5 +7231,0,0.827177,1,1,0,2,6,GRV,5,8,Pingree,Rd,932601,4.451,5.277,0,19.852242,5.55,5 +7476,0,0.35216,1,1,0,2,6,GRV,5,8,Coon Lake,Rd,935710,5.924,6.276,0,8.451838,5.55,5 +7229,0,0.50222,1,1,0,2,5,GRV,5,8,Pingree,Rd,932601,6.804,7.306,0,12.053274,5.55,5 +7113,0,0.782585,1,1,0,2,6,,5,8,Cemetary,Rd,933202,0.941,1.724,0,18.782049,5.8,6 +7120,0,0.724972,1,1,0,2,6,,5,8,Nicholson,Rd,933006,3.734,4.459,0,17.399334,5.8,6 +7187,0,0.618595,1,1,0,2,4,,4,8,Grand River,Ave,932910,2.936,3.554,0,14.846292,4.5,4.5 +7188,0,1.028234,1,1,0,2,4,,5,8,Grand River,Ave,932910,1.908,2.936,0,24.677625,3,4 +7447,0,0.995356,1,1,0,2,6,,5,8,Van Buren,Rd,935807,2.204,3.199,0,23.888547,5.8,6 +7836,0,0.262312,1,1,1,2,5,,4,8,Grand,Ave,935004,4.233,4.496,0,6.295494,5.8,4.5 +37040,0,1.716043,1,1,0,2,4,,5,8,Mason,Rd,4104403,4.778,6.493,0,41.18504,3,4 +8076,0,0.334787,1,1,0,2,6,,5,8,Owosso,Rd,943904,0,0.335,0,8.034882,5.8,6 +8098,0,1.007011,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,2.853,3.86,0,24.168265,5.8,6 +24774,0,1.690717,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,40.577219,0.15,4 +24786,0,1.007335,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.176039,0.15,4 +24825,0,0.421466,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,10.115177,0.15,4 +24827,0,0.508136,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.195271,0.15,4 +24856,0,1.191737,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.601692,0.15,4 +26560,0,1.043732,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.049566,0.15,4 +7122,0,2.014549,1,1,0,2,6,,5,8,Nicholson,Rd,933006,1.006,3.02,0,48.349165,5.8,6 +37042,0,2.004076,1,1,0,2,4,,5,8,Mason,Rd,4104403,7.736,9.739,0,48.097824,3,4 +24840,0,1.36749,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.81975,0.15,4 +37043,0,1.030433,1,1,0,2,7,,4,8,Culver,Rd,4105156,0,1.03,0,24.730402,6.55,4.5 +37041,0,1.242661,1,1,0,2,4,,5,8,Mason,Rd,4104403,6.493,7.736,0,29.823867,3,4 +24775,0,0.863253,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.718082,0.15,4 +7123,0,1.006257,1,1,0,2,6,,5,8,Nicholson,Rd,933006,0,1.006,0,24.150167,5.8,6 +7121,0,0.714972,1,1,0,2,6,,5,8,Nicholson,Rd,933006,3.02,3.734,0,17.159318,5.8,6 +7448,0,1.011093,1,1,0,2,6,,5,8,Van Buren,Rd,935807,1.193,2.204,0,24.266235,5.8,6 +7116,0,1.004719,1,1,0,2,6,GRV,5,8,Nicholson,Rd,933006,7.939,8.944,0,24.113259,5.55,5 +7118,0,0.269627,1,1,0,2,6,,5,8,Nicholson,Rd,933006,5.536,5.806,0,6.471052,5.8,6 +7189,0,1.0512,1,1,0,2,4,,5,8,Grand River,Ave,932910,0.857,1.908,0,25.228789,3,4 +7838,0,0.998112,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,0.855,1.853,0,23.954683,5.8,6 +24779,0,1.051276,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.23062,0.15,4 +26578,0,0.934634,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.43122,0.15,4 +8086,0,1.003632,1,1,0,2,6,GRV,5,8,Bell Oak,Rd,943609,0.899,1.903,0,24.087161,5.55,5 +24780,0,1.505117,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.122818,0.15,4 +24781,0,0.514385,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.34523,0.15,4 +7119,0,1.077686,1,1,0,2,6,,5,8,Nicholson,Rd,933006,4.459,5.536,0,25.864471,5.8,6 +24776,0,0.771412,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.51388,0.15,4 +7117,0,1.006987,1,1,0,2,6,GRV,5,8,Nicholson,Rd,933006,6.933,7.939,0,24.167682,5.55,5 +7360,0,1.000884,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,1.853,2.853,0,24.02122,5.8,6 +24602,0,0.992421,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.818112,0.15,4 +24787,0,1.006015,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.144367,0.15,4 +7181,0,0.483628,1,1,0,2,4,,5,8,Grand River,Ave,932910,4.933,5.416,0,11.607077,3,4 +7887,0,1.507656,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,1.001,2.508,0,36.183752,3.7,5 +37036,0,0.740089,1,1,0,2,4,,5,8,Mason,Rd,4104403,2.825,3.565,0,17.762127,3,4 +27693,0,1.360076,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.641829,0.15,4 +37038,0,0.779573,1,1,0,2,4,,5,8,Mason,Rd,4104403,3.771,4.551,0,18.709751,3,4 +24829,0,1.585735,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.057645,0.15,4 +7889,0,1.001503,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,0,1.001,0,24.036063,3.7,5 +37039,0,0.227387,1,1,0,2,4,,5,8,Mason,Rd,4104403,4.551,4.778,0,5.457296,3,4 +37037,0,0.206692,1,1,0,2,4,,5,8,Mason,Rd,4104403,3.565,3.771,0,4.960602,3,4 +7183,0,0.567777,1,1,1,2,4,,4,8,Grand River,Ave,932910,4.132,4.699,0,13.626655,4.5,4.5 +7506,1,0.168835,1,0,0,1,1,ROF,5,8,W I 96/Fowlerville,RAMP,935209,0,0.169,0,,2.24,5 +7507,1,0.306569,1,0,0,1,1,RON,4,8,Fowlerville/W I 96,RAMP,935208,0,0.307,0,,1.09,4 +7871,0,0.200851,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,3.151,3.352,0,4.820423,3.7,5 +7613,-1,0.250961,0,2,0,1,1,,4,8,W I 96,,935207,3.633,3.884,0,,0.8,7.5 +7885,0,0.507683,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,2.508,3.016,0,12.184386,3.7,5 +7673,1,0.323909,1,0,0,1,1,RON,5,8,Fowlerville/E I 96,RAMP,935107,0,0.324,0,,1.09,4 +7785,1,0.262347,2,0,0,1,1,,4,8,E I 96,,935105,3.941,4.204,0,,0.8,7.5 +7881,0,0.123909,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,3.016,3.14,0,2.973811,3.7,5 +7675,1,0.162786,1,0,0,1,1,ROF,5,8,E I 96/Fowlerville,RAMP,935106,0,0.163,0,,2.24,5 +7874,0,0.011326,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,3.14,3.151,0,0.27182,3.7,5 +7185,0,0.206534,1,1,1,2,4,,4,8,Grand River,Ave,932910,3.735,3.941,0,4.956819,4.5,4.5 +7840,0,0.538638,1,1,1,2,5,,4,8,Grand,Ave,935004,3.518,4.057,0,12.927305,5.8,4.5 +8115,0,0.126506,1,1,1,2,7,,4,8,Frank,St,939502,0.078,0.204,0,3.036147,6.55,4.5 +24821,0,0.27553,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,6.612719,0.15,4 +24822,0,0.291582,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,6.997961,0.15,4 +7114,0,0.172819,1,1,1,2,7,,4,8,Veterans,Dr,933101,0,0.173,0,4.147652,6.55,4.5 +7186,0,0.180759,1,1,1,2,4,,4,8,Grand River,Ave,932910,3.554,3.735,0,4.33821,4.5,4.5 +8116,0,0.077869,1,1,1,2,7,,4,8,Frank,St,939502,0,0.078,0,1.868851,6.55,4.5 +7858,0,0.154057,2,2,1,2,5,,4,8,Grand,Ave,935004,3.364,3.518,0,3.697378,5.8,4.5 +7869,0,0.012573,2,2,1,2,5,,4,8,Fowlerville,Rd,935004,3.352,3.364,0,0.301762,5.8,4.5 +7184,0,0.19075,1,1,1,2,4,,4,8,Grand River,Ave,932910,3.941,4.132,0,4.577995,4.5,4.5 +7837,0,0.17671,1,1,1,2,5,,4,8,Grand,Ave,935004,4.057,4.233,0,4.241032,5.8,4.5 +7182,0,0.233583,1,1,0,2,4,,5,8,Grand River,Ave,932910,4.699,4.933,0,5.605982,3,4 +7180,0,0.516236,1,1,0,2,4,,5,8,Grand River,Ave,932910,5.416,5.932,0,12.389666,3,4 +7812,0,1.909899,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,5.03,6.939,0,45.837564,3.7,5 +24828,0,0.808483,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.403581,0.15,4 +8084,0,0.99815,1,1,0,2,6,,5,8,Sharpe,Rd,943709,0,0.998,0,23.95559,5.8,6 +7831,0,0.226254,1,1,0,2,5,,4,8,Grand,Ave,935004,4.804,5.03,0,5.430092,5.8,4.5 +7835,0,0.308269,1,1,1,2,5,,4,8,Grand,Ave,935004,4.496,4.804,0,7.398461,5.8,4.5 +24826,0,0.097096,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,2.330304,0.15,4 +27182,0,0.428839,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.292126,0.15,4 +7810,0,1.005585,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,6.939,7.944,0,24.134036,3.7,5 +8093,0,1.002817,1,1,0,2,6,,5,8,Chase Lake,Rd,943607,3.86,4.862,0,24.067609,5.8,6 +24790,0,1.038089,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.914125,0.15,4 +24789,0,0.755188,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.124509,0.15,4 +7316,0,1.002991,1,1,0,2,4,,5,8,Pinckney,Rd,944110,3.848,4.85,0,24.071789,3,4 +7330,0,1.006939,1,1,0,2,7,GRV,5,8,Schafer,Rd,944107,0,1.007,0,24.166537,5.55,5 +7471,0,0.679561,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,9.661,10.34,0,16.309469,3.7,5 +24661,0,1.662223,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.89334,0.15,4 +24799,0,1.321819,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.72366,0.15,4 +24804,0,0.920989,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.103728,0.15,4 +24831,0,0.982286,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.574871,0.15,4 +24832,0,1.103176,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.476227,0.15,4 +24833,0,1.43756,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.501442,0.15,4 +6397,0,0.254984,1,1,0,2,4,,5,8,M 36,,932308,3.448,3.703,0,6.119612,3,4 +24668,0,1.310904,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.461699,0.15,4 +6740,0,0.754771,1,1,0,2,4,,5,8,M 36,,932308,2.694,3.448,0,18.114504,3,4 +7333,0,0.044894,1,1,0,2,7,GRV,5,8,Cedar Lake,Rd,944106,1.985,2.03,0,1.077461,5.55,5 +7297,0,0.609118,1,1,0,2,7,GRV,5,8,Sexton,Rd,944207,0,0.609,0,14.618826,5.55,5 +7474,0,1.353363,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,7.713,9.066,0,32.480704,3.7,5 +7792,0,0.726188,1,1,0,2,5,,5,8,County Farm,Rd,935101,0.021,0.747,0,17.428515,3.7,5 +37033,0,1.344656,1,1,0,2,4,,5,8,Mason,Rd,4104403,0,1.344,0,32.271732,3,4 +8062,0,1.124648,1,1,0,2,7,,5,8,Cedar Lake,Rd,944106,5.037,6.161,0,26.991549,5.8,6 +8069,0,0.855365,1,1,0,2,7,,5,8,Jewell,Rd,944104,1.241,2.096,0,20.528754,5.8,6 +24800,0,1.525842,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.62021,0.15,4 +8066,0,0.372817,1,1,0,2,7,,5,8,Cedar Lake,Rd,944106,4.664,5.037,0,8.947614,5.8,6 +7227,0,0.2916,1,1,0,2,5,,5,8,Norton,Rd,932601,9.009,9.3,0,6.998393,3.7,5 +7801,0,1.647592,1,1,0,2,7,,5,8,Cedar Lake,Rd,944106,6.161,7.808,0,39.542204,5.8,6 +24802,0,1.188082,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.513959,0.15,4 +24667,0,0.421082,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,10.105968,0.15,4 +7226,0,0.524977,1,1,0,2,5,,5,8,Norton,Rd,932601,9.3,9.825,0,12.599442,3.7,5 +7473,0,0.595297,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,9.066,9.661,0,14.287117,3.7,5 +8031,0,0.219352,1,1,0,2,5,,5,8,Sexton,Rd,944207,0.609,0.828,0,5.264442,3.7,5 +8101,0,1.502914,1,1,0,2,5,,5,8,County Farm,Rd,943510,0,1.502,0,36.069941,3.7,5 +19939,0,0.033835,1,1,0,2,5,,5,8,County Farm,Rd,4103025,0,0.034,0,0.812028,3.7,5 +7789,0,1.062724,1,1,0,2,5,,5,8,County Farm,Rd,935101,0.747,1.81,0,25.505367,3.7,5 +7807,0,0.965344,1,1,0,2,7,,5,8,Jewell,Rd,944104,2.096,3.061,0,23.168265,5.8,6 +7891,0,0.209971,1,1,0,2,5,,5,8,County Farm,Rd,4104400,2.42,2.63,0,5.039297,3.7,5 +7317,0,1.415211,1,1,0,2,4,,5,8,Pinckney,Rd,944110,1.418,2.833,0,33.965072,3,4 +7756,0,0.849727,1,1,0,2,6,,5,8,Swarthout,Rd,945302,0,0.849,0,20.393457,5.8,6 +24760,0,1.533358,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.800589,0.15,4 +7326,0,0.769087,1,1,0,2,4,,5,8,Pinckney,Rd,944110,0,0.769,0,18.458096,3,4 +8059,0,0.649902,1,1,0,2,4,,5,8,Pinckney,Rd,944110,0.769,1.418,0,15.597641,3,4 +24670,0,0.478475,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.483407,0.15,4 +8049,0,1.014778,1,1,0,2,4,,5,8,Pinckney,Rd,944110,2.833,3.848,0,24.354672,3,4 +8061,0,0.689272,1,1,0,2,7,,5,8,Schafer,Rd,944107,2.339,3.028,0,16.542518,5.8,6 +24830,0,0.487239,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.693738,0.15,4 +7464,0,0.937249,1,1,0,2,4,,5,8,Coon Lake,Rd,935710,11.026,11.963,0,22.493979,3,4 +8041,0,0.502404,1,1,0,2,4,,5,8,Pinckney,Rd,944110,6.35,6.852,0,12.057694,3,4 +7466,0,0.68672,1,1,0,2,5,,5,8,Coon Lake,Rd,935710,10.34,11.026,0,16.481275,3.7,5 +8048,0,1.500558,1,1,0,2,4,,5,8,Pinckney,Rd,944110,4.85,6.35,0,36.013384,3,4 +24834,0,0.988176,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.716217,0.15,4 +6998,1,0.195793,1,0,0,1,1,RON,3,8,Pinckney/W I 96,RAMP,934110,0,0.196,0,,1.09,4 +6999,1,0.264661,1,0,0,1,1,ROF,5,8,E I 96/Pinckney,RAMP,934109,0,0.265,0,,2.24,5 +7308,0,0.745645,1,1,0,2,4,,5,8,Pinckney,Rd,944110,7.099,7.844,0,17.895481,3,4 +7504,1,0.158932,1,0,0,1,1,ROF,5,8,W I 96/Pinckney,RAMP,935210,0,0.159,0,,2.24,5 +7555,-1,0.157834,0,3,0,1,1,,5,8,W I 96,,935207,12.02,12.178,0,,1.02,7 +7763,1,0.595028,3,0,0,1,1,,5,8,E I 96,,935105,12.007,12.602,0,,1.02,7 +24811,0,1.015258,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.366188,0.15,4 +24814,0,0.196754,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.722087,0.15,4 +29474,0,0.716125,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.186999,0.15,4 +30148,0,0.692089,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.610125,0.15,4 +7784,0,0.246543,1,1,0,2,4,,5,8,Pinckney,Rd,944110,6.852,7.099,0,5.917034,3,4 +7780,0,0.218309,1,1,0,2,4,,5,8,Pinckney,Rd,944110,8.36,8.578,0,5.23941,3,4 +7672,1,0.353442,1,0,0,1,1,RON,5,8,Pinckney/E I 96,RAMP,935109,0,0.353,0,,1.09,4 +8040,0,0.455917,1,1,0,2,4,,5,8,Pinckney,Rd,944110,7.844,8.3,0,10.941999,3,4 +8037,0,0.060275,1,1,0,2,4,,5,8,Pinckney,Rd,944110,8.3,8.36,0,1.446599,3,4 +7773,0,0.277963,2,2,1,2,4,,3,8,Michigan,Ave,944110,8.588,8.866,0,6.671119,6,4.5 +8035,0,0.010184,2,2,1,2,4,,3,8,Michigan,Ave,944110,8.578,8.588,0,0.244409,6,4.5 +7298,0,0.069376,1,1,1,2,4,,3,8,Michigan,Ave,944110,8.866,8.936,0,1.66502,6,4.5 +7463,0,0.751577,1,1,0,2,4,,5,8,Coon Lake,Rd,935710,11.963,12.715,0,18.037857,3,4 +24652,0,1.354573,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.509764,0.15,4 +24810,0,0.314368,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,7.544822,0.15,4 +24627,0,0.291773,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,7.002553,0.15,4 +6993,0,0.621412,1,1,1,2,4,,3,8,McPherson Park,Dr,934203,0.374,0.995,0,14.913892,6,4.5 +7066,0,0.020148,1,1,1,2,5,,3,8,Byron,Rd,933401,0.874,0.894,0,0.483544,8,4.5 +7097,1,0.643219,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,2.146,2.789,0,15.437267,5,5 +7108,0,1.514329,1,1,0,2,5,,5,8,Burkhart,Rd,933208,1.898,3.412,0,36.343898,3.7,5 +7173,0,0.634252,1,1,1,2,3,,3,8,Grand River,Ave,932910,11.234,11.868,0,15.222051,5,5 +7923,0,0.250762,1,1,0,2,4,,3,8,Mason,Rd,4104400,1.303,1.553,0,6.018276,6,4.5 +7969,0,1.100518,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,2.636,3.736,0,26.41244,5.55,5 +7975,0,0.675601,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,1.464,2.139,0,16.214421,5.55,5 +37047,0,0.54689,1,1,0,2,4,,3,8,Michigan,Ave,4104401,0.557,1.104,0,13.125368,6,4.5 +8072,0,1.003763,1,1,0,2,5,,5,8,Chase Lake,Rd,939803,1.791,2.794,0,24.090311,3.7,5 +8110,0,1.030819,1,1,0,2,5,,5,8,Byron,Rd,939703,0.03,1.061,0,24.739652,3.7,5 +24609,0,0.93394,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.414551,0.15,4 +24795,0,0.81957,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.66969,0.15,4 +24836,0,1.081174,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.948174,0.15,4 +24838,0,1.180566,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.333577,0.15,4 +24839,0,0.602854,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.468485,0.15,4 +24847,0,0.35322,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,8.47729,0.15,4 +24848,0,0.462153,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,11.091667,0.15,4 +24850,0,0.544685,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,13.072429,0.15,4 +24852,0,0.345524,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,8.292572,0.15,4 +27052,0,1.189409,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.545805,0.15,4 +7102,0,0.263324,2,2,1,2,3,,4,8,Highland,Rd,933209,0.269,0.532,0,6.319765,3.7,5 +7110,0,0.714865,1,1,1,2,4,,4,8,Burkhart,Rd,933208,0.392,1.106,0,17.156756,4.5,4.5 +7177,0,1.057946,2,2,1,2,4,,4,8,Grand River,Rd,932910,8.803,9.861,0,25.390712,4.5,4.5 +37034,0,0.434941,1,1,0,2,4,,5,8,Mason,Rd,4104403,1.344,1.779,0,10.438595,3,4 +24778,0,1.584532,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.028777,0.15,4 +24837,0,1.241128,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.78708,0.15,4 +27181,0,2.355288,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,56.526918,0.15,4 +6997,1,0.317137,1,0,0,1,1,ROF,4,8,W I 96/Highland,RAMP,934201,0,0.317,0,,2.24,5 +7000,0,0.071178,1,1,0,2,3,,5,8,Highland,Rd,934108,0.34,0.411,0,1.708279,1.7,4 +7002,1,0.223503,1,0,0,1,1,ROF,5,8,E I 96/W Highland,RAMP,934108,0,0.223,0,,2.24,5 +7584,-1,0.608152,0,3,0,1,1,,4,8,W I 96,,935207,8.46,9.068,0,,0.8,7.5 +7781,1,0.319167,3,0,0,1,1,,4,8,E I 96,,935105,8.797,9.116,0,,0.8,7.5 +24807,0,0.756064,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.14553,0.15,4 +7001,1,0.11677,1,0,0,2,3,DIV,5,8,E I 96/W Highland,RAMP,934108,0.223,0.34,0,2.802468,1.7,4 +7004,1,0.129456,1,0,0,2,3,DIV,5,8,Highland/E I 96,RAMP,934107,0,0.129,0,3.106954,1.7,4 +7223,0,0.047404,1,1,0,2,4,,5,8,I 96,Ramp,932601,10.999,11.046,0,1.137702,3,4 +7224,0,0.862656,1,1,0,2,4,,5,8,Burkhart,Rd,932601,10.137,10.999,0,20.703748,3,4 +7003,1,0.332802,1,0,0,1,1,RON,5,8,Highland/E I 96,RAMP,934107,0.129,0.462,0,,1.09,4 +7222,0,0.01452,1,1,0,2,4,,5,8,I 96,Ramp,932601,11.046,11.061,0,0.348476,3,4 +6995,1,0.20492,1,0,0,1,1,RON,5,8,W Highland/W I 96,RAMP,934202,0.106,0.311,0,,1.09,4 +7111,0,0.391897,1,1,1,2,4,,4,8,Burkhart,Rd,933208,0,0.392,0,9.405519,4.5,4.5 +7103,0,0.110864,2,2,1,2,3,,4,8,Highland,Rd,933209,0.158,0.269,0,2.66073,3.7,5 +7104,0,0.052316,1,1,0,2,3,,4,8,Highland,Rd,933209,0.081,0.134,0,1.25559,3.7,5 +19503,1,0.066782,1,0,0,1,1,RON,5,8,E Highland/W I 96,RAMP,1903301,0,0.067,0,,1.09,4 +7105,0,0.081439,1,1,0,2,3,,4,8,Highland,Rd,933209,0,0.081,0,1.954531,3.7,5 +6996,1,0.106022,1,0,0,1,1,RON,5,8,W Highland/W I 96,RAMP,934202,0,0.106,0,,1.09,4 +7178,0,1.289301,1,1,0,2,4,,5,8,Grand River,Ave,932910,7.514,8.803,0,30.943222,3,4 +24796,0,1.075282,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.806765,0.15,4 +29841,0,0.758795,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.211081,0.15,4 +24797,0,0.362756,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.706149,0.15,4 +7109,0,0.79239,1,1,0,2,5,,5,8,Burkhart,Rd,933208,1.106,1.898,0,19.01735,3.7,5 +6991,0,0.568434,1,1,1,2,4,,3,8,Highlander,Way,934203,1.319,1.887,0,13.642427,6,4.5 +7099,1,0.62303,2,0,0,2,3,DIV,4,8,Highland,Rd,933209,1.149,1.772,0,14.95271,3.7,5 +7174,0,0.542518,2,2,1,2,3,,4,8,Grand River,Ave,932910,10.692,11.234,0,13.020422,3.7,5 +7176,0,0.695261,2,2,0,2,3,,4,8,Grand River,Ave,932910,9.898,10.593,0,16.686267,3.7,5 +24845,0,0.610655,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,14.655719,0.15,4 +7100,1,0.145211,2,0,0,2,3,DIV,4,8,Highland,Rd,933209,1.004,1.149,0,3.485055,3.7,5 +24844,0,0.468302,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,11.239247,0.15,4 +7101,1,0.204448,2,0,0,2,3,DIV,4,8,Highland,Rd,933209,0.8,1.004,0,4.906757,3.7,5 +24843,0,0.361118,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.666832,0.15,4 +6992,0,0.323832,1,1,1,2,4,,3,8,Highlander,Way,934203,0.995,1.319,0,7.771969,6,4.5 +7098,1,0.374242,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,1.772,2.146,0,8.9818,5,5 +7071,0,0.447729,1,1,0,2,7,,4,8,Crestwood,Ln,933304,0,0.448,0,10.745485,6.55,4.5 +7175,0,0.098819,2,2,0,2,3,,4,8,Grand River,Ave,932910,10.593,10.692,0,2.371652,3.7,5 +24835,0,0.935005,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.440109,0.15,4 +7966,0,0.065192,1,1,0,2,5,,5,8,Barron,Rd,934602,0.246,0.311,0,1.564601,3.7,5 +19940,0,0.040819,1,1,0,2,5,,5,8,Byron,Rd,4103021,0,0.041,0,0.97965,3.7,5 +7107,0,0.957662,1,1,0,2,5,,5,8,Burkhart,Rd,933208,3.412,4.37,0,22.983885,3.7,5 +8073,0,1.296047,1,1,0,2,5,,5,8,Chase Lake,Rd,939803,0.495,1.791,0,31.105127,3.7,5 +8109,0,1.466642,1,1,0,2,5,,5,8,Byron,Rd,939703,1.061,2.527,0,35.199406,3.7,5 +19942,0,0.072924,1,1,0,2,6,GRV,5,8,Marr,Rd,4103019,0,0.073,0,1.750167,5.55,5 +8112,0,1.001237,1,1,0,2,6,GRV,5,8,Marr,Rd,939610,1.018,2.019,0,24.029689,5.55,5 +8111,0,0.462659,1,1,0,2,6,GRV,5,8,Marr,Rd,939610,2.019,2.482,0,11.103807,5.55,5 +19941,0,0.054772,1,1,0,2,6,GRV,5,8,Marr,Rd,4103020,0,0.055,0,1.314537,5.55,5 +7112,0,0.039845,1,1,0,2,6,GRV,5,8,Crandall,Rd,933206,1.549,1.589,0,0.956281,5.55,5 +7928,0,1.004237,1,1,0,2,6,GRV,5,8,Antcliff,Rd,940003,0,1.004,0,24.101681,5.55,5 +8089,0,0.994515,1,1,0,2,6,GRV,5,8,Chase Lake,Rd,943607,6.864,7.858,0,23.868359,5.55,5 +7106,0,0.466036,1,1,0,2,5,GRV,5,8,Burkhart,Rd,933208,5.852,6.318,0,11.184862,5.55,5 +8108,0,0.218653,1,1,0,2,5,GRV,5,8,Chase Lake,Rd,939803,0.276,0.495,0,5.247667,5.55,5 +19944,0,0.050198,1,1,0,2,5,GRV,5,8,Burkhart/Chase Lake Cutoff,,4103009,0,0.05,0,1.204749,5.55,5 +7983,0,1.414842,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,0.049,1.464,0,33.956214,5.55,5 +7094,0,0.508333,1,1,0,2,3,,3,8,Highland,Rd,933209,3.628,4.136,0,12.199988,5,5 +7165,0,0.425339,2,2,1,2,3,,3,8,Grand River,Rd,932910,12.771,13.197,0,10.208134,5,5 +7941,0,0.452037,1,1,0,2,5,,3,8,Sibley,St,934805,0.798,1.25,0,10.848885,8,4.5 +7948,0,0.613391,1,1,0,2,5,,3,8,Clinton,St,934804,0.471,1.084,0,14.721382,8,4.5 +37048,0,0.133958,1,1,0,2,4,,3,8,Michigan,Ave,4104401,0.423,0.557,0,3.215002,6,4.5 +8161,0,0.183558,1,1,0,2,5,,3,8,North,St,939001,0.101,0.285,0,4.405401,8,4.5 +24738,0,2.336584,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,56.078018,0.15,4 +24857,0,0.396449,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,9.514769,0.15,4 +26522,0,0.727819,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,17.467657,0.15,4 +7065,0,0.283289,1,1,0,2,5,,3,8,Walnut,St,933407,0,0.283,0,6.798942,8,4.5 +7068,0,0.328834,1,1,0,2,5,,3,8,Byron,Rd,933401,0.059,0.387,0,7.892008,8,4.5 +7096,1,0.492738,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,2.789,3.282,0,11.825714,5,5 +7169,0,0.230283,1,1,1,2,3,,3,8,Grand River,Ave,932910,12.121,12.351,0,5.526797,5,5 +7935,0,0.10134,1,1,1,2,4,,3,8,Mason,Rd,4104400,0.527,0.628,0,2.432157,6,4.5 +7947,0,0.345866,1,1,0,2,5,,3,8,Sibley,St,934805,0.161,0.507,0,8.300774,8,4.5 +7952,0,0.221943,1,1,0,2,5,,3,8,Clinton,St,934804,0,0.222,0,5.32663,8,4.5 +37050,0,0.06448,1,1,1,2,4,,3,8,Michigan,Ave,4104401,0,0.065,0,1.547512,6,4.5 +24806,0,0.580212,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,13.925097,0.15,4 +24842,0,0.666527,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,15.996655,0.15,4 +24846,0,0.387454,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,9.298886,0.15,4 +24853,0,0.763291,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,18.318974,0.15,4 +6994,0,0.37435,1,1,1,2,4,,3,8,McPherson Park,Dr,934203,0,0.374,0,8.984407,6,4.5 +7924,0,0.336322,1,1,0,2,4,,3,8,Mason,Rd,4104400,0.966,1.303,0,8.071725,6,4.5 +24851,0,0.475796,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,11.419112,0.15,4 +24854,0,0.255465,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,6.13115,0.15,4 +7925,0,0.170282,1,1,1,2,4,,3,8,Mason,Rd,4104400,0.796,0.966,0,4.086762,6,4.5 +7934,0,0.168493,1,1,1,2,4,,3,8,Mason,Rd,4104400,0.628,0.796,0,4.043837,6,4.5 +7172,0,0.156661,1,1,1,2,3,,3,8,Grand River,Ave,932910,11.868,12.025,0,3.759855,5,5 +7069,0,0.058684,1,1,0,2,5,,3,8,Byron,Rd,933401,0,0.059,0,1.408428,8,4.5 +7070,0,0.142063,1,1,0,2,5,,3,8,George,St,933310,0.252,0.394,0,3.409504,8,4.5 +7170,0,0.029661,1,1,1,2,3,,3,8,Grand River,Ave,932910,12.091,12.121,0,0.711866,5,5 +7171,0,0.066483,1,1,1,2,3,,3,8,Grand River,Ave,932910,12.025,12.091,0,1.595598,5,5 +24849,0,0.555026,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,13.320628,0.15,4 +7067,0,0.486307,1,1,1,2,5,,3,8,Byron,Rd,933401,0.387,0.874,0,11.671358,8,4.5 +7064,0,0.216696,1,1,0,2,5,,3,8,Walnut,St,933407,0.283,0.5,0,5.200705,8,4.5 +7166,0,0.232628,2,2,1,2,3,,3,8,Grand River,Rd,932910,12.539,12.771,0,5.58307,5,5 +7937,0,0.133833,1,1,0,2,5,,3,8,Livingston,Ave,934808,0.25,0.384,0,3.211981,8,4.5 +7942,0,0.228887,1,1,0,2,5,,3,8,Sibley,St,934805,0.569,0.798,0,5.493297,8,4.5 +7944,0,0.062309,1,1,0,2,5,,3,8,Sibley,St,934805,0.507,0.569,0,1.495407,8,4.5 +8023,0,0.066569,1,1,1,2,4,,3,8,Michigan,Ave,4104400,0,0.067,0,1.597645,6,4.5 +37051,0,1.425289,1,1,0,2,7,,5,8,Norton,Rd,4104404,0,1.425,0,34.206934,5.8,6 +8148,0,0.392965,1,1,0,2,5,,3,8,Roosevelt,St,939101,0,0.393,0,9.431161,8,4.5 +24812,0,0.170702,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.096858,0.15,4 +7896,0,0.186345,1,1,0,2,5,,3,8,Marion,St,934902,0,0.186,0,4.472276,8,4.5 +8022,0,0.460126,1,1,0,2,4,,3,8,Michigan,Ave,4104400,0.067,0.527,0,11.043013,6,4.5 +8074,0,0.122701,1,1,0,2,5,,3,8,Dearborn,St,938708,0.168,0.291,0,2.944826,8,4.5 +7063,0,0.066063,1,1,0,2,5,,3,8,Walnut,St,933407,0.5,0.566,0,1.585501,8,4.5 +7168,0,0.128122,2,2,1,2,3,,3,8,Grand River,Ave,932910,12.351,12.479,0,3.074934,5,5 +7950,0,0.187537,1,1,0,2,5,,3,8,Clinton,St,934804,0.222,0.409,0,4.500884,8,4.5 +7949,0,0.061752,1,1,0,2,5,,3,8,Clinton,St,934804,0.409,0.471,0,1.482059,8,4.5 +37053,1,0.012364,1,0,0,2,5,,3,3,Taft,Rd,656608,0.4,0.413,0,0.296743,8,4.5 +7062,0,0.066117,1,1,0,2,5,,3,8,Walnut,St,933407,0.566,0.632,0,1.586807,8,4.5 +7167,0,0.059938,2,2,1,2,3,,3,8,Grand River,Ave,932910,12.479,12.539,0,1.43851,5,5 +7061,0,0.231393,1,1,0,2,5,,3,8,Fowler,St,4104608,0.186,0.417,0,5.553443,8,4.5 +24808,0,0.125275,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,3.006611,0.15,4 +7060,0,0.066196,1,1,0,2,5,,3,8,Fowler,St,4104608,0.417,0.483,0,1.588695,8,4.5 +7954,0,0.117281,1,1,0,2,5,,3,8,Madison,St,934708,0.188,0.305,0,2.814748,8,4.5 +24855,0,0.165955,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,3.982909,0.15,4 +7958,0,0.187512,1,1,0,2,5,,3,8,Madison,St,934708,0,0.188,0,4.500299,8,4.5 +7095,1,0.229991,2,0,0,2,3,DIV,3,8,Highland,Rd,933209,3.282,3.512,0,5.51979,5,5 +24859,0,0.402811,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,9.667457,0.15,4 +24858,0,0.28459,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,6.830162,0.15,4 +37049,0,0.359059,1,1,0,2,4,,3,8,Michigan,Ave,4104401,0.065,0.423,0,8.61742,6,4.5 +24841,0,0.690636,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.575265,0.15,4 +7054,0,0.391472,1,1,0,2,5,,5,8,Golf Club,Rd,933602,0,0.391,0,9.395317,3.7,5 +7093,0,0.890798,1,1,0,2,3,,5,8,Highland,Rd,933209,4.136,5.027,0,21.379148,1.7,4 +24606,0,0.721634,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.31921,0.15,4 +7055,0,0.364907,1,1,0,2,5,,3,8,Catrell,Dr,933508,0,0.365,0,8.757759,8,4.5 +7056,0,0.068682,1,1,0,2,5,,3,8,National,St,933507,0.574,0.643,0,1.648374,8,4.5 +7163,0,0.361167,2,2,1,2,3,,4,8,Grand River,Rd,932910,13.407,13.768,0,8.66801,3.7,5 +7059,0,0.046464,1,1,0,2,5,,3,8,National,St,933507,0.332,0.379,0,1.115133,8,4.5 +7164,0,0.210643,2,2,1,2,3,,3,8,Grand River,Rd,932910,13.197,13.407,0,5.055444,5,5 +7058,0,0.113833,1,1,0,2,5,,3,8,National,St,933507,0.379,0.492,0,2.731988,8,4.5 +7057,0,0.081938,1,1,0,2,5,,3,8,National,St,933507,0.492,0.574,0,1.966505,8,4.5 +8155,0,0.183008,1,1,0,2,5,,3,8,Sutton,St,939009,0,0.183,0,4.392186,8,4.5 +7162,0,0.10791,2,2,1,2,3,,4,8,Grand River,Rd,932910,13.768,13.876,0,2.589832,3.7,5 +24607,0,0.544866,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.07679,0.15,4 +7053,0,0.419835,1,1,0,2,5,,5,8,Golf Club,Rd,933602,0.391,0.811,0,10.076029,3.7,5 +8016,0,2.179787,1,1,0,2,5,,5,8,Faussett,Rd,934509,0,2.179,0,52.31488,3.7,5 +37045,0,1.006972,1,1,0,2,5,,5,8,Oak Grove,Rd,4104402,2.078,3.085,0,24.167324,3.7,5 +7971,0,0.497197,1,1,0,2,6,GRV,5,8,Marr,Rd,934601,2.139,2.636,0,11.93272,5.55,5 +19937,0,0.752478,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,1.499,2.251,0,18.059475,3.7,5 +7986,0,0.39666,1,1,0,2,5,,5,8,Oak Grove,Rd,934510,0.101,0.498,0,9.519848,3.7,5 +19938,0,0.651913,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,0.848,1.499,0,15.645906,3.7,5 +19943,0,0.15094,1,1,0,2,5,,5,8,Oak Grove,Rd,4103011,0,0.151,0,3.622553,3.7,5 +8083,0,0.109411,1,1,0,2,5,,5,8,Sanford,Rd,934507,0.377,0.487,0,2.625869,3.7,5 +26558,0,0.928104,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.274506,0.15,4 +8053,0,0.985939,1,1,0,2,6,GRV,5,8,Clyde,Rd,939905,0,0.986,0,23.662544,5.55,5 +7964,0,0.613639,1,1,0,2,6,GRV,5,8,Fisher,Rd,934608,2.543,3.156,0,14.727329,5.55,5 +8063,0,1.242607,1,1,0,2,5,,5,8,Gannon,Rd,939806,1.004,2.246,0,29.822574,3.7,5 +24767,0,0.866354,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.792491,0.15,4 +7343,0,0.462738,1,1,0,2,5,,5,8,Mohrle,Rd,943701,3.462,3.924,0,11.105701,3.7,5 +24860,0,1.426011,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.22426,0.15,4 +7320,0,1.470618,1,1,0,2,5,,5,8,Fowlerville,Rd,938006,0.036,1.506,0,35.294824,3.7,5 +7822,0,0.751834,1,1,0,2,6,GRV,5,8,Mohrle,Rd,943701,1.916,2.668,0,18.044013,5.55,5 +24783,0,1.953494,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,46.883849,0.15,4 +8085,0,0.753962,1,1,0,2,6,GRV,5,8,Mohrle,Rd,943701,2.668,3.421,0,18.09509,5.55,5 +7820,0,0.040296,1,1,0,2,6,GRV,5,8,Mohrle,Rd,943701,3.421,3.462,0,0.967098,5.55,5 +20912,0,0.058763,1,1,0,2,5,,5,8,Fowlerville,Rd,4104263,0,0.059,0,1.410307,3.7,5 +7325,0,0.035938,1,1,0,2,6,GRV,5,8,Fowlerville/Mohrle Cutoff,,938006,0,0.036,0,0.862511,5.55,5 +34060,0,0.659775,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7318,0,0.849899,1,1,0,2,5,,5,8,Fowlerville,Rd,938006,1.506,2.356,0,20.397576,3.7,5 +7340,0,1.975193,1,1,0,2,5,,5,8,Hayner,Rd,943801,1.004,2.979,0,47.404624,3.7,5 +7818,0,0.503033,1,1,0,2,5,,5,8,Hayner,Rd,943801,0.501,1.004,0,12.072802,3.7,5 +24861,0,1.507313,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.175524,0.15,4 +7800,0,0.50762,1,1,0,2,5,,5,8,Fowlerville,Rd,935004,9.452,9.96,0,12.182879,3.7,5 +8082,0,0.501613,1,1,0,2,5,,5,8,Hayner,Rd,943801,0,0.501,0,12.038701,3.7,5 +19934,0,0.445298,1,1,0,2,5,,5,8,Fleming,Rd,4103109,3.568,4.013,0,10.687149,3.7,5 +19767,0,0.085508,1,1,0,2,5,,5,8,Hayner,Rd,4104152,0,0.086,0,2.052193,3.7,5 +8056,0,2.233944,1,1,0,2,5,,5,8,Cohoctah,Rd,939901,0,2.233,0,53.614649,3.7,5 +7918,0,0.970187,1,1,0,2,5,,5,8,Antcliff,Rd,940003,2.508,3.478,0,23.284488,3.7,5 +24766,0,0.9568,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.963205,0.15,4 +7301,0,1.071096,1,1,0,2,6,GRV,5,8,Cohoctah,Rd,941804,0,1.071,0,25.706297,5.55,5 +7305,0,0.111474,1,1,0,2,6,GRV,5,8,Latson,Rd,938109,5.112,5.223,0,2.675369,5.55,5 +7314,0,1.408351,1,1,0,2,5,,5,8,Oak Grove,Rd,938107,2.492,3.899,0,33.800434,3.7,5 +8054,0,1.779584,1,1,0,2,6,,5,8,Cohoctah,Rd,939901,2.742,4.52,0,42.710014,5.8,6 +19935,0,1.505022,1,1,0,2,5,,5,8,Oak Grove,Rd,4103078,3.507,5.011,0,36.120518,3.7,5 +8055,0,0.508533,1,1,0,2,5,,5,8,Cohoctah,Rd,939901,2.233,2.742,0,12.204799,3.7,5 +34061,0,0.908819,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8531,0,0.787827,1,1,0,2,5,,5,6,Lewis,Ave,1226808,14.248,15.035,0,18.907847,3.7,5 +8569,0,1.524236,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,0,1.524,0,36.581666,3.7,5 +8907,1,1.166968,2,0,0,1,2,,4,6,N US 23,,1223505,15.315,16.481,0,,0.8,7.5 +8932,-1,2.144963,0,2,0,1,2,,5,6,S US 23,,1223504,14.433,16.577,0,,1.02,7 +8976,0,2.342182,1,1,0,2,4,,5,6,Custer,Rd,1223803,11.162,13.504,0,56.212378,3,4 +9072,0,3.136635,1,1,0,2,5,,5,6,Custer,Rd,1226001,13.898,17.034,0,75.279247,3.7,5 +9203,0,0.655533,1,1,0,2,5,,5,6,Lloyd,Rd,1225909,0.712,1.367,0,15.732787,3.7,5 +9382,0,0.449979,2,2,0,2,4,,3,6,Monroe,St,1227004,16.666,17.116,0,10.799493,6,4.5 +9425,1,2.111128,3,0,0,1,1,,5,6,N I 75,,1226910,15.63,17.74,0,,1.02,7 +9451,-1,2.193367,0,3,0,1,1,,5,6,S I 75,,1226909,15.54,17.733,0,,1.02,7 +10160,0,0.40311,2,2,0,2,4,,4,6,Stewart,Rd,1237610,8.3,8.703,0,9.674631,4.5,4.5 +10417,0,1.007303,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,1.893,2.9,0,24.175272,3.7,5 +10428,0,0.986887,1,1,0,2,7,,5,6,Dixon,Rd,1234503,4.731,5.717,0,23.685283,5.8,6 +20236,0,0.584081,1,1,0,2,5,,5,6,Vivian,Rd,4301667,0.128,0.712,0,14.017955,3.7,5 +20334,0,0.337228,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,3.987,4.324,0,8.093468,4.5,4.5 +20523,0,0.537128,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,16.164,16.701,0,12.891063,5,5 +20873,0,1.798344,1,1,0,2,7,,5,6,Hurd,Rd,4301449,0.934,2.731,0,43.160248,5.8,6 +31022,0,0.573031,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,13.752748,0.15,4 +31023,0,0.807536,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,19.380858,0.15,4 +31031,0,1.639395,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,39.345471,0.15,4 +31037,0,0.486284,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,11.670805,0.15,4 +31039,0,1.180717,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,28.337202,0.15,4 +33995,0,0.689784,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.554806,0.15,4 +34000,0,1.13996,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.35903,0.15,4 +34012,0,1.964809,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,47.155426,0.15,4 +8514,1,0.415666,1,0,0,1,1,RON,4,6,Dixie/S I 75,RAMP,1225601,0,0.416,0,,1.09,4 +8709,1,0.405661,1,0,0,1,1,ROF,5,6,S I 75/Dixie,RAMP,1225510,0,0.406,0,,2.24,5 +8751,0,0.610916,1,1,0,2,5,,5,6,Front,St,1223803,21.602,22.212,0,14.66199,3.7,5 +9133,0,0.372904,2,2,0,2,5,,5,6,Elm,Ave,1226001,22.851,23.224,0,8.949687,3.7,5 +9427,1,1.252029,3,0,0,1,1,,4,6,N I 75,,1226910,13.673,14.924,0,,0.8,7.5 +9452,-1,0.777442,0,3,0,1,1,,5,6,S I 75,,1226909,14.763,15.54,0,,1.02,7 +19885,0,0.213794,2,2,1,2,4,,5,6,Dixie,Hwy,4301655,1.624,1.838,0,5.131049,3,4 +20469,0,1.472382,1,1,0,2,5,,5,6,Sandy Creek,Rd,4300066,0.6,2.072,0,35.337175,3.7,5 +31044,0,1.080695,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,25.936684,0.15,4 +8651,0,2.022525,1,1,0,2,4,,5,6,Samaria,Rd,1226710,3.043,5.065,0,48.540607,3,4 +8813,0,1.752283,1,1,0,2,4,,5,6,Ida West,Rd,1223706,3.544,5.295,0,42.054797,3,4 +8823,0,1.231433,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,7.219,8.45,0,29.554381,3.7,5 +8833,0,0.558621,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,11.869,12.428,0,13.406909,4.5,4.5 +8859,0,0.526635,1,1,0,2,4,,4,6,Sterns,Rd,1223310,7.158,7.685,0,12.639235,4.5,4.5 +9250,0,0.47534,1,1,0,2,4,,4,6,Smith,Rd,1232401,2.127,2.602,0,11.408149,4.5,4.5 +9265,0,1.023674,1,1,0,2,5,,5,6,Temperance,Rd,1232206,3.513,4.536,0,24.568179,3.7,5 +31058,0,1.961633,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,47.079183,0.15,4 +31087,0,0.516285,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.390849,0.15,4 +31130,0,0.499429,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.986296,0.15,4 +34010,0,0.619119,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,14.858854,0.15,4 +8434,0,1.090868,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,7.683,8.774,0,26.180823,3.7,5 +8443,0,1.668185,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,0,1.668,0,40.036434,3,4 +8555,0,0.969018,1,1,0,2,5,,5,6,Yankee,Rd,1223403,0,0.969,0,23.25643,3.7,5 +8828,0,2.01455,1,1,0,2,6,,5,6,Ida Center,Rd,1223704,0,2.014,0,48.349199,5.8,6 +9089,0,0.893566,1,1,0,2,6,,5,6,Ottawa Lake,Rd,1223306,0,0.893,0,21.445589,5.8,6 +9093,0,1.022014,1,1,0,2,6,,5,6,Secor,Rd,1223604,5.451,6.472,0,24.528348,5.8,6 +9135,0,1.749184,1,1,0,2,3,,5,6,US 223,,1223208,0.343,2.092,0,41.980419,1.7,4 +9136,1,3.144687,2,0,0,1,2,,5,6,N US 23,,1223505,5.358,8.501,0,,1.02,7 +9151,-1,3.313147,0,2,0,1,2,,5,6,S US 23,,1223504,5.329,8.641,0,,1.02,7 +9176,0,1.691573,1,1,0,2,6,,5,6,Syl Petersburg,Rd,1223410,3.486,5.177,0,40.597755,5.8,6 +9232,0,2.009815,1,1,0,2,4,,5,6,Deerfield,Rd,1233410,0,2.009,0,48.235554,3,4 +24560,0,1.618033,1,1,0,2,6,,5,6,County Line,Hwy,947305,1.68,3.297,0,38.83279,5.8,6 +31074,0,3.047337,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,73.136078,0.15,4 +34009,0,1.484242,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.621807,0.15,4 +34042,0,1.99833,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34041,0,1.671745,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34085,0,1.551726,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8954,0,0.343417,1,1,0,2,3,,5,6,US 223,,1223208,0,0.343,0,8.242012,1.7,4 +7999,0,0.994044,1,1,0,2,6,,5,6,County Line,Rd,947305,6.32,7.314,0,23.857063,5.8,6 +24561,0,1.77812,1,1,0,2,6,,5,6,County Line,Hwy,947305,3.297,5.075,0,42.674875,5.8,6 +34083,0,1.712441,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7265,0,1.246154,1,1,0,2,6,,5,6,County Line,Rd,947305,5.075,6.32,0,29.907698,5.8,6 +34043,0,0.715111,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34086,0,0.858511,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8490,0,0.595057,1,1,0,2,5,,5,6,Whiteford Center,Rd,1223508,4.068,4.663,0,14.28136,3.7,5 +40509,-1,0.038649,0,1,0,2,3,,5,6,US 223,,5493543,0,0.039,0,0.927567,1.7,4 +8681,0,1.36158,1,1,0,2,5,,5,6,Clark,Rd,1223309,0,1.361,0,32.677915,3.7,5 +8707,1,0.197691,1,0,0,1,2,ROF,5,6,N US 23/Sterns,RAMP,1223906,0,0.198,0,,2.24,5 +8871,1,0.145896,1,0,0,1,2,RON,5,6,Sterns/S US 23,RAMP,1223605,0,0.146,0,,1.09,4 +8899,0,1.400873,1,1,0,2,4,,5,6,Sterns,Rd,1223310,3.669,5.07,0,33.620956,3,4 +8917,1,0.350196,2,0,0,1,2,,5,6,N US 23,,1223505,1.288,1.638,0,,1.02,7 +8945,-1,0.33956,0,2,0,1,2,,5,6,S US 23,,1223504,1.338,1.677,0,,1.02,7 +9067,0,1.073647,1,1,0,2,5,,5,6,Sterns,Rd,1223310,2.013,3.086,0,25.767526,3.7,5 +9082,0,0.964715,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.633,2.597,0,23.153163,3.7,5 +9103,0,0.708858,1,1,0,2,4,,4,6,Secor,Rd,1223604,0.737,1.445,0,17.012601,4.5,4.5 +40513,1,0.263233,1,0,0,1,2,ROF,5,6,S US 23/US 223,RAMP,1223502,0,0.263,0,,2.24,5 +9126,0,1.070647,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,2.854,3.924,0,25.695528,3,4 +40510,1,0.017789,1,0,0,1,2,ROF,5,6,S US 23/US 223,RAMP,1223502,0.263,0.281,0,,2.24,5 +9140,1,1.28886,2,0,0,1,2,,5,6,N US 23,,1223505,0,1.288,0,,1.02,7 +40511,1,0.047547,1,0,0,2,3,,5,6,US 223,,1223208,3.943,3.99,0,1.14113,1.7,4 +9169,-1,1.33852,0,2,0,1,2,,5,6,S US 23,,1223504,0,1.338,0,,1.02,7 +40507,0,0.78518,1,1,0,2,3,,5,6,US 223,,1223208,3.122,3.907,0,18.844318,1.7,4 +9266,0,0.986687,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1232105,0,0.986,0,23.680478,3.7,5 +20777,0,1.51703,1,1,0,2,5,,5,6,Whiteford,Rd,4301685,0,1.516,0,36.408717,3.7,5 +31084,0,0.734969,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,17.639261,0.15,4 +8678,0,0.749268,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,4.408,5.157,0,17.982443,3,4 +9182,0,1.478452,1,1,0,2,5,,5,6,Yankee,Rd,1223403,0.969,2.447,0,35.482844,3.7,5 +34039,0,1.148907,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34040,0,1.193599,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34084,0,0.994038,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9268,0,0.483625,1,1,0,2,5,,5,6,Clark,Rd,1232018,0.5,0.984,0,11.607011,3.7,5 +9269,0,0.500621,1,1,0,2,5,,5,6,Clark,Rd,1232018,0,0.5,0,12.014899,3.7,5 +9184,0,0.122922,1,1,0,2,5,,5,6,Lynch,Rd,1223402,0.965,1.088,0,2.95012,3.7,5 +8776,0,0.294876,1,1,0,2,5,,5,6,Sterns,Rd,1223310,1.718,2.013,0,7.077028,3.7,5 +9004,0,0.483327,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,3.924,4.408,0,11.599858,3,4 +8966,0,0.387454,1,1,0,2,5,,5,6,Head O Lake,Rd,1223401,0,0.387,0,9.298885,3.7,5 +8553,0,0.8343,1,1,0,2,7,,5,6,Yankee,Rd,1223403,2.447,3.281,0,20.023201,5.8,6 +8815,0,0.583657,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,5.157,5.74,0,14.007767,3,4 +9267,0,0.502001,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1232104,0,0.502,0,12.048014,3.7,5 +9179,0,0.047031,1,1,0,2,5,,5,6,Yankee,Rd,1223403,3.281,3.328,0,1.128735,3.7,5 +8465,0,1.055562,1,1,0,2,6,,5,6,Consear,Rd,1223608,0,1.055,0,25.333483,5.8,6 +8509,1,1.689522,2,0,0,1,2,,5,6,N US 23,,1223505,3.129,4.818,0,,1.02,7 +8529,-1,1.700263,0,2,0,1,2,,5,6,S US 23,,1223504,3.19,4.89,0,,1.02,7 +9059,0,1.030924,1,1,0,2,3,,5,6,US 223,,1223208,2.092,3.122,0,24.742169,1.7,4 +9177,0,1.109803,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1223410,1.494,2.604,0,26.635274,3.7,5 +31069,0,1.526079,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.625886,0.15,4 +31080,0,1.352414,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,32.457928,0.15,4 +8556,0,0.491208,1,1,0,2,6,,5,6,Head O Lake,Rd,1223401,1.404,1.895,0,11.788986,5.8,6 +8977,0,0.303958,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,2.386,2.69,0,7.295,3,4 +9180,0,1.03965,1,1,0,2,6,,5,6,Beck,Rd,1223308,0,1.039,0,24.951593,5.8,6 +31071,0,1.097894,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,26.349446,0.15,4 +8424,0,0.164017,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,2.69,2.854,0,3.936414,3,4 +8441,0,0.719187,1,1,0,2,4,,5,6,Memorial,Hwy,1223207,1.668,2.386,0,17.260481,3,4 +31072,0,0.474532,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.388769,0.15,4 +8551,0,1.494757,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1223410,0,1.494,0,35.874158,3.7,5 +9139,1,1.152438,2,0,0,1,2,,5,6,N US 23,,1223505,1.638,2.79,0,,1.02,7 +9168,-1,1.153603,0,2,0,1,2,,5,6,S US 23,,1223504,1.677,2.831,0,,1.02,7 +8648,0,0.218982,1,1,0,2,5,,5,6,Sterns,Rd,1223310,3.336,3.555,0,5.255562,3.7,5 +8699,0,0.249942,1,1,0,2,5,,5,6,Sterns,Rd,1223310,3.086,3.336,0,5.99862,3.7,5 +8880,1,0.16538,1,0,0,1,2,RON,5,6,Sterns/N US 23,RAMP,1223907,0,0.165,0,,1.09,4 +9097,0,0.114808,1,1,0,2,4,,5,6,Sterns,Rd,1223310,3.555,3.669,0,2.755401,3,4 +9088,1,0.21001,1,0,0,1,2,ROF,5,6,S US 23/Sterns,RAMP,1223606,0,0.21,0,,2.24,5 +8462,1,0.237587,1,0,0,1,2,ROF,5,6,S US 23/Consear,RAMP,1223609,0,0.238,0,,2.24,5 +8877,1,0.155278,1,0,0,1,2,RON,5,6,Consear/N US 23,RAMP,1223909,0,0.155,0,,1.09,4 +8915,1,0.339143,2,0,0,1,2,,5,6,N US 23,,1223505,2.79,3.129,0,,1.02,7 +8944,-1,0.359748,0,2,0,1,2,,5,6,S US 23,,1223504,2.831,3.19,0,,1.02,7 +9087,0,0.41808,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.055,1.473,0,10.033919,3.7,5 +8704,1,0.197769,1,0,0,1,2,ROF,5,6,N US 23/Consear,RAMP,1223908,0,0.198,0,,2.24,5 +8865,1,0.15509,1,0,0,1,2,RON,5,6,Consear/S US 23,RAMP,1223607,0,0.155,0,,1.09,4 +8863,0,0.110741,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.522,1.633,0,2.657793,3.7,5 +9085,0,0.04886,1,1,0,2,5,,5,6,Consear,Rd,1223608,1.473,1.522,0,1.172629,3.7,5 +8550,0,0.882956,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1223410,2.604,3.486,0,21.190946,3.7,5 +40524,1,0.539683,2,0,0,1,2,,5,6,N US 23,,1223505,4.818,5.358,0,,1.02,7 +40512,-1,0.044515,0,1,0,2,3,,5,6,US 223,,5493543,0.039,0.083,0,1.068363,1.7,4 +34034,0,1.230496,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34035,0,1.315217,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34036,0,1.303967,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34037,1,1.179177,2,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34038,-1,1.178843,0,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34082,0,1.220677,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +20716,0,0.018047,1,1,0,2,5,,5,6,Whiteford,Rd,4302329,0,0.018,0,0.433133,3.7,5 +8484,0,0.45385,1,1,0,2,4,,4,6,Secor,Rd,1223604,0,0.454,0,10.892397,4.5,4.5 +8887,0,0.599579,1,1,0,2,5,,4,6,Whiteford Center,Rd,1223508,5.42,6.019,0,14.389907,5.8,4.5 +9105,0,0.25371,1,1,0,2,5,,4,6,Whiteford Center,Rd,1223508,5.166,5.42,0,6.08904,5.8,4.5 +9251,0,0.589706,1,1,0,2,7,,4,6,Cloverlane,Rd,1232316,0,0.59,0,14.152946,6.55,4.5 +31085,0,0.614607,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.750567,0.15,4 +9110,0,0.50347,1,1,0,2,5,,4,6,Whiteford Center,Rd,1223508,4.663,5.166,0,12.083269,5.8,4.5 +9104,0,0.283105,1,1,0,2,4,,4,6,Secor,Rd,1223604,0.454,0.737,0,6.794519,4.5,4.5 +31082,0,0.545757,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,13.098174,0.15,4 +31083,0,0.27256,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.541439,0.15,4 +8182,0,0.42492,1,1,0,2,4,,5,6,Sterns,Rd,1223310,5.278,5.703,0,10.198072,3,4 +8463,0,1.615133,1,1,0,2,5,,5,6,Consear,Rd,1223608,2.783,4.397,0,38.76319,3.7,5 +8549,0,0.968187,1,1,0,2,4,,5,6,Saint Anthony,Rd,1223208,5.095,6.063,0,23.236489,3,4 +9055,0,1.532181,1,1,0,2,4,,5,6,Summerfield,Rd,1223702,8.774,10.305,0,36.772342,3,4 +9098,0,1.322995,1,1,0,2,5,,5,6,Secor,Rd,1223604,3.446,4.769,0,31.75189,3.7,5 +9111,0,1.527,1,1,0,2,6,,5,6,Whiteford Center,Rd,1223508,2.542,4.068,0,36.648007,5.8,6 +31065,0,1.590129,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,38.163088,0.15,4 +31081,0,1.662535,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,39.900845,0.15,4 +8491,0,0.312919,1,1,0,2,6,,5,6,Whiteford Center,Rd,1223508,2.229,2.542,0,7.510051,5.8,6 +8861,0,0.185654,1,1,0,2,5,,5,6,Consear,Rd,1223608,2.597,2.783,0,4.455693,3.7,5 +31086,0,1.213111,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,29.114662,0.15,4 +8967,0,0.208589,1,1,0,2,4,,5,6,Sterns,Rd,1223310,5.07,5.278,0,5.006145,3,4 +31088,0,0.20462,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.910877,0.15,4 +40514,1,0.20136,1,0,0,1,2,RON,5,6,US 223/S US 23,RAMP,1223503,0,0.201,0,,1.09,4 +31079,0,0.3577,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.584805,0.15,4 +40508,1,0.035505,1,0,0,2,3,,5,6,US 223,,1223208,3.907,3.943,0,0.852119,1.7,4 +8835,0,0.165998,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,10.856,11.022,0,3.983947,4.5,4.5 +8854,0,0.818537,1,1,0,2,4,,4,6,Sterns,Rd,1223310,5.703,6.521,0,19.644892,4.5,4.5 +8876,0,0.198424,1,1,0,2,5,,4,6,Secor,Rd,1223604,2.252,2.45,0,4.762183,5.8,4.5 +9043,0,0.525313,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,11.022,11.547,0,12.607512,4.5,4.5 +9078,0,0.722395,1,1,0,2,5,,4,6,Consear,Rd,1223608,4.397,5.119,0,17.33747,5.8,4.5 +31090,0,0.629247,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,15.101933,0.15,4 +9046,0,0.550609,1,1,0,2,4,,5,6,Summerfield,Rd,1223702,10.305,10.856,0,13.214624,3,4 +8451,0,0.133092,1,1,0,2,4,,4,6,Sterns,Rd,1223310,6.521,6.654,0,3.194201,4.5,4.5 +8883,0,0.730195,1,1,0,2,4,,4,6,Secor,Rd,1223604,1.445,2.175,0,17.524668,4.5,4.5 +31091,0,0.753072,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,18.073723,0.15,4 +31092,0,0.255163,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.123919,0.15,4 +9101,0,0.076904,1,1,0,2,4,,4,6,Secor,Rd,1223604,2.175,2.252,0,1.845688,4.5,4.5 +9099,0,0.352278,1,1,0,2,5,,5,6,Secor,Rd,1223604,2.947,3.299,0,8.45467,3.7,5 +8476,0,0.09647,1,1,0,2,5,,4,6,Secor,Rd,1223604,2.851,2.947,0,2.31529,5.8,4.5 +8475,0,0.146958,1,1,0,2,5,,5,6,Secor,Rd,1223604,3.299,3.446,0,3.526998,3.7,5 +8561,0,0.697408,1,1,0,2,4,,5,6,Saint Anthony,Rd,1223208,6.063,6.76,0,16.7378,3,4 +8872,0,0.501584,1,1,0,2,4,,5,6,Secor,Rd,1223604,4.949,5.451,0,12.038006,3,4 +9191,0,0.422692,1,1,0,2,4,,5,6,Saint Anthony,Rd,1223208,6.76,7.183,0,10.144604,3,4 +31066,0,0.360691,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.656583,0.15,4 +9095,0,0.180779,1,1,0,2,5,,5,6,Secor,Rd,1223604,4.769,4.949,0,4.338698,3.7,5 +31068,0,0.100625,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,2.415003,0.15,4 +8507,1,4.164953,2,0,0,1,2,,5,6,N US 23,,1223505,8.832,12.995,0,,1.02,7 +8526,-1,4.11025,0,2,0,1,2,,5,6,S US 23,,1223504,8.961,13.07,0,,1.02,7 +8825,0,1.181509,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,3.058,4.239,0,28.356205,3.7,5 +9018,0,0.839432,1,1,0,2,4,,5,6,Ida West,Rd,1223706,0,0.839,0,20.146378,3,4 +9064,0,1.014898,1,1,0,2,6,,5,6,Summerfield,Rd,1223702,2.923,3.937,0,24.357551,5.8,6 +9205,0,1.174133,1,1,0,2,5,,5,6,Teal,Rd,1233710,1.802,2.975,0,28.179193,3.7,5 +9235,0,1.826022,1,1,0,2,5,,5,6,Syl Petersburg,Rd,1233205,3.028,4.853,0,43.824534,3.7,5 +25900,0,1.564354,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,37.544489,0.15,4 +31078,0,2.061293,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,49.471035,0.15,4 +31093,0,2.004842,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,48.116215,0.15,4 +31095,0,1.367299,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,32.815184,0.15,4 +34008,0,2.085588,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,50.054123,0.15,4 +9035,0,1.044899,1,1,0,2,6,,5,6,Ida Center,Rd,1223704,2.014,3.058,0,25.077584,5.8,6 +9236,0,1.717081,1,1,0,2,6,,5,6,Syl Petersburg,Rd,1233205,1.312,3.028,0,41.209946,5.8,6 +9237,0,1.085835,1,1,0,2,6,,5,6,Syl Petersburg,Rd,1233205,0.226,1.312,0,26.060028,5.8,6 +20285,0,0.246608,1,1,0,2,6,,5,6,Sylvania Petersburg/Goetz Cut,,4302049,0,0.247,0,5.918595,5.8,6 +31075,0,0.192847,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.62832,0.15,4 +9224,0,0.912218,1,1,0,2,4,,5,6,Deerfield,Rd,1233410,2.009,2.921,0,21.893223,3,4 +10426,0,1.893616,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,0,1.893,0,45.446783,3.7,5 +31076,0,0.715171,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,17.164101,0.15,4 +9206,0,1.031342,1,1,0,2,5,,5,6,Teal,Rd,1233710,0.771,1.802,0,24.752217,3.7,5 +9207,0,0.185061,1,1,0,2,5,,5,6,Teal,Rd,1233710,0.586,0.771,0,4.441455,3.7,5 +10441,0,0.640145,1,1,0,2,4,,5,6,Ida West,Rd,1234503,0.458,1.098,0,15.363487,3,4 +9208,0,0.391004,1,1,0,2,5,,4,6,Saline,St,1233710,0.195,0.586,0,9.3841,5.8,4.5 +9212,0,0.182488,1,1,0,2,4,,4,6,Center,St,1233709,0.12,0.303,0,4.379721,4.5,4.5 +10215,0,0.329136,1,1,0,2,4,,4,6,Division,St,1234503,0.129,0.458,0,7.899261,4.5,4.5 +31099,0,0.087509,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.100224,0.15,4 +9209,0,0.130581,1,1,0,2,5,,4,6,Saline,St,1233710,0.064,0.195,0,3.133943,5.8,4.5 +9210,0,0.064295,1,1,0,2,4,,4,6,Saline,St,1233710,0,0.064,0,1.54307,4.5,4.5 +31098,0,0.351489,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,8.435738,0.15,4 +31097,0,0.159444,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.826663,0.15,4 +9211,0,0.057924,1,1,0,2,4,,4,6,Center,St,1233709,0.303,0.361,0,1.390183,4.5,4.5 +8701,1,0.187648,1,0,0,1,2,ROF,5,6,N US 23/Summerfield,RAMP,1224002,0,0.188,0,,2.24,5 +8842,0,2.283892,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,5.4,7.683,0,54.8134,3.7,5 +8914,1,0.330602,2,0,0,1,2,,5,6,N US 23,,1223505,8.501,8.832,0,,1.02,7 +9026,0,2.146563,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,5.073,7.219,0,51.517502,3.7,5 +9233,0,1.749466,1,1,0,2,6,,5,6,Secor,Rd,1233210,1.239,2.988,0,41.987183,5.8,6 +8824,0,0.388722,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,4.685,5.073,0,9.329319,3.7,5 +8846,0,0.885235,1,1,0,2,6,,5,6,Summerfield,Rd,1223702,3.937,4.822,0,21.245649,5.8,6 +10444,0,1.270492,1,1,0,2,5,,5,6,Teal,Rd,1233710,2.975,4.245,0,30.491801,3.7,5 +9033,0,0.445462,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,4.239,4.685,0,10.691093,3.7,5 +8435,0,0.128859,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,4.822,4.951,0,3.092605,3.7,5 +9062,0,0.335857,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,4.951,5.287,0,8.060575,3.7,5 +8875,1,0.15291,1,0,0,1,2,RON,5,6,Summerfield/N US 23,RAMP,1224003,0,0.153,0,,1.09,4 +8935,-1,0.319885,0,2,0,1,2,,5,6,S US 23,,1223504,8.641,8.961,0,,1.02,7 +9037,1,0.167862,1,0,0,1,2,ROF,5,6,S US 23/Summerfield,RAMP,1223703,0,0.168,0,,2.24,5 +9061,0,0.1138,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,5.287,5.4,0,2.731211,3.7,5 +9077,1,0.161982,1,0,0,1,2,RON,5,6,Summerfield/S US 23,RAMP,1223701,0,0.162,0,,1.09,4 +9234,0,1.23973,1,1,0,2,6,,5,6,Secor,Rd,1233210,0,1.239,0,29.753509,5.8,6 +9270,0,0.025994,1,1,0,2,6,,5,6,Rauch,Rd,1232010,7.158,7.184,0,0.623845,5.8,6 +8447,0,0.878863,1,1,0,2,5,,5,6,Summerfield,Rd,1223702,0.036,0.915,0,21.092704,3.7,5 +8873,1,0.149526,1,0,0,1,2,RON,5,6,Ida West/N US 23,RAMP,1224005,0,0.15,0,,1.09,4 +9008,1,0.148995,1,0,0,1,2,ROF,5,6,S US 23/Ida West,RAMP,1223707,0,0.149,0,,2.24,5 +9013,0,1.746737,1,1,0,2,4,,5,6,Ida West,Rd,1223706,1.798,3.544,0,41.921677,3,4 +9132,1,0.320355,2,0,0,1,2,,5,6,N US 23,,1223505,12.995,13.315,0,,1.02,7 +9150,-1,0.290077,0,2,0,1,2,,5,6,S US 23,,1223504,13.07,13.36,0,,1.02,7 +10430,0,1.139465,1,1,0,2,7,,5,6,Dixon,Rd,1234503,3.592,4.731,0,27.347168,5.8,6 +31032,0,1.423596,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,34.166293,0.15,4 +8819,0,0.419339,1,1,0,2,4,,5,6,Ida West,Rd,1223706,0.839,1.258,0,10.064135,3,4 +9069,0,2.008468,1,1,0,2,6,,5,6,Summerfield,Rd,1223702,0.915,2.923,0,48.203236,5.8,6 +31096,0,1.090162,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,26.163892,0.15,4 +31094,0,1.025076,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.601828,0.15,4 +9016,0,0.429143,1,1,0,2,4,,5,6,Ida West,Rd,1223706,1.258,1.687,0,10.29942,3,4 +8700,1,0.185639,1,0,0,1,2,ROF,5,6,N US 23/Ida West,RAMP,1224004,0,0.186,0,,2.24,5 +8816,0,0.110431,1,1,0,2,4,,5,6,Ida West,Rd,1223706,1.687,1.798,0,2.650356,3,4 +8820,1,0.157887,1,0,0,1,2,RON,5,6,Ida West/S US 23,RAMP,1223705,0,0.158,0,,1.09,4 +9127,1,2.000411,2,0,0,1,2,,5,6,N US 23,,1223505,13.315,15.315,0,,1.02,7 +9149,-1,1.073457,0,2,0,1,2,,5,6,S US 23,,1223504,13.36,14.433,0,,1.02,7 +10440,0,0.280988,1,1,0,2,5,,5,6,Dixon,Rd,1234503,2.764,3.044,0,6.743702,3.7,5 +20648,0,0.085466,1,1,0,2,5,,5,6,Summerfield,Rd,4302181,0,0.085,0,2.051178,3.7,5 +8567,0,0.711827,1,1,0,2,5,,5,6,Lloyd,Rd,1225909,0,0.712,0,17.083845,3.7,5 +10438,0,0.264664,1,1,0,2,5,,5,6,Dixon,Rd,1234503,3.044,3.309,0,6.351943,3.7,5 +10431,0,0.282985,1,1,0,2,5,,5,6,Dixon,Rd,1234503,3.309,3.592,0,6.791631,3.7,5 +8810,1,0.129603,2,0,0,1,2,RON,5,6,Dixon/S US 23,RAMP,1223708,0,0.13,0,,1.09,4 +8697,1,0.11095,1,0,0,1,2,ROF,5,6,N US 23/Lloyd,RAMP,1224007,0,0.111,0,,2.24,5 +31033,0,1.128393,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.081433,0.15,4 +8513,0,0.572522,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,9.688,10.26,0,13.74052,3,4 +8703,1,0.418011,1,0,0,1,1,ROF,5,6,S I 75/Luna Pier,RAMP,1226908,0,0.418,0,,2.24,5 +8787,0,1.303926,1,1,0,2,4,,5,6,Custer,Rd,1223803,13.504,14.807,0,31.294218,3,4 +8821,0,2.073182,1,1,0,2,5,,5,6,Yargerville,Rd,1223704,14.024,16.096,0,49.756365,3.7,5 +8879,0,0.536793,1,1,0,2,5,,5,6,Strasburg,Rd,1226809,9.575,10.112,0,12.883028,3.7,5 +8900,0,0.535747,1,1,0,2,5,,5,6,Lewis,Ave,1226808,5.421,5.956,0,12.857932,3.7,5 +9145,0,3.021956,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,1.069,4.09,0,72.526937,5.8,6 +9194,0,0.737393,1,1,0,2,4,,5,6,Sterns,Rd,1223310,13.448,14.185,0,17.697421,3,4 +9256,0,0.277353,1,1,0,2,6,,5,6,Erie,Rd,1232207,10.118,10.395,0,6.656461,5.8,6 +9405,0,0.527454,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.876,6.404,0,12.658895,3,4 +9409,0,0.648319,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,4.716,5.364,0,15.559662,3,4 +9415,1,0.310255,1,0,0,1,1,RON,5,6,Luna Pier/N I 75,RAMP,1227002,0,0.31,0,,1.09,4 +9437,1,0.643394,3,0,0,1,1,,5,6,N I 75,,1226910,5.491,6.134,0,,1.02,7 +9462,-1,0.613225,0,3,0,1,1,,5,6,S I 75,,1226909,5.484,6.097,0,,1.02,7 +9941,0,0.898451,1,1,0,2,5,,5,6,Harold,Dr,1240702,0.708,1.606,0,21.562835,3.7,5 +10367,0,1.408938,1,1,0,2,4,,5,6,Dunbar,Rd,1234601,8.296,9.704,0,33.814519,3,4 +20329,1,1.865267,2,0,0,2,3,DIV,5,6,Telegraph,Rd,4300001,6.863,8.727,0,44.766403,1.7,4 +20522,0,0.7552,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,6.108,6.863,0,18.124799,1.7,4 +20705,-1,1.898098,0,2,0,2,3,DIV,5,6,Telegraph,Rd,4300061,0,1.897,0,45.554349,1.7,4 +31109,0,1.277972,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,30.671333,0.15,4 +31115,0,0.993909,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,23.853817,0.15,4 +31122,0,0.507127,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.171039,0.15,4 +34028,0,1.596503,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8466,0,0.409956,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0.893,1.303,0,9.838938,4.5,4.5 +8563,0,0.997306,1,1,0,2,4,,5,6,Samaria,Rd,1226710,6.066,7.063,0,23.935332,3,4 +8831,0,0.592202,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,12.99,13.582,0,14.212848,4.5,4.5 +8848,0,0.529613,2,2,1,2,4,,4,6,Lewis,Ave,1226808,0.905,1.435,0,12.710711,4.5,4.5 +8971,0,1.002375,1,1,0,2,4,,4,6,Sterns,Rd,1223310,10.151,11.153,0,24.056997,4.5,4.5 +9242,0,0.936053,1,1,0,2,4,,4,6,Smith,Rd,1232401,5.119,6.055,0,22.465274,4.5,4.5 +9260,0,1.007852,1,1,0,2,5,,5,6,Temperance,Rd,1232206,6.51,7.517,0,24.188447,3.7,5 +9413,0,1.104889,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,0.331,1.435,0,26.517328,3,4 +19880,0,0.832184,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,0.819,1.651,0,19.972425,3.7,5 +20872,0,0.66172,1,1,0,2,4,,4,6,Jackman,Rd,4300008,0.327,0.988,0,15.881284,4.5,4.5 +31053,0,0.71783,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,17.22791,0.15,4 +31054,0,0.716118,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,17.18684,0.15,4 +31056,0,0.720629,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,17.295093,0.15,4 +31124,0,0.718373,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,17.240943,0.15,4 +31132,0,1.009493,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.227843,0.15,4 +31137,0,1.022914,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.549932,0.15,4 +34004,0,0.777965,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,18.671154,0.15,4 +9247,0,0.492168,1,1,0,2,4,,4,6,Smith,Rd,1232401,3.624,4.116,0,11.812034,4.5,4.5 +31128,0,0.499401,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.985623,0.15,4 +34031,0,1.335442,2,2,1,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34032,0,1.228174,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34033,0,1.198888,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8689,0,0.44594,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0,0.446,0,10.70256,4.5,4.5 +9249,0,0.521747,1,1,0,2,4,,4,6,Smith,Rd,1232401,2.602,3.124,0,12.521916,4.5,4.5 +31051,0,0.495924,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.902187,0.15,4 +31052,0,0.270944,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.502662,0.15,4 +8497,0,0.296329,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0.446,0.742,0,7.111907,4.5,4.5 +9039,0,0.586904,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,13.582,14.169,0,14.085689,4.5,4.5 +9248,0,0.500617,1,1,0,2,4,,4,6,Smith,Rd,1232401,3.124,3.624,0,12.014802,4.5,4.5 +31129,0,0.185867,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,4.460814,0.15,4 +8657,0,0.150788,1,1,0,2,4,,4,6,Douglas,Rd,1226801,0.742,0.893,0,3.61892,4.5,4.5 +8829,0,0.111506,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,14.169,14.28,0,2.676133,4.5,4.5 +8442,0,0.440447,2,2,1,2,4,,4,6,Lewis,Ave,1226808,0,0.44,0,10.570729,4.5,4.5 +9243,0,0.421142,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.698,5.119,0,10.107418,4.5,4.5 +20528,0,0.405328,1,1,0,2,4,,4,6,Jackman,Rd,4301658,0.04,0.445,0,9.727875,4.5,4.5 +31126,0,0.524483,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.587583,0.15,4 +9244,0,0.534861,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.164,4.698,0,12.83666,4.5,4.5 +20177,0,0.326995,1,1,0,2,4,,4,6,Jackman,Rd,4300008,0,0.327,0,7.847888,4.5,4.5 +31127,0,0.284438,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.826519,0.15,4 +34007,0,0.505206,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.124941,0.15,4 +9245,0,0.036658,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.127,4.164,0,0.879804,4.5,4.5 +20474,-1,0.056235,0,1,0,2,4,,4,6,Smith/Jackman Cutoff,,4302030,0,0.056,0,1.349647,4.5,4.5 +20776,0,0.040237,1,1,0,2,4,,4,6,Jackman,Rd,4301658,0,0.04,0,0.965689,4.5,4.5 +9246,0,0.01066,1,1,0,2,4,,4,6,Smith,Rd,1232401,4.116,4.127,0,0.255837,4.5,4.5 +9066,0,0.464924,2,2,1,2,4,,4,6,Lewis,Ave,1226808,0.44,0.905,0,11.158182,4.5,4.5 +8453,0,0.500806,1,1,0,2,4,,4,6,Lewis,Ave,1226808,2.927,3.428,0,12.019353,4.5,4.5 +9197,0,0.544906,1,1,0,2,4,,4,6,Sterns,Rd,1223310,8.633,9.178,0,13.077744,4.5,4.5 +9261,0,0.539322,1,1,0,2,5,,4,6,Temperance,Rd,1232206,5.97,6.51,0,12.943723,5.8,4.5 +9264,0,0.21332,1,1,0,2,5,,5,6,Temperance,Rd,1232206,5.185,5.398,0,5.119674,3.7,5 +31134,0,0.514659,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.351819,0.15,4 +31141,0,0.517839,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.428133,0.15,4 +31146,0,0.520849,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.500374,0.15,4 +9166,0,0.226113,1,1,0,2,4,,4,6,Sterns,Rd,1223310,7.928,8.154,0,5.426722,4.5,4.5 +9040,0,0.562471,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,12.428,12.99,0,13.499293,4.5,4.5 +31055,0,0.124536,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.988858,0.15,4 +9152,0,0.243529,1,1,0,2,4,,4,6,Sterns,Rd,1223310,7.685,7.928,0,5.844701,4.5,4.5 +8183,0,0.479222,1,1,0,2,4,,4,6,Sterns,Rd,1223310,8.154,8.633,0,11.50132,4.5,4.5 +31135,0,0.499152,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.979643,0.15,4 +8642,0,0.135599,1,1,0,2,4,,4,6,Douglas,Rd,1226801,1.303,1.438,0,3.254365,4.5,4.5 +31145,0,0.522958,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.550986,0.15,4 +8733,0,0.466287,2,2,1,2,4,,4,6,Lewis,Ave,1226808,1.965,2.431,0,11.190882,4.5,4.5 +9196,0,0.534647,1,1,0,2,4,,4,6,Sterns,Rd,1223310,9.617,10.151,0,12.831528,4.5,4.5 +20419,0,0.434547,1,1,0,2,5,,4,6,Jackman,Rd,4300008,1.548,1.982,0,10.42913,5.8,4.5 +31143,0,0.488084,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.714023,0.15,4 +31147,0,0.487032,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.688767,0.15,4 +8973,0,0.439023,1,1,0,2,4,,4,6,Sterns,Rd,1223310,9.178,9.617,0,10.536554,4.5,4.5 +20637,0,0.559428,1,1,0,2,5,,4,6,Jackman,Rd,4300008,0.988,1.548,0,13.42628,5.8,4.5 +31136,0,0.491473,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.79534,0.15,4 +31148,0,0.499986,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,11.999676,0.15,4 +9262,0,0.435927,1,1,0,2,5,,4,6,Temperance,Rd,1232206,5.535,5.97,0,10.46225,5.8,4.5 +20232,0,0.631782,1,1,0,2,5,,4,6,Jackman,Rd,4300008,2.35,2.981,0,15.162769,5.8,4.5 +9263,0,0.136753,1,1,0,2,5,,5,6,Temperance,Rd,1232206,5.398,5.535,0,3.282065,3.7,5 +31144,0,0.50172,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.04127,0.15,4 +8924,0,0.530426,2,2,1,2,4,,4,6,Lewis,Ave,1226808,1.435,1.965,0,12.730235,4.5,4.5 +9185,0,0.413229,1,1,0,2,4,,4,6,Lewis,Ave,1226808,2.514,2.927,0,9.917498,4.5,4.5 +8558,0,0.083417,1,1,0,2,4,,4,6,Lewis,Ave,1226808,2.431,2.514,0,2.001997,4.5,4.5 +8735,0,1.001374,1,1,0,2,4,,5,6,Samaria,Rd,1226710,5.065,6.066,0,24.032973,3,4 +8743,0,0.760867,1,1,0,2,4,,5,6,Lewis,Ave,1226808,3.977,4.737,0,18.260811,3,4 +31139,0,1.01141,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.273834,0.15,4 +31140,0,0.990977,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,23.783445,0.15,4 +31138,0,0.498184,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.956409,0.15,4 +9075,0,0.549111,1,1,0,2,4,,5,6,Lewis,Ave,1226808,3.428,3.977,0,13.178653,3,4 +8575,0,0.68364,1,1,0,2,4,,5,6,Lewis,Ave,1226808,4.737,5.421,0,16.407356,3,4 +34029,0,1.405816,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34030,0,1.304565,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +9240,0,0.975547,1,1,0,2,5,,4,6,La Voy,Rd,1232401,6.116,7.091,0,23.41313,5.8,4.5 +20229,0,0.391632,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,0.428,0.819,0,9.399179,3.7,5 +31125,0,0.279335,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.704039,0.15,4 +20416,0,0.427862,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,0,0.428,0,10.268678,3.7,5 +9241,0,0.060637,1,1,0,2,4,,4,6,Smith,Rd,1232401,6.055,6.116,0,1.455293,4.5,4.5 +31123,0,0.255047,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.121125,0.15,4 +9414,0,0.27388,1,1,0,2,4,,4,6,Dixie,Hwy,1227004,0.057,0.331,0,6.573123,4.5,4.5 +8732,0,2.013543,1,1,0,2,4,,5,6,Lakeside,Rd,1226710,7.063,9.075,0,48.325029,3,4 +8969,0,0.633538,1,1,0,2,4,,4,6,Sterns,Rd,1223310,11.938,12.571,0,15.204914,4.5,4.5 +9259,0,1.710684,1,1,0,2,5,,5,6,Temperance,Rd,1232206,7.517,9.227,0,41.056415,3.7,5 +9411,0,1.530566,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,2.103,3.633,0,36.733572,3,4 +20466,0,0.544706,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,3.3,3.845,0,13.072954,1.7,4 +20702,0,1.649881,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,1.651,3.3,0,39.597147,1.7,4 +31103,0,1.376516,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,33.036375,0.15,4 +31131,0,1.016112,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.386699,0.15,4 +9195,0,0.785067,1,1,0,2,4,,4,6,Sterns,Rd,1223310,11.153,11.938,0,18.841619,4.5,4.5 +31133,0,0.983647,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,23.607529,0.15,4 +31120,0,1.489656,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.751743,0.15,4 +31119,0,0.514531,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.348752,0.15,4 +8564,0,0.877267,1,1,0,2,4,,5,6,Sterns,Rd,1223310,12.571,13.448,0,21.054397,3,4 +31104,0,0.502493,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.059841,0.15,4 +34006,0,1.121261,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,26.910253,0.15,4 +9412,0,0.667356,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,1.435,2.103,0,16.01654,3,4 +31105,0,0.656485,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,15.755639,0.15,4 +8515,0,1.06916,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,0,1.069,0,25.659837,5.8,6 +8560,0,0.320216,1,1,0,2,4,,5,6,Lakeside,Rd,1226710,9.075,9.395,0,7.685195,3,4 +9258,0,0.137554,1,1,0,2,6,,5,6,Erie,Rd,1232207,9.401,9.538,0,3.301303,5.8,6 +20080,0,0.903206,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,4.941,5.844,0,21.67695,1.7,4 +20277,0,1.096881,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,3.845,4.941,0,26.325153,1.7,4 +31114,0,0.333767,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.010409,0.15,4 +31117,0,0.417884,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.029218,0.15,4 +9257,0,0.579644,1,1,0,2,6,,5,6,Erie,Rd,1232207,9.538,10.118,0,13.911447,5.8,6 +9410,0,1.083437,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,3.633,4.716,0,26.002484,3,4 +8708,0,0.292737,1,1,0,2,4,,5,6,Lakeside,Rd,1226710,9.395,9.688,0,7.025694,3,4 +20770,0,0.263943,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,5.844,6.108,0,6.334639,1.7,4 +8749,0,0.977077,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,5.093,6.07,0,23.449844,5.8,6 +8811,0,1.039848,1,1,0,2,4,,5,6,Ida East,Rd,1223706,6.296,7.335,0,24.956348,3,4 +8822,0,3.035163,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,10.204,13.238,0,72.843904,3.7,5 +8853,0,1.528041,1,1,0,2,5,,5,6,Lewis,Ave,1226808,9.421,10.948,0,36.672987,3.7,5 +10395,0,1.24293,1,1,0,2,5,,5,6,Dunbar,Rd,1234601,4.716,5.958,0,29.83031,3.7,5 +31028,0,1.921955,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,46.126931,0.15,4 +31062,0,1.703662,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,40.887886,0.15,4 +31108,0,0.891998,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.40795,0.15,4 +9025,0,1.754319,1,1,0,2,5,,5,6,Ida Center,Rd,1223704,8.45,10.204,0,42.103666,3.7,5 +9073,0,1.703342,1,1,0,2,5,,5,6,Lewis,Ave,1226808,7.718,9.421,0,40.880216,3.7,5 +31057,0,1.646608,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,39.518603,0.15,4 +31059,0,1.061666,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,25.479987,0.15,4 +8715,0,1.762517,1,1,0,2,5,,5,6,Lewis,Ave,1226808,5.956,7.718,0,42.300413,3.7,5 +31121,0,1.002777,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.066636,0.15,4 +9010,0,1.000974,1,1,0,2,4,,5,6,Ida West,Rd,1223706,5.295,6.296,0,24.02338,3,4 +9174,0,1.565812,1,1,0,2,5,,5,6,Lewis,Ave,1226808,10.948,12.513,0,37.579488,3.7,5 +31060,0,1.036275,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.870598,0.15,4 +31061,0,1.551619,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,37.238866,0.15,4 +37046,0,2.079047,1,1,0,2,4,,5,8,Oak Grove,Rd,4104402,0,2.078,0,49.897133,3,4 +37029,1,0.022326,2,0,0,2,3,,3,5,Packard,St,1430704,2.852,2.874,0,0.535825,5,5 +9170,0,0.698883,1,1,0,2,5,,5,6,Lewis,Ave,1226808,13.549,14.248,0,16.773188,3.7,5 +8544,0,1.036095,1,1,0,2,5,,5,6,Lewis,Ave,1226808,12.513,13.549,0,24.866272,3.7,5 +8939,0,1.003948,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,4.09,5.093,0,24.094748,5.8,6 +9023,0,0.786553,1,1,0,2,5,,5,6,Yargerville,Rd,1223704,13.238,14.024,0,18.877263,3.7,5 +31110,0,0.77063,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,18.495111,0.15,4 +31111,0,1.409538,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,33.828901,0.15,4 +9036,0,2.342227,1,1,0,2,6,,5,6,Strasburg,Rd,1226809,6.07,8.411,0,56.213453,5.8,6 +10369,0,1.816787,1,1,0,2,4,,5,6,Dunbar,Rd,1234601,6.479,8.296,0,43.602882,3,4 +31027,0,1.521551,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.517224,0.15,4 +31030,0,1.983113,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,47.594705,0.15,4 +10375,0,0.521408,1,1,0,2,4,,5,6,Dunbar,Rd,1234601,5.958,6.479,0,12.513794,3,4 +8905,0,0.773613,1,1,0,2,4,,5,6,Geiger,Rd,1226007,11.991,12.764,0,18.566703,3,4 +20237,0,0.064536,1,1,0,2,4,,5,6,Ida East,Rd,4301906,0,0.065,0,1.54886,3,4 +40089,1,0.03627,1,0,0,2,7,,2,5,Ann,St,4604073,0.462,0.499,0,0.870485,8.5,4.5 +39895,0,1.009589,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.230129,0.15,4 +40090,-1,0.03791,0,1,0,2,7,,2,5,Ann,St,4606154,0,0.038,0,0.909841,8.5,4.5 +31029,0,0.361081,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.665951,0.15,4 +31106,0,0.801316,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,19.23158,0.15,4 +8827,0,1.164612,1,1,0,2,5,,5,6,Strasburg,Rd,1226809,8.411,9.575,0,27.950686,3.7,5 +9239,0,1.289201,1,1,0,2,7,,5,6,Suder,Rd,1232902,0,1.289,0,30.940819,5.8,6 +9350,0,1.181336,2,2,1,2,4,,5,6,Summit,St,1227803,0,1.181,0,28.352065,3,4 +9442,1,1.778544,3,0,0,1,1,,5,6,N I 75,,1226910,0,1.778,0,,1.02,7 +9467,-1,2.098507,0,3,0,1,1,,5,6,S I 75,,1226909,0,2.098,0,,1.02,7 +34025,0,1.674445,2,2,1,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34026,1,1.594325,3,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34027,-1,1.595469,0,3,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8511,0,0.981526,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,11.1,12.081,0,23.556614,3,4 +9238,0,2.018038,1,1,0,2,7,,5,6,Suder,Rd,1232902,1.289,3.306,0,48.432907,5.8,6 +9253,0,0.225274,1,1,0,2,5,,5,6,Erie,Rd,1232207,11.798,12.024,0,5.406567,3.7,5 +9313,1,0.395925,1,0,0,1,1,ROF,5,6,S I 75/Erie,RAMP,1228201,0,0.396,0,,2.24,5 +9346,1,0.443601,1,0,0,1,1,ROF,5,6,N I 75/Erie,RAMP,1227804,0,0.444,0,,2.24,5 +9368,1,0.710237,2,0,0,2,4,DIV,5,6,Summit,St,1227206,0.62,1.33,0,17.045679,3,4 +9373,-1,0.709309,0,2,0,2,4,DIV,5,6,Summit,St,1227205,0.371,1.08,0,17.023418,3,4 +9439,1,0.550254,3,0,0,1,1,,5,6,N I 75,,1226910,4.26,4.81,0,,1.02,7 +9440,1,2.072892,3,0,0,1,1,,5,6,N I 75,,1226910,2.188,4.26,0,,1.02,7 +9464,-1,0.609857,0,3,0,1,1,,5,6,S I 75,,1226909,4.294,4.904,0,,1.02,7 +9465,-1,1.911307,0,3,0,1,1,,5,6,S I 75,,1226909,2.384,4.294,0,,1.02,7 +31149,0,2.018692,1,1,0,2,99,,,6,Centroid Connector,,0,0,0,0,48.448597,0.15,4 +9441,1,0.410434,3,0,0,1,1,,5,6,N I 75,,1226910,1.778,2.188,0,,1.02,7 +9466,-1,0.285963,0,3,0,1,1,,5,6,S I 75,,1226909,2.098,2.384,0,,1.02,7 +31101,0,0.852717,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,20.465198,0.15,4 +31150,0,1.274665,1,1,0,2,99,,,6,Centroid Connector,,0,0,0,0,30.591954,0.15,4 +33815,0,0.862061,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,20.689462,0.15,4 +9190,0,0.493914,1,1,0,2,4,,5,6,Sterns,Rd,1223310,14.185,14.679,0,11.85394,3,4 +9347,1,0.32356,1,0,0,1,1,RON,5,6,Summit/N I 75,RAMP,1227803,1.394,1.717,0,,1.09,4 +40119,0,0.500053,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.001277,0.15,4 +9348,0,0.146308,2,2,1,2,4,,5,6,Summit,St,1227803,1.247,1.394,0,3.511387,3,4 +9349,0,0.066406,2,2,1,2,4,,5,6,Summit,St,1227803,1.181,1.247,0,1.593735,3,4 +9369,1,0.620405,2,0,0,1,1,ROF,5,6,N I 75/Summit,RAMP,1227206,0,0.62,0,,2.24,5 +9374,-1,0.371105,0,2,0,1,1,RON,5,6,Summit/S I 75,RAMP,1227205,0,0.371,0,,1.09,4 +8705,0,0.840105,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,10.26,11.1,0,20.162526,3,4 +9254,0,1.394732,1,1,0,2,6,,5,6,Erie,Rd,1232207,10.404,11.798,0,33.473562,5.8,6 +9366,1,0.65779,2,0,0,2,4,DIV,5,6,Summit,St,1227206,2.335,2.992,0,15.786966,3,4 +9371,-1,0.591632,0,2,0,2,4,DIV,5,6,Summit,St,1227205,2.084,2.676,0,14.19917,3,4 +9367,1,1.004791,2,0,0,2,4,DIV,5,6,Summit,St,1227206,1.33,2.335,0,24.114982,3,4 +9372,-1,1.004485,0,2,0,2,4,DIV,5,6,Summit,St,1227205,1.08,2.084,0,24.107629,3,4 +9376,0,0.008008,1,1,0,2,7,,5,6,Temperance,Rd,1227110,0.714,0.722,0,0.192195,5.8,6 +9377,0,0.012501,1,1,0,2,7,,5,6,Temperance,Rd,1227110,0.701,0.714,0,0.300035,5.8,6 +9255,0,0.009142,1,1,0,2,6,,5,6,Erie,Rd,1232207,10.395,10.404,0,0.219418,5.8,6 +9406,0,0.443463,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.433,5.876,0,10.643115,3,4 +9370,-1,0.051348,0,2,0,2,4,DIV,5,6,Summit,St,1227205,2.676,2.727,0,1.232359,3,4 +9375,1,0.022506,1,0,0,2,4,,5,6,Dixie/Summit Cutoff,,1227204,0,0.023,0,0.540133,3,4 +9408,0,0.053024,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.364,5.417,0,1.272564,3,4 +9407,0,0.016224,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,5.417,5.433,0,0.389384,3,4 +9314,1,0.274186,1,0,0,1,1,RON,5,6,Erie/S I 75,RAMP,1228110,0,0.274,0,,1.09,4 +31112,0,0.25558,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,6.133917,0.15,4 +9345,1,0.172112,1,0,0,1,1,RON,5,6,Eire/N I 75,RAMP,1227805,0,0.172,0,,1.09,4 +9956,0,0.161205,1,1,0,2,5,,5,6,Harold,Dr,1240702,0.547,0.708,0,3.868912,3.7,5 +20529,0,0.692321,1,1,0,2,5,,5,6,Erie,Rd,4301690,0,0.692,0,16.615698,3.7,5 +31102,0,0.81536,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,19.568647,0.15,4 +9252,0,0.144804,1,1,0,2,5,,5,6,Erie,Rd,1232207,12.024,12.168,0,3.475299,3.7,5 +8690,0,0.251563,1,1,0,2,4,,5,6,Luna Pier,Rd,1226710,12.081,12.333,0,6.037516,3,4 +9416,1,0.388394,1,0,0,1,1,ROF,5,6,N I 75/Luna Pier,RAMP,1227001,0,0.388,0,,2.24,5 +9438,1,0.680968,3,0,0,1,1,,5,6,N I 75,,1226910,4.81,5.491,0,,1.02,7 +9463,-1,0.580324,0,3,0,1,1,,5,6,S I 75,,1226909,4.904,5.484,0,,1.02,7 +20188,1,0.255967,1,0,0,1,1,RON,5,6,Luna Pier/S I 75,RAMP,4302174,0,0.256,0,,1.09,4 +8500,0,0.224618,1,1,0,2,5,,5,6,Luna Pier,Rd,1226710,12.333,12.557,0,5.390826,3.7,5 +31100,0,0.321179,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,7.708299,0.15,4 +8639,0,0.17267,1,1,0,2,6,,4,6,Patterson,Dr,1224601,0.291,0.463,0,4.144073,6.55,4.5 +8772,0,0.17051,1,1,0,2,4,,4,6,Custer,Rd,1223803,18.124,18.295,0,4.092243,4.5,4.5 +9052,0,0.627848,1,1,1,2,4,,3,6,Custer,Rd,1226001,18.942,19.57,0,15.068351,6,4.5 +9289,0,0.155623,1,1,0,2,5,,4,6,7th,St,4302993,0.617,0.773,0,3.734942,5.8,4.5 +9310,1,0.394834,1,0,0,1,1,RON,4,6,Laplaisance/S I 75,RAMP,1228206,0,0.395,0,,1.09,4 +9363,0,0.560152,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,1.667,2.227,0,13.443636,3.7,5 +9399,0,0.744345,1,1,0,2,4,,4,6,Dixie,Hwy,1227004,11.288,12.032,0,17.86428,4.5,4.5 +9400,0,0.975821,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,10.313,11.288,0,23.419704,3,4 +9432,1,0.299406,3,0,0,1,1,,4,6,N I 75,,1226910,11.237,11.536,0,,0.8,7.5 +9436,1,2.045278,3,0,0,1,1,,5,6,N I 75,,1226910,6.134,8.179,0,,1.02,7 +9458,-1,0.782315,0,3,0,1,1,,4,6,S I 75,,1226909,11.124,11.906,0,,0.8,7.5 +9461,-1,2.124131,0,3,0,1,1,,5,6,S I 75,,1226909,6.097,8.22,0,,1.02,7 +10020,0,0.235985,1,1,0,2,4,,4,6,Laplaisance,Rd,1238308,1.866,2.102,0,5.663644,4.5,4.5 +10054,0,0.977555,1,1,0,2,7,,5,6,Laplaisance,Rd,1238206,0.209,1.186,0,23.461317,5.8,6 +10320,0,0.838607,1,1,0,2,5,,4,6,Albain,Rd,1234708,1.051,1.89,0,20.126573,5.8,4.5 +10331,0,0.798228,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,11.517,12.315,0,19.157471,4.5,4.5 +19636,1,0.251853,1,0,0,1,1,RON,5,6,Laplaisance/N I 75,RAMP,1843903,0,0.252,0,,1.09,4 +20333,0,0.284061,1,1,0,2,5,,4,6,Albain,Rd,4301495,12.727,13.011,0,6.817472,5.8,4.5 +20377,0,1.476314,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,10.883,12.359,0,35.431535,3.7,5 +20774,0,0.340272,1,1,0,2,5,,4,6,Albain,Rd,4301495,11.483,11.823,0,8.166536,5.8,4.5 +20870,0,1.269631,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,12.383,13.651,0,30.471153,3.7,5 +31042,0,1.326579,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,31.837887,0.15,4 +31152,0,1.443412,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,34.641884,0.15,4 +31158,0,0.449221,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.781301,0.15,4 +31165,0,0.592551,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.221235,0.15,4 +31167,0,0.316055,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,7.585326,0.15,4 +34002,0,1.065541,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,25.572976,0.15,4 +9403,0,1.736896,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,8.303,10.039,0,41.685502,3,4 +20127,0,0.434298,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,8.727,9.162,0,10.423155,1.7,4 +20822,0,1.600812,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,9.162,10.762,0,38.419478,1.7,4 +31154,0,1.718815,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,41.251554,0.15,4 +9404,0,1.900417,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,6.404,8.303,0,45.610007,3,4 +9360,0,1.656705,1,1,0,2,7,,5,6,Laplaisance,Rd,1227304,0,1.656,0,39.760915,5.8,6 +9365,0,1.456076,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,0,1.456,0,34.945825,3.7,5 +8893,0,0.231226,1,1,0,2,7,,5,6,Otter Creek,Rd,1226306,1.741,1.972,0,5.549426,5.8,6 +20582,0,0.121079,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,10.762,10.883,0,2.905899,1.7,4 +9020,0,0.243598,1,1,0,2,5,,5,6,Otter Creek,Rd,1223704,16.096,16.34,0,5.846342,3.7,5 +9402,0,0.178107,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,10.039,10.217,0,4.274556,3,4 +9401,0,0.095242,1,1,0,2,4,,5,6,Dixie,Hwy,1227004,10.217,10.313,0,2.285804,3,4 +31153,0,0.464735,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.153646,0.15,4 +9364,0,0.211205,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,1.456,1.667,0,5.06891,3.7,5 +10063,0,0.179947,1,1,0,2,7,,5,6,Knab,Rd,1238206,0,0.18,0,4.318731,5.8,6 +10060,0,0.028881,1,1,0,2,7,,5,6,Laplaisance,Rd,1238206,0.18,0.209,0,0.693153,5.8,6 +20883,0,0.041739,1,1,0,2,7,,5,6,Laplaisance Cutoff,,4302178,0,0.042,0,1.001725,5.8,6 +9359,0,0.031886,1,1,0,2,7,,5,6,Laplaisance,Rd,1227304,1.656,1.688,0,0.765271,5.8,6 +8786,0,0.459969,1,1,0,2,5,,4,6,Herr,Rd,1224507,0,0.46,0,11.03926,5.8,4.5 +8960,1,0.907149,2,0,0,2,4,DIV,4,6,Custer,Rd,1223803,16.208,17.115,0,21.771584,4.5,4.5 +9054,0,0.652509,2,2,0,2,4,,4,6,Custer,Rd,1226001,17.272,17.924,0,15.660225,4.5,4.5 +9283,0,1.700732,1,1,0,2,4,,4,6,Raisinville,Rd,1229704,0,1.7,0,40.817559,4.5,4.5 +10366,0,0.818131,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,9.704,10.522,0,19.635149,4.5,4.5 +20825,-1,0.906203,0,2,0,2,4,DIV,4,6,Custer,Rd,4300467,0.371,1.277,0,21.748867,4.5,4.5 +31164,0,0.68832,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.519678,0.15,4 +31173,0,0.695104,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.682485,0.15,4 +8962,0,1.03313,1,1,0,2,4,,5,6,Custer,Rd,1223803,14.807,15.84,0,24.795121,3,4 +8780,1,0.367938,2,0,0,2,4,DIV,5,6,Custer,Rd,1223803,15.84,16.208,0,8.8305,3,4 +9281,0,0.187363,1,1,0,2,4,,4,6,Raisinville,Rd,1229704,1.716,1.903,0,4.496714,4.5,4.5 +20130,-1,0.370787,0,2,0,2,4,DIV,5,6,Custer,Rd,4300467,0,0.371,0,8.898893,3,4 +9282,0,0.015924,1,1,0,2,4,,4,6,Raisinville,Rd,1229704,1.7,1.716,0,0.382179,4.5,4.5 +8433,0,0.238574,2,2,0,2,5,,5,6,Custer,Rd,1226001,17.034,17.272,0,5.725779,3.7,5 +10355,0,0.22889,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,11.288,11.517,0,5.493366,4.5,4.5 +31162,0,1.184429,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,28.4263,0.15,4 +10362,0,0.766822,1,1,0,2,4,,4,6,Dunbar,Rd,1234601,10.522,11.288,0,18.403719,4.5,4.5 +31161,0,1.019359,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.464624,0.15,4 +20084,0,0.246425,1,1,0,2,5,,4,6,Albain,Rd,4301495,11.236,11.483,0,5.914212,5.8,4.5 +31159,0,0.324042,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,7.777017,0.15,4 +20175,0,0.023617,1,1,0,2,3,,4,6,Telegraph,Rd,4300001,12.359,12.383,0,0.566812,3.7,5 +8432,0,1.018418,2,2,0,2,4,,4,6,Custer,Rd,1226001,17.924,18.942,0,24.442022,4.5,4.5 +8778,1,0.6174,2,0,0,2,4,DIV,4,6,Custer,Rd,1223803,17.115,17.732,0,14.81759,4.5,4.5 +20585,-1,0.619281,0,2,0,2,4,DIV,4,6,Custer,Rd,4300467,1.277,1.896,0,14.86274,4.5,4.5 +31043,0,0.7807,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,18.736808,0.15,4 +31174,0,0.807408,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,19.37779,0.15,4 +33597,0,0.883129,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,21.195103,0.15,4 +31172,0,0.570953,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,13.702868,0.15,4 +34005,0,0.604139,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.499337,0.15,4 +8643,0,0.596291,1,1,0,2,5,,4,6,Herr,Rd,1224507,0.46,1.056,0,14.310988,5.8,4.5 +8783,0,0.290865,1,1,0,2,6,,4,6,Patterson,Dr,1224601,0,0.291,0,6.980762,6.55,4.5 +8953,1,0.392562,2,0,0,2,4,DIV,4,6,Custer,Rd,1223803,17.732,18.124,0,9.421477,4.5,4.5 +31073,0,0.520289,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.486939,0.15,4 +31163,0,0.111974,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.687364,0.15,4 +9341,1,0.2262,1,0,0,1,1,RON,5,6,Laplaisance/N I 75,RAMP,1227904,0,0.226,0,,1.09,4 +9342,1,0.326237,1,0,0,1,1,ROF,5,6,N I 75/Laplaisance,RAMP,1227903,0,0.326,0,,2.24,5 +9434,1,2.317952,3,0,0,1,1,,5,6,N I 75,,1226910,8.609,10.926,0,,1.02,7 +9459,-1,2.545368,0,3,0,1,1,,5,6,S I 75,,1226909,8.58,11.124,0,,1.02,7 +10043,0,1.349647,1,1,0,2,5,,5,6,Laplaisance,Rd,1238308,0,1.349,0,32.391538,3.7,5 +9361,0,0.732589,1,1,0,2,6,,5,6,Otter Creek,Rd,1227303,2.477,3.209,0,17.582126,5.8,6 +9343,1,0.31743,1,0,0,1,1,RON,5,6,Otter Creek/N I 75,RAMP,1227810,0,0.317,0,,1.09,4 +9344,1,0.505454,1,0,0,1,1,ROF,5,6,N I 75/Otter Creek,RAMP,1227809,0,0.505,0,,2.24,5 +9362,0,0.250442,1,1,0,2,5,,5,6,Otter Creek,Rd,1227303,2.227,2.477,0,6.010614,3.7,5 +9312,1,0.459093,1,0,0,1,1,RON,5,6,Otter Creek/S I 75,RAMP,1228204,0,0.459,0,,1.09,4 +9435,1,0.430418,3,0,0,1,1,,5,6,N I 75,,1226910,8.179,8.609,0,,1.02,7 +9460,-1,0.359935,0,3,0,1,1,,5,6,S I 75,,1226909,8.22,8.58,0,,1.02,7 +9311,1,0.277456,1,0,0,1,1,ROF,5,6,S I 75/Otter Creek,RAMP,1228205,0,0.277,0,,2.24,5 +9358,0,1.068399,1,1,0,2,7,,5,6,Laplaisance,Rd,1227305,1.477,2.545,0,25.641578,5.8,6 +31160,0,0.575738,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,13.817721,0.15,4 +31151,0,0.48613,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.667126,0.15,4 +9433,1,0.310814,3,0,0,1,1,,5,6,N I 75,,1226910,10.926,11.237,0,,1.02,7 +10036,0,0.414563,1,1,0,2,5,,5,6,Laplaisance,Rd,1238308,1.349,1.764,0,9.949506,3.7,5 +10034,0,0.089376,1,1,1,2,4,,5,6,Laplaisance,Rd,1238308,1.764,1.853,0,2.145013,3,4 +10031,0,0.012842,1,1,1,2,4,,5,6,Laplaisance,Rd,1238308,1.853,1.866,0,0.30822,3,4 +8608,0,0.140288,1,1,0,2,4,,4,6,Winchester,St,1224908,0.526,0.666,0,3.366923,4.5,4.5 +8611,0,0.124311,1,1,0,2,4,,3,6,Scott,St,1224901,0.438,0.562,0,2.983467,6,4.5 +8613,0,0.210878,1,1,0,2,4,,3,6,Scott,St,1224901,0.088,0.299,0,5.061075,6,4.5 +8621,0,0.138267,1,1,0,2,4,,3,6,1st,St,1224806,0.385,0.523,0,3.318408,6,4.5 +8623,0,0.293114,1,1,0,2,5,,3,6,3rd,St,1224710,0.974,1.267,0,7.034731,8,4.5 +8712,0,0.172939,1,1,0,2,5,,3,6,Noble,St,1225503,0.207,0.38,0,4.150525,8,4.5 +8723,0,0.751547,1,1,0,2,5,,4,6,Detroit,St,1225408,0,0.751,0,18.037136,5.8,4.5 +8762,-1,0.160023,0,2,0,2,4,,3,6,Front,St,1223803,19.829,19.989,0,3.84055,6,4.5 +8765,0,0.443023,1,1,0,2,4,,3,6,1st,St,1224806,0.523,0.966,0,10.632552,6,4.5 +8769,0,0.211704,1,1,0,2,5,,3,6,3rd,St,1224710,0.763,0.974,0,5.080888,8,4.5 +8940,0,0.184032,1,1,0,2,4,,4,6,Elm,Ave,1226001,21.974,22.158,0,4.416767,4.5,4.5 +8961,0,0.16534,1,1,0,2,4,,3,6,Elm,Ave,1226001,20.888,21.053,0,3.968171,6,4.5 +9291,0,0.498257,1,1,0,2,5,,3,6,Kentucky,Ave,1229306,1.596,2.094,0,11.958158,8,4.5 +9309,1,0.452408,1,0,0,1,1,ROF,4,6,S I 75/Laplaisance,RAMP,1228207,0,0.452,0,,2.24,5 +9352,1,0.34499,2,0,0,2,5,,3,6,8th,St,1227505,0.249,0.594,0,8.279766,8,4.5 +9385,0,0.237575,2,2,0,2,4,,3,6,Monroe,St,1227004,15.158,15.396,0,5.701802,6,4.5 +9392,0,0.086757,2,2,0,2,4,,3,6,Monroe,St,1227004,14.21,14.297,0,2.082169,6,4.5 +9453,-1,1.088934,0,3,0,1,1,,4,6,S I 75,,1226909,13.675,14.763,0,,0.8,7.5 +10156,0,0.101421,2,2,0,2,4,,3,6,Stewart,Rd,1237610,8.942,9.044,0,2.434096,6,4.5 +20417,0,0.586512,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,14.037,14.623,0,14.076277,5,5 +31036,0,0.441137,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,10.587295,0.15,4 +31182,0,0.357211,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,8.573061,0.15,4 +31185,0,0.337481,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,8.099541,0.15,4 +31189,0,0.703116,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,16.874794,0.15,4 +31190,0,0.388556,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.325343,0.15,4 +9357,0,0.482217,1,1,1,2,4,,4,6,Dunbar,Rd,1227408,0,0.482,0,11.573215,4.5,4.5 +9395,0,0.357364,2,2,0,2,4,,3,6,Dixie,Hwy,1227004,13.392,13.749,0,8.57674,6,4.5 +9397,0,0.441761,2,2,0,2,4,,4,6,Dixie,Hwy,1227004,12.558,12.999,0,10.602276,4.5,4.5 +10005,0,0.774771,1,1,0,2,4,,4,6,Laplaisance,Rd,1238308,2.317,3.092,0,18.594498,4.5,4.5 +20526,0,0.904864,1,1,0,2,5,,4,6,Albain,Rd,4301495,11.823,12.727,0,21.716735,5.8,4.5 +31155,0,0.77077,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,18.498483,0.15,4 +31156,0,0.453259,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.878209,0.15,4 +31187,0,0.431913,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,10.365904,0.15,4 +9398,0,0.525742,2,2,0,2,4,,4,6,Dixie,Hwy,1227004,12.032,12.558,0,12.617818,4.5,4.5 +10330,0,0.532502,1,1,0,2,4,,3,6,Dunbar,Rd,1234601,12.315,12.847,0,12.780056,6,4.5 +31186,0,0.41217,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.89207,0.15,4 +34003,0,0.428922,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,10.294135,0.15,4 +20635,0,0.385807,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,13.651,14.037,0,9.259367,5,5 +9396,0,0.392528,2,2,0,2,4,,4,6,Dixie,Hwy,1227004,12.999,13.392,0,9.420663,4.5,4.5 +10329,0,0.272995,1,1,0,2,4,,3,6,Dunbar,Rd,1234601,12.847,13.12,0,6.551878,6,4.5 +31077,0,0.941771,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,22.602515,0.15,4 +31157,0,0.6112,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.668798,0.15,4 +10010,0,0.16483,1,1,1,2,4,,4,6,Laplaisance,Rd,1238308,2.153,2.317,0,3.955931,4.5,4.5 +10012,0,0.050968,1,1,1,2,4,,4,6,Laplaisance,Rd,1238308,2.102,2.153,0,1.223231,4.5,4.5 +9354,0,0.444582,1,1,0,2,4,,3,6,Jones,Ave,1227504,0,0.444,0,10.669958,6,4.5 +9356,0,0.242424,1,1,1,2,4,,4,6,Dunbar,Rd,1227408,0.482,0.724,0,5.818186,4.5,4.5 +9999,0,0.469463,1,1,0,2,4,,3,6,Laplaisance,Rd,1238308,3.334,3.803,0,11.267105,6,4.5 +9394,0,0.327867,2,2,0,2,4,,3,6,Dixie,Hwy,1227004,13.749,14.077,0,7.868817,6,4.5 +9393,0,0.133741,2,2,0,2,4,,3,6,Monroe,St,1227004,14.077,14.21,0,3.209782,6,4.5 +9292,0,0.213895,1,1,0,2,7,,4,6,Hull,Rd,1229306,1.382,1.596,0,5.133486,6.55,4.5 +9355,0,0.148313,1,1,0,2,4,,4,6,Dunbar,Rd,1227408,0.724,0.873,0,3.559505,4.5,4.5 +10003,0,0.242403,1,1,0,2,4,,4,6,Laplaisance,Rd,1238308,3.092,3.334,0,5.817667,4.5,4.5 +9998,0,0.206349,1,1,0,2,4,,3,6,Laplaisance,Rd,1238308,3.803,4.01,0,4.952377,6,4.5 +33997,0,0.159235,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.821645,0.15,4 +9994,0,0.154685,1,1,0,2,4,,3,6,Laplaisance,Rd,1238308,4.01,4.164,0,3.712449,6,4.5 +31184,0,0.232576,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,5.581822,0.15,4 +31183,0,0.076956,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,1.846933,0.15,4 +8635,0,0.358945,1,1,0,2,7,,3,6,Roessler,St,1224708,0.788,1.147,0,8.614684,7,4.5 +8782,0,0.07388,1,1,0,2,5,,3,6,Kaye Lani,Ave,1224706,0,0.074,0,1.773129,8,4.5 +8950,0,0.177947,1,1,0,2,4,,3,6,Front,St,1223803,18.814,18.991,0,4.270717,6,4.5 +9183,0,0.29022,1,1,1,2,4,,3,6,Elm,Ave,1226001,19.927,20.217,0,6.965276,6,4.5 +9285,-1,0.199887,0,2,0,2,5,,3,6,7th,St,4302993,1.534,1.734,0,4.797292,8,4.5 +9353,1,0.249236,2,0,0,2,5,,3,6,8th,St,1227505,0,0.249,0,5.981658,8,4.5 +20278,0,0.270758,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,15.627,15.897,0,6.498196,5,5 +20467,0,0.319058,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,15.308,15.627,0,7.657398,5,5 +25908,0,0.218974,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,5.255378,0.15,4 +31169,0,0.404605,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.71051,0.15,4 +31170,0,0.405504,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.732086,0.15,4 +31188,0,0.50844,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,12.202568,0.15,4 +33999,0,0.25867,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.208085,0.15,4 +34001,0,0.495071,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,11.881707,0.15,4 +8426,0,0.232463,1,1,1,2,4,,3,6,Custer,Rd,1226001,19.57,19.802,0,5.579112,6,4.5 +8771,0,0.25601,2,2,0,2,4,,4,6,Custer,Rd,1223803,18.558,18.814,0,6.144247,4.5,4.5 +9288,0,0.440526,1,1,0,2,5,,4,6,7th,St,4302993,0.773,1.213,0,10.572623,5.8,4.5 +20230,0,0.209844,2,2,0,2,3,,3,6,Telegraph,Rd,4300001,14.623,14.833,0,5.036253,5,5 +30330,0,0.378473,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,9.083358,0.15,4 +31168,0,0.243252,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.838049,0.15,4 +8952,0,0.263179,2,2,0,2,4,,4,6,Custer,Rd,1223803,18.295,18.558,0,6.316291,4.5,4.5 +31166,0,0.089398,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.145559,0.15,4 +8637,-1,0.087269,0,2,0,2,5,,3,6,Roessler,St,1224708,0.148,0.235,0,2.094462,8,4.5 +9287,0,0.154502,1,1,0,2,5,,3,6,7th,St,4302993,1.213,1.367,0,3.708054,8,4.5 +9286,0,0.066782,1,1,0,2,5,,3,6,7th,St,4302993,1.467,1.534,0,1.602767,8,4.5 +19533,0,0.1642,1,1,0,2,5,,3,6,Kaye Lani,Ave,1878407,0,0.164,0,3.940811,8,4.5 +8557,0,0.122629,1,1,0,2,4,,3,6,Custer,Dr,1225207,0,0.123,0,2.943091,6,4.5 +9049,0,0.124535,1,1,1,2,4,,3,6,Elm,Ave,1226001,19.802,19.927,0,2.988851,6,4.5 +20703,0,0.392486,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,14.916,15.308,0,9.419666,5,5 +19881,0,0.082438,2,2,0,2,3,,3,6,Telegraph,Rd,4300001,14.833,14.916,0,1.978514,5,5 +8552,0,0.057778,1,1,0,2,4,,3,6,Bentley,Dr,1225208,0,0.058,0,1.38667,6,4.5 +8727,0,0.056226,1,1,0,2,4,,3,6,Custer,Dr,1225207,0.123,0.179,0,1.349434,6,4.5 +31171,0,0.265452,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.370839,0.15,4 +8764,0,0.402917,1,1,0,2,4,,3,6,Front,St,1223803,19.242,19.644,0,9.669998,6,4.5 +8767,0,0.075607,1,1,0,2,4,,3,6,Front,St,1223803,19.123,19.199,0,1.814566,6,4.5 +8773,0,0.344368,1,1,0,2,5,,3,6,3rd,St,1224710,0.206,0.55,0,8.26483,8,4.5 +8779,0,0.290713,2,2,0,2,5,,3,6,Roessler,St,1224708,0.498,0.788,0,6.977122,8,4.5 +9181,0,0.378458,1,1,0,2,4,,3,6,Elm,Ave,1226001,20.51,20.888,0,9.082995,6,4.5 +9284,-1,0.394192,0,2,0,2,5,,3,6,7th,St,4302993,1.734,2.128,0,9.460605,8,4.5 +9386,0,0.242602,2,2,0,2,4,,3,6,Monroe,St,1227004,14.916,15.158,0,5.822451,6,4.5 +31193,0,0.440864,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,10.580729,0.15,4 +8632,0,0.205974,1,1,0,2,5,,3,6,3rd,St,1224710,0,0.206,0,4.943378,8,4.5 +26329,0,0.266256,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.390133,0.15,4 +31191,0,0.151765,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.64237,0.15,4 +31192,0,0.166533,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.996784,0.15,4 +8948,0,0.042834,1,1,0,2,4,,3,6,Front,St,1223803,19.199,19.242,0,1.028014,6,4.5 +8963,0,0.292624,1,1,0,2,4,,3,6,Elm,Ave,1226001,20.217,20.51,0,7.02298,6,4.5 +8622,1,0.171767,2,0,0,2,4,,3,6,1st,St,1224806,0,0.172,0,4.12242,6,4.5 +8630,0,0.212588,1,1,0,2,5,,3,6,3rd,St,1224710,0.55,0.763,0,5.10211,8,4.5 +8766,1,0.213056,2,0,0,2,4,,3,6,1st,St,1224806,0.172,0.385,0,5.11334,6,4.5 +8946,-1,0.184245,0,2,0,2,4,,3,6,Front,St,1223803,19.644,19.829,0,4.421883,6,4.5 +9389,0,0.140119,2,2,0,2,4,,3,6,Monroe,St,1227004,14.576,14.716,0,3.362849,6,4.5 +9390,0,0.141253,2,2,0,2,4,,3,6,Monroe,St,1227004,14.435,14.576,0,3.390081,6,4.5 +9391,0,0.138158,2,2,0,2,4,,3,6,Monroe,St,1227004,14.297,14.435,0,3.315789,6,4.5 +8758,0,0.139104,1,1,0,2,4,,3,6,Scott,St,1224901,0.299,0.438,0,3.338485,6,4.5 +9387,0,0.139633,2,2,0,2,4,,3,6,Monroe,St,1227004,14.776,14.916,0,3.351182,6,4.5 +9388,0,0.059617,2,2,0,2,4,,3,6,Monroe,St,1227004,14.716,14.776,0,1.430817,6,4.5 +9271,0,0.657085,1,1,0,2,7,,3,6,Roessler,St,1230604,0,0.657,0,15.770037,7,4.5 +20081,0,0.200494,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,15.897,16.098,0,4.811864,5,5 +31019,0,0.286396,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,6.873499,0.15,4 +33998,0,0.325842,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,7.820198,0.15,4 +8775,0,0.219305,1,1,0,2,7,,3,6,Roessler,St,1224708,1.147,1.367,0,5.263326,7,4.5 +20771,0,0.066289,2,2,1,2,3,,3,6,Telegraph,Rd,4300001,16.098,16.164,0,1.590934,5,5 +10159,0,0.239916,2,2,0,2,4,,3,6,Stewart,Rd,1237610,8.703,8.942,0,5.757975,6,4.5 +8606,0,0.13779,1,1,0,2,4,,4,6,Front,St,1225004,0,0.138,0,3.306961,4.5,4.5 +9431,1,1.723872,3,0,0,1,1,,4,6,N I 75,,1226910,11.536,13.259,0,,0.8,7.5 +9457,-1,1.348281,0,3,0,1,1,,4,6,S I 75,,1226909,11.906,13.254,0,,0.8,7.5 +8756,0,0.138653,1,1,0,2,5,,4,6,Winchester,St,1224908,0.387,0.526,0,3.327672,5.8,4.5 +31176,0,0.527673,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.664149,0.15,4 +9290,0,0.36965,1,1,0,2,5,,3,6,Kentucky,Ave,1229306,2.094,2.463,0,8.871591,8,4.5 +8768,0,0.076775,1,1,0,2,5,,4,6,3rd,St,1224710,1.267,1.344,0,1.842599,5.8,4.5 +8620,0,0.295166,1,1,0,2,4,,4,6,1st,St,1224806,0.966,1.261,0,7.083988,4.5,4.5 +31175,0,0.269906,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,6.477744,0.15,4 +8543,1,0.14816,1,0,0,1,1,RON,4,6,S I 75/Elm,RAMP,1225409,0.051,0.199,0,,1.09,4 +8579,1,0.290975,1,0,0,1,1,RON,4,6,Front/S I 75,RAMP,1225006,0,0.291,0,,1.09,4 +8720,1,0.133613,1,0,0,1,1,ROF,4,6,S I 75/Elm,RAMP,1225410,0,0.134,0,,2.24,5 +8746,1,0.314487,1,0,0,1,1,ROF,4,6,S I 75/Front,RAMP,1225005,0,0.314,0,,2.24,5 +8942,0,0.124501,1,1,0,2,4,,5,6,Front,St,1223803,21.477,21.602,0,2.988036,3,4 +9141,0,0.328211,2,2,0,2,4,,4,6,Elm,Ave,1226001,22.459,22.787,0,7.877054,4.5,4.5 +9429,1,0.251083,3,0,0,1,1,,4,6,N I 75,,1226910,13.351,13.602,0,,0.8,7.5 +9455,-1,0.246101,0,3,0,1,1,,4,6,S I 75,,1226909,13.358,13.604,0,,0.8,7.5 +8578,1,0.257464,1,0,0,1,1,RON,5,6,Front/N I 75,RAMP,1225010,0,0.257,0,,1.09,4 +8745,1,0.229725,1,0,0,1,1,ROF,5,6,N I 75/Front,RAMP,1225009,0,0.23,0,,2.24,5 +9430,1,0.092083,3,0,0,1,1,,4,6,N I 75,,1226910,13.259,13.351,0,,0.8,7.5 +9456,-1,0.103705,0,3,0,1,1,,4,6,S I 75,,1226909,13.254,13.358,0,,0.8,7.5 +8752,0,0.423532,1,1,0,2,4,,4,6,Front,St,1223803,21.054,21.477,0,10.164761,4.5,4.5 +8923,0,0.050175,2,2,0,2,4,,4,6,Elm,Ave,1226001,22.409,22.459,0,1.204203,4.5,4.5 +9144,0,0.251248,2,2,0,2,4,,4,6,Elm,Ave,1226001,22.158,22.409,0,6.029963,4.5,4.5 +20589,0,0.030266,1,1,0,1,4,,4,6,S I 75/Elm Ramp Service Drive,,4301749,0,0.03,0,,4.5,4.5 +8539,1,0.054388,1,0,0,1,1,ROF,4,6,S I 75/Elm,RAMP,1225410,0.134,0.188,0,,2.24,5 +8722,1,0.050689,1,0,0,1,1,RON,4,6,S I 75/Elm,RAMP,1225409,0,0.051,0,,1.09,4 +20384,-1,0.004665,0,1,0,1,4,,4,6,S I 75/Elm Ramp Service Drive,,4301749,0.03,0.035,0,,4.5,4.5 +8535,1,0.063438,1,0,0,1,1,ROF,5,6,N I 75/Elm,RAMP,1225501,0.182,0.246,0,,2.24,5 +8717,1,0.068961,1,0,0,1,1,RON,5,6,Elm/N I 75,RAMP,1225502,0,0.069,0,,1.09,4 +8918,0,0.063622,2,2,0,2,4,,5,6,Elm,Ave,1226001,22.787,22.851,0,1.526931,3,4 +8534,1,0.170833,1,0,0,1,1,RON,5,6,Elm/N I 75,RAMP,1225502,0.069,0.24,0,,1.09,4 +8718,1,0.18236,1,0,0,1,1,ROF,5,6,N I 75/Elm,RAMP,1225501,0,0.182,0,,2.24,5 +9428,1,0.070356,3,0,0,1,1,,4,6,N I 75,,1226910,13.602,13.673,0,,0.8,7.5 +9454,-1,0.070628,0,3,0,1,1,,4,6,S I 75,,1226909,13.604,13.675,0,,0.8,7.5 +20134,0,0.023391,1,1,0,1,4,,5,6,N I 75/Elm Ramp Service Drive,,4301741,0,0.023,0,,3,4 +20829,1,0.006477,1,0,0,1,4,,5,6,N I 75/Elm Ramp Service Drive,,4301741,0.023,0.03,0,,3,4 +8520,0,0.550988,1,1,0,2,5,,4,6,Noble,St,1225503,0.599,1.15,0,13.223705,5.8,4.5 +8546,0,0.497763,1,1,0,2,5,,3,6,Riverview,St,1225309,1.173,1.67,0,11.946316,8,4.5 +8724,0,0.576851,1,1,0,2,5,,3,6,Riverview,St,1225309,0.596,1.173,0,13.844419,8,4.5 +8759,0,0.838435,1,1,0,2,4,,3,6,Macomb,St,1224810,1.1,1.938,0,20.122437,6,4.5 +9163,0,0.192506,1,1,0,2,4,,4,6,Elm,Ave,1226001,21.781,21.974,0,4.620153,4.5,4.5 +9384,0,0.751137,2,2,0,2,4,,3,6,Monroe,St,1227004,15.396,16.147,0,18.027286,6,4.5 +10147,0,0.307604,1,1,0,2,5,,3,6,Cole,Rd,1237610,9.618,9.926,0,7.382498,8,4.5 +20179,0,0.233966,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,0.211,0.445,0,5.615183,4.5,4.5 +30327,0,0.697081,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,16.729948,0.15,4 +31021,0,0.652458,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,15.658994,0.15,4 +31024,0,0.532927,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,12.790257,0.15,4 +33596,0,0.56739,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,13.617356,0.15,4 +8548,0,0.359203,1,1,0,2,5,,3,6,Riverview,St,1225309,0.237,0.596,0,8.620865,8,4.5 +8618,0,0.238941,2,2,0,2,4,,3,6,Macomb,St,1224810,0.511,0.75,0,5.734576,6,4.5 +8726,0,0.23722,1,1,0,2,5,,3,6,Riverview,St,1225309,0,0.237,0,5.693282,8,4.5 +8955,0,0.511458,1,1,0,2,4,,3,6,Elm,Ave,1226001,21.27,21.781,0,12.275003,6,4.5 +31179,0,0.089946,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,2.158703,0.15,4 +9175,0,0.217099,1,1,0,2,4,,3,6,Elm,Ave,1226001,21.053,21.27,0,5.210382,6,4.5 +31181,0,0.132906,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.189742,0.15,4 +31180,0,0.031452,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,0.754843,0.15,4 +8763,0,0.119288,2,2,0,2,4,,3,6,Macomb,St,1224810,0.392,0.511,0,2.862913,6,4.5 +8943,0,0.059861,1,1,0,2,4,,3,6,Front,St,1223803,19.989,20.048,0,1.436653,6,4.5 +8525,0,0.092582,1,1,0,2,5,,3,6,Noble,St,1225503,0.38,0.473,0,2.221968,8,4.5 +8761,0,0.238583,2,2,0,2,4,,3,6,Macomb,St,1224810,0.75,0.989,0,5.726003,6,4.5 +31178,0,0.376941,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,9.046583,0.15,4 +8711,0,0.126314,1,1,0,2,5,,3,6,Noble,St,1225503,0.473,0.599,0,3.031524,8,4.5 +8615,0,0.111588,1,1,0,2,4,,3,6,Macomb,St,1224810,0.989,1.1,0,2.678108,6,4.5 +31177,0,0.130835,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,3.140052,0.15,4 +20381,0,0.211121,2,2,0,2,4,,4,6,Winchester,St,4301655,0,0.211,0,5.066914,4.5,4.5 +8754,0,0.038705,2,2,0,2,4,,4,6,Winchester,St,1224908,0.666,0.705,0,0.928932,4.5,4.5 +9383,0,0.519907,2,2,0,2,4,,3,6,Monroe,St,1227004,16.147,16.666,0,12.477775,6,4.5 +10148,0,0.375368,2,2,0,2,4,,3,6,Cole,Rd,1237610,9.243,9.618,0,9.008841,6,4.5 +31038,0,0.32438,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,7.785115,0.15,4 +10150,0,0.199195,2,2,0,2,4,,3,6,Stewart,Rd,1237610,9.044,9.243,0,4.780673,6,4.5 +31025,0,0.242659,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,5.823821,0.15,4 +31026,0,0.312924,1,1,0,2,99,,3,6,Centroid Connector,,0,0,0,0,7.510172,0.15,4 +8545,0,0.415401,1,1,0,2,5,,4,6,Detroit,St,1225408,0.751,1.167,0,9.96962,5.8,4.5 +20639,0,0.359207,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,0.987,1.346,0,8.62097,4.5,4.5 +20874,0,0.542477,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,0.445,0.987,0,13.019451,4.5,4.5 +31049,0,0.615487,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,14.771677,0.15,4 +31048,0,0.249518,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.988423,0.15,4 +31050,0,0.170305,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,4.087321,0.15,4 +20421,0,0.22607,2,2,1,2,4,,4,6,Dixie,Hwy,4301655,1.346,1.572,0,5.425674,4.5,4.5 +20234,0,0.051781,2,2,1,2,4,,5,6,Dixie,Hwy,4301655,1.572,1.624,0,1.24274,3,4 +10117,0,0.182954,1,1,0,2,5,,5,6,Cole,Rd,1237610,10.24,10.423,0,4.390902,3.7,5 +10138,0,0.314993,1,1,0,2,5,,3,6,Cole,Rd,1237610,9.926,10.24,0,7.55984,8,4.5 +20423,0,0.127784,1,1,0,2,5,,3,6,Vivian,Rd,4301667,0,0.128,0,3.066816,8,4.5 +10114,0,0.18513,1,1,0,2,5,,5,6,Cole,Rd,1237610,10.423,10.608,0,4.443113,3.7,5 +31020,0,0.30876,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,7.410243,0.15,4 +20775,0,0.569383,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,3.418,3.987,0,13.665197,4.5,4.5 +30332,0,0.382315,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,9.175565,0.15,4 +8941,0,0.528178,1,1,0,2,5,,5,6,Front,St,1223803,22.212,22.74,0,12.676276,3.7,5 +8750,0,0.065011,1,1,0,2,5,,5,6,Front,St,1223803,22.74,22.805,0,1.560254,3.7,5 +31045,0,0.357755,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,8.586114,0.15,4 +31047,0,0.518023,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.432542,0.15,4 +31046,0,0.122029,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,2.928686,0.15,4 +8911,0,0.075443,2,2,0,2,5,,5,6,Elm,Ave,1226001,23.224,23.299,0,1.810636,3.7,5 +8695,1,0.378968,1,0,0,1,1,ROF,5,6,N I 75/Dixie,RAMP,1225605,0,0.379,0,,2.24,5 +9426,1,0.705532,3,0,0,1,1,,5,6,N I 75,,1226910,14.924,15.63,0,,1.02,7 +20471,0,0.553081,1,1,1,2,4,,5,6,Dixie,Hwy,4301655,2.172,2.725,0,13.273941,3,4 +31014,0,0.501481,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.035537,0.15,4 +20707,0,0.33415,1,1,1,2,4,,5,6,Dixie,Hwy,4301655,1.838,2.172,0,8.019607,3,4 +8506,1,0.366338,1,0,0,1,1,RON,5,6,Dixie/N I 75,RAMP,1225606,0,0.366,0,,1.09,4 +20085,0,0.600578,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,2.817,3.418,0,14.413861,4.5,4.5 +20282,0,0.092556,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,2.725,2.817,0,2.221338,4.5,4.5 +40091,-1,0.027892,0,1,0,2,7,,2,5,Observatory,St,4606155,0,0.028,0,0.669411,8.5,4.5 +3970,0,1.150552,1,1,0,2,4,,4,4,River,Rd,800901,0.885,2.035,0,27.613243,4.5,4.5 +4241,1,1.676085,3,0,0,1,1,,4,4,E I 94,,798501,15.682,17.358,0,,0.8,7.5 +4535,1,0.63625,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,1.329,1.965,0,15.270005,3.7,5 +4986,-1,1.637718,0,3,0,1,1,,4,4,W I 94,,798502,15.848,17.486,0,,0.8,7.5 +5496,0,2.70427,1,1,0,2,5,,5,4,School Section,Rd,822609,0,2.704,0,64.902472,3.7,5 +5526,0,1.563449,1,1,0,2,5,,5,4,New Haven,Rd,814905,5.569,7.133,0,37.522782,3.7,5 +5559,1,0.822,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,12.482,13.304,0,19.728005,3.7,5 +5621,0,1.414017,1,1,0,2,5,,5,4,Ridge,St,817602,5.61,7.024,0,33.936404,3.7,5 +6072,0,0.058066,2,2,1,2,3,,4,4,Gratiot,Ave,832010,5.052,5.11,0,1.39358,3.7,5 +6238,0,0.270366,2,2,1,2,3,,4,4,23 Mile,Rd,807106,13.191,13.461,0,6.488774,3.7,5 +6344,-1,0.488525,0,2,0,2,4,DIV,4,4,William P Rosso,Hwy,807801,12.534,13.022,0,11.724607,4.5,4.5 +6473,0,1.597652,1,1,0,2,5,,5,7,Bordman,Rd,824010,3.994,5.591,0,38.34365,3.7,5 +6567,0,1.699491,1,1,0,2,4,,5,4,26 Mile,Rd,816702,11.571,13.271,0,40.787785,3,4 +6785,0,2.430794,1,1,0,2,4,,5,4,Division,Rd,815804,11.061,13.492,0,58.339056,3,4 +6805,0,1.452606,1,1,0,2,4,,4,4,River,Rd,831807,1.525,2.977,0,34.862555,4.5,4.5 +6932,0,0.092904,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.217,10.31,0,2.229685,4.5,4.5 +7376,-1,2.519588,0,2,0,1,1,,5,7,W I 69,,962902,0,2.519,0,,1.02,7 +7455,0,0.954554,1,1,0,2,5,,5,7,Lapeer,Rd,962901,12.652,13.606,0,22.909285,3.7,5 +7462,0,0.580709,1,1,0,2,5,,5,7,Brandon,Rd,962901,5.888,6.468,0,13.937004,3.7,5 +7509,1,2.560774,2,0,0,1,1,,5,7,E I 69,,962706,0,2.56,0,,1.02,7 +7518,0,0.334945,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,0.689,1.024,0,8.03867,5,5 +7581,-1,0.921036,0,2,0,1,1,,5,7,W I 69,,962902,7.053,7.974,0,,1.02,7 +7636,0,0.883724,1,1,0,2,5,,5,7,Lapeer,Rd,962901,10.079,10.963,0,21.209368,3.7,5 +40423,1,0.317341,1,0,0,1,1,ROF,4,7,E I 94/Water,RAMP,4506254,0.152,0.469,0,,2.24,5 +7670,1,0.881159,2,0,0,1,1,,5,7,E I 69,,962706,7.076,7.957,0,,1.02,7 +7695,0,0.238855,2,2,0,2,4,,3,7,10th,Ave,963204,2.467,2.705,0,5.732528,6,4.5 +7708,0,0.503458,1,1,0,2,4,,5,7,Main,St,961905,5.163,5.667,0,12.082995,3,4 +7722,0,0.974773,1,1,0,2,5,,5,7,Bryce,Rd,962608,6.034,7.009,0,23.39454,3.7,5 +7834,0,1.028804,1,1,0,2,5,,4,7,Michigan,Rd,963906,5.836,6.865,0,24.691292,5.8,4.5 +40420,1,0.262911,1,0,0,1,1,RON,4,7,Lapeer Connector/Water,RAMP,4506256,0,0.263,0,,1.09,4 +40432,1,0.433257,2,0,0,1,1,FCD,4,7,E I 94/Pine Grove,RAMP,4506262,0,0.433,0,,0.8,7.5 +40425,-1,0.866634,0,2,0,1,1,,4,7,W I 94,,967804,23.592,24.458,0,,0.8,7.5 +40428,-1,0.18804,0,1,0,1,2,,4,7,I 94/Lapeer Connector,,4506261,0.688,0.876,0,,0.8,7.5 +40424,1,0.492362,3,0,0,1,1,,4,7,E I 94,,967606,23.562,24.055,0,,0.8,7.5 +8417,0,0.318781,1,1,0,2,4,,3,7,Stone,St,964308,0.771,1.089,0,7.650749,6,4.5 +8454,0,3.85105,1,1,0,2,5,,5,7,Yale,Rd,972601,3.308,7.158,0,92.425192,3.7,5 +8488,0,2.005275,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,7.423,9.428,0,48.126589,5.55,5 +8533,0,1.462268,1,1,0,2,6,GRV,5,7,Foley,Rd,972503,4.46,5.922,0,35.094438,5.55,5 +8589,0,2.00652,1,1,0,2,6,GRV,5,7,Cribbins,Rd,976907,0,2.006,0,48.156475,5.55,5 +8624,0,0.720747,1,1,0,2,7,,5,7,Atkins,Rd,970404,0,0.721,0,17.297939,5.8,6 +8797,0,0.257013,2,2,0,2,4,,5,7,Wadhams,Rd,969901,15.082,15.339,0,6.168307,3,4 +9107,0,0.874338,1,1,0,2,5,,4,7,Range,Rd,968407,10.267,11.141,0,20.984103,5.8,4.5 +9113,0,1.99821,1,1,0,2,6,GRV,5,7,Sheridan,Rd,973005,0,1.998,0,47.957047,5.55,5 +9114,0,2.001559,1,1,0,2,5,,5,7,Breen,Rd,973003,0,2.001,0,48.037428,3.7,5 +9129,0,2.898219,1,1,0,2,5,,5,7,Belle River,Rd,972801,2.772,5.67,0,69.557253,3.7,5 +9164,0,1.738344,1,1,0,2,6,GRV,5,7,Burt,Rd,972704,7.249,8.987,0,41.720246,5.55,5 +9199,0,1.944013,1,1,0,2,6,GRV,5,7,Masters,Rd,972701,3.322,5.266,0,46.656301,5.55,5 +19611,1,0.626485,1,0,0,1,1,ROF,5,7,W I 69/Riley Center,RAMP,1847308,0,0.626,0,,2.24,5 +19614,1,0.399824,1,0,0,1,1,RON,5,7,Riley Center/E I 69,RAMP,1847306,0,0.4,0,,1.09,4 +20560,0,1.396131,1,1,0,2,5,,4,7,Capac,Rd,4210003,7.259,8.655,0,33.507148,5.8,4.5 +20616,1,0.50315,2,0,0,2,4,DIV,4,4,William P Rosso,Hwy,4205105,0.163,0.666,0,12.075594,4.5,4.5 +39862,-1,0.507413,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,2.613,3.121,0,12.177906,3.7,5 +21209,0,0.476711,1,1,0,2,5,,3,7,12th,Ave,4502623,0.02,0.497,0,11.441073,8,4.5 +21886,0,0.093328,1,1,0,2,5,,5,7,Taylor,Dr,4502796,1.977,2.07,0,2.239884,3.7,5 +24219,0,1.423643,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,9.298,10.721,0,34.167438,4.5,4.5 +25913,0,2.491761,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,59.802258,0.15,4 +25915,0,0.264133,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,6.339197,0.15,4 +25926,0,1.138337,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,27.320091,0.15,4 +25933,0,3.947806,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,94.747347,0.15,4 +25944,0,1.673987,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,40.175692,0.15,4 +25947,0,0.425912,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,10.221879,0.15,4 +25962,0,1.16202,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,27.888488,0.15,4 +25965,0,0.433723,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.409359,0.15,4 +26073,0,0.489657,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.751774,0.15,4 +26077,0,0.532132,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.771159,0.15,4 +26080,0,0.3837,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.20879,0.15,4 +26457,0,2.585455,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,62.050919,0.15,4 +26947,0,0.818162,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,19.635877,0.15,4 +29127,0,2.573853,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,61.772461,0.15,4 +29171,0,1.255165,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,30.123965,0.15,4 +29384,0,0.692139,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,16.611335,0.15,4 +29499,0,1.159806,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,27.835341,0.15,4 +98,0,0.151208,2,2,0,2,4,,4,3,13 Mile,Rd,607408,13.954,14.105,0,3.628985,4.5,4.5 +194,-1,2.347348,0,2,0,1,1,,3,3,W I 96,,639107,0,2.347,0,,0.58,7 +311,0,0.496184,2,2,0,2,3,,3,3,Haggerty,Rd,639005,1.542,2.038,0,11.908423,5,5 +312,1,2.079632,4,0,0,1,1,,3,3,E I 96,,639202,1.583,3.662,0,,0.58,7 +352,1,0.384891,1,0,0,1,1,ROF,4,3,E I 696/Orchard Lake,RAMP,640906,0,0.385,0,,2.24,5 +407,0,0.185241,1,1,0,2,5,,3,3,Shiawassee,,633209,1.098,1.283,0,4.445785,8,4.5 +414,0,0.246832,1,1,0,2,5,,4,3,Lone Pine,Rd,640302,0,0.247,0,5.923959,5.8,4.5 +451,0,0.315335,1,1,0,2,3,,4,3,Orchard Lake,Rd,634003,8.485,8.8,0,7.56804,3.7,5 +452,0,0.234389,1,1,0,2,4,,3,3,Halsted,Rd,639203,0.132,0.366,0,5.625338,6,4.5 +460,0,1.627014,1,1,0,2,4,,5,3,Seymour Lake,Rd,627107,2.573,4.199,0,39.048331,3,4 +632,0,0.205238,1,1,0,2,5,,3,3,Gill,Rd,632807,0.524,0.729,0,4.925709,8,4.5 +651,0,0.202325,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,1.431,1.633,0,4.85581,6,4.5 +737,0,0.30756,3,3,1,2,3,,3,3,Southfield,Rd,611304,4.192,4.5,0,7.381428,5,5 +849,0,0.237924,1,1,0,2,4,,3,3,10 Mile,Rd,633409,0.664,0.902,0,5.710178,6,4.5 +860,0,0.290545,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0.671,0.961,0,6.973068,5,5 +865,0,0.199324,1,1,0,2,4,,4,3,Farmington,Rd,634005,0,0.199,0,4.78378,4.5,4.5 +871,0,0.368601,1,1,0,2,4,,4,3,Inkster,Rd,636410,1.648,2.016,0,8.846414,4.5,4.5 +951,-1,0.428009,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.309,11.737,0,10.27221,5,5 +971,0,0.524298,2,2,1,2,3,,3,3,Novi,Rd,621910,2.487,3.011,0,12.583164,5,5 +1183,0,0.983078,1,1,0,2,4,,5,3,Clarkston,Rd,627307,3.083,4.066,0,23.593871,3,4 +1200,0,0.517852,1,1,1,2,4,,3,3,Hilton,,642306,0.972,1.49,0,12.428437,6,4.5 +1214,0,0.499937,1,1,0,2,4,,4,3,Cass Elizabeth,Rd,630806,1.609,2.109,0,11.998497,4.5,4.5 +1270,0,1.006444,1,1,0,2,5,,5,3,Waldon,Rd,627303,2.014,3.021,0,24.154664,3.7,5 +1365,-1,3.928684,0,3,0,1,1,,4,3,S I 75,,646106,25.692,29.619,0,,0.8,7.5 +1367,0,0.455246,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,7.632,8.087,0,10.925908,3.7,5 +1482,-1,0.577041,0,4,0,1,1,,3,3,S I 75,,646106,1.539,2.116,0,,0.58,7 +1491,1,0.337969,1,0,0,1,1,RON,4,3,S Orchard Lake/W I 696,RAMP,640907,0,0.338,0,,1.09,4 +1502,0,0.615602,1,1,0,2,5,,3,3,Freedom,Rd,633606,2.681,3.296,0,14.77445,8,4.5 +1516,0,0.491229,1,1,0,2,4,,4,3,11 Mile,Rd,634509,0.501,0.992,0,11.789506,4.5,4.5 +1626,0,0.694786,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,4.174,4.869,0,16.674863,3.7,5 +1640,0,0.306043,1,1,0,2,5,,3,3,Power,Rd,634001,0,0.306,0,7.345028,8,4.5 +1671,0,0.431637,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,1.576,2.008,0,10.359277,6,4.5 +1717,1,0.541862,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.184,11.726,0,13.004683,5,5 +1941,1,0.128476,3,0,0,2,5,,3,3,Halsted,Rd,633802,0,0.128,0,3.083426,8,4.5 +2018,1,0.463984,3,0,0,1,1,RFF,3,3,W I 96/E I 696,RAMP,634208,0,0.464,0,,0.58,7 +2054,0,0.182802,1,1,0,2,4,,3,3,Drake,Rd,633804,0.819,1.002,0,4.387258,6,4.5 +40010,-1,0.022116,0,2,0,2,3,,4,3,14 Mile,Rd,5499977,0.098,0.12,0,0.530791,3.7,5 +2091,0,0.257981,1,1,1,2,4,,4,3,Walnut Lake,Rd,622906,3.942,4.2,0,6.191535,4.5,4.5 +2103,0,0.180217,1,1,1,2,5,,3,3,Shiawassee,,633209,0.204,0.384,0,4.3252,8,4.5 +2137,0,0.395285,1,1,0,2,5,,3,3,Folsom,,634102,0.455,0.85,0,9.486851,8,4.5 +2227,0,0.198571,3,3,1,2,3,,3,3,Greenfield,Rd,648307,1.506,1.704,0,4.765699,5,5 +2243,0,0.206755,1,1,0,2,7,,3,3,Scotia,,648205,0.637,0.844,0,4.962122,7,4.5 +2266,1,3.892313,3,0,0,1,1,,4,3,N I 75,,647308,25.603,29.494,0,,0.8,7.5 +2301,1,0.566625,4,0,0,1,1,,3,3,N I 75,,647308,1.514,2.08,0,,0.58,7 +2322,1,0.416248,2,0,0,2,5,,3,3,Chrysler,Dr,646902,1.398,1.814,0,9.98996,8,4.5 +2379,0,0.167524,2,2,0,2,4,,3,3,John R,Rd,646806,1.336,1.503,0,4.020573,6,4.5 +2402,-1,0.428505,0,3,0,2,5,,3,3,Chrysler,Dr,646702,1.395,1.824,0,10.284117,8,4.5 +2456,1,1.413584,2,0,0,1,2,,3,3,E M 5,,657303,16.492,17.905,0,,0.58,7 +2618,0,0.429235,1,1,1,2,4,,4,3,Lafayette,St,656507,2.058,2.487,0,10.301628,4.5,4.5 +2688,0,0.996429,1,1,0,2,5,,5,3,Oak Hill,Rd,651801,8.361,9.358,0,23.914305,3.7,5 +2735,1,0.562431,2,0,0,1,2,,3,3,E M 5,,657303,13.622,14.184,0,,0.58,7 +2785,0,0.633083,1,1,0,2,3,,5,3,Milford,Rd,656804,0,0.633,0,15.193989,1.7,4 +2834,0,0.560576,1,1,0,2,5,,4,3,Martindale,Rd,656802,0,0.56,0,13.453825,5.8,4.5 +2896,-1,3.867858,0,2,0,1,2,,3,3,W M 5,,657304,14.133,18,0,,0.58,7 +3216,0,0.248418,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.997,2.246,0,5.962032,6,4.5 +3227,0,0.186274,1,1,1,2,4,,3,3,Evergreen,Rd,666003,1.509,1.695,0,4.470569,6,4.5 +3311,0,0.467013,1,1,0,2,5,,4,3,Taft,Rd,656608,1.998,2.465,0,11.208316,5.8,4.5 +3324,0,0.65931,1,1,0,2,4,,4,3,Maybee,Rd,653405,2.216,2.875,0,15.823442,4.5,4.5 +3339,0,0.442166,1,1,0,2,4,,4,3,Beck,Rd,656605,2.004,2.446,0,10.611985,4.5,4.5 +3417,0,0.580011,1,1,0,2,3,,3,3,10 Mile,Rd,656510,10.82,11.4,0,13.92027,5,5 +3443,0,0.581993,2,2,1,2,3,,4,3,Highland,Rd,648906,16.996,17.578,0,13.96784,3.7,5 +3456,0,0.188281,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,7.875,8.063,0,4.518739,3.7,5 +3507,-1,0.23632,0,2,0,1,2,,3,3,W M 5,,657304,13.897,14.133,0,,0.58,7 +3656,1,0.098364,1,0,0,1,2,ROF,3,3,N M 10/10 Mile,RAMP,687802,0,0.098,0,,2.24,5 +3710,0,0.595215,2,2,1,2,4,,3,3,Lahser,Rd,685510,1.423,2.018,0,14.285172,6,4.5 +3718,0,0.393409,1,1,0,2,5,,4,3,Beech,Rd,684801,1.622,2.016,0,9.441817,5.8,4.5 +3821,0,0.25896,2,2,1,2,3,,4,3,Maple,Rd,683906,6.027,6.285,0,6.215032,3.7,5 +3888,-1,0.429984,0,3,0,1,1,,3,4,W I 94,,798502,0.983,1.413,0,,0.58,7 +3940,1,0.981491,3,0,0,1,2,,3,3,S M 10,,710010,6.952,7.934,0,,0.58,7 +3993,1,0.778964,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,1.018,1.797,0,18.695146,5,5 +4053,-1,0.961201,0,3,0,1,2,,3,3,N M 10,,710102,6.934,7.895,0,,0.58,7 +4077,0,0.353298,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,8.51,8.863,0,8.479141,4.5,4.5 +4104,-1,0.653784,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,1.388,2.041,0,15.690823,5,5 +4154,0,0.221001,2,2,1,2,3,,3,4,Harper,Ave,798408,1.121,1.342,0,5.304018,5,5 +4212,1,0.238504,1,0,0,1,1,ROF,3,4,W I 94/9 Mile,RAMP,801501,0,0.239,0,,2.24,5 +4315,0,0.387178,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,1.002,1.389,0,9.292275,6,4.5 +4337,1,0.439628,3,0,0,1,1,,3,4,E I 94,,798501,0.982,1.421,0,,0.58,7 +4473,1,0.319508,4,0,0,1,1,,4,3,E I 696,,710701,4.251,4.57,0,,0.8,7.5 +4497,1,0.266948,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.779,3.046,0,6.406749,8,4.5 +4570,1,0.218743,1,0,0,1,1,RON,3,4,9 Mile/E I 94,RAMP,800909,0,0.219,0,,1.09,4 +4764,-1,0.320381,0,4,0,1,1,,4,3,W I 696,,710702,4.315,4.635,0,,0.8,7.5 +4772,0,0.248344,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.272,1.521,0,5.96026,5,5 +4773,0,0.65105,2,2,1,2,3,,4,3,Walton,Blvd,696509,0.629,1.28,0,15.625201,3.7,5 +4827,1,0.119623,1,0,0,1,2,RON,3,3,10 Mile/S M 10,RAMP,710509,0,0.12,0,,1.09,4 +4871,0,0.24938,1,1,0,2,4,,3,4,Hoover,Rd,798909,1.293,1.543,0,5.985127,6,4.5 +4909,0,0.242467,2,2,1,2,4,,3,4,Ryan,Rd,799302,1.283,1.526,0,5.819197,6,4.5 +5024,1,0.806493,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,1.236,2.042,0,19.355839,5,5 +5029,0,0.83398,2,2,1,2,3,,4,3,Dixie,Hwy,689103,6.205,7.038,0,20.015525,3.7,5 +5064,0,0.33062,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,1.196,1.526,0,7.934891,5,5 +5310,0,0.44343,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,1.169,1.612,0,10.642327,5,5 +5696,0,0.661843,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,0.16,0.821,0,15.884225,3.7,5 +5701,1,0.20225,1,0,0,1,2,ROF,5,8,S US 23/Silver Lake,RAMP,932007,0,0.202,0,,2.24,5 +5858,0,0.381141,2,2,0,2,5,,3,4,Greater Mack,Ave,809106,1.142,1.523,0,9.147386,8,4.5 +5911,1,0.187769,1,0,0,1,2,RON,5,8,Silver Lake/N US 23,RAMP,931609,0,0.188,0,,1.09,4 +5918,0,1.162424,1,1,0,2,4,,5,8,Whitmore Lake,Rd,932204,2.989,4.151,0,27.898175,3,4 +6179,1,0.4207,2,0,0,1,2,,5,8,N US 23,,931510,2.616,3.036,0,,1.02,7 +6306,0,2.072463,1,1,0,2,6,,5,8,Fieldcrest,Dr,4105311,1.762,3.833,0,49.739113,5.8,6 +6339,0,0.282662,1,1,0,2,4,,3,4,Hayes,Ave,808510,0,0.283,0,6.783893,6,4.5 +6489,-1,0.391801,0,2,0,1,2,,5,8,S US 23,,932002,2.647,3.038,0,,1.02,7 +6552,1,0.322449,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,1.145,1.467,0,7.738786,5,5 +6781,0,0.612301,2,2,0,2,5,,3,4,Sherwood,Ave,804507,1.187,1.799,0,14.695214,8,4.5 +6920,1,0.503122,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,11.35,11.853,0,12.074919,5,5 +7207,0,0.575306,1,1,0,2,4,,5,8,Chilson,Rd,932808,0,0.575,0,13.807337,3,4 +7210,0,0.733222,1,1,0,2,4,,5,8,Pettysville,Rd,932802,0,0.733,0,17.597334,3,4 +7396,0,0.201112,1,1,0,2,5,,5,8,Rushton,Rd,942101,2.468,2.669,0,4.826699,3.7,5 +7412,0,0.696881,1,1,0,2,5,,5,8,Silverside,Dr,942404,0.538,1.235,0,16.72515,3.7,5 +7438,0,0.248432,1,1,0,2,5,,5,8,Rickett,Rd,940304,0,0.248,0,5.962367,3.7,5 +7658,0,0.737201,1,1,0,2,6,,5,8,Marshall,Rd,942010,2.012,2.749,0,17.692821,5.8,6 +7873,0,0.97053,1,1,0,2,5,,5,8,Winans Lake,Rd,940105,0.621,1.591,0,23.292712,3.7,5 +7888,0,1.111605,1,1,0,2,5,,5,8,Doane,Rd,942306,0,1.111,0,26.67853,3.7,5 +7912,0,1.094403,1,1,0,2,5,,5,8,Hamburg,Rd,940101,0,1.094,0,26.265678,3.7,5 +8675,0,0.354836,1,1,0,2,4,,4,6,Nadeau,Rd,1225701,0,0.355,0,8.516076,4.5,4.5 +8866,0,0.321275,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,0.853,1.174,0,7.710608,3.7,5 +9295,1,0.391021,1,0,0,1,1,RON,5,6,Carleton Rockwood/S I 275,RAMP,1228306,0,0.391,0,,1.09,4 +9303,0,0.634697,1,1,0,2,5,,5,6,Newport,Rd,1228304,1.056,1.69,0,15.232717,3.7,5 +9316,0,1.65749,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,2.363,4.02,0,39.779769,3,4 +9325,1,0.394013,1,0,0,1,1,RON,5,6,Carleton Rockwood/N I 275,RAMP,1228105,0,0.394,0,,1.09,4 +9334,1,0.720813,3,0,0,1,1,,5,6,N I 275,,1228001,5.85,6.571,0,,1.02,7 +11282,1,0.800599,3,0,0,1,1,,4,2,E I 94,,1576405,9.371,10.171,0,,0.8,7.5 +12530,1,0.972531,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.936,2.908,0,23.340737,3.7,5 +13938,-1,0.860795,0,3,0,1,1,,4,2,W I 94,,1588802,9.425,10.285,0,,0.8,7.5 +14570,0,0.245636,2,2,1,2,3,,3,2,Ford,Rd,1595510,9.291,9.537,0,5.89527,5,5 +15799,1,0.378145,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,9.883,10.261,0,9.075488,5,5 +16069,1,0.300249,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,5.443,5.743,0,7.205965,6,4.5 +16087,0,0.572659,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,3.312,3.884,0,13.743822,6,4.5 +16123,0,0.224776,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,9.278,9.502,0,5.394633,6,4.5 +16130,1,0.477066,4,0,0,1,1,,3,2,E I 96,,1606201,4.11,4.587,0,,0.58,7 +16248,0,0.424688,1,1,0,2,4,,3,2,Palmer,Rd,1607406,6.29,6.715,0,10.192508,6,4.5 +16392,0,0.574862,1,1,0,2,4,,5,2,Sibley,Rd,1607308,1.995,2.57,0,13.796681,3,4 +16430,0,1.99413,1,1,0,2,5,,5,2,King,Rd,1607306,2.358,4.352,0,47.859109,3.7,5 +16594,-1,0.483268,0,4,0,1,1,,3,2,W I 96,,1606503,3.872,4.355,0,,0.58,7 +16917,0,0.507517,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,9.836,10.343,0,12.1804,5,5 +17478,0,0.509748,1,1,0,2,5,,3,2,Chicago,Rd,1696207,1.01,1.52,0,12.23396,8,4.5 +17524,0,1.000976,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,2.662,3.663,0,24.023435,4.5,4.5 +17695,1,0.247362,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,2.486,2.733,0,5.936677,8,4.5 +17888,0,0.506216,1,1,0,2,5,,5,2,West,Rd,1674210,0,0.506,0,12.149192,3.7,5 +17976,0,0.499717,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,9.542,10.041,0,11.993209,5,5 +17985,0,0.451595,2,2,0,2,4,,3,2,Van Born,Rd,1670203,3.283,3.734,0,10.838269,6,4.5 +17996,0,0.252287,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,2.109,2.361,0,6.054886,8,4.5 +18300,0,0.499374,1,1,0,2,4,,3,2,Joy,Rd,1677810,0.041,0.54,0,11.984972,6,4.5 +18304,0,0.252486,1,1,0,2,5,,3,2,Avondale,Ave,1686907,1.953,2.205,0,6.059674,8,4.5 +18375,0,0.559825,1,1,0,2,5,,3,2,Cowan,Rd,1669808,1.028,1.587,0,13.435809,8,4.5 +18415,0,0.196433,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,0.746,0.942,0,4.714388,8,4.5 +18564,0,0.490335,1,1,0,2,5,,5,2,Huron River,Dr,1670406,10.779,11.27,0,11.76803,3.7,5 +18756,0,1.364395,1,1,0,2,5,,4,2,Beverly,Rd,1664409,1.078,2.442,0,32.745483,5.8,4.5 +18769,0,0.491355,1,1,0,2,4,,4,2,Wick,Rd,1682705,2.525,3.016,0,11.792527,4.5,4.5 +19060,0,0.947545,1,1,0,2,5,,5,2,Willow,Rd,1670406,8.518,9.466,0,22.741083,3.7,5 +19063,0,1.352539,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,7.093,8.445,0,32.460932,5,5 +19205,0,0.625568,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,3.349,3.974,0,15.013637,5,5 +19774,0,0.378136,2,2,1,2,4,,3,3,Grand River,,4104142,17.215,17.593,0,9.075269,6,4.5 +19778,0,0.238007,1,1,1,2,4,,3,3,Grand River,,4104142,16.187,16.425,0,5.712161,6,4.5 +19824,0,1.169724,1,1,0,2,3,,4,3,Commerce,Rd,4104140,16.431,17.6,0,28.073376,3.7,5 +20181,-1,0.738915,0,3,0,1,1,,5,6,S I 275,,4301662,5.373,6.111,0,,1.02,7 +20311,-1,0.329641,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,1.109,1.439,0,7.911375,5,5 +20404,-1,0.239192,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.802,2.041,0,5.740614,8,4.5 +20408,1,0.341884,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,1.276,1.618,0,8.205211,6,4.5 +20496,1,0.342389,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,0.695,1.038,0,8.217333,6,4.5 +20709,0,0.689003,1,1,0,2,5,,4,6,Vivian,Rd,4301667,0.756,1.444,0,16.53607,5.8,4.5 +20871,0,1.396389,2,2,1,2,3,,5,6,Telegraph,Rd,4300001,20.172,21.568,0,33.513348,1.7,4 +20916,0,0.368767,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,5.394,5.763,0,8.850415,5,5 +21020,0,0.488611,1,1,0,2,5,,3,3,Berg,Rd,4410215,1.583,2.072,0,11.726674,8,4.5 +21038,0,1.255422,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,4.371,5.627,0,30.130134,3,4 +21899,0,0.505191,1,1,0,2,4,,4,3,Wixom,Rd,4413401,0,0.505,0,12.124575,4.5,4.5 +22098,0,0.256118,1,1,1,2,5,,3,3,Ridge,Rd,4412705,1.476,1.732,0,6.146826,8,4.5 +22240,-1,0.759418,0,2,0,2,3,DIV,4,2,Eureka,Rd,4703131,0.955,1.714,0,18.226031,3.7,5 +22480,-1,0.299971,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0.699,0.999,0,7.199296,6,4.5 +22519,-1,0.957039,0,2,0,2,5,DIV,4,2,Smith,Rd,4706175,0.016,0.973,0,22.968945,5.8,4.5 +23077,-1,0.422893,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,4.474,4.897,0,10.149429,8,4.5 +23242,-1,0.385575,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,9.851,10.236,0,9.253788,5,5 +23567,1,0.956884,2,0,0,2,5,DIV,4,2,Smith,Rd,4706176,0.019,0.976,0,22.965222,5.8,4.5 +23621,1,0.40726,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,4.455,4.862,0,9.774242,8,4.5 +24038,0,0.41238,2,2,1,2,3,,3,2,Warren,Rd,4710470,9.537,9.949,0,9.897123,5,5 +24073,-1,0.781255,0,2,0,2,3,DIV,4,2,John Dingell,Dr,4711337,0.791,1.572,0,18.750129,3.7,5 +24099,1,0.805548,2,0,0,2,3,DIV,4,2,John Dingell,Dr,4711336,0.146,0.951,0,19.333148,3.7,5 +24161,0,0.335221,2,2,1,2,3,,3,4,Jefferson,Ave,4718263,1.376,1.711,0,8.045292,5,5 +24246,-1,0.247226,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711017,0.503,0.75,0,5.933414,8,4.5 +24484,0,1.661376,1,1,0,2,4,,4,2,I 94 South Service Drive,,4711342,0,1.661,0,39.87303,4.5,4.5 +24866,0,0.22606,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.425431,0.15,4 +24869,0,0.279081,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.697944,0.15,4 +24872,0,0.512079,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.289895,0.15,4 +24881,0,0.502425,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.058203,0.15,4 +24884,0,0.520506,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.492147,0.15,4 +25129,0,0.796245,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,19.109881,0.15,4 +25142,0,0.268888,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.453308,0.15,4 +25143,0,0.475537,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.41288,0.15,4 +25148,0,0.894496,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.467896,0.15,4 +25157,0,0.352608,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.462583,0.15,4 +25254,0,0.48836,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.720633,0.15,4 +25258,0,0.269351,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.464413,0.15,4 +25262,0,0.505174,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.124174,0.15,4 +25276,0,0.24735,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.9364,0.15,4 +25431,0,0.855923,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,20.542143,0.15,4 +25434,0,0.284276,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.822614,0.15,4 +25474,0,0.577425,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.858194,0.15,4 +25627,0,0.447781,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.746742,0.15,4 +25784,0,0.49537,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.888871,0.15,4 +25976,0,1.400846,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.620316,0.15,4 +25980,0,1.014759,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.354226,0.15,4 +25983,0,0.981849,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.564376,0.15,4 +25987,0,0.514608,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.350597,0.15,4 +25995,0,0.252097,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.050333,0.15,4 +25998,0,0.509938,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.238512,0.15,4 +25999,0,0.499191,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.980594,0.15,4 +26001,0,0.463393,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.121431,0.15,4 +26009,0,0.248936,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.974452,0.15,4 +26082,0,0.980217,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.525203,0.15,4 +26090,0,1.151845,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.644291,0.15,4 +26114,0,0.597507,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.340177,0.15,4 +26120,0,0.365312,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.767489,0.15,4 +26122,0,1.514904,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.357694,0.15,4 +26126,0,0.401535,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,9.636851,0.15,4 +26134,0,0.24646,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.915051,0.15,4 +26142,0,0.826646,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.839506,0.15,4 +26150,0,0.219137,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.259289,0.15,4 +26157,0,0.276993,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.647836,0.15,4 +26161,0,0.250508,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.012193,0.15,4 +26169,0,0.464988,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.159708,0.15,4 +26171,0,0.446978,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.727468,0.15,4 +26179,0,0.483883,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.613197,0.15,4 +26181,0,0.297314,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.135537,0.15,4 +26184,0,0.437513,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.500304,0.15,4 +26189,0,0.742202,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,17.812858,0.15,4 +26191,0,0.211948,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.086749,0.15,4 +26195,0,0.230141,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.523393,0.15,4 +26207,0,0.328756,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.890133,0.15,4 +26209,0,0.419515,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.068362,0.15,4 +26212,0,0.501857,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.044569,0.15,4 +26216,0,0.248339,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.96013,0.15,4 +26220,0,0.275248,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.605964,0.15,4 +26221,0,0.552549,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.26118,0.15,4 +26228,0,0.5375,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.900001,0.15,4 +26232,0,0.502209,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.053022,0.15,4 +26823,0,0.477344,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.456257,0.15,4 +27139,0,1.039639,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.95133,0.15,4 +27278,0,0.698767,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.77042,0.15,4 +27344,0,1.200825,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.819799,0.15,4 +27413,0,0.531821,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.763696,0.15,4 +27504,0,0.553624,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.286981,0.15,4 +28060,0,0.494223,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.861353,0.15,4 +28577,0,1.672071,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,40.129698,0.15,4 +28882,0,0.44768,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.744326,0.15,4 +29661,0,0.436917,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.486019,0.15,4 +29667,0,0.345529,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.292698,0.15,4 +29698,0,0.291215,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.98917,0.15,4 +29782,0,1.126363,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.032719,0.15,4 +29918,0,0.580609,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.934605,0.15,4 +29921,0,0.313097,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.514326,0.15,4 +30276,0,0.629412,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.105881,0.15,4 +31070,0,0.231412,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.553882,0.15,4 +31204,0,0.490095,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.762288,0.15,4 +31207,0,0.654402,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.705647,0.15,4 +31209,0,0.37664,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.039372,0.15,4 +31211,0,0.276816,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.64359,0.15,4 +31212,0,0.292019,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.008458,0.15,4 +31214,0,0.268484,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.443619,0.15,4 +31215,0,0.274754,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.594106,0.15,4 +31275,0,0.940652,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,22.575654,0.15,4 +31277,0,0.425119,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,10.202855,0.15,4 +31296,0,0.611388,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,14.67332,0.15,4 +31302,0,0.744149,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.85958,0.15,4 +31303,0,0.188138,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.515303,0.15,4 +31308,0,0.514307,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.34337,0.15,4 +31311,0,0.250576,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.013831,0.15,4 +31315,0,0.528525,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.684594,0.15,4 +31327,0,0.50486,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.116641,0.15,4 +31328,0,0.503745,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.089883,0.15,4 +31331,0,0.19337,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.64088,0.15,4 +31335,0,0.498832,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.971963,0.15,4 +31341,0,0.50181,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.04344,0.15,4 +31342,0,0.501076,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.025831,0.15,4 +31493,0,0.365975,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.783408,0.15,4 +31556,0,0.580823,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.939741,0.15,4 +31557,0,0.597305,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.335327,0.15,4 +31811,0,0.508082,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.193963,0.15,4 +32478,0,0.711455,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.074908,0.15,4 +33789,0,0.283479,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.803502,0.15,4 +33942,0,0.719456,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.266953,0.15,4 +2567,0,0.798635,1,1,0,2,4,,5,5,8 Mile,Rd,656509,2.037,2.835,0,19.167249,3,4 +3492,0,0.433744,1,1,0,2,4,,5,3,10 Mile,Rd,656510,1.789,2.222,0,10.409858,3,4 +8505,0,2.655759,1,1,0,2,5,,5,6,Plank,Rd,1226001,2.226,4.881,0,63.738218,3.7,5 +8710,0,1.507788,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,2.774,4.281,0,36.186908,3,4 +8978,0,1.034757,1,1,0,2,4,,5,6,Custer,Rd,1223803,7.677,8.711,0,24.834174,3,4 +9475,1,1.176343,3,0,0,1,1,,4,5,E I 94,,1426109,27.666,28.841,0,,0.8,7.5 +9534,0,1.667373,1,1,0,2,4,,5,5,Willis,Rd,1427410,6.553,8.219,0,40.016945,3,4 +9581,0,0.227553,1,1,0,2,3,,4,5,Michigan,Ave,1427301,16.678,16.905,0,5.461264,3.7,5 +9591,-1,0.122781,0,4,0,2,3,,2,5,Cross,St,1428902,1.876,1.999,0,2.946746,6,5 +9646,0,0.073554,1,1,0,2,5,,3,5,Congress,St,1428004,0.586,0.659,0,1.765293,8,4.5 +9772,0,0.070688,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.166,1.236,0,1.696507,5,5 +9868,1,0.154158,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.531,6.686,0,3.69979,6,5 +9898,0,1.001532,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,24.006,25.007,0,24.036778,3,4 +9973,1,0.37037,1,0,0,1,2,ROF,4,5,S US 23/Michigan,RAMP,1427606,0,0.37,0,,2.24,5 +10212,1,0.368607,1,0,0,1,2,ROF,4,5,N US 23/Michigan,RAMP,1427607,0,0.368,0,,2.24,5 +10213,0,0.236324,1,1,0,2,5,,3,5,Harriet,St,1428508,0,0.236,0,5.671768,8,4.5 +10214,-1,1.144662,0,3,0,1,1,,3,5,W I 94,,1426110,27.687,28.831,0,,0.58,7 +10300,0,0.44404,1,1,0,2,4,,4,5,State,Rd,1427508,1.195,1.638,0,10.656954,4.5,4.5 +10309,0,1.468952,1,1,0,2,5,,5,6,Bigelow,Rd,1235101,0.802,2.27,0,35.254858,3.7,5 +10315,0,3.121423,1,1,0,2,5,,5,6,Ostrander,Rd,1234904,0.201,3.321,0,74.914152,3.7,5 +10461,0,0.455543,1,1,0,2,4,,4,5,Stony Creek,Rd,1431208,10.914,11.369,0,10.933038,4.5,4.5 +10463,0,0.837051,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,9.907,10.744,0,20.089215,5.8,4.5 +10478,0,1.007252,1,1,0,2,5,,5,5,Willow,Rd,1431207,4.131,5.137,0,24.174036,3.7,5 +10499,1,0.599797,2,0,0,1,2,,4,5,N US 23,,1431202,8.259,8.858,0,,0.8,7.5 +10786,0,0.509577,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,8.65,9.16,0,12.229837,3,4 +10834,0,0.531108,1,1,1,2,5,,4,5,Lohr,Rd,1436708,0,0.531,0,12.746601,5.8,4.5 +10838,0,1.799294,1,1,0,2,7,,5,5,7 Mile,Rd,1451104,0.048,1.847,0,43.183067,5.8,6 +10854,0,0.950882,1,1,0,2,5,,4,5,Munger,Rd,1438404,2.029,2.98,0,22.821161,5.8,4.5 +10887,0,0.234155,1,1,0,2,4,,4,5,Bridge,Rd,1438202,0,0.234,0,5.619718,4.5,4.5 +10974,0,1.014815,1,1,0,2,5,,5,5,Angle,Rd,1447103,0,1.014,0,24.355551,3.7,5 +11007,0,0.502165,1,1,0,2,5,,4,5,Huron River,Dr,1438110,2.228,2.73,0,12.051959,5.8,4.5 +11009,0,0.682528,1,1,0,2,4,,4,5,Textile,Rd,1438102,2.449,3.132,0,16.380672,4.5,4.5 +37295,1,0.088532,2,0,0,2,4,,4,5,Geddes,Rd,1448104,5.429,5.517,0,2.12477,4.5,4.5 +11183,0,0.864732,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,4.935,5.799,0,20.75357,3.7,5 +11234,0,1.575376,1,1,0,2,5,,5,5,Ford,Rd,1431906,0,1.575,0,37.809022,3.7,5 +11242,0,0.525875,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,2.166,2.692,0,12.621009,3,4 +11264,0,0.350881,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.148,8.499,0,8.421144,4.5,4.5 +11280,0,0.323772,1,1,0,2,5,,5,5,Cherry Hill,Rd,1436303,0.639,0.963,0,7.770516,3.7,5 +11332,0,0.776182,1,1,0,2,5,GRV,4,5,Merritt,Rd,1438204,2.468,3.244,0,18.628361,6.55,4.5 +11363,0,0.386953,2,2,1,2,4,,4,5,Carpenter,Rd,1431609,8.081,8.468,0,9.28687,4.5,4.5 +11458,-1,0.589553,0,2,0,1,2,,4,5,S US 23,,1431603,8.221,8.81,0,,0.8,7.5 +11471,-1,0.573814,0,2,0,2,3,DIV,5,5,W M 153,,1431602,1.01,1.584,0,13.77153,1.7,4 +11487,1,0.559442,2,0,0,2,3,DIV,5,5,E M 153,,1431510,0.837,1.396,0,13.426596,1.7,4 +40102,-1,0.039624,0,1,0,2,4,,4,5,Stony Creek,Rd,4606156,0,0.04,0,0.95097,4.5,4.5 +11559,-1,4.081074,0,2,0,1,2,,5,5,W M 14,,1431410,5.756,9.836,0,,1.02,7 +11590,1,3.566244,2,0,0,1,2,,5,5,E M 14,,1431408,6.058,9.623,0,,1.02,7 +16698,-1,1.906644,0,3,0,1,1,,4,2,S I 275,,1607610,7.348,9.254,0,,0.8,7.5 +16770,1,1.587923,3,0,0,1,1,,4,2,N I 275,,1607208,7.303,8.89,0,,0.8,7.5 +17276,0,0.765289,1,1,0,2,5,,4,2,Hannan,Rd,1710309,2.726,3.491,0,18.366948,5.8,4.5 +17818,0,0.378191,1,1,0,2,4,,4,2,Huron River,Dr,1673810,7.684,8.062,0,9.076595,4.5,4.5 +18511,0,0.81397,1,1,0,2,4,,4,2,Haggerty,Rd,1670810,3.569,4.383,0,19.535282,4.5,4.5 +19181,0,0.516247,1,1,0,2,5,,4,2,High,St,1675906,0,0.516,0,12.389932,5.8,4.5 +20643,0,1.016355,1,1,0,2,5,,4,5,Platt,Rd,4302160,8.119,9.135,0,24.392515,5.8,4.5 +20728,0,0.81776,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,3.176,3.994,0,19.626237,5.55,5 +21856,0,1.174712,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,6.566,7.741,0,28.193084,6.55,4.5 +21866,0,0.386984,2,2,0,2,4,,3,5,Huron River,Dr,4603250,1.67,2.057,0,9.287609,6,4.5 +21990,0,0.390084,1,1,0,2,5,,4,5,Tuttle Hill,Rd,4603029,1.674,2.064,0,9.362013,5.8,4.5 +22052,0,0.578768,1,1,0,2,4,,4,5,Maple,Rd,4603041,0,0.579,0,13.890428,4.5,4.5 +22984,0,0.351294,1,1,0,2,4,,4,2,Main,St,4705581,0.21,0.561,0,8.431054,4.5,4.5 +23568,0,0.56502,1,1,0,2,4,,4,2,Huron River,Dr,4705582,0.024,0.588,0,13.560483,4.5,4.5 +24499,0,1.111779,1,1,0,2,3,,4,2,Wayne,Rd,4719470,0,1.111,0,26.682687,3.7,5 +25020,0,1.037543,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.901031,0.15,4 +25465,0,0.645594,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.494245,0.15,4 +25466,0,0.619378,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.865077,0.15,4 +25469,0,0.742852,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.828439,0.15,4 +25471,0,0.997296,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.935102,0.15,4 +25478,0,1.179249,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.301983,0.15,4 +25480,0,0.528613,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.686718,0.15,4 +25483,0,1.020245,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.485885,0.15,4 +26237,0,2.110651,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,50.655624,0.15,4 +26238,0,1.053969,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.295259,0.15,4 +26240,0,1.478037,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.472899,0.15,4 +26243,0,0.449122,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.778931,0.15,4 +26249,0,0.908756,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.81015,0.15,4 +26250,0,0.880946,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.142709,0.15,4 +26251,0,0.221358,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.312581,0.15,4 +26252,0,0.571184,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.708416,0.15,4 +26254,0,0.860255,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.646129,0.15,4 +26257,0,0.574846,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.796309,0.15,4 +26264,0,0.281034,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.744809,0.15,4 +26265,0,0.246571,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.917702,0.15,4 +26268,0,0.36573,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.777509,0.15,4 +26269,0,1.095272,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,26.286521,0.15,4 +26272,0,0.305592,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.334213,0.15,4 +26275,0,0.249372,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.98493,0.15,4 +26279,0,1.568753,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.650078,0.15,4 +26287,0,0.147536,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.540864,0.15,4 +26292,0,0.326401,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.833635,0.15,4 +26303,0,1.513644,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.327453,0.15,4 +26308,0,0.23252,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.580474,0.15,4 +26332,0,2.102644,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,50.463449,0.15,4 +26349,0,1.520472,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.491338,0.15,4 +26775,0,0.37664,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.03936,0.15,4 +26841,0,1.005957,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.142957,0.15,4 +29511,0,1.47199,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.327763,0.15,4 +30039,0,0.250908,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.021792,0.15,4 +30078,0,0.24954,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.988951,0.15,4 +30081,0,0.213996,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.135896,0.15,4 +30103,0,2.024102,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,48.578447,0.15,4 +31142,0,0.816004,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.584091,0.15,4 +31349,0,1.492712,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.8251,0.15,4 +31350,0,2.049907,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,49.197767,0.15,4 +31355,0,0.396933,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.526382,0.15,4 +31361,0,0.744834,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.876022,0.15,4 +31370,0,0.524867,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.596811,0.15,4 +31373,0,0.2831,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.794411,0.15,4 +32432,0,0.340788,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.178909,0.15,4 +33601,0,2.933542,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,70.405008,0.15,4 +7989,0,2.771955,1,1,0,2,6,GRV,5,6,County Line,Hwy,950002,6.522,9.293,0,66.52692,5.55,5 +8747,0,2.00889,1,1,0,2,7,,5,6,Milwaukee,Rd,1223805,0,2.008,0,48.213364,5.8,6 +8809,0,1.419082,1,1,0,2,4,,5,6,Tecumseh,St,1223803,0,1.419,0,34.057958,3,4 +8902,1,2.957789,2,0,0,1,2,,5,6,N US 23,,1223505,22.197,25.153,0,,1.02,7 +8925,-1,2.795994,0,2,0,1,2,,5,6,S US 23,,1223504,22.163,24.958,0,,1.02,7 +8928,0,1.997279,1,1,0,2,7,,5,6,Cone,Rd,1223807,0,1.997,0,47.934703,5.8,6 +9167,0,1.463509,1,1,0,2,5,,5,6,Plank,Rd,1226001,0.763,2.226,0,35.124207,3.7,5 +9221,0,1.05664,1,1,0,2,6,,5,6,Brewer,Rd,1233507,0,1.056,0,25.359364,5.8,6 +9986,0,3.013315,1,1,0,2,5,,5,6,Wabash,Rd,1239109,0,3.012,0,72.319565,3.7,5 +10322,0,1.959258,1,1,0,2,4,,5,5,Willis,Rd,1427410,0.221,2.179,0,47.022191,3,4 +10374,0,0.717582,1,1,0,2,3,,4,5,Michigan,Ave,1427301,12.55,13.267,0,17.221979,3.7,5 +10831,0,1.650955,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,2.434,4.085,0,39.622928,3.7,5 +10905,0,0.973961,1,1,0,2,5,GRV,5,5,Mooreville,Rd,1432907,3.172,4.145,0,23.375067,5.55,5 +10917,0,0.292152,1,1,0,2,4,,4,5,Textile,Rd,1432903,6.014,6.306,0,7.011642,4.5,4.5 +10931,0,1.395816,1,1,0,2,5,,5,5,Ridge,Rd,1432807,0,1.395,0,33.499592,3.7,5 +20706,0,3.008981,1,1,0,2,5,,5,6,Dennison,Rd,4301492,8.52,11.528,0,72.215544,3.7,5 +21258,0,0.568783,1,1,0,2,4,,5,5,Bemis,Rd,4604906,0.758,1.327,0,13.650783,3,4 +25484,0,1.700822,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.819728,0.15,4 +25489,0,0.757068,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.169626,0.15,4 +25490,0,0.80001,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,19.200245,0.15,4 +30664,0,2.969204,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,71.260906,0.15,4 +30665,0,2.610366,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,62.648792,0.15,4 +31379,0,2.76002,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,66.240475,0.15,4 +34045,0,1.833227,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34046,0,1.316796,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34089,0,1.235217,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34090,0,1.469399,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7993,0,1.124949,1,1,0,2,6,,5,6,County Line,Hwy,950002,3.39,4.515,0,26.998764,5.8,6 +7995,0,2.219478,1,1,0,2,5,,5,6,County Line,Hwy,950002,0,2.219,0,53.267469,3.7,5 +34044,0,1.406335,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34087,0,1.0549,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7742,0,1.171771,1,1,0,2,6,,5,6,County Line,Hwy,950002,2.219,3.39,0,28.122494,5.8,6 +34088,0,1.346401,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7740,0,1.506364,1,1,0,2,6,,5,6,County Line,Hwy,950002,4.515,6.02,0,36.152744,5.8,6 +7250,0,0.502271,1,1,0,2,6,GRV,5,6,County Line,Hwy,950002,6.02,6.522,0,12.054502,5.55,5 +9618,0,1.471069,1,1,1,2,3,,5,5,Michigan,Ave,1427301,6.204,7.674,0,35.305661,1.7,4 +10326,0,1.625103,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,3.006,4.631,0,39.002483,5.55,5 +10328,0,1.159346,1,1,0,2,5,,5,5,Arkona,Rd,1427305,4.451,5.61,0,27.824304,3.7,5 +10394,0,2.014877,1,1,0,2,3,,5,5,Michigan,Ave,1427301,7.674,9.688,0,48.357038,1.7,4 +10908,0,3.172847,1,1,0,2,5,GRV,5,5,Mooreville,Rd,1432907,0,3.172,0,76.148323,5.55,5 +10955,0,0.909752,1,1,0,2,5,,5,5,Macon,Rd,1432708,5.029,5.939,0,21.83406,3.7,5 +10972,0,1.214781,1,1,0,2,6,GRV,5,5,Macon,Rd,1432708,2.409,3.623,0,29.154748,5.55,5 +10990,0,1.501672,1,1,0,2,6,GRV,5,5,Saline Waterworks,Rd,1432706,3.997,5.498,0,36.040129,5.55,5 +21613,0,3.417028,1,1,0,2,5,,5,5,Austin,Rd,4604910,8.614,12.03,0,82.008677,3.7,5 +24597,0,1.361039,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.664937,0.15,4 +25494,0,0.600611,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.414658,0.15,4 +29988,0,3.208306,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,76.999346,0.15,4 +10324,0,1.005904,1,1,0,2,6,GRV,5,5,Case,Rd,1427308,0,1.005,0,24.141704,5.55,5 +10327,0,1.400289,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,1.607,3.006,0,33.606926,5.55,5 +10973,0,2.409851,1,1,0,2,6,GRV,5,5,Macon,Rd,1432708,0,2.409,0,57.836414,5.55,5 +24599,0,0.919067,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.057607,0.15,4 +24600,0,1.307633,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.383196,0.15,4 +10333,0,0.253133,1,1,0,2,6,GRV,5,5,Arkona,Rd,1427305,1.899,2.152,0,6.075194,5.55,5 +10928,0,1.013558,1,1,0,2,6,GRV,5,5,Lindsley,Rd,1432808,0,1.013,0,24.32539,5.55,5 +10052,0,0.882711,1,1,0,2,6,GRV,5,5,Case,Rd,1427308,1.005,1.881,0,21.185068,5.55,5 +10407,0,0.533998,1,1,0,2,3,,5,5,Michigan,Ave,1427301,5.582,6.116,0,12.815942,1.7,4 +9553,0,0.49866,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,1.115,1.607,0,11.967832,5.55,5 +10135,0,0.087954,1,1,0,2,3,,5,5,Michigan,Ave,1427301,6.116,6.204,0,2.110908,1.7,4 +10909,0,0.973505,1,1,0,2,5,,5,5,Goodrich,Rd,1432905,0,0.973,0,23.364116,3.7,5 +7987,0,0.417101,1,1,0,2,5,,,5,Hack,Rd,960602,4.033,4.45,0,10.010422,3.7,5 +21622,0,0.07771,1,1,0,2,5,,5,5,Goodrich,Rd,4603884,0,0.078,0,1.865047,3.7,5 +24605,0,0.680383,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.329193,0.15,4 +10059,0,1.26803,1,1,0,2,5,GRV,5,5,Willow,Rd,1427307,4.631,5.898,0,30.432727,5.55,5 +10941,0,1.034156,1,1,0,2,5,,5,5,Jordan,Rd,5498055,0,1.034,0,24.819755,3.7,5 +10940,0,1.919556,1,1,0,2,5,,5,5,Jordan,Rd,5498055,1.034,2.953,0,46.069353,3.7,5 +10959,0,0.30956,1,1,0,2,5,GRV,5,5,Macon,Rd,1432708,4.72,5.029,0,7.429448,5.55,5 +10971,0,1.096966,1,1,0,2,6,GRV,5,5,Macon,Rd,1432708,3.623,4.72,0,26.327193,5.55,5 +39932,1,0.162902,2,0,0,1,3,,3,1,DIBC Customs Plaza,,4718954,0,0.163,0,,5,5 +39933,1,0.691296,2,0,0,1,3,,3,1,DIBC Truck Inspection,,4718955,0,0.691,0,,5,5 +40024,1,0.030145,2,0,0,2,3,,4,3,Orchard Lake,Rd,634003,4.943,4.974,0,0.723491,3.7,5 +10317,0,0.543057,1,1,0,2,5,,5,6,Ridge,Hwy,1234805,0,0.543,0,13.033361,3.7,5 +21529,0,0.819891,1,1,0,2,5,GRV,5,5,Willow,Rd,4604005,0,0.82,0,19.677373,5.55,5 +10933,0,0.027687,1,1,0,2,5,GRV,5,5,Maple,Rd,1432804,2.005,2.033,0,0.664496,5.55,5 +9606,0,0.476486,1,1,1,2,3,,4,5,Michigan,Ave,1427301,10.327,10.803,0,11.435659,3.7,5 +10378,0,0.352535,2,2,1,2,3,,4,5,Michigan,Ave,1427301,11.749,12.101,0,8.460831,3.7,5 +10795,0,0.223154,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,7.179,7.402,0,5.355707,4.5,4.5 +10800,0,0.412703,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,6.625,7.037,0,9.904879,4.5,4.5 +10926,0,0.527062,1,1,0,2,4,,5,5,Textile,Rd,1432903,4.008,4.535,0,12.649495,3,4 +10952,0,1.156132,1,1,0,2,5,,5,5,Macon,Rd,1432708,5.939,7.094,0,27.747165,3.7,5 +10976,0,0.411976,1,1,0,2,5,,5,5,Saline Waterworks,Rd,1432706,7.109,7.521,0,9.887434,3.7,5 +19244,0,0.176522,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0,0.176,0,4.236516,5.8,4.5 +21207,0,0.450608,1,1,1,2,4,,4,5,Maple,St,4600080,0.156,0.607,0,10.814595,4.5,4.5 +21864,0,0.336838,1,1,0,2,5,,5,5,Industrial,Dr,4603881,0.135,0.472,0,8.084104,3.7,5 +25485,0,0.890139,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.363343,0.15,4 +25488,0,0.161019,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,3.864447,0.15,4 +26310,0,0.569619,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.670857,0.15,4 +26315,0,0.306711,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.361069,0.15,4 +26316,0,0.467914,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.229937,0.15,4 +26317,0,0.401899,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.645575,0.15,4 +26323,0,0.299089,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.178148,0.15,4 +10383,0,0.500863,1,1,0,2,3,,5,5,Michigan,Ave,1427301,9.688,10.189,0,12.020721,1.7,4 +25492,0,1.006243,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.14982,0.15,4 +10118,0,0.137335,1,1,1,2,3,,4,5,Michigan,Ave,1427301,10.189,10.327,0,3.296046,3.7,5 +25496,0,0.554117,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.298814,0.15,4 +21416,0,0.110688,1,1,0,2,5,,4,5,Austin,Rd,4604910,12.03,12.141,0,2.656521,5.8,4.5 +10788,0,0.225435,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,7.902,8.127,0,5.41045,3,4 +10982,0,0.519532,1,1,0,2,5,GRV,5,5,Saline Waterworks,Rd,1432706,6.506,7.026,0,12.468761,5.55,5 +11095,0,0.845796,1,1,0,2,7,,5,5,Weber,Rd,1447906,5.334,6.179,0,20.299095,5.8,6 +11156,0,0.438293,1,1,0,2,7,GRV,5,5,Noble,Rd,1444402,0.566,1.004,0,10.519041,5.55,5 +24674,0,0.490485,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.771645,0.15,4 +26339,0,0.464778,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.154676,0.15,4 +11383,0,0.565872,1,1,0,2,7,GRV,5,5,Noble,Rd,1444402,0,0.566,0,13.58092,5.55,5 +25495,0,0.570643,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.695432,0.15,4 +10985,0,0.25549,1,1,0,2,5,GRV,5,5,Saline Waterworks,Rd,1432706,6.251,6.506,0,6.131752,5.55,5 +24678,0,0.054727,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.31345,0.15,4 +26319,0,0.298407,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.161758,0.15,4 +10794,0,0.500179,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,7.402,7.902,0,12.004299,3,4 +26318,0,0.341223,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.189355,0.15,4 +10787,0,0.523416,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,8.127,8.65,0,12.561974,3,4 +10823,0,0.337838,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.365,5.703,0,8.108113,3,4 +10827,0,1.280934,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,4.085,5.365,0,30.74241,3.7,5 +21468,0,0.758459,1,1,0,2,4,,5,5,Bemis,Rd,4604906,0,0.758,0,18.203018,3,4 +10115,0,0.151026,2,2,1,2,3,,4,5,Michigan,Ave,1427301,11.123,11.274,0,3.624622,3.7,5 +10793,0,0.313173,1,1,0,2,5,,4,5,Clark,St,1439406,0,0.313,0,7.516156,5.8,4.5 +10816,0,0.283861,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.991,6.275,0,6.812674,3,4 +10833,0,0.448778,1,1,0,2,5,,5,5,Old Creek,Dr,1439007,0.263,0.712,0,10.770676,3.7,5 +10942,0,0.081277,1,1,0,2,5,,5,5,Monroe,St,1432708,7.094,7.176,0,1.950644,3.7,5 +30107,0,0.353216,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.477173,0.15,4 +30108,0,0.404166,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.699989,0.15,4 +26311,0,0.259761,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.234266,0.15,4 +10381,0,0.224359,2,2,1,2,3,,4,5,Michigan,Ave,1427301,10.899,11.123,0,5.384625,3.7,5 +10812,0,0.349904,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,6.275,6.625,0,8.397692,4.5,4.5 +21785,0,0.209604,1,1,0,2,5,,4,5,Bennett,St,4603052,0.303,0.513,0,5.030486,5.8,4.5 +10382,0,0.096005,2,2,1,2,3,,4,5,Michigan,Ave,1427301,10.803,10.899,0,2.304109,3.7,5 +10305,0,0.059116,1,1,0,2,5,,4,5,Harris,St,1427502,0.611,0.67,0,1.418796,5.8,4.5 +9545,0,0.220582,1,1,0,2,4,,5,5,Willis,Rd,1427410,0,0.221,0,5.293964,3,4 +10817,0,0.256451,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.735,5.991,0,6.154826,3,4 +11308,0,0.263516,1,1,0,2,5,,5,5,Old Creek,Dr,1439007,0,0.263,0,6.324386,3.7,5 +26325,0,0.223221,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,5.3573,0.15,4 +10821,0,0.031997,1,1,0,2,4,,5,5,Ann Arbor,St,1433102,5.703,5.735,0,0.767929,3,4 +26324,0,0.054547,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.309138,0.15,4 +9602,0,0.286431,2,2,0,2,3,,4,5,Michigan,Ave,1427301,11.274,11.56,0,6.874332,3.7,5 +10380,0,0.18863,2,2,1,2,3,,4,5,Michigan,Ave,1427301,11.56,11.749,0,4.527116,3.7,5 +11548,0,0.077878,1,1,0,2,4,,5,5,Old Creek,Dr,1439007,0.712,0.79,0,1.869064,3,4 +21440,0,0.15613,1,1,0,2,4,,4,5,Maple,St,4600080,0,0.156,0,3.747127,4.5,4.5 +21682,0,0.111404,1,1,0,2,4,,5,5,Bemis,Rd,4604905,0,0.111,0,2.673689,3,4 +22130,0,0.135034,1,1,0,2,5,,5,5,Industrial,Dr,4603881,0,0.135,0,3.240821,3.7,5 +10922,0,0.236611,1,1,0,2,4,,4,5,Textile,Rd,1432903,5.281,5.517,0,5.678669,4.5,4.5 +19241,0,0.650801,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0.809,1.46,0,15.619226,5.8,4.5 +21205,0,0.616851,1,1,0,2,4,,4,5,Maple,St,4600080,1.238,1.854,0,14.804418,4.5,4.5 +25493,0,0.568494,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.643868,0.15,4 +26326,0,0.531619,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.758846,0.15,4 +19243,0,0.263071,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0.176,0.439,0,6.313698,5.8,4.5 +21439,0,0.314433,1,1,1,2,4,,4,5,Maple,St,4600080,0.607,0.921,0,7.546401,4.5,4.5 +24709,0,0.528231,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.677535,0.15,4 +26314,0,0.346076,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.305813,0.15,4 +26320,0,0.450426,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.810234,0.15,4 +24698,0,0.386381,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.273143,0.15,4 +10797,0,0.141541,1,1,0,2,4,,4,5,Ann Arbor,St,1433102,7.037,7.179,0,3.396982,4.5,4.5 +26322,0,0.382471,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.179312,0.15,4 +19242,0,0.370013,1,1,0,2,5,,4,5,Woodland,Dr,1810910,0.439,0.809,0,8.880306,5.8,4.5 +21203,0,0.316998,1,1,0,2,4,,4,5,Maple,St,4600080,0.921,1.238,0,7.60795,4.5,4.5 +10923,0,0.745755,1,1,0,2,4,,4,5,Textile,Rd,1432903,4.535,5.281,0,17.89813,4.5,4.5 +21966,0,0.180582,1,1,0,2,4,,4,5,Maple,St,4600080,1.854,2.035,0,4.333962,4.5,4.5 +26328,0,0.307617,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.382814,0.15,4 +10108,0,0.448552,2,2,1,2,3,,4,5,Michigan,Ave,1427301,12.101,12.55,0,10.765258,3.7,5 +19517,0,0.590554,1,1,0,2,5,,4,5,Industrial,Dr,1885501,0.439,1.029,0,14.173289,5.8,4.5 +19518,0,0.439244,1,1,0,2,5,,4,5,Industrial,Dr,1885501,0,0.439,0,10.541854,5.8,4.5 +26235,0,0.251445,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,6.034681,0.15,4 +26321,0,0.383164,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.195941,0.15,4 +26312,0,0.283113,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.794717,0.15,4 +10918,0,0.315715,1,1,0,2,4,,4,5,Textile,Rd,1432903,5.698,6.014,0,7.577155,4.5,4.5 +10920,0,0.180797,1,1,0,2,4,,4,5,Textile,Rd,1432903,5.517,5.698,0,4.339135,4.5,4.5 +8667,0,2.210682,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,1.449,3.659,0,53.056377,3.7,5 +8919,0,1.510618,1,1,0,2,6,,5,6,Cone,Rd,1223807,3.027,4.537,0,36.254823,5.8,6 +8933,0,3.038088,1,1,0,2,7,,5,6,Milwaukee,Rd,1223805,2.008,5.045,0,72.914114,5.8,6 +8991,0,1.82209,1,1,0,2,4,,5,6,Tecumseh,St,1223803,3.127,4.949,0,43.730152,3,4 +9124,1,4.734787,2,0,0,1,2,,4,6,N US 23,,1223505,16.845,21.578,0,,0.8,7.5 +9148,-1,4.613267,0,2,0,1,2,,4,6,S US 23,,1223504,16.921,21.533,0,,0.8,7.5 +9218,0,1.261836,1,1,0,2,6,,5,6,Brewer,Rd,1233507,3.4,4.661,0,30.284057,5.8,6 +20420,0,2.005751,1,1,0,2,5,,5,6,Dennison,Rd,4301492,5.009,7.014,0,48.138027,3.7,5 +8803,0,1.026159,1,1,0,2,4,,5,6,Tecumseh,St,1223803,2.101,3.127,0,24.627806,3,4 +9220,0,1.985496,1,1,0,2,6,,5,6,Brewer,Rd,1233507,1.056,3.041,0,47.651894,5.8,6 +20638,0,0.803115,1,1,0,2,5,,5,6,Dennison,Rd,4301492,4.206,5.009,0,19.274769,3.7,5 +30661,0,0.603889,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,14.493346,0.15,4 +30662,0,1.167003,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,28.008061,0.15,4 +31015,0,1.706648,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,40.959563,0.15,4 +8995,0,0.683133,1,1,0,2,4,,5,6,Tecumseh,St,1223803,1.419,2.101,0,16.395202,3,4 +31017,0,1.699716,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,40.79318,0.15,4 +31016,0,0.444139,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.659336,0.15,4 +9219,0,0.359226,1,1,0,2,6,,5,6,Brewer,Rd,1233507,3.041,3.4,0,8.62142,5.8,6 +10405,0,0.624739,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,3.698,4.323,0,14.993744,3.7,5 +10412,0,0.798803,1,1,0,2,5,,5,6,Petersburg,Rd,1234507,2.9,3.698,0,19.171277,3.7,5 +8736,0,1.030986,1,1,0,2,6,,5,6,Cone,Rd,1223807,1.997,3.027,0,24.743654,5.8,6 +30663,0,1.727656,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,41.463733,0.15,4 +19884,0,1.004908,1,1,0,2,5,,5,6,Dennison,Rd,4301492,7.515,8.52,0,24.117785,3.7,5 +20233,0,0.501303,1,1,0,2,5,,5,6,Dennison,Rd,4301492,7.014,7.515,0,12.031277,3.7,5 +30666,0,0.41102,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,9.86447,0.15,4 +8793,0,0.187217,1,1,1,2,4,,4,6,Monroe,St,1223803,5.994,6.181,0,4.493212,4.5,4.5 +8814,0,0.407867,1,1,0,2,5,,5,6,Stowell,Rd,1224210,2.831,3.238,0,9.788798,3.7,5 +8817,0,0.412171,1,1,0,2,5,,4,6,Main,St,1224210,0.658,1.07,0,9.892106,5.8,4.5 +8840,0,0.416469,1,1,1,2,5,,4,6,Ann Arbor,Rd,1224204,1.033,1.449,0,9.99526,5.8,4.5 +31347,0,2.25773,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,54.185509,0.15,4 +31348,0,0.169649,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.071588,0.15,4 +34011,0,0.37714,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,9.051355,0.15,4 +8501,1,0.364051,2,0,0,1,2,,4,6,N US 23,,1223505,16.481,16.845,0,,0.8,7.5 +8522,-1,0.3442,0,2,0,1,2,,4,6,S US 23,,1223504,16.577,16.921,0,,0.8,7.5 +8685,1,0.179537,1,0,0,1,2,RON,4,6,Tecumseh/N US 23,RAMP,1224009,0,0.18,0,,1.09,4 +8841,0,0.662589,1,1,1,2,5,,4,6,Ann Arbor,Rd,1224204,0,0.662,0,15.902133,5.8,4.5 +8936,1,0.186695,1,0,0,1,2,ROF,4,6,S US 23/Tecumseh,RAMP,1223804,0,0.187,0,,2.24,5 +8990,0,0.105442,2,2,1,2,4,,4,6,Tecumseh,St,1223803,5.164,5.269,0,2.530598,4.5,4.5 +9007,1,0.171494,1,0,0,1,2,RON,4,6,Tecumseh/S US 23,RAMP,1223802,0,0.171,0,,1.09,4 +9217,0,0.803082,1,1,0,2,6,,5,6,Brewer,Rd,1233507,4.661,5.464,0,19.273966,5.8,6 +31374,0,0.140362,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.368682,0.15,4 +31383,0,0.564874,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,13.556983,0.15,4 +8796,0,0.215424,2,2,1,2,4,,5,6,Tecumseh,St,1223803,4.949,5.164,0,5.170175,3,4 +31376,0,0.070292,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,1.686996,0.15,4 +8661,0,0.555246,1,1,0,2,6,,4,6,Riley,St,1224210,0.103,0.658,0,13.325892,6.55,4.5 +8989,0,0.484703,1,1,1,2,4,,4,6,Tecumseh,St,1223803,5.326,5.81,0,11.63288,4.5,4.5 +8795,0,0.056247,2,2,1,2,4,,4,6,Tecumseh,St,1223803,5.269,5.326,0,1.349934,4.5,4.5 +8852,1,0.198255,1,0,0,1,2,ROF,4,6,N US 23/Tecumseh,RAMP,1224008,0,0.198,0,,2.24,5 +8566,0,0.329514,1,1,0,2,5,,4,6,Toledo,St,1225909,1.367,1.696,0,7.908328,5.8,4.5 +8794,0,0.071027,1,1,1,2,4,,4,6,Tecumseh,St,1223803,5.81,5.881,0,1.704651,4.5,4.5 +8988,0,0.112901,1,1,1,2,4,,4,6,Tecumseh,St,1223803,5.881,5.994,0,2.709635,4.5,4.5 +31381,0,1.044818,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,25.075624,0.15,4 +8669,0,0.370466,1,1,1,2,5,,4,6,Ann Arbor,Rd,1224204,0.662,1.033,0,8.89118,5.8,4.5 +8655,0,1.761078,1,1,0,2,5,,4,6,Stowell,Rd,1224210,1.07,2.831,0,42.265872,5.8,4.5 +8792,0,1.364685,1,1,0,2,4,,4,6,Custer,Rd,1223803,6.313,7.677,0,32.752439,4.5,4.5 +31377,0,0.213023,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,5.112544,0.15,4 +8987,0,0.131596,1,1,1,2,4,,4,6,Monroe,St,1223803,6.181,6.313,0,3.158313,4.5,4.5 +31378,0,0.043572,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,1.045728,0.15,4 +31380,0,0.091711,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.201061,0.15,4 +8654,0,0.015592,1,1,0,2,7,,5,6,Dixon,Rd,1224309,3.624,3.64,0,0.374215,5.8,6 +8663,0,0.909446,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,4.163,5.072,0,21.826705,3.7,5 +8836,0,0.503822,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,3.659,4.163,0,12.091733,3.7,5 +8730,0,0.282585,1,1,0,2,5,,5,6,Cone,Rd,1223807,4.537,4.82,0,6.782033,3.7,5 +8741,1,0.374711,1,0,0,1,2,RON,5,6,Cone/S US 23,RAMP,1223806,0,0.375,0,,1.09,4 +8832,0,0.095384,1,1,0,2,5,,5,6,Ann Arbor,Rd,1224204,5.072,5.167,0,2.289205,3.7,5 +9121,1,0.618503,2,0,0,1,2,,5,6,N US 23,,1223505,21.578,22.197,0,,1.02,7 +9146,-1,0.631068,0,2,0,1,2,,5,6,S US 23,,1223504,21.533,22.163,0,,1.02,7 +8850,1,0.303254,1,0,0,1,2,ROF,5,6,N US 23/Ann Arbor,RAMP,1224010,0,0.303,0,,2.24,5 +8677,1,0.276539,1,0,0,1,2,RON,5,6,Cone/N US 23,RAMP,1224101,0,0.276,0,,1.09,4 +8728,1,0.312605,1,0,0,1,2,ROF,5,6,S US 23/Cone,RAMP,1223808,0,0.313,0,,2.24,5 +8912,0,0.220561,1,1,0,2,5,,5,6,Cone,Rd,1223807,4.82,5.04,0,5.293455,3.7,5 +9213,0,0.49848,1,1,0,2,5,,5,6,Redman,Rd,1233610,4.018,4.516,0,11.963522,3.7,5 +10321,0,0.562875,2,2,1,2,4,,5,5,Willis,Rd,1427410,4.261,4.823,0,13.508998,3,4 +10359,0,0.278199,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.328,16.606,0,6.676786,3.7,5 +10469,0,1.58461,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,5.064,6.648,0,38.030628,3.7,5 +10470,0,1.160518,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,3.904,5.064,0,27.852439,3.7,5 +10482,0,0.972666,1,1,0,2,5,,5,5,Willow,Rd,1431207,1.155,2.127,0,23.343977,3.7,5 +10503,1,3.159719,2,0,0,1,2,,5,5,N US 23,,1431202,1.642,4.8,0,,1.02,7 +10705,0,1.994915,1,1,0,2,6,GRV,5,5,McCrone,Rd,1433205,0.818,2.812,0,47.877972,5.55,5 +10716,0,1.276389,1,1,0,2,5,,5,5,Moon,Rd,1433104,1.254,2.53,0,30.633333,3.7,5 +10874,0,0.720938,1,1,0,2,4,,4,5,Main,St,1432907,6.854,7.575,0,17.30251,4.5,4.5 +11384,0,0.574704,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,3.436,4.01,0,13.792884,3,4 +11463,-1,3.458501,0,2,0,1,2,,5,5,S US 23,,1431603,1.407,4.864,0,,1.02,7 +20337,0,1.23345,1,1,0,2,5,,5,5,Platt,Rd,4302160,2.838,4.071,0,29.602793,3.7,5 +21576,0,0.948512,1,1,0,2,4,,4,5,Bemis,Rd,4604906,3.811,4.759,0,22.76429,4.5,4.5 +25486,0,2.267374,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,54.416971,0.15,4 +25704,0,1.142858,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,27.428581,0.15,4 +26331,0,1.507497,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.179933,0.15,4 +30106,0,1.177636,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.263259,0.15,4 +34013,0,0.510303,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.247261,0.15,4 +9215,0,1.030984,1,1,0,2,5,,5,6,Redman,Rd,1233610,1.961,2.992,0,24.743606,3.7,5 +10472,0,0.271599,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,2.226,2.497,0,6.518375,3.7,5 +10473,0,0.821798,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,1.404,2.226,0,19.723154,3.7,5 +10837,0,1.39321,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,0,1.393,0,33.437036,3.7,5 +10893,0,1.012516,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,4.679,5.691,0,24.300379,3.7,5 +20778,0,1.006063,1,1,0,2,5,,5,5,Platt,Rd,4302160,1.054,2.06,0,24.145514,3.7,5 +25024,0,0.996938,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.926509,0.15,4 +26330,0,0.667511,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.020259,0.15,4 +30100,0,1.462213,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,35.093122,0.15,4 +10474,0,1.404926,1,1,0,2,5,,5,5,Dennison,Rd,1431208,0,1.404,0,33.718231,3.7,5 +10895,0,0.533601,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,4.145,4.679,0,12.806412,3.7,5 +10930,0,0.479421,1,1,0,2,5,,5,5,Ridge,Rd,1432807,1.395,1.875,0,11.506093,3.7,5 +20281,0,0.514379,1,1,0,2,5,,5,6,Dennison,Rd,4301492,11.528,12.042,0,12.345101,3.7,5 +39912,-1,0.265182,0,2,0,2,4,DIV,4,2,Ecorse,Rd,5495384,0,0.265,0,6.364373,4.5,4.5 +39917,1,0.057805,1,0,0,1,2,RON,3,2,N M 39 Service/N M 39,RAMP,4719482,0,0.058,0,,1.09,4 +39914,0,0.071532,1,1,0,2,4,,4,2,Sheldon,Rd,5495478,0,0.072,0,1.716759,4.5,4.5 +10832,0,1.042098,1,1,0,2,5,,5,5,Saline Milan,Rd,1433102,1.393,2.434,0,25.010356,3.7,5 +9214,0,1.026736,1,1,0,2,5,,5,6,Redman,Rd,1233610,2.992,4.018,0,24.641653,3.7,5 +10875,0,0.202684,1,1,0,2,4,,4,5,Mooreville,Rd,1432907,6.652,6.854,0,4.864425,4.5,4.5 +10876,0,0.506402,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,6.146,6.652,0,12.153657,3.7,5 +20088,0,0.60243,1,1,0,2,5,,4,5,Platt,Rd,4302160,0.452,1.054,0,14.458317,5.8,4.5 +10889,0,0.455098,1,1,0,2,5,,5,5,Mooreville,Rd,1432907,5.691,6.146,0,10.922344,3.7,5 +26335,0,0.255949,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.142776,0.15,4 +10471,0,1.406733,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,2.497,3.904,0,33.761599,3.7,5 +10483,0,1.155557,1,1,0,2,5,GRV,5,5,Willow,Rd,1431207,0,1.155,0,27.733372,5.55,5 +20530,0,0.778289,1,1,0,2,5,,5,5,Platt,Rd,4302160,2.06,2.838,0,18.678932,3.7,5 +9544,0,2.082537,1,1,0,2,4,,5,5,Willis,Rd,1427410,2.179,4.261,0,49.980886,3,4 +9589,0,0.552047,1,1,0,2,3,,4,5,Michigan,Ave,1427301,14.284,14.836,0,13.24914,3.7,5 +10712,0,0.8466,1,1,0,2,4,,4,5,Moon,Rd,1433104,4.561,5.407,0,20.318408,4.5,4.5 +10913,0,0.118744,1,1,0,2,4,,4,5,Textile,Rd,1432903,7.274,7.392,0,2.849855,4.5,4.5 +20590,0,1.022467,1,1,0,2,5,,4,5,Platt,Rd,4302160,6.083,7.105,0,24.539197,5.8,4.5 +21310,0,0.468518,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.271,2.739,0,11.24442,4.5,4.5 +21599,0,0.322181,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,0,0.322,0,7.732349,6.55,4.5 +21827,0,0.958048,1,1,0,2,7,,4,5,Fosdick,Rd,4600011,0,0.958,0,22.99314,6.55,4.5 +25015,0,0.626597,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.038333,0.15,4 +25017,0,0.400492,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.611815,0.15,4 +26345,0,0.760211,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.245071,0.15,4 +30123,0,0.258711,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.209074,0.15,4 +10714,0,1.030111,1,1,0,2,5,,5,5,Moon,Rd,1433104,3.531,4.561,0,24.722669,3.7,5 +22017,0,0.401237,1,1,0,2,4,,4,5,Bemis,Rd,4604906,1.327,1.728,0,9.629683,4.5,4.5 +10715,0,1.001316,1,1,0,2,5,,5,5,Moon,Rd,1433104,2.53,3.531,0,24.031591,3.7,5 +21738,0,0.506439,1,1,0,2,4,,4,5,Bemis,Rd,4604906,1.728,2.234,0,12.154547,4.5,4.5 +21525,0,0.036613,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.234,2.271,0,0.87871,4.5,4.5 +10037,0,0.577224,1,1,0,2,4,,4,5,State,Rd,1427508,0,0.577,0,13.853381,4.5,4.5 +10098,0,0.285331,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.999,14.284,0,6.847935,3.7,5 +10100,0,0.080395,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.639,13.719,0,1.929483,3.7,5 +10914,0,0.486908,1,1,0,2,4,,4,5,Textile,Rd,1432903,6.787,7.274,0,11.685795,4.5,4.5 +19638,0,0.259682,1,1,0,2,7,,4,5,Old State,Rd,1842602,0,0.26,0,6.232359,6.55,4.5 +21826,0,0.353888,1,1,0,2,7,,4,5,Fosdick,Rd,4600011,0.958,1.312,0,8.493309,6.55,4.5 +25491,0,0.601947,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.446718,0.15,4 +26313,0,0.39161,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.398631,0.15,4 +25016,0,0.413171,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.916112,0.15,4 +25018,0,0.563785,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.530849,0.15,4 +10372,0,0.26544,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.374,13.639,0,6.370558,3.7,5 +10709,0,0.146299,1,1,0,2,4,,4,5,Moon,Rd,1433104,5.407,5.554,0,3.51118,4.5,4.5 +10104,0,0.106831,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.267,13.374,0,2.563933,3.7,5 +10916,0,0.481329,1,1,0,2,4,,4,5,Textile,Rd,1432903,6.306,6.787,0,11.551904,4.5,4.5 +26344,0,0.641705,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.400909,0.15,4 +25014,0,0.501685,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.040431,0.15,4 +10371,0,0.279641,1,1,0,2,3,,4,5,Michigan,Ave,1427301,13.719,13.999,0,6.711386,3.7,5 +30122,0,0.34485,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.276391,0.15,4 +9531,0,0.617749,1,1,0,2,4,,4,5,State,Rd,1427508,0.577,1.195,0,14.825971,4.5,4.5 +20135,0,1.008004,1,1,0,2,5,,5,5,Platt,Rd,4302160,4.071,5.078,0,24.192098,3.7,5 +21800,0,1.038376,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.773,3.811,0,24.921018,4.5,4.5 +22068,0,0.033789,1,1,0,2,4,,4,5,Bemis,Rd,4604906,2.739,2.773,0,0.810946,4.5,4.5 +20830,0,1.00536,1,1,0,2,5,,5,5,Platt,Rd,4302160,5.078,6.083,0,24.128643,3.7,5 +10097,0,0.460454,1,1,1,2,3,,4,5,Michigan,Ave,1427301,15.495,15.955,0,11.050894,3.7,5 +10911,0,0.603658,1,1,0,2,4,,4,5,Textile,Rd,1432903,8.43,9.034,0,14.487782,4.5,4.5 +20385,0,0.383536,1,1,0,2,5,,4,5,Platt,Rd,4302160,7.105,7.489,0,9.204869,5.8,4.5 +21696,0,0.233327,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,1.173,1.407,0,5.599854,6.55,4.5 +26341,0,0.733705,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.608928,0.15,4 +26342,0,0.880086,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.122076,0.15,4 +29489,0,1.044452,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,25.066853,0.15,4 +21401,0,0.509083,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,0.322,0.831,0,12.217994,6.55,4.5 +26343,0,0.749836,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.996075,0.15,4 +30124,0,0.592704,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.224896,0.15,4 +21950,0,0.342503,1,1,0,2,7,GRV,4,5,Warner,Rd,4602926,0.831,1.173,0,8.220069,6.55,4.5 +10370,0,0.272734,1,1,0,2,3,,4,5,Michigan,Ave,1427301,14.836,15.109,0,6.545622,3.7,5 +10912,0,0.191666,1,1,0,2,4,,4,5,Textile,Rd,1432903,8.239,8.43,0,4.599977,4.5,4.5 +25019,0,0.403415,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.68195,0.15,4 +25021,0,0.387845,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.308282,0.15,4 +10368,0,0.386205,1,1,0,2,3,,4,5,Michigan,Ave,1427301,15.109,15.495,0,9.268917,3.7,5 +29490,0,0.372834,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.948026,0.15,4 +9587,0,0.18305,1,1,1,2,3,,4,5,Michigan,Ave,1427301,15.955,16.138,0,4.393194,3.7,5 +10910,0,0.167333,1,1,0,2,4,,4,5,Textile,Rd,1432903,9.034,9.201,0,4.016,4.5,4.5 +20183,0,0.561783,1,1,0,2,5,,4,5,Platt,Rd,4302160,7.489,8.05,0,13.482792,5.8,4.5 +20878,0,0.06902,1,1,0,2,5,,4,5,Platt,Rd,4302160,8.05,8.119,0,1.656482,5.8,4.5 +10364,0,0.19029,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.138,16.328,0,4.566956,3.7,5 +8719,0,1.254387,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,1.02,2.274,0,30.105283,3,4 +10480,0,0.565384,1,1,0,2,5,,5,5,Willow,Rd,1431207,2.886,3.451,0,13.569214,3.7,5 +10953,0,1.005313,1,1,0,2,6,GRV,5,5,Gooding,Rd,1447502,1.007,2.012,0,24.127519,5.55,5 +11387,0,0.782753,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,1.22,2.002,0,18.786075,3,4 +8903,0,0.752476,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,0.268,1.02,0,18.059422,3,4 +8904,1,0.251487,1,0,0,1,2,ROF,5,6,S US 23/Main,RAMP,1223902,0,0.251,0,,2.24,5 +9125,1,0.363193,1,0,0,1,2,RON,5,6,Main/S US 23,RAMP,1226002,0,0.363,0,,1.09,4 +9202,0,0.284294,1,1,0,2,4,,5,6,Main,St,1226001,0,0.284,0,6.823044,3,4 +10506,1,0.769196,2,0,0,1,2,,4,5,N US 23,,1431202,0,0.769,0,,0.8,7.5 +11399,0,0.103962,1,1,0,2,4,,4,5,Dexter,St,1431609,0.358,0.462,0,2.495088,4.5,4.5 +11465,-1,1.155017,0,2,0,1,2,,5,5,S US 23,,1431603,0.252,1.407,0,,1.02,7 +11469,-1,0.252463,0,2,0,1,2,,4,5,S US 23,,1431603,0,0.252,0,,0.8,7.5 +21829,1,0.26119,1,0,0,1,2,RON,4,5,Carpenter/S US 12,RAMP,4600009,0,0.261,0,,1.09,4 +26337,0,0.336794,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.083066,0.15,4 +8721,0,0.060725,1,1,0,2,4,,4,6,County,St,1223905,0,0.061,0,1.457412,4.5,4.5 +20531,0,0.19953,1,1,0,2,5,,5,6,Wabash,Rd,4302161,0,0.2,0,4.788731,3.7,5 +26338,0,0.339947,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.158728,0.15,4 +9964,0,0.244126,1,1,0,2,5,,5,6,Wabash,Rd,1239109,3.012,3.256,0,5.859027,3.7,5 +30667,0,0.176981,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.247543,0.15,4 +9962,0,0.085779,1,1,0,2,5,,5,6,Wabash,Rd,1239109,3.256,3.342,0,2.058699,3.7,5 +26340,0,0.171361,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.112671,0.15,4 +10872,0,0.099388,1,1,0,2,4,,4,5,Main,St,1432907,7.586,7.685,0,2.385307,4.5,4.5 +20338,0,0.055758,1,1,0,2,5,,4,5,Wabash,St,4302161,0.2,0.255,0,1.338186,5.8,4.5 +10873,0,0.010556,1,1,0,2,4,,4,5,Main,St,1432907,7.575,7.586,0,0.25335,4.5,4.5 +11400,0,0.357963,1,1,0,2,4,,4,5,Dexter,St,1431609,0,0.358,0,8.591115,4.5,4.5 +10485,1,0.565691,1,0,0,1,2,ROF,5,5,N US 23/Carpenter,RAMP,1431204,0,0.566,0,,2.24,5 +10504,1,0.46593,2,0,0,1,2,,5,5,N US 23,,1431202,1.176,1.642,0,,1.02,7 +10505,1,0.407275,2,0,0,1,2,,5,5,N US 23,,1431202,0.769,1.176,0,,1.02,7 +11394,0,0.17965,1,1,0,2,4,,4,5,Dexter,St,1431609,0.871,1.05,0,4.311605,4.5,4.5 +19612,1,0.39561,1,0,0,1,2,RON,5,5,Carpenter/N US 23,RAMP,1908710,0,0.396,0,,1.09,4 +25023,0,0.37692,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.046082,0.15,4 +29989,0,0.301796,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.243105,0.15,4 +11397,0,0.167763,1,1,1,2,4,,4,5,Dexter,St,1431609,0.703,0.871,0,4.026312,4.5,4.5 +11398,0,0.241515,1,1,1,2,4,,4,5,Dexter,St,1431609,0.462,0.703,0,5.796361,4.5,4.5 +11411,1,0.308403,1,0,0,1,2,ROF,4,5,S US 23/Carpenter,RAMP,1431605,0,0.308,0,,2.24,5 +10484,1,0.256414,1,0,0,1,2,RON,5,5,Carpenter/N US 23,RAMP,1431205,0,0.256,0,,1.09,4 +11392,0,0.108311,1,1,0,2,4,,5,5,Dexter,St,1431609,1.05,1.159,0,2.599463,3,4 +11391,0,0.061053,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,1.159,1.22,0,1.465276,3,4 +8499,1,0.270092,2,0,0,1,2,,5,6,N US 23,,1223505,25.153,25.423,0,,1.02,7 +8673,1,0.412921,1,0,0,1,2,RON,5,6,Plank/N US 23,RAMP,1224103,0,0.413,0,,1.09,4 +8921,-1,0.348637,0,2,0,1,2,,5,6,S US 23,,1223504,25.188,25.537,0,,1.02,7 +26336,0,0.629806,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.115342,0.15,4 +8540,0,0.012247,1,1,0,2,4,,5,6,Plank,Rd,1226001,0.751,0.763,0,0.293938,3,4 +8847,1,0.244379,1,0,0,1,2,ROF,5,6,N US 23/Plank,RAMP,1224102,0,0.244,0,,2.24,5 +9142,-1,0.230376,0,2,0,1,2,,5,6,S US 23,,1223504,24.958,25.188,0,,1.02,7 +9186,0,0.230216,1,1,0,2,4,,5,6,Plank,Rd,1226001,0.521,0.751,0,5.525176,3,4 +8559,0,0.012335,1,1,0,2,4,,5,6,Main,St,1226001,0.509,0.521,0,0.296046,3,4 +9120,1,0.064537,2,0,0,1,2,,5,6,N US 23,,1223505,25.423,25.488,0,,1.02,7 +10481,0,0.758995,1,1,0,2,5,,5,5,Willow,Rd,1431207,2.127,2.886,0,18.215873,3.7,5 +11385,0,1.43398,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,2.002,3.436,0,34.415528,3,4 +11124,0,1.007382,1,1,0,2,6,GRV,5,5,Gooding,Rd,1447502,0,1.007,0,24.177172,5.55,5 +8885,0,0.500192,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,2.274,2.774,0,12.004598,3,4 +10479,0,0.679475,1,1,0,2,5,,5,5,Willow,Rd,1431207,3.451,4.131,0,16.307405,3.7,5 +10041,0,0.831796,1,1,0,2,4,,5,5,Willis,Rd,1427410,5.721,6.553,0,19.963115,3,4 +10466,0,0.817536,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,8.423,9.241,0,19.620854,5.8,4.5 +10500,1,2.820149,2,0,0,1,2,,4,5,N US 23,,1431202,5.44,8.259,0,,0.8,7.5 +11334,0,0.508259,1,1,0,2,5,GRV,4,5,Merritt,Rd,1438204,0.735,1.243,0,12.19821,6.55,4.5 +11372,0,1.017313,1,1,0,2,4,,4,5,Carpenter,Rd,1431609,6.038,7.055,0,24.415521,4.5,4.5 +11459,-1,2.788194,0,2,0,1,2,,4,5,S US 23,,1431603,5.434,8.221,0,,0.8,7.5 +11503,0,0.766341,1,1,0,2,4,,4,5,Textile,Rd,1438102,1.245,2.011,0,18.392192,4.5,4.5 +22122,0,1.295887,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,5.271,6.566,0,31.101279,6.55,4.5 +25027,0,1.021133,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.507194,0.15,4 +10311,0,0.50741,1,1,0,2,4,,5,5,Willis,Rd,1427410,5.214,5.721,0,12.177833,3,4 +10459,1,0.26209,1,0,0,1,2,RON,5,5,E Willis/N US 23,RAMP,1431210,0,0.262,0,,1.09,4 +10460,1,0.369039,1,0,0,1,2,ROF,5,5,N US 23/Willis,RAMP,1431209,0,0.369,0,,2.24,5 +10502,1,0.326,2,0,0,1,2,,5,5,N US 23,,1431202,4.8,5.126,0,,1.02,7 +11375,0,0.258999,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,4.759,5.017,0,6.215979,3,4 +11408,1,0.30336,1,0,0,1,2,RON,5,5,Willis/S US 23,RAMP,1431606,0,0.303,0,,1.09,4 +11460,-1,0.56955,0,2,0,1,2,,5,5,S US 23,,1431603,4.864,5.434,0,,1.02,7 +21357,0,0.512272,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,4.759,5.271,0,12.294521,6.55,4.5 +30101,0,0.631607,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.158565,0.15,4 +11382,0,0.748761,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,4.01,4.759,0,17.970261,3,4 +26334,0,0.710419,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.050047,0.15,4 +26333,0,0.060197,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.444722,0.15,4 +10047,0,0.163174,1,1,0,2,4,,5,5,Willis,Rd,1427410,5.051,5.214,0,3.91617,3,4 +11374,0,1.021016,1,1,0,2,4,,5,5,Carpenter,Rd,1431609,5.017,6.038,0,24.504384,3,4 +10048,0,0.114437,1,1,0,2,4,,5,5,Willis,Rd,1427410,4.854,4.968,0,2.74648,3,4 +10458,1,0.314054,1,0,0,1,2,RON,5,5,W Willis/N US 23,RAMP,1431303,0,0.314,0,,1.09,4 +10501,1,0.313565,2,0,0,1,2,,5,5,N US 23,,1431202,5.126,5.44,0,,1.02,7 +11404,1,0.30062,1,0,0,1,2,ROF,5,5,S US 23/Willis,RAMP,1431607,0,0.301,0,,2.24,5 +10318,0,0.030145,2,2,1,2,4,,5,5,Willis,Rd,1427410,4.823,4.854,0,0.723482,3,4 +10316,0,0.082835,1,1,0,2,4,,5,5,Willis,Rd,1427410,4.968,5.051,0,1.988032,3,4 +10726,0,0.482619,1,1,0,2,4,,4,5,Textile,Rd,1438102,0.24,0.723,0,11.582852,4.5,4.5 +11368,0,1.026787,1,1,0,2,4,,4,5,Carpenter,Rd,1431609,7.055,8.081,0,24.642886,4.5,4.5 +11585,0,0.504138,1,1,0,2,5,GRV,4,5,Merritt,Rd,1438204,0.231,0.735,0,12.099306,6.55,4.5 +25025,0,1.024595,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.590283,0.15,4 +10216,1,0.283937,1,0,0,1,2,RON,4,5,Michigan/S US 23,RAMP,1427605,0,0.284,0,,1.09,4 +10090,0,0.071752,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.606,16.678,0,1.722048,3.7,5 +25026,0,0.14904,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.576964,0.15,4 +11547,0,0.522467,1,1,0,2,4,,4,5,Textile,Rd,1438102,0.723,1.245,0,12.539206,4.5,4.5 +10468,0,0.559637,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,6.648,7.207,0,13.431288,3.7,5 +26239,0,1.280782,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,30.738759,0.15,4 +10704,0,0.443387,1,1,0,2,6,GRV,5,5,McCrone,Rd,1433205,2.812,3.255,0,10.641293,5.55,5 +10467,0,1.216805,1,1,0,2,5,,5,5,Stony Creek,Rd,1431208,7.207,8.423,0,29.203322,3.7,5 +10464,0,0.36172,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,9.546,9.907,0,8.681278,5.8,4.5 +11072,0,0.438667,1,1,0,2,4,,4,5,Textile,Rd,1438102,2.011,2.449,0,10.528002,4.5,4.5 +11584,0,0.826466,1,1,0,2,5,,4,5,Merritt,Rd,1438204,1.642,2.468,0,19.835195,5.8,4.5 +26247,0,0.597624,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.342965,0.15,4 +30104,0,0.507066,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.169573,0.15,4 +10465,0,0.305296,1,1,0,2,5,,4,5,Stony Creek,Rd,1431208,9.241,9.546,0,7.327113,5.8,4.5 +26248,0,0.2882,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.916804,0.15,4 +5136,1,0.211219,1,0,0,1,2,ROF,5,8,N US 23/9 Mile,RAMP,931603,0,0.211,0,,2.24,5 +5595,-1,0.931086,0,2,0,1,2,,5,8,S US 23,,932002,0.222,1.153,0,,1.02,7 +5916,1,0.081643,1,0,0,1,2,RON,5,8,W M 36/S US 23,RAMP,932004,0,0.082,0,,1.09,4 +5917,1,0.210955,1,0,0,1,2,RON,5,8,M 36/S US 23,RAMP,932004,0.082,0.293,0,,1.09,4 +5985,0,0.069287,1,1,0,2,4,,5,8,M 36,,931604,2.034,2.103,0,1.662878,3,4 +6180,1,0.242429,1,0,0,1,2,ROF,5,8,N US 23/Silver Lake,RAMP,931607,0,0.242,0,,2.24,5 +6182,0,0.110204,1,1,0,2,4,,5,8,Silver Lake,Rd,931608,0.025,0.135,0,2.644885,3,4 +6305,0,1.597396,1,1,0,2,7,,5,8,Fieldcrest,Dr,4105311,0.165,1.762,0,38.337493,5.8,6 +6389,1,1.180823,2,0,0,1,2,,5,8,N US 23,,931510,1.435,2.616,0,,1.02,7 +6395,0,0.77198,1,1,0,2,5,,5,8,Whitmore Lake,Rd,932204,2.043,2.815,0,18.527525,3.7,5 +6819,-1,1.227564,0,2,0,1,2,,5,8,S US 23,,932002,1.42,2.647,0,,1.02,7 +6893,1,0.144558,2,0,0,1,2,,5,8,N US 23,,931510,1.012,1.157,0,,1.02,7 +6905,0,0.163728,1,1,0,2,4,,5,8,Whitmore Lake,Rd,932204,1.213,1.377,0,3.929481,3,4 +9493,1,0.718402,2,0,0,1,1,,3,5,E I 94,,1426109,21.528,22.246,0,,0.58,7 +9622,0,0.320899,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,14.07,14.391,0,7.701576,6,4.5 +9926,-1,0.407285,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,0.275,0.682,0,9.774846,5,5 +9935,0,1.216441,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,17.222,18.438,0,29.194576,3,4 +10161,-1,1.620232,0,2,0,1,2,,3,5,W M 14,,1427103,2.049,3.668,0,,0.58,7 +10292,0,0.183961,2,2,0,2,3,,3,5,Stadium,Blvd,1429506,1.685,1.869,0,4.415059,5,5 +10345,-1,0.571192,0,2,0,1,1,,3,5,W I 94,,1426110,21.678,22.249,0,,0.58,7 +10393,1,1.51984,2,0,0,1,2,,3,5,E M 14,,1426704,2.139,3.658,0,,0.58,7 +10518,-1,3.87025,0,2,0,1,2,,5,5,S US 23,,1431105,0.475,4.343,0,,1.02,7 +10531,1,3.55635,2,0,0,1,2,,5,5,N US 23,,1431003,0.752,4.307,0,,1.02,7 +10548,0,0.1878,1,1,0,2,4,,2,5,Miller,Rd,1430906,4.888,5.076,0,4.507197,8,4.5 +10580,0,0.346136,1,1,0,2,5,,3,5,Summit,St,1430803,0.127,0.473,0,8.307268,8,4.5 +10638,0,0.189529,1,1,0,2,5,,2,5,Madison,St,1430701,0,0.189,0,4.548704,8.5,4.5 +10644,0,0.184447,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,1.18,1.364,0,4.426722,8,4.5 +10774,0,1.422593,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,2.982,4.404,0,34.142238,3,4 +10840,0,0.408091,2,2,1,2,3,,3,5,Ann Arbor Saline,Rd,1436706,3.02,3.428,0,9.794177,5,5 +10900,0,0.556199,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,9.393,9.949,0,13.348765,5.8,4.5 +10924,0,0.976479,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,4.6,5.576,0,23.435493,3.7,5 +11027,0,0.336274,1,1,0,2,5,,5,5,Shore,Dr,1446607,0,0.336,0,8.070565,3.7,5 +11405,0,0.761483,1,1,0,2,5,,5,5,Nixon,Rd,1443105,2.033,2.794,0,18.275602,3.7,5 +19633,0,0.482742,1,1,1,2,5,,3,5,Oakbrook,Dr,1908304,0.183,0.666,0,11.585813,8,4.5 +20020,0,0.248233,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,0.693,0.941,0,5.957592,5.8,4.5 +21314,0,1.211355,1,1,0,2,5,,4,5,Huron River,Dr,4604062,0,1.211,0,29.072514,5.8,4.5 +21421,0,1.155837,1,1,0,2,4,,4,5,Huron River,Dr,4604062,8.146,9.301,0,27.740081,4.5,4.5 +21447,0,0.316103,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,6.98,7.296,0,7.586471,4.5,4.5 +21600,0,1.662252,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,3.795,5.456,0,39.894038,3,4 +21701,0,0.908518,1,1,0,2,5,GRV,5,5,Earhart,Rd,4600037,2.714,3.622,0,21.804438,5.55,5 +21869,0,0.03427,1,1,0,2,4,,2,5,Liberty,St,4603025,7.389,7.423,0,0.82247,8,4.5 +22018,0,0.236587,2,2,0,2,3,,2,5,Huron,St,4604878,1.755,1.991,0,5.678095,6,5 +22090,1,0.418259,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,0.275,0.693,0,10.038217,5,5 +22103,0,0.953834,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,1.9,2.854,0,22.89202,3,4 +25022,0,0.760837,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.260083,0.15,4 +25032,0,0.363663,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.727902,0.15,4 +25034,0,0.719475,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.267404,0.15,4 +25040,0,0.831125,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.946995,0.15,4 +25041,0,0.619043,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,14.85702,0.15,4 +25487,0,0.271939,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.526538,0.15,4 +39093,0,1.245686,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.896471,0.15,4 +26360,0,0.852307,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.455357,0.15,4 +26362,0,0.18419,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.420551,0.15,4 +26364,0,0.300039,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.200937,0.15,4 +26374,0,0.494009,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.856219,0.15,4 +26382,0,1.453095,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,34.874273,0.15,4 +26387,0,0.206623,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.95894,0.15,4 +26390,0,0.428406,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.281752,0.15,4 +26395,0,0.162566,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.90158,0.15,4 +26397,0,0.158584,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.806021,0.15,4 +26406,0,0.127348,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.056352,0.15,4 +26975,0,0.201708,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.840998,0.15,4 +29944,0,0.20953,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.02871,0.15,4 +29960,0,0.361661,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.679862,0.15,4 +29980,0,0.680905,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.341728,0.15,4 +29994,0,0.283702,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.808855,0.15,4 +29997,0,0.896037,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.504883,0.15,4 +30006,0,1.09481,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.275446,0.15,4 +30008,0,0.970655,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.295726,0.15,4 +30048,0,0.162733,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.905599,0.15,4 +30051,0,0.164042,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.937014,0.15,4 +30097,0,0.232224,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,5.573369,0.15,4 +9498,1,2.797882,2,0,0,1,1,,3,5,E I 94,,1426109,18.05,20.847,0,,0.58,7 +9541,1,1.047086,3,0,0,1,1,,4,5,E I 94,,1426109,15.761,16.808,0,,0.8,7.5 +37307,-1,0.366638,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,2.935,3.301,0,8.799311,3.7,5 +9664,0,0.271032,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,10.867,11.138,0,6.504779,4.5,4.5 +9755,0,0.2965,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.373,0.669,0,7.115996,5,5 +10079,0,0.244929,1,1,0,2,4,,3,5,7th,St,1430205,1.487,1.732,0,5.878287,6,4.5 +10347,-1,2.20615,0,2,0,1,1,,3,5,W I 94,,1426110,18.468,20.673,0,,0.58,7 +10358,-1,1.301777,0,3,0,1,1,,4,5,W I 94,,1426110,15.442,16.743,0,,0.8,7.5 +10564,0,0.986009,1,1,0,2,4,,4,5,Miller,Rd,1430906,0.122,1.107,0,23.664223,4.5,4.5 +10747,0,0.759855,1,1,0,2,4,,4,5,Wagner,Rd,1433102,13.022,13.781,0,18.236524,4.5,4.5 +10755,0,1.436569,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,2.995,4.431,0,34.477653,3.7,5 +10992,0,0.741696,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,4.946,5.688,0,17.800701,4.5,4.5 +11286,0,0.65299,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,5.188,5.84,0,15.671751,4.5,4.5 +11319,0,0.317977,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.923,1.241,0,7.631456,6,4.5 +37308,0,0.272841,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.548181,0.15,4 +21580,0,0.674637,1,1,0,2,5,,4,5,Huron River,Dr,4604062,3.536,4.21,0,16.191284,5.8,4.5 +21833,0,1.151525,1,1,0,2,4,,4,5,Liberty,Rd,4603025,3.921,5.072,0,27.636598,4.5,4.5 +24612,0,1.000476,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.011427,0.15,4 +26016,0,0.783621,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.806907,0.15,4 +39911,1,0.282463,2,0,0,2,4,DIV,4,2,Ecorse,Rd,5495383,0,0.282,0,6.779107,4.5,4.5 +26024,0,0.318487,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.643684,0.15,4 +26411,0,1.012775,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.306604,0.15,4 +26412,0,0.512363,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.296707,0.15,4 +26414,0,0.581848,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.964348,0.15,4 +26418,0,0.62564,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.015354,0.15,4 +26419,0,0.593935,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.254449,0.15,4 +26424,0,1.041454,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.994898,0.15,4 +26429,0,0.478284,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.478826,0.15,4 +29981,0,0.991967,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.807214,0.15,4 +29987,0,1.023574,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.565776,0.15,4 +30044,0,0.339648,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.151551,0.15,4 +9683,0,1.975252,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,8.14,10.115,0,47.406049,3.7,5 +10756,0,1.478091,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,1.517,2.995,0,35.474181,3.7,5 +11011,0,1.011902,1,1,0,2,5,GRV,5,5,Zeeb,Rd,1436703,2.017,3.028,0,24.285653,5.55,5 +24628,0,1.600846,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,38.420308,0.15,4 +24749,0,1.503018,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.072424,0.15,4 +29985,0,1.696508,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.716202,0.15,4 +24610,0,0.105034,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,2.520812,0.15,4 +24611,0,1.066692,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.600602,0.15,4 +24630,0,0.71373,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,17.129531,0.15,4 +9685,0,0.032789,1,1,0,2,5,,5,5,Scio Church,Rd,1426103,8.107,8.14,0,0.786932,3.7,5 +11012,0,1.002684,1,1,0,2,5,GRV,5,5,Zeeb,Rd,1436703,1.015,2.017,0,24.064427,5.55,5 +9679,0,0.7527,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,10.115,10.867,0,18.064795,4.5,4.5 +11010,0,0.906368,1,1,0,2,5,,5,5,Zeeb,Rd,1436703,3.028,3.934,0,21.752832,3.7,5 +21336,0,0.706239,1,1,0,2,4,,4,5,Liberty,Rd,4603025,3.02,3.726,0,16.949731,4.5,4.5 +11001,0,0.567573,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,3.934,4.502,0,13.621761,4.5,4.5 +10998,0,0.444492,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,4.502,4.946,0,10.667819,4.5,4.5 +22100,0,0.195193,1,1,0,2,4,,4,5,Liberty,Rd,4603025,3.726,3.921,0,4.684624,4.5,4.5 +9525,0,0.318788,1,1,0,2,4,,4,5,Baker,Rd,1426608,0.458,0.777,0,7.650911,4.5,4.5 +9552,1,0.461284,3,0,0,1,1,,4,5,E I 94,,1426109,13.119,13.58,0,,0.8,7.5 +9621,1,0.995725,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,15.219,16.214,0,23.897398,3.7,5 +10361,-1,1.632779,0,3,0,1,1,,4,5,W I 94,,1426110,13.391,15.023,0,,0.8,7.5 +10907,0,0.501525,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,6.956,7.458,0,12.036607,4.5,4.5 +11091,0,1.455485,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,1.887,3.342,0,34.931643,4.5,4.5 +11291,0,0.872779,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,3.999,4.872,0,20.946701,4.5,4.5 +22072,0,1.270563,1,1,0,2,5,,4,5,Huron River,Dr,4604062,1.211,2.481,0,30.493504,5.8,4.5 +24633,0,0.737857,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.708562,0.15,4 +24635,0,1.155976,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,27.743423,0.15,4 +25036,0,0.455205,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.924918,0.15,4 +26416,0,0.914732,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.953556,0.15,4 +9631,1,0.82876,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,14.163,14.991,0,19.890238,3.7,5 +30117,0,1.100774,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,26.418566,0.15,4 +9529,0,0.017951,2,2,1,2,3,,4,5,Baker,Rd,1426608,0,0.018,0,0.430834,3.7,5 +10120,1,0.215526,1,0,0,1,1,RON,4,5,Baker/W I 94,RAMP,1427009,0,0.215,0,,1.09,4 +10437,1,0.316417,1,0,0,1,1,ROF,4,5,W I 94/Baker,RAMP,1427010,0,0.316,0,,2.24,5 +9643,1,0.24937,2,0,0,2,4,DIV,4,5,Jackson,Rd,1426508,13.914,14.163,0,5.984871,4.5,4.5 +9527,0,0.045559,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.227,0.273,0,1.093413,3.7,5 +9538,1,0.27327,1,0,0,1,1,ROF,4,5,E I 94/Baker,RAMP,1426606,0,0.273,0,,2.24,5 +9555,1,0.195392,3,0,0,1,1,,4,5,E I 94,,1426109,12.924,13.119,0,,0.8,7.5 +9533,1,0.191832,1,0,0,1,1,RON,4,5,Baker/E I 94,RAMP,1426607,0,0.192,0,,1.09,4 +9528,0,0.007524,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.22,0.227,0,0.180566,3.7,5 +9526,0,0.009125,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.449,0.458,0,0.219007,3.7,5 +10397,-1,0.226413,0,3,0,1,1,,4,5,W I 94,,1426110,13.164,13.391,0,,0.8,7.5 +9625,1,0.227615,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,14.991,15.219,0,5.462756,3.7,5 +26026,0,0.247251,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.934032,0.15,4 +24634,0,0.897816,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.547577,0.15,4 +11304,0,0.759234,1,1,0,2,4,,4,5,Main,St,1446002,1.128,1.887,0,18.221609,4.5,4.5 +24639,0,0.533496,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.803909,0.15,4 +24636,0,0.426283,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.23079,0.15,4 +9550,1,0.481025,3,0,0,1,1,,4,5,E I 94,,1426109,15.28,15.761,0,,0.8,7.5 +9604,1,0.848633,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,16.673,17.522,0,20.367203,3.7,5 +9619,1,0.459473,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,16.214,16.673,0,11.027359,3.7,5 +10360,-1,0.4196,0,3,0,1,1,,4,5,W I 94,,1426110,15.023,15.442,0,,0.8,7.5 +10436,1,0.272605,1,0,0,1,1,ROF,4,5,W I 94/Zeeb,RAMP,1427102,0,0.273,0,,2.24,5 +10988,0,0.572004,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,5.688,6.259,0,13.728102,4.5,4.5 +21737,1,0.424915,1,0,0,1,1,RON,4,5,Zeeb/E I 94,RAMP,4604907,0,0.425,0,,1.09,4 +26423,0,0.168678,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.048275,0.15,4 +29984,0,0.517149,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.411582,0.15,4 +30116,0,0.705991,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.943778,0.15,4 +26415,0,0.478441,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.482586,0.15,4 +10915,0,0.372256,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,6.584,6.956,0,8.934149,4.5,4.5 +9490,1,0.205787,2,0,0,1,1,RON,4,5,Zeeb/E I 94,RAMP,1426702,0,0.206,0,,1.09,4 +9492,1,0.314971,1,0,0,1,1,ROF,4,5,E I 94/Zeeb,RAMP,1426701,0,0.315,0,,2.24,5 +9551,1,0.202068,3,0,0,1,1,,4,5,E I 94,,1426109,15.078,15.28,0,,0.8,7.5 +10165,1,0.207315,1,0,0,1,1,RON,4,5,Zeeb/W I 94,RAMP,1427101,0,0.207,0,,1.09,4 +10945,0,0.164725,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.355,6.52,0,3.953394,4.5,4.5 +10986,0,0.020571,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.259,6.28,0,0.493693,4.5,4.5 +10970,0,0.010561,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.344,6.355,0,0.253471,4.5,4.5 +10939,0,0.064746,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.52,6.584,0,1.553914,4.5,4.5 +26425,0,0.309226,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.421428,0.15,4 +26427,0,0.247173,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.932153,0.15,4 +11069,0,0.316123,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,4.872,5.188,0,7.586948,4.5,4.5 +10903,0,0.898485,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,7.759,8.658,0,21.563646,5.8,4.5 +21804,0,1.055214,1,1,0,2,5,,4,5,Huron River,Dr,4604062,2.481,3.536,0,25.325129,5.8,4.5 +25035,0,0.43481,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.435435,0.15,4 +11298,0,0.481148,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,3.342,3.823,0,11.547549,4.5,4.5 +10565,0,0.121521,1,1,0,2,4,,4,5,Miller,Rd,1430906,0,0.122,0,2.916492,4.5,4.5 +10906,0,0.162667,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,7.458,7.62,0,3.904011,4.5,4.5 +11088,0,0.17626,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,3.823,3.999,0,4.23025,4.5,4.5 +10904,0,0.139126,1,1,0,2,4,,4,5,Zeeb,Rd,1436703,7.62,7.759,0,3.339023,4.5,4.5 +10901,0,0.516012,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,8.878,9.393,0,12.384288,5.8,4.5 +25037,0,0.677045,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.249074,0.15,4 +26028,0,0.552613,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.262714,0.15,4 +10902,0,0.220086,1,1,0,2,5,,4,5,Zeeb,Rd,1436703,8.658,8.878,0,5.282061,5.8,4.5 +9662,0,0.603062,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,12.116,12.719,0,14.473499,4.5,4.5 +10769,0,1.001238,1,1,0,2,4,,5,5,Wagner,Rd,1433102,10.68,11.68,0,24.029703,3,4 +10806,0,0.410248,1,1,0,2,5,,4,5,Lohr,Rd,1436708,2.523,2.933,0,9.845955,5.8,4.5 +10896,0,0.389708,1,1,0,2,4,,4,5,Ann Arbor Saline,Rd,1436706,1.63,2.02,0,9.352989,4.5,4.5 +10899,0,0.890944,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1436706,0,0.891,0,21.382655,3,4 +11101,0,0.609707,1,1,0,2,5,,5,5,Waters,Rd,1436510,11.579,12.189,0,14.632968,3.7,5 +20018,0,0.240036,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,1.35,1.59,0,5.76086,5.8,4.5 +26027,0,0.596254,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.310091,0.15,4 +26034,0,0.649075,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.577796,0.15,4 +26035,0,0.894225,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.461396,0.15,4 +26283,0,0.693484,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.64361,0.15,4 +26284,0,0.535774,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.858579,0.15,4 +29993,0,0.460769,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.058465,0.15,4 +30109,0,0.98386,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.61264,0.15,4 +10754,0,0.581424,1,1,0,2,5,,5,5,Pleasant Lake,Rd,1436909,4.431,5.012,0,13.954166,3.7,5 +10779,0,0.604832,1,1,0,2,4,,5,5,Wagner,Rd,1433102,10.075,10.68,0,14.515958,3,4 +26245,0,0.415309,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.967415,0.15,4 +10780,0,0.403874,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,9.671,10.075,0,9.692971,3,4 +10783,0,0.511781,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1433102,9.16,9.671,0,12.282742,3,4 +9663,0,0.978557,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,11.138,12.116,0,23.485356,4.5,4.5 +10766,0,0.912606,1,1,0,2,4,,5,5,Wagner,Rd,1433102,11.68,12.593,0,21.902544,3,4 +26409,0,0.955866,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.940792,0.15,4 +26410,0,1.000785,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.018846,0.15,4 +26413,0,0.991426,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.794228,0.15,4 +11111,0,0.543959,1,1,0,2,5,,5,5,Waters,Rd,1436510,11.036,11.579,0,13.055017,3.7,5 +26033,0,0.154185,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,3.700441,0.15,4 +26426,0,0.431006,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.344134,0.15,4 +10751,0,0.429303,1,1,0,2,4,,4,5,Wagner,Rd,1433102,12.593,13.022,0,10.303262,4.5,4.5 +10819,0,0.572506,1,1,1,2,5,,4,5,Lohr,Rd,1436708,1.436,2.009,0,13.740147,5.8,4.5 +21695,0,0.164365,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,6.287,6.451,0,3.944751,4.5,4.5 +21723,0,0.846258,1,1,0,2,4,,4,5,Maple,Rd,4603041,1.234,2.08,0,20.310187,4.5,4.5 +25013,0,1.032953,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.79087,0.15,4 +26031,0,0.659309,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.823424,0.15,4 +26261,0,0.518159,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.435811,0.15,4 +21991,0,0.24547,1,1,0,2,4,,4,5,Maple,Rd,4603041,0.988,1.234,0,5.891284,4.5,4.5 +26262,0,0.500152,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.003644,0.15,4 +26273,0,0.639788,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.354907,0.15,4 +21783,0,0.409829,1,1,0,2,4,,4,5,Maple,Rd,4603041,0.579,0.988,0,9.83589,4.5,4.5 +10898,0,0.468231,1,1,0,2,4,,5,5,Ann Arbor Saline,Rd,1436706,0.891,1.359,0,11.237536,3,4 +21485,0,0.325219,1,1,0,2,7,GRV,5,5,Ellsworth,Rd,4602939,5.663,5.988,0,7.805249,5.55,5 +21510,0,0.165518,1,1,0,2,4,,4,5,Maple,Rd,4603041,2.08,2.245,0,3.972426,4.5,4.5 +21947,0,0.299242,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,5.988,6.287,0,7.1818,4.5,4.5 +10897,0,0.271787,1,1,0,2,4,,4,5,Ann Arbor Saline,Rd,1436706,1.359,1.63,0,6.522892,4.5,4.5 +21295,0,0.175634,1,1,0,2,4,,4,5,Maple,Rd,4603041,2.245,2.421,0,4.215204,4.5,4.5 +10824,0,0.905739,1,1,1,2,5,,4,5,Lohr,Rd,1436708,0.531,1.436,0,21.737743,5.8,4.5 +26260,0,0.669333,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.063994,0.15,4 +10818,0,0.169584,1,1,0,2,5,,4,5,Lohr,Rd,1436708,2.009,2.178,0,4.070016,5.8,4.5 +20019,0,0.409431,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,0.941,1.35,0,9.826354,5.8,4.5 +21484,0,0.528378,1,1,0,2,4,,4,5,Ellsworth,Rd,4602939,6.451,6.98,0,12.681074,4.5,4.5 +26030,0,0.490341,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.768185,0.15,4 +26032,0,0.457477,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.979441,0.15,4 +26029,0,0.194391,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.66539,0.15,4 +10810,0,0.34485,1,1,0,2,5,,4,5,Lohr,Rd,1436708,2.178,2.523,0,8.276389,5.8,4.5 +9630,0,0.150382,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.445,13.595,0,3.609158,6,4.5 +10284,0,0.198993,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.683,0.882,0,4.775824,5,5 +10649,0,0.144916,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.364,0.509,0,3.477984,8,4.5 +11096,0,0.245159,1,1,0,2,5,,4,5,Waters,Rd,1436510,12.189,12.434,0,5.883828,5.8,4.5 +20015,0,0.722512,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,2.288,3.01,0,17.340288,5.8,4.5 +20016,0,0.456941,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,1.831,2.288,0,10.966574,5.8,4.5 +26021,0,0.129365,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.104762,0.15,4 +26038,0,0.347012,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.328293,0.15,4 +26599,0,0.316362,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.592684,0.15,4 +30058,0,0.432994,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.391854,0.15,4 +26036,0,0.313595,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.526281,0.15,4 +26037,0,0.186352,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.47244,0.15,4 +9660,0,0.157213,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,13.088,13.245,0,3.773124,4.5,4.5 +10651,0,0.227271,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0,0.227,0,5.454509,8,4.5 +10777,0,0.21767,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.465,0.683,0,5.224077,6,4.5 +11574,0,0.305553,1,1,0,2,4,,3,5,Maple,Rd,1452206,0,0.305,0,7.333275,6,4.5 +24640,0,0.352998,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.471942,0.15,4 +24641,0,0.393668,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.448023,0.15,4 +26391,0,0.154986,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.719652,0.15,4 +30046,0,0.290117,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.962813,0.15,4 +9661,0,0.369151,1,1,0,2,4,,4,5,Scio Church,Rd,1426103,12.719,13.088,0,8.859615,4.5,4.5 +11422,0,0.159572,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.305,0.465,0,3.829736,6,4.5 +11567,0,0.240188,1,1,0,2,4,,3,5,Maple,Rd,1452206,0.683,0.923,0,5.764516,6,4.5 +30045,0,0.214783,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.154792,0.15,4 +9658,0,0.199629,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.245,13.445,0,4.791103,6,4.5 +26039,0,0.374682,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.992368,0.15,4 +10650,0,0.137197,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.227,0.364,0,3.292731,8,4.5 +26012,0,0.167971,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.031296,0.15,4 +26013,0,0.194805,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.675313,0.15,4 +9508,0,0.013533,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.669,0.683,0,0.324781,5,5 +9494,1,0.36918,2,0,0,1,1,,3,5,E I 94,,1426109,21.159,21.528,0,,0.58,7 +9495,1,0.312351,2,0,0,1,1,,3,5,E I 94,,1426109,20.847,21.159,0,,0.58,7 +9644,1,0.49244,1,0,0,1,1,RON,3,5,Ann Arbor Saline/W I 94,RAMP,1427108,0,0.492,0,,1.09,4 +9766,1,0.320184,1,0,0,1,1,RON,3,5,S Ann Arbor Saline/E I 94,RAMP,1426803,0,0.32,0,,1.09,4 +9830,-1,0.274725,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,0,0.275,0,6.593391,5,5 +9888,1,0.379886,1,0,0,1,1,RON,4,5,N Ann Arbor Saline/E I 94,RAMP,1426805,0,0.38,0,,1.09,4 +9960,1,0.375054,1,0,0,1,1,ROF,4,5,E I 94/Ann Arbor Saline,RAMP,1426802,0,0.375,0,,2.24,5 +10346,-1,1.005268,0,2,0,1,1,,3,5,W I 94,,1426110,20.673,21.678,0,,0.58,7 +10421,1,0.582897,1,0,0,1,1,ROF,3,5,W I 94/Ann Arbor Saline,RAMP,1427109,0,0.583,0,,2.24,5 +10857,0,0.146242,2,2,0,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.512,2.658,0,3.509813,5,5 +11043,0,0.320184,1,1,0,2,5,,4,5,Lohr,Rd,1436510,12.718,13.038,0,7.684412,5.8,4.5 +21398,1,0.275191,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,0,0.275,0,6.604572,5,5 +30057,0,0.361427,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.674243,0.15,4 +10864,0,0.178585,2,2,1,2,4,,4,5,Ann Arbor Saline,Rd,1436706,2.218,2.397,0,4.286038,4.5,4.5 +10894,0,0.19829,1,1,0,2,4,,4,5,Ann Arbor Saline,Rd,1436706,2.02,2.218,0,4.758971,4.5,4.5 +11089,0,0.074215,1,1,0,2,5,,4,5,Lohr,Rd,1436510,12.644,12.718,0,1.781164,5.8,4.5 +20017,0,0.241241,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,1.59,1.831,0,5.789777,5.8,4.5 +11094,0,0.209983,1,1,0,2,5,,4,5,Waters,Rd,1436510,12.434,12.644,0,5.039583,5.8,4.5 +10863,0,0.115478,2,2,0,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.397,2.512,0,2.77148,5,5 +10845,0,0.289514,2,2,1,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.73,3.02,0,6.948325,5,5 +19637,0,0.183233,1,1,1,2,5,,3,5,Oakbrook,Dr,1908304,0,0.183,0,4.397586,8,4.5 +10852,0,0.071981,2,2,1,2,3,,3,5,Ann Arbor Saline,Rd,1436706,2.658,2.73,0,1.727551,5,5 +9518,0,0.2929,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.392,1.685,0,7.029603,5,5 +9626,0,0.151678,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.919,14.07,0,3.640276,6,4.5 +9761,0,0.574578,1,1,0,2,4,,3,5,7th,St,1430205,0.474,1.048,0,13.789879,6,4.5 +10646,0,0.060828,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.874,0.935,0,1.459869,8,4.5 +26431,0,0.248514,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.964324,0.15,4 +26432,0,0.261951,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.286814,0.15,4 +26434,0,0.277957,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.670976,0.15,4 +9627,0,0.324006,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,13.595,13.919,0,7.776149,6,4.5 +9566,0,0.156194,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.179,1.335,0,3.748661,5,5 +10023,0,0.218979,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,0.882,1.101,0,5.255484,5,5 +10648,0,0.222708,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.509,0.732,0,5.344985,8,4.5 +26435,0,0.144177,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.46025,0.15,4 +26437,0,0.234139,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.619335,0.15,4 +30043,0,0.271575,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.517802,0.15,4 +9809,0,0.077997,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.101,1.179,0,1.871928,5,5 +26436,0,0.178334,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.280012,0.15,4 +9762,0,0.057032,1,1,1,2,3,,3,5,Stadium,Blvd,1429506,1.335,1.392,0,1.368767,5,5 +10647,0,0.142304,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.732,0.874,0,3.415293,8,4.5 +9563,0,0.122605,1,1,0,2,4,,3,5,7th,St,1430205,1.228,1.35,0,2.942518,6,4.5 +10645,0,0.244822,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,0.935,1.18,0,5.875717,8,4.5 +9516,0,0.179843,1,1,0,2,4,,3,5,7th,St,1430205,1.048,1.228,0,4.316238,6,4.5 +10336,0,0.136896,1,1,0,2,4,,3,5,7th,St,1430205,1.35,1.487,0,3.285493,6,4.5 +9522,1,0.581178,2,0,0,1,1,,3,5,E I 94,,1426109,17.469,18.05,0,,0.58,7 +10194,1,0.141507,1,0,0,1,1,RON,3,5,I 94 BL/E I 94,RAMP,1426707,0,0.142,0,,1.09,4 +10350,1,1.000495,2,0,0,1,2,,3,5,E M 14,,1426704,1.139,2.139,0,,0.58,7 +10354,-1,1.318762,0,2,0,1,1,,4,5,W I 94,,1426110,16.743,18.062,0,,0.8,7.5 +10435,-1,0.930263,0,2,0,1,2,,3,5,W M 14,,1427103,1.119,2.049,0,,0.58,7 +10542,0,0.727933,1,1,0,2,5,,4,5,Newport,Rd,1430907,0.669,1.397,0,17.470389,5.8,4.5 +10559,0,0.254839,1,1,0,2,4,,3,5,Miller,Rd,1430906,2.934,3.189,0,6.116145,6,4.5 +10561,0,0.488559,1,1,0,2,4,,4,5,Miller,Rd,1430906,2.229,2.718,0,11.725406,4.5,4.5 +10566,1,0.35179,1,0,0,1,2,ROF,3,5,E M 14/Miller,RAMP,1430901,0,0.352,0,,2.24,5 +10724,0,0.387834,1,1,0,2,4,,4,5,Wagner,Rd,1433102,15.643,16.031,0,9.30801,4.5,4.5 +11058,0,0.387591,1,1,0,2,4,,3,5,Dexter,Rd,1446002,6.996,7.384,0,9.302175,6,4.5 +37353,-1,0.44018,0,1,0,1,2,ROF,4,5,W M 14/Miller/Maple,RAMP,1431903,0,0.44,0,,2.24,5 +37347,1,0.316111,1,0,0,1,2,ROF,3,5,E M 14/Miller/Maple,RAMP,1446110,0,0.316,0,,2.24,5 +21479,0,0.345122,1,1,0,2,4,,3,5,Liberty,Rd,4603025,5.637,5.982,0,8.282923,6,4.5 +21802,0,0.228762,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.21,0.439,0,5.490294,5,5 +21860,0,1.0704,1,1,0,2,5,,4,5,Huron River,Dr,4604062,5.644,6.714,0,25.689609,5.8,4.5 +26015,0,0.701637,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.839297,0.15,4 +26288,0,0.457082,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.969964,0.15,4 +26445,0,0.396723,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.521361,0.15,4 +26449,0,0.473532,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.364771,0.15,4 +29983,0,0.4005,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.612002,0.15,4 +9472,1,1.138982,2,0,0,1,2,,4,5,E M 14,,1426704,0,1.139,0,,0.8,7.5 +9537,1,0.66129,2,0,0,1,1,,4,5,E I 94,,1426109,16.808,17.469,0,,0.8,7.5 +9598,1,0.715736,2,0,0,2,3,DIV,4,5,Jackson,Rd,1426508,17.522,18.237,0,17.177669,3.7,5 +10163,-1,1.119382,0,2,0,1,2,,3,5,W M 14,,1427103,0,1.119,0,,0.58,7 +10731,0,0.419583,1,1,0,2,4,,3,5,Wagner,Rd,1433102,14.631,15.051,0,10.069983,6,4.5 +11064,0,0.580921,1,1,0,2,4,,4,5,Dexter Ann Arbor,Rd,1446002,5.84,6.421,0,13.94211,4.5,4.5 +22073,-1,1.021214,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,3.301,4.322,0,24.509133,3.7,5 +26014,0,0.647759,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.546221,0.15,4 +26420,0,0.985265,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.64635,0.15,4 +26421,0,0.230548,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.533143,0.15,4 +26422,0,0.187098,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.49034,0.15,4 +26417,0,0.623367,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.960805,0.15,4 +29877,0,0.613861,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.732673,0.15,4 +26017,0,0.635106,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.242537,0.15,4 +9588,1,0.399998,2,0,0,2,3,DIV,3,5,Jackson,Ave,1426508,18.237,18.637,0,9.599956,5,5 +10348,1,0.347089,2,0,0,1,1,ROF,3,5,E I 94/I 94 BL,RAMP,1426706,0,0.347,0,,2.24,5 +10736,0,0.203851,1,1,1,2,4,,3,5,Wagner,Rd,1433102,14.175,14.379,0,4.892413,6,4.5 +21805,-1,0.528134,0,2,0,2,3,DIV,3,5,Jackson,Ave,5490574,4.322,4.85,0,12.675219,5,5 +21944,0,0.482633,1,1,0,2,4,,3,5,Liberty,Rd,4603025,5.072,5.554,0,11.583181,6,4.5 +26438,0,0.346071,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.305698,0.15,4 +26439,0,0.428807,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.291363,0.15,4 +29878,0,0.371258,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.910188,0.15,4 +10745,0,0.394114,1,1,1,2,4,,3,5,Wagner,Rd,1433102,13.781,14.175,0,9.458747,6,4.5 +10733,0,0.233949,1,1,1,2,4,,3,5,Wagner,Rd,1433102,14.379,14.613,0,5.614766,6,4.5 +10732,0,0.01824,1,1,1,2,4,,3,5,Wagner,Rd,1433102,14.613,14.631,0,0.437762,6,4.5 +26440,0,0.425385,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.209238,0.15,4 +21693,0,0.082607,1,1,0,2,4,,3,5,Liberty,Rd,4603025,5.554,5.637,0,1.982579,6,4.5 +21312,1,0.103879,4,0,0,2,3,DIV,3,5,Jackson,Ave,4604878,0.088,0.192,0,2.493092,5,5 +21527,1,0.088333,4,0,0,2,3,DIV,3,5,Jackson,Ave,4604878,0,0.088,0,2.119999,5,5 +21581,-1,0.107677,0,2,0,2,3,DIV,3,5,Jackson,Ave,5490574,4.85,4.958,0,2.584255,5,5 +26442,0,0.124292,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.982996,0.15,4 +26443,0,0.115797,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.77912,0.15,4 +22070,0,0.018378,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.192,0.21,0,0.441075,5,5 +10727,0,0.592628,1,1,0,2,4,,4,5,Wagner,Rd,1433102,15.051,15.643,0,14.223078,4.5,4.5 +11277,0,0.575297,1,1,0,2,4,,3,5,Dexter,Rd,1446002,6.421,6.996,0,13.807122,6,4.5 +26446,0,0.214316,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.14359,0.15,4 +10560,0,0.216625,1,1,0,2,4,,4,5,Miller,Rd,1430906,2.718,2.934,0,5.198999,4.5,4.5 +10567,1,0.294244,1,0,0,1,2,RON,4,5,Miller/W M 14,RAMP,1430810,0,0.294,0,,1.09,4 +10562,0,0.653815,1,1,0,2,4,,4,5,Miller,Rd,1430906,1.576,2.229,0,15.691552,4.5,4.5 +21361,0,0.697248,1,1,0,2,5,,4,5,Huron River,Dr,4604062,4.21,4.907,0,16.733944,5.8,4.5 +22126,0,0.73747,1,1,0,2,5,,4,5,Huron River,Dr,4604062,4.907,5.644,0,17.699282,5.8,4.5 +29982,0,1.152083,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,27.649993,0.15,4 +10563,0,0.468767,1,1,0,2,4,,4,5,Miller,Rd,1430906,1.107,1.576,0,11.250414,4.5,4.5 +26018,0,0.731174,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.548177,0.15,4 +26019,0,0.654766,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.714382,0.15,4 +10717,0,0.737248,1,1,0,2,5,,4,5,Wagner,Rd,1433102,16.26,16.997,0,17.693959,5.8,4.5 +26693,0,0.510515,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.252351,0.15,4 +10723,0,0.229049,1,1,0,2,5,,4,5,Wagner,Rd,1433102,16.031,16.26,0,5.49718,5.8,4.5 +29505,0,0.42977,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.314488,0.15,4 +10552,0,0.180879,1,1,0,2,4,,3,5,Miller,Rd,1430906,4.486,4.667,0,4.341091,6,4.5 +10554,0,0.343367,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.996,4.339,0,8.240813,6,4.5 +11033,0,0.200834,1,1,0,2,7,,3,5,Brooks,St,1446307,0,0.201,0,4.82002,7,4.5 +11049,0,0.344183,1,1,0,2,4,,3,5,Dexter,Ave,1446002,7.939,8.283,0,8.2604,6,4.5 +11528,0,0.195518,2,2,1,2,4,,3,5,Maple,Rd,1452206,2.077,2.273,0,4.692427,6,4.5 +21322,0,0.079044,1,1,0,2,4,,3,5,Liberty,St,4603025,6.5,6.579,0,1.897057,6,4.5 +21419,0,0.304391,1,1,1,2,3,,3,5,Jackson,Ave,4604878,0.986,1.29,0,7.305382,5,5 +26463,0,0.371983,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.927592,0.15,4 +26464,0,0.362272,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.694535,0.15,4 +29961,0,0.37874,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.089748,0.15,4 +30025,0,0.370405,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.889726,0.15,4 +30061,0,0.370712,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.897091,0.15,4 +9889,0,0.121601,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0,0.122,0,2.918432,5,5 +10349,-1,0.406288,0,2,0,1,1,,3,5,W I 94,,1426110,18.062,18.468,0,,0.58,7 +10423,1,0.218862,1,0,0,1,1,ROF,3,5,W I 94/I 94 BL,RAMP,1427106,0,0.219,0,,2.24,5 +11056,0,0.385056,1,1,0,2,4,,3,5,Dexter,Ave,1446002,7.484,7.868,0,9.241349,6,4.5 +11303,0,0.181799,1,1,0,2,4,,3,5,Maple,Rd,1452206,1.446,1.627,0,4.363183,6,4.5 +21858,0,0.279333,1,1,1,2,3,,3,5,Jackson,Ave,4604878,0.635,0.914,0,6.703991,5,5 +22028,0,0.176539,2,2,1,2,4,,3,5,Liberty,St,4603025,6.084,6.261,0,4.236939,6,4.5 +26452,0,0.2062,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.948804,0.15,4 +26469,0,0.159095,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.818288,0.15,4 +11557,0,0.205196,1,1,0,2,4,,3,5,Maple,Rd,1452206,1.241,1.446,0,4.92471,6,4.5 +26470,0,0.247064,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.929537,0.15,4 +21269,0,0.10254,1,1,0,2,4,,3,5,Liberty,St,4603025,5.982,6.084,0,2.460967,6,4.5 +26471,0,0.070629,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.695091,0.15,4 +9645,1,0.171412,1,0,0,1,1,RON,3,5,W I 94 BL/W I 94,RAMP,1427105,0.048,0.219,0,,1.09,4 +10157,1,0.047986,1,0,0,1,1,RON,3,5,W I 94 BL/W I 94,RAMP,1427105,0,0.048,0,,1.09,4 +11281,0,0.339033,2,2,1,2,4,,3,5,Maple,Rd,1452206,1.738,2.077,0,8.136796,6,4.5 +21578,0,0.026791,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.439,0.466,0,0.642974,5,5 +26444,0,0.292074,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.009764,0.15,4 +26467,0,0.169243,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.061821,0.15,4 +19606,1,0.021576,1,0,0,1,1,RON,3,5,E I 94 BL/W I 94,RAMP,1908802,0,0.022,0,,1.09,4 +22124,0,0.152818,2,2,1,2,3,,3,5,Jackson,Ave,4604878,0.482,0.635,0,3.66762,5,5 +21359,0,0.016083,2,2,0,2,3,,3,5,Jackson,Ave,4604878,0.466,0.482,0,0.385992,5,5 +11531,0,0.110977,2,2,1,2,3,,3,5,Maple,Rd,1452206,1.627,1.738,0,2.663437,5,5 +11269,0,0.099986,1,1,0,2,4,,3,5,Dexter,Rd,1446002,7.384,7.484,0,2.399667,6,4.5 +9227,0,0.193592,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.18,0.373,0,4.646219,5,5 +21539,0,0.23922,1,1,0,2,4,,3,5,Liberty,St,4603025,6.261,6.5,0,5.741282,6,4.5 +26453,0,0.292771,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.026513,0.15,4 +37895,0,0.003356,1,1,0,2,7,,,8,Shiawassee,Ave,1530104,0.233,0.236,0,0.080552,5.8,6 +9672,0,0.057932,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,0.122,0.18,0,1.390362,5,5 +26454,0,0.217468,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.21923,0.15,4 +26456,0,0.130166,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.123981,0.15,4 +21616,0,0.07203,1,1,1,2,3,,3,5,Jackson,Ave,4604878,0.914,0.986,0,1.728716,5,5 +26458,0,0.142721,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.425313,0.15,4 +11261,0,0.07031,1,1,0,2,4,,3,5,Dexter,Ave,1446002,7.868,7.939,0,1.687438,6,4.5 +37385,1,0.032495,1,0,0,2,4,,5,8,Hamburg,Rd,932902,0.46,0.492,0,0.779874,3,4 +10556,0,0.426758,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.456,3.882,0,10.242182,6,4.5 +10557,0,0.212279,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.244,3.456,0,5.094685,6,4.5 +37388,-1,0.011809,0,1,0,2,4,,5,8,Winans Lake,Rd,4105275,0,0.012,0,0.283419,3,4 +11268,0,0.313846,2,1,0,2,4,,3,5,Maple,Rd,1452206,2.724,3.038,0,7.532307,6,4.5 +26460,0,0.343268,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.238426,0.15,4 +26461,0,0.355916,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.541977,0.15,4 +26462,0,0.476034,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.424811,0.15,4 +11276,0,0.364567,2,2,1,2,4,,3,5,Maple,Rd,1452206,2.273,2.637,0,8.749613,6,4.5 +11520,0,0.086792,2,2,1,2,4,,3,5,Maple,Rd,1452206,2.637,2.724,0,2.083007,6,4.5 +37389,1,0.010972,1,0,0,2,4,,5,8,Hamburg,Rd,940105,2.011,2.022,0,0.263317,3,4 +37350,1,0.34801,1,0,0,1,2,RON,3,5,Maple/E M 14,RAMP,1430504,0,0.348,0,,1.09,4 +10558,0,0.054681,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.189,3.244,0,1.31235,6,4.5 +37351,1,0.274286,1,0,0,1,2,ROF,4,5,W M 14/Maple,RAMP,1431101,0,0.274,0,,2.24,5 +10555,0,0.113637,1,1,0,2,4,,3,5,Miller,Rd,1430906,3.882,3.996,0,2.727281,6,4.5 +26459,0,0.238481,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.723541,0.15,4 +10122,0,0.196261,1,1,1,2,4,,2,5,7th,St,1430205,2.011,2.207,0,4.710271,8,4.5 +21469,0,0.225818,2,2,0,2,3,,3,5,Huron,St,4604878,1.519,1.745,0,5.41962,5,5 +21589,0,0.057408,1,1,0,2,4,,3,5,Liberty,St,4603025,6.93,6.987,0,1.377784,6,4.5 +26022,0,0.304755,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.314122,0.15,4 +26408,0,0.105901,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.541626,0.15,4 +26474,0,0.171664,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.119943,0.15,4 +26475,0,0.255722,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.137337,0.15,4 +30026,0,0.274847,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.596323,0.15,4 +30059,0,0.307503,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.380064,0.15,4 +30060,0,0.310485,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.451629,0.15,4 +22082,0,0.226851,1,1,0,2,4,,3,5,Liberty,St,4603025,6.579,6.806,0,5.444417,6,4.5 +26023,0,0.273755,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.570127,0.15,4 +21813,0,0.123887,1,1,0,2,4,,3,5,Liberty,St,4603025,6.806,6.93,0,2.973295,6,4.5 +21934,0,0.106423,1,1,1,2,3,,3,5,Jackson,Ave,4604878,1.29,1.397,0,2.554156,5,5 +26468,0,0.154643,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.711431,0.15,4 +29962,0,0.272397,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.537538,0.15,4 +21683,0,0.122502,2,2,0,2,3,,3,5,Huron,St,4604878,1.397,1.519,0,2.94004,5,5 +26472,0,0.165672,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.976123,0.15,4 +9609,0,0.082292,1,1,0,2,4,,2,5,7th,St,1430205,1.792,1.874,0,1.975,8,4.5 +21371,0,0.242028,1,1,0,2,4,,3,5,Liberty,St,4603025,6.987,7.229,0,5.80866,6,4.5 +9849,0,0.059919,1,1,0,2,4,,2,5,7th,St,1430205,1.732,1.792,0,1.438054,8,4.5 +10386,0,0.137329,1,1,0,2,4,,2,5,7th,St,1430205,1.874,2.011,0,3.295903,8,4.5 +22135,0,0.160298,1,1,0,2,4,,2,5,Liberty,St,4603025,7.229,7.389,0,3.847162,8,4.5 +10551,0,0.055624,1,1,0,2,4,,3,5,Miller,Rd,1430906,4.667,4.722,0,1.334968,6,4.5 +21582,0,0.088636,1,1,0,2,4,,2,5,7th,St,4603894,0,0.089,0,2.127259,8,4.5 +9887,0,0.065647,1,1,1,2,4,,2,5,7th,St,1430205,2.207,2.273,0,1.575528,8,4.5 +26473,0,0.167749,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.025982,0.15,4 +21259,0,0.009949,2,2,0,2,3,,2,5,Huron,St,4604878,1.745,1.755,0,0.238779,6,5 +10549,0,0.116913,1,1,0,2,4,,2,5,Miller,Rd,1430906,4.771,4.888,0,2.805905,8,4.5 +22128,0,0.154755,1,1,0,2,4,,2,5,7th,St,4603894,0.161,0.315,0,3.71411,8,4.5 +26396,0,0.123028,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.952679,0.15,4 +26405,0,0.154806,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.715348,0.15,4 +21363,0,0.072139,1,1,0,2,4,,2,5,7th,St,4603894,0.089,0.161,0,1.731343,8,4.5 +10550,0,0.048483,1,1,0,2,4,,2,5,Miller,Rd,1430906,4.722,4.771,0,1.163601,8,4.5 +10543,0,0.216321,1,1,0,2,5,,3,5,Newport,Rd,1430907,0.453,0.669,0,5.1917,8,4.5 +10553,0,0.146895,1,1,0,2,4,,3,5,Miller,Rd,1430906,4.339,4.486,0,3.525484,6,4.5 +10848,0,0.402253,1,1,0,2,5,,3,5,Sunset,Rd,1449801,0.679,1.082,0,9.654063,8,4.5 +11030,0,0.313617,1,1,0,2,5,,3,5,Brooks,St,1446307,0.376,0.69,0,7.526806,8,4.5 +26398,0,0.232409,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.577819,0.15,4 +26400,0,0.229701,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.512825,0.15,4 +10544,0,0.377428,1,1,0,2,5,,3,5,Newport,Rd,1430907,0.075,0.453,0,9.058268,8,4.5 +11230,0,0.175638,1,1,0,2,5,,3,5,Brooks,St,1446307,0.201,0.376,0,4.215302,8,4.5 +26402,0,0.394864,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.476725,0.15,4 +26466,0,0.211546,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.077102,0.15,4 +10581,0,0.127112,1,1,0,2,5,,3,5,Summit,St,1430803,0,0.127,0,3.050679,8,4.5 +11229,0,0.024748,1,1,0,2,5,,3,5,Brooks,St,1446307,0.69,0.715,0,0.593958,8,4.5 +10541,0,1.061681,1,1,0,2,5,,4,5,Newport,Rd,1430907,1.397,2.458,0,25.480348,5.8,4.5 +21618,0,1.43199,1,1,0,2,4,,4,5,Huron River,Dr,4604062,6.714,8.146,0,34.367755,4.5,4.5 +26253,0,0.802749,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,19.265984,0.15,4 +11462,0,0.417514,1,1,0,2,4,,4,5,Maple,Rd,1452206,3.722,4.14,0,10.020327,4.5,4.5 +11244,0,0.123027,1,1,0,2,4,,4,5,Maple,Rd,1452206,3.599,3.722,0,2.95265,4.5,4.5 +11307,0,0.068215,1,1,0,2,4,,4,5,Maple,Rd,1452206,4.14,4.208,0,1.637155,4.5,4.5 +26371,0,0.431204,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.348891,0.15,4 +26373,0,0.025852,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,0.620445,0.15,4 +5599,0,1.161954,1,1,0,2,4,,5,8,M 36,,932308,13.324,14.485,0,27.886897,3,4 +9975,0,0.891924,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,13.725,14.616,0,21.406167,3,4 +10514,-1,1.567687,0,2,0,1,2,,5,5,S US 23,,1431105,5.841,7.408,0,,1.02,7 +10527,1,1.624209,2,0,0,1,2,,5,5,N US 23,,1431003,5.801,7.424,0,,1.02,7 +11047,0,1.675192,1,1,0,2,5,,5,5,Main,St,1446105,0.088,1.762,0,40.204608,3.7,5 +11134,0,1.527018,1,1,0,2,6,GRV,5,5,Webster Church,Rd,1445610,2.291,3.817,0,36.648442,5.55,5 +11137,0,2.003141,1,1,0,2,5,,5,5,Mast,Rd,1445502,3.009,5.012,0,48.075377,3.7,5 +11341,0,0.381124,1,1,0,2,6,GRV,5,5,Valentine,Rd,1445706,0.88,1.261,0,9.146965,5.55,5 +19857,0,0.857709,1,1,0,2,7,GRV,5,8,Merrill,Rd,4104136,0.612,1.47,0,20.585019,5.55,5 +19860,0,0.922023,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,3.187,4.108,0,22.128561,3.7,5 +24623,0,1.290626,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,30.975028,0.15,4 +24624,0,1.321016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.704374,0.15,4 +26480,0,0.635161,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.243868,0.15,4 +26487,0,1.026258,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.630186,0.15,4 +28207,0,1.8355,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,44.052003,0.15,4 +30152,0,1.248355,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.960512,0.15,4 +9990,0,1.57268,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,11.067,12.639,0,37.744308,3,4 +11138,0,1.998898,1,1,0,2,5,,5,5,Mast,Rd,1445502,0,1.998,0,47.973556,3.7,5 +11148,0,1.940728,1,1,0,2,5,,4,5,Joy,Rd,1445109,0,1.94,0,46.577462,5.8,4.5 +11353,0,1.308541,1,1,0,2,5,,5,5,Webster Church,Rd,1445610,0.983,2.291,0,31.404988,3.7,5 +24619,0,0.663456,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.922953,0.15,4 +26481,0,1.634952,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.238855,0.15,4 +26866,0,1.145981,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,27.50354,0.15,4 +26867,0,1.302502,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.260037,0.15,4 +11139,0,0.263605,1,1,0,2,5,,4,5,Central,St,4605379,0.323,0.587,0,6.326528,5.8,4.5 +24637,0,0.291496,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.995913,0.15,4 +11358,0,0.022326,1,1,0,2,5,,5,5,Mast,Rd,4605379,0.587,0.609,0,0.535822,3.7,5 +9997,0,0.512443,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,10.554,11.067,0,12.298635,3,4 +11357,0,1.011693,1,1,0,2,5,,5,5,Mast,Rd,1445502,1.998,3.009,0,24.280621,3.7,5 +11136,0,0.983066,1,1,0,2,5,,5,5,Webster Church,Rd,1445610,0,0.983,0,23.593587,3.7,5 +11140,0,1.022411,1,1,0,2,5,,5,5,Joy,Rd,1445109,2.07,3.092,0,24.537852,3.7,5 +26482,0,1.329487,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.907693,0.15,4 +30114,0,1.564845,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.556285,0.15,4 +11360,0,0.13005,1,1,0,2,5,,4,5,Joy,Rd,1445109,1.94,2.07,0,3.121195,5.8,4.5 +9978,0,1.086563,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,12.639,13.725,0,26.077523,3,4 +6310,0,0.931035,1,1,0,2,4,,5,8,M 36,,932308,10.64,11.571,0,22.344834,3,4 +7208,0,1.212253,1,1,0,2,7,,5,8,Kress,Rd,932804,0,1.212,0,29.094063,5.8,6 +19862,0,1.252672,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,1.395,2.648,0,30.064127,3.7,5 +19863,0,1.097195,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,0.299,1.395,0,26.332689,3.7,5 +26127,0,1.679291,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,40.302976,0.15,4 +29125,0,1.303267,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.278405,0.15,4 +11356,0,0.801078,1,1,0,2,5,,5,5,Mast,Rd,1445502,5.012,5.813,0,19.225878,3.7,5 +19864,0,0.298672,1,1,0,2,5,,5,5,Strawberry Lake,Rd,4104134,0,0.299,0,7.168117,3.7,5 +6599,0,0.443323,1,1,0,2,4,,5,8,M 36,,932308,10.197,10.64,0,10.639762,3,4 +7211,0,0.809718,1,1,0,2,5,,5,8,Whitewood,Rd,932710,1.02,1.829,0,19.433234,3.7,5 +7768,0,0.782599,1,1,0,2,7,,5,8,Cordley Lake,Rd,944403,0.588,1.37,0,18.782375,5.8,6 +8027,0,0.588259,1,1,0,2,7,,5,8,Cordley Lake,Rd,944403,0,0.588,0,14.11821,5.8,6 +24643,0,1.222839,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.348125,0.15,4 +30150,0,0.28115,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,6.747605,0.15,4 +7213,0,0.688083,1,1,0,2,5,,5,8,Whitewood,Rd,932710,0,0.688,0,16.513985,3.7,5 +30151,0,0.406247,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,9.749917,0.15,4 +7212,0,0.332245,1,1,0,2,5,,5,8,Whitewood,Rd,932710,0.688,1.02,0,7.973886,3.7,5 +6822,0,0.405381,1,1,0,2,4,,5,8,M 36,,932308,9.791,10.197,0,9.72915,3,4 +6083,0,0.910165,1,1,0,2,4,,5,8,M 36,,932308,11.571,12.48,0,21.843965,3,4 +19856,0,1.022265,1,1,0,2,5,,5,8,Merrill,Rd,4104136,1.47,2.492,0,24.534353,3.7,5 +19861,0,0.539101,1,1,0,2,5,,5,8,Strawberry Lake,Rd,4104134,2.648,3.187,0,12.938414,3.7,5 +28209,0,0.283535,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,6.804834,0.15,4 +5822,0,0.843481,1,1,0,2,4,,5,8,M 36,,932308,12.48,13.324,0,20.243546,3,4 +9961,0,1.778097,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,14.616,16.394,0,42.674329,3,4 +25039,0,1.263719,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,30.329258,0.15,4 +26476,0,1.180767,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.338409,0.15,4 +22026,0,0.035777,1,1,0,2,6,GRV,5,5,Webster Church,Rd,4603367,0,0.036,0,0.858658,5.55,5 +9959,0,0.509014,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,16.394,16.903,0,12.216338,3,4 +10516,-1,1.00235,0,2,0,1,2,,5,5,S US 23,,1431105,4.612,5.614,0,,1.02,7 +10529,1,0.714475,2,0,0,1,2,,5,5,N US 23,,1431003,4.627,5.341,0,,1.02,7 +21692,0,0.423324,1,1,0,2,5,,5,5,Coyle,Rd,4603187,6.55,6.973,0,10.159776,3.7,5 +21943,0,1.093833,1,1,0,2,5,,5,5,Whitmore Lake,Rd,4603187,5.456,6.55,0,26.251994,3.7,5 +26478,0,0.355086,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.522058,0.15,4 +26477,0,0.056048,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.34516,0.15,4 +10530,1,0.320009,2,0,0,1,2,,5,5,N US 23,,1431003,4.307,4.627,0,,1.02,7 +11327,1,0.169894,1,0,0,1,2,ROF,5,5,N US 23/Territorial,RAMP,1431702,0,0.17,0,,2.24,5 +9958,0,0.223902,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,16.903,17.126,0,5.373649,3,4 +10517,-1,0.268675,0,2,0,1,2,,5,5,S US 23,,1431105,4.343,4.612,0,,1.02,7 +11284,1,0.138527,1,0,0,1,2,ROF,5,5,S US 23/Territorial,RAMP,1431806,0,0.139,0,,2.24,5 +10419,0,0.095299,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,17.126,17.222,0,2.287184,3,4 +11287,1,0.139895,1,0,0,1,2,RON,5,5,Territorial/S US 23,RAMP,1431805,0,0.14,0,,1.09,4 +11323,1,0.160691,1,0,0,1,2,RON,5,5,Territorial/N US 23,RAMP,1431704,0,0.161,0,,1.09,4 +10528,1,0.460254,2,0,0,1,2,,5,5,N US 23,,1431003,5.341,5.801,0,,1.02,7 +11292,1,0.184007,1,0,0,1,2,RON,5,5,6 Mile/N US 23,RAMP,1431707,0,0.184,0,,1.09,4 +11300,0,0.220901,1,1,0,2,5,,5,5,6 Mile,Rd,1431706,0.106,0.327,0,5.301624,3.7,5 +11321,1,0.229331,1,0,0,1,2,ROF,5,5,N US 23/6 Mile,RAMP,1431705,0,0.229,0,,2.24,5 +10515,-1,0.227464,0,2,0,1,2,,5,5,S US 23,,1431105,5.614,5.841,0,,1.02,7 +11265,1,0.24862,1,0,0,1,2,ROF,5,5,S US 23/6 Mile,RAMP,1431808,0,0.249,0,,2.24,5 +11320,0,0.097637,1,1,0,2,5,,5,5,6 Mile,Rd,1431706,0,0.098,0,2.343282,3.7,5 +11267,1,0.175706,1,0,0,1,2,RON,5,5,6 Mile/S US 23,RAMP,1431807,0,0.176,0,,1.09,4 +11311,0,0.008125,1,1,0,2,5,,5,5,6 Mile,Rd,1431706,0.098,0.106,0,0.195001,3.7,5 +11260,0,0.087757,1,1,0,2,5,,5,5,Main,St,1446105,0,0.088,0,2.10616,3.7,5 +5507,1,0.775074,2,0,0,1,2,,5,8,N US 23,,931510,0.238,1.012,0,,1.02,7 +6904,0,1.213457,1,1,0,2,5,,5,8,Whitmore Lake,Rd,932204,0,1.213,0,29.122956,3.7,5 +7198,0,0.905573,1,1,0,2,7,,5,8,Lemen,Rd,932908,0,0.905,0,21.733744,5.8,6 +7201,0,0.698486,1,1,0,2,5,,5,8,Hamburg,Rd,932904,0.105,0.803,0,16.763659,3.7,5 +7203,0,0.626425,1,1,0,2,4,,5,8,M 36,,932903,0.1,0.726,0,15.034192,3,4 +37387,1,0.013502,1,0,0,2,4,,5,8,Winans Lake,Rd,940105,2.022,2.035,0,0.324056,3,4 +8057,0,0.592318,1,1,0,2,5,,5,8,8 Mile,Rd,942008,0,0.592,0,14.215641,3.7,5 +11121,0,1.573622,1,1,0,2,6,GRV,5,5,Barker,Rd,1445807,0,1.573,0,37.766916,5.55,5 +26356,0,0.58053,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.932718,0.15,4 +8025,0,0.869315,1,1,0,2,7,GRV,5,8,Sheldon,Rd,944709,0,0.869,0,20.863564,5.55,5 +11325,0,1.305996,1,1,0,2,6,GRV,5,5,Merrill,Rd,1445805,0,1.306,0,31.343905,5.55,5 +19859,0,0.475281,1,1,0,2,7,GRV,5,5,Merrill,Rd,4104136,0,0.475,0,11.40675,5.55,5 +19858,0,0.137221,1,1,0,2,7,GRV,5,8,Merrill,Rd,4104136,0.475,0.612,0,3.293311,5.55,5 +8020,0,0.374515,1,1,0,2,5,,5,8,Sheldon,Rd,944709,0.985,1.359,0,8.988369,3.7,5 +7767,0,0.115836,1,1,0,2,7,,5,8,Sheldon,Rd,944709,0.869,0.985,0,2.780058,5.8,6 +19948,0,0.162871,1,1,0,2,5,,5,8,Hamburg,Rd,4102598,0,0.163,0,3.908899,3.7,5 +7202,0,0.104527,1,1,0,2,9,,5,8,Hamburg,Rd,932904,0,0.105,0,2.508653,5.8,6 +7199,0,0.246534,1,1,0,2,5,,5,8,Hall,Rd,932906,0,0.246,0,5.916825,3.7,5 +7200,0,0.335256,1,1,0,2,5,,5,8,Hamburg,Rd,932904,0.803,1.138,0,8.046144,3.7,5 +7846,0,0.364349,1,1,0,2,5,,5,8,Hamburg,Rd,940105,1.591,1.955,0,8.744385,3.7,5 +7205,0,0.459993,1,1,0,2,4,,5,8,Hamburg,Rd,932902,0,0.46,0,11.039839,3,4 +5145,0,0.308257,1,1,1,2,4,,5,8,M 36,,932308,14.485,14.793,0,7.398167,3,4 +7204,0,0.099766,1,1,0,2,5,,5,8,Hamburg,Rd,932903,0,0.1,0,2.394388,3.7,5 +7976,0,0.256724,1,1,0,2,5,,5,8,8 Mile,Rd,942008,0.811,1.068,0,6.161371,3.7,5 +11324,0,0.519497,1,1,0,2,5,,5,5,Barker,Rd,1445807,1.963,2.482,0,12.467935,3.7,5 +26352,0,0.897607,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.542572,0.15,4 +26479,0,0.450618,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.814837,0.15,4 +29996,0,0.625662,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.015889,0.15,4 +7272,0,0.219193,1,1,0,2,5,,5,8,8 Mile,Rd,942008,0.592,0.811,0,5.260632,3.7,5 +10513,-1,0.43805,0,2,0,1,2,,5,5,S US 23,,1431105,7.408,7.846,0,,1.02,7 +10525,1,0.222721,2,0,0,1,2,,5,5,N US 23,,1431003,7.829,8.052,0,,1.02,7 +11035,0,0.246069,1,1,0,2,5,,5,5,Main,St,1446105,2.116,2.362,0,5.905662,3.7,5 +11288,1,0.198861,1,0,0,1,2,ROF,5,5,N US 23/8 Mile,RAMP,1431801,0,0.199,0,,2.24,5 +11317,0,0.275789,1,1,0,2,5,,5,5,Barker,Rd,1445807,2.572,2.848,0,6.618931,3.7,5 +10526,1,0.404743,2,0,0,1,2,,5,5,N US 23,,1431003,7.424,7.829,0,,1.02,7 +11263,1,0.040568,1,0,0,1,2,RON,5,5,Barker/S US 23,RAMP,1431809,0,0.041,0,,1.09,4 +11289,1,0.139435,1,0,0,1,2,ROF,5,5,N US 23/Barker,RAMP,1431708,0,0.139,0,,2.24,5 +11258,1,0.107419,1,0,0,1,2,RON,5,5,Barker/S US 23,RAMP,1431809,0.041,0.148,0,,1.09,4 +11119,0,0.09014,1,1,0,2,5,,5,5,Barker,Rd,1445807,2.482,2.572,0,2.163371,3.7,5 +5506,1,0.237694,2,0,0,1,2,,5,8,N US 23,,931510,0,0.238,0,,1.02,7 +5590,1,0.204936,1,0,0,1,2,RON,5,8,8 Mile/N US 23,RAMP,931602,0.092,0.297,0,,1.09,4 +5594,-1,0.222191,0,2,0,1,2,,5,8,S US 23,,932002,0,0.222,0,,1.02,7 +5915,1,0.331607,1,0,0,1,2,ROF,5,8,S US 23/8 Mile,RAMP,932003,0,0.332,0,,2.24,5 +7362,0,0.164468,1,1,0,2,5,,5,5,Eight Mile,Rd,942008,1.149,1.314,0,3.947221,3.7,5 +10512,-1,0.181645,0,2,0,1,2,,5,5,S US 23,,1431105,7.846,8.028,0,,1.02,7 +7337,0,0.024092,1,1,0,2,5,,5,8,8 Mile,Rd,942008,1.068,1.092,0,0.578206,3.7,5 +11257,1,0.146175,1,0,0,1,2,RON,5,5,8 Mile/N US 23,RAMP,1431810,0,0.146,0,,1.09,4 +8068,0,0.046741,1,1,0,2,5,,5,5,Eight Mile,Rd,942008,1.103,1.149,0,1.121783,3.7,5 +7914,0,0.010599,1,1,0,2,5,,5,8,8 Mile,Rd,942008,1.092,1.103,0,0.25438,3.7,5 +5589,1,0.092482,1,0,0,1,2,RON,5,5,8 Mile/N US 23,RAMP,931602,0,0.092,0,,1.09,4 +7894,0,0.083168,1,1,0,2,5,,5,5,Eight Mile,Rd,942008,1.314,1.397,0,1.996026,3.7,5 +11236,0,0.354015,1,1,0,2,5,,5,5,Main,St,1446105,1.762,2.116,0,8.496351,3.7,5 +5138,0,0.872009,1,1,0,2,4,,5,8,M 36,,931604,0.066,0.938,0,20.928227,3,4 +6810,0,0.550396,1,1,0,2,4,,5,8,M 36,,931604,0.938,1.488,0,13.209512,3,4 +7825,0,0.264353,1,1,0,2,4,,5,8,Winans Lake,Rd,940105,3.424,3.689,0,6.344471,3,4 +26355,0,0.543345,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.040278,0.15,4 +26358,0,0.821435,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.714447,0.15,4 +26359,0,0.782992,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.791797,0.15,4 +5137,0,0.066051,1,1,0,2,4,,5,8,M 36,,931604,0,0.066,0,1.585227,3,4 +7827,0,0.198225,1,1,0,2,4,,5,8,Winans Lake,Rd,940105,3.226,3.424,0,4.757408,3,4 +6484,0,0.518555,1,1,0,2,4,,5,8,M 36,,931604,1.488,2.006,0,12.445324,3,4 +19505,1,0.036248,1,0,0,1,2,RON,5,8,E M 36/S US 23,RAMP,1903207,0,0.036,0,,1.09,4 +6301,0,0.027558,1,1,0,2,4,,5,8,M 36,,931604,2.006,2.034,0,0.661393,3,4 +7821,0,0.512477,1,1,0,2,4,,5,8,Winans Lake,Rd,940105,3.689,4.201,0,12.299443,3,4 +5700,1,0.20225,1,0,0,1,2,RON,5,8,Silver Lake/S US 23,RAMP,932006,0,0.202,0,,1.09,4 +6080,0,0.17445,1,1,0,2,4,,5,8,Whitmore Lake,Rd,932204,2.815,2.989,0,4.186801,3,4 +6181,0,0.024764,1,1,0,2,4,,5,8,Silver Lake,Rd,931608,0,0.025,0,0.594343,3,4 +9484,1,0.895251,2,0,0,1,1,,3,5,E I 94,,1426109,25.176,26.071,0,,0.58,7 +9673,1,0.26028,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.16,0.42,0,,0.58,7 +9735,0,0.87323,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,0.651,1.524,0,20.957521,6,4.5 +9811,1,0.334198,1,0,0,1,2,RON,3,5,Plymouth/S US 23,RAMP,1426907,0,0.334,0,,1.09,4 +9848,0,0.221018,1,1,0,2,5,,3,5,Arlington,Blvd,1429509,0.921,1.142,0,5.304437,8,4.5 +9953,0,0.07922,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.824,0.903,0,1.90127,5,5 +9985,0,0.088483,1,1,0,2,3,,2,5,State,St,1427508,6.051,6.14,0,2.123589,6,5 +10081,0,0.150884,1,1,0,2,7,,2,5,Division,St,1430304,0,0.151,0,3.621211,8.5,4.5 +10151,0,0.145638,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.07,3.215,0,3.495309,5,5 +10259,-1,0.316237,0,2,0,1,1,,3,5,W I 94,,1426110,25.203,25.519,0,,0.58,7 +10416,1,0.42746,1,0,0,1,1,RFF,3,5,S US 23/W I 94,RAMP,1427204,0,0.427,0,,0.58,7 +10445,1,0.687352,2,0,0,1,2,,4,5,E M 14,,1431408,2.483,3.17,0,,0.8,7.5 +10455,0,0.386751,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0.118,0.505,0,9.282025,6,4.5 +10456,0,0.118268,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0,0.118,0,2.838435,6,4.5 +10486,1,0.690237,2,0,0,1,2,,4,5,N US 23,,1431202,16.678,17.368,0,,0.8,7.5 +10492,1,1.035543,2,0,0,1,2,,3,5,N US 23,,1431202,12.148,13.184,0,,0.58,7 +10510,1,0.550104,1,0,0,1,1,RFF,4,5,E I 94/S US 23,RAMP,1431108,0,0.55,0,,0.58,7 +10605,0,0.153344,2,2,1,2,3,,3,5,Packard,St,1430704,4.002,4.155,0,3.680251,5,5 +10620,0,0.131454,1,1,0,2,3,,2,5,Packard,St,1430704,0.583,0.715,0,3.154888,6,5 +10710,0,0.286261,2,2,0,2,4,,4,5,Dixboro,Rd,4605100,0.095,0.381,0,6.870269,4.5,4.5 +10759,0,0.036913,2,2,0,2,3,,3,5,Plymouth,Rd,1443101,2.956,2.992,0,0.885907,5,5 +10886,0,0.221197,1,1,0,2,4,,3,5,Geddes,Rd,1448104,2.279,2.5,0,5.308726,6,4.5 +37298,-1,0.037649,0,2,0,2,4,,4,5,Superior,Rd,4606145,0,0.038,0,0.903588,4.5,4.5 +11412,-1,0.57964,0,2,0,1,2,,3,5,S US 23,,1431603,16.543,17.122,0,,0.58,7 +11433,-1,1.278832,0,2,0,1,2,,3,5,S US 23,,1431603,12.186,13.464,0,,0.58,7 +11575,-1,0.645774,0,2,0,1,2,,4,5,W M 14,,1431410,2.456,3.102,0,,0.8,7.5 +11580,1,0.646556,2,0,0,1,2,RFF,4,5,W M 24/S US 23,RAMP,1431409,0,0.646,0,,0.58,7 +21507,0,0.098118,2,2,0,2,3,,2,5,Main,St,4603186,0.916,1.014,0,2.354836,6,5 +21862,0,1.013745,2,2,1,2,3,,3,5,Ellsworth,Rd,4603895,0,1.013,0,24.32989,5,5 +22071,0,0.14517,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.69,0.835,0,3.484074,8,4.5 +26380,0,0.226779,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,5.442692,0.15,4 +26393,0,0.187228,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.493463,0.15,4 +26394,0,0.226828,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.44387,0.15,4 +26483,0,0.566348,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.592362,0.15,4 +26486,0,0.442406,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.61774,0.15,4 +26501,0,0.569069,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.657651,0.15,4 +26517,0,0.330166,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.923989,0.15,4 +26519,0,0.482492,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.579805,0.15,4 +26521,0,0.228843,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.492223,0.15,4 +26524,0,0.323251,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.758024,0.15,4 +26528,0,0.508431,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.202333,0.15,4 +26532,0,0.231025,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.544608,0.15,4 +26648,0,0.393506,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.444135,0.15,4 +26657,0,0.212724,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.10537,0.15,4 +26671,0,0.177874,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.268971,0.15,4 +29947,0,0.247067,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.929607,0.15,4 +29948,0,0.18904,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.536962,0.15,4 +29952,0,0.244675,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.872208,0.15,4 +30014,0,0.604088,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,14.498102,0.15,4 +30028,0,0.451154,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.827691,0.15,4 +30132,0,0.31797,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.631288,0.15,4 +30137,0,0.410301,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.847218,0.15,4 +9485,1,2.190355,2,0,0,1,1,,3,5,E I 94,,1426109,22.987,25.176,0,,0.58,7 +9640,1,0.315651,1,0,0,1,1,ROF,3,5,W I 94/State,RAMP,1427202,0,0.316,0,,2.24,5 +9642,1,0.385036,1,0,0,1,1,RON,3,5,S State/W I 94,RAMP,1427110,0,0.385,0,,1.09,4 +9952,0,0.257187,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.951,1.208,0,6.172478,5,5 +10015,0,0.193142,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.483,3.676,0,4.635416,5,5 +10258,0,0.09187,2,2,0,2,3,,3,5,State,St,1427508,3.815,3.906,0,2.204878,5,5 +10261,-1,2.313934,0,2,0,1,1,,3,5,W I 94,,1426110,22.89,25.203,0,,0.58,7 +10418,1,0.256369,1,0,0,1,1,RON,3,5,N State/W I 94,RAMP,1427201,0,0.256,0,,1.09,4 +10612,0,0.256374,1,1,1,2,3,,3,5,Packard,St,1430704,2.113,2.37,0,6.152981,5,5 +10752,0,0.346514,1,1,0,2,7,,4,5,Morgan,Rd,1437402,0.153,0.5,0,8.316326,6.55,4.5 +10778,0,0.243059,1,1,0,2,5,,4,5,Stone School,Rd,1436802,1.397,1.64,0,5.833428,5.8,4.5 +19889,0,0.5439,1,1,1,2,4,,3,5,Platt,Rd,4302160,10.16,10.703,0,13.05359,6,4.5 +21185,0,0.269455,2,2,0,2,3,,3,5,Eisenhower,Pkwy,4600068,1.956,2.226,0,6.466921,5,5 +21500,0,0.326418,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,8.706,9.033,0,7.834027,3.7,5 +26256,0,0.882197,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,21.172739,0.15,4 +26327,0,0.531429,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.754296,0.15,4 +26485,0,0.423497,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.163938,0.15,4 +26539,0,0.249189,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.980545,0.15,4 +26543,0,0.319979,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.679503,0.15,4 +26677,0,0.416733,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.001588,0.15,4 +29954,0,0.474387,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.385294,0.15,4 +29955,0,0.473227,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.357458,0.15,4 +30120,0,0.430104,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.322495,0.15,4 +9487,1,0.370854,2,0,0,1,1,,3,5,E I 94,,1426109,22.616,22.987,0,,0.58,7 +9496,0,0.543108,1,1,0,2,4,,4,5,State,Rd,1427508,2.208,2.75,0,13.034599,4.5,4.5 +40526,0,0.450194,1,1,0,2,4,,4,5,State,Rd,1427508,2.75,3.201,0,10.804653,4.5,4.5 +10343,-1,0.280588,0,2,0,1,1,,3,5,W I 94,,1426110,22.609,22.89,0,,0.58,7 +21477,1,0.369392,1,0,0,1,1,RON,4,5,N State/E I 94,RAMP,4603252,0,0.369,0,,1.09,4 +40527,0,0.28994,1,1,1,2,4,,4,5,Ellsworth,Rd,4602939,7.696,7.986,0,6.958551,4.5,4.5 +26258,0,0.650588,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.614106,0.15,4 +26259,0,1.040011,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.960268,0.15,4 +26544,0,0.462713,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.105118,0.15,4 +26569,0,0.562672,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.504131,0.15,4 +29991,0,0.483342,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.600214,0.15,4 +9489,1,0.369957,2,0,0,1,1,,3,5,E I 94,,1426109,22.246,22.616,0,,0.58,7 +40530,1,0.186204,2,0,0,2,3,DIV,4,5,State,Rd,5498164,0,0.186,0,4.468894,3.7,5 +40529,-1,0.139691,0,2,0,2,3,DIV,4,5,State,Rd,1427508,3.302,3.442,0,3.35259,3.7,5 +20021,0,0.692752,1,1,1,2,5,,4,5,Oak Valley,Dr,1924001,0,0.693,0,16.626048,5.8,4.5 +21235,0,0.400744,1,1,1,2,4,,4,5,Ellsworth,Rd,4602939,7.296,7.696,0,9.617855,4.5,4.5 +21691,1,0.419976,1,0,0,1,1,ROF,4,5,E I 94/State,RAMP,4603251,0,0.42,0,,2.24,5 +25028,0,0.593026,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.232616,0.15,4 +25031,0,0.57945,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.906793,0.15,4 +29992,0,0.395254,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.48609,0.15,4 +25030,0,0.262371,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.296902,0.15,4 +40531,1,0.046881,2,0,0,2,4,,4,5,State,St,5498165,0,0.047,0,1.125137,4.5,4.5 +40528,0,0.31671,1,1,0,2,3,,4,5,Ellsworth,Rd,4602939,8.081,8.398,0,7.601037,3.7,5 +9483,-1,0.156277,0,2,0,2,3,DIV,4,5,State,Rd,1427508,3.442,3.598,0,3.750643,3.7,5 +10344,-1,0.360489,0,2,0,1,1,,3,5,W I 94,,1426110,22.249,22.609,0,,0.58,7 +10762,1,0.137042,2,0,0,2,3,DIV,4,5,State,Rd,5498164,0.186,0.323,0,3.288997,3.7,5 +9666,1,0.215135,1,0,0,1,1,RON,4,5,S State/E I 94,RAMP,1426807,0,0.215,0,,1.09,4 +10002,0,0.056412,2,2,0,2,3,,4,5,State,St,1427508,3.704,3.76,0,1.353892,3.7,5 +10265,0,0.092168,2,2,0,2,3,,4,5,State,St,1427508,3.598,3.69,0,2.212041,3.7,5 +10264,0,0.013823,2,2,0,2,3,,4,5,State,St,1427508,3.69,3.704,0,0.331744,3.7,5 +9482,0,0.054389,2,2,0,2,3,,3,5,State,St,1427508,3.76,3.815,0,1.305336,5,5 +9530,0,0.569362,1,1,0,2,4,,4,5,State,Rd,1427508,1.638,2.208,0,13.664678,4.5,4.5 +10753,0,0.153355,1,1,0,2,7,,4,5,Morgan,Rd,1437402,0,0.153,0,3.680519,6.55,4.5 +40561,1,0.017902,2,0,0,2,4,,4,3,Tienken,Rd,626010,3.466,3.484,0,0.429657,4.5,4.5 +21713,0,0.308904,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,8.398,8.706,0,7.413694,3.7,5 +26545,0,0.274978,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.599484,0.15,4 +29990,0,0.41442,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.946079,0.15,4 +26548,0,0.488112,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.714696,0.15,4 +40343,1,0.324438,4,0,0,1,1,,4,3,N I 75,,647308,20.198,20.523,0,,0.8,7.5 +9991,0,0.384068,1,1,0,2,3,,3,5,State,St,1427508,4.686,5.07,0,9.217633,5,5 +10325,-1,0.232667,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,1.197,1.429,0,5.584003,5,5 +10613,0,0.327177,1,1,1,2,3,,3,5,Packard,St,1430704,1.786,2.113,0,7.852244,5,5 +10619,0,0.15144,1,1,0,2,3,,2,5,Packard,St,1430704,0.715,0.866,0,3.634557,6,5 +10653,0,0.1502,2,2,1,2,4,,3,5,Main,St,1430506,0.655,0.805,0,3.604793,6,4.5 +10711,0,0.158992,1,1,0,2,5,,3,5,Stimson,St,1437409,0,0.159,0,3.815811,8,4.5 +11483,0,0.26095,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,0.521,0.782,0,6.26279,6,4.5 +21650,1,0.232854,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,1.208,1.441,0,5.588499,5,5 +26367,0,0.698291,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,16.758988,0.15,4 +26433,0,0.205293,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.927023,0.15,4 +26441,0,0.131466,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.155177,0.15,4 +26523,0,0.130538,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.132918,0.15,4 +26559,0,0.308792,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.411012,0.15,4 +26562,0,0.291529,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.99669,0.15,4 +26564,0,0.239564,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.749545,0.15,4 +10243,0,0.278846,1,1,1,2,3,,3,5,State,St,1427508,4.278,4.557,0,6.692296,5,5 +10312,-1,0.515109,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,0.682,1.197,0,12.362622,5,5 +10656,0,0.175071,2,2,1,2,4,,3,5,Main,St,1430506,0,0.175,0,4.201714,6,4.5 +22033,1,0.515126,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,0.693,1.208,0,12.363032,5,5 +25029,0,0.27482,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.595678,0.15,4 +26561,0,0.451134,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.82721,0.15,4 +27256,0,0.256246,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.149908,0.15,4 +19276,0,0.016635,2,2,1,2,4,,3,5,Briarwood,Cir,1795605,0.052,0.069,0,0.399246,6,4.5 +10654,0,0.388274,2,2,1,2,4,,3,5,Main,St,1430506,0.267,0.655,0,9.318582,6,4.5 +26361,0,0.203936,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.894455,0.15,4 +19630,0,0.149656,1,1,0,2,5,,3,5,Oakbrook,Dr,1908304,0.666,0.815,0,3.59175,8,4.5 +10655,0,0.091469,2,2,1,2,4,,3,5,Main,St,1430506,0.175,0.267,0,2.195254,6,4.5 +9995,0,0.185725,2,2,0,2,3,,3,5,State,St,1427508,3.983,4.169,0,4.45741,5,5 +25289,0,0.317353,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.616484,0.15,4 +29995,0,0.317473,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.619353,0.15,4 +10249,0,0.076693,2,2,0,2,3,,3,5,State,St,1427508,3.906,3.983,0,1.84064,5,5 +10246,0,0.091813,2,2,0,2,3,,3,5,State,St,1427508,4.169,4.26,0,2.20351,5,5 +9993,0,0.017325,1,1,1,2,3,,3,5,State,St,1427508,4.26,4.278,0,0.415807,5,5 +9486,0,0.260649,2,2,1,2,3,,2,5,Stadium,Blvd,1429506,2.093,2.353,0,6.255586,6,5 +9989,0,0.252847,1,1,0,2,3,,2,5,State,St,1427508,5.416,5.668,0,6.068325,6,5 +10641,0,0.157346,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0.142,0.299,0,3.776311,8.5,4.5 +21368,0,0.497834,2,2,1,2,3,,3,5,Main,St,4603186,0,0.498,0,11.948017,5,5 +26365,0,0.266521,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.396504,0.15,4 +26507,0,0.25046,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,6.011041,0.15,4 +9617,0,0.225403,1,1,0,2,4,,3,5,Scio Church,Rd,1426103,14.391,14.617,0,5.409678,6,4.5 +10836,0,0.159036,2,2,1,2,3,,3,5,Main,St,1436706,3.428,3.587,0,3.816858,5,5 +26366,0,0.230262,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.526284,0.15,4 +9743,0,0.224077,2,2,0,2,3,,3,5,Stadium,Blvd,1429506,1.869,2.093,0,5.377851,5,5 +10643,0,0.22758,1,1,0,2,5,,3,5,Pauline,Blvd,1430604,1.364,1.592,0,5.46191,8,4.5 +22133,0,0.17562,2,2,0,2,3,,2,5,Main,St,4603186,0.498,0.673,0,4.214877,6,5 +26384,0,0.206096,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.946294,0.15,4 +26385,0,0.151681,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.640332,0.15,4 +26386,0,0.153108,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.674589,0.15,4 +10642,0,0.141557,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0,0.142,0,3.39737,8.5,4.5 +21989,0,0.051109,2,2,0,2,3,,2,5,Main,St,4603186,0.801,0.852,0,1.22661,6,5 +26505,0,0.166287,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.990884,0.15,4 +26506,0,0.152515,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.660366,0.15,4 +21867,0,0.063618,2,2,0,2,3,,2,5,Main,St,4603186,0.673,0.737,0,1.526839,6,5 +21237,0,0.063776,2,2,0,2,3,,2,5,Main,St,4603186,0.737,0.801,0,1.530618,6,5 +21720,0,0.064177,2,2,0,2,3,,2,5,Main,St,4603186,0.852,0.916,0,1.540242,6,5 +10242,0,0.345414,1,1,0,2,3,,3,5,State,St,1427508,5.07,5.416,0,8.289928,5,5 +9988,0,0.240223,1,1,0,2,3,,2,5,State,St,1427508,5.668,5.909,0,5.765361,6,5 +10267,0,0.436754,2,2,0,2,3,,2,5,Stadium,Blvd,1429506,2.353,2.79,0,10.482104,6,5 +10639,0,0.127134,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0.368,0.495,0,3.051209,8.5,4.5 +26503,0,0.098697,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.368737,0.15,4 +10640,0,0.068923,1,1,0,2,5,,2,5,Hoover,Ave,1430605,0.299,0.368,0,1.654144,8.5,4.5 +40344,-1,0.188171,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0.244,0.432,0,4.516098,3.7,5 +10238,0,0.142677,1,1,0,2,3,,2,5,State,St,1427508,5.909,6.051,0,3.424251,6,5 +26504,0,0.121298,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.91114,0.15,4 +30096,0,0.13253,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.180711,0.15,4 +26580,0,0.088562,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.125486,0.15,4 +10006,-1,0.255757,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,1426804,1.429,1.685,0,6.138172,5,5 +10784,0,0.521487,1,1,0,2,4,,3,5,Industrial,Hwy,1441004,0,0.521,0,12.515679,6,4.5 +11159,0,0.20918,1,1,0,2,5,,3,5,Boardwalk,St,1444305,0.368,0.577,0,5.020324,8,4.5 +22045,1,0.256244,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,1.441,1.697,0,6.149863,5,5 +26540,0,0.23065,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.535593,0.15,4 +29958,0,0.414994,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.959846,0.15,4 +26551,0,0.24712,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.930884,0.15,4 +11386,0,0.007664,1,1,0,2,5,,3,5,Boardwalk,St,1444305,0.36,0.368,0,0.183937,8,4.5 +29959,0,0.119367,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.86482,0.15,4 +26566,0,0.064868,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.556823,0.15,4 +21766,0,0.259384,2,2,0,2,3,,3,5,Eisenhower,Pkwy,4600068,1.697,1.956,0,6.225227,5,5 +26541,0,0.288175,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.916207,0.15,4 +9225,0,0.207677,2,2,1,2,3,,2,5,Stadium,Blvd,1429506,2.978,3.186,0,4.984239,6,5 +10615,0,0.312699,1,1,0,2,3,,2,5,Packard,St,1430704,1.166,1.479,0,7.504766,6,5 +26448,0,0.253333,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.079981,0.15,4 +26557,0,0.243132,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.835161,0.15,4 +26565,0,0.140115,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.362764,0.15,4 +26567,0,0.223884,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.373212,0.15,4 +30133,0,0.364376,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.745013,0.15,4 +9668,0,0.188577,2,2,1,2,3,,2,5,Stadium,Blvd,1429506,2.79,2.978,0,4.52586,6,5 +11232,0,0.266508,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,0.931,1.197,0,6.396194,6,4.5 +26556,0,0.202461,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.859074,0.15,4 +30098,0,0.299627,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.191057,0.15,4 +11482,0,0.14836,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,0.782,0.931,0,3.56065,6,4.5 +11480,0,0.063943,1,1,1,2,4,,3,5,Industrial,Hwy,1441004,1.197,1.261,0,1.534638,6,4.5 +10616,0,0.120991,1,1,0,2,3,,2,5,Packard,St,1430704,1.045,1.166,0,2.903776,6,5 +10617,0,0.107303,1,1,0,2,3,,2,5,Packard,St,1430704,0.938,1.045,0,2.575263,6,5 +26563,0,0.143087,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.434099,0.15,4 +10618,0,0.071585,1,1,0,2,3,,2,5,Packard,St,1430704,0.866,0.938,0,1.718049,6,5 +26520,0,0.14129,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.390953,0.15,4 +10277,0,0.181545,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.302,3.483,0,4.357085,5,5 +10614,0,0.307743,1,1,1,2,3,,3,5,Packard,St,1430704,1.479,1.786,0,7.385824,5,5 +26549,0,0.201599,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.838384,0.15,4 +9500,0,0.11604,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.186,3.302,0,2.784958,5,5 +26550,0,0.165096,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.96231,0.15,4 +29950,0,0.218358,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.240604,0.15,4 +30027,0,0.460082,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.041964,0.15,4 +10189,0,0.047266,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.903,0.951,0,1.134375,5,5 +10728,0,0.51155,1,1,0,2,7,GRV,4,5,Morgan,Rd,1437402,1.251,1.762,0,12.277212,6.55,4.5 +10805,0,0.604364,1,1,0,2,7,GRV,4,5,Stone School,Rd,1436802,0,0.604,0,14.504743,6.55,4.5 +20238,0,0.649794,1,1,0,2,5,,4,5,Platt,Rd,4302160,9.51,10.16,0,15.59505,5.8,4.5 +21339,0,0.342361,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,9.707,10.05,0,8.216663,3.7,5 +26546,0,0.629346,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.104301,0.15,4 +26571,0,0.569693,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.672634,0.15,4 +30121,0,0.484681,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.632355,0.15,4 +10730,0,0.502057,1,1,0,2,7,GRV,4,5,Morgan,Rd,1437402,0.749,1.251,0,12.049366,6.55,4.5 +26255,0,0.625571,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.013707,0.15,4 +10804,0,0.409989,1,1,0,2,7,,4,5,Stone School,Rd,1436802,0.604,1.014,0,9.839728,6.55,4.5 +21287,0,0.313116,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,9.033,9.346,0,7.514776,3.7,5 +26542,0,0.427023,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.248545,0.15,4 +26570,0,0.228374,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.480984,0.15,4 +10789,0,0.158953,1,1,0,2,5,,4,5,Stone School,Rd,1436802,1.238,1.397,0,3.814878,5.8,4.5 +10796,0,0.223883,1,1,0,2,5,,4,5,Stone School,Rd,1436802,1.014,1.238,0,5.373189,5.8,4.5 +26547,0,0.109354,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.624494,0.15,4 +22044,0,0.361975,1,1,1,2,3,,4,5,Ellsworth,Rd,4602939,9.346,9.707,0,8.687399,3.7,5 +26568,0,0.252157,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.051771,0.15,4 +29488,0,0.333871,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.012913,0.15,4 +20425,0,0.3751,1,1,0,2,5,,4,5,Platt,Rd,4302160,9.135,9.51,0,9.002406,5.8,4.5 +9223,1,0.160112,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0,0.16,0,,0.58,7 +9674,0,0.466834,1,1,0,2,5,,3,5,Pittsfield,Blvd,1429604,0.312,0.779,0,11.204021,8,4.5 +9752,0,0.275327,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,0,0.275,0,6.607846,6,4.5 +9940,0,0.308363,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.091,2.399,0,7.400719,5,5 +10018,0,0.631854,1,1,0,2,5,,3,5,Arlington,Blvd,1429509,0,0.632,0,15.164487,8,4.5 +10608,0,0.169702,2,2,1,2,3,,3,5,Packard,St,1430704,3.188,3.358,0,4.072842,5,5 +26537,0,0.470418,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.290024,0.15,4 +26575,0,0.334588,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.030107,0.15,4 +29509,0,0.303467,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.283207,0.15,4 +30135,0,0.622156,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,14.931735,0.15,4 +37026,0,0.10506,2,2,1,2,3,,3,5,Packard,St,1430704,3.083,3.188,0,2.521447,5,5 +10610,0,0.351012,1,1,1,2,3,,3,5,Packard,St,1430704,2.501,2.852,0,8.424283,5,5 +10770,0,0.265723,2,2,0,2,5,,3,5,Stone School,Rd,1436802,2.001,2.267,0,6.377347,8,4.5 +26536,0,0.571423,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.714159,0.15,4 +26538,0,0.605516,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,14.532382,0.15,4 +10776,0,0.361846,1,1,0,2,5,,3,5,Stone School,Rd,1436802,1.64,2.001,0,8.684305,8,4.5 +21964,1,0.282675,2,0,0,2,3,DIV,3,5,Eisenhower,Pkwy,4600068,2.226,2.508,0,6.784204,5,5 +10611,0,0.131537,1,1,1,2,3,,3,5,Packard,St,1430704,2.37,2.501,0,3.156898,5,5 +26535,0,0.304234,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.301622,0.15,4 +9951,0,0.624251,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,1.361,1.985,0,14.98203,5,5 +10281,0,0.251119,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.923,4.174,0,6.026849,5,5 +26555,0,0.207783,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.9868,0.15,4 +26577,0,0.541179,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.988287,0.15,4 +30134,0,0.410741,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.857783,0.15,4 +9505,0,0.247135,2,2,1,2,3,,3,5,Stadium,Blvd,1429506,3.676,3.923,0,5.931235,5,5 +26579,0,0.103169,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.47605,0.15,4 +10188,0,0.153507,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,1.208,1.361,0,3.684173,5,5 +26552,0,0.130343,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.128233,0.15,4 +10170,0,0.105449,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,1.985,2.091,0,2.530766,5,5 +10078,0,0.289717,1,1,0,2,5,,3,5,Arlington,Blvd,1429509,0.632,0.921,0,6.953211,8,4.5 +26576,0,0.395586,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.494072,0.15,4 +9890,0,0.312505,1,1,0,2,5,,3,5,Pittsfield,Blvd,1429604,0,0.312,0,7.500131,8,4.5 +10606,0,0.392162,2,2,1,2,3,,3,5,Packard,St,1430704,3.61,4.002,0,9.411888,5,5 +20286,0,0.310528,2,2,0,2,4,,3,5,Platt,Rd,4302160,11.177,11.487,0,7.452666,6,4.5 +26573,0,0.229821,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.515715,0.15,4 +30136,0,0.46397,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.135269,0.15,4 +10607,0,0.251724,2,2,1,2,3,,3,5,Packard,St,1430704,3.358,3.61,0,6.041373,5,5 +20475,0,0.350651,1,1,1,2,4,,3,5,Platt,Rd,4302160,10.826,11.177,0,8.415627,6,4.5 +20711,0,0.122861,1,1,1,2,4,,3,5,Platt,Rd,4302160,10.703,10.826,0,2.948671,6,4.5 +20089,0,0.166912,2,2,0,2,4,,3,5,Platt,Rd,4302160,11.487,11.654,0,4.005887,6,4.5 +26572,0,0.328761,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.89027,0.15,4 +20779,0,0.037534,2,2,0,2,4,,3,5,Platt,Rd,4302160,11.654,11.692,0,0.900815,6,4.5 +26484,0,0.079033,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.89679,0.15,4 +9937,0,0.25404,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.541,2.795,0,6.096971,5,5 +26498,0,0.548488,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.163707,0.15,4 +26500,0,0.533388,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.801301,0.15,4 +26553,0,0.572658,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.743792,0.15,4 +10168,0,0.142646,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.399,2.541,0,3.423496,5,5 +26574,0,0.334401,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.025633,0.15,4 +9925,0,0.262158,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,0.389,0.651,0,6.291787,6,4.5 +10153,0,0.207847,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,2.795,3.003,0,4.988327,5,5 +26786,0,0.283238,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.79771,0.15,4 +9503,0,0.095256,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,0.275,0.37,0,2.286155,6,4.5 +26290,0,0.138414,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.321936,0.15,4 +26490,0,0.049429,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.186299,0.15,4 +10279,0,0.018385,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,0.37,0.389,0,0.44124,6,4.5 +9930,0,0.066709,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.003,3.07,0,1.601012,5,5 +9228,0,0.022444,1,1,0,2,5,,3,5,Pittsfield,Blvd,1429604,0.779,0.802,0,0.538649,8,4.5 +9595,0,0.252055,1,1,0,2,4,,3,5,Geddes,Ave,1429306,0.558,0.81,0,6.04933,6,4.5 +9654,-1,0.165231,0,2,0,1,2,,3,5,W M 14,,1427103,3.668,3.834,0,,0.58,7 +9881,0,0.40567,1,1,0,2,5,,3,5,Hill,St,1429402,1.233,1.639,0,9.736078,8,4.5 +9882,1,0.295532,2,0,0,1,2,,3,5,E M 14,,1426704,3.658,3.953,0,,0.58,7 +37419,0,0.150885,1,1,1,2,5,,3,5,Nixon,Rd,1443105,0,0.151,0,3.621241,8,4.5 +10446,1,2.042012,2,0,0,1,2,,3,5,S US 23,,1431408,0.441,2.483,0,,0.58,7 +10534,0,0.139211,1,1,0,1,2,ROF,3,5,Whitmore Lake/E M 14,RAMP,1431001,0,0.139,0,,2.24,5 +10540,0,0.116693,1,1,0,2,4,,4,5,Barton Shore,Dr,1430910,0,0.117,0,2.800621,4.5,4.5 +10808,0,0.299583,1,1,0,2,4,,3,5,Pontiac,Trl,1451302,0.79,1.089,0,7.189997,6,4.5 +37030,1,0.053722,2,0,0,1,2,,3,5,E M 14,,1426704,3.953,4.007,0,,0.58,7 +37420,-1,0.027944,0,1,0,2,5,,3,5,Nixon,Rd,4606150,0,0.028,0,0.670651,8,4.5 +11212,0,0.14463,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.438,2.582,0,3.471116,5,5 +11221,0,0.58203,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,0.608,1.19,0,13.968723,5,5 +11396,0,0.172554,1,1,0,2,7,,3,5,Traver,Rd,1443305,0.896,1.068,0,4.141306,7,4.5 +11524,0,0.292911,1,1,0,2,5,,3,5,Dhu Varren,Rd,1431502,0.654,0.947,0,7.029855,8,4.5 +11577,-1,1.93779,0,2,0,1,2,,5,5,N US 23,,1431410,0.519,2.456,0,,1.02,7 +21704,0,0.09527,1,1,0,2,7,,3,5,Broadway,St,4600033,0.928,1.023,0,2.286484,7,4.5 +21750,0,0.501517,1,1,1,2,5,,3,5,Green,Rd,4603133,0.674,1.175,0,12.036407,8,4.5 +26378,0,0.92298,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.151515,0.15,4 +26465,0,0.411476,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.87543,0.15,4 +26587,0,0.240749,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.777979,0.15,4 +26601,0,0.2754,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.609588,0.15,4 +26605,0,0.458699,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.008771,0.15,4 +26607,0,0.407771,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.786506,0.15,4 +26609,0,0.334486,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.027654,0.15,4 +26771,0,0.192308,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.615387,0.15,4 +30129,0,0.5934,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,14.241589,0.15,4 +9561,0,0.062949,1,1,0,2,5,,2,5,Hill,St,1429402,0.533,0.596,0,1.510767,8.5,4.5 +9567,0,0.119227,1,1,0,2,7,,2,5,5th,Ave,1430303,0.987,1.106,0,2.861438,8.5,4.5 +9667,0,0.126204,2,2,0,2,5,,2,5,University,Ave,1429304,0.064,0.19,0,3.028907,8.5,4.5 +9759,0,0.186929,1,1,0,2,7,,2,5,4th,Ave,1430302,0.782,0.969,0,4.486301,8.5,4.5 +9805,0,0.126462,1,1,0,2,7,,2,5,University,Ave,1429310,0,0.127,0,3.035092,8.5,4.5 +10537,0,0.209358,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.415,0.624,0,5.024599,6,4.5 +10575,0,0.261815,1,1,0,2,4,,2,5,Fuller,St,1430804,0.376,0.637,0,6.283549,8,4.5 +10576,0,0.222141,1,1,0,2,4,,2,5,Depot,St,1430804,0.154,0.376,0,5.331373,8,4.5 +10582,0,0.077829,2,2,0,2,3,,2,5,Broadway,St,1430801,0.537,0.615,0,1.867888,6,5 +10583,0,0.215172,2,2,0,2,3,,2,5,Broadway,St,1430801,0.322,0.537,0,5.164125,6,5 +10718,-1,0.024415,0,2,0,2,4,,2,5,Moore,St,1451305,0.068,0.093,0,0.585969,8,4.5 +10775,0,0.241911,2,2,0,2,4,,2,5,Maiden,Ln,1451707,0.149,0.391,0,5.805867,8,4.5 +10892,0,0.3039,2,2,1,2,4,,3,5,Fuller,Rd,1448104,0.39,0.694,0,7.293589,6,4.5 +11029,0,0.389541,1,1,0,2,4,,3,5,Pontiac,St,1451302,0.102,0.491,0,9.348978,6,4.5 +11087,-1,0.389902,0,2,0,2,4,DV2,3,5,Fuller,Rd,1448104,0,0.39,0,9.357649,6,4.5 +11168,0,0.49405,1,1,0,2,7,,3,5,Traver,Rd,1443305,0,0.494,0,11.857207,7,4.5 +21857,0,0.126961,2,2,0,2,3,,2,5,Huron,St,4604878,2.666,2.793,0,3.047074,6,5 +21988,0,0.147677,2,2,0,2,3,,2,5,Main,St,4603186,2.039,2.187,0,3.544257,6,5 +26502,0,0.14373,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.449519,0.15,4 +26585,0,0.199864,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.796744,0.15,4 +26613,0,0.146618,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.518823,0.15,4 +26622,0,0.157804,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.787301,0.15,4 +26624,0,0.110772,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.658517,0.15,4 +26625,0,0.217433,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.218395,0.15,4 +26626,0,0.186374,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.472978,0.15,4 +29949,0,0.201972,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.84732,0.15,4 +30052,0,0.286769,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.882445,0.15,4 +30089,0,0.114923,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.75815,0.15,4 +9230,1,0.111598,2,0,0,2,4,,1,5,Division,St,1430304,0.568,0.68,0,2.678347,8,4.5 +9521,0,0.166048,1,1,0,2,5,,2,5,Hill,St,1429402,0,0.166,0,3.985148,8.5,4.5 +9892,0,0.11308,1,1,0,2,5,,1,5,4th,Ave,1430302,0.263,0.376,0,2.713916,8.5,4.5 +9946,-1,0.112928,0,3,0,2,4,,1,5,5th,Ave,1430303,0.425,0.538,0,2.71026,8,4.5 +10181,1,0.112619,2,0,0,2,5,,1,5,Ashley,St,1430210,0.359,0.472,0,2.702857,8.5,4.5 +10226,0,0.052973,1,1,0,2,4,,1,5,State,St,1427508,6.665,6.718,0,1.271361,8,4.5 +10585,-1,0.076283,0,2,0,2,3,,2,5,Beakes,St,1430801,0.077,0.154,0,1.830791,6,5 +10596,0,0.062372,1,1,0,2,5,,1,5,William,St,1430705,0.381,0.443,0,1.496927,8.5,4.5 +10627,0,0.072498,1,1,0,2,3,,2,5,Packard,St,1430704,0.076,0.149,0,1.739962,6,5 +10633,0,0.062196,1,1,0,2,7,,2,5,Madison,St,1430701,0.555,0.617,0,1.492709,8.5,4.5 +11365,0,0.10797,1,1,0,2,5,,1,5,Thompson,St,1444801,0.307,0.415,0,2.591285,8.5,4.5 +21577,0,0.06272,2,2,0,2,3,,1,5,Huron,St,4604878,2.341,2.403,0,1.505271,6,5 +21640,-1,0.045179,0,2,0,2,5,,1,5,1st,St,4600034,0.42,0.465,0,1.084296,8.5,4.5 +21722,0,0.205213,1,1,0,2,4,,2,5,Liberty,St,4603025,7.423,7.628,0,4.925109,8,4.5 +21784,0,0.064273,1,1,0,2,5,,1,5,Liberty,St,4603025,7.819,7.883,0,1.54256,8.5,4.5 +21839,0,0.112868,1,1,0,2,3,,1,5,Main,St,4603186,1.454,1.567,0,2.708841,6,5 +24723,0,0.114191,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.740588,0.15,4 +24728,0,0.130379,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,3.129106,0.15,4 +25236,0,0.100176,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.404218,0.15,4 +25240,0,0.081456,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.954951,0.15,4 +25241,0,0.054393,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.305422,0.15,4 +26040,0,0.084458,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.026981,0.15,4 +26631,0,0.085919,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.062064,0.15,4 +29941,0,0.059138,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.419316,0.15,4 +30050,0,0.089573,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.149754,0.15,4 +30090,0,0.130884,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,3.141212,0.15,4 +30093,0,0.135736,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,3.257672,0.15,4 +30094,0,0.13596,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,3.263048,0.15,4 +9671,1,0.14941,1,0,0,2,5,,2,5,Ashley,St,1430210,0.087,0.236,0,3.585841,8.5,4.5 +10389,0,0.142812,1,1,0,2,7,,2,5,4th,Ave,1430302,0,0.143,0,3.427477,8.5,4.5 +10599,1,0.05912,2,0,0,2,5,,1,5,William,St,1430705,0.192,0.251,0,1.418885,8.5,4.5 +10636,0,0.049629,1,1,0,2,5,,2,5,Madison,St,1430701,0.377,0.427,0,1.191087,8.5,4.5 +21560,0,0.097829,2,2,0,2,3,,2,5,Main,St,4603186,1.236,1.334,0,2.347901,6,5 +21702,-1,0.138841,0,1,0,2,5,,2,5,1st,St,4600034,0.087,0.226,0,3.332179,8.5,4.5 +25238,0,0.166093,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.986244,0.15,4 +26404,0,0.165137,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.963281,0.15,4 +29943,0,0.066279,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.590707,0.15,4 +10637,0,0.187505,1,1,0,2,5,,2,5,Madison,St,1430701,0.189,0.377,0,4.500116,8.5,4.5 +26392,0,0.195111,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.682663,0.15,4 +21642,-1,0.125912,0,1,0,2,5,,2,5,1st,St,4600034,0.236,0.362,0,3.021882,8.5,4.5 +26363,0,0.182673,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.384158,0.15,4 +26403,0,0.160654,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.855701,0.15,4 +21644,-1,0.009596,0,1,0,2,5,,2,5,1st,St,4600034,0.226,0.236,0,0.230303,8.5,4.5 +21641,-1,0.058263,0,2,0,2,5,,1,5,1st,St,4600034,0.362,0.42,0,1.398316,8.5,4.5 +10634,0,0.070284,1,1,0,2,7,,2,5,Madison,St,1430701,0.484,0.555,0,1.686826,8.5,4.5 +21292,0,0.082141,2,2,0,2,3,,2,5,Main,St,4603186,1.014,1.096,0,1.971376,6,5 +21782,0,0.050208,2,2,0,2,3,,2,5,Main,St,4603186,1.186,1.236,0,1.205003,6,5 +25635,0,0.068351,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.640423,0.15,4 +10635,0,0.057853,1,1,0,2,5,,2,5,Madison,St,1430701,0.427,0.484,0,1.388479,8.5,4.5 +22051,0,0.089921,2,2,0,2,3,,2,5,Main,St,4603186,1.096,1.186,0,2.158093,6,5 +25636,0,0.022943,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.550633,0.15,4 +25637,0,0.08445,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.026801,0.15,4 +9226,1,0.123105,1,0,0,2,5,,2,5,Ashley,St,1430210,0.236,0.359,0,2.954528,8.5,4.5 +10123,0,0.11983,1,1,0,2,5,,2,5,4th,Ave,1430302,0.143,0.263,0,2.875919,8.5,4.5 +10598,0,0.065403,1,1,0,2,5,,1,5,William,St,1430705,0.251,0.317,0,1.56967,8.5,4.5 +22104,0,0.079215,2,2,0,2,3,,2,5,Main,St,4603186,1.375,1.454,0,1.901162,6,5 +25243,0,0.085368,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.048824,0.15,4 +26632,0,0.113483,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.723587,0.15,4 +25242,0,0.058403,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.401666,0.15,4 +10628,0,0.076287,1,1,0,2,3,,2,5,Packard,St,1430704,0,0.076,0,1.830895,6,5 +25239,0,0.063202,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.516841,0.15,4 +29945,0,0.054339,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.304126,0.15,4 +21341,0,0.041007,2,2,0,2,3,,2,5,Main,St,4603186,1.334,1.375,0,0.98416,6,5 +10597,0,0.064296,1,1,0,2,5,,1,5,William,St,1430705,0.317,0.381,0,1.543104,8.5,4.5 +10183,0,0.060826,1,1,0,2,5,,1,5,4th,Ave,1430302,0.567,0.628,0,1.459827,8.5,4.5 +10282,1,0.06259,2,0,0,2,5,,1,5,Ashley,St,1430210,0.663,0.725,0,1.502155,8.5,4.5 +10545,0,0.061664,1,1,0,2,4,,1,5,Miller,Rd,1430906,5.126,5.188,0,1.479945,8,4.5 +21311,0,0.062241,2,2,0,2,3,,1,5,Huron,St,4604878,2.149,2.212,0,1.49379,6,5 +21509,0,0.063871,1,1,0,2,4,,1,5,Liberty,St,4603025,7.628,7.692,0,1.532909,8,4.5 +21558,-1,0.06219,0,2,0,2,5,,1,5,1st,St,4600034,0.667,0.729,0,1.49256,8.5,4.5 +21635,-1,0.064513,0,2,0,2,5,,1,5,1st,St,4600034,0.602,0.667,0,1.548301,8.5,4.5 +21652,0,0.062239,1,1,0,2,3,,1,5,Main,St,4603186,1.759,1.821,0,1.493727,6,5 +25632,0,0.071992,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.727798,0.15,4 +25642,0,0.002622,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.06294,0.15,4 +25644,0,0.074474,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.787384,0.15,4 +25905,0,0.07489,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.79736,0.15,4 +26635,0,0.069953,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.678881,0.15,4 +26637,0,0.036396,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.873503,0.15,4 +30049,0,0.095298,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.287161,0.15,4 +21636,-1,0.064389,0,2,0,2,5,,1,5,1st,St,4600034,0.538,0.602,0,1.545343,8.5,4.5 +21739,0,0.095151,2,2,0,2,3,,2,5,Huron,St,4604878,1.991,2.086,0,2.28362,6,5 +21639,-1,0.072707,0,2,0,2,5,,1,5,1st,St,4600034,0.465,0.538,0,1.744958,8.5,4.5 +21526,0,0.062986,2,2,0,2,3,,1,5,Huron,St,4604878,2.086,2.149,0,1.511653,6,5 +26428,0,0.088097,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.114332,0.15,4 +25246,0,0.236433,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.674392,0.15,4 +10547,0,0.028906,1,1,0,2,4,,2,5,Miller,Rd,1430906,5.076,5.104,0,0.693756,8,4.5 +10546,0,0.021786,1,1,0,2,4,,1,5,Miller,Rd,1430906,5.104,5.126,0,0.522876,8,4.5 +9675,0,0.062536,1,1,0,2,5,,1,5,4th,Ave,1430302,0.376,0.438,0,1.500872,8.5,4.5 +9753,1,0.063553,2,0,0,2,5,,1,5,Ashley,St,1430210,0.534,0.598,0,1.525274,8.5,4.5 +21294,0,0.064206,1,1,0,2,4,,1,5,Liberty,St,4603025,7.692,7.757,0,1.540932,8,4.5 +21402,0,0.063716,1,1,0,2,3,,1,5,Main,St,4603186,1.63,1.694,0,1.529193,6,5 +22069,0,0.063285,2,2,0,2,3,,1,5,Huron,St,4604878,2.212,2.275,0,1.518849,6,5 +25907,0,0.067883,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.629202,0.15,4 +26407,0,0.093578,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.245864,0.15,4 +41314,0,0.062183,1,1,0,2,5,,2,5,Hill,St,1429402,0.721,0.783,0,1.4924,8.5,4.5 +9943,1,0.062493,2,0,0,2,5,,1,5,Ashley,St,1430210,0.472,0.534,0,1.499827,8.5,4.5 +26638,0,0.026424,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.634174,0.15,4 +9506,1,0.064813,2,0,0,2,5,,1,5,Ashley,St,1430210,0.598,0.663,0,1.555517,8.5,4.5 +25906,0,0.06791,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.629833,0.15,4 +41313,0,0.060736,1,1,0,2,7,,2,5,University,Ave,1429310,0.252,0.313,0,1.457656,8.5,4.5 +21601,0,0.063411,1,1,0,2,3,,1,5,Main,St,4603186,1.567,1.63,0,1.521865,6,5 +22053,0,0.062131,1,1,0,2,5,,1,5,Liberty,St,4603025,7.757,7.819,0,1.491149,8.5,4.5 +30092,0,0.084785,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.034832,0.15,4 +9229,0,0.065103,1,1,0,2,5,,1,5,4th,Ave,1430302,0.502,0.567,0,1.562463,8.5,4.5 +21801,0,0.065688,2,2,0,2,3,,1,5,Huron,St,4604878,2.275,2.341,0,1.576514,6,5 +21911,0,0.064618,1,1,0,2,3,,1,5,Main,St,4603186,1.694,1.759,0,1.550831,6,5 +25904,0,0.070446,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.690703,0.15,4 +26399,0,0.071146,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.707509,0.15,4 +9947,0,0.039536,1,1,0,2,5,,1,5,4th,Ave,1430302,0.743,0.782,0,0.948863,8.5,4.5 +10586,-1,0.077295,0,2,0,2,3,,1,5,Beakes,St,1430801,0,0.077,0,1.855083,6,5 +10587,-1,0.062432,0,2,0,2,5,,2,5,Kingsley,St,1430710,0.069,0.131,0,1.498372,8.5,4.5 +10589,0,0.065868,1,1,0,2,4,,1,5,Miller,Rd,1430709,0.06,0.126,0,1.580842,8,4.5 +21236,0,0.105497,2,2,0,2,3,,2,5,Main,St,4603186,1.934,2.039,0,2.53192,6,5 +9613,0,0.113951,1,1,0,2,5,,2,5,Ashley,St,1430210,0.725,0.839,0,2.734818,8.5,4.5 +10588,-1,0.068561,0,2,0,2,5,,2,5,Kingsley,St,1430710,0,0.069,0,1.645463,8.5,4.5 +10590,0,0.060005,1,1,0,2,4,,1,5,Miller,Rd,1430709,0,0.06,0,1.440131,8,4.5 +21552,-1,0.103534,0,2,0,2,5,,2,5,1st,St,4600034,0.729,0.832,0,2.484806,8.5,4.5 +25638,0,0.039788,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.954918,0.15,4 +25640,0,0.093605,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.246518,0.15,4 +25641,0,0.091825,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.203798,0.15,4 +25639,0,0.036558,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.877386,0.15,4 +10184,0,0.05017,1,1,0,2,5,,1,5,4th,Ave,1430302,0.692,0.743,0,1.204079,8.5,4.5 +21448,0,0.112949,2,2,0,2,3,,1,5,Main,St,4603186,1.821,1.934,0,2.710776,6,5 +25231,0,0.00663,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.159122,0.15,4 +9945,0,0.06427,1,1,0,2,5,,1,5,4th,Ave,1430302,0.628,0.692,0,1.542488,8.5,4.5 +26633,0,0.054668,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.312021,0.15,4 +9813,0,0.100668,1,1,0,2,7,,2,5,5th,Ave,1430303,0.166,0.267,0,2.416022,8.5,4.5 +9893,1,0.125515,2,0,0,2,4,,2,5,Division,St,1430304,0.33,0.455,0,3.012357,8,4.5 +9983,0,0.050403,1,1,0,2,4,,2,5,State,St,1427508,6.363,6.414,0,1.209669,8,4.5 +10124,0,0.078659,1,1,0,2,5,,2,5,Hill,St,1429402,0.342,0.421,0,1.887823,8.5,4.5 +10592,0,0.064689,1,1,0,2,5,,1,5,William,St,1430705,0.595,0.659,0,1.552526,8.5,4.5 +10622,0,0.114731,1,1,0,2,3,,2,5,Packard,St,1430704,0.391,0.506,0,2.753553,6,5 +10626,0,0.134121,1,1,0,2,3,,2,5,Packard,St,1430704,0.149,0.283,0,3.218909,6,5 +10629,0,0.125133,1,1,0,2,7,,2,5,Madison,St,1430701,0.785,0.911,0,3.003199,8.5,4.5 +11376,0,0.137022,1,1,0,2,7,,2,5,Thompson,St,1444801,0.054,0.191,0,3.288526,8.5,4.5 +26636,0,0.056011,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.344266,0.15,4 +26641,0,0.078566,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.885591,0.15,4 +26643,0,0.160295,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.847085,0.15,4 +30032,0,0.125398,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.009552,0.15,4 +9614,1,0.107237,2,0,0,2,7,,2,5,Division,St,1430304,0.208,0.316,0,2.573684,8.5,4.5 +10290,0,0.094339,1,1,0,2,7,,2,5,5th,Ave,1430303,0,0.094,0,2.264145,8.5,4.5 +10297,0,0.109777,1,1,0,2,5,,2,5,Hill,St,1429402,0.166,0.276,0,2.634659,8.5,4.5 +10632,-1,0.106654,0,1,0,2,7,,2,5,Madison,St,1430701,0.617,0.723,0,2.559685,8.5,4.5 +26640,0,0.041067,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.985611,0.15,4 +29956,0,0.087211,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.093059,0.15,4 +10027,0,0.071912,1,1,0,2,7,,2,5,5th,Ave,1430303,0.094,0.166,0,1.725894,8.5,4.5 +10390,0,0.066145,1,1,0,2,5,,2,5,Hill,St,1429402,0.276,0.342,0,1.58747,8.5,4.5 +9853,1,0.057445,2,0,0,2,7,,2,5,Division,St,1430304,0.151,0.208,0,1.378676,8.5,4.5 +10624,0,0.062612,1,1,0,2,3,,2,5,Packard,St,1430704,0.3,0.362,0,1.502681,6,5 +10630,1,0.052153,1,0,0,2,7,,2,5,Madison,St,1430701,0.733,0.785,0,1.25167,8.5,4.5 +11153,0,0.054066,1,1,1,2,7,,2,5,Thompson,St,1444801,0,0.054,0,1.297579,8.5,4.5 +26639,0,0.089859,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.156621,0.15,4 +10125,1,0.0145,2,0,0,2,7,,2,5,Division,St,1430304,0.316,0.33,0,0.348003,8.5,4.5 +10625,0,0.017033,1,1,0,2,3,,2,5,Packard,St,1430704,0.283,0.3,0,0.408796,6,5 +10631,0,0.009899,1,1,0,2,7,,2,5,Madison,St,1430701,0.723,0.733,0,0.237581,8.5,4.5 +10623,0,0.028975,1,1,0,2,3,,2,5,Packard,St,1430704,0.362,0.391,0,0.695411,6,5 +9677,1,0.112621,2,0,0,2,4,,2,5,Division,St,1430304,0.455,0.568,0,2.7029,8,4.5 +10340,-1,0.112724,0,3,0,2,4,,2,5,5th,Ave,1430303,0.312,0.425,0,2.705386,8,4.5 +10594,0,0.057636,1,1,0,2,5,,1,5,William,St,1430705,0.492,0.55,0,1.383265,8.5,4.5 +11152,0,0.116035,1,1,0,2,7,,2,5,Thompson,St,1444801,0.191,0.307,0,2.784842,8.5,4.5 +25237,0,0.053912,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.293878,0.15,4 +30095,0,0.127059,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.049424,0.15,4 +9569,-1,0.045445,0,3,0,2,4,,2,5,5th,Ave,1430303,0.267,0.312,0,1.090681,8,4.5 +10595,0,0.04888,1,1,0,2,5,,1,5,William,St,1430705,0.443,0.492,0,1.173127,8.5,4.5 +29876,0,0.069251,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.662034,0.15,4 +26644,0,0.037112,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.8907,0.15,4 +29946,0,0.025061,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.601466,0.15,4 +10593,0,0.045119,1,1,0,2,5,,1,5,William,St,1430705,0.55,0.595,0,1.082858,8.5,4.5 +9984,0,0.097596,1,1,0,2,4,,2,5,State,St,1427508,6.203,6.3,0,2.342314,8,4.5 +10061,0,0.04855,1,1,0,2,5,,2,5,Hill,St,1429402,0.421,0.469,0,1.165197,8.5,4.5 +10621,0,0.07733,1,1,0,2,3,,2,5,Packard,St,1430704,0.506,0.583,0,1.855923,6,5 +26642,0,0.111244,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.669859,0.15,4 +9841,0,0.063856,1,1,0,2,5,,2,5,Hill,St,1429402,0.469,0.533,0,1.532546,8.5,4.5 +10236,0,0.06295,1,1,0,2,4,,2,5,State,St,1427508,6.14,6.203,0,1.510789,8,4.5 +10229,0,0.063094,1,1,0,2,4,,2,5,State,St,1427508,6.3,6.363,0,1.514264,8,4.5 +9884,0,0.063824,2,2,0,2,5,,1,5,University,Ave,1429304,0,0.064,0,1.531782,8.5,4.5 +10228,0,0.200797,1,1,0,2,4,,2,5,State,St,1427508,6.414,6.614,0,4.819127,8,4.5 +9982,0,0.050613,1,1,0,2,4,,1,5,State,St,1427508,6.614,6.665,0,1.214705,8,4.5 +10591,0,0.062995,1,1,0,2,5,,1,5,William,St,1430705,0.659,0.722,0,1.511882,8.5,4.5 +10024,-1,0.061825,0,3,0,2,4,,1,5,5th,Ave,1430303,0.729,0.791,0,1.483797,8,4.5 +10221,0,0.008221,1,1,0,2,5,,2,5,State,St,1427508,6.908,6.916,0,0.197315,8.5,4.5 +10291,1,0.050369,2,0,0,2,4,,1,5,Division,St,1430304,0.878,0.929,0,1.20886,8,4.5 +22105,0,0.063544,1,1,0,2,5,,1,5,Liberty,St,4603025,8.029,8.092,0,1.525055,8.5,4.5 +22123,0,0.155141,2,2,0,2,3,,1,5,Huron,St,4604878,2.511,2.666,0,3.723376,6,5 +24714,0,0.109165,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.61995,0.15,4 +24715,0,0.112716,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.705185,0.15,4 +25234,0,0.062264,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.494335,0.15,4 +26246,0,0.091455,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.19493,0.15,4 +26623,0,0.115326,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.767825,0.15,4 +30056,0,0.134795,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.235071,0.15,4 +9511,-1,0.064166,0,3,0,2,4,,1,5,5th,Ave,1430303,0.601,0.665,0,1.539978,8,4.5 +9948,1,0.063387,2,0,0,2,4,,1,5,Division,St,1430304,0.743,0.806,0,1.521282,8,4.5 +21358,0,0.107921,2,2,0,2,3,,1,5,Huron,St,4604878,2.403,2.511,0,2.590097,6,5 +21561,0,0.105851,1,1,0,2,5,,1,5,Liberty,St,4603025,7.883,7.989,0,2.54042,8.5,4.5 +25244,0,0.086951,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,2.086825,0.15,4 +25633,0,0.076972,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.847337,0.15,4 +25634,0,0.053066,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.273578,0.15,4 +9758,-1,0.062892,0,3,0,2,4,,1,5,5th,Ave,1430303,0.538,0.601,0,1.509409,8,4.5 +25033,0,0.053713,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.289101,0.15,4 +30091,0,0.076897,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.845521,0.15,4 +10287,-1,0.064582,0,3,0,2,4,,1,5,5th,Ave,1430303,0.665,0.729,0,1.549956,8,4.5 +25245,0,0.026559,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.637405,0.15,4 +10185,1,0.063351,2,0,0,2,4,,1,5,Division,St,1430304,0.68,0.743,0,1.520413,8,4.5 +21342,0,0.039842,1,1,0,2,5,,1,5,Liberty,St,4603025,7.989,8.029,0,0.95622,8.5,4.5 +9760,1,0.067531,2,0,0,2,4,,1,5,Division,St,1430304,0.806,0.874,0,1.620742,8,4.5 +9515,1,0.004418,2,0,0,2,4,,1,5,Division,St,1430304,0.874,0.878,0,0.106039,8,4.5 +9570,1,0.102191,2,0,0,2,4,,2,5,Division,St,1430304,1.047,1.149,0,2.452583,8,4.5 +9810,-1,0.127991,0,3,0,2,4,,1,5,5th,Ave,1430303,0.859,0.987,0,3.07179,8,4.5 +10584,-1,0.168301,0,2,0,2,3,,2,5,Beakes,St,1430801,0.154,0.322,0,4.039223,6,5 +26621,0,0.062371,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.496915,0.15,4 +26740,0,0.05858,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.405913,0.15,4 +29942,0,0.099676,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.392234,0.15,4 +9814,1,0.060212,2,0,0,2,4,,1,5,Division,St,1430304,0.987,1.047,0,1.445098,8,4.5 +26647,0,0.053498,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.283943,0.15,4 +10028,1,0.006493,2,0,0,2,4,,1,5,Division,St,1430304,0.929,0.935,0,0.155827,8,4.5 +26620,0,0.056873,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.364945,0.15,4 +9944,1,0.078391,2,0,0,2,4,,2,5,Division,St,1430304,1.149,1.228,0,1.881381,8,4.5 +10223,0,0.062553,1,1,0,2,4,,1,5,State,St,1427508,6.782,6.844,0,1.501276,8,4.5 +9981,0,0.06414,1,1,0,2,4,,1,5,State,St,1427508,6.718,6.782,0,1.539365,8,4.5 +21912,0,0.062648,1,1,0,2,5,,1,5,Liberty,St,4603025,8.092,8.155,0,1.503542,8.5,4.5 +25233,0,0.08252,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.98047,0.15,4 +25235,0,0.009019,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,0.216451,0.15,4 +9980,0,0.06356,1,1,0,2,5,,2,5,State,St,1427508,6.844,6.908,0,1.525431,8.5,4.5 +26645,0,0.05146,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.235039,0.15,4 +26646,0,0.059526,1,1,0,2,99,,1,5,Centroid Connector,,0,0,0,0,1.428631,0.15,4 +9976,0,0.125235,1,1,0,2,5,,2,5,State,St,1427508,7.097,7.222,0,3.005648,8.5,4.5 +9979,0,0.11358,1,1,0,2,5,,2,5,State,St,1427508,6.971,7.084,0,2.725909,8.5,4.5 +30084,0,0.109126,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.61902,0.15,4 +30085,0,0.047819,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.147658,0.15,4 +10219,0,0.012839,1,1,0,2,5,,2,5,State,St,1427508,7.084,7.097,0,0.308147,8.5,4.5 +10568,1,0.128183,2,0,0,1,2,RON,3,5,N US 23 BR,,1430809,0.074,0.202,0,,1.09,4 +10571,-1,0.202547,0,2,0,1,2,ROF,3,5,S US 23 BR,,1430808,0.078,0.28,0,,2.24,5 +10572,-1,0.044517,0,2,0,2,3,DIV,3,5,Main,St,1430808,0.033,0.078,0,1.068414,5,5 +10578,0,0.086063,1,1,1,2,4,,2,5,Depot,St,1430804,0,0.086,0,2.065519,8,4.5 +21506,0,0.633294,2,2,0,2,3,,3,5,Main,St,4603186,2.225,2.858,0,15.19905,5,5 +21936,0,0.01919,1,1,0,2,4,,3,5,Huron River,Dr,4604062,9.301,9.32,0,0.460558,6,4.5 +26388,0,0.334628,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.031079,0.15,4 +26612,0,0.076453,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.834863,0.15,4 +30022,0,0.350783,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.418801,0.15,4 +30024,0,0.328313,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.879515,0.15,4 +26389,0,0.414763,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.954311,0.15,4 +10579,0,0.087415,1,1,0,2,5,,2,5,Summit,St,1430803,0.473,0.56,0,2.097956,8.5,4.5 +21719,0,0.038472,2,2,0,2,3,,2,5,Main,St,4603186,2.187,2.225,0,0.923324,6,5 +10339,0,0.037781,1,1,0,2,7,,2,5,5th,Ave,1430303,1.106,1.144,0,0.906748,8.5,4.5 +10577,0,0.067654,1,1,1,2,4,,2,5,Depot,St,1430804,0.086,0.154,0,1.623696,8,4.5 +9514,0,0.03846,1,1,0,2,7,,2,5,4th,Ave,1430302,0.969,1.007,0,0.923051,8.5,4.5 +26614,0,0.070335,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.688029,0.15,4 +26611,0,0.009358,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.224601,0.15,4 +11034,1,0.037629,1,0,0,2,4,,2,5,Swift,St,1451303,0.071,0.109,0,0.903105,8,4.5 +10950,-1,0.068439,0,2,0,2,4,,2,5,Moore,St,1451305,0,0.068,0,1.642539,8,4.5 +11032,-1,0.101775,0,1,0,2,4,,2,5,Pontiac,St,1451302,0,0.102,0,2.442588,8,4.5 +10539,0,0.276339,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.117,0.393,0,6.632134,6,4.5 +30021,0,0.433328,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.399863,0.15,4 +10570,1,0.030247,2,0,0,2,3,DIV,3,5,Main,St,1430809,0,0.03,0,0.725926,5,5 +10573,-1,0.033111,0,2,0,2,3,DIV,3,5,Main,St,1430808,0,0.033,0,0.794664,5,5 +10569,1,0.043568,2,0,0,2,3,DIV,3,5,Main,St,1430809,0.03,0.074,0,1.045629,5,5 +10538,0,0.022196,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.393,0.415,0,0.532716,6,4.5 +9620,0,0.166919,1,1,1,2,4,,3,5,Geddes,Ave,1429306,0.291,0.457,0,4.006059,6,4.5 +10016,0,0.218351,1,1,0,2,5,,2,5,Hill,St,1429402,0.857,1.075,0,5.24042,8.5,4.5 +10082,0,0.141399,1,1,0,2,7,,2,5,Observatory,St,1429309,0.208,0.349,0,3.393576,8.5,4.5 +10191,0,0.154234,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.535,0.689,0,3.701611,6,5 +10209,1,0.276012,2,0,0,2,3,DV2,2,5,Washtenaw,Ave,1427706,0,0.276,0,6.624285,6,5 +19648,0,0.136032,2,2,0,2,9,,2,5,Medical Center,Dr,1839209,0,0.136,0,3.264768,8.5,4.5 +19649,0,0.385866,2,2,0,2,9,,2,5,Medical Center,Dr,1839205,0,0.386,0,9.260775,8.5,4.5 +21316,-1,0.268218,0,2,0,2,3,DV2,2,5,Washtenaw,Ave,4603893,0.096,0.364,0,6.437231,6,5 +21686,1,0.387983,2,0,0,2,4,DV2,3,5,Fuller,Rd,4603906,0,0.388,0,9.311603,6,4.5 +26529,0,0.192922,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.630127,0.15,4 +26533,0,0.16762,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.022875,0.15,4 +26600,0,0.237636,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.703268,0.15,4 +26658,0,0.123877,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.973042,0.15,4 +29951,0,0.228326,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.479826,0.15,4 +30055,0,0.213521,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.124513,0.15,4 +30086,0,0.121563,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.91751,0.15,4 +30087,0,0.150677,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.616249,0.15,4 +30088,0,0.126903,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.045672,0.15,4 +9509,0,0.076743,1,1,0,2,7,,2,5,University,Ave,1429310,0.313,0.39,0,1.841838,8.5,4.5 +9955,0,0.050816,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.484,0.535,0,1.219581,6,5 +10335,0,0.125055,1,1,0,2,5,,2,5,Hill,St,1429402,0.596,0.721,0,3.001328,8.5,4.5 +10387,0,0.106232,2,2,0,2,5,,2,5,Geddes,Ave,1429306,0,0.106,0,2.549579,8.5,4.5 +26630,0,0.149663,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.591921,0.15,4 +30029,0,0.109837,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.636087,0.15,4 +30030,0,0.224037,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.376882,0.15,4 +30031,0,0.197878,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.749072,0.15,4 +30131,0,0.036215,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.869158,0.15,4 +26627,0,0.099958,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.398996,0.15,4 +9562,0,0.125846,1,1,0,2,7,,2,5,University,Ave,1429310,0.127,0.252,0,3.020313,8.5,4.5 +9610,0,0.055935,2,2,0,2,5,,2,5,University,Ave,1429304,0.19,0.246,0,1.342433,8.5,4.5 +26628,0,0.135478,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.251475,0.15,4 +29874,0,0.173477,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.16345,0.15,4 +26655,0,0.111318,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.671632,0.15,4 +9501,0,0.069474,1,1,0,2,5,,2,5,Hill,St,1429402,0.783,0.852,0,1.667373,8.5,4.5 +10278,0,0.004614,1,1,0,2,5,,2,5,Hill,St,1429402,0.852,0.857,0,0.110734,8.5,4.5 +26653,0,0.104613,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.510716,0.15,4 +9633,0,0.081881,1,1,1,2,4,,2,5,Geddes,Ave,1429306,0.17,0.251,0,1.965155,8,4.5 +9963,0,0.007243,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.391,0.399,0,0.173823,6,5 +9969,1,0.063228,2,0,0,2,3,DV2,2,5,Washtenaw,Ave,1427706,0.276,0.339,0,1.517465,6,5 +10285,0,0.09104,1,1,0,2,7,,2,5,University,Ave,1429310,0.39,0.481,0,2.184962,8.5,4.5 +10391,0,0.07206,2,2,0,2,7,,2,5,Forest,Ave,1429307,0.199,0.271,0,1.729442,8.5,4.5 +10432,0,0.131584,2,2,0,2,7,,3,5,Observatory,St,1429309,0,0.132,0,3.158005,7,4.5 +22074,-1,0.088483,0,2,0,2,3,DV2,2,5,Washtenaw,Ave,4603893,0.364,0.452,0,2.123585,6,5 +10197,1,0.05223,2,0,0,2,3,DV2,2,5,Washtenaw,Ave,1427706,0.339,0.391,0,1.253518,6,5 +21806,-1,0.020087,0,2,0,2,3,DV2,2,5,Washtenaw,Ave,4603893,0.452,0.472,0,0.482089,6,5 +9636,0,0.054382,2,2,0,2,5,,2,5,Geddes,Ave,1429306,0.106,0.161,0,1.305176,8.5,4.5 +10413,0,0.009075,1,1,1,2,4,,2,5,Geddes,Ave,1429306,0.161,0.17,0,0.217792,8,4.5 +10192,0,0.0853,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.399,0.484,0,2.047202,6,5 +10341,0,0.060811,1,1,0,2,7,,2,5,Observatory,St,1429309,0.147,0.208,0,1.459468,8.5,4.5 +10409,0,0.039144,1,1,1,2,4,,2,5,Geddes,Ave,1429306,0.251,0.291,0,0.939459,8,4.5 +21747,-1,0.036046,0,1,0,2,9,,2,5,Geddes,Ave,4603660,0,0.036,0,0.865113,8.5,4.5 +10158,0,0.015304,1,1,1,2,7,,2,5,Observatory,St,1429309,0.132,0.147,0,0.367298,8.5,4.5 +9510,0,0.062466,2,2,0,2,4,,2,5,Glen,Ave,1430308,0.062,0.125,0,1.499178,8,4.5 +10022,0,0.148955,2,2,1,2,4,,2,5,Fuller,St,1430308,0.289,0.438,0,3.574932,8,4.5 +19615,1,0.057948,2,0,0,2,5,,2,5,Zina Pitcher,Pl,1908704,0.093,0.151,0,1.390758,8.5,4.5 +21531,-1,0.095677,0,2,0,2,3,DV2,2,5,Huron,St,4603893,0,0.096,0,2.296246,6,5 +21685,0,0.104696,1,1,0,2,5,,2,5,Ann,St,4604073,0.275,0.379,0,2.512713,8.5,4.5 +21933,1,0.07628,2,0,0,2,3,DV2,2,5,Huron,St,4604878,2.941,3.017,0,1.830732,6,5 +22020,-1,0.087232,0,3,0,2,5,,2,5,Catherine,St,4604074,0.433,0.52,0,2.09356,8.5,4.5 +26649,0,0.13108,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.145913,0.15,4 +26659,0,0.052688,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.264516,0.15,4 +26660,0,0.071911,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.725865,0.15,4 +26790,0,0.120303,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.887262,0.15,4 +29875,0,0.124709,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.993024,0.15,4 +21418,0,0.084342,2,2,0,2,3,,2,5,Huron,St,4604878,2.856,2.941,0,2.024209,6,5 +26650,0,0.113451,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.722819,0.15,4 +30047,0,0.152527,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.660649,0.15,4 +21615,0,0.063139,2,2,0,2,3,,2,5,Huron,St,4604878,2.793,2.856,0,1.515347,6,5 +9757,0,0.06244,2,2,0,2,4,,2,5,Glen,Ave,1430308,0,0.062,0,1.498548,8,4.5 +10286,0,0.16405,2,2,0,2,4,,2,5,Glen,Ave,1430308,0.125,0.289,0,3.937212,8,4.5 +26615,0,0.126347,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.032335,0.15,4 +26616,0,0.244247,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.86194,0.15,4 +21261,-1,0.017232,0,3,0,2,5,,2,5,Catherine,St,4604074,0.416,0.433,0,0.413567,8.5,4.5 +10574,0,0.040162,1,1,0,2,4,,2,5,Fuller,St,1430804,0.637,0.678,0,0.963879,8,4.5 +10295,0,0.067512,1,1,0,2,7,,2,5,Observatory,St,1429309,0.349,0.416,0,1.620287,8.5,4.5 +21471,0,0.083046,1,1,0,2,7,,2,5,Ann,St,4604073,0.379,0.462,0,1.993101,8.5,4.5 +26656,0,0.18984,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.556154,0.15,4 +19616,0,0.076103,1,1,0,2,5,,2,5,Zina Pitcher,Pl,1908704,0.017,0.093,0,1.826474,8.5,4.5 +24720,0,0.07402,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.776472,0.15,4 +26629,0,0.083168,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.996036,0.15,4 +19618,0,0.017028,1,1,0,2,3,,2,5,Zina Pitcher,Pl,1908704,0,0.017,0,0.408666,6,5 +10030,0,0.03431,1,1,0,2,7,,2,5,Observatory,St,1429309,0.416,0.451,0,0.823445,8.5,4.5 +19650,0,0.022309,2,2,0,2,9,,2,5,Medical Center,Dr,1839204,0,0.022,0,0.535427,8.5,4.5 +10119,0,0.115089,1,1,0,2,5,,3,5,Hill,St,1429402,1.118,1.233,0,2.762138,8,4.5 +10396,0,0.100278,1,1,1,2,4,,3,5,Geddes,Ave,1429306,0.457,0.558,0,2.406665,6,4.5 +26530,0,0.13332,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.199685,0.15,4 +26531,0,0.121092,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.9062,0.15,4 +9954,0,0.043141,2,2,0,2,3,,2,5,Washtenaw,Ave,1427706,0.689,0.732,0,1.035387,6,5 +10384,0,0.042713,1,1,0,2,5,,2,5,Hill,St,1429402,1.075,1.118,0,1.025106,8.5,4.5 +21438,1,0.036113,1,0,0,2,3,,2,5,Washtenaw,Ave,4601710,0,0.036,0,0.866701,6,5 +26534,0,0.213043,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.11302,0.15,4 +10190,0,0.092263,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,0.732,0.824,0,2.214304,5,5 +26651,0,0.157205,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.772926,0.15,4 +19647,0,0.190694,2,2,0,2,9,,2,5,Medical Center,Dr,1839209,0.136,0.327,0,4.576655,8.5,4.5 +30083,0,0.133502,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.204059,0.15,4 +11167,0,0.233211,1,1,0,2,7,,3,5,Traver,Rd,1443305,0.663,0.896,0,5.597059,7,4.5 +11222,0,0.48072,2,2,1,2,3,,2,5,Plymouth,Rd,1443101,0.07,0.55,0,11.537279,6,5 +21717,0,0.517466,1,1,0,2,7,,3,5,Broadway,St,4600033,0.181,0.699,0,12.41919,7,4.5 +26063,0,0.356616,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,8.558779,0.15,4 +30019,0,0.349988,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.399706,0.15,4 +21758,0,0.181447,1,1,0,2,7,,2,5,Broadway,St,4600033,0,0.181,0,4.354729,8.5,4.5 +26617,0,0.182682,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.384375,0.15,4 +30023,0,0.078588,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.886119,0.15,4 +11518,0,0.149297,1,1,1,2,4,,2,5,Maiden,Ln,1451707,0,0.149,0,3.583138,8,4.5 +11474,0,0.069626,2,2,1,2,3,,2,5,Plymouth,Rd,1443101,0,0.07,0,1.67102,6,5 +10536,0,0.289629,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.624,0.914,0,6.951094,6,4.5 +11019,0,0.259098,1,1,0,2,4,,3,5,Pontiac,St,1451302,0.531,0.79,0,6.218358,6,4.5 +26619,0,0.067295,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.615072,0.15,4 +26586,0,0.122159,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.931812,0.15,4 +10814,0,0.039657,1,1,0,2,4,,3,5,Pontiac,St,1451302,0.491,0.531,0,0.951757,6,4.5 +10535,0,0.150747,1,1,0,2,4,,3,5,Barton,Dr,1430910,0.914,1.065,0,3.617931,6,4.5 +11403,0,0.168676,1,1,0,2,7,,3,5,Traver,Rd,1443305,0.494,0.663,0,4.048213,7,4.5 +11472,0,0.058096,2,2,1,2,3,,2,5,Plymouth,Rd,1443101,0.55,0.608,0,1.394292,6,5 +21706,0,0.209094,1,1,0,2,7,,3,5,Broadway,St,4600033,0.719,0.928,0,5.018268,7,4.5 +26604,0,0.099227,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.38144,0.15,4 +30054,0,0.199948,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.798754,0.15,4 +21710,0,0.020246,1,1,0,2,7,,3,5,Broadway,St,4600033,0.699,0.719,0,0.485892,7,4.5 +26603,0,0.173031,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.152733,0.15,4 +10447,1,0.441641,2,0,0,1,2,,5,5,S US 23,,1431408,0,0.441,0,,1.02,7 +10519,-1,0.474738,0,2,0,1,2,,5,5,S US 23 BR,,1431105,0,0.475,0,,1.02,7 +10520,-1,0.492094,0,2,0,1,2,,5,5,W M 14,,1431104,0,0.492,0,,1.02,7 +10532,1,0.751975,2,0,0,1,2,,5,5,N US 23 BR,,1431003,0,0.752,0,,1.02,7 +10533,1,0.33756,2,0,0,1,2,,3,5,E M 14,,1431002,0,0.338,0,,0.58,7 +10984,0,1.101714,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,1.881,2.982,0,26.441139,3,4 +11579,-1,0.519403,0,2,0,1,2,,5,5,N US 23,,1431410,0,0.519,0,,1.02,7 +21559,0,0.847329,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,0.844,1.691,0,20.335907,3,4 +30007,0,1.274267,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,30.582413,0.15,4 +10388,1,0.775805,2,0,0,1,2,,3,5,E M 14,,1426704,4.007,4.783,0,,0.58,7 +10429,-1,0.704016,0,2,0,1,2,,3,5,W M 14,,1427103,4.031,4.735,0,,0.58,7 +21780,0,0.745705,1,1,0,2,4,,4,5,Whitmore Lake,Rd,4603187,0.098,0.844,0,17.896929,4.5,4.5 +10434,-1,0.197872,0,2,0,1,2,,3,5,W M 14,,1427103,3.834,4.031,0,,0.58,7 +10521,1,0.143336,1,0,0,1,2,RON,4,5,Whitmore Lake/W M 14,RAMP,1431103,0,0.143,0,,1.09,4 +19249,1,0.217959,1,0,0,1,2,ROF,5,5,W M 14/Whitmore Lake,RAMP,1806910,0,0.218,0,,2.24,5 +21291,0,0.026451,1,1,0,2,4,,4,5,Whitmore Lake,Rd,4603187,0.066,0.092,0,0.63482,4.5,4.5 +22050,0,0.00635,1,1,0,2,4,,4,5,Whitmore Lake,Rd,4603187,0.092,0.098,0,0.152398,4.5,4.5 +21340,0,0.209479,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,1.691,1.9,0,5.027489,3,4 +10785,0,0.593723,1,1,0,2,4,,3,5,Pontiac,Trl,1451302,1.287,1.881,0,14.249346,6,4.5 +11530,0,0.393042,1,1,0,2,5,,3,5,Dhu Varren,Rd,1431502,0.261,0.654,0,9.433002,8,4.5 +26589,0,0.703636,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,16.887258,0.15,4 +26590,0,0.381439,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.15453,0.15,4 +10995,0,0.198074,1,1,0,2,4,,3,5,Pontiac,Trl,1451302,1.089,1.287,0,4.753777,6,4.5 +26588,0,0.192356,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.616549,0.15,4 +26581,0,0.150009,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.600213,0.15,4 +26377,0,0.302781,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.266754,0.15,4 +9819,1,0.256833,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,2.5,2.756,0,6.163983,6,4.5 +9987,0,0.267585,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.382,1.65,0,6.42205,6,4.5 +10891,0,0.67947,1,1,0,2,4,,3,5,Fuller,Rd,1448104,1.196,1.875,0,16.307274,6,4.5 +11051,0,0.260062,1,1,0,2,4,,3,5,Fuller,Rd,1448201,0,0.26,0,6.241485,6,4.5 +11464,0,0.148315,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.017,2.165,0,3.559555,5,5 +21617,0,0.439713,1,1,0,2,5,,3,5,Glazier,Way,4604123,0.365,0.804,0,10.553113,8,4.5 +21775,0,0.131174,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.275,0.406,0,3.148181,7,4.5 +21861,-1,0.263477,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0.552,0.815,0,6.323439,6,4.5 +26525,0,0.414562,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.949481,0.15,4 +26596,0,0.13666,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.279842,0.15,4 +26606,0,0.191647,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.59954,0.15,4 +26664,0,0.128677,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.088239,0.15,4 +26668,0,0.177713,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.265115,0.15,4 +30015,0,0.353209,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.477007,0.15,4 +30020,0,0.079164,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.899925,0.15,4 +30064,0,0.568736,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.649659,0.15,4 +10239,0,0.239124,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.143,1.382,0,5.738973,6,4.5 +41505,-1,0.70679,0,3,0,1,1,,4,2,S I 75,,1595106,1.073,1.773,0,,0.8,7.5 +9608,0,0.106443,1,1,0,2,5,,3,5,Hill,St,1429510,1.84,1.947,0,2.554623,8,4.5 +10130,0,0.168004,1,1,0,2,4,,3,5,Geddes,Ave,1429306,0.839,1.007,0,4.032098,6,4.5 +26554,0,0.288741,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.929774,0.15,4 +29953,0,0.29761,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.142643,0.15,4 +29957,0,0.37928,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.102731,0.15,4 +26518,0,0.116579,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.797899,0.15,4 +10377,0,0.029081,1,1,0,2,4,,3,5,Geddes,Ave,1429306,0.81,0.839,0,0.697952,6,4.5 +9899,0,0.136696,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.007,1.143,0,3.280695,6,4.5 +11162,0,0.306887,1,1,0,2,9,,3,5,Hayward,St,1443502,0.332,0.638,0,7.365299,7,4.5 +11163,0,0.223753,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.324,0.548,0,5.370073,7,4.5 +11388,0,0.331601,1,1,0,2,9,,3,5,Hayward,St,1443502,0,0.332,0,7.95842,7,4.5 +11466,0,0.398812,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.618,2.017,0,9.571485,5,5 +22125,0,0.313505,1,1,0,2,4,,3,5,Fuller,Rd,4604123,0,0.313,0,7.524119,6,4.5 +29506,0,0.15414,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.699362,0.15,4 +29507,0,0.445029,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.680694,0.15,4 +30018,0,0.248921,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.974112,0.15,4 +30053,0,0.246127,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.907046,0.15,4 +30141,0,0.195736,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.697673,0.15,4 +11393,0,0.170564,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.014,0.184,0,4.093527,7,4.5 +30016,0,0.153212,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.677084,0.15,4 +30017,0,0.157039,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.768937,0.15,4 +21267,-1,0.257111,0,2,0,2,9,,3,5,Campus,Blvd,4603256,0,0.257,0,6.170666,7,4.5 +21579,1,0.220239,2,0,0,2,9,,3,5,Campus,Blvd,4606011,0,0.22,0,5.285732,7,4.5 +37031,1,0.031737,1,0,0,1,2,RON,3,5,Whitmore Lake/E M 14,RAMP,1431001,0.139,0.171,0,,1.09,4 +11165,0,0.013411,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0,0.014,0,0.32186,7,4.5 +11164,0,0.076732,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.184,0.261,0,1.841573,7,4.5 +11390,0,0.063325,1,1,0,2,9,,3,5,Murfin,Ave,1443408,0.261,0.324,0,1.519794,7,4.5 +10763,0,0.155531,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.463,1.618,0,3.732741,5,5 +11215,0,0.224208,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.239,1.463,0,5.381003,5,5 +11467,0,0.048559,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,1.19,1.239,0,1.165407,5,5 +25232,0,0.138338,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.320111,0.15,4 +25899,0,0.362914,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.709946,0.15,4 +30140,0,0.253968,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.095238,0.15,4 +21859,0,0.051335,1,1,0,2,4,,3,5,Fuller,Rd,4604123,0.313,0.365,0,1.23203,6,4.5 +30142,0,0.305998,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.343956,0.15,4 +26667,0,0.216465,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.195163,0.15,4 +9468,0,0.112892,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,1.524,1.637,0,2.709398,6,4.5 +10035,1,0.49566,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,2.004,2.5,0,11.895832,6,4.5 +11082,0,0.314367,1,1,0,2,4,,3,5,Geddes,Rd,1448104,1.965,2.279,0,7.544796,6,4.5 +21935,0,0.175896,1,1,0,2,4,,3,5,Huron River,Dr,4604132,0,0.176,0,4.221504,6,4.5 +22127,-1,0.485673,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0.066,0.552,0,11.656154,6,4.5 +26527,0,0.364621,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.750905,0.15,4 +26597,0,0.514449,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.346783,0.15,4 +26662,0,0.302977,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.271444,0.15,4 +26669,0,0.501899,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.045586,0.15,4 +9532,0,0.283791,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,1.658,1.942,0,6.810976,6,4.5 +9852,0,0.303065,1,1,0,2,4,,3,5,Geddes,Ave,1429306,1.65,1.953,0,7.273561,6,4.5 +9612,0,0.052217,1,1,0,2,4,,3,5,Huron River,Dr,1429306,1.953,2.005,0,1.253203,6,4.5 +39860,0,0.014027,1,1,0,2,4,,4,3,South,Blvd,616405,4.002,4.016,0,0.336648,4.5,4.5 +10250,0,0.021527,2,2,0,2,4,,3,5,Huron,Pkwy,1429602,1.637,1.658,0,0.516653,6,4.5 +10301,1,0.062208,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,1.942,2.004,0,1.492987,6,4.5 +11085,0,0.074674,1,1,0,2,4,,3,5,Fuller,Rd,1448104,1.875,1.95,0,1.792186,6,4.5 +21362,-1,0.066168,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0,0.066,0,1.588022,6,4.5 +10890,0,0.015211,1,1,0,2,4,,3,5,Fuller,Rd,1448104,1.95,1.965,0,0.36507,6,4.5 +26661,0,0.201344,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.832262,0.15,4 +26663,0,0.188007,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.512177,0.15,4 +10014,1,0.540049,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,2.756,3.296,0,12.961168,6,4.5 +21528,0,0.375286,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.202,0.577,0,9.006856,8,4.5 +21619,-1,0.54276,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,0.815,1.358,0,13.026248,6,4.5 +21761,0,0.398873,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.646,1.045,0,9.572953,7,4.5 +21772,0,0.221793,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.425,0.646,0,5.323032,7,4.5 +22029,0,0.193497,1,1,1,2,5,,3,5,Green,Rd,4603133,0.481,0.674,0,4.643929,8,4.5 +26610,0,0.305806,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.339333,0.15,4 +26670,0,0.311405,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.473711,0.15,4 +21741,0,0.201678,1,1,0,2,5,,3,5,Glazier,Way,4604080,0,0.202,0,4.840274,8,4.5 +26602,0,0.247297,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.935119,0.15,4 +37032,1,0.037763,1,0,0,1,2,ROF,3,5,E M 14/Whitmore Lake,RAMP,4606010,0,0.038,0,,2.24,5 +30139,0,0.260621,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.254903,0.15,4 +9560,1,0.252975,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,3.451,3.704,0,6.071403,6,4.5 +11461,0,0.15868,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.279,2.438,0,3.808326,5,5 +21937,-1,0.248472,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,1.514,1.762,0,5.963337,6,4.5 +26608,0,0.34735,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.336404,0.15,4 +26666,0,0.35865,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.607595,0.15,4 +9804,1,0.15479,2,0,0,2,4,DV2,3,5,Huron,Pkwy,1429602,3.296,3.451,0,3.714964,6,4.5 +21422,-1,0.156406,0,2,0,2,4,DV2,3,5,Huron,Pkwy,4603904,1.358,1.514,0,3.753743,6,4.5 +21773,0,0.01839,1,1,0,2,9,,3,5,Hubbard,St,4600024,0.406,0.425,0,0.441363,7,4.5 +10334,0,0.101537,2,2,1,2,4,,3,5,Huron,Pkwy,1429602,3.704,3.805,0,2.436876,6,4.5 +11213,0,0.113957,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.165,2.279,0,2.73497,5,5 +21694,0,0.27522,1,1,1,2,5,,3,5,Green,Rd,4603133,0,0.275,0,6.605289,8,4.5 +21313,0,0.11354,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.577,0.69,0,2.724957,8,4.5 +21270,0,0.121026,1,1,1,2,5,,3,5,Green,Rd,4603133,0.36,0.481,0,2.904617,8,4.5 +21480,0,0.084645,1,1,1,2,5,,3,5,Green,Rd,4603133,0.275,0.36,0,2.031475,8,4.5 +26375,0,1.169991,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,28.079796,0.15,4 +26582,0,0.21763,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.22313,0.15,4 +26583,0,0.29429,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.062954,0.15,4 +26618,0,0.302293,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.255032,0.15,4 +26672,0,0.264481,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.347547,0.15,4 +30062,0,0.317372,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.616939,0.15,4 +30128,0,0.513381,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.321153,0.15,4 +30130,0,0.255464,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.131139,0.15,4 +9751,0,0.212415,1,1,1,2,7,,3,5,Huron,Pkwy,1429602,4.445,4.658,0,5.097969,7,4.5 +11166,0,0.227425,1,1,0,2,7,,3,5,Traver,Rd,1443305,1.978,2.205,0,5.458191,7,4.5 +11395,0,0.27093,1,1,0,2,7,,3,5,Traver,Rd,1443305,2.205,2.476,0,6.502318,7,4.5 +11410,0,0.129327,1,1,0,2,5,,3,5,Nixon,Rd,1443105,0.511,0.64,0,3.103854,8,4.5 +26592,0,0.339236,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.141675,0.15,4 +30125,0,0.209446,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.02671,0.15,4 +30126,0,0.118348,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.84035,0.15,4 +30127,0,0.33866,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.127834,0.15,4 +9502,0,0.096534,1,1,0,2,7,,3,5,Tuebingen,Pkwy,1429602,4.658,4.754,0,2.316821,7,4.5 +11522,0,0.185084,1,1,0,2,5,,3,5,Dhu Varren,Rd,1431502,0.947,1.132,0,4.442014,8,4.5 +37421,1,0.026201,1,0,0,2,5,,3,5,Nixon,Rd,1443105,0.151,0.177,0,0.628835,8,4.5 +11425,0,0.270574,1,1,0,2,5,,3,5,Nixon,Rd,1443105,0.24,0.511,0,6.493766,8,4.5 +37422,-1,0.013048,0,1,0,2,5,,3,5,Nixon,Rd,4606150,0.028,0.041,0,0.313151,8,4.5 +11174,0,0.071023,1,1,0,2,5,,3,5,Nixon,Rd,1443105,0.64,0.711,0,1.70455,8,4.5 +11171,0,0.823542,1,1,0,2,5,,5,5,Nixon,Rd,1443105,1.21,2.033,0,19.765001,3.7,5 +21536,0,0.443556,2,2,0,2,5,,3,5,Green,Rd,4603133,1.175,1.619,0,10.645354,8,4.5 +22079,0,0.451722,1,1,1,2,5,,3,5,Green,Rd,4603133,2.006,2.458,0,10.841324,8,4.5 +26508,0,0.516179,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.388292,0.15,4 +26594,0,0.384608,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.230595,0.15,4 +10760,0,0.200323,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.582,2.782,0,4.807748,5,5 +11456,0,0.173109,2,2,1,2,3,,3,5,Plymouth,Rd,1443101,2.782,2.956,0,4.154619,5,5 +21321,1,0.097068,2,0,0,2,5,,3,5,Green,Rd,4603133,1.706,1.803,0,2.329637,8,4.5 +26595,0,0.25358,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.085917,0.15,4 +30099,0,0.271933,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.526395,0.15,4 +30063,0,0.101752,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.44205,0.15,4 +9477,1,0.406851,3,0,0,1,1,,4,5,E I 94,,1426109,26.864,27.271,0,,0.8,7.5 +9711,0,0.125148,1,1,0,2,5,,4,5,Mansfield,St,1427902,0.284,0.409,0,3.003556,5.8,4.5 +9714,1,0.386555,1,0,0,1,1,RON,4,5,Michigan/W I 94,RAMP,1427806,0.201,0.588,0,,1.09,4 +9823,0,0.247541,2,2,1,2,3,,4,5,Packard,Rd,1428902,0,0.247,0,5.940995,3.7,5 +9838,-1,0.20512,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0,0.205,0,4.922883,3.7,5 +9857,1,0.173105,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0,0.173,0,4.154509,3.7,5 +9902,0,0.367776,2,2,0,2,3,,4,5,Washtenaw,Ave,1427706,4.632,4.999,0,8.826624,3.7,5 +9974,0,0.077592,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.088,1.166,0,1.8622,5,5 +10008,0,0.260189,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.535,0.795,0,6.244535,4.5,4.5 +10049,1,0.355598,1,0,0,1,1,ROF,4,5,E I 94/Michigan,RAMP,1427710,0,0.355,0,,2.24,5 +10210,0,0.764699,1,1,0,2,7,GRV,4,5,Morgan,St,1427703,0,0.764,0,18.352778,6.55,4.5 +10234,-1,0.321629,0,3,0,1,1,,4,5,W I 94,,1426110,27.024,27.345,0,,0.8,7.5 +10496,1,1.170379,2,0,0,1,2,,3,5,N US 23,,1431202,10.458,11.628,0,,0.58,7 +11220,0,0.587552,1,1,0,2,4,,3,5,Golfside,Dr,1436304,0.43,1.017,0,14.101237,6,4.5 +11346,0,0.267314,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,10.548,10.815,0,6.41554,5,5 +11440,-1,1.140856,0,2,0,1,2,,3,5,S US 23,,1431603,10.457,11.597,0,,0.58,7 +11551,0,0.134168,1,1,0,2,5,,4,5,Congress,St,1434509,0.25,0.384,0,3.22003,5.8,4.5 +21263,0,0.310611,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.197,2.508,0,7.454663,3.7,5 +21535,0,0.474297,2,2,0,2,4,,4,5,Clark,Rd,4603250,0,0.474,0,11.383121,4.5,4.5 +25290,0,0.333204,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.996907,0.15,4 +25307,0,0.297438,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.138513,0.15,4 +26675,0,0.344817,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.275598,0.15,4 +26676,0,0.528094,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.674264,0.15,4 +26678,0,0.295788,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.098915,0.15,4 +26680,0,0.238321,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.719709,0.15,4 +26684,0,0.342767,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.226416,0.15,4 +26687,0,0.371191,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.908595,0.15,4 +26694,0,0.24474,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.87376,0.15,4 +30013,0,0.548696,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.168705,0.15,4 +30113,0,0.61138,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.673112,0.15,4 +9222,-1,0.324227,0,2,0,1,2,FCD,4,5,S US 23 CD,,1426905,0.116,0.44,0,,0.8,7.5 +9478,1,0.793236,3,0,0,1,1,,3,5,E I 94,,1426109,26.071,26.864,0,,0.58,7 +10085,0,0.641128,1,1,0,2,3,,4,5,Michigan,Ave,1427301,17.128,17.769,0,15.387069,3.7,5 +10248,-1,1.013652,0,3,0,1,1,,4,5,W I 94,,1426110,26.01,27.024,0,,0.8,7.5 +10288,1,0.219396,2,0,0,1,2,FCD,4,5,N US 23 CD,,1426908,0.149,0.369,0,,0.8,7.5 +10497,1,0.999286,2,0,0,1,2,,4,5,N US 23,,1431202,9.459,10.458,0,,0.8,7.5 +10507,1,0.353289,1,0,0,1,1,RFF,4,5,N US 23/E I 94,RAMP,1431201,0,0.353,0,,0.58,7 +11350,0,1.022369,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,9.093,10.115,0,24.536857,5,5 +11441,-1,1.015374,0,2,0,1,2,,3,5,S US 23,,1431603,9.442,10.457,0,,0.58,7 +21423,0,0.231678,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.244,1.476,0,5.560274,5,5 +25278,0,0.418553,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.045281,0.15,4 +26244,0,0.49354,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.844958,0.15,4 +10353,0,0.168763,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.96,17.128,0,4.050305,3.7,5 +10498,1,0.601311,2,0,0,1,2,,4,5,N US 23,,1431202,8.858,9.459,0,,0.8,7.5 +11355,0,0.510516,2,2,1,2,3,,4,5,Carpenter,Rd,1431609,8.582,9.093,0,12.252372,3.7,5 +11452,-1,0.632103,0,2,0,1,2,,4,5,S US 23,,1431603,8.81,9.442,0,,0.8,7.5 +9971,1,0.285493,1,0,0,1,2,RON,4,5,Michigan/N US 23,RAMP,1427608,0,0.285,0,,1.09,4 +10356,0,0.054267,1,1,1,2,3,,4,5,Michigan,Ave,1427301,16.905,16.96,0,1.302406,3.7,5 +9850,-1,0.115788,0,2,0,1,2,FCD,4,5,S US 23 CD,,1426905,0,0.116,0,,0.8,7.5 +9504,1,0.149321,2,0,0,1,2,FCD,4,5,N US 23 CD,,1426908,0,0.149,0,,0.8,7.5 +11361,0,0.114031,2,2,1,2,4,,4,5,Carpenter,Rd,1431609,8.468,8.582,0,2.736742,4.5,4.5 +25277,0,0.260454,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.250897,0.15,4 +9513,-1,0.266787,0,2,0,1,2,FCD,3,5,S US 23 CD,,1426905,0.52,0.787,0,,0.58,7 +9665,1,0.235936,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.487,0.723,0,,0.58,7 +10128,1,0.307273,2,0,0,1,2,FCD,3,5,N US 23 CD,,1426908,0.692,0.999,0,,0.58,7 +10254,-1,0.396769,0,2,0,1,1,,3,5,W I 94,,1426110,25.614,26.01,0,,0.58,7 +21365,1,0.572844,1,0,0,1,1,RFF,3,5,W I 94/N US 23,RAMP,4603872,0,0.573,0,,0.58,7 +26674,0,0.152223,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.653359,0.15,4 +9806,1,0.067044,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.42,0.487,0,,0.58,7 +10179,-1,0.080271,0,2,0,1,2,FCD,3,5,S US 23 CD,,1426905,0.44,0.52,0,,0.58,7 +10256,-1,0.094847,0,2,0,1,1,,3,5,W I 94,,1426110,25.519,25.614,0,,0.58,7 +10392,1,0.079478,2,0,0,1,2,FCD,4,5,N US 23 CD,,1426908,0.369,0.448,0,,0.8,7.5 +10415,1,0.259516,1,0,0,1,1,RFS,3,5,N US 23/W I 94,RAMP,1427208,0,0.259,0,,0.22,6 +10509,1,0.260136,1,0,0,1,1,RFS,4,5,S US 23/E I 94,RAMP,1431109,0,0.26,0,,0.22,6 +9639,1,0.255987,1,0,0,1,1,RFS,3,5,W I 94/S US 23,RAMP,1427205,0,0.256,0,,0.22,6 +10508,1,0.272961,1,0,0,1,1,RFS,4,5,E I 94/N US 23,RAMP,1431110,0,0.273,0,,0.22,6 +9756,1,0.244284,2,0,0,1,2,FCD,3,5,N US 23 CD,,1426908,0.448,0.692,0,,0.58,7 +10026,-1,0.229102,0,2,0,1,2,FCD,3,5,S US 23 CD,,1426905,0.787,1.016,0,,0.58,7 +40912,-1,0.026712,0,1,0,2,4,,4,4,Jefferson,Ave,0,0,0,0,0.641091,4.5,4.5 +9517,1,0.176741,2,0,0,1,1,FCD,3,5,E I 94 CD,,1426904,0.723,0.9,0,,0.58,7 +11347,0,0.433349,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,10.115,10.548,0,10.400388,5,5 +21620,0,0.230977,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.013,1.244,0,5.543459,5,5 +25281,0,0.326164,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.827927,0.15,4 +25280,0,0.219363,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.264705,0.15,4 +10352,0,0.471489,1,1,0,2,3,,4,5,Michigan,Ave,1427301,17.906,18.378,0,11.315746,3.7,5 +26241,0,0.470751,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.298022,0.15,4 +26242,0,0.721044,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.305063,0.15,4 +9579,0,0.137089,1,1,0,2,3,,4,5,Michigan,Ave,1427301,17.769,17.906,0,3.290147,3.7,5 +10853,0,0.231491,1,1,0,2,5,,4,5,Munger,Rd,1438404,3.055,3.287,0,5.555789,5.8,4.5 +11569,0,0.07538,1,1,0,2,5,,4,5,Munger,Rd,1438404,2.98,3.055,0,1.809123,5.8,4.5 +9576,0,0.088332,1,1,0,2,3,,4,5,Michigan,Ave,1427301,18.378,18.466,0,2.119966,3.7,5 +10351,0,0.004985,1,1,0,2,3,,4,5,Michigan,Ave,1427301,18.466,18.471,0,0.119642,3.7,5 +21938,0,0.347486,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.476,1.823,0,8.339657,5,5 +25279,0,0.203615,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.886763,0.15,4 +11231,0,0.429844,1,1,0,2,4,,3,5,Golfside,Dr,1436304,0,0.43,0,10.316268,6,4.5 +21687,0,0.188685,2,2,0,2,3,,3,5,Ellsworth,Rd,4603895,1.823,2.012,0,4.52845,5,5 +26685,0,0.146058,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.505387,0.15,4 +26686,0,0.407985,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.791638,0.15,4 +21473,0,0.185319,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.012,2.197,0,4.447651,3.7,5 +9507,1,0.232051,1,0,0,1,2,ROF,3,5,S US 23/E Washtenaw,RAMP,1429608,0,0.232,0,,2.24,5 +9564,1,0.325966,1,0,0,1,2,RON,4,5,W Washtenaw/N US 23,RAMP,1429702,0,0.326,0,,1.09,4 +9917,0,0.060176,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.49,3.55,0,1.444234,5,5 +10019,1,0.205738,1,0,0,1,2,RON,3,5,E Washtenaw/N US 23,RAMP,1429610,0,0.206,0,,1.09,4 +10134,0,0.690603,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.941,4.632,0,16.574477,5,5 +10182,1,0.416333,1,0,0,1,2,RON,3,5,E Washtenaw/S US 23,RAMP,1429606,0,0.416,0,,1.09,4 +10494,1,0.07003,2,0,0,1,2,,3,5,N US 23,,1431202,11.879,11.949,0,,0.58,7 +10601,0,0.46591,2,2,1,2,3,,3,5,Packard,St,1430704,4.616,5.082,0,11.181848,5,5 +11173,0,0.387688,1,1,0,2,4,,4,5,Clark,Rd,1436405,0.247,0.634,0,9.304517,4.5,4.5 +11186,0,0.36404,1,1,1,2,4,,4,5,Golfside,Dr,1436304,1.65,2.014,0,8.736948,4.5,4.5 +37399,0,0.095218,2,2,1,2,4,,4,5,Huron River,Dr,4605100,0,0.095,0,2.285236,4.5,4.5 +11342,0,0.340178,2,2,1,2,4,,4,5,Hogback,Rd,1431609,11.721,12.061,0,8.164264,4.5,4.5 +11437,-1,0.093764,0,2,0,1,2,,3,5,S US 23,,1431603,11.863,11.957,0,,0.58,7 +25284,0,0.302881,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.269138,0.15,4 +25285,0,0.466628,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.19908,0.15,4 +25292,0,0.437668,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.50403,0.15,4 +25293,0,0.19205,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.609195,0.15,4 +26496,0,0.342012,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.208281,0.15,4 +26652,0,0.383453,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.202863,0.15,4 +26654,0,0.339197,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.140728,0.15,4 +10139,0,0.017753,2,2,1,2,3,,3,5,Washtenaw,Ave,1427706,3.55,3.568,0,0.426083,5,5 +10602,0,0.124014,2,2,1,2,3,,3,5,Packard,St,1430704,4.492,4.616,0,2.976339,5,5 +11344,0,0.261238,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,11.135,11.396,0,6.269701,5,5 +25282,0,0.308183,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.396381,0.15,4 +25283,0,0.086538,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.076915,0.15,4 +25294,0,0.293319,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.039664,0.15,4 +10604,0,0.21439,2,2,1,2,3,,3,5,Packard,St,1430704,4.155,4.369,0,5.14537,5,5 +10603,0,0.122685,2,2,1,2,3,,3,5,Packard,St,1430704,4.369,4.492,0,2.944451,5,5 +11438,-1,0.266076,0,2,0,1,2,,3,5,S US 23,,1431603,11.597,11.863,0,,0.58,7 +10457,1,0.282226,1,0,0,1,2,ROF,3,5,N US 23/E Washtenaw,RAMP,1431307,0,0.282,0,,2.24,5 +10495,1,0.250532,2,0,0,1,2,,3,5,N US 23,,1431202,11.628,11.879,0,,0.58,7 +11345,0,0.320118,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,10.815,11.135,0,7.682822,5,5 +9912,0,0.206482,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.735,3.941,0,4.955568,5,5 +11343,0,0.32536,2,2,1,2,3,,3,5,Carpenter,Rd,1431609,11.396,11.721,0,7.808642,5,5 +10137,0,0.149161,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.586,3.735,0,3.579852,5,5 +9914,0,0.017786,2,2,1,2,3,,3,5,Washtenaw,Ave,1427706,3.568,3.586,0,0.426862,5,5 +10453,0,0.444643,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0.695,1.14,0,10.671429,6,4.5 +11337,0,0.36104,1,1,0,2,4,,4,5,Hogback,Rd,1431609,12.061,12.422,0,8.664971,4.5,4.5 +26488,0,0.457344,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.976249,0.15,4 +9754,1,0.23169,1,0,0,1,2,RON,3,5,W Washtenaw/S US 23,RAMP,1429607,0,0.232,0,,1.09,4 +9922,0,0.063609,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.292,3.355,0,1.526623,5,5 +9970,1,0.274041,1,0,0,1,2,ROF,3,5,S US 23/W Washtenaw,RAMP,1427705,0,0.274,0,,2.24,5 +11436,-1,0.229187,0,2,0,1,2,,3,5,S US 23,,1431603,11.957,12.186,0,,0.58,7 +9928,0,0.026578,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.215,3.242,0,0.637872,5,5 +10144,0,0.049772,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.242,3.292,0,1.194517,5,5 +9921,0,0.05797,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.389,3.447,0,1.391291,5,5 +10283,1,0.24045,1,0,0,1,2,ROF,4,5,N US 23/W Washtenaw,RAMP,1429609,0,0.24,0,,2.24,5 +10493,1,0.199961,2,0,0,1,2,,3,5,N US 23,,1431202,11.949,12.148,0,,0.58,7 +10143,0,0.033684,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.355,3.389,0,0.80842,5,5 +10141,0,0.043254,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,3.447,3.49,0,1.038086,5,5 +10454,0,0.190617,1,1,0,2,4,,3,5,Huron River,Dr,1431308,0.505,0.695,0,4.57482,6,4.5 +26447,0,0.217483,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.219595,0.15,4 +11179,0,0.246914,1,1,0,2,4,,4,5,Clark,Rd,1436405,0,0.247,0,5.925947,4.5,4.5 +25291,0,0.258346,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.200294,0.15,4 +11335,0,0.126456,1,1,0,2,4,,3,5,Huron River,Dr,1431609,12.422,12.549,0,3.034934,6,4.5 +10600,0,0.538964,2,2,1,2,3,,3,5,Packard,St,1430704,5.082,5.62,0,12.935137,5,5 +11218,0,0.216218,1,1,1,2,4,,3,5,Golfside,Dr,1436304,1.017,1.233,0,5.189241,6,4.5 +25286,0,0.545607,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,13.094573,0.15,4 +25287,0,0.244479,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.867504,0.15,4 +26688,0,0.352455,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,8.458918,0.15,4 +11207,0,0.207722,1,1,1,2,4,,4,5,Golfside,Dr,1436304,1.375,1.583,0,4.985322,4.5,4.5 +10877,0,0.031275,1,1,1,2,4,,3,5,Golfside,Dr,1436304,1.233,1.264,0,0.750589,6,4.5 +11540,0,0.110685,1,1,1,2,4,,3,5,Golfside,Dr,1436304,1.264,1.375,0,2.656431,6,4.5 +11206,0,0.067163,1,1,1,2,4,,4,5,Golfside,Dr,1436304,1.583,1.65,0,1.611901,4.5,4.5 +11161,0,0.353723,1,1,0,2,4,,4,5,Clark,Rd,1436405,0.634,0.988,0,8.489362,4.5,4.5 +11330,0,0.362185,1,1,0,2,4,,4,5,Huron River,Dr,4605104,0.467,0.829,0,8.692429,4.5,4.5 +37401,0,0.467175,1,1,1,2,4,,4,5,Huron River,Dr,4605104,0,0.467,0,11.212208,4.5,4.5 +26497,0,0.514795,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.355087,0.15,4 +26516,0,0.485452,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.650852,0.15,4 +25288,0,0.267517,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.420413,0.15,4 +26495,0,0.435215,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.445148,0.15,4 +37406,1,0.025831,1,0,0,2,4,,3,5,Geddes,Rd,1448104,2.813,2.838,0,0.619935,6,4.5 +9996,0,0.2734,1,1,1,2,3,,4,5,Michigan,Ave,1427804,0,0.273,0,6.561592,3.7,5 +21530,0,0.269125,1,1,1,2,3,,4,5,Ellsworth,Rd,4603895,2.859,3.128,0,6.459,3.7,5 +29939,0,0.451172,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.828139,0.15,4 +29940,0,0.69901,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.776236,0.15,4 +30112,0,0.458237,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.997676,0.15,4 +9476,1,0.395087,3,0,0,1,1,,4,5,E I 94,,1426109,27.271,27.666,0,,0.8,7.5 +9828,0,0.159445,2,2,1,2,4,,4,5,Hewitt,Rd,1427803,0,0.159,0,3.826679,4.5,4.5 +9831,1,0.551258,1,0,0,1,1,RON,4,5,E Michigan/E I 94,RAMP,1427709,0,0.551,0,,1.09,4 +9832,-1,0.1454,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.611,0.757,0,3.489612,3.7,5 +9842,1,0.12157,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0.609,0.73,0,2.917682,3.7,5 +9908,1,0.201469,1,0,0,1,1,RON,4,5,W Michigan/W I 94,RAMP,1427806,0,0.201,0,,1.09,4 +10222,-1,0.342229,0,3,0,1,1,,4,5,W I 94,,1426110,27.345,27.687,0,,0.8,7.5 +22022,0,0.226563,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.508,2.734,0,5.437524,3.7,5 +30037,0,0.347331,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.33595,0.15,4 +9835,-1,0.121846,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.368,0.49,0,2.924305,3.7,5 +10062,1,0.43594,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0.173,0.609,0,10.462567,3.7,5 +19246,1,0.313185,1,0,0,1,1,ROF,4,5,W I 94/W Michigan,RAMP,1808208,0,0.313,0,,2.24,5 +21963,1,0.09228,1,0,0,1,1,RON,4,5,E Michigan/W I 94,RAMP,4602346,0.009,0.101,0,,1.09,4 +10056,-1,0.163115,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.205,0.368,0,3.91475,3.7,5 +19245,1,0.371407,1,0,0,1,1,RON,4,5,W Michigan/E I 94,RAMP,1808210,0,0.371,0,,1.09,4 +10053,-1,0.121487,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.49,0.611,0,2.915698,3.7,5 +21181,1,0.008736,1,0,0,1,3,RSF,4,5,E Michigan/W I 94,RAMP,4602346,0,0.009,0,,3.7,5 +26689,0,0.49881,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.971443,0.15,4 +9716,1,0.312518,1,0,0,1,1,ROF,4,5,W I 94/E Michigan,RAMP,1427805,0,0.312,0,,2.24,5 +10051,-1,0.215573,0,2,0,2,3,,4,5,Michigan,Ave,1427708,0.757,0.972,0,5.173759,3.7,5 +10057,1,0.241942,2,0,0,2,3,,4,5,Michigan,Ave,1427707,0.73,0.972,0,5.806598,3.7,5 +25295,0,0.142313,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.415509,0.15,4 +9795,0,0.261731,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.274,0.535,0,6.281548,4.5,4.5 +10011,0,0.114137,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.159,0.274,0,2.739277,4.5,4.5 +11552,0,0.25021,1,1,0,2,5,,4,5,Congress,St,1434509,0,0.25,0,6.005043,5.8,4.5 +21743,0,0.124948,2,2,0,2,3,,4,5,Ellsworth,Rd,4603895,2.734,2.859,0,2.998762,3.7,5 +9977,0,0.338569,1,1,1,2,3,,4,5,Michigan,Ave,1427804,0.644,0.982,0,8.125655,3.7,5 +29486,0,0.377516,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.060377,0.15,4 +30038,0,0.614504,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,14.748085,0.15,4 +9781,0,0.173108,1,1,1,2,3,,4,5,Michigan,Ave,1427804,0.273,0.446,0,4.1546,3.7,5 +9906,0,0.284441,1,1,0,2,5,,4,5,Mansfield,St,1427902,0,0.284,0,6.826575,5.8,4.5 +26679,0,0.208072,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.993738,0.15,4 +26681,0,0.214087,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.138076,0.15,4 +9992,0,0.192513,1,1,1,2,3,,3,5,Michigan,Ave,1427804,0.446,0.639,0,4.62032,5,5 +9779,0,0.004776,1,1,1,2,3,,3,5,Michigan,Ave,1427804,0.639,0.644,0,0.114631,5,5 +9895,0,0.283008,1,1,0,2,5,,3,5,1st,Ave,1427909,0.423,0.706,0,6.792181,8,4.5 +26277,0,0.136977,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.287448,0.15,4 +9682,0,0.07462,1,1,0,2,5,,3,5,1st,Ave,1427909,0.349,0.423,0,1.790871,8,4.5 +9773,0,0.105928,2,2,0,2,3,,3,5,Michigan,Ave,1427804,0.982,1.088,0,2.54227,5,5 +9652,0,0.266452,2,2,0,2,3,,3,5,Packard,Rd,1428902,0.824,1.091,0,6.394858,5,5 +9785,0,0.580678,2,2,0,2,4,,3,5,Hewitt,Rd,1427803,1.647,2.227,0,13.93628,6,4.5 +9851,0,0.194428,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0.355,0.55,0,4.666278,8,4.5 +10126,0,0.067304,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.681,5.748,0,1.615305,5,5 +10424,0,0.204399,1,1,0,2,5,,3,5,Oakwood,St,1429009,0.841,1.045,0,4.905575,8,4.5 +21810,0,0.377457,1,1,1,2,4,,3,5,Huron River,Dr,4603250,0.816,1.193,0,9.058961,6,4.5 +25300,0,0.144337,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.464078,0.15,4 +25303,0,0.320794,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.699059,0.15,4 +25304,0,0.484024,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.616584,0.15,4 +26697,0,0.409547,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.829132,0.15,4 +26807,0,0.326266,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.830396,0.15,4 +9769,0,0.352447,2,2,1,2,3,,4,5,Packard,Rd,1428902,0.334,0.686,0,8.458722,3.7,5 +9901,0,0.178614,2,2,0,2,3,,4,5,Washtenaw,Ave,1427706,5.149,5.327,0,4.286739,3.7,5 +10001,0,0.111342,2,2,1,2,4,,4,5,Hewitt,Rd,1427803,1.19,1.302,0,2.672197,4.5,4.5 +25308,0,0.105911,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.541854,0.15,4 +26683,0,0.365877,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.78106,0.15,4 +26696,0,0.172982,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.151571,0.15,4 +9968,0,0.086119,2,2,1,2,3,,4,5,Packard,Rd,1428902,0.247,0.334,0,2.066863,3.7,5 +10133,0,0.149542,2,2,0,2,3,,4,5,Washtenaw,Ave,1427706,4.999,5.149,0,3.589005,3.7,5 +26695,0,0.225662,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.415878,0.15,4 +26698,0,0.336401,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.073624,0.15,4 +9791,0,0.39537,1,1,1,2,4,,4,5,Hewitt,Rd,1427803,0.795,1.19,0,9.48887,4.5,4.5 +26489,0,0.324914,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.797927,0.15,4 +26491,0,0.263035,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.312839,0.15,4 +9873,0,0.138447,2,2,0,2,3,,4,5,Packard,Rd,1428902,0.686,0.824,0,3.322728,3.7,5 +9900,0,0.204849,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.476,5.681,0,4.916368,5,5 +10000,0,0.215631,2,2,0,2,4,,3,5,Hewitt,Rd,1427803,1.431,1.647,0,5.175138,6,4.5 +9787,0,0.129289,2,2,1,2,4,,4,5,Hewitt,Rd,1427803,1.302,1.431,0,3.102947,4.5,4.5 +10132,0,0.14889,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.327,5.476,0,3.573351,5,5 +25306,0,0.105878,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.541081,0.15,4 +25309,0,0.144323,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.463759,0.15,4 +22078,0,0.227169,1,1,1,2,4,,3,5,Huron River,Dr,4603250,0.589,0.816,0,5.452052,6,4.5 +26493,0,0.517044,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,12.409058,0.15,4 +21320,0,0.114757,2,2,0,2,4,,4,5,Clark,Rd,4603250,0.474,0.589,0,2.754174,4.5,4.5 +25301,0,0.314758,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.554181,0.15,4 +9839,0,0.361631,2,2,0,2,3,,3,5,Cross,St,1428902,1.274,1.635,0,8.679146,5,5 +9847,0,0.05963,2,2,0,2,5,,3,5,Oakwood,St,1429009,0.312,0.372,0,1.431121,8,4.5 +9875,0,0.153418,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,6.284,6.437,0,3.682037,5,5 +9879,0,0.153829,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.978,6.131,0,3.691893,5,5 +9896,0,0.139575,1,1,0,2,5,,3,5,Mansfield,St,1427902,0.833,0.973,0,3.349789,8,4.5 +11516,0,0.267636,1,1,0,2,5,,3,5,Congress,St,1434509,0.6,0.868,0,6.423258,8,4.5 +26293,0,0.22731,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.45543,0.15,4 +30074,0,0.273802,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.571258,0.15,4 +9649,0,0.058069,2,2,0,2,3,,3,5,Cross,St,1428902,1.216,1.274,0,1.393653,5,5 +9709,0,0.247286,1,1,0,2,5,,3,5,Mansfield,St,1427902,0.586,0.833,0,5.934866,8,4.5 +9904,0,0.176664,1,1,0,2,5,,3,5,Mansfield,St,1427902,0.409,0.586,0,4.239931,8,4.5 +11203,0,0.21602,1,1,0,2,5,,4,5,Congress,St,1434509,0.384,0.6,0,5.184478,5.8,4.5 +25296,0,0.091506,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.196139,0.15,4 +30072,0,0.161888,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.885319,0.15,4 +9870,0,0.125061,2,2,0,2,3,,3,5,Cross,St,1428902,1.091,1.216,0,3.001457,5,5 +30073,0,0.160455,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.850908,0.15,4 +10080,0,0.227201,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0.128,0.355,0,5.452819,8,4.5 +10116,0,0.105083,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.873,5.978,0,2.521988,5,5 +25299,0,0.298211,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.157062,0.15,4 +9897,0,0.124481,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,5.748,5.873,0,2.987532,5,5 +10338,0,0.128332,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0,0.128,0,3.079974,8,4.5 +9593,0,0.142354,2,2,0,2,3,,3,5,Cross,St,1428902,1.635,1.778,0,3.416488,5,5 +9680,0,0.079238,1,1,0,2,5,,3,5,Summit,St,1427910,0.202,0.281,0,1.901721,8,4.5 +9869,0,0.223267,1,1,0,2,5,,3,5,Congress,St,1428004,0.362,0.586,0,5.358412,8,4.5 +26692,0,0.086117,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.066813,0.15,4 +29487,0,0.267101,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.410417,0.15,4 +30079,0,0.271969,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.527246,0.15,4 +9655,0,0.08801,1,1,0,2,5,,3,5,Congress,St,1428004,0.274,0.362,0,2.112232,8,4.5 +26691,0,0.231883,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.565198,0.15,4 +9894,0,0.108224,2,2,0,2,5,,3,5,Summit,St,1427910,0.094,0.202,0,2.597381,8,4.5 +9681,0,0.093803,2,2,0,2,5,,3,5,Summit,St,1427910,0,0.094,0,2.251281,8,4.5 +9836,-1,0.097967,0,4,0,2,3,,2,5,Cross,St,1428902,1.778,1.876,0,2.351219,6,5 +9877,0,0.180559,1,1,0,2,5,,3,5,Summit,St,1427910,0.281,0.462,0,4.333417,8,4.5 +10102,1,0.094091,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.437,6.531,0,2.258176,6,5 +9659,0,0.041132,1,1,0,2,5,,2,5,Summit,St,1427910,0.462,0.503,0,0.987167,8.5,4.5 +9876,0,0.026531,1,1,0,2,5,,2,5,Summit,St,1427910,0.503,0.529,0,0.636744,8.5,4.5 +9647,0,0.198321,1,1,0,2,5,,3,5,Oakwood,St,1429009,0.643,0.841,0,4.759699,8,4.5 +25529,0,0.257557,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.181371,0.15,4 +26801,0,0.202025,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.848603,0.15,4 +10111,0,0.152585,2,2,0,2,3,,3,5,Washtenaw,Ave,1427706,6.131,6.284,0,3.662052,5,5 +10280,0,0.130965,2,2,1,2,5,,3,5,Oakwood,St,1429009,0.372,0.503,0,3.143152,8,4.5 +25521,0,0.179215,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.301165,0.15,4 +10017,0,0.140194,1,1,1,2,5,,3,5,Oakwood,St,1429009,0.503,0.643,0,3.364667,8,4.5 +37292,1,0.018077,2,0,0,2,4,,4,5,Geddes,Rd,1448104,5.411,5.429,0,0.433837,4.5,4.5 +22132,0,0.232063,2,2,0,2,4,,3,5,Huron River,Dr,4603250,1.438,1.67,0,5.569514,6,4.5 +25479,0,0.389541,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.348983,0.15,4 +21367,0,0.130126,1,1,1,2,4,,3,5,Huron River,Dr,4603250,1.308,1.438,0,3.123029,6,4.5 +25305,0,0.094513,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.26831,0.15,4 +21586,0,0.114939,1,1,1,2,4,,3,5,Huron River,Dr,4603250,1.193,1.308,0,2.758544,6,4.5 +9607,0,0.12378,1,1,0,2,5,,3,5,Cornell,Rd,1429901,0.55,0.674,0,2.970723,8,4.5 +26309,0,0.186741,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.481775,0.15,4 +10450,1,0.395014,1,0,0,1,2,ROF,4,5,N US 23/Plymouth,RAMP,1431404,0,0.395,0,,2.24,5 +10489,1,0.307208,2,0,0,1,2,,3,5,N US 23,,1431202,15.464,15.771,0,,0.58,7 +10880,0,1.043794,1,1,0,2,4,,4,5,Geddes,Rd,1448104,3.418,4.461,0,25.05106,4.5,4.5 +11249,0,0.250403,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,0,0.25,0,6.009683,3,4 +11427,-1,0.360295,0,2,0,1,2,,3,5,S US 23,,1431603,15.445,15.805,0,,0.58,7 +11570,-1,2.193243,0,2,0,1,2,,5,5,W M 14,,1431410,3.102,5.294,0,,1.02,7 +11591,0,0.503863,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,2.223,2.726,0,12.09271,4.5,4.5 +11593,1,2.137486,2,0,0,1,2,,5,5,E M 14,,1431408,3.17,5.307,0,,1.02,7 +21550,0,0.749336,1,1,0,2,5,,4,5,Earhart,Rd,4600037,0.076,0.825,0,17.984074,5.8,4.5 +25312,0,0.334223,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.021346,0.15,4 +25468,0,1.035973,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.863357,0.15,4 +26294,0,0.878263,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.078303,0.15,4 +26701,0,0.386572,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.277722,0.15,4 +10490,1,1.771925,2,0,0,1,2,,3,5,N US 23,,1431202,13.693,15.464,0,,0.58,7 +10773,0,0.356221,1,1,0,2,5,,3,5,Earhart,Rd,1442503,0.523,0.879,0,8.549292,8,4.5 +40376,1,0.018965,1,0,0,2,4,,3,5,Geddes/S US 23,RAMP,4606199,0,0.019,0,0.455168,6,4.5 +11429,-1,1.729718,0,2,0,1,2,,3,5,S US 23,,1431603,13.716,15.445,0,,0.58,7 +11592,0,0.723065,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,0.753,1.476,0,17.353555,4.5,4.5 +26699,0,0.55341,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.281851,0.15,4 +26700,0,0.461631,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,11.079136,0.15,4 +30009,0,0.612996,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.711914,0.15,4 +30010,0,1.000693,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,24.016643,0.15,4 +30138,0,0.263903,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.333667,0.15,4 +37403,0,0.312549,1,1,0,2,4,,3,5,Geddes,Rd,1448104,2.5,2.813,0,7.501185,6,4.5 +37428,1,0.032989,1,0,0,2,5,,3,5,Huron,Pkwy,4606151,0,0.033,0,0.791745,8,4.5 +26526,0,0.132136,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.171255,0.15,4 +37429,-1,0.02875,0,1,0,2,5,,3,5,Huron,Pkwy,1429602,4.028,4.056,0,0.689998,8,4.5 +26515,0,0.299291,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.182972,0.15,4 +26514,0,0.103533,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.484785,0.15,4 +40379,1,0.314983,1,0,0,1,2,ROF,3,5,S US 23/Geddes,RAMP,1430309,0,0.315,0,,2.24,5 +40378,-1,0.0183,0,1,0,2,4,,3,5,Geddes,Rd,4606197,0.044,0.062,0,0.439193,6,4.5 +10491,1,0.509126,2,0,0,1,2,,3,5,N US 23,,1431202,13.184,13.693,0,,0.58,7 +40374,-1,0.04357,0,2,0,2,4,,3,5,Geddes,Rd,4606197,0,0.044,0,1.045686,6,4.5 +11430,-1,0.251542,0,2,0,1,2,,3,5,S US 23,,1431603,13.464,13.716,0,,0.58,7 +40377,1,0.011953,2,0,0,2,4,,3,5,Geddes,Rd,1448104,3.043,3.055,0,0.286863,6,4.5 +40375,1,0.019254,1,0,0,2,4,,3,5,S US 23/Geddes,RAMP,1430309,0.315,0.334,0,0.462088,6,4.5 +40372,0,0.11651,1,2,0,2,4,,3,5,Geddes,Rd,1448104,2.881,2.998,0,2.796243,6,4.5 +11477,0,0.302638,2,2,0,2,5,,3,5,Earhart,Rd,1442503,1.198,1.501,0,7.263306,8,4.5 +29508,0,0.455161,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.923856,0.15,4 +10772,0,0.241165,2,2,0,2,5,,3,5,Earhart,Rd,1442503,0.957,1.198,0,5.787953,8,4.5 +21803,0,0.24937,1,1,0,2,5,,3,5,Glazier,Way,4604080,0.835,1.085,0,5.984872,8,4.5 +11478,0,0.078115,1,1,0,2,5,,3,5,Earhart,Rd,1442503,0.879,0.957,0,1.874769,8,4.5 +25313,0,0.40089,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.621363,0.15,4 +21551,0,0.076211,2,2,0,2,5,,4,5,Earhart,Rd,4600037,0,0.076,0,1.829066,5.8,4.5 +37910,-1,0.018483,0,1,0,2,4,,4,2,Wickham,Rd,4706172,0.04,0.058,0,0.443592,4.5,4.5 +10868,0,0.747396,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,1.476,2.223,0,17.937497,4.5,4.5 +25316,0,0.713608,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.126601,0.15,4 +25311,0,0.250717,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.017215,0.15,4 +26702,0,0.259833,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.235998,0.15,4 +10448,1,0.480826,2,0,0,1,2,RFF,4,5,N US 23/E M 14,RAMP,1431407,0,0.481,0,,0.8,7.5 +10861,0,0.348345,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,3.548,3.896,0,8.360292,3.7,5 +11432,0,0.756515,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,3.625,4.381,0,18.156349,4.5,4.5 +21290,0,0.506278,1,1,0,2,5,,4,5,Earhart,Rd,4600037,1.608,2.114,0,12.150669,5.8,4.5 +25315,0,0.357445,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.578681,0.15,4 +26381,0,0.972471,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.339301,0.15,4 +26703,0,0.412373,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,9.896941,0.15,4 +26704,0,0.501441,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.034585,0.15,4 +10487,1,0.597312,2,0,0,1,2,,4,5,N US 23,,1431202,16.081,16.678,0,,0.8,7.5 +10722,0,0.302712,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,3.322,3.625,0,7.265094,4.5,4.5 +11417,-1,0.417389,0,2,0,1,2,,3,5,S US 23,,1431603,16.126,16.543,0,,0.58,7 +21547,0,0.624709,1,1,0,2,5,,4,5,Earhart,Rd,4600037,0.984,1.608,0,14.993022,5.8,4.5 +26509,0,0.311651,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.479633,0.15,4 +26510,0,0.613462,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.723084,0.15,4 +10449,1,0.278627,1,0,0,1,2,RON,4,5,Plymouth/N US 23,RAMP,1431406,0,0.279,0,,1.09,4 +10488,1,0.309952,2,0,0,1,2,,3,5,N US 23,,1431202,15.771,16.081,0,,0.58,7 +11189,0,0.088954,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,3.233,3.322,0,2.134891,4.5,4.5 +11402,1,0.395477,1,0,0,1,2,ROF,3,5,S US 23/Plymouth,RAMP,1431608,0,0.395,0,,2.24,5 +11419,-1,0.320606,0,2,0,1,2,,3,5,S US 23,,1431603,15.805,16.126,0,,0.58,7 +11439,0,0.011458,2,2,0,2,3,,4,5,Plymouth,Rd,1443101,3.183,3.194,0,0.274991,3.7,5 +19985,1,0.211313,1,0,0,1,2,RON,4,5,Plymouth/N US 23,RAMP,2000005,0,0.211,0,,1.09,4 +19986,1,0.223671,1,0,0,1,2,RON,3,5,Plymouth/S US 23,RAMP,2000004,0,0.224,0,,1.09,4 +10734,0,0.181065,2,2,0,2,3,,3,5,Plymouth,Rd,1443101,3.002,3.183,0,4.345561,5,5 +11455,0,0.009535,2,2,0,2,3,,3,5,Plymouth,Rd,1443101,2.992,3.002,0,0.228829,5,5 +11435,0,0.038617,2,2,0,2,3,,4,5,Plymouth,Rd,1443101,3.194,3.233,0,0.926814,3.7,5 +21549,0,0.158613,1,1,0,2,5,,4,5,Earhart,Rd,4600037,0.825,0.984,0,3.806708,5.8,4.5 +10830,0,0.471257,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,2.726,3.197,0,11.310172,4.5,4.5 +25314,0,0.40418,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.700327,0.15,4 +26705,0,0.515727,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.37744,0.15,4 +26706,0,0.560273,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.446546,0.15,4 +11545,0,0.350717,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,3.197,3.548,0,8.417197,3.7,5 +11431,0,0.109593,2,2,0,2,4,,4,5,Plymouth,Rd,1443101,4.381,4.49,0,2.630221,4.5,4.5 +10782,0,0.704017,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,3.896,4.6,0,16.896396,3.7,5 +26383,0,0.821874,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.724969,0.15,4 +37299,0,0.124581,1,1,0,2,4,,4,5,Superior,Rd,4606142,0.04,0.164,0,2.989953,4.5,4.5 +26511,0,0.161285,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.870847,0.15,4 +30012,0,1.87076,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,44.898239,0.15,4 +11066,0,0.254448,1,1,0,2,4,,4,5,Geddes,Rd,1448104,4.461,4.716,0,6.106758,4.5,4.5 +26512,0,0.54719,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.132556,0.15,4 +37291,1,0.032061,2,0,0,2,4,,4,5,Geddes,Rd,1448104,5.378,5.411,0,0.769466,4.5,4.5 +37296,0,0.657642,1,1,0,2,4,,4,5,Geddes,Rd,1448104,5.517,6.174,0,15.783407,4.5,4.5 +37290,-1,0.018916,0,1,0,2,4,,4,5,Geddes,Rd,4606144,0,0.019,0,0.453976,4.5,4.5 +37297,1,0.039822,1,0,0,2,4,,4,5,Superior,Rd,4606142,0,0.04,0,0.955728,4.5,4.5 +11246,0,1.028453,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,1.114,2.142,0,24.682869,3,4 +11476,-1,0.86899,0,2,0,1,2,RON,5,5,W M 153,,1431602,0,0.869,0,,1.09,4 +11509,1,0.678169,2,0,0,1,2,ROF,5,5,E M 153,,1431510,0,0.678,0,,2.24,5 +11541,1,0.751741,2,0,0,1,2,,5,5,E M 14,,1431408,5.307,6.058,0,,1.02,7 +11565,-1,0.461907,0,2,0,1,2,,5,5,W M 14,,1431410,5.294,5.756,0,,1.02,7 +26295,0,0.066027,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,1.584658,0.15,4 +30011,0,0.298076,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,7.153836,0.15,4 +11248,0,0.607038,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,0.25,0.857,0,14.568921,3,4 +11285,0,0.63954,1,1,0,2,5,,5,5,Cherry Hill,Rd,1436303,0,0.639,0,15.348959,3.7,5 +11247,0,0.257069,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,0.857,1.114,0,6.169656,3,4 +19289,1,0.294762,1,0,0,1,2,RON,5,5,W M 153/E M 14,RAMP,1789401,0,0.295,0,,1.09,4 +19290,1,0.643192,1,0,0,1,2,ROF,5,5,W M 14/E M 153,RAMP,1789310,0,0.643,0,,2.24,5 +11473,-1,0.141471,0,2,0,2,3,DIV,5,5,W M 153,,1431602,0.869,1.01,0,3.3953,1.7,4 +11488,1,0.159115,2,0,0,2,3,DIV,5,5,E M 153,,1431510,0.678,0.837,0,3.818749,1.7,4 +11245,0,0.023955,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,2.142,2.166,0,0.574926,3,4 +7193,0,0.698652,1,1,0,2,5,,4,8,9 Mile,Rd,932909,2.897,3.596,0,16.767646,5.8,4.5 +7367,0,0.9152,1,1,0,2,5,GRV,5,8,8 Mile,Rd,942009,1.534,2.449,0,21.964796,5.55,5 +8159,0,0.508891,1,1,0,2,4,,4,8,10 Mile,Rd,942305,0,0.509,0,12.213395,4.5,4.5 +9920,0,1.016311,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,20.093,21.109,0,24.391457,3,4 +10749,0,0.997783,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,9.224,10.221,0,23.946796,3,4 +10768,0,1.134934,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,4.819,5.954,0,27.238412,3,4 +10981,0,2.35111,1,1,0,2,6,GRV,5,5,Sutton,Rd,1446902,1.62,3.97,0,56.426634,5.55,5 +11021,0,0.845428,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,2.318,3.163,0,20.290267,3.7,5 +26301,0,1.37016,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.883834,0.15,4 +26348,0,1.532624,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.782985,0.15,4 +26707,0,2.353225,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,56.477388,0.15,4 +26708,0,0.345603,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.294482,0.15,4 +26709,0,1.742061,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,41.809464,0.15,4 +26710,0,1.601547,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,38.437117,0.15,4 +26713,0,0.771468,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,18.51523,0.15,4 +9650,0,1.655834,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,18.438,20.093,0,39.740006,3,4 +11175,0,0.674596,1,1,0,2,6,,5,5,Sutton,Rd,1446902,0.945,1.62,0,16.190299,5.8,6 +26347,0,1.635651,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.255621,0.15,4 +21838,0,0.941348,1,1,0,2,4,,5,5,Whitmore Lake,Rd,4603187,2.854,3.795,0,22.592351,3,4 +26350,0,1.228192,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.476604,0.15,4 +10980,0,0.255525,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,4.404,4.66,0,6.132611,3,4 +10983,0,0.945776,1,1,0,2,6,,5,5,Sutton,Rd,1446902,0,0.945,0,22.698622,5.8,6 +25038,0,1.038549,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.925172,0.15,4 +26346,0,0.482896,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.589498,0.15,4 +10979,0,0.159803,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,4.66,4.819,0,3.83527,3,4 +7195,0,0.922168,1,1,0,2,4,,5,8,9 Mile,Rd,932909,1.372,2.294,0,22.132035,3,4 +7538,0,0.997398,1,1,0,2,7,GRV,5,8,Rushton,Rd,942101,0,0.997,0,23.937561,5.55,5 +11223,0,1.616539,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,0.702,2.318,0,38.796942,3.7,5 +19761,0,0.866031,1,1,0,2,5,,5,8,Shore,Dr,4104219,0.507,1.372,0,20.784732,3.7,5 +26720,0,0.912095,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.890282,0.15,4 +26721,0,0.881464,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.155135,0.15,4 +29547,0,0.820287,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.686899,0.15,4 +11024,0,0.770722,1,1,0,2,5,,5,5,7 Mile,Rd,1446805,0,0.77,0,18.497326,3.7,5 +26351,0,0.367956,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,8.830956,0.15,4 +26354,0,0.634517,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,15.228401,0.15,4 +11226,0,0.443011,1,1,0,2,5,,5,5,Shore,Dr,1446607,0.336,0.779,0,10.632271,3.7,5 +19762,0,0.50668,1,1,0,2,5,,5,5,Shore,Dr,4104219,0,0.507,0,12.160323,3.7,5 +11023,0,0.508939,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,0.193,0.702,0,12.214538,3.7,5 +11224,0,0.193559,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,0,0.193,0,4.645419,3.7,5 +6595,0,0.666513,1,1,0,2,5,,5,8,Whitmore Lake,Rd,932204,1.377,2.043,0,15.99632,3.7,5 +7196,0,1.224182,1,1,0,2,4,,5,8,9 Mile,Rd,932909,0.148,1.372,0,29.380368,3,4 +7996,0,0.76399,1,1,0,2,6,,5,8,Marshall,Rd,942010,1.248,2.012,0,18.335752,5.8,6 +26124,0,0.804355,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.304528,0.15,4 +5814,0,0.084966,1,2,0,2,4,,5,8,9 Mile,Rd,931604,2.103,2.188,0,2.039182,3,4 +6734,0,0.273793,1,1,0,2,4,,5,8,9 Mile,Rd,931604,2.273,2.547,0,6.571037,3,4 +26123,0,0.475316,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.407587,0.15,4 +6487,1,0.126102,1,0,0,1,2,RON,5,8,M 36/N US 23,RAMP,4105312,0,0.126,0,,1.09,4 +6733,1,0.278457,2,0,0,1,2,,5,8,N US 23,,931510,1.157,1.435,0,,1.02,7 +5141,-1,0.266747,0,2,0,1,2,,5,8,S US 23,,932002,1.153,1.42,0,,1.02,7 +5508,0,0.062782,1,1,0,2,4,,5,8,9 Mile,Rd,931604,2.188,2.251,0,1.506772,3,4 +5699,1,0.228367,1,0,0,1,2,ROF,5,8,S US 23/M 36,RAMP,932005,0,0.228,0,,2.24,5 +6485,1,0.273181,1,0,0,1,2,ROF,5,8,N US 23/M 36,RAMP,931605,0,0.273,0,,2.24,5 +6486,0,0.164917,1,1,0,2,7,,5,8,Fieldcrest,Dr,4105311,0,0.165,0,3.957998,5.8,6 +5139,0,0.022208,2,1,0,2,4,,5,8,9 Mile,Rd,931604,2.251,2.273,0,0.532995,3,4 +7197,0,0.148041,1,1,0,2,4,,5,8,9 Mile,Rd,932909,0,0.148,0,3.552976,3,4 +5986,0,0.024735,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,0.135,0.16,0,0.593644,3.7,5 +7963,0,0.248914,1,1,0,2,6,,5,8,Marshall,Rd,942010,1,1.248,0,5.97394,5.8,6 +10975,0,1.212048,1,1,0,2,6,GRV,5,5,Rushton,Rd,1446909,0,1.212,0,29.089148,5.55,5 +11190,0,0.500188,1,1,0,2,6,GRV,5,5,6 Mile,Rd,1446810,0.948,1.448,0,12.004502,5.55,5 +11157,0,0.611601,1,1,0,2,5,GRV,5,5,Rushton,Rd,1446909,1.212,1.823,0,14.678424,5.55,5 +7565,0,0.042226,1,1,0,2,5,GRV,5,8,8 Mile,Rd,942009,1.492,1.534,0,1.013419,5.55,5 +7194,0,0.603843,1,1,0,2,4,,5,8,9 Mile,Rd,932909,2.294,2.897,0,14.492236,3,4 +8139,0,0.464171,1,1,0,2,4,,4,8,Rushton,Rd,942101,0.997,1.461,0,11.140105,4.5,4.5 +26137,0,0.822713,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.745121,0.15,4 +26138,0,0.872613,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.942724,0.15,4 +30153,0,0.694578,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.669868,0.15,4 +7409,0,0.466554,1,1,0,2,5,,5,8,Rushton,Rd,942101,2.001,2.468,0,11.197307,3.7,5 +8021,0,0.37545,1,1,0,2,4,,4,8,Rushton,Rd,942101,1.461,1.836,0,9.010793,4.5,4.5 +8152,0,0.165123,1,1,0,2,4,,4,8,Rushton,Rd,942101,1.836,2.001,0,3.962949,4.5,4.5 +9905,0,0.708512,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,22.445,23.153,0,17.004295,3,4 +10968,0,1.763866,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,7.461,9.224,0,42.332788,3,4 +26304,0,1.337533,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.100803,0.15,4 +26379,0,1.573223,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.757349,0.15,4 +9910,0,1.336375,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,21.109,22.445,0,32.072989,3,4 +10807,0,1.149275,1,1,0,2,5,,5,5,Dixboro,Rd,4605100,5.576,6.725,0,27.582593,3.7,5 +10978,0,1.169946,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,5.954,7.123,0,28.078712,3,4 +11160,0,0.608323,1,1,0,2,5,GRV,5,5,Earhart,Rd,1446906,0,0.608,0,14.59974,5.55,5 +10948,0,0.09827,1,1,0,2,5,GRV,5,5,Joy,Rd,1451506,3.443,3.542,0,2.358485,5.55,5 +10765,0,0.337452,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,7.123,7.461,0,8.09884,3,4 +9903,0,0.853112,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,23.153,24.006,0,20.474698,3,4 +26280,0,0.785123,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.842943,0.15,4 +26302,0,0.563092,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,13.514196,0.15,4 +1189,0,0.44819,1,1,0,2,5,,4,3,Griswold,Rd,634406,0,0.448,0,10.756567,5.8,4.5 +2505,0,0.503963,1,1,0,2,4,,4,3,Pontiac,Trl,656507,0,0.504,0,12.095123,4.5,4.5 +3189,0,0.28457,1,1,0,2,4,,4,3,Lake,St,656510,0.246,0.531,0,6.829687,4.5,4.5 +3247,0,0.424216,1,1,0,2,5,,4,5,8 Mile,Rd,656509,0,0.424,0,10.181173,5.8,4.5 +7257,0,1.002581,1,1,0,2,5,,4,8,Dixboro,Rd,942104,0,1.002,0,24.061938,5.8,4.5 +11192,0,1.760775,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,3.163,4.923,0,42.258605,3.7,5 +20796,0,0.695885,1,1,1,2,5,,4,3,9 Mile,Rd,4407342,4.994,5.69,0,16.701239,5.8,4.5 +25266,0,0.507961,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.191059,0.15,4 +26714,0,0.515471,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.371296,0.15,4 +26716,0,0.91065,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.855596,0.15,4 +26719,0,0.371312,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.91148,0.15,4 +26725,0,0.657375,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.777007,0.15,4 +26726,0,0.255396,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.129497,0.15,4 +29805,0,0.907639,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.783329,0.15,4 +7313,0,0.606594,1,1,0,2,5,GRV,5,8,8 Mile,Rd,942009,2.449,3.056,0,14.558257,5.55,5 +7191,0,0.60069,1,1,0,2,5,,4,8,9 Mile,Rd,932909,3.87,4.47,0,14.416569,5.8,4.5 +7872,0,0.62402,1,1,0,2,5,GRV,4,8,Dixboro,Rd,942104,1.002,1.626,0,14.976488,6.55,4.5 +8158,0,0.410179,1,1,0,2,4,,4,8,10 Mile,Rd,942305,1.115,1.525,0,9.844297,4.5,4.5 +26711,0,0.476701,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.440826,0.15,4 +26717,0,0.495912,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,11.901888,0.15,4 +26718,0,0.767632,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,18.423171,0.15,4 +7192,0,0.274036,1,1,0,2,5,,4,8,9 Mile,Rd,932909,3.596,3.87,0,6.576866,5.8,4.5 +26712,0,0.500128,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.00308,0.15,4 +7890,0,0.606076,1,1,0,2,4,,4,8,10 Mile,Rd,942305,0.509,1.115,0,14.545827,4.5,4.5 +26715,0,0.618123,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,14.834945,0.15,4 +20548,0,0.090457,1,1,1,2,5,,4,3,9 Mile,Rd,4407342,5.69,5.78,0,2.170957,5.8,4.5 +3514,0,0.246517,1,1,0,2,4,,4,3,Lake,St,656510,0,0.246,0,5.916411,4.5,4.5 +7664,0,0.408047,1,1,0,2,5,GRV,4,8,Dixboro,Rd,942104,1.626,2.034,0,9.793116,6.55,4.5 +26729,0,0.493749,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.849971,0.15,4 +25264,0,0.32866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.887833,0.15,4 +2570,0,0.646689,1,1,0,2,4,,4,5,8 Mile,Rd,656509,1.148,1.795,0,15.520536,4.5,4.5 +10735,0,1.260048,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,11.007,12.266,0,30.241141,3,4 +10993,0,0.95107,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,3.984,4.935,0,22.825675,3.7,5 +10997,0,1.070097,1,1,0,2,5,,5,5,7 Mile,Rd,1446807,4.923,5.993,0,25.682319,3.7,5 +26307,0,1.017395,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.417478,0.15,4 +10960,0,0.785829,1,1,0,2,4,,5,5,Pontiac,Trl,1451302,10.221,11.007,0,18.859886,3,4 +3238,0,0.350751,1,1,0,2,4,,4,5,8 Mile,Rd,656509,0.798,1.148,0,8.418026,4.5,4.5 +3549,0,0.37359,1,1,0,2,5,,4,5,8 Mile,Rd,656509,0.424,0.798,0,8.96616,5.8,4.5 +29998,0,0.987115,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.690763,0.15,4 +10957,0,0.357872,1,1,0,2,7,,5,5,Tower,Rd,1447210,0,0.358,0,8.588925,5.8,6 +26306,0,0.09286,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,2.228634,0.15,4 +22140,0,0.077933,1,1,0,2,7,,5,5,7 Mile,Rd,4600820,0,0.078,0,1.870396,5.8,6 +3538,0,0.242084,1,1,0,2,4,,5,5,8 Mile,Rd,656509,1.795,2.037,0,5.810019,3,4 +939,0,0.630379,1,1,0,2,5,,4,3,Griswold,Rd,634406,0.996,1.626,0,15.129105,5.8,4.5 +3497,0,0.444199,1,1,0,2,4,,4,3,Lake,St,656510,1.095,1.539,0,10.660783,4.5,4.5 +3596,0,0.350732,1,1,1,2,4,,4,3,Pontiac,Trl,656507,0.998,1.348,0,8.41756,4.5,4.5 +20303,0,0.221191,1,1,0,2,5,,4,3,9 Mile,Rd,4407342,4.42,4.641,0,5.308579,5.8,4.5 +26305,0,0.765176,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.364214,0.15,4 +26730,0,0.567777,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.626649,0.15,4 +2914,0,0.493817,1,1,0,2,4,,4,3,Pontiac,Trl,656507,0.504,0.998,0,11.851612,4.5,4.5 +20106,0,0.353638,1,1,0,2,5,,4,3,9 Mile,Rd,4407342,4.641,4.994,0,8.487313,5.8,4.5 +26722,0,0.357087,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.570082,0.15,4 +26723,0,0.301885,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.245247,0.15,4 +2628,0,0.189405,1,1,1,2,4,,4,3,Lafayette,St,656507,1.808,1.997,0,4.54573,4.5,4.5 +2726,0,0.424043,1,1,0,2,5,,4,3,McMunn,St,657701,0.113,0.537,0,10.177035,5.8,4.5 +3173,0,0.264194,1,1,0,2,4,,4,3,Lake,St,656510,0.777,1.041,0,6.340666,4.5,4.5 +20952,0,0.31108,1,1,1,2,5,,4,3,Reynold Sweet,Pkwy,4412095,0,0.311,0,7.465908,5.8,4.5 +29804,0,0.459543,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.029021,0.15,4 +3412,0,0.249451,1,1,0,2,5,,4,3,Dorothy,St,657506,0.125,0.374,0,5.986816,5.8,4.5 +3595,0,0.153,1,1,1,2,4,,4,3,Lafayette,St,656507,1.584,1.737,0,3.67199,4.5,4.5 +3284,0,0.235884,1,1,1,2,4,,4,3,Pontiac,Trl,656507,1.348,1.584,0,5.661217,4.5,4.5 +3282,0,0.071101,1,1,1,2,4,,4,3,Lafayette,St,656507,1.737,1.808,0,1.706435,4.5,4.5 +3501,0,0.246314,1,1,0,2,4,,4,3,Lake,St,656510,0.531,0.777,0,5.911544,4.5,4.5 +3593,0,0.060765,1,1,1,2,4,,4,3,Lafayette,St,656507,1.997,2.058,0,1.458365,4.5,4.5 +2631,0,0.098479,1,1,1,2,5,,4,3,Reynold Sweet,Pkwy,657706,0.191,0.289,0,2.363488,5.8,4.5 +2529,0,0.053459,1,1,0,2,4,,4,3,Lake,St,656510,1.041,1.095,0,1.283021,4.5,4.5 +752,0,0.5479,1,1,0,2,5,,4,3,Griswold,Rd,634406,0.448,0.996,0,13.149603,5.8,4.5 +20492,0,0.42609,1,1,0,2,5,,4,3,9 Mile,Rd,4407342,3.994,4.42,0,10.226165,5.8,4.5 +479,0,0.366997,1,1,0,2,5,,4,3,Griswold,Rd,634406,1.626,1.993,0,8.807937,5.8,4.5 +2524,0,0.249934,1,1,0,2,4,,4,3,10 Mile,Rd,656510,1.539,1.789,0,5.998405,4.5,4.5 +9333,1,1.54837,3,0,0,1,1,,5,6,N I 275,,1228001,6.571,8.118,0,,1.02,7 +10066,0,0.806292,1,1,0,2,5,,5,6,Scofield,Rd,1238109,1.508,2.314,0,19.351012,3.7,5 +10076,0,1.224028,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,2.212,3.435,0,29.376672,3.7,5 +10174,0,1.893309,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,0.479,2.371,0,45.439413,3.7,5 +10232,0,1.453711,1,1,0,2,5,,5,6,Grafton,Rd,1236709,6.238,7.691,0,34.889071,3.7,5 +10247,0,1.455236,1,1,0,2,5,,5,6,Carleton West,Rd,1236309,0.044,1.499,0,34.92566,3.7,5 +10251,0,1.537641,1,1,0,2,5,,5,6,Sumpter,Rd,1236306,0.974,2.511,0,36.903388,3.7,5 +10260,0,1.84552,1,1,0,2,5,,5,6,Palmer,Rd,1236206,3.747,5.592,0,44.292475,3.7,5 +10275,0,2.808473,1,1,0,2,5,,5,6,Tuttlehill,Rd,1236107,3.191,5.998,0,67.403349,3.7,5 +17919,0,0.517584,1,1,0,2,5,,4,2,Bemis,Rd,1670503,2.529,3.046,0,12.422014,5.8,4.5 +18085,0,1.450414,1,1,0,2,4,,5,2,Willis,Rd,1670409,1.598,3.047,0,34.809937,3,4 +18541,0,0.362282,1,1,0,2,4,,4,2,Columbia,Ave,1674810,2.498,2.86,0,8.694765,4.5,4.5 +18880,0,1.721555,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,1.336,3.057,0,41.317311,3,4 +19180,0,0.944501,1,1,0,2,5,,5,2,Willow,Rd,1670406,2.1,3.044,0,22.668029,3.7,5 +20876,-1,1.396886,0,3,0,1,1,,5,6,S I 275,,4301662,6.111,7.508,0,,1.02,7 +30660,0,3.182127,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,76.371054,0.15,4 +30859,0,0.793546,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,19.045105,0.15,4 +30860,0,1.891895,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,45.40549,0.15,4 +30862,0,1.522141,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.531389,0.15,4 +30863,0,0.721723,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,17.321345,0.15,4 +30867,0,1.513595,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,36.326274,0.15,4 +30870,0,1.526956,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,36.646955,0.15,4 +30872,0,0.550932,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.222373,0.15,4 +30874,0,1.782058,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,42.769392,0.15,4 +31346,0,2.611556,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,62.677345,0.15,4 +31390,0,1.557523,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,37.380558,0.15,4 +33602,0,2.674908,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,64.19779,0.15,4 +8474,0,2.529279,1,1,0,2,5,,5,6,Custer,Rd,1226001,9.409,11.937,0,60.702696,3.7,5 +8478,0,3.043136,1,1,0,2,5,,5,6,Plank,Rd,1226001,6.065,9.106,0,73.035261,3.7,5 +9156,0,1.617266,1,1,0,2,5,,5,6,Ida Maybee,Rd,1226808,15.035,16.652,0,38.814374,3.7,5 +9939,0,0.957306,1,1,0,2,5,,5,6,Maybee Scofield,Rd,1241410,0,0.957,0,22.975333,3.7,5 +10266,0,0.540511,1,1,0,2,5,,5,6,Palmer,Rd,1236206,0.143,0.683,0,12.972267,3.7,5 +10272,0,1.533744,1,1,0,2,5,,5,6,Ostrander,Rd,1236203,0,1.533,0,36.809861,3.7,5 +31385,0,1.326255,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,31.830128,0.15,4 +33605,0,1.902757,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,45.666163,0.15,4 +8790,0,2.452183,1,1,0,2,4,,5,6,Custer,Rd,1223803,8.711,11.162,0,58.852392,3,4 +9100,0,0.30237,1,1,0,2,5,,5,6,Plank,Rd,1226001,9.106,9.409,0,7.256882,3.7,5 +10296,0,1.598231,1,1,0,2,5,,5,6,Tuttlehill,Rd,1236107,1.593,3.191,0,38.357554,3.7,5 +10313,0,0.80865,1,1,0,2,5,,5,6,Ostrander,Rd,1234904,3.9,4.709,0,19.407593,3.7,5 +31351,0,0.432621,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,10.3829,0.15,4 +33604,0,1.524294,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,36.583056,0.15,4 +9131,0,1.183932,1,1,0,2,5,,5,6,Plank,Rd,1226001,4.881,6.065,0,28.41437,3.7,5 +10314,0,0.57952,1,1,0,2,5,,5,6,Ostrander,Rd,1234904,3.321,3.9,0,13.90849,3.7,5 +33603,0,1.496991,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.927785,0.15,4 +8744,0,0.501101,1,1,0,2,5,,5,6,Yensch,Rd,1225105,2.912,3.412,0,12.026423,3.7,5 +8450,0,1.519706,1,1,0,2,5,,5,6,Custer,Rd,1226001,12.379,13.898,0,36.472956,3.7,5 +8577,0,0.949174,1,1,0,2,5,,5,6,Ida Maybee,Rd,1225108,0,0.949,0,22.780164,3.7,5 +10269,0,0.142688,1,1,0,2,5,,5,6,Palmer,Rd,1236206,0,0.143,0,3.424506,3.7,5 +31034,0,1.827639,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,43.863338,0.15,4 +9096,0,0.442166,1,1,0,2,5,,5,6,Custer,Rd,1226001,11.937,12.379,0,10.611988,3.7,5 +8738,0,1.920776,1,1,0,2,5,,5,6,Ida Maybee,Rd,1225108,0.949,2.869,0,46.098627,3.7,5 +10274,0,0.290354,1,1,0,2,5,,5,6,Stone,Rd,1236202,2.226,2.516,0,6.968493,3.7,5 +31035,0,1.287153,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,30.891681,0.15,4 +10175,0,0.102332,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,0.377,0.479,0,2.455974,3.7,5 +30875,0,0.157785,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,3.786839,0.15,4 +10176,0,0.376664,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,0,0.377,0,9.039936,3.7,5 +10113,0,0.148351,1,1,0,2,5,,5,6,Raisin,St,1237704,0,0.148,0,3.560416,3.7,5 +30876,0,0.104582,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,2.509958,0.15,4 +10084,0,2.212461,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,0,2.212,0,53.09907,3.7,5 +10263,0,2.124397,1,1,0,2,5,,5,6,Palmer,Rd,1236206,0.683,2.807,0,50.985529,3.7,5 +10271,0,1.230576,1,1,0,2,5,,5,6,Ostrander,Rd,1236203,1.533,2.763,0,29.533813,3.7,5 +10262,0,0.9408,1,1,0,2,5,,5,6,Palmer,Rd,1236206,2.807,3.747,0,22.579206,3.7,5 +10109,0,0.43248,1,1,0,2,5,,5,6,Doty,Rd,1237710,0.882,1.315,0,10.379514,3.7,5 +10112,0,0.145441,1,1,0,2,5,,5,6,Doty,Rd,1237710,0.737,0.882,0,3.490574,3.7,5 +10039,0,2.048051,1,1,0,2,4,,5,5,Willis,Rd,1427410,10.23,12.278,0,49.153215,3,4 +10303,0,0.720623,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1236105,0.893,1.614,0,17.294945,3,4 +10475,0,1.023904,1,1,0,2,5,,5,5,Willow,Rd,1431207,8.149,9.172,0,24.573701,3.7,5 +10856,0,0.500316,1,1,0,2,7,,4,5,Martz,Rd,1438303,2.093,2.593,0,12.007583,6.55,4.5 +11273,0,1.005957,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,3.018,4.024,0,24.142971,3.7,5 +11362,0,0.245174,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.256,6.501,0,5.884172,4.5,4.5 +11538,0,2.005984,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,2.004,4.009,0,48.143606,3.7,5 +21257,0,0.47618,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,10.799,11.275,0,11.428318,6.55,4.5 +39101,0,1.53612,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.866884,0.15,4 +39097,0,0.508989,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.215744,0.15,4 +26234,0,3.018245,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,72.43788,0.15,4 +10476,0,2.0087,1,1,0,2,5,,5,5,Willow,Rd,1431207,6.141,8.149,0,48.208809,3.7,5 +11296,0,1.005248,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,0.999,2.004,0,24.125959,3.7,5 +20336,0,0.391721,1,1,0,2,4,,5,6,Milan Oakville,Rd,4301740,0,0.392,0,9.401304,3,4 +11542,0,0.998974,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,0,0.999,0,23.975381,3.7,5 +8881,0,0.34609,1,1,0,2,4,,5,6,Milan Oakville,Rd,1223905,4.281,4.627,0,8.30616,3,4 +26236,0,0.018618,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,0.446821,0.15,4 +10477,0,1.003644,1,1,0,2,5,,5,5,Willow,Rd,1431207,5.137,6.141,0,24.087456,3.7,5 +10304,0,0.66055,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1236105,0.233,0.893,0,15.853209,3,4 +10307,0,0.232878,1,1,0,2,4,,5,6,Milan Oakville,Rd,1236105,0,0.233,0,5.589068,3,4 +10308,0,0.999698,1,1,0,2,4,,5,5,Willis,Rd,1427410,9.231,10.23,0,23.99275,3,4 +10825,0,1.101994,1,1,0,2,4,,5,5,Whittaker,Rd,1439102,5.013,6.115,0,26.447845,3,4 +11117,0,0.659699,1,1,0,2,4,,4,5,Textile,Rd,1438102,4.604,5.264,0,15.832771,4.5,4.5 +11578,0,1.049677,1,1,0,2,7,,4,5,Martz,Rd,1438303,0,1.049,0,25.19224,6.55,4.5 +21932,0,0.996444,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,8.757,9.753,0,23.914644,6.55,4.5 +26281,0,1.849336,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,44.384073,0.15,4 +26732,0,0.954569,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.909653,0.15,4 +39096,0,0.621723,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.92136,0.15,4 +30102,0,1.063212,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.517086,0.15,4 +10310,0,1.012189,1,1,0,2,4,,5,5,Willis,Rd,1427410,8.219,9.231,0,24.292534,3,4 +11293,0,1.005074,1,1,0,2,5,,5,5,Whittaker,Rd,1439102,4.009,5.013,0,24.121774,3.7,5 +10700,0,0.995697,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,0.993,1.988,0,23.896739,5.8,4.5 +11481,0,0.383505,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.808,4.191,0,9.204128,4.5,4.5 +21417,0,0.960721,1,1,0,2,5,,4,5,Bemis,Rd,4604906,7.796,8.757,0,23.057307,5.8,4.5 +26733,0,0.477103,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.450468,0.15,4 +39095,0,0.644426,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.466212,0.15,4 +10702,0,0.527785,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,0.465,0.993,0,12.666846,5.8,4.5 +26734,0,0.504953,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.118865,0.15,4 +39094,0,0.514375,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.345006,0.15,4 +10703,0,0.465588,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,0,0.465,0,11.174112,5.8,4.5 +21614,0,0.05579,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,7.741,7.796,0,1.338967,6.55,4.5 +10866,0,0.221989,1,1,0,2,5,,4,5,Merritt,Rd,1438204,3.244,3.466,0,5.327736,5.8,4.5 +10882,0,0.313805,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.245,3.559,0,7.53133,4.5,4.5 +10462,0,0.169749,1,1,0,2,4,,4,5,Stony Creek,Rd,1431208,10.744,10.914,0,4.07397,4.5,4.5 +11295,0,0.11326,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.132,3.245,0,2.718247,4.5,4.5 +11588,0,0.135083,1,1,0,2,5,,4,5,Hitchingham,Rd,1433305,1.988,2.123,0,3.241992,5.8,4.5 +11188,0,0.249736,1,1,0,2,4,,4,5,Textile,Rd,1438102,3.559,3.808,0,5.993653,4.5,4.5 +11536,0,0.427258,1,1,0,2,4,,4,5,Whittaker,Rd,1439102,6.389,6.817,0,10.254182,4.5,4.5 +11537,0,0.274469,1,1,0,2,4,,4,5,Whittaker,Rd,1439102,6.115,6.389,0,6.587261,4.5,4.5 +11468,0,0.412997,1,1,0,2,4,,4,5,Textile,Rd,1438102,4.191,4.604,0,9.911922,4.5,4.5 +25708,0,0.477934,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.470425,0.15,4 +25706,0,0.437624,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,10.502985,0.15,4 +10858,0,0.673021,1,1,0,2,7,,4,5,Martz,Rd,1438303,1.095,1.767,0,16.15251,6.55,4.5 +11022,0,0.580559,1,1,0,2,4,,4,5,Textile,Rd,1438102,5.264,5.844,0,13.933416,4.5,4.5 +21449,0,1.01032,1,1,1,2,5,,4,5,Tuttle Hill,Rd,4603029,0.503,1.513,0,24.247676,5.8,4.5 +21508,0,1.350857,1,1,0,2,7,,4,5,Bunton,Rd,4603030,0.494,1.844,0,32.42056,6.55,4.5 +21681,0,1.001101,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,9.753,10.754,0,24.026416,6.55,4.5 +25712,0,0.49291,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.829842,0.15,4 +26736,0,0.996029,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.904694,0.15,4 +20136,0,0.503154,1,1,0,2,5,GRV,4,5,Tuttle Hill,Rd,4302163,6.621,7.124,0,12.075687,6.55,4.5 +21654,0,0.503497,1,1,1,2,5,,4,5,Tuttle Hill,Rd,4603029,0,0.503,0,12.08393,5.8,4.5 +11328,0,0.045303,1,1,0,2,5,,4,5,Martz,Rd,1438303,1.049,1.095,0,1.087268,5.8,4.5 +21238,0,0.160906,1,1,0,2,5,,4,5,Tuttle Hill,Rd,4603029,1.513,1.674,0,3.86175,5.8,4.5 +11573,0,0.325809,1,1,0,2,7,,4,5,Martz,Rd,1438303,1.767,2.093,0,7.819422,6.55,4.5 +21721,0,0.494084,1,1,0,2,7,,4,5,Bunton,Rd,4603030,0,0.494,0,11.858027,6.55,4.5 +26737,0,0.523624,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.56698,0.15,4 +21467,0,0.045814,1,1,0,2,5,,4,5,Bemis,Rd,4604906,10.754,10.799,0,1.099547,5.8,4.5 +11145,0,0.28323,1,1,0,2,4,,4,5,Textile,Rd,1438102,5.973,6.256,0,6.797509,4.5,4.5 +11449,0,0.072716,1,1,0,2,5,,4,5,Huron River,Dr,1438110,2.73,2.803,0,1.745184,5.8,4.5 +10969,0,0.128709,1,1,0,2,4,,4,5,Textile,Rd,1438102,5.844,5.973,0,3.089027,4.5,4.5 +21293,0,0.144756,1,1,0,2,7,,4,5,Bunton,Rd,4603030,1.844,1.989,0,3.474144,6.55,4.5 +11275,0,1.012384,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,1.005,2.017,0,24.297209,3.7,5 +17474,0,1.336588,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,0,1.336,0,32.078121,3,4 +18741,0,0.98516,1,1,0,2,5,,5,2,Willow,Rd,1670406,0,0.985,0,23.643841,3.7,5 +30866,0,0.799127,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,19.179053,0.15,4 +31387,0,0.997524,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,23.940575,0.15,4 +31388,0,1.546197,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,37.108724,0.15,4 +11279,0,0.764845,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,0,0.765,0,18.356276,3.7,5 +20831,0,0.522234,1,1,0,2,4,,5,6,Oakville Waltz,Rd,4302164,0,0.522,0,12.533615,3,4 +10302,0,0.431784,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1236105,1.614,2.045,0,10.362815,3,4 +11527,0,0.240443,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,0.765,1.005,0,5.770634,3.7,5 +11526,0,1.001738,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,2.017,3.018,0,24.041711,3.7,5 +31389,0,1.022828,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,24.547872,0.15,4 +19189,0,0.610964,1,1,0,2,5,,5,2,Willow,Rd,1670406,0.985,1.596,0,14.663126,3.7,5 +30864,0,1.031282,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,24.750778,0.15,4 +30877,0,1.029337,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,24.704083,0.15,4 +18740,0,0.504651,1,1,0,2,5,,5,2,Willow,Rd,1670406,1.596,2.1,0,12.111626,3.7,5 +11523,0,0.414828,1,1,0,2,4,,5,5,Rawsonville,Rd,1439105,5.71,6.125,0,9.955877,3,4 +17766,0,1.102432,1,1,0,2,4,,4,2,Huron River,Dr,1674810,0,1.102,0,26.45838,4.5,4.5 +18400,0,1.271104,1,1,0,2,5,,4,2,Bemis,Rd,1670503,0,1.271,0,30.506487,5.8,4.5 +18494,0,1.598137,1,1,0,2,4,,5,2,Willis,Rd,1670409,0,1.598,0,38.355283,3,4 +30868,0,0.567874,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,13.628975,0.15,4 +30869,0,1.523559,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,36.565413,0.15,4 +31887,0,1.014913,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.357923,0.15,4 +10811,0,1.016311,1,1,0,2,5,,5,5,Rawsonville,Rd,1439105,4.024,5.04,0,24.391459,3.7,5 +11525,0,0.670352,1,1,0,2,4,,5,5,Rawsonville,Rd,1439105,5.04,5.71,0,16.088456,3,4 +10809,0,0.519453,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,6.626,7.146,0,12.466862,4.5,4.5 +11586,0,0.734717,1,1,0,2,7,,4,5,McKean,Rd,1438203,0,0.734,0,17.633205,6.55,4.5 +26819,0,0.843606,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.246541,0.15,4 +11272,0,0.501791,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,6.125,6.626,0,12.04298,4.5,4.5 +11571,0,0.502418,1,1,0,2,7,,4,5,Martz,Rd,1438303,2.593,3.095,0,12.058042,6.55,4.5 +22016,0,0.525676,1,1,0,2,5,GRV,4,5,Bemis,Rd,4604906,11.275,11.801,0,12.61622,6.55,4.5 +25709,0,0.869979,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.879487,0.15,4 +11336,0,0.767382,1,1,0,2,7,,4,5,McKean,Rd,1438203,0.734,1.502,0,18.417157,6.55,4.5 +11351,0,0.238475,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.752,6.99,0,5.72339,4.5,4.5 +11519,0,0.599035,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,7.146,7.744,0,14.376846,4.5,4.5 +25711,0,0.749498,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.987947,0.15,4 +30033,0,0.246744,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.921845,0.15,4 +11501,0,0.251081,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.501,6.752,0,6.025934,4.5,4.5 +11041,0,0.253627,1,1,0,2,4,,4,5,Textile,Rd,1438102,6.99,7.244,0,6.087056,4.5,4.5 +11513,0,0.403538,1,1,0,2,4,,4,5,Rawsonville,Rd,1439105,7.744,8.148,0,9.68491,4.5,4.5 +30865,0,0.50445,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.106799,0.15,4 +30871,0,0.561534,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,13.476816,0.15,4 +18303,0,1.166879,1,1,0,2,5,,4,2,Bemis,Rd,1670503,1.362,2.529,0,28.005086,5.8,4.5 +19010,0,1.39662,1,1,0,2,4,,4,2,Huron River,Dr,1674810,1.102,2.498,0,33.518872,4.5,4.5 +31393,0,1.02505,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.601204,0.15,4 +17989,0,0.09141,1,1,0,2,5,,4,2,Bemis,Rd,1670503,1.271,1.362,0,2.193837,5.8,4.5 +31392,0,1.027648,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.663543,0.15,4 +31368,0,0.828715,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.889155,0.15,4 +9279,0,1.149649,1,1,0,2,5,,4,6,Stewart,Rd,1229706,0.903,2.052,0,27.591579,5.8,4.5 +10072,0,2.553498,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,6.845,9.398,0,61.283941,3.7,5 +10073,0,2.122306,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,4.724,6.845,0,50.935335,3.7,5 +10093,0,1.559337,1,1,0,2,5,,5,6,Sumpter,Rd,1237801,0,1.559,0,37.42408,3.7,5 +10171,0,1.584699,1,1,0,2,5,,4,6,Bluebush,Rd,1237610,5.119,6.703,0,38.032774,5.8,4.5 +10217,0,1.52844,1,1,0,2,6,,5,6,Exeter,Rd,1237509,1.015,2.543,0,36.68256,5.8,6 +10244,0,1.433235,1,1,0,2,5,,5,6,Grafton,Rd,1236709,1.7,3.133,0,34.397641,3.7,5 +20131,0,0.458617,1,1,0,2,5,,5,6,Carleton West,Rd,4301573,0.75,1.208,0,11.006801,3.7,5 +30858,0,2.756589,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,66.158134,0.15,4 +31040,0,1.454765,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,34.914362,0.15,4 +31278,0,1.472189,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,35.332541,0.15,4 +31399,0,0.852627,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,20.463049,0.15,4 +8731,0,0.733508,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,2.244,2.977,0,17.6042,3.7,5 +10172,0,2.427037,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,2.693,5.119,0,58.248888,3.7,5 +10173,0,0.321317,1,1,0,2,5,,5,6,Bluebush,Rd,1237610,2.371,2.693,0,7.7116,3.7,5 +8565,0,0.563439,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,1.681,2.244,0,13.522538,3.7,5 +9280,0,0.903248,1,1,0,2,5,,4,6,Stewart,Rd,1229706,0,0.903,0,21.677947,5.8,4.5 +8737,0,0.156941,1,1,0,2,5,,5,6,Raisinville,Rd,1225201,1.524,1.681,0,3.766588,3.7,5 +10068,0,1.32505,1,1,0,2,5,,5,6,Sumpter,Rd,1237809,0.778,2.103,0,31.801197,3.7,5 +10074,0,1.05987,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,3.664,4.724,0,25.436892,3.7,5 +31386,0,2.263195,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,54.316675,0.15,4 +10067,0,0.178501,1,1,0,2,5,,5,6,Sumpter,Rd,1237809,2.103,2.281,0,4.28402,3.7,5 +10075,0,0.22904,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,3.435,3.664,0,5.496966,3.7,5 +10091,0,0.904053,1,1,0,2,5,,5,6,Sumpter,Rd,1237801,1.559,2.463,0,21.697267,3.7,5 +31391,0,0.129109,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,3.098617,0.15,4 +10065,0,0.190691,1,1,0,2,5,,5,6,Scofield,Rd,1238109,2.314,2.504,0,4.576577,3.7,5 +10089,0,0.147301,1,1,0,2,5,,5,6,Sumpter,Rd,1237801,2.463,2.61,0,3.535218,3.7,5 +10253,0,0.939187,1,1,0,2,5,,5,6,Sumpter,Rd,1236306,0.035,0.974,0,22.540482,3.7,5 +30861,0,0.495245,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.885892,0.15,4 +19883,0,0.04714,1,1,0,2,5,,5,6,Sumpter,Rd,4300018,0,0.047,0,1.131371,3.7,5 +20877,0,0.061666,1,1,0,2,5,,5,6,Carleton West,Rd,4301813,0,0.062,0,1.479988,3.7,5 +8862,0,1.551403,1,1,0,2,7,,5,6,Heiss,Rd,1226505,0.541,2.092,0,37.233662,5.8,6 +9278,0,1.467143,1,1,0,2,6,,5,6,Reinhardt,Rd,1229707,0,1.467,0,35.211425,5.8,6 +9378,0,1.097875,2,2,0,2,4,,5,6,Monroe,St,1227004,18.382,19.48,0,26.349011,3,4 +20128,0,0.264431,2,2,1,2,3,,4,6,Telegraph,Rd,4300001,17.245,17.51,0,6.346335,3.7,5 +20710,0,0.662019,1,1,0,2,5,,3,6,Mall,Rd,4302559,0.923,1.585,0,15.888466,8,4.5 +20823,0,0.641241,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,18.768,19.41,0,15.389773,1.7,4 +31394,0,1.014047,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.337132,0.15,4 +31396,0,1.157834,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.788014,0.15,4 +10162,0,0.949002,1,1,0,2,5,,4,6,Stewart,Rd,1237610,7.351,8.3,0,22.776037,5.8,4.5 +10164,0,0.487948,1,1,0,2,5,,4,6,Bluebush,Rd,1237610,6.863,7.351,0,11.710746,5.8,4.5 +10166,0,0.160275,1,1,0,2,5,,4,6,Bluebush,Rd,1237610,6.703,6.863,0,3.846611,5.8,4.5 +31398,0,0.100078,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,2.401883,0.15,4 +20330,0,0.544694,2,2,1,2,3,,4,6,Telegraph,Rd,4300001,16.701,17.245,0,13.072665,3.7,5 +19888,0,0.220703,1,1,0,2,5,,4,6,Mall,Rd,4302559,0.703,0.923,0,5.296881,5.8,4.5 +9275,0,0.534937,1,1,0,2,6,,5,6,Toben,Rd,1229801,0.04,0.575,0,12.838491,5.8,6 +9276,0,1.023984,1,1,0,2,6,,5,6,Reinhardt,Rd,1229707,1.717,2.741,0,24.575612,5.8,6 +20243,0,0.058454,1,1,0,2,6,,5,6,Toben,Rd,4302192,0,0.058,0,1.402897,5.8,6 +9277,0,0.25051,1,1,0,2,6,,5,6,Reinhardt,Rd,1229707,1.467,1.717,0,6.012237,5.8,6 +31395,0,0.526042,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.625013,0.15,4 +9083,0,0.54154,1,1,0,2,7,,5,6,Heiss,Rd,1226505,0,0.541,0,12.996955,5.8,6 +9381,0,0.869955,2,2,0,2,4,,4,6,Monroe,St,1227004,17.116,17.986,0,20.87893,4.5,4.5 +20380,0,0.449968,1,1,0,2,5,,4,6,Hurd,Rd,4301449,0,0.45,0,10.799227,5.8,4.5 +20178,0,0.484055,1,1,0,2,5,,4,6,Hurd,Rd,4301449,0.45,0.934,0,11.61732,5.8,4.5 +31279,0,0.145419,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.490047,0.15,4 +31280,0,0.415155,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,9.963722,0.15,4 +19887,0,0.04392,1,1,0,2,5,,4,6,Vivian,Rd,4301667,0.712,0.756,0,1.054091,5.8,4.5 +9379,0,0.083594,2,2,0,2,4,,4,6,Monroe,St,1227004,18.299,18.382,0,2.006251,4.5,4.5 +9380,0,0.313244,1,1,0,2,4,,4,6,Monroe,St,1227004,17.986,18.299,0,7.517851,4.5,4.5 +9304,0,0.643709,1,1,0,2,5,,5,6,Newport,Rd,1228304,0.412,1.056,0,15.449006,3.7,5 +10071,0,1.238377,1,1,0,2,5,,5,6,Stoney Creek,Rd,1237807,9.398,10.636,0,29.721053,3.7,5 +10245,0,1.700369,1,1,0,2,5,,5,6,Grafton,Rd,1236709,0,1.7,0,40.80885,3.7,5 +20176,0,0.325176,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,19.847,20.172,0,7.804227,1.7,4 +20583,0,0.384919,1,1,0,2,3,,5,6,Telegraph,Rd,4300001,19.41,19.794,0,9.238063,1.7,4 +20378,0,0.052517,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,19.794,19.847,0,1.260415,1.7,4 +10207,0,1.50703,1,1,0,2,6,,5,6,Exeter,Rd,1237509,3.067,4.573,0,36.168712,5.8,6 +10231,0,0.488819,1,1,0,2,5,,4,6,Monroe,St,1236805,0,0.489,0,11.731645,5.8,4.5 +10241,0,1.983711,1,1,0,2,5,,5,6,Grafton,Rd,1236709,3.133,5.116,0,47.609067,3.7,5 +31397,0,1.033366,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.800795,0.15,4 +10208,0,0.523449,1,1,0,2,6,,5,6,Exeter,Rd,1237509,2.543,3.067,0,12.56278,5.8,6 +31352,0,1.03552,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.852488,0.15,4 +10187,0,0.479739,1,1,0,2,5,,5,6,Carleton West,Rd,1237607,0.039,0.519,0,11.513736,3.7,5 +10205,0,0.874393,1,1,0,2,6,,5,6,Exeter,Rd,1237509,4.573,5.447,0,20.985423,5.8,6 +10193,0,0.039035,1,1,0,2,6,,5,6,Exeter/Carleton West Cutoff,,1237607,0,0.039,0,0.936842,5.8,6 +10195,0,0.04786,1,1,0,2,5,,5,6,Exeter,Rd,1237509,5.487,5.535,0,1.148637,3.7,5 +20424,0,0.058165,1,1,0,2,5,,5,6,Carleton West,Rd,4301857,0,0.058,0,1.39595,3.7,5 +10200,0,0.040172,1,1,0,2,6,,5,6,Exeter,Rd,1237509,5.447,5.487,0,0.964127,5.8,6 +20332,0,0.057179,1,1,0,2,5,,5,6,Carleton West,Rd,4300287,0,0.057,0,1.372307,3.7,5 +9957,0,0.454342,1,1,0,2,5,,5,6,Carleton West,Rd,1240603,0.038,0.492,0,10.904212,3.7,5 +10220,0,0.157344,1,1,0,2,5,,5,6,Burns,Rd,1237210,2.629,2.786,0,3.776256,3.7,5 +20182,0,0.066705,1,1,0,2,5,,5,6,Carleton West,Rd,4301807,0,0.067,0,1.600931,3.7,5 +20642,0,0.065415,1,1,0,2,5,,5,6,Carleton West,Rd,4301814,0,0.065,0,1.56997,3.7,5 +10218,0,0.1039,1,1,0,2,5,,4,6,Maxwell,Rd,1237301,3.125,3.229,0,2.493589,5.8,4.5 +31041,0,0.692752,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,16.626045,0.15,4 +8694,0,0.853444,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,0,0.853,0,20.482644,3.7,5 +10237,0,0.200911,1,1,0,2,5,,4,6,Grafton,Rd,1236709,5.116,5.316,0,4.821869,5.8,4.5 +31402,0,0.146815,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.523556,0.15,4 +31403,0,0.503337,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,12.080099,0.15,4 +10230,0,0.509936,1,1,0,2,5,,4,6,Monroe,St,1236805,0.489,0.998,0,12.238459,5.8,4.5 +10233,0,0.693707,1,1,0,2,5,,5,6,Grafton,Rd,1236709,5.544,6.238,0,16.648958,3.7,5 +31285,0,0.654762,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,15.714279,0.15,4 +10235,0,0.227806,1,1,0,2,5,,4,6,Grafton,Rd,1236709,5.316,5.544,0,5.467337,5.8,4.5 +9294,1,0.433182,1,0,0,1,1,ROF,5,6,S I 275/Carleton Rockwood,RAMP,1228307,0,0.433,0,,2.24,5 +16439,1,0.308959,1,0,0,1,1,RON,5,2,South Huron/N I 275,RAMP,1607305,0.055,0.364,0,,1.09,4 +16793,1,0.662656,3,0,0,1,1,,5,2,N I 275,,1607208,2.654,3.317,0,,1.02,7 +16905,-1,0.361591,0,3,0,1,1,,5,2,S I 275,,1607610,2.995,3.356,0,,1.02,7 +17008,1,0.387833,1,0,0,1,1,ROF,5,2,S I 275/W South Huron,RAMP,1607704,0,0.388,0,,2.24,5 +17555,0,1.00022,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,3.032,4.032,0,24.005276,3,4 +17670,0,0.806735,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670605,0.703,1.51,0,19.361635,5.55,5 +17911,0,0.342709,1,1,0,2,4,,5,2,Waltz,Rd,1673810,3.087,3.43,0,8.225018,3,4 +18083,0,0.804465,1,1,0,2,5,,5,2,Harris,Rd,1670501,3.779,4.583,0,19.307163,3.7,5 +18093,0,0.988461,1,1,0,2,5,,5,2,Judd,Rd,1670408,5.128,6.116,0,23.723076,3.7,5 +18693,0,0.712095,1,1,0,2,4,,5,2,Savage,Rd,1670810,1.307,2.019,0,17.090273,3,4 +18970,0,1.009717,1,1,0,2,5,,5,2,Huron River,Dr,1670406,11.27,12.279,0,24.233208,3.7,5 +19083,0,1.513226,1,1,0,2,5,,5,2,Willow,Rd,1670406,5.115,6.628,0,36.317419,3.7,5 +19190,0,0.386992,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,5.575,5.962,0,9.287798,3,4 +30686,0,1.347785,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,32.34684,0.15,4 +31217,0,1.429106,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,34.29855,0.15,4 +31228,0,1.08305,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.993197,0.15,4 +17638,0,1.000924,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,1.029,2.029,0,24.022187,3,4 +18187,0,1.014711,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670604,0.994,2.009,0,24.353059,5.55,5 +18870,0,0.634028,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,3.467,4.101,0,15.216677,3,4 +19091,0,0.650995,1,1,0,2,5,,5,2,Willow,Rd,1670406,3.94,4.591,0,15.623876,3.7,5 +31218,0,1.547361,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,37.136667,0.15,4 +31404,0,1.49664,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,35.919359,0.15,4 +31405,0,0.999535,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,23.988846,0.15,4 +31409,0,1.190845,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,28.580275,0.15,4 +17468,0,0.409981,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,3.057,3.467,0,9.839535,3,4 +18062,0,1.028881,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,0,1.029,0,24.693151,3,4 +17972,0,1.002986,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,2.029,3.032,0,24.071674,3,4 +18728,0,0.896145,1,1,0,2,5,,5,2,Willow,Rd,1670406,3.044,3.94,0,21.507477,3.7,5 +17465,0,0.969416,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,4.101,5.07,0,23.265973,3,4 +19165,0,0.994512,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670604,0,0.994,0,23.868293,5.55,5 +31406,0,1.124585,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,26.990047,0.15,4 +31407,0,0.5095,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.228004,0.15,4 +18869,0,0.505135,1,1,0,2,4,,5,6,Oakville Waltz,Rd,1670404,5.07,5.575,0,12.123231,3,4 +17784,0,0.499739,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670604,2.009,2.508,0,11.993748,5.55,5 +18625,0,0.524385,1,1,0,2,5,,5,2,Willow,Rd,1670406,4.591,5.115,0,12.585239,3.7,5 +18814,0,0.251927,1,1,0,2,5,GRV,5,2,Wear,Rd,1670407,4.867,5.119,0,6.046249,5.55,5 +18107,0,0.703673,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670605,0,0.703,0,16.888158,5.55,5 +31408,0,0.34408,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,8.257914,0.15,4 +17463,0,0.528426,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,5.6,6.129,0,12.682217,3,4 +17669,0,0.935186,1,1,0,2,5,,4,2,Bemis,Rd,1670503,4.121,5.056,0,22.444459,5.8,4.5 +17797,0,0.577825,1,1,0,2,5,GRV,5,2,Martinsville,Rd,1670702,5.539,6.117,0,13.867797,5.55,5 +18084,0,0.703136,1,1,0,2,5,,5,2,Harris,Rd,1670501,2.771,3.474,0,16.875257,3.7,5 +18606,0,1.007409,1,1,0,2,5,,5,2,Judd,Rd,1670408,3.548,4.555,0,24.177821,3.7,5 +18653,0,1.031263,1,1,0,2,4,,4,2,Savage,Rd,1674810,3.484,4.515,0,24.750323,4.5,4.5 +31224,0,0.45365,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,10.887605,0.15,4 +31359,0,1.889612,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,45.35069,0.15,4 +17488,0,0.68909,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,4.409,5.097,0,16.538167,3,4 +18356,0,0.521214,1,1,0,2,5,,5,2,Judd,Rd,1670408,3.027,3.548,0,12.509126,3.7,5 +18486,0,1.075886,1,1,0,2,5,,5,2,Willis,Rd,1670409,3.047,4.123,0,25.821264,3.7,5 +17914,0,0.377193,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,4.032,4.409,0,9.052636,3,4 +17898,0,0.503149,1,1,0,2,4,,5,2,Sumpter,Rd,1670701,5.097,5.6,0,12.075578,3,4 +18197,0,0.508145,1,1,0,2,5,,5,2,Martinsville,Rd,1670702,5.031,5.539,0,12.195475,3.7,5 +18106,0,1.075219,1,1,0,2,5,,4,2,Bemis,Rd,1670503,3.046,4.121,0,25.805263,5.8,4.5 +18391,0,0.801031,1,1,0,2,4,,4,2,Sumpter,Rd,1670701,6.329,7.13,0,19.22474,4.5,4.5 +18857,0,0.200208,1,1,0,2,4,,4,2,Sumpter,Rd,1670701,6.129,6.329,0,4.804994,4.5,4.5 +18626,0,0.882036,1,1,0,2,4,,4,2,Sumpter,Rd,1670701,7.13,8.011,0,21.168868,4.5,4.5 +19103,0,0.39256,1,1,0,2,4,,4,2,Columbia,Ave,1674810,3.092,3.484,0,9.421442,4.5,4.5 +31229,0,0.469379,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.265098,0.15,4 +18123,0,0.197546,1,1,0,2,4,,4,2,Columbia,Ave,1674810,2.86,3.058,0,4.741093,4.5,4.5 +31369,0,0.316605,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.598512,0.15,4 +31367,0,0.116898,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.805546,0.15,4 +18188,0,0.133086,1,1,0,2,4,,4,2,South,St,1670701,8.011,8.144,0,3.194057,4.5,4.5 +17693,0,0.034229,1,1,1,2,4,,4,2,Columbia,Ave,1674810,3.058,3.092,0,0.821488,4.5,4.5 +22565,0,0.023575,1,1,0,2,4,,4,2,Huron River,Dr,4705582,0,0.024,0,0.565811,4.5,4.5 +22854,0,0.022281,1,1,0,2,4,,4,2,Main,St,4705581,0.561,0.583,0,0.534742,4.5,4.5 +18063,0,0.848996,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670606,0,0.849,0,20.375908,5.55,5 +18485,0,0.305533,1,1,0,2,5,,5,2,Harris,Rd,1670501,3.474,3.779,0,7.33279,3.7,5 +18501,0,0.255319,1,1,0,2,5,,5,2,Judd,Rd,1670408,4.873,5.128,0,6.127657,3.7,5 +31223,0,1.069914,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.677924,0.15,4 +31225,0,0.588892,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,14.133405,0.15,4 +18172,0,0.317768,1,1,0,2,5,,5,2,Judd,Rd,1670408,4.555,4.873,0,7.626434,3.7,5 +31222,0,0.542113,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,13.010701,0.15,4 +17639,0,0.674132,1,1,0,2,5,GRV,5,2,Haggerty,Rd,1670606,0.849,1.523,0,16.179158,5.55,5 +17812,0,0.562114,1,1,0,2,4,,4,2,Savage,Rd,1674810,4.945,5.507,0,13.490746,4.5,4.5 +18946,0,1.047763,1,1,0,2,4,,4,2,Haggerty,Rd,1670810,2.019,3.066,0,25.1463,4.5,4.5 +31357,0,0.544364,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.064743,0.15,4 +31360,0,0.99445,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.866799,0.15,4 +18212,0,0.430251,1,1,0,2,4,,4,2,Savage,Rd,1674810,4.515,4.945,0,10.326035,4.5,4.5 +31358,0,0.573615,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.76677,0.15,4 +17757,0,0.433596,1,1,0,2,5,,4,2,Bemis,Rd,1670503,5.056,5.489,0,10.406299,5.8,4.5 +18470,0,0.503452,1,1,0,2,4,,4,2,Haggerty,Rd,1670810,3.066,3.569,0,12.082858,4.5,4.5 +9322,0,0.356067,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.056,1.412,0,8.545619,3,4 +16540,1,2.391616,3,0,0,1,1,,5,2,N I 275,,1607208,0.264,2.654,0,,1.02,7 +16708,0,0.681063,1,1,0,2,4,,5,2,Huron,Rd,1607304,1.009,1.689,0,16.345503,3,4 +16921,-1,2.315342,0,3,0,1,1,,5,2,S I 275,,1607610,0.397,2.711,0,,1.02,7 +18322,0,1.028294,1,1,0,2,4,,5,2,Waltz,Rd,1673810,0,1.028,0,24.679052,3,4 +19077,0,0.550766,1,1,0,2,5,,5,2,Willow,Rd,1670406,7.149,7.699,0,13.218395,3.7,5 +31230,0,0.188062,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,4.513499,0.15,4 +9323,0,0.887343,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,0.169,1.056,0,21.296242,3,4 +17902,0,0.106733,1,1,0,2,4,,5,6,Clark,Rd,1670703,0.153,0.26,0,2.561583,3,4 +17790,0,0.225618,1,1,0,2,4,,5,2,Oakville Waltz,Rd,1670806,0,0.226,0,5.414826,3,4 +20591,0,0.233879,1,1,0,2,4,,5,6,Oakville Waltz,Rd,4302166,0,0.234,0,5.613097,3,4 +31231,0,0.768981,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,18.455546,0.15,4 +18615,0,0.521448,1,1,0,2,5,,5,2,Willow,Rd,1670406,6.628,7.149,0,12.514758,3.7,5 +18745,0,0.750515,1,1,0,2,4,,5,2,Waltz,Rd,1673810,1.588,2.338,0,18.012357,3,4 +31234,0,0.674639,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,16.191346,0.15,4 +31235,0,0.494098,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.858346,0.15,4 +17935,0,0.560246,1,1,0,2,4,,5,2,Waltz,Rd,1673810,1.028,1.588,0,13.445904,3,4 +18299,0,0.749174,1,1,0,2,4,,5,2,Waltz,Rd,1673810,2.338,3.087,0,17.980186,3,4 +9293,1,0.389764,1,0,0,1,1,RON,5,6,Will Carleton/S I 275,RAMP,1228308,0,0.39,0,,1.09,4 +9317,0,0.291182,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,2.072,2.363,0,6.988359,3,4 +9324,1,0.405562,1,0,0,1,1,ROF,5,6,N I 275/Will Carleton,RAMP,1228107,0,0.405,0,,2.24,5 +9332,1,0.374917,3,0,0,1,1,,5,6,N I 275,,1228001,8.118,8.493,0,,1.02,7 +17052,1,0.442129,1,0,0,1,1,ROF,5,2,S I 275/Will Carlton,RAMP,1607609,0,0.442,0,,2.24,5 +20641,-1,0.335603,0,3,0,1,1,,5,6,S I 275,,4301662,7.508,7.843,0,,1.02,7 +9320,0,0.041331,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.746,1.787,0,0.991951,3,4 +18649,0,0.039954,1,1,0,2,4,,5,2,Waltz,Rd,1673901,0,0.04,0,0.958902,3,4 +9321,0,0.334555,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.412,1.746,0,8.029327,3,4 +18207,0,0.22447,1,1,0,2,4,,5,2,Waltz,Rd,1673901,0.04,0.264,0,5.387273,3,4 +22184,0,0.034252,1,1,0,2,4,,5,2,Waltz/Oakville Waltz Cutoff,,4704329,0,0.034,0,0.822055,3,4 +9319,0,0.230368,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,1.787,2.018,0,5.528842,3,4 +9318,0,0.053877,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,2.018,2.072,0,1.293054,3,4 +16749,-1,0.396703,0,3,0,1,1,,5,2,S I 275,,1607610,0,0.397,0,,1.02,7 +16711,1,0.305144,1,0,0,1,1,RON,5,2,Will Carlton/N I 275,RAMP,1607301,0,0.305,0,,1.09,4 +16817,1,0.263683,3,0,0,1,1,,5,2,N I 275,,1607208,0,0.264,0,,1.02,7 +16701,0,0.164177,2,2,1,2,4,,5,2,Huron,Rd,1607304,2.207,2.371,0,3.940237,3,4 +18610,0,0.819237,1,1,0,2,5,,5,2,Willow,Rd,1670406,7.699,8.518,0,19.661676,3.7,5 +37938,1,0.153424,1,0,0,1,1,RON,5,2,W South Huron/N I 275,RAMP,4718581,0,0.153,0,,1.09,4 +31233,0,0.725426,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,17.410223,0.15,4 +31295,0,1.175205,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,28.204926,0.15,4 +16450,0,0.196606,1,1,0,2,4,,5,2,Huron,Rd,1607304,1.689,1.886,0,4.71855,3,4 +31232,0,0.783316,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,18.799584,0.15,4 +16071,1,0.321762,1,0,0,1,1,ROF,5,2,S I 275/E South Huron,RAMP,1607703,0,0.322,0,,2.24,5 +16337,1,0.362703,1,0,0,1,1,RON,5,2,South Huron/S I 275,RAMP,1607702,0,0.363,0,,1.09,4 +16446,0,0.190268,2,2,1,2,4,,5,2,Huron,Rd,1607304,2.017,2.207,0,4.566441,3,4 +16453,1,0.405659,1,0,0,1,1,ROF,5,2,N I 275/South Huron,RAMP,1607303,0,0.406,0,,2.24,5 +16618,-1,0.283605,0,3,0,1,1,,5,2,S I 275,,1607610,2.711,2.995,0,,1.02,7 +16702,0,0.131002,2,2,1,2,4,,5,2,Huron,Rd,1607304,1.886,2.017,0,3.144057,3,4 +16691,1,0.054736,1,0,0,1,1,RON,5,2,South Huron/N I 275,RAMP,1607305,0,0.055,0,,1.09,4 +31294,0,0.508792,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.211009,0.15,4 +16445,0,0.018913,2,2,1,2,5,,5,2,Huron,Rd,1607304,2.371,2.39,0,0.453912,3.7,5 +12232,0,0.562308,2,2,0,2,4,,4,2,Eureka,Rd,1578308,0,0.562,0,13.495402,4.5,4.5 +16404,0,0.227016,1,1,0,2,4,,5,2,Sibley,Rd,1607308,0.394,0.621,0,5.448377,3,4 +16493,-1,1.23973,0,3,0,1,1,,4,2,S I 275,,1607610,5.407,6.647,0,,0.8,7.5 +16511,1,1.297844,3,0,0,1,1,,5,2,N I 275,,1607208,5.305,6.603,0,,1.02,7 +16689,0,0.687341,1,1,0,2,5,,5,2,Huron River,Dr,1607306,0,0.687,0,16.496189,3.7,5 +17723,0,1.459591,1,1,0,2,5,,5,2,Hannan,Rd,1710309,0,1.459,0,35.030182,3.7,5 +18218,0,0.994078,1,1,0,2,4,,5,2,Huron River,Dr,1673810,5.076,6.07,0,23.85787,3,4 +18367,0,0.758633,1,1,0,2,5,,5,2,Vining,Rd,1670406,13.52,14.279,0,18.207202,3.7,5 +18442,0,0.473369,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,0.662,1.135,0,11.360862,4.5,4.5 +30598,0,1.451048,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,34.825161,0.15,4 +31219,0,0.68264,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,16.383365,0.15,4 +31237,0,1.057686,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.384463,0.15,4 +31242,0,0.502954,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.070886,0.15,4 +31243,0,0.498722,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.969336,0.15,4 +31371,0,0.668381,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.041142,0.15,4 +17899,0,0.32216,1,1,0,2,4,,5,2,Gentz,Rd,1674108,0,0.322,0,7.731835,3,4 +18236,0,0.367139,1,1,0,2,4,,5,2,Waltz,Rd,1673810,4.082,4.449,0,8.811337,3,4 +19176,0,0.592919,1,1,0,2,4,,5,2,Savage,Rd,1670810,0,0.593,0,14.230056,3,4 +19202,0,0.760096,1,1,0,2,5,,5,2,Judd,Rd,1670809,0,0.76,0,18.242311,3.7,5 +31241,0,0.514963,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,12.359118,0.15,4 +17470,0,0.314048,1,1,0,2,5,,5,2,Clark,Rd,1670703,4.059,4.373,0,7.537161,3.7,5 +19150,0,0.714348,1,1,0,2,4,,5,2,Savage,Rd,1670810,0.593,1.307,0,17.144355,3,4 +31240,0,0.263673,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,6.328157,0.15,4 +17768,0,0.248608,1,1,0,2,4,,5,2,Judd,Rd,1670809,0.76,1.008,0,5.966584,3,4 +18674,0,0.652274,1,1,0,2,4,,5,2,Waltz,Rd,1673810,3.43,4.082,0,15.654585,3,4 +31220,0,0.496946,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.926713,0.15,4 +31221,0,0.296723,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,7.121358,0.15,4 +16656,0,0.394167,1,1,0,2,4,,5,2,Sibley,Rd,1607308,0,0.394,0,9.460005,3,4 +17842,0,0.447172,1,1,0,2,4,,5,2,Waltz,Rd,1673810,4.449,4.896,0,10.732133,3,4 +18658,0,0.180693,1,1,0,2,4,,5,2,Huron River,Dr,1673810,4.896,5.076,0,4.336626,3,4 +18269,0,0.153698,1,1,0,2,9,,5,2,South Metro,Pkwy,1674109,0,0.154,0,3.688758,5.8,6 +17464,0,0.083732,1,1,0,2,9,,5,2,Gentz,Rd,1674108,0.322,0.406,0,2.009567,5.8,6 +17724,0,1.266874,1,1,0,2,5,,4,2,Hannan,Rd,1710309,1.459,2.726,0,30.404966,5.8,4.5 +17820,0,0.74559,1,1,0,2,4,,4,2,Huron River,Dr,1673810,6.07,6.816,0,17.894151,4.5,4.5 +18915,0,0.661825,1,1,0,2,5,,4,2,Pennsylvania,Rd,1674307,0,0.662,0,15.883809,5.8,4.5 +31362,0,0.563241,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.517783,0.15,4 +30873,0,0.500138,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.003309,0.15,4 +18217,0,0.623306,1,1,0,2,4,,4,2,Huron River,Dr,1673810,7.061,7.684,0,14.959339,4.5,4.5 +18657,0,0.245577,1,1,0,2,4,,4,2,Huron River,Dr,1673810,6.816,7.061,0,5.893846,4.5,4.5 +16435,0,1.089382,1,1,0,2,5,,5,2,Huron River,Dr,1607306,0.687,1.776,0,26.145172,3.7,5 +16513,1,1.288769,3,0,0,1,1,,5,2,N I 275,,1607208,3.317,4.605,0,,1.02,7 +16610,-1,1.350773,0,3,0,1,1,,5,2,S I 275,,1607610,3.356,4.706,0,,1.02,7 +16644,0,0.863434,1,1,0,2,4,,5,2,Sibley,Rd,1607308,1.132,1.995,0,20.722409,3,4 +18487,0,1.001402,1,1,0,2,5,,5,2,Vining,Rd,1670406,12.279,13.28,0,24.033646,3.7,5 +31227,0,0.334047,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,8.017132,0.15,4 +31238,0,0.280024,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,6.720579,0.15,4 +31239,0,1.02376,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,24.570251,0.15,4 +16335,1,0.355285,1,0,0,1,1,RON,5,2,Sibley/N I 275,RAMP,1607309,0,0.355,0,,1.09,4 +16413,1,0.428417,1,0,0,1,1,ROF,5,2,N I 275/Sibley,RAMP,1607307,0,0.428,0,,2.24,5 +16651,0,0.312741,2,2,1,2,4,,5,2,Sibley,Rd,1607308,0.621,0.934,0,7.505796,3,4 +16695,1,0.354789,1,0,0,1,1,RON,5,2,Sibley/S I 275,RAMP,1607705,0,0.355,0,,1.09,4 +16764,-1,0.701258,0,3,0,1,1,,5,2,S I 275,,1607610,4.706,5.407,0,,1.02,7 +16790,1,0.700238,3,0,0,1,1,,5,2,N I 275,,1607208,4.605,5.305,0,,1.02,7 +16139,1,0.44344,1,0,0,1,1,ROF,5,2,S I 275/Sibley,RAMP,1607706,0,0.443,0,,2.24,5 +16398,0,0.177286,2,2,1,2,4,,5,2,Sibley,Rd,1607308,0.934,1.111,0,4.254869,3,4 +16683,0,0.582258,1,1,0,2,5,,5,2,Huron River,Dr,1607306,1.776,2.358,0,13.97419,3.7,5 +31236,0,0.62336,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,14.960634,0.15,4 +18831,0,0.240382,1,1,0,2,5,,5,2,Vining,Rd,1670406,13.28,13.52,0,5.769175,3.7,5 +11544,0,0.700312,1,1,0,2,5,,4,2,Wayne,Rd,1576609,0.333,1.033,0,16.807477,5.8,4.5 +12541,1,0.157611,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.189,1.346,0,3.782673,3.7,5 +12582,1,0.418655,1,0,0,1,1,ROF,4,2,N I 275/Eureka,RAMP,1578307,0,0.419,0,,2.24,5 +16775,1,0.397429,3,0,0,1,1,,4,2,N I 275,,1607208,6.603,7,0,,0.8,7.5 +18333,0,0.684301,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,1.666,2.351,0,16.423236,4.5,4.5 +22242,-1,0.64779,0,2,0,2,3,DIV,4,2,Eureka,Rd,4703131,0,0.648,0,15.546949,3.7,5 +30599,0,0.530074,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.721767,0.15,4 +30600,0,0.613806,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.731349,0.15,4 +18788,0,0.531821,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,1.135,1.666,0,12.763709,4.5,4.5 +12545,0,0.309921,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.628,0.938,0,7.438115,3.7,5 +16307,1,0.383439,1,0,0,1,1,RON,4,2,W Eureka/N I 275,RAMP,1607401,0,0.383,0,,1.09,4 +16447,-1,0.378769,0,3,0,1,1,,4,2,S I 275,,1607610,6.969,7.348,0,,0.8,7.5 +16500,1,0.302895,3,0,0,1,1,,4,2,N I 275,,1607208,7,7.303,0,,0.8,7.5 +16538,1,0.314887,1,0,0,1,1,RON,4,2,E Eureka/N I 275,RAMP,1607310,0,0.315,0,,1.09,4 +17022,1,0.397622,1,0,0,1,1,ROF,4,2,S I 275/Eureka,RAMP,1607707,0,0.397,0,,2.24,5 +26282,0,0.491324,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.79178,0.15,4 +11073,1,0.322893,1,0,0,1,1,RON,4,2,W Eureka/S I 275,RAMP,1576510,0,0.323,0,,1.09,4 +13794,1,0.406662,1,0,0,1,1,RON,4,2,E Eureka/S I 275,RAMP,1589306,0,0.407,0,,1.09,4 +16703,-1,0.32234,0,3,0,1,1,,4,2,S I 275,,1607610,6.647,6.969,0,,0.8,7.5 +12546,0,0.060529,2,2,1,2,4,,4,2,Eureka,Rd,1578308,0.562,0.623,0,1.452693,4.5,4.5 +12182,0,0.005441,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.623,0.628,0,0.13058,3.7,5 +12179,0,0.099691,2,2,1,2,3,,4,2,Eureka,Rd,1578308,1.089,1.189,0,2.392573,3.7,5 +12543,0,0.143379,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.946,1.089,0,3.441094,3.7,5 +12180,0,0.007801,2,2,1,2,3,,4,2,Eureka,Rd,1578308,0.938,0.946,0,0.187229,3.7,5 +11543,0,0.333096,1,1,0,2,5,,4,2,Wayne,Rd,1576609,0,0.333,0,7.994311,5.8,4.5 +17945,0,0.311656,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,2.351,2.662,0,7.479738,4.5,4.5 +30601,0,0.292941,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.030586,0.15,4 +12167,1,0.336582,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.6,1.936,0,8.077972,3.7,5 +22561,1,0.53032,1,0,0,1,3,RSF,4,2,E Eureka/Dingell,Ramp,4706208,0,0.53,0,,3.7,5 +12531,1,0.160165,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.44,1.6,0,3.84397,3.7,5 +12176,1,0.093256,2,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,1.346,1.44,0,2.238132,3.7,5 +22241,-1,0.307358,0,2,0,2,3,DIV,4,2,Eureka,Rd,4703131,0.648,0.955,0,7.376595,3.7,5 +22562,1,0.173992,1,0,0,1,3,RSF,4,2,W Eureka/Dingell,Ramp,4706210,0,0.174,0,,3.7,5 +24053,1,0.268405,1,0,0,1,3,RSF,4,2,Dingell/W Eureka,Ramp,4711339,0,0.268,0,,3.7,5 +24056,1,0.304449,1,0,0,1,3,RSF,4,2,Dingell/E Eureka,Ramp,4711338,0,0.304,0,,3.7,5 +24078,-1,0.175279,0,1,0,2,3,DIV,4,2,John Dingell,Dr,4711337,0,0.175,0,4.2067,3.7,5 +24100,1,0.146108,1,0,0,2,3,DIV,4,2,John Dingell,Dr,4711336,0,0.146,0,3.5066,3.7,5 +24077,-1,0.615563,0,2,0,2,3,DIV,4,2,John Dingell,Dr,4711337,0.175,0.791,0,14.773511,3.7,5 +1942,0,0.51618,1,1,0,2,4,,4,3,9 Mile,Rd,633603,5.719,6.235,0,12.388331,4.5,4.5 +3109,0,0.499002,1,1,0,2,3,,4,3,10 Mile,Rd,656510,8.811,9.31,0,11.976037,3.7,5 +10802,1,0.545369,3,0,0,1,1,,4,2,E I 94,,1576405,2.092,2.637,0,,0.8,7.5 +10954,0,0.431809,1,1,0,2,5,,4,2,Quirk,Rd,1576409,0,0.432,0,10.363423,5.8,4.5 +11147,0,0.440106,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,4.105,4.545,0,10.562553,5.55,5 +11201,0,0.444996,1,1,0,2,5,,5,5,Curtis,Rd,1432002,0,0.445,0,10.679906,3.7,5 +11240,0,0.794632,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,3.387,4.182,0,19.071171,3,4 +13755,-1,2.535088,0,3,0,1,1,,4,2,W I 94,,1588802,0.214,2.748,0,,0.8,7.5 +14759,0,0.368775,1,1,0,2,3,,4,2,Ford,Rd,1595510,2.617,2.986,0,8.850607,3.7,5 +14808,0,1.018155,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,2.146,3.164,0,24.435719,6.55,4.5 +15148,0,0.258452,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,3.239,3.498,0,6.202849,8,4.5 +15334,0,0.687951,1,1,0,2,5,,3,2,Hix,Rd,1595808,1.492,2.18,0,16.510813,8,4.5 +15396,0,0.280491,1,1,1,2,3,,4,2,Beck,Rd,1595603,4.738,5.019,0,6.731777,3.7,5 +15826,1,0.087241,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,2.323,2.41,0,2.09378,3.7,5 +15839,0,0.241347,1,1,0,2,4,,3,2,Venoy,Rd,1599408,4.744,4.985,0,5.792322,6,4.5 +16047,0,0.723669,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,2.949,3.672,0,17.368044,4.5,4.5 +16049,1,1.360362,3,0,0,1,2,,4,2,E M 14,,1606205,2.557,3.917,0,,0.8,7.5 +16194,-1,1.870844,0,3,0,1,1,,4,2,S I 275,,1607610,17.684,19.554,0,,0.8,7.5 +16210,0,1.037297,1,1,0,2,4,,4,2,Ann Arbor,Trl,1604108,1.002,2.039,0,24.895123,4.5,4.5 +16231,0,0.528034,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,2.455,2.983,0,12.672818,4.5,4.5 +16755,1,1.972175,3,0,0,1,1,,4,2,N I 275,,1607208,17.603,19.575,0,,0.8,7.5 +16933,-1,1.275954,0,3,0,1,2,,4,2,W M 14,,1606204,2.76,4.036,0,,0.8,7.5 +16950,1,0.339091,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,2.776,3.115,0,8.138183,4.5,4.5 +17443,0,0.444269,1,1,0,2,4,,3,2,Fairbrook,St,1680703,2.778,3.223,0,10.662461,6,4.5 +17618,0,0.527796,1,1,0,2,4,,4,2,Tyler,Rd,1675701,0.398,0.925,0,12.667113,4.5,4.5 +17789,0,0.206227,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.355,5.561,0,4.949439,4.5,4.5 +17946,0,0.581965,1,1,0,2,4,,4,2,Territorial,Rd,1673609,2.531,3.113,0,13.967162,4.5,4.5 +17960,1,0.486612,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.491,0.978,0,11.678691,8,4.5 +18053,0,0.772082,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,2.718,3.49,0,18.529962,4.5,4.5 +18180,0,0.041091,2,2,0,2,3,,3,3,8 Mile,Rd,1680705,3.009,3.05,0,0.986189,5,5 +18288,0,0.471285,1,1,0,2,5,,4,2,Hanford,Rd,1676006,2.526,2.997,0,11.31085,5.8,4.5 +18927,0,0.874505,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,2.615,3.489,0,20.988117,4.5,4.5 +19046,0,0.255003,1,1,0,2,4,,4,2,Joy,Rd,1672705,2.356,2.61,0,6.120078,4.5,4.5 +19235,0,0.496013,1,1,0,2,5,,4,2,South Service,Rd,1811006,2.728,3.224,0,11.904308,5.8,4.5 +21265,0,0.519872,1,1,0,2,5,,4,2,North Service,Rd,4603886,2.802,3.322,0,12.476923,5.8,4.5 +21767,-1,0.344826,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,2.807,3.152,0,8.275834,4.5,4.5 +21863,0,0.617746,1,1,0,2,4,,4,2,Geddes,Rd,4603888,2.896,3.513,0,14.825898,4.5,4.5 +22247,-1,0.754769,0,2,0,2,5,DIV,3,2,Central City,Pkwy,4702294,0.168,0.922,0,18.114458,8,4.5 +22493,0,0.838928,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,8.682,9.521,0,20.134269,4.5,4.5 +22773,0,0.213587,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,4.264,4.477,0,5.126087,3.7,5 +23323,-1,0.628817,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,2.706,3.335,0,15.091599,3.7,5 +23630,0,0.220356,2,2,1,2,4,,4,2,Belleville,Rd,4705580,0,0.22,0,5.288548,4.5,4.5 +23640,0,0.109744,2,2,1,2,4,,4,2,Main,St,4705581,0,0.11,0,2.633848,4.5,4.5 +23969,0,0.278564,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,1.221,1.499,0,6.685538,4.5,4.5 +23988,0,0.263319,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.194,10.457,0,6.319652,5,5 +24046,0,0.367581,2,2,1,2,4,,3,2,Warren,Rd,4710470,7.391,7.758,0,8.821955,6,4.5 +24068,0,0.260076,1,1,0,2,4,,4,2,Warren,Rd,4710470,4.756,5.016,0,6.241814,4.5,4.5 +24091,0,0.476514,1,1,0,2,4,,4,2,Warren,Rd,4710470,2.5,2.976,0,11.436324,4.5,4.5 +24092,0,0.051822,1,1,0,2,4,,4,2,Warren,Rd,4710470,2.448,2.5,0,1.243738,4.5,4.5 +24150,0,0.84487,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,3.745,4.589,0,20.276872,6,4.5 +24193,0,0.20465,1,1,0,2,4,,4,2,Lilley,Rd,4710390,3.923,4.128,0,4.911597,4.5,4.5 +26297,0,0.70357,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,16.885689,0.15,4 +26870,0,0.531076,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.745826,0.15,4 +26878,0,0.405657,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.735777,0.15,4 +30938,0,1.003329,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.079894,0.15,4 +31414,0,0.498482,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.963576,0.15,4 +31415,0,0.344388,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.265309,0.15,4 +31422,0,0.509887,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.237296,0.15,4 +31423,0,0.496206,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.908953,0.15,4 +31428,0,0.496669,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.920044,0.15,4 +31430,0,0.505855,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.140519,0.15,4 +31437,0,0.47631,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.431432,0.15,4 +31442,0,0.250569,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.013651,0.15,4 +31446,0,0.498046,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.953107,0.15,4 +31447,0,0.204754,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.914086,0.15,4 +31451,0,0.566856,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.604537,0.15,4 +31455,0,0.754322,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.103739,0.15,4 +31458,0,0.380713,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.137123,0.15,4 +31469,0,0.806864,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.364739,0.15,4 +31472,0,0.767587,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.422082,0.15,4 +31474,0,0.229513,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.508324,0.15,4 +31485,0,0.292843,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.028222,0.15,4 +31489,0,0.682239,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.373747,0.15,4 +31492,0,0.60564,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.535364,0.15,4 +31494,0,0.261031,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.264733,0.15,4 +31499,0,0.249896,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.997509,0.15,4 +31506,0,0.693274,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.638578,0.15,4 +31539,0,0.924154,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.179688,0.15,4 +31749,0,0.414682,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.952374,0.15,4 +33607,0,0.834932,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.038363,0.15,4 +33758,0,0.875145,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.003486,0.15,4 +33949,0,0.664528,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.948661,0.15,4 +33950,0,0.682757,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.38616,0.15,4 +33958,0,0.502934,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.070411,0.15,4 +33961,0,0.49364,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.847352,0.15,4 +9721,0,0.443663,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.461,4.904,0,10.647916,3.7,5 +9737,0,0.25644,1,1,1,2,4,,4,5,Grove,St,1428105,3.539,3.795,0,6.154565,4.5,4.5 +9891,1,1.738506,3,0,0,1,1,,4,5,E I 94,,1426109,30.986,32.724,0,,0.8,7.5 +10201,-1,1.803714,0,3,0,1,1,,4,5,W I 94,,1426110,30.936,32.739,0,,0.8,7.5 +10323,0,0.463493,1,1,0,2,4,,4,5,Prospect,St,1428106,2.532,2.995,0,11.123832,4.5,4.5 +10332,1,0.281905,2,0,0,1,1,ROF,4,5,W I 94/Wiard,RAMP,1428503,0,0.282,0,,2.24,5 +40556,-1,0.058464,0,2,0,2,4,,4,3,Tienken,Rd,5499957,0.059,0.118,0,1.40314,4.5,4.5 +10524,1,0.265591,2,0,0,1,1,RON,4,5,Wiard/E I 94,RAMP,1431008,0,0.266,0,,1.09,4 +40555,1,0.030438,1,0,0,2,5,,4,3,Livernois,Rd,625408,10.17,10.201,0,0.730523,5.8,4.5 +11155,1,0.16944,1,0,0,1,3,RSF,4,5,Tyler/N Wiard,Ramp,1452405,0,0.169,0,,3.7,5 +11205,0,1.013095,1,1,0,2,3,,5,5,Ford,Rd,1431908,2.511,3.524,0,24.314283,1.7,4 +11243,0,1.014472,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,5.175,6.189,0,24.347337,5.55,5 +11318,0,0.490998,1,1,0,2,5,,4,5,Clark,Rd,1435902,3.492,3.983,0,11.783944,5.8,4.5 +11378,0,1.004989,1,1,0,2,5,,4,5,Leforge,Rd,1435809,0.412,1.417,0,24.119734,5.8,4.5 +11428,0,0.50003,1,1,0,2,5,,4,5,Holmes,Rd,1435108,2.31,2.81,0,12.000717,5.8,4.5 +14978,0,0.523256,1,1,0,2,4,,4,2,Beck,Rd,1595603,0,0.523,0,12.558136,4.5,4.5 +15876,0,0.729231,1,1,0,2,4,,4,2,Denton,Rd,1599103,1.348,2.077,0,17.501533,4.5,4.5 +21587,0,0.406045,1,1,0,2,7,,4,5,Harris,Rd,4603151,0,0.406,0,9.745092,6.55,4.5 +25812,0,0.554031,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,13.296751,0.15,4 +25815,0,0.765296,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,18.367108,0.15,4 +25816,0,0.470522,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.292523,0.15,4 +25817,0,0.660643,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,15.85542,0.15,4 +25822,0,0.475104,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.402485,0.15,4 +25825,0,0.532974,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.79137,0.15,4 +26749,0,0.49146,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.795032,0.15,4 +26755,0,0.684239,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,16.421734,0.15,4 +26757,0,0.318492,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.643811,0.15,4 +30001,0,1.577111,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.850661,0.15,4 +30035,0,0.415317,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.967618,0.15,4 +30928,0,0.586732,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.081576,0.15,4 +30929,0,0.493829,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.851891,0.15,4 +30933,0,0.501961,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.04707,0.15,4 +31417,0,0.191871,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.604914,0.15,4 +9474,0,0.273977,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.248,0.522,0,6.575446,4.5,4.5 +9497,0,0.173774,1,1,1,2,4,,4,5,Grove,St,1428105,1.837,2.01,0,4.170586,4.5,4.5 +9539,0,0.310352,1,1,0,2,4,,3,5,Grove,St,1428105,0.462,0.772,0,7.448441,6,4.5 +9657,0,0.214948,1,1,0,2,4,,3,5,Prospect,St,1428106,0.281,0.495,0,5.158742,6,4.5 +9678,1,1.495213,3,0,0,1,1,,3,5,E I 94,,1426109,29.491,30.986,0,,0.58,7 +9725,0,0.534029,2,2,1,2,3,,4,5,Michigan,Ave,1427804,2.604,3.138,0,12.816706,3.7,5 +9824,1,0.397875,2,0,0,2,4,DIV,4,5,Ecorse,Rd,1428810,0,0.398,0,9.548994,4.5,4.5 +9825,0,0.430021,1,1,0,2,7,,4,5,Harris,Rd,1428806,0.947,1.377,0,10.320494,6.55,4.5 +10029,0,0.590139,1,1,0,2,4,,4,5,Forest,Ave,1429906,1.183,1.772,0,14.163332,4.5,4.5 +10040,-1,0.325232,0,2,0,2,4,DIV,4,5,Ecorse,Rd,1428901,0,0.325,0,7.805579,4.5,4.5 +10077,0,0.470013,1,1,0,2,4,,4,5,Cross,St,1428902,3.526,3.996,0,11.28032,4.5,4.5 +10203,-1,1.333322,0,3,0,1,1,,3,5,W I 94,,1426110,29.603,30.936,0,,0.58,7 +10422,0,0.247278,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.697,0.944,0,5.934679,4.5,4.5 +10686,1,0.334818,2,0,0,2,3,DIV,4,5,US 12,,1430402,0.483,0.818,0,8.035636,3.7,5 +10696,-1,0.26239,0,2,0,2,3,DIV,4,5,US 12,,1430401,0.463,0.725,0,6.29735,3.7,5 +10965,0,0.828984,1,1,0,2,5,,4,5,Huron River,Dr,1438110,0.778,1.607,0,19.895608,5.8,4.5 +11364,0,0.166183,1,1,0,2,5,,4,5,Clark,Rd,1435902,1.855,2.022,0,3.988383,5.8,4.5 +11490,0,0.429536,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0.193,0.622,0,10.308858,6.55,4.5 +11502,0,0.165205,1,1,0,2,5,,4,5,Holmes,Rd,1435108,0.771,0.936,0,3.964925,5.8,4.5 +21343,0,0.413245,1,1,1,2,4,,4,5,Ford,Blvd,4603131,0,0.413,0,9.917888,4.5,4.5 +21690,1,0.164896,3,0,0,2,3,,3,5,Huron,St,4603870,0.857,1.021,0,3.957497,5,5 +21808,-1,0.162978,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.823,0.986,0,3.911473,5,5 +25504,0,0.223434,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,5.362405,0.15,4 +25515,0,0.137912,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.3099,0.15,4 +25518,0,0.162727,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.905447,0.15,4 +25519,0,0.855388,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.529307,0.15,4 +25520,0,0.29825,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.158005,0.15,4 +25823,0,0.398241,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.557775,0.15,4 +26764,0,0.413094,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.914253,0.15,4 +26772,0,0.2904,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.969607,0.15,4 +26773,0,0.399015,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.576367,0.15,4 +29938,0,0.309981,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.439539,0.15,4 +9965,0,0.201225,2,2,0,2,4,,3,5,Spring,St,1428508,0.79,0.992,0,4.829401,6,4.5 +10878,0,0.730629,1,1,0,2,5,,4,5,Huron River,Dr,1438110,0,0.73,0,17.535088,5.8,4.5 +11283,0,0.522701,2,2,1,2,4,,4,5,Huron,St,1439102,9.427,9.95,0,12.544823,4.5,4.5 +26271,0,0.850413,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.409921,0.15,4 +26762,0,0.839559,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.149412,0.15,4 +40103,1,0.03811,1,0,0,2,4,,4,5,Stony Creek,Rd,1431208,11.369,11.407,0,0.914647,4.5,4.5 +9469,1,0.355903,3,0,0,1,1,,3,5,E I 94,,1426109,29.135,29.491,0,,0.58,7 +9874,1,0.430178,1,0,0,1,1,RON,4,5,Whittaker/E I 94,RAMP,1429210,0,0.43,0,,1.09,4 +9966,0,0.095563,2,2,0,2,4,,3,5,Harriet,St,1428508,0.514,0.61,0,2.293507,6,4.5 +10038,1,0.391322,1,0,0,1,1,ROF,3,5,W I 94/Hamilton,RAMP,1428505,0,0.391,0,,2.24,5 +10070,1,0.184889,1,0,0,1,1,RON,3,5,Huron/W I 94,RAMP,1428504,0,0.185,0,,1.09,4 +10088,1,0.473413,1,0,0,1,1,RON,3,5,Hamilton/W I 94,RAMP,1428502,0,0.473,0,,1.09,4 +10206,-1,0.372834,0,3,0,1,1,,3,5,W I 94,,1426110,29.23,29.603,0,,0.58,7 +10211,-1,0.398986,0,3,0,1,1,,3,5,W I 94,,1426110,28.831,29.23,0,,0.58,7 +21366,1,0.203598,2,0,0,2,3,,4,5,Huron,St,4603870,0.096,0.3,0,4.886346,3.7,5 +21746,-1,0.170839,0,3,0,2,3,,3,5,Huron,St,4603871,0.185,0.356,0,4.100137,5,5 +21865,1,0.155273,3,0,0,2,3,,3,5,Huron,St,4603870,0.37,0.525,0,3.726557,5,5 +25502,0,0.114696,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.752712,0.15,4 +26769,0,0.384929,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,9.238294,0.15,4 +26782,0,0.226826,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.443825,0.15,4 +9473,1,0.29412,3,0,0,1,1,,3,5,E I 94,,1426109,28.841,29.135,0,,0.58,7 +10021,1,0.310444,1,0,0,1,1,ROF,4,5,E I 94/Whittaker,RAMP,1429303,0,0.31,0,,2.24,5 +21266,-1,0.096746,0,2,0,2,4,,4,5,Huron,St,4603871,0,0.097,0,2.321899,4.5,4.5 +21809,1,0.065996,2,0,0,2,4,,4,5,Huron,St,4603870,0,0.066,0,1.583914,4.5,4.5 +11529,0,0.222504,2,2,1,2,4,,4,5,Huron,St,1439102,9.95,10.172,0,5.340095,4.5,4.5 +9653,1,0.209275,1,0,0,1,1,RON,4,5,Hamilton/E I 94,RAMP,1429302,0,0.209,0,,1.09,4 +22025,-1,0.088382,0,2,0,2,3,,4,5,Huron,St,4603871,0.097,0.185,0,2.121173,3.7,5 +21585,1,0.030351,2,0,0,2,3,,4,5,Huron,St,4603870,0.066,0.096,0,0.728425,3.7,5 +9807,1,0.006647,1,0,0,1,3,RSF,4,5,E I 94/Whittaker,RAMP,1429303,0.31,0.317,0,,5,5 +10204,0,0.037701,1,1,0,2,5,,3,5,Harriet,St,1428508,0.3,0.338,0,0.904823,8,4.5 +22076,-1,0.264771,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.558,0.823,0,6.354504,5,5 +25503,0,0.140359,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.368625,0.15,4 +25505,0,0.204778,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.914664,0.15,4 +26274,0,0.156479,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.755504,0.15,4 +9972,0,0.063636,1,1,0,2,5,,3,5,Harriet,St,1428508,0.236,0.3,0,1.52726,8,4.5 +9967,0,0.100132,1,1,0,2,5,,3,5,Harriet,St,1428508,0.338,0.438,0,2.403165,8,4.5 +21318,-1,0.138566,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.42,0.558,0,3.32559,5,5 +10270,1,0.044181,1,0,0,2,3,RSF,3,5,W I 94/Hamilton,RAMP,1428505,0.391,0.435,0,1.060355,5,5 +21533,-1,0.06386,0,3,0,2,3,,3,5,Hamilton,St,4603871,0.356,0.42,0,1.532641,5,5 +22131,1,0.070159,2,0,0,2,3,,3,5,Huron,St,4603870,0.3,0.37,0,1.683826,5,5 +10202,0,0.076847,2,2,0,2,4,,3,5,Harriet,St,1428508,0.438,0.514,0,1.844329,6,4.5 +10199,0,0.180428,2,2,0,2,4,,3,5,Spring,St,1428508,0.61,0.79,0,4.330278,6,4.5 +40093,-1,0.015357,0,1,0,2,7,,2,5,Observatory,St,4606155,0.028,0.043,0,0.368557,8.5,4.5 +21941,1,0.269374,3,0,0,2,3,,3,5,Huron,St,4603870,0.587,0.857,0,6.464976,5,5 +25500,0,0.193069,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.633652,0.15,4 +25523,0,0.190763,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.578312,0.15,4 +25524,0,0.178305,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.279309,0.15,4 +40094,1,0.015001,1,0,0,2,7,,2,5,Ann,St,4604073,0.499,0.514,0,0.360029,8.5,4.5 +37293,-1,0.028703,0,1,0,2,4,,4,5,Geddes,Rd,4606144,0.019,0.048,0,0.688862,4.5,4.5 +21426,1,0.062137,3,0,0,2,3,,3,5,Huron,St,4603870,0.525,0.587,0,1.491298,5,5 +25501,0,0.126331,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.03194,0.15,4 +25499,0,0.155781,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.738745,0.15,4 +26761,0,0.536938,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.886507,0.15,4 +26270,0,0.345904,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.301702,0.15,4 +10740,0,0.04807,1,1,0,2,5,,4,5,Huron River,Dr,1438110,0.73,0.778,0,1.153687,5.8,4.5 +9520,0,0.333178,1,1,1,2,4,,3,5,Grove,St,1428105,1.001,1.334,0,7.996284,6,4.5 +10055,0,0.246891,2,2,0,2,4,,3,5,Maus,Ave,1428508,1.253,1.5,0,5.925376,6,4.5 +26770,0,0.229547,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.50913,0.15,4 +9776,1,0.151217,2,0,0,2,4,,3,5,Grove,St,1428105,0.772,0.923,0,3.629203,6,4.5 +9950,0,0.13773,1,1,0,2,4,,3,5,Prospect,St,1428106,0.071,0.209,0,3.305525,6,4.5 +10092,0,0.197991,2,2,0,2,4,,3,5,Spring,St,1428508,0.992,1.189,0,4.751781,6,4.5 +25525,0,0.167435,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.018439,0.15,4 +26766,0,0.195804,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.699299,0.15,4 +26767,0,0.223853,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.372465,0.15,4 +9470,1,0.071115,2,0,0,2,4,,3,5,Prospect,St,1428106,0,0.071,0,1.706763,6,4.5 +9536,1,0.052929,2,0,0,2,4,,3,5,Grove,St,1428105,0.923,0.976,0,1.270285,6,4.5 +21260,1,0.029589,1,0,0,2,4,,3,5,Prospect/Grove Cutoff,,4604777,0,0.03,0,0.710136,6,4.5 +30077,0,0.082082,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.969972,0.15,4 +9765,0,0.024915,1,1,1,2,4,,3,5,Grove,St,1428105,0.976,1.001,0,0.597962,6,4.5 +9764,0,0.07172,1,1,0,2,4,,3,5,Prospect,St,1428106,0.209,0.281,0,1.721288,6,4.5 +9863,0,0.063639,2,2,0,2,4,,3,5,Factory,St,1428508,1.189,1.253,0,1.527344,6,4.5 +9750,0,0.502563,1,1,1,2,4,,4,5,Grove,St,1428105,1.334,1.837,0,12.061513,4.5,4.5 +10252,0,0.174465,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.522,0.697,0,4.187156,4.5,4.5 +9834,0,0.078606,2,2,0,2,4,,4,5,Maus,Ave,1428707,0,0.079,0,1.886545,4.5,4.5 +9540,0,0.518572,1,1,0,2,5,,3,5,River,St,1428102,0.91,1.428,0,12.445717,8,4.5 +9585,0,0.139295,1,1,0,2,4,,4,5,Prospect,St,1428106,1.466,1.605,0,3.343086,4.5,4.5 +9763,0,0.100539,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.717,0.817,0,2.412927,6,4.5 +9923,0,0.12202,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.053,2.174,0,2.928482,5,5 +10013,0,0.121992,1,1,0,2,4,,3,5,Cross,St,1428902,2.685,2.807,0,2.927805,6,4.5 +11370,0,0.410049,1,1,0,2,5,,3,5,Clark,Rd,1435902,0.763,1.172,0,9.841182,8,4.5 +21624,0,0.050562,2,2,0,2,4,,3,5,Huron,St,4603250,2.057,2.108,0,1.213499,6,4.5 +25824,0,0.517076,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.409814,0.15,4 +26777,0,0.36805,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.833212,0.15,4 +26779,0,0.441126,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,10.587012,0.15,4 +26780,0,0.190254,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.566106,0.15,4 +30040,0,0.313533,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.524799,0.15,4 +30067,0,0.169197,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.060736,0.15,4 +9554,0,0.124722,1,1,0,2,5,,3,5,River,St,1428102,0.4,0.525,0,2.993336,8,4.5 +9577,-1,0.12931,0,3,0,2,3,,2,5,Cross,St,1428902,2.304,2.433,0,3.103444,6,5 +9605,-1,0.069858,0,2,0,2,4,,3,5,Huron,St,1428010,0,0.07,0,1.6766,6,4.5 +9632,1,0.112228,2,0,0,2,4,,2,5,Hamilton,St,1428006,0.073,0.185,0,2.693465,8,4.5 +9740,0,0.150889,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.669,1.82,0,3.621337,6,5 +9840,-1,0.172112,0,2,0,2,4,,2,5,Huron,St,1428010,0.249,0.421,0,4.130692,8,4.5 +9859,0,0.075966,1,1,0,2,4,,2,5,Washtenaw,Ave,1427706,6.998,7.074,0,1.823174,8,4.5 +9861,0,0.058046,1,1,0,2,5,,2,5,Ballard,St,4605998,0.326,0.384,0,1.393112,8.5,4.5 +9949,0,0.105032,1,1,1,2,4,,3,5,College,Pl,1429907,0.207,0.312,0,2.520758,6,4.5 +10289,0,0.062869,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.326,0.389,0,1.508859,8,4.5 +26783,0,0.038672,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.92813,0.15,4 +26793,0,0.129753,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.114074,0.15,4 +26794,0,0.099555,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.38932,0.15,4 +26795,0,0.143526,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.444617,0.15,4 +26798,0,0.157703,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.784864,0.15,4 +26802,0,0.113647,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.72754,0.15,4 +30068,0,0.123644,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.967457,0.15,4 +30070,0,0.199334,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.784021,0.15,4 +9624,1,0.081731,3,0,0,2,3,,2,5,Hamilton,St,1428006,0.432,0.514,0,1.96155,6,5 +9821,-1,0.144066,0,3,0,2,3,,2,5,Cross,St,1428902,1.999,2.143,0,3.457595,6,5 +9855,0,0.181147,1,1,0,2,5,,2,5,Adams,St,1428008,0.515,0.696,0,4.347518,8.5,4.5 +9864,0,0.080893,1,1,0,2,5,,3,5,Ballard,St,4605998,0,0.081,0,1.941433,8,4.5 +9865,0,0.216443,1,1,0,2,5,,3,5,Congress,St,1428004,0.659,0.875,0,5.194637,8,4.5 +9933,0,0.208007,2,2,0,2,3,,2,5,Michigan,Ave,1427804,1.312,1.52,0,4.992159,6,5 +10095,1,0.152749,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.686,6.838,0,3.665982,6,5 +26276,0,0.13437,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.224873,0.15,4 +26285,0,0.135699,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.256773,0.15,4 +26690,0,0.22189,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.325368,0.15,4 +26787,0,0.160992,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.863816,0.15,4 +26286,0,0.095447,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.290733,0.15,4 +30080,0,0.222665,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.343955,0.15,4 +9747,0,0.052669,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.26,1.312,0,1.264044,5,5 +9936,0,0.023542,2,2,0,2,3,,3,5,Michigan,Ave,1427804,1.236,1.26,0,0.565013,5,5 +26289,0,0.049247,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.181916,0.15,4 +26291,0,0.057068,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.369633,0.15,4 +9742,0,0.074435,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.52,1.595,0,1.786435,6,5 +21584,-1,0.084895,0,3,0,2,3,,2,5,Hamilton,St,4603871,0.986,1.071,0,2.037485,6,5 +26278,0,0.093665,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.247951,0.15,4 +26803,0,0.113147,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.715533,0.15,4 +37027,-1,0.262279,0,2,0,2,3,DIV,3,5,Eisenhower,Pkwy,4603898,0,0.262,0,6.294687,5,5 +9932,0,0.074368,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.595,1.669,0,1.784824,6,5 +9580,-1,0.084797,0,3,0,2,3,,2,5,Cross,St,1428902,2.143,2.228,0,2.035124,6,5 +9623,0,0.075524,1,1,0,2,5,,2,5,Adams,St,1428008,0.696,0.771,0,1.812579,8.5,4.5 +9628,1,0.074542,2,0,0,2,3,,2,5,Hamilton,St,1428006,0.258,0.332,0,1.789013,6,5 +9862,0,0.074967,1,1,0,2,5,,2,5,Ballard,St,4605998,0.183,0.258,0,1.799215,8.5,4.5 +9866,1,0.083619,4,0,0,2,3,,2,5,Washtenaw,Ave,1427706,6.838,6.922,0,2.00685,6,5 +30071,0,0.139459,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.347008,0.15,4 +9637,0,0.102295,1,1,0,2,5,,3,5,Ballard,St,4605998,0.081,0.183,0,2.455085,8,4.5 +9635,0,0.068057,1,1,0,2,5,,2,5,Ballard,St,4605998,0.258,0.326,0,1.63337,8.5,4.5 +9856,1,0.100219,3,0,0,2,3,,2,5,Hamilton,St,1428006,0.332,0.432,0,2.405253,6,5 +10087,1,0.076362,2,0,0,2,4,,2,5,Washtenaw,Ave,1427706,6.922,6.998,0,1.832696,8,4.5 +9820,-1,0.075651,0,3,0,2,3,,2,5,Cross,St,1428902,2.228,2.304,0,1.815615,6,5 +9844,0,0.073093,1,1,0,2,5,,2,5,Adams,St,1428008,0.771,0.844,0,1.754229,8.5,4.5 +9858,1,0.072682,2,0,0,2,3,,2,5,Hamilton,St,1428006,0.185,0.258,0,1.744362,6,5 +26788,0,0.038595,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.926277,0.15,4 +26789,0,0.036316,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,0.871596,0.15,4 +10385,0,0.159901,1,1,1,2,4,,3,5,Forest,Ave,1429906,0,0.16,0,3.837628,6,4.5 +11420,-1,0.291183,0,2,0,2,4,,3,5,Lowell,St,1435509,0.137,0.428,0,6.988401,6,4.5 +21942,-1,0.290855,0,2,0,2,4,,3,5,Huron,St,4603250,2.14,2.431,0,6.980531,6,4.5 +26796,0,0.198217,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.757208,0.15,4 +26797,0,0.078312,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.879488,0.15,4 +30066,0,0.300995,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,7.223891,0.15,4 +21427,0,0.032609,2,2,0,2,4,,3,5,Huron,St,4603250,2.108,2.14,0,0.782627,6,4.5 +9860,1,0.072769,2,0,0,2,4,,2,5,Hamilton,St,1428006,0,0.073,0,1.746446,8,4.5 +9883,0,0.053012,2,1,0,2,4,,2,5,Forest,Ave,1429906,0.195,0.248,0,1.272277,8,4.5 +10121,0,0.035379,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.16,0.195,0,0.849101,8,4.5 +26791,0,0.116621,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.798901,0.15,4 +30065,0,0.13261,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.182644,0.15,4 +9634,0,0.100635,1,1,0,2,5,,2,5,Ballard,St,4605998,0.384,0.485,0,2.415249,8.5,4.5 +11423,-1,0.136819,0,2,0,2,4,,3,5,Lowell,St,1435509,0,0.137,0,3.283664,6,4.5 +26792,0,0.045601,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.094414,0.15,4 +9512,0,0.077441,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.248,0.326,0,1.858575,8,4.5 +9535,0,0.075404,1,1,0,2,4,,2,5,Cross,St,1428902,2.508,2.583,0,1.809689,8,4.5 +9586,0,0.11851,1,1,0,2,5,,3,5,River,St,1428102,0.061,0.18,0,2.844244,8,4.5 +9738,0,0.175264,2,2,1,2,3,,3,5,Michigan,Ave,1427804,1.878,2.053,0,4.206344,5,5 +9826,-1,0.084001,0,3,0,2,3,,2,5,Huron,St,1428010,0.671,0.755,0,2.016025,6,5 +26804,0,0.149354,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.584493,0.15,4 +21476,1,0.08285,3,0,0,2,3,,2,5,Huron,St,4603870,1.021,1.104,0,1.9884,6,5 +26784,0,0.140281,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,3.36675,0.15,4 +9929,0,0.057496,2,2,1,2,3,,2,5,Michigan,Ave,1427804,1.82,1.878,0,1.379908,6,5 +9837,-1,0.077234,0,3,0,2,3,,2,5,Huron,St,1428010,0.497,0.574,0,1.853616,6,5 +10086,0,0.073439,1,1,0,2,4,,2,5,Washtenaw,Ave,1427706,7.074,7.147,0,1.76254,8,4.5 +25532,0,0.188021,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,4.512512,0.15,4 +30069,0,0.12303,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.952726,0.15,4 +26785,0,0.063659,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,1.527806,0.15,4 +9592,-1,0.097321,0,3,0,2,3,,2,5,Huron,St,1428010,0.574,0.671,0,2.335694,6,5 +25530,0,0.095222,1,1,0,2,99,,2,5,Centroid Connector,,0,0,0,0,2.28532,0.15,4 +9594,-1,0.075797,0,3,0,2,3,,2,5,Huron,St,1428010,0.421,0.497,0,1.819126,6,5 +9775,0,0.076169,1,1,0,2,4,,2,5,Cross,St,1428902,2.433,2.508,0,1.828047,8,4.5 +9746,0,0.066966,1,1,0,2,4,,3,5,Cross,St,1428902,2.583,2.65,0,1.607192,6,4.5 +9793,0,0.22035,1,1,0,2,5,,3,5,River,St,1428102,0.18,0.4,0,5.288392,8,4.5 +25531,0,0.162544,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.901051,0.15,4 +26774,0,0.067004,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.608101,0.15,4 +9491,0,0.035127,1,1,0,2,4,,3,5,Cross,St,1428902,2.65,2.685,0,0.843044,6,4.5 +9778,0,0.260242,1,1,0,2,5,,3,5,River,St,1428102,0.65,0.91,0,6.245802,8,4.5 +9812,0,0.123708,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.514,0.637,0,2.969001,6,4.5 +9843,-1,0.116148,0,2,0,2,4,,3,5,Huron,St,1428010,0.07,0.186,0,2.787551,6,4.5 +26800,0,0.14261,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.422636,0.15,4 +10025,0,0.125191,1,1,1,2,4,,2,5,Forest,Ave,1429906,0.389,0.514,0,3.004579,8,4.5 +9600,-1,0.063134,0,2,0,2,4,,2,5,Huron,St,1428010,0.186,0.249,0,1.515212,8,4.5 +9546,0,0.106604,1,1,0,2,5,,3,5,River,St,1428102,0.543,0.65,0,2.558491,8,4.5 +9568,0,0.079514,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.637,0.717,0,1.908326,6,4.5 +26799,0,0.117307,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.815365,0.15,4 +9782,0,0.018567,1,1,0,2,5,,3,5,River,St,1428102,0.525,0.543,0,0.445603,8,4.5 +11373,0,0.362632,1,1,0,2,5,,3,5,Clark,Rd,1435902,0.4,0.763,0,8.703173,8,4.5 +26760,0,0.527565,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,12.661564,0.15,4 +26781,0,0.220501,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.292022,0.15,4 +10706,0,0.165087,1,1,0,2,5,,3,5,Leforge,Rd,1435809,0.127,0.292,0,3.962082,8,4.5 +26778,0,0.291426,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.994235,0.15,4 +11401,0,0.093287,2,2,0,2,5,,3,5,Leforge,Rd,1435809,0.034,0.127,0,2.238887,8,4.5 +11414,0,0.034018,2,2,0,2,5,,3,5,Leforge,Rd,1435809,0,0.034,0,0.816443,8,4.5 +11381,0,0.112682,2,2,0,2,5,,3,5,Leforge,Rd,1435809,0.3,0.412,0,2.704367,8,4.5 +11389,0,0.00719,2,2,0,2,5,,3,5,Leforge,Rd,1435809,0.292,0.3,0,0.172552,8,4.5 +9480,0,0.219799,2,2,1,2,4,,3,5,Ecorse,Rd,1428108,0,0.22,0,5.275173,6,4.5 +9669,0,0.043509,1,1,0,2,4,,3,5,Cross,St,1428902,3.151,3.195,0,1.044218,6,4.5 +9918,0,0.11407,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.49,2.604,0,2.737674,5,5 +10107,0,0.264455,1,1,0,2,4,,4,5,Cross,St,1428902,3.195,3.459,0,6.34692,4.5,4.5 +10414,0,0.141159,1,1,0,2,5,,3,5,Miles,St,1428110,0,0.141,0,3.387824,8,4.5 +10425,0,0.143597,1,1,0,2,4,,3,5,Prospect,St,1428106,0.954,1.098,0,3.446337,6,4.5 +11512,0,0.195138,1,1,0,2,5,,3,5,Holmes,Rd,1435108,0.453,0.648,0,4.683314,8,4.5 +26805,0,0.157977,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.791446,0.15,4 +26806,0,0.192466,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.619179,0.15,4 +26812,0,0.237687,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,5.704486,0.15,4 +9656,0,0.121459,1,1,0,2,4,,3,5,Prospect,St,1428106,0.614,0.735,0,2.915023,6,4.5 +9803,0,0.179652,1,1,0,2,4,,3,5,Cross,St,1428902,2.807,2.987,0,4.311637,6,4.5 +9919,0,0.093247,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.289,2.382,0,2.237917,5,5 +25516,0,0.162696,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.904711,0.15,4 +29935,0,0.186378,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.473063,0.15,4 +9733,0,0.114535,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.174,2.289,0,2.748841,5,5 +9777,0,0.122173,1,1,0,2,4,,3,5,Grove,St,1428105,0.34,0.462,0,2.932141,6,4.5 +25497,0,0.153111,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.674665,0.15,4 +25498,0,0.186838,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.484113,0.15,4 +25514,0,0.179945,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.318681,0.15,4 +9726,0,0.108095,2,2,1,2,3,,3,5,Michigan,Ave,1427804,2.382,2.49,0,2.594287,5,5 +10443,0,0.11837,1,1,0,2,4,,3,5,Prospect,St,1428106,0.495,0.614,0,2.840873,6,4.5 +24592,0,0.146076,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,3.505827,0.15,4 +30042,0,0.056619,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.358848,0.15,4 +9886,0,0.164584,1,1,0,2,4,,3,5,Cross,St,1428902,2.987,3.151,0,3.950017,6,4.5 +10146,0,0.225725,1,1,0,2,5,,3,5,Miles,St,1428110,0.141,0.367,0,5.41741,8,4.5 +10442,0,0.120613,1,1,0,2,4,,3,5,Prospect,St,1428106,0.735,0.856,0,2.894704,6,4.5 +26808,0,0.101663,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,2.439907,0.15,4 +9648,0,0.098392,1,1,0,2,4,,3,5,Prospect,St,1428106,0.856,0.954,0,2.3614,6,4.5 +26809,0,0.061372,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,1.472921,0.15,4 +9519,0,0.199887,1,1,1,2,4,,3,5,Forest,Ave,1429906,0.817,1.017,0,4.797294,6,4.5 +10406,0,0.256259,1,1,0,2,4,,3,5,Prospect,St,1428106,1.21,1.466,0,6.15022,6,4.5 +25526,0,0.308837,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,7.412097,0.15,4 +25527,0,0.274934,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,6.598408,0.15,4 +30041,0,0.204367,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.904806,0.15,4 +25528,0,0.028352,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,0.680453,0.15,4 +9629,0,0.112038,1,1,0,2,4,,3,5,Prospect,St,1428106,1.098,1.21,0,2.688919,6,4.5 +10293,0,0.165466,1,1,0,2,4,,3,5,Forest,Ave,1429906,1.017,1.183,0,3.971176,6,4.5 +26811,0,0.167655,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,4.023726,0.15,4 +26810,0,0.032414,1,1,0,2,99,,3,5,Centroid Connector,,0,0,0,0,0.777928,0.15,4 +11515,0,0.155358,1,1,0,2,5,,3,5,Holmes,Rd,1435108,0.297,0.453,0,3.72859,8,4.5 +10255,0,0.028616,2,2,1,2,4,,3,5,Ecorse,Rd,1428108,0.22,0.248,0,0.686779,6,4.5 +11508,0,0.123376,1,1,0,2,5,,4,5,Holmes,Rd,1435108,0.648,0.771,0,2.961015,5.8,4.5 +9871,0,0.066468,1,1,0,2,4,,4,5,Cross,St,1428902,3.459,3.526,0,1.595222,4.5,4.5 +9547,0,0.550198,1,1,0,2,4,,4,5,Prospect,St,1428106,1.982,2.532,0,13.20476,4.5,4.5 +10790,0,0.192658,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0,0.193,0,4.623798,6.55,4.5 +11366,0,0.460086,1,1,0,2,5,,4,5,Clark,Rd,1435902,1.396,1.855,0,11.042064,5.8,4.5 +26759,0,0.423503,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.164073,0.15,4 +10363,0,0.376653,1,1,0,2,4,,4,5,Prospect,St,1428106,1.605,1.982,0,9.039677,4.5,4.5 +11369,0,0.223213,1,1,0,2,5,,4,5,Clark,Rd,1435902,1.172,1.396,0,5.357106,5.8,4.5 +26776,0,0.127889,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.069329,0.15,4 +30002,0,0.41224,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.893751,0.15,4 +9488,0,0.505327,1,1,1,2,4,,4,5,Grove,St,1428105,2.321,2.826,0,12.127839,4.5,4.5 +9744,0,0.310591,1,1,1,2,4,,4,5,Grove,St,1428105,2.01,2.321,0,7.454185,4.5,4.5 +40916,1,0.141675,2,0,0,2,4,,4,4,William P Rosso,Hwy,0,0,0,0,3.400191,4.5,4.5 +10050,0,0.406426,1,1,0,2,4,,4,5,Harris,Rd,1428806,0,0.406,0,9.754225,4.5,4.5 +10667,1,0.438781,2,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0,0.439,0,10.530752,3.7,5 +10677,-1,0.731786,0,2,0,2,3,DIV,4,5,Wiard,Rd,1430407,0,0.732,0,17.562876,3.7,5 +40915,-1,0.10677,0,2,0,2,4,,4,4,Jefferson,Ave,0,0,0,0,2.562473,4.5,4.5 +11556,0,0.014191,1,1,0,2,5,,4,5,Dorset,Ave,1433910,0.183,0.197,0,0.34058,5.8,4.5 +25506,0,0.604405,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,14.505713,0.15,4 +25811,0,0.104029,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.496695,0.15,4 +26266,0,0.283243,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.797843,0.15,4 +29936,0,0.734883,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,17.637184,0.15,4 +10885,0,0.370204,1,1,0,2,5,,4,5,Huron River,Dr,1438110,1.607,1.977,0,8.884905,5.8,4.5 +11546,0,0.251354,1,1,0,2,5,,4,5,Huron River,Dr,1438110,1.977,2.228,0,6.032507,5.8,4.5 +26267,0,0.216573,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.197748,0.15,4 +9829,0,0.198605,1,1,0,2,4,,4,5,Harris,Rd,1428806,0.406,0.605,0,4.766526,4.5,4.5 +10154,0,0.24428,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,0.944,1.188,0,5.862721,4.5,4.5 +26763,0,0.434761,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.434253,0.15,4 +26765,0,0.281149,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.747582,0.15,4 +29937,0,0.176374,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.232975,0.15,4 +9565,-1,0.349006,0,2,0,1,2,,4,5,US 12,,1430401,0,0.349,0,,0.8,7.5 +10045,0,0.342052,1,1,0,2,4,,4,5,Harris,Rd,1428806,0.605,0.947,0,8.209255,4.5,4.5 +10152,0,0.112497,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,1.351,1.464,0,2.699925,4.5,4.5 +10687,1,0.094503,2,0,0,2,3,DIV,4,5,US 12,,1430402,0.389,0.483,0,2.268063,3.7,5 +10688,1,0.388751,2,0,0,1,2,,4,5,US 12,,1430402,0,0.389,0,,0.8,7.5 +25513,0,0.095508,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.292183,0.15,4 +10420,0,0.163509,2,2,1,2,4,,4,5,Ecorse,Rd,1428108,1.188,1.351,0,3.924211,4.5,4.5 +11554,0,0.135046,1,1,0,2,5,,4,5,Laverne,St,1433910,0.255,0.39,0,3.241102,5.8,4.5 +10698,-1,0.114158,0,2,0,2,3,DIV,4,5,US 12,,1430401,0.349,0.463,0,2.739804,3.7,5 +11555,0,0.058003,1,1,0,2,5,,4,5,Dorset,Ave,1433910,0.197,0.255,0,1.39208,5.8,4.5 +9479,0,0.25225,2,2,1,2,4,,4,5,Grove,St,1428105,3.287,3.539,0,6.054007,4.5,4.5 +26754,0,0.209737,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.033679,0.15,4 +9739,0,0.460761,1,1,1,2,4,,4,5,Grove,St,1428105,2.826,3.287,0,11.058254,4.5,4.5 +10665,1,0.140939,3,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0.684,0.825,0,3.382531,3.7,5 +10676,-1,0.25709,0,2,0,2,3,DIV,4,5,Wiard,Rd,1430407,0.732,0.989,0,6.170164,3.7,5 +11576,0,0.309463,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.241,0.551,0,7.427118,5.8,4.5 +25511,0,0.278507,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.684169,0.15,4 +26813,0,0.339579,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.149908,0.15,4 +30034,0,0.341202,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.18885,0.15,4 +11558,0,0.183158,1,1,0,2,5,,4,5,Dorset,Ave,1433910,0,0.183,0,4.395782,5.8,4.5 +25512,0,0.337073,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.089753,0.15,4 +11582,0,0.117444,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.124,0.241,0,2.818657,5.8,4.5 +10666,1,0.245332,2,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0.439,0.684,0,5.887969,3.7,5 +11485,1,0.166533,1,0,0,2,3,,4,5,S Wiard/N Wiard,TURN,1452402,0,0.167,0,3.996787,3.7,5 +21740,-1,0.128889,0,1,0,2,3,,4,5,N Wiard / S Wiard,TURN,4604859,0,0.129,0,3.093343,3.7,5 +11572,0,0.120904,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.551,0.671,0,2.901708,5.8,4.5 +10675,-1,0.129857,0,2,0,2,3,DIV,4,5,Wiard,Rd,1430407,0.989,1.118,0,3.116567,3.7,5 +11564,0,0.057016,1,1,0,2,5,,4,5,Tyler,Rd,1433709,0.671,0.728,0,1.368373,5.8,4.5 +10664,1,0.174046,2,0,0,2,3,DIV,4,5,Wiard,Rd,1430501,0.825,0.999,0,4.177109,3.7,5 +9723,0,0.441067,2,2,1,2,3,,4,5,Michigan,Ave,1427804,3.753,4.194,0,10.585598,3.7,5 +11326,0,0.269203,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.659,2.929,0,6.460878,5.8,4.5 +11491,0,0.069447,1,1,0,2,7,,4,5,Wiard,Rd,1440201,0,0.069,0,1.666735,6.55,4.5 +11497,0,0.317728,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.444,1.761,0,7.62546,5.8,4.5 +21403,0,0.293375,1,1,0,2,5,,4,5,Ford,Blvd,4603131,1.278,1.571,0,7.041002,5.8,4.5 +25297,0,0.332786,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.986873,0.15,4 +25298,0,0.28759,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.902163,0.15,4 +26815,0,0.288474,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.92338,0.15,4 +26817,0,0.405829,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,9.739908,0.15,4 +9231,0,0.137139,1,1,0,2,4,,4,5,Forest,Ave,1429906,2.026,2.164,0,3.291346,4.5,4.5 +9724,0,0.345189,2,2,1,2,3,,4,5,Michigan,Ave,1427804,3.408,3.753,0,8.284529,3.7,5 +10403,0,0.055994,1,1,0,2,4,,4,5,Harris,Rd,1428205,0,0.056,0,1.343858,4.5,4.5 +11499,0,0.063249,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.306,1.369,0,1.517972,5.8,4.5 +22106,0,0.3409,1,1,1,2,4,,4,5,Ford,Blvd,4603131,0.413,0.754,0,8.181592,4.5,4.5 +30036,0,0.368472,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.84332,0.15,4 +9916,0,0.269612,2,2,1,2,3,,4,5,Michigan,Ave,1427804,3.138,3.408,0,6.470693,3.7,5 +25517,0,0.16187,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.884879,0.15,4 +9815,0,0.254053,1,1,0,2,4,,4,5,Forest,Ave,1429906,1.772,2.026,0,6.097272,4.5,4.5 +10376,0,0.258073,1,1,0,2,5,,4,5,Harris,Rd,1428205,0.307,0.565,0,6.193741,5.8,4.5 +11500,0,0.369637,1,1,0,2,5,,4,5,Holmes,Rd,1435108,0.936,1.306,0,8.871285,5.8,4.5 +25522,0,0.116867,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.804807,0.15,4 +10131,0,0.251495,1,1,0,2,4,,4,5,Harris,Rd,1428205,0.056,0.307,0,6.035869,4.5,4.5 +25508,0,0.266885,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.405243,0.15,4 +11553,0,0.137569,1,1,0,2,7,,4,5,Russell,St,1434102,0.25,0.388,0,3.301664,6.55,4.5 +37888,0,0.706824,1,1,1,2,5,,3,3,11 Mile,Rd,657010,0,0.707,0,16.963773,8,4.5 +10186,0,0.191095,1,1,0,2,4,,4,5,Forest,Ave,1429906,2.164,2.355,0,4.586281,4.5,4.5 +21602,0,0.256806,1,1,1,2,5,,4,5,Ford,Blvd,4603131,1.021,1.278,0,6.163343,5.8,4.5 +21840,0,0.26739,1,1,1,2,4,,4,5,Ford,Blvd,4603131,0.754,1.021,0,6.417359,4.5,4.5 +11498,0,0.074975,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.369,1.444,0,1.79939,5.8,4.5 +10106,0,0.208737,1,1,0,2,4,,4,5,Lamay,Ave,1428210,0,0.209,0,5.009697,4.5,4.5 +26816,0,0.022415,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,0.537966,0.15,4 +11238,0,0.539864,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0.869,1.409,0,12.956743,6.55,4.5 +11338,0,0.219135,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.44,2.659,0,5.259249,5.8,4.5 +25302,0,0.489953,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.758883,0.15,4 +30003,0,0.208036,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.99286,0.15,4 +30005,0,0.490616,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,11.77479,0.15,4 +11348,0,0.174196,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.187,2.361,0,4.180694,5.8,4.5 +30075,0,0.361989,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.687727,0.15,4 +30076,0,0.251839,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.044143,0.15,4 +11352,0,0.165628,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.022,2.187,0,3.975072,5.8,4.5 +11340,0,0.079099,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.361,2.44,0,1.898368,5.8,4.5 +26682,0,0.295747,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.097916,0.15,4 +11484,0,0.247409,1,1,0,2,7,,4,5,Macarthur,Blvd,1440404,0.622,0.869,0,5.937819,6.55,4.5 +30004,0,0.174026,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.176632,0.15,4 +9913,0,0.267083,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.194,4.461,0,6.410002,3.7,5 +11496,0,0.548585,1,1,0,2,5,,4,5,Holmes,Rd,1435108,1.761,2.31,0,13.166037,5.8,4.5 +10791,0,0.712423,1,1,0,2,7,,4,5,Wiard,Blvd,1440105,0.089,0.801,0,17.098153,6.55,4.5 +11322,0,0.563385,1,1,0,2,5,,4,5,Clark,Rd,1435902,2.929,3.492,0,13.52123,5.8,4.5 +26814,0,0.107779,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,2.586685,0.15,4 +11495,0,0.088618,1,1,0,2,7,,4,5,Wiard,Blvd,1440105,0,0.089,0,2.126823,6.55,4.5 +9499,0,0.872115,1,1,0,2,4,,5,5,Prospect,St,1428106,4.134,5.006,0,20.93076,3,4 +10855,0,0.632642,1,1,0,2,4,,4,5,Geddes,Rd,1448104,7.2,7.832,0,15.183412,4.5,4.5 +11176,0,1.002299,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,1.007,2.009,0,24.055186,5.55,5 +11210,0,0.729919,1,1,0,2,3,,5,5,Ford,Rd,1431908,0.516,1.246,0,17.518048,1.7,4 +11274,0,0.755488,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,3.161,3.916,0,18.13171,5.55,5 +25819,0,1.122181,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.932334,0.15,4 +25821,0,1.514671,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,36.352103,0.15,4 +26296,0,1.795445,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,43.090671,0.15,4 +9543,0,1.009593,1,1,0,2,4,,5,5,Prospect,St,1428106,2.995,4.004,0,24.230232,3,4 +11055,0,0.335546,1,1,0,2,4,,4,5,Geddes,Rd,1448104,6.865,7.2,0,8.053114,4.5,4.5 +10859,0,0.69041,1,1,0,2,4,,4,5,Geddes,Rd,1448104,6.174,6.865,0,16.569846,4.5,4.5 +10319,0,0.13019,1,1,0,2,4,,5,5,Prospect,St,1428106,4.004,4.134,0,3.124565,3,4 +9481,0,0.950727,1,1,0,2,5,,5,5,Prospect,St,1428106,6.013,6.963,0,22.817441,3.7,5 +11217,0,0.516379,1,1,0,2,3,,5,5,Ford,Rd,1431908,0,0.516,0,12.393105,1.7,4 +11241,0,0.695849,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,2.692,3.387,0,16.700385,3,4 +11278,0,0.764,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,2.398,3.161,0,18.335991,5.55,5 +11470,-1,0.123928,0,2,0,2,3,DIV,5,5,W M 153,,1431602,1.584,1.708,0,2.974282,1.7,4 +11486,1,0.156569,2,0,0,2,3,DIV,5,5,E M 153,,1431510,1.396,1.553,0,3.757646,1.7,4 +11227,-1,0.036029,0,1,0,2,3,,5,5,Ford,Rd,1431906,1.575,1.611,0,0.864704,1.7,4 +10257,0,0.183983,1,1,0,2,5,,5,5,Prospect,Rd,1428106,6.963,7.147,0,4.415594,3.7,5 +10276,0,1.007132,1,1,0,2,4,,5,5,Prospect,St,1428106,5.006,6.013,0,24.171172,3,4 +10851,0,0.510876,1,1,0,2,4,,4,5,Geddes,Rd,1448104,8.207,8.718,0,12.261027,4.5,4.5 +11180,0,1.007503,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,0,1.007,0,24.180064,5.55,5 +25820,0,1.121151,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,26.907632,0.15,4 +11054,0,0.374837,1,1,0,2,4,,4,5,Geddes,Rd,1448104,7.832,8.207,0,8.996087,4.5,4.5 +11052,0,0.486837,1,1,0,2,4,,4,5,Geddes,Rd,1448104,8.718,9.204,0,11.684088,4.5,4.5 +25818,0,0.505823,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,12.139751,0.15,4 +11169,0,1.007914,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,2.009,3.017,0,24.189938,5.55,5 +11208,0,1.265765,1,1,0,2,3,,5,5,Ford,Rd,1431908,1.246,2.511,0,30.378356,1.7,4 +11492,0,1.010428,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,4.165,5.175,0,24.250274,5.55,5 +26299,0,1.037817,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,24.907619,0.15,4 +26300,0,0.761628,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,18.279066,0.15,4 +25813,0,0.921162,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,22.107895,0.15,4 +25814,0,0.911896,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.885497,0.15,4 +11270,0,0.2486,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,3.916,4.165,0,5.966404,5.55,5 +11149,0,1.088663,1,1,0,2,5,GRV,5,5,Gotfredson,Rd,1432004,3.017,4.105,0,26.127917,5.55,5 +11014,1,1.937702,3,0,0,1,1,,4,2,E I 94,,1576405,0.155,2.092,0,,0.8,7.5 +15829,1,0.507579,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,0.836,1.344,0,12.181892,3.7,5 +16962,1,1.076403,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,0.116,1.192,0,25.833667,4.5,4.5 +18110,0,0.981985,1,1,0,2,4,,4,2,Beck,Rd,1665610,0.95,1.932,0,23.567648,4.5,4.5 +19238,0,0.313788,1,1,0,2,5,,4,2,South Service,Rd,1811006,1.063,1.376,0,7.530904,5.8,4.5 +19302,0,0.809724,1,1,0,2,5,,4,5,Airport,Dr,1751607,0.089,0.898,0,19.433378,5.8,4.5 +21836,-1,1.084529,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,0.145,1.229,0,26.028703,4.5,4.5 +21940,0,1.081114,1,1,0,2,5,,4,2,North Service,Rd,4603886,0.208,1.289,0,25.946729,5.8,4.5 +22509,-1,0.136602,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,1.18,1.316,0,3.278455,3.7,5 +25809,0,0.268412,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.441879,0.15,4 +30934,0,0.549497,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.18793,0.15,4 +31354,0,0.637157,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.291774,0.15,4 +31412,0,0.985478,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.651477,0.15,4 +31514,0,0.950165,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.803957,0.15,4 +31518,0,0.414901,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.957615,0.15,4 +33794,0,0.4641,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.13839,0.15,4 +10813,1,0.154583,3,0,0,1,1,,4,2,E I 94,,1576405,0,0.155,0,,0.8,7.5 +11447,1,0.158603,1,0,0,1,1,RON,4,2,Rawsonville/E I 94,RAMP,1576407,0.112,0.271,0,,1.09,4 +11568,0,0.336106,1,1,0,2,5,,4,5,McGregor,Rd,1438801,0.107,0.443,0,8.066551,5.8,4.5 +13720,1,0.224552,1,0,0,1,1,ROF,4,2,W I 94/Rawsonville,RAMP,1588803,0,0.225,0,,2.24,5 +14316,-1,0.21369,0,3,0,1,1,,4,2,W I 94,,1588802,0,0.214,0,,0.8,7.5 +19239,0,0.883167,1,1,0,2,5,,4,2,South Service,Rd,1811006,0.18,1.063,0,21.196,5.8,4.5 +9736,0,0.422955,2,2,0,2,4,,4,5,Grove,St,1428105,4.105,4.528,0,10.150927,4.5,4.5 +10198,-1,0.474321,0,3,0,1,1,,4,5,W I 94,,1426110,32.739,33.213,0,,0.8,7.5 +10439,1,0.362277,3,0,0,1,1,,4,5,E I 94,,1426109,32.979,33.341,0,,0.8,7.5 +10523,1,0.323405,1,0,0,1,1,ROF,4,5,E I 94/Rawsonville,RAMP,1431009,0,0.323,0,,2.24,5 +11454,0,0.506216,1,1,0,2,4,,4,5,Bridge,Rd,1438202,0.234,0.74,0,12.149174,4.5,4.5 +11510,0,0.178563,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.666,8.845,0,4.285509,4.5,4.5 +21562,0,0.254139,1,1,0,2,5,,4,5,William,Ave,4603122,0,0.254,0,6.09934,5.8,4.5 +26752,0,0.334776,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.034621,0.15,4 +26820,0,0.172967,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.151215,0.15,4 +26822,0,0.421066,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,10.105583,0.15,4 +9471,0,0.309686,2,2,0,2,4,,4,5,Grove,St,1428105,3.795,4.105,0,7.432456,4.5,4.5 +10083,1,0.255606,3,0,0,1,1,,4,5,E I 94,,1426109,32.724,32.979,0,,0.8,7.5 +26753,0,0.169775,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.074593,0.15,4 +10803,0,0.167845,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.499,8.666,0,4.028271,4.5,4.5 +26263,0,0.362796,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,8.70711,0.15,4 +10511,1,0.229786,1,0,0,1,1,RON,4,5,Rawsonville/W I 94,RAMP,1431106,0,0.23,0,,1.09,4 +10743,1,0.112354,1,0,0,1,1,RON,4,5,Rawsonville/E I 94,RAMP,1576407,0,0.112,0,,1.09,4 +11506,0,0.228102,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,9.072,9.3,0,5.474445,4.5,4.5 +14394,1,0.183523,1,0,0,1,1,ROF,4,5,W I 94/Rawsonville,RAMP,1588803,0.225,0.408,0,,2.24,5 +19240,0,0.179859,1,1,0,2,5,,4,5,South Service,Rd,1811006,0,0.18,0,4.316606,5.8,4.5 +21425,0,0.208368,1,1,0,2,5,,4,5,William,Ave,4603886,0,0.208,0,5.000841,5.8,4.5 +11505,0,0.053709,2,2,1,2,5,,4,5,Rawsonville,Rd,1439105,9.307,9.36,0,1.289009,5.8,4.5 +10798,0,0.006719,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,9.3,9.307,0,0.161245,4.5,4.5 +11259,0,0.112066,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.955,9.067,0,2.689591,4.5,4.5 +11507,0,0.110264,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,8.845,8.955,0,2.646338,4.5,4.5 +10801,0,0.00499,2,2,1,2,4,,4,5,Rawsonville,Rd,1439105,9.067,9.072,0,0.119752,4.5,4.5 +10196,-1,0.0913,0,3,0,1,1,,4,5,W I 94,,1426110,33.213,33.304,0,,0.8,7.5 +11560,0,0.29408,1,1,0,2,5,,4,5,Tyler,Rd,1438803,0.304,0.598,0,7.057913,5.8,4.5 +11563,0,0.335038,1,1,0,2,5,,4,5,McGregor,Rd,1438801,0.443,0.778,0,8.040902,5.8,4.5 +26750,0,0.328156,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.875735,0.15,4 +26751,0,0.036391,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,0.873377,0.15,4 +25810,0,0.228573,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.485748,0.15,4 +11315,0,0.183241,1,1,0,2,5,,4,5,McGregor,Rd,1438801,0.778,0.961,0,4.397782,5.8,4.5 +9909,1,0.351417,2,0,0,2,3,DIV,4,5,Michigan,Ave,1427804,5.177,5.528,0,8.434,3.7,5 +10101,0,0.281743,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0.077,0.358,0,6.761828,5.8,4.5 +15830,1,0.836362,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,0,0.836,0,20.072695,3.7,5 +15884,1,0.592727,2,0,0,2,3,DIV,4,2,Michigan,Ave,1599009,0,0.593,0,14.225438,3.7,5 +15886,-1,0.549382,0,2,0,2,3,DIV,4,2,Michigan,Ave,1599002,0,0.549,0,13.185162,3.7,5 +21759,-1,0.359392,0,2,0,2,3,DIV,4,5,Michigan,Ave,4600027,0,0.359,0,8.625398,3.7,5 +23405,-1,0.780421,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,0,0.78,0,18.7301,3.7,5 +25808,0,0.283935,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.81444,0.15,4 +9911,0,0.085163,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.904,4.989,0,2.043902,3.7,5 +26756,0,0.202977,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,4.871454,0.15,4 +9718,0,0.187744,2,2,1,2,3,,4,5,Michigan,Ave,1427804,4.989,5.177,0,4.505865,3.7,5 +11426,0,0.186459,1,1,0,2,5,,4,5,Holmes,Rd,1435108,2.81,2.996,0,4.475018,5.8,4.5 +10373,0,0.076821,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0,0.077,0,1.843707,5.8,4.5 +10679,1,0.133116,2,0,0,2,3,DIV,4,5,E US 12,,1430402,2.295,2.429,0,3.194778,3.7,5 +16964,1,0.116406,2,0,0,2,4,DIV,4,5,Ecorse,Rd,1600207,0,0.116,0,2.793734,4.5,4.5 +10365,0,0.121754,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0.358,0.48,0,2.922101,5.8,4.5 +26492,0,0.128496,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,3.08391,0.15,4 +10094,0,0.142118,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0.48,0.622,0,3.410841,5.8,4.5 +15885,-1,0.402707,0,1,0,2,3,DIV,4,2,Michigan,Ave,1599002,0.549,0.952,0,9.664976,3.7,5 +24167,1,0.087271,1,0,0,2,3,,4,2,WB US-12/WB Michigan cutoff,,4711918,0,0.087,0,2.094515,3.7,5 +22793,-1,0.392998,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,0.787,1.18,0,9.431949,3.7,5 +15883,1,0.025405,2,0,0,2,3,DIV,4,2,Michigan,Ave,1599009,0.593,0.618,0,0.609723,3.7,5 +23070,-1,0.006722,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,0.78,0.787,0,0.16134,3.7,5 +18518,0,0.950558,1,1,0,2,4,GRV,4,2,Beck,Rd,1665610,0,0.95,0,22.813404,6.55,4.5 +18930,0,0.809818,1,1,0,2,5,,4,2,Denton,Rd,1675103,0.336,1.146,0,19.43563,5.8,4.5 +19237,0,0.912996,1,1,0,2,5,,4,2,South Service,Rd,1811006,1.376,2.289,0,21.911904,5.8,4.5 +21689,0,1.018818,1,1,0,2,5,,4,2,North Service,Rd,4603886,1.289,2.307,0,24.45163,5.8,4.5 +22623,0,0.947068,1,1,0,2,5,,4,2,Quirk,Rd,4705577,0,0.947,0,22.729631,5.8,4.5 +31515,0,1.033899,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.813575,0.15,4 +31516,0,0.949942,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.798606,0.15,4 +17525,0,0.33649,1,1,0,2,5,,4,2,Denton,Rd,1675103,0,0.336,0,8.075772,5.8,4.5 +31353,0,0.461157,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.067761,0.15,4 +18457,0,0.545361,1,1,0,2,5,,4,2,Denton,Rd,1675103,1.146,1.691,0,13.088654,5.8,4.5 +19236,0,0.438937,1,1,0,2,5,,4,2,South Service,Rd,1811006,2.289,2.728,0,10.534491,5.8,4.5 +21475,0,0.494508,1,1,0,2,5,,4,2,North Service,Rd,4603886,2.307,2.802,0,11.868193,5.8,4.5 +31410,0,0.309529,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.428708,0.15,4 +31244,0,0.192428,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.618281,0.15,4 +31356,0,0.217534,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.220817,0.15,4 +18043,0,0.397747,1,1,0,2,4,,4,2,Tyler,Rd,1675701,0,0.398,0,9.545926,4.5,4.5 +31411,0,0.072602,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.742454,0.15,4 +15827,1,0.470906,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,1.852,2.323,0,11.301749,3.7,5 +15881,0,0.508062,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.014,0.522,0,12.193487,4.5,4.5 +16958,1,1.00454,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,1.192,2.197,0,24.108953,4.5,4.5 +18105,0,0.477136,1,1,0,2,4,GRV,4,2,Beck,Rd,1665610,1.945,2.422,0,11.451264,6.55,4.5 +21598,-1,1.004601,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,1.229,2.233,0,24.110421,4.5,4.5 +23499,-1,0.823878,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,1.316,2.14,0,19.773065,3.7,5 +30931,0,0.424945,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.198668,0.15,4 +33768,0,0.571302,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.711241,0.15,4 +33769,0,0.584368,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.02483,0.15,4 +15882,0,0.013751,1,1,0,2,4,,4,2,Denton,Rd,1599103,0,0.014,0,0.330032,4.5,4.5 +15828,1,0.508881,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,1.344,1.852,0,12.213135,3.7,5 +15877,0,0.35008,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.998,1.348,0,8.401925,4.5,4.5 +15879,0,0.408993,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.57,0.979,0,9.815824,4.5,4.5 +15880,0,0.048567,1,1,0,2,4,,4,2,Denton,Rd,1599103,0.522,0.57,0,1.16561,4.5,4.5 +31517,0,0.024956,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.598944,0.15,4 +31519,0,0.035944,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.862665,0.15,4 +15878,0,0.019395,2,2,0,2,4,,4,2,Denton,Rd,1599103,0.979,0.998,0,0.465489,4.5,4.5 +30930,0,0.43994,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.558565,0.15,4 +16955,1,0.579678,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,2.197,2.776,0,13.912268,4.5,4.5 +21400,-1,0.574266,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,2.233,2.807,0,13.78238,4.5,4.5 +18512,0,0.012643,1,1,0,2,4,,4,2,Beck,Rd,1665610,1.932,1.945,0,0.303441,4.5,4.5 +18508,0,0.813037,1,1,0,2,4,GRV,4,2,Beck,Rd,1665610,2.422,3.234,0,19.512896,6.55,4.5 +23659,-1,0.321452,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,2.385,2.706,0,7.714845,3.7,5 +31256,0,0.480874,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.540986,0.15,4 +23157,-1,0.244971,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,2.14,2.385,0,5.879314,3.7,5 +15019,0,0.159539,1,1,0,2,3,,4,2,Ford,Rd,1595510,0.975,1.135,0,3.828934,3.7,5 +15459,0,0.487203,1,1,0,2,4,,4,2,Beck,Rd,1595603,2.25,2.737,0,11.692871,4.5,4.5 +16481,0,0.363213,1,1,1,2,5,,4,2,Cherry Hill,Rd,1607409,0.979,1.343,0,8.717114,5.8,4.5 +21474,0,0.743283,1,1,0,2,5,,4,2,Ridge,Rd,4603889,1.492,2.235,0,17.838799,5.8,4.5 +21807,0,0.506082,1,1,0,2,4,,4,2,Geddes,Rd,4603888,0.992,1.498,0,12.145957,4.5,4.5 +24097,0,0.426917,1,1,0,2,5,,4,2,Warren,Rd,4710470,0.97,1.397,0,10.245998,5.8,4.5 +31436,0,0.438904,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.533704,0.15,4 +31521,0,1.010395,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.249481,0.15,4 +31523,0,1.007778,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.186679,0.15,4 +31524,0,1.114947,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,26.758739,0.15,4 +31527,0,0.521571,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.517699,0.15,4 +31729,0,0.523248,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.557944,0.15,4 +21688,0,0.253899,1,1,0,2,5,,4,2,Ridge,Rd,4603889,1.239,1.492,0,6.093586,5.8,4.5 +40554,-1,0.026819,0,2,0,2,5,,4,3,Livernois,Rd,5499956,0.089,0.115,0,0.643668,5.8,4.5 +22075,0,0.488111,1,1,0,2,4,,4,2,Geddes,Rd,4603888,0.504,0.992,0,11.714654,4.5,4.5 +31526,0,0.996176,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.908231,0.15,4 +40557,1,0.008343,2,0,0,2,4,,4,3,Tienken,Rd,626010,3.484,3.492,0,0.200224,4.5,4.5 +31525,0,0.461168,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.06803,0.15,4 +15230,0,0.975798,1,1,0,2,3,,4,2,Ford,Rd,1595510,0,0.975,0,23.419142,3.7,5 +15674,0,0.560727,1,1,0,2,5,,4,2,Ridge,Rd,1595602,0.588,1.149,0,13.457445,5.8,4.5 +16238,0,0.385633,1,1,0,2,5,,4,2,Cherry Hill,Rd,1607409,0,0.386,0,9.255198,5.8,4.5 +14844,0,0.588215,1,1,0,2,5,,4,2,Ridge,Rd,1595602,0,0.588,0,14.117166,5.8,4.5 +16234,0,0.499529,1,1,1,2,5,,4,2,Cherry Hill,Rd,1607409,0.48,0.979,0,11.988692,5.8,4.5 +31529,0,0.497041,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.928987,0.15,4 +16482,0,0.094548,1,1,1,2,5,,4,2,Cherry Hill,Rd,1607409,0.386,0.48,0,2.26915,5.8,4.5 +31528,0,0.231367,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.552797,0.15,4 +15266,0,0.59366,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,1.149,1.742,0,14.247849,6.55,4.5 +31419,0,0.483124,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.594965,0.15,4 +15047,0,0.404149,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,1.742,2.146,0,9.699581,6.55,4.5 +14902,0,0.523043,1,1,0,2,4,,4,2,Beck,Rd,1595603,1.283,1.805,0,12.553024,4.5,4.5 +21364,0,0.535293,1,1,0,2,4,,4,2,Geddes,Rd,4603888,1.966,2.501,0,12.847042,4.5,4.5 +31520,0,0.51099,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.263752,0.15,4 +31522,0,1.005499,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.131965,0.15,4 +21583,0,0.468656,1,1,0,2,4,,4,2,Geddes,Rd,4603888,1.498,1.966,0,11.247737,4.5,4.5 +15142,0,0.548647,1,1,0,2,4,,4,2,Beck,Rd,1595603,0.734,1.283,0,13.167519,4.5,4.5 +22129,0,0.394866,1,1,0,2,4,,4,2,Geddes,Rd,4603888,2.501,2.896,0,9.476787,4.5,4.5 +30932,0,0.486191,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.668584,0.15,4 +31418,0,0.543869,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.052858,0.15,4 +31572,0,0.566901,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.605632,0.15,4 +15390,0,0.210998,1,1,0,2,4,,4,2,Beck,Rd,1595603,0.523,0.734,0,5.063961,4.5,4.5 +31416,0,0.514185,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.340442,0.15,4 +15736,0,0.444783,1,1,0,2,4,,4,2,Beck,Rd,1595603,1.805,2.25,0,10.674793,4.5,4.5 +31263,0,0.521949,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.526769,0.15,4 +14975,0,0.366615,1,1,0,2,4,,4,2,Beck,Rd,1595603,3.333,3.7,0,8.798757,4.5,4.5 +15222,0,0.424962,1,1,0,2,3,,4,2,Ford,Rd,1595510,1.569,1.994,0,10.199093,3.7,5 +16232,0,0.65119,1,1,0,2,5,,4,2,Cherry Hill,Rd,1607409,1.343,1.993,0,15.62856,5.8,4.5 +24094,0,0.477991,1,1,0,2,5,,4,2,Warren,Rd,4710470,1.507,1.985,0,11.471784,5.8,4.5 +31426,0,0.272563,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.541507,0.15,4 +31530,0,0.505462,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.131096,0.15,4 +14767,0,0.434318,1,1,0,2,3,,4,2,Ford,Rd,1595510,1.135,1.569,0,10.423622,3.7,5 +24096,0,0.109909,1,1,0,2,5,,4,2,Warren,Rd,4710470,1.397,1.507,0,2.637805,5.8,4.5 +31532,0,0.517276,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.414634,0.15,4 +31531,0,0.515522,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.372525,0.15,4 +15193,0,0.281889,1,1,0,2,4,,4,2,Beck,Rd,1595603,3.051,3.333,0,6.765343,4.5,4.5 +16480,0,0.462239,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,1.993,2.455,0,11.093744,4.5,4.5 +31427,0,0.501419,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.034058,0.15,4 +31443,0,0.522935,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.550432,0.15,4 +15453,0,0.314444,1,1,0,2,4,,4,2,Beck,Rd,1595603,2.737,3.051,0,7.546649,4.5,4.5 +31424,0,0.252198,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.052759,0.15,4 +15012,0,0.623277,1,1,0,2,3,,4,2,Ford,Rd,1595510,1.994,2.617,0,14.958658,3.7,5 +15531,0,0.187424,1,1,0,2,3,,4,2,Beck,Rd,1595603,4.05,4.237,0,4.498173,3.7,5 +18732,0,0.53417,1,1,0,2,5,,4,2,Hanford,Rd,1676006,1.992,2.526,0,12.820071,5.8,4.5 +24093,0,0.463466,1,1,0,2,4,,4,2,Warren,Rd,4710470,1.985,2.448,0,11.123186,4.5,4.5 +31438,0,0.284448,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.826755,0.15,4 +33959,0,0.490166,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.763982,0.15,4 +33960,0,0.500681,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.016338,0.15,4 +14555,0,0.350116,1,1,0,2,3,,4,2,Beck,Rd,1595603,3.7,4.05,0,8.40279,3.7,5 +15684,0,0.280593,1,1,0,2,3,,4,2,Beck,Rd,1595603,4.458,4.738,0,6.734223,3.7,5 +14854,0,0.220719,1,1,0,2,3,,4,2,Beck,Rd,1595603,4.237,4.458,0,5.297249,3.7,5 +31441,0,0.289342,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.944208,0.15,4 +31445,0,0.232339,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.576137,0.15,4 +3195,0,0.992756,1,1,0,2,4,,5,5,8 Mile,Rd,656509,4.784,5.776,0,23.826133,3,4 +9827,0,0.661214,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,27.139,27.8,0,15.869129,3,4 +11036,0,1.004552,1,1,0,2,7,,5,5,7 Mile,Rd,1451104,2.806,3.81,0,24.109257,5.8,6 +11127,0,1.120943,1,1,0,2,7,GRV,5,5,Chubb,Rd,1447204,0,1.121,0,26.902631,5.55,5 +11178,0,1.002799,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,7.881,8.884,0,24.067185,3.7,5 +11181,0,0.995816,1,1,0,2,5,,5,5,Curtis,Rd,1432002,3.777,4.772,0,23.899585,3.7,5 +11237,0,1.182059,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,5.5,6.682,0,28.369406,3,4 +11534,-1,0.672154,0,2,0,1,2,,5,5,W M 14,,1431410,10.47,11.141,0,,1.02,7 +11587,1,0.742539,2,0,0,1,2,,5,5,E M 14,,1431408,10.346,11.089,0,,1.02,7 +15092,1,0.701355,2,0,0,2,3,DIV,4,2,Beck,Rd,1595603,8.754,9.455,0,16.832515,3.7,5 +20660,0,1.002307,1,1,0,2,5,,5,3,9 Mile,Rd,4407342,0,1.002,0,24.055375,3.7,5 +21264,0,0.999564,1,1,0,2,5,,4,5,Napier,Rd,4603890,0.769,1.769,0,23.989547,5.8,4.5 +26826,0,0.912652,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.90365,0.15,4 +26827,0,1.303963,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,31.295116,0.15,4 +39098,0,0.861806,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,20.683333,0.15,4 +26830,0,1.386536,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,33.276875,0.15,4 +26835,0,1.001509,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.036218,0.15,4 +31431,0,0.329701,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.912826,0.15,4 +31433,0,0.868509,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.844222,0.15,4 +31471,0,1.010974,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.263371,0.15,4 +9854,0,1.0575,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,25.007,26.064,0,25.380003,3,4 +11130,0,0.433413,1,1,0,2,4,,5,5,Gotfredson,Rd,1432004,6.125,6.558,0,10.401902,3,4 +11187,0,0.667397,1,1,0,2,5,,5,5,Curtis,Rd,1432002,2.242,2.909,0,16.01753,3.7,5 +11239,0,1.318619,1,1,0,2,4,,5,5,Plymouth,Rd,1431904,4.182,5.5,0,31.646848,3,4 +26825,0,1.77047,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,42.491275,0.15,4 +26844,0,0.819122,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,19.658926,0.15,4 +30110,0,1.572349,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,37.736381,0.15,4 +11191,0,1.340297,1,1,0,2,5,,5,5,Curtis,Rd,1432002,0.902,2.242,0,32.16713,3.7,5 +11193,0,0.457432,1,1,0,2,5,,5,5,Curtis,Rd,1432002,0.445,0.902,0,10.978376,3.7,5 +11185,0,0.868015,1,1,0,2,5,,5,5,Curtis,Rd,1432002,2.909,3.777,0,20.832361,3.7,5 +30111,0,1.664412,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,39.945886,0.15,4 +11141,0,0.757697,1,1,0,2,5,,5,5,Gotfredson,Rd,1432004,5.064,5.822,0,18.184732,3.7,5 +11589,1,0.723767,2,0,0,1,2,,5,5,E M 14,,1431408,9.623,10.346,0,,1.02,7 +19287,1,0.397853,1,0,0,1,2,ROF,5,5,E M 14/Gotfredson,RAMP,1789403,0,0.398,0,,2.24,5 +26824,0,0.898735,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,21.569638,0.15,4 +11142,0,0.519453,1,1,0,2,5,,5,5,Gotfredson,Rd,1432004,4.545,5.064,0,12.46686,3.7,5 +11132,0,0.303322,1,1,0,2,4,,5,5,Gotfredson,Rd,1432004,5.822,6.125,0,7.279733,3,4 +11549,-1,0.634097,0,2,0,1,2,,5,5,W M 14,,1431410,9.836,10.47,0,,1.02,7 +19285,1,0.339502,1,0,0,1,2,RON,5,5,Gotfredson/W M 14,RAMP,1789405,0,0.339,0,,1.09,4 +19286,1,0.405494,1,0,0,1,2,RON,5,5,Gotfredson/E M 14,RAMP,1789404,0,0.405,0,,1.09,4 +19288,1,0.374656,1,0,0,1,2,ROF,5,5,W M 14/Gotfredson,RAMP,1789402,0,0.375,0,,2.24,5 +9833,0,1.07578,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,26.064,27.139,0,25.818712,3,4 +26843,0,0.461763,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,11.082317,0.15,4 +10820,0,0.283131,1,1,0,2,7,GRV,5,5,Gotfredson,Rd,1451202,4.154,4.437,0,6.795135,5.55,5 +30000,0,1.4563,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,34.951209,0.15,4 +11129,0,0.250989,1,1,0,2,4,,5,5,Gotfredson,Rd,1432004,6.558,6.809,0,6.023728,3,4 +26831,0,1.843004,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,44.232104,0.15,4 +1254,0,0.577077,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,0,0.577,0,13.849843,5.55,5 +3139,0,1.000881,1,1,0,2,3,,5,3,10 Mile,Rd,656510,3.777,4.777,0,24.021143,1.7,4 +3535,0,0.953184,1,1,0,2,4,,5,5,8 Mile,Rd,656509,2.835,3.788,0,22.876419,3,4 +11182,0,0.891628,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,5.989,6.88,0,21.399077,3.7,5 +20442,0,0.999528,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,1.002,2.001,0,23.988673,5.55,5 +25473,0,0.501374,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.032979,0.15,4 +26724,0,0.998676,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.968224,0.15,4 +26837,0,1.053364,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.28074,0.15,4 +26838,0,0.500276,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.006616,0.15,4 +10989,0,0.189909,1,1,0,2,5,,5,5,6 Mile,Rd,1446810,5.799,5.989,0,4.557808,3.7,5 +338,0,0.58049,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,0.998,1.578,0,13.931768,5.55,5 +3475,0,0.867762,1,1,0,2,3,,5,3,10 Mile,Rd,656510,2.909,3.777,0,20.826289,1.7,4 +20255,0,0.923235,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,2.001,2.924,0,22.157637,5.55,5 +24621,0,0.997754,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.946093,0.15,4 +25472,0,0.999884,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.997211,0.15,4 +25477,0,0.530382,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.729176,0.15,4 +25470,0,0.502499,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.05998,0.15,4 +19906,0,0.252301,1,1,0,2,5,GRV,5,3,9 Mile,Rd,4407342,2.924,3.176,0,6.055232,5.55,5 +2514,0,0.559571,1,1,0,2,4,,5,3,10 Mile,Rd,656510,2.222,2.782,0,13.429695,3,4 +25475,0,0.515314,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.367536,0.15,4 +3484,0,0.127698,1,1,0,2,3,,5,3,10 Mile,Rd,656510,2.782,2.909,0,3.064759,1.7,4 +804,0,0.420723,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,0.577,0.998,0,10.097356,5.55,5 +2174,0,0.23526,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,1.578,1.813,0,5.646243,5.55,5 +1668,0,0.183924,1,1,0,2,5,GRV,5,3,Currie,Rd,634405,1.813,1.997,0,4.414178,5.55,5 +3200,0,0.960282,1,1,0,2,4,,5,5,8 Mile,Rd,656509,3.813,4.773,0,23.046779,3,4 +10987,0,1.001393,1,1,0,2,5,,5,5,Main,St,1446810,6.88,7.881,0,24.033434,3.7,5 +11135,0,0.940167,1,1,0,2,5,,5,5,Currie,Rd,1447105,1.127,2.067,0,22.564007,3.7,5 +11194,0,0.959845,1,1,0,2,7,,5,5,7 Mile,Rd,1451104,1.847,2.806,0,23.036272,5.8,6 +26834,0,0.965787,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.178878,0.15,4 +10967,0,0.993358,1,1,0,2,5,,5,5,Currie,Rd,1447105,2.067,3.06,0,23.840598,3.7,5 +3522,0,0.025024,1,1,0,2,4,,5,5,8 Mile,Rd,656509,3.788,3.813,0,0.600574,3,4 +26833,0,0.97045,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,23.290797,0.15,4 +29999,0,0.039759,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,0.954222,0.15,4 +3519,0,0.010751,1,1,0,2,4,,5,5,8 Mile,Rd,656509,4.773,4.784,0,0.258033,3,4 +26842,0,0.500089,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.002133,0.15,4 +26836,0,0.49987,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.996891,0.15,4 +3468,0,0.50711,1,1,1,2,3,,5,3,10 Mile,Rd,656510,4.777,5.284,0,12.17064,1.7,4 +26840,0,0.499384,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.985219,0.15,4 +11118,0,0.734554,1,1,0,2,5,,4,5,Napier,Rd,1432007,4.013,4.747,0,17.629284,5.8,4.5 +14792,0,0.403358,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.744,7.148,0,9.680589,3.7,5 +15731,0,0.78888,1,1,0,2,5,,4,2,Ridge,Rd,1595602,4.166,4.954,0,18.933114,5.8,4.5 +16054,0,0.352995,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,1.074,1.427,0,8.47188,4.5,4.5 +16063,-1,2.160591,0,2,0,1,2,,4,2,W M 14,,1606204,0,2.16,0,,0.8,7.5 +16929,1,1.998309,2,0,0,1,2,,4,2,E M 14,,1606205,0,1.998,0,,0.8,7.5 +17434,0,0.537012,1,1,0,2,5,,4,2,Powell,Rd,1673208,1.012,1.549,0,12.888299,5.8,4.5 +17787,0,0.201664,1,1,0,2,5,GRV,4,2,Joy,Rd,1672705,0.62,0.822,0,4.839929,6.55,4.5 +18799,0,1.003434,1,1,0,2,5,,4,2,5 Mile,Rd,1708705,1.016,2.019,0,24.082423,5.8,4.5 +18839,0,0.51769,1,1,0,2,4,,4,2,Territorial,Rd,1673609,1.015,1.533,0,12.424567,4.5,4.5 +30395,0,0.921497,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.115923,0.15,4 +31432,0,0.899774,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,21.594572,0.15,4 +31448,0,0.503296,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.079109,0.15,4 +31462,0,0.374928,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.998283,0.15,4 +31468,0,0.491802,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.80324,0.15,4 +11125,0,0.824177,1,1,0,2,5,,4,5,Napier,Rd,1432007,2.997,3.821,0,19.780256,5.8,4.5 +15635,0,0.279049,1,1,0,2,5,GRV,4,2,Ridge,Rd,1595602,3.164,3.443,0,6.697183,6.55,4.5 +16062,0,0.51492,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,0.56,1.074,0,12.358076,4.5,4.5 +16067,0,0.383217,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,0,0.383,0,9.197219,4.5,4.5 +17436,0,0.466132,1,1,0,2,5,,4,2,Powell,Rd,1673208,0,0.466,0,11.187164,5.8,4.5 +31536,0,0.803045,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.273085,0.15,4 +31537,0,0.514486,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.347664,0.15,4 +11122,0,0.19229,1,1,0,2,5,,4,5,Napier,Rd,1432007,3.821,4.013,0,4.614968,5.8,4.5 +18190,0,0.540578,1,1,0,2,5,GRV,4,2,Joy,Rd,1672705,0.079,0.62,0,12.973881,6.55,4.5 +16066,0,0.176519,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,0.383,0.56,0,4.236454,4.5,4.5 +18104,0,0.079493,1,1,0,2,5,GRV,4,2,Joy,Rd,1672705,0,0.079,0,1.907842,6.55,4.5 +15336,0,0.566692,1,1,0,2,5,,4,2,Ridge,Rd,1595602,3.443,4.009,0,13.600601,5.8,4.5 +18844,0,0.545978,1,1,0,2,5,,4,2,Powell,Rd,1673208,0.466,1.012,0,13.103467,5.8,4.5 +31534,0,0.505396,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.129511,0.15,4 +31533,0,0.130106,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.122556,0.15,4 +14899,0,0.156573,1,1,0,2,5,,4,2,Ridge,Rd,1595602,4.009,4.166,0,3.757752,5.8,4.5 +15195,0,0.613687,1,1,0,2,5,,4,2,Ridge,Rd,1595602,5.555,6.169,0,14.728492,5.8,4.5 +17425,0,0.828584,1,1,0,2,4,,4,2,Territorial,Rd,1673609,0.187,1.015,0,19.886016,4.5,4.5 +17534,0,0.773393,1,1,0,2,5,,4,2,5 Mile,Rd,1708705,0,0.773,0,18.561433,5.8,4.5 +26845,0,0.711368,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.072837,0.15,4 +33766,0,0.679097,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.298326,0.15,4 +9818,0,0.343598,1,1,0,2,4,,5,5,North Territorial,Rd,1426409,27.8,28.144,0,8.246341,3,4 +18378,0,0.186956,1,1,0,2,4,,4,2,Territorial,Rd,1673609,0,0.187,0,4.486935,4.5,4.5 +15455,0,0.601015,1,1,0,2,5,,4,2,Ridge,Rd,1595602,4.954,5.555,0,14.424371,5.8,4.5 +31540,0,0.510185,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.244431,0.15,4 +19134,0,0.242448,1,1,0,2,5,,4,2,5 Mile,Rd,1708705,0.773,1.016,0,5.818749,5.8,4.5 +14798,0,0.166346,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.743,5.909,0,3.99231,3.7,5 +16050,0,0.334166,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,1.82,2.154,0,8.019992,4.5,4.5 +16257,0,0.430352,1,1,0,2,4,,4,2,Ann Arbor,Trl,1604108,0,0.43,0,10.328454,4.5,4.5 +17571,0,0.809896,1,1,0,2,5,,4,2,Joy,Rd,1672705,0.822,1.631,0,19.437507,5.8,4.5 +18842,0,0.458307,1,1,0,2,5,,4,2,Powell,Rd,1673208,1.549,2.007,0,10.99936,5.8,4.5 +31429,0,0.508027,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.192658,0.15,4 +31454,0,0.254718,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.113235,0.15,4 +31420,0,0.584234,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.021615,0.15,4 +16051,0,0.392509,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,1.427,1.82,0,9.42021,4.5,4.5 +30937,0,0.519962,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.479084,0.15,4 +31535,0,0.102899,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.469581,0.15,4 +14908,0,0.50247,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.24,5.743,0,12.05929,3.7,5 +18983,0,0.504149,1,1,0,2,4,,4,2,Joy,Rd,1672705,1.631,2.135,0,12.099578,4.5,4.5 +33954,0,0.529265,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.702367,0.15,4 +33955,0,0.510549,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.253179,0.15,4 +15147,0,0.221925,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.019,5.24,0,5.326192,3.7,5 +17635,0,0.220579,1,1,0,2,4,,4,2,Joy,Rd,1672705,2.135,2.356,0,5.293902,4.5,4.5 +31449,0,0.304281,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.302736,0.15,4 +15090,0,0.172873,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.45,6.622,0,4.148952,3.7,5 +16048,0,0.795396,1,1,0,2,4,,4,2,Ann Arbor,Rd,1604102,2.154,2.949,0,19.089499,4.5,4.5 +16240,0,0.572304,1,1,0,2,4,,4,2,Ann Arbor,Trl,1604108,0.43,1.002,0,13.735301,4.5,4.5 +31453,0,0.751264,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.030343,0.15,4 +15624,0,0.396426,1,1,1,2,3,,4,2,Beck,Rd,1595603,5.909,6.305,0,9.514215,3.7,5 +15324,0,0.144356,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.305,6.45,0,3.464543,3.7,5 +14841,0,0.12198,1,1,0,2,3,,4,2,Beck,Rd,1595603,6.622,6.744,0,2.927517,3.7,5 +31452,0,0.250888,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.021317,0.15,4 +14868,0,0.069719,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.099,8.169,0,1.673245,3.7,5 +16060,-1,0.360729,0,3,0,1,2,,4,2,W M 14,,1606204,2.4,2.76,0,,0.8,7.5 +16626,1,0.229789,3,0,0,1,2,,4,2,E M 14,,1606205,2.327,2.557,0,,0.8,7.5 +18567,0,0.527292,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,2.019,2.546,0,12.655015,4.5,4.5 +18791,0,0.294772,1,1,0,2,4,,4,2,Territorial,Rd,1673609,1.99,2.284,0,7.074524,4.5,4.5 +19299,1,0.415879,1,0,0,1,2,ROF,4,2,W M 14/Beck,RAMP,1778110,0,0.416,0,,2.24,5 +19300,1,0.266561,1,0,0,1,2,RON,4,2,N Beck/W M 14,RAMP,1778109,0,0.267,0,,1.09,4 +21664,1,0.304383,1,0,0,1,2,RON,4,2,N Beck/E M 14,RAMP,4700034,0,0.304,0,,1.09,4 +31434,0,0.92208,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,22.129912,0.15,4 +31538,0,0.505519,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.132447,0.15,4 +31541,0,0.585618,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.054835,0.15,4 +15619,0,0.465705,1,1,0,2,3,,4,2,Beck,Rd,1595603,7.148,7.613,0,11.176924,3.7,5 +18374,0,0.457114,1,1,0,2,4,,4,2,Territorial,Rd,1673609,1.533,1.99,0,10.970739,4.5,4.5 +14839,0,0.072065,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.805,7.877,0,1.729562,3.7,5 +16927,1,0.329913,3,0,0,1,2,,4,2,E M 14,,1606205,1.998,2.327,0,,0.8,7.5 +16935,-1,0.239965,0,3,0,1,2,,4,2,W M 14,,1606204,2.16,2.4,0,,0.8,7.5 +19294,1,0.273631,1,0,0,1,2,RON,4,2,S Beck/E M 14,RAMP,1778204,0,0.274,0,,1.09,4 +19295,1,0.395726,1,0,0,1,2,ROF,4,2,E M 14/Beck,RAMP,1778203,0,0.396,0,,2.24,5 +21665,1,0.300492,1,0,0,1,2,RON,4,2,S Beck/W M 14,RAMP,4700035,0,0.3,0,,1.09,4 +15321,0,0.139343,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.613,7.752,0,3.344223,3.7,5 +15087,0,0.052669,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.752,7.805,0,1.264052,3.7,5 +15639,0,0.138086,2,2,1,2,3,,4,2,Beck,Rd,1595603,7.877,8.015,0,3.314061,3.7,5 +15107,0,0.020294,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.079,8.099,0,0.487059,3.7,5 +15341,0,0.063944,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.015,8.079,0,1.534662,3.7,5 +15697,0,0.584757,2,2,1,2,3,,4,2,Beck,Rd,1595603,8.169,8.754,0,14.034167,3.7,5 +18335,0,0.246972,1,1,0,2,4,,4,2,Territorial,Rd,1673609,2.284,2.531,0,5.927324,4.5,4.5 +31461,0,0.381597,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.158338,0.15,4 +31467,0,0.226359,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.432608,0.15,4 +18240,0,0.172021,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,2.546,2.718,0,4.128505,4.5,4.5 +393,0,1.175939,1,1,0,2,5,GRV,5,3,9 Mile,Rd,633603,7.218,8.394,0,28.222535,5.55,5 +2490,0,0.342939,1,1,0,2,3,,4,3,10 Mile,Rd,656510,7.045,7.388,0,8.230544,3.7,5 +15139,0,0.918987,1,1,0,2,3,,4,2,Beck,Rd,1595603,10.764,11.683,0,22.055686,3.7,5 +17473,0,1.006903,1,1,0,2,4,,4,3,8 Mile,Rd,1680705,1.01,2.016,0,24.165679,4.5,4.5 +17616,0,1.004465,1,1,0,2,5,,4,2,6 Mile,Rd,1680701,1.014,2.018,0,24.107168,5.8,4.5 +18266,0,1.192775,1,1,0,2,5,,4,2,7 Mile,Rd,1680703,0.361,1.554,0,28.626597,5.8,4.5 +21744,0,0.938249,1,1,0,2,5,GRV,4,5,Napier,Rd,4603890,2.77,3.708,0,22.517969,6.55,4.5 +25863,0,1.002569,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.061661,0.15,4 +26848,0,1.09291,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.229836,0.15,4 +26849,0,0.770549,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.493179,0.15,4 +31542,0,1.217898,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,29.229564,0.15,4 +31547,0,0.972996,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.351897,0.15,4 +33944,0,0.587905,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.109718,0.15,4 +17709,0,0.613589,1,1,0,2,5,GRV,4,2,6 Mile,Rd,1680701,0,0.613,0,14.726146,6.55,4.5 +22023,0,1.001947,1,1,0,2,5,GRV,4,5,Napier,Rd,4603890,1.769,2.77,0,24.046732,6.55,4.5 +31544,0,0.645455,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.49091,0.15,4 +31545,0,0.985662,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.655893,0.15,4 +18387,0,0.361448,1,1,0,2,5,,4,2,7 Mile,Rd,1680703,0,0.361,0,8.674759,5.8,4.5 +1051,0,0.501971,1,1,0,2,4,,5,3,Napier,Rd,621905,0.998,1.5,0,12.047297,3,4 +1948,0,0.916308,1,1,0,2,5,GRV,5,3,9 Mile,Rd,633603,8.394,9.31,0,21.991383,5.55,5 +17576,0,1.009852,1,1,0,2,4,,4,3,8 Mile,Rd,1680705,0,1.01,0,24.236449,4.5,4.5 +26846,0,0.62862,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.086886,0.15,4 +26850,0,1.021369,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.51285,0.15,4 +481,0,0.129946,1,1,0,2,5,,5,3,9 Mile,Rd,633603,9.31,9.44,0,3.118706,3.7,5 +1792,0,0.987671,1,1,0,2,4,,5,3,Napier,Rd,621905,0,0.987,0,23.704106,3,4 +1297,0,0.010378,1,1,0,2,4,,5,3,Napier,Rd,621905,0.987,0.998,0,0.249079,3,4 +26847,0,0.532639,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.783344,0.15,4 +3465,0,0.266323,1,1,0,2,3,,4,3,10 Mile,Rd,656510,6.779,7.045,0,6.391741,3.7,5 +15387,0,0.368144,1,1,0,2,3,,4,2,Beck,Rd,1595603,10.396,10.764,0,8.835458,3.7,5 +17750,0,0.76068,1,1,0,2,4,,4,2,7 Mile,Rd,1680703,2.018,2.778,0,18.256323,4.5,4.5 +19120,0,0.597333,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,2.018,2.615,0,14.335994,4.5,4.5 +31546,0,0.763275,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.318609,0.15,4 +33765,0,0.779793,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.715035,0.15,4 +15672,0,0.635554,1,1,0,2,3,,4,2,Beck,Rd,1595603,9.761,10.396,0,15.253291,3.7,5 +14843,1,0.291444,2,0,0,2,3,DIV,4,2,Beck,Rd,1595603,9.455,9.746,0,6.994647,3.7,5 +17975,0,0.464516,1,1,0,2,5,,4,2,7 Mile,Rd,1680703,1.554,2.018,0,11.148396,5.8,4.5 +31470,0,0.20352,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.884485,0.15,4 +859,0,0.374516,1,1,0,2,4,,4,3,9 Mile,Rd,633603,6.844,7.218,0,8.988388,4.5,4.5 +3010,0,0.44126,1,1,0,2,5,,4,3,Taft,Rd,656608,0.559,1,0,10.590232,5.8,4.5 +3362,0,0.424726,1,1,0,2,4,,4,3,Beck,Rd,656605,0.576,1.001,0,10.193429,4.5,4.5 +3459,0,0.375405,1,1,1,2,3,,4,3,10 Mile,Rd,656510,7.803,8.178,0,9.009725,3.7,5 +18986,0,0.273455,1,1,0,2,3,,4,3,8 Mile,Rd,1680705,2.016,2.289,0,6.562915,3.7,5 +26868,0,0.558866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.412792,0.15,4 +3040,0,0.576178,1,1,0,2,4,,4,3,Beck,Rd,656605,0,0.576,0,13.828271,4.5,4.5 +3030,0,0.50172,1,1,0,2,4,,4,3,Beck,Rd,656605,1.502,2.004,0,12.041277,4.5,4.5 +3464,0,0.415566,1,1,0,2,3,,4,3,10 Mile,Rd,656510,7.388,7.803,0,9.973572,3.7,5 +3039,0,0.127415,1,1,0,2,4,,4,3,Beck,Rd,656605,1.001,1.128,0,3.057956,4.5,4.5 +3348,0,0.374156,1,1,0,2,4,,4,3,Beck,Rd,656605,1.128,1.502,0,8.979748,4.5,4.5 +3011,0,0.319094,1,1,0,2,5,,3,3,Taft,Rd,656608,0,0.319,0,7.658247,8,4.5 +18411,0,0.599121,1,1,0,2,3,,4,3,8 Mile,Rd,1680705,2.41,3.009,0,14.378905,3.7,5 +26851,0,0.510797,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.259136,0.15,4 +18734,0,0.121024,1,1,0,2,3,,4,3,8 Mile,Rd,1680705,2.289,2.41,0,2.904585,3.7,5 +26852,0,0.26423,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.341513,0.15,4 +3325,0,0.060606,1,1,0,2,5,,4,3,Taft,Rd,656608,0.498,0.559,0,1.454537,5.8,4.5 +1318,0,0.609187,1,1,0,2,4,,4,3,9 Mile,Rd,633603,6.235,6.844,0,14.620481,4.5,4.5 +3006,0,0.582806,1,1,0,2,5,,4,3,Taft,Rd,656608,1.416,1.998,0,13.987339,5.8,4.5 +3449,0,0.53504,1,1,1,2,3,,4,3,10 Mile,Rd,656510,8.276,8.811,0,12.840971,3.7,5 +26853,0,0.751521,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.036504,0.15,4 +26854,0,0.529427,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.706259,0.15,4 +26856,0,0.277047,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.649116,0.15,4 +3119,0,0.097477,1,1,1,2,3,,4,3,10 Mile,Rd,656510,8.178,8.276,0,2.339455,3.7,5 +3319,0,0.416016,1,1,0,2,5,,4,3,Taft,Rd,656608,1,1.416,0,9.984383,5.8,4.5 +11448,1,0.838228,3,0,0,1,1,,4,2,E I 94,,1576405,5.579,6.417,0,,0.8,7.5 +14318,-1,0.684481,0,3,0,1,1,,4,2,W I 94,,1588802,5.678,6.363,0,,0.8,7.5 +15739,0,0.061636,2,2,1,2,3,,4,2,Ford,Rd,0,0,0,0,1.479259,3.7,5 +15810,1,0.384049,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,6.148,6.532,0,9.217165,3.7,5 +15858,0,0.498385,2,2,0,2,4,,3,2,Venoy,Rd,1599408,0,0.498,0,11.961232,6,4.5 +15861,0,0.315646,1,1,0,2,5,,3,2,Howe,Rd,4712012,0.181,0.496,0,7.575509,8,4.5 +16428,0,0.395251,1,1,0,2,4,,3,2,Cherry Hill,Rd,1607409,5.877,6.273,0,9.486023,6,4.5 +16440,-1,1.541746,0,3,0,1,1,,4,2,S I 275,,1607610,12.587,14.128,0,,0.8,7.5 +16441,-1,1.737041,0,3,0,1,1,,4,2,S I 275,,1607610,10.168,11.904,0,,0.8,7.5 +16501,0,0.272687,1,1,0,2,4,,3,2,Palmer,Rd,1607406,3.016,3.289,0,6.544478,6,4.5 +16760,1,1.451361,3,0,0,1,1,,4,2,N I 275,,1607208,12.521,13.972,0,,0.8,7.5 +16767,1,1.807045,3,0,0,1,1,,4,2,N I 275,,1607208,10.015,11.821,0,,0.8,7.5 +16914,-1,0.59181,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4718970,0,0.592,0,14.203435,4.5,4.5 +17725,0,0.359319,1,1,0,2,4,,3,2,Hannan,Rd,1710309,7.48,7.839,0,8.62365,6,4.5 +17772,0,0.589125,1,1,0,2,4,,4,2,Tyler,Rd,1675701,3.489,4.078,0,14.138994,4.5,4.5 +17907,0,0.134841,1,1,0,2,4,,4,2,Van Born,Rd,1670110,2.998,3.133,0,3.236187,4.5,4.5 +18285,0,0.771599,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,0.297,1.068,0,18.518387,5.8,4.5 +18433,0,0.27236,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,0,0.272,0,6.536651,8,4.5 +18465,0,0.570459,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.401,8.972,0,13.691025,6,4.5 +19231,0,0.746846,1,1,0,2,5,,4,2,South Service,Rd,1811006,5.699,6.445,0,17.924296,5.8,4.5 +21532,0,0.889587,1,1,0,2,5,,4,2,North Service,Rd,4603886,5.69,6.579,0,21.350095,5.8,4.5 +22537,0,0.654394,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,4.226,4.88,0,15.705445,4.5,4.5 +22921,0,0.445323,2,2,0,2,3,,4,2,Belleville,Rd,4705580,4.049,4.495,0,10.68776,3.7,5 +22991,0,0.525789,1,1,0,2,4,,4,2,Huron River,Dr,4705582,2.951,3.477,0,12.618935,4.5,4.5 +23268,-1,0.376684,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,6.129,6.506,0,9.040419,3.7,5 +24063,0,0.360308,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.878,6.239,0,8.64739,4.5,4.5 +24480,0,0.346931,2,2,1,2,3,,3,2,Wayne,Rd,4719470,5.321,5.668,0,8.32634,5,5 +31254,0,0.521082,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.505965,0.15,4 +31554,0,0.598162,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.355881,0.15,4 +31561,0,0.392491,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.419787,0.15,4 +31565,0,0.512741,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.305786,0.15,4 +31568,0,0.359532,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.628764,0.15,4 +31569,0,0.396252,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.510047,0.15,4 +31570,0,0.342234,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.213614,0.15,4 +31571,0,0.307439,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.378542,0.15,4 +31582,0,0.840137,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,20.163298,0.15,4 +33792,0,0.288401,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.921635,0.15,4 +33793,0,0.927493,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,22.259834,0.15,4 +33941,0,0.323209,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.757008,0.15,4 +33963,0,0.858412,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,20.601883,0.15,4 +33964,0,0.524629,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.591102,0.15,4 +10977,1,1.701979,3,0,0,1,1,,4,2,E I 94,,1576405,3.348,5.049,0,,0.8,7.5 +14121,-1,1.651166,0,3,0,1,1,,4,2,W I 94,,1588802,3.368,5.018,0,,0.8,7.5 +16943,0,0.993683,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,0.334,1.327,0,23.848403,4.5,4.5 +18136,0,0.465525,1,1,0,2,4,,4,2,Tyler,Rd,1675701,1.945,2.411,0,11.172611,4.5,4.5 +18315,0,0.786489,1,1,0,2,4,,4,2,Van Born,Rd,1670110,1.333,2.12,0,18.875745,4.5,4.5 +19232,0,1.145059,1,1,0,2,5,,4,2,South Service,Rd,1811006,4.554,5.699,0,27.48141,5.8,4.5 +21745,0,1.249742,1,1,0,2,5,,4,2,North Service,Rd,4603886,4.441,5.69,0,29.993817,5.8,4.5 +22927,0,0.476975,1,1,0,2,4,,4,2,Huron River,Dr,4705582,1.148,1.625,0,11.447394,4.5,4.5 +22943,0,0.505339,1,1,0,2,3,,4,2,Belleville,Rd,4705580,1.884,2.389,0,12.128137,3.7,5 +23530,0,0.576843,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,1.825,2.401,0,13.844238,4.5,4.5 +31246,0,0.505341,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.128178,0.15,4 +31250,0,0.526657,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.639771,0.15,4 +31252,0,0.495409,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.889826,0.15,4 +31364,0,0.588283,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.118802,0.15,4 +31365,0,0.451741,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.841776,0.15,4 +31599,0,1.045052,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,25.081244,0.15,4 +14416,1,0.393969,1,0,0,1,1,ROF,4,2,W I 94/Belleville,RAMP,1588806,0,0.394,0,,2.24,5 +19028,0,0.677489,1,1,0,2,4,,4,2,Tyler,Rd,1675701,0.925,1.603,0,16.25974,4.5,4.5 +19234,0,1.090909,1,1,0,2,5,,4,2,South Service,Rd,1811006,3.224,4.314,0,26.181808,5.8,4.5 +21247,1,0.325987,1,0,0,1,1,RON,4,2,S Belleville/W I 94,RAMP,4700020,0,0.326,0,,1.09,4 +22024,0,1.119579,1,1,0,2,5,,4,2,North Service,Rd,4603886,3.322,4.441,0,26.869898,5.8,4.5 +23165,0,0.058611,2,2,0,2,3,,4,2,Belleville,Rd,4705580,0.977,1.035,0,1.406663,3.7,5 +31248,0,0.5429,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.029599,0.15,4 +31372,0,0.154182,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.700359,0.15,4 +31597,0,1.016037,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.384891,0.15,4 +31600,0,0.47547,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.411283,0.15,4 +10799,1,0.40035,3,0,0,1,1,,4,2,E I 94,,1576405,2.947,3.348,0,,0.8,7.5 +11254,1,0.380655,1,0,0,1,1,RON,4,2,N Belleville/E I 94,RAMP,1576503,0,0.381,0,,1.09,4 +13739,1,0.224087,1,0,0,1,1,RON,4,2,N Belleville/W I 94,RAMP,1588805,0,0.224,0,,1.09,4 +14432,-1,0.290749,0,3,0,1,1,,4,2,W I 94,,1588802,2.748,3.039,0,,0.8,7.5 +23302,0,0.099975,1,1,0,2,4,,4,2,Main,St,4705581,0.11,0.21,0,2.399411,4.5,4.5 +10725,1,0.382603,1,0,0,1,1,ROF,4,2,E I 94/Belleville,RAMP,1576410,0,0.383,0,,2.24,5 +11013,1,0.310806,3,0,0,1,1,,4,2,E I 94,,1576405,2.637,2.947,0,,0.8,7.5 +22972,0,0.172362,1,1,0,2,4,,4,2,Belleville,Rd,4705580,0.576,0.748,0,4.136683,4.5,4.5 +23294,0,0.355445,2,2,1,2,4,,4,2,Belleville,Rd,4705580,0.22,0.576,0,8.53067,4.5,4.5 +11434,1,0.238444,1,0,0,1,1,RON,4,2,S Belleville/E I 94,RAMP,1576501,0,0.238,0,,1.09,4 +23508,0,0.118896,2,2,0,2,3,,4,2,Belleville,Rd,4705580,0.858,0.977,0,2.853503,3.7,5 +23701,0,0.06482,2,2,0,2,3,,4,2,Belleville,Rd,4705580,0.793,0.858,0,1.555676,3.7,5 +22698,0,0.045001,2,2,0,2,4,,4,2,Belleville,Rd,4705580,0.748,0.793,0,1.080031,4.5,4.5 +14375,-1,0.329369,0,3,0,1,1,,4,2,W I 94,,1588802,3.039,3.368,0,,0.8,7.5 +23247,0,0.482511,2,2,1,2,3,,4,2,Belleville,Rd,4705580,1.401,1.884,0,11.580263,3.7,5 +23588,0,0.309284,2,2,1,2,3,,4,2,Belleville,Rd,4705580,1.092,1.401,0,7.422817,3.7,5 +22582,0,0.037077,2,2,0,2,3,,4,2,Belleville,Rd,4705580,1.055,1.092,0,0.889842,3.7,5 +22874,0,0.019886,2,2,0,2,3,,4,2,Belleville,Rd,4705580,1.035,1.055,0,0.477259,3.7,5 +23221,0,0.560244,1,1,0,2,4,,4,2,Huron River,Dr,4705582,0.588,1.148,0,13.445845,4.5,4.5 +19233,0,0.2399,1,1,0,2,5,,4,2,South Service,Rd,1811006,4.314,4.554,0,5.757608,5.8,4.5 +18557,0,0.342755,1,1,0,2,4,,4,2,Tyler,Rd,1675701,1.603,1.945,0,8.226127,4.5,4.5 +31598,0,0.480276,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.526619,0.15,4 +16946,0,0.068539,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,0.265,0.334,0,1.644945,4.5,4.5 +17927,0,0.581035,1,1,0,2,4,,4,2,Van Born,Rd,1670110,0,0.581,0,13.944836,4.5,4.5 +23561,0,0.29417,2,2,0,2,3,,4,2,Belleville,Rd,4705580,3.29,3.584,0,7.060088,3.7,5 +31247,0,0.510744,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.25785,0.15,4 +31255,0,0.282756,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.786137,0.15,4 +31257,0,0.532979,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.791499,0.15,4 +31802,0,0.526543,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.637028,0.15,4 +16948,1,0.159591,2,0,0,2,4,DIV,4,2,Ecorse,Rd,1600207,3.115,3.275,0,3.830182,4.5,4.5 +21554,-1,0.175826,0,2,0,2,4,DIV,4,2,Ecorse,Rd,4602985,3.152,3.328,0,4.219818,4.5,4.5 +22653,0,0.477009,1,1,0,2,3,,4,2,Belleville,Rd,4705580,2.389,2.866,0,11.448208,3.7,5 +22554,0,0.405546,2,2,0,2,3,,4,2,Belleville,Rd,4705580,2.884,3.29,0,9.733096,3.7,5 +22848,0,0.018782,1,1,0,2,3,,4,2,Belleville,Rd,4705580,2.866,2.884,0,0.450779,3.7,5 +23216,0,0.465714,2,2,0,2,3,,4,2,Belleville,Rd,4705580,3.584,4.049,0,11.177136,3.7,5 +31566,0,0.385784,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.258813,0.15,4 +31249,0,0.498435,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.96244,0.15,4 +17926,0,0.719842,1,1,0,2,4,,4,2,Van Born,Rd,1670110,0.614,1.333,0,17.276206,4.5,4.5 +18316,0,0.032919,1,1,0,2,4,,4,2,Van Born,Rd,1670110,0.581,0.614,0,0.790046,4.5,4.5 +10764,1,0.250037,3,0,0,1,1,,4,2,E I 94,,1576405,5.049,5.299,0,,0.8,7.5 +11255,1,0.319858,1,0,0,1,1,ROF,4,2,E I 94/Haggerty,RAMP,1576504,0,0.32,0,,2.24,5 +13655,1,0.313074,1,0,0,1,1,RON,4,2,S Haggerty/W I 94,RAMP,1588807,0,0.313,0,,1.09,4 +13761,1,0.370035,1,0,0,1,1,ROF,4,2,W I 94/Haggerty,RAMP,1588809,0,0.37,0,,2.24,5 +14322,1,0.205853,1,0,0,1,1,RON,4,2,N Haggerty/W I 94,RAMP,1588808,0,0.206,0,,1.09,4 +14382,-1,0.350302,0,3,0,1,1,,4,2,W I 94,,1588802,5.018,5.368,0,,0.8,7.5 +18179,0,0.465812,1,1,0,2,4,,4,2,Tyler,Rd,1675701,3.024,3.489,0,11.179491,4.5,4.5 +22601,0,0.471379,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,0.887,1.358,0,11.313086,4.5,4.5 +22640,0,0.771953,1,1,0,2,4,,4,2,Huron River,Dr,4705582,1.625,2.397,0,18.526876,4.5,4.5 +22959,0,0.065548,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.774,0.84,0,1.573164,4.5,4.5 +31366,0,0.718278,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.238665,0.15,4 +31363,0,0.025517,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.6124,0.15,4 +17713,0,0.613342,1,1,0,2,4,,4,2,Tyler,Rd,1675701,2.411,3.024,0,14.720208,4.5,4.5 +23673,0,0.466736,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,1.358,1.825,0,11.201676,4.5,4.5 +10744,1,0.279729,3,0,0,1,1,,4,2,E I 94,,1576405,5.299,5.579,0,,0.8,7.5 +11442,1,0.279246,1,0,0,1,1,RON,4,2,N Haggerty/E I 94,RAMP,1576507,0,0.279,0,,1.09,4 +14133,-1,0.309951,0,3,0,1,1,,4,2,W I 94,,1588802,5.368,5.678,0,,0.8,7.5 +23310,0,0.36827,1,1,0,2,4,,4,2,Huron River,Dr,4705582,2.583,2.951,0,8.838482,4.5,4.5 +23528,0,0.534864,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,0,0.535,0,12.836748,4.5,4.5 +23645,0,0.186109,1,1,0,2,4,,4,2,Huron River,Dr,4705582,2.397,2.583,0,4.466623,4.5,4.5 +23529,0,0.093919,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.535,0.629,0,2.254049,4.5,4.5 +10738,1,0.224989,1,0,0,1,1,RON,4,2,S Haggerty/E I 94,RAMP,1576505,0,0.225,0,,1.09,4 +23338,0,0.06695,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.629,0.696,0,1.606792,4.5,4.5 +23098,0,0.078765,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.696,0.774,0,1.890363,4.5,4.5 +31550,0,0.111451,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.674835,0.15,4 +22751,0,0.047113,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,0.84,0.887,0,1.130719,4.5,4.5 +16693,-1,0.682619,0,3,0,1,1,,4,2,S I 275,,1607610,11.904,12.587,0,,0.8,7.5 +16768,1,0.401274,1,0,0,1,1,ROF,4,2,S I 275/Ecorse,RAMP,1600505,0,0.401,0,,2.24,5 +16934,0,0.13267,2,2,1,2,4,,4,2,Ecorse,Rd,5495384,1.908,2.041,0,3.184085,4.5,4.5 +17925,0,0.524764,1,1,0,2,4,,4,2,Van Born,Rd,1670110,2.12,2.644,0,12.594333,4.5,4.5 +23099,0,0.686528,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,2.837,3.523,0,16.476678,4.5,4.5 +31253,0,0.535798,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.859149,0.15,4 +16938,0,0.581732,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,1.327,1.908,0,13.961576,4.5,4.5 +23266,0,0.435987,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,2.401,2.837,0,10.463685,4.5,4.5 +31245,0,0.507788,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.186901,0.15,4 +31601,0,0.535903,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.861661,0.15,4 +22893,0,0.386396,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,3.523,3.91,0,9.273504,4.5,4.5 +31251,0,0.551302,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.231237,0.15,4 +22752,0,0.316419,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,3.91,4.226,0,7.594046,4.5,4.5 +16496,1,0.700617,3,0,0,1,1,,4,2,N I 275,,1607208,11.821,12.521,0,,0.8,7.5 +16762,1,0.434444,1,0,0,1,1,ROF,4,2,N I 275/Ecorse,RAMP,1600510,0,0.434,0,,2.24,5 +16765,1,0.37755,1,0,0,1,1,RON,4,2,Ecorse/S I 275,RAMP,1600507,0,0.377,0,,1.09,4 +16763,1,0.360399,1,0,0,1,1,RON,4,2,Ecorse/N I 275,RAMP,1600508,0,0.36,0,,1.09,4 +16924,0,0.318604,2,2,1,2,4,,4,2,Ecorse,Rd,5495384,2.041,2.36,0,7.646488,4.5,4.5 +18295,0,0.354217,1,1,0,2,4,,4,2,Van Born,Rd,1670110,2.644,2.998,0,8.501206,4.5,4.5 +31552,0,0.659452,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.826859,0.15,4 +15216,0,0.497933,2,2,1,2,3,,4,2,Ford,Rd,1595510,3.988,4.485,0,11.950383,3.7,5 +15820,1,0.497714,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,4.496,4.994,0,11.945138,3.7,5 +16202,0,0.557723,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,3.923,4.48,0,13.385359,4.5,4.5 +16290,0,0.499399,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.01,1.509,0,11.985572,4.5,4.5 +16488,1,2.35956,3,0,0,1,1,,4,2,N I 275,,1607208,14.6,16.959,0,,0.8,7.5 +16577,-1,2.342989,0,3,0,1,1,,4,2,S I 275,,1607610,14.718,17.06,0,,0.8,7.5 +17824,0,0.532427,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,3.021,3.554,0,12.77825,5.8,4.5 +17943,0,0.534311,1,1,0,2,5,,4,2,Saltz,Rd,1680609,3.229,3.763,0,12.823458,5.8,4.5 +18410,0,0.516502,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.006,4.522,0,12.396037,5.8,4.5 +23081,-1,0.494964,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,4.471,4.966,0,11.879134,3.7,5 +23096,0,1.010546,1,1,0,2,7,,4,2,Lotz,Rd,4705519,1.026,2.036,0,24.253095,6.55,4.5 +23208,0,0.498958,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,1.963,2.462,0,11.975003,3.7,5 +23637,0,0.506356,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,6.416,6.923,0,12.152555,4.5,4.5 +24217,0,0.504858,1,1,0,2,5,,4,2,Lilley,Rd,4710390,1.623,2.128,0,12.116584,5.8,4.5 +31260,0,0.509381,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.225147,0.15,4 +31261,0,0.498909,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.973816,0.15,4 +31262,0,0.504563,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.10951,0.15,4 +31270,0,0.476605,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.438531,0.15,4 +31272,0,0.577524,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.860583,0.15,4 +31273,0,0.507854,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.188486,0.15,4 +31604,0,0.513408,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.321804,0.15,4 +31610,0,0.491043,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.785033,0.15,4 +31937,0,0.491911,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.805863,0.15,4 +33754,0,0.507472,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.179325,0.15,4 +33755,0,0.512816,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.307589,0.15,4 +15823,1,0.395345,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.593,3.989,0,9.488286,3.7,5 +16524,0,0.509184,1,1,0,2,4,,4,2,Palmer,Rd,1607406,0.501,1.01,0,12.220413,4.5,4.5 +17840,0,0.663419,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,1.883,2.547,0,15.922046,5.8,4.5 +21621,0,0.513074,1,1,0,2,4,,4,2,Geddes,Rd,4603888,3.513,4.026,0,12.313768,4.5,4.5 +22736,-1,0.524495,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,3.437,3.961,0,12.587883,3.7,5 +23632,0,0.490065,1,1,0,2,3,,4,2,Canton Center,Rd,4706530,0.973,1.462,0,11.76157,3.7,5 +31421,0,0.672837,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.148097,0.15,4 +31425,0,0.503544,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.08505,0.15,4 +31613,0,0.257194,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.172667,0.15,4 +33748,0,0.598314,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.359527,0.15,4 +15824,1,0.231495,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.362,3.593,0,5.555883,3.7,5 +22487,0,0.623173,1,1,0,2,3,,4,2,Canton Center,Rd,4706530,0.35,0.973,0,14.956156,3.7,5 +33747,0,0.308359,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.400605,0.15,4 +15825,1,0.113724,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.248,3.362,0,2.729384,3.7,5 +22839,0,0.22353,1,1,1,2,3,,4,2,Canton Center,Rd,4706530,0,0.224,0,5.36473,3.7,5 +23121,0,0.18645,1,1,0,2,5,,4,2,Old Canton Center,Rd,4706529,0,0.186,0,4.4748,5.8,4.5 +23005,-1,0.102219,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,3.335,3.437,0,2.453247,3.7,5 +22634,0,0.019535,1,1,1,2,3,,4,2,Belleville,Rd,4705580,4.495,4.514,0,0.468848,3.7,5 +22700,0,0.126158,1,1,1,2,3,,4,2,Canton Center,Rd,4706530,0.224,0.35,0,3.027784,3.7,5 +16530,0,0.277108,1,1,0,2,4,,4,2,Palmer,Rd,1607406,0,0.277,0,6.650584,4.5,4.5 +18222,0,0.474786,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,2.547,3.021,0,11.394859,5.8,4.5 +23366,0,0.501113,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,1.462,1.963,0,12.026722,3.7,5 +31603,0,0.248886,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.973253,0.15,4 +31616,0,0.503454,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.082902,0.15,4 +16298,0,0.224014,1,1,0,2,4,,4,2,Palmer,Rd,1607406,0.277,0.501,0,5.376347,4.5,4.5 +31265,0,0.248888,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.973309,0.15,4 +15821,1,0.188951,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,4.307,4.496,0,4.534825,3.7,5 +18235,0,0.557267,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,1.326,1.883,0,13.374408,5.8,4.5 +23413,-1,0.458105,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,4.013,4.471,0,10.994513,3.7,5 +31259,0,0.597617,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.342817,0.15,4 +31614,0,0.494787,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.874884,0.15,4 +33749,0,0.578707,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.888973,0.15,4 +15822,1,0.318701,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,3.989,4.307,0,7.648813,3.7,5 +17901,0,0.218768,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,1.068,1.287,0,5.250441,5.8,4.5 +21424,-1,0.051565,0,1,0,2,4,,4,2,Geddes,Rd,4603888,4.026,4.078,0,1.23756,4.5,4.5 +22292,-1,0.051724,0,2,0,2,3,DIV,4,2,Michigan,Ave,4705565,3.961,4.013,0,1.241388,3.7,5 +17894,0,0.0205,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,1.306,1.326,0,0.492007,5.8,4.5 +18279,0,0.019259,2,2,0,2,5,,4,2,Sheldon,Rd,1670201,1.287,1.306,0,0.462223,5.8,4.5 +31435,0,0.501337,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.032098,0.15,4 +14756,0,0.502591,2,2,1,2,3,,4,2,Ford,Rd,1595510,3.485,3.988,0,12.06219,3.7,5 +16460,0,0.441108,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,3.482,3.923,0,10.586592,4.5,4.5 +17815,0,0.186697,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,4.368,4.555,0,4.480731,5.8,4.5 +18232,0,0.504905,1,1,0,2,5,,4,2,Saltz,Rd,1680609,2.725,3.229,0,12.117717,5.8,4.5 +18874,0,0.507663,1,1,0,2,5,,4,2,Hanford,Rd,1676006,3.499,4.006,0,12.183919,5.8,4.5 +23552,0,0.236509,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.232,3.468,0,5.676224,3.7,5 +23973,0,0.263787,1,1,0,2,5,,4,2,Morton Taylor,Rd,4706622,0.237,0.501,0,6.33089,5.8,4.5 +31267,0,0.493901,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.853622,0.15,4 +31439,0,0.2508,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.019203,0.15,4 +31638,0,0.512709,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.305028,0.15,4 +31935,0,0.512059,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.289411,0.15,4 +33745,0,0.491232,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.789575,0.15,4 +16461,0,0.180087,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,2.983,3.163,0,4.322094,4.5,4.5 +17816,0,0.252383,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,3.8,4.052,0,6.057181,5.8,4.5 +18553,0,0.278086,1,1,0,2,5,,4,2,Saltz,Rd,1680609,2.225,2.503,0,6.674067,5.8,4.5 +22840,0,0.210801,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,2.757,2.967,0,5.059222,3.7,5 +31264,0,0.253167,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.075998,0.15,4 +31440,0,0.250552,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.013237,0.15,4 +31620,0,0.252044,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.049054,0.15,4 +22974,0,0.2946,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,2.462,2.757,0,7.070391,3.7,5 +22625,0,0.15313,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,2.967,3.12,0,3.675118,3.7,5 +22488,0,0.111059,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.12,3.232,0,2.665421,3.7,5 +16207,0,0.318523,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,3.163,3.482,0,7.64456,4.5,4.5 +31618,0,0.250084,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.00201,0.15,4 +31619,0,0.259616,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.230796,0.15,4 +18216,0,0.246699,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,3.554,3.8,0,5.920766,5.8,4.5 +18215,0,0.31565,1,1,0,2,5,,4,2,Sheldon,Rd,1670201,4.052,4.368,0,7.575598,5.8,4.5 +18454,0,0.221354,1,1,0,2,5,,4,2,Saltz,Rd,1680609,2.503,2.725,0,5.312503,5.8,4.5 +31615,0,0.256733,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.161593,0.15,4 +31617,0,0.252428,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.05827,0.15,4 +15218,0,0.236452,2,2,1,2,3,,4,2,Ford,Rd,1595510,2.986,3.222,0,5.674841,3.7,5 +17810,0,0.220192,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,4.834,5.054,0,5.284604,4.5,4.5 +17903,0,0.34397,1,1,0,2,5,,4,2,Hanford,Rd,1676006,2.997,3.341,0,8.25529,5.8,4.5 +23122,0,0.28015,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.693,3.973,0,6.723603,3.7,5 +31444,0,0.248017,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.952399,0.15,4 +31475,0,0.263232,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.317556,0.15,4 +31621,0,0.238876,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.733023,0.15,4 +23367,0,0.225099,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.468,3.693,0,5.402372,3.7,5 +22975,0,0.290711,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,3.973,4.264,0,6.977072,3.7,5 +15009,0,0.263198,2,2,1,2,3,,4,2,Ford,Rd,1595510,3.222,3.485,0,6.316762,3.7,5 +18211,0,0.279796,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,4.555,4.834,0,6.715094,4.5,4.5 +31622,0,0.259783,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.234795,0.15,4 +31623,0,0.285076,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.841829,0.15,4 +17471,0,0.158017,1,1,0,2,5,,4,2,Hanford,Rd,1676006,3.341,3.499,0,3.7924,5.8,4.5 +18194,0,0.300856,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.054,5.355,0,7.220549,4.5,4.5 +31473,0,0.239089,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.738127,0.15,4 +31602,0,0.239087,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.738077,0.15,4 +31608,0,0.027056,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.649356,0.15,4 +31936,0,0.269729,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.473488,0.15,4 +23305,0,0.237392,1,1,0,2,5,,4,2,Morton Taylor,Rd,4706622,0,0.237,0,5.697399,5.8,4.5 +23971,0,0.219578,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,0.743,0.963,0,5.269878,4.5,4.5 +23972,0,0.242439,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,0.501,0.743,0,5.818534,4.5,4.5 +31611,0,0.010304,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.247305,0.15,4 +23970,0,0.257981,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,0.963,1.221,0,6.191548,4.5,4.5 +31483,0,0.029097,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.698326,0.15,4 +15814,1,0.091809,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.629,5.721,0,2.203406,3.7,5 +15873,1,0.252311,1,0,0,1,1,RON,4,2,W US 12/S I 275,RAMP,1599201,0,0.252,0,,1.09,4 +15874,1,0.066525,1,0,0,2,3,RSF,4,2,S I 275/US 12,RAMP,1599110,0.386,0.453,0,1.596601,3.7,5 +15875,1,0.386456,1,0,0,1,1,ROF,4,2,S I 275/US 12,RAMP,1599110,0,0.386,0,,2.24,5 +16520,0,0.510572,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.993,2.503,0,12.253717,4.5,4.5 +16801,1,0.263975,1,0,0,1,1,RON,4,2,E US 12/S I 275,RAMP,1600304,0,0.264,0,,1.09,4 +22777,0,0.679474,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,5.231,5.91,0,16.307386,4.5,4.5 +23440,0,1.026343,1,1,0,2,7,,4,2,Lotz,Rd,4705519,0,1.026,0,24.63222,6.55,4.5 +23624,-1,0.078938,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.629,5.708,0,1.894511,3.7,5 +24222,0,0.651431,1,1,0,2,5,,4,2,Lilley,Rd,4710390,0.47,1.121,0,15.634352,5.8,4.5 +31577,0,0.402043,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.649034,0.15,4 +31578,0,0.492286,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.814875,0.15,4 +33751,0,0.543349,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.040377,0.15,4 +15815,1,0.128088,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.501,5.629,0,3.0741,3.7,5 +15818,1,0.173304,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.134,5.307,0,4.159303,3.7,5 +22904,-1,0.19486,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.28,5.475,0,4.676639,3.7,5 +23193,-1,0.170114,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.11,5.28,0,4.082743,3.7,5 +23674,0,0.022859,2,2,0,2,4,,4,2,Haggerty,Rd,4706524,4.88,4.903,0,0.548613,4.5,4.5 +24223,0,0.469936,1,1,0,2,5,,4,2,Lilley,Rd,4710390,0,0.47,0,11.278458,5.8,4.5 +31258,0,0.537654,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.903691,0.15,4 +31624,0,0.518817,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.451597,0.15,4 +33750,0,0.352291,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.454993,0.15,4 +15819,1,0.14013,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,4.994,5.134,0,3.363112,3.7,5 +23544,-1,0.144103,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,4.966,5.11,0,3.458482,3.7,5 +31567,0,0.429809,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.315422,0.15,4 +31596,0,0.448737,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.769696,0.15,4 +15816,1,0.19428,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.307,5.501,0,4.662729,3.7,5 +23046,0,0.327821,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,4.903,5.231,0,7.867712,4.5,4.5 +31625,0,0.204947,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.918727,0.15,4 +22615,-1,0.15432,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.475,5.629,0,3.703673,3.7,5 +16523,0,0.321556,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.509,1.831,0,7.717333,4.5,4.5 +22492,0,0.506649,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,5.91,6.416,0,12.159582,4.5,4.5 +24221,0,0.502433,1,1,0,2,5,,4,2,Lilley,Rd,4710390,1.121,1.623,0,12.058402,5.8,4.5 +31271,0,0.242888,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.829302,0.15,4 +33753,0,0.51714,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.411354,0.15,4 +33752,0,0.247821,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.947711,0.15,4 +16289,0,0.162154,1,1,0,2,4,,4,2,Palmer,Rd,1607406,1.831,1.993,0,3.891688,4.5,4.5 +31508,0,0.129322,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.103739,0.15,4 +15811,1,0.224198,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.924,6.148,0,5.38074,3.7,5 +16636,-1,0.306523,0,3,0,1,1,,4,2,S I 275,,1607610,14.128,14.434,0,,0.8,7.5 +16757,1,0.343672,3,0,0,1,1,,4,2,N I 275,,1607208,14.257,14.6,0,,0.8,7.5 +16788,1,0.400543,1,0,0,1,1,ROF,4,2,N I 275/US 12,RAMP,1600306,0,0.4,0,,2.24,5 +16791,1,0.201086,1,0,0,1,1,RON,4,2,E US 12/N I 275,RAMP,1600305,0,0.201,0,,1.09,4 +22602,-1,0.093589,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.992,6.086,0,2.246124,3.7,5 +31563,0,0.518774,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.450584,0.15,4 +31564,0,0.499281,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.98274,0.15,4 +16489,1,0.284452,3,0,0,1,1,,4,2,N I 275,,1607208,13.972,14.257,0,,0.8,7.5 +15812,1,0.050642,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.874,5.924,0,1.215398,3.7,5 +15872,1,0.310103,1,0,0,1,1,RON,4,2,W US 12/N I 275,RAMP,1599202,0,0.31,0,,1.09,4 +16386,-1,0.283361,0,3,0,1,1,,4,2,S I 275,,1607610,14.434,14.718,0,,0.8,7.5 +23282,-1,0.164914,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.708,5.873,0,3.957935,3.7,5 +15813,1,0.152768,4,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,5.721,5.874,0,3.666441,3.7,5 +22894,-1,0.073592,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.919,5.992,0,1.766212,3.7,5 +22967,-1,0.046127,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,5.873,5.919,0,1.107055,3.7,5 +16787,1,0.0355,1,0,0,2,3,RSF,4,2,N I 275/US 12,RAMP,1600306,0.4,0.436,0,0.851992,3.7,5 +31580,0,0.48722,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.693272,0.15,4 +23609,-1,0.043628,0,4,0,2,3,DIV,4,2,Michigan,Ave,4705565,6.086,6.129,0,1.047064,3.7,5 +16507,0,0.329581,1,1,0,2,4,,4,2,Palmer,Rd,1607406,2.587,2.917,0,7.909941,4.5,4.5 +31631,0,0.57189,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.725361,0.15,4 +16284,0,0.084005,1,1,0,2,4,,4,2,Palmer,Rd,1607406,2.503,2.587,0,2.016126,4.5,4.5 +18243,0,0.491693,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.972,9.463,0,11.800637,6,4.5 +16268,0,0.099754,1,1,0,2,4,,4,2,Palmer,Rd,1607406,2.917,3.016,0,2.394092,4.5,4.5 +14799,1,0.318311,1,0,0,1,1,RON,4,2,E M 153/S I 275,RAMP,1595705,0,0.318,0,,1.09,4 +14842,1,0.411949,1,0,0,1,1,ROF,4,2,N I 275/M 153,RAMP,1595801,0,0.412,0,,2.24,5 +15138,0,0.11575,3,3,1,2,3,,4,2,Ford,Rd,1595510,5.209,5.324,0,2.777991,3.7,5 +15325,1,0.246771,1,0,0,1,1,RON,4,2,W M 153/S I 275,RAMP,1595707,0,0.247,0,,1.09,4 +15625,1,0.377239,2,0,0,1,1,ROF,4,2,S I 275/M 153,RAMP,1595706,0,0.377,0,,2.24,5 +16187,0,0.372751,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,5.118,5.49,0,8.946026,4.5,4.5 +16350,-1,0.340698,0,3,0,1,1,,4,2,S I 275,,1607610,17.06,17.4,0,,0.8,7.5 +16756,1,0.302101,3,0,0,1,1,,4,2,N I 275,,1607208,16.959,17.261,0,,0.8,7.5 +23212,0,0.527424,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,7.398,7.925,0,12.65818,4.5,4.5 +24064,0,0.611749,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.267,5.878,0,14.681979,4.5,4.5 +24207,0,0.220449,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.908,3.128,0,5.290772,5.8,4.5 +31606,0,0.506221,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.149294,0.15,4 +31628,0,0.504903,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.117665,0.15,4 +16457,0,0.319303,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,4.48,4.799,0,7.663283,4.5,4.5 +23371,0,0.475701,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,6.923,7.398,0,11.416823,4.5,4.5 +24212,0,0.284554,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.313,2.597,0,6.829291,5.8,4.5 +31627,0,0.248202,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.956851,0.15,4 +31632,0,0.501516,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.036385,0.15,4 +33746,0,0.505669,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.136057,0.15,4 +24216,0,0.185073,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.128,2.313,0,4.441754,5.8,4.5 +24211,0,0.143651,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.597,2.741,0,3.447612,5.8,4.5 +31605,0,0.250579,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.013898,0.15,4 +24210,0,0.166854,1,1,0,2,5,,4,2,Lilley,Rd,4710390,2.741,2.908,0,4.004507,5.8,4.5 +16443,0,0.141919,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,4.976,5.118,0,3.406055,4.5,4.5 +16195,0,0.176608,1,1,1,2,4,,4,2,Cherry Hill,Rd,1607409,4.799,4.976,0,4.238597,4.5,4.5 +31607,0,0.142119,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.410855,0.15,4 +14753,0,0.177561,2,3,1,2,3,,4,2,Ford,Rd,1595510,4.802,4.98,0,4.261474,3.7,5 +18984,0,0.187218,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.896,5.083,0,4.493243,5.8,4.5 +22844,0,0.18417,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,8.145,8.33,0,4.420078,4.5,4.5 +24199,0,0.276584,1,1,1,2,4,,4,2,Lilley,Rd,4710390,3.384,3.66,0,6.638017,4.5,4.5 +31612,0,0.350702,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.416838,0.15,4 +31634,0,0.182768,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.386441,0.15,4 +31635,0,0.283202,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.796848,0.15,4 +33962,0,0.40639,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.753352,0.15,4 +15006,0,0.317345,2,3,1,2,3,,4,2,Ford,Rd,1595510,4.485,4.802,0,7.616273,3.7,5 +24201,0,0.255792,1,1,1,2,4,,4,2,Lilley,Rd,4710390,3.128,3.384,0,6.139016,4.5,4.5 +17994,0,0.306445,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.522,4.829,0,7.354677,5.8,4.5 +24198,0,0.262869,1,1,0,2,4,,4,2,Lilley,Rd,4710390,3.66,3.923,0,6.308855,4.5,4.5 +31487,0,0.229174,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.500169,0.15,4 +31609,0,0.31448,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.547531,0.15,4 +17574,0,0.067425,1,1,0,2,5,,4,2,Hanford,Rd,1676006,4.829,4.896,0,1.618202,5.8,4.5 +15671,0,0.156865,3,3,1,2,3,,4,2,Ford,Rd,1595510,4.98,5.137,0,3.764766,3.7,5 +22979,0,0.220186,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,7.925,8.145,0,5.284455,4.5,4.5 +31636,0,0.100207,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.404961,0.15,4 +15386,0,0.071804,3,2,1,2,3,,4,2,Ford,Rd,1595510,5.137,5.209,0,1.723303,3.7,5 +22629,0,0.352827,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,8.33,8.682,0,8.467845,4.5,4.5 +24066,0,0.202655,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.016,5.219,0,4.863709,4.5,4.5 +24065,0,0.04785,1,1,0,2,4,,4,2,Warren,Rd,4710470,5.219,5.267,0,1.148406,4.5,4.5 +16181,0,0.276607,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,5.601,5.877,0,6.638567,4.5,4.5 +31630,0,0.503803,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.09128,0.15,4 +16434,0,0.110469,1,1,0,2,4,,4,2,Cherry Hill,Rd,1607409,5.49,5.601,0,2.651253,4.5,4.5 +15003,0,0.177787,2,2,1,2,3,,4,2,Ford,Rd,1595510,5.517,5.694,0,4.266878,3.7,5 +31637,0,0.277292,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.655001,0.15,4 +31639,0,0.291905,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.005713,0.15,4 +14906,1,0.405448,1,0,0,1,1,RON,4,2,W M 153/N I 275,RAMP,1595802,0,0.405,0,,1.09,4 +15213,0,0.115313,2,3,1,2,3,,4,2,Ford,Rd,1595510,5.401,5.517,0,2.767517,3.7,5 +16455,-1,0.283909,0,3,0,1,1,,4,2,S I 275,,1607610,17.4,17.684,0,,0.8,7.5 +16487,1,0.342544,3,0,0,1,1,,4,2,N I 275,,1607208,17.261,17.603,0,,0.8,7.5 +15091,1,0.236454,1,0,0,1,1,RON,4,2,E M 153/N I 275,RAMP,1595710,0,0.236,0,,1.09,4 +15475,0,0.077043,2,3,1,2,3,,4,2,Ford,Rd,1595510,5.324,5.401,0,1.849032,3.7,5 +10860,1,0.704792,3,0,0,1,1,,4,2,E I 94,,1576405,7.155,7.86,0,,0.8,7.5 +13780,-1,0.830284,0,3,0,1,1,,4,2,W I 94,,1588802,7.291,8.121,0,,0.8,7.5 +16911,0,0.595456,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,4.031,4.626,0,14.290937,4.5,4.5 +17504,0,0.51781,1,1,0,2,4,,4,2,Wick,Rd,1682705,1.989,2.507,0,12.427437,4.5,4.5 +18049,0,0.705681,1,1,0,2,4,,3,2,Van Born,Rd,1670203,1.223,1.928,0,16.936352,6,4.5 +18208,0,0.368573,1,1,0,2,4,,4,2,Wick,Rd,1682705,0.997,1.366,0,8.845754,4.5,4.5 +18209,0,0.677895,1,1,0,2,5,,4,2,Tobine,Rd,1682802,0,0.678,0,16.269477,5.8,4.5 +18500,0,0.31078,1,1,0,2,5,,4,2,Cogswell,Rd,1665704,0.226,0.536,0,7.458724,5.8,4.5 +18803,0,0.910716,1,1,0,2,4,,4,2,Hannan,Rd,1710309,5.428,6.339,0,21.857178,4.5,4.5 +19226,0,0.597901,1,1,0,2,4,,4,2,Northline,Rd,1811006,7.764,8.362,0,14.349624,4.5,4.5 +23307,-1,0.148201,0,2,0,2,4,DIV,4,2,Vining,Rd,4706252,0.109,0.257,0,3.556821,4.5,4.5 +23629,0,0.619514,1,1,0,2,5,,4,2,Grant,Rd,4705582,4.469,5.089,0,14.868329,5.8,4.5 +24189,1,0.262122,2,0,0,2,4,DIV,4,2,Vining,Rd,4711341,1.514,1.776,0,6.290919,4.5,4.5 +24411,0,0.58883,1,1,1,2,3,,4,2,Wayne,Rd,4719470,3.266,3.854,0,14.131931,3.7,5 +24446,0,0.100669,1,1,1,2,4,,4,2,Goddard,Rd,4710500,0.238,0.339,0,2.416056,4.5,4.5 +31647,0,1.015986,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.383669,0.15,4 +31649,0,0.460418,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.050034,0.15,4 +31652,0,0.400878,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.621084,0.15,4 +31656,0,0.616671,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.800105,0.15,4 +10729,1,0.355849,3,0,0,1,1,,4,2,E I 94,,1576405,6.799,7.155,0,,0.8,7.5 +10956,1,0.383112,3,0,0,1,1,,4,2,E I 94,,1576405,6.417,6.799,0,,0.8,7.5 +11074,1,0.581948,1,0,0,1,1,RFF,4,2,S I 275/E I 94,RAMP,1576605,0,0.582,0,,0.8,7.5 +12165,-1,0.080097,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0,0.08,0,,0.8,7.5 +13299,1,0.42701,2,0,0,1,1,RFF,4,2,N I 275/E I 94,RAMP,1578402,0,0.427,0,,0.8,7.5 +13383,-1,0.307137,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.463,0.77,0,,0.8,7.5 +13970,1,0.53245,1,0,0,1,1,RFF,4,2,W I 94/N I 275,RAMP,1589401,0,0.532,0,,0.8,7.5 +14075,-1,0.928778,0,3,0,1,1,,4,2,W I 94,,1588802,6.363,7.291,0,,0.8,7.5 +14182,1,0.249996,1,0,0,1,1,RFS,4,2,N I 275/W I 94,RAMP,1589310,0,0.25,0,,0.22,6 +16442,-1,0.354135,0,3,0,1,1,,4,2,S I 275,,1607610,9.254,9.608,0,,0.8,7.5 +16497,1,1.125024,3,0,0,1,1,,4,2,N I 275,,1607208,8.89,10.015,0,,0.8,7.5 +17629,1,0.132795,3,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.588,0.721,0,,0.8,7.5 +17850,0,0.200584,1,1,0,2,4,,4,2,Hannan,Rd,1710309,4.309,4.51,0,4.814016,4.5,4.5 +17851,1,0.360611,3,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.228,0.588,0,,0.8,7.5 +18061,0,0.503197,1,1,0,2,5,,4,2,Wabash,Rd,1665908,0.492,0.995,0,12.07674,5.8,4.5 +18651,0,0.498183,1,1,0,2,4,,4,2,Wick,Rd,1682705,0,0.498,0,11.956393,4.5,4.5 +18652,0,0.822266,1,1,0,2,4,,4,2,Ozga,Rd,1673810,8.566,9.388,0,19.734378,4.5,4.5 +18908,0,0.504545,1,1,0,2,5,,4,2,Tyler,Rd,1682704,0.497,1.002,0,12.109084,5.8,4.5 +19227,0,0.571418,1,1,0,2,4,,4,2,Northline,Rd,1811006,7.193,7.764,0,13.714026,4.5,4.5 +22913,0,0.384842,1,1,0,2,4,,4,2,Huron River,Dr,4705582,4.001,4.386,0,9.23622,4.5,4.5 +23527,0,0.468866,1,1,1,2,4,,4,2,Goddard,Rd,4706477,0,0.469,0,11.252787,4.5,4.5 +24289,1,0.275064,1,0,0,1,1,RFS,4,2,E I 94/N I 275,RAMP,4710287,0,0.275,0,,0.22,6 +31644,0,0.646237,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.50969,0.15,4 +31645,0,0.810163,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.443915,0.15,4 +18469,0,0.491838,1,1,0,2,5,,4,2,Wabash,Rd,1665908,0,0.492,0,11.804102,5.8,4.5 +18802,0,0.495167,1,1,0,2,5,,4,2,Hannan,Rd,1710309,3.491,3.986,0,11.884018,5.8,4.5 +19229,1,0.567589,2,0,0,2,4,DV2,4,2,Northline,Rd,1811006,6.588,7.156,0,13.622126,4.5,4.5 +23205,0,0.524242,1,1,0,2,4,,4,2,Huron River,Dr,4705582,3.477,4.001,0,12.581819,4.5,4.5 +24534,-1,0.573651,0,2,0,2,4,DV2,4,2,Northline,Rd,4708332,0.143,0.716,0,13.767633,4.5,4.5 +18347,0,0.312619,1,1,0,2,4,,4,2,Hannan,Rd,1710309,3.986,4.298,0,7.502854,4.5,4.5 +19230,1,0.143088,2,0,0,2,5,DV2,4,2,South Service,Rd,1811006,6.445,6.588,0,3.4341,5.8,4.5 +24535,-1,0.142736,0,2,0,2,5,DV2,4,2,South Service,Rd,4708332,0,0.143,0,3.425657,5.8,4.5 +18054,0,0.011185,1,1,0,2,4,,4,2,Hannan,Rd,1710309,4.298,4.309,0,0.268449,4.5,4.5 +11252,1,0.476623,1,0,0,1,1,RFF,4,2,E I 94/S I 275,RAMP,1576509,0,0.477,0,,0.8,7.5 +19228,0,0.037474,2,2,0,2,4,,4,2,Northline,Rd,1811006,7.156,7.193,0,0.899367,4.5,4.5 +13364,1,0.44942,2,0,0,1,1,RFF,4,2,S I 275/W I 94,RAMP,1578309,0,0.449,0,,0.8,7.5 +16694,-1,0.560615,0,3,0,1,1,,4,2,S I 275,,1607610,9.608,10.168,0,,0.8,7.5 +17536,0,0.883489,1,1,0,2,4,,4,2,Hannan,Rd,1710309,4.51,5.393,0,21.203732,4.5,4.5 +19007,0,0.497499,1,1,0,2,4,,4,2,Tyler,Rd,1682704,0,0.497,0,11.939986,4.5,4.5 +19135,0,0.035278,1,1,0,2,4,,4,2,Hannan,Rd,1710309,5.393,5.428,0,0.846669,4.5,4.5 +13384,-1,0.229184,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.08,0.309,0,,0.8,7.5 +14441,1,0.267169,1,0,0,1,1,RFS,4,2,W I 94/S I 275,RAMP,1589308,0,0.267,0,,0.22,6 +18938,1,0.148505,1,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.976,1.125,0,,0.8,7.5 +19136,1,0.255354,3,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0.721,0.976,0,,0.8,7.5 +12967,1,0.210806,2,0,0,1,1,RFF,4,2,S I 275/W I 94,RAMP,1578309,0.449,0.66,0,,0.8,7.5 +12164,-1,0.153971,0,2,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.309,0.463,0,,0.8,7.5 +18101,0,0.225797,1,1,0,2,4,,4,2,Cogswell,Rd,1665704,0,0.226,0,5.419139,4.5,4.5 +18214,0,0.196055,1,1,0,2,4,,4,2,Huron River,Dr,1673810,8.244,8.44,0,4.705327,4.5,4.5 +18656,0,0.182397,1,1,0,2,4,,4,2,Huron River,Dr,1673810,8.062,8.244,0,4.377538,4.5,4.5 +17953,1,0.227906,1,0,0,1,1,FCD,4,2,N I 275 CD,,1710510,0,0.228,0,,0.8,7.5 +17814,0,0.125267,1,1,0,2,4,,4,2,Huron River,Dr,1673810,8.44,8.566,0,3.006412,4.5,4.5 +22622,0,0.08394,1,1,0,2,4,,4,2,Huron River,Dr,4705582,4.386,4.469,0,2.01456,4.5,4.5 +10946,0,0.566484,1,1,0,2,5,,4,2,Shook,Ave,1576606,0.611,1.177,0,13.595605,5.8,4.5 +12090,-1,0.157791,0,1,0,1,1,FCD,4,2,W I 94 CD,,1578310,0.77,0.928,0,,0.8,7.5 +18210,0,0.430275,1,1,0,2,4,,4,2,Ozga,Rd,1673810,9.388,9.818,0,10.326594,4.5,4.5 +18539,0,0.499308,1,1,0,2,4,,4,2,Wick,Rd,1682705,0.498,0.997,0,11.983397,4.5,4.5 +30534,0,0.562728,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.50548,0.15,4 +12066,1,0.192186,2,0,0,1,1,RFF,4,2,N I 275/E I 94,RAMP,1578402,0.427,0.619,0,,0.8,7.5 +31643,0,0.05985,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.436397,0.15,4 +17809,0,0.248717,1,1,0,2,4,,4,2,Ozga,Rd,1673810,9.818,10.066,0,5.969206,4.5,4.5 +11116,0,0.507474,1,1,0,2,5,,4,2,Shook,Ave,1576606,0.103,0.611,0,12.179376,5.8,4.5 +24448,0,0.23835,1,1,1,2,4,,4,2,Goddard,Rd,4710500,0,0.238,0,5.720396,4.5,4.5 +16912,0,0.561804,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,3.469,4.031,0,13.483305,4.5,4.5 +17644,0,0.700084,1,1,0,2,4,,3,2,Van Born,Rd,1670203,0.523,1.223,0,16.802025,6,4.5 +18091,0,0.387805,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.206,1.594,0,9.307323,5.8,4.5 +18568,0,0.256118,1,1,0,2,4,,4,2,Hannan,Rd,1710309,6.339,6.595,0,6.146827,4.5,4.5 +31551,0,0.610753,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.658065,0.15,4 +31553,0,0.959864,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.036748,0.15,4 +31648,0,0.524633,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.591202,0.15,4 +16913,0,0.514691,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,2.955,3.469,0,12.35259,4.5,4.5 +18499,0,0.431555,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,0.775,1.206,0,10.357329,5.8,4.5 +18092,0,0.238613,1,1,0,2,5,,4,2,Cogswell,Rd,1665704,0.536,0.775,0,5.726718,5.8,4.5 +18069,0,0.39689,1,1,0,2,4,,3,2,Van Born,Rd,1670203,0.126,0.523,0,9.525348,6,4.5 +18242,0,0.850728,1,1,0,2,4,,4,2,Hannan,Rd,1710309,6.595,7.445,0,20.417461,4.5,4.5 +18480,0,0.286295,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.914,2.201,0,6.871085,5.8,4.5 +17663,0,0.126031,1,1,0,2,4,,3,2,Van Born,Rd,1670203,0,0.126,0,3.024755,6,4.5 +40350,-1,0.020587,0,2,0,2,5,,4,3,Pontiac,Rd,4463352,0,0.021,0,0.494091,5.8,4.5 +18055,0,0.035022,1,1,0,2,4,,3,2,Hannan,Rd,1710309,7.445,7.48,0,0.840531,6,4.5 +18483,0,0.113204,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.594,1.707,0,2.716906,5.8,4.5 +18081,0,0.207385,1,1,1,2,5,,4,2,Cogswell,Rd,1665704,1.707,1.914,0,4.977244,5.8,4.5 +31653,0,0.20425,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.902009,0.15,4 +31654,0,0.009543,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.229027,0.15,4 +31646,0,0.540158,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.963787,0.15,4 +31549,0,0.572561,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.741456,0.15,4 +31562,0,0.465698,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.176747,0.15,4 +11444,1,0.369578,3,0,0,1,1,,4,2,E I 94,,1576405,8.31,8.68,0,,0.8,7.5 +14044,-1,0.449387,0,3,0,1,1,,4,2,W I 94,,1588802,8.57,9.02,0,,0.8,7.5 +17691,0,0.473286,1,1,0,2,4,,4,2,Wick,Rd,1682705,1.516,1.989,0,11.358869,4.5,4.5 +18026,0,0.522618,1,1,0,2,4,,4,2,Goddard,Rd,1683004,0.452,0.975,0,12.542838,4.5,4.5 +24085,0,0.271681,1,1,0,2,4,,4,2,Vining,Rd,4711341,0.338,0.61,0,6.520341,4.5,4.5 +24404,0,0.28715,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.978,2.265,0,6.891596,3.7,5 +24539,0,0.338104,1,1,0,2,4,,4,2,Vining,Rd,4711341,0,0.338,0,8.114504,4.5,4.5 +19224,0,0.216822,1,1,0,2,4,,4,2,Northline,Rd,1811006,8.566,8.783,0,5.203718,4.5,4.5 +23293,0,0.547818,1,1,0,2,5,,4,2,Grant,Rd,4705582,5.089,5.636,0,13.147639,5.8,4.5 +24520,0,0.29893,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.336,1.635,0,7.174322,3.7,5 +31641,0,0.537602,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.902437,0.15,4 +31642,0,0.461846,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.0843,0.15,4 +19225,0,0.204086,1,1,0,2,4,,4,2,Northline,Rd,1811006,8.362,8.566,0,4.898073,4.5,4.5 +31640,0,0.05743,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.37832,0.15,4 +23990,0,0.224974,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.111,1.336,0,5.399372,3.7,5 +24500,0,0.13997,2,2,0,2,3,,4,2,Wayne,Rd,4719470,1.838,1.978,0,3.359287,3.7,5 +24536,0,0.112933,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.725,1.838,0,2.710402,3.7,5 +24501,0,0.089863,1,1,0,2,3,,4,2,Wayne,Rd,4719470,1.635,1.725,0,2.156713,3.7,5 +10708,1,0.321369,1,0,0,1,1,ROF,4,2,E I 94/Wayne,RAMP,1576607,0,0.321,0,,2.24,5 +10963,1,0.180189,3,0,0,1,1,,4,2,E I 94,,1576405,8.13,8.31,0,,0.8,7.5 +11416,1,0.206812,1,0,0,1,1,RON,4,2,S Wayne/E I 94,RAMP,1576608,0,0.207,0,,1.09,4 +13758,1,0.369541,1,0,0,1,1,ROF,4,2,W I 94/Wayne,RAMP,1588902,0,0.369,0,,2.24,5 +13945,1,0.230779,1,0,0,1,1,RON,4,2,N Wayne/W I 94,RAMP,1588901,0,0.231,0,,1.09,4 +14276,-1,0.320565,0,3,0,1,1,,4,2,W I 94,,1588802,8.25,8.57,0,,0.8,7.5 +14436,1,0.132237,1,0,0,1,1,RON,4,2,S Wayne/W I 94,RAMP,1588810,0,0.132,0,,1.09,4 +14447,-1,0.128844,0,3,0,1,1,,4,2,W I 94,,1588802,8.121,8.25,0,,0.8,7.5 +18025,0,0.150378,1,1,0,2,4,,4,2,Wick,Rd,1682705,1.366,1.516,0,3.609081,4.5,4.5 +18121,0,0.452163,1,1,1,2,4,,4,2,Goddard,Rd,1683004,0,0.452,0,10.851904,4.5,4.5 +24047,0,0.033144,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.721,2.754,0,0.795459,3.7,5 +10781,1,0.270684,3,0,0,1,1,,4,2,E I 94,,1576405,7.86,8.13,0,,0.8,7.5 +18671,0,0.071882,1,1,1,2,4,,4,2,Goddard,Rd,1680601,0.437,0.508,0,1.725174,4.5,4.5 +24468,0,0.231089,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.265,2.496,0,5.546145,3.7,5 +23380,1,0.184047,1,0,0,1,1,RON,4,2,N Wayne/E I 94,RAMP,4705434,0,0.184,0,,1.09,4 +24057,0,0.100352,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.577,2.677,0,2.408438,3.7,5 +24382,0,0.081001,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.496,2.577,0,1.944035,3.7,5 +24255,0,0.044254,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.677,2.721,0,1.062095,3.7,5 +24202,0,0.511493,2,2,0,2,3,,4,2,Wayne,Rd,4719470,2.754,3.266,0,12.275827,3.7,5 +31655,0,0.367635,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.823242,0.15,4 +11198,1,0.690979,3,0,0,1,1,,4,2,E I 94,,1576405,8.68,9.371,0,,0.8,7.5 +14131,-1,0.405495,0,3,0,1,1,,4,2,W I 94,,1588802,9.02,9.425,0,,0.8,7.5 +37939,1,0.213265,1,0,0,1,1,ROF,4,2,W I 94/Vining,RAMP,4718583,0,0.213,0,,2.24,5 +22713,1,0.528928,1,0,0,1,1,RON,4,2,S Vining/E I 94,RAMP,4706256,0,0.529,0,,1.09,4 +24197,0,0.064705,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.169,1.233,0,1.552916,4.5,4.5 +24208,0,0.152327,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.016,1.169,0,3.655849,4.5,4.5 +30527,0,0.605616,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.534791,0.15,4 +30529,0,0.54743,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.138328,0.15,4 +24497,0,0.230142,1,1,0,2,4,,4,2,Vining,Rd,4711341,0.61,0.84,0,5.523413,4.5,4.5 +24318,0,0.176765,1,1,0,2,4,,4,2,Vining,Rd,4711341,0.84,1.016,0,4.242353,4.5,4.5 +22560,1,0.338029,1,0,0,1,1,ROF,4,2,E I 94/Vining,RAMP,4706257,0,0.338,0,,2.24,5 +37940,1,0.332448,1,0,0,1,1,RON,4,2,Vining/W I 94,RAMP,4718582,0,0.332,0,,1.09,4 +22712,1,0.241002,1,0,0,1,1,RON,4,2,N Vining/E I 94,RAMP,4706255,0,0.241,0,,1.09,4 +24074,0,0.220599,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.283,1.503,0,5.294368,4.5,4.5 +24084,0,0.049573,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.233,1.283,0,1.189761,4.5,4.5 +23306,-1,0.108645,0,2,0,2,4,DIV,4,2,Vining,Rd,4706252,0,0.109,0,2.60748,4.5,4.5 +24487,0,0.010855,1,1,0,2,4,,4,2,Vining,Rd,4711341,1.503,1.514,0,0.260516,4.5,4.5 +22714,1,0.105639,1,0,0,1,1,RON,4,2,Vining/E I 94,RAMP,4706256,0.529,0.634,0,,1.09,4 +16909,0,0.99094,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,4.936,5.926,0,23.782561,4.5,4.5 +18008,0,0.380636,2,2,0,2,4,,3,2,Van Born,Rd,1670203,2.407,2.788,0,9.135276,6,4.5 +18073,0,0.283313,1,1,0,2,5,,4,2,Waynecorse,Blvd,1665707,0,0.283,0,6.799514,5.8,4.5 +18310,0,0.775744,1,1,0,2,5,,4,2,Beverly,Rd,1664409,0.303,1.078,0,18.617848,5.8,4.5 +24334,0,0.278736,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.272,4.551,0,6.689662,3.7,5 +30603,0,0.9967,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.920794,0.15,4 +30607,0,0.504126,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.099016,0.15,4 +24482,0,0.417727,1,1,1,2,3,,4,2,Wayne,Rd,4719470,3.854,4.272,0,10.025444,3.7,5 +16910,0,0.309574,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,4.626,4.936,0,7.429788,4.5,4.5 +17626,0,0.479139,2,2,0,2,4,,3,2,Van Born,Rd,1670203,1.928,2.407,0,11.499329,6,4.5 +24263,0,0.515995,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.806,5.321,0,12.383883,3.7,5 +24352,0,0.06233,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.743,4.806,0,1.495917,3.7,5 +24407,0,0.192708,1,1,1,2,3,,4,2,Wayne,Rd,4719470,4.551,4.743,0,4.624986,3.7,5 +30539,0,0.500134,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.003207,0.15,4 +23054,-1,0.497679,0,2,0,2,5,DIV,4,2,Vining,Rd,4706252,0.257,0.754,0,11.944291,5.8,4.5 +24075,1,0.487923,2,0,0,2,5,DIV,4,2,Vining,Rd,4711341,1.776,2.264,0,11.710158,5.8,4.5 +19008,0,0.018323,1,1,0,2,4,,4,2,Wick,Rd,1682705,2.507,2.525,0,0.439755,4.5,4.5 +23644,1,0.019278,2,0,0,2,5,DIV,4,2,Smith,Rd,4706176,0,0.019,0,0.462664,5.8,4.5 +24070,1,0.015532,2,0,0,2,5,DIV,4,2,Vining,Rd,4711341,2.264,2.28,0,0.372761,5.8,4.5 +22518,-1,0.016206,0,2,0,2,5,DIV,4,2,Smith,Rd,4706175,0,0.016,0,0.388942,5.8,4.5 +22924,-1,0.006283,0,2,0,2,5,DIV,4,2,Vining,Rd,4706252,0.754,0.761,0,0.150787,5.8,4.5 +30538,0,0.004431,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.106335,0.15,4 +17584,0,0.495585,2,2,0,2,4,,3,2,Van Born,Rd,1670203,2.788,3.283,0,11.894031,6,4.5 +30605,0,0.53062,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.734887,0.15,4 +30606,0,0.304401,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.305629,0.15,4 +15862,0,0.180667,1,1,0,2,5,,3,2,Howe,Rd,4712012,0,0.181,0,4.335998,8,4.5 +15146,0,0.272361,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0.996,1.268,0,6.536674,8,4.5 +15677,0,0.257515,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.539,7.796,0,6.180357,5,5 +15806,1,0.639659,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,7.86,8.5,0,15.351824,5,5 +15849,0,0.236674,1,1,0,2,4,,3,2,Venoy,Rd,1599408,2.49,2.727,0,5.680167,6,4.5 +16127,0,0.43895,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,7.593,8.031,0,10.534795,6,4.5 +16494,0,0.220136,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.577,4.798,0,5.283267,6,4.5 +17928,0,0.513807,1,1,1,2,5,,3,2,Marquette,Ave,1685107,0.726,1.239,0,12.331359,8,4.5 +18013,0,0.731153,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,1.037,1.768,0,17.547682,8,4.5 +18447,0,0.389609,1,1,0,2,5,,3,2,Hunter,Ave,1678601,0,0.39,0,9.350622,8,4.5 +22435,0,0.436197,1,1,0,2,5,,3,2,John Hix,Rd,4705360,1.666,2.102,0,10.46872,8,4.5 +23158,-1,0.329787,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.199,8.529,0,7.914876,5,5 +24169,0,0.453789,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,1.603,2.057,0,10.890944,6,4.5 +24232,0,0.320996,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.896,8.217,0,7.703896,5,5 +31560,0,0.416037,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.984881,0.15,4 +31585,0,0.502056,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.049353,0.15,4 +31665,0,0.749421,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.986111,0.15,4 +31669,0,0.504072,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.09773,0.15,4 +31670,0,0.497785,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.946844,0.15,4 +31673,0,0.278619,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.686862,0.15,4 +31675,0,0.498416,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.961975,0.15,4 +31680,0,0.498621,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.966914,0.15,4 +31681,0,0.283533,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.804785,0.15,4 +31842,0,0.298622,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.166938,0.15,4 +15808,1,0.777155,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,6.809,7.586,0,18.651727,5,5 +16495,0,0.457879,1,1,1,2,4,,3,2,Palmer,Rd,1607406,3.595,4.053,0,10.989096,6,4.5 +18427,0,0.520698,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,0.516,1.037,0,12.496762,8,4.5 +23498,0,0.409894,1,1,0,2,5,,3,2,John Hix,Rd,4705360,0.202,0.611,0,9.837445,8,4.5 +23676,-1,0.688713,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,6.878,7.567,0,16.529104,5,5 +24176,0,0.3696,1,1,0,2,4,,3,2,Newburgh,Rd,4710394,0.188,0.558,0,8.870404,6,4.5 +31269,0,0.518644,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.447464,0.15,4 +31573,0,0.335136,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.043259,0.15,4 +31583,0,0.529791,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.714978,0.15,4 +31689,0,0.518391,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.441394,0.15,4 +18804,0,0.022157,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.379,8.401,0,0.531772,6,4.5 +22961,-1,0.27545,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,6.506,6.781,0,6.610795,5,5 +23707,0,0.20161,1,1,0,2,5,,3,2,John Hix,Rd,4705360,0,0.202,0,4.838646,8,4.5 +31574,0,0.459688,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.032514,0.15,4 +31575,0,0.384384,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.225218,0.15,4 +33791,0,0.475377,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.409043,0.15,4 +15809,1,0.277248,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,6.532,6.809,0,6.653947,5,5 +17537,0,0.293909,1,1,0,2,4,,3,2,Hannan,Rd,1710309,7.839,8.133,0,7.05381,6,4.5 +19041,0,0.246251,1,1,0,2,4,,3,2,Hannan,Rd,1710309,8.133,8.379,0,5.910014,6,4.5 +22683,-1,0.096829,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,6.781,6.878,0,2.323907,5,5 +16260,0,0.306036,1,1,1,2,4,,3,2,Palmer,Rd,1607406,3.289,3.595,0,7.34486,6,4.5 +18024,0,0.244237,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,0.272,0.516,0,5.861677,8,4.5 +22765,0,0.558808,1,1,0,2,5,,3,2,John Hix,Rd,4705360,1.107,1.666,0,13.411386,8,4.5 +31586,0,0.255458,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.130996,0.15,4 +31588,0,0.500989,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.023746,0.15,4 +23156,0,0.495973,1,1,0,2,5,,3,2,John Hix,Rd,4705360,0.611,1.107,0,11.903355,8,4.5 +31584,0,0.24791,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.949837,0.15,4 +31581,0,0.254837,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.116099,0.15,4 +15807,1,0.274061,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,7.586,7.86,0,6.577474,5,5 +23339,-1,0.266548,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,7.567,7.833,0,6.397141,5,5 +24177,0,0.188371,1,1,0,2,4,,3,2,Newburgh,Rd,4710394,0,0.188,0,4.520912,6,4.5 +24533,1,0.025002,1,0,0,2,4,,3,2,Michigan/Newburgh,TURN,4708369,0,0.025,0,0.600048,6,4.5 +23500,-1,0.366501,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,7.833,8.199,0,8.796028,5,5 +16255,0,0.525078,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.053,4.577,0,12.601883,6,4.5 +24173,0,0.549657,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,1.054,1.603,0,13.191773,6,4.5 +31266,0,0.503656,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.087735,0.15,4 +31268,0,0.499529,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.988703,0.15,4 +24175,0,0.261545,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,0.558,0.819,0,6.277081,6,4.5 +24174,0,0.234633,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,0.819,1.054,0,5.631188,6,4.5 +14985,0,0.298161,2,2,1,2,3,,3,2,Ford,Rd,1595510,6.751,7.049,0,7.155868,5,5 +15098,0,0.504444,1,1,0,2,5,,3,2,Carlson,Blvd,1595907,0,0.504,0,12.106652,8,4.5 +15203,0,0.336288,1,1,1,2,5,,3,2,Hix,Rd,1595808,0.523,0.86,0,8.070915,8,4.5 +16401,0,0.490507,1,1,0,2,4,,3,2,Cherry Hill,Rd,1607409,6.546,7.037,0,11.772175,6,4.5 +24050,0,0.201626,1,1,0,2,4,,3,2,Warren,Rd,4710470,6.999,7.201,0,4.839016,6,4.5 +24156,0,0.291183,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.763,3.054,0,6.98839,6,4.5 +31629,0,0.502271,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.05451,0.15,4 +31677,0,0.573354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.7605,0.15,4 +31687,0,0.260353,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.248461,0.15,4 +16171,0,0.273946,1,1,0,2,4,,3,2,Cherry Hill,Rd,1607409,6.273,6.546,0,6.574709,6,4.5 +18911,0,0.269263,1,1,0,2,5,,3,2,Florence,Ave,1686109,0,0.269,0,6.462321,8,4.5 +23457,0,0.250512,1,1,0,2,5,,3,2,John Hix,St,4705360,2.102,2.352,0,6.012281,8,4.5 +31590,0,0.348721,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.369308,0.15,4 +15740,0,0.230635,1,1,0,2,5,,3,2,Hix,Rd,1595808,0.115,0.346,0,5.535245,8,4.5 +15463,0,0.177602,1,1,1,2,5,,3,2,Hix,Rd,1595808,0.346,0.523,0,4.262436,8,4.5 +31589,0,0.165762,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.978277,0.15,4 +31592,0,0.028438,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.682516,0.15,4 +14986,0,0.398311,1,1,0,2,5,,3,2,Hix,Rd,1595808,0.86,1.258,0,9.559452,8,4.5 +15462,0,0.324244,2,2,1,2,3,,3,2,Ford,Rd,1595510,6.229,6.553,0,7.781849,5,5 +24062,0,0.455494,1,1,0,2,4,,3,2,Warren,Rd,4710470,6.239,6.694,0,10.93185,6,4.5 +31593,0,0.279805,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.715323,0.15,4 +31594,0,0.30633,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.351917,0.15,4 +31626,0,0.324614,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.790741,0.15,4 +31595,0,0.308904,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.413702,0.15,4 +15202,0,0.197466,2,2,1,2,3,,3,2,Ford,Rd,1595510,6.553,6.751,0,4.739187,5,5 +15634,0,0.234198,1,1,0,2,5,,3,2,Hix,Rd,1595808,1.258,1.492,0,5.620747,8,4.5 +24061,0,0.30527,1,1,0,2,4,,3,2,Warren,Rd,4710470,6.694,6.999,0,7.32648,6,4.5 +31497,0,0.262293,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.29502,0.15,4 +31688,0,0.314827,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.55584,0.15,4 +16142,0,0.49046,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,7.037,7.527,0,11.771031,6,4.5 +18318,0,0.486466,1,1,0,2,5,,3,2,Marquette,Ave,1685107,0.239,0.726,0,11.675174,8,4.5 +24160,0,0.249156,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.057,2.306,0,5.979734,6,4.5 +31587,0,0.49835,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.96039,0.15,4 +31678,0,0.250755,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.018111,0.15,4 +24158,0,0.250413,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.306,2.556,0,6.009908,6,4.5 +24157,0,0.206753,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,2.556,2.763,0,4.962062,6,4.5 +16384,0,0.065549,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,7.527,7.593,0,1.573165,6,4.5 +31676,0,0.250176,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.004235,0.15,4 +14846,0,0.243128,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.296,7.539,0,5.835076,5,5 +17964,1,0.136632,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.253,0.39,0,3.279169,8,4.5 +24155,0,0.406216,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,3.054,3.46,0,9.749193,6,4.5 +31498,0,0.240815,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.779555,0.15,4 +31679,0,0.418655,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.047722,0.15,4 +14564,0,0.24685,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.049,7.296,0,5.924404,5,5 +24049,0,0.190005,2,2,1,2,4,,3,2,Warren,Rd,4710470,7.201,7.391,0,4.56011,6,4.5 +24154,0,0.284525,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,3.46,3.745,0,6.828604,6,4.5 +31500,0,0.370805,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.89932,0.15,4 +31682,0,0.250401,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.009627,0.15,4 +18370,1,0.197275,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.056,0.253,0,4.734604,8,4.5 +22248,-1,0.167822,0,2,0,2,5,DIV,3,2,Central City,Pkwy,4702294,0,0.168,0,4.027728,8,4.5 +17966,0,0.056042,2,2,1,2,5,,3,2,Central City,Pkwy,1669910,0,0.056,0,1.345013,8,4.5 +18362,1,0.101596,2,0,0,2,5,DIV,3,2,Central City,Pkwy,1669910,0.39,0.491,0,2.438309,8,4.5 +14850,0,0.501152,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0,0.501,0,12.027639,8,4.5 +15801,1,0.422517,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.956,9.379,0,10.140401,5,5 +15854,0,0.271864,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.223,1.495,0,6.524738,6,4.5 +15863,0,0.456143,1,1,0,2,5,,3,2,2nd,St,1599309,0.545,1.001,0,10.947442,8,4.5 +15866,0,0.203389,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.862,1.065,0,4.881328,8,4.5 +16491,0,0.746363,1,1,0,2,4,,3,2,Palmer,Rd,1607406,5.544,6.29,0,17.912713,6,4.5 +17997,0,0.167411,1,1,0,2,5,,3,2,Glenwood,Ave,1666001,2.364,2.532,0,4.017874,8,4.5 +18755,0,0.745721,1,1,0,2,5,,3,2,Avondale,Ave,1686907,1.208,1.953,0,17.897301,8,4.5 +19085,0,0.331696,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.211,1.542,0,7.960698,8,4.5 +23582,-1,0.432855,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.92,9.352,0,10.388526,5,5 +24432,0,0.192124,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.708,6.9,0,4.610978,5,5 +15805,1,0.175557,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.5,8.675,0,4.213359,5,5 +15865,0,0.430329,1,1,0,2,5,,3,2,2nd,St,1599309,0,0.43,0,10.327893,8,4.5 +15870,0,0.360137,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.044,0.404,0,8.643286,8,4.5 +17577,0,0.32715,1,1,0,2,5,,3,2,Annapolis,St,1680904,0.884,1.211,0,7.851603,8,4.5 +22868,-1,0.248952,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.529,8.778,0,5.974849,5,5 +24000,0,0.390539,2,2,1,2,3,,3,2,Wayne,Rd,4719470,5.821,6.211,0,9.372927,5,5 +31660,0,0.176203,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.228872,0.15,4 +31661,0,0.231789,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.562924,0.15,4 +17905,0,0.058893,1,1,0,2,5,,3,2,Annapolis,St,1680904,0.754,0.812,0,1.41343,8,4.5 +24316,0,0.152697,2,2,1,2,3,,3,2,Wayne,Rd,4719470,5.668,5.821,0,3.664725,5,5 +31558,0,0.113332,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.719978,0.15,4 +31559,0,0.096037,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.304897,0.15,4 +17778,0,0.071468,1,1,0,2,5,,3,2,Annapolis,St,1680904,0.812,0.884,0,1.715229,8,4.5 +15867,0,0.169015,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.693,0.862,0,4.056367,8,4.5 +15868,0,0.224727,2,2,0,2,5,,3,2,Elizabeth,St,1599304,0.468,0.693,0,5.393438,8,4.5 +31659,0,0.074512,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.788295,0.15,4 +15869,0,0.063685,1,1,0,2,5,,3,2,Elizabeth,St,1599304,0.404,0.468,0,1.528436,8,4.5 +31662,0,0.023042,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.553014,0.15,4 +15802,1,0.184796,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.772,8.956,0,4.435093,5,5 +22576,-1,0.141741,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,8.778,8.92,0,3.401777,5,5 +23985,0,0.23837,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.47,6.708,0,5.720875,5,5 +24433,0,0.169416,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.3,6.47,0,4.065973,5,5 +15803,1,0.059481,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.712,8.772,0,1.427534,5,5 +15804,1,0.036914,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,8.675,8.712,0,0.885943,5,5 +19254,1,0.064534,1,0,0,1,3,RSF,3,2,S Wayne/E Michigan Cutoff,,1804107,0,0.065,0,,5,5 +23989,0,0.0578,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.242,6.3,0,1.387195,5,5 +24435,0,0.031095,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.211,6.242,0,0.746276,5,5 +19255,1,0.071069,1,0,0,1,3,RSF,3,2,E Michigan/S Wayne Cutoff,,1804106,0,0.071,0,,5,5 +15864,0,0.114406,1,1,0,2,5,,3,2,2nd,St,1599309,0.43,0.545,0,2.745733,8,4.5 +16249,0,0.499295,1,1,0,2,4,,3,2,Palmer,Rd,1607406,5.045,5.544,0,11.983073,6,4.5 +17795,0,0.249361,1,1,0,2,5,,3,2,Avondale,Ave,1686907,0.703,0.952,0,5.984671,8,4.5 +17986,0,0.285014,1,1,0,2,5,,3,2,Harvey,Ave,1666107,0.214,0.499,0,6.840342,8,4.5 +18005,0,0.208721,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,1.978,2.186,0,5.009302,8,4.5 +23983,0,0.234432,2,2,1,2,3,,3,2,Wayne,Rd,4719470,6.9,7.134,0,5.626362,5,5 +24431,0,0.295855,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.134,7.43,0,7.100528,5,5 +31666,0,0.248114,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.954724,0.15,4 +31674,0,0.443176,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.636234,0.15,4 +18399,0,0.214435,1,1,0,2,5,,3,2,Elizabeth,St,1666107,0,0.214,0,5.146444,8,4.5 +18421,0,0.209927,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,1.768,1.978,0,5.038259,8,4.5 +31667,0,0.248562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.965493,0.15,4 +31668,0,0.193954,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.654896,0.15,4 +33967,0,0.338582,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.125974,0.15,4 +16251,0,0.178465,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.798,4.976,0,4.283169,6,4.5 +23975,0,0.279182,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.43,7.709,0,6.700375,5,5 +16492,0,0.068979,1,1,0,2,4,,3,2,Palmer,Rd,1607406,4.976,5.045,0,1.655489,6,4.5 +24430,0,0.187189,2,2,1,2,3,,3,2,Wayne,Rd,4719470,7.709,7.896,0,4.492526,5,5 +18412,0,0.177894,1,1,0,2,5,,3,2,Glenwood,Rd,1666001,2.186,2.364,0,4.269451,8,4.5 +15394,0,0.270053,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0.726,0.996,0,6.481261,8,4.5 +19208,0,0.25571,1,1,0,2,5,,3,2,Avondale,Ave,1686907,0.952,1.208,0,6.137047,8,4.5 +15680,0,0.225243,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,0.501,0.726,0,5.405823,8,4.5 +31692,0,0.060042,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.441016,0.15,4 +15800,1,0.504675,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,9.379,9.883,0,12.112205,5,5 +15857,0,0.603358,2,2,0,2,4,,3,2,Venoy,Rd,1599408,0.498,1.101,0,14.480586,6,4.5 +15859,0,0.273745,1,1,0,2,5,,3,2,Howe,Rd,4712012,0.744,1.017,0,6.569884,8,4.5 +18509,0,0.224983,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.61,1.835,0,5.399593,8,4.5 +31555,0,0.095277,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.286656,0.15,4 +33939,0,0.372513,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.940319,0.15,4 +15860,0,0.247479,1,1,0,2,5,,3,2,Howe,Rd,4712012,0.496,0.744,0,5.939503,8,4.5 +33940,0,0.26507,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.361684,0.15,4 +18878,0,0.067218,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.542,1.61,0,1.613239,8,4.5 +18294,0,0.274252,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,1.835,2.109,0,6.582039,8,4.5 +31201,0,0.118889,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.853333,0.15,4 +15855,0,0.099288,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.124,1.223,0,2.382917,6,4.5 +15856,0,0.022605,2,2,0,2,4,,3,2,Venoy,Rd,1599408,1.101,1.124,0,0.542524,6,4.5 +15852,0,0.361807,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.632,1.994,0,8.683363,6,4.5 +17992,0,0.674594,1,1,0,2,5,,3,2,Glenwood,Ave,1666001,2.599,3.273,0,16.190246,8,4.5 +33966,0,0.724025,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.37659,0.15,4 +18405,0,0.067351,1,1,0,2,5,,3,2,Glenwood,Ave,1666001,2.532,2.599,0,1.616426,8,4.5 +31206,0,0.112159,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.691828,0.15,4 +15853,0,0.137363,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.495,1.632,0,3.296719,6,4.5 +15851,0,0.249925,1,1,0,2,4,,3,2,Venoy,Rd,1599408,1.994,2.244,0,5.99821,6,4.5 +15850,0,0.246658,1,1,0,2,4,,3,2,Venoy,Rd,1599408,2.244,2.49,0,5.919793,6,4.5 +14904,0,0.373053,2,2,1,2,3,,3,2,Ford,Rd,1595510,8.542,8.915,0,8.953279,5,5 +15534,0,0.247609,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.996,2.244,0,5.942624,8,4.5 +15844,0,0.246016,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.495,3.741,0,5.904394,6,4.5 +16382,0,0.745858,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,8.532,9.278,0,17.900604,6,4.5 +18771,0,0.131339,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.737,1.869,0,3.152138,8,4.5 +19018,0,0.250801,1,1,0,2,5,,3,2,Hunter,Ave,1678601,1.011,1.262,0,6.019213,8,4.5 +24153,0,0.25099,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.924,9.175,0,6.023752,5,5 +31205,0,0.875332,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,21.007962,0.15,4 +31210,0,0.515188,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.364504,0.15,4 +31495,0,0.235655,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.655713,0.15,4 +31695,0,0.158871,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.8129,0.15,4 +32016,0,0.291441,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.994593,0.15,4 +32017,0,0.323153,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.755667,0.15,4 +15194,0,0.253396,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.488,1.742,0,6.081512,8,4.5 +16383,0,0.334099,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,8.031,8.365,0,8.018374,6,4.5 +17507,0,0.34264,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.239,1.582,0,8.223352,8,4.5 +24231,0,0.248357,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.425,8.673,0,5.960565,5,5 +31591,0,0.350065,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.401553,0.15,4 +24144,0,0.2082,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.217,8.425,0,4.996811,5,5 +24141,0,0.250697,2,2,1,2,3,,3,2,Wayne,Rd,4719470,8.673,8.924,0,6.016739,5,5 +15454,0,0.220101,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.268,1.488,0,5.28242,8,4.5 +31672,0,0.262728,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.305469,0.15,4 +31671,0,0.16063,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.855115,0.15,4 +16126,0,0.166768,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,8.365,8.532,0,4.002443,6,4.5 +14558,0,0.203537,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.793,1.996,0,4.884896,8,4.5 +30254,0,0.270927,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.502245,0.15,4 +14977,0,0.051227,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,1.742,1.793,0,1.229458,8,4.5 +19011,0,0.155608,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.582,1.737,0,3.734596,8,4.5 +31697,0,0.033237,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.797694,0.15,4 +14855,0,0.248711,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.494,2.743,0,5.969068,8,4.5 +15144,0,0.497484,2,2,1,2,3,,3,2,Ford,Rd,1595510,8.045,8.542,0,11.939617,5,5 +17607,0,0.346222,1,1,0,2,5,,3,2,Hunter,Ave,1678601,0.665,1.011,0,8.309319,8,4.5 +24018,0,0.264441,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.679,9.943,0,6.346594,5,5 +24149,0,0.250364,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.943,10.194,0,6.008738,5,5 +31685,0,0.257459,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.179004,0.15,4 +31686,0,0.282517,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.780402,0.15,4 +31814,0,0.395554,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.493308,0.15,4 +15391,0,0.249014,2,2,1,2,3,,3,2,Ford,Rd,1595510,7.796,8.045,0,5.976346,5,5 +24022,0,0.250365,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.175,9.425,0,6.008758,5,5 +24152,0,0.253817,2,2,1,2,3,,3,2,Wayne,Rd,4719470,9.425,9.679,0,6.091607,5,5 +18033,0,0.275329,1,1,0,2,5,,3,2,Hunter,Ave,1678601,0.39,0.665,0,6.607891,8,4.5 +31501,0,0.257463,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.179124,0.15,4 +31683,0,0.255894,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.141455,0.15,4 +15101,0,0.250163,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.244,2.494,0,6.003922,8,4.5 +15397,0,0.24672,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.993,3.239,0,5.92129,8,4.5 +15685,0,0.250205,1,1,0,2,5,,3,2,Wildwood,Ave,1596010,2.743,2.993,0,6.004908,8,4.5 +15847,0,0.252369,2,2,1,2,4,,3,2,Venoy,Rd,1599408,2.987,3.239,0,6.05685,6,4.5 +17929,1,0.418036,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,2.068,2.486,0,10.032871,8,4.5 +24260,-1,0.503013,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711017,0,0.503,0,12.07232,8,4.5 +18213,1,0.085015,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,1.983,2.068,0,2.040364,8,4.5 +18437,0,0.114384,1,1,0,2,5,,3,2,Marquette,Ave,1685107,1.869,1.983,0,2.745218,8,4.5 +15848,0,0.260221,1,1,0,2,4,,3,2,Venoy,Rd,1599408,2.727,2.987,0,6.245307,6,4.5 +31216,0,0.102741,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.465776,0.15,4 +15846,0,0.249022,2,2,1,2,4,,3,2,Venoy,Rd,1599408,3.239,3.488,0,5.976529,6,4.5 +31213,0,0.126043,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.025033,0.15,4 +15845,0,0.006559,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.488,3.495,0,0.157412,6,4.5 +14989,0,0.375858,2,2,1,2,3,,3,2,Ford,Rd,1595510,8.915,9.291,0,9.020591,5,5 +15842,0,0.242554,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.99,4.232,0,5.82129,6,4.5 +18546,0,0.498755,1,1,0,2,5,,3,2,Hunter,Ave,1678601,1.262,1.76,0,11.970123,8,4.5 +31684,0,0.590438,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.170514,0.15,4 +31694,0,0.512507,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.300161,0.15,4 +31696,0,0.324993,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.799827,0.15,4 +33788,0,0.48145,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.554796,0.15,4 +31496,0,0.244319,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.863655,0.15,4 +31693,0,0.270646,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.495515,0.15,4 +15843,0,0.248793,1,1,0,2,4,,3,2,Venoy,Rd,1599408,3.741,3.99,0,5.971039,6,4.5 +31208,0,0.03319,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.796557,0.15,4 +15840,0,0.257125,1,1,0,2,4,,3,2,Venoy,Rd,1599408,4.486,4.744,0,6.170993,6,4.5 +15841,0,0.254478,1,1,0,2,4,,3,2,Venoy,Rd,1599408,4.232,4.486,0,6.107466,6,4.5 +1842,0,0.080827,1,1,0,2,4,,3,3,9 Mile,Rd,633603,2.814,2.895,0,1.939848,6,4.5 +16092,-1,0.388977,0,4,0,1,1,,3,2,W I 96,,1607506,0.423,0.812,0,,0.58,7 +16193,1,0.724736,4,0,0,1,1,,3,2,E I 96,,1607802,2.396,3.12,0,,0.58,7 +16244,0,0.496289,1,1,0,2,5,,3,2,Levan,Rd,1604605,2.198,2.694,0,11.910931,8,4.5 +16503,1,0.43223,4,0,0,1,1,,3,2,E I 96,,1607802,0.244,0.676,0,,0.58,7 +16619,1,0.185861,3,0,0,1,2,,3,2,E M 14,,1606205,6.773,6.958,0,,0.58,7 +16819,0,0.394355,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,1.244,1.639,0,9.464509,8,4.5 +16897,-1,0.545798,0,4,0,1,1,,3,2,W I 96,,1606503,0.679,1.224,0,,0.58,7 +16956,0,0.357406,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.088,6.446,0,8.577734,5,5 +16966,0,0.911035,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,1.603,2.514,0,21.864843,6,4.5 +17020,1,1.107772,4,0,0,1,1,,3,2,E I 96,,1606201,0,1.107,0,,0.58,7 +17141,-1,0.832673,0,4,0,1,1,,3,2,W I 96,,1607506,2.491,3.323,0,,0.58,7 +17142,0,0.497364,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,0,0.497,0,11.936739,6,4.5 +17523,0,0.509217,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,1.561,2.07,0,12.221211,6,4.5 +17847,0,0.246123,2,2,1,2,3,,3,2,Farmington,Rd,1690602,3.503,3.749,0,5.906948,5,5 +18117,0,0.487218,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,3.399,3.887,0,11.693225,3.7,5 +18184,0,0.647007,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,0,0.647,0,15.528173,8,4.5 +18431,0,0.317461,1,1,0,2,4,,3,2,Joy,Rd,1672705,5.49,5.807,0,7.619069,6,4.5 +18491,0,0.767865,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,1.528,2.295,0,18.428751,6,4.5 +18505,0,0.113937,2,2,0,2,4,,3,2,7 Mile,Rd,1700106,0.192,0.306,0,2.734498,6,4.5 +18561,0,0.227064,1,1,0,2,4,,4,2,Northville,Rd,1679402,1.168,1.395,0,5.449526,4.5,4.5 +18602,0,1.771447,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,2.622,4.392,0,42.514724,5,5 +19067,0,0.532453,1,1,0,2,5,,4,2,Bradner,Rd,1689501,0.235,0.767,0,12.778861,5.8,4.5 +19070,0,0.093632,2,2,1,2,4,,3,2,6 Mile,Rd,1680701,6.251,6.345,0,2.247168,6,4.5 +20927,0,0.209768,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.051,2.261,0,5.034424,5,5 +22431,1,0.619379,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.963,1.582,0,14.865086,6,4.5 +22441,0,2.048844,1,1,0,2,3,,4,2,Edward Hines,Dr,4705216,0.443,2.491,0,49.172264,3.7,5 +23233,-1,0.497411,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.967,1.464,0,11.937857,6,4.5 +24126,0,0.486373,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,8.052,8.538,0,11.672943,6,4.5 +24871,0,0.513277,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.318649,0.15,4 +26864,0,0.544188,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.060514,0.15,4 +27231,0,0.49366,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.847837,0.15,4 +31344,0,0.292331,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.015943,0.15,4 +31460,0,0.491736,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.80166,0.15,4 +31704,0,0.460924,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.062167,0.15,4 +31712,0,0.522471,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.539296,0.15,4 +31721,0,0.44743,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.738311,0.15,4 +31737,0,0.489538,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.748919,0.15,4 +31740,0,0.505082,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.12196,0.15,4 +31771,0,0.712187,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.092476,0.15,4 +31847,0,0.493859,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.85261,0.15,4 +16102,0,0.494456,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0.445,0.939,0,11.866939,6,4.5 +16125,0,0.116745,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.095,3.212,0,2.80188,6,4.5 +16129,0,0.253227,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.842,3.095,0,6.077458,6,4.5 +16431,-1,1.300641,0,3,0,1,1,,3,2,S I 275,,1607610,20.25,21.55,0,,0.58,7 +16484,1,1.006641,3,0,0,1,1,,3,2,N I 275,,1607208,20.2,21.206,0,,0.58,7 +16630,-1,1.683902,0,3,0,1,2,,3,2,W M 14,,1606204,4.388,6.071,0,,0.58,7 +16923,1,1.930635,3,0,0,1,2,,3,2,E M 14,,1606205,4.17,6.1,0,,0.58,7 +17144,0,0.299043,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.377,4.676,0,7.177041,5,5 +17247,0,0.061071,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0,0.061,0,1.465693,6,4.5 +17645,0,0.042709,1,1,1,2,4,,3,2,Joy,Rd,1672705,4.096,4.139,0,1.025013,6,4.5 +17656,0,0.262873,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.186,0.448,0,6.308961,6,4.5 +17844,0,0.391505,2,2,0,2,4,,3,2,Main,St,1679010,0.873,1.265,0,9.396112,6,4.5 +17890,0,0.197178,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,0.865,1.062,0,4.73228,5,5 +18169,0,0.491769,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,1.235,1.727,0,11.802463,5,5 +18670,0,0.201661,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.033,0.235,0,4.839872,6,4.5 +19397,0,0.31255,1,1,0,2,5,,3,2,Riverside,Dr,1733709,0,0.312,0,7.501204,8,4.5 +23706,0,0.253512,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.989,11.243,0,6.084296,6,4.5 +24082,0,0.283022,1,1,0,2,4,,4,2,Warren,Rd,4710470,4.195,4.477,0,6.79254,4.5,4.5 +24180,0,0.593064,1,1,0,2,4,,3,2,Mill,St,4710390,6.269,6.861,0,14.233535,6,4.5 +24181,0,0.299184,1,1,0,2,4,,3,2,Mill,St,4710390,5.969,6.269,0,7.180423,6,4.5 +30390,0,0.355671,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.536094,0.15,4 +30393,0,0.567123,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.610952,0.15,4 +30398,0,0.7739,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.573589,0.15,4 +30405,0,0.245402,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.889657,0.15,4 +30407,0,0.255534,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.132812,0.15,4 +31459,0,0.411766,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.882385,0.15,4 +31751,0,0.317305,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.615313,0.15,4 +31757,0,0.498496,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.963912,0.15,4 +33762,0,0.454529,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.908693,0.15,4 +16044,0,0.250301,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,3.672,3.922,0,6.00722,5,5 +17764,0,0.249977,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,0.325,0.575,0,5.999448,5,5 +18193,0,0.253583,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.131,3.384,0,6.085992,6,4.5 +18226,0,0.124354,1,1,0,2,4,,3,2,Main,St,1679010,0,0.124,0,2.984487,6,4.5 +24087,0,0.22532,2,2,1,2,4,,4,2,Warren,Rd,4710470,3.478,3.703,0,5.407684,4.5,4.5 +31456,0,0.245643,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.895443,0.15,4 +31755,0,0.508001,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.192028,0.15,4 +33756,0,0.254669,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.112055,0.15,4 +39915,1,0.022578,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.995,3.018,0,0.541867,8,4.5 +18631,0,0.520691,1,1,0,2,4,,4,2,Joy,Rd,1672705,2.61,3.131,0,12.496586,4.5,4.5 +22552,0,0.385506,2,2,1,2,3,,4,2,Sheldon Center,Rd,4706535,0,0.385,0,9.252152,3.7,5 +23128,0,0.378279,1,1,0,2,4,,4,2,Canton Center,Rd,4706530,4.918,5.296,0,9.078692,4.5,4.5 +39916,1,0.497859,3,0,0,1,2,,3,2,N M 39,,1592408,6.17,6.668,0,,0.58,7 +23560,0,0.112274,2,2,1,2,3,,4,2,Sheldon Center,Rd,4706535,0.385,0.498,0,2.694579,3.7,5 +24090,0,0.222403,2,2,1,2,4,,4,2,Warren,Rd,4710470,2.976,3.199,0,5.337672,4.5,4.5 +31450,0,0.387851,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.308415,0.15,4 +22496,0,0.070397,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,4.696,4.767,0,1.689522,3.7,5 +23480,0,0.151384,1,1,0,2,4,,4,2,Canton Center,Rd,4706530,4.767,4.918,0,3.633218,4.5,4.5 +22780,0,0.21934,2,2,1,2,3,,4,2,Canton Center,Rd,4706530,4.477,4.696,0,5.264171,3.7,5 +22847,0,0.19695,1,1,0,2,4,,4,2,Canton Center,Rd,4706530,5.296,5.493,0,4.726793,4.5,4.5 +17780,0,0.296587,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.735,6.032,0,7.118096,4.5,4.5 +24088,0,0.27945,2,2,1,2,4,,4,2,Warren,Rd,4710470,3.199,3.478,0,6.706797,4.5,4.5 +30388,0,0.411253,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.870066,0.15,4 +31747,0,0.101029,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.424701,0.15,4 +18183,0,0.173864,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,5.561,5.735,0,4.172732,4.5,4.5 +18176,0,0.049563,1,1,0,2,4,,4,2,Sheldon,Rd,1670201,6.032,6.081,0,1.189503,4.5,4.5 +18173,0,0.324842,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,0,0.325,0,7.796211,3.7,5 +23375,0,0.123753,2,2,1,2,3,,4,2,Sheldon Center,Rd,4706535,0.498,0.621,0,2.970083,3.7,5 +17760,0,0.408754,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,0.826,1.235,0,9.810095,5,5 +31748,0,0.644529,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.4687,0.15,4 +18170,0,0.251761,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,0.575,0.826,0,6.042259,5,5 +18287,0,0.199491,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.639,3.838,0,4.787785,6,4.5 +23967,0,0.522336,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,1.997,2.52,0,12.536071,4.5,4.5 +24083,0,0.215878,1,1,0,2,4,,4,2,Warren,Rd,4710470,3.979,4.195,0,5.181083,4.5,4.5 +30404,0,0.254505,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.108122,0.15,4 +31480,0,0.502523,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.060564,0.15,4 +31482,0,0.508006,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.192145,0.15,4 +23968,0,0.498358,1,1,0,2,4,,4,2,Morton Taylor,Rd,4706622,1.499,1.997,0,11.960597,4.5,4.5 +24086,0,0.275617,2,2,1,2,4,,4,2,Warren,Rd,4710470,3.703,3.979,0,6.614802,4.5,4.5 +31481,0,0.507124,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.170965,0.15,4 +31746,0,0.243169,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.836051,0.15,4 +18731,0,0.254239,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.384,3.639,0,6.101734,6,4.5 +31745,0,0.505397,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.129527,0.15,4 +18074,0,0.258254,1,1,0,2,4,,3,2,Joy,Rd,1672705,3.838,4.096,0,6.198097,6,4.5 +17114,0,0.20545,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.171,4.377,0,4.930791,5,5 +18238,0,0.37251,2,2,0,2,4,,3,2,Main,St,1679010,0.501,0.873,0,8.94024,6,4.5 +31457,0,0.423737,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.169683,0.15,4 +33759,0,0.251969,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.047251,0.15,4 +33760,0,0.352029,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.448689,0.15,4 +16190,0,0.248962,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,3.922,4.171,0,5.975089,5,5 +17827,0,0.248744,1,1,0,2,4,,3,2,Main,St,1679010,0.124,0.373,0,5.969861,6,4.5 +30386,0,0.136632,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.279173,0.15,4 +30396,0,0.144345,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.464289,0.15,4 +17240,0,0.128061,1,1,0,2,4,,3,2,Main,St,1679010,0.373,0.501,0,3.073464,6,4.5 +30391,0,0.261275,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.27059,0.15,4 +16206,0,0.2663,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.039,2.306,0,6.391198,6,4.5 +16926,1,0.252779,3,0,0,1,2,,4,2,E M 14,,1606205,3.917,4.17,0,,0.8,7.5 +16932,-1,0.352071,0,3,0,1,2,,4,2,W M 14,,1606204,4.036,4.388,0,,0.8,7.5 +17722,0,0.339154,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,3.49,3.829,0,8.139703,4.5,4.5 +18150,1,0.272046,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.446,2.718,0,6.5291,3.7,5 +18165,0,0.739349,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,0,0.739,0,17.744368,5,5 +18778,0,0.165398,1,1,0,2,4,,3,2,Penniman,Ave,1673609,3.737,3.902,0,3.969554,6,4.5 +18933,0,0.252515,1,1,0,2,4,,3,2,Northville,Rd,1679402,0.081,0.333,0,6.06036,6,4.5 +19292,1,0.283446,1,0,0,1,2,ROF,4,2,W M 14/Sheldon,RAMP,1778207,0,0.283,0,,2.24,5 +19293,1,0.59357,1,0,0,1,2,ROF,4,2,E M 14/Sheldon,RAMP,1778206,0,0.593,0,,2.24,5 +19296,1,0.52111,1,0,0,1,2,RON,4,2,Sheldon/E M 14,RAMP,1778202,0,0.521,0,,1.09,4 +19297,1,0.23142,1,0,0,1,2,RON,4,2,Sheldon/W M 14,RAMP,4712090,0.112,0.344,0,,1.09,4 +23203,-1,0.271247,0,3,0,2,3,DIV,4,2,Sheldon,Rd,4704692,0,0.271,0,6.509936,3.7,5 +30399,0,0.127151,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.051617,0.15,4 +31464,0,0.264081,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.337943,0.15,4 +18154,0,0.237728,2,2,0,2,3,,3,2,Sheldon,Rd,5495471,2.096,2.334,0,5.705478,5,5 +18330,0,0.254878,1,1,0,2,4,,3,2,Territorial,Rd,1673609,3.276,3.531,0,6.117061,6,4.5 +31466,0,0.342846,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.228306,0.15,4 +32606,0,0.250442,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.010598,0.15,4 +33952,0,0.311651,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.479629,0.15,4 +18786,0,0.163503,1,1,0,2,4,,4,2,Territorial,Rd,1673609,3.113,3.276,0,3.924066,4.5,4.5 +17747,0,0.138183,2,2,0,2,3,,3,2,Sheldon,Rd,5495471,1.958,2.096,0,3.316393,5,5 +17759,0,0.122761,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,1.727,1.849,0,2.946258,5,5 +31750,0,0.06781,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.627441,0.15,4 +17942,0,0.205807,1,1,0,2,4,,3,2,Penniman,Ave,1673609,3.531,3.737,0,4.939364,6,4.5 +33951,0,0.239773,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.754543,0.15,4 +18160,0,0.108677,2,2,1,2,3,,3,2,Sheldon,Rd,5495471,1.849,1.958,0,2.608248,5,5 +17739,0,0.112308,2,2,0,2,3,,3,2,Sheldon,Rd,5495471,2.334,2.446,0,2.69539,5,5 +17729,0,0.332069,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,3.067,3.399,0,7.969666,3.7,5 +17730,1,0.127733,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.872,2.999,0,3.065589,3.7,5 +19291,1,0.142633,2,0,0,1,2,ROF,4,2,M 14/Sheldon,RAMP,1778207,0.283,0.426,0,,2.24,5 +19298,1,0.094546,2,0,0,1,2,RON,4,2,Sheldon/M 14,RAMP,4712090,0.018,0.112,0,,1.09,4 +23200,-1,0.154046,0,3,0,2,3,DIV,4,2,Sheldon,Rd,4704692,0.398,0.552,0,3.697094,3.7,5 +18149,1,0.109313,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.762,2.872,0,2.623516,3.7,5 +17732,1,0.044441,3,0,0,2,3,DIV,4,2,Sheldon,Rd,5495471,2.718,2.762,0,1.066585,3.7,5 +18146,0,0.068252,2,2,1,2,3,,4,2,Sheldon,Rd,5495471,2.999,3.067,0,1.638051,3.7,5 +16137,0,0.066815,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.603,2.67,0,1.603561,6,4.5 +17692,0,0.542172,1,1,0,2,5,,3,2,Starkweather,Ave,1683903,0,0.542,0,13.01213,8,4.5 +18776,1,0.075092,1,0,0,2,5,,3,2,Penniman,Ave,1673609,4.192,4.267,0,1.802205,8,4.5 +18795,0,0.308177,2,2,0,2,4,,3,2,Main,St,1679010,1.332,1.64,0,7.396253,6,4.5 +24179,0,0.406663,1,1,0,2,4,,3,2,Mill,St,4710390,6.861,7.268,0,9.759913,6,4.5 +31752,0,0.185334,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.448006,0.15,4 +16199,0,0.173959,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.306,2.479,0,4.175012,6,4.5 +18323,0,0.169158,1,1,0,2,4,,3,2,Penniman,Ave,1673609,3.902,4.071,0,4.059801,6,4.5 +33953,0,0.285296,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.84711,0.15,4 +16189,0,0.123895,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.479,2.603,0,2.973485,6,4.5 +17936,1,0.120136,1,0,0,2,5,,3,2,Penniman,Ave,1673609,4.071,4.192,0,2.883267,8,4.5 +18665,0,0.133671,1,1,1,2,4,,3,2,Harvey,St,1679009,1.3,1.434,0,3.208113,6,4.5 +17262,0,0.066925,2,2,0,2,4,,3,2,Main,St,1679010,1.265,1.332,0,1.606206,6,4.5 +18338,0,0.21911,2,2,0,2,4,,3,2,Main,St,1679010,1.64,1.859,0,5.258651,6,4.5 +16134,0,0.171709,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,2.67,2.842,0,4.121007,6,4.5 +24294,0,0.025313,1,1,0,2,5,,3,2,Union,St,4710584,0.266,0.291,0,0.607505,8,4.5 +17948,0,0.075812,2,2,0,2,4,,3,2,Main,St,1679010,1.859,1.935,0,1.819496,6,4.5 +18166,0,0.126316,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,0.739,0.865,0,3.03158,5,5 +19119,0,0.098363,1,1,0,2,4,,3,2,Mill,St,1680504,0,0.098,0,2.360713,6,4.5 +17529,0,0.080547,1,1,0,2,4,,3,2,Northville,Rd,1679402,0,0.081,0,1.933133,6,4.5 +19026,0,0.030608,1,1,0,2,4,,3,2,Wilcox,Rd,1680504,0.098,0.129,0,0.734588,6,4.5 +19118,0,0.033357,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0,0.033,0,0.800574,6,4.5 +24178,0,0.021597,1,1,0,2,4,,3,2,Mill,St,4710390,7.268,7.289,0,0.518334,6,4.5 +16662,0,0.353668,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0.091,0.445,0,8.488023,6,4.5 +17623,0,0.402654,1,1,0,2,3,,4,2,Northville,Rd,1679402,0.711,1.113,0,9.663701,3.7,5 +18594,0,0.15521,1,1,0,2,5,GRV,3,2,Bradner,Ave,1689501,0.08,0.235,0,3.725047,7,4.5 +31753,0,0.356391,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.553389,0.15,4 +17535,0,0.380799,1,1,0,2,4,,4,2,5 Mile,Rd,1708705,3.829,4.209,0,9.139181,4.5,4.5 +19034,0,0.055044,2,2,0,2,3,,4,2,Northville,Rd,1679402,1.113,1.168,0,1.321056,3.7,5 +17655,0,0.185588,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0,0.186,0,4.454122,6,4.5 +18459,0,0.233996,1,1,0,2,4,,3,2,Northville,Rd,1679402,0.333,0.567,0,5.615911,6,4.5 +30397,0,0.200551,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.813213,0.15,4 +16976,0,0.091342,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0,0.091,0,2.192219,6,4.5 +18045,0,0.143901,1,1,0,2,4,,3,2,Northville,Rd,1679402,0.567,0.711,0,3.453625,6,4.5 +18593,0,0.079646,1,1,0,2,5,GRV,3,2,Bradner,Ave,1689501,0,0.08,0,1.911504,7,4.5 +16088,0,0.124751,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.881,4.006,0,2.994024,6,4.5 +17073,0,0.256014,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.428,5.684,0,6.144337,5,5 +18530,0,0.153974,1,1,1,2,4,,3,2,Joy,Rd,1672705,4.891,5.045,0,3.695388,6,4.5 +23372,0,0.275098,2,2,1,2,4,,3,2,Haggerty,Rd,4706524,9.987,10.262,0,6.602342,6,4.5 +24185,0,0.222862,1,1,0,2,4,,3,2,Lilley,Rd,4710390,5.143,5.366,0,5.348684,6,4.5 +31486,0,0.212093,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.090226,0.15,4 +31633,0,0.265137,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.363295,0.15,4 +31758,0,0.272458,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.538992,0.15,4 +33956,0,0.34506,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.281448,0.15,4 +18503,0,0.483976,1,1,0,2,4,,3,2,Joy,Rd,1672705,4.139,4.623,0,11.615422,6,4.5 +24190,0,0.553345,1,1,0,2,4,,4,2,Lilley,Rd,4710390,4.59,5.143,0,13.280289,4.5,4.5 +31490,0,0.256164,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.14794,0.15,4 +31491,0,0.528783,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.690785,0.15,4 +33757,0,0.508575,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.205801,0.15,4 +24076,0,0.279054,1,1,0,2,4,,4,2,Warren,Rd,4710470,4.477,4.756,0,6.697308,4.5,4.5 +24191,0,0.462371,1,1,0,2,4,,4,2,Lilley,Rd,4710390,4.128,4.59,0,11.0969,4.5,4.5 +18095,0,0.223092,1,1,0,2,4,,3,2,Joy,Rd,1672705,4.623,4.846,0,5.354205,6,4.5 +23556,0,0.46627,1,1,0,2,4,,4,2,Haggerty,Rd,4706524,9.521,9.987,0,11.190488,4.5,4.5 +19005,0,0.044967,1,1,1,2,4,,3,2,Joy,Rd,1672705,4.846,4.891,0,1.079219,6,4.5 +16098,0,0.217452,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.337,3.555,0,5.218842,6,4.5 +17123,0,0.455073,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.973,5.428,0,10.921741,5,5 +22980,0,0.230692,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.486,10.717,0,5.536618,6,4.5 +24182,0,0.326959,1,1,0,2,4,,3,2,Mill,St,4710390,5.643,5.969,0,7.847012,6,4.5 +30406,0,0.417906,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.029737,0.15,4 +30410,0,0.383407,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.201768,0.15,4 +31760,0,0.377243,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.053822,0.15,4 +17138,0,0.297628,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,4.676,4.973,0,7.143082,5,5 +24183,0,0.276762,1,1,0,2,4,,3,2,Lilley,Rd,4710390,5.366,5.643,0,6.642282,6,4.5 +31484,0,0.377735,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.065644,0.15,4 +31756,0,0.261958,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.286994,0.15,4 +16118,0,0.125858,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.212,3.337,0,3.020597,6,4.5 +23126,0,0.224083,2,2,1,2,4,,3,2,Haggerty,Rd,4706524,10.262,10.486,0,5.377989,6,4.5 +16095,0,0.326649,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,3.555,3.881,0,7.839583,6,4.5 +22630,0,0.203853,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.785,10.989,0,4.892475,6,4.5 +30408,0,0.137101,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.29043,0.15,4 +30411,0,0.343546,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.245096,0.15,4 +22778,0,0.068785,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,10.717,10.785,0,1.650833,6,4.5 +18413,0,0.324372,1,1,1,2,4,,3,2,Joy,Rd,1672705,5.045,5.369,0,7.784921,6,4.5 +31488,0,0.792522,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.020527,0.15,4 +17999,0,0.121209,1,1,1,2,4,,3,2,Joy,Rd,1672705,5.369,5.49,0,2.909013,6,4.5 +16075,1,0.365501,1,0,0,1,1,ROF,3,2,N I 275/Ann Arbor,RAMP,1604408,0,0.365,0,,2.24,5 +16144,1,0.223239,1,0,0,1,1,RON,3,2,E Ann Arbor/N I 275,RAMP,1604406,0,0.223,0,,1.09,4 +16177,-1,0.288219,0,3,0,1,1,,3,2,S I 275,,1607610,19.962,20.25,0,,0.58,7 +16178,1,0.330245,1,0,0,1,1,RON,3,2,W Ann Arbor/N I 275,RAMP,1604407,0,0.33,0,,1.09,4 +16243,1,0.378357,1,0,0,1,1,ROF,3,2,S I 275/Ann Arbor,RAMP,1604402,0,0.378,0,,2.24,5 +16679,0,0.242637,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.27,4.512,0,5.823291,6,4.5 +16754,1,0.350864,3,0,0,1,1,,3,2,N I 275,,1607208,19.849,20.2,0,,0.58,7 +16957,1,0.242652,1,0,0,1,1,RON,3,2,W Ann Arbor/S I 275,RAMP,1604404,0,0.243,0,,1.09,4 +17061,0,0.120707,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.82,5.941,0,2.896958,5,5 +31744,0,0.178916,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.293989,0.15,4 +16432,-1,0.407434,0,3,0,1,1,,3,2,S I 275,,1607610,19.554,19.962,0,,0.58,7 +16486,1,0.274377,3,0,0,1,1,,3,2,N I 275,,1607208,19.575,19.849,0,,0.58,7 +16550,1,0.375592,1,0,0,1,1,RON,3,2,E Ann Arbor/S I 275,RAMP,1604403,0,0.376,0,,1.09,4 +17068,0,0.071795,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.684,5.756,0,1.723074,5,5 +31759,0,0.243295,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.839077,0.15,4 +17067,0,0.064777,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.756,5.82,0,1.554649,5,5 +16074,0,0.141751,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.128,4.27,0,3.402014,6,4.5 +30409,0,0.236919,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.686065,0.15,4 +16084,0,0.122264,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.006,4.128,0,2.934326,6,4.5 +33957,0,0.174085,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.178041,0.15,4 +30412,0,0.025761,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.618259,0.15,4 +16968,0,0.079793,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.009,6.088,0,1.915042,5,5 +16969,0,0.06748,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,5.941,6.009,0,1.619513,5,5 +16940,0,0.181281,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604108,4.512,4.694,0,4.350749,6,4.5 +31743,0,0.13629,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.270958,0.15,4 +16056,-1,0.333446,0,3,0,1,2,,3,2,W M 14,,1606204,6.471,6.804,0,,0.58,7 +16096,0,0.295296,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,1.159,1.455,0,7.087113,6,4.5 +16176,-1,0.300401,0,3,0,1,1,,3,2,S I 275,,1607610,21.55,21.85,0,,0.58,7 +16184,1,0.160329,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0.467,0.627,0,,0.58,7 +16607,-1,0.678884,0,4,0,1,1,,3,2,W I 96,,1606503,0,0.679,0,,0.58,7 +16631,1,0.261448,1,0,0,1,1,RFS,3,2,E M 14/N I 275,RAMP,1607709,0,0.261,0,,0.22,6 +16715,1,0.833809,3,0,0,1,1,,3,2,N I 275,,1607208,21.206,22.04,0,,0.58,7 +16922,1,0.320122,3,0,0,1,2,,3,2,E M 14,,1606205,6.452,6.773,0,,0.58,7 +17089,1,0.385863,1,0,0,1,1,RFF,3,2,E M 14/S I 275,RAMP,1606001,0,0.386,0,,0.58,7 +17521,0,0.09892,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.562,0.661,0,2.37408,6,4.5 +17561,0,0.024308,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0.733,0.758,0,0.583398,6,4.5 +18332,0,0.135355,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.779,0.914,0,3.248509,6,4.5 +19068,0,0.277629,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0.758,1.035,0,6.663108,6,4.5 +22433,1,0.086348,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.227,0.313,0,2.072355,6,4.5 +22434,1,0.168574,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.058,0.227,0,4.045779,6,4.5 +23284,-1,0.3071,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.24,0.547,0,7.3704,6,4.5 +30403,0,0.235141,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.643389,0.15,4 +30413,0,0.282648,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.783561,0.15,4 +17835,0,0.089071,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.473,0.562,0,2.137709,6,4.5 +18167,0,0.36822,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0,0.368,0,8.837282,6,4.5 +18929,0,0.131182,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.405,0.536,0,3.148364,6,4.5 +18973,0,0.592433,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,2.029,2.622,0,14.21839,5,5 +19162,0,0.759192,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,1.27,2.029,0,18.220606,5,5 +30392,0,0.483837,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.61208,0.15,4 +31741,0,0.237969,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.711261,0.15,4 +33761,0,0.370542,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.893016,0.15,4 +19122,0,0.344183,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.061,0.405,0,8.260395,6,4.5 +30394,0,0.116525,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.796607,0.15,4 +18231,0,0.237778,1,1,0,2,4,,3,2,Wilcox,Rd,1680503,0.235,0.473,0,5.706682,6,4.5 +17657,0,0.208073,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,1.062,1.27,0,4.993749,5,5 +18556,0,0.242348,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.536,0.779,0,5.816343,6,4.5 +23557,0,0.295292,1,1,0,2,4,,3,2,Haggerty,Rd,4706524,11.243,11.538,0,7.087001,6,4.5 +17753,0,0.365439,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,0.368,0.733,0,8.770537,6,4.5 +31763,0,0.291448,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.994762,0.15,4 +31765,0,0.205095,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.922273,0.15,4 +18972,0,0.360881,2,2,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.521,0.882,0,8.661143,6,4.5 +30401,0,0.325925,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.822207,0.15,4 +17452,0,0.072945,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.448,0.521,0,1.750686,6,4.5 +23285,-1,0.183896,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.056,0.24,0,4.413505,6,4.5 +30402,0,0.286354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.872503,0.15,4 +18710,0,0.107726,2,2,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.882,0.99,0,2.585431,6,4.5 +22436,1,0.058314,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0,0.058,0,1.399527,6,4.5 +23286,-1,0.056435,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0,0.056,0,1.354447,6,4.5 +18394,0,0.014919,1,1,0,2,4,,3,2,Schoolcraft,Rd,1689310,0.99,1.005,0,0.358067,6,4.5 +16975,0,0.22023,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,0.939,1.159,0,5.285517,6,4.5 +16936,1,0.479402,1,0,0,1,1,RFF,3,2,N I 275/E M 14,RAMP,1607708,0,0.479,0,,0.58,7 +17838,0,0.373532,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,1.187,1.561,0,8.964779,6,4.5 +18801,0,0.416943,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.166,0.583,0,10.006627,6,4.5 +22432,1,0.650293,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,0.313,0.963,0,15.607038,6,4.5 +23276,-1,0.419791,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,0.547,0.967,0,10.07499,6,4.5 +31742,0,0.364399,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.745571,0.15,4 +31762,0,0.323977,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.77544,0.15,4 +31766,0,0.276232,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.629573,0.15,4 +18042,0,0.273381,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,0.914,1.187,0,6.561147,6,4.5 +17069,1,0.270525,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0.196,0.467,0,,0.58,7 +31761,0,0.368646,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.847496,0.15,4 +31764,0,0.409571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.829707,0.15,4 +16186,1,0.196159,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0,0.196,0,,0.58,7 +18800,0,0.165891,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0,0.166,0,3.981375,6,4.5 +18241,0,0.116869,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.587,0.704,0,2.804867,6,4.5 +31731,0,0.236187,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.668478,0.15,4 +18464,0,0.004284,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.583,0.587,0,0.10282,6,4.5 +17952,0,0.022718,2,2,0,2,4,,3,2,Eckles,Rd,1710006,0.704,0.727,0,0.545234,6,4.5 +16018,1,0.52404,1,0,0,1,1,RFF,3,2,S I 275/W M 14,RAMP,1597207,0,0.524,0,,0.58,7 +16122,-1,0.365785,0,3,0,1,1,,3,2,S I 275,,1607610,22.156,22.522,0,,0.58,7 +16381,-1,0.306211,0,3,0,1,1,,3,2,S I 275,,1607610,21.85,22.156,0,,0.58,7 +16458,1,0.258964,3,0,0,1,1,,3,2,N I 275,,1607208,22.04,22.299,0,,0.58,7 +16620,1,0.352827,3,0,0,1,2,,3,2,E M 14,,1606205,6.1,6.452,0,,0.58,7 +16629,-1,0.158167,0,3,0,1,2,,3,2,W M 14,,1606204,6.313,6.471,0,,0.58,7 +16993,1,0.263498,1,0,0,1,1,RFS,3,2,N I 275/W M 14,RAMP,1607710,0,0.263,0,,0.22,6 +17064,1,0.201832,1,0,0,1,1,FCD,3,2,N I 275 CD,,1607504,0.627,0.829,0,,0.58,7 +18859,0,0.492467,1,1,0,2,4,,3,2,Haggerty,Rd,1689610,1.035,1.528,0,11.8192,6,4.5 +16931,-1,0.241626,0,3,0,1,2,,3,2,W M 14,,1606204,6.071,6.313,0,,0.58,7 +16019,1,0.256297,1,0,0,1,1,RFS,3,2,W M 14/S I 275,RAMP,1597205,0,0.256,0,,0.22,6 +16970,0,0.148377,1,1,0,2,4,,3,2,5 Mile,Rd,1606203,1.455,1.603,0,3.561041,6,4.5 +1157,0,0.089496,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.462,4.551,0,2.147894,6,4.5 +3425,0,0.322093,1,1,0,2,3,,3,3,10 Mile,Rd,656510,10.498,10.82,0,7.730237,5,5 +16974,-1,0.37816,0,4,0,1,1,,3,2,W I 96,,1607506,0.045,0.423,0,,0.58,7 +17133,1,0.384993,1,0,0,1,1,ROF,3,2,W I 96/8 Mile,RAMP,1607509,0,0.385,0,,2.24,5 +17522,0,0.284638,1,1,0,2,4,,3,2,Griswold,St,1680204,0.165,0.449,0,6.831322,6,4.5 +17703,0,0.339359,1,1,0,2,5,,3,2,Randolph,St,1678702,0.026,0.365,0,8.144621,8,4.5 +17776,0,0.009751,2,1,1,2,4,,3,2,7 Mile,Rd,1698901,0.262,0.271,0,0.234035,6,4.5 +18089,0,0.31945,1,1,0,2,3,,3,2,Center,St,5495471,5.96,6.28,0,7.666808,5,5 +18276,0,0.424568,1,1,1,2,4,,4,2,6 Mile,Rd,1680701,4.607,5.032,0,10.189631,4.5,4.5 +19069,0,0.623061,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,3.986,4.609,0,14.953463,6,4.5 +20938,0,0.086314,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0.428,0.514,0,2.07153,5,5 +26869,0,0.524922,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.598131,0.15,4 +26876,0,0.280036,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.720856,0.15,4 +27234,0,0.379593,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.11022,0.15,4 +31699,0,0.645678,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.49627,0.15,4 +31773,0,0.491852,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.804451,0.15,4 +31776,0,0.558545,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.405074,0.15,4 +31779,0,0.353307,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.479373,0.15,4 +31780,0,0.321459,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.715019,0.15,4 +33608,0,0.845713,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.297107,0.15,4 +33948,0,0.476419,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.434058,0.15,4 +18102,0,0.23383,2,2,0,2,4,,3,2,Main,St,1680704,1.712,1.946,0,5.611908,6,4.5 +18112,0,0.551331,1,1,0,2,3,,4,2,Sheldon,Rd,5495471,4.404,4.955,0,13.231935,3.7,5 +18331,0,0.199337,1,1,0,2,4,,3,2,7 Mile,Rd,1680201,0.116,0.316,0,4.784095,6,4.5 +18554,0,0.378474,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,3.489,3.867,0,9.083371,4.5,4.5 +19127,0,0.549923,1,1,0,2,4,,4,2,Northville,Rd,1679402,2.363,2.913,0,13.198156,4.5,4.5 +31463,0,0.287591,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.902173,0.15,4 +31479,0,0.244237,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.861679,0.15,4 +17689,0,0.517959,1,1,0,2,3,,4,2,Sheldon,Rd,5495471,3.887,4.404,0,12.431009,3.7,5 +18109,0,0.356551,1,1,0,2,3,,3,2,Center,St,5495471,5.486,5.842,0,8.557225,5,5 +18599,0,0.225862,1,1,0,2,5,,3,2,Main,St,1680704,1.258,1.484,0,5.420698,8,4.5 +19113,0,0.21111,1,1,0,2,5,,3,2,Randolph,St,1678702,0.365,0.576,0,5.066638,8,4.5 +22445,0,0.219636,1,1,0,2,4,,3,2,Edward Hines,Dr,4705216,0,0.22,0,5.271258,6,4.5 +33946,0,0.396261,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.510269,0.15,4 +17711,0,0.071016,1,1,0,2,5,,3,2,Rogers,St,1680301,0.206,0.277,0,1.704394,8,4.5 +18699,0,0.113382,1,1,0,2,5,,3,2,Main,St,1680704,1.145,1.258,0,2.721161,8,4.5 +19064,0,0.063783,1,1,0,2,4,,3,2,Fairbrook,St,1680703,3.223,3.286,0,1.530793,6,4.5 +31476,0,0.093793,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.25102,0.15,4 +31478,0,0.065855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.580528,0.15,4 +33945,0,0.262035,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.288847,0.15,4 +17837,0,0.20577,1,1,0,2,5,,3,2,Rogers,St,1680301,0,0.206,0,4.938478,8,4.5 +17682,0,0.530425,1,1,0,2,3,,3,2,Sheldon,Rd,5495471,4.955,5.486,0,12.73019,5,5 +18141,-1,0.116283,0,1,0,2,4,,3,2,7 Mile,Rd,1680201,0,0.116,0,2.790781,6,4.5 +22442,0,0.02495,1,1,0,2,3,,3,2,Edward Hines,Dr,4705216,0.418,0.443,0,0.598811,5,5 +22443,0,0.110647,1,1,0,2,3,,3,2,Edward Hines,Dr,4705216,0.307,0.418,0,2.655524,5,5 +22444,0,0.087876,1,1,0,2,4,,3,2,Edward Hines,Dr,4705216,0.22,0.307,0,2.109028,6,4.5 +24537,1,0.096447,1,0,0,2,4,,3,2,7 Mile,Rd,4708217,0,0.096,0,2.31472,6,4.5 +18293,0,0.170979,1,1,0,2,4,,3,2,Main,St,1680704,1.541,1.712,0,4.10349,6,4.5 +33947,0,0.202088,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.850115,0.15,4 +17673,0,0.118384,1,1,0,2,3,,3,2,Center,St,5495471,5.842,5.96,0,2.841218,5,5 +18617,0,0.057273,1,1,0,2,4,,3,2,Main,St,1680704,1.484,1.541,0,1.374562,6,4.5 +18140,0,0.580343,1,1,0,2,4,,4,2,Northville,Rd,1679402,1.395,1.975,0,13.928239,4.5,4.5 +18603,0,0.535637,1,1,0,2,5,,4,2,Bradner,Rd,1689501,0.767,1.303,0,12.855278,5.8,4.5 +18717,0,0.442085,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,4.165,4.607,0,10.610034,4.5,4.5 +31465,0,0.519301,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.463227,0.15,4 +31770,0,0.480311,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.527472,0.15,4 +31754,0,0.359108,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.618583,0.15,4 +17717,0,0.38804,1,1,0,2,4,,4,2,Northville,Rd,1679402,1.975,2.363,0,9.312964,4.5,4.5 +19169,0,0.297931,1,1,0,2,4,,4,2,6 Mile,Rd,1680701,3.867,4.165,0,7.150344,4.5,4.5 +31701,0,0.093785,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.250843,0.15,4 +17777,-1,0.281217,0,2,0,2,4,DV2,3,2,Main,St,1680704,1.946,2.227,0,6.749197,6,4.5 +22420,-1,0.174459,0,2,0,2,4,DV2,3,2,Main,St,4700528,0.054,0.228,0,4.187024,6,4.5 +31781,0,0.599151,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.379629,0.15,4 +17775,0,0.261568,2,1,1,2,4,,3,2,7 Mile,Rd,1698901,0,0.262,0,6.277633,6,4.5 +18339,1,0.05259,1,0,0,2,4,DV2,3,2,Main,St,1679402,2.956,3.009,0,1.262159,6,4.5 +21875,-1,0.053837,0,1,0,2,4,DV2,3,2,Main,St,4700528,0,0.054,0,1.292077,6,4.5 +18676,0,0.043147,1,1,0,2,4,,3,2,Main,St,1679402,2.913,2.956,0,1.035524,6,4.5 +17944,0,0.011332,1,1,0,2,4,,3,2,7 Mile,Rd,1680201,0.316,0.327,0,0.271958,6,4.5 +22419,-1,0.105236,0,2,0,2,4,DV2,3,2,Main,St,4700528,0.228,0.333,0,2.525667,6,4.5 +386,0,0.510253,1,1,0,2,4,,4,3,9 Mile,Rd,633603,5.209,5.719,0,12.246067,4.5,4.5 +1028,0,0.377767,1,1,0,2,3,,3,3,Novi,Rd,621910,4.614,4.992,0,9.06641,5,5 +1498,0,0.606509,1,1,0,2,3,,3,3,Novi,Rd,621910,4.008,4.614,0,14.556211,5,5 +3103,0,0.380695,1,1,0,2,3,,4,3,10 Mile,Rd,656510,9.439,9.819,0,9.136678,3.7,5 +18928,0,0.084127,1,1,0,2,4,,3,2,Griswold,St,1680204,0.449,0.533,0,2.019057,6,4.5 +22149,0,0.386552,1,1,0,2,3,,3,3,8 Mile,Rd,4412702,0.776,1.162,0,9.277242,5,5 +26871,0,0.533659,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.807826,0.15,4 +26877,0,0.282809,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.787407,0.15,4 +22153,0,0.499606,2,2,0,2,3,,3,3,8 Mile,Rd,4412702,0,0.499,0,11.990544,5,5 +26744,0,0.269685,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.47245,0.15,4 +18130,0,0.025793,1,1,0,2,5,,3,3,Randolph,St,1678702,0,0.026,0,0.619041,8,4.5 +3304,0,0.15304,1,1,0,2,3,,3,3,Center,St,656609,0,0.153,0,3.672949,5,5 +22152,0,0.253244,2,2,0,2,3,,3,3,8 Mile,Rd,4412702,0.499,0.753,0,6.077856,5,5 +26879,0,0.270826,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.499819,0.15,4 +30235,0,0.096096,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.306299,0.15,4 +22150,0,0.023123,2,2,0,2,3,,3,3,8 Mile,Rd,4412702,0.753,0.776,0,0.554961,5,5 +26855,0,0.765325,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.367803,0.15,4 +26747,0,0.244109,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.858619,0.15,4 +3441,0,0.129092,1,1,0,2,3,,4,3,10 Mile,Rd,656510,9.31,9.439,0,3.098196,3.7,5 +20939,0,0.427806,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0,0.428,0,10.267345,5,5 +26872,0,0.343841,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.252176,0.15,4 +26882,0,0.592672,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.224131,0.15,4 +18041,1,0.183663,1,0,0,2,4,DV2,3,2,Griswold,St,1680204,0.653,0.837,0,4.407914,6,4.5 +21874,-1,0.282156,0,1,0,2,4,DV2,3,2,Griswold,St,4700508,0,0.282,0,6.771734,6,4.5 +22147,0,0.132674,1,1,0,2,3,,3,3,8 Mile,Rd,4412702,1.162,1.295,0,3.184169,5,5 +18456,1,0.119648,1,0,0,2,4,DV2,3,2,Griswold,St,1680204,0.533,0.653,0,2.87156,6,4.5 +22438,0,0.079977,1,1,0,2,4,,3,3,Griswald,Rd,4705227,0.027,0.107,0,1.919441,6,4.5 +22440,-1,0.026954,0,1,0,2,4,DV2,3,3,Griswald,Rd,4705227,0,0.027,0,0.646905,6,4.5 +22437,0,0.058862,1,1,0,2,4,,3,3,Griswald,Rd,4705227,0.107,0.166,0,1.412678,6,4.5 +848,0,0.321036,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.888,5.209,0,7.704872,6,4.5 +1133,0,0.399633,1,1,0,2,3,,3,3,Novi,Rd,621910,3.211,3.611,0,9.591188,5,5 +3101,0,0.343259,1,1,0,2,3,,3,3,10 Mile,Rd,656510,9.982,10.325,0,8.238211,5,5 +26745,0,0.302102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.250447,0.15,4 +26875,0,0.510988,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.263721,0.15,4 +26881,0,0.50257,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.061691,0.15,4 +1957,0,0.290285,1,1,0,2,3,,3,3,Novi,Rd,621910,3.718,4.008,0,6.966844,5,5 +402,0,0.106799,1,1,0,2,3,,3,3,Novi,Rd,621910,3.611,3.718,0,2.563184,5,5 +3437,0,0.162591,1,1,0,2,3,,3,3,10 Mile,Rd,656510,9.819,9.982,0,3.902186,5,5 +26746,0,0.37513,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.00312,0.15,4 +1614,0,0.200503,1,1,0,2,3,,3,3,Novi,Rd,621910,3.011,3.211,0,4.812077,5,5 +1307,0,0.336779,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.551,4.888,0,8.082697,6,4.5 +2455,0,0.173676,1,1,0,2,3,,3,3,10 Mile,Rd,656510,10.325,10.498,0,4.168234,5,5 +26874,0,0.538548,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.925145,0.15,4 +17754,0,0.475838,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,3.139,3.614,0,11.420106,6,4.5 +18086,0,0.532935,1,1,1,2,4,,3,2,6 Mile,Rd,1680701,5.032,5.564,0,12.790451,6,4.5 +18876,0,0.594521,1,1,1,2,4,,3,2,7 Mile,Rd,1698901,1.503,2.098,0,14.268502,6,4.5 +31715,0,0.496229,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.909492,0.15,4 +31767,0,0.419826,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.075835,0.15,4 +31774,0,0.514229,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.341506,0.15,4 +33764,0,1.111445,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,26.67469,0.15,4 +31768,0,0.472157,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.331767,0.15,4 +19084,0,0.507814,1,1,1,2,4,,3,2,7 Mile,Rd,1698901,0.996,1.503,0,12.187529,6,4.5 +31778,0,0.440094,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.562259,0.15,4 +17575,0,0.248948,1,1,1,2,4,,3,2,7 Mile,Rd,1698901,0.747,0.996,0,5.974763,6,4.5 +17761,0,0.500558,1,1,1,2,4,,3,2,6 Mile,Rd,1680701,5.564,6.065,0,12.013387,6,4.5 +18272,0,0.333828,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,2.295,2.629,0,8.011882,6,4.5 +31709,0,0.384896,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.237502,0.15,4 +31710,0,0.49562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.894892,0.15,4 +31711,0,0.538131,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.915148,0.15,4 +30400,0,0.188808,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.531393,0.15,4 +17566,0,0.186208,2,2,1,2,4,,3,2,6 Mile,Rd,1680701,6.065,6.251,0,4.469001,6,4.5 +17982,0,0.510057,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,2.629,3.139,0,12.24136,6,4.5 +31713,0,0.500875,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.021004,0.15,4 +33763,0,0.218562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.245485,0.15,4 +17453,0,0.37159,2,2,1,2,4,,3,2,Haggerty,Rd,1689610,3.614,3.986,0,8.918155,6,4.5 +31723,0,0.367969,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.831268,0.15,4 +31775,0,0.507443,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.178627,0.15,4 +18504,0,0.191676,2,2,0,2,4,,3,2,7 Mile,Rd,1700106,0,0.192,0,4.600236,6,4.5 +31714,0,0.171917,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.126017,0.15,4 +1762,-1,1.565597,0,4,0,1,1,,3,3,W I 96,,639107,2.347,3.912,0,,0.58,7 +1919,0,0.605229,2,2,1,2,3,,3,3,Haggerty,Rd,639005,0.432,1.037,0,14.525492,5,5 +2134,0,0.56523,1,1,0,2,4,,3,3,9 Mile,Rd,633603,3.647,4.212,0,13.56553,6,4.5 +2992,0,0.391354,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,0.609,1,0,9.392492,6,4.5 +20935,0,0.260725,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,1.262,1.523,0,6.257397,5,5 +24870,0,0.586303,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.071268,0.15,4 +26152,0,0.519505,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.468129,0.15,4 +26883,0,0.503869,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.092849,0.15,4 +26884,0,0.557754,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.386084,0.15,4 +26885,0,0.569542,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.669001,0.15,4 +26887,0,0.265428,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.370276,0.15,4 +2993,0,0.468092,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,0,0.468,0,11.234214,6,4.5 +20936,0,0.501969,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0.76,1.262,0,12.047257,5,5 +25070,0,0.52624,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.62976,0.15,4 +20937,0,0.246513,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,0.514,0.76,0,5.916314,5,5 +3303,0,0.140663,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,0.468,0.609,0,3.37591,6,4.5 +2986,0,0.191276,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.272,1.463,0,4.590626,6,4.5 +24868,0,0.53608,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.865913,0.15,4 +26886,0,0.506393,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.15343,0.15,4 +1634,0,0.249648,1,1,1,2,4,,3,3,9 Mile,Rd,633603,4.212,4.462,0,5.991549,6,4.5 +3290,0,0.27177,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1,1.272,0,6.522471,6,4.5 +2983,0,0.323465,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.674,1.997,0,7.763155,6,4.5 +3288,0,0.211458,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,1.463,1.674,0,5.074997,6,4.5 +362,0,0.431805,2,2,1,2,3,,3,3,Haggerty,Rd,639005,0,0.432,0,10.363309,5,5 +745,1,0.390646,1,0,0,1,1,ROF,3,3,E I 96/8 Mile,RAMP,633501,0,0.391,0,,2.24,5 +1876,1,0.299545,4,0,0,1,1,,3,3,E I 96,,639202,3.662,3.961,0,,0.58,7 +20933,0,0.038174,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.654,1.692,0,0.916185,5,5 +20934,0,0.130928,1,1,0,2,3,,3,3,8 Mile,Rd,4412701,1.523,1.654,0,3.142268,5,5 +3128,1,0.284294,1,0,0,1,1,RON,3,3,W 8 Mile/W I 96,RAMP,656710,0,0.284,0,,1.09,4 +16100,-1,0.045203,0,4,0,1,1,,3,2,W I 96,,1607506,0,0.045,0,,0.58,7 +16780,1,0.244109,4,0,0,1,1,,3,2,E I 96,,1607802,0,0.244,0,,0.58,7 +16856,1,0.300294,1,0,0,1,1,RON,3,2,8 Mile/W I 96,RAMP,1607508,0,0.3,0,,1.09,4 +16944,1,0.353901,1,0,0,1,1,RON,3,2,8 Mile/E I 96,RAMP,1607809,0,0.354,0,,1.09,4 +20930,0,0.07616,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.828,1.905,0,1.827834,5,5 +1267,-1,0.189502,0,4,0,1,1,,3,3,W I 96,,639107,3.912,4.101,0,,0.58,7 +2863,1,0.291917,1,0,0,1,1,RON,3,3,W 8 Mile/E I 96,RAMP,656709,0,0.292,0,,1.09,4 +20931,0,0.099033,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.729,1.828,0,2.376798,5,5 +20932,0,0.037521,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.692,1.729,0,0.900515,5,5 +1368,1,0.04058,4,0,0,1,1,,3,3,E I 96,,639202,3.961,4.002,0,,0.58,7 +20929,0,0.106602,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,1.905,2.011,0,2.55844,5,5 +20928,0,0.039973,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.011,2.051,0,0.959341,5,5 +868,0,0.3941,1,1,0,2,4,,3,3,9 Mile,Rd,633603,3.174,3.568,0,9.458404,6,4.5 +1691,0,0.407612,1,1,1,2,3,,3,3,Haggerty,Rd,639005,1.037,1.444,0,9.782686,5,5 +604,0,0.079227,1,1,0,2,4,,3,3,9 Mile,Rd,633603,3.568,3.647,0,1.901454,6,4.5 +1333,0,0.279359,1,1,0,2,4,,3,3,9 Mile,Rd,633603,2.895,3.174,0,6.704609,6,4.5 +772,0,0.089237,2,2,0,2,3,,3,3,Haggerty,Rd,639005,1.453,1.542,0,2.141689,5,5 +1208,0,0.008998,2,2,0,2,3,,3,3,Haggerty,Rd,639005,1.444,1.453,0,0.215945,5,5 +16103,0,0.518225,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,1.857,2.375,0,12.43741,6,4.5 +16131,1,1.004492,4,0,0,1,1,,3,2,E I 96,,1606201,2.615,3.619,0,,0.58,7 +16230,0,0.26709,2,2,0,2,5,,3,2,Stark,Rd,1604610,0.664,0.931,0,6.410161,8,4.5 +16600,-1,0.989975,0,4,0,1,1,,3,2,W I 96,,1606503,2.373,3.362,0,,0.58,7 +16900,0,0.503947,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,7.83,8.334,0,12.094717,5,5 +16959,0,0.635322,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.805,4.44,0,15.247726,6,4.5 +17128,0,0.312995,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.2,0.513,0,7.511872,6,4.5 +17871,0,0.778097,1,1,0,2,4,,3,2,Joy,Rd,1672705,7.105,7.883,0,18.674336,6,4.5 +17949,0,0.136244,2,2,0,2,5,,3,2,Cowan,Rd,1669910,1.246,1.382,0,3.269867,8,4.5 +18050,0,0.313306,2,2,1,2,3,,3,2,Farmington,Rd,1690602,1.261,1.574,0,7.51935,5,5 +18961,0,1.249372,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,4.489,5.738,0,29.98492,5,5 +19123,0,0.399524,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,2.07,2.469,0,9.588583,6,4.5 +23117,-1,0.602235,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.854,3.456,0,14.45364,8,4.5 +23694,1,0.391608,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.543,2.935,0,9.398598,8,4.5 +24044,0,0.073974,2,2,1,2,4,,3,2,Warren,Rd,4710470,8.007,8.081,0,1.775387,6,4.5 +24133,0,0.44027,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.113,6.553,0,10.56647,6,4.5 +31330,0,0.248667,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.968008,0.15,4 +31730,0,0.248779,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.970707,0.15,4 +31788,0,0.324376,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.785029,0.15,4 +31791,0,0.405429,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.730292,0.15,4 +31794,0,0.314595,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.550288,0.15,4 +31796,0,0.256844,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.164256,0.15,4 +31797,0,0.436875,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.485,0.15,4 +31815,0,0.524606,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.590551,0.15,4 +31843,0,0.541596,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.998312,0.15,4 +33767,0,0.459611,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.030653,0.15,4 +15099,0,0.68188,1,1,0,2,5,,3,2,Hix,Rd,1595808,2.18,2.861,0,16.365111,8,4.5 +16565,0,0.289074,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,7.259,7.548,0,6.937766,5,5 +17060,0,0.257786,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,1.003,1.261,0,6.186861,6,4.5 +17633,0,0.175547,1,1,1,2,4,,3,2,Joy,Rd,1672705,6.473,6.648,0,4.213125,6,4.5 +17708,0,0.18819,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,2.585,2.773,0,4.516549,6,4.5 +18719,0,0.243389,1,1,0,2,4,,3,2,Joy,Rd,1672705,5.894,6.138,0,5.841334,6,4.5 +24147,0,0.594673,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,5.051,5.645,0,14.272163,6,4.5 +24148,0,0.461957,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,4.589,5.051,0,11.086957,6,4.5 +31324,0,0.329408,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.905802,0.15,4 +31502,0,0.497172,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.932122,0.15,4 +31505,0,0.67877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.29047,0.15,4 +31733,0,0.48295,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.590792,0.15,4 +31504,0,0.246302,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.911245,0.15,4 +31507,0,0.709993,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.039829,0.15,4 +31322,0,0.270855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.500508,0.15,4 +18021,0,0.087041,1,1,0,2,4,,3,2,Joy,Rd,1672705,5.807,5.894,0,2.088989,6,4.5 +16407,0,0.259622,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,0.497,0.757,0,6.230927,6,4.5 +16920,0,0.243529,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.727,6.97,0,5.844695,5,5 +18278,0,0.237281,1,1,1,2,4,,3,2,Joy,Rd,1672705,6.138,6.375,0,5.69475,6,4.5 +23288,0,0.166908,1,1,0,2,5,,3,2,Hix,Rd,4705254,0,0.167,0,4.005783,8,4.5 +31732,0,0.485833,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.659994,0.15,4 +14852,0,0.3331,1,1,0,2,5,,3,2,Hix,Rd,1595808,2.861,3.194,0,7.994399,8,4.5 +16954,0,0.223797,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.446,6.669,0,5.371136,5,5 +31727,0,0.276877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.645037,0.15,4 +15682,0,0.172075,1,1,0,2,5,,3,2,Hix,Rd,1595808,3.194,3.366,0,4.129805,8,4.5 +31726,0,0.16751,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.020238,0.15,4 +31728,0,0.020776,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.498616,0.15,4 +16951,0,0.05736,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.669,6.727,0,1.376647,5,5 +18059,0,0.09763,1,1,1,2,4,,3,2,Joy,Rd,1672705,6.375,6.473,0,2.343131,6,4.5 +16120,0,0.246672,1,1,1,2,4,,3,2,Ann Arbor,Trl,1604508,0.757,1.003,0,5.920136,6,4.5 +16444,0,0.288516,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,6.97,7.259,0,6.924376,5,5 +24145,0,0.213123,2,2,0,2,4,,3,2,Newburgh,Rd,4710394,5.855,6.068,0,5.114958,6,4.5 +24146,0,0.20931,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,5.645,5.855,0,5.023441,6,4.5 +18395,0,0.09685,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,4.392,4.489,0,2.324408,5,5 +18787,0,0.116205,2,2,0,2,4,,3,2,Plymouth,Rd,1680408,2.469,2.585,0,2.788915,6,4.5 +19602,0,0.093707,1,1,0,2,5,,3,2,Jughandle,Rd,1909401,0,0.094,0,2.248962,8,4.5 +24142,0,0.045519,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.068,6.113,0,1.092451,6,4.5 +31503,0,0.450527,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.812658,0.15,4 +31509,0,0.373745,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.96987,0.15,4 +17959,0,0.196168,2,2,0,2,5,,3,2,Cowan,Rd,1669910,0.994,1.19,0,4.70804,8,4.5 +24045,0,0.248885,2,2,1,2,4,,3,2,Warren,Rd,4710470,7.758,8.007,0,5.973241,6,4.5 +31804,0,0.077693,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.864637,0.15,4 +18361,0,0.016297,2,2,1,2,5,,3,2,Central City,Pkwy,1669910,0.978,0.994,0,0.391133,8,4.5 +31805,0,0.094618,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.270826,0.15,4 +18340,0,0.055971,2,2,0,2,5,,3,2,Cowan,Rd,1669910,1.19,1.246,0,1.343307,8,4.5 +16697,0,0.59599,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,1.261,1.857,0,14.303749,6,4.5 +16902,0,0.21967,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,7.611,7.83,0,5.272092,5,5 +19044,0,0.456953,1,1,0,2,4,,3,2,Joy,Rd,1672705,6.648,7.105,0,10.96688,6,4.5 +31787,0,0.308049,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.393174,0.15,4 +31785,0,0.333698,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.008744,0.15,4 +31786,0,0.48318,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.596329,0.15,4 +16603,-1,0.71121,0,4,0,1,1,,3,2,W I 96,,1606503,1.224,1.935,0,,0.58,7 +16963,0,0.228615,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,2.938,3.167,0,5.486751,6,4.5 +17018,1,0.758693,4,0,0,1,1,,3,2,E I 96,,1606201,1.416,2.174,0,,0.58,7 +17122,0,0.518785,2,2,0,2,4,,3,2,Levan,Rd,1604605,1.213,1.732,0,12.450843,6,4.5 +18000,0,0.110854,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,0.987,1.098,0,2.660493,8,4.5 +22425,1,0.135155,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,1.955,2.09,0,3.243714,8,4.5 +23227,-1,0.160337,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,1.973,2.133,0,3.848091,8,4.5 +24128,0,0.485848,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,7.064,7.55,0,11.660342,6,4.5 +31706,0,0.250461,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.011059,0.15,4 +31707,0,0.468376,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.241034,0.15,4 +31722,0,0.475404,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.409685,0.15,4 +31735,0,0.535661,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.855868,0.15,4 +31799,0,0.471482,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.315578,0.15,4 +16919,1,0.329223,1,0,0,1,1,ROF,3,2,E I 96/Newburgh,RAMP,1606206,0,0.329,0,,2.24,5 +17088,1,0.165028,1,0,0,1,1,RON,3,2,Newburgh/W I 96,RAMP,1606003,0,0.165,0,,1.09,4 +22430,1,0.251675,2,0,0,2,4,DIV,3,2,Schoolcraft,Rd,4705231,1.582,1.834,0,6.040197,6,4.5 +23230,-1,0.297482,0,2,0,2,4,DIV,3,2,Schoolcraft,Rd,4705258,1.464,1.762,0,7.139566,6,4.5 +24131,0,0.314155,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.553,6.867,0,7.539708,6,4.5 +31716,0,0.141695,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.400684,0.15,4 +31717,0,0.541469,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.995245,0.15,4 +31718,0,0.260446,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.2507,0.15,4 +16713,1,0.308169,4,0,0,1,1,,3,2,E I 96,,1606201,1.107,1.416,0,,0.58,7 +31703,0,0.152749,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.665972,0.15,4 +18185,0,0.34002,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,0.647,0.987,0,8.160479,8,4.5 +23228,-1,0.21164,0,3,0,2,4,,3,2,Schoolcraft,Rd,4705258,1.762,1.973,0,5.079369,6,4.5 +24129,0,0.058765,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,7.006,7.064,0,1.410364,6,4.5 +22429,1,0.120823,3,0,0,2,4,,3,2,Schoolcraft,Rd,4705231,1.834,1.955,0,2.899762,6,4.5 +24130,0,0.138237,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,6.867,7.006,0,3.317681,6,4.5 +16653,0,0.424672,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,2.514,2.938,0,10.192118,6,4.5 +24127,0,0.501749,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,7.55,8.052,0,12.041981,6,4.5 +31705,0,0.467428,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.218278,0.15,4 +31708,0,0.460511,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.05227,0.15,4 +16706,1,0.440846,4,0,0,1,1,,3,2,E I 96,,1606201,2.174,2.615,0,,0.58,7 +16841,0,0.237437,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.699,0.937,0,5.698497,6,4.5 +16893,-1,0.437474,0,4,0,1,1,,3,2,W I 96,,1606503,1.935,2.373,0,,0.58,7 +17671,0,0.390593,1,1,0,2,5,,3,2,Amrhein,Rd,1695805,1.098,1.488,0,9.374225,8,4.5 +22422,1,0.2501,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.208,2.458,0,6.002395,8,4.5 +23194,-1,0.2626,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.214,2.477,0,6.302392,8,4.5 +31792,0,0.255514,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.132342,0.15,4 +31793,0,0.231157,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.547762,0.15,4 +16617,1,0.177568,1,0,0,1,1,RON,3,2,Newburgh/E I 96,RAMP,1606208,0,0.178,0,,1.09,4 +16789,1,0.175423,1,0,0,1,1,ROF,3,2,W I 96/Newburgh,RAMP,1606005,0,0.175,0,,2.24,5 +22424,1,0.118399,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.09,2.208,0,2.841583,8,4.5 +23196,-1,0.080663,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.133,2.214,0,1.93592,8,4.5 +17125,0,0.186325,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.513,0.699,0,4.47179,6,4.5 +16839,1,0.169366,1,0,0,1,1,ROF,3,2,W I 96/Levan,RAMP,1606505,0,0.169,0,,2.24,5 +16918,1,0.164957,1,0,0,1,1,RON,3,2,Levan/E I 96,RAMP,1606209,0,0.165,0,,1.09,4 +17124,0,0.215894,2,2,0,2,4,,3,2,Levan,Rd,1604605,0.937,1.152,0,5.181455,6,4.5 +23147,-1,0.276682,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.577,2.854,0,6.640361,8,4.5 +31782,0,0.263503,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.324082,0.15,4 +31783,0,0.226516,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.436384,0.15,4 +31836,0,0.302402,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.257648,0.15,4 +23192,-1,0.100404,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,2.477,2.577,0,2.409688,8,4.5 +23350,1,0.011361,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.532,2.543,0,0.272654,8,4.5 +16838,0,0.060958,2,2,0,2,4,,3,2,Levan,Rd,1604605,1.152,1.213,0,1.462986,6,4.5 +22614,1,0.073592,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.458,2.532,0,1.766202,8,4.5 +16083,0,0.354354,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.44,3.794,0,8.504499,6,4.5 +16836,0,0.466408,2,2,0,2,4,,3,2,Levan,Rd,1604605,1.732,2.198,0,11.193799,6,4.5 +31798,0,0.519572,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.469724,0.15,4 +31806,0,0.253925,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.094208,0.15,4 +31807,0,0.511946,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.286697,0.15,4 +16650,0,0.273042,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.167,3.44,0,6.553019,6,4.5 +31846,0,0.344341,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.264184,0.15,4 +16961,0,0.010854,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,3.794,3.805,0,0.26049,6,4.5 +16783,0,0.503344,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,8.83,9.333,0,12.080263,5,5 +17013,0,0.528153,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,2.691,3.219,0,12.675661,6,4.5 +17648,0,0.196198,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,6.897,7.093,0,4.708749,5,5 +18075,0,0.641513,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,6.256,6.897,0,15.39632,5,5 +18379,0,0.637131,1,1,0,2,5,,3,2,Cowan,Rd,1669808,0,0.637,0,15.291151,8,4.5 +18712,0,0.121475,1,1,0,2,5,,3,2,Farmington,Rd,1690602,0.142,0.263,0,2.915391,8,4.5 +24013,0,0.57085,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.893,11.463,0,13.700403,5,5 +24040,0,0.220389,2,2,1,2,3,,3,2,Warren,Rd,4710470,8.741,8.961,0,5.289342,5,5 +31318,0,0.659446,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.826697,0.15,4 +31808,0,0.38156,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.157444,0.15,4 +18317,0,0.480205,1,1,0,2,5,,3,2,Cowan,Rd,1669910,1.382,1.862,0,11.524929,8,4.5 +24042,0,0.245585,2,2,1,2,4,,3,2,Warren,Rd,4710470,8.295,8.54,0,5.894039,6,4.5 +24437,0,0.109635,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.783,10.893,0,2.631238,5,5 +31803,0,0.332062,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.969477,0.15,4 +31812,0,0.285518,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.852437,0.15,4 +24043,0,0.213984,2,2,1,2,4,,3,2,Warren,Rd,4710470,8.081,8.295,0,5.135612,6,4.5 +31813,0,0.141761,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.402275,0.15,4 +24020,0,0.326408,2,2,1,2,3,,3,2,Wayne,Rd,4719470,10.457,10.783,0,7.833793,5,5 +24041,0,0.200789,2,2,1,2,3,,3,2,Warren,Rd,4710470,8.54,8.741,0,4.818938,5,5 +16886,0,0.248361,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,8.582,8.83,0,5.960673,5,5 +17112,0,0.221222,1,1,0,2,5,,3,2,Stark,Rd,1604610,0,0.221,0,5.309336,8,4.5 +18482,0,0.517625,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,5.738,6.256,0,12.422997,5,5 +24521,0,0.450873,2,2,0,2,3,,3,2,Wayne,Rd,4719470,11.643,12.094,0,10.820945,5,5 +31784,0,0.47366,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.367848,0.15,4 +31790,0,0.365516,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.772388,0.15,4 +16391,0,0.247803,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,8.334,8.582,0,5.947277,5,5 +24113,0,0.21898,2,2,0,2,3,,3,2,Wayne,Rd,4719470,12.249,12.467,0,5.255516,5,5 +24365,0,0.1548,2,2,0,2,3,,3,2,Wayne,Rd,4719470,12.094,12.249,0,3.715203,5,5 +16265,0,0.316571,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,2.375,2.691,0,7.597701,6,4.5 +24436,0,0.17974,2,2,1,2,3,,3,2,Wayne,Rd,4719470,11.463,11.643,0,4.313758,5,5 +16822,0,0.442881,1,1,0,2,5,,3,2,Stark,Rd,1604610,0.221,0.664,0,10.629138,8,4.5 +31809,0,0.141693,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.400621,0.15,4 +17967,0,0.390689,1,1,0,2,5,,3,2,Cowan,Rd,1669808,0.637,1.028,0,9.376542,8,4.5 +24039,0,0.575933,2,2,1,2,3,,3,2,Warren,Rd,4710470,8.961,9.537,0,13.82238,5,5 +30278,0,0.432396,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.377501,0.15,4 +31319,0,0.222345,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.336283,0.15,4 +31323,0,0.198551,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.765213,0.15,4 +31321,0,0.144097,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.458319,0.15,4 +16997,0,0.09225,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,3.219,3.312,0,2.214008,6,4.5 +18711,0,0.141806,1,1,0,2,5,,3,2,Farmington,Rd,1690602,0,0.142,0,3.403353,8,4.5 +15838,0,0.094823,1,1,0,2,5,,3,2,Venoy,Rd,1599408,4.985,5.08,0,2.275764,8,4.5 +15837,0,0.075562,1,1,0,2,5,,3,2,Venoy,Rd,1599408,5.08,5.155,0,1.813495,8,4.5 +16942,0,0.502462,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,9.333,9.836,0,12.059099,5,5 +17477,0,0.505774,1,1,0,2,5,,3,2,Chicago,Rd,1696207,0.505,1.01,0,12.138568,8,4.5 +17983,0,0.110733,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.714,0.825,0,2.657601,6,4.5 +31810,0,0.50451,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.108247,0.15,4 +18492,0,0.256102,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.263,0.519,0,6.146459,6,4.5 +18502,0,0.041124,1,1,0,2,4,,3,2,Joy,Rd,1677810,0,0.041,0,0.986981,6,4.5 +18168,0,0.195142,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.519,0.714,0,4.683397,6,4.5 +17454,0,0.311292,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.95,1.261,0,7.470999,6,4.5 +17658,0,0.124803,1,1,0,2,4,,3,2,Farmington,Rd,1690602,0.825,0.95,0,2.995262,6,4.5 +31307,0,0.251717,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.041205,0.15,4 +31309,0,0.247734,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.945604,0.15,4 +16081,0,0.238712,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,4.504,4.742,0,5.729089,6,4.5 +16825,1,0.411613,1,0,0,2,5,DV2,3,2,Hubbard,Rd,1606910,0.07,0.481,0,9.878705,8,4.5 +17109,0,0.48082,2,2,0,2,5,,3,2,Stark,Rd,1604610,1.706,2.186,0,11.539676,8,4.5 +17110,0,0.20972,2,2,0,2,5,,3,2,Stark,Rd,1604610,1.436,1.646,0,5.03329,8,4.5 +18142,0,0.482551,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.275,2.757,0,11.581226,5,5 +22737,-1,0.481263,0,1,0,2,5,DV2,3,2,Hubbard,Rd,4706083,0,0.481,0,11.550324,8,4.5 +23112,-1,0.26822,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.456,3.724,0,6.437274,8,4.5 +23687,1,0.279097,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.414,3.693,0,6.698328,8,4.5 +31334,0,0.408035,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.792841,0.15,4 +31818,0,0.168215,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.037168,0.15,4 +31820,0,0.489423,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.746148,0.15,4 +31821,0,0.546071,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.105705,0.15,4 +33609,0,0.220806,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.299341,0.15,4 +17111,0,0.505325,2,2,0,2,5,,3,2,Stark,Rd,1604610,0.931,1.436,0,12.127798,8,4.5 +23691,1,0.479881,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,2.935,3.414,0,11.517144,8,4.5 +31795,0,0.53493,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.838318,0.15,4 +31816,0,0.271125,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.507009,0.15,4 +31834,0,0.298593,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.166234,0.15,4 +31817,0,0.042613,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.022709,0.15,4 +31819,0,0.508306,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.199352,0.15,4 +16646,0,0.063748,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,4.44,4.504,0,1.52995,6,4.5 +16616,1,0.174631,1,0,0,1,1,RON,3,2,Farmington/E I 96,RAMP,1606304,0,0.175,0,,1.09,4 +16837,1,0.1567,1,0,0,1,1,ROF,3,2,W I 96/Farmington,RAMP,1606507,0,0.157,0,,2.24,5 +16888,-1,0.509817,0,4,0,1,1,,3,2,W I 96,,1606503,3.362,3.872,0,,0.58,7 +17015,1,0.491704,4,0,0,1,1,,3,2,E I 96,,1606201,3.619,4.11,0,,0.58,7 +17627,0,0.463018,2,2,1,2,3,,3,2,Farmington,Rd,1690602,1.574,2.037,0,11.112421,5,5 +23078,-1,0.385326,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,4.089,4.474,0,9.247828,8,4.5 +23623,1,0.425814,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,4.029,4.455,0,10.219539,8,4.5 +31801,0,0.504601,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.110424,0.15,4 +32572,0,0.506391,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.153372,0.15,4 +31800,0,0.240056,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.761355,0.15,4 +19037,0,0.178158,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.037,2.215,0,4.275803,5,5 +23108,-1,0.077693,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.895,3.973,0,1.864635,8,4.5 +23658,1,0.097288,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.858,3.955,0,2.334901,8,4.5 +16560,1,0.162585,1,0,0,1,1,RON,3,2,Farmington/W I 96,RAMP,1606506,0,0.163,0,,1.09,4 +23110,-1,0.171647,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.724,3.895,0,4.119532,8,4.5 +23686,1,0.164707,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.693,3.858,0,3.952958,8,4.5 +24241,1,0.149992,1,0,0,1,1,ROF,3,2,E I 96/Farmington,RAMP,4710335,0,0.15,0,,2.24,5 +16821,0,0.059799,2,2,0,2,5,,3,2,Stark,Rd,1604610,1.646,1.706,0,1.435187,8,4.5 +23107,-1,0.115762,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,3.973,4.089,0,2.778286,8,4.5 +23657,1,0.074196,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,3.955,4.029,0,1.780707,8,4.5 +18565,0,0.059968,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.215,2.275,0,1.439222,5,5 +31326,0,0.218518,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.244424,0.15,4 +31823,0,0.271763,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.522316,0.15,4 +16553,1,0.069812,1,0,0,2,5,DV2,3,2,Hubbard,Rd,1606910,0,0.07,0,1.675497,8,4.5 +16543,0,0.307391,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.68,0.987,0,7.377377,8,4.5 +16642,1,0.494418,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,4.949,5.443,0,11.866034,6,4.5 +18677,1,0.476859,2,0,0,2,3,DV2,3,2,Farmington,Rd,1690602,2.773,3.25,0,11.444618,5,5 +18989,1,0.370403,1,0,0,2,5,DV2,3,2,Lyndon,Ave,1696208,0.245,0.615,0,8.889682,8,4.5 +21629,-1,0.475925,0,2,0,2,3,DV2,3,2,Farmington,Rd,4700097,0,0.476,0,11.422195,5,5 +22244,-1,0.370423,0,1,0,2,5,DV2,3,2,Lyndon,Ave,4703056,0.236,0.607,0,8.890146,8,4.5 +22481,-1,0.494313,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0.205,0.699,0,11.863518,6,4.5 +18988,1,0.244963,2,0,0,2,5,DV2,3,2,Lyndon,Rd,1696208,0,0.245,0,5.879115,8,4.5 +22245,-1,0.236327,0,2,0,2,5,DV2,3,2,Lyndon,Rd,4703056,0,0.236,0,5.671859,8,4.5 +16820,-1,0.013679,0,2,0,2,5,DV2,3,2,Stark,Rd,1604610,2.186,2.2,0,0.328305,8,4.5 +17721,0,0.007047,2,2,1,2,3,,3,2,Farmington,Rd,1690602,2.757,2.765,0,0.169132,5,5 +19132,0,0.008288,2,2,0,2,3,,3,2,Farmington,Rd,1690602,2.765,2.773,0,0.198922,5,5 +16953,1,0.195095,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,4.742,4.937,0,4.682269,6,4.5 +18143,1,0.23512,2,0,0,2,3,DV2,3,2,Farmington,Rd,1690602,3.268,3.503,0,5.642888,5,5 +21541,-1,0.235011,0,2,0,2,3,DV2,3,2,Farmington,Rd,4700097,0.494,0.729,0,5.640254,5,5 +22483,-1,0.193412,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0,0.193,0,4.641891,6,4.5 +16947,1,0.01136,3,0,0,2,4,DV2,3,2,5 Mile,Rd,1606203,4.937,4.949,0,0.27263,6,4.5 +18344,1,0.018299,2,0,0,2,3,DV2,3,2,Farmington,Rd,1690602,3.25,3.268,0,0.439187,5,5 +21630,-1,0.018232,0,2,0,2,3,DV2,3,2,Farmington,Rd,4700097,0.476,0.494,0,0.437574,5,5 +22482,-1,0.011412,0,3,0,2,4,DV2,3,2,5 Mile,Rd,4705000,0.193,0.205,0,0.273886,6,4.5 +18737,1,0.130933,1,0,0,2,5,DV2,3,2,Lyndon,Ave,1696208,0.615,0.746,0,3.142401,8,4.5 +22243,-1,0.130876,0,1,0,2,5,DV2,3,2,Lyndon,Ave,4703056,0.607,0.737,0,3.14103,8,4.5 +31332,0,0.146081,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.50595,0.15,4 +31333,0,0.139185,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.340437,0.15,4 +16824,0,0.185277,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.495,0.68,0,4.446652,8,4.5 +31343,0,0.214743,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.153841,0.15,4 +16544,0,0.01326,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.481,0.495,0,0.318246,8,4.5 +16542,0,0.243792,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,1.001,1.244,0,5.851015,8,4.5 +16823,0,0.013673,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,0.987,1.001,0,0.32815,8,4.5 +591,0,0.329053,1,1,0,2,5,,3,3,Lytle,,637710,0,0.329,0,7.897274,8,4.5 +1044,0,0.230462,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.195,1.425,0,5.531097,8,4.5 +1794,0,0.239635,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.95,1.19,0,5.751238,6,4.5 +2460,1,1.849172,2,0,0,1,2,,3,3,E M 5,,657303,14.184,16.033,0,,0.58,7 +17542,0,0.403824,1,1,0,2,5,,3,2,Gill,Rd,1700705,1.025,1.428,0,9.691787,8,4.5 +17885,0,0.565475,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.873,8.438,0,13.571394,5,5 +18345,0,0.456573,2,2,1,2,3,,3,2,Farmington,Rd,1690602,5.799,6.255,0,10.957742,5,5 +18428,0,0.742178,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,1.731,2.473,0,17.812273,5,5 +20922,0,0.75389,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,3.505,4.259,0,18.093362,5,5 +24110,0,0.47324,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,10.56,11.033,0,11.357764,6,4.5 +26201,0,0.765373,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,18.36895,0.15,4 +30241,0,0.728774,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,17.490573,0.15,4 +31724,0,0.395028,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.480675,0.15,4 +31829,0,0.495771,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.898508,0.15,4 +31838,0,0.754394,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.105452,0.15,4 +32599,0,0.499682,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.992365,0.15,4 +16341,1,0.392257,4,0,0,1,1,,3,2,E I 96,,1607802,1.303,1.695,0,,0.58,7 +16960,-1,0.410408,0,4,0,1,1,,3,2,W I 96,,1607506,1.398,1.809,0,,0.58,7 +17117,0,0.236303,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.707,3.943,0,5.671267,8,4.5 +18718,1,0.211999,2,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,7.036,7.248,0,5.087971,5,5 +19000,0,0.503302,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,0.974,1.477,0,12.07925,5,5 +22335,-1,0.213149,0,2,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.481,0.694,0,5.115575,5,5 +24122,1,0.172773,2,0,0,2,4,DV2,3,2,Newburgh,Rd,4710394,9.168,9.34,0,4.146541,6,4.5 +31702,0,0.504745,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.113877,0.15,4 +31777,0,0.75086,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.020635,0.15,4 +31824,0,0.239654,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.751694,0.15,4 +31825,0,0.013706,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.328937,0.15,4 +31832,0,0.359074,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.617764,0.15,4 +31844,0,0.248283,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.958782,0.15,4 +16348,1,0.366432,1,0,0,1,1,RON,3,2,E 6 Mile/E I 96,RAMP,1607803,0,0.366,0,,1.09,4 +16454,1,0.397169,4,0,0,1,1,,3,2,E I 96,,1607802,1.998,2.396,0,,0.58,7 +16766,1,0.242572,1,0,0,1,1,RON,3,2,E 6 Mile/W I 96,RAMP,1607606,0,0.243,0,,1.09,4 +16945,-1,0.401537,0,4,0,1,1,,3,2,W I 96,,1607506,2.089,2.491,0,,0.58,7 +17063,1,0.48639,1,0,0,1,1,ROF,3,2,W I 96/6 Mile,RAMP,1607607,0,0.486,0,,2.24,5 +19071,1,0.348729,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.687,7.036,0,8.369496,5,5 +22336,-1,0.357511,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.123,0.481,0,8.580268,5,5 +24125,0,0.504653,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,8.538,9.042,0,12.111677,6,4.5 +31719,0,0.355154,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.523703,0.15,4 +31720,0,0.551865,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.244752,0.15,4 +16076,-1,0.280647,0,4,0,1,1,,3,2,W I 96,,1607506,1.809,2.089,0,,0.58,7 +16078,1,0.303915,4,0,0,1,1,,3,2,E I 96,,1607802,1.695,1.998,0,,0.58,7 +16680,1,0.398882,1,0,0,1,1,ROF,3,2,E I 96/6 Mile,RAMP,1607801,0,0.399,0,,2.24,5 +39846,1,0.159484,3,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.211,1.37,0,3.827611,3.7,5 +18277,0,0.134293,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,6.42,6.554,0,3.223042,5,5 +31833,0,0.39989,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.597351,0.15,4 +16089,1,0.23304,1,0,0,1,1,RON,3,2,W 6 Mile/E I 96,RAMP,1607804,0,0.233,0,,1.09,4 +18495,0,0.057828,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,6.362,6.42,0,1.387874,5,5 +18863,0,0.017867,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,6.345,6.362,0,0.428803,5,5 +16758,1,0.015273,1,0,0,1,3,RSF,3,2,W I 96/N I 275/6 Mile,RAMP,1607607,0.486,0.502,0,,5,5 +17762,1,0.04728,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.608,6.656,0,1.134715,5,5 +22337,-1,0.030023,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.093,0.123,0,0.72055,5,5 +17987,1,0.053828,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.554,6.608,0,1.29187,5,5 +22340,-1,0.028179,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0.065,0.093,0,0.676293,5,5 +22341,-1,0.064991,0,3,0,2,3,DIV,3,2,6 Mile,Rd,4701648,0,0.065,0,1.559773,5,5 +17459,1,0.031874,3,0,0,2,3,DIV,3,2,6 Mile,Rd,1680701,6.656,6.687,0,0.764967,5,5 +31835,0,0.151498,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.635946,0.15,4 +24123,0,0.106693,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.061,9.168,0,2.560632,6,4.5 +24124,0,0.018757,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.042,9.061,0,0.450167,6,4.5 +16508,1,0.30502,4,0,0,1,1,,3,2,E I 96,,1607802,0.676,0.981,0,,0.58,7 +16771,1,0.209043,1,0,0,1,1,RON,3,2,W 7 Mile/E I 96,RAMP,1607806,0,0.209,0,,1.09,4 +16847,1,0.30462,1,0,0,1,1,RON,3,2,7 Mile/W I 96,RAMP,1607510,0,0.305,0,,1.09,4 +16967,-1,0.188203,0,4,0,1,1,,3,2,W I 96,,1607506,0.812,1,0,,0.58,7 +17077,1,0.394038,1,0,0,1,1,ROF,3,2,E I 96/7 Mile,RAMP,1607805,0,0.394,0,,2.24,5 +17082,1,0.219827,1,0,0,1,1,ROF,3,2,W I 96/W 7 Mile,RAMP,1607601,0,0.22,0,,2.24,5 +17684,0,0.172867,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,0.588,0.761,0,4.148819,5,5 +24111,0,0.508236,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,10.052,10.56,0,12.197655,6,4.5 +31827,0,0.503544,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.085054,0.15,4 +16073,1,0.257048,1,0,0,1,1,RON,3,2,E 7 Mile/E I 96,RAMP,1607807,0,0.257,0,,1.09,4 +16082,-1,0.398301,0,4,0,1,1,,3,2,W I 96,,1607506,1,1.398,0,,0.58,7 +16272,1,0.32164,4,0,0,1,1,,3,2,E I 96,,1607802,0.981,1.303,0,,0.58,7 +16779,1,0.35248,1,0,0,1,1,ROF,3,2,W I 96/E 7 Mile,RAMP,1607603,0,0.352,0,,2.24,5 +18526,0,0.153285,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.37,0.523,0,3.678844,5,5 +18753,0,0.023742,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.346,0.37,0,0.569807,5,5 +18291,0,0.040563,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.306,0.346,0,0.973516,5,5 +18015,0,0.036778,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.551,0.588,0,0.88268,5,5 +18195,0,0.027878,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,0.523,0.551,0,0.669076,5,5 +17494,0,0.213384,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,0.761,0.974,0,5.121216,5,5 +24120,0,0.236107,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.816,10.052,0,5.666562,6,4.5 +31839,0,0.246789,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.922932,0.15,4 +31837,0,0.164278,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.942668,0.15,4 +24121,0,0.230009,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.586,9.816,0,5.520218,6,4.5 +31828,0,0.190556,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.573335,0.15,4 +17119,0,0.461313,1,1,0,2,5,,3,2,Levan,Rd,1604605,2.694,3.155,0,11.071506,8,4.5 +17988,0,0.363861,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.509,7.873,0,8.732669,5,5 +31736,0,0.512205,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.292912,0.15,4 +31738,0,0.272282,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.53477,0.15,4 +31831,0,0.506721,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.161309,0.15,4 +31734,0,0.252544,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.061048,0.15,4 +17118,0,0.26981,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.205,3.475,0,6.475448,8,4.5 +18171,0,0.191217,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.318,7.509,0,4.589213,5,5 +18496,0,0.070048,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,7.248,7.318,0,1.681147,5,5 +16830,0,0.232538,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.475,3.707,0,5.580906,8,4.5 +18754,0,0.254071,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,1.477,1.731,0,6.097695,5,5 +31822,0,0.254551,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.109219,0.15,4 +31830,0,0.496041,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.904993,0.15,4 +16828,0,0.208074,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.943,4.151,0,4.993783,8,4.5 +330,0,0.148792,1,1,0,2,4,,3,3,Halsted,,634206,0.661,0.809,0,3.571003,6,4.5 +376,0,0.44221,1,1,0,2,4,,3,3,9 Mile,Rd,633603,1.743,2.185,0,10.613049,6,4.5 +2029,-1,0.40603,0,1,0,2,5,,3,3,Freedom,Rd,633606,0,0.406,0,9.744717,8,4.5 +20924,0,0.506423,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.773,3.28,0,12.154155,5,5 +26863,0,0.583271,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.998512,0.15,4 +26890,0,0.511838,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.284115,0.15,4 +26897,0,0.501811,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.043459,0.15,4 +26903,0,0.761399,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,18.273572,0.15,4 +794,0,0.660697,1,1,0,2,4,,3,3,Halsted,,634206,0,0.661,0,15.856729,6,4.5 +20925,0,0.488884,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.285,2.773,0,11.733205,5,5 +26865,0,0.50086,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.020637,0.15,4 +20926,0,0.02379,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,2.261,2.285,0,0.570965,5,5 +281,0,0.629278,1,1,0,2,4,,3,3,9 Mile,Rd,633603,2.185,2.814,0,15.102672,6,4.5 +1966,0,0.427198,1,1,0,2,4,,3,3,Halsted,,634206,1.005,1.432,0,10.252764,6,4.5 +24873,0,0.494393,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.86543,0.15,4 +27233,0,0.519026,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.456632,0.15,4 +416,0,0.195327,1,1,0,2,4,,3,3,Halsted,,634206,0.809,1.005,0,4.687846,6,4.5 +882,1,0.121498,1,0,0,1,2,RON,3,3,Grand River/E M 5,RAMP,639203,0.366,0.488,0,,1.09,4 +988,0,0.27328,1,1,0,2,4,,3,3,Halsted,,634206,1.473,1.746,0,6.558714,6,4.5 +2675,1,0.151279,1,0,0,1,2,ROF,3,3,W M 5/Grand River,RAMP,657109,0,0.151,0,,2.24,5 +1451,0,0.041572,1,1,0,2,4,,3,3,Halsted,,634206,1.432,1.473,0,0.997718,6,4.5 +20923,0,0.225744,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,3.28,3.505,0,5.417865,5,5 +26891,0,0.56132,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.47167,0.15,4 +839,0,0.200973,1,1,0,2,4,,3,3,9 Mile,Rd,633603,1.542,1.743,0,4.82336,6,4.5 +1341,0,0.056404,1,1,0,2,4,,3,3,Drake,Rd,633804,0.296,0.352,0,1.353697,6,4.5 +1518,0,0.789312,1,1,0,2,5,,3,3,Freedom,Rd,633606,0.406,1.195,0,18.943484,8,4.5 +26298,0,0.559376,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.425015,0.15,4 +26889,0,0.522243,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.533821,0.15,4 +26892,0,0.263545,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.32509,0.15,4 +287,0,0.251739,1,1,0,2,4,,3,3,Drake,Rd,633804,0,0.252,0,6.041737,6,4.5 +1298,0,0.352249,1,1,0,2,4,,3,3,9 Mile,Rd,633603,1.19,1.542,0,8.453966,6,4.5 +1848,0,0.044149,1,1,0,2,4,,3,3,Drake,Rd,633804,0.252,0.296,0,1.059565,6,4.5 +877,0,0.467035,1,1,0,2,4,,3,3,Drake,Rd,633804,0.352,0.819,0,11.208828,6,4.5 +24876,0,0.239768,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.754434,0.15,4 +17917,0,0.326737,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,2.649,2.975,0,7.841677,5,5 +18856,0,0.34328,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,8.698,9.041,0,8.238728,5,5 +19133,0,0.500551,2,2,1,2,3,,3,2,Farmington,Rd,1690602,4.259,4.759,0,12.013221,5,5 +30385,0,0.479037,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.49689,0.15,4 +31725,0,0.254523,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.108556,0.15,4 +31840,0,0.497169,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.932053,0.15,4 +31841,0,0.525564,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.613531,0.15,4 +32014,0,0.500182,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.004373,0.15,4 +31739,0,0.501524,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.036577,0.15,4 +17446,0,0.259508,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,8.438,8.698,0,6.228199,5,5 +17541,0,0.589541,1,1,0,2,5,,3,2,Gill,Rd,1700705,0.435,1.025,0,14.148979,8,4.5 +31826,0,0.502886,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.069274,0.15,4 +18196,0,0.175802,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,2.473,2.649,0,4.219259,5,5 +29725,0,0.527928,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.670265,0.15,4 +31772,0,0.266516,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.39639,0.15,4 +16541,0,0.353993,1,1,0,2,5,,3,2,Hubbard,Rd,1606910,1.639,1.993,0,8.495825,8,4.5 +17628,0,0.509855,2,2,1,2,3,,3,2,Farmington,Rd,1690602,3.749,4.259,0,12.236524,5,5 +18388,0,0.501287,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,9.041,9.542,0,12.030886,5,5 +31345,0,0.497998,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.951959,0.15,4 +33929,0,0.204412,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.905878,0.15,4 +17685,0,0.373798,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,2.975,3.349,0,8.971153,5,5 +18566,0,0.539594,2,2,1,2,3,,3,2,Farmington,Rd,1690602,5.26,5.799,0,12.950244,5,5 +31336,0,0.50123,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.02951,0.15,4 +31337,0,0.51413,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.339126,0.15,4 +31845,0,0.501833,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.043988,0.15,4 +18937,0,0.500702,2,2,1,2,3,,3,2,Farmington,Rd,1690602,4.759,5.26,0,12.016841,5,5 +32015,0,0.517252,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.414056,0.15,4 +573,0,0.326151,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.24,0.566,0,7.827631,6,4.5 +1210,0,0.347037,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.877,2.224,0,8.328878,8,4.5 +1289,1,0.172765,1,0,0,1,2,ROF,3,3,E M 5/9 Mile,RAMP,634201,0,0.173,0,,2.24,5 +1393,0,0.312883,2,2,1,2,4,,3,3,Farmington,Rd,632903,0.691,1.004,0,7.509201,6,4.5 +1730,0,0.341858,1,1,0,2,5,,3,3,Gill,Rd,634202,0.665,1.006,0,8.204584,8,4.5 +2729,1,0.458791,2,0,0,1,2,,3,3,E M 5,,657303,16.033,16.492,0,,0.58,7 +19777,0,0.20478,1,1,1,2,4,,3,3,Grand River,,4104142,16.425,16.63,0,4.914731,6,4.5 +20920,0,0.377071,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,4.385,4.762,0,9.049692,5,5 +26202,0,0.332809,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.987407,0.15,4 +26900,0,0.275375,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.608999,0.15,4 +26902,0,0.519521,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.46851,0.15,4 +27727,0,0.251696,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.040712,0.15,4 +833,0,0.502517,1,1,0,2,5,,3,3,Gill,Rd,634202,0,0.502,0,12.060418,8,4.5 +30242,0,0.518855,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.452517,0.15,4 +20921,0,0.126276,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,4.259,4.385,0,3.03062,5,5 +26899,0,0.245429,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.890288,0.15,4 +364,0,0.162211,1,1,0,2,5,,3,3,Gill,Rd,634202,0.502,0.665,0,3.893058,8,4.5 +22,0,0.283755,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.425,1.709,0,6.810112,8,4.5 +388,0,0.183968,1,1,0,2,5,,3,3,Lytle,,637710,0.329,0.513,0,4.415243,8,4.5 +1441,0,0.252121,1,1,0,2,5,,3,3,Gill,Rd,632807,0,0.252,0,6.050907,8,4.5 +1606,0,0.259499,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.691,0.95,0,6.227983,6,4.5 +29726,0,0.250004,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.000102,0.15,4 +26895,0,0.074501,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.788035,0.15,4 +26898,0,0.245657,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.895778,0.15,4 +26894,0,0.056216,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.349179,0.15,4 +1241,0,0.166084,1,1,0,2,5,,3,3,Gill,Rd,634202,1.006,1.172,0,3.986023,8,4.5 +2105,0,0.12438,1,1,0,2,4,,3,3,9 Mile,Rd,633603,0.566,0.691,0,2.985114,6,4.5 +1693,0,0.168127,1,1,0,2,5,,3,3,Freedom,Rd,633606,1.709,1.877,0,4.035044,8,4.5 +981,0,0.272086,1,1,0,2,5,,3,3,Gill,Rd,632807,0.252,0.524,0,6.530055,8,4.5 +26893,0,0.37945,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.106806,0.15,4 +26901,0,0.239954,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.758892,0.15,4 +2164,0,0.192283,2,2,1,2,4,,3,3,Farmington,Rd,632903,0,0.192,0,4.614787,6,4.5 +20919,0,0.334965,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,4.762,5.097,0,8.039158,5,5 +26203,0,0.544738,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.073712,0.15,4 +26904,0,0.445085,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.682045,0.15,4 +1657,0,0.305381,2,2,1,2,4,,3,3,Farmington,Rd,632903,0.192,0.498,0,7.329151,6,4.5 +25858,0,0.318703,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.64886,0.15,4 +28095,0,0.276344,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.632245,0.15,4 +1185,0,0.193257,2,2,1,2,4,,3,3,Farmington,Rd,632903,0.498,0.691,0,4.638164,6,4.5 +20918,0,0.163055,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,5.097,5.26,0,3.913314,5,5 +20917,0,0.134279,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,5.26,5.394,0,3.222696,5,5 +475,0,0.320297,2,2,1,2,4,,3,3,Farmington,Rd,632903,1.103,1.423,0,7.687122,6,4.5 +607,0,0.455341,1,1,0,2,5,,3,3,Folsom,,634102,0,0.455,0,10.928176,8,4.5 +679,0,0.212615,1,1,0,2,5,,3,3,Shiawassee,,633209,0.66,0.873,0,5.10275,8,4.5 +774,0,0.457118,1,1,0,2,5,,3,3,Freedom,Rd,633606,2.224,2.681,0,10.970824,8,4.5 +19775,0,0.346787,2,2,1,2,4,,3,3,Grand River,,4104142,16.869,17.215,0,8.322878,6,4.5 +26185,0,0.194689,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.672529,0.15,4 +26187,0,0.416891,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.005372,0.15,4 +29727,0,0.333917,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.013998,0.15,4 +276,0,0.192692,1,1,0,2,5,,3,3,9 Mile,Rd,633603,0,0.193,0,4.624609,8,4.5 +1026,0,0.047639,2,2,1,2,4,,3,3,9 Mile,Rd,633603,0.193,0.24,0,1.143345,6,4.5 +936,0,0.099473,2,2,1,2,4,,3,3,Farmington,Rd,632903,1.004,1.103,0,2.38734,6,4.5 +1785,1,0.078364,1,0,0,1,2,RON,3,3,9 Mile/E M 5,RAMP,634110,0,0.078,0,,1.09,4 +1119,0,0.152938,1,1,1,2,4,,3,3,Shiawassee,,633209,0.507,0.66,0,3.670518,6,4.5 +2100,0,0.179747,2,2,0,2,4,,3,3,Farmington,Rd,632903,1.504,1.683,0,4.313933,6,4.5 +19776,0,0.238918,2,2,0,2,4,,3,3,Grand River,,4104142,16.63,16.869,0,5.734038,6,4.5 +26182,0,0.204167,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.899999,0.15,4 +26188,0,0.113552,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.725251,0.15,4 +26190,0,0.142065,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.409567,0.15,4 +2021,0,0.080636,2,2,1,2,4,,3,3,Farmington,Rd,632903,1.423,1.504,0,1.935264,6,4.5 +1601,0,0.052455,1,1,0,2,4,,3,3,Farmington,Rd,632903,1.683,1.736,0,1.258929,6,4.5 +1604,0,0.122847,1,1,1,2,4,,3,3,Shiawassee,,633209,0.384,0.507,0,2.948337,6,4.5 +1117,0,0.105134,1,1,0,2,4,,3,3,Farmington,Rd,632903,1.736,1.841,0,2.523205,6,4.5 +26186,0,0.250102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.002447,0.15,4 +875,0,0.191024,1,1,0,2,5,,3,3,Shiawassee,,633209,0.907,1.098,0,4.584578,8,4.5 +21075,0,0.151347,1,1,0,2,5,,3,3,Power,Rd,4410108,0.532,0.683,0,3.632337,8,4.5 +21077,0,0.103577,1,1,0,2,5,,3,3,Power,Rd,4410108,0.368,0.471,0,2.485842,8,4.5 +21076,0,0.060409,1,1,0,2,5,,3,3,Power,Rd,4410108,0.471,0.532,0,1.449811,8,4.5 +1339,0,0.034676,1,1,0,2,5,,3,3,Shiawassee,,633209,0.873,0.907,0,0.832224,8,4.5 +786,0,0.326804,1,1,0,2,3,,4,3,Ortonville,Rd,627809,0.381,0.708,0,7.843307,3.7,5 +2198,1,1.082333,2,0,0,2,3,DIV,5,3,Highland,Rd,648906,2.101,3.183,0,25.975997,1.7,4 +2201,0,0.886802,1,1,0,2,5,,5,3,Middle,Rd,648808,2.321,3.208,0,21.283256,3.7,5 +2204,0,1.26104,1,1,0,2,5,,5,3,Clyde,Rd,648706,1.907,3.167,0,30.264954,3.7,5 +2482,0,1.08187,1,1,0,2,5,GRV,5,3,Wardlow,Rd,650309,1.193,2.274,0,25.964873,5.55,5 +2519,0,1.039482,1,1,0,2,5,GRV,5,3,Belford,Rd,649602,2.305,3.344,0,24.947568,5.55,5 +2560,0,0.30273,1,1,0,2,5,GRV,4,3,Quick,Rd,649505,0.996,1.298,0,7.265528,6.55,4.5 +2655,0,0.37202,1,1,1,2,4,,4,3,Grange Hall,Rd,649504,3.193,3.565,0,8.928478,4.5,4.5 +2664,0,1.334499,1,1,0,2,5,GRV,5,3,Rose Center,Rd,649409,2.123,3.457,0,32.027987,5.55,5 +2715,0,1.992165,1,1,0,2,5,,5,3,Ormond,Rd,649309,2.044,4.035,0,47.811959,3.7,5 +2718,-1,1.229528,0,3,0,1,1,,4,3,W I 96,,657304,1.285,2.514,0,,0.8,7.5 +2765,0,0.763238,1,1,0,2,4,,5,3,Milford,Rd,679302,2.62,3.383,0,18.317708,3,4 +2927,1,1.533246,3,0,0,1,1,,4,3,E I 96,,657303,1.076,2.609,0,,0.8,7.5 +3275,0,1.518965,1,1,0,2,4,,5,3,General Motors,Rd,661208,1.003,2.521,0,36.455166,3,4 +3378,0,0.359762,1,1,0,2,5,,5,3,11 Mile,Rd,656603,2.2,2.559,0,8.634282,3.7,5 +3419,0,0.968582,1,1,0,2,4,,5,3,Milford,Rd,660907,0.24,1.208,0,23.245963,3,4 +3556,0,0.274905,1,1,0,2,4,,4,3,Pontiac,Trl,656507,6.471,6.746,0,6.597725,4.5,4.5 +3588,0,0.370537,1,1,0,2,5,,4,3,Elm,,650808,0,0.37,0,8.892889,5.8,4.5 +3603,0,0.429785,1,1,0,2,5,,4,3,Maple,,650805,0.177,0.606,0,10.314838,5.8,4.5 +3612,0,0.6698,2,2,1,2,3,,4,3,Dixie,Hwy,689103,0.632,1.302,0,16.075204,3.7,5 +3622,0,1.302752,1,1,0,2,5,,5,3,Andersonville,Rd,688910,0,1.302,0,31.266054,3.7,5 +4353,1,0.698102,2,0,0,2,4,DIV,4,3,Sashabaw,Rd,697309,3.099,3.797,0,16.754444,4.5,4.5 +5511,-1,3.744285,0,2,0,1,2,,5,8,S US 23,,932002,17.955,21.698,0,,1.02,7 +5710,0,1.021339,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,21.042,22.063,0,24.51214,3.7,5 +6809,1,3.703071,2,0,0,1,2,,5,8,N US 23,,931510,17.982,21.683,0,,1.02,7 +6984,0,1.00236,1,1,0,2,4,,5,8,Argentine,Rd,934310,8.206,9.208,0,24.056631,3,4 +7306,0,1.006583,1,1,0,2,7,,5,8,Latson,Rd,938109,2.015,3.021,0,24.157994,5.8,6 +7416,0,2.066136,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,2.873,4.938,0,49.587255,5.8,6 +8106,0,1.527393,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,7.806,9.332,0,36.657437,3.7,5 +19816,0,0.231273,1,1,0,2,4,,4,3,Grand River,Ave,4104142,3.28,3.511,0,5.550545,4.5,4.5 +19851,0,1.824274,1,1,0,2,4,,5,3,Commerce,Rd,4104140,2.188,4.012,0,43.782566,3,4 +21000,0,1.005153,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,12.23,13.235,0,24.123679,3.7,5 +21069,-1,1.181768,0,2,0,2,3,DIV,5,3,Highland,Rd,4410120,2.002,3.183,0,28.362436,1.7,4 +21971,0,0.444231,1,1,0,2,5,,4,3,White Lake,Rd,4412733,1.91,2.354,0,10.661548,5.8,4.5 +25259,0,0.641763,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.402301,0.15,4 +25327,0,0.709046,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.01711,0.15,4 +26905,0,1.945977,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,46.70345,0.15,4 +26914,0,0.321513,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.716308,0.15,4 +26917,0,1.619753,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.874078,0.15,4 +26919,0,1.49891,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.973836,0.15,4 +26920,0,1.40309,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.674163,0.15,4 +26922,0,2.291742,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,55.00181,0.15,4 +26928,0,1.734098,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,41.61836,0.15,4 +26930,0,0.425254,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.206086,0.15,4 +26934,0,0.364125,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.738994,0.15,4 +26937,0,0.655428,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.730263,0.15,4 +26946,0,1.014824,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.35578,0.15,4 +26958,0,1.107214,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.57313,0.15,4 +26965,0,0.300462,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.211085,0.15,4 +26967,0,0.505376,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.129016,0.15,4 +26983,0,0.518151,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.435624,0.15,4 +26984,0,0.841034,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.184809,0.15,4 +26985,0,0.617918,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.830031,0.15,4 +27347,0,1.534325,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.823792,0.15,4 +27365,0,1.85145,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,44.434805,0.15,4 +27368,0,1.455872,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.940927,0.15,4 +29799,0,1.559816,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.435596,0.15,4 +29800,0,1.300788,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,31.218913,0.15,4 +30166,0,1.501281,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.030733,0.15,4 +30167,0,1.113995,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.735885,0.15,4 +30168,0,1.129947,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.11873,0.15,4 +5144,0,1.568565,1,1,0,2,5,,5,8,Old US 23,,932204,14.717,16.285,0,37.645557,3.7,5 +5421,1,0.811723,2,0,0,1,2,,4,8,N US 23,,931510,5.76,6.571,0,,0.8,7.5 +5588,1,2.612209,2,0,0,1,2,,5,8,N US 23,,931510,14.946,17.558,0,,1.02,7 +5705,1,0.206355,1,0,0,1,1,RFS,4,8,S US 23/E I 96,RAMP,932103,0,0.206,0,,0.22,6 +5707,1,0.356032,1,0,0,1,1,RFS,4,8,S US 23/W I 96,RAMP,932105,0,0.356,0,,0.22,6 +5989,-1,2.533638,0,2,0,1,2,,5,8,S US 23,,932002,14.984,17.517,0,,1.02,7 +5990,0,0.773248,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,11.599,12.372,0,18.557948,4.5,4.5 +6075,1,7.181136,2,0,0,1,2,,5,8,N US 23,,931510,7.202,14.38,0,,1.02,7 +6081,0,0.202013,2,2,1,2,4,,4,8,Old US 23,Hwy,932204,7.706,7.908,0,4.848301,4.5,4.5 +6392,0,1.001665,1,1,0,2,5,,4,8,Hyne,Rd,931803,0,1.001,0,24.039957,5.8,4.5 +6490,-1,7.228513,0,2,0,1,2,,4,8,S US 23,,932002,7.194,14.42,0,,0.8,7.5 +6736,-1,0.237314,0,2,0,1,2,,4,8,S US 23,,932002,6.957,7.194,0,,0.8,7.5 +6811,0,0.255804,1,1,0,2,5,,5,8,Crouse,Rd,931807,0.983,1.239,0,6.1393,3.7,5 +6821,0,1.208075,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,9.314,10.522,0,28.99379,4.5,4.5 +7019,0,0.362796,1,1,0,2,4,,4,8,Hilton,Rd,933806,1.552,1.915,0,8.707113,4.5,4.5 +7028,0,0.869974,1,1,0,2,5,,4,8,Hughes,Rd,933708,1.591,2.46,0,20.879366,5.8,4.5 +7041,0,0.390387,1,1,0,2,4,,4,8,Latson,Rd,5490669,1.15,1.541,0,9.369283,4.5,4.5 +7083,0,0.823563,1,1,0,2,3,,5,8,Highland,Rd,933209,11.698,12.521,0,19.765513,1.7,4 +37908,-1,0.020582,0,2,0,2,5,DIV,4,2,Smith,Rd,4706175,0.973,0.994,0,0.493964,5.8,4.5 +7322,0,1.127936,1,1,0,2,6,,5,8,Bergin,Rd,941010,3.31,4.437,0,27.07047,5.8,6 +7353,0,1.155801,1,1,0,2,5,,5,8,Hacker,Rd,940803,2.062,3.217,0,27.73922,3.7,5 +7420,0,0.298768,1,1,0,2,7,GRV,5,8,Cook,Rd,936905,0,0.299,0,7.170429,5.55,5 +7531,-1,0.083462,0,3,0,1,1,FCD,4,8,W I 96 CD,,935207,22.977,23.06,0,,0.8,7.5 +7724,1,0.266241,2,0,0,1,1,FCD,4,8,E I 96 CD,,935105,22.848,23.114,0,,0.8,7.5 +7951,0,0.443553,1,1,0,2,5,,5,8,Clyde,Rd,939905,8.064,8.507,0,10.645271,3.7,5 +8128,0,1.319664,1,1,0,2,5,,5,8,Pleasant Valley,Rd,942603,6.45,7.769,0,31.671933,3.7,5 +19852,0,1.07769,1,1,0,2,4,,5,3,Commerce,Rd,4104140,1.111,2.188,0,25.864572,3,4 +21009,0,0.756483,1,1,0,2,4,,5,3,Hickory Ridge,Trl,4410281,2.769,3.525,0,18.155588,3,4 +24655,0,0.941951,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,22.606832,0.15,4 +26055,0,1.125788,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.018909,0.15,4 +26056,0,0.608382,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,14.601162,0.15,4 +26057,0,1.230078,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.521869,0.15,4 +26059,0,0.820301,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.687222,0.15,4 +26060,0,0.881148,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,21.147559,0.15,4 +26062,0,0.802446,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,19.258693,0.15,4 +26069,0,0.396441,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.514585,0.15,4 +26768,0,1.79911,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,43.178647,0.15,4 +29477,0,1.544325,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,37.063794,0.15,4 +30154,0,1.507541,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.180974,0.15,4 +30157,0,0.657623,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.782956,0.15,4 +6308,0,0.839156,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,6.868,7.706,0,20.139753,4.5,4.5 +7010,0,0.20089,1,1,1,2,4,,4,8,Spencer,Rd,933908,0.659,0.86,0,4.821365,4.5,4.5 +7136,0,0.249595,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.145,22.394,0,5.990282,5,5 +7153,0,0.957058,2,2,1,2,3,,4,8,Grand River,Ave,932910,18.034,18.991,0,22.969381,3.7,5 +7237,0,0.472998,1,1,0,2,7,,3,8,2nd,St,938608,0,0.473,0,11.351951,7,4.5 +7410,0,0.527662,1,1,0,2,7,,5,8,Clifford,,940502,0,0.528,0,12.663896,5.8,6 +7440,0,0.841629,1,1,0,2,5,,5,8,Challis,Rd,940303,0.405,1.246,0,20.199094,3.7,5 +7536,-1,0.25039,0,3,0,1,1,,3,8,W I 96,,935207,21.982,22.232,0,,0.58,7 +7540,-1,4.088865,0,3,0,1,1,,4,8,W I 96,,935207,16.539,20.626,0,,0.8,7.5 +7568,0,0.74547,1,1,0,2,4,,5,8,Brighton,Rd,940301,2.241,2.986,0,17.89129,3,4 +7668,0,1.966497,1,1,0,2,5,GRV,5,8,Bishop Lake,Rd,940205,0.66,2.626,0,47.195938,5.55,5 +7736,1,1.403122,3,0,0,1,1,,3,8,E I 96,,935105,20.826,22.228,0,,0.58,7 +7745,1,3.564514,3,0,0,1,1,,4,8,E I 96,,935105,16.638,20.201,0,,0.8,7.5 +7779,0,0.392455,1,1,0,2,4,,5,8,Bauer,Rd,940108,2.633,3.025,0,9.418927,3,4 +24648,0,1.060582,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.453958,0.15,4 +26109,0,1.868107,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,44.834573,0.15,4 +26110,0,1.074806,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.795355,0.15,4 +26993,0,1.301826,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.243818,0.15,4 +27001,0,0.759449,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,18.226786,0.15,4 +27005,0,1.077876,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,25.869035,0.15,4 +27010,0,0.637961,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.311063,0.15,4 +27011,0,0.72112,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.306873,0.15,4 +27014,0,0.347009,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.328209,0.15,4 +27016,0,0.49755,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.94121,0.15,4 +27027,0,0.538422,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,12.922116,0.15,4 +27028,0,0.467564,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,11.221539,0.15,4 +29843,0,0.70513,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.923122,0.15,4 +7631,0,0.104974,1,1,0,2,4,,5,8,Brighton,Rd,940301,0.427,0.532,0,2.519373,3,4 +7650,0,1.007667,1,1,0,2,4,,5,8,Chilson,Rd,940206,0,1.007,0,24.184007,3,4 +7683,0,0.660174,1,1,0,2,5,,5,8,Bishop Lake,Rd,940205,0,0.66,0,15.844176,3.7,5 +8015,0,1.709797,1,1,0,2,4,,5,8,Chilson,Rd,944806,2.888,4.597,0,41.035137,3,4 +7209,0,1.204925,1,1,0,2,4,,5,8,Pettysville,Rd,932802,0.733,1.937,0,28.918193,3,4 +7285,0,1.011171,1,1,0,2,6,,5,8,Swarthout,Rd,944806,1.594,2.605,0,24.268101,5.8,6 +26994,0,0.87323,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.957518,0.15,4 +24646,0,0.477711,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.465072,0.15,4 +8019,0,0.283378,1,1,0,2,4,,5,8,Swarthout,Rd,944806,2.605,2.888,0,6.801073,3,4 +7638,0,1.444423,1,1,0,2,4,,5,8,Chilson,Rd,940206,1.007,2.451,0,34.666148,3,4 +7206,0,0.45858,1,1,0,2,4,,5,8,Chilson,Rd,932808,0.575,1.033,0,11.005911,3,4 +7880,0,0.621047,1,1,0,2,5,,5,8,Winans Lake,Rd,940105,0,0.621,0,14.905117,3.7,5 +7585,0,0.697867,1,1,0,2,4,,5,8,Brighton,Rd,940301,1.544,2.241,0,16.748803,3,4 +7626,0,0.523313,1,1,0,2,4,,5,8,Brighton,Rd,940301,1.02,1.544,0,12.559512,3,4 +7032,0,0.654894,1,1,0,2,5,,4,8,Dorr,Rd,933707,1.526,2.18,0,15.717464,5.8,4.5 +7155,0,1.203356,2,2,1,2,3,,4,8,Grand River,Rd,932910,16.697,17.9,0,28.880536,3.7,5 +26992,0,0.372409,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.937827,0.15,4 +27008,0,1.189187,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.540495,0.15,4 +29475,0,1.363801,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,32.73123,0.15,4 +7045,0,1.207592,1,1,0,2,5,,5,8,Chilson,Rd,933603,0.307,1.514,0,28.982208,3.7,5 +7158,0,0.818918,2,2,1,2,3,,4,8,Grand River,Rd,932910,15.692,16.511,0,19.65402,3.7,5 +26991,0,0.484517,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,11.6284,0.15,4 +7042,0,0.567418,1,1,0,2,4,,4,8,Latson,Rd,5490669,0.583,1.15,0,13.618023,4.5,4.5 +7159,0,0.612511,2,2,1,2,3,,4,8,Grand River,Rd,932910,15.08,15.692,0,14.700269,3.7,5 +24654,0,0.356083,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,8.545991,0.15,4 +24656,0,0.568132,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,13.635159,0.15,4 +7035,1,0.465668,1,0,0,1,1,RON,4,8,Grand River/E I 96,RAMP,933609,0,0.466,0,,1.09,4 +7156,0,0.125032,2,2,1,2,3,,4,8,Grand River,Rd,932910,16.572,16.697,0,3.000771,3.7,5 +7157,0,0.060756,2,2,1,2,3,,4,8,Grand River,Rd,932910,16.511,16.572,0,1.458142,3.7,5 +7036,-1,0.165071,0,1,0,1,1,ROF,4,8,W I 96/Grand River,RAMP,933608,0,0.165,0,,2.24,5 +7034,0,1.012032,1,1,0,2,5,,5,8,Dorr,Rd,933707,0,1.012,0,24.288757,3.7,5 +7449,0,0.246998,1,1,0,2,7,GRV,5,8,Challis,Rd,940303,0,0.247,0,5.927957,5.55,5 +30156,0,1.654323,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.703746,0.15,4 +7401,0,0.742536,1,1,0,2,7,GRV,5,8,Conrad,Rd,940601,0,0.742,0,17.820864,5.55,5 +27009,0,0.410416,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,9.849993,0.15,4 +27015,0,0.543512,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.044296,0.15,4 +7441,0,0.157656,1,1,0,2,5,,5,8,Challis,Rd,940303,0.247,0.405,0,3.783742,3.7,5 +7033,0,0.514083,1,1,0,2,5,,4,8,Dorr,Rd,933707,1.012,1.526,0,12.338003,5.8,4.5 +7030,0,0.842457,1,1,0,2,5,,4,8,Hughes,Rd,933708,0.561,1.403,0,20.218959,5.8,4.5 +27072,0,1.293417,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.042007,0.15,4 +7029,0,0.187735,1,1,0,2,5,,4,8,Hughes,Rd,933708,1.403,1.591,0,4.505629,5.8,4.5 +7031,0,0.561099,1,1,0,2,5,,4,8,Hughes,Rd,933708,0,0.561,0,13.466387,5.8,4.5 +7154,0,0.13464,2,2,1,2,3,,4,8,Grand River,Ave,932910,17.9,18.034,0,3.231363,3.7,5 +5596,0,1.186005,1,1,0,2,4,,4,8,Whitmore Lake,Rd,932204,4.151,5.337,0,28.464128,4.5,4.5 +5909,1,2.487158,2,0,0,1,2,,5,8,N US 23,,931510,3.036,5.522,0,,1.02,7 +6079,0,0.464356,1,1,0,2,6,,5,8,Fieldcrest,Dr,4105311,3.833,4.298,0,11.144546,5.8,6 +6307,-1,2.25648,0,2,0,1,2,,4,8,S US 23,,932002,3.038,5.294,0,,0.8,7.5 +7264,0,0.251611,1,1,0,2,7,,3,8,Washington,St,938504,0,0.252,0,6.038662,7,4.5 +7434,0,0.291542,1,1,0,2,5,,4,8,Rickett,Rd,940304,2.212,2.503,0,6.997004,5.8,4.5 +37437,-1,0.031355,0,1,0,2,4,,3,8,Main,St,4104563,0,0.031,0,0.752525,6,4.5 +7686,0,1.241761,1,1,0,2,5,,5,8,Maltby,Rd,940204,0.421,1.662,0,29.802275,3.7,5 +7749,0,0.639578,1,1,0,2,5,,3,8,Brighton Lake,Rd,940201,0.589,1.229,0,15.349872,8,4.5 +7790,0,0.58902,1,1,0,2,5,GRV,5,8,Bauer,Rd,940108,0,0.589,0,14.136479,5.55,5 +7892,0,1.040147,1,1,0,2,5,,5,8,Hamburg,Rd,940101,2.328,3.368,0,24.963535,3.7,5 +27033,0,1.174853,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,28.196477,0.15,4 +27036,0,1.139692,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.352612,0.15,4 +27039,0,0.481179,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,11.548297,0.15,4 +27043,0,0.106316,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,2.551575,0.15,4 +7845,0,1.021716,1,1,0,2,5,,5,8,Hamburg,Rd,940101,1.094,2.115,0,24.521184,3.7,5 +26108,0,0.807104,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.370507,0.15,4 +7706,0,0.203632,1,1,0,2,5,,5,8,Maltby,Rd,940204,0.217,0.421,0,4.887161,3.7,5 +7718,0,0.217206,1,1,0,2,5,,5,8,Maltby,Rd,940204,0,0.217,0,5.212945,3.7,5 +7902,0,0.212893,1,1,0,2,5,,5,8,Hamburg,Rd,940101,2.115,2.328,0,5.109434,3.7,5 +7547,0,0.347865,1,1,1,2,4,,5,8,Brighton,Rd,940301,3.244,3.592,0,8.34876,3,4 +30158,0,0.626768,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.042433,0.15,4 +7561,0,0.257988,1,1,1,2,4,,5,8,Brighton,Rd,940301,2.986,3.244,0,6.191722,3,4 +27007,0,0.751805,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.043316,0.15,4 +7751,0,0.483395,1,1,0,2,5,,5,8,Brighton Lake,Rd,940201,0.106,0.589,0,11.60148,3.7,5 +7752,0,0.105948,1,1,0,2,5,,5,8,Brighton Lake,Rd,940201,0,0.106,0,2.542757,3.7,5 +7546,0,0.482453,1,1,1,2,4,,3,8,Brighton,Rd,940301,3.592,4.074,0,11.578877,6,4.5 +27046,0,0.525181,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,12.604355,0.15,4 +7304,0,0.12714,1,1,0,2,7,,3,8,7th,St,938407,0.119,0.246,0,3.051368,7,4.5 +7545,0,0.188114,1,1,0,2,4,,3,8,Main,St,940301,4.074,4.262,0,4.514746,6,4.5 +27044,0,0.211112,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.066699,0.15,4 +7436,0,0.239805,1,1,0,2,5,,4,8,Rickett,Rd,940304,1.172,1.412,0,5.755327,5.8,4.5 +26125,0,0.336604,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.078502,0.15,4 +27034,0,0.729382,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,17.505157,0.15,4 +27042,0,0.410289,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.84693,0.15,4 +7437,0,0.924158,1,1,0,2,5,,5,8,Rickett,Rd,940304,0.248,1.172,0,22.179787,3.7,5 +7435,0,0.800144,1,1,0,2,5,,4,8,Rickett,Rd,940304,1.412,2.212,0,19.203448,5.8,4.5 +27041,0,0.628651,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,15.087626,0.15,4 +29180,0,0.390317,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.367606,0.15,4 +5819,-1,0.853673,0,2,0,1,2,,4,8,S US 23,,932002,5.756,6.609,0,,0.8,7.5 +37477,-1,0.023952,0,2,0,2,4,,4,8,Lee,Rd,4104575,0.065,0.089,0,0.574854,4.5,4.5 +7012,0,0.22812,1,1,0,2,4,,3,8,Spencer,Rd,933908,0.394,0.622,0,5.474884,6,4.5 +7130,0,0.373996,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.837,23.21,0,8.975893,5,5 +7431,0,0.399666,1,1,0,2,4,,3,8,Rickett,Rd,940304,3.611,4.011,0,9.591984,6,4.5 +24644,0,0.230737,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.537693,0.15,4 +26111,0,0.295997,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,7.103937,0.15,4 +27035,0,0.210016,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,5.040377,0.15,4 +27038,0,0.521272,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,12.51054,0.15,4 +27040,0,0.901664,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,21.639932,0.15,4 +30155,0,0.596847,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,14.324324,0.15,4 +7006,0,0.076139,1,1,0,2,4,,3,8,Church,St,934001,0,0.076,0,1.827325,6,4.5 +7133,0,0.203608,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.515,22.719,0,4.886581,5,5 +7292,0,0.169912,1,1,0,2,5,,3,8,3rd,St,938410,0,0.17,0,4.077891,8,4.5 +7428,0,0.120292,1,1,0,2,5,,3,8,Rickett,Rd,940304,4.246,4.366,0,2.887,8,4.5 +7478,0,0.193096,1,1,1,2,4,,3,8,Main,St,940301,4.698,4.891,0,4.634315,6,4.5 +7728,0,0.480713,1,1,0,2,5,,3,8,Brighton Lake,Rd,940201,1.236,1.716,0,11.537117,8,4.5 +27048,0,0.329623,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,7.910962,0.15,4 +7737,0,0.007352,1,1,0,2,5,,3,8,Brighton Lake,Rd,940201,1.229,1.236,0,0.176449,8,4.5 +7013,0,0.207127,1,1,0,2,7,,3,8,North,St,933906,0,0.207,0,4.971039,7,4.5 +7255,0,0.074035,1,1,0,2,7,,3,8,Hyne,St,938506,0.053,0.127,0,1.776832,7,4.5 +37435,0,0.027066,1,1,0,2,4,,3,8,Main,St,940301,4.262,4.289,0,0.649595,6,4.5 +7501,0,0.182856,1,1,1,2,4,,3,8,Main,St,940301,4.515,4.698,0,4.388541,6,4.5 +7263,0,0.184716,1,1,0,2,7,,3,8,Washington,St,938504,0.252,0.436,0,4.433173,7,4.5 +7288,0,0.08763,1,1,0,2,5,,3,8,3rd,St,938410,0.17,0.258,0,2.103122,8,4.5 +7261,0,0.052772,1,1,0,2,7,,3,8,Hyne,St,938506,0,0.053,0,1.266528,7,4.5 +7239,0,0.074983,1,1,0,2,7,,3,8,Center,St,938606,0.081,0.156,0,1.799603,7,4.5 +37436,1,0.031844,1,0,0,2,4,,3,8,Main,St,940301,4.289,4.321,0,0.76425,6,4.5 +7253,0,0.065255,1,1,0,2,7,,3,8,1st,St,938604,0,0.065,0,1.566129,7,4.5 +7523,0,0.063266,1,1,1,2,4,,3,8,Main,St,940301,4.452,4.515,0,1.518377,6,4.5 +7135,0,0.061921,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.394,22.456,0,1.486097,5,5 +7134,0,0.058942,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.456,22.515,0,1.414601,5,5 +7430,0,0.235289,1,1,0,2,4,,3,8,Rickett,Rd,940304,4.011,4.246,0,5.646935,6,4.5 +7005,0,0.337175,1,1,0,2,7,,3,8,Church,St,934001,0.076,0.413,0,8.092189,7,4.5 +7472,0,0.149326,1,1,1,2,4,,3,8,Main,St,940301,4.891,5.04,0,3.583824,6,4.5 +27030,0,0.158669,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,3.808066,0.15,4 +7131,0,0.06781,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.769,22.837,0,1.627443,5,5 +7132,0,0.050341,2,2,1,2,3,,3,8,Grand River,Ave,932910,22.719,22.769,0,1.208186,5,5 +7236,0,0.124988,1,1,0,2,4,,3,8,Main,St,940301,5.04,5.165,0,2.999712,6,4.5 +37475,1,0.02163,3,0,0,2,4,,4,8,Lee,Rd,931610,0.21,0.232,0,0.519131,4.5,4.5 +5695,1,0.237605,2,0,0,1,2,,4,8,N US 23,,931510,5.522,5.76,0,,0.8,7.5 +37476,1,0.01864,2,0,0,2,4,,4,8,Whitmore Lake,Rd,932204,5.744,5.763,0,0.447363,4.5,4.5 +37478,-1,0.117783,0,3,0,2,4,,4,8,Whitmore Lake,Rd,4104576,0.061,0.178,0,2.826801,4.5,4.5 +5988,-1,0.461987,0,2,0,1,2,,4,8,S US 23,,932002,5.294,5.756,0,,0.8,7.5 +7432,0,0.603719,1,1,0,2,4,,4,8,Rickett,Rd,940304,3.008,3.611,0,14.489256,4.5,4.5 +7685,0,0.509907,1,1,0,2,5,,4,8,Maltby,Rd,940204,1.662,2.172,0,12.237767,5.8,4.5 +7433,0,0.504889,1,1,0,2,5,,4,8,Rickett,Rd,940304,2.503,3.008,0,12.117335,5.8,4.5 +19947,0,0.261256,1,1,0,2,4,,4,8,Lee,Rd,4102625,1.593,1.854,0,6.270153,4.5,4.5 +37473,-1,0.064615,0,2,0,2,4,,4,8,Lee,Rd,4104575,0,0.065,0,1.550766,4.5,4.5 +37470,0,0.251455,1,1,0,2,7,,4,8,Old Lee,Rd,4102625,1.854,2.105,0,6.034912,6.55,4.5 +37472,1,0.066812,2,0,0,2,4,,4,8,Lee,Rd,931610,0.144,0.21,0,1.603493,4.5,4.5 +37471,0,0.143537,2,2,1,2,4,,4,8,Lee,Rd,931610,0,0.144,0,3.444889,4.5,4.5 +37474,-1,0.016217,0,3,0,2,4,,4,8,Whitmore Lake,Rd,4104576,0.044,0.061,0,0.389201,4.5,4.5 +5510,-1,0.274743,0,2,0,1,2,,4,8,S US 23,,932002,6.609,6.884,0,,0.8,7.5 +7128,0,0.423006,2,2,1,2,3,,3,8,Grand River,Ave,932910,23.343,23.766,0,10.152141,5,5 +7535,-1,0.420757,0,3,0,1,1,,3,8,W I 96,,935207,22.232,22.653,0,,0.58,7 +7729,1,0.128847,3,0,0,1,1,,3,8,E I 96,,935105,22.469,22.599,0,,0.58,7 +27037,0,0.243739,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.849743,0.15,4 +7129,0,0.132291,2,2,1,2,3,,3,8,Grand River,Ave,932910,23.21,23.343,0,3.174988,5,5 +27047,0,0.263957,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,6.334959,0.15,4 +27012,0,0.202583,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,4.861983,0.15,4 +7667,1,0.197697,1,0,0,1,1,ROF,3,8,E I 96/Spencer,RAMP,935201,0,0.198,0,,2.24,5 +7730,1,0.241304,3,0,0,1,1,,3,8,E I 96,,935105,22.228,22.469,0,,0.58,7 +7011,0,0.037402,1,1,1,2,4,,3,8,Spencer,Rd,933908,0.622,0.659,0,0.897653,6,4.5 +5704,1,0.252688,1,0,0,1,1,RFF,3,8,E I 96/S US 23,RAMP,932102,0,0.253,0,,0.58,7 +37909,1,0.019575,2,0,0,2,5,DIV,4,2,Smith,Rd,1682506,0,0.02,0,0.469798,5.8,4.5 +7533,-1,0.130471,0,2,0,1,1,FCD,4,8,W I 96 CD,,935207,22.846,22.977,0,,0.8,7.5 +5706,1,0.241341,1,0,0,1,1,RFS,4,8,W I 96/S US 23,RAMP,932104,0,0.241,0,,0.22,6 +5142,-1,0.073141,0,2,0,1,2,,4,8,S US 23,,932002,6.884,6.957,0,,0.8,7.5 +5425,0,1.162866,1,1,0,2,5,,4,8,Hyne,Rd,931705,0,1.163,0,27.90879,5.8,4.5 +5818,1,0.183725,1,0,0,1,1,RON,3,8,Grand River/W I 96,RAMP,932001,0.063,0.247,0,,1.09,4 +7018,1,0.372496,1,0,0,1,1,ROF,3,8,W I 96/Grand River,RAMP,933807,0,0.372,0,,2.24,5 +7023,0,0.582081,1,1,0,2,4,,4,8,Hilton,Rd,933806,0,0.582,0,13.969942,4.5,4.5 +7140,0,0.275079,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.379,21.654,0,6.601896,5,5 +7151,0,0.565653,2,2,1,2,3,,4,8,Grand River,Ave,932910,19.26,19.826,0,13.575678,3.7,5 +7372,0,0.483586,1,1,0,2,5,,4,8,Hacker,Rd,940803,0.395,0.878,0,11.606068,5.8,4.5 +7444,0,0.704736,1,1,0,2,6,,4,8,Hunter,Rd,936005,1.01,1.714,0,16.913675,6.55,4.5 +7539,-1,0.269356,0,3,0,1,1,,3,8,W I 96,,935207,20.626,20.895,0,,0.58,7 +7738,1,0.305821,3,0,0,1,1,,3,8,E I 96,,935105,20.52,20.826,0,,0.58,7 +19652,0,0.207102,1,1,0,2,5,,3,8,Orndorf,Dr,1833119,0,0.207,0,4.970453,8,4.5 +19769,1,0.243346,1,0,0,1,1,RON,3,8,Grand River/E I 96,RAMP,4104146,0,0.243,0,,1.09,4 +26047,0,0.929079,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.297886,0.15,4 +26996,0,1.503607,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,36.086577,0.15,4 +27002,0,0.436676,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,10.48022,0.15,4 +27017,0,0.225298,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.40715,0.15,4 +29842,0,1.452199,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.852787,0.15,4 +5816,1,0.438663,1,0,0,1,1,ROF,3,8,E I 96/Grand River,RAMP,931910,0,0.439,0,,2.24,5 +7147,0,0.041211,2,2,1,2,3,,3,8,Grand River,Ave,932910,20.968,21.009,0,0.989056,5,5 +7743,1,0.319251,3,0,0,1,1,,3,8,E I 96,,935105,20.201,20.52,0,,0.58,7 +19918,0,0.774165,1,1,0,2,4,,3,8,Challis,Rd,4103152,0.417,1.191,0,18.579955,6,4.5 +27003,0,1.413539,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,33.924946,0.15,4 +27051,0,0.376609,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,9.038622,0.15,4 +7766,0,0.419903,1,1,0,2,4,,5,8,Bauer,Rd,940108,3.025,3.445,0,10.07768,3,4 +19919,0,0.416888,1,1,0,2,4,,5,8,Challis,Rd,4103152,0,0.417,0,10.005308,3,4 +7764,0,0.085752,1,1,0,2,5,,5,8,Bauer,Rd,940108,3.445,3.53,0,2.05805,3.7,5 +19763,0,0.264614,1,1,1,2,5,,3,8,Library,Dr,4104207,0,0.265,0,6.350731,8,4.5 +27050,0,0.679761,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,16.314264,0.15,4 +27018,0,0.211785,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.082841,0.15,4 +7141,0,0.190303,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.188,21.379,0,4.567279,5,5 +19917,0,0.127165,2,2,1,2,4,,3,8,Challis,Rd,4103152,1.191,1.318,0,3.051958,6,4.5 +7016,1,0.250218,1,0,0,1,1,RON,3,8,Grand River/E I 96,RAMP,933808,0,0.25,0,,1.09,4 +7143,0,0.062254,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.119,21.181,0,1.494094,5,5 +7142,0,0.007156,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.181,21.188,0,0.171744,5,5 +5817,1,0.062967,1,0,0,1,1,RON,3,8,Grand River/W I 96,RAMP,932001,0,0.063,0,,1.09,4 +7144,0,0.05806,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.061,21.119,0,1.393442,5,5 +19925,1,0.042371,1,0,0,1,1,RON,3,8,Grand River/W I 96,RAMP,4103114,0,0.042,0,,1.09,4 +7145,0,0.04253,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.018,21.061,0,1.02072,5,5 +7146,0,0.009112,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.009,21.018,0,0.218698,5,5 +7024,0,0.265916,1,1,0,2,5,,4,8,Bendix,Rd,933803,0,0.266,0,6.381975,5.8,4.5 +7149,0,0.116804,2,2,1,2,3,,4,8,Grand River,Ave,932910,20.319,20.436,0,2.803285,3.7,5 +7150,0,0.493803,2,2,1,2,3,,4,8,Grand River,Ave,932910,19.826,20.319,0,11.851265,3.7,5 +7148,0,0.532365,2,2,1,2,3,,4,8,Grand River,Ave,932910,20.436,20.968,0,12.776752,3.7,5 +7378,0,0.303689,1,1,0,2,5,,4,8,Hacker,Rd,940803,0.091,0.395,0,7.288543,5.8,4.5 +7388,0,0.091327,1,1,0,2,5,,4,8,Hacker,Rd,940803,0,0.091,0,2.191841,5.8,4.5 +7354,0,0.82534,1,1,0,2,5,,4,8,Hacker,Rd,940803,1.237,2.062,0,19.808161,5.8,4.5 +27004,0,0.933236,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,22.397673,0.15,4 +7152,0,0.2693,2,2,1,2,3,,4,8,Grand River,Ave,932910,18.991,19.26,0,6.463192,3.7,5 +27006,0,0.73591,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,17.661843,0.15,4 +7370,0,0.358833,1,1,0,2,5,,4,8,Hacker,Rd,940803,0.878,1.237,0,8.611983,5.8,4.5 +7022,0,0.433284,1,1,0,2,4,,4,8,Hilton,Rd,933806,0.582,1.015,0,10.398813,4.5,4.5 +7240,0,0.753666,1,1,0,2,5,,4,8,Flint,Rd,938605,1.114,1.868,0,18.087995,5.8,4.5 +7242,0,0.365246,1,1,0,2,5,,3,8,Flint,Rd,938605,0.614,0.98,0,8.765914,8,4.5 +7537,-1,1.087134,0,3,0,1,1,,3,8,W I 96,,935207,20.895,21.982,0,,0.58,7 +27013,0,0.824344,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,19.784261,0.15,4 +27045,0,0.545874,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,13.100977,0.15,4 +27049,0,0.237205,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,5.692919,0.15,4 +7251,0,0.359855,1,1,0,2,5,,3,8,Flint,Rd,938605,0.255,0.614,0,8.636508,8,4.5 +7137,0,0.297835,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.847,22.145,0,7.148041,5,5 +27029,0,0.253773,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,6.090548,0.15,4 +27031,0,0.221361,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,5.312654,0.15,4 +7015,0,0.100503,1,1,1,2,7,,3,8,Cross,St,933810,0,0.101,0,2.412078,7,4.5 +7139,0,0.193449,2,2,1,2,3,,3,8,Grand River,Ave,932910,21.654,21.847,0,4.64278,5,5 +40178,0,0.788545,1,1,0,2,5,,5,8,Hartland,Rd,4105279,0.428,1.216,0,18.925076,3.7,5 +7014,0,0.070063,1,1,0,2,5,,3,8,Liberty,,933901,0,0.07,0,1.681522,8,4.5 +7008,0,0.19183,1,1,1,2,4,,4,8,Spencer,Rd,933908,0.868,1.06,0,4.603921,4.5,4.5 +7241,0,0.134718,1,1,0,2,5,,4,8,Flint,Rd,938605,0.98,1.114,0,3.233233,5.8,4.5 +26070,0,0.416339,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.992137,0.15,4 +7788,1,0.318282,1,0,0,1,1,RON,4,8,Spencer/W I 96,RAMP,935103,0,0.318,0,,1.09,4 +7009,0,0.008036,1,1,1,2,4,,4,8,Spencer,Rd,933908,0.86,0.868,0,0.192854,4.5,4.5 +7007,0,0.250614,1,1,1,2,4,,4,8,Spencer,Rd,933908,1.06,1.31,0,6.014744,4.5,4.5 +26995,0,0.444313,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,10.663515,0.15,4 +7020,0,0.292709,1,1,0,2,4,,4,8,Hilton,Rd,933806,1.259,1.552,0,7.025009,4.5,4.5 +7445,0,1.009889,1,1,0,2,6,,4,8,Hunter,Rd,936005,0,1.01,0,24.237333,6.55,4.5 +7021,0,0.244577,1,1,0,2,4,,4,8,Hilton,Rd,933806,1.015,1.259,0,5.869855,4.5,4.5 +26061,0,0.301389,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,7.233334,0.15,4 +7443,0,0.377591,1,1,0,2,5,,4,8,Hyne,Rd,936005,1.714,2.091,0,9.062185,5.8,4.5 +26065,0,0.340279,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.166694,0.15,4 +6738,0,1.540588,1,1,0,2,5,,5,8,Old US 23,,932204,16.285,17.825,0,36.974124,3.7,5 +6988,0,1.01205,1,1,0,2,4,,5,8,Argentine,Rd,934310,4.044,5.056,0,24.289209,3,4 +7038,0,2.02713,1,1,0,2,5,,5,8,Latson,Rd,5490669,4.567,6.593,0,48.651112,3.7,5 +7048,0,0.993488,1,1,0,2,7,GRV,5,8,Golf Club,Rd,933602,3.959,4.952,0,23.843721,5.55,5 +7088,0,1.007504,1,1,0,2,3,,5,8,Highland,Rd,933209,8.269,9.276,0,24.180101,1.7,4 +8005,0,2.016766,1,1,0,2,5,GRV,5,8,Faussett,Rd,934509,5.168,7.184,0,48.402374,5.55,5 +8030,0,0.988008,1,1,0,2,4,,5,8,Clyde,Rd,939905,3.987,4.974,0,23.712184,3,4 +24818,0,0.948257,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.758159,0.15,4 +26042,0,1.828519,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,43.884461,0.15,4 +26915,0,1.121792,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.923001,0.15,4 +27053,0,0.97333,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.359918,0.15,4 +27055,0,1.452008,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.848189,0.15,4 +27056,0,1.014165,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.339955,0.15,4 +6990,0,1.015249,1,1,0,2,4,,5,8,Argentine,Rd,934310,2.019,3.033,0,24.365971,3,4 +7039,0,1.038017,1,1,0,2,5,,5,8,Latson,Rd,5490669,3.529,4.567,0,24.912406,3.7,5 +7049,0,1.004851,1,1,0,2,7,GRV,5,8,Golf Club,Rd,933602,2.955,3.959,0,24.116424,5.55,5 +7089,0,1.000426,1,1,0,2,3,,5,8,Highland,Rd,933209,7.269,8.269,0,24.010231,1.7,4 +27054,0,1.000965,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.02316,0.15,4 +30162,0,1.25452,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.108484,0.15,4 +7026,0,1.393019,1,1,0,2,6,GRV,5,8,Hughes,Rd,933708,3.09,4.483,0,33.432449,5.55,5 +7040,0,1.989313,1,1,0,2,4,,5,8,Latson,Rd,5490669,1.541,3.529,0,47.743509,3,4 +7051,0,0.509569,1,1,0,2,5,,4,8,Golf Club,Rd,933602,1.942,2.452,0,12.229647,5.8,4.5 +7091,0,0.492047,1,1,0,2,3,,5,8,Highland,Rd,933209,6.275,6.767,0,11.809124,1.7,4 +30161,0,1.312653,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,31.503676,0.15,4 +7027,0,0.629888,1,1,0,2,6,GRV,5,8,Hughes,Rd,933708,2.46,3.09,0,15.117321,5.55,5 +7050,0,0.503154,1,1,0,2,5,,4,8,Golf Club,Rd,933602,2.452,2.955,0,12.075693,5.8,4.5 +27061,0,0.225408,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,5.409795,0.15,4 +7090,0,0.502041,1,1,0,2,3,,5,8,Highland,Rd,933209,6.767,7.269,0,12.048992,1.7,4 +24794,0,1.443256,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.638153,0.15,4 +6989,0,1.011145,1,1,0,2,4,,5,8,Argentine,Rd,934310,3.033,4.044,0,24.267468,3,4 +6987,0,2.143359,1,1,0,2,4,,5,8,Argentine,Rd,934310,5.056,7.198,0,51.440615,3,4 +7312,0,1.008452,1,1,0,2,5,,5,8,Latson,Rd,938109,0,1.008,0,24.202844,3.7,5 +8010,0,0.992812,1,1,0,2,5,,5,8,Faussett,Rd,934509,4.176,5.168,0,23.827497,3.7,5 +8038,0,1.006704,1,1,0,2,5,,5,8,Clyde,Rd,939905,2.98,3.987,0,24.160904,3.7,5 +26430,0,1.98619,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,47.668562,0.15,4 +7037,0,1.061376,1,1,0,2,5,,5,8,Latson,Rd,5490669,6.593,7.654,0,25.473015,3.7,5 +8051,0,0.991479,1,1,0,2,5,,5,8,Clyde,Rd,939905,1.989,2.98,0,23.795488,3.7,5 +7311,0,1.00701,1,1,0,2,7,,5,8,Latson,Rd,938109,1.008,2.015,0,24.168228,5.8,6 +8011,0,0.999141,1,1,0,2,5,,5,8,Faussett,Rd,934509,3.177,4.176,0,23.979381,3.7,5 +24615,0,1.146814,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.52353,0.15,4 +30164,0,0.374618,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.990843,0.15,4 +6986,0,0.885786,1,1,0,2,4,,5,8,Argentine,Rd,934310,7.198,8.084,0,21.258871,3,4 +24595,0,1.119021,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.8565,0.15,4 +6985,0,0.121839,1,1,0,2,4,,5,8,Argentine,Rd,934310,8.084,8.206,0,2.92413,3,4 +7085,0,1.008054,1,1,0,2,3,,5,8,Highland,Rd,933209,10.265,11.273,0,24.193302,1.7,4 +7086,0,0.497877,1,1,0,2,3,,5,8,Highland,Rd,933209,9.767,10.265,0,11.949048,1.7,4 +7334,0,1.250265,1,1,0,2,6,GRV,5,8,Bergin,Rd,941010,2.06,3.31,0,30.006357,5.55,5 +7336,0,1.009979,1,1,0,2,5,,5,8,Hacker,Rd,940803,4.22,5.229,0,24.239485,3.7,5 +26045,0,1.059296,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.423113,0.15,4 +27057,0,2.144965,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,51.479158,0.15,4 +7047,0,1.012496,1,1,0,2,7,GRV,5,8,Golf Club,Rd,933602,4.952,5.964,0,24.299907,5.55,5 +7341,0,1.002651,1,1,0,2,5,,5,8,Hacker,Rd,940803,3.217,4.22,0,24.063629,3.7,5 +27058,0,1.003124,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.074976,0.15,4 +30160,0,1.007969,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.191245,0.15,4 +7087,0,0.49131,1,1,0,2,3,,5,8,Highland,Rd,933209,9.276,9.767,0,11.791431,1.7,4 +27059,0,1.007925,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.190207,0.15,4 +27089,0,0.061432,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,1.474368,0.15,4 +7084,0,0.425353,1,1,0,2,3,,5,8,Highland,Rd,933209,11.273,11.698,0,10.208471,1.7,4 +26043,0,2.025633,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,48.615189,0.15,4 +26044,0,1.047395,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.137491,0.15,4 +6186,0,1.037858,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,18.969,20.007,0,24.908604,3.7,5 +7260,0,1.494966,1,1,0,2,4,,5,8,Clyde,Rd,939905,5.464,6.959,0,35.87919,3,4 +7418,0,2.167669,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,0.706,2.873,0,52.024052,5.8,6 +8000,0,0.097809,1,1,0,2,5,,5,8,Faussett,Rd,934509,7.859,7.957,0,2.347407,3.7,5 +27063,0,1.112626,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.703029,0.15,4 +8006,0,0.490338,1,1,0,2,4,,5,8,Clyde,Rd,939905,4.974,5.464,0,11.768109,3,4 +26938,0,1.026114,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.626741,0.15,4 +8001,0,0.675493,1,1,0,2,5,,5,8,Faussett,Rd,934509,7.184,7.859,0,16.211829,3.7,5 +6492,0,1.144311,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,17.825,18.969,0,27.463466,3.7,5 +7984,0,0.899315,1,1,0,2,4,,5,8,Clyde,Rd,939905,6.959,7.858,0,21.58357,3,4 +7419,0,0.705885,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,0,0.706,0,16.941244,5.8,6 +5422,1,0.424174,2,0,0,1,2,,5,8,N US 23,,931510,17.558,17.982,0,,1.02,7 +5698,-1,0.439099,0,2,0,1,2,,5,8,S US 23,,932002,17.517,17.955,0,,1.02,7 +6812,1,0.211618,1,0,0,1,2,ROF,5,8,N US 23/Clyde,RAMP,931808,0,0.212,0,,2.24,5 +6813,1,0.233717,1,0,0,1,2,RON,5,8,Clyde/N US 23,RAMP,931810,0,0.234,0,,1.09,4 +6898,1,0.242194,1,0,0,1,2,RON,5,8,Clyde/S US 23,RAMP,932108,0,0.242,0,,1.09,4 +7979,0,0.156188,1,1,0,2,4,,5,8,Clyde,Rd,939905,7.883,8.04,0,3.748515,3,4 +6899,1,0.228379,1,0,0,1,2,ROF,5,8,S US 23/Clyde,RAMP,932109,0,0.228,0,,2.24,5 +7982,0,0.025742,1,1,0,2,4,,5,8,Clyde,Rd,939905,7.858,7.883,0,0.617816,3,4 +7967,0,0.023938,1,1,0,2,5,,5,8,Clyde,Rd,939905,8.04,8.064,0,0.57452,3.7,5 +5991,0,1.035628,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,20.007,21.042,0,24.855065,3.7,5 +7994,0,0.912833,1,1,0,2,5,,5,8,Faussett,Rd,934509,8.161,9.074,0,21.907991,3.7,5 +26939,0,0.48555,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.653193,0.15,4 +26940,0,1.083529,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.004693,0.15,4 +27062,0,0.560297,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.447121,0.15,4 +7998,0,0.203954,1,1,0,2,5,,5,8,Faussett,Rd,934509,7.957,8.161,0,4.894903,3.7,5 +7991,0,0.223316,1,1,0,2,7,,5,8,Faussett,Rd,934509,9.074,9.297,0,5.359577,5.8,6 +7400,0,1.092803,1,1,0,2,4,,5,8,Kensington,Rd,942603,1.964,3.056,0,26.227261,3,4 +7423,0,1.45014,1,1,0,2,7,,4,8,Culver,Rd,4105156,1.03,2.48,0,34.803371,6.55,4.5 +7487,1,0.076022,1,0,0,1,1,ROF,5,8,W I 96/S Kensington,RAMP,935304,0.128,0.204,0,,2.24,5 +7494,1,0.213814,1,0,0,1,1,RON,5,8,Kensington/W I 96,RAMP,935303,0,0.214,0,,1.09,4 +7510,-1,1.05074,0,3,0,1,1,,5,8,W I 96,,935207,26.432,27.482,0,,1.02,7 +7688,1,1.391265,3,0,0,1,1,,5,8,E I 96,,935105,25.115,26.506,0,,1.02,7 +8123,0,0.839217,1,1,0,2,4,,5,8,Stobart,Rd,943101,0,0.839,0,20.14122,3,4 +8141,0,0.071697,1,1,0,2,4,,5,8,Kensington,Rd,942603,1.892,1.964,0,1.72074,3,4 +8150,0,0.105061,2,2,0,2,3,,5,8,Kensington,Rd,942603,1.516,1.621,0,2.52147,1.7,4 +8151,0,0.627236,1,1,0,2,5,,4,8,Kensington,Rd,942603,0.538,1.165,0,15.053674,5.8,4.5 +8157,0,0.553962,1,1,0,2,5,,4,8,Silver Lake,Rd,942310,0,0.554,0,13.295079,5.8,4.5 +19822,0,0.967407,1,1,0,2,4,,4,8,Grand River,Ave,4104142,0,0.967,0,23.217762,4.5,4.5 +19875,1,0.043399,1,0,0,1,1,ROF,5,8,W I 96/S Kensington,RAMP,4104044,0,0.043,0,,2.24,5 +19911,0,0.565097,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,1.086,1.651,0,13.562327,4.5,4.5 +25939,0,1.068658,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.64778,0.15,4 +26139,0,2.028086,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,48.674074,0.15,4 +26997,0,0.793853,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,19.05248,0.15,4 +27064,0,1.241282,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,29.790779,0.15,4 +27065,0,1.021834,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.524028,0.15,4 +27067,0,1.113193,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,26.716636,0.15,4 +27075,0,0.495782,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.898778,0.15,4 +27080,0,1.034486,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.827668,0.15,4 +29476,0,0.696521,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,16.716515,0.15,4 +30228,0,1.84991,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,44.397829,0.15,4 +6391,0,1.024511,1,1,0,2,5,GRV,5,8,Silver Lake,Rd,931608,1.845,2.869,0,24.588264,5.55,5 +7125,0,0.812156,1,1,1,2,3,,4,8,Grand River,Ave,932910,25.003,25.815,0,19.491743,3.7,5 +37044,0,2.236703,1,1,0,2,5,,5,8,Oak Grove,Rd,4104402,3.085,5.321,0,53.68087,3.7,5 +7527,-1,0.09545,0,2,0,1,1,FCD,4,8,W I 96 CD,,935207,23.528,23.622,0,,0.8,7.5 +7690,1,0.07616,2,0,0,1,1,FCD,4,8,E I 96 CD,,935105,23.454,23.53,0,,0.8,7.5 +25131,0,0.918602,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.046438,0.15,4 +26140,0,1.463301,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,35.119217,0.15,4 +26727,0,0.913949,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,21.934778,0.15,4 +5509,0,0.715513,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,0.821,1.537,0,17.172319,3.7,5 +26728,0,1.99525,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,47.885994,0.15,4 +6895,0,0.234375,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,1.537,1.771,0,5.62501,3.7,5 +6735,0,0.074114,1,1,0,2,5,,5,8,Silver Lake,Rd,931608,1.771,1.845,0,1.778741,3.7,5 +7126,0,0.845456,2,2,1,2,3,,4,8,Grand River,Ave,932910,24.158,25.003,0,20.29094,3.7,5 +27000,0,0.256977,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,6.167443,0.15,4 +5428,1,0.278585,1,0,0,1,1,RFS,4,8,N US 23/W I 96,RAMP,931709,0,0.279,0,,0.22,6 +5429,1,0.502283,1,0,0,1,1,RFF,4,8,W I 96/N US 23,RAMP,931801,0,0.502,0,,0.8,7.5 +6390,1,0.452604,2,0,0,1,2,,4,8,N US 23,,931510,6.75,7.202,0,,0.8,7.5 +7528,-1,0.467753,0,2,0,1,1,FCD,4,8,W I 96 CD,,935207,23.06,23.528,0,,0.8,7.5 +5426,1,0.392235,1,0,0,1,1,RFS,4,8,N US 23/E I 96,RAMP,931706,0,0.392,0,,0.22,6 +6894,1,0.140844,2,0,0,1,2,,4,8,N US 23,,931510,6.571,6.712,0,,0.8,7.5 +7703,1,0.256261,2,0,0,1,1,FCD,4,8,E I 96 CD,,935105,23.197,23.454,0,,0.8,7.5 +5427,1,0.253655,1,0,0,1,1,RFS,4,8,E I 96/N US 23,RAMP,931707,0,0.254,0,,0.22,6 +6591,1,0.037439,2,0,0,1,2,,4,8,N US 23,,931510,6.712,6.75,0,,0.8,7.5 +7714,1,0.083317,3,0,0,1,1,FCD,4,8,E I 96 CD,,935105,23.114,23.197,0,,0.8,7.5 +6183,0,0.992648,1,1,0,2,5,GRV,5,8,Silver Lake,Rd,931608,2.869,3.861,0,23.823548,5.55,5 +7655,0,0.50261,1,1,0,2,5,,4,8,Rushton,Rd,942101,3.523,4.025,0,12.062641,5.8,4.5 +25130,0,0.655576,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,15.733818,0.15,4 +25132,0,0.752005,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,18.048124,0.15,4 +7387,0,0.854434,1,1,0,2,5,,5,8,Rushton,Rd,942101,2.669,3.523,0,20.506409,3.7,5 +8065,0,0.291245,1,1,0,2,5,,4,8,Silver Lake,Rd,942101,4.025,4.317,0,6.989891,5.8,4.5 +7124,0,1.58186,1,1,0,2,3,,5,8,Grand River,Ave,932910,25.815,27.396,0,37.964647,1.7,4 +7522,-1,1.113184,0,3,0,1,1,,5,8,W I 96,,935207,25.177,26.29,0,,1.02,7 +7883,0,0.351492,1,1,0,2,5,,4,8,Kensington,Rd,942603,1.165,1.516,0,8.435805,5.8,4.5 +19916,0,0.400486,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0,0.4,0,9.611667,4.5,4.5 +19912,0,0.500821,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.586,1.086,0,12.019705,4.5,4.5 +7495,1,0.288734,1,0,0,1,1,ROF,5,8,W I 96/Pleasant Valley,RAMP,935302,0,0.289,0,,2.24,5 +7635,1,0.240483,1,0,0,1,1,RON,5,8,Pleasant Valley/E I 96,RAMP,935204,0,0.24,0,,1.09,4 +19915,0,0.129748,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.4,0.53,0,3.113941,4.5,4.5 +19914,0,0.015492,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.53,0.546,0,0.371801,4.5,4.5 +19913,0,0.040221,1,1,0,2,4,,4,8,Pleasant Valley,Rd,4103155,0.546,0.586,0,0.965292,4.5,4.5 +7490,1,0.127991,1,0,0,1,1,ROF,5,8,W I 96/S Kensington,RAMP,935304,0,0.128,0,,2.24,5 +7516,-1,0.142443,0,3,0,1,1,,5,8,W I 96,,935207,26.29,26.432,0,,1.02,7 +5914,0,1.425158,1,1,0,2,5,,5,8,Hyne,Rd,931803,2.261,3.686,0,34.203793,3.7,5 +6593,0,0.743058,1,1,0,2,4,,4,8,Spencer,Rd,931802,1.223,1.966,0,17.83339,4.5,4.5 +8136,0,0.763262,1,1,0,2,5,,5,8,Kensington,Rd,942603,4.623,5.386,0,18.318287,3.7,5 +26058,0,1.050024,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.200585,0.15,4 +27069,0,1.409274,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,33.822573,0.15,4 +27070,0,1.495521,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,35.892494,0.15,4 +5431,0,0.642309,1,1,0,2,4,,4,8,Spencer,Rd,931802,0.282,0.924,0,15.415411,4.5,4.5 +5597,0,0.835734,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,8.2,9.035,0,20.057618,4.5,4.5 +27071,0,1.626272,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,39.030524,0.15,4 +5430,0,0.28241,1,1,0,2,4,,4,8,Spencer,Rd,931802,0,0.282,0,6.777846,4.5,4.5 +5820,0,0.291687,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,7.908,8.2,0,7.000484,4.5,4.5 +5143,0,0.279012,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,9.035,9.314,0,6.696286,4.5,4.5 +6896,0,0.298913,1,1,0,2,4,,4,8,Spencer,Rd,931802,0.924,1.223,0,7.173915,4.5,4.5 +6309,0,0.507514,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,11.092,11.599,0,12.180343,4.5,4.5 +6393,0,1.007664,1,1,0,2,5,,4,8,Hyne,Rd,931803,1.001,2.009,0,24.183927,5.8,4.5 +6491,0,0.570531,1,1,0,2,4,,4,8,Old US 23,Hwy,932204,10.522,11.092,0,13.692753,4.5,4.5 +6077,0,0.252651,1,1,0,2,5,,5,8,Hyne,Rd,931803,2.009,2.261,0,6.063614,3.7,5 +7442,0,0.421257,1,1,0,2,5,,5,8,Pleasant Valley,Rd,936106,0.087,0.509,0,10.110178,3.7,5 +7856,0,0.706113,1,1,0,2,5,,5,8,Jacoby,,943010,0,0.706,0,16.946716,3.7,5 +8138,0,1.1445,1,1,0,2,4,,5,8,Kensington,Rd,942603,3.056,4.2,0,27.468006,3,4 +27032,0,1.020874,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.500982,0.15,4 +19909,0,0.091124,1,1,0,2,5,,5,8,Buno,Rd,4103156,2.214,2.305,0,2.186974,3.7,5 +19910,0,0.433377,1,1,0,2,5,,5,8,Pleasant Valley,Rd,4103155,1.651,2.085,0,10.401057,3.7,5 +19945,0,0.106369,1,1,0,2,5,,5,8,Pleasant Valley,Rd,4102974,0,0.106,0,2.552859,3.7,5 +19908,0,0.129885,1,1,0,2,5,,5,8,Pleasant Valley,Rd,4104009,0,0.13,0,3.117244,3.7,5 +7398,0,0.362151,1,1,0,2,4,,5,8,Kensington,Rd,942603,4.261,4.623,0,8.691613,3,4 +37460,-1,0.021826,0,1,0,2,4,,5,8,Jacoby,,4102973,0,0.022,0,0.523826,3,4 +7397,0,0.86901,1,1,0,2,5,,5,8,Pleasant Valley,Rd,942603,5.386,6.254,0,20.856249,3.7,5 +8135,0,0.195671,1,1,0,2,5,,5,8,Pleasant Valley,Rd,942603,6.254,6.45,0,4.696103,3.7,5 +2446,-1,0.671063,0,3,0,1,1,,4,3,W I 96,,657304,0.614,1.285,0,,0.8,7.5 +2930,1,0.190249,3,0,0,1,1,,4,3,E I 96,,657303,0.566,0.756,0,,0.8,7.5 +2933,1,0.199785,1,0,0,1,1,ROF,4,3,E I 96/Kent Lake,RAMP,657210,0,0.2,0,,2.24,5 +2946,0,0.284742,1,1,0,2,4,,4,3,Kensington Lake,Rd,656903,0.581,0.865,0,6.833815,4.5,4.5 +3002,1,0.303733,1,0,0,1,1,RON,4,3,Kent Lake/W I 96,RAMP,657307,0.054,0.358,0,,1.09,4 +3085,0,0.89217,1,1,0,2,5,GRV,5,3,Martindale,Rd,656802,1.746,2.637,0,21.412072,5.55,5 +3364,0,0.24969,1,1,0,2,4,,4,3,Silver Lake,Rd,656604,0.546,0.796,0,5.992561,4.5,4.5 +3398,0,0.39089,1,1,0,2,7,,4,3,11 Mile,Rd,656603,0.422,0.813,0,9.381366,6.55,4.5 +3573,0,0.703696,1,1,0,2,4,,5,3,Pontiac,Trl,656507,4.291,4.995,0,16.888694,3,4 +7886,0,1.082406,1,1,0,2,5,,4,8,Silver Lake,Rd,942310,0.554,1.636,0,25.977751,5.8,4.5 +8124,0,1.433504,1,1,0,2,7,GRV,5,8,Dixboro,Rd,942604,0.494,1.927,0,34.404084,5.55,5 +8156,0,0.537695,1,1,0,2,5,,4,8,Kensington,Rd,942603,0,0.538,0,12.904688,5.8,4.5 +19821,0,0.753075,1,1,0,2,4,,4,3,Grand River,Ave,4104142,0.967,1.72,0,18.073812,4.5,4.5 +25267,0,0.487212,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.69308,0.15,4 +26141,0,0.845079,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.2819,0.15,4 +26986,0,0.655221,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.725315,0.15,4 +27074,0,0.172813,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.147507,0.15,4 +27078,0,0.877236,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.053667,0.15,4 +27079,0,0.440443,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.570629,0.15,4 +27068,0,1.277301,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,30.655214,0.15,4 +27066,0,0.391916,1,1,0,2,99,,4,8,Centroid Connector,,0,0,0,0,9.405993,0.15,4 +3403,0,0.422559,1,1,0,2,7,GRV,4,3,11 Mile,Rd,656603,0,0.422,0,10.141407,6.55,4.5 +7864,0,0.494309,1,1,0,2,7,GRV,5,8,Dixboro,Rd,942604,0,0.494,0,11.863415,5.55,5 +29803,0,0.110379,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.649102,0.15,4 +7681,1,0.767521,3,0,0,1,1,,5,8,E I 96,,935105,26.7,27.467,0,,1.02,7 +7404,0,0.204532,2,2,0,2,3,,5,8,Kensington,Rd,942603,1.629,1.833,0,4.908777,1.7,4 +7619,1,0.209973,1,0,0,1,1,RON,5,8,Kensington/E I 96,RAMP,935206,0,0.21,0,,1.09,4 +7621,1,0.219341,1,0,0,1,1,ROF,5,8,E I 96/Kensington,RAMP,935205,0,0.219,0,,2.24,5 +7682,1,0.194161,3,0,0,1,1,,5,8,E I 96,,935105,26.506,26.7,0,,1.02,7 +7882,0,0.007853,2,2,0,2,3,,5,8,Kensington,Rd,942603,1.621,1.629,0,0.188466,1.7,4 +8144,0,0.054382,1,1,0,2,3,,5,8,Kensington,Rd,942603,1.833,1.888,0,1.305163,1.7,4 +7402,0,0.004642,1,1,0,2,3,,5,8,Kensington,Rd,942603,1.888,1.892,0,0.111418,1.7,4 +2693,0,0.580731,1,1,0,2,4,,4,3,Kent Lake,Rd,656903,0,0.581,0,13.937541,4.5,4.5 +3046,0,0.315832,1,1,0,2,5,,4,3,Silver Lake,Rd,656604,0.23,0.546,0,7.579967,5.8,4.5 +3369,0,0.23027,1,1,0,2,5,,4,3,Silver Lake,Rd,656604,0,0.23,0,5.526479,5.8,4.5 +2671,1,0.56618,3,0,0,1,1,,4,3,E I 96,,657303,0,0.566,0,,0.8,7.5 +2721,-1,0.614082,0,3,0,1,1,,4,3,W I 96,,657304,0,0.614,0,,0.8,7.5 +2797,0,0.753571,1,1,0,2,5,GRV,5,3,Martindale,Rd,656802,0.992,1.746,0,18.085706,5.55,5 +3072,0,0.644462,1,1,1,2,5,,4,3,11 Mile,Rd,656603,0.813,1.457,0,15.467093,5.8,4.5 +3577,0,1.065978,1,1,0,2,4,,4,3,Pontiac,Trl,656507,2.993,4.058,0,25.583476,4.5,4.5 +25261,0,0.361195,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.668669,0.15,4 +25263,0,0.489357,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.744564,0.15,4 +25265,0,0.74478,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,17.874716,0.15,4 +27081,0,0.538459,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.923019,0.15,4 +25476,0,0.399951,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.598831,0.15,4 +2614,0,0.433855,1,1,1,2,4,,4,3,Lafayette,St,656507,2.559,2.993,0,10.412528,4.5,4.5 +3579,0,0.072139,1,1,1,2,4,,4,3,Lafayette,St,656507,2.487,2.559,0,1.731345,4.5,4.5 +2611,0,0.232864,1,1,0,2,4,,5,3,Pontiac,Trl,656507,4.058,4.291,0,5.588738,3,4 +27077,0,0.403024,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,9.672572,0.15,4 +3070,0,0.635844,1,1,0,2,5,,5,3,11 Mile,Rd,656603,1.564,2.2,0,15.260256,3.7,5 +3089,0,0.431982,1,1,0,2,5,,4,3,Martindale,Rd,656802,0.56,0.992,0,10.367579,5.8,4.5 +3395,0,0.106587,1,1,1,2,5,,4,3,11 Mile,Rd,656603,1.457,1.564,0,2.558094,5.8,4.5 +25260,0,0.501489,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.03573,0.15,4 +26839,0,0.621312,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.91148,0.15,4 +26987,0,0.952222,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.853331,0.15,4 +2673,1,0.299554,1,0,0,1,1,RON,4,3,N Kent Lake/E I 96,RAMP,657301,0,0.299,0,,1.09,4 +2683,0,0.174727,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,0.902,1.077,0,4.193442,4.5,4.5 +2932,1,0.153031,1,0,0,1,1,RON,4,3,S Kent Lake/E I 96,RAMP,657302,0,0.153,0,,1.09,4 +3075,0,0.335208,1,1,0,2,5,,4,3,Martindale,Rd,656802,3.495,3.83,0,8.044991,5.8,4.5 +3568,0,0.438688,1,1,0,2,4,,4,3,Pontiac,Trl,656507,5.309,5.747,0,10.528509,4.5,4.5 +19817,0,0.702401,1,1,0,2,4,,4,3,Grand River,Ave,4104142,2.577,3.28,0,16.857616,4.5,4.5 +19818,0,0.457225,1,1,0,2,4,,4,3,Grand River,Ave,4104142,2.12,2.577,0,10.973401,4.5,4.5 +19819,0,0.351311,1,1,0,2,4,,4,3,Grand River,Ave,4104142,1.769,2.12,0,8.431453,4.5,4.5 +26979,0,0.502232,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.053564,0.15,4 +26982,0,0.821448,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.714758,0.15,4 +2607,0,0.314097,1,1,0,2,4,,4,3,Pontiac,Trl,656507,4.995,5.309,0,7.538339,4.5,4.5 +27076,0,0.64653,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.516715,0.15,4 +2684,0,0.030383,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,0.865,0.896,0,0.729197,4.5,4.5 +19820,0,0.049383,1,1,0,2,4,,4,3,Grand River,Ave,4104142,1.72,1.769,0,1.185195,4.5,4.5 +2945,0,0.006935,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,0.896,0.902,0,0.16643,4.5,4.5 +2493,1,0.269462,2,0,0,1,1,ROF,4,3,W I 96/Kent Lake,RAMP,657308,0,0.269,0,,2.24,5 +2623,1,0.104048,1,0,0,1,1,ROF,4,3,W I 96/S Kent Lake,RAMP,657305,0,0.104,0,,2.24,5 +2668,1,0.319883,3,0,0,1,1,,4,3,E I 96,,657303,0.756,1.076,0,,0.8,7.5 +2941,0,0.064897,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,1.132,1.197,0,1.557524,4.5,4.5 +3313,1,0.054116,1,0,0,1,1,RON,4,3,S Kent Lake/W I 96,RAMP,657307,0,0.054,0,,1.09,4 +20250,1,0.042173,1,0,0,1,1,RON,4,3,N Kent Lake/W I 96,RAMP,4403524,0,0.042,0,,1.09,4 +2943,0,0.031715,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,1.077,1.109,0,0.761161,4.5,4.5 +2682,0,0.023233,2,2,0,2,4,,4,3,Kensington Lake,Rd,656903,1.109,1.132,0,0.557595,4.5,4.5 +3466,1,0.122188,1,0,0,1,1,ROF,4,3,W I 96/N Kent Lake,RAMP,657308,0.269,0.392,0,,2.24,5 +2606,0,0.624136,1,1,0,2,4,,4,3,Pontiac,Trl,656507,5.747,6.371,0,14.979268,4.5,4.5 +2792,0,0.509732,1,1,0,2,5,GRV,4,3,Martindale,Rd,656802,2.985,3.495,0,12.233575,6.55,4.5 +26980,0,0.493488,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.843713,0.15,4 +29806,0,0.619205,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.860919,0.15,4 +3567,0,0.100295,1,1,0,2,4,,4,3,Pontiac,Trl,656507,6.371,6.471,0,2.407072,4.5,4.5 +26981,0,0.204388,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.905303,0.15,4 +3587,0,1.003284,1,1,0,2,4,,5,3,General Motors,Rd,661208,0,1.003,0,24.078824,3,4 +21011,0,0.883075,1,1,0,2,4,,5,3,Hickory Ridge,Trl,4410281,1.119,2.002,0,21.19379,3,4 +26067,0,1.20984,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.036161,0.15,4 +27083,0,0.449157,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.779777,0.15,4 +27085,0,1.308652,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,31.407649,0.15,4 +27086,0,0.22329,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,5.358971,0.15,4 +29478,0,1.513585,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.326051,0.15,4 +3056,0,0.710129,1,1,0,2,4,,5,3,Stobart,Rd,661304,0,0.71,0,17.043099,3,4 +26978,0,1.5876,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.102408,0.15,4 +7855,0,0.446271,1,1,0,2,4,,5,8,Stobart,Rd,943101,0.839,1.285,0,10.710504,3,4 +3190,0,0.16428,1,1,0,2,4,,5,3,Stobart,Rd,661304,0.71,0.874,0,3.94272,3,4 +21010,0,0.767392,1,1,0,2,4,,5,3,Hickory Ridge,Trl,4410281,2.002,2.769,0,18.417418,3,4 +26068,0,0.958901,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.013632,0.15,4 +27082,0,0.689342,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.544207,0.15,4 +26974,0,0.263639,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,6.327334,0.15,4 +26976,0,1.042475,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.019397,0.15,4 +7073,1,0.711994,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,15.296,16.008,0,17.087854,1.7,4 +7422,0,0.753447,1,1,0,2,5,,5,8,Commerce,Rd,936705,1.463,2.216,0,18.082722,3.7,5 +7931,0,1.034868,1,1,0,2,5,GRV,5,8,Clyde,Rd,939905,10.913,11.947,0,24.836829,5.55,5 +8149,0,1.012666,1,1,0,2,5,,5,8,Fenton,Rd,934505,3.139,4.151,0,24.303981,3.7,5 +8165,0,0.646469,1,1,0,2,7,,5,8,Hartland,Rd,4105279,1.853,2.499,0,15.515262,5.8,6 +19921,-1,0.617568,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,2.86,3.477,0,14.821641,1.7,4 +21004,0,1.004563,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,7.057,8.061,0,24.109514,3.7,5 +26051,0,0.954643,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.911422,0.15,4 +26052,0,0.989717,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.75322,0.15,4 +26950,0,1.229466,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.507186,0.15,4 +27094,0,0.463328,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.11987,0.15,4 +29851,0,1.083469,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.003265,0.15,4 +5512,0,1.04434,1,1,0,2,4,,5,8,Old US 23,,932204,13.673,14.717,0,25.064166,3,4 +5591,1,0.251432,1,0,0,1,2,ROF,5,8,N US 23/Highland,RAMP,931804,0,0.251,0,,2.24,5 +5709,1,0.21907,1,0,0,1,2,RON,5,8,Highland/S US 23,RAMP,932106,0.053,0.272,0,,1.09,4 +5910,1,0.566022,2,0,0,1,2,,5,8,N US 23,,931510,14.38,14.946,0,,1.02,7 +6184,-1,0.564217,0,2,0,1,2,,5,8,S US 23,,932002,14.42,14.984,0,,1.02,7 +7075,1,1.544957,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,12.996,14.541,0,37.078972,1.7,4 +8162,0,1.009278,1,1,0,2,5,,5,8,Pleasant Valley,Rd,934505,1.12,2.129,0,24.222676,3.7,5 +37459,1,0.025939,1,0,0,2,4,,5,8,Jacoby,,943010,0.706,0.732,0,0.622535,3,4 +26049,0,1.501309,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.031405,0.15,4 +26053,0,1.813282,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,43.518771,0.15,4 +27090,0,1.115794,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.779066,0.15,4 +27091,0,1.279698,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.712741,0.15,4 +29852,0,1.134067,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.217609,0.15,4 +5821,0,1.301465,1,1,0,2,4,,5,8,Old US 23,Hwy,932204,12.372,13.673,0,31.235152,3,4 +37455,0,0.021393,1,1,0,2,3,,5,8,Hartland,Rd,4105279,0,0.021,0,0.513421,1.7,4 +7077,0,0.033753,2,2,1,2,3,,5,8,Highland,Rd,933209,12.81,12.844,0,0.810068,1.7,4 +5433,1,0.236613,1,0,0,1,2,RON,5,8,Highland/N US 23,RAMP,931806,0.064,0.301,0,,1.09,4 +5434,1,0.262717,1,0,0,1,2,ROF,5,8,S US 23/Highland,RAMP,932107,0,0.263,0,,2.24,5 +7082,0,0.134219,2,2,1,2,3,,5,8,Highland,Rd,933209,12.521,12.655,0,3.221261,1.7,4 +5592,1,0.06583,1,0,0,1,2,ROF,5,8,N US 23/EB Highland,RAMP,931804,0.251,0.317,0,,2.24,5 +5708,1,0.052978,1,0,0,1,2,RON,5,8,EB Highland/S US 23,RAMP,932106,0,0.053,0,,1.09,4 +7079,0,0.057405,2,2,1,2,3,,5,8,Highland,Rd,933209,12.726,12.784,0,1.377709,1.7,4 +20907,1,0.041249,1,0,0,1,2,RON,5,8,WB Highland/S US 23,RAMP,4104289,0,0.041,0,,1.09,4 +20910,1,0.047319,1,0,0,1,2,RON,5,8,EB Highland/N US 23,RAMP,4104287,0,0.047,0,,1.09,4 +20911,1,0.072538,1,0,0,1,2,ROF,5,8,N US 23/WB Highland,RAMP,4104286,0,0.073,0,,2.24,5 +5435,1,0.059562,1,0,0,1,2,ROF,5,8,S US 23/WB Highland,RAMP,932107,0.263,0.322,0,,2.24,5 +7080,0,0.057293,2,2,1,2,3,,5,8,Highland,Rd,933209,12.669,12.726,0,1.375026,1.7,4 +7081,0,0.01378,2,2,1,2,3,,5,8,Highland,Rd,933209,12.655,12.669,0,0.330712,1.7,4 +20909,1,0.062427,1,0,0,1,2,ROF,5,8,S US 23/EB Highland,RAMP,4104288,0,0.062,0,,2.24,5 +5432,1,0.064148,1,0,0,1,2,RON,5,8,WB Highland/N US 23,RAMP,931806,0,0.064,0,,1.09,4 +7078,0,0.026878,2,2,1,2,3,,5,8,Highland,Rd,933209,12.784,12.81,0,0.645061,1.7,4 +37453,0,0.334436,2,2,1,2,5,,5,8,Hartland,Rd,4105279,0.021,0.356,0,8.026455,3.7,5 +6978,0,0.121418,1,1,0,2,7,,5,8,Avon,St,4105279,1.732,1.853,0,2.914022,5.8,6 +7753,0,1.120616,1,1,0,2,5,GRV,5,8,Pleasant Valley,Rd,934505,0,1.12,0,26.894774,5.55,5 +7074,1,0.755602,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,14.541,15.296,0,18.134458,1.7,4 +8153,0,0.989435,1,1,0,2,5,,5,8,Fenton,Rd,934505,2.15,3.139,0,23.746445,3.7,5 +19923,-1,0.755752,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,1.699,2.454,0,18.13804,1.7,4 +26048,0,0.888732,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,21.329563,0.15,4 +26050,0,0.494246,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.861898,0.15,4 +30159,0,0.473262,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,11.358278,0.15,4 +19922,-1,0.405485,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,2.454,2.86,0,9.731642,1.7,4 +8160,0,0.020684,1,1,0,2,5,,5,8,Fenton,Rd,934505,2.129,2.15,0,0.496424,3.7,5 +8131,0,2.136941,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,5.669,7.806,0,51.286594,3.7,5 +26916,0,1.139494,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,27.347846,0.15,4 +7939,0,1.010573,1,1,0,2,5,GRV,5,8,Clyde,Rd,939905,9.903,10.913,0,24.253753,5.55,5 +8137,0,0.507553,1,1,0,2,5,,5,8,Fenton,Rd,934505,5.162,5.669,0,12.181276,3.7,5 +26942,0,0.960763,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,23.0583,0.15,4 +26989,0,0.570476,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.691421,0.15,4 +8147,0,1.011176,1,1,0,2,5,,5,8,Fenton,Rd,934505,4.151,5.162,0,24.268229,3.7,5 +2199,1,1.229685,2,0,0,2,3,DIV,5,3,Highland,Rd,648906,0.872,2.101,0,29.512439,1.7,4 +2494,0,1.193215,1,1,0,2,5,GRV,5,3,Wardlow,Rd,650309,0,1.193,0,28.637163,5.55,5 +21007,0,1.000898,1,1,0,2,4,,5,3,Hickory Ridge,Rd,4410281,5.052,6.052,0,24.021544,3,4 +21070,-1,1.130518,0,2,0,2,3,DIV,5,3,Highland,Rd,4410120,0.871,2.002,0,27.132437,1.7,4 +26959,0,0.993688,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.848505,0.15,4 +26960,0,1.185012,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,28.440296,0.15,4 +27087,0,1.087976,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.111423,0.15,4 +27093,0,1.094186,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.260457,0.15,4 +29849,0,1.00025,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.006008,0.15,4 +29850,0,1.112769,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.706462,0.15,4 +19854,0,0.543585,1,1,0,2,5,,5,3,Commerce,Rd,4104140,0.185,0.729,0,13.046033,3.7,5 +21008,0,1.527124,1,1,0,2,4,,5,3,Hickory Ridge,Rd,4410281,3.525,5.052,0,36.650977,3,4 +27088,0,0.955459,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,22.931013,0.15,4 +7421,0,0.349484,1,1,0,2,5,,5,8,Commerce,Rd,936705,2.216,2.565,0,8.387605,3.7,5 +19855,0,0.185288,1,1,0,2,5,,5,8,Commerce,Rd,4104140,0,0.185,0,4.446919,3.7,5 +19853,0,0.382268,1,1,0,2,5,,5,3,Commerce,Rd,4104140,0.729,1.111,0,9.174427,3.7,5 +27092,0,0.431058,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.345391,0.15,4 +2200,1,0.872366,2,0,0,2,3,DIV,5,3,Highland,Rd,648906,0,0.872,0,20.936779,1.7,4 +21005,0,0.983817,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,6.074,7.057,0,23.611598,3.7,5 +21071,-1,0.871761,0,2,0,2,3,DIV,5,3,Highland,Rd,4410120,0,0.871,0,20.922259,1.7,4 +7072,1,0.31025,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,16.008,16.318,0,7.446008,1.7,4 +21006,0,0.021502,1,1,0,2,4,,5,3,Hickory Ridge,Rd,4410281,6.052,6.074,0,0.516042,3,4 +26949,0,0.530727,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.737449,0.15,4 +28552,0,1.146263,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.510312,0.15,4 +29796,0,1.095817,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.299616,0.15,4 +2202,0,1.443732,1,1,0,2,5,,5,3,Middle,Rd,648808,0.878,2.321,0,34.649577,3.7,5 +2205,0,1.023127,1,1,0,2,5,,5,3,Clyde,Rd,648706,0.884,1.907,0,24.555056,3.7,5 +21001,0,2.135561,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,10.095,12.23,0,51.253464,3.7,5 +26921,0,1.07011,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.682639,0.15,4 +26943,0,1.260961,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,30.263054,0.15,4 +29798,0,1.449295,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.78309,0.15,4 +2206,0,0.884257,1,1,0,2,5,,5,3,Clyde,Rd,648706,0,0.884,0,21.22216,3.7,5 +21002,0,1.03104,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,9.065,10.095,0,24.744967,3.7,5 +21003,0,1.003447,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,8.061,9.065,0,24.082724,3.7,5 +26945,0,0.152134,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,3.651209,0.15,4 +3400,0,0.491449,1,1,0,2,5,GRV,5,3,Halsey,Rd,651401,0,0.491,0,11.794775,5.55,5 +6300,1,2.107118,2,0,0,1,2,,5,8,N US 23,,931510,22.161,24.268,0,,1.02,7 +6488,0,0.956255,1,1,0,2,5,,5,8,White Lake,Rd,931905,4.043,4.999,0,22.95011,3.7,5 +6737,-1,1.989793,0,2,0,1,2,,5,8,S US 23,,932002,22.107,24.096,0,,1.02,7 +6739,0,0.681982,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,23.764,24.446,0,16.367565,3.7,5 +7276,0,0.888013,1,1,0,2,5,,5,8,Center,Rd,941603,6.142,7.03,0,21.312308,3.7,5 +7383,0,2.38802,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,4.938,7.325,0,57.312469,5.8,6 +19983,0,1.26262,1,1,0,2,5,,5,8,Bennett Lake,Rd,3251563,0,1.262,0,30.302888,3.7,5 +21060,0,0.834021,1,1,0,2,4,,5,3,Holly,Rd,4410127,3.743,4.577,0,20.016503,3,4 +7293,0,1.003116,1,1,0,2,7,GRV,5,8,Center,Rd,941603,3.01,4.013,0,24.074793,5.55,5 +8104,0,2.240743,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,0.266,2.506,0,53.777842,3.7,5 +6982,0,1.005731,1,1,0,2,4,,5,8,Argentine,Rd,934310,10.214,11.22,0,24.137532,3,4 +7315,0,1.994695,1,1,0,2,7,,5,8,Center,Rd,941603,0,1.994,0,47.872679,5.8,6 +24596,0,2.11974,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,50.87376,0.15,4 +27096,0,1.080081,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.921932,0.15,4 +27102,0,1.268654,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,30.447707,0.15,4 +30163,0,1.44954,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,34.788963,0.15,4 +6983,0,1.0071,1,1,0,2,4,,5,8,Argentine,Rd,934310,9.208,10.214,0,24.170397,3,4 +7303,0,1.01633,1,1,0,2,7,GRV,5,8,Center,Rd,941603,1.994,3.01,0,24.391914,5.55,5 +30165,0,1.605094,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,38.522261,0.15,4 +6980,0,0.743566,1,1,0,2,4,,5,8,Argentine,Rd,934310,11.723,12.467,0,17.845582,3,4 +7258,0,0.493318,1,1,0,2,5,,5,8,Bennett Lake,Rd,941606,0,0.493,0,11.839625,3.7,5 +6981,0,0.503766,1,1,0,2,4,,5,8,Argentine,Rd,934310,11.22,11.723,0,12.090391,3,4 +34063,0,0.694764,1,1,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +7817,0,0.311705,1,1,0,2,5,,5,8,Bennett Lake,Rd,941905,0.514,0.825,0,7.480928,3.7,5 +7862,0,0.265627,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,0,0.266,0,6.375042,3.7,5 +7289,0,1.005371,1,1,0,2,7,GRV,5,8,Center,Rd,941603,4.013,5.018,0,24.128912,5.55,5 +27097,0,0.810858,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,19.460591,0.15,4 +27104,0,0.864951,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,20.758829,0.15,4 +5513,0,1.006878,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,22.063,23.069,0,24.165067,3.7,5 +7283,0,0.93304,1,1,0,2,7,,5,8,Center,Rd,941603,5.018,5.95,0,22.392962,5.8,6 +29479,0,1.070676,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,25.696215,0.15,4 +30169,0,0.548776,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,13.170629,0.15,4 +6592,1,0.478211,2,0,0,1,2,,5,8,N US 23,,931510,21.683,22.161,0,,1.02,7 +6814,1,0.251189,1,0,0,1,2,ROF,5,8,N US 23/Center,RAMP,931902,0,0.251,0,,2.24,5 +6815,1,0.254349,1,0,0,1,2,RON,5,8,Center/N US 23,RAMP,931904,0,0.254,0,,1.09,4 +6897,-1,0.408703,0,2,0,1,2,,5,8,S US 23,,932002,21.698,22.107,0,,1.02,7 +6901,1,0.207537,1,0,0,1,2,ROF,5,8,S US 23/Center,RAMP,932201,0,0.208,0,,2.24,5 +7278,0,0.128252,1,1,0,2,5,,5,8,Center,Rd,941603,5.976,6.104,0,3.078059,3.7,5 +6900,1,0.213428,1,0,0,1,2,RON,5,8,Center/S US 23,RAMP,932110,0,0.213,0,,1.09,4 +7279,0,0.025353,1,1,0,2,5,,5,8,Center,Rd,941603,5.95,5.976,0,0.608474,3.7,5 +7277,0,0.038585,1,1,0,2,5,,5,8,Center,Rd,941603,6.104,6.142,0,0.926036,3.7,5 +6906,0,0.694803,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,23.069,23.764,0,16.675279,3.7,5 +7329,0,0.168909,1,1,0,2,5,,5,8,Linden,Rd,937506,4.749,4.918,0,4.053819,3.7,5 +7985,0,0.511836,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,3.04,3.552,0,12.284058,3.7,5 +27095,0,0.349818,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,8.395633,0.15,4 +8081,0,0.534768,1,1,0,2,5,,5,8,Bennett Lake,Rd,941906,2.506,3.04,0,12.83444,3.7,5 +6303,0,0.36823,1,1,0,2,5,,5,8,White Lake,Rd,931905,4.999,5.367,0,8.837515,3.7,5 +34062,0,0.821763,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19984,0,0.168073,1,1,0,2,5,,5,8,Linden,Rd,3251558,0,0.168,0,4.033746,3.7,5 +2998,0,0.173246,2,2,0,2,4,,4,3,Saginaw,,650602,0.381,0.555,0,4.157909,4.5,4.5 +3079,0,0.900846,1,1,0,2,5,,5,3,Fish Lake,Rd,649104,7.654,8.555,0,21.620297,3.7,5 +6816,0,1.388111,1,1,0,2,5,,5,8,White Lake,Rd,931905,0,1.388,0,33.314652,3.7,5 +34065,0,0.665997,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34066,0,0.641218,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +6594,0,1.168799,1,1,0,2,5,,5,8,White Lake,Rd,931905,1.441,2.61,0,28.051168,3.7,5 +7274,0,1.009689,1,1,0,2,5,GRV,5,8,Center,Rd,941603,8.031,9.041,0,24.232538,5.55,5 +7344,0,1.668068,1,1,0,2,5,,5,8,Denton Hill,Rd,937306,0,1.668,0,40.033622,3.7,5 +7351,0,1.014283,1,1,0,2,7,,5,8,Carmer,Rd,937206,0,1.014,0,24.342782,5.8,6 +7352,0,1.545926,1,1,0,2,7,,5,8,Hartland,Rd,937104,7.081,8.626,0,37.102218,5.8,6 +7359,0,0.179634,1,1,0,2,7,,5,8,Hartland,Rd,937104,6.901,7.081,0,4.311227,5.8,6 +26906,0,0.612052,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,14.689259,0.15,4 +26907,0,1.513296,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,36.319107,0.15,4 +34106,0,1.435657,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7275,0,1.001607,1,1,0,2,5,GRV,5,8,Center,Rd,941603,7.03,8.031,0,24.038578,5.55,5 +7361,0,0.747198,1,1,0,2,7,,5,8,Hartland,Rd,937104,6.154,6.901,0,17.93276,5.8,6 +7368,0,0.607973,1,1,0,2,7,,5,8,Hartland,Rd,937104,5.547,6.154,0,14.591343,5.8,6 +7374,0,0.50973,1,1,0,2,7,,5,8,Hartland,Rd,937104,5.037,5.547,0,12.233508,5.8,6 +5813,1,0.756573,2,0,0,1,2,,5,8,N US 23,,931510,24.519,25.275,0,,1.02,7 +6185,-1,0.790754,0,2,0,1,2,,5,8,S US 23,,932002,24.47,25.261,0,,1.02,7 +6302,0,0.773605,1,1,0,2,5,,5,8,White Lake,Rd,931905,2.61,3.383,0,18.566527,3.7,5 +6396,0,1.031024,1,1,0,2,5,,5,8,Old US 23,Hwy,932204,24.446,25.476,0,24.744576,3.7,5 +7381,0,1.095923,1,1,0,2,7,,5,8,Runyan Lake,Rd,937103,7.325,8.421,0,26.302159,5.8,6 +34067,1,0.751512,2,0,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +34068,-1,0.743693,0,2,0,1,90,,5,9,External Station Connector,,0,0,0,0,,0.15,4 +6076,1,0.251004,2,0,0,1,2,,5,8,N US 23,,931510,24.268,24.519,0,,1.02,7 +6078,0,0.334222,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.383,3.717,0,8.021327,3.7,5 +6304,1,0.29464,1,0,0,1,2,RON,5,8,White Lake/N US 23,RAMP,931907,0,0.295,0,,1.09,4 +6394,-1,0.374285,0,2,0,1,2,,5,8,S US 23,,932002,24.096,24.47,0,,1.02,7 +6903,1,0.265402,1,0,0,1,2,ROF,5,8,S US 23/White Lake,RAMP,932203,0,0.265,0,,2.24,5 +5140,0,0.204072,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.816,4.02,0,4.89772,3.7,5 +5987,1,0.181664,1,0,0,1,2,ROF,5,8,N US 23/White Lake,RAMP,931906,0,0.182,0,,2.24,5 +6902,1,0.17388,1,0,0,1,2,RON,5,8,White Lake/S US 23,RAMP,932202,0,0.174,0,,1.09,4 +6818,0,0.022372,1,1,0,2,5,,5,8,White Lake,Rd,931905,4.02,4.043,0,0.536924,3.7,5 +5815,0,0.08676,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.717,3.804,0,2.082252,3.7,5 +5593,0,0.012652,1,1,0,2,5,,5,8,White Lake,Rd,931905,3.804,3.816,0,0.30365,3.7,5 +34105,0,0.600079,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19982,0,0.014274,1,1,0,2,5,,,8,Shiawassee,Ave,3251563,1.262,1.276,0,0.342584,3.7,5 +11031,0,0.187272,1,1,0,2,7,,,8,Shiawassee,Ave,1530104,0.046,0.233,0,4.494532,5.8,6 +11028,0,0.184768,1,1,0,2,7,,,8,Shiawassee,Ave,1530104,0.236,0.421,0,4.434433,5.8,6 +8096,0,0.503183,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,9.332,9.835,0,12.076399,3.7,5 +26908,0,1.036778,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,24.882683,0.15,4 +8090,0,0.847796,1,1,0,2,5,,5,8,Denton Hill,Rd,934505,9.835,10.683,0,20.347109,3.7,5 +6817,0,0.053527,1,1,0,2,5,,5,8,White Lake,Rd,931905,1.388,1.441,0,1.284645,3.7,5 +34064,0,0.652562,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34107,0,0.722954,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19976,0,0.069244,1,1,0,2,7,,5,8,Hartland,Rd,3251928,0,0.069,0,1.661854,5.8,6 +2667,0,1.024176,1,1,0,2,5,GRV,5,3,Rose Center,Rd,649409,1.099,2.123,0,24.580213,5.55,5 +19980,0,1.034459,1,1,0,2,5,,5,3,Fenton,Rd,3251564,1.151,2.186,0,24.827004,3.7,5 +20998,0,1.098694,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,14.737,15.835,0,26.368664,3.7,5 +26909,0,1.073802,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.771251,0.15,4 +26910,0,0.764417,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.346012,0.15,4 +2669,0,1.099832,1,1,0,2,5,GRV,5,3,Rose Center,Rd,649409,0,1.099,0,26.395958,5.55,5 +20999,0,1.502551,1,1,0,2,5,,5,3,Hickory Ridge,Rd,4410281,13.235,14.737,0,36.061226,3.7,5 +19981,0,1.100123,1,1,0,2,5,,5,3,Holly,Rd,3251564,0.052,1.151,0,26.402942,3.7,5 +26912,0,1.567096,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.610304,0.15,4 +2481,0,0.512579,1,1,0,2,4,,5,3,Milford,Rd,679302,3.383,3.895,0,12.301904,3,4 +2663,0,0.499533,1,1,0,2,5,,5,3,Academy,,649503,0.367,0.866,0,11.98878,3.7,5 +3091,0,1.050585,1,1,0,2,5,,5,3,Fish Lake,Rd,649104,6.604,7.654,0,25.214029,3.7,5 +19979,0,1.109481,1,1,0,2,5,,5,3,Fenton,Rd,3251564,2.186,3.295,0,26.627546,3.7,5 +2571,0,0.297304,1,1,0,2,4,,4,3,Broad,,650710,0,0.297,0,7.135303,4.5,4.5 +3505,0,0.131604,1,1,0,2,5,,4,3,Oakland,,651008,0,0.132,0,3.158495,5.8,4.5 +3506,0,0.262017,1,1,0,2,5,,4,3,Academy,Rd,651002,0,0.262,0,6.288413,5.8,4.5 +2542,0,0.114638,1,1,0,2,7,,4,3,Maple,,650805,0,0.115,0,2.75132,6.55,4.5 +2563,0,0.24808,1,1,0,2,4,,4,3,Broad,,650710,0.297,0.545,0,5.953909,4.5,4.5 +3138,0,0.251705,1,1,0,2,7,,4,3,Saginaw,,650602,0.056,0.308,0,6.04092,6.55,4.5 +3407,0,0.118714,1,1,0,2,5,,4,3,Oakland,,651008,0.132,0.25,0,2.849134,5.8,4.5 +3404,0,0.06991,1,1,0,2,7,,4,3,Michigan,,651207,0,0.07,0,1.67784,6.55,4.5 +2552,0,0.064149,1,1,0,2,7,,4,3,Sherman,,650802,0.124,0.188,0,1.539565,6.55,4.5 +3082,0,0.073724,2,2,0,2,4,,4,3,Saginaw,,650602,0.308,0.381,0,1.769387,4.5,4.5 +2517,0,0.062226,1,1,0,2,4,,4,3,Maple,,650805,0.115,0.177,0,1.493427,4.5,4.5 +2523,0,1.795292,1,1,0,2,5,GRV,5,3,Belford,Rd,649602,0.51,2.305,0,43.087008,5.55,5 +2662,0,2.080217,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,0,2.08,0,49.925205,3,4 +21063,0,0.999842,1,1,0,2,4,,5,3,Holly,Rd,4410127,0.501,1.5,0,23.996215,3,4 +27100,0,1.293909,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,31.053823,0.15,4 +28610,0,1.5851,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,38.042393,0.15,4 +27099,0,1.855646,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,44.53551,0.15,4 +2582,0,0.995906,1,1,0,2,5,GRV,5,3,Quick,Rd,649505,0,0.996,0,23.901732,5.55,5 +2661,0,0.591164,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,2.08,2.671,0,14.187939,3,4 +3059,0,0.60188,1,1,0,2,5,,5,3,Fish Lake,Rd,649104,8.555,9.156,0,14.44512,3.7,5 +21064,0,0.164607,1,1,1,2,4,,4,3,Holly,Rd,4410127,0.336,0.501,0,3.95056,4.5,4.5 +26936,0,0.04544,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.090569,0.15,4 +27375,0,0.364006,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.736155,0.15,4 +2659,0,0.418512,1,1,0,2,4,,4,3,Grange Hall,Rd,649504,2.671,3.089,0,10.044283,4.5,4.5 +2819,0,0.571425,2,2,0,2,4,,4,3,Saginaw,,650602,0.743,1.314,0,13.71419,4.5,4.5 +26935,0,0.728293,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.479041,0.15,4 +26932,0,0.17257,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.141683,0.15,4 +2852,0,0.188625,2,2,0,2,4,,4,3,Saginaw,,650602,0.555,0.743,0,4.526998,4.5,4.5 +2656,0,0.104361,1,1,1,2,4,,4,3,Grange Hall,Rd,649504,3.089,3.193,0,2.504664,4.5,4.5 +21065,0,0.336041,1,1,1,2,4,,4,3,Holly,Rd,4410127,0,0.336,0,8.064985,4.5,4.5 +21061,0,1.46469,1,1,0,2,4,,5,3,Holly,Rd,4410127,2.279,3.743,0,35.152559,3,4 +21062,0,0.77945,1,1,0,2,4,,5,3,Holly,Rd,4410127,1.5,2.279,0,18.706794,3,4 +34108,0,0.931477,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19978,0,1.258343,1,1,0,2,5,GRV,5,3,Thompson,Rd,3251565,0.383,1.64,0,30.200232,5.55,5 +34081,0,1.14127,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +477,0,0.500129,1,1,0,2,4,,4,3,Wise,Rd,630008,0,0.5,0,12.003098,4.5,4.5 +518,0,0.914966,1,1,0,2,4,,4,3,Bogie Lake,Rd,630007,0,0.915,0,21.959179,4.5,4.5 +698,0,0.580369,1,1,0,2,5,,4,3,Carey,Rd,630309,0,0.58,0,13.928862,5.8,4.5 +1012,0,0.19248,1,1,0,2,5,,4,3,Lake,Dr,631101,0.394,0.587,0,4.619511,5.8,4.5 +1033,0,0.539552,1,1,0,2,5,,4,3,Willow,Rd,629505,1.962,2.501,0,12.949259,5.8,4.5 +1138,0,1.172071,1,1,0,2,4,,4,3,Glengary,Rd,630108,2.294,3.466,0,28.129695,4.5,4.5 +1188,0,0.187961,1,1,1,2,3,,4,3,Union Lake,Rd,629405,1.263,1.451,0,4.511056,3.7,5 +1277,0,0.16335,1,1,0,2,4,,4,3,Sleeth,Rd,629507,3.734,3.897,0,3.920388,4.5,4.5 +1334,0,0.360847,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,0.752,1.113,0,8.660339,4.5,4.5 +1375,0,0.670391,1,1,0,2,4,,4,3,Hiller,Rd,632709,0.502,1.173,0,16.089383,4.5,4.5 +37667,0,0.953051,1,1,0,2,5,,4,3,Oxbow Lake,Rd,630010,0.06,1.013,0,22.873223,5.8,4.5 +1981,0,0.326537,1,1,0,2,5,,4,3,Carroll Lake,Rd,629303,0.171,0.498,0,7.836894,5.8,4.5 +2042,0,0.784078,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,0.549,1.333,0,18.817863,4.5,4.5 +2096,0,0.741714,1,1,0,2,5,,4,3,Ladd,Rd,629608,0.537,1.278,0,17.801143,5.8,4.5 +2184,0,1.385346,2,2,1,2,3,,4,3,Highland,Rd,648906,9.938,11.323,0,33.248311,3.7,5 +2439,0,0.49601,1,1,0,2,4,,3,3,West Maple,Rd,657406,6.93,7.426,0,11.904241,6,4.5 +2477,0,1.303272,1,1,0,2,5,,4,3,Teggerdine,Rd,650405,0,1.303,0,31.278525,5.8,4.5 +2695,-1,1.416117,0,3,0,1,1,,4,3,W I 96,,657304,8.639,10.055,0,,0.8,7.5 +2771,0,1.252545,1,1,0,2,4,,5,3,White Lake,Rd,649303,4.871,6.124,0,30.061083,3,4 +2787,0,1.0784,1,1,0,2,4,,5,3,Milford,Rd,660504,0.356,1.434,0,25.881603,3,4 +2877,1,0.765205,3,0,0,1,1,,4,3,E I 96,,657303,7.931,8.696,0,,0.8,7.5 +3009,0,1.232689,1,1,0,2,3,,4,3,Pontiac,Trl,657404,5.187,6.419,0,29.584548,3.7,5 +3086,0,0.998559,1,1,0,2,5,,5,3,Duck Lake,Rd,661010,0,0.998,0,23.965423,3.7,5 +3204,0,0.311282,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,1.025,1.336,0,7.470767,3.7,5 +3868,0,0.646257,1,1,0,2,4,,4,3,Park,Dr,705704,2.327,2.973,0,15.510165,4.5,4.5 +4886,0,0.183436,1,1,0,2,7,,4,3,Keith,Rd,709003,0.319,0.503,0,4.402457,6.55,4.5 +19803,0,0.44979,2,2,1,2,4,,4,3,Grand River,Ave,4104142,10.289,10.739,0,10.794964,4.5,4.5 +19838,0,0.504656,1,1,0,2,4,,4,3,Commerce,Rd,4104140,9.686,10.19,0,12.111753,4.5,4.5 +25713,0,0.829942,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.918609,0.15,4 +25719,0,0.217961,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,5.231063,0.15,4 +25720,0,0.737997,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.711936,0.15,4 +25722,0,0.329719,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.913257,0.15,4 +25724,0,1.356825,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,32.563811,0.15,4 +25737,0,0.51249,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.299754,0.15,4 +25738,0,0.866686,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.800472,0.15,4 +26880,0,0.512616,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.302779,0.15,4 +26954,0,1.968445,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,47.242682,0.15,4 +27107,0,1.401789,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.642926,0.15,4 +27111,0,0.426729,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.241501,0.15,4 +27119,0,0.650182,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.604357,0.15,4 +27120,0,0.576586,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.838067,0.15,4 +27123,0,0.64146,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.39503,0.15,4 +27137,0,0.68766,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.503839,0.15,4 +27140,0,0.627794,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.067061,0.15,4 +27195,0,0.866067,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.785616,0.15,4 +30230,0,0.828249,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.877975,0.15,4 +730,0,0.976402,1,1,0,2,5,,4,3,Sleeth,Rd,629507,0.024,1,0,23.43365,5.8,4.5 +821,0,0.397614,1,1,0,2,4,,4,3,Benstein,Rd,629509,0,0.398,0,9.542737,4.5,4.5 +1246,0,0.502206,1,1,0,2,4,,4,3,Wixom,Rd,631910,0.499,1.001,0,12.052945,4.5,4.5 +1913,0,0.974422,1,1,0,2,4,,5,3,Wixom,Rd,631910,2.557,3.531,0,23.386133,3,4 +2040,0,0.390107,1,1,0,2,4,,4,3,Beck,Rd,629604,0.288,0.677,0,9.362561,4.5,4.5 +2634,0,0.569091,1,1,0,2,4,,4,3,West Maple,Rd,657406,5.084,5.653,0,13.658183,4.5,4.5 +2649,1,3.803202,3,0,0,1,1,,4,3,E I 96,,657303,3.153,6.955,0,,0.8,7.5 +2965,0,0.959447,1,1,0,2,4,,5,3,Milford,Rd,656804,4.189,5.148,0,23.026717,3,4 +3124,0,0.998138,1,1,0,2,5,GRV,5,3,Hill,Rd,657608,0,0.998,0,23.955301,5.55,5 +3168,0,1.38505,1,1,0,2,4,,4,3,Pontiac,Trl,657404,2.108,3.492,0,33.241201,4.5,4.5 +3428,0,0.80482,1,1,0,2,4,,4,3,West Maple,Rd,657406,6.126,6.93,0,19.315691,4.5,4.5 +3516,-1,3.596748,0,3,0,1,1,,4,3,W I 96,,657304,3.179,6.775,0,,0.8,7.5 +4009,0,0.85999,1,1,0,2,7,,4,3,Charms,Rd,705705,0,0.86,0,20.639751,6.55,4.5 +19812,0,1.058822,1,1,0,2,4,,4,3,Grand River,Ave,4104142,6.039,7.097,0,25.411737,4.5,4.5 +19842,0,1.05651,1,1,0,2,4,,4,3,Commerce,Rd,4104140,6.589,7.645,0,25.356251,4.5,4.5 +25975,0,1.50198,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.047516,0.15,4 +26998,0,1.200954,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.822895,0.15,4 +26999,0,1.259251,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,30.222027,0.15,4 +27150,0,1.128157,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.075763,0.15,4 +27159,0,1.235771,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,29.658508,0.15,4 +27162,0,0.659108,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.818599,0.15,4 +27163,0,0.152891,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.669391,0.15,4 +27164,0,0.149062,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.577476,0.15,4 +3019,0,0.636648,1,1,0,2,3,,5,3,Milford,Rd,656804,2.019,2.655,0,15.279556,1.7,4 +3498,0,0.998559,1,1,0,2,4,,4,3,Pontiac,Trl,657404,1.109,2.108,0,23.965413,4.5,4.5 +19814,0,0.819147,1,1,0,2,4,,4,3,Grand River,Ave,4104142,4.956,5.775,0,19.659522,4.5,4.5 +24622,0,1.510357,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.248577,0.15,4 +27156,0,0.429516,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.308387,0.15,4 +27157,0,0.793806,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.05135,0.15,4 +30229,0,0.74839,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.96137,0.15,4 +2775,0,1.023073,1,1,0,2,3,,5,3,Milford,Rd,656804,0.996,2.019,0,24.553742,1.7,4 +3055,0,0.250747,1,1,0,2,5,,5,3,11 Mile,Rd,656603,2.559,2.81,0,6.017924,3.7,5 +3057,0,0.363017,1,1,0,2,3,,5,3,Milford,Rd,656804,0.633,0.996,0,8.712402,1.7,4 +2955,0,0.437637,1,1,0,2,5,GRV,4,3,Hill,Rd,656805,2.69,3.127,0,10.503294,6.55,4.5 +3016,0,0.240579,2,2,0,2,3,,4,3,Milford,Rd,656804,3.448,3.688,0,5.773899,3.7,5 +3510,0,1.07719,1,1,0,2,4,,4,3,Pontiac,Trl,657404,0,1.077,0,25.852555,4.5,4.5 +19815,0,0.417929,1,1,1,2,4,,4,3,Grand River,Ave,4104142,3.885,4.302,0,10.030291,4.5,4.5 +2749,0,0.4993,1,1,0,2,3,,5,3,Milford,Rd,656804,2.655,3.154,0,11.983204,1.7,4 +2540,-1,0.327353,0,3,0,1,1,,4,3,W I 96,,657304,2.852,3.179,0,,0.8,7.5 +2706,0,0.098138,2,2,1,2,4,,4,3,Milford,Rd,656804,4.091,4.189,0,2.355316,4.5,4.5 +2919,1,0.314042,3,0,0,1,1,,4,3,E I 96,,657303,2.839,3.153,0,,0.8,7.5 +3844,1,0.377454,1,0,0,1,1,ROF,4,3,W I 96/N Milford,RAMP,683801,0,0.377,0,,2.24,5 +20793,1,0.280773,1,0,0,1,1,RON,4,3,N Milford/E I 96,RAMP,4405372,0,0.281,0,,1.09,4 +2437,-1,0.338487,0,3,0,1,1,,4,3,W I 96,,657304,2.514,2.852,0,,0.8,7.5 +2665,1,0.230882,3,0,0,1,1,,4,3,E I 96,,657303,2.609,2.839,0,,0.8,7.5 +2969,0,0.199537,2,2,0,2,3,,4,3,Milford,Rd,656804,3.884,4.084,0,4.788888,3.7,5 +3266,1,0.326445,1,0,0,1,1,ROF,4,3,E I 96/Milford,RAMP,657403,0,0.326,0,,2.24,5 +3843,1,0.351968,1,0,0,1,1,RON,4,3,Milford/W I 96,RAMP,683802,0,0.352,0,,1.09,4 +20549,1,0.262089,1,0,0,1,1,ROF,4,3,W I 96/S Milford,RAMP,4407799,0,0.262,0,,2.24,5 +3576,1,0.271446,1,0,0,1,1,RON,4,3,S Milford/E I 96,RAMP,657402,0,0.271,0,,1.09,4 +2748,0,0.040611,2,2,0,2,3,,4,3,Milford,Rd,656804,3.844,3.884,0,0.974668,3.7,5 +2711,0,0.003544,2,2,0,2,3,,4,3,Milford,Rd,656804,4.084,4.087,0,0.085052,3.7,5 +2966,0,0.003936,2,2,0,2,3,,4,3,Milford,Rd,656804,4.087,4.091,0,0.094461,3.7,5 +2697,0,0.605034,1,1,0,2,5,,4,3,Hill,Rd,656805,2.085,2.69,0,14.520819,5.8,4.5 +27168,0,0.692542,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.62102,0.15,4 +3182,0,0.032534,1,1,0,2,4,,4,3,Pontiac,Trl,657404,1.077,1.109,0,0.780824,4.5,4.5 +27148,0,0.725145,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.403471,0.15,4 +27158,0,0.808659,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.407819,0.15,4 +19813,0,0.264223,1,1,0,2,4,,4,3,Grand River,Ave,4104142,5.775,6.039,0,6.341358,4.5,4.5 +1397,0,0.73566,1,1,0,2,4,,5,3,Wixom,Rd,631910,3.531,4.267,0,17.655842,3,4 +2699,0,0.978782,1,1,0,2,4,,4,3,Milford,Rd,656804,7.169,8.148,0,23.490774,4.5,4.5 +2830,0,2.033656,1,1,0,2,5,GRV,5,3,Hill,Rd,657608,0.998,3.031,0,48.807753,5.55,5 +2901,0,0.332613,1,1,0,2,4,,4,3,Atlantic,St,660202,0,0.333,0,7.98271,4.5,4.5 +19846,0,0.577021,1,1,0,2,4,,4,3,Commerce,St,4104140,4.602,5.179,0,13.848495,4.5,4.5 +25731,0,0.304099,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.298378,0.15,4 +26977,0,1.551322,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.231736,0.15,4 +27149,0,0.479699,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.512768,0.15,4 +27169,0,1.152524,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.660579,0.15,4 +27170,0,0.649644,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.591466,0.15,4 +27173,0,0.431388,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.353324,0.15,4 +27359,0,1.89242,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,45.41809,0.15,4 +2705,0,0.998711,1,1,0,2,4,,5,3,Milford,Rd,656804,5.148,6.147,0,23.969075,3,4 +2959,0,1.02271,1,1,0,2,4,,5,3,Milford,Rd,656804,6.147,7.169,0,24.545036,3,4 +2958,0,0.284537,1,1,0,2,4,,4,3,Milford,Rd,656804,8.148,8.432,0,6.828878,4.5,4.5 +3125,0,0.458495,1,1,0,2,5,,4,3,Main,St,660502,0.035,0.493,0,11.003868,5.8,4.5 +3380,0,0.29501,1,1,0,2,4,,4,3,General Motors,Rd,661208,2.521,2.816,0,7.080236,4.5,4.5 +25728,0,0.249932,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.998379,0.15,4 +25729,0,0.365035,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.760836,0.15,4 +27174,0,0.447532,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.740772,0.15,4 +27176,0,0.272711,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.545053,0.15,4 +27178,0,0.255622,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.134922,0.15,4 +27180,0,0.236019,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.664452,0.15,4 +27358,0,0.448044,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.753048,0.15,4 +2982,0,0.738288,1,1,0,2,5,GRV,5,3,Hill,Rd,657608,3.031,3.769,0,17.71891,5.55,5 +27179,0,0.36567,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.776072,0.15,4 +2970,0,0.034557,1,1,0,2,5,,4,3,Main,St,660502,0,0.035,0,0.829362,5.8,4.5 +3064,0,0.150165,1,1,0,2,4,,4,3,Main,St,660502,0.903,1.053,0,3.603971,4.5,4.5 +3388,0,0.20858,1,1,0,2,4,,4,3,Huron,St,660605,0.275,0.484,0,5.005923,4.5,4.5 +3482,0,0.239868,1,1,0,2,5,,4,3,1st,St,660203,0.05,0.29,0,5.756832,5.8,4.5 +19848,0,0.187096,1,1,0,2,4,,4,3,Commerce,St,4104140,4.367,4.554,0,4.490304,4.5,4.5 +25730,0,0.38396,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.215039,0.15,4 +25732,0,0.394188,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.460519,0.15,4 +2921,0,0.243099,1,1,0,2,4,,4,3,Huron,St,660605,0.032,0.275,0,5.834374,4.5,4.5 +3387,0,0.285665,1,1,0,2,4,,4,3,Main,St,660502,0.617,0.903,0,6.855963,4.5,4.5 +3229,0,0.032319,1,1,0,2,4,,4,3,General Motors,Rd,660605,0,0.032,0,0.775667,4.5,4.5 +2832,0,0.124494,1,1,0,2,5,,4,3,Main,St,660502,0.493,0.617,0,2.987866,5.8,4.5 +2528,0,0.184536,1,1,0,2,4,,4,3,Milford,Rd,660504,0,0.185,0,4.428869,4.5,4.5 +3076,0,0.171331,1,1,0,2,4,,4,3,Summit,St,660504,0.185,0.356,0,4.111952,4.5,4.5 +19849,0,0.272221,1,1,0,2,4,,4,3,Commerce,Rd,4104140,4.095,4.367,0,6.533308,4.5,4.5 +19850,0,0.083349,1,1,0,2,4,,4,3,Commerce,Rd,4104140,4.012,4.095,0,2.000368,4.5,4.5 +2818,0,0.037066,1,1,0,2,4,,4,3,Main,St,660502,1.053,1.09,0,0.889596,4.5,4.5 +2492,0,0.050198,1,1,0,2,5,,4,3,1st,St,660203,0,0.05,0,1.20474,5.8,4.5 +3149,0,0.14159,1,1,0,2,4,,4,3,River,Dr,660204,0,0.142,0,3.398169,4.5,4.5 +3268,0,0.02296,1,1,0,2,4,,4,3,River,Dr,660204,0.142,0.165,0,0.551037,4.5,4.5 +20601,-1,0.05867,0,1,0,2,5,,4,3,River/1st Cutoff,,4401618,0,0.059,0,1.408081,5.8,4.5 +25734,0,0.17488,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.19713,0.15,4 +19847,0,0.047759,1,1,0,2,4,,4,3,Commerce,St,4104140,4.554,4.602,0,1.146221,4.5,4.5 +27172,0,1.651262,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,39.63028,0.15,4 +3065,0,0.517547,1,1,0,2,7,GRV,5,3,Charms,Rd,660802,0,0.517,0,12.421135,5.55,5 +617,0,0.996976,1,1,0,2,4,,5,3,Wixom,Trl,631910,5,5.997,0,23.92742,3,4 +2147,0,0.758504,1,1,0,2,4,,5,3,Wixom,Trl,631910,5.997,6.755,0,18.204103,3,4 +19844,0,0.754231,1,1,0,2,4,,5,3,Commerce,Rd,4104140,5.584,6.338,0,18.101549,3,4 +21907,0,0.643653,1,1,0,2,5,,4,3,Duck Lake,Rd,4413156,0,0.644,0,15.447677,5.8,4.5 +19845,0,0.405183,1,1,0,2,4,,4,3,Commerce,Rd,4104140,5.179,5.584,0,9.724395,4.5,4.5 +2776,0,0.125746,1,1,0,2,4,,4,3,Atlantic,St,660202,0.333,0.458,0,3.017906,4.5,4.5 +1068,0,0.733878,1,1,0,2,4,,5,3,Wixom,Rd,631910,4.267,5,0,17.613067,3,4 +1169,0,0.023698,1,1,0,2,5,,4,3,Sleeth,Rd,629507,0,0.024,0,0.568741,5.8,4.5 +19843,0,0.251475,1,1,0,2,4,,5,3,Commerce,Rd,4104140,6.338,6.589,0,6.035411,3,4 +21905,0,0.381146,1,1,0,2,5,,4,3,Duck Lake,Rd,4413156,0.644,1.025,0,9.147505,5.8,4.5 +558,0,0.05919,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.543,2.602,0,1.420549,3.7,5 +1881,0,0.619238,1,1,0,2,5,,4,3,12 Mile,Rd,639102,0,0.619,0,14.861708,5.8,4.5 +2622,0,0.310388,1,1,1,2,4,,4,3,Beck,Rd,662105,0.361,0.671,0,7.449318,4.5,4.5 +2648,1,0.547452,3,0,0,1,1,,4,3,E I 96,,657303,6.955,7.502,0,,0.8,7.5 +2823,0,0.600269,1,1,1,2,3,,4,3,Pontiac,Trl,657404,4.181,4.781,0,14.406466,3.7,5 +2845,-1,0.406175,0,3,0,1,1,,4,3,W I 96,,657304,7.607,8.013,0,,0.8,7.5 +2888,0,0.725039,1,1,0,2,5,,4,3,11 Mile,Rd,661506,0,0.725,0,17.400929,5.8,4.5 +3885,0,0.710141,1,1,0,2,5,,4,3,West,Rd,705704,0,0.71,0,17.043384,5.8,4.5 +19807,0,0.655215,2,2,1,2,4,,4,3,Grand River,Ave,4104142,8.324,8.979,0,15.725152,4.5,4.5 +21902,0,0.50716,1,1,1,2,4,,4,3,Park,Dr,4413388,0,0.507,0,12.17184,4.5,4.5 +25979,0,0.676739,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.241745,0.15,4 +27154,0,0.509295,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.223081,0.15,4 +27166,0,0.579438,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.90652,0.15,4 +27167,0,0.545281,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.086755,0.15,4 +27187,0,0.530668,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.73603,0.15,4 +27189,0,0.580394,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.929461,0.15,4 +27190,0,0.477778,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.466668,0.15,4 +1125,0,0.456613,1,1,1,2,4,,4,3,Wixom,Rd,639101,1.244,1.701,0,10.958714,4.5,4.5 +1596,0,0.686751,1,1,0,2,4,,4,3,Napier,Rd,621905,3.297,3.983,0,16.48202,4.5,4.5 +19810,0,0.330048,1,1,0,2,4,,4,3,Grand River,Ave,4104142,7.548,7.878,0,7.921143,4.5,4.5 +25978,0,0.704536,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.908866,0.15,4 +27185,0,0.324242,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.781806,0.15,4 +25977,0,0.585863,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.060712,0.15,4 +1290,0,0.307548,1,1,0,2,4,,4,3,Napier,Rd,621905,2.989,3.297,0,7.38115,4.5,4.5 +19811,0,0.450588,1,1,0,2,4,,4,3,Grand River,Ave,4104142,7.097,7.548,0,10.81411,4.5,4.5 +29793,0,0.49456,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.869429,0.15,4 +2121,0,0.374632,1,1,0,2,4,,4,3,Napier,Rd,621905,4.007,4.382,0,8.991164,4.5,4.5 +1113,0,0.02406,1,1,0,2,4,,4,3,Napier,Rd,621905,3.983,4.007,0,0.577435,4.5,4.5 +27184,0,0.011428,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,0.274264,0.15,4 +1608,0,0.49474,1,1,0,2,4,,4,3,Wixom,Rd,639101,0.75,1.244,0,11.873764,4.5,4.5 +459,0,0.583115,1,1,1,2,4,,4,3,Wixom,Rd,639101,1.701,2.284,0,13.99476,4.5,4.5 +37172,0,0.024848,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.602,2.627,0,0.596363,3.7,5 +3137,-1,0.832562,0,3,0,1,1,,4,3,W I 96,,657304,6.775,7.607,0,,0.8,7.5 +19808,0,0.180094,2,2,1,2,4,,4,3,Grand River,Ave,4104142,8.144,8.324,0,4.322244,4.5,4.5 +2007,0,0.13616,2,2,1,2,4,,4,3,Wixom,Rd,639101,2.284,2.42,0,3.267836,4.5,4.5 +37186,1,0.369582,1,0,0,1,1,RON,4,3,SB Wixom/W I 96,RAMP,664401,0.061,0.43,0,,1.09,4 +37187,0,0.164393,2,2,1,2,4,,4,3,Beck,Rd,656605,3.679,3.843,0,3.945436,4.5,4.5 +37173,0,0.203451,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.627,2.83,0,4.882833,3.7,5 +37185,1,0.067708,1,0,0,1,1,RON,4,3,NB Wixom/W I 96,RAMP,4463299,0,0.068,0,,1.09,4 +19809,0,0.266585,1,1,0,2,4,,4,3,Grand River,Ave,4104142,7.878,8.144,0,6.398036,4.5,4.5 +1016,0,0.051895,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.491,2.543,0,1.245473,3.7,5 +1490,0,0.071005,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.42,2.491,0,1.704118,3.7,5 +319,0,0.540528,2,2,1,2,3,,4,3,Wixom,Rd,639101,3.633,4.173,0,12.972673,3.7,5 +2879,0,0.419983,1,2,1,2,4,,4,3,Pontiac,Trl,657404,3.637,4.056,0,10.079586,4.5,4.5 +27160,0,0.607762,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.586296,0.15,4 +27161,0,0.53563,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.855123,0.15,4 +27186,0,0.533678,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.808275,0.15,4 +3179,0,0.144568,1,2,1,2,4,,4,3,Pontiac,Trl,657404,3.492,3.637,0,3.469643,4.5,4.5 +1221,0,0.233072,2,2,1,2,3,,4,3,Wixom,Rd,639101,3.244,3.477,0,5.593717,3.7,5 +27131,0,0.486788,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.682911,0.15,4 +27165,0,0.523512,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.564295,0.15,4 +1706,0,0.414132,2,2,1,2,3,,4,3,Wixom,Rd,639101,2.83,3.244,0,9.939178,3.7,5 +781,0,0.155978,2,2,1,2,3,,4,3,Wixom,Rd,639101,3.477,3.633,0,3.743476,3.7,5 +1405,0,0.262176,1,1,1,2,4,,4,3,Wixom,Rd,631910,0,0.262,0,6.292236,4.5,4.5 +27196,0,0.553538,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.284914,0.15,4 +3115,0,0.124379,2,2,0,2,4,,4,3,Pontiac,Trl,657404,4.056,4.181,0,2.985104,4.5,4.5 +943,0,0.236852,1,1,1,2,4,,4,3,Wixom,Rd,631910,0.262,0.499,0,5.684458,4.5,4.5 +2608,0,0.274213,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,0.275,0.55,0,6.581105,3.7,5 +3013,0,0.423601,1,1,0,2,5,,4,3,11 Mile,Rd,661506,0.996,1.42,0,10.166427,5.8,4.5 +3022,0,0.501334,1,1,1,2,4,,4,3,Beck,Rd,656605,3.178,3.679,0,12.032018,4.5,4.5 +3308,0,0.243727,1,1,0,2,5,,4,3,Taft,Rd,656608,2.999,3.243,0,5.849444,5.8,4.5 +19805,0,0.359757,2,2,1,2,4,,4,3,Grand River,Ave,4104142,9.224,9.584,0,8.634167,4.5,4.5 +25057,0,0.800432,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.210361,0.15,4 +27194,0,0.400531,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.612748,0.15,4 +29632,0,0.504221,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.101313,0.15,4 +29633,0,0.523598,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.566364,0.15,4 +3023,0,0.557313,1,1,0,2,4,,4,3,Beck,Rd,656605,2.446,3.003,0,13.375523,4.5,4.5 +3329,0,0.271407,1,1,0,2,5,,4,3,11 Mile,Rd,661506,0.725,0.996,0,6.51377,5.8,4.5 +25984,0,0.222772,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.346534,0.15,4 +3337,0,0.175085,1,1,1,2,4,,4,3,Beck,Rd,656605,3.003,3.178,0,4.202047,4.5,4.5 +37175,1,0.213178,1,0,0,1,1,ROF,4,3,E I 96/SB Wixom,RAMP,657005,0,0.213,0,,2.24,5 +2602,1,0.428751,3,0,0,1,1,,4,3,E I 96,,657303,7.502,7.931,0,,0.8,7.5 +2956,-1,0.626625,0,3,0,1,1,,4,3,W I 96,,657304,8.013,8.639,0,,0.8,7.5 +37183,1,0.065714,2,0,0,1,1,ROF,4,3,W I 96/NB Wixom,RAMP,664402,0.374,0.439,0,,2.24,5 +37179,1,0.126526,2,0,0,1,1,RON,4,3,SB Wixom/E I 96,RAMP,4463297,0,0.127,0,,1.09,4 +19806,0,0.245217,2,2,1,2,4,,4,3,Grand River,Ave,4104142,8.979,9.224,0,5.885214,4.5,4.5 +37184,1,0.060847,1,0,0,1,1,RON,4,3,SB Wixom/W I 96,RAMP,664401,0,0.061,0,,1.09,4 +37174,1,1.336751,3,0,0,1,1,,4,3,E I 96,,657303,8.696,10.032,0,,0.8,7.5 +37180,1,0.201345,2,0,0,1,1,RON,4,3,NB Wixom/E I 96,RAMP,4463296,0.11,0.311,0,,1.09,4 +37176,1,0.059823,2,0,0,1,1,ROF,4,3,E I 96/NB Wixom,RAMP,4463295,0,0.06,0,,2.24,5 +37177,1,0.053011,1,0,0,1,1,ROF,4,3,E I 96/SB Wixom,RAMP,657005,0.213,0.266,0,,2.24,5 +37182,1,0.072153,2,0,0,1,1,ROF,4,3,W I 96/SB Wixom,RAMP,4463298,0,0.072,0,,2.24,5 +37181,1,0.3737,2,0,0,1,1,ROF,4,3,W I 96/NB Wixom,RAMP,664402,0,0.374,0,,2.24,5 +37178,1,0.110102,1,0,0,1,1,RON,4,3,NB Wixom/E I 96,RAMP,4463296,0,0.11,0,,1.09,4 +3000,0,0.534234,1,1,0,2,5,,4,3,Taft,Rd,656608,2.465,2.999,0,12.821617,5.8,4.5 +3344,0,0.581511,1,1,0,2,5,,4,3,11 Mile,Rd,661506,1.42,2.001,0,13.956276,5.8,4.5 +25985,0,0.504026,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.096612,0.15,4 +25986,0,0.507999,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.191982,0.15,4 +3526,0,0.475322,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,0.55,1.025,0,11.40774,3.7,5 +19804,0,0.705098,2,2,1,2,4,,4,3,Grand River,Ave,4104142,9.584,10.289,0,16.922354,4.5,4.5 +29634,0,0.553083,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.273992,0.15,4 +27193,0,0.212312,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.095492,0.15,4 +2997,0,0.086985,1,1,0,2,5,,4,3,Taft,Rd,656608,3.243,3.33,0,2.087638,5.8,4.5 +27141,0,0.290266,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.966386,0.15,4 +3202,0,0.285775,1,1,1,2,4,,4,3,Beck,Rd,662105,1.316,1.602,0,6.858599,4.5,4.5 +3871,0,0.244616,1,1,0,2,4,,4,3,Park,Dr,705704,2.083,2.327,0,5.870773,4.5,4.5 +3879,0,0.519665,1,1,0,2,5,,4,3,West,Rd,705704,1.033,1.552,0,12.471959,5.8,4.5 +27171,0,0.360908,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.661783,0.15,4 +29635,0,0.306139,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.347344,0.15,4 +29889,0,0.205176,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.924218,0.15,4 +3581,0,0.315096,1,1,1,2,4,,4,3,Beck,Rd,662105,0.671,0.986,0,7.562316,4.5,4.5 +3881,0,0.218386,1,1,0,2,5,,4,3,West,Rd,705704,0.814,1.033,0,5.241269,5.8,4.5 +3882,0,0.10428,1,1,0,2,5,,4,3,West,Rd,705704,0.71,0.814,0,2.502725,5.8,4.5 +27188,0,0.231036,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.544865,0.15,4 +3524,0,0.329918,1,1,1,2,4,,4,3,Beck,Rd,662105,0.986,1.316,0,7.918025,4.5,4.5 +2822,0,0.290758,1,1,1,2,3,,4,3,Pontiac,Trl,657404,4.896,5.187,0,6.978202,3.7,5 +3280,0,0.306093,1,1,1,2,4,,4,3,Beck,Rd,662105,1.809,2.115,0,7.346236,4.5,4.5 +27191,0,0.274555,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.589324,0.15,4 +27192,0,0.312243,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.493843,0.15,4 +3111,0,0.115262,1,1,1,2,3,,4,3,Pontiac,Trl,657404,4.781,4.896,0,2.766281,3.7,5 +3594,0,0.20738,1,1,1,2,4,,4,3,Beck,Rd,662105,1.602,1.809,0,4.977113,4.5,4.5 +2139,0,0.287582,1,1,0,2,4,,4,3,Beck,Rd,629604,0,0.288,0,6.901974,4.5,4.5 +3873,0,0.531145,1,1,0,2,4,,4,3,Park,Dr,705704,1.552,2.083,0,12.747478,4.5,4.5 +21900,0,0.231101,1,1,0,2,4,,4,3,Park,Dr,4413388,0.725,0.956,0,5.546429,4.5,4.5 +27138,0,0.74194,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.806569,0.15,4 +21901,0,0.217876,1,1,1,2,4,,4,3,Park,Dr,4413388,0.507,0.725,0,5.229024,4.5,4.5 +1487,0,0.394482,1,1,0,2,5,,4,3,Lake,Dr,631101,0,0.394,0,9.467556,5.8,4.5 +27130,0,0.285679,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.856305,0.15,4 +1061,0,0.777671,1,1,0,2,5,,4,3,Sleeth,Rd,629507,1.295,2.073,0,18.664095,5.8,4.5 +1811,0,0.498691,1,1,0,2,4,,4,3,Benstein,Rd,629509,2.001,2.5,0,11.968592,4.5,4.5 +2119,0,1.948065,1,1,0,2,4,,4,3,Glengary,Rd,630108,0,1.947,0,46.75355,4.5,4.5 +2458,0,0.472957,1,1,0,2,4,,4,3,West Maple,Rd,657406,5.653,6.126,0,11.350974,4.5,4.5 +3929,0,0.370409,1,1,0,2,5,,4,3,Loon Lake,Rd,705506,0.56,0.93,0,8.889805,5.8,4.5 +19840,0,1.01392,1,1,0,2,4,,4,3,Commerce,Rd,4104140,7.671,8.685,0,24.334082,4.5,4.5 +27084,0,1.485048,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.641162,0.15,4 +27151,0,1.284851,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,30.836414,0.15,4 +27153,0,0.563331,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,13.519947,0.15,4 +27198,0,0.562593,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.502239,0.15,4 +1892,0,0.342406,1,1,0,2,4,,4,3,Wixom,Rd,631910,1.655,1.997,0,8.217742,4.5,4.5 +3625,0,0.537506,1,1,0,2,7,,4,3,Charms,Rd,705705,0.86,1.397,0,12.900149,6.55,4.5 +27155,0,0.449188,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.780514,0.15,4 +27197,0,0.473695,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.368692,0.15,4 +29789,0,0.141792,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.403017,0.15,4 +798,0,0.498719,1,1,0,2,4,,4,3,Wixom,Rd,631910,1.001,1.499,0,11.96926,4.5,4.5 +29790,0,0.668897,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.053533,0.15,4 +333,0,0.15565,1,1,0,2,4,,4,3,Wixom,Rd,631910,1.499,1.655,0,3.735602,4.5,4.5 +819,0,0.498136,1,1,0,2,4,,5,3,Wixom,Rd,631910,1.997,2.495,0,11.955275,3,4 +3930,0,0.559715,1,1,0,2,5,,4,3,Loon Lake,Rd,705506,0,0.56,0,13.433156,5.8,4.5 +353,0,0.062102,1,1,0,2,4,,5,3,Wixom,Rd,631910,2.495,2.557,0,1.490439,3,4 +27152,0,0.993889,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.853333,0.15,4 +27145,0,0.500677,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.016252,0.15,4 +1533,0,0.295543,1,1,0,2,5,,4,3,Sleeth,Rd,629507,1,1.295,0,7.093027,5.8,4.5 +27147,0,0.560849,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.460378,0.15,4 +19841,0,0.025976,1,1,0,2,4,,4,3,Commerce,Rd,4104140,7.645,7.671,0,0.623414,4.5,4.5 +1251,0,0.469236,1,1,0,2,4,,4,3,Benstein,Rd,629509,1.007,1.476,0,11.261657,4.5,4.5 +3914,0,0.422298,1,1,0,2,5,,4,3,Loon Lake,Rd,705506,1.437,1.86,0,10.135158,5.8,4.5 +27116,0,0.726992,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.447803,0.15,4 +29791,0,0.890424,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.370185,0.15,4 +29888,0,0.229688,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.512514,0.15,4 +3926,0,0.50767,1,1,0,2,5,,4,3,Loon Lake,Rd,705506,0.93,1.437,0,12.184068,5.8,4.5 +356,0,0.232981,1,1,0,2,4,,4,3,Benstein,Rd,629509,0.398,0.63,0,5.59154,4.5,4.5 +1598,0,0.504618,1,1,0,2,5,,4,3,McCoy,Rd,629610,0,0.504,0,12.110823,5.8,4.5 +27117,0,0.254537,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.108891,0.15,4 +29792,0,0.771954,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.526907,0.15,4 +1740,0,0.376441,1,1,0,2,4,,4,3,Benstein,Rd,629509,0.63,1.007,0,9.034586,4.5,4.5 +3909,0,0.276946,1,1,0,2,5,,4,3,Loon Lake,Rd,705506,1.86,2.136,0,6.6467,5.8,4.5 +27115,0,0.126573,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.037752,0.15,4 +801,0,0.52581,1,1,0,2,4,,4,3,Benstein,Rd,629509,1.476,2.001,0,12.619452,4.5,4.5 +1618,0,0.346477,1,1,0,2,4,,4,3,Glengary,Rd,630108,1.947,2.294,0,8.315443,4.5,4.5 +270,0,0.401178,1,1,0,2,5,,4,3,Sleeth,Rd,629507,2.814,3.215,0,9.628283,5.8,4.5 +609,0,0.913602,1,1,0,2,4,,4,3,Benstein,Rd,629509,3.258,4.171,0,21.926445,4.5,4.5 +1644,0,0.324865,1,1,0,2,5,,4,3,Bass Lake,Rd,629506,0.771,1.096,0,7.796765,5.8,4.5 +2111,0,0.771263,1,1,0,2,5,,4,3,Bass Lake,Rd,629506,0,0.771,0,18.510302,5.8,4.5 +19839,0,1.001348,1,1,0,2,4,,4,3,Commerce,Rd,4104140,8.685,9.686,0,24.032347,4.5,4.5 +25739,0,0.881723,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.161343,0.15,4 +30232,0,0.926428,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.234275,0.15,4 +611,0,0.74144,1,1,0,2,5,,4,3,Sleeth,Rd,629507,2.073,2.814,0,17.794571,5.8,4.5 +491,0,0.54927,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,0,0.549,0,13.182482,4.5,4.5 +853,0,0.350284,1,1,0,2,4,,4,3,Benstein,Rd,629509,2.709,3.059,0,8.406812,4.5,4.5 +25740,0,0.421774,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.122585,0.15,4 +27109,0,0.604096,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.498312,0.15,4 +1313,0,0.208601,1,1,0,2,4,,4,3,Benstein,Rd,629509,2.5,2.709,0,5.006419,4.5,4.5 +1060,0,0.199359,1,1,0,2,4,,4,3,Benstein,Rd,629509,3.059,3.258,0,4.784613,4.5,4.5 +1835,0,0.158669,1,1,0,2,4,,4,3,Sleeth,Rd,629507,3.215,3.374,0,3.808064,4.5,4.5 +1325,0,0.360674,1,1,0,2,4,,4,3,Sleeth,Rd,629507,3.374,3.734,0,8.65617,4.5,4.5 +2192,1,1.313113,2,0,0,2,3,DIV,4,3,Highland,Rd,648906,6.118,7.431,0,31.514709,3.7,5 +2806,0,0.222415,1,1,0,2,4,,4,3,White Lake,Rd,649303,2.638,2.86,0,5.337957,4.5,4.5 +2961,0,0.161126,1,1,0,2,5,,4,3,Jackson,Blvd,649302,0.538,0.699,0,3.867017,5.8,4.5 +2973,0,0.75328,1,1,0,2,4,,4,3,Milford,Rd,660504,4.703,5.456,0,18.07873,4.5,4.5 +3231,0,0.594477,1,1,0,2,5,,5,3,Cooley Lake,Rd,661204,1.648,2.242,0,14.267457,3.7,5 +21055,0,0.896274,1,1,0,2,5,,4,3,Duck Lake,Rd,4410161,3.501,4.397,0,21.510574,5.8,4.5 +21082,-1,0.708069,0,2,0,2,3,DIV,4,3,Highland,Rd,4410081,0,0.708,0,16.993657,3.7,5 +21957,0,0.987829,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,1.283,2.271,0,23.70789,4.5,4.5 +22097,0,0.831995,1,1,0,2,4,,4,3,Ormond,Rd,4412712,0,0.832,0,19.967877,4.5,4.5 +25831,0,0.459323,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.023764,0.15,4 +26911,0,2.516261,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,60.390272,0.15,4 +26951,0,0.889554,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.349288,0.15,4 +26952,0,0.77069,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.496571,0.15,4 +27199,0,0.973999,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.375987,0.15,4 +27205,0,1.025959,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.623008,0.15,4 +27207,0,0.632298,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.175158,0.15,4 +27331,0,2.070558,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,49.693394,0.15,4 +2196,1,1.341981,2,0,0,2,3,DIV,5,3,Highland,Rd,648906,3.827,5.169,0,32.207534,1.7,4 +3054,0,0.780967,1,1,0,2,5,,4,3,Wardlow,Rd,649210,0,0.781,0,18.743202,5.8,4.5 +3565,0,1.253986,1,1,0,2,4,,5,3,Milford,Rd,660504,2.444,3.698,0,30.095673,3,4 +21058,0,1.709692,1,1,0,2,5,,5,3,Duck Lake,Rd,4410161,1.29,2.999,0,41.032617,3.7,5 +21066,-1,1.31208,0,2,0,2,3,DIV,5,3,Highland,Rd,4410120,3.853,5.165,0,31.489912,1.7,4 +25826,0,1.632556,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,39.181334,0.15,4 +25827,0,1.217084,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.210011,0.15,4 +27787,0,1.816288,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,43.590915,0.15,4 +29848,0,1.218836,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.252057,0.15,4 +2794,0,0.653939,1,1,0,2,4,,5,3,Milford,Rd,660504,1.434,2.088,0,15.694545,3,4 +2503,0,0.356971,1,1,0,2,4,,5,3,Milford,Rd,660504,2.088,2.444,0,8.567302,3,4 +2197,1,0.644353,2,0,0,2,3,DIV,4,3,Highland,Rd,648906,3.183,3.827,0,15.464483,3.7,5 +2498,0,0.366013,1,1,0,2,5,,4,3,Wardlow,Rd,649703,0.366,0.732,0,8.784311,5.8,4.5 +3108,0,0.730388,1,1,0,2,4,,4,3,Milford,Rd,660504,3.718,4.448,0,17.529307,4.5,4.5 +21068,-1,0.670347,0,2,0,2,3,DIV,4,3,Highland,Rd,4410120,3.183,3.853,0,16.088337,3.7,5 +21960,0,0.650448,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,0,0.65,0,15.610741,4.5,4.5 +29797,0,0.805149,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.323585,0.15,4 +3257,0,0.020162,1,1,0,2,4,,4,3,Milford,Rd,660504,3.698,3.718,0,0.483884,4.5,4.5 +2500,0,0.366465,1,1,0,2,5,,4,3,Wardlow,Rd,649703,0,0.366,0,8.795171,5.8,4.5 +2820,0,0.254687,1,1,0,2,4,,4,3,Milford,Rd,660504,4.448,4.703,0,6.112477,4.5,4.5 +27200,0,0.384336,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.224067,0.15,4 +21959,0,0.323192,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,0.65,0.973,0,7.756612,4.5,4.5 +21958,0,0.309931,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,0.973,1.283,0,7.438332,4.5,4.5 +21059,0,1.290385,1,1,0,2,5,,5,3,Duck Lake,Rd,4410161,0,1.29,0,30.96924,3.7,5 +25718,0,0.926806,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.243336,0.15,4 +25828,0,0.769313,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.463514,0.15,4 +3540,0,0.251607,1,1,0,2,5,,5,3,Cooley Lake,Rd,661204,1.396,1.648,0,6.038578,3.7,5 +2194,0,0.506302,2,2,0,2,3,,5,3,Highland,Rd,648906,5.216,5.722,0,12.151258,1.7,4 +2985,0,0.584753,1,1,0,2,5,,4,3,Wardlow,Rd,649210,0.79,1.374,0,14.034067,5.8,4.5 +27212,0,0.452778,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.866663,0.15,4 +27210,0,0.24492,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.878073,0.15,4 +27211,0,0.505339,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.128132,0.15,4 +2195,0,0.046754,2,2,0,2,3,,5,3,Highland,Rd,648906,5.169,5.216,0,1.12209,1.7,4 +3001,0,0.009183,1,1,0,2,5,,4,3,Wardlow,Rd,649210,0.781,0.79,0,0.220386,5.8,4.5 +2193,0,0.396806,2,2,0,2,3,,5,3,Highland,Rd,648906,5.722,6.118,0,9.523335,1.7,4 +21057,0,0.189215,1,1,0,2,5,,5,3,Duck Lake,Rd,4410161,2.999,3.188,0,4.541149,3.7,5 +21056,0,0.312842,1,1,0,2,5,,5,3,Duck Lake,Rd,4410161,3.188,3.501,0,7.508218,3.7,5 +2907,0,1.121095,1,1,0,2,4,,4,3,White Lake,Rd,649303,0,1.121,0,26.90627,4.5,4.5 +3093,0,1.595084,1,1,0,2,4,,5,3,Milford,Rd,660504,7.265,8.859,0,38.282023,3,4 +3123,0,0.369667,1,1,0,2,5,GRV,5,3,Rose Center,Rd,660906,2.221,2.591,0,8.872001,5.55,5 +3244,0,1.552677,1,1,0,2,5,GRV,5,3,Rose Center,Rd,660906,0,1.552,0,37.264249,5.55,5 +25829,0,0.581276,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,13.950613,0.15,4 +27203,0,0.945891,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.701389,0.15,4 +3273,0,0.779523,1,1,0,2,4,,4,3,Milford,Rd,660504,6.486,7.265,0,18.708544,4.5,4.5 +3586,0,0.738469,1,1,0,2,4,,4,3,Milford,Rd,660504,5.747,6.486,0,17.723245,4.5,4.5 +21948,0,0.520968,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,2.316,2.837,0,12.503228,4.5,4.5 +2717,0,0.291608,1,1,0,2,4,,4,3,Milford,Rd,660504,5.456,5.747,0,6.998594,4.5,4.5 +21954,0,0.045283,1,1,0,2,4,,4,3,Harvey Lake,Rd,4412980,2.271,2.316,0,1.086798,4.5,4.5 +2807,0,1.098409,1,1,0,2,4,,5,3,Milford,Rd,660504,8.859,9.957,0,26.361826,3,4 +2906,0,0.623798,1,1,0,2,4,,4,3,White Lake,Rd,649303,1.121,1.744,0,14.971148,4.5,4.5 +27202,0,0.901931,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.646348,0.15,4 +27201,0,0.638343,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.320221,0.15,4 +21054,0,0.383911,1,1,0,2,5,,4,3,Duck Lake,Rd,4410161,4.397,4.781,0,9.213865,5.8,4.5 +25830,0,0.321176,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,7.708229,0.15,4 +39722,1,0.018973,1,0,0,2,4,,4,3,Rose Center,Rd,660906,2.591,2.61,0,0.455346,4.5,4.5 +26924,0,1.697286,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,40.734856,0.15,4 +2940,0,0.669029,1,1,0,2,5,GRV,5,3,Rose Center,Rd,660906,1.552,2.221,0,16.056695,5.55,5 +2189,1,0.050759,2,0,0,2,3,DIV,4,3,Highland,Rd,648906,8.243,8.294,0,1.218207,3.7,5 +3053,0,1.323918,1,1,0,2,5,,4,3,Cooley Lake,Rd,661204,2.439,3.762,0,31.774043,5.8,4.5 +4110,0,1.555244,1,1,0,2,4,,4,3,Bogie Lake,Rd,703507,0,1.555,0,37.325852,4.5,4.5 +21078,-1,0.049287,0,2,0,2,3,DIV,4,3,Highland,Rd,4410081,2.125,2.174,0,1.182883,3.7,5 +25736,0,0.934341,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.424179,0.15,4 +27108,0,1.439304,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,34.543304,0.15,4 +27146,0,0.999108,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.9786,0.15,4 +27215,0,1.444527,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.66864,0.15,4 +27216,0,0.575065,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.801549,0.15,4 +25735,0,0.710193,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.044634,0.15,4 +27218,0,1.157811,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.787471,0.15,4 +3376,0,0.196544,1,1,0,2,5,,4,3,Cooley Lake,Rd,661204,2.242,2.439,0,4.717052,5.8,4.5 +2191,1,0.266139,2,0,0,2,3,DIV,4,3,Highland,Rd,648906,7.431,7.697,0,6.38733,3.7,5 +21080,-1,0.33282,0,2,0,2,3,DIV,4,3,Highland,Rd,4410081,1.243,1.576,0,7.987685,3.7,5 +27213,0,0.815716,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.577189,0.15,4 +29847,0,0.86517,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.764073,0.15,4 +21081,-1,0.535704,0,2,0,2,3,DIV,4,3,Highland,Rd,4410081,0.708,1.243,0,12.856891,3.7,5 +2190,1,0.546154,2,0,0,2,3,DIV,4,3,Highland,Rd,648906,7.697,8.243,0,13.107698,3.7,5 +21079,-1,0.549327,0,2,0,2,3,DIV,4,3,Highland,Rd,4410081,1.576,2.125,0,13.183847,3.7,5 +27209,0,0.964792,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.154998,0.15,4 +29846,0,0.98503,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.64073,0.15,4 +4107,0,0.010575,1,1,0,2,4,,4,3,Bogie Lake,Rd,703507,1.555,1.565,0,0.253807,4.5,4.5 +741,0,0.927236,1,1,0,2,4,,4,3,Bogie Lake,Rd,630101,0.817,1.744,0,22.253659,4.5,4.5 +3045,0,0.339287,1,1,0,2,5,GRV,5,3,Cooley Lake,Rd,661204,4.515,4.855,0,8.142884,5.55,5 +25721,0,1.015669,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.376044,0.15,4 +27126,0,1.118446,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,26.842698,0.15,4 +1607,0,0.589187,1,1,0,2,5,,4,3,Carey,Rd,630309,0.595,1.184,0,14.140483,5.8,4.5 +3368,0,0.753496,1,1,0,2,5,GRV,5,3,Cooley Lake,Rd,661204,3.762,4.515,0,18.083892,5.55,5 +2107,0,0.015049,1,1,0,2,5,,4,3,Carey,Rd,630309,0.58,0.595,0,0.361173,5.8,4.5 +268,0,0.456665,1,1,0,2,4,,4,3,Bogie Lake,Rd,630101,1.744,2.201,0,10.959967,4.5,4.5 +1181,0,0.344073,1,1,0,2,4,,4,3,Bogie Lake,Rd,630101,0.473,0.817,0,8.257758,4.5,4.5 +1843,0,0.75264,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,0,0.752,0,18.063366,4.5,4.5 +2186,0,0.444981,2,2,1,2,3,,4,3,Highland,Rd,648906,8.951,9.396,0,10.679549,3.7,5 +3989,0,0.453371,1,1,0,2,5,,4,3,Teggerdine,Rd,704201,0,0.453,0,10.88091,5.8,4.5 +27217,0,1.215902,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,29.181639,0.15,4 +2187,0,0.254755,2,2,1,2,3,,4,3,Highland,Rd,648906,8.697,8.951,0,6.114128,3.7,5 +2188,0,0.402766,2,2,1,2,3,,4,3,Highland,Rd,648906,8.294,8.697,0,9.666386,3.7,5 +2185,0,0.542269,2,2,1,2,3,,4,3,Highland,Rd,648906,9.396,9.938,0,13.01445,3.7,5 +3980,0,0.069394,1,1,0,2,5,,4,3,Teggerdine,Rd,704201,0.453,0.523,0,1.665459,5.8,4.5 +2741,0,1.040605,1,1,0,2,5,,5,3,Ormond,Rd,649309,0,1.04,0,24.97451,3.7,5 +2789,0,1.005528,1,1,0,2,4,,5,3,White Lake,Rd,649303,3.866,4.871,0,24.132663,3,4 +2793,0,0.757398,1,1,0,2,4,,4,3,White Lake,Rd,649303,3.109,3.866,0,18.177549,4.5,4.5 +22092,0,0.504948,1,1,0,2,4,,4,3,Ormond,Rd,4412712,1.58,2.084,0,12.118748,4.5,4.5 +27204,0,0.928346,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.280308,0.15,4 +22095,0,0.74811,1,1,0,2,4,,4,3,Ormond,Rd,4412712,0.832,1.58,0,17.954631,4.5,4.5 +2804,0,0.248916,1,1,0,2,4,,4,3,White Lake,Rd,649303,2.86,3.109,0,5.973979,4.5,4.5 +22089,0,0.497012,1,1,0,2,4,,4,3,Ormond,Rd,4412712,2.084,2.581,0,11.928298,4.5,4.5 +27206,0,0.222945,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.350679,0.15,4 +2728,0,1.003857,1,1,0,2,5,,5,3,Ormond,Rd,649309,1.04,2.044,0,24.092574,3.7,5 +26948,0,0.464341,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.144174,0.15,4 +27106,0,0.951436,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.834468,0.15,4 +86,0,0.209717,1,1,0,2,4,,4,3,13 Mile,Rd,607408,17.226,17.436,0,5.033211,4.5,4.5 +365,0,1.004141,1,1,0,2,5,GRV,4,3,Halsted,Rd,633802,4.142,5.146,0,24.099386,6.55,4.5 +482,0,0.160318,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,6.505,6.665,0,3.847624,3.7,5 +581,1,0.498899,2,0,0,1,1,RFF,3,3,W I 96/E I 696,RAMP,634208,0.957,1.456,0,,0.58,7 +699,1,0.702578,1,0,0,1,1,RFF,3,3,W I 96/E M 5,RAMP,639103,0,0.702,0,,0.58,7 +966,1,0.675215,2,0,0,1,1,RFF,3,3,W I 696/E I 96,RAMP,637802,0.325,1,0,,0.58,7 +1057,0,0.109913,1,1,0,2,5,,3,3,Ladd,Rd,629608,0.165,0.275,0,2.637921,8,4.5 +1286,0,0.542712,1,1,0,2,4,,4,3,Decker,Rd,621906,1.114,1.657,0,13.025092,4.5,4.5 +1304,0,0.273014,1,1,0,2,4,,4,3,Farmington,Rd,634005,4.72,4.993,0,6.552325,4.5,4.5 +1320,0,0.668067,1,1,0,2,5,,3,3,Hills Tech,Dr,639108,0.163,0.831,0,16.033605,8,4.5 +1722,0,0.143704,1,1,0,2,4,,4,3,Drake,Rd,633804,5.489,5.633,0,3.448891,4.5,4.5 +1904,0,0.675018,1,1,0,2,4,,4,3,Richardson,Rd,631704,1.93,2.605,0,16.200431,4.5,4.5 +1945,1,0.326436,1,0,0,1,1,RFS,3,3,E M 5/E I 696,RAMP,637801,0,0.326,0,,0.22,6 +2046,0,0.150601,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,3.582,3.733,0,3.614413,3.7,5 +2082,0,0.351462,1,1,0,2,5,GRV,4,3,Walnut Lake,Rd,622906,0.605,0.957,0,8.43509,6.55,4.5 +2479,1,0.308223,2,0,0,1,2,,3,3,E M 5,,657303,12.649,12.957,0,,0.58,7 +2588,-1,0.586101,0,2,0,1,2,,3,3,W M 5 Connector,,657304,12.701,13.287,0,,0.58,7 +2626,0,0.108733,2,2,0,2,3,,3,3,Pontiac,Trl,657404,7.024,7.133,0,2.609597,5,5 +3077,0,0.584127,2,2,0,2,4,,3,3,10 Mile,Rd,656510,11.854,12.438,0,14.019048,6,4.5 +3359,0,0.867656,1,1,0,2,3,,4,3,Pontiac,Trl,657404,10.224,11.092,0,20.823744,3.7,5 +3533,1,0.501084,2,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,4.1,4.601,0,12.02602,5,5 +3832,0,0.538978,1,1,1,2,3,,4,3,Maple,Rd,683906,2.328,2.867,0,12.93548,3.7,5 +4474,1,1.264144,2,0,0,1,1,,3,3,E I 696,,710701,0,1.264,0,,0.58,7 +4766,-1,1.372837,0,2,0,1,1,,3,3,W I 696,,710702,0,1.372,0,,0.58,7 +19791,0,0.099767,2,2,1,2,4,,3,3,Grand River,,4104142,13.927,14.027,0,2.394402,6,4.5 +19827,0,0.929485,1,1,0,2,3,,4,3,Commerce,Rd,4104140,13.834,14.763,0,22.307632,3.7,5 +20147,-1,0.358864,0,1,0,1,2,,3,3,N M 5,,4402006,5.714,6.072,0,,0.58,7 +20194,1,0.016847,4,0,0,2,3,DIV,4,3,S M 5,,4402005,0.93,0.946,0,0.404325,3.7,5 +20486,-1,0.016498,0,4,0,2,3,DIV,4,3,N M 5,,4402006,0.928,0.945,0,0.395951,3.7,5 +20723,0,0.661632,1,1,0,2,4,,4,3,Welch,Rd,4403557,0.36,1.022,0,15.879167,4.5,4.5 +20792,-1,0.652913,0,2,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.708,3.36,0,15.669901,5,5 +20961,1,0.525911,1,0,0,1,1,RFF,3,3,W I 696/N M 5,RAMP,4410622,0,0.526,0,,0.58,7 +25042,0,0.538605,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.926528,0.15,4 +25043,0,0.497095,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.93027,0.15,4 +25044,0,0.52073,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.497522,0.15,4 +25048,0,0.562411,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.497874,0.15,4 +25049,0,0.54427,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.062482,0.15,4 +25051,0,0.400665,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.615958,0.15,4 +25055,0,0.504242,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.10182,0.15,4 +25058,0,0.544535,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.068832,0.15,4 +25444,0,0.529137,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.699277,0.15,4 +25446,0,0.517873,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.428946,0.15,4 +25837,0,0.43722,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.493284,0.15,4 +25839,0,0.491183,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.788394,0.15,4 +25840,0,0.407151,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.771615,0.15,4 +25842,0,0.532626,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.783019,0.15,4 +25845,0,0.145308,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.487384,0.15,4 +25846,0,0.585888,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.061311,0.15,4 +25847,0,0.482013,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.568322,0.15,4 +25849,0,0.482449,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.578779,0.15,4 +25851,0,0.511226,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.269421,0.15,4 +26208,0,0.726389,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.433334,0.15,4 +27124,0,0.532173,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.772144,0.15,4 +27135,0,0.282342,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.776198,0.15,4 +27219,0,0.50685,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.164393,0.15,4 +27246,0,0.505768,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.138422,0.15,4 +27250,0,0.454474,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.907379,0.15,4 +27274,0,0.464694,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.152658,0.15,4 +28927,0,0.484448,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.626742,0.15,4 +29687,0,0.671426,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.114234,0.15,4 +641,0,0.495434,2,2,1,2,4,,4,3,Novi,Rd,621910,0.514,1.009,0,11.890409,4.5,4.5 +957,0,0.352463,1,1,1,2,3,,4,3,Haggerty,Rd,639005,4.05,4.403,0,8.459104,3.7,5 +1274,0,0.121235,1,1,0,2,4,,4,3,13 Mile,Rd,639110,1.169,1.291,0,2.90965,4.5,4.5 +2595,1,0.617971,4,0,0,1,1,,3,3,E I 96,,657303,10.722,11.34,0,,0.58,7 +2858,-1,0.618308,0,4,0,1,1,,3,3,W I 96,,657304,10.793,11.411,0,,0.58,7 +3061,1,0.493511,2,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,2.563,3.056,0,11.844263,5,5 +3162,0,0.99596,1,1,0,2,4,,4,3,Meadowbrook,Rd,656706,4.005,5.001,0,23.903044,4.5,4.5 +19281,0,0.443256,1,1,0,2,4,,4,3,14 Mile,Rd,1794106,0.42,0.863,0,10.638147,4.5,4.5 +19798,0,0.376551,1,1,1,2,4,,3,3,Grand River,Ave,4104142,12.05,12.427,0,9.037219,6,4.5 +20436,1,1.31743,2,0,0,1,2,,4,3,S M 5,,4402005,3.462,4.778,0,,0.8,7.5 +37209,0,0.23957,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.749669,0.15,4 +20790,-1,1.479494,0,3,0,1,2,,4,3,N M 5,,4402006,3.458,4.937,0,,0.8,7.5 +20971,-1,0.373413,0,2,0,1,2,FCD,4,3,N M 5 CD,,4410616,0.321,0.695,0,,0.8,7.5 +20979,1,0.369852,2,0,0,1,2,FCD,4,3,S M 5 CD,,4410612,0.225,0.595,0,,0.8,7.5 +21980,1,0.321203,1,0,0,1,2,RON,4,3,W 12 Mile/N M 5 CD,RAMP,4412723,0,0.321,0,,1.09,4 +21984,1,0.450021,1,0,0,1,2,ROF,4,3,S M 5 CD/12 Mile,RAMP,4412722,0,0.45,0,,2.24,5 +24865,0,0.380965,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.14316,0.15,4 +25064,0,0.564405,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.545711,0.15,4 +25067,0,0.904386,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,21.705275,0.15,4 +25853,0,1.001364,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.032736,0.15,4 +27132,0,0.641309,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.391405,0.15,4 +27221,0,0.294417,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.066019,0.15,4 +30233,0,0.852079,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.449894,0.15,4 +30234,0,0.92703,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.248709,0.15,4 +816,0,0.070917,2,3,1,2,3,,3,3,Novi,Rd,621910,1.766,1.837,0,1.701997,5,5 +2444,1,0.22931,1,0,0,1,1,RON,4,3,S Novi/E I 96,RAMP,664608,0,0.229,0,,1.09,4 +2599,1,0.310948,3,0,0,1,1,,3,3,E I 96,,657303,10.032,10.343,0,,0.58,7 +2864,-1,0.319145,0,3,0,1,1,,3,3,W I 96,,657304,10.055,10.374,0,,0.58,7 +3357,1,0.311704,2,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,1.742,2.053,0,7.480903,5,5 +3416,1,0.384568,1,0,0,1,1,ROF,4,3,E I 96/Novi,RAMP,664609,0,0.384,0,,2.24,5 +3489,1,0.328115,1,0,0,1,1,RON,3,3,S Novi/W I 96,RAMP,664607,0,0.328,0,,1.09,4 +19801,0,0.474513,2,2,1,2,4,,4,3,Grand River,Ave,4104142,10.885,11.36,0,11.388318,4.5,4.5 +25997,0,0.533668,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.808036,0.15,4 +27143,0,0.084733,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.033588,0.15,4 +27225,0,0.175606,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.214534,0.15,4 +27226,0,0.555547,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.333134,0.15,4 +19802,0,0.146942,2,2,1,2,4,,4,3,Grand River,Ave,4104142,10.739,10.885,0,3.52661,4.5,4.5 +27144,0,0.628317,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.079597,0.15,4 +3490,1,0.242742,2,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,1.499,1.742,0,5.825807,3.7,5 +27224,0,0.307748,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.385955,0.15,4 +2521,1,0.108699,2,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,1.39,1.499,0,2.608769,3.7,5 +27142,0,0.21199,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.087749,0.15,4 +1211,0,0.136453,2,2,1,2,3,,3,3,Novi,Rd,621910,2.185,2.321,0,3.274872,5,5 +19799,0,0.361211,1,1,1,2,4,,3,3,Grand River,Ave,4104142,11.689,12.05,0,8.669055,6,4.5 +26873,0,0.474147,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.37953,0.15,4 +27223,0,0.297116,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.130785,0.15,4 +25988,0,0.339108,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.138582,0.15,4 +1430,0,0.165885,2,2,1,2,3,,3,3,Novi,Rd,621910,2.321,2.487,0,3.981239,5,5 +1694,0,0.155862,2,2,1,2,3,,3,3,Novi,Rd,621910,2.029,2.185,0,3.740677,5,5 +19800,0,0.329429,1,1,1,2,4,,3,3,Grand River,Ave,4104142,11.36,11.689,0,7.906287,6,4.5 +27222,0,0.251007,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.024166,0.15,4 +27227,0,0.174288,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.182907,0.15,4 +351,0,0.191571,2,3,1,2,3,,3,3,Novi,Rd,621910,1.837,2.029,0,4.597694,5,5 +27220,0,0.346911,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.325871,0.15,4 +1747,0,0.153487,3,3,1,2,3,,3,3,Novi,Rd,621910,1.163,1.316,0,3.683681,5,5 +2518,1,0.471671,2,0,0,1,1,ROF,3,3,W I 96/Novi,RAMP,664606,0,0.472,0,,2.24,5 +2585,-1,0.419218,0,3,0,1,1,,3,3,W I 96,,657304,10.374,10.793,0,,0.58,7 +3035,1,0.509883,2,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,2.053,2.563,0,12.237182,5,5 +25068,0,0.54967,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.192071,0.15,4 +25069,0,0.31593,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.582311,0.15,4 +1917,0,0.08237,3,3,1,2,3,,3,3,Novi,Rd,621910,1.481,1.564,0,1.976889,5,5 +2873,1,0.379448,4,0,0,1,1,,3,3,E I 96,,657303,10.343,10.722,0,,0.58,7 +19216,1,0.317149,1,0,0,1,1,RON,3,3,N Novi/W I 96,RAMP,1813010,0,0.317,0,,1.09,4 +19217,1,0.416721,1,0,0,1,1,RON,3,3,N Novi/E I 96,RAMP,1813009,0,0.417,0,,1.09,4 +295,0,0.076853,2,2,1,2,3,,3,3,Novi,Rd,621910,1.646,1.723,0,1.844473,5,5 +1857,0,0.04338,2,2,1,2,3,,3,3,Novi,Rd,621910,1.723,1.766,0,1.041108,5,5 +1402,0,0.08253,3,3,1,2,3,,3,3,Novi,Rd,621910,1.564,1.646,0,1.980721,5,5 +1257,0,0.165033,3,3,1,2,3,,3,3,Novi,Rd,621910,1.316,1.481,0,3.960783,5,5 +2179,0,0.137694,3,3,1,2,3,,3,3,Novi,Rd,621910,1.025,1.163,0,3.30465,5,5 +37210,0,0.318721,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.649307,0.15,4 +523,0,0.445246,1,1,0,2,5,,4,3,Old Novi,Rd,621910,0,0.445,0,10.685899,5.8,4.5 +1323,0,0.103909,1,1,0,2,5,,4,3,13 Mile,Rd,639110,1.926,2.03,0,2.49382,5.8,4.5 +1620,0,0.662612,2,2,1,2,4,,4,3,Novi,Rd,621906,0,0.662,0,15.902687,4.5,4.5 +2061,0,0.333223,1,1,0,2,5,,4,3,Walled Lake,Dr,621909,0.742,1.075,0,7.997363,5.8,4.5 +2073,0,0.068962,2,2,1,2,4,,4,3,Novi,Rd,621910,0.445,0.514,0,1.655084,4.5,4.5 +19553,0,0.780207,1,1,0,2,5,,4,3,Lake,Dr,1868801,0.46,1.24,0,18.724979,5.8,4.5 +551,0,0.775256,1,1,0,2,5,,4,3,Lake,Dr,631101,0.587,1.362,0,18.606146,5.8,4.5 +509,0,0.395973,1,1,0,2,5,,4,3,Walled Lake,Dr,621909,0.346,0.742,0,9.50336,5.8,4.5 +1435,0,0.254351,1,1,0,2,5,,3,3,Walled Lake,Dr,621909,0.092,0.346,0,6.104415,8,4.5 +2745,0,0.237277,1,1,0,2,3,,3,3,Ladd,Rd,657404,6.419,6.656,0,5.694644,5,5 +2899,0,0.368221,1,1,0,2,3,,3,3,Pontiac,Trl,657404,6.656,7.024,0,8.837306,5,5 +1528,0,0.165428,1,1,0,2,5,,3,3,Ladd,Rd,629608,0,0.165,0,3.97028,8,4.5 +1954,0,0.091628,1,1,0,2,5,,3,3,Walled Lake,Dr,621909,0,0.092,0,2.199084,8,4.5 +25841,0,0.152707,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.664956,0.15,4 +1830,0,0.386366,1,1,0,2,5,,4,3,13 Mile,Rd,639110,1.54,1.926,0,9.272794,5.8,4.5 +20543,0,0.699635,2,2,1,2,4,,4,3,Novi,Rd,4403802,0,0.699,0,16.791231,4.5,4.5 +19554,0,0.460013,1,1,0,2,5,,4,3,Lake,Dr,1868801,0,0.46,0,11.040313,5.8,4.5 +820,0,0.24936,1,1,0,2,4,,4,3,13 Mile,Rd,639110,1.291,1.54,0,5.984629,4.5,4.5 +1782,0,0.451568,2,2,1,2,4,,4,3,Novi,Rd,621906,0.662,1.114,0,10.837629,4.5,4.5 +19280,0,0.365851,1,1,0,2,5,,4,3,14 Mile,Rd,1794106,0.863,1.229,0,8.780424,5.8,4.5 +381,0,0.772934,2,2,0,2,3,,3,3,Haggerty,Rd,639005,2.774,3.547,0,18.550426,5,5 +396,1,0.292941,2,0,0,1,1,,3,3,E I 96,,639202,0.463,0.756,0,,0.58,7 +863,1,0.463583,2,0,0,1,1,,3,3,E I 96,,639202,0,0.463,0,,0.58,7 +2502,1,0.130409,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.708,3.838,0,3.129815,5,5 +2546,1,0.324465,2,0,0,1,2,,3,3,E M 5 Connector,,657303,11.955,12.28,0,,0.58,7 +2559,-1,0.748639,0,2,0,1,2,,3,3,W M 5 Connector,,657304,11.953,12.701,0,,0.58,7 +3084,0,0.250853,1,1,0,2,3,,3,3,10 Mile,Rd,656510,11.4,11.651,0,6.020478,5,5 +3184,0,0.988876,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,2.997,3.986,0,23.733014,6,4.5 +19795,0,0.319815,1,1,1,2,4,,3,3,Grand River,Ave,4104142,13.031,13.351,0,7.675552,6,4.5 +19900,1,0.329122,2,0,0,1,2,,3,3,S M 5,,4402005,5.113,5.442,0,,0.58,7 +20249,1,0.335115,2,0,0,1,2,,3,3,S M 5,,4402005,4.778,5.113,0,,0.58,7 +20349,-1,0.488652,0,2,0,1,2,,3,3,N M 5,,4402006,5.225,5.714,0,,0.58,7 +20488,-1,0.044755,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.307,2.352,0,1.074128,5,5 +20960,1,0.158659,2,0,0,1,1,RFF,3,3,S M 5/E I 96,RAMP,4410623,0,0.159,0,,0.58,7 +20966,1,0.508062,1,0,0,1,2,ROF,3,3,N M 5/12 Mile,RAMP,4410619,0,0.508,0,,2.24,5 +20969,-1,0.57462,0,2,0,1,1,RFF,3,3,N M 5 CD,,4410616,1.035,1.61,0,,0.58,7 +27228,0,0.480599,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.534374,0.15,4 +27229,0,0.364059,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.737417,0.15,4 +3198,0,0.142335,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,2.487,2.629,0,3.416034,6,4.5 +19797,0,0.546211,1,1,1,2,4,,3,3,Grand River,Ave,4104142,12.427,12.973,0,13.109073,6,4.5 +24867,0,0.27144,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.51456,0.15,4 +27235,0,0.390457,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.370957,0.15,4 +29631,0,0.363346,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.720308,0.15,4 +2908,0,0.241302,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,2.246,2.487,0,5.791255,6,4.5 +2894,0,0.367796,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,2.629,2.997,0,8.827096,6,4.5 +26151,0,0.344185,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.260447,0.15,4 +26153,0,0.406646,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.759494,0.15,4 +19796,0,0.058265,1,1,1,2,4,,3,3,Grand River,Ave,4104142,12.973,13.031,0,1.398348,6,4.5 +20981,1,0.306094,1,0,0,1,1,RFS,3,3,E I 96/N M 5 CD,RAMP,4410611,0,0.306,0,,0.22,6 +2575,-1,0.434964,0,4,0,1,1,,3,3,W I 96,,657304,11.411,11.846,0,,0.58,7 +2841,1,0.615613,3,0,0,1,1,,3,3,E I 696,,657303,11.34,11.955,0,,0.58,7 +2880,1,0.350854,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.056,3.407,0,8.420497,5,5 +20251,-1,0.383397,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,1.666,2.05,0,9.201527,5,5 +20967,1,0.111744,1,0,0,1,2,ROF,3,3,N M 5 CD/12 Mile,RAMP,4410618,0,0.112,0,,2.24,5 +20970,-1,0.340992,0,3,0,1,2,FCD,3,3,N M 5 CD,,4410616,0.695,1.035,0,,0.58,7 +20973,-1,0.433705,0,1,0,1,1,RFF,3,3,S M 5 CD/W I 96,RAMP,4410615,0,0.434,0,,0.58,7 +20977,1,0.251487,3,0,0,1,2,FCD,3,3,S M 5 CD,,4410612,0.938,1.189,0,,0.58,7 +2884,0,0.019741,1,1,0,2,4,,3,3,Meadowbrook,Rd,656706,3.986,4.005,0,0.47378,6,4.5 +20976,1,0.128453,2,0,0,1,2,FCD,3,3,S M 5 CD,,4410612,1.189,1.318,0,,0.58,7 +2848,-1,0.106456,0,3,0,1,1,,3,3,W I 696,,657304,11.846,11.953,0,,0.58,7 +3264,1,0.18821,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.449,3.637,0,4.517035,5,5 +20724,-1,0.193721,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.114,2.307,0,4.649297,5,5 +20965,1,0.312457,1,0,0,1,2,ROF,3,3,N M 5/12 Mile,RAMP,4410619,0.508,0.82,0,,2.24,5 +20968,1,0.252981,1,0,0,1,2,RON,3,3,E 12 Mile/N M 5,RAMP,4410617,0,0.253,0,,1.09,4 +20974,1,0.290627,1,0,0,1,2,RON,3,3,E 12 Mile/S M 5,RAMP,4410614,0,0.291,0,,1.09,4 +20975,1,0.268018,1,0,0,1,2,RON,4,3,W 12 Mile/S M 5,RAMP,4410613,0,0.268,0,,1.09,4 +20978,1,0.342835,3,0,0,1,2,FCD,3,3,S M 5 CD,,4410612,0.595,0.938,0,,0.58,7 +19902,-1,0.064182,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.05,2.114,0,1.540379,5,5 +2604,1,0.042073,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.407,3.449,0,1.009763,5,5 +21981,1,0.020939,1,0,0,2,3,RSF,3,3,S M 5 CD/12 Mile,RAMP,4412722,0.45,0.471,0,0.502525,5,5 +2964,1,0.070878,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.637,3.708,0,1.701065,5,5 +20964,1,0.021629,1,0,0,2,3,RSF,3,3,N M 5/12 Mile,RAMP,4410619,0.82,0.842,0,0.519087,5,5 +843,0,0.476372,2,2,0,2,3,,3,3,Haggerty,Rd,639005,2.298,2.774,0,11.432937,5,5 +1504,1,0.387952,3,0,0,1,1,RFF,3,3,W I 96/E I 696,RAMP,634208,0.464,0.852,0,,0.58,7 +1813,1,0.337616,2,0,0,1,1,RFF,3,3,W I 696/E I 96,RAMP,637802,1.142,1.48,0,,0.58,7 +1951,1,0.827059,2,0,0,1,1,,3,3,E I 96,,639202,0.756,1.583,0,,0.58,7 +2762,1,0.369076,2,0,0,1,2,,3,3,E M 5,,657303,12.28,12.649,0,,0.58,7 +3410,0,0.203161,1,1,0,2,3,,3,3,10 Mile,Rd,656510,11.651,11.854,0,4.875869,5,5 +19794,0,0.167677,1,1,1,2,4,,3,3,Grand River,Ave,4104142,13.351,13.518,0,4.024239,6,4.5 +25056,0,0.377766,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.066381,0.15,4 +29630,0,0.404451,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.706816,0.15,4 +27230,0,0.168477,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.043457,0.15,4 +27232,0,0.180423,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.33016,0.15,4 +1875,0,0.259551,2,2,1,2,3,,3,3,Haggerty,Rd,639005,2.038,2.298,0,6.229217,5,5 +19792,0,0.25349,1,1,1,2,4,,3,3,Grand River,,4104142,13.674,13.927,0,6.083766,6,4.5 +19793,0,0.155877,1,1,1,2,4,,3,3,Grand River,,4104142,13.518,13.674,0,3.741039,6,4.5 +500,1,0.142422,2,0,0,1,1,RFF,3,3,W I 696/E I 96,RAMP,637802,1,1.142,0,,0.58,7 +2939,1,0.255514,1,0,0,1,1,RFS,3,3,W I 696/E M 5,RAMP,657106,0,0.255,0,,0.22,6 +20963,1,0.453799,2,0,0,1,1,RFF,3,3,W I 96/W M 5,RAMP,4410620,0,0.454,0,,0.58,7 +2678,1,0.29932,1,0,0,1,1,RFS,3,3,W M 5/E I 96,RAMP,657107,0,0.299,0,,0.22,6 +1034,1,0.105549,2,0,0,1,1,RFF,3,3,W I 96/E I 696,RAMP,634208,0.852,0.957,0,,0.58,7 +1827,0,0.163127,1,1,0,2,5,,3,3,Hills Tech,Dr,639108,0,0.163,0,3.915038,8,4.5 +1939,0,0.482993,2,2,0,2,3,,3,3,Haggerty,Rd,639005,3.547,4.03,0,11.591821,5,5 +20542,-1,0.288411,0,3,0,1,2,,3,3,N M 5,,4402006,4.937,5.225,0,,0.58,7 +3474,1,0.261282,3,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,3.838,4.1,0,6.270769,5,5 +20102,-1,0.220581,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.487,2.708,0,5.293945,5,5 +20299,-1,0.135109,0,3,0,2,3,DIV,3,3,12 Mile,Rd,4414623,2.352,2.487,0,3.242628,5,5 +1417,0,0.020607,2,2,0,2,3,,3,3,Haggerty,Rd,639005,4.03,4.05,0,0.494559,5,5 +25059,0,0.198063,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.753518,0.15,4 +357,0,0.77841,1,1,0,2,3,,4,3,Haggerty,Rd,639005,5.342,6.12,0,18.681839,3.7,5 +1505,0,0.118602,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,4.384,4.503,0,2.846444,3.7,5 +1950,0,0.472604,1,1,0,2,4,,4,3,13 Mile,Rd,639110,0,0.472,0,11.342499,4.5,4.5 +20297,-1,1.110843,0,4,0,2,3,DIV,4,3,N M 5,,4402006,1.994,3.105,0,26.660242,3.7,5 +20889,1,1.110463,4,0,0,2,3,DIV,4,3,S M 5,,4402005,1.996,3.106,0,26.651113,3.7,5 +25063,0,0.605092,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.522216,0.15,4 +28953,0,0.524706,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.59294,0.15,4 +204,0,0.546661,1,1,0,2,4,,4,3,13 Mile,Rd,639110,0.499,1.046,0,13.119854,4.5,4.5 +20100,-1,0.353195,0,3,0,2,3,DIV,4,3,N M 5,,4402006,3.105,3.458,0,8.476681,3.7,5 +20654,1,0.355858,3,0,0,2,3,DIV,4,3,S M 5,,4402005,3.106,3.462,0,8.540582,3.7,5 +1770,0,0.123953,1,1,0,2,4,,4,3,13 Mile,Rd,639110,1.046,1.169,0,2.974874,4.5,4.5 +20972,-1,0.321288,0,1,0,1,2,FCD,4,3,N M 5 CD,,4410616,0,0.321,0,,0.8,7.5 +20980,1,0.225336,1,0,0,1,2,FCD,4,3,S M 5 CD,,4410612,0,0.225,0,,0.8,7.5 +706,0,0.026561,1,1,0,2,4,,4,3,13 Mile,Rd,639110,0.472,0.499,0,0.637455,4.5,4.5 +19283,0,0.1894,1,1,0,2,4,,4,3,14 Mile,Rd,1794106,0.054,0.243,0,4.545602,4.5,4.5 +25060,0,0.578165,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.875971,0.15,4 +19282,0,0.177256,1,1,0,2,4,,4,3,14 Mile,Rd,1794106,0.243,0.42,0,4.254135,4.5,4.5 +19901,0,0.360369,1,1,0,2,4,,4,3,Welch,Rd,4403557,0,0.36,0,8.648867,4.5,4.5 +2049,0,0.241276,1,1,0,2,4,,4,3,14 Mile,Rd,5500000,4.53,4.771,0,5.790615,4.5,4.5 +19284,0,0.053795,1,1,0,2,4,,4,3,14 Mile,Rd,1794106,0,0.054,0,1.291074,4.5,4.5 +1969,0,0.026967,2,2,1,2,3,,4,3,14 Mile,Rd,5500000,4.503,4.53,0,0.647215,3.7,5 +85,0,0.47806,1,1,0,2,4,,4,3,13 Mile,Rd,607408,17.436,17.914,0,11.47343,4.5,4.5 +1278,0,0.467838,1,1,0,2,3,,4,3,Haggerty,Rd,639005,4.581,5.049,0,11.228102,3.7,5 +1774,0,0.178529,1,1,0,2,3,,4,3,Haggerty,Rd,639005,4.403,4.581,0,4.284688,3.7,5 +822,0,0.293049,1,1,0,2,3,,4,3,Haggerty,Rd,639005,5.049,5.342,0,7.03317,3.7,5 +501,0,0.391599,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,3.733,4.124,0,9.398371,3.7,5 +28697,0,0.509098,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.218355,0.15,4 +931,0,0.260288,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,4.124,4.384,0,6.246911,3.7,5 +1914,0,0.385153,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,6.12,6.505,0,9.243662,3.7,5 +577,0,0.493451,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,8.667,9.16,0,11.842828,3.7,5 +876,0,0.600557,1,1,0,2,4,,4,3,Richardson,Rd,631704,0,0.6,0,14.413374,4.5,4.5 +2081,0,0.498308,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,1.838,2.336,0,11.959403,4.5,4.5 +3004,0,0.554078,1,1,0,2,3,,3,3,Pontiac,Trl,657404,8.458,9.012,0,13.297874,5,5 +3765,0,0.394366,1,1,0,2,4,,4,3,Commerce,Rd,683909,1.748,2.142,0,9.464777,4.5,4.5 +37751,-1,0.213118,0,2,0,2,3,DIV,4,3,West Maple,Rd,4416612,0,0.213,0,5.114833,3.7,5 +19834,0,0.607644,1,1,0,2,4,,4,3,Commerce,Rd,4104140,11.686,12.294,0,14.583459,4.5,4.5 +20791,0,0.687825,1,1,0,2,4,,4,3,Welch,Rd,4403557,2.347,3.035,0,16.507791,4.5,4.5 +26971,0,0.631037,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.144886,0.15,4 +27113,0,0.338255,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.118128,0.15,4 +27122,0,0.731492,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.555805,0.15,4 +27241,0,0.610719,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.657267,0.15,4 +29788,0,0.884627,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.23105,0.15,4 +486,0,0.278795,1,1,0,2,4,,4,3,Decker,Rd,621906,2.565,2.844,0,6.691078,4.5,4.5 +2757,0,0.28956,1,1,0,2,3,,3,3,Pontiac,Trl,657404,7.851,8.141,0,6.949433,5,5 +3768,0,0.538702,1,1,0,2,5,,4,3,Commerce,Rd,683909,0.618,1.157,0,12.928858,5.8,4.5 +3769,0,0.6184,1,1,0,2,5,,4,3,Commerce,Rd,683909,0,0.618,0,14.841594,5.8,4.5 +3841,0,0.350443,1,1,1,2,3,,3,3,West Maple,Rd,683906,0.129,0.479,0,8.410638,5,5 +25061,0,0.275107,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.602561,0.15,4 +27129,0,0.409219,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.821264,0.15,4 +27244,0,0.493631,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.847156,0.15,4 +3102,0,0.107493,2,2,1,2,3,,3,3,Pontiac,Trl,657404,7.744,7.851,0,2.579829,5,5 +21903,0,0.656792,2,2,0,2,4,,3,3,Maple,Rd,4413197,0,0.657,0,15.763011,6,4.5 +27133,0,0.503117,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.074809,0.15,4 +27136,0,0.301268,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.230426,0.15,4 +561,0,0.261783,1,1,0,2,5,,3,3,Ladd,Rd,629608,0.275,0.537,0,6.282789,8,4.5 +27134,0,0.187823,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.507761,0.15,4 +2842,0,0.364339,2,2,0,2,3,,3,3,Pontiac,Trl,657404,7.133,7.497,0,8.744136,5,5 +3439,0,0.153634,2,2,1,2,3,,3,3,Pontiac,Trl,657404,7.59,7.744,0,3.687221,5,5 +3842,0,0.12875,2,2,1,2,3,,3,3,West Maple,Rd,683906,0,0.129,0,3.089992,5,5 +2547,0,0.093166,2,2,1,2,3,,3,3,Pontiac,Trl,657404,7.497,7.59,0,2.235989,5,5 +27121,0,0.589419,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.146063,0.15,4 +946,0,0.294607,1,1,0,2,4,,3,3,Decker,Rd,621906,2.27,2.565,0,7.070579,6,4.5 +1322,0,0.243336,1,1,0,2,4,,3,3,Decker,Rd,621906,2.027,2.27,0,5.840058,6,4.5 +3840,0,0.22306,1,1,1,2,3,,3,3,West Maple,Rd,683906,0.479,0.702,0,5.353442,5,5 +27247,0,0.096082,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.305961,0.15,4 +27249,0,0.2861,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.866395,0.15,4 +2474,0,0.111879,1,1,0,2,3,,3,3,Pontiac,Trl,657404,8.141,8.253,0,2.685103,5,5 +27248,0,0.204603,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.910481,0.15,4 +3317,0,0.204966,1,1,0,2,3,,3,3,Pontiac,Trl,657404,8.253,8.458,0,4.919181,5,5 +1829,0,0.370542,1,1,0,2,4,,4,3,Decker,Rd,621906,1.657,2.027,0,8.893005,4.5,4.5 +3767,0,0.486218,1,1,0,2,4,,4,3,Commerce,Rd,683909,1.157,1.643,0,11.669232,4.5,4.5 +1337,0,0.109443,1,1,0,2,4,,4,3,Decker,Rd,621906,3.275,3.385,0,2.626644,4.5,4.5 +1846,0,0.431901,1,1,0,2,4,,4,3,Decker,Rd,621906,2.844,3.275,0,10.365634,4.5,4.5 +25062,0,0.340353,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.168472,0.15,4 +27245,0,0.236239,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.669726,0.15,4 +3766,0,0.104803,1,1,0,2,4,,4,3,Commerce,Rd,683909,1.643,1.748,0,2.515261,4.5,4.5 +982,0,0.687644,1,1,0,2,4,,4,3,Commerce,Rd,630006,0.814,1.502,0,16.503463,4.5,4.5 +1345,0,0.412414,1,1,0,2,4,,4,3,Newton,Rd,631805,0.497,0.909,0,9.897927,4.5,4.5 +1531,0,0.251224,1,1,0,2,4,,4,3,Commerce,Rd,629707,1.333,1.584,0,6.029388,4.5,4.5 +19835,0,0.506949,1,1,0,2,4,,4,3,Commerce,Rd,4104140,11.179,11.686,0,12.166782,4.5,4.5 +27112,0,1.079547,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.909132,0.15,4 +27251,0,0.476717,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.441209,0.15,4 +27252,0,0.259512,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.228279,0.15,4 +1603,0,0.814602,1,1,0,2,4,,4,3,Commerce,Rd,630006,0,0.814,0,19.550444,4.5,4.5 +19836,0,0.499131,1,1,0,2,4,,4,3,Commerce,Rd,4104140,10.68,11.179,0,11.979149,4.5,4.5 +19837,0,0.490192,1,1,0,2,4,,4,3,Commerce,Rd,4104140,10.19,10.68,0,11.764618,4.5,4.5 +1874,0,0.171393,1,1,0,2,5,,4,3,Carroll Lake,Rd,629303,0,0.171,0,4.11343,5.8,4.5 +1853,0,0.49699,1,1,0,2,4,,4,3,Newton,Rd,631805,0,0.497,0,11.927757,4.5,4.5 +536,0,0.253641,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,1.584,1.838,0,6.087382,4.5,4.5 +415,0,0.336855,1,1,0,2,4,,4,3,Newton,Rd,631805,1.193,1.53,0,8.084527,4.5,4.5 +883,0,0.284028,1,1,0,2,4,,4,3,Newton,Rd,631805,0.909,1.193,0,6.816673,4.5,4.5 +1047,0,0.68542,1,1,0,2,3,,4,3,Haggerty,Hwy,639005,7.403,8.088,0,16.450079,3.7,5 +39832,1,0.061509,2,0,0,2,3,,4,3,Pontiac,Trl,657404,9.454,9.516,0,1.47622,3.7,5 +39853,0,0.436758,1,1,1,2,3,,4,3,West Maple,Rd,683906,1.892,2.328,0,10.482191,3.7,5 +20298,0,0.278703,1,1,0,2,4,,4,3,Welch,Rd,4403557,1.415,1.694,0,6.68887,4.5,4.5 +20396,1,0.049118,2,0,0,2,3,DIV,4,3,S M 5,,4402005,0,0.049,0,1.17882,3.7,5 +20722,-1,0.043616,0,2,0,2,3,DIV,4,3,N M 5,,4402006,0,0.044,0,1.046783,3.7,5 +25848,0,0.549511,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.188263,0.15,4 +25850,0,0.517688,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.424521,0.15,4 +25852,0,0.479966,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.519178,0.15,4 +26972,0,0.476682,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.440373,0.15,4 +27118,0,0.915098,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.962358,0.15,4 +27253,0,0.510532,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.252771,0.15,4 +27254,0,0.427575,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.261792,0.15,4 +3836,-1,0.024403,0,2,0,2,3,DIV,4,3,West Maple,Rd,4416612,0.524,0.549,0,0.58567,3.7,5 +25843,0,0.545121,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.082901,0.15,4 +39849,1,1.049627,4,0,0,2,3,DIV,4,3,S M 5,,4402005,0.946,1.996,0,25.191044,3.7,5 +20487,0,0.015951,1,1,0,2,4,,4,3,Welch,Rd,4403557,1.022,1.038,0,0.382828,4.5,4.5 +25443,0,0.401575,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.637807,0.15,4 +27243,0,0.067298,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.615151,0.15,4 +39850,-1,1.049803,0,4,0,2,3,DIV,4,3,N M 5,,4402006,0.945,1.994,0,25.195264,3.7,5 +39852,1,0.065339,2,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.546,1.611,0,1.568127,3.7,5 +3835,-1,0.226241,0,2,0,2,3,DIV,4,3,West Maple,Rd,4416612,0.549,0.775,0,5.429772,3.7,5 +3460,0,0.225853,2,2,1,2,3,,4,3,Pontiac,Trl,657404,9.229,9.454,0,5.420475,3.7,5 +20101,0,0.653351,1,1,0,2,4,,4,3,Welch,Rd,4403557,1.694,2.347,0,15.680429,4.5,4.5 +27239,0,0.640591,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.374177,0.15,4 +2487,0,0.217268,2,2,1,2,3,,4,3,Pontiac,Trl,657404,9.012,9.229,0,5.214425,3.7,5 +27237,0,0.146402,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.513648,0.15,4 +39834,1,0.033202,2,0,0,2,3,,4,3,Pontiac,Trl,657404,9.574,9.607,0,0.796844,3.7,5 +39833,1,0.057611,2,0,0,2,3,,4,3,Pontiac,Trl,657404,9.516,9.574,0,1.382654,3.7,5 +1520,0,0.309235,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,7.094,7.403,0,7.421652,3.7,5 +25442,0,0.513314,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.319536,0.15,4 +2030,0,0.429132,1,1,0,2,3,,4,3,Haggerty,Hwy,639005,6.665,7.094,0,10.299176,3.7,5 +25844,0,0.259304,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.223299,0.15,4 +537,0,0.605597,1,1,0,2,5,,4,3,Walnut Lake,Rd,622906,0,0.605,0,14.53432,5.8,4.5 +596,0,0.330326,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,8.088,8.419,0,7.927824,3.7,5 +3473,0,0.324989,2,2,1,2,3,,4,3,Pontiac,Trl,657404,9.899,10.224,0,7.799746,3.7,5 +1032,0,0.248306,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,8.419,8.667,0,5.959352,3.7,5 +39800,1,0.066881,2,0,0,2,4,,4,3,Oakley Park,Rd,629707,2.773,2.839,0,1.605136,4.5,4.5 +1035,0,0.390621,1,1,0,2,3,,4,3,Union Lake,Rd,629405,0.238,0.628,0,9.374903,3.7,5 +1259,0,0.320669,1,1,0,2,3,,4,3,Richardson,Rd,631704,1.229,1.55,0,7.696065,3.7,5 +19831,0,0.19882,1,1,0,2,3,,4,3,Commerce,Rd,4104140,12.973,13.171,0,4.771688,3.7,5 +26144,0,0.709728,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.033471,0.15,4 +27236,0,0.636859,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.284605,0.15,4 +27255,0,0.864508,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.748193,0.15,4 +27257,0,0.48982,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.755673,0.15,4 +29689,0,0.981326,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.551826,0.15,4 +30231,0,0.394257,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.462157,0.15,4 +409,0,0.427086,1,1,0,2,4,,4,3,Richardson,Rd,631704,0.6,1.027,0,10.250064,4.5,4.5 +39802,1,0.073832,2,0,0,2,4,,4,3,Oakley Park,Rd,629707,2.859,2.933,0,1.771977,4.5,4.5 +1583,0,0.436821,1,1,1,2,4,,4,3,Oakley Park,Rd,629707,2.336,2.773,0,10.483693,4.5,4.5 +27240,0,0.642225,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.413389,0.15,4 +27242,0,0.293554,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.045305,0.15,4 +1506,0,0.237885,1,1,0,2,3,,4,3,Union Lake,Rd,629405,0,0.238,0,5.70923,3.7,5 +1963,0,0.201748,2,2,0,2,4,,4,3,Richardson,Rd,631704,1.027,1.229,0,4.84194,4.5,4.5 +584,0,0.38333,1,1,0,2,3,,4,3,Union Lake,Rd,629405,0.628,1.012,0,9.199915,3.7,5 +19832,0,0.638913,1,1,0,2,4,,4,3,Commerce,Rd,4104140,12.334,12.973,0,15.33391,4.5,4.5 +19833,0,0.040286,1,1,0,2,4,,4,3,Commerce,Rd,4104140,12.294,12.334,0,0.96687,4.5,4.5 +1660,0,0.251497,1,1,1,2,3,,4,3,Union Lake,Rd,629405,1.012,1.263,0,6.035929,3.7,5 +341,0,0.237378,1,1,0,2,4,,4,3,Richardson,Rd,631704,1.693,1.93,0,5.697078,4.5,4.5 +2109,0,0.428631,1,1,1,2,3,,4,3,Haggerty,Hwy,639005,9.16,9.589,0,10.287146,3.7,5 +2102,0,0.13455,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,3.23,3.364,0,3.229188,4.5,4.5 +807,0,0.143112,1,1,0,2,4,,4,3,Richardson,Rd,631704,1.55,1.693,0,3.434689,4.5,4.5 +25833,0,0.086158,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.06778,0.15,4 +19830,0,0.521344,1,1,0,2,3,,4,3,Commerce,Rd,4104140,13.171,13.693,0,12.512255,3.7,5 +4229,0,0.31947,1,1,0,2,7,,4,3,Keith,Rd,709003,0,0.319,0,7.66729,6.55,4.5 +19828,0,0.128574,1,1,0,2,3,,4,3,Commerce,Rd,4104140,13.705,13.834,0,3.085784,3.7,5 +19829,0,0.012664,1,1,0,2,3,,4,3,Commerce,Rd,4104140,13.693,13.705,0,0.303926,3.7,5 +91,0,0.442348,1,1,0,2,4,,4,3,13 Mile,Rd,607408,15.511,15.954,0,10.616352,4.5,4.5 +640,0,0.406484,1,1,0,2,4,,4,3,Drake,Rd,633804,3.192,3.598,0,9.75561,4.5,4.5 +923,0,0.468577,1,1,0,2,4,,4,3,Farmington,Rd,634005,2.359,2.827,0,11.245847,4.5,4.5 +1329,0,0.533813,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,1.628,2.162,0,12.811503,3.7,5 +1338,0,0.401067,1,1,0,2,4,,4,3,Halsted,Rd,633802,2.146,2.547,0,9.625618,4.5,4.5 +2825,1,0.546576,4,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,6.067,6.613,0,13.117826,3.7,5 +4444,-1,2.943349,0,4,0,1,1,,4,3,W I 696,,710702,1.372,4.315,0,,0.8,7.5 +4806,1,2.987791,4,0,0,1,1,,4,3,E I 696,,710701,1.264,4.251,0,,0.8,7.5 +19780,0,0.501877,2,2,1,2,4,,3,3,Grand River,,4104142,15.555,16.056,0,12.045041,6,4.5 +20844,-1,0.548499,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4414623,4.674,5.222,0,13.163971,3.7,5 +24878,0,0.649424,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.586178,0.15,4 +24930,0,0.511118,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.266843,0.15,4 +25950,0,0.501769,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.042455,0.15,4 +26159,0,0.557726,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.385419,0.15,4 +27263,0,0.514979,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.359486,0.15,4 +27267,0,0.544834,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.076022,0.15,4 +28929,0,0.503323,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.079747,0.15,4 +29204,0,0.506647,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.159534,0.15,4 +29217,0,0.512875,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.308993,0.15,4 +29739,0,0.553303,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.279274,0.15,4 +29873,0,0.514827,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.355844,0.15,4 +463,0,0.500824,1,1,0,2,4,,3,3,Halsted,Rd,633802,1.136,1.637,0,12.019783,6,4.5 +854,0,0.375574,1,1,0,2,5,,3,3,11 Mile,Rd,637803,0.154,0.529,0,9.013768,8,4.5 +2072,0,0.259309,1,1,0,2,4,,4,3,Drake,Rd,633804,2.062,2.322,0,6.223417,4.5,4.5 +3232,1,0.421183,2,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,5.07,5.491,0,10.108404,3.7,5 +19784,0,0.360257,2,2,1,2,4,,3,3,Grand River,,4104142,14.56,14.92,0,8.646174,6,4.5 +20351,-1,0.413148,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4414623,3.678,4.091,0,9.915555,3.7,5 +20962,1,0.453244,1,0,0,1,1,RFF,3,3,N M 5/E I 696,RAMP,4410621,0,0.453,0,,0.58,7 +24875,0,0.487403,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.697674,0.15,4 +26183,0,0.60235,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.456391,0.15,4 +27272,0,0.358643,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.607428,0.15,4 +27275,0,0.289984,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.959619,0.15,4 +29629,0,0.461569,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.077661,0.15,4 +912,1,0.132076,1,0,0,2,4,,3,3,Halsted,Rd,639203,0,0.132,0,3.169824,6,4.5 +1418,0,0.482725,1,1,1,2,4,,3,3,Halsted,Rd,633802,0.128,0.611,0,11.585398,6,4.5 +2475,1,0.273907,3,0,0,1,2,,3,3,E M 5,,657303,13.348,13.622,0,,0.58,7 +2758,1,0.391667,2,0,0,1,2,,3,3,E M 5,,657303,12.957,13.348,0,,0.58,7 +3547,-1,0.389943,0,3,0,1,2,,3,3,W M 5,,657304,13.287,13.677,0,,0.58,7 +19788,0,0.089142,2,2,1,2,4,,3,3,Grand River,,4104142,14.314,14.403,0,2.139403,6,4.5 +20842,-1,0.23003,0,2,0,1,2,,3,3,N M 5,,4402006,6.072,6.302,0,,0.58,7 +25065,0,0.370743,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.897838,0.15,4 +27273,0,0.24852,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.964483,0.15,4 +30240,0,0.332703,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.984866,0.15,4 +2435,0,0.09392,2,2,1,2,4,,3,3,10 Mile,Rd,656510,12.438,12.532,0,2.254087,6,4.5 +19790,0,0.221453,2,2,1,2,4,,3,3,Grand River,,4104142,14.027,14.249,0,5.314872,6,4.5 +19789,0,0.065767,2,2,1,2,4,,3,3,Grand River,,4104142,14.249,14.314,0,1.578411,6,4.5 +1987,1,0.168483,1,0,0,1,2,ROF,3,3,E M 5/Grand River,RAMP,633903,0,0.168,0,,2.24,5 +2534,-1,0.220415,0,2,0,1,2,,3,3,W M 5,,657304,13.677,13.897,0,,0.58,7 +2935,1,0.179723,1,0,0,1,2,RON,3,3,Grand River/W M 5,RAMP,657108,0,0.18,0,,1.09,4 +19787,0,0.106527,2,2,1,2,4,,3,3,Grand River,,4104142,14.403,14.51,0,2.556642,6,4.5 +20604,0,0.060792,1,1,0,2,4,,3,3,Halsted,Rd,4404524,0,0.061,0,1.459,6,4.5 +19786,0,0.027544,3,3,1,2,4,,3,3,Grand River,,4104142,14.51,14.538,0,0.661065,6,4.5 +37930,1,0.115502,1,0,0,1,2,RON,3,3,Grand River/W M 5,RAMP,4416467,0,0.116,0,,1.09,4 +19785,0,0.022144,3,3,1,2,4,,3,3,Grand River,,4104142,14.538,14.56,0,0.531446,6,4.5 +922,0,0.453821,1,1,0,2,4,,3,3,Halsted,Rd,633802,0.682,1.136,0,10.891693,6,4.5 +1314,0,0.153654,1,1,0,2,5,,3,3,11 Mile,Rd,637803,0,0.154,0,3.687696,8,4.5 +959,0,0.071308,1,1,1,2,4,,3,3,Halsted,Rd,633802,0.611,0.682,0,1.711402,6,4.5 +862,0,0.195,1,1,0,2,5,,3,3,Hills Tech,Dr,639108,0.831,1.026,0,4.679993,8,4.5 +2009,0,0.163212,1,1,0,2,4,,3,3,Halsted,Rd,633802,1.637,1.8,0,3.91708,6,4.5 +3215,1,0.469397,2,0,0,2,3,DIV,3,3,12 Mile,Rd,4462980,4.601,5.07,0,11.265525,5,5 +20544,-1,0.318186,0,2,0,2,3,DIV,3,3,12 Mile,Rd,4414623,3.36,3.678,0,7.636452,5,5 +25052,0,0.398331,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.559934,0.15,4 +1426,1,0.325031,2,0,0,1,1,RFF,3,3,W I 696/E I 96,RAMP,637802,0,0.325,0,,0.58,7 +1743,1,0.383601,2,0,0,1,1,RFF,3,3,W I 96/E I 696,RAMP,634208,1.456,1.839,0,,0.58,7 +25050,0,0.314259,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.542209,0.15,4 +30239,0,0.241918,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.806034,0.15,4 +285,0,0.191427,2,2,1,2,4,,3,3,Halsted,Rd,633802,1.94,2.131,0,4.59425,6,4.5 +1492,0,0.140303,1,1,1,2,4,,3,3,Halsted,Rd,633802,1.8,1.94,0,3.367267,6,4.5 +1847,0,0.01459,2,2,1,2,4,,3,3,Halsted,Rd,633802,2.131,2.146,0,0.350153,6,4.5 +389,0,0.300377,1,1,0,2,5,,3,3,11 Mile,Rd,637803,0.529,0.829,0,7.209037,8,4.5 +1546,0,0.588515,1,1,0,2,4,,3,3,Drake,Rd,633804,1.002,1.59,0,14.124361,6,4.5 +19781,0,0.360354,2,2,1,2,4,,3,3,Grand River,,4104142,15.194,15.555,0,8.648497,6,4.5 +26896,0,0.456307,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.951359,0.15,4 +29681,0,0.570445,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.690674,0.15,4 +19782,0,0.251334,2,2,1,2,4,,3,3,Grand River,,4104142,14.943,15.194,0,6.032018,6,4.5 +19783,0,0.023309,2,2,1,2,4,,3,3,Grand River,,4104142,14.92,14.943,0,0.559411,6,4.5 +620,0,0.171798,1,1,0,2,4,,3,3,Drake,Rd,633804,1.891,2.062,0,4.123162,6,4.5 +1071,0,0.300534,1,1,0,2,4,,3,3,Drake,Rd,633804,1.59,1.891,0,7.212806,6,4.5 +1568,0,0.853536,1,1,0,2,4,,4,3,Drake,Rd,633804,2.322,3.175,0,20.484853,4.5,4.5 +2923,1,0.576274,2,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,5.491,6.067,0,13.830587,3.7,5 +20149,-1,0.582519,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4414623,4.091,4.674,0,13.980446,3.7,5 +27271,0,0.383188,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.1965,0.15,4 +27270,0,0.165678,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.976274,0.15,4 +29872,0,0.182054,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.369297,0.15,4 +1089,0,0.016734,1,1,0,2,4,,4,3,Drake,Rd,633804,3.175,3.192,0,0.401617,4.5,4.5 +88,0,0.414451,1,1,0,2,4,,4,3,13 Mile,Rd,607408,16.535,16.949,0,9.946836,4.5,4.5 +983,0,0.441895,1,1,0,2,4,,4,3,Halsted,Rd,633802,3.141,3.582,0,10.605491,4.5,4.5 +991,0,0.63907,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,2.162,2.8,0,15.337681,3.7,5 +1000,0,0.52979,1,1,0,2,4,,4,3,Drake,Rd,633804,4.192,4.722,0,12.71497,4.5,4.5 +25417,0,0.499984,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.99961,0.15,4 +25917,0,0.521876,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.525022,0.15,4 +28699,0,0.504453,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.106862,0.15,4 +29221,0,0.501107,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.026575,0.15,4 +87,0,0.277401,1,1,0,2,4,,4,3,13 Mile,Rd,607408,16.949,17.226,0,6.657634,4.5,4.5 +1444,0,0.550498,1,1,0,2,4,,4,3,Halsted,Rd,633802,2.59,3.141,0,13.211964,4.5,4.5 +25854,0,0.490676,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.776236,0.15,4 +873,0,0.043366,1,1,0,2,4,,4,3,Halsted,Rd,633802,2.547,2.59,0,1.040776,4.5,4.5 +524,0,0.423555,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,3.159,3.582,0,10.16532,3.7,5 +2070,0,0.373534,1,1,0,2,4,,4,3,Halsted,Rd,633802,3.768,4.142,0,8.964827,4.5,4.5 +519,0,0.186037,1,1,0,2,4,,4,3,Halsted,Rd,633802,3.582,3.768,0,4.464887,4.5,4.5 +453,0,0.249724,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,2.909,3.159,0,5.993384,3.7,5 +1212,0,0.108768,1,1,0,2,3,,4,3,14 Mile,Rd,5500000,2.8,2.909,0,2.610431,3.7,5 +90,0,0.467957,1,1,0,2,4,,4,3,13 Mile,Rd,607408,15.954,16.422,0,11.230968,4.5,4.5 +1471,0,0.506321,1,1,0,2,4,,4,3,Drake,Rd,633804,3.686,4.192,0,12.151714,4.5,4.5 +27258,0,0.498084,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.95401,0.15,4 +27265,0,0.51527,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.366476,0.15,4 +89,0,0.11339,1,1,0,2,4,,4,3,13 Mile,Rd,607408,16.422,16.535,0,2.721349,4.5,4.5 +1983,0,0.088399,1,1,0,2,4,,4,3,Drake,Rd,633804,3.598,3.686,0,2.12157,4.5,4.5 +674,0,0.408617,1,1,0,2,4,,4,3,Drake,Rd,633804,4.794,5.202,0,9.806807,4.5,4.5 +27279,0,0.494753,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.874069,0.15,4 +538,0,0.071874,1,1,0,2,4,,4,3,Drake,Rd,633804,4.722,4.794,0,1.724967,4.5,4.5 +135,0,0.286661,1,1,0,2,4,,4,3,Drake,Rd,633804,5.202,5.489,0,6.879874,4.5,4.5 +349,0,0.371395,1,1,0,2,5,,4,3,Power,Rd,634001,0.937,1.308,0,8.913469,5.8,4.5 +1376,0,0.408037,1,1,0,2,4,,4,3,Farmington,Rd,634005,1.951,2.359,0,9.7929,4.5,4.5 +2090,0,0.532518,1,1,0,2,4,,4,3,Farmington,Rd,634005,0.817,1.349,0,12.780434,4.5,4.5 +3029,0,0.157177,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,7.065,7.222,0,3.77225,3.7,5 +24879,0,0.283762,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.810289,0.15,4 +27268,0,0.638224,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.317386,0.15,4 +27269,0,0.540609,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.974609,0.15,4 +677,0,0.204181,1,1,1,2,5,,3,3,Shiawassee,,633209,0,0.204,0,4.900355,8,4.5 +19779,0,0.130835,2,2,1,2,4,,3,3,Grand River,,4104142,16.056,16.187,0,3.140043,6,4.5 +2535,0,0.068484,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,6.613,6.682,0,1.643617,3.7,5 +27628,0,0.1824,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.377612,0.15,4 +3347,0,0.383668,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,6.682,7.065,0,9.208036,3.7,5 +246,0,0.299033,1,1,0,2,4,,4,3,10 Mile,Rd,633409,0,0.299,0,7.176803,4.5,4.5 +550,0,0.48483,1,1,0,2,4,,4,3,Farmington,Rd,634005,0.332,0.817,0,11.635913,4.5,4.5 +724,0,0.429893,1,1,0,2,5,,4,3,Power,Rd,634001,0.507,0.937,0,10.317428,5.8,4.5 +24877,0,0.303265,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.278358,0.15,4 +24883,0,0.310242,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.445818,0.15,4 +25865,0,0.509671,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.232105,0.15,4 +399,0,0.132707,1,1,0,2,4,,4,3,Farmington,Rd,634005,0.199,0.332,0,3.18497,4.5,4.5 +24880,0,0.041479,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,0.995495,0.15,4 +1165,0,0.20101,1,1,0,2,5,,4,3,Power,Rd,634001,0.306,0.507,0,4.824234,5.8,4.5 +1308,0,0.263366,1,1,0,2,4,,3,3,10 Mile,Rd,633409,0.4,0.664,0,6.320773,6,4.5 +1805,0,0.101553,1,1,0,2,4,,4,3,10 Mile,Rd,633409,0.299,0.4,0,2.437265,4.5,4.5 +24882,0,0.134631,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.231132,0.15,4 +1886,0,0.358301,1,1,0,2,4,,4,3,Farmington,Rd,634005,1.593,1.951,0,8.599217,4.5,4.5 +2027,0,0.500711,1,1,0,2,4,,4,3,11 Mile,Rd,634509,0,0.501,0,12.017067,4.5,4.5 +2562,0,0.272097,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,7.222,7.494,0,6.530324,3.7,5 +27276,0,0.548094,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.154258,0.15,4 +27729,0,0.351408,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.433799,0.15,4 +1110,0,0.236945,1,1,0,2,4,,4,3,Farmington,Rd,634005,1.356,1.593,0,5.686688,4.5,4.5 +1590,0,0.006777,1,1,0,2,4,,4,3,Farmington,Rd,634005,1.349,1.356,0,0.162642,4.5,4.5 +26175,0,0.385571,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.253713,0.15,4 +3532,0,0.38044,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,7.494,7.875,0,9.130562,3.7,5 +29677,0,0.341238,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.189715,0.15,4 +94,0,0.340167,2,2,0,2,4,,4,3,13 Mile,Rd,607408,14.616,14.956,0,8.164018,4.5,4.5 +1753,0,0.30195,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,0.767,1.069,0,7.246798,3.7,5 +1933,0,0.393652,1,1,0,2,4,,4,3,Farmington,Rd,634005,3.362,3.756,0,9.447646,4.5,4.5 +27261,0,0.506846,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.164306,0.15,4 +27280,0,0.382241,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.17378,0.15,4 +27281,0,0.22109,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.30616,0.15,4 +27422,0,0.640017,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.360407,0.15,4 +30238,0,0.236945,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.68667,0.15,4 +93,0,0.509978,1,1,0,2,4,,4,3,13 Mile,Rd,607408,14.956,15.466,0,12.239475,4.5,4.5 +374,0,0.497012,1,1,0,2,4,,4,3,Farmington,Rd,634005,2.865,3.362,0,11.928287,4.5,4.5 +27264,0,0.502184,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.05241,0.15,4 +29201,0,0.509018,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.216422,0.15,4 +92,0,0.045332,1,1,0,2,4,,4,3,13 Mile,Rd,607408,15.466,15.511,0,1.087967,4.5,4.5 +465,0,0.038264,1,1,0,2,4,,4,3,Farmington,Rd,634005,2.827,2.865,0,0.918335,4.5,4.5 +949,0,0.424645,1,1,0,2,4,,4,3,Farmington,Rd,634005,3.896,4.321,0,10.191473,4.5,4.5 +37742,-1,0.031318,0,2,0,2,3,,4,3,Farmington,Rd,4416317,0.043,0.074,0,0.751637,3.7,5 +27259,0,0.514418,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.346034,0.15,4 +27260,0,0.504314,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.103546,0.15,4 +511,0,0.064294,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,1.564,1.628,0,1.543053,3.7,5 +1410,0,0.140762,1,1,0,2,4,,4,3,Farmington,Rd,634005,3.756,3.896,0,3.378296,4.5,4.5 +37741,1,0.030938,2,0,0,2,3,,4,3,Farmington,Rd,634005,4.365,4.396,0,0.742522,3.7,5 +95,0,0.199403,2,2,0,2,4,,4,3,13 Mile,Rd,607408,14.417,14.616,0,4.785675,4.5,4.5 +26158,0,0.547966,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.151193,0.15,4 +27266,0,0.555673,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.336151,0.15,4 +96,0,0.183899,2,2,0,2,4,,4,3,13 Mile,Rd,607408,14.233,14.417,0,4.413566,4.5,4.5 +97,0,0.127838,2,2,0,2,4,,4,3,13 Mile,Rd,607408,14.105,14.233,0,3.06811,4.5,4.5 +2131,0,0.153329,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,0.613,0.767,0,3.679899,3.7,5 +26155,0,0.390478,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.371479,0.15,4 +731,0,0.328427,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,2.193,2.522,0,7.882258,4.5,4.5 +1049,0,0.602161,1,1,0,2,4,,4,3,Halsted,Rd,632404,0.125,0.727,0,14.451864,4.5,4.5 +3203,0,1.070806,1,1,0,2,3,,4,3,Pontiac,Trl,657404,11.851,12.922,0,25.699333,3.7,5 +3394,0,0.816131,1,1,0,2,5,,4,3,Old Orchard,Trl,668002,0,0.816,0,19.587134,5.8,4.5 +37710,-1,0.037269,0,2,0,2,3,,4,3,Drake,Rd,4415863,0,0.037,0,0.89445,3.7,5 +19825,0,0.895949,1,1,0,2,3,,4,3,Commerce,Rd,4104140,15.535,16.431,0,21.502779,3.7,5 +25046,0,0.50658,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.157921,0.15,4 +25836,0,0.315838,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.580122,0.15,4 +27282,0,0.560222,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.445323,0.15,4 +27284,0,0.597432,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.338364,0.15,4 +27286,0,0.584946,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.038703,0.15,4 +1404,0,0.337569,1,1,0,2,5,GRV,4,3,Halsted,Rd,633802,5.584,5.921,0,8.101664,6.55,4.5 +37709,1,0.033688,2,0,0,2,3,,4,3,Drake,Rd,633804,6.164,6.198,0,0.808504,3.7,5 +2045,0,0.527948,1,1,0,2,5,GRV,4,3,Walnut Lake,Rd,622906,0.957,1.485,0,12.670741,6.55,4.5 +3827,0,0.556524,1,1,1,2,3,,4,3,Maple,Rd,683906,3.656,4.212,0,13.356571,3.7,5 +25047,0,0.638413,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.321919,0.15,4 +25835,0,0.585348,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.048357,0.15,4 +25838,0,0.522893,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.549442,0.15,4 +27238,0,0.677243,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.253833,0.15,4 +3829,0,0.108519,1,1,1,2,3,,4,3,Maple,Rd,683906,3.256,3.364,0,2.604447,3.7,5 +3830,0,0.345739,1,1,1,2,3,,4,3,Maple,Rd,683906,2.91,3.256,0,8.297739,3.7,5 +3831,0,0.043155,1,1,1,2,3,,4,3,Maple,Rd,683906,2.867,2.91,0,1.035729,3.7,5 +1923,0,0.438569,1,1,0,2,5,GRV,4,3,Halsted,Rd,633802,5.146,5.584,0,10.525653,6.55,4.5 +3828,0,0.291386,1,1,1,2,3,,4,3,Maple,Rd,683906,3.364,3.656,0,6.993263,3.7,5 +942,0,0.228412,1,1,0,2,5,GRV,4,3,Halsted,Rd,633802,5.921,6.15,0,5.481892,6.55,4.5 +1234,0,0.531701,1,1,0,2,4,,4,3,Drake,Rd,633804,5.633,6.164,0,12.760818,4.5,4.5 +1170,0,0.270633,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,1.923,2.193,0,6.495202,4.5,4.5 +1536,0,0.310563,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,1.612,1.923,0,7.453508,4.5,4.5 +27283,0,0.728729,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.489501,0.15,4 +27289,0,0.518564,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.445537,0.15,4 +27288,0,0.548499,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.16398,0.15,4 +1521,0,0.12518,1,1,0,2,4,,4,3,Halsted,Rd,632404,0,0.125,0,3.004317,4.5,4.5 +878,0,0.325053,1,1,0,2,4,,4,3,Drake,Rd,633804,6.894,7.219,0,7.801284,4.5,4.5 +1342,0,0.127607,1,1,0,2,4,,4,3,Drake,Rd,633804,6.766,6.894,0,3.062567,4.5,4.5 +367,0,0.503894,1,1,0,2,4,,4,3,Green Lake,Rd,631903,1.158,1.662,0,12.093448,4.5,4.5 +19826,0,0.772602,1,1,0,2,3,,4,3,Commerce,Rd,4104140,14.763,15.535,0,18.542456,3.7,5 +25832,0,0.494439,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.86653,0.15,4 +27125,0,0.887941,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.310574,0.15,4 +27290,0,0.066021,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.58451,0.15,4 +29690,0,0.62203,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.928722,0.15,4 +29754,0,0.84224,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.213755,0.15,4 +886,0,0.278228,1,1,0,2,4,,4,3,Green Lake,Rd,631903,0.478,0.756,0,6.677482,4.5,4.5 +1347,0,0.293562,1,1,0,2,4,,4,3,Green Lake,Rd,631903,0.184,0.478,0,7.04548,4.5,4.5 +3222,0,0.231852,1,1,0,2,3,,4,3,Pontiac,Trl,657404,11.323,11.555,0,5.564446,3.7,5 +1856,0,0.184306,1,1,0,2,4,,4,3,Green Lake,Rd,631903,0,0.184,0,4.423341,4.5,4.5 +3036,0,0.231653,1,1,0,2,3,,4,3,Pontiac,Trl,657404,11.092,11.323,0,5.559675,3.7,5 +2913,0,0.29648,1,1,0,2,3,,4,3,Pontiac,Trl,657404,11.555,11.851,0,7.115531,3.7,5 +420,0,0.402679,1,1,0,2,4,,4,3,Green Lake,Rd,631903,0.756,1.158,0,9.66429,4.5,4.5 +1926,0,0.11709,1,1,0,2,4,,4,3,Green Lake,Rd,631903,1.662,1.779,0,2.810165,4.5,4.5 +1884,0,0.19817,1,1,0,2,4,,4,3,Hiller,Rd,632709,0.304,0.502,0,4.756072,4.5,4.5 +598,0,0.304277,1,1,0,2,5,,4,3,Hiller,Rd,632709,0,0.304,0,7.302643,5.8,4.5 +579,0,0.236258,1,1,0,2,5,,4,3,Willow,Rd,629505,2.501,2.738,0,5.670181,5.8,4.5 +626,0,0.197287,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,3.257,3.455,0,4.734887,4.5,4.5 +1527,0,0.210016,1,1,0,2,4,,4,3,Farmington,Rd,634005,5.804,6.014,0,5.04039,4.5,4.5 +37725,-1,0.049702,0,2,0,2,3,,4,3,Maple,Rd,4415865,0,0.05,0,1.19286,3.7,5 +25445,0,0.508664,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.207926,0.15,4 +26003,0,0.526455,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.634921,0.15,4 +27277,0,0.513286,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.318868,0.15,4 +27287,0,0.467818,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.227635,0.15,4 +27686,0,0.5637,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.528809,0.15,4 +844,0,0.342672,1,1,0,2,4,,4,3,Farmington,Rd,634005,4.993,5.335,0,8.224121,4.5,4.5 +3824,0,0.292823,1,1,1,2,3,,4,3,Maple,Rd,683906,4.92,5.213,0,7.02774,3.7,5 +25053,0,0.523775,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.570604,0.15,4 +3825,0,0.27302,1,1,1,2,3,,4,3,Maple,Rd,683906,4.647,4.92,0,6.552472,3.7,5 +37726,1,0.035726,2,0,0,2,3,,4,3,Maple,Rd,683906,5.264,5.3,0,0.857416,3.7,5 +1833,0,0.41205,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,2.845,3.257,0,9.889189,4.5,4.5 +269,0,0.323864,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,2.522,2.845,0,7.772734,4.5,4.5 +27285,0,0.484011,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.616275,0.15,4 +3822,0,0.426691,1,1,1,2,3,,4,3,Maple,Rd,683906,5.6,6.027,0,10.240582,3.7,5 +25054,0,0.55817,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.396092,0.15,4 +552,0,0.280894,1,1,1,2,4,,4,3,Walnut Lake,Rd,622906,3.661,3.942,0,6.741457,4.5,4.5 +26002,0,0.426925,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.24619,0.15,4 +30236,0,0.595494,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.291848,0.15,4 +30237,0,0.543431,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.042338,0.15,4 +1056,0,0.478406,1,1,0,2,4,,4,3,Farmington,Rd,634005,6.014,6.492,0,11.481733,4.5,4.5 +2153,0,0.206532,1,1,1,2,4,,4,3,Walnut Lake,Rd,622906,3.455,3.661,0,4.956764,4.5,4.5 +2897,0,0.994527,1,1,0,2,3,,4,3,Pontiac,Trl,657404,12.922,13.916,0,23.868646,3.7,5 +3069,0,0.901916,1,1,0,2,5,,4,3,Old Orchard,Trl,668002,0.816,1.718,0,21.645983,5.8,4.5 +25981,0,0.80239,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.257357,0.15,4 +25982,0,0.353549,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.485178,0.15,4 +911,0,0.397561,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,8.087,8.485,0,9.541457,3.7,5 +2905,0,0.603088,1,1,0,2,3,,4,3,Pontiac,Trl,657404,13.916,14.519,0,14.474101,3.7,5 +574,0,0.280132,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,0.916,1.196,0,6.723169,3.7,5 +1543,0,1.00802,1,1,0,2,5,,4,3,Willow,Rd,629505,0.705,1.713,0,24.192478,5.8,4.5 +1776,0,0.611942,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,0.334,0.945,0,14.686616,4.5,4.5 +3515,0,0.544012,1,1,0,2,4,,4,3,Andersonville,Rd,650409,0.706,1.25,0,13.056295,4.5,4.5 +3589,0,0.276012,2,2,1,2,3,,4,3,Highland,Rd,648906,13.266,13.541,0,6.624297,3.7,5 +3609,0,0.517866,2,2,1,2,3,,4,3,Dixie,Hwy,689103,1.831,2.348,0,12.428784,3.7,5 +4100,0,0.401255,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,4.876,5.277,0,9.630118,5.8,4.5 +4105,0,0.396448,1,1,0,2,5,GRV,4,3,Pontiac Lake,Rd,703707,2.737,3.134,0,9.51476,6.55,4.5 +4146,0,0.352918,1,1,0,2,4,,4,3,Crescent Lake,Rd,699308,1.285,1.638,0,8.470037,4.5,4.5 +4622,0,0.279939,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,4.949,5.228,0,6.718539,3.7,5 +37691,1,0.016484,1,0,0,2,3,,4,3,Williams Lake,Rd,4463015,0,0.017,0,0.395616,3.7,5 +4759,0,1.162671,1,1,0,2,5,,4,3,Hatchery,Rd,4462999,0.126,1.289,0,27.904109,5.8,4.5 +4804,0,0.505177,1,1,0,2,4,,4,3,Airport,Rd,696506,1.007,1.512,0,12.124253,4.5,4.5 +25716,0,0.572737,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.745696,0.15,4 +26064,0,0.608669,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.608066,0.15,4 +27175,0,0.808945,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.414684,0.15,4 +27293,0,0.851306,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.431343,0.15,4 +27296,0,0.826215,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.829149,0.15,4 +27297,0,0.708975,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.015403,0.15,4 +27300,0,0.472594,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.342259,0.15,4 +27305,0,0.224057,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.377356,0.15,4 +27306,0,0.828342,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.880216,0.15,4 +27307,0,0.881111,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.146653,0.15,4 +27312,0,0.698299,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.759187,0.15,4 +27314,0,0.623615,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.966763,0.15,4 +27318,0,0.455719,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.937254,0.15,4 +27321,0,0.521586,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.518068,0.15,4 +282,0,0.617879,1,1,0,2,5,,4,3,Farnsworth,St,632308,0.233,0.851,0,14.829104,5.8,4.5 +565,0,1.089274,1,1,0,2,5,,4,3,Cooley Lake,Rd,4416312,1.515,2.604,0,26.142586,5.8,4.5 +802,0,0.568209,1,1,0,2,4,,4,3,Union Lake,Rd,629405,3.821,4.389,0,13.637016,4.5,4.5 +1215,0,0.86024,1,1,1,2,3,,4,3,Williams Lake,Rd,4463020,1.132,1.992,0,20.645757,3.7,5 +1252,0,1.004827,1,1,0,2,4,,4,3,Union Lake,Rd,629405,2.816,3.821,0,24.115851,4.5,4.5 +1330,0,1.060538,1,1,0,2,5,,4,3,Oxbow Lake,Rd,630010,1.013,2.073,0,25.452916,5.8,4.5 +1433,0,0.839821,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,2.12,2.959,0,20.155704,4.5,4.5 +1513,0,0.209701,1,1,0,2,4,,4,3,Wise,Rd,630008,1.658,1.868,0,5.032826,4.5,4.5 +2182,0,0.760251,2,2,1,2,3,,4,3,Highland,Rd,648906,11.594,12.354,0,18.246018,3.7,5 +25187,0,1.039488,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.947722,0.15,4 +25723,0,1.031486,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.755659,0.15,4 +25727,0,1.193004,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.632102,0.15,4 +27301,0,1.052443,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.258641,0.15,4 +27311,0,0.700869,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.820855,0.15,4 +27326,0,0.547737,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.145698,0.15,4 +27328,0,0.8031,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.274395,0.15,4 +27329,0,0.403253,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.678075,0.15,4 +1021,0,0.423048,1,1,0,2,5,,4,3,Cooley Lake,Rd,4416312,1.092,1.515,0,10.153147,5.8,4.5 +1739,0,0.403936,1,1,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.588,0.992,0,9.694454,5.8,4.5 +37668,-1,0.041221,0,1,0,2,4,,4,3,Bogie Lake,Rd,4415866,0,0.041,0,0.989297,4.5,4.5 +2024,0,1.158451,1,1,0,2,4,,4,3,Wise,Rd,630008,0.5,1.658,0,27.802832,4.5,4.5 +27110,0,1.007268,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.174434,0.15,4 +27323,0,0.771633,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.519191,0.15,4 +27324,0,0.949526,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.788614,0.15,4 +171,0,0.410256,1,1,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.178,0.588,0,9.846133,5.8,4.5 +998,0,0.547051,1,1,0,2,5,,4,3,Carroll Lake,Rd,629303,1,1.547,0,13.129216,5.8,4.5 +2069,0,0.085615,1,1,0,2,4,,4,3,Bogie Lake,Rd,630007,0.915,1,0,2.05475,4.5,4.5 +37666,0,0.383177,1,1,1,2,4,,4,3,Bogie Lake,Rd,630101,0.09,0.473,0,9.196246,4.5,4.5 +1469,0,0.50256,1,1,0,2,5,,4,3,Carroll Lake,Rd,629303,0.498,1,0,12.061452,5.8,4.5 +27327,0,0.691074,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.585771,0.15,4 +1493,0,0.100429,1,1,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.992,1.092,0,2.410287,5.8,4.5 +682,0,0.497197,1,1,0,2,5,,4,3,Round Lake,Rd,630503,0.318,0.815,0,11.93273,5.8,4.5 +27322,0,0.429522,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.308531,0.15,4 +1123,0,0.318493,1,1,0,2,5,,4,3,Round Lake,Rd,630503,0,0.318,0,7.643827,5.8,4.5 +750,0,0.314687,1,1,0,2,5,,4,3,Hutchins,St,632306,0.047,0.362,0,7.552499,5.8,4.5 +1645,0,0.047277,1,1,0,2,5,,4,3,Hutchins,St,632306,0,0.047,0,1.134651,5.8,4.5 +397,0,0.245622,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,1.653,1.899,0,5.894938,4.5,4.5 +25726,0,0.51866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.447852,0.15,4 +864,0,0.54017,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,1.113,1.653,0,12.96409,4.5,4.5 +1299,0,0.325951,1,1,0,2,4,,4,3,Union Lake,Rd,629405,4.536,4.861,0,7.822813,4.5,4.5 +1795,0,0.146868,1,1,0,2,4,,4,3,Union Lake,Rd,629405,4.389,4.536,0,3.524825,4.5,4.5 +1952,0,0.22098,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,1.899,2.12,0,5.30353,4.5,4.5 +25725,0,0.60558,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.533914,0.15,4 +2183,0,0.270686,2,2,1,2,3,,4,3,Highland,Rd,648906,11.323,11.594,0,6.496455,3.7,5 +840,0,0.705273,1,1,0,2,5,,4,3,Willow,Rd,629505,0,0.705,0,16.926563,5.8,4.5 +1497,0,0.306622,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,0.254,0.56,0,7.358936,3.7,5 +1697,0,1.132615,1,1,1,2,3,,4,3,Williams Lake,Rd,4463020,0,1.132,0,27.182762,3.7,5 +1741,0,0.281702,1,1,0,2,4,,4,3,Union Lake,Rd,629405,2.535,2.816,0,6.760853,4.5,4.5 +2138,0,0.253725,2,2,0,2,3,,4,3,Cooley Lake,Rd,630603,0,0.254,0,6.089391,3.7,5 +273,0,0.542926,1,1,0,2,4,,4,3,Wise,Rd,630008,1.868,2.41,0,13.030227,4.5,4.5 +2155,0,0.406043,1,1,1,2,3,,4,3,Union Lake,Rd,629405,1.68,2.086,0,9.745039,3.7,5 +746,0,0.229014,1,1,1,2,3,,4,3,Union Lake,Rd,629405,1.451,1.68,0,5.49633,3.7,5 +1650,0,0.365491,1,1,1,2,3,,4,3,Union Lake,Rd,629405,2.086,2.451,0,8.771778,3.7,5 +1179,0,0.083624,2,2,0,2,3,,4,3,Union Lake,Rd,629405,2.451,2.535,0,2.006965,3.7,5 +1027,0,0.35594,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,0.56,0.916,0,8.542562,3.7,5 +24820,0,0.479725,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.513403,0.15,4 +25733,0,1.026871,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.6449,0.15,4 +316,0,0.312548,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,2.032,2.344,0,7.501159,3.7,5 +1059,0,0.438508,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,2.546,2.984,0,10.524197,3.7,5 +2031,0,0.54749,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,632401,2.959,3.506,0,13.139754,4.5,4.5 +2181,0,0.362964,2,2,1,2,3,,4,3,Highland,Rd,648906,12.354,12.716,0,8.71114,3.7,5 +4103,0,0.284015,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,3.918,4.202,0,6.816366,5.8,4.5 +25152,0,0.545294,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.08705,0.15,4 +27325,0,0.729728,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.513477,0.15,4 +315,0,0.177265,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,0.156,0.334,0,4.254357,4.5,4.5 +777,0,0.156441,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,0,0.156,0,3.754584,4.5,4.5 +778,0,0.039781,2,2,0,2,3,,4,3,Williams Lake,Rd,4463020,1.992,2.032,0,0.954736,3.7,5 +37690,-1,0.428652,0,2,0,2,3,DIV,4,3,Williams Lake,Rd,4463013,0,0.429,0,10.28765,3.7,5 +4102,0,0.674178,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,4.202,4.876,0,16.180268,5.8,4.5 +37688,0,0.171423,2,2,1,2,3,,4,3,Williams Lake,Rd,4463020,3.19,3.362,0,4.11415,3.7,5 +26046,0,0.46487,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.156881,0.15,4 +27303,0,0.579548,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.909142,0.15,4 +1530,0,0.201504,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,2.344,2.546,0,4.836098,3.7,5 +608,0,0.206063,1,1,1,2,3,,4,3,Williams Lake,Rd,4463020,2.984,3.19,0,4.945509,3.7,5 +37686,0,0.549247,2,2,1,2,3,,4,3,Highland,Rd,648906,12.716,13.266,0,13.181921,3.7,5 +37716,1,0.041708,2,0,0,2,3,,4,3,Maple,Rd,683906,4.282,4.324,0,1.000992,3.7,5 +27302,0,0.081204,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.948894,0.15,4 +37689,1,0.435048,2,0,0,2,3,DIV,4,3,Williams Lake,Rd,4463020,3.362,3.797,0,10.441152,3.7,5 +2754,0,2.099498,1,1,0,2,4,,5,3,White Lake,Rd,649303,6.124,8.222,0,50.387941,3,4 +3621,0,1.168971,1,1,0,2,5,,5,3,Andersonville,Rd,688910,1.302,2.471,0,28.0553,3.7,5 +4119,0,0.769723,1,1,0,2,3,,4,3,Nelsey,Rd,701610,0,0.77,0,18.473343,3.7,5 +27330,0,1.224881,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.397134,0.15,4 +2440,0,1.260087,1,1,0,2,5,,5,3,Teggerdine,Rd,650405,1.776,3.036,0,30.242085,3.7,5 +4106,0,0.598102,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,1.733,2.331,0,14.354447,5.8,4.5 +27208,0,1.445582,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.693974,0.15,4 +2453,0,0.473467,1,1,0,2,5,,4,3,Teggerdine,Rd,650405,1.303,1.776,0,11.363201,5.8,4.5 +26953,0,0.021662,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,0.519877,0.15,4 +4643,0,0.331057,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,4.618,4.949,0,7.945368,3.7,5 +37694,0,0.126381,1,1,1,2,5,,4,3,Hatchery,Rd,4462999,0,0.126,0,3.033134,5.8,4.5 +37693,-1,0.156395,0,2,0,2,3,DIV,4,3,Williams Lake,Rd,4463013,0.429,0.585,0,3.753484,3.7,5 +27304,0,0.109305,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.623316,0.15,4 +37692,1,0.082712,2,0,0,2,3,DIV,4,3,Williams Lake,Rd,4463020,3.797,3.879,0,1.985087,3.7,5 +3960,0,0.989197,1,1,0,2,3,,4,3,Maceday Lake,Rd,704908,2.604,3.593,0,23.740717,3.7,5 +27295,0,0.702072,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.849737,0.15,4 +37091,-1,0.146409,0,3,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0.538,0.685,0,3.513811,3.7,5 +37075,1,0.088317,2,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,0.831,0.919,0,2.119608,3.7,5 +37076,1,0.092618,3,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,0.919,1.011,0,2.222833,3.7,5 +3561,0,0.126387,1,1,0,2,4,,4,3,Andersonville,Rd,650409,0,0.126,0,3.033286,4.5,4.5 +21974,0,0.055318,1,1,1,2,3,,4,3,White Lake,Rd,4412733,0.662,0.717,0,1.327637,3.7,5 +26961,0,0.471344,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.31226,0.15,4 +27299,0,0.549331,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.183953,0.15,4 +3620,0,0.339054,1,1,0,2,5,,5,3,Andersonville,Rd,688910,2.471,2.81,0,8.137284,3.7,5 +21962,0,0.127658,1,1,1,2,4,,5,3,White Lake,Rd,4412877,0,0.128,0,3.063796,3,4 +3619,0,0.26856,1,1,0,2,4,,5,3,Andersonville,Rd,688910,2.81,3.078,0,6.445448,3,4 +2747,0,0.093763,1,1,0,2,4,,4,3,Andersonville,Rd,649303,8.622,8.716,0,2.250323,4.5,4.5 +3517,0,0.579542,1,1,0,2,4,,4,3,Andersonville,Rd,650409,0.126,0.706,0,13.908996,4.5,4.5 +21977,0,0.661794,1,1,1,2,3,,4,3,White Lake,Rd,4412733,0,0.662,0,15.883058,3.7,5 +3610,0,0.363634,2,2,1,2,3,,4,3,Dixie,Hwy,689103,1.467,1.831,0,8.727227,3.7,5 +21973,0,0.937574,1,1,0,2,3,,4,3,White Lake,Rd,4412733,0.717,1.654,0,22.501784,3.7,5 +26962,0,0.629295,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.103086,0.15,4 +26963,0,0.499753,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.994083,0.15,4 +3611,0,0.16548,2,2,1,2,3,,4,3,Dixie,Hwy,689103,1.302,1.467,0,3.971509,3.7,5 +21972,0,0.255403,1,1,0,2,5,,4,3,White Lake,Rd,4412733,1.654,1.91,0,6.129672,5.8,4.5 +1161,0,0.484209,1,1,0,2,4,,4,3,Cass Elizabeth,Rd,630806,0,0.484,0,11.621017,4.5,4.5 +1220,0,0.628861,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,2.46,3.089,0,15.092656,4.5,4.5 +1918,0,0.945586,1,1,0,2,5,,4,3,Hospital,Rd,630709,1.07,2.016,0,22.694075,5.8,4.5 +2117,0,0.501146,1,1,0,2,3,,4,3,Cooley Lake,Rd,630603,3.042,3.543,0,12.027497,3.7,5 +3511,0,0.537843,2,2,1,2,3,,4,3,Highland,Rd,648906,15.016,15.554,0,12.908235,3.7,5 +4088,0,0.499415,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,6.816,7.315,0,11.98596,5.8,4.5 +4988,0,0.866571,1,1,0,2,5,,4,3,Lochaven,Rd,708805,1.407,2.274,0,20.797707,5.8,4.5 +25135,0,1.010069,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.241659,0.15,4 +25147,0,0.385612,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.254696,0.15,4 +25270,0,0.550753,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.218065,0.15,4 +25275,0,0.614781,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.754735,0.15,4 +27177,0,0.363181,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.716355,0.15,4 +27332,0,0.246667,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.920002,0.15,4 +29484,0,0.624156,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.979751,0.15,4 +29485,0,1.200712,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.817096,0.15,4 +403,0,0.604713,1,1,0,2,4,,4,3,Hiller,Rd,632709,1.509,2.113,0,14.513103,4.5,4.5 +1067,0,0.098994,1,1,0,2,5,,4,3,Willow,Rd,629505,1.713,1.812,0,2.375861,5.8,4.5 +1512,0,0.327359,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,1.737,2.064,0,7.856617,3.7,5 +4994,0,0.654434,1,1,0,2,5,,4,3,Lochaven,Rd,708805,0.587,1.241,0,15.706407,5.8,4.5 +5091,0,0.352649,1,1,0,2,5,,4,3,Greer,Rd,706201,0,0.353,0,8.463572,5.8,4.5 +5077,0,0.507902,1,1,0,2,5,,4,3,Lochaven,Rd,708805,0,0.508,0,12.189649,5.8,4.5 +27313,0,0.72068,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.296327,0.15,4 +5050,0,0.079032,1,1,0,2,5,,4,3,Lochaven,Rd,708805,0.508,0.587,0,1.896759,5.8,4.5 +361,0,1.07065,1,1,0,2,5,,4,3,Hospital,Rd,630709,0,1.07,0,25.695611,5.8,4.5 +2106,0,0.540785,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,1.196,1.737,0,12.97884,3.7,5 +25144,0,0.739201,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.740831,0.15,4 +4993,0,0.166323,1,1,0,2,5,,4,3,Lochaven,Rd,708805,1.241,1.407,0,3.991741,5.8,4.5 +462,0,0.194437,1,1,0,2,4,,4,3,Hiller,Rd,632709,1.315,1.509,0,4.666484,4.5,4.5 +5085,0,0.40368,1,1,0,2,5,,4,3,Greer,Rd,706201,0.353,0.756,0,9.688313,5.8,4.5 +27127,0,0.095117,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.28281,0.15,4 +27128,0,0.366879,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.805086,0.15,4 +29686,0,0.526503,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.636073,0.15,4 +616,0,0.150344,1,1,0,2,5,,4,3,Willow,Rd,629505,1.812,1.962,0,3.608256,5.8,4.5 +921,0,0.142138,1,1,0,2,4,,4,3,Hiller,Rd,632709,1.173,1.315,0,3.411302,4.5,4.5 +589,0,0.471417,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,2.57,3.042,0,11.314007,3.7,5 +1040,0,0.506569,1,1,1,2,3,,4,3,Cooley Lake,Rd,630603,2.064,2.57,0,12.157665,3.7,5 +25145,0,0.755481,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.131546,0.15,4 +1960,0,0.416883,1,1,0,2,4,,4,3,Hiller,Rd,632709,2.113,2.53,0,10.005183,4.5,4.5 +359,0,0.346652,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,1.603,1.95,0,8.319654,4.5,4.5 +2140,0,0.503571,1,1,0,2,5,,4,3,Hospital,Rd,630709,2.016,2.519,0,12.085709,5.8,4.5 +3539,0,0.36958,2,2,1,2,3,,4,3,Highland,Rd,648906,14.178,14.548,0,8.869926,3.7,5 +4097,0,0.37819,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,5.931,6.309,0,9.076571,5.8,4.5 +4814,0,0.502946,1,1,0,2,4,,4,3,Airport,Rd,696506,0,0.503,0,12.070699,4.5,4.5 +25155,0,0.488328,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.719879,0.15,4 +25332,0,0.549772,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.194526,0.15,4 +1281,0,0.499762,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,0.945,1.445,0,11.994282,4.5,4.5 +4945,0,0.967346,1,1,0,2,5,,4,3,Lochaven,Rd,708805,2.274,3.241,0,23.216307,5.8,4.5 +827,0,0.158105,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,1.445,1.603,0,3.794525,4.5,4.5 +1637,0,0.508829,1,1,0,2,5,,4,3,Hospital,Rd,630709,2.519,3.028,0,12.211895,5.8,4.5 +3582,0,0.381548,2,2,1,2,3,,4,3,Highland,Rd,648906,13.541,13.923,0,9.15716,3.7,5 +4099,0,0.431937,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,5.277,5.709,0,10.366484,5.8,4.5 +25153,0,0.548438,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.162502,0.15,4 +4098,0,0.222044,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,5.709,5.931,0,5.329052,5.8,4.5 +27320,0,0.130037,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.120892,0.15,4 +25154,0,0.100787,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.418888,0.15,4 +3566,0,0.255235,2,2,1,2,3,,4,3,Highland,Rd,648906,13.923,14.178,0,6.125648,3.7,5 +1705,0,0.510769,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,1.95,2.46,0,12.258462,4.5,4.5 +25146,0,0.428698,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.288749,0.15,4 +3529,0,0.364461,2,2,1,2,3,,4,3,Highland,Rd,648906,14.548,14.912,0,8.747075,3.7,5 +4096,0,0.506777,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,6.309,6.816,0,12.162648,5.8,4.5 +4813,0,0.504495,1,1,0,2,4,,4,3,Airport,Rd,696506,0.503,1.007,0,12.107886,4.5,4.5 +25150,0,0.463461,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.123067,0.15,4 +25333,0,0.066636,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.599275,0.15,4 +3523,0,0.10421,2,2,1,2,3,,4,3,Highland,Rd,648906,14.912,15.016,0,2.501051,3.7,5 +721,0,0.960947,1,1,0,2,4,,4,3,Cass Elizabeth,Rd,630806,0.484,1.445,0,23.062729,4.5,4.5 +25136,0,0.518952,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.454838,0.15,4 +25271,0,0.569292,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.663011,0.15,4 +20950,0,0.827954,1,1,0,2,5,,4,3,Parkway,St,4412689,0,0.828,0,19.870907,5.8,4.5 +1695,0,0.164127,1,1,0,2,4,,4,3,Cass Elizabeth,Rd,630806,1.445,1.609,0,3.939049,4.5,4.5 +595,0,0.557794,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,3.526,4.083,0,13.387048,3.7,5 +3478,0,0.568435,2,2,1,2,3,,4,3,Highland,Rd,648906,15.554,16.122,0,13.642436,3.7,5 +4085,0,0.180184,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,7.563,7.743,0,4.324425,5.8,4.5 +4153,0,0.63004,1,1,0,2,4,,4,3,Crescent Lake,Rd,699308,0,0.63,0,15.120953,4.5,4.5 +25137,0,0.549822,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.195732,0.15,4 +25156,0,0.262061,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.289461,0.15,4 +25272,0,0.418489,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.043732,0.15,4 +25273,0,0.601649,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.439583,0.15,4 +318,0,0.218155,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,3.308,3.526,0,5.235708,4.5,4.5 +1285,0,0.507922,1,1,0,2,3,,4,3,Cooley Lake,Rd,630603,3.543,4.05,0,12.190128,3.7,5 +830,0,0.17918,1,1,0,2,3,,4,3,Cooley Lake,Rd,630603,4.05,4.23,0,4.300309,3.7,5 +780,0,0.2188,1,1,0,2,4,,4,3,Elizabeth Lake,Rd,630906,3.089,3.308,0,5.251208,4.5,4.5 +4152,0,0.482584,1,1,0,2,4,,4,3,Crescent Lake,Rd,699308,0.63,1.112,0,11.582019,4.5,4.5 +25158,0,0.187725,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.505395,0.15,4 +4087,0,0.248117,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,7.315,7.563,0,5.954808,5.8,4.5 +4151,0,0.172662,1,1,0,2,4,,4,3,Crescent Lake,Rd,699308,1.112,1.285,0,4.143894,4.5,4.5 +2127,0,0.091266,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,4.083,4.174,0,2.190383,3.7,5 +25248,0,0.480024,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.520578,0.15,4 +25269,0,0.508126,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.195036,0.15,4 +3452,0,0.49389,2,2,1,2,3,,4,3,Highland,Rd,648906,16.308,16.802,0,11.853353,3.7,5 +3455,0,0.186325,2,2,1,2,3,,4,3,Highland,Rd,648906,16.122,16.308,0,4.471803,3.7,5 +4079,0,0.549721,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,7.96,8.51,0,13.193305,4.5,4.5 +4083,0,0.217114,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,7.743,7.96,0,5.210727,5.8,4.5 +3451,0,0.193921,2,2,1,2,3,,4,3,Highland,Rd,648906,16.802,16.996,0,4.654114,3.7,5 +25138,0,0.304436,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.306469,0.15,4 +25139,0,0.203553,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.885272,0.15,4 +2454,0,0.221764,1,1,0,2,4,,4,3,Maybee,Rd,653405,0.901,1.123,0,5.32234,4.5,4.5 +3259,0,0.536343,1,1,0,2,4,,4,3,Airport,Rd,653108,0,0.536,0,12.872231,4.5,4.5 +3941,0,0.408194,2,2,1,2,3,,4,3,Dixie,Hwy,689103,4.253,4.661,0,9.796656,3.7,5 +4442,0,0.187013,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,0.888,1.075,0,4.48832,4.5,4.5 +4610,0,0.51166,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,6.848,7.36,0,12.279835,3.7,5 +4732,0,0.182055,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,2.41,2.592,0,4.369322,4.5,4.5 +24898,0,0.471397,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.313528,0.15,4 +25159,0,0.568676,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.648224,0.15,4 +25161,0,0.52223,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.533516,0.15,4 +25165,0,0.33474,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.033767,0.15,4 +25171,0,0.79849,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.16375,0.15,4 +25338,0,1.037138,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.891312,0.15,4 +27294,0,0.657731,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.785532,0.15,4 +27319,0,0.501078,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.025882,0.15,4 +4619,0,0.18549,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,6.117,6.303,0,4.451769,3.7,5 +4754,0,0.495927,1,1,0,2,5,,4,3,Hatchery,Rd,4462999,1.366,1.862,0,11.902247,5.8,4.5 +4802,0,0.543267,1,1,0,2,4,,4,3,Airport,Rd,696506,2.015,2.558,0,13.038418,4.5,4.5 +25163,0,0.662152,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.891642,0.15,4 +26066,0,0.703124,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.874971,0.15,4 +27308,0,0.538868,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.932832,0.15,4 +27310,0,0.674191,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.180595,0.15,4 +25149,0,0.323369,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.760852,0.15,4 +27315,0,0.521413,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.513901,0.15,4 +4757,0,0.07764,1,1,0,2,5,,4,3,Hatchery,Rd,4462999,1.289,1.366,0,1.863372,5.8,4.5 +4620,0,0.332367,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,5.785,6.117,0,7.976802,3.7,5 +4621,0,0.55687,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,5.228,5.785,0,13.364868,3.7,5 +4734,0,0.387842,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,2.022,2.41,0,9.308205,4.5,4.5 +4803,0,0.503116,1,1,0,2,4,,4,3,Airport,Rd,696506,1.512,2.015,0,12.074794,4.5,4.5 +27316,0,0.502395,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.057474,0.15,4 +27317,0,0.608861,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.612673,0.15,4 +4747,0,0.160373,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,1.862,2.022,0,3.848953,4.5,4.5 +4613,0,0.284059,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,6.38,6.664,0,6.817425,3.7,5 +4794,0,0.376303,1,1,0,2,4,,4,3,Airport,Rd,696506,2.663,3.039,0,9.031281,4.5,4.5 +25162,0,0.429138,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.299311,0.15,4 +27333,0,0.288626,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.927022,0.15,4 +4801,0,0.105076,1,1,0,2,4,,4,3,Airport,Rd,696506,2.558,2.663,0,2.521825,4.5,4.5 +4618,0,0.076973,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,6.303,6.38,0,1.84736,3.7,5 +4611,0,0.184844,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,6.664,6.848,0,4.436249,3.7,5 +3170,0,0.628294,1,1,0,2,4,,4,3,Andersonville,Rd,650409,1.423,2.051,0,15.079063,4.5,4.5 +3423,0,0.901606,1,1,0,2,4,,4,3,Maybee,Rd,653405,0,0.901,0,21.638552,4.5,4.5 +3606,0,0.48121,2,2,1,2,3,,4,3,Dixie,Hwy,689103,2.722,3.203,0,11.549041,3.7,5 +25336,0,1.011554,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.277299,0.15,4 +27338,0,0.318902,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.653652,0.15,4 +3480,0,0.173489,1,1,0,2,4,,4,3,Andersonville,Rd,650409,1.25,1.423,0,4.163733,4.5,4.5 +27340,0,0.476688,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.44051,0.15,4 +1228,0,0.381178,2,2,1,2,3,,4,3,Ortonville,Rd,627809,0,0.381,0,9.148271,3.7,5 +3608,0,0.136597,2,2,1,2,3,,4,3,Dixie,Hwy,689103,2.348,2.485,0,3.278338,3.7,5 +3607,0,0.237395,2,2,1,2,3,,4,3,Dixie,Hwy,689103,2.485,2.722,0,5.697482,3.7,5 +3605,0,0.611636,2,2,1,2,3,,4,3,Dixie,Hwy,689103,3.203,3.815,0,14.679261,3.7,5 +5096,0,0.256425,2,2,1,2,3,,4,3,Dixie,Hwy,689103,3.997,4.253,0,6.154189,3.7,5 +26968,0,0.59449,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.267754,0.15,4 +3151,0,0.294487,1,1,1,2,4,,4,3,Andersonville,Rd,650409,2.051,2.346,0,7.06768,4.5,4.5 +2590,0,0.220003,1,1,0,2,4,,4,3,Airport,Rd,653108,0.536,0.756,0,5.280083,4.5,4.5 +3604,0,0.182082,2,2,1,2,3,,4,3,Dixie,Hwy,689103,3.815,3.997,0,4.369956,3.7,5 +26969,0,0.505898,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.141542,0.15,4 +4164,0,0.228001,1,1,0,2,5,,4,3,Frembes,Rd,698604,0.521,0.749,0,5.472014,5.8,4.5 +4170,0,0.374159,1,1,0,2,5,,4,3,Frembes,Rd,698604,0,0.374,0,8.979808,5.8,4.5 +4685,0,0.404243,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,3.156,3.56,0,9.70183,4.5,4.5 +4778,0,0.145063,2,2,1,2,3,,4,3,Walton,Blvd,696509,0.262,0.407,0,3.481506,3.7,5 +5054,0,0.159993,2,2,1,2,3,,4,3,Dixie,Hwy,689103,6.045,6.205,0,3.839836,3.7,5 +5062,0,0.218572,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.588,5.806,0,5.24573,3.7,5 +25167,0,0.376939,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.046532,0.15,4 +26128,0,0.232502,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.58005,0.15,4 +27334,0,0.439353,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.544468,0.15,4 +29755,0,0.167972,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.031322,0.15,4 +4144,0,0.503014,1,1,0,2,4,,4,3,Crescent Lake,Rd,699308,1.638,2.141,0,12.072328,4.5,4.5 +4689,0,0.289054,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,2.867,3.156,0,6.9373,4.5,4.5 +4717,0,0.274772,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,2.592,2.867,0,6.594527,4.5,4.5 +4134,0,0.16964,1,1,0,2,5,,4,3,Floradale,Rd,700007,0,0.17,0,4.07136,5.8,4.5 +4606,0,0.106814,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,7.401,7.507,0,2.563542,3.7,5 +5078,0,0.1669,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.304,5.471,0,4.005603,3.7,5 +5092,0,0.500231,2,2,1,2,3,,4,3,Dixie,Hwy,689103,4.661,5.161,0,12.005533,3.7,5 +19598,1,0.080235,1,0,0,1,3,RSF,4,3,Dixie/Williams Lake Connector,,1915507,0,0.08,0,,3.7,5 +25170,0,0.336573,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.077748,0.15,4 +27336,0,0.257141,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.171391,0.15,4 +4608,0,0.040749,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,7.36,7.401,0,0.977967,3.7,5 +27337,0,0.240653,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.775682,0.15,4 +4169,0,0.147279,1,1,0,2,5,,4,3,Frembes,Rd,698604,0.374,0.521,0,3.534699,5.8,4.5 +5075,0,0.116426,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.471,5.588,0,2.794232,3.7,5 +4792,0,0.178703,2,2,1,2,3,,4,3,Walton,Blvd,696509,0,0.179,0,4.288875,3.7,5 +25169,0,0.3318,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.96319,0.15,4 +5082,0,0.057084,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.247,5.304,0,1.370005,3.7,5 +5090,0,0.086154,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.161,5.247,0,2.067688,3.7,5 +4789,0,0.082954,2,2,1,2,3,,4,3,Walton,Blvd,696509,0.179,0.262,0,1.990905,3.7,5 +26143,0,0.605396,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.529493,0.15,4 +4684,0,0.24769,1,1,0,2,4,,4,3,Hatchery,Rd,4462999,3.56,3.808,0,5.944562,4.5,4.5 +4155,0,0.177549,1,1,0,2,5,,4,3,Frembes,Rd,698604,0.982,1.159,0,4.261182,5.8,4.5 +4445,0,0.293196,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,0.287,0.58,0,7.036697,4.5,4.5 +4158,0,0.232726,1,1,0,2,5,,4,3,Frembes,Rd,698604,0.749,0.982,0,5.585417,5.8,4.5 +4461,0,0.250932,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,0,0.251,0,6.022378,4.5,4.5 +5059,0,0.238649,2,2,1,2,3,,4,3,Dixie,Hwy,689103,5.806,6.045,0,5.72758,3.7,5 +26130,0,0.219582,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.26996,0.15,4 +27342,0,0.018186,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,0.436466,0.15,4 +4457,0,0.036467,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,0.251,0.287,0,0.875204,4.5,4.5 +4443,0,0.307295,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,0.58,0.888,0,7.375091,4.5,4.5 +4775,0,0.222134,2,2,1,2,3,,4,3,Walton,Blvd,696509,0.407,0.629,0,5.331204,3.7,5 +2658,0,0.346633,1,1,0,2,4,,4,3,Maybee,Rd,653405,1.869,2.216,0,8.319197,4.5,4.5 +4362,0,0.50407,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,2.349,2.853,0,12.097681,4.5,4.5 +4368,0,0.328821,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,2.02,2.349,0,7.891713,4.5,4.5 +26054,0,0.625248,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.005942,0.15,4 +26970,0,0.273061,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.553468,0.15,4 +26973,0,0.397966,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.55118,0.15,4 +30182,0,0.851026,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.424628,0.15,4 +2677,0,0.465528,1,1,0,2,4,,4,3,Maybee,Rd,653405,1.404,1.869,0,11.17266,4.5,4.5 +4361,0,0.03717,2,2,1,2,4,,4,3,Sashabaw,Rd,697309,2.853,2.89,0,0.892071,4.5,4.5 +27309,0,0.541989,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.007728,0.15,4 +3281,0,0.280953,1,1,0,2,4,,4,3,Maybee,Rd,653405,1.123,1.404,0,6.742865,4.5,4.5 +4419,0,0.721025,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,1.3,2.02,0,17.304603,4.5,4.5 +4432,0,0.225014,1,1,0,2,4,,4,3,Sashabaw,Rd,697309,1.075,1.3,0,5.40033,4.5,4.5 +771,0,0.332449,1,1,0,2,3,,5,3,Ortonville,Rd,627809,10.096,10.428,0,7.978766,1.7,4 +1873,-1,5.06942,0,3,0,1,1,,5,3,S I 75,,646106,34.021,39.088,0,,1.02,7 +1999,-1,3.672303,0,3,0,1,1,,5,3,S I 75,,646106,42.577,46.248,0,,1.02,7 +2254,1,4.080061,3,0,0,1,1,,5,3,N I 75,,647308,42.121,46.2,0,,1.02,7 +2258,1,4.77457,3,0,0,1,1,,5,3,N I 75,,647308,34.081,38.854,0,,1.02,7 +2412,0,1.238017,1,1,0,2,5,GRV,5,3,Groveland,,646602,3.769,5.006,0,29.712401,5.55,5 +2414,0,0.412865,1,1,0,2,5,GRV,5,3,Groveland,,646602,2.555,2.968,0,9.908758,5.55,5 +2417,0,2.054534,1,1,0,2,5,GRV,5,3,Groveland,,646602,0,2.054,0,49.308815,5.55,5 +2448,0,0.135554,2,2,0,2,4,,5,3,Dixie,Hwy,651802,10.648,10.783,0,3.253297,3,4 +2511,0,1.555426,1,1,0,2,5,GRV,5,3,Belford,Rd,649602,3.344,4.899,0,37.330215,5.55,5 +2592,0,0.939054,1,1,0,2,5,,5,3,Oak Hill,Rd,651801,0.766,1.705,0,22.537296,3.7,5 +2613,0,0.588484,2,2,0,2,4,,5,3,Dixie,Hwy,651802,2.95,3.538,0,14.123607,3,4 +2633,0,1.239489,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,10.303,11.542,0,29.747746,3,4 +2689,0,1.256312,1,1,0,2,5,GRV,5,3,Rattalee Lake,Rd,649405,7.191,8.447,0,30.151497,5.55,5 +2700,0,0.67377,1,1,0,2,5,,4,3,Davisburg,Rd,649404,7.224,7.898,0,16.17049,5.8,4.5 +3017,0,0.949407,1,1,0,2,5,GRV,5,3,Hadley,Rd,654204,6.112,7.061,0,22.785756,5.55,5 +3032,0,0.520391,1,1,0,2,5,,5,3,Andersonville,Rd,679309,2.697,3.217,0,12.489372,3.7,5 +4237,0,0.585127,1,1,0,2,5,GRV,5,3,Sashabaw,Rd,697309,13.46,14.045,0,14.043056,5.55,5 +21043,0,1.952213,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,0.682,2.633,0,46.853107,3,4 +25320,0,1.420885,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.101248,0.15,4 +26085,0,1.451517,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.836405,0.15,4 +26923,0,0.869525,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.868605,0.15,4 +27349,0,1.657749,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,39.785972,0.15,4 +27350,0,0.347073,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,8.329742,0.15,4 +27353,0,0.973199,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.356782,0.15,4 +309,0,0.980939,1,1,0,2,5,GRV,5,3,Wildwood,Rd,646202,0,0.981,0,23.542527,5.55,5 +909,-1,3.020203,0,3,0,1,1,,5,3,S I 75,,646106,39.318,42.337,0,,1.02,7 +2256,1,2.749679,3,0,0,1,1,,5,3,N I 75,,647308,39.094,41.843,0,,1.02,7 +2419,0,1.077592,1,1,0,2,5,,5,3,Tripp,Rd,646509,0,1.077,0,25.862217,3.7,5 +2530,0,1.239014,2,2,0,2,4,,5,3,Dixie,Hwy,651802,7.072,8.31,0,29.73634,3,4 +2553,0,1.305232,2,2,0,2,4,,5,3,Dixie,Hwy,651802,4.328,5.633,0,31.325566,3,4 +2578,0,1.140617,1,1,0,2,5,,5,3,Holly,Rd,651609,1.791,2.932,0,27.374811,3.7,5 +2646,0,0.935696,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,6.385,7.321,0,22.456713,3,4 +2691,0,2.334665,1,1,0,2,6,GRV,5,3,Rattalee Lake,Rd,649405,3.522,5.856,0,56.031961,5.55,5 +2709,0,1.369202,1,1,0,2,5,,5,3,Davisburg,Rd,649404,2.771,4.14,0,32.860854,3.7,5 +3557,0,0.248563,1,1,0,2,5,,4,3,East,,650907,0,0.249,0,5.965521,5.8,4.5 +27346,0,0.89609,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.506155,0.15,4 +27372,0,0.816698,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.600752,0.15,4 +2692,0,1.277487,1,1,0,2,6,GRV,5,3,Rattalee Lake,Rd,649405,2.245,3.522,0,30.659683,5.55,5 +2710,0,0.765116,1,1,0,2,5,,5,3,Davisburg,Rd,649404,2.006,2.771,0,18.362788,3.7,5 +3116,0,1.032021,1,1,0,2,4,,5,3,Milford,Rd,679302,1.588,2.62,0,24.768497,3,4 +3270,0,1.792009,1,1,0,2,5,,5,3,Holly,Rd,651609,0,1.791,0,43.008216,3.7,5 +26925,0,0.325317,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,7.807607,0.15,4 +26927,0,1.103052,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.473251,0.15,4 +2712,0,1.252255,1,1,0,2,5,,5,3,Davisburg,Rd,649404,0.754,2.006,0,30.054113,3.7,5 +3454,0,1.588458,1,1,0,2,4,,5,3,Milford,Rd,679302,0,1.588,0,38.122985,3,4 +2829,0,0.24004,1,1,0,2,4,,5,3,Milford,Rd,660907,0,0.24,0,5.760968,3,4 +26926,0,0.975083,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.401998,0.15,4 +2694,0,0.344187,1,1,0,2,6,GRV,5,3,Rattalee Lake,Rd,649405,1.901,2.245,0,8.260494,5.55,5 +3592,0,0.251954,1,1,0,2,5,,4,3,Maple,,650805,0.606,0.858,0,6.046889,5.8,4.5 +26929,0,0.256599,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.158366,0.15,4 +2653,0,1.969961,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,4.175,6.144,0,47.279057,3,4 +26083,0,2.094671,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,50.272116,0.15,4 +2654,0,0.610087,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,3.565,4.175,0,14.642077,3,4 +3584,0,0.372768,1,1,0,2,5,,4,3,Elm,,650808,0.37,0.743,0,8.946442,5.8,4.5 +2551,0,0.621881,1,1,0,2,5,GRV,5,3,Quick,Rd,649505,1.298,1.92,0,14.925141,5.55,5 +3353,0,0.050631,1,1,0,2,5,,5,3,Fagan,Rd,651504,0,0.051,0,1.215143,3.7,5 +26913,0,1.095695,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.296675,0.15,4 +2255,1,0.278456,3,0,0,1,1,,5,3,N I 75,,647308,41.843,42.121,0,,1.02,7 +3286,1,0.3186,1,0,0,1,1,ROF,5,3,N I 75/Grange Hall,RAMP,651605,0,0.319,0,,2.24,5 +27369,0,1.357186,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.572469,0.15,4 +2428,1,0.181592,1,0,0,1,1,RON,5,3,Grange Hall/N I 75,RAMP,646205,0,0.182,0,,1.09,4 +2652,0,0.22855,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,6.144,6.373,0,5.485189,3,4 +3330,1,0.187106,1,0,0,1,1,RON,5,3,Grange Hall/S I 75,RAMP,651604,0,0.187,0,,1.09,4 +3338,1,0.296783,1,0,0,1,1,ROF,5,3,S I 75/Grange Hall,RAMP,651603,0,0.297,0,,2.24,5 +448,-1,0.239702,0,3,0,1,1,,5,3,S I 75,,646106,42.337,42.577,0,,1.02,7 +2651,0,0.012608,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,6.373,6.385,0,0.302582,3,4 +2496,0,1.319743,2,2,0,2,4,,5,3,Dixie,Hwy,651802,9.328,10.648,0,31.673839,3,4 +3598,0,1.018236,2,2,0,2,4,,5,3,Dixie,Hwy,651802,8.31,9.328,0,24.437665,3,4 +2533,0,0.51441,1,1,0,2,5,,5,3,Holly,Rd,651609,4.501,5.015,0,12.345836,3.7,5 +2690,0,0.781674,1,1,0,2,5,GRV,5,3,Rattalee Lake,Rd,649405,5.856,6.637,0,18.760168,5.55,5 +2701,0,2.500368,1,1,0,2,5,,5,3,Davisburg,Rd,649404,4.725,7.224,0,60.008829,3.7,5 +3113,0,2.032373,1,1,0,2,5,,5,3,Andersonville,Rd,679309,0.666,2.697,0,48.776957,3.7,5 +25318,0,1.095022,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.28053,0.15,4 +29801,0,1.108105,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.594516,0.15,4 +29802,0,1.189291,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,28.542978,0.15,4 +2708,0,0.578882,1,1,0,2,5,,5,3,Davisburg,Rd,649404,4.14,4.718,0,13.893157,3.7,5 +3453,0,0.665757,1,1,0,2,5,,5,3,Andersonville,Rd,679309,0,0.666,0,15.978171,3.7,5 +2703,0,0.006324,1,1,0,2,5,,5,3,Davisburg,Rd,649404,4.718,4.725,0,0.151767,3.7,5 +2257,1,0.240014,3,0,0,1,1,,5,3,N I 75,,647308,38.854,39.094,0,,1.02,7 +2950,1,0.231327,1,0,0,1,1,ROF,5,3,N I 75/Holly,RAMP,651709,0,0.231,0,,2.24,5 +3201,0,1.124793,1,1,0,2,5,,5,3,Holly,Rd,651609,2.932,4.056,0,26.995042,3.7,5 +26956,0,1.467947,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.230734,0.15,4 +27376,0,0.325919,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,7.822066,0.15,4 +1366,-1,0.229798,0,3,0,1,1,,5,3,S I 75,,646106,39.088,39.318,0,,1.02,7 +3058,1,0.373593,1,0,0,1,1,RON,5,3,Holly/S I 75,RAMP,651704,0,0.373,0,,1.09,4 +3194,0,0.27702,1,1,0,2,5,,5,3,Holly,Rd,651609,4.066,4.343,0,6.648469,3.7,5 +3199,0,0.009697,1,1,0,2,5,,5,3,Holly,Rd,651609,4.056,4.066,0,0.232735,3.7,5 +3042,1,0.227699,1,0,0,1,1,ROF,5,3,S I 75/Holly,RAMP,651705,0,0.228,0,,2.24,5 +3117,0,0.148609,1,1,0,2,5,,5,3,Holly,Rd,651609,4.352,4.501,0,3.566613,3.7,5 +2975,1,0.138904,1,0,0,1,1,RON,5,3,Holly/N I 75,RAMP,651708,0,0.139,0,,1.09,4 +3134,0,0.00958,1,1,0,2,5,,5,3,Holly,Rd,651609,4.343,4.352,0,0.229914,3.7,5 +2926,0,0.765999,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,0,0.766,0,18.383965,5.55,5 +3081,0,0.996652,1,1,0,2,5,,5,3,Holly,Rd,651609,5.015,6.011,0,23.91964,3.7,5 +3318,0,0.103032,2,2,0,2,4,,5,3,Dixie,Hwy,651802,4.225,4.328,0,2.472774,3,4 +27361,0,0.415981,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,9.983555,0.15,4 +3382,0,0.687052,2,2,0,2,4,,5,3,Dixie,Hwy,651802,3.538,4.225,0,16.489245,3,4 +2413,0,0.70424,1,1,0,2,5,GRV,5,3,Groveland,,646602,3.065,3.769,0,16.901771,5.55,5 +2427,0,0.76519,1,1,0,2,5,,5,3,McGinnis,Rd,646403,0,0.765,0,18.364553,3.7,5 +2432,0,0.997651,1,1,0,2,5,GRV,5,3,Wildwood,Rd,646202,2.048,3.046,0,23.943616,5.55,5 +2637,0,1.254455,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,8.8,10.054,0,30.106914,3,4 +2641,0,0.983494,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,7.817,8.8,0,23.603863,3,4 +27345,0,1.5665,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.595996,0.15,4 +27356,0,1.44187,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.604888,0.15,4 +27373,0,1.525748,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.617949,0.15,4 +2537,0,1.439444,2,2,0,2,4,,5,3,Dixie,Hwy,651802,5.633,7.072,0,34.546658,3,4 +2643,0,0.382522,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,7.434,7.817,0,9.180539,3,4 +27374,0,0.964033,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.136786,0.15,4 +2645,0,0.11345,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,7.321,7.434,0,2.722803,3,4 +27354,0,0.596676,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.320231,0.15,4 +27348,0,1.127974,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.071383,0.15,4 +21969,0,0.073673,1,1,0,2,5,GRV,5,3,Groveland,,4412746,0,0.074,0,1.768148,5.55,5 +2433,0,1.029567,1,1,0,2,5,GRV,5,3,Wildwood,Rd,646202,1.019,2.048,0,24.70962,5.55,5 +2426,0,0.790807,1,1,0,2,7,GRV,5,3,McGinnis,Rd,646403,0.765,1.556,0,18.979371,5.55,5 +2434,0,0.03835,1,1,0,2,5,GRV,5,3,Wildwood,Rd,646202,0.981,1.019,0,0.920408,5.55,5 +2431,0,1.001003,1,1,0,2,5,GRV,5,3,Barron,Rd,646204,0,1.001,0,24.024081,5.55,5 +2635,0,0.249646,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,10.054,10.303,0,5.991505,3,4 +2429,0,0.763049,1,1,0,2,5,GRV,5,3,Barron,Rd,646204,1.231,1.994,0,18.313173,5.55,5 +2430,0,0.23078,1,1,0,2,5,GRV,5,3,Barron,Rd,646204,1.001,1.231,0,5.538715,5.55,5 +2478,-1,0.448382,0,2,0,2,4,DIV,5,3,Dixie,Hwy,651802,11.201,11.649,0,10.761168,3,4 +3384,1,0.489863,1,0,0,1,1,RON,5,3,Dixie/N I 75,RAMP,651407,0,0.49,0,,1.09,4 +20099,1,0.421791,2,0,0,2,3,DIV,5,3,Dixie,Hwy,4400697,0.202,0.623,0,10.122981,1.7,4 +24576,-1,0.436147,0,2,0,2,3,DIV,,3,Dixie,Hwy,0,0,0,0,10.467517,1.7,4 +24579,1,0.360793,2,0,0,2,3,DIV,,3,Dixie,Hwy,0,0,0,0,8.659024,1.7,4 +34114,1,1.013753,3,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34115,-1,1.320984,0,3,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +24574,-1,0.332909,0,3,0,1,1,,,3,S I 75,,0,0,0,0,,1.02,7 +24575,1,0.421581,1,0,0,1,1,ROF,,3,S I 75/Dixie,RAMP,0,0,0,0,,2.24,5 +770,-1,0.349143,0,3,0,1,1,,5,3,S I 75,,646106,46.248,46.597,0,,1.02,7 +2253,1,0.207842,3,0,0,1,1,,5,3,N I 75,,647308,46.2,46.408,0,,1.02,7 +2420,1,0.219262,1,0,0,1,1,RON,5,3,Dixie/S I 75,RAMP,646503,0,0.219,0,,1.09,4 +3462,-1,0.17491,0,2,0,2,3,DIV,5,3,Dixie,Hwy,651802,11.649,11.824,0,4.197841,1.7,4 +3488,-1,0.094545,0,2,0,2,3,DIV,5,3,Dixie,Hwy,651802,11.824,11.919,0,2.269089,1.7,4 +10862,1,0.251492,1,0,0,1,1,ROF,5,3,S I 75/Dixie,RAMP,1503207,0.422,0.673,0,,2.24,5 +19215,1,0.186075,1,0,0,1,1,ROF,5,3,N I 75/Dixie,RAMP,1813110,0,0.186,0,,2.24,5 +24577,1,0.093902,1,0,0,1,1,ROF,,3,N I 75/Dixie,RAMP,0,0,0,0,,2.24,5 +24578,1,0.097984,2,0,0,2,3,DIV,,3,Dixie,Hwy,0,0,0,0,2.351605,1.7,4 +24580,1,0.078229,3,0,0,1,1,,,3,N I 75,,0,0,0,0,,1.02,7 +24581,1,0.068167,1,0,0,1,1,RON,,3,Dixie/N I 75,RAMP,0,0,0,0,,1.09,4 +34116,0,0.674801,2,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +2483,0,0.418049,2,2,0,2,4,,5,3,Dixie,Hwy,651802,10.783,11.201,0,10.033177,3,4 +20296,1,0.201534,2,0,0,2,4,DIV,5,3,Dixie,Hwy,4400697,0,0.202,0,4.836806,3,4 +34113,0,1.0094,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +2416,0,0.449081,1,1,0,2,5,GRV,5,3,Groveland,,646602,2.054,2.503,0,10.777946,5.55,5 +19977,0,0.52118,1,1,0,2,6,GRV,5,3,Van,Rd,3251568,0,0.521,0,12.508311,5.55,5 +2415,0,0.051981,1,1,0,2,5,GRV,5,3,Groveland,,646602,2.503,2.555,0,1.247538,5.55,5 +2418,0,0.037812,1,1,0,2,6,GRV,5,3,Van,Rd,646510,0,0.038,0,0.907494,5.55,5 +20957,0,0.036315,1,1,0,2,6,GRV,5,3,Groveland/Van Cutoff,,4411382,0,0.036,0,0.871567,5.55,5 +339,0,1.468355,1,1,0,2,3,,5,3,Ortonville,Rd,627809,6.271,7.738,0,35.24053,1.7,4 +1261,0,0.757599,1,1,0,2,3,,5,3,Ortonville,Rd,627809,5.022,5.779,0,18.182386,1.7,4 +1998,-1,1.227131,0,3,0,1,1,,4,3,S I 75,,646106,32.334,33.561,0,,0.8,7.5 +2261,1,1.372107,3,0,0,1,1,,4,3,N I 75,,647308,32.3,33.672,0,,0.8,7.5 +2670,0,0.500521,1,1,0,2,5,GRV,5,3,Rattalee Lake,Rd,649405,11.642,12.142,0,12.012511,5.55,5 +2791,0,0.499141,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,5.338,5.837,0,11.979372,5.55,5 +2835,0,2.156512,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,3.182,5.338,0,51.756289,5.55,5 +2934,0,1.477851,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,1.705,3.182,0,35.468425,5.55,5 +4245,0,1.004682,1,1,0,2,4,,5,3,Sashabaw,Rd,697309,8.305,9.309,0,24.11237,3,4 +4962,0,1.356108,1,1,0,2,5,,4,3,Holcomb,Rd,689110,1.301,2.657,0,32.546602,5.8,4.5 +25322,0,1.048718,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.169229,0.15,4 +25328,0,0.91095,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.862793,0.15,4 +25330,0,0.906695,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.760674,0.15,4 +25331,0,0.580856,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,13.940552,0.15,4 +26957,0,0.612442,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.698613,0.15,4 +29784,0,1.505964,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.143128,0.15,4 +2625,0,1.124455,2,2,0,2,4,,5,3,Dixie,Hwy,651802,1.826,2.95,0,26.986919,3,4 +2676,0,1.733175,1,1,0,2,5,GRV,5,3,Rattalee Lake,Rd,649405,9.909,11.642,0,41.59621,5.55,5 +2928,0,1.064389,2,2,1,2,4,,4,3,Dixie,Hwy,651802,0,1.064,0,25.545344,4.5,4.5 +4964,0,1.301309,1,1,0,2,5,,5,3,Holcomb,Rd,689110,0,1.301,0,31.231413,3.7,5 +24593,0,1.886308,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,45.271397,0.15,4 +27364,0,1.109921,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.638098,0.15,4 +27534,0,1.379204,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.100885,0.15,4 +2698,0,0.96678,1,1,0,2,5,,4,3,Davisburg,Rd,649404,7.898,8.864,0,23.202724,5.8,4.5 +3500,0,0.762004,2,2,1,2,4,,4,3,Dixie,Hwy,651802,1.064,1.826,0,18.288095,4.5,4.5 +3623,0,0.171942,1,1,0,2,5,,5,3,Big Lake,Rd,688909,3.411,3.583,0,4.126615,3.7,5 +27101,0,0.730041,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.52099,0.15,4 +27367,0,0.084312,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.023479,0.15,4 +21385,0,0.164956,1,1,0,2,5,,4,3,Bridge Lake,Rd,4414257,0.416,0.581,0,3.958934,5.8,4.5 +2679,0,1.463177,1,1,0,2,5,GRV,5,3,Rattalee Lake,Rd,649405,8.447,9.909,0,35.116239,5.55,5 +27362,0,1.347354,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.336503,0.15,4 +27363,0,0.366594,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,8.798245,0.15,4 +1486,-1,0.279925,0,3,0,1,1,,5,3,S I 75,,646106,33.561,33.841,0,,1.02,7 +2260,1,0.139468,3,0,0,1,1,,4,3,N I 75,,647308,33.672,33.811,0,,0.8,7.5 +3614,0,0.150655,2,2,1,2,3,,5,3,Dixie,Hwy,689103,0.428,0.579,0,3.615708,1.7,4 +3616,0,0.130499,2,2,1,2,3,,5,3,Dixie,Hwy,689103,0.201,0.331,0,3.131966,1.7,4 +4129,1,0.204567,1,0,0,1,1,ROF,4,3,N I 75/Dixie,RAMP,700202,0,0.205,0,,2.24,5 +4135,1,0.251447,1,0,0,1,1,ROF,5,3,S I 75/Dixie,RAMP,700001,0,0.251,0,,2.24,5 +4137,1,0.381454,1,0,0,1,1,RON,5,3,N Dixie/S I 75,RAMP,699910,0,0.381,0,,1.09,4 +4141,1,0.134326,1,0,0,1,1,RON,5,3,N Dixie/N I 75,RAMP,699909,0,0.134,0,,1.09,4 +2259,1,0.270258,3,0,0,1,1,,4,3,N I 75,,647308,33.811,34.081,0,,0.8,7.5 +3618,0,0.149454,2,2,1,2,3,,4,3,Dixie,Hwy,689103,0,0.149,0,3.586902,3.7,5 +4122,1,0.217931,1,0,0,1,1,RON,4,3,S Dixie/N I 75,RAMP,700203,0,0.218,0,,1.09,4 +1011,-1,0.179954,0,3,0,1,1,,5,3,S I 75,,646106,33.841,34.021,0,,1.02,7 +3617,0,0.051187,2,2,1,2,3,,4,3,Dixie,Hwy,689103,0.149,0.201,0,1.228495,3.7,5 +4143,1,0.163392,1,0,0,1,1,RON,5,3,S Dixie/S I 75,RAMP,699908,0,0.163,0,,1.09,4 +3613,0,0.052906,2,2,1,2,3,,5,3,Dixie,Hwy,689103,0.579,0.632,0,1.269747,1.7,4 +3615,0,0.097547,2,2,1,2,3,,5,3,Dixie,Hwy,689103,0.331,0.428,0,2.341117,1.7,4 +25326,0,0.510913,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.261908,0.15,4 +1385,0,1.302241,1,1,0,2,3,,5,3,Ortonville,Rd,627809,7.767,9.069,0,31.253783,1.7,4 +2584,0,0.59394,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,13.709,14.303,0,14.254563,3,4 +25321,0,0.65422,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.701283,0.15,4 +27355,0,1.362584,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.702013,0.15,4 +27357,0,1.242282,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.814763,0.15,4 +2605,0,2.167217,1,1,0,2,4,,5,3,Grange Hall,Rd,649504,11.542,13.709,0,52.013208,3,4 +25329,0,1.669295,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,40.063076,0.15,4 +27351,0,1.447632,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,34.743178,0.15,4 +29783,0,1.413179,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.916291,0.15,4 +1901,0,0.028767,1,1,0,2,3,,5,3,Ortonville,Rd,627809,7.738,7.767,0,0.690413,1.7,4 +2686,0,0.10479,1,1,0,2,5,,4,3,Mill,,654508,0.382,0.486,0,2.514969,5.8,4.5 +21044,0,0.062433,1,1,0,2,4,,4,3,Oakwood,Rd,4410182,0.619,0.682,0,1.498383,4.5,4.5 +25324,0,0.169852,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.076448,0.15,4 +29787,0,0.126828,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.043862,0.15,4 +469,0,0.594834,1,1,1,2,3,,4,3,Ortonville,Rd,627809,9.097,9.691,0,14.276027,3.7,5 +3569,0,0.354316,1,1,0,2,5,,4,3,Mill,,654508,0,0.354,0,8.503589,5.8,4.5 +21045,0,0.61947,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,0,0.619,0,14.867276,3,4 +2014,0,0.40463,1,1,0,2,3,,5,3,Ortonville,Rd,627809,9.691,10.096,0,9.711129,1.7,4 +2805,0,0.517937,1,1,0,2,5,,4,3,South,St,654506,0.03,0.548,0,12.430477,5.8,4.5 +928,0,0.027578,1,1,1,2,3,,4,3,Ortonville,Rd,627809,9.069,9.097,0,0.661865,3.7,5 +3333,0,0.029692,1,1,0,2,5,,4,3,South,St,654506,0,0.03,0,0.712617,5.8,4.5 +20954,-1,0.020803,0,1,0,2,5,,4,3,Ortonville/South Cutoff,,4411913,0,0.021,0,0.499273,5.8,4.5 +3143,0,0.027368,1,1,0,2,5,,4,3,Mill,,654508,0.354,0.382,0,0.656839,5.8,4.5 +3585,0,0.099326,1,1,0,2,5,,4,3,South,St,654506,0.548,0.647,0,2.383834,5.8,4.5 +910,0,0.422613,1,1,0,2,5,,4,3,Church,St,627002,0.189,0.611,0,10.142718,5.8,4.5 +25323,0,0.074863,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.796723,0.15,4 +585,0,0.569345,1,1,0,2,4,,4,3,Waldon,Rd,627303,0.946,1.515,0,13.664274,4.5,4.5 +1517,0,1.007885,1,1,0,2,3,,5,3,Ortonville,Rd,627809,2.842,3.849,0,24.189237,1.7,4 +1997,-1,1.638517,0,3,0,1,1,,4,3,S I 75,,646106,30.058,31.696,0,,0.8,7.5 +2162,0,1.586314,1,1,0,2,4,,5,3,Clarkston,Rd,627307,0.996,2.582,0,38.071544,3,4 +2264,1,1.590196,3,0,0,1,1,,4,3,N I 75,,647308,30.072,31.662,0,,0.8,7.5 +2786,0,1.507717,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,5.837,7.344,0,36.185203,5.55,5 +4251,0,1.008506,1,1,0,2,4,,5,3,Sashabaw,Rd,697309,5.113,6.121,0,24.204148,3,4 +25334,0,0.952166,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.851974,0.15,4 +25335,0,1.706546,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,40.957114,0.15,4 +25339,0,0.710495,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.051884,0.15,4 +29481,0,1.495785,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.89884,0.15,4 +489,0,0.834482,1,1,0,2,4,,4,3,Clarkston,Rd,627307,0.162,0.996,0,20.027571,4.5,4.5 +1036,0,0.871188,1,1,0,2,4,,4,3,Waldon,Rd,627303,0.075,0.946,0,20.908512,4.5,4.5 +1940,0,0.093279,2,2,0,2,3,,4,3,Ortonville,Rd,627809,1.688,1.781,0,2.238706,3.7,5 +2445,1,0.343803,1,0,0,1,1,ROF,4,3,S I 75/M 15,RAMP,654501,0,0.344,0,,2.24,5 +2672,1,0.394599,1,0,0,1,1,RON,4,3,N M 15/S I 75,RAMP,653709,0,0.395,0,,1.09,4 +3322,1,0.259992,1,0,0,1,1,RON,4,3,S M 15/S I 75,RAMP,654502,0,0.26,0,,1.09,4 +470,0,0.270904,1,1,0,2,3,,4,3,Ortonville,Rd,627809,1.067,1.338,0,6.501689,3.7,5 +948,0,0.161498,1,1,0,2,4,,4,3,Clarkston,Rd,627307,0,0.162,0,3.875945,4.5,4.5 +1409,0,0.15691,1,1,0,2,5,,4,3,Washington,,627305,0,0.157,0,3.765829,5.8,4.5 +25341,0,0.125244,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.005865,0.15,4 +25343,0,0.308405,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.401715,0.15,4 +26964,0,0.192615,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.622763,0.15,4 +26966,0,0.354853,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.516466,0.15,4 +4941,0,0.159958,1,1,0,2,5,,4,3,Holcomb,,689110,2.657,2.817,0,3.838984,5.8,4.5 +845,0,0.254272,1,1,0,2,3,,4,3,Ortonville,Rd,627809,1.338,1.592,0,6.102528,3.7,5 +383,0,0.095491,2,2,0,2,3,,4,3,Ortonville,Rd,627809,1.592,1.688,0,2.291781,3.7,5 +1386,0,0.09452,1,1,0,2,3,,4,3,Ortonville,Rd,627809,0.899,0.993,0,2.268487,3.7,5 +324,0,0.191076,1,1,0,2,3,,4,3,Ortonville,Rd,627809,0.708,0.899,0,4.585814,3.7,5 +1507,0,0.074565,1,1,0,2,4,,4,3,Waldon,Rd,627303,0,0.075,0,1.789564,4.5,4.5 +929,0,0.073814,1,1,0,2,3,,4,3,Ortonville,Rd,627809,0.993,1.067,0,1.771534,3.7,5 +25340,0,0.199523,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.788549,0.15,4 +480,0,0.214707,1,1,0,2,3,,5,3,Ortonville,Rd,627809,2.126,2.341,0,5.152974,1.7,4 +908,-1,0.369054,0,3,0,1,1,,4,3,S I 75,,646106,31.696,32.065,0,,0.8,7.5 +2262,1,0.34113,3,0,0,1,1,,4,3,N I 75,,647308,31.959,32.3,0,,0.8,7.5 +2798,1,0.253056,1,0,0,1,1,RON,5,3,N M 15/N I 75,RAMP,654503,0,0.253,0,,1.09,4 +3153,1,0.374624,1,0,0,1,1,ROF,5,3,N I 75/M 15,RAMP,654504,0,0.375,0,,2.24,5 +447,-1,0.268964,0,3,0,1,1,,4,3,S I 75,,646106,32.065,32.334,0,,0.8,7.5 +1443,0,0.221066,2,2,0,2,3,,5,3,Ortonville,Rd,627809,1.905,2.126,0,5.30558,1.7,4 +3256,1,0.482693,1,0,0,1,1,RON,5,3,S M 15/N I 75,RAMP,654505,0,0.483,0,,1.09,4 +1961,0,0.086661,2,2,0,2,3,,5,3,Ortonville,Rd,627809,1.819,1.905,0,2.079874,1.7,4 +406,0,0.037785,2,2,0,2,3,,4,3,Ortonville,Rd,627809,1.781,1.819,0,0.906831,3.7,5 +2028,0,0.501145,1,1,0,2,3,,5,3,Ortonville,Rd,627809,2.341,2.842,0,12.027469,1.7,4 +2263,1,0.297605,3,0,0,1,1,,4,3,N I 75,,647308,31.662,31.959,0,,0.8,7.5 +25337,0,0.10775,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.586004,0.15,4 +1756,0,1.172966,1,1,0,2,3,,5,3,Ortonville,Rd,627809,3.849,5.022,0,28.151184,1.7,4 +28558,0,1.195353,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,28.688467,0.15,4 +907,-1,0.178568,0,3,0,1,1,,4,3,S I 75,,646106,29.619,29.798,0,,0.8,7.5 +1655,0,0.501656,1,1,0,2,4,,5,3,Clarkston,Rd,627307,2.582,3.083,0,12.039732,3,4 +2265,1,0.30558,3,0,0,1,1,,4,3,N I 75,,647308,29.494,29.8,0,,0.8,7.5 +4112,1,0.349453,1,0,0,1,1,ROF,5,3,N I 75/N Sashabaw,RAMP,703102,0,0.349,0,,2.24,5 +4115,1,0.131033,1,0,0,1,1,RON,4,3,N Sashabaw/S I 75,RAMP,703010,0,0.131,0,,1.09,4 +4252,0,0.9382,2,1,0,2,4,,5,3,Sashabaw,Rd,697309,4.175,5.113,0,22.516809,3,4 +446,-1,0.260713,0,3,0,1,1,,4,3,S I 75,,646106,29.798,30.058,0,,0.8,7.5 +1656,1,0.364981,1,0,0,1,1,ROF,4,3,S I 75/Sashabaw,RAMP,627407,0,0.365,0,,2.24,5 +1767,0,0.499898,1,1,0,2,4,,4,3,Waldon,Rd,627303,1.515,2.014,0,11.99754,4.5,4.5 +4254,0,0.032719,2,2,1,2,4,,5,3,Sashabaw,Rd,697309,4.125,4.158,0,0.785245,3,4 +4270,0,0.178595,1,2,1,2,4,,4,3,Sashabaw,Rd,697309,3.946,4.125,0,4.286277,4.5,4.5 +19599,1,0.227052,1,0,0,1,1,RON,4,3,S Sashabaw/S I 75,RAMP,1849503,0,0.227,0,,1.09,4 +4306,0,0.071309,2,2,1,2,4,,4,3,Sashabaw,Rd,697309,3.858,3.93,0,1.711416,4.5,4.5 +4304,0,0.016739,1,2,1,2,4,,4,3,Sashabaw,Rd,697309,3.93,3.946,0,0.401724,4.5,4.5 +4113,1,0.270004,1,0,0,1,1,RON,5,3,Sashabaw/N I 75,RAMP,703101,0,0.27,0,,1.09,4 +2696,0,0.994818,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,7.367,8.361,0,23.875624,5.55,5 +4248,0,1.668163,1,1,0,2,4,,5,3,Sashabaw,Rd,697309,6.121,7.788,0,40.035922,3,4 +3300,0,0.023001,1,1,0,2,5,GRV,5,3,Oak Hill,Rd,651801,7.344,7.367,0,0.552031,5.55,5 +4246,0,0.516584,1,1,0,2,4,,5,3,Sashabaw,Rd,697309,7.788,8.305,0,12.398008,3,4 +2000,0,1.004506,1,1,0,2,4,,5,3,Seymour Lake,Rd,627107,0.55,1.554,0,24.10815,3,4 +2746,0,2.009825,1,1,0,2,5,GRV,5,3,Hadley,Rd,654204,2.657,4.666,0,48.2358,5.55,5 +29786,0,1.809946,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,43.438703,0.15,4 +449,0,0.550039,1,1,0,2,4,,5,3,Seymour Lake,Rd,627107,0,0.55,0,13.200934,3,4 +812,0,0.491271,1,1,0,2,3,,5,3,Ortonville,Rd,627809,5.779,6.271,0,11.790513,1.7,4 +3212,0,1.34101,1,1,0,2,5,GRV,5,3,Hadley,Rd,654204,4.666,6.007,0,32.184245,5.55,5 +21968,0,0.08015,1,1,0,2,5,GRV,5,3,Hadley,Rd,4412747,0,0.08,0,1.923591,5.55,5 +920,0,1.019014,1,1,0,2,4,,5,3,Seymour Lake,Rd,627107,1.554,2.573,0,24.456347,3,4 +4242,0,1.009929,1,1,0,2,5,,5,3,Sashabaw,Rd,697309,9.309,10.319,0,24.238295,3.7,5 +25325,0,0.501296,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.031098,0.15,4 +29785,0,1.12293,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.950327,0.15,4 +26084,0,0.495539,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.892945,0.15,4 +20959,0,0.084023,1,1,0,2,5,GRV,5,3,Sashabaw,Rd,4410633,0,0.084,0,2.016563,5.55,5 +2411,0,1.60163,1,1,0,2,5,,5,3,Groveland,,646602,5.006,6.608,0,38.439116,3.7,5 +34080,0,0.923055,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +310,0,1.147837,1,1,0,2,3,,5,3,Ortonville,,627809,10.428,11.576,0,27.548092,1.7,4 +21039,0,1.284163,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,3.088,4.371,0,30.819923,3,4 +34079,0,0.987984,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +3341,0,1.032315,1,1,0,2,5,,5,3,Hadley,Rd,654204,7.061,8.093,0,24.775555,3.7,5 +21041,0,0.454525,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,2.633,3.088,0,10.908592,3,4 +27352,0,0.656525,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.756606,0.15,4 +58,0,0.517328,2,2,0,2,4,,3,3,9 Mile,Rd,607709,0.508,1.025,0,12.415875,6,4.5 +201,-1,0.667602,0,3,0,2,3,DIV,3,3,8 Mile,Rd,640807,11.251,11.918,0,16.022448,5,5 +1993,-1,0.769694,0,4,0,1,1,,3,3,S I 75,,646106,0.769,1.539,0,,0.58,7 +2302,1,0.723204,4,0,0,1,1,,3,3,N I 75,,647308,0.791,1.514,0,,0.58,7 +2326,1,0.388247,2,0,0,2,5,,3,3,Chrysler,Dr,646902,0.554,0.942,0,9.317928,8,4.5 +2406,-1,0.347117,0,4,0,2,5,,3,3,Chrysler,Dr,646702,0.556,0.903,0,8.330804,8,4.5 +4531,1,0.132665,1,0,0,1,1,ROF,3,3,N I 75/John R,RAMP,710409,0,0.133,0,,2.24,5 +4545,1,0.15712,1,0,0,1,1,RON,3,3,John R/S I 75,RAMP,710310,0,0.157,0,,1.09,4 +11006,1,0.263748,3,0,0,1,1,,3,1,E I 94,,1576405,26.084,26.348,0,,0.58,7 +11602,0,0.629075,1,1,0,2,5,,3,1,Scotten,St,1577306,0.729,1.357,0,15.097798,8,4.5 +11732,1,0.198139,2,0,0,2,3,,3,1,Michigan,Ave,1577103,4.683,4.881,0,4.755336,5,5 +11879,-1,0.494294,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,1.105,1.599,0,11.863068,3.7,5 +11936,1,0.245294,3,0,0,1,2,,3,1,S M 10,,1577509,7.236,7.481,0,,0.58,7 +11946,1,0.169662,2,0,0,1,1,RFS,3,1,E I 94/E I 96,RAMP,1581702,0.149,0.319,0,,0.22,6 +12284,1,0.459935,1,0,0,1,1,RFS,3,1,E I 96/E I 94,RAMP,1577409,0,0.46,0,,0.22,6 +12473,-1,0.144383,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0,0.144,0,3.465191,5,5 +12505,0,0.142967,1,1,0,2,5,,3,1,Euclid,St,1583804,1.086,1.229,0,3.431198,8,4.5 +12533,0,0.238521,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.575,9.813,0,5.7245,5,5 +12646,1,0.236447,1,0,0,1,1,RON,3,1,Grand River/W I 94,RAMP,1581705,0.033,0.27,0,,1.09,4 +12826,0,0.300041,1,1,0,2,5,,3,1,Junction,St,1581110,0.801,1.101,0,7.200989,8,4.5 +12920,0,0.10328,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.355,0.458,0,2.478709,8,4.5 +12922,0,0.068027,2,2,0,2,4,,3,1,Grand,Blvd,1581907,0,0.068,0,1.63264,6,4.5 +12925,0,0.204665,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.307,2.512,0,4.911958,5,5 +12975,-1,0.368496,0,4,0,1,1,,3,1,W I 96,,1577405,3.175,3.543,0,,0.58,7 +12999,0,0.230431,1,1,0,2,4,,3,1,Clark,St,1581210,0.383,0.613,0,5.530341,6,4.5 +13007,1,0.148034,1,0,0,1,1,RFF,3,1,W I 94/W I 96,RAMP,1581704,0.143,0.291,0,,0.58,7 +13049,1,0.352135,4,0,0,1,1,,3,1,E I 96,,1577404,3.174,3.526,0,,0.58,7 +13069,1,0.281755,1,0,0,1,1,RFS,3,1,W I 94/E I 96,RAMP,1577402,0,0.282,0,,0.22,6 +13186,0,0.146777,2,2,0,2,4,,3,1,Grand,Blvd,1577308,2.307,2.454,0,3.52266,6,4.5 +13229,0,0.232571,1,1,0,2,4,,3,1,McGraw,St,1581903,3.38,3.612,0,5.581701,6,4.5 +13249,-1,0.246241,0,3,0,1,2,,3,1,N M 10,,1577510,7.22,7.466,0,,0.58,7 +13435,0,0.365169,3,3,0,2,3,,3,1,Fort,St,1585010,2.408,2.773,0,8.764064,5,5 +13490,0,0.195961,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.322,0.518,0,4.703064,6,4.5 +13500,0,0.333221,1,1,0,2,5,,3,1,Calvert,St,1584802,1.286,1.62,0,7.997293,8,4.5 +13508,0,0.245012,2,2,0,2,5,,3,1,Webb,St,1584710,0.256,0.501,0,5.880279,8,4.5 +13515,0,0.175433,1,1,1,2,5,,3,2,Glendale,St,1584707,0.509,0.684,0,4.210389,8,4.5 +13547,0,0.186652,1,1,0,2,3,,3,1,Linwood,St,1584609,0.163,0.35,0,4.479658,5,5 +13762,1,0.183647,1,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0,0.184,0,4.407525,5,5 +13847,0,0.22562,1,1,0,2,5,,3,1,Nevada,St,1585907,0.398,0.623,0,5.414874,8,4.5 +14231,0,0.165619,1,1,0,2,4,,3,1,State Fair,St,1586002,0.902,1.067,0,3.974867,6,4.5 +14239,-1,0.274985,0,3,0,1,1,,3,1,W I 94,,1588802,26.02,26.295,0,,0.58,7 +14278,-1,0.217911,0,1,0,2,3,,3,3,8 Mile,Rd,1586007,0,0.218,0,5.229872,5,5 +14537,0,0.264818,2,2,1,2,3,,3,2,Woodward,Ave,1591001,0.487,0.752,0,6.355643,5,5 +14566,1,0.268754,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,0.972,1.241,0,6.450091,5,5 +14689,-1,0.184221,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.04,0.224,0,4.421298,8,4.5 +14709,1,0.468091,3,0,0,2,3,,3,1,Dragoon,St,1590007,0,0.468,0,11.234188,5,5 +14783,-1,0.482969,0,4,0,1,1,,3,1,S I 75,,1595106,19.557,20.04,0,,0.58,7 +14809,1,1.050184,3,0,0,1,1,,3,2,N I 75,,1592010,9.707,10.756,0,,0.58,7 +14813,1,0.333202,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.018,1.351,0,7.996856,8,4.5 +15064,1,0.114451,1,0,0,1,1,ROF,3,1,S I 75/Dragoon,RAMP,1595303,0,0.114,0,,2.24,5 +15337,-1,0.38868,0,3,0,1,1,,4,2,S I 75,,1595106,9.461,9.85,0,,0.8,7.5 +15361,1,0.340355,4,0,0,1,1,,3,1,N I 75,,1592010,19.963,20.304,0,,0.58,7 +15621,1,0.280058,1,0,0,1,1,ROF,4,2,N I 75/Allen,RAMP,1592304,0,0.28,0,,2.24,5 +15705,-1,0.494869,0,4,0,2,3,DIV,3,2,Fort,St,1592106,9.262,9.757,0,11.876857,5,5 +15779,1,0.230777,4,0,0,2,3,DIV,3,2,Fort,St,1592105,9.716,9.947,0,5.538651,5,5 +15817,-1,0.256043,0,2,0,2,4,,3,1,14th,St,1621303,0.87,1.126,0,6.145039,6,4.5 +16011,1,0.199076,2,0,0,2,5,DV2,3,2,Manchester,Pkwy,1597406,0.32,0.519,0,4.777815,8,4.5 +16277,0,0.448276,1,1,0,2,5,,3,1,Vinewood,St,1609505,1.351,1.799,0,10.758612,8,4.5 +16517,0,0.146388,1,1,0,2,5,,3,1,Toledo,St,1609403,0.604,0.75,0,3.513312,8,4.5 +16742,0,0.124546,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,0.847,0.971,0,2.989105,6,4.5 +17250,0,0.197953,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.893,5.09,0,4.750874,5,5 +17441,0,0.234828,1,1,0,2,5,,3,2,3rd,St,1661508,0.592,0.827,0,5.635862,8,4.5 +17660,0,0.232938,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,2.94,3.173,0,5.590505,5,5 +17939,0,0.762674,1,1,0,2,4,,4,2,Inkster,Rd,1674404,6.12,6.882,0,18.304175,4.5,4.5 +18003,0,0.276963,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.98,23.257,0,6.647122,5,5 +18155,0,0.232165,1,1,0,2,5,,3,2,12th,St,1665208,0.489,0.721,0,5.571965,8,4.5 +18157,0,0.223676,1,1,1,2,4,,3,2,Trenton,Rd,1665008,1.315,1.538,0,5.368227,6,4.5 +18200,0,0.167871,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,0.842,1.01,0,4.028905,8,4.5 +18239,1,0.190358,1,0,0,2,4,DIV,4,2,Racho,Rd,1692908,2.328,2.519,0,4.568584,4.5,4.5 +18475,0,0.539826,2,2,0,2,5,,4,2,Pardee,Rd,1655206,0,0.54,0,12.955833,5.8,4.5 +18679,0,0.165424,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,16.916,17.082,0,3.97017,5,5 +19106,0,0.743556,1,1,0,2,3,,4,2,Middle Belt,Rd,1674403,5.424,6.167,0,17.845345,3.7,5 +19149,0,0.498942,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,2.577,3.076,0,11.974598,4.5,4.5 +19663,1,0.564751,3,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,11.287,11.852,0,13.554025,5,5 +20013,1,0.233877,1,0,0,1,2,RON,3,2,M 1/W M 8,RAMP,1924006,0,0.234,0,,1.09,4 +20014,1,0.24429,1,0,0,1,2,ROF,3,2,E M 8/M 1,RAMP,1924005,0,0.244,0,,2.24,5 +20342,0,0.177522,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,19.55,19.728,0,4.260535,5,5 +20428,0,0.236536,2,2,1,2,3,,3,2,Biddle,Ave,4302169,12.16,12.396,0,5.676856,5,5 +21040,1,0.242635,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,7.986,8.229,0,5.823244,3.7,5 +22285,-1,0.427913,0,4,0,1,2,,3,2,W M 8,,4702011,0.744,1.172,0,,0.58,7 +22313,1,0.437421,4,0,0,1,2,,3,2,E M 8,,4702009,3.216,3.653,0,,0.58,7 +22413,-1,0.193377,0,2,0,2,3,,3,1,Michigan,Ave,4701012,0.112,0.305,0,4.641053,5,5 +22415,-1,0.199777,0,2,0,2,5,DV2,3,2,Manchester,Pkwy,4700711,0.316,0.516,0,4.794643,8,4.5 +22505,1,0.167204,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.123,1.29,0,4.012902,8,4.5 +22581,0,0.225894,1,1,0,2,5,,3,1,24th,St,4705563,1.681,1.907,0,5.421456,8,4.5 +22667,0,0.499664,1,1,0,2,5,,3,2,Reeck,Rd,4705866,0.499,0.999,0,11.99194,8,4.5 +22878,0,0.37304,2,2,0,2,5,,4,2,Superior,Rd,4705981,0.797,1.17,0,8.952968,5.8,4.5 +22896,1,0.351942,2,0,0,1,1,RFS,3,1,W I 96/W I 94,RAMP,4705636,0,0.352,0,,0.22,6 +23007,0,0.703417,2,2,0,2,5,,4,2,Superior,Rd,4705981,0,0.703,0,16.882018,5.8,4.5 +23073,-1,0.458275,0,2,0,2,5,,3,2,Davison,St,4705659,0,0.458,0,10.9986,8,4.5 +23317,0,0.090979,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.836,0.927,0,2.183487,8,4.5 +23333,0,0.49698,2,2,1,2,3,,3,2,Allen,Rd,4705756,6.827,7.324,0,11.927514,5,5 +23351,-1,0.167249,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0.825,0.992,0,4.013988,8,4.5 +23533,1,0.430227,2,0,0,2,5,,3,2,Davison,St,4705657,0,0.43,0,10.325451,8,4.5 +23796,-1,0.190605,0,1,0,2,4,DIV,4,2,Racho,Rd,4707867,0,0.191,0,4.574526,4.5,4.5 +23856,0,0.149679,1,1,0,2,5,,3,2,4th,St,5491107,0.761,0.911,0,3.592287,8,4.5 +24243,0,0.234873,1,1,0,2,5,,3,2,2nd,St,4711051,0.216,0.451,0,5.63695,8,4.5 +24253,1,0.203688,1,0,0,1,1,ROF,3,1,E I 94/Grand River,RAMP,4710307,0,0.204,0,,2.24,5 +26160,0,0.516527,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.396639,0.15,4 +26748,0,0.544359,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.064615,0.15,4 +27378,0,0.513423,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.322161,0.15,4 +27386,0,0.603516,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.484382,0.15,4 +30530,0,0.548214,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.157129,0.15,4 +30531,0,0.191794,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.603045,0.15,4 +30532,0,0.596673,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.320145,0.15,4 +30775,0,0.26583,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.37992,0.15,4 +30783,0,0.622331,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.935946,0.15,4 +30787,0,0.336728,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.081481,0.15,4 +30790,0,0.260395,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.249479,0.15,4 +30793,0,0.557763,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.3863,0.15,4 +30800,0,0.495924,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.902175,0.15,4 +31089,0,0.553464,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.283132,0.15,4 +31860,0,0.185387,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.449287,0.15,4 +31918,0,0.423298,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.159151,0.15,4 +32029,0,0.127006,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.048151,0.15,4 +32040,0,0.266492,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.395807,0.15,4 +32044,0,0.245142,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.88342,0.15,4 +32045,0,0.43371,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.409034,0.15,4 +32047,0,0.200117,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.802814,0.15,4 +32063,0,0.543172,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.036134,0.15,4 +32074,0,0.50031,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.007444,0.15,4 +32077,0,0.491167,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.788011,0.15,4 +32078,0,0.454111,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.898668,0.15,4 +32093,0,0.207916,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.989985,0.15,4 +32103,0,0.303671,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.288116,0.15,4 +32108,0,0.305372,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.328931,0.15,4 +32110,0,0.240532,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.772765,0.15,4 +32114,0,0.161858,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.884604,0.15,4 +32116,0,0.359172,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.620118,0.15,4 +32411,0,0.279581,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.709951,0.15,4 +32696,0,0.129168,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.100035,0.15,4 +33353,0,0.39482,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.475679,0.15,4 +33595,0,0.221099,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.306383,0.15,4 +33699,0,0.206088,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.946102,0.15,4 +8448,0,2.228884,1,1,0,2,4,,5,6,Huron River,Dr,1225907,0,2.228,0,53.49321,3,4 +8633,0,2.853915,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.92,5.773,0,68.493971,3,4 +8869,0,1.371001,1,1,0,2,7,,5,6,Sigler,Rd,1226701,9.028,10.399,0,32.904027,5.8,6 +12454,0,0.126062,3,3,1,2,3,,4,2,Eureka,Rd,1578308,8.969,9.095,0,3.025494,3.7,5 +14811,1,0.3895,1,0,0,1,1,RON,4,2,Huron River/N I 75,RAMP,1592103,0,0.389,0,,1.09,4 +14947,1,1.314876,2,0,0,1,2,,4,2,Fort,St,1592105,0,1.315,0,,0.8,7.5 +15340,1,0.325881,1,0,0,1,1,ROF,4,2,S I 75/Huron River,RAMP,1595108,0,0.326,0,,2.24,5 +15514,1,0.271242,3,0,0,1,1,,4,2,N I 75,,1592010,0.236,0.507,0,,0.8,7.5 +15648,0,0.270337,1,1,0,2,4,,4,2,King,Rd,1592206,3.782,4.052,0,6.488092,4.5,4.5 +15743,-1,1.181146,0,2,0,1,2,,4,2,Fort,St,1592106,0,1.181,0,,0.8,7.5 +15774,-1,0.299385,0,3,0,1,1,,4,2,S I 75,,1595106,0.214,0.514,0,,0.8,7.5 +16604,0,0.555467,2,2,1,2,4,,4,2,Sibley,Rd,1607308,8.527,9.083,0,13.331215,4.5,4.5 +17042,0,0.265999,2,2,0,2,4,,4,2,Vreeland,Rd,1606105,2.603,2.868,0,6.383984,4.5,4.5 +17070,0,0.953033,1,1,0,2,4,,4,2,Huron River,Dr,1606009,3.775,4.727,0,22.872793,4.5,4.5 +17078,0,0.291793,1,1,0,2,4,,4,2,Huron River,Dr,1606009,2.415,2.707,0,7.003025,4.5,4.5 +17461,0,0.174859,2,2,0,2,3,,4,2,Dix Toledo,Hwy,1688707,0.717,0.891,0,4.196627,3.7,5 +17532,0,0.30517,1,1,0,2,5,,4,2,Olmstead,Rd,1694707,0,0.305,0,7.324082,5.8,4.5 +18575,0,0.394389,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,6.061,6.455,0,9.46533,4.5,4.5 +18662,0,0.471905,3,3,1,2,3,,4,2,West,Rd,1674210,6.582,7.054,0,11.325726,3.7,5 +18672,0,0.247459,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,9.421,9.668,0,5.939018,4.5,4.5 +18736,0,0.689123,1,1,0,2,5,,4,2,Woodruff,Rd,1694803,2.105,2.793,0,16.538946,5.8,4.5 +19052,0,0.394636,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,2.724,3.119,0,9.471275,4.5,4.5 +19890,0,0.633665,1,1,0,2,4,,4,2,Old Fort,St,4302168,2.033,2.666,0,15.207949,4.5,4.5 +20129,0,1.344766,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,26.344,27.688,0,32.274387,1.7,4 +20532,0,0.918125,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,1.949,2.867,0,22.035007,4.5,4.5 +20644,0,0.721667,1,1,0,2,4,,4,2,Fort,St,4302168,0.857,1.579,0,17.320016,4.5,4.5 +20708,0,1.333398,1,1,0,2,4,,5,6,US Turnpike,,4301655,10.854,12.187,0,32.001546,3,4 +30309,0,0.533549,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.805171,0.15,4 +30311,0,0.524484,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.587605,0.15,4 +30322,0,0.345739,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.29773,0.15,4 +31282,0,1.74023,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,41.765516,0.15,4 +31400,0,1.370032,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,32.880764,0.15,4 +40346,1,0.383283,3,0,0,2,3,DIV,4,3,University,Dr,624301,3.395,3.778,0,9.198797,3.7,5 +31869,0,0.411174,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.868169,0.15,4 +31870,0,0.410509,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.852212,0.15,4 +32126,0,1.179151,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,28.299614,0.15,4 +32128,0,1.49404,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,35.856972,0.15,4 +32129,0,0.430717,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.33721,0.15,4 +40347,-1,0.399717,0,3,0,2,3,DIV,4,3,University,Dr,5500949,0.491,0.891,0,9.593213,3.7,5 +33994,0,1.592111,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,38.210672,0.15,4 +8658,0,0.709705,1,1,0,2,5,,5,6,Dixie,Hwy,1225809,1.202,1.912,0,17.032928,3.7,5 +8659,0,1.138831,1,1,0,2,5,,5,6,Pointe Aux Peaux,,1225708,0,1.138,0,27.331953,3.7,5 +8692,0,1.778344,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,3.442,5.22,0,42.680257,3.7,5 +8725,0,0.733035,1,1,0,2,5,,5,6,Sigler,Rd,1226701,6.054,6.786,0,17.592829,3.7,5 +9338,1,1.375425,2,0,0,1,1,,5,6,N I 275,,1228001,1.178,2.553,0,,1.02,7 +9419,1,4.699214,3,0,0,1,1,,5,6,N I 75,,1226910,21.394,26.092,0,,1.02,7 +9445,-1,4.430018,0,3,0,1,1,,5,6,S I 75,,1226909,21.453,25.881,0,,1.02,7 +10224,0,0.912971,1,1,0,2,5,,5,6,Port Sunlight,Rd,1236810,1.176,2.088,0,21.911306,3.7,5 +19886,0,1.117701,1,1,0,2,4,,5,6,US Turnpike,,4301655,9.737,10.854,0,26.824834,3,4 +20133,-1,1.328436,0,2,0,1,1,,5,6,S I 275,,4301662,0.546,1.874,0,,1.02,7 +20280,0,0.905529,1,1,0,2,5,,5,6,Swan Creek,Rd,4300077,0,0.905,0,21.732708,3.7,5 +20382,0,0.516248,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,5.502,6.018,0,12.389942,3,4 +20418,0,0.698631,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,21.855,22.553,0,16.767151,1.7,4 +30325,0,1.022793,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,24.54703,0.15,4 +30326,0,1.311893,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,31.48542,0.15,4 +30328,0,0.59148,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,14.195516,0.15,4 +30329,0,0.943908,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,22.653789,0.15,4 +30331,0,1.384593,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,33.230227,0.15,4 +8660,0,1.270815,1,1,0,2,5,,5,6,Nadeau,Rd,1225701,1.328,2.598,0,30.499557,3.7,5 +9273,0,1.855301,1,1,0,2,6,,5,6,Newport South,Rd,1230208,0.825,2.68,0,44.52723,5.8,6 +9301,0,0.487982,1,1,0,2,5,,5,6,Newport,Rd,1228304,2.759,3.247,0,11.71156,3.7,5 +9308,1,0.443387,1,0,0,1,1,RFF,5,6,S I 75/N I 275,RAMP,1228208,0,0.443,0,,1.02,7 +9331,1,1.161542,1,0,0,1,1,RFS,5,6,S I 275/N I 75,RAMP,1228002,0,1.161,0,,0.22,6 +9339,1,1.178278,2,0,0,1,1,,5,6,N I 75/N I 275,RAMP,1228001,0,1.178,0,,1.02,7 +9422,1,0.630606,3,0,0,1,1,,5,6,N I 75,,1226910,19.515,20.145,0,,1.02,7 +9423,1,1.185442,4,0,0,1,1,,5,6,N I 75,,1226910,18.33,19.515,0,,1.02,7 +9448,-1,0.613876,0,3,0,1,1,,5,6,S I 75,,1226909,20.064,20.678,0,,1.02,7 +9449,-1,1.721779,0,3,0,1,1,,5,6,S I 75,,1226909,18.343,20.064,0,,1.02,7 +20335,-1,0.545878,0,2,0,1,1,,5,6,S I 275,,4301662,0,0.546,0,,1.02,7 +31018,0,0.896436,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.514469,0.15,4 +31276,0,1.593482,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,38.24358,0.15,4 +31281,0,0.523838,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.57212,0.15,4 +20473,0,0.401271,1,1,0,2,5,,4,6,Vivian,Rd,4301667,1.444,1.845,0,9.63051,5.8,4.5 +8422,1,0.263727,1,0,0,1,1,RON,4,6,Nadeau/S I 75,RAMP,1225908,0,0.264,0,,1.09,4 +8664,0,0.133288,1,1,0,2,4,,4,6,Nadeau,Rd,1225701,0.97,1.104,0,3.198924,4.5,4.5 +8706,1,0.399627,1,0,0,1,1,ROF,5,6,S I 75/Nadeau,RAMP,1225603,0,0.4,0,,2.24,5 +9340,1,0.253486,1,0,0,1,1,RON,5,6,Nadeau/N I 75,RAMP,1227909,0,0.253,0,,1.09,4 +9424,1,0.589953,3,0,0,1,1,,5,6,N I 75,,1226910,17.74,18.33,0,,1.02,7 +9450,-1,0.610245,0,3,0,1,1,,5,6,S I 75,,1226909,17.733,18.343,0,,1.02,7 +8485,0,0.158624,1,1,0,2,4,,4,6,Nadeau,Rd,1225701,0.812,0.97,0,3.806974,4.5,4.5 +8477,0,0.22444,1,1,1,2,4,,5,6,Nadeau,Rd,1225701,1.104,1.328,0,5.386556,3,4 +8512,1,0.399826,1,0,0,1,1,ROF,5,6,N I 75/Nadeau,RAMP,1225604,0,0.4,0,,2.24,5 +9302,0,0.455183,1,1,0,2,5,,5,6,Newport,Rd,1228304,1.69,2.145,0,10.924401,3.7,5 +31274,0,1.129914,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.117937,0.15,4 +20636,0,0.28764,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,21.568,21.855,0,6.903354,1.7,4 +9274,0,0.825293,1,1,0,2,6,,5,6,Newport South,Rd,1230208,0,0.825,0,19.807025,5.8,6 +20826,0,0.533537,1,1,0,2,6,,5,6,Stoney Creek,Rd,4301624,0,0.533,0,12.804897,5.8,6 +20827,0,0.460796,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,4.33,4.791,0,11.0591,4.5,4.5 +30334,0,1.102337,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,26.456082,0.15,4 +8471,0,1.019408,1,1,0,2,5,,5,6,Nadeau,Rd,1225701,2.598,3.617,0,24.465786,3.7,5 +20132,0,0.006418,1,1,1,2,4,,4,6,Dixie,Hwy,4301655,4.324,4.33,0,0.154022,4.5,4.5 +20586,0,0.366559,1,1,0,2,6,,5,6,Stoney Creek,Rd,4301624,0.533,0.9,0,8.797415,5.8,6 +30333,0,0.215251,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,5.166015,0.15,4 +20587,0,0.711658,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,4.791,5.502,0,17.079796,3,4 +9272,0,0.46377,1,1,0,2,6,,5,6,Newport South,Rd,1230208,2.68,3.143,0,11.130485,5.8,6 +9298,0,0.232786,1,1,0,2,5,,5,6,Swan Creek,Rd,1228304,3.719,3.951,0,5.586875,3.7,5 +9329,1,0.210944,1,0,0,1,1,RON,5,6,Swan Creek/N I 75,RAMP,1228005,0,0.211,0,,1.09,4 +9330,1,0.335999,1,0,0,1,1,ROF,5,6,N I 75/Swan Creek,RAMP,1228004,0,0.336,0,,2.24,5 +9421,1,0.958703,3,0,0,1,1,,5,6,N I 75,,1226910,20.145,21.103,0,,1.02,7 +9299,0,0.471864,1,1,1,2,5,,5,6,Newport,Rd,1228304,3.247,3.719,0,11.324732,3.7,5 +9447,-1,0.38649,0,3,0,1,1,,5,6,S I 75,,1226909,20.678,21.064,0,,1.02,7 +37025,1,0.20919,2,0,0,2,3,DIV,3,5,Packard,St,1430704,2.874,3.083,0,5.020562,5,5 +30335,0,0.07221,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,1.733041,0.15,4 +37028,-1,0.229522,0,2,0,2,3,DIV,3,5,Packard,St,4603898,0.262,0.492,0,5.508525,5,5 +9307,1,0.381902,1,0,0,1,1,ROF,5,6,S I 75/Swan Creek,RAMP,1228210,0,0.382,0,,2.24,5 +9420,1,0.290886,3,0,0,1,1,,5,6,N I 75,,1226910,21.103,21.394,0,,1.02,7 +9446,-1,0.389021,0,3,0,1,1,,5,6,S I 75,,1226909,21.064,21.453,0,,1.02,7 +20284,1,0.480445,1,0,0,1,1,RON,5,6,Swan Creek/S I 75,RAMP,4301676,0,0.48,0,,1.09,4 +20083,0,0.404884,1,1,0,2,5,,5,6,Swan Creek,Rd,4300077,0.905,1.31,0,9.717212,3.7,5 +20773,0,0.029645,1,1,0,2,5,,5,6,Swan Creek,Rd,4300077,1.31,1.34,0,0.711485,3.7,5 +9296,0,0.163457,1,1,0,2,5,,5,6,Swan Creek,Rd,1228304,3.956,4.119,0,3.922958,3.7,5 +20525,0,0.075987,1,1,0,2,5,,5,6,Swan Creek,Rd,4300077,1.34,1.416,0,1.823687,3.7,5 +9297,0,0.004299,1,1,0,2,5,,5,6,Swan Creek,Rd,1228304,3.951,3.956,0,0.103187,3.7,5 +8805,0,0.75234,1,1,0,2,5,,5,6,Sigler,Rd,1226701,4.418,5.17,0,18.056166,3.7,5 +8864,0,1.122502,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,2.32,3.442,0,26.940059,3.7,5 +9335,1,2.711647,3,0,0,1,1,,5,6,N I 275,,1228001,3.139,5.85,0,,1.02,7 +20383,-1,2.881946,0,3,0,1,1,,5,6,S I 275,,4301662,2.492,5.373,0,,1.02,7 +20524,0,0.646433,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,24.327,24.973,0,15.51438,1.7,4 +31283,0,0.655807,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,15.73936,0.15,4 +33993,0,1.615521,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,38.7725,0.15,4 +8807,1,0.278643,1,0,0,1,1,RON,5,6,Telegraph/N I 275,RAMP,1226607,0,0.279,0,,1.09,4 +8997,1,0.27331,1,0,0,1,1,RON,5,6,Telegraph/N I 275,RAMP,1226609,0,0.273,0,,1.09,4 +9011,1,0.317934,1,0,0,1,1,RON,5,6,Telegraph/S I 275,RAMP,1226602,0,0.318,0,,1.09,4 +9337,1,0.330819,2,0,0,1,1,,5,6,N I 275,,1228001,2.553,2.884,0,,1.02,7 +19588,1,0.062244,1,0,0,1,1,ROF,5,6,N I 275/Telegraph,RAMP,1854007,0,0.062,0,,2.24,5 +20082,0,1.188725,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.907,24.096,0,28.529388,1.7,4 +20468,0,0.100314,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.798,22.899,0,2.407537,1.7,4 +20828,-1,0.377029,0,2,0,1,1,,5,6,S I 275,,4301662,1.874,2.251,0,,1.02,7 +20087,1,0.359482,1,0,0,1,1,ROF,5,6,S I 275/Telegraph,RAMP,4301683,0,0.359,0,,2.24,5 +20231,0,0.09831,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.553,22.652,0,2.359431,1.7,4 +9336,1,0.255895,3,0,0,1,1,,5,6,N I 275,,1228001,2.884,3.139,0,,1.02,7 +20588,-1,0.241182,0,2,0,1,1,,5,6,S I 275,,4301662,2.251,2.492,0,,1.02,7 +8812,1,0.291363,1,0,0,1,1,RON,5,6,Telegraph/S I 275,RAMP,1226604,0,0.291,0,,1.09,4 +20704,0,0.076509,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.722,22.798,0,1.836213,1.7,4 +19882,0,0.070378,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.652,22.722,0,1.689077,1.7,4 +9000,1,0.401771,1,0,0,1,1,ROF,5,6,N I 275/Telegraph,RAMP,1226608,0,0.402,0,,2.24,5 +8806,1,0.118388,1,0,0,1,1,ROF,5,6,N I 275/Telegraph,RAMP,1226608,0.402,0.52,0,,2.24,5 +20279,0,0.008695,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,22.899,22.907,0,0.208686,1.7,4 +20772,0,0.231125,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,24.096,24.327,0,5.547009,1.7,4 +8693,0,1.145813,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,1.174,2.32,0,27.499515,3.7,5 +9002,1,0.414094,1,0,0,1,1,ROF,5,6,N I 275/Carleton/Rockwood,RAMP,1226606,0,0.414,0,,2.24,5 +31284,0,0.31486,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,7.556636,0.15,4 +8909,0,0.883682,1,1,0,2,5,,5,6,Sigler,Rd,1226701,5.17,6.054,0,21.208361,3.7,5 +30319,0,0.903573,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,21.685756,0.15,4 +30321,0,0.022572,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,0.54174,0.15,4 +20331,0,1.371039,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,24.973,26.344,0,32.904934,1.7,4 +8470,0,1.266738,1,1,0,2,5,,5,6,Pointe Aux Peaux,,1225708,1.138,2.405,0,30.401719,3.7,5 +20235,0,1.265588,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,8.472,9.737,0,30.374107,3,4 +20875,0,1.295492,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,6.751,8.046,0,31.091798,3,4 +31012,0,0.921226,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,22.109432,0.15,4 +20180,0,0.732506,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,6.018,6.751,0,17.580149,3,4 +31011,0,0.508493,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.203829,0.15,4 +20640,0,0.376633,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,8.046,8.422,0,9.039192,3,4 +33996,0,0.415431,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,9.970351,0.15,4 +20422,0,0.049747,1,1,0,2,4,,5,6,Dixie,Hwy,4301655,8.422,8.472,0,1.193921,3,4 +10225,0,0.859132,1,1,0,2,5,,4,6,Port Sunlight,Rd,1236810,0.317,1.176,0,20.619162,5.8,4.5 +31013,0,1.400999,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,33.623966,0.15,4 +10227,0,0.112157,1,1,0,2,5,,4,6,Lakeview,Blvd,1236810,0.205,0.317,0,2.691759,5.8,4.5 +32123,0,0.131689,1,1,0,2,99,,4,6,Centroid Connector,,0,0,0,0,3.160527,0.15,4 +32124,0,0.706602,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,16.958449,0.15,4 +8452,0,1.189661,1,1,0,2,5,,5,6,Dixie,Hwy,1225809,3.666,4.855,0,28.551873,3.7,5 +8467,0,0.86678,1,1,0,2,5,,5,6,Dixie,Hwy,1225809,1.912,2.778,0,20.802718,3.7,5 +8698,0,1.003047,1,1,0,2,7,,5,6,Sigler,Rd,1226701,8.026,9.028,0,24.073133,5.8,6 +8808,0,1.125499,1,1,0,2,5,,5,6,Carleton Rockwood,Rd,1226706,5.22,6.345,0,27.011968,3.7,5 +30324,0,1.156163,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,27.74792,0.15,4 +31107,0,1.675169,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,40.204053,0.15,4 +32127,0,0.727053,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,17.449266,0.15,4 +8647,0,0.888418,1,1,0,2,5,,5,6,Dixie,Hwy,1225809,2.778,3.666,0,21.322034,3.7,5 +8874,0,1.239559,1,1,0,2,5,,5,6,Sigler,Rd,1226701,6.786,8.026,0,29.74942,3.7,5 +31859,0,0.47847,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,11.483275,0.15,4 +31401,0,0.599203,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,14.380867,0.15,4 +8646,0,0.662216,1,1,0,2,5,,5,6,Dixie,Hwy,1225809,4.855,5.517,0,15.893176,3.7,5 +9306,1,0.465601,1,0,0,1,1,RON,5,6,Huron River/S I 75,RAMP,1228302,0,0.465,0,,1.09,4 +9444,-1,0.379948,0,3,0,1,1,,5,6,S I 75,,1226909,25.881,26.261,0,,1.02,7 +16188,0,0.664859,1,1,0,2,4,,4,2,Huron River,Dr,1606009,3.11,3.775,0,15.956616,4.5,4.5 +20879,0,0.341298,1,1,0,2,4,,4,2,Fort,St,4302168,0.516,0.857,0,8.191144,4.5,4.5 +31857,0,0.519339,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,12.464125,0.15,4 +8640,0,0.401714,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.228,2.63,0,9.641139,3,4 +9417,1,0.172676,3,0,0,1,1,,5,6,N I 75,,1226910,26.592,26.764,0,,1.02,7 +9443,-1,0.500266,0,3,0,1,1,,5,6,S I 75,,1226909,26.261,26.761,0,,1.02,7 +16773,0,0.125664,1,1,0,2,4,,4,2,Huron River,Dr,1606009,2.707,2.832,0,3.015939,4.5,4.5 +20184,0,0.363472,1,1,0,2,4,,4,2,Fort,St,4302168,0.153,0.516,0,8.723326,4.5,4.5 +20386,0,0.152945,1,1,0,2,4,,5,6,Dixie,Hwy,4302168,0,0.153,0,3.670675,3,4 +31858,0,0.577306,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,13.855345,0.15,4 +8431,0,0.181762,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.695,2.877,0,4.362294,3,4 +9305,1,0.355461,1,0,0,1,1,ROF,5,6,S I 75/Huron River,RAMP,1228303,0,0.355,0,,2.24,5 +9327,0,0.067737,1,1,0,2,5,,5,6,Sylvania,Dr,1228009,0.23,0.298,0,1.625698,3.7,5 +9328,1,0.230194,1,0,0,1,1,ROF,5,6,N I 75/Huron River,RAMP,1228009,0,0.23,0,,2.24,5 +9418,1,0.499905,3,0,0,1,1,,5,6,N I 75,,1226910,26.092,26.592,0,,1.02,7 +31855,0,0.198912,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,4.773879,0.15,4 +31856,0,0.160213,1,1,0,2,99,,5,6,Centroid Connector,,0,0,0,0,3.845115,0.15,4 +8423,0,0.035623,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.885,2.92,0,0.854948,3,4 +8634,0,0.007382,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.877,2.885,0,0.177157,3,4 +9326,1,0.242227,1,0,0,1,1,RON,5,6,Huron River/N I 75,RAMP,1228101,0,0.242,0,,1.09,4 +8636,0,0.052399,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.643,2.695,0,1.257565,3,4 +8439,0,0.013326,1,1,0,2,4,,5,6,Huron River,Dr,1225907,2.63,2.643,0,0.31983,3,4 +14864,-1,0.21444,0,3,0,1,1,,4,2,S I 75,,1595106,0,0.214,0,,0.8,7.5 +15381,1,0.236117,3,0,0,1,1,,4,2,N I 75,,1592010,0,0.236,0,,0.8,7.5 +15698,1,0.386838,1,0,0,1,1,ROF,4,2,N I 75/Huron River,RAMP,1592102,0,0.387,0,,2.24,5 +16769,0,0.120335,2,2,0,2,4,,4,2,Huron River,Dr,1606009,2.99,3.11,0,2.888031,4.5,4.5 +17075,0,0.1412,2,2,0,2,4,,4,2,Huron River,Dr,1606009,2.841,2.983,0,3.388811,4.5,4.5 +17074,0,0.007188,2,2,0,2,4,,4,2,Huron River,Dr,1606009,2.983,2.99,0,0.172519,4.5,4.5 +15486,1,0.149302,1,0,0,1,1,RON,4,2,Huron River/S I 75,RAMP,1595107,0,0.149,0,,1.09,4 +16191,0,0.008956,2,2,0,2,4,,4,2,Huron River,Dr,1606009,2.832,2.841,0,0.214954,4.5,4.5 +31853,0,0.553618,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.286842,0.15,4 +31854,0,0.09085,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.180392,0.15,4 +9315,0,2.419335,1,1,0,2,4,,5,6,Will Carleton,Rd,1228108,4.02,6.438,0,58.064037,3,4 +12517,0,0.494668,2,2,1,2,3,,4,2,Eureka,Rd,1578308,5.594,6.089,0,11.872029,3.7,5 +14821,1,0.283704,1,0,0,1,1,RON,4,2,West/N I 75,RAMP,1592205,0,0.284,0,,1.09,4 +15014,1,0.725196,3,0,0,1,1,,4,2,N I 75,,1592010,4.591,5.316,0,,0.8,7.5 +37126,1,0.215929,1,0,0,1,1,ROF,4,2,S I 75/W West,RAMP,4707550,0.215,0.431,0,,2.24,5 +15656,0,2.004934,1,1,0,2,5,,4,2,King,Rd,1592206,0,2.004,0,48.118423,5.8,4.5 +37129,1,0.311417,1,0,0,1,1,ROF,4,2,N I 75/E West,RAMP,4707547,0.171,0.482,0,,2.24,5 +16628,0,0.685681,1,1,0,2,4,,4,2,Sibley,Rd,1607308,4.997,5.682,0,16.456355,4.5,4.5 +17058,0,0.435288,1,1,0,2,4,,4,2,Huron River,Dr,1606101,0.337,0.772,0,10.446902,4.5,4.5 +17712,0,0.052053,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,6.139,6.191,0,1.249278,4.5,4.5 +17872,0,0.447639,1,1,0,2,4,,4,2,West,Rd,1674210,3.005,3.453,0,10.743326,4.5,4.5 +18029,0,0.492764,1,1,0,2,4,,4,2,Inkster,Rd,1674404,2.105,2.598,0,11.826344,4.5,4.5 +18204,0,0.755828,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,2.397,3.152,0,18.139864,4.5,4.5 +18954,0,1.005773,1,1,0,2,7,,4,2,Leroy,Ave,1654504,0,1.006,0,24.138559,6.55,4.5 +19109,0,1.008506,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,1.426,2.434,0,24.204148,3.7,5 +20824,0,0.833317,2,2,0,2,3,,5,6,Telegraph,Rd,4300001,27.688,28.521,0,19.999616,1.7,4 +37366,-1,0.033374,0,2,0,2,4,,3,5,Maple,Rd,4605990,0,0.033,0,0.800985,6,4.5 +37367,1,0.023567,1,0,0,2,4,,3,5,SB N Maple/NB N Maple,TURN,4605987,0,0.024,0,0.565615,6,4.5 +23833,1,0.21513,1,0,0,1,1,ROF,4,2,S I 75/W West,RAMP,4707550,0,0.215,0,,2.24,5 +31226,0,0.507,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.167992,0.15,4 +31288,0,0.668452,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.042849,0.15,4 +31872,0,0.541282,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.990757,0.15,4 +32073,0,0.496452,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.914858,0.15,4 +32138,0,0.539808,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.955393,0.15,4 +32141,0,0.360685,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.656442,0.15,4 +32146,0,1.003405,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.081719,0.15,4 +32152,0,0.498635,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.967235,0.15,4 +32154,0,0.485478,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.651483,0.15,4 +32157,0,0.409155,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.819715,0.15,4 +32158,0,0.379013,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.096308,0.15,4 +32159,0,0.495137,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.883285,0.15,4 +32162,0,0.508053,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.193271,0.15,4 +32164,0,0.521376,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.513027,0.15,4 +32168,0,0.502121,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.050902,0.15,4 +16179,0,0.395896,1,1,0,2,5,,5,2,Huron River,Dr,1606101,2.417,2.813,0,9.501507,3.7,5 +16753,0,0.360295,1,1,0,2,4,,4,2,Huron River,Dr,1606101,0.772,1.132,0,8.647074,4.5,4.5 +17879,0,0.462776,1,1,0,2,5,GRV,5,2,West,Rd,1674210,1.54,2.003,0,11.106628,5.55,5 +18206,0,0.742861,1,1,0,2,5,,5,2,Van Horn,Rd,1674101,0.662,1.405,0,17.828665,3.7,5 +30351,0,1.041697,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.000734,0.15,4 +31286,0,1.07715,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,25.851611,0.15,4 +31287,0,0.812712,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,19.505088,0.15,4 +17448,0,0.500773,1,1,0,2,5,,5,2,West,Rd,1674210,0.506,1.007,0,12.018541,3.7,5 +17806,0,0.588388,1,1,0,2,5,,5,2,Huron River,Dr,1674101,0,0.588,0,14.121303,3.7,5 +19036,0,0.704679,1,1,0,2,5,,5,2,Huron River,Dr,1670406,10.075,10.779,0,16.912305,3.7,5 +31291,0,0.599237,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,14.381681,0.15,4 +31292,0,0.989335,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,23.744044,0.15,4 +18589,0,0.609509,1,1,0,2,5,,5,2,Willow,Rd,1670406,9.466,10.075,0,14.628224,3.7,5 +17056,0,0.479769,1,1,0,2,5,,5,2,Huron River,Dr,1606101,2.813,3.292,0,11.514447,3.7,5 +18648,0,0.073915,1,1,0,2,5,,5,2,Van Horn,Rd,1674101,0.588,0.662,0,1.77395,3.7,5 +18262,0,0.533859,1,1,0,2,5,GRV,5,2,West,Rd,1674210,1.007,1.54,0,12.812628,5.55,5 +31289,0,0.452799,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,10.867179,0.15,4 +31290,0,0.091357,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,2.192557,0.15,4 +17057,0,1.192672,1,1,0,2,5,,5,2,Huron River,Dr,1606101,1.132,2.324,0,28.624131,3.7,5 +17804,0,0.245106,1,1,0,2,5,,5,2,Van Horn,Rd,1674101,1.405,1.65,0,5.882544,3.7,5 +18030,0,0.174524,1,1,0,2,4,,4,2,Inkster,Rd,1674404,0.928,1.102,0,4.188573,4.5,4.5 +18127,0,0.354646,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,0.083,0.438,0,8.511503,3.7,5 +18257,0,0.440048,1,1,0,2,5,GRV,5,2,West,Rd,1674210,2.566,3.005,0,10.561144,5.55,5 +18647,0,0.747088,1,1,0,2,5,,5,2,Van Horn,Rd,1674101,1.65,2.397,0,17.930121,3.7,5 +30673,0,0.669771,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,16.074507,0.15,4 +32144,0,0.495825,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.899809,0.15,4 +16752,0,0.092357,1,1,0,2,5,,5,2,Huron River,Dr,1606101,2.324,2.417,0,2.216574,3.7,5 +23902,0,0.08512,1,1,0,2,5,,5,2,Middle Belt/Huron River Cutoff,,4707050,0,0.085,0,2.042881,3.7,5 +18544,0,0.083162,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,0,0.083,0,1.995892,3.7,5 +17442,0,0.562742,1,1,0,2,5,GRV,5,2,West,Rd,1674210,2.003,2.566,0,13.505808,5.55,5 +17700,0,0.988171,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,0.438,1.426,0,23.716099,3.7,5 +32143,0,0.383916,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,9.213993,0.15,4 +18443,0,0.737948,1,1,0,2,4,,4,2,Inkster,Rd,1674404,0.19,0.928,0,17.710741,4.5,4.5 +18916,0,0.190294,1,1,0,2,4,,4,2,Inkster,Rd,1674404,0,0.19,0,4.567046,4.5,4.5 +17605,0,0.502909,1,1,0,2,4,,4,2,Inkster,Rd,1674404,1.102,1.605,0,12.069813,4.5,4.5 +19015,0,0.500378,1,1,0,2,4,,4,2,Inkster,Rd,1674404,1.605,2.105,0,12.009071,4.5,4.5 +30674,0,0.378344,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.08025,0.15,4 +12155,0,0.542353,2,2,1,2,3,,4,2,Eureka,Rd,1578308,3.557,4.1,0,13.01648,3.7,5 +16635,0,0.225158,1,1,0,2,4,,5,2,Sibley,Rd,1607308,3.774,3.999,0,5.403789,3,4 +18336,0,0.490228,1,1,0,2,4,,4,2,Inkster,Rd,1674404,4.106,4.596,0,11.76546,4.5,4.5 +18560,0,0.429793,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,4.233,4.663,0,10.315022,4.5,4.5 +18660,0,0.638667,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,3.422,4.06,0,15.328015,3.7,5 +31297,0,0.986268,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,23.67044,0.15,4 +32160,0,0.778498,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,18.683943,0.15,4 +32166,0,0.842633,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,20.223199,0.15,4 +32169,0,0.495978,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.903472,0.15,4 +16638,0,0.429759,1,1,0,2,4,,5,2,Sibley,Rd,1607308,2.57,2.999,0,10.314222,3,4 +30704,0,0.467249,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,11.213983,0.15,4 +16388,0,0.775155,1,1,0,2,4,,5,2,Sibley,Rd,1607308,2.999,3.774,0,18.603713,3,4 +32468,0,0.819787,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,19.674893,0.15,4 +31298,0,0.013298,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,0.319153,0.15,4 +12524,0,0.487399,2,2,1,2,3,,4,2,Eureka,Rd,1578308,3.07,3.557,0,11.697571,3.7,5 +32170,0,0.505265,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.126351,0.15,4 +12163,0,0.161885,2,2,1,2,3,,4,2,Eureka,Rd,1578308,2.908,3.07,0,3.885242,3.7,5 +19031,0,0.570874,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,3.663,4.233,0,13.700973,4.5,4.5 +32171,0,0.501146,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.027497,0.15,4 +16385,0,0.997734,1,1,0,2,4,,5,2,Sibley,Rd,1607308,3.999,4.997,0,23.945612,3,4 +16660,0,0.997284,1,1,0,2,5,,5,2,King,Rd,1607306,4.352,5.349,0,23.934814,3.7,5 +17699,0,0.308471,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,2.434,2.742,0,7.403299,3.7,5 +19013,0,0.306958,1,1,0,2,4,,4,2,Inkster,Rd,1674404,3.097,3.403,0,7.366986,4.5,4.5 +30316,0,0.894913,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,21.477911,0.15,4 +19107,0,0.679896,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,2.742,3.422,0,16.317513,3.7,5 +31293,0,0.894278,1,1,0,2,99,,5,2,Centroid Connector,,0,0,0,0,21.462662,0.15,4 +17604,0,0.498731,1,1,0,2,4,,4,2,Inkster,Rd,1674404,2.598,3.097,0,11.969547,4.5,4.5 +18125,0,0.501246,1,1,0,2,4,,4,2,Inkster,Rd,1674404,3.605,4.106,0,12.029893,4.5,4.5 +18542,0,0.201274,1,1,0,2,4,,4,2,Inkster,Rd,1674404,3.403,3.605,0,4.830583,4.5,4.5 +12151,0,0.497246,2,2,1,2,3,,4,2,Eureka,Rd,1578308,4.597,5.094,0,11.933903,3.7,5 +17698,0,0.503502,1,1,0,2,4,,4,2,Middle Belt,Rd,1674403,4.921,5.424,0,12.084045,4.5,4.5 +17715,0,0.504424,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,5.16,5.664,0,12.106184,4.5,4.5 +18327,0,0.526778,1,1,0,2,4,,4,2,Inkster,Rd,1674404,5.593,6.12,0,12.642677,4.5,4.5 +30671,0,0.500107,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.002569,0.15,4 +32173,0,0.505223,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.12536,0.15,4 +18139,0,0.496716,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,4.663,5.16,0,11.921193,4.5,4.5 +18220,0,0.357798,1,1,0,2,5,,5,2,Middle Belt,Rd,1674403,4.06,4.418,0,8.587142,3.7,5 +32172,0,0.501459,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.035012,0.15,4 +17822,0,0.502875,1,1,0,2,4,,4,2,Middle Belt,Rd,1674403,4.418,4.921,0,12.068999,4.5,4.5 +31067,0,0.505278,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.126683,0.15,4 +12520,0,0.497747,2,2,1,2,3,,4,2,Eureka,Rd,1578308,4.1,4.597,0,11.945939,3.7,5 +32079,0,0.549579,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.189887,0.15,4 +17526,0,0.261114,1,1,0,2,4,,4,2,Inkster,Rd,1674404,4.845,5.106,0,6.266739,4.5,4.5 +19126,0,0.47543,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,5.664,6.139,0,11.410311,4.5,4.5 +17947,0,0.248838,1,1,0,2,4,,4,2,Inkster,Rd,1674404,4.596,4.845,0,5.972101,4.5,4.5 +18931,0,0.468221,1,1,0,2,4,,4,2,Inkster,Rd,1674404,5.106,5.574,0,11.237301,4.5,4.5 +18458,0,0.019337,1,1,0,2,4,,4,2,Inkster,Rd,1674404,5.574,5.593,0,0.464078,4.5,4.5 +12519,0,0.403072,2,2,1,2,3,,4,2,Eureka,Rd,1578308,5.094,5.497,0,9.673734,3.7,5 +32075,0,0.504672,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.112125,0.15,4 +32076,0,0.4891,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.7384,0.15,4 +32161,0,0.515958,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.382995,0.15,4 +12147,0,0.096986,2,2,1,2,3,,4,2,Eureka,Rd,1578308,5.497,5.594,0,2.327672,3.7,5 +15017,1,2.211512,3,0,0,1,1,,4,2,N I 75,,1592010,2.38,4.591,0,,0.8,7.5 +15620,-1,2.311135,0,3,0,1,1,,4,2,S I 75,,1595106,2.412,4.722,0,,0.8,7.5 +16168,0,0.259976,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,1.035,1.295,0,6.239421,4.5,4.5 +16204,0,0.680208,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,0.284,0.964,0,16.324994,5.8,4.5 +16774,0,1.001877,1,1,0,2,4,,4,2,Huron River,Dr,1606009,1.414,2.415,0,24.045038,4.5,4.5 +17548,0,0.346111,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,1.216,1.562,0,8.306674,4.5,4.5 +17801,0,0.821862,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,4.396,5.218,0,19.724678,4.5,4.5 +18582,0,0.406604,2,2,0,2,5,,4,2,Hall,Rd,1692302,0.583,0.989,0,9.758484,5.8,4.5 +37345,1,0.138581,1,0,0,1,1,RON,4,2,SB Telegraph/W I 94,RAMP,1578710,0,0.139,0,,1.09,4 +21458,0,0.743412,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,0.397,1.14,0,17.841893,3.7,5 +30676,0,0.565165,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.563962,0.15,4 +30681,0,0.574856,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.796544,0.15,4 +30685,0,0.360429,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.650285,0.15,4 +30688,0,0.398647,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.567522,0.15,4 +32130,0,0.493272,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.83852,0.15,4 +17079,0,1.070294,1,1,0,2,4,,4,2,Huron River,Dr,1606009,0.344,1.414,0,25.687062,4.5,4.5 +18067,0,0.678464,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,0.093,0.771,0,16.283127,4.5,4.5 +30315,0,0.609266,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.622392,0.15,4 +17062,0,0.087405,1,1,0,2,4,,4,2,Huron River,Dr,1606101,0.249,0.337,0,2.097729,4.5,4.5 +21661,0,0.073106,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,0.324,0.397,0,1.75454,3.7,5 +32134,0,0.178551,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.285221,0.15,4 +16183,0,0.303943,1,1,1,2,5,,4,2,Erie,St,1606010,0.07,0.374,0,7.29464,5.8,4.5 +17080,0,0.278708,2,2,0,2,4,,4,2,Huron River,Dr,1606009,0.055,0.333,0,6.689003,4.5,4.5 +21667,0,0.162939,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,0,0.163,0,3.910536,3.7,5 +32136,0,0.278087,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.67408,0.15,4 +20379,0,0.028604,2,2,1,2,3,,4,6,Telegraph,Rd,4300001,28.538,28.567,0,0.686498,3.7,5 +20584,0,0.017279,2,2,0,2,3,,4,6,Telegraph,Rd,4300001,28.521,28.538,0,0.4147,3.7,5 +21668,0,0.080052,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,0.163,0.243,0,1.92125,3.7,5 +21922,0,0.080713,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,0.243,0.324,0,1.937113,3.7,5 +18250,-1,0.08013,0,2,0,2,4,,4,2,Garden,Blvd,1692303,0,0.08,0,1.923116,4.5,4.5 +24280,1,0.0886,2,0,0,2,4,,4,2,Garden,Blvd,4710963,0,0.089,0,2.1264,4.5,4.5 +16777,0,0.01046,1,1,0,2,4,,4,2,Huron River,Dr,1606009,0.333,0.344,0,0.251031,4.5,4.5 +18251,0,0.012492,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,0.08,0.093,0,0.299814,4.5,4.5 +30318,0,0.215348,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.168345,0.15,4 +17735,0,0.444885,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,0.771,1.216,0,10.677239,4.5,4.5 +30687,0,0.658669,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.808066,0.15,4 +16169,0,0.448002,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,0,0.448,0,10.752046,4.5,4.5 +17084,0,0.24713,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,1.728,1.975,0,5.931128,5.8,4.5 +17802,0,0.718306,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,3.152,3.87,0,17.239334,4.5,4.5 +17870,0,0.522346,1,1,0,2,4,,4,2,West,Rd,1674210,4.009,4.531,0,12.536294,4.5,4.5 +21515,0,0.394014,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,1.872,2.266,0,9.45634,3.7,5 +21997,0,0.311685,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,1.488,1.799,0,7.480448,3.7,5 +30535,0,0.638059,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.313408,0.15,4 +30690,0,0.255191,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.12459,0.15,4 +30693,0,0.474274,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.382577,0.15,4 +32135,0,0.364517,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.748406,0.15,4 +17087,0,0.7645,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,0.964,1.728,0,18.347995,5.8,4.5 +32140,0,0.171876,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.125028,0.15,4 +32156,0,0.100304,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.407287,0.15,4 +21245,0,0.347818,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,1.14,1.488,0,8.347636,3.7,5 +16196,0,0.173074,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,2.458,2.631,0,4.15378,5.8,4.5 +18255,0,0.250838,1,1,0,2,4,,4,2,West,Rd,1674210,3.758,4.009,0,6.020123,4.5,4.5 +30691,0,0.496799,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.923176,0.15,4 +30692,0,0.517956,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.430937,0.15,4 +16781,0,0.483561,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,1.975,2.458,0,11.605461,5.8,4.5 +17083,0,0.342759,1,1,0,2,5,,4,2,Arsenal,Rd,1606007,2.631,2.974,0,8.226211,5.8,4.5 +17437,0,0.305254,1,1,0,2,4,,4,2,West,Rd,1674210,3.453,3.758,0,7.326099,4.5,4.5 +17050,0,0.58725,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,0.448,1.035,0,14.093994,4.5,4.5 +30684,0,0.19753,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.740722,0.15,4 +30689,0,0.444219,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.661264,0.15,4 +21730,0,0.073265,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,1.799,1.872,0,1.758356,3.7,5 +37313,0,0.271516,2,2,1,2,3,,4,2,West,Rd,1674210,4.981,5.252,0,6.516389,3.7,5 +18203,0,0.329487,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,4.067,4.396,0,7.907686,4.5,4.5 +37310,0,0.352557,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,3.374,3.726,0,8.461378,3.7,5 +21299,0,0.551723,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,2.266,2.818,0,13.241364,3.7,5 +18646,0,0.1967,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,3.87,4.067,0,4.720798,4.5,4.5 +30682,0,0.459373,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.024952,0.15,4 +30683,0,0.379024,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.096575,0.15,4 +37311,0,0.147294,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,3.726,3.873,0,3.535066,3.7,5 +37312,0,0.450125,1,1,0,2,4,,4,2,West,Rd,1674210,4.531,4.981,0,10.803002,4.5,4.5 +37360,1,0.028568,2,0,0,2,4,,3,5,Maple,Rd,1452206,3.087,3.116,0,0.685635,6,4.5 +37315,0,0.191836,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0.181,0.372,0,4.604056,3.7,5 +37391,-1,0.00684,0,1,0,2,4,,5,8,Winans Lake,Rd,4105274,0.057,0.064,0,0.164152,3,4 +37361,-1,0.026799,0,2,0,2,4,,3,5,Maple,Rd,4605989,0.05,0.077,0,0.643166,6,4.5 +37346,1,0.382726,2,0,0,1,1,RON,4,2,Telegraph/W I 94,RAMP,1578710,0.139,0.521,0,,1.09,4 +37365,1,0.029842,2,0,0,2,4,,3,5,Maple,Rd,1452206,3.173,3.203,0,0.716202,6,4.5 +37314,0,0.180614,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0,0.181,0,4.334729,3.7,5 +37363,0,0.057132,1,1,0,2,4,,3,5,Maple,Rd,1452206,3.116,3.173,0,1.37116,6,4.5 +37390,1,0.011217,1,0,0,2,4,,5,8,Hamburg,Rd,4105277,0,0.011,0,0.269204,3,4 +37358,-1,0.021846,0,1,0,2,4,,3,5,NB N Maple/SB N Maple,TURN,4605988,0,0.022,0,0.524312,6,4.5 +37316,0,0.372427,1,1,0,2,5,,4,2,Old Dix Toledo,Hwy,4718579,0,0.372,0,8.938258,5.8,4.5 +37359,1,0.017336,2,0,0,2,4,,3,5,Maple,Rd,1452206,3.07,3.087,0,0.41606,6,4.5 +14791,1,0.40902,3,0,0,1,1,,4,2,N I 75,,1592010,0.507,0.916,0,,0.8,7.5 +15074,1,0.2997,3,0,0,1,1,,4,2,N I 75,,1592010,1.719,2.019,0,,0.8,7.5 +15503,-1,0.559257,0,3,0,1,1,,4,2,S I 75,,1595106,0.514,1.073,0,,0.8,7.5 +15659,1,0.380279,1,0,0,1,1,ROF,4,2,N I 75/Gibraltar,RAMP,1592107,0,0.38,0,,2.24,5 +18472,0,0.31783,2,2,1,2,4,,4,2,Gibraltar,Rd,1692303,2.041,2.359,0,7.627921,4.5,4.5 +18735,0,0.6255,1,1,0,2,5,GRV,4,2,Woodruff,Rd,1694803,1.147,1.772,0,15.011995,6.55,4.5 +19089,0,0.319664,1,1,0,2,5,,4,2,Olmstead,Rd,1694707,1.227,1.547,0,7.671932,5.8,4.5 +30678,0,0.471424,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.314171,0.15,4 +31849,0,0.507703,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.184866,0.15,4 +17781,0,0.473112,1,1,0,2,5,,4,2,Olmstead,Rd,1694707,0.305,0.778,0,11.354693,5.8,4.5 +30679,0,0.0853,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.047201,0.15,4 +30313,0,0.192515,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.620371,0.15,4 +30312,0,0.084598,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.030342,0.15,4 +17476,0,0.449385,1,1,0,2,5,,4,2,Olmstead,Rd,1694707,0.778,1.227,0,10.785245,5.8,4.5 +18581,0,0.582926,2,2,0,2,5,,4,2,Hall,Rd,1692302,0,0.583,0,13.990219,5.8,4.5 +18838,0,0.284632,2,2,1,2,4,,4,2,Gibraltar,Rd,1692303,1.757,2.041,0,6.831177,4.5,4.5 +25533,0,0.501399,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.033578,0.15,4 +19051,0,0.195241,2,2,1,2,4,,4,2,Gibraltar,Rd,1692303,1.562,1.757,0,4.68578,4.5,4.5 +15125,1,0.80348,3,0,0,1,1,,4,2,N I 75,,1592010,0.916,1.719,0,,0.8,7.5 +20239,0,0.399886,1,1,0,2,4,,4,2,Old Fort,St,4302168,1.633,2.033,0,9.597253,4.5,4.5 +31850,0,0.493101,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.834413,0.15,4 +20426,0,0.053897,1,1,0,2,4,,4,2,Old Fort,St,4302168,1.579,1.633,0,1.293524,4.5,4.5 +31851,0,0.575605,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.814515,0.15,4 +14793,-1,0.370316,0,3,0,1,1,,4,2,S I 75,,1595106,2.042,2.412,0,,0.8,7.5 +14822,1,0.347576,1,0,0,1,1,RON,4,2,W Gibraltar/N I 75,RAMP,1592110,0,0.347,0,,1.09,4 +15070,1,0.361067,3,0,0,1,1,,4,2,N I 75,,1592010,2.019,2.38,0,,0.8,7.5 +15152,1,0.40726,1,0,0,1,1,ROF,4,2,S I 75/W Gibraltar,RAMP,1595110,0,0.407,0,,2.24,5 +17424,0,0.093565,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,2.631,2.724,0,2.24555,4.5,4.5 +32131,0,0.559832,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.435975,0.15,4 +15051,1,0.299128,1,0,0,1,1,RON,4,2,Gibraltar/S I 75,RAMP,1593808,0,0.299,0,,1.09,4 +15104,1,0.366379,1,0,0,1,1,ROF,4,2,S I 75/E Gibraltar,,1595109,0,0.366,0,,2.24,5 +15360,1,0.297253,1,0,0,1,1,RON,4,2,E Gibraltar/N I 75,RAMP,1592108,0,0.297,0,,1.09,4 +15400,-1,0.268377,0,3,0,1,1,,4,2,S I 75,,1595106,1.773,2.042,0,,0.8,7.5 +18252,0,0.121261,2,2,1,2,4,,4,2,Gibraltar,Rd,1692303,2.359,2.48,0,2.910255,4.5,4.5 +17736,0,0.10795,1,1,1,2,4,,4,2,Gibraltar,Rd,1692303,2.523,2.631,0,2.590796,4.5,4.5 +17965,0,0.04258,2,2,1,2,4,,4,2,Gibraltar,Rd,1692303,2.48,2.523,0,1.021929,4.5,4.5 +17049,0,0.732812,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,1.295,2.027,0,17.587481,4.5,4.5 +18644,0,0.171771,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,5.218,5.39,0,4.122498,4.5,4.5 +19117,0,0.147913,2,2,1,2,3,,4,2,West,Rd,1674210,5.854,6.002,0,3.54992,3.7,5 +30672,0,0.442576,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.621831,0.15,4 +30675,0,0.629349,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.104372,0.15,4 +30694,0,0.131223,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.149352,0.15,4 +30697,0,0.142977,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.431436,0.15,4 +18254,0,0.498687,2,2,1,2,3,,4,2,West,Rd,1674210,5.252,5.751,0,11.968495,3.7,5 +30695,0,0.495092,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.882207,0.15,4 +30696,0,0.504941,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.118582,0.15,4 +17869,0,0.103211,2,2,1,2,3,,4,2,West,Rd,1674210,5.751,5.854,0,2.477061,3.7,5 +16162,0,0.575408,2,2,0,2,4,,4,2,Vreeland,Rd,1606105,2.027,2.603,0,13.809803,4.5,4.5 +17799,0,0.66475,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,5.397,6.061,0,15.953992,4.5,4.5 +19110,0,0.196472,3,3,1,2,3,,4,2,West,Rd,1674210,6.386,6.582,0,4.71532,3.7,5 +23808,1,0.533705,2,0,0,2,5,DV2,4,2,Hall,Rd,4707704,0.491,1.024,0,12.808928,5.8,4.5 +24481,-1,0.484352,0,2,0,2,5,DV2,4,2,Hall,Rd,4710003,0.659,1.143,0,11.624437,5.8,4.5 +32133,0,0.50187,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.044874,0.15,4 +23809,1,0.460446,2,0,0,2,5,DV2,4,2,Hall,Rd,4707704,0.03,0.491,0,11.050711,5.8,4.5 +24489,-1,0.509935,0,2,0,2,5,DV2,4,2,Hall,Rd,4710003,0.149,0.659,0,12.238445,5.8,4.5 +18201,0,0.007112,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,5.39,5.397,0,0.170693,4.5,4.5 +14918,1,0.339839,1,0,0,1,1,RON,4,2,West/S I 75,RAMP,1595201,0,0.34,0,,1.09,4 +15242,-1,0.718524,0,3,0,1,1,,4,2,S I 75,,1595106,4.722,5.441,0,,0.8,7.5 +40307,1,0.327436,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,5.681,6.008,0,7.858463,3.7,5 +19114,0,0.020077,2,2,1,2,3,,4,2,West,Rd,1674210,6.169,6.19,0,0.481851,3.7,5 +23834,1,0.17075,1,0,0,1,1,ROF,4,2,N I 75/E West,RAMP,4707547,0,0.171,0,,2.24,5 +18230,0,0.102669,2,2,1,2,3,,4,2,West,Rd,1674210,6.009,6.111,0,2.464058,3.7,5 +18669,0,0.006845,2,2,1,2,3,,4,2,West,Rd,1674210,6.002,6.009,0,0.164276,3.7,5 +17834,0,0.058068,2,2,1,2,3,,4,2,West,Rd,1674210,6.111,6.169,0,1.39363,3.7,5 +18666,0,0.119687,2,2,1,2,3,,4,2,West,Rd,1674210,6.19,6.309,0,2.872499,3.7,5 +17828,0,0.068855,3,3,1,2,3,,4,2,West,Rd,1674210,6.317,6.386,0,1.652526,3.7,5 +18227,0,0.007954,2,2,1,2,3,,4,2,West,Rd,1674210,6.309,6.317,0,0.190901,3.7,5 +31875,0,0.496202,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.908859,0.15,4 +12306,1,1.514628,2,0,0,1,2,,4,2,N I 75/US 24,CONN,1579905,0,1.514,0,,0.8,7.5 +12514,0,0.24882,2,2,1,2,3,,4,2,Eureka,Rd,1578308,7.088,7.336,0,5.971671,3.7,5 +13191,-1,1.589024,0,2,0,1,2,,4,2,S I 75/US 24,CONN,1578409,0,1.589,0,,0.8,7.5 +14766,-1,0.416677,0,3,0,1,1,,4,2,S I 75,,1595106,7.13,7.546,0,,0.8,7.5 +15251,0,0.24937,1,1,0,2,5,,4,2,Carter,Rd,1594403,0,0.249,0,5.984882,5.8,4.5 +37372,1,0.043288,2,0,0,2,4,,4,5,Maple,Rd,1452206,3.214,3.258,0,1.03892,4.5,4.5 +15654,0,0.50932,1,1,0,2,4,,4,2,King,Rd,1592206,2.004,2.513,0,12.223683,4.5,4.5 +15699,1,0.428126,3,0,0,1,1,,4,2,N I 75,,1592010,7.132,7.56,0,,0.8,7.5 +16621,0,0.449211,1,1,1,2,4,,4,2,Sibley,Rd,1607308,6.993,7.442,0,10.781058,4.5,4.5 +17567,0,0.716844,2,2,0,2,3,,4,2,Dix Toledo,Hwy,1688707,0,0.717,0,17.204245,3.7,5 +17839,0,0.730202,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,7.66,8.39,0,17.524846,4.5,4.5 +17845,0,0.466799,1,1,0,2,5,,4,2,Racho,Rd,1692908,0.062,0.528,0,11.203172,5.8,4.5 +18372,0,0.518344,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,0,0.518,0,12.44026,4.5,4.5 +19641,1,0.341542,1,0,0,1,1,RON,4,2,Sibley/N I 75,RAMP,1840807,0,0.341,0,,1.09,4 +19645,1,0.344844,1,0,0,1,1,ROF,4,2,S I 75/Sibley,RAMP,1840806,0,0.345,0,,2.24,5 +37392,1,0.055541,1,0,0,2,5,,5,8,Hamburg,Rd,940105,1.955,2.011,0,1.332996,3.7,5 +22059,0,0.524851,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,5.391,5.915,0,12.596417,3.7,5 +30699,0,0.566128,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.58707,0.15,4 +30798,0,0.620037,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.88089,0.15,4 +32149,0,0.256502,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.15606,0.15,4 +32165,0,0.552934,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.270409,0.15,4 +32167,0,0.586488,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.075708,0.15,4 +16378,0,0.891876,1,1,0,2,4,,4,2,Sibley,Rd,1607308,6.101,6.993,0,21.405024,4.5,4.5 +21514,0,0.306507,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,4.373,4.679,0,7.356162,3.7,5 +32147,0,1.018192,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.436615,0.15,4 +16379,0,0.311796,1,1,0,2,4,,4,2,Sibley,Rd,1607308,5.682,5.994,0,7.483104,4.5,4.5 +32145,0,0.513396,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.321493,0.15,4 +16624,0,0.107386,1,1,0,2,4,,4,2,Sibley,Rd,1607308,5.994,6.101,0,2.577266,4.5,4.5 +21606,0,0.436116,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,3.937,4.373,0,10.466785,3.7,5 +32151,0,0.495413,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.889901,0.15,4 +37370,-1,0.031268,0,2,0,2,4,,4,5,NB N Maple/SB N Maple,TURN,1431903,0.44,0.471,0,0.750438,4.5,4.5 +37371,-1,0.040569,0,2,0,2,4,,4,5,Maple,Rd,4605990,0.046,0.087,0,0.973657,4.5,4.5 +37369,1,0.011889,2,0,0,2,4,,4,5,Maple,Rd,1452206,3.203,3.214,0,0.285342,4.5,4.5 +37368,-1,0.012957,0,2,0,2,4,,4,5,Maple,Rd,4605990,0.033,0.046,0,0.310979,4.5,4.5 +21789,0,0.063605,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,3.873,3.937,0,1.526525,3.7,5 +37309,0,0.55599,2,2,1,2,3,,4,2,Telegraph,Rd,4700038,2.818,3.374,0,13.343765,3.7,5 +21244,0,0.513629,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,4.877,5.391,0,12.327089,3.7,5 +21348,0,0.198041,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,4.679,4.877,0,4.752983,3.7,5 +12146,0,0.498534,2,2,1,2,3,,4,2,Eureka,Rd,1578308,6.089,6.587,0,11.964821,3.7,5 +18065,0,0.504071,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,1.077,1.581,0,12.097698,4.5,4.5 +18673,0,0.394602,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,6.653,7.047,0,9.470444,4.5,4.5 +21729,0,0.370789,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,6.506,6.876,0,8.898941,3.7,5 +30418,0,0.503959,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.09502,0.15,4 +30706,0,0.506224,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.149387,0.15,4 +31113,0,0.482873,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.588962,0.15,4 +32174,0,0.493161,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.835872,0.15,4 +18373,0,0.559265,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,0.518,1.077,0,13.422368,4.5,4.5 +19124,0,0.461889,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,6.191,6.653,0,11.085327,4.5,4.5 +32163,0,0.490138,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.763314,0.15,4 +17868,0,0.496427,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,1.581,2.077,0,11.914244,4.5,4.5 +17546,0,0.499495,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,2.077,2.577,0,11.98787,4.5,4.5 +18234,0,0.612639,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,7.047,7.66,0,14.703328,4.5,4.5 +21921,0,0.590644,2,2,0,2,3,,4,2,Telegraph,Rd,4700038,5.915,6.506,0,14.175456,3.7,5 +30707,0,0.557305,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.375315,0.15,4 +30708,0,0.500891,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.021373,0.15,4 +11881,-1,0.1984,0,2,0,2,3,DIV,4,2,Telegraph,Rd,1576806,0.406,0.604,0,4.761601,3.7,5 +12516,0,0.479059,2,2,1,2,3,,4,2,Eureka,Rd,1578308,6.587,7.066,0,11.497421,3.7,5 +21457,1,0.228731,2,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,7.26,7.489,0,5.489555,3.7,5 +31116,0,0.503766,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.090383,0.15,4 +32064,0,0.480698,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.536749,0.15,4 +32175,0,0.496104,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.906488,0.15,4 +32176,0,0.520364,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.488737,0.15,4 +32065,0,0.498356,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.960534,0.15,4 +11882,-1,0.405674,0,2,0,2,3,DIV,4,2,Telegraph,Rd,1576806,0,0.406,0,9.736186,3.7,5 +21607,1,0.384053,2,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,6.876,7.26,0,9.217284,3.7,5 +11880,-1,0.501335,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,0.604,1.105,0,12.032049,3.7,5 +21349,1,0.497215,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,7.489,7.986,0,11.933166,3.7,5 +12145,0,0.021894,2,2,1,2,3,,4,2,Eureka,Rd,1578308,7.066,7.088,0,0.525467,3.7,5 +14944,1,1.382254,3,0,0,1,1,,4,2,N I 75,,1592010,5.316,6.697,0,,0.8,7.5 +14953,-1,1.18132,0,3,0,1,1,,4,2,S I 75,,1595106,5.441,6.622,0,,0.8,7.5 +15649,0,0.327627,1,1,0,2,4,,4,2,King,Rd,1592206,2.682,3.01,0,7.863054,4.5,4.5 +16613,0,0.094818,2,2,0,2,4,,4,2,Sibley,Rd,1607308,8.024,8.118,0,2.275643,4.5,4.5 +21302,0,0.269688,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,1.055,1.324,0,6.472501,3.7,5 +22111,0,0.624516,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,1.324,1.948,0,14.988379,3.7,5 +30702,0,0.530245,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.725883,0.15,4 +32137,0,0.564849,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.556388,0.15,4 +32153,0,0.509239,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.221736,0.15,4 +15355,0,0.168833,1,1,0,2,4,,4,2,King,Rd,1592206,2.513,2.682,0,4.052001,4.5,4.5 +21568,0,0.322271,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0.559,0.881,0,7.734498,3.7,5 +32139,0,0.483582,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.605976,0.15,4 +21849,0,0.084488,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0.372,0.457,0,2.027718,3.7,5 +37375,1,0.030857,1,0,0,2,4,,4,5,Maple,Rd,1452206,3.435,3.466,0,0.740573,4.5,4.5 +32150,0,0.208633,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.007188,0.15,4 +15033,0,0.054103,1,1,0,2,5,,4,2,Carter,Rd,1594403,0.249,0.303,0,1.298478,5.8,4.5 +37374,0,0.177735,1,1,0,2,4,,4,5,Maple,Rd,1452206,3.258,3.435,0,4.265628,4.5,4.5 +21671,0,0.102307,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0.457,0.559,0,2.455371,3.7,5 +21408,0,0.173326,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,0.881,1.055,0,4.159819,3.7,5 +16377,0,0.58222,1,1,1,2,4,,4,2,Sibley,Rd,1607308,7.442,8.024,0,13.973285,4.5,4.5 +30701,0,0.515607,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.374578,0.15,4 +30703,0,0.341913,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.205908,0.15,4 +15348,0,0.772219,1,1,0,2,4,,4,2,King,Rd,1592206,3.01,3.782,0,18.533266,4.5,4.5 +31873,0,0.548248,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.157955,0.15,4 +37128,1,0.582128,1,0,0,1,1,ROF,4,2,N I 75/W West,RAMP,4718434,0,0.582,0,,2.24,5 +40187,-1,0.764445,0,2,0,2,3,DIV,4,2,Fort,St,1592106,3.809,4.573,0,18.346689,3.7,5 +14941,1,0.43517,3,0,0,1,1,,4,2,N I 75,,1592010,6.697,7.132,0,,0.8,7.5 +40382,1,0.034742,1,0,0,2,4,,3,5,Geddes,Rd,1448104,3.055,3.09,0,0.833805,6,4.5 +40368,1,0.262477,1,0,0,1,1,ROF,4,2,N I 75/Dix Toledo,RAMP,1592207,0,0.262,0,,2.24,5 +15786,-1,0.252768,0,3,0,1,1,,4,2,S I 75,,1595106,6.622,6.874,0,,0.8,7.5 +16372,0,0.112149,2,2,1,2,4,,4,2,Sibley,Rd,1607308,8.415,8.527,0,2.69158,4.5,4.5 +40370,1,0.309025,1,0,0,1,1,ROF,4,2,S I 75/Dix Toledo,RAMP,1594407,0,0.309,0,,2.24,5 +40383,1,0.235025,1,0,0,1,2,ROF,4,5,N US 23/Geddes,RAMP,1431310,0,0.235,0,,2.24,5 +31867,0,0.522917,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.550007,0.15,4 +40386,1,0.037783,1,0,0,2,4,,4,5,Geddes,Rd,1448104,3.208,3.246,0,0.906785,4.5,4.5 +40385,0,0.118815,1,1,0,2,4,,3,5,Geddes,Rd,1448104,3.09,3.208,0,2.85157,6,4.5 +40384,1,0.294944,1,0,0,1,2,RON,4,5,Geddes/N US 23,RAMP,1431402,0.02,0.315,0,,1.09,4 +15018,-1,0.255347,0,3,0,1,1,,4,2,S I 75,,1595106,6.874,7.13,0,,0.8,7.5 +16373,0,0.22593,2,2,1,2,4,,4,2,Sibley,Rd,1607308,8.118,8.344,0,5.422329,4.5,4.5 +40367,0,0.14324,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,1.948,2.092,0,3.437749,3.7,5 +40371,1,0.189963,1,0,0,1,1,RON,4,2,Dix Toledo/N I 75,RAMP,4719476,0,0.19,0,,1.09,4 +40381,-1,0.030753,0,2,0,2,4,,3,5,Geddes,Rd,4606197,0.062,0.093,0,0.738078,6,4.5 +40380,1,0.19349,1,0,0,1,2,RON,3,5,Geddes/S US 23,RAMP,4606199,0.019,0.212,0,,1.09,4 +40369,1,0.218042,1,0,0,1,1,RON,4,2,Dix Toledo/S I 75,RAMP,4719477,0,0.218,0,,1.09,4 +16612,0,0.070948,2,2,1,2,4,,4,2,Sibley,Rd,1607308,8.344,8.415,0,1.702753,4.5,4.5 +21409,0,0.287186,2,2,1,2,3,,4,2,Dix Toledo,Hwy,4718578,2.092,2.379,0,6.892473,3.7,5 +12510,1,0.348328,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.094,8.442,0,8.359863,3.7,5 +14896,1,0.561414,3,0,0,1,1,,4,2,N I 75,,1592010,8.3,8.861,0,,0.8,7.5 +15663,-1,0.656362,0,3,0,1,1,,4,2,S I 75,,1595106,8.21,8.866,0,,0.8,7.5 +19121,0,0.756782,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,8.664,9.421,0,18.162766,4.5,4.5 +19130,0,0.675286,1,1,0,2,4,,4,2,Racho,Rd,1692908,1.085,1.76,0,16.206874,4.5,4.5 +23793,-1,0.251613,0,3,0,2,3,DIV,4,2,Eureka,Rd,4707874,0,0.252,0,6.03872,3.7,5 +30323,0,0.471065,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.305563,0.15,4 +30795,0,0.578044,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.873046,0.15,4 +32178,0,0.346959,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.327022,0.15,4 +32262,0,0.470753,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.298069,0.15,4 +17846,0,0.497652,1,1,0,2,5,,4,2,Racho,Rd,1692908,0.528,1.026,0,11.943657,5.8,4.5 +30698,0,0.422122,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.13092,0.15,4 +30700,0,0.545443,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.090636,0.15,4 +17531,0,0.059382,1,1,0,2,4,,4,2,Racho,Rd,1692908,1.026,1.085,0,1.42517,4.5,4.5 +17710,0,0.274452,1,1,0,2,4,,4,2,Pennsylvania,Rd,1674307,8.39,8.664,0,6.586858,4.5,4.5 +12139,0,0.443845,2,3,1,2,3,,4,2,Eureka,Rd,1578308,7.65,8.094,0,10.652275,3.7,5 +18796,0,0.241723,1,1,0,2,4,,4,2,Racho,Rd,1692908,1.76,2.002,0,5.801353,4.5,4.5 +30705,0,0.413103,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.914472,0.15,4 +32058,0,0.318899,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.653573,0.15,4 +12143,0,0.248315,2,2,1,2,3,,4,2,Eureka,Rd,1578308,7.336,7.585,0,5.959569,3.7,5 +12512,0,0.065744,2,3,1,2,3,,4,2,Eureka,Rd,1578308,7.585,7.65,0,1.577844,3.7,5 +32177,0,0.332135,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.971237,0.15,4 +18563,0,0.32669,1,1,0,2,4,,4,2,Racho,Rd,1692908,2.002,2.328,0,7.840569,4.5,4.5 +30799,0,0.254745,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.113889,0.15,4 +14829,-1,0.66403,0,3,0,1,1,,4,2,S I 75,,1595106,7.546,8.21,0,,0.8,7.5 +15615,1,0.739999,3,0,0,1,1,,4,2,N I 75,,1592010,7.56,8.3,0,,0.8,7.5 +30317,0,0.474649,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.391579,0.15,4 +31864,0,0.279844,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.716255,0.15,4 +12509,1,0.105899,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.498,8.604,0,2.541584,3.7,5 +14474,1,0.226834,1,0,0,1,1,RON,4,2,Eureka/S I 75,RAMP,1589406,0.083,0.31,0,,1.09,4 +14795,1,0.207533,1,0,0,1,1,RON,4,2,Eureka/N I 75,RAMP,1592303,0,0.208,0,,1.09,4 +14877,1,0.57261,3,0,0,1,1,,4,2,N I 75,,1592010,9.134,9.707,0,,0.8,7.5 +14887,1,0.272958,3,0,0,1,1,,4,2,N I 75,,1592010,8.861,9.134,0,,0.8,7.5 +15119,1,0.304503,1,0,0,1,1,ROF,4,2,S I 75/Eureka,RAMP,1595203,0,0.304,0,,2.24,5 +15622,1,0.373187,1,0,0,1,1,ROF,4,2,N I 75/Eureka,RAMP,1592302,0,0.373,0,,2.24,5 +15637,-1,0.595715,0,3,0,1,1,,4,2,S I 75,,1595106,8.866,9.461,0,,0.8,7.5 +23790,-1,0.109439,0,3,0,2,3,DIV,4,2,Eureka,Rd,4707874,0.405,0.514,0,2.626527,3.7,5 +30794,0,0.546634,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.119208,0.15,4 +32223,0,0.52835,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.680397,0.15,4 +32225,0,0.513993,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.335843,0.15,4 +23792,-1,0.153131,0,3,0,2,3,DIV,4,2,Eureka,Rd,4707874,0.252,0.405,0,3.675143,3.7,5 +12135,1,0.055442,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.442,8.498,0,1.330613,3.7,5 +13891,1,0.083259,1,0,0,1,1,RON,4,2,E Eureka/S I 75,RAMP,1589406,0,0.083,0,,1.09,4 +37127,1,0.469743,1,0,0,1,1,ROF,4,2,S I 75/E West,RAMP,4718435,0,0.47,0,,2.24,5 +19520,1,0.066517,1,0,0,1,1,RON,4,2,W Eureka/S I 75,RAMP,1881002,0.015,0.082,0,,1.09,4 +19521,1,0.014982,1,0,0,2,3,RSF,4,2,W Eureka/S I 75,RAMP,1881002,0,0.015,0,0.359576,3.7,5 +12079,1,0.205166,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.763,8.969,0,4.923991,3.7,5 +23789,-1,0.170554,0,3,0,2,3,DIV,4,2,Eureka,Rd,4707874,0.514,0.685,0,4.093298,3.7,5 +12460,1,0.12593,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.638,8.763,0,3.022318,3.7,5 +12134,1,0.033951,3,0,0,2,3,DIV,4,2,Eureka,Rd,1578308,8.604,8.638,0,0.814829,3.7,5 +15323,1,0.032483,1,0,0,2,3,RSF,4,2,N I 75/Eureka,RAMP,1592302,0.373,0.406,0,0.779581,3.7,5 +23788,-1,0.188572,0,3,0,2,3,DIV,4,2,Eureka,Rd,4707874,0.685,0.873,0,4.525718,3.7,5 +19040,0,0.285612,1,1,0,2,5,,4,2,Lee,Rd,1709810,0.672,0.957,0,6.854686,5.8,4.5 +20086,0,0.260024,1,1,0,2,4,,5,6,US Turnpike,,4301655,13.34,13.599,0,6.240584,3,4 +20472,0,0.260737,1,1,0,2,4,,5,6,US Turnpike,,4301655,12.187,12.448,0,6.257677,3,4 +20283,0,0.891826,1,1,0,2,4,,5,6,US Turnpike,,4301655,12.448,13.34,0,21.403813,3,4 +17066,0,0.341185,1,1,0,2,4,,4,2,Huron River,Dr,1606009,4.727,5.069,0,8.188434,4.5,4.5 +20287,0,0.503688,1,1,0,2,4,,4,2,Jefferson,Ave,4302169,0.85,1.354,0,12.0885,4.5,4.5 +20712,0,0.078126,1,1,0,2,4,,5,6,US Turnpike,,4302169,0,0.078,0,1.875017,3,4 +31852,0,0.424239,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.181747,0.15,4 +32121,0,0.712814,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.107538,0.15,4 +32125,0,0.172697,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.144727,0.15,4 +19039,0,0.672126,1,1,0,2,5,,4,2,Lee,Rd,1709810,0,0.672,0,16.131028,5.8,4.5 +20476,0,0.772463,1,1,0,2,4,,,2,Jefferson,Ave,4302169,0.078,0.85,0,18.539121,3,4 +32122,0,0.508608,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.206596,0.15,4 +20090,0,0.522552,1,1,0,2,4,,4,2,Jefferson,Ave,4302169,1.354,1.876,0,12.541257,4.5,4.5 +16761,0,0.083742,1,1,0,2,4,,4,2,Huron River,Dr,1606009,5.069,5.152,0,2.009811,4.5,4.5 +20780,0,0.072955,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,1.876,1.949,0,1.750912,4.5,4.5 +22246,-1,0.118538,0,1,0,2,4,,4,2,Jefferson/Huron River Cutoff,,4702732,0,0.119,0,2.844918,4.5,4.5 +19038,0,0.114545,1,1,0,2,5,,4,2,Milleville,Rd,1709806,0.356,0.47,0,2.74908,5.8,4.5 +11923,0,0.410024,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.24,12.65,0,9.840565,5,5 +14891,-1,0.417601,0,2,0,2,3,DIV,4,2,Fort,St,1592106,4.573,4.99,0,10.022435,3.7,5 +15766,1,0.44333,2,0,0,2,3,DIV,4,2,Fort,St,1592105,4.708,5.151,0,10.639927,3.7,5 +17450,0,0.829187,1,1,0,2,5,,4,2,River,Rd,1691206,2.704,3.533,0,19.900487,5.8,4.5 +17654,0,0.779048,1,1,0,2,5,,4,2,River,Rd,1691206,1.925,2.704,0,18.697153,5.8,4.5 +17751,0,0.716615,1,1,0,2,4,,4,2,Meridian,Rd,1690909,1.837,2.553,0,17.198762,4.5,4.5 +18051,0,0.705432,1,1,0,2,5,,4,2,Groh,Rd,1690905,0,0.705,0,16.930367,5.8,4.5 +18164,0,0.85492,1,1,0,2,5,,4,2,River,Rd,1691503,0.885,1.74,0,20.518091,5.8,4.5 +18663,0,0.6292,1,1,0,2,4,,3,2,Pennsylvania,Ave,1674307,12.525,13.154,0,15.100808,6,4.5 +18948,0,0.470148,1,1,0,2,4,,4,2,Grosse Ile,Pkwy,1692407,0.299,0.769,0,11.283556,4.5,4.5 +20240,0,0.181413,2,2,0,2,4,,4,2,Jefferson,Ave,4302169,7.265,7.446,0,4.353908,4.5,4.5 +20340,1,0.357397,2,0,0,2,3,DV2,4,2,Jefferson,Ave,4302169,10.036,10.393,0,8.577529,3.7,5 +22300,0,0.730315,1,1,0,2,4,,4,2,Bridge,Rd,4705855,0,0.73,0,17.527571,4.5,4.5 +22748,0,0.898175,2,2,1,2,3,,4,2,Allen,Rd,4705756,1.93,2.828,0,21.556204,3.7,5 +22881,0,0.127599,1,1,1,2,5,,3,2,Oak,St,4705862,0.649,0.777,0,3.062383,8,4.5 +23738,-1,0.68188,0,2,0,2,3,DV2,4,2,Jefferson,Ave,4707956,0,0.682,0,16.36512,3.7,5 +30426,0,0.243938,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.854503,0.15,4 +30434,0,0.507921,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.190115,0.15,4 +31651,0,0.764467,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.347204,0.15,4 +32413,0,0.980817,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,23.5396,0.15,4 +32424,0,0.227448,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.458758,0.15,4 +33770,0,0.80523,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.325522,0.15,4 +15373,1,0.513414,2,0,0,2,3,DIV,4,2,Fort,St,1592105,2.242,2.755,0,12.321927,3.7,5 +15440,-1,0.007401,0,2,0,2,3,DIV,4,2,Fort,St,1592106,3.801,3.809,0,0.177622,3.7,5 +15449,-1,0.421988,0,2,0,2,3,DIV,4,2,Fort,St,1592106,2.172,2.594,0,10.127702,3.7,5 +15497,1,0.008751,2,0,0,2,3,DIV,4,2,Fort,St,1592105,3.959,3.968,0,0.210025,3.7,5 +17023,0,0.627131,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,4.125,4.752,0,15.051155,4.5,4.5 +40199,0,0.165411,2,2,0,2,4,,3,2,Miller,Rd,1589801,1.914,2.08,0,3.969858,6,4.5 +17774,0,0.69998,1,1,0,2,5,,4,2,Gibraltar,Rd,1698604,0,0.7,0,16.799515,5.8,4.5 +18098,0,0.923116,1,1,0,2,5,,4,2,Gibraltar,Rd,1698410,0,0.923,0,22.154795,5.8,4.5 +18577,0,0.526087,1,1,0,2,5,,4,2,Gibraltar,Rd,1692303,4.463,4.989,0,12.626096,5.8,4.5 +20592,0,0.934969,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,4.206,5.14,0,22.439248,4.5,4.5 +22678,0,0.372509,1,1,0,2,3,,4,2,Allen,Rd,4705756,0.449,0.822,0,8.940209,3.7,5 +30425,0,0.44142,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.59408,0.15,4 +30428,0,0.491006,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.784155,0.15,4 +32132,0,0.508503,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.204075,0.15,4 +32142,0,1.001954,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,24.046886,0.15,4 +32197,0,0.196973,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.727354,0.15,4 +32198,0,0.140485,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.371644,0.15,4 +32208,0,0.477528,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.460665,0.15,4 +33812,0,0.192585,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.622032,0.15,4 +17642,0,0.72641,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,3.347,4.073,0,17.433832,4.5,4.5 +18513,0,0.73716,1,1,0,2,5,,4,2,Woodruff,Rd,1694803,2.793,3.53,0,17.691838,5.8,4.5 +20137,0,0.816454,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,2.998,3.814,0,19.594887,4.5,4.5 +14836,1,0.520832,2,0,0,2,3,DIV,4,2,Fort,St,1592105,1.721,2.242,0,12.499978,3.7,5 +15083,1,0.308345,2,0,0,2,3,DIV,4,2,Fort,St,1592105,1.413,1.721,0,7.40028,3.7,5 +15728,-1,0.571066,0,2,0,2,3,DIV,4,2,Fort,St,1592106,1.601,2.172,0,13.705577,3.7,5 +15729,-1,0.330989,0,2,0,2,3,DIV,4,2,Fort,St,1592106,1.27,1.601,0,7.943731,3.7,5 +18401,0,0.260294,1,1,0,2,4,,4,2,Old Fort,St,1688706,1.032,1.292,0,6.247066,4.5,4.5 +19275,0,0.389249,1,1,0,2,3,,4,2,Allen,Rd,1798905,0,0.389,0,9.341978,3.7,5 +14897,-1,0.089499,0,2,0,1,2,,4,2,Fort,St,1592106,1.181,1.27,0,,0.8,7.5 +15010,1,0.098268,2,0,0,1,2,,4,2,Fort,St,1592105,1.315,1.413,0,,0.8,7.5 +18064,0,0.152215,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,3.194,3.347,0,3.653161,4.5,4.5 +18867,0,0.139865,1,1,0,2,4,,4,2,Old Fort,St,1688706,0.892,1.032,0,3.356763,4.5,4.5 +18691,0,0.0631,1,1,0,2,3,,4,2,Gibraltar,Rd,1692303,3.119,3.182,0,1.514406,3.7,5 +18471,0,0.012549,2,2,0,2,3,,4,2,Gibraltar,Rd,1692303,3.182,3.194,0,0.301184,3.7,5 +23262,0,0.255735,1,1,0,2,3,,4,2,Allen,Rd,4705756,0,0.256,0,6.137649,3.7,5 +17991,0,0.018225,1,1,0,2,4,,4,2,Old Fort,Rd,1688706,1.292,1.311,0,0.43739,4.5,4.5 +22955,0,0.19383,1,1,0,2,3,,4,2,Allen,Rd,4705756,0.256,0.449,0,4.651926,3.7,5 +20339,0,0.13121,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,2.867,2.998,0,3.149033,4.5,4.5 +19049,0,0.390773,1,1,0,2,4,,4,2,Gibraltar,Rd,1692303,4.073,4.463,0,9.378542,4.5,4.5 +20832,0,0.391433,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,3.814,4.206,0,9.394391,4.5,4.5 +32192,0,0.63629,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.270965,0.15,4 +32195,0,0.181054,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.345287,0.15,4 +14784,1,0.297883,2,0,0,2,3,DIV,4,2,Fort,St,1592105,3.661,3.959,0,7.149186,3.7,5 +14895,-1,0.648001,0,2,0,2,3,DIV,4,2,Fort,St,1592106,2.594,3.242,0,15.552019,3.7,5 +15727,-1,0.295487,0,2,0,2,3,DIV,4,2,Fort,St,1592106,3.242,3.537,0,7.091678,3.7,5 +15775,1,0.621261,2,0,0,2,3,DIV,4,2,Fort,St,1592105,2.755,3.376,0,14.910253,3.7,5 +16140,0,0.460439,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,3.665,4.125,0,11.050524,4.5,4.5 +17733,0,0.45107,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,6.773,7.223,0,10.825677,4.5,4.5 +23334,0,0.440371,1,1,0,2,3,,4,2,Allen,Rd,4705756,1.383,1.823,0,10.568909,3.7,5 +30430,0,0.526469,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.635246,0.15,4 +33811,0,0.551794,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.243059,0.15,4 +17030,0,0.23548,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,3.113,3.349,0,5.651523,4.5,4.5 +23669,0,0.560926,1,1,0,2,3,,4,2,Allen,Rd,4705756,0.822,1.383,0,13.462227,3.7,5 +30310,0,0.510667,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.256007,0.15,4 +16151,0,0.244833,2,2,0,2,4,,4,2,Vreeland,Rd,1606105,2.868,3.113,0,5.875997,4.5,4.5 +30308,0,0.201352,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.832453,0.15,4 +17024,0,0.2692,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,3.349,3.618,0,6.460798,4.5,4.5 +32196,0,0.279434,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.706426,0.15,4 +16717,0,0.046796,1,1,0,2,4,,4,2,Vreeland,Rd,1606105,3.618,3.665,0,1.123094,4.5,4.5 +18151,0,0.317246,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,6.455,6.773,0,7.613907,4.5,4.5 +30435,0,0.454658,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.911802,0.15,4 +30436,0,0.502229,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.053488,0.15,4 +23025,0,0.107215,2,2,1,2,3,,4,2,Allen,Rd,4705756,1.823,1.93,0,2.573162,3.7,5 +14770,1,0.285224,2,0,0,2,3,DIV,4,2,Fort,St,1592105,3.376,3.661,0,6.845378,3.7,5 +18424,0,0.308911,1,1,0,2,4,,4,2,Van Horn,Rd,1674101,7.223,7.532,0,7.413855,4.5,4.5 +30431,0,0.055332,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.327958,0.15,4 +18010,1,0.042287,2,0,0,2,4,DV2,4,2,Van Horn,Rd,1674101,7.641,7.683,0,1.0149,4.5,4.5 +15726,-1,0.264338,0,2,0,2,3,DIV,4,2,Fort,St,1592106,3.537,3.801,0,6.34411,3.7,5 +18096,0,0.389831,1,1,0,2,5,,4,2,Stoeflet,St,1698403,0.369,0.759,0,9.355935,5.8,4.5 +18289,0,0.36131,1,1,0,2,5,,4,2,Adams,Dr,1698303,0.585,0.946,0,8.671438,5.8,4.5 +17734,0,0.117737,1,1,0,2,5,,,2,Gibraltar,Rd,1692303,5.089,5.206,0,2.825695,3.7,5 +32191,0,0.259978,1,1,0,2,99,,,2,Centroid Connector,,0,0,0,0,6.239464,0.15,4 +18097,0,0.221104,1,1,0,2,5,,4,2,Gibraltar,Rd,1698409,0.449,0.67,0,5.306495,5.8,4.5 +18100,0,0.116421,1,1,0,2,5,,4,2,Gibraltar,Rd,1698501,0.341,0.457,0,2.79411,5.8,4.5 +18152,0,0.099454,1,1,0,2,5,,4,2,Gibraltar,Rd,1692303,4.989,5.089,0,2.386893,5.8,4.5 +18099,0,0.005718,1,1,0,2,5,,4,2,Worth,St,1698501,0.335,0.341,0,0.137228,5.8,4.5 +32190,0,0.137621,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.302906,0.15,4 +32189,0,0.034423,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.826161,0.15,4 +18290,0,0.104651,1,1,0,2,5,,4,2,Adams,Dr,1698303,0.946,1.05,0,2.511624,5.8,4.5 +19148,0,0.054349,1,1,0,2,5,,4,2,Gibraltar,Rd,1692303,5.206,5.261,0,1.304367,5.8,4.5 +17980,0,0.710488,1,1,0,2,5,,4,2,River,Rd,1691206,0.602,1.312,0,17.051714,5.8,4.5 +18947,0,0.299056,1,1,1,2,4,,4,2,Grosse Ile,Pkwy,1692407,0,0.299,0,7.177353,4.5,4.5 +20185,0,0.488867,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,5.727,6.215,0,11.732808,4.5,4.5 +20427,0,0.796945,2,2,0,2,4,,4,2,Jefferson,Ave,4302169,6.468,7.265,0,19.126674,4.5,4.5 +30429,0,0.465271,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.166502,0.15,4 +30604,0,0.364101,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.73842,0.15,4 +32199,0,0.604838,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.516118,0.15,4 +20387,0,0.586394,1,1,1,2,4,,4,2,Jefferson,Ave,4302169,5.14,5.727,0,14.073462,4.5,4.5 +30266,0,0.248099,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.954379,0.15,4 +40193,0,0.067215,2,2,0,2,4,,4,2,Van Horn,Rd,1674101,8.443,8.51,0,1.613154,4.5,4.5 +30427,0,0.466177,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.18824,0.15,4 +20880,0,0.077253,2,2,0,2,4,,4,2,Jefferson,Ave,4302169,6.215,6.292,0,1.854064,4.5,4.5 +20645,0,0.17584,2,2,0,2,4,,4,2,Jefferson,Ave,4302169,6.292,6.468,0,4.220163,4.5,4.5 +17979,0,0.602334,1,1,0,2,5,,4,2,River,Rd,1691206,0,0.602,0,14.456022,5.8,4.5 +30420,0,0.436623,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.478945,0.15,4 +30419,0,0.312742,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.505801,0.15,4 +12356,0,0.332025,2,2,1,2,3,,3,2,Eureka,Rd,1578308,10.588,10.919,0,7.968605,5,5 +15253,0,0.379094,1,1,0,2,5,,3,2,Leroy,Ave,1594007,0.923,1.302,0,9.098262,8,4.5 +15318,0,0.758312,1,1,0,2,5,,4,2,Harrison,Ave,1592804,0.69,1.448,0,18.199478,5.8,4.5 +15344,0,0.681408,1,1,0,2,4,,4,2,King,Rd,1592206,5.313,5.994,0,16.353795,4.5,4.5 +15655,1,0.41243,3,0,0,2,3,DIV,4,2,Fort,St,1592105,7.272,7.684,0,9.898315,3.7,5 +15718,-1,0.406634,0,3,0,2,3,DIV,4,2,Fort,St,1592106,7.126,7.533,0,9.759222,3.7,5 +16355,0,0.342239,1,1,1,2,4,,4,2,Sibley,Rd,1607308,10.317,10.659,0,8.213745,4.5,4.5 +18363,0,0.250535,1,1,0,2,5,,4,2,Quarry,Rd,1663601,0,0.251,0,6.012835,5.8,4.5 +18661,0,0.673145,2,2,0,2,3,,4,2,West,Rd,1674210,8.216,8.889,0,16.155478,3.7,5 +18664,0,0.153348,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,11.089,11.242,0,3.680355,6,4.5 +20781,0,0.382405,1,1,0,2,3,,4,2,Jefferson,Ave,4302169,9.56,9.942,0,9.177721,3.7,5 +22668,0,0.515685,1,1,0,2,5,,4,2,Grange,Rd,4705846,0,0.516,0,12.376435,5.8,4.5 +23521,0,0.387133,2,2,1,2,3,,4,2,Allen,Rd,4705756,4.82,5.207,0,9.291186,3.7,5 +30528,0,0.849542,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.389,0.15,4 +30602,0,0.734954,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.638886,0.15,4 +30774,0,0.317162,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.611895,0.15,4 +31865,0,0.521285,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.510847,0.15,4 +31866,0,0.718178,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.236283,0.15,4 +32211,0,0.750876,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.021014,0.15,4 +32214,0,0.718368,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.24084,0.15,4 +32217,0,0.406977,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.767443,0.15,4 +32218,0,0.244454,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.866898,0.15,4 +32220,0,0.436052,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.465256,0.15,4 +32222,0,0.563035,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.512837,0.15,4 +32229,0,0.405448,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.73075,0.15,4 +32244,0,0.767052,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,18.409239,0.15,4 +32252,0,0.392662,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.423887,0.15,4 +15346,0,0.471306,1,1,0,2,4,,4,2,King,Rd,1592206,4.329,4.8,0,11.311339,4.5,4.5 +16588,0,0.411618,1,1,1,2,4,,4,2,Sibley,Rd,1607308,9.421,9.832,0,9.878834,4.5,4.5 +17825,0,0.505003,2,2,0,2,3,,4,2,West,Rd,1674210,7.293,7.797,0,12.120079,3.7,5 +22814,0,0.442038,2,2,1,2,3,,4,2,Allen,Rd,4705756,3.823,4.265,0,10.608923,3.7,5 +32206,0,0.502095,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.050288,0.15,4 +32232,0,0.50106,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.025436,0.15,4 +15647,0,0.277301,1,1,0,2,4,,4,2,King,Rd,1592206,4.052,4.329,0,6.655215,4.5,4.5 +18223,0,0.238468,2,2,0,2,3,,4,2,West,Rd,1674210,7.054,7.293,0,5.723231,3.7,5 +23436,0,0.495965,2,2,1,2,3,,4,2,Allen,Rd,4705756,2.828,3.324,0,11.903162,3.7,5 +31871,0,0.244939,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.878537,0.15,4 +32234,0,0.496805,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.923308,0.15,4 +23092,0,0.499904,2,2,1,2,3,,4,2,Allen,Rd,4705756,3.324,3.823,0,11.997708,3.7,5 +32233,0,0.497101,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.930432,0.15,4 +16370,0,0.338278,1,1,1,2,4,,4,2,Sibley,Rd,1607308,9.083,9.421,0,8.118683,4.5,4.5 +22531,0,0.555143,2,2,1,2,3,,4,2,Allen,Rd,4705756,4.265,4.82,0,13.323422,3.7,5 +31868,0,0.256631,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.159152,0.15,4 +32231,0,0.508033,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.192786,0.15,4 +15089,0,0.439856,1,1,0,2,5,,4,2,Harrison,Ave,1592804,0.25,0.69,0,10.556549,5.8,4.5 +15645,0,0.512567,1,1,0,2,4,,4,2,King,Rd,1592206,4.8,5.313,0,12.301613,4.5,4.5 +19108,0,0.419073,2,2,0,2,3,,4,2,West,Rd,1674210,7.797,8.216,0,10.057745,3.7,5 +23173,0,0.267502,1,1,0,2,5,,4,2,Grange,Rd,4705839,1.051,1.319,0,6.420057,5.8,4.5 +30540,0,0.484232,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.62157,0.15,4 +32210,0,0.457055,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.969324,0.15,4 +32212,0,0.240696,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.776711,0.15,4 +23172,0,0.227623,1,1,0,2,5,,4,2,Grange,Rd,4705839,0.824,1.051,0,5.462954,5.8,4.5 +22805,0,0.314106,1,1,0,2,5,,4,2,Grange,Rd,4705839,1.5,1.814,0,7.538551,5.8,4.5 +23017,0,0.181424,1,1,0,2,5,,4,2,Grange,Rd,4705839,1.319,1.5,0,4.354173,5.8,4.5 +32213,0,0.258831,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.211951,0.15,4 +32207,0,0.25326,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.078232,0.15,4 +32209,0,0.252735,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.065637,0.15,4 +16587,0,0.172388,1,1,1,2,4,,4,2,Sibley,Rd,1607308,10.145,10.317,0,4.137323,4.5,4.5 +32203,0,0.500678,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.016265,0.15,4 +16356,0,0.312789,1,1,1,2,4,,4,2,Sibley,Rd,1607308,9.832,10.145,0,7.506947,4.5,4.5 +12067,0,0.256048,2,2,1,2,3,,3,2,Eureka,Rd,1578308,9.593,9.849,0,6.145163,5,5 +15050,0,0.336973,1,1,0,2,5,,3,2,Leroy,Ave,1594007,0.157,0.494,0,8.087359,8,4.5 +18129,0,0.108914,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,10.331,10.44,0,2.613933,6,4.5 +18174,0,0.583884,2,2,1,2,3,,3,2,Dix Toledo,Hwy,1688707,1.909,2.493,0,14.013226,5,5 +18202,0,0.223732,1,1,0,2,5,,3,2,McCann,Rd,1664901,0.276,0.5,0,5.369563,8,4.5 +18724,0,0.374801,2,2,1,2,3,,3,2,Dix Toledo,Hwy,1688707,1.426,1.801,0,8.995215,5,5 +22954,0,0.396339,2,2,1,2,3,,3,2,Allen,Rd,4705756,5.929,6.325,0,9.512129,5,5 +32224,0,0.257606,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.18255,0.15,4 +32237,0,0.368496,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.843906,0.15,4 +32238,0,0.342705,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.224921,0.15,4 +17836,0,0.517223,2,2,1,2,4,,3,2,Pennsylvania,Rd,1674307,9.814,10.331,0,12.413343,6,4.5 +23181,0,0.427958,2,2,1,2,3,,4,2,Allen,Rd,4705756,5.207,5.635,0,10.270989,3.7,5 +31862,0,0.060209,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.445022,0.15,4 +18233,0,0.145912,2,2,1,2,4,,3,2,Pennsylvania,Rd,1674307,9.668,9.814,0,3.501898,6,4.5 +18978,0,0.534986,2,2,0,2,3,,4,2,Dix Toledo,Hwy,1688707,0.891,1.426,0,12.839659,3.7,5 +19531,1,0.203104,1,0,0,2,3,RSF,3,2,Pennsylvania/Dix Toledo,Ramp,1878410,0,0.203,0,4.874494,5,5 +19532,1,0.217827,4,0,0,2,3,RSF,3,2,Dix Toledo/Allen,Ramp,1878409,0,0.218,0,5.227854,5,5 +23261,0,0.095061,2,2,1,2,3,,3,2,Allen,Rd,4705756,5.834,5.929,0,2.281456,5,5 +22180,1,0.15081,1,0,0,2,3,RSF,4,2,NE Dix Toledo/N/S Allen,Ramp,4704338,0,0.151,0,3.619452,5,5 +22181,-1,0.053171,0,1,0,2,3,RSF,4,2,N Allen/SW Dix Toledo,Ramp,4704337,0,0.053,0,1.276106,5,5 +22182,-1,0.066875,0,1,0,2,3,RSF,4,2,S Allen/SW Dix Toledo,Ramp,4704335,0.179,0.245,0,1.605001,5,5 +22183,-1,0.178636,0,4,0,2,3,RSF,4,2,S Allen/SW Dix Toledo,Ramp,4704335,0,0.179,0,4.287266,5,5 +22888,0,0.132709,2,2,0,2,3,,4,2,Allen,Rd,4705756,5.635,5.768,0,3.185004,3.7,5 +22595,0,0.02849,2,2,1,2,3,,4,2,Allen,Rd,4705756,5.768,5.796,0,0.683769,3.7,5 +23603,0,0.037372,2,2,1,2,3,,3,2,Allen,Rd,4705756,5.796,5.834,0,0.89694,5,5 +12444,0,0.311201,2,2,1,2,3,,3,2,Eureka,Rd,1578308,9.282,9.593,0,7.468816,5,5 +22803,0,0.201161,1,1,0,2,5,,3,2,Reeck,Rd,4705866,0.298,0.499,0,4.82786,8,4.5 +23668,0,0.333335,2,2,1,2,3,,3,2,Allen,Rd,4705756,6.494,6.827,0,8.000032,5,5 +32240,0,0.356703,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.560871,0.15,4 +32241,0,0.221126,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.30703,0.15,4 +33311,0,0.247732,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.945569,0.15,4 +22677,0,0.169152,2,2,1,2,3,,3,2,Allen,Rd,4705756,6.325,6.494,0,4.059659,5,5 +32235,0,0.294962,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.079092,0.15,4 +12073,0,0.187386,2,2,1,2,3,,3,2,Eureka,Rd,1578308,9.095,9.282,0,4.497274,5,5 +15276,0,0.15699,1,1,0,2,5,,3,2,Leroy,Ave,1594007,0,0.157,0,3.767754,8,4.5 +23016,0,0.235045,1,1,0,2,5,,3,2,Reeck,Rd,4705866,0.063,0.298,0,5.64108,8,4.5 +18402,0,0.108018,2,2,1,2,3,,3,2,Dix Toledo,Hwy,1688707,1.801,1.909,0,2.592428,5,5 +23015,0,0.062949,1,1,0,2,5,,3,2,Reeck,Rd,4705866,0,0.063,0,1.510771,8,4.5 +32236,0,0.128815,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.091551,0.15,4 +19112,0,0.424764,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,10.664,11.089,0,10.194345,6,4.5 +22669,0,0.493631,1,1,0,2,5,,4,2,Grange,Rd,4705846,0.516,1.009,0,11.847149,5.8,4.5 +30414,0,0.431622,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.358921,0.15,4 +32219,0,0.494311,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.863468,0.15,4 +32221,0,0.109943,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,2.638632,0.15,4 +17702,0,0.224169,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,10.44,10.664,0,5.380047,6,4.5 +18645,0,0.275863,1,1,0,2,5,,3,2,McCann,Rd,1664901,0,0.276,0,6.620711,8,4.5 +32226,0,0.242131,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.81115,0.15,4 +12004,0,0.415783,2,2,1,2,3,,3,2,Eureka,Rd,1578308,9.985,10.401,0,9.97879,5,5 +15268,0,0.410549,1,1,0,2,5,,3,2,Leroy,Ave,1594007,0.494,0.904,0,9.853165,8,4.5 +17896,0,0.447904,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,2.493,2.94,0,10.749701,5,5 +32227,0,0.249982,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.999562,0.15,4 +12372,0,0.136493,2,2,1,2,3,,3,2,Eureka,Rd,1578308,9.849,9.985,0,3.275831,5,5 +32230,0,0.250725,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.01741,0.15,4 +15048,0,0.018225,1,1,0,2,5,,3,2,Leroy,Ave,1594007,0.904,0.923,0,0.437411,8,4.5 +12361,0,0.125966,2,2,1,2,3,,3,2,Eureka,Rd,1578308,10.401,10.527,0,3.023177,5,5 +18642,0,0.332577,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,0.509,0.842,0,7.981846,8,4.5 +32057,0,0.390608,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.374601,0.15,4 +11995,0,0.060571,2,2,1,2,3,,3,2,Eureka,Rd,1578308,10.527,10.588,0,1.453693,5,5 +30773,0,0.021401,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.513615,0.15,4 +14781,1,0.120402,2,0,0,2,3,DIV,4,2,Fort,St,1592105,6.179,6.299,0,2.889647,3.7,5 +15314,0,0.386002,1,1,0,2,5,,4,2,Harrison,Ave,1592804,1.488,1.874,0,9.26404,5.8,4.5 +15343,0,0.47256,2,2,0,2,4,,4,2,King,Rd,1592206,6.033,6.506,0,11.341447,4.5,4.5 +15722,-1,0.498899,0,2,0,2,3,DIV,4,2,Fort,St,1592106,6.021,6.52,0,11.973566,3.7,5 +16567,0,0.427589,1,1,0,2,4,,4,2,Sibley,Rd,1607308,11.128,11.555,0,10.262132,4.5,4.5 +17932,0,0.358535,2,2,0,2,3,,4,2,West,Rd,1674210,9.037,9.395,0,8.604843,3.7,5 +20288,1,0.426311,2,0,0,2,3,DV2,4,2,Jefferson,Ave,4302169,8.084,8.51,0,10.231463,3.7,5 +23819,-1,0.424631,0,2,0,2,3,DV2,4,2,Jefferson,Ave,4707571,0,0.425,0,10.191153,3.7,5 +32204,0,0.588615,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.126771,0.15,4 +32205,0,0.556414,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.353948,0.15,4 +15692,1,0.35058,2,0,0,2,3,DIV,4,2,Fort,St,1592105,5.319,5.669,0,8.413929,3.7,5 +15723,-1,0.39878,0,2,0,2,3,DIV,4,2,Fort,St,1592106,5.117,5.516,0,9.570728,3.7,5 +15725,-1,0.12716,0,2,0,2,3,DIV,4,2,Fort,St,1592106,4.99,5.117,0,3.051847,3.7,5 +18221,0,0.047219,2,2,0,2,3,,4,2,West,Rd,1674210,8.889,8.936,0,1.13326,3.7,5 +15122,1,0.085812,2,0,0,2,3,DIV,4,2,Fort,St,1592105,5.151,5.237,0,2.059492,3.7,5 +15322,0,0.147604,1,1,0,2,5,,4,2,Veterans,Pkwy,1592803,0,0.148,0,3.542491,5.8,4.5 +17823,0,0.100195,2,2,0,2,3,,4,2,West,Rd,1674210,8.936,9.037,0,2.404681,3.7,5 +15376,1,0.082166,2,0,0,2,3,DIV,4,2,Fort,St,1592105,5.237,5.319,0,1.971978,3.7,5 +14888,1,0.374399,2,0,0,2,3,DIV,4,2,Fort,St,1592105,5.805,6.179,0,8.985573,3.7,5 +15433,-1,0.418293,0,2,0,2,3,DIV,4,2,Fort,St,1592106,5.516,5.934,0,10.039036,3.7,5 +14913,1,0.135543,2,0,0,2,3,DIV,4,2,Fort,St,1592105,5.669,5.805,0,3.253027,3.7,5 +15080,0,0.040405,1,1,0,2,5,,4,2,Harrison,Ave,1592804,1.448,1.488,0,0.969708,5.8,4.5 +14884,-1,0.08673,0,2,0,2,3,DIV,4,2,Fort,St,1592106,5.934,6.021,0,2.08151,3.7,5 +15643,0,0.039557,2,2,0,2,4,,4,2,King,Rd,1592206,5.994,6.033,0,0.949368,4.5,4.5 +15640,1,0.799788,2,0,0,2,3,DIV,4,2,Fort,St,1592105,6.299,7.099,0,19.194905,3.7,5 +15719,-1,0.503953,0,2,0,2,3,DIV,4,2,Fort,St,1592106,6.52,7.023,0,12.094882,3.7,5 +16354,0,0.257799,2,2,0,2,4,,4,2,Sibley,Rd,1607308,10.771,11.029,0,6.187167,4.5,4.5 +16586,0,0.111999,1,1,1,2,4,,4,2,Sibley,Rd,1607308,10.659,10.771,0,2.687977,4.5,4.5 +14956,1,0.082605,2,0,0,2,3,DIV,4,2,Fort,St,1592105,7.099,7.182,0,1.982519,3.7,5 +15307,1,0.114615,1,0,0,1,3,RSF,4,2,Fort/Sibley,Ramp,1592806,0,0.115,0,,3.7,5 +15429,-1,0.102725,0,3,0,2,3,DIV,4,2,Fort,St,1592106,7.023,7.126,0,2.4654,3.7,5 +16344,0,0.073034,1,1,0,2,4,,4,2,Sibley,Rd,1607308,11.055,11.128,0,1.752818,4.5,4.5 +16572,0,0.025685,2,2,0,2,4,,4,2,Sibley,Rd,1607308,11.029,11.055,0,0.616441,4.5,4.5 +15491,1,0.089941,3,0,0,2,3,DIV,4,2,Fort,St,1592105,7.182,7.272,0,2.158586,3.7,5 +15075,0,0.205061,1,1,0,2,5,,4,2,Harrison,Ave,1592804,1.874,2.079,0,4.921464,5.8,4.5 +20477,0,0.181361,2,2,0,2,3,,4,2,Jefferson,Ave,4302169,7.903,8.084,0,4.352661,3.7,5 +32245,0,0.153574,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.685774,0.15,4 +19891,0,0.275689,2,2,0,2,3,,4,2,Jefferson,Ave,4302169,7.446,7.722,0,6.616536,3.7,5 +32246,0,0.308854,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.412503,0.15,4 +32247,0,0.181003,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.344064,0.15,4 +17512,0,0.136591,2,2,0,2,3,,4,2,West,Rd,1674210,9.395,9.532,0,3.278173,3.7,5 +20713,0,0.181234,2,2,0,2,3,,4,2,Jefferson,Ave,4302169,7.722,7.903,0,4.349616,3.7,5 +16561,0,0.38204,1,1,0,2,4,,4,2,Sibley,Rd,1607308,11.649,12.031,0,9.168949,4.5,4.5 +20091,1,1.04949,2,0,0,2,3,DV2,4,2,Jefferson,Ave,4302169,8.51,9.56,0,25.187759,3.7,5 +23818,-1,1.052521,0,2,0,2,3,DV2,4,2,Jefferson,Ave,4707571,0.425,1.477,0,25.260492,3.7,5 +30437,0,0.685691,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,16.456581,0.15,4 +15642,0,0.189903,2,2,0,2,4,,4,2,King,Rd,1592206,6.506,6.696,0,4.557671,4.5,4.5 +32243,0,0.323268,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.758433,0.15,4 +15342,0,0.009501,2,2,0,2,4,,4,2,King,Rd,1592206,6.696,6.705,0,0.228021,4.5,4.5 +16340,0,0.093469,1,1,0,2,4,,4,2,Sibley,Rd,1607308,11.555,11.649,0,2.243261,4.5,4.5 +11986,0,0.10433,2,2,1,2,3,,3,2,Eureka,Rd,1578308,11.465,11.569,0,2.503912,5,5 +14879,-1,0.126152,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.339,8.465,0,3.027654,5,5 +15034,0,0.103177,1,1,0,2,5,,3,2,Leroy,Ave,1594007,1.866,1.969,0,2.47624,8,4.5 +15081,1,0.254733,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.589,8.843,0,6.113585,5,5 +15302,0,0.256306,1,1,0,2,4,,3,2,Quarry,Rd,1592905,0.125,0.382,0,6.151349,6,4.5 +15714,-1,0.238908,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.465,8.703,0,5.733799,5,5 +17701,0,0.170777,1,1,0,2,4,,3,2,Pennsylvania,Ave,1674307,11.988,12.159,0,4.098652,6,4.5 +18611,0,0.371634,2,2,0,2,4,,3,2,Trenton,Rd,1665008,0,0.372,0,8.919224,6,4.5 +30416,0,0.37269,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.944566,0.15,4 +30424,0,0.527875,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.669006,0.15,4 +32200,0,0.534912,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.837886,0.15,4 +32202,0,0.507785,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.186831,0.15,4 +32248,0,0.113951,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.73482,0.15,4 +32249,0,0.15571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.737036,0.15,4 +32250,0,0.197202,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.732839,0.15,4 +32253,0,0.15246,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.659028,0.15,4 +32254,0,0.13733,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.295919,0.15,4 +32256,0,0.202466,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.859183,0.15,4 +15425,-1,0.312286,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.026,8.339,0,7.494862,5,5 +15426,-1,0.304407,0,3,0,2,3,DIV,4,2,Fort,St,1592106,7.533,7.837,0,7.305757,3.7,5 +15558,1,0.36322,3,0,0,2,3,DIV,4,2,Fort,St,1592105,7.821,8.184,0,8.71728,3.7,5 +15717,-1,0.189479,0,3,0,2,3,DIV,4,2,Fort,St,1592106,7.837,8.026,0,4.547485,3.7,5 +18545,0,0.024538,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,11.635,11.66,0,0.588913,6,4.5 +31863,0,0.395658,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.495787,0.15,4 +32215,0,0.355398,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.529551,0.15,4 +18224,0,0.393685,2,2,1,2,4,,3,2,Pennsylvania,Ave,1674307,11.242,11.635,0,9.448451,6,4.5 +32216,0,0.250392,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.009396,0.15,4 +14858,1,0.137181,3,0,0,2,3,DIV,4,2,Fort,St,1592105,7.684,7.821,0,3.292338,3.7,5 +15511,1,0.121112,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.467,8.589,0,2.906695,5,5 +18128,0,0.328472,1,1,0,2,4,,3,2,Pennsylvania,Ave,1674307,11.66,11.988,0,7.883338,6,4.5 +15524,1,0.283517,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.184,8.467,0,6.804417,5,5 +32255,0,0.111231,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.669554,0.15,4 +32257,0,0.151447,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.634717,0.15,4 +11989,0,0.293818,2,2,1,2,3,,3,2,Eureka,Rd,1578308,10.919,11.213,0,7.051628,5,5 +15035,0,0.228504,1,1,0,2,5,,3,2,Leroy,Ave,1594007,1.302,1.53,0,5.484107,8,4.5 +18159,0,0.311431,1,1,1,2,4,,3,2,Trenton,Rd,1665008,0.726,1.037,0,7.47434,6,4.5 +30415,0,0.271624,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.518981,0.15,4 +30432,0,0.248864,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.972731,0.15,4 +32258,0,0.26666,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.399832,0.15,4 +33594,0,0.22983,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.515916,0.15,4 +18595,0,0.189084,1,1,1,2,4,,3,2,Trenton,Rd,1665008,0.537,0.726,0,4.53801,6,4.5 +18177,0,0.165609,1,1,0,2,4,,3,2,Trenton,Rd,1665008,0.372,0.537,0,3.974606,6,4.5 +18586,0,0.277081,1,1,1,2,4,,3,2,Trenton,Rd,1665008,1.037,1.315,0,6.649954,6,4.5 +15252,0,0.336355,1,1,0,2,5,,3,2,Leroy,Ave,1594007,1.53,1.866,0,8.072524,8,4.5 +32148,0,0.249379,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.985092,0.15,4 +32260,0,0.248106,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.954535,0.15,4 +32251,0,0.165665,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.975966,0.15,4 +12355,0,0.252121,2,2,1,2,3,,3,2,Eureka,Rd,1578308,11.213,11.465,0,6.050907,5,5 +18357,0,0.303504,1,1,0,2,5,,4,2,Quarry,Rd,1663601,0.5,0.803,0,7.284091,5.8,4.5 +19111,0,0.366273,1,1,0,2,4,,3,2,Pennsylvania,Ave,1674307,12.159,12.525,0,8.79056,6,4.5 +18816,0,0.249627,1,1,0,2,5,,4,2,Quarry,Rd,1663601,0.251,0.5,0,5.991041,5.8,4.5 +30417,0,0.350356,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.408554,0.15,4 +32201,0,0.020684,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.496418,0.15,4 +18810,0,0.193982,1,1,0,2,5,,4,2,Quarry,Rd,1663601,0.803,0.997,0,4.655556,5.8,4.5 +15069,0,0.125361,1,1,0,2,4,,3,2,Quarry,Rd,1592905,0,0.125,0,3.008654,6,4.5 +20533,0,0.093831,2,2,0,2,3,,4,2,Jefferson,Ave,4302169,9.942,10.036,0,2.251932,3.7,5 +11970,0,0.429842,2,2,1,2,3,,3,2,Eureka,Ave,1578308,11.593,12.023,0,10.316209,5,5 +15709,-1,0.248815,0,3,0,2,3,DIV,3,2,Fort,St,1592106,9.014,9.262,0,5.971569,5,5 +15780,1,0.322417,2,0,0,2,3,DIV,3,2,Fort,St,1592105,9.1,9.422,0,7.738018,5,5 +23014,0,0.399997,1,1,1,2,5,,3,2,Oak,St,4705862,0.25,0.649,0,9.599929,8,4.5 +30421,0,0.472893,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.349433,0.15,4 +30422,0,0.399501,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.588026,0.15,4 +30423,0,0.376207,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.028966,0.15,4 +15421,-1,0.06269,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.763,8.826,0,1.504553,5,5 +15781,1,0.141991,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.923,9.065,0,3.407782,5,5 +15063,1,0.073028,1,0,0,2,4,,3,2,Quarry,Rd,1592906,0,0.073,0,1.752663,6,4.5 +15066,-1,0.042858,0,1,0,2,4,,3,2,Quarry,Rd,1592905,0.382,0.424,0,1.028592,6,4.5 +14837,1,0.043564,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.88,8.923,0,1.045543,5,5 +15713,-1,0.059623,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.703,8.763,0,1.430954,5,5 +14779,1,0.036264,3,0,0,2,3,DIV,3,2,Fort,St,1592105,8.843,8.88,0,0.870326,5,5 +15299,-1,0.026902,0,1,0,2,4,,3,2,Quarry,Rd,1592905,0.424,0.451,0,0.645637,6,4.5 +14876,-1,0.187838,0,3,0,2,3,DIV,3,2,Fort,St,1592106,8.826,9.014,0,4.508119,5,5 +15510,1,0.035141,2,0,0,2,3,DIV,3,2,Fort,St,1592105,9.065,9.1,0,0.843377,5,5 +15508,1,0.293726,4,0,0,2,3,DIV,3,2,Fort,St,1592105,9.422,9.716,0,7.049423,5,5 +23013,0,0.2496,1,1,1,2,5,,3,2,Oak,St,4705862,0,0.25,0,5.990399,8,4.5 +12344,0,0.023524,2,2,1,2,3,,3,2,Eureka,Rd,1578308,11.569,11.593,0,0.564586,5,5 +12303,0,0.21766,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.023,12.24,0,5.22385,5,5 +18584,0,0.291834,1,1,0,2,5,,3,2,12th,St,1665208,0.197,0.489,0,7.004017,8,4.5 +18488,0,1.3371,1,1,0,2,5,,4,2,River,Rd,1690910,0.451,1.788,0,32.090409,5.8,4.5 +17533,0,0.614109,1,1,0,2,5,,4,2,Meridian,Rd,1690909,0.713,1.327,0,14.738618,5.8,4.5 +18489,0,0.226215,1,1,0,2,5,,4,2,River,Rd,1690910,1.788,2.014,0,5.429164,5.8,4.5 +18578,0,0.93759,1,1,0,2,5,,4,2,Grosse Ile,Pkwy,1692407,1.35,2.287,0,22.502172,5.8,4.5 +18707,0,1.017686,1,1,0,2,5,,4,2,Macomb,St,1691501,0,1.017,0,24.424461,5.8,4.5 +18708,0,0.510162,1,1,0,2,5,,4,2,River,Rd,1691503,0,0.51,0,12.243898,5.8,4.5 +30439,0,0.852193,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,20.452625,0.15,4 +32414,0,0.502562,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.061493,0.15,4 +17849,0,0.605475,1,1,0,2,5,,4,2,Meridian,Rd,1690909,0.107,0.713,0,14.531406,5.8,4.5 +18052,0,0.539446,1,1,0,2,5,,4,2,Groh,Rd,1690905,0.705,1.245,0,12.946707,5.8,4.5 +32155,0,0.813207,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,19.516972,0.15,4 +17848,0,0.107451,1,1,0,2,5,,4,2,Meridian,Rd,1690909,0,0.107,0,2.578818,5.8,4.5 +30438,0,0.129153,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.099677,0.15,4 +17977,0,0.239911,1,1,0,2,4,,4,2,Meridian,Rd,1690909,1.597,1.837,0,5.757853,4.5,4.5 +30440,0,0.221888,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.325317,0.15,4 +18271,0,0.270658,1,1,0,2,4,,4,2,Meridian,Rd,1690909,1.327,1.597,0,6.495787,4.5,4.5 +18163,0,0.641315,1,1,0,2,5,,4,2,River,Rd,1690910,2.014,2.655,0,15.391564,5.8,4.5 +17978,0,0.070939,1,1,0,2,5,,4,2,Manchester,Blvd,1691009,0.819,0.89,0,1.702545,5.8,4.5 +18709,0,0.280402,1,1,0,2,5,,4,2,River,Rd,1691503,0.51,0.79,0,6.729655,5.8,4.5 +18392,0,0.094878,1,1,0,2,5,,4,2,River,Rd,1691503,0.79,0.885,0,2.277069,5.8,4.5 +18949,0,0.73802,1,1,0,2,5,,4,2,Parke,Ln,1691807,1.196,1.934,0,17.712481,5.8,4.5 +23254,0,0.250841,1,1,0,2,5,,4,2,Bridge,Rd,4705855,0.974,1.225,0,6.020182,5.8,4.5 +32261,0,0.641468,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,15.395237,0.15,4 +17449,0,1.181863,1,1,0,2,4,,4,2,Meridian,Rd,1690909,2.553,3.735,0,28.364717,4.5,4.5 +17547,0,1.308796,1,1,0,2,5,,4,2,River,Rd,1691503,1.74,3.048,0,31.411114,5.8,4.5 +32184,0,0.723569,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.365648,0.15,4 +32185,0,0.485124,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.642976,0.15,4 +32183,0,0.222105,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.330528,0.15,4 +18706,0,0.586644,1,1,0,2,4,,4,2,Meridian,Rd,1690909,3.891,4.477,0,14.079464,4.5,4.5 +31650,0,0.622299,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,14.935185,0.15,4 +32186,0,0.360004,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.640093,0.15,4 +18971,0,0.391934,1,1,0,2,5,,4,2,River,Rd,1691206,3.533,3.925,0,9.406414,5.8,4.5 +18836,0,0.173512,1,1,0,2,5,,4,2,Horsemill,Rd,1692003,0,0.174,0,4.164293,5.8,4.5 +19066,0,0.155692,1,1,0,2,4,,4,2,Meridian,Rd,1690909,3.735,3.891,0,3.736607,4.5,4.5 +23425,0,0.244258,1,1,0,2,5,,4,2,Bridge,Rd,4705855,0.73,0.974,0,5.862198,5.8,4.5 +18837,0,0.156254,1,1,0,2,5,,4,2,Horsemill,Rd,1692003,0.994,1.15,0,3.750107,5.8,4.5 +20833,1,0.811686,2,0,0,2,3,DV2,3,2,Biddle,Ave,4302169,10.724,11.536,0,19.480465,5,5 +23737,-1,0.575877,0,2,0,2,3,DV2,3,2,Biddle,Ave,4707956,0.682,1.257,0,13.821045,5,5 +31413,0,0.231807,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.563369,0.15,4 +32242,0,0.163097,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.914327,0.15,4 +20138,1,0.331415,2,0,0,2,3,DV2,4,2,Jefferson,Ave,4302169,10.393,10.724,0,7.953966,3.7,5 +19016,0,0.010985,1,1,0,2,4,,3,2,Pennsylvania,Ave,1674307,13.154,13.165,0,0.263641,6,4.5 +11906,0,0.162833,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.732,12.895,0,3.907995,5,5 +17445,0,0.290526,2,2,0,2,5,,3,2,3rd,St,1661508,0.012,0.302,0,6.972616,8,4.5 +20186,0,0.312984,2,2,1,2,3,,3,2,Biddle,Ave,4302169,11.536,11.849,0,7.511618,5,5 +22523,0,0.162829,1,1,1,2,5,,3,2,Oak,St,4705862,1.139,1.302,0,3.907903,8,4.5 +32179,0,0.329764,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.914328,0.15,4 +32180,0,0.497303,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.935276,0.15,4 +22666,0,0.362241,1,1,1,2,5,,3,2,Oak,St,4705862,0.777,1.139,0,8.693786,8,4.5 +12292,0,0.081571,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.65,12.732,0,1.957715,5,5 +40197,1,0.015735,1,0,0,2,3,,3,3,N I 75/Rochester,RAMP,682608,0.303,0.319,0,0.37763,5,5 +40194,-1,0.239698,0,2,0,2,3,DV2,3,2,Biddle,Ave,5491102,0,0.24,0,5.752752,5,5 +18396,0,0.011911,2,2,0,2,5,,3,2,Plum,St,1661508,0,0.012,0,0.285866,8,4.5 +11898,0,0.12012,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.977,13.097,0,2.882875,5,5 +18855,0,0.290043,2,2,0,2,5,,3,2,3rd,St,1661508,0.302,0.592,0,6.961023,8,4.5 +20881,0,0.155067,2,2,1,2,3,,3,2,Biddle,Ave,4302169,11.849,12.004,0,3.721612,5,5 +23426,0,0.080642,1,1,1,2,5,,3,2,Oak,St,4705862,1.384,1.465,0,1.935418,8,4.5 +24138,0,0.28997,1,1,0,2,5,,3,2,4th,St,5491107,0.471,0.761,0,6.95927,8,4.5 +12289,0,0.082343,2,2,1,2,3,,3,2,Eureka,Ave,1578308,12.895,12.977,0,1.97622,5,5 +23593,0,0.082185,1,1,1,2,5,,3,2,Oak,St,4705862,1.302,1.384,0,1.972439,8,4.5 +20646,0,0.155934,2,2,1,2,3,,3,2,Biddle,Ave,4302169,12.004,12.16,0,3.742412,5,5 +23171,0,0.144198,1,1,1,2,5,,3,2,Oak,St,4705862,1.465,1.609,0,3.460761,8,4.5 +1321,-1,0.624595,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,4.201,4.825,0,14.99029,5,5 +3655,0,0.047302,1,1,0,2,5,,3,3,Mapleridge,Dr,688107,0,0.047,0,1.135241,8,4.5 +3738,0,0.603265,2,2,0,2,4,,3,3,9 Mile,Rd,684404,4.101,4.704,0,14.478355,6,4.5 +4002,1,0.300455,3,0,0,1,2,,3,3,S M 10,,710010,7.934,8.234,0,,0.58,7 +4828,1,0.227422,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,3.046,3.274,0,5.458121,8,4.5 +5066,-1,0.540667,0,3,0,1,2,,3,3,N M 10,,710102,7.895,8.435,0,,0.58,7 +10879,1,0.732814,3,0,0,1,1,,3,2,E I 94,,1576405,16.306,17.039,0,,0.58,7 +11204,1,0.320196,3,0,0,1,1,,3,1,E I 94,,1576405,24.33,24.65,0,,0.58,7 +11601,0,0.467588,1,1,0,2,5,,3,1,Scotten,St,1577306,1.357,1.825,0,11.222115,8,4.5 +11615,0,0.241695,1,1,0,2,5,,3,1,Junction,St,1577210,0.311,0.553,0,5.800679,8,4.5 +11619,1,0.222288,1,0,0,1,1,ROF,3,1,E I 94/Livernois,RAMP,1577206,0,0.222,0,,2.24,5 +11662,0,0.102008,1,1,0,2,5,,3,1,Martin,St,1577205,0.96,1.062,0,2.448181,8,4.5 +11668,0,0.238791,1,1,0,2,5,,3,1,Cecil,St,1577203,0.243,0.482,0,5.730979,8,4.5 +11674,0,0.352197,1,1,0,2,5,,3,1,Central,St,1577202,2.567,2.919,0,8.452726,8,4.5 +11693,0,0.300673,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.305,1.605,0,7.216145,6,4.5 +11781,0,0.133771,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,0.53,0.664,0,3.210511,6,4.5 +11806,1,0.388259,1,0,0,1,1,RFF,3,2,E I 94/M 39,RAMP,1576901,0.188,0.576,0,,0.58,7 +11839,-1,0.249697,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,10.043,10.293,0,5.992735,5,5 +12041,0,0.434112,1,1,0,2,5,,3,1,Paul,Dr,1582602,0.126,0.56,0,10.418678,8,4.5 +12157,0,0.395553,2,2,1,2,4,,3,2,Goddard,Rd,1578601,3.594,3.989,0,9.493278,6,4.5 +12204,0,0.246351,2,2,0,2,4,,3,1,McGraw,St,1581903,0.915,1.161,0,5.912418,6,4.5 +12217,1,0.173792,1,0,0,2,5,DV2,3,1,Bretton,Dr,1582509,0.261,0.435,0,4.171001,8,4.5 +12397,0,0.146212,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.723,2.869,0,3.509091,5,5 +12482,0,0.496819,2,2,0,2,4,,3,1,Chicago,St,1581803,0.659,1.155,0,11.92366,6,4.5 +12664,-1,0.56791,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,0.95,1.518,0,,0.58,7 +12815,0,0.765343,2,2,0,2,3,,3,1,Grand River,Ave,1577408,1.916,2.681,0,18.368239,5,5 +12852,1,0.633651,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,0.907,1.54,0,,0.58,7 +12899,0,0.313681,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.217,4.531,0,7.528338,6,4.5 +12903,-1,1.005648,0,2,0,2,7,DV2,3,2,Oakman,Blvd,1580610,0.555,1.561,0,24.135541,7,4.5 +13210,0,0.125129,1,1,0,2,5,,3,2,Chase,Rd,1580503,1.061,1.186,0,3.003105,8,4.5 +13302,1,1.005838,2,0,0,2,7,DV2,3,2,Oakman,Blvd,1580701,0.368,1.373,0,24.14011,7,4.5 +13351,1,0.144895,2,0,0,2,4,,3,1,Grand,Blvd,1577308,0.156,0.301,0,3.477485,6,4.5 +13358,0,0.431138,2,2,1,2,3,,3,2,Northline,Rd,1578505,3.565,3.996,0,10.34731,5,5 +13573,0,0.111719,1,1,0,2,4,,3,1,Outer,Dr,1584506,0,0.112,0,2.681265,6,4.5 +13668,-1,0.39857,0,4,0,1,1,,3,2,W I 94,,1588802,16.406,16.805,0,,0.58,7 +14286,-1,0.237544,0,3,0,1,1,,3,1,W I 94,,1588802,24.157,24.394,0,,0.58,7 +14738,0,0.829769,1,1,0,2,4,,3,2,Miller,Rd,1589801,2.733,3.563,0,19.914452,6,4.5 +14814,0,0.497733,1,1,0,2,5,,3,1,Tireman,St,1594805,0.599,1.096,0,11.945596,8,4.5 +14890,0,0.498883,2,2,0,2,3,,3,1,Warren,Ave,1591804,1.38,1.879,0,11.973195,5,5 +14967,-1,0.35124,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,5.102,5.454,0,8.429753,8,4.5 +14982,1,0.322837,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,16.16,16.483,0,7.748089,5,5 +15038,0,0.234565,2,2,1,2,4,,3,2,Outer,Dr,1596803,0.568,0.803,0,5.629558,6,4.5 +15043,0,0.252451,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,1.991,2.243,0,6.058823,5,5 +15131,1,0.30686,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0.049,0.356,0,7.364634,6,4.5 +15278,-1,0.325196,0,3,0,1,2,,3,1,S M 39,,1592407,7.901,8.226,0,,0.58,7 +15349,1,0.316688,1,0,0,1,1,RON,4,2,Allen/S I 75,RAMP,1595204,0,0.317,0,,1.09,4 +15456,1,0.209438,3,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,0.743,0.952,0,5.026505,5,5 +15468,1,0.322544,3,0,0,1,2,,3,1,N M 39,,1592408,7.864,8.186,0,,0.58,7 +15584,-1,0.906634,0,3,0,1,1,,3,2,S I 75,,1595106,9.85,10.756,0,,0.58,7 +15673,0,0.251609,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,1.5,1.752,0,6.038623,6,4.5 +16274,0,0.312459,1,1,0,2,5,,3,1,Buchanan,St,1609609,0.553,0.865,0,7.499014,8,4.5 +16574,0,0.515216,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,16.295,16.811,0,12.365177,5,5 +16687,1,1.881471,4,0,0,1,1,,3,1,E I 96,,1606201,9.954,11.835,0,,0.58,7 +16832,0,0.435408,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,12.949,13.385,0,10.449799,5,5 +16852,-1,1.902092,0,4,0,1,1,,3,1,W I 96,,1606503,9.666,11.568,0,,0.58,7 +17051,1,0.441507,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,16.592,17.034,0,10.596157,5,5 +17135,0,0.797391,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,9.539,10.337,0,19.137391,6,4.5 +17428,1,0.327898,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,1.872,2.2,0,7.869556,5,5 +17554,0,0.873087,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,13.927,14.8,0,20.954089,5,5 +17603,0,0.253372,2,2,0,2,3,,3,2,Inkster,Rd,1674404,15.598,15.851,0,6.080929,5,5 +17615,0,0.238609,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,14.916,15.155,0,5.726608,5,5 +17621,0,0.494877,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0.927,1.421,0,11.877047,5,5 +17993,1,0.124858,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.691,4.816,0,2.996601,5,5 +18244,0,0.181734,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,8.007,8.189,0,4.361623,8,4.5 +18452,0,0.498798,1,1,1,2,4,,3,1,Joy,Rd,1677810,6.974,7.473,0,11.971153,6,4.5 +18515,0,0.384865,2,2,0,2,4,,3,2,Pelham,Rd,1652704,4.085,4.47,0,9.236751,6,4.5 +18524,0,0.500221,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,9.935,10.435,0,12.005297,5,5 +18641,1,0.348321,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,4.833,5.181,0,8.359713,8,4.5 +18758,0,0.308256,1,1,0,2,4,,3,2,Wick,Rd,1664408,4.688,4.996,0,7.398138,6,4.5 +18846,0,0.256124,2,2,0,2,3,,3,1,McNichols,Rd,1680701,16.335,16.591,0,6.146979,5,5 +18879,0,0.446002,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,4.666,5.112,0,10.704041,5,5 +18903,1,0.382003,1,0,0,2,5,DV2,3,2,Pinecrest,Dr,1656703,0.753,1.135,0,9.168061,8,4.5 +18985,0,0.319538,1,1,0,2,5,,3,2,Champaign,Rd,1653005,1.417,1.736,0,7.668911,8,4.5 +19164,0,0.181526,2,2,1,2,3,,3,2,Van Born,Rd,1670203,9.982,10.163,0,4.356628,5,5 +19267,-1,0.235143,0,3,0,2,3,DIV,3,2,Evergreen,Rd,1804103,0.733,0.968,0,5.643443,5,5 +19549,1,0.454435,1,0,0,1,1,ROF,3,2,W I 94/Pelham,RAMP,1869510,0,0.454,0,,2.24,5 +19551,1,0.297408,1,0,0,1,1,RON,3,2,Pelham/E I 94,RAMP,1869508,0,0.297,0,,1.09,4 +19712,1,0.5778,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,4.182,4.76,0,13.867211,5,5 +20004,-1,0.281819,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,1.82,2.101,0,6.763652,5,5 +21414,0,0.270233,2,2,1,2,3,,3,2,Merriman,Rd,4700000,8.244,8.515,0,6.485581,5,5 +21733,0,0.485804,2,2,1,2,3,,3,1,Wyoming,Ave,4700001,0,0.486,0,11.659296,5,5 +21844,1,0.249809,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,16.927,17.177,0,5.995406,5,5 +22545,-1,0.145394,0,2,0,2,4,,3,1,Grand,Blvd,4704945,0,0.145,0,3.489466,6,4.5 +22691,-1,0.160109,0,1,0,2,5,DV2,3,1,Bretton,Dr,4704882,0.235,0.395,0,3.842607,8,4.5 +22716,-1,0.39995,0,1,0,2,5,DV2,3,2,Pinecrest,Dr,4704864,0,0.4,0,9.598809,8,4.5 +23006,0,1.21705,1,1,0,2,7,,4,2,Superior,Rd,4705980,0,1.217,0,29.209202,6.55,4.5 +23060,-1,0.46617,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0,0.466,0,11.188077,5,5 +23273,0,0.495786,1,1,0,2,4,,3,1,Schoolcraft,St,4705258,10.948,11.444,0,11.898875,6,4.5 +23400,-1,0.34028,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,0,0.34,0,8.166715,6,4.5 +23634,0,0.162757,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,4.121,4.283,0,3.906159,5,5 +23692,-1,0.347782,0,3,0,2,3,DV2,3,2,Greenfield,,4704562,1.02,1.368,0,8.346775,5,5 +24004,1,0.235428,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,3.376,3.612,0,5.65027,5,5 +24109,0,0.406731,1,1,0,2,5,,3,1,Paul,Dr,4710428,0,0.407,0,9.761539,8,4.5 +27396,0,0.510274,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.246582,0.15,4 +30277,0,0.258521,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.204499,0.15,4 +30471,0,0.061889,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.485339,0.15,4 +30481,0,0.107775,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.586594,0.15,4 +30542,0,0.497861,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.948665,0.15,4 +30546,0,0.510591,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.254192,0.15,4 +30551,0,0.229887,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.517284,0.15,4 +30554,0,0.495391,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.889393,0.15,4 +30557,0,0.207654,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.983692,0.15,4 +30558,0,0.452227,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.85344,0.15,4 +30561,0,0.245996,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.903915,0.15,4 +30568,0,0.262644,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.303455,0.15,4 +30608,0,0.54607,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.105687,0.15,4 +32054,0,0.398526,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.56462,0.15,4 +32272,0,0.330253,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.926081,0.15,4 +32276,0,0.362951,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.710823,0.15,4 +32282,0,0.262195,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.292679,0.15,4 +32288,0,0.4514,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.833588,0.15,4 +32293,0,0.424707,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.192958,0.15,4 +32295,0,0.297245,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.133888,0.15,4 +32307,0,0.131832,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.163975,0.15,4 +32310,0,0.425913,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.221908,0.15,4 +32323,0,0.250747,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.017923,0.15,4 +32328,0,0.517385,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.417234,0.15,4 +32332,0,0.499871,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.9969,0.15,4 +32343,0,0.249644,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.991462,0.15,4 +32347,0,0.518828,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.451866,0.15,4 +32373,0,0.714164,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.139928,0.15,4 +32579,0,0.35954,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.628969,0.15,4 +32664,0,0.50238,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.057122,0.15,4 +32700,0,0.632496,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.179913,0.15,4 +32733,0,0.484567,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.629613,0.15,4 +33011,0,0.496157,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.907767,0.15,4 +33049,0,0.238618,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.726827,0.15,4 +33050,0,0.512025,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.288599,0.15,4 +33600,0,0.770891,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.501377,0.15,4 +33648,0,0.320338,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.688124,0.15,4 +33649,0,0.50953,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.228712,0.15,4 +33650,0,0.511942,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.2866,0.15,4 +33712,0,0.504307,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.103379,0.15,4 +33801,0,0.421308,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.111384,0.15,4 +33819,0,0.354091,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.498177,0.15,4 +33888,0,0.381,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.144002,0.15,4 +10826,1,0.360162,1,0,0,1,1,ROF,4,2,E I 94/Ecorse,RAMP,1576709,0,0.36,0,,2.24,5 +11202,1,1.377392,3,0,0,1,1,,4,2,E I 94,,1576405,13.024,14.401,0,,0.8,7.5 +11862,-1,0.325044,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,5.548,5.873,0,7.801051,5,5 +12451,0,0.495951,2,2,1,2,4,,4,2,Goddard,Rd,1578601,0.493,0.989,0,11.902818,4.5,4.5 +12777,0,0.501762,2,2,1,2,4,,4,2,Northline,Rd,1578505,0.487,0.989,0,12.042295,4.5,4.5 +14072,-1,1.271123,0,3,0,1,1,,4,2,W I 94,,1588802,13.019,14.289,0,,0.8,7.5 +15044,0,0.499812,3,3,1,2,3,,3,2,Ford,Rd,1595510,12.523,13.023,0,11.995497,5,5 +15790,1,0.379728,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,13.226,13.606,0,9.113467,5,5 +16059,0,0.301941,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,12.52,12.822,0,7.246593,6,4.5 +16884,0,0.253392,2,2,0,2,3,,4,2,Ecorse,Rd,5495384,9.459,9.712,0,6.081398,3.7,5 +17515,0,0.254401,2,2,1,2,3,,3,2,Inkster,Rd,1674404,11.107,11.361,0,6.105631,5,5 +17582,0,0.381159,2,2,0,2,4,,3,2,Pelham,Rd,1652704,2.849,3.23,0,9.147823,6,4.5 +17588,0,0.436138,1,1,0,2,5,,3,2,Gulley,Rd,1643407,0.32,0.756,0,10.467301,8,4.5 +17596,1,0.238853,1,0,0,2,5,DV2,3,2,Wilson,Dr,1643301,0.749,0.988,0,5.732478,8,4.5 +17620,0,0.269349,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,10.417,10.686,0,6.464387,5,5 +17625,0,0.250488,2,2,0,2,4,,3,2,Beech Daly,Rd,1692903,7.023,7.274,0,6.011711,6,4.5 +17661,0,0.349436,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,2.152,2.502,0,8.386471,8,4.5 +17924,0,0.20967,2,2,0,2,3,,3,2,Van Born,Rd,1670203,6.53,6.739,0,5.032072,5,5 +18727,0,0.350039,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,3.531,3.881,0,8.400938,8,4.5 +18790,0,0.493242,1,1,0,2,4,,4,2,Wick,Rd,1664408,1.509,2.002,0,11.837811,4.5,4.5 +19099,0,0.246205,1,1,0,2,5,,3,2,Avondale,Ave,1686907,5.202,5.448,0,5.908909,8,4.5 +21240,1,0.2494,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,12.432,12.681,0,5.985598,5,5 +21854,0,0.498827,2,2,1,2,3,,3,2,Merriman,Rd,4700000,3.576,4.074,0,11.97185,5,5 +22802,0,0.26933,2,2,0,2,5,,3,2,Monroe,Rd,4705943,2.788,3.057,0,6.463909,8,4.5 +22983,-1,0.33935,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,13.195,13.534,0,8.144405,5,5 +24518,-1,0.485681,0,1,0,2,5,DV2,3,2,Wilson,Dr,4711427,0.5,0.986,0,11.656355,8,4.5 +27399,0,0.250554,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.013289,0.15,4 +31861,0,0.741452,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.794846,0.15,4 +31905,0,0.266966,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.407182,0.15,4 +32360,0,0.440088,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.562103,0.15,4 +32361,0,0.493744,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.849848,0.15,4 +32367,0,0.260526,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.252615,0.15,4 +32368,0,0.494407,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.865759,0.15,4 +32380,0,0.249106,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.978539,0.15,4 +32385,0,0.455252,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.926049,0.15,4 +32392,0,0.727621,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,17.462893,0.15,4 +32393,0,0.249728,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.993472,0.15,4 +32394,0,0.496571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.917693,0.15,4 +32400,0,0.488471,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.723307,0.15,4 +32512,0,0.500374,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.008982,0.15,4 +33937,0,0.358922,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.614127,0.15,4 +33938,0,0.553581,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.285937,0.15,4 +33979,0,0.129662,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.111877,0.15,4 +10742,1,0.369628,3,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0.93,1.3,0,,0.8,7.5 +10829,1,0.257853,3,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0.082,0.34,0,,0.8,7.5 +11061,1,1.535819,3,0,0,1,1,,4,2,E I 94,,1576405,10.171,11.706,0,,0.8,7.5 +11992,1,0.246763,1,0,0,1,1,RON,4,2,N Merriman/E I 94,RAMP,1578406,0,0.247,0,,1.09,4 +11996,1,0.326541,1,0,0,1,1,RON,4,2,S Merriman/E I 94,RAMP,1578404,0,0.326,0,,1.09,4 +13195,1,0.168958,1,0,0,1,1,ROF,4,2,E I 94/N Merriman,RAMP,1578405,0,0.169,0,,2.24,5 +13458,-1,1.618886,0,3,0,1,1,,4,2,W I 94,,1588802,10.285,11.904,0,,0.8,7.5 +13942,-1,0.112363,0,3,0,1,1,FCD,4,2,W I 94 CD,,1588904,0.925,1.038,0,,0.8,7.5 +16899,0,0.309895,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,7.648,7.958,0,7.437477,4.5,4.5 +17503,0,0.399183,1,1,0,2,5,,4,2,Smith,Rd,1682506,0.616,1.015,0,9.580402,5.8,4.5 +17973,0,0.65466,2,2,1,2,4,,3,2,Van Born,Rd,1670203,4.369,5.023,0,15.71184,6,4.5 +18126,0,0.205091,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,8.216,8.421,0,4.922185,3.7,5 +18733,0,0.43231,1,1,0,2,5,,4,2,Beverly,Rd,1664409,3.001,3.433,0,10.37545,5.8,4.5 +18922,0,0.104541,1,1,0,2,4,,4,2,Inkster,Rd,1674404,8.51,8.615,0,2.508977,4.5,4.5 +21466,-1,0.090868,0,2,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.336,1.427,0,2.180836,3.7,5 +21669,1,0.091363,2,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.14,1.231,0,2.1927,3.7,5 +22500,1,0.1981,1,0,0,1,1,ROF,4,2,E I 94/Middlebelt,RAMP,4705456,0,0.198,0,,2.24,5 +23136,1,0.165249,1,0,0,1,1,RON,4,2,S Middlebelt/W I 94,RAMP,4706189,0,0.165,0,,1.09,4 +24492,0,0.623101,1,1,0,2,4,,4,2,Goddard,Rd,4711342,1.77,2.392,0,14.95443,4.5,4.5 +31884,0,0.477341,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.456184,0.15,4 +32369,0,0.49845,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.962791,0.15,4 +13269,1,0.350234,1,0,0,1,1,ROF,4,2,E I 94/S Merriman,RAMP,1578403,0,0.35,0,,2.24,5 +24072,-1,1.318211,0,2,0,2,3,DIV,4,2,John Dingell,Dr,4711337,1.572,2.889,0,31.637069,3.7,5 +24081,1,1.839148,2,0,0,2,3,DIV,4,2,John Dingell,Dr,4711336,0.951,2.79,0,44.139556,3.7,5 +33943,0,0.330926,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.94223,0.15,4 +11354,1,0.082071,2,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0,0.082,0,,0.8,7.5 +21248,1,0.245468,4,0,0,2,3,DIV,4,2,W G Rogell,Dr,4700021,0.474,0.719,0,5.891235,3.7,5 +21931,-1,0.381425,0,3,0,2,3,DIV,4,2,W G Rogell,Dr,4700000,0.771,1.153,0,9.154192,3.7,5 +30536,0,0.262829,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.307903,0.15,4 +18016,-1,0.163861,0,1,0,2,3,RSF,4,2,E/W Goddard/S W G Rogell,Ramp,1688703,0,0.164,0,3.932663,3.7,5 +22001,1,0.277768,4,0,0,2,3,DIV,4,2,W G Rogell,Dr,4700021,0.719,0.997,0,6.666422,3.7,5 +24079,0,0.108708,1,1,0,2,4,,4,2,Goddard,Rd,4711342,1.661,1.77,0,2.608991,4.5,4.5 +17921,1,0.129328,1,0,0,2,3,RSF,4,2,N W G Rogell/E/W Goddard,Ramp,1688704,0,0.129,0,3.103873,3.7,5 +21680,-1,0.183734,0,3,0,2,3,DIV,4,2,W G Rogell,Dr,4700000,1.153,1.336,0,4.409606,3.7,5 +21848,1,0.142993,3,0,0,2,3,DIV,4,2,W G Rogell,Dr,4700021,0.997,1.14,0,3.431821,3.7,5 +37937,1,0.329798,1,0,0,1,1,RON,4,2,S Merriman/W I 94,RAMP,4718585,0,0.33,0,,1.09,4 +14158,-1,0.265414,0,3,0,1,1,FCD,4,2,W I 94 CD,,1588904,0.056,0.322,0,,0.8,7.5 +16906,0,0.464171,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,6.967,7.431,0,11.140104,4.5,4.5 +17600,0,0.596403,1,1,0,2,5,,4,2,Smith,Rd,1682506,0.02,0.616,0,14.313676,5.8,4.5 +17984,0,0.291247,2,2,1,2,4,,3,2,Van Born,Rd,1670203,4.025,4.316,0,6.989933,6,4.5 +18307,0,0.558437,1,1,0,2,5,,4,2,Beverly,Rd,1664409,2.442,3.001,0,13.402479,5.8,4.5 +21301,1,0.195037,3,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.586,1.781,0,4.680876,3.7,5 +21355,0,0.496066,2,2,1,2,3,,4,2,Merriman,Rd,4700000,2.568,3.064,0,11.905576,3.7,5 +21736,-1,0.231615,0,3,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.71,1.942,0,5.558771,3.7,5 +31881,0,0.534902,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.837642,0.15,4 +18435,0,0.477817,1,1,0,2,4,,4,2,Wick,Rd,1682705,3.016,3.494,0,11.467604,4.5,4.5 +21798,-1,0.230637,0,3,0,2,3,DIV,4,2,Merriman,Rd,4700000,2.065,2.296,0,5.535282,3.7,5 +22110,1,0.236809,3,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.874,2.111,0,5.683423,3.7,5 +14461,0,0.369597,1,1,0,2,4,,4,2,Wickham,Rd,1589307,0,0.37,0,8.870318,4.5,4.5 +14403,-1,0.056343,0,1,0,1,1,FCD,4,2,W I 94 CD,,1588904,0,0.056,0,,0.8,7.5 +13766,1,0.028095,1,0,0,2,4,,4,2,Wickham,Rd,1589307,0.37,0.398,0,0.674289,4.5,4.5 +21308,-1,0.092933,0,3,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.962,2.055,0,2.230393,3.7,5 +21523,-1,0.020106,0,3,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.942,1.962,0,0.482556,3.7,5 +23661,-1,0.039675,0,1,0,2,4,,4,2,Wickham,Rd,4706172,0,0.04,0,0.952194,4.5,4.5 +22066,-1,0.010215,0,3,0,2,3,DIV,4,2,Merriman,Rd,4700000,2.055,2.065,0,0.24517,3.7,5 +21574,0,0.272391,2,2,1,2,3,,4,2,Merriman,Rd,4700000,2.296,2.568,0,6.537395,3.7,5 +17563,0,0.290836,2,2,0,2,4,,3,2,Van Born,Rd,1670203,3.734,4.025,0,6.980071,6,4.5 +22120,0,0.512167,2,2,1,2,3,,4,2,Merriman,Rd,4700000,3.064,3.576,0,12.292009,3.7,5 +10962,1,0.321917,3,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0.609,0.93,0,,0.8,7.5 +14380,1,0.282434,2,0,0,1,1,ROF,4,2,W I 94/N Merriman,RAMP,1589404,0,0.282,0,,2.24,5 +14433,-1,0.287686,0,3,0,1,1,FCD,4,2,W I 94 CD,,1588904,0.322,0.609,0,,0.8,7.5 +16904,0,0.217854,1,1,0,2,4,,4,2,Ecorse,Rd,5495384,7.431,7.648,0,5.228496,4.5,4.5 +31882,0,0.081563,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.95751,0.15,4 +10746,1,0.109016,3,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0.34,0.449,0,,0.8,7.5 +13697,1,0.284498,1,0,0,1,1,RON,4,2,N Merriman/W I 94,RAMP,1589403,0,0.284,0,,1.09,4 +14126,1,0.187647,1,0,0,1,1,ROF,4,2,W I 94/N Merriman,RAMP,1589404,0.282,0.47,0,,2.24,5 +21407,1,0.246894,2,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.339,1.586,0,5.925453,3.7,5 +21567,1,0.108149,2,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.231,1.339,0,2.595567,3.7,5 +37936,1,0.180108,1,0,0,1,1,ROF,4,2,W I 94/S Merriman,RAMP,4718584,0,0.18,0,,2.24,5 +21256,-1,0.183833,0,2,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.427,1.611,0,4.411995,3.7,5 +22015,-1,0.099646,0,2,0,2,3,DIV,4,2,Merriman,Rd,4700000,1.611,1.71,0,2.391493,3.7,5 +11493,1,0.159814,3,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,0.449,0.609,0,,0.8,7.5 +31880,0,0.481216,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.549179,0.15,4 +14195,-1,0.316167,0,3,0,1,1,FCD,4,2,W I 94 CD,,1588904,0.609,0.925,0,,0.8,7.5 +31886,0,0.540708,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.977002,0.15,4 +31888,0,0.062361,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,1.496664,0.15,4 +18286,0,0.234984,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,3.296,3.531,0,5.639614,8,4.5 +17562,0,0.052721,2,2,1,2,4,,3,2,Van Born,Rd,1670203,4.316,4.369,0,1.265311,6,4.5 +17821,0,0.655759,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,6.764,7.419,0,15.738223,3.7,5 +18237,0,0.503905,1,1,0,2,4,,4,2,Northline,Rd,1664702,1.103,1.606,0,12.093727,4.5,4.5 +18450,0,0.619132,1,1,0,2,4,,4,2,Inkster,Rd,1674404,7.497,8.116,0,14.859175,4.5,4.5 +18808,0,0.517758,1,1,0,2,4,,4,2,Goddard,Rd,1664205,0.497,1.015,0,12.426199,4.5,4.5 +31889,0,0.477018,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.448436,0.15,4 +31890,0,0.491617,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.798801,0.15,4 +31893,0,0.469989,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.279747,0.15,4 +32362,0,0.496148,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.907549,0.15,4 +18219,0,0.342418,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,6.422,6.764,0,8.218043,3.7,5 +18675,0,0.501592,1,1,0,2,4,,4,2,Northline,Rd,1664702,0.601,1.103,0,12.038218,4.5,4.5 +31118,0,0.575309,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.807425,0.15,4 +31891,0,0.516235,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.389643,0.15,4 +18659,0,0.254584,1,1,0,2,3,,4,2,Middle Belt,Rd,1674403,6.167,6.422,0,6.110015,3.7,5 +18353,0,0.497308,1,1,0,2,4,,4,2,Goddard,Rd,1664205,0,0.497,0,11.935382,4.5,4.5 +19014,0,0.49434,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,7.419,7.914,0,11.864156,3.7,5 +31879,0,0.563606,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.526543,0.15,4 +31885,0,0.532009,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.768218,0.15,4 +18543,0,0.30203,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,7.914,8.216,0,7.248713,3.7,5 +13178,0,0.487054,2,2,1,2,4,,4,2,Northline,Rd,1578505,0,0.487,0,11.689303,4.5,4.5 +18923,0,0.379966,1,1,0,2,4,,4,2,Inkster,Rd,1674404,7.117,7.497,0,9.119195,4.5,4.5 +32046,0,0.51625,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.389995,0.15,4 +32363,0,0.494204,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.860891,0.15,4 +17518,0,0.235065,1,1,0,2,4,,4,2,Inkster,Rd,1674404,6.882,7.117,0,5.641568,4.5,4.5 +12793,0,0.49345,2,2,1,2,4,,4,2,Goddard,Rd,1578601,0,0.493,0,11.842797,4.5,4.5 +17517,0,0.394804,1,1,0,2,4,,4,2,Inkster,Rd,1674404,8.116,8.51,0,9.47529,4.5,4.5 +32388,0,0.51062,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.254874,0.15,4 +32482,0,0.498316,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.959575,0.15,4 +11251,1,1.198252,3,0,0,1,1,,4,2,E I 94,,1576405,11.706,12.904,0,,0.8,7.5 +12463,1,0.216561,1,0,0,1,1,RON,4,2,Ecorse/W I 94,RAMP,1578709,0,0.217,0,,1.09,4 +13888,1,0.41361,1,0,0,1,1,ROF,4,2,W I 94/Ecorse,RAMP,1588908,0,0.414,0,,2.24,5 +14273,-1,0.940549,0,3,0,1,1,,4,2,W I 94,,1588802,11.904,12.844,0,,0.8,7.5 +14312,-1,0.174792,0,3,0,1,1,,4,2,W I 94,,1588802,12.844,13.019,0,,0.8,7.5 +16896,0,0.315556,1,1,0,2,3,,4,2,Ecorse,Rd,5495384,8.665,8.98,0,7.573344,3.7,5 +17931,0,0.505036,2,2,1,2,3,,3,2,Van Born,Rd,1670203,5.525,6.029,0,12.120852,5,5 +18325,0,0.517337,1,1,0,2,4,,4,2,Inkster,Rd,1674404,10.09,10.607,0,12.416096,4.5,4.5 +18729,0,0.33843,1,1,1,2,5,,4,2,Beverly,Rd,1664409,4.118,4.456,0,8.122328,5.8,4.5 +18794,0,0.51544,1,1,0,2,4,,4,2,Wick,Rd,1664408,0.499,1.014,0,12.37056,4.5,4.5 +19053,0,0.496213,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,9.412,9.908,0,11.909121,3.7,5 +31897,0,0.539132,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.939178,0.15,4 +11446,1,0.236532,1,0,0,1,1,FCD,4,2,E I 94 CD,,1576701,1.3,1.536,0,,0.8,7.5 +13746,-1,0.384988,0,3,0,1,1,FCD,4,2,W I 94 CD,,1588904,1.038,1.423,0,,0.8,7.5 +16898,0,0.70655,1,1,0,2,3,,4,2,Ecorse,Rd,5495384,7.958,8.665,0,16.957197,3.7,5 +17643,0,0.49559,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,8.916,9.412,0,11.894166,3.7,5 +18351,0,0.499108,1,1,0,2,4,,4,2,Wick,Rd,1664408,0,0.499,0,11.978592,4.5,4.5 +23486,1,0.39167,1,0,0,1,1,ROF,4,2,W I 94/Middlebelt,RAMP,4705459,0,0.392,0,,2.24,5 +31894,0,0.492558,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.821386,0.15,4 +32390,0,0.50846,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.203041,0.15,4 +11200,1,0.197879,1,0,0,1,1,RON,4,2,Middlebelt/E I 94,RAMP,1576707,0,0.198,0,,1.09,4 +19105,0,0.184426,2,2,0,2,3,,4,2,Middle Belt,Rd,1674403,8.571,8.755,0,4.426224,3.7,5 +17697,0,0.150402,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,8.421,8.571,0,3.609642,3.7,5 +18950,0,0.031071,2,2,0,2,3,,4,2,Middle Belt,Rd,1674403,8.755,8.786,0,0.745715,3.7,5 +23143,1,0.299986,1,0,0,1,1,RON,4,2,N Middlebelt/W I 94,RAMP,4705460,0,0.3,0,,1.09,4 +18068,0,0.086407,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,8.83,8.916,0,2.07377,3.7,5 +18473,0,0.043313,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,8.786,8.83,0,1.039515,3.7,5 +14078,-1,0.196601,0,1,0,1,1,FCD,4,2,W I 94 CD,,1588904,1.423,1.619,0,,0.8,7.5 +31892,0,0.530217,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.725202,0.15,4 +17556,0,0.501284,2,2,1,2,3,,3,2,Van Born,Rd,1670203,5.023,5.525,0,12.030807,5,5 +18044,0,0.509614,2,2,1,2,3,,4,2,Middle Belt,Rd,1674403,9.908,10.417,0,12.23074,3.7,5 +18292,0,0.685038,1,1,1,2,5,,4,2,Beverly,Rd,1664409,3.433,4.118,0,16.44091,5.8,4.5 +31896,0,0.504397,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.105522,0.15,4 +31895,0,0.17169,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.120569,0.15,4 +16892,0,0.261631,2,2,0,2,3,,4,2,Ecorse,Rd,5495384,9.002,9.264,0,6.279145,3.7,5 +17611,0,0.526408,1,1,0,2,4,,4,2,Inkster,Rd,1674404,9.564,10.09,0,12.633794,4.5,4.5 +18337,0,0.495121,1,1,0,2,4,,4,2,Wick,Rd,1664408,1.014,1.509,0,11.882905,4.5,4.5 +33728,0,0.54703,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.128719,0.15,4 +18035,0,0.290782,2,2,0,2,4,,4,2,Inkster,Rd,1674404,9.273,9.564,0,6.978772,4.5,4.5 +18449,0,0.163848,2,2,0,2,4,,4,2,Inkster,Rd,1674404,9.109,9.273,0,3.932363,4.5,4.5 +16895,0,0.022121,2,2,0,2,3,,4,2,Ecorse,Rd,5495384,8.98,9.002,0,0.530907,3.7,5 +32386,0,0.266126,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.387014,0.15,4 +11039,1,0.119596,3,0,0,1,1,,4,2,E I 94,,1576405,12.904,13.024,0,,0.8,7.5 +11886,1,0.215074,1,0,0,1,1,RON,4,2,Ecorse/E I 94,RAMP,1576710,0,0.215,0,,1.09,4 +16887,0,0.195274,2,2,0,2,3,,4,2,Ecorse,Rd,5495384,9.264,9.459,0,4.686574,3.7,5 +17511,0,0.500227,2,2,0,2,3,,3,2,Van Born,Rd,1670203,6.029,6.53,0,12.005442,5,5 +17937,0,0.499943,1,1,0,2,4,,4,2,Inkster,Rd,1674404,10.607,11.107,0,11.998622,4.5,4.5 +14984,0,0.492384,2,2,1,2,3,,3,2,Ford,Rd,1595510,11.028,11.52,0,11.817222,5,5 +15794,1,0.643714,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,11.675,12.319,0,15.449136,5,5 +16346,0,0.495967,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,11.01,11.506,0,11.903208,6,4.5 +17514,0,0.210819,2,2,1,2,3,,3,2,Inkster,Rd,1674404,13.397,13.607,0,5.059661,5,5 +17601,1,0.494603,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,4.22,4.714,0,11.870466,8,4.5 +17675,0,0.234657,1,1,0,2,5,,3,2,John Daly,Rd,1642902,2.012,2.247,0,5.631765,8,4.5 +17920,0,0.49696,1,1,0,2,5,,3,2,Avondale,Ave,1686907,2.205,2.702,0,11.927034,8,4.5 +18305,0,0.499995,1,1,0,2,5,,3,2,Avondale,Ave,1686907,3.695,4.195,0,11.999881,8,4.5 +18558,0,0.333804,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,12.582,12.915,0,8.01129,5,5 +18559,0,0.498611,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,10.919,11.417,0,11.966674,5,5 +18704,0,0.063659,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,5.804,5.868,0,1.527809,8,4.5 +19185,0,0.252024,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,0.252,0.504,0,6.048564,8,4.5 +22014,0,0.249282,2,2,1,2,3,,3,2,Merriman,Rd,4700000,5.824,6.073,0,5.982771,5,5 +22919,-1,0.663524,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,11.644,12.308,0,15.924574,5,5 +23387,1,0.495143,1,0,0,2,5,DV2,3,2,Maplewood,Ave,4704589,1.749,2.244,0,11.883426,8,4.5 +24262,-1,0.494469,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711013,0.491,0.985,0,11.867249,8,4.5 +24522,-1,0.495156,0,1,0,2,5,DV2,3,2,Maplewood,Ave,4708693,0.85,1.345,0,11.883755,8,4.5 +31312,0,0.501029,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.024685,0.15,4 +31789,0,0.503441,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.082576,0.15,4 +31904,0,0.347644,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.343463,0.15,4 +31906,0,0.191799,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.603176,0.15,4 +31911,0,0.314149,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.539573,0.15,4 +31913,0,0.455946,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.942713,0.15,4 +31919,0,0.25692,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.16608,0.15,4 +31920,0,0.494583,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.869987,0.15,4 +31928,0,0.503773,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.090546,0.15,4 +32372,0,0.516013,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.384321,0.15,4 +33936,0,0.660211,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.845055,0.15,4 +33965,0,0.495877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.901049,0.15,4 +33982,0,0.694164,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.659947,0.15,4 +15795,1,0.523375,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,11.152,11.675,0,12.561002,5,5 +15796,1,0.50852,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,10.644,11.152,0,12.204479,5,5 +16242,0,0.230157,1,1,0,2,5,,3,2,Palmer,Rd,1607406,7.038,7.268,0,5.523779,8,4.5 +18138,0,0.482207,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,11.417,11.899,0,11.572964,5,5 +18713,0,0.023639,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,4.698,4.721,0,0.567344,8,4.5 +21679,0,0.49448,2,2,1,2,3,,3,2,Merriman,Rd,4700000,4.83,5.324,0,11.86751,5,5 +23559,-1,0.509368,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,10.612,11.121,0,12.224821,5,5 +31197,0,0.39807,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.553688,0.15,4 +15797,1,0.319527,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,10.324,10.644,0,7.668659,5,5 +17779,0,0.247656,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,2.361,2.609,0,5.943736,8,4.5 +21415,0,0.640177,2,2,1,2,3,,3,2,Merriman,Rd,4700000,4.168,4.807,0,15.36425,5,5 +22649,-1,0.315852,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,10.296,10.612,0,7.580449,5,5 +30270,0,0.125406,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.009749,0.15,4 +30273,0,0.617926,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.830224,0.15,4 +31299,0,0.655114,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.722744,0.15,4 +31198,0,0.142482,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.41956,0.15,4 +15798,1,0.062899,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,10.261,10.324,0,1.509584,5,5 +22939,-1,0.059958,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,10.236,10.296,0,1.438987,5,5 +17808,0,0.25493,1,1,0,2,5,,3,2,Annapolis,Ave,1680904,2.609,2.863,0,6.118312,8,4.5 +21612,0,0.093058,2,2,1,2,3,,3,2,Merriman,Rd,4700000,4.074,4.168,0,2.23339,5,5 +21930,0,0.02254,2,2,0,2,3,,3,2,Merriman,Rd,4700000,4.807,4.83,0,0.540966,5,5 +16490,0,0.323678,1,1,0,2,4,,3,2,Palmer,Rd,1607406,6.715,7.038,0,7.768279,6,4.5 +21465,0,0.24955,2,2,1,2,3,,3,2,Merriman,Rd,4700000,5.324,5.574,0,5.989201,5,5 +31300,0,0.561767,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.482405,0.15,4 +31304,0,0.343046,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.233094,0.15,4 +31301,0,0.257203,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.172861,0.15,4 +21255,0,0.249869,2,2,1,2,3,,3,2,Merriman,Rd,4700000,5.574,5.824,0,5.996845,5,5 +17783,0,0.251885,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,0,0.252,0,6.045231,8,4.5 +18715,0,0.192502,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,3.968,4.16,0,4.620044,8,4.5 +33934,0,0.283887,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.813286,0.15,4 +33935,0,0.409262,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.822288,0.15,4 +32371,0,0.124533,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.988799,0.15,4 +18284,0,0.086996,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,3.881,3.968,0,2.087895,8,4.5 +37165,0,7.938496,1,1,0,0,82,,3,5,Norfolk Southern Railway,,4604999,23.22,31.155,1,,0.15,4 +31901,0,0.2611,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.266401,0.15,4 +18705,0,0.45957,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,4.91,5.369,0,11.029673,8,4.5 +19029,0,0.660276,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,11.921,12.582,0,15.846621,5,5 +23215,-1,0.523418,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,11.121,11.644,0,12.562039,5,5 +30271,0,0.289018,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.936425,0.15,4 +31664,0,0.362995,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.711888,0.15,4 +31932,0,0.274637,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.591286,0.15,4 +18273,0,0.188601,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,4.721,4.91,0,4.52642,8,4.5 +16485,0,0.272586,1,1,0,2,5,,3,2,Palmer,Rd,1607406,7.268,7.541,0,6.542062,8,4.5 +18270,0,0.435544,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,5.369,5.804,0,10.453051,8,4.5 +17619,0,0.022443,2,2,0,2,3,,3,2,Middle Belt,Rd,1674403,11.899,11.921,0,0.538639,5,5 +31903,0,0.251193,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.028636,0.15,4 +15265,0,0.49381,2,2,1,2,3,,3,2,Ford,Rd,1595510,10.031,10.525,0,11.851441,5,5 +16107,0,0.275961,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,10.037,10.313,0,6.623057,6,4.5 +17594,0,0.301982,1,1,0,2,5,,3,2,Avondale,Ave,1686907,2.702,3.004,0,7.247571,8,4.5 +18690,0,0.123217,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,6.861,6.984,0,2.957216,8,4.5 +19012,1,0.259618,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,3.236,3.495,0,6.230837,8,4.5 +19027,0,0.245007,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,13.914,14.159,0,5.880157,5,5 +21573,0,0.243785,2,2,1,2,3,,3,2,Merriman,Rd,4700000,7.066,7.31,0,5.850851,5,5 +23389,1,0.350141,1,0,0,2,5,DV2,3,2,Maplewood,Ave,4704589,0.9,1.25,0,8.403384,8,4.5 +24244,-1,0.259683,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711017,1.253,1.512,0,6.232401,8,4.5 +24527,-1,0.35006,0,1,0,2,5,DV2,3,2,Maplewood,Ave,4708693,0,0.35,0,8.401447,8,4.5 +31199,0,0.50156,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.037445,0.15,4 +31934,0,0.132889,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.189331,0.15,4 +16357,0,0.534693,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,9.502,10.037,0,12.832641,6,4.5 +17219,1,0.502739,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,2.733,3.236,0,12.065731,8,4.5 +21307,0,0.246973,2,2,1,2,3,,3,2,Merriman,Rd,4700000,6.569,6.816,0,5.927364,5,5 +24245,-1,0.502707,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711017,0.75,1.253,0,12.06496,8,4.5 +21522,0,0.311014,2,2,1,2,3,,3,2,Merriman,Rd,4700000,6.258,6.569,0,7.464347,5,5 +21735,0,0.184978,2,2,1,2,3,,3,2,Merriman,Rd,4700000,6.073,6.258,0,4.439468,5,5 +22065,0,0.243812,2,2,1,2,3,,3,2,Merriman,Rd,4700000,6.816,7.059,0,5.851488,5,5 +21797,0,0.006702,2,2,1,2,3,,3,2,Merriman,Rd,4700000,7.059,7.066,0,0.160846,5,5 +15540,0,0.495006,2,2,1,2,3,,3,2,Ford,Rd,1595510,9.537,10.031,0,11.880152,5,5 +22119,0,0.242113,2,2,1,2,3,,3,2,Merriman,Rd,4700000,7.557,7.799,0,5.810716,5,5 +30274,0,0.363913,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.733911,0.15,4 +30275,0,0.27571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.617044,0.15,4 +30279,0,0.381687,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.160482,0.15,4 +21354,0,0.247127,2,2,1,2,3,,3,2,Merriman,Rd,4700000,7.31,7.557,0,5.931057,5,5 +21853,0,0.257969,2,2,1,2,3,,3,2,Merriman,Rd,4700000,7.799,8.057,0,6.191259,5,5 +23390,0,0.147663,1,1,0,2,5,,3,2,Maplewood,Ave,4704589,0.752,0.9,0,3.543909,8,4.5 +21611,0,0.187886,2,2,1,2,3,,3,2,Merriman,Rd,4700000,8.057,8.244,0,4.509272,5,5 +16097,0,0.481515,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,10.529,11.01,0,11.556371,6,4.5 +18124,1,0.246139,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,3.729,3.976,0,5.907343,8,4.5 +18455,0,0.249014,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,13.413,13.662,0,5.976339,5,5 +18701,0,0.373777,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,6.363,6.736,0,8.97064,8,4.5 +18900,0,0.245567,1,1,0,2,5,,3,2,Avondale,Ave,1686907,3.205,3.451,0,5.893618,8,4.5 +24278,-1,0.246084,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711013,0,0.246,0,5.906022,8,4.5 +26862,0,0.266022,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.384525,0.15,4 +31933,0,0.268543,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.44503,0.15,4 +16353,0,0.215995,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,10.313,10.529,0,5.183871,6,4.5 +18268,0,0.494696,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,5.868,6.363,0,11.872702,8,4.5 +19209,0,0.20137,1,1,0,2,5,,3,2,Avondale,Ave,1686907,3.004,3.205,0,4.832891,8,4.5 +33790,0,0.499955,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.998924,0.15,4 +31917,0,0.048556,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.165345,0.15,4 +18438,0,0.165216,1,1,0,2,5,,3,2,Marquette,Ave,1685107,3.564,3.729,0,3.965183,8,4.5 +32430,0,0.172065,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.129556,0.15,4 +18655,0,0.069136,1,1,0,2,5,,3,2,Marquette,Ave,1685107,3.495,3.564,0,1.659271,8,4.5 +18267,0,0.124389,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,6.736,6.861,0,2.985324,8,4.5 +30253,0,0.135354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.248495,0.15,4 +32431,0,0.001727,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.041441,0.15,4 +17714,0,0.260111,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,13.153,13.413,0,6.242655,5,5 +18640,0,0.244084,1,1,0,2,5,,3,2,Avondale,Ave,1686907,3.451,3.695,0,5.858011,8,4.5 +18137,0,0.238313,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,12.915,13.153,0,5.719523,5,5 +17930,1,0.24456,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,3.976,4.22,0,5.869429,8,4.5 +18040,0,0.244666,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,13.662,13.907,0,5.871979,5,5 +24277,-1,0.244682,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711013,0.246,0.491,0,5.872365,8,4.5 +17617,0,0.007041,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,13.907,13.914,0,0.168977,5,5 +15046,0,0.502975,2,2,1,2,3,,3,2,Ford,Rd,1595510,10.525,11.028,0,12.071401,5,5 +18247,0,0.302078,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,7.417,7.719,0,7.249871,8,4.5 +18926,0,0.243153,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,14.405,14.648,0,5.835674,5,5 +23388,1,0.500108,1,0,0,2,5,DV2,3,2,Maplewood,Ave,4704589,1.25,1.749,0,12.002586,8,4.5 +24523,-1,0.339992,0,1,0,2,5,DV2,3,2,Maplewood,Ave,4708693,0.51,0.85,0,8.159818,8,4.5 +31200,0,0.495325,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.887792,0.15,4 +32435,0,0.233607,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.606557,0.15,4 +18248,0,0.371769,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,6.984,7.356,0,8.922459,8,4.5 +18689,0,0.061871,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,7.356,7.417,0,1.484898,8,4.5 +18688,0,0.13878,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,7.719,7.858,0,3.330715,8,4.5 +32479,0,0.145947,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.502735,0.15,4 +18681,0,0.14278,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,7.864,8.007,0,3.426731,8,4.5 +24526,-1,0.160109,0,1,0,2,5,DV2,3,2,Maplewood,Ave,4708693,0.35,0.51,0,3.842625,8,4.5 +32350,0,0.153721,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.689305,0.15,4 +32351,0,0.203504,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.884094,0.15,4 +18246,0,0.006146,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,7.858,7.864,0,0.147514,8,4.5 +18555,0,0.245701,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,14.159,14.405,0,5.896822,5,5 +18453,0,0.26187,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,14.648,14.909,0,6.284876,5,5 +18039,0,0.006905,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,14.909,14.916,0,0.165724,5,5 +15793,1,0.397267,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,12.319,12.716,0,9.534402,5,5 +17687,0,0.31321,1,1,0,2,5,,3,2,John Daly,Rd,1642902,0.811,1.124,0,7.51703,8,4.5 +18775,0,0.776761,2,2,0,2,3,,3,2,Inkster,Rd,1674404,12.108,12.884,0,18.642255,5,5 +19178,0,0.500417,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,1,1.5,0,12.010016,8,4.5 +22633,-1,0.375814,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,12.308,12.683,0,9.019533,5,5 +31898,0,0.482648,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.583546,0.15,4 +31900,0,0.499073,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.977763,0.15,4 +31915,0,0.553201,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.276822,0.15,4 +33932,0,0.342531,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.22074,0.15,4 +17770,0,0.496434,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,0.504,1,0,11.914423,8,4.5 +31196,0,0.499571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.989712,0.15,4 +31899,0,0.486903,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.68566,0.15,4 +19030,0,0.232337,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,10.686,10.919,0,5.576086,5,5 +32389,0,0.249963,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.999106,0.15,4 +31908,0,0.110983,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.663596,0.15,4 +31910,0,0.094522,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.268533,0.15,4 +17720,0,0.313406,1,1,0,2,5,,3,2,John Daly,Rd,1642902,0.248,0.561,0,7.521745,8,4.5 +17744,0,0.50202,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,1.5,2.002,0,12.04848,8,4.5 +18445,0,0.498914,2,2,1,2,3,,3,2,Inkster,Rd,1674404,11.609,12.108,0,11.973938,5,5 +31878,0,0.521594,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.518249,0.15,4 +32507,0,0.499508,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.988199,0.15,4 +18919,0,0.247982,2,2,1,2,3,,3,2,Inkster,Rd,1674404,11.361,11.609,0,5.951556,5,5 +32391,0,0.291597,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.998333,0.15,4 +19152,0,0.150301,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,2.002,2.152,0,3.607213,8,4.5 +17716,0,0.249677,1,1,0,2,5,,3,2,John Daly,Rd,1642902,0.561,0.811,0,5.992255,8,4.5 +33933,0,0.310618,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.454827,0.15,4 +31877,0,0.025961,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.623071,0.15,4 +15791,1,0.253719,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,12.973,13.226,0,6.089266,5,5 +17683,0,0.488641,1,1,0,2,5,,3,2,John Daly,Rd,1642902,1.124,1.612,0,11.727375,8,4.5 +17934,0,0.489333,2,2,1,2,3,,3,2,Inkster,Rd,1674404,12.908,13.397,0,11.743991,5,5 +23301,-1,0.305161,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,12.89,13.195,0,7.323859,5,5 +31907,0,0.257813,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.187521,0.15,4 +31924,0,0.481008,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.544187,0.15,4 +31927,0,0.470112,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.282681,0.15,4 +15792,1,0.256866,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,12.716,12.973,0,6.164775,5,5 +23639,-1,0.206405,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,12.683,12.89,0,4.95373,5,5 +18321,0,0.02311,2,2,0,2,3,,3,2,Inkster,Rd,1674404,12.884,12.908,0,0.554635,5,5 +31912,0,0.249329,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.983902,0.15,4 +17676,0,0.377494,1,1,0,2,5,,3,2,John Daly,Rd,1642902,1.635,2.012,0,9.059863,8,4.5 +17678,0,0.022869,1,1,0,2,5,,3,2,John Daly,Rd,1642902,1.612,1.635,0,0.548855,8,4.5 +14563,0,0.503911,2,2,1,2,3,,3,2,Ford,Rd,1595510,11.52,12.024,0,12.093869,5,5 +16086,0,0.512151,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,11.506,12.018,0,12.291621,6,4.5 +17220,1,0.508629,1,0,0,2,5,DV2,3,2,Marquette,Ave,1685107,4.714,5.223,0,12.207097,8,4.5 +17634,0,0.49659,1,1,0,2,5,,3,2,John Daly,Rd,1642902,3.252,3.748,0,11.918162,8,4.5 +18031,0,0.24718,2,2,0,2,3,,3,2,Inkster,Rd,1674404,14.612,14.859,0,5.932317,5,5 +18116,0,0.504952,1,1,0,2,5,,3,2,Avondale,Ave,1686907,4.195,4.699,0,12.118843,8,4.5 +23386,1,0.501037,1,0,0,2,5,DV2,3,2,Maplewood,Ave,4704589,2.244,2.745,0,12.024878,8,4.5 +24261,-1,0.508582,0,1,0,2,5,DV2,3,2,Marquette,Ave,4711013,0.985,1.493,0,12.205971,8,4.5 +24513,-1,0.501189,0,1,0,2,5,DV2,3,2,Maplewood,Ave,4708693,1.345,1.846,0,12.028537,8,4.5 +31310,0,0.501599,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.038373,0.15,4 +31922,0,0.5041,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.098399,0.15,4 +31926,0,0.243031,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.83274,0.15,4 +31931,0,0.502531,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.060747,0.15,4 +32374,0,0.498462,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.963098,0.15,4 +32438,0,0.50119,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.028572,0.15,4 +31914,0,0.247443,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.938641,0.15,4 +31929,0,0.249358,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.984604,0.15,4 +31930,0,0.250006,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.000146,0.15,4 +31916,0,0.248482,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.963579,0.15,4 +31923,0,0.251104,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.0265,0.15,4 +31925,0,0.249962,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.999083,0.15,4 +31921,0,0.242927,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.830245,0.15,4 +16326,0,0.193742,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,12.327,12.52,0,4.649816,6,4.5 +17595,0,0.252469,1,1,0,2,5,,3,2,Avondale,Ave,1686907,4.949,5.202,0,6.059263,8,4.5 +17630,1,0.500475,1,0,0,2,5,DV2,3,2,Wilson,Dr,1643301,0,0.5,0,12.011407,8,4.5 +17668,0,0.499314,1,1,0,2,5,,3,2,John Daly,Rd,1642902,2.247,2.746,0,11.983539,8,4.5 +17933,0,0.23053,2,2,1,2,3,,3,2,Inkster,Rd,1674404,13.878,14.109,0,5.532721,5,5 +24103,-1,0.24867,0,1,0,2,5,DV2,3,2,Wilson,Dr,4711427,0.252,0.5,0,5.968075,8,4.5 +17796,0,0.249799,1,1,0,2,5,,3,2,Avondale,Ave,1686907,4.699,4.949,0,5.995179,8,4.5 +18918,0,0.270734,2,2,1,2,3,,3,2,Inkster,Rd,1674404,13.607,13.878,0,6.497614,5,5 +16334,0,0.251473,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,12.018,12.269,0,6.035347,6,4.5 +18917,0,0.24471,2,2,0,2,3,,3,2,Inkster,Rd,1674404,14.361,14.605,0,5.873033,5,5 +24259,-1,0.251821,0,1,0,2,5,DV2,3,2,Wilson,Dr,4711427,0,0.252,0,6.043707,8,4.5 +32437,0,0.500192,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.004618,0.15,4 +17513,0,0.252005,2,2,0,2,3,,3,2,Inkster,Rd,1674404,14.109,14.361,0,6.04813,5,5 +18444,0,0.006424,2,2,0,2,3,,3,2,Inkster,Rd,1674404,14.605,14.612,0,0.154175,5,5 +16068,0,0.057495,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,12.269,12.327,0,1.379881,6,4.5 +32436,0,0.004959,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.119024,0.15,4 +17624,1,0.248706,1,0,0,2,5,DV2,3,2,Wilson,Dr,1643301,0.5,0.749,0,5.968934,8,4.5 +17659,0,0.499052,1,1,0,2,5,,3,2,John Daly,Rd,1642902,2.746,3.245,0,11.977237,8,4.5 +17640,0,0.006907,1,1,0,2,5,,3,2,John Daly,Rd,1642902,3.245,3.252,0,0.165761,8,4.5 +15262,0,0.247312,3,3,1,2,3,,3,2,Ford,Rd,1595510,12.276,12.523,0,5.935498,5,5 +18914,0,0.301183,2,2,0,2,3,,3,2,Inkster,Rd,1674404,15.108,15.409,0,7.22839,5,5 +32395,0,0.50371,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.089039,0.15,4 +32396,0,0.247275,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.934593,0.15,4 +15536,0,0.251935,3,3,1,2,3,,3,2,Ford,Rd,1595510,12.024,12.276,0,6.046434,5,5 +17510,0,0.249586,2,2,0,2,3,,3,2,Inkster,Rd,1674404,14.859,15.108,0,5.990053,5,5 +18440,0,0.18113,2,2,0,2,3,,3,2,Inkster,Rd,1674404,15.409,15.59,0,4.347125,5,5 +18028,0,0.00773,2,2,0,2,3,,3,2,Inkster,Rd,1674404,15.59,15.598,0,0.185531,5,5 +11076,1,1.20414,4,0,0,1,1,,4,2,E I 94,,1576405,15.102,16.306,0,,0.8,7.5 +11873,-1,0.250458,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,3.35,3.6,0,6.011001,5,5 +11931,1,0.188166,1,0,0,1,5,,4,2,Byers,,1579910,0.339,0.527,0,,5.8,4.5 +12779,0,0.345827,2,2,1,2,4,,3,2,Goddard,Rd,1578601,1.983,2.329,0,8.299843,6,4.5 +37334,1,0.095495,2,0,0,1,1,ROF,4,2,E I 94/NB Telegraph,RAMP,4712150,0,0.095,0,,2.24,5 +13100,0,0.395175,2,2,1,2,3,,4,2,Northline,Rd,1578505,1.98,2.375,0,9.484197,3.7,5 +37317,1,0.701821,3,0,0,1,1,,4,2,E I 94,,1576405,14.401,15.102,0,,0.8,7.5 +16864,0,0.389694,1,1,0,2,3,,4,2,Ecorse,Rd,5495384,11.033,11.423,0,9.352661,3.7,5 +17505,0,0.666433,1,1,0,2,5,,3,2,Mortenview,Dr,1656610,0.85,1.516,0,15.994384,8,4.5 +17508,0,0.319562,2,2,0,2,5,,3,2,Pardee,Rd,1655206,2.738,3.058,0,7.669488,8,4.5 +17874,0,0.563224,2,2,1,2,3,,3,2,Van Born,Rd,1670203,8.022,8.586,0,13.517372,5,5 +18066,0,0.489709,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,4.583,5.072,0,11.75301,4.5,4.5 +18774,0,0.384206,1,1,0,2,4,,3,2,Wick,Rd,1664408,2.995,3.379,0,9.220933,6,4.5 +22109,1,0.2458,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,10.239,10.485,0,5.899197,5,5 +30748,0,0.5263,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.631199,0.15,4 +30749,0,0.390359,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.368612,0.15,4 +32294,0,0.473881,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.373145,0.15,4 +32370,0,0.495319,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.887648,0.15,4 +32439,0,0.52941,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.705833,0.15,4 +32443,0,0.384442,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.226599,0.15,4 +32444,0,0.385754,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.258098,0.15,4 +32445,0,0.279656,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.711742,0.15,4 +32449,0,0.372138,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.931313,0.15,4 +32452,0,0.390596,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.374307,0.15,4 +32455,0,0.505704,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.136896,0.15,4 +32456,0,0.277804,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,6.667297,0.15,4 +32463,0,0.367964,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.831146,0.15,4 +33730,0,0.468868,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.25284,0.15,4 +11877,-1,0.497558,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,2.102,2.599,0,11.941388,3.7,5 +11934,0,0.719331,2,2,1,2,4,,4,2,Northline,Rd,1578505,0.989,1.708,0,17.263952,4.5,4.5 +12784,0,0.463637,2,2,1,2,4,,4,2,Goddard,Rd,1578601,0.989,1.453,0,11.127295,4.5,4.5 +18579,0,0.499609,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,3.575,4.075,0,11.990613,4.5,4.5 +21660,1,0.623962,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,8.86,9.484,0,14.975088,3.7,5 +30486,0,0.4994,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.98559,0.15,4 +32030,0,0.484131,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.619151,0.15,4 +32387,0,0.485435,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.650428,0.15,4 +18835,0,0.499729,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,3.076,3.575,0,11.993493,4.5,4.5 +18249,0,0.508182,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,4.075,4.583,0,12.196375,4.5,4.5 +11878,-1,0.502631,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,1.599,2.102,0,12.063134,3.7,5 +13123,0,0.247985,2,2,1,2,4,,4,2,Northline,Rd,1578505,1.708,1.956,0,5.951649,4.5,4.5 +21917,1,0.376389,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,8.484,8.86,0,9.03333,3.7,5 +32042,0,0.550302,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,13.207247,0.15,4 +32460,0,0.484175,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.620211,0.15,4 +33451,0,0.52104,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.504959,0.15,4 +22060,1,0.255567,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,8.229,8.484,0,6.133599,3.7,5 +11908,0,0.02409,2,2,1,2,3,,4,2,Northline,Rd,1578505,1.956,1.98,0,0.578149,3.7,5 +11875,-1,0.226249,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,2.808,3.034,0,5.429967,5,5 +12781,0,0.500472,2,2,1,2,4,,4,2,Goddard,Rd,1578601,1.459,1.96,0,12.011321,4.5,4.5 +21456,1,0.285326,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,9.484,9.769,0,6.847836,5,5 +31883,0,0.498123,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.95495,0.15,4 +32453,0,0.488047,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.713117,0.15,4 +33580,0,0.550495,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.211876,0.15,4 +12443,0,0.006877,2,2,1,2,4,,4,2,Goddard,Rd,1578601,1.453,1.459,0,0.165046,4.5,4.5 +11876,-1,0.209004,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,2.599,2.808,0,5.016102,5,5 +12442,0,0.023179,2,2,1,2,4,,3,2,Goddard,Rd,1578601,1.96,1.983,0,0.556307,6,4.5 +11874,-1,0.315571,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,3.034,3.35,0,7.573699,5,5 +21242,1,0.470115,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,9.769,10.239,0,11.282767,5,5 +11870,-1,0.586744,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,4.073,4.659,0,14.081846,3.7,5 +11930,1,0.339334,1,0,0,1,5,,4,2,Byers,,1579910,0,0.339,0,,5.8,4.5 +16876,0,0.492824,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,9.97,10.463,0,11.827774,3.7,5 +17530,0,0.2121,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,5.857,6.069,0,5.090395,4.5,4.5 +17893,0,0.490127,2,2,1,2,3,,3,2,Van Born,Rd,1670203,7.514,8.004,0,11.763048,5,5 +18334,0,0.489884,1,1,0,2,4,,4,2,Wick,Rd,1664408,2.002,2.492,0,11.757213,4.5,4.5 +21347,1,0.224302,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,11.316,11.54,0,5.383241,3.7,5 +32383,0,0.208066,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,4.993588,0.15,4 +32451,0,0.532088,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.770117,0.15,4 +32464,0,0.513769,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.330448,0.15,4 +32466,0,0.146274,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,3.510575,0.15,4 +33571,0,0.527914,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.66993,0.15,4 +33729,0,0.518363,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.440703,0.15,4 +17950,0,0.508069,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,5.349,5.857,0,12.193644,4.5,4.5 +18341,0,0.277248,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,5.072,5.349,0,6.653953,4.5,4.5 +32384,0,0.360284,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,8.646817,0.15,4 +17912,0,0.247401,2,2,1,2,3,,3,2,Van Born,Rd,1670203,7.027,7.275,0,5.937627,5,5 +18462,0,0.454263,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,6.237,6.691,0,10.902323,4.5,4.5 +32381,0,0.293879,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.053102,0.15,4 +32382,0,0.450697,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.816737,0.15,4 +32465,0,0.460525,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.052595,0.15,4 +16877,0,0.246566,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,9.724,9.97,0,5.917591,3.7,5 +16879,0,0.011696,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,9.712,9.724,0,0.280709,3.7,5 +18935,0,0.167392,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,6.069,6.237,0,4.01742,4.5,4.5 +17498,0,0.288401,2,2,0,2,3,,3,2,Van Born,Rd,1670203,6.739,7.027,0,6.921621,5,5 +18046,0,0.332846,1,1,0,2,4,,4,2,Beech Daly,Rd,1692903,6.691,7.023,0,7.988312,4.5,4.5 +17485,0,0.239651,2,2,1,2,3,,3,2,Van Born,Rd,1670203,7.275,7.514,0,5.751621,5,5 +11872,-1,0.410609,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,3.6,4.011,0,9.854604,3.7,5 +18781,0,0.479014,1,1,0,2,4,,4,2,Wick,Rd,1664408,2.492,2.971,0,11.496345,4.5,4.5 +21918,1,0.376157,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,10.485,10.861,0,9.02777,3.7,5 +32446,0,0.472514,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.340348,0.15,4 +32461,0,0.459071,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.0177,0.15,4 +32462,0,0.400084,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.602017,0.15,4 +18324,0,0.024239,2,2,0,2,4,,3,2,Wick,Rd,1664408,2.971,2.995,0,0.581737,6,4.5 +21513,1,0.328718,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,10.987,11.316,0,7.889237,3.7,5 +32458,0,0.301124,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.226979,0.15,4 +33570,0,0.302847,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.268337,0.15,4 +33731,0,0.314403,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.545665,0.15,4 +21605,1,0.031267,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,10.956,10.987,0,0.750418,3.7,5 +11871,-1,0.062336,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,4.011,4.073,0,1.496058,3.7,5 +21788,1,0.094595,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,10.861,10.956,0,2.270276,3.7,5 +37339,1,0.240198,2,0,0,1,1,ROF,4,2,W I 94/Telegraph,RAMP,1580004,0,0.24,0,,2.24,5 +37357,-1,0.01723,0,2,0,2,4,,3,5,Maple,Rd,4605989,0.033,0.05,0,0.413515,6,4.5 +37344,1,0.092924,2,0,0,1,1,RON,4,2,NB Telegraph/W I 94,RAMP,4712153,0,0.093,0,,1.09,4 +37322,-1,0.77806,0,3,0,1,1,,4,2,W I 94,,1588802,14.289,15.067,0,,0.8,7.5 +37342,1,0.107773,2,0,0,1,1,ROF,4,2,W I 94/SB Telegraph,RAMP,4712152,0,0.108,0,,2.24,5 +37337,1,0.098498,2,0,0,1,1,RON,4,2,SB Telegraph/E I 94,RAMP,4712151,0,0.099,0,,1.09,4 +12526,1,0.159213,1,0,0,1,3,RSF,4,2,S US 24/Ecorse,RAMP,1578706,0,0.159,0,,3.7,5 +37335,1,0.103834,1,0,0,1,1,RON,4,2,NB Telegraph/E I 94,RAMP,1576808,0,0.104,0,,1.09,4 +37331,1,0.284276,2,0,0,1,1,ROF,4,2,E I 94/Telegraph,RAMP,1576804,0,0.284,0,,2.24,5 +16874,0,0.010171,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,10.875,10.886,0,0.244111,3.7,5 +37356,1,0.020613,1,0,0,2,4,,3,5,SB N Maple/NB N Maple,TURN,1446110,0.316,0.337,0,0.494719,6,4.5 +16875,0,0.412504,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,10.463,10.875,0,9.900087,3.7,5 +37338,1,0.269722,2,0,0,1,1,RON,4,2,Telegraph/E I 94,RAMP,1576808,0.104,0.373,0,,1.09,4 +11868,-1,0.206569,0,4,0,2,3,DIV,4,2,Telegraph,Rd,1576806,4.729,4.936,0,4.957659,3.7,5 +22058,1,0.212489,4,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,11.608,11.82,0,5.099729,3.7,5 +11869,-1,0.070078,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,4.659,4.729,0,1.681865,3.7,5 +12465,1,0.152139,1,0,0,1,3,RSF,4,2,Ecorse/N US 24,RAMP,1580002,0,0.152,0,,3.7,5 +12884,1,0.133362,1,0,0,1,3,RSF,4,2,Ecorse/S US 24,RAMP,1578705,0,0.133,0,,3.7,5 +13209,1,0.127339,1,0,0,1,3,RSF,4,2,N US 24/W Ecorse,RAMP,1580001,0,0.127,0,,3.7,5 +16871,0,0.137832,2,2,1,2,3,,4,2,Ecorse,Rd,5495384,10.886,11.023,0,3.30796,3.7,5 +21243,1,0.067821,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,11.54,11.608,0,1.627707,3.7,5 +40310,-1,0.152125,0,2,0,2,4,DIV,4,3,Wattles,Rd,4416867,0.198,0.35,0,3.650994,4.5,4.5 +40309,-1,0.017552,0,2,0,2,4,DIV,4,3,Wattles,Rd,4416867,0.18,0.198,0,0.42124,4.5,4.5 +37145,1,0.026246,1,0,0,1,1,RON,3,3,S Rochester/N I 75,RAMP,5492912,0.015,0.041,0,,1.09,4 +37146,1,0.167647,1,0,0,1,1,RON,4,3,Rochester/N I 75,RAMP,682607,0.033,0.201,0,,1.09,4 +40311,0,0.197043,2,2,1,2,3,,4,3,Rochester,Rd,4413538,6.008,6.205,0,4.729025,3.7,5 +16870,0,0.009902,1,1,0,2,3,,4,2,Ecorse,Rd,5495384,11.023,11.033,0,0.237649,3.7,5 +40308,-1,0.012506,0,3,0,2,3,DIV,4,3,Rochester,Rd,4406170,3.156,3.168,0,0.300144,3.7,5 +11867,-1,0.238372,0,4,0,2,3,DIV,4,2,Telegraph,Rd,1576806,4.936,5.174,0,5.720938,3.7,5 +21919,1,0.20141,4,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,11.82,12.021,0,4.833845,3.7,5 +37340,1,0.119744,1,0,0,1,1,ROF,4,2,W I 94/NB Telegraph,RAMP,1580004,0.24,0.36,0,,2.24,5 +37324,1,0.111985,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,12.021,12.133,0,2.687644,3.7,5 +37355,1,0.032208,2,0,0,2,4,,3,5,Maple,Rd,1452206,3.038,3.07,0,0.772985,6,4.5 +37326,-1,0.075717,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,5.174,5.25,0,1.817215,3.7,5 +37332,1,0.076718,2,0,0,1,1,ROF,4,2,E I 94/SB Telegraph,RAMP,1576804,0.284,0.361,0,,2.24,5 +37330,-1,0.155644,0,3,0,2,3,DIV,4,2,Telegraph,Rd,1576806,5.25,5.405,0,3.735467,3.7,5 +37328,1,0.130727,3,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,12.133,12.264,0,3.137447,3.7,5 +37354,-1,0.032988,0,2,0,2,4,,3,5,Maple,Rd,4605989,0,0.033,0,0.79172,6,4.5 +11863,-1,0.142898,0,4,0,2,3,DIV,4,2,Telegraph,Rd,1576806,5.405,5.548,0,3.429556,3.7,5 +21455,1,0.167843,4,0,0,2,3,DIV,4,2,Telegraph,Rd,4700038,12.264,12.432,0,4.028237,3.7,5 +17458,0,0.018199,2,2,1,2,3,,3,2,Van Born,Rd,1670203,8.004,8.022,0,0.436777,5,5 +11901,0,0.352443,2,2,1,2,3,,3,2,Northline,Rd,1578505,3.013,3.365,0,8.458634,5,5 +12816,0,0.570657,2,2,1,2,4,,3,2,Goddard,Rd,1578601,2.735,3.306,0,13.695764,6,4.5 +18466,0,0.494468,2,2,0,2,5,,3,2,Pardee,Rd,1655206,1.56,2.054,0,11.867224,8,4.5 +30487,0,0.505971,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.143293,0.15,4 +30620,0,0.633354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.20049,0.15,4 +30680,0,0.52957,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.709668,0.15,4 +30796,0,0.437013,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.48832,0.15,4 +32440,0,0.397608,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.542587,0.15,4 +32442,0,0.498037,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.952882,0.15,4 +11907,0,0.352387,2,2,1,2,3,,4,2,Northline,Rd,1578505,2.375,2.727,0,8.45728,3.7,5 +18939,0,0.507564,2,2,0,2,5,,3,2,Pardee,Rd,1655206,1.052,1.56,0,12.181535,8,4.5 +18953,0,0.27138,2,2,0,2,5,,4,2,Pardee,Rd,1655206,0.54,0.811,0,6.513109,5.8,4.5 +30488,0,0.500422,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,12.010127,0.15,4 +32441,0,0.384365,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,9.224772,0.15,4 +27379,0,0.236849,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,5.684373,0.15,4 +32062,0,0.464848,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,11.15636,0.15,4 +23008,0,0.093449,2,2,0,2,5,,4,2,Superior,Rd,4705981,0.703,0.797,0,2.242772,5.8,4.5 +13097,0,0.271123,2,2,1,2,3,,3,2,Northline,Rd,1578505,2.727,2.998,0,6.506942,5,5 +17719,1,0.257103,1,0,0,2,4,DIV,4,2,Racho,Rd,1692908,2.748,3.005,0,6.17047,4.5,4.5 +18474,0,0.241513,2,2,0,2,5,,4,2,Pardee,Rd,1655206,0.811,1.052,0,5.796321,5.8,4.5 +23794,-1,0.246593,0,1,0,2,4,DIV,4,2,Racho,Rd,4707867,0.431,0.677,0,5.918226,4.5,4.5 +32434,0,0.311941,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.486588,0.15,4 +18048,1,0.229604,1,0,0,2,4,DIV,4,2,Racho,Rd,1692908,2.519,2.748,0,5.510498,4.5,4.5 +23795,-1,0.240298,0,1,0,2,4,DIV,4,2,Racho,Rd,4707867,0.191,0.431,0,5.767155,4.5,4.5 +32433,0,0.022517,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.540413,0.15,4 +30797,0,0.010844,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,0.260257,0.15,4 +12515,0,0.406815,2,2,1,2,4,,3,2,Goddard,Rd,1578601,2.329,2.735,0,9.76355,6,4.5 +18934,0,0.316598,2,2,0,2,5,,3,2,Pardee,Rd,1655206,2.054,2.371,0,7.598356,8,4.5 +32447,0,0.391715,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.401156,0.15,4 +32448,0,0.400967,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.623199,0.15,4 +32450,0,0.224064,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.377534,0.15,4 +18461,0,0.367679,2,2,0,2,5,,3,2,Pardee,Rd,1655206,2.371,2.738,0,8.824288,8,4.5 +30314,0,0.388607,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.326558,0.15,4 +13094,0,0.200298,2,2,1,2,3,,3,2,Northline,Rd,1578505,3.365,3.565,0,4.807162,5,5 +30489,0,0.499002,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.97604,0.15,4 +12158,0,0.132244,2,2,1,2,4,,3,2,Goddard,Rd,1578601,3.462,3.594,0,3.173856,6,4.5 +18436,0,0.354986,1,1,0,2,5,,3,2,Mortenview,Dr,1656610,0.495,0.85,0,8.519673,8,4.5 +32228,0,0.295954,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.102894,0.15,4 +32259,0,0.536621,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.878893,0.15,4 +12525,0,0.156101,2,2,1,2,4,,3,2,Goddard,Rd,1578601,3.306,3.462,0,3.746436,6,4.5 +13723,-1,1.339535,0,4,0,1,1,,4,2,W I 94,,1588802,15.067,16.406,0,,0.8,7.5 +16849,0,0.180764,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,11.981,12.161,0,4.338324,5,5 +17497,0,0.624656,1,1,0,2,5,,3,2,Mortenview,Dr,1656610,1.898,2.522,0,14.991752,8,4.5 +17867,0,0.485505,2,2,1,2,3,,3,2,Van Born,Rd,1670203,9.023,9.509,0,11.652122,5,5 +18313,0,0.06259,1,1,0,2,4,,3,2,Wick,Rd,1664408,4.13,4.192,0,1.502171,6,4.5 +18910,0,0.472956,2,2,0,2,5,,3,2,Pardee,Rd,1655206,3.62,4.093,0,11.350938,8,4.5 +19032,0,0.496393,2,2,1,2,3,,3,2,Pelham,Rd,1652704,1.421,1.918,0,11.913434,5,5 +23424,0,0.4957,2,2,0,2,5,,3,2,Monroe,Rd,4705943,1.365,1.86,0,11.896798,8,4.5 +31382,0,0.483188,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.596505,0.15,4 +32457,0,0.361644,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.679457,0.15,4 +32470,0,0.520212,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.485082,0.15,4 +32472,0,0.481973,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.567353,0.15,4 +33733,0,0.179067,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.297608,0.15,4 +18320,0,0.36959,1,1,0,2,4,,3,2,Wick,Rd,1664408,3.379,3.749,0,8.870162,6,4.5 +18912,0,0.562389,2,2,0,2,5,,3,2,Pardee,Rd,1655206,3.058,3.62,0,13.497325,8,4.5 +23423,0,0.497766,2,2,0,2,5,,3,2,Monroe,Rd,4705943,0.867,1.365,0,11.946389,8,4.5 +32459,0,0.253962,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.095079,0.15,4 +33732,0,0.638279,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.318701,0.15,4 +18319,0,0.12444,1,1,0,2,4,,3,2,Wick,Rd,1664408,3.881,4.005,0,2.986549,6,4.5 +18773,0,0.132113,1,1,0,2,4,,3,2,Wick,Rd,1664408,3.749,3.881,0,3.170718,6,4.5 +18768,0,0.124849,1,1,0,2,4,,3,2,Wick,Rd,1664408,4.005,4.13,0,2.996385,6,4.5 +32474,0,0.25222,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.053287,0.15,4 +16857,0,0.26737,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,11.463,11.73,0,6.416885,5,5 +17438,0,0.437946,2,2,1,2,3,,3,2,Van Born,Rd,1670203,8.586,9.023,0,10.510693,5,5 +23012,0,0.487732,2,2,0,2,5,,3,2,Monroe,Rd,4705943,2.3,2.788,0,11.705561,8,4.5 +16862,0,0.039857,1,1,0,2,3,,3,2,Ecorse,Rd,5495384,11.423,11.463,0,0.956579,5,5 +32454,0,0.450223,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,10.805341,0.15,4 +16854,0,0.2509,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,11.73,11.981,0,6.021595,5,5 +23170,0,0.439859,2,2,0,2,5,,3,2,Monroe,Rd,4705943,1.86,2.3,0,10.556624,8,4.5 +18312,0,0.366322,1,1,0,2,4,,3,2,Wick,Rd,1664408,4.322,4.688,0,8.791727,6,4.5 +18909,0,0.382065,1,1,0,2,5,,3,2,Mortenview,Dr,1656610,1.516,1.898,0,9.169561,8,4.5 +33734,0,0.511016,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.264379,0.15,4 +33735,0,0.31992,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.678081,0.15,4 +33736,0,0.485677,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.656242,0.15,4 +18763,0,0.129193,1,1,0,2,4,,3,2,Wick,Rd,1664408,4.192,4.322,0,3.100635,6,4.5 +32471,0,0.239792,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.755014,0.15,4 +32296,0,0.315577,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.573853,0.15,4 +11807,1,0.187728,1,0,0,1,1,RFF,3,2,E I 94/Pelham & M 39,RAMP,1576901,0,0.188,0,,0.58,7 +16840,0,0.426982,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,12.523,12.949,0,10.247576,5,5 +17756,0,0.455753,2,2,1,2,3,,3,2,Van Born,Rd,1670203,9.526,9.982,0,10.938065,5,5 +19006,0,0.313057,2,2,0,2,3,,3,2,Pelham,Rd,1652704,2.248,2.561,0,7.51337,5,5 +32473,0,0.420718,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.097223,0.15,4 +16842,0,0.180487,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,12.342,12.523,0,4.331689,5,5 +32469,0,0.193672,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.648132,0.15,4 +16843,0,0.180679,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,12.161,12.342,0,4.336294,5,5 +32467,0,0.289356,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.944544,0.15,4 +17423,0,0.017694,2,2,1,2,3,,3,2,Van Born,Rd,1670203,9.509,9.526,0,0.424664,5,5 +17613,0,0.165221,2,2,0,2,3,,3,2,Pelham,Rd,1652704,1.918,2.083,0,3.96531,5,5 +19023,0,0.150021,2,2,0,2,3,,3,2,Pelham,Rd,1652704,2.083,2.233,0,3.600505,5,5 +17599,0,0.015057,2,2,0,2,3,,3,2,Pelham,Rd,1652704,2.233,2.248,0,0.361371,5,5 +18997,0,0.092567,2,2,0,2,3,,3,2,Pelham,Rd,1652704,2.561,2.653,0,2.221619,5,5 +19550,1,0.328199,1,0,0,1,1,RON,3,2,Pelham/W I 94,RAMP,1869509,0,0.328,0,,1.09,4 +19552,1,0.256596,1,0,0,1,1,ROF,3,2,E I 94/Pelham,RAMP,1869507,0,0.257,0,,2.24,5 +18520,0,0.195419,2,2,1,2,3,,3,2,Pelham,Rd,1652704,2.653,2.849,0,4.690055,5,5 +11850,-1,0.324074,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,7.773,8.096,0,7.77777,5,5 +12177,0,0.499696,1,1,0,2,5,,3,2,Carlysle,,1578908,0.498,0.997,0,11.992707,8,4.5 +14805,1,0.229347,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,14.348,14.577,0,5.50432,5,5 +17113,0,0.058026,2,2,1,2,3,,2,2,Michigan,Ave,1600206,15.543,15.601,0,1.392624,6,5 +17136,0,0.228068,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,14.33,14.558,0,5.473638,6,4.5 +17137,1,0.083656,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,15.086,15.17,0,2.007744,5,5 +17559,0,0.496876,1,1,0,2,5,,3,2,Gulley,Rd,1643407,2.319,2.816,0,11.925025,8,4.5 +18830,0,0.129603,2,2,1,2,3,,2,2,Oakwood,Blvd,1648503,5.452,5.582,0,3.110483,6,5 +18907,0,0.499916,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,3.495,3.995,0,11.997972,8,4.5 +20012,-1,0.229247,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,0,0.229,0,5.501937,5,5 +22057,1,0.304643,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.662,14.966,0,7.311426,5,5 +23152,-1,0.204131,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.935,15.139,0,4.899149,5,5 +23710,0,0.274819,2,2,0,2,5,,2,2,Monroe,,4706600,0.159,0.433,0,6.595651,8.5,4.5 +24014,0,0.05526,2,2,1,2,3,,2,2,Outer,Dr,4710471,1.117,1.173,0,1.326231,6,5 +32327,0,0.23298,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.59152,0.15,4 +32365,0,0.492321,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.815701,0.15,4 +32398,0,0.141732,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.40156,0.15,4 +32475,0,0.511425,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.274189,0.15,4 +32483,0,0.065651,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,1.575624,0.15,4 +32487,0,0.364918,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.758025,0.15,4 +32491,0,0.338034,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,8.112822,0.15,4 +32492,0,0.259623,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.230945,0.15,4 +32496,0,0.520211,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.485066,0.15,4 +32499,0,0.538855,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,12.932529,0.15,4 +32502,0,0.126346,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.032296,0.15,4 +32503,0,0.607514,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.580342,0.15,4 +32552,0,0.408343,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.800243,0.15,4 +32628,0,0.430995,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.343873,0.15,4 +32720,0,0.379036,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.096862,0.15,4 +32969,0,0.544162,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.059899,0.15,4 +33726,0,0.340418,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.170033,0.15,4 +33727,0,0.346868,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.324834,0.15,4 +33973,0,0.487572,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.701733,0.15,4 +33974,0,0.518689,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.448535,0.15,4 +33983,0,0.642571,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.421715,0.15,4 +11857,-1,0.249733,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,6.543,6.793,0,5.993584,5,5 +17151,1,0.575819,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,14.105,14.681,0,13.819662,5,5 +17578,0,0.624438,1,1,0,2,5,,3,2,Gulley,Rd,1643407,1.068,1.692,0,14.98651,8,4.5 +18562,0,0.250553,1,1,0,2,4,,3,2,Beech Daly,Rd,1692903,8.143,8.394,0,6.01327,6,4.5 +19061,0,0.474618,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,2.997,3.472,0,11.390842,8,4.5 +21241,1,0.250013,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,13.427,13.677,0,6.000304,5,5 +22797,-1,0.497137,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,13.954,14.451,0,11.93129,5,5 +30913,0,0.524281,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.582746,0.15,4 +31909,0,0.206537,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.956883,0.15,4 +32378,0,0.520498,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.491957,0.15,4 +32498,0,0.370995,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.903888,0.15,4 +32509,0,0.510849,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.260365,0.15,4 +32510,0,0.484465,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.627149,0.15,4 +17580,0,0.249745,1,1,0,2,5,,3,2,Gulley,Rd,1643407,0.818,1.068,0,5.993873,8,4.5 +18936,0,0.622369,1,1,0,2,4,,3,2,Beech Daly,Rd,1692903,7.521,8.143,0,14.936853,6,4.5 +19074,0,0.247112,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,2.502,2.749,0,5.930698,8,4.5 +32511,0,0.245989,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.903726,0.15,4 +19129,0,0.247375,2,2,0,2,4,,3,2,Beech Daly,Rd,1692903,7.274,7.521,0,5.936992,6,4.5 +17647,0,0.248752,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,2.749,2.997,0,5.970039,8,4.5 +32377,0,0.248905,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.973729,0.15,4 +32379,0,0.30317,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.276071,0.15,4 +17585,0,0.062007,1,1,0,2,5,,3,2,Gulley,Rd,1643407,0.756,0.818,0,1.488162,8,4.5 +32513,0,0.187454,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.498899,0.15,4 +17154,1,0.123733,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,13.861,13.985,0,2.969598,5,5 +17572,0,0.605024,1,1,0,2,5,,3,2,Gulley,Rd,1643407,1.692,2.297,0,14.520568,8,4.5 +18342,0,0.569283,1,1,0,2,4,,3,2,Beech Daly,Rd,1692903,8.394,8.963,0,13.662782,6,4.5 +23074,-1,0.125372,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,13.828,13.954,0,3.008919,5,5 +32319,0,0.131609,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.158611,0.15,4 +15789,1,0.130621,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,13.606,13.736,0,3.134906,5,5 +22706,-1,0.171148,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,13.534,13.705,0,4.107545,5,5 +31325,0,0.451413,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.833906,0.15,4 +31329,0,0.428439,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.282547,0.15,4 +32397,0,0.407472,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.779333,0.15,4 +32399,0,0.428129,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.275098,0.15,4 +15788,1,0.125085,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,13.736,13.861,0,3.002041,5,5 +23409,-1,0.12359,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,13.705,13.828,0,2.96617,5,5 +18047,0,0.023636,1,1,0,2,4,,3,2,Beech Daly,Rd,1692903,8.963,8.986,0,0.56726,6,4.5 +32508,0,0.129895,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.117474,0.15,4 +16666,1,0.120347,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,13.985,14.105,0,2.888323,5,5 +17564,0,0.022511,1,1,0,2,5,,3,2,Gulley,Rd,1643407,2.297,2.319,0,0.540257,8,4.5 +11859,-1,0.187838,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,6.044,6.232,0,4.508112,5,5 +21405,1,0.372685,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,13.055,13.427,0,8.944442,5,5 +11861,-1,0.11057,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,5.873,5.984,0,2.653671,5,5 +21727,1,0.122789,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,12.805,12.928,0,2.946946,5,5 +21996,1,0.124363,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,12.681,12.805,0,2.984717,5,5 +21511,1,0.126544,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,12.928,13.055,0,3.037061,5,5 +11860,-1,0.060495,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,5.984,6.044,0,1.451888,5,5 +17501,0,0.023435,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,3.472,3.495,0,0.562437,8,4.5 +11858,-1,0.311418,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,6.232,6.543,0,7.474042,5,5 +12542,0,0.024303,1,1,0,2,5,,3,2,Carlysle,,1578908,0.473,0.498,0,0.583277,8,4.5 +11852,-1,0.166339,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,7.563,7.729,0,3.992127,5,5 +11854,-1,0.312288,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,7.227,7.539,0,7.49492,5,5 +12093,1,0.105609,1,0,0,1,3,RSF,3,2,W US 12/N US 24,RAMP,1580010,0,0.106,0,,5,5 +13081,1,0.109951,1,0,0,1,3,RSF,3,2,S US 24/E US 12,RAMP,1579101,0,0.11,0,,5,5 +17149,1,0.024111,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,14.709,14.734,0,0.578669,5,5 +19539,1,0.080143,1,0,0,1,3,RSF,3,2,N US 24/W US 12,RAMP,1876808,0,0.08,0,,5,5 +19541,1,0.123661,1,0,0,1,3,RSF,3,2,E US 12/S US 24,RAMP,1876806,0,0.124,0,,5,5 +21512,1,0.16891,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.452,14.621,0,4.053831,5,5 +21787,1,0.225722,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.198,14.424,0,5.417327,5,5 +23162,-1,0.027386,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.677,14.704,0,0.657261,5,5 +32506,0,0.348297,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.359138,0.15,4 +32845,0,0.37443,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.986309,0.15,4 +22513,-1,0.205154,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.451,14.656,0,4.923699,5,5 +32504,0,0.180915,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.341951,0.15,4 +12706,1,0.113132,1,0,0,1,3,RSF,3,2,S US 24/W US 12,RAMP,1579104,0,0.113,0,,5,5 +19542,1,0.090453,1,0,0,1,3,RSF,3,2,W US 12/S US 24,RAMP,1876805,0,0.09,0,,5,5 +17150,1,0.02839,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,14.681,14.709,0,0.681359,5,5 +23504,-1,0.020592,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.656,14.677,0,0.494202,5,5 +11851,-1,0.04322,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,7.729,7.773,0,1.037285,5,5 +21346,1,0.040454,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.621,14.662,0,0.970903,5,5 +11855,-1,0.309085,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,6.918,7.227,0,7.418047,5,5 +21916,1,0.425754,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,13.773,14.198,0,10.218104,5,5 +11856,-1,0.125047,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,6.793,6.918,0,3.001128,5,5 +22108,1,0.095346,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,13.677,13.773,0,2.288304,5,5 +12092,1,0.134434,1,0,0,1,3,RSF,3,2,N US 24/E US 12,RAMP,1580009,0,0.134,0,,5,5 +17139,1,0.32965,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,14.757,15.086,0,7.91159,5,5 +19540,1,0.116125,1,0,0,1,3,RSF,3,2,E US 12/N US 24,RAMP,1876807,0,0.116,0,,5,5 +22580,-1,0.210516,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.724,14.935,0,5.052386,5,5 +21604,1,0.028751,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.424,14.452,0,0.690019,5,5 +11853,-1,0.023818,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,7.539,7.563,0,0.571634,5,5 +17143,1,0.022984,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,14.734,14.757,0,0.55161,5,5 +22872,-1,0.020307,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,14.704,14.724,0,0.487366,5,5 +11846,-1,0.405387,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.047,9.452,0,9.7293,5,5 +12074,0,0.479762,1,1,0,2,5,,3,2,Hass,Ave,1579305,1.373,1.853,0,11.514293,8,4.5 +14804,0,0.376987,3,3,1,2,3,,3,2,Ford,Rd,1595510,13.524,13.901,0,9.047686,5,5 +15741,0,0.236089,2,2,0,2,4,,3,2,Beech Daly,Rd,1596409,0.502,0.738,0,5.666125,6,4.5 +16119,0,0.376642,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,13.272,13.649,0,9.039413,6,4.5 +17493,0,0.49821,1,1,0,2,5,,3,2,Gulley,Rd,1643407,3.819,4.317,0,11.957046,8,4.5 +21564,1,0.448505,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,15.868,16.316,0,10.764125,5,5 +30880,0,0.527124,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.650986,0.15,4 +30881,0,0.49729,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.934969,0.15,4 +30884,0,0.512584,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.302021,0.15,4 +30885,0,0.378988,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.095701,0.15,4 +32324,0,0.519879,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.477093,0.15,4 +32490,0,0.365806,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.779341,0.15,4 +32501,0,0.317964,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.631136,0.15,4 +17120,0,0.122524,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,13.15,13.272,0,2.940568,6,4.5 +17502,0,0.34,1,1,0,2,5,,3,2,Gulley,Rd,1643407,2.976,3.316,0,8.159997,8,4.5 +18306,0,0.189013,1,1,0,2,5,,3,2,Avondale,Ave,1686907,5.764,5.953,0,4.536311,8,4.5 +24477,0,0.499183,1,1,0,2,5,,3,2,Beech Daly,Rd,4710028,0,0.499,0,11.980393,8,4.5 +30886,0,0.386756,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.282155,0.15,4 +18901,0,0.263685,1,1,0,2,5,,3,2,Avondale,Ave,1686907,5.448,5.711,0,6.328445,8,4.5 +18528,0,0.053161,1,1,0,2,5,,3,2,Avondale,Ave,1686907,5.711,5.764,0,1.275853,8,4.5 +14907,0,0.501696,2,2,0,2,4,,3,2,Beech Daly,Rd,1596409,0,0.502,0,12.040704,6,4.5 +16321,0,0.202057,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,12.822,13.024,0,4.849363,6,4.5 +32376,0,0.450811,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.819466,0.15,4 +16245,0,0.119816,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,13.03,13.15,0,2.875586,6,4.5 +16045,0,0.005891,2,2,1,2,4,,3,2,Cherry Hill,Rd,1607409,13.024,13.03,0,0.141394,6,4.5 +17593,0,0.011477,1,1,0,2,5,,3,2,Wilson,Dr,1643301,0.988,0.999,0,0.275454,8,4.5 +17545,0,0.160281,1,1,0,2,5,,3,2,Gulley,Rd,1643407,2.816,2.976,0,3.846744,8,4.5 +17495,0,0.503427,1,1,0,2,5,,3,2,Gulley,Rd,1643407,3.316,3.819,0,12.082247,8,4.5 +12900,0,0.505344,1,1,0,2,5,,3,2,Hass,Ave,1579305,0.868,1.373,0,12.128247,8,4.5 +15204,0,0.276978,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,1.004,1.281,0,6.647475,6,4.5 +15260,0,0.250807,3,3,1,2,3,,3,2,Ford,Rd,1595510,13.023,13.273,0,6.019376,5,5 +30549,0,0.493432,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.842359,0.15,4 +30882,0,0.24951,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.988248,0.15,4 +15464,0,0.266353,2,2,0,2,4,,3,2,Beech Daly,Rd,1596409,0.738,1.004,0,6.392483,6,4.5 +14987,0,0.219567,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,1.281,1.5,0,5.269599,6,4.5 +15042,0,0.250703,3,3,1,2,3,,3,2,Ford,Rd,1595510,13.273,13.524,0,6.016866,5,5 +30879,0,0.249108,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.978599,0.15,4 +11848,-1,0.324782,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,8.224,8.549,0,7.794779,5,5 +17153,0,0.187302,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,14.022,14.209,0,4.495239,6,4.5 +21843,1,0.467265,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,14.966,15.433,0,11.214357,5,5 +30887,0,0.359851,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.636431,0.15,4 +32489,0,0.338419,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.122056,0.15,4 +32493,0,0.464372,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.144935,0.15,4 +32494,0,0.369742,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.873801,0.15,4 +33724,0,0.227807,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.467376,0.15,4 +11849,-1,0.127828,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,8.096,8.224,0,3.067876,5,5 +32273,0,0.351975,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.447405,0.15,4 +32495,0,0.351654,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.439685,0.15,4 +11847,-1,0.498219,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,8.549,9.047,0,11.957259,5,5 +16992,0,0.351397,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,13.649,14,0,8.433534,6,4.5 +21726,1,0.434602,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,15.433,15.868,0,10.430449,5,5 +30883,0,0.36514,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.763361,0.15,4 +32488,0,0.499692,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.992601,0.15,4 +33574,0,0.392723,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.425343,0.15,4 +16270,0,0.021442,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,14,14.022,0,0.514605,6,4.5 +33725,0,0.209074,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.017775,0.15,4 +16262,0,0.12114,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,14.209,14.33,0,2.907364,6,4.5 +32325,0,0.474492,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.387813,0.15,4 +11842,-1,0.113135,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.549,9.663,0,2.715236,5,5 +13342,1,0.121242,1,0,0,1,3,RSF,3,2,S US 24/M 153,,1579302,0,0.121,0,,5,5 +14901,1,0.063136,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,14.028,14.091,0,1.515255,5,5 +21036,1,0.370104,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,16.433,16.803,0,8.882485,5,5 +21271,-1,0.063835,0,3,0,2,3,DIV,3,2,Ford,Rd,4700214,0.127,0.191,0,1.532039,5,5 +31320,0,0.552242,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.253809,0.15,4 +32326,0,0.345407,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.289778,0.15,4 +32847,0,0.366374,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.792984,0.15,4 +11844,-1,0.06179,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.475,9.537,0,1.482957,5,5 +12283,1,0.126142,1,0,0,1,3,RSF,3,2,M 153/S US 24,RAMP,1579209,0,0.126,0,,5,5 +13354,1,0.080627,1,0,0,1,3,RSF,3,2,N US 24/M 153,,1579210,0.049,0.129,0,,5,5 +15675,1,0.028382,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,13.954,13.983,0,0.681177,5,5 +21375,-1,0.041073,0,3,0,2,3,DIV,3,2,Ford,Rd,4700214,0.024,0.065,0,0.985759,5,5 +21454,1,0.106068,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,16.316,16.422,0,2.545621,5,5 +15630,1,0.023072,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,13.901,13.924,0,0.553725,5,5 +21374,-1,0.023964,0,3,0,2,3,DIV,3,2,Ford,Rd,4700214,0,0.024,0,0.575128,5,5 +12131,1,0.032654,1,0,0,1,3,RSF,3,2,N US 24/M 153,,1579210,0.129,0.162,0,,5,5 +15329,1,0.030475,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,13.924,13.954,0,0.731391,5,5 +12144,1,0.048848,1,0,0,1,3,RSF,3,2,N US 24/M 153,,1579210,0,0.049,0,,5,5 +11845,-1,0.02299,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.452,9.475,0,0.551757,5,5 +11843,-1,0.012503,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.537,9.549,0,0.30008,5,5 +15141,1,0.02272,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,14.005,14.028,0,0.545282,5,5 +21276,-1,0.039686,0,3,0,2,3,DIV,3,2,Ford,Rd,4700214,0.065,0.105,0,0.952456,5,5 +21297,1,0.010799,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,16.422,16.433,0,0.259167,5,5 +22084,-1,0.022331,0,3,0,2,3,DIV,3,2,Ford,Rd,4700214,0.105,0.127,0,0.535951,5,5 +15389,1,0.022118,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,13.983,14.005,0,0.530822,5,5 +13297,1,0.022007,1,0,0,1,3,RSF,3,2,S US 24/M 153,,1579302,0.121,0.143,0,,5,5 +11840,-1,0.164092,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.879,10.043,0,3.938219,5,5 +11841,-1,0.216787,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,9.663,9.879,0,5.202883,5,5 +21995,1,0.124424,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,16.803,16.927,0,2.986181,5,5 +13283,0,0.021161,1,1,0,2,5,,3,2,Hass,Ave,1579305,1.853,1.874,0,0.507871,8,4.5 +15734,0,0.2575,3,3,1,2,3,,3,2,Ford,Rd,1595510,14.091,14.348,0,6.179994,5,5 +12175,0,0.499156,1,1,0,2,5,,3,2,Carlysle,,1578908,1.498,1.997,0,11.979734,8,4.5 +17421,1,0.493047,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,2.23,2.723,0,11.833118,5,5 +18833,1,0.421639,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,2.894,3.316,0,10.119336,5,5 +18895,0,0.305875,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,4.494,4.8,0,7.340996,8,4.5 +18991,0,0.216791,2,2,0,2,4,,3,2,Pelham,Rd,1652704,3.868,4.085,0,5.202996,6,4.5 +22521,0,0.361849,2,2,0,2,5,,2,2,Monroe,,4705943,4.396,4.758,0,8.684385,8.5,4.5 +23009,0,0.251411,2,2,0,2,5,,3,2,Monroe,,4705943,3.787,4.039,0,6.033867,8,4.5 +24005,1,0.429031,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,2.947,3.376,0,10.296752,5,5 +24007,1,0.42184,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,2.281,2.703,0,10.124155,5,5 +27403,0,0.487843,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.708224,0.15,4 +30483,0,0.09973,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.393515,0.15,4 +32278,0,0.533732,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.809568,0.15,4 +32317,0,0.081025,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.94461,0.15,4 +32477,0,0.239307,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.74337,0.15,4 +12540,0,0.500799,1,1,0,2,5,,3,2,Carlysle,,1578908,0.997,1.498,0,12.019177,8,4.5 +17491,0,0.498952,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,3.995,4.494,0,11.974849,8,4.5 +23251,0,0.37512,2,2,0,2,5,,3,2,Monroe,Rd,4705943,3.412,3.787,0,9.002892,8,4.5 +32284,0,0.509353,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.224462,0.15,4 +32366,0,0.515683,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.376398,0.15,4 +32500,0,0.188327,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.519852,0.15,4 +32364,0,0.249455,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.986914,0.15,4 +32497,0,0.18584,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.460167,0.15,4 +22665,0,0.231346,2,2,0,2,5,,3,2,Monroe,Rd,4705943,3.057,3.288,0,5.552314,8,4.5 +23418,0,0.124215,2,2,0,2,5,,3,2,Monroe,Rd,4705943,3.288,3.412,0,2.981171,8,4.5 +18832,1,0.311752,3,0,0,2,3,DV2,2,2,Outer,Dr,1662401,3.537,3.849,0,7.482056,6,5 +24009,1,0.660279,3,0,0,2,3,DV2,2,2,Outer,Dr,4710471,1.4,2.06,0,15.846693,6,5 +32476,0,0.357401,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,8.577618,0.15,4 +32484,0,0.266881,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.405154,0.15,4 +32486,0,0.476303,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.431262,0.15,4 +32629,0,0.608723,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,14.60935,0.15,4 +33818,0,0.371312,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,8.911492,0.15,4 +33976,0,0.620102,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,14.882439,0.15,4 +17130,1,0.240508,2,0,0,2,3,DIV,2,2,Michigan,Ave,1600206,15.283,15.523,0,5.772192,6,5 +18368,1,0.337374,3,0,0,2,3,DV2,2,2,Outer,Dr,1662401,3.849,4.186,0,8.096966,6,5 +22573,-1,0.238092,0,3,0,2,3,DIV,2,2,Michigan,Ave,4705565,15.25,15.488,0,5.714207,6,5 +17132,1,0.113015,2,0,0,2,3,DIV,2,2,Michigan,Ave,1600206,15.17,15.283,0,2.71235,6,5 +22864,-1,0.111393,0,3,0,2,3,DIV,2,2,Michigan,Ave,4705565,15.139,15.25,0,2.673435,6,5 +24010,0,0.132446,2,2,1,2,3,,2,2,Outer,Dr,4710471,1.268,1.4,0,3.178706,6,5 +24012,0,0.076146,2,2,1,2,3,,2,2,Outer,Dr,4710471,1.173,1.249,0,1.82751,6,5 +24011,0,0.018846,2,2,1,2,3,,2,2,Outer,Dr,4710471,1.249,1.268,0,0.45231,6,5 +17127,0,0.019548,2,2,1,2,3,,2,2,Michigan,Ave,1600206,15.523,15.543,0,0.46916,6,5 +18369,1,0.221668,3,0,0,2,3,DV2,2,2,Outer,Dr,1662401,3.316,3.537,0,5.320039,6,5 +22879,0,0.343569,2,2,0,2,5,,3,2,Monroe,,4705943,4.039,4.382,0,8.245651,8,4.5 +24008,1,0.221122,3,0,0,2,3,DV2,2,2,Outer,Dr,4710471,2.06,2.281,0,5.306938,6,5 +22662,0,0.013803,2,2,0,2,5,,2,2,Monroe,,4705943,4.382,4.396,0,0.331265,8.5,4.5 +12528,0,0.499044,1,1,0,2,5,,3,2,Carlysle,,1578908,1.997,2.496,0,11.977062,8,4.5 +17479,0,0.385135,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,4.8,5.185,0,9.243246,8,4.5 +17581,0,0.504778,2,2,0,2,4,,3,2,Pelham,Rd,1652704,3.347,3.852,0,12.11467,6,4.5 +32358,0,0.560233,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.445603,0.15,4 +32710,0,0.262819,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.307656,0.15,4 +32714,0,0.261117,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.266804,0.15,4 +32318,0,0.199787,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.794896,0.15,4 +18888,0,0.309728,1,1,0,2,5,,3,2,Annapolis,Ave,1670310,5.185,5.494,0,7.433463,8,4.5 +18994,0,0.117656,2,2,0,2,4,,3,2,Pelham,Rd,1652704,3.23,3.347,0,2.823744,6,4.5 +12161,0,0.025223,1,1,0,2,5,,3,2,Carlysle,,1578908,2.496,2.521,0,0.605356,8,4.5 +18840,1,0.030175,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,2.2,2.23,0,0.724203,5,5 +18993,0,0.016299,2,2,0,2,4,,3,2,Pelham,Rd,1652704,3.852,3.868,0,0.39117,6,4.5 +11782,0,0.530009,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,0,0.53,0,12.720207,6,4.5 +18866,0,0.340647,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,5.112,5.452,0,8.175533,5,5 +32279,0,0.310393,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.449432,0.15,4 +18834,1,0.171547,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,2.723,2.894,0,4.117119,5,5 +19048,0,0.112813,2,2,1,2,4,,3,2,Village,Rd,1652107,0.013,0.126,0,2.707508,6,4.5 +24006,1,0.244557,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,2.703,2.947,0,5.869374,5,5 +18580,0,0.013352,1,1,1,2,4,,3,2,Village,Rd,1652107,0,0.013,0,0.320448,6,4.5 +17467,0,0.018058,2,2,1,2,4,,3,2,Rotunda,Dr,1646520,0,0.018,0,0.433385,6,4.5 +23591,0,0.407016,2,2,0,2,5,,2,2,Monroe,,4705943,4.758,5.165,0,9.768394,8.5,4.5 +17667,0,0.15064,1,1,0,2,5,,2,2,Beech,Ave,1651105,1.053,1.203,0,3.615371,8.5,4.5 +23565,0,0.031458,2,2,0,2,5,,2,2,Monroe,,4706600,0.433,0.465,0,0.754991,8.5,4.5 +32277,0,0.32647,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.835278,0.15,4 +15097,1,0.172923,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,15.228,15.401,0,4.150144,5,5 +16253,0,0.492324,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,10.337,10.829,0,11.815782,6,4.5 +17081,0,0.105873,2,2,1,2,3,,2,2,Michigan,Ave,1600206,15.995,16.101,0,2.540948,6,5 +17569,0,0.257574,1,1,0,2,5,,3,2,Cherry Hill,,1653104,0.19,0.447,0,6.181766,8,4.5 +18618,0,0.690622,2,2,0,2,5,,3,2,Golfview,Dr,1649401,0.601,1.292,0,16.574932,8,4.5 +19080,0,0.24356,1,1,0,2,5,,2,2,Garrison,,1651109,0.031,0.274,0,5.845432,8.5,4.5 +19155,0,0.133489,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,14.8,14.933,0,3.203736,5,5 +20009,-1,0.342197,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,0.904,1.246,0,8.212739,5,5 +22851,1,0.27238,2,0,0,2,3,DV2,3,2,Outer,Dr,4706543,1.712,1.985,0,6.537111,5,5 +23133,-1,0.27736,0,2,0,2,3,DV2,3,2,Outer,Dr,4706544,0.082,0.359,0,6.656643,5,5 +32271,0,0.607123,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.570962,0.15,4 +32480,0,0.053912,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,1.293884,0.15,4 +33786,0,0.645036,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.480859,0.15,4 +33978,0,0.374576,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.98983,0.15,4 +17108,0,0.225007,2,2,1,2,3,,2,2,Michigan,Ave,1600206,15.601,15.826,0,5.400173,6,5 +17131,0,0.394989,1,1,1,2,5,,3,2,Cherry Hill,Rd,1607409,14.57,14.965,0,9.479734,8,4.5 +18624,-1,0.549145,0,2,0,2,3,DV2,3,2,Outer,Dr,1649401,0.038,0.587,0,13.179471,5,5 +22707,1,0.0462,2,0,0,2,5,DV2,3,2,Military,,4706543,1.182,1.228,0,1.108793,8,4.5 +23132,1,0.475738,2,0,0,2,5,DV2,3,2,Military,,4706543,1.237,1.712,0,11.417707,8,4.5 +23219,-1,0.370032,0,2,0,2,5,DV2,3,2,Military,,4706304,0.07,0.44,0,8.880767,8,4.5 +23711,-1,0.048034,0,2,0,2,5,DV2,3,2,Military,,4706304,0,0.048,0,1.152814,8,4.5 +24017,-1,0.541778,0,2,0,2,3,DV2,3,2,Outer,Dr,4710471,0.025,0.566,0,13.002674,5,5 +24192,0,0.230422,1,1,0,2,5,,2,2,Garrison,,4711176,0,0.23,0,5.530117,8.5,4.5 +24015,0,0.51423,2,2,1,2,3,,3,2,Outer,Dr,4710471,0.603,1.117,0,12.34152,5,5 +18630,-1,0.038102,0,2,0,2,3,DV2,3,2,Outer,Dr,1649401,0,0.038,0,0.914441,5,5 +24016,-1,0.037102,0,2,0,2,3,DV2,3,2,Outer,Dr,4710471,0.566,0.603,0,0.890449,5,5 +16256,0,0.012019,1,1,1,2,4,,3,2,Cherry Hill,Rd,1607409,14.558,14.57,0,0.288445,6,4.5 +15836,0,0.081948,1,1,0,2,5,,2,2,Haigh,,1600004,0.058,0.14,0,1.966747,8.5,4.5 +32481,0,0.068502,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,1.644059,0.15,4 +23564,-1,0.067883,0,2,0,2,5,DV2,3,2,Military,,4706544,0,0.068,0,1.629186,8,4.5 +23377,-1,0.014125,0,2,0,2,5,DV2,3,2,Outer,Dr,4706544,0.068,0.082,0,0.338991,8,4.5 +24019,-1,0.024619,0,2,0,2,3,DV2,3,2,Outer,Dr,4710471,0,0.025,0,0.590844,5,5 +18622,-1,0.014336,0,2,0,2,5,DV2,3,2,Golfview,Dr,1649401,0.587,0.601,0,0.34407,8,4.5 +19081,-1,0.030538,0,1,0,2,5,,2,2,Garrison,,1651109,0,0.031,0,0.732916,8.5,4.5 +22920,0,0.382925,2,2,0,2,5,,3,2,Military,,4706543,0.799,1.182,0,9.190209,8,4.5 +23051,0,0.075728,2,2,0,2,5,,2,2,Military,,4706543,0.714,0.789,0,1.817464,8.5,4.5 +24200,1,0.029715,1,0,0,2,5,,2,2,Garrison/Military Cutoff,,4711175,0,0.03,0,0.713159,8.5,4.5 +23052,0,0.009637,2,2,0,2,5,,2,2,Military,,4706543,0.789,0.799,0,0.231285,8.5,4.5 +17086,0,0.169495,2,2,1,2,3,,2,2,Michigan,Ave,1600206,15.826,15.995,0,4.067872,6,5 +33977,0,0.149468,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,3.587233,0.15,4 +18982,0,0.150885,1,1,0,2,5,,3,2,Cherry Hill,,1653104,0.039,0.19,0,3.621247,8,4.5 +30888,0,0.297634,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.143207,0.15,4 +17570,1,0.039125,1,0,0,2,5,,3,2,Cherry Hill,,1653104,0,0.039,0,0.939004,8,4.5 +22558,-1,0.040166,0,1,0,2,5,,3,2,Cherry Hill,,4706303,0.035,0.075,0,0.963994,8,4.5 +16239,-1,0.02705,0,1,0,2,5,,3,2,Cherry Hill,Rd,1607409,14.965,14.992,0,0.649194,8,4.5 +22161,1,0.054584,1,0,0,2,5,,3,2,Cherry Hill,,4704427,0,0.055,0,1.310023,8,4.5 +23134,-1,0.026639,0,1,0,2,5,,3,2,Cherry Hill,,4706303,0,0.027,0,0.639338,8,4.5 +23378,-1,0.012571,0,2,0,2,5,DV2,3,2,Military,,4706304,0.057,0.07,0,0.301704,8,4.5 +17116,-1,0.025403,0,1,0,2,5,,3,2,S Military/Cherry Hill Cutoff,Rd,1607409,14.992,15.017,0,0.609676,8,4.5 +22160,1,0.006512,1,0,0,2,5,,3,2,Cherry Hill,,4704427,0.055,0.061,0,0.156281,8,4.5 +22553,1,0.008838,2,0,0,2,5,DV2,3,2,Military,,4706543,1.228,1.237,0,0.212114,8,4.5 +22852,-1,0.008351,0,1,0,2,5,,3,2,Cherry Hill,,4706303,0.027,0.035,0,0.200413,8,4.5 +23643,-1,0.00906,0,2,0,2,5,DV2,3,2,Military,,4706304,0.048,0.057,0,0.217435,8,4.5 +15332,1,0.637397,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,14.591,15.228,0,15.297528,5,5 +15539,0,0.419868,2,2,1,2,4,,3,2,Outer,Dr,1596803,0.052,0.472,0,10.07682,6,4.5 +20010,-1,0.662786,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,0.242,0.904,0,15.906871,5,5 +32314,0,0.503681,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.088337,0.15,4 +32315,0,0.483566,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.605596,0.15,4 +32375,0,0.663198,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.916743,0.15,4 +22557,1,0.376191,2,0,0,2,3,DV2,3,2,Outer,Dr,4706543,1.985,2.361,0,9.028581,5,5 +22987,-1,0.383137,0,2,0,2,3,DV2,3,2,Outer,Dr,4706544,0.359,0.742,0,9.195295,5,5 +14567,1,0.035463,4,0,0,2,4,DV2,3,2,Outer,Dr,1596803,0.017,0.052,0,0.85111,6,4.5 +15632,1,0.013791,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,14.577,14.591,0,0.33099,5,5 +20011,-1,0.012308,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,0.229,0.242,0,0.295384,5,5 +22782,-1,0.016718,0,3,0,2,3,DV2,3,2,Outer,Dr,4706544,0.742,0.759,0,0.401241,5,5 +22637,-1,0.036209,0,4,0,2,4,DV2,3,2,Outer,Dr,4706544,0.759,0.795,0,0.869005,6,4.5 +14988,1,0.01673,3,0,0,2,3,DV2,3,2,Outer,Dr,1596803,0,0.017,0,0.401517,5,5 +15264,0,0.096439,2,2,1,2,4,,3,2,Outer,Dr,1596803,0.472,0.568,0,2.31453,6,4.5 +18536,-1,0.03261,0,1,0,2,5,,3,2,Golfview,Dr,1649401,1.292,1.324,0,0.782631,8,4.5 +32316,0,0.25121,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.029044,0.15,4 +32313,0,0.133636,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.207259,0.15,4 +15833,0,0.266354,1,1,0,2,5,,2,2,Brady,Rd,1600102,0.208,0.474,0,6.392497,8.5,4.5 +17054,0,0.169498,2,2,0,2,3,,3,2,Michigan,Ave,1600206,16.423,16.592,0,4.067963,5,5 +32274,0,0.290975,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.983405,0.15,4 +15835,0,0.076237,1,1,0,2,5,,3,2,Brady,Rd,1600102,0.05,0.126,0,1.829692,8,4.5 +17072,0,0.068191,2,2,1,2,3,,2,2,Michigan,Ave,1600206,16.209,16.277,0,1.636584,6,5 +17664,0,0.069104,1,1,0,2,5,,2,2,Garrison,,1651109,0.382,0.451,0,1.658487,8.5,4.5 +18809,0,0.077078,1,1,0,2,5,,2,2,Oakwood,Blvd,1648503,5.783,5.86,0,1.849882,8.5,4.5 +19076,0,0.145042,1,1,0,2,5,,3,2,Garrison,,1651109,0.451,0.596,0,3.480998,8,4.5 +17076,0,0.107891,2,2,1,2,3,,2,2,Michigan,Ave,1600206,16.101,16.209,0,2.589391,6,5 +18613,0,0.108155,1,1,0,2,5,,2,2,Garrison,,1651109,0.274,0.382,0,2.595713,8.5,4.5 +23709,0,0.076992,1,1,0,2,5,,2,2,Monroe,,4706600,0.082,0.159,0,1.847819,8.5,4.5 +17065,0,0.146117,2,2,1,2,3,,3,2,Michigan,Ave,1600206,16.277,16.423,0,3.506797,5,5 +18827,0,0.200878,2,2,1,2,3,,2,2,Oakwood,Blvd,1648503,5.582,5.783,0,4.821081,6,5 +15834,0,0.081571,1,1,0,2,5,,3,2,Brady,Rd,1600102,0.126,0.208,0,1.957693,8,4.5 +18981,0,0.130937,1,1,0,2,5,,3,2,Cherry Hill,,1653104,0.447,0.578,0,3.142483,8,4.5 +32275,0,0.099225,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.381389,0.15,4 +15039,1,0.293293,1,0,0,1,3,RSF,3,2,E M 153/Evergreen,RAMP,1596905,0,0.293,0,,5,5 +15458,1,0.229643,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,15.719,15.948,0,5.511441,5,5 +15679,1,0.086948,2,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,1.426,1.513,0,2.086755,5,5 +15735,1,0.090685,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,15.628,15.719,0,2.176448,5,5 +18851,1,0.245604,1,0,0,2,3,,3,2,Edward N Hines,Dr,1689409,14.933,15.179,0,5.894497,5,5 +19264,-1,0.085888,0,2,0,2,3,DIV,3,2,Evergreen,Rd,1804103,1.427,1.513,0,2.061318,5,5 +20007,-1,0.124719,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,1.291,1.416,0,2.99325,5,5 +23048,1,0.240004,1,0,0,1,3,RSF,3,2,N Evergreen/E M 153,RAMP,4706539,0,0.24,0,,5,5 +23049,1,0.236916,1,0,0,1,3,RSF,3,2,S Evergreen/E M 153,RAMP,4706540,0,0.237,0,,5,5 +14849,1,0.227172,3,0,0,2,3,DIV,3,2,Ford,Rd,1595510,15.401,15.628,0,5.452131,5,5 +15529,1,0.196555,1,0,0,1,3,RSF,3,2,Edward N Hines/Ford,RAMP,1596903,0,0.196,0,,5,5 +15256,1,0.245625,1,0,0,1,3,RSF,3,2,Ford/Edward N Hines,RAMP,1596904,0,0.246,0,,5,5 +20008,-1,0.044822,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,1.246,1.291,0,1.075722,5,5 +14979,1,0.329759,3,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,1.012,1.341,0,7.914211,5,5 +19266,-1,0.40444,0,3,0,2,3,DIV,3,2,Evergreen,Rd,1804103,0.968,1.372,0,9.706565,5,5 +15196,1,0.059734,2,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,0.952,1.012,0,1.433624,5,5 +14889,1,0.049496,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0,0.049,0,1.187908,6,4.5 +14848,1,0.085099,3,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,1.341,1.426,0,2.042369,5,5 +14803,1,0.045955,1,0,0,1,3,RSF,3,2,E M 153/Evergreen,RAMP,1596905,0.293,0.339,0,,5,5 +19265,-1,0.054685,0,3,0,2,3,DIV,3,2,Evergreen,,1804103,1.372,1.427,0,1.312447,5,5 +14905,0,0.072758,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,1.725,1.798,0,1.746201,5,5 +15145,1,0.148904,2,0,0,2,3,DIV,3,1,Evergreen,Rd,1596908,1.576,1.725,0,3.573699,5,5 +15199,1,0.211597,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,15.948,16.16,0,5.078323,5,5 +15460,1,0.054805,1,0,0,1,3,RSF,3,2,W M 153/Evergreen,RAMP,1597001,0.215,0.269,0,,5,5 +20006,-1,0.227024,0,3,0,2,3,DIV,3,2,Ford,Rd,1924107,1.416,1.643,0,5.448568,5,5 +19262,-1,0.149102,0,2,0,2,3,DIV,3,2,Evergreen,Rd,1804103,1.564,1.713,0,3.578437,5,5 +23050,1,0.217523,1,0,0,1,3,RSF,3,2,S Evergreen/W M 153,RAMP,4706541,0,0.218,0,,5,5 +19263,-1,0.051175,0,2,0,2,3,DIV,3,2,Evergreen,Rd,1804103,1.513,1.564,0,1.228192,5,5 +12040,0,0.126278,1,1,0,2,4,,3,1,Ann Arbor,Trl,1582602,0,0.126,0,3.030682,6,4.5 +15261,0,0.192714,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,1.798,1.991,0,4.625145,5,5 +15737,1,0.214656,1,0,0,1,3,RSF,3,2,W M 153/Evergreen,RAMP,1597001,0,0.215,0,,5,5 +20005,-1,0.17709,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,1.643,1.82,0,4.250167,5,5 +14903,1,0.186614,1,0,0,1,3,RSF,3,2,N Evergreen/W M 153,RAMP,1596909,0,0.187,0,,5,5 +15393,1,0.063024,2,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,1.513,1.576,0,1.512566,5,5 +1885,-1,0.425871,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,1.236,1.662,0,10.220904,5,5 +3663,0,0.453468,1,1,0,2,5,,4,3,Shiawassee,,686405,0,0.453,0,10.88323,5.8,4.5 +3749,0,0.396557,1,1,1,2,4,,4,3,9 Mile,Rd,684404,0.995,1.392,0,9.517375,4.5,4.5 +11820,-1,0.391883,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,14.597,14.989,0,9.405202,5,5 +12496,0,0.12462,2,2,0,2,4,,3,1,Outer,Dr,1582410,0.181,0.306,0,2.990871,6,4.5 +13036,0,0.492693,1,1,0,2,4,,3,2,Chicago,St,1579408,0.458,0.95,0,11.824642,6,4.5 +13088,0,0.492515,2,2,0,2,4,,3,2,5 Mile,Rd,1579605,0.486,0.978,0,11.820355,6,4.5 +13154,0,0.374467,1,1,0,2,4,,3,1,Lahser,Rd,1582205,1.269,1.643,0,8.987219,6,4.5 +13236,0,0.247645,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.978,3.225,0,5.943479,6,4.5 +15392,0,0.125413,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,6.466,6.591,0,3.009917,5,5 +16499,0,0.522097,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,3.456,3.978,0,12.530322,6,4.5 +16504,0,0.473733,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,2.982,3.456,0,11.369583,6,4.5 +16655,-1,0.338323,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,1.371,1.709,0,8.119758,5,5 +16725,1,0.249573,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,1.419,1.669,0,5.989749,5,5 +16776,0,0.491221,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,12.802,13.293,0,11.789311,5,5 +16873,-1,0.435088,0,4,0,1,1,,3,2,W I 96,,1606503,7.383,7.818,0,,0.58,7 +17005,1,0.579841,4,0,0,1,1,,3,2,E I 96,,1606201,7.503,8.082,0,,0.58,7 +17148,0,1.029288,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,6.408,7.437,0,24.702919,6,4.5 +17589,0,0.372181,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,6.96,7.332,0,8.932338,5,5 +18111,0,0.494068,2,2,0,2,4,,3,2,Joy,Rd,1677810,3.49,3.984,0,11.857625,6,4.5 +18131,0,0.500826,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,19.414,19.915,0,12.019823,5,5 +18451,0,0.473375,2,2,0,2,3,,3,2,Inkster,Rd,1674404,20.108,20.581,0,11.361002,5,5 +18962,0,1.762103,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,11.103,12.864,0,42.29048,5,5 +19161,0,0.255646,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,13.022,13.277,0,6.1355,5,5 +19730,1,0.314326,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,1.211,1.525,0,7.543819,5,5 +21413,0,0.499065,2,2,1,2,3,,3,2,Merriman,Rd,4700000,12.6,13.098,0,11.977555,5,5 +21994,1,0.368081,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,21.482,21.85,0,8.833935,5,5 +22906,-1,0.069603,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,7.881,7.95,0,1.67047,8,4.5 +23463,1,0.084226,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,7.849,7.933,0,2.021421,8,4.5 +24029,0,0.455594,2,2,1,2,3,,3,2,Warren,Rd,4710470,12.944,13.4,0,10.934253,5,5 +26230,0,0.504296,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.103111,0.15,4 +28068,0,0.510069,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.241655,0.15,4 +30562,0,0.501957,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.046975,0.15,4 +30569,0,0.498645,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.967479,0.15,4 +30892,0,0.255837,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.140094,0.15,4 +30893,0,0.10264,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.463364,0.15,4 +30899,0,0.476702,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.440854,0.15,4 +30902,0,0.245838,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.900123,0.15,4 +30904,0,0.531408,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.753802,0.15,4 +32515,0,0.494822,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.875731,0.15,4 +32516,0,0.473433,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.362397,0.15,4 +32518,0,0.477026,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.448634,0.15,4 +32525,0,0.409772,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.834523,0.15,4 +32526,0,0.488027,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.712637,0.15,4 +32530,0,0.489148,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.739543,0.15,4 +32531,0,0.500506,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.012142,0.15,4 +32540,0,0.499387,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.985281,0.15,4 +32673,0,0.250594,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.014259,0.15,4 +33588,0,0.487753,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.706074,0.15,4 +33719,0,0.5583,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.399196,0.15,4 +33918,0,0.347333,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.335999,0.15,4 +16303,0,0.484479,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,5.376,5.861,0,11.627486,6,4.5 +16614,1,0.206393,1,0,0,1,1,RON,3,2,Middlebelt/E I 96,RAMP,1606401,0,0.206,0,,1.09,4 +16700,1,0.574037,4,0,0,1,1,,3,2,E I 96,,1606201,5.582,6.155,0,,0.58,7 +16834,1,0.130562,1,0,0,1,1,ROF,3,2,W I 96/Middlebelt,RAMP,1606601,0,0.131,0,,2.24,5 +16860,0,0.377137,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,11.334,11.711,0,9.051281,5,5 +16865,0,0.333526,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,11.001,11.334,0,8.004616,5,5 +16880,-1,0.538923,0,4,0,1,1,,3,2,W I 96,,1606503,5.313,5.851,0,,0.58,7 +16937,0,0.499571,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,6.944,7.443,0,11.9897,6,4.5 +17092,0,0.214217,1,1,0,2,5,,3,2,Harrison,Rd,1604906,0.784,0.999,0,5.141208,8,4.5 +17472,0,0.338265,1,1,1,2,5,,3,2,Chicago,Rd,1697001,0.501,0.839,0,8.118356,8,4.5 +17705,0,0.080252,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,17.334,17.414,0,1.926044,5,5 +18007,0,0.283889,2,2,0,2,4,,3,2,Joy,Rd,1677810,2.033,2.317,0,6.813339,6,4.5 +18135,0,0.179426,2,2,1,2,3,,3,2,Inkster,Rd,1674404,17.946,18.125,0,4.306228,5,5 +18158,0,1.239378,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,8.931,10.17,0,29.745083,5,5 +18990,0,0.499054,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,2.251,2.75,0,11.977305,8,4.5 +21796,0,0.263943,2,2,1,2,3,,3,2,Merriman,Rd,4700000,10.6,10.864,0,6.334639,5,5 +23033,-1,0.246767,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,6.094,6.341,0,5.922418,8,4.5 +23490,1,0.279911,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,6.044,6.324,0,6.717875,8,4.5 +24032,0,0.498263,2,2,1,2,3,,3,2,Warren,Rd,4710470,11.412,11.91,0,11.958317,5,5 +32520,0,0.253353,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.080478,0.15,4 +32545,0,0.502141,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.051384,0.15,4 +32549,0,0.352438,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.45852,0.15,4 +32564,0,0.499366,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.984785,0.15,4 +32565,0,0.550549,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.213182,0.15,4 +32573,0,0.298401,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.161625,0.15,4 +33581,0,0.537972,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.911335,0.15,4 +33582,0,0.459756,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.034136,0.15,4 +33583,0,0.531112,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.746697,0.15,4 +33722,0,0.518471,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.443305,0.15,4 +33723,0,0.477963,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.471121,0.15,4 +16867,0,0.657699,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,10.343,11.001,0,15.784776,5,5 +17019,0,0.525968,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,4.388,4.914,0,12.623227,6,4.5 +18550,0,0.3332,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,16.083,16.416,0,7.996792,5,5 +18591,0,0.485743,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,8.445,8.931,0,11.65784,5,5 +18893,0,0.490466,1,1,0,2,4,,3,2,Joy,Rd,1677810,1.037,1.527,0,11.771181,6,4.5 +22013,0,0.241974,2,2,1,2,3,,3,2,Merriman,Rd,4700000,9.361,9.603,0,5.807366,5,5 +24035,0,0.536411,2,2,1,2,3,,3,2,Warren,Rd,4710470,10.299,10.835,0,12.873875,5,5 +30567,0,0.356904,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.565686,0.15,4 +31314,0,0.338708,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.128994,0.15,4 +32581,0,0.496769,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.922448,0.15,4 +32582,0,0.258391,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.201385,0.15,4 +33586,0,0.498373,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.960943,0.15,4 +33688,0,0.418754,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.050086,0.15,4 +16200,0,0.504004,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,3.884,4.388,0,12.096086,6,4.5 +21464,0,0.28714,2,2,0,2,3,,3,2,Merriman,Rd,4700000,8.8,9.087,0,6.89136,5,5 +24036,0,0.255981,2,2,1,2,3,,3,2,Warren,Rd,4710470,10.043,10.299,0,6.143555,5,5 +31316,0,0.527607,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.662569,0.15,4 +24037,0,0.094152,2,2,1,2,3,,3,2,Warren,Rd,4710470,9.949,10.043,0,2.25965,5,5 +31317,0,0.173408,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.161781,0.15,4 +18770,0,0.145633,1,1,0,2,5,,3,2,Hawthorn,Dr,1684904,0,0.146,0,3.495194,8,4.5 +21929,0,0.225779,2,2,0,2,3,,3,2,Merriman,Rd,4700000,8.515,8.74,0,5.418684,5,5 +21678,0,0.05938,2,2,0,2,3,,3,2,Merriman,Rd,4700000,8.74,8.8,0,1.425116,5,5 +21254,0,0.274294,2,2,1,2,3,,3,2,Merriman,Rd,4700000,9.087,9.361,0,6.583061,5,5 +17489,0,0.135938,2,2,1,2,4,,3,2,Joy,Rd,1677810,0.901,1.037,0,3.262506,6,4.5 +21521,0,0.276714,2,2,1,2,3,,3,2,Merriman,Rd,4700000,9.824,10.101,0,6.641147,5,5 +31306,0,0.499583,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.989984,0.15,4 +17915,0,0.360472,1,1,0,2,4,,3,2,Joy,Rd,1677810,0.54,0.901,0,8.65132,6,4.5 +31313,0,0.248196,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.956699,0.15,4 +21734,0,0.221319,2,2,1,2,3,,3,2,Merriman,Rd,4700000,9.603,9.824,0,5.311645,5,5 +22064,0,0.333156,2,2,1,2,3,,3,2,Merriman,Rd,4700000,10.267,10.6,0,7.995742,5,5 +21306,0,0.166576,2,2,1,2,3,,3,2,Merriman,Rd,4700000,10.101,10.267,0,3.997829,5,5 +16622,0,0.462785,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,4.914,5.376,0,11.106829,6,4.5 +18036,0,0.378051,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,15.398,15.776,0,9.073216,5,5 +24033,0,0.332625,2,2,1,2,3,,3,2,Warren,Rd,4710470,11.08,11.412,0,7.982992,5,5 +30565,0,0.594939,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.278543,0.15,4 +32543,0,0.367937,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.830486,0.15,4 +32583,0,0.501096,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.026293,0.15,4 +24034,0,0.244248,2,2,1,2,3,,3,2,Warren,Rd,4710470,10.835,11.08,0,5.861944,5,5 +30566,0,0.224637,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.391278,0.15,4 +32584,0,0.26034,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.248164,0.15,4 +19025,0,0.242871,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,15.155,15.398,0,5.828912,5,5 +19022,0,0.18715,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,15.895,16.083,0,4.491599,5,5 +17612,0,0.119905,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,15.776,15.895,0,2.877722,5,5 +17610,0,0.232299,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,16.628,16.86,0,5.57518,5,5 +18422,0,0.506435,1,1,0,2,4,,3,2,Joy,Rd,1677810,1.527,2.033,0,12.154429,6,4.5 +32574,0,0.288265,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.918358,0.15,4 +32577,0,0.57743,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.85831,0.15,4 +32578,0,0.4974,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.937594,0.15,4 +32580,0,0.22419,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.380557,0.15,4 +32575,0,0.130001,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.120021,0.15,4 +18133,0,0.212465,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,16.416,16.628,0,5.099156,5,5 +18132,0,0.282832,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,17.051,17.334,0,6.78797,5,5 +18549,0,0.13648,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,16.914,17.051,0,3.275516,5,5 +19021,0,0.054144,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,16.86,16.914,0,1.299465,5,5 +16065,0,0.499572,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,5.944,6.443,0,11.989738,6,4.5 +16590,-1,0.472025,0,4,0,1,1,,3,2,W I 96,,1606503,4.841,5.313,0,,0.58,7 +17012,1,0.465829,4,0,0,1,1,,3,2,E I 96,,1606201,5.116,5.582,0,,0.58,7 +17672,0,0.43552,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,1.536,1.972,0,10.452487,8,4.5 +18548,0,0.234337,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,18.429,18.663,0,5.624083,5,5 +21852,0,0.485512,2,2,1,2,3,,3,2,Merriman,Rd,4700000,11.614,12.1,0,11.652288,5,5 +23040,-1,0.392685,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,5.085,5.478,0,9.42444,8,4.5 +23610,1,0.602933,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,5.045,5.648,0,14.470387,8,4.5 +32570,0,0.498341,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.960184,0.15,4 +32588,0,0.475842,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.420202,0.15,4 +32590,0,0.501311,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.031458,0.15,4 +33930,0,0.249515,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.98835,0.15,4 +16881,-1,0.485859,0,4,0,1,1,,3,2,W I 96,,1606503,4.355,4.841,0,,0.58,7 +17014,1,0.528832,4,0,0,1,1,,3,2,E I 96,,1606201,4.587,5.116,0,,0.58,7 +21572,0,0.448668,2,2,1,2,3,,3,2,Merriman,Rd,4700000,10.864,11.313,0,10.768041,5,5 +23076,-1,0.079254,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,4.897,4.976,0,1.902091,8,4.5 +23620,1,0.096865,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,4.862,4.959,0,2.324753,8,4.5 +16559,1,0.171757,1,0,0,1,1,RON,3,2,Merriman/W I 96,RAMP,1606508,0,0.172,0,,1.09,4 +16916,1,0.18429,1,0,0,1,1,ROF,3,2,E I 96/Merriman,RAMP,1606306,0,0.184,0,,2.24,5 +16615,1,0.165252,1,0,0,1,1,RON,3,2,Merriman/E I 96,RAMP,1606307,0,0.165,0,,1.09,4 +16835,1,0.129731,1,0,0,1,1,ROF,3,2,W I 96/Merriman,RAMP,1606509,0,0.13,0,,2.24,5 +21353,0,0.242068,2,2,1,2,3,,3,2,Merriman,Rd,4700000,11.313,11.555,0,5.809622,5,5 +22118,0,0.059845,2,2,1,2,3,,3,2,Merriman,Rd,4700000,11.555,11.614,0,1.436275,5,5 +23042,-1,0.109365,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,4.976,5.085,0,2.624757,8,4.5 +23618,1,0.086098,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,4.959,5.045,0,2.066347,8,4.5 +17908,0,0.288677,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,1.248,1.536,0,6.928244,8,4.5 +21610,0,0.500028,2,2,1,2,3,,3,2,Merriman,Rd,4700000,12.1,12.6,0,12.000669,5,5 +18186,0,0.305553,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,0.942,1.248,0,7.33328,8,4.5 +16941,0,0.200888,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,5.743,5.944,0,4.821319,6,4.5 +16557,1,0.202301,1,0,0,1,1,RON,3,2,Middlebelt/W I 96,RAMP,1606510,0,0.202,0,,1.09,4 +16915,1,0.186414,1,0,0,1,1,ROF,3,2,E I 96/Middlebelt,RAMP,1606310,0,0.186,0,,2.24,5 +18034,0,0.281778,3,3,1,2,3,,3,2,Middle Belt,Rd,1674403,17.89,18.172,0,6.76266,5,5 +23038,-1,0.218316,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,5.667,5.885,0,5.23959,8,4.5 +23580,1,0.211423,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,5.648,5.859,0,5.074143,8,4.5 +32562,0,0.500599,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.014385,0.15,4 +32571,0,0.547183,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.132397,0.15,4 +23039,-1,0.189084,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,5.478,5.667,0,4.538023,8,4.5 +31769,0,0.330598,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.934353,0.15,4 +32589,0,0.28671,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.881036,0.15,4 +18448,0,0.476749,3,3,1,2,3,,3,2,Middle Belt,Rd,1674403,17.414,17.89,0,11.441983,5,5 +17609,0,0.196221,3,3,1,2,3,,3,2,Middle Belt,Rd,1674403,18.172,18.368,0,4.709307,5,5 +23034,-1,0.112603,0,4,0,2,5,,3,2,Schoolcraft,Rd,4705258,5.981,6.094,0,2.702482,8,4.5 +23509,1,0.080082,4,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,5.964,6.044,0,1.921959,8,4.5 +19020,0,0.060621,3,3,1,2,3,,3,2,Middle Belt,Rd,1674403,18.368,18.429,0,1.454912,5,5 +23037,-1,0.096349,0,4,0,2,5,,3,2,Schoolcraft,Rd,4705258,5.885,5.981,0,2.312374,8,4.5 +23510,1,0.104862,4,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,5.859,5.964,0,2.516697,8,4.5 +16939,0,0.500864,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,6.443,6.944,0,12.02074,6,4.5 +19019,0,0.250074,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,18.914,19.164,0,6.001775,5,5 +19184,0,0.278941,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,1.972,2.251,0,6.694587,8,4.5 +33931,0,0.511993,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.287829,0.15,4 +32586,0,0.254254,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.102105,0.15,4 +17608,0,0.251241,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,18.663,18.914,0,6.029779,5,5 +18547,0,0.249855,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,19.164,19.414,0,5.996531,5,5 +13125,0,0.028305,1,1,0,2,4,,3,2,Chicago,St,1579408,0,0.028,0,0.679309,6,4.5 +16661,0,0.547808,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,5.861,6.408,0,13.147398,6,4.5 +17602,0,0.19289,2,2,1,2,3,,3,2,Inkster,Rd,1674404,16.821,17.014,0,4.629353,5,5 +17877,0,0.647807,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,10.17,10.817,0,15.547377,5,5 +18522,0,0.459435,2,2,0,2,4,,3,2,Joy,Rd,1677810,3.031,3.49,0,11.026448,6,4.5 +22656,1,0.050111,1,0,0,1,3,,3,2,N Inkster/E Chicago,,4706062,0,0.05,0,,5,5 +22657,1,0.039534,1,0,0,1,3,,3,2,W Chicago/N Inkster,,4706063,0,0.04,0,,5,5 +24031,0,0.496,2,2,1,2,3,,3,2,Warren,Rd,4710470,11.91,12.406,0,11.903997,5,5 +30889,0,0.565593,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.574222,0.15,4 +30896,0,0.4725,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.339991,0.15,4 +32541,0,0.206749,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.961981,0.15,4 +32542,0,0.46443,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.146317,0.15,4 +32548,0,0.492586,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.822075,0.15,4 +32644,0,0.477061,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.449458,0.15,4 +32547,0,0.325121,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.802904,0.15,4 +30559,0,0.243811,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.851458,0.15,4 +32546,0,0.144102,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.458437,0.15,4 +32544,0,0.167718,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.02522,0.15,4 +17107,0,0.222296,1,1,0,2,5,,3,2,Harrison,Rd,1604906,0.275,0.498,0,5.335115,8,4.5 +18432,0,0.220507,2,2,0,2,3,,3,2,Inkster,Rd,1674404,17.368,17.588,0,5.292166,5,5 +18875,0,0.473453,1,1,1,2,5,,3,2,Chicago,Rd,1697001,1,1.473,0,11.362877,8,4.5 +18998,0,0.502273,2,2,0,2,4,,3,2,Joy,Rd,1677810,2.529,3.031,0,12.054548,6,4.5 +32556,0,0.499736,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.993659,0.15,4 +33585,0,0.507148,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.171563,0.15,4 +16227,0,0.275473,1,1,0,2,5,,3,2,Harrison,Rd,1604906,0,0.275,0,6.611341,8,4.5 +17583,0,0.211962,2,2,0,2,4,,3,2,Joy,Rd,1677810,2.317,2.529,0,5.087091,6,4.5 +32555,0,0.328828,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.891863,0.15,4 +32554,0,0.026569,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.637661,0.15,4 +16211,0,0.286848,1,1,0,2,5,,3,2,Harrison,Rd,1604906,0.498,0.784,0,6.884351,8,4.5 +19183,0,0.160921,1,1,1,2,5,,3,2,Chicago,Rd,1697001,0.839,1,0,3.862096,8,4.5 +32551,0,0.299414,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.185943,0.15,4 +32550,0,0.035416,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.849973,0.15,4 +18906,0,0.258351,2,2,0,2,3,,3,2,Inkster,Rd,1674404,17.11,17.368,0,6.200423,5,5 +17500,0,0.095597,2,2,1,2,3,,3,2,Inkster,Rd,1674404,17.014,17.11,0,2.294323,5,5 +18552,0,0.298491,2,2,1,2,3,,3,2,Inkster,Rd,1674404,17.648,17.946,0,7.163779,5,5 +17598,0,0.02976,2,2,1,2,3,,3,2,Inkster,Rd,1674404,17.618,17.648,0,0.714235,5,5 +22658,1,0.050126,1,0,0,1,3,,3,2,S Inkster/W Chicago,,4706064,0,0.05,0,,5,5 +18616,0,0.0288,1,1,1,2,5,,3,2,Chicago,Rd,1697001,1.473,1.502,0,0.691198,8,4.5 +22659,1,0.040274,1,0,0,1,3,,3,2,E Chicago/S Inkster,,4706065,0,0.04,0,,5,5 +18022,0,0.029563,2,2,0,2,3,,3,2,Inkster,Rd,1674404,17.588,17.618,0,0.70951,5,5 +18913,0,0.336241,2,2,0,2,3,,3,2,Inkster,Rd,1674404,16.106,16.442,0,8.069778,5,5 +24030,0,0.538398,2,2,1,2,3,,3,2,Warren,Rd,4710470,12.406,12.944,0,12.921544,5,5 +30560,0,0.495212,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.885078,0.15,4 +30890,0,0.289913,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.957918,0.15,4 +30891,0,0.51653,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.396731,0.15,4 +33587,0,0.52519,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.60456,0.15,4 +17509,0,0.25451,2,2,0,2,3,,3,2,Inkster,Rd,1674404,15.851,16.106,0,6.108243,5,5 +18439,0,0.310974,2,2,0,2,3,,3,2,Inkster,Rd,1674404,16.442,16.753,0,7.463376,5,5 +19154,0,0.21785,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,10.885,11.103,0,5.228405,5,5 +17649,0,0.067544,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,10.817,10.885,0,1.621062,5,5 +18027,0,0.06864,2,2,1,2,3,,3,2,Inkster,Rd,1674404,16.753,16.821,0,1.647356,5,5 +23769,-1,0.069297,0,1,0,2,3,,3,2,Edward Hines/Inkster,Ramp,4707940,0.074,0.143,0,1.663122,5,5 +23770,0,0.073749,1,1,0,2,3,,3,2,Edward Hines/Inkster,,4707940,0,0.074,0,1.769982,5,5 +23771,0,0.032513,1,1,0,2,3,,3,2,Inkster/Edward Hines,Ramp,4707932,0,0.033,0,0.780319,5,5 +30547,0,0.254706,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.11294,0.15,4 +12902,0,0.429624,1,1,0,2,4,,3,2,Chicago,St,1579408,0.028,0.458,0,10.310985,6,4.5 +30897,0,0.25081,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.01944,0.15,4 +30898,0,0.249504,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.988102,0.15,4 +32521,0,0.25421,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.101048,0.15,4 +11887,0,0.485943,2,2,0,2,4,,3,2,5 Mile,Rd,1579605,0,0.486,0,11.662627,6,4.5 +14294,1,0.123991,1,0,0,1,1,RON,3,2,Beech Daly/W I 96,RAMP,1589410,0,0.124,0,,1.09,4 +16692,1,0.532928,4,0,0,1,1,,3,2,E I 96,,1606201,6.637,7.17,0,,0.58,7 +16778,0,0.462453,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,12.339,12.802,0,11.098861,5,5 +16878,-1,0.507887,0,4,0,1,1,,3,2,W I 96,,1606503,6.437,6.945,0,,0.58,7 +18783,0,0.215214,2,2,1,2,3,,3,2,Inkster,Rd,1674404,19.129,19.344,0,5.165139,5,5 +22907,-1,0.451184,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,7.43,7.881,0,10.828416,8,4.5 +22909,-1,0.144298,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,6.979,7.123,0,3.463156,8,4.5 +23471,1,0.101995,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,6.963,7.065,0,2.447875,8,4.5 +30272,0,0.495084,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.882021,0.15,4 +32018,0,0.485943,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.662628,0.15,4 +32528,0,0.462202,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.092856,0.15,4 +32529,0,0.516703,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.400878,0.15,4 +32563,0,0.244562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.869483,0.15,4 +33584,0,0.490189,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.764536,0.15,4 +16589,-1,0.58577,0,4,0,1,1,,3,2,W I 96,,1606503,5.851,6.437,0,,0.58,7 +16845,0,0.250845,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,11.837,12.088,0,6.020291,5,5 +17006,1,0.48148,4,0,0,1,1,,3,2,E I 96,,1606201,6.155,6.637,0,,0.58,7 +19116,0,0.573659,2,2,1,2,3,,3,2,Inkster,Rd,1674404,18.446,19.019,0,13.76781,5,5 +23029,-1,0.575568,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,6.341,6.916,0,13.813625,8,4.5 +23487,1,0.55504,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,6.324,6.879,0,13.320971,8,4.5 +30268,0,0.526101,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.626418,0.15,4 +32568,0,0.506926,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.166231,0.15,4 +16853,0,0.12573,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,11.711,11.837,0,3.017516,5,5 +32569,0,0.282434,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.778427,0.15,4 +32566,0,0.26697,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.407269,0.15,4 +16844,0,0.251972,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,12.088,12.339,0,6.047334,5,5 +17707,0,0.320256,2,2,1,2,3,,3,2,Inkster,Rd,1674404,18.125,18.446,0,7.686143,5,5 +16556,1,0.108415,1,0,0,1,1,RON,3,2,Inkster/W I 96,RAMP,1606602,0,0.108,0,,1.09,4 +16907,1,0.150073,1,0,0,1,1,ROF,3,2,E I 96/Inkster,RAMP,1606403,0,0.15,0,,2.24,5 +18668,0,0.056727,2,2,1,2,3,,3,2,Inkster,Rd,1674404,19.019,19.076,0,1.36144,5,5 +22933,-1,0.063245,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,6.916,6.979,0,1.517891,8,4.5 +23475,1,0.084505,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,6.879,6.963,0,2.02812,8,4.5 +18229,0,0.053532,2,2,1,2,3,,3,2,Inkster,Rd,1674404,19.076,19.129,0,1.284776,5,5 +16632,0,0.500631,2,2,1,2,4,,3,2,5 Mile,Rd,1606203,7.443,7.944,0,12.015149,6,4.5 +17519,0,0.217015,1,1,0,2,3,,3,2,Inkster,Rd,1674404,19.725,19.942,0,5.208362,5,5 +17904,0,0.523328,1,1,0,2,5,,3,2,Lyndon,Ave,1696208,2.75,3.273,0,12.559874,8,4.5 +32559,0,0.234875,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.637003,0.15,4 +32560,0,0.520686,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.49647,0.15,4 +32618,0,0.490877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.781047,0.15,4 +32561,0,0.268779,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.450686,0.15,4 +32558,0,0.26513,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.36313,0.15,4 +18328,0,0.173852,2,2,1,2,3,,3,2,Inkster,Rd,1674404,19.344,19.518,0,4.172459,5,5 +17940,0,0.206323,1,1,0,2,3,,3,2,Inkster,Rd,1674404,19.518,19.725,0,4.951742,5,5 +18924,0,0.166664,1,1,0,2,3,,3,2,Inkster,Rd,1674404,19.942,20.108,0,3.99994,5,5 +16121,1,0.33336,4,0,0,1,1,,3,2,E I 96,,1606201,7.17,7.503,0,,0.58,7 +16584,-1,0.438737,0,4,0,1,1,,3,2,W I 96,,1606503,6.945,7.383,0,,0.58,7 +23468,1,0.414032,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,7.435,7.849,0,9.93677,8,4.5 +32517,0,0.26463,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.35113,0.15,4 +12382,1,0.192338,2,0,0,1,1,ROF,3,2,W I 96/Inkster,RAMP,1579509,0,0.192,0,,2.24,5 +14253,1,0.203022,1,0,0,1,1,RON,3,2,Inkster/E I 96,RAMP,1589409,0,0.203,0,,1.09,4 +22908,-1,0.306218,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,7.123,7.43,0,7.349241,8,4.5 +23469,1,0.369636,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,7.065,7.435,0,8.871255,8,4.5 +32514,0,0.219506,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.268146,0.15,4 +16611,1,0.254481,1,0,0,1,1,ROF,3,2,E I 96/Beech Daly,RAMP,1606404,0,0.254,0,,2.24,5 +32527,0,0.488791,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.730988,0.15,4 +559,0,0.498276,1,1,0,2,4,,3,3,9 Mile,Rd,633904,0.501,0.999,0,11.958627,6,4.5 +899,1,0.583449,4,0,0,2,3,DIV,3,3,Grand River,,633807,0.749,1.332,0,14.002782,5,5 +2023,-1,0.608782,0,4,0,2,3,DIV,3,3,Grand River,,634904,0.72,1.328,0,14.610779,5,5 +16448,0,0.206824,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,5.26,5.467,0,4.963776,6,4.5 +16657,-1,0.397507,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,0.974,1.371,0,9.54018,5,5 +16726,1,0.416127,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,1.003,1.419,0,9.987055,5,5 +17662,0,0.495224,1,1,0,2,3,,3,2,Inkster,Rd,1674404,22.111,22.606,0,11.885378,5,5 +17918,0,0.190051,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,5.28,5.47,0,4.561228,5,5 +18966,0,0.502684,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,11.04,11.542,0,12.06441,5,5 +19017,0,0.562925,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,21.85,22.413,0,13.510202,5,5 +21098,0,0.571387,1,1,0,2,5,,3,3,Shiawassee,,4410043,0.061,0.632,0,13.713284,8,4.5 +21481,0,0.399413,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,7.077,7.477,0,9.58592,5,5 +22012,0,0.506282,2,2,1,2,3,,3,2,Merriman,Rd,4700000,15.091,15.598,0,12.150773,5,5 +25856,0,0.553477,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.283446,0.15,4 +29749,0,0.498567,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.965603,0.15,4 +30939,0,0.555738,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.337711,0.15,4 +30942,0,0.45579,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.938952,0.15,4 +30946,0,0.556762,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.362285,0.15,4 +32595,0,0.502772,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.066523,0.15,4 +32597,0,0.502069,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.049664,0.15,4 +32690,0,0.490886,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.781261,0.15,4 +17652,0,0.526386,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,10.041,10.568,0,12.633263,5,5 +18638,0,0.200702,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,4.474,4.674,0,4.81684,5,5 +18920,0,0.503159,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,20.413,20.916,0,12.075827,5,5 +21677,0,0.481348,2,2,1,2,3,,3,2,Merriman,Rd,4700000,13.598,14.079,0,11.552349,5,5 +30944,0,0.500162,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.003898,0.15,4 +30948,0,0.497965,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.951149,0.15,4 +30952,0,0.499094,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.978267,0.15,4 +31338,0,0.499287,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.982879,0.15,4 +21928,0,0.499426,2,2,1,2,3,,3,2,Merriman,Rd,4700000,13.098,13.598,0,11.986216,5,5 +19001,0,0.499616,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,3.974,4.474,0,11.990791,5,5 +21463,0,0.516651,2,2,1,2,3,,3,2,Merriman,Rd,4700000,14.079,14.595,0,12.399633,5,5 +21253,0,0.496244,2,2,1,2,3,,3,2,Merriman,Rd,4700000,14.595,15.091,0,11.909865,5,5 +17447,0,0.472378,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,10.568,11.04,0,11.337062,5,5 +17704,0,0.498066,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,19.915,20.413,0,11.953595,5,5 +31340,0,0.500934,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.022418,0.15,4 +32538,0,0.499218,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.981236,0.15,4 +18429,0,0.297163,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,4.674,4.971,0,7.131916,5,5 +18446,0,0.498242,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,20.916,21.414,0,11.957815,5,5 +30947,0,0.497919,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.950049,0.15,4 +30950,0,0.250141,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.003382,0.15,4 +30951,0,0.162585,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.902033,0.15,4 +17606,0,0.250367,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,21.6,21.85,0,6.008803,5,5 +18115,0,0.308944,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,4.971,5.28,0,7.414647,5,5 +30943,0,0.441522,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.596533,0.15,4 +32594,0,0.319857,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.676562,0.15,4 +18032,0,0.186564,2,2,1,2,3,,3,2,Middle Belt,Rd,1674403,21.414,21.6,0,4.477538,5,5 +384,0,0.325549,1,1,0,2,5,,3,3,Shiawassee,,633708,0.571,0.896,0,7.813165,8,4.5 +410,0,0.764194,1,1,0,2,4,,3,3,Orchard Lake,Rd,633806,0,0.764,0,18.340663,6,4.5 +938,-1,0.244214,0,2,0,2,3,DIV,3,3,Grand River,,634904,0.149,0.393,0,5.861138,5,5 +1196,0,0.337544,1,1,0,2,5,,3,3,Folsom,,634102,1.014,1.352,0,8.101066,8,4.5 +1413,1,0.216614,2,0,0,2,3,DIV,3,3,Grand River,,633807,0.132,0.349,0,5.198746,5,5 +1595,0,0.334554,1,1,0,2,4,,3,3,9 Mile,Rd,633904,1.161,1.495,0,8.029285,6,4.5 +2052,0,0.242546,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,0.499,0.742,0,5.821103,6,4.5 +20913,0,0.490295,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,6.267,6.757,0,11.767087,5,5 +25857,0,0.173252,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.158058,0.15,4 +25862,0,0.327177,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.852241,0.15,4 +25864,0,0.200801,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.819234,0.15,4 +25866,0,0.199349,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.784373,0.15,4 +26211,0,0.430357,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.328567,0.15,4 +29752,0,0.571067,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.7056,0.15,4 +296,0,0.190235,1,1,0,2,5,,3,3,Tuck,,634108,0.431,0.621,0,4.565648,8,4.5 +20915,0,0.370866,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,5.763,6.134,0,8.900792,5,5 +30945,0,0.444029,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.656699,0.15,4 +20914,0,0.133519,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,6.134,6.267,0,3.204446,5,5 +760,0,0.430929,1,1,0,2,5,,3,3,Tuck,,634108,0,0.431,0,10.342299,8,4.5 +378,0,0.195045,1,1,0,2,4,,3,3,Orchard Lake,Rd,633806,0.818,1.012,0,4.681069,6,4.5 +576,0,0.525778,1,1,0,2,5,,3,3,Shiawassee,,633708,0,0.526,0,12.618682,8,4.5 +1031,0,0.438445,1,1,0,2,5,,3,3,Freedom,Rd,633606,3.296,3.735,0,10.522671,8,4.5 +1394,0,0.123961,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0.112,0.236,0,2.975066,5,5 +1673,0,0.164018,1,1,0,2,5,,3,3,Folsom,,634102,0.85,1.014,0,3.936426,8,4.5 +19771,0,0.109719,2,2,1,2,3,,3,3,Grand River,,4104142,17.901,18.01,0,2.633247,5,5 +26204,0,0.168619,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.046845,0.15,4 +26206,0,0.137972,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.311322,0.15,4 +29728,0,0.568738,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.64972,0.15,4 +29729,0,0.446235,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.709642,0.15,4 +19773,0,0.230681,2,2,1,2,4,,3,3,Grand River,,4104142,17.593,17.824,0,5.536333,6,4.5 +841,0,0.053572,2,2,0,2,4,,3,3,Orchard Lake,Rd,633806,0.764,0.818,0,1.285728,6,4.5 +1908,0,0.112228,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0,0.112,0,2.693469,5,5 +19772,0,0.076861,2,2,1,2,3,,3,3,Grand River,,4104142,17.824,17.901,0,1.844675,5,5 +1319,0,0.21496,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0.456,0.671,0,5.159046,5,5 +1962,0,0.202212,1,1,0,2,5,,3,3,Shiawassee,,633209,1.283,1.485,0,4.853094,8,4.5 +26192,0,0.156893,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.765431,0.15,4 +26205,0,0.218805,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.251318,0.15,4 +937,0,0.120409,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0.236,0.357,0,2.889827,5,5 +1825,0,0.099499,2,2,1,2,3,,3,3,Orchard Lake,Rd,634003,0.357,0.456,0,2.387983,5,5 +2143,0,0.348796,1,1,0,2,4,,3,3,9 Mile,Rd,633904,1.495,1.844,0,8.371096,6,4.5 +19770,0,0.232556,2,2,1,2,3,,3,3,Grand River,,4104142,18.01,18.243,0,5.581339,5,5 +1395,-1,0.14913,0,2,0,2,3,DIV,3,3,Grand River,,634904,0,0.149,0,3.579119,5,5 +1936,1,0.132428,2,0,0,2,3,DIV,3,3,Grand River,,633807,0,0.132,0,3.178264,5,5 +507,0,0.043686,1,1,0,2,5,,3,3,Freedom,Rd,634606,0.407,0.45,0,1.048459,8,4.5 +2108,0,0.044972,1,1,0,2,5,,3,3,Shiawassee,,633708,0.526,0.571,0,1.079338,8,4.5 +476,-1,0.326409,0,4,0,2,3,DIV,3,3,Grand River,,634904,0.393,0.72,0,7.833823,5,5 +517,0,0.190562,2,2,0,2,4,,3,3,Middlebelt,Rd,634610,0,0.191,0,4.573479,6,4.5 +1357,1,0.400174,4,0,0,2,3,DIV,3,3,Grand River,,633807,0.349,0.749,0,9.604178,5,5 +29753,0,0.428281,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.278746,0.15,4 +22155,0,0.320351,2,2,1,2,3,,3,3,8 Mile,Rd,4412701,6.757,7.077,0,7.688433,5,5 +2068,0,0.255304,2,2,0,2,4,,3,3,Middlebelt,Rd,634610,0.191,0.446,0,6.127298,6,4.5 +1564,0,0.028307,2,2,0,2,4,,3,3,Middlebelt,Rd,634610,0.446,0.474,0,0.679373,6,4.5 +1085,0,0.024989,2,2,0,2,4,,3,3,Middlebelt,Rd,634610,0.474,0.499,0,0.599735,6,4.5 +614,0,0.507117,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,1.005,1.512,0,12.170802,6,4.5 +2095,0,0.162301,1,1,0,2,4,,3,3,9 Mile,Rd,633904,0.999,1.161,0,3.895228,6,4.5 +25859,0,0.364262,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.742286,0.15,4 +2146,0,0.064265,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,1.512,1.576,0,1.542354,6,4.5 +1541,0,0.194782,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,0.742,0.936,0,4.674775,6,4.5 +1065,0,0.068853,1,1,0,2,4,,3,3,Middlebelt,Rd,634610,0.936,1.005,0,1.652466,6,4.5 +16464,0,0.495715,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,3.978,4.473,0,11.897151,6,4.5 +18389,0,0.316265,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,12.042,12.358,0,7.590364,5,5 +18498,0,0.502533,2,2,0,2,3,,3,2,Inkster,Rd,1674404,21.117,21.619,0,12.0608,5,5 +19206,0,0.301949,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,5.977,6.279,0,7.246787,5,5 +27408,0,0.5024,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.05761,0.15,4 +30955,0,0.502797,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.067118,0.15,4 +32593,0,0.500486,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.01167,0.15,4 +32665,0,0.491079,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.785896,0.15,4 +32688,0,0.241944,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.806662,0.15,4 +18037,0,0.535491,2,2,0,2,3,,3,2,Inkster,Rd,1674404,20.581,21.117,0,12.851795,5,5 +18703,0,0.499707,2,2,1,2,3,,3,2,6 Mile,Rd,1680701,11.542,12.042,0,11.99296,5,5 +32537,0,0.500455,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.010925,0.15,4 +32539,0,0.501583,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.03799,0.15,4 +17592,0,0.507213,2,2,1,2,3,,3,2,7 Mile,Rd,1700106,5.47,5.977,0,12.173115,5,5 +18088,0,0.491857,2,2,0,2,3,,3,2,Inkster,Rd,1674404,21.619,22.111,0,11.80458,5,5 +32591,0,0.502347,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.056332,0.15,4 +32592,0,0.502158,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.051783,0.15,4 +17886,0,0.18661,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,12.524,12.711,0,4.478633,5,5 +32557,0,0.500056,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.001336,0.15,4 +18162,0,0.165962,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,12.358,12.524,0,3.983099,5,5 +17653,0,0.311364,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,12.711,13.022,0,7.472725,5,5 +16463,0,0.496492,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,4.473,4.97,0,11.915798,6,4.5 +18639,0,0.246959,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,6.464,6.711,0,5.927021,5,5 +30954,0,0.497599,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.942371,0.15,4 +32598,0,0.50133,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.031923,0.15,4 +18899,0,0.184817,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,6.279,6.464,0,4.435614,5,5 +30953,0,0.251777,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.042642,0.15,4 +16462,0,0.26326,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,4.97,5.233,0,6.318235,6,4.5 +18011,0,0.248833,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,6.711,6.96,0,5.971985,5,5 +16456,0,0.027225,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,5.233,5.26,0,0.6534,6,4.5 +284,0,0.473238,1,1,1,2,4,,3,3,Inkster,Rd,636410,0.543,1.016,0,11.357723,6,4.5 +1238,-1,0.493979,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,0.242,0.736,0,11.855504,5,5 +3661,0,0.264758,1,1,0,2,5,,4,3,Shiawassee,,686405,1.251,1.515,0,6.354202,5.8,4.5 +3720,0,0.491202,1,1,0,2,5,,4,3,Beech,Rd,684801,0.525,1.016,0,11.78884,5.8,4.5 +3752,0,0.43816,1,1,0,2,4,,4,3,9 Mile,Rd,684404,0,0.438,0,10.515844,4.5,4.5 +16665,-1,0.741106,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,0.233,0.974,0,17.786555,5,5 +16729,1,0.723305,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,0.28,1.003,0,17.359325,5,5 +19733,1,0.489278,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,0.223,0.713,0,11.742668,5,5 +21097,0,0.505859,1,1,0,2,5,,3,3,Shiawassee,,4410043,0.632,1.138,0,12.140615,8,4.5 +25860,0,0.140868,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.380839,0.15,4 +26231,0,0.435081,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.441953,0.15,4 +29746,0,0.4985,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.96399,0.15,4 +29748,0,0.55286,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.268652,0.15,4 +32692,0,0.490802,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.779247,0.15,4 +321,-1,0.315916,0,4,0,2,3,DIV,3,3,Grand River,,634904,1.328,1.644,0,7.581994,5,5 +435,1,0.293338,4,0,0,2,3,DIV,3,3,Grand River,,633807,1.332,1.625,0,7.040107,5,5 +917,0,0.236557,1,1,1,2,4,,3,3,Inkster,Rd,636410,0.023,0.259,0,5.677362,6,4.5 +1174,-1,0.04054,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,0,0.041,0,0.972971,5,5 +16731,1,0.258481,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,0.022,0.28,0,6.203553,5,5 +19737,1,0.049295,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,0,0.049,0,1.183085,5,5 +25855,0,0.556379,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.353088,0.15,4 +30941,0,0.238754,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.7301,0.15,4 +30940,0,0.402138,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.651315,0.15,4 +16759,-1,0.042409,0,2,0,2,3,DIV,3,3,8 Mile,Rd,1600603,0,0.042,0,1.01781,5,5 +22154,1,0.061143,2,0,0,2,3,DIV,3,2,8 Mile,Rd,4412701,7.477,7.538,0,1.467436,5,5 +16732,1,0.013162,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,0.009,0.022,0,0.315886,5,5 +16750,1,0.008329,4,0,0,2,3,DIV,3,3,Grand River,,1600604,0,0.009,0,0.199885,5,5 +25861,0,0.409348,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.824344,0.15,4 +30243,0,0.425655,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.215722,0.15,4 +18608,0,0.026855,2,2,0,2,3,,3,2,Inkster,Rd,1674404,22.97,22.996,0,0.644515,5,5 +19075,0,0.363995,1,1,0,2,3,,3,2,Inkster,Rd,1674404,22.606,22.97,0,8.735888,5,5 +1728,-1,0.201555,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,0.041,0.242,0,4.837316,5,5 +16681,-1,0.201372,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,0.032,0.233,0,4.832931,5,5 +18175,0,0.098424,2,2,0,2,3,,3,2,Inkster,Rd,1674404,22.996,23.095,0,2.362169,5,5 +19735,1,0.174189,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,0.049,0.223,0,4.180537,5,5 +16696,-1,0.018928,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,0.013,0.032,0,0.454274,5,5 +16709,-1,0.012582,0,4,0,2,3,DIV,3,3,Grand River,,1600605,0,0.013,0,0.301967,5,5 +1883,0,0.011667,2,2,0,2,3,,3,2,Inkster,Rd,636410,0,0.012,0,0.279999,5,5 +1373,0,0.01126,2,2,0,2,3,,3,3,Inkster,Rd,636410,0.012,0.023,0,0.270244,5,5 +458,0,0.283172,1,1,1,2,4,,3,3,Inkster,Rd,636410,0.259,0.543,0,6.796116,6,4.5 +1017,0,0.500597,1,1,0,2,4,,3,3,9 Mile,Rd,633904,0,0.501,0,12.014339,6,4.5 +1845,0,0.432647,1,1,0,2,4,,4,3,Inkster,Rd,636410,1.016,1.448,0,10.383536,4.5,4.5 +26213,0,0.501625,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.039004,0.15,4 +29745,0,0.514686,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.352475,0.15,4 +1336,0,0.199427,1,1,0,2,4,,4,3,Inkster,Rd,636410,1.448,1.648,0,4.786257,4.5,4.5 +328,-1,0.400546,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,0.836,1.236,0,9.613101,5,5 +3662,0,0.79771,1,1,0,2,5,,4,3,Shiawassee,,686405,0.453,1.251,0,19.145046,5.8,4.5 +3722,0,0.158389,1,1,0,2,5,,4,3,Beech,Rd,684801,0.024,0.182,0,3.80133,5.8,4.5 +19731,1,0.35635,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,0.855,1.211,0,8.552389,5,5 +27409,0,0.494413,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.865915,0.15,4 +29750,0,0.489371,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.744912,0.15,4 +29751,0,0.512275,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.294598,0.15,4 +30949,0,0.149659,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.591815,0.15,4 +32596,0,0.134517,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.228414,0.15,4 +33980,0,0.499714,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.993128,0.15,4 +33981,0,0.512604,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.302495,0.15,4 +792,-1,0.099752,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,0.736,0.836,0,2.39404,5,5 +19732,1,0.142058,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,0.713,0.855,0,3.409399,5,5 +27410,0,0.252485,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.059635,0.15,4 +16438,0,0.465815,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,5.467,5.933,0,11.179559,6,4.5 +3723,0,0.01115,2,2,1,2,4,,3,3,Beech,Rd,684801,0.013,0.024,0,0.267595,6,4.5 +3724,0,0.012807,2,2,1,2,4,,3,2,Beech Daly,Rd,684801,0,0.013,0,0.307365,6,4.5 +3721,0,0.34295,1,1,0,2,5,,4,3,Beech,Rd,684801,0.182,0.525,0,8.230788,5.8,4.5 +3719,0,0.606425,1,1,0,2,5,,4,3,Beech,Rd,684801,1.016,1.622,0,14.554203,5.8,4.5 +3751,0,0.290538,1,1,0,2,4,,4,3,9 Mile,Rd,684404,0.438,0.729,0,6.972904,4.5,4.5 +26233,0,0.510385,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.249248,0.15,4 +29747,0,0.501854,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.044497,0.15,4 +3750,0,0.267045,1,1,0,2,4,,4,3,9 Mile,Rd,684404,0.729,0.995,0,6.409083,4.5,4.5 +11831,-1,0.156458,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.358,12.514,0,3.754993,5,5 +12285,0,0.565317,2,2,0,2,4,,3,1,Fenkell,St,1579605,2.413,2.978,0,13.567619,6,4.5 +12421,0,0.502028,1,1,0,2,5,,3,1,Burt,Rd,1582303,0.496,0.998,0,12.048665,8,4.5 +13208,0,0.279972,1,1,0,2,4,,3,1,Chicago,St,1579408,2.406,2.686,0,6.71932,6,4.5 +14559,1,0.330292,2,0,0,2,4,DV2,3,1,Outer,Dr,1596803,3.617,3.947,0,7.927013,6,4.5 +14807,0,0.332286,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,3.983,4.315,0,7.974866,5,5 +15733,0,1.096006,2,2,0,2,4,,3,1,Outer,Dr,1596803,2.178,3.274,0,26.304151,6,4.5 +16580,0,0.284885,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,0.711,0.995,0,6.837233,6,4.5 +16688,1,0.540409,5,0,0,1,1,,3,1,E I 96,,1606201,9.08,9.621,0,,0.58,7 +16798,0,0.27825,2,2,0,2,5,,3,1,Rouge Park,Dr,1605403,0.599,0.877,0,6.677999,8,4.5 +16829,0,0.286505,2,2,1,2,3,,3,1,Plymouth,Rd,1604102,14.749,15.036,0,6.876127,5,5 +16866,-1,0.413666,0,5,0,1,1,,3,1,W I 96,,1606503,8.947,9.36,0,,0.58,7 +17145,0,0.163006,1,1,0,2,4,,3,1,Ann Arbor,Trl,1604508,9.13,9.293,0,3.912133,6,4.5 +17415,0,0.650407,2,2,0,2,5,,3,1,Spinoza,Dr,1624005,1.427,2.077,0,15.609764,8,4.5 +17490,0,0.121652,1,1,0,2,5,,3,1,Tireman,St,1645409,0.275,0.396,0,2.919639,8,4.5 +18076,0,0.143491,1,1,0,2,3,,3,1,Edward N Hines,Dr,1689409,13.48,13.623,0,3.443794,5,5 +18329,0,0.755806,1,1,0,2,4,,3,1,Joy,Rd,1677810,5.483,6.239,0,18.13935,6,4.5 +21452,1,0.044315,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.326,19.371,0,1.06355,5,5 +23279,-1,0.330555,0,2,0,2,4,DV2,3,1,Outer,Dr,4704599,0.332,0.663,0,7.933309,6,4.5 +23281,-1,0.491441,0,2,0,2,5,,3,1,Schoolcraft,St,4705258,9.415,9.907,0,11.794576,8,4.5 +23362,1,0.890477,2,0,0,2,5,,3,1,Schoolcraft,St,4705231,8.965,9.855,0,21.371447,8,4.5 +24021,0,0.086234,2,2,1,2,3,,3,1,Warren,Rd,4710470,14.877,14.964,0,2.069604,5,5 +30384,0,0.534477,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.827446,0.15,4 +31194,0,0.523303,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.559273,0.15,4 +32610,0,0.928939,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,22.294526,0.15,4 +32611,0,0.953206,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,22.876945,0.15,4 +32615,0,0.259265,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.222362,0.15,4 +32623,0,0.252488,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.059709,0.15,4 +33717,0,0.602322,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.45573,0.15,4 +40605,0,0.996973,1,1,0,2,6,GRV,5,8,Chase Lake,Rd,943607,5.867,6.864,0,23.92736,5.55,5 +33916,0,0.510246,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.245906,0.15,4 +11836,-1,0.238237,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,11.118,11.357,0,5.717692,5,5 +12504,0,0.321794,1,1,0,2,5,,3,1,Parkway,St,1583502,0.36,0.682,0,7.723065,8,4.5 +12547,0,0.474135,1,1,0,2,4,,3,2,Chicago,St,1579408,1.449,1.923,0,11.379251,6,4.5 +15730,0,0.191967,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,2.718,2.91,0,4.607211,6,4.5 +17147,0,0.461082,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,7.942,8.403,0,11.065968,6,4.5 +18632,0,0.469878,2,2,0,2,4,,3,2,Joy,Rd,1677810,4.51,4.98,0,11.277073,6,4.5 +21404,1,0.248474,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,17.996,18.244,0,5.963372,5,5 +24026,0,0.478238,2,2,1,2,3,,3,2,Warren,Rd,4710470,13.905,14.383,0,11.47772,5,5 +32239,0,0.758715,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,18.209168,0.15,4 +32341,0,0.491766,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.802388,0.15,4 +32519,0,0.493562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.845492,0.15,4 +32609,0,0.558671,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.408097,0.15,4 +32622,0,0.517075,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.409804,0.15,4 +32624,0,0.487053,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.689282,0.15,4 +32631,0,0.48624,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.669752,0.15,4 +32632,0,0.304147,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.299528,0.15,4 +32634,0,0.464416,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.145983,0.15,4 +32636,0,0.505301,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.12722,0.15,4 +33573,0,0.518702,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.448837,0.15,4 +33975,0,0.610879,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.661099,0.15,4 +15140,0,0.524579,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,2.001,2.526,0,12.589901,6,4.5 +16863,0,0.505104,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,7.437,7.942,0,12.12249,6,4.5 +24028,0,0.375921,2,2,1,2,3,,3,2,Warren,Rd,4710470,13.4,13.775,0,9.022097,5,5 +30548,0,0.491668,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.800028,0.15,4 +15388,0,0.249533,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,1.752,2.001,0,5.988783,6,4.5 +14898,0,0.192132,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,2.526,2.718,0,4.611168,6,4.5 +24027,0,0.129081,2,2,1,2,3,,3,2,Warren,Rd,4710470,13.775,13.905,0,3.097946,5,5 +32340,0,0.249485,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.987643,0.15,4 +32633,0,0.114438,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.746503,0.15,4 +12858,0,0.498746,1,1,0,2,4,,3,2,Chicago,St,1579408,0.95,1.449,0,11.969898,6,4.5 +16585,0,0.288223,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,0.209,0.497,0,6.917354,6,4.5 +17681,0,0.507726,2,2,0,2,4,,3,2,Joy,Rd,1677810,3.984,4.492,0,12.185427,6,4.5 +32522,0,0.487381,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.697139,0.15,4 +32635,0,0.249324,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.983787,0.15,4 +32637,0,0.490313,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.767515,0.15,4 +16605,0,0.208607,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,0,0.209,0,5.006566,6,4.5 +15205,0,0.154022,2,2,1,2,4,,3,2,Beech Daly,Rd,1596409,2.91,3.064,0,3.696522,6,4.5 +16582,0,0.213847,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,0.497,0.711,0,5.132321,6,4.5 +32638,0,0.249642,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.991404,0.15,4 +19095,0,0.018337,2,2,0,2,4,,3,2,Joy,Rd,1677810,4.492,4.51,0,0.440098,6,4.5 +32625,0,0.248025,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.952601,0.15,4 +11837,-1,0.578008,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,10.541,11.118,0,13.872196,5,5 +12431,0,0.360173,1,1,0,2,5,,3,1,Parkway,St,1583502,0,0.36,0,8.644148,8,4.5 +16859,0,0.612091,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,8.466,9.078,0,14.690193,6,4.5 +17457,0,0.300488,1,1,0,2,5,,3,2,Warrendale,Dr,1648010,0,0.3,0,7.211719,8,4.5 +18384,0,0.24792,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,13.232,13.48,0,5.950069,5,5 +18592,0,0.36797,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,12.864,13.232,0,8.831288,5,5 +21565,1,0.571496,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,17.424,17.996,0,13.715893,5,5 +24024,0,0.344304,2,2,1,2,3,,3,2,Warren,Rd,4710470,14.406,14.75,0,8.263307,5,5 +11838,-1,0.247603,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,10.293,10.541,0,5.942466,5,5 +21658,1,0.247192,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,17.177,17.424,0,5.932597,5,5 +24025,0,0.023406,2,2,1,2,3,,3,2,Warren,Rd,4710470,14.383,14.406,0,0.561733,5,5 +17462,0,0.217897,1,1,0,2,5,,3,2,Woodbine,Ave,1647508,0,0.218,0,5.229517,8,4.5 +32630,0,0.062047,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.48912,0.15,4 +17146,0,0.02348,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,8.442,8.466,0,0.563521,6,4.5 +16861,0,0.039363,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,8.403,8.442,0,0.944724,6,4.5 +24023,0,0.127325,2,2,1,2,3,,3,2,Warren,Rd,4710470,14.75,14.877,0,3.05579,5,5 +16267,0,0.052228,1,1,0,2,4,,3,1,Ann Arbor,Trl,1604508,9.078,9.13,0,1.253479,6,4.5 +11833,-1,0.35397,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,11.757,12.111,0,8.49528,5,5 +12002,0,0.250539,1,1,0,2,4,,3,2,Chicago,St,1579408,1.945,2.195,0,6.01293,6,4.5 +17243,0,0.427925,1,1,0,2,4,,3,2,Joy,Rd,1677810,5.005,5.432,0,10.270198,6,4.5 +21914,1,0.248633,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,18.747,18.995,0,5.967195,5,5 +30878,0,0.24389,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.853366,0.15,4 +32616,0,0.239048,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.737141,0.15,4 +11835,-1,0.253702,0,3,0,2,3,DIV,3,2,Telegraph,Rd,1576806,11.357,11.61,0,6.088856,5,5 +21298,1,0.249875,3,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,18.244,18.494,0,5.996996,5,5 +11834,-1,0.147191,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,11.61,11.757,0,3.532578,5,5 +22107,1,0.253105,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,18.494,18.747,0,6.07453,5,5 +17830,0,0.024793,2,2,0,2,4,,3,2,Joy,Rd,1677810,4.98,5.005,0,0.59504,6,4.5 +11832,-1,0.24639,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.111,12.358,0,5.913364,5,5 +21657,1,0.330947,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,18.995,19.326,0,7.942727,5,5 +12385,0,0.02197,1,1,0,2,4,,3,2,Chicago,St,1579408,1.923,1.945,0,0.527278,6,4.5 +12341,0,0.242382,1,1,0,2,5,,3,1,Parkway,St,1583502,0.682,0.924,0,5.81717,8,4.5 +18784,0,0.051073,1,1,0,2,4,,3,1,Joy,Rd,1677810,5.432,5.483,0,1.225759,6,4.5 +13285,0,0.210851,1,1,0,2,4,,3,2,Chicago,St,1579408,2.195,2.406,0,5.060429,6,4.5 +32617,0,0.242499,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.819967,0.15,4 +11823,-1,0.583091,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,13.311,13.894,0,13.994182,5,5 +12012,1,0.065471,3,0,0,2,3,,3,2,N US 24 CD,,1580109,0.226,0.291,0,1.571293,5,5 +12774,0,0.467387,2,2,1,2,4,,3,2,5 Mile,Rd,1579605,1.482,1.949,0,11.217287,6,4.5 +15899,1,0.211797,1,0,0,1,1,RON,3,1,US 24/E I 96,RAMP,1598906,0,0.212,0,,1.09,4 +16510,0,0.462717,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,2.004,2.467,0,11.105206,6,4.5 +16554,1,0.175559,1,0,0,1,1,RON,3,2,US 24/W I 96,RAMP,1606604,0,0.176,0,,1.09,4 +16609,1,0.244139,1,0,0,1,1,ROF,3,2,E I 96/US 24,RAMP,1606409,0,0.244,0,,2.24,5 +16690,1,0.352863,4,0,0,1,1,,3,2,E I 96,,1606201,8.518,8.87,0,,0.58,7 +16728,0,0.229696,2,2,1,2,3,,3,2,Plymouth,Rd,1604102,13.942,14.171,0,5.512699,5,5 +16833,1,0.140656,1,0,0,1,1,ROF,3,2,W I 96/Beech Daly,RAMP,1606603,0,0.141,0,,2.24,5 +16868,-1,0.288568,0,4,0,1,1,,3,2,W I 96,,1606503,8.322,8.611,0,,0.58,7 +17002,1,0.209452,4,0,0,1,1,,3,1,E I 96,,1606201,8.87,9.08,0,,0.58,7 +21453,1,0.566307,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,20.206,20.772,0,13.591371,5,5 +22728,-1,0.421406,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,8.448,8.87,0,10.113748,8,4.5 +22902,-1,0.10344,0,3,0,2,5,,3,2,Schoolcraft,Rd,4705258,7.95,8.054,0,2.48255,8,4.5 +23449,1,0.426587,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,8.428,8.855,0,10.238093,8,4.5 +24265,-1,0.065431,0,3,0,2,3,,3,2,S US 24 CD,,4711490,0.237,0.302,0,1.570335,5,5 +30258,0,0.527616,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.662793,0.15,4 +32639,0,0.503532,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.084771,0.15,4 +32641,0,0.481162,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.547883,0.15,4 +32642,0,0.504991,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.119788,0.15,4 +32645,0,0.453733,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.889584,0.15,4 +32648,0,0.514692,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.352601,0.15,4 +16573,0,0.342717,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,1.328,1.671,0,8.22522,6,4.5 +16583,-1,0.504349,0,5,0,1,1,,3,2,W I 96,,1606503,7.818,8.322,0,,0.58,7 +16772,0,0.436872,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,13.293,13.729,0,10.484923,5,5 +17004,1,0.435901,5,0,0,1,1,,3,2,E I 96,,1606201,8.082,8.518,0,,0.58,7 +23450,1,0.421641,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,8.007,8.428,0,10.119385,8,4.5 +31195,0,0.501968,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.047243,0.15,4 +32567,0,0.517174,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.412176,0.15,4 +16579,0,0.332878,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,0.995,1.328,0,7.989073,6,4.5 +16552,0,0.274761,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,1.671,1.945,0,6.59427,6,4.5 +16903,1,0.171122,1,0,0,1,1,RON,3,2,Beech Daly/E I 96,RAMP,1606407,0,0.171,0,,1.09,4 +23461,1,0.074107,3,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,7.933,8.007,0,1.778557,8,4.5 +16516,0,0.058671,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,1.945,2.004,0,1.408112,6,4.5 +16730,0,0.212434,2,2,0,2,3,,3,2,Plymouth,Rd,1604102,13.729,13.942,0,5.098421,5,5 +32643,0,0.254912,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.117882,0.15,4 +32640,0,0.208153,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.995667,0.15,4 +11982,0,0.459017,2,2,1,2,4,,3,2,5 Mile,Rd,1579605,0.978,1.437,0,11.0164,6,4.5 +16509,0,0.515919,2,2,1,2,4,,3,2,Beech Daly,Rd,1600802,2.467,2.982,0,12.382058,6,4.5 +22859,-1,0.39495,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,8.054,8.448,0,9.478789,8,4.5 +30257,0,0.516786,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.402855,0.15,4 +32646,0,0.499618,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.990826,0.15,4 +32647,0,0.486027,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.664645,0.15,4 +13173,0,0.044789,2,2,1,2,4,,3,2,5 Mile,Rd,1579605,1.437,1.482,0,1.074924,6,4.5 +11825,-1,0.333299,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.941,13.274,0,7.999183,5,5 +16264,0,0.074094,2,2,1,2,3,,3,2,Plymouth,Rd,1604102,14.464,14.538,0,1.778262,5,5 +21725,1,0.579432,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.584,20.164,0,13.906367,5,5 +11826,-1,0.232411,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.709,12.941,0,5.577866,5,5 +11827,-1,0.096203,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.613,12.709,0,2.308862,5,5 +12305,1,0.049628,1,0,0,1,3,RSF,3,2,N US 24/Plymouth,RAMP,1579410,0,0.05,0,,5,5 +16648,1,0.022674,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.267,14.29,0,0.544175,5,5 +22520,-1,0.022652,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0.096,0.119,0,0.543652,5,5 +11829,-1,0.071788,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.53,12.602,0,1.722913,5,5 +12383,1,0.124544,1,0,0,1,3,RSF,3,2,Plymouth/S US 24,RAMP,1579409,0,0.125,0,,5,5 +12819,1,0.080374,1,0,0,1,3,RSF,3,2,N US 24/Plymouth,RAMP,1579410,0.05,0.13,0,,5,5 +11830,-1,0.016404,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.514,12.53,0,0.393705,5,5 +12539,1,0.028476,1,0,0,1,3,RSF,3,2,N US 24/Plymouth,RAMP,1579410,0.13,0.158,0,,5,5 +16712,1,0.039108,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.188,14.227,0,0.938596,5,5 +22661,-1,0.066771,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0.03,0.096,0,1.602508,5,5 +22660,-1,0.02957,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0,0.03,0,0.709685,5,5 +16727,1,0.016802,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.171,14.188,0,0.403246,5,5 +16699,1,0.040084,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.227,14.267,0,0.962023,5,5 +11828,-1,0.010768,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,12.602,12.613,0,0.258422,5,5 +16634,1,0.105101,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.359,14.464,0,2.522417,5,5 +21345,1,0.11523,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.371,19.486,0,2.765515,5,5 +22946,-1,0.098841,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0.193,0.292,0,2.372188,5,5 +12094,1,0.116293,1,0,0,1,3,RSF,3,2,Plymouth/N US 24,RAMP,1580104,0,0.116,0,,5,5 +13169,1,0.078969,1,0,0,1,3,RSF,3,2,S US 24/Plymouth,RAMP,1579502,0.038,0.117,0,,5,5 +16639,1,0.06843,2,0,0,2,3,DIV,3,2,Plymouth,Rd,1604102,14.29,14.359,0,1.642329,5,5 +22056,1,0.062427,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.497,19.56,0,1.498244,5,5 +23416,-1,0.050837,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0.119,0.17,0,1.220099,5,5 +21033,1,0.011734,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.486,19.497,0,0.281623,5,5 +11971,1,0.037927,1,0,0,1,3,RSF,3,2,S US 24/Plymouth,RAMP,1579502,0,0.038,0,,5,5 +21841,1,0.024645,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,19.56,19.584,0,0.591486,5,5 +12731,1,0.020434,1,0,0,1,3,RSF,3,2,S US 24/Plymouth,RAMP,1579502,0.117,0.137,0,,5,5 +23083,-1,0.023583,0,2,0,2,3,DIV,3,2,Plymouth,Rd,4706076,0.17,0.193,0,0.56599,5,5 +11824,-1,0.036925,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,13.274,13.311,0,0.88621,5,5 +12011,1,0.225832,2,0,0,2,3,,3,2,N US 24 CD,,1580109,0,0.226,0,5.419967,5,5 +21563,1,0.042266,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,20.164,20.206,0,1.014392,5,5 +23383,1,0.035835,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,8.929,8.965,0,0.860043,8,4.5 +24410,-1,0.237006,0,2,0,2,3,,3,2,S US 24 CD,,4711490,0,0.237,0,5.688138,5,5 +23396,1,0.046231,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,8.855,8.901,0,1.109552,8,4.5 +23394,1,0.02825,2,0,0,2,5,,3,2,Schoolcraft,Rd,4705231,8.901,8.929,0,0.678012,8,4.5 +16564,0,0.211953,2,2,1,2,3,,3,2,Plymouth,Rd,1604102,14.538,14.749,0,5.086874,5,5 +11821,-1,0.512302,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,14.085,14.597,0,12.295248,5,5 +12713,0,0.403192,2,2,0,2,4,,3,1,Fenkell,St,1579605,2.01,2.413,0,9.6766,6,4.5 +15898,1,0.279209,1,0,0,1,1,ROF,3,1,W I 96/US 24,RAMP,1598907,0,0.279,0,,2.24,5 +16581,-1,0.33618,0,4,0,1,1,,3,1,W I 96,,1606503,8.611,8.947,0,,0.58,7 +21296,1,0.372261,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,20.772,21.144,0,8.934266,5,5 +23698,-1,0.373355,0,2,0,2,5,,3,1,Schoolcraft,St,4705258,9.042,9.415,0,8.960518,8,4.5 +32524,0,0.431507,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.356161,0.15,4 +32626,0,0.508529,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.204699,0.15,4 +33716,0,0.417668,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.024032,0.15,4 +13301,1,0.274991,2,0,0,2,3,,3,2,N US 24 CD,,1580109,0.291,0.566,0,6.599792,5,5 +22428,-1,0.035742,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,8.948,8.984,0,0.857796,8,4.5 +24453,-1,0.282255,0,2,0,2,3,,3,2,S US 24 CD,,4711490,0.302,0.585,0,6.774126,5,5 +22569,-1,0.050731,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,8.87,8.92,0,1.217554,8,4.5 +22515,-1,0.027893,0,2,0,2,5,,3,2,Schoolcraft,Rd,4705258,8.92,8.948,0,0.669429,8,4.5 +11822,-1,0.190426,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,13.894,14.085,0,4.570231,5,5 +23617,-1,0.058057,0,2,0,2,5,,3,1,Schoolcraft,St,4705258,8.984,9.042,0,1.393358,8,4.5 +13091,0,0.037884,2,2,0,2,4,,3,2,5 Mile,Rd,1579605,1.972,2.01,0,0.909218,6,4.5 +21034,1,0.338048,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,21.144,21.482,0,8.113141,5,5 +11895,0,0.022837,2,2,0,2,4,,3,2,5 Mile,Rd,1579605,1.949,1.972,0,0.548076,6,4.5 +32627,0,0.478324,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.479781,0.15,4 +13225,0,0.151629,1,1,0,2,5,,3,1,Chicago,St,1581803,0,0.152,0,3.6391,8,4.5 +14565,0,0.249708,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,2.991,3.241,0,5.992986,5,5 +14817,0,0.284009,1,1,0,2,5,,3,1,Tireman,St,1594805,0,0.284,0,6.816223,8,4.5 +14921,0,0.408226,2,2,1,2,3,,3,1,Warren,Rd,1591804,0.517,0.925,0,9.797434,5,5 +16223,0,0.296244,1,1,0,2,5,,3,1,Spinoza,Dr,1624005,0,0.296,0,7.109857,8,4.5 +17380,0,0.04802,1,1,0,2,5,,3,1,Tireman,St,1625510,0.184,0.232,0,1.152471,8,4.5 +17419,0,0.259558,2,2,0,2,5,,3,1,Spinoza,Dr,1624005,0.296,0.556,0,6.229395,8,4.5 +17941,0,0.36448,1,1,0,2,4,,3,1,Joy,Rd,1677810,6.239,6.603,0,8.747525,6,4.5 +23717,0,0.042944,1,1,0,2,5,,3,1,Tireman,St,4707998,0,0.043,0,1.030653,8,4.5 +32649,0,0.3786,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.086399,0.15,4 +32650,0,0.447746,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.7459,0.15,4 +14925,0,0.201049,2,2,1,2,3,,3,1,Warren,Rd,1591804,0.316,0.517,0,4.825184,5,5 +15328,0,0.680997,2,2,0,2,4,,3,1,Outer,Dr,1596803,1.402,2.082,0,16.343928,6,4.5 +15628,1,0.541977,2,0,0,2,4,DV2,3,2,Outer,Dr,1596803,0.86,1.402,0,13.007455,6,4.5 +17469,0,0.1127,1,1,0,2,5,,3,1,Tireman,St,1645409,0.677,0.79,0,2.704807,8,4.5 +23442,-1,0.535094,0,2,0,2,4,DV2,3,2,Outer,Dr,4704579,0,0.535,0,12.842249,6,4.5 +32600,0,0.121062,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.905479,0.15,4 +32603,0,0.50572,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.137276,0.15,4 +14931,0,0.315617,2,2,1,2,3,,3,1,Warren,Rd,1591804,0,0.316,0,7.574806,5,5 +16259,0,0.24662,1,1,0,2,4,,3,2,Ann Arbor,Trl,1604508,9.293,9.539,0,5.918891,6,4.5 +17878,0,0.303628,1,1,0,2,3,,3,2,Edward N Hines,Dr,1689409,13.623,13.927,0,7.287068,5,5 +14802,0,0.057081,2,2,1,2,4,,3,2,Outer,Dr,1596803,0.803,0.86,0,1.369942,6,4.5 +17484,0,0.280832,1,1,0,2,5,,3,1,Tireman,St,1645409,0.396,0.677,0,6.739966,8,4.5 +32602,0,0.281813,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.76351,0.15,4 +32601,0,0.018653,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.447675,0.15,4 +15094,0,0.095755,2,2,0,2,4,,3,1,Outer,Dr,1596803,2.082,2.178,0,2.298121,6,4.5 +17381,0,0.184278,1,1,0,2,5,,3,1,Tireman,St,1625510,0,0.184,0,4.422671,8,4.5 +17416,0,0.525476,2,2,0,2,5,,3,1,Spinoza,Dr,1624005,0.902,1.427,0,12.611435,8,4.5 +14980,1,0.168462,2,0,0,2,4,DV2,3,1,Outer,Dr,1596803,3.449,3.617,0,4.043097,6,4.5 +17090,0,0.598724,2,2,0,2,5,,3,1,Rouge Park,Dr,1605403,0,0.599,0,14.369383,8,4.5 +23280,-1,0.168574,0,2,0,2,4,DV2,3,1,Outer,Dr,4704599,0.164,0.332,0,4.045768,6,4.5 +32607,0,0.264409,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.345817,0.15,4 +32608,0,0.267066,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.409592,0.15,4 +32613,0,0.223085,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.354032,0.15,4 +15197,1,0.163782,2,0,0,2,4,DV2,3,1,Outer,Dr,1596803,3.285,3.449,0,3.93077,6,4.5 +23287,-1,0.163813,0,2,0,2,4,DV2,3,1,Outer,Dr,4704599,0,0.164,0,3.931523,6,4.5 +15457,0,0.011009,2,2,0,2,4,,3,1,Outer,Dr,1596803,3.274,3.285,0,0.264212,6,4.5 +12996,0,0.012032,1,1,0,2,4,,3,1,Chicago,St,1579408,2.686,2.698,0,0.28877,6,4.5 +17417,0,0.29917,2,2,0,2,5,,3,1,Spinoza,Dr,1624005,0.603,0.902,0,7.180078,8,4.5 +17418,0,0.047088,2,2,0,2,5,,3,1,Spinoza,Dr,1624005,0.556,0.603,0,1.13011,8,4.5 +14910,0,0.236982,2,2,1,2,3,,3,1,Warren,Ave,1591804,1.143,1.38,0,5.687566,5,5 +15060,0,0.314696,1,1,0,2,5,,3,1,Tireman,St,1594805,0.284,0.599,0,7.552695,8,4.5 +15633,0,0.253955,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,2.494,2.748,0,6.094914,5,5 +40455,1,0.819587,3,0,0,1,1,,4,8,E I 96,,935105,15.166,15.985,0,,0.8,7.5 +32338,0,0.558423,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.402152,0.15,4 +14920,0,0.1502,2,2,1,2,3,,3,1,Warren,Rd,1591804,0.925,1.075,0,3.604791,5,5 +14917,0,0.068634,2,2,1,2,3,,3,1,Warren,Rd,1591804,1.075,1.143,0,1.647228,5,5 +32652,0,0.054493,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.307832,0.15,4 +14806,0,0.251062,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,2.243,2.494,0,6.025499,5,5 +15333,0,0.243739,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,2.748,2.991,0,5.849743,5,5 +12916,0,0.255721,2,2,0,2,5,,3,1,Chicago,St,1581803,0.278,0.533,0,6.137309,8,4.5 +15263,0,0.368454,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,3.491,3.859,0,8.842892,5,5 +18925,0,0.248729,1,1,0,2,4,,3,1,Joy,Rd,1677810,6.725,6.974,0,5.969504,6,4.5 +32605,0,0.166113,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.98672,0.15,4 +33917,0,0.484133,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.619194,0.15,4 +17520,0,0.122145,1,1,0,2,4,,3,1,Joy,Rd,1677810,6.603,6.725,0,2.931492,6,4.5 +32604,0,0.143457,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.442958,0.15,4 +13226,0,0.12594,2,2,0,2,5,,3,1,Chicago,St,1581803,0.152,0.278,0,3.022551,8,4.5 +15537,0,0.250188,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,3.241,3.491,0,6.004509,5,5 +12751,0,0.125591,2,2,0,2,5,,3,1,Chicago,St,1581803,0.533,0.659,0,3.014188,8,4.5 +15045,0,0.123762,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,3.859,3.983,0,2.970277,5,5 +11647,0,0.178141,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.8,2.978,0,4.275394,6,4.5 +12934,-1,0.435825,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,0,0.436,0,,0.58,7 +12991,0,0.495976,2,2,0,2,4,,3,1,Fenkell,St,1579605,3.475,3.971,0,11.903417,6,4.5 +13022,1,0.345834,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,0,0.346,0,,0.58,7 +13234,1,0.063329,3,0,0,2,4,DV2,3,1,Outer,Dr,1582205,0.215,0.279,0,1.519905,6,4.5 +13235,0,0.074691,2,2,0,2,4,,3,1,Burt,Rd,1582303,1.906,1.981,0,1.79259,6,4.5 +14057,1,0.141863,1,0,0,1,1,ROF,3,1,E I 96/Outer,RAMP,1589502,0,0.142,0,,2.24,5 +14853,0,0.158885,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.312,5.471,0,3.813231,5,5 +15636,0,0.249842,1,1,0,2,5,,3,1,Lyndon,St,1594902,0.667,0.917,0,5.99621,8,4.5 +16318,0,0.474021,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,15.311,15.785,0,11.3765,5,5 +17000,1,0.333875,5,0,0,1,1,,3,1,E I 96,,1606201,9.621,9.954,0,,0.58,7 +22234,-1,0.063538,0,3,0,2,4,DV2,3,1,Outer,Dr,4704245,0.112,0.176,0,1.52491,6,4.5 +22757,-1,0.353673,0,2,0,2,4,,3,1,Schoolcraft,St,4705258,10.096,10.45,0,8.488153,6,4.5 +23345,1,0.15394,2,0,0,2,4,,3,1,Schoolcraft,St,4705231,10.47,10.624,0,3.694564,6,4.5 +23349,1,0.315326,2,0,0,2,4,,3,1,Schoolcraft,St,4705231,10.117,10.433,0,7.567831,6,4.5 +24388,1,0.179965,2,0,0,2,4,DV2,3,1,Outer,Dr,4710104,0.311,0.491,0,4.319155,6,4.5 +24509,-1,0.179914,0,3,0,2,4,DV2,3,1,Outer,Dr,4708702,0.327,0.507,0,4.317927,6,4.5 +32621,0,0.560294,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.447058,0.15,4 +32654,0,0.55305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.273195,0.15,4 +32965,0,0.566843,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.604233,0.15,4 +14556,0,0.243305,2,2,0,2,4,,3,1,Outer,Dr,1596803,4.279,4.522,0,5.839315,6,4.5 +23354,1,0.175831,2,0,0,2,4,,3,1,Schoolcraft,St,4705231,9.942,10.117,0,4.219942,6,4.5 +14976,0,0.33195,2,2,0,2,4,,3,1,Outer,Dr,1596803,3.947,4.279,0,7.96679,6,4.5 +16208,0,0.386772,2,2,0,2,5,,3,1,Rouge Park,Dr,1605403,0.877,1.263,0,9.282536,8,4.5 +16625,0,0.086507,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,15.036,15.122,0,2.076167,5,5 +32612,0,0.243467,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.843201,0.15,4 +32614,0,0.252844,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.068266,0.15,4 +16149,0,0.189083,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,15.122,15.311,0,4.537999,5,5 +15532,0,0.397531,2,2,0,2,4,,3,1,Outer,Dr,1596803,4.522,4.92,0,9.540753,6,4.5 +32620,0,0.245369,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.888849,0.15,4 +15258,0,0.046208,2,2,0,2,4,,3,1,Outer,Dr,1596803,4.92,4.966,0,1.108981,6,4.5 +23359,1,0.073427,2,0,0,2,5,,3,1,Schoolcraft,St,4705231,9.855,9.929,0,1.762254,8,4.5 +32619,0,0.098243,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.357832,0.15,4 +13233,1,0.099257,2,0,0,2,4,DV2,3,1,Outer,Dr,1582205,0.116,0.215,0,2.382166,6,4.5 +15041,1,0.024964,2,0,0,2,4,DV2,3,1,Outer,Dr,1596803,4.966,4.991,0,0.599144,6,4.5 +22235,-1,0.112181,0,2,0,2,4,DV2,3,1,Outer,Dr,4704245,0,0.112,0,2.692354,6,4.5 +23356,1,0.01285,2,0,0,2,4,,3,1,Schoolcraft,St,4705231,9.929,9.942,0,0.308408,6,4.5 +14638,1,0.149938,1,0,0,1,1,RON,3,1,Outer/W I 96,RAMP,1590704,0,0.15,0,,1.09,4 +14639,1,0.216224,3,0,0,1,1,FCD,3,1,E I 96 CD,,1590703,0,0.216,0,,0.58,7 +11889,0,0.31826,2,2,0,2,4,,3,1,Fenkell,St,1579605,2.978,3.296,0,7.638247,6,4.5 +12493,1,0.301029,3,0,0,2,4,DV2,3,1,Outer,Dr,1582205,0.771,1.072,0,7.224687,6,4.5 +14810,0,0.241085,1,1,0,2,5,,3,1,Lyndon,St,1594902,0.426,0.667,0,5.786046,8,4.5 +16578,-1,0.305958,0,5,0,1,1,,3,1,W I 96,,1606503,9.36,9.666,0,,0.58,7 +22231,-1,0.305912,0,3,0,2,4,DV2,3,1,Outer,Dr,4704245,0.667,0.973,0,7.34189,6,4.5 +23063,-1,0.136877,0,2,0,2,4,,3,1,Schoolcraft,St,4705258,9.959,10.096,0,3.285054,6,4.5 +24389,1,0.311392,2,0,0,2,4,DV2,3,1,Outer,Dr,4710104,0,0.311,0,7.473418,6,4.5 +24510,-1,0.31266,0,3,0,2,4,DV2,3,1,Outer,Dr,4708702,0.015,0.327,0,7.503832,6,4.5 +30903,0,0.455211,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.925068,0.15,4 +12927,1,0.327127,3,0,0,2,4,DV2,3,1,Outer,Dr,1582205,0.279,0.606,0,7.851036,6,4.5 +13734,1,0.172839,1,0,0,1,1,RON,3,1,Outer/W I 96,RAMP,1589503,0,0.173,0,,1.09,4 +22233,-1,0.326054,0,3,0,2,4,DV2,3,1,Outer,Dr,4704245,0.176,0.502,0,7.825304,6,4.5 +23363,-1,0.012961,0,2,0,2,4,,3,1,Schoolcraft,St,4705258,9.946,9.959,0,0.311053,6,4.5 +23535,-1,0.039635,0,2,0,2,5,,3,1,Schoolcraft,St,4705258,9.907,9.946,0,0.951241,8,4.5 +12759,1,0.165083,3,0,0,2,4,DV2,3,1,Outer,Dr,1582205,0.606,0.771,0,3.961996,6,4.5 +22232,-1,0.165221,0,3,0,2,4,DV2,3,1,Outer,Dr,4704245,0.502,0.667,0,3.965308,6,4.5 +15754,0,0.014125,1,1,0,2,5,,3,1,Lyndon,St,1594902,0.412,0.426,0,0.339003,8,4.5 +12035,1,0.052434,1,0,0,2,4,DV2,3,1,Lasher,Rd,1582205,1.087,1.139,0,1.258426,6,4.5 +22230,-1,0.062999,0,1,0,2,4,DV2,3,1,Lasher,Rd,4704245,0.973,1.036,0,1.511978,6,4.5 +12330,1,0.015527,1,0,0,2,4,DV2,3,1,Outer,Dr,1582205,1.072,1.087,0,0.372657,6,4.5 +24512,-1,0.014783,0,3,0,2,4,DV2,3,1,Outer,Dr,4708702,0,0.015,0,0.354803,6,4.5 +11646,0,0.129126,1,1,0,2,4,,3,1,Lahser,Rd,1582205,1.139,1.269,0,3.099024,6,4.5 +14667,1,0.206316,1,0,0,1,1,ROF,3,1,W I 96/Outer,RAMP,1590504,0,0.206,0,,2.24,5 +14668,1,0.261791,3,0,0,1,1,FCD,3,1,W I 96 CD,,1590503,0,0.262,0,,0.58,7 +33720,0,0.141382,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.393166,0.15,4 +13089,0,0.178986,2,2,0,2,4,,3,1,Fenkell,St,1579605,3.296,3.475,0,4.295653,6,4.5 +30905,0,0.050878,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.22108,0.15,4 +30907,0,0.127281,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.054755,0.15,4 +12117,0,0.351806,1,1,0,2,4,,3,1,Burt,Rd,1582303,1.307,1.658,0,8.443338,6,4.5 +12935,-1,0.514379,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,0.436,0.95,0,,0.58,7 +13023,1,0.560954,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,0.346,0.907,0,,0.58,7 +14665,-1,0.030976,0,1,0,1,5,,3,1,Kentfield,St,1590506,0.367,0.398,0,,8,4.5 +14666,1,0.242866,1,0,0,1,1,RON,3,1,Evergreen/W I 96,RAMP,1590505,0,0.243,0,,1.09,4 +15201,0,0.198039,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,4.788,4.986,0,4.752946,5,5 +16707,0,0.254373,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,16.041,16.295,0,6.104952,5,5 +21924,1,0.037155,3,0,0,2,5,,3,1,E I 96 Service Drive,,4700002,0.408,0.445,0,0.89171,8,4.5 +32657,0,0.258909,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.213824,0.15,4 +12422,0,0.309204,1,1,0,2,4,,3,1,Burt,Rd,1582303,0.998,1.307,0,7.4209,6,4.5 +17126,0,0.255978,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,15.785,16.041,0,6.143461,5,5 +32336,0,0.263591,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.326195,0.15,4 +32659,0,0.24852,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.96449,0.15,4 +14637,1,0.252083,1,0,0,1,1,ROF,3,1,E I 96/Evergreen,RAMP,1590705,0,0.252,0,,2.24,5 +22010,1,0.375396,2,0,0,2,5,,3,1,E I 96 Service Drive,,4700002,0,0.375,0,9.009505,8,4.5 +11960,0,0.247776,1,1,0,2,4,,3,1,Burt,Rd,1582303,1.658,1.906,0,5.946627,6,4.5 +23347,1,0.03732,2,0,0,2,4,,3,1,Schoolcraft,St,4705231,10.433,10.47,0,0.895683,6,4.5 +21926,1,0.032232,3,0,0,2,5,,3,1,E I 96 Service Drive,,4700002,0.375,0.408,0,0.773557,8,4.5 +15461,0,0.309309,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,4.479,4.788,0,7.423425,5,5 +15738,0,0.163901,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,4.315,4.479,0,3.933625,5,5 +14562,0,0.086158,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.122,5.208,0,2.067795,5,5 +14662,1,0.149999,2,0,0,1,1,ROF,3,1,W I 96/N Evergreen,RAMP,1590507,0.03,0.18,0,,2.24,5 +17214,1,0.317855,1,0,0,1,1,ROF,3,1,W I 96/S Evergreen,RAMP,1628807,0,0.318,0,,2.24,5 +14636,1,0.200059,1,0,0,1,1,RON,3,1,Evergreen/E I 96,RAMP,1590706,0,0.2,0,,1.09,4 +14983,0,0.135379,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,4.986,5.122,0,3.249106,5,5 +21673,1,0.163862,2,0,0,2,5,,3,1,E I 96 Service Drive,,4700002,0.486,0.65,0,3.932678,8,4.5 +14664,-1,0.040976,0,1,0,1,5,,3,1,Evergreen/W I 96,Ramp,1590506,0.485,0.526,0,,8,4.5 +15100,0,0.089692,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.222,5.312,0,2.152611,5,5 +15335,0,0.014502,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.208,5.222,0,0.348045,5,5 +14663,1,0.030269,2,0,0,1,1,ROF,3,1,W I 96/Evergreen,RAMP,1590507,0,0.03,0,,2.24,5 +12331,0,0.308481,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.477,2.785,0,7.403533,6,4.5 +14940,0,0.495981,1,1,0,2,5,,3,1,Lyndon,St,1594902,0.917,1.413,0,11.90354,8,4.5 +15331,0,0.160066,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.97,6.13,0,3.841586,5,5 +23586,0,0.32943,1,1,0,2,4,,3,1,Schoolcraft,St,4705258,10.619,10.948,0,7.90631,6,4.5 +24387,1,0.496618,2,0,0,2,4,DV2,3,1,Outer,Dr,4710104,0.491,0.988,0,11.918823,6,4.5 +24506,-1,0.496461,0,2,0,2,4,DV2,3,1,Outer,Dr,4708702,0.507,1.004,0,11.915066,6,4.5 +32653,0,0.450393,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.809429,0.15,4 +12760,0,0.23607,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.146,2.382,0,5.665676,6,4.5 +32656,0,0.227612,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.462692,0.15,4 +13017,0,0.165023,1,1,0,2,4,,3,1,Burt,Rd,1582303,1.981,2.146,0,3.96056,6,4.5 +23415,-1,0.169624,0,2,0,2,4,,3,1,Schoolcraft,St,4705258,10.45,10.619,0,4.070981,6,4.5 +32655,0,0.070985,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.703642,0.15,4 +12572,0,0.095462,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.382,2.477,0,2.291085,6,4.5 +12118,0,0.014016,1,1,0,2,4,,3,1,Burt,Rd,1582303,2.785,2.8,0,0.336389,6,4.5 +15395,0,0.33283,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.637,5.97,0,7.987911,5,5 +15683,0,0.166005,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,5.471,5.637,0,3.984127,5,5 +12304,0,0.183121,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.034,4.217,0,4.394903,6,4.5 +15096,0,0.144663,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,6.13,6.274,0,3.471909,5,5 +24385,1,0.185511,2,0,0,2,4,DV2,3,1,Outer,Dr,4710104,0.988,1.173,0,4.452254,6,4.5 +24503,-1,0.185203,0,2,0,2,4,DV2,3,1,Outer,Dr,4708702,1.004,1.189,0,4.444881,6,4.5 +33920,0,0.435034,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.440808,0.15,4 +12630,0,0.063301,2,2,0,2,4,,3,1,Fenkell,St,1579605,3.971,4.034,0,1.51923,6,4.5 +15678,0,0.177947,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,6.288,6.466,0,4.270739,5,5 +30895,0,0.056508,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.356188,0.15,4 +14847,0,0.013952,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,6.274,6.288,0,0.334845,5,5 +12495,0,0.181174,2,2,0,2,4,,3,1,Outer,Dr,1582410,0,0.181,0,4.348168,6,4.5 +24380,0,0.035924,2,2,0,2,4,,3,1,Outer,Dr,4710104,1.173,1.209,0,0.862175,6,4.5 +932,-1,0.29013,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.713,3.003,0,6.963116,5,5 +3743,0,0.31376,2,2,1,2,4,,3,3,9 Mile,Rd,684404,2.626,2.94,0,7.530242,6,4.5 +11812,-1,0.499462,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,16.59,17.089,0,11.987095,5,5 +12420,0,0.499593,2,2,0,2,4,,3,1,Lahser,Rd,1582205,3.26,3.759,0,11.990241,6,4.5 +12894,0,0.394421,3,3,0,2,3,,3,1,Grand River,Ave,1577408,0.007,0.401,0,9.466115,5,5 +15742,0,0.447048,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,8.758,9.205,0,10.72914,5,5 +16437,0,0.499669,1,1,0,2,5,,3,1,Burt,Rd,1600904,0.351,0.851,0,11.992048,8,4.5 +18070,1,0.203607,3,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,14.564,14.768,0,4.886563,5,5 +18301,0,0.243764,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,8.452,8.696,0,5.850328,5,5 +19720,1,0.328748,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.859,3.188,0,7.889958,5,5 +21603,1,0.476058,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,23.475,23.951,0,11.425399,5,5 +23736,-1,0.20675,0,3,0,2,3,DV2,3,1,McNichols,Rd,4707964,0,0.207,0,4.961999,5,5 +24372,0,0.488921,1,1,0,2,5,,3,1,Berg,Rd,4710137,0.636,1.124,0,11.734108,8,4.5 +26224,0,0.488096,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.714302,0.15,4 +29680,0,0.469972,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.279321,0.15,4 +32534,0,0.369514,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.868343,0.15,4 +32662,0,0.363818,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.731642,0.15,4 +32663,0,0.668636,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,16.047265,0.15,4 +32677,0,0.47978,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.514722,0.15,4 +32678,0,0.483352,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.600447,0.15,4 +33053,0,0.488857,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.732565,0.15,4 +33054,0,0.245934,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.902424,0.15,4 +33572,0,0.49362,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.846879,0.15,4 +33575,0,0.487404,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.697689,0.15,4 +33579,0,0.351155,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.427727,0.15,4 +33709,0,0.318085,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.634041,0.15,4 +33711,0,0.496044,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.905049,0.15,4 +33919,0,0.647038,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,15.528904,0.15,4 +11816,-1,0.496949,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,15.596,16.092,0,11.926787,5,5 +16640,-1,0.296051,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,2.203,2.499,0,7.105215,5,5 +16720,1,0.291957,4,0,0,2,3,DIV,3,1,Grand River,Ave,1600604,2.253,2.545,0,7.00698,5,5 +17916,0,0.289234,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,7.645,7.934,0,6.941609,5,5 +18390,0,0.319077,2,2,0,2,3,,3,1,McNichols,Rd,1680701,13.678,13.997,0,7.657857,5,5 +21450,1,0.496401,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,22.48,22.977,0,11.913626,5,5 +32523,0,0.533883,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.813199,0.15,4 +32536,0,0.4943,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.863195,0.15,4 +32679,0,0.241163,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.787907,0.15,4 +32681,0,0.503479,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.083502,0.15,4 +32682,0,0.262048,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.289156,0.15,4 +33715,0,0.55786,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.388652,0.15,4 +18967,0,0.244572,2,2,0,2,3,,3,2,6 Mile,Rd,1680701,13.277,13.522,0,5.869733,5,5 +33713,0,0.615373,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.768961,0.15,4 +33714,0,0.445761,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.698271,0.15,4 +18600,0,0.156628,2,2,0,2,3,,3,1,McNichols,Rd,1680701,13.522,13.678,0,3.759071,5,5 +16649,-1,0.234449,0,4,0,2,3,DIV,3,2,Grand River,Ave,1600605,1.709,1.944,0,5.626768,5,5 +16722,1,0.047235,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,1.944,1.991,0,1.133652,5,5 +18635,0,0.040806,2,2,0,2,3,,3,2,7 Mile,Rd,1700106,7.415,7.455,0,0.979355,5,5 +32535,0,0.510987,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.263699,0.15,4 +32680,0,0.334684,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.032415,0.15,4 +32685,0,0.362594,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.702258,0.15,4 +16723,1,0.275377,4,0,0,2,3,DIV,3,2,Grand River,Ave,1600604,1.669,1.944,0,6.60905,5,5 +18999,0,0.08302,1,1,1,2,3,,3,2,7 Mile,Rd,1700106,7.332,7.415,0,1.992484,5,5 +16641,-1,0.251419,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,1.952,2.203,0,6.034055,5,5 +16721,1,0.261907,4,0,0,2,3,DIV,3,1,Grand River,Ave,1600604,1.991,2.253,0,6.285778,5,5 +18113,0,0.182717,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,7.462,7.645,0,4.385216,5,5 +16647,-1,0.007845,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,1.944,1.952,0,0.188285,5,5 +18426,0,0.006801,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,7.455,7.462,0,0.163222,5,5 +11817,-1,0.34383,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,15.252,15.596,0,8.251925,5,5 +17887,0,0.361465,2,2,0,2,3,,3,1,McNichols,Rd,1680701,14.02,14.381,0,8.675152,5,5 +21655,1,0.346384,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,22.134,22.48,0,8.313226,5,5 +30900,0,0.474554,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.389302,0.15,4 +30901,0,0.372142,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.931413,0.15,4 +32026,0,0.394082,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.457973,0.15,4 +11819,-1,0.106396,0,4,0,2,3,DIV,3,2,Telegraph,Rd,1576806,14.989,15.095,0,2.553508,5,5 +21842,1,0.129251,4,0,0,2,3,DIV,3,2,Telegraph,Rd,4700038,21.85,21.979,0,3.102024,5,5 +11818,-1,0.157013,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,15.095,15.252,0,3.768322,5,5 +21913,1,0.154771,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,21.979,22.134,0,3.714506,5,5 +18082,0,0.022352,2,2,0,2,3,,3,1,McNichols,Rd,1680701,13.997,14.02,0,0.536453,5,5 +18587,0,0.156295,3,3,0,2,3,,3,1,McNichols,Rd,1680701,14.381,14.537,0,3.75108,5,5 +18380,0,0.026954,3,3,0,2,3,,3,1,McNichols,Rd,1680701,14.537,14.564,0,0.646898,5,5 +11813,-1,0.289487,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,16.3,16.59,0,6.94769,5,5 +16608,-1,0.612039,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,2.552,3.164,0,14.688935,5,5 +16714,1,0.602044,4,0,0,2,3,DIV,3,1,Grand River,Ave,1600604,2.658,3.26,0,14.449067,5,5 +18636,0,0.247857,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,8.205,8.452,0,5.948576,5,5 +21724,1,0.302465,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,23.173,23.475,0,7.259157,5,5 +24374,0,0.310628,1,1,0,2,5,,3,1,Berg,Rd,4710137,0.325,0.636,0,7.455072,8,4.5 +32661,0,0.63984,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,15.356153,0.15,4 +11815,-1,0.183627,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,16.092,16.276,0,4.407044,5,5 +21239,1,0.172221,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,22.977,23.149,0,4.133314,5,5 +24379,1,0.15044,2,0,0,1,3,RSF,3,1,Short,St,4710127,0,0.15,0,,5,5 +16718,1,0.025723,4,0,0,2,3,DIV,3,1,Grand River,Ave,1600604,2.545,2.57,0,0.617345,5,5 +21992,1,0.023683,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,23.149,23.173,0,0.568385,5,5 +24377,1,0.077371,1,0,0,1,3,RSF,3,1,Short/Grand River,TURN,4710127,0.15,0.228,0,,5,5 +16716,1,0.087777,4,0,0,2,3,DIV,3,1,Grand River,Ave,1600604,2.57,2.658,0,2.106647,5,5 +16633,-1,0.027024,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,2.525,2.552,0,0.648582,5,5 +11814,-1,0.024163,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,16.276,16.3,0,0.57992,5,5 +16637,-1,0.025859,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,2.499,2.525,0,0.620613,5,5 +19204,0,0.176198,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,7.956,8.132,0,4.228753,5,5 +17590,0,0.022006,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,7.934,7.956,0,0.528141,5,5 +18897,0,0.072404,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,8.132,8.205,0,1.737702,5,5 +24376,0,0.325143,1,1,0,2,5,,3,1,Berg,Rd,4710137,0,0.325,0,7.803434,8,4.5 +32660,0,0.152623,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.66296,0.15,4 +32689,0,0.289416,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.945994,0.15,4 +16606,-1,0.062687,0,4,0,2,3,DIV,3,1,Grand River,Ave,1600605,3.164,3.226,0,1.504498,5,5 +12944,0,0.007097,3,3,0,2,3,,3,1,Grand River,Ave,1577408,0,0.007,0,0.170329,5,5 +1964,-1,0.094407,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.076,2.17,0,2.265756,5,5 +3642,1,0.158568,1,0,0,1,3,RSF,4,3,S US 24/W M 102,RAMP,688303,0,0.159,0,,5,5 +3747,0,0.430143,1,1,1,2,4,,4,3,9 Mile,Rd,684404,1.56,1.99,0,10.323431,4.5,4.5 +4504,-1,0.639108,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,0.089,0.728,0,15.338589,5,5 +4707,1,0.721582,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,0.081,0.803,0,17.317976,5,5 +11896,1,0.132487,1,0,0,1,3,RSF,3,1,E M 102/S US 24,RAMP,1579809,0,0.133,0,,5,5 +19726,1,0.094969,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.06,2.155,0,2.279256,5,5 +21022,0,0.493241,1,1,0,2,5,,3,3,Berg,Rd,4410215,0.519,1.012,0,11.837776,8,4.5 +26226,0,0.513907,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.33377,0.15,4 +27404,0,0.581661,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.959854,0.15,4 +27405,0,0.504258,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.102186,0.15,4 +27406,0,0.529439,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.706535,0.15,4 +27740,0,0.586799,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.083168,0.15,4 +27742,0,0.549277,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.182645,0.15,4 +28073,0,0.527974,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.671383,0.15,4 +29679,0,0.533789,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.810941,0.15,4 +32533,0,0.253662,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.087892,0.15,4 +32675,0,0.231954,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.5669,0.15,4 +881,-1,0.069913,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,1.662,1.732,0,1.677914,5,5 +19729,1,0.18387,4,0,0,2,3,DIV,3,2,8 Mile,Rd,1817406,1.525,1.709,0,4.412868,5,5 +27407,0,0.515563,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.373521,0.15,4 +32674,0,0.531656,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.75975,0.15,4 +32532,0,0.480114,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.522743,0.15,4 +19727,1,0.21813,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,1.841,2.06,0,5.235127,5,5 +32676,0,0.491421,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.794105,0.15,4 +19728,1,0.132666,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,1.709,1.841,0,3.183996,5,5 +412,-1,0.344117,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,1.732,2.076,0,8.258807,5,5 +30250,0,0.492772,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.826529,0.15,4 +3748,0,0.167687,1,1,1,2,4,,4,3,9 Mile,Rd,684404,1.392,1.56,0,4.024485,4.5,4.5 +26229,0,0.500979,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.023506,0.15,4 +1906,-1,0.312621,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.335,2.648,0,7.502903,5,5 +3899,-1,0.009053,0,4,0,2,3,DIV,3,1,Telegraph,Rd,710009,0,0.009,0,0.217268,5,5 +4715,1,0.009103,4,0,0,2,3,DIV,3,1,Telegraph,Rd,710106,0,0.009,0,0.218467,5,5 +13126,1,0.179873,1,0,0,1,3,RSF,3,1,N US 24/E M 102,RAMP,1580301,0,0.18,0,,5,5 +13127,1,0.126981,1,0,0,1,3,RSF,3,1,E M 102/N US 24,RAMP,1580302,0,0.127,0,,5,5 +19723,1,0.282285,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.327,2.609,0,6.774849,5,5 +19725,1,0.077781,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.155,2.232,0,1.866754,5,5 +24371,0,0.465852,1,1,0,2,5,,3,1,Berg,Rd,4710137,1.124,1.59,0,11.180457,8,4.5 +32670,0,0.265898,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.381542,0.15,4 +33577,0,0.527625,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.662996,0.15,4 +33578,0,0.49918,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.980309,0.15,4 +11811,-1,0.384655,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,17.089,17.473,0,9.231725,5,5 +21451,1,0.399784,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,23.951,24.35,0,9.594827,5,5 +32671,0,0.242895,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.829479,0.15,4 +11810,-1,0.050332,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,17.473,17.524,0,1.207965,5,5 +13092,1,0.122324,1,0,0,1,3,RSF,3,1,S US 24/E M 102,RAMP,1579810,0,0.122,0,,5,5 +21344,1,0.06308,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,24.35,24.413,0,1.513918,5,5 +21031,1,0.021611,4,0,0,2,3,DIV,3,1,Telegraph,Rd,4700038,24.413,24.435,0,0.518668,5,5 +11809,-1,0.026742,0,4,0,2,3,DIV,3,1,Telegraph,Rd,1576806,17.524,17.55,0,0.641818,5,5 +19724,1,0.094468,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.232,2.327,0,2.267228,5,5 +4879,1,0.122092,1,0,0,1,3,RSF,3,3,W M 102/N US 24,RAMP,710001,0,0.122,0,,5,5 +4883,1,0.088689,1,0,0,1,3,RSF,3,3,N US 24/W M 102,RAMP,709910,0,0.089,0,,5,5 +1448,-1,0.089494,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.17,2.259,0,2.147855,5,5 +3728,1,0.122803,1,0,0,1,3,RSF,4,3,W M 102/S US 24,RAMP,684602,0,0.123,0,,5,5 +4519,-1,0.033644,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,0.055,0.089,0,0.80746,5,5 +5033,1,0.026672,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,0.055,0.081,0,0.640121,5,5 +34179,-1,0.213649,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,3.483,3.697,0,5.127582,6,4.5 +4584,-1,0.046106,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,0.009,0.055,0,1.106553,5,5 +5042,1,0.045438,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,0.009,0.055,0,1.090514,5,5 +345,-1,0.075468,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.259,2.335,0,1.811232,5,5 +19721,1,0.163171,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.696,2.859,0,3.916113,5,5 +21023,0,0.518998,1,1,0,2,5,,3,3,Berg,Rd,4410215,0,0.519,0,12.455947,8,4.5 +1388,-1,0.065242,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,2.648,2.713,0,1.565811,5,5 +19722,1,0.087084,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,2.609,2.696,0,2.090024,5,5 +27411,0,0.106216,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.549193,0.15,4 +3744,0,0.358012,2,2,1,2,4,,3,3,9 Mile,Rd,684404,2.268,2.626,0,8.592278,6,4.5 +4956,-1,0.372022,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,1.016,1.388,0,8.928529,5,5 +5028,1,0.219136,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,1.017,1.236,0,5.259274,5,5 +21021,0,0.571418,1,1,0,2,5,,3,3,Berg,Rd,4410215,1.012,1.583,0,13.714033,8,4.5 +26225,0,0.306078,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.345864,0.15,4 +27637,0,0.491058,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.785393,0.15,4 +27743,0,0.535553,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.85327,0.15,4 +29892,0,0.537796,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.907093,0.15,4 +3745,0,0.257483,2,2,1,2,4,,3,3,9 Mile,Rd,684404,2.011,2.268,0,6.179581,6,4.5 +4011,1,0.214447,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,0.803,1.017,0,5.146722,5,5 +4278,-1,0.288157,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,0.728,1.016,0,6.915778,5,5 +3746,0,0.021074,2,2,0,2,4,,3,3,9 Mile,Rd,684404,1.99,2.011,0,0.505774,6,4.5 +11959,0,0.33388,1,1,0,2,5,,3,1,Bentler,St,1582209,0.018,0.352,0,8.013114,8,4.5 +12867,0,0.196507,2,2,0,2,3,,3,1,Grand River,Ave,1577408,1.033,1.229,0,4.716166,5,5 +13155,0,0.430606,2,2,0,2,4,,3,1,Lahser,Rd,1582205,2.487,2.917,0,10.334555,6,4.5 +15257,0,0.281834,1,1,0,2,3,,3,1,Evergreen,Rd,1596908,7.468,7.75,0,6.764008,5,5 +16739,0,0.316331,1,1,0,2,5,,3,1,Pickford,St,1616109,0.252,0.569,0,7.591941,8,4.5 +18588,1,0.231726,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.453,15.685,0,5.561419,5,5 +19097,0,0.218307,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,9.441,9.659,0,5.239371,5,5 +23731,-1,0.231731,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,0.889,1.12,0,5.561538,5,5 +30555,0,0.496919,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.926058,0.15,4 +32686,0,0.331405,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.95373,0.15,4 +32693,0,0.188012,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.51228,0.15,4 +33921,0,0.379038,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.096901,0.15,4 +33922,0,0.372923,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.950159,0.15,4 +33923,0,0.172134,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.131211,0.15,4 +33924,0,0.50065,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.015611,0.15,4 +33925,0,0.367523,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.820556,0.15,4 +33926,0,0.377411,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.057875,0.15,4 +12657,0,0.257002,1,1,0,2,4,,3,1,Lahser,Rd,1582205,1.764,2.021,0,6.16804,6,4.5 +12890,0,0.247528,3,3,0,2,3,,3,1,Grand River,Ave,1577408,0.451,0.699,0,5.940683,5,5 +12929,0,0.500758,1,1,0,2,4,,3,1,Burt,Rd,1582303,3.225,3.726,0,12.0182,6,4.5 +17549,1,0.226712,3,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.017,15.244,0,5.441088,5,5 +23734,-1,0.210428,0,3,0,2,3,DV2,3,1,McNichols,Rd,4707964,0.452,0.663,0,5.050276,5,5 +32684,0,0.495228,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.88548,0.15,4 +12928,0,0.12119,1,1,0,2,4,,3,1,Lahser,Rd,1582205,1.643,1.764,0,2.908572,6,4.5 +12116,0,0.246642,1,1,0,2,5,,3,1,Redford,St,1582204,0.01,0.256,0,5.919407,8,4.5 +12494,0,0.235457,1,1,0,2,4,,3,1,Lahser,Rd,1582205,2.021,2.256,0,5.650964,6,4.5 +17873,1,0.249355,3,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,14.768,15.017,0,5.984522,5,5 +23735,-1,0.245768,0,3,0,2,3,DV2,3,1,McNichols,Rd,4707964,0.207,0.452,0,5.898422,5,5 +11957,0,0.009548,1,1,0,2,5,,3,1,Redford,St,1582204,0,0.01,0,0.229163,8,4.5 +12036,0,0.121291,1,1,0,2,4,,3,1,Lahser,Rd,1582205,2.266,2.387,0,2.910974,6,4.5 +12214,0,0.009536,1,1,0,2,4,,3,1,Lahser,Rd,1582205,2.256,2.266,0,0.228867,6,4.5 +11645,0,0.084046,1,1,0,2,5,,3,1,Redford,St,1582204,0.256,0.34,0,2.017093,8,4.5 +12891,0,0.049971,3,3,0,2,3,,3,1,Grand River,Ave,1577408,0.401,0.451,0,1.199307,5,5 +13324,0,0.09973,2,2,0,2,4,,3,1,Lahser,Rd,1582205,2.387,2.487,0,2.393526,6,4.5 +12570,0,0.121582,1,1,0,2,5,,3,1,Trinity,St,1582302,1.858,1.98,0,2.91796,8,4.5 +12886,0,0.245893,2,2,0,2,3,,3,1,Grand River,Ave,1577408,0.718,0.964,0,5.901423,5,5 +18845,1,0.178604,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.275,15.453,0,4.286495,5,5 +23732,-1,0.190616,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,0.698,0.889,0,4.57479,5,5 +12889,0,0.019306,3,3,0,2,3,,3,1,Grand River,Ave,1577408,0.699,0.718,0,0.46334,5,5 +23733,-1,0.035199,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,0.663,0.698,0,0.844786,5,5 +19151,1,0.030893,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.244,15.275,0,0.741432,5,5 +11958,0,0.017844,1,1,0,2,5,,3,1,Bentler,St,1582209,0,0.018,0,0.428259,8,4.5 +12761,0,0.078566,1,1,0,2,4,,3,1,Burt,Rd,1582303,3.726,3.804,0,1.88558,6,4.5 +32683,0,0.008608,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.206596,0.15,4 +12869,0,0.068908,2,2,0,2,3,,3,1,Grand River,Ave,1577408,0.964,1.033,0,1.653802,5,5 +12571,0,0.011119,1,1,0,2,5,,3,1,Trinity,St,1582302,1.98,1.991,0,0.266845,8,4.5 +12658,0,0.258922,2,2,0,2,4,,3,1,Lahser,Rd,1582205,3.001,3.26,0,6.214126,6,4.5 +13016,0,0.15145,1,1,0,2,5,,3,1,Bentler,St,1582209,0.667,0.818,0,3.634811,8,4.5 +17038,0,0.252499,1,1,0,2,5,,3,1,Pickford,St,1616109,0,0.252,0,6.059967,8,4.5 +17792,0,0.249646,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,8.941,9.191,0,5.991497,5,5 +12843,0,0.08353,2,2,0,2,4,,3,1,Lahser,Rd,1582205,2.917,3.001,0,2.004717,6,4.5 +18114,0,0.245348,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,8.696,8.941,0,5.888351,5,5 +13325,0,0.31515,1,1,0,2,5,,3,1,Bentler,St,1582209,0.352,0.667,0,7.563592,8,4.5 +32687,0,0.250137,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.003294,0.15,4 +17591,0,0.249903,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,9.191,9.441,0,5.997666,5,5 +33928,0,0.250427,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.010248,0.15,4 +12844,0,0.194859,1,1,0,2,5,,3,1,Bentler,St,1582209,0.818,1.013,0,4.676618,8,4.5 +32691,0,0.174263,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.182305,0.15,4 +12659,1,0.374141,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,0.826,1.2,0,8.97938,6,4.5 +12865,0,0.376029,2,2,0,2,3,,3,1,Grand River,Ave,1577408,1.229,1.605,0,9.024686,5,5 +14554,0,0.447623,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,7.009,7.457,0,10.742944,5,5 +18071,1,0.208867,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.794,16.003,0,5.012805,5,5 +23360,-1,0.416986,0,2,0,2,4,DV2,3,1,Outer,Dr,4704597,0.457,0.874,0,10.007653,6,4.5 +23729,-1,0.210315,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,1.228,1.438,0,5.047554,5,5 +18258,1,0.109497,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,15.685,15.794,0,2.627936,5,5 +23730,-1,0.107896,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,1.12,1.228,0,2.589503,5,5 +12037,1,0.245093,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,0.328,0.573,0,5.882237,6,4.5 +12860,0,0.302743,2,2,1,2,3,,3,1,Grand River,Ave,1577408,1.605,1.908,0,7.265833,5,5 +14974,0,0.418198,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,6.591,7.009,0,10.036743,5,5 +23385,-1,0.250467,0,2,0,2,4,DV2,3,1,Outer,Dr,4704597,0,0.25,0,6.011202,6,4.5 +12332,0,0.02202,2,2,0,2,4,,3,1,Outer,Dr,1582410,0.306,0.328,0,0.528472,6,4.5 +11648,1,0.195418,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,0.573,0.768,0,4.69004,6,4.5 +23384,-1,0.194971,0,2,0,2,4,DV2,3,1,Outer,Dr,4704597,0.25,0.445,0,4.679312,6,4.5 +12859,0,0.007925,2,2,1,2,3,,3,1,Grand River,Ave,1577408,1.908,1.916,0,0.190203,5,5 +12930,1,0.045661,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,0.78,0.826,0,1.095866,6,4.5 +12216,1,0.008924,1,0,0,2,5,DV2,3,1,Bretton,Dr,1582509,0.253,0.261,0,0.214176,8,4.5 +22692,-1,0.008805,0,1,0,2,5,DV2,3,1,Bretton,Dr,4704882,0.226,0.235,0,0.211311,8,4.5 +23361,-1,0.011471,0,2,0,2,4,DV2,3,1,Outer,Dr,4704597,0.445,0.457,0,0.275314,6,4.5 +13156,1,0.011952,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,0.768,0.78,0,0.286843,6,4.5 +17550,0,0.262616,2,2,0,2,3,,3,1,McNichols,Rd,1680701,16.058,16.321,0,6.302781,5,5 +15530,0,0.0114,1,1,0,2,3,,3,1,Evergreen,Rd,1596908,7.457,7.468,0,0.273608,5,5 +17740,1,0.055372,2,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,16.003,16.058,0,1.328935,5,5 +23728,-1,0.055248,0,2,0,2,3,DV2,3,1,McNichols,Rd,4707964,1.438,1.494,0,1.325951,5,5 +12497,1,0.193252,2,0,0,2,4,DV2,3,1,Outer,Dr,1582410,1.2,1.393,0,4.638056,6,4.5 +23358,-1,0.195461,0,2,0,2,4,DV2,3,1,Outer,Dr,4704597,0.874,1.069,0,4.691067,6,4.5 +19055,0,0.013504,2,2,0,2,3,,3,1,McNichols,Rd,1680701,16.321,16.335,0,0.324092,5,5 +14909,0,0.295945,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,8.462,8.758,0,7.102685,5,5 +15398,0,0.184398,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,8.11,8.295,0,4.425553,5,5 +16472,0,0.43341,1,1,0,2,5,,3,1,Pickford,St,1616109,0.569,1.002,0,10.401833,8,4.5 +18898,0,0.275957,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,9.659,9.935,0,6.622978,5,5 +15040,0,0.214295,1,1,0,2,3,,3,1,Evergreen,Rd,1596908,7.75,7.964,0,5.143088,5,5 +15686,0,0.145987,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,7.964,8.11,0,3.503678,5,5 +15149,0,0.167165,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,8.295,8.462,0,4.011955,5,5 +262,-1,0.512933,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,3.593,4.106,0,12.310387,5,5 +2971,0,0.52114,1,1,1,2,4,,3,3,Evergreen,Rd,666003,0.023,0.544,0,12.507355,6,4.5 +3713,0,0.142398,1,1,1,2,4,,3,3,Lahser,Rd,685510,0.447,0.589,0,3.417546,6,4.5 +3740,0,0.393914,2,2,0,2,4,,3,3,9 Mile,Rd,684404,3.582,3.976,0,9.453941,6,4.5 +19714,1,0.249484,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,3.685,3.934,0,5.987622,5,5 +26199,0,0.374937,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.998482,0.15,4 +27414,0,0.596399,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.313568,0.15,4 +27428,0,0.418865,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.052756,0.15,4 +27462,0,0.433493,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.403827,0.15,4 +29891,0,0.543228,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.037473,0.15,4 +33710,0,0.250094,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.002249,0.15,4 +739,-1,0.387297,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,3.206,3.593,0,9.295125,5,5 +12215,0,0.475098,2,2,0,2,4,,3,1,Lahser,Rd,1582205,3.759,4.234,0,11.402354,6,4.5 +16412,0,0.477668,1,1,0,2,5,,3,1,Burt,Rd,1600904,0.851,1.328,0,11.464022,8,4.5 +19718,1,0.434351,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,3.188,3.622,0,10.424413,5,5 +29491,0,0.245458,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.890995,0.15,4 +31339,0,0.518057,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.433372,0.15,4 +32669,0,0.524748,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.593941,0.15,4 +32672,0,0.500724,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.017376,0.15,4 +33576,0,0.248281,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.958735,0.15,4 +32668,0,0.244262,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.862288,0.15,4 +1178,-1,0.203573,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,3.003,3.206,0,4.885757,5,5 +40442,-1,0.085623,0,2,0,2,4,DIV,3,3,Lahser,Rd,4463310,0,0.086,0,2.054942,6,4.5 +40444,1,0.23839,2,0,0,2,4,DIV,3,3,Lahser,Rd,685510,0.17,0.408,0,5.72136,6,4.5 +3717,0,0.011607,2,2,0,2,4,,3,1,Lahser,Rd,685510,0,0.012,0,0.278574,6,4.5 +3716,0,0.010909,2,2,0,2,4,,3,3,Lahser,Rd,685510,0.012,0.023,0,0.261809,6,4.5 +32666,0,0.247266,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.934381,0.15,4 +19717,1,0.062714,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,3.622,3.685,0,1.505147,5,5 +3712,0,0.312565,1,1,1,2,4,,3,3,Lahser,Rd,685510,1.011,1.323,0,7.501557,6,4.5 +3742,0,0.506601,2,2,0,2,4,,3,3,9 Mile,Rd,684404,2.94,3.446,0,12.158423,6,4.5 +26223,0,0.518914,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.453927,0.15,4 +27415,0,0.547926,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.150234,0.15,4 +3711,0,0.100209,1,1,1,2,4,,3,3,Lahser,Rd,685510,1.323,1.423,0,2.405027,6,4.5 +27412,0,0.244308,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.863396,0.15,4 +3741,0,0.135719,2,2,0,2,4,,3,3,9 Mile,Rd,684404,3.446,3.582,0,3.257257,6,4.5 +15143,0,0.236445,2,2,0,2,3,,3,1,Evergreen,Rd,1596908,9.205,9.441,0,5.674686,5,5 +32667,0,0.482862,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.58868,0.15,4 +33708,0,0.529868,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.716828,0.15,4 +19713,1,0.24817,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,3.934,4.182,0,5.95608,5,5 +1828,-1,0.094587,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,4.106,4.201,0,2.27008,5,5 +2730,0,0.011199,2,2,0,2,3,,3,1,Evergreen,Rd,666003,0,0.011,0,0.268767,5,5 +3269,0,0.011389,2,2,0,2,3,,3,3,Evergreen,Rd,666003,0.011,0.023,0,0.273336,5,5 +2657,0,0.505729,1,1,1,2,4,,3,3,Evergreen,Rd,666003,1.003,1.509,0,12.137485,6,4.5 +3739,0,0.125599,2,2,0,2,4,,3,3,9 Mile,Rd,684404,3.976,4.101,0,3.014373,6,4.5 +26200,0,0.357602,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.582439,0.15,4 +26227,0,0.372781,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.946736,0.15,4 +2924,0,0.276224,1,1,1,2,4,,3,3,Evergreen,Rd,666003,0.727,1.003,0,6.629369,6,4.5 +3233,0,0.157487,1,1,1,2,4,,3,3,Evergreen,Rd,666003,0.57,0.727,0,3.7797,6,4.5 +2713,0,0.025964,1,1,1,2,4,,3,3,Evergreen,Rd,666003,0.544,0.57,0,0.623134,6,4.5 +26197,0,0.200422,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.81013,0.15,4 +10835,1,0.604528,3,0,0,1,1,,3,2,E I 94,,1576405,21.924,22.529,0,,0.58,7 +10865,1,1.348319,3,0,0,1,1,,3,2,E I 94,,1576405,17.558,18.906,0,,0.58,7 +11750,0,0.176354,3,3,1,2,3,,3,2,Michigan,Ave,1577103,1.378,1.554,0,4.232505,5,5 +11763,1,0.343626,1,0,0,1,1,RON,3,2,US 12/E I 94,RAMP,1577102,0,0.344,0,,1.09,4 +11765,1,0.295773,2,0,0,1,1,ROF,3,2,E I 94/US 12 & Wyoming,RAMP,1577010,0,0.296,0,,2.24,5 +11766,0,0.3519,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,4.256,4.608,0,8.445602,6,4.5 +11799,1,0.660749,2,0,0,1,1,RFS,3,2,E I 94/N M 39,RAMP,1576907,0,0.661,0,,0.22,6 +12348,0,0.196947,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.281,7.478,0,4.726717,6,4.5 +13128,1,0.323476,2,0,0,1,1,RFF,3,2,S M 39/I 94,RAMP,1580306,0,0.323,0,,0.58,7 +14008,-1,1.181505,0,3,0,1,1,,3,2,W I 94,,1588802,17.659,18.84,0,,0.58,7 +14442,-1,0.67287,0,3,0,1,1,,2,2,W I 94,,1588802,21.544,22.216,0,,0.32,8.5 +14741,0,0.221951,2,2,0,2,4,,3,2,Miller,Rd,1589801,2.33,2.552,0,5.326819,6,4.5 +14830,-1,0.589683,0,3,0,2,3,DIV,3,1,Fort,St,1592106,14,14.589,0,14.152383,5,5 +14952,-1,0.583353,0,3,0,1,1,,3,2,S I 75,,1595106,15.365,15.948,0,,0.58,7 +15055,0,0.469248,1,1,0,2,5,,3,2,Emmons,Blvd,1593310,1.518,1.987,0,11.261951,8,4.5 +15093,0,0.622823,3,3,1,2,3,,3,2,Ford,Rd,1595510,19.351,19.973,0,14.947763,5,5 +15151,0,0.728901,2,2,1,2,4,,3,2,Allen,Rd,1594605,0.435,1.164,0,17.493615,6,4.5 +15229,1,0.744628,3,0,0,1,1,,3,1,N I 75,,1592010,15.324,16.069,0,,0.58,7 +15287,-1,0.409981,0,3,0,1,2,,3,2,S M 39,,1592407,2.765,3.175,0,,0.58,7 +15371,-1,0.202304,0,3,0,2,3,DIV,3,1,Fort,St,1592106,13.798,14,0,4.855307,5,5 +15470,1,0.315973,3,0,0,2,3,DIV,3,1,Fort,St,1592105,14.439,14.755,0,7.583354,5,5 +15482,1,0.189618,4,0,0,1,2,,3,2,N M 39,,1592408,2.988,3.177,0,,0.58,7 +15693,-1,0.07338,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0,0.073,0,1.761121,8,4.5 +15747,1,0.217093,3,0,0,2,3,DIV,3,1,Fort,St,1592105,13.928,14.146,0,5.210242,5,5 +17430,0,0.31253,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,1.106,1.419,0,7.50071,5,5 +17455,0,0.441087,1,1,0,2,5,,3,2,River,Dr,1660207,0.692,1.133,0,10.586091,8,4.5 +17791,1,0.420219,2,0,0,2,5,,3,2,Van Born/N M 39 Service Drive,,1670203,10.265,10.685,0,10.085254,8,4.5 +17889,0,0.211478,2,2,1,2,3,,3,2,Dix,Ave,1688707,7.922,8.133,0,5.075482,5,5 +18346,0,0.205777,1,1,0,2,5,,3,2,Marion Industrial,Hwy,1708204,0.961,1.167,0,4.938644,8,4.5 +19547,1,0.360139,1,0,0,1,1,RFF,3,2,W I 94/N M 39,RAMP,1869601,0.186,0.546,0,,0.58,7 +20187,0,0.292825,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,16.767,17.06,0,7.0278,5,5 +22845,0,0.231658,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0.546,0.777,0,5.559794,5,5 +23963,0,0.546376,1,1,0,2,4,,3,1,Mellon,St,4706636,0.055,0.601,0,13.113022,6,4.5 +24338,0,0.497167,2,2,1,2,3,,3,2,Southfield,Rd,4710185,0.409,0.906,0,11.932016,5,5 +24362,0,0.486779,1,1,0,2,5,,3,2,Goddard,Rd,5491821,0,0.487,0,11.682707,8,4.5 +24394,1,0.305895,3,0,0,2,3,DV2,3,1,Outer,Dr,4710093,1.621,1.927,0,7.341489,5,5 +24421,1,0.300518,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,0.38,0.68,0,7.212437,5,5 +24441,1,0.296835,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,2.612,2.908,0,7.124035,5,5 +24457,1,0.305656,3,0,0,2,3,DV2,3,1,Outer,Dr,4710092,1.365,1.67,0,7.335738,5,5 +31942,0,0.677092,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.250197,0.15,4 +31946,0,0.443638,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.647316,0.15,4 +31957,0,0.371149,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.907574,0.15,4 +31958,0,0.345586,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.294058,0.15,4 +31963,0,0.478767,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.490415,0.15,4 +32401,0,0.367154,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.811696,0.15,4 +32407,0,0.61515,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.763607,0.15,4 +32427,0,0.599238,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.381709,0.15,4 +32428,0,0.633454,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.202901,0.15,4 +32741,0,0.427276,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.254616,0.15,4 +32748,0,0.881702,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,21.160851,0.15,4 +32776,0,0.593922,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.254131,0.15,4 +12058,0,0.322339,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,5.733,6.056,0,7.736143,8,4.5 +12870,0,0.31651,2,2,1,2,3,,3,2,Northline,Rd,1578505,5.489,5.806,0,7.596236,5,5 +14777,0,0.19397,1,1,0,2,5,,3,2,Champaign,Rd,1592404,0.823,1.017,0,4.655283,8,4.5 +14825,1,0.490655,3,0,0,1,1,,3,2,N I 75,,1592010,12.78,13.27,0,,0.58,7 +14827,1,2.023959,3,0,0,1,1,,3,2,N I 75,,1592010,10.756,12.78,0,,0.58,7 +15176,0,0.271297,1,1,0,2,4,,3,2,Allen,Rd,1594602,0.537,0.808,0,6.511127,6,4.5 +15192,1,0.362733,1,0,0,1,1,RON,3,2,Dix/S I 75,RAMP,1594504,0,0.363,0,,1.09,4 +15233,1,0.267143,4,0,0,2,3,DIV,3,2,N M 39,,1592408,1.009,1.276,0,6.411422,5,5 +15234,1,0.151764,1,0,0,1,1,ROF,3,2,N I 75/S Dix,RAMP,1594410,0,0.152,0,,2.24,5 +15295,-1,2.025556,0,3,0,1,1,,3,2,S I 75,,1595106,10.756,12.781,0,,0.58,7 +15403,-1,0.427914,0,3,0,2,3,DIV,3,2,Fort,St,1592106,11.515,11.943,0,10.269931,5,5 +15432,-1,0.501957,0,3,0,1,1,,3,2,S I 75,,1595106,12.781,13.283,0,,0.58,7 +15580,-1,0.266998,0,4,0,2,3,DIV,3,2,S M 39,,1592407,1.017,1.284,0,6.407951,5,5 +15756,1,0.50009,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.932,12.432,0,12.002163,5,5 +17480,0,0.549864,1,1,0,2,4,,3,2,Moran,Rd,1660106,0,0.55,0,13.196737,6,4.5 +17622,0,0.341358,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0.419,0.76,0,8.192596,5,5 +18364,0,0.142132,1,1,0,2,5,,3,2,Reeck,Rd,1662707,1.874,2.016,0,3.411158,8,4.5 +18381,0,0.370098,3,3,1,2,3,,3,2,Dix,Ave,1688707,5.253,5.623,0,8.882348,5,5 +18979,0,0.393585,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,3.369,3.763,0,9.446047,5,5 +24350,0,0.157118,1,1,0,2,5,,3,2,London,Ave,4710165,0.272,0.429,0,3.770831,8,4.5 +24360,0,0.166255,1,1,0,2,5,,3,2,Superior,Ave,4711367,0.487,0.653,0,3.990122,8,4.5 +30808,0,0.304691,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.312592,0.15,4 +30813,0,0.375406,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.009737,0.15,4 +30821,0,0.165503,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.972077,0.15,4 +30824,0,0.171251,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.110029,0.15,4 +30825,0,0.423086,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.15406,0.15,4 +30827,0,0.35997,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.639282,0.15,4 +31007,0,0.516834,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.404016,0.15,4 +31956,0,0.551038,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.224905,0.15,4 +31970,0,0.380882,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.141167,0.15,4 +31972,0,0.161893,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.885438,0.15,4 +31973,0,0.378038,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.072922,0.15,4 +33738,0,0.55844,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.402561,0.15,4 +33739,0,0.648384,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.561223,0.15,4 +12440,0,0.578188,2,2,1,2,4,,3,2,Goddard,Rd,1578601,4.518,5.096,0,13.876506,6,4.5 +12883,1,0.266707,2,0,0,2,3,DIV,3,2,Northline,Rd,1578505,4.581,4.848,0,6.400979,5,5 +18178,0,0.338381,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,1.841,2.18,0,8.121141,8,4.5 +18366,0,0.493543,1,1,0,2,5,,3,2,Reeck,Rd,1662707,0.741,1.235,0,11.845024,8,4.5 +22530,0,0.499874,2,2,1,2,3,,3,2,Allen,Rd,4705756,8.321,8.82,0,11.996987,5,5 +23816,-1,0.138693,0,2,0,2,3,DIV,3,2,Northline,Rd,4707653,0,0.139,0,3.32864,5,5 +30785,0,0.485596,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.65431,0.15,4 +30828,0,0.595676,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.296214,0.15,4 +31964,0,0.293863,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.052708,0.15,4 +31974,0,0.44908,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.777932,0.15,4 +12946,0,0.175032,1,1,0,2,3,,3,2,Northline,Rd,1578505,4.269,4.444,0,4.200773,5,5 +15114,1,0.294549,1,0,0,1,1,ROF,3,2,S I 75/Northline,RAMP,1595205,0,0.294,0,,2.24,5 +15616,1,0.161797,1,0,0,1,1,RON,3,2,Northline/N I 75,RAMP,1592307,0,0.162,0,,1.09,4 +18153,1,0.679184,2,0,0,2,5,DV2,3,2,Prechter,Blvd,1665305,0,0.679,0,16.300422,8,4.5 +18829,0,0.741507,1,1,0,2,5,,3,2,Reeck,Rd,1662707,0,0.741,0,17.796162,8,4.5 +22813,0,0.499238,2,2,1,2,3,,3,2,Allen,Rd,4705756,7.822,8.321,0,11.981712,5,5 +23817,-1,0.668084,0,2,0,2,5,DV2,3,2,Prechter,Blvd,4707652,0,0.668,0,16.034008,8,4.5 +30784,0,0.240735,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.777632,0.15,4 +30816,0,0.373161,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.955862,0.15,4 +12961,0,0.158303,2,2,1,2,3,,3,2,Northline,Rd,1578505,3.996,4.155,0,3.799262,5,5 +14789,-1,0.385356,0,2,0,1,5,,3,2,Frontage,Rd,1592306,0,0.385,0,,8,4.5 +22747,0,0.18935,2,2,1,2,3,,3,2,Allen,Rd,4705756,7.387,7.576,0,4.544402,5,5 +30792,0,0.255259,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.126228,0.15,4 +23024,0,0.062573,2,2,1,2,3,,3,2,Allen,Rd,4705756,7.324,7.387,0,1.501751,5,5 +23091,0,0.190499,2,2,1,2,3,,3,2,Allen,Rd,4705756,7.631,7.822,0,4.571967,5,5 +23435,0,0.055382,2,2,1,2,3,,3,2,Allen,Rd,4705756,7.576,7.631,0,1.329159,5,5 +13349,0,0.11466,2,2,1,2,3,,3,2,Northline,Rd,1578505,4.155,4.269,0,2.751851,5,5 +13282,1,0.136791,2,0,0,2,3,DIV,3,2,Northline,Rd,1578505,4.444,4.581,0,3.282995,5,5 +23422,0,0.538536,1,1,0,2,5,,3,2,Reeck,Rd,4705866,0.999,1.537,0,12.924853,8,4.5 +31975,0,0.139401,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.345635,0.15,4 +12072,0,0.176127,2,2,1,2,4,,3,2,Goddard,Rd,1578601,4.342,4.518,0,4.227058,6,4.5 +14972,1,0.100321,1,0,0,2,4,,3,2,Allen,Rd,1594602,0.074,0.175,0,2.407703,6,4.5 +18576,0,0.093091,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0,0.093,0,2.234176,5,5 +18828,0,0.24739,1,1,0,2,5,,3,2,Reeck,Rd,1662707,1.235,1.482,0,5.937358,8,4.5 +31690,0,0.458162,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.995893,0.15,4 +33968,0,0.256706,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.160948,0.15,4 +13367,0,0.256507,2,2,1,2,4,,3,2,Goddard,Rd,1578601,3.989,4.246,0,6.15617,6,4.5 +15191,0,0.074399,2,2,1,2,3,,3,2,Pelham,Rd,1594602,0,0.074,0,1.785567,5,5 +12453,0,0.095656,2,2,1,2,4,,3,2,Goddard,Rd,1578601,4.246,4.342,0,2.295745,6,4.5 +14968,0,0.288114,1,1,0,2,4,,3,2,Allen,Rd,1594602,0.249,0.537,0,6.914736,6,4.5 +19047,0,0.283831,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0.135,0.419,0,6.811948,5,5 +31698,0,0.217131,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.211134,0.15,4 +15189,1,0.074313,1,0,0,2,4,,3,2,Allen,Rd,1594602,0.175,0.249,0,1.783521,6,4.5 +21460,1,0.026885,1,0,0,2,4,,3,2,Pelham/Allen Cutoff,,4700003,0,0.027,0,0.645244,6,4.5 +24488,-1,0.06712,0,1,0,2,4,,3,2,Allen,Rd,4708238,0,0.067,0,1.610889,6,4.5 +17641,0,0.042198,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0.093,0.135,0,1.012744,5,5 +18826,0,0.265001,1,1,0,2,5,,3,2,Reeck,Rd,1662707,1.609,1.874,0,6.360021,8,4.5 +31691,0,0.204256,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.902133,0.15,4 +18365,0,0.127187,1,1,0,2,5,,3,2,Reeck,Rd,1662707,1.482,1.609,0,3.05248,8,4.5 +30826,0,0.235762,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.658283,0.15,4 +13271,0,0.371204,2,2,1,2,3,,3,2,Northline,Rd,1578505,5.118,5.489,0,8.908899,5,5 +13279,0,0.109331,2,2,1,2,3,,3,2,Northline,Rd,1578505,4.848,4.957,0,2.623944,5,5 +18182,0,0.354721,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,1.151,1.506,0,8.513294,8,4.5 +30786,0,0.414135,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.939236,0.15,4 +31966,0,0.327393,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.857428,0.15,4 +33314,0,0.389057,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.33736,0.15,4 +12878,0,0.161469,2,2,1,2,3,,3,2,Northline,Rd,1578505,4.957,5.118,0,3.875256,5,5 +31965,0,0.372076,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.929821,0.15,4 +19173,0,0.196058,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,3.173,3.369,0,4.705389,5,5 +24220,0,0.134366,1,1,0,2,5,,3,2,Superior,Ave,4711367,0.353,0.487,0,3.224788,8,4.5 +18621,0,0.141884,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,1.01,1.151,0,3.405207,8,4.5 +18614,0,0.335488,1,1,0,2,5,,3,2,Ford Line,Rd,1665001,1.506,1.841,0,8.051711,8,4.5 +12061,0,0.413255,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,5.096,5.509,0,9.918123,8,4.5 +12439,0,0.224803,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,5.509,5.733,0,5.395265,8,4.5 +14224,-1,0.490266,0,3,0,1,1,,3,2,W I 94,,1588802,17.169,17.659,0,,0.58,7 +14751,-1,0.48968,0,4,0,2,3,DIV,3,2,S M 39,,1592407,1.964,2.454,0,11.752311,5,5 +15160,0,0.470141,1,1,0,2,5,,3,2,Park,Ave,1594603,1.253,1.723,0,11.283376,8,4.5 +15162,0,0.196654,2,2,0,2,4,,3,2,Allen,Rd,1594602,1.991,2.187,0,4.719689,6,4.5 +15226,1,0.519915,4,0,0,2,3,DIV,3,2,N M 39,,1592408,1.961,2.481,0,12.477962,5,5 +15309,0,0.136127,1,1,0,2,5,,3,2,Champaign,Rd,1592404,1.765,1.901,0,3.267039,8,4.5 +16818,0,0.451752,2,2,1,2,3,,3,2,Ecorse,Rd,5495384,13.385,13.836,0,10.842057,5,5 +18891,0,0.583067,1,1,0,2,5,,3,2,Moore,Ave,1657805,0.441,1.024,0,13.993609,8,4.5 +19548,1,0.185611,1,0,0,1,1,RFF,3,2,W I 94/M 39 & Pelham,RAMP,1869601,0,0.186,0,,0.58,7 +30818,0,0.513063,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.313518,0.15,4 +31967,0,0.408872,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.812925,0.15,4 +31968,0,0.442226,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.613419,0.15,4 +31971,0,0.416855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.004516,0.15,4 +31977,0,0.269796,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.475109,0.15,4 +32290,0,0.344553,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.269275,0.15,4 +32297,0,0.44622,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.709272,0.15,4 +14939,0,0.289775,2,2,0,2,4,,3,2,Allen,Rd,1594602,1.349,1.638,0,6.954598,6,4.5 +15170,0,0.246105,2,2,1,2,4,,3,2,Allen,Rd,1594602,0.857,1.103,0,5.906531,6,4.5 +18423,0,0.201481,1,1,0,2,5,,3,2,Moore,Ave,1657805,0.24,0.441,0,4.835555,8,4.5 +18506,0,0.339129,1,1,0,2,5,,3,2,Champaign,Rd,1653005,1.736,2.075,0,8.139092,8,4.5 +33737,0,0.558456,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.402953,0.15,4 +19033,0,0.166432,2,2,1,2,3,,3,2,Pelham,Rd,1652704,0.76,0.927,0,3.994359,5,5 +14951,0,0.048491,1,1,0,2,4,,3,2,Allen,Rd,1594602,0.808,0.857,0,1.16378,6,4.5 +32291,0,0.06563,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.575121,0.15,4 +18825,0,0.403249,1,1,0,2,5,,3,2,Reeck,Rd,1662707,2.016,2.419,0,9.677974,8,4.5 +14943,0,0.196996,2,2,1,2,4,,3,2,Allen,Rd,1594602,1.103,1.3,0,4.727896,6,4.5 +15165,0,0.049141,2,2,0,2,4,,3,2,Allen,Rd,1594602,1.3,1.349,0,1.179391,6,4.5 +14935,0,0.3292,2,2,0,2,4,,3,2,Allen,Rd,1594602,1.662,1.991,0,7.900792,6,4.5 +14775,0,0.151443,1,1,0,2,5,,3,2,Champaign,Rd,1592404,1.901,2.052,0,3.634626,8,4.5 +15164,0,0.023079,2,2,0,2,4,,3,2,Allen,Rd,1594602,1.638,1.662,0,0.553901,6,4.5 +11063,1,0.519331,3,0,0,1,1,,3,2,E I 94,,1576405,17.039,17.558,0,,0.58,7 +11802,1,0.125395,2,0,0,1,2,FCD,3,2,N M 39 CD,,1576906,0,0.125,0,,0.58,7 +11803,1,0.593298,2,0,0,1,1,RFS,3,2,S M 39/E I 94,RAMP,1576902,0,0.593,0,,0.22,6 +11805,1,0.375386,1,0,0,1,1,RFS,3,2,E I 94/S M 39,RAMP,1576901,0.576,0.951,0,,0.22,6 +12823,1,0.316056,2,0,0,1,1,RFF,3,2,W I 94/S M 39 & Pelham,RAMP,1580309,0,0.316,0,,0.58,7 +12824,1,0.342664,1,0,0,1,1,RFS,3,2,W I 94/S M 39,RAMP,1580309,0.316,0.659,0,,0.22,6 +14301,1,0.274186,1,0,0,1,2,ROF,3,2,N M 39/Van Born,RAMP,1589506,0,0.274,0,,2.24,5 +15224,1,0.477175,3,0,0,1,2,,3,2,N M 39,,1592408,2.511,2.988,0,,0.58,7 +15572,-1,0.221702,0,3,0,1,2,,3,2,S M 39,,1592407,2.544,2.765,0,,0.58,7 +18894,1,0.216818,1,0,0,2,5,DV2,3,2,Pinecrest,Dr,1656703,1.135,1.352,0,5.203627,8,4.5 +22695,-1,0.186067,0,1,0,2,5,DV2,3,2,Pinecrest,Dr,4704864,0.4,0.586,0,4.465613,8,4.5 +24297,1,0.353986,1,0,0,1,1,RFS,3,2,N M 39/W I 94,RAMP,4710283,0,0.354,0,,0.22,6 +32286,0,0.20793,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.990317,0.15,4 +32287,0,0.194345,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.664281,0.15,4 +32289,0,0.244747,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.873939,0.15,4 +11801,1,0.275323,1,0,0,1,2,FCD,3,2,N M 39 CD,,1576906,0.125,0.401,0,,0.58,7 +13129,1,0.300511,2,0,0,1,1,RFF,3,2,S M 39/W I 94,RAMP,1580306,0.323,0.624,0,,0.58,7 +14341,-1,0.364205,0,3,0,1,1,,3,2,W I 94,,1588802,16.805,17.169,0,,0.58,7 +18932,1,0.021189,2,0,0,2,5,,3,2,Van Born/N M 39 Service Drive,,1670203,10.244,10.265,0,0.508545,8,4.5 +17528,0,0.080708,2,2,1,2,3,,3,2,Van Born,Rd,1670203,10.163,10.244,0,1.936985,5,5 +14407,1,0.248983,1,0,0,1,2,RON,3,2,Van Born/S M 39,RAMP,1589504,0,0.249,0,,1.09,4 +11800,1,0.028233,2,0,0,1,2,FCD,3,2,N M 39 CD,,1576906,0.401,0.429,0,,0.58,7 +11797,1,0.394186,1,0,0,1,1,RFS,3,2,N M 39/E I 94,RAMP,1576908,0.037,0.431,0,,0.22,6 +15290,-1,0.04675,0,4,0,1,2,,3,2,S M 39,,1592407,2.497,2.544,0,,0.58,7 +15483,1,0.029969,4,0,0,1,2,,3,2,N M 39,,1592408,2.481,2.511,0,,0.58,7 +15577,-1,0.02386,0,4,0,2,3,DIV,3,2,S M 39,,1592407,2.454,2.478,0,0.572629,5,5 +15574,-1,0.01931,0,4,0,2,3,DIV,3,2,S M 39,,1592407,2.478,2.497,0,0.463437,5,5 +11804,1,0.056798,1,0,0,1,1,RFF,3,2,I 94/S M 39,RAMP,1576901,0.951,1.008,0,,0.58,7 +11798,1,0.037345,1,0,0,1,2,FCD,3,2,N M 39 CD,,1576908,0,0.037,0,,0.58,7 +11796,1,0.05571,1,0,0,1,1,RFF,3,2,M 39/E I 94,RAMP,1576908,0.431,0.487,0,,0.58,7 +15608,0,0.445471,1,1,0,2,5,,3,2,Champaign,Rd,1592404,1.017,1.462,0,10.691297,8,4.5 +18420,0,0.431314,1,1,0,2,5,,3,2,Moore,Ave,1657805,1.024,1.455,0,10.351544,8,4.5 +30822,0,0.219053,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.257261,0.15,4 +30829,0,0.332973,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.991344,0.15,4 +14932,0,0.332645,1,1,0,2,5,,3,2,Park,Ave,1594603,0.92,1.253,0,7.98347,8,4.5 +15606,0,0.302707,1,1,0,2,5,,3,2,Champaign,Rd,1592404,1.462,1.765,0,7.264959,8,4.5 +27019,0,0.443337,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.640086,0.15,4 +31969,0,0.143163,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.435916,0.15,4 +30823,0,0.280593,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.734225,0.15,4 +24351,0,0.113407,1,1,0,2,5,,3,2,London,Ave,4710165,0.159,0.272,0,2.721779,8,4.5 +24356,0,0.012453,1,1,0,2,5,,3,2,London,Ave,4710165,0.146,0.159,0,0.298882,8,4.5 +14926,0,0.029775,2,2,1,2,3,,3,2,Allen,Rd,1594605,0,0.03,0,0.714612,5,5 +15155,0,0.397599,2,2,1,2,4,,3,2,Allen,Rd,1594605,0.03,0.427,0,9.542365,6,4.5 +15485,1,0.312916,4,0,0,2,3,DIV,3,2,N M 39,,1592408,1.648,1.961,0,7.50999,5,5 +15579,-1,0.169926,0,4,0,2,3,DIV,3,2,S M 39,,1592407,1.5,1.67,0,4.078232,5,5 +30806,0,0.463777,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.130638,0.15,4 +30807,0,0.409208,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.820982,0.15,4 +14933,0,0.399233,2,2,1,2,3,,3,2,Allen,Rd,1594602,2.187,2.586,0,9.581598,5,5 +15293,-1,0.294646,0,4,0,2,3,DIV,3,2,S M 39,,1592407,1.67,1.964,0,7.071494,5,5 +19545,0,0.133369,2,2,1,2,4,,3,2,Roosevelt,,1869605,0,0.133,0,3.200858,6,4.5 +19544,0,0.152008,2,2,0,2,4,,3,2,Roosevelt,,1869605,0.133,0.285,0,3.648194,6,4.5 +19543,0,0.014853,2,2,0,2,3,,3,2,Roosevelt,,1869605,0.285,0.3,0,0.356482,5,5 +15161,0,0.011034,2,2,1,2,3,,3,2,Allen,Rd,1594602,2.586,2.597,0,0.264805,5,5 +15227,1,0.207961,4,0,0,2,3,DIV,3,2,N M 39,,1592408,1.44,1.648,0,4.991071,5,5 +15294,-1,0.21575,0,4,0,2,3,DIV,3,2,S M 39,,1592407,1.284,1.5,0,5.177996,5,5 +15487,1,0.164204,4,0,0,2,3,DIV,3,2,N M 39,,1592408,1.276,1.44,0,3.940901,5,5 +14922,0,0.007761,2,2,1,2,4,,3,2,Allen,Rd,1594605,0.427,0.435,0,0.186274,6,4.5 +12086,0,0.441217,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,6.778,7.219,0,10.589219,8,4.5 +12299,0,0.327703,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,6.424,6.752,0,7.864863,8,4.5 +13204,0,0.231013,2,2,0,2,3,,3,2,Northline,Rd,1578505,6.234,6.465,0,5.544321,5,5 +14942,1,0.302583,4,0,0,2,3,DIV,3,2,Fort,St,1592105,10.739,11.041,0,7.262002,5,5 +15057,0,0.326949,1,1,0,2,5,,3,2,Emmons,Ave,1593310,0.403,0.73,0,7.846767,8,4.5 +15700,-1,0.25252,0,4,0,2,3,DIV,3,2,Fort,St,1592106,10.641,10.894,0,6.060469,5,5 +17475,0,0.290349,1,1,0,2,5,,3,2,Moran,Ave,1660106,1.106,1.396,0,6.968382,8,4.5 +17897,0,0.406436,3,3,1,2,3,,3,2,Dix,Ave,1688707,4.124,4.531,0,9.754464,5,5 +31874,0,0.355457,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.530972,0.15,4 +31876,0,0.349632,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.391161,0.15,4 +31976,0,0.399055,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.577309,0.15,4 +31978,0,0.26976,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.474248,0.15,4 +31986,0,0.326432,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.834357,0.15,4 +32055,0,0.323985,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.775648,0.15,4 +32403,0,0.364972,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.759319,0.15,4 +32405,0,0.337503,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.100064,0.15,4 +13263,0,0.302172,2,2,1,2,3,,3,2,Northline,Rd,1578505,5.806,6.108,0,7.252117,5,5 +18403,0,0.055691,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,3.788,3.844,0,1.336581,5,5 +30772,0,0.322,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.727996,0.15,4 +31940,0,0.326242,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.829799,0.15,4 +32056,0,0.498067,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.953598,0.15,4 +18585,0,0.399752,1,1,1,2,4,,3,2,Trenton,Rd,1665008,1.538,1.938,0,9.594041,6,4.5 +24225,0,0.169231,1,1,0,2,5,,3,2,Superior,Ave,4711367,0.653,0.822,0,4.061532,8,4.5 +18156,1,0.06129,1,0,0,2,4,,3,2,Trenton,Rd,1665008,1.938,1.999,0,1.470964,6,4.5 +23815,-1,0.054186,0,1,0,2,4,,3,2,Trenton,Rd,4707669,0,0.054,0,1.300452,6,4.5 +18607,0,0.025733,3,3,1,2,3,,3,2,Dix Toledo,Hwy,1688707,3.763,3.788,0,0.617582,5,5 +18087,0,0.280306,3,3,1,2,3,,3,2,Dix,Ave,1688707,3.844,4.124,0,6.727347,5,5 +12864,0,0.126379,2,2,1,2,3,,3,2,Northline,Rd,1578505,6.108,6.234,0,3.033095,5,5 +31987,0,0.2555,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.132004,0.15,4 +11985,0,0.249899,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,6.174,6.424,0,5.997569,8,4.5 +15292,0,0.403155,1,1,0,2,5,,3,2,Emmons,Ave,1593310,0,0.403,0,9.675726,8,4.5 +17439,0,0.103772,3,3,1,2,3,,3,2,Dix,Ave,1688707,4.923,5.027,0,2.490526,5,5 +18887,0,0.250317,1,1,0,2,5,,3,2,Moran,Ave,1660106,0.707,0.957,0,6.007602,8,4.5 +30814,0,0.194623,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.670947,0.15,4 +31984,0,0.147014,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.528328,0.15,4 +31985,0,0.362786,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.706865,0.15,4 +32292,0,0.376434,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.034408,0.15,4 +33969,0,0.340797,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.179117,0.15,4 +12354,0,0.11863,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,6.056,6.174,0,2.847126,8,4.5 +17568,0,0.221851,3,3,1,2,3,,3,2,Dix,Ave,1688707,4.531,4.752,0,5.324432,5,5 +33970,0,0.228218,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.477228,0.15,4 +18889,0,0.157169,1,1,0,2,4,,3,2,Moran,Ave,1660106,0.55,0.707,0,3.772046,6,4.5 +19174,0,0.115883,3,3,1,2,3,,3,2,Dix,Ave,1688707,4.752,4.868,0,2.781199,5,5 +17875,0,0.05496,3,3,1,2,3,,3,2,Dix,Ave,1688707,4.868,4.923,0,1.319048,5,5 +30815,0,0.083887,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.013299,0.15,4 +18847,0,0.225855,3,3,1,2,3,,3,2,Dix,Ave,1688707,5.027,5.253,0,5.420529,5,5 +18414,0,0.14877,1,1,0,2,5,,3,2,Moran,Ave,1660106,0.957,1.106,0,3.57047,8,4.5 +30812,0,0.293844,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.052267,0.15,4 +31982,0,0.093545,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.245074,0.15,4 +12691,0,0.357141,1,1,1,2,4,,3,2,Ford,Ave,1578505,6.784,7.141,0,8.571387,6,4.5 +14950,1,0.3349,4,0,0,2,3,DIV,3,2,Fort,St,1592105,10.076,10.411,0,8.037598,5,5 +15704,-1,0.273035,0,4,0,2,3,DIV,3,2,Fort,St,1592106,9.978,10.251,0,6.552842,5,5 +18583,0,0.458144,1,1,0,2,5,,3,2,12th,St,1665208,0.721,1.179,0,10.995456,8,4.5 +30677,0,0.498537,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.964897,0.15,4 +32041,0,0.448274,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.758574,0.15,4 +15413,-1,0.220772,0,4,0,2,3,DIV,3,2,Fort,St,1592106,9.757,9.978,0,5.298537,5,5 +32193,0,0.336828,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.083875,0.15,4 +32194,0,0.279137,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.699282,0.15,4 +15506,1,0.129226,4,0,0,2,3,DIV,3,2,Fort,St,1592105,9.947,10.076,0,3.101417,5,5 +13055,0,0.294997,1,1,1,2,4,,3,2,Ford,Ave,1578505,6.49,6.784,0,7.079937,6,4.5 +15412,-1,0.279977,0,4,0,2,3,DIV,3,2,Fort,St,1592106,10.251,10.53,0,6.719446,5,5 +15778,1,0.328071,4,0,0,2,3,DIV,3,2,Fort,St,1592105,10.411,10.739,0,7.873708,5,5 +31979,0,0.369738,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.87371,0.15,4 +31980,0,0.293409,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.041825,0.15,4 +31981,0,0.333949,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.014768,0.15,4 +12809,0,0.024288,2,2,0,2,3,,3,2,Ford,Ave,1578505,6.465,6.49,0,0.582915,5,5 +14871,-1,0.110772,0,4,0,2,3,DIV,3,2,Fort,St,1592106,10.53,10.641,0,2.658518,5,5 +32043,0,0.097505,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.340125,0.15,4 +12687,0,0.140086,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.141,7.281,0,3.362062,6,4.5 +15285,0,0.462601,1,1,0,2,5,,3,2,Emmons,Blvd,1593310,1.056,1.518,0,11.102422,8,4.5 +15695,-1,0.16453,0,3,0,2,3,DIV,3,2,Fort,St,1592106,11.351,11.515,0,3.948714,5,5 +15762,1,0.113733,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.453,11.567,0,2.729601,5,5 +18409,0,0.427842,1,1,0,2,5,,3,2,Moran,Ave,1660106,1.748,2.176,0,10.268212,8,4.5 +18865,0,0.223081,1,1,0,2,5,,3,2,River,Dr,1660207,0.469,0.692,0,5.353953,8,4.5 +24369,0,0.210292,1,1,0,2,5,,3,2,Harrison,Blvd,5491819,0.39,0.6,0,5.047015,8,4.5 +32404,0,0.197626,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.743012,0.15,4 +14937,1,0.386826,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.067,11.453,0,9.283825,5,5 +15696,-1,0.40123,0,3,0,2,3,DIV,3,2,Fort,St,1592106,10.894,11.295,0,9.629526,5,5 +18872,0,0.328864,1,1,0,2,5,,3,2,Moran,Ave,1660106,1.419,1.748,0,7.892732,8,4.5 +24370,0,0.390048,1,1,0,2,5,,3,2,Harrison,Blvd,5491819,0,0.39,0,9.361163,8,4.5 +33742,0,0.408473,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.803351,0.15,4 +11917,0,0.026193,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,6.752,6.778,0,0.628641,8,4.5 +15768,1,0.0254,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.041,11.067,0,0.609597,5,5 +15404,-1,0.056149,0,3,0,2,3,DIV,3,2,Fort,St,1592106,11.295,11.351,0,1.347578,5,5 +18881,0,0.023247,1,1,0,2,5,,3,2,Moran,Ave,1660106,1.396,1.419,0,0.557936,8,4.5 +32406,0,0.023356,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.56055,0.15,4 +15056,0,0.30268,1,1,0,2,5,,3,2,Emmons,Blvd,1593310,0.753,1.056,0,7.264311,8,4.5 +15489,1,0.255694,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.676,11.932,0,6.136645,5,5 +15759,1,0.10921,3,0,0,2,3,DIV,3,2,Fort,St,1592105,11.567,11.676,0,2.621043,5,5 +15288,0,0.02329,1,1,0,2,5,,3,2,Emmons,Blvd,1593310,0.73,0.753,0,0.558961,8,4.5 +11932,0,0.289942,1,1,0,2,5,,3,2,Old Goddard,Rd,1578601,7.219,7.509,0,6.958617,8,4.5 +17460,0,0.46903,1,1,0,2,5,,3,2,River,Dr,1660207,0,0.469,0,11.25672,8,4.5 +24367,0,0.062893,1,1,0,2,5,,3,2,Harrison,Blvd,5491820,0,0.063,0,1.50944,8,4.5 +14755,-1,0.19295,0,4,0,2,3,DIV,3,2,S M 39,,1592407,0.744,0.937,0,4.630791,5,5 +14782,1,0.670105,3,0,0,1,1,,3,2,N I 75,,1592010,14.111,14.781,0,,0.58,7 +14785,1,0.227497,1,0,0,1,1,ROF,3,2,S I 75/Southfield,RAMP,1595004,0,0.227,0,,2.24,5 +14893,1,0.276703,3,0,0,1,1,,3,2,N I 75,,1592010,13.834,14.111,0,,0.58,7 +14955,-1,0.150289,0,3,0,1,1,,3,2,S I 75,,1595106,13.999,14.149,0,,0.58,7 +15022,-1,0.669348,0,3,0,1,1,,3,2,S I 75,,1595106,14.149,14.818,0,,0.58,7 +15157,0,0.424798,1,1,0,2,5,,3,2,Cicotte,Ave,1592410,1.094,1.518,0,10.195147,8,4.5 +15235,1,0.396276,4,0,0,2,3,DIV,3,2,N M 39,,1592408,0.539,0.935,0,9.510632,5,5 +15408,1,0.167996,1,0,0,1,1,RON,3,2,N Southfield/N I 75,RAMP,1592409,0,0.168,0,,1.09,4 +15476,1,0.264616,3,0,0,2,3,DIV,3,2,Fort,St,1592105,13.156,13.421,0,6.350779,5,5 +15513,1,0.147756,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.164,0.312,0,3.546155,5,5 +15587,-1,0.153569,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0.163,0.317,0,3.685661,5,5 +15610,0,0.257616,2,2,0,2,5,,3,2,Champaign,Rd,1592404,0.025,0.282,0,6.182786,8,4.5 +15681,-1,0.264598,0,3,0,2,3,DIV,3,2,Fort,St,1592106,13.011,13.275,0,6.350357,5,5 +18848,0,0.146237,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.567,6.713,0,3.509677,5,5 +19057,0,0.352645,3,3,1,2,3,,3,2,Dix,Ave,1688707,7.555,7.908,0,8.463488,5,5 +30810,0,0.432261,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.374257,0.15,4 +30811,0,0.410572,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.853735,0.15,4 +32402,0,0.272784,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.546826,0.15,4 +32706,0,0.241652,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.799638,0.15,4 +33971,0,0.5058,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.139196,0.15,4 +33972,0,0.544102,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.058458,0.15,4 +14820,1,0.337345,3,0,0,1,1,,3,2,N I 75,,1592010,13.27,13.608,0,,0.58,7 +15172,-1,0.398468,0,3,0,1,1,,3,2,S I 75,,1595106,13.283,13.681,0,,0.58,7 +15313,0,0.540718,2,2,0,2,5,,3,2,Champaign,Rd,1592404,0.282,0.823,0,12.977234,8,4.5 +15583,-1,0.197399,0,4,0,2,3,DIV,3,2,S M 39,,1592407,0.547,0.744,0,4.737584,5,5 +15612,1,0.413832,1,0,0,1,1,ROF,3,2,N I 75/N Dix,RAMP,1592401,0,0.414,0,,2.24,5 +18478,1,0.29255,3,0,0,2,3,DV2,3,2,Dix,Ave,1688707,5.797,6.09,0,7.021196,5,5 +23724,-1,0.150008,0,3,0,2,3,DV2,3,2,Dix,Ave,4707989,0.254,0.404,0,3.600183,5,5 +31961,0,0.372263,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.934309,0.15,4 +32705,0,0.205755,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.93812,0.15,4 +15567,1,0.325629,1,0,0,1,1,ROF,3,2,S I 75/Dix,RAMP,1595207,0,0.326,0,,2.24,5 +23726,-1,0.225824,0,3,0,2,3,DV2,3,2,Dix,Ave,4707989,0.01,0.236,0,5.419778,5,5 +24340,1,0.235516,1,0,0,1,1,RON,3,2,Dix/N I 75,RAMP,4710178,0,0.236,0,,1.09,4 +15021,1,0.092166,1,0,0,1,1,ROF,3,2,N I 75/S Dix,RAMP,1594410,0.152,0.244,0,,2.24,5 +17969,0,0.052765,3,3,0,2,3,,3,2,Dix,Ave,1688707,5.623,5.675,0,1.266364,5,5 +15228,1,0.044934,1,0,0,1,1,ROF,3,2,N I 75/S Dix,RAMP,1594410,0.244,0.289,0,,2.24,5 +18958,1,0.100536,3,0,0,2,3,DV2,3,2,Dix,Ave,1688707,5.697,5.797,0,2.412854,5,5 +23727,-1,0.009785,0,3,0,2,3,DV2,3,2,Dix,Ave,4707989,0,0.01,0,0.234831,5,5 +17551,0,0.021398,3,3,0,2,3,,3,2,Dix,Ave,1688707,5.675,5.697,0,0.513551,5,5 +23725,-1,0.018656,0,3,0,2,3,DV2,3,2,Dix,Ave,4707989,0.236,0.254,0,0.447747,5,5 +17552,0,0.22057,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.153,6.374,0,5.29369,5,5 +30817,0,0.314938,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.558518,0.15,4 +17742,0,0.051362,3,3,0,2,3,,3,2,Dix,Ave,1688707,6.102,6.153,0,1.232682,5,5 +18072,1,0.011989,3,0,0,2,3,DV2,3,2,Dix,Ave,1688707,6.09,6.102,0,0.287732,5,5 +19056,0,0.193646,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.374,6.567,0,4.647496,5,5 +31375,0,0.153584,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.686019,0.15,4 +30819,0,0.052442,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.258612,0.15,4 +30809,0,0.276646,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.639516,0.15,4 +14758,-1,0.063033,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0.484,0.547,0,1.512782,5,5 +14816,1,0.226814,3,0,0,1,1,,3,2,N I 75,,1592010,13.608,13.834,0,,0.58,7 +14973,1,0.247554,1,0,0,1,1,RON,3,2,S Southfield/S I 75,RAMP,1594505,0,0.248,0,,1.09,4 +15177,-1,0.317264,0,3,0,1,1,,3,2,S I 75,,1595106,13.681,13.999,0,,0.58,7 +15306,1,0.20668,1,0,0,1,1,RON,3,2,S Southfield/N I 75,RAMP,1592406,0,0.207,0,,1.09,4 +15496,1,0.031969,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.507,0.539,0,0.76725,5,5 +15600,1,0.338829,1,0,0,1,1,ROF,3,2,N I 75/Southfield,RAMP,1592405,0,0.339,0,,2.24,5 +30820,0,0.256692,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.160611,0.15,4 +32704,0,0.227493,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.459839,0.15,4 +15243,1,0.135423,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.312,0.447,0,3.250154,5,5 +15585,-1,0.145448,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0.317,0.462,0,3.490759,5,5 +15274,1,0.156824,1,0,0,1,1,RON,3,2,N Southfield/S I 75,RAMP,1595003,0,0.157,0,,1.09,4 +15499,1,0.020724,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.447,0.468,0,0.497377,5,5 +15237,1,0.038982,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.468,0.507,0,0.935572,5,5 +15296,-1,0.021199,0,4,0,2,3,DIV,3,2,S M 39,,1592407,0.462,0.484,0,0.508779,5,5 +15595,1,0.024872,2,0,0,2,3,RSF,3,2,N I 75/Southfield,RAMP,1592405,0.339,0.364,0,0.596921,5,5 +15406,0,0.191436,1,1,0,2,5,,3,2,Cicotte,Ave,1592410,1.518,1.71,0,4.59447,8,4.5 +17743,0,0.211583,3,3,1,2,3,,3,2,Dix,Ave,1688707,7.133,7.345,0,5.077995,5,5 +17970,0,0.209496,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.924,7.133,0,5.0279,5,5 +32426,0,0.219457,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.266976,0.15,4 +15494,1,0.074484,4,0,0,2,3,DIV,3,2,N M 39,,1592408,0.935,1.009,0,1.787627,5,5 +15581,-1,0.080455,0,4,0,2,3,DIV,3,2,S M 39,,1592407,0.937,1.017,0,1.930913,5,5 +32707,0,0.216354,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.192501,0.15,4 +32708,0,0.193835,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.652035,0.15,4 +18260,0,0.189578,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.734,6.924,0,4.549862,5,5 +32709,0,0.096534,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.316826,0.15,4 +18479,0,0.02105,3,3,1,2,3,,3,2,Dix,Ave,1688707,6.713,6.734,0,0.505209,5,5 +33676,0,0.258653,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.20768,0.15,4 +32429,0,0.082415,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.977969,0.15,4 +17440,0,0.210339,3,3,1,2,3,,3,2,Dix,Ave,1688707,7.345,7.555,0,5.04813,5,5 +14857,-1,0.19351,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.358,12.552,0,4.644234,5,5 +15753,1,0.057492,3,0,0,2,3,DIV,3,2,Fort,St,1592105,12.644,12.702,0,1.379799,5,5 +24339,0,0.409393,2,2,1,2,3,,3,2,Southfield,Rd,4710185,0,0.409,0,9.825438,5,5 +31006,0,0.419374,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.064969,0.15,4 +31962,0,0.200993,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.823833,0.15,4 +33740,0,0.518645,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.447484,0.15,4 +33741,0,0.537013,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.888313,0.15,4 +33810,0,0.441395,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.593482,0.15,4 +14867,-1,0.268476,0,3,0,2,3,DIV,3,2,Fort,St,1592106,11.943,12.212,0,6.443423,5,5 +14928,1,0.137111,3,0,0,2,3,DIV,3,2,Fort,St,1592105,12.507,12.644,0,3.290668,5,5 +15484,1,0.07548,3,0,0,2,3,DIV,3,2,Fort,St,1592105,12.432,12.507,0,1.811515,5,5 +15694,-1,0.146592,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.212,12.358,0,3.518205,5,5 +15315,0,0.024667,1,1,0,2,5,,3,2,Champaign,Rd,1592404,0,0.025,0,0.592,8,4.5 +14760,-1,0.112258,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0.051,0.163,0,2.694189,5,5 +14856,-1,0.141963,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.653,12.795,0,3.407116,5,5 +15246,1,0.113061,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.051,0.164,0,2.713456,5,5 +15248,1,0.027365,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0,0.027,0,0.656752,5,5 +15478,1,0.015904,4,0,0,2,3,DIV,3,2,Fort,St,1592105,12.949,12.965,0,0.381698,5,5 +15687,-1,0.019823,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.795,12.815,0,0.475759,5,5 +15752,1,0.247294,3,0,0,2,3,DIV,3,2,Fort,St,1592105,12.702,12.949,0,5.935046,5,5 +15688,-1,0.101852,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.552,12.653,0,2.44444,5,5 +14764,-1,0.027798,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0,0.028,0,0.667145,5,5 +15589,-1,0.023461,0,3,0,2,3,DIV,3,2,S M 39,,1592407,0.028,0.051,0,0.563059,5,5 +14851,-1,0.195436,0,3,0,2,3,DIV,3,2,Fort,St,1592106,12.815,13.011,0,4.690464,5,5 +15751,1,0.191643,3,0,0,2,3,DIV,3,2,Fort,St,1592105,12.965,13.156,0,4.599439,5,5 +15515,1,0.023494,3,0,0,2,3,DIV,3,2,N M 39,,1592408,0.027,0.051,0,0.563851,5,5 +31959,0,0.184196,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.420703,0.15,4 +14769,1,0.484764,3,0,0,1,1,,3,2,N I 75,,1592010,14.781,15.265,0,,0.58,7 +14773,-1,0.547505,0,3,0,1,1,,3,2,S I 75,,1595106,14.818,15.365,0,,0.58,7 +15156,1,0.209934,1,0,0,1,1,ROF,3,2,N I 75/Lafayette,RAMP,1592501,0,0.21,0,,2.24,5 +15407,0,0.256753,1,1,0,2,5,,3,2,Cicotte,Ave,1592410,0.837,1.094,0,6.162081,8,4.5 +21790,1,0.175847,1,0,0,1,1,RON,3,2,Outer/S I 75,RAMP,4700025,0.076,0.252,0,,1.09,4 +24396,1,0.167457,3,0,0,2,3,DIV,3,1,Outer,Dr,4710093,1.429,1.596,0,4.01897,5,5 +24420,1,0.521566,3,0,0,2,3,DIV,3,2,Outer,Dr,4710093,0.68,1.202,0,12.517575,5,5 +24442,1,0.565499,3,0,0,2,3,DIV,3,2,Outer,Dr,4710092,2.046,2.612,0,13.571983,5,5 +24451,1,0.166524,3,0,0,2,3,DIV,3,1,Outer,Dr,4710092,1.698,1.864,0,3.996565,5,5 +31989,0,0.593328,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.239879,0.15,4 +31991,0,0.579233,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.901589,0.15,4 +31990,0,0.024252,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.582044,0.15,4 +18694,0,0.014242,3,3,1,2,3,,3,2,Dix,Ave,1688707,7.908,7.922,0,0.341798,5,5 +14840,-1,0.232744,0,3,0,2,3,DIV,3,2,Fort,St,1592106,13.275,13.508,0,5.585856,5,5 +15471,1,0.273421,3,0,0,2,3,DIV,3,2,Fort,St,1592105,13.642,13.915,0,6.562106,5,5 +15670,-1,0.272497,0,3,0,2,3,DIV,3,2,Fort,St,1592106,13.508,13.78,0,6.539919,5,5 +15748,1,0.221208,3,0,0,2,3,DIV,3,2,Fort,St,1592105,13.421,13.642,0,5.30898,5,5 +15158,0,0.022979,1,1,0,2,5,,3,2,Cicotte,Ave,1592410,0.814,0.837,0,0.551485,8,4.5 +15665,-1,0.017518,0,3,0,2,3,DIV,3,1,Fort,St,1592106,13.78,13.798,0,0.420442,5,5 +24395,1,0.025034,3,0,0,2,3,DIV,3,1,Outer,Dr,4710093,1.596,1.621,0,0.600805,5,5 +14914,1,0.013097,3,0,0,2,3,DIV,3,1,Fort,St,1592105,13.915,13.928,0,0.314327,5,5 +24456,1,0.027478,3,0,0,2,3,DIV,3,1,Outer,Dr,4710092,1.67,1.698,0,0.659473,5,5 +15282,1,0.254384,1,0,0,1,1,ROF,3,2,S I 75/Outer,RAMP,1595209,0,0.254,0,,2.24,5 +15533,1,0.058724,3,0,0,1,1,,3,1,N I 75,,1592010,15.265,15.324,0,,0.58,7 +23954,1,0.108914,1,0,0,1,1,RON,3,1,Outer/N I 75,RAMP,4706751,0.158,0.267,0,,1.09,4 +23955,1,0.075381,1,0,0,1,1,RON,3,2,Outer/N I 75,RAMP,4706751,0.083,0.158,0,,1.09,4 +24398,1,0.057225,3,0,0,2,3,DIV,3,1,Outer,Dr,4710093,1.372,1.429,0,1.373396,5,5 +24450,1,0.046743,3,0,0,2,3,DIV,3,1,Outer,Dr,4710092,1.864,1.911,0,1.12184,5,5 +15004,-1,0.034379,0,2,0,2,5,,3,2,Lafayette,Blvd,1594503,2.334,2.368,0,0.825098,8,4.5 +15214,-1,0.049949,0,2,0,2,5,,3,2,Lafayette,Blvd,1594503,2.284,2.334,0,1.198779,8,4.5 +23959,1,0.083692,2,0,0,2,5,,3,2,Lafayette,Blvd,4706749,0,0.084,0,2.008604,8,4.5 +23960,-1,0.034531,0,1,0,1,5,,3,2,E Outer/S Lafayette,Ramp,4706748,0,0.035,0,,8,4.5 +24400,1,0.025655,3,0,0,2,3,DIV,3,2,Outer,Dr,4710093,1.346,1.372,0,0.615717,5,5 +24402,1,0.054807,3,0,0,2,3,DIV,3,2,Outer,Dr,4710093,1.253,1.308,0,1.315369,5,5 +24444,1,0.070236,3,0,0,2,3,DIV,3,2,Outer,Dr,4710092,1.946,2.016,0,1.68566,5,5 +15016,0,0.062669,1,1,0,2,5,,3,2,Lafayette,Blvd,1594503,2.221,2.284,0,1.504061,8,4.5 +22005,1,0.044895,1,0,0,1,1,RON,3,2,N Outer/S I 75,RAMP,4700025,0.032,0.076,0,,1.09,4 +24403,1,0.051401,3,0,0,2,3,DIV,3,2,Outer,Dr,4710093,1.202,1.253,0,1.233619,5,5 +21670,1,0.041363,1,0,0,1,1,RON,3,2,Outer/S I 75,RAMP,4700026,0,0.041,0,,1.09,4 +22004,1,0.031541,1,0,0,1,3,RSF,3,2,N Outer/S I 75,RAMP,4700025,0,0.032,0,,5,5 +24443,1,0.030242,3,0,0,2,3,DIV,3,2,Outer,Dr,4710092,2.016,2.046,0,0.725804,5,5 +23957,1,0.04672,1,0,0,1,3,RSF,3,2,S Outer/N I 75,RAMP,4706751,0,0.047,0,,5,5 +23958,-1,0.032139,0,1,0,2,3,,3,2,W Outer/Lafayette,TURN,4706750,0,0.032,0,0.771329,5,5 +24401,1,0.038396,3,0,0,2,3,DIV,3,2,Outer,Dr,4710093,1.308,1.346,0,0.921492,5,5 +23956,1,0.036113,1,0,0,1,1,RON,3,2,S Outer/N I 75,RAMP,4706751,0.047,0.083,0,,1.09,4 +23961,1,0.026148,1,0,0,1,1,RON,3,2,N Outer/N I 75,RAMP,4706747,0.01,0.036,0,,1.09,4 +24447,1,0.023992,3,0,0,2,3,DIV,3,2,Outer,Dr,4710092,1.922,1.946,0,0.575811,5,5 +23962,1,0.010088,1,0,0,1,1,RON,3,1,N Outer/N I 75,RAMP,4706747,0,0.01,0,,1.09,4 +24449,1,0.010899,3,0,0,2,3,DIV,3,1,Outer,Dr,4710092,1.911,1.922,0,0.26157,5,5 +10850,1,0.199131,3,0,0,1,1,,3,2,E I 94,,1576405,18.906,19.105,0,,0.58,7 +11562,1,0.632813,3,0,0,1,1,,3,2,E I 94,,1576405,20.136,20.768,0,,0.58,7 +11774,0,0.072588,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,2.575,2.647,0,1.742111,6,4.5 +11775,0,0.36005,3,3,1,2,4,,3,2,Rotunda,Dr,1577009,2.215,2.575,0,8.64121,6,4.5 +11785,1,0.205701,1,0,0,1,1,RON,3,2,Schaefer/W I 94,RAMP,1577006,0.367,0.573,0,,1.09,4 +11795,1,0.210242,1,0,0,1,1,ROF,3,2,E I 94/Oakwood,RAMP,1576910,0,0.21,0,,2.24,5 +13732,1,0.423678,1,0,0,1,1,ROF,3,2,W I 94/Schaefer,RAMP,1589003,0,0.424,0,,2.24,5 +13759,-1,0.193161,0,3,0,1,1,,3,2,W I 94,,1588802,18.84,19.033,0,,0.58,7 +13818,1,0.278593,2,0,0,1,3,RSF,3,2,E M 153/Greenfield,RAMP,1589606,0,0.279,0,,5,5 +13915,1,0.238597,2,0,0,1,3,RSF,3,2,Greenfield/W M 153,RAMP,1589608,0.011,0.25,0,,5,5 +13919,1,0.321501,1,0,0,1,1,RON,3,2,Schaefer/E I 94,RAMP,1589002,0,0.321,0,,1.09,4 +14176,-1,0.409465,0,3,0,1,1,,3,2,W I 94,,1588802,20.214,20.623,0,,0.58,7 +14181,1,0.260643,1,0,0,1,1,ROF,3,2,W I 94/W Oakwood,RAMP,1589001,0,0.261,0,,2.24,5 +14425,1,0.234173,1,0,0,1,1,ROF,3,2,W I 94/E Oakwood,RAMP,1588910,0,0.234,0,,2.24,5 +14560,1,0.485379,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,17.692,18.178,0,11.649092,5,5 +15077,0,0.188121,2,2,0,2,4,,3,2,Hubbard,Dr,1594801,1.69,1.878,0,4.514902,6,4.5 +15175,-1,0.463223,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,2.449,2.912,0,11.117359,8,4.5 +15211,1,0.33125,3,0,0,1,2,,3,2,N M 39,,1592408,5.424,5.756,0,,0.58,7 +15564,-1,0.292376,0,3,0,1,2,,3,2,S M 39,,1592407,5.453,5.745,0,,0.58,7 +15832,1,0.214211,2,0,0,1,3,RSF,3,2,Greenfield/W Michigan,RAMP,1600108,0,0.214,0,,5,5 +16786,1,0.240978,2,0,0,1,3,RSF,3,2,E Michigan/Greenfield,RAMP,1600502,0,0.241,0,,5,5 +16972,1,0.430886,4,0,0,2,3,DIV,2,2,Michigan,Ave,1600206,18.606,19.036,0,10.341258,6,5 +18383,0,0.434478,2,2,1,2,3,,3,2,Outer,Dr,1662401,0.108,0.543,0,10.427481,5,5 +18398,0,0.181365,2,2,1,2,3,,3,2,Greenfield,,1651002,2.319,2.5,0,4.352759,5,5 +19153,1,0.485049,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.177,2.662,0,11.641168,8,4.5 +19167,0,0.08497,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.961,3.046,0,2.039276,5,5 +19993,-1,0.423936,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,3.375,3.798,0,10.174464,5,5 +37778,1,0.127603,2,0,0,1,1,ROF,3,2,I 94/Schaefer,RAMP,1589003,0.424,0.551,0,,2.24,5 +22900,-1,0.391362,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,2.027,2.419,0,9.392679,5,5 +37759,-1,0.140558,0,2,0,2,3,DV2,3,2,Schaefer,Rd,4704975,0,0.141,0,3.373389,5,5 +32280,0,0.475608,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.41459,0.15,4 +32408,0,0.443206,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.636932,0.15,4 +32715,0,0.108924,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.614187,0.15,4 +32718,0,0.453498,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.88396,0.15,4 +32719,0,0.286287,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.870885,0.15,4 +32721,0,0.412397,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.897534,0.15,4 +32722,0,0.424737,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.193692,0.15,4 +32724,0,0.21111,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.066637,0.15,4 +32726,0,0.235393,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.649428,0.15,4 +32730,0,0.209911,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.037853,0.15,4 +32747,0,0.228723,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.489354,0.15,4 +33652,0,0.247648,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.943548,0.15,4 +33777,0,0.52636,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.632629,0.15,4 +33778,0,0.309046,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.417103,0.15,4 +33779,0,0.53914,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.939371,0.15,4 +11778,0,0.710698,3,3,1,2,4,,3,2,Rotunda,Dr,1577009,1.168,1.879,0,17.056764,6,4.5 +15221,1,0.551712,3,0,0,1,2,,3,2,N M 39,,1592408,3.821,4.372,0,,0.58,7 +15377,-1,0.612769,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,1.082,1.694,0,14.706446,8,4.5 +15568,-1,0.544508,0,3,0,1,2,,3,2,S M 39,,1592407,3.844,4.389,0,,0.58,7 +15669,-1,0.187418,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.894,1.082,0,4.498029,8,4.5 +17435,1,0.408796,3,0,0,2,3,DIV,3,2,Outer,Dr,1662401,0.918,1.326,0,9.811101,5,5 +18716,1,0.532114,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.824,1.356,0,12.770732,8,4.5 +18896,0,0.454446,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,3.697,4.152,0,10.906715,5,5 +19072,0,0.075249,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,3.185,3.26,0,1.805986,5,5 +19168,1,0.224837,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.6,0.824,0,5.396092,8,4.5 +23999,1,0.537264,3,0,0,2,3,DIV,3,2,Outer,Dr,4710471,4.271,4.808,0,12.894337,5,5 +30339,0,0.556523,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.356547,0.15,4 +30801,0,0.70529,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.926953,0.15,4 +32553,0,0.725035,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.400849,0.15,4 +32731,0,0.511564,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.277538,0.15,4 +32736,0,0.291199,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.988774,0.15,4 +33780,0,0.693049,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.633179,0.15,4 +14949,-1,0.137753,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.757,0.894,0,3.30607,8,4.5 +15284,-1,0.455548,0,4,0,1,2,,3,2,S M 39,,1592407,3.389,3.844,0,,0.58,7 +15481,1,0.468805,4,0,0,1,2,,3,2,N M 39,,1592408,3.352,3.821,0,,0.58,7 +18377,1,0.225075,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,1.647,1.872,0,5.401811,5,5 +18721,1,0.155415,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.444,0.6,0,3.729958,8,4.5 +18841,1,0.280237,3,0,0,2,3,DV2,3,2,Outer,Dr,1662401,1.367,1.647,0,6.725689,5,5 +24002,1,0.280403,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,3.95,4.23,0,6.72968,5,5 +24003,1,0.338641,3,0,0,2,3,DV2,3,2,Outer,Dr,4710471,3.612,3.95,0,8.127377,5,5 +27398,0,0.34405,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.257198,0.15,4 +32285,0,0.315572,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.57372,0.15,4 +32359,0,0.357894,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.589447,0.15,4 +33232,0,0.352616,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.462779,0.15,4 +32283,0,0.262796,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.307116,0.15,4 +33817,0,0.297931,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.150346,0.15,4 +14998,1,0.087523,1,0,0,1,2,ROF,3,2,N M 39/Outer,RAMP,1591604,0,0.088,0,,2.24,5 +15123,-1,0.09951,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.643,0.742,0,2.388242,8,4.5 +15223,1,0.174679,4,0,0,1,2,,3,2,N M 39,,1592408,3.177,3.352,0,,0.58,7 +15359,-1,0.225735,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.417,0.643,0,5.417637,8,4.5 +15569,-1,0.213834,0,4,0,1,2,,3,2,S M 39,,1592407,3.175,3.389,0,,0.58,7 +17767,1,0.181397,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.12,0.302,0,4.35352,8,4.5 +19182,1,0.120428,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0,0.12,0,2.890268,8,4.5 +19546,1,0.115286,1,0,0,1,1,RFF,3,2,I 94/N M 39,RAMP,1869601,0.546,0.661,0,,0.58,7 +14916,1,0.102235,1,0,0,1,2,RON,3,2,Outer/S M 39,RAMP,1594704,0,0.102,0,,1.09,4 +19175,1,0.127908,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.302,0.43,0,3.069788,8,4.5 +15174,-1,0.014445,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.742,0.757,0,0.346669,8,4.5 +18843,1,0.040287,4,0,0,2,3,DIV,3,2,Outer,Dr,1662401,1.326,1.367,0,0.966887,5,5 +24001,1,0.040428,4,0,0,2,3,DIV,3,2,Outer,Dr,4710471,4.23,4.271,0,0.970266,5,5 +19170,1,0.014681,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,0.43,0.444,0,0.35235,8,4.5 +14997,1,0.085455,1,0,0,1,2,RON,3,2,Outer/N M 39,RAMP,1591606,0,0.085,0,,1.09,4 +15150,1,0.10381,1,0,0,1,2,ROF,3,2,S M 39/Outer,RAMP,1594705,0,0.104,0,,2.24,5 +11779,0,0.459315,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,0.709,1.168,0,11.023568,6,4.5 +18882,0,0.363275,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,4.303,4.666,0,8.718592,5,5 +32281,0,0.362432,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.698357,0.15,4 +32735,0,0.505117,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.122808,0.15,4 +11780,0,0.045451,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,0.664,0.709,0,1.090825,6,4.5 +18884,0,0.151177,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,4.152,4.303,0,3.628239,5,5 +32734,0,0.095258,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.286188,0.15,4 +18382,1,0.360282,3,0,0,2,3,DIV,3,2,Outer,Dr,1662401,0.558,0.918,0,8.64676,5,5 +23998,1,0.229697,3,0,0,2,3,DIV,3,2,Outer,Dr,4710471,4.808,5.038,0,5.512728,5,5 +30802,0,0.33857,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.125679,0.15,4 +30804,0,0.140486,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.371666,0.15,4 +30803,0,0.042816,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.027578,0.15,4 +18849,0,0.014853,2,2,1,2,3,,3,2,Outer,Dr,1662401,0.543,0.558,0,0.356472,5,5 +14101,1,0.24218,1,0,0,1,1,RON,3,2,E Oakwood/W I 94,RAMP,1588909,0.142,0.384,0,,1.09,4 +14354,1,0.141559,1,0,0,1,1,RON,3,2,E Oakwood/W I 94,RAMP,1588909,0,0.142,0,,1.09,4 +19073,0,0.088093,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,3.097,3.185,0,2.11424,5,5 +14081,1,0.061926,1,0,0,1,1,RON,3,2,W Oakwood/W I 94,RAMP,1589405,0,0.062,0,,1.09,4 +19079,0,0.050969,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,3.046,3.097,0,1.223249,5,5 +11777,0,0.050191,3,3,1,2,4,,3,2,Rotunda,Dr,1577009,1.879,1.929,0,1.20459,6,4.5 +14823,-1,0.466505,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,1.812,2.279,0,11.196128,8,4.5 +15134,1,0.143369,1,0,0,1,2,ROF,3,2,S M 39/Oakwood,RAMP,1594708,0,0.143,0,,2.24,5 +15220,1,0.187386,3,0,0,1,2,,3,2,N M 39,,1592408,4.794,4.981,0,,0.58,7 +15281,-1,0.456299,0,3,0,1,2,,3,2,S M 39,,1592407,4.997,5.453,0,,0.58,7 +15283,-1,0.41403,0,3,0,1,2,,3,2,S M 39,,1592407,4.389,4.803,0,,0.58,7 +15474,1,0.443189,3,0,0,1,2,,3,2,N M 39,,1592408,4.981,5.424,0,,0.58,7 +15479,1,0.422011,3,0,0,1,2,,3,2,N M 39,,1592408,4.372,4.794,0,,0.58,7 +15565,-1,0.194466,0,3,0,1,2,,3,2,S M 39,,1592407,4.803,4.997,0,,0.58,7 +15658,-1,0.078542,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,2.279,2.357,0,1.885002,8,4.5 +18700,1,0.078497,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.099,2.177,0,1.883917,8,4.5 +18714,1,0.079377,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,1.435,1.514,0,1.905053,8,4.5 +19058,0,0.278142,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,3.26,3.538,0,6.675402,5,5 +19163,1,0.33435,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,1.678,2.012,0,8.0244,8,4.5 +32081,0,0.384932,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.238379,0.15,4 +32732,0,0.128156,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.075751,0.15,4 +14915,1,0.154166,1,0,0,1,2,RON,3,2,Oakwood/S M 39,RAMP,1594707,0,0.154,0,,1.09,4 +14996,1,0.12218,1,0,0,1,2,ROF,3,2,N M 39/Oakwood,RAMP,1591607,0,0.122,0,,2.24,5 +18902,0,0.106339,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,3.591,3.697,0,2.552146,5,5 +19166,1,0.078518,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,1.356,1.435,0,1.884423,8,4.5 +15086,-1,0.066714,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,1.746,1.812,0,1.601124,8,4.5 +18018,0,0.053107,2,2,1,2,3,,3,2,Oakwood,Blvd,1648503,3.538,3.591,0,1.274558,5,5 +15320,-1,0.051272,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,1.694,1.746,0,1.230529,8,4.5 +14377,1,0.132992,1,0,0,1,2,ROF,3,2,S M 39/Rotunda,RAMP,1589601,0,0.133,0,,2.24,5 +15436,-1,0.091636,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,2.357,2.449,0,2.199264,8,4.5 +14994,1,0.136714,1,0,0,1,2,RON,3,2,Rotunda/N M 39,RAMP,1591609,0,0.137,0,,1.09,4 +14995,1,0.147117,1,0,0,1,2,RON,3,2,Oakwood/N M 39,RAMP,1591608,0,0.147,0,,1.09,4 +17755,1,0.163823,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,1.514,1.678,0,3.931753,8,4.5 +11776,0,0.285927,3,3,1,2,4,,3,2,Rotunda,Dr,1577009,1.929,2.215,0,6.862255,6,4.5 +14205,1,0.151429,1,0,0,1,2,ROF,3,2,N M 39/Rotunda,RAMP,1589602,0,0.151,0,,2.24,5 +13701,1,0.149598,1,0,0,1,2,RON,3,2,Rotunda/S M 39,RAMP,1589510,0,0.15,0,,1.09,4 +19160,1,0.08649,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.012,2.099,0,2.075766,8,4.5 +14954,1,0.221926,1,0,0,1,3,RSF,3,2,N M 39/W M 153,RAMP,1591710,0,0.222,0,,5,5 +14958,1,0.231262,1,0,0,1,3,RSF,3,2,E M 153/N M 39,RAMP,1591708,0,0.231,0,,5,5 +14961,1,0.28538,1,0,0,1,3,RSF,3,2,N M 39/E M 153,RAMP,1591707,0,0.285,0,,5,5 +14969,1,0.254624,1,0,0,1,3,RSF,3,2,W US 12/N M 39,RAMP,1591704,0,0.255,0,,5,5 +14970,1,0.209276,1,0,0,1,3,RSF,3,2,N M 39/W US 12,RAMP,1591703,0,0.209,0,,5,5 +14990,1,0.164825,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,16.998,17.162,0,3.955799,5,5 +14991,1,0.177174,1,0,0,1,3,RSF,3,2,E US 12/N M 39,RAMP,1591702,0,0.177,0,,5,5 +14992,1,0.176238,1,0,0,1,3,RSF,3,2,N M 39/E US 12,RAMP,4719481,0,0.176,0,,5,5 +15108,1,0.187889,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0.896,1.084,0,4.509347,6,4.5 +15210,1,0.336497,3,0,0,1,2,,3,2,N M 39,,1592408,6.668,7.004,0,,0.58,7 +15236,-1,0.043939,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.07,3.114,0,1.054546,8,4.5 +15280,-1,0.871219,0,3,0,1,2,,3,2,S M 39,,1592407,5.745,6.616,0,,0.58,7 +15473,1,0.414369,3,0,0,1,2,,3,2,N M 39,,1592408,5.756,6.17,0,,0.58,7 +15562,-1,0.388155,0,3,0,1,2,,3,2,S M 39,,1592407,6.616,7.004,0,,0.58,7 +15578,-1,0.395879,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.677,4.072,0,9.501094,8,4.5 +16020,0,0.095547,2,2,1,2,5,,3,1,Paul,Dr,1597101,1.768,1.864,0,2.293133,8,4.5 +16029,1,0.148731,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.373,0.522,0,3.56954,8,4.5 +16038,-1,0.149153,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.414,0.563,0,3.579675,8,4.5 +16043,1,0.364257,2,0,0,1,3,RSF,3,2,W M 153/N M 39,RAMP,1597009,0,0.364,0,,5,5 +17011,1,0.130207,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.689,17.819,0,3.124968,5,5 +18682,1,0.411189,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.416,3.827,0,9.868537,8,4.5 +18687,1,0.12554,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.87,2.995,0,3.012953,8,4.5 +19997,-1,0.234066,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,2.631,2.866,0,5.617586,5,5 +22994,-1,0.071972,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.124,1.196,0,1.727321,5,5 +23397,-1,0.15259,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,0.889,1.042,0,3.662168,6,4.5 +30497,0,0.457818,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.987641,0.15,4 +32264,0,0.439102,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.538451,0.15,4 +32738,0,0.277033,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.648781,0.15,4 +32740,0,0.167994,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.03185,0.15,4 +33279,0,0.226396,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.433503,0.15,4 +33776,0,0.648646,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.567504,0.15,4 +33781,0,0.188316,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.519592,0.15,4 +33785,0,0.248573,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.965745,0.15,4 +14861,-1,0.140926,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.384,3.524,0,3.382213,8,4.5 +14900,1,0.157272,3,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,0.134,0.291,0,3.774539,5,5 +15887,1,0.319327,1,0,0,1,3,RSF,3,2,S M 39/W US 12,RAMP,1599001,0,0.319,0,,5,5 +15888,1,0.209073,1,0,0,1,3,RSF,3,2,W US 12/S M 39,RAMP,1598910,0,0.209,0,,5,5 +17027,1,0.150201,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.191,17.341,0,3.604813,5,5 +19143,1,0.08911,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.072,3.161,0,2.138638,8,4.5 +19269,-1,0.17022,0,3,0,2,3,DIV,3,2,Evergreen,Rd,1804103,0.119,0.289,0,4.085271,5,5 +23035,-1,0.161987,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.743,0.905,0,3.887683,5,5 +32265,0,0.323579,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.765906,0.15,4 +32739,0,0.414172,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.940126,0.15,4 +32750,0,0.453437,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.882479,0.15,4 +33598,0,0.325852,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.820454,0.15,4 +33599,0,0.623637,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.967294,0.15,4 +33820,0,0.335819,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.059657,0.15,4 +17028,1,0.157264,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.034,17.191,0,3.774337,5,5 +19258,1,0.026055,2,0,0,2,3,DIV,3,2,S Evergreen/E Michigan,,1804105,0,0.026,0,0.625329,5,5 +19260,1,0.066703,2,0,0,2,3,DIV,3,2,E Michigan/N Evergreen,,1804104,0.099,0.166,0,1.600863,5,5 +23058,-1,0.055926,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.52,0.576,0,1.34222,5,5 +33821,0,0.351318,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.43164,0.15,4 +19270,-1,0.118871,0,2,0,2,3,DIV,3,2,S Evergreen/W Michigan,,1804103,0,0.119,0,2.852911,5,5 +19261,1,0.099144,2,0,0,2,3,DIV,3,2,E Michigan/N Evergreen,,1804104,0,0.099,0,2.379456,5,5 +23059,-1,0.053635,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.466,0.52,0,1.287252,5,5 +15629,1,0.13408,2,0,0,2,3,DIV,3,2,W Michigan/N Evergreen,,1596908,0,0.134,0,3.217921,5,5 +19257,1,0.065844,2,0,0,2,3,DIV,3,2,S Evergreen/E Michigan,,1804105,0.026,0.092,0,1.580266,5,5 +23041,-1,0.0719,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.576,0.647,0,1.725608,5,5 +19256,1,0.04702,2,0,0,2,3,DIV,3,2,S Evergreen/E Michigan,,1804105,0.092,0.139,0,1.128472,5,5 +19259,1,0.02553,2,0,0,2,3,DIV,3,2,E Michigan/N Evergreen Cutoff,,1804104,0.166,0.191,0,0.612722,5,5 +23036,-1,0.095384,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.647,0.743,0,2.289219,5,5 +15732,1,0.451385,3,0,0,2,3,DIV,3,2,Evergreen,Rd,1596908,0.291,0.743,0,10.833249,5,5 +19268,-1,0.443742,0,3,0,2,3,DIV,3,2,Evergreen,Rd,1804103,0.289,0.733,0,10.649812,5,5 +14062,1,0.238133,1,0,0,1,3,RSF,3,2,E US 12/S M 39,RAMP,1589508,0,0.238,0,,5,5 +14966,-1,0.14542,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.114,3.26,0,3.490077,8,4.5 +17021,1,0.173068,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.516,17.689,0,4.153632,5,5 +22995,-1,0.219228,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,0.905,1.124,0,5.261467,5,5 +17026,1,0.174614,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.341,17.516,0,4.190735,5,5 +14503,-1,0.063359,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.26,3.323,0,1.520628,8,4.5 +15889,1,0.155267,1,0,0,1,3,RSF,3,2,S M 39/E US 12,RAMP,1598909,0,0.155,0,,5,5 +15103,-1,0.060635,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.323,3.384,0,1.45525,8,4.5 +17728,1,0.053602,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.018,3.072,0,1.286442,8,4.5 +14965,1,0.136434,1,0,0,1,2,RON,3,2,W US 12/N M 39,RAMP,1591705,0,0.136,0,,1.09,4 +15133,1,0.170044,2,0,0,1,2,ROF,3,2,S M 39/W US 12,RAMP,1594710,0,0.17,0,,2.24,5 +32266,0,0.319945,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.678687,0.15,4 +33775,0,0.375384,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.009222,0.15,4 +15691,-1,0.059451,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.524,3.584,0,1.426835,8,4.5 +18685,1,0.154151,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.251,3.405,0,3.699614,8,4.5 +19142,1,0.090155,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.161,3.251,0,2.163715,8,4.5 +15005,-1,0.060333,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.584,3.644,0,1.447991,8,4.5 +14752,-1,0.032397,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,3.644,3.677,0,0.77753,8,4.5 +19139,1,0.010772,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.405,3.416,0,0.258523,8,4.5 +13329,0,0.531692,1,1,0,2,5,,3,1,Paul,Dr,1582602,0.56,1.092,0,12.760597,8,4.5 +14561,1,0.248032,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,16.483,16.731,0,5.952768,5,5 +14883,1,0.459866,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0.356,0.816,0,11.036795,6,4.5 +15025,-1,0.07098,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.54,4.611,0,1.703514,8,4.5 +15037,1,0.300938,1,0,0,1,3,RSF,3,2,E M 153/S M 39,RAMP,1597006,0,0.301,0,,5,5 +15279,-1,0.470088,0,3,0,1,2,,3,2,S M 39,,1592407,7.004,7.474,0,,0.58,7 +15472,1,0.454664,3,0,0,1,2,,3,2,N M 39,,1592408,7.004,7.458,0,,0.58,7 +15626,1,0.174609,1,0,0,1,3,RSF,3,2,S M 39/E M 153,RAMP,1597008,0,0.175,0,,5,5 +19104,1,0.152646,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,4.134,4.286,0,3.663507,8,4.5 +20001,-1,0.256931,0,4,0,2,3,DIV,3,1,Ford,Rd,1924107,2.176,2.433,0,6.166338,5,5 +23399,-1,0.495286,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,0.34,0.835,0,11.886861,6,4.5 +32267,0,0.193324,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.639769,0.15,4 +32311,0,0.494267,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.862411,0.15,4 +32322,0,0.43147,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.355275,0.15,4 +33773,0,0.459382,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.025158,0.15,4 +33774,0,0.544784,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.074818,0.15,4 +33787,0,0.211908,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.085789,0.15,4 +32268,0,0.295488,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.091718,0.15,4 +32269,0,0.311645,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.479487,0.15,4 +32312,0,0.272229,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.533507,0.15,4 +20002,-1,0.067314,0,4,0,2,3,DIV,3,1,Ford,Rd,1924107,2.108,2.176,0,1.615544,5,5 +20003,-1,0.006968,0,4,0,2,3,DIV,3,1,Ford,Rd,1924107,2.101,2.108,0,0.167234,5,5 +32321,0,0.243708,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.848996,0.15,4 +14963,1,0.141108,1,0,0,1,2,ROF,3,2,N M 39/E M 153,RAMP,1591706,0,0.141,0,,2.24,5 +15062,1,0.151062,1,0,0,1,2,RON,3,2,E M 153/S M 39,RAMP,1594802,0,0.151,0,,1.09,4 +15291,-1,0.17982,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.11,4.289,0,4.315679,8,4.5 +19128,1,0.18612,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.84,4.026,0,4.46689,8,4.5 +15117,1,0.026313,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0.816,0.842,0,0.631503,6,4.5 +23482,1,0.036619,1,0,0,1,4,,3,2,Hubbard/Southfield Svc Cutoff,,4706271,0,0.037,0,,6,4.5 +14875,1,0.054008,3,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,0.842,0.896,0,1.296201,6,4.5 +23398,-1,0.053957,0,3,0,2,4,DIV,3,2,Hubbard,Dr,4704580,0.835,0.889,0,1.294964,6,4.5 +14750,-1,0.023478,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.072,4.096,0,0.563473,8,4.5 +15576,-1,0.013672,0,1,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.096,4.11,0,0.328135,8,4.5 +17718,1,0.013674,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,3.827,3.84,0,0.328178,8,4.5 +15505,-1,0.115866,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.289,4.405,0,2.780773,8,4.5 +17696,1,0.107366,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,4.026,4.134,0,2.576785,8,4.5 +15241,-1,0.134654,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,4.405,4.54,0,3.231698,8,4.5 +15190,-1,0.183412,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,4.65,4.833,0,4.401898,8,4.5 +15200,1,0.258612,2,0,0,1,3,RSF,3,1,S M 39/W M 153,RAMP,1597005,0,0.259,0,,5,5 +15209,1,0.405519,3,0,0,1,2,,3,1,N M 39,,1592408,7.458,7.864,0,,0.58,7 +15465,1,0.154163,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,16.731,16.885,0,3.699915,5,5 +15561,-1,0.426433,0,3,0,1,2,,3,1,S M 39,,1592407,7.474,7.901,0,,0.58,7 +17690,1,0.168862,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,4.393,4.562,0,4.052694,8,4.5 +20000,-1,0.093337,0,4,0,2,3,DIV,3,1,Ford,Rd,1924107,2.433,2.526,0,2.240095,5,5 +14801,1,0.226224,1,0,0,1,3,RSF,3,1,W M 153/S M 39,RAMP,1597007,0,0.226,0,,5,5 +15206,1,0.112786,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,16.885,16.998,0,2.706859,5,5 +19999,-1,0.085805,0,4,0,2,3,DIV,3,1,Ford,Rd,1924107,2.526,2.612,0,2.059319,5,5 +15452,-1,0.039103,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,4.611,4.65,0,0.938477,8,4.5 +18650,1,0.05178,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,4.342,4.393,0,1.242721,8,4.5 +19102,1,0.055315,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,4.286,4.342,0,1.327565,8,4.5 +19998,-1,0.019927,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,2.612,2.631,0,0.478244,5,5 +14669,1,0.133751,1,0,0,1,2,ROF,3,1,S M 39/W M 153,RAMP,1590501,0,0.134,0,,2.24,5 +14936,1,0.107781,1,0,0,1,2,RON,3,1,W M 153/N M 39,RAMP,1591802,0,0.108,0,,1.09,4 +15450,-1,0.087737,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,4.905,4.993,0,2.105699,8,4.5 +19100,1,0.192437,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,4.641,4.833,0,4.618487,8,4.5 +14971,-1,0.071942,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,4.833,4.905,0,1.726608,8,4.5 +19101,1,0.078554,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,4.562,4.641,0,1.885296,8,4.5 +15188,-1,0.109626,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,4.993,5.102,0,2.631013,8,4.5 +13159,0,0.042821,1,1,0,2,5,,3,1,Paul,Dr,1582602,1.092,1.135,0,1.027704,8,4.5 +17009,1,0.437399,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.888,18.325,0,10.497585,5,5 +22969,-1,0.168691,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.514,1.683,0,4.04858,5,5 +22993,-1,0.222727,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.196,1.419,0,5.345439,5,5 +32716,0,0.250331,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.007954,0.15,4 +32737,0,0.23519,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.644553,0.15,4 +19145,1,0.050735,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.819,2.87,0,1.217643,8,4.5 +14894,1,0.196045,1,0,0,1,2,RON,3,2,E US 12/S M 39,RAMP,1594709,0,0.196,0,,1.09,4 +14993,1,0.177108,1,0,0,1,2,ROF,3,2,N M 39/E US 12,RAMP,1591610,0,0.177,0,,2.24,5 +15498,-1,0.158544,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,2.912,3.07,0,3.805068,8,4.5 +18695,1,0.157137,2,0,0,2,5,,3,2,N M 39 Service Drive,,1651008,2.662,2.819,0,3.771277,8,4.5 +17010,1,0.068912,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,17.819,17.888,0,1.653883,5,5 +32742,0,0.221889,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.325332,0.15,4 +22970,-1,0.096049,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.419,1.514,0,2.305177,5,5 +16030,1,0.277919,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.095,0.373,0,6.670063,8,4.5 +16039,-1,0.282664,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.131,0.414,0,6.783926,8,4.5 +16042,-1,0.041107,0,1,0,2,5,DIV,3,2,Mercury,Dr,1597010,0,0.041,0,0.986572,8,4.5 +17003,1,0.023155,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,18.433,18.456,0,0.555723,5,5 +22910,-1,0.083095,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.837,1.92,0,1.994287,5,5 +32083,0,0.228059,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.473422,0.15,4 +32717,0,0.087492,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.099818,0.15,4 +32725,0,0.230407,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.529759,0.15,4 +32798,0,0.213129,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.115086,0.15,4 +33262,0,0.260635,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.25523,0.15,4 +16014,1,0.17598,1,0,0,2,5,DIV,3,2,S Mercury/W Michigan Cutoff,,1597209,0,0.176,0,4.223521,8,4.5 +16016,1,0.087278,1,0,0,2,5,DIV,3,2,E Michigan/N Mercury Cutoff,,1597208,0.028,0.115,0,2.094665,8,4.5 +16017,1,0.027726,1,0,0,2,5,DIV,3,2,E Michigan/N Mercury Cutoff,,1597208,0,0.028,0,0.665419,8,4.5 +17007,1,0.107811,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,18.325,18.433,0,2.587466,5,5 +22931,-1,0.085765,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.737,1.823,0,2.058351,5,5 +22932,-1,0.053935,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.683,1.737,0,1.294442,5,5 +16015,1,0.056769,1,0,0,2,5,DIV,3,2,E Michigan/N Mercury Cutoff,,1597208,0.115,0.172,0,1.362457,8,4.5 +16031,1,0.095202,1,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0,0.095,0,2.284855,8,4.5 +16041,-1,0.040416,0,1,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.041,0.081,0,0.969977,8,4.5 +16040,-1,0.04996,0,1,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.081,0.131,0,1.199036,8,4.5 +22930,-1,0.013719,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.823,1.837,0,0.329244,5,5 +17001,1,0.119824,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,18.456,18.576,0,2.875774,5,5 +22903,-1,0.097951,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,1.92,2.018,0,2.350831,5,5 +32752,0,0.147392,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.537403,0.15,4 +22901,-1,0.009994,0,4,0,2,3,DIV,3,2,Michigan,Ave,4704788,2.018,2.027,0,0.239868,5,5 +16998,1,0.029841,4,0,0,2,3,DIV,3,2,Michigan,Ave,1600206,18.576,18.606,0,0.716188,5,5 +14571,1,0.361434,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,17.162,17.524,0,8.674416,5,5 +14869,1,0.35851,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,1.084,1.443,0,8.60425,6,4.5 +16022,1,0.123466,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,1.217,1.341,0,2.963187,8,4.5 +16025,1,0.173431,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.844,1.018,0,4.162332,8,4.5 +16032,-1,0.1168,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,1.25,1.367,0,2.803195,8,4.5 +16035,-1,0.246787,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.812,1.059,0,5.922893,8,4.5 +19996,-1,0.301343,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,2.866,3.167,0,7.232235,5,5 +23393,-1,0.175208,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,1.259,1.434,0,4.204988,6,4.5 +32306,0,0.28703,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.888729,0.15,4 +32743,0,0.280858,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.740588,0.15,4 +33782,0,0.306495,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.355875,0.15,4 +23395,-1,0.217136,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,1.042,1.259,0,5.21126,6,4.5 +32744,0,0.262976,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.311414,0.15,4 +33784,0,0.264526,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.348634,0.15,4 +16021,0,0.427944,2,2,1,2,5,,3,2,Mercury,Dr,1597101,1.341,1.768,0,10.270667,8,4.5 +32746,0,0.200919,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.822054,0.15,4 +14859,1,0.231176,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,1.459,1.69,0,5.548232,6,4.5 +16027,1,0.221287,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.536,0.757,0,5.310895,8,4.5 +16036,-1,0.235087,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.577,0.812,0,5.642077,8,4.5 +23391,-1,0.232804,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,1.45,1.683,0,5.587306,6,4.5 +32728,0,0.214447,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.146727,0.15,4 +33653,0,0.25006,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.001439,0.15,4 +33654,0,0.229724,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.513386,0.15,4 +15102,1,0.016093,2,0,0,2,4,DIV,3,2,Hubbard,Dr,1594801,1.443,1.459,0,0.386225,6,4.5 +16028,1,0.013839,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.522,0.536,0,0.332133,8,4.5 +16037,-1,0.013804,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,0.563,0.577,0,0.331297,8,4.5 +23392,-1,0.016351,0,2,0,2,4,DIV,3,2,Hubbard,Dr,4704580,1.434,1.45,0,0.392427,6,4.5 +16026,1,0.087372,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,0.757,0.844,0,2.096939,8,4.5 +14981,1,0.091389,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,17.601,17.692,0,2.193342,5,5 +19994,-1,0.190138,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,3.184,3.375,0,4.563319,5,5 +32308,0,0.192383,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.617193,0.15,4 +32727,0,0.203134,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.875211,0.15,4 +33783,0,0.201399,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.833584,0.15,4 +15198,1,0.060347,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,17.541,17.601,0,1.448337,5,5 +16023,1,0.178819,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,1.038,1.217,0,4.29166,8,4.5 +16033,-1,0.170646,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,1.08,1.25,0,4.095502,8,4.5 +16024,1,0.020865,2,0,0,2,5,DIV,3,2,Mercury,Dr,1597101,1.018,1.038,0,0.500768,8,4.5 +16034,-1,0.021043,0,2,0,2,5,DIV,3,2,Mercury,Dr,1597010,1.059,1.08,0,0.505022,8,4.5 +15541,1,0.016918,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,17.524,17.541,0,0.406032,5,5 +19995,-1,0.017782,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,3.167,3.184,0,0.426777,5,5 +33651,0,0.137647,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.30352,0.15,4 +11566,1,0.281655,3,0,0,1,1,,3,2,E I 94,,1576405,19.105,19.386,0,,0.58,7 +11791,1,0.151508,1,0,0,1,1,ROF,3,2,E I 94/Greenfield,RAMP,1577004,0,0.152,0,,2.24,5 +11793,1,0.056991,1,0,0,1,1,RON,3,2,W Oakwood/E I 94,RAMP,1577003,0,0.057,0,,1.09,4 +12389,1,0.181305,1,0,0,1,1,ROF,3,2,E I 94/Schaefer,RAMP,1580403,0.297,0.479,0,,2.24,5 +14434,-1,0.243881,0,3,0,1,1,,3,2,W I 94,,1588802,19.033,19.277,0,,0.58,7 +17427,0,0.58119,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,1.688,2.269,0,13.948564,5,5 +17981,0,0.173156,2,2,0,2,4,,3,2,Raupp,Ave,1688707,9.229,9.402,0,4.155747,6,4.5 +18417,0,0.20672,2,2,1,2,3,,3,2,Greenfield,,1651002,1.862,2.069,0,4.961286,5,5 +18507,0,0.46588,2,2,1,2,4,,3,2,Allen,Rd,1651002,1.124,1.589,0,11.181123,6,4.5 +18514,0,0.469895,2,2,1,2,4,,3,2,Allen,Rd,1651002,0.654,1.124,0,11.277471,6,4.5 +24528,1,0.031804,1,0,0,1,1,RON,3,2,Enterprise/E I 94,RAMP,4708481,0,0.032,0,,1.09,4 +32412,0,0.354709,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.513024,0.15,4 +32723,0,0.440296,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.567092,0.15,4 +33657,0,0.387921,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.310116,0.15,4 +33658,0,0.538011,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.912261,0.15,4 +33659,0,0.473059,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.35341,0.15,4 +17422,0,0.170917,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.436,2.607,0,4.101999,5,5 +18533,0,0.166349,2,2,1,2,4,,3,2,Allen,Rd,1651002,0.488,0.654,0,3.992367,6,4.5 +18534,0,0.487723,2,2,1,2,4,,3,2,Allen,Rd,1651002,0,0.488,0,11.70536,6,4.5 +24428,1,0.232701,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,0,0.233,0,5.584826,5,5 +24429,1,0.233217,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,3.058,3.291,0,5.597202,5,5 +32422,0,0.259503,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.228072,0.15,4 +32423,0,0.247275,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.934591,0.15,4 +18850,0,0.10846,1,1,1,2,3,,3,2,Outer,Dr,1662401,0,0.108,0,2.603048,5,5 +11794,1,0.286511,1,0,0,1,1,RON,3,2,E Oakwood/E I 94,RAMP,1577001,0,0.286,0,,1.09,4 +12634,0,0.046548,2,2,0,2,5,,3,2,Enterprise,Dr,1580402,0.133,0.18,0,1.117152,8,4.5 +17420,0,0.183928,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.607,2.79,0,4.414267,5,5 +24310,0,0.096939,1,1,0,2,5,,3,2,Enterprise,Dr,4710258,0.028,0.125,0,2.326536,8,4.5 +12633,0,0.13307,2,2,0,2,5,,3,2,Enterprise,Dr,1580402,0,0.133,0,3.193691,8,4.5 +19171,0,0.083908,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.877,2.961,0,2.013787,5,5 +19193,0,0.055127,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.814,2.869,0,1.323043,5,5 +22236,-1,0.036273,0,1,0,2,5,,3,2,Enterprise/Oakwood Cutoff,,4704187,0,0.036,0,0.87056,8,4.5 +24312,-1,0.027795,0,1,0,2,5,,3,2,Enterprise,Dr,4710258,0,0.028,0,0.667089,8,4.5 +19187,0,0.008038,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.869,2.877,0,0.19291,5,5 +17666,0,0.023183,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.79,2.814,0,0.556395,5,5 +32425,0,0.352824,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.467771,0.15,4 +33816,0,0.369194,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.860662,0.15,4 +24425,1,0.147135,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,0.233,0.38,0,3.531228,5,5 +24439,1,0.149828,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,2.908,3.058,0,3.595864,5,5 +17426,0,0.166368,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,2.269,2.436,0,3.992821,5,5 +10847,1,0.749751,3,0,0,1,1,,3,2,E I 94,,1576405,19.386,20.136,0,,0.58,7 +14420,-1,0.937032,0,3,0,1,1,,3,2,W I 94,,1588802,19.277,20.214,0,,0.58,7 +11792,1,0.048223,1,0,0,1,1,RON,3,2,W Oakwood/E I 94,RAMP,1577003,0.057,0.105,0,,1.09,4 +32749,0,0.160411,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.849865,0.15,4 +12187,1,0.24953,1,0,0,1,1,RON,3,2,Greenfield/W I 94,RAMP,1580405,0,0.25,0,,1.09,4 +12388,1,0.29742,2,0,0,1,1,ROF,3,2,E I 94/Greenfield & Schaefer,RAMP,1580403,0,0.297,0,,2.24,5 +18406,0,0.208617,2,2,1,2,3,,3,2,Greenfield,,1651002,2.11,2.319,0,5.006819,5,5 +17429,0,0.269551,2,2,0,2,3,,3,2,Oakwood,Blvd,1648503,1.419,1.688,0,6.469223,5,5 +17451,0,0.880695,2,2,1,2,3,,3,2,Dix,Ave,1688707,8.133,9.014,0,21.13669,5,5 +31943,0,0.513731,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.329544,0.15,4 +31950,0,0.601811,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.443464,0.15,4 +18858,0,0.049016,2,2,1,2,3,,3,2,Dix,Ave,1688707,9.014,9.063,0,1.176377,5,5 +18393,0,0.165891,2,2,0,2,4,,3,2,Raupp,Ave,1688707,9.063,9.229,0,3.981383,6,4.5 +37874,1,0.127101,1,0,0,1,1,RON,3,1,Ambassador Bridge/W I 96,RAMP,4718925,0,0.127,0,,1.09,4 +37880,0,0.321076,1,1,0,2,7,,4,3,Tienken,Rd,626010,0.702,1.023,0,7.705818,6.55,4.5 +18460,0,0.154296,2,2,1,2,3,,3,2,Greenfield,,1651002,1.708,1.862,0,3.7031,5,5 +18779,0,0.312478,2,2,0,2,3,,3,2,Greenfield,Rd,1648509,0.089,0.401,0,7.499482,5,5 +40454,1,0.398949,1,0,0,1,1,ROF,5,8,E I 96/Nixon,RAMP,5490671,0,0.399,0,,2.24,5 +37903,1,0.027864,1,0,0,2,4,,4,3,Washington,Rd,4415706,0.06,0.088,0,0.668737,4.5,4.5 +23373,0,0.606511,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,0.902,1.509,0,14.55626,5,5 +18757,0,0.27357,2,2,0,2,3,,3,2,Greenfield,Rd,1648509,0.401,0.675,0,6.565676,5,5 +18497,0,0.118291,2,2,1,2,3,,3,2,Greenfield,Rd,1651002,1.589,1.708,0,2.838992,5,5 +32410,0,0.236394,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.673447,0.15,4 +37782,1,0.132756,3,0,0,1,1,ROF,3,2,I 94/N Schaefer,RAMP,1589003,0.656,0.789,0,,2.24,5 +37781,1,0.105003,2,0,0,1,1,ROF,3,2,I 94/N Schaefer,RAMP,1589003,0.551,0.656,0,,2.24,5 +37904,-1,0.389769,0,2,0,2,4,DIV,4,6,Custer,Rd,4300467,1.896,2.285,0,9.354444,4.5,4.5 +37795,1,0.132443,1,0,0,1,1,RON,3,2,S Schaefer/I 94,RAMP,4706627,0,0.132,0,,1.09,4 +37788,1,0.106615,3,0,0,1,1,RON,3,2,N Schaefer/I 94,RAMP,1577006,0.019,0.125,0,,1.09,4 +37789,1,0.138716,2,0,0,1,1,RON,3,2,N Schaefer/I 94,RAMP,1577006,0.125,0.264,0,,1.09,4 +37796,1,0.181029,1,0,0,1,1,ROF,3,2,I 94/Butler,RAMP,1803401,0,0.181,0,,2.24,5 +37772,0,0.494684,2,2,1,2,3,,3,2,Schaefer,Rd,4706528,1.984,2.478,0,11.872417,5,5 +37794,1,0.13665,1,0,0,1,1,ROF,3,2,Ford Gate 10/S Schaefer,RAMP,1648601,0,0.137,0,,2.24,5 +37901,0,1.094283,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,26.262789,0.15,4 +37875,1,0.096373,2,0,0,1,1,RON,3,1,Ambassador Bridge/W I 96,RAMP,4718925,0.127,0.223,0,,1.09,4 +37797,1,0.136867,1,0,0,1,1,RON,3,2,Butler/Ford Gate 10,RAMP,4718370,0,0.137,0,,1.09,4 +37792,1,0.102906,2,0,0,1,1,RON,3,2,Schaefer/I 94,RAMP,1577006,0.264,0.367,0,,1.09,4 +37798,0,0.442664,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.623946,0.15,4 +37876,1,0.21371,1,0,0,1,1,RON,3,1,Ambassador Bridge/N I 75,RAMP,4718924,0.106,0.32,0,,1.09,4 +37777,0,0.007521,2,2,1,2,4,,3,2,Butler,St,1628608,0.366,0.374,0,0.180512,6,4.5 +37774,0,0.00901,2,2,1,2,4,,3,2,Butler,St,1628608,0.243,0.252,0,0.216237,6,4.5 +37793,1,0.096962,1,0,0,1,1,ROF,3,2,Ford Gate 10/N Schaefer,RAMP,1648602,0,0.097,0,,2.24,5 +37764,1,0.17231,2,0,0,2,3,DV2,3,2,Schaefer,Rd,4706528,1.646,1.818,0,4.135437,5,5 +37776,0,0.114421,2,2,1,2,4,,3,2,Butler,St,1628608,0.252,0.366,0,2.746115,6,4.5 +37773,0,0.243072,2,2,0,2,4,,3,2,Butler,St,1628608,0,0.243,0,5.833732,6,4.5 +37799,1,0.011759,1,0,0,2,3,RSF,3,2,N Schaefer/I 94,RAMP,0,0,0,0,0.282219,5,5 +37785,1,0.018826,3,0,0,1,1,RON,3,2,Ford Gate 10/I 94 & Schaefer,RAMP,1577006,0,0.019,0,,1.09,4 +37766,-1,0.007546,0,2,0,2,3,DV2,3,2,Schaefer,Rd,4704975,0.315,0.322,0,0.181104,5,5 +37768,-1,0.163311,0,2,0,2,3,DV2,3,2,Schaefer,Rd,4704975,0.322,0.485,0,3.919455,5,5 +37767,1,0.165607,2,0,0,2,3,DV2,3,2,Schaefer,Rd,4706528,1.818,1.984,0,3.97458,5,5 +37765,-1,0.174111,0,2,0,2,3,DV2,3,2,Schaefer,Rd,4704975,0.141,0.315,0,4.178672,5,5 +18807,-1,0.088935,0,1,0,1,3,,3,2,Greenfield,Rd,1648509,0,0.089,0,,5,5 +22494,0,0.052083,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0.842,0.894,0,1.249987,5,5 +23964,0,0.055174,2,2,0,2,3,,3,2,Greenfield,Rd,4706636,0,0.055,0,1.324179,5,5 +22705,0,0.064855,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0.777,0.842,0,1.556508,5,5 +23638,0,0.00825,2,2,0,2,3,,3,1,Schaefer,Hwy,4706528,0.894,0.902,0,0.197994,5,5 +37872,1,0.023585,1,0,0,1,1,RON,3,1,Ambassador Bridge/N I 75,RAMP,4718924,0,0.024,0,,1.09,4 +11621,0,0.34591,1,1,0,2,5,,2,2,Maple,Rd,1580509,0,0.346,0,8.301852,8.5,4.5 +11758,0,0.160587,2,2,1,2,3,,2,2,Michigan,Ave,1577103,0.456,0.617,0,3.854079,6,5 +11760,0,0.09056,3,3,1,2,3,,2,2,Michigan,Ave,1577103,0.284,0.375,0,2.173444,6,5 +11771,0,0.24348,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,3.193,3.436,0,5.843516,6,4.5 +12551,0,0.209074,1,1,0,2,5,,2,2,Schlaff,Ave,1580505,0.107,0.316,0,5.01778,8.5,4.5 +15631,1,0.259592,4,0,0,2,3,DIV,2,2,Ford,Rd,1595510,18.474,18.734,0,6.230212,6,5 +18103,1,0.379053,3,0,0,2,3,DV2,2,2,Greenfield,,1651002,3.452,3.831,0,9.097275,6,5 +18476,0,0.522435,1,1,0,2,5,,2,2,Prospect,Ave,1653505,0.171,0.693,0,12.538432,8.5,4.5 +19990,-1,0.249382,0,4,0,2,3,DIV,2,2,Ford,Rd,1924107,4.119,4.368,0,5.985162,6,5 +23477,0,0.242778,2,2,1,2,3,,2,2,Schaefer,Rd,4706528,3.035,3.277,0,5.826667,6,5 +23699,-1,0.156211,0,3,0,2,3,DV2,2,2,Greenfield,,4704562,0.224,0.38,0,3.749054,6,5 +30495,0,0.275627,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.615039,0.15,4 +30496,0,0.260536,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.252856,0.15,4 +32421,0,0.243155,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.835721,0.15,4 +32754,0,0.265623,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.374951,0.15,4 +32757,0,0.218898,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.253551,0.15,4 +32758,0,0.204719,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.913261,0.15,4 +32877,0,0.476457,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.434958,0.15,4 +33642,0,0.267181,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.412332,0.15,4 +33655,0,0.284114,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.818727,0.15,4 +11762,0,0.105451,3,3,1,2,3,,2,2,Michigan,Ave,1577103,0,0.105,0,2.530819,6,5 +11772,1,0.399838,3,0,0,2,4,DIV,3,2,Rotunda,Dr,1577009,2.793,3.193,0,9.596109,6,4.5 +18274,0,0.288887,2,2,1,2,3,,3,2,Greenfield,,1651002,2.958,3.247,0,6.933294,5,5 +18280,0,0.233813,2,2,1,2,3,,3,2,Greenfield,,1651002,2.725,2.958,0,5.611519,5,5 +22239,1,0.201444,2,0,0,1,4,,3,2,E Rotunda/S Greenfield,Ramp,4703397,0,0.201,0,,6,4.5 +22564,-1,0.452907,0,3,0,2,4,DIV,3,2,Rotunda,Dr,4706236,0.092,0.544,0,10.869763,6,4.5 +23712,-1,0.25104,0,2,0,1,4,,3,2,S Greenfield/W Rotunda,Ramp,4706240,0,0.251,0,,6,4.5 +32713,0,0.413286,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.918855,0.15,4 +33656,0,0.511255,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,12.270116,0.15,4 +11773,1,0.145916,2,0,0,2,4,DIV,3,2,Rotunda,Dr,1577009,2.647,2.793,0,3.501989,6,4.5 +22563,-1,0.091608,0,2,0,2,4,DIV,3,2,Rotunda,Dr,4706236,0,0.092,0,2.198583,6,4.5 +15831,1,0.176369,2,0,0,1,3,RSF,2,2,W Michigan/Greenfield,RAMP,1600203,0,0.176,0,,5,5 +16782,1,0.194571,2,0,0,1,3,RSF,2,2,Greenfield/E Michigan,RAMP,1600503,0,0.195,0,,5,5 +18256,0,0.157349,2,2,1,2,3,,2,2,Greenfield,,1651002,3.247,3.404,0,3.776382,6,5 +22157,-1,0.180814,0,3,0,2,3,DV2,2,2,Greenfield,,4704562,0,0.181,0,4.339547,6,5 +18253,0,0.047292,3,3,1,2,3,,2,2,Greenfield,,1651002,3.404,3.452,0,1.134997,6,5 +22156,-1,0.043023,0,3,0,2,3,DV2,2,2,Greenfield,,4704562,0.181,0.224,0,1.032542,6,5 +16971,1,0.049194,3,0,0,2,3,DIV,2,2,Michigan,Ave,1600206,19.036,19.086,0,1.180668,6,5 +22860,-1,0.066929,0,4,0,2,3,DIV,2,2,Michigan,Ave,4704788,2.419,2.486,0,1.606307,6,5 +22559,1,0.19812,2,0,0,1,4,,3,2,N Greenfield/E Rotunda,Ramp,4706239,0.008,0.206,0,,6,4.5 +22835,-1,0.192602,0,2,0,1,4,,3,2,W Rotunda/N Greenfield,Ramp,4704807,0.009,0.201,0,,6,4.5 +18283,-1,0.040501,0,2,0,2,3,,3,2,Greenfield,,1651002,2.611,2.652,0,0.97203,5,5 +18297,-1,0.049454,0,2,0,2,3,,3,2,Greenfield,,1651002,2.562,2.611,0,1.186894,5,5 +23483,1,0.040444,2,0,0,2,3,,3,2,Greenfield,,4706242,0.111,0.152,0,0.970658,5,5 +23714,1,0.049517,2,0,0,2,3,,3,2,Greenfield,,4706242,0.062,0.111,0,1.1884,5,5 +18282,0,0.072793,2,2,1,2,3,,3,2,Greenfield,,1651002,2.652,2.725,0,1.747029,5,5 +18376,-1,0.061905,0,2,0,2,3,,3,2,Greenfield,,1651002,2.5,2.562,0,1.485716,5,5 +23713,1,0.061756,2,0,0,2,3,,3,2,Greenfield,,4706242,0,0.062,0,1.482132,5,5 +23715,1,0.00787,2,0,0,1,4,,3,2,N Greenfield/E Rotunda,Ramp,4706239,0,0.008,0,,6,4.5 +22836,-1,0.008484,0,2,0,1,4,,3,2,W Rotunda/N Greenfield,Ramp,4704807,0,0.009,0,,6,4.5 +11761,0,0.178983,3,3,1,2,3,,2,2,Michigan,Ave,1577103,0.105,0.284,0,4.295583,6,5 +32751,0,0.178986,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.295668,0.15,4 +12390,0,0.16376,1,1,0,2,5,,2,2,Chase,Rd,1580503,0.518,0.681,0,3.930235,8.5,4.5 +15259,1,0.22389,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,18.251,18.474,0,5.373351,5,5 +18020,1,0.248177,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.044,4.292,0,5.956256,5,5 +19991,-1,0.221431,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,3.897,4.119,0,5.314346,5,5 +23696,-1,0.0609,0,3,0,2,3,DV2,3,2,Greenfield,,4704562,0.783,0.844,0,1.461611,5,5 +32301,0,0.259562,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.229498,0.15,4 +32755,0,0.307414,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,7.377937,0.15,4 +32759,0,0.164463,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.947101,0.15,4 +32760,0,0.253991,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.095777,0.15,4 +32762,0,0.183852,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.412457,0.15,4 +18090,1,0.213249,3,0,0,2,3,DV2,2,2,Greenfield,,1651002,3.831,4.044,0,5.117975,6,5 +22826,-1,0.215927,0,3,0,2,3,DV2,2,2,Greenfield,,4704562,0.38,0.596,0,5.182243,6,5 +32729,0,0.265635,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.375245,0.15,4 +32756,0,0.263302,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.319247,0.15,4 +32761,0,0.263679,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.328297,0.15,4 +14831,0,0.019886,2,2,0,2,4,,2,2,Hubbard,Dr,1594801,1.878,1.898,0,0.477268,8,4.5 +23697,-1,0.187425,0,3,0,2,3,DV2,3,2,Greenfield,,4704562,0.596,0.783,0,4.4982,5,5 +13853,1,0.175881,2,0,0,1,3,RSF,3,2,W M 153/Greenfield,RAMP,1589607,0,0.176,0,,5,5 +13989,1,0.199395,2,0,0,1,3,RSF,3,2,Greenfield/E M 153,RAMP,1589605,0,0.199,0,,5,5 +17995,1,0.223084,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.468,4.691,0,5.354018,5,5 +32298,0,0.316158,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.587801,0.15,4 +32299,0,0.251189,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.028547,0.15,4 +32300,0,0.297234,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.133608,0.15,4 +17998,1,0.11855,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.35,4.468,0,2.845197,5,5 +23693,-1,0.118312,0,3,0,2,3,DV2,3,2,Greenfield,,4704562,0.902,1.02,0,2.839494,5,5 +18004,1,0.057802,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.292,4.35,0,1.387247,5,5 +23695,-1,0.058091,0,3,0,2,3,DV2,3,2,Greenfield,,4704562,0.844,0.902,0,1.39418,5,5 +14017,1,0.010602,2,0,0,1,3,RSF,3,2,E M 153/Greenfield,RAMP,1589606,0.279,0.289,0,,5,5 +13658,1,0.010961,2,0,0,1,3,RSF,3,2,Greenfield/W M 153,RAMP,1589608,0,0.011,0,,5,5 +19992,-1,0.098831,0,4,0,2,3,DIV,3,2,Ford,Rd,1924107,3.798,3.897,0,2.371946,5,5 +15535,1,0.072984,4,0,0,2,3,DIV,3,2,Ford,Rd,1595510,18.178,18.251,0,1.75161,5,5 +12096,0,0.0583,1,1,0,2,5,,2,2,Schlaff,Ave,1580505,0.564,0.622,0,1.399191,8.5,4.5 +12188,0,0.201251,1,1,0,2,5,,2,2,Chase,Rd,1580503,0.317,0.518,0,4.830027,8.5,4.5 +11759,0,0.081577,2,2,1,2,3,,2,2,Michigan,Ave,1577103,0.375,0.456,0,1.957854,6,5 +12310,0,0.247948,1,1,0,2,5,,2,2,Schlaff,Ave,1580505,0.316,0.564,0,5.950749,8.5,4.5 +11937,0,0.357926,1,1,0,2,5,,3,2,Chase,Rd,1580503,0.703,1.061,0,8.590229,8,4.5 +12095,0,0.021614,1,1,0,2,5,,2,2,Chase,Rd,1580503,0.681,0.703,0,0.518735,8.5,4.5 +11042,1,0.8103,3,0,0,1,1,,3,2,E I 94,,1576405,20.768,21.578,0,,0.58,7 +11768,0,0.144952,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,3.958,4.103,0,3.478849,6,4.5 +11769,0,0.419954,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,3.538,3.958,0,10.078902,6,4.5 +14385,-1,0.749525,0,3,0,1,1,,3,2,W I 94,,1588802,20.794,21.544,0,,0.58,7 +18956,0,0.171,1,1,0,2,5,,2,2,Prospect,Ave,1653505,0,0.171,0,4.103992,8.5,4.5 +23127,0,0.18749,2,2,1,2,3,,3,2,Schaefer,Rd,4706528,2.478,2.666,0,4.499761,5,5 +18738,0,0.157935,1,1,0,1,5,,3,2,Rotunda/Schaefer Cutoff,,1648603,0,0.158,0,,8,4.5 +37758,1,0.137243,2,0,0,2,3,DV2,3,2,Schaefer,Rd,4706528,1.509,1.646,0,3.293829,5,5 +13710,-1,0.17121,0,3,0,1,1,,3,2,W I 94,,1588802,20.623,20.794,0,,0.58,7 +11770,0,0.10175,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,3.436,3.538,0,2.44199,6,4.5 +32712,0,0.10061,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.414646,0.15,4 +18696,0,0.16704,1,1,0,2,5,,2,2,Prospect,Ave,1648607,0.272,0.439,0,4.008964,8.5,4.5 +22982,0,0.219865,2,2,1,2,3,,3,2,Schaefer,Rd,4706528,2.666,2.885,0,5.276753,5,5 +12550,0,0.107266,1,1,0,2,5,,2,2,Schlaff,Ave,1580505,0,0.107,0,2.574377,8.5,4.5 +18726,0,0.096534,1,1,0,1,5,,3,2,Schaefer/Rotunda Cutoff,,1648604,0,0.097,0,,8,4.5 +18725,0,0.036246,1,1,0,2,5,,2,2,Maple,Rd,1648605,0.035,0.071,0,0.869904,8.5,4.5 +22632,0,0.121247,2,2,1,2,3,,2,2,Schaefer,Rd,4706528,2.913,3.035,0,2.909937,6,5 +22779,0,0.028054,2,2,1,2,3,,2,2,Schaefer,Rd,4706528,2.885,2.913,0,0.673303,6,5 +10828,1,0.345874,3,0,0,1,1,,3,2,E I 94,,1576405,21.578,21.924,0,,0.58,7 +11767,0,0.153301,2,2,1,2,4,,3,2,Rotunda,Dr,1577009,4.103,4.256,0,3.679217,6,4.5 +11783,1,0.19358,1,0,0,1,1,RON,3,2,Rotunda/E I 94,RAMP,1577008,0,0.194,0,,1.09,4 +14102,1,0.104965,1,0,0,1,1,ROF,3,2,W I 94/Rotunda,RAMP,1589004,0,0.105,0,,3.07,5 +11755,0,0.239068,2,2,1,2,3,,2,2,Michigan,Ave,1577103,0.808,1.047,0,5.73764,6,5 +12015,1,0.141759,2,0,0,2,4,DV2,2,2,Oakman,Blvd,1580701,0.226,0.368,0,3.402208,8,4.5 +13211,-1,0.141481,0,4,0,2,4,DV2,2,2,Oakman,Blvd,1580610,0.414,0.555,0,3.395554,8,4.5 +15095,1,0.185575,4,0,0,2,3,DIV,2,2,Ford,Rd,1595510,18.972,19.158,0,4.453798,6,5 +19987,-1,0.176991,0,4,0,2,3,DIV,2,2,Ford,Rd,1924107,4.742,4.919,0,4.247787,6,5 +22841,0,0.250637,2,2,0,2,3,,2,2,Schaefer,Rd,4706528,3.514,3.764,0,6.015283,6,5 +30649,0,0.244386,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.865267,0.15,4 +30961,0,0.29725,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,7.133994,0.15,4 +32764,0,0.203457,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.882971,0.15,4 +32766,0,0.241241,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.789777,0.15,4 +33337,0,0.276918,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.646024,0.15,4 +11756,0,0.147014,2,2,1,2,3,,2,2,Michigan,Ave,1577103,0.661,0.808,0,3.528343,6,5 +23123,0,0.236392,2,2,0,2,3,,2,2,Schaefer,Rd,4706528,3.277,3.514,0,5.673398,6,5 +30647,0,0.30008,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,7.201926,0.15,4 +32753,0,0.243516,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.844373,0.15,4 +11757,0,0.043947,2,2,1,2,3,,2,2,Michigan,Ave,1577103,0.617,0.661,0,1.054726,6,5 +15330,1,0.238674,4,0,0,2,3,DIV,2,2,Ford,Rd,1595510,18.734,18.972,0,5.728182,6,5 +19989,-1,0.248867,0,4,0,2,3,DIV,2,2,Ford,Rd,1924107,4.368,4.617,0,5.972799,6,5 +22489,0,0.336153,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,3.785,4.121,0,8.067682,5,5 +19988,-1,0.125402,0,4,0,2,3,DIV,2,2,Ford,Rd,1924107,4.617,4.742,0,3.009651,6,5 +22702,0,0.02044,2,2,0,2,3,,2,2,Schaefer,Rd,4706528,3.764,3.785,0,0.490551,6,5 +11622,0,0.184381,2,2,1,2,4,,2,2,Oakman,Blvd,1580610,0,0.184,0,4.425149,8,4.5 +11754,0,0.154362,2,2,1,2,3,,2,2,Michigan,Ave,1577103,1.047,1.201,0,3.704677,6,5 +14739,0,0.174829,2,2,0,2,4,,2,2,Miller,Rd,1589801,2.558,2.733,0,4.195885,8,4.5 +30648,0,0.158593,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,3.806229,0.15,4 +32763,0,0.149612,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,3.590679,0.15,4 +32765,0,0.208479,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.003485,0.15,4 +30637,0,0.240991,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.783777,0.15,4 +14740,0,0.006695,2,2,0,2,4,,2,2,Miller,Rd,1589801,2.552,2.558,0,0.160686,8,4.5 +11623,-1,0.229607,0,4,0,2,4,DV2,2,2,Oakman,Blvd,1580610,0.184,0.414,0,5.510558,8,4.5 +11752,0,0.132106,3,3,1,2,3,,2,2,Michigan,Ave,1577103,1.209,1.341,0,3.170552,6,5 +12014,1,0.225899,2,0,0,2,4,DV2,2,2,Oakman,Blvd,1580701,0,0.226,0,5.421577,8,4.5 +11753,0,0.007539,3,3,1,2,3,,2,2,Michigan,Ave,1577103,1.201,1.209,0,0.180936,6,5 +11751,0,0.037294,3,3,1,2,3,,2,2,Michigan,Ave,1577103,1.341,1.378,0,0.895066,6,5 +15627,0,0.062807,3,3,1,2,3,,2,2,Ford,Rd,1595510,19.277,19.34,0,1.507372,6,5 +15676,1,0.058356,4,0,0,2,3,DIV,2,2,Ford,Rd,1595510,19.218,19.277,0,1.40054,6,5 +14845,1,0.060488,4,0,0,2,3,DIV,2,2,Ford,Rd,1595510,19.158,19.218,0,1.451715,6,5 +15327,0,0.011011,3,3,1,2,3,,2,2,Ford,Rd,1595510,19.34,19.351,0,0.264273,6,5 +19043,0,0.184708,1,1,0,2,5,,3,2,Great Lakes,Ave,1708110,0.201,0.386,0,4.432994,8,4.5 +20782,0,0.632211,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,14.156,14.788,0,15.173066,5,5 +32699,0,0.377122,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.050929,0.15,4 +32773,0,0.402446,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.658713,0.15,4 +19892,0,0.383813,2,2,1,2,3,,3,2,Biddle,Ave,4302169,12.468,12.852,0,9.211515,5,5 +20478,0,0.356116,2,2,1,2,3,,3,2,Biddle,Ave,4302169,13.176,13.532,0,8.546778,5,5 +31938,0,0.33194,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.966556,0.15,4 +32702,0,0.286186,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.868466,0.15,4 +33813,0,0.204065,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.89755,0.15,4 +33991,0,0.453091,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.874186,0.15,4 +13041,0,0.31987,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.478,7.798,0,7.676868,6,4.5 +18852,0,0.451092,1,1,0,2,5,,3,2,3rd,St,1661508,0.827,1.278,0,10.826219,8,4.5 +24242,0,0.450557,1,1,0,2,5,,3,2,2nd,St,4711051,0.451,0.901,0,10.813379,8,4.5 +24544,0,0.524983,1,1,0,2,5,,3,2,4th,St,5491107,0.922,1.447,0,12.599596,8,4.5 +32027,0,0.430343,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.328226,0.15,4 +32028,0,0.159908,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.837799,0.15,4 +33992,0,0.357176,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.572233,0.15,4 +30433,0,0.157835,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.788047,0.15,4 +30619,0,0.071788,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.722907,0.15,4 +24119,0,0.011323,1,1,0,2,5,,3,2,4th,St,5491107,0.911,0.922,0,0.271761,8,4.5 +30618,0,0.026854,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.644502,0.15,4 +12868,0,0.079905,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.881,7.961,0,1.917727,6,4.5 +20714,0,0.324371,2,2,1,2,3,,3,2,Biddle,Ave,4302169,12.852,13.176,0,7.784902,5,5 +12686,0,0.083037,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.798,7.881,0,1.992897,6,4.5 +12518,0,0.10312,1,1,1,2,4,,3,2,Ford,Ave,1578505,7.961,8.064,0,2.474885,6,4.5 +20092,0,0.268474,2,2,1,2,3,,3,2,Biddle,Ave,4302169,13.887,14.156,0,6.443382,5,5 +24357,0,0.439293,1,1,0,2,5,,3,2,Goddard,Rd,5491821,0.487,0.926,0,10.543041,8,4.5 +32703,0,0.286011,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.864271,0.15,4 +33744,0,0.394649,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.471569,0.15,4 +31983,0,0.355854,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.54049,0.15,4 +20289,0,0.355095,2,2,1,2,3,,3,2,Biddle,Ave,4302169,13.532,13.887,0,8.522284,5,5 +15277,0,0.377767,1,1,0,2,5,,3,2,Emmons,Blvd,1593310,1.987,2.365,0,9.066404,8,4.5 +20241,0,0.072357,2,2,1,2,3,,3,2,Biddle,Ave,4302169,12.396,12.468,0,1.736559,5,5 +20139,0,0.463788,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,15.258,15.722,0,11.130909,5,5 +22682,0,0.286111,1,1,0,2,5,,3,2,Visger,Rd,4705487,0.519,0.805,0,6.866659,8,4.5 +24332,0,0.273296,2,2,1,2,3,,3,2,Southfield,Rd,4710185,1.298,1.571,0,6.559098,5,5 +24390,1,0.434984,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,2.864,3.299,0,10.439607,5,5 +24392,1,0.276304,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,2.216,2.492,0,6.631286,5,5 +24470,1,0.276388,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,0.804,1.081,0,6.633301,5,5 +24472,1,0.431559,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,0,0.431,0,10.357409,5,5 +32767,0,0.510968,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.263238,0.15,4 +32769,0,0.476788,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.442902,0.15,4 +32770,0,0.310079,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.441892,0.15,4 +24336,0,0.244269,2,2,1,2,3,,3,2,Southfield,Rd,4710185,0.906,1.151,0,5.862446,5,5 +31939,0,0.521029,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.504687,0.15,4 +33743,0,0.497582,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.94197,0.15,4 +18860,0,0.295389,1,1,0,2,5,,3,2,River,Dr,1660207,1.353,1.648,0,7.089347,8,4.5 +18862,0,0.219965,1,1,0,2,5,,3,2,River,Dr,1660207,1.133,1.353,0,5.279154,8,4.5 +24335,0,0.147284,2,2,1,2,3,,3,2,Southfield,Rd,4710185,1.151,1.298,0,3.534824,5,5 +31988,0,0.18172,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.36127,0.15,4 +32768,0,0.029863,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.716723,0.15,4 +24391,1,0.37212,3,0,0,2,3,DV2,3,2,Outer,Dr,4710093,2.492,2.864,0,8.930891,5,5 +24471,1,0.373016,3,0,0,2,3,DV2,3,2,Outer,Dr,4710092,0.431,0.804,0,8.952383,5,5 +23267,0,0.188799,1,1,0,2,5,,3,1,Visger,St,4705487,0.182,0.371,0,4.531177,8,4.5 +30805,0,0.359513,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.628316,0.15,4 +31954,0,0.345705,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.296928,0.15,4 +24393,1,0.288411,3,0,0,2,3,DV2,3,1,Outer,Dr,4710093,1.927,2.216,0,6.921872,5,5 +24469,1,0.284143,3,0,0,2,3,DV2,3,1,Outer,Dr,4710092,1.081,1.365,0,6.819433,5,5 +15746,1,0.293294,3,0,0,2,3,DIV,3,1,Fort,St,1592105,14.146,14.439,0,7.039047,5,5 +23608,0,0.181932,1,1,0,2,5,,3,1,Visger,St,4705487,0,0.182,0,4.366372,8,4.5 +31952,0,0.318149,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.635572,0.15,4 +31953,0,0.195158,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.683797,0.15,4 +31955,0,0.216731,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.201551,0.15,4 +22960,0,0.147984,1,1,0,2,5,,3,1,Visger,St,4705487,0.371,0.519,0,3.551626,8,4.5 +20534,0,0.456478,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,14.788,15.244,0,10.955482,5,5 +24331,0,0.156291,2,2,1,2,3,,3,2,Southfield,Rd,4710185,1.571,1.727,0,3.75099,5,5 +20341,0,0.013984,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,15.244,15.258,0,0.335609,5,5 +20594,0,0.74851,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,15.905,16.653,0,17.964247,5,5 +23675,0,0.6015,1,1,0,2,5,,3,2,Visger,Rd,4705487,0.805,1.406,0,14.436001,8,4.5 +31945,0,0.348489,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.363747,0.15,4 +31947,0,0.574298,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.783161,0.15,4 +31960,0,0.470132,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.283179,0.15,4 +32772,0,0.42024,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.085758,0.15,4 +20834,0,0.182988,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,15.722,15.905,0,4.391704,5,5 +19141,0,0.200846,1,1,0,2,5,,3,2,Great Lakes,Ave,1708110,0,0.201,0,4.820311,8,4.5 +32701,0,0.050764,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.218336,0.15,4 +20389,0,0.114683,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,16.653,16.767,0,2.752383,5,5 +33593,0,0.227428,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.458263,0.15,4 +33591,0,0.833122,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,19.994931,0.15,4 +17951,0,0.362205,1,1,0,2,5,,3,2,Marion Industrial,Hwy,1708204,1.167,1.529,0,8.692912,8,4.5 +11532,1,0.578784,3,0,0,1,1,,3,1,E I 94,,1576405,23.567,24.145,0,,0.58,7 +11667,1,0.122106,1,0,0,1,1,RON,3,1,Cecil/E I 94,RAMP,1577204,0,0.122,0,,1.09,4 +11671,0,0.094566,1,1,0,2,5,,3,1,Cecil,St,1577203,0,0.095,0,2.269579,8,4.5 +11680,0,0.17057,2,2,0,2,4,,3,1,Central,St,1577202,1.573,1.744,0,4.093684,6,4.5 +11688,0,0.09796,1,1,0,2,5,,3,1,Central,St,1577202,0,0.098,0,2.351033,8,4.5 +11740,0,0.291989,3,3,1,2,3,,3,1,Michigan,Ave,1577103,2.881,3.173,0,7.007743,5,5 +12409,0,0.039895,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,0.577,0.616,0,0.957475,6,4.5 +12474,-1,0.35606,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.144,0.5,0,8.545442,5,5 +13439,0,0.489725,2,2,1,2,3,,3,1,Fort,St,1585010,1.415,1.904,0,11.753407,5,5 +13444,0,0.315022,2,2,0,2,3,,3,1,Fort,St,1585010,0.425,0.74,0,7.560537,5,5 +14043,1,0.179386,1,0,0,1,1,ROF,3,1,W I 94/Cecil,RAMP,1589006,0,0.179,0,,2.24,5 +14066,-1,0.656475,0,3,0,1,1,,3,1,W I 94,,1588802,23.501,24.157,0,,0.58,7 +14716,0,0.177908,1,1,0,2,5,,3,1,Waterman,St,1590002,0.415,0.593,0,4.269793,8,4.5 +14719,0,0.110923,1,1,0,2,4,,3,1,Springwells,St,1589810,0.919,1.03,0,2.66215,6,4.5 +14725,0,0.384116,1,1,0,2,5,,3,1,Lawndale,St,1589808,0.487,0.871,0,9.218794,8,4.5 +14726,0,0.100951,1,1,0,2,5,,3,1,Lawndale,St,1589808,0.386,0.487,0,2.422813,8,4.5 +14729,0,0.458948,1,1,0,2,5,,3,1,Woodmere,St,1589805,0.575,1.033,0,11.014756,8,4.5 +14731,0,0.265738,1,1,0,2,5,,3,1,Woodmere,St,1589805,0.194,0.459,0,6.377706,8,4.5 +14747,1,0.706696,2,0,0,2,4,DV2,3,2,Miller,Rd,1589801,0.698,1.405,0,16.960698,6,4.5 +14776,1,0.535719,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0.082,0.618,0,12.85725,8,4.5 +14833,1,0.522716,4,0,0,1,1,,3,1,N I 75,,1592010,19.02,19.543,0,,0.58,7 +14881,-1,1.511769,0,4,0,1,1,,3,1,S I 75,,1595106,16.376,17.887,0,,0.58,7 +15028,-1,0.524799,0,4,0,1,1,,3,1,S I 75,,1595106,19.032,19.557,0,,0.58,7 +15217,1,1.242664,4,0,0,1,1,,3,1,N I 75,,1592010,16.587,17.83,0,,0.58,7 +16300,0,0.174847,1,1,0,2,5,,3,1,Chamberlain,St,1611603,0,0.175,0,4.196326,8,4.5 +16325,0,0.331374,2,2,0,2,4,,3,1,John Kronk,St,1610302,0.493,0.825,0,7.95298,6,4.5 +16535,0,0.108125,1,1,0,2,5,,3,1,Lafayette,Blvd,1611306,0,0.108,0,2.594996,8,4.5 +16808,0,0.33856,1,1,0,2,5,,3,1,Chamberlain,St,1611603,0.35,0.689,0,8.125445,8,4.5 +16826,-1,0.207633,0,2,0,2,5,,3,1,W I 94 Service Drive,,1610609,0.252,0.46,0,4.983202,8,4.5 +17347,0,0.254764,2,2,0,2,3,,3,1,Dix,St,1627003,2.83,3.085,0,6.114333,5,5 +17354,0,0.182275,2,2,0,2,3,,3,2,Dix,Ave,1627003,1.494,1.676,0,4.374598,5,5 +17646,-1,0.1029,0,1,0,2,4,,3,2,Vernor,Ave,1651306,0.086,0.189,0,2.46959,6,4.5 +20882,0,0.247379,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,17.06,17.308,0,5.937085,5,5 +22605,-1,0.478847,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0.482,0.961,0,11.492324,8,4.5 +22764,0,0.308093,2,2,0,2,4,,3,2,Ferney,Ave,4704830,0.102,0.41,0,7.394241,6,4.5 +23308,1,0.09415,1,0,0,2,4,,3,2,Vernor,Ave,4706187,0,0.094,0,2.259596,6,4.5 +23566,0,0.342264,2,2,0,2,5,,3,1,Dearborn,St,4706467,0.688,1.03,0,8.214347,8,4.5 +30615,0,0.246878,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.925069,0.15,4 +32876,0,0.206263,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.950314,0.15,4 +32878,0,0.425855,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.220518,0.15,4 +32882,0,0.378776,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.090627,0.15,4 +32885,0,0.435428,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.450269,0.15,4 +33822,0,0.228372,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.480921,0.15,4 +33843,0,0.316113,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.586713,0.15,4 +14198,0,0.444045,2,2,0,2,3,,3,1,Schaefer,,1589705,0.398,0.842,0,10.657072,5,5 +14748,0,0.424823,2,2,1,2,4,,3,2,Miller,Rd,1589801,0.273,0.698,0,10.19575,6,4.5 +17355,0,0.235129,2,2,0,2,3,,3,2,Dix,Ave,1627003,1.259,1.494,0,5.643088,5,5 +17360,0,0.370782,2,2,0,2,3,,3,1,Dix,St,1627003,0.213,0.583,0,8.898761,5,5 +39931,1,0.084067,2,0,0,1,3,,3,1,Ambassador,Brg,4718953,0.068,0.152,0,,5,5 +21275,0,0.245821,2,2,0,2,3,,3,1,Fort,St,4700047,0.275,0.521,0,5.899706,5,5 +39936,1,0.468908,2,0,0,1,3,,3,1,DIBC Inspection to I 75,,4719479,0,0.469,0,,5,5 +31944,0,0.24869,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.968548,0.15,4 +13305,1,0.215528,1,0,0,1,1,ROF,3,1,S I 75/S Schaefer,RAMP,1581401,0,0.216,0,,2.24,5 +13307,1,0.236772,1,0,0,1,1,RON,3,1,N Fort/N I 75,RAMP,1581403,0,0.237,0,,1.09,4 +14157,1,0.153625,1,0,0,1,1,RON,3,1,Schaefer/N I 75,RAMP,1589704,0,0.154,0,,1.09,4 +14203,0,0.064624,2,2,1,2,3,,3,1,Schaefer,,1589705,0.038,0.103,0,1.550966,5,5 +14945,1,0.19917,1,0,0,1,1,ROF,3,1,S I 75/N Schaefer,RAMP,1595210,0,0.199,0,,2.24,5 +15128,-1,0.19818,0,3,0,1,1,,3,1,S I 75,,1595106,16.178,16.376,0,,0.58,7 +15303,1,0.131634,1,0,0,1,1,ROF,3,1,N I 75/Schaefer,RAMP,1592004,0,0.132,0,,2.24,5 +15367,-1,0.447178,0,3,0,2,3,DIV,3,1,Fort,St,1592106,14.927,15.374,0,10.732266,5,5 +15588,1,0.384819,3,0,0,1,1,,3,1,N I 75,,1592010,16.203,16.587,0,,0.58,7 +15660,1,0.13411,3,0,0,1,1,,3,1,N I 75,,1592010,16.069,16.203,0,,0.58,7 +15664,-1,0.273628,0,3,0,2,3,DIV,3,1,Fort,St,1592106,14.589,14.863,0,6.567078,5,5 +15745,1,0.31336,3,0,0,2,3,DIV,3,1,Fort,St,1592105,14.755,15.068,0,7.520639,5,5 +21274,1,0.275027,3,0,0,2,3,DIV,3,1,Fort,St,4700047,0,0.275,0,6.600656,5,5 +23299,0,0.228533,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0,0.229,0,5.484786,5,5 +31951,0,0.316374,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.592983,0.15,4 +32775,0,0.586167,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.06801,0.15,4 +33809,0,0.345306,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.287344,0.15,4 +15240,1,0.261154,1,0,0,1,1,RON,3,1,Schaefer/S I 75,RAMP,1592008,0.042,0.303,0,,1.09,4 +15785,-1,0.229085,0,3,0,1,1,,3,1,S I 75,,1595106,15.948,16.178,0,,0.58,7 +14778,1,0.041641,1,0,0,1,1,RON,3,1,Schaefer/S I 75,RAMP,1592008,0,0.042,0,,1.09,4 +22237,-1,0.04745,0,1,0,1,1,RON,3,1,N Schaefer/S I 75,RAMP,4704090,0,0.048,0,,1.09,4 +13771,0,0.019888,2,2,1,2,3,,3,1,Schaefer,,1589705,0.018,0.038,0,0.47732,5,5 +13954,0,0.018045,2,2,1,2,3,,3,1,Schaefer,,1589705,0,0.018,0,0.433078,5,5 +17361,0,0.212528,1,1,0,2,4,,3,1,Dix,St,1627003,0,0.213,0,5.100674,6,4.5 +17433,0,0.165121,2,2,0,2,3,,3,1,Oakwood,Blvd,1648503,0.941,1.106,0,3.962905,5,5 +23213,0,0.176045,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0.229,0.405,0,4.225079,5,5 +23047,0,0.141084,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,0.405,0.546,0,3.386024,5,5 +13814,0,0.179298,2,2,0,2,3,,3,1,Schaefer,,1589705,0.219,0.398,0,4.303142,5,5 +31949,0,0.096709,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.321016,0.15,4 +13816,0,0.019487,2,2,0,2,3,,3,1,Schaefer,,1589705,0.147,0.167,0,0.467696,5,5 +15469,1,0.115698,3,0,0,2,3,DIV,3,1,Fort,St,1592105,15.068,15.184,0,2.776743,5,5 +15286,1,0.04431,1,0,0,1,1,ROF,3,1,N I 75/Fort,RAMP,1592005,0,0.044,0,,2.24,5 +15298,1,0.086274,1,0,0,1,1,ROF,3,1,N I 75/Schaefer,RAMP,1592004,0.132,0.218,0,,2.24,5 +15661,-1,0.064358,0,3,0,2,3,DIV,3,1,Fort,St,1592106,14.863,14.927,0,1.54459,5,5 +13987,0,0.02339,2,2,0,2,3,,3,1,Schaefer,,1589705,0.195,0.219,0,0.561368,5,5 +14202,0,0.028659,2,2,0,2,3,,3,1,Schaefer,,1589705,0.167,0.195,0,0.68781,5,5 +13988,0,0.044789,2,2,1,2,3,,3,1,Schaefer,,1589705,0.103,0.147,0,1.074943,5,5 +14911,1,0.061512,3,0,0,2,3,DIV,3,1,Fort,St,1592105,15.184,15.245,0,1.476285,5,5 +17358,0,0.439424,2,2,0,2,3,,3,1,Dix,Ave,1627003,0.63,1.069,0,10.546188,5,5 +17359,0,0.046435,2,2,0,2,3,,3,1,Dix,St,1627003,0.583,0.63,0,1.114438,5,5 +17356,0,0.133408,2,2,0,2,3,,3,2,Dix,Ave,1627003,1.126,1.259,0,3.201797,5,5 +17357,0,0.056717,2,2,0,2,3,,3,2,Dix,Ave,1627003,1.069,1.126,0,1.361208,5,5 +13809,0,0.474152,2,2,0,2,3,,3,2,Coolidge,Hwy,1589705,0.868,1.342,0,11.379637,5,5 +13982,0,0.026404,2,2,0,2,3,,3,2,Coolidge,Hwy,1589705,0.842,0.868,0,0.633697,5,5 +22137,0,0.496558,2,2,0,2,3,,3,1,Fort,St,4700047,0.521,1.017,0,11.917388,5,5 +13445,0,0.274017,3,3,0,2,3,,3,1,Fort,St,1585010,0.152,0.425,0,6.576401,5,5 +17362,0,0.151941,1,1,0,2,5,,3,1,Flora,St,1626507,0,0.152,0,3.646578,8,4.5 +23135,0,0.647733,1,1,0,2,5,,3,2,Industrial,Ave,4706467,1.359,2.006,0,15.545596,8,4.5 +23379,0,0.328454,1,1,0,2,5,,3,1,Dearborn,St,4706467,1.03,1.359,0,7.882902,8,4.5 +13446,0,0.13303,2,2,0,2,3,,3,1,Fort,St,1585010,0.019,0.152,0,3.192714,5,5 +14036,0,0.049508,1,1,0,2,5,,3,1,Reisener,St,1589801,0,0.05,0,1.188181,8,4.5 +40025,1,0.036305,1,0,0,2,3,,4,3,Orchard lake / W 14 MIle cutof,Rd,5500007,0,0.036,0,0.871328,3.7,5 +13447,0,0.01857,2,2,1,2,3,,3,1,Fort,St,1585010,0,0.019,0,0.445684,5,5 +14749,0,0.224014,2,2,1,2,4,,3,1,Miller,Rd,1589801,0.05,0.273,0,5.376325,6,4.5 +18601,0,0.060143,1,1,0,2,4,,3,2,Vernor,Ave,1651306,0.026,0.086,0,1.443432,6,4.5 +22768,0,0.101765,1,1,0,2,4,,3,2,Ferney,Ave,4704830,0,0.102,0,2.442363,6,4.5 +19065,0,0.026163,1,1,0,2,5,,3,2,Vernor,Ave,1651306,0,0.026,0,0.627922,8,4.5 +14733,0,0.169789,1,1,0,2,5,,3,1,Forman,St,1589802,0.122,0.291,0,4.074943,8,4.5 +14730,0,0.115234,1,1,0,2,5,,3,1,Woodmere,St,1589805,0.459,0.575,0,2.765619,8,4.5 +32785,0,0.218506,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.244151,0.15,4 +10815,1,0.51371,3,0,0,1,1,,3,1,E I 94,,1576405,23.053,23.567,0,,0.58,7 +11700,0,0.120026,1,1,0,2,4,,3,1,Lonyo,St,1577110,0.237,0.357,0,2.880618,6,4.5 +11743,0,0.105752,3,3,1,2,3,,3,1,Michigan,Ave,1577103,2.203,2.309,0,2.53804,5,5 +12651,0,0.155484,2,2,0,2,4,,3,1,McGraw,St,1581903,0.428,0.584,0,3.731612,6,4.5 +13005,1,0.137257,1,0,0,1,1,ROF,3,1,W I 94/Addison,RAMP,1581703,0,0.137,0,,2.24,5 +13957,-1,0.432546,0,3,0,1,1,,3,1,W I 94,,1588802,22.765,23.197,0,,0.58,7 +14396,0,0.252884,2,2,0,2,4,,3,2,Wyoming,Ave,1589610,0.058,0.311,0,6.06922,6,4.5 +16061,0,0.177761,2,2,0,2,4,,3,1,John Kronk,St,1610302,0,0.178,0,4.266269,6,4.5 +17553,0,0.586836,2,2,0,2,4,,3,2,Southern,Ave,1653407,0.233,0.819,0,14.084074,6,4.5 +30482,0,0.235081,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.641934,0.15,4 +32409,0,0.298979,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.175506,0.15,4 +32880,0,0.288677,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.928242,0.15,4 +14744,1,0.336973,2,0,0,2,4,DV2,3,2,Miller,Rd,1589801,1.577,1.914,0,8.087362,6,4.5 +14746,1,0.160356,2,0,0,2,4,DV2,3,2,Miller,Rd,1589801,1.405,1.565,0,3.848532,6,4.5 +18481,-1,0.245924,0,2,0,2,5,,3,2,Eagle,Pass,4719116,0.013,0.259,0,5.902165,8,4.5 +18960,1,0.187652,2,0,0,2,5,,3,2,Wren,St,4719115,0.013,0.201,0,4.503645,8,4.5 +24564,0,0.039057,2,2,0,2,4,,3,2,Wyoming,Ave,1653404,0.334,0.373,0,0.937374,6,4.5 +24565,0,0.423554,2,2,0,2,4,,3,2,Wyoming,Ave,1653404,0.373,0.797,0,10.165295,6,4.5 +14745,1,0.012444,2,0,0,2,4,DV2,3,2,Miller,Rd,1589801,1.565,1.577,0,0.298661,6,4.5 +18484,0,0.216888,1,1,0,2,4,,3,2,Southern,Ave,1653407,0.016,0.233,0,5.205323,6,4.5 +24203,0,0.168808,1,1,0,1,4,,3,2,Service,Dr,4711170,0,0.169,0,,6,4.5 +24204,0,0.174956,1,1,0,1,4,,3,2,Service,Dr,4711169,0,0.175,0,,6,4.5 +34117,0,0.250342,2,2,0,2,4,,3,2,Miller,Rd,1589801,2.08,2.33,0,6.008215,6,4.5 +18968,0,0.015915,1,1,0,2,4,,3,2,Southern,Ave,1653407,0,0.016,0,0.38196,6,4.5 +14399,0,0.058017,2,2,0,2,4,,3,2,Southern/Wyoming Connector,,1589610,0,0.058,0,1.392413,6,4.5 +18959,1,0.059245,2,0,0,2,5,,3,2,Wren,St,4719115,0.201,0.26,0,1.42187,8,4.5 +18977,0,0.334437,2,2,0,2,4,,3,2,Wyoming,Ave,1653404,0,0.334,0,8.026491,6,4.5 +22762,0,0.316762,1,1,0,2,5,,3,2,Ferney,Ave,4704830,0.41,0.726,0,7.602297,8,4.5 +32879,0,0.11738,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.817127,0.15,4 +11550,1,0.276272,3,0,0,1,1,,3,2,E I 94,,1576405,22.529,22.805,0,,0.58,7 +11745,0,0.173826,2,2,0,2,3,,3,1,Michigan,Ave,1577103,1.872,2.046,0,4.171812,5,5 +11746,0,0.107891,3,3,1,2,3,,3,2,Michigan,Ave,1577103,1.764,1.872,0,2.589373,5,5 +12391,1,0.281825,1,0,0,1,1,ROF,3,2,W I 94/US 12,RAMP,1580702,0,0.282,0,,2.24,5 +13904,1,0.314463,1,0,0,1,1,ROF,3,2,Wyoming/US 12,RAMP,1589701,0,0.314,0,,2.24,5 +13950,0,0.327552,2,2,0,2,4,,3,2,Wyoming,Ave,1589610,0.321,0.648,0,7.861247,6,4.5 +14214,-1,0.540386,0,3,0,1,1,,3,2,W I 94,,1588802,22.216,22.756,0,,0.58,7 +22315,0,0.025303,2,2,1,2,3,,3,1,Wyoming,Ave,4706472,0.122,0.147,0,0.607271,5,5 +11749,0,0.159808,3,3,1,2,3,,3,2,Michigan,Ave,1577103,1.554,1.714,0,3.835403,5,5 +11764,1,0.396491,2,0,0,1,1,ROF,3,2,E I 94/US 12,RAMP,1577010,0.296,0.692,0,,2.24,5 +12186,1,0.37192,1,0,0,1,1,ROF,3,2,E I 94/Wyoming,RAMP,1580404,0,0.372,0,,2.24,5 +22990,1,0.494416,1,0,0,1,1,RON,3,2,US 12/W I 94,RAMP,4706471,0,0.494,0,,1.09,4 +32416,0,0.255803,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.139282,0.15,4 +12392,1,0.100568,1,0,0,1,1,ROF,3,2,W I 94/US 12,RAMP,1580702,0.282,0.382,0,,2.24,5 +32418,0,0.088411,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.121864,0.15,4 +14153,0,0.009879,2,2,0,2,4,,3,2,Wyoming,Ave,1589610,0.311,0.321,0,0.237094,6,4.5 +37144,1,0.033391,1,0,0,1,1,RON,3,3,Rochester/N I 75,RAMP,682607,0,0.033,0,,1.09,4 +11748,0,0.050312,3,3,1,2,3,,3,2,Michigan,Ave,1577103,1.714,1.764,0,1.20749,5,5 +14095,0,0.038783,2,2,0,2,4,,3,1,Wyoming,Ave,1589610,0.648,0.687,0,0.930798,6,4.5 +11090,1,0.12466,3,0,0,1,1,,3,1,E I 94,,1576405,22.929,23.053,0,,0.58,7 +11704,1,0.110468,1,0,0,1,1,RON,3,1,Wier/E I 94,RAMP,1577108,0,0.11,0,,1.09,4 +11744,0,0.157427,3,3,1,2,3,,3,1,Michigan,Ave,1577103,2.046,2.203,0,3.778237,5,5 +13148,0,0.200655,1,1,0,2,4,,3,1,McGraw,St,1581903,0.076,0.276,0,4.815715,6,4.5 +11302,1,0.123894,3,0,0,1,1,,3,1,E I 94,,1576405,22.805,22.929,0,,0.58,7 +11705,1,0.141059,1,0,0,1,1,RON,3,1,Wyoming/E I 94,RAMP,1577106,0,0.141,0,,1.09,4 +24465,1,0.092533,2,0,0,2,3,,3,1,Weir,St,4711432,0,0.093,0,2.220792,5,5 +13147,0,0.075492,2,2,1,2,3,,3,1,McGraw,St,1581903,0,0.076,0,1.8118,5,5 +22600,0,0.093874,2,2,1,2,3,,3,1,Wyoming,Ave,4706472,0.028,0.122,0,2.252987,5,5 +14161,-1,0.008612,0,3,0,1,1,,3,2,W I 94,,1588802,22.756,22.765,0,,0.58,7 +22820,0,0.027836,2,2,1,2,3,,3,1,Wyoming,Ave,4706472,0,0.028,0,0.668074,5,5 +24306,1,0.037513,2,0,0,2,3,,3,1,Weir,St,4711432,0.093,0.13,0,0.900309,5,5 +11703,0,0.076179,1,1,0,2,4,,3,1,Addison,St,1577109,0,0.076,0,1.828308,6,4.5 +12919,0,0.151983,2,2,0,2,4,,3,1,McGraw,St,1581903,0.276,0.428,0,3.647582,6,4.5 +11702,0,0.048507,1,1,0,2,4,,3,1,Addison,St,1577109,0.076,0.125,0,1.164176,6,4.5 +12841,0,0.36667,1,1,1,2,4,,3,1,Vernor,Hwy,1581909,0,0.367,0,8.800072,6,4.5 +16670,0,0.293146,1,1,0,2,5,,3,1,Woodmere,St,1616904,0,0.293,0,7.035511,8,4.5 +17349,-1,0.510536,0,2,0,2,3,DV2,3,1,Dix,Ave,1627003,2.218,2.729,0,12.252861,5,5 +22925,1,0.515243,2,0,0,2,3,DV2,3,1,Dix,,4706198,0.52,1.035,0,12.36583,5,5 +17350,-1,0.402809,0,2,0,2,3,DV2,3,2,Dix,Ave,1627003,1.816,2.218,0,9.667427,5,5 +17351,-1,0.127682,0,2,0,2,3,DV2,3,2,Dix,Ave,1627003,1.688,1.816,0,3.064364,5,5 +19059,-1,0.054435,0,2,0,2,4,,3,2,Vernor,Ave,1651306,0.189,0.244,0,1.30645,6,4.5 +23139,1,0.127772,2,0,0,2,3,DV2,3,2,Dix,Ave,4706198,0,0.128,0,3.066523,5,5 +23140,1,0.392605,2,0,0,2,3,DV2,3,2,Dix,Ave,4706198,0.128,0.52,0,9.422527,5,5 +23309,1,0.064249,2,0,0,2,4,,3,2,Vernor,Ave,4706187,0.094,0.158,0,1.541983,6,4.5 +17352,0,0.01167,2,2,0,2,3,,3,2,Dix,Ave,1627003,1.676,1.688,0,0.28007,5,5 +19050,0,0.109731,2,2,0,2,4,,3,2,Vernor,Ave,1651306,0.244,0.353,0,2.633545,6,4.5 +16218,0,0.163266,1,1,0,2,5,,3,1,Woodmere,St,1616710,0,0.163,0,3.918384,8,4.5 +16985,0,0.145068,1,1,0,2,5,,3,1,Woodmere,,1616801,0,0.145,0,3.481641,8,4.5 +12568,0,0.202906,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,0.374,0.577,0,4.869749,6,4.5 +12842,0,0.007062,1,1,1,2,4,,3,1,Vernor,Hwy,1581909,0.367,0.374,0,0.169477,6,4.5 +11701,0,0.237068,1,1,0,2,4,,3,1,Lonyo,St,1577110,0,0.237,0,5.689629,6,4.5 +16419,0,0.285218,1,1,0,2,5,,3,1,Woodmere,St,1616904,0.293,0.578,0,6.845226,8,4.5 +32874,0,0.071009,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.704216,0.15,4 +17348,-1,0.101725,0,2,0,2,3,DV2,3,1,Dix,St,1627003,2.729,2.83,0,2.4414,5,5 +22783,1,0.099625,2,0,0,2,3,DV2,3,1,Dix,,4706198,1.035,1.135,0,2.391002,5,5 +23138,0,0.008457,1,1,0,2,4,,3,1,Lonyo,St,4706195,0,0.009,0,0.202979,6,4.5 +11675,0,0.21907,2,2,0,2,5,,3,1,Central,St,1577202,2.348,2.567,0,5.25769,8,4.5 +11678,0,0.428231,2,2,0,2,4,,3,1,Central,St,1577202,1.794,2.223,0,10.277545,6,4.5 +11698,0,0.298568,1,1,0,2,4,,3,1,Lonyo,St,1577110,0.79,1.089,0,7.16562,6,4.5 +11699,0,0.433405,1,1,0,2,4,,3,1,Lonyo,St,1577110,0.357,0.79,0,10.401732,6,4.5 +11741,0,0.358213,3,3,1,2,3,,3,1,Michigan,Ave,1577103,2.523,2.881,0,8.5971,5,5 +16549,0,0.315566,2,2,0,2,4,,3,1,John Kronk,St,1610302,0.178,0.493,0,7.573585,6,4.5 +32417,0,0.395625,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.495006,0.15,4 +33887,0,0.471672,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.320125,0.15,4 +32886,0,0.393358,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.440583,0.15,4 +32884,0,0.080236,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.925668,0.15,4 +11690,1,0.016477,1,0,0,1,1,RON,3,1,Lonyo/E I 94,RAMP,1577201,0,0.016,0,,1.09,4 +11694,0,0.118857,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.186,1.305,0,2.852571,6,4.5 +11696,0,0.019441,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.111,1.13,0,0.466592,6,4.5 +11742,0,0.213573,3,3,1,2,3,,3,1,Michigan,Ave,1577103,2.309,2.523,0,5.12576,5,5 +12487,0,0.331316,2,2,0,2,4,,3,1,McGraw,St,1581903,0.584,0.915,0,7.95159,6,4.5 +14275,1,0.128265,1,0,0,1,1,ROF,3,1,W I 94/Lonyo,RAMP,1589005,0,0.128,0,,2.24,5 +14305,-1,0.303352,0,3,0,1,1,,3,1,W I 94,,1588802,23.197,23.501,0,,0.58,7 +11695,0,0.055616,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.13,1.186,0,1.334783,6,4.5 +11689,1,0.119507,1,0,0,1,1,RON,3,1,Lonyo/E I 94,RAMP,1577201,0.016,0.136,0,,1.09,4 +11697,0,0.02203,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.089,1.111,0,0.528718,6,4.5 +22179,1,0.025261,1,0,0,1,1,RON,3,1,N Lonyo/E I 94,RAMP,4704360,0,0.025,0,,1.09,4 +11679,0,0.050829,2,2,0,2,4,,3,1,Central,St,1577202,1.744,1.794,0,1.2199,6,4.5 +11676,0,0.052384,2,2,0,2,5,,3,1,Central,St,1577202,2.296,2.348,0,1.257207,8,4.5 +16465,-1,0.252253,0,2,0,2,5,,3,1,W I 94 Service Drive,,1610609,0,0.252,0,6.05407,8,4.5 +16546,1,0.251697,1,0,0,2,5,,3,1,E I 94 Service Drive,,1611109,0.056,0.307,0,6.040738,8,4.5 +11677,0,0.073164,2,2,0,2,5,,3,1,Central,St,1577202,2.223,2.296,0,1.755934,8,4.5 +11670,0,0.093417,1,1,0,2,5,,3,1,Cecil,St,1577203,0.095,0.188,0,2.242002,8,4.5 +11669,0,0.055377,1,1,0,2,5,,3,1,Cecil,St,1577203,0.188,0.243,0,1.329058,8,4.5 +14724,0,0.359473,1,1,0,2,4,,3,1,Westend,St,1589810,0.089,0.448,0,8.627341,6,4.5 +20290,0,0.195148,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,18.592,18.787,0,4.683549,5,5 +20479,0,0.473855,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,18.118,18.592,0,11.372524,5,5 +30617,0,0.485238,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.645705,0.15,4 +32698,0,1.052436,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,25.258452,0.15,4 +32777,0,0.319941,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.67859,0.15,4 +18798,0,0.621712,1,1,0,2,5,,3,2,Marion Industrial,Hwy,1708204,0.34,0.961,0,14.921094,8,4.5 +19893,0,0.282254,1,1,0,2,3,,3,1,Jefferson,Ave,4302169,17.743,18.025,0,6.774087,5,5 +20429,0,0.188902,1,1,0,2,3,,3,2,Jefferson,Ave,4302169,17.458,17.646,0,4.533641,5,5 +32694,0,0.484586,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.630065,0.15,4 +33592,0,0.523848,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.572348,0.15,4 +18684,0,0.102716,1,1,0,2,5,,3,2,Marion Industrial,Hwy,1708204,0.237,0.34,0,2.465182,8,4.5 +18683,0,0.124179,1,1,0,2,5,,3,2,Marion Industrial,Hwy,1708204,0.113,0.237,0,2.980305,8,4.5 +20647,0,0.150129,2,2,1,2,3,,3,2,Jefferson,Ave,4302169,17.308,17.458,0,3.603101,5,5 +32771,0,0.181621,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.3589,0.15,4 +32697,0,0.03627,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.870484,0.15,4 +16338,0,0.189091,1,1,0,2,5,,3,1,Brennan,St,1609903,0,0.189,0,4.538174,8,4.5 +20242,0,0.096424,1,1,0,2,3,,3,1,Jefferson,Ave,4302169,17.646,17.743,0,2.314165,5,5 +32695,0,0.418016,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.032396,0.15,4 +20715,0,0.093337,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,18.025,18.118,0,2.24009,5,5 +13440,0,0.309234,2,2,0,2,3,,3,1,Fort,St,1585010,1.106,1.415,0,7.421612,5,5 +14732,0,0.193757,1,1,0,2,5,,3,1,Woodmere,St,1589805,0,0.194,0,4.650173,8,4.5 +15604,1,0.845207,4,0,0,1,1,,3,1,N I 75,,1592010,17.83,18.675,0,,0.58,7 +15773,-1,0.807039,0,4,0,1,1,,3,1,S I 75,,1595106,17.887,18.694,0,,0.58,7 +22538,-1,0.33784,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0,0.338,0,8.10816,8,4.5 +22988,0,0.462765,1,1,0,2,5,,3,1,Dearborn,St,4706467,0,0.463,0,11.106364,8,4.5 +15369,1,0.286847,1,0,0,1,1,RON,3,1,W Dearborn/S I 75,RAMP,1592506,0.056,0.343,0,,1.09,4 +15405,1,0.286203,1,0,0,1,1,ROF,3,1,N I 75/Dearborn,RAMP,1592505,0,0.286,0,,2.24,5 +22497,0,0.118689,2,2,0,2,5,,3,1,Dearborn,St,4706467,0.569,0.688,0,2.848529,8,4.5 +32774,0,0.24566,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.895838,0.15,4 +15154,1,0.056372,1,0,0,1,1,RON,3,1,W Dearborn/S I 75,RAMP,1592506,0,0.056,0,,1.09,4 +22344,1,0.044696,1,0,0,1,1,RON,3,1,E Dearborn/S I 75,RAMP,4701530,0,0.045,0,,1.09,4 +22989,0,0.052052,1,1,0,2,5,,3,1,Dearborn,St,4706467,0.463,0.515,0,1.249237,8,4.5 +22638,0,0.033209,2,2,0,2,5,,3,1,Dearborn,St,4706467,0.536,0.569,0,0.797019,8,4.5 +22853,0,0.021422,2,2,0,2,5,,3,1,Dearborn,St,4706467,0.515,0.536,0,0.51412,8,4.5 +13443,0,0.174918,2,2,0,2,3,,3,1,Fort,St,1585010,0.74,0.915,0,4.198035,5,5 +14728,0,0.268588,1,1,0,2,5,,3,1,Lawndale,St,1589808,0,0.269,0,6.446103,8,4.5 +17098,0,0.175301,1,1,0,2,5,,3,1,Chamberlain,St,1611603,0.175,0.35,0,4.20722,8,4.5 +32783,0,0.169774,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.07458,0.15,4 +33842,0,0.424252,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.182044,0.15,4 +32784,0,0.143707,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.448962,0.15,4 +13442,0,0.175286,2,2,0,2,3,,3,1,Fort,St,1585010,0.915,1.091,0,4.206866,5,5 +13441,0,0.015113,2,2,0,2,3,,3,1,Fort,St,1585010,1.091,1.106,0,0.362723,5,5 +14727,0,0.117955,1,1,0,2,5,,3,1,Lawndale,St,1589808,0.269,0.386,0,2.83092,8,4.5 +13713,1,0.131327,1,0,0,1,1,RON,3,1,Springwells/S I 75,RAMP,1589702,0,0.131,0,,1.09,4 +14720,0,0.091963,1,1,0,2,4,,3,1,Springwells,St,1589810,0.827,0.919,0,2.207119,6,4.5 +14723,0,0.257516,1,1,0,2,4,,3,1,Westend,St,1589810,0.448,0.705,0,6.180392,6,4.5 +14927,1,0.345617,4,0,0,1,1,,3,1,N I 75,,1592010,18.675,19.02,0,,0.58,7 +15132,1,0.14098,1,0,0,1,1,ROF,3,1,N I 75/Springwells,RAMP,1592507,0,0.141,0,,2.24,5 +15502,-1,0.338748,0,4,0,1,1,,3,1,S I 75,,1595106,18.694,19.032,0,,0.58,7 +14721,0,0.078004,1,1,0,2,4,,3,1,Springwells,St,1589810,0.75,0.827,0,1.872102,6,4.5 +15613,1,0.081931,3,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0,0.082,0,1.966352,8,4.5 +15769,1,0.131955,1,0,0,1,1,ROF,3,1,S I 75/Springwells,RAMP,1595301,0,0.132,0,,2.24,5 +22895,-1,0.062376,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0.42,0.482,0,1.49703,8,4.5 +14722,0,0.044059,2,2,0,2,4,,3,1,Springwells,St,1589810,0.705,0.75,0,1.057408,6,4.5 +23187,-1,0.046658,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0.373,0.42,0,1.119797,8,4.5 +23531,-1,0.035477,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0.338,0.373,0,0.851458,8,4.5 +15365,1,0.125542,1,0,0,1,1,RON,3,1,Springwells/N I 75,RAMP,1592508,0,0.126,0,,1.09,4 +20783,0,0.251879,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,19.023,19.275,0,6.0451,5,5 +30614,0,0.163265,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.918372,0.15,4 +30616,0,0.435331,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.447939,0.15,4 +33841,0,0.446584,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.718009,0.15,4 +20093,0,0.236164,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,18.787,19.023,0,5.667926,5,5 +14717,0,0.415567,1,1,0,2,5,,3,1,Waterman,St,1590002,0,0.415,0,9.9736,8,4.5 +20535,0,0.135263,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,19.415,19.55,0,3.246321,5,5 +11682,0,0.287389,2,2,0,2,4,,3,1,Central,St,1577202,1.132,1.419,0,6.897328,6,4.5 +11737,0,0.324613,2,2,1,2,3,,3,1,Michigan,Ave,1577103,3.764,4.089,0,7.790703,5,5 +12021,0,0.132402,2,2,1,2,3,,3,1,Livernois,Ave,1581701,1.889,2.021,0,3.177638,5,5 +12195,0,0.496948,2,2,1,2,3,,3,1,Livernois,Ave,1581701,1.392,1.889,0,11.926764,5,5 +12328,0,0.319098,2,2,0,2,3,,3,1,Vernor,Hwy,1581909,1.534,1.853,0,7.658347,5,5 +12552,0,0.243701,1,1,0,2,5,,3,1,Junction,St,1581110,1.101,1.344,0,5.848834,8,4.5 +14711,0,0.585745,1,1,0,2,5,,3,1,Waterman,St,1590002,0.891,1.477,0,14.057881,8,4.5 +16281,0,0.223096,1,1,0,2,5,,3,1,Toledo,St,1609403,0.176,0.399,0,5.354314,8,4.5 +16304,0,0.1972,1,1,0,2,5,,3,1,Lafayette,Blvd,1611306,0.108,0.305,0,4.73281,8,4.5 +16547,0,0.337676,2,2,0,2,4,,3,1,John Kronk,St,1610302,1.328,1.665,0,8.10423,6,4.5 +16792,0,0.168043,1,1,0,2,5,,3,1,Buchanan,St,1609609,0.221,0.389,0,4.033034,8,4.5 +32779,0,0.351696,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.440696,0.15,4 +32787,0,0.189299,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.543167,0.15,4 +32891,0,0.307824,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.387767,0.15,4 +11685,0,0.263436,1,1,0,2,5,,3,1,Central,St,1577202,0.514,0.778,0,6.322469,8,4.5 +13015,0,0.187716,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,1.059,1.247,0,4.505177,6,4.5 +13231,0,0.169745,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,0.889,1.059,0,4.073876,6,4.5 +16533,0,0.364803,1,1,0,2,4,,3,1,Springwells,St,1611602,0.21,0.575,0,8.755271,6,4.5 +17346,0,0.564949,2,2,0,2,3,,3,1,Dix,St,1627003,3.085,3.65,0,13.558777,5,5 +30286,0,0.269815,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.475567,0.15,4 +32781,0,0.099672,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.392119,0.15,4 +33257,0,0.282344,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.776258,0.15,4 +11956,0,0.222537,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,0.667,0.889,0,5.340895,6,4.5 +32415,0,0.224328,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.383869,0.15,4 +32888,0,0.369243,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.861821,0.15,4 +12114,0,0.050381,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,0.616,0.667,0,1.209153,6,4.5 +11683,0,0.207613,2,2,0,2,4,,3,1,Central,St,1577202,0.924,1.132,0,4.982702,6,4.5 +11684,0,0.146394,2,2,0,2,4,,3,1,Central,St,1577202,0.778,0.924,0,3.513453,6,4.5 +32789,0,0.10073,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.41753,0.15,4 +11686,0,0.25505,1,1,0,2,5,,3,1,Central,St,1577202,0.259,0.514,0,6.121207,8,4.5 +16811,0,0.209882,1,1,0,2,4,,3,1,Springwells,St,1611602,0,0.21,0,5.037177,6,4.5 +11687,0,0.161414,1,1,0,2,5,,3,1,Central,St,1577202,0.098,0.259,0,3.873935,8,4.5 +12757,0,0.264765,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,1.247,1.511,0,6.354357,6,4.5 +32889,0,0.084969,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.039252,0.15,4 +12569,0,0.022721,1,1,0,2,4,,3,1,Vernor,Hwy,1581909,1.511,1.534,0,0.545306,6,4.5 +17345,0,0.028716,2,2,0,2,3,,3,1,Dix,St,1627003,3.65,3.678,0,0.689195,5,5 +14710,0,0.012823,1,1,0,2,5,,3,1,Waterman,St,1590002,1.477,1.489,0,0.307747,8,4.5 +11665,0,0.294377,1,1,0,2,5,,3,1,Martin,St,1577205,0.314,0.608,0,7.06505,8,4.5 +11666,0,0.314077,1,1,0,2,5,,3,1,Martin,St,1577205,0,0.314,0,7.537851,8,4.5 +11738,0,0.36031,3,3,1,2,3,,3,1,Michigan,Ave,1577103,3.404,3.764,0,8.647437,5,5 +13138,0,0.281762,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.127,2.408,0,6.762295,5,5 +16058,0,0.503164,2,2,0,2,4,,3,1,John Kronk,St,1610302,0.825,1.328,0,12.075933,6,4.5 +30472,0,0.299452,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.186845,0.15,4 +32883,0,0.439658,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.5518,0.15,4 +11681,0,0.154331,2,2,0,2,4,,3,1,Central,St,1577202,1.419,1.573,0,3.703933,6,4.5 +32881,0,0.084969,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.039257,0.15,4 +11664,0,0.143541,1,1,0,2,5,,3,1,Martin,St,1577205,0.608,0.752,0,3.444987,8,4.5 +11739,0,0.231662,3,3,1,2,3,,3,1,Michigan,Ave,1577103,3.173,3.404,0,5.559881,5,5 +11451,1,0.184268,3,0,0,1,1,,3,1,E I 94,,1576405,24.145,24.33,0,,0.58,7 +11663,0,0.208476,1,1,0,2,5,,3,1,Martin,St,1577205,0.752,0.96,0,5.003432,8,4.5 +30474,0,0.021026,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.504617,0.15,4 +13311,0,0.105656,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.021,2.127,0,2.535733,5,5 +12830,0,0.10772,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.408,2.516,0,2.585275,5,5 +16276,0,0.2213,1,1,0,2,5,,3,1,Buchanan,St,1609609,0,0.221,0,5.311197,8,4.5 +12641,0,0.207247,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.516,2.723,0,4.973938,5,5 +11643,0,0.156831,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,1.926,2.083,0,3.763946,5,5 +12910,-1,0.274318,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.93,1.204,0,6.583627,5,5 +13137,-1,0.275218,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.655,0.93,0,6.605233,5,5 +13437,0,0.289751,2,2,1,2,3,,3,1,Fort,St,1585010,2.045,2.335,0,6.954027,5,5 +14704,1,0.243468,2,0,0,2,3,,3,1,Dragoon,St,1590007,0.896,1.139,0,5.843234,5,5 +14705,1,0.275327,2,0,0,2,3,,3,1,Dragoon,St,1590007,0.62,0.896,0,6.607845,5,5 +15607,1,0.236234,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0.618,0.854,0,5.669605,8,4.5 +16052,0,0.290028,1,1,0,2,5,,3,1,Lafayette,Blvd,1610502,0.141,0.43,0,6.960684,8,4.5 +23202,-1,0.240586,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,0.961,1.201,0,5.774068,8,4.5 +30284,0,0.426839,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.244137,0.15,4 +33990,0,0.391145,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.387483,0.15,4 +14712,0,0.13405,1,1,0,2,5,,3,1,Waterman,St,1590002,0.757,0.891,0,3.217194,8,4.5 +16323,0,0.140554,1,1,0,2,5,,3,1,Lafayette,Blvd,1610502,0,0.141,0,3.373307,8,4.5 +32778,0,0.129184,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.100412,0.15,4 +32780,0,0.124761,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.99427,0.15,4 +16322,0,0.012785,1,1,0,2,5,,3,1,Beard,St,1611304,0.051,0.063,0,0.306841,8,4.5 +16813,1,0.140021,1,0,0,2,5,,3,1,Lafayette,Blvd,1611305,0,0.14,0,3.360505,8,4.5 +17101,-1,0.140271,0,1,0,2,5,,3,1,Lexington,St,1611306,0.305,0.446,0,3.366514,8,4.5 +14718,0,0.057979,1,1,0,2,5,,3,1,Green,St,1589906,0.751,0.809,0,1.391488,8,4.5 +17103,0,0.047127,1,1,0,2,5,,3,1,Beard,St,1611304,0.063,0.11,0,1.131037,8,4.5 +13438,0,0.140827,2,2,1,2,3,,3,1,Fort,St,1585010,1.904,2.045,0,3.379841,5,5 +14713,0,0.052582,1,1,0,2,5,,3,1,Waterman,St,1590002,0.704,0.757,0,1.261976,8,4.5 +14714,0,0.070228,1,1,0,2,5,,3,1,Waterman,St,1590002,0.634,0.704,0,1.685462,8,4.5 +14715,0,0.040917,1,1,0,2,5,,3,1,Waterman,St,1590002,0.593,0.634,0,0.982003,8,4.5 +12640,-1,0.090342,0,2,0,2,3,,3,1,Livernois,Ave,1581701,1.204,1.294,0,2.168215,5,5 +14703,1,0.114279,2,0,0,2,3,,3,1,Dragoon,St,1590007,1.139,1.253,0,2.742694,5,5 +12115,0,0.073246,2,2,0,2,3,,3,1,Vernor,Hwy,1581909,1.853,1.926,0,1.757904,5,5 +12475,0,0.097347,2,2,1,2,3,,3,1,Livernois,Ave,1581701,1.294,1.392,0,2.33633,5,5 +16518,0,0.17602,1,1,0,2,5,,3,1,Toledo,St,1609403,0,0.176,0,4.224485,8,4.5 +12020,-1,0.076339,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.54,0.616,0,1.832147,5,5 +12317,-1,0.039446,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.5,0.54,0,0.946705,5,5 +14708,1,0.049813,2,0,0,2,3,,3,1,Dragoon,St,1590007,0.468,0.518,0,1.195502,5,5 +15563,1,0.420997,4,0,0,1,1,,3,1,N I 75,,1592010,19.543,19.963,0,,0.58,7 +15593,1,0.073369,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0.907,0.981,0,1.760845,8,4.5 +17031,0,0.072447,1,1,0,2,5,,3,1,Lafayette,Blvd,1610502,0.43,0.503,0,1.73874,8,4.5 +22621,-1,0.073514,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,1.253,1.327,0,1.764347,8,4.5 +22911,-1,0.051905,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,1.201,1.253,0,1.24573,8,4.5 +15127,1,0.124817,1,0,0,1,1,ROF,3,1,N I 75/Livernois,RAMP,1592509,0,0.125,0,,2.24,5 +15300,1,0.126593,1,0,0,1,1,RON,3,1,Livernois/S I 75,RAMP,1595302,0,0.127,0,,1.09,4 +14771,1,0.053771,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0.854,0.907,0,1.290494,8,4.5 +11630,-1,0.038644,0,2,0,2,3,,3,1,Livernois,Ave,1581701,0.616,0.655,0,0.927449,5,5 +13436,0,0.072835,2,2,1,2,3,,3,1,Fort,St,1585010,2.335,2.408,0,1.748052,5,5 +15362,1,0.140557,1,0,0,1,1,RON,3,1,Dragoon/N I 75,RAMP,1592510,0,0.141,0,,1.09,4 +16733,0,0.143373,1,1,0,2,5,,3,1,Lafayette,Blvd,1610502,0.503,0.646,0,3.440948,8,4.5 +23628,-1,0.120258,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,1.327,1.447,0,2.886192,8,4.5 +14707,1,0.07812,4,0,0,2,3,,3,1,Dragoon,St,1590007,0.518,0.596,0,1.874891,5,5 +14706,1,0.024428,2,0,0,2,3,,3,1,Dragoon,St,1590007,0.596,0.62,0,0.586276,5,5 +15059,1,0.036933,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,0.981,1.018,0,0.886391,8,4.5 +14690,-1,0.040077,0,1,0,2,5,,3,1,Lafayette,Blvd,1590407,0,0.04,0,0.961851,8,4.5 +23292,-1,0.063707,0,2,0,2,5,,3,1,S I 75 Service Drive,,4705508,1.447,1.511,0,1.52896,8,4.5 +13232,0,0.224107,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.083,2.307,0,5.378557,5,5 +32039,0,0.143766,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.450373,0.15,4 +27377,0,0.16251,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.900242,0.15,4 +11734,0,0.35774,2,2,1,2,3,,3,1,Michigan,Ave,1577103,4.218,4.576,0,8.585757,5,5 +12097,0,0.34378,1,1,0,2,5,,3,1,Junction,St,1581110,1.632,1.976,0,8.250713,8,4.5 +13213,0,0.371735,1,1,0,2,4,,3,1,Clark,St,1581210,0.012,0.383,0,8.921635,6,4.5 +11617,0,0.119385,1,1,0,2,5,,3,1,Junction,St,1577210,0,0.119,0,2.865238,8,4.5 +11736,0,0.11426,2,2,1,2,3,,3,1,Michigan,Ave,1577103,4.089,4.203,0,2.742248,5,5 +16512,0,0.163549,1,1,0,2,5,,3,1,Buchanan,St,1609609,0.389,0.553,0,3.925177,8,4.5 +32892,0,0.239334,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.744013,0.15,4 +11616,0,0.191902,1,1,0,2,5,,3,1,Junction,St,1577210,0.119,0.311,0,4.605657,8,4.5 +11939,0,0.170068,1,1,0,2,5,,3,1,Junction,St,1581110,1.976,2.146,0,4.081643,8,4.5 +32890,0,0.093606,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.246547,0.15,4 +11735,0,0.015061,2,2,1,2,3,,3,1,Michigan,Ave,1577103,4.203,4.218,0,0.361453,5,5 +12393,0,0.288018,1,1,0,2,5,,3,1,Junction,St,1581110,1.344,1.632,0,6.912442,8,4.5 +16796,0,0.205054,1,1,0,2,5,,3,1,Toledo,St,1609403,0.399,0.604,0,4.921291,8,4.5 +32053,0,0.240034,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.760813,0.15,4 +32788,0,0.259715,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.233158,0.15,4 +32052,0,0.116038,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.784923,0.15,4 +11733,1,0.107419,2,0,0,2,3,,3,1,Michigan,Ave,1577103,4.576,4.683,0,2.578059,5,5 +22414,-1,0.111946,0,2,0,2,3,,3,1,Michigan,Ave,4701012,0,0.112,0,2.686708,5,5 +24170,0,0.056855,1,1,0,2,5,,3,1,Clark,St,4711780,0,0.057,0,1.36451,8,4.5 +13212,0,0.011442,1,1,0,2,4,,3,1,Clark,St,1581210,0,0.012,0,0.274607,6,4.5 +13357,0,0.155875,2,2,0,2,4,,3,1,Grand,Blvd,1577308,0,0.156,0,3.741,6,4.5 +40,0,0.506886,2,2,0,2,4,,3,3,9 Mile,Rd,607709,3.996,4.503,0,12.165274,6,4.5 +1114,-1,0.222656,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,7.963,8.185,0,5.343736,5,5 +2732,-1,0.435633,0,2,0,2,5,DV2,3,3,Oak Park,Blvd,665504,1.247,1.683,0,10.455183,8,4.5 +11963,0,0.334023,1,1,0,2,4,,3,1,Hubbell,St,1583004,0.664,0.998,0,8.016551,6,4.5 +12001,1,0.653413,3,0,0,1,2,,3,1,S M 10,,1577509,5.453,6.107,0,,0.58,7 +12059,1,0.488134,3,0,0,1,2,,3,1,S M 10,,1577509,2.944,3.431,0,,0.58,7 +12197,1,0.2697,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.313,7.583,0,6.472804,5,5 +12307,0,0.497283,2,2,0,2,4,,3,1,Fenkell,St,1579605,7.451,7.949,0,11.9348,6,4.5 +12427,-1,0.324164,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,4.323,4.648,0,,0.58,7 +12503,0,0.253957,2,2,0,2,4,,3,1,Meyers,Rd,1583210,2.749,3.003,0,6.09497,6,4.5 +12562,1,0.132414,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,3.454,3.587,0,3.177927,6,4.5 +12578,1,0.33567,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,4.303,4.638,0,,0.58,7 +12773,0,0.356638,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.657,6.013,0,8.559307,5,5 +12836,0,0.184539,2,2,0,2,4,,3,1,Chicago,St,1581803,4.148,4.332,0,4.428941,6,4.5 +12904,-1,0.362843,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.595,2.958,0,8.70824,8,4.5 +13237,-1,0.060608,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.479,2.54,0,1.454593,8,4.5 +13260,-1,0.67674,0,3,0,1,2,,3,1,N M 10,,1577510,5.419,6.095,0,,0.58,7 +13291,0,0.189338,2,2,0,2,4,,3,1,Fenkell,St,1579605,6.264,6.453,0,4.544118,6,4.5 +13343,-1,0.409914,0,3,0,1,2,,3,1,N M 10,,1577510,3.004,3.414,0,,0.58,7 +13529,0,0.311775,1,1,0,2,3,,3,1,Linwood,St,1584609,3.271,3.583,0,7.482596,5,5 +13580,0,0.148666,2,2,0,2,4,,3,1,Outer,Dr,1584503,1.295,1.444,0,3.567979,6,4.5 +14541,0,0.14138,2,2,0,2,4,,3,1,Rosa Parks,Blvd,1590905,2.911,3.052,0,3.393117,6,4.5 +14587,-1,0.338456,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,2.788,3.126,0,8.122954,8,4.5 +14608,1,0.391498,3,0,0,2,5,,3,1,James Couzens,Fwy,1590804,3.149,3.541,0,9.395943,8,4.5 +15169,1,0.441794,3,0,0,1,2,,3,1,N M 39,,1592408,12.175,12.617,0,,0.58,7 +15528,-1,0.506435,0,3,0,1,2,,3,1,S M 39,,1592407,12.107,12.614,0,,0.58,7 +15597,1,0.065521,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.481,2.547,0,1.57251,8,4.5 +15893,-1,0.43861,0,2,0,2,5,,3,1,Davison,St,1598908,0.579,1.018,0,10.526635,8,4.5 +16219,0,0.158891,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.51,1.669,0,3.813378,6,4.5 +16389,0,0.245496,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,19.781,20.027,0,5.891895,5,5 +16408,0,0.249394,1,1,0,2,5,,3,1,Asbury,Park,1601110,0,0.249,0,5.985447,8,4.5 +16498,0,0.440329,2,2,0,2,4,,3,1,Tireman,Ave,1623409,1.561,2.001,0,10.567887,6,4.5 +16568,-1,2.674892,0,3,0,1,1,,3,1,W I 96,,1606503,12.258,14.932,0,,0.58,7 +16663,1,0.441755,1,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0.518,0.959,0,10.602122,8,4.5 +16809,0,0.146259,1,1,0,2,4,,3,1,Dexter,Ave,1613006,3.405,3.552,0,3.510221,6,4.5 +16812,0,0.056268,1,1,0,2,5,,3,1,Curtis,St,1620803,0.639,0.695,0,1.350443,8,4.5 +16891,0,0.496635,2,2,0,2,4,,3,1,Lyndon,St,1612706,1.503,2,0,11.919247,6,4.5 +16994,1,2.569491,3,0,0,1,1,,3,1,E I 96,,1606201,12.552,15.121,0,,0.58,7 +17274,0,0.252106,2,2,0,2,3,,3,2,Warren,Ave,1628604,1.496,1.748,0,6.050537,5,5 +17831,1,0.189129,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,10.529,10.718,0,4.539106,6,4.5 +17882,0,0.280216,2,2,0,2,3,,3,1,McNichols,Rd,1680701,19.708,19.988,0,6.725178,5,5 +18864,0,0.24955,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,9.311,9.561,0,5.989202,5,5 +18944,0,0.279107,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,13.639,13.918,0,6.69858,5,5 +19686,1,0.222808,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,7.944,8.167,0,5.347388,5,5 +21122,1,0.435427,2,0,0,2,5,DV2,3,3,Oak Park,Blvd,4409248,1.247,1.683,0,10.450238,8,4.5 +21351,0,0.313936,2,2,0,2,3,,3,1,Wyoming,St,4700001,4.698,5.011,0,7.534463,5,5 +22349,-1,0.131994,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,3.472,3.604,0,3.167859,6,4.5 +22550,0,0.151725,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,8.642,8.794,0,3.641404,5,5 +22786,1,0.179278,2,0,0,2,5,DV2,3,1,Oakman,Blvd,4705439,0.176,0.355,0,4.302665,8,4.5 +23455,0,0.287377,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,14.442,14.729,0,6.89705,6,4.5 +23723,-1,0.188858,0,2,0,2,4,DV2,3,1,Joy,Rd,4707990,0,0.189,0,4.532602,6,4.5 +23751,0,0.031521,2,2,0,2,4,,3,1,Puritan,St,4707953,3.243,3.274,0,0.756503,6,4.5 +24285,0,0.369233,2,2,0,2,4,,3,1,Fullerton,St,4710521,2.554,2.923,0,8.861597,6,4.5 +27429,0,0.345843,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.300229,0.15,4 +29669,0,0.516496,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.395905,0.15,4 +29670,0,0.520039,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.480934,0.15,4 +29671,0,0.366133,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.787189,0.15,4 +29674,0,0.534357,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.824568,0.15,4 +30963,0,0.198449,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.762776,0.15,4 +32901,0,0.345735,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.29765,0.15,4 +32908,0,0.443025,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.632589,0.15,4 +32909,0,0.447811,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.747458,0.15,4 +32913,0,0.395191,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.484596,0.15,4 +32920,0,0.147832,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.547976,0.15,4 +32923,0,0.253204,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.076901,0.15,4 +32927,0,0.322496,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.739905,0.15,4 +32934,0,0.454017,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.896418,0.15,4 +32936,0,0.02143,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.514324,0.15,4 +32942,0,0.025975,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.623398,0.15,4 +32948,0,0.255409,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.129822,0.15,4 +32954,0,0.249651,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.991619,0.15,4 +33647,0,0.250494,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.011855,0.15,4 +33685,0,0.387774,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.306578,0.15,4 +33686,0,0.376929,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.0463,0.15,4 +33800,0,0.492284,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.814806,0.15,4 +33881,0,0.151346,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.632308,0.15,4 +12732,0,0.311306,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.952,6.264,0,7.471348,6,4.5 +12806,0,0.256435,2,2,0,2,3,,3,1,Grand River,Ave,1577408,3.9,4.156,0,6.15443,5,5 +12917,0,0.43107,2,2,0,2,4,,3,1,Chicago,St,1581803,2.214,2.645,0,10.34568,6,4.5 +12936,0,0.499372,1,1,0,2,4,,3,1,Meyers,Rd,1583210,0.501,1.001,0,11.984926,6,4.5 +13161,-1,0.424204,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,2.618,3.042,0,,0.58,7 +13241,1,0.404862,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,2.624,3.029,0,,0.58,7 +13327,-1,0.161391,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.157,0.318,0,3.87338,8,4.5 +14631,1,0.184219,1,0,0,1,1,RON,3,1,Greenfield/E I 96,RAMP,1590801,0,0.184,0,,1.09,4 +14648,0,0.334524,2,2,0,2,4,,3,1,Hubbell,St,1590607,1.001,1.336,0,8.02857,6,4.5 +14653,1,0.217539,1,0,0,1,1,ROF,3,1,W I 96/Greenfield,RAMP,1590606,0,0.218,0,,2.24,5 +14754,1,0.153302,1,0,0,1,2,RON,3,1,Plymouth/S M 39,RAMP,1594810,0,0.153,0,,1.09,4 +14790,0,0.504394,2,2,0,2,5,,3,1,Tireman,St,1594805,2.093,2.597,0,12.105444,8,4.5 +14824,1,0.232451,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0.157,0.389,0,5.57883,8,4.5 +14862,0,0.505816,2,2,0,2,3,,3,1,Warren,Ave,1591804,2.876,3.382,0,12.139576,5,5 +15444,1,0.556214,3,0,0,1,2,,3,1,N M 39,,1592408,9.672,10.228,0,,0.58,7 +15547,-1,0.350718,0,3,0,1,2,,3,1,S M 39,,1592407,10.226,10.577,0,,0.58,7 +16531,0,0.189627,2,2,0,2,4,,3,1,Lyndon,St,1612706,0,0.19,0,4.551046,6,4.5 +16545,0,0.492678,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,17.783,18.276,0,11.824265,5,5 +17579,1,0.105593,3,0,0,2,3,,3,1,Greenfield,Rd,1651002,7.621,7.727,0,2.534239,5,5 +17677,0,0.325319,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,6.985,7.311,0,7.807665,5,5 +18551,0,0.498732,2,2,0,2,4,,3,1,Joy,Rd,1677810,8.47,8.968,0,11.969572,6,4.5 +22162,0,0.19783,1,1,0,1,5,,3,1,Greenfield Service Drive,,4704393,0,0.198,0,,8,4.5 +22166,-1,0.107636,0,3,0,2,3,,3,1,Greenfield,Rd,4704392,0,0.108,0,2.583259,5,5 +23079,0,0.29022,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,12.928,13.218,0,6.965288,6,4.5 +23124,0,0.500254,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,6.289,6.789,0,12.006105,5,5 +24107,0,0.432554,1,1,0,2,5,,3,1,Paul,Dr,4710428,0.473,0.906,0,10.381298,8,4.5 +39839,-1,0.165025,0,2,0,2,3,,4,3,Pontiac,Trl,4463510,0.165,0.33,0,3.960592,3.7,5 +30543,0,0.247029,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.928688,0.15,4 +32019,0,0.517975,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.431401,0.15,4 +32303,0,0.505539,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.132939,0.15,4 +32304,0,0.514152,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.339651,0.15,4 +32896,0,0.638793,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,15.331039,0.15,4 +32973,0,0.50515,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.123606,0.15,4 +32977,0,0.503324,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.079778,0.15,4 +32986,0,0.249889,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.99733,0.15,4 +32987,0,0.496423,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.914146,0.15,4 +32991,0,0.493602,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.846451,0.15,4 +33721,0,0.325894,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.82146,0.15,4 +33906,0,0.54388,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.053124,0.15,4 +13144,0,0.535445,2,2,0,2,4,,3,1,Chicago,St,1581803,1.679,2.214,0,12.850682,6,4.5 +14835,1,0.127261,1,0,0,1,2,ROF,3,1,N M 39/Joy,RAMP,1591806,0,0.127,0,,2.24,5 +14866,0,0.489161,2,2,0,2,3,,3,1,Warren,Ave,1591804,2.387,2.876,0,11.739856,5,5 +15026,1,0.10618,1,0,0,1,2,RON,3,1,Joy/S M 39,RAMP,1594806,0,0.106,0,,1.09,4 +15032,0,0.485532,2,2,0,2,5,,3,1,Tireman,St,1594805,1.608,2.093,0,11.65278,8,4.5 +15186,-1,0.190721,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.103,6.293,0,4.577306,8,4.5 +15207,1,0.670204,3,0,0,1,2,,3,1,N M 39,,1592408,9.002,9.672,0,,0.58,7 +15549,-1,0.624662,0,3,0,1,2,,3,1,S M 39,,1592407,9.049,9.673,0,,0.58,7 +19024,0,0.478346,2,2,0,2,4,,3,1,Joy,Rd,1677810,7.992,8.47,0,11.480315,6,4.5 +19092,1,0.178201,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.835,6.013,0,4.276826,8,4.5 +32023,0,0.519648,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.471542,0.15,4 +32024,0,0.535674,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.856178,0.15,4 +32270,0,0.499092,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.978201,0.15,4 +32335,0,0.250339,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.008134,0.15,4 +32971,0,0.47303,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.352711,0.15,4 +32974,0,0.25003,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.000717,0.15,4 +32975,0,0.495642,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.89541,0.15,4 +32990,0,0.482639,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.58334,0.15,4 +33771,0,0.529452,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.706853,0.15,4 +14885,0,0.466551,2,2,0,2,3,,3,1,Warren,Ave,1591804,1.879,2.345,0,11.197224,5,5 +14964,-1,0.187759,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,5.668,5.856,0,4.506206,8,4.5 +15036,0,0.468658,1,1,0,2,5,,3,1,Tireman,St,1594805,1.096,1.565,0,11.247795,8,4.5 +15061,1,0.180226,1,0,0,1,2,ROF,3,1,S M 39/Warren,RAMP,1594804,0,0.18,0,,2.24,5 +15208,1,0.491762,3,0,0,1,2,,3,1,N M 39,,1592408,8.186,8.678,0,,0.58,7 +15553,-1,0.485894,0,3,0,1,2,,3,1,S M 39,,1592407,8.226,8.712,0,,0.58,7 +19093,1,0.111147,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.334,5.445,0,2.667528,8,4.5 +32021,0,0.51147,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.275273,0.15,4 +32309,0,0.551105,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.226522,0.15,4 +32339,0,0.248176,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.956225,0.15,4 +33010,0,0.470575,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.293808,0.15,4 +33772,0,0.618472,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.843332,0.15,4 +32320,0,0.261608,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.278594,0.15,4 +32337,0,0.24867,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.968088,0.15,4 +14818,1,0.091504,1,0,0,1,2,RON,3,1,Warren/S M 39,RAMP,1594803,0,0.092,0,,1.09,4 +14934,1,0.111591,1,0,0,1,2,ROF,3,1,N M 39/Warren,RAMP,1591803,0,0.112,0,,2.24,5 +14873,0,0.042003,2,2,0,2,3,,3,1,Warren,Ave,1591804,2.345,2.387,0,1.008081,5,5 +15448,-1,0.148531,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,5.454,5.602,0,3.564744,8,4.5 +17686,1,0.123022,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.181,5.304,0,2.952531,8,4.5 +15187,-1,0.066432,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,5.602,5.668,0,1.594371,8,4.5 +19098,1,0.029636,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.304,5.334,0,0.711274,8,4.5 +15275,-1,0.337288,0,3,0,1,2,,3,1,S M 39,,1592407,8.712,9.049,0,,0.58,7 +15447,-1,0.246577,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,5.856,6.103,0,5.91784,8,4.5 +15466,1,0.323846,3,0,0,1,2,,3,1,N M 39,,1592408,8.678,9.002,0,,0.58,7 +17674,1,0.176842,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.658,5.835,0,4.244204,8,4.5 +14860,1,0.118032,1,0,0,1,2,RON,3,1,Warren/N M 39,RAMP,1591805,0,0.118,0,,1.09,4 +18627,1,0.212757,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,5.445,5.658,0,5.106162,8,4.5 +14800,0,0.043013,2,2,0,2,5,,3,1,Tireman,St,1594805,1.565,1.608,0,1.032302,8,4.5 +12323,0,0.393162,2,2,0,2,4,,3,1,Chicago,St,1581803,1.155,1.548,0,9.435877,6,4.5 +14780,1,0.143498,1,0,0,1,2,ROF,3,1,S M 39/Joy,RAMP,1594808,0,0.144,0,,2.24,5 +14832,1,0.142361,1,0,0,1,2,RON,3,1,Joy/N M 39,RAMP,1591808,0,0.142,0,,1.09,4 +15445,-1,0.127021,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.726,6.853,0,3.04851,8,4.5 +18038,0,0.47637,1,1,1,2,4,,3,1,Joy,Rd,1677810,7.473,7.949,0,11.432882,6,4.5 +18620,1,0.169472,1,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.414,6.584,0,4.067333,8,4.5 +30544,0,0.488547,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.725137,0.15,4 +32020,0,0.53337,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.800869,0.15,4 +32022,0,0.516505,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.396127,0.15,4 +32025,0,0.522357,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.536568,0.15,4 +32330,0,0.248503,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.964081,0.15,4 +32331,0,0.475799,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.419168,0.15,4 +32334,0,0.482976,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.591424,0.15,4 +32333,0,0.249316,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.983576,0.15,4 +30545,0,0.248139,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.955335,0.15,4 +32329,0,0.247227,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.933452,0.15,4 +15446,-1,0.242689,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.361,6.603,0,5.824534,8,4.5 +18623,1,0.168011,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.166,6.334,0,4.032275,8,4.5 +19088,1,0.153229,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.013,6.166,0,3.677504,8,4.5 +14962,-1,0.067586,0,3,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.293,6.361,0,1.622071,8,4.5 +15184,-1,0.066617,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.603,6.67,0,1.598808,8,4.5 +17614,0,0.042763,2,2,0,2,4,,3,1,Joy,Rd,1677810,7.949,7.992,0,1.02631,6,4.5 +19087,1,0.080403,2,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.334,6.414,0,1.929672,8,4.5 +14960,-1,0.055953,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.67,6.726,0,1.342877,8,4.5 +12027,0,0.092783,2,2,0,2,4,,3,1,Chicago,St,1581803,1.548,1.641,0,2.226782,6,4.5 +15007,0,0.085785,1,1,0,2,5,,3,1,Fitzpatrick,St,1594809,0.071,0.157,0,2.058828,8,4.5 +15273,-1,0.55325,0,3,0,1,2,,3,1,S M 39,,1592407,9.673,10.226,0,,0.58,7 +15015,1,0.042008,1,0,0,2,5,,3,1,Fitzpatrick,St,1594809,0,0.042,0,1.008189,8,4.5 +15183,-1,0.158363,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,6.853,7.011,0,3.800724,8,4.5 +19086,1,0.122193,1,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.584,6.706,0,2.932622,8,4.5 +14763,1,0.029239,1,0,0,2,5,,3,1,Fitzpatrick,St,1594809,0.042,0.071,0,0.701732,8,4.5 +14959,-1,0.029962,0,2,0,2,5,,3,1,S M 39 Service Drive,,1595505,7.011,7.041,0,0.719083,8,4.5 +23718,1,0.039753,2,0,0,2,5,,3,1,Fitzpatrick,St,4707996,0,0.04,0,0.95408,8,4.5 +18619,1,0.062888,1,0,0,2,5,,3,1,N M 39 Service Drive,,1651008,6.706,6.769,0,1.50931,8,4.5 +11636,0,0.037708,2,2,0,2,4,,3,1,Chicago,St,1581803,1.641,1.679,0,0.904992,6,4.5 +13326,-1,0.156843,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0,0.157,0,3.764229,8,4.5 +14826,1,0.156976,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0,0.157,0,3.76743,8,4.5 +32305,0,0.248317,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.959603,0.15,4 +32978,0,0.248856,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.97255,0.15,4 +32302,0,0.250205,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.004922,0.15,4 +32976,0,0.249364,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.984738,0.15,4 +24108,0,0.066828,1,1,0,2,5,,3,1,Paul,Dr,4710428,0.407,0.473,0,1.603869,8,4.5 +32988,0,0.25498,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.119526,0.15,4 +32989,0,0.256706,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.160935,0.15,4 +32992,0,0.250141,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.00339,0.15,4 +32972,0,0.24944,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.986559,0.15,4 +12043,-1,0.458126,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,1.933,2.391,0,,0.58,7 +12123,1,0.384048,2,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,1.968,2.352,0,,0.58,7 +12812,0,0.307397,2,2,0,2,3,,3,1,Grand River,Ave,1577408,2.757,3.064,0,7.37752,5,5 +13110,0,0.18748,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.97,5.157,0,4.499522,6,4.5 +13328,-1,0.160694,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,1.323,1.483,0,3.856663,8,4.5 +14634,1,0.238192,1,0,0,1,1,RFF,3,1,E I 96 Local/E I 96 Express,RAMP,1590708,0,0.238,0,,0.58,7 +14657,1,0.204431,1,0,0,1,1,RFF,3,1,W I 96 Express/W I 96 Local,RAMP,1590602,0,0.204,0,,0.58,7 +14659,1,0.260549,1,0,0,1,1,RFS,3,1,S M 39/E I 96,RAMP,1590510,0,0.261,0,,0.22,6 +14765,1,0.160564,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.325,1.485,0,3.853537,8,4.5 +15180,1,0.378804,3,0,0,1,2,,3,1,N M 39,,1592408,11.233,11.611,0,,0.58,7 +15543,-1,0.409731,0,3,0,1,2,,3,1,S M 39,,1592407,11.229,11.638,0,,0.58,7 +15598,1,0.087539,2,0,0,1,1,RFF,3,1,W I 96/M 39,RAMP,1591903,0.369,0.457,0,,0.58,7 +15707,1,0.166396,1,0,0,1,1,RFS,3,1,N M 39/E I 96,RAMP,1591901,0.166,0.332,0,,0.22,6 +16548,0,0.464886,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,17.319,17.783,0,11.157267,5,5 +16571,-1,0.495885,0,3,0,1,1,,3,1,W I 96,,1606503,11.568,12.064,0,,0.58,7 +16999,1,0.538392,3,0,0,1,1,,3,1,E I 96,,1606201,11.835,12.373,0,,0.58,7 +17496,0,0.227939,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.085,8.313,0,5.470533,5,5 +22905,0,0.272438,1,1,0,2,4,,3,1,Schoolcraft,St,4705258,11.953,12.226,0,6.538515,6,4.5 +24378,0,0.472604,1,1,0,2,5,,3,1,Fullerton,St,4710521,0.06,0.532,0,11.342503,8,4.5 +30260,0,0.526302,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.631248,0.15,4 +30906,0,0.468697,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.248733,0.15,4 +32348,0,0.270491,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.491786,0.15,4 +32979,0,0.261596,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.278299,0.15,4 +32981,0,0.496155,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.907731,0.15,4 +32985,0,0.479661,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.511866,0.15,4 +33447,0,0.515291,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.366976,0.15,4 +33670,0,0.440989,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.583729,0.15,4 +12218,-1,0.360088,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.825,1.185,0,8.642109,8,4.5 +12501,-1,0.293396,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,1.518,1.811,0,,0.58,7 +12577,1,0.292204,2,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,1.54,1.832,0,,0.58,7 +14661,1,0.217845,1,0,0,1,1,RFS,3,1,N M 39/W I 96,RAMP,1590508,0,0.218,0,,0.22,6 +14794,1,0.192083,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0.635,0.827,0,4.609987,8,4.5 +15271,-1,0.652029,0,3,0,1,2,,3,1,S M 39,,1592407,10.577,11.229,0,,0.58,7 +15441,1,0.615618,3,0,0,1,2,,3,1,N M 39,,1592408,10.617,11.233,0,,0.58,7 +15507,1,0.163245,1,0,0,1,1,RFS,3,1,E I 96/S M 39,RAMP,1591904,0.235,0.398,0,,0.22,6 +15512,1,0.234706,2,0,0,1,1,RFF,3,1,E I 96/M 39,RAMP,1591904,0,0.235,0,,0.58,7 +15603,1,0.237225,2,0,0,1,1,RFF,3,1,M 39/W I 96,RAMP,1591902,0.338,0.575,0,,0.58,7 +16562,0,0.465839,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,16.811,17.276,0,11.180145,5,5 +17414,-1,0.030694,0,1,0,2,5,,3,1,Borman,Ave,1624313,0,0.031,0,0.736668,8,4.5 +24256,1,0.239225,1,0,0,1,1,RFS,3,1,W I 96/S M 39,RAMP,4710305,0,0.239,0,,0.22,6 +30261,0,0.506818,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.163629,0.15,4 +30541,0,0.486408,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.67379,0.15,4 +32349,0,0.456733,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.961592,0.15,4 +33448,0,0.534562,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.829498,0.15,4 +32651,0,0.232775,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.586608,0.15,4 +12660,-1,0.254198,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.484,0.738,0,6.100759,8,4.5 +14815,1,0.150851,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0.484,0.635,0,3.620412,8,4.5 +15182,1,0.389585,3,0,0,1,2,,3,1,N M 39,,1592408,10.228,10.617,0,,0.58,7 +13157,-1,0.084839,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.318,0.403,0,2.03614,8,4.5 +14819,1,0.094632,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0.389,0.484,0,2.271177,8,4.5 +14828,1,0.121349,1,0,0,1,2,ROF,3,1,N M 39/Plymouth,RAMP,1591809,0,0.121,0,,2.24,5 +16558,0,0.042483,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,17.276,17.319,0,1.0196,5,5 +12845,-1,0.081137,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.403,0.484,0,1.947276,8,4.5 +15500,1,0.181467,2,0,0,1,1,RFF,3,1,I 96/S M 39,RAMP,1591904,0.398,0.579,0,,0.58,7 +15757,1,0.165853,1,0,0,1,1,RFF,3,1,N M 39/I 96,RAMP,1591901,0,0.166,0,,0.58,7 +12423,-1,0.086555,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,0.738,0.825,0,2.077324,8,4.5 +14635,1,0.164688,1,0,0,1,1,RFF,3,1,E I 96 Express/E I 96 Local,RAMP,1590707,0,0.165,0,,0.58,7 +14658,1,0.232666,1,0,0,1,1,RFS,3,1,E I 96/N M 39,RAMP,1590601,0,0.233,0,,0.22,6 +14660,1,0.17238,1,0,0,1,1,RFF,3,1,W I 96 Local/W I 96 Express,RAMP,1590509,0,0.172,0,,0.58,7 +14787,1,0.300672,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,0.827,1.127,0,7.216121,8,4.5 +14788,1,0.104889,1,0,0,1,1,RFS,3,1,S M 39/W I 96,RAMP,1591902,0.233,0.338,0,,0.22,6 +15566,1,0.215927,1,0,0,1,1,RFF,3,1,I 96/N M 39,RAMP,1591903,0.59,0.805,0,,0.58,7 +15614,1,0.232704,2,0,0,1,1,RFF,3,1,S M 39/I 96,RAMP,1591902,0,0.233,0,,0.58,7 +24491,1,0.127656,1,0,0,1,5,,3,1,Southfield Service Drive,,4708709,0,0.128,0,,8,4.5 +24498,-1,0.177308,0,1,0,1,5,,3,1,Southfield Service Drive,,4708708,0,0.177,0,,8,4.5 +12221,-1,0.121824,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,1.811,1.933,0,,0.58,7 +12428,1,0.136165,2,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,1.832,1.968,0,,0.58,7 +15575,1,0.132932,1,0,0,1,1,RFS,3,1,W I 96/N M 39,RAMP,1591903,0.457,0.59,0,,0.22,6 +19272,1,0.129464,1,0,0,2,5,,3,1,I 96 Service Drive,,1804001,0,0.129,0,3.107139,8,4.5 +24538,-1,0.061861,0,1,0,2,5,,3,1,I 96 Service Drive,,4708258,0,0.062,0,1.484661,8,4.5 +24381,1,0.059878,1,0,0,2,5,,3,1,Fullerton,St,4710521,0,0.06,0,1.437076,8,4.5 +11961,-1,0.138066,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,1.185,1.323,0,3.313584,8,4.5 +14772,1,0.162195,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.163,1.325,0,3.892692,8,4.5 +14786,1,0.035164,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.127,1.163,0,0.843938,8,4.5 +12549,0,0.367252,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.531,4.898,0,8.814039,6,4.5 +12846,-1,0.392907,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,1.587,1.98,0,9.429764,8,4.5 +14761,1,0.388079,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.594,1.982,0,9.313905,8,4.5 +15267,-1,0.469118,0,3,0,1,2,,3,1,S M 39,,1592407,11.638,12.107,0,,0.58,7 +15427,1,0.564232,3,0,0,1,2,,3,1,N M 39,,1592408,11.611,12.175,0,,0.58,7 +23300,0,0.466368,1,1,0,2,4,,3,1,Schoolcraft,St,4705258,11.444,11.91,0,11.19282,6,4.5 +30894,0,0.386877,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.285055,0.15,4 +32344,0,0.36092,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.66209,0.15,4 +32346,0,0.617343,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.816238,0.15,4 +32345,0,0.390711,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.37706,0.15,4 +13018,-1,0.103993,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,1.483,1.587,0,2.495839,8,4.5 +14762,1,0.10857,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.485,1.594,0,2.605673,8,4.5 +23115,0,0.043124,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,11.91,11.953,0,1.03497,6,4.5 +12847,1,0.06236,1,0,0,1,2,RON,3,1,Schoolcraft/N M 39,RAMP,1582603,0,0.062,0,,1.09,4 +14929,1,0.077815,1,0,0,1,2,ROF,3,1,S M 39/Schoolcraft,RAMP,1594901,0,0.078,0,,2.24,5 +11913,0,0.035575,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.935,4.97,0,0.853798,6,4.5 +12424,-1,0.111385,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.14,2.251,0,2.673249,8,4.5 +12813,0,0.035293,2,2,0,2,3,,3,1,Grand River,Ave,1577408,2.722,2.757,0,0.847021,5,5 +14878,1,0.232183,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.097,2.329,0,5.572393,8,4.5 +15493,1,0.110529,1,0,0,1,2,ROF,3,1,N M 39/M 5,RAMP,1591905,0,0.111,0,,2.24,5 +24275,1,0.118715,1,0,0,1,2,RON,3,1,M 5/S M 39,RAMP,4710300,0,0.119,0,,1.09,4 +12119,-1,0.207676,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.251,2.459,0,4.984224,8,4.5 +12296,0,0.036539,2,2,0,2,4,,3,1,Fenkell,St,1579605,4.898,4.935,0,0.876924,6,4.5 +12814,0,0.041092,2,2,0,2,3,,3,1,Grand River,Ave,1577408,2.681,2.722,0,0.986213,5,5 +11962,-1,0.020086,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.459,2.479,0,0.482066,8,4.5 +12573,-1,0.159903,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,1.98,2.14,0,3.837661,8,4.5 +14757,1,0.115139,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,1.982,2.097,0,2.763333,8,4.5 +15715,1,0.114043,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.329,2.443,0,2.737039,8,4.5 +15667,1,0.038443,3,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.443,2.481,0,0.922644,8,4.5 +11966,1,0.272259,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,2.352,2.624,0,,0.58,7 +13331,-1,0.227063,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,2.391,2.618,0,,0.58,7 +24375,0,0.456813,1,1,0,2,5,,3,1,Fullerton,St,4710521,0.532,0.989,0,10.963504,8,4.5 +36627,1,0.044568,2,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0.449,0.493,0,1.069641,8,4.5 +32980,0,0.498462,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.963078,0.15,4 +32984,0,0.234612,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.630677,0.15,4 +14656,1,0.312726,1,0,0,1,1,RFF,3,1,W I 96 Express/M 39,RAMP,1590604,0,0.313,0,,0.58,7 +15383,1,0.258974,1,0,0,1,1,RFF,3,1,M 39/E I 96 Local,RAMP,1591901,0.399,0.658,0,,0.58,7 +15601,1,0.369277,1,0,0,1,1,RFF,3,1,W I 96 Local/M 39,RAMP,1591903,0,0.369,0,,0.58,7 +16686,1,0.178726,2,0,0,1,1,,3,1,E I 96,,1606201,12.373,12.552,0,,0.58,7 +16848,-1,0.194894,0,3,0,1,1,,3,1,W I 96,,1606503,12.064,12.258,0,,0.58,7 +24254,1,0.295124,1,0,0,1,1,RFF,3,1,M 39/E I 96 Express,RAMP,4710306,0,0.295,0,,0.58,7 +32982,0,0.220994,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.303861,0.15,4 +15706,1,0.066927,2,0,0,1,1,RFF,3,1,M 39/E I 96,RAMP,1591901,0.332,0.399,0,,0.58,7 +14633,1,0.212642,1,0,0,1,1,ROF,3,1,E I 96/Greenfield,RAMP,1590710,0,0.213,0,,2.24,5 +14654,1,0.198197,1,0,0,1,1,RON,3,1,Greenfield/W I 96,RAMP,1590605,0.01,0.208,0,,1.09,4 +17560,1,0.19848,3,0,0,2,3,,3,1,Greenfield,Rd,1651002,7.826,8.024,0,4.763508,5,5 +22163,-1,0.2185,0,3,0,2,3,,3,1,Greenfield,Rd,4704392,0.207,0.426,0,5.244005,5,5 +22167,0,0.26287,1,1,0,1,5,,3,1,Greenfield Service Drive,,4704391,0,0.263,0,,8,4.5 +17573,1,0.070531,3,0,0,2,3,,3,1,Greenfield,Rd,1651002,7.727,7.797,0,1.692739,5,5 +22165,-1,0.07118,0,3,0,2,3,,3,1,Greenfield,Rd,4704392,0.108,0.179,0,1.708315,5,5 +14632,1,0.011024,1,0,0,2,3,RSF,3,1,E I 96/Greenfield,RAMP,1590710,0.213,0.224,0,0.264583,5,5 +17565,1,0.028814,3,0,0,2,3,,3,1,Greenfield,Rd,1651002,7.797,7.826,0,0.691543,5,5 +22164,-1,0.028322,0,3,0,2,3,,3,1,Greenfield,Rd,4704392,0.179,0.207,0,0.679738,5,5 +24373,0,0.037771,1,1,0,2,5,,3,1,Fullerton,St,4710521,0.989,1.027,0,0.906497,8,4.5 +14655,1,0.010081,1,0,0,2,3,RSF,3,1,Greenfield/W I 96,RAMP,1590605,0,0.01,0,0.241947,5,5 +39838,-1,0.035432,0,3,0,2,3,,4,3,Pontiac,Trl,4463510,0.129,0.165,0,0.850372,3.7,5 +17499,0,0.042338,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.043,8.085,0,1.016123,5,5 +17527,1,0.018654,3,0,0,2,3,,3,1,Greenfield,Rd,1651002,8.024,8.043,0,0.447697,5,5 +11927,0,0.188547,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.547,5.735,0,4.525117,6,4.5 +12807,0,0.467286,2,2,0,2,3,,3,1,Grand River,Ave,1577408,3.433,3.9,0,11.214874,5,5 +17466,0,0.111577,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.7,8.812,0,2.677851,5,5 +23381,0,0.487284,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,12.441,12.928,0,11.694815,6,4.5 +30609,0,0.603233,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.477586,0.15,4 +32950,0,0.366317,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.7916,0.15,4 +32994,0,0.075634,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.815206,0.15,4 +32998,0,0.358069,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.593665,0.15,4 +33055,0,0.374036,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.976864,0.15,4 +23550,0,0.215083,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,12.226,12.441,0,5.161989,6,4.5 +32983,0,0.368434,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.842424,0.15,4 +12811,0,0.175913,2,2,0,2,3,,3,1,Grand River,Ave,1577408,3.064,3.24,0,4.221919,5,5 +12848,0,0.22294,1,1,0,2,5,,3,1,Saint Marys,St,1582710,0,0.223,0,5.350571,8,4.5 +13121,0,0.156133,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.299,5.455,0,3.747184,6,4.5 +11929,0,0.141838,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.157,5.299,0,3.40412,6,4.5 +12810,0,0.192652,2,2,0,2,3,,3,1,Grand River,Ave,1577408,3.24,3.433,0,4.623645,5,5 +12733,0,0.091602,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.455,5.547,0,2.198437,6,4.5 +12849,0,0.152215,1,1,0,2,5,,3,1,Saint Marys,St,1582710,0.223,0.375,0,3.653158,8,4.5 +17481,0,0.228404,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.472,8.7,0,5.481686,5,5 +17487,0,0.158529,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.313,8.472,0,3.804706,5,5 +13120,0,0.217123,2,2,0,2,4,,3,1,Fenkell,St,1579605,5.735,5.952,0,5.210955,6,4.5 +18261,0,0.333294,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.978,9.311,0,7.999065,5,5 +32996,0,0.371048,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.90516,0.15,4 +17432,0,0.166712,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,8.812,8.978,0,4.001079,5,5 +12028,0,0.50065,1,1,0,2,4,,3,1,Chicago,St,1581803,3.146,3.646,0,12.015591,6,4.5 +12466,-1,0.166298,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.062,2.228,0,3.991162,8,4.5 +12825,1,0.16679,2,0,0,2,5,DV2,3,1,Oakman,Blvd,1580701,1.874,2.041,0,4.002961,8,4.5 +14652,0,0.338542,2,2,0,2,4,,3,1,Hubbell,St,1590607,0,0.338,0,8.12502,6,4.5 +17025,0,0.24334,2,2,0,2,4,,3,1,Tireman,Ave,1623409,0.751,0.995,0,5.840172,6,4.5 +17045,1,0.269269,1,0,0,2,5,DV2,3,1,Manor,,1623608,0.947,1.216,0,6.462453,8,4.5 +17281,0,0.266617,2,2,1,2,3,,3,2,Warren,Ave,1628604,0.498,0.764,0,6.398819,5,5 +17785,0,0.336229,2,2,0,2,3,,3,1,Greenfield,,1651002,5.814,6.151,0,8.069487,5,5 +19115,0,0.499002,2,2,0,2,4,,3,1,Joy,Rd,1677810,9.468,9.967,0,11.976046,6,4.5 +22627,0,0.335896,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,5.287,5.623,0,8.061509,5,5 +22760,-1,0.276245,0,1,0,2,5,DV2,3,1,Manor,,4704845,0.94,1.216,0,6.629872,8,4.5 +30493,0,0.482776,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.586629,0.15,4 +33003,0,0.256092,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.146218,0.15,4 +12737,0,0.503269,1,1,0,2,5,,3,2,Chase,Rd,1580503,1.683,2.187,0,12.078452,8,4.5 +16400,0,0.172752,2,2,0,2,4,,3,1,Tireman,Ave,1623409,0.324,0.497,0,4.146039,6,4.5 +17283,0,0.324268,2,2,1,2,3,,3,2,Warren,Ave,1628604,0.058,0.382,0,7.782437,5,5 +17880,0,0.249383,2,2,0,2,3,,3,1,Greenfield,,1651002,5.316,5.565,0,5.98518,5,5 +30473,0,0.200266,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.806373,0.15,4 +33005,0,0.148259,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.558222,0.15,4 +17884,0,0.249561,2,2,1,2,3,,3,1,Greenfield,,1651002,5.066,5.316,0,5.989466,5,5 +17895,1,0.224567,3,0,0,2,3,DV2,3,2,Greenfield,,1651002,4.816,5.041,0,5.389616,5,5 +23690,-1,0.224745,0,3,0,2,3,DV2,3,1,Greenfield,,4704562,1.368,1.593,0,5.393881,5,5 +24106,0,0.011576,1,1,0,2,5,,3,2,Paul,Dr,4710428,0.906,0.917,0,0.277835,8,4.5 +17892,0,0.025484,2,2,1,2,3,,3,1,Greenfield,,1651002,5.041,5.066,0,0.611612,5,5 +17284,0,0.057817,2,2,1,2,3,,3,2,Warren,Ave,1628604,0,0.058,0,1.387619,5,5 +16652,0,0.323928,2,2,0,2,4,,3,1,Tireman,Ave,1623409,0,0.324,0,7.774268,6,4.5 +17864,0,0.249679,2,2,0,2,3,,3,1,Greenfield,,1651002,5.565,5.814,0,5.992295,5,5 +30479,0,0.443767,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.650405,0.15,4 +12997,0,0.497572,1,1,0,2,5,,3,2,Chase,Rd,1580503,1.186,1.683,0,11.941721,8,4.5 +17282,0,0.115685,2,2,1,2,3,,3,2,Warren,Ave,1628604,0.382,0.498,0,2.776432,5,5 +16141,0,0.254859,2,2,0,2,4,,3,1,Tireman,Ave,1623409,0.497,0.751,0,6.11661,6,4.5 +12202,0,0.166583,1,1,0,2,4,,3,1,Chicago,St,1581803,2.979,3.146,0,3.997988,6,4.5 +14650,0,0.251748,2,2,0,2,4,,3,1,Hubbell,St,1590607,0.502,0.754,0,6.041956,6,4.5 +17745,0,0.203841,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,6.481,6.684,0,4.89218,5,5 +18134,0,0.383801,2,2,0,2,4,,3,1,Joy,Rd,1677810,8.968,9.352,0,9.211226,6,4.5 +33004,0,0.388177,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.316237,0.15,4 +33007,0,0.24983,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.995931,0.15,4 +33009,0,0.253794,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.09106,0.15,4 +33680,0,0.399561,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.589475,0.15,4 +17782,0,0.163824,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,6.151,6.314,0,3.931773,5,5 +17771,0,0.166252,1,1,0,2,3,,3,1,Greenfield,Rd,1651002,6.314,6.481,0,3.990041,5,5 +12649,0,0.221012,1,1,0,2,4,,3,1,Chicago,St,1581803,2.645,2.866,0,5.304278,6,4.5 +17694,0,0.129517,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,6.684,6.814,0,3.10841,5,5 +17688,0,0.171503,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,6.814,6.985,0,4.116065,5,5 +12483,0,0.113428,1,1,0,2,4,,3,1,Chicago,St,1581803,2.866,2.979,0,2.722274,6,4.5 +14651,0,0.163462,2,2,0,2,4,,3,1,Hubbell,St,1590607,0.338,0.502,0,3.923084,6,4.5 +33002,0,0.250428,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.010269,0.15,4 +33001,0,0.148988,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.575709,0.15,4 +17706,0,0.115899,2,2,0,2,4,,3,1,Joy,Rd,1677810,9.352,9.468,0,2.781578,6,4.5 +14649,0,0.247738,2,2,0,2,4,,3,1,Hubbell,St,1590607,0.754,1.001,0,5.945702,6,4.5 +33008,0,0.120218,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.885222,0.15,4 +12738,-1,0.501035,0,2,0,2,7,DV2,3,2,Oakman,Blvd,1580610,1.561,2.062,0,12.024837,7,4.5 +13131,1,0.501007,2,0,0,2,7,DV2,3,2,Oakman,Blvd,1580701,1.373,1.874,0,12.024168,7,4.5 +14736,0,0.148333,1,1,0,2,5,,3,2,Miller,Rd,1589801,4.062,4.21,0,3.559981,8,4.5 +16719,0,0.367955,2,2,0,2,4,,3,1,Tireman,Ave,1623409,0.995,1.363,0,8.830929,6,4.5 +17279,0,0.249626,2,2,0,2,3,,3,2,Warren,Ave,1628604,0.994,1.244,0,5.991014,5,5 +22977,0,0.252231,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,4.784,5.036,0,6.053533,5,5 +30484,0,0.249149,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.979586,0.15,4 +32900,0,0.514726,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.353422,0.15,4 +17280,0,0.229877,2,2,1,2,3,,3,2,Warren,Ave,1628604,0.764,0.994,0,5.517055,5,5 +23210,0,0.37613,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,4.407,4.784,0,9.027114,5,5 +33006,0,0.46288,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.109114,0.15,4 +30494,0,0.021072,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.505737,0.15,4 +23369,0,0.124112,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,4.283,4.407,0,2.978687,5,5 +22842,0,0.251914,2,2,0,2,3,,3,2,Schaefer,Rd,4706528,5.036,5.287,0,6.045925,5,5 +14737,0,0.499216,1,1,0,2,4,,3,2,Miller,Rd,1589801,3.563,4.062,0,11.981184,6,4.5 +17275,0,0.115384,2,2,0,2,3,,3,2,Warren,Ave,1628604,1.381,1.496,0,2.76922,5,5 +30490,0,0.251395,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.033486,0.15,4 +30491,0,0.507405,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.177715,0.15,4 +17278,0,0.116593,2,2,0,2,3,,3,2,Warren,Ave,1628604,1.244,1.36,0,2.798221,5,5 +17277,0,0.02054,2,2,0,2,3,,3,2,Warren,Ave,1628604,1.36,1.381,0,0.492954,5,5 +14735,0,0.230316,1,1,0,2,5,,3,2,Miller,Rd,1589801,4.21,4.44,0,5.52758,8,4.5 +16201,0,0.118219,2,2,0,2,4,,3,1,Tireman,Ave,1623409,1.378,1.496,0,2.837251,6,4.5 +30492,0,0.157324,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.775774,0.15,4 +16459,0,0.015312,2,2,0,2,4,,3,1,Tireman,Ave,1623409,1.363,1.378,0,0.367483,6,4.5 +32902,0,0.115662,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.775887,0.15,4 +14734,0,0.123545,1,1,0,2,5,,3,2,Miller,Rd,1589801,4.44,4.564,0,2.965074,8,4.5 +16677,0,0.081057,1,1,0,2,5,,3,1,Esper,St,1623606,0.522,0.603,0,1.945372,8,4.5 +17085,0,0.056189,2,2,0,2,4,,3,1,Tireman,Ave,1623409,1.496,1.552,0,1.348543,6,4.5 +16165,1,0.06547,1,0,0,2,5,DV2,3,1,Manor,,1623608,0.882,0.947,0,1.571274,8,4.5 +16426,0,0.011203,1,1,0,2,5,,3,1,Esper,St,1623606,0.603,0.614,0,0.268868,8,4.5 +16785,0,0.008861,2,2,0,2,4,,3,1,Tireman,Ave,1623409,1.552,1.561,0,0.212667,6,4.5 +22761,-1,0.058563,0,1,0,2,5,DV2,3,1,Manor,,4704845,0.882,0.94,0,1.405509,8,4.5 +13244,0,0.350634,1,1,0,2,4,,3,1,Meyers,Rd,1583210,0,0.351,0,8.415211,6,4.5 +13318,0,0.251472,1,1,0,2,4,,3,1,Chicago,St,1581803,3.646,3.898,0,6.035335,6,4.5 +18667,0,0.500204,2,2,0,2,4,,3,1,Joy,Rd,1677810,9.967,10.467,0,12.004891,6,4.5 +23554,0,0.348033,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,5.789,6.137,0,8.35278,5,5 +32911,0,0.385383,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.249189,0.15,4 +32960,0,0.394389,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.465338,0.15,4 +22490,0,0.165596,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,5.623,5.789,0,3.974302,5,5 +23370,0,0.152238,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,6.137,6.289,0,3.653717,5,5 +12013,-1,0.130202,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.4,2.53,0,3.124836,8,4.5 +16476,1,0.149412,1,0,0,2,5,DV2,3,1,Manor,,1623608,1.232,1.381,0,3.585878,8,4.5 +22498,1,0.110678,2,0,0,2,5,DV2,3,1,Oakman,Blvd,4705439,0,0.111,0,2.656261,8,4.5 +22729,-1,0.149596,0,1,0,2,5,DV2,3,1,Manor,,4704845,1.231,1.381,0,3.590315,8,4.5 +22784,0,0.149524,1,1,0,2,5,,3,1,Meyers,Rd,4705438,0.291,0.441,0,3.588569,8,4.5 +12311,-1,0.172123,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.228,2.4,0,4.130948,8,4.5 +12636,1,0.16324,2,0,0,2,5,DV2,3,1,Oakman,Blvd,1580701,2.041,2.204,0,3.91775,8,4.5 +32914,0,0.082031,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.96875,0.15,4 +33891,0,0.08234,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.976157,0.15,4 +32912,0,0.088616,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.126777,0.15,4 +33798,0,0.080637,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.93529,0.15,4 +11624,-1,0.056332,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.53,2.586,0,1.351976,8,4.5 +23484,1,0.056336,2,0,0,2,5,DV2,3,1,Oakman,Blvd,4705439,0.111,0.167,0,1.352073,8,4.5 +23055,0,0.015262,1,1,0,2,5,,3,1,Meyers,Rd,4705438,0.276,0.291,0,0.366296,8,4.5 +13130,-1,0.008758,0,2,0,2,5,DV2,3,1,Oakman,Blvd,1580610,2.586,2.595,0,0.210197,8,4.5 +16745,1,0.015197,1,0,0,2,5,DV2,3,1,Manor,,1623608,1.216,1.232,0,0.364736,8,4.5 +22759,-1,0.015124,0,1,0,2,5,DV2,3,1,Manor,,4704845,1.216,1.231,0,0.362987,8,4.5 +23057,1,0.008859,2,0,0,2,5,DV2,3,1,Oakman,Blvd,4705439,0.167,0.176,0,0.212611,8,4.5 +18228,0,0.0618,2,2,0,2,4,,3,1,Joy,Rd,1677810,10.467,10.529,0,1.483196,6,4.5 +13145,0,0.250136,1,1,0,2,4,,3,1,Chicago,St,1581803,3.898,4.148,0,6.00326,6,4.5 +13245,0,0.150848,1,1,0,2,4,,3,1,Meyers,Rd,1583210,0.351,0.501,0,3.620343,6,4.5 +32907,0,0.156164,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.747945,0.15,4 +11654,0,0.081753,1,1,0,2,4,,3,1,Meyers,Rd,1583210,1.787,1.868,0,1.962083,6,4.5 +12335,1,0.176723,1,0,0,1,1,RON,3,1,Schaefer/W I 96,RAMP,1583104,0,0.177,0,,1.09,4 +12665,-1,0.669462,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,3.654,4.323,0,,0.58,7 +12766,1,0.607019,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,3.696,4.303,0,,0.58,7 +12802,0,0.408398,2,2,0,2,3,,3,1,Grand River,Ave,1577408,4.654,5.062,0,9.801562,5,5 +13242,1,0.205405,1,0,0,1,1,ROF,3,1,E I 96/Schaefer,RAMP,1583109,0,0.205,0,,2.24,5 +14643,0,0.432522,2,2,0,2,4,,3,1,Hubbell,St,1590607,2.072,2.505,0,10.380525,6,4.5 +15894,-1,0.344085,0,2,0,2,5,,3,1,W I 96 Service Drive,,1598908,0.235,0.579,0,8.258049,8,4.5 +16397,0,0.375146,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,18.903,19.278,0,9.003495,5,5 +16807,0,0.161317,1,1,0,2,4,,3,1,Lyndon,St,1612706,0.843,1.004,0,3.871614,6,4.5 +23297,0,0.233927,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,7.588,7.822,0,5.614241,5,5 +23458,0,0.358927,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,13.581,13.939,0,8.614258,6,4.5 +24346,0,0.501476,1,1,0,2,4,,3,1,Fullerton,St,4710521,1.538,2.039,0,12.035415,6,4.5 +32966,0,0.14983,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.595922,0.15,4 +33877,0,0.455505,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.932112,0.15,4 +12851,-1,0.612574,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,3.042,3.654,0,,0.58,7 +13024,1,0.666876,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,3.029,3.696,0,,0.58,7 +14645,0,0.349509,2,2,0,2,4,,3,1,Hubbell,St,1590607,1.652,2.001,0,8.388222,6,4.5 +16409,0,0.278358,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,18.5,18.778,0,6.680593,5,5 +24364,0,0.433449,1,1,0,2,5,,3,1,Fullerton,St,4710521,1.027,1.46,0,10.402774,8,4.5 +32967,0,0.329862,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.916679,0.15,4 +32968,0,0.174757,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.194165,0.15,4 +33904,0,0.279084,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.698007,0.15,4 +33905,0,0.213111,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.114659,0.15,4 +16451,0,0.224024,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,18.276,18.5,0,5.376586,5,5 +17665,0,0.150995,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,7.311,7.461,0,3.623886,5,5 +33907,0,0.207561,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.981455,0.15,4 +17597,0,0.159619,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,7.461,7.621,0,3.830861,5,5 +14646,0,0.150053,2,2,0,2,4,,3,1,Hubbell,St,1590607,1.502,1.652,0,3.601267,6,4.5 +16053,0,0.124467,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,18.778,18.903,0,2.987203,5,5 +14647,0,0.166119,2,2,0,2,4,,3,1,Hubbell,St,1590607,1.336,1.502,0,3.986853,6,4.5 +14644,0,0.071065,2,2,0,2,4,,3,1,Hubbell,St,1590607,2.001,2.072,0,1.705565,6,4.5 +24347,0,0.056922,1,1,0,2,5,,3,1,W I 96 Service Drive,,4710172,0.025,0.082,0,1.366128,8,4.5 +24348,0,0.077899,2,2,0,2,5,,3,1,Fullerton,St,4710521,1.46,1.538,0,1.869571,8,4.5 +24349,0,0.025155,1,1,0,2,5,,3,1,W I 96 Service Drive,,4710172,0,0.025,0,0.603709,8,4.5 +12425,0,0.245485,1,1,0,2,4,,3,1,Hubbell,St,1583004,0.25,0.496,0,5.891634,6,4.5 +12805,0,0.32509,2,2,0,2,3,,3,1,Grand River,Ave,1577408,4.156,4.481,0,7.802166,5,5 +16299,0,0.3124,2,2,0,2,4,,3,1,Lyndon,St,1612706,0.19,0.502,0,7.497592,6,4.5 +23548,0,0.207057,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,13.218,13.425,0,4.969363,6,4.5 +32941,0,0.160204,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.844897,0.15,4 +32961,0,0.328102,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.874449,0.15,4 +32964,0,0.353567,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.485609,0.15,4 +32940,0,0.306468,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.355231,0.15,4 +32939,0,0.255824,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.139777,0.15,4 +12663,0,0.162137,1,1,0,2,4,,3,1,Hubbell,St,1583004,0.088,0.25,0,3.891294,6,4.5 +12804,0,0.172158,2,2,0,2,3,,3,1,Grand River,Ave,1577408,4.481,4.654,0,4.131797,5,5 +22439,0,0.148607,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,13.432,13.581,0,3.566567,6,4.5 +12662,0,0.088117,1,1,0,2,4,,3,1,Hubbell,St,1583004,0,0.088,0,2.11482,6,4.5 +23201,0,0.007015,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,13.425,13.432,0,0.168371,6,4.5 +32963,0,0.074334,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.784019,0.15,4 +17096,0,0.341229,1,1,0,2,4,,3,1,Lyndon,St,1612706,0.502,0.843,0,8.189488,6,4.5 +12220,0,0.168699,1,1,0,2,4,,3,1,Hubbell,St,1583004,0.496,0.664,0,4.048767,6,4.5 +12502,0,0.338549,1,1,0,2,4,,3,1,Meyers,Rd,1583210,1.163,1.502,0,8.125188,6,4.5 +12782,0,0.391067,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.251,5.642,0,9.385607,5,5 +13243,1,0.167522,1,0,0,1,1,RON,3,1,Grand River/E I 96,RAMP,1583110,0,0.168,0,,1.09,4 +14642,1,0.260084,1,0,0,1,1,ROF,3,1,W I 96/Grand River,RAMP,1590608,0,0.26,0,,2.24,5 +16329,0,0.37897,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,19.402,19.781,0,9.095291,5,5 +16978,1,0.28018,1,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0.238,0.518,0,6.724314,8,4.5 +22775,0,0.33647,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,6.953,7.289,0,8.075287,5,5 +24344,0,0.306495,2,2,0,2,4,,3,1,Fullerton,St,4710521,2.235,2.541,0,7.355887,6,4.5 +32829,0,0.376317,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.03161,0.15,4 +32957,0,0.367036,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.808855,0.15,4 +16393,0,0.124708,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,19.278,19.402,0,2.992989,5,5 +22978,0,0.163922,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,6.789,6.953,0,3.934133,5,5 +32958,0,0.142751,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.42603,0.15,4 +32959,0,0.129873,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.116963,0.15,4 +12792,0,0.030589,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.107,5.137,0,0.734147,5,5 +15896,-1,0.0543,0,3,0,2,5,,3,1,W I 96 Service Drive,,1598908,0.061,0.115,0,1.303208,8,4.5 +16415,1,0.108974,3,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0,0.109,0,2.615378,8,4.5 +22628,0,0.165502,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,7.289,7.455,0,3.97205,5,5 +24345,0,0.195716,2,2,0,2,4,,3,1,Fullerton,St,4710521,2.039,2.235,0,4.697189,6,4.5 +24476,1,0.023435,1,0,0,1,3,RSF,3,1,Grand River/I 96 Crossover,,4710079,0,0.023,0,,5,5 +23704,0,0.077882,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,7.455,7.533,0,1.869166,5,5 +12799,0,0.044905,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.062,5.107,0,1.077721,5,5 +15897,-1,0.060674,0,1,0,2,5,,3,1,Schaefer/W I 96,Ramp,1598908,0,0.061,0,1.456167,8,4.5 +23555,0,0.055583,2,2,1,2,3,,3,1,Schaefer,Hwy,4706528,7.533,7.588,0,1.333986,5,5 +15895,-1,0.013036,0,3,0,2,5,,3,1,W I 96 Service Drive,,1598908,0.115,0.128,0,0.312853,8,4.5 +16105,1,0.06879,1,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0.169,0.238,0,1.650965,8,4.5 +16153,1,0.059956,3,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0.109,0.169,0,1.438934,8,4.5 +24475,1,0.087989,1,0,0,1,3,RSF,3,1,Grand River/I 96 Crossover,,4710079,0.023,0.111,0,,5,5 +12767,0,0.162812,1,1,0,2,4,,3,1,Meyers,Rd,1583210,1.001,1.163,0,3.907496,6,4.5 +12044,0,0.277815,1,1,0,2,4,,3,1,Meyers,Rd,1583210,1.509,1.787,0,6.667567,6,4.5 +12775,0,0.014772,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.642,5.657,0,0.354534,5,5 +24337,0,0.012953,2,2,0,2,4,,3,1,Fullerton,St,4710521,2.541,2.554,0,0.31088,6,4.5 +12340,0,0.007045,2,2,0,2,4,,3,1,Meyers,Rd,1583210,1.502,1.509,0,0.169073,6,4.5 +12937,0,0.468551,1,1,0,2,4,,3,1,Meyers,Rd,1583210,2.037,2.506,0,11.24523,6,4.5 +16297,0,0.332839,1,1,0,2,4,,3,1,Lyndon,St,1612706,1.17,1.503,0,7.988129,6,4.5 +22917,0,0.408582,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,7.885,8.293,0,9.805967,5,5 +23456,0,0.196134,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,14.022,14.218,0,4.707208,6,4.5 +32929,0,0.374195,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.980689,0.15,4 +33896,0,0.14261,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.422645,0.15,4 +22427,0,0.082277,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,13.939,14.022,0,1.974636,6,4.5 +33013,0,0.142726,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.425431,0.15,4 +23125,0,0.062489,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,7.822,7.885,0,1.499745,5,5 +33014,0,0.060454,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.450884,0.15,4 +16529,0,0.16604,1,1,0,2,4,,3,1,Lyndon,St,1612706,1.004,1.17,0,3.984967,6,4.5 +22776,0,0.349315,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,8.293,8.642,0,8.383567,5,5 +32928,0,0.184695,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.432687,0.15,4 +32930,0,0.218039,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.232938,0.15,4 +22423,0,0.223826,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,14.218,14.442,0,5.371827,6,4.5 +13162,0,0.169044,1,1,0,2,4,,3,1,Meyers,Rd,1583210,1.868,2.037,0,4.057056,6,4.5 +12666,0,0.243254,2,2,0,2,4,,3,1,Meyers,Rd,1583210,2.506,2.749,0,5.838102,6,4.5 +35,0,0.475894,2,2,1,2,4,,3,3,9 Mile,Rd,607709,5.507,5.983,0,11.421455,6,4.5 +34177,0,0.244587,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,13.177,13.422,0,5.870096,5,5 +3371,0,0.48259,2,2,0,2,5,,3,3,Oak Park,Blvd,665103,0,0.483,0,11.582158,8,4.5 +12076,1,0.534237,3,0,0,1,2,,3,1,S M 10,,1577509,0.54,1.074,0,,0.58,7 +12080,1,0.5256,3,0,0,1,2,,3,1,S M 10,,1577509,0.014,0.54,0,,0.58,7 +13158,-1,0.250333,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.724,4.975,0,6.007992,8,4.5 +13334,0,0.239008,1,1,0,2,4,,3,1,Meyers,Rd,1583210,5.006,5.245,0,5.736189,6,4.5 +13346,-1,0.566238,0,3,0,1,2,,3,1,N M 10,,1577510,0.508,1.074,0,,0.58,7 +13347,-1,0.422572,0,3,0,1,2,,3,1,N M 10,,1577510,0.086,0.508,0,,0.58,7 +13409,1,0.192854,1,0,0,1,2,ROF,3,1,N M 10/James Couzens Fwy,RAMP,1585105,0,0.193,0,,2.24,5 +13558,1,0.500926,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,3.116,3.616,0,12.022222,6,4.5 +13565,1,0.248653,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,1.672,1.92,0,5.967665,6,4.5 +13586,1,0.221131,2,0,0,2,4,DV2,3,1,Vassar,Ave,1584503,0.518,0.739,0,5.307142,6,4.5 +13596,0,0.190945,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,1.429,1.62,0,4.58267,8,4.5 +13600,1,0.221432,1,0,0,1,2,RON,3,1,James Couzens Fwy/S M 10,RAMP,1584501,0,0.221,0,,1.09,4 +13603,1,0.241837,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0.439,0.681,0,5.804079,5,5 +14599,-1,0.311649,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.672,0.983,0,7.479574,8,4.5 +14600,-1,0.379418,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.292,0.672,0,9.106024,8,4.5 +14620,1,0.171497,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.85,1.022,0,4.115917,8,4.5 +14622,1,0.361269,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.332,0.693,0,8.670455,8,4.5 +14886,1,0.248994,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,4.727,4.976,0,5.975862,8,4.5 +15249,-1,0.450498,0,3,0,1,2,,3,1,S M 39,,1592407,14.648,15.098,0,,0.58,7 +15411,1,0.471067,3,0,0,1,2,,3,1,N M 39,,1592408,14.611,15.081,0,,0.58,7 +16347,0,0.25257,1,1,0,2,5,,3,1,Hubbell,St,1601208,0,0.253,0,6.061692,8,4.5 +16375,0,0.245205,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.126,2.371,0,5.88491,8,4.5 +17957,0,0.189867,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,11.929,12.119,0,4.556812,5,5 +18697,0,0.309733,2,2,0,2,3,,3,1,McNichols,Rd,1680701,17.993,18.302,0,7.433586,5,5 +18750,0,0.249775,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,11.555,11.804,0,5.994604,5,5 +19523,-1,0.253747,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.471,0.725,0,6.089923,5,5 +34176,0,0.014013,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,13.163,13.177,0,0.336308,5,5 +22704,0,0.013739,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,11.036,11.05,0,0.329737,5,5 +23464,-1,0.306553,0,2,0,2,4,DV2,3,1,Vassar,Ave,4704573,0,0.306,0,7.357261,6,4.5 +23489,-1,0.026244,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,3.697,3.723,0,0.629846,6,4.5 +23549,-1,0.248695,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,1.56,1.809,0,5.968677,6,4.5 +23759,0,0.310639,1,1,0,2,4,,3,1,Puritan,St,4707953,1.522,1.833,0,7.455342,6,4.5 +23774,-1,0.033606,0,1,0,1,4,,3,1,Vassar/Outer Cutoff,,4707899,0,0.034,0,,6,4.5 +27434,0,0.52759,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.662171,0.15,4 +27448,0,0.467137,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.211281,0.15,4 +27458,0,0.564444,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.546665,0.15,4 +30255,0,0.543701,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.048824,0.15,4 +32953,0,0.28914,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.93937,0.15,4 +32962,0,0.363771,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.730507,0.15,4 +33034,0,0.227018,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.448425,0.15,4 +33036,0,0.13201,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.16823,0.15,4 +33040,0,0.432811,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.387475,0.15,4 +33043,0,0.364371,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.744914,0.15,4 +33872,0,0.408884,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.813209,0.15,4 +11649,-1,0.19697,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.522,3.719,0,4.727278,8,4.5 +13568,1,0.280922,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,0.895,1.176,0,6.742121,6,4.5 +15254,-1,0.70881,0,3,0,1,2,,3,1,S M 39,,1592407,13.58,14.288,0,,0.58,7 +15269,1,0.226802,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.494,3.721,0,5.443242,8,4.5 +15419,1,0.719302,3,0,0,1,2,,3,1,N M 39,,1592408,13.563,14.282,0,,0.58,7 +16396,0,0.242025,1,1,0,2,5,,3,1,Asbury,Park,1601110,0.999,1.241,0,5.808603,8,4.5 +17492,0,0.277724,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,11.154,11.432,0,6.665371,5,5 +17741,0,0.280087,2,2,0,2,3,,3,1,McNichols,Rd,1680701,17.216,17.496,0,6.722077,5,5 +17786,0,0.240498,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,10.31,10.551,0,5.771951,5,5 +23616,-1,0.266668,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,0.578,0.844,0,6.400041,6,4.5 +23763,0,0.205914,1,1,0,2,4,,3,1,Puritan,St,4707953,0.539,0.745,0,4.941931,6,4.5 +30259,0,0.259337,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.224092,0.15,4 +30263,0,0.306504,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.356091,0.15,4 +30264,0,0.287043,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.88904,0.15,4 +33035,0,0.477165,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.451968,0.15,4 +33046,0,0.232076,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.569833,0.15,4 +33051,0,0.501725,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.041412,0.15,4 +33681,0,0.37413,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.97913,0.15,4 +12762,-1,0.124236,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.977,3.101,0,2.981675,8,4.5 +15255,-1,0.655524,0,3,0,1,2,,3,1,S M 39,,1592407,12.614,13.269,0,,0.58,7 +15410,1,0.123616,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.979,3.103,0,2.966794,8,4.5 +15422,1,0.677221,3,0,0,1,2,,3,1,N M 39,,1592408,12.617,13.294,0,,0.58,7 +18477,0,0.383813,2,2,0,2,3,,3,1,McNichols,Rd,1680701,16.591,16.974,0,9.211505,5,5 +23765,0,0.435648,1,1,0,2,5,,3,1,Puritan,St,4707953,0.065,0.5,0,10.455549,8,4.5 +30550,0,0.389851,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.356417,0.15,4 +30556,0,0.457309,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.975413,0.15,4 +32658,0,0.403715,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.689172,0.15,4 +22159,-1,0.013128,0,1,0,2,5,DV2,3,1,Warwick,St,4704536,0.172,0.186,0,0.315078,8,4.5 +22642,-1,0.014848,0,1,0,2,5,DV2,3,1,Bretton,Dr,4704882,0.406,0.421,0,0.356348,8,4.5 +22690,-1,0.010859,0,1,0,2,5,DV2,3,1,Bretton,Dr,4704882,0.395,0.406,0,0.260618,8,4.5 +23768,-1,0.007821,0,1,0,2,5,,3,1,Puritan,St,4707953,0,0.008,0,0.187696,8,4.5 +24473,1,0.018935,1,0,0,2,5,DV2,3,1,Warwick,St,4710085,0.212,0.231,0,0.45444,8,4.5 +12038,1,0.013827,1,0,0,2,5,DV2,3,1,Bretton,Dr,1582509,0.435,0.449,0,0.331843,8,4.5 +24474,1,0.012965,1,0,0,2,5,DV2,3,1,Warwick,St,4710085,0.2,0.212,0,0.311157,8,4.5 +23766,0,0.046122,1,1,0,2,5,,3,1,Puritan,St,4707953,0.018,0.065,0,1.10694,8,4.5 +30552,0,0.114739,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.753747,0.15,4 +23767,0,0.010552,1,1,0,2,5,,3,1,Puritan,St,4707953,0.008,0.018,0,0.253238,8,4.5 +22158,-1,0.008733,0,1,0,2,5,DV2,3,1,Warwick,St,4704536,0.186,0.194,0,0.209585,8,4.5 +13019,-1,0.437356,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,2.54,2.977,0,10.496548,8,4.5 +15556,1,0.43267,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,2.547,2.979,0,10.384081,8,4.5 +15765,1,0.101172,1,0,0,1,2,ROF,3,1,S M 39/M 5,RAMP,1594904,0,0.101,0,,2.24,5 +23764,0,0.039365,1,1,0,2,4,,3,1,Puritan,St,4707953,0.5,0.539,0,0.944766,6,4.5 +15430,1,0.115048,1,0,0,1,2,RON,3,1,M 5/N M 39,RAMP,1591906,0,0.115,0,,1.09,4 +12574,-1,0.300127,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.101,3.401,0,7.203037,8,4.5 +14874,1,0.107678,1,0,0,1,2,RON,3,1,McNichols/S M 39,RAMP,1594905,0,0.108,0,,1.09,4 +15167,1,0.269275,3,0,0,1,2,,3,1,N M 39,,1592408,13.294,13.563,0,,0.58,7 +15379,1,0.314784,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.103,3.418,0,7.554828,8,4.5 +15424,1,0.114473,1,0,0,1,2,RON,3,1,McNichols/N M 39,RAMP,1591908,0,0.115,0,,1.09,4 +15428,1,0.082292,1,0,0,1,2,ROF,3,1,N M 39/McNichols,RAMP,1591907,0,0.082,0,,2.24,5 +15527,-1,0.310975,0,3,0,1,2,,3,1,S M 39,,1592407,13.269,13.58,0,,0.58,7 +18259,0,0.04238,2,2,0,2,3,,3,1,McNichols,Rd,1680701,16.974,17.017,0,1.017125,5,5 +12120,-1,0.047014,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.475,3.522,0,1.128327,8,4.5 +12333,-1,0.074065,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.401,3.475,0,1.777569,8,4.5 +15708,1,0.08584,1,0,0,1,2,ROF,3,1,S M 39/McNichols,RAMP,1594906,0,0.086,0,,2.24,5 +17968,0,0.199088,2,2,0,2,3,,3,1,McNichols,Rd,1680701,17.017,17.216,0,4.778121,5,5 +15370,1,0.060142,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.418,3.478,0,1.443419,8,4.5 +15312,1,0.016227,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.478,3.494,0,0.389445,8,4.5 +12498,-1,0.321804,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.124,4.445,0,7.723294,8,4.5 +13571,1,0.235483,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,0.425,0.661,0,5.651602,6,4.5 +15111,1,0.438384,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.977,4.416,0,10.521213,8,4.5 +18302,0,0.477734,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,10.435,10.912,0,11.465623,5,5 +23622,-1,0.232048,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,0.315,0.547,0,5.569144,6,4.5 +30256,0,0.525649,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.615585,0.15,4 +30563,0,0.251343,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.032236,0.15,4 +30564,0,0.486812,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.683478,0.15,4 +32355,0,0.470955,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.302919,0.15,4 +13572,1,0.313783,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,0.112,0.425,0,7.530782,6,4.5 +23626,-1,0.314635,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,0,0.315,0,7.551252,6,4.5 +33927,0,0.283684,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.808408,0.15,4 +32357,0,0.246729,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.921486,0.15,4 +12931,-1,0.242936,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.733,3.976,0,5.83046,8,4.5 +13569,1,0.205819,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,0.689,0.895,0,4.939663,6,4.5 +15130,1,0.243595,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.734,3.977,0,5.846276,8,4.5 +13238,-1,0.013986,0,1,0,2,5,,3,1,Southfield Service Drive,,1582601,3.719,3.733,0,0.33566,8,4.5 +15135,1,0.01319,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,3.721,3.734,0,0.31655,8,4.5 +13570,1,0.028392,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,0.661,0.689,0,0.681418,6,4.5 +23619,-1,0.031249,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,0.547,0.578,0,0.749971,6,4.5 +12763,-1,0.147846,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,3.976,4.124,0,3.548301,8,4.5 +12039,-1,0.043918,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.476,4.519,0,1.054037,8,4.5 +14912,1,0.03686,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,4.477,4.514,0,0.884651,8,4.5 +15166,1,0.328348,3,0,0,1,2,,3,1,N M 39,,1592408,14.282,14.611,0,,0.58,7 +15525,-1,0.359881,0,3,0,1,2,,3,1,S M 39,,1592407,14.288,14.648,0,,0.58,7 +17793,0,0.198084,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,10.956,11.154,0,4.754018,5,5 +14872,1,0.131474,1,0,0,1,2,RON,3,1,7 Mile/S M 39,RAMP,1594908,0,0.131,0,,1.09,4 +15548,1,0.090495,1,0,0,1,2,ROF,3,1,N M 39/7 Mile,RAMP,1591909,0,0.09,0,,2.24,5 +15020,1,0.061258,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,4.416,4.477,0,1.470201,8,4.5 +18012,0,0.043839,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,10.912,10.956,0,1.052126,5,5 +12334,-1,0.030106,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.445,4.476,0,0.722555,8,4.5 +11650,-1,0.205066,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.519,4.724,0,4.921592,8,4.5 +14892,1,0.213104,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,4.514,4.727,0,5.114497,8,4.5 +15702,1,0.157331,1,0,0,1,2,ROF,3,1,S M 39/7 Mile,RAMP,1594909,0,0.157,0,,2.24,5 +15712,1,0.143022,1,0,0,1,2,RON,3,1,7 Mile/N M 39,RAMP,1591910,0,0.143,0,,1.09,4 +16405,0,0.247415,1,1,0,2,5,,3,1,Asbury,Park,1601110,0.501,0.748,0,5.937961,8,4.5 +17748,0,0.282223,2,2,0,2,3,,3,1,McNichols,Rd,1680701,17.496,17.778,0,6.773343,5,5 +18885,0,0.247987,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,9.811,10.059,0,5.951692,5,5 +23761,0,0.283159,1,1,0,2,4,,3,1,Puritan,St,4707953,1.024,1.307,0,6.795826,6,4.5 +30553,0,0.377471,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.059299,0.15,4 +33065,0,0.376312,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.031498,0.15,4 +33682,0,0.372935,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.95044,0.15,4 +33683,0,0.378142,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.075403,0.15,4 +16406,0,0.25132,1,1,0,2,5,,3,1,Asbury,Park,1601110,0.249,0.501,0,6.031678,8,4.5 +23762,0,0.278988,1,1,0,2,4,,3,1,Puritan,St,4707953,0.745,1.024,0,6.695714,6,4.5 +33063,0,0.37582,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.019682,0.15,4 +32952,0,0.001627,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.039057,0.15,4 +16399,0,0.12541,1,1,0,2,5,,3,1,Asbury,Park,1601110,0.874,0.999,0,3.009836,8,4.5 +16402,0,0.125821,1,1,0,2,5,,3,1,Asbury,Park,1601110,0.748,0.874,0,3.0197,8,4.5 +27441,0,0.124061,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.977464,0.15,4 +33044,0,0.002179,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.052286,0.15,4 +17586,0,0.250381,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,9.561,9.811,0,6.009145,5,5 +23760,0,0.214923,1,1,0,2,4,,3,1,Puritan,St,4707953,1.307,1.522,0,5.158161,6,4.5 +17752,0,0.251351,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,10.059,10.31,0,6.032418,5,5 +19156,0,0.214986,2,2,0,2,3,,3,1,McNichols,Rd,1680701,17.778,17.993,0,5.159671,5,5 +13567,1,0.280604,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,1.176,1.456,0,6.734488,6,4.5 +16380,0,0.504628,1,1,0,2,5,,3,1,Asbury,Park,1601110,1.497,2.001,0,12.111084,8,4.5 +18817,0,0.222012,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,11.432,11.654,0,5.328293,5,5 +19054,0,0.24983,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,10.805,11.055,0,5.995915,5,5 +23572,-1,0.280604,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,1.064,1.345,0,6.734507,6,4.5 +27442,0,0.500471,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.011307,0.15,4 +32951,0,0.247608,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.942589,0.15,4 +33037,0,0.494671,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.872104,0.15,4 +16387,0,0.241496,1,1,0,2,5,,3,1,Asbury,Park,1601110,1.255,1.497,0,5.7959,8,4.5 +23573,-1,0.220095,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,0.844,1.064,0,5.282274,6,4.5 +33045,0,0.247305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.935331,0.15,4 +33047,0,0.244871,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.876912,0.15,4 +16395,0,0.014017,1,1,0,2,5,,3,1,Asbury,Park,1601110,1.241,1.255,0,0.336419,8,4.5 +16376,0,0.124779,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.001,2.126,0,2.994705,8,4.5 +30516,0,0.132164,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.171945,0.15,4 +13566,1,0.215308,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,1.456,1.672,0,5.167382,6,4.5 +18493,0,0.24064,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,10.565,10.805,0,5.77537,5,5 +23571,-1,0.215256,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,1.345,1.56,0,5.166133,6,4.5 +33039,0,0.248346,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.960312,0.15,4 +33041,0,0.247387,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.93729,0.15,4 +33861,0,0.261355,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.272528,0.15,4 +17506,0,0.014088,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,10.551,10.565,0,0.338117,5,5 +18358,0,0.275158,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,11.654,11.929,0,6.60379,5,5 +19198,0,0.24757,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,11.307,11.555,0,5.941691,5,5 +17486,0,0.25197,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,11.055,11.307,0,6.047286,5,5 +291,-1,0.056501,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.427,5.483,0,1.356022,5,5 +2235,1,0.251303,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,0.221,0.473,0,6.031272,5,5 +3292,1,0.381757,2,0,0,2,5,,3,3,Southfield,Rd,665901,0.544,0.926,0,9.162175,8,4.5 +3651,0,0.344322,1,1,0,2,5,,3,3,Mount Vernon,St,688107,0.553,0.897,0,8.263719,8,4.5 +3666,1,0.094729,2,0,0,2,5,,3,3,Southfield,Rd,686303,0.397,0.491,0,2.273505,8,4.5 +3735,0,0.313288,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.049,5.362,0,7.518911,6,4.5 +4048,-1,0.814568,0,3,0,1,2,,3,3,N M 10,,710102,9.064,9.878,0,,0.58,7 +4394,1,0.678402,3,0,0,1,2,,3,3,N M 39,,710703,0.341,1.019,0,,0.58,7 +4735,1,0.280268,3,0,0,1,2,,3,3,S M 10,,710010,9.203,9.483,0,,0.58,7 +4746,1,0.169947,4,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.631,0.801,0,4.078726,8,4.5 +4762,1,0.134378,4,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.362,0.496,0,3.225078,8,4.5 +4817,1,0.140708,1,0,0,1,2,ROF,3,3,S M 10/M 102,RAMP,710603,0,0.141,0,,2.24,5 +4832,1,0.438363,3,0,0,1,2,,3,3,S M 10,,710010,9.483,9.921,0,,0.58,7 +4833,-1,0.478852,0,3,0,1,2,,3,3,S M 39,,710003,0.218,0.696,0,,0.58,7 +13598,0,0.485239,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,0.448,0.934,0,11.645731,8,4.5 +19704,1,0.151768,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.342,5.493,0,3.642425,5,5 +22040,-1,0.230912,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.895,1.126,0,5.541889,8,4.5 +22047,-1,0.184903,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.469,0.654,0,4.43766,8,4.5 +26217,0,0.51685,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.404394,0.15,4 +27423,0,0.500521,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.012501,0.15,4 +27425,0,0.51442,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.346087,0.15,4 +27444,0,0.20837,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.000873,0.15,4 +27452,0,0.243745,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.849876,0.15,4 +27454,0,0.393606,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.446551,0.15,4 +29699,0,0.422996,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.151901,0.15,4 +29704,0,0.308115,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.394759,0.15,4 +29705,0,0.31156,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.477439,0.15,4 +32353,0,0.489433,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.746384,0.15,4 +33052,0,0.517293,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.415043,0.15,4 +1670,-1,0.360789,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,4.825,5.186,0,8.658936,5,5 +12219,-1,0.101895,0,3,0,2,5,,3,1,Southfield Service Drive,,1582601,5.352,5.453,0,2.445491,8,4.5 +15011,1,0.080042,2,0,0,1,3,RSF,3,1,Circle,Dr,1592003,0.211,0.291,0,,5,5 +15085,1,0.040946,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,5.333,5.374,0,0.982704,8,4.5 +15159,1,0.328024,3,0,0,1,2,,3,1,N M 39,,1592408,15.081,15.409,0,,0.58,7 +15520,-1,0.327003,0,3,0,1,2,,3,1,S M 39,,1592407,15.098,15.425,0,,0.58,7 +19710,1,0.407109,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,4.76,5.167,0,9.770608,5,5 +31384,0,0.524933,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.598396,0.15,4 +32352,0,0.245491,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.891791,0.15,4 +32354,0,0.497192,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.932603,0.15,4 +32356,0,0.284,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.816002,0.15,4 +12932,-1,0.119946,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,4.975,5.095,0,2.878708,8,4.5 +14880,1,0.120282,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,4.976,5.096,0,2.886777,8,4.5 +13599,0,0.028331,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,0.42,0.448,0,0.67995,8,4.5 +12661,-1,0.228271,0,2,0,2,5,,3,1,Southfield Service Drive,,1582601,5.095,5.323,0,5.478499,8,4.5 +14924,1,0.236785,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,5.096,5.333,0,5.682831,8,4.5 +15380,1,0.206509,1,0,0,1,2,ROF,3,1,N M 39/M 102,RAMP,1592001,0,0.206,0,,2.24,5 +15551,1,0.196617,1,0,0,1,2,RON,3,1,M 102/S M 39,RAMP,1594910,0,0.197,0,,1.09,4 +12499,-1,0.028802,0,3,0,2,5,,3,1,Southfield Service Drive,,1582601,5.323,5.352,0,0.691241,8,4.5 +755,-1,0.196531,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.23,5.427,0,4.716745,5,5 +3624,1,0.109118,1,0,0,1,2,ROF,3,3,S M 39/M 102,RAMP,688709,0,0.109,0,,2.24,5 +3668,1,0.214354,2,0,0,2,5,,3,3,Southfield,Rd,686303,0.024,0.238,0,5.1445,8,4.5 +4716,1,0.328965,3,0,0,1,2,,3,3,N M 39,,710703,0.012,0.341,0,,0.58,7 +4807,-1,0.205394,0,3,0,1,2,,3,3,S M 39,,710003,0.012,0.218,0,,0.58,7 +15311,1,0.121136,2,0,0,1,3,RSF,3,1,Circle,Dr,1592003,0.09,0.211,0,,5,5 +15492,1,0.17093,2,0,0,1,3,RSF,3,1,Circle,Dr,1592002,0,0.171,0,,5,5 +19706,1,0.111561,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.211,5.323,0,2.677461,5,5 +26088,0,0.172034,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.128807,0.15,4 +2988,1,0.086836,3,0,0,2,5,,3,3,Southfield,Rd,665901,0.926,1.013,0,2.084056,8,4.5 +1191,-1,0.044256,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.186,5.23,0,1.062146,5,5 +15771,1,0.042111,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,5.414,5.456,0,1.010676,8,4.5 +19707,1,0.044547,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.167,5.211,0,1.069131,5,5 +4398,1,0.012014,3,0,0,1,2,,3,1,N M 39,,710703,0,0.012,0,,0.58,7 +4863,-1,0.012218,0,3,0,1,2,,3,1,S M 39,,710003,0,0.012,0,,0.58,7 +21985,1,0.011872,2,0,0,2,5,,3,1,Southfield Service Drive,,4412721,0.011,0.023,0,0.284931,8,4.5 +22034,1,0.011392,2,0,0,2,5,,3,3,Southfield,Rd,4412721,0,0.011,0,0.273402,8,4.5 +15777,1,0.040341,2,0,0,2,5,,3,1,Southfield Service Drive,,1591810,5.374,5.414,0,0.968179,8,4.5 +3670,1,0.012017,3,0,0,2,5,,3,1,Southfield Service Drive,,686303,0,0.012,0,0.288409,8,4.5 +3669,1,0.011803,3,0,0,2,5,,3,3,Southfield,Rd,686303,0.012,0.024,0,0.283282,8,4.5 +3627,1,0.103907,1,0,0,1,2,RON,3,3,M 102/N M 39,RAMP,688708,0,0.104,0,,1.09,4 +3667,1,0.158502,2,0,0,2,5,,3,3,Southfield,Rd,686303,0.238,0.397,0,3.804036,8,4.5 +15366,1,0.068247,2,0,0,1,3,RSF,3,3,Circle,Dr,1592003,0,0.068,0,,5,5 +15354,1,0.02172,2,0,0,1,3,RSF,3,1,Circle,Dr,1592003,0.068,0.09,0,,5,5 +19705,1,0.018919,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.323,5.342,0,0.454068,5,5 +2989,0,0.421287,1,1,1,2,5,,3,3,Southfield,Rd,665901,0,0.421,0,10.110888,8,4.5 +3652,0,0.219291,1,1,0,2,5,,3,3,Mount Vernon,St,688107,0.334,0.553,0,5.262992,8,4.5 +3736,0,0.225558,2,2,1,2,4,,3,3,9 Mile,Rd,684404,4.823,5.049,0,5.413388,6,4.5 +4049,-1,0.357564,0,2,0,1,2,,3,3,N M 10,,710102,8.435,8.793,0,,0.58,7 +4415,1,0.258804,2,0,0,1,2,,3,3,S M 10,,710010,8.571,8.83,0,,0.58,7 +4477,1,0.355255,1,0,0,1,2,RFF,3,3,N M 10/N M 39,RAMP,710608,0,0.355,0,,0.58,7 +4492,1,0.361155,1,0,0,2,5,,3,3,Northwestern,Hwy,710508,3.274,3.635,0,8.667717,8,4.5 +4708,1,0.028058,2,0,0,1,2,,3,3,N M 39,,710703,1.019,1.047,0,,0.58,7 +4808,1,0.32084,1,0,0,1,2,RFS,3,3,N M 39/N M 10,RAMP,710610,0,0.321,0,,0.22,6 +4810,-1,0.30888,0,3,0,1,2,,3,3,S M 39,,710003,0.978,1.287,0,,0.58,7 +4812,1,0.463576,1,0,0,1,2,RFF,3,3,S M 10/S M 39,RAMP,710607,0,0.464,0,,0.58,7 +20202,-1,0.574459,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,2.041,2.615,0,13.787018,8,4.5 +22049,-1,0.257427,0,1,0,2,5,,3,3,9 Mile/Southfield,Ramp,4412717,0,0.257,0,6.178255,8,4.5 +27394,0,0.19154,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.596949,0.15,4 +27397,0,0.486284,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.670816,0.15,4 +27453,0,0.549878,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.197072,0.15,4 +3737,0,0.119177,2,2,0,2,4,,3,3,9 Mile,Rd,684404,4.704,4.823,0,2.860255,6,4.5 +3653,0,0.208168,1,1,0,2,5,,3,3,Mount Vernon,St,688107,0.125,0.334,0,4.996025,8,4.5 +4491,1,0.077468,1,0,0,1,2,ROF,3,3,S M 10/9 Mile,RAMP,710510,0,0.077,0,,2.24,5 +4850,1,0.336927,3,0,0,1,2,,3,3,S M 10,,710010,8.234,8.571,0,,0.58,7 +27395,0,0.210678,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.056277,0.15,4 +3654,0,0.078102,1,1,0,2,5,,3,3,Mount Vernon,St,688107,0.047,0.125,0,1.874445,8,4.5 +3658,1,0.135697,2,0,0,2,5,,3,3,Winora,,687608,0,0.136,0,3.256735,8,4.5 +3664,1,0.113361,1,0,0,1,2,ROF,3,3,S M 39/S M 10 Service Drive,RAMP,686307,0,0.113,0,,2.24,5 +3676,1,0.193442,1,0,0,1,2,RON,3,3,N M 10 Service Drive/N M 10,RAMP,686104,0,0.193,0,,1.09,4 +4480,1,0.217877,1,0,0,1,2,RFF,3,3,S M 39/S M 10,RAMP,710605,0.235,0.453,0,,0.58,7 +4624,1,0.373111,2,0,0,1,2,,3,3,S M 10,,710010,8.83,9.203,0,,0.58,7 +4798,1,0.276339,1,0,0,1,2,ROF,3,3,S M 10/S M 10 Service Drive,RAMP,710005,0,0.276,0,,2.24,5 +4815,1,0.234942,2,0,0,1,2,RFF,3,3,S M 39/S M 10,RAMP,710605,0,0.235,0,,0.58,7 +4818,-1,0.282069,0,2,0,1,2,,3,3,S M 39,,710003,0.696,0.978,0,,0.58,7 +5061,-1,0.271166,0,2,0,1,2,,3,3,N M 10,,710102,8.793,9.064,0,,0.58,7 +22048,-1,0.211773,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.257,0.469,0,5.082543,8,4.5 +2731,0,0.122954,1,1,1,2,5,,3,3,Southfield,Rd,665901,0.421,0.544,0,2.950894,8,4.5 +3665,1,0.154852,2,0,0,2,5,,3,3,Southfield,Rd,686303,0.491,0.646,0,3.716458,8,4.5 +20841,0,0.046039,1,1,0,2,5,,3,3,Southfield,Rd,4401144,0,0.046,0,1.104926,8,4.5 +3657,1,0.095342,2,0,0,2,5,,3,3,Winora,,687608,0.136,0.231,0,2.288212,8,4.5 +4776,1,0.085827,4,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.276,0.362,0,2.059858,8,4.5 +861,0,0.119577,3,3,1,2,3,,3,3,Southfield,Rd,611304,4.625,4.744,0,2.869857,5,5 +4381,1,0.216287,3,0,0,1,2,,3,3,N M 39,,710703,1.047,1.263,0,,0.58,7 +4706,1,0.021873,3,0,0,1,2,,3,3,N M 39,,710703,1.263,1.285,0,,0.58,7 +826,0,0.124912,3,3,1,2,3,,3,3,Southfield,Rd,611304,4.5,4.625,0,2.99788,5,5 +1610,-1,0.725239,0,3,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.717,6.442,0,17.405743,5,5 +3638,1,0.281073,2,0,0,2,7,DIV,3,3,Northland,Dr,688308,0.057,0.338,0,6.745756,7,4.5 +4484,1,0.164616,1,0,0,1,2,RON,3,3,Northland Mall/S M 10,RAMP,710604,0,0.165,0,,1.09,4 +4673,1,0.135957,3,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.934,1.07,0,3.262959,8,4.5 +13597,0,0.495692,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,0.934,1.429,0,11.89661,8,4.5 +13602,-1,0.028987,0,1,0,1,3,RSF,3,1,Greenlodge,St,1584410,0,0.029,0,,5,5 +13608,1,0.198407,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0,0.198,0,4.76176,5,5 +14602,-1,0.034969,0,3,0,2,5,,3,1,James Couzens,Fwy,1590805,0.163,0.198,0,0.839254,8,4.5 +14625,1,0.096472,3,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.117,0.213,0,2.315337,8,4.5 +16352,0,0.249368,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.619,2.869,0,5.984833,8,4.5 +17788,0,0.067616,2,2,1,2,3,,3,1,Greenfield,Rd,1651002,12.156,12.223,0,1.622788,5,5 +19529,-1,0.222227,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0,0.222,0,5.333457,5,5 +19696,1,0.681426,3,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.732,6.413,0,16.354234,5,5 +19905,-1,0.268413,0,2,0,2,7,DIV,3,3,Northland,Dr,4406956,0.056,0.324,0,6.441907,7,4.5 +21372,1,0.274256,1,0,0,1,2,ROF,3,3,N M 10/N M 10 Service Drive,RAMP,4700041,0.061,0.335,0,,2.24,5 +22038,-1,0.113333,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,1.227,1.34,0,2.72,8,4.5 +27443,0,0.19582,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.699675,0.15,4 +33038,0,0.511047,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.265122,0.15,4 +33048,0,0.150965,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.623158,0.15,4 +16371,0,0.125657,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.494,2.619,0,3.015761,8,4.5 +16374,0,0.122844,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.371,2.494,0,2.948252,8,4.5 +30515,0,0.141965,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.407151,0.15,4 +2113,-1,0.041589,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.676,5.717,0,0.998138,5,5 +19701,1,0.036164,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.639,5.675,0,0.867936,5,5 +27445,0,0.092835,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.228037,0.15,4 +27446,0,0.10761,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.582636,0.15,4 +1852,-1,0.16966,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.483,5.653,0,4.071851,5,5 +3639,1,0.027117,2,0,0,2,7,DIV,3,3,Northland,Dr,688308,0.03,0.057,0,0.650799,7,4.5 +19702,1,0.145121,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.493,5.639,0,3.482906,5,5 +20254,-1,0.055641,0,2,0,2,7,DIV,3,3,Northland,Dr,4406956,0,0.056,0,1.335386,7,4.5 +583,-1,0.023224,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,5.653,5.676,0,0.557369,5,5 +3641,1,0.013835,2,0,0,2,7,,3,1,Northland,Dr,688308,0,0.014,0,0.332033,7,4.5 +3640,1,0.016044,2,0,0,2,7,,3,3,Northland,Dr,688308,0.014,0.03,0,0.385044,7,4.5 +16351,0,0.108608,1,1,0,2,5,,3,1,Asbury,Park,1601110,2.869,2.977,0,2.606597,8,4.5 +19697,1,0.057495,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,5.675,5.732,0,1.379886,5,5 +4679,1,0.132864,3,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.801,0.934,0,3.188729,8,4.5 +22039,-1,0.101105,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,1.126,1.227,0,2.426525,8,4.5 +22136,1,0.12674,1,0,0,1,2,ROF,3,3,N M 10/N M 10 Service Drive,RAMP,4700041,0.335,0.461,0,,2.24,5 +21382,1,0.02743,1,0,0,1,2,ROF,3,3,N M 10/N M 10 Service Drive,RAMP,4462958,0,0.027,0,,2.24,5 +19197,0,0.125692,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,11.804,11.93,0,3.016599,5,5 +14601,-1,0.094375,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.198,0.292,0,2.264993,8,4.5 +14623,1,0.05796,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.274,0.332,0,1.391032,8,4.5 +19196,0,0.144409,2,2,1,2,3,,3,1,Greenfield,Rd,1651002,11.969,12.114,0,3.465824,5,5 +18748,0,0.039364,2,2,0,2,3,,3,1,Greenfield,Rd,1651002,11.93,11.969,0,0.944731,5,5 +14624,1,0.060315,3,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.213,0.274,0,1.447563,8,4.5 +18746,0,0.042244,2,2,1,2,3,,3,1,Greenfield,Rd,1651002,12.114,12.156,0,1.013861,5,5 +40212,0,0.012269,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.949,5.961,0,0.29446,6,4.5 +3636,1,0.234655,2,0,0,2,7,DIV,3,3,Northland,Dr,688308,0.379,0.613,0,5.631724,7,4.5 +13604,1,0.102517,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0.337,0.439,0,2.460403,5,5 +14604,-1,0.056063,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.029,0.085,0,1.345518,8,4.5 +19525,-1,0.068242,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.355,0.423,0,1.637811,5,5 +19530,1,0.111118,1,0,0,1,3,,3,3,W M 102/N M 10,RAMP,1879310,0,0.111,0,,5,5 +20491,-1,0.241309,0,2,0,2,7,DIV,3,3,Northland,Dr,4406956,0.364,0.605,0,5.791405,7,4.5 +20727,-1,0.040272,0,2,0,2,7,DIV,3,3,Northland,Dr,4406956,0.324,0.364,0,0.966526,7,4.5 +22037,-1,0.018032,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,1.34,1.358,0,0.432773,8,4.5 +22055,1,0.039683,2,0,0,1,3,RSF,3,1,Motor,Dr,4700040,0,0.04,0,,5,5 +4602,1,0.160029,1,0,0,1,2,RON,3,3,W M 102/N M 10,RAMP,710006,0,0.16,0,,1.09,4 +4984,1,0.129331,3,0,0,1,2,,3,3,S M 10,,710010,9.921,10.05,0,,0.58,7 +5060,-1,0.130534,0,3,0,1,2,,3,3,N M 10,,710102,9.878,10.009,0,,0.58,7 +12082,1,0.014505,3,0,0,1,2,,3,3,S M 10,,1577509,0,0.014,0,,0.58,7 +13350,-1,0.015401,0,3,0,1,2,,3,3,N M 10,,1577510,0,0.015,0,,0.58,7 +13606,1,0.043221,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0.227,0.271,0,1.037294,5,5 +14584,1,0.149231,2,0,0,1,3,RSF,3,1,Motor,Dr,1590809,0,0.149,0,,5,5 +14606,-1,0.014052,0,2,0,2,5,,3,3,Northwestern,Hwy,1590805,0,0.014,0,0.337257,8,4.5 +14629,1,0.013195,2,0,0,2,5,,3,3,Northwestern,Hwy,1590804,0,0.013,0,0.316682,8,4.5 +19526,-1,0.067611,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.287,0.355,0,1.622652,5,5 +21656,1,0.030429,2,0,0,1,3,RSF,3,3,Motor,Dr,4700040,0.164,0.194,0,,5,5 +21993,1,0.106445,2,0,0,1,3,RSF,3,1,Motor,Dr,4700040,0.04,0.146,0,,5,5 +22036,-1,0.115762,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,1.358,1.474,0,2.778299,8,4.5 +13607,1,0.029073,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0.198,0.227,0,0.697751,5,5 +21786,1,0.017464,2,0,0,1,3,RSF,3,1,Motor,Dr,4700040,0.146,0.164,0,,5,5 +3637,1,0.040533,2,0,0,2,7,DIV,3,3,Northland,Dr,688308,0.338,0.379,0,0.972796,7,4.5 +4666,1,0.11218,3,0,0,2,5,,3,3,Northwestern,Hwy,710005,1.084,1.196,0,2.692317,8,4.5 +19528,-1,0.046961,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.222,0.269,0,1.127062,5,5 +4671,1,0.014709,3,0,0,2,5,,3,3,Northwestern,Hwy,710005,1.07,1.084,0,0.353007,8,4.5 +4790,1,0.020105,3,0,0,2,5,,3,3,Northwestern,Hwy,710005,1.196,1.217,0,0.482509,8,4.5 +19522,-1,0.019955,0,1,0,1,3,,3,3,S M 10/w M 102,,1879404,0,0.02,0,,5,5 +19527,-1,0.01795,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.269,0.287,0,0.430798,5,5 +13348,-1,0.070068,0,3,0,1,2,,3,1,N M 10,,1577510,0.015,0.086,0,,0.58,7 +13605,1,0.066078,2,0,0,2,3,,3,1,8 Mile Service Drive,,1584408,0.271,0.337,0,1.585864,5,5 +14626,1,0.017994,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.099,0.117,0,0.431853,8,4.5 +14627,1,0.069312,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.03,0.099,0,1.663489,8,4.5 +14628,1,0.01636,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.013,0.03,0,0.392633,8,4.5 +14605,-1,0.014713,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.014,0.029,0,0.353103,8,4.5 +21590,1,0.060497,1,0,0,1,2,ROF,3,1,N M 10/W M 102,RAMP,4700041,0,0.061,0,,2.24,5 +22035,-1,0.050986,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,1.474,1.525,0,1.223673,8,4.5 +2240,0,0.003526,3,3,0,2,3,,3,1,Greenfield,Rd,648307,0,0.004,0,0.084626,5,5 +14603,-1,0.078256,0,3,0,2,5,,3,1,James Couzens,Fwy,1590805,0.085,0.163,0,1.878139,8,4.5 +19195,0,0.064922,3,3,1,2,3,,3,1,Greenfield,Rd,1651002,12.223,12.288,0,1.558137,5,5 +13601,-1,0.04953,0,1,0,1,3,RSF,3,1,Greenlodge,St,1584410,0.029,0.078,0,,5,5 +17773,0,0.010507,3,3,0,2,3,,3,1,Greenfield,Rd,1651002,12.288,12.299,0,0.252161,5,5 +19524,-1,0.04853,0,2,0,2,3,,3,3,W M 102 Service Drive,,1879401,0.423,0.471,0,1.164713,5,5 +34178,1,0.253891,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,3.616,3.87,0,6.093382,6,4.5 +2239,0,0.012201,3,3,0,2,3,,3,3,Greenfield,Rd,648307,0.004,0.016,0,0.292835,5,5 +2236,1,0.205622,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,0.016,0.221,0,4.934927,5,5 +2231,1,0.187392,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,0.819,1.006,0,4.4974,5,5 +3628,1,0.278763,2,0,0,2,7,DIV,3,3,J L Hudson,Dr,688602,0.376,0.655,0,6.690315,7,4.5 +3643,-1,0.211418,0,2,0,2,7,DIV,3,3,Providence,Dr,688208,0.08,0.291,0,5.074032,7,4.5 +3649,0,0.495859,1,1,0,2,5,,3,3,Mount Vernon,St,688107,1.048,1.544,0,11.900611,8,4.5 +3732,0,0.204091,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.668,5.872,0,4.89819,6,4.5 +3734,0,0.292314,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.362,5.654,0,7.01554,6,4.5 +20441,-1,0.277881,0,2,0,2,7,DIV,3,3,J L Hudson,Dr,4406951,0.359,0.637,0,6.669144,7,4.5 +21126,1,0.274224,2,0,0,2,7,DIV,3,3,Providence,Dr,4409226,0.016,0.29,0,6.581384,7,4.5 +26215,0,0.491839,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.804124,0.15,4 +27457,0,0.160391,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.849385,0.15,4 +29702,0,0.164162,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.939887,0.15,4 +29703,0,0.168487,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.043685,0.15,4 +3633,1,0.330883,2,0,0,2,7,DIV,3,3,J L Hudson,Dr,688602,0.034,0.365,0,7.941202,7,4.5 +3646,-1,0.016546,0,2,0,2,7,DIV,3,3,Providence,Dr,688208,0,0.017,0,0.397104,7,4.5 +3647,1,0.183932,2,0,0,2,7,DIV,3,3,North Park,Dr,688206,0.212,0.396,0,4.414359,7,4.5 +3648,1,0.211934,2,0,0,2,7,DIV,3,3,North Park,Dr,688206,0,0.212,0,5.086416,7,4.5 +20894,-1,0.345883,0,2,0,2,7,DIV,3,3,J L Hudson,Dr,4406951,0,0.346,0,8.301194,7,4.5 +21127,1,0.015744,2,0,0,2,7,DIV,3,3,Providence,Dr,4409226,0,0.016,0,0.377853,7,4.5 +21128,-1,0.191402,0,2,0,2,7,DIV,3,3,North Park,Dr,4409126,0.242,0.433,0,4.593652,7,4.5 +21129,-1,0.210172,0,2,0,2,7,DIV,3,3,North Park,Dr,4409126,0.032,0.242,0,5.044123,7,4.5 +27450,0,0.163533,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.924795,0.15,4 +3992,1,0.134546,4,0,0,2,5,,3,3,Northwestern,Hwy,710005,0.496,0.631,0,3.229101,8,4.5 +21130,-1,0.031466,0,2,0,2,7,,3,3,North Park,Dr,4409126,0,0.032,0,0.755173,7,4.5 +22042,-1,0.08739,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.774,0.861,0,2.097367,8,4.5 +22043,-1,0.015387,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.759,0.774,0,0.369292,8,4.5 +22046,-1,0.104836,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.654,0.759,0,2.516064,8,4.5 +3634,0,0.033695,1,1,0,2,7,,3,3,J L Hudson,Dr,688602,0,0.034,0,0.808687,7,4.5 +22041,-1,0.033789,0,3,0,2,5,,3,3,Northwestern,Hwy,4412717,0.861,0.895,0,0.810926,8,4.5 +27449,0,0.198262,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.758296,0.15,4 +29700,0,0.106868,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.564823,0.15,4 +29701,0,0.116641,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.799388,0.15,4 +3629,1,0.01167,2,0,0,2,7,DIV,3,3,J L Hudson,Dr,688602,0.365,0.376,0,0.280088,7,4.5 +3644,-1,0.010791,0,2,0,2,7,DIV,3,3,Providence,Dr,688208,0.069,0.08,0,0.258991,7,4.5 +3645,-1,0.052331,0,2,0,2,7,DIV,3,3,Providence,Dr,688208,0.017,0.069,0,1.255932,7,4.5 +20659,-1,0.013392,0,2,0,2,7,DIV,3,3,J L Hudson,Dr,4406951,0.346,0.359,0,0.321409,7,4.5 +27455,0,0.295761,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.098274,0.15,4 +27456,0,0.316658,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.599789,0.15,4 +3650,0,0.151487,1,1,0,2,5,,3,3,Mount Vernon,St,688107,0.897,1.048,0,3.635694,8,4.5 +3733,0,0.01391,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.654,5.668,0,0.333843,6,4.5 +2234,1,0.254394,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,0.473,0.727,0,6.105444,5,5 +27459,0,0.15995,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.838812,0.15,4 +2232,1,0.09165,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,0.727,0.819,0,2.199608,5,5 +40213,1,0.0219,2,0,0,2,7,DIV,3,3,J L Hudson,Dr,688602,0.655,0.677,0,0.525598,7,4.5 +2229,0,0.076224,3,3,1,2,3,,3,3,Greenfield,Rd,648307,1.219,1.295,0,1.829372,5,5 +3731,0,0.076918,2,2,1,2,4,,3,3,9 Mile,Rd,684404,5.872,5.949,0,1.846037,6,4.5 +2230,1,0.213026,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,1.006,1.219,0,5.112613,5,5 +2228,0,0.210606,3,3,1,2,3,,3,3,Greenfield,Rd,648307,1.295,1.506,0,5.054538,5,5 +12071,1,1.448691,3,0,0,1,2,,3,1,S M 10,,1577509,1.495,2.944,0,,0.58,7 +12224,0,0.50667,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.999,4.506,0,12.160071,6,4.5 +12426,0,0.124337,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.009,2.133,0,2.984077,6,4.5 +12896,0,0.501046,2,2,0,2,4,,3,1,Fenkell,St,1579605,6.453,6.954,0,12.025101,6,4.5 +13344,-1,1.469516,0,3,0,1,2,,3,1,N M 10,,1577510,1.535,3.004,0,,0.58,7 +13562,1,0.12155,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,2.547,2.668,0,2.91719,6,4.5 +13587,1,0.182709,2,0,0,2,4,DV2,3,1,Vassar,Ave,1584503,0.335,0.518,0,4.385024,6,4.5 +14590,-1,0.365522,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,2.156,2.521,0,8.772531,8,4.5 +14594,-1,0.475625,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,1.314,1.79,0,11.415006,8,4.5 +14612,1,0.348096,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,2.195,2.543,0,8.354314,8,4.5 +14615,1,0.516229,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.348,1.864,0,12.389507,8,4.5 +17650,0,0.322515,2,2,0,2,3,,3,1,McNichols,Rd,1680701,18.669,18.991,0,7.740355,5,5 +18147,0,0.313848,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,12.606,12.92,0,7.53234,5,5 +22918,0,0.127216,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,9.796,9.923,0,3.053179,5,5 +23542,-1,0.253424,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.242,2.496,0,6.082175,6,4.5 +23757,0,0.499977,1,1,0,2,4,,3,1,Puritan,St,4707953,2.023,2.523,0,11.999442,6,4.5 +32791,0,0.188001,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.512031,0.15,4 +32792,0,0.133083,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.193984,0.15,4 +32794,0,0.145445,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.49067,0.15,4 +32796,0,0.106067,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.545608,0.15,4 +32945,0,0.501047,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.02512,0.15,4 +33028,0,0.289099,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.938378,0.15,4 +33860,0,0.122364,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.936747,0.15,4 +33875,0,0.263232,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.317573,0.15,4 +12850,0,0.168369,1,1,0,2,4,,3,1,Hubbell,St,1583004,1.498,1.666,0,4.040863,6,4.5 +18263,0,0.190585,2,2,0,2,3,,3,1,McNichols,Rd,1680701,18.302,18.493,0,4.574034,5,5 +23758,0,0.190299,1,1,0,2,4,,3,1,Puritan,St,4707953,1.833,2.023,0,4.567175,6,4.5 +32946,0,0.138106,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.314532,0.15,4 +33017,0,0.259409,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.225814,0.15,4 +33018,0,0.159879,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.837091,0.15,4 +32947,0,0.254756,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.114141,0.15,4 +33016,0,0.258667,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.208007,0.15,4 +32793,0,0.1201,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.882398,0.15,4 +13020,0,0.249443,1,1,0,2,4,,3,1,Hubbell,St,1583004,1.248,1.498,0,5.986635,6,4.5 +13330,0,0.250334,1,1,0,2,4,,3,1,Hubbell,St,1583004,0.998,1.248,0,6.008012,6,4.5 +12575,0,0.343011,1,1,0,2,4,,3,1,Hubbell,St,1583004,1.666,2.009,0,8.232262,6,4.5 +17881,0,0.176178,2,2,0,2,3,,3,1,McNichols,Rd,1680701,18.493,18.669,0,4.228282,5,5 +13021,0,0.365675,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.379,2.744,0,8.776195,6,4.5 +13564,1,0.253471,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,1.92,2.174,0,6.083306,6,4.5 +13589,1,0.060477,2,0,0,2,4,DV2,3,1,Vassar,Ave,1584503,0.029,0.09,0,1.451448,6,4.5 +14597,-1,0.208741,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.995,1.203,0,5.009785,8,4.5 +14618,1,0.209739,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.069,1.279,0,5.033736,8,4.5 +18943,0,0.129759,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,12.438,12.568,0,3.114223,5,5 +23546,-1,0.253673,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,1.809,2.062,0,6.088146,6,4.5 +23775,1,0.055277,1,0,0,2,4,,3,1,Vassar/Couzens Cutoff,,4707898,0,0.055,0,1.326638,6,4.5 +12764,0,0.249217,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.744,2.994,0,5.981207,6,4.5 +17543,0,0.319489,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,12.119,12.438,0,7.667726,5,5 +33027,0,0.359555,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.629311,0.15,4 +33026,0,0.077103,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.850479,0.15,4 +12576,0,0.191376,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.994,3.185,0,4.593013,6,4.5 +14619,1,0.047511,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.022,1.069,0,1.140257,8,4.5 +13590,0,0.02938,2,2,0,2,4,,3,1,Vassar,Ave,1584503,0,0.029,0,0.705117,6,4.5 +14598,-1,0.011455,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,0.983,0.995,0,0.274927,8,4.5 +13563,1,0.37348,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,2.174,2.547,0,8.963532,6,4.5 +13239,0,0.115566,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.263,2.379,0,2.773581,6,4.5 +23545,-1,0.118383,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.062,2.181,0,2.841187,6,4.5 +33029,0,0.180527,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.332644,0.15,4 +33030,0,0.026836,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.644065,0.15,4 +33031,0,0.036248,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.869959,0.15,4 +12121,0,0.116049,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.133,2.249,0,2.785174,6,4.5 +11964,0,0.013944,1,1,0,2,4,,3,1,Hubbell,St,1583004,2.249,2.263,0,0.334659,6,4.5 +23543,-1,0.061635,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.181,2.242,0,1.479232,6,4.5 +32795,0,0.102247,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.453919,0.15,4 +12075,1,0.421308,3,0,0,1,2,,3,1,S M 10,,1577509,1.074,1.495,0,,0.58,7 +13345,-1,0.460991,0,3,0,1,2,,3,1,N M 10,,1577510,1.074,1.535,0,,0.58,7 +13407,1,0.198849,1,0,0,1,2,ROF,3,1,N M 10/7 Mile,RAMP,1585107,0,0.199,0,,2.24,5 +13574,1,0.160215,1,0,0,1,2,RON,3,1,7 Mile/S M 10,RAMP,1584505,0,0.16,0,,1.09,4 +13588,1,0.245049,2,0,0,2,4,DV2,3,1,Vassar,Ave,1584503,0.09,0.335,0,5.881182,6,4.5 +14616,1,0.047267,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.301,1.348,0,1.134396,8,4.5 +13408,1,0.151286,1,0,0,1,2,RON,3,1,7 Mile/N M 10,RAMP,1585106,0,0.151,0,,1.09,4 +13575,1,0.193377,1,0,0,1,2,ROF,3,1,S M 10/7 Mile,RAMP,1584504,0,0.193,0,,2.24,5 +14596,-1,0.078509,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,1.203,1.282,0,1.884213,8,4.5 +18468,0,0.038378,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,12.568,12.606,0,0.921082,5,5 +14617,1,0.021854,4,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.279,1.301,0,0.524501,8,4.5 +14595,-1,0.032332,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,1.282,1.314,0,0.775969,8,4.5 +12387,0,0.112872,2,2,0,2,4,,3,1,Fenkell,St,1579605,7.231,7.344,0,2.70893,6,4.5 +13163,0,0.168243,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.507,3.675,0,4.037829,6,4.5 +14609,1,0.347788,4,0,0,2,5,,3,1,James Couzens,Fwy,1590804,2.801,3.149,0,8.346918,8,4.5 +18963,0,0.091704,2,2,0,2,3,,3,1,McNichols,Rd,1680701,19.275,19.367,0,2.200896,5,5 +23298,0,0.168445,1,1,1,2,3,,3,1,Schaefer,Hwy,4706528,9.297,9.465,0,4.042686,5,5 +23755,0,0.060476,1,1,0,2,4,,3,1,Puritan,St,4707953,2.798,2.858,0,1.45143,6,4.5 +33056,0,0.385625,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.254989,0.15,4 +33058,0,0.377834,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.068017,0.15,4 +33062,0,0.301594,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.238253,0.15,4 +33684,0,0.403746,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.689898,0.15,4 +33876,0,0.336005,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.064115,0.15,4 +12629,0,0.277685,2,2,0,2,4,,3,1,Fenkell,St,1579605,6.954,7.231,0,6.664432,6,4.5 +23478,0,0.251325,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,9.045,9.297,0,6.031805,5,5 +23756,0,0.275361,1,1,0,2,4,,3,1,Puritan,St,4707953,2.523,2.798,0,6.608665,6,4.5 +33057,0,0.111114,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.666734,0.15,4 +23705,0,0.251523,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,8.794,9.045,0,6.036564,5,5 +19157,0,0.284183,2,2,0,2,3,,3,1,McNichols,Rd,1680701,18.991,19.275,0,6.820392,5,5 +23044,0,0.330892,1,1,1,2,3,,3,1,Schaefer,Hwy,4706528,9.465,9.796,0,7.941401,5,5 +33042,0,0.310027,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.440657,0.15,4 +33064,0,0.124541,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.988978,0.15,4 +13333,0,0.25362,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.254,3.507,0,6.086891,6,4.5 +23753,0,0.109032,1,1,0,2,4,,3,1,Puritan,St,4707953,3.019,3.128,0,2.616759,6,4.5 +12184,0,0.107194,2,2,0,2,4,,3,1,Fenkell,St,1579605,7.344,7.451,0,2.572654,6,4.5 +12223,0,0.125086,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.003,3.128,0,3.002075,6,4.5 +12045,0,0.125851,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.128,3.254,0,3.020421,6,4.5 +23754,0,0.16041,1,1,0,2,4,,3,1,Puritan,St,4707953,2.858,3.019,0,3.849846,6,4.5 +23752,0,0.115118,1,1,0,2,4,,3,1,Puritan,St,4707953,3.128,3.243,0,2.762837,6,4.5 +12667,0,0.049183,1,1,1,2,4,,3,1,Meyers,Rd,1583210,3.812,3.861,0,1.180391,6,4.5 +13557,1,0.15568,1,0,0,1,2,RON,3,1,Meyers/S M 10,RAMP,1584507,0,0.156,0,,1.09,4 +14588,-1,0.101077,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,2.687,2.788,0,2.425848,8,4.5 +14611,1,0.224493,3,0,0,2,5,,3,1,James Couzens,Fwy,1590804,2.543,2.768,0,5.387834,8,4.5 +18078,0,0.221659,2,2,0,2,3,,3,1,McNichols,Rd,1680701,19.486,19.708,0,5.319811,5,5 +12853,0,0.136967,2,2,0,2,4,,3,1,Meyers,Rd,1583210,3.675,3.812,0,3.287216,6,4.5 +14610,1,0.033854,4,0,0,2,5,,3,1,James Couzens,Fwy,1590804,2.768,2.801,0,0.812502,8,4.5 +12429,0,0.137594,3,3,0,2,4,,3,1,Meyers,Rd,1583210,3.861,3.999,0,3.302258,6,4.5 +14589,-1,0.165719,0,3,0,2,5,,3,1,James Couzens,Fwy,1590805,2.521,2.687,0,3.977267,8,4.5 +18385,0,0.088229,3,3,0,2,3,,3,1,McNichols,Rd,1680701,19.398,19.486,0,2.117484,5,5 +18596,0,0.03084,1,1,0,2,3,,3,1,McNichols,Rd,1680701,19.367,19.398,0,0.740171,5,5 +13406,1,0.194594,1,0,0,1,2,ROF,3,1,N M 10/Meyers,RAMP,1585108,0,0.195,0,,2.24,5 +11967,0,0.500936,1,1,1,2,4,,3,1,Meyers,Rd,1583210,4.506,5.006,0,12.022453,6,4.5 +16743,0,0.123735,3,3,0,2,5,,3,1,Curtis,St,1620803,0.179,0.303,0,2.969636,8,4.5 +17636,0,0.062138,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,13.101,13.163,0,1.491307,5,5 +23211,0,0.155537,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,10.392,10.548,0,3.732897,5,5 +23536,-1,0.373637,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,3.11,3.483,0,8.967298,6,4.5 +32944,0,0.502998,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.071949,0.15,4 +33059,0,0.25214,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.051363,0.15,4 +33067,0,0.208502,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.004056,0.15,4 +13559,1,0.224804,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,2.891,3.116,0,5.395285,6,4.5 +13561,1,0.197196,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,2.668,2.866,0,4.732702,6,4.5 +14592,-1,0.227616,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,1.914,2.142,0,5.462795,8,4.5 +14614,1,0.317349,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,1.864,2.181,0,7.616371,8,4.5 +16659,0,0.103276,2,2,0,2,5,,3,1,Curtis,St,1620803,0,0.103,0,2.478613,8,4.5 +23538,-1,0.21104,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.771,2.982,0,5.064961,6,4.5 +23540,-1,0.189217,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.557,2.746,0,4.541211,6,4.5 +23635,0,0.299257,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,10.052,10.352,0,7.182175,5,5 +22551,0,0.01395,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,10.039,10.052,0,0.334803,5,5 +22703,0,0.115616,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,9.923,10.039,0,2.774794,5,5 +23541,-1,0.061334,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.496,2.557,0,1.47201,6,4.5 +14593,-1,0.12435,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,1.79,1.914,0,2.984394,8,4.5 +23479,0,0.040887,2,2,0,2,3,,3,1,Schaefer,Hwy,4706528,10.352,10.392,0,0.981279,5,5 +14613,1,0.014075,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,2.181,2.195,0,0.337805,8,4.5 +23539,-1,0.025285,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.746,2.771,0,0.606846,6,4.5 +13560,1,0.025283,2,0,0,2,4,DV2,3,1,Outer,Dr,1584506,2.866,2.891,0,0.606781,6,4.5 +14591,-1,0.013989,0,2,0,2,5,,3,1,James Couzens,Fwy,1590805,2.142,2.156,0,0.33574,8,4.5 +16411,0,0.062201,2,2,0,2,5,,3,1,Curtis,St,1620803,0.103,0.165,0,1.492814,8,4.5 +23537,-1,0.127359,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,2.982,3.11,0,3.056622,6,4.5 +33060,0,0.137274,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.294574,0.15,4 +33061,0,0.02269,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.544566,0.15,4 +16150,0,0.013965,3,3,0,2,5,,3,1,Curtis,St,1620803,0.165,0.179,0,0.335159,8,4.5 +17958,0,0.180975,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,12.92,13.101,0,4.343411,5,5 +23045,0,0.248112,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,10.548,10.796,0,5.954681,5,5 +22843,0,0.240479,1,1,0,2,3,,3,1,Schaefer,Hwy,4706528,10.796,11.036,0,5.771508,5,5 +16220,0,0.107478,1,1,0,2,5,,3,1,Curtis,St,1620803,0.42,0.527,0,2.579472,8,4.5 +16475,0,0.116671,3,3,0,2,5,,3,1,Curtis,St,1620803,0.303,0.42,0,2.800092,8,4.5 +17102,0,0.111465,1,1,0,2,5,,3,1,Curtis,St,1620803,0.527,0.639,0,2.675163,8,4.5 +33066,0,0.148778,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.57066,0.15,4 +32943,0,0.030768,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.738442,0.15,4 +17353,0,0.217589,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,13.422,13.639,0,5.222133,5,5 +37,0,0.236812,2,2,1,2,4,,3,3,9 Mile,Rd,607709,4.776,5.012,0,5.683478,6,4.5 +530,0,0.488364,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,0.021,0.509,0,11.720726,6,4.5 +952,-1,0.190864,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,6.998,7.188,0,4.580744,5,5 +3298,-1,0.504927,0,2,0,2,5,DV2,3,3,Oak Park,Blvd,665504,0.489,0.994,0,12.118259,8,4.5 +13591,0,0.367461,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,2.055,2.423,0,8.819075,8,4.5 +19692,1,0.372393,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,6.797,7.17,0,8.937422,5,5 +21124,1,0.505034,2,0,0,2,5,DV2,3,3,Oak Park,Blvd,4409248,0.489,0.994,0,12.12081,8,4.5 +23462,-1,0.183055,0,2,0,2,4,DV2,3,1,Vassar,Ave,4704573,0.306,0.489,0,4.393317,6,4.5 +27432,0,0.54426,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.062238,0.15,4 +29492,0,0.308518,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.404434,0.15,4 +29660,0,0.675955,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,16.22291,0.15,4 +1412,-1,0.30438,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,6.693,6.998,0,7.305114,5,5 +13592,0,0.123746,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,1.932,2.055,0,2.969916,8,4.5 +16339,0,0.324171,1,1,0,2,5,,3,1,Hubbell,St,1601208,0.415,0.739,0,7.780104,8,4.5 +19693,1,0.125036,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,6.672,6.797,0,3.000861,5,5 +33022,0,0.392983,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.431582,0.15,4 +33023,0,0.115352,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.768448,0.15,4 +33687,0,0.46262,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.102878,0.15,4 +13593,0,0.183581,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,1.748,1.932,0,4.405944,8,4.5 +14621,1,0.15741,2,0,0,2,5,,3,1,James Couzens,Fwy,1590804,0.693,0.85,0,3.77783,8,4.5 +16343,0,0.162403,1,1,0,2,5,,3,1,Hubbell,St,1601208,0.253,0.415,0,3.897681,8,4.5 +33032,0,0.179285,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.302839,0.15,4 +13595,0,0.095613,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,1.62,1.716,0,2.294717,8,4.5 +33033,0,0.214375,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.145004,0.15,4 +13594,0,0.032649,1,1,0,2,5,,3,1,Pembroke,Ave,1584502,1.716,1.748,0,0.783573,8,4.5 +690,-1,0.245164,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,6.442,6.688,0,5.883937,5,5 +19694,1,0.259184,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,6.413,6.672,0,6.220411,5,5 +27433,0,0.247324,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.935786,0.15,4 +27619,0,0.26774,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.425749,0.15,4 +1934,-1,0.00578,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,6.688,6.693,0,0.138726,5,5 +2636,0,0.010943,1,1,0,2,5,,3,1,Hubbell,,666306,0,0.011,0,0.262641,8,4.5 +3160,0,0.011884,1,1,0,2,5,,3,3,Hubbell,,666306,0.011,0.023,0,0.285206,8,4.5 +33025,0,0.09691,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.325839,0.15,4 +33873,0,0.396972,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.527328,0.15,4 +36,0,0.494992,2,2,1,2,4,,3,3,9 Mile,Rd,607709,5.012,5.507,0,11.879801,6,4.5 +1099,0,0.250855,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,0.758,1.009,0,6.020511,6,4.5 +2734,-1,0.489533,0,2,0,2,5,DV2,3,3,Oak Park,Blvd,665504,0,0.489,0,11.748801,8,4.5 +21125,1,0.489446,2,0,0,2,5,DV2,3,3,Oak Park,Blvd,4409248,0,0.489,0,11.746716,8,4.5 +27435,0,0.248876,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.973036,0.15,4 +27436,0,0.499143,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.979436,0.15,4 +27447,0,0.511997,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.287918,0.15,4 +27438,0,0.186062,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.465489,0.15,4 +27440,0,0.231086,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.546063,0.15,4 +3083,0,0.08191,2,2,0,2,5,,3,3,Church,Rd,664908,0.104,0.186,0,1.965837,8,4.5 +1577,0,0.098135,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,0.66,0.758,0,2.355232,6,4.5 +2077,0,0.150603,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,0.509,0.66,0,3.614484,6,4.5 +1578,0,0.23797,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,1.186,1.424,0,5.711273,6,4.5 +650,0,0.177105,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,1.009,1.186,0,4.250513,6,4.5 +1100,0,0.007525,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,1.424,1.431,0,0.180602,6,4.5 +490,-1,0.390902,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,7.188,7.579,0,9.381656,5,5 +12579,0,0.481071,2,2,0,2,4,,3,1,Meyers,Rd,1583210,5.502,5.983,0,11.545692,6,4.5 +13583,1,0.212697,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,0.805,1.017,0,5.104728,6,4.5 +19690,1,0.280155,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,7.388,7.668,0,6.723716,5,5 +23452,-1,0.229306,0,2,0,2,4,DV2,3,1,Outer,Dr,4704573,0.76,0.989,0,5.503354,6,4.5 +23476,0,0.322994,1,1,1,2,3,,3,1,Schaefer,Hwy,4706528,11.447,11.77,0,7.751862,5,5 +29493,0,0.411126,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.867031,0.15,4 +32956,0,0.522952,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.550858,0.15,4 +33019,0,0.249253,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.982074,0.15,4 +33024,0,0.483957,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.614964,0.15,4 +33690,0,0.487867,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.708797,0.15,4 +33691,0,0.508426,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.202219,0.15,4 +23453,-1,0.270445,0,2,0,2,4,DV2,3,1,Vassar,Ave,4704573,0.489,0.76,0,6.490673,6,4.5 +23636,0,0.151353,1,1,1,2,3,,3,1,Schaefer,Hwy,4706528,11.296,11.447,0,3.632483,5,5 +33874,0,0.296688,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.120508,0.15,4 +22491,0,0.245953,1,1,1,2,3,,3,1,Schaefer,Hwy,4706528,11.05,11.296,0,5.902884,5,5 +13584,1,0.038774,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,0.766,0.805,0,0.930567,6,4.5 +23488,-1,0.027272,0,2,0,2,4,DV2,3,1,Outer,Dr,4704567,3.723,3.75,0,0.65452,6,4.5 +33021,0,0.23978,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.754717,0.15,4 +13585,1,0.027303,2,0,0,2,4,DV2,3,1,Vassar,Ave,1584503,0.739,0.766,0,0.655273,6,4.5 +19691,1,0.218222,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,7.17,7.388,0,5.237323,5,5 +7,0,0.010429,2,2,0,2,3,,3,1,Schaefer,Hwy,644004,0,0.011,0,0.250288,5,5 +1679,0,0.010561,2,2,0,2,3,,3,3,Coolidge,Hwy,644004,0.011,0.021,0,0.253466,5,5 +13581,0,0.220009,2,2,0,2,4,,3,1,Outer,Dr,1584503,1.075,1.295,0,5.280227,6,4.5 +33689,0,0.250249,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.005968,0.15,4 +12854,0,0.242994,2,2,0,2,4,,3,1,Meyers,Rd,1583210,5.259,5.502,0,5.831855,6,4.5 +13582,1,0.05791,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,1.017,1.075,0,1.38983,6,4.5 +23451,-1,0.058244,0,2,0,2,4,DV2,3,1,Outer,Dr,4704573,0.989,1.047,0,1.397866,6,4.5 +13025,0,0.014088,1,1,0,2,4,,3,1,Meyers,Rd,1583210,5.245,5.259,0,0.338117,6,4.5 +32955,0,0.250634,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.015222,0.15,4 +1597,-1,0.276413,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,7.686,7.963,0,6.633905,5,5 +19689,1,0.275941,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,7.668,7.944,0,6.622586,5,5 +2041,-1,0.107085,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,7.579,7.686,0,2.570038,5,5 +2580,0,0.009872,2,2,0,2,4,,3,3,Meyers,Rd,666702,0.01,0.02,0,0.236936,6,4.5 +2861,0,0.010086,2,2,0,2,4,,3,1,Meyers,Rd,666702,0,0.01,0,0.24206,6,4.5 +39,0,0.189393,2,2,0,2,4,,3,3,9 Mile,Rd,607709,4.503,4.692,0,4.545441,6,4.5 +27427,0,0.259439,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.226539,0.15,4 +29672,0,0.525702,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.616837,0.15,4 +38,0,0.083549,2,2,1,2,4,,3,3,9 Mile,Rd,607709,4.692,4.776,0,2.005171,6,4.5 +2245,0,0.206594,1,1,0,2,7,,3,3,Scotia,,648205,0.423,0.63,0,4.958259,7,4.5 +2990,-1,0.253154,0,2,0,2,5,DV2,3,3,Oak Park,Blvd,665504,0.994,1.247,0,6.0757,8,4.5 +21123,1,0.253288,2,0,0,2,5,DV2,3,3,Oak Park,Blvd,4409248,0.994,1.247,0,6.078921,8,4.5 +29673,0,0.206752,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.962054,0.15,4 +2246,0,0.214992,1,1,0,2,7,,3,3,Scotia,,648205,0.208,0.423,0,5.159797,7,4.5 +2244,0,0.007528,1,1,0,2,7,,3,3,Scotia,,648205,0.63,0.637,0,0.180668,7,4.5 +11637,0,0.330019,2,2,0,2,4,,3,1,Joy,Rd,1581806,0.994,1.324,0,7.920447,6,4.5 +11655,-1,0.202147,0,1,0,2,5,,3,1,Chicago,St,1583606,0.069,0.271,0,4.851532,8,4.5 +11661,0,0.13774,1,1,0,2,5,,3,1,Martin,St,1577205,1.062,1.2,0,3.305751,8,4.5 +12105,0,0.026587,3,3,1,2,3,,3,1,Livernois,Ave,1581701,5.233,5.259,0,0.638096,5,5 +12109,0,0.218359,1,1,1,2,5,,3,1,Elmhurst,St,1581710,1.083,1.301,0,5.240625,8,4.5 +12211,1,0.17801,1,0,0,1,1,RON,3,1,Livernois/W I 96,RAMP,1582003,0,0.178,0,,1.09,4 +12402,1,0.19526,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.411,2.606,0,4.686237,6,4.5 +12479,1,0.529849,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0,0.53,0,12.716374,6,4.5 +12677,0,0.141672,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.711,7.852,0,3.400127,5,5 +12685,0,0.21089,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.157,7.368,0,5.061369,5,5 +12831,0,0.295909,2,2,1,2,3,,3,1,Livernois,Ave,1581701,3.474,3.77,0,7.101817,5,5 +12933,1,0.359151,2,0,0,2,5,,3,1,Turner,St,1583105,0.666,1.025,0,8.619621,8,4.5 +12985,-1,0.350911,0,4,0,1,1,,3,1,W I 96,,1577405,1.432,1.783,0,,0.58,7 +12986,-1,0.588808,0,4,0,1,1,,3,1,W I 96,,1577405,0.843,1.432,0,,0.58,7 +13060,1,0.438025,4,0,0,1,1,,3,1,E I 96,,1577404,1.33,1.768,0,,0.58,7 +13062,1,0.491318,4,0,0,1,1,,3,1,E I 96,,1577404,0.839,1.33,0,,0.58,7 +13224,1,0.170355,1,0,0,1,1,ROF,3,1,E I 96/Livernois,RAMP,1581802,0,0.17,0,,2.24,5 +13227,0,0.253187,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.212,0.465,0,6.076485,6,4.5 +13320,0,0.17859,2,2,0,2,4,,3,1,McGraw,St,1581903,1.367,1.546,0,4.286165,6,4.5 +13544,0,0.215833,2,2,0,2,3,,3,1,Linwood,St,1584609,0.888,1.104,0,5.179995,5,5 +16106,1,0.069745,1,0,0,2,5,,3,1,Nardin,Park,1618610,0,0.07,0,1.673871,8,4.5 +16111,0,0.243408,1,1,0,2,5,,3,1,Epworth,St,1618206,0.787,1.03,0,5.841782,8,4.5 +16359,0,0.300969,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,0.533,0.834,0,7.223247,8,4.5 +16360,0,0.20099,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,0,0.201,0,4.823759,8,4.5 +16526,1,0.149765,3,0,0,2,5,,3,1,Turner,St,1609002,0,0.15,0,3.594354,8,4.5 +16532,0,0.239058,1,1,0,2,4,,3,1,Dexter,Ave,1613006,2.604,2.843,0,5.737399,6,4.5 +16643,0,0.304309,2,2,0,2,4,,3,1,Tireman,St,1623409,3.119,3.423,0,7.303405,6,4.5 +16672,0,0.212662,1,1,0,2,5,,3,1,Fullerton,St,1617909,0.183,0.395,0,5.103879,8,4.5 +16882,0,0.213069,1,1,0,2,5,,3,1,Kay,St,1618509,0,0.213,0,5.113657,8,4.5 +17044,1,0.336296,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,1.449,1.785,0,8.071096,8,4.5 +17105,0,0.261067,2,2,0,2,4,,3,1,Dexter,Ave,1613006,0.831,1.092,0,6.265613,6,4.5 +17266,0,0.380179,2,2,1,2,3,,3,1,Warren,Ave,1628604,2.996,3.376,0,9.124287,5,5 +19538,1,0.167763,1,0,0,2,5,,3,1,Chicago,St,1877809,0,0.168,0,4.026318,8,4.5 +21412,0,0.251061,2,2,0,2,3,,3,1,Wyoming,St,4700001,2.504,2.755,0,6.025472,5,5 +22323,0,0.258437,3,3,1,2,3,,3,1,Davison,St,4702009,1.242,1.501,0,6.202493,5,5 +22355,-1,0.195596,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.432,2.627,0,4.694297,6,4.5 +22368,-1,0.542608,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0,0.542,0,13.022587,6,4.5 +23097,1,0.279363,3,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0.53,0.81,0,6.704707,8,4.5 +23269,1,0.331841,2,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0,0.332,0,7.96419,8,4.5 +23780,-1,0.323815,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,1.439,1.763,0,7.771551,8,4.5 +32801,0,0.312594,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.502259,0.15,4 +32804,0,0.304828,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.315868,0.15,4 +32809,0,0.253257,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.07816,0.15,4 +32810,0,0.240844,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.780245,0.15,4 +32816,0,0.231746,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.561913,0.15,4 +32817,0,0.193626,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.647019,0.15,4 +32832,0,0.266185,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.388445,0.15,4 +32841,0,0.390935,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.382434,0.15,4 +32856,0,0.268997,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.455918,0.15,4 +32921,0,0.238722,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.729321,0.15,4 +33644,0,0.23971,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.753033,0.15,4 +33679,0,0.288416,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.921986,0.15,4 +12398,0,0.058412,2,2,1,2,3,,3,1,Livernois,Ave,1581701,4.055,4.114,0,1.401897,5,5 +13319,0,0.28103,1,1,0,2,4,,3,1,Chicago,St,1581803,4.952,5.233,0,6.744711,6,4.5 +16669,0,0.500043,1,1,0,2,5,,3,1,Central,St,1618310,0,0.5,0,12.001023,8,4.5 +16851,0,0.172853,2,2,0,2,4,,3,1,Tireman,Ave,1623409,2.406,2.579,0,4.148484,6,4.5 +17270,0,0.330511,2,2,1,2,3,,3,2,Warren,Ave,1628604,2.12,2.451,0,7.932258,5,5 +18326,0,0.220719,1,1,0,2,4,,3,1,Joy,Rd,1677810,11.335,11.556,0,5.297253,6,4.5 +21571,0,0.495543,2,2,0,2,3,,3,1,Wyoming,St,4700001,1.504,2,0,11.89303,5,5 +32910,0,0.681798,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,16.36314,0.15,4 +33797,0,0.441579,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.597897,0.15,4 +11691,0,0.466973,1,1,0,2,4,,3,2,Lonyo,Rd,1577110,1.757,2.224,0,11.207361,6,4.5 +16258,0,0.250497,2,2,0,2,4,,3,1,Tireman,Ave,1623409,2.001,2.252,0,6.011929,6,4.5 +17272,0,0.069198,2,2,1,2,3,,3,2,Warren,Ave,1628604,2,2.069,0,1.660747,5,5 +17273,0,0.251588,2,2,0,2,3,,3,2,Warren,Ave,1628604,1.748,2,0,6.038115,5,5 +21305,0,0.334313,2,2,1,2,3,,3,2,Wyoming,Ave,4700001,0.672,1.006,0,8.023518,5,5 +21520,0,0.185893,2,2,1,2,3,,3,2,Wyoming,Ave,4700001,0.486,0.672,0,4.461425,5,5 +30485,0,0.250526,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.01263,0.15,4 +32843,0,0.299939,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.198532,0.15,4 +33882,0,0.437643,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.503427,0.15,4 +32842,0,0.502895,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.069491,0.15,4 +21795,0,0.247567,2,2,0,2,3,,3,2,Wyoming,Ave,4700001,1.257,1.504,0,5.941612,5,5 +22063,0,0.251052,2,2,1,2,3,,3,2,Wyoming,Ave,4700001,1.006,1.257,0,6.025252,5,5 +11692,0,0.15183,1,1,0,2,4,,3,1,Lonyo,St,1577110,1.605,1.757,0,3.64392,6,4.5 +30475,0,0.490751,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.778029,0.15,4 +17271,0,0.051737,2,2,1,2,3,,3,2,Warren,Ave,1628604,2.069,2.12,0,1.241679,5,5 +32835,0,0.106617,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.558802,0.15,4 +17134,0,0.15421,2,2,0,2,4,,3,1,Tireman,Ave,1623409,2.252,2.406,0,3.701038,6,4.5 +12189,-1,0.39259,0,2,0,2,4,DV2,3,1,Oakman,Blvd,1580610,3.225,3.618,0,9.422156,6,4.5 +12404,0,0.250738,2,2,0,2,4,,3,1,Chicago,St,1581803,4.645,4.896,0,6.017704,6,4.5 +12467,-1,0.257499,0,2,0,2,4,DV2,3,1,Oakman,Blvd,1580610,2.968,3.225,0,6.179965,6,4.5 +16090,1,0.23075,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1622405,0.218,0.448,0,5.537989,6,4.5 +16965,1,0.42337,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1622405,0.448,0.872,0,10.160883,6,4.5 +17826,1,0.061366,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,10.967,11.029,0,1.472789,6,4.5 +22117,0,0.177566,2,2,0,2,3,,3,1,Wyoming,St,4700001,2.007,2.185,0,4.261578,5,5 +23719,-1,0.252149,0,2,0,2,4,DV2,3,1,Joy,Rd,4707990,0.438,0.69,0,6.051576,6,4.5 +33890,0,0.561384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.473208,0.15,4 +16576,1,0.208234,2,0,0,2,5,DV2,3,1,Oakman,Blvd,1622405,0,0.208,0,4.997607,8,4.5 +17244,1,0.103505,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,10.718,10.821,0,2.48412,6,4.5 +23722,-1,0.103355,0,2,0,2,4,DV2,3,1,Joy,Rd,4707990,0.189,0.292,0,2.480531,6,4.5 +18225,1,0.130951,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,10.836,10.967,0,3.142833,6,4.5 +23720,-1,0.130891,0,2,0,2,4,DV2,3,1,Joy,Rd,4707990,0.307,0.438,0,3.141382,6,4.5 +18785,1,0.01506,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,10.821,10.836,0,0.361447,6,4.5 +23721,-1,0.015306,0,2,0,2,4,DV2,3,1,Joy,Rd,4707990,0.292,0.307,0,0.367347,6,4.5 +12635,-1,0.010019,0,2,0,2,4,DV2,3,1,Oakman,Blvd,1580610,2.958,2.968,0,0.240449,6,4.5 +16349,1,0.009527,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1622405,0.208,0.218,0,0.228655,6,4.5 +21352,0,0.007595,2,2,0,2,3,,3,1,Wyoming,St,4700001,2,2.007,0,0.182288,5,5 +12650,0,0.31311,2,2,0,2,4,,3,1,Chicago,St,1581803,4.332,4.645,0,7.514645,6,4.5 +21609,0,0.297803,2,2,0,2,3,,3,1,Wyoming,St,4700001,2.206,2.504,0,7.147274,5,5 +21851,0,0.021475,2,2,0,2,3,,3,1,Wyoming,St,4700001,2.185,2.206,0,0.515391,5,5 +18782,0,0.116126,1,1,0,2,4,,3,1,Joy,Rd,1677810,11.219,11.335,0,2.787023,6,4.5 +32833,0,0.1342,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.220799,0.15,4 +17239,1,0.190788,2,0,0,2,4,DV2,3,1,Joy,Rd,1677810,11.029,11.219,0,4.578914,6,4.5 +32834,0,0.193619,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.646845,0.15,4 +12203,0,0.022685,2,2,0,2,4,,3,1,Chicago,St,1581803,4.896,4.919,0,0.544448,6,4.5 +11949,0,0.032973,1,1,0,2,4,,3,1,Chicago,St,1581803,4.919,4.952,0,0.791357,6,4.5 +11620,0,0.201126,1,1,0,2,5,,3,1,Martin,St,1577205,1.499,1.7,0,4.827017,8,4.5 +16079,0,0.037437,2,2,0,2,4,,3,1,Tireman,St,1623409,2.861,2.899,0,0.898486,6,4.5 +17037,0,0.244841,1,1,0,2,5,,3,1,Central,St,1617202,0,0.245,0,5.876186,8,4.5 +17268,0,0.271187,2,2,1,2,3,,3,1,Warren,Ave,1628604,2.582,2.853,0,6.50848,5,5 +30480,0,0.456783,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.962781,0.15,4 +32805,0,0.292305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.015319,0.15,4 +32806,0,0.268779,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.450695,0.15,4 +11672,0,0.054813,1,1,0,2,5,,3,1,Central,St,1577202,2.974,3.029,0,1.315501,8,4.5 +11673,0,0.054813,1,1,0,2,5,,3,1,Central,St,1577202,2.919,2.974,0,1.315505,8,4.5 +16156,0,0.017214,1,1,0,2,5,,3,1,Radcliffe,St,1617104,0.324,0.341,0,0.413133,8,4.5 +16342,0,0.271028,2,2,0,2,4,,3,1,Tireman,St,1623409,2.59,2.861,0,6.504669,6,4.5 +16981,0,0.284216,1,1,0,2,5,,3,1,Central,St,1617202,0.245,0.529,0,6.821192,8,4.5 +17269,0,0.131551,2,2,1,2,3,,3,1,Warren,Ave,1628604,2.451,2.582,0,3.157234,5,5 +16667,0,0.213084,1,1,0,2,5,,3,1,Central,St,1617202,0.529,0.742,0,5.114016,8,4.5 +16570,0,0.011678,2,2,0,2,4,,3,1,Tireman,Ave,1623409,2.579,2.59,0,0.280268,6,4.5 +11660,0,0.299262,1,1,0,2,5,,3,1,Martin,St,1577205,1.2,1.499,0,7.182296,8,4.5 +30476,0,0.188637,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.527286,0.15,4 +12030,0,0.206309,2,2,0,2,4,,3,1,McGraw,St,1581903,1.161,1.367,0,4.951412,6,4.5 +30478,0,0.173736,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.169662,0.15,4 +12559,0,0.285289,2,2,1,2,3,,3,1,Livernois,Ave,1581701,3.77,4.055,0,6.846926,5,5 +16949,0,0.219932,2,2,0,2,4,,3,1,Tireman,St,1623409,2.899,3.119,0,5.278376,6,4.5 +32808,0,0.375509,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.012214,0.15,4 +17267,0,0.142406,2,2,1,2,3,,3,1,Warren,Ave,1628604,2.853,2.996,0,3.417743,5,5 +32807,0,0.227978,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.471478,0.15,4 +11952,0,0.064417,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.148,0.212,0,1.546,6,4.5 +12765,1,0.072699,2,0,0,2,5,,3,1,Turner,St,1583105,1.025,1.098,0,1.744774,8,4.5 +12837,0,0.079644,1,1,0,2,4,,3,1,Chicago,St,1581803,5.473,5.552,0,1.911462,6,4.5 +13219,0,0.19102,2,2,1,2,3,,3,1,Livernois,Ave,1581701,4.611,4.802,0,4.58449,5,5 +16979,0,0.319823,1,1,0,2,5,,3,1,Central,St,1619101,0,0.32,0,7.675758,8,4.5 +18921,0,0.305497,1,1,0,2,4,,3,1,Joy,Rd,1677810,11.664,11.97,0,7.331923,6,4.5 +32802,0,0.178599,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.286375,0.15,4 +32818,0,0.319661,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.671873,0.15,4 +32821,0,0.145827,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.49985,0.15,4 +17516,0,0.090852,1,1,0,2,4,,3,1,Joy,Rd,1677810,11.573,11.664,0,2.180443,6,4.5 +17938,0,0.01736,1,1,0,2,4,,3,1,Joy,Rd,1677810,11.556,11.573,0,0.416646,6,4.5 +13010,0,0.240002,1,1,0,2,4,,3,1,Chicago,St,1581803,5.233,5.473,0,5.76004,6,4.5 +16664,0,0.184997,1,1,0,2,5,,3,1,Central,St,1619101,0.32,0.505,0,4.439926,8,4.5 +32819,0,0.193412,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.641896,0.15,4 +33889,0,0.380956,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.142953,0.15,4 +11951,0,0.147909,1,1,0,2,4,,3,1,Joy,Rd,1581806,0,0.148,0,3.54982,6,4.5 +12104,0,0.477511,2,2,1,2,3,,3,1,Livernois,Ave,1581701,4.114,4.591,0,11.460256,5,5 +32820,0,0.467332,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.215975,0.15,4 +11944,0,0.019683,2,2,1,2,3,,3,1,Livernois,Ave,1581701,4.591,4.611,0,0.472381,5,5 +16984,0,0.231017,1,1,0,2,5,,3,1,Epworth,St,1618206,1.03,1.261,0,5.544415,8,4.5 +32803,0,0.113349,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.720371,0.15,4 +11950,1,0.1311,1,0,0,1,1,RON,3,1,Livernois/E I 96,RAMP,1581804,0,0.131,0,,1.09,4 +12683,0,0.279592,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.368,7.648,0,6.71021,5,5 +13004,0,0.257871,2,2,1,2,3,,3,1,Livernois,Ave,1581701,4.802,5.059,0,6.188898,5,5 +13160,1,0.21601,3,0,0,2,5,,3,1,Turner,St,1583105,1.222,1.438,0,5.184235,8,4.5 +22892,1,0.212464,1,0,0,1,1,ROF,3,1,W I 96/Livernois,RAMP,4705651,0,0.212,0,,2.24,5 +12042,1,0.028511,2,0,0,2,5,,3,1,Turner,St,1583105,1.174,1.203,0,0.684274,8,4.5 +12318,0,0.067195,3,3,1,2,3,,3,1,Livernois,Ave,1581701,5.104,5.171,0,1.61267,5,5 +12338,1,0.047594,2,0,0,2,5,,3,1,Turner,St,1583105,1.127,1.174,0,1.142263,8,4.5 +12405,-1,0.043624,0,1,0,2,4,,3,1,Chicago,St,1581803,5.56,5.603,0,1.046987,6,4.5 +22346,1,0.058135,1,0,0,2,5,,3,1,Woodside,,4701502,0.04,0.098,0,1.39523,8,4.5 +22347,1,0.039549,1,0,0,2,5,,3,1,Woodside,,4701502,0,0.04,0,0.949177,8,4.5 +22686,1,0.061869,2,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0.387,0.449,0,1.484858,8,4.5 +23773,1,0.054612,1,0,0,2,4,,3,1,Chicago,St,4707920,0,0.055,0,1.310692,6,4.5 +12047,0,0.062828,1,1,0,2,4,,3,1,Chicago,St,1583604,0.032,0.095,0,1.507863,6,4.5 +12046,-1,0.031751,0,1,0,2,4,,3,1,Chicago,St,1583604,0,0.032,0,0.762019,6,4.5 +12564,0,0.00731,1,1,0,2,4,,3,1,Chicago,St,1581803,5.552,5.56,0,0.175444,6,4.5 +12747,0,0.029832,3,3,1,2,3,,3,1,Livernois,Ave,1581701,5.059,5.089,0,0.715963,5,5 +12560,0,0.014502,3,3,1,2,3,,3,1,Livernois,Ave,1581701,5.089,5.104,0,0.348045,5,5 +12110,-1,0.057982,0,1,0,2,4,,3,1,Chicago,St,1581803,5.603,5.661,0,1.39158,6,4.5 +12500,1,0.028729,2,0,0,2,5,,3,1,Turner,St,1583105,1.098,1.127,0,0.689489,8,4.5 +23679,1,0.037318,3,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0.493,0.53,0,0.89564,8,4.5 +11652,1,0.019734,2,0,0,2,5,,3,1,Turner,St,1583105,1.203,1.222,0,0.473619,8,4.5 +22963,1,0.054863,2,0,0,2,5,,3,1,W I 96 Service Drive,,4705644,0.332,0.387,0,1.316705,8,4.5 +12678,0,0.063309,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.648,7.711,0,1.519407,5,5 +11948,0,0.150764,1,1,0,2,5,,3,1,Elmhurst,St,1581710,0.211,0.361,0,3.618325,8,4.5 +12025,1,0.133408,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.76,0.893,0,3.201798,6,4.5 +12200,1,0.35985,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.257,1.616,0,8.636388,6,4.5 +12476,1,0.369021,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.097,6.466,0,8.856496,5,5 +12716,0,0.278036,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.674,6.952,0,6.67287,5,5 +13332,-1,0.280683,0,2,0,1,1,FCD,3,1,W I 96 CD,,1583106,5.162,5.443,0,,0.58,7 +15890,-1,0.602031,0,2,0,2,4,DV2,3,1,Davison,St,1598908,1.124,1.726,0,14.44875,6,4.5 +16104,1,0.190269,4,0,0,1,1,,3,1,E I 96,,1606201,15.599,15.789,0,,0.58,7 +16367,0,0.72508,2,2,0,2,4,,3,1,Lyndon,St,1612706,2.263,2.988,0,17.401922,6,4.5 +16477,1,0.358537,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,0.214,0.572,0,8.604888,8,4.5 +16566,-1,0.219954,0,4,0,1,1,,3,1,W I 96,,1606503,15.351,15.57,0,,0.58,7 +16668,0,0.154656,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,1.351,1.506,0,3.711744,8,4.5 +16831,1,0.418158,1,0,0,1,1,ROF,3,1,W I 96/Davison,RAMP,1606605,0,0.418,0,,2.24,5 +16846,-1,0.418244,0,4,0,1,1,,3,1,W I 96,,1606503,14.932,15.351,0,,0.58,7 +16901,1,0.405924,1,0,0,1,1,RON,3,1,Davison/E I 96,RAMP,1606501,0,0.406,0,,1.09,4 +21047,1,0.197016,2,0,0,1,1,RON,3,1,W M 8/W I 96 CD,RAMP,4700014,0,0.197,0,,1.09,4 +21732,0,0.079047,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.785,3.864,0,1.897134,5,5 +22305,-1,0.347443,0,3,0,1,1,RON,3,1,W M 8,,4702010,0.203,0.551,0,,1.09,4 +22306,-1,0.203324,0,1,0,1,1,RON,3,1,W M 8,,4702010,0,0.203,0,,1.09,4 +22333,1,0.352104,3,0,0,1,1,ROF,3,1,E M 8,,4702009,0.266,0.618,0,,2.24,5 +22360,-1,0.358675,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,1.26,1.619,0,8.608199,6,4.5 +22365,-1,0.144839,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0.778,0.922,0,3.476131,6,4.5 +22767,0,0.33215,2,2,0,2,5,,3,1,Schoolcraft,St,4705258,15.19,15.522,0,7.971607,8,4.5 +23778,1,0.649167,2,0,0,2,4,DV2,3,1,Davison,St,4707877,0,0.649,0,15.579998,6,4.5 +23786,-1,0.358539,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0.198,0.556,0,8.604926,8,4.5 +24325,0,0.217691,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.4,3.618,0,5.224582,6,4.5 +32858,0,0.216706,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.200935,0.15,4 +32903,0,0.751313,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,18.031503,0.15,4 +12124,1,0.345168,2,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,4.938,5.283,0,,0.58,7 +12734,0,0.175828,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.21,6.386,0,4.219873,5,5 +12770,0,0.196881,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.013,6.21,0,4.725152,5,5 +14640,1,0.279775,2,0,0,1,1,ROF,3,1,E I 96/E M 8,RAMP,1590702,0,0.28,0,,2.24,5 +16152,1,0.155621,2,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,1.011,1.166,0,3.734899,8,4.5 +16333,0,0.109769,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,20.272,20.382,0,2.634465,5,5 +16682,1,0.478391,4,0,0,1,1,,3,1,E I 96,,1606201,15.121,15.599,0,,0.58,7 +21462,0,0.158947,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.228,3.387,0,3.814736,5,5 +22334,1,0.265587,1,0,0,1,1,ROF,3,1,E M 8,,4702009,0,0.266,0,,2.24,5 +24327,0,0.366302,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.034,3.4,0,8.791244,6,4.5 +32831,0,0.412813,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.907514,0.15,4 +32894,0,0.16497,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.95928,0.15,4 +32895,0,0.329315,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.903551,0.15,4 +32897,0,0.427486,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.259659,0.15,4 +32898,0,0.432988,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.391706,0.15,4 +33795,0,0.29489,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.077369,0.15,4 +33892,0,0.244507,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.868177,0.15,4 +16336,0,0.245498,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,20.027,20.272,0,5.891963,5,5 +21927,0,0.253896,2,2,0,2,3,,3,1,Wyoming,St,4700001,2.755,3.009,0,6.093515,5,5 +33893,0,0.175299,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.207185,0.15,4 +33799,0,0.180858,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.340584,0.15,4 +21676,0,0.21909,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.009,3.228,0,5.25817,5,5 +12339,1,0.299522,3,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,4.638,4.938,0,,0.58,7 +14630,1,0.228227,1,0,0,1,1,ROF,3,1,E I 96/Wyoming,RAMP,1590802,0,0.228,0,,2.24,5 +22011,0,0.277337,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.508,3.785,0,6.656094,5,5 +21252,0,0.121522,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.387,3.508,0,2.916524,5,5 +24330,0,0.110255,2,2,0,2,4,,3,1,Fullerton,St,4710521,2.923,3.034,0,2.646109,6,4.5 +16414,1,0.051428,2,0,0,2,5,,3,1,E I 96 Service Drive,,1619304,0.959,1.011,0,1.23427,8,4.5 +12727,0,0.18245,2,2,1,2,3,,3,1,Grand River,Ave,1577408,6.444,6.627,0,4.378808,5,5 +16330,0,0.225821,2,2,0,2,3,,3,1,Plymouth,Rd,1604102,20.382,20.608,0,5.41971,5,5 +12729,0,0.058662,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.386,6.444,0,1.407885,5,5 +12107,0,0.082513,1,1,0,2,5,,3,1,Elmhurst,St,1581710,0.112,0.195,0,1.980305,8,4.5 +12430,0,0.147268,1,1,0,2,5,,3,1,Cloverlawn,St,1583501,0,0.147,0,3.534431,8,4.5 +12480,1,0.180492,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.53,0.71,0,4.331815,6,4.5 +12717,0,0.01333,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.661,6.674,0,0.31991,5,5 +22367,-1,0.173041,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0.542,0.715,0,4.152982,6,4.5 +16261,0,0.027423,1,2,0,2,3,,3,1,Plymouth,Rd,1604102,20.608,20.635,0,0.658163,5,5 +23776,1,0.044629,2,0,0,2,3,,3,1,Plymouth,Rd,4707883,0,0.045,0,1.0711,5,5 +12721,0,0.011184,2,2,1,2,3,,3,1,Grand River,Ave,1577408,6.649,6.661,0,0.268417,5,5 +12723,0,0.022589,2,2,1,2,3,,3,1,Grand River,Ave,1577408,6.627,6.649,0,0.54213,5,5 +12108,0,0.01607,1,1,0,2,5,,3,1,Elmhurst,St,1581710,0.195,0.211,0,0.385674,8,4.5 +12321,1,0.049709,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.71,0.76,0,1.19302,6,4.5 +22366,-1,0.062171,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0.715,0.778,0,1.492098,6,4.5 +23772,1,0.2087,2,0,0,1,1,RON,3,1,Wyoming/E I 96,RAMP,4707931,0,0.209,0,,1.09,4 +32893,0,0.227198,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.452758,0.15,4 +11653,1,0.138606,2,0,0,1,1,FCD,3,1,E I 96 CD,,1583107,5.283,5.421,0,,0.58,7 +12222,-1,0.365259,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,4.648,5.013,0,,0.58,7 +14641,1,0.217593,1,0,0,1,1,ROF,3,1,W I 96/Wyoming,RAMP,1590701,0,0.218,0,,2.24,5 +16599,0,0.263654,2,2,0,2,4,,3,1,Lyndon,St,1612706,2,2.263,0,6.327694,6,4.5 +21794,0,0.2479,2,2,0,2,3,,3,1,Wyoming,St,4700001,4.261,4.509,0,5.94959,5,5 +23454,0,0.254854,2,2,0,2,5,,3,1,Schoolcraft,St,4705258,14.935,15.19,0,6.116504,8,4.5 +32905,0,0.254845,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.116277,0.15,4 +32949,0,0.26459,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.350166,0.15,4 +22062,0,0.217468,2,2,0,2,3,,3,1,Wyoming,St,4700001,4.044,4.261,0,5.219227,5,5 +22421,0,0.206741,2,2,0,2,4,,3,1,Schoolcraft,St,4705258,14.729,14.935,0,4.961793,6,4.5 +24341,1,0.19554,1,0,0,1,1,RON,3,1,Wyoming/W I 96,RAMP,4710177,0,0.196,0,,1.09,4 +32938,0,0.263052,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.313251,0.15,4 +15892,-1,0.054272,0,2,0,2,5,,3,1,Davison,St,1598908,1.018,1.072,0,1.302535,8,4.5 +21304,0,0.168043,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.876,4.044,0,4.033028,5,5 +15891,-1,0.051883,0,2,0,2,4,DV2,3,1,Davison,St,1598908,1.072,1.124,0,1.245203,6,4.5 +21519,0,0.011391,2,2,0,2,3,,3,1,Wyoming,St,4700001,3.864,3.876,0,0.273394,5,5 +32904,0,0.093584,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.24602,0.15,4 +21570,0,0.188605,2,2,0,2,3,,3,1,Wyoming,St,4700001,4.509,4.698,0,4.526523,5,5 +11965,-1,0.14978,0,3,0,1,1,FCD,3,1,W I 96 CD,,1583106,5.013,5.162,0,,0.58,7 +32926,0,0.249898,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.99755,0.15,4 +11634,1,0.056008,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.893,0.949,0,1.344187,6,4.5 +12322,0,0.165663,1,1,1,2,5,,3,1,Elmhurst,St,1581710,0.917,1.083,0,3.975903,8,4.5 +12336,1,0.27856,2,0,0,2,5,,3,1,Turner,St,1583105,0,0.279,0,6.68544,8,4.5 +12750,0,0.160639,1,1,1,2,5,,3,1,Elmhurst,St,1581710,0.583,0.743,0,3.855345,8,4.5 +12911,1,0.32652,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,5.749,6.075,0,7.836478,5,5 +12988,-1,0.400574,0,4,0,1,1,,3,1,W I 96,,1577405,0.05,0.45,0,,0.58,7 +13067,1,0.391384,4,0,0,1,1,,3,1,E I 96,,1577404,0,0.391,0,,0.58,7 +22364,-1,0.073501,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0.922,0.996,0,1.764013,6,4.5 +23186,1,0.089539,2,0,0,2,5,,3,1,Bryden,St,4705644,1.179,1.269,0,2.148937,8,4.5 +24295,0,0.218733,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.809,4.027,0,5.249602,6,4.5 +32825,0,0.179941,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.318574,0.15,4 +33678,0,0.299349,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.184383,0.15,4 +33903,0,0.287522,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.900531,0.15,4 +11651,1,0.235057,2,0,0,2,5,,3,1,Turner,St,1583105,0.352,0.587,0,5.641371,8,4.5 +12210,1,0.136538,1,0,0,1,1,RON,3,1,Grand River/W I 96,RAMP,1582002,0,0.137,0,,1.09,4 +12712,0,0.098522,2,2,0,2,3,,3,1,Grand River,Ave,1577408,6.952,7.05,0,2.364519,5,5 +12987,-1,0.39304,0,4,0,1,1,,3,1,W I 96,,1577405,0.45,0.843,0,,0.58,7 +13009,0,0.175299,1,1,1,2,5,,3,1,Elmhurst,St,1581710,0.407,0.583,0,4.207166,8,4.5 +13066,1,0.44751,4,0,0,1,1,,3,1,E I 96,,1577404,0.391,0.839,0,,0.58,7 +13223,1,0.193351,1,0,0,1,1,ROF,3,1,E I 96/Grand River,RAMP,1581801,0,0.193,0,,2.24,5 +22819,1,0.12577,2,0,0,2,5,,3,1,Bryden,St,4705644,0.81,0.935,0,3.018487,8,4.5 +23526,1,0.231727,2,0,0,2,5,,3,1,Bryden,St,4705644,0.948,1.179,0,5.56146,8,4.5 +32824,0,0.226799,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.443164,0.15,4 +33249,0,0.338516,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.124394,0.15,4 +13240,1,0.079538,3,0,0,2,5,,3,1,Turner,St,1583105,0.587,0.666,0,1.908905,8,4.5 +22536,1,0.012451,2,0,0,2,5,,3,1,Bryden,St,4705644,0.935,0.948,0,0.298815,8,4.5 +12122,1,0.053988,2,0,0,2,5,,3,1,Turner,St,1583105,0.298,0.352,0,1.295703,8,4.5 +13222,0,0.046027,1,1,0,2,5,,3,1,Elmhurst,St,1581710,0.361,0.407,0,1.104641,8,4.5 +12337,1,0.019123,2,0,0,2,5,,3,1,Turner,St,1583105,0.279,0.298,0,0.458941,8,4.5 +12705,0,0.106797,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.05,7.157,0,2.56313,5,5 +32823,0,0.073517,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.764413,0.15,4 +12647,1,0.103894,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.014,1.118,0,2.493444,6,4.5 +22362,-1,0.091891,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,1.038,1.13,0,2.205389,6,4.5 +24308,0,0.054878,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.739,3.794,0,1.317077,6,4.5 +16746,1,0.19868,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,0.015,0.214,0,4.768322,8,4.5 +23787,-1,0.198006,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0,0.198,0,4.752143,8,4.5 +23903,1,0.226258,2,0,0,2,5,,3,1,Bryden,St,4707027,0.022,0.248,0,5.430192,8,4.5 +24324,0,0.064194,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.618,3.682,0,1.540656,6,4.5 +16977,1,0.019814,4,0,0,1,1,,3,1,E I 96,,1606201,15.789,15.809,0,,0.58,7 +13142,1,0.016482,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.949,0.966,0,0.395568,6,4.5 +12915,1,0.048562,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,0.966,1.014,0,1.165479,6,4.5 +22363,-1,0.042453,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,0.996,1.038,0,1.018861,6,4.5 +23904,1,0.02169,2,0,0,2,5,,3,1,Bryden,St,4707027,0,0.022,0,0.52057,8,4.5 +17046,0,0.015398,1,1,0,2,5,,3,1,American,St,1615601,0,0.015,0,0.369545,8,4.5 +24311,0,0.051038,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.682,3.733,0,1.224908,6,4.5 +12989,-1,0.049917,0,4,0,1,1,,3,1,W I 96,,1577405,0,0.05,0,,0.58,7 +24309,0,0.005888,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.733,3.739,0,0.141323,6,4.5 +12481,1,0.138609,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.118,1.257,0,3.326622,6,4.5 +22361,-1,0.130101,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,1.13,1.26,0,3.122416,6,4.5 +24300,0,0.015202,2,2,0,2,4,,3,1,Fullerton,St,4710521,3.794,3.809,0,0.364855,6,4.5 +11631,1,0.208173,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,5.417,5.625,0,4.996146,5,5 +12563,0,0.162141,1,1,1,2,5,,3,1,Elmhurst,St,1581710,0.755,0.917,0,3.891373,8,4.5 +32822,0,0.361529,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.676702,0.15,4 +33250,0,0.249802,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.995244,0.15,4 +13220,1,0.12365,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,5.625,5.749,0,2.96759,5,5 +16109,0,0.325933,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,0.834,1.16,0,7.8224,8,4.5 +16982,0,0.191552,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,1.16,1.351,0,4.597247,8,4.5 +16986,0,0.182755,1,1,0,2,5,,3,1,Fullerton,St,1617909,0,0.183,0,4.386108,8,4.5 +12748,1,0.021419,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.075,6.097,0,0.514055,5,5 +12642,1,0.267264,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.816,7.083,0,6.414343,5,5 +13143,1,0.238732,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.779,2.018,0,5.729576,6,4.5 +16164,1,0.3491,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,1.1,1.449,0,8.378404,8,4.5 +16425,1,0.341401,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,0.747,1.088,0,8.193629,8,4.5 +16470,0,0.05567,1,1,0,2,4,,3,1,Dexter,Ave,1613006,2.858,2.914,0,1.336087,6,4.5 +22295,-1,0.224674,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.709,0.934,0,5.392181,5,5 +22327,1,0.224121,3,0,0,2,3,DIV,3,1,Davison,St,4702009,0.778,1.002,0,5.378897,5,5 +22358,-1,0.416212,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,1.629,2.045,0,9.989099,6,4.5 +23781,-1,0.346405,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,1.093,1.439,0,8.313724,8,4.5 +23782,-1,0.300249,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0.782,1.082,0,7.205973,8,4.5 +22297,-1,0.055031,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.639,0.694,0,1.320743,5,5 +22329,1,0.054878,3,0,0,2,3,DIV,3,1,Davison,St,4702009,0.708,0.763,0,1.317063,5,5 +32837,0,0.066479,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.595485,0.15,4 +32838,0,0.139929,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.358301,0.15,4 +33796,0,0.088915,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.133955,0.15,4 +16676,1,0.164234,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,0.583,0.747,0,3.941627,8,4.5 +22461,0,0.110099,1,1,0,2,5,,3,1,Schoolcraft,St,4705258,15.522,15.632,0,2.642377,8,4.5 +23784,-1,0.164124,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0.567,0.731,0,3.938975,8,4.5 +22299,-1,0.042077,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.591,0.633,0,1.009845,5,5 +22331,1,0.025493,3,0,0,2,3,DIV,3,1,Davison,St,4702009,0.677,0.702,0,0.611836,5,5 +22301,-1,0.012561,0,3,0,2,3,RSF,3,1,W M 8,,4702010,0.578,0.591,0,0.301462,5,5 +22304,-1,0.027764,0,3,0,1,1,RON,3,1,W M 8,,4702010,0.551,0.578,0,,1.09,4 +22332,1,0.059302,3,0,0,1,1,ROF,3,1,E M 8,,4702009,0.618,0.677,0,,2.24,5 +23777,1,0.024052,2,0,0,2,4,DV2,3,1,Davison,St,4707877,0.649,0.673,0,0.57724,6,4.5 +16224,1,0.010366,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,0.572,0.583,0,0.248787,8,4.5 +22298,-1,0.005784,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.633,0.639,0,0.138813,5,5 +22330,1,0.005939,3,0,0,2,3,DIV,3,1,Davison,St,4702009,0.702,0.708,0,0.14254,5,5 +23785,-1,0.010429,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0.556,0.567,0,0.250287,8,4.5 +23783,-1,0.050819,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,0.731,0.782,0,1.219662,8,4.5 +22766,0,0.006499,1,1,0,2,5,,3,1,Schoolcraft,St,4705258,15.632,15.639,0,0.155985,8,4.5 +13316,1,0.152844,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.626,1.779,0,3.668265,6,4.5 +32839,0,0.137494,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.299856,0.15,4 +12026,1,0.009599,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,1.616,1.626,0,0.230374,6,4.5 +22296,-1,0.015216,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.694,0.709,0,0.365184,5,5 +22328,1,0.015222,3,0,0,2,3,DIV,3,1,Davison,St,4702009,0.763,0.778,0,0.365322,5,5 +22359,-1,0.010359,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,1.619,1.629,0,0.248626,6,4.5 +32836,0,0.029596,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.710299,0.15,4 +12022,0,0.031545,3,3,1,2,3,,3,1,Livernois,Ave,1581701,6.479,6.511,0,0.757073,5,5 +12834,1,0.242638,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.03,2.272,0,5.823301,6,4.5 +22324,0,0.187906,3,3,1,2,3,,3,1,Davison,St,4702009,1.055,1.242,0,4.509748,5,5 +22357,-1,0.234104,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.059,2.293,0,5.618492,6,4.5 +33012,0,0.350928,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.422281,0.15,4 +33015,0,0.364949,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.75878,0.15,4 +22294,-1,0.026301,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.934,0.96,0,0.631234,5,5 +22326,1,0.027258,3,0,0,2,3,DIV,3,1,Davison,St,4702009,1.002,1.03,0,0.654188,5,5 +12319,0,0.013673,3,3,1,2,3,,3,1,Livernois,Ave,1581701,6.466,6.479,0,0.328142,5,5 +16418,0,0.010463,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,1.506,1.516,0,0.251112,8,4.5 +22293,-1,0.021585,0,3,0,2,3,DIV,3,1,Davison,St,4702010,0.96,0.981,0,0.518031,5,5 +22325,1,0.024953,3,0,0,2,3,DIV,3,1,Davison,St,4702009,1.03,1.055,0,0.598882,5,5 +11632,1,0.017415,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.731,6.748,0,0.417968,5,5 +13139,1,0.060966,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.748,6.809,0,1.463176,5,5 +12912,1,0.006918,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.809,6.816,0,0.166028,5,5 +32830,0,0.08668,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.080313,0.15,4 +12648,1,0.139206,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.272,2.411,0,3.340948,6,4.5 +22356,-1,0.139206,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.293,2.432,0,3.340941,6,4.5 +16738,0,0.015036,1,1,0,2,4,,3,1,Dexter,Ave,1613006,2.843,2.858,0,0.360861,6,4.5 +12477,1,0.229765,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.083,7.313,0,5.514355,5,5 +17099,0,0.485524,1,1,0,2,4,,3,1,Dexter,Ave,1613006,2.92,3.405,0,11.652577,6,4.5 +16216,0,0.006028,1,1,0,2,4,,3,1,Dexter,Ave,1613006,2.914,2.92,0,0.144676,6,4.5 +11170,1,0.266324,3,0,0,1,1,,3,1,E I 94,,1576405,25.061,25.327,0,,0.58,7 +11610,0,0.094848,1,1,0,2,5,,3,1,30th,St,1577302,0.529,0.624,0,2.276352,8,4.5 +11612,1,0.125345,1,0,0,1,1,ROF,3,1,E I 94/30th,RAMP,1577301,0,0.125,0,,2.24,5 +11657,0,0.254627,1,1,0,2,5,,3,1,Euclid,St,1583804,0.153,0.408,0,6.111052,8,4.5 +12112,0,0.123903,2,2,0,2,4,,3,1,McGraw,St,1581903,3.183,3.307,0,2.973678,6,4.5 +12205,0,0.207277,2,2,0,2,4,,3,1,McGraw,St,1581903,2.248,2.455,0,4.974658,6,4.5 +12418,1,0.143523,2,0,0,1,1,RFF,3,1,E I 96/I 94,RAMP,1582104,0,0.144,0,,0.58,7 +12486,0,0.532617,1,1,0,2,5,,3,1,Scotten,St,1581901,0.073,0.606,0,12.782807,8,4.5 +12621,0,0.272232,2,2,0,2,3,,3,1,Grand River,Ave,1577408,8.432,8.704,0,6.53357,5,5 +12833,1,0.126884,1,0,0,1,1,RFF,3,1,I 94/W I 96,RAMP,1581704,0.291,0.418,0,,0.58,7 +12984,-1,0.704674,0,4,0,1,1,,3,1,W I 96,,1577405,1.783,2.487,0,,0.58,7 +13059,1,0.691466,4,0,0,1,1,,3,1,E I 96,,1577404,1.768,2.459,0,,0.58,7 +13203,1,0.358496,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.274,1.633,0,8.603901,6,4.5 +13381,-1,0.369745,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0.625,0.994,0,8.87387,6,4.5 +14020,-1,0.727188,0,3,0,1,1,,3,1,W I 94,,1588802,24.981,25.708,0,,0.58,7 +14271,1,0.174617,1,0,0,1,1,RON,3,1,30th/W I 94,RAMP,1589009,0,0.175,0,,1.09,4 +16135,0,0.260409,2,2,1,2,4,,3,1,Tireman,St,1623409,3.976,4.236,0,6.249817,6,4.5 +16292,1,0.350255,2,0,0,2,5,,3,1,Turner,St,1609002,0.864,1.214,0,8.406117,8,4.5 +16363,0,0.204428,1,1,0,2,5,,3,1,Epworth,St,1618206,0.582,0.787,0,4.906261,8,4.5 +16390,0,0.553593,2,2,1,2,4,,3,1,Tireman,St,1623409,3.423,3.976,0,13.286222,6,4.5 +16555,0,0.22676,1,1,0,2,5,,3,1,Beechwood,St,1610105,0.364,0.591,0,5.442247,8,4.5 +16797,1,0.428424,2,0,0,2,5,,3,1,E I 96 Service Drive,,1609002,1.409,1.838,0,10.282165,8,4.5 +17258,0,0.121594,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.098,4.22,0,2.91825,5,5 +30469,0,0.257492,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.179814,0.15,4 +30779,0,0.368313,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.839505,0.15,4 +30780,0,0.250957,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.022978,0.15,4 +32814,0,0.228019,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.472445,0.15,4 +33646,0,0.327715,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.865172,0.15,4 +11613,0,0.081239,1,1,0,2,5,,3,1,Junction,St,1577210,0.965,1.047,0,1.949741,8,4.5 +11618,1,0.103803,1,0,0,1,1,RON,3,1,Livernois/E I 94,RAMP,1577208,0,0.104,0,,1.09,4 +12406,0,0.165432,1,1,0,2,4,,3,1,McGraw,St,1581903,2.083,2.248,0,3.970367,6,4.5 +12652,0,0.245306,1,1,0,2,4,,3,1,McGraw,St,1581903,1.837,2.083,0,5.887352,6,4.5 +13003,0,0.304316,2,2,1,2,3,,3,1,Livernois,Ave,1581701,3.17,3.474,0,7.303579,5,5 +14054,-1,0.190301,0,3,0,1,1,,3,1,W I 94,,1588802,24.394,24.585,0,,0.58,7 +14106,1,0.229314,1,0,0,1,1,ROF,3,1,W I 94/Livernois,RAMP,1589008,0,0.229,0,,2.24,5 +17263,0,0.157604,2,2,1,2,3,,3,1,Warren,Ave,1628604,3.679,3.837,0,3.782484,5,5 +17264,0,0.120526,2,2,1,2,3,,3,1,Warren,Ave,1628604,3.559,3.679,0,2.892635,5,5 +17265,0,0.18284,2,2,1,2,3,,3,1,Warren,Ave,1628604,3.376,3.559,0,4.388154,5,5 +32797,0,0.262114,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.290728,0.15,4 +32799,0,0.064789,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.554945,0.15,4 +13149,0,0.14455,2,2,0,2,4,,3,1,McGraw,St,1581903,1.546,1.69,0,3.469206,6,4.5 +13312,0,0.194898,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.975,3.17,0,4.677557,5,5 +11943,0,0.013949,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.961,2.975,0,0.334777,5,5 +14360,1,0.148898,1,0,0,1,1,RON,3,1,Livernois/W I 94,RAMP,1589007,0,0.149,0,,1.09,4 +12196,0,0.091947,2,2,1,2,3,,3,1,Livernois,Ave,1581701,2.869,2.961,0,2.206716,5,5 +12838,0,0.147093,1,1,0,2,4,,3,1,McGraw,St,1581903,1.69,1.837,0,3.53023,6,4.5 +16595,0,0.327781,1,1,0,2,5,,3,1,Epworth,St,1618206,0.254,0.582,0,7.866746,8,4.5 +16160,0,0.254545,1,1,0,2,5,,3,1,Epworth,St,1618206,0,0.254,0,6.109088,8,4.5 +32840,0,0.164344,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.944252,0.15,4 +11406,1,0.411395,3,0,0,1,1,,3,1,E I 94,,1576405,24.65,25.061,0,,0.58,7 +11614,0,0.412635,1,1,0,2,5,,3,1,Junction,St,1577210,0.553,0.965,0,9.903251,8,4.5 +14237,-1,0.396343,0,3,0,1,1,,3,1,W I 94,,1588802,24.585,24.981,0,,0.58,7 +16072,0,0.364216,1,1,0,2,5,,3,1,Beechwood,St,1610105,0,0.364,0,8.74119,8,4.5 +17261,0,0.148024,2,2,1,2,3,,3,1,Warren,Ave,1628604,3.837,3.985,0,3.55257,5,5 +17260,0,0.037129,2,2,1,2,3,,3,1,Warren,Ave,1628604,3.985,4.022,0,0.891107,5,5 +17259,0,0.076314,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.022,4.098,0,1.831539,5,5 +12111,0,0.140906,2,2,0,2,4,,3,1,Joy,Rd,1581806,0.853,0.994,0,3.381754,6,4.5 +12626,0,0.282414,2,2,0,2,3,,3,1,Grand River,Ave,1577408,8.105,8.388,0,6.777934,5,5 +12753,0,0.088448,1,1,0,2,7,,3,1,Maplewood,St,1581808,0.439,0.527,0,2.122756,7,4.5 +16064,0,0.309061,1,1,0,2,5,,3,1,Beechwood,St,1610105,0.845,1.154,0,7.417453,8,4.5 +16525,1,0.222494,2,0,0,2,5,,3,1,Turner,St,1609002,0.642,0.864,0,5.339848,8,4.5 +16551,0,0.335434,1,1,0,2,5,,3,1,Beechwood,St,1610105,1.154,1.489,0,8.050407,8,4.5 +16803,1,0.453914,2,0,0,2,5,,3,1,Turner,St,1609002,0.188,0.642,0,10.893941,8,4.5 +32067,0,0.269028,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.456661,0.15,4 +33885,0,0.532174,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.772166,0.15,4 +12212,1,0.231755,2,0,0,1,1,ROF,3,1,W I 96/Joy,RAMP,1582005,0,0.232,0,,2.24,5 +12324,0,0.267194,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.586,0.853,0,6.412646,6,4.5 +12565,0,0.042975,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.543,0.586,0,1.031399,6,4.5 +12628,0,0.253077,2,2,0,2,3,,3,1,Grand River,Ave,1577408,7.852,8.105,0,6.073849,5,5 +21666,1,0.164702,1,0,0,1,1,RON,3,1,Joy/E I 96,RAMP,4700037,0,0.165,0,,1.09,4 +16328,0,0.116157,1,1,0,2,5,,3,1,Beechwood,St,1610105,1.489,1.605,0,2.787767,8,4.5 +12752,0,0.055055,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.488,0.543,0,1.321309,6,4.5 +13011,0,0.022898,1,1,0,2,4,,3,1,Joy,Rd,1581806,0.465,0.488,0,0.549549,6,4.5 +16294,1,0.038229,2,0,0,2,5,,3,1,Turner,St,1609002,0.15,0.188,0,0.917484,8,4.5 +16331,0,0.254068,1,1,0,2,5,,3,1,Beechwood,St,1610105,0.591,0.845,0,6.097643,8,4.5 +32844,0,0.239478,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.747463,0.15,4 +32846,0,0.007011,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.168275,0.15,4 +11656,0,0.15316,1,1,0,2,5,,3,1,Euclid,St,1583804,0,0.153,0,3.675852,8,4.5 +33645,0,0.270306,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.487352,0.15,4 +12754,0,0.097852,1,1,0,2,7,,3,1,Maplewood,St,1581808,0.527,0.625,0,2.348452,7,4.5 +12625,0,0.044336,2,2,0,2,3,,3,1,Grand River,Ave,1577408,8.388,8.432,0,1.064073,5,5 +32813,0,0.216679,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.200292,0.15,4 +11329,1,0.410966,3,0,0,1,1,,3,1,E I 94,,1576405,25.327,25.738,0,,0.58,7 +39926,1,0.291435,2,0,0,1,3,,3,1,DIBC Plaza to Canada,,4718952,0,0.291,0,,5,5 +11595,-1,0.235356,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0,0.235,0,5.648553,6,4.5 +11598,0,0.398724,1,1,0,2,5,,3,1,Scotten,St,1577306,1.953,2.352,0,9.569369,8,4.5 +12566,0,0.346688,2,2,0,2,4,,3,1,McGraw,St,1581903,2.716,3.063,0,8.320521,6,4.5 +13073,1,0.140532,1,0,0,1,1,RON,3,1,W Grand/E I 94,RAMP,1577309,0,0.141,0,,1.09,4 +13281,1,0.137671,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,0.884,1.022,0,3.304106,6,4.5 +13286,1,0.250479,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,0.634,0.884,0,6.011504,6,4.5 +14042,1,0.153842,2,0,0,1,1,ROF,3,1,W I 94/W Grand,RAMP,1589010,0,0.154,0,,2.24,5 +16514,0,0.189823,1,1,0,2,5,,3,1,Vinewood,St,1609505,2.024,2.213,0,4.555756,8,4.5 +16751,1,0.190694,1,0,0,2,5,,3,1,E I 94 Service Drive,,1609703,0,0.191,0,4.576663,8,4.5 +17254,0,0.026888,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.516,4.543,0,0.645319,5,5 +23587,0,0.098485,1,1,0,2,5,,3,1,24th,St,4705563,1.907,2.006,0,2.363632,8,4.5 +23997,-1,0.115906,0,1,0,2,5,,3,1,W I 94 Service Drive,,4710473,0,0.116,0,2.781756,8,4.5 +32049,0,0.110442,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.650612,0.15,4 +32263,0,0.298081,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.153938,0.15,4 +11609,1,0.143844,1,0,0,1,1,RON,3,1,30th/E I 94,RAMP,1577303,0,0.144,0,,1.09,4 +11611,0,0.054472,1,1,0,2,5,,3,1,30th,St,1577302,0.475,0.529,0,1.307334,8,4.5 +11597,0,0.109209,1,1,0,2,5,,3,1,Scotten,St,1577306,2.352,2.461,0,2.621015,8,4.5 +39928,0,0.067932,2,2,0,1,3,,3,1,Ambassador,Brg,4718953,0,0.068,0,,5,5 +13012,0,0.114294,2,2,0,2,4,,3,1,McGraw,St,1581903,2.576,2.69,0,2.743049,6,4.5 +13268,1,0.127435,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.147,1.274,0,3.058447,6,4.5 +13382,-1,0.146161,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0.479,0.625,0,3.507872,6,4.5 +17256,0,0.06469,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.301,4.366,0,1.55255,5,5 +23994,-1,0.134204,0,2,0,2,5,,3,1,W I 94 Service Drive,,4710473,0.253,0.387,0,3.220892,8,4.5 +30452,0,0.183602,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.40646,0.15,4 +30781,0,0.233113,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.594703,0.15,4 +30782,0,0.144043,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.457042,0.15,4 +33294,0,0.228758,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.490197,0.15,4 +11596,0,0.049525,1,1,0,2,5,,3,1,Scotten,St,1577306,2.461,2.51,0,1.188608,8,4.5 +11953,0,0.100128,2,2,0,2,4,,3,1,McGraw,St,1581903,2.455,2.555,0,2.403069,6,4.5 +17257,0,0.081381,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.22,4.301,0,1.953151,5,5 +23995,-1,0.137438,0,2,0,2,5,,3,1,W I 94 Service Drive,,4710473,0.116,0.253,0,3.29851,8,4.5 +12485,0,0.073323,1,1,0,2,5,,3,1,Scotten,St,1581901,0,0.073,0,1.759753,8,4.5 +13321,0,0.020609,2,2,0,2,4,,3,1,McGraw,St,1581903,2.555,2.576,0,0.494609,6,4.5 +11594,-1,0.184801,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0.235,0.42,0,4.435219,6,4.5 +12088,-1,0.058457,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0.42,0.479,0,1.402961,6,4.5 +13272,1,0.064542,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.082,1.147,0,1.549001,6,4.5 +17255,0,0.150272,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.366,4.516,0,3.606523,5,5 +12839,0,0.025833,2,2,0,2,4,,3,1,McGraw,St,1581903,2.69,2.716,0,0.620004,6,4.5 +39950,1,0.8614,3,0,0,2,5,,3,1,Lakeside,St,5494521,0,0.861,0,20.673609,8,4.5 +39924,1,0.373951,2,0,0,1,3,,3,1,DIBC Plaza to Canada,,4719480,0,0.374,0,,5,5 +40026,-1,0.007658,0,2,0,2,3,,4,3,Orchard Lake,Rd,5499978,0.032,0.04,0,0.183783,3.7,5 +14270,1,0.022466,2,0,0,2,4,,3,1,W I 94/W Grand,RAMP,1589010,0.154,0.176,0,0.539177,6,4.5 +13275,1,0.060513,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.022,1.082,0,1.452304,6,4.5 +11640,0,0.066267,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.141,0.207,0,1.590407,8,4.5 +13294,0,0.199406,1,1,0,2,4,,3,1,Grand,Blvd,1577308,0.434,0.634,0,4.785733,6,4.5 +13341,0,0.133748,2,2,0,2,4,,3,1,Grand,Blvd,1577308,0.301,0.434,0,3.20996,6,4.5 +16794,0,0.224355,1,1,0,2,5,,3,1,Vinewood,St,1609505,1.799,2.024,0,5.384513,8,4.5 +32050,0,0.172654,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.143692,0.15,4 +32051,0,0.225304,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.407308,0.15,4 +11599,0,0.107024,1,1,0,2,5,,3,1,Scotten,St,1577306,1.846,1.953,0,2.56858,8,4.5 +11639,0,0.140951,1,1,0,2,5,,3,1,Buchanan,St,1581905,0,0.141,0,3.382823,8,4.5 +11600,0,0.021265,1,1,0,2,5,,3,1,Scotten,St,1577306,1.825,1.846,0,0.510349,8,4.5 +23924,-1,0.025503,0,2,0,2,4,DV2,3,1,Grand,Blvd,4706941,0,0.026,0,0.612072,6,4.5 +13230,0,0.147913,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.207,0.355,0,3.549921,8,4.5 +32048,0,0.081304,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.951294,0.15,4 +11256,1,0.221574,3,0,0,1,1,,3,1,E I 94,,1576405,25.862,26.084,0,,0.58,7 +11945,1,0.148929,2,0,0,1,1,RFF,3,1,E I 94/I 96,RAMP,1581702,0,0.149,0,,0.58,7 +12213,1,0.127519,2,0,0,1,1,RFF,3,1,I 96/W I 94,RAMP,1582104,0.303,0.431,0,,0.58,7 +12407,0,0.120572,2,2,0,2,4,,3,1,McGraw,St,1581903,3.063,3.183,0,2.893737,6,4.5 +14204,-1,0.16688,0,3,0,1,1,,3,1,W I 94,,1588802,25.853,26.02,0,,0.58,7 +14435,-1,0.14548,0,3,0,1,1,,3,1,W I 94,,1588802,25.708,25.853,0,,0.58,7 +17252,0,0.222601,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.617,4.839,0,5.342412,5,5 +23246,0,0.466183,1,1,0,2,5,,3,1,24th,St,4705563,2.006,2.472,0,11.188388,8,4.5 +11494,1,0.124176,3,0,0,1,1,,3,1,E I 94,,1576405,25.738,25.862,0,,0.58,7 +17253,0,0.073906,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.543,4.617,0,1.773754,5,5 +17251,0,0.053277,2,2,1,2,3,,3,1,Warren,Ave,1628604,4.839,4.893,0,1.278649,5,5 +12419,1,0.159734,1,0,0,1,1,RFS,3,1,E I 96/W I 94,RAMP,1582104,0.144,0.303,0,,0.22,6 +13072,1,0.274222,1,0,0,1,1,RFS,3,1,E I 94/W I 96,RAMP,1577310,0,0.274,0,,0.22,6 +12411,1,0.210242,1,0,0,1,1,ROF,3,1,W I 96/Grand,RAMP,1582007,0,0.21,0,,2.24,5 +12548,0,0.085116,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.09,9.175,0,2.042773,5,5 +12938,0,0.317828,1,1,0,2,5,,3,1,Euclid,St,1583804,0.595,0.913,0,7.627863,8,4.5 +12979,-1,0.490707,0,4,0,1,1,,3,1,W I 96,,1577405,2.487,2.978,0,,0.58,7 +13057,1,0.504598,4,0,0,1,1,,3,1,E I 96,,1577404,2.459,2.963,0,,0.58,7 +13146,1,0.143893,1,0,0,1,1,RON,3,1,Grand/E I 96,RAMP,1581902,0,0.144,0,,1.09,4 +13189,1,0.190887,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.801,1.992,0,4.581277,6,4.5 +13366,-1,0.187672,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.174,1.361,0,4.504134,6,4.5 +13546,0,0.259285,1,1,0,2,3,,3,1,Linwood,St,1584609,0.35,0.609,0,6.222831,5,5 +16115,0,0.072124,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0,0.072,0,1.73098,6,4.5 +16225,0,0.279139,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0.335,0.614,0,6.699334,6,4.5 +30777,0,0.25365,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.087601,0.15,4 +32849,0,0.2713,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.511196,0.15,4 +32850,0,0.271739,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.521725,0.15,4 +12029,0,0.058021,2,2,0,2,5,,3,1,Scotten,St,1581901,0.649,0.707,0,1.392502,8,4.5 +12484,1,0.174866,1,0,0,1,1,ROF,3,1,E I 96/Grand,RAMP,1581810,0,0.175,0,,2.24,5 +12594,0,0.017617,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.072,9.09,0,0.422802,5,5 +12618,0,0.288054,2,2,0,2,3,,3,1,Grand River,Ave,1577408,8.704,8.992,0,6.91329,5,5 +13192,1,0.0307,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.77,1.801,0,0.736808,6,4.5 +13370,-1,0.069282,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.063,1.132,0,1.662756,6,4.5 +16522,1,0.057197,3,0,0,2,5,,3,1,Turner,St,1609002,1.265,1.322,0,1.37272,8,4.5 +16704,1,0.056732,2,0,0,2,4,,3,1,Tireman,St,1623409,4.371,4.428,0,1.361576,6,4.5 +19536,-1,0.075604,0,3,0,2,5,,3,1,W I 96 Service Drive,,1877903,0.073,0.148,0,1.814494,8,4.5 +19537,-1,0.024316,0,3,0,2,5,,3,1,W I 96 Service Drive,,1877903,0.048,0.073,0,0.583592,8,4.5 +23918,-1,0.042772,0,2,0,2,4,,3,1,Tireman,St,4706952,0,0.043,0,1.02654,6,4.5 +32815,0,0.179301,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.303219,0.15,4 +17017,0,0.134775,2,2,1,2,4,,3,1,Tireman,St,1623409,4.236,4.371,0,3.234589,6,4.5 +12325,0,0.043285,2,2,0,2,5,,3,1,Scotten,St,1581901,0.606,0.649,0,1.038844,8,4.5 +16802,1,0.050673,3,0,0,2,5,,3,1,Turner,St,1609002,1.214,1.265,0,1.216155,8,4.5 +12410,1,0.160169,1,0,0,1,1,RON,3,1,Grand/W I 96,RAMP,1582006,0,0.16,0,,1.09,4 +32812,0,0.08701,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.088242,0.15,4 +13197,1,0.073369,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.697,1.77,0,1.760854,6,4.5 +13202,1,0.052937,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.633,1.686,0,1.270492,6,4.5 +13373,-1,0.038201,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.011,1.049,0,0.916826,6,4.5 +16116,1,0.028966,1,0,0,2,4,,3,1,Tireman,St,1623409,4.428,4.457,0,0.695174,6,4.5 +16288,1,0.018634,3,0,0,2,5,,3,1,E I 96 Service Drive,,1609002,1.322,1.341,0,0.447214,8,4.5 +16799,1,0.03155,3,0,0,2,5,,3,1,E I 96 Service Drive,,1609002,1.341,1.372,0,0.757188,8,4.5 +16990,1,0.034406,1,0,0,2,4,,3,1,Tireman,St,1623409,4.457,4.491,0,0.825751,6,4.5 +23917,-1,0.052634,0,1,0,2,4,,3,1,Tireman,St,4706952,0.043,0.095,0,1.263226,6,4.5 +16519,1,0.026744,3,0,0,2,5,,3,1,E I 96 Service Drive,,1609002,1.372,1.399,0,0.641853,8,4.5 +13379,-1,0.01698,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,0.994,1.011,0,0.407515,6,4.5 +16283,1,0.010309,2,0,0,2,5,,3,1,E I 96 Service Drive,,1609002,1.399,1.409,0,0.247425,8,4.5 +13201,1,0.011224,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.686,1.697,0,0.269377,6,4.5 +13372,-1,0.013581,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.049,1.063,0,0.325943,6,4.5 +19535,-1,0.022034,0,3,0,2,5,,3,1,W I 96 Service Drive,,1877903,0.148,0.17,0,0.528805,8,4.5 +12227,0,0.090024,1,1,0,2,5,,3,1,Lothrop,St,1583905,0,0.09,0,2.160585,8,4.5 +12614,0,0.079757,2,2,0,2,3,,3,1,Grand River,Ave,1577408,8.992,9.072,0,1.914172,5,5 +16479,0,0.169576,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0.165,0.335,0,4.069812,6,4.5 +11638,0,0.054047,1,1,0,2,5,,3,1,Scotten,St,1581901,0.707,0.761,0,1.297127,8,4.5 +13368,-1,0.041311,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.132,1.174,0,0.991471,6,4.5 +16748,0,0.077553,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0.088,0.165,0,1.861266,6,4.5 +17048,0,0.015362,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0.072,0.088,0,0.368692,6,4.5 +13164,0,0.187493,1,1,0,2,5,,3,1,Euclid,St,1583804,0.408,0.595,0,4.499837,8,4.5 +17106,0,0.162834,1,1,0,2,4,,3,1,Dexter,Ave,1613006,0.614,0.776,0,3.90801,6,4.5 +32068,0,0.253995,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.095887,0.15,4 +16222,0,0.054634,2,2,0,2,4,,3,1,Dexter,Ave,1613006,0.776,0.831,0,1.311225,6,4.5 +32811,0,0.248448,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.962757,0.15,4 +12544,0,0.239031,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.175,9.414,0,5.736738,5,5 +12977,-1,0.196797,0,4,0,1,1,,3,1,W I 96,,1577405,2.978,3.175,0,,0.58,7 +13187,1,0.315805,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,1.992,2.307,0,7.57932,6,4.5 +13361,-1,0.318195,0,2,0,2,4,DV2,3,1,Grand,Blvd,1577307,1.361,1.679,0,7.636691,6,4.5 +30470,0,0.288869,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.932859,0.15,4 +32875,0,0.304064,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.297533,0.15,4 +13050,1,0.210598,4,0,0,1,1,,3,1,E I 96,,1577404,2.963,3.174,0,,0.58,7 +12535,0,0.161479,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.414,9.575,0,3.875484,5,5 +30778,0,0.114491,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.747775,0.15,4 +30788,0,0.129976,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.119415,0.15,4 +11954,0,0.072935,1,1,0,2,4,,3,1,McGraw,St,1581903,3.307,3.38,0,1.750445,6,4.5 +12668,0,0.172909,1,1,0,2,5,,3,1,Euclid,St,1583804,0.913,1.086,0,4.14982,8,4.5 +13545,0,0.279097,2,2,0,2,3,,3,1,Linwood,St,1584609,0.609,0.888,0,6.698336,5,5 +32848,0,0.251991,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.047786,0.15,4 +13228,0,0.222885,1,1,0,2,4,,3,1,Joy,Rd,1581806,1.324,1.547,0,5.349245,6,4.5 +13505,0,0.318279,1,1,0,2,5,,3,1,Calvert,St,1584802,0.295,0.613,0,7.638707,8,4.5 +13536,0,0.128083,2,2,0,2,3,,3,1,Linwood,St,1584609,2.215,2.343,0,3.073991,5,5 +13537,0,0.063653,2,2,0,2,3,,3,1,Linwood,St,1584609,2.151,2.215,0,1.527672,5,5 +14543,1,0.206503,3,0,0,2,4,,3,1,Rosa Parks,Blvd,1590905,2.695,2.902,0,4.956068,6,4.5 +14551,1,0.064063,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.668,1.732,0,1.537521,5,5 +16099,0,0.064094,1,1,0,2,5,,3,1,La Salle,Blvd,1619310,0,0.064,0,1.538247,8,4.5 +16113,0,0.256732,1,1,0,2,5,,3,1,Glendale,St,1617705,1.099,1.355,0,6.161557,8,4.5 +16117,-1,0.19241,0,2,0,2,5,,3,1,Elmhurst,St,1617608,0.509,0.701,0,4.617841,8,4.5 +16416,1,0.159478,2,0,0,2,5,,3,1,Tuxedo,St,1617607,0.703,0.863,0,3.827472,8,4.5 +16427,-1,0.230928,0,2,0,2,4,,3,1,14th,St,1615502,0.93,1.161,0,5.54228,6,4.5 +16596,0,0.195922,1,1,0,2,5,,3,1,Fullerton,St,1617703,0,0.196,0,4.702129,8,4.5 +16735,1,0.130064,2,0,0,2,5,,3,1,Tuxedo,St,1617607,1.111,1.241,0,3.121528,8,4.5 +16973,0,0.130122,1,1,0,2,5,,3,1,Webb,St,1619410,0.133,0.263,0,3.122918,8,4.5 +16996,-1,0.063819,0,2,0,2,4,,3,1,14th,St,1615502,0.135,0.199,0,1.531663,6,4.5 +17100,0,0.241625,2,2,1,2,4,,3,1,Dexter,Ave,1613006,2.26,2.502,0,5.799002,6,4.5 +22320,0,0.176929,3,3,1,2,3,,3,1,Davison,St,4702009,2.172,2.349,0,4.246301,5,5 +22733,0,0.265856,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.06,1.326,0,6.380549,8,4.5 +22958,1,0.313611,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,0.298,0.611,0,7.526656,8,4.5 +23357,-1,0.313606,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0,0.314,0,7.526539,8,4.5 +32090,0,0.257187,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.172484,0.15,4 +32851,0,0.058329,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.399897,0.15,4 +32852,0,0.243117,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.834818,0.15,4 +32859,0,0.186573,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.477753,0.15,4 +33897,0,0.391643,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.399431,0.15,4 +33900,0,0.174307,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.183374,0.15,4 +33901,0,0.341343,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.192242,0.15,4 +13506,0,0.196132,1,1,0,2,5,,3,1,Calvert,St,1584802,0.099,0.295,0,4.707157,8,4.5 +16155,0,0.254938,1,1,0,2,5,,3,1,Boston,Blvd,1617601,0.436,0.691,0,6.118511,8,4.5 +16591,0,0.216583,1,1,0,2,5,,3,1,Kay,St,1618509,0.213,0.43,0,5.197981,8,4.5 +16602,-1,0.196055,0,2,0,2,5,,3,1,Elmhurst,St,1617608,0,0.196,0,4.705316,8,4.5 +16814,0,0.260391,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.618,1.878,0,6.249377,6,4.5 +17035,1,0.350737,2,0,0,2,5,,3,1,Tuxedo,St,1617607,0.353,0.703,0,8.417695,8,4.5 +30589,0,0.290208,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.965003,0.15,4 +32826,0,0.235104,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.642495,0.15,4 +33245,0,0.320044,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.681065,0.15,4 +16110,0,0.163524,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,0.201,0.364,0,3.924569,8,4.5 +16417,0,0.215884,1,1,0,2,5,,3,1,Boston,Blvd,1617601,0.22,0.436,0,5.181215,8,4.5 +16983,0,0.168535,1,1,0,2,5,,3,1,Broadstreet,Ave,1618605,0.364,0.533,0,4.044845,8,4.5 +32035,0,0.236127,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.667059,0.15,4 +32828,0,0.154217,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.701219,0.15,4 +11635,0,0.253327,1,1,1,2,5,,3,1,Elmhurst,St,1581710,1.301,1.554,0,6.079845,8,4.5 +16421,0,0.258538,1,1,0,2,5,,3,1,Fullerton,St,1617909,0.395,0.654,0,6.204916,8,4.5 +16471,0,0.312629,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.944,2.257,0,7.503092,6,4.5 +16536,0,0.051583,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.878,1.93,0,1.238002,6,4.5 +16305,0,0.013989,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.93,1.944,0,0.335738,6,4.5 +16217,0,0.003927,2,2,1,2,4,,3,1,Dexter,Ave,1613006,2.257,2.26,0,0.094239,6,4.5 +16306,0,0.1125,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.344,1.457,0,2.699997,6,4.5 +16815,0,0.238591,2,2,0,2,4,,3,1,Dexter,Ave,1613006,1.092,1.331,0,5.726178,6,4.5 +22599,0,0.099978,1,1,0,2,5,,3,1,Chicago,St,4705652,0,0.1,0,2.399476,8,4.5 +13493,0,0.051023,1,1,0,2,5,,3,1,Chicago,St,1584804,0.105,0.156,0,1.224547,8,4.5 +16212,0,0.052255,1,1,0,2,5,,3,1,Petoskey,Ave,1615408,0.193,0.245,0,1.254118,8,4.5 +13494,0,0.104754,1,1,0,2,5,,3,1,Chicago,St,1584804,0,0.105,0,2.514102,8,4.5 +16112,0,0.013065,1,1,0,2,5,,3,1,McQuade,St,1617810,0.24,0.253,0,0.313571,8,4.5 +16221,0,0.108234,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.457,1.565,0,2.597619,6,4.5 +17104,0,0.053062,2,2,1,2,4,,3,1,Dexter,Ave,1613006,1.565,1.618,0,1.273487,6,4.5 +23265,0,0.131616,1,1,0,2,5,,3,1,Chicago,Blvd,4705652,0.166,0.298,0,3.158792,8,4.5 +23607,0,0.065984,1,1,0,2,5,,3,1,Chicago,Blvd,4705652,0.1,0.166,0,1.583621,8,4.5 +23901,1,0.067047,1,0,0,2,5,,3,1,Dexter/Chicago Cutoff,,4707054,0,0.067,0,1.609134,8,4.5 +16537,0,0.013843,2,2,0,2,4,,3,1,Dexter,Ave,1613006,1.331,1.344,0,0.332231,6,4.5 +16369,-1,0.313045,0,2,0,2,5,,3,1,Elmhurst,St,1617608,0.196,0.509,0,7.513078,8,4.5 +32857,0,0.224936,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.398465,0.15,4 +32860,0,0.150995,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.623892,0.15,4 +13317,1,0.165436,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.954,3.119,0,3.970463,6,4.5 +13531,0,0.155603,2,2,0,2,3,,3,1,Linwood,St,1584609,3.104,3.26,0,3.734484,5,5 +13532,0,0.22966,2,2,0,2,3,,3,1,Linwood,St,1584609,2.875,3.104,0,5.511837,5,5 +16364,0,0.310139,1,1,0,2,5,,3,1,Fullerton,St,1617703,0.196,0.506,0,7.443335,8,4.5 +22321,0,0.165753,3,3,1,2,3,,3,1,Davison,St,4702009,2.006,2.172,0,3.978076,5,5 +22322,0,0.505732,3,3,1,2,3,,3,1,Davison,St,4702009,1.501,2.006,0,12.137577,5,5 +22352,-1,0.165404,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.972,3.137,0,3.969685,6,4.5 +33898,0,0.424583,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.189987,0.15,4 +33899,0,0.425665,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.21596,0.15,4 +16810,0,0.102304,2,2,1,2,4,,3,1,Dexter,Ave,1613006,2.502,2.604,0,2.455293,6,4.5 +11947,1,0.042077,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.912,2.954,0,1.009849,6,4.5 +12201,1,0.305168,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.606,2.912,0,7.324041,6,4.5 +16478,1,0.125611,1,0,0,2,5,DV2,3,1,Kendall,St,1615510,0.643,0.769,0,3.014668,8,4.5 +22353,-1,0.064418,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.907,2.972,0,1.546042,6,4.5 +22354,-1,0.27986,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.627,2.907,0,6.71665,6,4.5 +23779,-1,0.137577,0,1,0,2,5,DV2,3,1,Kendall,St,4707876,1.763,1.901,0,3.301842,8,4.5 +16747,0,0.011375,1,1,0,2,5,,3,1,Kendall,St,1615510,0.632,0.643,0,0.272995,8,4.5 +16166,1,0.020263,1,0,0,2,5,,3,1,Kendall,St,1615510,0.769,0.789,0,0.486318,8,4.5 +13530,0,0.011171,1,1,0,2,3,,3,1,Linwood,St,1584609,3.26,3.271,0,0.268101,5,5 +13533,0,0.219801,2,2,0,2,3,,3,1,Linwood,St,1584609,2.655,2.875,0,5.275215,5,5 +13534,0,0.1242,2,2,0,2,3,,3,1,Linwood,St,1584609,2.531,2.655,0,2.980794,5,5 +13535,0,0.188301,2,2,0,2,3,,3,1,Linwood,St,1584609,2.343,2.531,0,4.519222,5,5 +13008,1,0.175553,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,3.119,3.294,0,4.213279,6,4.5 +22351,-1,0.175553,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,3.137,3.312,0,4.213271,6,4.5 +32915,0,0.230216,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.525189,0.15,4 +32918,0,0.211985,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.087647,0.15,4 +32919,0,0.187307,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.49536,0.15,4 +32925,0,0.197323,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.735742,0.15,4 +32917,0,0.115117,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.762806,0.15,4 +12835,1,0.160053,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,3.294,3.454,0,3.841283,6,4.5 +16167,-1,0.153848,0,2,0,2,4,,3,1,14th,St,1615502,1.161,1.315,0,3.69235,6,4.5 +22350,-1,0.15982,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,3.312,3.472,0,3.835682,6,4.5 +17047,-1,0.010416,0,1,0,2,4,,3,1,14th,St,1615502,1.315,1.325,0,0.249986,6,4.5 +14542,0,0.009294,2,2,0,2,4,,3,1,Rosa Parks,Blvd,1590905,2.902,2.911,0,0.223046,6,4.5 +13492,0,0.167341,1,1,0,2,4,,3,1,Clairmount,St,1584807,0,0.167,0,4.01618,6,4.5 +13503,0,0.154112,1,1,0,2,5,,3,1,Calvert,St,1584802,0.779,0.933,0,3.698686,8,4.5 +13539,0,0.22405,2,2,0,2,3,,3,1,Linwood,St,1584609,1.612,1.836,0,5.377199,5,5 +13543,0,0.227679,2,2,0,2,3,,3,1,Linwood,St,1584609,1.104,1.332,0,5.464307,5,5 +15871,-1,0.20123,0,2,0,2,4,,3,1,14th,St,1621303,1.311,1.512,0,4.829524,6,4.5 +16988,-1,0.134838,0,2,0,2,4,,3,1,14th,St,1621303,1.814,1.949,0,3.236123,6,4.5 +17093,-1,0.135445,0,2,0,2,4,,3,1,14th,St,1615502,0,0.135,0,3.250677,6,4.5 +22681,1,0.24479,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,0.611,0.856,0,5.874966,8,4.5 +23355,-1,0.244872,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0.314,0.558,0,5.876926,8,4.5 +32071,0,0.238645,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.727476,0.15,4 +12918,0,0.284014,1,1,0,2,4,,3,1,Joy,Rd,1581806,1.547,1.831,0,6.816329,6,4.5 +13542,0,0.033825,2,2,0,2,3,,3,1,Linwood,St,1584609,1.332,1.365,0,0.811797,5,5 +32854,0,0.238943,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.734643,0.15,4 +13541,0,0.232701,2,2,0,2,3,,3,1,Linwood,St,1584609,1.365,1.598,0,5.584825,5,5 +13540,0,0.013843,2,2,0,2,3,,3,1,Linwood,St,1584609,1.598,1.612,0,0.332241,5,5 +13504,0,0.165933,1,1,0,2,5,,3,1,Calvert,St,1584802,0.613,0.779,0,3.982381,8,4.5 +13538,0,0.315044,2,2,0,2,3,,3,1,Linwood,St,1584609,1.836,2.151,0,7.561046,5,5 +16209,0,0.289326,1,1,0,2,5,,3,1,La Salle,Blvd,1621208,1.112,1.401,0,6.943832,8,4.5 +17033,1,0.055139,2,0,0,2,5,,3,1,Tuxedo,St,1617607,1.056,1.111,0,1.323336,8,4.5 +22544,0,0.083479,1,1,0,2,5,,3,1,La Salle,Blvd,4704949,0,0.084,0,2.003507,8,4.5 +16154,1,0.193053,2,0,0,2,5,,3,1,Tuxedo,St,1617607,0.863,1.056,0,4.633283,8,4.5 +13491,0,0.154339,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.167,0.322,0,3.704126,6,4.5 +16301,-1,0.184658,0,2,0,2,4,,3,1,14th,St,1621303,1.126,1.311,0,4.431798,6,4.5 +32072,0,0.24214,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.811368,0.15,4 +33643,0,0.266998,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.407944,0.15,4 +32066,0,0.064627,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.551041,0.15,4 +13501,0,0.166553,1,1,0,2,5,,3,1,Calvert,St,1584802,1.12,1.286,0,3.997284,8,4.5 +14553,1,0.223401,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.255,1.478,0,5.361633,5,5 +16114,-1,0.1461,0,2,0,2,4,,3,1,14th,St,1621303,1.668,1.814,0,3.506406,6,4.5 +23337,1,0.189823,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,0.933,1.123,0,4.555744,8,4.5 +23352,-1,0.189562,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0.636,0.825,0,4.549497,8,4.5 +16365,-1,0.077305,0,2,0,2,4,,3,1,14th,St,1621303,1.591,1.668,0,1.855312,6,4.5 +23353,-1,0.077166,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0.558,0.636,0,1.851994,8,4.5 +23672,1,0.077028,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,0.856,0.933,0,1.848683,8,4.5 +32069,0,0.067654,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.62369,0.15,4 +32827,0,0.15269,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.664562,0.15,4 +32420,0,0.06113,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.467112,0.15,4 +32070,0,0.047872,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.148938,0.15,4 +16889,-1,0.065689,0,2,0,2,4,,3,1,14th,St,1621303,1.512,1.577,0,1.576529,6,4.5 +16597,-1,0.013498,0,2,0,2,4,,3,1,14th,St,1621303,1.577,1.591,0,0.323963,6,4.5 +13502,0,0.186635,1,1,0,2,5,,3,1,Calvert,St,1584802,0.933,1.12,0,4.479232,8,4.5 +14552,1,0.190071,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.478,1.668,0,4.561715,5,5 +14557,1,0.01355,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.241,1.255,0,0.325206,5,5 +23000,0,0.132738,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.927,1.06,0,3.185722,8,4.5 +11990,1,0.196079,3,0,0,1,2,,3,1,S M 10,,1577509,6.456,6.652,0,,0.58,7 +13252,-1,0.21277,0,3,0,1,2,,3,1,N M 10,,1577510,6.466,6.678,0,,0.58,7 +13398,1,0.141035,1,0,0,1,2,ROF,3,1,N M 10/Glendale,RAMP,1585210,0,0.141,0,,2.24,5 +13399,1,0.24398,1,0,0,1,2,RFS,3,1,N M 10/E M 8,RAMP,1585209,0,0.244,0,,0.22,6 +13513,1,0.122426,1,0,0,1,2,RON,3,1,Glandale/S M 10,RAMP,1584708,0,0.122,0,,1.09,4 +13519,0,0.069093,1,1,1,2,5,,3,1,Glendale,St,1584707,0.131,0.2,0,1.65823,8,4.5 +13520,0,0.130481,1,1,1,2,5,,3,1,Glendale,St,1584707,0,0.131,0,3.131556,8,4.5 +14540,1,0.268651,1,0,0,1,2,RFS,3,1,W M 8/N M 10,RAMP,1590906,0,0.269,0,,0.22,6 +14545,1,0.223233,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,2.294,2.517,0,5.357591,5,5 +14547,1,0.378404,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.858,2.236,0,9.081693,5,5 +14575,1,0.315654,1,0,0,1,2,RFS,3,2,W M 8/S M 10,RAMP,1590902,0,0.316,0,,0.22,6 +16467,1,0.130449,1,0,0,2,7,,3,1,Tuxedo,St,1617607,1.241,1.371,0,3.130778,7,4.5 +16678,-1,0.131028,0,2,0,2,5,,3,1,Elmhurst,St,1617608,0.887,1.018,0,3.144665,8,4.5 +17059,-1,0.224604,0,2,0,2,4,,3,1,14th,St,1615502,0.706,0.93,0,5.390491,6,4.5 +22288,-1,0.235931,0,3,0,1,2,,3,1,W M 8,,4702011,0.126,0.361,0,,0.58,7 +22316,1,0.262936,3,0,0,1,2,,3,2,E M 8,,4702009,2.655,2.918,0,,0.58,7 +23633,0,0.122803,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.762,1.885,0,2.947264,8,4.5 +24284,1,0.302074,1,0,0,1,2,RFS,3,1,S M 10/E M 8,RAMP,4710290,0,0.302,0,,0.22,6 +33902,0,0.276593,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.638242,0.15,4 +16180,-1,0.336413,0,2,0,2,4,,3,1,14th,St,1615502,0.369,0.706,0,8.073919,6,4.5 +16673,0,0.162791,1,1,0,2,5,,3,1,Glendale,St,1617705,1.444,1.606,0,3.906989,8,4.5 +16991,-1,0.186114,0,2,0,2,5,,3,1,Elmhurst,St,1617608,0.701,0.887,0,4.466725,8,4.5 +32091,0,0.329078,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.89788,0.15,4 +32855,0,0.123305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.959329,0.15,4 +16987,0,0.088356,1,1,0,2,5,,3,1,Glendale,St,1617705,1.355,1.444,0,2.120533,8,4.5 +16433,-1,0.106229,0,2,0,2,4,,3,1,14th,St,1615502,0.263,0.369,0,2.549504,6,4.5 +16685,-1,0.06385,0,2,0,2,4,,3,1,14th,St,1615502,0.199,0.263,0,1.532402,6,4.5 +14546,1,0.057671,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,2.236,2.294,0,1.384111,5,5 +12000,1,0.310541,3,0,0,1,2,,3,1,S M 10,,1577509,6.107,6.417,0,,0.58,7 +13253,-1,0.223179,0,3,0,1,2,,3,1,N M 10,,1577510,6.243,6.466,0,,0.58,7 +13255,-1,0.147481,0,3,0,1,2,,3,1,N M 10,,1577510,6.095,6.243,0,,0.58,7 +14544,1,0.17833,3,0,0,2,4,,3,1,Rosa Parks,Blvd,1590905,2.517,2.695,0,4.27993,6,4.5 +22290,-1,0.043498,0,3,0,2,3,DIV,3,1,Davison,St,4702011,0.082,0.126,0,1.043951,5,5 +22318,1,0.133545,3,0,0,2,3,DIV,3,1,Davison,St,4702009,2.512,2.645,0,3.205075,5,5 +24286,1,0.211169,1,0,0,1,2,ROF,3,1,N M 10/Davison,RAMP,4710289,0,0.211,0,,2.24,5 +22319,0,0.162891,3,3,1,2,3,,3,1,Davison,St,4702009,2.349,2.512,0,3.909395,5,5 +22291,-1,0.082104,0,3,0,2,3,DIV,3,1,Davison,St,4702011,0,0.082,0,1.970484,5,5 +13521,1,0.198454,1,0,0,1,2,RFS,3,1,E M 8/S M 10,RAMP,1584706,0,0.198,0,,0.22,6 +23296,0,0.244248,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.885,2.129,0,5.861959,8,4.5 +22976,1,0.023944,1,0,0,2,3,,3,1,Woodrow Wilson,St,4705617,2.129,2.153,0,0.574649,5,5 +22317,1,0.010019,3,0,0,1,2,,3,1,E M 8,,4702009,2.645,2.655,0,,0.58,7 +11999,1,0.039154,3,0,0,1,2,,3,1,S M 10,,1577509,6.417,6.456,0,,0.58,7 +11972,1,0.415544,3,0,0,1,2,,3,1,S M 10,,1577509,6.821,7.236,0,,0.58,7 +13251,-1,0.291913,0,3,0,1,2,,3,1,N M 10,,1577510,6.678,6.97,0,,0.58,7 +13511,0,0.168259,2,2,0,2,5,,3,1,Webb,St,1584710,0,0.168,0,4.038208,8,4.5 +15650,-1,0.076117,0,3,0,2,5,,3,1,Elmhurst,St,1591106,0.13,0.206,0,1.826803,8,4.5 +22916,0,0.101832,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.479,1.581,0,2.443972,8,4.5 +23553,0,0.052481,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.326,1.378,0,1.259532,8,4.5 +33677,0,0.208849,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.012382,0.15,4 +14548,1,0.062622,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.795,1.858,0,1.502933,5,5 +14549,1,0.051636,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.744,1.795,0,1.239266,5,5 +14550,0,0.011702,2,2,0,2,3,,3,1,Rosa Parks,Blvd,1590905,1.732,1.744,0,0.280854,5,5 +23209,0,0.101066,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.378,1.479,0,2.425592,8,4.5 +11987,1,0.168602,3,0,0,1,2,,3,1,S M 10,,1577509,6.652,6.821,0,,0.58,7 +22626,0,0.181323,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,1.581,1.762,0,4.351742,8,4.5 +27380,0,0.183793,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.411026,0.15,4 +32089,0,0.010235,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.245635,0.15,4 +13512,1,0.109628,1,0,0,1,2,ROF,3,1,E M 8/Woodrow Wilson,RAMP,1584709,0,0.11,0,,2.24,5 +23419,-1,0.012527,0,3,0,2,5,,3,1,S M 10 Service Drive,,4705973,0,0.013,0,0.300647,8,4.5 +13250,-1,0.249729,0,3,0,1,2,,3,1,N M 10,,1577510,6.97,7.22,0,,0.58,7 +13396,1,0.130563,1,0,0,1,2,ROF,3,1,N M 10/Webb,RAMP,1585302,0,0.131,0,,2.24,5 +13507,1,0.127542,1,0,0,1,2,RON,3,1,Webb/S M 10,RAMP,1584801,0,0.128,0,,1.09,4 +13510,0,0.040016,2,2,0,2,5,,3,1,Webb,St,1584710,0.168,0.208,0,0.960376,8,4.5 +17363,1,0.02677,1,0,0,2,5,,3,1,S M 10 Service Drive,,1626010,0,0.027,0,0.64249,8,4.5 +13397,1,0.121956,1,0,0,1,2,RON,3,1,Webb/N M 10,RAMP,1585301,0,0.122,0,,1.09,4 +13509,0,0.048071,2,2,0,2,5,,3,1,Webb,St,1584710,0.208,0.256,0,1.153693,8,4.5 +13516,0,0.126375,1,1,1,2,5,,3,2,Glendale,St,1584707,0.383,0.509,0,3.033008,8,4.5 +17040,0,0.193787,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.194,1.388,0,4.650894,6,4.5 +22286,-1,0.319246,0,4,0,1,2,,3,2,W M 8,,4702011,0.425,0.744,0,,0.58,7 +22314,1,0.297471,4,0,0,1,2,,3,2,E M 8,,4702009,2.918,3.216,0,,0.58,7 +32085,0,0.139795,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.355087,0.15,4 +32086,0,0.294522,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.068526,0.15,4 +33879,0,0.303763,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.290323,0.15,4 +13517,0,0.135583,1,1,1,2,5,,3,2,Glendale,St,1584707,0.247,0.383,0,3.253989,8,4.5 +13518,0,0.047352,1,1,1,2,5,,3,1,Glendale,St,1584707,0.2,0.247,0,1.136442,8,4.5 +32088,0,0.10448,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.507515,0.15,4 +16741,0,0.055688,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.388,1.444,0,1.336501,6,4.5 +22287,-1,0.063677,0,3,0,1,2,,3,2,W M 8,,4702011,0.361,0.425,0,,0.58,7 +24283,1,0.064233,2,0,0,1,2,RFF,3,2,S M 10/E M 8,RAMP,4710290,0.302,0.366,0,,0.58,7 +16473,0,0.06644,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.444,1.51,0,1.594552,6,4.5 +16474,0,0.154918,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,0.971,1.126,0,3.71804,6,4.5 +16159,0,0.068305,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.126,1.194,0,1.639311,6,4.5 +50,0,0.244897,1,1,1,2,4,,3,3,9 Mile,Rd,607709,2.25,2.495,0,5.87754,6,4.5 +972,-1,0.474782,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.95,12.425,0,11.394771,5,5 +1209,-1,0.079516,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,9.627,9.706,0,1.908384,5,5 +1458,1,0.43301,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.987,12.42,0,10.392236,5,5 +12006,1,0.291855,3,0,0,1,2,,3,1,S M 10,,1577509,4.742,5.034,0,,0.58,7 +12832,1,0.250393,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,9.581,9.831,0,6.009425,5,5 +13266,-1,0.252311,0,3,0,1,2,,3,1,N M 10,,1577510,4.765,5.018,0,,0.58,7 +13298,0,0.239015,2,2,0,2,4,,3,1,Fenkell,St,1579605,9.182,9.42,0,5.736363,6,4.5 +14577,1,0.412549,2,0,0,2,5,,3,1,Keeler,Ave,1590901,2.612,3.024,0,9.90117,8,4.5 +15910,-1,0.240536,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,0.895,1.135,0,5.772861,5,5 +15944,1,0.230024,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,0.9,1.13,0,5.520568,5,5 +17859,0,0.313748,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,15.222,15.536,0,7.529948,5,5 +18079,0,0.241269,1,1,0,2,3,,3,1,McNichols,Rd,1680701,21.392,21.633,0,5.790463,5,5 +19402,0,0.218296,2,2,0,2,4,,3,1,John R,St,1715605,1.393,1.611,0,5.239106,6,4.5 +19677,1,0.043519,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,9.613,9.656,0,1.044448,5,5 +22061,0,0.242081,2,2,0,2,3,,3,1,Wyoming,St,4700001,7.002,7.244,0,5.80994,5,5 +22663,-1,0.402714,0,2,0,2,5,,3,1,Hughes,St,4705979,1.217,1.62,0,9.665147,8,4.5 +23744,0,0.199854,1,1,0,2,4,,3,1,Puritan,St,4707953,4.917,5.117,0,4.796487,6,4.5 +27418,0,0.326242,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.829801,0.15,4 +27464,0,0.302298,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.255158,0.15,4 +30973,0,0.449107,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.778563,0.15,4 +32861,0,0.243345,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.840271,0.15,4 +32873,0,0.473073,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.353759,0.15,4 +33020,0,0.253242,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.077818,0.15,4 +33088,0,0.591145,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.187491,0.15,4 +33698,0,0.27993,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.718313,0.15,4 +12053,1,0.430629,3,0,0,1,2,,3,1,S M 10,,1577509,3.841,4.272,0,,0.58,7 +12198,1,0.251671,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,8.582,8.834,0,6.040095,5,5 +13122,0,0.716521,2,2,0,2,4,,3,1,Fenkell,St,1579605,8.221,8.938,0,17.196503,6,4.5 +13293,-1,0.550173,0,3,0,1,2,,3,1,N M 10,,1577510,3.726,4.276,0,,0.58,7 +14581,1,0.823598,2,0,0,2,5,,3,1,Keeler,Ave,1590901,1.438,2.261,0,19.76635,8,4.5 +16466,0,0.463462,1,1,0,2,5,,3,1,Curtis,St,1620803,1.447,1.911,0,11.123079,8,4.5 +18359,0,0.525859,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,14.385,14.91,0,12.620625,5,5 +19158,0,0.468789,1,1,0,2,3,,3,1,McNichols,Rd,1680701,20.51,20.979,0,11.250935,5,5 +22009,0,0.375456,2,2,0,2,3,,3,1,Wyoming,St,4700001,6.007,6.382,0,9.010947,5,5 +23421,-1,0.444647,0,2,0,2,5,,3,1,Hughes,St,4705979,0.441,0.886,0,10.67152,8,4.5 +23747,0,0.465759,1,1,0,2,4,,3,1,Puritan,St,4707953,4.041,4.507,0,11.178205,6,4.5 +32869,0,0.499206,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.980936,0.15,4 +33075,0,0.50301,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.072247,0.15,4 +33079,0,0.505422,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.130139,0.15,4 +33083,0,0.504607,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.110563,0.15,4 +33084,0,0.248992,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.975819,0.15,4 +33704,0,0.507884,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.189209,0.15,4 +11933,0,0.272773,2,2,0,2,4,,3,1,Fenkell,St,1579605,7.949,8.221,0,6.546562,6,4.5 +12054,1,0.170524,4,0,0,1,2,,3,1,S M 10,,1577509,3.671,3.841,0,,0.58,7 +13296,-1,0.312095,0,3,0,1,2,,3,1,N M 10,,1577510,3.414,3.726,0,,0.58,7 +13404,1,0.150947,1,0,0,1,2,ROF,3,1,N M 10/Wyoming,RAMP,1585110,0,0.151,0,,2.24,5 +13554,1,0.21472,1,0,0,1,2,RON,3,1,N Wyoming/S M 10,RAMP,1584601,0,0.215,0,,1.09,4 +17557,0,0.522168,1,1,0,2,3,,3,1,McNichols,Rd,1680701,19.988,20.51,0,12.532036,5,5 +21675,0,0.16844,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.508,5.676,0,4.042559,5,5 +23420,-1,0.441247,0,2,0,2,5,,3,1,Hughes,St,4705979,0,0.441,0,10.58993,8,4.5 +23748,0,0.522848,1,1,0,2,4,,3,1,Puritan,St,4707953,3.518,4.041,0,12.548349,6,4.5 +32935,0,0.411982,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.887573,0.15,4 +33074,0,0.515501,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.37203,0.15,4 +33076,0,0.252704,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.064886,0.15,4 +33705,0,0.504024,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.096582,0.15,4 +12056,1,0.239275,3,0,0,1,2,,3,1,S M 10,,1577509,3.431,3.671,0,,0.58,7 +13405,1,0.105494,1,0,0,1,2,RON,3,1,Wyoming/N M 10,RAMP,1585109,0,0.105,0,,1.09,4 +13556,1,0.099606,2,0,0,1,2,ROF,3,1,S M 10/Wyoming,RAMP,1584509,0,0.1,0,,2.24,5 +14586,-1,0.366967,0,3,0,2,5,,3,1,James Couzens,Fwy,1590805,3.126,3.493,0,8.807206,8,4.5 +21411,0,0.155299,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.228,5.383,0,3.727179,5,5 +23750,0,0.189051,1,1,0,2,4,,3,1,Puritan,St,4707953,3.274,3.463,0,4.537214,6,4.5 +33880,0,0.233253,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.598082,0.15,4 +32937,0,0.012568,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.301627,0.15,4 +13555,1,0.23815,2,0,0,1,2,RON,3,1,Wyoming/S M 10,RAMP,1584510,0,0.238,0,,1.09,4 +14582,1,0.060573,2,0,0,2,5,,3,1,Keeler,Ave,1590901,1.377,1.438,0,1.453745,8,4.5 +22116,0,0.124965,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.011,5.136,0,2.999155,5,5 +14607,1,0.078535,3,0,0,2,5,,3,1,Keeler/James Couzens Fwy,Ramp,1590804,3.541,3.619,0,1.884847,8,4.5 +21608,0,0.065811,2,2,1,2,3,,3,1,Wyoming,St,4700001,5.162,5.228,0,1.579458,5,5 +21850,0,0.02549,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.136,5.162,0,0.611755,5,5 +14583,1,0.014643,4,0,0,2,5,,3,1,Keeler,Ave,1590901,1.363,1.377,0,0.351437,8,4.5 +13403,1,0.036274,1,0,0,2,5,,3,1,James Couzens,Fwy,1585110,0.151,0.187,0,0.870578,8,4.5 +14585,-1,0.012964,0,4,0,2,5,,3,1,James Couzens,Fwy,1590805,3.493,3.506,0,0.311138,8,4.5 +21925,0,0.12507,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.383,5.508,0,3.001684,5,5 +23749,0,0.054845,1,1,0,2,4,,3,1,Puritan,St,4707953,3.463,3.518,0,1.316273,6,4.5 +21461,0,0.163736,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.676,5.84,0,3.929658,5,5 +21251,0,0.166781,2,2,0,2,3,,3,1,Wyoming,St,4700001,5.84,6.007,0,4.002747,5,5 +33071,0,0.077632,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.863172,0.15,4 +33069,0,0.249932,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.998365,0.15,4 +33073,0,0.253567,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.08562,0.15,4 +16734,0,0.53072,1,1,0,2,5,,3,1,Curtis,St,1620803,0.917,1.447,0,12.737278,8,4.5 +18686,0,0.466714,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,13.918,14.385,0,11.201132,5,5 +21518,0,0.248085,2,2,0,2,3,,3,1,Wyoming,St,4700001,6.507,6.755,0,5.954044,5,5 +33077,0,0.499274,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.982574,0.15,4 +33080,0,0.249384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.985206,0.15,4 +33082,0,0.51783,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.427913,0.15,4 +17032,0,0.054885,1,1,0,2,5,,3,1,Curtis,St,1620803,0.862,0.917,0,1.317238,8,4.5 +16534,0,0.167072,1,1,0,2,5,,3,1,Curtis,St,1620803,0.695,0.862,0,4.009738,8,4.5 +21731,0,0.125025,2,2,0,2,3,,3,1,Wyoming,St,4700001,6.382,6.507,0,3.000603,5,5 +21303,0,0.246995,2,2,0,2,3,,3,1,Wyoming,St,4700001,6.755,7.002,0,5.927873,5,5 +33081,0,0.250212,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.00508,0.15,4 +33078,0,0.247858,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.948585,0.15,4 +12007,1,0.470585,3,0,0,1,2,,3,1,S M 10,,1577509,4.272,4.742,0,,0.58,7 +12643,1,0.330432,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,8.082,8.413,0,7.930373,5,5 +13267,-1,0.489792,0,3,0,1,2,,3,1,N M 10,,1577510,4.276,4.765,0,,0.58,7 +14580,1,0.106568,1,0,0,2,5,,3,1,Keeler,Ave,1590901,2.261,2.368,0,2.557624,8,4.5 +18854,0,0.144811,1,1,0,2,3,,3,1,McNichols,Rd,1680701,20.99,21.135,0,3.475457,5,5 +23169,-1,0.076521,0,2,0,2,5,,3,1,Hughes,St,4705979,0.886,0.962,0,1.836511,8,4.5 +23745,0,0.2512,1,1,0,2,4,,3,1,Puritan,St,4707953,4.666,4.917,0,6.028808,6,4.5 +32862,0,0.159332,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.823958,0.15,4 +32922,0,0.265536,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.372865,0.15,4 +33086,0,0.249727,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.99344,0.15,4 +33703,0,0.362049,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.68918,0.15,4 +13553,1,0.180859,1,0,0,1,2,ROF,3,1,S M 10/Livernois,RAMP,1584604,0,0.181,0,,2.24,5 +24268,1,0.190188,1,0,0,1,2,RON,3,1,Livernois/N M 10,RAMP,4711346,0,0.19,0,,1.09,4 +12478,1,0.169721,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,8.413,8.582,0,4.073315,5,5 +12089,0,0.232254,2,2,0,2,4,,3,1,Fenkell,St,1579605,8.949,9.182,0,5.574102,6,4.5 +13140,1,0.068831,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.763,7.832,0,1.651954,5,5 +13402,1,0.206264,1,0,0,1,2,ROF,3,1,N M 10/Livernois,RAMP,1585204,0,0.206,0,,2.24,5 +14578,1,0.197983,2,0,0,2,5,,3,1,Keeler,Ave,1590901,2.414,2.612,0,4.751591,8,4.5 +22801,-1,0.235481,0,2,0,2,5,,3,1,Hughes,St,4705979,0.982,1.217,0,5.651541,8,4.5 +12023,1,0.12702,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.583,7.71,0,3.048469,5,5 +13552,1,0.139643,1,0,0,1,2,RON,3,1,Livernois/S M 10,RAMP,1584606,0,0.14,0,,1.09,4 +13313,1,0.053592,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.71,7.763,0,1.286214,5,5 +14579,1,0.036527,1,0,0,2,5,,3,1,Keeler,Ave,1590901,2.378,2.414,0,0.876649,8,4.5 +23010,-1,0.00922,0,2,0,2,5,,3,1,Hughes,St,4705979,0.972,0.982,0,0.221286,8,4.5 +12913,1,0.250548,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,7.832,8.082,0,6.013146,5,5 +23746,0,0.146791,1,1,0,2,4,,3,1,Puritan,St,4707953,4.519,4.666,0,3.522986,6,4.5 +13551,0,0.125576,1,1,0,2,5,,3,1,Dexter,Ave,1584607,0,0.126,0,3.013827,8,4.5 +13550,0,0.050774,1,1,0,2,5,,3,1,Belden,St,1584607,0.126,0.176,0,1.218587,8,4.5 +18597,0,0.098213,1,1,0,2,3,,3,1,McNichols,Rd,1680701,21.135,21.233,0,2.35711,5,5 +32933,0,0.48703,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.68873,0.15,4 +33085,0,0.249864,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.99673,0.15,4 +32863,0,0.018088,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.434102,0.15,4 +18264,0,0.158835,1,1,0,2,3,,3,1,McNichols,Rd,1680701,21.233,21.392,0,3.812037,5,5 +13314,1,0.250067,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,9.083,9.333,0,6.001607,5,5 +18148,0,0.30149,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,14.921,15.222,0,7.235749,5,5 +32868,0,0.50228,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.054716,0.15,4 +33068,0,0.246859,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.924621,0.15,4 +12024,1,0.24912,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,8.834,9.083,0,5.978874,5,5 +13141,1,0.247814,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,9.333,9.581,0,5.947531,5,5 +42,0,0.244023,2,2,0,2,4,,3,3,9 Mile,Rd,607709,3.268,3.512,0,5.856561,6,4.5 +647,0,0.581738,1,1,0,2,4,,3,3,Livernois,,642501,0.021,0.602,0,13.961718,6,4.5 +1712,-1,0.270142,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,8.646,8.916,0,6.483418,5,5 +3098,0,0.387458,1,1,0,2,4,,3,3,Wyoming,,666706,0.346,0.733,0,9.298984,6,4.5 +13577,1,0.437652,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,1.799,2.237,0,10.503654,6,4.5 +19682,1,0.174194,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,8.79,8.964,0,4.180654,5,5 +21072,0,0.125992,1,1,0,2,5,,3,3,Drayton,,4410116,0.151,0.277,0,3.023811,8,4.5 +22142,0,0.561895,2,2,0,2,4,,3,3,Pinecrest,,4412705,0.072,0.634,0,13.48548,6,4.5 +23798,-1,0.4377,0,2,0,2,4,DV2,3,1,Outer,Dr,4707854,0.355,0.793,0,10.504807,6,4.5 +25625,0,0.445688,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.696517,0.15,4 +25626,0,0.46386,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.132632,0.15,4 +27426,0,0.309864,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.436742,0.15,4 +27430,0,0.574584,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.790023,0.15,4 +27460,0,0.321685,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.720443,0.15,4 +27463,0,0.082448,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.978752,0.15,4 +27465,0,0.557741,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.385782,0.15,4 +33070,0,0.224518,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.388425,0.15,4 +33072,0,0.221498,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.315959,0.15,4 +33693,0,0.444378,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.66508,0.15,4 +33694,0,0.508127,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.195043,0.15,4 +669,-1,0.249883,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,8.185,8.435,0,5.997198,5,5 +13578,1,0.281134,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,1.518,1.799,0,6.747227,6,4.5 +19685,1,0.246621,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,8.167,8.413,0,5.918902,5,5 +22115,0,0.326623,2,2,0,2,3,,3,1,Wyoming,St,4700001,7.662,7.989,0,7.838959,5,5 +23799,-1,0.281053,0,2,0,2,4,DV2,3,1,Outer,Dr,4707854,0.074,0.355,0,6.745278,6,4.5 +26168,0,0.389987,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.359694,0.15,4 +29696,0,0.401637,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.639299,0.15,4 +33692,0,0.273412,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.561895,0.15,4 +33695,0,0.506514,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.156345,0.15,4 +21350,0,0.166009,2,2,0,2,3,,3,1,Wyoming,St,4700001,7.497,7.662,0,3.984205,5,5 +21569,0,0.239363,2,2,0,2,3,,3,1,Wyoming,St,4700001,7.257,7.497,0,5.744702,5,5 +13579,1,0.074227,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,1.444,1.518,0,1.78144,6,4.5 +23800,-1,0.074322,0,2,0,2,4,DV2,3,1,Outer,Dr,4707854,0,0.074,0,1.783736,6,4.5 +21793,0,0.013254,2,2,0,2,3,,3,1,Wyoming,St,4700001,7.244,7.257,0,0.318096,5,5 +2541,0,0.3252,1,1,0,2,4,,3,3,Wyoming,,666706,0.021,0.346,0,7.804796,6,4.5 +2833,0,0.010492,2,2,0,2,3,,3,3,Wyoming,,666706,0.01,0.021,0,0.251802,5,5 +3126,0,0.010222,2,2,0,2,3,,3,1,Wyoming,St,666706,0,0.01,0,0.24532,5,5 +27421,0,0.070269,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.686448,0.15,4 +33706,0,0.220745,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.297884,0.15,4 +33707,0,0.220096,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.282296,0.15,4 +102,-1,0.21081,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,8.435,8.646,0,5.059436,5,5 +19684,1,0.22064,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,8.413,8.634,0,5.295365,5,5 +19683,1,0.156702,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,8.634,8.79,0,3.760852,5,5 +41,0,0.484778,2,2,0,2,4,,3,3,9 Mile,Rd,607709,3.512,3.996,0,11.634675,6,4.5 +2247,0,0.26967,1,1,0,2,4,,3,3,Rosewood,,648106,0,0.27,0,6.472076,6,4.5 +3296,-1,0.275056,0,2,0,2,5,DV2,3,3,Oak Park,Blvd,665504,1.683,1.958,0,6.601347,8,4.5 +21121,1,0.315246,2,0,0,2,5,DV2,3,3,Oak Park,Blvd,4409248,1.683,1.998,0,7.565901,8,4.5 +27431,0,0.47666,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.43983,0.15,4 +21074,-1,0.0394,0,2,0,2,5,DV2,3,3,Drayton,,4410116,0,0.039,0,0.94559,8,4.5 +21073,0,0.111813,1,1,0,2,5,,3,3,Drayton,,4410116,0.039,0.151,0,2.683519,8,4.5 +1692,-1,0.448807,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,9.178,9.627,0,10.771361,5,5 +12199,1,0.328738,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,10.253,10.581,0,7.889721,5,5 +19678,1,0.450279,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,9.163,9.613,0,10.806695,5,5 +12399,1,0.4215,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,9.831,10.253,0,10.115997,5,5 +13576,1,0.272713,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,2.237,2.509,0,6.54511,6,4.5 +23797,-1,0.272598,0,2,0,2,4,DV2,3,1,Outer,Dr,4707854,0.793,1.065,0,6.542361,6,4.5 +39871,1,0.013189,2,0,0,2,4,DV2,3,1,Outer,Dr,1584503,2.509,2.522,0,0.316538,6,4.5 +21,-1,0.136495,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,9.042,9.178,0,3.275888,5,5 +19680,1,0.198073,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,8.964,9.163,0,4.753746,5,5 +663,-1,0.125963,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,8.916,9.042,0,3.02311,5,5 +22146,-1,0.056484,0,1,0,2,4,,3,1,Pinecrest,,4412705,0,0.057,0,1.355609,6,4.5 +22145,-1,0.015685,0,1,0,2,4,,3,3,Pinecrest,,4412705,0.057,0.072,0,0.376446,6,4.5 +1096,0,0.010178,2,2,0,2,3,,3,3,Livernois,,642501,0.01,0.021,0,0.244282,5,5 +1574,0,0.010235,2,2,0,2,3,,3,1,Livernois,Ave,642501,0,0.01,0,0.245635,5,5 +45,0,0.205871,1,1,1,2,4,,3,3,9 Mile,Rd,607709,2.824,3.03,0,4.940912,6,4.5 +1678,1,0.387123,1,0,0,2,4,DV2,3,3,Livernois,,642501,0.602,0.989,0,9.290942,6,4.5 +20146,-1,0.388123,0,1,0,2,4,DV2,3,3,Livernois,,4416623,0,0.388,0,9.314961,6,4.5 +22141,0,0.404091,2,2,0,2,4,,3,3,Pinecrest,,4412705,0.634,1.038,0,9.698182,6,4.5 +24864,0,0.367183,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.812403,0.15,4 +25623,0,0.515653,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.375674,0.15,4 +25624,0,0.377247,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.053926,0.15,4 +26173,0,0.454372,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.904937,0.15,4 +26857,0,0.483102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.594439,0.15,4 +40214,-1,0.014321,0,2,0,2,7,DIV,3,3,Northland,Dr,4406956,0.605,0.62,0,0.343703,7,4.5 +43,0,0.223068,1,1,1,2,4,,3,3,9 Mile,Rd,607709,3.045,3.268,0,5.353639,6,4.5 +22099,0,0.301106,1,1,1,2,5,,3,3,Pinecrest,,4412705,1.175,1.476,0,7.226534,8,4.5 +24863,0,0.16161,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.878636,0.15,4 +22101,0,0.136673,1,1,1,2,5,,3,3,Pinecrest,,4412705,1.038,1.175,0,3.280147,8,4.5 +44,0,0.014531,2,2,1,2,4,,3,3,9 Mile,Rd,607709,3.03,3.045,0,0.348746,6,4.5 +47,0,0.162493,1,1,0,2,4,,3,3,9 Mile,Rd,607709,2.601,2.764,0,3.899841,6,4.5 +649,0,0.191447,1,1,0,2,5,,3,3,Withington,,643301,0.633,0.825,0,4.594719,8,4.5 +751,-1,0.143539,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.737,11.88,0,3.444943,5,5 +1240,1,0.147488,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.726,11.874,0,3.539716,5,5 +2076,0,0.180586,2,1,0,2,5,,3,3,Troy,Ave,642609,0,0.181,0,4.334059,8,4.5 +46,0,0.06049,1,1,1,2,4,,3,3,9 Mile,Rd,607709,2.764,2.824,0,1.451751,6,4.5 +1098,0,0.067947,2,2,0,2,5,,3,3,Planavon,,643103,0,0.068,0,1.630718,8,4.5 +529,0,0.036929,2,1,0,2,5,,3,3,Allen,,642503,0.933,0.97,0,0.886299,8,4.5 +48,0,0.02554,1,1,0,2,4,,3,3,9 Mile,Rd,607709,2.576,2.601,0,0.612965,6,4.5 +283,-1,0.069733,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.88,11.95,0,1.673597,5,5 +648,0,0.060563,1,1,0,2,5,,3,3,Bermuda,,642807,0,0.061,0,1.4535,8,4.5 +1445,1,0.074153,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.874,11.948,0,1.779683,5,5 +1576,0,0.107286,1,1,0,2,5,,3,3,Vester,,642808,0,0.107,0,2.574864,8,4.5 +1565,1,0.039659,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.948,11.987,0,0.951816,5,5 +49,0,0.081146,1,1,1,2,4,,3,3,9 Mile,Rd,607709,2.495,2.576,0,1.947508,6,4.5 +15905,-1,0.194028,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,2.051,2.245,0,4.656664,5,5 +15923,0,0.494026,1,1,0,2,4,,3,1,Merrill Plaisance,St,1598607,0,0.494,0,11.856629,6,4.5 +15938,1,0.173431,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,2.076,2.25,0,4.162348,5,5 +16157,0,0.372301,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,2.397,2.769,0,8.935224,6,4.5 +16296,0,0.202609,1,1,0,2,4,,3,1,Pontchartrain,Blvd,1615401,0,0.203,0,4.862607,6,4.5 +16736,1,0.171992,2,0,0,2,5,,3,1,2nd,Blvd,1615405,0,0.172,0,4.127816,8,4.5 +16737,0,0.122016,1,1,0,2,5,,3,1,Pilgrim,St,1614102,0.172,0.294,0,2.928375,8,4.5 +17034,-1,0.218715,0,2,0,2,5,,3,1,3rd,St,1615404,0,0.219,0,5.249166,8,4.5 +17909,0,0.19368,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.232,22.426,0,4.648325,5,5 +18360,1,0.539145,2,0,0,2,3,DV2,3,1,7 Mile,Rd,1700106,15.711,16.25,0,12.939486,5,5 +19407,0,0.264663,2,2,0,2,4,,3,1,John R,St,1715605,0.279,0.544,0,6.351914,6,4.5 +23739,0,0.351458,1,1,0,2,4,,3,2,Puritan,St,4707953,5.64,5.991,0,8.434994,6,4.5 +23802,-1,0.535617,0,2,0,2,3,DV2,3,1,7 Mile,Rd,4707816,0.11,0.645,0,12.854804,5,5 +32099,0,0.253402,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.081642,0.15,4 +33878,0,0.404811,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.715472,0.15,4 +12005,1,0.419543,3,0,0,1,2,,3,1,S M 10,,1577509,5.034,5.453,0,,0.58,7 +12288,0,0.436351,2,2,0,2,4,,3,1,Fenkell,St,1579605,9.63,10.067,0,10.472435,6,4.5 +13264,-1,0.401175,0,3,0,1,2,,3,1,N M 10,,1577510,5.018,5.419,0,,0.58,7 +13400,1,0.192878,1,0,0,1,2,ROF,3,1,N M 10/Linwood,RAMP,1585206,0,0.193,0,,2.24,5 +13524,0,0.164167,1,1,0,2,3,,3,1,Linwood,St,1584609,3.957,4.122,0,3.940013,5,5 +16469,0,0.180179,1,1,0,2,5,,3,1,Rosa Parks,Blvd,1614105,0,0.18,0,4.324304,8,4.5 +17749,0,0.471516,1,1,0,2,3,,3,1,McNichols,Rd,1680701,21.633,22.105,0,11.316384,5,5 +23741,0,0.313941,1,1,0,2,4,,3,1,Puritan,St,4707953,5.171,5.485,0,7.534594,6,4.5 +24478,1,0.229335,1,0,0,1,2,RON,3,1,Linwood/S M 10,RAMP,4710004,0,0.229,0,,1.09,4 +30578,0,0.221662,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.319891,0.15,4 +30579,0,0.325318,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.807625,0.15,4 +30965,0,0.494002,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.85605,0.15,4 +32931,0,0.047287,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.134898,0.15,4 +12901,0,0.1876,2,2,0,2,4,,3,1,Fenkell,St,1579605,9.42,9.608,0,4.502406,6,4.5 +13401,1,0.183417,1,0,0,1,2,RON,3,1,Linwood/N M 10,RAMP,1585205,0,0.183,0,,1.09,4 +13525,0,0.151586,1,1,0,2,3,,3,1,Linwood,St,1584609,3.806,3.957,0,3.638066,5,5 +13549,1,0.181934,1,0,0,1,2,ROF,3,1,S M 10/Linwood,RAMP,1584608,0,0.182,0,,2.24,5 +13527,0,0.126273,1,1,0,2,3,,3,1,Linwood,St,1584609,3.624,3.75,0,3.030556,5,5 +13528,0,0.041218,1,1,0,2,3,,3,1,Linwood,St,1584609,3.583,3.624,0,0.989226,5,5 +22348,0,0.033901,1,1,0,2,4,,3,1,Linwood,St,4701495,0,0.034,0,0.81363,6,4.5 +12612,0,0.022362,2,2,0,2,4,,3,1,Fenkell,St,1579605,9.608,9.63,0,0.536677,6,4.5 +13526,0,0.055791,1,1,0,2,3,,3,1,Linwood,St,1584609,3.75,3.806,0,1.338985,5,5 +23250,-1,0.021948,0,3,0,2,5,,3,1,Hughes,St,4705979,1.629,1.651,0,0.526764,8,4.5 +14576,1,0.009061,2,0,0,2,5,,3,1,Keeler,Ave,1590901,3.024,3.034,0,0.217459,8,4.5 +23417,-1,0.009302,0,3,0,2,5,,3,1,Hughes,St,4705979,1.62,1.629,0,0.223245,8,4.5 +16806,0,0.333652,1,1,0,2,3,,3,1,Linwood,St,1614310,0,0.334,0,8.007647,5,5 +23743,0,0.048218,1,1,0,2,4,,3,1,Puritan,St,4707953,5.117,5.165,0,1.157243,6,4.5 +23742,0,0.005986,1,1,0,2,3,,3,1,Puritan,St,4707953,5.165,5.171,0,0.143663,5,5 +16528,0,0.163343,1,1,0,2,3,,3,1,Linwood,St,1614310,0.334,0.497,0,3.920235,5,5 +13523,0,0.282159,1,1,0,2,5,,3,1,Rosa Parks,Blvd,1584701,0,0.282,0,6.771805,8,4.5 +32932,0,0.256984,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.167607,0.15,4 +13522,0,0.053404,1,1,0,2,5,,3,1,Rosa Parks,Blvd,1584701,0.282,0.336,0,1.281696,8,4.5 +17036,0,0.012863,1,1,0,2,5,,3,1,Pilgrim,St,1614102,0.159,0.172,0,0.308714,8,4.5 +17097,0,0.165776,1,1,0,2,5,,3,2,Rosa Parks,Blvd,1614105,0.288,0.454,0,3.978616,8,4.5 +23740,0,0.154848,1,1,0,2,4,,3,1,Puritan,St,4707953,5.485,5.64,0,3.716347,6,4.5 +16215,0,0.108031,1,1,0,2,5,,3,1,Rosa Parks,Blvd,1614105,0.18,0.288,0,2.592744,8,4.5 +16214,0,0.222275,1,1,0,2,5,,3,2,Rosa Parks,Blvd,1614105,0.454,0.676,0,5.334601,8,4.5 +18298,0,0.127533,1,1,0,2,3,,3,1,McNichols,Rd,1680701,22.105,22.232,0,3.060793,5,5 +17094,0,0.537135,1,1,0,2,4,,3,1,Pontchartrain,Blvd,1615401,0.567,1.104,0,12.891233,6,4.5 +17637,0,0.068316,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,15.536,15.604,0,1.639591,5,5 +16527,1,0.049714,1,0,0,2,4,,3,1,Pontchartrain,Blvd,1615401,1.126,1.175,0,1.193139,6,4.5 +18574,1,0.055427,2,0,0,2,3,DV2,3,1,7 Mile,Rd,1700106,15.655,15.711,0,1.330244,5,5 +23801,1,0.085016,1,0,0,2,4,,3,1,Pontchartrain/7 Mile Cutoff,,4707817,0,0.085,0,2.040375,6,4.5 +23803,-1,0.070559,0,2,0,2,3,DV2,3,1,7 Mile,Rd,4707816,0.039,0.11,0,1.693422,5,5 +18945,1,0.039474,2,0,0,2,3,DV2,3,1,7 Mile,Rd,1700106,15.616,15.655,0,0.947386,5,5 +23804,-1,0.039217,0,2,0,2,3,DV2,3,1,7 Mile,Rd,4707816,0,0.039,0,0.941213,5,5 +19144,1,0.011583,2,0,0,2,3,DV2,3,1,7 Mile,Rd,1700106,15.604,15.616,0,0.277983,5,5 +16295,1,0.015294,1,0,0,2,4,,3,1,Pontchartrain,Blvd,1615401,1.175,1.191,0,0.367052,6,4.5 +16674,0,0.041455,1,1,0,2,4,,3,1,Pontchartrain,Blvd,1622308,0,0.042,0,0.99491,6,4.5 +16805,0,0.021969,1,1,0,2,4,,3,1,Pontchartrain,Blvd,1615401,1.104,1.126,0,0.527265,6,4.5 +16423,-1,0.011912,0,1,0,2,4,,3,1,Pontchartrain,Blvd,1622308,0.042,0.053,0,0.285883,6,4.5 +16213,0,0.364074,1,1,0,2,4,,3,1,Pontchartrain,Blvd,1615401,0.203,0.567,0,8.737767,6,4.5 +30966,0,0.321061,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.705474,0.15,4 +30964,0,0.042392,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.017397,0.15,4 +12403,0,0.382215,2,2,0,2,4,,3,2,Oakman,Blvd,1581709,3.587,3.969,0,9.173166,6,4.5 +16158,0,0.312924,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.77,2.083,0,7.510187,6,4.5 +17039,0,0.140987,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,2.083,2.224,0,3.38368,6,4.5 +18742,0,0.220712,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.582,22.802,0,5.2971,5,5 +32097,0,0.268695,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.448689,0.15,4 +33701,0,0.439407,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.545766,0.15,4 +17095,0,0.424425,1,1,0,2,5,,3,1,Woodrow Wilson,St,1614108,0.059,0.483,0,10.186211,8,4.5 +16740,0,0.17305,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,2.224,2.397,0,4.153199,6,4.5 +17482,0,0.095153,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.426,22.521,0,2.283679,5,5 +30956,0,0.100926,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.42223,0.15,4 +33089,0,0.355398,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.529548,0.15,4 +19094,0,0.06062,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.521,22.582,0,1.454883,5,5 +16012,1,0.281308,2,0,0,2,5,DV2,3,2,Manchester,Pkwy,1597406,0.038,0.32,0,6.751383,8,4.5 +22416,-1,0.315984,0,2,0,2,5,DV2,3,2,Manchester,Pkwy,4700711,0,0.316,0,7.583624,8,4.5 +30957,0,0.134412,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.225899,0.15,4 +32112,0,0.122929,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.950298,0.15,4 +16420,0,0.081465,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.689,1.77,0,1.955164,6,4.5 +16671,0,0.020055,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,1.669,1.689,0,0.481315,6,4.5 +24102,1,0.036579,1,0,0,2,5,DV2,3,2,Manchester,Pkwy,4711291,0,0.037,0,0.877904,8,4.5 +16013,1,0.038301,1,0,0,2,5,,3,2,Manchester,Pkwy,1597406,0,0.038,0,0.919218,8,4.5 +14538,0,0.227609,2,2,1,2,3,,3,2,Woodward,Ave,1591001,0.26,0.487,0,5.462606,5,5 +14539,0,0.259748,2,2,1,2,3,,3,2,Woodward,Ave,1591001,0,0.26,0,6.233963,5,5 +18191,0,0.16261,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.818,22.98,0,3.902634,5,5 +18517,0,0.015555,2,2,0,2,3,,3,1,McNichols,Rd,1680701,22.802,22.818,0,0.373318,5,5 +14371,0,0.145543,1,1,0,2,5,,3,1,Nevada,St,1585907,0.02,0.165,0,3.493042,8,4.5 +15906,-1,0.121376,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,1.93,2.051,0,2.913015,5,5 +15908,-1,0.304071,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,1.502,1.806,0,7.29771,5,5 +15919,1,0.066806,1,0,0,2,4,,3,1,Merrill Plaisance,St,1598607,0.761,0.828,0,1.603352,6,4.5 +15940,1,0.178534,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,1.854,2.032,0,4.28482,5,5 +15942,1,0.251027,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,1.554,1.805,0,6.024646,5,5 +17544,0,0.048781,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,16.618,16.666,0,1.170756,5,5 +19405,0,0.253226,2,2,0,2,4,,3,1,John R,St,1715605,0.749,1.003,0,6.077434,6,4.5 +19640,1,0.06422,1,0,0,2,4,,3,1,Woodward/Merrill Cutoff,,1841106,0,0.064,0,1.541291,6,4.5 +30960,0,0.164346,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.944307,0.15,4 +30962,0,0.234127,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.619039,0.15,4 +30968,0,0.256076,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.145828,0.15,4 +30969,0,0.225085,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.402036,0.15,4 +31902,0,0.244844,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.876252,0.15,4 +32115,0,0.291701,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.000817,0.15,4 +15907,-1,0.123269,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,1.806,1.93,0,2.958457,5,5 +15922,0,0.161047,1,1,0,2,4,,3,1,Merrill Plaisance,St,1598607,0.494,0.655,0,3.865126,6,4.5 +15921,0,0.076692,1,1,0,2,4,,3,1,Merrill Plaisance,St,1598607,0.655,0.732,0,1.840596,6,4.5 +16468,1,0.034866,1,0,0,2,5,,3,1,2nd,Blvd,1615405,0.172,0.207,0,0.83679,8,4.5 +22178,1,0.064626,1,0,0,2,5,,3,1,2nd,Blvd,4704374,0,0.065,0,1.551031,8,4.5 +15920,0,0.029483,1,1,0,2,4,,3,1,Merrill Plaisance,St,1598607,0.732,0.761,0,0.707588,6,4.5 +15941,1,0.048707,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,1.805,1.854,0,1.168965,5,5 +13786,0,0.019661,1,1,0,2,5,,3,1,Nevada,St,1585907,0,0.02,0,0.471859,8,4.5 +15909,-1,0.367104,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,1.135,1.502,0,8.810489,5,5 +15943,1,0.423763,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,1.13,1.554,0,10.170316,5,5 +17860,0,0.345807,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,16.272,16.618,0,8.299375,5,5 +18060,0,0.022474,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,16.25,16.272,0,0.539371,5,5 +14140,0,0.232484,1,1,0,2,5,,3,1,Nevada,St,1585907,0.165,0.398,0,5.579605,8,4.5 +19406,0,0.205767,2,2,0,2,4,,3,1,John R,St,1715605,0.544,0.749,0,4.938397,6,4.5 +30959,0,0.149495,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.587876,0.15,4 +32098,0,0.22195,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.326801,0.15,4 +15918,1,0.030707,1,0,0,2,3,,3,1,Merrill Plaisance,St,1598607,0.828,0.859,0,0.736963,5,5 +15939,1,0.044422,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,2.032,2.076,0,1.066116,5,5 +19042,0,0.249787,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,16.666,16.916,0,5.994879,5,5 +19404,0,0.274014,2,2,0,2,4,,3,1,John R,St,1715605,1.003,1.277,0,6.576337,6,4.5 +30967,0,0.25566,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.135846,0.15,4 +30970,0,0.278333,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.679986,0.15,4 +19403,0,0.116336,2,2,0,2,4,,3,1,John R,St,1715605,1.277,1.393,0,2.792071,6,4.5 +53,0,0.240563,1,1,1,2,4,,3,3,9 Mile,Rd,607709,1.511,1.752,0,5.773514,6,4.5 +418,1,0.375425,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,12.42,12.796,0,9.010207,5,5 +504,-1,0.348403,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,12.425,12.773,0,8.361666,5,5 +1088,-1,0.406992,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,10.432,10.839,0,9.767806,5,5 +2385,0,0.508259,1,1,1,2,4,,3,3,John R,Rd,646806,0.021,0.529,0,12.198212,6,4.5 +13769,0,0.382493,2,2,0,2,4,,3,1,State Fair,St,1586002,0.02,0.402,0,9.179837,6,4.5 +19223,0,0.186557,1,1,0,2,5,,3,3,Fern,,1812608,0,0.187,0,4.477363,8,4.5 +19670,1,0.402126,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,10.418,10.82,0,9.651029,5,5 +21494,0,0.096638,1,1,0,2,5,,3,3,Chesterfield,,4413567,0,0.097,0,2.319307,8,4.5 +24550,0,0.435034,1,1,0,2,4,,3,3,Hilton,,642306,0.021,0.456,0,10.440823,6,4.5 +25867,0,0.52151,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.516244,0.15,4 +25868,0,0.221798,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.323156,0.15,4 +29975,0,0.456349,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.952376,0.15,4 +29976,0,0.472953,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.350868,0.15,4 +30971,0,0.319316,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.663582,0.15,4 +30974,0,0.317804,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.627303,0.15,4 +33697,0,0.337943,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.110629,0.15,4 +2071,-1,0.423415,0,3,0,2,3,DIV,3,3,8 Mile,Rd,640807,9.84,10.263,0,10.161949,5,5 +15901,-1,0.241004,0,1,0,2,3,,3,1,W M 1 Service Drive,,1598701,0.033,0.274,0,5.784084,5,5 +15913,-1,0.169469,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,0.279,0.449,0,4.067251,5,5 +15924,1,0.195466,1,0,0,2,3,,3,1,E M 1 Service Drive,,1598510,0.033,0.228,0,4.691185,5,5 +15928,1,0.167584,1,0,0,2,3,,3,1,8 Mile Service Drive,,1598509,0.235,0.402,0,4.022022,5,5 +15935,-1,0.112991,0,3,0,2,3,,3,3,W M 102 Service Drive,,1598508,0.22,0.333,0,2.711784,5,5 +15947,1,0.267623,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,0.223,0.49,0,6.422957,5,5 +31548,0,0.527807,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.667365,0.15,4 +32870,0,0.515246,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.365912,0.15,4 +32871,0,0.537594,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.902254,0.15,4 +33087,0,0.552188,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.252523,0.15,4 +578,-1,0.241872,0,3,0,2,3,DIV,3,3,Woodward,Ave,616808,12.773,13.015,0,5.804921,5,5 +775,1,0.223418,3,0,0,2,3,DIV,3,3,Woodward,Ave,614101,12.796,13.019,0,5.36204,5,5 +1575,1,0.21796,1,0,0,2,3,,3,3,E M 1 Service Drive,,642802,0,0.218,0,5.231034,5,5 +15933,1,0.076786,1,0,0,1,3,,3,1,8 Mile Service Drive,,1598509,0,0.077,0,,5,5 +15937,-1,0.187565,0,1,0,2,3,,3,3,W M 102 Service Drive,,1598508,0,0.188,0,4.501549,5,5 +19675,1,0.401934,3,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,9.821,10.223,0,9.646408,5,5 +20536,-1,0.246425,0,1,0,2,3,,3,3,W M 1 Service Drive,,4400020,0,0.246,0,5.914189,5,5 +773,-1,0.133417,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,9.706,9.84,0,3.202011,5,5 +19676,1,0.165018,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,9.656,9.821,0,3.960431,5,5 +15932,1,0.125444,1,0,0,2,3,,3,1,8 Mile Service Drive,,1598509,0.077,0.202,0,3.010657,5,5 +34119,-1,0.016762,0,3,0,2,3,,3,1,W M 1 Service Drive,,1598701,0.017,0.033,0,0.402287,5,5 +15936,-1,0.032075,0,3,0,2,3,,3,3,W M 102 Service Drive,,1598508,0.188,0.22,0,0.769809,5,5 +15927,1,0.016898,3,0,0,2,3,,3,3,E M 1 Service Drive,,1598510,0,0.017,0,0.405541,5,5 +15926,1,0.016,3,0,0,2,3,,3,1,E M 1 Service Drive,,1598510,0.017,0.033,0,0.384004,5,5 +15904,-1,0.016557,0,3,0,2,3,,3,3,W M 1 Service Drive,,1598701,0,0.017,0,0.397371,5,5 +15917,-1,0.017276,0,3,0,2,3,DIV,3,3,Woodward,Ave,1598610,0,0.017,0,0.414618,5,5 +15931,1,0.032732,3,0,0,2,3,,3,1,8 Mile Service Drive,,1598509,0.202,0.235,0,0.785566,5,5 +15951,1,0.017153,3,0,0,2,3,DIV,3,3,Woodward,Ave,1598507,0,0.017,0,0.411675,5,5 +15950,1,0.20612,3,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,0.017,0.223,0,4.946874,5,5 +15916,-1,0.261756,0,3,0,2,3,DIV,3,1,Woodward,Ave,1598610,0.017,0.279,0,6.282154,5,5 +14170,0,0.019747,1,1,0,2,4,,3,1,State Fair,St,1586002,0,0.02,0,0.473929,6,4.5 +15911,-1,0.311095,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,0.584,0.895,0,7.466281,5,5 +15912,-1,0.135526,0,4,0,2,3,DIV,3,1,Woodward,Ave,1598610,0.449,0.584,0,3.252628,5,5 +15945,1,0.313036,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,0.587,0.9,0,7.512853,5,5 +15946,1,0.096465,4,0,0,2,3,DIV,3,1,Woodward,Ave,1598507,0.49,0.587,0,2.315154,5,5 +15934,-1,0.090921,0,3,0,2,3,,3,3,W M 102 Service Drive,,1598508,0.333,0.423,0,2.182099,5,5 +24549,-1,0.020753,0,1,0,2,4,,3,3,Hilton,,642306,0,0.021,0,0.49806,6,4.5 +24552,-1,0.162433,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,10.27,10.432,0,3.898395,5,5 +24553,1,0.096886,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,10.223,10.32,0,2.325258,5,5 +34820,-1,0.013498,0,1,0,2,7,,3,3,Hilton/E M 102,,1850901,0.061,0.075,0,0.32394,7,4.5 +34819,-1,0.061334,0,1,0,2,7,,3,1,Hilton/E M 102,,1850901,0,0.061,0,1.472006,7,4.5 +32872,0,0.316844,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.604249,0.15,4 +33696,0,0.366077,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.785855,0.15,4 +24551,-1,0.007025,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,10.263,10.27,0,0.168597,5,5 +24554,1,0.097848,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,10.32,10.418,0,2.348343,5,5 +30972,0,0.256481,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.155542,0.15,4 +1097,0,0.062952,1,1,0,2,5,,3,3,Fair,,642805,0,0.063,0,1.510859,8,4.5 +51,0,0.252825,1,1,1,2,4,,3,3,9 Mile,Rd,607709,1.997,2.25,0,6.067805,6,4.5 +1677,0,0.516637,1,1,0,2,4,,3,3,Hilton,,642306,0.456,0.972,0,12.399296,6,4.5 +27385,0,0.390379,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.369105,0.15,4 +27420,0,0.246801,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.923231,0.15,4 +27417,0,0.197766,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.746381,0.15,4 +27419,0,0.172446,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.138703,0.15,4 +25869,0,0.32245,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.738808,0.15,4 +52,0,0.245208,1,1,1,2,4,,3,3,9 Mile,Rd,607709,1.752,1.997,0,5.884982,6,4.5 +639,-1,0.344643,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,10.839,11.184,0,8.271438,5,5 +13979,0,0.499655,2,2,0,2,4,,3,1,State Fair,St,1586002,0.402,0.902,0,11.991729,6,4.5 +19399,0,0.168744,1,1,0,2,4,,3,1,John R,St,1715605,1.955,2.124,0,4.04986,6,4.5 +19667,1,0.345097,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,10.82,11.165,0,8.282327,5,5 +32119,0,0.098289,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.358929,0.15,4 +32120,0,0.276411,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.633873,0.15,4 +32865,0,0.263669,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.328047,0.15,4 +19401,0,0.1659,2,2,0,2,4,,3,1,John R,St,1715605,1.611,1.777,0,3.981593,6,4.5 +19400,0,0.178148,1,1,0,2,4,,3,1,John R,St,1715605,1.777,1.955,0,4.275558,6,4.5 +19398,0,0.168363,1,1,0,2,4,,3,1,John R,St,1715605,2.124,2.292,0,4.040721,6,4.5 +31579,0,0.263052,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.313238,0.15,4 +32117,0,0.239948,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.758755,0.15,4 +32118,0,0.070531,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.692747,0.15,4 +2177,-1,0.067024,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,11.184,11.251,0,1.608579,5,5 +19664,1,0.067523,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,11.22,11.287,0,1.620541,5,5 +19666,1,0.055245,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,11.165,11.22,0,1.325879,5,5 +2387,0,0.010423,1,1,0,2,4,,3,1,John R,St,646806,0,0.01,0,0.250151,6,4.5 +2386,0,0.01052,1,1,0,2,4,,3,3,John R,Rd,646806,0.01,0.021,0,0.252471,6,4.5 +55,0,0.196095,2,2,0,2,4,,3,3,9 Mile,Rd,607709,1.165,1.361,0,4.70627,6,4.5 +2325,1,0.205084,2,0,0,2,5,,3,3,Chrysler,Dr,646902,0.942,1.147,0,4.922007,8,4.5 +2383,0,0.080998,2,2,0,2,4,,3,3,John R,Rd,646806,0.809,0.889,0,1.94395,6,4.5 +2404,-1,0.245103,0,3,0,2,5,,3,3,Chrysler,Dr,646702,1.049,1.294,0,5.882479,8,4.5 +29974,0,0.576003,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.824072,0.15,4 +54,0,0.150182,1,1,1,2,4,,3,3,9 Mile,Rd,607709,1.361,1.511,0,3.604375,6,4.5 +2384,0,0.279458,1,1,1,2,4,,3,3,John R,Rd,646806,0.529,0.809,0,6.706997,6,4.5 +27384,0,0.191657,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.599767,0.15,4 +2405,-1,0.146219,0,1,0,2,5,,3,3,Chrysler,Dr,646702,0.903,1.049,0,3.509263,8,4.5 +2381,0,0.303989,2,2,0,2,4,,3,3,John R,Rd,646806,0.997,1.301,0,7.295731,6,4.5 +3867,1,0.140694,1,0,0,1,1,ROF,3,3,S I 75/9 Mile,RAMP,710401,0,0.141,0,,2.24,5 +4867,1,0.116021,1,0,0,1,1,RON,3,3,9 Mile/N I 75,RAMP,710410,0,0.116,0,,1.09,4 +56,0,0.058746,2,2,1,2,4,,3,3,9 Mile,Rd,607709,1.107,1.165,0,1.409896,6,4.5 +2323,1,0.110808,2,0,0,2,5,,3,3,Chrysler,Dr,646902,1.287,1.398,0,2.659395,8,4.5 +2324,1,0.140525,2,0,0,2,5,,3,3,Chrysler,Dr,646902,1.147,1.287,0,3.3726,8,4.5 +2382,0,0.107811,2,2,0,2,4,,3,3,John R,Rd,646806,0.889,0.997,0,2.587468,6,4.5 +2403,-1,0.101154,0,3,0,2,5,,3,3,Chrysler,Dr,646702,1.294,1.395,0,2.427691,8,4.5 +57,0,0.0816,2,2,1,2,4,,3,3,9 Mile,Rd,607709,1.025,1.107,0,1.958408,6,4.5 +2380,0,0.034641,2,2,0,2,4,,3,3,John R,Rd,646806,1.301,1.336,0,0.831384,6,4.5 +3893,-1,0.355015,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,5.562,5.917,0,8.520366,5,5 +4179,1,0.287594,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,5.616,5.904,0,6.902264,5,5 +4458,0,0.390356,1,1,0,2,5,,3,4,Toepfer,Dr,802903,1.453,1.843,0,9.368547,8,4.5 +5355,0,0.223677,2,2,1,2,4,,3,4,9 Mile,Rd,803006,5.775,5.999,0,5.368248,6,4.5 +11443,1,0.734329,3,0,0,1,1,,3,1,E I 94,,1576405,33.804,34.538,0,,0.58,7 +11642,1,0.05708,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.503,0.56,0,1.369916,5,5 +11900,1,0.241866,3,0,0,1,2,,2,1,S M 10,,1577509,11.097,11.339,0,,0.32,8.5 +11983,1,0.123682,2,0,0,2,4,,1,1,Brush,St,4718307,0.42,0.544,0,2.968377,8,4.5 +12065,-1,0.040556,0,3,0,2,4,,1,1,John R,St,1577608,0.091,0.131,0,0.973349,8,4.5 +12154,1,0.226531,3,0,0,1,1,,1,1,N I 375,,1577706,0.605,0.831,0,,0.32,8.5 +12174,-1,0.258582,0,3,0,1,1,,1,1,S I 375,,1577705,0.6,0.859,0,,0.32,8.5 +12237,0,0.11169,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.807,0.918,0,2.680552,6,4.5 +12359,0,0.053437,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.027,12.081,0,1.282485,6,5 +12436,0,0.050904,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.59,0.64,0,1.221686,8,4.5 +12458,0,0.414556,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.786,3.2,0,9.949344,6,4.5 +12619,0,0.332065,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.04,3.372,0,7.969563,6,4.5 +12893,1,0.187333,1,0,0,1,1,ROF,3,1,E I 94/Chalmers,RAMP,1578101,0,0.187,0,,2.24,5 +12965,-1,0.218289,0,4,0,1,1,,3,1,W I 96,,1577405,4.366,4.584,0,,0.58,7 +13001,-1,0.055271,0,4,0,2,4,,1,1,3rd,St,1581602,0.708,0.764,0,1.326498,8,4.5 +13037,1,0.33408,4,0,0,1,1,,3,1,E I 96,,1577404,4.287,4.621,0,,0.58,7 +13043,-1,0.164914,0,3,0,1,2,,2,1,N M 10,,1577510,11.08,11.245,0,,0.32,8.5 +13453,1,0.317806,1,0,0,1,1,RFS,3,1,S I 75/S M 10,RAMP,1585004,0,0.318,0,,0.22,6 +13455,1,0.370047,1,0,0,1,1,RFS,3,1,S M 10/N I 75,RAMP,1585002,0,0.37,0,,0.22,6 +13626,0,0.082489,2,2,0,2,4,,1,1,Adams,Ave,1584401,0.101,0.184,0,1.97974,8,4.5 +13634,1,0.02302,3,0,0,2,5,,1,1,2nd,St,4718974,0.024,0.047,0,0.55248,8.5,4.5 +13645,1,0.059043,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.025,0.084,0,1.417027,8.5,4.5 +13647,1,0.241828,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0,0.242,0,5.803869,8,4.5 +13664,0,0.082172,1,1,0,2,4,,3,1,Chene,St,1587501,0,0.082,0,1.972118,6,4.5 +13702,-1,1.050386,0,3,0,1,1,,3,1,W I 94,,1588802,32.903,33.954,0,,0.58,7 +13708,1,0.067848,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,0.27,0.338,0,1.628343,6,4.5 +13820,-1,0.323854,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,1.576,1.9,0,7.772505,6,4.5 +14032,1,0.325889,3,0,0,2,4,DV2,3,1,Larned,St,1585504,0.95,1.276,0,7.821332,6,4.5 +14060,0,0.159178,1,1,0,2,5,,3,1,State Fair,St,1588609,2.06,2.22,0,3.82027,8,4.5 +14150,1,0.145349,1,0,0,1,1,RFF,2,1,S I 75/N M 10,RAMP,1585403,0,0.145,0,,0.32,8.5 +14165,-1,0.067817,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.396,0.464,0,1.627616,6,4.5 +14196,-1,0.068374,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.243,0.311,0,1.640972,8.5,4.5 +14212,0,0.250794,1,1,0,2,5,,3,1,Seymour,St,1588403,0.66,0.911,0,6.019055,8,4.5 +14246,0,0.277707,2,2,1,2,3,,3,1,Conner,St,1588005,1.05,1.328,0,6.664964,5,5 +14263,0,0.250617,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,0.892,1.143,0,6.014808,6,4.5 +14314,1,0.053552,3,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.124,0.177,0,1.285259,8.5,4.5 +14317,0,0.315108,3,3,0,2,3,,3,1,Mack,Ave,1587509,4.09,4.405,0,7.562588,5,5 +14343,-1,0.051363,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.549,0.6,0,1.232706,8,4.5 +14489,0,0.0773,2,2,1,2,3,,1,1,Woodward,Ave,1591001,6.23,6.308,0,1.855195,6,5 +14834,-1,0.11678,0,2,0,2,5,,3,1,Henry,Dr,1595509,1.019,1.136,0,2.802725,8,4.5 +15053,1,0.068415,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.243,0.311,0,1.641961,8.5,4.5 +15118,1,0.434192,4,0,0,1,1,,1,1,N I 75,,1592010,23.343,23.777,0,,0.32,8.5 +15364,-1,0.227644,0,3,0,1,1,,1,1,S I 75,,1595106,23.171,23.398,0,,0.32,8.5 +15571,1,0.060633,1,0,0,1,1,RFS,3,1,S M 10/S I 75 CD,RAMP,1591108,0.089,0.149,0,,0.22,6 +15955,0,0.057566,1,1,0,2,4,,1,1,Grand River,Ave,1598501,0.185,0.243,0,1.381572,8,4.5 +15964,1,0.044227,2,0,0,2,4,,1,1,Witherell,St,1598410,0,0.044,0,1.061449,8,4.5 +16358,0,0.11484,1,1,0,2,5,,3,1,Lawton,St,1608601,0.111,0.226,0,2.756153,8,4.5 +17285,0,0.07009,1,1,0,2,5,,1,1,Centre,St,1628206,0.044,0.114,0,1.682158,8.5,4.5 +17288,-1,0.095118,0,3,0,2,5,,1,1,Macomb,St,1628108,0.125,0.22,0,2.282841,8.5,4.5 +17298,0,0.101717,1,1,0,2,5,,3,1,Saint Aubin,St,1628007,0.11,0.211,0,2.441206,8,4.5 +17317,-1,0.326391,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.071,0.397,0,7.833384,6,4.5 +17328,1,0.05589,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0,0.056,0,1.341353,6,4.5 +17332,0,0.056881,1,1,0,2,5,,3,1,Rivard,St,1627905,0.352,0.409,0,1.365134,8,4.5 +18352,1,0.178364,3,0,0,2,7,,3,1,Lycaste,St,1634606,0,0.178,0,4.280728,7,4.5 +39956,1,0.358436,3,0,0,2,5,,3,1,Riverbank,Rd,5494522,1.177,1.535,0,8.602457,8,4.5 +40065,1,0.022659,2,0,0,2,9,,3,3,Orchard Lake/Orchard Lake,TURN,5500215,0,0.023,0,0.543822,7,4.5 +18521,1,0.941058,3,0,0,2,5,,3,1,The Strand,St,1633206,1.409,2.349,0,22.585382,8,4.5 +18523,1,0.402303,3,0,0,2,5,,3,1,The Strand,St,1633206,1.006,1.409,0,9.655278,8,4.5 +40027,-1,0.022844,0,2,0,2,3,,4,3,Orchard Lake,Rd,5499978,0.04,0.062,0,0.548261,3.7,5 +39959,0,0.223157,1,1,0,2,5,,3,1,Picnic,Way,5494510,0,0.223,0,5.355771,8,4.5 +18572,0,0.251553,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,23.667,23.918,0,6.037268,5,5 +18730,1,0.354138,1,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,0.759,1.113,0,8.499315,6,4.5 +21489,0,0.055541,1,1,0,2,5,,1,1,Elizabeth,St,4700499,0.076,0.132,0,1.332992,8.5,4.5 +21674,1,0.038481,2,0,0,2,4,,1,1,Park,Ave,4700018,0.198,0.237,0,0.923534,8,4.5 +21872,0,0.181354,1,1,1,2,3,,3,1,Warren,Ave,4700429,6.192,6.373,0,4.352502,5,5 +22139,-1,0.05779,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.325,0.383,0,1.386953,5,5 +22343,1,0.066868,1,0,0,2,5,,1,1,Clinton,St,4705738,0,0.067,0,1.604831,8.5,4.5 +22408,0,0.077988,1,1,0,2,5,,3,1,Joseph Campau,St,4701218,0,0.078,0,1.871712,8,4.5 +22463,-1,0.05592,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0,0.056,0,1.342078,6,4.5 +22510,0,0.080063,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.234,0.314,0,1.921508,6,5 +22639,0,0.37889,1,1,0,2,4,,3,1,Dickerson,St,4705398,1.679,2.057,0,9.09335,6,4.5 +22709,1,0.087901,1,0,0,2,5,,1,1,Randolph,St,4705736,0.048,0.136,0,2.109632,8.5,4.5 +22720,1,0.318124,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,1.571,1.889,0,7.634968,6,4.5 +22741,0,0.172163,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,4.318,4.49,0,4.131916,5,5 +22756,0,0.081257,1,1,0,2,5,,1,1,Broadway,St,4705737,0.178,0.26,0,1.950172,8.5,4.5 +22790,-1,0.22738,0,2,0,2,3,,3,1,14th,St,4705601,0.706,0.933,0,5.457109,5,5 +23163,0,0.217146,1,1,0,2,5,,3,1,24th,St,4705563,1.238,1.456,0,5.211501,8,4.5 +23195,-1,0.286616,0,1,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,0,0.287,0,6.878781,6,4.5 +23218,1,0.202113,2,0,0,2,3,,3,1,Rosa Parks,Blvd,4705605,0.925,1.127,0,4.850715,5,5 +23256,0,0.103489,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.669,0.772,0,2.483726,5,5 +23605,0,0.352462,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,8.676,9.028,0,8.459087,5,5 +23667,0,0.051681,2,2,0,2,5,,3,1,Edlie,St,4705781,0,0.052,0,1.240355,8,4.5 +23900,-1,0.171989,0,1,0,1,1,RON,1,1,Grand River/S I 75,RAMP,4707198,0,0.172,0,,1.09,4 +24069,0,0.17075,1,1,0,2,5,,3,1,Atwater,St,4711889,0.926,1.097,0,4.097994,8,4.5 +24240,0,0.32476,1,1,0,2,5,,3,1,Saint Jean,St,4711073,0,0.325,0,7.794236,8,4.5 +24422,1,0.119697,3,0,0,2,5,,1,1,Monroe,St,4711771,0.378,0.498,0,2.872736,8.5,4.5 +24440,1,0.027688,2,0,0,2,5,,3,1,E I 96 Service Drive,,4710513,0.41,0.438,0,0.664517,8,4.5 +27467,0,0.446921,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.726097,0.15,4 +27469,0,0.242547,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.82114,0.15,4 +30346,0,0.054235,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.301637,0.15,4 +30360,0,0.21749,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.219758,0.15,4 +30371,0,0.374748,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.993958,0.15,4 +30501,0,0.19394,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.654567,0.15,4 +30719,0,0.480018,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.520422,0.15,4 +32031,0,0.4094,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.82559,0.15,4 +32711,0,0.22904,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.496951,0.15,4 +33097,0,0.311296,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.471102,0.15,4 +33103,0,0.191596,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.598316,0.15,4 +33117,0,0.261494,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.275853,0.15,4 +33124,0,0.465389,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.169325,0.15,4 +33126,0,0.163257,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.918166,0.15,4 +33128,0,0.461889,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.085341,0.15,4 +33143,0,0.092306,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.215333,0.15,4 +33150,0,0.223345,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.360291,0.15,4 +33526,0,0.154651,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.711623,0.15,4 +17294,0,0.122872,1,1,0,2,7,,1,1,Woodbridge,St,4712427,0.119,0.242,0,2.948934,8.5,4.5 +17336,0,0.054645,1,1,0,2,5,,1,1,Rivard,St,1627905,0.119,0.174,0,1.311468,8.5,4.5 +22635,0,0.122349,2,2,1,2,5,,1,1,Franklin,St,4712428,0.119,0.242,0,2.936368,8.5,4.5 +23176,0,0.200812,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.293,0.493,0,4.819481,5,5 +24361,0,0.137813,2,2,0,2,4,,3,1,Atwater,St,4711889,0.106,0.244,0,3.307512,6,4.5 +33105,0,0.147481,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.539544,0.15,4 +11718,0,0.044813,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.499,6.544,0,1.075504,5,5 +12251,0,0.086547,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.458,0.545,0,2.077125,6,4.5 +13427,0,0.514781,2,2,1,2,3,,3,1,Fort,St,1585010,3.987,4.502,0,12.354734,5,5 +13454,1,0.478421,1,0,0,1,1,RFS,2,1,N M 10/S I 75 CD,RAMP,1585003,0,0.478,0,,0.22,6 +14946,-1,0.213721,0,3,0,1,1,,3,1,S I 75,,1595106,22.957,23.171,0,,0.58,7 +15105,1,0.146814,1,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.474,0.621,0,3.523531,8,4.5 +15163,1,0.133827,1,0,0,1,1,RON,3,1,I 75 Service Drive/I 75 CD,RAMP,1595104,0,0.134,0,,1.09,4 +15232,1,0.207217,3,0,0,1,1,,3,1,N I 75,,1592010,22.938,23.145,0,,0.58,7 +15443,1,0.092769,1,0,0,1,1,ROF,3,1,S M 10/Trumbull,RAMP,1595507,0,0.093,0,,3.07,5 +15570,1,0.149768,1,0,0,1,1,RFF,3,1,S M 10/S I 75 CD,RAMP,1591108,0.149,0.299,0,,0.32,8.5 +16182,0,0.080702,2,2,0,2,5,,3,1,Bagley,St,4718918,0.831,0.912,0,1.936847,8,4.5 +20835,0,0.363593,2,2,0,2,4,,3,1,Jefferson,Ave,4302169,19.808,20.172,0,8.726233,6,4.5 +21459,1,0.381428,2,0,0,1,1,FCD,3,1,N I 75 CD,RAMP,4700028,0.361,0.742,0,,0.58,7 +22385,0,0.206986,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.539,0.746,0,4.967669,6,4.5 +23365,-1,0.070363,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4705605,0.062,0.132,0,1.688703,5,5 +23914,1,0.070386,2,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706959,0.1,0.171,0,1.689267,5,5 +27470,0,0.081163,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.9479,0.15,4 +33168,0,0.283664,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.807939,0.15,4 +33171,0,0.155644,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.735465,0.15,4 +20140,0,0.080466,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,19.728,19.808,0,1.931176,5,5 +11606,0,0.438999,1,1,0,2,5,,3,1,Scotten,St,1577306,0,0.439,0,10.535982,8,4.5 +11626,1,0.275455,2,0,0,2,4,DV2,3,1,Grand,Blvd,1581303,0.529,0.804,0,6.610923,6,4.5 +11724,0,0.329508,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.61,5.94,0,7.908185,5,5 +12312,0,0.190833,1,1,0,2,4,,3,1,Clark,St,1581210,0.857,1.048,0,4.579987,6,4.5 +12415,1,0.38668,1,0,0,1,1,RFF,3,1,S I 75/W I 96,RAMP,1582101,0,0.387,0,,0.58,7 +37844,-1,0.147526,0,2,0,2,5,,3,1,22nd,St,1590407,1.405,1.553,0,3.540621,8,4.5 +37809,1,0.287873,3,0,0,1,1,,3,1,N I 75,,1592010,21.298,21.586,0,,0.58,7 +12468,1,0.195097,2,0,0,2,5,DV2,3,1,Grand,Blvd,1581303,0,0.195,0,4.682325,8,4.5 +12656,0,0.12112,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,3.381,3.503,0,2.906875,5,5 +12758,0,0.14607,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.512,2.658,0,3.505676,5,5 +37858,1,0.139098,2,0,0,1,1,ROF,3,1,E I 96/Ambassador Bridge,RAMP,4718926,0.255,0.394,0,,2.24,5 +37849,1,0.194788,1,0,0,1,1,ROF,3,1,S I 75/Ambassador Bridge,RAMP,4718927,0,0.195,0,,2.24,5 +13429,0,0.353391,2,2,1,2,3,,3,1,Fort,St,1585010,3.518,3.871,0,8.481372,5,5 +37866,1,0.141618,1,0,0,1,1,RON,3,1,Ambassador Brg Trucks/S I 75,RAMP,4718920,0.186,0.327,0,,1.09,4 +14674,1,0.190243,1,0,0,1,1,FCD,3,1,S I 75 CD/S I 75,RAMP,1590408,0,0.19,0,,0.58,7 +37819,-1,0.172208,0,4,0,1,1,,3,1,S I 75,,1595106,20.953,21.125,0,,0.58,7 +37854,1,0.193498,1,0,0,1,1,RON,3,1,S I 75 Service Drive/S I 75,RAMP,4718929,0,0.194,0,,1.09,4 +39922,1,0.016686,1,0,0,2,3,,3,1,21st/N I 75,TURN,4718957,0,0.017,0,0.400461,5,5 +14691,1,0.316992,1,0,0,1,1,RFF,3,1,E I 96/N I 75 CD,RAMP,1590406,0.319,0.636,0,,0.58,7 +14699,0,0.109317,1,1,0,2,4,,3,1,Sainte Anne,St,1590210,0,0.109,0,2.623614,6,4.5 +37881,0,0.380197,1,1,0,2,7,,4,3,Tienken,Rd,626010,1.023,1.403,0,9.12473,6.55,4.5 +37871,1,0.326764,2,0,0,1,1,RON,3,1,Ambassador Bridge/S I 75,RAMP,4718923,0.111,0.438,0,,1.09,4 +14838,1,0.226206,2,0,0,1,1,,3,1,N I 75,,1592010,22.118,22.344,0,,0.58,7 +37850,1,0.305339,1,0,0,1,1,ROF,3,1,S I 75/Vernor,RAMP,4718928,0,0.305,0,,2.24,5 +37853,1,0.154549,2,0,0,2,5,,3,1,N I 75 Service Drive,,4718930,0,0.155,0,3.70917,8,4.5 +37803,1,0.16756,3,0,0,1,1,,3,1,N I 75,,1592010,21.13,21.298,0,,0.58,7 +15113,1,0.196541,1,0,0,1,1,FCD,3,1,N I 75/N I 75 CD,RAMP,1592605,0,0.197,0,,0.58,7 +37859,1,0.145692,1,0,0,1,1,ROF,3,1,N I 75/Ambassador Bridge,RAMP,4718919,0,0.146,0,,2.24,5 +15181,-1,0.272535,0,2,0,2,5,,3,1,S I 75 Service Drive,,1595509,0,0.273,0,6.540831,8,4.5 +37860,1,0.142238,2,0,0,1,1,ROF,3,1,N I 75/Ambassador Bridge,RAMP,4718919,0.146,0.288,0,,2.24,5 +37864,1,0.18589,2,0,0,1,1,RON,3,1,Ambassador Brg Trucks/S I 75,RAMP,4718920,0,0.186,0,,1.09,4 +37839,0,0.070924,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,3.311,3.381,0,1.702187,5,5 +15755,-1,0.258267,0,2,0,1,1,,3,1,S I 75,,1595106,22.054,22.312,0,,0.58,7 +21846,1,0.294291,1,0,0,1,1,RFF,3,1,S I 75 CD/W I 96,RAMP,4700030,0,0.294,0,,0.58,7 +22170,-1,0.274663,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704383,0.544,0.818,0,6.59191,6,4.5 +22174,-1,0.210659,0,2,0,2,5,DV2,3,1,Grand,Blvd,4704383,0,0.211,0,5.055817,8,4.5 +23368,0,0.197058,1,1,0,2,5,,3,1,20th,St,4705623,0,0.197,0,4.7294,8,4.5 +24252,1,0.347692,1,0,0,1,1,RFF,3,1,E I 96/N I 75,RAMP,4710310,0,0.348,0,,0.58,7 +24329,0,0.2736,1,1,0,2,5,,3,1,Jefferson,Ave,4710239,0,0.274,0,6.566389,8,4.5 +40023,-1,0.031895,0,2,0,2,3,,4,3,Orchard Lake,Rd,5499978,0,0.032,0,0.765472,3.7,5 +37870,1,0.110798,1,0,0,1,1,RON,3,1,Ambassador Bridge/S I 75,RAMP,4718923,0,0.111,0,,1.09,4 +30444,0,0.223409,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.361817,0.15,4 +30453,0,0.182651,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.383626,0.15,4 +30454,0,0.117353,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.816472,0.15,4 +32485,0,0.34277,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.226487,0.15,4 +33804,0,0.09239,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.217359,0.15,4 +33884,0,0.147112,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.530697,0.15,4 +12098,0,0.303942,1,1,0,2,4,,3,1,Clark,St,1581210,1.048,1.352,0,7.294604,6,4.5 +12905,0,0.207239,2,2,0,2,4,,3,1,Clark,St,1581210,1.479,1.686,0,4.973725,6,4.5 +12998,0,0.189182,1,1,0,2,5,,3,1,Junction,St,1581110,0.612,0.801,0,4.540371,8,4.5 +13433,0,0.21629,2,2,1,2,3,,3,1,Fort,St,1585010,2.907,3.123,0,5.190966,5,5 +14686,-1,0.035167,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.54,0.575,0,0.844018,8,4.5 +14688,-1,0.135882,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.224,0.36,0,3.261164,8,4.5 +14702,0,0.293904,1,1,0,2,5,,3,1,Scotten,St,1590108,0,0.294,0,7.053693,8,4.5 +14938,-1,0.331459,0,4,0,1,1,,3,1,S I 75,,1595106,20.04,20.371,0,,0.58,7 +15590,1,0.420682,4,0,0,1,1,,3,1,N I 75,,1592010,20.304,20.724,0,,0.58,7 +15721,1,0.056246,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.645,1.701,0,1.349911,8,4.5 +15763,-1,0.421414,0,4,0,1,1,,3,1,S I 75,,1595106,20.371,20.793,0,,0.58,7 +15767,1,0.136016,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.351,1.487,0,3.264377,8,4.5 +20595,0,0.141391,2,2,0,2,4,,3,1,Jefferson,Ave,4302169,20.172,20.313,0,3.393386,6,4.5 +33364,0,0.281142,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.747414,0.15,4 +33366,0,0.221747,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.321929,0.15,4 +12190,0,0.321671,1,1,0,2,5,,3,1,Junction,St,1581110,0,0.322,0,7.720098,8,4.5 +12191,0,0.149046,1,1,0,2,5,,3,1,Junction,St,1581110,0.322,0.471,0,3.577108,8,4.5 +13434,0,0.134595,2,2,1,2,3,,3,1,Fort,St,1585010,2.773,2.907,0,3.230269,5,5 +11938,0,0.0812,2,2,0,2,5,,3,1,Junction,St,1581110,0.471,0.552,0,1.948804,8,4.5 +13303,0,0.059934,2,2,0,2,5,,3,1,Junction,St,1581110,0.552,0.612,0,1.438412,8,4.5 +30611,0,0.147173,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.532151,0.15,4 +30612,0,0.133366,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.200776,0.15,4 +32038,0,0.182751,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.386029,0.15,4 +32419,0,0.243334,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.840013,0.15,4 +32782,0,0.359681,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.632335,0.15,4 +33808,0,0.41446,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.947039,0.15,4 +32036,0,0.138011,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.312258,0.15,4 +14687,-1,0.17975,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.36,0.54,0,4.314005,8,4.5 +15124,1,0.153062,1,0,0,1,1,ROF,3,1,N I 75/Clark,RAMP,1592601,0,0.153,0,,2.24,5 +15129,1,0.118376,1,0,0,1,1,RON,3,1,Clark/S I 75,RAMP,1595304,0,0.118,0,,1.09,4 +15495,1,0.158382,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.487,1.645,0,3.801157,8,4.5 +12740,0,0.161914,2,2,0,2,4,,3,1,Clark,St,1581210,1.686,1.848,0,3.885936,6,4.5 +20390,0,0.217018,2,2,0,2,4,,3,1,Jefferson,Ave,4302169,20.313,20.53,0,5.208438,6,4.5 +12469,1,0.066569,2,0,0,2,4,DV2,3,1,Grand,Blvd,1581303,0.195,0.262,0,1.59765,6,4.5 +13431,0,0.231628,2,2,1,2,3,,3,1,Fort,St,1585010,3.269,3.5,0,5.559063,5,5 +14682,0,0.151454,1,1,0,2,5,,3,1,Lafayette,Blvd,1590407,0.805,0.957,0,3.634904,8,4.5 +14882,1,0.133225,1,0,0,1,1,ROF,3,1,S I 75/Clark,RAMP,1595305,0,0.133,0,,2.24,5 +15418,1,0.151987,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.927,2.079,0,3.647697,8,4.5 +15710,1,0.183333,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.744,1.927,0,4.399992,8,4.5 +37867,1,0.251428,1,0,0,1,1,RON,3,1,Ambassador Bridge/W I 96,RAMP,4718921,0,0.251,0,,1.09,4 +22173,-1,0.062936,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704383,0.211,0.274,0,1.51046,6,4.5 +30456,0,0.230322,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.527724,0.15,4 +32037,0,0.334845,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.03629,0.15,4 +33806,0,0.242631,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.823133,0.15,4 +33807,0,0.415523,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.972543,0.15,4 +11625,0,0.057907,2,2,0,2,4,,3,1,Clark,St,1581210,1.352,1.41,0,1.389774,6,4.5 +13432,0,0.145153,2,2,1,2,3,,3,1,Fort,St,1585010,3.123,3.269,0,3.483673,5,5 +14684,-1,0.032109,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.682,0.714,0,0.770614,8,4.5 +15357,1,0.172746,1,0,0,1,1,RON,3,1,Clark/N I 75,RAMP,1592602,0,0.173,0,,1.09,4 +13214,0,0.069238,2,2,0,2,4,,3,1,Clark,St,1581210,1.41,1.479,0,1.661705,6,4.5 +15431,1,0.042336,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,1.701,1.744,0,1.016061,8,4.5 +14685,-1,0.107236,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.575,0.682,0,2.573661,8,4.5 +14683,-1,0.090872,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.714,0.805,0,2.180929,8,4.5 +13430,0,0.017512,2,2,1,2,3,,3,1,Fort,St,1585010,3.5,3.518,0,0.42029,5,5 +12016,1,0.192381,2,0,0,2,4,DV2,3,1,Grand,Blvd,1581303,0.336,0.529,0,4.61715,6,4.5 +22171,-1,0.192824,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704383,0.351,0.544,0,4.627766,6,4.5 +12313,1,0.07484,2,0,0,2,4,DV2,3,1,Grand,Blvd,1581303,0.262,0.336,0,1.796171,6,4.5 +15701,1,0.017453,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,2.079,2.096,0,0.418861,8,4.5 +22172,-1,0.077569,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704383,0.274,0.351,0,1.861667,6,4.5 +14681,-1,0.016585,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.957,0.973,0,0.398033,8,4.5 +11727,0,0.0759,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.217,5.293,0,1.821611,5,5 +12032,1,0.112602,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.39,0.503,0,2.702454,5,5 +12329,0,0.199612,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.765,2.965,0,4.790681,5,5 +12906,0,0.219312,1,1,0,2,4,,3,1,Grand,Blvd,1581303,1.044,1.264,0,5.26348,6,4.5 +37818,-1,0.160543,0,4,0,1,1,,3,1,S I 75,,1595106,20.793,20.953,0,,0.58,7 +37820,-1,0.059379,0,4,0,1,1,,3,1,S I 75,,1595106,21.125,21.184,0,,0.58,7 +13132,0,0.240284,1,1,0,2,4,,3,1,Grand,Blvd,1581303,0.804,1.044,0,5.766823,6,4.5 +37801,1,0.195167,4,0,0,1,1,,3,1,N I 75,,1592010,20.935,21.13,0,,0.58,7 +16279,0,0.240197,1,1,0,2,5,,3,1,Vinewood,St,1609505,0.469,0.709,0,5.764733,8,4.5 +16795,0,0.453723,1,1,0,2,5,,3,1,Vinewood,St,1609505,0.709,1.162,0,10.889363,8,4.5 +21278,-1,0.051876,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.273,0.325,0,1.245013,5,5 +32034,0,0.158778,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.810665,0.15,4 +33883,0,0.340176,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.16423,0.15,4 +11603,0,0.00915,1,1,0,2,5,,3,1,Scotten,St,1577306,0.719,0.729,0,0.219607,8,4.5 +11604,0,0.224066,1,1,0,2,5,,3,1,Scotten,St,1577306,0.495,0.719,0,5.377575,8,4.5 +12491,0,0.107355,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.658,2.765,0,2.57653,5,5 +24137,0,0.201937,1,1,0,2,5,,3,1,Toledo,St,4711260,0,0.202,0,4.84649,8,4.5 +12553,0,0.225694,1,1,0,2,4,,3,1,Clark,St,1581210,0.631,0.857,0,5.416648,6,4.5 +21628,0,0.10749,1,1,0,2,5,,3,1,Toledo,St,4700069,0,0.108,0,2.579758,8,4.5 +12739,0,0.018021,1,1,0,2,4,,3,1,Clark,St,1581210,0.613,0.631,0,0.432514,6,4.5 +11605,0,0.056541,1,1,0,2,5,,3,1,Scotten,St,1577306,0.439,0.495,0,1.356994,8,4.5 +24136,0,0.071764,1,1,0,2,5,,3,1,Toledo,St,4711260,0.202,0.274,0,1.722344,8,4.5 +11730,0,0.070127,2,2,1,2,3,,3,1,Michigan,Ave,1577103,4.97,5.041,0,1.683037,5,5 +12470,1,0.076286,2,0,0,2,3,DV2,3,1,Grand,Blvd,1581303,1.464,1.54,0,1.830858,5,5 +12489,1,0.145141,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.178,0.323,0,3.483383,5,5 +16515,0,0.18883,1,1,0,2,5,,3,1,Vinewood,St,1609505,1.162,1.351,0,4.531911,8,4.5 +21430,-1,0.146619,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0,0.147,0,3.518847,5,5 +22168,-1,0.071686,0,2,0,2,3,DV2,3,1,Grand,Blvd,4704385,0.208,0.28,0,1.720462,5,5 +23652,0,0.157467,1,1,0,2,5,,3,1,24th,St,4705563,0.959,1.116,0,3.779216,8,4.5 +11731,0,0.089061,2,2,1,2,3,,3,1,Michigan,Ave,1577103,4.881,4.97,0,2.137462,5,5 +12923,0,0.098036,2,2,0,2,4,,3,1,Grand,Blvd,1581907,0.068,0.166,0,2.352871,6,4.5 +12192,0,0.112614,2,2,0,2,3,,3,1,Grand,Blvd,1581303,1.54,1.653,0,2.702725,5,5 +12653,0,0.011764,2,2,0,2,3,,3,1,Grand,Blvd,1581907,0.166,0.178,0,0.282344,5,5 +11728,0,0.159042,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.058,5.217,0,3.81702,5,5 +12637,1,0.200702,2,0,0,2,4,DV2,3,1,Grand,Blvd,1581303,1.264,1.464,0,4.816844,6,4.5 +22169,-1,0.208324,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704385,0,0.208,0,4.999779,6,4.5 +11729,0,0.017403,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.041,5.058,0,0.417669,5,5 +12206,1,0.06754,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.323,0.39,0,1.62096,5,5 +21431,-1,0.126771,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.147,0.273,0,3.042516,5,5 +23318,0,0.110689,1,1,0,2,5,,3,1,24th,St,4705563,1.116,1.227,0,2.656541,8,4.5 +32032,0,0.141135,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.38723,0.15,4 +33802,0,0.159557,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.829369,0.15,4 +23505,0,0.011314,1,1,0,2,5,,3,1,24th,St,4705563,1.227,1.238,0,0.271546,8,4.5 +32033,0,0.075848,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.820356,0.15,4 +11644,0,0.151023,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,3.04,3.191,0,3.624559,5,5 +37821,-1,0.331832,0,3,0,1,1,,3,1,S I 75,,1595106,21.184,21.516,0,,0.58,7 +37843,-1,0.225293,0,2,0,2,5,,3,1,S I 75 Service Drive,,1590407,1.18,1.405,0,5.407043,8,4.5 +37845,-1,0.254669,0,2,0,2,7,,3,1,22nd,St,1590407,1.553,1.807,0,6.112046,7,4.5 +12034,0,0.075584,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,2.965,3.04,0,1.81401,5,5 +30450,0,0.045182,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.084367,0.15,4 +37832,-1,0.246906,0,2,0,1,1,,3,1,W I 96,,1577405,5.134,5.38,0,,0.58,7 +11726,0,0.144528,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.293,5.437,0,3.46866,5,5 +12963,-1,0.549522,0,2,0,1,1,,3,1,W I 96,,1577405,4.584,5.134,0,,0.58,7 +13034,1,0.40564,2,0,0,1,1,,3,1,E I 96,,1577404,4.621,5.026,0,,0.58,7 +37800,1,0.211187,4,0,0,1,1,,3,1,N I 75,,1592010,20.724,20.935,0,,0.58,7 +14692,1,0.318731,2,0,0,1,1,RFF,3,1,E I 96/N I 75,RAMP,1590406,0,0.319,0,,0.58,7 +17053,0,0.110858,1,1,0,2,5,,3,1,Lawton,St,1608601,0,0.111,0,2.660596,8,4.5 +24427,1,0.357955,2,0,0,2,5,,3,1,E I 96 Service Drive,,4710513,0.448,0.806,0,8.590929,8,4.5 +21847,1,0.157478,2,0,0,1,1,RFF,3,1,S I 75/W I 96,RAMP,4700030,0.294,0.452,0,,0.58,7 +24438,1,0.010618,2,0,0,2,5,,3,1,E I 96 Service Drive,,4710513,0.438,0.448,0,0.254821,8,4.5 +13306,1,0.20488,1,0,0,1,1,ROF,3,1,W I 96/Michigan,RAMP,1581402,0,0.205,0,,2.24,5 +11725,0,0.049994,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.56,5.61,0,1.199852,5,5 +22369,0,0.336066,2,2,0,1,3,,3,1,Ambassador,Brg,4701342,0.18,0.516,0,,5,5 +33164,0,0.115492,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.771815,0.15,4 +33165,0,0.17023,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.085524,0.15,4 +39938,1,0.226471,2,0,0,2,7,,3,1,E I 96 Service Drive,,4710513,0.806,1.033,0,5.435299,7,4.5 +22370,0,0.179972,2,2,0,1,3,,3,1,Ambassador,Brg,4701342,0,0.18,0,,5,5 +24328,0,0.023058,1,1,0,2,5,,3,1,Jefferson,Ave,4710239,0.274,0.297,0,0.553391,8,4.5 +39923,1,0.029729,1,0,0,2,3,,3,1,DIBC Customs Plaza/21st,,4718956,0,0.03,0,0.713504,5,5 +37857,1,0.072893,1,0,0,1,1,ROF,3,1,S I 75/Ambassador Bridge,RAMP,4718927,0.195,0.268,0,,2.24,5 +37852,1,0.118416,1,0,0,1,1,ROF,3,1,N I 75/Vernor,RAMP,4718922,0,0.118,0,,2.24,5 +37856,1,0.255419,1,0,0,1,1,ROF,3,1,E I 96/Ambassador Bridge,RAMP,4718926,0,0.255,0,,2.24,5 +24557,0,0.098817,2,2,1,2,3,,3,1,Fort,St,1585010,3.871,3.97,0,2.371619,5,5 +13428,0,0.017593,2,2,1,2,3,,3,1,Fort,St,1585010,3.97,3.987,0,0.42222,5,5 +34024,0,0.15289,2,2,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4 +11722,0,0.228336,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.012,6.24,0,5.480071,5,5 +12492,0,0.30868,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,3.503,3.811,0,7.408324,5,5 +15121,1,0.113496,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.028,0.141,0,2.723901,8,4.5 +15171,-1,0.644833,0,3,0,1,1,,3,1,S I 75,,1595106,22.312,22.957,0,,0.58,7 +15402,-1,0.192148,0,2,0,2,5,,3,1,S I 75 Service Drive,,1595509,0.486,0.678,0,4.611545,8,4.5 +15416,1,0.163673,1,0,0,1,1,RON,3,1,12th/S I 75 CD,RAMP,1595103,0,0.164,0,,1.09,4 +15546,1,0.437795,3,0,0,1,1,,3,1,N I 75,,1592010,22.344,22.782,0,,0.58,7 +15750,-1,0.176257,0,1,0,1,1,ROF,3,1,N I 75 CD/12th,RAMP,1595102,0,0.176,0,,2.24,5 +16436,0,0.164298,2,2,0,2,5,,3,1,Bagley,St,4718918,0.667,0.831,0,3.943144,8,4.5 +16705,0,0.216757,2,2,0,2,5,,3,1,Bagley,St,4718918,0.213,0.429,0,5.202176,8,4.5 +21663,1,0.260853,2,0,0,1,1,FCD,3,1,N I 75 CD,RAMP,4700028,0.1,0.361,0,,0.58,7 +22000,-1,0.449037,0,2,0,1,1,FCD,3,1,S I 75 CD,RAMP,4700029,0.298,0.747,0,,0.58,7 +22389,0,0.109363,1,1,0,2,4,,3,1,Lafayette,Blvd,4718963,0.083,0.192,0,2.624719,6,4.5 +22575,-1,0.34772,0,2,0,2,5,,3,1,14th,St,4705601,0,0.348,0,8.345281,8,4.5 +23131,-1,0.26246,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4705605,0.477,0.739,0,6.299049,5,5 +23912,1,0.257659,2,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706959,0.514,0.772,0,6.183826,5,5 +24270,0,0.074086,1,1,0,2,5,,3,1,20th,St,4711899,0,0.074,0,1.77806,8,4.5 +37827,-1,0.538075,0,3,0,1,1,,3,1,S I 75,,1595106,21.516,22.054,0,,0.58,7 +37831,1,0.321504,1,0,0,1,1,,3,1,E I 96,,1577404,5.429,5.75,0,,0.58,7 +16724,0,0.082331,2,2,0,2,5,,3,1,Bagley,St,4718918,0.13,0.213,0,1.975951,8,4.5 +37842,-1,0.206858,0,2,0,2,5,,3,1,Lafayette,Blvd,1590407,0.973,1.18,0,4.964593,8,4.5 +30357,0,0.256573,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.157758,0.15,4 +30449,0,0.334926,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.038221,0.15,4 +33169,0,0.181591,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.35818,0.15,4 +37828,1,0.116873,1,0,0,1,1,ROF,3,1,E I 96/22nd,RAMP,4719004,0,0.117,0,,2.24,5 +37829,1,0.402563,2,0,0,1,1,,3,1,E I 96,,1577404,5.026,5.429,0,,0.58,7 +37838,0,0.119431,1,1,0,2,3,,3,1,Vernor,Hwy,1581909,3.191,3.311,0,2.866354,5,5 +39939,1,0.013314,2,0,0,2,7,,3,1,E I 96 Service Drive,,4710513,1.033,1.046,0,0.319538,7,4.5 +39941,0,0.018232,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0,0.018,0,0.437576,8.5,4.5 +39919,0,0.167017,1,1,0,2,5,,3,1,21st,St,4718958,0,0.167,0,4.008401,8,4.5 +37816,1,0.532389,3,0,0,1,1,,3,1,N I 75,,1592010,21.586,22.118,0,,0.58,7 +37841,1,0.183792,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595101,2.096,2.28,0,4.41101,8,4.5 +16410,0,0.074687,1,1,0,2,5,,3,1,Bagley,St,4718918,0,0.075,0,1.792498,8,4.5 +23295,0,0.103221,1,1,0,2,5,,3,1,20th,St,4718959,0,0.103,0,2.477299,8,4.5 +37836,-1,0.443997,0,1,0,1,1,,3,1,W I 96,,1577405,5.38,5.824,0,,0.58,7 +22699,0,0.059094,1,1,0,2,5,,3,1,20th,St,4718959,0.179,0.238,0,1.418262,8,4.5 +22973,0,0.075343,1,1,0,2,5,,3,1,20th,St,4718959,0.103,0.179,0,1.808234,8,4.5 +17029,0,0.055724,1,1,0,2,5,,3,1,Bagley,St,4718918,0.075,0.13,0,1.337368,8,4.5 +22390,0,0.0827,1,1,0,2,4,,3,1,Lafayette,Blvd,4718963,0,0.083,0,1.984808,6,4.5 +30441,0,0.078299,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.879168,0.15,4 +14957,-1,0.213543,0,2,0,2,5,,3,1,S I 75 Service Drive,,1595509,0.273,0.486,0,5.125032,8,4.5 +21923,1,0.099913,2,0,0,1,1,FCD,3,1,N I 75 CD,RAMP,4700028,0,0.1,0,,0.58,7 +21999,-1,0.29855,0,2,0,1,1,FCD,3,1,S I 75 CD,RAMP,4700029,0,0.298,0,,0.58,7 +23067,-1,0.237118,0,2,0,2,3,,3,1,14th,St,4705601,0.469,0.706,0,5.690834,5,5 +23402,-1,0.088435,0,2,0,2,3,,3,1,14th,St,4705601,0.38,0.469,0,2.12244,5,5 +30361,0,0.170094,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.08225,0.15,4 +30359,0,0.089272,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.142532,0.15,4 +11723,0,0.072069,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.94,6.012,0,1.72966,5,5 +13309,-1,0.119712,0,1,0,2,3,,3,1,Vernor,Hwy,1581408,0.034,0.153,0,2.873078,5,5 +17016,-1,0.025218,0,1,0,2,3,,3,1,Vernor,Hwy,1608206,0.272,0.297,0,0.605239,5,5 +22719,1,0.112101,1,0,0,2,3,,3,1,Vernor,Hwy,4704854,0,0.112,0,2.690418,5,5 +30445,0,0.15626,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.750234,0.15,4 +30447,0,0.084828,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.035862,0.15,4 +30448,0,0.10943,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.626312,0.15,4 +13308,0,0.033558,1,1,0,2,3,,3,1,Vernor,Hwy,1581408,0,0.034,0,0.805384,5,5 +30446,0,0.101321,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.4317,0.15,4 +15358,1,0.027515,1,0,0,2,5,,3,1,Vernor,Hwy,1595105,0,0.028,0,0.66037,8,4.5 +23579,-1,0.032808,0,2,0,2,3,,3,1,14th,St,4705601,0.348,0.38,0,0.78738,5,5 +23916,1,0.028175,2,0,0,2,5,,3,1,N I 75 Service Drive,,4706955,0,0.028,0,0.676211,8,4.5 +16175,0,0.215018,2,2,0,2,5,,3,1,Bagley,St,4718918,0.443,0.657,0,5.160432,8,4.5 +22387,0,0.21719,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.312,0.529,0,5.21256,6,4.5 +23481,-1,0.344951,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4705605,0.132,0.477,0,8.278828,5,5 +23913,1,0.34391,2,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706959,0.171,0.514,0,8.25385,5,5 +33166,0,0.287944,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.91065,0.15,4 +33803,0,0.215453,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.170863,0.15,4 +22388,0,0.120155,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.192,0.312,0,2.883727,6,4.5 +16449,0,0.013069,2,2,0,2,5,,3,1,Bagley,St,4718918,0.429,0.443,0,0.313653,8,4.5 +22386,0,0.010183,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.529,0.539,0,0.244402,6,4.5 +17055,0,0.009601,2,2,0,2,5,,3,1,Bagley,St,4718918,0.657,0.667,0,0.230421,8,4.5 +11720,0,0.17167,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.252,6.423,0,4.120072,5,5 +12250,0,0.185584,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.545,0.73,0,4.454021,6,4.5 +15106,1,0.212786,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.248,0.461,0,5.106873,8,4.5 +15109,1,0.24834,1,0,0,1,1,RON,3,1,12th/N I 75,RAMP,1592607,0,0.248,0,,1.09,4 +15316,-1,0.20199,0,2,0,2,5,,3,1,Henry,Dr,1595509,0.744,0.946,0,4.847767,8,4.5 +15345,1,0.108738,1,0,0,1,1,RFF,3,1,N I 75 CD/N I 75,RAMP,1592606,0,0.109,0,,0.58,7 +22850,-1,0.089601,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4705605,0.739,0.829,0,2.150416,5,5 +23188,1,0.208776,1,0,0,1,1,ROF,3,1,S I 75/12th,RAMP,4705635,0,0.209,0,,2.24,5 +23911,1,0.095184,2,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706959,0.772,0.867,0,2.284424,5,5 +11721,0,0.011882,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.24,6.252,0,0.285158,5,5 +14919,-1,0.043486,0,2,0,2,5,,3,1,Henry,Dr,1595509,0.7,0.744,0,1.04367,8,4.5 +15350,1,0.078349,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.141,0.219,0,1.880375,8,4.5 +23563,1,0.079793,4,0,0,2,3,,3,1,Rosa Parks,Blvd,4705605,0.846,0.925,0,1.91504,5,5 +15153,-1,0.022148,0,2,0,2,5,,3,1,S I 75 Service Drive,,1595509,0.678,0.7,0,0.531556,8,4.5 +15115,1,0.028973,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.219,0.248,0,0.69534,8,4.5 +22556,0,0.016855,2,2,0,2,3,,3,1,Rosa Parks,Blvd,4705605,0.829,0.846,0,0.404527,5,5 +11719,0,0.075951,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.423,6.499,0,1.822834,5,5 +12247,0,0.076602,1,1,1,2,4,,3,1,Trumbull,St,1577506,0.73,0.807,0,1.838444,6,4.5 +15289,1,0.155719,3,0,0,1,1,,3,1,N I 75,,1592010,22.782,22.938,0,,0.58,7 +14865,1,0.013089,2,0,0,2,5,,3,1,N I 75 Service Drive,,1595105,0.461,0.474,0,0.314131,8,4.5 +15079,-1,0.073636,0,2,0,2,5,,3,1,Henry,Dr,1595509,0.946,1.019,0,1.767253,8,4.5 +11709,0,0.061609,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.307,7.369,0,1.47862,6,5 +12294,1,0.075538,2,0,0,2,4,,1,1,Grand River,Ave,1577408,12.468,12.544,0,1.812901,8,4.5 +12592,0,0.071516,1,1,0,2,3,,1,1,Cass,Ave,1577605,0,0.072,0,1.716375,6,5 +12908,0,0.086753,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.297,0.383,0,2.082061,8.5,4.5 +12980,-1,0.073502,0,3,0,1,2,,1,1,N M 10,,1577510,12.282,12.356,0,,0.32,8.5 +13380,1,0.093216,3,0,0,1,2,,1,1,S M 10,,1577509,12.281,12.374,0,,0.32,8.5 +13415,0,0.052382,2,2,0,2,4,,1,1,Fort,St,1585010,5.456,5.508,0,1.257173,8,4.5 +13834,-1,0.080199,0,4,0,2,3,,1,1,Congress,St,1585505,0.134,0.214,0,1.92478,6,5 +13984,-1,0.076307,0,3,0,2,5,,1,1,State,St,4718987,0.029,0.105,0,1.831368,8.5,4.5 +14005,-1,0.057254,0,3,0,2,4,,1,1,Clifford,St,1589707,0.612,0.669,0,1.374104,8,4.5 +14306,1,0.123418,3,0,0,2,3,,1,1,Larned,St,1585504,0,0.123,0,2.962029,6,5 +21410,1,0.053176,2,0,0,2,4,,1,1,Park,Ave,4700018,0.271,0.325,0,1.27623,8,4.5 +22375,0,0.054323,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.474,1.528,0,1.303745,8,4.5 +23102,0,0.231605,1,1,0,2,4,,1,1,Civic Center,Dr,4705626,0.128,0.359,0,5.55852,8,4.5 +30467,0,0.123137,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.955287,0.15,4 +33134,0,0.062967,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.511204,0.15,4 +33136,0,0.037067,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.889611,0.15,4 +33206,0,0.096996,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.327916,0.15,4 +33849,0,0.117466,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.819187,0.15,4 +11714,0,0.138301,2,2,1,2,3,,1,1,Michigan,Ave,1577103,6.833,6.971,0,3.319218,6,5 +11891,1,0.358967,3,0,0,1,2,,1,1,S M 10,,1577509,11.741,12.099,0,,0.32,8.5 +40122,0,0.245271,2,2,1,2,4,,3,2,Newburgh,Rd,4710394,9.34,9.586,0,5.886503,6,4.5 +12194,0,0.070197,1,1,1,2,4,,1,1,3rd,St,1581602,0.071,0.141,0,1.684724,8,4.5 +12253,0,0.193122,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.201,0.394,0,4.634926,6,4.5 +12555,0,0.06919,1,1,0,2,4,,1,1,1st,St,1581603,0,0.069,0,1.660559,8,4.5 +12827,0,0.064764,1,1,0,2,5,,3,1,6th,St,1581510,0.136,0.201,0,1.554336,8,4.5 +12990,-1,0.478214,0,3,0,1,2,,1,1,N M 10,,1577510,11.629,12.107,0,,0.32,8.5 +13135,0,0.065864,1,1,0,2,5,,3,1,6th,St,1581510,0.07,0.136,0,1.580736,8,4.5 +13418,0,0.068874,2,2,0,2,3,,1,1,Fort,St,1585010,5.241,5.31,0,1.652976,6,5 +13422,0,0.125268,2,2,0,2,3,,3,1,Fort,St,1585010,4.906,5.031,0,3.00642,5,5 +13449,1,0.06888,2,0,0,2,5,,1,1,5th,St,1585008,0.132,0.201,0,1.653128,8.5,4.5 +13450,1,0.13173,2,0,0,1,2,ROF,1,1,S M 10/Howard,RAMP,1585008,0,0.132,0,,3.07,5 +13617,0,0.065287,2,2,0,2,4,,1,1,Bagley,St,1584404,0,0.065,0,1.566897,8,4.5 +13629,1,0.072234,2,0,0,2,9,,1,1,Plum,St,4708762,0,0.072,0,1.733617,8.5,4.5 +14427,1,0.18843,1,0,0,1,2,RON,1,1,Abbott/N M 10,RAMP,1585405,0,0.188,0,,1.09,4 +14694,0,0.069648,1,1,0,2,5,,1,1,2nd,St,1590404,0,0.07,0,1.671553,8.5,4.5 +14696,-1,0.07027,0,2,0,2,5,,1,1,4th,St,1590403,0.068,0.138,0,1.686491,8.5,4.5 +14698,0,0.099616,1,1,0,2,5,,3,1,Cabacier,St,1590310,0,0.1,0,2.390794,8,4.5 +22379,0,0.074986,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.185,1.26,0,1.799655,8,4.5 +22382,0,0.075108,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.974,1.049,0,1.802594,6,4.5 +23700,0,0.065252,2,2,0,2,5,,3,1,Howard,St,4705597,0.511,0.577,0,1.566052,8,4.5 +24317,-1,0.012896,0,2,0,2,4,DV2,3,1,Jefferson,Ave,4710239,1.744,1.757,0,0.309512,6,4.5 +24531,1,0.326308,2,0,0,2,4,DV2,3,1,Jefferson,Ave,4708422,0,0.326,0,7.831402,6,4.5 +30462,0,0.072558,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.741396,0.15,4 +30466,0,0.079535,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.908831,0.15,4 +30613,0,0.156269,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.750449,0.15,4 +31948,0,0.150436,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.610475,0.15,4 +33163,0,0.372419,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.938059,0.15,4 +33182,0,0.040265,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.966363,0.15,4 +33187,0,0.152222,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.65332,0.15,4 +33189,0,0.116297,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.791134,0.15,4 +33193,0,0.074568,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.78963,0.15,4 +12255,0,0.065047,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.071,0.136,0,1.561119,6,4.5 +13424,0,0.080736,2,2,1,2,3,,3,1,Fort,St,1585010,4.728,4.808,0,1.937659,5,5 +13425,0,0.215821,2,2,1,2,3,,3,1,Fort,St,1585010,4.512,4.728,0,5.179707,5,5 +22384,0,0.080681,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.746,0.827,0,1.93634,6,4.5 +22697,0,0.221273,1,1,0,2,7,,3,1,Howard,St,4705597,0.29,0.511,0,5.310542,7,4.5 +24321,0,0.046062,2,2,1,2,4,,3,1,Jefferson,Ave,4710239,1.698,1.744,0,1.105498,6,4.5 +24323,0,0.176383,2,2,1,2,4,,3,1,Jefferson,Ave,4710239,1.37,1.546,0,4.233188,6,4.5 +32786,0,0.16743,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.018321,0.15,4 +33185,0,0.177349,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.256381,0.15,4 +33844,0,0.172389,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.137344,0.15,4 +23702,-1,0.061512,0,3,0,2,4,DV2,3,1,Rosa Parks,Blvd,4705605,0,0.062,0,1.4763,6,4.5 +23915,1,0.100173,2,0,0,2,4,DV2,3,1,Rosa Parks,Blvd,4706959,0,0.1,0,2.404142,6,4.5 +24326,1,0.050614,2,0,0,2,4,DV2,3,1,Rosa Parks,Blvd,4710239,1.32,1.37,0,1.214741,6,4.5 +13426,0,0.01006,2,2,1,2,3,,3,1,Fort,St,1585010,4.502,4.512,0,0.241445,5,5 +12254,0,0.064671,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.136,0.201,0,1.552102,6,4.5 +24322,0,0.151359,2,2,1,2,4,,3,1,Jefferson,Ave,4710239,1.546,1.698,0,3.63262,6,4.5 +30461,0,0.070702,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.696838,0.15,4 +13423,0,0.097372,2,2,0,2,3,,3,1,Fort,St,1585010,4.808,4.906,0,2.336922,5,5 +22383,0,0.146596,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,0.827,0.974,0,3.518314,6,4.5 +12256,0,0.07093,1,1,0,2,4,,3,1,Trumbull,St,1577506,0,0.071,0,1.702319,6,4.5 +33194,0,0.07963,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.911111,0.15,4 +11717,0,0.191161,2,2,1,2,3,,3,1,Michigan,Ave,1577103,6.544,6.735,0,4.587864,5,5 +11893,1,0.166712,3,0,0,1,2,,1,1,S M 10,,1577509,11.394,11.56,0,,0.32,8.5 +12994,-1,0.111387,0,3,0,1,2,,1,1,N M 10,,1577510,11.517,11.629,0,,0.32,8.5 +13038,-1,0.092648,0,3,0,1,2,,1,1,N M 10,,1577510,11.425,11.517,0,,0.32,8.5 +13451,1,0.228091,1,0,0,1,1,RFF,3,1,N I 75 CD/S M 10,RAMP,1585007,0,0.228,0,,0.32,8.5 +40914,1,0.094232,2,0,0,2,4,,4,4,Jefferson,Ave,0,0,0,0,2.26156,4.5,4.5 +14469,1,0.277996,2,0,0,1,2,RON,1,1,Bagley/N M 10,RAMP,1585404,0,0.278,0,,1.09,4 +15477,1,0.198009,3,0,0,1,1,,1,1,N I 75,,1592010,23.145,23.343,0,,0.32,8.5 +15555,1,0.192116,1,0,0,1,1,ROF,1,1,N I 75/Grand River,RAMP,1591110,0,0.192,0,,3.07,5 +16132,0,0.222415,1,1,0,2,5,,3,1,Bagley,St,4718918,0.912,1.134,0,5.337952,8,4.5 +23249,1,0.363946,2,0,0,1,2,ROF,1,1,S M 10/Bagley,RAMP,4705710,0,0.364,0,,3.07,5 +23532,-1,0.123477,0,1,0,2,5,,1,1,S M 10 Service Drive,,4705628,0,0.123,0,2.963448,8.5,4.5 +33192,0,0.158968,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.815222,0.15,4 +12252,0,0.064516,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.394,0.458,0,1.548378,6,4.5 +33172,0,0.069816,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.67559,0.15,4 +33170,0,0.044793,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.075024,0.15,4 +11897,1,0.05477,3,0,0,1,2,,1,1,S M 10,,1577509,11.339,11.394,0,,0.32,8.5 +13040,-1,0.179878,0,3,0,1,2,,2,1,N M 10,,1577510,11.245,11.425,0,,0.32,8.5 +13133,-1,0.113604,0,1,0,2,5,,3,1,Brooklyn,St,1581509,0.296,0.409,0,2.726494,8,4.5 +13452,1,0.318756,1,0,0,1,1,RFS,1,1,N I 75 CD/N M 10,RAMP,1585006,0,0.319,0,,0.22,6 +21246,1,0.033433,2,0,0,1,1,FCD,3,1,N I 75 CD,RAMP,4700028,0.742,0.775,0,,0.58,7 +16505,1,0.04205,1,0,0,2,5,,3,1,Elizabeth,St,1608305,0.151,0.193,0,1.009211,8,4.5 +11715,0,0.088241,2,2,1,2,3,,1,1,Michigan,Ave,1577103,6.745,6.833,0,2.117792,6,5 +11892,1,0.180078,3,0,0,1,2,,1,1,S M 10,,1577509,11.56,11.741,0,,0.32,8.5 +12638,0,0.193521,1,1,0,2,5,,3,1,6th,St,1581510,0.201,0.395,0,4.64451,8,4.5 +12394,0,0.034015,1,1,0,2,5,,1,1,6th,St,1581510,0.395,0.429,0,0.816356,8.5,4.5 +11716,0,0.009429,2,2,1,2,3,,1,1,Michigan,Ave,1577103,6.735,6.745,0,0.226291,6,5 +15557,1,0.067146,2,0,0,1,1,RFF,1,1,N M 10/N I 75,RAMP,1591109,0.23,0.297,0,,0.32,8.5 +15559,1,0.148486,1,0,0,1,1,RFS,1,1,N M 10/N I 75,RAMP,1591109,0.081,0.23,0,,0.22,6 +33195,0,0.121528,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.916667,0.15,4 +15560,1,0.08124,1,0,0,1,1,RFF,1,1,N M 10/N I 75,RAMP,1591109,0,0.081,0,,0.32,8.5 +40913,1,0.027117,2,0,0,2,4,,4,4,Jefferson,Ave,0,0,0,0,0.650813,4.5,4.5 +13215,1,0.058012,2,0,0,2,4,DV2,1,1,3rd,St,1581602,0.65,0.708,0,1.392295,8,4.5 +12051,1,0.025078,2,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0,0.025,0,0.601883,8.5,4.5 +11941,1,0.054661,2,0,0,2,4,DV2,1,1,3rd,St,1581602,0.596,0.65,0,1.311858,8,4.5 +13419,0,0.065562,2,2,0,2,3,,1,1,Fort,St,1585010,5.176,5.241,0,1.573494,6,5 +24314,-1,0.133602,0,2,0,2,4,DV2,3,1,Jefferson,Ave,4710239,1.86,1.993,0,3.206442,6,4.5 +24358,1,0.026107,1,0,0,1,2,ROF,3,1,S M 10/Joe Louis Parking,RAMP,4718279,0,0.026,0,,3.07,5 +24514,1,0.128541,1,0,0,1,2,ROF,3,1,S M 10/Jefferson,RAMP,4718278,0.179,0.307,0,,3.07,5 +13421,0,0.075869,2,2,0,2,3,,3,1,Fort,St,1585010,5.031,5.107,0,1.820862,5,5 +13448,1,0.070197,2,0,0,2,5,,1,1,5th,St,1585008,0.201,0.271,0,1.684725,8.5,4.5 +22380,0,0.058659,1,1,1,2,4,,1,1,Lafayette,Blvd,4718963,1.127,1.185,0,1.407815,8,4.5 +24315,-1,0.103207,0,2,0,2,4,DV2,3,1,Jefferson,Ave,4710239,1.757,1.86,0,2.476957,6,4.5 +13134,0,0.07046,1,1,0,2,5,,3,1,6th,St,1581510,0,0.07,0,1.691047,8,4.5 +22381,0,0.078069,1,1,1,2,4,,3,1,Lafayette,Blvd,4718963,1.049,1.127,0,1.873647,6,4.5 +13420,0,0.068998,2,2,0,2,3,,1,1,Fort,St,1585010,5.107,5.176,0,1.65595,6,5 +14695,-1,0.070872,0,2,0,2,5,,1,1,4th,St,1590403,0.138,0.209,0,1.700927,8.5,4.5 +11888,1,0.131301,3,0,0,1,2,,1,1,S M 10,,1577509,12.15,12.281,0,,0.32,8.5 +12982,-1,0.17565,0,3,0,1,2,,1,1,N M 10,,1577510,12.107,12.282,0,,0.32,8.5 +13410,1,0.155758,1,0,0,1,2,ROF,1,1,S M 10/Larned,RAMP,1585101,0,0.156,0,,3.07,5 +13839,0,0.067133,2,2,0,2,5,,1,1,Congress,St,1585505,0,0.067,0,1.611187,8.5,4.5 +14387,1,0.167881,1,0,0,1,2,RON,1,1,Congress/N M 10,RAMP,1585406,0,0.168,0,,1.09,4 +22774,0,0.043363,1,1,0,2,4,,1,1,3rd,St,4705626,0.084,0.128,0,1.040712,8,4.5 +24098,1,0.178922,1,0,0,1,2,ROF,3,1,S M 10/Jefferson,RAMP,4718278,0,0.179,0,,3.07,5 +24313,-1,0.195319,0,1,0,2,4,DV2,1,1,Jefferson,Ave,4710239,1.993,2.189,0,4.687652,8,4.5 +24530,1,0.100746,1,0,0,2,4,DV2,1,1,Jefferson,Ave,4708422,0.326,0.427,0,2.417893,8,4.5 +23043,-1,0.084234,0,1,0,2,4,,3,1,Wayne,St,4705626,0,0.084,0,2.021623,6,4.5 +11890,1,0.050347,3,0,0,1,2,,1,1,S M 10,,1577509,12.099,12.15,0,,0.32,8.5 +12193,0,0.070783,1,1,0,2,5,,1,1,3rd,St,1581602,0,0.071,0,1.698802,8.5,4.5 +13835,-1,0.012027,0,4,0,2,3,,1,1,Congress,St,1585505,0.122,0.134,0,0.28865,6,5 +13836,-1,0.054436,0,4,0,2,5,,1,1,Congress,St,1585505,0.067,0.122,0,1.306465,8.5,4.5 +11712,0,0.158711,2,2,1,2,3,,1,1,Michigan,Ave,1577103,6.988,7.146,0,3.809062,6,5 +12314,1,0.067081,2,0,0,2,4,,1,1,1st,St,1581603,0.305,0.372,0,1.609944,8,4.5 +12345,0,0.062113,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.222,12.284,0,1.490704,6,5 +12396,0,0.057369,2,2,0,2,5,,1,1,Washington,Blvd,1581607,0.23,0.287,0,1.376859,8.5,4.5 +12438,0,0.053698,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.484,0.538,0,1.288763,8,4.5 +12537,0,0.063466,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.264,0.328,0,1.523175,6,5 +12828,1,0.047571,3,0,0,2,4,DV2,1,1,3rd,St,1581602,0.385,0.433,0,1.141707,8,4.5 +13614,0,0.075169,2,2,0,2,4,,1,1,Bagley,St,1584404,0.217,0.292,0,1.804048,8,4.5 +13619,0,0.07112,1,1,0,2,5,,1,1,Plaza,Dr,4718975,0,0.071,0,1.706881,8.5,4.5 +13627,0,0.06226,2,2,0,2,4,,1,1,Adams,Ave,1584401,0.039,0.101,0,1.494244,8,4.5 +16506,0,0.064481,1,1,0,2,5,,1,1,2nd,St,1608101,0,0.065,0,1.547555,8.5,4.5 +22186,-1,0.042494,0,3,0,2,4,DV2,1,1,3rd,St,4704292,0.256,0.298,0,1.019847,8,4.5 +22378,0,0.068519,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.26,1.329,0,1.644464,8,4.5 +22791,0,0.068538,1,1,0,2,5,,1,1,Howard,St,4705597,0.724,0.792,0,1.644902,8.5,4.5 +33138,0,0.057017,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.368418,0.15,4 +33176,0,0.096485,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.315638,0.15,4 +33198,0,0.095929,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.302289,0.15,4 +33200,0,0.037675,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.904207,0.15,4 +33203,0,0.141558,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.397386,0.15,4 +33845,0,0.118075,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.833796,0.15,4 +13000,1,0.113534,3,0,0,2,4,DV2,1,1,3rd,St,1581602,0.272,0.385,0,2.724812,8,4.5 +13310,1,0.064482,3,0,0,2,4,DV2,1,1,3rd,St,1581602,0.207,0.272,0,1.547559,8,4.5 +16850,0,0.101342,2,2,0,2,5,,1,1,Abbott,St,1608010,0,0.101,0,2.432219,8.5,4.5 +22187,-1,0.121723,0,3,0,2,4,DV2,1,1,3rd,St,4704292,0.134,0.256,0,2.921344,8,4.5 +22188,-1,0.064627,0,3,0,2,4,DV2,1,1,3rd,St,4704292,0.069,0.134,0,1.551038,8,4.5 +23403,0,0.083856,2,2,0,2,5,,1,1,Howard,St,4705597,0.626,0.709,0,2.012549,8.5,4.5 +33186,0,0.115571,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.773707,0.15,4 +33190,0,0.108895,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.613471,0.15,4 +14697,-1,0.067647,0,2,0,2,5,,1,1,4th,St,1590403,0,0.068,0,1.623517,8.5,4.5 +23364,1,0.049042,2,0,0,2,5,,1,1,Howard,St,4705597,0.577,0.626,0,1.17701,8.5,4.5 +11713,0,0.016593,2,2,1,2,3,,1,1,Michigan,Ave,1577103,6.971,6.988,0,0.398231,6,5 +33188,0,0.075732,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.817557,0.15,4 +11940,1,0.066232,3,0,0,2,4,DV2,1,1,3rd,St,1581602,0.141,0.207,0,1.589572,8,4.5 +22189,-1,0.069259,0,3,0,2,4,DV2,1,1,3rd,St,4704292,0,0.069,0,1.662221,8,4.5 +33180,0,0.050933,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.222397,0.15,4 +33183,0,0.063402,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.521647,0.15,4 +23068,0,0.014155,2,2,0,2,5,,1,1,Howard,St,4705597,0.709,0.724,0,0.339721,8.5,4.5 +16784,0,0.068537,1,1,0,2,5,,1,1,Abbott,St,1608010,0.115,0.184,0,1.644885,8.5,4.5 +16569,0,0.014131,2,2,0,2,5,,1,1,Abbott,St,1608010,0.101,0.115,0,0.339136,8.5,4.5 +33199,0,0.027384,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.657219,0.15,4 +12353,0,0.082027,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.081,12.163,0,1.968649,6,5 +13216,1,0.038794,2,0,0,2,4,,1,1,1st,St,1581603,0.479,0.518,0,0.931056,8,4.5 +13616,0,0.071144,2,2,0,2,4,,1,1,Bagley,St,1584404,0.073,0.144,0,1.707468,8,4.5 +40120,0,0.492136,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.811255,0.15,4 +40057,-1,0.483535,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,0.297,0.78,0,11.604847,3.7,5 +39858,0,0.009464,1,1,0,2,9,,1,1,Plum,St,4718980,0,0.01,0,0.227131,8.5,4.5 +33177,0,0.130826,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.139821,0.15,4 +33197,0,0.088772,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.130537,0.15,4 +12395,1,0.163155,2,0,0,2,4,DV2,1,1,3rd,St,1581602,0.433,0.596,0,3.915731,8,4.5 +40058,1,0.503852,3,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,0.267,0.771,0,12.092447,3.7,5 +40121,0,0.512494,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.29986,0.15,4 +33184,0,0.089486,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.147674,0.15,4 +13635,1,0.024103,4,0,0,2,9,,1,1,2nd,St,4718974,0,0.024,0,0.578478,8.5,4.5 +11627,1,0.065371,2,0,0,2,4,,1,1,1st,St,1581603,0.414,0.479,0,1.568905,8,4.5 +13615,0,0.072623,2,2,0,2,4,,1,1,Bagley,St,1584404,0.144,0.217,0,1.742953,8,4.5 +30349,0,0.07599,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.823754,0.15,4 +12100,1,0.042233,2,0,0,2,4,,1,1,1st,St,1581603,0.372,0.414,0,1.0136,8,4.5 +33204,0,0.019032,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.456766,0.15,4 +12347,0,0.017867,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.204,12.222,0,0.428816,6,5 +12349,0,0.026762,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.178,12.204,0,0.642287,6,5 +13628,0,0.038974,2,2,0,2,4,,1,1,Adams,Ave,1584401,0,0.039,0,0.935365,8,4.5 +21488,0,0.076423,1,1,0,2,5,,1,1,Elizabeth,St,4700499,0,0.076,0,1.834155,8.5,4.5 +12907,1,0.042246,2,0,0,2,4,,1,1,1st,St,1581603,0.518,0.56,0,1.013902,8,4.5 +12350,0,0.015091,2,2,0,2,3,,1,1,Grand River,Ave,1577408,12.163,12.178,0,0.362193,6,5 +12437,0,0.051492,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.538,0.59,0,1.235809,8,4.5 +11710,0,0.076103,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.231,7.307,0,1.826468,6,5 +12538,0,0.056175,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.208,0.264,0,1.348204,6,5 +12556,0,0.07016,1,1,0,2,4,,1,1,1st,St,1581603,0.069,0.139,0,1.683837,8,4.5 +12590,0,0.0698,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.072,0.141,0,1.675196,6,5 +13417,0,0.068248,2,2,0,2,3,,1,1,Fort,St,1585010,5.31,5.378,0,1.637947,6,5 +22376,0,0.076512,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.397,1.474,0,1.836277,8,4.5 +30464,0,0.065637,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.575294,0.15,4 +30465,0,0.115723,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.777351,0.15,4 +33205,0,0.088827,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.131854,0.15,4 +14693,1,0.070382,2,0,0,2,5,,1,1,2nd,St,1590404,0.07,0.14,0,1.689175,8.5,4.5 +22377,0,0.068355,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.329,1.397,0,1.640523,8,4.5 +11711,0,0.084911,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.146,7.231,0,2.037862,6,5 +13416,0,0.077504,2,2,0,2,3,,1,1,Fort,St,1585010,5.378,5.456,0,1.860094,6,5 +30463,0,0.020824,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.499783,0.15,4 +12586,0,0.066628,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.141,0.208,0,1.599074,6,5 +33174,0,0.016613,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.398707,0.15,4 +12301,1,0.06117,3,0,0,2,4,,1,1,Grand River,Ave,1577408,12.352,12.413,0,1.468075,8,4.5 +12302,1,0.067899,3,0,0,2,4,,1,1,Grand River,Ave,1577408,12.284,12.352,0,1.629571,8,4.5 +12450,0,0.06586,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.407,0.472,0,1.580638,6,5 +12829,0,0.068677,2,2,0,2,5,,1,1,Washington,Blvd,1581607,0.081,0.15,0,1.648259,8.5,4.5 +13610,0,0.082215,2,2,0,2,4,,1,1,Bagley,St,1584404,0.406,0.489,0,1.97315,8,4.5 +13611,0,0.068632,2,2,0,2,4,,1,1,Bagley,St,1584404,0.338,0.406,0,1.64717,8,4.5 +13846,-1,0.036225,0,3,0,2,4,,1,1,Clifford,St,1589707,0.533,0.569,0,0.869392,8,4.5 +40345,1,0.185444,2,0,0,2,3,DIV,4,3,University,Dr,624301,3.131,3.316,0,4.450659,3.7,5 +33135,0,0.104811,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.515475,0.15,4 +33140,0,0.05834,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.400153,0.15,4 +33851,0,0.076243,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.829821,0.15,4 +12508,0,0.079108,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.328,0.407,0,1.898596,6,5 +13613,0,0.045651,2,2,0,2,4,,1,1,Bagley,St,1584404,0.292,0.338,0,1.095631,8,4.5 +13618,-1,0.075931,0,3,0,2,5,,1,1,Middle,St,1584403,0,0.076,0,1.822347,8.5,4.5 +13859,-1,0.039117,0,3,0,2,4,,1,1,Clifford,St,1589707,0.45,0.489,0,0.938804,8,4.5 +14009,-1,0.043644,0,3,0,2,4,,1,1,Clifford,St,1589707,0.489,0.533,0,1.047459,8,4.5 +33137,0,0.052043,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.249022,0.15,4 +33139,0,0.023873,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.572956,0.15,4 +12445,0,0.011903,1,1,0,2,3,,1,1,Cass,Ave,1577605,0.472,0.484,0,0.285674,6,5 +12298,1,0.054752,3,0,0,2,4,,1,1,Grand River,Ave,1577408,12.413,12.468,0,1.314052,8,4.5 +12557,0,0.080204,2,2,0,2,5,,1,1,Washington,Blvd,1581607,0.15,0.23,0,1.924901,8.5,4.5 +33202,0,0.006609,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.158625,0.15,4 +12639,0,0.080964,2,2,0,2,5,,1,1,Washington,Blvd,1581607,0,0.081,0,1.943128,8.5,4.5 +13650,-1,0.042817,0,3,0,2,4,,1,1,Clifford,St,1589707,0.569,0.612,0,1.027619,8,4.5 +21517,1,0.034527,2,0,0,2,4,,1,1,Park,Ave,4700018,0.237,0.271,0,0.828641,8,4.5 +12019,0,0.060753,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.095,0.156,0,1.45808,8.5,4.5 +12101,0,0.049932,1,1,0,2,5,,1,1,Shelby,St,1581608,0,0.05,0,1.198377,8.5,4.5 +12178,1,0.066863,4,0,0,2,4,,1,1,Brush,St,4718307,0.114,0.18,0,1.604703,8,4.5 +12955,-1,0.139705,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577510,12.642,12.782,0,3.352918,6,5 +12969,-1,0.224847,0,3,0,1,2,,1,1,N M 10,,1577510,12.356,12.581,0,,0.32,8.5 +13356,1,0.097779,4,0,0,2,3,DIV,1,1,Jefferson,Ave,1577509,12.709,12.807,0,2.346702,6,5 +13374,1,0.224778,3,0,0,1,2,,1,1,S M 10,,1577509,12.374,12.599,0,,0.32,8.5 +13815,-1,0.060695,0,3,0,2,3,,1,1,Congress,St,1585505,0.627,0.687,0,1.456691,6,5 +13854,-1,0.06578,0,2,0,2,5,,1,1,Lafayette,St,1585508,0.06,0.126,0,1.578727,8.5,4.5 +14134,1,0.059781,3,0,0,2,3,,1,1,Larned,St,1585504,0.484,0.544,0,1.434756,6,5 +14252,1,0.066508,3,0,0,2,3,,1,1,Larned,St,1585504,0.123,0.19,0,1.59619,6,5 +14363,-1,0.069288,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.426,0.495,0,1.662916,8,4.5 +17292,1,0.065729,2,0,0,2,4,,1,1,Fort,St,1628107,0.059,0.125,0,1.577484,8,4.5 +17305,0,0.130663,1,1,0,2,4,,1,1,Atwater,Dr,4708755,0.331,0.462,0,3.135904,8,4.5 +17307,0,0.202816,1,1,0,2,4,,1,1,Atwater,Dr,4708755,0.015,0.218,0,4.867591,8,4.5 +19643,-1,0.08226,0,3,0,2,5,,1,1,W Jefferson Service Drive,,1908101,0.068,0.15,0,1.974245,8.5,4.5 +19646,1,0.149837,3,0,0,2,5,,1,1,W Jefferson Service Drive,,1908010,0,0.15,0,3.596082,8.5,4.5 +23885,-1,0.05121,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0.025,0.076,0,1.229029,6,5 +24165,1,0.051583,2,0,0,2,3,DIV,1,1,Randolph,St,4711788,0.149,0.201,0,1.238003,6,5 +24195,1,0.094666,2,0,0,2,5,,1,1,Monroe,St,4711771,0.283,0.378,0,2.271975,8.5,4.5 +24214,1,0.093575,1,0,0,2,3,,1,1,Detroit Windsor Tunnel,,4711784,0,0.094,0,2.245804,6,5 +24269,0,0.422686,1,1,0,2,3,,1,1,Detroit Windsor Tunnel,,4711786,0,0.423,0,10.14447,6,5 +24416,-1,0.093051,0,1,0,2,3,,1,1,Detroit Windsor Tunnel,,4711785,0,0.093,0,2.23323,6,5 +24494,0,0.128669,1,1,0,2,5,,1,1,Bates,St,4711781,0,0.129,0,3.088065,8.5,4.5 +30458,0,0.137093,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.290238,0.15,4 +33113,0,0.082763,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.986305,0.15,4 +33114,0,0.059781,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.434748,0.15,4 +33201,0,0.079099,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.898365,0.15,4 +33209,0,0.125293,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.007021,0.15,4 +33210,0,0.073033,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.752788,0.15,4 +33213,0,0.067301,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.615221,0.15,4 +33215,0,0.057743,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.385828,0.15,4 +33218,0,0.069353,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.664473,0.15,4 +33220,0,0.04131,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.991451,0.15,4 +12742,0,0.079103,1,1,0,2,5,,1,1,Civic Center,Dr,1581605,0,0.079,0,1.898464,8.5,4.5 +22823,0,0.133626,1,1,0,2,4,,1,1,Civic Center,Dr,4705626,0.359,0.493,0,3.20703,8,4.5 +12315,0,0.049936,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.045,0.095,0,1.198476,8.5,4.5 +30457,0,0.062315,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.495548,0.15,4 +30459,0,0.095501,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.292034,0.15,4 +33826,0,0.024744,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.593861,0.15,4 +33827,0,0.017959,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.431015,0.15,4 +19644,-1,0.067874,0,3,0,2,5,,1,1,W Jefferson Service Drive,,1908101,0,0.068,0,1.628967,8.5,4.5 +12743,0,0.02659,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.018,0.045,0,0.638163,8.5,4.5 +39943,-1,0.00621,0,1,0,2,5,,1,1,Macomb,St,1628108,0.333,0.34,0,0.149029,8.5,4.5 +39942,0,0.032906,1,1,0,2,5,,1,1,Civic Center,Dr,5500335,0,0.033,0,0.789732,8.5,4.5 +22539,0,0.014935,1,1,0,2,4,,1,1,Civic Center,Dr,4708755,0,0.015,0,0.358433,8,4.5 +12316,0,0.062843,2,2,0,2,5,,1,1,Griswold,St,1581609,0.071,0.134,0,1.508221,8.5,4.5 +13218,0,0.071281,1,1,0,2,5,,1,1,Griswold,St,1581609,0.282,0.354,0,1.710743,8.5,4.5 +13828,-1,0.044978,0,4,0,2,3,,1,1,Congress,St,1585505,0.411,0.456,0,1.079462,6,5 +14244,1,0.082962,3,0,0,2,3,,1,1,Larned,St,1585504,0.19,0.273,0,1.991077,6,5 +14485,0,0.061742,2,2,0,2,3,,1,1,Woodward,Ave,1591001,6.551,6.613,0,1.481814,6,5 +17286,0,0.043919,1,1,0,2,5,,1,1,Centre,St,1628206,0,0.044,0,1.05405,8.5,4.5 +17342,0,0.056604,1,1,0,2,5,,1,1,Bates,St,1627903,0.069,0.126,0,1.358487,8.5,4.5 +22689,-1,0.047271,0,3,0,2,5,,1,1,Gratiot,Ave,4705742,0.035,0.083,0,1.134495,8.5,4.5 +22898,0,0.064744,1,1,0,2,5,,1,1,Farmer,St,4705739,0.105,0.169,0,1.55385,8.5,4.5 +23053,0,0.085525,1,1,0,2,5,,1,1,Broadway,St,4705737,0.025,0.11,0,2.052606,8.5,4.5 +23520,0,0.08631,1,1,0,2,5,,1,1,Library,St,4705757,0,0.086,0,2.071449,8.5,4.5 +23862,1,0.040953,2,0,0,2,3,DIV,1,1,Randolph,St,4711788,0.288,0.329,0,0.982871,6,5 +23877,1,0.046201,3,0,0,2,3,DIV,1,1,Woodward,Ave,4707254,0.077,0.123,0,1.108832,6,5 +23881,-1,0.038583,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0.171,0.21,0,0.925997,6,5 +24224,-1,0.070065,0,2,0,2,3,DV2,1,1,Monroe,St,4711771,0,0.07,0,1.681561,6,5 +24302,1,0.020847,2,0,0,2,3,,1,1,Woodward,Ave,4711773,0,0.021,0,0.500317,6,5 +24419,1,0.071859,2,0,0,2,3,DV2,1,1,Monroe,St,4711778,0,0.072,0,1.724609,6,5 +24540,-1,0.029397,0,3,0,2,3,,1,1,Campus Martius,,4711774,0,0.029,0,0.705528,6,5 +31064,0,0.080691,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.936594,0.15,4 +33219,0,0.051334,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.232026,0.15,4 +33222,0,0.05328,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.278722,0.15,4 +33828,0,0.054397,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.305532,0.15,4 +33846,0,0.054548,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.309155,0.15,4 +33848,0,0.114112,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.738685,0.15,4 +33850,0,0.076736,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.841657,0.15,4 +11707,0,0.07453,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.383,7.457,0,1.788721,6,5 +11942,0,0.071312,1,1,0,2,5,,1,1,Shelby,St,1581608,0.111,0.182,0,1.711494,8.5,4.5 +12103,0,0.070303,2,2,0,2,5,,1,1,Griswold,St,1581609,0.134,0.204,0,1.687265,8.5,4.5 +13136,0,0.069459,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.227,0.297,0,1.667013,8.5,4.5 +13412,0,0.079892,2,2,0,2,4,,1,1,Fort,St,1585010,5.572,5.652,0,1.917411,8,4.5 +13414,0,0.063477,2,2,0,2,4,,1,1,Fort,St,1585010,5.508,5.572,0,1.523456,8,4.5 +13830,-1,0.067385,0,4,0,2,3,,1,1,Congress,St,1585505,0.261,0.329,0,1.617232,6,5 +22373,0,0.078145,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.591,1.669,0,1.875474,8,4.5 +33173,0,0.081804,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.963285,0.15,4 +33230,0,0.05429,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.302962,0.15,4 +11628,0,0.071627,2,2,0,2,5,,1,1,Washington,Blvd,5500333,0.156,0.227,0,1.719059,8.5,4.5 +13832,-1,0.047582,0,4,0,2,3,,1,1,Congress,St,1585505,0.214,0.261,0,1.141972,6,5 +13002,1,0.054193,2,0,0,2,5,,1,1,Shelby,St,1581608,0.252,0.306,0,1.30062,8.5,4.5 +22374,0,0.062627,2,2,0,2,4,,1,1,Lafayette,Blvd,4718963,1.528,1.591,0,1.503051,8,4.5 +11708,0,0.013881,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.369,7.383,0,0.333151,6,5 +13217,1,0.069621,2,0,0,2,5,,1,1,Shelby,St,1581608,0.182,0.252,0,1.670914,8.5,4.5 +30468,0,0.024293,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.583033,0.15,4 +12102,0,0.061041,1,1,0,2,5,,1,1,Shelby,St,1581608,0.05,0.111,0,1.464996,8.5,4.5 +13829,-1,0.082469,0,4,0,2,3,,1,1,Congress,St,1585505,0.329,0.411,0,1.979259,6,5 +30498,0,0.055654,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.335707,0.15,4 +33221,0,0.053414,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.281935,0.15,4 +11629,0,0.078097,2,2,0,2,5,,1,1,Griswold,St,1581609,0.204,0.282,0,1.874332,8.5,4.5 +11706,0,0.063098,2,2,1,2,3,,1,1,Michigan,Ave,1577103,7.457,7.521,0,1.51435,6,5 +13411,-1,0.048064,0,1,0,2,4,,1,1,Fort,St,1585010,5.652,5.7,0,1.153541,8,4.5 +23879,1,0.027634,3,0,0,2,3,,1,1,Woodward,Ave,4707254,0.03,0.057,0,0.663226,6,5 +23878,1,0.020056,3,0,0,2,3,DIV,1,1,Woodward,Ave,4707254,0.057,0.077,0,0.481344,6,5 +14483,1,0.016591,3,0,0,2,3,,1,1,Woodward,Ave,1591001,6.634,6.651,0,0.398181,6,5 +24248,-1,0.019158,0,2,0,2,3,,1,1,Woodward,Ave,4711776,0,0.019,0,0.459802,6,5 +24383,-1,0.018365,0,2,0,2,3,,1,1,Campus Martius,,4711775,0,0.018,0,0.440757,6,5 +23880,1,0.029552,3,0,0,2,3,,1,1,Woodward,Ave,4707254,0,0.03,0,0.709239,6,5 +14484,1,0.020919,2,0,0,2,3,,1,1,Woodward,Ave,1591001,6.613,6.634,0,0.502052,6,5 +12069,-1,0.044467,0,3,0,2,4,,1,1,John R,St,1577608,0.046,0.091,0,1.067198,8,4.5 +12746,0,0.071161,1,1,0,2,5,,1,1,Griswold,St,1581609,0.442,0.513,0,1.707873,8.5,4.5 +14201,-1,0.033051,0,3,0,2,5,,1,1,State,St,4718987,0.142,0.175,0,0.793232,8.5,4.5 +14486,0,0.093016,2,2,0,2,3,,1,1,Woodward,Ave,1591001,6.458,6.551,0,2.232376,6,5 +14487,0,0.068768,2,2,0,2,3,,1,1,Woodward,Ave,1591001,6.39,6.458,0,1.65042,6,5 +15958,0,0.065036,1,1,0,2,4,,1,1,Grand River,Ave,1598501,0,0.065,0,1.560853,8,4.5 +22608,0,0.094585,1,1,0,2,5,,1,1,Farmer,St,4705739,0.169,0.264,0,2.270031,8.5,4.5 +23614,0,0.069445,1,1,0,2,5,,1,1,Farmer,St,4705739,0.264,0.333,0,1.666681,8.5,4.5 +30347,0,0.025943,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.622637,0.15,4 +12290,1,0.057376,2,0,0,2,4,,1,1,Grand River,Ave,1577408,12.544,12.601,0,1.377029,8,4.5 +12909,0,0.088414,1,1,0,2,5,,1,1,Griswold,St,1581609,0.354,0.442,0,2.121939,8.5,4.5 +13811,-1,0.036572,0,3,0,2,5,,1,1,State,St,4718987,0.105,0.142,0,0.877733,8.5,4.5 +33178,0,0.019785,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.474839,0.15,4 +33847,0,0.104835,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.516031,0.15,4 +33179,0,0.020661,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.495853,0.15,4 +12077,-1,0.046218,0,3,0,2,4,,1,1,John R,St,1577608,0,0.046,0,1.109227,8,4.5 +13843,-1,0.038885,0,3,0,2,4,,1,1,Clifford,St,1589707,0.669,0.708,0,0.933242,8,4.5 +14488,0,0.081941,2,2,0,2,3,,1,1,Woodward,Ave,1591001,6.308,6.39,0,1.966586,6,5 +22966,-1,0.035358,0,3,0,2,5,,1,1,Gratiot,Ave,4705742,0,0.035,0,0.848603,8.5,4.5 +24417,-1,0.030227,0,3,0,2,5,,1,1,Gratiot,Ave,4711891,0,0.03,0,0.725454,8.5,4.5 +24483,-1,0.033654,0,3,0,2,5,,1,1,State,St,4711890,0,0.034,0,0.807699,8.5,4.5 +15957,0,0.061622,1,1,0,2,4,,1,1,Grand River,Ave,1598501,0.065,0.127,0,1.478928,8,4.5 +22781,0,0.068202,1,1,0,2,5,,1,1,Broadway,St,4705737,0.11,0.178,0,1.636857,8.5,4.5 +30348,0,0.043633,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.047182,0.15,4 +15956,0,0.058522,1,1,0,2,4,,1,1,Grand River,Ave,1598501,0.127,0.185,0,1.404526,8,4.5 +13363,1,0.056695,4,0,0,2,3,DIV,1,1,Jefferson,Ave,1577509,12.652,12.709,0,1.36067,6,5 +13821,-1,0.075135,0,3,0,2,3,,1,1,Congress,St,1585505,0.533,0.608,0,1.803252,6,5 +14193,1,0.139753,3,0,0,2,3,,1,1,Larned,St,1585504,0.334,0.474,0,3.354061,6,5 +23876,1,0.063483,3,0,0,2,3,DIV,1,1,Woodward,Ave,4707254,0.123,0.187,0,1.523581,6,5 +24186,-1,0.057138,0,2,0,2,4,,1,1,Cadillac,Sq,4711769,0.081,0.139,0,1.371317,8,4.5 +24209,-1,0.06116,0,3,0,2,3,DIV,1,1,Woodward,Ave,4711772,0.065,0.126,0,1.467842,6,5 +24434,1,0.058659,2,0,0,2,4,,1,1,Cadillac,Sq,4711770,0.081,0.14,0,1.407805,8,4.5 +30500,0,0.034203,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.820863,0.15,4 +33852,0,0.079654,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.911707,0.15,4 +33853,0,0.09467,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.272074,0.15,4 +12744,-1,0.014909,0,2,0,2,5,,1,1,Griswold,St,1581609,0,0.015,0,0.357811,8.5,4.5 +12964,-1,0.045082,0,3,0,2,3,DIV,1,1,Jefferson,Ave,1577510,12.581,12.626,0,1.081966,6,5 +14234,1,0.044819,3,0,0,2,3,,1,1,Larned,St,1585504,0.273,0.318,0,1.075655,6,5 +19642,-1,0.044936,0,3,0,2,5,,1,1,W Jefferson Service Drive,,1908101,0.15,0.195,0,1.078475,8.5,4.5 +12558,0,0.049745,2,2,0,2,5,,1,1,Griswold,St,1581609,0.021,0.071,0,1.193869,8.5,4.5 +12745,-1,0.006481,0,2,0,2,5,,1,1,Griswold,St,1581609,0.015,0.021,0,0.15554,8.5,4.5 +13369,1,0.053338,3,0,0,2,3,DIV,1,1,Jefferson,Ave,1577509,12.599,12.652,0,1.280106,6,5 +12960,-1,0.016219,0,3,0,2,3,DIV,1,1,Jefferson,Ave,1577510,12.626,12.642,0,0.389253,6,5 +14233,1,0.016288,3,0,0,2,3,,1,1,Larned,St,1585504,0.318,0.334,0,0.390901,6,5 +13826,-1,0.061025,0,3,0,2,3,,1,1,Congress,St,1585505,0.472,0.533,0,1.464612,6,5 +17344,0,0.045692,1,1,0,2,5,,1,1,Bates,St,1627903,0,0.046,0,1.096615,8.5,4.5 +23996,1,0.081249,2,0,0,2,4,,1,1,Cadillac,Sq,4711770,0,0.081,0,1.949977,8,4.5 +24194,1,0.020727,3,0,0,2,3,,1,1,Woodward,Ave,4711773,0.021,0.042,0,0.497456,6,5 +24291,-1,0.081381,0,2,0,2,4,,1,1,Cadillac,Sq,4711769,0,0.081,0,1.953144,8,4.5 +33228,0,0.059558,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.429381,0.15,4 +33229,0,0.039788,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.954923,0.15,4 +13827,-1,0.016226,0,4,0,2,3,,1,1,Congress,St,1585505,0.456,0.472,0,0.389419,6,5 +24320,-1,0.047015,0,3,0,2,3,DIV,1,1,Woodward,Ave,4711772,0.018,0.065,0,1.128369,6,5 +24171,-1,0.017989,0,3,0,2,3,DIV,1,1,Woodward,Ave,4711772,0,0.018,0,0.431725,6,5 +24542,1,0.021673,3,0,0,2,3,,1,1,Woodward,Ave,4711773,0.042,0.063,0,0.52016,6,5 +24384,1,0.022227,3,0,0,2,3,,1,1,Woodward,Ave,4711773,0.063,0.086,0,0.533444,6,5 +24249,1,0.005184,2,0,0,2,3,,1,1,Woodward,Ave,4711773,0.086,0.091,0,0.124412,6,5 +17343,0,0.023329,1,1,0,2,5,,1,1,Bates,St,1627903,0.046,0.069,0,0.5599,8.5,4.5 +33227,0,0.022835,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.548031,0.15,4 +33191,0,0.055802,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.339241,0.15,4 +33211,0,0.068513,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.64432,0.15,4 +33212,0,0.008847,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.212333,0.15,4 +13817,-1,0.018127,0,3,0,2,3,,1,1,Congress,St,1585505,0.608,0.627,0,0.435054,6,5 +23884,-1,0.061515,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0.076,0.138,0,1.476351,6,5 +24151,-1,0.011558,0,2,0,2,4,,1,1,Cadillac,Sq,4711769,0.139,0.15,0,0.277384,8,4.5 +24229,1,0.061271,2,0,0,2,3,DIV,1,1,Randolph,St,4711788,0.201,0.262,0,1.470496,6,5 +24359,1,0.022129,2,0,0,2,4,,1,1,Cadillac,Sq,4711770,0.14,0.162,0,0.531101,8,4.5 +30499,0,0.080131,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.923152,0.15,4 +33854,0,0.070385,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.689236,0.15,4 +23882,-1,0.022355,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0.149,0.171,0,0.536524,6,5 +23883,-1,0.011622,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0.138,0.149,0,0.278931,6,5 +14172,1,0.010817,3,0,0,2,3,,1,1,Larned,St,1585504,0.474,0.484,0,0.259611,6,5 +24140,1,0.026604,2,0,0,2,3,DIV,1,1,Randolph,St,4711788,0.262,0.288,0,0.638507,6,5 +11988,1,0.054794,2,0,0,2,4,,1,1,Brush,St,4718307,0.365,0.42,0,1.315047,8,4.5 +11997,1,0.065461,2,0,0,2,4,,1,1,Brush,St,4718307,0.246,0.312,0,1.571057,8,4.5 +17290,1,0.05821,2,0,0,2,5,,1,1,Macomb,St,1628108,0,0.058,0,1.397045,8.5,4.5 +17341,-1,0.047592,0,2,0,2,5,,1,1,Bates,St,1627903,0.126,0.173,0,1.142211,8.5,4.5 +22540,0,0.045506,1,1,0,2,5,,1,1,Farmer,St,4705739,0,0.046,0,1.092133,8.5,4.5 +23682,-1,0.057581,0,3,0,2,5,,1,1,Gratiot,Ave,4705742,0.083,0.14,0,1.381936,8.5,4.5 +23858,0,0.06808,2,2,0,2,3,,1,1,Randolph,St,4711788,0.395,0.463,0,1.633926,6,5 +23888,-1,0.05526,0,2,0,2,3,,1,1,Randolph,St,4707251,0,0.055,0,1.326236,6,5 +24105,1,0.053488,2,0,0,2,3,,1,1,Randolph,St,4711788,0.463,0.517,0,1.283708,6,5 +24464,1,0.065094,3,0,0,2,5,,1,1,Monroe,St,4711771,0.151,0.216,0,1.562264,8.5,4.5 +33223,0,0.0737,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.768795,0.15,4 +23534,0,0.054543,1,1,0,2,5,,1,1,Farmer,St,4705739,0.046,0.1,0,1.309036,8.5,4.5 +24134,-1,0.080944,0,2,0,2,3,DV2,1,1,Monroe,St,4711771,0.07,0.151,0,1.94265,6,5 +24272,1,0.081619,2,0,0,2,3,DV2,1,1,Monroe,St,4711778,0.072,0.153,0,1.958848,6,5 +33224,0,0.004903,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.117671,0.15,4 +23190,0,0.004633,1,1,0,2,5,,1,1,Farmer,St,4705739,0.1,0.105,0,0.111189,8.5,4.5 +22985,0,0.047748,1,1,0,2,5,,1,1,Randolph,St,4705736,0,0.048,0,1.145963,8.5,4.5 +23071,0,0.019877,3,3,1,2,3,,1,1,Gratiot,Ave,4705742,0.177,0.197,0,0.477046,6,5 +23376,0,0.01486,1,1,0,2,5,,1,1,Broadway,St,4705737,0.01,0.025,0,0.356645,8.5,4.5 +23406,0,0.036767,2,1,0,2,5,,1,1,Gratiot,Ave,4705742,0.14,0.177,0,0.88241,8.5,4.5 +23887,-1,0.033433,0,2,0,2,3,,1,1,Randolph,St,4707251,0.055,0.089,0,0.80239,6,5 +24519,1,0.02874,2,0,0,2,3,,1,1,Randolph,St,4711788,0.517,0.545,0,0.689758,6,5 +23708,0,0.009743,1,1,0,2,5,,1,1,Broadway,St,4705737,0,0.01,0,0.233834,8.5,4.5 +22794,0,0.037525,3,3,1,2,3,,1,1,Gratiot,Ave,4705742,0.197,0.234,0,0.900604,6,5 +11998,1,0.065832,4,0,0,2,4,,1,1,Brush,St,4718307,0.18,0.246,0,1.579975,8,4.5 +14289,-1,0.060008,0,2,0,2,5,,1,1,Lafayette,St,1585508,0,0.06,0,1.440203,8.5,4.5 +17293,1,0.059349,2,0,0,2,4,,1,1,Fort,St,1628107,0,0.059,0,1.424366,8,4.5 +24139,0,0.047634,2,2,0,2,3,,1,1,Randolph,St,4711788,0.348,0.395,0,1.143215,6,5 +24228,0,0.018148,2,2,0,2,3,,1,1,Randolph,St,4711788,0.329,0.348,0,0.435554,6,5 +14108,-1,0.053855,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.495,0.549,0,1.292509,8,4.5 +17289,-1,0.066384,0,3,0,2,5,,1,1,Macomb,St,1628108,0.058,0.125,0,1.593219,8.5,4.5 +24304,1,0.067232,3,0,0,2,5,,1,1,Monroe,St,4711771,0.216,0.283,0,1.61357,8.5,4.5 +11991,1,0.053735,2,0,0,2,4,,1,1,Brush,St,4718307,0.312,0.365,0,1.289639,8,4.5 +34014,0,0.101171,1,1,0,1,90,,0,9,External Station Connector,,0,0,0,0,,0.15,4 +17306,0,0.113726,1,1,0,2,4,,1,1,Atwater,Dr,4708755,0.218,0.331,0,2.729429,8,4.5 +12536,-1,0.430915,0,2,0,1,1,,1,1,S I 375,,1577705,0.17,0.6,0,,0.32,8.5 +12971,1,0.437512,2,0,0,1,1,,1,1,N I 375,,1577706,0.167,0.605,0,,0.32,8.5 +13730,1,0.056558,3,0,0,2,4,DV2,1,1,Lafayette,St,1585507,0.214,0.27,0,1.357391,8,4.5 +13806,-1,0.128885,0,3,0,2,3,,1,1,Congress,St,1585505,0.85,0.979,0,3.093249,6,5 +13813,-1,0.071665,0,3,0,2,3,,1,1,Congress,St,1585505,0.687,0.759,0,1.719956,6,5 +14089,1,0.119362,3,0,0,2,3,,1,1,Larned,St,1585504,0.707,0.827,0,2.864678,6,5 +14098,1,0.091375,3,0,0,2,3,,1,1,Larned,St,1585504,0.616,0.707,0,2.192991,6,5 +14180,0,0.076195,1,2,0,2,5,,1,1,Beaubien,St,1587305,0,0.076,0,1.828681,8.5,4.5 +14226,-1,0.135747,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.095,0.231,0,3.257917,8.5,4.5 +14388,-1,0.056828,0,3,0,2,4,DV2,1,1,Lafayette,St,1585508,0.339,0.396,0,1.363878,8,4.5 +14391,0,0.060717,1,1,1,2,4,,1,1,Beaubien,St,1587305,0.236,0.297,0,1.457216,8,4.5 +17340,1,0.052818,3,0,0,2,5,,1,1,Saint Antoine,St,1627904,0,0.053,0,1.267622,8.5,4.5 +22192,1,0.148412,3,0,0,2,3,DIV,1,1,Jefferson,Ave,4704291,0.051,0.2,0,3.561893,6,5 +22193,1,0.051305,3,0,0,2,3,DIV,1,1,Jefferson,Ave,4704291,0,0.051,0,1.231325,6,5 +23087,-1,0.119433,0,3,0,2,3,DIV,1,1,Jefferson,Ave,4705824,0.049,0.169,0,2.866389,6,5 +33160,0,0.032956,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.790933,0.15,4 +12611,-1,0.03661,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577705,0,0.037,0,0.878632,6,5 +13339,-1,0.07124,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577705,0.057,0.128,0,1.709758,6,5 +13375,1,0.073757,4,0,0,2,3,DIV,1,1,Jefferson,Ave,1577706,0.059,0.132,0,1.770176,6,5 +13718,0,0.053388,1,1,1,2,4,,1,1,Beaubien,St,1587305,0.182,0.236,0,1.281301,8,4.5 +14411,0,0.084968,1,2,0,2,5,,1,1,Beaubien,St,1587305,0.076,0.161,0,2.039241,8.5,4.5 +33175,0,0.112994,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.711864,0.15,4 +33181,0,0.096617,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.318803,0.15,4 +33829,0,0.124888,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.997312,0.15,4 +12162,1,0.058568,4,0,0,2,3,DIV,1,1,Jefferson,Ave,1577706,0,0.059,0,1.405628,6,5 +24166,1,0.02739,1,0,0,2,3,,1,1,Randolph,St,4711788,0.071,0.099,0,0.657351,6,5 +24413,0,0.027708,1,1,0,2,3,,1,1,Randolph,St,4711788,0.099,0.126,0,0.664983,6,5 +12945,-1,0.01036,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577510,12.782,12.792,0,0.248648,6,5 +23886,-1,0.024838,0,2,0,2,3,DIV,1,1,Randolph,St,4707253,0,0.025,0,0.596119,6,5 +24267,1,0.02263,2,0,0,2,3,DIV,1,1,Randolph,St,4711788,0.126,0.149,0,0.54312,6,5 +12008,0,0.061299,2,2,0,2,4,,1,1,Brush,St,4718307,0.052,0.114,0,1.471172,8,4.5 +13184,0,0.052248,2,2,0,2,4,,1,1,Brush,St,4718307,0,0.052,0,1.253957,8,4.5 +13261,-1,0.020129,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577705,0.037,0.057,0,0.483087,6,5 +14129,1,0.071811,3,0,0,2,3,,1,1,Larned,St,1585504,0.544,0.616,0,1.723454,6,5 +33217,0,0.070954,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.702904,0.15,4 +33216,0,0.011198,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.268756,0.15,4 +33207,0,0.02772,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.66528,0.15,4 +13256,-1,0.04178,0,4,0,2,3,DIV,1,1,Jefferson,Ave,1577705,0.128,0.17,0,1.002729,6,5 +13371,1,0.035199,4,0,0,2,3,DIV,1,1,Jefferson,Ave,1577706,0.132,0.167,0,0.844776,6,5 +14167,0,0.021269,2,2,0,2,4,,1,1,Beaubien,St,1587305,0.161,0.182,0,0.510446,8,4.5 +23431,-1,0.049307,0,3,0,2,3,DIV,1,1,Jefferson,Ave,4705824,0,0.049,0,1.183372,6,5 +13748,1,0.117273,3,0,0,2,4,DV2,1,1,Lafayette,Ave,1585507,0.097,0.214,0,2.814559,8,4.5 +13754,1,0.096676,3,0,0,2,4,DV2,1,1,Lafayette,St,1585507,0,0.097,0,2.320216,8,4.5 +13764,-1,0.116696,0,3,0,2,4,DV2,1,1,Lafayette,St,1585508,0.222,0.339,0,2.800703,8,4.5 +13810,-1,0.090871,0,3,0,2,3,,1,1,Congress,St,1585505,0.759,0.85,0,2.180911,6,5 +14422,-1,0.096541,0,2,0,2,4,DV2,1,1,Lafayette,St,1585508,0.126,0.222,0,2.316993,8,4.5 +30502,0,0.112724,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.705384,0.15,4 +33214,0,0.125563,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.013506,0.15,4 +14114,-1,0.06451,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.361,0.426,0,1.548246,8,4.5 +14370,-1,0.06489,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.297,0.361,0,1.557352,8,4.5 +17291,1,0.009866,1,0,0,2,4,,1,1,Fort,St,1628107,0.125,0.135,0,0.236784,8,4.5 +24104,1,0.066033,2,0,0,2,4,,1,1,Beaubien,St,4711284,0.066,0.132,0,1.584796,8,4.5 +24116,1,0.065737,2,0,0,2,4,,1,1,Beaubien,St,4711284,0,0.066,0,1.5777,8,4.5 +13646,1,0.066922,2,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.057,0.124,0,1.60612,8.5,4.5 +33112,0,0.035946,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.862692,0.15,4 +33115,0,0.067423,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.618157,0.15,4 +33225,0,0.079139,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.899346,0.15,4 +14320,1,0.013456,2,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.043,0.057,0,0.322937,8.5,4.5 +17339,1,0.060733,3,0,0,2,5,,1,1,Saint Antoine,St,1627904,0.053,0.114,0,1.457602,8.5,4.5 +30503,0,0.035972,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.86332,0.15,4 +14011,-1,0.011666,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.231,0.243,0,0.279992,8.5,4.5 +17295,0,0.119031,1,1,0,2,5,,1,1,Woodbridge,St,4712427,0,0.119,0,2.856739,8.5,4.5 +17303,0,0.072886,2,2,1,2,5,,1,1,Saint Antoine,St,1628002,0,0.073,0,1.749258,8.5,4.5 +22922,0,0.119184,2,2,1,2,5,,1,1,Franklin,St,4712428,0,0.119,0,2.860421,8.5,4.5 +24517,0,0.106032,2,2,0,2,4,,3,1,Atwater,St,4711889,0,0.106,0,2.544758,6,4.5 +33159,0,0.020767,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.498398,0.15,4 +17304,0,0.075426,1,1,0,2,4,,1,1,Atwater,Dr,4708755,0.462,0.537,0,1.810215,8,4.5 +17302,0,0.047257,1,2,0,2,5,,1,1,Saint Antoine,St,1628002,0.073,0.12,0,1.134164,8.5,4.5 +17301,0,0.025297,1,2,0,2,5,,1,1,Saint Antoine,St,1628002,0.12,0.145,0,0.60713,8.5,4.5 +24363,0,0.049242,1,1,0,2,5,,1,1,Schweizer,Pl,4711888,0,0.049,0,1.181819,8.5,4.5 +33158,0,0.064986,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.559659,0.15,4 +33162,0,0.004284,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.10282,0.15,4 +13772,1,0.149686,2,0,0,1,1,ROF,1,1,S I 375/Larned,RAMP,1585506,0,0.15,0,,3.07,5 +13773,-1,0.052011,0,3,0,2,3,,1,1,Larned,St,1585505,0.979,1.031,0,1.248261,6,5 +14083,1,0.052336,3,0,0,2,3,,1,1,Larned,St,1585504,0.827,0.879,0,1.256057,6,5 +14319,1,0.146113,2,0,0,1,1,RON,1,1,Larned/N I 375,RAMP,1586008,0,0.146,0,,1.09,4 +15058,1,0.153311,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.079,0.232,0,3.67947,8.5,4.5 +17333,0,0.113153,1,1,0,2,5,,3,1,Rivard,St,1627905,0.239,0.352,0,2.715677,8,4.5 +22618,1,0.036282,2,0,0,2,5,,1,1,S I 375 Service Drive,,4704921,0,0.036,0,0.87076,8.5,4.5 +22809,-1,0.051691,0,3,0,2,3,DIV,1,1,Jefferson,Ave,4705824,0.169,0.22,0,1.240577,6,5 +14230,-1,0.012109,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.052,0.064,0,0.290625,8.5,4.5 +14030,-1,0.051974,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0,0.052,0,1.247376,8.5,4.5 +14014,-1,0.031096,0,3,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.064,0.095,0,0.746292,8.5,4.5 +15054,1,0.010412,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.232,0.243,0,0.249899,8.5,4.5 +14080,1,0.070983,3,0,0,2,4,DV2,3,1,Larned,St,1585504,0.879,0.95,0,1.703604,6,4.5 +15073,1,0.052846,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0,0.053,0,1.268298,8.5,4.5 +17318,-1,0.070832,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0,0.071,0,1.699963,6,4.5 +22190,1,0.049031,3,0,0,2,3,DIV,1,1,Jefferson,Ave,4704291,0.229,0.278,0,1.176733,6,5 +22526,-1,0.040854,0,3,0,2,3,DIV,1,1,Jefferson,Ave,4705824,0.22,0.261,0,0.980494,6,5 +23516,0,0.031471,3,3,1,2,3,,1,1,Jefferson,Ave,4705824,0.261,0.293,0,0.755312,6,5 +22191,1,0.029088,3,0,0,2,3,DIV,1,1,Jefferson,Ave,4704291,0.2,0.229,0,0.698119,6,5 +23868,1,0.015527,3,0,0,2,5,,1,1,N I 375 Service Drive,,4707406,0,0.016,0,0.372649,8.5,4.5 +15065,1,0.015678,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.064,0.079,0,0.376279,8.5,4.5 +15072,1,0.010684,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.053,0.064,0,0.256416,8.5,4.5 +17335,0,0.05489,1,1,0,2,5,,3,1,Rivard,St,1627905,0.174,0.228,0,1.317371,8,4.5 +17334,0,0.01092,1,1,0,2,5,,3,1,Rivard,St,1627905,0.228,0.239,0,0.262069,8,4.5 +18527,1,0.852792,3,0,0,2,5,,3,1,The Strand,St,1633206,0,0.853,0,20.467006,8,4.5 +24292,0,0.187444,1,1,0,2,4,,3,1,Atwater,St,4711889,0.536,0.723,0,4.498659,6,4.5 +33093,0,0.191317,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.5916,0.15,4 +17337,0,0.048253,1,1,0,2,5,,1,1,Rivard,St,1627905,0.071,0.119,0,1.158074,8.5,4.5 +22883,0,0.083392,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.493,0.577,0,2.001409,5,5 +23641,0,0.2026,1,1,0,2,5,,3,1,Franklin,St,4712428,0.242,0.444,0,4.862397,8,4.5 +24132,0,0.101612,1,1,0,2,5,,3,1,Riopelle,St,4711283,0,0.102,0,2.438684,8,4.5 +24226,0,0.201573,1,1,0,2,4,,3,1,Atwater,St,4711889,0.244,0.445,0,4.837752,6,4.5 +17338,0,0.070606,1,1,0,2,5,,3,1,Rivard,St,1627905,0,0.071,0,1.694538,8,4.5 +33106,0,0.134402,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.225659,0.15,4 +23598,0,0.010507,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.658,0.669,0,0.252177,5,5 +24135,0,0.09054,1,1,0,2,4,,3,1,Atwater,St,4711889,0.445,0.536,0,2.172949,6,4.5 +33090,0,0.142995,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.431878,0.15,4 +33095,0,0.097515,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.340352,0.15,4 +24118,0,0.058937,1,1,0,2,5,,3,1,Riopelle,St,4711283,0.102,0.161,0,1.414495,8,4.5 +24117,0,0.02669,1,1,0,2,5,,3,1,Riopelle,St,4711283,0.161,0.187,0,0.640565,8,4.5 +22590,0,0.081536,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.577,0.658,0,1.956871,5,5 +33096,0,0.052241,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.253787,0.15,4 +24187,0,0.202735,1,1,0,2,4,,3,1,Atwater,St,4711889,0.723,0.926,0,4.865634,6,4.5 +17300,0,0.109465,1,1,0,2,5,,3,1,Saint Aubin,St,1628007,0,0.11,0,2.627149,8,4.5 +18525,1,0.153356,3,0,0,2,5,,3,1,The Strand,St,1633206,0.853,1.006,0,3.680543,8,4.5 +24299,0,0.057782,1,1,0,2,5,,3,1,Loiter,Way,4710277,0.23,0.287,0,1.386776,8,4.5 +39958,0,0.129788,1,1,0,2,5,,3,1,Picnic,Way,5494461,0,0.13,0,3.114901,8,4.5 +4903,1,0.249982,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.498,2.748,0,5.999573,5,5 +4974,-1,0.253424,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.499,2.753,0,6.082184,5,5 +5366,0,0.295387,2,2,1,2,4,,3,4,9 Mile,Rd,803006,2.499,2.795,0,7.089299,6,4.5 +10739,1,0.82213,3,0,0,1,1,,3,1,E I 94,,1576405,32.982,33.804,0,,0.58,7 +10961,1,0.425755,3,0,0,1,1,,3,1,E I 94,,1576405,29.784,30.21,0,,0.58,7 +11981,1,0.210981,1,0,0,1,5,,3,1,Old Mount Elliott,St,1577808,4.578,4.789,0,,8,4.5 +12140,-1,0.544186,0,4,0,1,1,,3,2,S I 75,,1577705,5.409,5.953,0,,0.58,7 +12295,0,0.288839,2,2,1,2,4,,3,1,Harper,Ave,1578108,2.751,3.04,0,6.932133,6,4.5 +13107,0,0.095224,3,3,0,2,3,,3,1,Van Dyke,St,1577904,1.627,1.722,0,2.285365,5,5 +13183,0,0.063107,2,2,0,2,3,,3,1,Mount Elliott,St,1577808,2.912,2.975,0,1.514572,5,5 +13295,1,0.50391,4,0,0,1,1,,3,2,N I 75,,1577706,5.437,5.941,0,,0.58,7 +13699,1,0.330162,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,0.338,0.668,0,7.923889,6,4.5 +13789,0,0.114919,2,2,0,2,4,,3,1,Davison,St,4702009,6.929,7.044,0,2.758065,6,4.5 +13796,0,0.281498,1,1,0,2,5,,3,1,Canfield,St,1585701,1.503,1.785,0,6.755948,8,4.5 +13857,0,0.402707,1,1,1,2,5,,3,1,Lynch,Rd,1586705,0.212,0.614,0,9.664975,8,4.5 +13862,1,0.231026,3,0,0,2,3,,3,1,Forest,Ave,5491069,0.627,0.858,0,5.544629,5,5 +13903,1,0.154733,4,0,0,2,4,,3,1,Harper,Ave,4718377,0.793,0.948,0,3.713582,6,4.5 +13940,0,0.171106,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.483,0.654,0,4.106535,5,5 +13943,0,0.308469,1,1,0,2,5,,3,1,Chene,St,1587501,1.432,1.74,0,7.403263,8,4.5 +13948,0,0.126522,2,2,0,2,4,,3,1,Nevada,St,1585907,3.78,3.906,0,3.036531,6,4.5 +14003,0,0.047214,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0,0.047,0,1.133147,6,4.5 +14013,-1,0.590207,0,3,0,1,1,,3,1,W I 94,,1588802,29.586,30.176,0,,0.58,7 +14025,0,0.139743,1,1,1,2,3,,3,1,Conner,St,1588005,2.827,2.966,0,3.353826,5,5 +14067,0,0.011489,1,1,0,2,5,,3,1,Antietam,Ave,1587309,0.655,0.666,0,0.27574,8,4.5 +14117,0,0.182146,1,1,0,2,5,,3,1,Lynch,Rd,1586705,0,0.182,0,4.371497,8,4.5 +14145,-1,0.330063,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.464,0.794,0,7.921516,6,4.5 +14262,0,0.326825,1,1,0,2,5,,3,1,Miller,St,1586408,0,0.327,0,7.843811,8,4.5 +14283,1,0.2231,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,4.398,4.621,0,5.354389,6,4.5 +14533,0,0.155427,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.132,1.288,0,3.730239,5,5 +15023,-1,0.025415,0,2,0,2,4,,3,1,Harper,Ave,1591307,0.478,0.503,0,0.609962,6,4.5 +15375,-1,0.418697,0,2,0,2,5,,3,2,Dequindre,St,1591301,1.697,2.115,0,10.04873,8,4.5 +15770,0,0.25194,2,2,0,2,4,,2,2,Joseph Campau,St,1591101,1.059,1.311,0,6.046549,8,4.5 +17186,0,0.336457,1,1,0,2,5,,3,1,Sherwood,St,1630706,1.015,1.351,0,8.074969,8,4.5 +17207,0,0.258427,1,1,0,2,4,,2,2,Conant,St,1629706,1.082,1.34,0,6.202248,8,4.5 +17213,0,0.083387,1,1,0,2,5,,3,1,Chestnut,St,1629109,0,0.083,0,2.00128,8,4.5 +17319,1,0.055416,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.954,1.009,0,1.329987,6,4.5 +17320,1,0.216458,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.738,0.954,0,5.194994,6,4.5 +17373,0,0.350913,1,1,0,2,5,,3,2,John R,St,1625909,1.242,1.593,0,8.421921,8,4.5 +17382,1,0.476344,2,0,0,2,5,,3,2,Nagel,Ave,1625409,1.679,2.155,0,11.432264,8,4.5 +17651,0,0.110111,2,2,0,2,3,,3,1,McNichols,Rd,1680701,26.369,26.479,0,2.642663,5,5 +18056,0,0.118155,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,20.293,20.411,0,2.835713,5,5 +18987,0,0.207959,1,1,0,2,4,,2,2,Caniff,St,1632110,1.216,1.424,0,4.991011,8,4.5 +19191,0,0.326304,1,1,0,2,5,,3,1,Huber,St,1632002,0.227,0.553,0,7.831296,8,4.5 +19434,0,0.294066,1,1,0,2,5,,3,1,Erwin,St,1713508,0,0.294,0,7.057594,8,4.5 +19462,0,0.343283,1,1,0,2,5,,3,2,Buffalo,St,1712103,0.172,0.515,0,8.238786,8,4.5 +22081,-1,0.231127,0,2,0,2,3,,3,1,Warren,Ave,4700429,2.444,2.675,0,5.547043,5,5 +22451,-1,0.048506,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.959,1.007,0,1.164139,6,4.5 +22453,-1,0.220475,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.738,0.959,0,5.291398,6,4.5 +22454,-1,0.053268,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.685,0.738,0,1.278431,6,4.5 +22613,-1,0.348169,0,4,0,2,4,DV2,3,2,Oakland,St,4704923,0.586,0.934,0,8.356062,6,4.5 +22795,0,0.250264,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.303,1.553,0,6.006347,5,5 +23153,0,0.238398,1,1,0,2,4,,3,1,Grand,Blvd,4705610,0.246,0.484,0,5.721541,6,4.5 +23166,0,0.107035,1,1,0,2,4,,3,1,Dickerson,St,4705398,2.309,2.416,0,2.568828,6,4.5 +23234,0,0.160757,1,1,0,2,5,,3,1,McDougall,St,4704611,0.875,1.035,0,3.858176,8,4.5 +23606,0,0.347216,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.232,5.579,0,8.333186,5,5 +23813,-1,0.223469,0,2,0,2,4,DV2,3,1,Outer,Dr,4707670,0.036,0.26,0,5.363248,6,4.5 +23853,0,0.185588,1,1,0,2,3,,3,1,Mount Elliott,St,4707516,0.054,0.24,0,4.454116,5,5 +23941,1,0.407112,4,0,0,2,4,DV2,3,2,Oakland,St,4708768,2.006,2.413,0,9.770687,6,4.5 +28747,0,0.256237,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.149679,0.15,4 +28903,0,0.221764,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.322338,0.15,4 +30298,0,0.318301,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.639215,0.15,4 +30455,0,0.331936,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.966453,0.15,4 +30519,0,0.347252,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.33406,0.15,4 +30522,0,0.397171,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.532095,0.15,4 +30645,0,0.132893,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.189437,0.15,4 +30854,0,0.407231,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.773553,0.15,4 +33111,0,0.30105,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.225202,0.15,4 +33240,0,0.356783,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.562799,0.15,4 +33241,0,0.335454,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.050884,0.15,4 +33243,0,0.421484,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.115606,0.15,4 +33248,0,0.235549,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.653183,0.15,4 +33324,0,0.265989,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.38374,0.15,4 +33369,0,0.235017,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.640404,0.15,4 +33614,0,0.24984,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.996164,0.15,4 +33626,0,0.376956,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.046952,0.15,4 +33631,0,0.27033,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.487922,0.15,4 +33634,0,0.24191,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.805833,0.15,4 +33638,0,0.252572,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.061738,0.15,4 +33640,0,0.334581,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.02994,0.15,4 +33641,0,0.254174,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.100178,0.15,4 +33663,0,0.30992,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.438085,0.15,4 +33664,0,0.220055,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.28132,0.15,4 +33665,0,0.231155,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.547711,0.15,4 +10699,1,0.221274,3,0,0,1,1,,3,1,E I 94,,1576405,28.639,28.86,0,,0.58,7 +10943,1,0.465734,3,0,0,1,1,,2,1,E I 94,,1576405,27.903,28.369,0,,0.32,8.5 +11899,1,0.493985,1,0,0,1,1,RFS,2,1,W I 94/S I 75,RAMP,1577703,0,0.494,0,,0.22,6 +11902,1,0.277806,3,0,0,1,2,,2,1,S M 10,,1577509,10.82,11.097,0,,0.32,8.5 +11914,1,0.460565,1,0,0,1,1,RFS,2,1,E I 94/N I 75,RAMP,1577701,0,0.461,0,,0.22,6 +11920,1,0.442367,3,0,0,1,2,,2,1,S M 10,,1577509,8.692,9.135,0,,0.32,8.5 +12136,1,0.20688,1,0,0,1,1,ROF,2,1,E I 94/John R,RAMP,1577606,0,0.207,0,,3.07,5 +12148,0,0.082277,1,1,0,2,4,,2,1,Cass,Ave,1577605,3.036,3.118,0,1.974642,8,4.5 +12240,0,0.066056,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.096,2.162,0,1.585335,8,4.5 +12379,0,0.036949,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.544,11.581,0,0.886779,6,5 +12384,-1,1.138171,0,4,0,1,1,,3,1,S I 75,,1577705,4.271,5.409,0,,0.58,7 +12408,1,0.142241,2,0,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,1581907,1.804,1.946,0,3.413781,6,5 +12671,-1,0.258498,0,3,0,2,5,,2,1,N M 10 Service Drive,,1584210,1.038,1.297,0,6.203962,8.5,4.5 +12866,0,0.305368,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,1.484,1.79,0,7.328826,6,4.5 +12872,0,0.096541,1,1,0,2,4,,2,1,3rd,St,4708767,0.577,0.673,0,2.316983,8,4.5 +13045,-1,0.248102,0,3,0,1,2,,2,1,N M 10,,1577510,10.832,11.08,0,,0.32,8.5 +13099,-1,0.434771,0,3,0,1,2,,2,1,N M 10,,1577510,8.713,9.148,0,,0.32,8.5 +13105,1,0.180467,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.168,4.349,0,4.331216,6,4.5 +13115,1,0.11595,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.633,3.749,0,2.782789,8,4.5 +13254,-1,0.648001,0,3,0,1,1,,3,1,S I 75,,1577705,2.837,3.485,0,,0.58,7 +13284,1,0.170715,1,0,0,1,1,RFS,3,1,S I 75/E I 94,RAMP,1577708,0,0.171,0,,0.22,6 +13287,1,0.125789,1,0,0,1,1,ROF,3,1,E I 94/Russel,RAMP,1577707,0,0.126,0,,3.07,5 +13340,1,1.156564,4,0,0,1,1,,3,1,N I 75,,1577706,4.281,5.437,0,,0.58,7 +13353,1,0.399956,3,0,0,1,1,,3,1,N I 75,,1577706,2.861,3.261,0,,0.58,7 +13390,1,0.157324,1,0,0,1,2,RON,2,1,Grand/N M 10,RAMP,1585307,0,0.157,0,,1.09,4 +13464,1,0.124961,4,0,0,2,3,,2,1,Forest,Ave,1584908,1.001,1.126,0,2.999071,6,5 +13479,1,0.154485,1,0,0,1,2,ROF,2,1,S M 10/Grand,RAMP,1584902,0,0.154,0,,3.07,5 +13675,1,0.167786,1,0,0,1,1,RON,3,1,Holbrook/S I 75,RAMP,1585710,0,0.168,0,,1.09,4 +13686,0,0.386592,1,1,0,2,4,,3,1,Holbrook,St,1585801,0.771,1.158,0,9.278207,6,4.5 +13715,0,0.068867,1,1,0,2,5,,3,1,Milwaukee,St,1585705,0.859,0.928,0,1.652815,8,4.5 +13740,0,0.124978,1,1,0,2,5,,2,1,Ferry,St,1585703,0,0.125,0,2.999471,8.5,4.5 +13753,0,0.080146,2,2,0,2,5,,3,1,Chene,St,1587501,2.687,2.768,0,1.923513,8,4.5 +13842,1,0.183873,1,0,0,1,1,ROF,3,1,N I 75/Holbrook,RAMP,1586108,0,0.184,0,,2.24,5 +14004,0,0.08785,1,1,0,2,5,,3,1,Ferry,St,1585703,1.148,1.236,0,2.108396,8,4.5 +14019,0,0.138231,1,1,0,2,5,,3,1,Piquette,St,1585704,0.13,0.268,0,3.317541,8,4.5 +14154,1,0.148196,1,0,0,1,2,RON,2,1,Grand River/N M 10,RAMP,1585402,0,0.148,0,,1.09,4 +14217,-1,0.270071,0,3,0,1,1,,3,1,W I 94,,1588802,28.558,28.828,0,,0.58,7 +14220,0,0.215248,1,1,0,2,5,,3,1,Piquette,St,1585704,0.337,0.552,0,5.165956,8,4.5 +14296,0,0.08521,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.508,0.593,0,2.045041,8.5,4.5 +14364,-1,0.489621,0,3,0,1,1,,2,1,W I 94,,1588802,27.852,28.341,0,,0.32,8.5 +14511,0,0.095028,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.375,4.47,0,2.280666,6,5 +14518,0,0.054389,3,3,1,2,3,,2,1,Woodward,Ave,1591001,3.75,3.804,0,1.305342,6,5 +14569,1,0.258052,3,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,1590905,0.273,0.531,0,6.19324,5,5 +15414,-1,0.23364,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0.661,0.895,0,5.607369,8,4.5 +15526,-1,0.139602,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,0.911,1.05,0,3.350439,8.5,4.5 +15605,1,0.178254,2,0,0,2,5,,2,1,Hamilton,,1591107,1.031,1.209,0,4.278107,8.5,4.5 +15982,1,0.085629,1,0,0,2,5,,2,1,S M 10 Service Drive,,1598402,0,0.086,0,2.055088,8.5,4.5 +15990,-1,0.137835,0,2,0,2,5,,2,1,Medbury,St,1598202,0.126,0.264,0,3.308037,8.5,4.5 +15993,0,0.127323,1,1,0,2,5,,3,1,Baltimore,St,1598107,0.452,0.579,0,3.05576,8,4.5 +16000,0,0.126488,1,1,0,2,5,,2,1,Lothrop,Rd,1598105,0,0.126,0,3.035722,8.5,4.5 +16263,0,0.128878,1,1,0,2,5,,2,1,Selden,St,1607907,0,0.129,0,3.093063,8.5,4.5 +16286,-1,0.258899,0,2,0,2,4,,3,1,14th,St,1621303,0.611,0.87,0,6.213567,6,4.5 +16429,0,0.071392,1,1,0,2,5,,3,1,Temple,St,1608504,0.725,0.796,0,1.713414,8,4.5 +17230,1,0.125771,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.669,6.795,0,3.0185,6,5 +17388,1,0.339339,2,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.559,0.898,0,8.144131,8,4.5 +17407,0,0.092336,1,1,0,2,4,,2,1,3rd,St,1625110,0,0.092,0,2.21606,8,4.5 +19004,0,0.11971,1,1,0,2,4,,3,2,Caniff,St,1632110,0.555,0.675,0,2.87303,6,4.5 +19253,0,0.188468,1,1,0,2,5,,3,2,Dequindre,St,1805203,0,0.188,0,4.523233,8,4.5 +21634,-1,0.140959,0,2,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,4700471,1.629,1.77,0,3.383027,6,5 +21945,-1,0.126675,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.549,0.675,0,3.040204,6,5 +22646,0,0.098248,1,1,0,2,5,,3,1,Beaubien,St,4705574,0.551,0.649,0,2.35795,8,4.5 +22876,1,0.175943,1,0,0,1,1,RFS,3,1,N I 75/E I 94,RAMP,4705723,0.44,0.616,0,,0.22,6 +22928,1,0.09783,3,0,0,2,4,,3,1,Brush,St,4705554,1.042,1.14,0,2.347919,6,4.5 +22934,-1,0.155239,0,3,0,2,4,,3,1,John R,St,4705731,2.113,2.268,0,3.725726,6,4.5 +22962,0,0.082406,1,1,0,2,5,,3,1,Beaubien,St,4705574,0.759,0.842,0,1.977748,8,4.5 +23056,1,0.176977,1,0,0,1,1,RFS,3,1,S I 75/W I 94,RAMP,4705662,0.294,0.471,0,,0.22,6 +23231,0,0.321398,2,2,0,2,5,,3,1,McDougall,St,4704611,1.196,1.518,0,7.71354,8,4.5 +23414,0,0.062836,2,2,0,2,4,,3,1,Russell,St,4705681,0.821,0.883,0,1.508057,6,4.5 +23574,-1,0.059686,0,3,0,2,4,,2,1,John R,St,4705731,1.886,1.945,0,1.432471,8,4.5 +23922,-1,0.19301,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706942,0.251,0.444,0,4.632243,5,5 +23951,0,0.036463,1,1,0,2,4,,3,1,Oakland,St,4708768,0.25,0.287,0,0.875112,6,4.5 +23993,1,0.035426,3,0,0,2,5,,2,1,2nd,Ave,4710491,0,0.035,0,0.850212,8.5,4.5 +24467,-1,0.180057,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.305,1.485,0,4.321368,6,4.5 +24507,-1,0.135957,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.633,0.769,0,3.262961,8,4.5 +30584,0,0.135522,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.252527,0.15,4 +30591,0,0.093797,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.25113,0.15,4 +30650,0,0.256129,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.147104,0.15,4 +32061,0,0.234962,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.639079,0.15,4 +33261,0,0.084553,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.029276,0.15,4 +33267,0,0.177405,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.257712,0.15,4 +33273,0,0.274236,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.58166,0.15,4 +33276,0,0.231837,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.564085,0.15,4 +33286,0,0.161384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.873218,0.15,4 +33296,0,0.130186,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.124458,0.15,4 +33833,0,0.299778,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.19468,0.15,4 +33863,0,0.306771,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.362503,0.15,4 +37887,0,0.122959,2,2,1,2,5,,3,3,Town Center,Dr,1882209,0,0.123,0,2.951006,8,4.5 +10750,1,0.160675,3,0,0,1,1,,3,1,E I 94,,1576405,26.45,26.61,0,,0.58,7 +11457,1,0.283094,3,0,0,1,1,,3,1,E I 94,,1576405,26.993,27.276,0,,0.58,7 +11904,1,0.302493,3,0,0,1,2,,2,1,S M 10,,1577509,9.953,10.255,0,,0.32,8.5 +11968,-1,0.036258,0,2,0,2,5,,3,1,W I 94 Service Drive,,1584002,0.167,0.203,0,0.870198,8,4.5 +12106,1,0.263854,3,0,0,2,5,,3,1,Kirby,St,1581707,0.171,0.435,0,6.332503,8,4.5 +12125,1,0.128835,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.325,0.454,0,3.092045,8.5,4.5 +12127,0,0.293144,2,2,0,2,4,,3,1,Trumbull,St,1577506,2.542,2.835,0,7.035461,6,4.5 +12137,0,0.256828,2,2,0,2,4,,3,1,Trumbull,St,1577506,2.094,2.351,0,6.163863,6,4.5 +12258,1,0.180407,1,0,0,1,1,ROF,3,1,E I 94/Trumbull,RAMP,1577505,0,0.18,0,,2.24,5 +12267,1,0.258795,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0.446,0.704,0,6.211073,5,5 +12274,1,0.155377,1,0,0,1,1,RON,3,1,Linwood/E I 94,RAMP,1577501,0,0.155,0,,1.09,4 +12279,0,0.284517,1,1,0,2,3,,3,1,Linwood,St,1577410,0.165,0.45,0,6.828413,5,5 +12457,0,0.1771,2,2,0,2,3,,3,1,Grand River,Ave,1577408,10.473,10.65,0,4.250397,5,5 +12654,1,0.064145,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.883,0.947,0,1.539488,5,5 +12769,-1,0.143724,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.259,0.403,0,3.449377,8.5,4.5 +12818,-1,0.079217,0,4,0,2,4,DV2,2,1,Anthony Wayne,Dr,4708767,1,1.079,0,1.901206,8,4.5 +12914,1,0.23576,2,0,0,2,5,,3,1,Kirby,St,1581707,0.65,0.886,0,5.658238,8,4.5 +13053,-1,0.293357,0,3,0,1,2,,2,1,N M 10,,1577510,9.952,10.245,0,,0.32,8.5 +13150,0,0.116045,1,1,0,2,5,,3,1,Buchanan,St,1581905,1.221,1.337,0,2.785082,8,4.5 +13175,1,0.158906,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,3.141,3.3,0,3.813739,6,4.5 +13465,1,0.125647,4,0,0,2,3,,2,1,Forest,Ave,1584908,0.876,1.001,0,3.015539,6,5 +13474,1,0.138271,4,0,0,2,3,,3,1,Forest,Ave,1584908,0,0.138,0,3.318492,5,5 +13475,1,0.109615,1,0,0,1,2,ROF,2,1,S M 10/Forest,RAMP,1584907,0,0.11,0,,3.07,5 +14022,-1,0.306699,0,3,0,1,1,,3,1,W I 94,,1588802,26.295,26.602,0,,0.58,7 +14041,1,0.149956,1,0,0,1,1,ROF,3,1,W I 94/Linwood,RAMP,1589102,0,0.15,0,,2.24,5 +14222,-1,0.402172,0,3,0,1,1,,3,1,W I 94,,1588802,26.602,27.004,0,,0.58,7 +14480,1,0.135709,1,0,0,1,2,RON,2,1,Forest/N M 10,RAMP,1585310,0,0.136,0,,1.09,4 +17235,1,0.267416,4,0,0,2,3,DIV,3,1,Warren,Ave,1628604,6.121,6.389,0,6.417992,5,5 +17413,0,0.087613,1,1,1,2,4,,3,1,Lincoln,St,1625103,0,0.088,0,2.102712,6,4.5 +21751,-1,0.268959,0,4,0,2,3,DIV,3,1,Warren,Ave,4700429,0,0.269,0,6.455016,5,5 +21817,-1,0.29817,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.474,0.772,0,7.156086,5,5 +23151,-1,0.22618,0,2,0,2,3,,3,1,14th,St,4705601,1.157,1.384,0,5.428315,5,5 +23207,0,0.097642,1,1,1,2,4,,3,1,14th,St,4705601,1.872,1.969,0,2.343412,6,4.5 +23689,1,0.079048,4,0,0,2,4,DV2,2,1,Anthony Wayne,Dr,5500021,0.017,0.096,0,1.897163,8,4.5 +24525,-1,0.166507,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,0.277,0.444,0,3.996164,6,4.5 +30363,0,0.40804,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.79297,0.15,4 +33121,0,0.273317,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.559599,0.15,4 +33301,0,0.231622,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.558938,0.15,4 +33805,0,0.23267,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.584091,0.15,4 +11641,0,0.186742,1,1,0,2,5,,3,1,Buchanan,St,1581905,1.035,1.221,0,4.481805,8,4.5 +12031,0,0.235847,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.799,1.035,0,5.66033,8,4.5 +12413,1,0.175135,1,0,0,1,1,ROF,3,1,W I 96/Warren,RAMP,1582009,0,0.175,0,,2.24,5 +12414,1,0.165666,1,0,0,1,1,RON,3,1,M L King/W I 96,RAMP,1582010,0,0.166,0,,1.09,4 +12462,0,0.19625,2,2,0,2,3,,3,1,Grand River,Ave,1577408,10.053,10.249,0,4.710008,5,5 +12921,1,0.231845,1,0,0,1,1,ROF,3,1,E I 96/M L King,RAMP,1581906,0,0.232,0,,2.24,5 +12972,-1,0.16751,0,4,0,1,1,,3,1,W I 96,,1577405,3.818,3.986,0,,0.58,7 +13046,1,0.127451,4,0,0,1,1,,3,1,E I 96,,1577404,3.834,3.961,0,,0.58,7 +13949,1,0.429839,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0.263,0.692,0,10.316133,8,4.5 +14218,1,0.287881,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0.692,0.98,0,6.909144,8,4.5 +16057,0,0.323818,1,1,0,2,5,,3,1,Lawton,St,1608601,0.676,0.999,0,7.771626,8,4.5 +16324,0,0.11285,1,1,0,2,5,,3,1,Lawton,St,1608601,0.563,0.676,0,2.708404,8,4.5 +17245,0,0.214753,2,2,1,2,3,,3,1,Warren,Ave,1628604,5.315,5.53,0,5.154077,5,5 +24288,1,0.14819,1,0,0,1,1,RON,3,1,Warren/E I 96,RAMP,4710288,0,0.148,0,,1.09,4 +24445,1,0.41017,2,0,0,2,5,,3,1,E I 96 Service Drive,,4710513,0,0.41,0,9.844091,8,4.5 +30451,0,0.304857,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.316568,0.15,4 +33120,0,0.395156,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.483747,0.15,4 +12756,0,0.187455,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.458,0.646,0,4.498912,8,4.5 +12970,-1,0.380312,0,4,0,1,1,,3,1,W I 96,,1577405,3.986,4.366,0,,0.58,7 +13042,1,0.325953,4,0,0,1,1,,3,1,E I 96,,1577404,3.961,4.287,0,,0.58,7 +22873,0,0.225981,1,1,0,2,5,,3,1,24th,St,4705563,1.456,1.681,0,5.423549,8,4.5 +12327,0,0.090811,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.708,0.799,0,2.179462,8,4.5 +12488,0,0.062412,1,1,0,2,5,,3,1,Buchanan,St,1581905,0.646,0.708,0,1.497877,8,4.5 +10792,1,0.102245,3,0,0,1,1,,3,1,E I 94,,1576405,26.348,26.45,0,,0.58,7 +12228,-1,0.130637,0,2,0,2,5,,3,1,W I 94 Service Drive,,1584002,0,0.131,0,3.135295,8,4.5 +12400,1,0.198976,1,0,0,1,1,ROF,3,1,E I 96/Warren,RAMP,1581706,0,0.199,0,,2.24,5 +12412,1,0.178776,1,0,0,1,1,RON,3,1,Warren/W I 96,RAMP,1582008,0,0.179,0,,1.09,4 +12527,0,0.074605,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.841,9.916,0,1.790521,5,5 +12561,1,0.081447,2,0,0,2,5,,3,1,Kirby,St,1581707,0.006,0.088,0,1.954736,8,4.5 +12973,-1,0.275458,0,4,0,1,1,,3,1,W I 96,,1577405,3.543,3.818,0,,0.58,7 +13047,1,0.307598,4,0,0,1,1,,3,1,E I 96,,1577404,3.526,3.834,0,,0.58,7 +13315,1,0.240591,2,0,0,1,1,RFF,3,1,I 94/E I 96,RAMP,1581702,0.319,0.559,0,,0.58,7 +14268,1,0.236136,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,1.076,1.312,0,5.667256,8,4.5 +16930,0,0.262013,1,1,0,2,5,,3,1,Lawton,St,1608601,0.999,1.261,0,6.288315,8,4.5 +17248,0,0.091903,2,2,1,2,3,,3,1,Warren,Ave,1628604,5.151,5.243,0,2.205682,5,5 +24235,1,0.25442,1,0,0,1,1,RFS,3,1,W I 96/E I 94,RAMP,4710382,0.171,0.425,0,,0.22,6 +12017,1,0.058702,2,0,0,2,5,,3,1,E I 96 Service Drive,,1581309,0.194,0.253,0,1.408846,8,4.5 +14000,1,0.03612,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0.98,1.016,0,0.86687,8,4.5 +17249,0,0.060955,3,3,1,2,3,,3,1,Warren,Ave,1628604,5.09,5.151,0,1.46293,5,5 +24236,1,0.170724,1,0,0,1,1,RFF,3,1,W I 96/I 94,RAMP,4710382,0,0.171,0,,0.58,7 +12018,1,0.033799,2,0,0,2,5,,3,1,E I 96 Service Drive,,1581309,0.253,0.287,0,0.811179,8,4.5 +13837,1,0.059941,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,1.016,1.076,0,1.438579,8,4.5 +13006,1,0.143026,2,0,0,1,1,RFS,3,1,W I 94/I 96,RAMP,1581704,0,0.143,0,,0.22,6 +12401,1,0.006386,2,0,0,2,5,,3,1,Kirby,St,1581707,0,0.006,0,0.153258,8,4.5 +12532,0,0.027945,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.813,9.841,0,0.670679,5,5 +12645,1,0.03315,1,0,0,1,1,RON,3,1,Grand River/W I 94,RAMP,1581705,0,0.033,0,,1.09,4 +19534,1,0.028957,1,0,0,1,1,RON,3,1,E Grand River/W I 94,RAMP,1877910,0,0.029,0,,1.09,4 +17246,0,0.071653,2,2,1,2,3,,3,1,Warren,Ave,1628604,5.243,5.315,0,1.719667,5,5 +12229,-1,0.036356,0,1,0,2,5,,3,1,W I 94 Service Drive,,1584002,0.131,0.167,0,0.872546,8,4.5 +12282,0,0.105415,1,1,0,2,3,,3,1,Linwood,St,1577410,0,0.105,0,2.529953,5,5 +12522,0,0.136732,2,2,0,2,3,,3,1,Grand River,Ave,1577408,9.916,10.053,0,3.281561,5,5 +12281,0,0.060004,1,1,0,2,3,,3,1,Linwood,St,1577410,0.105,0.165,0,1.440096,5,5 +12320,1,0.083602,2,0,0,2,5,,3,1,Kirby,St,1581707,0.088,0.171,0,2.006458,8,4.5 +12924,1,0.233811,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.65,0.883,0,5.611461,5,5 +16980,0,0.325917,1,1,0,2,5,,3,1,Lawton,St,1608601,0.237,0.563,0,7.822012,8,4.5 +32187,0,0.415987,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.983696,0.15,4 +13151,1,0.089493,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.56,0.65,0,2.147832,5,5 +21952,-1,0.090635,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.383,0.474,0,2.175231,5,5 +14152,1,0.009589,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0.253,0.263,0,0.230127,8,4.5 +14392,1,0.011108,2,0,0,2,5,,3,1,Maybury Grand,St,1589709,0.242,0.253,0,0.266602,8,4.5 +16108,0,0.011228,1,1,0,2,5,,3,1,Lawton,St,1608601,0.226,0.237,0,0.269476,8,4.5 +32188,0,0.232509,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.580227,0.15,4 +30364,0,0.042766,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.026382,0.15,4 +12461,0,0.223707,2,2,0,2,3,,3,1,Grand River,Ave,1577408,10.249,10.473,0,5.368968,5,5 +17242,0,0.1396,2,2,0,2,3,,3,1,Warren,Ave,1628604,5.53,5.669,0,3.350409,5,5 +23238,0,0.081509,1,1,1,2,4,,3,1,14th,St,4705601,1.71,1.792,0,1.956217,6,4.5 +23576,-1,0.161969,0,2,0,2,3,,3,1,14th,St,4705601,1.549,1.71,0,3.887258,5,5 +32899,0,0.140879,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.381092,0.15,4 +33292,0,0.047824,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.147783,0.15,4 +23551,0,0.079625,1,1,1,2,4,,3,1,14th,St,4705601,1.792,1.872,0,1.91099,6,4.5 +22863,-1,0.149729,0,2,0,2,3,,3,1,14th,St,4705601,1.384,1.533,0,3.593507,5,5 +22572,-1,0.015282,0,2,0,2,3,,3,1,14th,St,4705601,1.533,1.549,0,0.366763,5,5 +30477,0,0.124058,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.977393,0.15,4 +12259,1,0.09259,2,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,1.425,1.518,0,2.222161,5,5 +12260,1,0.247138,4,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,1.178,1.425,0,5.931301,5,5 +12326,0,0.138066,1,1,1,2,4,,3,1,McGraw,St,1581903,3.884,4.022,0,3.313579,6,4.5 +13181,0,0.199641,2,2,0,2,4,,3,1,Grand,Blvd,1577308,2.618,2.818,0,4.791382,6,4.5 +16800,-1,0.224505,0,2,0,2,4,,3,1,14th,St,1621303,0.104,0.328,0,5.38811,6,4.5 +23631,-1,0.094767,0,2,0,2,4,,3,1,14th,St,4705601,2.253,2.348,0,2.274405,6,4.5 +23905,-1,0.19154,0,2,0,2,5,,3,1,W I 94 Service Drive,,4707026,0,0.192,0,4.59696,8,4.5 +30776,0,0.178973,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.295359,0.15,4 +30791,0,0.096273,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.310544,0.15,4 +32060,0,0.250288,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.006902,0.15,4 +33300,0,0.247888,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.949323,0.15,4 +33660,0,0.270991,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.503786,0.15,4 +12755,0,0.128515,1,1,0,2,4,,3,1,McGraw,St,1581903,3.688,3.817,0,3.084357,6,4.5 +13013,0,0.075698,1,1,0,2,4,,3,1,McGraw,St,1581903,3.612,3.688,0,1.816742,6,4.5 +13548,0,0.1634,1,1,0,2,3,,3,1,Linwood,St,1584609,0,0.163,0,3.921609,5,5 +32790,0,0.156638,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.759321,0.15,4 +17091,-1,0.103764,0,2,0,2,4,,3,1,14th,St,1621303,0,0.104,0,2.490346,6,4.5 +30789,0,0.115114,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.762727,0.15,4 +12567,0,0.067912,1,1,1,2,4,,3,1,McGraw,St,1581903,3.817,3.884,0,1.629896,6,4.5 +13185,0,0.16417,2,2,0,2,4,,3,1,Grand,Blvd,1577308,2.454,2.618,0,3.940069,6,4.5 +14574,1,0.007618,2,0,0,2,3,,3,1,Rosa Parks,Blvd,1590905,0.079,0.087,0,0.182842,5,5 +16521,-1,0.282991,0,2,0,2,4,,3,1,14th,St,1621303,0.328,0.611,0,6.791772,6,4.5 +17408,0,0.010815,1,1,0,2,3,,3,1,Lothrop,St,1625106,0.52,0.531,0,0.259562,5,5 +23923,-1,0.250639,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706942,0,0.251,0,6.01534,5,5 +33886,0,0.300825,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.21979,0.15,4 +32059,0,0.048881,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.173154,0.15,4 +14573,1,0.153834,2,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,1590905,0.087,0.241,0,3.692018,5,5 +14572,1,0.031871,3,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,1590905,0.241,0.273,0,0.764894,5,5 +11453,1,0.291242,3,0,0,1,1,,3,1,E I 94,,1576405,26.61,26.901,0,,0.58,7 +11633,1,0.11061,3,0,0,2,5,,3,1,Kirby,St,1581707,0.435,0.546,0,2.65465,8,4.5 +12264,1,0.324404,2,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0.759,1.083,0,7.785694,5,5 +22624,-1,0.231043,0,2,0,2,4,,3,1,14th,St,4705601,2.022,2.253,0,5.545038,6,4.5 +22915,-1,0.053057,0,2,0,2,4,,3,1,14th,St,4705601,1.969,2.022,0,1.273357,6,4.5 +12113,0,0.074813,1,1,1,2,4,,3,1,McGraw,St,1581903,4.022,4.097,0,1.795506,6,4.5 +12262,1,0.09504,2,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,1.083,1.178,0,2.280949,5,5 +10761,1,0.091093,3,0,0,1,1,,3,1,E I 94,,1576405,26.901,26.993,0,,0.58,7 +12265,1,0.054599,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0.704,0.759,0,1.310374,5,5 +13221,1,0.104433,2,0,0,2,5,,3,1,Kirby,St,1581707,0.546,0.65,0,2.506385,8,4.5 +24276,1,0.074044,2,0,0,1,1,RON,3,1,14th/E I 94,RAMP,4710299,0,0.074,0,,1.09,4 +13176,1,0.278212,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,2.863,3.141,0,6.6771,6,4.5 +16235,0,0.357058,2,2,0,2,5,,3,1,Holden,St,1609803,0.217,0.574,0,8.569401,8,4.5 +24532,-1,0.213059,0,2,0,2,4,DV2,3,1,Grand,Blvd,4710494,0,0.213,0,5.113408,6,4.5 +33272,0,0.28112,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.746876,0.15,4 +33274,0,0.263518,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.324432,0.15,4 +13179,0,0.045337,2,2,0,2,4,,3,1,Grand,Blvd,1577308,2.818,2.863,0,1.088082,6,4.5 +22971,0,0.065102,2,2,0,2,4,,3,1,Lincoln,St,4705588,0,0.065,0,1.562457,6,4.5 +33299,0,0.143111,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.434675,0.15,4 +24529,-1,0.064118,0,2,0,2,4,DV2,3,1,Grand,Blvd,4710494,0.213,0.277,0,1.538829,6,4.5 +11903,1,0.564602,3,0,0,1,2,,2,1,S M 10,,1577509,10.255,10.82,0,,0.32,8.5 +12033,1,0.24099,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,1.281,1.522,0,5.783758,5,5 +12169,0,0.168825,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.512,1.68,0,4.051796,6,4.5 +12447,0,0.385782,2,2,0,2,3,,3,1,Grand River,Ave,1577408,10.816,11.201,0,9.258774,5,5 +12581,1,0.238763,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.855,1.093,0,5.730311,8.5,4.5 +12857,0,0.111814,1,1,0,2,5,,3,1,Canfield,St,1584102,0.415,0.526,0,2.683538,8,4.5 +13048,-1,0.586618,0,3,0,1,2,,2,1,N M 10,,1577510,10.245,10.832,0,,0.32,8.5 +13167,-1,0.187086,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.841,1.028,0,4.490064,8.5,4.5 +13469,1,0.268726,4,0,0,2,3,,3,1,Forest,Ave,1584908,0.453,0.722,0,6.449424,5,5 +21378,-1,0.240871,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,1.105,1.346,0,5.780903,5,5 +22923,1,0.284111,2,0,0,2,3,,3,1,Rosa Parks,Blvd,4705605,1.127,1.411,0,6.818675,5,5 +23642,1,0.320695,3,0,0,2,3,,3,1,Rosa Parks,Blvd,4705605,1.422,1.743,0,7.69667,5,5 +32997,0,0.19281,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.627439,0.15,4 +33376,0,0.265214,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.365127,0.15,4 +33512,0,0.261176,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.268213,0.15,4 +12207,1,0.213498,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,1.068,1.281,0,5.12396,5,5 +21544,-1,0.213473,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.892,1.105,0,5.123344,5,5 +23494,-1,0.213881,0,2,0,2,3,,3,1,14th,St,4705601,0.944,1.157,0,5.13314,5,5 +12490,1,0.120169,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,0.947,1.068,0,2.884053,5,5 +21633,-1,0.120163,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,0.772,0.892,0,2.88391,5,5 +22506,-1,0.010392,0,2,0,2,3,,3,1,14th,St,4705601,0.933,0.944,0,0.249416,5,5 +22636,1,0.011064,3,0,0,2,3,,3,1,Rosa Parks,Blvd,4705605,1.411,1.422,0,0.265539,5,5 +12166,0,0.138598,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.793,1.931,0,3.326346,6,4.5 +12271,1,0.138296,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0.145,0.284,0,3.319108,5,5 +13338,0,0.23904,1,1,0,2,5,,3,1,Canfield,St,1584102,0.111,0.35,0,5.736971,8,4.5 +13472,1,0.170065,4,0,0,2,3,,3,1,Forest,Ave,1584908,0.215,0.385,0,4.081548,5,5 +13473,1,0.076502,4,0,0,2,3,,3,1,Forest,Ave,1584908,0.138,0.215,0,1.836044,5,5 +32887,0,0.315218,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.565227,0.15,4 +32995,0,0.180859,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.340622,0.15,4 +33000,0,0.151435,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.634443,0.15,4 +12272,1,0.145392,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0,0.145,0,3.489418,5,5 +12456,0,0.166117,2,2,0,2,3,,3,1,Grand River,Ave,1577408,10.65,10.816,0,3.986814,5,5 +13337,0,0.111007,1,1,0,2,5,,3,1,Canfield,St,1584102,0,0.111,0,2.664173,8,4.5 +12269,1,0.162144,3,0,0,2,3,,3,1,Rosa Parks,Blvd,1577504,0.284,0.446,0,3.891449,5,5 +12168,0,0.112567,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.68,1.793,0,2.701614,6,4.5 +13026,0,0.064575,1,1,0,2,5,,3,1,Canfield,St,1584102,0.35,0.415,0,1.549796,8,4.5 +12141,0,0.08081,2,2,0,2,3,,3,1,Trumbull,St,1577506,1.931,2.012,0,1.93944,5,5 +33288,0,0.048171,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.156111,0.15,4 +13471,1,0.068196,4,0,0,2,3,,3,1,Forest,Ave,1584908,0.385,0.453,0,1.636706,5,5 +33289,0,0.089535,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.148843,0.15,4 +33290,0,0.03762,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.90289,0.15,4 +12138,0,0.081585,2,2,0,2,3,,3,1,Trumbull,St,1577506,2.012,2.094,0,1.958047,5,5 +12181,0,0.114541,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.201,1.315,0,2.748986,6,4.5 +12231,0,0.056425,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.032,1.088,0,1.354209,6,4.5 +12380,0,0.30422,2,2,0,2,3,,3,1,Grand River,Ave,1577408,11.24,11.544,0,7.301282,5,5 +12840,1,0.143429,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,1.62,1.763,0,3.442294,5,5 +13456,1,0.101633,1,0,0,1,2,ROF,2,1,S M 10/Grand River,RAMP,1585001,0,0.102,0,,3.07,5 +21953,-1,0.177392,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,1.411,1.588,0,4.25742,5,5 +30356,0,0.044365,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.064763,0.15,4 +30362,0,0.242322,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.815722,0.15,4 +30740,0,0.197567,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.741617,0.15,4 +12183,0,0.112926,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.088,1.201,0,2.710214,6,4.5 +12170,0,0.165806,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.346,1.512,0,3.979337,6,4.5 +13152,1,0.073579,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,1.546,1.62,0,1.765897,5,5 +22087,-1,0.049198,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,1.362,1.411,0,1.180761,5,5 +12171,0,0.019417,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.326,1.346,0,0.466,6,4.5 +12381,0,0.013749,2,2,1,2,3,,3,1,Grand River,Ave,1577408,11.226,11.24,0,0.329966,5,5 +13322,1,0.024064,2,0,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,1581907,1.522,1.546,0,0.577545,5,5 +21279,-1,0.015544,0,2,0,2,3,DIV,3,1,Martin Luther King Jr,Blvd,4700471,1.346,1.362,0,0.373055,5,5 +12172,0,0.01104,2,2,0,2,4,,3,1,Trumbull,St,1577506,1.315,1.326,0,0.264969,6,4.5 +12441,0,0.024924,2,2,1,2,3,,3,1,Grand River,Ave,1577408,11.201,11.226,0,0.598185,5,5 +16394,0,0.150847,1,1,0,2,5,,3,1,Temple,St,1608504,0.574,0.725,0,3.620333,8,4.5 +30355,0,0.150305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.60731,0.15,4 +12235,0,0.113109,2,2,0,2,4,,3,1,Trumbull,St,1577506,0.918,1.032,0,2.714625,6,4.5 +33363,0,0.152654,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.663695,0.15,4 +30358,0,0.012118,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.290821,0.15,4 +13247,1,0.025504,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,1.32,1.345,0,0.612091,8.5,4.5 +11658,1,0.008824,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,1.311,1.32,0,0.211778,8.5,4.5 +12655,1,0.041338,2,0,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,1581907,1.763,1.804,0,0.992108,6,5 +12941,-1,0.010074,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,1.028,1.038,0,0.241776,8.5,4.5 +21756,-1,0.041238,0,2,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,4700471,1.588,1.629,0,0.989708,6,5 +12342,1,0.01019,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,1.093,1.104,0,0.244565,8.5,4.5 +12050,-1,0.262665,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.466,0.729,0,6.303954,8.5,4.5 +12768,1,0.229015,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.626,0.855,0,5.496355,8.5,4.5 +12821,0,0.174667,1,1,0,2,4,,2,1,3rd,St,4708767,0.673,0.848,0,4.191999,8,4.5 +13467,0,0.093614,2,2,0,2,3,,2,1,Forest,Ave,1584908,0.773,0.866,0,2.246738,6,5 +32999,0,0.230862,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.540678,0.15,4 +33302,0,0.072615,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.742761,0.15,4 +33866,0,0.183687,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.408495,0.15,4 +12580,0,0.093652,1,1,0,2,5,,3,1,Canfield,St,1584102,0.526,0.62,0,2.247646,8,4.5 +13027,1,0.086473,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.539,0.626,0,2.075357,8.5,4.5 +13459,1,0.11075,1,0,0,1,2,RON,2,1,Forest/S M 10,RAMP,1584909,0,0.111,0,,1.09,4 +13870,1,0.098444,1,0,0,1,2,ROF,2,1,N M 10/Forest,RAMP,1585401,0,0.098,0,,3.07,5 +11969,1,0.033632,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.454,0.487,0,0.807175,8.5,4.5 +12343,-1,0.045114,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.421,0.466,0,1.082728,8.5,4.5 +13468,1,0.051289,2,0,0,2,3,,2,1,Forest,Ave,1584908,0.722,0.773,0,1.230932,6,5 +13246,1,0.051941,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.487,0.539,0,1.246591,8.5,4.5 +12506,-1,0.018364,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.403,0.421,0,0.44073,8.5,4.5 +11659,-1,0.112545,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.729,0.841,0,2.701082,8.5,4.5 +30586,0,0.108284,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.598817,0.15,4 +30587,0,0.015112,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.362689,0.15,4 +40553,1,0.037395,2,0,0,2,4,,4,3,Tienken,Rd,626010,3.429,3.466,0,0.897489,4.5,4.5 +13466,1,0.00915,4,0,0,2,3,,2,1,Forest,Ave,1584908,0.866,0.876,0,0.219603,6,5 +10707,1,0.373258,3,0,0,1,1,,2,1,E I 94,,1576405,27.317,27.69,0,,0.32,8.5 +11911,1,0.014001,3,0,0,1,2,,2,1,S M 10,,1577509,9.735,9.749,0,,0.32,8.5 +11912,1,0.365144,3,0,0,1,2,,2,1,S M 10,,1577509,9.37,9.735,0,,0.32,8.5 +12085,1,0.308084,1,0,0,1,1,RFS,3,1,E I 94/N M 10,RAMP,1577508,0,0.308,0,,0.22,6 +12236,0,0.055584,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.438,2.493,0,1.334012,8,4.5 +12434,0,0.313219,1,1,0,2,5,,2,1,S M 10 Service Drive,,1584209,0,0.313,0,7.517246,8.5,4.5 +12697,1,0.308803,1,0,0,1,1,RFS,2,1,S M 10/E I 94,RAMP,1577603,0,0.309,0,,0.22,6 +12709,1,0.364564,1,0,0,1,1,RFS,2,1,N M 10/E I 94,RAMP,1577602,0,0.364,0,,0.22,6 +12783,-1,0.178717,0,3,0,2,4,,2,1,3rd,St,4708767,1.531,1.709,0,4.289208,8,4.5 +13076,-1,0.33199,0,3,0,1,2,,2,1,N M 10,,1577510,9.375,9.707,0,,0.32,8.5 +13386,1,0.306494,1,0,0,1,1,RFS,2,1,W I 94/N M 10,RAMP,1585309,0,0.306,0,,0.22,6 +13476,1,0.401939,1,0,0,1,1,RFS,2,1,W I 94/S M 10,RAMP,1584906,0,0.402,0,,0.22,6 +13477,1,0.324311,1,0,0,1,1,RFS,3,1,S M 10/W I 94,RAMP,1584905,0,0.324,0,,0.22,6 +13609,1,0.310243,1,0,0,1,1,RFS,3,1,N M 10/W I 94,RAMP,1584406,0,0.31,0,,0.22,6 +14010,-1,0.367844,0,3,0,1,1,,2,1,W I 94,,1588802,27.298,27.666,0,,0.32,8.5 +14279,0,0.114927,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.393,0.508,0,2.758253,8.5,4.5 +15986,-1,0.137114,0,2,0,2,4,DV2,2,1,Palmer,St,1598203,0.124,0.262,0,3.290734,8,4.5 +15995,0,0.115265,1,1,0,2,5,,2,1,Baltimore,St,1598107,0.251,0.367,0,2.766351,8.5,4.5 +16483,0,0.313431,1,1,0,2,5,,3,1,Elijah McCoy,Dr,1609801,0.061,0.374,0,7.52234,8,4.5 +16654,0,0.124932,1,1,0,2,5,,2,1,Antoinette,St,1609806,0,0.125,0,2.998375,8.5,4.5 +33271,0,0.181802,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.363243,0.15,4 +33303,0,0.25773,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,6.185508,0.15,4 +33305,0,0.1035,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.483991,0.15,4 +33823,0,0.120564,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.893531,0.15,4 +11209,1,0.041202,3,0,0,1,1,,3,1,E I 94,,1576405,27.276,27.317,0,,0.58,7 +12087,1,0.290386,1,0,0,1,1,RFS,3,1,E I 94/S M 10,RAMP,1577507,0,0.29,0,,0.22,6 +12128,0,0.114751,2,2,0,2,4,,3,1,Trumbull,St,1577506,2.427,2.542,0,2.754014,6,4.5 +12749,0,0.255149,1,1,0,2,5,,3,1,Kirby,St,1581707,0.886,1.141,0,6.123582,8,4.5 +14007,-1,0.226374,0,3,0,1,1,,3,1,W I 94,,1588802,27.004,27.23,0,,0.58,7 +14225,-1,0.067905,0,3,0,1,1,,3,1,W I 94,,1588802,27.23,27.298,0,,0.58,7 +12133,0,0.076401,2,2,0,2,4,,3,1,Trumbull,St,1577506,2.351,2.427,0,1.833621,6,4.5 +13961,1,0.135516,1,0,0,1,1,RON,3,1,Trumbull/W I 94,RAMP,1589103,0,0.136,0,,1.09,4 +11919,1,0.152818,3,0,0,1,2,,2,1,S M 10,,1577509,9.135,9.288,0,,0.32,8.5 +12715,0,0.013903,1,1,0,2,4,,2,1,3rd,St,4708767,2.183,2.197,0,0.333674,8,4.5 +12771,-1,0.262439,0,3,0,2,4,,2,1,3rd,St,4708767,1.782,2.044,0,6.298527,8,4.5 +13096,-1,0.189058,0,4,0,1,2,,2,1,N M 10,,1577510,9.148,9.337,0,,0.32,8.5 +13118,1,0.133807,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.368,3.502,0,3.211368,8,4.5 +13389,1,0.112343,1,0,0,1,2,ROF,2,1,N M 10/Milwaukee,RAMP,1585308,0,0.112,0,,3.07,5 +13478,1,0.124565,1,0,0,1,2,RON,2,1,Milwaukee/S M 10,RAMP,1584904,0,0.125,0,,1.09,4 +14068,0,0.118538,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.146,0.264,0,2.844909,8.5,4.5 +15582,0,0.233053,1,1,0,2,5,,2,1,S M 10 Service Drive,,1591107,1.425,1.658,0,5.593263,8.5,4.5 +15997,0,0.123371,1,1,0,2,5,,2,1,Baltimore,St,1598107,0,0.123,0,2.960899,8.5,4.5 +17409,0,0.122243,1,1,0,2,5,,3,1,Baltimore,St,1625104,0,0.122,0,2.933831,8,4.5 +17412,0,0.068267,1,1,1,2,4,,3,1,Lincoln,St,1625103,0.088,0.156,0,1.638402,6,4.5 +13168,1,0.044249,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.324,3.368,0,1.061971,8,4.5 +13893,0,0.045518,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.084,0.129,0,1.092442,8.5,4.5 +15519,-1,0.037942,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,1.155,1.193,0,0.910614,8.5,4.5 +15586,1,0.048772,1,0,0,2,5,,2,1,S M 10 Service Drive,,1591107,1.376,1.425,0,1.170517,8.5,4.5 +15596,1,0.013397,2,0,0,2,5,,2,1,Hamilton,,1591107,1.274,1.287,0,0.321534,8.5,4.5 +24515,-1,0.128371,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.505,0.633,0,3.080912,8,4.5 +24524,-1,0.017681,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.444,0.461,0,0.424353,8,4.5 +13174,1,0.024074,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.3,3.324,0,0.57778,8,4.5 +13833,0,0.083851,2,2,0,2,5,,3,1,Milwaukee,St,1585705,0,0.084,0,2.012429,8,4.5 +15594,1,0.082254,2,0,0,2,5,,2,1,S M 10 Service Drive,,1591107,1.287,1.37,0,1.974088,8.5,4.5 +17411,0,0.102018,1,1,1,2,4,,3,1,Lincoln,St,1625103,0.156,0.258,0,2.448438,6,4.5 +17410,0,0.014841,1,1,0,2,4,,2,1,Lincoln,St,1625103,0.258,0.273,0,0.35619,8,4.5 +15591,1,0.006513,2,0,0,2,5,,2,1,S M 10 Service Drive,,1591107,1.37,1.376,0,0.156323,8.5,4.5 +15523,-1,0.043607,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,1.05,1.094,0,1.046563,8.5,4.5 +24516,-1,0.043713,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.461,0.505,0,1.049119,8,4.5 +15602,1,0.064836,2,0,0,2,5,,2,1,Hamilton,,1591107,1.209,1.274,0,1.556068,8.5,4.5 +15522,-1,0.048136,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,1.094,1.142,0,1.155271,8.5,4.5 +15521,-1,0.013365,0,3,0,2,5,,2,1,N M 10 Service Drive,,1591204,1.142,1.155,0,0.320755,8.5,4.5 +13388,1,0.02253,2,0,0,1,2,ROF,2,1,N M 10/Milwaukee,RAMP,1585308,0.112,0.135,0,,3.07,5 +15517,0,0.021544,1,1,0,2,5,,2,1,Baltimore,St,1591204,1.241,1.263,0,0.517054,8.5,4.5 +24355,1,0.020368,1,0,0,1,5,,2,1,Milwaukee Ramp/Baltimore Cutof,,4711347,0,0.02,0,,8.5,4.5 +13387,1,0.044466,2,0,0,1,2,ROF,2,1,N M 10/Milwaukee,RAMP,1585308,0.135,0.179,0,,3.07,5 +15518,-1,0.047882,0,2,0,2,5,,2,1,Baltimore,St,1591204,1.193,1.241,0,1.149157,8.5,4.5 +13929,0,0.01655,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.129,0.146,0,0.397201,8.5,4.5 +15516,0,0.025154,1,1,0,2,5,,2,1,Baltimore,St,1591204,1.263,1.288,0,0.603706,8.5,4.5 +11915,1,0.082827,3,0,0,1,2,,2,1,S M 10,,1577509,9.288,9.37,0,,0.32,8.5 +13090,-1,0.038148,0,3,0,1,2,,2,1,N M 10,,1577510,9.337,9.375,0,,0.32,8.5 +12772,-1,0.072455,0,3,0,2,4,,2,1,3rd,St,4708767,1.709,1.782,0,1.738922,8,4.5 +12722,-1,0.083395,0,3,0,2,4,,2,1,3rd,St,4708767,2.099,2.183,0,2.001484,8,4.5 +13117,1,0.130461,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.502,3.633,0,3.13107,8,4.5 +14190,0,0.128312,2,2,0,2,5,,2,1,Milwaukee,St,1585705,0.264,0.393,0,3.079484,8.5,4.5 +15996,0,0.128039,1,1,0,2,5,,2,1,Baltimore,St,1598107,0.123,0.251,0,3.072942,8.5,4.5 +33270,0,0.073376,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.761031,0.15,4 +12736,-1,0.055213,0,3,0,2,4,,2,1,3rd,St,4708767,2.044,2.099,0,1.325115,8,4.5 +33268,0,0.054997,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.319922,0.15,4 +12796,-1,0.245788,0,4,0,2,4,DV2,2,1,Anthony Wayne,Dr,4708767,1.173,1.419,0,5.898918,8,4.5 +12808,-1,0.081427,0,4,0,2,4,DV2,2,1,Anthony Wayne,Dr,4708767,1.079,1.161,0,1.954236,8,4.5 +12939,-1,0.247239,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0,0.247,0,5.933744,8.5,4.5 +13064,-1,0.072147,0,3,0,1,2,,2,1,N M 10,,1577510,9.707,9.779,0,,0.32,8.5 +17231,1,0.122687,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.547,6.669,0,2.94448,6,5 +22134,-1,0.12173,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.427,0.549,0,2.921513,6,5 +23684,1,0.24581,4,0,0,2,4,DV2,2,1,Anthony Wayne,Dr,5500021,0.19,0.436,0,5.899437,8,4.5 +23688,1,0.081278,4,0,0,2,4,DV2,2,1,Anthony Wayne,Dr,5500021,0.096,0.177,0,1.950671,8,4.5 +30658,0,0.184069,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.417652,0.15,4 +33254,0,0.225509,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.412209,0.15,4 +11905,1,0.203488,3,0,0,1,2,,2,1,S M 10,,1577509,9.749,9.953,0,,0.32,8.5 +12940,-1,0.0119,0,2,0,2,5,,2,1,N M 10 Service Drive,,1584210,0.247,0.259,0,0.285589,8.5,4.5 +13056,-1,0.173413,0,3,0,1,2,,2,1,N M 10,,1577510,9.779,9.952,0,,0.32,8.5 +17234,1,0.051058,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.389,6.44,0,1.225391,6,5 +21428,-1,0.094079,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.32,0.414,0,2.257889,6,5 +12435,1,0.011753,2,0,0,2,5,,2,1,S M 10 Service Drive,,1584209,0.313,0.325,0,0.282061,8.5,4.5 +21537,-1,0.051068,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.269,0.32,0,1.225624,6,5 +17233,1,0.093876,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.44,6.534,0,2.253036,6,5 +12798,-1,0.012638,0,4,0,2,4,DV2,2,1,Anthony Wayne,Dr,4708767,1.161,1.173,0,0.303313,8,4.5 +17232,1,0.01307,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.534,6.547,0,0.31368,6,5 +21272,-1,0.013023,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.414,0.427,0,0.312551,6,5 +23685,1,0.012658,4,0,0,2,4,DV2,2,1,Anthony Wayne,Dr,5500021,0.177,0.19,0,0.303783,8,4.5 +12785,-1,0.111935,0,2,0,2,4,DV2,2,1,Anthony Wayne,Dr,4708767,1.419,1.531,0,2.686437,8,4.5 +15987,-1,0.124399,0,2,0,2,4,DV2,2,1,Palmer,St,1598203,0,0.124,0,2.985588,8,4.5 +30659,0,0.069777,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.674641,0.15,4 +33253,0,0.081668,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.960023,0.15,4 +16269,1,0.073981,2,0,0,2,5,,2,1,Kirby,St,1608005,0,0.074,0,1.775534,8.5,4.5 +17152,1,0.012807,2,0,0,2,5,,2,1,Kirby,St,1608005,0.074,0.087,0,0.307362,8.5,4.5 +33295,0,0.12194,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.926562,0.15,4 +33297,0,0.032998,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.791945,0.15,4 +33298,0,0.029352,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.704436,0.15,4 +12238,0,0.128902,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.309,2.438,0,3.093646,8,4.5 +12239,0,0.146911,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.162,2.309,0,3.525865,8,4.5 +33284,0,0.11223,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.693517,0.15,4 +33865,0,0.19089,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.581367,0.15,4 +11177,1,0.195797,3,0,0,1,1,,2,1,E I 94,,1576405,27.708,27.903,0,,0.32,8.5 +12159,0,0.134613,2,2,0,2,4,,2,1,Cass,Ave,1577605,2.638,2.773,0,3.230714,8,4.5 +13778,1,0.224432,1,0,0,1,1,RON,2,1,John R/W I 94,RAMP,1589104,0,0.224,0,,1.09,4 +13876,-1,0.16786,0,3,0,1,1,,2,1,W I 94,,1588802,27.684,27.852,0,,0.32,8.5 +14516,0,0.174961,3,3,1,2,3,,2,1,Woodward,Ave,1591001,3.96,4.135,0,4.199056,6,5 +14517,0,0.15528,3,3,1,2,3,,2,1,Woodward,Ave,1591001,3.804,3.96,0,3.726718,6,5 +15991,-1,0.125993,0,2,0,2,5,,2,1,Medbury,St,1598202,0,0.126,0,3.023832,8.5,4.5 +16145,0,0.112992,1,1,0,2,5,,2,1,Antoinette,St,1609806,0.136,0.249,0,2.711797,8.5,4.5 +33269,0,0.16464,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.95135,0.15,4 +14056,-1,0.018383,0,3,0,1,1,,2,1,W I 94,,1588802,27.666,27.684,0,,0.32,8.5 +11415,1,0.017811,3,0,0,1,1,,2,1,E I 94,,1576405,27.69,27.708,0,,0.32,8.5 +31992,0,0.045393,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.089432,0.15,4 +33894,0,0.054594,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.310245,0.15,4 +16403,0,0.01086,1,1,0,2,5,,2,1,Antoinette,St,1609806,0.125,0.136,0,0.260648,8.5,4.5 +12156,0,0.20831,2,2,0,2,4,,2,1,Cass,Ave,1577605,2.773,2.981,0,4.999448,8,4.5 +15994,0,0.08515,1,1,0,2,5,,2,1,Baltimore,St,1598107,0.367,0.452,0,2.043606,8.5,4.5 +12153,0,0.055089,2,2,0,2,4,,2,1,Cass,Ave,1577605,2.981,3.036,0,1.322136,8,4.5 +12173,0,0.138109,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.493,2.631,0,3.314617,8,4.5 +14514,0,0.148762,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.142,4.291,0,3.570292,6,5 +15985,0,0.111596,1,1,1,2,5,,2,1,Palmer,St,1598203,0.262,0.373,0,2.678308,8.5,4.5 +15509,0,0.10106,1,1,0,2,5,,2,1,Antoinette,St,1591205,0,0.101,0,2.425446,8.5,4.5 +12160,0,0.006528,2,2,0,2,4,,2,1,Cass,Ave,1577605,2.631,2.638,0,0.156666,8,4.5 +14515,0,0.007849,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.135,4.142,0,0.188372,6,5 +14513,0,0.050501,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.291,4.342,0,1.212028,6,5 +14512,0,0.033061,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.342,4.375,0,0.79347,6,5 +14323,0,0.12976,1,1,0,2,5,,3,1,Piquette,St,1585704,0,0.13,0,3.114247,8,4.5 +23235,-1,0.167181,0,3,0,2,4,,3,1,John R,St,4705731,1.945,2.113,0,4.012332,6,4.5 +12130,0,0.17067,2,2,0,2,5,,3,1,Woodland,St,1577607,0.172,0.343,0,4.09608,8,4.5 +12226,0,0.170361,1,1,0,2,5,,2,1,Euclid,St,1583804,2.097,2.268,0,4.088675,8.5,4.5 +13482,0,0.172378,1,1,0,2,4,,3,1,Clairmount,St,1584807,1.355,1.527,0,4.137075,6,4.5 +13691,0,0.202451,1,1,0,2,4,,3,1,Holbrook,St,1585801,0.512,0.714,0,4.858836,6,4.5 +14526,0,0.273961,2,2,1,2,3,,3,1,Woodward,Ave,1591001,2.421,2.695,0,6.575053,5,5 +16002,0,0.169254,1,1,0,2,5,,3,1,Owen,St,1597904,0.343,0.512,0,4.062095,8,4.5 +16163,0,0.134322,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.205,0.339,0,3.223736,6,4.5 +17367,0,0.268224,1,1,0,2,5,,3,1,Brush,St,1625910,0.059,0.327,0,6.437365,8,4.5 +17375,-1,0.485806,0,3,0,2,5,,3,1,John R,St,1625909,0.41,0.896,0,11.659339,8,4.5 +17378,-1,0.120921,0,3,0,2,5,,3,1,John R,St,1625909,0.128,0.249,0,2.902099,8,4.5 +17396,-1,0.226269,0,4,0,2,5,,3,1,3rd,St,1625110,1.257,1.483,0,5.430455,8,4.5 +17403,-1,0.084969,0,2,0,2,5,,2,1,3rd,St,1625110,0.38,0.465,0,2.039266,8.5,4.5 +22177,-1,0.127382,0,2,0,2,5,DV2,3,1,Arden Park,Blvd,4704378,0,0.127,0,3.05718,8,4.5 +22701,-1,0.117147,0,1,0,2,7,,2,1,Seward,St,4705618,0.299,0.416,0,2.811533,8.5,4.5 +22935,1,0.13815,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.963,2.101,0,3.315612,8,4.5 +23289,-1,0.139294,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.666,1.805,0,3.343049,8,4.5 +23649,0,0.048342,1,1,0,2,5,,3,1,Arden Park,Blvd,4705652,2.136,2.184,0,1.160199,8,4.5 +23919,0,0.108466,1,1,0,2,4,,2,1,Pallister,St,4706949,0.546,0.655,0,2.603181,8,4.5 +23948,0,0.127313,1,1,0,2,4,,3,1,Oakland,St,4708768,0.83,0.957,0,3.05552,6,4.5 +23974,1,0.163101,4,0,0,2,5,,3,1,2nd,Blvd,4710491,1.28,1.443,0,3.914432,8,4.5 +23979,1,0.189959,3,0,0,2,5,,3,1,2nd,Ave,4710491,0.809,0.999,0,4.559025,8,4.5 +30285,0,0.12354,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.964968,0.15,4 +30651,0,0.050054,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.201288,0.15,4 +32080,0,0.306604,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.358502,0.15,4 +33835,0,0.098905,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.37372,0.15,4 +33985,0,0.292355,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.016526,0.15,4 +33986,0,0.154291,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.702982,0.15,4 +11925,1,0.414275,4,0,0,1,2,,3,1,S M 10,,1577509,7.78,8.194,0,,0.58,7 +13104,-1,0.302835,0,4,0,1,2,,3,1,N M 10,,1577510,8.121,8.423,0,,0.58,7 +13165,0,0.168687,1,1,0,2,5,,3,1,Euclid,St,1583804,1.594,1.763,0,4.048478,8,4.5 +13207,-1,0.475646,0,3,0,1,2,,3,1,N M 10,,1577510,7.466,7.942,0,,0.58,7 +13393,1,0.149732,1,0,0,1,2,ROF,3,1,N M 10/Chicago,RAMP,1585304,0,0.15,0,,2.24,5 +13481,1,0.158544,1,0,0,1,2,RON,3,1,Clairmount/S M 10,RAMP,1584808,0,0.159,0,,1.09,4 +13486,0,0.163459,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.85,1.014,0,3.923024,6,4.5 +13488,0,0.156459,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.526,0.682,0,3.755017,6,4.5 +15545,-1,0.408589,0,2,0,2,5,,3,1,N M 10 Service Drive,,1591204,0.204,0.613,0,9.806141,8,4.5 +15552,-1,0.163115,0,3,0,2,4,,3,1,N M 10 Service Drive,,1591204,0.012,0.175,0,3.914763,6,4.5 +15617,1,0.247059,2,0,0,2,5,,3,1,Hamilton,,1591107,0.4,0.647,0,5.929414,8,4.5 +15641,1,0.11576,2,0,0,2,4,,3,1,Hamilton,,1591107,0.192,0.307,0,2.778242,6,4.5 +17401,-1,0.247714,0,2,0,2,5,,3,1,3rd,St,1625110,0.539,0.786,0,5.945124,8,4.5 +23240,0,0.242313,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.314,0.556,0,5.815522,8,4.5 +23291,-1,0.170084,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.325,1.495,0,4.082026,8,4.5 +23575,1,0.170035,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.623,1.793,0,4.08085,8,4.5 +30281,0,0.261104,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.266485,0.15,4 +30283,0,0.230006,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.520152,0.15,4 +30290,0,0.231239,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.54973,0.15,4 +12225,0,0.205671,1,1,0,2,5,,3,1,Euclid,St,1583804,1.229,1.434,0,4.936112,8,4.5 +14568,1,0.441894,3,0,0,2,3,DV2,3,1,Rosa Parks,Blvd,1590905,0.531,0.972,0,10.605452,5,5 +23578,0,0.199821,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.114,0.314,0,4.795694,8,4.5 +23921,-1,0.441259,0,2,0,2,3,DV2,3,1,Rosa Parks,Blvd,4706942,0.444,0.885,0,10.590225,5,5 +13489,0,0.00849,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.518,0.526,0,0.203751,6,4.5 +13335,0,0.148722,1,1,0,2,5,,3,1,Euclid,St,1583804,1.446,1.594,0,3.56932,8,4.5 +12048,0,0.011379,1,1,0,2,5,,3,1,Euclid,St,1583804,1.434,1.446,0,0.273088,8,4.5 +30289,0,0.10371,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.489039,0.15,4 +11935,1,0.298212,3,0,0,1,2,,3,1,S M 10,,1577509,7.481,7.78,0,,0.58,7 +13394,1,0.182,1,0,0,1,2,RON,3,1,Chicago/N M 10,RAMP,1585303,0.014,0.196,0,,1.09,4 +13487,0,0.167744,1,1,0,2,4,,3,1,Clairmount,St,1584807,0.682,0.85,0,4.025854,6,4.5 +13495,1,0.015934,2,0,0,2,5,,3,1,S M 10/Chicago,RAMP,1584803,0.128,0.144,0,0.382417,8,4.5 +15644,1,0.183602,2,0,0,2,5,,3,1,S M 10 Service Drive,,1591107,0.008,0.192,0,4.406452,8,4.5 +23150,1,0.113054,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.377,1.491,0,2.713299,8,4.5 +23312,-1,0.060998,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.183,1.244,0,1.463946,8,4.5 +23348,-1,0.085498,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,0.992,1.078,0,2.051943,8,4.5 +23493,1,0.087807,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.29,1.377,0,2.107374,8,4.5 +23611,-1,0.110396,0,3,0,2,4,,3,1,Hamilton,Ave,4705640,0,0.11,0,2.649508,6,4.5 +32092,0,0.077473,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.859346,0.15,4 +32095,0,0.231491,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.555783,0.15,4 +32853,0,0.088761,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.130267,0.15,4 +22937,0,0.201353,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.556,0.757,0,4.832474,8,4.5 +32094,0,0.050992,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.223802,0.15,4 +22647,0,0.065711,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.757,0.823,0,1.577059,8,4.5 +23651,0,0.013527,1,1,0,2,5,,3,1,Woodrow Wilson,St,4705617,0.823,0.836,0,0.32465,8,4.5 +13496,1,0.127661,1,0,0,1,2,ROF,3,1,S M 10/Chicago,RAMP,1584803,0,0.128,0,,2.24,5 +23340,-1,0.105709,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.078,1.183,0,2.537019,8,4.5 +16424,0,0.09084,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.114,0.205,0,2.180153,6,4.5 +22571,1,0.077821,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.545,1.623,0,1.867697,8,4.5 +22606,1,0.148945,1,0,0,1,2,RON,3,1,Chicago/S M 10,RAMP,4705639,0,0.149,0,,1.09,4 +23311,-1,0.080968,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.244,1.325,0,1.943239,8,4.5 +13395,1,0.013658,2,0,0,2,5,,3,1,Chicago/N M 10,RAMP,1585303,0,0.014,0,0.327797,8,4.5 +22862,1,0.054604,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.491,1.545,0,1.31049,8,4.5 +15646,1,0.007968,2,0,0,2,5,,3,1,S M 10 Service Drive,,1591107,0,0.008,0,0.191241,8,4.5 +16744,1,0.054867,3,0,0,2,4,,3,1,Hamilton,Ave,1615607,0,0.055,0,1.316819,6,4.5 +16989,0,0.046545,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.055,0.101,0,1.117072,6,4.5 +16675,0,0.012857,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.101,0.114,0,0.308576,6,4.5 +15554,-1,0.011961,0,3,0,2,4,,3,1,N M 10 Service Drive,,1591204,0,0.012,0,0.287053,6,4.5 +11924,1,0.346039,4,0,0,1,2,,2,1,S M 10,,1577509,8.194,8.54,0,,0.32,8.5 +12855,0,0.16477,1,1,0,2,5,,3,1,Euclid,St,1583804,1.763,1.928,0,3.954484,8,4.5 +13102,-1,0.289782,0,4,0,1,2,,2,1,N M 10,,1577510,8.423,8.713,0,,0.32,8.5 +13391,1,0.099193,1,0,0,1,2,RON,2,1,Seward/N M 10,RAMP,1585306,0,0.099,0,,1.09,4 +15544,-1,0.132768,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,0.613,0.745,0,3.186444,8.5,4.5 +15609,1,0.282591,2,0,0,2,5,,2,1,Hamilton,,1591107,0.749,1.031,0,6.782187,8.5,4.5 +15611,1,0.101675,2,0,0,2,5,,3,1,Hamilton,,1591107,0.647,0.749,0,2.440204,8,4.5 +11921,1,0.152884,4,0,0,1,2,,2,1,S M 10,,1577509,8.54,8.692,0,,0.32,8.5 +13480,1,0.130192,1,0,0,1,2,ROF,2,1,S M 10/Pallister,RAMP,1584810,0,0.13,0,,3.07,5 +15538,-1,0.139599,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,0.771,0.911,0,3.350376,8.5,4.5 +23920,1,0.050949,2,0,0,2,4,,2,1,Pallister,St,4706949,0.495,0.546,0,1.222774,8,4.5 +15542,-1,0.025777,0,2,0,2,5,,2,1,N M 10 Service Drive,,1591204,0.745,0.771,0,0.618646,8.5,4.5 +12432,0,0.12057,1,1,0,2,5,,2,1,Euclid,St,1583804,1.977,2.097,0,2.893674,8.5,4.5 +12669,0,0.04911,1,1,0,2,5,,2,1,Euclid,St,1583804,1.928,1.977,0,1.17864,8.5,4.5 +17402,-1,0.073512,0,2,0,2,5,,2,1,3rd,St,1625110,0.465,0.539,0,1.764277,8.5,4.5 +13483,0,0.170212,1,1,0,2,4,,3,1,Clairmount,St,1584807,1.185,1.355,0,4.085081,6,4.5 +17399,-1,0.067797,0,2,0,2,5,,3,1,3rd,St,1625110,0.976,1.044,0,1.627138,8,4.5 +17400,-1,0.190015,0,2,0,2,5,,3,1,3rd,St,1625110,0.786,0.976,0,4.560368,8,4.5 +23237,1,0.170543,2,0,0,2,5,DV2,3,1,Chicago,Blvd,4705652,1.793,1.963,0,4.093037,8,4.5 +23290,-1,0.170557,0,2,0,2,5,DV2,3,1,Chicago,Blvd,4704598,1.495,1.666,0,4.093359,8,4.5 +33988,0,0.155425,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.730201,0.15,4 +33989,0,0.162478,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.899466,0.15,4 +12613,-1,0.179008,0,4,0,1,2,,3,1,N M 10,,1577510,7.942,8.121,0,,0.58,7 +13392,1,0.142862,1,0,0,1,2,ROF,3,1,N M 10/Clairmount,RAMP,1585305,0,0.143,0,,2.24,5 +13484,0,0.119139,1,1,0,2,4,,3,1,Clairmount,St,1584807,1.065,1.185,0,2.859334,6,4.5 +15618,1,0.092633,2,0,0,2,5,,3,1,Hamilton,,1591107,0.307,0.4,0,2.223191,8,4.5 +13485,0,0.051892,1,1,0,2,4,,3,1,Clairmount,St,1584807,1.014,1.065,0,1.245413,6,4.5 +15550,-1,0.028999,0,4,0,2,5,,3,1,N M 10 Service Drive,,1591204,0.175,0.204,0,0.695985,8,4.5 +17398,-1,0.199806,0,2,0,2,5,,3,1,3rd,St,1625110,1.044,1.244,0,4.795336,8,4.5 +17397,-1,0.013211,0,2,0,2,5,,3,1,3rd,St,1625110,1.244,1.257,0,0.317071,8,4.5 +33987,0,0.146623,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.518954,0.15,4 +23977,1,0.199398,4,0,0,2,5,,3,1,2nd,Blvd,4710491,1.067,1.267,0,4.785544,8,4.5 +23978,1,0.06819,4,0,0,2,5,,3,1,2nd,Blvd,4710491,0.999,1.067,0,1.63657,8,4.5 +23976,1,0.013589,3,0,0,2,5,,3,1,2nd,Blvd,4710491,1.267,1.28,0,0.326126,8,4.5 +12132,0,0.172399,2,2,0,2,5,,3,1,Woodland,St,1577607,0,0.172,0,4.137583,8,4.5 +13498,0,0.170366,1,1,0,2,5,,3,1,Calvert,St,1584802,1.791,1.961,0,4.088791,8,4.5 +14529,0,0.19096,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.741,1.932,0,4.583045,5,5 +14531,0,0.215441,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.463,1.678,0,5.170574,5,5 +16006,0,0.169901,2,2,0,2,5,,3,1,Webb,St,1597707,0.172,0.342,0,4.077635,8,4.5 +32906,0,0.277841,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.668177,0.15,4 +32916,0,0.263746,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.32991,0.15,4 +32924,0,0.252813,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.067517,0.15,4 +33282,0,0.105056,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.52134,0.15,4 +33984,0,0.256292,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.151013,0.15,4 +16007,0,0.172335,2,2,0,2,5,,3,1,Webb,St,1597707,0,0.172,0,4.136033,8,4.5 +16161,0,0.010902,2,2,1,2,4,,3,1,Hamilton,Ave,1615607,0.593,0.604,0,0.261638,6,4.5 +17043,0,0.127601,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.339,0.467,0,3.062413,6,4.5 +17394,-1,0.126339,0,4,0,2,5,,3,1,3rd,St,1625110,1.61,1.736,0,3.032132,8,4.5 +16422,0,0.126353,2,2,0,2,4,,3,1,Hamilton,Ave,1615607,0.467,0.593,0,3.032476,6,4.5 +17041,0,0.242464,2,2,1,2,4,,3,2,Hamilton,Ave,1615607,0.604,0.847,0,5.819143,6,4.5 +13499,0,0.171725,1,1,0,2,5,,3,1,Calvert,St,1584802,1.62,1.791,0,4.121392,8,4.5 +17395,-1,0.126685,0,4,0,2,5,,3,1,3rd,St,1625110,1.483,1.61,0,3.040432,8,4.5 +13514,0,0.343602,1,1,1,2,5,,3,2,Glendale,St,1584707,0.684,1.028,0,8.246441,8,4.5 +32087,0,0.256621,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.1589,0.15,4 +32107,0,0.275154,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.603697,0.15,4 +32109,0,0.260855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.260513,0.15,4 +14532,0,0.175483,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.288,1.463,0,4.211583,5,5 +13497,0,0.17229,1,1,0,2,5,,3,1,Calvert,St,1584802,1.961,2.134,0,4.134959,8,4.5 +14528,0,0.254462,2,2,1,2,3,,3,1,Woodward,Ave,1591001,1.932,2.186,0,6.107096,5,5 +24089,1,0.126824,4,0,0,2,5,,3,1,2nd,Blvd,4710491,1.506,1.633,0,3.043764,8,4.5 +32082,0,0.123551,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.965226,0.15,4 +33675,0,0.150227,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.605453,0.15,4 +24424,1,0.063023,4,0,0,2,5,,3,1,2nd,Blvd,4710491,1.443,1.506,0,1.51256,8,4.5 +16005,0,0.172942,2,2,0,2,5,,3,1,Webb,St,1597707,0.342,0.515,0,4.150606,8,4.5 +24541,1,0.12643,4,0,0,2,5,,3,1,2nd,Blvd,4710491,1.633,1.76,0,3.034328,8,4.5 +14527,0,0.235063,2,2,1,2,3,,3,1,Woodward,Ave,1591001,2.186,2.421,0,5.641515,5,5 +22645,0,0.034658,2,2,0,2,5,,3,1,Chicago,Blvd,4705652,2.101,2.136,0,0.83179,8,4.5 +17374,0,0.346173,1,1,0,2,5,,3,2,John R,St,1625909,0.896,1.242,0,8.308145,8,4.5 +30653,0,0.278376,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.681017,0.15,4 +30654,0,0.479579,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.509901,0.15,4 +14530,0,0.062329,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.678,1.741,0,1.495893,5,5 +13166,0,0.138656,1,1,0,2,5,,3,1,Euclid,St,1583804,2.565,2.704,0,3.327743,8,4.5 +13336,0,0.12556,1,1,0,2,5,,3,1,Euclid,St,1583804,2.44,2.565,0,3.013431,8,4.5 +14142,0,0.068643,2,2,0,2,4,,3,1,Holbrook,St,1585801,0.264,0.333,0,1.647429,6,4.5 +14522,0,0.432489,2,2,1,2,3,,2,1,Woodward,Ave,1591001,3.13,3.563,0,10.379729,6,5 +14523,0,0.246804,2,2,1,2,3,,3,1,Woodward,Ave,1591001,2.884,3.13,0,5.923289,5,5 +15998,0,0.173089,1,1,0,2,5,,2,1,Lothrop,Rd,1598105,0.296,0.469,0,4.154126,8.5,4.5 +22648,1,0.115554,4,0,0,2,4,,3,1,Brush,St,4705554,2.06,2.175,0,2.773307,6,4.5 +22849,-1,0.240845,0,3,0,2,4,,3,1,John R,St,4705731,2.702,2.942,0,5.780288,6,4.5 +23206,0,0.070504,1,1,0,2,5,,3,1,Brush,St,4705574,1.683,1.754,0,1.692092,8,4.5 +23341,0,0.311012,1,1,0,2,5,,3,1,Beaubien,St,4705574,1.01,1.321,0,7.464283,8,4.5 +23581,1,0.240824,3,0,0,2,4,,3,1,Brush,St,4705554,1.632,1.873,0,5.779787,6,4.5 +23981,1,0.188845,4,0,0,2,5,,3,1,2nd,Ave,4710491,0.561,0.75,0,4.53228,8,4.5 +24504,-1,0.085304,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.8,0.886,0,2.047284,8,4.5 +33674,0,0.352891,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.469388,0.15,4 +12049,0,0.172211,1,1,0,2,5,,2,1,Euclid,St,1583804,2.268,2.44,0,4.133053,8.5,4.5 +15999,0,0.169161,1,1,0,2,5,,2,1,Lothrop,Rd,1598105,0.126,0.296,0,4.059863,8.5,4.5 +23703,-1,0.17032,0,1,0,2,7,,2,1,Seward,St,4705618,0.416,0.587,0,4.08769,8.5,4.5 +23986,1,0.074953,3,0,0,2,5,,2,1,2nd,Ave,4710491,0.328,0.402,0,1.798862,8.5,4.5 +30287,0,0.111427,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.674249,0.15,4 +30291,0,0.097071,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.329709,0.15,4 +32084,0,0.129141,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.099382,0.15,4 +17405,-1,0.097381,0,2,0,2,5,,2,1,3rd,St,1625110,0.206,0.303,0,2.337151,8.5,4.5 +17406,0,0.113229,1,1,0,2,4,,2,1,3rd,St,1625110,0.092,0.206,0,2.717499,8,4.5 +17404,-1,0.077483,0,2,0,2,5,,2,1,3rd,St,1625110,0.303,0.38,0,1.859598,8.5,4.5 +23982,1,0.073443,4,0,0,2,5,,2,1,2nd,Ave,4710491,0.488,0.561,0,1.762622,8.5,4.5 +23984,1,0.085246,4,0,0,2,5,,2,1,2nd,Ave,4710491,0.402,0.488,0,2.045898,8.5,4.5 +30288,0,0.107353,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.576468,0.15,4 +23991,1,0.067287,3,0,0,2,5,,2,1,2nd,Ave,4710491,0.127,0.195,0,1.614889,8.5,4.5 +23992,1,0.092037,3,0,0,2,5,,2,1,2nd,Ave,4710491,0.035,0.127,0,2.20888,8.5,4.5 +33283,0,0.08887,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.132877,0.15,4 +23987,1,0.132901,3,0,0,2,5,,2,1,2nd,Ave,4710491,0.195,0.328,0,3.189631,8.5,4.5 +24505,-1,0.031017,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.769,0.8,0,0.744397,8,4.5 +13844,0,0.130683,1,1,0,2,4,,3,1,Holbrook,St,1585801,0,0.131,0,3.13639,6,4.5 +14525,0,0.131215,2,2,1,2,3,,3,1,Woodward,Ave,1591001,2.695,2.826,0,3.149161,5,5 +16004,0,0.172273,1,1,0,2,5,,3,1,Owen,St,1597904,0,0.172,0,4.134554,8,4.5 +23562,-1,0.180141,0,3,0,2,4,,3,1,John R,St,4705731,3.067,3.247,0,4.323395,6,4.5 +23980,1,0.059453,3,0,0,2,5,,3,1,2nd,Ave,4710491,0.75,0.809,0,1.426868,8,4.5 +14524,0,0.057458,2,2,1,2,3,,3,1,Woodward,Ave,1591001,2.826,2.884,0,1.379001,5,5 +22555,-1,0.124433,0,3,0,2,4,,3,1,John R,St,4705731,2.942,3.067,0,2.9864,6,4.5 +14118,0,0.133678,1,1,0,2,4,,3,1,Holbrook,St,1585801,0.131,0.264,0,3.208268,6,4.5 +16003,0,0.170649,1,1,0,2,5,,3,1,Owen,St,1597904,0.172,0.343,0,4.095578,8,4.5 +17379,-1,0.055779,0,3,0,2,5,,3,1,John R,St,1625909,0.073,0.128,0,1.338703,8,4.5 +23217,-1,0.085157,0,3,0,2,5,,3,1,John R,St,4705731,3.247,3.332,0,2.043757,8,4.5 +17368,0,0.059136,1,1,0,2,5,,3,1,Brush,St,1625910,0,0.059,0,1.419271,8,4.5 +13109,1,0.13862,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,3.961,4.1,0,3.326874,6,4.5 +14018,0,0.12743,2,2,0,2,5,,3,1,Milwaukee,St,1585705,0.593,0.72,0,3.058326,8,4.5 +23130,-1,0.167808,0,3,0,2,4,,3,1,John R,St,4705731,2.534,2.702,0,4.027384,6,4.5 +23343,1,0.130596,3,0,0,2,4,,3,1,Brush,St,4705554,1.501,1.632,0,3.134313,6,4.5 +23648,-1,0.080829,0,3,0,2,4,,3,1,John R,St,4705731,2.322,2.403,0,1.939888,6,4.5 +23677,0,0.156197,1,2,0,2,5,,3,1,Beaubien,St,4705574,0.854,1.01,0,3.748725,8,4.5 +23680,1,0.155735,3,0,0,2,4,,3,1,Brush,St,4705554,1.345,1.501,0,3.737646,6,4.5 +24493,-1,0.138672,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.098,1.237,0,3.328126,6,4.5 +30294,0,0.096028,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.304683,0.15,4 +33864,0,0.109319,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.62365,0.15,4 +13112,1,0.12726,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,3.834,3.961,0,3.054235,6,4.5 +14519,0,0.081516,3,3,1,2,3,,2,1,Woodward,Ave,1591001,3.669,3.75,0,1.956374,6,5 +14521,0,0.092586,2,2,1,2,3,,2,1,Woodward,Ave,1591001,3.563,3.655,0,2.222073,6,5 +23315,-1,0.012496,0,3,0,2,4,,3,1,John R,St,4705731,2.403,2.415,0,0.299902,6,4.5 +24496,-1,0.126989,0,1,0,2,4,DV2,3,1,Grand,Blvd,4710494,0.971,1.098,0,3.047725,6,4.5 +13114,1,0.085343,3,0,0,2,4,DV2,2,1,Grand,Blvd,1577308,3.749,3.834,0,2.048235,8,4.5 +24502,-1,0.085465,0,3,0,2,4,DV2,2,1,Grand,Blvd,4710494,0.886,0.971,0,2.051155,8,4.5 +12142,0,0.013499,1,1,0,2,4,,2,1,Cass,Ave,1577605,3.118,3.132,0,0.323969,8,4.5 +14520,0,0.013286,3,3,1,2,3,,2,1,Woodward,Ave,1591001,3.655,3.669,0,0.318861,6,5 +22998,-1,0.118964,0,3,0,2,4,,3,1,John R,St,4705731,2.415,2.534,0,2.855129,6,4.5 +30292,0,0.090731,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.177535,0.15,4 +30293,0,0.127169,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.052053,0.15,4 +13933,0,0.138607,1,1,0,2,5,,3,1,Milwaukee,St,1585705,0.72,0.859,0,3.326575,8,4.5 +15992,0,0.138716,1,1,0,2,5,,3,1,Baltimore,St,1598107,0.579,0.718,0,3.329175,8,4.5 +22964,1,0.082445,3,0,0,2,4,,3,1,Brush,St,4705554,1.251,1.334,0,1.978687,6,4.5 +22644,-1,0.053983,0,3,0,2,4,,3,1,John R,St,4705731,2.268,2.322,0,1.295599,6,4.5 +23270,1,0.054113,3,0,0,2,4,,3,1,Brush,St,4705554,1.197,1.251,0,1.298703,6,4.5 +23612,1,0.056799,3,0,0,2,4,,3,1,Brush,St,4705554,1.14,1.197,0,1.363186,6,4.5 +13106,1,0.068795,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.1,4.168,0,1.65108,6,4.5 +24143,-1,0.068815,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.237,1.305,0,1.651552,6,4.5 +22687,1,0.011927,3,0,0,2,4,,3,1,Brush,St,4705554,1.334,1.345,0,0.286238,6,4.5 +22684,0,0.011842,1,2,0,2,5,,3,1,Beaubien,St,4705574,0.842,0.854,0,0.284208,8,4.5 +12670,0,0.095561,1,1,0,2,5,,3,1,Euclid,St,1583804,2.773,2.868,0,2.293468,8,4.5 +22338,1,0.062608,1,0,0,2,5,,3,1,Beaubien,St,4705574,1.506,1.568,0,1.502602,8,4.5 +22938,1,0.124544,4,0,0,2,4,,3,1,Brush,St,4705554,1.935,2.06,0,2.989051,6,4.5 +23949,0,0.302263,1,1,0,2,4,,3,1,Oakland,St,4708768,0.528,0.83,0,7.254307,6,4.5 +33281,0,0.099771,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.394495,0.15,4 +12856,0,0.068784,1,1,0,2,5,,3,1,Euclid,St,1583804,2.704,2.773,0,1.650828,8,4.5 +22753,0,0.124794,1,1,0,2,5,,3,1,Beaubien,St,4705574,1.381,1.506,0,2.99506,8,4.5 +23028,0,0.060491,1,1,0,2,5,,3,1,Beaubien,St,4705574,1.321,1.381,0,1.451791,8,4.5 +23241,1,0.06254,3,0,0,2,4,,3,1,Brush,St,4705554,1.873,1.935,0,1.500963,6,4.5 +14477,0,0.178779,2,2,0,2,4,,3,1,Holbrook,St,1585801,0.333,0.512,0,4.290699,6,4.5 +16001,1,0.068142,1,0,0,2,5,,3,1,Alger,St,1598001,0.265,0.333,0,1.63542,8,4.5 +23443,1,0.11508,2,0,0,2,5,,3,1,Beaubien,St,4705574,1.568,1.683,0,2.761928,8,4.5 +23950,0,0.241251,1,1,0,2,4,,3,1,Oakland,St,4708768,0.287,0.528,0,5.790029,6,4.5 +30839,0,0.206482,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.955569,0.15,4 +12433,0,0.083722,1,1,0,2,5,,3,1,Euclid,St,1583804,2.868,2.952,0,2.009329,8,4.5 +33280,0,0.050432,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.210368,0.15,4 +15385,-1,0.297512,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,1.231,1.528,0,7.140297,8,4.5 +17364,0,0.391671,1,1,0,2,5,,3,1,Brush,St,1625910,0.437,0.828,0,9.400094,8,4.5 +17386,1,0.566501,2,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.922,1.488,0,13.59602,8,4.5 +19062,-1,0.340571,0,1,0,2,4,DV2,3,1,Caniff,St,1632110,0,0.341,0,8.17371,6,4.5 +22617,-1,0.239282,0,2,0,2,4,DV2,3,1,Oakland,St,4704923,0,0.239,0,5.742757,6,4.5 +23807,1,0.343102,1,0,0,2,4,DV2,3,1,Caniff,St,4707783,0,0.343,0,8.234445,6,4.5 +23943,1,0.233089,2,0,0,2,4,DV2,3,1,Oakland,St,4708768,1.493,1.726,0,5.594141,6,4.5 +23947,0,0.269999,1,1,0,2,4,,3,1,Oakland,St,4708768,0.957,1.227,0,6.479966,6,4.5 +33862,0,0.375569,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.013645,0.15,4 +17365,0,0.095073,1,1,0,2,5,,3,1,Brush,St,1625910,0.342,0.437,0,2.281763,8,4.5 +22175,-1,0.170187,0,2,0,2,5,DV2,3,1,Arden Park,Blvd,4704378,0.298,0.468,0,4.084496,8,4.5 +22176,-1,0.170552,0,2,0,2,5,DV2,3,1,Arden Park,Blvd,4704378,0.127,0.298,0,4.093252,8,4.5 +22732,1,0.170021,2,0,0,2,5,DV2,3,1,Arden Park,Blvd,4705652,2.482,2.652,0,4.080498,8,4.5 +22999,1,0.170472,2,0,0,2,5,DV2,3,1,Arden Park,Blvd,4705652,2.312,2.482,0,4.091337,8,4.5 +30652,0,0.337914,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.109939,0.15,4 +17376,-1,0.014266,0,3,0,2,5,,3,1,John R,St,1625909,0.396,0.41,0,0.342388,8,4.5 +23316,1,0.127437,2,0,0,2,5,DV2,3,1,Arden Park,Blvd,4705652,2.184,2.312,0,3.058494,8,4.5 +17377,-1,0.146959,0,3,0,2,5,,3,1,John R,St,1625909,0.249,0.396,0,3.527018,8,4.5 +17366,0,0.014428,1,1,0,2,5,,3,1,Brush,St,1625910,0.327,0.342,0,0.346263,8,4.5 +23944,0,0.170529,1,1,0,2,4,,3,1,Oakland,St,4708768,1.322,1.493,0,4.092688,6,4.5 +30280,0,0.100411,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.409854,0.15,4 +30282,0,0.073602,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.766445,0.15,4 +23945,0,0.084074,1,1,0,2,4,,3,1,Oakland,St,4708768,1.238,1.322,0,2.017783,6,4.5 +23946,0,0.010957,1,1,0,2,4,,3,1,Oakland,St,4708768,1.227,1.238,0,0.262975,6,4.5 +22616,-1,0.346876,0,4,0,2,4,DV2,3,2,Oakland,St,4704923,0.239,0.586,0,8.325035,6,4.5 +23942,1,0.280368,4,0,0,2,4,DV2,3,2,Oakland,St,4708768,1.726,2.006,0,6.728841,6,4.5 +12083,0,0.156112,2,2,0,2,5,,3,1,Woodland,St,1577607,0.343,0.499,0,3.746696,8,4.5 +12078,0,0.012251,1,1,0,2,5,,3,1,Woodland,St,1577607,0.499,0.511,0,0.294033,8,4.5 +15399,-1,0.317176,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0.914,1.231,0,7.612227,8,4.5 +13800,0,0.057088,1,1,0,2,4,,3,1,Holbrook,St,1585801,0.714,0.771,0,1.37011,6,4.5 +15401,-1,0.019351,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0.895,0.914,0,0.464412,8,4.5 +17387,1,0.023572,2,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.898,0.922,0,0.565719,8,4.5 +14147,1,0.16903,1,0,0,1,1,ROF,3,2,S I 75/Caniff,RAMP,1585805,0,0.169,0,,2.24,5 +14475,1,0.200353,1,0,0,1,1,RON,3,2,Caniff/N I 75,RAMP,1586109,0,0.2,0,,1.09,4 +19045,0,0.156413,1,1,1,2,4,,3,2,Caniff,St,1632110,0.341,0.497,0,3.753904,6,4.5 +15378,-1,0.050997,0,2,0,2,5,,3,2,Dequindre,St,1591301,1.646,1.697,0,1.223928,8,4.5 +15384,-1,0.083134,0,2,0,2,5,,3,2,Dequindre,St,1591301,1.528,1.612,0,1.995218,8,4.5 +17384,1,0.124834,3,0,0,2,5,,3,2,Nagel,Ave,1625409,1.525,1.65,0,2.996026,8,4.5 +19251,-1,0.085616,0,2,0,2,5,,3,2,Dequindre,St,1805203,0.246,0.332,0,2.054785,8,4.5 +17179,-1,0.053924,0,2,0,2,5,,3,2,Yemans,St,1630904,0,0.054,0,1.294181,8,4.5 +17385,1,0.03729,2,0,0,2,5,,3,2,Chrysler,Dr,1625409,1.488,1.525,0,0.894969,8,4.5 +19252,0,0.057875,1,1,0,2,5,,3,2,Dequindre,St,1805203,0.188,0.246,0,1.389006,8,4.5 +17178,0,0.036503,1,1,0,2,5,,3,2,Yemans,St,1630904,0.054,0.09,0,0.876065,8,4.5 +17383,1,0.028778,2,0,0,2,5,,3,2,Nagel,Ave,1625409,1.65,1.679,0,0.690665,8,4.5 +19035,0,0.058513,1,1,0,2,4,,3,2,Caniff,St,1632110,0.497,0.555,0,1.404307,6,4.5 +15382,-1,0.034021,0,2,0,2,5,,3,2,Dequindre,St,1591301,1.612,1.646,0,0.816504,8,4.5 +11973,0,0.183489,1,1,0,2,4,,2,1,Brush,St,4718307,0.957,1.141,0,4.403729,8,4.5 +12149,1,0.276668,4,0,0,1,1,,2,1,N I 75,,1577706,1.686,1.962,0,,0.32,8.5 +12244,0,0.147895,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.773,1.92,0,3.549486,8,4.5 +12386,-1,0.404744,0,4,0,1,1,,2,1,S I 75,,1577705,1.958,2.363,0,,0.32,8.5 +12875,0,0.010115,2,2,0,2,4,,2,1,Russell,St,1577709,0.786,0.797,0,0.242772,8,4.5 +12897,-1,0.271967,0,4,0,1,1,,2,1,S I 75,,1577705,1.686,1.958,0,,0.32,8.5 +13276,0,0.277984,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,0.179,0.456,0,6.671628,6,4.5 +13359,1,0.310346,4,0,0,1,1,,2,1,N I 75,,1577706,1.962,2.273,0,,0.32,8.5 +13624,-1,0.081987,0,4,0,2,4,,1,1,Adams,Ave,1584401,0.274,0.356,0,1.96769,8,4.5 +13638,1,0.147745,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.474,0.621,0,3.545876,8.5,4.5 +13706,1,0.1231,1,0,0,1,1,RON,2,1,Mack/N I 75,RAMP,1586103,0,0.123,0,,1.09,4 +13936,0,0.163366,1,1,0,2,5,,3,1,Canfield,St,1585701,0.764,0.927,0,3.920781,8,4.5 +14090,0,0.157708,1,1,0,2,5,,2,1,Canfield,St,1585701,0,0.158,0,3.785002,8.5,4.5 +14120,1,0.120312,1,0,0,1,1,ROF,2,1,S I 75/Mack,RAMP,1585610,0,0.12,0,,3.07,5 +14132,1,0.097159,2,0,0,2,3,DIV,3,1,Mack,Ave,1585609,0.767,0.864,0,2.331809,5,5 +14209,0,0.278126,1,1,0,2,5,,3,1,Ferry,St,1585703,0.87,1.148,0,6.675033,8,4.5 +14243,1,0.122247,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.419,0.541,0,2.933929,6,5 +14504,0,0.080441,3,3,1,2,3,,2,1,Woodward,Ave,1591001,5.018,5.098,0,1.930596,6,5 +14948,1,0.24472,4,0,0,1,1,,1,1,N I 75,,1592010,23.777,24.021,0,,0.32,8.5 +15439,-1,0.435463,0,2,0,1,1,RFF,2,1,S I 75,,1591219,0,0.435,0,,0.32,8.5 +15599,-1,0.311708,0,3,0,1,2,,1,1,S I 75/Gratiot,CONN,1595106,23.947,24.259,0,,0.32,8.5 +15959,1,0.097565,2,0,0,2,5,,1,1,Witherell,St,1598410,0.179,0.276,0,2.341564,8.5,4.5 +15969,0,0.079371,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.297,0.377,0,1.904908,8.5,4.5 +16361,-1,0.378607,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.479,0.857,0,9.08657,8.5,4.5 +16928,1,0.442105,3,0,0,2,4,DV2,2,1,Beaubien,St,1608803,0.589,1.031,0,10.610524,8,4.5 +17221,1,0.3248,4,0,0,2,3,DIV,3,1,Warren,Ave,1628604,7.705,8.03,0,7.7952,5,5 +21626,-1,0.200093,0,4,0,2,3,DIV,3,1,Warren,Ave,4700429,1.586,1.786,0,4.802237,5,5 +22088,1,0.077746,2,0,0,2,5,,1,1,Elizabeth,St,4700499,0.309,0.386,0,1.865907,8.5,4.5 +22603,-1,0.44417,0,3,0,2,4,DV2,2,1,Beaubien,St,4704944,0,0.444,0,10.660079,8,4.5 +22856,0,0.323392,1,1,0,2,5,,3,1,Russell,St,4705681,0,0.323,0,7.761412,8,4.5 +23093,1,0.222063,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.776,0.998,0,5.329521,8.5,4.5 +23248,0,0.040721,1,1,1,2,4,,1,1,John R,St,4705731,0.055,0.096,0,0.977297,8,4.5 +23401,0,0.080854,2,2,0,2,4,,2,1,John R,St,4705731,0.982,1.063,0,1.940493,8,4.5 +23437,1,0.171894,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.604,0.776,0,4.125455,8.5,4.5 +23823,-1,0.078716,0,2,0,2,3,DIV,2,1,Mack,Ave,4707551,0.908,0.987,0,1.889193,6,5 +23826,-1,0.122245,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.639,0.761,0,2.93389,6,5 +23891,-1,0.106671,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.834,0.941,0,2.560107,8.5,4.5 +30580,0,0.291803,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,7.00328,0.15,4 +30583,0,0.161307,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.871376,0.15,4 +30585,0,0.277212,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,6.653094,0.15,4 +30831,0,0.244975,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.879396,0.15,4 +33208,0,0.302654,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.263693,0.15,4 +33287,0,0.341458,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,8.194993,0.15,4 +33831,0,0.426974,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.24737,0.15,4 +33859,0,0.377205,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,9.052916,0.15,4 +12208,0,0.124185,2,2,0,2,3,,2,1,Martin Luther King Jr,Blvd,1581907,1.946,2.071,0,2.980448,6,5 +12280,0,0.18923,1,1,0,2,4,,2,1,Cass,Ave,1577605,1.026,1.215,0,4.541529,8,4.5 +12876,0,0.138525,1,1,0,2,4,,2,1,3rd,St,4708767,0.386,0.525,0,3.324608,8,4.5 +13014,1,0.193574,3,0,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,1581907,2.196,2.389,0,4.645774,6,5 +13300,0,0.090534,1,1,0,2,4,,2,1,Cass,Ave,1577605,1.215,1.306,0,2.172827,8,4.5 +13644,1,0.03552,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.084,0.12,0,0.852489,8.5,4.5 +14497,0,0.127205,2,2,1,2,3,,2,1,Woodward,Ave,1591001,5.581,5.708,0,3.052916,6,5 +14501,0,0.156439,3,3,1,2,3,,2,1,Woodward,Ave,1591001,5.182,5.339,0,3.754545,6,5 +15126,-1,0.232281,0,4,0,1,1,,1,1,S I 75,,1595106,23.398,23.63,0,,0.32,8.5 +15977,0,0.081677,2,2,1,2,5,,2,1,Temple,St,1598402,0.408,0.489,0,1.960245,8.5,4.5 +15983,0,0.119385,1,1,0,2,5,,2,1,Alexandrine,St,1598301,0.417,0.536,0,2.86525,8.5,4.5 +22654,0,0.078492,1,1,0,2,4,,2,1,John R,St,4705731,0.293,0.372,0,1.883802,8,4.5 +22945,0,0.07817,1,1,0,2,5,,2,1,Ledyard,St,4705718,0,0.078,0,1.87607,8.5,4.5 +23831,-1,0.193674,0,3,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,4707551,0.026,0.22,0,4.648177,6,5 +23897,-1,0.027218,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.262,0.29,0,0.653238,8.5,4.5 +30353,0,0.126517,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.036415,0.15,4 +30354,0,0.157966,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.791175,0.15,4 +30581,0,0.136544,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.277051,0.15,4 +30835,0,0.072972,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.751333,0.15,4 +30837,0,0.189138,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.539307,0.15,4 +30851,0,0.141036,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.384857,0.15,4 +33671,0,0.194331,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.663952,0.15,4 +12371,0,0.065097,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.797,11.862,0,1.562334,6,5 +12887,0,0.101369,1,1,0,2,4,,2,1,3rd,St,4708767,0,0.101,0,2.432852,8,4.5 +15980,0,0.080541,3,3,0,2,5,,2,1,Temple,St,1598402,0.24,0.321,0,1.932972,8.5,4.5 +15981,1,0.154564,3,0,0,2,5,DV2,2,1,Temple,St,1598402,0.086,0.24,0,3.709527,8.5,4.5 +16080,-1,0.101596,0,2,0,2,5,,2,1,2nd,Ave,1607903,0,0.102,0,2.438296,8.5,4.5 +16952,1,0.101392,2,0,0,2,5,,2,1,2nd,Ave,1607904,0,0.101,0,2.433419,8.5,4.5 +23890,-1,0.155617,0,3,0,2,5,DV2,2,1,Temple,St,4707212,0,0.156,0,3.734806,8.5,4.5 +30267,0,0.148893,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.573439,0.15,4 +30352,0,0.034955,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.83892,0.15,4 +32505,0,0.161255,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.870119,0.15,4 +33870,0,0.226941,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.446581,0.15,4 +12373,0,0.159111,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.638,11.797,0,3.818657,6,5 +14105,1,0.198171,1,0,0,1,1,RFS,2,1,S I 75/N M 10,RAMP,1585403,0.145,0.343,0,,0.22,6 +16645,1,0.200875,2,0,0,2,5,,2,1,S M 10 Service Drive,,1608405,0.027,0.228,0,4.821002,8.5,4.5 +15573,1,0.088562,1,0,0,1,1,RFF,2,1,S M 10/S I 75 CD,RAMP,1591108,0,0.089,0,,0.32,8.5 +12230,-1,0.031272,0,3,0,2,5,,2,1,N M 10 Service Drive,,1584210,1.32,1.352,0,0.750524,8.5,4.5 +12377,0,0.027355,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.581,11.608,0,0.656516,6,5 +12507,-1,0.023547,0,3,0,2,5,,2,1,N M 10 Service Drive,,1584210,1.297,1.32,0,0.565128,8.5,4.5 +16173,1,0.032097,1,0,0,2,5,,2,1,Temple,St,1608504,0.796,0.828,0,0.770329,8.5,4.5 +16266,1,0.026785,2,0,0,2,5,,2,1,S M 10 Service Drive,,1608405,0,0.027,0,0.642848,8.5,4.5 +12376,0,0.029354,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.608,11.638,0,0.704505,6,5 +12880,0,0.095218,1,1,0,2,4,,2,1,3rd,St,4708767,0.291,0.386,0,2.285228,8,4.5 +12882,0,0.189757,1,1,0,2,4,,2,1,3rd,St,4708767,0.101,0.291,0,4.55418,8,4.5 +12367,0,0.056842,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.907,11.964,0,1.36421,6,5 +12741,-1,0.045544,0,2,0,2,4,,2,1,3rd,St,1581602,0.764,0.809,0,1.093047,8,4.5 +37635,-1,0.040499,0,1,0,2,4,,5,3,Coats,Rd,4415708,0.025,0.065,0,0.97197,3,4 +23660,0,0.043543,1,1,0,2,5,,2,1,Ledyard,St,4705718,0.122,0.165,0,1.045024,8.5,4.5 +23899,-1,0.059808,0,1,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.172,0.232,0,1.435394,8.5,4.5 +30269,0,0.206036,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.944866,0.15,4 +12368,0,0.045375,2,2,0,2,3,,2,1,Grand River,Ave,1577408,11.862,11.907,0,1.088991,6,5 +37634,1,0.038608,2,0,0,2,4,,5,3,Baldwin,Rd,4415710,0.024,0.062,0,0.926593,3,4 +23324,0,0.08072,1,1,0,2,5,,2,1,Ledyard,St,4705718,0.165,0.246,0,1.93729,8.5,4.5 +12362,0,0.063096,2,2,0,2,3,,1,1,Grand River,Ave,1577408,11.964,12.027,0,1.514298,6,5 +23898,-1,0.030546,0,2,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.232,0.262,0,0.733115,8.5,4.5 +22655,0,0.043441,1,1,0,2,5,,2,1,Ledyard,St,4705718,0.078,0.122,0,1.042577,8.5,4.5 +15978,0,0.043581,2,2,1,2,5,,2,1,Temple,St,1598402,0.364,0.408,0,1.045955,8.5,4.5 +15979,0,0.043656,3,3,0,2,5,,2,1,Temple,St,1598402,0.321,0.364,0,1.047733,8.5,4.5 +11955,0,0.099113,2,2,0,2,3,,2,1,Martin Luther King Jr,Blvd,1581907,2.071,2.17,0,2.378718,6,5 +12248,0,0.097837,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.5,1.597,0,2.348088,8,4.5 +15984,0,0.168224,1,1,0,2,5,,2,1,Alexandrine,St,1598301,0.249,0.417,0,4.037377,8.5,4.5 +17121,0,0.124981,2,2,0,2,5,,2,1,Selden,St,1607907,0.253,0.378,0,2.999541,8.5,4.5 +30849,0,0.168522,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.044532,0.15,4 +33868,0,0.176683,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.240392,0.15,4 +12873,0,0.051996,1,1,0,2,4,,2,1,3rd,St,4708767,0.525,0.577,0,1.247894,8,4.5 +16246,0,0.1241,2,2,0,2,5,,2,1,Selden,St,1607907,0.129,0.253,0,2.978404,8.5,4.5 +12246,0,0.160581,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.597,1.758,0,3.853948,8,4.5 +22499,0,0.12519,1,1,0,2,5,,2,1,Canfield,St,4705666,0,0.125,0,3.004567,8.5,4.5 +12245,0,0.014737,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.758,1.773,0,0.353692,8,4.5 +12249,0,0.185373,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.314,1.5,0,4.448964,8,4.5 +12257,0,0.00869,2,2,0,2,4,,2,1,Cass,Ave,1577605,1.306,1.314,0,0.208568,8,4.5 +13323,1,0.026063,3,0,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,1581907,2.17,2.196,0,0.625509,6,5 +23832,-1,0.026231,0,3,0,2,3,DIV,2,1,Martin Luther King Jr,Blvd,4707551,0,0.026,0,0.629553,6,5 +14502,0,0.084175,3,3,1,2,3,,2,1,Woodward,Ave,1591001,5.098,5.182,0,2.02019,6,5 +33869,0,0.128319,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.079652,0.15,4 +12363,0,0.144697,1,1,1,2,4,,2,1,Cass,Ave,1577605,0.779,0.924,0,3.47273,8,4.5 +13640,1,0.047912,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.319,0.367,0,1.149876,8.5,4.5 +14494,0,0.103156,2,2,1,2,3,,2,1,Woodward,Ave,1591001,5.883,5.986,0,2.47575,6,5 +14495,0,0.140565,2,2,1,2,3,,2,1,Woodward,Ave,1591001,5.742,5.883,0,3.373563,6,5 +14774,-1,0.316666,0,4,0,1,1,,1,1,S I 75,,1595106,23.63,23.947,0,,0.32,8.5 +15972,0,0.079348,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.043,0.122,0,1.904349,8.5,4.5 +22112,1,0.127767,1,0,0,1,1,RON,1,1,Clifford/N I 75,RAMP,4700017,0,0.128,0,,1.09,4 +23892,-1,0.145505,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.688,0.834,0,3.492116,8.5,4.5 +23893,-1,0.108915,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.58,0.688,0,2.613964,8.5,4.5 +33141,0,0.07483,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.795908,0.15,4 +33144,0,0.08656,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.077434,0.15,4 +33673,0,0.173803,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.171265,0.15,4 +12365,0,0.042723,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.736,0.779,0,1.025361,8,4.5 +13641,1,0.031698,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.288,0.319,0,0.760748,8.5,4.5 +13643,1,0.019903,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.12,0.14,0,0.477672,8.5,4.5 +16563,0,0.123976,1,1,0,2,5,,1,1,Columbia,St,1609808,0,0.124,0,2.975429,8.5,4.5 +23895,-1,0.031562,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.468,0.5,0,0.757496,8.5,4.5 +23896,-1,0.135041,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.333,0.468,0,3.240973,8.5,4.5 +15110,1,0.107497,1,0,0,1,1,ROF,1,1,S I 75/Grand River,RAMP,1595307,0,0.108,0,,3.07,5 +13632,1,0.032545,3,0,0,2,5,,1,1,2nd,St,4718974,0.076,0.109,0,0.781078,8.5,4.5 +13633,1,0.029142,3,0,0,2,5,,1,1,2nd,St,4718974,0.047,0.076,0,0.699407,8.5,4.5 +12375,0,0.021265,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.668,0.689,0,0.510371,8,4.5 +15973,0,0.04284,1,1,0,2,5,,1,1,Montcalm,St,1598408,0,0.043,0,1.028171,8.5,4.5 +33142,0,0.071153,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.707678,0.15,4 +12378,0,0.027205,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.64,0.668,0,0.652919,8,4.5 +12369,0,0.047568,1,1,1,2,4,,1,1,Cass,Ave,1577605,0.689,0.736,0,1.141627,8,4.5 +13642,1,0.036653,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.251,0.288,0,0.879667,8.5,4.5 +23894,-1,0.080054,0,2,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.5,0.58,0,1.921305,8.5,4.5 +15975,0,0.12438,1,1,0,2,5,,2,1,Temple,St,1598402,0.568,0.693,0,2.985113,8.5,4.5 +15976,0,0.078727,1,1,0,2,5,,2,1,Temple,St,1598402,0.489,0.568,0,1.889443,8.5,4.5 +12287,0,0.034227,1,1,0,2,4,,2,1,Cass,Ave,1577605,0.992,1.026,0,0.821449,8,4.5 +12346,0,0.067875,1,1,1,2,4,,2,1,Cass,Ave,1577605,0.924,0.992,0,1.628992,8,4.5 +30838,0,0.025721,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.617303,0.15,4 +14496,0,0.034504,2,2,1,2,3,,2,1,Woodward,Ave,1591001,5.708,5.742,0,0.828101,6,5 +14491,0,0.09792,2,2,1,2,3,,1,1,Woodward,Ave,1591001,6.08,6.178,0,2.350092,6,5 +14492,0,0.0542,2,2,1,2,3,,1,1,Woodward,Ave,1591001,6.026,6.08,0,1.3008,6,5 +15971,0,0.103298,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.122,0.225,0,2.479146,8.5,4.5 +21091,0,0.09719,1,1,0,2,5,,1,1,Elizabeth,St,4700499,0.212,0.309,0,2.33255,8.5,4.5 +21379,0,0.079576,1,1,0,2,5,,1,1,Elizabeth,St,4700499,0.132,0.212,0,1.90983,8.5,4.5 +13639,1,0.106652,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.367,0.474,0,2.559644,8.5,4.5 +14493,0,0.039964,2,2,1,2,3,,1,1,Woodward,Ave,1591001,5.986,6.026,0,0.95914,6,5 +13625,-1,0.090087,0,4,0,2,4,,1,1,Adams,Ave,1584401,0.184,0.274,0,2.162089,8,4.5 +14490,0,0.052619,2,2,1,2,3,,1,1,Woodward,Ave,1591001,6.178,6.23,0,1.262854,6,5 +15970,0,0.071891,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.225,0.297,0,1.725377,8.5,4.5 +22944,0,0.197659,1,1,0,2,4,,2,1,John R,St,4705731,0.096,0.293,0,4.743809,8,4.5 +11918,0,0.311727,1,1,0,2,4,,2,1,Brush,St,4718307,1.141,1.452,0,7.481437,8,4.5 +14308,1,0.133196,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.12,0.253,0,3.196696,6,5 +14500,0,0.078924,3,3,1,2,3,,2,1,Woodward,Ave,1591001,5.339,5.418,0,1.894183,6,5 +22735,0,0.050736,2,2,0,2,4,,2,1,John R,St,4705731,0.663,0.714,0,1.217655,8,4.5 +23656,0,0.144136,1,1,0,2,4,,2,1,John R,St,4705731,0.372,0.516,0,3.459269,8,4.5 +23829,-1,0.130221,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.339,0.469,0,3.125307,6,5 +30832,0,0.21546,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.171041,0.15,4 +33858,0,0.26573,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,6.377524,0.15,4 +33871,0,0.180341,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,4.328187,0.15,4 +14331,1,0.120022,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0,0.12,0,2.880526,6,5 +14498,0,0.151967,2,2,1,2,3,,2,1,Woodward,Ave,1591001,5.429,5.581,0,3.647206,6,5 +23830,-1,0.119099,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.22,0.339,0,2.858376,6,5 +14499,0,0.01088,3,3,1,2,3,,2,1,Woodward,Ave,1591001,5.418,5.429,0,0.261115,6,5 +23322,0,0.13643,1,1,0,2,4,,2,1,John R,St,4705731,0.516,0.652,0,3.274326,8,4.5 +23004,0,0.010914,2,2,0,2,4,,2,1,John R,St,4705731,0.652,0.663,0,0.261946,8,4.5 +22289,0,0.183503,2,2,0,2,4,,2,1,John R,St,4705731,0.714,0.897,0,4.404078,8,4.5 +30836,0,0.126725,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.041391,0.15,4 +23411,0,0.084735,2,2,0,2,4,,2,1,John R,St,4705731,0.897,0.982,0,2.03364,8,4.5 +30833,0,0.127079,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.049906,0.15,4 +30834,0,0.007129,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.171105,0.15,4 +14299,1,0.069679,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.253,0.323,0,1.6723,6,5 +23828,-1,0.074123,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.469,0.543,0,1.778945,6,5 +11916,0,0.011263,1,1,1,2,4,,2,1,Brush,St,4718307,1.452,1.464,0,0.270319,8,4.5 +14255,1,0.096132,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.323,0.419,0,2.307158,6,5 +23827,-1,0.095876,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.543,0.639,0,2.301027,6,5 +16055,0,0.008122,2,2,0,2,4,,2,1,Saint Antoine,St,1608803,0.581,0.589,0,0.194917,8,4.5 +11413,1,0.147651,3,0,0,1,1,,2,1,E I 94,,1576405,28.492,28.639,0,,0.32,8.5 +11894,1,0.256105,1,0,0,1,1,RFS,2,1,N I 75/W I 94,RAMP,1577704,0,0.256,0,,0.22,6 +11928,-1,0.210659,0,4,0,1,1,,2,1,S I 75,,1577705,2.363,2.573,0,,0.32,8.5 +13355,1,0.299985,4,0,0,1,1,,2,1,N I 75,,1577706,2.273,2.573,0,,0.32,8.5 +13696,0,0.120325,1,1,0,2,5,,2,1,Ferry,St,1585703,0.426,0.547,0,2.887808,8.5,4.5 +14077,0,0.132644,1,1,0,2,5,,2,1,Canfield,St,1585701,0.282,0.414,0,3.18346,8.5,4.5 +14109,-1,0.216929,0,3,0,1,1,,2,1,W I 94,,1588802,28.341,28.558,0,,0.32,8.5 +14324,1,0.188664,1,0,0,1,1,ROF,2,1,W I 94/Beaubien,RAMP,1585410,0,0.189,0,,3.07,5 +14374,1,0.236343,2,0,0,1,1,RFS,2,1,E I 94/S I 75,RAMP,1585407,0.06,0.297,0,,0.22,6 +16601,0,0.06977,1,1,0,2,5,,2,1,Saint Antoine,St,1608803,1.526,1.596,0,1.674479,8.5,4.5 +16804,-1,0.197722,0,1,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.499,1.697,0,4.745321,8.5,4.5 +16816,-1,0.016147,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.193,1.209,0,0.387525,8.5,4.5 +16894,0,0.119056,1,1,0,2,5,,2,1,Saint Antoine,St,1608803,1.407,1.526,0,2.857336,8.5,4.5 +17223,1,0.060996,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,7.478,7.539,0,1.463894,6,5 +17226,1,0.152545,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,7.191,7.344,0,3.661081,6,5 +21369,-1,0.152042,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,1.071,1.223,0,3.64902,6,5 +21946,-1,0.063195,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,1.358,1.421,0,1.51669,6,5 +22532,1,0.100399,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,1.22,1.321,0,2.409574,8.5,4.5 +22818,1,0.241074,3,0,0,2,5,,2,1,Brush,St,4705554,0,0.241,0,5.785773,8.5,4.5 +23149,-1,0.242104,0,3,0,2,4,,2,1,John R,St,4705731,1.383,1.625,0,5.810493,8,4.5 +23185,1,0.164055,4,0,0,2,4,,2,1,Brush,St,4705554,0.328,0.492,0,3.937324,8,4.5 +30840,0,0.090577,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.173851,0.15,4 +33263,0,0.122377,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.937046,0.15,4 +33304,0,0.1399,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.357589,0.15,4 +33832,0,0.115115,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.76277,0.15,4 +13460,1,0.131047,4,0,0,2,4,,2,1,Forest,Ave,1584908,1.266,1.397,0,3.145131,8,4.5 +14505,0,0.161047,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.857,5.018,0,3.865133,6,5 +14507,0,0.075468,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.701,4.777,0,1.811239,6,5 +17228,1,0.125766,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.929,7.055,0,3.018384,6,5 +17229,1,0.133837,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,6.795,6.929,0,3.212099,6,5 +21625,-1,0.124391,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.809,0.934,0,2.985382,6,5 +21812,-1,0.133837,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.675,0.809,0,3.212096,6,5 +22504,0,0.147588,2,2,0,2,4,,2,1,John R,St,4705731,1.223,1.37,0,3.542117,8,4.5 +30842,0,0.096924,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.326165,0.15,4 +30848,0,0.106143,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.547439,0.15,4 +12243,0,0.080793,1,1,0,2,4,,2,1,Cass,Ave,1577605,1.92,2.001,0,1.939027,8,4.5 +13463,1,0.140285,4,0,0,2,3,,2,1,Forest,Ave,1584908,1.126,1.266,0,3.366844,6,5 +30596,0,0.129575,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.109798,0.15,4 +30657,0,0.090725,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.177389,0.15,4 +12242,0,0.0822,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.001,2.083,0,1.972795,8,4.5 +30655,0,0.072553,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.741277,0.15,4 +30656,0,0.010923,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.262146,0.15,4 +12241,0,0.012531,1,1,0,2,4,,2,1,Cass,Ave,1577605,2.083,2.096,0,0.300737,8,4.5 +14506,0,0.080231,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.777,4.857,0,1.925535,6,5 +14509,0,0.074959,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.613,4.688,0,1.79901,6,5 +14510,0,0.143695,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.47,4.613,0,3.448679,6,5 +14508,0,0.012952,3,3,1,2,3,,2,1,Woodward,Ave,1591001,4.688,4.701,0,0.310846,6,5 +14082,0,0.123885,1,1,0,2,5,,2,1,Canfield,St,1585701,0.158,0.282,0,2.973244,8.5,4.5 +22789,0,0.081633,2,2,0,2,4,,2,1,John R,St,4705731,1.141,1.223,0,1.959185,8,4.5 +30843,0,0.1059,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.541606,0.15,4 +33264,0,0.067447,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.618722,0.15,4 +23065,0,0.078436,2,2,0,2,4,,2,1,John R,St,4705731,1.063,1.141,0,1.882472,8,4.5 +17227,1,0.136723,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,7.055,7.191,0,3.281341,6,5 +21538,-1,0.137474,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,0.934,1.071,0,3.299367,6,5 +23525,1,0.012829,4,0,0,2,4,,2,1,Brush,St,4705554,0.315,0.328,0,0.307886,8,4.5 +23492,0,0.012261,2,2,0,2,4,,2,1,John R,St,4705731,1.37,1.383,0,0.294259,8,4.5 +22535,1,0.074087,3,0,0,2,5,,2,1,Brush,St,4705554,0.241,0.315,0,1.778097,8.5,4.5 +13705,0,0.137189,1,1,0,2,5,,2,1,Ferry,St,1585703,0.125,0.262,0,3.292536,8.5,4.5 +14351,-1,0.094705,0,1,0,2,5,,2,1,Hendrie,St,1585408,0.331,0.426,0,2.272911,8.5,4.5 +15988,-1,0.095306,0,2,0,2,5,,2,1,Medbury,St,1598202,0.333,0.428,0,2.287336,8.5,4.5 +16890,1,0.160406,2,0,0,2,5,,2,1,Saint Antoine,St,1608803,1.676,1.836,0,3.849753,8.5,4.5 +22855,1,0.189208,4,0,0,2,4,,2,1,Brush,St,4705554,0.643,0.832,0,4.541001,8,4.5 +23927,1,0.063038,2,0,0,2,5,,2,1,E I 94 Service Drive,,4706937,0.209,0.272,0,1.512922,8.5,4.5 +23929,1,0.13867,2,0,0,2,5,,2,1,E I 94 Service Drive,,4706937,0,0.139,0,3.328082,8.5,4.5 +33266,0,0.155193,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.72463,0.15,4 +22570,-1,0.18111,0,3,0,2,4,,2,1,John R,St,4705731,1.705,1.886,0,4.346635,8,4.5 +22861,-1,0.080024,0,3,0,2,4,,2,1,John R,St,4705731,1.625,1.705,0,1.920586,8,4.5 +33265,0,0.02452,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.58847,0.15,4 +22936,0,0.159422,1,1,0,2,5,,3,1,Beaubien,St,4705574,0.391,0.551,0,3.82614,8,4.5 +23569,1,0.078508,3,0,0,2,4,,3,1,Brush,St,4705554,0.882,0.961,0,1.884182,6,4.5 +14127,0,0.068793,1,1,0,2,5,,3,1,Piquette,St,1585704,0.268,0.337,0,1.651037,8,4.5 +23222,1,0.081826,3,0,0,2,4,,3,1,Brush,St,4705554,0.961,1.042,0,1.963816,6,4.5 +15989,-1,0.069428,0,2,0,2,5,,2,1,Medbury,St,1598202,0.264,0.333,0,1.666261,8.5,4.5 +22566,1,0.050471,3,0,0,2,4,,2,1,Brush,St,4705554,0.832,0.882,0,1.211296,8,4.5 +23239,0,0.046512,1,1,0,2,5,,2,1,Beaubien,St,4705574,0.345,0.391,0,1.116286,8.5,4.5 +23928,1,0.06992,2,0,0,2,5,,2,1,E I 94 Service Drive,,4706937,0.139,0.209,0,1.678082,8.5,4.5 +23577,0,0.034292,1,1,0,2,5,,2,1,Beaubien,St,4705574,0.31,0.345,0,0.823008,8.5,4.5 +13700,0,0.164209,1,1,0,2,5,,2,1,Ferry,St,1585703,0.262,0.426,0,3.941008,8.5,4.5 +23141,1,0.150669,4,0,0,2,4,,2,1,Brush,St,4705554,0.492,0.643,0,3.616045,8,4.5 +33661,0,0.211109,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.066619,0.15,4 +16368,1,0.080234,2,0,0,2,5,,2,1,Saint Antoine,St,1608803,1.596,1.676,0,1.925614,8.5,4.5 +30841,0,0.03939,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,0.945367,0.15,4 +10701,1,0.122603,3,0,0,1,1,,2,1,E I 94,,1576405,28.369,28.492,0,,0.32,8.5 +22785,1,0.098728,1,0,0,1,1,RFF,2,1,S I 75/W I 94,RAMP,4705662,0.471,0.57,0,,0.32,8.5 +22914,1,0.113746,1,0,0,1,1,RON,2,1,Beaubien/E I 94,RAMP,4705575,0,0.114,0,,1.09,4 +14381,1,0.060267,2,0,0,1,1,RFF,2,1,E I 94/S I 75,RAMP,1585407,0,0.06,0,,0.32,8.5 +23926,1,0.034717,1,0,0,2,5,,2,1,E I 94 Service Drive,,4706937,0.272,0.306,0,0.833201,8.5,4.5 +16598,1,0.013389,2,0,0,2,5,,2,1,Saint Antoine,St,1608803,1.836,1.85,0,0.321342,8.5,4.5 +23925,1,0.023745,1,0,0,2,5,,2,1,S I 75 Service Drive,,4706937,0.306,0.33,0,0.56987,8.5,4.5 +13999,0,0.06431,1,1,0,2,5,,2,1,Canfield,St,1585701,0.699,0.764,0,1.543431,8.5,4.5 +14065,0,0.152585,1,1,0,2,5,,2,1,Canfield,St,1585701,0.414,0.567,0,3.66204,8.5,4.5 +16575,-1,0.034328,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.146,1.18,0,0.823866,8.5,4.5 +16627,1,0.242748,3,0,0,2,4,DV2,2,1,Saint Antoine,St,1608803,1.031,1.273,0,5.825941,8,4.5 +16858,-1,0.288578,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.857,1.146,0,6.925875,8.5,4.5 +22568,-1,0.242736,0,3,0,2,4,DV2,2,1,Saint Antoine,St,4704944,0.444,0.687,0,5.825673,8,4.5 +30846,0,0.143375,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.441006,0.15,4 +30847,0,0.143283,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.438782,0.15,4 +30850,0,0.143511,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.444265,0.15,4 +16046,1,0.080259,3,0,0,2,4,DV2,2,1,Saint Antoine,St,1608803,1.273,1.354,0,1.926217,8,4.5 +17224,1,0.124019,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,7.354,7.478,0,2.976449,6,5 +22080,-1,0.124043,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,1.234,1.358,0,2.977035,6,5 +22549,-1,0.080305,0,3,0,2,4,DV2,2,1,Saint Antoine,St,4704944,0.687,0.767,0,1.927315,8,4.5 +30845,0,0.087967,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.111206,0.15,4 +33895,0,0.097052,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.329248,0.15,4 +16925,1,0.012135,2,0,0,2,4,DV2,2,1,Saint Antoine,St,1608803,1.354,1.366,0,0.291251,8,4.5 +22547,-1,0.012393,0,2,0,2,4,DV2,2,1,Saint Antoine,St,4704944,0.767,0.779,0,0.297428,8,4.5 +30844,0,0.082391,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,1.977379,0.15,4 +17225,1,0.01008,4,0,0,2,3,DIV,2,1,Warren,Ave,1628604,7.344,7.354,0,0.24192,6,5 +16623,1,0.041245,2,0,0,2,5,DV2,2,1,Saint Antoine,St,1608803,1.366,1.407,0,0.989884,8.5,4.5 +22546,-1,0.039283,0,2,0,2,5,DV2,2,1,Saint Antoine,St,4704944,0.779,0.819,0,0.942781,8.5,4.5 +21273,-1,0.010589,0,4,0,2,3,DIV,2,1,Warren,Ave,4700429,1.223,1.234,0,0.254141,6,5 +16345,-1,0.012744,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.18,1.193,0,0.305856,8.5,4.5 +14012,0,0.121792,1,1,0,2,5,,2,1,Canfield,St,1585701,0.578,0.699,0,2.923002,8.5,4.5 +30307,0,0.094955,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.278914,0.15,4 +30830,0,0.091944,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.206662,0.15,4 +14027,0,0.01083,1,1,0,2,5,,2,1,Canfield,St,1585701,0.567,0.578,0,0.25992,8.5,4.5 +13470,1,0.187695,1,0,0,1,1,ROF,2,1,N I 75/Warren,RAMP,1586104,0,0.188,0,,3.07,5 +13750,-1,0.146509,0,1,0,1,1,RON,2,1,Warren/S I 75,RAMP,1585702,0,0.147,0,,1.09,4 +22815,1,0.222905,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.998,1.22,0,5.34971,8.5,4.5 +12957,1,0.28831,3,0,0,1,1,,2,1,N I 75,,1577706,2.573,2.861,0,,0.32,8.5 +13652,1,0.148684,1,0,0,1,1,RON,2,1,Warren/E I 94,RAMP,1586209,0,0.149,0,,1.09,4 +13673,0,0.101909,1,1,0,2,5,,2,1,Ferry,St,1585703,0.547,0.648,0,2.445827,8.5,4.5 +13865,1,0.234416,1,0,0,1,1,RON,2,1,Warren/N I 75,RAMP,1586105,0,0.234,0,,1.09,4 +14321,0,0.081597,1,1,0,2,5,,3,1,Ferry,St,1585703,0.695,0.776,0,1.95833,8,4.5 +22596,1,0.159751,2,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,1.485,1.645,0,3.834015,8.5,4.5 +22929,0,0.177917,2,2,0,2,4,,3,1,Russell,St,4705681,0.643,0.821,0,4.27,6,4.5 +23223,0,0.150065,1,1,0,2,4,,3,1,Russell,St,4705681,0.493,0.643,0,3.601555,6,4.5 +23512,1,0.299861,1,0,0,1,1,RFF,2,1,N I 75/E I 94,RAMP,4705723,0,0.3,0,,0.32,8.5 +30593,0,0.204127,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.899059,0.15,4 +30594,0,0.129198,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.100741,0.15,4 +30595,0,0.136558,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.277395,0.15,4 +12464,-1,0.263637,0,3,0,1,1,,2,1,S I 75,,1577705,2.573,2.837,0,,0.32,8.5 +14310,1,0.272938,1,0,0,1,1,ROF,2,1,S I 75/Warren,RAMP,1585501,0,0.273,0,,3.07,5 +14365,1,0.288116,1,0,0,1,1,RFF,2,1,E I 94/S I 75,RAMP,1585407,0.297,0.585,0,,0.32,8.5 +16539,-1,0.210238,0,1,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.209,1.419,0,5.045719,8.5,4.5 +16309,-1,0.08017,0,1,0,2,5,,2,1,S I 75 Service Drive,,1608804,1.419,1.499,0,1.924087,8.5,4.5 +23167,1,0.139873,1,0,0,1,1,RFF,2,1,N I 75/E I 94,RAMP,4705723,0.3,0.44,0,,0.32,8.5 +13660,0,0.046314,1,1,0,2,5,,3,1,Ferry,St,1585703,0.648,0.695,0,1.111526,8,4.5 +17222,1,0.166589,3,0,0,2,3,DIV,3,1,Warren,Ave,1628604,7.539,7.705,0,3.998142,5,5 +21752,-1,0.165455,0,3,0,2,3,DIV,3,1,Warren,Ave,4700429,1.421,1.586,0,3.970917,5,5 +22889,1,0.096166,4,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,1.389,1.485,0,2.307982,8.5,4.5 +23570,0,0.15424,1,1,0,2,4,,3,1,Russell,St,4705681,0.339,0.493,0,3.70176,6,4.5 +23182,1,0.054794,4,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,1.334,1.389,0,1.315056,8.5,4.5 +23522,1,0.013172,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,1.321,1.334,0,0.316134,8.5,4.5 +22567,0,0.015286,2,2,1,2,4,,3,1,Russell,St,4705681,0.323,0.339,0,0.366867,6,4.5 +14337,0,0.093756,1,1,0,2,5,,3,1,Ferry,St,1585703,0.776,0.87,0,2.250135,8,4.5 +30592,0,0.052243,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.253834,0.15,4 +12885,0,0.088961,1,1,0,2,4,,2,1,Russell,St,1577709,0.093,0.182,0,2.135054,8,4.5 +12993,-1,0.167595,0,3,0,1,1,,1,1,S I 375,,1577705,0.859,1.027,0,,0.32,8.5 +13044,-1,0.210688,0,4,0,1,1,,2,1,S I 375,,1577705,1.232,1.443,0,,0.32,8.5 +13278,0,0.148847,1,1,0,2,4,,2,1,Russell,St,1577709,0.377,0.526,0,3.572326,8,4.5 +13362,1,0.139429,3,0,0,1,1,,2,1,N I 375,,1577706,1.175,1.314,0,,0.32,8.5 +13365,1,0.254833,3,0,0,1,1,,1,1,N I 375,,1577706,0.831,1.086,0,,0.32,8.5 +13736,1,0.302141,1,0,0,1,1,RON,1,1,Madison/N I 375,RAMP,1586010,0,0.302,0,,1.09,4 +13855,0,0.050797,1,1,0,2,5,,3,1,Orleans,St,1587405,0,0.051,0,1.219123,8,4.5 +14070,1,0.053869,4,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.227,0.281,0,1.292863,8.5,4.5 +14093,0,0.434825,1,1,0,2,5,,3,1,Antietam,Ave,1587309,0.136,0.571,0,10.435797,8,4.5 +14336,1,0.473681,1,0,0,1,1,RFS,1,1,S I 75/N Connector 8,RAMP,1585606,0,0.474,0,,0.22,6 +14383,1,0.176237,1,0,0,1,1,RFF,2,1,S Connector 8/N I 75,RAMP,1586101,0.128,0.304,0,,0.32,8.5 +14413,1,0.361222,1,0,0,1,1,RFS,2,1,N I 375/S I 75,RAMP,1585605,0,0.361,0,,0.22,6 +14414,1,0.362989,1,0,0,1,1,RFS,2,1,S Connector 8/S I 375,RAMP,1585603,0,0.363,0,,0.22,6 +14451,1,0.329373,2,0,0,1,1,RFS,1,1,N I 75,,1585602,0,0.329,0,,0.22,6 +15067,1,0.10514,2,0,0,1,2,,2,1,N I 75/Gratiot,CONN,1592010,24.458,24.563,0,,0.32,8.5 +15231,1,0.206704,3,0,0,1,2,,2,1,N I 75/Gratiot,CONN,1592010,24.251,24.458,0,,0.32,8.5 +15442,1,0.191287,1,0,0,1,1,RFF,2,1,N I 375/N Connector 8,RAMP,1591208,0.14,0.331,0,,0.32,8.5 +15716,-1,0.360928,0,3,0,1,2,,2,1,S I 75/Gratiot,CONN,1595106,24.259,24.62,0,,0.32,8.5 +17805,0,0.0823,1,1,1,2,5,,2,1,Winder,St,1638104,0.216,0.298,0,1.975203,8.5,4.5 +22030,0,0.178312,1,1,0,2,5,,3,1,Erskine,St,4700425,0,0.178,0,4.279478,8,4.5 +22650,0,0.138503,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,0.85,0.989,0,3.324065,5,5 +22679,0,0.331356,1,1,0,2,5,,2,1,N I 75 Service Drive,,4705748,0,0.331,0,7.952548,8.5,4.5 +22869,0,0.094569,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.43,0.525,0,2.269664,6,5 +23103,1,0.045106,1,0,0,2,5,,1,1,Clinton,St,4705738,0.117,0.162,0,1.082537,8.5,4.5 +23303,-1,0.367885,0,1,0,1,1,ROF,1,1,S I 375/Madison,RAMP,4705734,0,0.368,0,,3.07,5 +30295,0,0.112216,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,2.693189,0.15,4 +30297,0,0.147341,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.536174,0.15,4 +30340,0,0.028865,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.692758,0.15,4 +30341,0,0.073966,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.775173,0.15,4 +30582,0,0.228924,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,5.49418,0.15,4 +33110,0,0.350181,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,8.404349,0.15,4 +33226,0,0.067208,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.613003,0.15,4 +11977,0,0.149237,1,1,1,2,4,,1,1,Brush,St,4718307,0.651,0.8,0,3.581694,8,4.5 +11978,0,0.055582,1,1,1,2,4,,1,1,Brush,St,4718307,0.595,0.651,0,1.333979,8,4.5 +14256,0,0.1539,1,1,0,2,5,,1,1,Saint Antoine,St,1587307,0.453,0.607,0,3.693592,8.5,4.5 +14796,1,0.23,3,0,0,1,2,,1,1,N I 75/Gratiot,CONN,1592010,24.021,24.251,0,,0.32,8.5 +15488,0,0.052358,1,1,1,2,4,,1,1,Madison,St,1591207,0.142,0.194,0,1.256581,8,4.5 +15504,1,0.15831,1,0,0,1,2,RON,1,1,Brush/N Connector 8,RAMP,1591206,0,0.158,0,,1.09,4 +15967,0,0.157546,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.476,0.634,0,3.781094,8.5,4.5 +15968,0,0.099467,1,1,0,2,5,,1,1,Montcalm,St,1598408,0.377,0.476,0,2.387219,8.5,4.5 +17807,0,0.147551,1,1,0,2,5,,2,1,Winder,St,1638104,0.068,0.216,0,3.541222,8.5,4.5 +22956,1,0.214332,2,0,0,1,1,RFS,1,1,N I 75/S I 375,RAMP,4705745,0.147,0.361,0,,0.22,6 +23589,0,0.054876,1,1,1,2,5,,1,1,John R,St,4705731,0,0.055,0,1.317016,8.5,4.5 +30306,0,0.15615,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.747591,0.15,4 +30343,0,0.082949,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.990771,0.15,4 +30852,0,0.088346,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.120296,0.15,4 +13622,0,0.06308,2,2,0,2,4,,1,1,Adams,Ave,1584401,0.436,0.499,0,1.513914,8,4.5 +13623,0,0.080175,2,2,0,2,4,,1,1,Adams,Ave,1584401,0.356,0.436,0,1.924194,8,4.5 +15501,-1,0.080348,0,2,0,2,4,,1,1,Madison,St,1591207,0,0.08,0,1.928346,8,4.5 +23225,1,0.079629,2,0,0,2,4,,1,1,Madison,St,4704642,0,0.08,0,1.911105,8,4.5 +24886,0,0.076783,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.842787,0.15,4 +33855,0,0.142946,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,3.430699,0.15,4 +15961,1,0.029137,3,0,0,2,4,,1,1,Witherell,St,1598410,0.098,0.127,0,0.699282,8,4.5 +15963,1,0.035643,2,0,0,2,4,,1,1,Witherell,St,1598410,0.044,0.08,0,0.855438,8,4.5 +15960,1,0.051409,2,0,0,2,5,,1,1,Witherell,St,1598410,0.127,0.179,0,1.233823,8.5,4.5 +15962,1,0.018325,2,0,0,2,4,,1,1,Witherell,St,1598410,0.08,0.098,0,0.439789,8,4.5 +30303,0,0.04907,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.17768,0.15,4 +12055,-1,0.072979,0,3,0,2,4,,1,1,John R,St,1577608,0.189,0.262,0,1.751502,8,4.5 +15490,-1,0.061679,0,2,0,2,4,,1,1,Madison,St,1591207,0.08,0.142,0,1.480288,8,4.5 +23224,1,0.068006,2,0,0,2,4,,1,1,Madison,St,4704642,0.08,0.148,0,1.632148,8,4.5 +30344,0,0.049212,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.181083,0.15,4 +30345,0,0.046561,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.11746,0.15,4 +12064,-1,0.039008,0,3,0,2,4,,1,1,John R,St,1577608,0.131,0.17,0,0.936195,8,4.5 +12063,-1,0.018705,0,3,0,2,4,,1,1,John R,St,1577608,0.17,0.189,0,0.448917,8,4.5 +15954,0,0.014626,1,1,0,2,4,,1,1,Randolph,St,1598501,0.243,0.257,0,0.351014,8,4.5 +13621,0,0.025779,2,2,0,2,4,,1,1,Adams,Ave,1584401,0.499,0.525,0,0.618697,8,4.5 +11974,0,0.056343,1,1,0,2,4,,2,1,Brush,St,4718307,0.901,0.957,0,1.352225,8,4.5 +11975,0,0.046533,1,1,1,2,4,,1,1,Brush,St,4718307,0.855,0.901,0,1.116801,8,4.5 +13637,1,0.103451,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.621,0.725,0,2.482814,8.5,4.5 +17811,0,0.068037,1,1,0,2,5,,2,1,Winder,St,1638104,0,0.068,0,1.632877,8.5,4.5 +23263,1,0.14673,2,0,0,1,1,RFF,1,1,N I 75,,4705745,0,0.147,0,,0.32,8.5 +11976,0,0.054371,1,1,1,2,4,,1,1,Brush,St,4718307,0.8,0.855,0,1.304905,8,4.5 +13636,1,0.037831,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.725,0.763,0,0.907949,8.5,4.5 +13651,-1,0.078068,0,2,0,2,5,,1,1,Beaubien,St,1587305,0.645,0.723,0,1.873624,8.5,4.5 +14058,1,0.027892,4,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.332,0.359,0,0.669411,8.5,4.5 +15467,0,0.100386,2,2,0,2,4,,1,1,Madison,St,1591207,0.261,0.362,0,2.409274,8,4.5 +33132,0,0.096618,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.318823,0.15,4 +15480,0,0.066847,1,1,1,2,4,,1,1,Madison,St,1591207,0.194,0.261,0,1.60433,8,4.5 +30304,0,0.08113,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,1.947116,0.15,4 +11979,0,0.051616,1,1,1,2,4,,1,1,Brush,St,4718307,0.544,0.595,0,1.238784,8,4.5 +33133,0,0.01858,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,0.445909,0.15,4 +23445,1,0.050155,1,0,0,2,5,,1,1,Clinton,St,4705738,0.067,0.117,0,1.203714,8.5,4.5 +23501,0,0.062142,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.314,0.377,0,1.491409,6,5 +14092,-1,0.044261,0,2,0,2,4,,1,1,Beaubien,St,1587305,0.6,0.645,0,1.062267,8,4.5 +14295,1,0.050392,4,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.281,0.332,0,1.209401,8.5,4.5 +23159,0,0.053606,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.377,0.43,0,1.286536,6,5 +14033,0,0.056803,1,1,0,2,5,,1,1,Saint Antoine,St,1587307,0.396,0.453,0,1.363262,8.5,4.5 +14258,0,0.036703,1,1,0,2,5,,1,1,Saint Antoine,St,1587307,0.359,0.396,0,0.880861,8.5,4.5 +12152,1,0.08869,3,0,0,1,1,,1,1,N I 375,,1577706,1.086,1.175,0,,0.32,8.5 +12681,-1,0.138879,0,3,0,1,1,,1,1,S I 375,,1577705,1.093,1.232,0,,0.32,8.5 +15451,1,0.139863,1,0,0,1,1,RFS,1,1,N I 375/N Connector 8,RAMP,1591208,0,0.14,0,,0.22,6 +13035,-1,0.066882,0,3,0,1,1,,1,1,S I 375,,1577705,1.027,1.093,0,,0.32,8.5 +13113,-1,0.243526,0,4,0,1,1,,2,1,S I 75,,1577705,1.443,1.686,0,,0.32,8.5 +13360,1,0.23734,4,0,0,1,1,,2,1,N I 75,,1577706,1.448,1.686,0,,0.32,8.5 +14183,1,0.084959,2,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.604,0.689,0,2.039018,6,5 +16593,-1,0.2332,0,2,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.191,0.424,0,5.596789,8.5,4.5 +23670,1,0.197752,2,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.331,0.529,0,4.746053,8.5,4.5 +23824,-1,0.084457,0,2,0,2,3,DIV,2,1,Mack,Ave,4707551,0.824,0.908,0,2.026964,6,5 +30301,0,0.400742,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,9.617813,0.15,4 +30302,0,0.143579,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.445903,0.15,4 +33662,0,0.411481,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,9.875535,0.15,4 +14185,1,0.062514,3,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.541,0.604,0,1.500346,6,5 +14223,1,0.08597,1,0,0,1,1,ROF,2,1,N I 75/Mack,RAMP,1586102,0,0.086,0,,3.07,5 +14334,1,0.103045,1,0,0,1,1,RON,2,1,Mack/S I 75,RAMP,1585608,0,0.103,0,,1.09,4 +16362,-1,0.014797,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.424,0.439,0,0.355131,8.5,4.5 +23825,-1,0.062419,0,3,0,2,3,DIV,2,1,Mack,Ave,4707551,0.761,0.824,0,1.498055,6,5 +16592,-1,0.029307,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.449,0.479,0,0.703357,8.5,4.5 +16883,-1,0.010372,0,3,0,2,5,,2,1,S I 75 Service Drive,,1608804,0.439,0.449,0,0.248938,8.5,4.5 +22749,1,0.013544,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.59,0.604,0,0.325064,8.5,4.5 +23026,1,0.010187,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.58,0.59,0,0.244484,8.5,4.5 +23335,1,0.051007,3,0,0,2,5,,2,1,N I 75 Service Drive,,4705748,0.529,0.58,0,1.224157,8.5,4.5 +12150,1,0.134312,4,0,0,1,1,,2,1,N I 75,,1577706,1.314,1.448,0,,0.32,8.5 +16885,0,0.098683,1,1,1,2,5,,2,1,S I 75 Service Drive,,1608804,0.092,0.191,0,2.368381,8.5,4.5 +30296,0,0.161586,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.878064,0.15,4 +15438,-1,0.13506,0,2,0,1,1,RFS,2,1,S I 75,,1591219,0.435,0.57,0,,0.22,6 +16366,0,0.092379,1,1,1,2,5,,2,1,S I 75 Service Drive,,1608804,0,0.092,0,2.217087,8.5,4.5 +13277,0,0.175162,2,2,0,2,4,,2,1,Russell,St,1577709,0.611,0.786,0,4.203895,8,4.5 +14179,1,0.078036,2,0,0,2,3,DIV,2,1,Mack,Ave,1585609,0.689,0.767,0,1.872869,6,5 +12877,0,0.085703,2,2,0,2,4,,2,1,Russell,St,1577709,0.526,0.611,0,2.056871,8,4.5 +13880,-1,0.061919,0,3,0,2,5,DV2,1,1,Antietam,Ave,1587320,0,0.062,0,1.486056,8.5,4.5 +13955,1,0.065078,2,0,0,2,5,DV2,1,1,Antietam,Ave,1587309,0,0.065,0,1.561865,8.5,4.5 +14290,1,0.134655,1,0,0,1,1,RON,1,1,Monroe/N I 375,RAMP,1586009,0,0.135,0,,1.09,4 +15049,1,0.233755,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.318,0.551,0,5.610123,8.5,4.5 +17330,0,0.229653,1,1,0,2,5,,3,1,Rivard,St,1627905,0.42,0.65,0,5.511672,8,4.5 +22577,0,0.07885,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.525,0.603,0,1.892389,6,5 +24273,1,0.053837,3,0,0,2,5,,1,1,Monroe,St,4711771,0.498,0.551,0,1.292083,8.5,4.5 +33109,0,0.155024,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.720577,0.15,4 +13967,-1,0.054796,0,2,0,2,5,,1,1,S I 375 Service Drive,,5491063,0.051,0.106,0,1.315101,8.5,4.5 +14464,1,0.135964,1,0,0,1,1,ROF,1,1,S I 375/Monroe,RAMP,1585510,0,0.136,0,,3.07,5 +17287,-1,0.113758,0,3,0,2,5,,1,1,Macomb,St,1628108,0.22,0.333,0,2.7302,8.5,4.5 +22824,0,0.118434,1,1,0,2,5,,1,1,Clinton,St,4705738,0.162,0.281,0,2.842418,8.5,4.5 +30342,0,0.10834,1,1,0,2,99,,1,1,Centroid Connector,,0,0,0,0,2.600172,0.15,4 +14309,1,0.05018,4,0,0,2,5,,1,1,Saint Antoine,St,1587307,0.177,0.227,0,1.204313,8.5,4.5 +14160,-1,0.102446,0,2,0,2,5,,1,1,S I 375 Service Drive,,5491063,0.106,0.208,0,2.458693,8.5,4.5 +13981,-1,0.054121,0,2,0,2,5,,1,1,S I 375 Service Drive,,1587308,0.311,0.365,0,1.298906,8.5,4.5 +39946,1,0.447617,3,0,0,2,5,,3,1,Sunset,Dr,5494520,0,0.447,0,10.742811,8,4.5 +14021,-1,0.055046,0,2,0,2,5,DV2,3,1,Antietam,Ave,1587320,0.062,0.117,0,1.321097,8,4.5 +14128,1,0.059826,2,0,0,2,5,DV2,3,1,Antietam,Ave,1587309,0.065,0.125,0,1.435821,8,4.5 +15031,1,0.011033,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.551,0.562,0,0.264795,8.5,4.5 +17329,0,0.05117,1,1,0,2,5,,3,1,Rivard,St,1627905,0.65,0.701,0,1.228079,8,4.5 +13935,0,0.011455,1,1,0,2,5,,3,1,Antietam,Ave,1587309,0.125,0.136,0,0.27492,8,4.5 +22940,0,0.127321,3,3,0,2,3,,2,1,Gratiot,Ave,4705742,0.723,0.85,0,3.055698,6,5 +23243,0,0.110152,3,3,0,2,3,,2,1,Gratiot,Ave,4705742,0.613,0.723,0,2.643641,6,5 +23583,0,0.00932,3,3,0,2,3,,1,1,Gratiot,Ave,4705742,0.603,0.613,0,0.223675,6,5 +15052,1,0.006284,3,0,0,2,5,,1,1,N I 375 Service Drive,,1591304,0.311,0.318,0,0.150806,8.5,4.5 +17331,0,0.01075,1,1,0,2,5,,3,1,Rivard,St,1627905,0.409,0.42,0,0.258009,8,4.5 +15352,1,0.182422,2,0,0,1,2,,3,1,N I 75/Gratiot,CONN,1592010,24.563,24.745,0,,0.58,7 +15423,-1,0.14055,0,2,0,1,2,,3,1,S I 75/Gratiot,CONN,1595106,24.62,24.76,0,,0.58,7 +17800,-1,0.183509,0,2,0,2,5,,3,1,Napolean,St,1638308,0.085,0.268,0,4.404224,8,4.5 +18397,1,0.115791,1,0,0,2,5,,3,1,I 75/I 375 Service Drive,,1633609,0,0.116,0,2.778995,8,4.5 +23407,0,0.140612,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.106,1.247,0,3.374695,5,5 +23485,0,0.278358,1,1,0,2,5,,3,1,Orleans,St,4705675,0,0.278,0,6.680586,8,4.5 +30513,0,0.175502,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.212044,0.15,4 +12881,0,0.151529,1,1,0,2,4,,2,1,Russell,St,1577709,0.225,0.377,0,3.636704,8,4.5 +14277,1,0.127732,2,0,0,1,1,RFS,2,1,S Connector 8/N I 75,RAMP,1586101,0,0.128,0,,0.22,6 +17803,0,0.084679,1,1,0,2,5,,2,1,Napolean,St,1638308,0,0.085,0,2.03229,8.5,4.5 +13280,0,0.043105,2,2,0,2,4,,2,1,Russell,St,1577709,0.182,0.225,0,1.034511,8,4.5 +23142,0,0.084913,1,1,0,2,5,,3,1,Orleans,St,4705675,0.278,0.363,0,2.037918,8,4.5 +30514,0,0.032285,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.77483,0.15,4 +15758,-1,0.072692,0,2,0,1,2,,3,1,S I 75/Gratiot,CONN,1595106,24.76,24.833,0,,0.58,7 +19271,1,0.059009,1,0,0,1,2,RON,3,1,Orleans/I 75,RAMP,1804007,0,0.059,0,,1.09,4 +23319,0,0.037699,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.061,1.099,0,0.904788,5,5 +23653,0,0.072179,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,0.989,1.061,0,1.732288,5,5 +17798,-1,0.034299,0,2,0,2,5,,3,1,Napolean,St,1638308,0.268,0.302,0,0.823175,8,4.5 +23001,0,0.007566,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.099,1.106,0,0.181573,5,5 +13900,0,0.083789,1,1,0,2,5,,3,1,Antietam,Ave,1587309,0.571,0.655,0,2.010935,8,4.5 +12070,0,0.17859,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,0,0.179,0,4.286149,6,4.5 +23072,0,0.056614,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.247,1.303,0,1.358738,5,5 +12068,0,0.160777,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,0.842,1.002,0,3.858643,6,4.5 +13774,0,0.123823,1,1,0,2,5,,3,1,Chene,St,1587501,2.001,2.125,0,2.971747,8,4.5 +13792,1,0.135665,2,0,0,2,3,DIV,3,1,Mack,Ave,1587509,0,0.136,0,3.25595,5,5 +13848,0,0.114886,1,1,0,2,5,,3,1,Canfield,St,1585701,1.388,1.503,0,2.757254,8,4.5 +13895,0,0.143124,1,1,0,2,5,,3,1,Canfield,St,1585701,1.157,1.3,0,3.434972,8,4.5 +13944,0,0.241027,2,2,0,2,5,,3,1,Chene,St,1587501,2.447,2.687,0,5.784639,8,4.5 +14061,1,0.202709,3,0,0,2,3,,3,1,Forest,Ave,5491069,0.143,0.346,0,4.865005,5,5 +21370,-1,0.202673,0,2,0,2,3,,3,1,Warren,Ave,4700429,1.96,2.162,0,4.864158,5,5 +22402,0,0.127693,2,2,0,2,5,,3,1,Dequindre,St,4701224,0.388,0.515,0,3.064631,8,4.5 +22403,0,0.320071,2,2,0,2,5,,3,1,Dequindre,St,4701224,0.068,0.388,0,7.681714,8,4.5 +23822,-1,0.17303,0,2,0,2,3,DIV,3,1,Mack,Ave,4707551,0.987,1.16,0,4.152711,5,5 +30300,0,0.352343,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.456232,0.15,4 +33237,0,0.348364,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.360739,0.15,4 +13899,0,0.230421,1,1,0,2,5,,3,1,Canfield,St,1585701,0.927,1.157,0,5.530105,8,4.5 +32993,0,0.270498,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.49194,0.15,4 +30299,0,0.040629,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.975088,0.15,4 +13265,0,0.321028,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,1.163,1.484,0,7.70467,6,4.5 +21482,-1,0.173493,0,3,0,2,3,,3,1,Warren,Ave,4700429,1.786,1.96,0,4.163842,5,5 +22400,1,0.168304,2,0,0,2,3,DIV,3,1,Dequindre,St,4701224,0.548,0.717,0,4.039294,5,5 +13270,0,0.161113,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,1.002,1.163,0,3.866709,6,4.5 +14300,1,0.143151,3,0,0,2,3,,3,1,Forest,Ave,5491069,0,0.143,0,3.43562,5,5 +22401,1,0.033107,2,0,0,2,5,DIV,3,1,Dequindre,St,4701224,0.515,0.548,0,0.794575,8,4.5 +24333,-1,0.050541,0,2,0,2,5,DIV,3,1,Dequindre,St,4711782,0,0.051,0,1.212995,8,4.5 +17218,1,0.019758,2,0,0,2,3,DIV,3,1,Dequindre/Forest Cutoff,,1628604,8.03,8.05,0,0.474191,5,5 +13274,0,0.258567,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,0.456,0.715,0,6.205607,6,4.5 +13657,0,0.202971,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.28,0.483,0,4.871314,5,5 +13956,0,0.261383,1,1,0,2,5,,3,1,Chene,St,1587501,1.74,2.001,0,6.273197,8,4.5 +33094,0,0.161636,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.879273,0.15,4 +33236,0,0.183162,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.395883,0.15,4 +13852,0,0.129094,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.151,0.28,0,3.09825,5,5 +22404,1,0.067704,2,0,0,2,5,,3,1,Dequindre,St,4701224,0,0.068,0,1.624897,8,4.5 +23820,-1,0.097048,0,2,0,2,5,,3,1,Dequindre/Mack Cutoff,,4707552,0,0.097,0,2.32916,8,4.5 +23821,-1,0.058693,0,2,0,2,3,DIV,3,1,Mack,Ave,4707551,1.16,1.218,0,1.408636,5,5 +14458,0,0.014955,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.136,0.151,0,0.358909,5,5 +12874,0,0.12668,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,0.715,0.842,0,3.040312,6,4.5 +13851,0,0.087996,1,1,0,2,5,,3,1,Canfield,St,1585701,1.3,1.388,0,2.111912,8,4.5 +33234,0,0.020869,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.500858,0.15,4 +13767,0,0.160819,1,1,0,2,5,,3,1,Chene,St,1587501,2.286,2.447,0,3.859657,8,4.5 +13889,1,0.109863,3,0,0,2,3,,3,1,Forest,Ave,5491069,0.517,0.627,0,2.636716,5,5 +13951,0,0.160781,1,1,0,2,5,,3,1,Chene,St,1587501,2.125,2.286,0,3.858736,8,4.5 +14079,1,0.171672,3,0,0,2,3,,3,1,Forest,Ave,5491069,0.346,0.517,0,4.12013,5,5 +21067,-1,0.281391,0,2,0,2,3,,3,1,Warren,Ave,4700429,2.162,2.444,0,6.753392,5,5 +23232,0,0.160886,2,2,0,2,5,,3,1,McDougall,St,4704611,1.035,1.196,0,3.861262,8,4.5 +11514,1,0.289407,3,0,0,1,1,,3,1,E I 94,,1576405,28.86,29.15,0,,0.58,7 +12062,0,0.09317,1,1,0,2,4,,3,1,Saint Aubin,St,1577801,1.79,1.883,0,2.236078,6,4.5 +12780,0,0.466026,2,2,0,2,3,,3,1,Mount Elliott,St,1577808,2.975,3.441,0,11.184623,5,5 +13079,1,0.224184,2,0,0,2,4,DIV,3,1,Grand,Blvd,1577308,5.284,5.508,0,5.380421,6,4.5 +13262,1,0.023424,1,0,0,2,4,,3,1,Saint Aubin,St,1577801,1.883,1.906,0,0.562166,6,4.5 +13808,0,0.193423,1,1,0,2,4,,2,2,Holbrook,St,1585801,1.767,1.96,0,4.642147,8,4.5 +13998,-1,0.296804,0,3,0,1,1,,3,1,W I 94,,1588802,28.828,29.125,0,,0.58,7 +19556,0,0.252367,2,2,0,2,4,,3,2,Hamtramck,Dr,1857310,0.708,0.96,0,6.056803,6,4.5 +19557,0,0.253798,2,2,0,2,4,,3,2,Hamtramck,Dr,1857310,0.454,0.708,0,6.091149,6,4.5 +22396,-1,0.199018,0,2,0,2,4,DV2,3,1,Grand,Blvd,4701247,0.199,0.398,0,4.776439,6,4.5 +24274,0,0.470948,2,2,0,2,5,,3,1,Saint Aubin,Blvd,4711426,0.117,0.588,0,11.302763,8,4.5 +30626,0,0.49093,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.782325,0.15,4 +30638,0,0.206117,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.946802,0.15,4 +30855,0,0.326099,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.826378,0.15,4 +32970,0,0.505074,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.121785,0.15,4 +12724,-1,0.329691,0,4,0,1,1,,3,1,S I 75,,1577705,3.68,4.01,0,,0.58,7 +12950,1,0.339078,4,0,0,1,1,,3,1,N I 75,,1577706,3.679,4.018,0,,0.58,7 +13087,1,0.051369,1,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.955,5.006,0,1.232865,6,4.5 +13093,1,0.325981,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.629,4.955,0,7.823555,6,4.5 +13717,0,0.228369,1,1,0,2,5,,3,1,Piquette,St,1585704,0.552,0.78,0,5.480852,8,4.5 +13799,0,0.095434,2,2,0,2,5,,3,1,Milwaukee,St,1585705,1.371,1.467,0,2.290416,8,4.5 +13908,1,0.125864,1,0,0,1,1,RON,3,1,Clay/S I 75,RAMP,1585707,0,0.126,0,,1.09,4 +14257,0,0.220688,2,2,0,2,5,,3,1,Clay,St,1585708,0.375,0.595,0,5.296509,8,4.5 +14288,1,0.133564,1,0,0,1,1,ROF,3,1,N I 75/Clay,RAMP,1586106,0,0.134,0,,2.24,5 +14342,1,0.375924,1,0,0,1,1,RFS,3,1,W I 94/N I 75,RAMP,1585409,0.11,0.486,0,,0.22,6 +14463,0,0.188684,2,2,0,2,5,,3,1,Clay,St,1585708,0,0.189,0,4.528415,8,4.5 +15434,-1,0.251846,0,3,0,2,5,,3,1,Chrysler,Dr,1591301,0.009,0.261,0,6.044295,8,4.5 +17392,1,0.218292,4,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.028,0.246,0,5.239013,8,4.5 +19561,-1,0.030734,0,2,0,2,4,DV2,3,1,Hamtramck,Dr,1857310,0,0.031,0,0.737608,6,4.5 +22398,-1,0.067634,0,2,0,2,4,DV2,3,1,Hamtramck,Dr,4701247,0.087,0.154,0,1.623212,6,4.5 +22800,0,0.209553,2,2,0,2,4,,3,1,Russell,St,4705681,1.044,1.253,0,5.029269,6,4.5 +24452,-1,0.047648,0,1,0,2,4,DV2,3,1,Grand,Blvd,4710494,2.129,2.177,0,1.143559,6,4.5 +24458,-1,0.302114,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.797,2.099,0,7.250739,6,4.5 +33255,0,0.215337,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.168093,0.15,4 +33499,0,0.444139,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.659333,0.15,4 +12951,1,0.241463,4,0,0,1,1,,3,1,N I 75,,1577706,3.261,3.502,0,,0.58,7 +13103,1,0.167181,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.349,4.516,0,4.012354,6,4.5 +13661,0,0.348263,1,1,0,2,5,,3,1,Milwaukee,St,1585705,1.023,1.371,0,8.358312,8,4.5 +23382,1,0.294058,1,0,0,1,1,RFF,3,1,S I 75/W I 94,RAMP,4705662,0,0.294,0,,0.32,8.5 +24466,-1,0.174688,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.485,1.66,0,4.192516,6,4.5 +33285,0,0.216997,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.207926,0.15,4 +23650,0,0.110514,1,1,0,2,5,,3,1,Beaubien,St,4705574,0.649,0.759,0,2.652341,8,4.5 +33259,0,0.172565,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.141571,0.15,4 +33260,0,0.038213,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.917114,0.15,4 +13892,0,0.095479,1,1,0,2,5,,3,1,Milwaukee,St,1585705,0.928,1.023,0,2.291502,8,4.5 +23952,0,0.250209,1,1,0,2,4,,3,1,Oakland,St,4708768,0,0.25,0,6.005022,6,4.5 +23953,0,0.012052,1,1,0,2,4,,3,1,Oakland,St,4706921,0,0.012,0,0.289252,6,4.5 +12297,-1,0.195514,0,4,0,1,1,,3,1,S I 75,,1577705,3.485,3.68,0,,0.58,7 +13098,1,0.082241,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.516,4.598,0,1.973777,6,4.5 +13352,1,0.177519,4,0,0,1,1,,3,1,N I 75,,1577706,3.502,3.679,0,,0.58,7 +22877,1,0.023267,4,0,0,2,5,,3,1,Russell,St,4705681,1.325,1.348,0,0.558414,8,4.5 +24462,-1,0.024808,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.772,1.797,0,0.595392,6,4.5 +24463,-1,0.111907,0,3,0,2,4,DV2,3,1,Grand,Blvd,4710494,1.66,1.772,0,2.68577,6,4.5 +15437,-1,0.009444,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0,0.009,0,0.226644,8,4.5 +13095,1,0.031081,3,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,4.598,4.629,0,0.745952,6,4.5 +22517,0,0.032354,2,2,0,2,4,,3,1,Russell,St,4705681,1.253,1.285,0,0.776505,6,4.5 +23907,1,0.02853,1,0,0,2,4,,3,1,Grand/Russell Cutoff,,4706970,0,0.029,0,0.684725,6,4.5 +23513,0,0.026309,2,2,0,2,4,,3,1,Russell,St,4705681,1.285,1.312,0,0.631427,6,4.5 +23168,0,0.013098,2,2,0,2,4,,3,1,Russell,St,4705681,1.312,1.325,0,0.31436,6,4.5 +17393,1,0.028094,1,0,0,1,5,,3,1,Chrysler,Dr,1625409,0,0.028,0,,8,4.5 +12129,1,0.26289,4,0,0,1,1,,3,1,N I 75,,1577706,4.018,4.281,0,,0.58,7 +12730,-1,0.260928,0,4,0,1,1,,3,1,S I 75,,1577705,4.01,4.271,0,,0.58,7 +14281,0,0.060756,1,1,0,2,5,,3,1,Clay,St,1585708,0.189,0.249,0,1.458149,8,4.5 +14362,1,0.143883,1,0,0,1,1,RON,3,1,Clay/N I 75,RAMP,1586107,0,0.144,0,,1.09,4 +15415,-1,0.322699,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0.338,0.661,0,7.744779,8,4.5 +17389,1,0.24676,2,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.312,0.559,0,5.922231,8,4.5 +33256,0,0.242659,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.823812,0.15,4 +33834,0,0.361569,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.677649,0.15,4 +14405,1,0.130998,1,0,0,1,1,ROF,3,1,S I 75/Clay,RAMP,1585709,0,0.131,0,,2.24,5 +15417,-1,0.049282,0,2,0,2,5,,3,1,Chrysler,Dr,1591301,0.289,0.338,0,1.182761,8,4.5 +15420,-1,0.027954,0,3,0,2,5,,3,1,Chrysler,Dr,1591301,0.261,0.289,0,0.67089,8,4.5 +13757,0,0.125381,2,2,0,2,5,,3,1,Clay,St,1585708,0.249,0.375,0,3.009155,8,4.5 +17391,1,0.038249,4,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.246,0.285,0,0.917972,8,4.5 +17390,1,0.027817,3,0,0,2,5,,3,1,Chrysler,Dr,1625409,0.285,0.312,0,0.667614,8,4.5 +33258,0,0.10261,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.462635,0.15,4 +14468,0,0.263039,2,2,0,2,5,,3,1,Milwaukee,St,1585705,1.467,1.73,0,6.312938,8,4.5 +23082,0,0.160049,2,2,0,2,4,,3,1,Russell,St,4705681,0.883,1.044,0,3.841166,6,4.5 +14344,1,0.109878,2,0,0,1,1,RFF,3,1,W I 94/N I 75,RAMP,1585409,0,0.11,0,,0.32,8.5 +22583,1,0.118627,2,0,0,1,1,RFF,3,1,N I 75/E I 94,RAMP,4705723,0.616,0.734,0,,0.32,8.5 +13083,1,0.220953,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,5.063,5.284,0,5.302876,6,4.5 +14459,0,0.013932,2,2,0,2,5,,3,1,Milwaukee,St,1585705,1.73,1.743,0,0.334368,8,4.5 +22397,-1,0.045205,0,2,0,2,4,DV2,3,1,Grand,Blvd,4701247,0.154,0.199,0,1.084909,6,4.5 +13086,1,0.056352,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,5.006,5.063,0,1.352439,6,4.5 +19558,0,0.311423,2,2,0,2,4,,3,2,Hamtramck,Dr,1857310,0.143,0.454,0,7.474141,6,4.5 +24423,0,0.11725,2,2,0,2,5,,3,1,Saint Aubin,St,4711426,0,0.117,0,2.814008,8,4.5 +19559,-1,0.089676,0,2,0,2,4,DV2,3,1,Hamtramck,Dr,1857310,0.053,0.143,0,2.15223,6,4.5 +19560,-1,0.022372,0,2,0,2,4,DV2,3,1,Hamtramck,Dr,1857310,0.031,0.053,0,0.536929,6,4.5 +22399,-1,0.086464,0,2,0,2,4,DV2,3,1,Hamtramck,Dr,4701247,0,0.087,0,2.075146,6,4.5 +22694,1,0.034965,1,0,0,2,4,DV2,3,1,E Grand/N Hamtramck Cutoff,,4704869,0,0.035,0,0.839149,6,4.5 +24455,-1,0.030259,0,1,0,2,4,DV2,3,1,Grand,Blvd,4710494,2.099,2.129,0,0.726227,6,4.5 +23910,-1,0.038875,0,1,0,2,4,DV2,3,1,S Hamtramck/W Grand Cutoff,,4706968,0,0.039,0,0.933003,6,4.5 +22693,1,0.035218,1,0,0,2,4,DV2,3,1,E Grand/N Hamtramck Cutoff,,4704869,0.035,0.07,0,0.845229,6,4.5 +14376,0,0.330177,1,1,0,2,4,,3,2,Holbrook,St,1585801,1.218,1.548,0,7.924236,6,4.5 +15772,0,0.208102,1,1,0,2,4,,2,2,Joseph Campau,St,1591101,0.851,1.059,0,4.994437,8,4.5 +15783,0,0.26613,2,2,0,2,4,,3,2,Joseph Campau,St,1591101,0.323,0.589,0,6.387113,6,4.5 +18992,0,0.201128,1,1,0,2,4,,2,2,Caniff,St,1632110,1.015,1.216,0,4.827084,8,4.5 +30857,0,0.339295,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.143091,0.15,4 +33277,0,0.147287,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.534885,0.15,4 +33341,0,0.334397,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.025528,0.15,4 +17180,0,0.045089,1,1,0,2,5,,3,2,Poland,St,1630810,0.119,0.164,0,1.082147,8,4.5 +24406,0,0.154276,2,2,0,2,5,,3,1,Saint Aubin,Blvd,4711426,0.588,0.742,0,3.702616,8,4.5 +17181,0,0.119002,1,1,0,2,5,,3,2,Poland,St,1630810,0,0.119,0,2.856042,8,4.5 +19457,0,0.158697,1,1,0,2,5,,3,2,Lumpkin,St,1712308,0.459,0.618,0,3.808726,8,4.5 +13672,0,0.060076,1,1,0,2,4,,3,2,Holbrook,St,1585801,1.158,1.218,0,1.441824,6,4.5 +19002,0,0.17187,1,1,0,2,4,,3,2,Caniff,St,1632110,0.843,1.015,0,4.12487,6,4.5 +19003,0,0.16805,1,1,0,2,4,,3,2,Caniff,St,1632110,0.675,0.843,0,4.033197,6,4.5 +33275,0,0.273277,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.558653,0.15,4 +15784,0,0.322843,2,2,0,2,4,,3,2,Joseph Campau,St,1591101,0,0.323,0,7.74823,6,4.5 +30856,0,0.050484,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.211625,0.15,4 +14361,0,0.218874,1,1,0,2,4,,2,2,Holbrook,St,1585801,1.548,1.767,0,5.25298,8,4.5 +30639,0,0.234413,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.62592,0.15,4 +30640,0,0.23382,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,5.611692,0.15,4 +33639,0,0.206296,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.951099,0.15,4 +15776,0,0.155289,1,1,0,2,4,,2,2,Joseph Campau,St,1591101,0.696,0.851,0,3.726946,8,4.5 +15782,0,0.106958,1,1,0,2,4,,2,2,Joseph Campau,St,1591101,0.589,0.696,0,2.566991,8,4.5 +11133,1,0.210767,3,0,0,1,1,,3,1,E I 94,,1576405,29.574,29.784,0,,0.58,7 +12052,1,0.159049,1,0,0,1,1,ROF,3,1,E I 94/Mount Elliot,RAMP,1577807,0,0.159,0,,2.24,5 +13077,1,0.301099,2,0,0,2,4,DIV,3,1,Grand,Blvd,1577308,5.508,5.809,0,7.226379,6,4.5 +13783,1,0.137382,2,0,0,2,4,,3,1,Harper,Ave,4718377,0.58,0.717,0,3.297172,6,4.5 +14228,-1,0.46146,0,3,0,1,1,,3,1,W I 94,,1588802,29.125,29.586,0,,0.58,7 +14247,1,0.216179,2,0,0,2,4,,3,1,Harper,Ave,4718377,0.263,0.479,0,5.188303,6,4.5 +14339,1,0.1653,1,0,0,1,1,RON,3,1,Mount Elliot/W I 94,RAMP,1589107,0,0.165,0,,1.09,4 +14419,0,0.11608,1,1,0,2,5,,3,1,Ferry,St,1585703,1.351,1.467,0,2.785928,8,4.5 +15030,-1,0.188976,0,4,0,2,4,,3,1,Harper,Ave,1591307,0,0.189,0,4.535419,6,4.5 +22393,-1,0.09122,0,2,0,2,4,DIV,3,1,Grand,Blvd,4701331,0,0.091,0,2.189288,6,4.5 +30624,0,0.311163,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.467901,0.15,4 +30627,0,0.22451,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.388232,0.15,4 +33247,0,0.145076,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.481816,0.15,4 +33824,0,0.314478,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.547464,0.15,4 +11349,1,0.424069,3,0,0,1,1,,3,1,E I 94,,1576405,29.15,29.574,0,,0.58,7 +13259,1,0.150763,1,0,0,1,1,ROF,3,1,E I 94/Chene,RAMP,1577802,0,0.151,0,,2.24,5 +13917,0,0.059664,2,2,0,2,5,,3,1,Chene,St,1587501,3.087,3.146,0,1.431939,8,4.5 +14156,1,0.056808,3,0,0,2,4,,3,1,Harper,Ave,4718377,0.149,0.206,0,1.36338,6,4.5 +14238,0,0.159073,2,2,0,2,5,,3,1,Chene,St,1587501,2.928,3.087,0,3.817745,8,4.5 +14410,1,0.148976,2,0,0,2,4,,3,1,Harper,Ave,4718377,0,0.149,0,3.575433,6,4.5 +22394,-1,0.220048,0,2,0,2,4,DIV,3,1,Grand,Blvd,4701247,0.614,0.834,0,5.281163,6,4.5 +13728,0,0.023922,2,2,0,2,5,,3,1,Chene,St,1587501,3.146,3.17,0,0.574119,8,4.5 +22395,-1,0.216101,0,2,0,2,4,DIV,3,1,Grand,Blvd,4701247,0.398,0.614,0,5.186421,6,4.5 +23604,1,0.22521,1,0,0,1,1,RON,3,1,Chene/W I 94,RAMP,4705754,0,0.225,0,,1.09,4 +13779,0,0.114827,1,1,0,2,5,,3,1,Ferry,St,1585703,1.236,1.351,0,2.755855,8,4.5 +14460,0,0.160269,2,2,0,2,5,,3,1,Chene,St,1587501,2.768,2.928,0,3.846468,8,4.5 +30588,0,0.153756,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.690156,0.15,4 +30590,0,0.086749,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.08198,0.15,4 +12861,1,0.163154,1,0,0,1,1,RON,3,1,Chene/E I 94,RAMP,1577805,0,0.163,0,,1.09,4 +13874,1,0.057043,3,0,0,2,4,,3,1,Harper,Ave,4718377,0.206,0.263,0,1.369023,6,4.5 +23229,0,0.130309,2,2,0,2,5,,3,1,McDougall,St,4704611,1.518,1.648,0,3.127407,8,4.5 +23495,0,0.137579,1,1,0,2,4,,3,1,Grand,Blvd,4705610,0.108,0.246,0,3.301898,6,4.5 +30442,0,0.234184,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.62042,0.15,4 +14454,0,0.165462,1,1,0,2,5,,3,1,Ferry,St,1585703,1.467,1.632,0,3.971092,8,4.5 +13075,1,0.146475,2,0,0,2,4,DV2,3,1,Grand,Blvd,1577308,5.809,5.955,0,3.515408,6,4.5 +13777,1,0.089329,2,0,0,2,4,,3,1,Harper,Ave,4718377,0.491,0.58,0,2.143886,6,4.5 +22391,-1,0.125294,0,2,0,2,4,DV2,3,1,Grand,Blvd,4701331,0.199,0.324,0,3.007057,6,4.5 +22392,-1,0.107391,0,2,0,2,4,DV2,3,1,Grand,Blvd,4701331,0.091,0.199,0,2.577381,6,4.5 +23908,1,0.055905,2,0,0,2,5,DV2,3,1,Grand/Hamtramck Cutoff,,4706969,0.028,0.084,0,1.341713,8,4.5 +13656,1,0.01187,2,0,0,2,4,,3,1,Harper,Ave,4718377,0.479,0.491,0,0.284873,6,4.5 +22986,1,0.087659,2,0,0,2,4,DV2,3,1,Grand,Blvd,4705610,0.021,0.108,0,2.103826,6,4.5 +23226,-1,0.029906,0,2,0,2,5,DV2,3,1,McDougall,St,4704611,1.648,1.678,0,0.717744,8,4.5 +23909,1,0.027954,2,0,0,2,5,DV2,3,1,McDougall,St,4706969,0,0.028,0,0.670902,8,4.5 +23304,1,0.020465,2,0,0,2,4,DV2,3,1,Grand,Blvd,4705610,0,0.021,0,0.491154,6,4.5 +13074,1,0.011772,2,0,0,2,5,DV2,3,1,McDougall,St,1577308,5.955,5.967,0,0.282529,8,4.5 +33246,0,0.151261,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.630273,0.15,4 +15027,-1,0.288746,0,4,0,2,4,,3,1,Harper,Ave,1591307,0.189,0.478,0,6.929893,6,4.5 +14367,1,0.07553,2,0,0,2,4,,3,1,Harper,Ave,4718377,0.717,0.793,0,1.812712,6,4.5 +13180,0,0.21018,1,1,0,2,3,,3,1,Mount Elliott,St,1577808,3.799,4.009,0,5.04432,5,5 +17210,0,0.493336,2,2,1,2,4,,3,2,Conant,St,1629706,0.28,0.773,0,11.840068,6,4.5 +17211,0,0.28015,2,2,1,2,4,,3,1,Conant,St,1629706,0,0.28,0,6.723601,6,4.5 +33522,0,0.509154,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.219694,0.15,4 +30853,0,0.171145,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.107484,0.15,4 +19555,0,0.197262,2,2,0,2,4,,3,2,Hamtramck,Dr,1857310,0.96,1.157,0,4.734282,6,4.5 +17208,0,0.208644,1,1,0,2,4,,2,2,Conant,St,1629706,0.873,1.082,0,5.007468,8,4.5 +18569,0,0.114634,1,1,0,2,5,,3,2,Buffalo,St,1712103,0,0.115,0,2.751207,8,4.5 +14149,0,0.091405,1,1,0,2,5,,3,2,Holbrook,St,1585801,1.96,2.051,0,2.193725,8,4.5 +17209,0,0.100136,2,2,1,2,4,,3,2,Conant,St,1629706,0.773,0.873,0,2.403257,6,4.5 +19463,0,0.057171,1,1,0,2,5,,3,2,Buffalo,St,1712103,0.115,0.172,0,1.372108,8,4.5 +30629,0,0.039137,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,0.939277,0.15,4 +30628,0,0.044591,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.070173,0.15,4 +13182,0,0.316131,1,1,0,2,3,,3,1,Mount Elliott,St,1577808,3.483,3.799,0,7.587145,5,5 +11984,0,0.041745,2,2,0,2,3,,3,1,Mount Elliott,St,1577808,3.441,3.483,0,1.001877,5,5 +13177,0,0.233465,1,1,0,2,3,,3,1,Mount Elliott,St,1577808,4.291,4.524,0,5.60315,5,5 +19186,0,0.047228,1,1,0,2,5,,3,1,Lynch,Rd,1632008,0,0.047,0,1.133474,8,4.5 +30625,0,0.143891,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.453373,0.15,4 +12778,0,0.050206,1,1,0,2,3,,3,1,Mount Elliott,St,1577808,4.241,4.291,0,1.204943,5,5 +12776,1,0.053539,1,0,0,1,5,,3,1,Old Mount Elliott,St,1577808,4.524,4.578,0,,8,4.5 +19179,0,0.012175,1,1,0,2,5,,3,1,Lynch,Rd,1632008,0.047,0.059,0,0.2922,8,4.5 +23854,0,0.054315,1,1,0,2,3,,3,1,Mount Elliott,St,4707516,0,0.054,0,1.303571,5,5 +3632,-1,0.33092,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,0.667,0.998,0,7.942091,5,5 +3905,1,0.31478,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,0.683,0.997,0,7.554715,5,5 +5372,0,0.503613,2,2,0,2,4,,3,4,9 Mile,Rd,803006,0.493,0.996,0,12.086715,6,4.5 +13288,1,0.572814,4,0,0,1,1,,3,1,N I 75,,1577706,7.799,8.371,0,,0.58,7 +13377,-1,0.564314,0,4,0,1,1,,3,1,S I 75,,1577705,7.793,8.358,0,,0.58,7 +13678,1,0.207501,1,0,0,1,1,ROF,3,1,S I 75/7 Mile,RAMP,1586001,0,0.208,0,,2.24,5 +13679,0,0.16998,1,1,0,2,4,,3,1,Dequindre,St,1585803,2.246,2.416,0,4.079515,6,4.5 +13684,0,0.302107,2,2,0,2,4,,3,1,Nevada,St,1585907,2.112,2.414,0,7.250557,6,4.5 +13788,1,0.204545,1,0,0,1,1,RON,3,1,7 Mile/N I 75,RAMP,1586205,0,0.205,0,,1.09,4 +14139,0,0.281815,1,1,0,2,5,,3,1,Carpenter,St,1585807,0.167,0.448,0,6.763568,8,4.5 +14304,1,0.311435,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,2.589,2.9,0,7.474443,6,4.5 +15137,1,0.097612,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.161,1.259,0,2.342688,8,4.5 +15310,-1,0.102059,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.154,1.256,0,2.449426,8,4.5 +15744,0,0.222978,2,2,0,2,4,,3,1,Joseph Campau,St,1591101,1.844,2.067,0,5.351473,6,4.5 +16273,-1,0.336805,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,1.893,2.23,0,8.083313,5,5 +16315,0,0.340557,1,1,0,2,4,,3,1,Ryan,Rd,1602103,1.278,1.618,0,8.17337,6,4.5 +17195,0,0.288355,2,2,0,2,4,,3,1,Conant,St,1629706,3.703,3.991,0,6.92053,6,4.5 +17199,0,0.557829,2,2,0,2,4,,3,1,Conant,St,1629706,2.591,3.149,0,13.387892,6,4.5 +18145,0,0.347635,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,18.577,18.924,0,8.343246,5,5 +18628,0,0.209339,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.727,24.936,0,5.024135,5,5 +22205,-1,0.58359,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,0.417,1,0,14.006154,6,4.5 +22281,-1,0.382658,0,3,0,1,2,,3,1,W M 8,,4702011,2.411,2.795,0,,0.58,7 +22309,1,0.544839,3,0,0,1,2,,3,1,E M 8,,4702009,4.761,5.305,0,,0.58,7 +22342,1,0.172299,3,0,0,2,5,,3,1,Davison,St,4705657,2.065,2.238,0,4.135185,8,4.5 +22468,0,0.335698,1,1,0,2,4,,3,1,Mount Elliott,St,4705057,1.875,2.211,0,8.05676,6,4.5 +22715,-1,0.174952,0,3,0,2,5,,3,1,Davison,St,4705659,2.049,2.224,0,4.198841,8,4.5 +23840,1,0.336702,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,2.364,2.7,0,8.08085,5,5 +26010,0,0.499722,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.993332,0.15,4 +27472,0,0.248641,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.967381,0.15,4 +30641,0,0.249381,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.985141,0.15,4 +32867,0,0.27701,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.648233,0.15,4 +33312,0,0.460596,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.054302,0.15,4 +33323,0,0.247398,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.937542,0.15,4 +33327,0,0.340836,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.180058,0.15,4 +33328,0,0.249106,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.978535,0.15,4 +33331,0,0.265539,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.372941,0.15,4 +33335,0,0.243534,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.844819,0.15,4 +33340,0,0.138931,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.334342,0.15,4 +33344,0,0.347438,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.338506,0.15,4 +33837,0,0.195567,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.693602,0.15,4 +12084,1,0.430412,4,0,0,1,1,,3,1,N I 75,,1577706,6.799,7.229,0,,0.58,7 +12357,-1,0.253579,0,4,0,1,1,,3,1,S I 75,,1577705,6.549,6.802,0,,0.58,7 +12895,1,0.280674,4,0,0,1,1,,3,1,N I 75,,1577706,6.518,6.799,0,,0.58,7 +13378,-1,0.430889,0,4,0,1,1,,3,1,S I 75,,1577705,6.802,7.233,0,,0.58,7 +13722,1,0.129005,1,0,0,1,1,RFF,3,2,S I 75/W M 8,RAMP,1585904,0.246,0.375,0,,0.58,7 +13751,0,0.272863,2,2,0,2,4,,3,1,Dequindre,St,1585803,0.974,1.247,0,6.548705,6,4.5 +14026,0,0.313495,2,2,0,2,4,,3,1,Nevada,St,1585907,1.084,1.397,0,7.523877,6,4.5 +15244,1,0.012056,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0,0.012,0,0.289335,8,4.5 +15374,-1,0.010123,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0,0.01,0,0.242954,8,4.5 +15651,1,0.204947,2,0,0,1,2,RON,3,2,Oakland/E M 8,RAMP,1591104,0,0.205,0,,1.09,4 +15662,1,0.095733,2,0,0,1,1,RFF,3,2,E M 8/S I 75,RAMP,1591103,0.218,0.314,0,,0.58,7 +15711,0,0.266489,2,2,0,2,4,,3,1,Joseph Campau,St,1591101,2.245,2.511,0,6.39574,6,4.5 +15761,0,0.173644,1,1,0,2,5,,3,1,Goddard,St,1591010,0.895,1.069,0,4.167463,8,4.5 +17299,0,0.187289,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.726,17.913,0,4.494933,5,5 +18192,0,0.071999,2,2,0,2,3,,3,1,McNichols,Rd,1680701,23.911,23.983,0,1.727965,5,5 +18419,1,0.177961,3,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,23.733,23.911,0,4.271074,5,5 +22283,-1,0.256324,0,3,0,1,2,,3,2,W M 8,,4702011,1.614,1.87,0,,0.58,7 +22311,1,0.333055,3,0,0,1,2,,3,2,E M 8,,4702009,3.968,4.302,0,,0.58,7 +22478,-1,0.292571,0,3,0,2,3,DV2,3,1,McNichols,Rd,4705005,0.028,0.32,0,7.021706,5,5 +23245,-1,0.165242,0,2,0,2,5,,3,2,Davison,St,4705659,1.077,1.242,0,3.965803,8,4.5 +23681,1,0.479113,2,0,0,2,5,,3,1,Davison,St,4705657,1.072,1.551,0,11.498715,8,4.5 +23933,0,0.157922,1,1,0,2,4,,3,1,Oakland,St,4708768,3.428,3.586,0,3.790124,6,4.5 +32100,0,0.215093,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.162221,0.15,4 +33317,0,0.289569,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.949654,0.15,4 +33338,0,0.144142,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.459399,0.15,4 +33348,0,0.404998,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.719944,0.15,4 +33349,0,0.435954,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.462889,0.15,4 +16008,0,0.172709,2,2,0,2,5,,3,2,Manchester,St,1597406,0.863,1.036,0,4.145009,8,4.5 +18995,1,0.295729,3,0,0,2,3,DV2,3,2,McNichols,Rd,1680701,23.367,23.663,0,7.097508,5,5 +22284,-1,0.442296,0,4,0,1,2,,3,2,W M 8,,4702011,1.172,1.614,0,,0.58,7 +22312,1,0.315726,4,0,0,1,2,,3,2,E M 8,,4702009,3.653,3.968,0,,0.58,7 +22607,1,0.165173,2,0,0,2,5,,3,2,Davison,St,4705657,0.685,0.85,0,3.96415,8,4.5 +23503,-1,0.173228,0,2,0,2,5,,3,2,Davison,St,4705659,0.685,0.858,0,4.157479,8,4.5 +23936,0,0.335518,2,2,0,2,4,,3,2,Oakland,St,4708768,2.835,3.17,0,8.052428,6,4.5 +23937,0,0.159592,2,2,0,2,4,,3,2,Oakland,St,4708768,2.675,2.835,0,3.830203,6,4.5 +24250,1,0.254905,1,0,0,1,2,RON,3,2,Oakland/W M 8,RAMP,4710330,0,0.255,0,,1.09,4 +24251,1,0.227154,1,0,0,1,2,ROF,3,2,E M 8/Oakland,RAMP,4710325,0,0.227,0,,2.24,5 +30577,0,0.16548,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.971524,0.15,4 +32105,0,0.264279,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.342703,0.15,4 +33702,0,0.163004,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.9121,0.15,4 +14534,0,0.048634,2,2,1,2,3,,3,2,Woodward,Ave,1591001,1.084,1.132,0,1.167204,5,5 +14535,0,0.259149,2,2,1,2,3,,3,2,Woodward,Ave,1591001,0.825,1.084,0,6.219572,5,5 +16010,0,0.172644,2,2,0,2,5,,3,2,Manchester,St,1597406,0.519,0.691,0,4.143454,8,4.5 +17370,0,0.131313,1,1,0,2,5,,3,2,John R,St,1625909,1.746,1.878,0,3.15151,8,4.5 +22512,-1,0.171387,0,2,0,2,5,,3,2,Davison,St,4705659,0.513,0.685,0,4.113291,8,4.5 +23189,1,0.083375,2,0,0,2,5,,3,2,Davison,St,4705657,0.43,0.514,0,2.001006,8,4.5 +22796,-1,0.05522,0,2,0,2,5,,3,2,Davison,St,4705659,0.458,0.513,0,1.325291,8,4.5 +14536,0,0.072674,2,2,1,2,3,,3,2,Woodward,Ave,1591001,0.752,0.825,0,1.744182,5,5 +17372,0,0.098056,1,1,0,2,5,,3,2,John R,St,1625909,1.593,1.691,0,2.353338,8,4.5 +22897,1,0.171404,2,0,0,2,5,,3,2,Davison,St,4705657,0.514,0.685,0,4.113685,8,4.5 +17371,0,0.055438,1,1,0,2,5,,3,2,John R,St,1625909,1.691,1.746,0,1.330519,8,4.5 +16009,0,0.172236,2,2,0,2,5,,3,2,Manchester,St,1597406,0.691,0.863,0,4.133666,8,4.5 +17369,0,0.125346,1,1,0,2,5,,3,2,John R,St,1625909,1.878,2.003,0,3.008314,8,4.5 +17679,0,0.080457,2,2,0,2,3,,3,1,McNichols,Rd,1680701,23.257,23.338,0,1.930959,5,5 +32102,0,0.142253,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.414072,0.15,4 +33352,0,0.376097,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.02633,0.15,4 +23935,0,0.247826,2,2,0,2,4,,3,2,Oakland,St,4708768,3.17,3.418,0,5.947814,6,4.5 +17483,1,0.029639,3,0,0,2,3,DV2,3,2,McNichols,Rd,1680701,23.338,23.367,0,0.711329,5,5 +22479,-1,0.027722,0,3,0,2,3,DV2,3,1,McNichols,Rd,4705005,0,0.028,0,0.665334,5,5 +23934,0,0.00972,2,2,0,2,4,,3,2,Oakland,St,4708768,3.418,3.428,0,0.233282,6,4.5 +15666,1,0.217885,2,0,0,1,1,RFF,3,2,E M 8/S I 75,RAMP,1591103,0,0.218,0,,0.58,7 +22604,-1,0.100677,0,4,0,2,4,DV2,3,2,Oakland,St,4704923,1.088,1.189,0,2.416253,6,4.5 +22612,-1,0.086267,0,4,0,2,4,DV2,3,2,Oakland,St,4704923,0.934,1.02,0,2.070408,6,4.5 +22871,-1,0.101886,0,2,0,2,5,,3,2,Davison,St,4705659,0.907,1.009,0,2.445273,8,4.5 +23613,1,0.160037,3,0,0,2,5,,3,2,Davison,St,4705657,0.85,1.01,0,3.840885,8,4.5 +23938,1,0.097662,4,0,0,2,4,DV2,3,2,Oakland,St,4708768,2.578,2.675,0,2.343886,6,4.5 +23940,1,0.095066,4,0,0,2,4,DV2,3,2,Oakland,St,4708768,2.413,2.508,0,2.281585,6,4.5 +30576,0,0.092376,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.217012,0.15,4 +30958,0,0.284996,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.839894,0.15,4 +32111,0,0.286327,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.87184,0.15,4 +33836,0,0.303464,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.283143,0.15,4 +23161,-1,0.049101,0,2,0,2,5,,3,2,Davison,St,4705659,0.858,0.907,0,1.178435,8,4.5 +14327,1,0.10456,1,0,0,1,1,RFF,3,2,S I 75/W M 8,RAMP,1585904,0.375,0.48,0,,0.58,7 +14482,1,0.122418,1,0,0,1,1,ROF,3,2,I 75/Oakland,RAMP,1591007,0,0.122,0,,2.24,5 +15953,1,0.096496,1,0,0,1,1,RON,3,2,Oakland/I 75,RAMP,1598503,0,0.097,0,,1.09,4 +22611,-1,0.067984,0,4,0,2,4,DV2,3,2,Oakland,St,4704923,1.02,1.088,0,1.63162,6,4.5 +23271,1,0.021259,3,0,0,2,5,,3,2,Davison,St,4705657,1.01,1.031,0,0.510217,8,4.5 +23585,-1,0.046781,0,3,0,2,5,,3,2,Davison,St,4705659,1.03,1.077,0,1.122744,8,4.5 +23939,1,0.069756,4,0,0,2,4,DV2,3,2,Oakland,St,4708768,2.508,2.578,0,1.674156,6,4.5 +22579,-1,0.02151,0,3,0,2,5,,3,2,Davison,St,4705659,1.009,1.03,0,0.516229,8,4.5 +22688,1,0.012811,2,0,0,2,5,,3,2,Davison,St,4705657,1.059,1.072,0,0.307462,8,4.5 +22965,1,0.028203,3,0,0,2,5,,3,2,Davison,St,4705657,1.031,1.059,0,0.676884,8,4.5 +14400,1,0.210812,1,0,0,1,1,RON,3,1,McNichols/S I 75,RAMP,1585905,0,0.211,0,,1.09,4 +18743,1,0.070423,3,0,0,2,3,DV2,3,1,McNichols,Rd,1680701,23.663,23.733,0,1.690142,5,5 +14144,1,0.198171,1,0,0,1,1,ROF,3,1,N I 75/McNichols,RAMP,1586202,0,0.198,0,,2.24,5 +12978,-1,0.560558,0,4,0,1,1,,3,1,S I 75,,1577705,7.233,7.793,0,,0.58,7 +13289,1,0.569782,4,0,0,1,1,,3,1,N I 75,,1577706,7.229,7.799,0,,0.58,7 +14465,0,0.209668,2,2,0,2,4,,3,1,Nevada,St,1585907,0.874,1.084,0,5.032023,6,4.5 +15185,1,0.145166,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.552,0.697,0,3.483985,8,4.5 +15219,1,0.427819,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.124,0.552,0,10.267646,8,4.5 +15351,-1,0.069502,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.59,0.659,0,1.668047,8,4.5 +15368,-1,0.460653,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.088,0.549,0,11.055675,8,4.5 +17954,0,0.230983,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.332,17.563,0,5.543602,5,5 +23448,-1,0.103743,0,2,0,2,5,,3,1,S I 75 Service Drive,,4704576,0,0.104,0,2.489831,8,4.5 +23930,1,0.112526,2,0,0,2,5,,3,1,Oakland,St,4708768,3.937,4.049,0,2.700622,8,4.5 +33700,0,0.259406,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.225754,0.15,4 +14303,0,0.158818,1,1,0,2,5,,3,1,Nevada,St,1585907,0.623,0.782,0,3.811631,8,4.5 +23932,0,0.311277,1,1,0,2,4,,3,1,Oakland,St,4708768,3.586,3.897,0,7.470644,6,4.5 +32101,0,0.099635,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.391242,0.15,4 +32104,0,0.265465,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.371151,0.15,4 +14457,0,0.063432,2,2,0,2,4,,3,1,Nevada,St,1585907,0.811,0.874,0,1.522358,6,4.5 +13714,0,0.028904,1,1,0,2,4,,3,1,Nevada,St,1585907,0.782,0.811,0,0.693705,6,4.5 +15363,-1,0.041012,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.549,0.59,0,0.984278,8,4.5 +23931,1,0.039772,2,0,0,2,5,,3,1,Oakland,St,4708768,3.897,3.937,0,0.954539,8,4.5 +13974,1,0.169373,1,0,0,1,1,RON,3,1,7 Mile/S I 75,RAMP,1585908,0,0.169,0,,1.09,4 +14476,1,0.168627,1,0,0,1,1,ROF,3,1,N I 75/7 Mile,RAMP,1586204,0,0.169,0,,2.24,5 +15178,1,0.146051,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.814,0.96,0,3.505219,8,4.5 +15326,-1,0.152329,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.81,0.963,0,3.655887,8,4.5 +18467,0,0.194163,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.082,17.276,0,4.659913,5,5 +31576,0,0.224574,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.389785,0.15,4 +32096,0,0.169606,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.070553,0.15,4 +32866,0,0.268811,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.451463,0.15,4 +15179,1,0.117221,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.697,0.814,0,2.813305,8,4.5 +15338,-1,0.151358,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.659,0.81,0,3.632601,8,4.5 +15168,1,0.077689,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.084,1.161,0,1.864535,8,4.5 +15317,-1,0.073688,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.08,1.154,0,1.768519,8,4.5 +15173,1,0.123692,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.96,1.084,0,2.968619,8,4.5 +15319,-1,0.117238,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.963,1.08,0,2.813723,8,4.5 +18144,0,0.05652,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.276,17.332,0,1.356468,5,5 +15239,1,0.112084,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,0.012,0.124,0,2.690021,8,4.5 +22477,-1,0.069272,0,3,0,2,3,DV2,3,1,McNichols,Rd,4705005,0.32,0.39,0,1.662524,5,5 +14443,1,0.136107,1,0,0,1,1,ROF,3,1,S I 75/McNichols,RAMP,1585906,0,0.136,0,,2.24,5 +24257,1,0.112818,1,0,0,1,1,RON,3,1,McNichols/N I 75,RAMP,4710302,0,0.113,0,,1.09,4 +15372,-1,0.077851,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,0.01,0.088,0,1.868431,8,4.5 +22476,-1,0.182803,0,3,0,2,3,DV2,3,1,McNichols,Rd,4705005,0.39,0.572,0,4.387274,5,5 +17631,0,0.16299,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.563,17.726,0,3.911765,5,5 +12898,1,0.24114,4,0,0,1,1,,3,1,N I 75,,1577706,5.941,6.182,0,,0.58,7 +13170,-1,0.229823,0,4,0,1,1,,3,1,S I 75,,1577705,6.319,6.549,0,,0.58,7 +13290,1,0.336193,4,0,0,1,1,,3,1,N I 75,,1577706,6.182,6.518,0,,0.58,7 +13689,1,0.200462,2,0,0,1,1,RFF,3,1,S I 75/E M 8,RAMP,1585902,0.323,0.523,0,,0.58,7 +14049,1,0.369666,2,0,0,1,1,RFS,3,1,W M 8/N I 75,RAMP,1586201,0,0.37,0,,0.22,6 +14235,0,0.38486,2,2,0,2,4,,3,1,Dequindre,St,1585803,0.589,0.974,0,9.236639,6,4.5 +14240,1,0.246075,1,0,0,1,1,RFS,3,1,S I 75/W M 8,RAMP,1585904,0,0.246,0,,0.22,6 +14406,0,0.445021,1,1,0,2,5,,3,1,Dequindre,St,1585803,0.069,0.514,0,10.680513,8,4.5 +14431,1,0.179918,1,0,0,1,1,RFS,3,1,W M 8/N I 75,RAMP,1586201,0.37,0.549,0,,0.22,6 +15787,0,0.385442,1,1,0,2,5,,3,1,Goddard,St,1591010,0.51,0.895,0,9.250616,8,4.5 +15952,1,0.320927,1,0,0,1,1,RFS,3,1,E M 8/N I 75,RAMP,1598504,0,0.321,0,,0.22,6 +22282,-1,0.540585,0,3,0,1,2,,3,1,W M 8,,4702011,1.87,2.411,0,,0.58,7 +22310,1,0.459563,3,0,0,1,2,,3,1,E M 8,,4702009,4.302,4.761,0,,0.58,7 +22652,-1,0.202803,0,3,0,2,5,,3,1,Davison,St,4705659,1.539,1.742,0,4.867271,8,4.5 +23031,1,0.069868,3,0,0,2,5,,3,1,Davison,St,4705657,1.731,1.801,0,1.676824,8,4.5 +23344,1,0.179795,3,0,0,2,5,,3,1,Davison,St,4705657,1.551,1.731,0,4.315092,8,4.5 +24279,1,0.268736,1,0,0,1,1,RFS,3,1,N I 75/W M 8,RAMP,4710292,0,0.269,0,,0.22,6 +24281,1,0.219817,1,0,0,1,1,RFS,3,1,N I 75/E M 8,RAMP,4710291,0,0.22,0,,0.22,6 +33839,0,0.251638,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.039315,0.15,4 +13124,-1,0.366529,0,4,0,1,1,,3,1,S I 75,,1577705,5.953,6.319,0,,0.58,7 +14254,1,0.324725,1,0,0,1,1,RFS,3,1,W M 8/S I 75,RAMP,1585810,0,0.325,0,,0.22,6 +14285,1,0.32294,1,0,0,1,1,RFS,3,1,S I 75/E M 8,RAMP,1585902,0,0.323,0,,0.22,6 +15653,1,0.273934,2,0,0,1,1,RFS,3,1,E M 8/S I 75,RAMP,1591103,0.314,0.587,0,,0.22,6 +22942,-1,0.296807,0,2,0,2,5,,3,1,Davison,St,4705659,1.242,1.539,0,7.123366,8,4.5 +24101,1,0.116604,1,0,0,1,2,ROF,3,2,W M 8/Oakland,RAMP,4711335,0,0.117,0,,2.24,5 +13776,0,0.074961,2,2,0,2,4,,3,1,Dequindre,St,1585803,0.514,0.589,0,1.799069,6,4.5 +15652,1,0.083027,2,0,0,1,1,RFF,3,1,E M 8/S I 75,RAMP,1591103,0.587,0.67,0,,0.58,7 +27477,0,0.107331,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.57595,0.15,4 +13879,1,0.120053,1,0,0,1,1,RFF,3,1,W M 8/N I 75,RAMP,1586201,0.549,0.669,0,,0.58,7 +33351,0,0.177699,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.264778,0.15,4 +13670,0,0.166647,1,1,0,2,5,,3,1,Carpenter,St,1585807,0,0.167,0,3.999516,8,4.5 +33343,0,0.269419,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.466056,0.15,4 +14016,-1,0.069307,0,1,0,2,5,,3,2,Carpenter,Ave,1585803,0,0.069,0,1.663356,8,4.5 +33342,0,0.175626,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.215032,0.15,4 +15720,0,0.121448,2,2,0,2,4,,3,1,Joseph Campau,St,1591101,2.123,2.245,0,2.914743,6,4.5 +22755,1,0.264637,3,0,0,2,5,,3,1,Davison,St,4705657,1.801,2.065,0,6.35128,8,4.5 +22992,-1,0.256621,0,3,0,2,5,,3,1,Davison,St,4705659,1.793,2.049,0,6.158906,8,4.5 +14481,0,0.062626,1,1,0,2,5,,3,1,Goddard,St,1591010,0.448,0.51,0,1.503031,8,4.5 +23655,-1,0.05073,0,3,0,2,5,,3,1,Davison,St,4705659,1.742,1.793,0,1.217509,8,4.5 +15724,0,0.056384,2,2,0,2,4,,3,1,Joseph Campau,St,1591101,2.067,2.123,0,1.353209,6,4.5 +33278,0,0.192714,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.625147,0.15,4 +13462,0,0.187294,2,2,0,2,4,,3,1,Nevada,St,1585907,1.71,1.898,0,4.495054,6,4.5 +14002,0,0.202567,1,1,0,2,4,,3,1,Dequindre,St,1585803,1.724,1.926,0,4.861603,6,4.5 +15668,0,0.418226,1,1,0,2,4,,3,1,Joseph Campau,St,1591101,3.016,3.434,0,10.037434,6,4.5 +17198,0,0.281359,2,2,0,2,4,,3,1,Conant,St,1629706,3.149,3.43,0,6.752624,6,4.5 +18680,0,0.176162,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,18.209,18.385,0,4.227879,5,5 +19194,0,0.282511,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.195,24.477,0,6.780256,5,5 +32181,0,0.394223,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.461349,0.15,4 +33339,0,0.271627,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.519054,0.15,4 +13910,0,0.229545,1,1,0,2,4,,3,1,Dequindre,St,1585803,1.494,1.724,0,5.509076,6,4.5 +14350,0,0.235836,2,2,0,2,4,,3,1,Nevada,St,1585907,1.397,1.633,0,5.660071,6,4.5 +17680,0,0.109004,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.086,24.195,0,2.616105,5,5 +33315,0,0.257052,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.169238,0.15,4 +33316,0,0.215658,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.175795,0.15,4 +13669,0,0.247432,1,1,0,2,4,,3,1,Dequindre,St,1585803,1.247,1.494,0,5.938367,6,4.5 +17910,0,0.102908,2,2,0,2,3,,3,1,McNichols,Rd,1680701,23.983,24.086,0,2.46978,5,5 +33318,0,0.238713,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.72911,0.15,4 +14034,0,0.077431,2,2,0,2,4,,3,1,Nevada,St,1585907,1.633,1.71,0,1.858354,6,4.5 +13845,0,0.319692,1,1,0,2,4,,3,1,Dequindre,St,1585803,1.926,2.246,0,7.672619,6,4.5 +18940,0,0.295406,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,17.913,18.209,0,7.089751,5,5 +32182,0,0.397114,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.530737,0.15,4 +33350,0,0.050124,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.20297,0.15,4 +13864,0,0.214239,2,2,0,2,4,,3,1,Nevada,St,1585907,1.898,2.112,0,5.141739,6,4.5 +15689,0,0.331813,1,1,0,2,4,,3,1,Joseph Campau,St,1591101,2.684,3.016,0,7.963521,6,4.5 +18996,0,0.249754,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.477,24.727,0,5.994105,5,5 +15703,0,0.173137,1,1,0,2,4,,3,1,Joseph Campau,St,1591101,2.511,2.684,0,4.155281,6,4.5 +17197,0,0.185611,2,2,0,2,4,,3,1,Conant,St,1629706,3.43,3.616,0,4.454656,6,4.5 +18349,0,0.192295,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,18.385,18.577,0,4.61509,5,5 +17196,0,0.0869,2,2,0,2,4,,3,1,Conant,St,1629706,3.616,3.703,0,2.085612,6,4.5 +904,-1,0.469702,0,3,0,1,1,,3,3,S I 75,,646106,0.004,0.474,0,,0.58,7 +2304,1,0.461474,3,0,0,1,1,,3,3,N I 75,,647308,0.004,0.466,0,,0.58,7 +2328,1,0.33434,3,0,0,2,5,,3,3,Chrysler,Dr,646902,0.02,0.354,0,8.024159,8,4.5 +2408,-1,0.277453,0,3,0,2,5,,3,3,Chrysler,Dr,646702,0.022,0.299,0,6.658875,8,4.5 +4176,0,0.531839,2,2,0,2,3,,3,4,Dequindre,Rd,799402,0.02,0.552,0,12.764125,5,5 +4376,0,0.492913,2,2,0,2,4,,3,4,9 Mile,Rd,803006,0,0.493,0,11.829913,6,4.5 +4379,-1,0.50077,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,0,0.501,0,12.018476,5,5 +4493,1,0.470567,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,0,0.47,0,11.293615,5,5 +13898,0,0.124593,1,1,0,2,4,,3,1,State Fair,St,1586002,1.773,1.898,0,2.990228,6,4.5 +14291,0,0.28733,1,1,0,2,4,,3,1,Dequindre,St,1585803,2.908,3.195,0,6.895923,6,4.5 +17191,0,0.196684,2,2,0,2,4,,3,1,Conant,St,1629706,4.576,4.772,0,4.720409,6,4.5 +25742,0,0.251272,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.030531,0.15,4 +25743,0,0.558247,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.397924,0.15,4 +26008,0,0.498254,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.958102,0.15,4 +27471,0,0.524371,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.584913,0.15,4 +27474,0,0.505407,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.12977,0.15,4 +27475,0,0.606212,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.549096,0.15,4 +28199,0,0.565341,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.56818,0.15,4 +29890,0,0.635205,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.244922,0.15,4 +30909,0,0.254234,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.101614,0.15,4 +33336,0,0.141826,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.403829,0.15,4 +12081,1,0.559687,3,0,0,1,1,,3,1,N I 75,,1577706,8.52,9.079,0,,0.58,7 +13376,-1,0.320041,0,4,0,1,1,,3,1,S I 75,,1577705,8.537,8.856,0,,0.58,7 +14084,0,0.33206,1,1,0,2,4,,3,1,State Fair,St,1586002,1.318,1.65,0,7.969442,6,4.5 +14096,1,0.171116,3,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0.397,0.568,0,4.106794,5,5 +14266,-1,0.296219,0,1,0,2,3,,3,3,8 Mile,Rd,1586007,0.369,0.665,0,7.109257,5,5 +15084,1,0.082911,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.79,1.873,0,1.98987,8,4.5 +15272,-1,0.092438,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.774,1.866,0,2.218516,8,4.5 +30911,0,0.458449,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.002787,0.15,4 +30912,0,0.228827,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.491848,0.15,4 +31657,0,0.392147,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.411527,0.15,4 +31663,0,0.515896,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.381505,0.15,4 +33619,0,0.335977,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.063453,0.15,4 +12892,1,0.14805,4,0,0,1,1,,3,1,N I 75,,1577706,8.371,8.52,0,,0.58,7 +12976,-1,0.17897,0,4,0,1,1,,3,1,S I 75,,1577705,8.358,8.537,0,,0.58,7 +14076,0,0.05797,2,2,0,2,4,,3,1,State Fair,St,1586002,1.26,1.318,0,1.391282,6,4.5 +15112,1,0.163552,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.422,1.585,0,3.925259,8,4.5 +15304,-1,0.163551,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.418,1.582,0,3.925227,8,4.5 +22002,1,0.236071,1,0,0,1,1,RON,3,1,8 Mile/S I 75,RAMP,4700022,0,0.236,0,,1.09,4 +31658,0,0.273381,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.561142,0.15,4 +32113,0,0.217282,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.21476,0.15,4 +32864,0,0.22631,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.431449,0.15,4 +14006,0,0.192999,1,1,0,2,4,,3,1,State Fair,St,1586002,1.067,1.26,0,4.631977,6,4.5 +15301,-1,0.174895,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.582,1.757,0,4.197484,8,4.5 +15297,-1,0.01753,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.757,1.774,0,0.420722,8,4.5 +15136,1,0.162856,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.259,1.422,0,3.908539,8,4.5 +15305,-1,0.162998,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.256,1.418,0,3.911956,8,4.5 +15088,1,0.204626,2,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.585,1.79,0,4.911034,8,4.5 +22003,1,0.278116,1,0,0,1,1,ROF,3,1,N I 75/8 Mile,RAMP,4700024,0,0.278,0,,2.24,5 +1363,-1,0.004349,0,3,0,1,1,,3,1,S I 75,,646106,0,0.004,0,,0.58,7 +2305,1,0.004349,3,0,0,1,1,,3,1,N I 75,,647308,0,0.004,0,,0.58,7 +2330,1,0.004074,3,0,0,2,5,,3,1,N I 75 Service Drive,,646902,0,0.004,0,0.097772,8,4.5 +2410,-1,0.004281,0,3,0,2,5,,3,1,S I 75 Service Drive,,646702,0,0.004,0,0.102743,8,4.5 +14175,-1,0.101833,0,2,0,2,3,,3,3,8 Mile,Rd,1586007,0.218,0.32,0,2.443993,5,5 +14311,1,0.022242,3,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0.244,0.266,0,0.533814,5,5 +15270,-1,0.070224,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.866,1.937,0,1.685369,8,4.5 +21373,1,0.07193,1,0,0,1,3,RSF,3,3,N I 75/W M 102,RAMP,4700043,0.23,0.302,0,,5,5 +21627,1,0.123343,1,0,0,1,3,RSF,3,1,N I 75/W M 102,RAMP,4700043,0.087,0.211,0,,5,5 +15900,1,0.223305,1,0,0,1,3,RSF,3,1,E M 102/S I 75,RAMP,1598905,0,0.223,0,,5,5 +13831,1,0.060657,3,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0.184,0.244,0,1.455762,5,5 +21540,1,0.019663,1,0,0,1,3,RSF,3,1,N I 75/W M 102,RAMP,4700043,0.211,0.23,0,,5,5 +12974,-1,0.211362,0,3,0,1,1,,3,1,S I 75,,1577705,8.856,9.068,0,,0.58,7 +14037,1,0.193858,1,0,0,1,1,RON,3,1,W M 102/S I 75,RAMP,1586004,0,0.194,0,,1.09,4 +14287,1,0.08136,3,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0.316,0.397,0,1.952651,5,5 +15082,1,0.165739,3,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,1.873,2.039,0,3.977725,8,4.5 +17813,1,0.090879,1,0,0,1,3,,3,1,E I 75 Service Drive,,1638102,0,0.091,0,,5,5 +21871,1,0.0873,1,0,0,1,3,RSF,3,1,N I 75/W M 102,RAMP,4700043,0,0.087,0,,5,5 +13861,1,0.049449,3,0,0,2,3,,3,1,8 Mile Service Drive,,1586006,0.266,0.316,0,1.186784,5,5 +15250,-1,0.116953,0,2,0,2,5,,3,1,S I 75 Service Drive,,1591302,1.937,2.054,0,2.806879,8,4.5 +15247,-1,0.00533,0,3,0,2,5,,3,1,S I 75 Service Drive,,1591302,2.054,2.059,0,0.127925,8,4.5 +15245,-1,0.011529,0,3,0,2,5,,3,1,S I 75 Service Drive,,1591302,2.059,2.07,0,0.276684,8,4.5 +15078,1,0.022818,3,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,2.039,2.061,0,0.54762,8,4.5 +15076,1,0.012221,3,0,0,2,5,,3,1,N I 75 Service Drive,,1591303,2.061,2.074,0,0.293301,8,4.5 +14206,-1,0.049587,0,3,0,2,3,,3,3,8 Mile,Rd,1586007,0.32,0.369,0,1.190088,5,5 +2409,-1,0.01727,0,3,0,2,5,,3,3,S I 75 Service Drive,,646702,0.004,0.022,0,0.414477,8,4.5 +2329,1,0.01595,3,0,0,2,5,,3,3,N I 75 Service Drive,,646902,0.004,0.02,0,0.382804,8,4.5 +14197,0,0.123254,1,1,0,2,4,,3,1,State Fair,St,1586002,1.65,1.773,0,2.958106,6,4.5 +33334,0,0.262854,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.308501,0.15,4 +1768,-1,0.115199,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,11.918,12.034,0,2.764782,5,5 +14267,0,0.025175,2,2,0,2,4,,3,1,Dequindre,St,1585803,3.195,3.22,0,0.604204,6,4.5 +19658,1,0.122781,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,11.913,12.036,0,2.946734,5,5 +30910,0,0.252004,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.048104,0.15,4 +33354,0,0.274275,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.582596,0.15,4 +19661,1,0.060953,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,11.852,11.913,0,1.46288,5,5 +1271,-1,0.148849,0,4,0,2,3,DIV,3,3,8 Mile,Rd,640807,12.034,12.182,0,3.572369,5,5 +19657,1,0.125662,4,0,0,2,3,DIV,3,1,8 Mile,Rd,1817406,12.036,12.161,0,3.015881,5,5 +4449,0,0.02039,2,2,0,2,3,,3,4,Dequindre,Rd,799402,0,0.02,0,0.489364,5,5 +60,0,0.496564,2,2,0,2,4,,3,3,9 Mile,Rd,607709,0,0.496,0,11.917544,6,4.5 +4774,0,0.470172,2,2,0,2,3,,3,4,Dequindre,Rd,799402,0.552,1.022,0,11.284126,5,5 +26162,0,0.519125,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.458998,0.15,4 +26888,0,0.258987,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.215677,0.15,4 +27382,0,0.459385,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.025249,0.15,4 +27383,0,0.199574,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.789786,0.15,4 +443,-1,0.29534,0,4,0,1,1,,3,3,S I 75,,646106,0.474,0.769,0,,0.58,7 +2303,1,0.325022,4,0,0,1,1,,3,3,N I 75,,647308,0.466,0.791,0,,0.58,7 +4896,1,0.17574,1,0,0,1,1,ROF,3,3,S I 75/M 102,RAMP,710309,0,0.176,0,,2.24,5 +2407,-1,0.257147,0,4,0,2,5,,3,3,Chrysler,Dr,646702,0.299,0.556,0,6.171528,8,4.5 +2327,1,0.199371,2,0,0,2,5,,3,3,Chrysler,Dr,646902,0.354,0.554,0,4.784915,8,4.5 +4874,1,0.113259,1,0,0,1,1,RON,3,3,M 102/N I 75,RAMP,710408,0,0.113,0,,1.09,4 +26163,0,0.251567,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.03761,0.15,4 +59,0,0.011247,2,2,0,2,4,,3,3,9 Mile,Rd,607709,0.496,0.508,0,0.269929,6,4.5 +27381,0,0.385789,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.258938,0.15,4 +4448,0,0.168655,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.022,1.191,0,4.047728,5,5 +4174,0,0.081656,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.191,1.272,0,1.959739,5,5 +14189,1,0.196578,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,2.12,2.317,0,4.717877,6,4.5 +17192,0,0.299075,2,2,0,2,4,,3,1,Conant,St,1629706,4.277,4.576,0,7.177797,6,4.5 +22206,-1,0.20348,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,0.213,0.417,0,4.883524,6,4.5 +27478,0,0.233824,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.611782,0.15,4 +27479,0,0.265403,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.369668,0.15,4 +30908,0,0.250915,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.021955,0.15,4 +33325,0,0.330507,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.932162,0.15,4 +33332,0,0.26485,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.356407,0.15,4 +14335,1,0.222353,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,1.898,2.12,0,5.336483,6,4.5 +14348,0,0.329603,1,1,0,2,4,,3,1,Dequindre,St,1585803,2.416,2.745,0,7.910467,6,4.5 +17194,0,0.270036,2,2,0,2,4,,3,1,Conant,St,1629706,3.991,4.261,0,6.480867,6,4.5 +22207,-1,0.213494,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,0,0.213,0,5.123862,6,4.5 +13682,0,0.162835,1,1,0,2,4,,3,1,Dequindre,St,1585803,2.745,2.908,0,3.908034,6,4.5 +17193,0,0.015706,2,2,0,2,4,,3,1,Conant,St,1629706,4.261,4.277,0,0.376943,6,4.5 +33330,0,0.307942,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.390607,0.15,4 +14192,1,0.27226,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,2.317,2.589,0,6.534251,6,4.5 +33329,0,0.234827,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.635842,0.15,4 +4095,-1,0.166099,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,0.501,0.667,0,3.986383,5,5 +4202,1,0.212124,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,0.47,0.683,0,5.090988,5,5 +25741,0,0.563314,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.519525,0.15,4 +27473,0,0.56877,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.650487,0.15,4 +26011,0,0.248821,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.9717,0.15,4 +14389,0,0.319369,2,2,0,2,4,,3,1,Nevada,St,1585907,2.909,3.228,0,7.66485,6,4.5 +14404,0,0.551448,2,2,0,2,3,,3,1,Davison,St,4702009,5.99,6.542,0,13.234757,5,5 +14473,0,0.351429,2,2,0,2,3,,3,1,Davison,St,4702009,5.543,5.894,0,8.4343,5,5 +16287,-1,0.247114,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.644,0.891,0,5.930729,5,5 +16327,0,0.217936,1,1,0,2,5,,3,1,Ryan,Rd,1602103,0.062,0.28,0,5.230454,8,4.5 +17176,0,0.203105,1,1,0,2,5,,3,1,Charles,St,1631501,0.323,0.526,0,4.874518,8,4.5 +17200,0,0.241937,2,2,0,2,4,,3,1,Conant,St,1629706,2.35,2.591,0,5.806489,6,4.5 +17632,0,0.598824,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,19.2,19.799,0,14.371778,5,5 +18964,0,0.261487,2,2,0,2,3,,3,1,McNichols,Rd,1680701,25.488,25.749,0,6.275692,5,5 +18980,0,0.310404,1,1,0,2,4,,3,2,Caniff,St,1632110,1.424,1.734,0,7.4497,6,4.5 +19146,0,0.208625,1,1,0,2,5,,3,1,Luce,St,1632102,0.425,0.633,0,5.007,8,4.5 +19458,0,0.247701,1,1,0,2,5,,3,1,Buffalo,St,1712103,1.269,1.517,0,5.94482,8,4.5 +22473,0,0.248285,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,0.625,0.873,0,5.958851,6,4.5 +23846,1,0.24714,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,1.114,1.361,0,5.93136,5,5 +30923,0,0.189744,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.553865,0.15,4 +30926,0,0.418584,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.046019,0.15,4 +33620,0,0.478569,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.485647,0.15,4 +33621,0,0.499809,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.995425,0.15,4 +13906,0,0.206932,1,1,0,2,5,,2,1,Carpenter,St,1585807,0.653,0.86,0,4.966375,8.5,4.5 +17177,0,0.323272,1,1,0,2,5,,3,1,Charles,St,1631501,0,0.323,0,7.758523,8,4.5 +17203,0,0.195037,2,2,0,2,4,,3,1,Conant,St,1629706,1.845,2.04,0,4.680891,6,4.5 +19177,0,0.161992,1,1,0,2,5,,3,1,Luce,St,1632102,0,0.162,0,3.887807,8,4.5 +30524,0,0.200599,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.814385,0.15,4 +30636,0,0.252377,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,6.057047,0.15,4 +30916,0,0.206656,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.959755,0.15,4 +33320,0,0.270475,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.491391,0.15,4 +13716,0,0.204813,1,1,0,2,5,,2,1,Carpenter,St,1585807,0.448,0.653,0,4.915515,8.5,4.5 +15764,0,0.253361,2,2,0,2,4,,2,2,Joseph Campau,St,1591101,1.311,1.564,0,6.080666,8,4.5 +15749,0,0.279975,2,2,0,2,4,,3,1,Joseph Campau,St,1591101,1.564,1.844,0,6.719406,6,4.5 +40231,1,0.055057,3,0,0,1,3,DIV,3,1,Davison,St,4702009,5.319,5.374,0,,5,5 +17201,0,0.171724,2,2,0,2,4,,3,1,Conant,St,1629706,2.178,2.35,0,4.12138,6,4.5 +40241,1,0.308888,2,0,0,1,1,RON,3,3,Greenfield/W I 696,RAMP,1903910,0.013,0.322,0,,1.09,4 +33319,0,0.21849,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.243763,0.15,4 +33838,0,0.291147,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.987524,0.15,4 +32800,0,0.234543,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.629039,0.15,4 +40239,0,0.111994,2,2,1,2,3,,3,3,Greenfield,Rd,648307,2.711,2.823,0,2.687866,5,5 +40242,1,0.013333,2,0,0,1,1,ROF,3,3,E I 696/Greenfield,RAMP,1903901,0.339,0.352,0,,2.24,5 +40225,-1,0.022967,0,3,0,2,3,DIV,3,1,Davison,St,4702011,2.795,2.816,0,0.551202,5,5 +40230,1,0.051518,1,0,0,2,5,,3,1,Davison,St,4705657,2.238,2.289,0,1.236424,8,4.5 +40227,0,0.026336,1,1,0,2,7,,3,1,Gallagher,St,1716109,0,0.026,0,0.632054,7,4.5 +40226,-1,0.049987,0,1,0,2,5,,3,1,Davison,St,4705659,2.224,2.274,0,1.199696,8,4.5 +40228,1,0.02211,1,0,0,1,3,,3,1,E M 8/W M 8,TURN,4700701,0,0.022,0,,5,5 +17202,0,0.138001,2,2,0,2,4,,3,1,Conant,St,1629706,2.04,2.178,0,3.312032,6,4.5 +13873,0,0.051608,2,2,0,2,3,,3,1,Davison,St,4702009,5.491,5.543,0,1.238581,5,5 +16332,0,0.062326,1,1,0,2,5,,3,1,Ryan,Rd,1602103,0,0.062,0,1.49583,8,4.5 +17205,0,0.15732,1,1,0,2,4,,2,1,Conant,St,1629706,1.568,1.726,0,3.77568,8,4.5 +17206,0,0.228155,1,1,0,2,4,,2,2,Conant,St,1629706,1.34,1.568,0,5.475724,8,4.5 +30635,0,0.207492,1,1,0,2,99,,2,2,Centroid Connector,,0,0,0,0,4.979806,0.15,4 +17204,0,0.119273,1,1,0,2,4,,2,1,Conant,St,1629706,1.726,1.845,0,2.862542,8,4.5 +19147,0,0.151656,1,1,0,2,5,,3,1,Luce,St,1632102,0.273,0.425,0,3.63974,8,4.5 +30925,0,0.017758,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.426183,0.15,4 +33636,0,0.14157,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.397689,0.15,4 +33637,0,0.280122,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.722934,0.15,4 +19172,0,0.110932,1,1,0,2,5,,3,1,Luce,St,1632102,0.162,0.273,0,2.662365,8,4.5 +33635,0,0.16841,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.04184,0.15,4 +13947,0,0.495276,2,2,0,2,4,,3,1,Nevada,St,1585907,2.414,2.909,0,11.886628,6,4.5 +16317,0,0.249796,1,1,0,2,4,,3,1,Ryan,Rd,1602103,0.778,1.028,0,5.995108,6,4.5 +17558,0,0.494441,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.994,25.488,0,11.866585,5,5 +17852,0,0.275969,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,18.924,19.2,0,6.623249,5,5 +33333,0,0.530327,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.72785,0.15,4 +16320,0,0.318919,1,1,0,2,4,,3,1,Ryan,Rd,1602103,0.28,0.599,0,7.654045,6,4.5 +17974,0,0.05712,2,2,0,2,3,,3,1,McNichols,Rd,1680701,24.936,24.994,0,1.370881,5,5 +16319,0,0.179428,1,1,0,2,4,,3,1,Ryan,Rd,1602103,0.599,0.778,0,4.306268,6,4.5 +16316,0,0.249542,1,1,0,2,4,,3,1,Ryan,Rd,1602103,1.028,1.278,0,5.989,6,4.5 +33313,0,0.038715,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.929157,0.15,4 +33309,0,0.2593,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.223194,0.15,4 +14251,0,0.096259,2,2,0,2,3,,3,1,Davison,St,4702009,5.894,5.99,0,2.310207,5,5 +33308,0,0.243641,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.847377,0.15,4 +16302,-1,0.231891,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.163,0.395,0,5.565387,5,5 +17172,0,0.216372,1,1,0,2,5,,3,1,Charles,St,1631501,0.84,1.057,0,5.192934,8,4.5 +18974,0,0.128937,1,1,0,2,4,,3,1,Caniff,St,1632110,1.992,2.121,0,3.09449,6,4.5 +19082,0,0.097105,1,1,0,2,5,,3,1,Luce,St,1632102,0.898,0.995,0,2.33051,8,4.5 +19460,0,0.222839,1,1,0,2,5,,3,1,Buffalo,St,1712103,0.798,1.02,0,5.34813,8,4.5 +22418,1,0.23003,1,0,0,1,4,,3,1,Harold,St,4700638,0,0.23,0,,6,4.5 +22475,0,0.207847,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,0.169,0.376,0,4.988322,6,4.5 +23198,-1,0.043289,0,2,0,2,3,DIV,3,1,Mount Elliott,St,4704717,0.021,0.064,0,1.038948,5,5 +23848,1,0.232653,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,0.633,0.865,0,5.583662,5,5 +23850,1,0.053398,2,0,0,2,3,DIV,3,1,Mount Elliott,St,4707516,0.543,0.596,0,1.281557,5,5 +23855,1,0.04191,2,0,0,1,3,,3,1,Mound/Mount Elliott,Ramp,4707513,0,0.042,0,,5,5 +30320,0,0.126133,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.027185,0.15,4 +30917,0,0.218244,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.23785,0.15,4 +18976,0,0.252799,1,1,0,2,4,,3,1,Caniff,St,1632110,1.734,1.987,0,6.067183,6,4.5 +19461,0,0.282569,1,1,0,2,5,,3,1,Buffalo,St,1712103,0.515,0.798,0,6.781651,8,4.5 +30520,0,0.255878,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.141079,0.15,4 +30924,0,0.288397,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.921531,0.15,4 +30918,0,0.0332,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.796802,0.15,4 +16310,-1,0.139836,0,1,0,2,3,DIV,3,1,Mound,Rd,1602205,0,0.14,0,3.356068,5,5 +23197,-1,0.035588,0,2,0,2,3,DIV,3,1,Mount Elliott,St,4704717,0.064,0.1,0,0.854121,5,5 +23857,1,0.022875,1,0,0,2,3,DIV,3,1,Mound,Rd,4707512,0.108,0.131,0,0.548994,5,5 +23860,1,0.064607,1,0,0,2,3,DIV,3,1,Mound,Rd,4707512,0,0.065,0,1.550556,5,5 +18975,0,0.005305,1,1,0,2,4,,3,1,Caniff,St,1632110,1.987,1.992,0,0.127321,6,4.5 +23859,1,0.043192,1,0,0,2,3,DIV,3,1,Mound,Rd,4707512,0.065,0.108,0,1.036597,5,5 +16308,-1,0.02292,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.14,0.163,0,0.550076,5,5 +23849,1,0.036692,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,0.596,0.633,0,0.880619,5,5 +16293,-1,0.200366,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.395,0.595,0,4.808787,5,5 +17174,0,0.226954,1,1,0,2,5,,3,1,Charles,St,1631501,0.576,0.803,0,5.446902,8,4.5 +19131,0,0.101574,1,1,0,2,5,,3,1,Luce,St,1632102,0.633,0.735,0,2.437783,8,4.5 +19459,0,0.248973,1,1,0,2,5,,3,1,Buffalo,St,1712103,1.02,1.269,0,5.975342,8,4.5 +23847,1,0.248551,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,0.865,1.114,0,5.965235,5,5 +17175,0,0.050152,1,1,0,2,5,,3,1,Charles,St,1631501,0.526,0.576,0,1.203651,8,4.5 +17173,0,0.037045,1,1,0,2,5,,3,1,Charles,St,1631501,0.803,0.84,0,0.889088,8,4.5 +19096,0,0.136202,1,1,0,2,5,,3,1,Luce,St,1632102,0.735,0.871,0,3.268857,8,4.5 +30915,0,0.14384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.452149,0.15,4 +16291,-1,0.048669,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.595,0.644,0,1.168061,5,5 +30914,0,0.047967,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.151213,0.15,4 +19090,0,0.027066,1,1,0,2,5,,3,1,Luce,St,1632102,0.871,0.898,0,0.649588,8,4.5 +23020,0,0.076844,2,2,0,2,4,,3,1,Mount Elliott,Ct,4705805,0.138,0.214,0,1.844254,6,4.5 +23852,0,0.281552,1,1,0,2,3,,3,1,Mount Elliott,St,4707516,0.24,0.521,0,6.757245,5,5 +23329,0,0.137634,1,1,0,2,4,,3,1,Mount Elliott,Ct,4705805,0,0.138,0,3.303207,6,4.5 +23199,-1,0.021106,0,2,0,2,3,DIV,3,1,Mount Elliott,St,4704717,0,0.021,0,0.506541,5,5 +23851,1,0.021135,2,0,0,2,3,DIV,3,1,Mount Elliott,St,4707516,0.521,0.543,0,0.507249,5,5 +13726,0,0.029453,1,1,0,2,5,,3,1,Lynch,Rd,1586705,0.182,0.212,0,0.706869,8,4.5 +19078,0,0.119407,1,1,0,2,5,,3,1,Luce,St,1632102,0.995,1.114,0,2.865768,8,4.5 +22474,0,0.248455,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,0.376,0.625,0,5.962926,6,4.5 +13802,0,0.225317,2,2,0,2,4,,3,1,Davison,St,4702009,6.569,6.794,0,5.407603,6,4.5 +14293,0,0.226133,2,2,0,2,4,,3,1,Nevada,St,1585907,3.419,3.645,0,5.427188,6,4.5 +16278,-1,0.251396,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,1.391,1.642,0,6.033499,5,5 +18161,0,0.213461,2,2,0,2,3,,3,1,McNichols,Rd,1680701,26.016,26.229,0,5.123067,5,5 +18570,0,0.227341,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,19.933,20.161,0,5.45619,5,5 +22471,0,0.216838,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,1.156,1.372,0,5.204119,6,4.5 +23842,1,0.251325,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,1.861,2.113,0,6.031788,5,5 +30633,0,0.249798,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.995144,0.15,4 +30921,0,0.255707,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.136974,0.15,4 +14194,0,0.168816,2,2,0,2,4,,3,1,Nevada,St,1585907,3.228,3.397,0,4.051594,6,4.5 +16285,-1,0.235921,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,0.891,1.126,0,5.662116,5,5 +18698,0,0.240098,2,2,0,2,3,,3,1,McNichols,Rd,1680701,25.749,25.989,0,5.762362,5,5 +23845,1,0.24779,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,1.361,1.608,0,5.946957,5,5 +18386,0,0.026349,1,1,1,2,3,,3,1,McNichols,Rd,1680701,25.989,26.016,0,0.632376,5,5 +16282,-1,0.15634,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,1.126,1.283,0,3.752169,5,5 +23844,1,0.145086,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,1.608,1.753,0,3.482076,5,5 +14159,0,0.027068,2,2,0,2,3,,3,1,Davison,St,4702009,6.542,6.569,0,0.649627,5,5 +13677,0,0.021644,2,2,0,2,4,,3,1,Nevada,St,1585907,3.397,3.419,0,0.519451,6,4.5 +16280,-1,0.108027,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,1.283,1.391,0,2.592651,5,5 +23843,1,0.107903,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,1.753,1.861,0,2.589678,5,5 +16275,-1,0.251119,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,1.642,1.893,0,6.026866,5,5 +23841,1,0.251122,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,2.113,2.364,0,6.026924,5,5 +30920,0,0.251114,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.026741,0.15,4 +30919,0,0.118736,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.849666,0.15,4 +33622,0,0.140733,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.37758,0.15,4 +19137,0,0.112133,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,19.799,19.911,0,2.691183,5,5 +18941,0,0.022099,1,1,1,2,3,,3,1,7 Mile,Rd,1700106,19.911,19.933,0,0.530374,5,5 +14471,0,0.135493,2,2,0,2,4,,3,1,Davison,St,4702009,6.794,6.929,0,3.251826,6,4.5 +17883,0,0.140451,2,2,0,2,3,,3,1,McNichols,Rd,1680701,26.229,26.369,0,3.370829,5,5 +22472,0,0.282777,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,0.873,1.156,0,6.786651,6,4.5 +30634,0,0.250722,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.01733,0.15,4 +30632,0,0.034879,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.837105,0.15,4 +14169,0,0.13492,2,2,0,2,4,,3,1,Nevada,St,1585907,3.645,3.78,0,3.238088,6,4.5 +18350,0,0.132561,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,20.161,20.293,0,3.181463,5,5 +22469,0,0.251158,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,1.624,1.875,0,6.027801,6,4.5 +33623,0,0.132968,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.191238,0.15,4 +33624,0,0.256552,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.157245,0.15,4 +22470,0,0.251439,2,2,0,2,4,,3,1,Mount Elliott,St,4705057,1.372,1.624,0,6.034531,6,4.5 +30646,0,0.244402,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.865646,0.15,4 +3895,0,0.480014,2,2,0,2,4,,3,4,Ryan,Rd,799302,0.02,0.5,0,11.520325,6,4.5 +4185,-1,0.244479,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,1.53,1.774,0,5.867506,5,5 +4196,1,0.331787,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,1.499,1.831,0,7.962885,5,5 +4681,1,0.468776,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,0.019,0.488,0,11.250617,5,5 +5370,0,0.467511,2,2,0,2,4,,3,4,9 Mile,Rd,803006,1.521,1.988,0,11.220261,6,4.5 +6842,0,0.608065,2,2,0,2,5,,3,4,Sherwood,Ave,804507,0.021,0.629,0,14.593556,8,4.5 +6844,1,0.498442,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,12.353,12.851,0,11.962614,5,5 +14103,1,0.61085,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,3.176,3.786,0,14.660398,6,4.5 +22202,-1,0.609411,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1.224,1.833,0,14.625864,6,4.5 +25620,0,0.535334,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.84801,0.15,4 +25621,0,0.515936,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.382472,0.15,4 +25745,0,0.519239,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.461736,0.15,4 +25747,0,0.491966,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.807194,0.15,4 +25749,0,0.496582,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.917964,0.15,4 +25750,0,0.512141,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.291375,0.15,4 +4460,-1,0.439401,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,1.091,1.53,0,10.545623,5,5 +4483,1,0.389795,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,1.11,1.499,0,9.355082,5,5 +14418,1,0.275564,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,2.9,3.176,0,6.61354,6,4.5 +16312,0,0.236422,1,1,0,2,4,,3,1,Ryan,Rd,1602103,1.789,2.025,0,5.674118,6,4.5 +25645,0,0.2665,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.396007,0.15,4 +33347,0,0.232478,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.57948,0.15,4 +33618,0,0.285106,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.842533,0.15,4 +16314,0,0.156843,1,1,0,2,4,,3,1,Ryan,Rd,1602103,1.618,1.775,0,3.764234,6,4.5 +22204,-1,0.112015,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1,1.112,0,2.688357,6,4.5 +16313,0,0.013954,1,1,0,2,4,,3,1,Ryan,Rd,1602103,1.775,1.789,0,0.334894,6,4.5 +22203,-1,0.111392,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1.112,1.224,0,2.673411,6,4.5 +4788,-1,0.093093,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,0.998,1.091,0,2.234227,5,5 +4930,1,0.112487,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,0.997,1.11,0,2.699686,5,5 +16311,0,0.228241,1,1,0,2,4,,3,1,Ryan,Rd,1602103,2.025,2.253,0,5.477776,6,4.5 +30387,0,0.254029,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.096693,0.15,4 +33345,0,0.234587,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.630079,0.15,4 +33346,0,0.095826,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.299818,0.15,4 +4571,0,0.010582,1,1,0,2,4,,3,1,Ryan,Rd,799302,0,0.011,0,0.253957,6,4.5 +4186,0,0.009733,1,1,0,2,4,,3,4,Ryan,Rd,799302,0.011,0.02,0,0.233584,6,4.5 +33326,0,0.247759,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.946208,0.15,4 +4178,0,0.500198,2,2,0,2,4,,3,4,Ryan,Rd,799302,0.534,1.034,0,12.004746,6,4.5 +5371,0,0.524912,2,2,0,2,4,,3,4,9 Mile,Rd,803006,0.996,1.521,0,12.597882,6,4.5 +25622,0,0.509639,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.231338,0.15,4 +25748,0,0.503473,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.083354,0.15,4 +26165,0,0.508998,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.215946,0.15,4 +4916,0,0.033367,2,2,0,2,4,,3,4,Ryan,Rd,799302,0.5,0.534,0,0.800802,6,4.5 +3889,0,0.249714,2,2,1,2,4,,3,4,Ryan,Rd,799302,1.034,1.283,0,5.993142,6,4.5 +25996,0,0.255262,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.126288,0.15,4 +3896,1,0.103064,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.016,2.119,0,2.473535,5,5 +4561,-1,0.090475,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.016,2.107,0,2.171401,5,5 +14031,1,0.230579,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,3.915,4.146,0,5.533889,6,4.5 +16250,-1,0.241017,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,2.401,2.642,0,5.784397,5,5 +17183,0,0.24352,1,1,0,2,5,,3,1,Sherwood,St,1630706,1.522,1.765,0,5.844487,8,4.5 +22198,-1,0.230346,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,2.016,2.246,0,5.528301,6,4.5 +22465,0,0.303411,1,1,0,2,4,,3,1,Mount Elliott,St,4705057,2.381,2.684,0,7.281876,6,4.5 +23837,1,0.367993,3,0,0,2,3,DIV,3,1,Mound,Rd,4707516,2.871,3.239,0,8.831824,5,5 +31510,0,0.248525,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.964598,0.15,4 +33357,0,0.238036,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.712859,0.15,4 +33617,0,0.246963,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.927118,0.15,4 +16271,-1,0.156859,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,2.23,2.387,0,3.764617,5,5 +22201,-1,0.107504,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1.833,1.94,0,2.580093,6,4.5 +23839,1,0.156947,2,0,0,2,3,DIV,3,1,Mound,Rd,4707516,2.7,2.857,0,3.766727,5,5 +33322,0,0.24693,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.926325,0.15,4 +33610,0,0.265058,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.361394,0.15,4 +33321,0,0.136677,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.280253,0.15,4 +33611,0,0.151526,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.636627,0.15,4 +14210,1,0.110676,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,3.786,3.897,0,2.656235,6,4.5 +22200,-1,0.057228,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1.94,1.998,0,1.373472,6,4.5 +13907,1,0.018311,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,3.897,3.915,0,0.439458,6,4.5 +22199,-1,0.018209,0,2,0,2,4,DV2,3,1,Outer,Dr,4704283,1.998,2.016,0,0.437006,6,4.5 +16252,-1,0.013943,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,2.387,2.401,0,0.33463,5,5 +23838,1,0.013944,3,0,0,2,3,DIV,3,1,Mound,Rd,4707516,2.857,2.871,0,0.33466,5,5 +3894,-1,0.224801,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,1.774,1.999,0,5.395219,5,5 +3900,1,0.168225,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,1.831,1.999,0,4.037408,5,5 +16247,-1,0.23179,0,2,0,2,3,DIV,3,1,Mound,Rd,1602205,2.642,2.873,0,5.562961,5,5 +23836,1,0.104727,3,0,0,2,3,DIV,3,1,Mound,Rd,4707516,3.239,3.344,0,2.513447,5,5 +31511,0,0.27533,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.60792,0.15,4 +33355,0,0.123823,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.971756,0.15,4 +33356,0,0.240297,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.767129,0.15,4 +33360,0,0.195137,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.683279,0.15,4 +3994,1,0.010224,3,0,0,2,3,DIV,3,1,Mound,Rd,799110,0,0.01,0,0.245369,5,5 +24247,1,0.010165,2,0,0,2,3,DIV,3,1,Mound,Rd,4718270,0.009,0.019,0,0.243955,5,5 +4921,1,0.01667,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,1.999,2.016,0,0.400073,5,5 +4915,-1,0.017292,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,1.999,2.016,0,0.415003,5,5 +24479,1,0.008856,2,0,0,2,3,DIV,3,4,Mound,Rd,4718270,0,0.009,0,0.212554,5,5 +5016,1,0.009044,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,0.01,0.019,0,0.217062,5,5 +14438,0,0.086986,3,3,0,2,4,,3,1,Outer,Dr,1586002,4.187,4.274,0,2.087666,6,4.5 +17185,0,0.158389,1,1,0,2,5,,3,1,Sherwood,St,1630706,1.351,1.509,0,3.801335,8,4.5 +22467,0,0.157492,1,1,0,2,4,,3,1,Mount Elliott,St,4705057,2.211,2.368,0,3.779812,6,4.5 +30575,0,0.152918,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.67004,0.15,4 +30597,0,0.248391,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.961382,0.15,4 +13724,1,0.040913,3,0,0,2,4,DV2,3,1,Outer,Dr,1586002,4.146,4.187,0,0.98191,6,4.5 +22197,-1,0.041201,0,3,0,2,4,DV2,3,1,Outer,Dr,4704283,2.246,2.287,0,0.988829,6,4.5 +22466,0,0.012983,1,1,0,2,4,,3,1,Mount Elliott,St,4705057,2.368,2.381,0,0.311586,6,4.5 +30574,0,0.152502,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.660051,0.15,4 +14329,0,0.087801,3,3,0,2,4,,3,1,Outer,Dr,1586002,4.274,4.362,0,2.107214,6,4.5 +14292,1,0.036394,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,4.362,4.398,0,0.873454,6,4.5 +23814,-1,0.036272,0,2,0,2,4,DV2,3,1,Outer,Dr,4707670,0,0.036,0,0.870529,6,4.5 +17184,0,0.012774,1,1,0,2,5,,3,1,Sherwood,St,1630706,1.509,1.522,0,0.306581,8,4.5 +4258,-1,0.286791,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.107,2.394,0,6.882986,5,5 +4563,1,0.121412,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.248,2.369,0,2.913894,5,5 +17182,0,0.227077,1,1,0,2,5,,3,1,Sherwood,St,1630706,1.765,1.993,0,5.449857,8,4.5 +22464,0,0.170299,1,1,0,2,4,,3,1,Mount Elliott,St,4705057,2.684,2.855,0,4.087168,6,4.5 +30570,0,0.2575,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.18001,0.15,4 +33361,0,0.236506,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.676142,0.15,4 +33616,0,0.14224,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.413756,0.15,4 +4917,1,0.12902,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.119,2.248,0,3.096489,5,5 +33359,0,0.125691,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.016593,0.15,4 +3952,-1,0.105821,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.394,2.499,0,2.539711,5,5 +4260,1,0.129075,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.369,2.498,0,3.09781,5,5 +6843,0,0.011044,2,2,0,2,5,,3,4,Sherwood,St,804507,0.01,0.021,0,0.265054,8,4.5 +6930,0,0.010148,2,2,0,2,5,,3,1,Sherwood,St,804507,0,0.01,0,0.243543,8,4.5 +4298,1,0.5307,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,0.488,1.018,0,12.736795,5,5 +5368,0,0.349602,2,2,1,2,4,,3,4,9 Mile,Rd,803006,2.01,2.359,0,8.390454,6,4.5 +5533,1,0.500267,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,11.853,12.353,0,12.006399,5,5 +6837,0,0.397119,2,2,0,2,5,,3,4,Sherwood,Ave,804507,0.629,1.026,0,9.530861,8,4.5 +25172,0,0.515319,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.36765,0.15,4 +25618,0,0.261769,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.282447,0.15,4 +25619,0,0.243998,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.855949,0.15,4 +5369,0,0.021274,2,2,1,2,4,,3,4,9 Mile,Rd,803006,1.988,2.01,0,0.510573,6,4.5 +25746,0,0.26652,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.39647,0.15,4 +6831,0,0.160791,2,2,0,2,5,,3,4,Sherwood,Ave,804507,1.026,1.187,0,3.858989,8,4.5 +5367,0,0.140073,2,2,1,2,4,,3,4,9 Mile,Rd,803006,2.359,2.499,0,3.361759,6,4.5 +11040,1,0.20127,3,0,0,1,1,,3,1,E I 94,,1576405,31.927,32.128,0,,0.58,7 +12604,0,0.090975,2,2,0,2,5,,3,1,French,Rd,1578003,1.856,1.947,0,2.183403,8,4.5 +12631,0,0.259208,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,1.95,2.209,0,6.220987,8,4.5 +12693,0,0.359863,2,2,1,2,4,,3,1,Harper,Ave,1578108,1.345,1.704,0,8.636721,6,4.5 +13031,0,0.198998,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.615,0.814,0,4.77595,8,4.5 +13052,0,0.241157,1,1,0,2,4,,3,1,McClellan,St,1577907,1.722,1.963,0,5.787759,6,4.5 +13058,0,0.258325,1,1,0,2,4,,3,1,McClellan,St,1577907,0.777,1.035,0,6.199789,6,4.5 +13190,0,0.160897,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,2.095,2.256,0,3.861521,6,4.5 +13681,1,0.39797,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.817,3.215,0,9.55127,6,4.5 +13703,0,0.162166,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.547,0.709,0,3.891976,6,4.5 +13711,1,0.243471,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,1.907,2.151,0,5.843294,6,4.5 +13765,0,0.208219,1,1,0,2,4,,3,1,Lafayette,St,1585508,2.375,2.583,0,4.997263,6,4.5 +13797,1,0.351731,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.094,1.445,0,8.44155,5,5 +13805,1,0.370282,3,0,0,2,3,,3,1,Forest,Ave,5491069,2.299,2.669,0,8.886776,5,5 +13913,-1,0.372024,0,2,0,2,5,,3,1,W I 94 Service Drive,,1587906,0.129,0.501,0,8.928578,8,4.5 +13926,0,0.097494,1,1,1,2,3,,3,1,Mack,Ave,1587509,2.358,2.455,0,2.339865,5,5 +13927,0,0.382552,1,1,0,2,4,,3,1,Van Dyke,St,1587710,1.219,1.601,0,9.181256,6,4.5 +13977,-1,0.374495,0,3,0,1,1,,3,1,W I 94,,1588802,31.731,32.105,0,,0.58,7 +14071,1,0.270034,2,0,0,2,5,,3,1,E I 94 Service Drive,,1588708,0.066,0.336,0,6.480808,8,4.5 +14099,1,0.211178,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.493,1.704,0,5.068271,6,4.5 +17160,0,0.518212,2,2,0,2,5,,3,1,Kercheval,St,1631701,2,2.518,0,12.437094,8,4.5 +17167,0,0.170498,1,1,0,2,5,,3,1,Kercheval,St,1631701,0.738,0.909,0,4.091958,8,4.5 +19199,-1,0.24323,0,3,0,2,4,,3,1,Charlevoix,St,1631706,1.644,1.887,0,5.837516,6,4.5 +19451,0,0.209842,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0.245,0.455,0,5.036199,8,4.5 +19453,-1,0.262104,0,3,0,2,4,,3,1,Charlevoix,St,1712809,0.434,0.696,0,6.290488,6,4.5 +21376,-1,0.372622,0,2,0,2,3,,3,1,Warren,Ave,4700429,4.11,4.482,0,8.942921,5,5 +21868,-1,0.236414,0,2,0,2,3,,3,1,Warren,Ave,4700429,2.675,2.911,0,5.673947,5,5 +22195,1,0.166502,1,0,0,1,4,,3,1,E Jefferson/E Grand,Ramp,4704285,0,0.167,0,,6,4.5 +22525,-1,0.147141,0,3,0,2,3,DIV,3,1,Jefferson,Ave,4705824,2.212,2.359,0,3.531382,5,5 +22598,0,0.216214,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.016,5.232,0,5.189147,5,5 +40678,-1,0.019578,0,2,0,2,4,DIV,3,1,Grand,Blvd,5494519,0,0.02,0,0.469873,6,4.5 +22887,1,0.102292,2,0,0,2,4,DIV,3,1,Grand,Blvd,4705761,0.019,0.121,0,2.455016,6,4.5 +23244,0,0.259311,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,2.686,2.946,0,6.223453,5,5 +23472,-1,0.209268,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.328,0.537,0,5.022436,6,4.5 +23864,1,0.109968,3,0,0,2,3,DIV,3,1,Jefferson,Ave,4707464,0.194,0.304,0,2.639232,5,5 +24238,0,0.184852,1,1,0,2,4,,3,1,Saint Jean,St,4711073,0.477,0.662,0,4.436456,6,4.5 +30380,0,0.273291,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.558977,0.15,4 +30715,0,0.231475,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.5554,0.15,4 +30722,0,0.246598,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.918356,0.15,4 +30726,0,0.255634,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.135207,0.15,4 +30733,0,0.200084,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.802017,0.15,4 +30742,0,0.353231,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.477544,0.15,4 +30979,0,0.345336,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.288076,0.15,4 +33104,0,0.356336,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.552061,0.15,4 +33362,0,0.262122,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.290931,0.15,4 +12057,1,0.170311,2,0,0,2,5,DV2,3,1,McDougall,St,1577806,0.352,0.523,0,4.087452,8,4.5 +12797,0,0.156215,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.069,1.225,0,3.749148,6,4.5 +13198,0,0.189609,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,0.88,1.069,0,4.550604,6,4.5 +13743,-1,0.157521,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,1.52,1.678,0,3.780501,6,4.5 +13824,0,0.137115,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.535,0.672,0,3.290752,6,4.5 +13890,1,0.3645,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.632,1.997,0,8.74801,6,4.5 +13941,1,0.160349,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,1.394,1.554,0,3.848373,6,4.5 +13992,0,0.329593,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.672,1.002,0,7.910231,6,4.5 +14326,0,0.221846,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.229,1.451,0,5.324315,5,5 +14456,0,0.115149,2,2,0,2,4,,3,1,Grand,Blvd,1587703,0.376,0.491,0,2.763578,6,4.5 +17155,-1,0.221736,0,3,0,2,4,,3,1,Charlevoix,St,1631706,0.748,0.969,0,5.321673,6,4.5 +17171,0,0.221794,1,1,0,2,5,,3,1,Kercheval,St,1631701,0,0.222,0,5.323067,8,4.5 +17311,-1,0.082534,0,3,0,2,4,DV2,3,1,Larned,St,1627910,1.035,1.117,0,1.980804,6,4.5 +22405,-1,0.172792,0,2,0,2,5,DV2,3,1,McDougall,St,4701223,0.067,0.24,0,4.14702,8,4.5 +22511,0,0.216815,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.553,1.77,0,5.203551,5,5 +22584,-1,0.161991,0,3,0,2,4,,3,1,Joseph Campau,St,4705698,0,0.162,0,3.887792,6,4.5 +23278,0,0.162189,1,1,0,2,5,,3,1,McDougall,St,4704611,0,0.162,0,3.892547,8,4.5 +23663,0,0.200772,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,1.146,1.347,0,4.818524,5,5 +30510,0,0.230842,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.540204,0.15,4 +30992,0,0.123936,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.97446,0.15,4 +30994,0,0.35969,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.632555,0.15,4 +30995,0,0.329526,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.908623,0.15,4 +30997,0,0.29213,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.011117,0.15,4 +33102,0,0.521944,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.526663,0.15,4 +33367,0,0.216447,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.194717,0.15,4 +33368,0,0.242559,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.821427,0.15,4 +33857,0,0.189453,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.546867,0.15,4 +13653,1,0.291196,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,0.72,1.011,0,6.988704,6,4.5 +13901,1,0.291884,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.33,1.621,0,7.005225,6,4.5 +13946,-1,0.180083,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.956,1.136,0,4.321988,6,4.5 +13993,0,0.109998,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.425,0.535,0,2.639951,6,4.5 +14015,1,0.12826,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.746,0.874,0,3.078236,8,4.5 +14358,1,0.267578,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.478,0.746,0,6.421877,8,4.5 +17314,-1,0.291795,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.451,0.742,0,7.003079,6,4.5 +17322,1,0.109501,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.576,0.685,0,2.628021,6,4.5 +22455,-1,0.2109,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.375,0.685,0,5.061602,6,4.5 +22787,1,0.120235,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.754,0.874,0,2.885633,8,4.5 +22827,1,0.157426,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.597,0.754,0,3.778221,8,4.5 +22828,1,0.118214,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.478,0.597,0,2.837129,8,4.5 +22949,0,0.202573,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.772,0.975,0,4.861754,5,5 +24386,0,0.200502,1,1,0,2,5,,3,1,McDougall,St,4710517,0.334,0.535,0,4.812049,8,4.5 +24397,0,0.323552,1,1,0,2,5,,3,1,Robert Bradby,Dr,4710517,0.011,0.334,0,7.765258,8,4.5 +24414,0,0.428253,1,1,0,2,5,,3,1,Prince Hall,Dr,4710514,0.011,0.439,0,10.278068,8,4.5 +30505,0,0.287417,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.897998,0.15,4 +30507,0,0.157523,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.780552,0.15,4 +30508,0,0.243421,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.842099,0.15,4 +33099,0,0.156489,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.755728,0.15,4 +33668,0,0.339274,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.142566,0.15,4 +33669,0,0.29831,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.15945,0.15,4 +13695,1,0.040869,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,0.668,0.709,0,0.980861,6,4.5 +14091,-1,0.01093,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.834,0.845,0,0.26233,6,4.5 +17324,1,0.2257,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.248,0.376,0,5.416804,6,4.5 +22456,-1,0.226583,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.248,0.375,0,5.437997,6,4.5 +22458,-1,0.010919,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.237,0.248,0,0.262062,6,4.5 +14136,-1,0.040932,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.794,0.834,0,0.982377,6,4.5 +17323,1,0.10229,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.376,0.576,0,2.454959,6,4.5 +17326,1,0.169961,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.067,0.237,0,4.079066,6,4.5 +22460,-1,0.169959,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.067,0.237,0,4.079014,6,4.5 +30305,0,0.174739,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.193735,0.15,4 +33100,0,0.12554,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.01296,0.15,4 +33856,0,0.1617,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.880809,0.15,4 +13969,1,0.043705,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.276,1.319,0,1.04892,6,4.5 +17316,-1,0.043249,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.397,0.44,0,1.037986,6,4.5 +17315,-1,0.010305,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.44,0.451,0,0.247316,6,4.5 +17327,1,0.010853,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.056,0.067,0,0.260462,6,4.5 +22462,-1,0.010897,0,2,0,2,4,DV2,3,1,Saint Aubin,St,4705080,0.056,0.067,0,0.261524,6,4.5 +13909,1,0.010216,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.319,1.33,0,0.245195,6,4.5 +14046,-1,0.111078,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,0.845,0.956,0,2.665877,6,4.5 +13663,1,0.01093,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,0.709,0.72,0,0.26233,6,4.5 +17325,1,0.010919,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.237,0.248,0,0.262062,6,4.5 +13838,0,0.171187,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.254,0.425,0,4.108477,6,4.5 +14064,-1,0.086716,0,1,0,2,5,DV2,3,1,Antietam,Ave,1587309,0.877,0.964,0,2.081194,8,4.5 +14421,1,0.15813,2,0,0,2,5,DV2,3,1,Chene,St,1587501,1.071,1.23,0,3.795113,8,4.5 +22831,1,0.085976,1,0,0,2,5,DV2,3,1,Antietam,Ave,4704812,0.213,0.299,0,2.063413,8,4.5 +22833,-1,0.163386,0,2,0,2,5,DV2,3,1,Chene,St,4704811,0.011,0.174,0,3.921255,8,4.5 +33667,0,0.237115,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.690751,0.15,4 +33830,0,0.252212,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.053094,0.15,4 +13881,-1,0.211065,0,1,0,2,5,DV2,3,1,Antietam,Ave,1587309,0.666,0.877,0,5.065568,8,4.5 +22832,1,0.213394,1,0,0,2,5,DV2,3,1,Antietam,Ave,4704812,0,0.213,0,5.121453,8,4.5 +30506,0,0.158455,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.802927,0.15,4 +33666,0,0.168499,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.043967,0.15,4 +17321,1,0.052556,2,0,0,2,4,DV2,3,1,Saint Aubin,St,1627907,0.685,0.738,0,1.261337,6,4.5 +17212,0,0.010885,1,1,0,2,5,,3,1,Chestnut,St,1629109,0.083,0.094,0,0.261248,8,4.5 +14001,0,0.195888,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.058,0.254,0,4.701314,6,4.5 +14135,0,0.201994,1,1,0,2,5,,3,1,Chene,St,1587501,1.23,1.432,0,4.847849,8,4.5 +13840,0,0.011187,2,2,0,2,4,,3,1,Vernor,Hwy,1587407,0.047,0.058,0,0.268494,6,4.5 +13742,1,0.16687,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.905,1.071,0,4.004873,8,4.5 +22830,1,0.148438,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.299,0.448,0,3.562516,8,4.5 +22834,0,0.010999,2,2,0,2,5,,3,1,Chene,St,4704811,0,0.011,0,0.263975,8,4.5 +24399,0,0.01093,1,1,0,2,5,,3,1,Robert Bradby,Dr,4710517,0,0.011,0,0.262325,8,4.5 +13850,1,0.030659,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.874,0.905,0,0.735822,8,4.5 +22829,1,0.030693,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.448,0.478,0,0.736638,8,4.5 +24426,0,0.010885,1,1,0,2,5,,3,1,Prince Hall,Dr,4710514,0,0.011,0,0.26124,8,4.5 +13741,1,0.282319,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,1.022,1.304,0,6.775649,6,4.5 +13756,-1,0.282372,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,1.147,1.43,0,6.77693,6,4.5 +13849,0,0.149271,1,1,0,2,4,,3,1,Chene,St,1587501,0.082,0.231,0,3.582508,6,4.5 +14448,1,0.169975,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.297,0.467,0,4.079399,8,4.5 +17312,-1,0.281966,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.753,1.035,0,6.767188,6,4.5 +22672,0,0.171536,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,0.975,1.146,0,4.116873,5,5 +22771,1,0.17002,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.885,1.055,0,4.080481,8,4.5 +13654,1,0.055053,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.231,0.286,0,1.321269,8,4.5 +22769,1,0.056663,1,0,0,2,5,DV2,3,1,Chene,St,4704812,1.066,1.123,0,1.359913,8,4.5 +17313,-1,0.010719,0,3,0,2,4,DV2,3,1,Larned,St,1627910,0.742,0.753,0,0.257245,6,4.5 +22770,1,0.010897,1,0,0,2,5,DV2,3,1,Chene,St,4704812,1.055,1.066,0,0.261524,8,4.5 +13781,1,0.010835,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.286,0.297,0,0.260035,8,4.5 +13897,1,0.010753,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.621,1.632,0,0.258084,6,4.5 +13690,1,0.010981,1,0,0,2,5,DV2,3,1,Chene,St,1587501,0.467,0.478,0,0.263547,8,4.5 +13922,-1,0.010876,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,1.136,1.147,0,0.261029,6,4.5 +22772,1,0.010857,1,0,0,2,5,DV2,3,1,Chene,St,4704812,0.874,0.885,0,0.260576,8,4.5 +13648,1,0.010807,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,1.011,1.022,0,0.259368,6,4.5 +17296,0,0.185814,1,1,0,2,5,,3,1,Joseph Campau,St,1628009,0.047,0.233,0,4.459532,8,4.5 +30981,0,0.141954,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.406901,0.15,4 +33091,0,0.031013,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.744302,0.15,4 +17297,0,0.047199,1,1,0,2,5,,3,1,Joseph Campau,St,1628009,0,0.047,0,1.132776,8,4.5 +13749,-1,0.090464,0,3,0,2,4,DV2,3,1,Lafayette,St,1585508,1.43,1.52,0,2.171147,6,4.5 +13752,1,0.089479,3,0,0,2,4,DV2,3,1,Lafayette,St,1585507,1.304,1.394,0,2.147495,6,4.5 +30989,0,0.155425,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.730197,0.15,4 +30990,0,0.110926,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.66222,0.15,4 +33101,0,0.163992,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.935804,0.15,4 +13257,0,0.01106,1,1,0,2,5,,3,1,McDougall,St,1577806,0.523,0.534,0,0.265452,8,4.5 +30996,0,0.123333,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.959988,0.15,4 +12790,0,0.218997,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.332,1.551,0,5.255936,6,4.5 +13193,0,0.160875,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.934,2.095,0,3.861009,6,4.5 +13662,0,0.329013,1,1,1,2,3,,3,1,Mack,Ave,1587509,0.9,1.229,0,7.896302,5,5 +13760,0,0.234744,1,1,0,2,5,,3,1,Canfield,St,1585701,2.016,2.25,0,5.633864,8,4.5 +17157,-1,0.136741,0,3,0,2,4,,3,1,Charlevoix,St,1631706,0.282,0.418,0,3.28178,6,4.5 +22870,0,0.292285,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,2.055,2.347,0,7.014846,5,5 +23236,0,0.384962,1,1,0,2,5,,3,1,McDougall,St,4704611,0.49,0.875,0,9.239077,8,4.5 +30511,0,0.128205,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.076924,0.15,4 +30991,0,0.240582,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.773977,0.15,4 +33233,0,0.250167,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.003997,0.15,4 +13745,0,0.110072,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.654,0.764,0,2.641721,5,5 +23275,0,0.13205,1,1,0,2,5,,3,1,McDougall,St,4704611,0.269,0.401,0,3.169201,8,4.5 +23502,0,0.139778,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.77,1.91,0,3.35467,5,5 +23590,0,0.160289,1,1,0,2,5,,3,1,Joseph Campau,St,4705698,0.162,0.322,0,3.846928,8,4.5 +17158,-1,0.110557,0,3,0,2,4,,3,1,Charlevoix,St,1631706,0.171,0.282,0,2.653378,6,4.5 +23277,0,0.106371,1,1,0,2,5,,3,1,McDougall,St,4704611,0.162,0.269,0,2.552895,8,4.5 +13737,0,0.114461,1,1,0,2,3,,3,1,Mack,Ave,1587509,0.764,0.878,0,2.747055,5,5 +23160,0,0.145307,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,1.91,2.055,0,3.487362,5,5 +23274,0,0.089254,1,1,0,2,5,,3,1,McDougall,St,4704611,0.401,0.49,0,2.142091,8,4.5 +14415,0,0.022222,1,1,1,2,3,,3,1,Mack,Ave,1587509,0.878,0.9,0,0.533336,5,5 +13674,1,0.23561,3,0,0,2,3,,3,1,Forest,Ave,5491069,0.858,1.094,0,5.654641,5,5 +13793,0,0.231049,1,1,0,2,5,,3,1,Canfield,St,1585701,1.785,2.016,0,5.545176,8,4.5 +30443,0,0.316603,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.59847,0.15,4 +33231,0,0.156319,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.751654,0.15,4 +30526,0,0.021591,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.518183,0.15,4 +17156,-1,0.329248,0,3,0,2,4,,3,1,Charlevoix,St,1631706,0.418,0.748,0,7.901955,6,4.5 +30993,0,0.339562,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.149483,0.15,4 +30512,0,0.085012,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.040293,0.15,4 +13196,0,0.10633,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.225,1.332,0,2.551925,6,4.5 +11993,0,0.110768,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.823,1.934,0,2.658424,6,4.5 +11994,0,0.166606,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.551,1.717,0,3.998544,6,4.5 +23584,0,0.186205,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,2.5,2.686,0,4.468912,5,5 +30509,0,0.191022,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.584525,0.15,4 +31001,0,0.280913,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.741905,0.15,4 +13194,0,0.106048,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,1.717,1.823,0,2.545149,6,4.5 +22578,0,0.152899,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,2.347,2.5,0,3.669585,5,5 +12009,1,0.01096,2,0,0,2,4,DV2,3,1,Mount Elliott,St,1577808,0.253,0.264,0,0.263037,6,4.5 +12010,0,0.151297,1,1,0,2,5,,3,1,Mount Elliott,St,1577808,0.046,0.197,0,3.631117,8,4.5 +14236,0,0.221855,1,1,0,2,4,,3,1,Lafayette,St,1585508,1.897,2.119,0,5.32451,6,4.5 +17309,-1,0.363394,0,3,0,2,4,DV2,3,1,Larned,St,1627910,1.128,1.492,0,8.721454,6,4.5 +22742,0,0.226628,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,1.72,1.947,0,5.439073,5,5 +23872,-1,0.010897,0,2,0,2,4,DV2,3,1,Mount Elliott,St,4707392,0.056,0.067,0,0.261517,6,4.5 +30977,0,0.093217,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.237214,0.15,4 +30985,0,0.248151,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.955615,0.15,4 +30986,0,0.123345,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.960288,0.15,4 +30987,0,0.237273,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.694558,0.15,4 +31003,0,0.294734,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.073615,0.15,4 +33529,0,0.283553,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.805264,0.15,4 +13877,1,0.36336,3,0,0,2,4,DV2,3,1,Larned,St,1585504,2.008,2.371,0,8.72064,6,4.5 +23328,0,0.215537,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,1.347,1.562,0,5.172899,5,5 +30988,0,0.125082,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.001968,0.15,4 +12060,1,0.055745,2,0,0,2,5,DV2,3,1,McDougall,St,1577806,0.286,0.342,0,1.337869,8,4.5 +22407,-1,0.056329,0,2,0,2,5,DV2,3,1,McDougall,St,4701223,0,0.056,0,1.351907,8,4.5 +13883,1,0.010886,3,0,0,2,4,DV2,3,1,Larned,St,1585504,1.997,2.008,0,0.261256,6,4.5 +17310,-1,0.010886,0,3,0,2,4,DV2,3,1,Larned,St,1627910,1.117,1.128,0,0.261256,6,4.5 +22406,-1,0.010835,0,2,0,2,5,DV2,3,1,McDougall,St,4701223,0.056,0.067,0,0.260035,8,4.5 +13258,1,0.010835,2,0,0,2,5,DV2,3,1,McDougall,St,1577806,0.342,0.352,0,0.260035,8,4.5 +23019,0,0.157523,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,1.562,1.72,0,3.780553,5,5 +30978,0,0.150099,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.602379,0.15,4 +13841,1,0.010393,3,0,0,2,4,DV2,3,1,Larned,St,1585504,2.371,2.381,0,0.249431,6,4.5 +23873,-1,0.056015,0,2,0,2,4,DV2,3,1,Mount Elliott,St,4707392,0,0.056,0,1.344355,6,4.5 +13206,1,0.05562,2,0,0,2,4,DV2,3,1,Mount Elliott,St,1577808,0.197,0.253,0,1.334875,6,4.5 +12003,0,0.21844,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,0.507,0.725,0,5.242552,6,4.5 +14330,0,0.208367,1,1,1,2,4,,3,1,Lafayette,St,1585508,1.678,1.886,0,5.000811,6,4.5 +30734,0,0.236258,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.670191,0.15,4 +13199,0,0.154268,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,0.725,0.88,0,3.70242,6,4.5 +13200,1,0.13251,2,0,0,2,4,DV2,3,1,Mount Elliott,St,1577808,0.314,0.446,0,3.180231,6,4.5 +23870,-1,0.132685,0,2,0,2,4,DV2,3,1,Mount Elliott,St,4707392,0.117,0.249,0,3.184442,6,4.5 +12803,1,0.060765,2,0,0,2,4,DV2,3,1,Mount Elliott,St,1577808,0.446,0.507,0,1.458358,6,4.5 +23869,-1,0.062053,0,2,0,2,4,DV2,3,1,Mount Elliott,St,4707392,0.249,0.311,0,1.48926,6,4.5 +14347,0,0.011242,1,1,0,2,4,,3,1,Lafayette,St,1585508,1.886,1.897,0,0.269797,6,4.5 +13205,1,0.049995,2,0,0,2,4,DV2,3,1,Mount Elliott,St,1577808,0.264,0.314,0,1.199871,6,4.5 +17308,-1,0.009967,0,3,0,2,4,DV2,3,1,Larned,St,1627910,1.492,1.502,0,0.239208,6,4.5 +23871,-1,0.049663,0,2,0,2,4,DV2,3,1,Mount Elliott,St,4707392,0.067,0.117,0,1.191911,6,4.5 +39278,1,0.047848,1,0,0,2,3,RSF,3,2,S I 75/Outer,RAMP,1595209,0.273,0.321,0,1.148343,5,5 +13665,-1,0.11245,0,3,0,2,4,DIV,3,1,Grand,Blvd,1587703,0,0.112,0,2.698807,6,4.5 +14250,0,0.25615,1,1,0,2,4,,3,1,Lafayette,St,1585508,2.119,2.375,0,6.147589,6,4.5 +22194,1,0.111543,3,0,0,2,4,DIV,3,1,Grand,Blvd,4704287,0,0.112,0,2.677042,6,4.5 +23430,0,0.072562,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,1.947,2.019,0,1.741485,5,5 +30980,0,0.239638,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.751305,0.15,4 +31002,0,0.123254,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.958086,0.15,4 +31004,0,0.126813,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.04352,0.15,4 +23086,-1,0.175415,0,3,0,2,3,DIV,3,1,Jefferson,Ave,4705824,2.019,2.194,0,4.209956,5,5 +23866,1,0.098861,3,0,0,2,3,DIV,3,1,Jefferson,Ave,4707464,0.076,0.174,0,2.372665,5,5 +23867,1,0.075583,3,0,0,2,3,DIV,3,1,Jefferson,Ave,4707464,0,0.076,0,1.813982,5,5 +22808,-1,0.017843,0,3,0,2,3,DIV,3,1,Jefferson,Ave,4705824,2.194,2.212,0,0.428227,5,5 +23180,1,0.019287,2,0,0,2,4,DIV,3,1,Grand,Blvd,4705761,0,0.019,0,0.462879,6,4.5 +23865,1,0.019463,3,0,0,2,3,DIV,3,1,Jefferson,Ave,4707464,0.174,0.194,0,0.467111,5,5 +13790,0,0.131483,2,2,0,2,4,,3,1,Grand,Blvd,1587703,0.245,0.376,0,3.155589,6,4.5 +14332,0,0.132488,3,3,0,2,4,,3,1,Grand,Blvd,1587703,0.112,0.245,0,3.179703,6,4.5 +13801,0,0.172703,1,1,0,2,4,,3,1,Grand,Blvd,1587703,0.991,1.164,0,4.144872,6,4.5 +13952,1,0.181586,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,1.3,1.482,0,4.358071,6,4.5 +13964,0,0.205225,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.909,2.115,0,4.925411,5,5 +13975,0,0.183696,1,1,0,2,4,,3,1,Grand,Blvd,1587703,0.808,0.991,0,4.408694,6,4.5 +14379,0,0.184158,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.709,0.893,0,4.419782,6,4.5 +17170,0,0.255825,1,1,0,2,5,,3,1,Kercheval,St,1631701,0.222,0.478,0,6.139812,8,4.5 +19125,-1,0.205912,0,3,0,2,4,,3,1,Charlevoix,St,1631706,1.225,1.431,0,4.94189,6,4.5 +30731,0,0.173067,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.153597,0.15,4 +30769,0,0.353522,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.484522,0.15,4 +30998,0,0.251387,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.033277,0.15,4 +33420,0,0.356923,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.566147,0.15,4 +13823,1,0.298475,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,1.002,1.3,0,7.163393,6,4.5 +19207,-1,0.256163,0,3,0,2,4,,3,1,Charlevoix,St,1631706,0.969,1.225,0,6.147913,6,4.5 +30999,0,0.264091,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.338187,0.15,4 +31000,0,0.076888,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.845306,0.15,4 +13976,1,0.174633,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.318,1.493,0,4.191199,6,4.5 +14164,0,0.140636,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.717,1.858,0,3.375262,5,5 +14173,0,0.181614,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.525,1.707,0,4.358736,5,5 +23473,-1,0.174611,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.153,0.328,0,4.190655,6,4.5 +14417,0,0.074259,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.451,1.525,0,1.782211,5,5 +14191,1,0.153958,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.164,1.318,0,3.694981,6,4.5 +23474,-1,0.153487,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0,0.153,0,3.683692,6,4.5 +14408,0,0.0106,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.707,1.717,0,0.254389,5,5 +14171,0,0.051329,1,1,1,2,3,,3,1,Mack,Ave,1587509,1.858,1.909,0,1.231901,5,5 +13768,1,0.260144,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,1.482,1.742,0,6.243449,6,4.5 +14449,0,0.162513,2,2,0,2,4,,3,1,Grand,Blvd,1587703,0.645,0.808,0,3.900309,6,4.5 +17168,0,0.106892,1,1,0,2,5,,3,1,Kercheval,St,1631701,0.632,0.738,0,2.565413,8,4.5 +17169,0,0.154083,1,1,0,2,5,,3,1,Kercheval,St,1631701,0.478,0.632,0,3.698004,8,4.5 +13782,0,0.153798,2,2,0,2,4,,3,1,Grand,Blvd,1587703,0.491,0.645,0,3.691156,6,4.5 +13902,1,0.165334,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,1.742,1.907,0,3.968012,6,4.5 +14116,0,0.243341,1,1,1,2,3,,3,1,Mack,Ave,1587509,2.115,2.358,0,5.840182,5,5 +14119,0,0.325882,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.893,1.219,0,7.821158,6,4.5 +19201,-1,0.112208,0,3,0,2,4,,3,1,Charlevoix,St,1631706,1.431,1.543,0,2.69299,6,4.5 +30729,0,0.05273,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.265528,0.15,4 +30730,0,0.061622,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.478937,0.15,4 +19200,-1,0.100969,0,3,0,2,4,,3,1,Charlevoix,St,1631706,1.543,1.644,0,2.423249,6,4.5 +11084,1,0.361852,3,0,0,1,1,,3,1,E I 94,,1576405,30.833,31.195,0,,0.58,7 +11297,1,0.62358,3,0,0,1,1,,3,1,E I 94,,1576405,30.21,30.833,0,,0.58,7 +11922,0,0.206912,2,2,0,2,3,,3,1,Van Dyke,St,1577904,0.342,0.549,0,4.965888,5,5 +12366,0,0.060524,1,1,0,2,4,,3,1,Harper,Ave,1578108,0,0.061,0,1.452577,6,4.5 +12689,0,0.425333,1,1,0,2,4,,3,1,McClellan,St,1577907,1.963,2.389,0,10.208002,6,4.5 +12701,0,0.096856,1,1,0,2,5,,3,1,Burns,St,1577906,1.171,1.268,0,2.32455,8,4.5 +12703,1,0.196065,1,0,0,1,1,RON,3,1,M 53/E I 94,RAMP,1577905,0,0.196,0,,1.09,4 +12714,0,0.345403,2,2,1,2,4,,3,1,Harper,Ave,1578108,0.385,0.73,0,8.289675,6,4.5 +13119,0,0.342008,2,2,0,2,3,,3,1,Van Dyke,St,1577904,0,0.342,0,8.208199,5,5 +13763,-1,0.616854,0,3,0,1,1,,3,1,W I 94,,1588802,30.176,30.793,0,,0.58,7 +13939,1,0.015079,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.57,1.585,0,0.361905,5,5 +14050,1,0.192855,1,0,0,1,1,ROF,3,1,W I 94/M 53,RAMP,1589110,0,0.193,0,,2.24,5 +14125,1,0.111264,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.862,1.974,0,2.670325,6,4.5 +14143,0,0.033937,1,1,0,2,5,,3,1,Frontenac,St,1587703,2.909,2.943,0,0.814491,8,4.5 +14151,1,0.307828,2,0,0,2,5,,3,1,E I 94 Service Drive,,1586301,0.29,0.598,0,7.387877,8,4.5 +14259,-1,0.311481,0,2,0,2,5,,3,1,Duncan,Ave,1586404,0,0.311,0,7.475542,8,4.5 +14264,0,0.007063,2,2,0,2,5,,3,1,Grinnell,Ave,1586702,0.526,0.533,0,0.169501,8,4.5 +14269,-1,0.325322,0,2,0,2,5,,3,1,Duncan,Ave,1586404,0.349,0.675,0,7.807724,8,4.5 +14397,1,0.327819,2,0,0,2,5,,3,1,E I 94 Service Drive,,1586301,0.642,0.969,0,7.867651,8,4.5 +14437,-1,0.361185,0,3,0,1,1,,3,1,W I 94,,1588802,30.793,31.154,0,,0.58,7 +21631,-1,0.29985,0,2,0,2,3,,3,1,Warren,Ave,4700429,3.469,3.769,0,7.196403,5,5 +22734,0,0.464099,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,3.996,4.46,0,11.138388,5,5 +23320,0,0.367897,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,3.208,3.576,0,8.829534,5,5 +23470,-1,0.160596,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.537,0.698,0,3.854315,6,4.5 +30623,0,0.28075,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.738006,0.15,4 +31005,0,0.050068,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.201636,0.15,4 +33092,0,0.314267,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.542415,0.15,4 +33235,0,0.372792,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.946997,0.15,4 +33244,0,0.170212,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.085084,0.15,4 +12786,0,0.173063,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,2.739,2.912,0,4.153518,6,4.5 +13896,0,0.350791,1,1,0,2,5,,3,1,Frontenac,St,1587703,2.508,2.859,0,8.418978,8,4.5 +14087,0,0.244407,1,1,0,2,4,,3,1,Grand,Blvd,1587703,2.264,2.508,0,5.865769,6,4.5 +21753,-1,0.220229,0,2,0,2,3,,3,1,Warren,Ave,4700429,2.911,3.131,0,5.285505,5,5 +22574,0,0.277215,1,1,0,2,4,,3,1,Grand,Blvd,4705610,0.703,0.98,0,6.653159,6,4.5 +22865,0,0.219048,1,1,0,2,4,,3,1,Grand,Blvd,4705610,0.484,0.703,0,5.257159,6,4.5 +33370,0,0.206396,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.953508,0.15,4 +33525,0,0.244484,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.867606,0.15,4 +12787,0,0.320894,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,2.256,2.576,0,7.701458,6,4.5 +13188,0,0.162742,1,1,1,2,4,,3,1,Mount Elliott,St,1577808,2.576,2.739,0,3.9058,6,4.5 +11980,1,0.159917,1,0,0,2,4,,3,1,Harper,Ave,1577810,0,0.16,0,3.838001,6,4.5 +13171,0,0.051657,1,1,0,2,5,,3,1,Concord,St,1577901,2.867,2.919,0,1.23976,8,4.5 +15002,0,0.05433,1,1,0,2,4,,3,1,Harper,Ave,1591307,0.831,0.885,0,1.30392,6,4.5 +15013,-1,0.157563,0,2,0,2,4,,3,1,Harper,Ave,1591307,0.503,0.661,0,3.781517,6,4.5 +13172,1,0.110519,1,0,0,1,1,RON,3,1,Mount Elliot/E I 94,RAMP,1577809,0,0.111,0,,1.09,4 +14047,1,0.038018,1,0,0,2,4,,3,1,Harper,Ave,4718377,0.963,1.001,0,0.912433,6,4.5 +13712,1,0.015621,1,0,0,2,4,,3,1,Harper,Ave,4718377,0.948,0.963,0,0.374908,6,4.5 +14088,1,0.104715,1,0,0,1,1,ROF,3,1,W I 94/Mount Elliot,RAMP,1589108,0,0.105,0,,2.24,5 +15008,0,0.170379,1,1,0,2,4,,3,1,Harper,Ave,1591307,0.661,0.831,0,4.089095,6,4.5 +14141,0,0.207884,1,1,0,2,5,,3,1,E I 94 Service Drive,,1586301,0.083,0.29,0,4.989205,8,4.5 +15001,0,0.106854,1,1,0,2,4,,3,1,Harper,Ave,1591307,0.885,0.992,0,2.564485,6,4.5 +14390,0,0.049699,1,1,0,2,5,,3,1,Frontenac,St,1587703,2.859,2.909,0,1.192777,8,4.5 +13934,1,0.050105,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.974,2.024,0,1.20252,6,4.5 +21588,-1,0.270638,0,2,0,2,3,,3,1,Warren,Ave,4700429,3.131,3.402,0,6.495313,5,5 +23466,-1,0.062427,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.797,0.859,0,1.498241,6,4.5 +23654,0,0.080799,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,3.127,3.208,0,1.939178,5,5 +33371,0,0.279575,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.709795,0.15,4 +33537,0,0.259356,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.22455,0.15,4 +14462,1,0.124949,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.445,1.57,0,2.998779,5,5 +22941,0,0.161296,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,2.946,3.107,0,3.87111,5,5 +23467,-1,0.098948,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.698,0.797,0,2.374748,6,4.5 +22651,0,0.020242,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,3.107,3.127,0,0.485809,5,5 +14023,0,0.209529,1,1,0,2,4,,3,1,Grand,Blvd,1587703,2.055,2.264,0,5.028686,6,4.5 +21815,-1,0.054438,0,2,0,2,3,,3,1,Warren,Ave,4700429,3.415,3.469,0,1.306501,5,5 +21483,-1,0.012974,0,2,0,2,3,,3,1,Warren,Ave,4700429,3.402,3.415,0,0.311368,5,5 +23465,-1,0.031557,0,2,0,2,4,DV2,3,1,Grand,Blvd,4704571,0.859,0.891,0,0.757367,6,4.5 +14241,1,0.030932,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,2.024,2.055,0,0.742357,6,4.5 +11910,0,0.205741,3,3,0,2,3,,3,1,Van Dyke,St,1577904,0.902,1.108,0,4.937791,5,5 +12718,0,0.093137,1,1,0,2,4,,3,1,Harper,Ave,1578108,0.061,0.154,0,2.235283,6,4.5 +14338,0,0.20098,1,1,0,2,5,,3,1,Miller,Rd,1586408,0.557,0.758,0,4.823528,8,4.5 +18404,0,0.275818,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.794,1.07,0,6.61964,8,4.5 +18408,0,0.211641,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.285,0.496,0,5.079374,8,4.5 +18418,0,0.137721,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0,0.138,0,3.305309,8,4.5 +30621,0,0.3069,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.36559,0.15,4 +14373,0,0.23042,1,1,0,2,5,,3,1,Miller,Rd,1586408,0.327,0.557,0,5.53007,8,4.5 +18416,0,0.147134,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.138,0.285,0,3.531205,8,4.5 +25344,0,0.294927,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.078254,0.15,4 +33242,0,0.275376,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.609036,0.15,4 +18407,0,0.165996,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.628,0.794,0,3.983902,8,4.5 +19188,0,0.250734,1,1,0,2,5,,3,1,Huber,St,1632002,0.553,0.804,0,6.017614,8,4.5 +30622,0,0.219527,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.268656,0.15,4 +33251,0,0.274229,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.581504,0.15,4 +33252,0,0.131884,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.165213,0.15,4 +11926,1,0.132139,1,0,0,1,1,ROF,3,1,E I 94/M 53,RAMP,1577903,0,0.132,0,,2.24,5 +12364,0,0.231499,1,1,0,2,4,,3,1,Harper,Ave,1578108,0.154,0.385,0,5.555986,6,4.5 +12725,0,0.181667,3,3,0,2,3,,3,1,Van Dyke,St,1577904,0.72,0.902,0,4.360017,5,5 +14280,1,0.130013,1,0,0,1,1,RON,3,1,M 53/W I 94,RAMP,1589109,0,0.13,0,,1.09,4 +13111,0,0.110316,3,3,0,2,3,,3,1,Van Dyke,St,1577904,0.61,0.72,0,2.647584,5,5 +13986,1,0.017767,1,0,0,2,5,,3,1,E I 94 Service Drive,,1586301,0.624,0.642,0,0.426405,8,4.5 +13116,0,0.061462,2,2,0,2,3,,3,1,Van Dyke,St,1577904,0.549,0.61,0,1.47509,5,5 +13704,1,0.025888,1,0,0,2,5,,3,1,E I 94 Service Drive,,1586301,0.598,0.624,0,0.621306,8,4.5 +14265,-1,0.020568,0,2,0,2,5,,3,1,Duncan,Ave,1586404,0.329,0.349,0,0.493634,8,4.5 +14260,-1,0.017434,0,2,0,2,5,,3,1,Duncan,Ave,1586404,0.311,0.329,0,0.418415,8,4.5 +13108,0,0.477858,3,3,0,2,3,,3,1,Van Dyke,St,1577904,1.15,1.627,0,11.468599,5,5 +14372,0,0.268421,2,2,0,2,5,,3,1,Grinnell,Ave,1586702,0.257,0.526,0,6.442099,8,4.5 +14051,0,0.023913,1,1,0,2,5,,3,1,Saint Cyril,Ave,1586702,0.234,0.257,0,0.573902,8,4.5 +13070,0,0.277803,1,1,0,2,5,,3,1,Burns,St,1577906,0.894,1.171,0,6.66727,8,4.5 +13071,0,0.165144,1,1,0,2,5,,3,1,Burns,St,1577906,0.538,0.703,0,3.963454,8,4.5 +14113,0,0.120423,2,2,0,2,4,,3,1,Van Dyke,St,1587710,1.923,2.043,0,2.89015,6,4.5 +14478,1,0.340947,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.958,2.299,0,8.182722,5,5 +21542,-1,0.340767,0,2,0,2,3,,3,1,Warren,Ave,4700429,3.769,4.11,0,8.178411,5,5 +30504,0,0.354646,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.511507,0.15,4 +33238,0,0.397876,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.549029,0.15,4 +13804,1,0.189338,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.769,1.958,0,4.544102,5,5 +14453,0,0.158465,1,1,0,2,4,,3,1,Van Dyke,St,1587710,1.601,1.76,0,3.803152,6,4.5 +30744,0,0.199002,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.776051,0.15,4 +30745,0,0.18866,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.527833,0.15,4 +30746,0,0.203068,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.873622,0.15,4 +13744,1,0.183689,3,0,0,2,3,,3,1,Forest,Ave,5491069,1.585,1.769,0,4.408543,5,5 +13911,1,0.158687,2,0,0,2,4,DV2,3,1,Grand,Blvd,1587703,1.704,1.862,0,3.808478,6,4.5 +30743,0,0.198341,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.760175,0.15,4 +14232,0,0.163262,2,2,0,2,4,,3,1,Van Dyke,St,1587710,1.76,1.923,0,3.918295,6,4.5 +23002,0,0.42012,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,3.576,3.996,0,10.082869,5,5 +13924,0,0.103318,2,2,0,2,4,,3,1,Van Dyke,St,1587710,2.043,2.147,0,2.479639,6,4.5 +30741,0,0.184997,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.439937,0.15,4 +30747,0,0.339274,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.142572,0.15,4 +33365,0,0.067396,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.6175,0.15,4 +12702,0,0.191154,1,1,0,2,5,,3,1,Burns,St,1577906,0.703,0.894,0,4.587698,8,4.5 +10888,1,0.595226,3,0,0,1,1,,3,1,E I 94,,1576405,31.195,31.79,0,,0.58,7 +12358,0,0.1402,2,2,1,2,4,,3,1,Harper,Ave,1578108,1.009,1.149,0,3.364802,6,4.5 +13039,0,0.077964,1,1,1,2,4,,3,1,McClellan,St,1577907,2.601,2.679,0,1.871132,6,4.5 +13719,-1,0.477134,0,3,0,1,1,,3,1,W I 94,,1588802,31.154,31.631,0,,0.58,7 +13923,0,0.462354,2,2,0,2,5,,3,1,Grinnell,Ave,1586702,0.533,0.995,0,11.096489,8,4.5 +14261,0,0.32105,1,1,0,2,5,,3,1,Duncan,Ave,1586404,0.675,0.996,0,7.705201,8,4.5 +22891,0,0.307808,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.708,5.016,0,7.387401,5,5 +30983,0,0.308207,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.396971,0.15,4 +31009,0,0.273326,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.559834,0.15,4 +12711,0,0.223423,2,2,1,2,4,,3,1,Harper,Ave,1578108,0.786,1.009,0,5.362148,6,4.5 +13065,0,0.110362,1,1,0,2,5,,3,1,Burns,St,1577906,1.533,1.643,0,2.64868,8,4.5 +13068,0,0.213406,1,1,0,2,5,,3,1,Burns,St,1577906,1.268,1.482,0,5.121741,8,4.5 +12700,0,0.051329,1,1,0,2,5,,3,1,Burns,St,1577906,1.482,1.533,0,1.23189,8,4.5 +12360,0,0.05514,2,2,1,2,4,,3,1,Harper,Ave,1578108,0.73,0.786,0,1.323354,6,4.5 +31008,0,0.471923,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.326145,0.15,4 +11196,1,0.136288,3,0,0,1,1,,3,1,E I 94,,1576405,31.79,31.927,0,,0.58,7 +12684,1,0.218113,1,0,0,1,1,RON,3,1,M 3/E I 94,RAMP,1577910,0,0.218,0,,1.09,4 +12696,0,0.142406,2,2,1,2,4,,3,1,Harper,Ave,1578108,1.149,1.291,0,3.417749,6,4.5 +12983,0,0.170685,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,2.209,2.38,0,4.096434,8,4.5 +13051,0,0.072266,1,1,0,2,4,,3,1,McClellan,St,1577907,2.389,2.461,0,1.734381,6,4.5 +19452,0,0.24529,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0,0.245,0,5.886959,8,4.5 +23524,0,0.087278,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.588,4.675,0,2.094682,5,5 +24298,1,0.161048,1,0,0,1,1,ROF,3,1,E I 94/M 3,RAMP,4710282,0,0.161,0,,2.24,5 +12688,0,0.139867,1,1,1,2,4,,3,1,McClellan,St,1577907,2.461,2.601,0,3.356804,6,4.5 +14100,1,0.192723,1,0,0,1,1,RON,3,1,M 3/W I 94,RAMP,1587905,0,0.193,0,,1.09,4 +14393,-1,0.10011,0,3,0,1,1,,3,1,W I 94,,1588802,31.631,31.731,0,,0.58,7 +22817,0,0.077075,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.504,4.581,0,1.84981,5,5 +24490,1,0.204341,1,0,0,1,1,ROF,3,1,W I 94/M 3,RAMP,4710000,0,0.204,0,,2.24,5 +23439,0,0.038274,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.46,4.498,0,0.918567,5,5 +23095,0,0.006383,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.498,4.504,0,0.153187,5,5 +22534,0,0.006676,3,3,1,2,3,,3,1,Gratiot,Ave,4705742,4.581,4.588,0,0.160216,5,5 +12627,0,0.052899,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,2.38,2.433,0,1.269573,8,4.5 +12352,0,0.053094,2,2,1,2,4,,3,1,Harper,Ave,1578108,1.291,1.345,0,1.274254,6,4.5 +12624,0,0.043543,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,2.505,2.549,0,1.045042,8,4.5 +12981,0,0.072459,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,2.433,2.505,0,1.739026,8,4.5 +23184,0,0.032646,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,4.675,4.708,0,0.783494,5,5 +13612,0,0.361867,2,2,0,2,5,,3,1,Grinnell,Ave,1586702,0.995,1.357,0,8.684806,8,4.5 +30982,0,0.288802,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.931242,0.15,4 +33372,0,0.266236,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.389668,0.15,4 +12699,0,0.229732,1,1,0,2,4,,3,1,McClellan,St,1577907,0,0.23,0,5.513572,6,4.5 +13032,0,0.18504,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.279,0.464,0,4.440971,8,4.5 +13707,0,0.18268,1,1,0,2,4,,3,1,Lafayette,St,1585508,2.638,2.82,0,4.384326,6,4.5 +13733,0,0.067398,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.078,0.145,0,1.61754,6,4.5 +17162,0,0.198565,2,2,0,2,5,,3,1,Kercheval,St,1631701,1.615,1.813,0,4.765566,8,4.5 +39966,0,0.105043,1,1,0,2,5,,3,1,Inselruhe,St,5494512,0.298,0.403,0,2.521041,8,4.5 +18529,1,0.340705,2,0,0,2,5,,3,1,Central,Way,1633203,0.498,0.838,0,8.176917,8,4.5 +22882,0,0.163101,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,2.666,2.829,0,3.914423,5,5 +22948,0,0.120796,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.281,3.402,0,2.899107,5,5 +30735,0,0.199126,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.779029,0.15,4 +31010,0,0.232153,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.571668,0.15,4 +33154,0,0.502906,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.069742,0.15,4 +33825,0,0.273941,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.574588,0.15,4 +39965,0,0.112615,1,1,0,2,5,,3,1,Inselruhe,St,5494512,0.185,0.298,0,2.702757,8,4.5 +18532,1,0.151175,2,0,0,2,5,,3,1,Central,Way,1633203,0,0.151,0,3.628201,8,4.5 +39960,1,0.130474,2,0,0,2,5,,3,1,Picnic,Way,5494510,0.223,0.354,0,3.131381,8,4.5 +23602,0,0.427066,2,2,1,2,4,,,1,Douglas MacArthur,Brg,4705761,0.15,0.577,0,10.249588,3,4 +39951,1,0.64508,3,0,0,2,5,,3,1,Riverbank,Rd,5494522,0,0.645,0,15.481918,8,4.5 +18604,1,0.153068,3,0,0,2,5,,3,1,Sunset,Dr,1633110,0,0.153,0,3.673624,8,4.5 +18590,1,0.125214,2,0,0,2,5,,3,1,Casino,Way,1633110,0.153,0.278,0,3.005143,8,4.5 +23175,0,0.193609,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,2.473,2.666,0,4.646626,5,5 +23515,0,0.113493,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,2.359,2.473,0,2.723841,5,5 +30709,0,0.166428,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.994262,0.15,4 +30713,0,0.223203,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.356875,0.15,4 +22196,1,0.187595,1,0,0,1,4,,3,1,E Grand/E Jefferson,Ramp,4704284,0,0.188,0,,6,4.5 +22594,1,0.028749,2,0,0,2,4,DIV,3,1,Grand,Blvd,4705761,0.121,0.15,0,0.689988,6,4.5 +23863,1,0.041944,3,0,0,2,3,DIV,3,1,Jefferson,Ave,4707464,0.304,0.346,0,1.006668,5,5 +30714,0,0.103375,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.480995,0.15,4 +14146,0,0.054674,1,1,0,2,4,,3,1,Lafayette,St,1585508,2.583,2.638,0,1.312171,6,4.5 +30716,0,0.100138,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.403312,0.15,4 +13921,0,0.077762,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0,0.078,0,1.866283,6,4.5 +40066,0,0.58693,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.086317,0.15,4 +18531,1,0.346745,2,0,0,2,5,,3,1,Central,Way,1633203,0.151,0.498,0,8.321879,8,4.5 +39963,0,0.185162,1,1,0,2,5,,3,1,Inselruhe,St,5494512,0,0.185,0,4.4439,8,4.5 +13871,1,0.124414,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.379,2.503,0,2.985944,6,4.5 +14470,0,0.243411,1,1,0,2,4,,3,1,Lafayette,St,1585508,2.82,3.064,0,5.841876,6,4.5 +17165,0,0.15202,1,1,0,2,5,,3,1,Kercheval,St,1631701,1.152,1.304,0,3.648491,8,4.5 +19456,-1,0.092252,0,3,0,2,4,,3,1,Charlevoix,St,1712809,0.027,0.119,0,2.214056,6,4.5 +30721,0,0.155172,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.72413,0.15,4 +30723,0,0.158699,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.808777,0.15,4 +30724,0,0.109217,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.621197,0.15,4 +31996,0,0.298998,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.175957,0.15,4 +33123,0,0.348916,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.373985,0.15,4 +33374,0,0.105919,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.542053,0.15,4 +33378,0,0.227686,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.464459,0.15,4 +13727,0,0.210697,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.145,0.356,0,5.056735,6,4.5 +14401,0,0.191195,1,1,0,2,4,,3,1,Van Dyke,St,1587710,0.356,0.547,0,4.588673,6,4.5 +17166,0,0.243238,1,1,0,2,5,,3,1,Kercheval,St,1631701,0.909,1.152,0,5.837702,8,4.5 +30732,0,0.180599,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.334374,0.15,4 +33377,0,0.174822,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.195725,0.15,4 +19192,-1,0.228517,0,3,0,2,4,,3,1,Charlevoix,St,1631706,1.887,2.116,0,5.484408,6,4.5 +30728,0,0.073042,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.752997,0.15,4 +30984,0,0.256367,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.152813,0.15,4 +31700,0,0.283036,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.792873,0.15,4 +13694,1,0.144338,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.235,2.379,0,3.464122,6,4.5 +13885,1,0.083864,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.151,2.235,0,2.012724,6,4.5 +23861,-1,0.029525,0,3,0,2,4,,3,1,Charlevoix,St,4707490,0,0.03,0,0.708597,6,4.5 +23597,0,0.300943,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,2.916,3.217,0,7.222635,5,5 +30725,0,0.297714,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.145129,0.15,4 +18371,0,0.088823,1,1,0,2,4,,3,1,Iroquois,St,1634303,0,0.089,0,2.131746,6,4.5 +22589,0,0.086453,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,2.829,2.916,0,2.074873,5,5 +23255,0,0.06417,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.217,3.281,0,1.540092,5,5 +12698,0,0.189829,1,1,0,2,4,,3,1,McClellan,St,1577907,0.344,0.534,0,4.555895,6,4.5 +13688,1,0.115269,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.503,2.618,0,2.766461,6,4.5 +13866,1,0.198501,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,2.618,2.817,0,4.764029,6,4.5 +17163,0,0.173199,2,2,0,2,5,,3,1,Kercheval,St,1631701,1.442,1.615,0,4.156781,8,4.5 +19454,-1,0.198839,0,3,0,2,4,,3,1,Charlevoix,St,1712809,0.235,0.434,0,4.772148,6,4.5 +17164,0,0.137667,2,2,0,2,5,,3,1,Kercheval,St,1631701,1.304,1.442,0,3.304003,8,4.5 +12695,0,0.099644,1,1,0,2,4,,3,1,McClellan,St,1577907,0.677,0.777,0,2.391456,6,4.5 +13061,0,0.143721,1,1,0,2,4,,3,1,McClellan,St,1577907,0.534,0.677,0,3.449313,6,4.5 +19455,-1,0.115398,0,3,0,2,4,,3,1,Charlevoix,St,1712809,0.119,0.235,0,2.769554,6,4.5 +13063,0,0.114063,1,1,0,2,4,,3,1,McClellan,St,1577907,0.23,0.344,0,2.737523,6,4.5 +12675,0,0.151421,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.464,0.615,0,3.634112,8,4.5 +39955,1,0.350953,3,0,0,2,5,,3,1,Riverbank,Rd,5494522,0.826,1.177,0,8.422877,8,4.5 +33157,0,0.28504,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.840952,0.15,4 +39954,1,0.181013,3,0,0,2,5,,3,1,Riverbank,Rd,5494522,0.645,0.826,0,4.344323,8,4.5 +33155,0,0.157356,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.776545,0.15,4 +39961,1,0.053931,2,0,0,2,5,,3,1,Vista,Dr,5494516,0,0.054,0,1.294356,8,4.5 +22671,0,0.207973,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.402,3.61,0,4.991361,5,5 +23018,0,0.449727,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.869,4.318,0,10.793439,5,5 +33156,0,0.329111,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.898663,0.15,4 +17161,0,0.18686,2,2,0,2,5,,3,1,Kercheval,St,1631701,1.813,2,0,4.484651,8,4.5 +23662,0,0.069341,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.61,3.679,0,1.664173,5,5 +30711,0,0.046856,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.124541,0.15,4 +30712,0,0.191353,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.592478,0.15,4 +33375,0,0.261642,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.279402,0.15,4 +12676,0,0.165506,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.113,0.279,0,3.972142,8,4.5 +13033,0,0.11327,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0,0.113,0,2.718469,8,4.5 +23327,0,0.189669,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,3.679,3.869,0,4.552055,5,5 +24239,0,0.152103,1,1,0,2,5,,3,1,Saint Jean,St,4711073,0.325,0.477,0,3.650468,8,4.5 +12300,0,0.296378,2,2,1,2,4,,3,1,Harper,Ave,1578108,2.26,2.556,0,7.113072,6,4.5 +12615,0,0.360384,1,1,0,2,5,,3,1,French,Rd,1578003,0.653,1.013,0,8.649206,8,4.5 +12617,0,0.329472,1,1,0,2,5,,3,1,French,Rd,1578003,0,0.329,0,7.907317,8,4.5 +12995,0,0.28671,1,1,0,2,5,,3,1,Cadillac,Ave,1578001,1.663,1.95,0,6.881043,8,4.5 +13709,0,0.112194,1,1,1,2,3,,3,1,Mack,Ave,1587509,3.277,3.389,0,2.692666,5,5 +14284,0,0.136927,3,3,0,2,3,,3,1,Conner,St,1588005,2.09,2.227,0,3.286245,5,5 +19443,0,0.321058,1,1,0,2,5,,3,1,Canfield,St,1713306,0.489,0.81,0,7.705384,8,4.5 +19447,0,0.19192,2,2,0,2,5,,3,1,Shoemaker,St,1713304,1.103,1.294,0,4.606082,8,4.5 +21632,0,0.129021,2,2,0,2,3,,3,1,Warren,Ave,4700429,5.051,5.435,0,3.096499,5,5 +24213,0,0.228271,1,1,0,2,4,,3,1,Saint Jean,St,4711073,2.032,2.26,0,5.478495,6,4.5 +25535,0,0.285557,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.853367,0.15,4 +30718,0,0.268308,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.439386,0.15,4 +30739,0,0.335966,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.063188,0.15,4 +33107,0,0.308959,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.415025,0.15,4 +33386,0,0.381319,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.151647,0.15,4 +33527,0,0.322145,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.73148,0.15,4 +12673,0,0.187167,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,1.15,1.337,0,4.491998,8,4.5 +13054,0,0.165305,1,1,0,2,4,,3,1,McClellan,St,1577907,1.391,1.556,0,3.96731,6,4.5 +13918,0,0.197186,1,1,1,2,3,,3,1,Mack,Ave,1587509,2.821,3.018,0,4.732465,5,5 +19446,0,0.254387,1,1,0,2,5,,3,1,Canfield,St,1713306,0.068,0.322,0,6.105276,8,4.5 +21754,0,0.172252,2,2,0,2,3,,3,1,Warren,Ave,4700429,4.878,5.051,0,4.134039,5,5 +33383,0,0.32232,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.735678,0.15,4 +33540,0,0.379384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.105217,0.15,4 +12692,0,0.355587,1,1,0,2,4,,3,1,McClellan,St,1577907,1.035,1.391,0,8.534082,6,4.5 +13735,0,0.195646,1,1,1,2,3,,3,1,Mack,Ave,1587509,2.455,2.651,0,4.695512,5,5 +14409,0,0.170042,1,1,1,2,3,,3,1,Mack,Ave,1587509,2.651,2.821,0,4.081014,5,5 +12672,0,0.171597,1,1,0,2,3,,3,1,Cadillac,Blvd,1578001,1.492,1.663,0,4.118336,5,5 +14479,1,0.204615,3,0,0,2,3,,3,1,Forest,Ave,5491069,2.669,2.874,0,4.910765,5,5 +21277,0,0.208212,2,2,1,2,3,,3,1,Warren,Ave,4700429,4.482,4.69,0,4.997078,5,5 +12690,0,0.166543,1,1,0,2,4,,3,1,McClellan,St,1577907,1.556,1.722,0,3.997031,6,4.5 +13029,0,0.154936,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,1.337,1.492,0,3.718463,8,4.5 +21951,0,0.122474,2,2,0,2,3,,3,1,Warren,Ave,4700429,4.756,4.878,0,2.939365,5,5 +22085,0,0.065727,2,2,0,2,3,,3,1,Warren,Ave,4700429,4.69,4.756,0,1.577444,5,5 +12674,0,0.169091,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.814,0.983,0,4.058172,8,4.5 +13729,0,0.259142,1,1,1,2,3,,3,1,Mack,Ave,1587509,3.018,3.277,0,6.219403,5,5 +13030,0,0.166872,1,1,0,2,5,,3,1,Cadillac,Blvd,1578001,0.983,1.15,0,4.004935,8,4.5 +12966,0,0.323656,1,1,0,2,5,,3,1,French,Rd,1578003,0.329,0.653,0,7.767752,8,4.5 +19445,0,0.111798,1,1,0,2,5,,3,1,Canfield,St,1713306,0.322,0.434,0,2.683147,8,4.5 +33385,0,0.173658,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.167786,0.15,4 +33384,0,0.010509,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.252218,0.15,4 +19444,0,0.054805,1,1,0,2,5,,3,1,Canfield,St,1713306,0.434,0.489,0,1.31531,8,4.5 +10741,1,0.387059,3,0,0,1,1,,3,1,E I 94,,1576405,32.128,32.515,0,,0.58,7 +11445,1,0.220004,3,0,0,1,1,,3,1,E I 94,,1576405,32.515,32.735,0,,0.58,7 +12632,0,0.294784,2,2,0,2,4,,3,1,Harper,Ave,1578108,1.819,2.113,0,7.074821,6,4.5 +12954,1,0.170724,1,0,0,1,1,RON,3,1,French/E I 94,RAMP,1578004,0,0.171,0,,1.09,4 +12958,0,0.153684,1,1,0,2,5,,3,1,French,Rd,1578003,1.269,1.423,0,3.688413,8,4.5 +13803,-1,0.404753,0,3,0,1,1,,3,1,W I 94,,1588802,32.105,32.51,0,,0.58,7 +19449,0,0.127309,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0.642,1.066,0,3.055427,8,4.5 +24205,0,0.294039,2,2,0,2,4,,3,1,Saint Jean,St,4711073,2.323,2.617,0,7.056938,6,4.5 +12959,0,0.201162,1,1,0,2,5,,3,1,French,Rd,1578003,1.013,1.214,0,4.827896,8,4.5 +12968,1,0.147578,1,0,0,1,1,ROF,3,1,E I 94/French,RAMP,1578002,0,0.148,0,,2.24,5 +13882,1,0.058589,2,0,0,2,5,,3,1,E I 94 Service Drive,,1588708,0.336,0.395,0,1.406139,8,4.5 +14386,1,0.157452,1,0,0,1,1,RON,3,1,French/W I 94,RAMP,1589201,0,0.157,0,,1.09,4 +19450,0,0.186917,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0.455,0.642,0,4.486003,8,4.5 +30736,0,0.342711,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.225069,0.15,4 +30737,0,0.117327,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.815852,0.15,4 +30738,0,0.169532,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.068767,0.15,4 +14333,1,0.026987,2,0,0,2,5,,3,1,E I 94 Service Drive,,1588708,0.449,0.476,0,0.647696,8,4.5 +12609,0,0.054788,1,1,0,2,5,,3,1,French,Rd,1578003,1.214,1.269,0,1.314902,8,4.5 +13666,1,0.054142,2,0,0,2,5,,3,1,E I 94 Service Drive,,1588708,0.395,0.449,0,1.299406,8,4.5 +13775,0,0.008038,1,1,0,2,5,,3,1,W I 94 Service Drive,,1587906,0.501,0.509,0,0.192916,8,4.5 +12351,0,0.114339,2,2,1,2,4,,3,1,Harper,Ave,1578108,1.704,1.819,0,2.74414,6,4.5 +12608,0,0.27108,2,2,0,2,5,,3,1,French,Rd,1578003,1.423,1.694,0,6.505928,8,4.5 +30523,0,0.149463,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.587109,0.15,4 +12956,0,0.162356,2,2,0,2,5,,3,1,French,Rd,1578003,1.694,1.856,0,3.896546,8,4.5 +30525,0,0.122158,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.931801,0.15,4 +19448,0,0.036293,2,2,0,2,5,,3,1,Shoemaker,St,1713304,1.066,1.103,0,0.871044,8,4.5 +24206,0,0.063097,2,2,0,2,4,,3,1,Saint Jean,St,4711073,2.26,2.323,0,1.51432,6,4.5 +33381,0,0.049369,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.184851,0.15,4 +33382,0,0.034036,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.816852,0.15,4 +11199,1,0.247649,3,0,0,1,1,,3,1,E I 94,,1576405,32.735,32.982,0,,0.58,7 +12585,1,0.155296,1,0,0,1,1,RON,3,1,Conner/E I 94,RAMP,1578008,0,0.155,0,,1.09,4 +12588,-1,0.059816,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.35,0.41,0,1.435572,5,5 +12623,0,0.108827,2,2,1,2,4,,3,1,Harper,Ave,1578108,2.151,2.26,0,2.611856,6,4.5 +12947,1,0.097072,1,0,0,1,1,ROF,3,1,E I 94/Conner,RAMP,1578006,0,0.097,0,,2.24,5 +12949,-1,0.05867,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.179,0.238,0,1.40808,5,5 +13693,1,0.065159,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.476,2.541,0,1.563826,5,5 +14086,1,0.108909,1,0,0,1,3,RSF,3,1,W I 94/Conner,RAMP,1589204,0.129,0.238,0,,5,5 +14307,1,0.187794,1,0,0,1,1,RON,3,1,N Conner/W I 94,RAMP,1589203,0,0.188,0,,1.09,4 +14369,-1,0.281166,0,3,0,1,1,,3,1,W I 94,,1588802,32.622,32.903,0,,0.58,7 +14466,1,0.057784,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.541,2.598,0,1.38681,5,5 +12589,-1,0.035559,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.238,0.273,0,0.853421,5,5 +13692,-1,0.112278,0,3,0,1,1,,3,1,W I 94,,1588802,32.51,32.622,0,,0.58,7 +14137,1,0.198767,1,0,0,1,1,RON,3,1,S Conner/W I 94,RAMP,1589202,0,0.199,0,,1.09,4 +12309,0,0.037746,2,2,0,2,4,,3,1,Harper,Ave,1578108,2.113,2.151,0,0.905894,6,4.5 +12948,-1,0.076309,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.273,0.35,0,1.831405,5,5 +14245,0,0.228274,1,1,1,2,3,,3,1,Conner,St,1588005,2.598,2.827,0,5.478586,5,5 +12587,1,0.059593,1,0,0,1,1,ROF,3,1,E I 94/SB Conner,RAMP,1578006,0.097,0.157,0,,2.24,5 +12599,-1,0.081694,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.098,0.179,0,1.960646,5,5 +13968,1,0.064352,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.38,2.444,0,1.544453,5,5 +14069,1,0.129245,1,0,0,1,1,ROF,3,1,W I 94/Conner,RAMP,1589204,0,0.129,0,,2.24,5 +14177,1,0.055937,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.324,2.38,0,1.342482,5,5 +24454,1,0.042784,1,0,0,1,1,ROF,3,1,E I 94/NB Conner,RAMP,4718277,0,0.043,0,,2.24,5 +22743,0,0.033185,1,1,0,2,4,,3,1,Hern,St,4705812,0,0.033,0,0.796444,6,4.5 +13884,1,0.031214,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.444,2.476,0,0.749125,5,5 +12601,-1,0.044102,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0,0.044,0,1.058451,5,5 +12942,1,0.039325,1,0,0,1,3,RSF,3,1,E I 94/SB Conner,RAMP,1578006,0.157,0.196,0,,5,5 +12952,-1,0.053429,0,3,0,2,3,DIV,3,1,Conner,St,1578005,0.044,0.098,0,1.282293,5,5 +14053,1,0.096849,3,0,0,2,3,DIV,3,1,Conner,St,1588005,2.227,2.324,0,2.324375,5,5 +22208,1,0.022575,1,0,0,1,3,RSF,3,1,North/South Conner Cutoff,,4704280,0.022,0.045,0,,5,5 +22209,1,0.022277,1,0,0,1,3,RSF,3,1,North/South Conner Cutoff,,4704280,0,0.022,0,,5,5 +13807,0,0.33478,3,3,0,2,3,,3,1,Mack,Ave,1587509,3.755,4.09,0,8.034719,5,5 +13856,1,0.313896,3,0,0,2,4,,3,1,Vernor,Hwy,1587407,3.215,3.529,0,7.533503,6,4.5 +14384,0,0.112244,1,1,1,2,3,,3,1,Mack,Ave,1587509,3.389,3.501,0,2.69385,5,5 +19442,-1,0.464279,0,3,0,2,4,,3,1,Charlevoix,St,1713402,0,0.464,0,11.142687,6,4.5 +33098,0,0.515177,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.36425,0.15,4 +30720,0,0.087429,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.098285,0.15,4 +13978,0,0.253801,1,1,1,2,3,,3,1,Mack,Ave,1587509,3.501,3.755,0,6.091214,5,5 +17159,-1,0.166027,0,4,0,2,7,,3,1,Kercheval,St,1631701,2.518,2.684,0,3.984642,7,4.5 +33108,0,0.247372,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.93692,0.15,4 +14213,0,0.449818,3,3,0,2,3,,3,1,Conner,St,1588005,1.641,2.09,0,10.795639,5,5 +18749,0,0.095324,2,2,0,2,5,,3,1,Chandler Park,Dr,1632805,0.297,0.392,0,2.287768,8,4.5 +18751,0,0.29677,2,2,0,2,5,,3,1,Chandler Park,Dr,1632805,0,0.297,0,7.12248,8,4.5 +21377,0,0.207077,2,2,1,2,3,,3,1,Warren,Ave,4700429,5.656,5.863,0,4.969846,5,5 +30338,0,0.026604,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.638484,0.15,4 +33119,0,0.189091,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.538179,0.15,4 +33380,0,0.39394,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.454566,0.15,4 +21486,0,0.221154,2,2,1,2,3,,3,1,Warren,Ave,4700429,5.435,5.656,0,5.307703,5,5 +12620,0,0.19532,2,2,1,2,4,,3,1,Harper,Ave,1578108,2.556,2.751,0,4.687671,6,4.5 +33379,0,0.400853,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.620469,0.15,4 +30337,0,0.097379,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.337095,0.15,4 +14440,0,0.313229,2,2,1,2,3,,3,1,Conner,St,1588005,1.328,1.641,0,7.517487,5,5 +21089,0,0.207303,1,1,1,2,3,,3,1,Warren,Ave,4700429,5.863,6.07,0,4.975279,5,5 +22086,0,0.1218,1,1,1,2,3,,3,1,Warren,Ave,4700429,6.07,6.192,0,2.923201,5,5 +18739,0,0.16911,2,2,0,2,5,,3,1,Chandler Park,Dr,1632805,0.59,0.759,0,4.058648,8,4.5 +23511,0,0.251207,1,1,0,2,4,,3,1,Dickerson,St,4705398,2.057,2.309,0,6.028976,6,4.5 +18744,0,0.197665,2,2,0,2,5,,3,1,Chandler Park,Dr,1632805,0.392,0.59,0,4.74396,8,4.5 +4378,-1,0.361759,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,4.136,4.498,0,8.682211,5,5 +4625,1,0.372031,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,4.126,4.498,0,8.928733,5,5 +5313,0,0.376509,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,0.02,0.397,0,9.036206,5,5 +5361,0,0.434881,2,2,1,2,4,,3,4,9 Mile,Rd,803006,4.002,4.436,0,10.437137,6,4.5 +12449,0,0.558565,1,1,0,2,4,,3,1,Chalmers,St,1578102,4.09,4.649,0,13.405565,6,4.5 +13082,0,0.221905,2,2,0,2,3,,3,1,Van Dyke,St,1577904,3.906,4.128,0,5.325711,5,5 +13785,1,0.138945,3,0,0,2,4,DV2,3,1,Outer,Dr,1588005,5.527,5.666,0,3.334672,6,4.5 +13959,0,0.189608,1,1,0,2,5,,3,1,Findlay,St,1588110,0.199,0.388,0,4.550595,8,4.5 +13990,0,0.313234,2,2,0,2,3,,3,1,Gunston,St,1588008,0.599,0.913,0,7.517608,5,5 +14094,0,0.501827,1,1,0,2,5,,3,1,State Fair,St,1588609,0.214,0.716,0,12.043842,8,4.5 +14215,0,0.310943,1,1,0,2,5,,3,1,Greiner,St,1588404,0.496,0.807,0,7.462635,8,4.5 +14282,0,0.251405,1,1,0,2,3,,3,1,Hoover,St,1588008,1.909,2.161,0,6.033709,5,5 +14398,0,0.274199,2,2,1,2,3,,3,1,Conner,St,1588005,3.321,3.595,0,6.58077,5,5 +16233,0,0.249559,2,2,0,2,4,,3,1,Schoenherr,St,1602409,0.31,0.56,0,5.989412,6,4.5 +18571,0,0.565794,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.912,22.478,0,13.579049,5,5 +22446,-1,0.139597,0,3,0,2,4,DV2,3,1,Outer,Dr,4705082,1.004,1.143,0,3.350338,6,4.5 +22533,0,0.287901,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,7.606,7.894,0,6.90963,5,5 +22880,0,0.388966,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0.545,0.934,0,9.335189,5,5 +30643,0,0.247171,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.932101,0.15,4 +30750,0,0.500764,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.018331,0.15,4 +30765,0,0.37279,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.94696,0.15,4 +30768,0,0.50012,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.002878,0.15,4 +30770,0,0.502543,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.061031,0.15,4 +33392,0,0.220369,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.288855,0.15,4 +33396,0,0.222214,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.333125,0.15,4 +33406,0,0.258653,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.207668,0.15,4 +33411,0,0.33299,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.991762,0.15,4 +33413,0,0.500566,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.013577,0.15,4 +33419,0,0.240622,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.774928,0.15,4 +33630,0,0.376333,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.031996,0.15,4 +13101,0,0.527479,3,3,0,2,3,,3,1,Van Dyke,St,1577904,2.381,2.908,0,12.659492,5,5 +13784,0,0.580503,2,2,0,2,3,,3,1,Conner,St,1588005,3.946,4.526,0,13.932083,5,5 +13980,0,0.059737,1,1,0,2,5,,3,1,Lynch,Rd,1586705,1.207,1.267,0,1.433677,8,4.5 +18811,0,0.243426,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.162,21.406,0,5.842217,5,5 +19432,0,0.649187,1,1,0,2,5,,3,1,French,Rd,1714006,0.324,0.973,0,15.580486,8,4.5 +30630,0,0.535793,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.859025,0.15,4 +33390,0,0.500376,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.009028,0.15,4 +33422,0,0.301786,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.242856,0.15,4 +33423,0,0.428309,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.27941,0.15,4 +33425,0,0.300459,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.211026,0.15,4 +33625,0,0.309829,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.435902,0.15,4 +11909,0,0.47444,3,3,0,2,3,,3,1,Van Dyke,St,1577904,1.906,2.381,0,11.386569,5,5 +14315,0,0.347945,1,1,1,2,5,,3,1,Lynch,Rd,1586705,0.614,0.962,0,8.350679,8,4.5 +30631,0,0.375719,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.017264,0.15,4 +33627,0,0.500497,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.011935,0.15,4 +13912,0,0.244871,1,1,0,2,5,,3,1,Lynch,Rd,1586705,0.962,1.207,0,5.876897,8,4.5 +12720,0,0.183952,3,3,0,2,3,,3,1,Van Dyke,St,1577904,1.722,1.906,0,4.414844,5,5 +33628,0,0.283742,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.809798,0.15,4 +12710,0,0.216191,3,3,0,2,3,,3,1,Van Dyke,St,1577904,3.191,3.407,0,5.188577,5,5 +14138,0,0.213525,2,2,0,2,4,,3,1,Nevada,St,1585907,4.181,4.394,0,5.124594,6,4.5 +14426,0,0.320465,2,2,0,2,4,,3,1,Davison,St,4702009,7.222,7.543,0,7.69117,6,4.5 +17189,0,0.218541,1,1,0,2,5,,3,1,Sherwood,St,1630706,0.284,0.502,0,5.244981,8,4.5 +17538,0,0.256309,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,20.656,20.912,0,6.15141,5,5 +18965,0,0.183624,2,2,0,2,3,,3,1,McNichols,Rd,1680701,26.794,26.977,0,4.406972,5,5 +33307,0,0.252441,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.058576,0.15,4 +33428,0,0.243037,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.832892,0.15,4 +17190,0,0.283957,1,1,0,2,5,,3,1,Sherwood,St,1630706,0,0.284,0,6.81496,8,4.5 +19159,0,0.314176,2,2,0,2,3,,3,1,McNichols,Rd,1680701,26.479,26.794,0,7.540215,5,5 +33426,0,0.079023,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.89655,0.15,4 +33427,0,0.257715,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.185167,0.15,4 +14455,0,0.178036,2,2,0,2,4,,3,1,Davison,St,4702009,7.044,7.222,0,4.272875,6,4.5 +14353,0,0.274779,2,2,0,2,4,,3,1,Nevada,St,1585907,3.906,4.181,0,6.594702,6,4.5 +17187,0,0.254523,1,1,0,2,5,,3,1,Sherwood,St,1630706,0.76,1.015,0,6.108557,8,4.5 +17853,0,0.244397,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,20.411,20.656,0,5.865527,5,5 +30922,0,0.242048,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.809148,0.15,4 +33429,0,0.246752,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.922049,0.15,4 +17188,0,0.257751,1,1,0,2,5,,3,1,Sherwood,St,1630706,0.502,0.76,0,6.186017,8,4.5 +33310,0,0.255058,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.121385,0.15,4 +13085,0,0.282898,3,3,0,2,3,,3,1,Van Dyke,St,1577904,2.908,3.191,0,6.789564,5,5 +18598,0,0.217893,2,2,0,2,5,,3,1,McNichols,Rd,1680701,26.977,27.195,0,5.229443,8,4.5 +33421,0,0.408969,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.815266,0.15,4 +12708,0,0.251753,3,3,0,2,3,,3,1,Van Dyke,St,1577904,3.655,3.906,0,6.042077,5,5 +19138,0,0.163616,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,20.912,21.075,0,3.92679,5,5 +33430,0,0.135734,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.257611,0.15,4 +13084,0,0.247823,3,3,0,2,3,,3,1,Van Dyke,St,1577904,3.407,3.655,0,5.947741,5,5 +18805,0,0.087051,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.075,21.162,0,2.089216,5,5 +33424,0,0.22989,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.517348,0.15,4 +13671,0,0.405849,1,1,0,2,5,,3,1,Lynch,Rd,1586705,1.372,1.778,0,9.740383,8,4.5 +14155,0,0.234358,2,2,0,2,3,,3,1,Conner,St,1588005,3.595,3.83,0,5.624591,5,5 +19433,0,0.323711,1,1,0,2,5,,3,1,French,Rd,1714006,0,0.324,0,7.769059,8,4.5 +33239,0,0.461039,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.064943,0.15,4 +13860,0,0.105521,1,1,0,2,5,,3,1,Lynch,Rd,1586705,1.267,1.372,0,2.532509,8,4.5 +33629,0,0.342463,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.219104,0.15,4 +14163,0,0.198615,1,1,0,2,5,,3,1,Findlay,St,1588110,0,0.199,0,4.76677,8,4.5 +33546,0,0.211938,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.086523,0.15,4 +13962,0,0.116345,2,2,0,2,3,,3,1,Conner,St,1588005,3.83,3.946,0,2.792285,5,5 +33391,0,0.095968,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.303234,0.15,4 +14123,0,0.244718,1,1,0,2,5,,3,1,Greiner,St,1588404,0,0.245,0,5.873237,8,4.5 +14186,1,0.251036,3,0,0,2,3,DV2,3,1,Outer,Dr,1588005,4.78,5.031,0,6.024865,5,5 +14355,0,0.234578,1,1,0,2,3,,3,1,Hoover,St,1588008,1.178,1.412,0,5.629872,5,5 +17539,0,0.034849,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.662,21.697,0,0.836382,5,5 +22450,-1,0.508512,0,3,0,2,3,DV2,3,1,Outer,Dr,4705082,0,0.508,0,12.204286,5,5 +23252,0,0.244507,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0,0.245,0,5.868171,5,5 +30766,0,0.248048,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.953144,0.15,4 +30767,0,0.363044,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.713058,0.15,4 +33398,0,0.276476,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.635417,0.15,4 +33400,0,0.262049,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.289175,0.15,4 +33432,0,0.251375,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.033006,0.15,4 +33435,0,0.248686,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.968468,0.15,4 +14428,1,0.253802,3,0,0,2,3,DV2,3,1,Outer,Dr,1588005,4.526,4.78,0,6.091253,5,5 +13798,1,0.246339,3,0,0,2,3,DV2,3,1,Outer,Dr,1588005,5.155,5.401,0,5.912125,5,5 +17956,0,0.243262,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.419,21.662,0,5.838295,5,5 +22448,-1,0.122927,0,3,0,2,3,DV2,3,1,Outer,Dr,4705082,0.633,0.755,0,2.950247,5,5 +13972,1,0.124169,3,0,0,2,3,DV2,3,1,Outer,Dr,1588005,5.031,5.155,0,2.980048,5,5 +22449,-1,0.124169,0,3,0,2,3,DV2,3,1,Outer,Dr,4705082,0.508,0.633,0,2.980048,5,5 +23835,0,0.01402,1,1,0,2,5,,3,1,Greiner,St,4707539,0,0.014,0,0.336469,8,4.5 +13963,1,0.125554,3,0,0,2,3,DV2,3,1,Outer,Dr,1588005,5.401,5.527,0,3.013288,5,5 +22447,-1,0.248526,0,3,0,2,3,DV2,3,1,Outer,Dr,4705082,0.755,1.004,0,5.964635,5,5 +18354,0,0.013069,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.406,21.419,0,0.31365,5,5 +13685,0,0.194705,1,1,0,2,3,,3,1,Hoover,St,1588008,0.983,1.178,0,4.672909,5,5 +23253,0,0.251666,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0.245,0.496,0,6.039986,5,5 +33431,0,0.248359,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.960624,0.15,4 +33433,0,0.251407,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.033765,0.15,4 +13819,0,0.070432,1,1,0,2,3,,3,1,Hoover,St,1588008,0.913,0.983,0,1.690373,5,5 +19519,0,0.074271,1,1,0,2,5,,3,1,Hoover,St,1881003,0,0.074,0,1.782507,8,4.5 +23011,0,0.049018,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0.496,0.545,0,1.176429,5,5 +13931,0,0.251775,1,1,0,2,5,,3,1,Greiner,St,1588404,0.245,0.496,0,6.042603,8,4.5 +14039,0,0.249627,1,1,0,2,3,,3,1,Hoover,St,1588008,1.412,1.662,0,5.991037,5,5 +18942,0,0.215638,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,21.697,21.912,0,5.175313,5,5 +33434,0,0.247206,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.932954,0.15,4 +33437,0,0.248252,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.958059,0.15,4 +13868,0,0.247638,1,1,0,2,3,,3,1,Hoover,St,1588008,1.662,1.909,0,5.943308,5,5 +4310,-1,0.220495,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,3.145,3.365,0,5.29188,5,5 +4524,0,0.516199,1,1,0,2,4,,3,4,Hoover,Rd,798909,0.027,0.543,0,12.388776,6,4.5 +4657,1,0.364492,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.164,3.529,0,8.747816,5,5 +5071,0,0.505973,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,0.02,0.526,0,12.143354,5,5 +5364,0,0.562364,2,2,0,2,4,,3,4,9 Mile,Rd,803006,2.926,3.489,0,13.496741,6,4.5 +14162,0,0.164366,2,2,0,2,4,,3,1,Outer,Dr,1588005,5.893,6.057,0,3.944792,6,4.5 +25467,0,0.57177,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.72248,0.15,4 +27482,0,0.55223,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.25352,0.15,4 +27485,0,0.298499,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.163979,0.15,4 +27487,0,0.271476,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.515419,0.15,4 +27544,0,0.506231,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.149547,0.15,4 +28748,0,0.48676,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.682229,0.15,4 +28855,0,0.251788,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.042902,0.15,4 +28858,0,0.546404,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.113706,0.15,4 +33418,0,0.2205,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.292002,0.15,4 +33439,0,0.22399,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.375758,0.15,4 +4553,1,0.249888,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.748,2.998,0,5.99731,5,5 +4972,-1,0.142857,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.856,2.999,0,3.42856,5,5 +12704,0,0.17574,2,2,0,2,3,,3,1,Van Dyke,St,1577904,4.415,4.591,0,4.217752,5,5 +13878,1,0.220668,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,4.678,4.899,0,5.296022,6,4.5 +13958,0,0.281985,1,1,0,2,5,,3,1,Conner,St,1588005,6.057,6.339,0,6.767646,8,4.5 +23811,-1,0.250676,0,2,0,2,4,DV2,3,1,Outer,Dr,4707670,0.287,0.537,0,6.016226,6,4.5 +30573,0,0.233458,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.602999,0.15,4 +30644,0,0.251393,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.033432,0.15,4 +33613,0,0.256861,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.164673,0.15,4 +33615,0,0.249305,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.983323,0.15,4 +30572,0,0.262483,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.2996,0.15,4 +30642,0,0.248595,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.966291,0.15,4 +14148,1,0.057385,2,0,0,2,4,DV2,3,1,Outer,Dr,1586002,4.621,4.678,0,1.37724,6,4.5 +23812,-1,0.026955,0,2,0,2,4,DV2,3,1,Outer,Dr,4707670,0.26,0.287,0,0.64692,6,4.5 +30571,0,0.237012,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.688292,0.15,4 +33612,0,0.27931,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.70344,0.15,4 +4629,-1,0.103165,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.753,2.856,0,2.475964,5,5 +12707,0,0.272724,2,2,0,2,3,,3,1,Van Dyke,St,1577904,4.128,4.401,0,6.545367,5,5 +14184,1,0.190349,2,0,0,2,4,DV2,3,1,Outer,Dr,1587207,0,0.19,0,4.568386,6,4.5 +23810,-1,0.190513,0,2,0,2,4,DV2,3,1,Outer,Dr,4707670,0.537,0.728,0,4.572301,6,4.5 +30927,0,0.21597,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.183278,0.15,4 +33440,0,0.265628,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.375082,0.15,4 +13080,0,0.014363,2,2,0,2,3,,3,1,Van Dyke,St,1577904,4.401,4.415,0,0.344701,5,5 +14424,0,0.132971,2,2,0,2,4,,3,1,Outer,Dr,1587207,0.19,0.323,0,3.191293,6,4.5 +3946,1,0.10742,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.057,3.164,0,2.578085,5,5 +13078,0,0.295027,2,2,0,2,3,,3,1,Van Dyke,St,1577904,4.591,4.886,0,7.08065,5,5 +14368,0,0.285028,1,1,0,2,5,,3,1,Conner,St,1588005,6.339,6.624,0,6.840681,8,4.5 +4250,1,0.058616,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,2.998,3.057,0,1.406774,5,5 +4627,-1,0.146031,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,2.999,3.145,0,3.504747,5,5 +4059,0,0.01008,3,3,1,2,3,,3,4,Van Dyke,St,799108,0.01,0.02,0,0.24191,5,5 +4346,0,0.010289,3,3,1,2,3,,3,1,Van Dyke,St,799108,0,0.01,0,0.246938,5,5 +16241,0,0.011665,1,1,0,2,5,,3,1,Bramford,St,1602307,0.285,0.296,0,0.279971,8,4.5 +4341,0,0.51106,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,0.526,1.037,0,12.265429,5,5 +27486,0,0.480476,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.531415,0.15,4 +28908,0,0.529596,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.710295,0.15,4 +28910,0,0.33805,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.113202,0.15,4 +25173,0,0.207492,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.9798,0.15,4 +4052,0,0.158626,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,1.037,1.196,0,3.807018,5,5 +26148,0,0.226566,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.437587,0.15,4 +26149,0,0.227351,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.456416,0.15,4 +5365,0,0.131831,2,2,1,2,4,,3,4,9 Mile,Rd,803006,2.795,2.926,0,3.163955,6,4.5 +4340,1,0.259621,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.529,3.788,0,6.230897,5,5 +5031,-1,0.20793,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,3.701,3.909,0,4.990324,5,5 +13875,0,0.249067,1,1,0,2,3,,3,1,Hoover,St,1588008,2.41,2.659,0,5.977613,5,5 +33417,0,0.433264,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.398346,0.15,4 +14188,0,0.077709,2,2,0,2,4,,3,1,Outer,Dr,1588005,5.815,5.893,0,1.865021,6,4.5 +14430,0,0.149441,2,2,0,2,4,,3,1,Outer,Dr,1588005,5.666,5.815,0,3.586574,6,4.5 +4013,-1,0.33611,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,3.365,3.701,0,8.066644,5,5 +33438,0,0.289675,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.952206,0.15,4 +33606,0,0.304214,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.301144,0.15,4 +14052,0,0.042053,1,1,0,2,3,,3,1,Hoover,St,1588008,2.161,2.203,0,1.009269,5,5 +33412,0,0.199708,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.792993,0.15,4 +14055,0,0.207496,1,1,0,2,3,,3,1,Hoover,St,1588008,2.203,2.41,0,4.979898,5,5 +4704,-1,0.227324,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,3.909,4.136,0,5.455785,5,5 +5063,1,0.106986,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.892,3.999,0,2.567656,5,5 +13920,0,0.221878,2,2,1,2,3,,3,1,Groesbeck,Hwy,1588008,2.718,2.94,0,5.325078,5,5 +15000,0,0.193755,1,1,0,2,5,,3,1,Hoover,St,1591508,0,0.194,0,4.650115,8,4.5 +4051,1,0.10389,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.788,3.892,0,2.493358,5,5 +4865,1,0.01017,1,0,0,2,4,,3,4,Hoover,Rd,798909,0.017,0.027,0,0.244084,6,4.5 +4663,1,0.017152,1,0,0,2,4,,3,1,Hoover,Rd,798909,0,0.017,0,0.411657,6,4.5 +14111,0,0.059296,1,1,0,2,3,,3,1,Hoover,St,1588008,2.659,2.718,0,1.423096,5,5 +4969,1,0.127264,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,3.999,4.126,0,3.054328,5,5 +5314,0,0.009299,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,0.011,0.02,0,0.223179,5,5 +5315,0,0.010956,3,3,1,2,3,,3,1,Groesbeck,Hwy,803009,0,0.011,0,0.262946,5,5 +4589,0,0.498406,1,1,0,2,4,,3,4,Hoover,Rd,798909,0.543,1.042,0,11.961736,6,4.5 +5362,0,0.255438,2,2,0,2,4,,3,4,9 Mile,Rd,803006,3.746,4.002,0,6.130514,6,4.5 +27481,0,0.558028,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.392662,0.15,4 +28900,0,0.535344,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.848246,0.15,4 +5363,0,0.257818,2,2,0,2,4,,3,4,9 Mile,Rd,803006,3.489,3.746,0,6.187629,6,4.5 +26147,0,0.244404,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.865702,0.15,4 +27480,0,0.018991,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.455788,0.15,4 +4279,0,0.251649,1,1,0,2,4,,3,4,Hoover,Rd,798909,1.042,1.293,0,6.039576,6,4.5 +12794,0,0.227537,1,1,0,2,4,,3,1,Chalmers,St,1578102,3.422,3.65,0,5.46088,6,4.5 +14216,0,0.193091,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,0,0.193,0,4.634173,6,4.5 +14249,-1,0.31805,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,0.488,0.806,0,7.633196,6,4.5 +14450,0,0.498815,1,1,0,2,5,,3,1,Greiner,St,1588404,0.995,1.493,0,11.971549,8,4.5 +16236,0,0.250776,2,2,0,2,4,,3,1,Schoenherr,St,1602409,0.059,0.31,0,6.018624,6,4.5 +22522,0,0.610694,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0.977,1.588,0,14.656662,5,5 +22724,1,0.158949,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,0.642,0.801,0,3.814768,6,4.5 +23027,0,0.146116,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,6.518,6.664,0,3.506785,5,5 +23438,0,0.503568,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,6.765,7.268,0,12.08562,5,5 +23497,0,0.362251,1,1,0,2,4,,3,1,Dickerson,St,4705398,3.435,3.797,0,8.694014,6,4.5 +30764,0,0.386565,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.277569,0.15,4 +33397,0,0.183331,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.399933,0.15,4 +33408,0,0.135535,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.252842,0.15,4 +33441,0,0.33647,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.075279,0.15,4 +33443,0,0.247589,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.942144,0.15,4 +13413,0,0.424004,1,1,0,2,3,,3,1,Gunston,St,1588008,0,0.424,0,10.176084,5,5 +14199,0,0.372572,1,1,0,2,5,,3,1,Findlay,St,1588110,0.388,0.761,0,8.941725,8,4.5 +14472,-1,0.342012,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,0.146,0.488,0,8.20829,6,4.5 +22725,1,0.32981,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,0.312,0.642,0,7.915436,6,4.5 +23671,0,0.468336,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.86,6.329,0,11.240059,5,5 +33387,0,0.288618,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.926843,0.15,4 +33633,0,0.357248,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.573946,0.15,4 +13858,0,0.240563,1,1,1,2,3,,3,1,Conner,St,1588005,2.966,3.207,0,5.773509,5,5 +14112,-1,0.14571,0,4,0,2,4,DV2,3,1,Outer,Dr,1588006,0,0.146,0,3.497034,6,4.5 +14208,0,0.099069,2,2,0,2,3,,3,1,Conner,St,1588005,3.207,3.306,0,2.377645,5,5 +22727,1,0.128191,4,0,0,2,4,DV2,3,1,Outer,Dr,4704846,0,0.128,0,3.07658,6,4.5 +23264,0,0.109436,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.579,5.688,0,2.626472,5,5 +13994,0,0.0153,2,2,0,2,3,,3,1,Conner,St,1588005,3.306,3.321,0,0.367192,5,5 +22680,0,0.15813,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.702,5.86,0,3.795126,5,5 +22726,1,0.183791,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,0.128,0.312,0,4.410994,6,4.5 +22957,0,0.013875,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,5.688,5.702,0,0.332993,5,5 +14040,0,0.112512,1,1,0,2,3,,3,1,Gunston,St,1588008,0.424,0.536,0,2.700277,5,5 +13869,0,0.063,2,2,0,2,3,,3,1,Gunston,St,1588008,0.536,0.599,0,1.51201,5,5 +33632,0,0.378284,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.078814,0.15,4 +33442,0,0.213765,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.130361,0.15,4 +13983,0,0.167998,1,1,0,2,5,,3,1,Findlay,St,1588110,0.761,0.929,0,4.031945,8,4.5 +23336,0,0.189739,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,6.329,6.518,0,4.553745,5,5 +33394,0,0.283943,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.81463,0.15,4 +33399,0,0.178545,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.285087,0.15,4 +33436,0,0.498589,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.966144,0.15,4 +33395,0,0.309387,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.425299,0.15,4 +33401,0,0.154645,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.711472,0.15,4 +22664,0,0.043054,2,2,0,2,3,,3,1,McNichols,Rd,4705875,0.934,0.977,0,1.033305,5,5 +13996,0,0.187596,1,1,0,2,5,,3,1,Greiner,St,1588404,0.807,0.995,0,4.502305,8,4.5 +33409,0,0.250399,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.009572,0.15,4 +22750,0,0.1005,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,6.664,6.765,0,2.411995,5,5 +13461,-1,0.312348,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,1.11,1.422,0,7.496359,6,4.5 +22722,1,0.312286,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,1.105,1.417,0,7.494857,6,4.5 +23030,0,0.41534,1,1,0,2,4,,3,1,Dickerson,St,4705398,2.746,3.161,0,9.968152,6,4.5 +30369,0,0.407209,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.773019,0.15,4 +30517,0,0.239123,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.738949,0.15,4 +30518,0,0.394024,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.456566,0.15,4 +30521,0,0.41136,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.872641,0.15,4 +31995,0,0.404622,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.710938,0.15,4 +33127,0,0.390927,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.382238,0.15,4 +13791,-1,0.151652,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,0.959,1.11,0,3.639643,6,4.5 +22339,0,0.259286,1,1,0,2,4,,3,1,Dickerson,St,4705398,3.176,3.435,0,6.222874,6,4.5 +22723,1,0.304774,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,0.801,1.105,0,7.314575,6,4.5 +13966,-1,0.153041,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,0.806,0.959,0,3.672987,6,4.5 +22754,0,0.014146,2,2,0,2,4,,3,1,Dickerson,St,4705398,3.161,3.176,0,0.339495,6,4.5 +22875,0,0.330711,1,1,0,2,4,,3,1,Dickerson,St,4705398,2.416,2.746,0,7.937054,6,4.5 +30375,0,0.308464,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.403144,0.15,4 +12455,0,0.207395,1,1,0,2,4,,3,1,Chalmers,St,1578102,3.215,3.422,0,4.977472,6,4.5 +14274,-1,0.15346,0,2,0,2,4,DV2,3,1,Outer,Dr,1588006,1.422,1.576,0,3.683041,6,4.5 +22721,1,0.153602,2,0,0,2,4,DV2,3,1,Outer,Dr,4704846,1.417,1.571,0,3.686455,6,4.5 +33122,0,0.063889,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.533332,0.15,4 +12795,0,0.01467,1,1,0,2,4,,3,1,Chalmers,St,1578102,3.2,3.215,0,0.35207,6,4.5 +12791,0,0.109782,1,1,0,2,4,,3,1,Chalmers,St,1578102,3.98,4.09,0,2.634774,6,4.5 +13787,0,0.245259,1,1,0,2,5,,3,1,Seymour,St,1588403,0.164,0.409,0,5.886206,8,4.5 +14242,0,0.251681,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,0.391,0.643,0,6.040355,6,4.5 +33125,0,0.370471,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.891308,0.15,4 +33145,0,0.504038,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.096923,0.15,4 +33388,0,0.064653,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.551662,0.15,4 +33389,0,0.225905,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.421728,0.15,4 +13997,0,0.197863,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,0.193,0.391,0,4.748714,6,4.5 +33548,0,0.387843,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.308222,0.15,4 +13965,0,0.163915,1,1,0,2,5,,3,1,Seymour,St,1588403,0,0.164,0,3.933968,8,4.5 +22816,0,0.277658,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,7.329,7.606,0,6.663795,5,5 +33393,0,0.118807,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.85136,0.15,4 +33407,0,0.289326,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.943819,0.15,4 +14345,-1,0.057134,0,1,0,2,5,,3,1,Greiner,St,1588404,1.553,1.61,0,1.371222,8,4.5 +23094,0,0.060356,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,7.268,7.329,0,1.448538,5,5 +14227,-1,0.059182,0,1,0,2,5,,3,1,Greiner,St,1588404,1.493,1.553,0,1.42038,8,4.5 +16237,0,0.059454,2,2,0,2,4,,3,1,Schoenherr,St,1602409,0,0.059,0,1.426894,6,4.5 +23592,0,0.089285,2,2,0,2,3,,3,1,McNichols,Rd,4705875,1.588,1.677,0,2.142839,5,5 +12452,0,0.331027,1,1,0,2,4,,3,1,Chalmers,St,1578102,3.65,3.98,0,7.944642,6,4.5 +14024,0,0.249861,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,0.643,0.892,0,5.996653,6,4.5 +14439,0,0.250788,1,1,0,2,5,,3,1,Seymour,St,1588403,0.409,0.66,0,6.018919,8,4.5 +33146,0,0.059981,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.439548,0.15,4 +3626,1,0.250151,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,4.997,5.247,0,6.003635,5,5 +4093,0,0.348088,1,1,0,2,5,,3,4,Toepfer,Rd,802903,0.673,1.021,0,8.354115,8,4.5 +4675,0,0.262223,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.02,0.283,0,6.293364,6,4.5 +4787,-1,0.281562,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,4.998,5.279,0,6.757497,5,5 +5358,0,0.349411,2,2,1,2,4,,3,4,9 Mile,Rd,803006,4.998,5.347,0,8.385876,6,4.5 +13872,0,0.251274,1,1,0,2,5,,3,1,State Fair,St,1588609,1.215,1.466,0,6.030575,8,4.5 +18057,0,0.124654,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,22.913,23.038,0,2.991695,5,5 +25204,0,0.248038,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.952919,0.15,4 +26494,0,0.261322,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.271726,0.15,4 +27484,0,0.224504,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.388084,0.15,4 +27491,0,0.3839,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.213607,0.15,4 +27492,0,0.381687,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.160478,0.15,4 +27493,0,0.243995,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.855887,0.15,4 +31202,0,0.188127,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.51504,0.15,4 +33410,0,0.263273,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.318561,0.15,4 +4094,-1,0.167528,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,4.498,4.665,0,4.020666,5,5 +4307,1,0.186821,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,4.498,4.685,0,4.483696,5,5 +14045,0,0.49869,1,1,0,2,5,,3,1,State Fair,St,1588609,0.716,1.215,0,11.968571,8,4.5 +16226,0,0.249331,2,2,0,2,4,,3,1,Schoenherr,St,1602409,1.063,1.312,0,5.983933,6,4.5 +18355,0,0.435263,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,22.478,22.913,0,10.446306,5,5 +31203,0,0.500074,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.001778,0.15,4 +33415,0,0.500014,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.000328,0.15,4 +33416,0,0.251168,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.028034,0.15,4 +33403,0,0.250208,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.004995,0.15,4 +33405,0,0.257743,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.185843,0.15,4 +33414,0,0.240335,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.768036,0.15,4 +33590,0,0.261062,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.26548,0.15,4 +16228,0,0.251003,2,2,0,2,4,,3,1,Schoenherr,St,1602409,0.812,1.063,0,6.024068,6,4.5 +16229,0,0.252244,2,2,0,2,4,,3,1,Schoenherr,St,1602409,0.56,0.812,0,6.053852,6,4.5 +3631,-1,0.33262,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,4.665,4.998,0,7.982889,5,5 +4006,1,0.312577,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,4.685,4.997,0,7.501844,5,5 +16205,0,0.239189,2,2,0,2,4,,3,1,Schoenherr,St,1602409,1.312,1.551,0,5.740526,6,4.5 +4839,0,0.010286,2,2,0,2,4,,3,1,Schoenherr,St,798810,0,0.01,0,0.246857,6,4.5 +4498,0,0.010009,2,2,0,2,4,,3,4,Schoenherr,St,798810,0.01,0.02,0,0.240225,6,4.5 +4076,0,0.246902,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.506,0.753,0,5.925648,6,4.5 +4703,0,0.041317,1,1,0,2,5,,3,4,Toepfer,Rd,802903,0.299,0.34,0,0.991601,8,4.5 +5311,0,0.579782,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,0.589,1.169,0,13.91477,5,5 +5360,0,0.280311,2,2,1,2,4,,3,4,9 Mile,Rd,803006,4.436,4.717,0,6.727475,6,4.5 +25205,0,0.322633,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.743184,0.15,4 +27495,0,0.267943,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.430627,0.15,4 +5312,0,0.192851,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,0.397,0.589,0,4.628415,5,5 +5030,0,0.19958,1,1,0,2,5,,3,4,Toepfer,Rd,802903,0.1,0.299,0,4.789911,8,4.5 +4360,0,0.217107,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.289,0.506,0,5.210559,6,4.5 +4377,0,0.332536,1,1,0,2,5,,3,4,Toepfer,Rd,802903,0.34,0.673,0,7.980855,8,4.5 +25223,0,0.366649,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.799582,0.15,4 +27483,0,0.267703,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.424878,0.15,4 +4352,0,0.006696,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.283,0.289,0,0.16071,6,4.5 +5073,0,0.217846,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.785,1.002,0,5.228299,6,4.5 +5359,0,0.281361,2,2,1,2,4,,3,4,9 Mile,Rd,803006,4.717,4.998,0,6.752666,6,4.5 +27494,0,0.223747,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.369939,0.15,4 +4063,0,0.031482,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,0.753,0.785,0,0.755558,6,4.5 +4184,-1,0.219983,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,5.342,5.562,0,5.279598,5,5 +4452,1,0.24367,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,5.373,5.616,0,5.848073,5,5 +13928,0,0.250999,1,1,0,2,5,,3,1,State Fair,St,1588609,1.466,1.717,0,6.023973,8,4.5 +19140,0,0.123586,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,23.293,23.417,0,2.966056,5,5 +22597,0,0.2117,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,8.464,8.676,0,5.080805,5,5 +23523,0,0.199589,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,7.894,8.094,0,4.790136,5,5 +33152,0,0.290068,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.961636,0.15,4 +33446,0,0.231789,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.56293,0.15,4 +33450,0,0.25642,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.154083,0.15,4 +17857,0,0.123118,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,23.038,23.161,0,2.954821,5,5 +33404,0,0.274794,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.595055,0.15,4 +17540,0,0.132231,1,1,0,2,3,,3,1,7 Mile,Rd,1700106,23.161,23.293,0,3.173537,5,5 +33445,0,0.23087,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.540882,0.15,4 +31305,0,0.27662,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.638888,0.15,4 +33449,0,0.247396,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.937515,0.15,4 +4781,1,0.125366,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,5.247,5.373,0,3.008783,5,5 +4459,-1,0.062757,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,5.279,5.342,0,1.506165,5,5 +14298,0,0.201547,1,1,0,2,5,,3,1,State Fair,St,1588609,1.859,2.06,0,4.837127,8,4.5 +18812,0,0.250319,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,23.417,23.667,0,6.007659,5,5 +23183,0,0.177266,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,8.094,8.271,0,4.254382,5,5 +33402,0,0.381378,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.15308,0.15,4 +33444,0,0.242312,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.815498,0.15,4 +13738,0,0.142242,1,1,0,2,5,,3,1,State Fair,St,1588609,1.717,1.859,0,3.413806,8,4.5 +22890,0,0.193223,3,3,0,2,3,,3,1,Gratiot,Ave,4705742,8.271,8.464,0,4.637357,5,5 +33148,0,0.13498,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.239531,0.15,4 +33151,0,0.2141,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.138392,0.15,4 +33153,0,0.18235,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.376409,0.15,4 +33589,0,0.231932,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.566368,0.15,4 +3630,0,0.216078,1,1,0,2,5,,3,4,Toepfer,Rd,802903,1.021,1.237,0,5.185871,8,4.5 +5356,0,0.346743,2,2,1,2,4,,3,4,9 Mile,Rd,803006,5.428,5.775,0,8.321835,6,4.5 +27489,0,0.250727,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.017444,0.15,4 +27490,0,0.311248,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.469958,0.15,4 +27488,0,0.247063,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.929502,0.15,4 +5357,0,0.081209,2,2,1,2,4,,3,4,9 Mile,Rd,803006,5.347,5.428,0,1.949026,6,4.5 +4786,0,0.215687,1,1,0,2,5,,3,4,Toepfer,Rd,802903,1.237,1.453,0,5.176483,8,4.5 +5336,0,0.239845,2,2,1,2,4,,3,4,9 Mile,Rd,803006,9.188,9.427,0,5.756284,6,4.5 +6266,0,0.392357,2,2,1,2,4,,3,4,Greater Mack,Ave,809106,0.198,0.59,0,9.416569,6,4.5 +12862,0,0.223026,1,1,1,2,4,,3,1,Chalmers,St,1578102,2.112,2.335,0,5.352629,6,4.5 +13457,1,0.398752,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,7.092,7.49,0,9.570042,5,5 +17832,0,0.49178,1,1,0,2,5,,3,2,Kerby,Rd,1637802,0.647,1.139,0,11.802716,8,4.5 +17856,0,0.632643,1,1,0,2,5,,3,2,Cook,Rd,1637610,0.563,1.195,0,15.183436,8,4.5 +18019,1,0.452908,2,0,0,2,4,DV2,3,1,Outer,Dr,1635202,1.581,2.034,0,10.869787,6,4.5 +18077,1,0.049198,1,0,0,2,4,DV2,3,1,Alter,Rd,1635003,3.15,3.199,0,1.180746,6,4.5 +18720,1,0.014845,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,1.457,1.471,0,0.356269,6,4.5 +18777,-1,0.714427,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,0.325,1.039,0,17.146256,5,5 +18813,1,0.638179,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,0.862,1.5,0,15.316306,5,5 +18951,0,0.539992,2,2,0,2,4,,3,2,Moross,Rd,1632608,0.802,1.341,0,12.959797,6,4.5 +19417,0,0.413769,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,1.472,1.886,0,9.930451,6,4.5 +19425,0,0.453392,1,1,0,2,5,,3,2,Grosse Pointe,Blvd,1715203,1.919,2.373,0,10.881412,8,4.5 +19427,0,0.525817,1,1,0,2,5,,3,2,Grosse Pointe,Blvd,1715203,1.037,1.562,0,12.619605,8,4.5 +19431,0,0.21256,1,1,0,2,5,,3,2,Fisher,Rd,1714801,0,0.213,0,5.101436,8,4.5 +21873,0,0.333012,1,1,1,2,3,,3,1,Warren,Ave,4700429,7.643,7.976,0,7.992295,5,5 +22227,-1,0.40735,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,0.203,0.61,0,9.776397,5,5 +22256,0,0.245491,2,2,0,2,4,,3,2,Vernier,Rd,4702103,1.625,1.871,0,5.891794,6,4.5 +22675,0,0.202271,1,1,0,2,4,,3,2,Kercheval,Ave,4705782,3.206,3.408,0,4.854497,6,4.5 +22804,0,0.369104,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,7.789,8.158,0,8.858504,5,5 +22996,-1,0.013996,0,1,0,2,4,DV2,3,1,Outer,Dr,4705402,0.049,0.063,0,0.335914,6,4.5 +23022,0,0.413349,2,2,0,2,4,,3,2,Kercheval,Ave,4705782,3.856,4.27,0,9.920373,6,4.5 +23066,-1,0.367934,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,0.508,0.876,0,8.830414,6,4.5 +23146,-1,0.221114,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,0.477,0.698,0,5.306734,6,4.5 +27496,0,0.260606,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.254539,0.15,4 +27505,0,0.352788,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.466901,0.15,4 +30755,0,0.622273,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.934543,0.15,4 +30756,0,0.700266,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.806393,0.15,4 +30758,0,0.372073,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.92976,0.15,4 +30935,0,0.196477,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.71544,0.15,4 +33291,0,0.627014,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.048331,0.15,4 +33453,0,0.626603,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.038476,0.15,4 +33459,0,0.382714,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.18514,0.15,4 +33462,0,0.612821,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.707704,0.15,4 +33467,0,0.697053,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,16.729261,0.15,4 +33472,0,0.231855,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.564518,0.15,4 +33479,0,0.181861,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.364673,0.15,4 +33482,0,0.169328,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.063867,0.15,4 +33490,0,0.298068,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.153626,0.15,4 +33493,0,0.440401,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.569628,0.15,4 +33496,0,0.364229,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.741484,0.15,4 +33532,0,0.434741,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.433784,0.15,4 +33536,0,0.369007,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.85618,0.15,4 +33567,0,0.60808,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.593918,0.15,4 +14352,0,0.331881,2,2,0,2,3,,3,1,Mack,Ave,1587509,6.015,6.347,0,7.965139,5,5 +18205,0,0.280218,1,1,0,2,5,,3,1,Alter,Rd,1635003,0.652,0.932,0,6.725236,8,4.5 +18309,0,0.70862,1,1,0,2,5,,3,1,Lakewood,St,1634903,0.059,0.767,0,17.006869,8,4.5 +18348,0,0.076864,1,1,0,2,5,,3,1,Conner,St,1634703,0.694,0.771,0,1.844731,8,4.5 +19435,0,0.057568,1,1,0,2,5,,3,1,Freud,St,1713403,1.627,1.685,0,1.381639,8,4.5 +22587,0,0.309489,1,1,0,2,5,,3,1,Dickerson,St,4706136,0.228,0.537,0,7.427729,8,4.5 +22588,1,0.315143,2,0,0,2,3,DV2,3,2,Jefferson,Ave,4705824,6.078,6.393,0,7.56344,5,5 +22739,-1,0.280609,0,2,0,2,3,DV2,3,2,Jefferson,Ave,4706128,0,0.281,0,6.73462,5,5 +23258,0,0.640758,1,1,0,2,5,,3,2,Vernor,Hwy,4705783,1.402,2.042,0,15.378197,8,4.5 +23429,0,0.153623,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,4.49,4.644,0,3.686947,5,5 +23432,0,0.641137,1,1,0,2,5,,3,2,Charlevoix,Ave,4705784,0.736,1.377,0,15.387288,8,4.5 +23519,0,0.209467,1,1,0,2,4,,3,2,Kercheval,St,4705782,1.347,1.557,0,5.0272,6,4.5 +33506,0,0.218533,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.244798,0.15,4 +33507,0,0.365818,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.77964,0.15,4 +33510,0,0.619594,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.870244,0.15,4 +33511,0,0.593893,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.253432,0.15,4 +33513,0,0.500689,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.016537,0.15,4 +19438,0,0.327254,1,1,0,2,5,,3,1,Freud,St,1713403,0.883,1.21,0,7.854091,8,4.5 +19439,0,0.339096,1,1,0,2,5,,3,1,Freud,St,1713403,0.544,0.883,0,8.138314,8,4.5 +19441,0,0.176606,1,1,0,2,5,,3,1,Freud,St,1713403,0.289,0.466,0,4.238542,8,4.5 +22953,0,0.208109,1,1,0,2,5,,3,1,Lycaste,St,4705775,0.291,0.499,0,4.994618,8,4.5 +30976,0,0.271304,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.511302,0.15,4 +22676,0,0.06149,1,1,0,2,5,,3,1,Lycaste,St,4705775,0.499,0.561,0,1.475751,8,4.5 +19440,0,0.078024,1,1,0,2,5,,3,1,Freud,St,1713403,0.466,0.544,0,1.87257,8,4.5 +23260,0,0.291409,1,1,0,2,5,,3,1,Lycaste,St,4705775,0,0.291,0,6.993819,8,4.5 +30727,0,0.314141,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.53938,0.15,4 +30975,0,0.012358,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.296584,0.15,4 +23332,0,0.1164,2,2,0,2,5,,3,1,Edlie,St,4705781,0.052,0.168,0,2.793607,8,4.5 +22585,0,0.350098,1,1,0,2,5,,3,1,Clairpointe,Ave,4706135,0.451,0.801,0,8.402358,8,4.5 +18314,0,0.302206,1,1,0,2,5,,3,1,Lenox,St,1634802,0.235,0.537,0,7.252951,8,4.5 +18343,0,0.235276,1,1,0,2,5,,3,1,Lenox,St,1634802,0,0.235,0,5.646612,8,4.5 +33503,0,0.241012,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.78429,0.15,4 +33504,0,0.271764,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.522345,0.15,4 +19436,0,0.314386,1,1,0,2,5,,3,1,Freud,St,1713403,1.313,1.627,0,7.545271,8,4.5 +22586,0,0.227774,1,1,0,2,5,,3,1,Dickerson,St,4706136,0,0.228,0,5.466564,8,4.5 +33509,0,0.246387,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.913294,0.15,4 +19437,0,0.103058,1,1,0,2,5,,3,1,Freud,St,1713403,1.21,1.313,0,2.473399,8,4.5 +33373,0,0.174826,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.195827,0.15,4 +18311,0,0.058701,1,1,0,2,5,,3,1,Lakewood,St,1634903,0,0.059,0,1.408814,8,4.5 +12879,0,0.274289,1,1,0,2,4,,3,1,Chalmers,St,1578102,0.762,1.036,0,6.582933,6,4.5 +14104,0,0.477114,2,2,1,2,3,,3,1,Mack,Ave,1587509,4.717,5.194,0,11.450744,5,5 +14187,0,0.274832,2,2,1,2,3,,3,1,Mack,Ave,1587509,5.194,5.468,0,6.595975,5,5 +18094,0,0.394421,1,1,0,2,4,,3,1,Alter,Rd,1635003,2.43,2.825,0,9.466094,6,4.5 +18118,0,0.209879,1,1,0,2,4,,3,1,Alter,Rd,1635003,1.859,2.069,0,5.037088,6,4.5 +21325,0,0.179166,1,1,1,2,3,,3,1,Warren,Ave,4700429,7.087,7.266,0,4.299995,5,5 +22302,0,0.291089,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,5.277,5.568,0,6.986143,5,5 +22746,0,0.280539,1,1,0,2,5,,3,1,Kercheval,St,4705782,0.301,0.581,0,6.732933,8,4.5 +23088,0,0.336545,1,1,0,2,5,,3,2,Charlevoix,Ave,4705784,1.377,1.714,0,8.077083,8,4.5 +23177,1,0.189836,3,0,0,2,4,,3,1,Charlevoix,St,4705784,2.009,2.199,0,4.556065,6,4.5 +23220,0,0.348731,1,1,0,2,4,,3,1,Dickerson,St,4705398,1.075,1.424,0,8.369551,6,4.5 +23518,1,0.470499,2,0,0,2,4,,3,1,Vernor,Hwy,4705783,0.3,0.771,0,11.291975,6,4.5 +33118,0,0.314352,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.54446,0.15,4 +33502,0,0.31676,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.602244,0.15,4 +33516,0,0.090318,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.167643,0.15,4 +33517,0,0.287128,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.891068,0.15,4 +33519,0,0.262215,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.29317,0.15,4 +33523,0,0.355912,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.541882,0.15,4 +33909,0,0.240717,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.777198,0.15,4 +13905,0,0.18713,3,3,1,2,3,,3,1,Conner,St,1588005,0.427,0.614,0,4.491127,5,5 +14444,0,0.284497,1,1,1,2,3,,3,1,Conner,St,1588005,0,0.284,0,6.827926,5,5 +22528,1,0.060788,2,0,0,2,4,,3,1,Vernor,Hwy,4705783,0.24,0.3,0,1.458907,6,4.5 +22811,1,0.239605,2,0,0,2,4,,3,1,Vernor,Hwy,4705783,0,0.24,0,5.750512,6,4.5 +22822,0,0.358593,1,1,0,2,5,,3,1,Dickerson,St,4705398,0.717,1.075,0,8.60624,8,4.5 +23023,0,0.300957,1,1,0,2,5,,3,1,Kercheval,St,4705782,0,0.301,0,7.222974,8,4.5 +23085,0,0.316723,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,4.644,4.96,0,7.601351,5,5 +23444,0,0.140555,1,1,0,2,5,,3,1,Dickerson,St,4705398,0.389,0.529,0,3.373326,8,4.5 +23599,1,0.239353,3,0,0,2,4,,3,1,Charlevoix,St,4705784,2.539,2.778,0,5.744473,6,4.5 +33500,0,0.332592,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.982199,0.15,4 +14097,0,0.142367,3,3,1,2,3,,3,1,Conner,St,1588005,0.284,0.427,0,3.416808,5,5 +14359,0,0.185368,2,2,1,2,3,,3,1,Mack,Ave,1587509,4.531,4.717,0,4.448823,5,5 +14467,0,0.436182,1,1,1,2,3,,3,1,Conner,St,1588005,0.614,1.05,0,10.468366,5,5 +14074,0,0.126348,2,2,1,2,3,,3,1,Mack,Ave,1587509,4.405,4.531,0,3.032345,5,5 +22731,0,0.205193,1,1,0,2,5,,3,1,Dickerson,St,4705398,0.183,0.389,0,4.924632,8,4.5 +22806,0,0.266812,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,4.96,5.227,0,6.403479,5,5 +22997,0,0.183451,1,1,0,2,5,,3,1,Dickerson,St,4705398,0,0.183,0,4.402819,8,4.5 +22670,0,0.050178,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,5.227,5.277,0,1.204274,5,5 +22884,1,0.279332,3,0,0,2,4,,3,1,Charlevoix,St,4705784,2.199,2.478,0,6.703956,6,4.5 +33505,0,0.30217,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.252077,0.15,4 +33521,0,0.059887,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.437286,0.15,4 +23101,0,0.187484,1,1,0,2,5,,3,1,Dickerson,St,4705398,0.529,0.717,0,4.499627,8,4.5 +22591,1,0.061091,3,0,0,2,4,,3,1,Charlevoix,St,4705784,2.478,2.539,0,1.466195,6,4.5 +12521,0,0.254408,1,1,0,2,4,,3,1,Chalmers,St,1578102,1.725,1.979,0,6.105801,6,4.5 +12871,0,0.393114,1,1,0,2,4,,3,1,Chalmers,St,1578102,1.332,1.725,0,9.43473,6,4.5 +18722,1,0.220639,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,1.236,1.457,0,5.295339,6,4.5 +21591,0,0.407237,1,1,1,2,3,,3,1,Warren,Ave,4700429,6.432,6.839,0,9.773684,5,5 +33130,0,0.427225,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.253396,0.15,4 +33161,0,0.388059,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.313409,0.15,4 +22926,0,0.255022,1,1,0,2,4,,3,1,Dickerson,St,4705398,1.424,1.679,0,6.120533,6,4.5 +33116,0,0.180384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.329222,0.15,4 +21755,0,0.058881,1,1,1,2,3,,3,1,Warren,Ave,4700429,6.373,6.432,0,1.413138,5,5 +23191,-1,0.190735,0,1,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,0.287,0.477,0,4.577645,6,4.5 +33358,0,0.087329,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.095905,0.15,4 +12863,0,0.118575,1,1,0,2,4,,3,1,Chalmers,St,1578102,1.979,2.098,0,2.845805,6,4.5 +18723,1,0.12326,1,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,1.113,1.236,0,2.958242,6,4.5 +33131,0,0.148191,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.556589,0.15,4 +33129,0,0.049457,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.186966,0.15,4 +12513,0,0.014304,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.098,2.112,0,0.343291,6,4.5 +12523,0,0.295471,1,1,0,2,4,,3,1,Chalmers,St,1578102,1.036,1.332,0,7.091303,6,4.5 +33528,0,0.103486,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.483659,0.15,4 +18080,0,0.325116,1,1,0,2,4,,3,1,Alter,Rd,1635003,2.825,3.15,0,7.802778,6,4.5 +21487,0,0.247865,1,1,1,2,3,,3,1,Warren,Ave,4700429,6.839,7.087,0,5.948768,5,5 +23313,-1,0.049396,0,1,0,2,4,DV2,3,1,Alter,Rd,4705402,0,0.049,0,1.185497,6,4.5 +12534,0,0.442064,1,1,0,2,4,,3,1,Chalmers,St,1578102,0,0.442,0,10.609536,6,4.5 +18120,0,0.138491,2,2,0,2,4,,3,1,Alter,Rd,1635003,1.543,1.681,0,3.323783,6,4.5 +18189,0,0.158728,1,1,0,2,4,,3,1,Alter,Rd,1635003,1.219,1.378,0,3.809484,6,4.5 +18308,0,0.2288,1,1,0,2,5,,3,1,Lakewood,St,1634903,0.767,0.996,0,5.491199,8,4.5 +22592,0,0.028809,1,1,0,2,5,,3,1,Vernor,Hwy,4705783,1.036,1.064,0,0.691426,8,4.5 +23090,0,0.267769,1,1,0,2,5,,3,1,Kercheval,St,4705782,0.769,1.037,0,6.426447,8,4.5 +23174,0,0.271193,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,5.755,6.026,0,6.508622,5,5 +33501,0,0.487765,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.70637,0.15,4 +33518,0,0.208998,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.01595,0.15,4 +33520,0,0.241846,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.804299,0.15,4 +23596,0,0.094858,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,5.568,5.663,0,2.276598,5,5 +23325,0,0.091357,2,2,1,2,3,,3,1,Jefferson,Ave,4705824,5.663,5.755,0,2.192576,5,5 +12529,0,0.181292,1,1,0,2,4,,3,1,Chalmers,St,1578102,0.581,0.762,0,4.351,6,4.5 +12888,0,0.139011,1,1,0,2,4,,3,1,Chalmers,St,1578102,0.442,0.581,0,3.336256,6,4.5 +22527,1,0.212358,3,0,0,2,4,,3,1,Charlevoix,St,4705784,1.744,1.956,0,5.096584,6,4.5 +22885,1,0.212285,2,0,0,2,4,,3,1,Vernor,Hwy,4705783,0.823,1.036,0,5.094829,6,4.5 +23434,0,0.187626,1,1,0,2,5,,3,1,Kercheval,St,4705782,0.581,0.769,0,4.503022,8,4.5 +23178,1,0.05262,2,0,0,2,4,,3,1,Vernor,Hwy,4705783,0.771,0.823,0,1.262879,6,4.5 +23517,1,0.053066,3,0,0,2,4,,3,1,Charlevoix,St,4705784,1.956,2.009,0,1.273584,6,4.5 +18119,0,0.177807,2,2,0,2,4,,3,1,Alter,Rd,1635003,1.681,1.859,0,4.267357,6,4.5 +22810,0,0.030093,1,1,0,2,5,,3,1,Charlevoix,St,4705784,1.714,1.744,0,0.722232,8,4.5 +18198,0,0.104353,1,1,0,2,4,,3,1,Alter,Rd,1635003,1.115,1.219,0,2.504469,6,4.5 +18199,0,0.183113,1,1,0,2,5,,3,1,Alter,Rd,1635003,0.932,1.115,0,4.394711,8,4.5 +22807,0,0.015805,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,6.062,6.078,0,0.379313,5,5 +22947,0,0.036531,2,2,0,2,3,,3,1,Jefferson,Ave,4705824,6.026,6.062,0,0.876737,5,5 +22529,0,0.27399,1,1,0,2,4,,3,2,Kercheval,St,4705782,1.073,1.347,0,6.575757,6,4.5 +23600,0,0.337494,1,1,0,2,5,,3,2,Vernor,Hwy,4705783,1.064,1.402,0,8.099859,8,4.5 +18181,0,0.16484,1,1,0,2,4,,3,1,Alter,Rd,1635003,1.378,1.543,0,3.956161,6,4.5 +22812,0,0.036732,1,1,0,2,4,,3,1,Kercheval,St,4705782,1.037,1.073,0,0.881575,6,4.5 +14124,0,0.125068,2,2,1,2,3,,3,1,Mack,Ave,1587509,5.66,5.785,0,3.00164,5,5 +33489,0,0.399077,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.577846,0.15,4 +33497,0,0.433995,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.415891,0.15,4 +33498,0,0.436081,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.46594,0.15,4 +18108,0,0.361791,1,1,0,2,4,,3,1,Alter,Rd,1635003,2.069,2.43,0,8.682976,6,4.5 +33167,0,0.186199,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.468765,0.15,4 +33487,0,0.40178,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.642729,0.15,4 +13973,0,0.192188,2,2,1,2,3,,3,1,Mack,Ave,1587509,5.468,5.66,0,4.612516,5,5 +21090,0,0.201514,1,1,1,2,3,,3,1,Warren,Ave,4700429,7.266,7.468,0,4.836343,5,5 +22031,0,0.174895,1,1,1,2,3,,3,1,Warren,Ave,4700429,7.468,7.643,0,4.197472,5,5 +13932,0,0.176058,2,2,1,2,3,,3,1,Mack,Ave,1587509,5.785,5.961,0,4.225389,5,5 +33908,0,0.243836,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.852058,0.15,4 +13683,0,0.053593,2,2,1,2,3,,3,1,Mack,Ave,1587509,5.961,6.015,0,1.286225,5,5 +33514,0,0.093313,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.239518,0.15,4 +18296,0,0.349852,1,1,0,2,5,,3,1,Alter,Rd,1635003,0,0.35,0,8.396445,8,4.5 +18265,0,0.301844,1,1,0,2,5,,3,1,Alter,Rd,1635003,0.35,0.652,0,7.244255,8,4.5 +17913,0,0.209798,1,1,0,2,5,,3,2,Saint Clair,Ave,1635305,0.9,1.11,0,5.03514,8,4.5 +17961,0,0.418154,1,1,0,2,5,,3,2,Saint Clair,Ave,1635305,0,0.418,0,10.035707,8,4.5 +19421,0,0.138894,1,1,0,2,4,,3,2,Cadieux,Rd,1715405,0.592,0.731,0,3.333458,6,4.5 +19423,0,0.308072,1,1,0,2,4,,3,2,Cadieux,Rd,1715405,0,0.308,0,7.393723,6,4.5 +22674,0,0.173696,1,1,0,2,5,,3,2,Waterloo,Ave,4705783,2.428,2.602,0,4.168713,8,4.5 +22886,0,0.31291,2,2,0,2,4,,3,2,Kercheval,St,4705782,2.116,2.429,0,7.509851,6,4.5 +23179,0,0.559784,2,2,0,2,4,,3,2,Kercheval,St,4705782,1.557,2.116,0,13.434814,6,4.5 +23326,0,0.395662,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,7.044,7.439,0,9.495881,5,5 +33457,0,0.338606,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.126535,0.15,4 +33476,0,0.287208,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.892987,0.15,4 +33531,0,0.273982,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.575564,0.15,4 +33912,0,0.246463,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.915124,0.15,4 +22740,-1,0.036389,0,2,0,2,3,DV2,3,2,Jefferson,Ave,4706128,0.281,0.317,0,0.873347,5,5 +23514,0,0.562255,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,6.481,7.044,0,13.494121,5,5 +33306,0,0.610134,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.643206,0.15,4 +33508,0,0.202327,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.855837,0.15,4 +33515,0,0.463342,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.120217,0.15,4 +22303,0,0.088431,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,6.393,6.481,0,2.122342,5,5 +33533,0,0.268613,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.446717,0.15,4 +14029,0,0.1898,2,2,0,2,3,,3,1,Mack,Ave,1587509,6.682,6.872,0,4.555201,5,5 +14346,0,0.195606,2,2,0,2,3,,3,1,Mack,Ave,1587509,6.486,6.682,0,4.694541,5,5 +18023,1,0.42457,2,0,0,2,4,DV2,3,1,Outer,Dr,1635202,1.157,1.581,0,10.189689,6,4.5 +19419,0,0.112956,1,1,0,2,4,,3,2,Cadieux,Rd,1715405,0.909,1.022,0,2.710932,6,4.5 +22744,0,0.385678,1,1,0,2,5,,3,2,Charlevoix,Ave,4705784,0.351,0.736,0,9.256272,8,4.5 +23106,-1,0.424023,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,0,0.424,0,10.176558,6,4.5 +33492,0,0.440915,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.581963,0.15,4 +33494,0,0.196712,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.721086,0.15,4 +33530,0,0.433139,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.395324,0.15,4 +33538,0,0.114471,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.747307,0.15,4 +13676,0,0.139616,2,2,0,2,3,,3,1,Mack,Ave,1587509,6.347,6.486,0,3.350791,5,5 +23105,-1,0.084135,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,0.424,0.508,0,2.019231,6,4.5 +32585,0,0.205766,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.938386,0.15,4 +33495,0,0.182273,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.374544,0.15,4 +33524,0,0.137592,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.302203,0.15,4 +33491,0,0.12365,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.967604,0.15,4 +22951,0,0.386175,1,1,0,2,5,,3,2,Vernor,Hwy,4705783,2.042,2.428,0,9.268209,8,4.5 +33539,0,0.079069,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.897648,0.15,4 +33911,0,0.226575,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.437801,0.15,4 +33910,0,0.279894,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.717456,0.15,4 +19420,0,0.178214,1,1,0,2,4,,3,2,Cadieux,Rd,1715405,0.731,0.909,0,4.277129,6,4.5 +19418,0,0.450486,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,1.022,1.472,0,10.811672,6,4.5 +13667,1,0.182098,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,6.886,7.068,0,4.370361,5,5 +22229,-1,0.177945,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,0,0.178,0,4.27069,5,5 +13863,0,0.014141,2,2,0,2,3,,3,1,Mack,Ave,1587509,6.872,6.886,0,0.339393,5,5 +14340,1,0.023852,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,7.068,7.092,0,0.572438,5,5 +22228,-1,0.024808,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,0.178,0.203,0,0.595397,5,5 +17763,0,0.004536,1,1,0,2,5,,3,2,Guilford,St,1639410,0,0.005,0,0.108858,8,4.5 +17758,0,0.005614,1,1,0,2,5,,3,1,Guilford,St,1639410,0.005,0.01,0,0.134741,8,4.5 +23427,0,0.17424,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,7.439,7.613,0,4.181768,5,5 +33458,0,0.101556,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,2.437352,0.15,4 +23084,0,0.175386,2,2,0,2,3,,3,2,Jefferson,Ave,4705824,7.613,7.789,0,4.209269,5,5 +17922,0,0.178365,1,1,0,2,5,,3,2,Saint Clair,Ave,1635305,0.722,0.9,0,4.280758,8,4.5 +19429,0,0.164825,1,1,0,2,5,,3,2,Fisher,Rd,1714801,0.389,0.554,0,3.955801,8,4.5 +23259,0,0.372206,1,1,0,2,4,,3,2,Kercheval,Ave,4705782,2.78,3.152,0,8.932953,6,4.5 +23665,0,0.403453,1,1,0,2,5,,3,2,Waterloo,Ave,4705783,2.602,3.005,0,9.682866,8,4.5 +33474,0,0.220352,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.28844,0.15,4 +33475,0,0.286582,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.877977,0.15,4 +33486,0,0.309748,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.433945,0.15,4 +33535,0,0.35703,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.56871,0.15,4 +17955,0,0.164723,1,1,0,2,5,,3,2,Saint Clair,Ave,1635305,0.418,0.583,0,3.953344,8,4.5 +22593,0,0.173853,1,1,0,2,4,,3,2,Kercheval,Ave,4705782,2.429,2.603,0,4.172462,6,4.5 +23601,0,0.1768,1,1,0,2,4,,3,2,Kercheval,Ave,4705782,2.603,2.78,0,4.24321,6,4.5 +19422,0,0.283889,1,1,0,2,4,,3,2,Cadieux,Rd,1715405,0.308,0.592,0,6.813347,6,4.5 +17923,0,0.138814,1,1,0,2,5,,3,2,Saint Clair,Ave,1635305,0.583,0.722,0,3.331526,8,4.5 +33534,0,0.063441,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,1.522583,0.15,4 +19430,0,0.176858,1,1,0,2,5,,3,2,Fisher,Rd,1714801,0.213,0.389,0,4.244604,8,4.5 +33473,0,0.384632,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.23118,0.15,4 +19428,1,0.138376,1,0,0,2,5,,3,2,Fisher,Rd,1714801,0.554,0.692,0,3.321013,8,4.5 +23021,0,0.054583,1,1,0,2,5,,3,2,Ridge,Rd,4705783,3.151,3.206,0,1.309982,8,4.5 +23330,0,0.145668,1,1,0,2,5,,3,2,Waterloo,Ave,4705783,3.005,3.151,0,3.496024,8,4.5 +18759,-1,0.138459,0,1,0,2,5,,3,2,McKinley,Ave,1632705,0,0.139,0,3.323022,8,4.5 +22952,0,0.054141,1,1,0,2,4,,3,2,Kercheval,Ave,4705782,3.152,3.206,0,1.299391,6,4.5 +3968,1,0.273495,4,0,0,2,3,DIV,3,2,8 Mile,Rd,802803,7.294,7.567,0,6.56389,5,5 +4308,0,0.473919,1,1,0,2,5,,3,4,Toepfer,Dr,802903,2.866,3.34,0,11.374046,8,4.5 +4628,-1,0.259457,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,7.309,7.568,0,6.226966,5,5 +5348,0,0.066034,2,2,1,2,4,,3,4,9 Mile,Rd,803006,7.533,7.599,0,1.584808,6,4.5 +10748,1,0.909775,3,0,0,1,1,,3,2,E I 94,,1576405,37.008,37.917,0,,0.58,7 +11294,1,0.360199,3,0,0,1,1,,3,1,E I 94,,1576405,35.625,35.985,0,,0.58,7 +12263,0,0.445225,2,2,0,2,4,,3,1,Morang,Dr,1578203,1.511,1.956,0,10.685393,6,4.5 +12273,1,0.145291,1,0,0,1,1,RON,3,1,Cadieux/E I 94,RAMP,1578202,0,0.145,0,,1.09,4 +12276,0,0.226313,2,2,1,2,5,,3,1,Harper,Ave,1578108,5.209,5.435,0,5.43151,8,4.5 +12596,0,0.344856,1,1,0,2,5,,3,1,Morang,Dr,1578203,0.08,0.425,0,8.276538,8,4.5 +13687,1,0.176924,1,0,0,1,1,ROF,3,1,W I 94/Cadieux,RAMP,1589209,0,0.177,0,,2.24,5 +13925,1,0.340029,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,9.473,9.812,0,8.160686,5,5 +14211,-1,0.620927,0,3,0,1,1,,3,2,W I 94,,1588802,36.691,37.311,0,,0.58,7 +14313,1,0.117922,1,0,0,1,1,ROF,3,2,W I 94/Allard,RAMP,1589303,0,0.118,0,,2.24,5 +14446,-1,0.313481,0,3,0,1,1,,3,1,W I 94,,1588802,35.671,35.985,0,,0.58,7 +16094,0,0.021082,2,2,0,2,4,,3,1,Kelly,Rd,1602605,1.231,1.252,0,0.505977,6,4.5 +16170,0,0.316514,2,2,0,2,4,,3,1,Hayes,St,1602506,1.802,2.118,0,7.596334,6,4.5 +18634,1,0.18759,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,2.701,2.889,0,4.50216,6,4.5 +18822,1,0.361504,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,3.534,3.896,0,8.676104,5,5 +18824,1,0.354445,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,2.869,3.224,0,8.506673,5,5 +19412,0,0.166403,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.515,2.681,0,3.993672,6,4.5 +20447,1,0.321084,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,0.288,0.609,0,7.70602,6,4.5 +20457,1,0.320462,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,1.697,2.018,0,7.691098,6,4.5 +21429,0,0.188414,1,1,1,2,3,,3,1,Warren,Ave,4700429,8.12,8.308,0,4.521944,5,5 +22215,-1,0.33961,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,2.579,2.919,0,8.150652,5,5 +22508,1,0.216732,3,0,0,2,5,,3,2,Harper,Ave,4705400,1.116,1.333,0,5.20157,8,4.5 +22758,-1,0.686331,0,3,0,2,5,,3,2,Harper,Ave,4705399,1.21,1.896,0,16.471936,8,4.5 +23114,-1,0.187436,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,1.943,2.13,0,4.498472,6,4.5 +23164,-1,0.035902,0,2,0,2,3,DV2,3,1,Moross,Rd,4705319,2.556,2.592,0,0.861646,5,5 +23204,-1,0.347149,0,2,0,2,3,DV2,3,1,Moross,Rd,4705319,1.528,1.875,0,8.331583,5,5 +23428,-1,0.223291,0,2,0,2,5,,3,1,W I 94 Service Drive,,4705828,0.781,1.004,0,5.358988,8,4.5 +24319,0,0.748112,2,2,0,2,5,,3,2,Beaconsfield,Rd,4711343,0.473,1.221,0,17.9547,8,4.5 +24485,0,0.341333,2,2,0,2,5,,3,2,Beaconsfield,Rd,4711343,0.132,0.473,0,8.192,8,4.5 +24887,0,0.330113,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.922721,0.15,4 +27026,0,0.245118,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.882825,0.15,4 +29723,0,0.339316,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.143589,0.15,4 +30383,0,0.401298,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.63116,0.15,4 +30752,0,0.425778,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.218676,0.15,4 +30761,0,0.295552,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.093245,0.15,4 +31477,0,0.201959,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.847008,0.15,4 +31994,0,0.144474,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.46737,0.15,4 +32008,0,0.370905,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.901712,0.15,4 +33460,0,0.496877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.925059,0.15,4 +33563,0,0.323502,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.764052,0.15,4 +33915,0,0.447265,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.734363,0.15,4 +11197,1,0.36108,3,0,0,1,1,,3,1,E I 94,,1576405,34.538,34.899,0,,0.58,7 +12266,0,0.365836,2,2,0,2,4,,3,1,Morang,Dr,1578203,1.081,1.447,0,8.78006,6,4.5 +12606,0,0.449721,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.864,4.314,0,10.793309,6,4.5 +13971,-1,0.698224,0,3,0,1,1,,3,1,W I 94,,1588802,34.51,35.208,0,,0.58,7 +14395,1,0.275133,2,0,0,2,5,,3,1,Hern,Ave,1588709,1.103,1.378,0,6.603186,8,4.5 +16192,0,0.091643,2,2,0,2,4,,3,1,Hayes,St,1602506,0.882,0.974,0,2.199423,6,4.5 +17737,0,0.421607,1,1,0,2,5,,3,1,Berkshire,St,1640409,0,0.422,0,10.118557,8,4.5 +17963,0,0.24909,1,1,0,2,4,,3,1,Whittier,St,1635202,3.353,3.602,0,5.978162,6,4.5 +17971,0,0.33759,1,1,0,2,4,,3,1,Whittier,St,1635202,3.015,3.353,0,8.102162,6,4.5 +18702,1,0.388272,2,0,0,2,4,DV2,3,1,Outer,Dr,1632805,1.471,1.86,0,9.318518,6,4.5 +19409,0,0.184601,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.772,2.956,0,4.430418,6,4.5 +23144,-1,0.32946,0,2,0,2,4,DV2,3,1,Outer,Dr,4704718,0.713,1.042,0,7.907041,6,4.5 +23507,-1,0.363722,0,2,0,2,3,DV2,3,1,Moross,Rd,4705319,2.193,2.556,0,8.729331,5,5 +30365,0,0.339914,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.157937,0.15,4 +30372,0,0.315532,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.572769,0.15,4 +31999,0,0.338336,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.120076,0.15,4 +32000,0,0.251577,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.037848,0.15,4 +40910,1,0.030098,2,0,0,2,4,,4,4,William P Rosso,Hwy,0,0,0,0,0.722363,4.5,4.5 +33147,0,0.266341,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.392189,0.15,4 +12286,0,0.118624,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.746,3.864,0,2.846967,6,4.5 +12374,1,0.310841,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.509,0.82,0,7.460183,6,4.5 +12446,1,0.033404,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.278,0.311,0,0.801689,6,4.5 +14378,-1,0.556644,0,3,0,1,1,,3,1,W I 94,,1588802,33.954,34.51,0,,0.58,7 +14429,1,0.220344,2,0,0,2,5,,3,1,Hern,Ave,1588709,0.476,0.697,0,5.288245,8,4.5 +16203,0,0.680095,2,2,0,2,4,,3,1,Hayes,St,1602506,0,0.68,0,16.322283,6,4.5 +17731,0,0.225583,1,1,0,2,5,,3,1,Berkshire,St,1640409,0.422,0.647,0,5.413994,8,4.5 +22514,-1,0.322998,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.564,0.887,0,7.751948,6,4.5 +22717,-1,0.014819,0,1,0,2,5,,3,1,W I 94 Service Drive,,4704859,0.22,0.235,0,0.355648,8,4.5 +23410,-1,0.052405,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.275,0.327,0,1.25771,6,4.5 +30376,0,0.216194,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.188667,0.15,4 +30377,0,0.097959,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.351013,0.15,4 +30378,0,0.084035,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.016837,0.15,4 +31998,0,0.530754,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.738104,0.15,4 +12616,0,0.014081,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.523,3.537,0,0.337952,6,4.5 +12728,1,0.198046,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.311,0.509,0,4.753099,6,4.5 +12800,0,0.357928,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.428,2.786,0,8.590269,6,4.5 +12801,0,0.013122,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.386,2.399,0,0.314935,6,4.5 +13747,1,0.156629,1,0,0,2,5,,3,1,Hern,St,1588709,0.32,0.476,0,3.759098,8,4.5 +13894,1,0.15056,1,0,0,1,1,RON,3,1,Chalmers/W I 94,RAMP,1589205,0,0.151,0,,1.09,4 +22798,-1,0.202805,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.362,0.564,0,4.867321,6,4.5 +24282,1,0.035962,1,0,0,2,4,,3,1,Chalmers/Hayes Cutoff,,4710944,0,0.036,0,0.863099,6,4.5 +12293,0,0.151084,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.372,3.523,0,3.626011,6,4.5 +12459,0,0.028509,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.399,2.428,0,0.684225,6,4.5 +12291,0,0.19441,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.537,3.732,0,4.665849,6,4.5 +12511,0,0.051224,1,1,0,2,4,,3,1,Chalmers,St,1578102,2.335,2.386,0,1.229382,6,4.5 +22718,-1,0.220175,0,1,0,2,5,,3,1,W I 94 Service Drive,,4704859,0,0.22,0,5.284189,8,4.5 +23075,-1,0.034445,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.327,0.362,0,0.826686,6,4.5 +12610,0,0.013964,2,2,1,2,4,,3,1,Harper,Ave,1578108,3.732,3.746,0,0.335144,6,4.5 +12726,1,0.219649,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.82,1.04,0,5.271585,6,4.5 +23506,-1,0.186279,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.887,1.073,0,4.47069,6,4.5 +16197,0,0.187288,2,2,0,2,4,,3,1,Hayes,St,1602506,0.695,0.882,0,4.49492,6,4.5 +16198,0,0.014918,2,2,0,2,4,,3,1,Hayes,St,1602506,0.68,0.695,0,0.358024,6,4.5 +17726,-1,0.023001,0,2,0,2,5,,3,1,Berkshire,St,1640409,0.647,0.67,0,0.552033,8,4.5 +13721,1,0.372793,2,0,0,2,5,,3,1,Hern,Ave,1588709,0.73,1.103,0,8.947024,8,4.5 +14412,1,0.174432,1,0,0,1,1,ROF,3,1,W I 94/Outer Drive,RAMP,1589206,0,0.174,0,,2.24,5 +12370,1,0.141556,1,0,0,1,1,RON,3,1,Outer/E I 94,RAMP,1578105,0,0.142,0,,1.09,4 +12448,1,0.209672,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.014,0.224,0,5.032125,6,4.5 +22730,-1,0.211335,0,2,0,2,4,DV2,3,1,Outer,Dr,4705402,0.063,0.275,0,5.072031,6,4.5 +12788,1,0.054068,2,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0.224,0.278,0,1.297643,6,4.5 +14166,1,0.014798,2,0,0,2,5,,3,1,Hern,Ave,1588709,0.697,0.711,0,0.355149,8,4.5 +13960,1,0.018492,2,0,0,2,5,,3,1,Hern,Ave,1588709,0.711,0.73,0,0.4438,8,4.5 +23145,-1,0.014462,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,0.698,0.713,0,0.347095,6,4.5 +12789,1,0.014027,1,0,0,2,4,DV2,3,1,Outer,Dr,1578104,0,0.014,0,0.336648,6,4.5 +30379,0,0.169438,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.066501,0.15,4 +30370,0,0.223178,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.356282,0.15,4 +30368,0,0.204172,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.900129,0.15,4 +13867,0,0.208347,2,2,0,2,5,,3,1,Seymour,St,1588403,1.035,1.244,0,5.000318,8,4.5 +16133,0,0.120104,2,2,0,2,4,,3,1,Kelly,Rd,1602605,0.519,0.639,0,2.882506,6,4.5 +16136,0,0.128441,2,2,0,2,4,,3,1,Kelly,Rd,1602605,0.391,0.519,0,3.082577,6,4.5 +16174,0,0.442319,2,2,0,2,4,,3,1,Hayes,St,1602506,1.107,1.549,0,10.615653,6,4.5 +17962,0,0.34359,1,1,0,2,4,,3,1,Whittier,St,1635202,3.602,3.946,0,8.246158,6,4.5 +30367,0,0.141572,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.397732,0.15,4 +33840,0,0.437599,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.502385,0.15,4 +14035,0,0.08086,1,1,0,2,4,,3,1,Houston Whittier,Ave,1588208,1.143,1.224,0,1.940634,6,4.5 +16138,0,0.23467,2,2,0,2,4,,3,1,Kelly,Rd,1602605,0.156,0.391,0,5.632087,6,4.5 +16143,0,0.156262,1,1,0,2,4,,3,1,Kelly,Rd,1602605,0,0.156,0,3.750289,6,4.5 +16185,0,0.133556,2,2,0,2,4,,3,1,Hayes,St,1602506,0.974,1.107,0,3.205339,6,4.5 +14038,0,0.124732,2,2,0,2,5,,3,1,Seymour,St,1588403,0.911,1.035,0,2.99356,8,4.5 +16172,0,0.252476,2,2,0,2,4,,3,1,Hayes,St,1602506,1.549,1.802,0,6.059418,6,4.5 +30771,0,0.236275,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.670594,0.15,4 +30366,0,0.224932,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.398369,0.15,4 +30373,0,0.336516,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.076383,0.15,4 +30374,0,0.315426,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.570222,0.15,4 +16124,0,0.243392,2,2,0,2,4,,3,1,Kelly,Rd,1602605,0.81,1.053,0,5.841414,6,4.5 +16128,0,0.170816,2,2,0,2,4,,3,1,Kelly,Rd,1602605,0.639,0.81,0,4.099573,6,4.5 +12593,0,0.064035,2,2,0,2,4,,3,1,Morang,Dr,1578203,1.447,1.511,0,1.536842,6,4.5 +16101,0,0.177501,2,2,0,2,4,,3,1,Kelly,Rd,1602605,1.053,1.231,0,4.260015,6,4.5 +11539,1,0.726321,3,0,0,1,1,,3,1,E I 94,,1576405,34.899,35.625,0,,0.58,7 +12605,0,0.336549,2,2,1,2,4,,3,1,Harper,Ave,1578108,4.468,4.805,0,8.077165,6,4.5 +13795,-1,0.463116,0,3,0,1,1,,3,1,W I 94,,1588802,35.208,35.671,0,,0.58,7 +17990,0,0.217283,1,1,0,2,4,,3,1,Whittier,St,1635202,2.798,3.015,0,5.214781,6,4.5 +18006,0,0.118048,1,1,0,2,4,,3,1,Whittier,St,1635202,2.422,2.54,0,2.833151,6,4.5 +18678,1,0.63966,2,0,0,2,4,DV2,3,1,Outer,Dr,1632805,1.86,2.499,0,15.351831,6,4.5 +22524,1,0.154594,1,0,0,1,1,RON,3,1,Whittier/W I 94,RAMP,4705827,0,0.155,0,,1.09,4 +23119,-1,0.705881,0,2,0,2,4,DV2,3,1,Outer,Dr,4704718,1.042,1.748,0,16.941155,6,4.5 +32004,0,0.192906,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.629751,0.15,4 +33551,0,0.206867,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.96481,0.15,4 +12278,0,0.154496,2,2,0,2,4,,3,1,Harper,Ave,1578108,4.314,4.468,0,3.707903,6,4.5 +12719,1,0.144771,1,0,0,1,1,ROF,3,1,E I 94/Harper,RAMP,1578107,0,0.145,0,,2.24,5 +30669,0,0.103166,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.47599,0.15,4 +33488,0,0.07437,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.784879,0.15,4 +13649,1,0.05273,2,0,0,2,5,,3,1,Hern,Ave,1588709,1.378,1.43,0,1.265515,8,4.5 +18017,1,0.191791,2,0,0,2,4,DV2,3,1,Outer,Dr,1635202,2.034,2.226,0,4.602978,6,4.5 +23064,-1,0.191288,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,0.876,1.067,0,4.590913,6,4.5 +21697,0,0.130448,1,1,1,2,3,,3,1,Warren,Ave,4700429,7.976,8.106,0,3.130742,5,5 +21592,0,0.013942,1,1,1,2,3,,3,1,Warren,Ave,4700429,8.106,8.12,0,0.334611,5,5 +18014,1,0.180409,2,0,0,2,4,DV2,3,1,Outer,Dr,1635202,2.226,2.406,0,4.329807,6,4.5 +18637,1,0.121525,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,2.579,2.701,0,2.916606,6,4.5 +23062,-1,0.180871,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,1.067,1.248,0,4.340894,6,4.5 +23116,-1,0.121724,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,1.821,1.943,0,2.921367,6,4.5 +32587,0,0.072139,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.731342,0.15,4 +33550,0,0.221933,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.326387,0.15,4 +33552,0,0.058101,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,1.394435,0.15,4 +33553,0,0.233548,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.605147,0.15,4 +18643,1,0.066404,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,2.513,2.579,0,1.593687,6,4.5 +23118,-1,0.073007,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,1.748,1.821,0,1.752173,6,4.5 +18654,1,0.014018,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,2.499,2.513,0,0.336429,6,4.5 +23061,-1,0.016603,0,2,0,2,4,DV2,3,1,Outer,Dr,4704720,1.248,1.265,0,0.398464,6,4.5 +18009,1,0.016045,2,0,0,2,4,DV2,3,1,Outer,Dr,1635202,2.406,2.422,0,0.385078,6,4.5 +40911,-1,0.028008,0,1,0,2,4,,4,4,William P Rosso,Hwy,0,0,0,0,0.672196,4.5,4.5 +12603,0,0.321034,2,2,1,2,4,,3,1,Harper,Ave,1578108,4.888,5.209,0,7.704808,6,4.5 +23594,-1,0.301163,0,2,0,2,5,,3,1,W I 94 Service Drive,,4705828,0.329,0.63,0,7.227922,8,4.5 +30762,0,0.128697,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.088732,0.15,4 +32003,0,0.117613,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.822701,0.15,4 +12277,0,0.083553,2,2,1,2,4,,3,1,Harper,Ave,1578108,4.805,4.888,0,2.005262,6,4.5 +18002,0,0.174944,1,1,0,2,4,,3,1,Whittier,St,1635202,2.54,2.715,0,4.19866,6,4.5 +18001,0,0.082934,1,1,0,2,4,,3,1,Whittier,St,1635202,2.715,2.798,0,1.990418,6,4.5 +12600,1,0.215063,1,0,0,1,1,ROF,3,1,E I 94/Cadieux,RAMP,1578110,0,0.215,0,,2.24,5 +14168,1,0.14206,1,0,0,1,1,RON,3,1,Cadieux/W I 94,RAMP,1589208,0,0.142,0,,1.09,4 +23595,-1,0.151081,0,2,0,2,5,,3,1,W I 94 Service Drive,,4705828,0.63,0.781,0,3.625949,8,4.5 +19410,0,0.056342,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.716,2.772,0,1.352197,6,4.5 +19411,0,0.034504,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.681,2.716,0,0.828093,6,4.5 +12595,0,0.615481,2,2,0,2,4,,3,1,Morang,Dr,1578203,0.466,1.081,0,14.771543,6,4.5 +18823,1,0.310766,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,3.224,3.534,0,7.458377,5,5 +22912,-1,0.317707,0,2,0,2,3,DV2,3,1,Moross,Rd,4705319,1.875,2.193,0,7.624969,5,5 +31543,0,0.171377,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.113049,0.15,4 +32011,0,0.147583,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.541991,0.15,4 +32012,0,0.277481,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.659538,0.15,4 +12268,0,0.041003,1,1,0,2,5,,3,1,Morang,Dr,1578203,0.425,0.466,0,0.984063,8,4.5 +19408,0,0.169163,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.956,3.126,0,4.05991,6,4.5 +31997,0,0.249613,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.990701,0.15,4 +33560,0,0.278026,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.672635,0.15,4 +24303,0,0.106211,2,2,0,2,5,,3,1,Beaconsfield,Rd,4711343,0.026,0.132,0,2.549065,8,4.5 +24461,-1,0.025904,0,2,0,2,5,,3,1,W Moross/E Moross,TURN,4711343,0,0.026,0,0.621687,8,4.5 +3908,1,0.250304,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,6.503,6.754,0,6.007285,5,5 +4257,-1,0.365696,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,6.484,6.849,0,8.776701,5,5 +4913,0,0.374355,1,1,0,2,5,,3,4,Toepfer,Dr,802903,2.169,2.543,0,8.98451,8,4.5 +5351,0,0.399401,2,2,1,2,4,,3,4,9 Mile,Rd,803006,6.45,6.849,0,9.585618,6,4.5 +6621,1,0.279558,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,0.024,0.304,0,6.709399,5,5 +13698,0,0.49952,1,1,0,2,5,,3,1,State Fair,St,1588609,2.469,2.968,0,11.988487,8,4.5 +16091,-1,0.343808,0,2,0,2,4,DV2,3,1,Kelly,Rd,1602605,1.329,1.673,0,8.251384,6,4.5 +20317,-1,0.315504,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,0,0.316,0,7.572085,5,5 +20452,1,0.262591,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,0.025,0.288,0,6.302181,6,4.5 +20456,1,0.279061,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,2.018,2.297,0,6.697476,6,4.5 +22708,0,0.01112,1,1,0,2,5,,3,1,7 Mile,Rd,4705321,0.16,0.171,0,0.266878,8,4.5 +23321,1,0.078265,4,0,0,2,4,DV2,3,1,Kelly,Rd,4705320,0,0.078,0,1.878354,6,4.5 +24889,0,0.413639,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.927326,0.15,4 +24891,0,0.403576,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.685822,0.15,4 +24896,0,0.414909,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.957825,0.15,4 +25628,0,0.253134,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.075211,0.15,4 +27501,0,0.227989,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.471738,0.15,4 +27502,0,0.396189,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.508538,0.15,4 +4205,1,0.25058,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,6.253,6.503,0,6.013916,5,5 +4560,-1,0.224715,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,6.259,6.484,0,5.393162,5,5 +13887,0,0.249086,1,1,0,2,5,,3,1,State Fair,St,1588609,2.22,2.469,0,5.978056,8,4.5 +16146,0,0.497891,2,2,0,2,4,,3,1,Hayes,St,1602506,2.619,3.117,0,11.949381,6,4.5 +17727,0,0.319956,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,24.094,24.414,0,7.678937,5,5 +33557,0,0.554137,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.299281,0.15,4 +16148,0,0.308743,2,2,0,2,4,,3,1,Hayes,St,1602506,2.118,2.427,0,7.409827,6,4.5 +18245,0,0.122962,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,23.918,24.041,0,2.951094,5,5 +16147,0,0.192166,2,2,0,2,4,,3,1,Hayes,St,1602506,2.427,2.619,0,4.611975,6,4.5 +18058,0,0.053099,2,2,1,2,3,,3,1,7 Mile,Rd,1700106,24.041,24.094,0,1.274385,5,5 +4494,1,0.254679,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,5.998,6.253,0,6.112291,5,5 +4914,-1,0.342356,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,5.917,6.259,0,8.216541,5,5 +30751,0,0.47712,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.450885,0.15,4 +33149,0,0.456377,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.953044,0.15,4 +3890,1,0.094427,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,5.904,5.998,0,2.266253,5,5 +6644,0,0.013024,3,3,1,2,3,,3,1,Gratiot,Ave,804806,0,0.013,0,0.312572,5,5 +6629,0,0.011317,3,3,1,2,3,,3,4,Gratiot,Ave,804806,0.013,0.024,0,0.271614,5,5 +33559,0,0.041417,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,0.994005,0.15,4 +18820,0,0.098767,2,2,1,2,3,,3,1,Moross,Rd,1632608,3.933,4.032,0,2.370401,5,5 +23104,0,0.160005,1,1,0,2,5,,3,1,7 Mile,Rd,4705321,0,0.16,0,3.840125,8,4.5 +18819,0,0.022031,2,2,1,2,3,,3,1,Moross,Rd,1632608,4.032,4.054,0,0.528744,5,5 +16093,-1,0.077272,0,4,0,2,4,DV2,3,1,Kelly,Rd,1602605,1.252,1.329,0,1.854537,6,4.5 +18821,1,0.037814,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,3.896,3.933,0,0.907527,5,5 +3892,0,0.302553,1,1,0,2,5,,3,4,Toepfer,Dr,802903,1.866,2.169,0,7.261276,8,4.5 +5353,0,0.292196,2,2,1,2,4,,3,4,9 Mile,Rd,803006,6.135,6.427,0,7.012716,6,4.5 +6601,1,0.190415,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,0.717,0.907,0,4.569951,5,5 +20313,-1,0.170409,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,0.711,0.881,0,4.089818,5,5 +20314,-1,0.160256,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,0.551,0.711,0,3.846154,5,5 +24888,0,0.380533,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.132787,0.15,4 +27024,0,0.385426,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.250226,0.15,4 +27466,0,0.252268,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.05444,0.15,4 +6618,1,0.283383,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,0.304,0.587,0,6.801191,5,5 +20315,-1,0.235194,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,0.316,0.551,0,5.644658,5,5 +25310,0,0.259129,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.219088,0.15,4 +6609,1,0.129636,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,0.587,0.717,0,3.111274,5,5 +4183,0,0.023513,1,1,0,2,5,,3,4,Toepfer,Dr,802903,1.843,1.866,0,0.564324,8,4.5 +5354,0,0.136381,2,2,1,2,4,,3,4,9 Mile,Rd,803006,5.999,6.135,0,3.273145,6,4.5 +27500,0,0.247735,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.945634,0.15,4 +6566,1,0.238024,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,0.907,1.145,0,5.712569,5,5 +20312,-1,0.227877,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,0.881,1.109,0,5.469054,5,5 +5352,0,0.022438,2,2,1,2,4,,3,4,9 Mile,Rd,803006,6.427,6.45,0,0.538505,6,4.5 +3951,-1,0.433544,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,6.849,7.283,0,10.405066,5,5 +4574,1,0.386268,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,6.88,7.266,0,9.270435,5,5 +16077,-1,0.349014,0,2,0,2,4,DV2,3,1,Kelly,Rd,1602605,1.902,2.251,0,8.376324,6,4.5 +16085,-1,0.229213,0,2,0,2,4,DV2,3,1,Kelly,Rd,1602605,1.673,1.902,0,5.501104,6,4.5 +22541,1,0.363068,2,0,0,2,4,DV2,3,1,Kelly,Rd,4705320,0.653,1.016,0,8.71362,6,4.5 +22825,1,0.201616,2,0,0,2,4,DV2,3,1,Kelly,Rd,4705320,0.451,0.653,0,4.838784,6,4.5 +32009,0,0.331807,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.963356,0.15,4 +32013,0,0.345361,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.288666,0.15,4 +23003,1,0.372748,2,0,0,2,4,DV2,3,1,Kelly,Rd,4705320,0.078,0.451,0,8.945957,6,4.5 +13680,0,0.217062,1,1,0,2,5,,3,1,State Fair,St,1588609,2.968,3.185,0,5.209479,8,4.5 +30381,0,0.391856,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.404546,0.15,4 +33558,0,0.418522,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,10.044529,0.15,4 +30382,0,0.109959,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.639017,0.15,4 +4931,1,0.126657,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,6.754,6.88,0,3.039773,5,5 +14349,0,0.012091,1,1,0,2,5,,3,1,State Fair,St,1588609,3.185,3.197,0,0.29019,8,4.5 +32010,0,0.331238,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,7.949722,0.15,4 +16070,-1,0.231506,0,2,0,2,4,DV2,3,1,Kelly,Rd,1602605,2.251,2.482,0,5.556141,6,4.5 +23446,1,0.22846,2,0,0,2,4,DV2,3,1,Kelly,Rd,4705320,1.016,1.244,0,5.483045,6,4.5 +4269,1,0.027708,4,0,0,2,3,DIV,3,1,8 Mile,Rd,802803,7.266,7.294,0,0.664999,5,5 +4973,-1,0.025674,0,4,0,2,3,DIV,3,4,8 Mile,Rd,802804,7.283,7.309,0,0.616171,5,5 +24159,1,0.012946,2,0,0,2,4,DV2,3,4,Kelly,Rd,4718271,0,0.013,0,0.310716,6,4.5 +24048,1,0.012295,2,0,0,2,4,DV2,3,1,Kelly,Rd,4718271,0.013,0.025,0,0.295088,6,4.5 +20454,1,0.012845,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,0.012,0.025,0,0.308272,6,4.5 +20455,1,0.012217,2,0,0,2,4,DV2,3,1,Kelly,Rd,4208040,0,0.012,0,0.293204,6,4.5 +4559,0,0.323473,1,1,0,2,5,,3,4,Toepfer,Dr,802903,2.543,2.866,0,7.763362,8,4.5 +5349,0,0.519261,2,2,1,2,4,,3,4,9 Mile,Rd,803006,7.014,7.533,0,12.462267,6,4.5 +24894,0,0.264891,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.357383,0.15,4 +27499,0,0.45223,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.853513,0.15,4 +5350,0,0.164595,2,2,1,2,4,,3,4,9 Mile,Rd,803006,6.849,7.014,0,3.950288,6,4.5 +24893,0,0.289635,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.951249,0.15,4 +24885,0,0.282418,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.77804,0.15,4 +24890,0,0.22337,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.360891,0.15,4 +27023,0,0.292312,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.015486,0.15,4 +13770,1,0.184664,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.534,8.719,0,4.43194,5,5 +18609,0,0.248198,2,2,0,2,4,,3,1,Chandler Park,Dr,1632805,3.715,3.964,0,5.956762,6,4.5 +18612,1,0.239602,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,3.476,3.715,0,5.750451,6,4.5 +18877,1,0.183766,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.762,1.945,0,4.410388,5,5 +18886,1,0.181549,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.494,1.676,0,4.357165,5,5 +21816,0,0.387426,1,1,1,2,3,,3,1,Warren,Ave,4700429,9.084,9.471,0,9.298219,5,5 +22220,-1,0.085092,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,1.645,1.731,0,2.042209,5,5 +23109,-1,0.185551,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,2.772,2.957,0,4.453225,6,4.5 +23346,-1,0.269288,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.334,0.604,0,6.462916,5,5 +23459,-1,0.155052,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.156,0.311,0,3.721237,5,5 +30668,0,0.320186,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.684457,0.15,4 +30760,0,0.211131,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,5.067137,0.15,4 +30763,0,0.530837,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.740082,0.15,4 +33483,0,0.597085,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.330037,0.15,4 +33484,0,0.612292,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,14.695016,0.15,4 +33549,0,0.302106,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,7.250533,0.15,4 +18633,1,0.484895,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,2.889,3.373,0,11.637475,6,4.5 +19415,0,0.242802,1,1,0,2,4,,3,1,Cadieux,Rd,1715405,2.015,2.258,0,5.827257,6,4.5 +22138,0,0.213495,1,1,1,2,3,,3,1,Warren,Ave,4700429,8.495,8.708,0,5.123879,5,5 +23113,-1,0.5369,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,2.13,2.667,0,12.885604,6,4.5 +33565,0,0.57285,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.748408,0.15,4 +33566,0,0.202044,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.849062,0.15,4 +21326,0,0.186516,1,1,1,2,3,,3,1,Warren,Ave,4700429,8.308,8.495,0,4.476393,5,5 +19416,0,0.129253,1,1,0,2,4,,3,1,Cadieux,Rd,1715405,1.886,2.015,0,3.102061,6,4.5 +19413,0,0.243002,2,2,0,2,4,,3,1,Cadieux,Rd,1715405,2.272,2.515,0,5.832054,6,4.5 +19414,0,0.014004,1,1,0,2,4,,3,1,Cadieux,Rd,1715405,2.258,2.272,0,0.336092,6,4.5 +22032,0,0.375537,1,1,1,2,3,,3,1,Warren,Ave,4700429,8.708,9.084,0,9.01289,5,5 +30759,0,0.386607,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.278559,0.15,4 +18629,1,0.102706,2,0,0,2,4,DV2,3,1,Chandler Park,Dr,1632805,3.373,3.476,0,2.464953,6,4.5 +23111,-1,0.105316,0,2,0,2,4,DV2,3,1,Chandler Park,Dr,4704718,2.667,2.772,0,2.527596,6,4.5 +31513,0,0.200871,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.820905,0.15,4 +33564,0,0.171922,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.126129,0.15,4 +11075,1,0.092917,3,0,0,1,1,,3,2,E I 94,,1576405,36.639,36.732,0,,0.58,7 +11253,1,0.32407,3,0,0,1,1,,3,1,E I 94,,1576405,36.315,36.639,0,,0.58,7 +14059,-1,0.097118,0,3,0,1,1,,3,2,W I 94,,1588802,36.594,36.691,0,,0.58,7 +14366,1,0.096994,1,0,0,1,1,ROF,3,2,W I 94/Moross,RAMP,1589302,0,0.097,0,,2.24,5 +15212,1,0.094926,1,0,0,1,1,RON,3,2,Moross/E I 94,RAMP,1592009,0.077,0.172,0,,1.09,4 +15225,1,0.076643,1,0,0,1,1,RON,3,1,Moross/E I 94,RAMP,1592009,0,0.077,0,,1.09,4 +18861,1,0.243956,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,2.5,2.744,0,5.854945,5,5 +18871,1,0.310151,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,2.137,2.447,0,7.443614,5,5 +22609,-1,0.368612,0,2,0,2,3,DV2,3,1,Moross,Rd,4705319,1.16,1.528,0,8.846684,5,5 +22643,0,0.23783,1,1,0,2,5,,3,1,Chester,St,4705401,0.287,0.525,0,5.707913,8,4.5 +22821,-1,0.542329,0,2,0,2,5,,3,2,Harper,Ave,4705399,0.614,1.156,0,13.015905,8,4.5 +23069,1,0.52422,2,0,0,2,5,,3,2,Harper,Ave,4705400,0.563,1.087,0,12.581271,8,4.5 +23404,1,0.074991,2,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0.488,0.563,0,1.799784,8,4.5 +23615,-1,0.292393,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.814,1.106,0,7.017434,5,5 +31993,0,0.362749,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.70597,0.15,4 +32106,0,0.417316,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.015577,0.15,4 +33547,0,0.169543,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.069036,0.15,4 +11071,1,0.329484,3,0,0,1,1,,3,1,E I 94,,1576405,35.985,36.315,0,,0.58,7 +12591,1,0.168528,1,0,0,1,1,ROF,3,1,E I 94/Moross,RAMP,1578205,0,0.169,0,,2.24,5 +14221,-1,0.282993,0,3,0,1,1,,3,1,W I 94,,1588802,35.985,36.267,0,,0.58,7 +14297,-1,0.326052,0,3,0,1,1,,3,1,W I 94,,1588802,36.267,36.594,0,,0.58,7 +14357,1,0.166239,1,0,0,1,1,RON,3,1,Moross/W I 94,RAMP,1589210,0,0.166,0,,1.09,4 +17794,1,0.044502,1,0,0,2,5,,3,1,Hereford,St,1638603,1.482,1.526,0,1.068046,8,4.5 +22685,-1,0.348087,0,2,0,2,5,,3,1,Harper,Ave,4705399,0.102,0.45,0,8.354088,8,4.5 +22788,1,0.323208,2,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0.086,0.409,0,7.756981,8,4.5 +22968,1,0.101573,1,0,0,2,5,,3,1,Chester,St,4705401,0,0.102,0,2.437762,8,4.5 +12270,0,0.071957,1,1,0,2,5,,3,1,Morang,Dr,1578203,0.008,0.08,0,1.726959,8,4.5 +12598,0,0.007951,1,1,0,2,5,,3,1,Morang,Dr,1578203,0,0.008,0,0.190824,8,4.5 +12602,1,0.03128,2,0,0,2,5,,3,1,Harper,Ave,1578108,5.435,5.467,0,0.750718,8,4.5 +22516,1,0.085504,2,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0,0.086,0,2.052087,8,4.5 +22867,-1,0.071251,0,2,0,2,5,,3,1,Harper,Ave,4705399,0.031,0.102,0,1.710027,8,4.5 +23155,-1,0.030553,0,2,0,2,5,,3,1,Harper,Ave,4705399,0,0.031,0,0.733265,8,4.5 +17765,1,0.018151,1,0,0,2,5,,3,1,Hereford,St,1638603,1.526,1.544,0,0.435631,8,4.5 +22696,0,0.185548,1,1,0,2,5,,3,1,Chester,St,4705401,0.102,0.287,0,4.453162,8,4.5 +22899,-1,0.053092,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,1.106,1.16,0,1.274209,5,5 +23491,1,0.026033,3,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0.436,0.462,0,0.624782,8,4.5 +23678,-1,0.032956,0,3,0,2,5,,3,1,Harper,Ave,4705399,0.45,0.483,0,0.790935,8,4.5 +22503,1,0.0278,3,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0.409,0.436,0,0.667209,8,4.5 +18868,1,0.05295,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,2.447,2.5,0,1.270798,5,5 +23441,-1,0.056684,0,3,0,2,5,,3,1,Harper,Ave,4705399,0.508,0.565,0,1.360418,8,4.5 +23342,-1,0.025085,0,3,0,2,5,,3,1,Harper,Ave,4705399,0.483,0.508,0,0.602049,8,4.5 +23148,1,0.025676,3,0,0,2,5,,3,1,E I 94 Service Drive,,4705400,0.462,0.488,0,0.616216,8,4.5 +14110,1,0.048916,1,0,0,1,1,ROF,3,1,W I 94/Moross,RAMP,1589302,0.097,0.146,0,,2.24,5 +23100,-1,0.049106,0,2,0,2,5,,3,1,Harper,Ave,4705399,0.565,0.614,0,1.178552,8,4.5 +29886,0,0.558039,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,13.392929,0.15,4 +33914,0,0.514457,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.346976,0.15,4 +18853,1,0.125102,2,0,0,2,3,DV2,3,1,Moross,Rd,1632608,2.744,2.869,0,3.00245,5,5 +32001,0,0.38842,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,9.32207,0.15,4 +32002,0,0.368943,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,8.854637,0.15,4 +18873,1,0.19187,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.945,2.137,0,4.604877,5,5 +22610,-1,0.210676,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.604,0.814,0,5.056217,5,5 +23647,0,0.029973,1,1,0,2,5,,3,1,Chester,St,4705401,0.525,0.555,0,0.719355,8,4.5 +10966,1,0.276214,3,0,0,1,1,,3,2,E I 94,,1576405,36.732,37.008,0,,0.58,7 +12261,1,0.152924,1,0,0,1,1,ROF,3,2,E I 94/Allard,RAMP,1578209,0,0.153,0,,2.24,5 +22792,1,0.029029,2,0,0,2,5,,3,2,Harper,Ave,4705400,1.087,1.116,0,0.696688,8,4.5 +23032,-1,0.054047,0,2,0,2,5,,3,2,Harper,Ave,4705399,1.156,1.21,0,1.297121,8,4.5 +13659,1,0.363572,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,7.712,8.076,0,8.725735,5,5 +14229,1,0.198632,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.324,8.523,0,4.767158,5,5 +17829,0,0.289895,1,1,0,2,5,,3,2,Kerby,Rd,1637802,1.139,1.429,0,6.957469,8,4.5 +18890,1,0.071221,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.423,1.494,0,1.709296,5,5 +22222,-1,0.197718,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,1.436,1.633,0,4.745239,5,5 +22225,-1,0.361857,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,0.823,1.185,0,8.684574,5,5 +22452,-1,0.0786,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.077,0.156,0,1.886407,5,5 +30265,0,0.277234,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.653611,0.15,4 +33468,0,0.217926,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.230212,0.15,4 +33469,0,0.267274,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.414579,0.15,4 +30262,0,0.156142,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.74741,0.15,4 +33485,0,0.146847,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.524338,0.15,4 +14272,1,0.221632,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,7.49,7.712,0,5.319158,5,5 +22226,-1,0.212907,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,0.61,0.823,0,5.109757,5,5 +14452,1,0.125114,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.199,8.324,0,3.002741,5,5 +22223,-1,0.1383,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,1.298,1.436,0,3.319203,5,5 +14325,1,0.123483,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.076,8.199,0,2.963593,5,5 +22224,-1,0.112901,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,1.185,1.298,0,2.709621,5,5 +21543,1,0.007142,1,1,1,2,3,,3,2,Calvin,St,4700429,9.48,9.487,0,0.171403,5,5 +21698,1,0.008853,1,1,1,2,3,,3,1,Calvin,St,4700429,9.471,9.48,0,0.212476,5,5 +17738,0,0.00746,1,1,0,2,5,,3,1,Gateshead,Dr,1639605,0.008,0.015,0,0.179035,8,4.5 +17746,0,0.007537,1,1,0,2,5,,3,2,Gateshead,Dr,1639605,0,0.008,0,0.180885,8,4.5 +18892,1,0.006893,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.416,1.423,0,0.165437,5,5 +18905,1,0.0683,3,0,0,2,4,DV2,3,2,Moross,Rd,1632608,1.341,1.41,0,1.639202,6,4.5 +22221,-1,0.012053,0,2,0,2,3,DV2,3,1,Mack,Ave,4704270,1.633,1.645,0,0.289263,5,5 +22426,-1,0.06423,0,3,0,2,4,DV2,3,2,Moross,Rd,4705319,0,0.064,0,1.541527,6,4.5 +23460,-1,0.006451,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.071,0.077,0,0.154822,5,5 +13953,1,0.011786,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.523,8.534,0,0.282868,5,5 +18904,1,0.006481,3,0,0,2,3,DV2,3,2,Moross,Rd,1632608,1.41,1.416,0,0.155544,5,5 +22459,-1,0.006758,0,3,0,2,3,DV2,3,2,Moross,Rd,4705319,0.064,0.071,0,0.162195,5,5 +13930,1,0.1278,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,9.168,9.296,0,3.067191,5,5 +22217,-1,0.142749,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,2.261,2.404,0,3.425979,5,5 +30936,0,0.239552,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.749253,0.15,4 +33561,0,0.225046,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.401103,0.15,4 +18883,1,0.085936,3,0,0,2,3,DV2,3,1,Moross,Rd,1632608,1.676,1.762,0,2.06247,5,5 +33562,0,0.148156,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,3.55575,0.15,4 +31512,0,0.083503,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,2.004067,0.15,4 +23683,-1,0.023224,0,3,0,2,3,DV2,3,1,Moross,Rd,4705319,0.311,0.334,0,0.557382,5,5 +18605,0,0.022789,1,1,0,2,4,,3,1,Chandler Park,Dr,1632805,3.964,3.986,0,0.54693,6,4.5 +14122,1,0.449021,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,8.719,9.168,0,10.776499,5,5 +22218,-1,0.486854,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,1.774,2.261,0,11.684508,5,5 +22219,-1,0.043892,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,1.731,1.774,0,1.053412,5,5 +14115,1,0.176924,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,9.296,9.473,0,4.246178,5,5 +22216,-1,0.175459,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,2.404,2.579,0,4.211006,5,5 +17855,0,0.01493,1,1,0,2,5,,3,2,Cook,Rd,1637610,1.195,1.21,0,0.358319,8,4.5 +3907,-1,0.180541,0,3,0,1,1,,3,4,W I 94,,798502,0,0.18,0,,0.58,7 +4062,1,0.982029,3,0,0,1,1,,3,4,E I 94,,798501,0,0.982,0,,0.58,7 +4309,0,0.365038,2,2,0,2,4,,3,4,8 Mile,Rd,802804,8.107,8.472,0,8.760921,6,4.5 +4430,0,0.173337,2,2,1,2,3,,3,4,Harper,Ave,798408,0,0.173,0,4.160099,5,5 +4847,1,0.167045,1,0,0,1,1,ROF,3,4,W I 94/8 Mile,RAMP,801409,0,0.167,0,,2.24,5 +5340,0,0.227897,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.358,8.586,0,5.469517,6,4.5 +5908,0,0.280172,1,1,0,2,5,,3,4,Beaconsville,Rd,847401,0,0.28,0,6.724122,8,4.5 +6267,0,0.082156,1,1,0,2,4,,3,4,Greater Mack,Ave,809106,0,0.082,0,1.97174,6,4.5 +13995,-1,0.558151,0,3,0,1,1,,3,2,W I 94,,1588802,37.311,37.869,0,,0.58,7 +22263,-1,0.451263,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.469,0.92,0,10.830312,5,5 +22275,1,0.426079,4,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,0.518,0.944,0,10.225895,5,5 +23120,1,0.632479,3,0,0,2,5,,3,2,Harper,Ave,4705400,1.333,1.965,0,15.179501,8,4.5 +27503,0,0.240379,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.769101,0.15,4 +28192,0,0.690351,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.568433,0.15,4 +28723,0,0.447603,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.742478,0.15,4 +33544,0,0.285538,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.852907,0.15,4 +33556,0,0.461431,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.074337,0.15,4 +4626,0,0.186386,2,2,0,2,4,,3,4,8 Mile,Rd,802804,7.921,8.107,0,4.473275,6,4.5 +22264,-1,0.159047,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.31,0.469,0,3.817125,5,5 +22276,1,0.195092,4,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,0.323,0.518,0,4.682219,5,5 +30753,0,0.178104,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.274496,0.15,4 +4971,0,0.193279,2,2,0,2,4,,3,4,8 Mile,Rd,802804,7.727,7.921,0,4.638691,6,4.5 +22266,-1,0.214777,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.087,0.302,0,5.154637,5,5 +22277,1,0.323014,4,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,0,0.323,0,7.752339,5,5 +24172,0,0.119021,2,2,0,2,5,,3,2,Beaconsfield,Rd,4711343,1.221,1.34,0,2.856508,8,4.5 +32007,0,0.276709,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.641011,0.15,4 +4256,-1,0.052238,0,2,0,2,4,,3,4,8 Mile,Rd,802804,7.608,7.66,0,1.253705,6,4.5 +4705,1,0.036003,2,0,0,2,4,,3,2,8 Mile,Rd,802803,7.626,7.662,0,0.864073,6,4.5 +22267,-1,0.05716,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.03,0.087,0,1.371844,5,5 +30670,0,0.175728,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.217463,0.15,4 +32006,0,0.146122,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.506935,0.15,4 +4558,-1,0.011263,0,2,0,2,4,,3,2,8 Mile,Rd,802804,7.597,7.608,0,0.270322,6,4.5 +5032,1,0.058462,2,0,0,2,3,,3,2,8 Mile,Rd,802803,7.567,7.626,0,1.40309,5,5 +22268,-1,0.029594,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0,0.03,0,0.71026,5,5 +4912,-1,0.028945,0,4,0,2,3,DIV,3,2,8 Mile,Rd,802804,7.568,7.597,0,0.694672,5,5 +3950,0,0.066986,2,2,0,2,4,,3,4,8 Mile,Rd,802804,7.66,7.727,0,1.607672,6,4.5 +24060,0,0.124764,2,2,0,2,5,,3,2,Beaconsfield,Rd,4711343,1.34,1.465,0,2.994339,8,4.5 +24415,-1,0.028399,0,2,0,2,3,,3,2,Beaconsfield,Rd,4711343,1.465,1.493,0,0.681571,5,5 +22763,0,0.111344,2,2,0,2,5,,3,2,Beaconsfield,Rd,4705313,0,0.111,0,2.672266,8,4.5 +22265,-1,0.008269,0,4,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.302,0.31,0,0.198456,5,5 +32005,0,0.266018,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.384439,0.15,4 +33554,0,0.242525,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.820609,0.15,4 +4177,-1,0.802855,0,3,0,1,1,,3,4,W I 94,,798502,0.18,0.983,0,,0.58,7 +4702,0,0.219234,1,1,0,2,5,,3,4,Toepfer,Dr,802903,3.549,3.768,0,5.261621,8,4.5 +5347,0,0.432528,2,2,1,2,4,,3,4,9 Mile,Rd,803006,7.599,8.031,0,10.380663,6,4.5 +6178,0,0.367657,1,1,0,2,5,,3,4,Beaconsville,Rd,847401,0.28,0.648,0,8.823775,8,4.5 +20409,1,0.311067,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,0.965,1.276,0,7.465616,6,4.5 +20446,1,0.356634,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,0.609,0.965,0,8.559211,6,4.5 +20458,1,0.356504,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,1.341,1.697,0,8.556107,6,4.5 +20495,1,0.303397,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,1.038,1.341,0,7.281522,6,4.5 +27020,0,0.339484,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.147608,0.15,4 +27022,0,0.669497,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.067921,0.15,4 +27497,0,0.33682,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.083682,0.15,4 +29722,0,0.342793,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.227024,0.15,4 +5027,0,0.198225,1,1,0,2,5,,3,4,Toepfer,Dr,802903,3.351,3.549,0,4.757401,8,4.5 +4010,0,0.010809,1,1,0,2,5,,3,4,Toepfer,Dr,802903,3.34,3.351,0,0.25941,8,4.5 +27021,0,0.057618,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.382821,0.15,4 +4506,1,0.199045,1,0,0,1,1,RON,3,4,9 Mile/W I 94,RAMP,801410,0,0.199,0,,1.09,4 +4925,1,0.221903,1,0,0,1,1,ROF,3,4,E I 94/9 Mile,RAMP,800906,0,0.222,0,,2.24,5 +5344,0,0.09215,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.157,8.249,0,2.211592,6,4.5 +5984,0,0.43527,1,1,0,2,5,,3,4,Beaconsville,Rd,847401,0.648,1.083,0,10.446477,8,4.5 +5345,0,0.112585,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.044,8.157,0,2.702046,6,4.5 +5346,0,0.013207,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.031,8.044,0,0.316958,6,4.5 +5341,0,0.072141,2,2,0,2,4,,3,4,9 Mile,Rd,803006,8.286,8.358,0,1.731384,6,4.5 +5343,0,0.015843,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.249,8.265,0,0.380229,6,4.5 +5342,0,0.021158,2,2,0,2,4,,3,4,9 Mile,Rd,803006,8.265,8.286,0,0.507792,6,4.5 +13916,1,0.413626,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,9.946,10.36,0,9.927031,5,5 +14073,1,0.164129,1,0,0,1,1,RON,3,2,M 102/W I 94,RAMP,1589304,0,0.164,0,,1.09,4 +14302,-1,0.22533,0,3,0,1,1,,3,2,W I 94,,1588802,37.869,38.095,0,,0.58,7 +22213,-1,0.414021,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,3.054,3.468,0,9.936511,5,5 +22260,-1,0.15103,0,2,0,2,3,DIV,3,2,Vernier,Rd,4702103,1.134,1.285,0,3.624712,5,5 +22272,1,0.155242,2,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,1.155,1.31,0,3.725816,5,5 +33477,0,0.481408,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.5538,0.15,4 +33478,0,0.489877,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.757054,0.15,4 +33480,0,0.466126,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.187021,0.15,4 +33541,0,0.457974,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.991369,0.15,4 +4012,0,0.162723,2,2,0,2,4,,3,4,8 Mile,Rd,802804,8.472,8.635,0,3.905352,6,4.5 +11450,1,0.360014,3,0,0,1,1,,3,2,E I 94,,1576405,37.917,38.277,0,,0.58,7 +12234,1,0.132191,1,0,0,1,1,RON,3,2,M 102/E I 94,RAMP,1578304,0,0.132,0,,1.09,4 +12583,1,0.127462,2,0,0,2,3,,3,2,Harper,Ave,1578305,0,0.128,0,3.059086,5,5 +14063,-1,0.3121,0,3,0,1,1,,3,2,W I 94,,1588802,38.095,38.407,0,,0.58,7 +22261,-1,0.15758,0,2,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.977,1.134,0,3.781923,5,5 +22273,1,0.15624,2,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,0.999,1.155,0,3.749765,5,5 +22457,1,0.114836,1,0,0,1,1,RON,3,2,Harper/W I 94,RAMP,4705311,0,0.115,0,,1.09,4 +23080,-1,0.091408,0,2,0,2,3,,3,2,Harper,Ave,4705399,2.1,2.192,0,2.193792,5,5 +23625,1,0.212595,3,0,0,2,3,,3,2,Harper,Ave,4705400,2.082,2.294,0,5.102286,5,5 +12584,1,0.117504,1,0,0,1,1,ROF,3,2,E I 94/M 102,RAMP,1578301,0,0.118,0,,2.24,5 +22262,-1,0.056788,0,2,0,2,3,DIV,3,2,Vernier,Rd,4702103,0.92,0.977,0,1.362915,5,5 +22274,1,0.054809,4,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,0.944,0.999,0,1.315421,5,5 +22345,-1,0.148733,0,3,0,2,5,,3,2,Harper,Ave,4705399,1.896,2.045,0,3.569586,8,4.5 +22837,1,0.075721,3,0,0,2,5,,3,2,Harper,Ave,4705400,1.965,2.041,0,1.817306,8,4.5 +23447,-1,0.030214,0,3,0,2,5,,3,2,Harper,Ave,4705399,2.045,2.075,0,0.725145,8,4.5 +23412,-1,0.025354,0,3,0,2,3,,3,2,Harper,Ave,4705399,2.075,2.1,0,0.608495,5,5 +22548,1,0.024689,3,0,0,2,3,,3,2,Harper,Ave,4705400,2.041,2.066,0,0.592535,5,5 +23547,1,0.016023,3,0,0,2,3,,3,2,Harper,Ave,4705400,2.066,2.082,0,0.38454,5,5 +10964,1,0.180525,3,0,0,1,1,,3,2,E I 94,,1576405,38.277,38.458,0,,0.58,7 +22799,-1,0.221716,0,2,0,2,5,,3,2,S I 94 Service Drive,,4705399,2.192,2.413,0,5.32118,8,4.5 +12233,1,0.0277,2,0,0,2,3,,3,2,Harper,Ave,1578305,0.128,0.155,0,0.664802,5,5 +23283,0,0.110948,2,2,1,2,3,,3,2,Harper,Ave,4705400,2.294,2.405,0,2.662749,5,5 +14107,1,0.133541,2,0,0,2,3,DV2,3,2,Mack,Ave,1587509,9.812,9.946,0,3.204993,5,5 +22214,-1,0.134976,0,2,0,2,3,DV2,3,2,Mack,Ave,4704270,2.919,3.054,0,3.239413,5,5 +33461,0,0.16717,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.012084,0.15,4 +33542,0,0.15248,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,3.659528,0.15,4 +13937,1,0.275367,2,0,0,2,4,DIV,3,2,Mack,Ave,1587509,10.379,10.654,0,6.608803,6,4.5 +22211,-1,0.273871,0,2,0,2,4,DIV,3,2,Mack,Ave,4704270,3.49,3.763,0,6.572898,6,4.5 +22259,-1,0.209061,0,2,0,2,3,DIV,3,2,Vernier,Rd,4702103,1.285,1.494,0,5.017466,5,5 +22271,1,0.208929,2,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,1.31,1.519,0,5.014286,5,5 +22257,-1,0.117266,0,2,0,2,4,DIV,3,2,Vernier,Rd,4702103,1.508,1.625,0,2.81439,6,4.5 +22269,1,0.114226,2,0,0,2,4,DIV,3,2,Vernier,Rd,4702102,1.532,1.646,0,2.741435,6,4.5 +14130,1,0.019238,2,0,0,2,3,DIV,3,2,Mack,Ave,1587509,10.36,10.379,0,0.461723,5,5 +22212,-1,0.021958,0,2,0,2,3,DIV,3,2,Mack,Ave,4704270,3.468,3.49,0,0.527,5,5 +22258,-1,0.013838,0,2,0,2,3,DIV,3,2,Vernier,Rd,4702103,1.494,1.508,0,0.332101,5,5 +22270,1,0.012956,2,0,0,2,3,DIV,3,2,Vernier,Rd,4702102,1.519,1.532,0,0.310936,5,5 +14423,1,0.215008,2,0,0,2,4,DIV,3,2,Mack,Ave,1587509,10.654,10.869,0,5.16019,6,4.5 +22210,-1,0.215176,0,2,0,2,4,DIV,3,2,Mack,Ave,4704270,3.763,3.979,0,5.164228,6,4.5 +14178,0,0.013149,1,1,0,2,4,,3,2,Mack,Ave,1587509,10.869,10.882,0,0.315581,6,4.5 +4157,0,0.577337,2,2,1,2,3,,3,4,Harper,Ave,798408,0.173,0.751,0,13.856099,5,5 +5338,0,0.370754,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.639,9.01,0,8.898107,6,4.5 +26096,0,0.261539,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.276936,0.15,4 +28726,0,0.365232,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.765563,0.15,4 +29916,0,0.460656,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.055733,0.15,4 +5339,0,0.053209,2,2,1,2,4,,3,4,9 Mile,Rd,803006,8.586,8.639,0,1.277023,6,4.5 +29917,0,0.456461,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.955071,0.15,4 +5871,0,0.115549,2,2,1,2,4,,3,4,Greater Mack,Ave,809106,0.082,0.198,0,2.773166,6,4.5 +4427,0,0.370145,2,2,1,2,3,,3,4,Harper,Ave,798408,0.751,1.121,0,8.883483,5,5 +5337,0,0.177969,2,2,1,2,4,,3,4,9 Mile,Rd,803006,9.01,9.188,0,4.27125,6,4.5 +18780,-1,0.32515,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,0,0.325,0,7.803598,5,5 +18815,1,0.405331,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,0.456,0.862,0,9.727947,5,5 +18818,0,0.45654,2,2,0,2,3,,3,2,Jefferson,Ave,1632609,0,0.456,0,10.956965,5,5 +19426,0,0.357155,1,1,0,2,5,,3,2,Grosse Pointe,Blvd,1715203,1.562,1.919,0,8.57171,8,4.5 +33455,0,0.188296,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.519103,0.15,4 +33456,0,0.278135,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.675231,0.15,4 +33470,0,0.281487,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.755688,0.15,4 +23331,0,0.237774,2,2,0,2,4,,3,2,Kercheval,Ave,4705782,3.619,3.856,0,5.706573,6,4.5 +23666,0,0.21053,2,2,0,2,4,,3,2,Kercheval,Ave,4705782,3.408,3.619,0,5.052715,6,4.5 +33471,0,0.279977,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,6.719449,0.15,4 +33454,0,0.176485,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.235635,0.15,4 +17865,0,0.072313,1,1,0,2,5,,3,2,Morningside,Dr,1636204,0.93,1.002,0,1.735503,8,4.5 +18762,-1,0.239694,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,3.091,3.331,0,5.752656,5,5 +18792,1,0.242753,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,3.549,3.791,0,5.826065,5,5 +33543,0,0.248366,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.960777,0.15,4 +33913,0,0.713525,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,17.124596,0.15,4 +17817,0,0.190753,1,1,0,2,5,,3,2,Provencal,Rd,1637806,0.009,0.2,0,4.578071,8,4.5 +18765,-1,0.619781,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,1.883,2.503,0,14.874749,5,5 +18772,-1,0.210258,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,1.039,1.25,0,5.046183,5,5 +18793,1,1.35984,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,2.189,3.549,0,32.636167,5,5 +18806,1,0.20954,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,1.5,1.709,0,5.028954,5,5 +18957,0,0.178676,1,1,0,2,4,,3,2,Moross,Rd,1632608,0.009,0.187,0,4.288233,6,4.5 +23314,0,0.348453,1,1,0,2,5,,3,2,Woodland Shore,Dr,4705375,0,0.348,0,8.362881,8,4.5 +30754,0,0.632028,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,15.168674,0.15,4 +17833,0,0.253705,1,1,0,2,5,,3,2,Kerby,Rd,1637802,0.393,0.647,0,6.088913,8,4.5 +18952,0,0.477104,1,1,0,2,4,,3,2,Moross,Rd,1632608,0.325,0.802,0,11.45049,6,4.5 +23433,0,0.312379,1,1,0,2,5,,3,2,Kercheval,Ave,4705782,4.468,4.781,0,7.497091,8,4.5 +33465,0,0.470891,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,11.301388,0.15,4 +30757,0,0.386064,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.265527,0.15,4 +17841,0,0.183492,1,1,0,2,5,,3,2,Kerby,Rd,1637802,0.21,0.393,0,4.403812,8,4.5 +18955,0,0.137344,1,1,0,2,4,,3,2,Moross,Rd,1632608,0.187,0.325,0,3.296266,6,4.5 +19424,0,0.203671,1,1,0,2,5,,3,2,Grosse Pointe,Blvd,1715203,2.373,2.576,0,4.888098,8,4.5 +22745,0,0.198599,2,2,0,2,4,,3,2,Kercheval,Ave,4705782,4.27,4.468,0,4.766373,6,4.5 +17843,0,0.200849,1,1,0,2,5,,3,2,Kerby,Rd,1637802,0.009,0.21,0,4.820381,8,4.5 +17854,0,0.009193,1,1,0,2,5,,3,2,Kerby,Rd,1637802,0,0.009,0,0.220621,8,4.5 +23089,0,0.152605,1,1,0,2,5,,3,2,Kercheval,Ave,4705782,4.781,4.933,0,3.662516,8,4.5 +17858,0,0.374202,1,1,0,2,5,,3,2,Cook,Rd,1637610,0.189,0.563,0,8.980848,8,4.5 +17891,0,0.46745,1,1,0,2,5,,3,2,Morningside,Dr,1636204,0,0.467,0,11.218803,8,4.5 +33464,0,0.432796,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.387094,0.15,4 +33466,0,0.225814,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,5.419535,0.15,4 +17861,0,0.188589,1,1,0,2,5,,3,2,Cook,Rd,1637610,0,0.189,0,4.526131,8,4.5 +17862,0,0.088494,1,1,0,2,5,,3,2,Ballantyne,Rd,1636207,0,0.089,0,2.123851,8,4.5 +17876,0,0.367748,1,1,0,2,5,,3,2,Morningside,Dr,1636204,0.467,0.835,0,8.825964,8,4.5 +17866,1,0.094945,1,0,0,2,5,,3,2,Morningside,Dr,1636204,0.835,0.93,0,2.278677,8,4.5 +22738,-1,0.094934,0,1,0,2,5,,3,2,Morningside,Dr,4706089,0,0.095,0,2.278411,8,4.5 +18767,-1,0.480505,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,1.25,1.73,0,11.532108,5,5 +18797,1,0.479949,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,1.709,2.189,0,11.518768,5,5 +18969,0,0.008558,1,1,0,2,4,,3,2,Moross,Rd,1632608,0,0.009,0,0.205398,6,4.5 +18766,-1,0.153008,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,1.73,1.883,0,3.672183,5,5 +17819,0,0.009074,1,1,0,2,5,,3,2,Provencal,Rd,1637806,0,0.009,0,0.217773,8,4.5 +18764,-1,0.588637,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,2.503,3.091,0,14.127288,5,5 +33293,0,0.190342,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.568197,0.15,4 +33452,0,0.600267,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,14.406399,0.15,4 +33568,0,0.180894,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,4.341451,0.15,4 +5331,0,0.220402,2,2,0,2,4,,3,4,9 Mile,Rd,803006,9.925,10.145,0,5.289659,6,4.5 +22253,0,0.184017,1,1,0,2,4,,3,2,Vernier,Rd,4702103,2.412,2.596,0,4.41641,6,4.5 +24058,1,0.074672,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,4718263,0,0.075,0,1.792133,5,5 +24080,-1,0.072129,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,4718264,0,0.072,0,1.73109,5,5 +24184,0,0.350765,1,1,0,2,5,,3,4,Marter,Rd,4718268,0.455,0.805,0,8.418372,8,4.5 +24486,0,0.038419,1,1,0,2,5,,3,4,Marter,Rd,4718268,0.1,0.138,0,0.922066,8,4.5 +27507,0,0.268064,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.433531,0.15,4 +27510,0,0.347194,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.332651,0.15,4 +33463,0,0.50519,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,12.124572,0.15,4 +33569,0,0.441133,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.58719,0.15,4 +17906,0,0.413572,1,1,0,2,5,,3,2,Marter,Rd,1635905,0,0.414,0,9.92573,8,4.5 +22254,0,0.352672,2,2,0,2,4,,3,2,Vernier,Rd,4702103,2.059,2.412,0,8.464127,6,4.5 +33481,0,0.362737,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,8.705677,0.15,4 +33555,0,0.420049,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,10.081186,0.15,4 +22255,0,0.188457,2,2,0,2,4,,3,2,Vernier,Rd,4702103,1.871,2.059,0,4.522973,6,4.5 +17900,0,0.207216,1,1,0,2,5,,3,2,Marter,Rd,1635905,0.414,0.621,0,4.973185,8,4.5 +33545,0,0.388118,1,1,0,2,99,,3,2,Centroid Connector,,0,0,0,0,9.314831,0.15,4 +24071,0,0.099519,1,1,0,2,5,,3,2,Marter,Rd,4718268,0,0.1,0,2.38845,8,4.5 +5333,0,0.258972,2,2,0,2,4,,3,4,9 Mile,Rd,803006,9.594,9.853,0,6.215323,6,4.5 +5869,0,0.345654,2,2,1,2,4,,3,4,Greater Mack,Ave,809106,0.59,0.936,0,8.295693,6,4.5 +27498,0,0.345826,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.299826,0.15,4 +27509,0,0.331162,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.947878,0.15,4 +4633,0,0.031503,1,1,0,2,5,,3,4,Colony,St,799603,0.581,0.612,0,0.756068,8,4.5 +5335,0,0.097176,2,2,1,2,4,,3,4,9 Mile,Rd,803006,9.427,9.525,0,2.332223,6,4.5 +19651,0,0.199173,1,1,0,2,5,,3,4,Cavalier,Dr,1835407,0,0.199,0,4.780143,8,4.5 +5334,0,0.069785,2,2,0,2,4,,3,4,9 Mile,Rd,803006,9.525,9.594,0,1.674842,6,4.5 +5832,0,0.16963,1,1,0,2,5,,3,4,Nine Mack,Dr,809107,0.091,0.261,0,4.071124,8,4.5 +6249,0,0.206662,2,2,1,2,4,,3,4,Greater Mack,Ave,809106,0.936,1.142,0,4.959887,6,4.5 +6212,0,0.091008,1,1,0,2,5,,3,4,Nine Mack,Dr,809107,0,0.091,0,2.184185,8,4.5 +4030,0,0.018044,1,1,0,2,5,,3,4,Colony,St,799603,0.563,0.581,0,0.433067,8,4.5 +24290,0,0.316671,1,1,0,2,5,,3,4,Marter,Rd,4718268,0.138,0.455,0,7.600099,8,4.5 +5332,0,0.071293,2,2,0,2,4,,3,4,9 Mile,Rd,803006,9.853,9.925,0,1.711038,6,4.5 +27508,0,0.330153,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.923662,0.15,4 +18761,-1,0.490498,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,3.331,3.821,0,11.771954,5,5 +18789,1,0.96771,2,0,0,2,3,DV2,3,2,Lake Shore,Rd,1632609,3.791,4.759,0,23.225045,5,5 +22250,0,0.198605,1,1,0,2,4,,3,2,Vernier,Rd,4702103,2.966,3.165,0,4.766529,6,4.5 +22251,0,0.287049,1,1,0,2,4,,3,2,Vernier,Rd,4702103,2.679,2.966,0,6.889164,6,4.5 +22252,0,0.083813,1,1,0,2,4,,3,2,Vernier,Rd,4702103,2.596,2.679,0,2.011513,6,4.5 +17863,0,0.255075,1,1,0,2,5,,3,2,Morningside,Dr,1636204,1.002,1.257,0,6.121789,8,4.5 +22249,0,0.008609,1,1,0,2,4,,3,2,Vernier,Rd,4702103,3.165,3.174,0,0.206625,6,4.5 +18760,-1,0.478532,0,2,0,2,3,DV2,3,2,Lake Shore,Rd,1632610,3.821,4.3,0,11.484772,5,5 +24054,0,0.511011,2,2,1,2,3,,3,4,Jefferson,Ave,4718263,0.865,1.376,0,12.264273,5,5 +24067,0,0.21196,1,1,0,2,5,,3,4,Marter,Rd,4718268,0.805,1.017,0,5.087033,8,4.5 +24264,1,0.286259,2,0,0,2,3,DV2,3,4,Lakeshore,Dr,4718263,0.448,0.735,0,6.870217,5,5 +24296,-1,0.291633,0,2,0,2,3,DV2,3,4,Lakeshore,Dr,4718264,0.435,0.727,0,6.999188,5,5 +26828,0,0.254475,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.107401,0.15,4 +27511,0,0.24598,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.903526,0.15,4 +24163,1,0.130535,2,0,0,2,3,DV2,3,4,Lakeshore,Dr,4718263,0.735,0.865,0,3.132844,5,5 +24188,-1,0.132946,0,2,0,2,3,DV2,3,4,Lake Shore,Dr,4718264,0.727,0.86,0,3.190707,5,5 +25605,0,0.185681,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.456352,0.15,4 +24409,1,0.37386,2,0,0,2,3,DV2,3,4,Lakeshore,Dr,4718263,0.075,0.448,0,8.972644,5,5 +24495,-1,0.363164,0,2,0,2,3,DV2,3,4,Lakeshore,Dr,4718264,0.072,0.435,0,8.715945,5,5 +26513,0,0.205151,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.923623,0.15,4 +27506,0,0.202031,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.848736,0.15,4 +28,0,0.858079,1,1,0,2,5,GRV,5,3,Gallagher,Rd,609402,0,0.858,0,20.593895,5.55,5 +65,0,0.51112,1,1,0,2,5,,3,3,10 Mile,Rd,607703,0.203,0.714,0,12.266881,8,4.5 +72,1,0.427533,2,0,0,2,5,,3,3,Heights,Dr,607610,0.297,0.725,0,10.260803,8,4.5 +80,-1,0.438055,0,3,0,2,5,,3,3,Progress,Dr,607607,0.249,0.687,0,10.51333,8,4.5 +151,0,0.464734,2,2,1,2,3,,3,3,13 Mile,Rd,607408,0.568,1.033,0,11.153626,5,5 +155,1,0.553404,2,0,0,2,3,DIV,4,3,Big Beaver,Rd,607204,5.013,5.567,0,13.28169,3.7,5 +181,0,0.468869,1,1,0,2,4,,4,3,Hamlin,Rd,606606,3.63,4.099,0,11.25286,4.5,4.5 +192,0,0.345683,1,1,0,2,5,GRV,4,3,Washington,Rd,4415706,0.906,1.252,0,8.296383,6.55,4.5 +212,0,0.567349,1,1,0,2,3,,4,3,Avon,Rd,605102,4.454,5.022,0,13.616374,3.7,5 +248,0,0.431892,1,1,0,2,4,,4,3,Orion,Rd,604708,2.149,2.58,0,10.365405,4.5,4.5 +455,0,0.719209,1,1,1,2,4,,4,3,South,Blvd,616405,7.02,7.739,0,17.261009,4.5,4.5 +903,0,0.50019,2,2,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.827,2.327,0,12.004558,8,4.5 +1015,-1,0.780542,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,3.037,3.818,0,18.732997,3.7,5 +1064,0,0.21652,1,1,1,2,4,,4,3,Wattles,Rd,618802,6.364,6.58,0,5.196477,4.5,4.5 +1163,1,0.780861,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,3.05,3.831,0,18.740654,3.7,5 +1268,0,0.511088,1,1,0,2,4,,4,3,Auburn,Rd,625105,9.667,10.178,0,12.266122,4.5,4.5 +1306,0,0.660836,2,2,1,2,3,,4,3,Long Lake,Rd,641102,13.619,14.28,0,15.860064,3.7,5 +1592,0,0.709761,1,1,0,2,4,,4,3,Adams,Rd,4415861,13.524,14.234,0,17.034262,4.5,4.5 +1622,0,0.068338,2,2,1,2,3,,3,3,14 Mile,Rd,625804,0.622,0.69,0,1.64011,5,5 +1729,0,0.527126,1,1,0,2,4,,4,3,Square Lake,Rd,615807,7.563,8.09,0,12.651017,4.5,4.5 +2250,1,0.251868,2,0,0,2,5,DV2,3,3,Whitcomb,,647603,0.497,0.749,0,6.044837,8,4.5 +2485,0,0.515521,1,1,0,2,5,,4,3,Parkdale,,678507,1.499,2.015,0,12.372494,5.8,4.5 +2572,0,0.456802,1,1,0,2,5,,3,3,Lincoln,,651908,3.883,4.339,0,10.963247,8,4.5 +2796,0,1.007874,1,1,0,2,5,,5,4,Dequindre,Rd,667605,2.624,3.631,0,24.188979,3.7,5 +3112,1,1.423495,3,0,0,1,2,,4,3,E M 59,,648906,30.066,31.489,0,,0.8,7.5 +3188,0,0.634833,1,1,0,2,4,,4,3,Joslyn,Rd,674110,5.301,5.936,0,15.235996,4.5,4.5 +3537,-1,1.398283,0,3,0,1,2,,4,3,W M 59,,677208,8.545,9.943,0,,0.8,7.5 +3542,0,0.233355,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,21.267,21.5,0,5.600521,5,5 +3771,0,0.439433,2,2,1,2,3,,4,3,Maple,Rd,683906,19.23,19.67,0,10.546399,3.7,5 +4499,0,0.884102,1,1,0,2,4,,5,3,Clintonville,Rd,697001,2.412,3.296,0,21.218459,3,4 +5394,0,1.013702,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,1.065,2.079,0,24.32884,3,4 +6054,0,1.053957,1,1,0,2,6,GRV,5,4,Indian Trail,Rd,817101,0,1.054,0,25.294962,5.55,5 +6221,0,0.994592,1,1,0,2,5,,5,4,27 Mile,Rd,819105,1.993,2.988,0,23.870198,3.7,5 +6377,0,1.260849,1,1,0,2,6,GRV,5,4,36 Mile,Rd,822708,0,1.261,0,30.260367,5.55,5 +6419,-1,0.860519,0,2,0,1,2,,4,4,S M 53,,813706,12.262,13.123,0,,0.8,7.5 +6474,0,1.249472,1,1,0,2,5,GRV,5,4,34 Mile,Rd,821608,0,1.249,0,29.987334,5.55,5 +6701,0,1.036031,1,1,0,2,4,,4,4,Mound,Rd,814501,4.517,5.553,0,24.864756,4.5,4.5 +19466,1,0.377001,4,0,0,1,1,,3,3,E I 696,,1903903,4.885,5.262,0,,0.58,7 +19508,0,0.54539,1,1,0,2,5,GRV,5,3,Gunn,Rd,1895401,0.109,0.654,0,13.089359,5.55,5 +19700,-1,0.35607,0,4,0,1,1,,3,3,W I 696,,1904002,4.885,5.241,0,,0.58,7 +19751,0,2.071044,1,1,0,2,5,,5,4,North,Ave,1817105,6.3,8.371,0,49.70505,3.7,5 +19877,1,1.002958,2,0,0,1,2,,4,4,N M 53,,4210208,12.238,13.241,0,,0.8,7.5 +20067,0,1.026393,1,1,0,2,5,,5,4,Jewell,Rd,4208421,0.995,2.021,0,24.633439,3.7,5 +20112,0,1.80732,1,1,0,2,6,GRV,5,4,Omo,Rd,4208329,0,1.807,0,43.375686,5.55,5 +20295,0,0.172419,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,9.812,9.984,0,4.138061,6,4.5 +20328,0,0.366453,1,1,1,2,4,,4,4,Van Dyke,Ave,4211016,8.761,9.127,0,8.794872,4.5,4.5 +20721,-1,0.251679,0,2,0,2,5,DV2,3,3,Whitcomb,,4400514,0.497,0.749,0,6.040294,8,4.5 +20797,0,0.46524,1,1,0,2,5,,4,3,Giddings,Rd,4407722,0.262,0.727,0,11.165753,5.8,4.5 +20983,0,1.007581,1,1,0,2,4,,5,3,Romeo,,4410333,2.485,3.492,0,24.18195,3,4 +21138,-1,0.642737,0,3,0,2,3,DIV,4,3,Big Beaver,Rd,4408243,4.493,5.135,0,15.425699,3.7,5 +21173,0,1.124969,1,1,0,2,4,GRV,4,3,Snell,Rd,4408229,0,1.125,0,26.999248,6.55,4.5 +21442,0,0.298316,1,1,0,2,4,,4,3,Runyon,Rd,4413806,0.561,0.859,0,7.159576,4.5,4.5 +21595,0,0.605043,1,1,1,2,4,,4,3,Rochester,Rd,4413538,15.824,16.429,0,14.52104,4.5,4.5 +24968,0,1.525274,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,36.606568,0.15,4 +24970,0,1.030579,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.733901,0.15,4 +24975,0,1.400134,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,33.603227,0.15,4 +24978,0,0.76891,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.453831,0.15,4 +24980,0,0.689308,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.5434,0.15,4 +24982,0,0.905541,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.732984,0.15,4 +25072,0,0.72729,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.454958,0.15,4 +25075,0,0.700348,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.808342,0.15,4 +25076,0,0.511128,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.267082,0.15,4 +25082,0,0.492955,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.830931,0.15,4 +25084,0,0.512613,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.302702,0.15,4 +25085,0,0.528544,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.685062,0.15,4 +25087,0,0.550676,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.216224,0.15,4 +25090,0,0.498574,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.965768,0.15,4 +25099,0,0.3321,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.970392,0.15,4 +25370,0,0.538897,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.933516,0.15,4 +26100,0,1.17886,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,28.292636,0.15,4 +27517,0,1.023912,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,24.573887,0.15,4 +27518,0,0.809789,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,19.434942,0.15,4 +27526,0,0.995398,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,23.889557,0.15,4 +27532,0,0.568292,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.639001,0.15,4 +27542,0,0.60543,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.530319,0.15,4 +27546,0,0.577473,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.859357,0.15,4 +27550,0,0.559701,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.432815,0.15,4 +27553,0,0.514058,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.337402,0.15,4 +27562,0,0.626255,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.030109,0.15,4 +27563,0,0.600825,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.419805,0.15,4 +27962,0,1.133569,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.205647,0.15,4 +28022,0,0.536278,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.870674,0.15,4 +28286,0,0.492254,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.814084,0.15,4 +28449,0,0.516522,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.396522,0.15,4 +28460,0,0.511016,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.264377,0.15,4 +28534,0,0.677992,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.271796,0.15,4 +29017,0,0.518443,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.442642,0.15,4 +29517,0,0.610358,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.648601,0.15,4 +29624,0,0.501056,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.02535,0.15,4 +29826,0,1.520815,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,36.499566,0.15,4 +30176,0,1.516345,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.392283,0.15,4 +20,-1,0.493326,0,3,0,1,1,,4,3,S I 75,,646106,12.553,13.046,0,,0.8,7.5 +126,0,0.443718,2,2,0,2,4,,3,3,13 Mile,Rd,607408,7.003,7.446,0,10.64923,6,4.5 +325,0,0.504995,2,2,1,2,4,,3,3,10 Mile,Rd,633409,7.35,7.855,0,12.119891,6,4.5 +363,0,0.658376,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,4.074,4.732,0,15.801022,5.8,4.5 +375,0,0.554178,1,1,0,2,4,,4,3,Quarton,Rd,617206,2.691,3.245,0,13.300275,4.5,4.5 +408,0,0.11952,2,2,0,2,4,,4,3,South,Blvd,616405,0.867,0.987,0,2.868475,4.5,4.5 +411,0,0.572523,1,1,0,2,5,,4,3,Eastways,Rd,615707,0.23,0.802,0,13.740549,5.8,4.5 +431,0,0.779277,2,2,1,2,3,,4,3,Walton,Blvd,616602,0.25,1.029,0,18.702649,3.7,5 +485,-1,0.524008,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,2.535,3.059,0,12.57619,3.7,5 +40319,-1,0.031674,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0.46,0.491,0,0.760174,3.7,5 +497,-1,0.618011,0,2,0,1,1,RFF,4,3,S I 75 BL,,625912,0,0.618,0,,0.8,7.5 +556,0,0.485827,1,1,0,2,5,,4,3,Saxon,Dr,625804,7.001,7.487,0,11.659845,5.8,4.5 +567,0,0.461915,1,1,0,2,5,,4,3,Lincoln,,611106,0.643,1.105,0,11.085965,5.8,4.5 +592,0,0.519949,1,1,0,2,5,,4,3,Squirrel,Rd,617001,1.493,2.012,0,12.478771,5.8,4.5 +779,0,0.370131,1,1,0,2,5,,4,3,Kensington,Rd,616302,1.025,1.395,0,8.883154,5.8,4.5 +806,0,0.414613,1,1,0,2,5,,4,3,Beach,Rd,626301,2.325,2.739,0,9.950709,5.8,4.5 +856,0,0.50972,1,1,0,2,3,,4,3,Adams,Rd,4415861,4.163,4.673,0,12.233276,3.7,5 +888,0,0.435635,1,1,0,2,4,,4,3,Square Lake,Rd,615807,0.465,0.901,0,10.45524,4.5,4.5 +1025,0,0.386349,1,1,0,2,4,,4,3,Franklin,Rd,616801,1.021,1.407,0,9.272374,4.5,4.5 +1158,1,0.321235,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,0.317,0.638,0,7.709646,3.7,5 +1227,0,0.398074,1,1,0,2,3,,4,3,Orchard Lake,Rd,634003,9.694,10.092,0,9.55378,3.7,5 +1296,0,0.156269,1,1,0,2,4,,4,3,Opdyke,Rd,616205,0.671,0.828,0,3.750468,4.5,4.5 +1423,0,0.028692,1,1,0,2,3,,4,3,Long Lake,Rd,641102,7,7.029,0,0.688602,3.7,5 +1453,1,0.505383,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,2.554,3.059,0,12.129184,3.7,5 +1719,1,0.225559,2,0,0,2,4,DIV,4,3,Featherstone,,616508,0.842,1.068,0,5.413419,4.5,4.5 +1735,0,0.382538,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.009,3.392,0,9.180912,4.5,4.5 +1930,0,0.025,1,1,0,2,4,,4,3,Livernois,Rd,625408,3.442,3.467,0,0.600008,4.5,4.5 +1937,0,0.421628,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,10.84,11.262,0,10.119066,4.5,4.5 +2038,-1,0.377423,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,0.262,0.639,0,9.05815,3.7,5 +2115,0,0.326732,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,2.804,3.131,0,7.841558,4.5,4.5 +2170,0,0.471943,1,1,0,2,5,,4,3,Kensington,Rd,616302,0,0.472,0,11.326621,5.8,4.5 +2286,1,0.299405,3,0,0,1,1,,4,3,N I 75,,647308,12.459,12.758,0,,0.8,7.5 +2345,0,0.464471,1,1,1,2,4,,4,3,John R,Rd,646806,10.05,10.515,0,11.147309,4.5,4.5 +2803,1,0.655853,1,0,0,1,1,ROF,4,3,N I 75/Crooks,RAMP,681303,0,0.656,0,,2.24,5 +2936,0,0.114163,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,14.573,14.687,0,2.739906,5,5 +3092,1,0.37245,1,0,0,1,1,RON,4,3,Crooks/S I 75,RAMP,681302,0.091,0.463,0,,1.09,4 +3237,-1,0.366388,0,3,0,1,2,,4,3,W M 59,,677208,2.566,2.933,0,,0.8,7.5 +3258,1,0.354431,3,0,0,1,2,,4,3,E M 59,,648906,24.164,24.518,0,,0.8,7.5 +3386,1,0.010981,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.223,7.234,0,0.263542,3.7,5 +3424,1,0.090598,2,0,0,1,1,RON,4,3,Crooks/S I 75,RAMP,681302,0,0.091,0,,1.09,4 +3679,0,0.375289,1,1,0,2,4,,4,3,Lahser,Rd,685510,10.577,10.952,0,9.006931,4.5,4.5 +3799,0,0.293722,1,1,1,2,3,,3,3,Maple,Rd,683906,12.736,13.03,0,7.049329,5,5 +3910,-1,0.42624,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,10.694,11.12,0,10.229769,3.7,5 +4409,-1,0.173926,0,4,0,1,1,,3,3,W I 696,,710702,11.286,11.46,0,,0.58,7 +4780,1,0.204017,4,0,0,1,1,,3,3,E I 696,,710701,11.291,11.495,0,,0.58,7 +4852,1,0.473755,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,4.303,4.777,0,11.370116,4.5,4.5 +4980,1,0.506421,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,10.689,11.196,0,12.154096,3.7,5 +40257,0,0.009501,1,1,0,2,5,,3,3,Webster,Rd,610103,0.981,0.99,0,0.228021,8,4.5 +40251,-1,0.16135,0,2,0,2,5,,4,3,Corporate,Dr,5491101,0,0.161,0,3.872412,5.8,4.5 +19823,0,0.65049,1,1,0,2,3,,4,3,Commerce,Rd,4104140,17.6,18.251,0,15.611768,3.7,5 +20345,-1,0.370401,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,3.073,3.443,0,8.889617,8,4.5 +20992,1,0.335226,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,1.195,1.53,0,8.045418,8,4.5 +21161,-1,0.489326,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,0.491,0.98,0,11.743815,3.7,5 +21769,0,0.255666,2,2,1,2,3,,4,3,Rochester,Rd,4413538,7.075,7.331,0,6.135996,3.7,5 +25086,0,0.530315,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.727565,0.15,4 +25175,0,0.549827,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.195843,0.15,4 +25177,0,0.589688,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.152516,0.15,4 +25178,0,0.39055,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.373201,0.15,4 +25181,0,0.762477,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.299453,0.15,4 +25183,0,0.277883,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.669191,0.15,4 +25188,0,0.606341,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.552177,0.15,4 +25190,0,0.712617,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.102802,0.15,4 +25192,0,0.693423,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.642161,0.15,4 +25193,0,0.412966,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.91118,0.15,4 +25196,0,0.504562,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.1095,0.15,4 +25197,0,0.408504,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.804096,0.15,4 +25198,0,0.736398,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.673563,0.15,4 +25646,0,0.410322,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.847727,0.15,4 +25648,0,0.468814,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.251529,0.15,4 +25650,0,0.283558,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.805397,0.15,4 +25655,0,0.178578,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.285871,0.15,4 +40250,1,0.064794,2,0,0,2,5,,4,3,Corporate,Dr,1888801,0.503,0.568,0,1.555048,5.8,4.5 +25660,0,0.518702,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.448854,0.15,4 +25662,0,0.534683,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.832383,0.15,4 +25663,0,0.588337,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.120092,0.15,4 +25664,0,0.514193,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.340635,0.15,4 +25672,0,0.381152,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.147647,0.15,4 +25990,0,0.61361,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.726641,0.15,4 +26218,0,0.240979,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.783491,0.15,4 +26219,0,0.315158,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.563785,0.15,4 +27566,0,0.427778,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.26668,0.15,4 +27576,0,0.431017,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.3444,0.15,4 +27577,0,0.487476,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.699422,0.15,4 +27585,0,0.373688,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.96852,0.15,4 +27588,0,0.521921,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.526101,0.15,4 +27597,0,0.350208,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.404992,0.15,4 +27608,0,0.517099,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.410388,0.15,4 +27610,0,0.628961,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.095059,0.15,4 +27613,0,0.526364,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.632734,0.15,4 +27618,0,0.676092,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,16.226199,0.15,4 +27620,0,0.58176,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.962228,0.15,4 +27642,0,0.919043,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.057036,0.15,4 +27753,0,0.903428,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.68227,0.15,4 +28264,0,0.517946,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.430714,0.15,4 +28267,0,0.383289,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.198928,0.15,4 +28268,0,0.65189,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.645355,0.15,4 +29043,0,0.327702,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.864846,0.15,4 +29046,0,0.320086,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.682065,0.15,4 +29683,0,0.609706,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.632951,0.15,4 +29684,0,0.704663,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.911901,0.15,4 +29763,0,0.753556,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.085344,0.15,4 +29883,0,0.643612,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.446677,0.15,4 +29896,0,0.461107,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.06656,0.15,4 +29897,0,0.340431,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.170343,0.15,4 +113,0,0.551471,1,1,0,2,4,,4,3,13 Mile,Rd,607408,10.203,10.754,0,13.2353,4.5,4.5 +493,0,0.312378,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,6.034,6.346,0,7.497075,4.5,4.5 +796,0,0.680719,1,1,0,2,3,,4,3,Long Lake,Rd,641102,2.954,3.634,0,16.337248,3.7,5 +1023,0,0.17011,1,1,0,2,4,,4,3,10 Mile,Rd,633409,3.889,4.06,0,4.082644,4.5,4.5 +1039,0,0.441673,2,2,1,2,4,,4,3,Franklin,Rd,638109,0.741,1.182,0,10.600158,4.5,4.5 +1045,0,0.384908,1,1,0,2,4,,4,3,Quarton,Rd,618807,0.976,1.361,0,9.237792,4.5,4.5 +1152,0,0.487884,1,1,0,2,4,,4,3,Inkster,Rd,616805,0,0.488,0,11.709225,4.5,4.5 +1389,0,0.440455,1,1,0,2,4,,4,3,Cranbrook,Rd,618210,0,0.44,0,10.570927,4.5,4.5 +1627,0,0.451409,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,1.006,1.457,0,10.833825,5.8,4.5 +39989,0,0.114804,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,1.733,1.847,0,2.755302,4.5,4.5 +1949,0,0.258967,1,1,1,2,4,,4,3,11 Mile,Rd,634509,4.137,4.396,0,6.215198,4.5,4.5 +40011,-1,0.011212,0,2,0,2,3,,4,3,14 Mile,Rd,5499977,0.087,0.098,0,0.269092,3.7,5 +2866,0,0.154105,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.666,10.821,0,3.698523,3.7,5 +3693,0,0.451046,1,1,0,2,4,,4,3,Lahser,Rd,685510,6.042,6.493,0,10.825097,4.5,4.5 +3810,0,0.599623,2,2,1,2,3,,4,3,Maple,Rd,683906,9.543,10.142,0,14.390963,3.7,5 +3978,1,0.456512,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,6.103,6.56,0,10.956295,3.7,5 +4055,-1,0.418008,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,6.104,6.522,0,10.03219,3.7,5 +4740,-1,2.535364,0,4,0,1,1,,4,3,W I 696,,710702,4.955,7.49,0,,0.8,7.5 +4791,1,1.173098,3,0,0,1,1,,4,3,E I 696,,710701,7.763,8.936,0,,0.8,7.5 +4933,1,0.442655,3,0,0,1,2,,4,3,S M 10,,710010,3.941,4.384,0,,0.8,7.5 +5086,-1,0.34492,0,3,0,1,2,,4,3,N M 10,,710102,3.974,4.319,0,,0.8,7.5 +19220,1,0.412155,2,0,0,1,1,RFF,4,3,E I 696/S M 10,RAMP,1813003,0,0.412,0,,0.8,7.5 +20190,0,0.263309,1,1,0,2,5,,4,3,Northwestern,Hwy,4400087,0.715,0.978,0,6.319422,5.8,4.5 +20431,0,0.268714,1,1,0,2,4,,4,3,Franklin,Rd,4400056,2.047,2.315,0,6.449126,4.5,4.5 +25201,0,0.830823,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.939746,0.15,4 +25449,0,0.513946,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.334697,0.15,4 +25453,0,0.607778,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.586681,0.15,4 +25756,0,0.48478,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.634726,0.15,4 +25769,0,0.514665,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.35197,0.15,4 +25774,0,0.518205,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.436908,0.15,4 +26000,0,0.560552,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.453244,0.15,4 +27292,0,0.642678,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.424274,0.15,4 +27630,0,0.622598,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.942346,0.15,4 +27632,0,0.33884,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.132157,0.15,4 +27635,0,0.612183,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.692383,0.15,4 +27663,0,0.550967,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.223216,0.15,4 +27707,0,0.45035,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.808399,0.15,4 +27847,0,0.501001,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.02402,0.15,4 +27965,0,0.629436,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.106467,0.15,4 +28061,0,0.509954,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.238893,0.15,4 +29730,0,0.538001,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.912023,0.15,4 +29732,0,0.539511,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.94826,0.15,4 +29733,0,0.535254,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.846089,0.15,4 +29734,0,0.562983,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.511593,0.15,4 +29735,0,0.493133,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.835197,0.15,4 +29738,0,0.553896,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.293514,0.15,4 +106,0,0.427956,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.051,12.478,0,10.270932,4.5,4.5 +977,0,0.443264,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,2.967,3.41,0,10.638341,3.7,5 +1118,0,0.601024,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,4.012,4.612,0,14.424581,4.5,4.5 +39993,0,0.205961,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,1.12,1.326,0,4.943062,4.5,4.5 +1787,0,0.620787,1,1,0,2,4,,4,3,11 Mile,Rd,634509,1.996,2.617,0,14.898893,4.5,4.5 +1789,0,0.138179,1,1,0,2,4,,4,3,10 Mile,Rd,633409,2.286,2.425,0,3.316285,4.5,4.5 +1976,0,0.361593,1,1,1,2,4,,4,3,Inkster,Rd,636410,3.67,4.032,0,8.678226,4.5,4.5 +2620,0,0.256384,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,9.807,10.064,0,6.153204,3.7,5 +3135,0,0.536151,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,9.061,9.597,0,12.86762,3.7,5 +4472,1,2.464914,4,0,0,1,1,,4,3,E I 696,,710701,4.9,7.364,0,,0.8,7.5 +4640,1,0.471358,2,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,1.737,2.208,0,11.312583,3.7,5 +4899,1,0.054403,4,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.313,3.367,0,1.30566,3.7,5 +37646,1,0.17727,4,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.367,3.544,0,4.254477,3.7,5 +5089,-1,0.441398,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,1.782,2.223,0,10.593558,3.7,5 +24874,0,0.590829,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.179902,0.15,4 +27647,0,0.374405,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.98571,0.15,4 +27649,0,0.312805,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.507331,0.15,4 +27651,0,0.364157,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.739769,0.15,4 +27652,0,0.57911,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.898642,0.15,4 +27656,0,0.481309,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.551423,0.15,4 +27657,0,0.255476,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.13143,0.15,4 +27658,0,0.526533,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.636802,0.15,4 +27666,0,0.512545,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.30108,0.15,4 +27667,0,0.359641,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.631382,0.15,4 +27669,0,0.531852,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.76446,0.15,4 +29742,0,0.569334,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.664012,0.15,4 +29885,0,0.386888,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.285309,0.15,4 +222,0,0.510003,1,1,0,2,4,,4,3,11 Mile,Rd,634509,1.486,1.996,0,12.240077,4.5,4.5 +274,0,0.440405,2,2,1,2,4,,3,3,10 Mile,Rd,633409,1.456,1.897,0,10.569717,6,4.5 +292,0,0.232403,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,2.781,3.013,0,5.577662,4.5,4.5 +1354,1,0.443146,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,1.523,1.966,0,10.635512,3.7,5 +2480,0,0.18161,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,8.687,8.868,0,4.358649,3.7,5 +27668,0,0.52893,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.69432,0.15,4 +27671,0,0.269894,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.477465,0.15,4 +27673,0,0.421114,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.106727,0.15,4 +27674,0,0.503706,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.088955,0.15,4 +27675,0,0.513864,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.332726,0.15,4 +394,0,0.099562,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,0.961,1.061,0,2.389483,3.7,5 +1186,0,0.433294,2,2,1,2,4,,3,3,10 Mile,Rd,633409,0.902,1.335,0,10.399047,6,4.5 +29743,0,0.50534,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.128152,0.15,4 +29744,0,0.498656,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.967749,0.15,4 +1867,1,0.140125,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,1.383,1.523,0,3.362991,3.7,5 +744,0,0.12152,2,2,1,2,4,,3,3,10 Mile,Rd,633409,1.335,1.456,0,2.916473,6,4.5 +430,1,0.083492,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,2.399,2.483,0,2.003801,3.7,5 +818,1,0.346932,1,0,0,1,1,RON,4,3,N Orchard Lake/E I 696,RAMP,640905,0,0.347,0,,1.09,4 +1019,1,0.385357,1,0,0,1,1,ROF,4,3,W I 696/Orchard Lake,RAMP,640908,0,0.385,0,,2.24,5 +1154,0,0.448245,1,1,0,2,4,,4,3,11 Mile,Rd,634509,1.003,1.451,0,10.757873,4.5,4.5 +3118,0,0.373963,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,8.063,8.437,0,8.975103,3.7,5 +4441,-1,0.320455,0,4,0,1,1,,4,3,W I 696,,710702,4.635,4.955,0,,0.8,7.5 +4805,1,0.330011,4,0,0,1,1,,4,3,E I 696,,710701,4.57,4.9,0,,0.8,7.5 +26174,0,0.47303,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.352729,0.15,4 +896,1,0.433471,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,1.966,2.399,0,10.403294,3.7,5 +1331,0,0.09143,3,3,1,2,3,,4,3,Orchard Lake,Rd,634003,2.709,2.801,0,2.194309,3.7,5 +19587,1,0.242127,1,0,0,1,1,RON,4,3,N Orchard Lake/W I 96,RAMP,1915509,0,0.242,0,,1.09,4 +749,1,0.128207,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,2.483,2.611,0,3.076961,3.7,5 +19589,1,0.241625,1,0,0,1,1,RON,4,3,S Orchard Lake/E I 696,RAMP,1915508,0,0.242,0,,1.09,4 +1840,0,0.079089,3,3,1,2,3,,4,3,Orchard Lake,Rd,634003,2.63,2.709,0,1.898147,3.7,5 +279,0,0.019266,3,3,1,2,3,,4,3,Orchard Lake,Rd,634003,2.611,2.63,0,0.462377,3.7,5 +1953,0,0.022648,3,3,0,2,3,,4,3,Orchard Lake,Rd,634003,2.872,2.894,0,0.543554,3.7,5 +400,0,0.070973,3,3,1,2,3,,4,3,Orchard Lake,Rd,634003,2.801,2.872,0,1.703348,3.7,5 +1434,0,0.073034,3,3,0,2,3,,4,3,Orchard Lake,Rd,634003,2.894,2.967,0,1.752817,3.7,5 +27670,0,0.366547,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.797128,0.15,4 +714,0,0.035357,1,1,0,2,4,,4,3,11 Mile,Rd,634509,1.451,1.486,0,0.848576,4.5,4.5 +2763,0,0.249959,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,8.437,8.687,0,5.999024,3.7,5 +1192,0,0.367057,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,2.008,2.375,0,8.809366,4.5,4.5 +1839,0,0.390077,1,1,0,2,4,,4,3,10 Mile,Rd,633409,1.897,2.286,0,9.361851,4.5,4.5 +756,0,0.406374,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,2.375,2.781,0,9.752984,4.5,4.5 +569,0,0.352651,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,3.42,3.773,0,8.46362,4.5,4.5 +29740,0,0.514282,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.342763,0.15,4 +1854,0,0.406991,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,3.013,3.42,0,9.767787,4.5,4.5 +3471,0,0.193214,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,8.868,9.061,0,4.637145,3.7,5 +1602,0,0.128409,2,2,1,2,4,,4,3,Middlebelt,Rd,634610,3.883,4.012,0,3.081809,4.5,4.5 +2101,0,0.110471,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,3.773,3.883,0,2.651303,4.5,4.5 +100,0,0.872132,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.957,13.829,0,20.931162,4.5,4.5 +1284,0,0.30437,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,5.019,5.323,0,7.304879,4.5,4.5 +1406,0,0.335951,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,3.973,4.309,0,8.062825,3.7,5 +39998,0,0.055579,2,2,1,2,4,,4,3,14 Mile,Rd,5499983,0.053,0.109,0,1.333895,4.5,4.5 +4347,-1,0.514567,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,1.267,1.782,0,12.349611,3.7,5 +4861,1,0.466008,2,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,1.271,1.737,0,11.184203,3.7,5 +4952,-1,0.486827,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,0.78,1.267,0,11.683849,3.7,5 +5081,1,0.500484,2,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,0.771,1.271,0,12.011617,3.7,5 +26156,0,0.585821,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.059709,0.15,4 +27648,0,0.431717,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.361207,0.15,4 +27655,0,0.52764,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.66335,0.15,4 +27680,0,0.390065,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.361557,0.15,4 +29675,0,0.755857,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.140576,0.15,4 +368,0,0.229365,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,3.41,3.64,0,5.504763,3.7,5 +27677,0,0.471324,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.311772,0.15,4 +99,0,0.125242,1,1,0,2,4,,4,3,13 Mile,Rd,607408,13.829,13.954,0,3.005808,4.5,4.5 +1927,0,0.333415,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,3.64,3.973,0,8.001949,3.7,5 +27676,0,0.52409,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.578171,0.15,4 +373,0,0.150485,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,4.62,4.771,0,3.611643,3.7,5 +39999,1,0.024065,2,0,0,2,4,,4,3,14 Mile,Rd,5499983,0.029,0.053,0,0.577556,4.5,4.5 +39970,0,0.036768,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,5.12,5.157,0,0.882423,4.5,4.5 +39968,0,0.603912,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,5.157,5.761,0,14.493879,4.5,4.5 +27602,0,0.570127,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.68304,0.15,4 +27682,0,0.189474,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.547369,0.15,4 +27683,0,0.165234,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.965619,0.15,4 +944,0,0.311357,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,4.309,4.62,0,7.472574,3.7,5 +40005,1,0.007057,2,0,0,2,3,,4,3,14 Mile,Rd,5500000,0.155,0.162,0,0.169374,3.7,5 +39976,0,0.018008,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,3.691,3.709,0,0.432201,4.5,4.5 +40007,-1,0.034098,0,3,0,2,3,,4,3,14 Mile,Rd,5499977,0.16,0.194,0,0.818345,3.7,5 +40006,1,0.070945,2,0,0,2,3,,4,3,14 Mile,Rd,5500000,0.162,0.233,0,1.702687,3.7,5 +40009,-1,0.039917,0,2,0,2,3,,4,3,14 Mile,Rd,5499977,0.12,0.16,0,0.958019,3.7,5 +40008,1,0.042172,1,0,0,2,3,,4,3,W 14 Mile / Orchard Lake cutof,Rd,5500008,0,0.042,0,1.012126,3.7,5 +40012,-1,0.086626,0,2,0,2,3,,4,3,14 Mile,Rd,5499977,0,0.087,0,2.079016,3.7,5 +39980,0,0.092363,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,3.202,3.294,0,2.216718,4.5,4.5 +27678,0,0.230358,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.528585,0.15,4 +27679,0,0.253288,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.078905,0.15,4 +27681,0,0.217988,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.231706,0.15,4 +101,0,0.300092,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.657,12.957,0,7.202217,4.5,4.5 +27262,0,0.54483,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.075926,0.15,4 +27650,0,0.449719,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.793263,0.15,4 +1780,0,0.213997,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,4.805,5.019,0,5.135922,4.5,4.5 +214,0,0.168623,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,4.636,4.805,0,4.046951,4.5,4.5 +678,0,0.024098,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,4.612,4.636,0,0.578364,4.5,4.5 +103,0,0.053849,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.603,12.657,0,1.292386,4.5,4.5 +104,0,0.0369,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.566,12.603,0,0.885592,4.5,4.5 +105,0,0.088072,1,1,0,2,4,,4,3,13 Mile,Rd,607408,12.478,12.566,0,2.11373,4.5,4.5 +953,0,0.482029,1,1,1,2,4,,4,3,Middlebelt,Rd,634610,5.552,6.034,0,11.568707,4.5,4.5 +39995,0,0.282299,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,0.535,0.817,0,6.775171,4.5,4.5 +27653,0,0.52206,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.529432,0.15,4 +27654,0,0.442717,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.625211,0.15,4 +360,0,0.195375,1,1,1,2,4,,4,3,Middlebelt,Rd,634610,5.356,5.552,0,4.689011,4.5,4.5 +829,0,0.033132,2,2,0,2,4,,4,3,Middlebelt,Rd,634610,5.323,5.356,0,0.795159,4.5,4.5 +39997,0,0.426453,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,0.109,0.535,0,10.234876,4.5,4.5 +267,0,0.553269,1,1,1,2,4,,4,3,11 Mile,Rd,634509,3.215,3.768,0,13.278467,4.5,4.5 +837,0,0.309874,1,1,0,2,4,,4,3,10 Mile,Rd,633409,2.895,3.205,0,7.436967,4.5,4.5 +1247,0,0.46999,1,1,0,2,4,,4,3,Inkster,Rd,636410,2.546,3.016,0,11.279752,4.5,4.5 +27638,0,0.514101,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.338429,0.15,4 +27660,0,0.338799,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.13118,0.15,4 +27684,0,0.554229,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.301504,0.15,4 +404,0,0.403616,1,1,0,2,4,,4,3,Inkster,Rd,636410,2.016,2.42,0,9.686781,4.5,4.5 +1293,0,0.470362,1,1,0,2,4,,4,3,10 Mile,Rd,633409,2.425,2.895,0,11.288689,4.5,4.5 +27665,0,0.509883,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.237199,0.15,4 +1734,0,0.126986,1,1,0,2,4,,4,3,Inkster,Rd,636410,2.42,2.546,0,3.047659,4.5,4.5 +334,0,0.346597,1,1,0,2,4,,4,3,Inkster,Rd,636410,3.176,3.523,0,8.318321,4.5,4.5 +1180,0,0.377908,1,1,0,2,4,,4,3,11 Mile,Rd,634509,2.617,2.995,0,9.0698,4.5,4.5 +27661,0,0.481135,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.547233,0.15,4 +2895,0,0.210072,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,9.597,9.807,0,5.041723,3.7,5 +27659,0,0.301705,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.240918,0.15,4 +740,0,0.220069,1,1,1,2,4,,4,3,11 Mile,Rd,634509,2.995,3.215,0,5.281653,4.5,4.5 +799,0,0.160256,1,1,0,2,4,,4,3,Inkster,Rd,636410,3.016,3.176,0,3.846137,4.5,4.5 +27672,0,0.244144,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.859449,0.15,4 +1893,0,0.147262,1,1,1,2,4,,4,3,Inkster,Rd,636410,3.523,3.67,0,3.534279,4.5,4.5 +1495,0,0.532066,1,1,0,2,4,,4,3,10 Mile,Rd,633409,3.358,3.889,0,12.769588,4.5,4.5 +29741,0,0.457487,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.979693,0.15,4 +371,0,0.152999,1,1,0,2,4,,4,3,10 Mile,Rd,633409,3.205,3.358,0,3.671966,4.5,4.5 +37649,-1,0.189327,0,4,0,2,3,DIV,4,3,Northwestern,Hwy,710102,3.355,3.545,0,4.543855,3.7,5 +37650,-1,0.217299,0,4,0,2,3,DIV,4,3,Northwestern,Hwy,710102,3.545,3.762,0,5.215166,3.7,5 +25777,0,0.262639,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.303348,0.15,4 +30249,0,0.513202,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.31684,0.15,4 +1832,0,0.369273,1,1,1,2,4,,4,3,11 Mile,Rd,634509,3.768,4.137,0,8.862546,4.5,4.5 +37647,1,0.260976,4,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.544,3.805,0,6.26343,3.7,5 +3727,0,0.123442,1,1,0,2,5,,4,3,Beck,Rd,684704,0,0.123,0,2.962607,5.8,4.5 +4616,1,0.106327,3,0,0,2,3,DIV,4,3,S M 10,,710010,3.835,3.941,0,2.551847,3.7,5 +4756,-1,0.212069,0,3,0,2,3,DIV,4,3,N M 10,,710102,3.762,3.974,0,5.089653,3.7,5 +25779,0,0.236103,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.666469,0.15,4 +27629,0,0.173276,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.158628,0.15,4 +37070,1,0.029412,2,0,0,2,3,,4,3,S Telegraph/N Franklin,TURN,4463205,0,0.029,0,0.705896,3.7,5 +3726,-1,0.068719,0,1,0,2,5,,4,3,Beck,Rd,684704,0.123,0.192,0,1.649252,5.8,4.5 +4581,1,0.029669,3,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.805,3.835,0,0.712053,3.7,5 +20982,1,0.061459,2,0,0,2,5,,4,3,Beck,Rd,4410517,0,0.062,0,1.475018,5.8,4.5 +37068,0,0.020573,1,1,0,2,5,,4,3,Northwestern,Hwy,4415772,0,0.021,0,0.493745,5.8,4.5 +110,0,0.379947,1,1,0,2,4,,4,3,13 Mile,Rd,607408,11.208,11.588,0,9.118725,4.5,4.5 +39994,0,0.303324,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,0.817,1.12,0,7.279786,4.5,4.5 +2026,0,0.502316,1,1,0,2,4,,4,3,Inkster,Rd,636410,5.03,5.532,0,12.055584,4.5,4.5 +3335,0,0.203641,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.359,10.562,0,4.887376,3.7,5 +4249,1,0.623931,3,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,2.578,3.201,0,14.974349,3.7,5 +5088,-1,0.647335,0,3,0,2,3,DIV,4,3,Northwestern,Hwy,710102,2.573,3.22,0,15.536047,3.7,5 +20189,0,0.328359,1,1,0,2,4,,4,3,Franklin,Rd,4400056,1.032,1.36,0,7.880619,4.5,4.5 +26210,0,0.514773,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.354558,0.15,4 +27687,0,0.374503,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.988083,0.15,4 +27691,0,0.321219,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.709266,0.15,4 +27692,0,0.168473,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.043357,0.15,4 +29688,0,0.502916,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.069976,0.15,4 +107,0,0.096361,1,1,0,2,4,,4,3,13 Mile,Rd,607408,11.954,12.051,0,2.312674,4.5,4.5 +2078,0,0.109076,1,1,0,2,4,,4,3,Inkster,Rd,636410,4.527,4.636,0,2.617817,4.5,4.5 +3878,1,0.369607,2,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,2.208,2.578,0,8.870566,3.7,5 +4760,-1,0.34983,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,2.223,2.573,0,8.395929,3.7,5 +27634,0,0.316488,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.595722,0.15,4 +26154,0,0.151474,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.635376,0.15,4 +27662,0,0.209631,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.031136,0.15,4 +27664,0,0.128175,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.076197,0.15,4 +1463,0,0.331366,1,1,1,2,4,,4,3,Inkster,Rd,636410,4.032,4.363,0,7.952791,4.5,4.5 +3239,0,0.154338,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.204,10.359,0,3.704112,3.7,5 +26673,0,0.263085,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.314044,0.15,4 +27685,0,0.175331,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.207949,0.15,4 +3550,0,0.1406,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.064,10.204,0,3.3744,3.7,5 +993,0,0.130703,1,1,1,2,4,,4,3,Inkster,Rd,636410,4.363,4.494,0,3.13687,4.5,4.5 +532,0,0.032973,1,1,1,2,4,,4,3,Inkster,Rd,636410,4.494,4.527,0,0.791348,4.5,4.5 +108,0,0.294528,1,1,0,2,4,,4,3,13 Mile,Rd,607408,11.66,11.954,0,7.068682,4.5,4.5 +478,0,0.39408,1,1,0,2,4,,4,3,Inkster,Rd,636410,4.636,5.03,0,9.457929,4.5,4.5 +27689,0,0.318704,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.648903,0.15,4 +27690,0,0.239498,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.747952,0.15,4 +109,0,0.071699,1,1,0,2,4,,4,3,13 Mile,Rd,607408,11.588,11.66,0,1.720765,4.5,4.5 +1043,0,0.347308,1,1,0,2,4,,4,3,Inkster,Rd,636410,5.577,5.924,0,8.3354,4.5,4.5 +39991,0,0.406506,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,1.326,1.733,0,9.75614,4.5,4.5 +27688,0,0.380499,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.131973,0.15,4 +1515,0,0.045227,1,1,0,2,4,,4,3,Inkster,Rd,636410,5.532,5.577,0,1.085455,4.5,4.5 +111,0,0.297367,1,1,0,2,4,,4,3,13 Mile,Rd,607408,10.911,11.208,0,7.136818,4.5,4.5 +20596,0,0.264495,1,1,0,2,4,,4,3,Franklin,Rd,4400056,0.443,0.708,0,6.347888,4.5,4.5 +27631,0,0.650389,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.609345,0.15,4 +28377,0,0.654755,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.714117,0.15,4 +3018,0,0.069389,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.562,10.632,0,1.665348,3.7,5 +4066,1,0.088158,4,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.224,3.313,0,2.11579,3.7,5 +4758,-1,0.135685,0,4,0,2,3,DIV,4,3,Northwestern,Hwy,710102,3.22,3.355,0,3.256435,3.7,5 +20141,0,0.28551,1,1,0,2,4,,4,3,Franklin,Rd,4400056,0,0.285,0,6.852248,4.5,4.5 +3225,-1,0.053605,0,2,0,2,4,,4,3,Franklin,Rd,663607,0,0.054,0,1.286528,4.5,4.5 +4532,1,0.022994,4,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,3.201,3.224,0,0.551862,3.7,5 +21107,0,0.034586,1,1,0,2,3,,4,3,Northwestern/Franklin Turn,,4410021,0,0.035,0,0.830065,3.7,5 +20836,0,0.158045,1,1,0,2,4,,4,3,Franklin,Rd,4400056,0.285,0.443,0,3.793076,4.5,4.5 +3164,0,0.034938,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.632,10.666,0,0.838515,3.7,5 +20391,0,0.323791,1,1,0,2,4,,4,3,Franklin,Rd,4400056,0.708,1.032,0,7.770982,4.5,4.5 +27633,0,0.283297,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.79913,0.15,4 +112,0,0.156888,1,1,0,2,4,,4,3,13 Mile,Rd,607408,10.754,10.911,0,3.765316,4.5,4.5 +20649,0,0.512887,1,1,0,2,4,,4,3,Franklin,Rd,4400056,1.534,2.047,0,12.309291,4.5,4.5 +20884,0,0.174255,1,1,0,2,4,,4,3,Franklin,Rd,4400056,1.36,1.534,0,4.182124,4.5,4.5 +39985,0,0.136651,1,1,0,2,4,GRV,4,3,14 Mile,Rd,5499983,2.356,2.492,0,3.279616,6.55,4.5 +39987,0,0.508638,1,1,0,2,4,GRV,4,3,14 Mile,Rd,5499983,1.847,2.356,0,12.207317,6.55,4.5 +369,0,0.317754,1,1,0,2,3,,4,3,Long Lake,Rd,641102,1.55,1.868,0,7.626101,3.7,5 +842,0,0.529644,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,10.111,10.641,0,12.711462,4.5,4.5 +935,0,0.214615,1,1,0,2,5,,4,3,Lone Pine,Rd,616805,2.661,2.876,0,5.150763,5.8,4.5 +1233,0,0.390385,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,0,0.39,0,9.369234,5.8,4.5 +1327,0,0.192558,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,7.439,7.632,0,4.621392,3.7,5 +1931,0,0.669551,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,5.642,6.311,0,16.069236,4.5,4.5 +1943,0,0.246529,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,8.379,8.626,0,5.916707,4.5,4.5 +3816,0,0.244381,1,1,0,2,3,,4,3,Maple,Rd,683906,7.662,7.906,0,5.865141,3.7,5 +19590,0,0.345563,1,1,0,2,5,,4,3,Lone Pine,Rd,1852108,0.507,0.853,0,8.293509,5.8,4.5 +20537,0,0.25551,1,1,0,2,4,,4,3,Franklin,Rd,4400056,4.397,4.652,0,6.132236,4.5,4.5 +24953,0,0.542101,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.010435,0.15,4 +25189,0,0.414542,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.949016,0.15,4 +25448,0,0.553803,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.291267,0.15,4 +25761,0,0.517762,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.426297,0.15,4 +25762,0,0.501615,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.038751,0.15,4 +27695,0,0.47194,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.326549,0.15,4 +27703,0,0.482873,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.588957,0.15,4 +27704,0,0.305277,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.326658,0.15,4 +27705,0,0.544991,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.079779,0.15,4 +29764,0,0.296523,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.116546,0.15,4 +743,0,0.164034,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,6.346,6.51,0,3.936819,3.7,5 +1063,0,0.524742,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,7.036,7.56,0,12.593814,4.5,4.5 +2083,0,0.312621,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,4.912,5.225,0,7.502907,4.5,4.5 +3818,0,0.409642,1,1,0,2,3,,4,3,Maple,Rd,683906,6.876,7.286,0,9.83141,3.7,5 +25751,0,0.535247,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.845929,0.15,4 +26005,0,0.608531,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.604754,0.15,4 +27708,0,0.437406,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.497755,0.15,4 +27710,0,0.506561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.157475,0.15,4 +27711,0,0.505349,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.128374,0.15,4 +27712,0,0.482869,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.588846,0.15,4 +3820,0,0.466808,1,1,0,2,3,,4,3,Maple,Rd,683906,6.285,6.752,0,11.203387,3.7,5 +25752,0,0.503217,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.077209,0.15,4 +25753,0,0.571058,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.705386,0.15,4 +680,0,0.353466,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,5.992,6.346,0,8.483191,3.7,5 +3819,0,0.124106,1,1,0,2,3,,4,3,Maple,Rd,683906,6.752,6.876,0,2.97855,3.7,5 +271,0,0.488677,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,6.51,6.998,0,11.728254,3.7,5 +1076,0,0.496357,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,4.2,4.696,0,11.912575,4.5,4.5 +25447,0,0.497637,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.943292,0.15,4 +26004,0,0.504831,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.115946,0.15,4 +26006,0,0.454117,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.898807,0.15,4 +1837,0,0.441303,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,6.998,7.439,0,10.591283,3.7,5 +624,0,0.216521,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,4.696,4.912,0,5.196505,4.5,4.5 +26007,0,0.461889,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.08533,0.15,4 +1535,0,0.346887,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,6.689,7.036,0,8.325276,4.5,4.5 +3817,0,0.376108,1,1,0,2,3,,4,3,Maple,Rd,683906,7.286,7.662,0,9.026604,3.7,5 +25760,0,0.527844,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.668261,0.15,4 +2044,0,0.343153,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,6.346,6.689,0,8.235672,4.5,4.5 +27709,0,0.373695,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.968672,0.15,4 +387,0,0.427942,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,7.951,8.379,0,10.270604,4.5,4.5 +1584,0,0.35353,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,5.225,5.578,0,8.48472,4.5,4.5 +27699,0,0.489775,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.754598,0.15,4 +851,0,0.391295,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,7.56,7.951,0,9.391068,4.5,4.5 +372,0,0.063657,1,1,0,2,4,,4,3,Walnut Lake,Rd,622906,5.578,5.642,0,1.527774,4.5,4.5 +1302,0,0.69731,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,9.414,10.111,0,16.735441,4.5,4.5 +1449,0,0.38268,1,1,0,2,5,,4,3,Lone Pine,Rd,640302,0.591,0.974,0,9.184324,5.8,4.5 +2097,0,0.500371,1,1,0,2,3,,4,3,Long Lake,Rd,641102,0.365,0.865,0,12.008898,3.7,5 +24823,0,0.682895,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.389469,0.15,4 +24824,0,0.697901,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.749614,0.15,4 +25993,0,0.439324,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.543787,0.15,4 +25994,0,0.693957,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.654957,0.15,4 +27698,0,0.474903,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.39767,0.15,4 +1965,0,0.344762,1,1,0,2,5,,4,3,Lone Pine,Rd,640302,0.247,0.591,0,8.274279,5.8,4.5 +25991,0,0.319376,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.66502,0.15,4 +563,0,0.364601,1,1,0,2,3,,4,3,Long Lake,Rd,641102,0,0.365,0,8.750416,3.7,5 +1713,0,0.631568,1,1,0,2,3,,4,3,Orchard Lake,Rd,634003,9.063,9.694,0,15.157637,3.7,5 +2002,0,0.263055,1,1,0,2,3,,4,3,Orchard Lake,Rd,634003,8.8,9.063,0,6.313321,3.7,5 +1798,0,0.409102,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,9.005,9.414,0,9.81844,4.5,4.5 +19591,0,0.507557,1,1,0,2,5,,4,3,Lone Pine,Rd,1852108,0,0.507,0,12.181376,5.8,4.5 +25992,0,0.434731,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.433543,0.15,4 +963,0,0.206661,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,8.799,9.005,0,4.959862,4.5,4.5 +987,0,0.253583,1,1,0,2,5,,4,3,Lone Pine,Rd,640302,0.974,1.228,0,6.085986,5.8,4.5 +1422,0,0.17301,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,8.626,8.799,0,4.152241,4.5,4.5 +1599,0,0.412323,1,1,0,2,3,,4,3,Long Lake,Rd,641102,0.865,1.277,0,9.895746,3.7,5 +25186,0,0.808301,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.399229,0.15,4 +835,0,0.273004,1,1,0,2,3,,4,3,Long Lake,Rd,641102,1.277,1.55,0,6.552107,3.7,5 +599,0,0.219813,1,1,0,2,4,,4,3,Inkster,Rd,616805,1.451,1.671,0,5.275505,4.5,4.5 +1382,0,0.150303,1,1,0,2,5,,4,3,Walnut Lake,Rd,622906,6.683,6.833,0,3.60727,5.8,4.5 +2060,0,0.028539,1,1,0,2,4,,4,3,Quarton,Rd,618807,0.476,0.505,0,0.684939,4.5,4.5 +3813,0,0.280061,1,1,0,2,3,,4,3,Maple,Rd,683906,8.557,8.836,0,6.721469,3.7,5 +20717,0,0.457797,1,1,0,2,4,,4,3,Franklin,Rd,4400056,3.085,3.542,0,10.987128,4.5,4.5 +24954,0,0.479847,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.516318,0.15,4 +25764,0,0.527302,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.655241,0.15,4 +27706,0,0.27857,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.685681,0.15,4 +27715,0,0.492063,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.809517,0.15,4 +29731,0,0.49675,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.921999,0.15,4 +30244,0,0.121093,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.906239,0.15,4 +495,0,0.563086,1,1,0,2,4,,4,3,Inkster,Rd,616805,0.6,1.162,0,13.514055,4.5,4.5 +3814,0,0.263094,1,1,0,2,3,,4,3,Maple,Rd,683906,8.294,8.557,0,6.314268,3.7,5 +712,0,0.111798,1,1,0,2,4,,4,3,Inkster,Rd,616805,0.488,0.6,0,2.683149,4.5,4.5 +2047,0,0.288785,1,1,0,2,4,,4,3,Inkster,Rd,616805,1.162,1.451,0,6.93084,4.5,4.5 +3815,0,0.387681,1,1,0,2,3,,4,3,Maple,Rd,683906,7.906,8.294,0,9.304333,3.7,5 +879,0,0.476495,1,1,0,2,4,,4,3,Quarton,Rd,618807,0,0.476,0,11.435883,4.5,4.5 +1895,0,0.371714,1,1,0,2,5,,4,3,Walnut Lake,Rd,622906,6.311,6.683,0,8.921134,5.8,4.5 +2129,0,0.470439,1,1,0,2,4,,4,3,Inkster,Rd,616805,1.671,2.141,0,11.290544,4.5,4.5 +1703,0,0.243389,1,1,0,2,5,,4,3,Inkster,Rd,616805,2.141,2.385,0,5.841334,5.8,4.5 +1392,0,0.198558,1,1,0,2,5,,4,3,Inkster,Rd,616805,2.463,2.661,0,4.765393,5.8,4.5 +1219,0,0.078166,1,1,0,2,5,,4,3,Inkster,Rd,616805,2.385,2.463,0,1.875983,5.8,4.5 +3812,0,0.423837,1,1,0,2,3,,4,3,Maple,Rd,683906,8.836,9.26,0,10.172097,3.7,5 +19895,0,0.490438,1,1,0,2,4,,4,3,Franklin,Rd,4400056,2.594,3.085,0,11.770502,4.5,4.5 +25763,0,0.474274,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.382582,0.15,4 +20244,0,0.278954,1,1,0,2,4,,4,3,Franklin,Rd,4400056,2.315,2.594,0,6.694887,4.5,4.5 +3811,0,0.282513,2,2,1,2,3,,4,3,Maple,Rd,683906,9.26,9.543,0,6.780308,3.7,5 +1554,0,0.471331,1,1,0,2,4,,4,3,Quarton,Rd,618807,0.505,0.976,0,11.311948,4.5,4.5 +1721,0,0.457416,1,1,0,2,5,,4,3,Walnut Lake,Rd,622906,6.833,7.29,0,10.977978,5.8,4.5 +20292,0,0.403812,1,1,0,2,4,,4,3,Franklin,Rd,4400056,3.651,4.054,0,9.691488,4.5,4.5 +25755,0,0.482875,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.589006,0.15,4 +29682,0,0.487254,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.694092,0.15,4 +27713,0,0.05712,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.370883,0.15,4 +20481,0,0.108534,1,1,0,2,4,,4,3,Franklin,Rd,4400056,3.542,3.651,0,2.604811,4.5,4.5 +20095,0,0.256448,1,1,0,2,4,,4,3,Franklin,Rd,4400056,4.054,4.311,0,6.154751,4.5,4.5 +20785,0,0.086101,1,1,0,2,4,,4,3,Franklin,Rd,4400056,4.311,4.397,0,2.066434,4.5,4.5 +1407,0,0.470926,1,1,0,2,3,,4,3,Long Lake,Rd,641102,2.225,2.696,0,11.302234,3.7,5 +1642,0,0.223085,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,0.39,0.613,0,5.354049,5.8,4.5 +25200,0,0.845054,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.281295,0.15,4 +27700,0,1.315728,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,31.577479,0.15,4 +27701,0,0.626543,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.037026,0.15,4 +27702,0,0.540016,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.96038,0.15,4 +29765,0,0.683085,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.394031,0.15,4 +27625,0,0.542906,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.029735,0.15,4 +1928,0,0.3574,1,1,0,2,3,,4,3,Long Lake,Rd,641102,1.868,2.225,0,8.577608,3.7,5 +379,0,0.199801,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,10.641,10.84,0,4.795226,4.5,4.5 +945,0,0.25831,1,1,0,2,3,,4,3,Long Lake,Rd,641102,2.696,2.954,0,6.199442,3.7,5 +1166,0,0.392975,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,0.613,1.006,0,9.431404,5.8,4.5 +20142,0,0.184273,1,1,0,2,4,,4,3,Franklin,Rd,4400056,5.046,5.23,0,4.422545,4.5,4.5 +20344,0,0.393658,1,1,0,2,4,,4,3,Franklin,Rd,4400056,4.652,5.046,0,9.447792,4.5,4.5 +20837,0,0.290716,1,1,0,2,4,,4,3,Franklin,Rd,4400056,5.23,5.521,0,6.977177,4.5,4.5 +119,0,0.322086,1,1,0,2,4,,4,3,13 Mile,Rd,607408,9,9.322,0,7.730076,4.5,4.5 +39972,0,0.391183,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,4.371,4.762,0,9.38839,4.5,4.5 +1732,0,0.242977,2,2,1,2,4,,3,3,10 Mile,Rd,633409,5.587,5.83,0,5.831445,6,4.5 +2640,0,0.530456,2,2,0,2,4,,3,3,Evergreen,Rd,666003,3.49,4.02,0,12.730933,6,4.5 +3536,0,0.495927,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,12.509,13.005,0,11.902244,5,5 +3694,0,0.542483,1,1,0,2,4,,4,3,Lahser,Rd,685510,5.5,6.042,0,13.019596,4.5,4.5 +3701,0,0.326608,2,2,1,2,4,,3,3,Lahser,Rd,685510,3.699,4.026,0,7.838582,6,4.5 +40449,1,0.462686,2,0,0,2,4,DIV,3,3,Civic Center,Dr,684205,0.313,0.775,0,11.104456,6,4.5 +4056,-1,0.484939,0,3,0,1,2,,3,3,N M 10,,710102,5.846,6.33,0,,0.58,7 +4238,-1,0.119344,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.976,4.096,0,2.864264,5,5 +4282,1,0.659496,3,0,0,1,2,,3,3,S M 10,,710010,5.652,6.311,0,,0.58,7 +4508,0,0.280335,1,1,1,2,5,,3,3,Northwestern,Hwy,710508,0.769,1.049,0,6.728038,8,4.5 +4730,-1,1.784523,0,3,0,1,1,,3,3,W I 696,,710702,8.242,10.026,0,,0.58,7 +4785,1,0.447405,4,0,0,1,1,,3,3,E I 696,,710701,9.394,9.841,0,,0.58,7 +5014,1,0.119967,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,3.974,4.095,0,2.879208,5,5 +19756,1,0.326069,2,0,0,1,1,RFF,3,3,W I 696/N M 10,RAMP,1903904,0.253,0.579,0,,0.58,7 +20245,0,0.152707,1,1,0,2,5,,3,3,11 Mile,Rd,4400088,1.399,1.552,0,3.664961,8,4.5 +37072,1,0.205849,2,0,0,2,3,DV2,4,3,Joslyn,Rd,674110,3.097,3.303,0,4.940364,3.7,5 +20653,1,0.125989,2,0,0,1,1,ROF,3,3,W I 696/Lahser,RAMP,4400160,0,0.126,0,,2.24,5 +27644,0,0.276843,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.644229,0.15,4 +27719,0,0.23514,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.643363,0.15,4 +27722,0,0.242057,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.809358,0.15,4 +27735,0,0.659443,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.826622,0.15,4 +27736,0,0.289178,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.94026,0.15,4 +28085,0,0.601942,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.446614,0.15,4 +28108,0,0.380521,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.1325,0.15,4 +29676,0,0.494665,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.871967,0.15,4 +1784,0,0.206042,1,1,1,2,4,,4,3,Franklin,Rd,638109,1.393,1.599,0,4.945011,4.5,4.5 +2043,0,0.127397,2,2,1,2,4,,3,3,10 Mile,Rd,633409,4.77,4.897,0,3.057526,6,4.5 +3763,0,0.298135,2,2,1,2,4,,3,3,Civic Center,Dr,684205,0.015,0.313,0,7.15524,6,4.5 +4005,1,0.40715,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,2.589,2.996,0,9.771594,5,5 +4060,-1,0.789653,0,5,0,1,2,,3,3,N M 10,,710102,4.777,5.566,0,,0.58,7 +4392,-1,0.228396,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,2.821,3.05,0,5.4815,5,5 +4513,0,0.579753,1,1,1,2,5,,3,3,Northwestern,Hwy,710508,0,0.58,0,13.914077,8,4.5 +5067,1,0.30678,4,0,0,1,2,,3,3,S M 10,,710010,5.036,5.343,0,,0.58,7 +19481,1,0.246353,1,0,0,1,1,RON,3,3,N US 24/E I 696,RAMP,1903806,0,0.246,0,,1.09,4 +20885,0,0.746142,1,1,0,2,5,,3,3,Northwestern,Hwy,4400088,0,0.746,0,17.907403,8,4.5 +27738,0,0.24552,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.89247,0.15,4 +30252,0,0.552084,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.250005,0.15,4 +568,0,0.496392,1,1,0,2,4,,4,3,10 Mile,Rd,633409,4.06,4.556,0,11.913408,4.5,4.5 +4433,-1,0.563233,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,2.041,2.604,0,13.517592,5,5 +4697,1,0.546963,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,2.042,2.589,0,13.127121,5,5 +27636,0,0.493005,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.832112,0.15,4 +27639,0,0.500304,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.007306,0.15,4 +2099,0,0.192224,1,1,0,2,4,,4,3,10 Mile,Rd,633409,4.556,4.748,0,4.613373,4.5,4.5 +492,0,0.021793,2,2,1,2,4,,3,3,10 Mile,Rd,633409,4.748,4.77,0,0.523027,6,4.5 +1287,0,0.23653,1,1,1,2,4,,4,3,Franklin,Rd,638109,1.599,1.835,0,5.676714,4.5,4.5 +4408,-1,0.21727,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,2.604,2.821,0,5.214471,5,5 +831,0,0.01388,1,1,0,2,4,,3,3,Civic Center,Dr,638109,1.835,1.849,0,0.333127,6,4.5 +3764,0,0.014984,1,1,0,2,4,,3,3,Civic Center,Dr,684205,0,0.015,0,0.359617,6,4.5 +3660,0,0.110904,2,2,0,2,5,,4,3,Swanson,Rd,686906,0,0.111,0,2.661695,5.8,4.5 +4384,-1,0.099808,0,3,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.41,3.51,0,2.395397,5,5 +4687,1,0.308464,3,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,3.246,3.554,0,7.403141,5,5 +4739,1,0.232909,5,0,0,1,2,,4,3,S M 10,,710010,4.384,4.616,0,,0.8,7.5 +4751,-1,0.153879,0,4,0,1,2,,4,3,N M 10,,710102,4.434,4.588,0,,0.8,7.5 +4970,1,0.182645,1,0,0,1,2,ROF,3,3,N M 10/N US 24,RAMP,710109,0,0.183,0,,2.24,5 +5043,1,0.142626,1,0,0,1,2,RON,4,3,S US 24/N M 10,RAMP,710105,0.149,0.292,0,,1.09,4 +5079,-1,0.119556,0,4,0,1,2,,3,3,N M 10,,710102,4.588,4.708,0,,0.58,7 +19218,1,0.238059,1,0,0,1,1,RON,4,3,S US 24/W I 696,RAMP,1813005,0,0.238,0,,1.09,4 +20597,0,0.363776,1,1,1,2,5,,4,3,Northwestern,Hwy,4400087,0,0.364,0,8.730632,5.8,4.5 +27643,0,0.408057,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.793371,0.15,4 +27646,0,0.388358,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.320592,0.15,4 +1616,0,0.019319,1,1,1,2,4,,4,3,Franklin,Rd,638109,1.373,1.393,0,0.463654,4.5,4.5 +4422,-1,0.249006,0,3,0,1,1,,4,3,W I 696,,710702,7.993,8.242,0,,0.8,7.5 +19219,1,0.164142,1,0,0,1,1,RFF,4,3,N M 10/W I 696,RAMP,1813004,0,0.164,0,,0.8,7.5 +20392,0,0.351229,1,1,0,2,5,,4,3,Northwestern,Hwy,4400087,0.364,0.715,0,8.429501,5.8,4.5 +27645,0,0.198143,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.755442,0.15,4 +5080,-1,0.115512,0,4,0,1,2,,4,3,N M 10,,710102,4.319,4.434,0,,0.8,7.5 +2558,1,0.119676,1,0,0,1,2,RON,3,3,N US 24/S M 10,RAMP,663707,0,0.12,0,,1.09,4 +2847,1,0.305592,1,0,0,1,2,ROF,4,3,S M 10/S US 24,RAMP,663706,0,0.306,0,,2.24,5 +3948,1,0.202123,1,0,0,1,2,RON,3,3,N US 24/N M 10,RAMP,710108,0,0.202,0,,1.09,4 +4117,1,0.151232,4,0,0,1,2,,3,3,S M 10,,710010,4.746,4.897,0,,0.58,7 +4386,-1,0.360777,0,3,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.05,3.41,0,8.658641,5,5 +4749,-1,0.069489,0,4,0,1,2,,3,3,N M 10,,710102,4.708,4.777,0,,0.58,7 +4978,1,0.187442,1,0,0,1,2,ROF,3,3,S M 10/N US 24,RAMP,710107,0,0.187,0,,2.24,5 +5021,1,0.120906,3,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,3.125,3.246,0,2.901748,5,5 +5023,1,0.128707,3,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,2.996,3.125,0,3.088972,5,5 +4033,1,0.187378,1,0,0,1,2,RON,4,3,S US 24/S M 10,RAMP,710101,0,0.187,0,,1.09,4 +4418,1,0.129868,4,0,0,1,2,,4,3,S M 10,,710010,4.616,4.746,0,,0.8,7.5 +3531,1,0.135269,1,0,0,1,2,RON,3,3,N US 24/S M 10,RAMP,663707,0.12,0.255,0,,1.09,4 +4226,1,0.139116,4,0,0,1,2,,3,3,S M 10,,710010,4.897,5.036,0,,0.58,7 +4000,1,0.201894,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,3.554,3.756,0,4.845464,5,5 +4286,-1,0.058107,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.7,3.758,0,1.394575,5,5 +27731,0,0.336065,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.065553,0.15,4 +30251,0,0.320278,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.686664,0.15,4 +4723,1,0.149453,1,0,0,1,2,RON,4,3,S US 24/N M 10,RAMP,710105,0,0.149,0,,1.09,4 +4875,-1,0.190024,0,3,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.51,3.7,0,4.560568,5,5 +5049,1,0.201128,1,0,0,1,2,ROF,4,3,N M 10/S US 24,RAMP,710104,0,0.201,0,,2.24,5 +3945,-1,0.209613,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.767,3.976,0,5.03071,5,5 +5020,1,0.218801,4,0,0,2,3,DIV,3,3,Telegraph,Rd,710106,3.756,3.974,0,5.251215,5,5 +21108,1,0.023842,1,0,0,2,3,,3,3,S Telegraph/Northwestern SD,,4410016,0,0.024,0,0.572213,5,5 +4982,-1,0.008564,0,4,0,2,3,DIV,3,3,Telegraph,Rd,710009,3.758,3.767,0,0.205544,5,5 +1534,0,0.470276,2,2,1,2,4,,3,3,10 Mile,Rd,633409,4.897,5.367,0,11.286626,6,4.5 +21019,0,0.283102,1,1,0,2,5,,3,3,Berg,Rd,4410215,2.072,2.355,0,6.794442,8,4.5 +26176,0,0.255861,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.140664,0.15,4 +28066,0,0.326074,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.825786,0.15,4 +29678,0,0.434002,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.41604,0.15,4 +21017,0,0.267268,1,1,0,2,5,,3,3,Berg,Rd,4410215,2.565,2.832,0,6.414423,8,4.5 +27739,0,0.255987,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.143677,0.15,4 +27741,0,0.335822,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.059723,0.15,4 +21018,0,0.210678,1,1,0,2,5,,3,3,Berg,Rd,4410215,2.355,2.565,0,5.056282,8,4.5 +1062,0,0.219711,2,2,1,2,4,,3,3,10 Mile,Rd,633409,5.367,5.587,0,5.273072,6,4.5 +40451,0,0.07006,2,2,1,2,4,,3,3,Civic Center,Dr,684205,1.182,1.252,0,1.681433,6,4.5 +4462,1,0.457875,3,0,0,1,1,,3,3,E I 696,,710701,8.936,9.394,0,,0.58,7 +4765,1,0.30892,3,0,0,1,2,,3,3,S M 10,,710010,5.343,5.652,0,,0.58,7 +19480,1,0.235466,1,0,0,1,1,RFF,3,3,S M 10/E I 696,RAMP,1903808,0,0.235,0,,0.58,7 +20650,0,0.365459,1,1,0,2,5,,3,3,Northwestern,Hwy,4400088,0.746,1.111,0,8.771016,8,4.5 +27728,0,0.404677,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.712251,0.15,4 +3677,1,0.159956,1,0,0,1,2,ROF,3,3,S M 10/Lahser,RAMP,686101,0,0.16,0,,2.24,5 +4849,0,0.189469,1,1,1,2,5,,3,3,Northwestern,Hwy,710508,0.58,0.769,0,4.547257,8,4.5 +5072,-1,0.279248,0,3,0,1,2,,3,3,N M 10,,710102,5.566,5.846,0,,0.58,7 +20432,0,0.287726,1,1,0,2,5,,3,3,11 Mile,Rd,4400088,1.111,1.399,0,6.905419,8,4.5 +116,0,0.377994,1,1,0,2,4,,4,3,13 Mile,Rd,607408,9.573,9.95,0,9.071863,4.5,4.5 +40000,-1,0.025676,0,2,0,2,4,,4,3,14 Mile,Rd,5499984,0,0.026,0,0.616227,4.5,4.5 +2714,0,0.422583,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,11.83,12.253,0,10.141991,5,5 +4131,-1,0.521802,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,5.092,5.614,0,12.52324,3.7,5 +5007,1,0.200461,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,5.091,5.292,0,4.811056,3.7,5 +27604,0,0.456356,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.95254,0.15,4 +27716,0,0.519237,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.461699,0.15,4 +27718,0,0.502755,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.066125,0.15,4 +27732,0,0.572216,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.733176,0.15,4 +27733,0,0.591741,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.201782,0.15,4 +28062,0,0.535873,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.860956,0.15,4 +28063,0,0.508708,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.208981,0.15,4 +28064,0,0.536245,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.869874,0.15,4 +28379,0,0.359192,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.620611,0.15,4 +2839,0,0.375202,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,11.435,11.81,0,9.004857,3.7,5 +4737,-1,0.499615,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,4.471,4.97,0,11.990772,3.7,5 +5010,1,0.497369,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,4.47,4.967,0,11.936852,3.7,5 +3132,0,0.1734,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,11.261,11.435,0,4.161593,3.7,5 +4233,-1,0.375221,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710009,4.096,4.471,0,9.005306,3.7,5 +4676,1,0.375386,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,4.095,4.47,0,9.009255,3.7,5 +2972,0,0.020291,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,11.81,11.83,0,0.486984,5,5 +115,0,0.231928,1,1,0,2,4,,4,3,13 Mile,Rd,607408,9.95,10.182,0,5.566279,4.5,4.5 +4139,-1,0.122051,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,4.97,5.092,0,2.929221,3.7,5 +4672,1,0.124419,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,4.967,5.091,0,2.986048,3.7,5 +114,0,0.020561,2,2,0,2,4,,4,3,13 Mile,Rd,607408,10.182,10.203,0,0.493465,4.5,4.5 +39982,0,0.5339,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,2.668,3.202,0,12.813592,4.5,4.5 +4067,-1,0.490369,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,5.614,6.104,0,11.76886,3.7,5 +4667,1,0.811758,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,5.292,6.103,0,19.482194,3.7,5 +25767,0,0.495289,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.88693,0.15,4 +25768,0,0.502384,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.057218,0.15,4 +25770,0,0.584329,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.023906,0.15,4 +39983,0,0.176041,1,1,0,2,4,GRV,4,3,14 Mile,Rd,5499983,2.492,2.668,0,4.224986,6.55,4.5 +40001,1,0.028968,2,0,0,2,4,,4,3,14 Mile,Rd,5499983,0,0.029,0,0.695239,4.5,4.5 +39978,0,0.396441,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,3.294,3.691,0,9.514589,4.5,4.5 +117,0,0.237697,1,1,0,2,4,,4,3,13 Mile,Rd,607408,9.335,9.573,0,5.704722,4.5,4.5 +2629,0,0.170996,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,12.338,12.509,0,4.103894,5,5 +2902,0,0.085297,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,12.253,12.338,0,2.047128,5,5 +27734,0,0.220794,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.299044,0.15,4 +28065,0,0.392113,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.410719,0.15,4 +27721,0,0.27675,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.64201,0.15,4 +118,0,0.012667,1,1,0,2,4,,4,3,13 Mile,Rd,607408,9.322,9.335,0,0.303999,4.5,4.5 +39974,0,0.173457,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,3.709,3.882,0,4.162979,4.5,4.5 +27717,0,0.539474,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.947375,0.15,4 +331,0,0.555915,2,2,1,2,4,,3,3,10 Mile,Rd,633409,6.19,6.746,0,13.341967,6,4.5 +3675,1,0.391675,2,0,0,2,5,DV2,3,3,Central Park,Blvd,686105,0,0.392,0,9.400191,8,4.5 +3707,0,0.058056,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.744,2.802,0,1.393353,6,4.5 +3755,0,0.171233,2,2,1,2,4,,3,3,Civic Center,Dr,684205,1.953,2.124,0,4.109603,6,4.5 +4008,1,0.641362,3,0,0,1,2,,3,3,S M 10,,710010,6.311,6.952,0,,0.58,7 +4455,1,0.896223,4,0,0,1,1,,3,3,E I 696,,710701,10.395,11.291,0,,0.58,7 +4727,-1,0.857329,0,4,0,1,1,,3,3,W I 696,,710702,10.429,11.286,0,,0.58,7 +4844,1,0.423569,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,1.58,2.003,0,10.165647,8,4.5 +5070,-1,0.603881,0,3,0,1,2,,3,3,N M 10,,710102,6.33,6.934,0,,0.58,7 +19485,1,0.263232,1,0,0,1,1,ROF,3,3,E I 696/Evergreen,RAMP,1903709,0,0.263,0,,2.24,5 +19753,1,0.239196,1,0,0,1,1,RON,3,3,Evergreen/W I 696,RAMP,1903906,0,0.239,0,,1.09,4 +20302,-1,0.478296,0,2,0,2,5,DV2,3,3,Central Park,Blvd,4406962,0,0.478,0,11.479104,8,4.5 +20305,-1,0.228493,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,0,0.228,0,5.483829,8,4.5 +20482,-1,0.477741,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,1.885,2.363,0,11.465778,8,4.5 +20798,-1,0.40243,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,0.615,1.017,0,9.658323,8,4.5 +20997,1,0.463078,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,0,0.463,0,11.113868,8,4.5 +26198,0,0.609108,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.618593,0.15,4 +27737,0,0.494264,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.862341,0.15,4 +28069,0,0.548108,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.15459,0.15,4 +28076,0,0.318702,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.648849,0.15,4 +28077,0,0.560165,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.443971,0.15,4 +28079,0,0.323887,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.7733,0.15,4 +29691,0,0.385995,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.263887,0.15,4 +29693,0,0.566578,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.597868,0.15,4 +1243,0,0.30035,2,2,1,2,4,,3,3,10 Mile,Rd,633409,5.83,6.13,0,7.20839,6,4.5 +3709,0,0.448517,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.018,2.467,0,10.764408,6,4.5 +3758,0,0.29664,1,1,1,2,4,,3,3,Civic Center,Dr,684205,1.416,1.712,0,7.11937,6,4.5 +4507,1,0.42869,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,1.151,1.58,0,10.28855,8,4.5 +20108,-1,0.386139,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,0.228,0.615,0,9.267331,8,4.5 +28067,0,0.248162,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.955879,0.15,4 +28075,0,0.275466,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.611188,0.15,4 +3708,0,0.277583,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.467,2.744,0,6.661981,6,4.5 +3759,0,0.163977,1,1,1,2,4,,3,3,Civic Center,Dr,684205,1.252,1.416,0,3.935455,6,4.5 +4848,1,0.101814,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,1.049,1.151,0,2.443545,8,4.5 +3659,1,0.130728,1,0,0,1,2,RON,3,3,Lahser/S M 10,RAMP,687506,0,0.131,0,,1.09,4 +4485,1,0.101562,1,0,0,1,2,ROF,3,3,N M 10/Lahser,RAMP,710602,0,0.102,0,,2.24,5 +795,0,0.060347,2,2,1,2,4,,3,3,10 Mile,Rd,633409,6.13,6.19,0,1.448332,6,4.5 +3756,0,0.172313,2,2,1,2,4,,3,3,Civic Center,Dr,684205,1.781,1.953,0,4.135518,6,4.5 +3757,0,0.068407,2,2,1,2,4,,3,3,Civic Center,Dr,684205,1.712,1.781,0,1.641774,6,4.5 +3703,0,0.411595,2,2,1,2,4,,3,3,Lahser,Rd,685510,3.025,3.437,0,9.878285,6,4.5 +4411,-1,0.403174,0,4,0,1,1,,3,3,W I 696,,710702,10.026,10.429,0,,0.58,7 +4784,1,0.30535,4,0,0,1,1,,3,3,E I 696,,710701,10.09,10.395,0,,0.58,7 +20718,0,0.155325,2,2,0,2,5,,3,3,11 Mile,Rd,4400088,1.73,1.885,0,3.727799,8,4.5 +27730,0,0.559813,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.435517,0.15,4 +28074,0,0.450464,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.811147,0.15,4 +28080,0,0.679755,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,16.314126,0.15,4 +4456,1,0.248925,4,0,0,1,1,,3,3,E I 696,,710701,9.841,10.09,0,,0.58,7 +19478,1,0.199216,1,0,0,1,1,RON,3,3,N Lahser/E I 696,RAMP,1903810,0,0.199,0,,1.09,4 +19504,1,0.253324,2,0,0,1,1,RFF,3,3,W I 696/N M 10,RAMP,1903904,0,0.253,0,,0.58,7 +19896,0,0.178554,2,2,0,2,5,,3,3,11 Mile,Rd,4400088,1.552,1.73,0,4.285298,8,4.5 +3704,0,0.135329,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.89,3.025,0,3.247888,6,4.5 +19479,1,0.223587,1,0,0,1,1,RON,3,3,S Lahser/E I 696,RAMP,1903809,0,0.224,0,,1.09,4 +3706,0,0.074045,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.802,2.876,0,1.777069,6,4.5 +3671,1,0.033565,1,0,0,2,5,,3,3,Coral Gables,,686207,0,0.034,0,0.805561,8,4.5 +3705,0,0.013322,2,2,1,2,4,,3,3,Lahser,Rd,685510,2.876,2.89,0,0.319722,6,4.5 +3702,0,0.263041,2,2,1,2,4,,3,3,Lahser,Rd,685510,3.437,3.699,0,6.312993,6,4.5 +28078,0,0.293632,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.047157,0.15,4 +787,0,0.48647,2,2,1,2,4,,3,3,10 Mile,Rd,633409,6.864,7.35,0,11.67528,6,4.5 +2916,0,0.065036,3,3,1,2,4,,3,3,Evergreen,Rd,666003,2.013,2.078,0,1.560857,6,4.5 +3635,1,0.089388,1,0,0,1,2,ROF,3,3,S M 10/10 Mile,RAMP,688506,0,0.089,0,,2.24,5 +4819,1,0.080493,1,0,0,1,2,RON,3,3,10 Mile/N M 10,RAMP,710601,0,0.081,0,,1.09,4 +4837,1,0.368326,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.411,2.779,0,8.839828,8,4.5 +20849,-1,0.355829,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.353,1.709,0,8.539899,8,4.5 +26222,0,0.44672,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.72129,0.15,4 +27623,0,0.421869,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.124853,0.15,4 +28072,0,0.169801,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.075228,0.15,4 +2647,1,0.06991,3,0,0,2,4,,3,3,Evergreen,Rd,666003,1.885,1.955,0,1.677847,6,4.5 +4501,1,0.16238,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.233,2.396,0,3.897117,8,4.5 +4842,1,0.101172,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.132,2.233,0,2.428136,8,4.5 +20356,-1,0.18401,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.087,1.271,0,4.41623,8,4.5 +4502,1,0.129313,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.003,2.132,0,3.103523,8,4.5 +20550,-1,0.070234,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.017,1.087,0,1.685627,8,4.5 +2917,0,0.119746,1,1,1,2,4,,3,3,Evergreen,Rd,666003,1.695,1.815,0,2.873906,6,4.5 +1229,0,0.053083,2,2,1,2,4,,3,3,10 Mile,Rd,633409,6.811,6.864,0,1.273991,6,4.5 +20154,-1,0.067268,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.271,1.338,0,1.614444,8,4.5 +1715,0,0.064751,2,2,1,2,4,,3,3,10 Mile,Rd,633409,6.746,6.811,0,1.554023,6,4.5 +3224,1,0.058237,3,0,0,2,4,,3,3,Evergreen,Rd,666003,1.955,2.013,0,1.397695,6,4.5 +27416,0,0.191842,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.604203,0.15,4 +28070,0,0.196694,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.720646,0.15,4 +3754,0,0.010213,2,2,1,2,4,,3,3,Civic Center,Dr,684205,2.124,2.134,0,0.245119,6,4.5 +20609,-1,0.093416,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.709,1.802,0,2.24199,8,4.5 +2912,0,0.459708,2,2,0,2,4,,3,3,Evergreen,Rd,666003,3.03,3.49,0,11.032996,6,4.5 +20786,-1,0.150339,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,2.58,2.731,0,3.608146,8,4.5 +20994,1,0.120693,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,0.703,0.824,0,2.896643,8,4.5 +27611,0,0.451973,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.847353,0.15,4 +29884,0,0.492805,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.827329,0.15,4 +20096,-1,0.178388,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,2.402,2.58,0,4.281317,8,4.5 +20995,1,0.177388,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,0.526,0.703,0,4.257317,8,4.5 +3673,1,0.087211,2,0,0,2,5,DV2,3,3,Central Park,Blvd,686105,0.392,0.479,0,2.09306,8,4.5 +20293,-1,0.039006,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,2.363,2.402,0,0.936136,8,4.5 +20996,1,0.063124,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,0.463,0.526,0,1.514985,8,4.5 +40291,-1,0.241254,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.033,1.274,0,5.790101,5,5 +3672,0,0.045036,1,1,0,2,5,,3,3,Central Park,Blvd,686105,0.479,0.524,0,1.080874,8,4.5 +3221,0,0.042491,2,2,0,2,4,,3,3,Evergreen,Rd,666003,2.988,3.03,0,1.019789,6,4.5 +19484,1,0.272339,1,0,0,1,1,RON,3,3,Evergreen/E I 696,RAMP,1903710,0,0.272,0,,1.09,4 +19749,1,0.252753,1,0,0,1,1,ROF,3,3,W I 696/Evergreen,RAMP,1903907,0,0.253,0,,2.24,5 +20538,-1,0.342494,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,2.731,3.073,0,8.219849,8,4.5 +20993,1,0.371251,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,0.824,1.195,0,8.910021,8,4.5 +122,0,0.465188,1,1,0,2,4,,4,3,13 Mile,Rd,607408,7.988,8.453,0,11.164503,4.5,4.5 +39973,0,0.48851,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,3.882,4.371,0,11.724249,4.5,4.5 +2565,0,0.335475,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,13.695,14.03,0,8.051409,5,5 +3219,0,0.311137,1,1,0,2,4,,3,3,Evergreen,Rd,666003,4.721,5.032,0,7.467286,6,4.5 +3696,0,0.431818,1,1,0,2,4,,4,3,Lahser,Rd,685510,5.04,5.472,0,10.36363,4.5,4.5 +27723,0,0.566228,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.58948,0.15,4 +27726,0,0.501398,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.033558,0.15,4 +28082,0,0.525461,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.611056,0.15,4 +28083,0,0.503424,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.082173,0.15,4 +28086,0,0.602449,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.458779,0.15,4 +120,0,0.457018,1,1,0,2,4,,4,3,13 Mile,Rd,607408,8.543,9,0,10.968437,4.5,4.5 +3226,0,0.506364,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,13.005,13.511,0,12.152744,5,5 +3698,0,0.229099,1,1,0,2,4,,4,3,Lahser,Rd,685510,4.454,4.683,0,5.498385,4.5,4.5 +27720,0,0.526812,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.64349,0.15,4 +28103,0,0.509889,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.237342,0.15,4 +3700,0,0.28251,1,1,0,2,4,,4,3,Lahser,Rd,685510,4.026,4.308,0,6.780242,4.5,4.5 +3699,0,0.145507,1,1,0,2,4,,4,3,Lahser,Rd,685510,4.308,4.454,0,3.492173,4.5,4.5 +3697,0,0.357691,1,1,0,2,4,,4,3,Lahser,Rd,685510,4.683,5.04,0,8.584581,4.5,4.5 +2851,0,0.184091,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,13.511,13.695,0,4.418185,5,5 +28084,0,0.262724,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.30537,0.15,4 +121,0,0.090845,1,1,0,2,4,,4,3,13 Mile,Rd,607408,8.453,8.543,0,2.18028,4.5,4.5 +28081,0,0.245838,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.900101,0.15,4 +27724,0,0.531773,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.76256,0.15,4 +28374,0,0.501975,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.047399,0.15,4 +3695,0,0.027689,1,1,0,2,4,,4,3,Lahser,Rd,685510,5.472,5.5,0,0.664524,4.5,4.5 +39971,0,0.35895,1,1,0,2,4,,4,3,14 Mile,Rd,5499983,4.762,5.12,0,8.614793,4.5,4.5 +2911,0,0.263286,1,1,0,2,4,,3,3,Evergreen,Rd,666003,4.197,4.461,0,6.318865,6,4.5 +3240,0,0.543243,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,14.03,14.573,0,13.037843,5,5 +27615,0,0.229931,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.518355,0.15,4 +28087,0,0.594697,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.272717,0.15,4 +3220,0,0.177388,1,1,0,2,4,,3,3,Evergreen,Rd,666003,4.02,4.197,0,4.257312,6,4.5 +2639,0,0.260226,1,1,0,2,4,,3,3,Evergreen,Rd,666003,4.461,4.721,0,6.245423,6,4.5 +123,0,0.458389,2,2,0,2,4,,3,3,13 Mile,Rd,607408,7.529,7.988,0,11.001326,6,4.5 +2638,0,0.352348,2,2,1,2,4,,4,3,Evergreen,Rd,666003,5.445,5.797,0,8.456351,4.5,4.5 +27607,0,0.498743,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.969837,0.15,4 +27725,0,0.486717,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.681202,0.15,4 +2910,0,0.41336,2,2,1,2,4,,4,3,Evergreen,Rd,666003,5.032,5.445,0,9.920643,4.5,4.5 +2909,0,0.182297,1,1,0,2,4,,4,3,Evergreen,Rd,666003,5.873,6.055,0,4.375138,4.5,4.5 +3218,0,0.075701,1,1,0,2,4,,4,3,Evergreen,Rd,666003,5.797,5.873,0,1.816814,4.5,4.5 +27609,0,0.504897,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.117521,0.15,4 +125,0,0.082917,2,2,0,2,4,,3,3,13 Mile,Rd,607408,7.446,7.529,0,1.990002,6,4.5 +2094,0,0.156116,1,1,0,2,5,,4,3,Saxon,Dr,625804,7.487,7.643,0,3.746786,5.8,4.5 +1073,0,0.718901,1,1,0,2,3,,4,3,Long Lake,Rd,641102,4.931,5.649,0,17.253619,3.7,5 +1112,0,1.094522,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,2.98,4.074,0,26.268534,5.8,4.5 +1797,0,0.925323,1,1,0,2,4,,4,3,Quarton,Rd,617206,1.206,2.131,0,22.207752,4.5,4.5 +1899,0,0.231438,1,1,0,2,5,,4,3,Hickory Grove,,616301,0.702,0.933,0,5.55451,5.8,4.5 +3686,0,0.285954,1,1,0,2,4,,4,3,Lahser,Rd,685510,8.273,8.559,0,6.862893,4.5,4.5 +3803,0,0.475819,2,2,1,2,3,,4,3,Maple,Rd,683906,11.237,11.713,0,11.41966,3.7,5 +3966,1,0.390941,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,8.263,8.653,0,9.382589,3.7,5 +3967,-1,0.353249,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,8.302,8.655,0,8.477968,3.7,5 +25452,0,0.625481,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.011549,0.15,4 +25454,0,0.402267,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.654415,0.15,4 +25666,0,0.925932,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.222358,0.15,4 +25667,0,0.303561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.285468,0.15,4 +25754,0,0.280981,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.743548,0.15,4 +27744,0,0.396672,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.520129,0.15,4 +27751,0,0.954797,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.915123,0.15,4 +27759,0,0.61866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.847831,0.15,4 +29737,0,0.434154,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.419705,0.15,4 +1935,0,0.523884,1,1,0,2,4,,4,3,Quarton,Rd,617206,0,0.524,0,12.573227,4.5,4.5 +3691,0,0.433074,1,1,0,2,4,,4,3,Lahser,Rd,685510,7.059,7.492,0,10.393781,4.5,4.5 +3806,0,0.166,2,2,1,2,3,,4,3,Maple,Rd,683906,10.274,10.44,0,3.984001,3.7,5 +3974,1,0.267038,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,7.198,7.465,0,6.408912,3.7,5 +4021,-1,0.48747,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710009,7.113,7.601,0,11.699285,3.7,5 +25450,0,0.584721,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.033308,0.15,4 +25451,0,0.55774,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.385761,0.15,4 +25772,0,0.549759,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.19422,0.15,4 +25773,0,0.523962,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.575099,0.15,4 +27745,0,0.516117,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.386812,0.15,4 +27747,0,0.50423,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.101522,0.15,4 +27757,0,0.41651,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.996238,0.15,4 +4035,-1,0.591431,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710009,6.522,7.113,0,14.19434,3.7,5 +5004,1,0.552641,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,6.56,7.112,0,13.263389,3.7,5 +25766,0,0.464392,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.145419,0.15,4 +27967,0,0.48066,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.535836,0.15,4 +3808,0,0.101824,2,2,1,2,3,,4,3,Maple,Rd,683906,10.164,10.265,0,2.443787,3.7,5 +5002,1,0.078659,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,7.112,7.191,0,1.887807,3.7,5 +19513,1,0.175342,1,0,0,1,3,RSF,4,3,W Maple/N US 24,,1890601,0,0.175,0,,3.7,5 +19514,1,0.164764,1,0,0,1,3,RSF,4,3,N US 24/W Maple,,1890510,0,0.165,0,,3.7,5 +3809,0,0.021555,2,2,0,2,3,,4,3,Maple,Rd,683906,10.142,10.164,0,0.517312,3.7,5 +4661,1,0.006972,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,7.191,7.198,0,0.167325,3.7,5 +3807,0,0.009004,2,2,1,2,3,,4,3,Maple,Rd,683906,10.265,10.274,0,0.216105,3.7,5 +593,0,0.497104,1,1,0,2,4,,4,3,Quarton,Rd,618807,1.361,1.858,0,11.930489,4.5,4.5 +3975,-1,0.252296,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,7.827,8.079,0,6.055105,3.7,5 +4989,1,0.244192,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,7.826,8.07,0,5.860613,3.7,5 +25758,0,0.469131,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.25915,0.15,4 +27114,0,0.4327,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.384811,0.15,4 +27390,0,0.466859,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.204608,0.15,4 +27391,0,0.451457,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.834972,0.15,4 +27714,0,0.488915,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.733952,0.15,4 +25757,0,0.308592,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.406201,0.15,4 +3991,-1,0.226198,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,7.601,7.827,0,5.428745,3.7,5 +4997,1,0.361562,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,7.465,7.826,0,8.677491,3.7,5 +606,1,0.01796,1,0,0,2,4,,4,3,Meadow,Way,620005,0.175,0.193,0,0.431036,4.5,4.5 +3971,-1,0.223199,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,8.079,8.302,0,5.356773,3.7,5 +4645,1,0.192494,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,8.07,8.263,0,4.619848,3.7,5 +808,-1,0.021753,0,1,0,2,3,,4,3,Quarton,Rd,618807,1.858,1.88,0,0.522081,3.7,5 +3692,0,0.566385,1,1,0,2,4,,4,3,Lahser,Rd,685510,6.493,7.059,0,13.593246,4.5,4.5 +3804,0,0.683929,2,2,0,2,3,,4,3,Maple,Rd,683906,10.554,11.237,0,16.414288,3.7,5 +25765,0,0.52527,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.606478,0.15,4 +25771,0,0.55633,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.351909,0.15,4 +3805,0,0.113381,2,2,1,2,3,,4,3,Maple,Rd,683906,10.44,10.554,0,2.721133,3.7,5 +1082,0,0.39401,1,1,0,2,4,,4,3,Quarton,Rd,617206,0.812,1.206,0,9.456249,4.5,4.5 +1560,0,0.288776,1,1,0,2,4,,4,3,Quarton,Rd,617206,0.524,0.812,0,6.930634,4.5,4.5 +3689,0,0.499065,1,1,0,2,4,,4,3,Lahser,Rd,685510,7.515,8.014,0,11.977554,4.5,4.5 +25759,0,0.515727,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.377452,0.15,4 +27476,0,0.534169,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.820056,0.15,4 +27746,0,0.459251,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.022019,0.15,4 +27756,0,0.290047,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.961128,0.15,4 +3690,0,0.022441,1,1,0,2,4,,4,3,Lahser,Rd,685510,7.492,7.515,0,0.538591,4.5,4.5 +3688,0,0.178695,1,1,0,2,4,,4,3,Lahser,Rd,685510,8.014,8.192,0,4.288689,4.5,4.5 +3687,0,0.08123,1,1,0,2,4,,4,3,Lahser,Rd,685510,8.192,8.273,0,1.94953,4.5,4.5 +520,0,1.021346,1,1,0,2,4,,4,3,Franklin,Rd,616801,0,1.021,0,24.512295,4.5,4.5 +926,0,0.308163,1,1,0,2,3,,4,3,Long Lake,Rd,641102,4.14,4.448,0,7.39591,3.7,5 +1213,0,0.505861,1,1,0,2,5,,4,3,Hickory Grove,,616301,1.239,1.744,0,12.140652,5.8,4.5 +1612,0,0.3135,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,2.094,2.407,0,7.524005,5.8,4.5 +3682,0,0.396538,1,1,0,2,4,,4,3,Lahser,Rd,685510,9.57,9.967,0,9.5169,4.5,4.5 +3928,-1,0.671229,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,9.686,10.357,0,16.109506,3.7,5 +4634,1,0.662014,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,9.681,10.343,0,15.888339,3.7,5 +4985,1,0.544697,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,8.653,9.198,0,13.072722,3.7,5 +25199,0,0.389454,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.346896,0.15,4 +27580,0,0.406108,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.746593,0.15,4 +27627,0,0.793052,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.033254,0.15,4 +27752,0,0.410021,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.840508,0.15,4 +27760,0,0.374539,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.98894,0.15,4 +332,0,0.206951,1,1,0,2,3,,4,3,Long Lake,Rd,641102,3.634,3.841,0,4.966816,3.7,5 +1619,0,0.483471,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,1.591,2.074,0,11.603311,5.8,4.5 +4856,-1,0.610529,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,8.655,9.266,0,14.652685,3.7,5 +27624,0,0.480035,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.520845,0.15,4 +27694,0,0.574804,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.795293,0.15,4 +27697,0,0.595229,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.285507,0.15,4 +1149,0,0.133432,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,1.457,1.591,0,3.20238,5.8,4.5 +27626,0,0.475865,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.42076,0.15,4 +1140,0,0.019442,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,2.074,2.094,0,0.466614,5.8,4.5 +1888,0,0.27622,2,2,1,2,3,,4,3,Long Lake,Rd,641102,3.841,4.117,0,6.629286,3.7,5 +4482,-1,0.420624,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,9.266,9.686,0,10.094964,3.7,5 +4981,1,0.483008,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,9.198,9.681,0,11.592189,3.7,5 +1379,0,0.02301,2,2,1,2,3,,4,3,Long Lake,Rd,641102,4.117,4.14,0,0.552251,3.7,5 +1501,0,0.254981,1,1,0,2,5,,4,3,Hickory Grove,,616301,1.764,2.019,0,6.119542,5.8,4.5 +3915,-1,0.337409,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,10.357,10.694,0,8.097827,3.7,5 +3961,1,0.34697,3,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,10.343,10.689,0,8.327292,3.7,5 +1489,0,0.019403,1,1,0,2,5,,4,3,Hickory Grove,,616301,1.744,1.764,0,0.465677,5.8,4.5 +1132,0,0.232597,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,2.407,2.64,0,5.582327,5.8,4.5 +1549,0,0.415192,1,1,0,2,3,,4,3,Long Lake,Rd,641102,4.516,4.931,0,9.964599,3.7,5 +3684,0,0.494261,1,1,0,2,4,,4,3,Lahser,Rd,685510,8.692,9.186,0,11.862267,4.5,4.5 +27754,0,0.502068,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.04964,0.15,4 +27761,0,0.418662,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.047883,0.15,4 +25668,0,0.50574,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.137754,0.15,4 +2056,0,0.067277,1,1,0,2,3,,4,3,Long Lake,Rd,641102,4.448,4.516,0,1.614641,3.7,5 +1593,0,0.340152,1,1,0,2,5,,4,3,Lone Pine,Rd,623006,2.64,2.98,0,8.163659,5.8,4.5 +3685,0,0.132363,1,1,0,2,4,,4,3,Lahser,Rd,685510,8.559,8.692,0,3.176701,4.5,4.5 +3683,0,0.384769,1,1,0,2,4,,4,3,Lahser,Rd,685510,9.186,9.57,0,9.234449,4.5,4.5 +1266,0,0.305267,1,1,0,2,5,,4,3,Hickory Grove,,616301,0.933,1.239,0,7.326416,5.8,4.5 +3680,0,0.475876,1,1,0,2,4,,4,3,Lahser,Rd,685510,10.101,10.577,0,11.421021,4.5,4.5 +27581,0,0.578206,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.87695,0.15,4 +27579,0,0.253198,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.076743,0.15,4 +3681,0,0.134669,1,1,0,2,4,,4,3,Lahser,Rd,685510,9.967,10.101,0,3.232048,4.5,4.5 +3802,0,0.45262,2,2,1,2,3,,4,3,Maple,Rd,683906,11.713,12.166,0,10.862879,3.7,5 +27755,0,0.565199,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.564765,0.15,4 +27758,0,0.562498,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.499944,0.15,4 +29736,0,0.516347,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.392329,0.15,4 +25775,0,0.479126,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.499031,0.15,4 +521,0,0.375025,1,1,0,2,5,,4,3,Lincoln,,611106,0.268,0.643,0,9.000601,5.8,4.5 +1399,0,0.561405,2,2,0,2,4,,4,3,Cranbrook,Rd,618210,0.471,1.033,0,13.473714,4.5,4.5 +3801,0,0.503798,1,1,1,2,3,,4,3,Maple,Rd,683906,12.166,12.669,0,12.091141,3.7,5 +27908,0,0.547958,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.15099,0.15,4 +27918,0,0.244552,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.869256,0.15,4 +398,0,0.268423,1,1,0,2,5,,4,3,Lincoln,,611106,0,0.268,0,6.442142,5.8,4.5 +933,0,0.031079,2,2,0,2,4,,4,3,Cranbrook,Rd,618210,0.44,0.471,0,0.745889,4.5,4.5 +27603,0,0.134871,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.236911,0.15,4 +3800,0,0.066779,1,1,1,2,3,,3,3,Maple,Rd,683906,12.669,12.736,0,1.602688,5,5 +838,0,0.30109,1,1,0,2,4,,4,3,Quarton,Rd,617206,2.39,2.691,0,7.226164,4.5,4.5 +25670,0,0.335502,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.052044,0.15,4 +1301,0,0.259084,1,1,0,2,4,,4,3,Quarton,Rd,617206,2.131,2.39,0,6.218021,4.5,4.5 +25669,0,0.347541,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.340981,0.15,4 +286,1,0.574408,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,1.698,2.272,0,13.785785,3.7,5 +1311,1,0.749416,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,0.948,1.698,0,17.985977,3.7,5 +1522,-1,0.558753,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,1.696,2.255,0,13.410079,3.7,5 +1641,-1,0.229794,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,1.466,1.696,0,5.51506,3.7,5 +2150,0,0.249028,1,1,0,2,3,,4,3,Long Lake,Rd,641102,5.723,5.972,0,5.976673,3.7,5 +25671,0,0.311135,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.467229,0.15,4 +27593,0,0.513786,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.330854,0.15,4 +27594,0,0.640172,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.364118,0.15,4 +27595,0,0.497824,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.947772,0.15,4 +27596,0,0.463545,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.125077,0.15,4 +27748,0,0.559117,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.4188,0.15,4 +759,0,0.289715,1,1,0,2,5,,4,3,Hickory Grove,,616301,0.197,0.487,0,6.953148,5.8,4.5 +1526,-1,0.191648,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,0.639,0.831,0,4.599558,3.7,5 +1563,0,0.456882,1,1,0,2,4,,4,3,Opdyke,Rd,616205,0,0.457,0,10.965173,4.5,4.5 +1791,1,0.310502,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,0.638,0.948,0,7.452046,3.7,5 +2144,-1,0.635728,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,0.831,1.466,0,15.257469,3.7,5 +25455,0,0.585661,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.055854,0.15,4 +27640,0,0.361187,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.668493,0.15,4 +27749,0,0.423828,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.171861,0.15,4 +27750,0,0.536082,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.865974,0.15,4 +2019,0,0.196393,1,1,0,2,5,,4,3,Hickory Grove,,616301,0.506,0.702,0,4.713432,5.8,4.5 +483,0,0.019073,1,1,0,2,5,,4,3,Hickory Grove,,616301,0.487,0.506,0,0.457756,5.8,4.5 +622,0,0.073354,1,1,0,2,3,,4,3,Long Lake,Rd,641102,5.649,5.723,0,1.760505,3.7,5 +1558,0,0.21457,1,1,0,2,4,,4,3,Opdyke,Rd,616205,0.457,0.671,0,5.149678,4.5,4.5 +1613,0,0.197115,1,1,0,2,5,,4,3,Hickory Grove,,616301,0,0.197,0,4.730769,5.8,4.5 +25778,0,0.163977,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.935453,0.15,4 +27765,0,0.222006,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.328135,0.15,4 +27764,0,0.17286,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.148631,0.15,4 +1700,1,0.282052,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,2.272,2.554,0,6.769243,3.7,5 +29047,0,0.300614,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.214733,0.15,4 +25350,0,0.282656,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.783755,0.15,4 +1050,-1,0.281142,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,2.255,2.535,0,6.747397,3.7,5 +496,0,0.270343,1,1,0,2,3,,4,3,Long Lake,Rd,641102,6.14,6.41,0,6.488237,3.7,5 +1538,0,0.483695,1,1,0,2,3,,4,3,Long Lake,Rd,641102,6.517,7,0,11.608687,3.7,5 +2067,0,0.55326,1,1,0,2,5,,4,3,Kensington,Rd,616302,0.472,1.025,0,13.278229,5.8,4.5 +27598,0,0.333779,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.010705,0.15,4 +27762,0,0.276451,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.634835,0.15,4 +960,0,0.14936,1,1,0,2,3,,4,3,Long Lake,Rd,641102,5.99,6.14,0,3.584649,3.7,5 +27763,0,0.353525,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.484599,0.15,4 +1419,0,0.018691,2,2,0,2,3,,4,3,Long Lake,Rd,641102,5.972,5.99,0,0.448583,3.7,5 +2048,0,0.106978,1,1,0,2,3,,4,3,Long Lake,Rd,641102,6.41,6.517,0,2.56746,3.7,5 +990,1,0.20706,3,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.102,0.309,0,4.96945,6,5 +40340,-1,0.036459,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0.208,0.244,0,0.875017,3.7,5 +1348,1,0.167602,4,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.349,0.516,0,4.022449,6,5 +1349,0,0.380019,1,1,0,2,5,,3,3,Bagley,,641410,0.838,1.218,0,9.120454,8,4.5 +1438,0,0.203527,2,2,1,2,3,,3,3,Orchard Lake,Rd,641405,0.099,0.302,0,4.884658,5,5 +40326,1,0.279674,1,0,0,1,1,FCD,4,3,N I 75 CD,,5500964,0.45,0.729,0,,0.8,7.5 +1485,-1,0.831386,0,3,0,1,1,,4,3,S I 75,,646106,24.241,25.073,0,,0.8,7.5 +1686,0,0.435903,2,2,1,2,4,,4,3,Opdyke,Rd,616205,5.225,5.66,0,10.461672,4.5,4.5 +1900,0,0.395972,1,1,0,2,4,,4,3,Square Lake,Rd,640407,2.059,2.455,0,9.50333,4.5,4.5 +2269,1,0.554469,3,0,0,1,1,,4,3,N I 75,,647308,24.45,25.005,0,,0.8,7.5 +37384,0,1.134606,1,1,0,2,4,,5,8,Winans Lake,Rd,940105,2.092,3.226,0,27.23055,3,4 +2687,0,0.27425,2,2,1,2,3,,3,3,Baldwin,Ave,672209,1.105,1.379,0,6.581996,5,5 +2777,0,0.182194,2,2,1,2,3,,3,3,Joslyn,Ave,674110,0.704,0.887,0,4.372661,5,5 +2778,0,0.506505,2,2,1,2,3,,3,3,Walton,Blvd,672601,0,0.506,0,12.156132,5,5 +36145,1,0.235887,1,0,0,1,1,FCD,4,3,N I 75 CD,,5500964,0,0.236,0,,0.8,7.5 +2881,1,0.129408,2,0,0,2,3,,3,3,Cesar E Chavez,Ave,672206,2.309,2.439,0,3.105781,5,5 +2981,0,0.235762,2,1,0,2,5,,3,3,Pike,,676308,0.13,0.366,0,5.658298,8,4.5 +3044,0,0.214474,2,2,0,2,3,,3,3,Montcalm,,673306,0,0.214,0,5.147365,5,5 +3073,0,0.225926,2,1,1,2,3,,3,3,Cesar E Chavez,Ave,672206,0.178,0.403,0,5.422226,5,5 +3141,0,0.090015,1,1,1,2,5,,3,3,Columbia,,673503,0.172,0.262,0,2.160358,8,4.5 +3172,0,0.586778,1,1,1,2,3,,4,3,Perry,,674007,2.353,2.94,0,14.082666,3.7,5 +3265,1,0.115611,2,0,0,2,5,,2,3,Lafayette,,676403,0,0.116,0,2.774659,8.5,4.5 +3351,0,0.162584,2,2,0,2,3,,3,3,Huron,St,648906,20.633,20.796,0,3.902007,5,5 +3432,0,0.81122,1,1,0,2,4,,4,3,Golf,Dr,673008,0,0.811,0,19.469281,4.5,4.5 +3504,0,0.625287,1,1,1,2,4,,4,3,Brown,Rd,4416311,0.262,0.887,0,15.006881,4.5,4.5 +3578,0,0.513918,1,1,1,2,4,,3,3,Kennett,Rd,673310,0.432,0.945,0,12.334037,6,4.5 +4236,0,0.664835,1,1,0,2,5,,4,3,Watkins Lake,Rd,697604,0,0.665,0,15.956039,5.8,4.5 +4552,0,0.223164,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,1.562,1.785,0,5.355942,4.5,4.5 +4567,-1,0.797612,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710110,4.727,5.525,0,19.142684,3.7,5 +4968,0,0.609846,2,2,0,2,3,,4,3,Telegraph,Rd,710110,0.009,0.619,0,14.636304,3.7,5 +20789,-1,0.143556,0,2,0,2,3,,4,3,Dixie,Hwy,4400845,0,0.144,0,3.445342,3.7,5 +20942,1,0.636594,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,1.549,2.186,0,15.278265,3.7,5 +21491,0,0.684295,2,1,0,2,5,,4,3,Great Lakes Crossings,Rd,4413601,0.517,1.201,0,16.42308,5.8,4.5 +24972,0,0.630705,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.136931,0.15,4 +25247,0,0.217478,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.219476,0.15,4 +25250,0,0.511548,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.277144,0.15,4 +27335,0,0.406088,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.746123,0.15,4 +27768,0,0.400499,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.611975,0.15,4 +27769,0,0.535157,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.843769,0.15,4 +27791,0,0.447041,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.728977,0.15,4 +27792,0,0.506891,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.165374,0.15,4 +27795,0,0.507103,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.170463,0.15,4 +27807,0,0.372896,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.949494,0.15,4 +27808,0,0.482984,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.591608,0.15,4 +27810,0,0.405611,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.734674,0.15,4 +27814,0,0.164285,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.942837,0.15,4 +27827,0,0.364418,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.746021,0.15,4 +27832,0,0.280165,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.723952,0.15,4 +27833,0,0.389856,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.356556,0.15,4 +27838,0,0.621547,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.917116,0.15,4 +27864,0,0.207274,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.974577,0.15,4 +27910,0,0.618873,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.852951,0.15,4 +27955,0,0.879606,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.110551,0.15,4 +1095,0,0.348274,1,1,0,2,4,,4,3,Voorheis,Rd,641608,0.113,0.462,0,8.358587,4.5,4.5 +1260,0,0.343468,2,2,0,2,3,,4,3,Elizabeth Lake,Rd,630906,6.032,6.375,0,8.243237,3.7,5 +1377,1,0.109657,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.336,0.446,0,2.631757,5,5 +1742,0,0.549863,1,1,0,2,4,,4,3,Square Lake,Rd,640407,0.471,1.02,0,13.196723,4.5,4.5 +1836,0,0.616608,2,2,0,2,3,,4,3,Orchard Lake,Rd,634003,10.939,11.556,0,14.798581,3.7,5 +1909,0,0.64276,1,1,0,2,4,,4,3,Middlebelt,Rd,634610,11.262,11.905,0,15.426242,4.5,4.5 +2600,0,0.266351,1,1,0,2,5,,4,3,County Center,Dr,668206,0.634,0.9,0,6.392417,5.8,4.5 +3381,0,0.34433,2,2,0,2,3,,4,3,Huron,St,648906,18.915,19.26,0,8.263924,3.7,5 +3934,0,0.609503,2,2,0,2,3,,4,3,Telegraph,Rd,710110,0.663,1.273,0,14.62808,3.7,5 +4014,0,0.335299,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,9.995,10.33,0,8.047181,4.5,4.5 +4586,0,0.125165,3,3,0,2,3,,3,3,Telegraph,Rd,710110,2.654,2.779,0,3.00397,5,5 +20201,0,0.643235,1,1,0,2,3,,4,3,Cass Lake,Rd,4407378,1.901,2.544,0,15.437644,3.7,5 +21083,0,0.425244,1,1,0,2,4,,4,3,Voorheis,Rd,4410050,0.61,1.035,0,10.205868,4.5,4.5 +27777,0,0.140514,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.372346,0.15,4 +27779,0,0.308626,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.407025,0.15,4 +27826,0,0.219161,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.259854,0.15,4 +27839,0,0.553593,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.28623,0.15,4 +27850,0,0.209959,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.039013,0.15,4 +27854,0,0.540966,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.983189,0.15,4 +27868,0,0.467623,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.222963,0.15,4 +29762,0,0.458246,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.997914,0.15,4 +785,0,0.602315,2,2,0,2,3,,4,3,Orchard Lake,Rd,634003,10.092,10.694,0,14.45556,3.7,5 +20153,0,0.454134,1,1,1,2,3,,4,3,Cass Lake,Rd,4407378,0.236,0.69,0,10.899213,3.7,5 +20848,0,0.226317,1,1,1,2,3,,4,3,Cass Lake,Rd,4407378,0.69,0.916,0,5.43161,3.7,5 +25134,0,0.873675,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.9682,0.15,4 +25180,0,0.412611,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.902666,0.15,4 +20608,0,0.625712,1,1,1,2,3,,4,3,Cass Lake,Rd,4407378,0.916,1.541,0,15.017092,3.7,5 +20403,0,0.359675,1,1,0,2,3,,4,3,Cass Lake,Rd,4407378,1.541,1.901,0,8.632205,3.7,5 +323,0,0.245155,2,2,0,2,3,,4,3,Orchard Lake,Rd,634003,10.694,10.939,0,5.883724,3.7,5 +20355,0,0.235756,1,1,1,2,3,,4,3,Cass Lake,Rd,4407378,0,0.236,0,5.658139,3.7,5 +27860,0,0.257823,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.18776,0.15,4 +25179,0,0.031893,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,0.76543,0.15,4 +27853,0,0.612941,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.71059,0.15,4 +1573,0,0.113447,1,1,0,2,4,,4,3,Voorheis,Rd,641608,0,0.113,0,2.722727,4.5,4.5 +358,0,0.163685,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,5.369,5.533,0,3.928441,3.7,5 +3409,0,0.355927,2,2,1,2,3,,4,3,Huron,St,648906,18.184,18.54,0,8.542259,3.7,5 +4027,0,0.332594,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,9.363,9.695,0,7.98226,4.5,4.5 +4182,0,0.424789,1,1,0,2,4,,4,3,Watkins Lake,Rd,698005,0.259,0.684,0,10.194948,4.5,4.5 +4579,0,0.721128,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,0.284,1.005,0,17.307073,4.5,4.5 +20661,0,0.423699,1,1,0,2,4,,4,3,Cass Lake,Rd,4407378,2.72,3.143,0,10.168783,4.5,4.5 +27794,0,0.622301,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.935218,0.15,4 +27852,0,0.568596,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.646297,0.15,4 +27855,0,0.395221,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.4853,0.15,4 +27858,0,0.499097,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.978321,0.15,4 +28481,0,0.477422,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.458137,0.15,4 +1148,0,0.172698,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,4.869,5.042,0,4.144756,3.7,5 +3414,0,0.358444,2,2,1,2,3,,4,3,Highland,Rd,648906,17.826,18.184,0,8.602651,3.7,5 +3440,0,0.20997,2,2,1,2,3,,4,3,Highland,Rd,648906,17.578,17.788,0,5.039284,3.7,5 +20896,0,0.175543,2,2,1,2,3,,4,3,Cass Lake,Rd,4407378,2.544,2.72,0,4.213031,3.7,5 +824,0,0.32734,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,5.042,5.369,0,7.856151,3.7,5 +4596,0,0.154494,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,0.13,0.284,0,3.707864,4.5,4.5 +25176,0,0.400695,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.616681,0.15,4 +27869,0,0.325294,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.807067,0.15,4 +3418,0,0.038323,2,2,1,2,3,,4,3,Highland,Rd,648906,17.788,17.826,0,0.919749,3.7,5 +4604,0,0.129893,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,0,0.13,0,3.11743,4.5,4.5 +4075,0,0.206497,1,1,1,2,4,,4,3,Pontiac Lake,Rd,703707,8.863,9.07,0,4.955928,4.5,4.5 +4562,0,0.484416,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,1.005,1.49,0,11.625976,4.5,4.5 +25249,0,0.597347,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.336333,0.15,4 +20256,0,0.25194,1,1,0,2,4,,4,3,Cass Lake,Rd,4407378,3.299,3.551,0,6.046557,4.5,4.5 +20443,0,0.155787,1,1,0,2,4,,4,3,Cass Lake,Rd,4407378,3.143,3.299,0,3.738898,4.5,4.5 +4047,0,0.293099,1,1,1,2,4,,4,3,Pontiac Lake,Rd,703707,9.07,9.363,0,7.034367,4.5,4.5 +4556,0,0.072231,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,1.49,1.562,0,1.733543,4.5,4.5 +1400,0,0.26113,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,5.771,6.032,0,6.267127,3.7,5 +3397,0,0.21434,2,2,1,2,3,,4,3,Huron,St,648906,18.54,18.754,0,5.144149,3.7,5 +4192,0,0.166282,1,1,0,2,7,,4,3,Josephine,Ave,697808,0.502,0.668,0,3.990761,6.55,4.5 +21085,0,0.127464,1,1,0,2,4,,4,3,Voorheis,Rd,4410050,0.252,0.379,0,3.059124,4.5,4.5 +25133,0,0.42502,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.200482,0.15,4 +27856,0,0.261616,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.278794,0.15,4 +21084,0,0.230748,1,1,0,2,4,,4,3,Voorheis,Rd,4410050,0.379,0.61,0,5.537949,4.5,4.5 +1915,0,0.237985,2,2,1,2,3,,4,3,Elizabeth Lake,Rd,630906,5.533,5.771,0,5.711633,3.7,5 +27871,0,0.532774,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.786575,0.15,4 +3389,0,0.1612,2,2,1,2,3,,4,3,Huron,St,648906,18.754,18.915,0,3.868812,3.7,5 +4193,0,0.166695,1,1,0,2,7,,4,3,Josephine,Ave,697808,0.336,0.502,0,4.000669,6.55,4.5 +25274,0,0.0594,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.425595,0.15,4 +27857,0,0.201475,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.835392,0.15,4 +27851,0,0.425992,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.22382,0.15,4 +2781,0,0.332054,1,1,1,2,4,,4,3,County Center,Dr,668206,0,0.332,0,7.969296,4.5,4.5 +4025,0,0.146,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,9.695,9.841,0,3.504001,4.5,4.5 +4187,0,0.259035,1,1,0,2,4,,4,3,Watkins Lake,Rd,698005,0,0.259,0,6.216852,4.5,4.5 +27771,0,0.402056,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.649353,0.15,4 +27770,0,0.436494,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.475868,0.15,4 +4015,0,0.153682,1,1,0,2,4,,4,3,Pontiac Lake,Rd,703707,9.841,9.995,0,3.688371,4.5,4.5 +2878,0,0.214771,2,1,0,2,5,,4,3,County Center,Dr,668206,0.419,0.634,0,5.154497,5.8,4.5 +19511,1,0.08504,1,0,0,1,3,RSF,4,3,Telegraph/County Center E,Ramp,1890605,0,0.085,0,,3.7,5 +2525,0,0.036737,1,2,0,2,4,,4,3,County Center,Dr,668206,0.383,0.419,0,0.8817,4.5,4.5 +4607,0,0.020984,2,2,0,2,3,,4,3,Telegraph,Rd,710110,0.642,0.663,0,0.503609,3.7,5 +4959,0,0.023633,2,2,0,2,3,,4,3,Telegraph,Rd,710110,0.619,0.642,0,0.567194,3.7,5 +19512,1,0.122811,1,0,0,1,3,RSF,4,3,Telegraph/Country Center W,Ramp,1890604,0,0.123,0,,3.7,5 +2815,0,0.040474,1,1,1,2,4,,4,3,County Center,Dr,668206,0.342,0.383,0,0.971378,4.5,4.5 +3100,0,0.010229,1,1,1,2,4,,4,3,County Center,Dr,668206,0.332,0.342,0,0.245487,4.5,4.5 +27778,0,0.144348,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.464355,0.15,4 +457,0,0.264818,1,1,0,2,5,,4,3,Fairfax,,620109,0,0.265,0,6.355642,5.8,4.5 +466,1,0.232677,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.592,0.825,0,5.584249,5,5 +1253,0,0.666313,1,1,0,2,4,,4,3,Square Lake,Rd,640407,1.02,1.686,0,15.991506,4.5,4.5 +1326,0,0.539208,2,2,0,2,3,,4,3,Orchard Lake,Rd,634003,11.556,12.095,0,12.940985,3.7,5 +3095,0,0.301077,1,1,0,2,4,,4,3,Golf,Dr,673008,0.811,1.112,0,7.22585,4.5,4.5 +4924,-1,0.249866,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710110,3.951,4.201,0,5.996783,3.7,5 +20945,1,0.313001,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,0.715,1.028,0,7.512033,3.7,5 +27836,0,0.428718,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.289228,0.15,4 +27840,0,0.648233,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.557588,0.15,4 +27841,0,0.581378,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.953076,0.15,4 +27842,0,0.452227,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.853456,0.15,4 +27878,0,0.384472,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.227328,0.15,4 +27909,0,0.548863,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.172722,0.15,4 +5,0,0.420921,1,1,0,2,4,,3,3,Voorheis,Rd,641608,0.68,1.1,0,10.102114,6,4.5 +646,1,0.201852,1,0,0,1,3,RSF,4,3,Orchard Lake/S US 24,RAMP,641710,0,0.202,0,,3.7,5 +941,0,0.159794,2,2,0,2,3,,4,3,Orchard Lake,Rd,641405,1.551,1.711,0,3.835064,3.7,5 +1572,0,0.241251,1,1,0,2,4,,4,3,Old Telegraph,Rd,641706,0,0.241,0,5.790022,4.5,4.5 +2034,0,0.123745,2,2,0,2,3,,4,3,Orchard Lake,Rd,641405,1.891,2.015,0,2.969869,3.7,5 +3904,-1,0.551774,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710110,3.303,3.855,0,13.242569,3.7,5 +4932,-1,0.109633,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710110,3.18,3.29,0,2.631201,3.7,5 +20947,1,0.318601,3,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,0.303,0.622,0,7.646423,3.7,5 +20949,1,0.106206,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,0,0.106,0,2.548943,3.7,5 +27867,0,0.406382,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.753166,0.15,4 +644,1,0.133306,1,0,0,1,3,RSF,4,3,S US 24/Orchard Lake,RAMP,641709,0,0.133,0,,3.7,5 +1523,0,0.063952,2,2,0,2,3,,4,3,Orchard Lake,Rd,641405,2.015,2.079,0,1.534854,3.7,5 +20948,1,0.196981,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,0.106,0.303,0,4.727548,3.7,5 +1094,1,0.053223,1,0,0,2,4,,4,3,Old Telegraph,Rd,641706,0.241,0.294,0,1.277345,4.5,4.5 +20840,1,0.042585,1,0,0,2,4,,4,3,Old Telegraph,Rd,4400148,0.029,0.072,0,1.022038,4.5,4.5 +4576,-1,0.012839,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710110,3.29,3.303,0,0.308135,3.7,5 +20145,1,0.029163,1,0,0,2,3,,4,3,Old Telegraph,Rd,4400148,0,0.029,0,0.699915,3.7,5 +645,0,0.217962,1,1,0,2,4,,3,3,Voorheis,Rd,641608,0.462,0.68,0,5.231091,6,4.5 +4939,0,0.349739,3,3,0,2,3,,4,3,Telegraph,Rd,710110,2.779,3.128,0,8.393736,3.7,5 +27861,0,0.205053,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.921283,0.15,4 +27863,0,0.128164,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.075945,0.15,4 +4585,0,0.052076,3,3,0,2,3,,4,3,Telegraph,Rd,710110,3.128,3.18,0,1.249813,3.7,5 +528,0,0.083661,1,1,0,2,4,,4,3,Old Telegraph,Rd,641705,0.131,0.215,0,2.007856,4.5,4.5 +2075,0,0.132846,2,2,0,2,4,,4,3,Old Telegraph,Rd,641705,0.215,0.347,0,3.188313,4.5,4.5 +3356,0,0.127783,1,1,0,2,4,,4,3,Golf,Dr,673008,1.112,1.24,0,3.066788,4.5,4.5 +20946,1,0.093593,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,0.622,0.715,0,2.246243,3.7,5 +484,0,0.180557,2,2,0,2,3,,4,3,Orchard Lake,Rd,641405,1.711,1.891,0,4.333368,3.7,5 +1676,1,0.131,1,0,0,2,4,,4,3,Old Telegraph,Rd,641705,0,0.131,0,3.144009,4.5,4.5 +4929,-1,0.096701,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710110,3.855,3.951,0,2.320836,3.7,5 +19221,1,0.031848,1,0,0,2,3,,4,3,Old Telegraph,Rd,1812909,0.041,0.073,0,0.76434,3.7,5 +19222,1,0.041334,1,0,0,2,4,,4,3,Old Telegraph,Rd,1812909,0,0.041,0,0.992022,4.5,4.5 +2012,0,0.284705,2,2,0,2,3,,4,3,Orchard Lake,Rd,641405,1.266,1.551,0,6.832911,3.7,5 +337,0,0.166373,1,1,0,2,4,,4,3,Square Lake,Rd,640407,1.893,2.059,0,3.99296,4.5,4.5 +4920,-1,0.189728,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710110,4.538,4.727,0,4.553473,3.7,5 +20943,1,0.240264,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,1.309,1.549,0,5.766343,3.7,5 +803,0,0.206461,2,2,0,2,4,,4,3,Square Lake,Rd,640407,1.686,1.893,0,4.955073,4.5,4.5 +4569,-1,0.336751,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710110,4.201,4.538,0,8.082019,3.7,5 +20944,1,0.281122,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,1.028,1.309,0,6.746929,3.7,5 +20353,0,0.023657,1,1,0,2,3,,4,3,Fairfax,,4406801,0,0.024,0,0.567759,3.7,5 +26177,0,0.168897,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.053529,0.15,4 +27848,0,0.147637,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.543283,0.15,4 +27822,0,0.393898,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.453548,0.15,4 +924,1,0.146021,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.446,0.592,0,3.504501,5,5 +1371,0,0.261066,2,2,0,2,3,,3,3,Elizabeth Lake,Rd,630906,6.984,7.245,0,6.265588,5,5 +2573,0,0.413582,1,1,1,2,3,,3,3,Baldwin,Ave,672209,0.131,0.544,0,9.925972,5,5 +2784,0,0.184835,2,2,1,2,3,,3,3,Cesar E Chavez,Ave,672206,1.237,1.422,0,4.436035,5,5 +3155,-1,0.749793,0,3,0,2,3,,3,3,Cass,Ave,674803,0.434,1.183,0,17.995028,5,5 +3375,0,0.465348,2,2,1,2,3,,3,3,Huron,St,648906,19.651,20.116,0,11.168363,5,5 +3401,0,0.248438,2,1,1,2,3,,3,3,Cesar E Chavez,Ave,672206,0.573,0.822,0,5.96252,5,5 +4951,0,0.171228,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.39,1.561,0,4.109469,3.7,5 +27800,0,0.437867,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.508818,0.15,4 +27865,0,0.491342,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.792213,0.15,4 +29760,0,0.445683,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.696393,0.15,4 +30188,0,0.422635,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.143241,0.15,4 +1905,0,0.18643,2,2,1,2,3,,3,3,Elizabeth Lake,Rd,630906,6.459,6.646,0,4.474321,5,5 +3379,0,0.391256,2,2,1,2,3,,3,3,Huron,St,648906,19.26,19.651,0,9.390147,5,5 +3922,0,0.161637,3,3,0,2,3,,3,3,Telegraph,Rd,710110,2.058,2.22,0,3.879282,5,5 +27870,0,0.417563,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.021502,0.15,4 +27872,0,0.439549,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.549179,0.15,4 +27875,0,0.187948,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.510756,0.15,4 +27876,0,0.440513,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.572313,0.15,4 +4947,0,0.167489,3,3,0,2,3,,3,3,Telegraph,Rd,710110,2.22,2.387,0,4.019735,5,5 +4942,0,0.266611,3,3,0,2,3,,3,3,Telegraph,Rd,710110,2.387,2.654,0,6.398659,5,5 +810,0,0.063373,2,2,1,2,3,,3,3,Elizabeth Lake,Rd,630906,6.375,6.438,0,1.520964,5,5 +3430,1,0.149378,1,0,0,1,3,RSF,4,3,Elizabeth Lake/Telegraph,,675601,0,0.149,0,,5,5 +4120,1,0.135119,1,0,0,1,3,RSF,4,3,Elizabeth Lake/Telegraph,,700803,0,0.135,0,,5,5 +4594,0,0.418711,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.561,1.98,0,10.049053,3.7,5 +3923,0,0.038613,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.98,2.018,0,0.926724,3.7,5 +4948,0,0.039932,2,2,0,2,3,,3,3,Telegraph,Rd,710110,2.018,2.058,0,0.95837,5,5 +344,0,0.021136,2,2,1,2,3,,3,3,Elizabeth Lake,Rd,630906,6.438,6.459,0,0.507271,5,5 +27877,0,0.186313,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.471514,0.15,4 +1880,0,0.169366,2,2,0,2,3,,3,3,Elizabeth Lake,Rd,630906,6.814,6.984,0,4.064776,5,5 +27873,0,0.449906,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.797736,0.15,4 +317,0,0.168612,2,2,0,2,3,,3,3,Elizabeth Lake,Rd,630906,6.646,6.814,0,4.046699,5,5 +3180,0,0.467257,2,2,0,2,3,,3,3,Cesar E Chavez,Ave,672206,1.842,2.309,0,11.214169,5,5 +3508,0,0.420248,2,2,1,2,3,,3,3,Cesar E Chavez,Ave,672206,1.422,1.842,0,10.085941,5,5 +3937,0,0.069138,2,2,0,2,5,,4,3,County Center,Dr,705009,0.397,0.466,0,1.659307,5.8,4.5 +27775,0,0.220371,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.288903,0.15,4 +3944,1,0.178713,2,0,0,2,5,DV2,4,3,County Center,Dr,705009,0.113,0.292,0,4.289106,5.8,4.5 +3990,-1,0.18155,0,2,0,2,5,DV2,4,3,County Center,Dr,703707,10.5,10.682,0,4.357192,5.8,4.5 +20193,1,0.162654,1,0,0,1,3,RSF,4,3,Telegraph/Pontiac Lake,Ramp,4400152,0,0.163,0,,3.7,5 +4001,-1,0.106215,0,2,0,2,4,DV2,4,3,Pontiac Lake,Rd,703707,10.33,10.436,0,2.549155,4.5,4.5 +20600,1,0.112606,2,0,0,2,4,DV2,4,3,Pontiac Lake,Rd,4400151,0,0.113,0,2.702539,4.5,4.5 +3949,1,0.113238,1,0,0,1,3,RSF,4,3,Telegraph/County Center E,Ramp,705009,0,0.113,0,,3.7,5 +3998,-1,0.064272,0,2,0,2,4,DV2,4,3,County Center,Dr,703707,10.436,10.5,0,1.542538,4.5,4.5 +4955,0,0.015777,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.31,1.326,0,0.378643,3.7,5 +20395,1,0.080446,2,0,0,2,5,DV2,4,3,County Center,Dr,4400151,0.113,0.193,0,1.930706,5.8,4.5 +4603,0,0.064134,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.326,1.39,0,1.539228,3.7,5 +4958,0,0.037368,2,2,0,2,3,,4,3,Telegraph,Rd,710110,1.273,1.31,0,0.89682,3.7,5 +3939,0,0.104765,2,2,0,2,5,,4,3,County Center,Dr,705009,0.292,0.397,0,2.514367,5.8,4.5 +3932,0,0.126135,1,1,0,2,5,,4,3,County Center,Dr,705009,0.466,0.592,0,3.027246,5.8,4.5 +3559,0,0.035781,1,1,0,2,5,,4,3,County Center,Dr,668206,0.9,0.936,0,0.858737,5.8,4.5 +27773,0,0.298365,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.160766,0.15,4 +915,0,0.272553,2,2,0,2,3,,3,3,State,,630906,7.245,7.517,0,6.541273,5,5 +2003,0,0.28482,2,2,0,2,3,,3,3,State,,630906,7.517,7.802,0,6.835668,5,5 +3209,0,0.361543,2,2,0,2,7,,3,3,Johnson,,673005,0.357,0.719,0,8.677042,7,4.5 +3363,0,0.083816,2,2,1,2,3,,3,3,Huron,St,648906,20.344,20.428,0,2.01158,5,5 +3528,0,0.147577,1,1,1,2,7,,3,3,Johnson,,673005,0.21,0.357,0,3.541839,7,4.5 +27879,0,0.198168,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.75602,0.15,4 +29759,0,0.337493,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.099843,0.15,4 +3372,0,0.228247,2,2,1,2,3,,3,3,Huron,St,648906,20.116,20.344,0,5.47793,5,5 +2556,0,0.209924,1,1,1,2,7,,3,3,Johnson,,673005,0,0.21,0,5.038187,7,4.5 +423,0,0.099585,1,1,0,2,5,,3,3,Williams,,5500202,0,0.1,0,2.390039,8,4.5 +514,1,0.11385,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.057,0.171,0,2.73239,5,5 +1974,0,0.024707,1,1,0,2,5,,3,3,Franklin,Blvd,5500204,0.183,0.208,0,0.592957,8,4.5 +2724,1,0.144027,2,0,0,2,5,,3,3,Pike,,676308,0.366,0.51,0,3.456651,8,4.5 +3361,0,0.20543,2,2,0,2,3,,3,3,Huron,St,648906,20.428,20.633,0,4.930321,5,5 +27798,0,0.068593,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.646238,0.15,4 +890,0,0.129343,1,1,0,2,5,,3,3,Franklin,Blvd,5500204,0,0.129,0,3.10424,8,4.5 +1887,1,0.094771,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.242,0.336,0,2.274506,5,5 +3575,1,0.05204,2,0,0,2,5,,3,3,Pike,,676308,0.51,0.562,0,1.248955,8,4.5 +27797,0,0.061821,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.483712,0.15,4 +29758,0,0.145982,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.503568,0.15,4 +424,0,0.054063,1,1,0,2,5,,3,3,Franklin,Blvd,5500204,0.129,0.183,0,1.297513,8,4.5 +27799,0,0.01468,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,0.352311,0.15,4 +2063,1,0.070384,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0.171,0.242,0,1.689214,5,5 +1461,0,0.099384,1,1,0,2,5,,3,3,Franklin,Blvd,5500204,0.208,0.307,0,2.38522,8,4.5 +889,0,0.193643,1,1,0,2,5,,3,3,Bagley,,641410,1.218,1.411,0,4.647424,8,4.5 +979,0,0.034486,2,2,1,2,3,,3,3,Orchard Lake,Rd,641405,0.302,0.337,0,0.827662,5,5 +1350,0,0.161821,1,1,0,2,5,,3,3,Williams,,5500202,0.1,0.261,0,3.8837,8,4.5 +2783,0,0.169979,2,1,1,2,3,,3,3,Cesar E Chavez,Ave,672206,0.403,0.573,0,4.079501,5,5 +3483,-1,0.239243,0,3,0,2,3,,3,3,Cass,Ave,674803,0.194,0.434,0,5.741842,5,5 +24556,-1,0.096571,0,3,0,2,3,,3,3,Cass,Ave,674803,0.098,0.194,0,2.317707,5,5 +27786,0,0.343396,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.241515,0.15,4 +29757,0,0.181146,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.347496,0.15,4 +27574,0,0.262792,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.307011,0.15,4 +27880,0,0.011622,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,0.278932,0.15,4 +2462,0,0.175458,2,1,0,2,7,,3,3,Johnson,,673005,0.719,0.894,0,4.210989,7,4.5 +24555,-1,0.097859,0,3,0,2,3,,2,3,Cass,Ave,674803,0,0.098,0,2.348617,6,5 +24583,1,0.061746,2,0,0,2,5,,2,3,Lafayette,,0,0,0,0,1.481899,8.5,4.5 +527,1,0.039556,3,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.309,0.349,0,0.949337,6,5 +2856,0,0.13089,1,1,1,2,3,,3,3,Baldwin,Ave,672209,0,0.131,0,3.141365,5,5 +27784,0,0.054425,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.306211,0.15,4 +2452,0,0.30997,2,2,0,2,3,,3,3,Montcalm,,673305,0,0.31,0,7.439273,5,5 +2504,0,0.560743,1,1,1,2,4,,3,3,Kennett,Rd,673310,0.945,1.506,0,13.457837,6,4.5 +3250,0,0.306835,1,1,1,2,3,,3,3,Baldwin,Ave,672209,0.544,0.851,0,7.364036,5,5 +3367,0,0.370734,2,2,0,2,3,,3,3,Montcalm,,673305,0.315,0.686,0,8.897618,5,5 +27789,0,0.302109,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.250618,0.15,4 +27790,0,0.27155,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.517196,0.15,4 +3074,0,0.415756,2,1,1,2,3,,3,3,Cesar E Chavez,Ave,672206,0.822,1.237,0,9.978137,5,5 +3421,0,0.004938,2,2,0,2,3,,3,3,Montcalm,,673305,0.31,0.315,0,0.118521,5,5 +27788,0,0.189849,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.556384,0.15,4 +2949,0,0.253599,2,2,1,2,3,,3,3,Baldwin,Ave,672209,0.851,1.105,0,6.086386,5,5 +2739,0,1.683479,1,1,0,2,5,,5,3,Maybee,Rd,654403,0,1.683,0,40.403492,3.7,5 +3007,0,0.217646,2,2,1,2,3,,4,3,Walton,Blvd,673510,1.34,1.557,0,5.223505,3.7,5 +3158,1,0.129027,2,0,0,2,3,,4,3,Dixie,Hwy,672206,2.439,2.568,0,3.09665,3.7,5 +3426,0,0.358879,2,2,1,2,3,,4,3,Baldwin,Rd,655009,0.472,0.831,0,8.613087,3.7,5 +4540,0,1.024886,1,1,0,2,4,,4,3,Clintonville,Rd,697001,0.259,1.284,0,24.597259,4.5,4.5 +20541,-1,0.114868,0,2,0,2,3,,4,3,Dixie,Hwy,4400845,0.144,0.258,0,2.756832,3.7,5 +21490,0,0.153734,2,2,1,2,3,,4,3,Telegraph,Rd,4413717,0,0.154,0,3.689618,3.7,5 +26113,0,0.480965,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.543169,0.15,4 +29482,0,0.935402,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.449656,0.15,4 +4769,0,0.627158,2,2,1,2,3,,4,3,Walton,Blvd,696509,2.154,2.781,0,15.051803,3.7,5 +4770,0,0.324287,2,2,1,2,3,,4,3,Walton,Blvd,696509,1.83,2.154,0,7.782897,3.7,5 +5011,0,0.625968,2,2,1,2,3,,4,3,Dixie,Hwy,689103,7.493,8.119,0,15.023242,3.7,5 +25045,0,0.396374,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.512966,0.15,4 +25166,0,0.902068,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.649627,0.15,4 +27881,0,0.496233,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.90958,0.15,4 +29483,0,0.300839,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.220145,0.15,4 +30183,0,0.938792,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.531002,0.15,4 +4217,0,0.566912,1,1,0,2,5,,4,3,Watkins Lake,Rd,697604,0.665,1.231,0,13.605898,5.8,4.5 +4549,0,0.679305,1,1,0,2,4,,4,3,Scott Lake,Rd,696907,1.785,2.464,0,16.303312,4.5,4.5 +5017,0,0.455042,2,2,1,2,3,,4,3,Dixie,Hwy,689103,7.038,7.493,0,10.920997,3.7,5 +4200,0,0.279966,1,1,0,2,5,,4,3,Watkins Lake,Rd,697604,1.231,1.511,0,6.719184,5.8,4.5 +4543,0,0.258983,1,1,0,2,4,,4,3,Clintonville,Rd,697001,0,0.259,0,6.215595,4.5,4.5 +4771,0,0.550792,2,2,1,2,3,,4,3,Walton,Blvd,696509,1.28,1.83,0,13.219016,3.7,5 +4133,0,0.285434,1,1,0,2,4,,4,3,Silver Lake,Rd,700108,0,0.285,0,6.850423,4.5,4.5 +4999,0,0.260293,2,2,1,2,3,,4,3,Dixie,Hwy,689103,8.255,8.515,0,6.247031,3.7,5 +5003,0,0.045468,2,2,1,2,3,,4,3,Dixie,Hwy,689103,8.21,8.255,0,1.091225,3.7,5 +5005,0,0.090706,2,2,1,2,3,,4,3,Dixie,Hwy,689103,8.119,8.21,0,2.176944,3.7,5 +4965,1,0.0938,2,0,0,2,3,,4,3,Dixie,Hwy,689103,8.515,8.609,0,2.251195,3.7,5 +20348,-1,0.09408,0,2,0,2,3,,4,3,Dixie,Hwy,4400847,0,0.094,0,2.25793,3.7,5 +3947,0,0.009006,2,2,1,2,3,,4,3,Telegraph,Rd,710110,0,0.009,0,0.216148,3.7,5 +4132,0,0.314317,1,1,0,2,4,,4,3,Silver Lake,Rd,700108,0.285,0.6,0,7.543598,4.5,4.5 +4761,0,0.180657,2,2,1,2,3,,4,3,Walton,Blvd,696509,2.904,3.084,0,4.335768,3.7,5 +4767,0,0.122167,2,2,1,2,3,,4,3,Walton,Blvd,696509,2.781,2.904,0,2.932011,3.7,5 +4521,0,0.566689,1,1,0,2,4,,4,3,Clintonville,Rd,697001,1.284,1.85,0,13.600546,4.5,4.5 +26112,0,0.798269,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.158464,0.15,4 +3285,0,0.5051,1,1,0,2,4,,4,3,Maybee,Rd,653405,2.875,3.38,0,12.122389,4.5,4.5 +4515,0,0.123296,1,1,0,2,4,,4,3,Clintonville,Rd,697001,2.289,2.412,0,2.959099,4.5,4.5 +26115,0,0.526826,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.643815,0.15,4 +4520,0,0.438743,1,1,0,2,4,,4,3,Clintonville,Rd,697001,1.85,2.289,0,10.529835,4.5,4.5 +26117,0,0.185234,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.44562,0.15,4 +3390,0,0.241006,2,2,1,2,3,,4,3,Baldwin,Ave,672209,2.224,2.465,0,5.784147,3.7,5 +3521,0,0.72044,2,2,1,2,3,,4,3,Walton,Blvd,673510,0,0.72,0,17.290568,3.7,5 +27343,0,0.626066,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.025592,0.15,4 +27883,0,0.868754,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.850101,0.15,4 +27886,0,0.654761,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.714259,0.15,4 +27887,0,0.17151,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.116235,0.15,4 +2617,0,0.41493,1,1,1,2,4,,3,3,Kennett,Rd,673310,0.017,0.432,0,9.958314,6,4.5 +3320,0,0.619472,2,2,1,2,3,,4,3,Walton,Blvd,673510,0.72,1.34,0,14.867323,3.7,5 +21384,-1,0.533537,0,2,0,2,3,DIV,4,3,Telegraph,Rd,4414294,0,0.533,0,12.804896,3.7,5 +21446,1,0.53334,2,0,0,2,3,DIV,4,3,Telegraph,Rd,4413717,0.154,0.687,0,12.800152,3.7,5 +27884,0,0.085659,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.055809,0.15,4 +30187,0,0.069367,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,1.664806,0.15,4 +2891,1,0.016751,1,0,0,2,4,,4,3,Kennett,Rd,673310,0,0.017,0,0.402021,4.5,4.5 +27885,0,0.402914,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.669931,0.15,4 +21444,0,0.385477,2,2,1,2,3,,4,3,Telegraph,Rd,4413717,0.823,1.208,0,9.251444,3.7,5 +21383,-1,0.134614,0,2,0,2,3,DIV,4,3,Telegraph,Rd,4414294,0.533,0.668,0,3.230729,3.7,5 +21445,1,0.13575,2,0,0,2,3,DIV,4,3,Telegraph,Rd,4413717,0.687,0.823,0,3.257998,3.7,5 +3050,0,0.235264,2,2,1,2,3,,3,3,Baldwin,Ave,672209,1.747,1.982,0,5.646324,5,5 +27793,0,0.465799,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.179182,0.15,4 +3373,0,0.368101,2,2,1,2,3,,3,3,Baldwin,Ave,672209,1.379,1.747,0,8.834418,5,5 +3476,0,0.172119,1,1,1,2,5,,3,3,Columbia,,673503,0,0.172,0,4.130849,8,4.5 +2772,0,0.242567,2,2,1,2,3,,3,3,Baldwin,Ave,672209,1.982,2.224,0,5.821608,5,5 +2974,0,0.297031,2,2,1,2,3,,4,3,Baldwin,Rd,655009,0,0.297,0,7.128746,3.7,5 +27298,0,0.295578,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.093866,0.15,4 +2727,0,0.174886,2,2,1,2,3,,4,3,Baldwin,Rd,655009,0.297,0.472,0,4.197257,3.7,5 +3066,0,0.333711,2,2,1,2,3,,4,3,Baldwin,Ave,672209,2.465,2.799,0,8.009065,3.7,5 +1872,-1,0.293166,0,3,0,1,1,,4,3,S I 75,,646106,25.398,25.692,0,,0.8,7.5 +3355,1,0.337542,1,0,0,1,1,ROF,4,3,S I 75/Baldwin,RAMP,668908,0,0.338,0,,2.24,5 +27882,0,1.054622,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.310918,0.15,4 +27890,0,0.57858,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.885922,0.15,4 +28583,0,0.9139,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.933593,0.15,4 +25342,0,0.638761,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.330256,0.15,4 +1010,-1,0.326042,0,3,0,1,1,,4,3,S I 75,,646106,25.073,25.398,0,,0.8,7.5 +2268,1,0.36917,3,0,0,1,1,,4,3,N I 75,,647308,25.005,25.374,0,,0.8,7.5 +37093,-1,0.048612,0,3,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0.49,0.538,0,1.16669,3.7,5 +2685,0,0.180234,1,1,1,2,4,,4,3,Brown,Rd,4416311,0,0.18,0,4.325615,4.5,4.5 +2760,1,0.3415,1,0,0,1,1,ROF,4,3,N I 75/N Baldwin,RAMP,669001,0,0.341,0,,2.24,5 +3033,1,0.31742,1,0,0,1,1,RON,4,3,N Baldwin/S I 75,RAMP,668909,0,0.317,0,,1.09,4 +21492,0,0.516697,2,2,0,2,5,,4,3,Great Lakes Crossings,Rd,4413601,0,0.517,0,12.400716,5.8,4.5 +37094,1,0.024765,3,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,1.307,1.332,0,0.594361,3.7,5 +30184,0,0.475058,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.401394,0.15,4 +37089,1,0.196779,3,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,1.332,1.529,0,4.722694,3.7,5 +37111,0,0.587765,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.106365,0.15,4 +37086,1,0.230718,1,0,0,1,1,RON,4,3,S Baldwin/S I 75,RAMP,4412910,0,0.231,0,,1.09,4 +2267,1,0.229561,3,0,0,1,1,,4,3,N I 75,,647308,25.374,25.603,0,,0.8,7.5 +3277,1,0.186863,1,0,0,1,1,ROF,4,3,N I 75/S Baldwin,RAMP,669003,0,0.187,0,,2.24,5 +37110,0,0.456865,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.964763,0.15,4 +37105,1,0.060801,3,0,0,2,4,DIV,4,3,Baldwin,Rd,655009,1.551,1.612,0,1.459215,4.5,4.5 +37107,-1,0.208856,0,2,0,2,4,DIV,4,3,Baldwin,Rd,4414691,0.788,0.997,0,5.012553,4.5,4.5 +37113,-1,0.195746,0,2,0,2,5,DV2,3,4,Kennedy,Cir,4211477,0,0.196,0,4.697905,8,4.5 +27776,0,0.199489,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.787737,0.15,4 +2532,0,0.081669,1,1,1,2,4,,4,3,Brown,Rd,4416311,0.18,0.262,0,1.960055,4.5,4.5 +506,-1,0.233524,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,0.028,0.262,0,5.604576,3.7,5 +610,0,0.364156,2,2,0,2,4,,4,3,Auburn,Ave,625105,1.142,1.506,0,8.739745,4.5,4.5 +958,1,0.290016,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,0.027,0.317,0,6.960377,3.7,5 +1135,0,0.273579,2,2,1,2,4,,4,3,South,Blvd,616406,0.548,0.822,0,6.565907,4.5,4.5 +1147,0,0.629926,2,2,1,2,3,,4,3,University,Dr,624301,1.311,1.94,0,15.118233,3.7,5 +1207,-1,1.175446,0,4,0,1,1,,4,3,S I 75,,646106,17.065,18.24,0,,0.8,7.5 +1421,1,0.398199,3,0,0,2,3,DIV,4,3,Square Lake,Rd,625903,1.744,2.142,0,9.556777,3.7,5 +1460,1,0.293476,4,0,0,2,3,DIV,3,3,Woodward,Ave,641407,0.918,1.211,0,7.043424,5,5 +1758,-1,0.383008,0,3,0,2,3,DIV,4,3,Square Lake,Rd,625912,1.77,2.152,0,9.192203,3.7,5 +2092,0,0.288265,2,2,1,2,4,,4,3,Opdyke,Rd,616205,3.07,3.358,0,6.918358,4.5,4.5 +2281,1,0.918213,5,0,0,1,1,,4,3,N I 75,,647308,17.252,18.17,0,,0.8,7.5 +2681,-1,0.598452,0,2,0,1,2,,4,3,W M 59,,677208,0.87,1.468,0,,0.8,7.5 +2938,0,0.499178,2,2,1,2,4,,4,3,Featherstone,,673909,0.111,0.611,0,11.980283,4.5,4.5 +3192,1,0.188153,4,0,0,2,3,DIV,3,3,Woodward,Ave,672705,0.077,0.265,0,4.51568,5,5 +3255,0,0.390552,2,2,1,2,3,,3,3,East,Blvd,672807,1.169,1.56,0,9.373249,5,5 +3294,1,0.775861,2,0,0,1,2,,4,3,E M 59,,648906,22.19,22.966,0,,0.8,7.5 +25182,0,0.304334,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.304013,0.15,4 +27772,0,0.491517,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.796402,0.15,4 +27829,0,0.337561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.101466,0.15,4 +27859,0,0.278664,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.687928,0.15,4 +27862,0,0.549428,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.186266,0.15,4 +27891,0,0.802901,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.26963,0.15,4 +27894,0,0.497264,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.934335,0.15,4 +27895,0,0.45699,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.967761,0.15,4 +27903,0,0.293703,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.048865,0.15,4 +27905,0,0.398813,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.571507,0.15,4 +27919,0,0.544729,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.073489,0.15,4 +27921,0,0.514244,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.341845,0.15,4 +27928,0,0.253224,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.077366,0.15,4 +605,1,0.412597,4,0,0,2,3,DIV,3,3,Woodward,Ave,616906,0.905,1.317,0,9.902319,5,5 +1074,1,0.635067,3,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,3.036,3.67,0,15.241619,3.7,5 +1242,-1,0.432466,0,4,0,2,3,DIV,3,3,Woodward,Ave,622302,0.882,1.314,0,10.379192,5,5 +1499,0,0.102375,1,1,0,2,4,,3,3,Franklin,Rd,620409,0.806,0.908,0,2.456988,6,4.5 +2114,0,0.18411,1,1,0,2,4,,3,3,South,Blvd,624102,0.599,0.783,0,4.418633,6,4.5 +2716,0,0.141566,2,2,1,2,3,,4,3,East,Blvd,672807,0.022,0.163,0,3.397583,3.7,5 +2853,1,0.275581,3,0,0,2,3,DIV,3,3,Saginaw,St,674904,0,0.275,0,6.613951,5,5 +20252,-1,0.671133,0,3,0,2,3,DIV,4,3,Square Lake,Rd,4404559,0.546,1.217,0,16.107182,3.7,5 +20480,-1,0.271818,0,3,0,2,3,DIV,3,3,Saginaw,St,4400013,0,0.272,0,6.523636,5,5 +27387,0,0.294898,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.077558,0.15,4 +27849,0,0.524071,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.577693,0.15,4 +27912,0,0.285432,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.850375,0.15,4 +27915,0,0.370561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.893465,0.15,4 +27916,0,0.245973,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.903358,0.15,4 +27917,0,0.237044,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.689052,0.15,4 +30245,0,0.389323,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.343756,0.15,4 +992,1,0.106481,2,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,2.67,2.777,0,2.555548,3.7,5 +1387,0,0.313915,2,2,0,2,4,,4,3,Franklin,Rd,620409,0.091,0.405,0,7.533961,4.5,4.5 +3957,1,0.134041,4,0,0,2,3,DIV,4,3,Telegraph,Rd,710106,11.196,11.33,0,3.21698,3.7,5 +4389,-1,0.023511,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710009,11.169,11.193,0,0.564256,3.7,5 +20657,-1,0.118342,0,2,0,2,3,DIV,4,3,Square Lake,Rd,4404559,0.203,0.322,0,2.840216,3.7,5 +425,1,0.090224,2,0,0,2,4,DIV,4,3,Square Lake,Rd,640407,2.455,2.545,0,2.16537,4.5,4.5 +19248,1,0.095165,2,0,0,1,3,RSF,4,3,S Telegraph/Square Lake Cutoff,,1807807,0,0.095,0,,3.7,5 +20399,-1,0.09004,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4404559,0,0.09,0,2.16095,4.5,4.5 +20941,1,0.146205,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,2.186,2.332,0,3.508928,3.7,5 +1462,1,0.030601,2,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,2.64,2.67,0,0.734428,3.7,5 +20892,-1,0.031882,0,2,0,2,3,DIV,4,3,Square Lake,Rd,4404559,0.171,0.203,0,0.765166,3.7,5 +1975,1,0.094704,2,0,0,2,4,DIV,4,3,Square Lake,Rd,640407,2.545,2.64,0,2.272888,4.5,4.5 +20197,-1,0.081445,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4404559,0.09,0.171,0,1.954688,4.5,4.5 +19247,1,0.007256,2,0,0,1,3,RSF,4,3,S Telegraph/Square Lake Cutoff,,1807807,0.095,0.102,0,,3.7,5 +20940,1,0.016349,4,0,0,2,3,DIV,4,3,Telegraph,Rd,4412692,2.332,2.348,0,0.392366,3.7,5 +3883,-1,0.01538,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710110,5.525,5.54,0,0.369128,3.7,5 +531,1,0.258835,3,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,2.777,3.036,0,6.212052,3.7,5 +2006,0,0.08244,1,1,1,2,4,,4,3,Franklin,Rd,620409,0,0.082,0,1.978552,4.5,4.5 +20439,-1,0.22489,0,3,0,2,3,DIV,4,3,Square Lake,Rd,4404559,0.322,0.546,0,5.397359,3.7,5 +3876,-1,0.048525,0,3,0,2,3,DIV,4,3,Telegraph,Rd,710009,11.12,11.169,0,1.164601,3.7,5 +37069,-1,0.151132,0,4,0,2,3,DIV,4,3,Telegraph,Rd,710009,11.193,11.344,0,3.627174,3.7,5 +1902,0,0.008643,2,2,0,2,4,,4,3,Franklin,Rd,620409,0.082,0.091,0,0.207437,4.5,4.5 +1556,0,0.265025,2,2,0,2,4,,3,3,Franklin,Rd,620409,0.541,0.806,0,6.360591,6,4.5 +2062,0,0.136173,2,2,0,2,4,,4,3,Franklin,Rd,620409,0.405,0.541,0,3.268153,4.5,4.5 +634,0,0.267893,1,1,0,2,4,,3,3,South,Blvd,624102,0.331,0.599,0,6.429426,6,4.5 +1029,0,0.306167,1,1,0,2,4,,3,3,Franklin,Rd,620409,0.908,1.214,0,7.348015,6,4.5 +1759,0,0.437693,1,1,0,2,4,,3,3,Franklin,Rd,620409,1.214,1.652,0,10.504621,6,4.5 +1859,0,0.305266,1,1,0,2,5,,3,3,Bagley,,641410,0.533,0.838,0,7.326385,8,4.5 +2471,1,0.36901,3,0,0,2,3,DIV,3,3,Saginaw,St,674904,0.275,0.644,0,8.856251,5,5 +2704,0,0.134692,1,1,0,2,4,,3,3,Rapid,,676501,0,0.135,0,3.232602,6,4.5 +3444,1,0.20943,3,0,0,2,3,DIV,3,3,Saginaw,St,674904,0.644,0.854,0,5.026328,5,5 +20094,-1,0.215417,0,3,0,2,3,DIV,3,3,Saginaw,St,4400013,0.637,0.852,0,5.169997,5,5 +20291,-1,0.365073,0,3,0,2,3,DIV,3,3,Saginaw,St,4400013,0.272,0.637,0,8.76175,5,5 +27844,0,0.628725,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.089407,0.15,4 +27846,0,0.498639,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.96733,0.15,4 +1083,0,0.331255,1,1,0,2,4,,3,3,South,Blvd,624102,0,0.331,0,7.950114,6,4.5 +299,0,0.174854,1,1,0,2,5,,3,3,Bagley,,641410,0.358,0.533,0,4.196492,8,4.5 +1264,0,0.029048,1,1,0,2,4,,3,3,Franklin,Rd,620409,1.652,1.681,0,0.697146,6,4.5 +3461,1,0.076744,4,0,0,2,3,DIV,3,3,Woodward,Ave,672705,0,0.077,0,1.841856,5,5 +20729,1,0.02229,1,0,0,2,3,,3,3,Woodward Turn Channel,,4407547,0,0.022,0,0.534953,5,5 +27843,0,0.202076,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.849823,0.15,4 +27845,0,0.22791,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.469844,0.15,4 +3185,0,0.008484,1,1,0,2,4,,3,3,Rapid,,676501,0.135,0.143,0,0.203627,6,4.5 +1020,1,0.406444,4,0,0,2,3,DIV,4,3,Woodward,Ave,616906,0.406,0.812,0,9.754653,3.7,5 +1255,-1,0.384887,0,4,0,2,3,DIV,4,3,Woodward,Ave,622302,0.418,0.803,0,9.237292,3.7,5 +1744,-1,0.418128,0,4,0,2,3,DIV,4,3,Woodward,Ave,622302,0,0.418,0,10.03506,3.7,5 +2110,1,0.406071,4,0,0,2,3,DIV,4,3,Woodward,Ave,616906,0,0.406,0,9.745716,3.7,5 +27914,0,0.432959,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.391017,0.15,4 +28099,0,0.454224,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.901384,0.15,4 +564,1,0.092578,4,0,0,2,3,DIV,3,3,Woodward,Ave,616906,0.812,0.905,0,2.221884,5,5 +1731,-1,0.078775,0,4,0,2,3,DIV,3,3,Woodward,Ave,622302,0.803,0.882,0,1.890597,5,5 +3469,-1,0.021491,0,2,0,2,3,,3,3,East,Blvd,672807,0,0.022,0,0.515791,5,5 +623,1,0.188416,3,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,3.67,3.859,0,4.521982,3.7,5 +3678,0,0.121167,1,1,0,2,4,,4,3,Lahser,Rd,685510,10.952,11.073,0,2.907999,4.5,4.5 +19903,-1,0.194625,0,3,0,2,3,DIV,4,3,Square Lake,Rd,4404559,1.217,1.412,0,4.671001,3.7,5 +2151,1,0.099558,3,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,3.859,3.958,0,2.38939,3.7,5 +20725,-1,0.078132,0,3,0,2,3,DIV,4,3,Square Lake,Rd,4404559,1.412,1.49,0,1.875157,3.7,5 +20888,1,0.019383,1,0,0,2,3,,4,3,W Square Lake/Lahser Turn,,4400153,0,0.019,0,0.465187,3.7,5 +2154,1,0.026924,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,0,0.027,0,0.646169,3.7,5 +20489,-1,0.018939,0,3,0,2,3,DIV,4,3,Square Lake,Rd,4404559,1.49,1.509,0,0.454539,3.7,5 +974,-1,0.028129,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,0,0.028,0,0.675087,3.7,5 +1647,1,0.020714,3,0,0,2,3,DIV,4,3,Square Lake,Rd,640407,3.958,3.979,0,0.497138,3.7,5 +687,0,0.352416,2,2,1,2,4,,3,3,South,Blvd,616406,0.196,0.548,0,8.457976,6,4.5 +2436,0,0.363945,2,2,1,2,3,,4,3,East,Blvd,672807,0.163,0.527,0,8.734689,3.7,5 +3405,0,0.32112,2,2,1,2,3,,3,3,East,Blvd,672807,0.527,0.848,0,7.706886,5,5 +27904,0,0.373035,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.95283,0.15,4 +27911,0,0.439616,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.550777,0.15,4 +27913,0,0.351482,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.435557,0.15,4 +1127,0,0.195851,2,2,1,2,4,,3,3,South,Blvd,616406,0,0.196,0,4.700436,6,4.5 +1611,0,0.012505,2,2,1,2,4,,3,3,South,Blvd,624102,0.783,0.796,0,0.300128,6,4.5 +3563,0,0.321664,2,2,1,2,3,,3,3,East,Blvd,672807,0.848,1.169,0,7.719935,5,5 +505,0,0.387562,1,1,0,2,5,,3,3,Paddock,,624209,0.161,0.549,0,9.301497,8,4.5 +1162,0,0.304445,2,2,1,2,3,,3,3,University,Dr,624301,0.863,1.168,0,7.306684,5,5 +1292,0,0.367246,1,1,0,2,5,,3,3,Pike,,625107,0.495,0.862,0,8.813904,8,4.5 +1639,0,0.141845,2,2,1,2,3,,3,3,University,Dr,624301,0.721,0.863,0,3.404269,5,5 +2055,0,0.365624,2,2,0,2,4,,3,3,Auburn,Ave,625105,0.458,0.823,0,8.77497,6,4.5 +2543,0,0.329843,1,1,1,2,3,,3,3,Perry,,674007,1.127,1.457,0,7.91624,5,5 +2632,0,0.145913,2,2,0,2,3,,3,3,Montcalm,,673306,1.023,1.169,0,3.501905,5,5 +2743,0,0.507159,2,2,0,2,5,,3,3,Madison,,673804,0,0.507,0,12.171804,8,4.5 +2808,0,0.184135,2,2,1,2,3,,3,3,East,Blvd,673106,0.498,0.682,0,4.419245,5,5 +3008,0,0.179725,2,2,1,2,3,,3,3,Joslyn,Ave,674110,0.066,0.246,0,4.313408,5,5 +3130,0,0.163217,1,1,1,2,3,,3,3,Perry,,674007,0.782,0.945,0,3.9172,5,5 +3245,-1,0.431925,0,2,0,1,2,,3,3,W M 59,,677208,0,0.432,0,,0.58,7 +3297,1,0.330099,2,0,0,1,2,,3,3,E M 59,,648906,21.557,21.887,0,,0.58,7 +3385,0,0.336987,1,1,0,2,5,,3,3,Saginaw,St,674704,0.56,0.897,0,8.087677,8,4.5 +27785,0,0.305109,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.322619,0.15,4 +27811,0,0.514417,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.346019,0.15,4 +27866,0,0.24866,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.967847,0.15,4 +27893,0,0.307682,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.384357,0.15,4 +27923,0,0.397113,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.530706,0.15,4 +27925,0,0.235661,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.655863,0.15,4 +29756,0,0.492128,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.811079,0.15,4 +30189,0,0.392312,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.415482,0.15,4 +508,0,0.320653,2,2,0,2,4,,3,3,Auburn,Ave,625105,0.137,0.458,0,7.695667,6,4.5 +1258,0,0.313501,1,1,0,2,5,,3,3,Pike,,625107,0.181,0.495,0,7.524018,8,4.5 +1275,0,0.134582,1,1,0,2,5,,3,3,Paddock,,625001,1.274,1.408,0,3.229959,8,4.5 +1303,-1,0.326152,0,3,0,2,3,,3,3,University,Dr,624301,0.211,0.537,0,7.827649,5,5 +2555,0,0.050165,2,2,0,2,5,,2,3,Perry,,674007,0.219,0.269,0,1.203964,8.5,4.5 +2816,0,0.053505,1,1,0,2,5,,2,3,Mill,,675903,0.146,0.2,0,1.284111,8.5,4.5 +2871,0,0.082308,1,1,0,2,5,,2,3,Wayne,,675205,0.085,0.167,0,1.975392,8.5,4.5 +2977,1,0.145402,4,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.534,0.679,0,3.489649,6,5 +3276,0,0.084788,1,1,0,2,5,,2,3,Saginaw,St,674704,0,0.085,0,2.034921,8.5,4.5 +3302,1,0.348491,4,0,0,2,3,,3,3,Huron,St,648906,21.175,21.524,0,8.36379,5,5 +3336,1,0.098116,2,0,0,2,3,,2,3,Huron,St,648906,21.077,21.175,0,2.354788,6,5 +421,0,0.068109,1,1,0,2,5,,2,3,Saginaw,St,641406,0.083,0.151,0,1.634618,8.5,4.5 +422,1,0.12627,5,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.677,0.804,0,3.030477,6,5 +1958,0,0.098977,2,2,0,2,3,,2,3,Orchard Lake,Rd,641405,0,0.099,0,2.375452,6,5 +1973,1,0.114341,4,0,0,2,3,DIV,3,3,Woodward,Ave,641407,0.804,0.918,0,2.744183,5,5 +2615,1,0.142221,5,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.319,0.461,0,3.413299,6,5 +3346,0,0.072316,2,2,1,2,3,,2,3,Huron,St,648906,20.967,21.039,0,1.735578,6,5 +3570,1,0.074444,2,0,0,2,5,,2,3,Lawrence,,4416276,0.178,0.253,0,1.786654,8.5,4.5 +3601,0,0.070231,2,1,1,2,5,,2,3,Pike,,676308,0,0.07,0,1.685546,8.5,4.5 +27802,0,0.060745,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.457872,0.15,4 +27803,0,0.079547,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.909117,0.15,4 +27823,0,0.126689,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.040545,0.15,4 +27824,0,0.156813,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.763502,0.15,4 +27825,0,0.080472,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.931334,0.15,4 +28297,0,0.215126,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.163024,0.15,4 +2461,0,0.069107,1,1,0,2,5,,2,3,Wayne,,675205,0.252,0.321,0,1.658566,8.5,4.5 +2885,1,0.078527,2,0,0,2,5,,2,3,Lawrence,,4416276,0.033,0.112,0,1.884639,8.5,4.5 +3287,0,0.060205,2,1,1,2,5,,2,3,Pike,,676308,0.07,0.13,0,1.444915,8.5,4.5 +3350,0,0.100311,2,2,0,2,3,,2,3,Huron,St,648906,20.796,20.896,0,2.407457,6,5 +24562,1,0.08985,5,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.516,0.606,0,2.156393,6,5 +24563,1,0.071265,5,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0.606,0.677,0,1.710355,6,5 +1052,0,0.083215,1,1,0,2,5,,2,3,Saginaw,St,641406,0,0.083,0,1.997162,8.5,4.5 +2593,0,0.045519,1,1,0,2,5,,2,3,Wayne,,675205,0.167,0.213,0,1.092466,8.5,4.5 +2609,1,0.066581,2,0,0,2,5,,2,3,Lawrence,,4416276,0.112,0.178,0,1.597943,8.5,4.5 +3349,0,0.07047,2,2,0,2,3,,2,3,Huron,St,648906,20.896,20.967,0,1.691287,6,5 +2736,0,0.038998,1,1,0,2,5,,2,3,Wayne,,675205,0.213,0.252,0,0.935944,8.5,4.5 +976,0,0.137123,2,2,0,2,3,,2,3,Auburn,Ave,625105,0,0.137,0,3.29096,6,5 +2889,1,0.054109,4,0,0,2,3,DIV,3,3,Woodward,Ave,672705,0.265,0.319,0,1.29862,5,5 +210,0,0.036966,1,2,0,2,5,,2,3,Pike,,625107,0.071,0.108,0,0.88719,8.5,4.5 +1748,-1,0.073695,0,2,0,2,5,,2,3,Pike,,625107,0.108,0.181,0,1.768669,8.5,4.5 +2587,0,0.067681,1,1,0,2,5,,2,3,Perry,,674007,0.07,0.138,0,1.624346,8.5,4.5 +3274,1,0.072335,5,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.461,0.534,0,1.73604,6,5 +3307,0,0.036232,2,2,0,2,5,,2,3,Water,,676009,0.062,0.098,0,0.869565,8.5,4.5 +3495,1,0.06784,2,0,0,2,5,,2,3,Mill,,675903,0.278,0.346,0,1.628156,8.5,4.5 +708,0,0.070808,1,2,0,2,5,,2,3,Pike,,625107,0,0.071,0,1.699391,8.5,4.5 +1972,0,0.070889,1,1,0,2,5,,2,3,Saginaw,St,641406,0.151,0.222,0,1.701338,8.5,4.5 +2868,0,0.069824,2,2,0,2,5,,2,3,Perry,,674007,0,0.07,0,1.675768,8.5,4.5 +2996,0,0.070053,2,2,0,2,5,,2,3,Water,,676009,0.098,0.168,0,1.681268,8.5,4.5 +27801,0,0.062483,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.499581,0.15,4 +27804,0,0.079673,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.91216,0.15,4 +2526,1,0.078994,2,0,0,2,5,,2,3,Mill,,675903,0.2,0.278,0,1.895853,8.5,4.5 +2846,0,0.081683,1,1,0,2,5,,2,3,Perry,,674007,0.138,0.219,0,1.960384,8.5,4.5 +3340,0,0.038297,2,2,1,2,3,,2,3,Huron,St,648906,21.039,21.077,0,0.919125,6,5 +2601,1,0.036064,1,0,0,2,5,,2,3,Lawrence,,4416276,0.253,0.289,0,0.865529,8.5,4.5 +2203,0,0.061943,2,2,0,2,5,,2,3,Water,,676009,0,0.062,0,1.486632,8.5,4.5 +3279,1,0.070205,2,0,0,2,5,,2,3,Mill,,675903,0.346,0.416,0,1.684923,8.5,4.5 +2499,1,0.118148,5,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.95,1.068,0,2.835556,6,5 +2538,0,0.289336,1,1,0,2,5,,3,3,Saginaw,St,674704,0.271,0.56,0,6.94406,8,4.5 +2849,0,0.219207,1,1,1,2,3,,3,3,Perry,,674007,0.462,0.681,0,5.260966,5,5 +2963,0,0.079345,1,1,1,2,5,,2,3,Lafayette,,676403,0.254,0.333,0,1.904276,8.5,4.5 +27780,0,0.136509,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.276211,0.15,4 +1459,1,0.10236,5,0,0,2,3,DIV,2,3,Woodward,Ave,641407,0,0.102,0,2.456637,6,5 +2826,0,0.100825,1,1,0,2,5,,2,3,Saginaw,St,674704,0.17,0.271,0,2.419804,8.5,4.5 +3399,0,0.144152,1,1,0,2,5,,2,3,Oakland,Ave,672206,0.034,0.178,0,3.459658,8.5,4.5 +3572,0,0.051966,1,1,0,2,5,,2,3,Lafayette,,676403,0.178,0.23,0,1.247196,8.5,4.5 +27781,0,0.087299,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,2.095172,0.15,4 +27782,0,0.059037,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.41688,0.15,4 +2707,0,0.039607,1,1,0,2,5,,2,3,Lafayette,,676403,0.139,0.178,0,0.950576,8.5,4.5 +3171,0,0.085004,1,1,0,2,5,,2,3,Wayne,,675205,0,0.085,0,2.040092,8.5,4.5 +2967,0,0.022897,1,1,0,2,5,,2,3,Lafayette,,676403,0.116,0.139,0,0.549535,8.5,4.5 +2978,0,0.055445,1,1,0,2,5,,2,3,Saginaw,St,674704,0.085,0.14,0,1.330671,8.5,4.5 +27783,0,0.058441,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.402595,0.15,4 +2755,0,0.033527,1,1,0,2,5,,2,3,Oakland,Ave,672206,0,0.034,0,0.804658,8.5,4.5 +3121,0,0.029624,1,1,0,2,5,,2,3,Saginaw,St,674704,0.14,0.17,0,0.710975,8.5,4.5 +3262,0,0.02349,1,1,1,2,5,,2,3,Lafayette,,676403,0.23,0.254,0,0.563753,8.5,4.5 +1799,-1,0.100543,0,2,0,2,5,,2,3,University,Dr,624301,0.111,0.211,0,2.41303,8.5,4.5 +2788,1,0.191641,3,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.759,0.95,0,4.599393,6,5 +3144,0,0.078359,2,2,0,2,5,,2,3,Perry,,674007,0.383,0.462,0,1.88062,8.5,4.5 +1903,0,0.037458,1,1,0,2,5,,2,3,University,Dr,624301,0.073,0.111,0,0.899,8.5,4.5 +3527,0,0.11425,2,2,0,2,5,,2,3,Perry,,674007,0.269,0.383,0,2.741996,8.5,4.5 +2719,1,0.079758,4,0,0,2,3,DIV,2,3,Woodward,Ave,672705,0.679,0.759,0,1.914201,6,5 +2561,0,0.101274,1,1,1,2,3,,3,3,Perry,,674007,0.681,0.782,0,2.430571,5,5 +1569,0,0.237668,1,1,0,2,5,,3,3,Paddock,,625001,0.968,1.206,0,5.704043,8,4.5 +1771,0,0.06787,1,1,0,2,5,,3,3,Paddock,,625001,1.206,1.274,0,1.628887,8,4.5 +1223,-1,0.139196,0,2,0,2,3,,3,3,University,Dr,624301,0.582,0.721,0,3.340696,5,5 +3169,1,0.235123,2,0,0,2,3,,3,3,University Drive Access,RAMP,677605,0,0.235,0,5.642941,5,5 +973,0,0.161416,1,1,0,2,5,,3,3,Paddock,,624209,0,0.161,0,3.873973,8,4.5 +3299,1,0.033149,4,0,0,2,3,,3,3,E M 59,,648906,21.524,21.557,0,0.79558,5,5 +1708,-1,0.04481,0,3,0,2,3,,3,3,University,Dr,624301,0.537,0.582,0,1.075429,5,5 +1494,0,0.244044,1,1,0,2,5,,3,3,Glenwood,,4414416,0.654,0.898,0,5.857058,8,4.5 +3062,0,0.303258,1,1,0,2,5,,3,3,Saginaw,St,674704,0.897,1.2,0,7.278196,8,4.5 +3214,0,0.429999,2,2,0,2,3,,3,3,Montcalm,,673306,0.283,0.713,0,10.319985,5,5 +27805,0,0.208976,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.015425,0.15,4 +27806,0,0.289462,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.947077,0.15,4 +2766,0,0.068723,2,2,0,2,3,,3,3,Montcalm,,673306,0.214,0.283,0,1.649349,5,5 +526,0,0.167925,1,1,0,2,5,,3,3,Glenwood,,4414416,1.09,1.258,0,4.030192,8,4.5 +989,0,0.192169,1,1,0,2,5,,3,3,Glenwood,,4414416,0.898,1.09,0,4.612058,8,4.5 +27924,0,0.203296,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.879109,0.15,4 +2836,0,0.181743,1,1,1,2,3,,3,3,Perry,,674007,0.945,1.127,0,4.361838,5,5 +2074,0,0.008064,1,1,0,2,5,,3,3,Glenwood,,4414416,1.258,1.266,0,0.193526,8,4.5 +2744,0,0.239607,2,2,1,2,3,,3,3,Joslyn,Ave,674110,0.246,0.485,0,5.750571,5,5 +2904,0,0.310452,2,2,0,2,3,,3,3,Montcalm,,673306,0.713,1.023,0,7.450838,5,5 +27809,0,0.477252,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.454057,0.15,4 +2466,0,0.219071,2,2,1,2,3,,3,3,Joslyn,Ave,674110,0.485,0.704,0,5.257695,5,5 +836,0,0.314428,1,1,0,2,5,,3,3,Pike,,625107,0.862,1.176,0,7.546266,8,4.5 +1547,0,0.319166,2,2,0,2,4,,3,3,Auburn,Ave,625105,0.823,1.142,0,7.659978,6,4.5 +2650,1,0.263755,1,0,0,1,2,RON,3,3,East/W M 59,RAMP,677210,0,0.264,0,,1.09,4 +2942,-1,0.438001,0,2,0,1,2,,4,3,W M 59,,677208,0.432,0.87,0,,0.8,7.5 +3034,0,0.194711,2,2,1,2,3,,3,3,East,Blvd,673106,0,0.195,0,4.673067,5,5 +3295,1,0.303083,2,0,0,1,2,,3,3,E M 59,,648906,21.887,22.19,0,,0.58,7 +3562,1,0.366648,1,0,0,1,2,ROF,3,3,E M 59/East,RAMP,677204,0,0.367,0,,2.24,5 +27874,0,0.444813,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.675503,0.15,4 +27892,0,0.387348,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.296353,0.15,4 +27922,0,0.18187,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.364887,0.15,4 +2954,0,0.236034,2,2,1,2,3,,3,3,East,Blvd,672807,1.56,1.796,0,5.664805,5,5 +2742,0,0.055997,2,2,1,2,3,,3,3,East,Blvd,673106,0.315,0.371,0,1.343934,5,5 +2920,1,0.205289,1,0,0,1,2,ROF,4,3,W M 59/East,RAMP,677209,0,0.205,0,,2.24,5 +2952,1,0.135639,1,0,0,1,2,RON,3,3,East/E M 59,RAMP,677205,0.059,0.195,0,,1.09,4 +37928,1,0.079135,1,0,0,1,2,RON,3,3,S East/E M 59,RAMP,4416469,0,0.079,0,,1.09,4 +2761,0,0.114299,2,2,1,2,3,,3,3,East,Blvd,673106,0.195,0.309,0,2.743178,5,5 +3253,1,0.059201,1,0,0,1,2,RON,3,3,N East/E M 59,RAMP,677205,0,0.059,0,,1.09,4 +3005,0,0.005666,2,2,1,2,3,,3,3,East,Blvd,673106,0.309,0.315,0,0.13598,5,5 +2465,0,0.127036,2,2,1,2,3,,3,3,East,Blvd,673106,0.371,0.498,0,3.048868,5,5 +1624,0,0.143204,2,2,1,2,3,,3,3,University,Dr,624301,1.168,1.311,0,3.436888,5,5 +2725,0,0.312706,2,2,1,2,3,,3,3,East,Blvd,673106,1.055,1.368,0,7.504939,5,5 +2876,0,0.440334,1,1,1,2,3,,4,3,Perry,,674007,1.913,2.353,0,10.568027,3.7,5 +3243,0,0.111435,2,2,1,2,4,,3,3,Featherstone,,673909,0,0.111,0,2.674441,6,4.5 +3486,0,0.293064,2,2,1,2,3,,3,3,East,Blvd,673106,0.762,1.055,0,7.033527,5,5 +3503,0,0.183576,1,1,1,2,3,,3,3,Perry,,674007,1.457,1.64,0,4.405824,5,5 +3176,0,0.272822,1,1,1,2,3,,3,3,Perry,,674007,1.64,1.913,0,6.547735,5,5 +2515,0,0.080392,2,2,1,2,3,,3,3,East,Blvd,673106,0.682,0.762,0,1.929401,5,5 +3551,0,0.1219,2,2,1,2,5,,4,3,Madison,,673804,0.507,0.629,0,2.925596,5.8,4.5 +197,1,0.400005,1,0,0,1,2,ROF,4,3,N I 75 BL/Opdyke,RAMP,616310,0,0.4,0,,2.24,5 +688,1,0.221217,1,0,0,1,2,RON,4,3,N Opdyke/N I 75 BL,RAMP,616308,0,0.221,0,,1.09,4 +1150,-1,0.609043,0,3,0,1,2,,4,3,S I 75 BL,,625912,1.161,1.77,0,,0.8,7.5 +1542,1,0.279526,2,0,0,1,2,,4,3,N I 75 BL,,625903,1.224,1.504,0,,0.8,7.5 +1716,0,0.299451,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.783,2.082,0,7.186834,4.5,4.5 +1890,0,0.2968,1,1,0,2,4,,4,3,South,Blvd,616405,0,0.297,0,7.123212,4.5,4.5 +2136,1,0.264102,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,0,0.264,0,6.338453,4.5,4.5 +4877,1,0.58552,2,0,0,1,1,RFF,4,3,S I 75/N I 75 BL,RAMP,710405,0,0.585,0,,0.8,7.5 +21133,-1,0.279263,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4409039,0,0.279,0,6.702308,4.5,4.5 +21910,-1,0.972376,0,2,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,23.337025,5.8,4.5 +27584,0,0.75147,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.035284,0.15,4 +27589,0,0.432,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.36799,0.15,4 +27902,0,0.351707,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.440972,0.15,4 +27927,0,0.356088,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.546108,0.15,4 +30246,0,0.362926,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.710231,0.15,4 +30247,0,0.462294,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.095048,0.15,4 +615,1,0.067263,3,0,0,2,3,DIV,4,3,Square Lake,Rd,625903,1.676,1.744,0,1.614302,3.7,5 +1195,0,0.057539,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.324,1.381,0,1.380939,4.5,4.5 +25347,0,0.459992,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.039807,0.15,4 +27774,0,0.479624,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.510975,0.15,4 +29761,0,0.468658,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.247786,0.15,4 +27582,0,0.256944,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.166664,0.15,4 +27583,0,0.2187,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.248794,0.15,4 +28461,0,0.236111,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.666658,0.15,4 +30248,0,0.271572,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.517719,0.15,4 +866,0,0.247899,1,1,0,2,4,,4,3,Opdyke,Rd,616205,0.939,1.187,0,5.949579,4.5,4.5 +2171,1,0.229429,1,0,0,1,2,RON,4,3,S Opdyke/N I 75 BL,RAMP,616309,0,0.229,0,,1.09,4 +1066,1,0.172648,3,0,0,1,2,,4,3,N I 75 BL,,625903,1.504,1.676,0,,0.8,7.5 +1519,0,0.11185,1,1,0,2,4,,4,3,Opdyke,Rd,616205,0.828,0.939,0,2.684393,4.5,4.5 +1920,0,0.096211,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.193,1.289,0,2.309065,4.5,4.5 +1091,0,0.005525,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.187,1.193,0,0.132611,4.5,4.5 +1629,0,0.034893,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.289,1.324,0,0.837441,4.5,4.5 +884,0,0.401729,2,2,1,2,4,,4,3,Opdyke,Rd,616205,1.381,1.783,0,9.64149,4.5,4.5 +27926,0,0.180391,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.329384,0.15,4 +1142,0,0.465359,2,2,1,2,4,,4,3,South,Blvd,616406,1.088,1.553,0,11.16862,4.5,4.5 +1468,0,0.415851,2,2,1,2,4,,4,3,Opdyke,Rd,616205,2.299,2.714,0,9.980418,4.5,4.5 +25268,0,0.531111,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.746658,0.15,4 +27901,0,0.49014,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.763357,0.15,4 +695,0,0.266323,2,2,1,2,4,,4,3,South,Blvd,616406,0.822,1.088,0,6.391741,4.5,4.5 +21908,-1,0.173752,0,2,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,4.170054,5.8,4.5 +21909,-1,0.168293,0,2,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,4.039023,5.8,4.5 +1702,0,0.216417,2,2,1,2,4,,4,3,Opdyke,Rd,616205,2.082,2.299,0,5.194008,4.5,4.5 +1803,0,0.143056,2,2,1,2,4,,4,3,Opdyke,Rd,616205,2.714,2.857,0,3.433339,4.5,4.5 +1877,0,0.212935,2,2,1,2,4,,4,3,Opdyke,Rd,616205,2.857,3.07,0,5.110431,4.5,4.5 +366,1,0.266773,2,0,0,1,2,,4,3,N I 75 BL,,625903,0.607,0.874,0,,0.8,7.5 +1446,1,0.201127,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,0.264,0.465,0,4.827053,4.5,4.5 +1508,1,0.277907,1,0,0,1,2,RON,4,3,Square Lake/S I 75 BL,RAMP,625605,0.032,0.31,0,,1.09,4 +1628,-1,0.309124,0,3,0,1,2,,4,3,S I 75 BL,,625912,0.852,1.161,0,,0.8,7.5 +1924,1,0.350587,2,0,0,1,2,,4,3,N I 75 BL,,625903,0.874,1.224,0,,0.8,7.5 +2128,-1,0.233942,0,3,0,1,2,,4,3,S I 75 BL,,625912,0.618,0.852,0,,0.8,7.5 +21131,-1,0.176207,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4409039,0.291,0.467,0,4.228966,4.5,4.5 +590,1,0.224248,1,0,0,1,2,ROF,4,3,S I 75 BL/Square Lake,RAMP,625604,0,0.224,0,,2.24,5 +2118,1,0.032205,1,0,0,1,4,RSF,4,3,Square Lake/S I 75 BL,RAMP,625605,0,0.032,0,,4.5,4.5 +21132,-1,0.012085,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4409039,0.279,0.291,0,0.29004,4.5,4.5 +27587,0,0.273083,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.554,0.15,4 +1760,0,0.38141,2,2,0,2,4,,4,3,South,Blvd,616405,0.486,0.867,0,9.153849,4.5,4.5 +27929,0,0.317275,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.614594,0.15,4 +582,0,0.143726,2,2,0,2,4,,4,3,South,Blvd,616405,0.297,0.44,0,3.449413,4.5,4.5 +1450,0,0.045333,2,2,0,2,4,,4,3,South,Blvd,616405,0.44,0.486,0,1.087991,4.5,4.5 +547,-1,0.167939,0,4,0,1,1,,4,3,S I 75,,646106,18.947,19.115,0,,0.8,7.5 +670,0,0.158759,2,2,1,2,4,,4,3,Opdyke,Rd,616205,4.17,4.329,0,3.810218,4.5,4.5 +1136,0,0.466612,2,2,1,2,3,,4,3,University,Dr,624301,2.428,2.894,0,11.198693,3.7,5 +1310,0,0.175177,1,1,1,2,4,,4,3,Auburn,Rd,625105,2.125,2.3,0,4.204256,4.5,4.5 +1343,0,0.650229,2,2,1,2,4,,4,3,Opdyke,Rd,616205,4.329,4.979,0,15.605497,4.5,4.5 +1672,0,0.011213,2,2,1,2,4,,4,3,Featherstone,,616508,0.092,0.103,0,0.269124,4.5,4.5 +2277,1,0.264625,4,0,0,1,1,,4,3,N I 75,,647308,18.918,19.183,0,,0.8,7.5 +2874,-1,0.312537,0,3,0,1,2,,4,3,W M 59,,677208,1.677,1.989,0,,0.8,7.5 +3291,1,0.31239,3,0,0,1,2,,4,3,E M 59,,648906,23.245,23.557,0,,0.8,7.5 +25151,0,0.313658,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.527785,0.15,4 +27897,0,0.249823,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.995747,0.15,4 +27899,0,0.407714,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.785135,0.15,4 +701,1,0.339305,1,0,0,1,2,ROF,4,3,E M 59/Opdyke,RAMP,616502,0,0.339,0,,2.24,5 +1704,0,0.268972,2,2,1,2,4,,4,3,Opdyke,Rd,616205,3.429,3.698,0,6.455333,4.5,4.5 +1807,0,0.551264,2,2,0,2,4,,4,3,Auburn,Ave,625105,1.574,2.125,0,13.230333,4.5,4.5 +3293,1,0.279444,2,0,0,1,2,,4,3,E M 59,,648906,22.966,23.245,0,,0.8,7.5 +27920,0,0.563893,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.533441,0.15,4 +30190,0,0.492697,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.82472,0.15,4 +27896,0,0.267352,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.416451,0.15,4 +2141,0,0.0677,2,2,0,2,4,,4,3,Auburn,Ave,625105,1.506,1.574,0,1.624801,4.5,4.5 +549,0,0.070848,2,2,1,2,4,,4,3,Opdyke,Rd,616205,3.358,3.429,0,1.700342,4.5,4.5 +748,0,0.228708,2,2,1,2,4,,4,3,Opdyke,Rd,616205,3.698,3.927,0,5.488984,4.5,4.5 +797,1,0.215323,1,0,0,1,2,ROF,4,3,W M 59/Opdyke,RAMP,616506,0,0.215,0,,2.24,5 +1164,1,0.224816,1,0,0,1,2,RON,4,3,Opdyke/E M 59,RAMP,616503,0,0.225,0,,1.09,4 +1496,1,0.277382,1,0,0,1,2,RON,4,3,Opdyke/W M 59,RAMP,616507,0,0.277,0,,1.09,4 +3174,-1,0.208958,0,2,0,1,2,,4,3,W M 59,,677208,1.468,1.677,0,,0.8,7.5 +1709,0,0.243681,2,2,1,2,4,,4,3,Opdyke,Rd,616205,3.927,4.17,0,5.848355,4.5,4.5 +1617,0,0.487386,2,2,1,2,3,,4,3,University,Dr,624301,1.94,2.428,0,11.69727,3.7,5 +3166,0,0.56179,2,2,1,2,4,,4,3,Featherstone,,673909,0.611,1.172,0,13.48295,4.5,4.5 +27831,0,0.417409,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.017828,0.15,4 +27898,0,0.474834,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.39601,0.15,4 +27813,0,0.254321,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.103701,0.15,4 +27900,0,0.328084,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.874016,0.15,4 +1024,0,0.09185,2,2,1,2,4,,4,3,Featherstone,,616508,0,0.092,0,2.204396,4.5,4.5 +723,1,0.517661,1,0,0,1,1,RFF,4,3,E M 59/S I 75,RAMP,616504,0,0.518,0,,0.8,7.5 +1244,1,0.485076,1,0,0,1,1,RFF,4,3,S I 75/W M 59,RAMP,616505,0,0.485,0,,0.8,7.5 +1440,0,0.488328,1,1,1,2,4,,4,3,Auburn,Rd,625105,2.521,3.009,0,11.719878,4.5,4.5 +1994,-1,0.32012,0,4,0,1,1,,4,3,S I 75,,646106,18.24,18.56,0,,0.8,7.5 +2280,1,0.323881,4,0,0,1,1,,4,3,N I 75,,647308,18.17,18.494,0,,0.8,7.5 +3105,1,0.551537,1,0,0,1,1,RFF,4,3,N I 75/E M 59,RAMP,675005,0,0.551,0,,0.8,7.5 +3278,1,0.118423,3,0,0,1,2,,4,3,E M 59,,648906,23.796,23.915,0,,0.8,7.5 +3552,-1,0.118881,0,3,0,1,2,,4,3,W M 59,,677208,2.239,2.358,0,,0.8,7.5 +3554,1,0.220999,1,0,0,1,1,RFS,4,3,S I 75/E M 59,RAMP,677207,0,0.221,0,,0.22,6 +4904,1,0.217306,1,0,0,1,1,RFS,4,3,W M 59/S I 75,RAMP,710303,0,0.217,0,,0.22,6 +1959,0,0.220996,1,1,1,2,4,,4,3,Auburn,Rd,625105,2.3,2.521,0,5.303904,4.5,4.5 +27906,0,0.281038,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.744909,0.15,4 +27931,0,0.236198,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.668761,0.15,4 +2596,-1,0.249412,0,3,0,1,2,,4,3,W M 59,,677208,1.989,2.239,0,,0.8,7.5 +3283,1,0.239109,3,0,0,1,2,,4,3,E M 59,,648906,23.557,23.796,0,,0.8,7.5 +1008,-1,0.279312,0,4,0,1,1,,4,3,S I 75,,646106,18.668,18.947,0,,0.8,7.5 +2278,1,0.310079,4,0,0,1,1,,4,3,N I 75,,647308,18.608,18.918,0,,0.8,7.5 +3271,1,0.24926,3,0,0,1,2,,4,3,E M 59,,648906,23.915,24.164,0,,0.8,7.5 +3546,-1,0.209013,0,3,0,1,2,,4,3,W M 59,,677208,2.358,2.566,0,,0.8,7.5 +4547,1,0.482453,1,0,0,1,1,RFF,4,3,W M 59/N I 75,RAMP,710305,0,0.482,0,,0.8,7.5 +340,1,0.207936,1,0,0,1,1,RFS,4,3,E M 59/N I 75,RAMP,624210,0,0.208,0,,0.22,6 +1483,-1,0.107701,0,4,0,1,1,,4,3,S I 75,,646106,18.56,18.668,0,,0.8,7.5 +2279,1,0.11408,4,0,0,1,1,,4,3,N I 75,,647308,18.494,18.608,0,,0.8,7.5 +4898,1,0.210796,1,0,0,1,1,RFS,4,3,N I 75/W M 59,RAMP,710304,0,0.211,0,,0.22,6 +1194,1,0.479105,2,0,0,2,4,DIV,4,3,Featherstone,,616508,0.363,0.842,0,11.498528,4.5,4.5 +2088,-1,0.593784,0,4,0,1,1,,4,3,S I 75,,646106,19.115,19.709,0,,0.8,7.5 +20042,1,0.725022,1,0,0,1,1,ROF,4,3,S I 75/Chrysler,RAMP,1920603,0,0.725,0,,2.24,5 +20043,1,0.682783,1,0,0,1,1,RON,4,3,Chrysler/S I 75,RAMP,1920510,0,0.683,0,,1.09,4 +20044,1,0.129325,1,0,0,1,1,ROF,4,3,N I 75/Chrysler,RAMP,1920509,0.341,0.47,0,,2.24,5 +24546,1,0.287314,4,0,0,1,1,,4,3,N I 75,,647308,19.183,19.47,0,,0.8,7.5 +40330,-1,0.680561,0,4,0,1,1,,4,3,S I 75,,646106,19.878,20.559,0,,0.8,7.5 +27834,0,0.462013,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.088316,0.15,4 +27835,0,0.197462,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.739086,0.15,4 +554,0,0.245476,2,2,1,2,4,,4,3,Opdyke,Rd,616205,4.979,5.225,0,5.891418,4.5,4.5 +40341,1,0.029708,1,0,0,1,1,RON,4,3,E University/S I 75,RAMP,5500952,0,0.03,0,,1.09,4 +40342,1,0.042957,1,0,0,1,1,RON,4,3,W University/S I 75,RAMP,5500954,0,0.043,0,,1.09,4 +1995,-1,0.169175,0,4,0,1,1,,4,3,S I 75,,646106,19.709,19.878,0,,0.8,7.5 +37386,-1,0.032845,0,1,0,2,4,,5,8,Hamburg,Rd,4105276,0,0.033,0,0.78829,3,4 +20045,1,0.340914,1,0,0,1,1,ROF,4,3,N I 75/Chrysler,RAMP,1920509,0,0.341,0,,2.24,5 +445,-1,0.508142,0,3,0,1,1,,4,3,S I 75,,646106,23.503,24.011,0,,0.8,7.5 +697,1,0.333623,3,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.919,1.252,0,8.006954,3.7,5 +906,-1,0.843721,0,4,0,1,1,,4,3,S I 75,,646106,22.659,23.503,0,,0.8,7.5 +1968,0,0.162434,2,2,1,2,4,,4,3,Silver Bell,Rd,626102,1.206,1.368,0,3.898419,4.5,4.5 +2166,-1,0.075908,0,3,0,2,3,DIV,4,3,Lapeer,Rd,616605,1.164,1.24,0,1.821793,3.7,5 +2272,1,1.532108,4,0,0,1,1,,4,3,N I 75,,647308,22.299,23.831,0,,0.8,7.5 +2591,0,0.397522,1,1,1,2,5,,4,3,Harmon,Rd,678010,0.89,1.287,0,9.540534,5.8,4.5 +2995,0,0.321593,2,2,1,2,3,,4,3,Walton,Blvd,672601,1.692,2.014,0,7.718225,3.7,5 +37074,1,0.011272,1,0,0,1,1,RON,4,3,Joslyn/S I 75,RAMP,669205,0,0.011,0,,1.09,4 +3197,0,0.217313,2,2,1,2,3,,4,3,Joslyn,Rd,674110,2.752,2.969,0,5.215521,3.7,5 +3342,0,0.363783,1,1,0,2,5,,4,3,Giddings,Rd,676006,1.686,2.049,0,8.730793,5.8,4.5 +3415,0,0.377831,1,1,0,2,5,,4,3,Taylor,Rd,669207,0.472,0.849,0,9.067934,5.8,4.5 +21050,0,0.248672,2,2,1,2,4,,4,3,Brown,Rd,4416311,2.061,2.309,0,5.968131,4.5,4.5 +27533,0,0.213147,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.115535,0.15,4 +27567,0,1.055965,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.343167,0.15,4 +27817,0,0.524046,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.577106,0.15,4 +27938,0,0.939218,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.54123,0.15,4 +27941,0,0.58624,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.069767,0.15,4 +27942,0,0.440546,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.573098,0.15,4 +27944,0,0.522761,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.546261,0.15,4 +27947,0,0.422715,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.145154,0.15,4 +27948,0,0.269854,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.476485,0.15,4 +27960,0,0.617644,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.823453,0.15,4 +29854,0,0.437396,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.497501,0.15,4 +30185,0,1.049715,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.19317,0.15,4 +2527,0,0.279953,2,2,1,2,3,,4,3,Joslyn,Rd,674110,2.472,2.752,0,6.718884,3.7,5 +3106,0,0.54058,2,2,1,2,3,,4,3,Joslyn,Ave,674110,1.695,2.235,0,12.973909,3.7,5 +3147,0,0.632993,2,2,1,2,3,,4,3,Walton,Blvd,672601,1.011,1.644,0,15.19182,3.7,5 +27815,0,0.261033,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.264801,0.15,4 +27888,0,0.56372,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.529284,0.15,4 +27937,0,0.408041,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.79298,0.15,4 +27945,0,0.555972,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.343332,0.15,4 +27946,0,0.318319,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.639649,0.15,4 +2838,0,0.41209,2,2,0,2,5,,3,3,Columbia,,673503,0.262,0.674,0,9.89015,8,4.5 +3467,0,0.48751,2,2,1,2,3,,3,3,Joslyn,Ave,674110,1.207,1.695,0,11.700237,5,5 +3479,0,0.472266,2,2,1,2,3,,3,3,Walton,Blvd,672601,0.539,1.011,0,11.334388,5,5 +27812,0,0.24305,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.833203,0.15,4 +2510,0,0.032916,2,2,1,2,3,,3,3,Walton,Blvd,672601,0.506,0.539,0,0.789982,5,5 +2495,0,0.320786,2,2,1,2,3,,3,3,Joslyn,Ave,674110,0.887,1.207,0,7.698859,5,5 +2544,0,0.338075,2,2,0,2,5,,3,3,Columbia,,673503,0.674,1.012,0,8.113807,8,4.5 +2817,0,0.236691,2,2,1,2,3,,4,3,Joslyn,Rd,674110,2.235,2.472,0,5.680585,3.7,5 +27889,0,0.518532,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.444777,0.15,4 +3306,0,0.048154,2,2,1,2,3,,4,3,Walton,Blvd,672601,1.644,1.692,0,1.155691,3.7,5 +27816,0,0.385021,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.240515,0.15,4 +2442,0,0.471615,1,1,0,2,5,,4,3,Taylor,Rd,669207,0,0.472,0,11.318755,5.8,4.5 +27936,0,0.367275,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.814611,0.15,4 +1226,0,0.485737,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,0,0.486,0,11.657692,5.8,4.5 +2271,1,0.248282,3,0,0,1,1,,4,3,N I 75,,647308,23.831,24.079,0,,0.8,7.5 +2733,1,0.062787,2,0,0,2,4,DIV,4,3,Joslyn,Rd,674110,3.907,3.97,0,1.506898,4.5,4.5 +2870,0,0.890055,1,1,1,2,5,,4,3,Harmon,Rd,678010,0,0.89,0,21.361313,5.8,4.5 +3477,1,0.37966,1,0,0,1,1,ROF,4,3,N I 75/Joslyn,RAMP,678201,0,0.38,0,,2.24,5 +19601,1,0.473517,1,0,0,1,1,ROF,4,3,S I 75/N Joslyn,RAMP,1849501,0,0.473,0,,2.24,5 +20493,0,0.452828,2,2,1,2,4,,4,3,Giddings,Rd,4407628,0,0.453,0,10.867877,4.5,4.5 +21053,-1,0.016478,0,2,0,2,4,RSF,4,3,Joslyn/Brown Cutoff,,4463373,0,0.017,0,0.395468,4.5,4.5 +24971,0,0.456481,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.955554,0.15,4 +25164,0,1.158939,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,27.814539,0.15,4 +25168,0,0.598101,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.35442,0.15,4 +2270,1,0.371476,3,0,0,1,1,,4,3,N I 75,,647308,24.079,24.45,0,,0.8,7.5 +2522,1,0.187235,3,0,0,2,4,DIV,4,3,Joslyn,Rd,674110,3.61,3.797,0,4.493629,4.5,4.5 +19597,1,0.291613,1,0,0,1,1,RON,4,3,S Joslyn/N I 75,RAMP,1849506,0,0.292,0,,1.09,4 +27767,0,0.481939,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.566544,0.15,4 +1996,-1,0.230936,0,3,0,1,1,,4,3,S I 75,,646106,24.011,24.241,0,,0.8,7.5 +2509,1,0.232128,1,0,0,1,1,RON,4,3,N Joslyn/N I 75,RAMP,678110,0,0.232,0,,1.09,4 +2568,1,0.17295,1,0,0,1,1,ROF,4,3,S I 75/S Joslyn,RAMP,678109,0,0.173,0,,2.24,5 +2581,0,0.149355,2,2,0,2,3,,4,3,Joslyn,Rd,674110,3.398,3.547,0,3.584518,3.7,5 +2814,0,0.051263,3,2,1,2,3,,4,3,Joslyn,Rd,674110,3.558,3.61,0,1.230309,3.7,5 +3543,0,0.010905,2,2,0,2,3,,4,3,Joslyn,Rd,674110,3.547,3.558,0,0.261724,3.7,5 +2893,-1,0.204461,0,2,0,2,3,DV2,4,3,Joslyn,Rd,4416557,0.126,0.33,0,4.907066,3.7,5 +2619,0,0.043897,2,2,1,2,3,,4,3,Joslyn,Rd,674110,3.303,3.347,0,1.05352,3.7,5 +2862,0,0.05104,2,2,0,2,3,,4,3,Joslyn,Rd,674110,3.347,3.398,0,1.224954,3.7,5 +39790,-1,0.008299,0,2,0,2,4,DIV,4,3,Brown,Rd,4463371,0.224,0.232,0,0.19918,4.5,4.5 +2459,0,0.689854,1,1,0,2,4,,4,3,Joslyn,Rd,674110,4.411,5.101,0,16.556498,4.5,4.5 +3429,0,0.19996,1,1,0,2,4,,4,3,Joslyn,Rd,674110,5.101,5.301,0,4.799039,4.5,4.5 +21051,0,0.462296,2,2,0,2,4,,4,3,Brown,Rd,4416311,1.599,2.061,0,11.095101,4.5,4.5 +27940,0,0.344209,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.261026,0.15,4 +27943,0,0.329455,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.906925,0.15,4 +39786,1,0.084802,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,1.514,1.599,0,2.035245,4.5,4.5 +27939,0,0.095289,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.286928,0.15,4 +417,0,0.685114,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,0.521,1.206,0,16.442735,5.8,4.5 +20304,0,0.471132,2,2,1,2,4,,4,3,Giddings,Rd,4407628,0.453,0.924,0,11.307163,4.5,4.5 +27339,0,0.632668,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.184025,0.15,4 +27950,0,0.667679,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.024299,0.15,4 +27951,0,0.495295,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.88709,0.15,4 +784,0,0.035504,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,0.486,0.521,0,0.852096,5.8,4.5 +390,1,0.197036,2,0,0,2,4,DIV,4,3,Opdyke,Rd,616205,6.433,6.63,0,4.728873,4.5,4.5 +548,-1,1.750733,0,4,0,1,1,,4,3,S I 75,,646106,20.559,22.31,0,,0.8,7.5 +684,1,0.054682,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0,0.055,0,1.312359,3.7,5 +1332,0,0.249844,2,2,1,2,3,,4,3,Walton,Blvd,616602,0,0.25,0,5.996247,3.7,5 +1545,-1,0.171239,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,0,0.171,0,4.109731,3.7,5 +2274,1,1.491139,4,0,0,1,1,,4,3,N I 75,,647308,20.523,22.013,0,,0.8,7.5 +2764,0,0.187695,2,2,1,2,3,,4,3,Lapeer,Rd,674007,3.811,3.999,0,4.504672,3.7,5 +3026,0,0.38755,1,1,0,2,5,,4,3,Giddings,Rd,676006,0.782,1.169,0,9.301201,5.8,4.5 +3530,0,0.261116,1,1,0,2,5,,4,3,Pontiac,Rd,677501,0.196,0.457,0,6.266775,5.8,4.5 +19595,1,0.144221,2,0,0,1,2,,4,3,S I 75 BL,,1849507,0.191,0.336,0,,0.8,7.5 +20350,-1,0.102908,0,2,0,2,4,DIV,4,3,Opdyke,Rd,4404111,0,0.103,0,2.469798,4.5,4.5 +21176,-1,0.203349,0,2,0,1,2,,4,3,N I 75 BL,,4408159,0.137,0.34,0,,0.8,7.5 +27819,0,0.237808,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.707391,0.15,4 +27953,0,0.250655,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.015721,0.15,4 +29853,0,0.656026,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.744616,0.15,4 +2488,0,0.314983,2,2,1,2,3,,4,3,Walton,Blvd,672601,2.222,2.537,0,7.55959,3.7,5 +2594,0,0.207836,2,2,1,2,3,,4,3,Perry,,674007,3.207,3.415,0,4.988056,3.7,5 +2872,0,0.267245,2,2,1,2,3,,4,3,Perry,,674007,2.94,3.207,0,6.413868,3.7,5 +2980,0,0.576774,1,1,0,2,5,,4,3,Giddings,Rd,676006,0,0.577,0,13.84257,5.8,4.5 +27957,0,0.214297,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.143126,0.15,4 +2738,0,0.170488,2,2,1,2,3,,4,3,Walton,Blvd,672601,2.014,2.184,0,4.091717,3.7,5 +27954,0,0.263276,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.31863,0.15,4 +27956,0,0.263905,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.333713,0.15,4 +3343,0,0.113019,1,1,0,2,5,,4,3,Giddings,Rd,676006,0.669,0.782,0,2.712461,5.8,4.5 +2720,0,0.092376,1,1,0,2,5,,4,3,Giddings,Rd,676006,0.577,0.669,0,2.217028,5.8,4.5 +2774,0,0.037807,2,2,1,2,3,,4,3,Walton,Blvd,672601,2.184,2.222,0,0.907363,3.7,5 +2557,0,0.196059,1,1,0,2,5,,4,3,Pontiac,Rd,677501,0,0.196,0,4.705427,5.8,4.5 +3365,0,0.334748,2,2,1,2,3,,4,3,Perry,,674007,3.415,3.749,0,8.033957,3.7,5 +3041,0,0.061923,2,2,1,2,3,,4,3,Lapeer,Rd,674007,3.749,3.811,0,1.48616,3.7,5 +2089,-1,0.349486,0,4,0,1,1,,4,3,S I 75,,646106,22.31,22.659,0,,0.8,7.5 +2753,0,0.516298,1,1,0,2,5,,4,3,Giddings,Rd,676006,1.169,1.686,0,12.391162,5.8,4.5 +4533,1,0.456635,1,0,0,1,1,RFS,4,3,S I 75 BL,RAMP,710406,0,0.457,0,,0.22,6 +27949,0,0.585218,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.045234,0.15,4 +27796,0,0.354897,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.517537,0.15,4 +815,1,0.326383,1,0,0,1,1,RFS,4,3,N I 75 BL/S I 75,RAMP,625306,0,0.326,0,,0.22,6 +2273,1,0.285619,4,0,0,1,1,,4,3,N I 75,,647308,22.013,22.299,0,,0.8,7.5 +4857,1,0.195181,1,0,0,1,1,RFS,4,3,N I 75 BL/N I 75,RAMP,710504,0,0.195,0,,0.22,6 +19596,1,0.191435,1,0,0,1,1,RFF,4,3,S I 75 BL,,1849507,0,0.191,0,,0.8,7.5 +21177,-1,0.137114,0,1,0,1,1,RFF,4,3,N I 75 BL/S I 75,,4408159,0,0.137,0,,0.8,7.5 +350,1,0.253868,1,0,0,1,1,RFS,4,3,N I 75/S I 75 BL,RAMP,625307,0,0.254,0,,0.22,6 +40333,1,0.180754,2,0,0,2,3,DIV,4,3,University,Dr,624301,2.894,3.075,0,4.33809,3.7,5 +1638,0,0.301881,2,2,1,2,4,,4,3,Opdyke,Rd,616205,5.852,6.154,0,7.245134,4.5,4.5 +36146,1,0.244871,1,0,0,1,1,RON,4,3,Chrysler/N I 75,RAMP,4416271,0,0.245,0,,1.09,4 +2903,0,0.360716,1,1,0,2,5,,4,3,Pontiac,Rd,677501,0.565,0.926,0,8.657177,5.8,4.5 +27828,0,0.351701,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.440824,0.15,4 +27952,0,0.349918,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.398036,0.15,4 +40325,1,0.335606,2,0,0,1,1,ROF,4,3,N I 75/University,RAMP,5500963,0,0.336,0,,2.24,5 +40329,1,0.213879,2,0,0,1,1,FCD,4,3,N I 75 CD,,5500964,0.236,0.45,0,,0.8,7.5 +40339,1,0.026851,2,0,0,2,3,DIV,4,3,University,Dr,624301,3.104,3.131,0,0.644435,3.7,5 +40338,1,0.033472,2,0,0,1,1,ROF,4,3,S I 75/University,RAMP,678208,0.372,0.405,0,,2.24,5 +1763,0,0.19148,2,2,1,2,4,,4,3,Opdyke,Rd,616205,5.66,5.852,0,4.595522,4.5,4.5 +3211,0,0.108126,1,1,0,2,5,,4,3,Pontiac,Rd,677501,0.457,0.565,0,2.595031,5.8,4.5 +26131,0,0.145225,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.485388,0.15,4 +27830,0,0.145799,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.499181,0.15,4 +40327,1,0.728816,4,0,0,1,1,,4,3,N I 75,,647308,19.47,20.198,0,,0.8,7.5 +40331,1,0.299731,1,0,0,1,1,RON,4,3,E University/S I 75,RAMP,5500952,0.03,0.329,0,,1.09,4 +40337,1,0.045596,1,0,0,1,1,ROF,4,3,S I 75/W University,RAMP,5500955,0,0.046,0,,2.24,5 +40348,0,0.203488,1,1,0,2,5,,4,3,Pontiac,Rd,677501,0.926,1.129,0,4.883719,5.8,4.5 +1955,0,0.204608,2,2,1,2,4,,4,3,Opdyke,Rd,616205,6.154,6.358,0,4.910598,4.5,4.5 +789,0,0.075178,2,2,1,2,4,,4,3,Opdyke,Rd,616205,6.358,6.433,0,1.804277,4.5,4.5 +40322,1,0.066554,2,0,0,1,1,ROF,4,3,N I 75/W University,RAMP,5500956,0,0.067,0,,2.24,5 +40321,1,0.083866,2,0,0,1,1,ROF,4,3,N I 75/University,RAMP,5500963,0.336,0.419,0,,2.24,5 +25191,0,0.357507,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.580171,0.15,4 +40324,1,0.038284,2,0,0,2,3,DIV,4,3,University,Dr,624301,3.316,3.354,0,0.918828,3.7,5 +602,-1,0.488969,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,0.171,0.66,0,11.735259,3.7,5 +1131,1,0.518317,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.155,0.674,0,12.439619,3.7,5 +689,1,0.060316,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.095,0.155,0,1.447587,3.7,5 +20843,-1,0.07953,0,2,0,2,3,DIV,4,3,Opdyke,Rd,4404111,0.147,0.227,0,1.908718,3.7,5 +1128,1,0.040455,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.055,0.095,0,0.970916,3.7,5 +20148,-1,0.044227,0,2,0,2,4,DIV,4,3,Opdyke,Rd,4404111,0.103,0.147,0,1.061455,4.5,4.5 +20603,1,0.037413,1,0,0,2,3,,4,3,Opdyke,Rd,4404112,0,0.037,0,0.897904,3.7,5 +633,-1,0.34598,0,3,0,2,3,DIV,4,3,Lapeer,Rd,616605,0.819,1.164,0,8.30352,3.7,5 +4516,1,0.272701,1,0,0,1,2,RON,4,3,S M 24/I 75,RAMP,710506,0,0.273,0,,1.09,4 +4854,1,0.229905,1,0,0,1,2,ROF,4,3,S I 75 BL,,710507,0,0.23,0,,2.24,5 +19592,1,0.331421,1,0,0,1,2,RON,4,3,N I 75 BL,,1849509,0,0.331,0,,1.09,4 +19593,1,0.248037,2,0,0,1,2,ROF,4,3,S I 75/N M 24,RAMP,1849508,0,0.248,0,,2.24,5 +19594,1,0.162657,2,0,0,1,2,ROF,4,3,S I 75/N M 24,,1849507,0.336,0.498,0,,2.24,5 +21175,-1,0.163482,0,1,0,1,2,RON,4,3,N I 75 BL,,4408159,0.34,0.504,0,,1.09,4 +692,1,0.10741,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.674,0.781,0,2.57783,3.7,5 +1137,1,0.137577,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,0.781,0.919,0,3.301853,3.7,5 +2132,-1,0.158583,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,0.66,0.819,0,3.806003,3.7,5 +716,1,0.780822,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,2.27,3.05,0,18.739723,3.7,5 +832,-1,0.780019,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,2.257,3.037,0,18.720461,3.7,5 +970,0,0.704311,2,2,0,2,4,,4,3,Silver Bell,Rd,626102,1.686,2.39,0,16.903457,4.5,4.5 +3157,0,0.485332,1,1,1,2,5,,4,3,Harmon,Rd,678106,0.539,1.024,0,11.647968,5.8,4.5 +21048,0,0.595343,2,2,0,2,4,,4,3,Brown,Rd,4416311,2.719,3.314,0,14.28823,4.5,4.5 +27932,0,0.375569,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.013658,0.15,4 +27934,0,0.365703,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.776876,0.15,4 +27935,0,0.489743,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.753833,0.15,4 +27963,0,0.656254,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.75009,0.15,4 +29855,0,0.67035,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.08839,0.15,4 +2752,0,0.569934,1,1,0,2,5,,4,3,Giddings,Rd,676006,2.193,2.763,0,13.678406,5.8,4.5 +3485,0,0.539219,1,1,1,2,5,,4,3,Harmon,Rd,678106,0,0.539,0,12.941254,5.8,4.5 +21049,0,0.409766,2,2,0,2,4,,4,3,Brown,Rd,4416311,2.309,2.719,0,9.834388,4.5,4.5 +27959,0,0.295586,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.094056,0.15,4 +3025,0,0.143853,1,1,0,2,5,,4,3,Giddings,Rd,676006,2.049,2.193,0,3.452463,5.8,4.5 +27961,0,0.290871,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.98091,0.15,4 +27933,0,0.502445,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.058681,0.15,4 +1452,0,0.317704,2,2,0,2,4,,4,3,Silver Bell,Rd,626102,1.368,1.686,0,7.624889,4.5,4.5 +20107,0,0.261647,1,1,0,2,5,,4,3,Giddings,Rd,4407722,0,0.262,0,6.279538,5.8,4.5 +700,1,0.564627,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,1.495,2.06,0,13.551058,3.7,5 +913,-1,0.564546,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,1.483,2.047,0,13.549111,3.7,5 +1141,1,0.24335,3,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,1.252,1.495,0,5.840409,3.7,5 +1370,-1,0.242671,0,3,0,2,3,DIV,4,3,Lapeer,Rd,616605,1.24,1.483,0,5.824113,3.7,5 +2855,0,0.014511,1,1,1,2,5,,4,3,Harmon,Rd,678106,1.024,1.039,0,0.348257,5.8,4.5 +1156,1,0.209914,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,2.06,2.27,0,5.037941,3.7,5 +1288,-1,0.210125,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,2.047,2.257,0,5.04299,3.7,5 +21046,0,0.011862,2,2,0,2,4,,4,3,Brown,Rd,4416311,3.314,3.326,0,0.284685,4.5,4.5 +2057,0,0.40306,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,2.401,2.804,0,9.673444,4.5,4.5 +27535,0,0.534167,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.820015,0.15,4 +503,0,0.010757,2,2,0,2,4,,4,3,Silver Bell,Rd,626102,2.39,2.401,0,0.258158,4.5,4.5 +18,-1,0.239623,0,3,0,1,1,,3,3,S I 75,,646106,6.11,6.349,0,,0.58,7 +137,0,0.213156,2,2,1,2,3,,3,3,13 Mile,Rd,607408,4.018,4.231,0,5.115736,5,5 +167,1,0.225064,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.005,2.23,0,5.401546,5,5 +278,1,0.330131,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,5.659,5.989,0,7.923155,5,5 +294,1,0.261487,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,9,9.261,0,6.275685,5,5 +301,-1,0.648706,0,4,0,2,5,,3,3,10 Mile,Rd,644205,0.934,1.583,0,15.568953,8,4.5 +428,0,0.491632,1,1,0,2,5,,3,3,Webster,Rd,644506,0.475,0.967,0,11.799165,8,4.5 +439,0,0.211417,2,2,1,2,4,,3,3,Main,,644806,3.916,4.127,0,5.073997,6,4.5 +672,0,0.170472,1,1,0,2,4,,3,3,Southfield,Rd,613803,0,0.17,0,4.091338,6,4.5 +757,-1,0.371051,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,9.002,9.373,0,8.905236,5,5 +897,0,0.211075,1,1,0,2,4,,3,3,Wattles,Rd,618802,2.894,3.105,0,5.065806,6,4.5 +1053,0,0.410656,2,2,1,2,3,,3,3,14 Mile,Rd,625804,3.62,4.03,0,9.855749,5,5 +1416,1,0.649321,4,0,0,2,5,,3,3,10 Mile,Rd,633409,10.327,10.976,0,15.583696,8,4.5 +1456,0,0.206573,1,1,0,2,5,,3,3,Delemere,Blvd,612708,0.513,0.72,0,4.957748,8,4.5 +1467,0,0.194609,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.794,1.988,0,4.67062,8,4.5 +1669,1,0.217903,3,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,10.271,10.489,0,5.229678,3.7,5 +1802,0,0.344815,2,2,1,2,3,,3,3,14 Mile,Rd,625804,4.03,4.375,0,8.275569,5,5 +1956,-1,0.329889,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,5.659,5.989,0,7.917345,5,5 +2293,1,0.287029,3,0,0,1,1,,3,3,N I 75,,647308,6.154,6.441,0,,0.58,7 +2361,1,0.164505,2,0,0,2,4,DIV,3,3,John R,Rd,646806,5.854,6.018,0,3.948117,6,4.5 +2473,1,0.435729,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,1.817,2.252,0,10.457498,6,4.5 +2497,0,0.354805,1,1,0,2,5,,3,3,Catalpa,Dr,656010,2.725,3.08,0,8.515331,8,4.5 +2925,0,0.253469,2,2,0,2,3,,3,3,Crooks,Rd,659810,2.196,2.45,0,6.083263,5,5 +2953,0,0.543266,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,17.59,18.134,0,13.038395,5,5 +3097,0,0.266461,2,2,0,2,5,,3,3,Kirts,Blvd,681204,0.276,0.542,0,6.395055,8,4.5 +3360,0,0.260578,2,2,0,2,3,,3,3,Crooks,Rd,659810,2.45,2.71,0,6.253869,5,5 +3435,0,0.422232,2,2,0,2,4,,3,3,Campbell,Rd,652509,3.589,4.012,0,10.133562,6,4.5 +3600,0,0.265008,1,1,1,2,5,,3,3,Concord,Dr,658204,0.241,0.506,0,6.3602,8,4.5 +3783,0,0.49871,2,2,1,2,3,,3,3,Maple,Rd,683906,16.226,16.724,0,11.969041,5,5 +4816,1,0.324118,1,0,0,1,1,RON,3,3,14 Mile/S I 75,RAMP,694202,0,0.324,0,,1.09,4 +4820,1,0.231928,1,0,0,1,1,ROF,3,3,S I 75/E 14 Mile,RAMP,694201,0,0.232,0,,2.24,5 +4829,1,0.250966,1,0,0,1,1,ROF,3,3,N I 75/E 14 Mile,RAMP,694108,0,0.251,0,,2.24,5 +4919,0,0.387413,2,2,1,2,4,,3,3,Coolidge,Rd,693006,0,0.387,0,9.2979,6,4.5 +19472,1,0.98152,4,0,0,1,1,,3,3,E I 696,,1903903,1.355,2.336,0,,0.58,7 +19716,-1,0.923637,0,4,0,1,1,,3,3,W I 696,,1904002,1.419,2.342,0,,0.58,7 +19897,0,0.519296,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,6.036,6.555,0,12.463097,6,4.5 +20401,-1,0.435937,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406809,1.568,2.004,0,10.462477,6,4.5 +20655,-1,0.225289,0,3,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0.647,0.872,0,5.40693,3.7,5 +21150,-1,0.22548,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.483,1.709,0,5.411512,5,5 +21882,0,0.261661,2,2,0,2,3,,3,3,Rochester,Rd,4413538,2.224,2.486,0,6.279867,5,5 +25440,0,0.239977,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.759449,0.15,4 +25658,0,0.192063,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.609502,0.15,4 +26178,0,0.530998,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.743963,0.15,4 +27559,0,0.245501,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.892026,0.15,4 +27980,0,0.643849,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.452379,0.15,4 +27983,0,0.352547,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.46113,0.15,4 +27989,0,0.542991,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.031795,0.15,4 +27991,0,0.516253,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.390079,0.15,4 +28000,0,0.227264,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.454343,0.15,4 +28003,0,0.477364,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.456735,0.15,4 +28007,0,0.559199,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.420771,0.15,4 +28010,0,0.207988,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.991723,0.15,4 +28020,0,0.27193,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.526315,0.15,4 +28023,0,0.263835,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.332045,0.15,4 +28026,0,0.596058,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.305387,0.15,4 +28035,0,0.28743,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.898308,0.15,4 +28040,0,0.249904,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.997699,0.15,4 +28283,0,0.496998,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.927962,0.15,4 +28284,0,0.244202,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.860837,0.15,4 +28288,0,0.50842,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.202074,0.15,4 +28364,0,0.26121,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.26905,0.15,4 +28382,0,0.564109,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.538614,0.15,4 +28432,0,0.461032,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.064767,0.15,4 +29697,0,0.56034,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.448154,0.15,4 +29967,0,0.234588,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.630116,0.15,4 +11,0,0.340704,1,1,0,2,5,,3,3,Normandy,Rd,644402,0,0.341,0,8.176887,8,4.5 +129,0,0.339892,2,2,0,2,3,,3,3,13 Mile,Rd,607408,5.663,6.003,0,8.157417,5,5 +298,1,0.382857,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,8.406,8.789,0,9.18857,5,5 +348,0,0.299331,2,2,1,2,4,,3,3,10 Mile,Rd,633409,9.025,9.324,0,7.183946,6,4.5 +580,1,0.216331,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,5.989,6.205,0,5.191946,5,5 +711,0,0.582036,2,2,1,2,3,,3,3,Southfield,Rd,611304,1.997,2.578,0,13.968864,5,5 +892,0,0.319667,2,2,0,2,4,,3,3,Coolidge,Hwy,644004,3.691,4.011,0,7.671998,6,4.5 +955,-1,0.351248,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,8.405,8.756,0,8.42994,5,5 +1090,-1,0.214234,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,5.989,6.203,0,5.141613,5,5 +1282,0,0.240768,2,2,1,2,3,,3,3,14 Mile,Rd,625804,5.52,5.761,0,5.778423,5,5 +1826,0,0.337417,1,1,0,2,5,,3,3,Webster,Rd,610103,0,0.337,0,8.097997,8,4.5 +2216,0,0.375125,2,2,1,2,3,,3,3,Greenfield,Rd,648307,3.513,3.888,0,9.002993,5,5 +2951,0,0.267721,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,16.011,16.279,0,6.425312,5,5 +3048,0,0.240419,1,1,0,2,5,,3,3,Lincoln,Dr,665304,0,0.24,0,5.770065,8,4.5 +3597,0,0.36651,2,2,1,2,5,,3,3,Catalpa,Dr,656010,0.817,1.183,0,8.796243,8,4.5 +19475,1,0.240151,4,0,0,1,1,,3,3,E I 696,,1903903,0,0.24,0,,0.58,7 +19476,1,0.300656,2,0,0,1,1,RON,3,3,Greenfield/E I 696,RAMP,1903902,0,0.301,0,,1.09,4 +19736,-1,0.214186,0,4,0,1,1,,3,3,W I 696,,1904002,0,0.214,0,,0.58,7 +19738,1,0.272265,2,0,0,1,1,ROF,3,3,W I 696/Greenfield,RAMP,1904001,0,0.272,0,,2.24,5 +20886,0,0.37736,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,4.564,4.941,0,9.056633,6,4.5 +25463,0,0.186416,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.473983,0.15,4 +25614,0,0.253558,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.085384,0.15,4 +25615,0,0.370432,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.890366,0.15,4 +27437,0,0.506523,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.156542,0.15,4 +27617,0,0.584788,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.034905,0.15,4 +27993,0,0.550712,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.217086,0.15,4 +28051,0,0.49152,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.796488,0.15,4 +28053,0,0.251458,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.034992,0.15,4 +28057,0,0.171564,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.11754,0.15,4 +28059,0,0.277102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.65044,0.15,4 +28097,0,0.276742,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.641818,0.15,4 +28100,0,0.274254,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.582102,0.15,4 +28104,0,0.255978,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.143462,0.15,4 +28105,0,0.347366,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.336786,0.15,4 +28106,0,0.303696,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.288709,0.15,4 +28107,0,0.304736,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.313672,0.15,4 +28111,0,0.252586,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.062053,0.15,4 +28302,0,0.262067,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.289606,0.15,4 +29663,0,0.279587,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.710077,0.15,4 +720,0,0.466968,2,3,1,2,3,,3,3,Southfield,Rd,611304,3.034,3.501,0,11.207235,5,5 +1757,0,0.496168,2,2,1,2,4,,3,3,10 Mile,Rd,633409,7.855,8.351,0,11.90804,6,4.5 +2220,1,0.201696,2,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,2.509,2.711,0,4.840701,5,5 +3730,0,0.471295,1,1,0,2,5,,3,3,Lincoln,Dr,684507,0.503,0.974,0,11.31108,8,4.5 +4402,-1,0.649841,0,4,0,1,1,,3,3,W I 696,,710702,12.344,12.994,0,,0.58,7 +4451,1,0.806666,4,0,0,1,1,,3,3,E I 696,,710701,11.495,12.301,0,,0.58,7 +4722,-1,0.884776,0,4,0,1,1,,3,3,W I 696,,710702,11.46,12.344,0,,0.58,7 +4779,1,0.710103,4,0,0,1,1,,3,3,E I 696,,710701,12.301,13.011,0,,0.58,7 +19482,1,0.199985,2,0,0,1,1,RON,3,3,Southfield/E I 696,RAMP,1903802,0,0.2,0,,1.09,4 +19741,1,0.23566,2,0,0,1,1,ROF,3,3,W I 696/Southfield,RAMP,1903909,0,0.236,0,,2.24,5 +20393,-1,0.354583,0,2,0,2,4,,3,3,11 Mile,Rd,4400088,3.807,4.162,0,8.509982,6,4.5 +20988,1,0.250441,2,0,0,2,4,,3,3,11 Mile,Rd,4410282,1.907,2.158,0,6.010589,6,4.5 +26166,0,0.58936,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.14465,0.15,4 +27622,0,0.27129,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.510962,0.15,4 +28115,0,0.499918,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.998025,0.15,4 +729,0,0.249442,2,3,1,2,3,,3,3,Southfield,Rd,611304,3.754,4.004,0,5.986612,5,5 +28071,0,0.431826,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.363831,0.15,4 +734,0,0.188657,3,3,1,2,3,,3,3,Southfield,Rd,611304,4.004,4.192,0,4.52778,5,5 +726,0,0.253787,2,3,1,2,3,,3,3,Southfield,Rd,611304,3.501,3.754,0,6.090894,5,5 +717,0,0.414166,2,2,1,2,3,,3,3,Southfield,Rd,611304,2.578,2.993,0,9.939976,5,5 +20143,-1,0.126763,0,2,0,2,5,,3,3,11 Mile,Rd,4400088,3.443,3.57,0,3.042305,8,4.5 +20991,1,0.163943,2,0,0,2,5,,3,3,11 Mile,Rd,4410282,1.53,1.694,0,3.934643,8,4.5 +27616,0,0.086105,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.066515,0.15,4 +27621,0,0.403138,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.675314,0.15,4 +29692,0,0.375984,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.023611,0.15,4 +19483,1,0.23123,1,0,0,1,1,ROF,3,3,E I 696/Southfield,RAMP,1903801,0,0.231,0,,2.24,5 +19748,1,0.287344,1,0,0,1,1,RON,3,3,Southfield/W I 696,RAMP,1903908,0,0.287,0,,1.09,4 +718,0,0.041236,3,3,1,2,3,,3,3,Southfield,Rd,611304,2.993,3.034,0,0.989675,5,5 +20598,-1,0.076693,0,4,0,2,4,,3,3,11 Mile,Rd,4400088,3.731,3.807,0,1.840633,6,4.5 +20989,1,0.051801,2,0,0,2,4,,3,3,11 Mile,Rd,4410282,1.856,1.907,0,1.243233,6,4.5 +20990,1,0.161401,2,0,0,2,4,,3,3,11 Mile,Rd,4410282,1.694,1.856,0,3.873624,6,4.5 +20838,-1,0.160836,0,4,0,2,4,,3,3,11 Mile,Rd,4400088,3.57,3.731,0,3.86007,6,4.5 +1262,0,0.490363,2,2,1,2,4,,3,3,10 Mile,Rd,633409,8.351,8.841,0,11.768722,6,4.5 +2224,1,0.197292,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,2.008,2.205,0,4.735006,5,5 +3729,0,0.516412,1,1,0,2,5,,3,3,Lincoln,Dr,684507,0.974,1.49,0,12.393878,8,4.5 +4450,1,0.396053,4,0,0,1,1,,3,3,E I 696,,710701,13.011,13.407,0,,0.58,7 +4720,-1,0.396625,0,4,0,1,1,,3,3,W I 696,,710702,12.994,13.391,0,,0.58,7 +19477,1,0.338844,2,0,0,1,1,ROF,3,3,E I 696/Greenfield,RAMP,1903901,0,0.339,0,,2.24,5 +19739,1,0.013371,2,0,0,1,1,RON,3,3,Greenfield/W I 696,RAMP,1903910,0,0.013,0,,1.09,4 +26170,0,0.47604,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.424961,0.15,4 +28112,0,0.494891,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.877389,0.15,4 +29695,0,0.271679,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.520284,0.15,4 +26214,0,0.248524,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.96457,0.15,4 +28113,0,0.080543,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.93304,0.15,4 +2225,1,0.249499,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,1.759,2.008,0,5.987964,5,5 +2226,0,0.054623,3,3,1,2,3,,3,3,Greenfield,Rd,648307,1.704,1.759,0,1.310963,5,5 +813,0,0.172529,2,2,1,2,4,,3,3,10 Mile,Rd,633409,8.852,9.025,0,4.140687,6,4.5 +2221,1,0.176778,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,2.332,2.509,0,4.242662,5,5 +2222,1,0.080389,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,2.252,2.332,0,1.929334,5,5 +26196,0,0.15341,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.681841,0.15,4 +2223,1,0.04648,3,0,0,2,3,DIV,3,3,Greenfield,Rd,648307,2.205,2.252,0,1.115525,5,5 +2218,0,0.336857,2,2,1,2,3,,3,3,Greenfield,Rd,648307,3.01,3.346,0,8.084559,5,5 +20191,0,0.401885,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,4.162,4.564,0,9.645239,6,4.5 +28101,0,0.497274,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.934577,0.15,4 +28102,0,0.37293,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.95033,0.15,4 +19486,1,0.138962,2,0,0,2,4,,3,3,11 Mile,Rd,1903708,0,0.139,0,3.335078,6,4.5 +2219,0,0.187066,2,2,1,2,3,,3,3,Greenfield,Rd,648307,2.823,3.01,0,4.489593,5,5 +2217,0,0.166872,2,2,1,2,3,,3,3,Greenfield,Rd,648307,3.346,3.513,0,4.004921,5,5 +127,0,0.49958,1,1,0,2,4,,3,3,13 Mile,Rd,607408,6.503,7.003,0,11.989916,6,4.5 +354,0,0.301295,1,1,0,2,5,,3,3,Beverly,Rd,610804,1.431,1.732,0,7.23107,8,4.5 +693,0,0.477746,2,2,1,2,3,,3,3,Southfield,Rd,611304,0.985,1.463,0,11.465911,5,5 +1014,0,0.497302,1,1,1,2,3,,3,3,14 Mile,Rd,625804,6.504,7.001,0,11.935246,5,5 +2211,0,0.172475,2,2,1,2,3,,3,3,Greenfield,Rd,648307,4.847,5.019,0,4.139397,5,5 +3446,0,0.094023,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,15.42,15.514,0,2.256543,5,5 +25776,0,0.129785,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.114849,0.15,4 +28294,0,0.463522,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.124519,0.15,4 +28296,0,0.500135,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.003249,0.15,4 +28320,0,0.50525,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.126004,0.15,4 +696,0,0.347862,2,2,1,2,3,,3,3,Southfield,Rd,611304,1.463,1.811,0,8.348692,5,5 +2472,0,0.403186,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,15.017,15.42,0,9.676468,5,5 +27614,0,0.522819,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.547661,0.15,4 +28299,0,0.498767,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.970418,0.15,4 +709,0,0.186143,2,2,1,2,3,,3,3,Southfield,Rd,611304,1.811,1.997,0,4.467432,5,5 +3493,0,0.162517,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,14.687,14.85,0,3.9004,5,5 +3161,0,0.16699,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,14.85,15.017,0,4.007765,5,5 +27612,0,0.282592,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.782199,0.15,4 +347,0,0.380909,1,1,0,2,5,,3,3,Beverly,Rd,610804,1.05,1.431,0,9.141806,8,4.5 +685,0,0.498353,2,2,1,2,3,,3,3,Southfield,Rd,611304,0,0.498,0,11.960465,5,5 +686,0,0.48708,2,2,1,2,3,,3,3,Southfield,Rd,611304,0.498,0.985,0,11.689924,5,5 +2213,0,0.322693,2,2,1,2,3,,3,3,Greenfield,Rd,648307,4.197,4.519,0,7.744627,5,5 +3251,0,0.497389,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,15.514,16.011,0,11.937334,5,5 +28295,0,0.246753,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.922067,0.15,4 +28298,0,0.504503,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.108062,0.15,4 +28300,0,0.089896,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.157502,0.15,4 +2214,0,0.183065,2,2,1,2,3,,3,3,Greenfield,Rd,648307,4.014,4.197,0,4.393553,5,5 +28110,0,0.248918,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.974039,0.15,4 +2215,0,0.125569,2,2,1,2,3,,3,3,Greenfield,Rd,648307,3.888,4.014,0,3.01366,5,5 +2212,0,0.327619,2,2,1,2,3,,3,3,Greenfield,Rd,648307,4.519,4.847,0,7.862849,5,5 +29657,0,0.188208,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.517001,0.15,4 +128,0,0.500544,1,1,0,2,4,,3,3,13 Mile,Rd,607408,6.003,6.503,0,12.013052,6,4.5 +355,0,0.31711,1,1,0,2,5,,3,3,Beverly,Rd,610804,1.732,2.049,0,7.610641,8,4.5 +1182,0,0.25158,1,1,1,2,3,,3,3,14 Mile,Rd,625804,6.001,6.253,0,6.037912,5,5 +2209,0,0.221267,1,1,0,2,3,,3,3,Greenfield,Rd,648307,5.297,5.519,0,5.310409,5,5 +28291,0,0.493918,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.854033,0.15,4 +28293,0,0.494013,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.856307,0.15,4 +27606,0,0.194092,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.658203,0.15,4 +742,0,0.251484,1,1,1,2,3,,3,3,14 Mile,Rd,625804,6.253,6.504,0,6.035623,5,5 +2210,0,0.278274,1,1,0,2,3,,3,3,Greenfield,Rd,648307,5.019,5.297,0,6.678575,5,5 +1653,0,0.222254,2,2,0,2,3,,3,3,14 Mile,Rd,625804,5.779,6.001,0,5.3341,5,5 +2207,0,0.231515,1,1,0,2,3,,3,3,Greenfield,Rd,648307,5.785,6.016,0,5.556371,5,5 +25464,0,0.213493,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.123836,0.15,4 +2208,0,0.266036,1,1,0,2,3,,3,3,Greenfield,Rd,648307,5.519,5.785,0,6.384859,5,5 +828,0,0.018522,2,2,1,2,3,,3,3,14 Mile,Rd,625804,5.761,5.779,0,0.444523,5,5 +327,1,0.105989,4,0,0,2,5,,3,3,10 Mile,Rd,633409,9.825,9.931,0,2.543738,8,4.5 +994,0,0.274133,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,2.507,2.782,0,6.579191,6,4.5 +1201,-1,0.185965,0,2,0,2,5,,3,3,10 Mile,Rd,644205,0.431,0.617,0,4.463161,8,4.5 +2999,0,0.451815,1,1,0,2,5,,3,3,Catalpa,Dr,656010,1.792,2.243,0,10.843548,8,4.5 +19473,1,0.774265,4,0,0,1,1,,3,3,E I 696,,1903903,0.581,1.355,0,,0.58,7 +19719,-1,0.842171,0,4,0,1,1,,3,3,W I 696,,1904002,0.577,1.419,0,,0.58,7 +20246,0,0.498032,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,5.538,6.036,0,11.952771,6,4.5 +27601,0,0.561504,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.476103,0.15,4 +27837,0,0.248423,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.962149,0.15,4 +28025,0,0.546448,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.114743,0.15,4 +28052,0,0.25295,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.070801,0.15,4 +28055,0,0.382817,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.187614,0.15,4 +893,-1,0.3139,0,2,0,2,4,,3,3,10 Mile,Rd,644205,0,0.314,0,7.533597,6,4.5 +1235,1,0.260669,2,0,0,2,4,,3,3,10 Mile,Rd,633409,9.403,9.664,0,6.256058,6,4.5 +1977,0,0.205667,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,2.05,2.255,0,4.93601,6,4.5 +2991,0,0.488897,1,1,0,2,5,,3,3,Lincoln,Dr,665304,0.483,0.972,0,11.733518,8,4.5 +19474,1,0.341113,4,0,0,1,1,,3,3,E I 696,,1903903,0.24,0.581,0,,0.58,7 +19668,1,0.268302,1,0,0,1,1,RON,3,3,Coolidge/W I 696,RAMP,1904008,0,0.268,0,,1.09,4 +19688,1,0.230579,1,0,0,1,1,ROF,3,3,E I 696/Coolidge,RAMP,1904003,0,0.231,0,,2.24,5 +19734,-1,0.363161,0,4,0,1,1,,3,3,W I 696,,1904002,0.214,0.577,0,,0.58,7 +26194,0,0.355292,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.526999,0.15,4 +27439,0,0.48323,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.597508,0.15,4 +29694,0,0.288613,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.926708,0.15,4 +26193,0,0.271525,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.516596,0.15,4 +1723,0,0.079173,2,2,1,2,4,,3,3,10 Mile,Rd,633409,9.324,9.403,0,1.900149,6,4.5 +3301,0,0.096644,1,1,0,2,5,,3,3,Lincoln,Dr,665304,0.387,0.483,0,2.319456,8,4.5 +2768,0,0.14652,1,1,0,2,5,,3,3,Lincoln,Dr,665304,0.24,0.387,0,3.516483,8,4.5 +8,0,0.371347,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,1.633,2.005,0,8.912328,6,4.5 +790,1,0.161173,2,0,0,2,4,,3,3,10 Mile,Rd,633409,9.664,9.825,0,3.868154,6,4.5 +1681,-1,0.116959,0,2,0,2,4,,3,3,10 Mile,Rd,644205,0.314,0.431,0,2.807006,6,4.5 +1680,0,0.045022,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,2.005,2.05,0,1.080522,6,4.5 +1464,0,0.252265,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,2.255,2.507,0,6.054362,6,4.5 +27451,0,0.342143,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.211421,0.15,4 +2079,0,0.221436,2,2,0,2,4,,3,3,Coolidge,Hwy,644004,3.006,3.228,0,5.314465,6,4.5 +2795,0,0.425473,2,2,1,2,5,,3,3,Catalpa,Dr,656010,1.366,1.792,0,10.211351,8,4.5 +20433,0,0.47,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,5.068,5.538,0,11.27999,6,4.5 +28050,0,0.486968,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.687231,0.15,4 +28093,0,0.27916,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.699848,0.15,4 +28096,0,0.336714,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.081137,0.15,4 +28098,0,0.3099,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.437597,0.15,4 +28109,0,0.310898,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.461552,0.15,4 +20651,0,0.127172,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,4.941,5.068,0,3.052124,6,4.5 +28049,0,0.256115,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.146765,0.15,4 +3321,0,0.183285,2,2,1,2,5,,3,3,Catalpa,Dr,656010,1.183,1.366,0,4.398829,8,4.5 +28092,0,0.274723,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.59335,0.15,4 +533,0,0.224865,2,2,1,2,4,,3,3,Coolidge,Hwy,644004,2.782,3.006,0,5.39675,6,4.5 +1351,0,0.184228,2,2,0,2,4,,3,3,Coolidge,Hwy,644004,3.507,3.691,0,4.42146,6,4.5 +28091,0,0.253705,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.08891,0.15,4 +28306,0,0.239367,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.744801,0.15,4 +1861,0,0.279332,2,2,0,2,4,,3,3,Coolidge,Hwy,644004,3.228,3.507,0,6.703968,6,4.5 +764,-1,0.317935,0,4,0,2,5,,3,3,10 Mile,Rd,644205,0.617,0.934,0,7.630428,8,4.5 +1938,1,0.396481,4,0,0,2,5,,3,3,10 Mile,Rd,633409,9.931,10.327,0,9.515539,8,4.5 +27930,0,0.526848,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.644341,0.15,4 +19660,1,0.267652,1,0,0,1,1,ROF,3,3,W I 696/Coolidge,RAMP,1904104,0,0.268,0,,2.24,5 +19687,1,0.286562,1,0,0,1,1,RON,3,3,Coolidge/E I 696,RAMP,1904004,0,0.287,0,,1.09,4 +2242,0,0.369687,1,1,0,2,7,,3,3,Scotia,,648205,0.844,1.214,0,8.872486,7,4.5 +29658,0,0.190015,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.560365,0.15,4 +2241,0,0.039557,1,1,0,2,7,,3,3,Scotia,,648205,1.214,1.253,0,0.949376,7,4.5 +3436,0,0.462332,1,1,0,2,5,,3,3,Catalpa,Dr,656010,2.243,2.705,0,11.095965,8,4.5 +27994,0,0.42065,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.095605,0.15,4 +27995,0,0.278589,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.686128,0.15,4 +27996,0,0.242471,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.8193,0.15,4 +27997,0,0.418965,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.055165,0.15,4 +28090,0,0.241404,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.79369,0.15,4 +1193,-1,0.246054,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,8.756,9.002,0,5.905296,5,5 +1662,1,0.210423,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,8.789,9,0,5.050149,5,5 +3037,0,0.019424,1,1,0,2,5,,3,3,Catalpa,Dr,656010,2.705,2.725,0,0.466174,8,4.5 +134,0,0.460102,2,2,1,2,3,,3,3,13 Mile,Rd,607408,4.516,4.976,0,11.042459,5,5 +244,-1,0.237567,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,7.297,7.535,0,5.701603,5,5 +625,-1,0.26975,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,7.535,7.805,0,6.47399,5,5 +694,1,0.778807,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,7.526,8.305,0,18.691372,5,5 +1013,0,0.15518,2,2,1,2,3,,3,3,14 Mile,Rd,625804,4.826,4.982,0,3.724315,5,5 +1104,0,0.239981,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.027,1.267,0,5.759548,8,4.5 +1818,1,0.218216,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,7.308,7.526,0,5.237179,5,5 +1978,1,0.148081,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,4.888,5.036,0,3.553942,6,4.5 +2922,0,0.128065,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,16.99,17.118,0,3.073559,5,5 +28011,0,0.354403,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.505676,0.15,4 +28308,0,0.346185,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.308451,0.15,4 +28311,0,0.287445,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.898689,0.15,4 +28317,0,0.256421,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.154097,0.15,4 +29902,0,0.330457,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.930957,0.15,4 +427,1,0.358897,2,0,0,2,4,DV2,3,3,Coolidge,Hwy,644004,4.011,4.37,0,8.613529,6,4.5 +2161,0,0.249508,1,1,0,2,5,,3,3,Webster,Rd,610103,0.482,0.731,0,5.988188,8,4.5 +3012,0,0.397135,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,16.373,16.77,0,9.531237,5,5 +28307,0,0.243395,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.841471,0.15,4 +28322,0,0.281172,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.748122,0.15,4 +28326,0,0.354977,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.519436,0.15,4 +3328,0,0.094299,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,16.279,16.373,0,2.26318,5,5 +28309,0,0.371674,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.920187,0.15,4 +1925,0,0.144312,1,1,0,2,5,,3,3,Webster,Rd,610103,0.337,0.482,0,3.46349,8,4.5 +3230,0,0.219642,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,16.77,16.99,0,5.271405,5,5 +28325,0,0.251664,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.039924,0.15,4 +426,1,0.224355,2,0,0,2,4,DV2,3,3,Coolidge,Hwy,644004,4.663,4.888,0,5.38453,6,4.5 +805,0,0.249597,1,1,0,2,5,,3,3,Webster,Rd,610103,0.731,0.981,0,5.990334,8,4.5 +28056,0,0.269731,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.473549,0.15,4 +28321,0,0.034311,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,0.823475,0.15,4 +1979,1,0.137112,2,0,0,2,4,DV2,3,3,Coolidge,Hwy,644004,4.37,4.507,0,3.29069,6,4.5 +891,1,0.156723,2,0,0,2,4,DV2,3,3,Coolidge,Hwy,644004,4.507,4.663,0,3.76136,6,4.5 +28310,0,0.159147,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.819517,0.15,4 +28319,0,0.14183,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.40391,0.15,4 +131,0,0.479364,2,2,0,2,3,,3,3,13 Mile,Rd,607408,5.119,5.598,0,11.504748,5,5 +300,1,0.272581,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.393,5.666,0,6.541946,6,4.5 +1101,-1,0.352323,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,6.836,7.188,0,8.455752,5,5 +1579,-1,0.242459,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,6.593,6.836,0,5.819011,5,5 +1581,0,0.30118,2,2,0,2,5,,3,3,Normandy,Rd,644402,0.713,1.014,0,7.228317,8,4.5 +1632,1,0.27149,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,6.594,6.866,0,6.515769,5,5 +1778,0,0.34349,2,2,1,2,3,,3,3,14 Mile,Rd,625804,5.177,5.52,0,8.243754,5,5 +2015,1,0.323206,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,6.866,7.189,0,7.756956,5,5 +25462,0,0.459313,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.023512,0.15,4 +28028,0,0.475856,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.420543,0.15,4 +28030,0,0.281967,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.767197,0.15,4 +28054,0,0.269383,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.465182,0.15,4 +29903,0,0.411781,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.882742,0.15,4 +29904,0,0.412125,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.891011,0.15,4 +25616,0,0.347356,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.336542,0.15,4 +25617,0,0.341925,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.206207,0.15,4 +28058,0,0.234166,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.619991,0.15,4 +130,0,0.065411,2,2,0,2,3,,3,3,13 Mile,Rd,607408,5.598,5.663,0,1.56987,5,5 +124,1,0.388937,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,6.205,6.594,0,9.334476,5,5 +642,-1,0.390721,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,6.203,6.593,0,9.3773,5,5 +1684,0,0.215458,1,1,0,2,5,,3,3,Normandy,Rd,644402,0.341,0.556,0,5.170997,8,4.5 +766,0,0.138419,2,2,0,2,5,,3,3,Normandy,Rd,644402,0.574,0.713,0,3.32205,8,4.5 +1203,0,0.018284,2,2,0,2,5,,3,3,Normandy,Rd,644402,0.556,0.574,0,0.438827,8,4.5 +133,0,0.014564,2,2,1,2,3,,3,3,13 Mile,Rd,607408,4.976,4.991,0,0.34953,5,5 +727,-1,0.097582,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,7.188,7.286,0,2.341976,5,5 +763,1,0.223609,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.17,5.393,0,5.366613,6,4.5 +1824,1,0.106798,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,7.189,7.295,0,2.563155,5,5 +132,0,0.017114,2,2,0,2,3,,3,3,13 Mile,Rd,607408,5.101,5.119,0,0.410746,5,5 +995,1,0.117382,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.052,5.17,0,2.817166,6,4.5 +1465,1,0.016711,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.036,5.052,0,0.401067,6,4.5 +28313,0,0.09523,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.28551,0.15,4 +555,0,0.195122,2,2,1,2,3,,3,3,14 Mile,Rd,625804,4.982,5.177,0,4.682937,5,5 +1352,1,0.255969,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.919,6.175,0,6.143261,6,4.5 +28031,0,0.211402,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.073655,0.15,4 +28029,0,0.245125,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.883009,0.15,4 +1862,1,0.253415,2,0,0,2,4,DV2,3,3,Coolidge,Rd,644004,5.666,5.919,0,6.081948,6,4.5 +1415,-1,0.108401,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,8.296,8.405,0,2.601615,5,5 +1582,0,0.2352,1,1,0,2,5,,3,3,Webster,Rd,644506,0.24,0.475,0,5.644799,8,4.5 +1855,1,0.101753,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,8.305,8.406,0,2.442067,5,5 +2152,-1,0.492126,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,7.805,8.296,0,11.811024,5,5 +3051,0,0.130252,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,17.443,17.573,0,3.126056,5,5 +28021,0,0.247533,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.940801,0.15,4 +28323,0,0.270207,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.484966,0.15,4 +28327,0,0.298712,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.169083,0.15,4 +3374,0,0.325099,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,17.118,17.443,0,7.802368,5,5 +28304,0,0.342232,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.213571,0.15,4 +28305,0,0.23421,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.62103,0.15,4 +28324,0,0.331326,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.95183,0.15,4 +2080,0,0.240162,1,1,0,2,5,,3,3,Webster,Rd,644506,0,0.24,0,5.763899,8,4.5 +28315,0,0.264493,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.347821,0.15,4 +3254,0,0.017539,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,17.573,17.59,0,0.420929,5,5 +136,0,0.284838,2,2,1,2,3,,3,3,13 Mile,Rd,607408,4.231,4.516,0,6.836102,5,5 +846,0,0.197472,2,2,1,2,3,,3,3,14 Mile,Rd,625804,4.403,4.601,0,4.739339,5,5 +1685,0,0.30706,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.487,1.794,0,7.369446,8,4.5 +28041,0,0.341027,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.184656,0.15,4 +28047,0,0.203166,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.875975,0.15,4 +655,0,0.134141,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.267,1.401,0,3.219392,8,4.5 +1439,0,0.255572,1,1,0,2,5,,3,3,Delemere,Blvd,612708,0,0.256,0,6.13374,8,4.5 +1488,0,0.225955,2,2,0,2,3,,3,3,14 Mile,Rd,625804,4.601,4.826,0,5.422918,5,5 +12,0,0.086184,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.401,1.487,0,2.068416,8,4.5 +553,0,0.257913,1,1,0,2,5,,3,3,Delemere,Blvd,612708,0.256,0.513,0,6.189908,8,4.5 +28043,0,0.277533,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.660796,0.15,4 +28033,0,0.385011,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.240253,0.15,4 +28048,0,0.333328,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.999861,0.15,4 +28045,0,0.24049,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.771769,0.15,4 +1305,0,0.028086,2,2,1,2,3,,3,3,14 Mile,Rd,625804,4.375,4.403,0,0.674054,5,5 +176,0,0.178228,2,2,1,2,3,,3,3,Big Beaver,Rd,607204,0.281,0.459,0,4.277461,5,5 +342,0,0.276441,1,1,0,2,4,,4,3,Charing Cross,Rd,619207,0,0.276,0,6.634591,4.5,4.5 +413,1,0.179132,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,3.059,3.238,0,4.299163,3.7,5 +601,0,0.554154,1,1,0,2,5,,3,3,Kensington,Rd,616302,2.771,3.325,0,13.299688,8,4.5 +1544,0,0.424079,1,1,0,2,3,,4,3,Adams,Rd,4415861,1.619,2.043,0,10.177886,3.7,5 +1594,0,0.269648,1,1,0,2,4,,4,3,Wattles,Rd,618802,1.125,1.395,0,6.47156,4.5,4.5 +1633,0,0.202403,2,2,0,2,3,,4,3,Long Lake,Rd,641102,8.761,8.963,0,4.857664,3.7,5 +1745,0,0.333876,1,1,0,2,5,,4,3,Beach,Rd,626301,1.452,1.786,0,8.013015,5.8,4.5 +2035,-1,0.172801,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,3.059,3.232,0,4.147225,3.7,5 +3413,0,0.440212,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.872,5.312,0,10.565095,5,5 +3789,0,0.47934,2,2,0,2,3,,3,3,Maple,Rd,683906,14.219,14.698,0,11.504159,5,5 +4876,1,0.330191,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,2.263,2.593,0,7.92458,6,4.5 +25457,0,0.36128,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.670725,0.15,4 +25654,0,0.26004,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.240965,0.15,4 +27907,0,0.308069,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.393659,0.15,4 +28002,0,0.58351,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.004248,0.15,4 +28331,0,0.496934,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.926407,0.15,4 +28333,0,0.254628,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.111074,0.15,4 +28340,0,0.31286,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.508636,0.15,4 +28342,0,0.293914,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.053944,0.15,4 +28343,0,0.336072,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.065727,0.15,4 +28349,0,0.503054,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.073302,0.15,4 +28350,0,0.483908,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.613803,0.15,4 +28351,0,0.311053,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.465271,0.15,4 +28352,0,0.337034,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.088816,0.15,4 +28359,0,0.315889,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.581326,0.15,4 +488,0,0.437007,2,2,0,2,3,,3,3,Adams,Rd,4415861,0.672,1.109,0,10.48816,5,5 +513,1,0.187189,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,4.622,4.809,0,4.492531,5,5 +628,0,0.097503,1,1,0,2,5,,3,3,Old Woodward,Ave,613810,0.653,0.751,0,2.340068,8,4.5 +656,0,0.234901,1,1,0,2,5,,2,3,Lincoln,,611106,1.603,1.838,0,5.637618,8.5,4.5 +673,0,0.141196,1,1,0,2,5,,2,3,Brown,St,4463518,0.351,0.492,0,3.388698,8.5,4.5 +1153,1,0.35355,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,4.268,4.622,0,8.48521,5,5 +1218,0,0.046483,2,2,0,2,5,,3,3,Oakland,,621305,0.119,0.165,0,1.115584,8,4.5 +1420,0,0.435083,1,1,0,2,3,,3,3,Big Beaver,Rd,617206,3.582,4.016,0,10.441993,5,5 +1503,-1,0.536565,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,4.273,4.809,0,12.877559,5,5 +1701,0,0.118964,2,2,0,2,5,,3,3,Oakland,,621305,0,0.119,0,2.855137,8,4.5 +1815,0,0.226619,1,1,1,2,5,,3,3,Old Woodward,Ave,613810,0.427,0.653,0,5.438849,8,4.5 +3796,0,0.207129,1,1,0,2,3,,2,3,Maple,Rd,683906,13.581,13.788,0,4.971101,6,5 +25066,0,0.28005,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.721207,0.15,4 +25458,0,0.221461,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.315076,0.15,4 +28337,0,0.255987,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.143678,0.15,4 +28338,0,0.528242,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.677809,0.15,4 +28362,0,0.344817,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,8.275613,0.15,4 +571,0,0.498372,1,1,0,2,5,,2,3,Lincoln,,611106,1.105,1.603,0,11.960921,8.5,4.5 +950,0,0.212769,2,2,0,2,4,,2,3,Southfield,Rd,613803,0.66,0.872,0,5.106456,8,4.5 +3798,0,0.462422,1,1,1,2,3,,3,3,Maple,Rd,683906,13.03,13.492,0,11.098137,5,5 +27981,0,0.261422,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.274131,0.15,4 +28360,0,0.375243,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,9.005841,0.15,4 +28363,0,0.237549,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,5.70118,0.15,4 +1698,0,0.334603,1,1,0,2,4,,3,3,Southfield,Rd,613803,0.17,0.505,0,8.030463,6,4.5 +1783,0,0.15459,2,2,0,2,4,,2,3,Southfield,Rd,613803,0.505,0.66,0,3.710152,8,4.5 +27982,0,0.354445,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.50667,0.15,4 +668,0,0.18035,1,1,0,2,5,,2,3,Brown,St,4463518,0,0.18,0,4.328395,8.5,4.5 +852,0,0.216609,2,2,0,2,4,,2,3,Southfield,Rd,613803,0.872,1.089,0,5.198616,8,4.5 +1559,0,0.203655,1,1,0,2,5,,2,3,Chester,,613807,0.335,0.539,0,4.887731,8.5,4.5 +3797,0,0.088853,2,2,1,2,3,,2,3,Maple,Rd,683906,13.492,13.581,0,2.132464,6,5 +671,0,0.170982,1,1,0,2,5,,2,3,Brown,St,4463518,0.18,0.351,0,4.103579,8.5,4.5 +28361,0,0.13914,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.339362,0.15,4 +676,0,0.156137,1,1,0,2,5,,3,3,Willits,,611204,0.304,0.46,0,3.747296,8,4.5 +1773,0,0.050787,2,1,0,2,5,,3,3,Chester,,613807,0.539,0.59,0,1.218894,8,4.5 +224,-1,0.496083,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,3.655,4.151,0,11.90599,3.7,5 +326,1,0.311809,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,3.655,3.966,0,7.483407,3.7,5 +1168,0,0.317108,1,1,0,2,3,,4,3,Big Beaver,Rd,617206,3.265,3.582,0,7.610583,3.7,5 +28347,0,0.530937,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.742478,0.15,4 +715,-1,0.423466,0,4,0,2,3,DIV,4,3,Woodward,Ave,616808,3.232,3.655,0,10.163192,3.7,5 +2142,1,0.416666,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,3.238,3.655,0,9.99998,3.7,5 +1643,0,0.019138,2,2,0,2,3,,4,3,Quarton,Rd,617206,3.245,3.265,0,0.459316,3.7,5 +847,0,0.211944,1,1,1,2,5,,3,3,Old Woodward,Ave,613810,0.215,0.427,0,5.086646,8,4.5 +885,1,0.102395,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,4.166,4.268,0,2.457476,5,5 +2017,-1,0.1214,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,4.151,4.273,0,2.913597,5,5 +629,1,0.214771,1,0,0,2,5,,4,3,Old Woodward,Ave,613810,0,0.215,0,5.154504,5.8,4.5 +1850,1,0.199733,4,0,0,2,3,DIV,4,3,Woodward,Ave,614101,3.966,4.166,0,4.793601,3.7,5 +1661,0,0.057471,1,1,0,2,5,,3,3,Oak,,619905,1.36,1.418,0,1.379294,8,4.5 +1055,1,0.015495,2,0,0,2,5,,3,3,Oak,,619905,1.418,1.433,0,0.371873,8,4.5 +667,0,0.053204,1,1,0,2,5,,2,3,Lincoln,,611106,2.019,2.072,0,1.276901,8.5,4.5 +1078,-1,0.100898,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,5.395,5.496,0,2.421543,6,5 +1265,-1,0.226665,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,5.078,5.305,0,5.439967,6,5 +1328,0,0.283261,2,2,0,2,3,,2,3,Adams,Rd,4415861,0.131,0.414,0,6.79826,6,5 +1636,1,0.207605,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,5.079,5.287,0,4.982529,6,5 +1752,1,0.155481,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,5.393,5.549,0,3.731539,6,5 +1808,0,0.100222,1,1,0,2,5,,2,3,Old Woodward,Ave,613810,1.161,1.261,0,2.405339,8.5,4.5 +3790,0,0.156501,2,2,0,2,3,,2,3,Maple,Rd,683906,14.062,14.219,0,3.756024,6,5 +27586,0,0.148149,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.555572,0.15,4 +27998,0,0.251024,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.024584,0.15,4 +28001,0,0.270704,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.496892,0.15,4 +28367,0,0.426571,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.237696,0.15,4 +27999,0,0.280914,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.741946,0.15,4 +525,1,0.140156,1,0,0,2,5,,2,3,Old Woodward,Ave,613810,1.261,1.401,0,3.363743,8.5,4.5 +664,0,0.160397,1,1,0,2,5,,2,3,Lincoln,,611106,1.838,1.998,0,3.849517,8.5,4.5 +20540,1,0.036845,1,0,0,2,5,,2,3,Old Woodward,Ave,4400125,0.031,0.068,0,0.884285,8.5,4.5 +643,1,0.10693,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,5.287,5.393,0,2.566315,6,5 +1555,-1,0.090121,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,5.305,5.395,0,2.162893,6,5 +20788,1,0.030945,1,0,0,2,3,,2,3,Old Woodward,Ave,4400125,0,0.031,0,0.742691,6,5 +666,0,0.020626,1,1,0,2,5,,2,3,Lincoln,,611106,1.998,2.019,0,0.495024,8.5,4.5 +691,0,0.075066,1,1,0,2,5,,2,3,Old Woodward,Ave,613810,1.086,1.161,0,1.801588,8.5,4.5 +1398,0,0.161222,1,1,0,2,5,,2,3,Old Woodward,Ave,613810,0.751,0.912,0,3.86933,8.5,4.5 +1761,-1,0.269437,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,4.809,5.078,0,6.466486,6,5 +1889,1,0.170635,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,4.909,5.079,0,4.095239,6,5 +3792,0,0.106591,2,2,0,2,3,,2,3,Maple,Rd,683906,13.949,14.055,0,2.55819,6,5 +20300,0,0.056799,1,1,0,2,5,,2,3,Brown,St,4463518,0.492,0.549,0,1.363185,8.5,4.5 +28358,0,0.218935,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,5.25443,0.15,4 +29685,0,0.1188,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,2.851196,0.15,4 +2013,0,0.174292,1,1,0,2,5,,2,3,Old Woodward,Ave,613810,0.912,1.086,0,4.183015,8.5,4.5 +40390,-1,0.017115,0,1,0,2,4,,4,5,Geddes,Rd,4606198,0.042,0.059,0,0.410767,4.5,4.5 +419,1,0.06571,2,0,0,2,5,,3,3,Park,,613706,0,0.066,0,1.577039,8,4.5 +3795,0,0.115275,1,1,0,2,3,,2,3,Maple,Rd,683906,13.788,13.903,0,2.766593,6,5 +1159,0,0.107346,1,1,0,2,5,,3,3,Park,,613706,0.066,0.173,0,2.5763,8,4.5 +1470,1,0.099484,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,4.809,4.909,0,2.387606,6,5 +1720,0,0.107654,1,1,0,2,5,,2,3,Peabody,,613802,0,0.108,0,2.583707,8.5,4.5 +3793,0,0.01761,2,2,0,2,3,,2,3,Maple,Rd,683906,13.931,13.949,0,0.422644,6,5 +20103,0,0.042836,2,2,0,2,5,,2,3,Brown,St,4463518,0.549,0.592,0,1.028053,8.5,4.5 +3794,0,0.028141,1,1,1,2,3,,2,3,Maple,Rd,683906,13.903,13.931,0,0.675383,6,5 +28366,0,0.074646,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.791495,0.15,4 +28365,0,0.061314,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.471543,0.15,4 +3791,0,0.006861,2,2,0,2,3,,2,3,Maple,Rd,683906,14.055,14.062,0,0.164666,6,5 +401,-1,0.162901,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,5.496,5.659,0,3.909627,5,5 +1122,1,0.110003,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,5.549,5.659,0,2.64006,5,5 +2160,0,0.084647,2,2,0,2,3,,2,3,Adams,Rd,4415861,0.046,0.131,0,2.031524,6,5 +385,-1,0.046283,0,2,0,2,3,,2,3,Adams,Rd,4415861,0,0.046,0,1.110786,6,5 +1551,0,0.258303,2,2,0,2,3,,2,3,Adams,Rd,4415861,0.414,0.672,0,6.199269,6,5 +177,0,0.280944,2,2,1,2,3,,3,3,Big Beaver,Rd,607204,0,0.281,0,6.742667,5,5 +867,0,0.366033,2,2,0,2,3,,3,3,Adams,Rd,4415861,1.109,1.475,0,8.784791,5,5 +28336,0,0.30623,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.34953,0.15,4 +961,0,0.141837,1,1,1,2,3,,4,3,Big Beaver,Rd,617206,4.016,4.158,0,3.404081,3.7,5 +1272,0,0.143577,2,2,0,2,3,,3,3,Adams,Rd,4415861,1.475,1.619,0,3.445851,5,5 +498,0,0.43666,1,1,0,2,3,,4,3,Long Lake,Rd,641102,7.512,7.948,0,10.479833,3.7,5 +512,0,0.445922,1,1,0,2,3,,4,3,Adams,Rd,4415861,2.664,3.11,0,10.70214,3.7,5 +1455,0,0.185722,1,1,0,2,5,,4,3,Kensington,Rd,616302,1.395,1.581,0,4.457329,5.8,4.5 +2130,0,0.305042,1,1,0,2,4,,4,3,Wattles,Rd,618802,0.423,0.728,0,7.321019,4.5,4.5 +2135,0,0.74376,1,1,0,2,5,,4,3,Squirrel,Rd,617001,0,0.744,0,17.85025,5.8,4.5 +27766,0,0.592554,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.221294,0.15,4 +28330,0,0.619467,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.867206,0.15,4 +28332,0,0.494977,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.879452,0.15,4 +28368,0,0.536312,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.871483,0.15,4 +28369,0,0.358359,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.60061,0.15,4 +29894,0,0.715335,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.168036,0.15,4 +220,0,0.308609,1,1,0,2,5,,4,3,Kensington,Rd,616302,2.036,2.345,0,7.406615,5.8,4.5 +735,0,0.125325,1,1,0,2,4,,4,3,Charing Cross,Rd,619207,0.441,0.567,0,3.007791,4.5,4.5 +940,0,0.174765,1,1,0,2,5,,4,3,Wattles,Rd,618802,0,0.175,0,4.194353,5.8,4.5 +2167,0,0.304364,1,1,0,2,4,,4,3,Charing Cross,Rd,619207,0.567,0.871,0,7.304731,4.5,4.5 +28118,0,0.537981,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.911555,0.15,4 +28328,0,0.291139,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.987345,0.15,4 +1172,0,0.165046,1,1,0,2,4,,4,3,Charing Cross,Rd,619207,0.276,0.441,0,3.961095,4.5,4.5 +28639,0,0.404387,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.705285,0.15,4 +1922,-1,0.019205,0,1,0,2,3,,4,3,Lone Pine,Rd,623006,4.732,4.751,0,0.460916,3.7,5 +791,0,0.455673,1,1,0,2,5,,4,3,Kensington,Rd,616302,1.581,2.036,0,10.936144,5.8,4.5 +1659,0,0.426402,1,1,0,2,5,,4,3,Kensington,Rd,616302,2.345,2.771,0,10.233643,5.8,4.5 +28329,0,0.161787,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.882897,0.15,4 +872,0,0.163014,1,1,0,2,5,,4,3,Wattles,Rd,618802,0.175,0.338,0,3.912339,5.8,4.5 +28371,0,0.446525,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.716612,0.15,4 +405,0,0.085662,1,1,0,2,4,,4,3,Wattles,Rd,618802,0.338,0.423,0,2.055882,4.5,4.5 +964,0,0.482512,1,1,0,2,3,,4,3,Long Lake,Rd,641102,7.029,7.512,0,11.58029,3.7,5 +2050,0,0.302556,1,1,0,2,5,,4,3,Squirrel,Rd,617001,0.744,1.046,0,7.261345,5.8,4.5 +25673,0,0.26767,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.424088,0.15,4 +703,0,0.229644,1,1,0,2,5,,4,3,Eastways,Rd,615707,0,0.23,0,5.511453,5.8,4.5 +1539,0,0.446627,1,1,0,2,5,,4,3,Squirrel,Rd,617001,1.046,1.493,0,10.719038,5.8,4.5 +473,0,0.338621,1,1,0,2,3,,4,3,Adams,Rd,4415861,2.326,2.664,0,8.126892,3.7,5 +2093,0,0.232157,1,1,0,2,4,,4,3,Wattles,Rd,618802,0.893,1.125,0,5.571779,4.5,4.5 +29895,0,0.265394,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.369446,0.15,4 +2165,0,0.224994,1,1,0,2,3,,4,3,Adams,Rd,4415861,2.101,2.326,0,5.399853,3.7,5 +1793,0,0.057959,1,1,0,2,3,,4,3,Adams,Rd,4415861,2.043,2.101,0,1.391017,3.7,5 +1630,0,0.164718,1,1,0,2,4,,4,3,Wattles,Rd,618802,0.728,0.893,0,3.953233,4.5,4.5 +603,0,0.050436,1,1,0,2,3,,4,3,Long Lake,Rd,641102,8.404,8.454,0,1.210461,3.7,5 +705,0,0.483209,1,1,0,2,3,,4,3,Adams,Rd,4415861,3.655,4.138,0,11.597016,3.7,5 +1054,0,0.141285,1,1,0,2,3,,4,3,Long Lake,Rd,641102,8.262,8.404,0,3.390835,3.7,5 +25456,0,0.256833,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.163982,0.15,4 +28265,0,0.246085,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.906049,0.15,4 +1175,0,0.434668,1,1,0,2,3,,4,3,Adams,Rd,4415861,3.22,3.655,0,10.432043,3.7,5 +1540,0,0.303924,1,1,0,2,3,,4,3,Long Lake,Rd,641102,7.958,8.262,0,7.294177,3.7,5 +2051,0,0.010356,1,1,0,2,3,,4,3,Long Lake,Rd,641102,7.948,7.958,0,0.248533,3.7,5 +1736,0,0.110307,1,1,0,2,3,,4,3,Adams,Rd,4415861,3.11,3.22,0,2.647364,3.7,5 +713,0,0.025198,1,1,0,2,3,,4,3,Adams,Rd,4415861,4.138,4.163,0,0.604758,3.7,5 +28370,0,0.507204,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.172892,0.15,4 +1256,0,0.538849,1,1,0,2,5,,4,3,Beach,Rd,626301,1.786,2.325,0,12.93238,5.8,4.5 +2133,0,0.307036,1,1,0,2,3,,4,3,Long Lake,Rd,641102,8.454,8.761,0,7.368872,3.7,5 +25647,0,0.255429,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.1303,0.15,4 +28266,0,0.536971,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.887299,0.15,4 +172,1,0.277034,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,1.008,1.285,0,6.648814,5,5 +2837,0,0.353683,2,2,1,2,3,,3,3,Crooks,Rd,659810,3.741,4.095,0,8.4884,5,5 +3785,0,0.420343,2,2,1,2,3,,3,3,Maple,Rd,683906,15.381,15.801,0,10.088229,5,5 +4905,1,0.277055,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,1.087,1.364,0,6.649317,6,4.5 +8457,0,0.288957,1,1,1,2,5,,3,3,Meijer,Dr,982010,0,0.289,0,6.934957,8,4.5 +21154,-1,0.277961,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,0.488,0.766,0,6.671054,5,5 +27605,0,0.266219,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.389257,0.15,4 +28116,0,0.402573,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.661764,0.15,4 +28339,0,0.445729,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.697504,0.15,4 +28346,0,0.180124,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.322987,0.15,4 +28353,0,0.190698,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.576749,0.15,4 +28354,0,0.192907,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.629763,0.15,4 +28372,0,0.177592,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.262198,0.15,4 +28373,0,0.323204,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.756906,0.15,4 +28375,0,0.414521,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.948499,0.15,4 +28378,0,0.319508,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.668188,0.15,4 +28381,0,0.278389,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.681328,0.15,4 +29887,0,0.322161,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.731867,0.15,4 +3787,0,0.472064,2,2,1,2,3,,3,3,Maple,Rd,683906,14.746,15.218,0,11.329525,5,5 +4906,1,0.523065,2,0,0,2,4,DIV,3,3,Coolidge,Rd,693006,0.565,1.087,0,12.553549,6,4.5 +3788,0,0.048048,2,2,0,2,3,,3,3,Maple,Rd,683906,14.698,14.746,0,1.153148,5,5 +4910,0,0.177252,2,2,1,2,4,,3,3,Coolidge,Rd,693006,0.387,0.565,0,4.25404,6,4.5 +3786,0,0.154647,2,2,1,2,3,,3,3,Maple,Rd,683906,15.227,15.381,0,3.711533,5,5 +173,1,0.37552,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,0.618,0.994,0,9.012471,5,5 +4897,1,0.26753,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,1.556,1.823,0,6.420728,6,4.5 +21155,-1,0.244204,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,0.229,0.473,0,5.860888,5,5 +28279,0,0.281892,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.765404,0.15,4 +28341,0,0.578808,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.891402,0.15,4 +28348,0,0.532323,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.775743,0.15,4 +28385,0,0.217682,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.224369,0.15,4 +28386,0,0.158525,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.804599,0.15,4 +21156,-1,0.22873,0,2,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,0,0.229,0,5.489512,5,5 +28384,0,0.221365,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.312765,0.15,4 +174,1,0.097186,2,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,0.521,0.618,0,2.332461,5,5 +175,0,0.062201,2,2,1,2,3,,3,3,Big Beaver,Rd,607204,0.459,0.521,0,1.492826,5,5 +28278,0,0.135079,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.24189,0.15,4 +4902,1,0.191423,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,1.364,1.556,0,4.594156,6,4.5 +4885,1,0.215699,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,2.047,2.263,0,5.176777,6,4.5 +25368,0,0.170372,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.088936,0.15,4 +28383,0,0.172688,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.144509,0.15,4 +4893,1,0.205014,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,1.823,2.028,0,4.920339,6,4.5 +4888,1,0.018985,2,0,0,2,4,DV2,3,3,Coolidge,Rd,693006,2.028,2.047,0,0.455641,6,4.5 +28456,0,0.175798,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.219154,0.15,4 +3107,0,0.244796,2,2,1,2,3,,3,3,Crooks,Rd,659810,3.214,3.459,0,5.875092,5,5 +3784,0,0.42448,2,2,1,2,3,,3,3,Maple,Rd,683906,15.801,16.226,0,10.187523,5,5 +8455,0,0.460192,1,1,0,2,5,,3,3,Meijer,Dr,982010,0.613,1.073,0,11.044619,8,4.5 +28037,0,0.489438,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.74652,0.15,4 +28292,0,0.673199,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,16.156769,0.15,4 +28376,0,0.339144,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.139461,0.15,4 +2126,0,0.148606,1,1,0,2,5,,3,3,Delemere,Blvd,612708,0.72,0.868,0,3.566534,8,4.5 +8456,0,0.323947,1,1,0,2,5,,3,3,Meijer,Dr,982010,0.289,0.613,0,7.77473,8,4.5 +28032,0,0.24677,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.922485,0.15,4 +3861,0,0.0435,1,1,0,2,5,,3,3,Delemere,,681404,0,0.044,0,1.043998,8,4.5 +28034,0,0.09438,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.265122,0.15,4 +3038,0,0.341998,2,2,1,2,3,,3,3,Crooks,Rd,659810,2.71,3.052,0,8.207945,5,5 +3445,0,0.162327,2,2,1,2,3,,3,3,Crooks,Rd,659810,3.052,3.214,0,3.895846,5,5 +3131,0,0.282334,2,2,1,2,3,,3,3,Crooks,Rd,659810,3.459,3.741,0,6.776015,5,5 +168,1,0.360177,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,1.645,2.005,0,8.644256,5,5 +3525,0,0.21022,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.325,4.536,0,5.045283,5,5 +21151,-1,0.317502,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.166,1.483,0,7.620049,5,5 +28280,0,0.307931,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.390336,0.15,4 +28281,0,0.116886,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.805254,0.15,4 +28282,0,0.134276,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.222618,0.15,4 +28356,0,0.274543,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.589034,0.15,4 +28387,0,0.382781,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.186738,0.15,4 +29964,0,0.629264,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.102324,0.15,4 +170,1,0.209724,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,1.285,1.495,0,5.033371,5,5 +21153,-1,0.276894,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,0.766,1.042,0,6.645465,5,5 +25441,0,0.236993,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.687825,0.15,4 +169,1,0.14983,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,1.495,1.645,0,3.59593,5,5 +29963,0,0.25743,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.178325,0.15,4 +21152,-1,0.123456,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.042,1.166,0,2.962937,5,5 +2550,0,0.230387,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.095,4.325,0,5.529299,5,5 +28380,0,0.275294,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.607052,0.15,4 +3165,0,0.158116,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.536,4.694,0,3.794782,5,5 +28355,0,0.239076,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.737829,0.15,4 +28389,0,0.260752,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.25805,0.15,4 +2441,0,0.158498,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.714,4.872,0,3.803963,5,5 +2867,0,0.020264,2,2,1,2,3,,3,3,Crooks,Rd,659810,4.694,4.714,0,0.486344,5,5 +968,0,0.443417,1,1,0,2,5,,4,3,Beach,Rd,626301,0.796,1.24,0,10.642011,5.8,4.5 +1222,0,0.354684,2,2,1,2,3,,4,3,Long Lake,Rd,641102,9.268,9.623,0,8.512407,3.7,5 +1788,0,0.486371,2,2,1,2,4,,4,3,Wattles,Rd,618802,1.897,2.384,0,11.672898,4.5,4.5 +3518,0,0.243499,2,2,1,2,3,,4,3,Crooks,Rd,659810,6,6.244,0,5.843983,3.7,5 +4860,1,0.075492,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,3.45,3.525,0,1.811816,4.5,4.5 +25438,0,0.535582,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.853967,0.15,4 +25439,0,0.53442,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.826092,0.15,4 +25652,0,0.548832,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.171972,0.15,4 +27966,0,0.576114,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.826746,0.15,4 +28335,0,0.283411,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.801872,0.15,4 +28344,0,0.498418,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.962036,0.15,4 +28357,0,0.450042,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.800997,0.15,4 +28390,0,0.546867,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.124801,0.15,4 +28391,0,0.555443,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.33062,0.15,4 +29898,0,0.238162,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.71588,0.15,4 +1111,0,0.303349,1,1,0,2,4,,4,3,Wattles,Rd,618802,1.586,1.89,0,7.28037,4.5,4.5 +4870,1,0.483898,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,2.593,3.077,0,11.613559,4.5,4.5 +28393,0,0.350345,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.408273,0.15,4 +28394,0,0.348103,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.354468,0.15,4 +1591,0,0.191776,1,1,0,2,4,,4,3,Wattles,Rd,618802,1.395,1.586,0,4.602623,4.5,4.5 +4868,1,0.373243,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,3.077,3.45,0,8.957829,4.5,4.5 +1707,0,0.227305,2,2,0,2,3,,4,3,Long Lake,Rd,641102,9.029,9.256,0,5.455308,3.7,5 +4858,1,0.54403,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,3.525,4.069,0,13.056726,4.5,4.5 +25459,0,0.494771,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.874501,0.15,4 +25649,0,0.401606,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.63854,0.15,4 +28392,0,0.297684,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.144406,0.15,4 +502,0,0.21302,1,1,0,2,5,,4,3,Beach,Rd,626301,1.24,1.452,0,5.112488,5.8,4.5 +1155,0,0.066009,2,2,0,2,3,,4,3,Long Lake,Rd,641102,8.963,9.029,0,1.584208,3.7,5 +25674,0,0.494584,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.870027,0.15,4 +28334,0,0.263031,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.312735,0.15,4 +4855,1,0.233838,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,4.069,4.303,0,5.612116,4.5,4.5 +1355,0,0.308548,1,1,1,2,4,,4,3,Wattles,Rd,618802,2.586,2.894,0,7.40515,4.5,4.5 +3560,0,0.421044,2,2,1,2,3,,3,3,Crooks,Rd,659810,5.312,5.733,0,10.105059,5,5 +28345,0,0.400724,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.617367,0.15,4 +1291,0,0.202011,1,1,1,2,4,,4,3,Wattles,Rd,618802,2.384,2.586,0,4.84826,4.5,4.5 +3252,0,0.26704,2,2,1,2,3,,4,3,Crooks,Rd,659810,5.733,6,0,6.408968,3.7,5 +1882,1,0.27318,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,9.981,10.254,0,6.556312,3.7,5 +3110,1,0.192778,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,6.522,6.714,0,4.62667,3.7,5 +19515,0,0.482143,2,2,1,2,5,,4,3,Corporate,Dr,1888801,0.021,0.503,0,11.571438,5.8,4.5 +20195,-1,0.2685,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0.362,0.63,0,6.443996,3.7,5 +21163,-1,0.192119,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,0.279,0.471,0,4.610867,3.7,5 +320,1,0.220235,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,9.761,9.981,0,5.285644,3.7,5 +20397,-1,0.223809,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0.138,0.362,0,5.371415,3.7,5 +782,1,0.138466,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,9.623,9.761,0,3.323185,3.7,5 +20602,-1,0.138151,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0,0.138,0,3.31562,3.7,5 +19516,0,0.021051,2,2,1,2,5,,4,3,Corporate,Dr,1888801,0,0.021,0,0.505231,5.8,4.5 +3191,1,0.277933,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,6.244,6.522,0,6.670388,3.7,5 +21164,-1,0.278769,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,0,0.279,0,6.690454,3.7,5 +27964,0,0.331083,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.945989,0.15,4 +29899,0,0.318489,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.643736,0.15,4 +3366,1,0.333666,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,6.734,7.068,0,8.007988,3.7,5 +25437,0,0.287779,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.906695,0.15,4 +2821,1,0.019651,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,6.714,6.734,0,0.471632,3.7,5 +21162,-1,0.020131,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,0.471,0.491,0,0.483155,3.7,5 +2176,1,0.016226,3,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,10.254,10.271,0,0.389421,3.7,5 +20890,-1,0.016984,0,3,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0.63,0.647,0,0.407609,3.7,5 +3043,1,0.155955,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.068,7.223,0,3.742917,3.7,5 +143,0,0.431048,2,2,1,2,3,,3,3,13 Mile,Rd,607408,2.287,2.718,0,10.345164,5,5 +434,0,0.106516,1,1,0,2,5,,3,3,Washington,,644804,1.642,1.748,0,2.556394,8,4.5 +438,0,0.343114,2,2,0,2,4,,3,3,Main,,644806,1.772,2.115,0,8.234731,6,4.5 +657,1,0.520418,2,0,0,2,5,DV2,3,3,4th,St,644705,0.844,1.364,0,12.490037,8,4.5 +905,-1,0.513295,0,3,0,1,1,,3,3,S I 75,,646106,3.645,4.158,0,,0.58,7 +1103,-1,0.178376,0,2,0,2,5,,3,3,10 Mile,Rd,644205,2.965,3.144,0,4.281034,8,4.5 +1381,1,0.213405,2,0,0,2,5,,3,3,10 Mile,Rd,633409,12.366,12.58,0,5.121713,8,4.5 +1588,0,0.414778,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,0.085,0.499,0,9.954665,8,4.5 +1870,0,0.396967,1,1,0,2,5,,3,3,Girard,,645301,0.419,0.816,0,9.527218,8,4.5 +2297,1,0.58311,3,0,0,1,1,,3,3,N I 75,,647308,3.567,4.149,0,,0.58,7 +2312,1,0.210366,2,0,0,2,4,,3,3,Stephenson,Hwy,646902,4.008,4.218,0,5.048783,6,4.5 +2368,0,0.462001,2,2,1,2,4,,3,3,John R,Rd,646806,3.527,3.989,0,11.088032,6,4.5 +2390,-1,0.198109,0,3,0,2,4,,3,3,Stephenson,Hwy,646702,4.022,4.22,0,4.754622,6,4.5 +2450,0,0.232024,2,2,0,2,4,,3,3,Campbell,Rd,652509,1.576,1.808,0,5.568585,6,4.5 +2549,0,0.250653,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,19.521,19.772,0,6.015681,5,5 +2782,0,0.226483,1,1,0,2,5,,3,3,Lincoln,,651908,2.426,2.652,0,5.435602,8,4.5 +2860,0,0.176655,2,2,0,2,3,,3,3,Crooks,Rd,659810,0,0.177,0,4.239727,5,5 +3260,0,0.489014,1,1,0,2,5,,3,3,Gardenia,,671806,0.549,1.038,0,11.73633,8,4.5 +19469,1,0.465774,4,0,0,1,1,,3,3,E I 696,,1903903,3.502,3.967,0,,0.58,7 +19665,1,0.178889,1,0,0,1,1,RON,3,3,Hilton Campbell/W I 696,RAMP,1904102,0,0.179,0,,1.09,4 +19669,1,0.216331,1,0,0,1,1,ROF,3,3,E I 696/Hilton Campbell,RAMP,1904006,0,0.216,0,,2.24,5 +19709,-1,0.46787,0,4,0,1,1,,3,3,W I 696,,1904002,3.504,3.972,0,,0.58,7 +20192,0,0.231026,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.062,8.293,0,5.544634,6,4.5 +20398,-1,0.521497,0,2,0,2,5,DV2,2,3,4th,St,4404212,0,0.521,0,12.515924,8.5,4.5 +21898,0,0.320457,2,2,0,2,3,,3,3,Rochester,Rd,4413538,0,0.32,0,7.69097,5,5 +26180,0,0.629522,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.108529,0.15,4 +26861,0,0.346258,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.310181,0.15,4 +28014,0,0.524662,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.591893,0.15,4 +28027,0,0.329609,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.91061,0.15,4 +28289,0,0.314873,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.556963,0.15,4 +28316,0,0.63465,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,15.231607,0.15,4 +28395,0,0.347076,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.32982,0.15,4 +28399,0,0.3663,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.791189,0.15,4 +28400,0,0.313752,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.530038,0.15,4 +28403,0,0.279527,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.708655,0.15,4 +28405,0,0.271894,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.525455,0.15,4 +28408,0,0.457094,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.970254,0.15,4 +28416,0,0.220086,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.282073,0.15,4 +28419,0,0.474545,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.389088,0.15,4 +28420,0,0.453479,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.883493,0.15,4 +28455,0,0.552294,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.255046,0.15,4 +29973,0,0.581446,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.954715,0.15,4 +494,1,0.202517,4,0,0,2,5,,3,3,10 Mile,Rd,633409,11.44,11.642,0,4.860418,8,4.5 +539,0,0.097571,1,1,0,2,5,,2,3,Lafayette,,644803,0.308,0.405,0,2.341716,8.5,4.5 +637,-1,0.296118,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,9.858,10.154,0,7.106837,6,5 +652,-1,0.139638,0,4,0,2,5,,3,3,10 Mile,Rd,644205,2.108,2.247,0,3.351315,8,4.5 +768,0,0.06156,1,1,0,2,5,,2,3,6th,St,644706,0.277,0.339,0,1.477437,8.5,4.5 +880,1,0.290998,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,9.872,10.163,0,6.983957,6,5 +996,0,0.062739,1,1,0,2,5,,2,3,4th,St,644705,0.356,0.419,0,1.50573,8.5,4.5 +1474,0,0.091388,1,1,0,2,5,,2,3,Washington,,644804,0.518,0.609,0,2.193324,8.5,4.5 +1714,1,0.8677,2,0,0,2,3,DIV,3,3,Woodward,Ave,614101,10.304,11.171,0,20.824798,5,5 +1769,-1,0.821077,0,2,0,2,3,DIV,3,3,Woodward,Ave,616808,10.352,11.173,0,19.705848,5,5 +1988,0,0.081597,2,2,1,2,3,,2,3,Main,,644806,0.681,0.762,0,1.958337,6,5 +2674,0,0.087137,1,1,0,2,5,,2,3,Troy,,652306,0,0.087,0,2.091278,8.5,4.5 +3145,0,0.124965,1,1,0,2,5,,3,3,Catalpa,Dr,656010,3.548,3.672,0,2.999167,8,4.5 +3377,0,0.056295,1,1,0,2,5,,2,3,Lincoln,,651908,1.641,1.697,0,1.351073,8.5,4.5 +3574,0,0.158616,1,1,0,2,5,,2,3,West,,652303,0,0.159,0,3.806786,8.5,4.5 +3856,1,0.063163,1,0,0,2,5,,2,3,5th,St,681804,0,0.063,0,1.515915,8.5,4.5 +19471,1,0.949953,4,0,0,1,1,,3,3,E I 696,,1903903,2.336,3.286,0,,0.58,7 +19493,-1,0.324925,0,3,0,2,3,,2,3,W M 1 Service Drive,,1903703,0,0.325,0,7.7982,6,5 +19501,1,0.328904,3,0,0,2,3,,2,3,E M 1 Service Drive,,1903609,0,0.329,0,7.893687,6,5 +19715,-1,0.906256,0,4,0,1,1,,3,3,W I 696,,1904002,2.342,3.248,0,,0.58,7 +20097,0,0.021917,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.289,7.311,0,0.526008,8,4.5 +26167,0,0.240456,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.77095,0.15,4 +27979,0,0.536685,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.880441,0.15,4 +28314,0,0.346925,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.326203,0.15,4 +28417,0,0.165138,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.963322,0.15,4 +28427,0,0.224264,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,5.382334,0.15,4 +28433,0,0.129253,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.102064,0.15,4 +29662,0,0.488611,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,11.726654,0.15,4 +29893,0,0.191857,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,4.604574,0.15,4 +29970,0,0.265126,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,6.363025,0.15,4 +956,1,0.463723,4,0,0,2,5,,3,3,10 Mile,Rd,633409,10.976,11.44,0,11.129359,8,4.5 +1863,-1,0.52475,0,4,0,2,5,,3,3,10 Mile,Rd,644205,1.583,2.108,0,12.594006,8,4.5 +27978,0,0.569543,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.669035,0.15,4 +19659,1,0.303204,2,0,0,1,1,RON,3,3,M 1/W I 696,RAMP,1904105,0,0.303,0,,1.09,4 +19679,1,0.242149,2,0,0,1,1,ROF,3,3,E I 696/M 1,RAMP,1904005,0,0.242,0,,2.24,5 +28301,0,0.358072,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.59372,0.15,4 +1860,1,0.140594,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,10.163,10.304,0,3.374252,6,5 +2175,-1,0.197432,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,10.154,10.352,0,4.738368,6,5 +2931,0,0.182907,1,1,0,2,5,,2,3,Lincoln,,651908,1.458,1.641,0,4.389765,8.5,4.5 +3408,0,0.016028,1,1,0,2,5,,2,3,Lincoln,,651908,1.442,1.458,0,0.384682,8.5,4.5 +303,-1,0.223662,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,9.373,9.597,0,5.367892,5,5 +1666,1,0.337677,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,9.261,9.598,0,8.104242,5,5 +1865,-1,0.261837,0,4,0,2,3,DIV,2,3,Woodward,Ave,616808,9.597,9.858,0,6.284082,6,5 +2172,1,0.273602,4,0,0,2,3,DIV,2,3,Woodward,Ave,614101,9.598,9.872,0,6.566456,6,5 +3241,0,0.468141,1,1,0,2,5,,3,3,Catalpa,Dr,656010,3.08,3.548,0,11.235396,8,4.5 +20294,0,0.487783,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,6.801,7.289,0,11.706785,8,4.5 +27183,0,0.313724,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.529384,0.15,4 +27990,0,0.274102,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.578441,0.15,4 +27992,0,0.243855,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.852524,0.15,4 +20719,0,0.229515,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,6.555,6.784,0,5.508356,6,4.5 +20483,0,0.017044,2,2,0,2,4,,2,3,11 Mile,Rd,4400088,6.784,6.801,0,0.409054,8,4.5 +1980,0,0.245523,1,1,0,2,5,,2,3,4th,St,644705,0,0.245,0,5.892559,8.5,4.5 +3396,0,0.088093,1,1,0,2,5,,2,3,West,,652303,0.274,0.362,0,2.114236,8.5,4.5 +28089,0,0.29251,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,7.020229,0.15,4 +28431,0,0.133772,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.210536,0.15,4 +1466,0,0.110696,1,1,0,2,5,,2,3,4th,St,644705,0.245,0.356,0,2.656699,8.5,4.5 +3494,0,0.054129,1,1,0,2,5,,2,3,West,,652303,0.159,0.213,0,1.299105,8.5,4.5 +28094,0,0.10676,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,2.56223,0.15,4 +28303,0,0.056471,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.355299,0.15,4 +2467,0,0.061036,1,1,0,2,5,,2,3,West,,652303,0.213,0.274,0,1.464864,8.5,4.5 +2779,0,0.088973,1,1,0,2,5,,2,3,West,,652303,0.362,0.451,0,2.135356,8.5,4.5 +28418,0,0.045359,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.088605,0.15,4 +9,-1,0.05506,0,4,0,2,5,,3,3,10 Mile,Rd,644205,2.247,2.302,0,1.321443,8,4.5 +1411,-1,0.116494,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.192,11.309,0,2.795845,5,5 +1475,1,0.051401,4,0,0,2,3,,2,3,Main,,644806,0.082,0.133,0,1.233634,6,5 +1580,-1,0.474546,0,2,0,2,5,,3,3,10 Mile,Rd,644205,2.491,2.965,0,11.3891,8,4.5 +1894,1,0.515477,2,0,0,2,5,,3,3,10 Mile,Rd,633409,11.851,12.366,0,12.371438,8,4.5 +3020,0,0.125921,1,1,0,2,5,,2,3,Lincoln,,651908,2.01,2.136,0,3.022101,8.5,4.5 +19470,1,0.215784,4,0,0,1,1,,3,3,E I 696,,1903903,3.286,3.502,0,,0.58,7 +19490,-1,0.060356,0,3,0,2,3,,2,3,W M 1 Service Drive,,1903703,0.42,0.48,0,1.448538,6,5 +19495,1,0.048729,3,0,0,2,5,,3,3,S M 1/E I 696,RAMP,1903610,0.067,0.116,0,1.169484,8,4.5 +19498,1,0.060524,3,0,0,2,3,,2,3,E M 1 Service Drive,,1903609,0.46,0.52,0,1.452583,6,5 +19502,1,0.220721,2,0,0,1,1,ROF,3,3,W I 696/M 1,RAMP,1903607,0,0.221,0,,2.24,5 +19655,1,0.299457,2,0,0,1,1,RON,3,3,M 1/E I 696,RAMP,1904106,0,0.299,0,,1.09,4 +28401,0,0.276858,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.644583,0.15,4 +28421,0,0.342612,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.222684,0.15,4 +1006,0,0.340662,1,1,0,2,5,,3,3,Oakland,Park,644903,0,0.341,0,8.175895,8,4.5 +1084,1,0.05345,3,0,0,2,5,,2,3,10 Mile,Rd,633409,11.765,11.819,0,1.282794,8.5,4.5 +19488,-1,0.243847,0,3,0,2,3,,3,3,W M 1 Service Drive,,1903703,0.578,0.822,0,5.852326,5,5 +19489,-1,0.09833,0,3,0,2,3,,3,3,W M 1 Service Drive,,1903703,0.48,0.578,0,2.35993,5,5 +19497,1,0.346326,3,0,0,2,3,,3,3,E M 1 Service Drive,,1903609,0.52,0.866,0,8.311827,5,5 +28423,0,0.220387,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.289284,0.15,4 +2065,1,0.089079,4,0,0,2,5,,3,3,10 Mile,Rd,633409,11.642,11.731,0,2.1379,8,4.5 +19494,1,0.050114,3,0,0,2,5,,3,3,S M 1/E I 696,RAMP,1903610,0.116,0.166,0,1.202728,8,4.5 +1561,1,0.033935,4,0,0,2,5,,2,3,10 Mile,Rd,633409,11.731,11.765,0,0.81444,8.5,4.5 +275,1,0.01357,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,11.171,11.184,0,0.32567,5,5 +545,0,0.026987,1,1,0,2,5,,3,3,Oakland,Park,644903,0.341,0.368,0,0.64769,8,4.5 +1273,-1,0.019904,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,11.173,11.192,0,0.477703,5,5 +635,1,0.032403,2,0,0,2,5,,2,3,10 Mile,Rd,633409,11.819,11.851,0,0.777661,8.5,4.5 +1986,1,0.081488,2,0,0,2,3,,3,3,Main,St,644806,0,0.082,0,1.955722,5,5 +1001,0,0.219002,2,2,0,2,5,,2,3,Washington,,644804,0.108,0.327,0,5.256058,8.5,4.5 +1003,0,0.330197,2,2,0,2,3,,2,3,Main,,644806,0.133,0.463,0,7.924722,6,5 +1202,-1,0.08494,0,4,0,2,5,,2,3,10 Mile,Rd,644205,2.337,2.422,0,2.038566,8.5,4.5 +3310,0,0.123945,1,1,0,2,5,,2,3,Lincoln,,651908,1.764,1.888,0,2.974691,8.5,4.5 +28088,0,0.145886,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,3.501275,0.15,4 +1984,-1,0.028725,0,3,0,2,5,,2,3,Washington,,644804,0.023,0.052,0,0.689401,8.5,4.5 +19499,1,0.079241,3,0,0,2,3,,2,3,E M 1 Service Drive,,1903609,0.38,0.46,0,1.901781,6,5 +19496,1,0.066911,3,0,0,1,5,,2,3,S M 1/E I 696,RAMP,1903610,0,0.067,0,,8.5,4.5 +19500,1,0.051626,3,0,0,2,3,,2,3,E M 1 Service Drive,,1903609,0.329,0.38,0,1.23903,6,5 +432,-1,0.022738,0,1,0,2,5,,2,3,Washington,,644804,0,0.023,0,0.545701,8.5,4.5 +1682,-1,0.034442,0,4,0,2,5,,2,3,10 Mile,Rd,644205,2.302,2.337,0,0.826619,8.5,4.5 +19487,1,0.086974,2,0,0,2,7,,2,3,Washington,,1903704,0,0.087,0,2.087366,8.5,4.5 +19491,-1,0.050355,0,3,0,2,3,,2,3,W M 1 Service Drive,,1903703,0.37,0.42,0,1.208513,6,5 +19492,-1,0.04471,0,3,0,2,3,,2,3,W M 1 Service Drive,,1903703,0.325,0.37,0,1.073051,6,5 +1472,-1,0.0562,0,3,0,2,5,,2,3,Washington,,644804,0.052,0.108,0,1.348797,8.5,4.5 +540,0,0.191117,2,2,0,2,5,,2,3,Washington,,644804,0.327,0.518,0,4.586816,8.5,4.5 +3327,0,0.067478,1,1,0,2,5,,2,3,Lincoln,,651908,1.697,1.764,0,1.619461,8.5,4.5 +28428,0,0.039194,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,0.940648,0.15,4 +765,-1,0.069268,0,4,0,2,5,,3,3,10 Mile,Rd,644205,2.422,2.491,0,1.662426,8,4.5 +436,0,0.2013,2,2,0,2,3,,2,3,Main,,644806,0.48,0.681,0,4.831202,6,5 +3207,0,0.121789,1,1,0,2,5,,2,3,Lincoln,,651908,1.888,2.01,0,2.922946,8.5,4.5 +542,0,0.016623,2,2,0,2,3,,2,3,Main,,644806,0.463,0.48,0,0.398947,6,5 +2086,0,0.084694,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,0,0.085,0,2.03266,8,4.5 +2827,0,0.289951,1,1,0,2,5,,2,3,Lincoln,,651908,2.136,2.426,0,6.958814,8.5,4.5 +19711,-1,0.255574,0,4,0,1,1,,3,3,W I 696,,1904002,3.248,3.504,0,,0.58,7 +26858,0,0.388505,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.324122,0.15,4 +28434,0,0.285066,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.84159,0.15,4 +28435,0,0.354371,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.504906,0.15,4 +429,0,0.119414,1,1,0,2,5,,2,3,4th,St,644705,0.724,0.844,0,2.865939,8.5,4.5 +433,0,0.285125,1,1,0,2,5,,3,3,Washington,,644804,0.959,1.244,0,6.842989,8,4.5 +437,0,0.290206,2,2,1,2,3,,3,3,Main,,644806,1.114,1.405,0,6.964951,5,5 +2994,0,0.538793,1,1,0,2,5,,3,3,Gardenia,,671806,0,0.539,0,12.931038,8,4.5 +3312,0,0.287588,1,1,0,2,5,,3,3,Troy,,652306,0.441,0.729,0,6.902122,8,4.5 +20599,0,0.379669,2,2,0,2,4,,2,3,11 Mile,Rd,4400088,7.654,8.034,0,9.112058,8,4.5 +28406,0,0.441559,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.597427,0.15,4 +28409,0,0.292496,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.019905,0.15,4 +543,0,0.058568,2,2,0,2,3,,2,3,Main,,644806,0.939,0.997,0,1.405621,6,5 +658,0,0.062326,1,1,0,2,5,,2,3,6th,St,644706,0.462,0.525,0,1.495814,8.5,4.5 +659,0,0.109328,2,2,0,2,5,,2,3,Lafayette,,644803,0.579,0.688,0,2.623868,8.5,4.5 +1356,0,0.083056,1,1,1,2,5,,2,3,Washington,,644804,0.819,0.902,0,1.993334,8.5,4.5 +1864,0,0.062868,1,1,1,2,5,,2,3,4th,St,644705,0.542,0.605,0,1.508835,8.5,4.5 +36706,-1,0.062496,0,1,0,2,9,,2,3,7th,St,671703,0.122,0.184,0,1.499914,8.5,4.5 +2859,0,0.060015,1,1,0,2,5,,2,3,Center,,4415777,0.025,0.085,0,1.440348,8.5,4.5 +3148,0,0.05953,1,1,0,2,5,,2,3,Troy,,652306,0.265,0.324,0,1.428719,8.5,4.5 +3305,0,0.064024,1,1,0,2,5,,2,3,2nd,St,671706,0.056,0.12,0,1.536578,8.5,4.5 +3433,0,0.062787,1,1,0,2,5,,2,3,3rd,St,671705,0,0.063,0,1.506882,8.5,4.5 +3857,0,0.058778,1,1,0,2,5,,2,3,Williams,,681802,0.178,0.237,0,1.410676,8.5,4.5 +20144,0,0.063176,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.473,7.536,0,1.516225,8,4.5 +21134,1,0.103453,1,0,0,2,5,,2,3,Sherman,Dr,4408769,0.078,0.181,0,2.482874,8.5,4.5 +534,0,0.063725,1,1,1,2,5,,2,3,4th,St,644705,0.419,0.483,0,1.529389,8.5,4.5 +541,0,0.058947,1,1,0,2,5,,2,3,Washington,,644804,0.667,0.726,0,1.414725,8.5,4.5 +1585,0,0.062379,1,1,0,2,5,,2,3,6th,St,644706,0.339,0.401,0,1.497092,8.5,4.5 +1586,0,0.054547,1,1,1,2,5,,2,3,Lafayette,,644803,0.463,0.517,0,1.309135,8.5,4.5 +2780,0,0.061715,1,1,0,2,5,,2,3,7th,St,671703,0,0.062,0,1.481172,8.5,4.5 +21495,0,0.058259,1,1,0,2,5,,2,3,Center,,4413543,0.059,0.117,0,1.398204,8.5,4.5 +2084,0,0.057464,1,1,0,2,5,,2,3,Lafayette,,644803,0.405,0.463,0,1.379127,8.5,4.5 +1106,0,0.061739,1,1,1,2,5,,2,3,Lafayette,,644803,0.517,0.579,0,1.481739,8.5,4.5 +1002,0,0.057979,1,1,0,2,5,,2,3,Washington,,644804,0.609,0.667,0,1.391491,8.5,4.5 +1105,0,0.060959,1,1,0,2,5,,2,3,6th,St,644706,0.401,0.462,0,1.463021,8.5,4.5 +3205,-1,0.059912,0,1,0,2,5,,2,3,7th,St,671703,0.062,0.122,0,1.437876,8.5,4.5 +21496,1,0.058628,1,0,0,2,5,,2,3,Center,,4413543,0,0.059,0,1.407076,8.5,4.5 +302,0,0.059771,1,1,1,2,5,,2,3,4th,St,644705,0.483,0.542,0,1.434496,8.5,4.5 +2085,0,0.05865,1,1,0,2,5,,2,3,Washington,,644804,0.726,0.785,0,1.407603,8.5,4.5 +36707,0,0.059744,2,2,0,2,3,,2,3,Main,,644806,0.762,0.822,0,1.433845,6,5 +3434,0,0.060063,1,1,0,2,5,,2,3,5th,St,680804,0,0.06,0,1.441512,8.5,4.5 +1587,0,0.034681,1,1,1,2,5,,2,3,Washington,,644804,0.785,0.819,0,0.832355,8.5,4.5 +20539,0,0.090953,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.323,7.414,0,2.182883,8,4.5 +21135,0,0.077755,2,2,0,2,5,,2,3,Sherman,Dr,4408769,0,0.078,0,1.866116,8.5,4.5 +20787,0,0.011723,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.311,7.323,0,0.281347,8,4.5 +2469,-1,0.056248,0,3,0,2,5,,2,3,2nd,St,671706,0,0.056,0,1.349953,8.5,4.5 +2576,0,0.056032,1,1,0,2,5,,2,3,Center,,4415777,0.085,0.141,0,1.344761,8.5,4.5 +20346,0,0.059236,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.414,7.473,0,1.421665,8,4.5 +898,0,0.057113,1,1,1,2,5,,2,3,Washington,,644804,0.902,0.959,0,1.370713,8.5,4.5 +3208,-1,0.058298,0,1,0,2,5,,2,3,Center,,4415777,0.141,0.2,0,1.399158,8.5,4.5 +894,0,0.058558,1,1,0,2,5,,2,3,4th,St,644705,0.666,0.724,0,1.405394,8.5,4.5 +1476,0,0.057934,2,2,0,2,3,,2,3,Main,,644806,0.822,0.88,0,1.39041,6,5 +1688,0,0.059512,1,1,0,2,5,,2,3,6th,St,644706,0.586,0.646,0,1.428297,8.5,4.5 +2463,0,0.060207,1,1,0,2,5,,2,3,5th,St,4415779,0.105,0.165,0,1.444975,8.5,4.5 +2900,0,0.059761,1,1,0,2,5,,2,3,7th,St,4416278,0.031,0.091,0,1.434257,8.5,4.5 +3263,0,0.056968,1,1,0,2,5,,2,3,Troy,,652306,0.149,0.206,0,1.367227,8.5,4.5 +3859,0,0.057545,1,1,0,2,5,,2,3,Williams,,681802,0.062,0.119,0,1.38107,8.5,4.5 +17,0,0.061749,1,1,0,2,5,,2,3,6th,St,644706,0.525,0.586,0,1.481979,8.5,4.5 +3860,0,0.061653,1,1,0,2,5,,2,3,Williams,,681802,0,0.062,0,1.479681,8.5,4.5 +1004,0,0.058751,2,2,0,2,3,,2,3,Main,,644806,0.88,0.939,0,1.410018,6,5 +1353,0,0.060808,1,1,0,2,5,,2,3,4th,St,644705,0.605,0.666,0,1.459402,8.5,4.5 +2740,0,0.060901,1,1,0,2,5,,2,3,5th,St,4415779,0.044,0.105,0,1.461633,8.5,4.5 +3858,0,0.059305,1,1,0,2,5,,2,3,Williams,,681802,0.119,0.178,0,1.423319,8.5,4.5 +2960,0,0.061867,1,1,0,2,5,,2,3,Troy,,652306,0.087,0.149,0,1.484798,8.5,4.5 +3450,0,0.058814,1,1,0,2,5,,2,3,Troy,,652306,0.206,0.265,0,1.411526,8.5,4.5 +2507,0,0.117065,1,1,0,2,5,,2,3,Troy,,652306,0.324,0.441,0,2.809552,8.5,4.5 +2751,0,0.058783,1,1,0,2,5,,2,3,3rd,St,671705,0.123,0.182,0,1.410781,8.5,4.5 +20839,0,0.118123,2,2,1,2,4,,2,3,11 Mile,Rd,4400088,7.536,7.654,0,2.834943,8,4.5 +1358,0,0.059306,2,2,0,2,3,,2,3,Main,,644806,0.997,1.057,0,1.423346,6,5 +3024,0,0.06071,1,1,0,2,5,,2,3,3rd,St,671705,0.063,0.123,0,1.457052,8.5,4.5 +900,0,0.057717,2,2,0,2,3,,2,3,Main,,644806,1.057,1.114,0,1.3852,6,5 +1477,0,0.075187,2,2,1,2,3,,3,3,Main,,644806,1.697,1.772,0,1.804482,5,5 +1985,0,0.286617,1,1,0,2,5,,3,3,Washington,,644804,1.244,1.531,0,6.87881,8,4.5 +1989,0,0.292522,2,2,1,2,3,,3,3,Main,,644806,1.405,1.697,0,7.020524,5,5 +3358,0,0.11796,1,1,0,2,5,,3,3,Catalpa,Dr,656010,3.672,3.79,0,2.831039,8,4.5 +1473,0,0.111016,1,1,0,2,5,,3,3,Washington,,644804,1.531,1.642,0,2.664388,8,4.5 +19907,0,0.118205,1,1,0,2,5,,3,3,Farnum,,4407473,0,0.118,0,2.836922,8,4.5 +29666,0,0.3351,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,8.042401,0.15,4 +28425,0,0.053166,1,1,0,2,99,,2,3,Centroid Connector,,0,0,0,0,1.275979,0.15,4 +20394,0,0.028047,2,2,0,2,4,,2,3,11 Mile,Rd,4400088,8.034,8.062,0,0.673118,8,4.5 +28407,0,0.255969,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.143262,0.15,4 +2737,0,0.01063,1,1,0,2,5,,3,3,Gardenia,,671806,0.539,0.549,0,0.255114,8,4.5 +140,0,0.469415,2,2,0,2,3,,3,3,13 Mile,Rd,607408,3.028,3.497,0,11.26595,5,5 +535,0,0.349707,2,2,0,2,5,,3,3,Normandy,Rd,644402,2.624,2.973,0,8.392967,8,4.5 +1868,0,0.244862,2,2,0,2,4,,3,3,Main,,644806,2.888,3.133,0,5.876698,6,4.5 +2516,0,0.311339,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.673,18.984,0,7.472141,5,5 +2579,0,0.284805,2,2,0,2,3,,3,3,Crooks,Rd,659810,0.177,0.461,0,6.835327,5,5 +3555,0,0.322104,2,2,0,2,3,,3,3,Crooks,Rd,659810,1.376,1.698,0,7.730505,5,5 +21890,0,0.252974,2,2,0,2,3,,3,3,Rochester,Rd,4413538,1.217,1.47,0,6.07138,5,5 +25376,0,0.427213,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.253111,0.15,4 +28016,0,0.475273,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.406556,0.15,4 +28044,0,0.484222,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.621328,0.15,4 +28046,0,0.510495,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.251872,0.15,4 +28318,0,0.271464,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.515127,0.15,4 +28437,0,0.614097,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.738321,0.15,4 +29901,0,0.403048,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.673164,0.15,4 +2536,0,0.232375,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.274,18.506,0,5.577,5,5 +2603,0,0.432934,2,2,0,2,3,,3,3,Crooks,Rd,659810,0.461,0.894,0,10.39041,5,5 +3564,0,0.251327,2,2,0,2,3,,3,3,Crooks,Rd,659810,0.894,1.145,0,6.03185,5,5 +28013,0,0.402811,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.667475,0.15,4 +3246,0,0.035087,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.134,18.169,0,0.842091,5,5 +28024,0,0.269073,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.457751,0.15,4 +2944,0,0.105184,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.169,18.274,0,2.52441,5,5 +2598,0,0.230338,2,2,0,2,3,,3,3,Crooks,Rd,659810,1.145,1.376,0,5.52811,5,5 +28015,0,0.286307,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.871357,0.15,4 +3509,0,0.166496,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.506,18.673,0,3.995894,5,5 +28017,0,0.16858,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.045916,0.15,4 +139,0,0.124536,2,2,0,2,3,,3,3,13 Mile,Rd,607408,3.497,3.622,0,2.988855,5,5 +997,0,0.635646,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.988,2.624,0,15.255501,8,4.5 +3235,0,0.227692,2,2,1,2,3,,3,3,Crooks,Rd,659810,1.969,2.196,0,5.464609,5,5 +28039,0,0.507594,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.182266,0.15,4 +28440,0,0.272923,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.550145,0.15,4 +28441,0,0.28847,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.923282,0.15,4 +138,0,0.396919,2,2,0,2,3,,3,3,13 Mile,Rd,607408,3.622,4.018,0,9.526063,5,5 +3242,0,0.221642,2,2,0,2,3,,3,3,Crooks,Rd,659810,1.698,1.919,0,5.319416,5,5 +2937,0,0.0495,2,2,1,2,3,,3,3,Crooks,Rd,659810,1.919,1.969,0,1.188005,5,5 +28005,0,0.30678,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.362715,0.15,4 +307,0,0.190594,1,1,0,2,5,GRV,3,3,Girard,,645301,0.229,0.419,0,4.574251,7,4.5 +1478,0,0.241033,2,2,0,2,4,,3,3,Main,,644806,2.354,2.595,0,5.784789,6,4.5 +2844,0,0.444963,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,19.076,19.521,0,10.679109,5,5 +21891,0,0.131392,2,2,0,2,3,,3,3,Rochester,Rd,4413538,1.085,1.217,0,3.153405,5,5 +21895,0,0.149065,2,2,0,2,3,,3,3,Rochester,Rd,4413538,0.672,0.821,0,3.577572,5,5 +28018,0,0.44354,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,10.644953,0.15,4 +28019,0,0.15911,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.818646,0.15,4 +28443,0,0.146489,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.515734,0.15,4 +3487,0,0.092516,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,18.984,19.076,0,2.220392,5,5 +21897,0,0.109968,2,2,0,2,3,,3,3,Rochester,Rd,4413538,0.32,0.43,0,2.639238,5,5 +1990,0,0.239132,2,2,0,2,4,,3,3,Main,,644806,2.115,2.354,0,5.739159,6,4.5 +21896,0,0.24142,2,2,0,2,3,,3,3,Rochester,Rd,4413538,0.43,0.672,0,5.794088,5,5 +769,0,0.228886,1,1,0,2,5,,3,3,Girard,,645301,0,0.229,0,5.49326,8,4.5 +1005,0,0.17424,2,2,0,2,4,,3,3,Main,,644806,2.595,2.769,0,4.181768,6,4.5 +21894,0,0.264835,2,2,0,2,3,,3,3,Rochester,Rd,4413538,0.821,1.085,0,6.356041,5,5 +544,0,0.101406,2,2,0,2,4,,3,3,Main,,644806,2.769,2.871,0,2.433732,6,4.5 +305,0,0.017465,2,2,0,2,4,,3,3,Main,,644806,2.871,2.888,0,0.419155,6,4.5 +28415,0,0.243317,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.839611,0.15,4 +142,0,0.135163,2,2,0,2,3,,3,3,13 Mile,Rd,607408,2.718,2.853,0,3.243914,5,5 +440,0,0.120123,2,2,0,2,4,,3,3,Main,,644806,3.514,3.634,0,2.882961,6,4.5 +21888,0,0.389072,2,2,0,2,3,,3,3,Rochester,Rd,4413538,1.47,1.859,0,9.337731,5,5 +27977,0,0.321035,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.704835,0.15,4 +28012,0,0.233721,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.609313,0.15,4 +141,0,0.174818,2,2,0,2,3,,3,3,13 Mile,Rd,607408,2.853,3.028,0,4.195639,5,5 +1360,0,0.220481,2,2,0,2,4,,3,3,Main,,644806,3.133,3.353,0,5.291546,6,4.5 +25377,0,0.290188,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.964517,0.15,4 +28438,0,0.14689,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.52535,0.15,4 +902,0,0.160346,2,2,0,2,4,,3,3,Main,,644806,3.353,3.514,0,3.848301,6,4.5 +1359,0,0.267617,2,2,0,2,4,,3,3,Main,,644806,3.634,3.901,0,6.422818,6,4.5 +25364,0,0.240664,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.775941,0.15,4 +901,0,0.01422,2,2,1,2,4,,3,3,Main,,644806,3.901,3.916,0,0.341277,6,4.5 +21885,0,0.172259,2,2,0,2,3,,3,3,Rochester,Rd,4413538,2.052,2.224,0,4.134225,5,5 +21887,0,0.193164,2,2,0,2,3,,3,3,Rochester,Rd,4413538,1.859,2.052,0,4.635928,5,5 +654,-1,0.221539,0,2,0,2,5,,3,3,10 Mile,Rd,644205,3.781,4.002,0,5.316929,8,4.5 +1007,0,0.263392,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.097,1.36,0,6.321398,8,4.5 +1187,1,0.218196,2,0,0,2,5,,3,3,10 Mile,Rd,633409,13.119,13.337,0,5.236711,8,4.5 +1204,1,0.215978,2,0,0,2,5,DV2,3,3,4th,St,644705,1.842,2.057,0,5.183472,8,4.5 +1364,-1,0.604419,0,3,0,1,1,,3,3,S I 75,,646106,3.041,3.645,0,,0.58,7 +1871,-1,0.360864,0,4,0,1,1,,3,3,S I 75,,646106,2.68,3.041,0,,0.58,7 +2298,1,0.435903,3,0,0,1,1,,3,3,N I 75,,647308,3.131,3.567,0,,0.58,7 +2299,1,0.469184,4,0,0,1,1,,3,3,N I 75,,647308,2.662,3.131,0,,0.58,7 +2314,1,0.102345,2,0,0,2,4,,3,3,Stephenson,Hwy,646902,3.463,3.566,0,2.45627,6,4.5 +2316,1,0.435194,2,0,0,2,5,,3,3,Stephenson,Hwy,646902,2.944,3.379,0,10.444654,8,4.5 +2372,0,0.162525,2,2,1,2,4,,3,3,John R,Rd,646806,2.52,2.682,0,3.900605,6,4.5 +2393,-1,0.196903,0,3,0,2,5,,3,3,Stephenson,Hwy,646702,3.281,3.477,0,4.725682,8,4.5 +2396,-1,0.289719,0,2,0,2,5,,3,3,Stephenson,Hwy,646702,2.957,3.247,0,6.953254,8,4.5 +2957,1,0.112825,2,0,0,1,1,RFF,3,3,I 75/W I 696,RAMP,652609,0.352,0.465,0,,0.58,7 +3345,0,0.269591,1,1,0,2,5,,3,3,Gardenia,,671806,1.441,1.711,0,6.470178,8,4.5 +3370,0,0.162847,1,1,0,2,5,,3,3,Lincoln,,651908,3.248,3.41,0,3.908333,8,4.5 +3420,0,0.300971,2,2,0,2,4,,3,3,Campbell,Rd,652509,0.503,0.804,0,7.223315,6,4.5 +4891,1,0.143573,2,0,0,1,1,RFF,3,3,E I 696/I 75,RAMP,710402,0,0.144,0,,0.58,7 +19467,1,0.584823,4,0,0,1,1,,3,3,E I 696,,1903903,4.301,4.885,0,,0.58,7 +19703,-1,0.585018,0,4,0,1,1,,3,3,W I 696,,1904002,4.3,4.885,0,,0.58,7 +20247,0,0.050842,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.943,8.994,0,1.220215,6,4.5 +20656,-1,0.212909,0,2,0,2,5,DV2,3,3,4th,St,4404212,0.998,1.21,0,5.109825,8,4.5 +28412,0,0.607212,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.57309,0.15,4 +28413,0,0.246128,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.907077,0.15,4 +28422,0,0.484015,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.61635,0.15,4 +28447,0,0.096455,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.314916,0.15,4 +28451,0,0.165496,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.971898,0.15,4 +29659,0,0.232348,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.57636,0.15,4 +29664,0,0.330475,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.931407,0.15,4 +10,-1,0.210071,0,2,0,2,5,,3,3,10 Mile,Rd,644205,3.234,3.444,0,5.041698,8,4.5 +441,0,0.352636,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,0.499,0.852,0,8.463275,8,4.5 +468,1,0.183843,2,0,0,2,5,,3,3,10 Mile,Rd,633409,12.658,12.841,0,4.412238,8,4.5 +762,0,0.505831,1,1,1,2,4,,3,3,Hilton,,642306,1.49,1.996,0,12.139954,6,4.5 +2660,0,0.258768,1,1,0,2,5,,3,3,Lincoln,,651908,2.652,2.911,0,6.210427,8,4.5 +19653,1,0.174947,1,0,0,1,1,RON,3,3,Bermuda Mohawk/E I 696,RAMP,1904107,0,0.175,0,,1.09,4 +19662,1,0.201521,1,0,0,1,1,ROF,3,3,W I 696/Bermuda Mohawk,RAMP,1904103,0,0.202,0,,2.24,5 +28398,0,0.260968,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.263222,0.15,4 +29972,0,0.536287,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.870878,0.15,4 +28444,0,0.08128,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.95072,0.15,4 +653,-1,0.090303,0,3,0,2,5,,3,3,10 Mile,Rd,644205,3.144,3.234,0,2.167263,8,4.5 +927,1,0.077998,3,0,0,2,5,,3,3,10 Mile,Rd,633409,12.58,12.658,0,1.871942,8,4.5 +1481,0,0.095479,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.002,1.097,0,2.291495,8,4.5 +27424,0,0.132762,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.186298,0.15,4 +1992,0,0.149715,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,0.852,1.002,0,3.593152,8,4.5 +1658,1,0.277661,2,0,0,2,5,,3,3,10 Mile,Rd,633409,12.841,13.119,0,6.663869,8,4.5 +1683,-1,0.33693,0,2,0,2,5,,3,3,10 Mile,Rd,644205,3.444,3.781,0,8.086313,8,4.5 +2512,0,0.33693,1,1,0,2,5,,3,3,Lincoln,,651908,2.911,3.248,0,8.086316,8,4.5 +3114,0,0.299119,2,2,0,2,4,,3,3,Campbell,Rd,652509,0.051,0.35,0,7.178844,6,4.5 +19468,1,0.333383,4,0,0,1,1,,3,3,E I 696,,1903903,3.967,4.301,0,,0.58,7 +19708,-1,0.328155,0,4,0,1,1,,3,3,W I 696,,1904002,3.972,4.3,0,,0.58,7 +3402,0,0.051087,2,2,0,2,4,,3,3,Campbell,Rd,652509,0,0.051,0,1.226082,6,4.5 +3316,0,0.152854,2,2,0,2,4,,3,3,Campbell,Rd,652509,0.35,0.503,0,3.668489,6,4.5 +1687,1,0.219291,2,0,0,2,5,DV2,3,3,4th,St,644705,1.622,1.842,0,5.262993,8,4.5 +2392,-1,0.11243,0,3,0,2,4,,3,3,Stephenson,Hwy,646702,3.477,3.59,0,2.698316,6,4.5 +2962,0,0.351441,1,1,0,2,5,,3,3,Gardenia,,671806,1.038,1.39,0,8.434587,8,4.5 +3071,0,0.285569,2,2,0,2,4,,3,3,Campbell,Rd,652509,1.012,1.297,0,6.853666,6,4.5 +20652,0,0.219058,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.55,8.769,0,5.257388,6,4.5 +20891,-1,0.219853,0,2,0,2,5,DV2,3,3,4th,St,4404212,0.778,0.998,0,5.276471,8,4.5 +16,1,0.258294,2,0,0,2,5,DV2,3,3,4th,St,644705,1.364,1.622,0,6.199061,8,4.5 +3472,0,0.191177,2,2,0,2,4,,3,3,Campbell,Rd,652509,0.821,1.012,0,4.588247,6,4.5 +20196,-1,0.256464,0,2,0,2,5,DV2,3,3,4th,St,4404212,0.521,0.778,0,6.155138,8,4.5 +20887,0,0.257921,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.293,8.55,0,6.190102,6,4.5 +29665,0,0.255136,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.123263,0.15,4 +28411,0,0.046956,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.126934,0.15,4 +28424,0,0.061668,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.480026,0.15,4 +2624,0,0.016741,2,2,0,2,4,,3,3,Campbell,Rd,652509,0.804,0.821,0,0.401794,6,4.5 +2802,0,0.278721,2,2,0,2,4,,3,3,Campbell,Rd,652509,1.297,1.576,0,6.68931,6,4.5 +28410,0,0.36333,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.719928,0.15,4 +28448,0,0.159222,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.82133,0.15,4 +29879,0,0.174188,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.180502,0.15,4 +20434,0,0.173683,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.769,8.943,0,4.168395,6,4.5 +2313,1,0.442428,2,0,0,2,4,,3,3,Stephenson,Hwy,646902,3.566,4.008,0,10.618274,6,4.5 +2391,-1,0.432664,0,3,0,2,4,,3,3,Stephenson,Hwy,646702,3.59,4.022,0,10.38393,6,4.5 +4882,1,0.153757,1,0,0,1,1,ROF,3,3,S I 75/11 Mile,RAMP,710404,0,0.154,0,,2.24,5 +4517,1,0.09109,1,0,0,1,1,RON,3,3,11 Mile/N I 75,RAMP,710503,0,0.091,0,,1.09,4 +2702,0,0.05186,2,2,0,2,5,,3,3,Gardenia,,671806,1.39,1.441,0,1.24465,8,4.5 +66,0,0.203083,1,1,0,2,5,,3,3,10 Mile,Rd,607703,0,0.203,0,4.874003,8,4.5 +73,1,0.215783,2,0,0,2,5,,3,3,I 696 Service,Dr,607610,0.082,0.297,0,5.178803,8,4.5 +74,1,0.081694,2,0,0,2,5,,3,3,I 75 Service,Dr,607610,0,0.082,0,1.96065,8,4.5 +81,-1,0.248674,0,3,0,2,5,,3,3,I 696 Service,Dr,607607,0,0.249,0,5.968176,8,4.5 +84,1,0.150014,2,0,0,1,1,RFF,3,3,W I 696/I 75,RAMP,607606,0,0.15,0,,0.58,7 +308,-1,0.564777,0,3,0,1,1,,3,3,S I 75,,646106,2.116,2.68,0,,0.58,7 +1869,0,0.044478,2,2,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.602,1.647,0,1.067463,8,4.5 +2300,1,0.581797,3,0,0,1,1,,3,3,N I 75,,647308,2.08,2.662,0,,0.58,7 +2319,1,0.247616,2,0,0,2,5,,3,3,N Chrysler/I 75 Service Drive,Ramp,646902,2.274,2.522,0,5.942793,8,4.5 +2377,0,0.256422,2,2,0,2,4,,3,3,John R,Rd,646806,1.76,2.017,0,6.154128,6,4.5 +2399,-1,0.248956,0,2,0,2,5,,3,3,S Chrysler/S Stephenson,Ramp,646702,2.353,2.602,0,5.974951,8,4.5 +2569,0,0.298692,1,1,0,2,5,,3,3,Lincoln,,651908,3.584,3.883,0,7.168606,8,4.5 +4522,1,0.145473,2,0,0,1,1,RFF,3,3,I 75/E I 696,RAMP,710501,0.324,0.469,0,,0.58,7 +4862,1,0.156025,1,0,0,1,1,RFS,3,3,N I 75/E I 696,RAMP,710501,0.168,0.324,0,,0.22,6 +4889,1,0.219125,1,0,0,1,1,RFS,3,3,E I 696/S I 75,RAMP,710402,0.144,0.363,0,,0.22,6 +19390,1,0.342506,1,0,0,1,1,RFS,3,3,N I 75/W I 696,RAMP,1738907,0,0.342,0,,0.22,6 +19392,1,0.328526,1,0,0,1,1,RFS,3,3,W I 696/S I 75,RAMP,1738903,0,0.328,0,,0.22,6 +26164,0,0.260679,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.256305,0.15,4 +546,0,0.183237,1,1,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.36,1.544,0,4.397699,8,4.5 +2321,1,0.333697,2,0,0,2,5,,3,3,Chrysler,Dr,646902,1.814,2.148,0,8.00872,8,4.5 +2400,-1,0.211832,0,2,0,2,5,,3,3,Chrysler,Dr,646702,2.142,2.353,0,5.083957,8,4.5 +2401,-1,0.317782,0,3,0,2,5,,3,3,Chrysler,Dr,646702,1.824,2.142,0,7.626766,8,4.5 +306,0,0.058531,2,2,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.544,1.602,0,1.404755,8,4.5 +2320,1,0.126206,3,0,0,2,5,,3,3,Chrysler,Dr,646902,2.148,2.274,0,3.028941,8,4.5 +4526,1,0.167898,2,0,0,1,1,RFF,3,3,N I 75/I 696,RAMP,710501,0,0.168,0,,0.58,7 +4538,1,0.09892,1,0,0,1,1,RFF,3,3,I 696/S I 75,RAMP,710402,0.363,0.462,0,,0.58,7 +2389,1,0.058073,1,0,0,2,5,,3,3,Service Drive Crossover,,646708,0,0.058,0,1.393751,8,4.5 +82,1,0.124473,2,0,0,1,1,RFF,3,3,I 696/N I 75,RAMP,607606,0.332,0.457,0,,0.58,7 +2318,1,0.178372,3,0,0,2,5,,3,3,I 75 Service Drive,,646902,2.522,2.7,0,4.280924,8,4.5 +2398,-1,0.102986,0,2,0,2,5,,3,3,Stephenson,Hwy,646702,2.602,2.705,0,2.471652,8,4.5 +2508,0,0.118251,1,1,0,2,5,,3,3,Lincoln,,651908,3.466,3.584,0,2.838033,8,4.5 +3496,1,0.151421,2,0,0,1,1,RFF,3,3,S I 75/I 696,RAMP,652609,0,0.151,0,,0.58,7 +19391,1,0.305606,2,0,0,1,1,RFS,3,3,S I 75/E I 696,RAMP,1738904,0,0.306,0,,0.22,6 +19393,1,0.322663,1,0,0,1,1,RFS,3,3,E I 696/N I 75,RAMP,1738902,0,0.323,0,,0.22,6 +2554,1,0.200552,2,0,0,1,1,RFS,3,3,S I 75/W I 696,RAMP,652609,0.151,0.352,0,,0.22,6 +2317,1,0.244062,2,0,0,2,5,,3,3,Stephenson,Hwy,646902,2.7,2.944,0,5.857483,8,4.5 +2397,-1,0.252025,0,2,0,2,5,,3,3,Stephenson,Hwy,646702,2.705,2.957,0,6.048597,8,4.5 +2564,0,0.055198,1,1,0,2,5,,3,3,Lincoln,,651908,3.41,3.466,0,1.324746,8,4.5 +19510,-1,0.060035,0,1,0,2,5,,3,3,Service Drive Crossover,,1890902,0,0.06,0,1.440848,8,4.5 +83,1,0.182172,2,0,0,1,1,RFS,3,3,W I 696/N I 75,RAMP,607606,0.15,0.332,0,,0.22,6 +2378,0,0.257283,2,2,0,2,4,,3,3,John R,Rd,646806,1.503,1.76,0,6.174792,6,4.5 +29668,0,0.212091,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.090179,0.15,4 +1361,0,0.180758,2,2,0,2,5,,3,3,Woodward Heights,Blvd,644905,1.647,1.827,0,4.338185,8,4.5 +28426,0,0.113139,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.715328,0.15,4 +2374,0,0.207355,2,2,1,2,4,,3,3,John R,Rd,646806,2.11,2.318,0,4.976531,6,4.5 +2376,0,0.036445,2,2,0,2,4,,3,3,John R,Rd,646806,2.017,2.053,0,0.874674,6,4.5 +2375,0,0.057076,2,2,0,2,4,,3,3,John R,Rd,646806,2.053,2.11,0,1.369826,6,4.5 +2373,0,0.202308,2,2,1,2,4,,3,3,John R,Rd,646806,2.318,2.52,0,4.855402,6,4.5 +2370,0,0.319035,2,2,1,2,4,,3,3,John R,Rd,646806,3.032,3.351,0,7.656845,6,4.5 +3028,0,0.30689,1,1,0,2,5,,3,3,Gardenia,,671806,1.711,2.018,0,7.365368,8,4.5 +20720,0,0.304494,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,9.226,9.53,0,7.307853,6,4.5 +28397,0,0.328932,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.894379,0.15,4 +28404,0,0.484356,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.624549,0.15,4 +28445,0,0.24438,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.865116,0.15,4 +2394,-1,0.015735,0,2,0,2,5,,3,3,Stephenson,Hwy,646702,3.265,3.281,0,0.37764,8,4.5 +4859,1,0.159503,1,0,0,1,1,ROF,3,3,N I 75/11 Mile,RAMP,710502,0,0.159,0,,2.24,5 +19898,0,0.23174,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,8.994,9.226,0,5.561765,6,4.5 +28450,0,0.469495,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.267874,0.15,4 +3864,1,0.112606,1,0,0,1,1,RON,3,3,11 Mile/S I 75,RAMP,710403,0,0.113,0,,1.09,4 +2395,-1,0.018141,0,2,0,2,5,,3,3,Stephenson,Hwy,646702,3.247,3.265,0,0.435387,8,4.5 +2315,1,0.084377,2,0,0,2,5,,3,3,Stephenson,Hwy,646902,3.379,3.463,0,2.025052,8,4.5 +28396,0,0.042255,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.014108,0.15,4 +2371,0,0.34993,2,2,1,2,4,,3,3,John R,Rd,646806,2.682,3.032,0,8.398328,6,4.5 +20484,0,0.281886,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,9.53,9.812,0,6.765256,6,4.5 +2369,0,0.176438,2,2,1,2,4,,3,3,John R,Rd,646806,3.351,3.527,0,4.234521,6,4.5 +149,0,0.408901,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.281,1.69,0,9.813635,5,5 +444,-1,0.259888,0,3,0,1,1,,3,3,S I 75,,646106,4.158,4.418,0,,0.58,7 +660,-1,1.412016,0,3,0,1,1,,3,3,S I 75,,646106,4.698,6.11,0,,0.58,7 +2294,1,1.645726,3,0,0,1,1,,3,3,N I 75,,647308,4.509,6.154,0,,0.58,7 +2366,0,0.49618,2,2,1,2,4,,3,3,John R,Rd,646806,4.55,5.046,0,11.908309,6,4.5 +2539,1,0.328365,1,0,0,1,1,ROF,3,3,S I 75/12 Mile,RAMP,664209,0,0.328,0,,2.24,5 +2869,0,0.01904,3,3,0,2,3,,3,3,12 Mile,Rd,4462980,20.449,20.468,0,0.456949,5,5 +3031,1,0.483665,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,0.79,1.273,0,11.607971,6,4.5 +3186,1,0.168292,1,0,0,1,1,RON,3,3,W 12 Mile/S I 75,RAMP,664210,0,0.168,0,,1.09,4 +3261,0,0.443231,2,2,1,2,4,,3,3,Campbell,Rd,652509,2.579,3.022,0,10.637536,6,4.5 +20846,-1,0.481141,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406809,0.543,1.024,0,11.547393,6,4.5 +21493,1,0.213076,1,0,0,1,1,RON,3,3,E 12 Mile/S I 75,RAMP,4413584,0,0.213,0,,1.09,4 +27565,0,0.529544,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.709059,0.15,4 +28453,0,0.527923,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.670142,0.15,4 +2892,0,0.417072,2,2,1,2,4,,3,3,Campbell,Rd,652509,1.975,2.392,0,10.009724,6,4.5 +3272,0,0.127589,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,20.002,20.13,0,3.062141,5,5 +3448,1,0.540846,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,0.249,0.79,0,12.980301,6,4.5 +20151,-1,0.542759,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406809,0,0.543,0,13.02621,6,4.5 +28042,0,0.287073,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.889755,0.15,4 +28439,0,0.543866,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.052791,0.15,4 +3167,0,0.167692,2,2,0,2,4,,3,3,Campbell,Rd,652509,1.808,1.975,0,4.024617,6,4.5 +3583,0,0.230698,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,19.772,20.002,0,5.536747,5,5 +28414,0,0.32682,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.843668,0.15,4 +1362,0,0.208618,1,1,0,2,5,,3,3,Girard,,645301,0.816,1.025,0,5.006842,8,4.5 +3458,0,0.186946,2,2,1,2,4,,3,3,Campbell,Rd,652509,2.392,2.579,0,4.486708,6,4.5 +2759,0,0.215869,2,2,1,2,4,,3,3,Stephenson,Hwy,680107,0,0.216,0,5.180852,6,4.5 +2976,0,0.22365,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,20.13,20.353,0,5.367595,5,5 +2476,0,0.033149,2,2,1,2,4,,3,3,Stephenson,Hwy,680107,0.216,0.249,0,0.795586,6,4.5 +2886,0,0.045589,3,3,0,2,3,,3,3,12 Mile,Rd,4462980,20.353,20.399,0,1.094141,5,5 +2610,0,0.027961,3,3,0,2,3,,3,3,12 Mile,Rd,4462980,20.399,20.427,0,0.671068,5,5 +3513,1,0.030712,1,0,0,1,1,ROF,3,3,S I 75/W 12 Mile,RAMP,664209,0.328,0.359,0,,2.24,5 +3571,0,0.022421,3,3,0,2,3,,3,3,12 Mile,Rd,4462980,20.427,20.449,0,0.538109,5,5 +37929,1,0.020846,1,0,0,1,1,ROF,3,3,S I 75/E 12 Mile,RAMP,4416470,0,0.021,0,,2.24,5 +28442,0,0.092589,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.222133,0.15,4 +28454,0,0.078493,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.883831,0.15,4 +145,0,0.107205,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.911,2.018,0,2.572917,5,5 +2756,1,0.543584,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,1.273,1.817,0,13.046009,6,4.5 +3352,0,0.567155,2,2,0,2,4,,3,3,Campbell,Rd,652509,3.022,3.589,0,13.611727,6,4.5 +20606,-1,0.544358,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406809,1.024,1.568,0,13.064582,6,4.5 +27969,0,0.289897,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.957525,0.15,4 +27975,0,0.501382,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.033164,0.15,4 +28290,0,0.482221,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.573312,0.15,4 +144,0,0.269058,2,2,1,2,3,,3,3,13 Mile,Rd,607408,2.018,2.287,0,6.45738,5,5 +27988,0,0.291812,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.003478,0.15,4 +147,0,0.089953,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.708,1.798,0,2.158871,5,5 +146,0,0.112884,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.798,1.911,0,2.709207,5,5 +148,0,0.017846,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.69,1.708,0,0.428308,5,5 +27976,0,0.077996,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.871893,0.15,4 +28287,0,0.085954,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.062904,0.15,4 +1107,-1,0.27999,0,3,0,1,1,,3,3,S I 75,,646106,4.418,4.698,0,,0.58,7 +2367,0,0.56105,2,2,1,2,4,,3,3,John R,Rd,646806,3.989,4.55,0,13.465207,6,4.5 +3236,0,0.280726,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,20.706,20.987,0,6.737431,5,5 +28402,0,0.530301,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.727231,0.15,4 +28452,0,0.228914,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.493924,0.15,4 +2295,1,0.170814,3,0,0,1,1,,3,3,N I 75,,647308,4.338,4.509,0,,0.58,7 +2883,1,0.250286,1,0,0,1,1,ROF,3,3,N I 75/12 Mile,RAMP,664304,0,0.25,0,,2.24,5 +3512,1,0.188382,1,0,0,1,1,RON,3,3,E 12 Mile/N I 75,RAMP,664302,0,0.188,0,,1.09,4 +3544,0,0.076543,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,20.63,20.706,0,1.837024,5,5 +2296,1,0.188624,3,0,0,1,1,,3,3,N I 75,,647308,4.149,4.338,0,,0.58,7 +2589,0,0.106963,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,20.468,20.575,0,2.567102,5,5 +3183,1,0.151578,1,0,0,1,1,RON,3,3,W 12 Mile/N I 75,RAMP,664303,0,0.152,0,,1.09,4 +2531,1,0.020182,1,0,0,1,1,ROF,3,3,N I 75/W 12 Mile,RAMP,664304,0.25,0.27,0,,2.24,5 +2583,0,0.01507,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,20.615,20.63,0,0.361686,5,5 +3548,0,0.039135,2,2,0,2,3,,3,3,12 Mile,Rd,4462980,20.575,20.615,0,0.939242,5,5 +20199,1,0.023577,1,0,0,1,1,ROF,3,3,N I 75/E 12 Mile,RAMP,4406923,0,0.024,0,,2.24,5 +2577,0,0.280072,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,20.987,21.267,0,6.721736,5,5 +27564,0,0.244776,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.874618,0.15,4 +28312,0,0.275664,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.61593,0.15,4 +150,0,0.248794,2,2,1,2,3,,3,3,13 Mile,Rd,607408,1.033,1.281,0,5.97105,5,5 +2252,1,0.243886,2,0,0,2,5,DV2,3,3,Whitcomb,,647603,0,0.244,0,5.853257,8,4.5 +2365,0,0.330744,2,2,1,2,4,,3,3,John R,Rd,646806,5.046,5.377,0,7.937847,6,4.5 +20248,-1,0.24358,0,2,0,2,5,DV2,3,3,Whitcomb,,4400514,0,0.244,0,5.845924,8,4.5 +27970,0,0.359568,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.629622,0.15,4 +27971,0,0.261824,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.283768,0.15,4 +27974,0,0.17195,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.1268,0.15,4 +2630,0,0.150306,1,1,1,2,5,,3,3,Concord,Dr,658204,0.091,0.241,0,3.607353,8,4.5 +3602,0,0.091141,1,1,1,2,5,,3,3,Whitcomb,,658204,0,0.091,0,2.187392,8,4.5 +25093,0,0.245442,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.890604,0.15,4 +27561,0,0.164879,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.957092,0.15,4 +27968,0,0.212028,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.088677,0.15,4 +2251,1,0.252948,2,0,0,2,5,DV2,3,3,Whitcomb,,647603,0.244,0.497,0,6.070752,8,4.5 +2362,0,0.304996,2,2,1,2,4,,3,3,John R,Rd,646806,5.549,5.854,0,7.319896,6,4.5 +19899,-1,0.253482,0,2,0,2,5,DV2,3,3,Whitcomb,,4400514,0.244,0.497,0,6.083577,8,4.5 +25096,0,0.280937,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.742488,0.15,4 +27560,0,0.261407,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.273767,0.15,4 +29968,0,0.253255,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.078112,0.15,4 +2364,0,0.16244,2,2,1,2,4,,3,3,John R,Rd,646806,5.377,5.539,0,3.898553,6,4.5 +2363,0,0.009251,2,2,1,2,4,,3,3,John R,Rd,646806,5.539,5.549,0,0.222013,6,4.5 +159,1,0.319685,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,3.448,3.953,0,7.672441,5,5 +314,0,0.333195,2,2,0,2,3,,3,3,14 Mile,Rd,625804,2.018,2.351,0,7.996681,5,5 +1109,-1,1.025139,0,3,0,1,1,,3,3,S I 75,,646106,9.66,10.685,0,,0.58,7 +1550,0,0.354164,2,2,1,2,4,,4,3,Livernois,Rd,625408,0.987,1.342,0,8.499928,4.5,4.5 +1779,0,0.275989,2,2,1,2,3,,4,3,Long Lake,Rd,641102,11.746,12.022,0,6.623731,3.7,5 +2087,-1,0.271152,0,3,0,1,1,,3,3,S I 75,,646106,8.678,8.949,0,,0.58,7 +2159,0,0.125547,1,1,0,2,4,,4,3,Wattles,Rd,618802,4.599,4.725,0,3.013122,4.5,4.5 +2288,1,0.99767,3,0,0,1,1,,3,3,N I 75,,647308,9.613,10.61,0,,0.58,7 +2289,1,1.09965,3,0,0,1,1,,3,3,N I 75,,647308,8.513,9.613,0,,0.58,7 +2351,0,0.269923,2,2,1,2,4,,4,3,John R,Rd,646806,8.059,8.329,0,6.478163,4.5,4.5 +3778,0,0.333078,2,2,1,2,3,,3,3,Maple,Rd,683906,17.645,17.978,0,7.993883,5,5 +3855,1,0.315215,1,0,0,1,1,ROF,4,3,S I 75/Rochester,RAMP,682605,0,0.315,0,,2.24,5 +4926,1,0.276059,1,0,0,1,1,RON,4,3,W Big Beaver/N I 75,RAMP,691506,0,0.276,0,,1.09,4 +4934,1,0.31954,1,0,0,1,1,ROF,3,3,S I 75/W Big Beaver,RAMP,691505,0,0.32,0,,2.24,5 +19570,-1,0.249638,0,1,0,1,1,FCD,3,3,S I 75 CD,,1854307,0.57,0.82,0,,0.58,7 +19578,1,0.219239,1,0,0,1,1,FCD,3,3,N I 75 CD,,1854302,0.574,0.793,0,,0.58,7 +21142,-1,0.52432,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,2.912,3.436,0,12.583686,5,5 +37132,1,0.016866,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,3.953,3.97,0,0.404783,5,5 +21870,0,0.40995,2,2,0,2,3,,3,3,Rochester,Rd,4413538,3.126,3.536,0,9.83879,5,5 +25012,0,0.477324,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.455775,0.15,4 +25348,0,0.506666,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.159991,0.15,4 +25351,0,0.464382,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.145163,0.15,4 +25355,0,0.421561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.117464,0.15,4 +25460,0,0.522333,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.535998,0.15,4 +25898,0,0.213586,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.126073,0.15,4 +27973,0,0.508994,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.21585,0.15,4 +28276,0,0.512652,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.303643,0.15,4 +28463,0,0.502869,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.068863,0.15,4 +29610,0,0.579995,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.919885,0.15,4 +29611,0,0.593949,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.254785,0.15,4 +29856,0,0.530419,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.730052,0.15,4 +29857,0,0.517262,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.414279,0.15,4 +29858,0,0.532089,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.770127,0.15,4 +161,1,0.336737,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.665,3.002,0,8.081687,5,5 +1589,-1,0.711413,0,3,0,1,1,,3,3,S I 75,,646106,8.949,9.66,0,,0.58,7 +1609,0,0.308987,2,2,1,2,4,,3,3,Livernois,Rd,625408,0,0.309,0,7.415698,6,4.5 +2036,0,0.510242,2,2,1,2,3,,3,3,14 Mile,Rd,625804,3.032,3.542,0,12.245808,5,5 +2810,0,0.736587,2,2,0,2,5,,3,3,Kirts,Blvd,681204,0.542,1.278,0,17.678089,8,4.5 +3781,0,0.39877,2,2,1,2,3,,3,3,Maple,Rd,683906,16.825,17.224,0,9.570484,5,5 +21144,-1,0.318942,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,2.163,2.481,0,7.654596,5,5 +25356,0,0.387605,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.30251,0.15,4 +27987,0,0.504084,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.09801,0.15,4 +28006,0,0.289251,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.942013,0.15,4 +28009,0,0.564058,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.537395,0.15,4 +28036,0,0.558442,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.402619,0.15,4 +28388,0,0.5027,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.064805,0.15,4 +1524,0,0.078028,2,2,1,2,3,,3,3,14 Mile,Rd,625804,3.542,3.62,0,1.872684,5,5 +28038,0,0.247213,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.933118,0.15,4 +28008,0,0.284751,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.834032,0.15,4 +3782,0,0.100735,2,2,1,2,3,,3,3,Maple,Rd,683906,16.724,16.825,0,2.41765,5,5 +163,1,0.105014,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.52,2.625,0,2.520331,5,5 +4935,1,0.297742,1,0,0,1,1,RON,3,3,E Big Beaver/S I 75,RAMP,691504,0,0.298,0,,1.09,4 +19572,-1,0.179719,0,1,0,1,1,FCD,3,3,S I 75 CD,,1854307,0.301,0.481,0,,0.58,7 +19575,1,0.20345,1,0,0,1,1,ROF,4,3,N I 75/W Big Beaver,RAMP,1854305,0,0.203,0,,2.24,5 +19576,1,0.204883,1,0,0,1,1,RON,3,3,E Big Beaver/N I 75,RAMP,1854303,0,0.205,0,,1.09,4 +19579,1,0.140593,2,0,0,1,1,FCD,3,3,N I 75 CD,,1854302,0.434,0.574,0,,0.58,7 +21147,-1,0.126099,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.91,2.036,0,3.026383,5,5 +27986,0,0.300135,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.203238,0.15,4 +28004,0,0.381043,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.14503,0.15,4 +166,1,0.128565,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.23,2.358,0,3.085554,5,5 +19562,1,0.214251,1,0,0,1,1,ROF,3,3,S I 75/E Big Beaver,RAMP,1854309,0,0.214,0,,2.24,5 +21149,-1,0.091016,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.709,1.8,0,2.184376,5,5 +27984,0,0.336554,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.077291,0.15,4 +27985,0,0.346241,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.309772,0.15,4 +164,1,0.125892,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.394,2.52,0,3.021404,5,5 +19563,1,0.236998,1,0,0,1,1,RON,3,3,W Big Beaver/S I 75,RAMP,1854308,0,0.237,0,,1.09,4 +21148,-1,0.110291,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,1.8,1.91,0,2.646979,5,5 +165,1,0.03579,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.358,2.394,0,0.858963,5,5 +19571,-1,0.089452,0,2,0,1,1,FCD,3,3,S I 75 CD,,1854307,0.481,0.57,0,,0.58,7 +4923,1,0.270241,1,0,0,1,1,ROF,3,3,N I 75/E Big Beaver,RAMP,691507,0,0.27,0,,2.24,5 +19573,-1,0.301366,0,1,0,1,1,FCD,3,3,S I 75 CD,,1854307,0,0.301,0,,0.58,7 +19582,1,0.241076,1,0,0,1,1,FCD,3,3,N I 75 CD,,1854302,0.193,0.434,0,,0.58,7 +162,1,0.040684,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,2.625,2.665,0,0.976414,5,5 +21145,-1,0.119167,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,2.043,2.163,0,2.86002,5,5 +21146,-1,0.007441,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,2.036,2.043,0,0.178577,5,5 +19583,1,0.192706,1,0,0,1,1,FCD,3,3,N I 75 CD,,1854302,0,0.193,0,,0.58,7 +1479,0,0.200916,2,2,1,2,4,,3,3,Main,,644806,4.623,4.824,0,4.821995,6,4.5 +1635,0,0.263484,2,2,0,2,3,,3,3,14 Mile,Rd,625804,2.506,2.77,0,6.323607,5,5 +3780,0,0.382919,2,2,1,2,3,,3,3,Maple,Rd,683906,17.224,17.606,0,9.190046,5,5 +21878,0,0.129964,2,2,0,2,3,,3,3,Rochester,Rd,4413538,2.996,3.126,0,3.11914,5,5 +25360,0,0.398246,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.557907,0.15,4 +25362,0,0.306766,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.362389,0.15,4 +29608,0,0.357907,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.589759,0.15,4 +719,0,0.23257,2,2,0,2,3,,3,3,14 Mile,Rd,625804,2.799,3.032,0,5.581682,5,5 +1991,0,0.496169,2,2,1,2,4,,3,3,Main,,644806,4.127,4.623,0,11.908049,6,4.5 +25363,0,0.262692,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.304618,0.15,4 +29607,0,0.380275,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,9.126591,0.15,4 +1160,0,0.029312,2,2,0,2,3,,3,3,14 Mile,Rd,625804,2.77,2.799,0,0.703482,5,5 +1480,0,0.330365,2,2,1,2,4,,3,3,Main,,644806,4.824,5.154,0,7.928766,6,4.5 +21881,0,0.3096,2,2,0,2,3,,3,3,Rochester,Rd,4413538,2.486,2.795,0,7.430396,5,5 +1879,0,0.155092,2,2,0,2,3,,3,3,14 Mile,Rd,625804,2.351,2.506,0,3.722217,5,5 +21880,0,0.200882,2,2,0,2,3,,3,3,Rochester,Rd,4413538,2.795,2.996,0,4.821158,5,5 +25358,0,0.267965,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.431156,0.15,4 +3779,0,0.038163,2,2,1,2,3,,3,3,Maple,Rd,683906,17.606,17.645,0,0.915919,5,5 +160,1,0.631206,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,3.002,3.448,0,15.148933,5,5 +1718,0,0.109234,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.561,0.67,0,2.621616,6,4.5 +21143,-1,0.4304,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,2.481,2.912,0,10.329606,5,5 +25359,0,0.459526,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.028633,0.15,4 +28203,0,0.471354,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.31249,0.15,4 +1897,0,0.215694,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.309,0.525,0,5.176663,6,4.5 +1383,0,0.036031,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.525,0.561,0,0.864739,6,4.5 +1766,0,0.149247,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.824,0.973,0,3.581933,6,4.5 +1231,0,0.153892,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.67,0.824,0,3.693399,6,4.5 +1269,0,0.01457,2,2,1,2,4,,3,3,Livernois,Rd,625408,0.973,0.987,0,0.349678,6,4.5 +25349,0,0.199084,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.778006,0.15,4 +25354,0,0.139993,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.359832,0.15,4 +613,0,0.211719,2,2,1,2,4,,4,3,Livernois,Rd,625408,2.289,2.5,0,5.081267,4.5,4.5 +662,-1,1.868195,0,3,0,1,1,,4,3,S I 75,,646106,10.685,12.553,0,,0.8,7.5 +39898,-1,0.143797,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4416835,0,0.144,0,3.451122,3.7,5 +2145,0,0.478277,2,2,1,2,4,,4,3,Livernois,Rd,625408,2.5,2.978,0,11.478647,4.5,4.5 +2158,0,0.249212,1,1,0,2,4,,4,3,Wattles,Rd,618802,3.647,3.896,0,5.981077,4.5,4.5 +2287,1,1.849154,3,0,0,1,1,,4,3,N I 75,,647308,10.61,12.459,0,,0.8,7.5 +25345,0,0.311833,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.48399,0.15,4 +25365,0,0.260723,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.25734,0.15,4 +25367,0,0.492406,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.817749,0.15,4 +28277,0,0.549203,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.180869,0.15,4 +28458,0,0.531199,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.748787,0.15,4 +1077,0,0.421371,1,1,0,2,4,,3,3,Wattles,Rd,618802,3.105,3.526,0,10.112896,6,4.5 +27972,0,0.509136,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.219272,0.15,4 +28462,0,0.52131,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.511434,0.15,4 +19565,-1,0.218457,0,1,0,1,1,FCD,3,3,S I 75 CD,,1854307,0.82,1.038,0,,0.58,7 +19577,1,0.1914,1,0,0,1,1,FCD,3,3,N I 75 CD,,1854302,0.793,0.985,0,,0.58,7 +627,0,0.120437,1,1,0,2,4,,4,3,Wattles,Rd,618802,3.526,3.647,0,2.89049,4.5,4.5 +753,0,0.098562,2,2,0,2,3,,4,3,Long Lake,Rd,641102,10.701,10.799,0,2.365488,3.7,5 +25366,0,0.491794,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.803051,0.15,4 +1190,1,0.212516,3,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,10.489,10.701,0,5.100372,3.7,5 +20437,-1,0.206363,0,3,0,2,3,DIV,4,3,Long Lake,Rd,4402800,0.872,1.079,0,4.952715,3.7,5 +25651,0,0.380231,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.12555,0.15,4 +27600,0,0.362944,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.710657,0.15,4 +370,0,0.447755,1,1,0,2,4,,4,3,Livernois,Rd,625408,2.995,3.442,0,10.746109,4.5,4.5 +39896,0,0.016365,2,2,1,2,4,,4,3,Livernois,Rd,625408,2.978,2.995,0,0.392765,4.5,4.5 +39910,0,0.508207,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.196959,0.15,4 +1652,0,0.70369,2,2,0,2,4,,4,3,Wattles,Rd,618802,3.896,4.599,0,16.888553,4.5,4.5 +2169,0,0.328175,2,2,1,2,4,,4,3,Livernois,Rd,625408,1.672,2,0,7.876189,4.5,4.5 +25346,0,0.549098,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.178361,0.15,4 +25461,0,0.539211,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.941059,0.15,4 +1075,0,0.330328,2,2,1,2,4,,4,3,Livernois,Rd,625408,1.342,1.672,0,7.927874,4.5,4.5 +1665,0,0.288856,2,2,1,2,4,,4,3,Livernois,Rd,625408,2,2.289,0,6.932547,4.5,4.5 +213,0,0.122448,2,2,1,2,3,,4,3,Long Lake,Rd,641102,11.624,11.746,0,2.938749,3.7,5 +28457,0,0.495261,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.886275,0.15,4 +157,1,0.503027,3,0,0,2,3,DIV,4,3,Big Beaver,Rd,607204,4.206,4.709,0,12.072637,3.7,5 +456,-1,0.089764,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.439,1.529,0,2.154329,5,5 +1206,-1,2.051841,0,3,0,1,1,,4,3,S I 75,,646106,6.627,8.678,0,,0.8,7.5 +2291,1,1.634789,3,0,0,1,1,,4,3,N I 75,,647308,6.69,8.325,0,,0.8,7.5 +2292,1,0.249245,3,0,0,1,1,,3,3,N I 75,,647308,6.441,6.69,0,,0.58,7 +2354,0,0.43709,2,2,1,2,4,,4,3,John R,Rd,646806,7.059,7.496,0,10.490156,4.5,4.5 +3438,1,0.43493,2,0,0,2,4,DIV,4,3,Stephenson,Hwy,680107,3.299,3.734,0,10.438323,4.5,4.5 +3774,0,0.388059,2,2,1,2,3,,3,3,Maple,Rd,683906,18.53,18.918,0,9.313406,5,5 +4830,1,0.313577,1,0,0,1,1,RON,3,3,14 Mile/N I 75,RAMP,694107,0.041,0.354,0,,1.09,4 +20152,-1,0.083713,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.183,0.266,0,2.00911,5,5 +20893,-1,0.395795,0,2,0,2,4,DIV,4,3,Stephenson,Hwy,4406170,1.047,1.443,0,9.499085,4.5,4.5 +21140,-1,0.622959,0,3,0,2,3,DIV,4,3,Big Beaver,Rd,4408243,3.684,4.307,0,14.951015,3.7,5 +21835,0,0.283565,2,2,0,2,3,,4,3,Rochester,Rd,4413538,3.536,3.819,0,6.80555,3.7,5 +29628,0,0.599346,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,14.384308,0.15,4 +800,0,0.18097,2,2,1,2,3,,3,3,14 Mile,Rd,625804,1.731,1.912,0,4.343269,5,5 +2750,1,0.269332,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,2.617,2.887,0,6.463978,6,4.5 +3776,0,0.388281,2,2,1,2,3,,3,3,Maple,Rd,683906,18.119,18.507,0,9.318744,5,5 +20400,-1,0.269769,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406170,0.365,0.634,0,6.474446,6,4.5 +25127,0,0.263852,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.332443,0.15,4 +25352,0,0.247128,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.931071,0.15,4 +25382,0,0.357594,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.582251,0.15,4 +25361,0,0.330226,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.925436,0.15,4 +776,0,0.008178,2,2,1,2,3,,3,3,14 Mile,Rd,625804,2.01,2.018,0,0.19628,5,5 +335,0,0.097943,2,2,1,2,3,,3,3,14 Mile,Rd,625804,1.912,2.01,0,2.350634,5,5 +25353,0,0.356215,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.549151,0.15,4 +3777,0,0.141513,2,2,1,2,3,,3,3,Maple,Rd,683906,17.978,18.119,0,3.396312,5,5 +631,-1,0.019347,0,2,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.688,1.707,0,0.464336,5,5 +1689,-1,0.27772,0,3,0,1,1,,3,3,S I 75,,646106,6.349,6.627,0,,0.58,7 +3021,1,0.356681,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,2.261,2.617,0,8.56034,6,4.5 +4821,1,0.225671,1,0,0,1,1,ROF,3,3,S I 75/W 14 Mile,RAMP,694110,0,0.226,0,,2.24,5 +20605,-1,0.356666,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406170,0.008,0.365,0,8.559988,6,4.5 +20795,-1,0.019454,0,2,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.024,0.043,0,0.466894,5,5 +25381,0,0.127985,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.071639,0.15,4 +1250,-1,0.024352,0,2,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.707,1.731,0,0.584459,5,5 +20845,-1,0.008023,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406170,0,0.008,0,0.192554,6,4.5 +20105,-1,0.023895,0,2,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0,0.024,0,0.573477,5,5 +25383,0,0.118097,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,2.834336,0.15,4 +1557,-1,0.076338,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.529,1.605,0,1.832122,5,5 +20547,-1,0.11865,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.043,0.162,0,2.847605,5,5 +21441,1,0.038233,1,0,0,1,3,RSF,3,3,WB 14 Mile/S I 75,RAMP,4413936,0,0.038,0,,5,5 +1081,-1,0.082497,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.605,1.688,0,1.979919,5,5 +3447,1,0.008431,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,2.252,2.261,0,0.202336,6,4.5 +20354,-1,0.020582,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.162,0.183,0,0.493964,5,5 +2468,1,0.412293,2,0,0,2,4,DIV,3,3,Stephenson,Hwy,680107,2.887,3.299,0,9.895025,6,4.5 +20198,-1,0.412744,0,2,0,2,4,DIV,3,3,Stephenson,Hwy,4406170,0.634,1.047,0,9.905856,6,4.5 +3775,0,0.022766,2,2,1,2,3,,3,3,Maple,Rd,683906,18.507,18.53,0,0.546382,5,5 +158,1,0.236267,3,0,0,2,3,DIV,4,3,Big Beaver,Rd,607204,3.97,4.206,0,5.670416,3.7,5 +2290,1,0.188907,3,0,0,1,1,,4,3,N I 75,,647308,8.325,8.513,0,,0.8,7.5 +3850,1,0.303246,1,0,0,1,1,ROF,4,3,N I 75/Rochester,RAMP,682608,0,0.303,0,,2.24,5 +19904,-1,0.067836,0,2,0,2,3,DIV,4,3,Stephenson,Hwy,4406170,1.722,1.79,0,1.628054,3.7,5 +20546,1,0.103263,1,0,0,1,1,ROF,4,3,S I 75/S Rochester,RAMP,4406259,0,0.103,0,,2.24,5 +21141,-1,0.230789,0,3,0,2,3,DIV,4,3,Big Beaver,Rd,4408243,3.453,3.684,0,5.538944,3.7,5 +21828,1,0.178689,3,0,0,2,3,DIV,4,3,Stephenson,Hwy,4413538,4.135,4.314,0,4.288538,3.7,5 +25375,0,0.104798,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.515153,0.15,4 +29900,0,0.368708,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.848989,0.15,4 +29966,0,0.095908,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.301802,0.15,4 +20253,-1,0.066763,0,3,0,2,3,DIV,4,3,Stephenson,Hwy,4406170,1.656,1.722,0,1.602304,3.7,5 +21174,-1,0.08038,0,1,0,2,3,,4,3,Rochester,Rd,4408199,0,0.08,0,1.929119,3.7,5 +21831,1,0.060992,2,0,0,2,3,,4,3,Rochester,Rd,4413538,4.054,4.115,0,1.463814,3.7,5 +21834,0,0.134423,2,2,0,2,3,,4,3,Rochester,Rd,4413538,3.819,3.954,0,3.226142,3.7,5 +21832,0,0.100407,2,2,0,2,3,,4,3,Rochester,Rd,4413538,3.954,4.054,0,2.409769,3.7,5 +2464,1,0.144642,2,0,0,2,4,DIV,4,3,Stephenson,Hwy,680107,3.734,3.878,0,3.471396,4.5,4.5 +20658,-1,0.171281,0,2,0,2,4,DIV,4,3,Stephenson,Hwy,4406170,1.443,1.614,0,4.110753,4.5,4.5 +20440,-1,0.041827,0,2,0,2,3,DIV,4,3,Stephenson,Hwy,4406170,1.614,1.656,0,1.003855,3.7,5 +21830,1,0.019996,2,0,0,2,3,,4,3,Rochester,Rd,4413538,4.115,4.135,0,0.479895,3.7,5 +37137,1,0.152253,3,0,0,2,3,DIV,3,3,Rochester,Rd,4413538,4.486,4.638,0,3.654067,5,5 +37136,1,0.009605,3,0,0,2,3,DIV,3,3,Rochester,Rd,4413538,4.477,4.486,0,0.230519,5,5 +3853,1,0.077206,1,0,0,1,1,RON,4,3,S Rochester/S I 75,RAMP,682606,0,0.077,0,,1.09,4 +3854,1,0.057247,1,0,0,1,1,ROF,4,3,S I 75/N Rochester,RAMP,682605,0.315,0.372,0,,2.24,5 +20104,-1,0.063842,0,1,0,1,1,RON,4,3,N Rochester/S I 75,RAMP,4406181,0,0.064,0,,1.09,4 +37142,-1,0.022381,0,3,0,2,3,DIV,3,3,Rochester,Rd,4406170,2.125,2.148,0,0.537156,5,5 +3852,1,0.165858,1,0,0,1,1,RON,4,3,Rochester/S I 75,RAMP,682606,0.077,0.243,0,,1.09,4 +20490,-1,0.042292,0,2,0,2,3,DIV,4,3,Rochester,Rd,4406170,1.8,1.842,0,1.015012,3.7,5 +20794,-1,0.016472,0,1,0,2,3,RSF,4,3,N Rochester/S I 75,RAMP,4406181,0.064,0.08,0,0.395329,5,5 +21824,1,0.123582,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,4.314,4.437,0,2.965976,3.7,5 +20726,-1,0.009727,0,2,0,2,3,DIV,4,3,Stephenson,Hwy,4406170,1.79,1.8,0,0.233443,3.7,5 +20301,-1,0.123155,0,3,0,2,3,DIV,3,3,Rochester,Rd,4406170,1.842,1.965,0,2.955731,5,5 +37138,1,0.022417,3,0,0,2,3,DIV,3,3,Rochester,Rd,4413538,4.638,4.661,0,0.538006,5,5 +40302,1,0.18022,2,0,0,2,4,DIV,4,3,Wattles,Rd,618802,4.725,4.905,0,4.325282,4.5,4.5 +37134,1,0.022616,3,0,0,2,3,DIV,3,3,Rochester,Rd,4413538,4.437,4.46,0,0.54279,5,5 +594,-1,0.011139,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.022,1.033,0,0.267333,5,5 +2358,1,0.06058,2,0,0,2,4,DIV,3,3,John R,Rd,646806,6.468,6.529,0,1.453926,6,4.5 +3772,0,0.240923,3,3,0,2,3,,3,3,Maple,Rd,683906,18.989,19.23,0,5.782155,5,5 +20402,-1,0.246295,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.452,0.698,0,5.911075,5,5 +25372,0,0.310231,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.445545,0.15,4 +25378,0,0.248615,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.966767,0.15,4 +29965,0,0.794363,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,19.064718,0.15,4 +2124,-1,0.07265,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.274,1.346,0,1.743609,5,5 +20607,-1,0.100791,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.351,0.452,0,2.418989,5,5 +25373,0,0.238694,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.728652,0.15,4 +25380,0,0.252123,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.050963,0.15,4 +1372,-1,0.072078,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.346,1.419,0,1.729879,5,5 +4826,1,0.259936,1,0,0,1,1,ROF,3,3,N I 75/W 14 Mile,RAMP,694109,0,0.26,0,,2.24,5 +4831,1,0.040849,1,0,0,1,3,RSF,3,3,EB 14 Mile/N I 75,RAMP,694107,0,0.041,0,,5,5 +20847,-1,0.084754,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.266,0.351,0,2.034092,5,5 +916,-1,0.020555,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,1.419,1.439,0,0.493318,5,5 +24582,1,0.035093,1,0,0,2,5,,3,3,Concord,Dr,0,0,0,0,0.84223,8,4.5 +25379,0,0.282055,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.769318,0.15,4 +3773,0,0.071491,3,3,0,2,3,,3,3,Maple,Rd,683906,18.918,18.989,0,1.715791,5,5 +1046,-1,0.222262,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,0.799,1.022,0,5.33428,5,5 +2359,1,0.437402,2,0,0,2,4,DIV,3,3,John R,Rd,646806,6.031,6.468,0,10.497655,6,4.5 +20200,-1,0.211098,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.711,0.922,0,5.066363,5,5 +2360,1,0.013192,2,0,0,2,4,DIV,3,3,John R,Rd,646806,6.018,6.031,0,0.316597,6,4.5 +1144,-1,0.108884,0,3,0,2,3,DIV,3,3,14 Mile,Rd,625804,0.69,0.799,0,2.613223,5,5 +20895,-1,0.11917,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.922,1.041,0,2.860077,5,5 +2355,0,0.369077,2,2,1,2,4,,3,3,John R,Rd,646806,6.69,7.059,0,8.857857,6,4.5 +2356,1,0.065398,2,0,0,2,4,DIV,3,3,John R,Rd,646806,6.625,6.69,0,1.569561,6,4.5 +2357,1,0.095839,2,0,0,2,4,DIV,3,3,John R,Rd,646806,6.529,6.625,0,2.300146,6,4.5 +2353,0,0.545353,2,2,1,2,4,,4,3,John R,Rd,646806,7.496,8.041,0,13.08847,4.5,4.5 +25369,0,0.400014,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.600334,0.15,4 +156,1,0.304764,3,0,0,2,3,DIV,4,3,Big Beaver,Rd,607204,4.709,5.013,0,7.314345,3.7,5 +29626,0,0.402626,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.663035,0.15,4 +29627,0,0.453179,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.876291,0.15,4 +2352,0,0.018158,2,2,1,2,4,,4,3,John R,Rd,646806,8.041,8.059,0,0.435793,4.5,4.5 +21139,-1,0.185789,0,3,0,2,3,DIV,4,3,Big Beaver,Rd,4408243,4.307,4.493,0,4.458936,3.7,5 +597,0,0.371263,1,1,1,2,4,,4,3,Wattles,Rd,618802,5.539,5.91,0,8.910302,4.5,4.5 +728,0,0.561778,2,2,1,2,3,,4,3,Long Lake,Rd,641102,12.719,13.281,0,13.482666,3.7,5 +2348,0,0.359729,2,2,1,2,4,,4,3,John R,Rd,646806,9.049,9.409,0,8.633489,4.5,4.5 +21776,1,0.012437,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,5.668,5.681,0,0.298492,3.7,5 +28459,0,0.545892,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.101417,0.15,4 +28465,0,0.495222,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.885338,0.15,4 +28466,0,0.497867,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.948816,0.15,4 +1654,1,0.150919,2,0,0,2,4,DIV,4,3,Wattles,Rd,618802,4.923,5.073,0,3.622054,4.5,4.5 +21777,1,0.299842,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,5.368,5.668,0,7.196211,3.7,5 +25357,0,0.527078,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.649868,0.15,4 +29609,0,0.528806,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.691352,0.15,4 +21779,1,0.224169,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,5.144,5.368,0,5.380051,3.7,5 +1048,0,0.149788,1,1,1,2,4,,4,3,Wattles,Rd,618802,5.389,5.539,0,3.5949,4.5,4.5 +40387,-1,0.041651,0,1,0,2,4,,4,5,Geddes,Rd,4606198,0,0.042,0,0.999627,4.5,4.5 +21771,0,0.429461,2,2,1,2,3,,4,3,Rochester,Rd,4413538,6.225,6.654,0,10.307065,3.7,5 +25384,0,0.500156,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.003736,0.15,4 +28464,0,0.501933,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.046403,0.15,4 +21774,0,0.020226,2,2,1,2,3,,4,3,Rochester,Rd,4413538,6.205,6.225,0,0.485418,3.7,5 +21770,0,0.014368,2,2,1,2,3,,4,3,Rochester,Rd,4413538,6.654,6.669,0,0.344832,3.7,5 +1167,0,0.13562,2,2,1,2,3,,4,3,Long Lake,Rd,641102,12.583,12.719,0,3.254873,3.7,5 +1537,0,0.454087,1,1,1,2,4,,4,3,Wattles,Rd,618802,5.91,6.364,0,10.898078,4.5,4.5 +2349,0,0.619679,2,2,1,2,4,,4,3,John R,Rd,646806,8.43,9.049,0,14.872294,4.5,4.5 +2350,0,0.100215,2,2,1,2,4,,4,3,John R,Rd,646806,8.329,8.43,0,2.405168,4.5,4.5 +245,0,0.276441,2,2,1,2,3,,4,3,Long Lake,Rd,641102,13.281,13.557,0,6.63459,3.7,5 +2346,0,0.502745,2,2,1,2,4,,4,3,John R,Rd,646806,9.548,10.05,0,12.065889,4.5,4.5 +2347,0,0.13896,2,2,1,2,4,,4,3,John R,Rd,646806,9.409,9.548,0,3.335037,4.5,4.5 +1804,0,0.062085,2,2,1,2,3,,4,3,Long Lake,Rd,641102,13.557,13.619,0,1.490029,3.7,5 +40552,-1,0.041175,0,1,0,2,4,,4,3,Tienken,Rd,5499957,0,0.041,0,0.988196,4.5,4.5 +225,0,0.190064,1,1,0,2,4,,4,3,Avon,Rd,605102,1.303,1.493,0,4.561526,4.5,4.5 +704,0,0.169277,1,1,0,2,5,,4,3,Dutton,Rd,626101,3.033,3.202,0,4.062654,5.8,4.5 +999,1,0.554982,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,4.09,4.645,0,13.319567,4.5,4.5 +1121,0,0.407856,2,2,1,2,3,,4,3,Walton,Blvd,616602,4.286,4.694,0,9.788543,3.7,5 +1143,1,0.524071,1,0,0,1,1,RON,4,3,Crooks/N I 75,RAMP,625609,0,0.524,0,,1.09,4 +1239,0,0.271503,1,1,0,2,4,,4,3,Livernois,Rd,625408,7.859,8.13,0,6.516063,4.5,4.5 +1428,0,0.795612,1,1,0,2,5,GRV,4,3,Silver Bell,Rd,626102,6.032,6.828,0,19.09468,6.55,4.5 +40546,0,0.116896,1,1,0,2,5,,4,3,Livernois,Rd,625408,10.201,10.318,0,2.805492,5.8,4.5 +1621,1,0.379445,1,0,0,1,1,ROF,4,3,S I 75/Crooks,RAMP,625608,0,0.379,0,,2.24,5 +1777,0,0.458271,1,1,0,2,4,,4,3,South,Blvd,616405,4.016,4.474,0,10.998498,4.5,4.5 +1820,0,0.350081,1,1,0,2,3,,4,3,Adams,Rd,4415861,9.096,9.446,0,8.401945,3.7,5 +1823,0,0.300019,1,1,1,2,4,,4,3,Auburn,Rd,625105,6.18,6.479,0,7.200447,4.5,4.5 +1971,1,1.050853,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,1.227,2.277,0,25.220469,4.5,4.5 +2285,1,2.639826,3,0,0,1,1,,4,3,N I 75,,647308,12.758,15.397,0,,0.8,7.5 +2331,0,0.409988,1,1,0,2,4,,4,3,John R,Rd,646806,14.765,15.175,0,9.839711,4.5,4.5 +2800,1,0.365601,1,0,0,1,2,ROF,4,3,W M 59/Crooks,RAMP,681305,0,0.366,0,,2.24,5 +3049,0,0.546571,1,1,0,2,4,,4,3,Crooks,Rd,659810,11.369,11.916,0,13.117699,4.5,4.5 +3150,1,1.852823,3,0,0,1,2,,4,3,E M 59,,648906,27.584,29.436,0,,0.8,7.5 +3163,-1,0.28287,0,3,0,1,2,,4,3,W M 59,,677208,5.526,5.809,0,,0.8,7.5 +39870,1,0.097458,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,4.645,4.743,0,2.338986,4.5,4.5 +21397,-1,1.065961,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,1.23,2.295,0,25.583073,4.5,4.5 +21703,0,0.32856,2,2,1,2,3,,4,3,Rochester,Rd,4413538,11.462,11.79,0,7.885451,3.7,5 +24900,0,0.555291,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.326991,0.15,4 +24908,0,0.602207,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.452957,0.15,4 +25542,0,0.613906,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.733747,0.15,4 +25546,0,0.761433,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.274381,0.15,4 +25989,0,0.449077,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.777851,0.15,4 +27696,0,0.488817,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.731597,0.15,4 +28472,0,0.692828,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.627863,0.15,4 +28486,0,0.374406,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.985746,0.15,4 +28491,0,0.481469,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.55526,0.15,4 +28496,0,0.609305,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.623309,0.15,4 +28497,0,0.491456,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.794933,0.15,4 +28498,0,0.595194,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.284653,0.15,4 +28503,0,0.472227,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.333453,0.15,4 +28509,0,0.922994,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.151846,0.15,4 +28524,0,0.492012,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.808297,0.15,4 +586,0,1.102545,1,1,0,2,4,,4,3,Auburn,Rd,625105,4.161,5.263,0,26.461092,4.5,4.5 +825,0,0.365149,1,1,0,2,5,,4,3,Squirrel,Rd,617001,3.658,4.023,0,8.763571,5.8,4.5 +1108,-1,2.304104,0,3,0,1,1,,4,3,S I 75,,646106,13.046,15.349,0,,0.8,7.5 +1553,0,0.324189,1,1,1,2,3,,4,3,Adams,Rd,4415861,6.361,6.685,0,7.780541,3.7,5 +1746,0,0.499864,1,1,0,2,4,,4,3,Square Lake,Rd,615807,2.579,3.079,0,11.996726,4.5,4.5 +34582,1,0.027242,2,0,0,2,7,,4,3,Squirrel/Hamlin,TURN,4414050,0,0.027,0,0.653816,6.55,4.5 +1822,0,0.504687,1,1,0,2,4,,4,3,South,Blvd,616405,2.506,3.011,0,12.112491,4.5,4.5 +37613,1,0.280922,1,0,0,1,2,ROF,4,3,W M 59/Hamlin,RAMP,4462968,0,0.281,0,,2.24,5 +37610,1,0.135631,1,0,0,1,2,RON,4,3,Adams/E M 59,RAMP,4462966,0.123,0.258,0,,1.09,4 +3267,1,0.393551,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,9.365,9.758,0,9.445232,3.7,5 +27578,0,1.01025,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.245994,0.15,4 +28271,0,0.927786,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,22.266855,0.15,4 +28484,0,0.533372,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.800929,0.15,4 +28519,0,0.470331,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.28795,0.15,4 +28523,0,0.524974,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.59937,0.15,4 +29777,0,0.458302,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.999253,0.15,4 +19,-1,0.598445,0,3,0,1,1,,4,3,S I 75,,646106,15.589,16.187,0,,0.8,7.5 +1294,0,0.581067,1,1,0,2,3,,4,3,Adams,Rd,4415861,5.205,5.786,0,13.945603,3.7,5 +1910,0,0.338116,1,1,0,2,4,,4,3,Square Lake,Rd,615807,1.552,1.89,0,8.114787,4.5,4.5 +2039,0,0.246335,1,1,0,2,4,,4,3,South,Blvd,616405,1.688,1.934,0,5.912032,4.5,4.5 +2112,0,0.469586,1,1,0,2,5,,4,3,Beach,Rd,625404,0.644,1.113,0,11.270054,5.8,4.5 +2125,0,0.642403,1,1,0,2,5,,4,3,Squirrel,Rd,617001,2.186,2.828,0,15.417674,5.8,4.5 +2284,1,0.299625,3,0,0,1,1,,4,3,N I 75,,647308,15.397,15.697,0,,0.8,7.5 +4938,1,0.351769,1,0,0,1,1,RON,4,3,Adams/N I 75,RAMP,691310,0,0.352,0,,1.09,4 +28269,0,0.50232,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.055687,0.15,4 +28270,0,0.480661,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.535858,0.15,4 +28517,0,0.42099,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.103772,0.15,4 +28527,0,0.398131,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.555142,0.15,4 +1727,0,0.267491,1,1,0,2,4,,4,3,Square Lake,Rd,615807,1.285,1.552,0,6.419787,4.5,4.5 +2120,0,0.17375,1,1,0,2,5,,4,3,Squirrel,Rd,617001,2.012,2.186,0,4.169989,5.8,4.5 +2157,0,0.384306,1,1,0,2,4,,4,3,Square Lake,Rd,615807,0.901,1.285,0,9.223338,4.5,4.5 +27599,0,0.380384,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.129223,0.15,4 +918,0,0.464658,1,1,0,2,5,,4,3,Squirrel,Rd,617001,3.122,3.587,0,11.151791,5.8,4.5 +1801,0,0.42095,1,1,0,2,4,,4,3,South,Blvd,616405,1.267,1.688,0,10.102807,4.5,4.5 +28518,0,0.43933,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.54392,0.15,4 +29776,0,0.341796,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.203092,0.15,4 +874,0,0.280262,2,2,0,2,4,,4,3,South,Blvd,616405,0.987,1.267,0,6.726288,4.5,4.5 +1374,0,0.140662,1,1,0,2,5,,4,3,Squirrel,Rd,617001,2.982,3.122,0,3.375887,5.8,4.5 +27591,0,0.272257,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.534174,0.15,4 +28526,0,0.231928,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.566264,0.15,4 +1625,0,0.153306,1,1,0,2,5,,4,3,Squirrel,Rd,617001,2.828,2.982,0,3.679333,5.8,4.5 +27575,0,0.395893,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.501439,0.15,4 +1280,0,0.071492,1,1,0,2,5,,4,3,Squirrel,Rd,617001,3.587,3.658,0,1.715801,5.8,4.5 +179,0,0.246784,1,1,0,2,5,,4,3,Arlund,Way,607102,0,0.247,0,5.922804,5.8,4.5 +464,0,0.207833,1,1,0,2,5,,4,3,Beach,Rd,625404,0,0.208,0,4.987988,5.8,4.5 +587,1,0.171442,1,0,0,1,1,RON,4,3,Square Lake/S I 75,RAMP,625607,0,0.171,0,,1.09,4 +967,0,0.273832,2,2,1,2,3,,4,3,Adams,Rd,4415861,4.673,4.946,0,6.571957,3.7,5 +1038,1,0.285684,1,0,0,1,1,ROF,4,3,S I 75/Square Lake,RAMP,625606,0,0.286,0,,2.24,5 +1199,0,0.474175,1,1,0,2,4,,4,3,Square Lake,Rd,615807,2.105,2.579,0,11.380194,4.5,4.5 +29768,0,0.513022,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.31253,0.15,4 +758,0,0.106863,1,1,1,2,4,,4,3,Square Lake,Rd,615807,1.901,2.008,0,2.564706,4.5,4.5 +1173,0,0.011124,1,1,1,2,4,,4,3,Square Lake,Rd,615807,1.89,1.901,0,0.266965,4.5,4.5 +1858,0,0.096996,1,1,0,2,4,,4,3,Square Lake,Rd,615807,2.008,2.105,0,2.327904,4.5,4.5 +572,1,0.294275,1,0,0,1,1,ROF,4,3,N I 75/Adams,RAMP,616803,0,0.294,0,,2.24,5 +661,-1,0.239549,0,3,0,1,1,,4,3,S I 75,,646106,15.349,15.589,0,,0.8,7.5 +1102,0,0.212075,1,1,0,2,3,,4,3,Adams,Rd,4415861,4.952,5.164,0,5.089793,3.7,5 +1070,0,0.006009,2,2,1,2,3,,4,3,Adams,Rd,4415861,4.946,4.952,0,0.144209,3.7,5 +1146,0,0.041157,1,1,0,2,3,,4,3,Adams,Rd,4415861,5.164,5.205,0,0.987764,3.7,5 +178,0,0.173159,1,1,0,2,5,,4,3,Arlund,Way,607102,0.247,0.42,0,4.155825,5.8,4.5 +2010,0,0.436097,1,1,0,2,5,,4,3,Beach,Rd,625404,0.208,0.644,0,10.466339,5.8,4.5 +29767,0,0.354066,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.497585,0.15,4 +29766,0,0.09769,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.344571,0.15,4 +380,0,0.500102,1,1,0,2,4,,4,3,South,Blvd,616405,2.006,2.506,0,12.002449,4.5,4.5 +1401,0,0.20301,1,1,0,2,3,,4,3,Adams,Rd,4415861,5.786,5.989,0,4.872234,3.7,5 +1532,0,0.072604,1,1,0,2,4,,4,3,South,Blvd,616405,1.934,2.006,0,1.742506,4.5,4.5 +1432,0,0.371726,1,1,1,2,3,,4,3,Adams,Rd,4415861,5.989,6.361,0,8.921418,3.7,5 +34584,1,0.422572,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,0.097,0.519,0,10.141737,4.5,4.5 +1037,0,0.369912,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.791,4.161,0,8.877879,4.5,4.5 +1725,1,0.013879,3,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.88,0.894,0,0.333087,4.5,4.5 +2929,-1,0.639198,0,3,0,1,2,,4,3,W M 59,,677208,2.933,3.572,0,,0.8,7.5 +39847,-1,0.311378,0,2,0,2,3,DIV,4,3,West Maple,Rd,4416612,0.213,0.524,0,7.47307,3.7,5 +21434,-1,0.117919,0,3,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.781,0.899,0,2.830067,4.5,4.5 +25202,0,0.249368,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.984828,0.15,4 +40075,0,0.521707,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.520964,0.15,4 +28485,0,0.611668,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.68002,0.15,4 +28529,0,0.225108,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.402596,0.15,4 +29780,0,0.736024,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.664577,0.15,4 +30192,0,0.269444,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.466652,0.15,4 +636,0,0.0668,1,1,1,2,5,,4,3,Squirrel,Rd,4414555,0,0.067,0,1.60321,5.8,4.5 +1315,0,0.115477,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.494,3.61,0,2.771448,4.5,4.5 +1391,1,0.010354,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.068,0.078,0,0.2485,4.5,4.5 +3187,1,0.200574,3,0,0,1,2,,4,3,E M 59,,648906,24.518,24.719,0,,0.8,7.5 +37931,1,0.308638,1,0,0,1,2,ROF,4,3,W M 59/Squirrel,RAMP,4462970,0,0.309,0,,2.24,5 +21392,1,0.277213,1,0,0,1,2,ROF,4,3,E M 59/SB Squirrel,RAMP,4414041,0,0.277,0,,2.24,5 +21437,-1,0.010561,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.068,0.079,0,0.25346,4.5,4.5 +29778,0,0.290729,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.977484,0.15,4 +30191,0,0.284669,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.832051,0.15,4 +29779,0,0.330261,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.926262,0.15,4 +1248,0,0.102425,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.392,3.494,0,2.458191,4.5,4.5 +855,0,0.012955,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.61,3.623,0,0.310918,4.5,4.5 +1300,1,0.012188,1,0,0,2,4,,4,3,Squirrel,Ct,4414555,0.161,0.173,0,0.292509,4.5,4.5 +34504,0,0.168556,1,1,1,2,4,,4,3,Auburn,Rd,625105,3.623,3.791,0,4.045355,4.5,4.5 +2173,0,0.062768,1,1,0,2,5,,4,3,Squirrel,Rd,4414555,0.067,0.13,0,1.506428,5.8,4.5 +1796,1,0.031172,1,0,0,2,5,,4,3,Squirrel,Ct,4414555,0.13,0.161,0,0.748138,5.8,4.5 +34585,1,0.175486,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,0.519,0.695,0,4.211669,4.5,4.5 +1429,1,0.165989,3,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.611,0.777,0,3.983737,4.5,4.5 +3181,1,0.360513,3,0,0,1,2,,4,3,E M 59,,648906,24.719,25.079,0,,0.8,7.5 +21389,1,0.34072,1,0,0,1,2,RON,4,3,Squirrel/E M 59,RAMP,4414043,0.021,0.362,0,,1.09,4 +21391,1,0.393344,1,0,0,1,2,ROF,4,3,E M 59/NB Squirrel,RAMP,4414042,0,0.393,0,,2.24,5 +21435,-1,0.205526,0,3,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.575,0.781,0,4.932621,4.5,4.5 +934,1,0.086919,3,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.524,0.611,0,2.086055,4.5,4.5 +21390,1,0.020935,2,0,0,1,4,RSF,4,3,Squirrel/E M 59,RAMP,4414043,0,0.021,0,,4.5,4.5 +21436,-1,0.032249,0,3,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.543,0.575,0,0.773986,4.5,4.5 +969,1,0.102985,3,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.777,0.88,0,2.471646,4.5,4.5 +40128,0,0.013253,1,1,0,2,5,,3,2,Levan,Rd,1604605,4.212,4.225,0,0.318077,8,4.5 +1232,1,0.452033,2,0,0,2,4,DIV,4,3,Featherstone,,616508,1.068,1.52,0,10.848789,4.5,4.5 +30194,0,0.511879,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.285091,0.15,4 +30195,0,0.499088,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.9781,0.15,4 +28528,0,0.306785,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.362847,0.15,4 +30193,0,0.293432,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.042374,0.15,4 +1018,1,0.200737,3,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.894,1.095,0,4.817692,4.5,4.5 +40072,-1,0.221304,0,2,0,2,4,DIV,4,3,Featherstone,,4463325,0.744,0.965,0,5.311296,4.5,4.5 +40073,-1,0.451241,0,2,0,2,4,DIV,4,3,Featherstone,,4463325,0.965,1.416,0,10.829784,4.5,4.5 +40074,-1,0.032087,0,2,0,2,4,,4,3,Featherstone,,4463325,1.416,1.448,0,0.770093,4.5,4.5 +560,1,0.132066,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,1.095,1.227,0,3.16959,4.5,4.5 +21399,-1,0.015256,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,1.109,1.125,0,0.366144,4.5,4.5 +40071,-1,0.744211,0,2,0,2,4,DIV,4,3,Featherstone,,4463325,0,0.744,0,17.86106,4.5,4.5 +37593,1,0.01539,2,0,0,2,3,DIV,4,3,Adams,Rd,4415861,8.263,8.279,0,0.36936,3.7,5 +34583,1,0.096717,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,0,0.097,0,2.321199,4.5,4.5 +37592,1,0.084689,2,0,0,2,3,DIV,4,3,Adams,Rd,4415861,8.179,8.263,0,2.032547,3.7,5 +1217,0,0.030437,1,1,0,2,4,,4,3,South,Blvd,616405,3.394,3.424,0,0.730486,4.5,4.5 +1566,0,0.722148,1,1,0,2,4,,4,3,Square Lake,Rd,615807,3.079,3.801,0,17.331546,4.5,4.5 +3315,1,0.553697,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,8.303,8.857,0,13.288722,3.7,5 +4834,0,0.745043,1,1,0,2,4,,4,3,Coolidge,Rd,693006,5.54,6.285,0,17.881042,4.5,4.5 +25587,0,0.530203,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.72486,0.15,4 +39867,0,0.998879,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.973096,0.15,4 +28531,0,0.581819,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.963656,0.15,4 +4838,0,0.367124,1,1,0,2,4,,4,3,Coolidge,Rd,693006,5.173,5.54,0,8.810979,4.5,4.5 +4841,1,0.203953,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,4.856,5.06,0,4.894874,4.5,4.5 +4843,1,0.079013,2,0,0,2,4,DV2,4,3,Coolidge,Rd,693006,4.777,4.856,0,1.896318,4.5,4.5 +28522,0,0.591245,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.189884,0.15,4 +1912,0,0.383043,1,1,0,2,4,,4,3,South,Blvd,616405,3.011,3.394,0,9.193028,4.5,4.5 +272,0,0.117961,1,1,0,2,4,,4,3,Square Lake,Rd,615807,3.801,3.919,0,2.831061,4.5,4.5 +3331,1,0.515256,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.788,8.303,0,12.366151,3.7,5 +21157,-1,0.515537,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,1.544,2.059,0,12.37288,3.7,5 +25589,0,0.580505,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.932123,0.15,4 +25653,0,0.289805,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.955318,0.15,4 +27291,0,0.302762,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.266294,0.15,4 +28530,0,0.505332,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.127975,0.15,4 +288,1,0.017302,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,4.073,4.09,0,0.415249,4.5,4.5 +3099,1,0.315809,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.452,7.767,0,7.579416,3.7,5 +20352,-1,0.015739,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4405539,0.16,0.176,0,0.377729,4.5,4.5 +21159,-1,0.315394,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,1.208,1.524,0,7.569449,3.7,5 +1696,1,0.154255,2,0,0,2,4,DIV,4,3,Square Lake,Rd,615807,3.919,4.073,0,3.70213,4.5,4.5 +20545,-1,0.160066,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4405539,0,0.16,0,3.841577,4.5,4.5 +21158,-1,0.020433,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,1.524,1.544,0,0.490391,3.7,5 +2513,1,0.114395,2,0,0,1,1,ROF,4,3,N I 75/Crooks,RAMP,681303,0.656,0.77,0,,2.24,5 +3063,1,0.217308,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.234,7.452,0,5.215385,3.7,5 +40255,1,0.015605,2,0,0,2,3,,4,3,N I 75/Crooks,RAMP,681303,0.77,0.786,0,0.374528,3.7,5 +40253,1,0.083713,2,0,0,2,5,,4,3,Corporate,Dr,1848503,0.251,0.335,0,2.009122,5.8,4.5 +2812,1,0.02075,3,0,0,2,3,DIV,4,3,Crooks,Rd,659810,7.767,7.788,0,0.497997,3.7,5 +39859,0,0.013571,1,1,1,2,4,,4,3,Auburn,Rd,625105,6.166,6.18,0,0.325711,4.5,4.5 +1911,0,0.577444,1,1,0,2,4,,4,3,South,Blvd,616405,3.424,4.002,0,13.858652,4.5,4.5 +3003,1,0.508099,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,8.857,9.365,0,12.194382,3.7,5 +34581,-1,0.210696,0,3,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.899,1.109,0,5.056701,4.5,4.5 +1276,0,0.862365,1,1,0,2,4,,4,3,Auburn,Rd,625105,5.304,6.166,0,20.696756,4.5,4.5 +2449,0,0.139676,2,2,1,2,4,,4,3,Crooks,Rd,659810,10.542,10.681,0,3.352215,4.5,4.5 +27590,0,1.036744,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.881862,0.15,4 +28487,0,0.425171,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.204107,0.15,4 +28515,0,0.333438,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.002509,0.15,4 +28516,0,0.759476,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.227416,0.15,4 +28514,0,0.364899,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.757578,0.15,4 +1772,0,0.040762,1,1,0,2,4,,4,3,Auburn,Rd,625105,5.263,5.304,0,0.978279,4.5,4.5 +1817,0,0.504726,1,1,0,2,3,,4,3,Adams,Rd,4415861,8.591,9.096,0,12.113434,3.7,5 +25714,0,0.511976,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.287413,0.15,4 +37575,-1,0.332888,0,3,0,1,2,,4,3,W M 59,,677208,4.332,4.665,0,,0.8,7.5 +253,1,0.386285,1,0,0,1,2,ROF,4,3,E M 59/Crooks,RAMP,604703,0,0.386,0,,2.24,5 +3152,1,0.32611,3,0,0,1,2,,4,3,E M 59,,648906,26.964,27.29,0,,0.8,7.5 +3392,0,0.058428,2,2,1,2,3,,4,3,Crooks,Rd,659810,9.999,10.058,0,1.40226,3.7,5 +3862,1,0.292499,1,0,0,1,2,RON,4,3,S Crooks/W M 59,RAMP,681306,0,0.292,0,,1.09,4 +2968,1,0.24117,2,0,0,2,3,DIV,4,3,Crooks,Rd,659810,9.758,9.999,0,5.788079,3.7,5 +2723,0,0.02354,2,2,1,2,3,,4,3,Crooks,Rd,659810,10.289,10.313,0,0.564969,3.7,5 +3090,1,0.296922,1,0,0,1,2,RON,4,3,N Crooks/E M 59,RAMP,681304,0,0.297,0,,1.09,4 +3067,0,0.231454,2,2,1,2,3,,4,3,Crooks,Rd,659810,10.058,10.289,0,5.554906,3.7,5 +40070,-1,0.105037,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,1.125,1.23,0,2.520888,4.5,4.5 +2828,0,0.469591,1,1,0,2,4,,4,3,Crooks,Rd,659810,10.9,11.369,0,11.270175,4.5,4.5 +28488,0,0.514587,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.35008,0.15,4 +191,0,0.109188,2,2,1,2,4,,4,3,Hamlin,Rd,606606,0,0.109,0,2.620524,4.5,4.5 +3122,0,0.218846,2,2,1,2,4,,4,3,Crooks,Rd,659810,10.681,10.9,0,5.252298,4.5,4.5 +205,0,0.42361,1,1,0,2,5,,4,3,Brewster,Rd,605703,0.943,1.366,0,10.166639,5.8,4.5 +280,0,0.655078,1,1,0,2,4,,4,3,Adams,Rd,4415861,11.45,12.105,0,15.72186,4.5,4.5 +630,0,1.09144,1,1,1,2,5,,4,3,Squirrel,Rd,4414558,4.192,5.283,0,26.194571,5.8,4.5 +1030,0,0.93054,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,3.831,4.762,0,22.332971,4.5,4.5 +1567,0,0.438967,1,1,0,2,4,,4,3,Dutton,Rd,626101,1.454,1.893,0,10.535206,4.5,4.5 +2149,1,0.686813,2,0,0,2,3,DIV,4,3,Walton,Blvd,616602,2.221,2.908,0,16.483502,3.7,5 +21118,-1,0.706643,0,2,0,2,3,DIV,4,3,Walton,Blvd,4409857,0.684,1.39,0,16.95942,3.7,5 +25184,0,0.622647,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.943526,0.15,4 +28473,0,0.531881,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.765146,0.15,4 +28483,0,0.525308,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.607384,0.15,4 +28490,0,0.552678,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.264276,0.15,4 +28536,0,0.555784,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.338811,0.15,4 +28540,0,0.523275,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.558603,0.15,4 +30201,0,0.46482,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.15568,0.15,4 +857,1,0.18338,2,0,0,2,5,DIV,4,3,Squirrel,Rd,4414558,3.181,3.364,0,4.401128,5.8,4.5 +1552,1,0.348829,2,0,0,2,3,DIV,4,3,Walton,Blvd,616602,1.522,1.871,0,8.371892,3.7,5 +21119,-1,0.316843,0,2,0,2,3,DIV,4,3,Walton,Blvd,4409857,0.367,0.684,0,7.604234,3.7,5 +21120,-1,0.36689,0,2,0,2,3,DIV,4,3,Walton,Blvd,4409857,0,0.367,0,8.805355,3.7,5 +21393,-1,0.181523,0,2,0,2,5,DIV,4,3,Squirrel,Rd,4414559,3.189,3.37,0,4.35656,5.8,4.5 +24899,0,0.513162,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.315881,0.15,4 +25554,0,0.536866,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.88478,0.15,4 +28480,0,0.790352,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.968436,0.15,4 +28482,0,0.612522,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.700528,0.15,4 +30186,0,0.530416,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.729993,0.15,4 +30197,0,0.815763,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.578321,0.15,4 +1454,1,0.454998,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,2.277,2.732,0,10.919956,4.5,4.5 +1982,0,0.476505,2,2,1,2,3,,4,3,Walton,Blvd,616602,1.029,1.505,0,11.436109,3.7,5 +40317,1,0.044073,1,0,0,1,1,RON,4,3,University/N I 75,RAMP,5500951,0,0.044,0,,1.09,4 +21109,0,0.358758,1,1,1,2,5,,4,3,Five Points,Dr,4463363,0.102,0.46,0,8.610184,5.8,4.5 +21396,-1,0.444584,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,2.295,2.74,0,10.67001,4.5,4.5 +25194,0,0.386209,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.269016,0.15,4 +25195,0,0.365639,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.775337,0.15,4 +30196,0,0.4149,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.957604,0.15,4 +40318,1,0.035154,1,0,0,1,1,RON,4,3,W University/N I 75,RAMP,5500957,0,0.035,0,,1.09,4 +1316,1,0.01826,3,0,0,2,3,DIV,4,3,Squirrel,Rd,4414558,2.732,2.75,0,0.438249,3.7,5 +21395,-1,0.016267,0,3,0,2,3,DIV,4,3,Squirrel,Rd,4414559,2.74,2.756,0,0.390409,3.7,5 +40315,1,0.37157,1,0,0,1,1,ROF,4,3,S I 75/University,RAMP,678208,0,0.372,0,,2.24,5 +21394,-1,0.069472,0,3,0,2,3,DIV,4,3,Squirrel,Rd,4414559,3.119,3.189,0,1.66734,3.7,5 +2058,0,0.016763,2,2,1,2,3,,4,3,Walton,Blvd,616602,1.505,1.522,0,0.402311,3.7,5 +471,0,0.303694,1,1,1,2,5,,4,3,Squirrel,Rd,4414558,3.63,3.934,0,7.288657,5.8,4.5 +930,0,0.265944,1,1,1,2,5,,4,3,Squirrel,Rd,4414558,3.364,3.63,0,6.382663,5.8,4.5 +25185,0,0.245355,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.888522,0.15,4 +1080,0,0.258209,1,1,1,2,5,,4,3,Squirrel,Rd,4414558,3.934,4.192,0,6.197016,5.8,4.5 +30203,0,0.589668,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.15203,0.15,4 +619,1,0.350437,2,0,0,2,3,DIV,4,3,Walton,Blvd,616602,1.871,2.221,0,8.410495,3.7,5 +24897,0,0.530148,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.723558,0.15,4 +377,0,0.999222,1,1,0,2,5,,4,3,Squirrel,Rd,4414558,5.283,6.282,0,23.981332,5.8,4.5 +2148,0,0.665934,1,1,0,2,4,,4,3,Dutton,Rd,626101,0.788,1.454,0,15.982411,4.5,4.5 +27568,0,0.683986,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.415674,0.15,4 +28532,0,0.565879,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.581106,0.15,4 +618,0,0.224433,1,1,0,2,4,,4,3,Dutton,Rd,626101,0.564,0.788,0,5.386395,4.5,4.5 +1134,0,0.356428,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,3.219,3.575,0,8.554281,4.5,4.5 +27569,0,0.534757,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.83418,0.15,4 +1615,0,0.088521,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,3.131,3.219,0,2.124496,4.5,4.5 +1500,0,0.256228,1,1,0,2,4,,4,3,Silver Bell,Rd,626102,3.575,3.831,0,6.149461,4.5,4.5 +28535,0,0.544042,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.057014,0.15,4 +228,0,0.292665,1,1,0,2,4,,4,3,Avon,Rd,605102,0.531,0.824,0,7.023956,4.5,4.5 +231,0,0.456848,1,1,0,2,4,,4,3,Old Perch,Rd,604710,0.64,1.096,0,10.964354,4.5,4.5 +516,0,0.752862,1,1,0,2,4,,4,3,Tienken,Rd,626010,1.937,2.689,0,18.068687,4.5,4.5 +761,0,0.506271,2,2,0,2,3,,4,3,Walton,Blvd,616602,3.509,4.015,0,12.150498,3.7,5 +2032,0,0.335597,1,1,0,2,3,,4,3,Adams,Rd,4415861,10.16,10.495,0,8.054327,3.7,5 +24901,0,0.538623,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.926956,0.15,4 +24903,0,0.552862,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.268678,0.15,4 +25547,0,0.749381,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.985133,0.15,4 +230,0,0.470043,1,1,0,2,4,,4,3,Avon,Rd,605102,0,0.47,0,11.281042,4.5,4.5 +1724,0,0.714307,1,1,0,2,3,,4,3,Adams,Rd,4415861,9.446,10.16,0,17.14338,3.7,5 +24902,0,0.546807,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.123359,0.15,4 +25717,0,0.581682,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.960379,0.15,4 +229,0,0.061132,1,1,0,2,4,,4,3,Avon,Rd,605102,0.47,0.531,0,1.467156,4.5,4.5 +206,0,0.468027,1,1,1,2,5,,4,3,Brewster,Rd,605703,0.475,0.943,0,11.232653,5.8,4.5 +1947,0,0.294083,1,1,0,2,4,,4,3,Tienken,Rd,626010,1.643,1.937,0,7.057983,4.5,4.5 +2168,1,0.236089,2,0,0,2,3,DIV,4,3,Walton,Blvd,616602,2.908,3.144,0,5.666124,3.7,5 +2178,0,0.496058,1,1,0,2,4,,4,3,Adams,Rd,4415861,10.955,11.45,0,11.905403,4.5,4.5 +21117,-1,0.23485,0,2,0,2,3,DIV,4,3,Walton,Blvd,4409857,1.39,1.625,0,5.63639,3.7,5 +24905,0,0.482153,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.57168,0.15,4 +28476,0,0.28802,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.912485,0.15,4 +2122,0,0.397358,1,1,0,2,4,,4,3,Adams,Rd,4415861,10.516,10.914,0,9.536588,4.5,4.5 +2033,0,0.021053,2,2,0,2,3,,4,3,Adams,Rd,4415861,10.495,10.516,0,0.505273,3.7,5 +2156,0,0.041032,1,1,0,2,4,,4,3,Adams,Rd,4415861,10.914,10.955,0,0.984758,4.5,4.5 +858,0,0.212984,1,1,0,2,4,,4,3,Tienken,Rd,626010,1.403,1.616,0,5.111604,4.5,4.5 +392,0,0.026372,1,1,0,2,4,,4,3,Tienken,Rd,626010,1.616,1.643,0,0.632932,4.5,4.5 +208,0,0.403679,1,1,1,2,5,,4,3,Brewster,Rd,605703,0,0.404,0,9.688302,5.8,4.5 +747,0,0.245475,2,2,1,2,3,,4,3,Walton,Blvd,616602,3.227,3.473,0,5.891405,3.7,5 +24904,0,0.283682,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.808362,0.15,4 +28474,0,0.462815,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.107556,0.15,4 +1663,0,0.083469,2,2,1,2,3,,4,3,Walton,Blvd,616602,3.144,3.227,0,2.003259,3.7,5 +277,0,0.036321,2,2,1,2,3,,4,3,Walton,Blvd,616602,3.473,3.509,0,0.871716,3.7,5 +207,0,0.071013,1,1,1,2,5,,4,3,Brewster,Rd,605703,0.404,0.475,0,1.704322,5.8,4.5 +227,0,0.274709,1,1,1,2,4,,4,3,Avon,Rd,605102,0.824,1.098,0,6.593016,4.5,4.5 +232,0,0.218401,1,1,0,2,4,,4,3,Old Perch,Rd,604710,0.421,0.64,0,5.24163,4.5,4.5 +226,0,0.205017,1,1,0,2,4,,4,3,Avon,Rd,605102,1.098,1.303,0,4.920399,4.5,4.5 +233,0,0.421449,1,1,0,2,4,,4,3,Old Perch,Rd,604710,0,0.421,0,10.114773,4.5,4.5 +28475,0,0.466961,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.207054,0.15,4 +297,0,0.271158,2,2,1,2,3,,4,3,Walton,Blvd,616602,4.015,4.286,0,6.507788,3.7,5 +28477,0,0.476674,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.440166,0.15,4 +2066,0,0.048215,1,1,0,2,4,,4,3,Tienken,Rd,626010,2.689,2.738,0,1.157162,4.5,4.5 +200,0,0.42386,1,1,0,2,7,GRV,4,3,Brewster,Rd,605703,2.038,2.462,0,10.172636,6.55,4.5 +980,0,0.255807,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,5.274,5.53,0,6.139366,5.8,4.5 +1116,0,0.646966,1,1,0,2,4,,4,3,Adams,Rd,4415861,12.54,13.187,0,15.527189,4.5,4.5 +1623,0,0.458554,1,1,0,2,5,,4,3,Dutton,Rd,626101,2.443,2.902,0,11.005303,5.8,4.5 +28469,0,0.610683,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.656385,0.15,4 +28578,0,0.626737,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.041677,0.15,4 +30199,0,0.73001,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.520249,0.15,4 +202,0,0.468244,1,1,0,2,5,,4,3,Brewster,Rd,605703,1.57,2.038,0,11.237851,5.8,4.5 +612,0,0.43511,1,1,0,2,4,,4,3,Adams,Rd,4415861,12.105,12.54,0,10.442631,4.5,4.5 +638,0,0.290025,1,1,0,2,5,GRV,4,3,Dutton,Rd,626101,2.153,2.443,0,6.9606,6.55,4.5 +25549,0,0.54766,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.14384,0.15,4 +28489,0,0.290567,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.973615,0.15,4 +1087,0,0.260489,1,1,0,2,5,GRV,4,3,Dutton,Rd,626101,1.893,2.153,0,6.251736,6.55,4.5 +203,0,0.204107,1,1,0,2,5,,4,3,Brewster,Rd,605703,1.366,1.57,0,4.898572,5.8,4.5 +30198,0,0.299515,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.188367,0.15,4 +199,0,0.55587,1,1,0,2,7,GRV,4,3,Brewster,Rd,605703,2.462,3.018,0,13.340881,6.55,4.5 +575,0,0.512336,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,4.762,5.274,0,12.296069,5.8,4.5 +2004,0,0.337309,1,1,0,2,4,,4,3,Adams,Rd,4415861,13.187,13.524,0,8.095416,4.5,4.5 +24965,0,0.664814,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,15.95554,0.15,4 +30177,0,0.11872,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.849273,0.15,4 +1145,0,0.131435,1,1,0,2,5,,4,3,Dutton,Rd,626101,2.902,3.033,0,3.15444,5.8,4.5 +28470,0,0.57776,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.866231,0.15,4 +2064,0,0.244811,1,1,0,2,5,GRV,4,3,Silver Bell,Rd,626102,5.787,6.032,0,5.875464,6.55,4.5 +515,0,0.257766,1,1,0,2,5,,4,3,Silver Bell,Rd,626102,5.53,5.787,0,6.186379,5.8,4.5 +185,0,0.222312,1,1,1,2,4,,4,3,Hamlin,Rd,606606,2.074,2.296,0,5.33549,4.5,4.5 +209,1,0.425138,1,0,0,1,2,ROF,4,3,E M 59/M 150,RAMP,605207,0,0.425,0,,2.24,5 +391,0,0.512746,1,1,0,2,4,,4,3,Square Lake,Rd,615807,5.581,6.093,0,12.305905,4.5,4.5 +1781,0,0.502996,1,1,0,2,4,,4,3,South,Blvd,616405,5.509,6.011,0,12.071906,4.5,4.5 +1921,0,0.36866,1,1,0,2,4,,4,3,Auburn,Rd,625105,7.776,8.145,0,8.847829,4.5,4.5 +2016,0,0.337405,1,1,0,2,4,,4,3,Livernois,Rd,625408,5.693,6.03,0,8.097724,4.5,4.5 +2338,0,0.726492,1,1,1,2,4,,4,3,John R,Rd,646806,12.375,13.102,0,17.435815,4.5,4.5 +2586,-1,0.330125,0,3,0,1,2,,4,3,W M 59,,677208,7.905,8.235,0,,0.8,7.5 +2865,-1,1.799396,0,3,0,1,2,,4,3,W M 59,,677208,6.106,7.905,0,,0.8,7.5 +3136,1,0.311225,3,0,0,1,2,,4,3,E M 59,,648906,29.436,29.747,0,,0.8,7.5 +3846,1,0.300352,1,0,0,1,2,RON,4,3,S M 150/W M 59,RAMP,683004,0,0.3,0,,1.09,4 +3848,1,0.317744,1,0,0,1,2,RON,4,3,S M 150/E M 59,RAMP,683002,0,0.318,0,,1.09,4 +21708,0,0.362772,2,2,1,2,3,,4,3,Rochester,Rd,4413538,10.467,10.829,0,8.706524,3.7,5 +21714,0,0.078038,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.295,9.373,0,1.872904,3.7,5 +24913,0,0.472837,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.348087,0.15,4 +24917,0,0.511587,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.278081,0.15,4 +25080,0,0.438964,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.535136,0.15,4 +27341,0,0.673439,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.162537,0.15,4 +28273,0,0.529096,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.698307,0.15,4 +28499,0,0.535604,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.854499,0.15,4 +28508,0,0.48325,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.598002,0.15,4 +28513,0,0.451676,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.840231,0.15,4 +1092,0,0.254412,1,1,0,2,4,,4,3,South,Blvd,616405,5.003,5.257,0,6.105881,4.5,4.5 +1424,0,0.649546,1,1,0,2,4,,4,3,Livernois,Rd,625408,4.012,4.661,0,15.589106,4.5,4.5 +1819,0,0.253477,1,1,0,2,4,,4,3,Square Lake,Rd,615807,5.078,5.332,0,6.083456,4.5,4.5 +24916,0,0.555521,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.332503,0.15,4 +25715,0,0.437309,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.495411,0.15,4 +28511,0,0.502558,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.061395,0.15,4 +28512,0,0.51707,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.409668,0.15,4 +28525,0,0.55561,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.334649,0.15,4 +1442,0,0.335972,1,1,1,2,4,,4,3,Square Lake,Rd,615807,4.743,5.078,0,8.063335,4.5,4.5 +24964,0,0.552122,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.250938,0.15,4 +25657,0,0.455695,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.936689,0.15,4 +1970,-1,0.454309,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4405539,0.176,0.63,0,10.903411,4.5,4.5 +1079,-1,0.201086,0,2,0,2,4,DIV,4,3,Square Lake,Rd,4405539,0.63,0.831,0,4.826068,4.5,4.5 +1944,0,0.544308,1,1,0,2,4,,4,3,Livernois,Rd,625408,3.467,4.012,0,13.063385,4.5,4.5 +25659,0,0.368255,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.838111,0.15,4 +732,0,0.496847,1,1,0,2,4,,4,3,South,Blvd,616405,4.506,5.003,0,11.92433,4.5,4.5 +1237,0,0.317714,1,1,0,2,4,,4,3,Livernois,Rd,625408,5.125,5.443,0,7.625147,4.5,4.5 +28506,0,0.494484,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.867623,0.15,4 +28510,0,0.445888,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.701317,0.15,4 +1396,0,0.032232,1,1,0,2,4,,4,3,South,Blvd,616405,4.474,4.506,0,0.773557,4.5,4.5 +1726,0,0.46414,1,1,0,2,4,,4,3,Livernois,Rd,625408,4.661,5.125,0,11.139369,4.5,4.5 +472,0,0.250413,1,1,0,2,4,,4,3,Livernois,Rd,625408,5.443,5.693,0,6.009906,4.5,4.5 +293,0,0.24898,1,1,0,2,4,,4,3,Square Lake,Rd,615807,5.332,5.581,0,5.975516,4.5,4.5 +25661,0,0.573772,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.77052,0.15,4 +26129,0,0.553969,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.295258,0.15,4 +1809,0,0.251594,1,1,0,2,4,,4,3,South,Blvd,616405,5.257,5.509,0,6.038265,4.5,4.5 +24911,0,0.440634,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.575218,0.15,4 +40549,-1,0.066442,0,1,0,2,4,,4,3,Livernois,Rd,5499956,0,0.066,0,1.594614,4.5,4.5 +1216,0,0.668581,1,1,0,2,4,,4,3,Auburn,Rd,625105,7.108,7.776,0,16.045946,4.5,4.5 +40550,1,0.039423,2,0,0,2,4,,4,3,Livernois,Rd,625408,10.109,10.149,0,0.946141,4.5,4.5 +28493,0,0.555659,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.335813,0.15,4 +28507,0,0.514065,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.337551,0.15,4 +28520,0,0.683351,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.400434,0.15,4 +28521,0,0.592036,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.208854,0.15,4 +1646,0,0.28721,1,1,0,2,4,,4,3,Livernois,Rd,625408,6.03,6.317,0,6.893043,4.5,4.5 +1699,0,0.389292,1,1,1,2,4,,4,3,Auburn,Rd,625105,6.719,7.108,0,9.343008,4.5,4.5 +28502,0,0.491601,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.798418,0.15,4 +28504,0,0.31895,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.654798,0.15,4 +1317,0,0.239477,1,1,1,2,4,,4,3,Auburn,Rd,625105,6.479,6.719,0,5.747442,4.5,4.5 +1171,0,0.258562,1,1,0,2,4,,4,3,Livernois,Rd,625408,6.317,6.576,0,6.205482,4.5,4.5 +733,0,0.065525,1,1,0,2,4,,4,3,Livernois,Rd,625408,6.576,6.641,0,1.572607,4.5,4.5 +40551,1,0.04205,1,0,0,2,4,,4,3,N Livernois / W Tienken cutoff,Rd,5499955,0,0.042,0,1.009211,4.5,4.5 +40548,1,0.026039,2,0,0,2,4,,4,3,Livernois,Rd,625408,10.083,10.109,0,0.624932,4.5,4.5 +28495,0,0.387851,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.308422,0.15,4 +28505,0,0.271828,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.52386,0.15,4 +499,0,0.416037,1,1,0,2,4,,4,3,Livernois,Rd,625408,7.443,7.859,0,9.984898,4.5,4.5 +24907,0,0.453138,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.875321,0.15,4 +186,0,0.460236,1,1,1,2,4,,4,3,Hamlin,Rd,606606,1.614,2.074,0,11.045656,4.5,4.5 +21707,0,0.374131,2,2,1,2,3,,4,3,Rochester,Rd,4413538,10.829,11.204,0,8.979142,3.7,5 +28492,0,0.521982,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.52757,0.15,4 +28494,0,0.479045,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.497089,0.15,4 +187,0,0.045167,1,1,1,2,4,,4,3,Hamlin,Rd,606606,1.569,1.614,0,1.084001,4.5,4.5 +21705,0,0.258061,2,2,1,2,3,,4,3,Rochester,Rd,4413538,11.204,11.462,0,6.193459,3.7,5 +895,0,0.338478,1,1,0,2,4,,4,3,South,Blvd,616405,6.682,7.02,0,8.123483,4.5,4.5 +1571,0,0.501301,1,1,0,2,4,,4,3,Square Lake,Rd,615807,6.597,7.099,0,12.031228,4.5,4.5 +2341,0,0.201371,1,1,1,2,4,,4,3,John R,Rd,646806,11.532,11.733,0,4.832904,4.5,4.5 +21764,0,0.36389,2,2,1,2,3,,4,3,Rochester,Rd,4413538,8.196,8.56,0,8.73337,3.7,5 +24919,0,0.512577,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.301844,0.15,4 +25665,0,0.501939,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.046535,0.15,4 +28262,0,0.566068,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.585632,0.15,4 +28272,0,0.579222,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.901319,0.15,4 +29519,0,0.606093,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.546232,0.15,4 +1130,0,0.410005,1,1,0,2,4,,4,3,Square Lake,Rd,615807,6.093,6.503,0,9.84013,4.5,4.5 +21768,0,0.361259,2,2,1,2,3,,4,3,Rochester,Rd,4413538,7.331,7.692,0,8.670217,3.7,5 +24918,0,0.514126,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.33902,0.15,4 +28263,0,0.521187,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.508482,0.15,4 +21765,0,0.504416,2,2,1,2,3,,4,3,Rochester,Rd,4413538,7.692,8.196,0,12.105972,3.7,5 +1816,0,0.094213,1,1,0,2,4,,4,3,Square Lake,Rd,615807,6.503,6.597,0,2.261103,4.5,4.5 +1751,0,0.670364,1,1,0,2,4,,4,3,South,Blvd,616405,6.011,6.682,0,16.088738,4.5,4.5 +21763,0,0.240008,2,2,1,2,3,,4,3,Rochester,Rd,4413538,8.56,8.8,0,5.760185,3.7,5 +25083,0,0.580265,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.92637,0.15,4 +29520,0,0.59367,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.24807,0.15,4 +3129,1,0.318427,3,0,0,1,2,,4,3,E M 59,,648906,29.747,30.066,0,,0.8,7.5 +3545,-1,0.309409,0,3,0,1,2,,4,3,W M 59,,677208,8.235,8.545,0,,0.8,7.5 +3845,1,0.422743,1,0,0,1,2,ROF,4,3,W M 59/M 150,RAMP,683005,0,0.423,0,,2.24,5 +3849,1,0.289237,1,0,0,1,2,RON,4,3,N M 150/E M 59,RAMP,683001,0,0.289,0,,1.09,4 +21757,0,0.088384,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.051,9.139,0,2.121221,3.7,5 +21762,0,0.209144,2,2,1,2,3,,4,3,Rochester,Rd,4413538,8.8,9.009,0,5.019458,3.7,5 +21760,0,0.042213,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.009,9.051,0,1.013106,3.7,5 +3847,1,0.313196,1,0,0,1,2,RON,4,3,N M 150/W M 59,RAMP,683003,0,0.313,0,,1.09,4 +21715,0,0.088085,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.207,9.295,0,2.114034,3.7,5 +21716,0,0.067998,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.139,9.207,0,1.631962,3.7,5 +1755,0,0.277588,1,1,0,2,4,,4,3,Square Lake,Rd,615807,7.099,7.376,0,6.662102,4.5,4.5 +2343,0,0.290444,1,1,1,2,4,,4,3,John R,Rd,646806,10.787,11.077,0,6.970647,4.5,4.5 +29005,0,0.509846,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.236295,0.15,4 +29006,0,0.546883,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.125186,0.15,4 +2344,0,0.272528,1,1,1,2,4,,4,3,John R,Rd,646806,10.515,10.787,0,6.54066,4.5,4.5 +2342,0,0.454526,1,1,1,2,4,,4,3,John R,Rd,646806,11.077,11.532,0,10.908622,4.5,4.5 +562,0,0.187193,1,1,0,2,4,,4,3,Square Lake,Rd,615807,7.376,7.563,0,4.492621,4.5,4.5 +2340,0,0.470371,1,1,1,2,4,,4,3,John R,Rd,646806,11.733,12.203,0,11.288905,4.5,4.5 +24914,0,0.588559,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.125425,0.15,4 +29518,0,0.505826,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.139831,0.15,4 +2339,0,0.172021,1,1,1,2,4,,4,3,John R,Rd,646806,12.203,12.375,0,4.128507,4.5,4.5 +183,0,0.688036,1,1,1,2,4,,4,3,Hamlin,Rd,606606,2.41,3.098,0,16.512853,4.5,4.5 +1312,0,0.646895,1,1,0,2,4,,4,3,Auburn,Rd,625105,8.515,9.162,0,15.525484,4.5,4.5 +2334,0,0.386615,1,1,0,2,4,,4,3,John R,Rd,646806,13.837,14.224,0,9.278749,4.5,4.5 +24909,0,0.496793,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.923036,0.15,4 +24910,0,0.563892,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.533414,0.15,4 +24920,0,0.577327,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.855855,0.15,4 +25078,0,0.546575,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.117795,0.15,4 +28501,0,0.492269,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.814458,0.15,4 +21711,0,0.445119,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.708,10.153,0,10.682854,3.7,5 +24906,0,0.53088,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.741118,0.15,4 +24921,0,0.225383,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.409181,0.15,4 +30202,0,0.535567,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.853611,0.15,4 +1403,0,0.334878,2,2,1,2,4,,4,3,Auburn,Rd,625105,8.145,8.48,0,8.037083,4.5,4.5 +21712,0,0.334935,2,2,1,2,3,,4,3,Rochester,Rd,4413538,9.373,9.708,0,8.038429,3.7,5 +1810,0,0.035274,2,2,1,2,4,,4,3,Auburn,Rd,625105,8.48,8.515,0,0.846587,4.5,4.5 +21709,0,0.313683,2,2,1,2,3,,4,3,Rochester,Rd,4413538,10.153,10.467,0,7.528384,3.7,5 +28500,0,0.505661,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.135854,0.15,4 +184,0,0.113395,1,1,1,2,4,,4,3,Hamlin,Rd,606606,2.296,2.41,0,2.721485,4.5,4.5 +1764,0,0.505272,1,1,0,2,4,,4,3,Auburn,Rd,625105,9.162,9.667,0,12.12653,4.5,4.5 +2337,0,0.347526,1,1,0,2,4,,4,3,John R,Rd,646806,13.102,13.449,0,8.340613,4.5,4.5 +24922,0,0.566962,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.607091,0.15,4 +25077,0,0.492477,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.819448,0.15,4 +2336,0,0.254886,1,1,0,2,4,,4,3,John R,Rd,646806,13.449,13.704,0,6.117266,4.5,4.5 +2335,0,0.133196,1,1,0,2,4,,4,3,John R,Rd,646806,13.704,13.837,0,3.196715,4.5,4.5 +182,0,0.532353,1,1,0,2,4,,4,3,Hamlin,Rd,606606,3.098,3.63,0,12.776462,4.5,4.5 +2333,0,0.24284,1,1,0,2,4,,4,3,John R,Rd,646806,14.224,14.466,0,5.828159,4.5,4.5 +2332,0,0.299009,1,1,0,2,4,,4,3,John R,Rd,646806,14.466,14.765,0,7.176217,4.5,4.5 +35751,1,0.026773,1,0,0,2,4,,4,3,Sheldon,Rd,605709,0.021,0.048,0,0.642562,4.5,4.5 +217,0,0.866678,1,1,1,2,3,,4,3,Avon,Rd,605102,3.064,3.931,0,20.800271,3.7,5 +35752,-1,0.031263,0,1,0,2,4,,4,3,Tienken,Rd,4415702,0,0.031,0,0.750305,4.5,4.5 +1295,0,0.340539,1,1,0,2,5,,3,3,2nd,St,609801,0.347,0.687,0,8.172943,8,4.5 +40545,0,0.369738,1,1,0,2,4,,4,3,Livernois,Rd,625408,9.713,10.083,0,8.873722,4.5,4.5 +35750,-1,0.028992,0,1,0,2,4,,4,3,Sheldon,Rd,4415701,0.017,0.046,0,0.695815,4.5,4.5 +3052,0,0.179021,1,1,0,2,5,,3,3,Romeo,Rd,678504,0,0.179,0,4.296498,8,4.5 +3553,0,0.505704,1,1,0,2,5,GRV,4,3,Mead,Rd,667710,0,0.506,0,12.136897,6.55,4.5 +35746,0,0.535328,1,1,1,2,4,,4,3,Tienken,Rd,626010,4.476,5.011,0,12.847876,4.5,4.5 +21645,0,0.36721,2,2,1,2,4,,4,3,Rochester,Rd,4413538,13.818,14.185,0,8.813045,4.5,4.5 +24966,0,0.993317,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.839612,0.15,4 +25537,0,0.564901,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.557625,0.15,4 +27573,0,0.467295,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.215092,0.15,4 +28539,0,0.579809,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.915411,0.15,4 +29769,0,0.58818,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.116316,0.15,4 +29770,0,0.843171,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.236105,0.15,4 +30200,0,0.470614,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.294741,0.15,4 +221,0,0.352055,1,1,0,2,3,,4,3,Avon,Rd,605102,2.029,2.381,0,8.449309,3.7,5 +40544,0,0.69131,1,1,0,2,4,,4,3,Tienken,Rd,626010,2.738,3.429,0,16.591441,4.5,4.5 +40407,1,0.677995,2,0,0,2,3,DIV,4,3,Livernois,Rd,625408,8.539,9.217,0,16.271889,3.7,5 +1124,0,0.248221,2,2,1,2,4,,4,3,University,Dr,616602,4.983,5.231,0,5.957301,4.5,4.5 +21651,0,0.265746,2,2,1,2,4,,3,3,Main,,4413538,12.613,12.879,0,6.377914,6,4.5 +25074,0,0.425165,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.203971,0.15,4 +25545,0,0.328051,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.873222,0.15,4 +25548,0,0.281341,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.752173,0.15,4 +28479,0,0.58387,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.012891,0.15,4 +29771,0,0.464013,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.136309,0.15,4 +223,0,0.535683,1,1,0,2,4,,4,3,Avon,Rd,605102,1.493,2.029,0,12.856386,4.5,4.5 +28478,0,0.502428,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.058266,0.15,4 +40405,-1,0.283313,0,2,0,2,3,DIV,4,3,Livernois,Rd,4416832,0,0.283,0,6.79951,3.7,5 +681,0,0.278314,2,2,1,2,3,,4,3,Walton,Blvd,616602,4.694,4.972,0,6.679527,3.7,5 +1309,0,0.139564,1,1,0,2,4,,4,3,Livernois,Rd,625408,9.574,9.713,0,3.349531,4.5,4.5 +40409,0,0.010597,2,2,1,2,3,,4,3,Walton,Blvd,616602,4.972,4.983,0,0.254317,3.7,5 +40547,0,0.279272,1,1,1,2,4,,4,3,Tienken,Rd,626010,3.545,3.824,0,6.702524,4.5,4.5 +29772,0,0.333911,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.013867,0.15,4 +218,0,0.460921,1,1,0,2,3,,4,3,Avon,Rd,605102,2.604,3.064,0,11.062114,3.7,5 +21699,0,0.23774,2,2,1,2,4,,4,3,Rochester,Rd,4413538,12.066,12.304,0,5.705764,4.5,4.5 +25541,0,0.596436,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.314459,0.15,4 +219,0,0.222897,1,1,0,2,3,,4,3,Avon,Rd,605102,2.381,2.604,0,5.349537,3.7,5 +25543,0,0.394345,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.464282,0.15,4 +21700,0,0.276122,2,2,1,2,4,,4,3,Rochester,Rd,4413538,11.79,12.066,0,6.626929,4.5,4.5 +21653,0,0.309699,2,2,1,2,4,,3,3,Main,,4413538,12.304,12.613,0,7.432771,6,4.5 +25544,0,0.174417,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.186011,0.15,4 +1369,0,0.41429,1,1,1,2,4,,4,3,Tienken,Rd,626010,4.062,4.476,0,9.942957,4.5,4.5 +2824,0,0.350125,2,2,0,2,4,,3,3,University,Dr,678410,0.396,0.746,0,8.403006,6,4.5 +21647,0,0.213263,2,2,1,2,4,,3,3,Main,,4413538,13.144,13.358,0,5.118301,6,4.5 +25553,0,0.270423,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.49016,0.15,4 +3463,0,0.166313,2,2,0,2,4,,3,3,University,Dr,678410,0.142,0.308,0,3.9915,6,4.5 +25550,0,0.371991,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.927782,0.15,4 +2489,0,0.141642,2,2,0,2,4,,3,3,University,Dr,678410,0,0.142,0,3.399406,6,4.5 +3120,0,0.08808,2,2,0,2,4,,3,3,University,Dr,678410,0.308,0.396,0,2.113929,6,4.5 +1878,0,0.237636,1,1,1,2,4,,4,3,Tienken,Rd,626010,3.824,4.062,0,5.703264,4.5,4.5 +21649,0,0.249264,2,2,1,2,4,,3,3,Main,,4413538,12.879,13.128,0,5.98233,6,4.5 +25552,0,0.220222,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.285326,0.15,4 +21648,0,0.016231,2,2,1,2,4,,3,3,Main,,4413538,13.128,13.144,0,0.389538,6,4.5 +21646,0,0.460356,2,2,1,2,4,,4,3,Main,,4413538,13.358,13.818,0,11.048554,4.5,4.5 +25551,0,0.297099,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.130372,0.15,4 +250,0,0.725477,1,1,0,2,4,,4,3,Orion,Rd,604708,1.103,1.828,0,17.411456,4.5,4.5 +1711,0,0.248395,1,1,0,2,5,GRV,4,3,Dutton,Rd,626101,3.782,4.03,0,5.961492,6.55,4.5 +21597,0,0.59512,1,1,1,2,4,,4,3,Rochester,Rd,4413538,14.911,15.506,0,14.282872,4.5,4.5 +24983,0,0.500197,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.004722,0.15,4 +28538,0,0.615463,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.771105,0.15,4 +467,0,0.505415,1,1,0,2,5,GRV,4,3,Livernois,Rd,625408,10.812,11.317,0,12.129952,6.55,4.5 +925,0,0.49457,1,1,0,2,5,GRV,4,3,Livernois,Rd,625408,10.318,10.812,0,11.86969,6.55,4.5 +251,0,0.320713,1,1,0,2,4,,4,3,Orion,Rd,604708,1.828,2.149,0,7.697114,4.5,4.5 +252,0,0.617305,1,1,0,2,4,,4,3,Orion,Rd,604708,0,0.617,0,14.815312,4.5,4.5 +21638,0,0.344533,1,1,1,2,4,,4,3,Rochester,Rd,4413538,14.314,14.659,0,8.268784,4.5,4.5 +28542,0,0.607713,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.58512,0.15,4 +29781,0,0.213821,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.131715,0.15,4 +249,0,0.485578,1,1,0,2,4,,4,3,Orion,Rd,604708,0.617,1.103,0,11.65388,4.5,4.5 +21643,0,0.129251,1,1,1,2,4,,4,3,Rochester,Rd,4413538,14.185,14.314,0,3.102013,4.5,4.5 +21637,0,0.252147,1,1,1,2,4,,4,3,Rochester,Rd,4413538,14.659,14.911,0,6.051537,4.5,4.5 +21596,0,0.318012,1,1,1,2,4,,4,3,Rochester,Rd,4413538,15.506,15.824,0,7.632289,4.5,4.5 +24981,0,0.485633,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.655183,0.15,4 +216,0,0.156419,1,1,1,2,3,,4,3,Avon,Rd,605102,3.931,4.087,0,3.754047,3.7,5 +1738,0,0.763359,1,1,0,2,5,,3,3,Letica,Dr,609801,0.687,1.451,0,18.320628,8,4.5 +3457,0,0.327876,1,1,0,2,5,,4,3,Parkdale,,678507,0.513,0.841,0,7.869015,5.8,4.5 +25538,0,0.578127,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.875049,0.15,4 +27572,0,0.46371,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.129046,0.15,4 +25536,0,0.132788,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.186909,0.15,4 +2486,0,0.318586,1,1,0,2,5,,3,3,Parkdale,,678507,0.194,0.513,0,7.646055,8,4.5 +25539,0,0.549368,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.184837,0.15,4 +28541,0,0.235182,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.644368,0.15,4 +2773,0,0.194284,1,1,0,2,5,,3,3,Parkdale,,678507,0,0.194,0,4.662822,8,4.5 +215,0,0.36729,1,1,0,2,3,,4,3,Avon,Rd,605102,4.087,4.454,0,8.814964,3.7,5 +25073,0,0.117255,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.81413,0.15,4 +2769,0,0.658736,1,1,0,2,5,,4,3,Parkdale,,678507,0.841,1.499,0,15.809652,5.8,4.5 +25071,0,0.535226,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.845418,0.15,4 +27541,0,0.613507,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.724163,0.15,4 +27540,0,0.186631,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.479136,0.15,4 +39805,-1,0.072089,0,2,0,2,4,,4,3,Oakley Park,Rd,4416630,0.089,0.161,0,1.730131,4.5,4.5 +27516,0,0.907797,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.787129,0.15,4 +27536,0,0.889627,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.351039,0.15,4 +196,0,0.252474,1,1,0,2,5,,4,3,Sheldon,Rd,605709,0.498,0.751,0,6.059383,5.8,4.5 +27538,0,0.306432,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.354358,0.15,4 +27539,0,0.474167,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.380017,0.15,4 +35749,0,0.450802,1,1,1,2,5,,4,3,Sheldon,Rd,605709,0.048,0.498,0,10.819257,5.8,4.5 +193,0,0.396489,1,1,0,2,5,GRV,4,3,Washington,Rd,4415706,0.51,0.906,0,9.515743,6.55,4.5 +39806,-1,0.023408,0,2,0,2,4,,4,3,Martin,Pkwy,4416631,0,0.023,0,0.56179,4.5,4.5 +234,0,0.784239,1,1,0,2,4,,4,3,Orion,Rd,604708,7.169,7.954,0,18.821739,4.5,4.5 +510,0,0.507782,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,7.719,8.227,0,12.186769,5.55,5 +1511,1,1.572502,2,0,0,2,3,DIV,5,3,M 24,,616604,12.377,13.949,0,37.740037,1.7,4 +2422,0,1.442106,1,1,0,2,5,GRV,5,3,Oxford,Rd,646502,2.34,3.782,0,34.610536,5.55,5 +2875,0,0.340932,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,6.643,6.984,0,8.18236,5.55,5 +2984,0,1.967101,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,4.354,6.321,0,47.210421,3,4 +21013,-1,1.580638,0,2,0,2,3,DIV,5,3,M 24,,4410277,1.324,2.904,0,37.935308,1.7,4 +21025,0,1.882204,1,1,0,2,5,GRV,5,3,Oxford,Rd,4410182,11.531,13.413,0,45.172886,5.55,5 +21087,0,1.504977,1,1,0,2,5,GRV,5,3,Coats,Rd,4410047,3.979,5.483,0,36.119436,5.55,5 +21103,0,1.534396,1,1,0,2,4,,5,3,Lakeville,Rd,4410040,1.475,3.009,0,36.825494,3,4 +21501,0,0.875485,1,1,0,2,4,,5,3,Rochester,Rd,4413538,25.743,26.618,0,21.011649,3,4 +25562,0,1.217816,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,29.227595,0.15,4 +25565,0,0.515456,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.370943,0.15,4 +25568,0,0.54006,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,12.96144,0.15,4 +28533,0,0.784273,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.822556,0.15,4 +28544,0,0.909886,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.837274,0.15,4 +28555,0,0.877441,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.058587,0.15,4 +28557,0,0.888067,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.313598,0.15,4 +29480,0,0.834867,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.036814,0.15,4 +30170,0,0.426485,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.235633,0.15,4 +30174,0,0.823439,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,19.762525,0.15,4 +30175,0,0.773003,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,18.55207,0.15,4 +290,0,0.553344,1,1,0,2,5,,4,3,Waldon,Rd,627303,6.161,6.714,0,13.280263,5.8,4.5 +823,0,0.762613,1,1,0,2,4,,4,3,Clarkston,Rd,627307,7.352,8.115,0,18.302709,4.5,4.5 +1198,1,0.519653,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,7.843,8.363,0,12.471683,3.7,5 +1447,0,0.687366,1,1,0,2,5,,4,3,Drahner,Rd,626708,1.467,2.155,0,16.496777,5.8,4.5 +2948,0,0.469822,1,1,0,2,4,,4,3,Seymour Lake,Rd,669104,1.867,2.337,0,11.27574,4.5,4.5 +3206,0,0.632804,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,0.697,1.33,0,15.187294,3,4 +37632,1,0.042135,2,0,0,2,4,,5,3,Baldwin,Rd,655009,7.085,7.127,0,1.01123,3,4 +37633,-1,0.038709,0,1,0,2,4,,5,3,Baldwin,Rd,4415709,0.023,0.062,0,0.929013,3,4 +21113,-1,0.520668,0,2,0,2,3,DIV,4,3,Lapeer,Rd,4410003,0.103,0.624,0,12.496033,3.7,5 +40659,0,1.302431,1,1,0,2,6,GRV,5,3,Dunlap,Rd,627009,0,1.302,0,31.258344,5.55,5 +28471,0,1.511741,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.281794,0.15,4 +28560,0,1.211633,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,29.079185,0.15,4 +28561,0,0.965388,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,23.169311,0.15,4 +28569,0,1.181098,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.34634,0.15,4 +28572,0,0.684831,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.435936,0.15,4 +28573,0,1.121609,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.918624,0.15,4 +28575,0,0.584059,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.017419,0.15,4 +28587,0,1.199779,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.794694,0.15,4 +30147,0,0.312904,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,7.509696,0.15,4 +1022,0,1.113952,1,1,0,2,5,GRV,4,3,Waldon,Rd,627303,3.522,4.636,0,26.734852,6.55,4.5 +1072,0,0.219293,1,1,0,2,4,,5,3,Clarkston,Rd,627307,4.944,5.163,0,5.263029,3,4 +1775,0,0.80304,1,1,0,2,4,,4,3,Clarkston,Rd,627307,5.755,6.557,0,19.272968,4.5,4.5 +3217,0,1.255857,1,1,0,2,4,,4,3,Baldwin,Rd,655009,4.425,5.68,0,30.140556,4.5,4.5 +37630,0,1.456517,1,1,0,2,5,,5,3,Indianwood,Rd,655208,0.039,1.496,0,34.956408,3.7,5 +26101,0,1.073357,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.760576,0.15,4 +28565,0,1.140238,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.365707,0.15,4 +28566,0,0.613752,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.730051,0.15,4 +1548,0,0.878514,1,1,0,2,4,,5,3,Clarkston,Rd,627307,4.066,4.944,0,21.084324,3,4 +4479,0,1.087249,1,1,0,2,4,,5,3,Clintonville,Rd,697001,3.296,4.383,0,26.093971,3,4 +26098,0,1.558869,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.412862,0.15,4 +26099,0,0.793008,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.032203,0.15,4 +817,0,0.502006,1,1,0,2,5,,5,3,Waldon,Rd,627303,3.021,3.522,0,12.048138,3.7,5 +26116,0,0.604464,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.507134,0.15,4 +4463,0,0.20358,1,1,0,2,4,,5,3,Clintonville,Rd,697001,4.383,4.586,0,4.885929,3,4 +767,0,1.007243,1,1,0,2,5,GRV,5,3,Eston,Rd,627507,0.516,1.522,0,24.173836,5.55,5 +3156,0,0.499267,1,1,0,2,5,GRV,5,3,Indianwood,Rd,653307,0.253,0.752,0,11.982402,5.55,5 +26091,0,0.802435,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.258438,0.15,4 +26092,0,0.815377,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.569042,0.15,4 +3427,0,0.647771,1,1,0,2,5,GRV,5,3,Dartmouth,Rd,653806,0.5,1.147,0,15.54651,5.55,5 +621,0,0.591449,1,1,0,2,4,,5,3,Clarkston,Rd,627307,5.163,5.755,0,14.194774,3,4 +1184,0,0.515624,1,1,0,2,5,,5,3,Eston,Rd,627507,0,0.516,0,12.37497,3.7,5 +2447,0,0.380408,1,1,0,2,5,GRV,5,3,Indianwood,Rd,653307,0.752,1.133,0,9.1298,5.55,5 +2457,0,0.127537,1,1,0,2,5,GRV,5,3,Indianwood,Rd,653307,1.133,1.26,0,3.060881,5.55,5 +28570,0,1.100545,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,26.413084,0.15,4 +754,0,0.034329,1,1,0,2,5,,4,3,Waldon,Rd,627303,6.127,6.161,0,0.823893,5.8,4.5 +28568,0,0.209045,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.017084,0.15,4 +1279,0,0.795054,1,1,0,2,4,,4,3,Clarkston,Rd,627307,6.557,7.352,0,19.081288,4.5,4.5 +37626,0,0.412356,1,1,0,2,4,,5,3,Baldwin,Rd,655009,6.672,7.085,0,9.896553,3,4 +28567,0,0.364773,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,8.754544,0.15,4 +28571,0,1.002947,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.070719,0.15,4 +28576,0,1.009817,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.235617,0.15,4 +2790,0,0.992544,1,1,0,2,4,,5,3,Baldwin,Rd,655009,5.68,6.672,0,23.821059,3,4 +37631,-1,0.042853,0,1,0,2,4,,5,3,Baldwin,Rd,4415707,0,0.043,0,1.028472,3,4 +37623,0,0.885783,1,1,0,2,5,GRV,5,3,Coats,Rd,4410047,0.067,0.952,0,21.258787,5.55,5 +37625,0,0.635547,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,0.062,0.697,0,15.253139,3,4 +2025,0,0.539025,1,1,0,2,5,GRV,5,3,Drahner,Rd,626708,0,0.539,0,12.936602,5.55,5 +2799,0,1.012956,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,3.341,4.354,0,24.310939,3,4 +2979,0,0.875071,1,1,0,2,4,,5,3,Seymour Lake,Rd,669104,0,0.875,0,21.001702,3,4 +21088,0,1.141172,1,1,0,2,5,GRV,5,3,Coats,Rd,4410047,2.838,3.979,0,27.388121,5.55,5 +40680,-1,0.028081,0,2,0,2,4,DIV,3,1,Grand,Blvd,5494519,0.123,0.151,0,0.673947,6,4.5 +28581,0,1.049963,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.199103,0.15,4 +29794,0,1.515019,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.360457,0.15,4 +2008,0,0.755818,1,1,0,2,4,,5,3,Seymour Lake,Rd,627107,4.199,4.955,0,18.139622,3,4 +3210,0,1.287806,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,1.33,2.618,0,30.907342,3,4 +26086,0,1.122622,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.942928,0.15,4 +26087,0,0.250268,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,6.00643,0.15,4 +3088,0,0.400858,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,2.838,3.239,0,9.620597,3,4 +3334,0,0.220868,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,2.618,2.838,0,5.300841,3,4 +2801,0,0.102329,1,1,0,2,4,,5,3,Baldwin,Rd,4415709,3.239,3.341,0,2.455899,3,4 +1042,0,0.440336,1,1,0,2,5,GRV,4,3,Drahner,Rd,626708,1.027,1.467,0,10.568062,6.55,4.5 +1514,0,0.488464,1,1,0,2,5,GRV,5,3,Drahner,Rd,626708,0.539,1.027,0,11.723136,5.55,5 +3442,0,0.644446,1,1,0,2,5,GRV,4,3,Sanders,Rd,671008,0,0.644,0,15.466716,6.55,4.5 +3558,0,0.473518,1,1,0,2,4,,4,3,Seymour Lake,Rd,669104,0.875,1.348,0,11.364439,4.5,4.5 +21093,0,0.702178,1,1,0,2,5,GRV,4,3,Coats,Rd,4410047,1.837,2.539,0,16.852272,6.55,4.5 +28574,0,0.841662,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.199885,0.15,4 +28579,0,0.784288,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.822909,0.15,4 +28580,0,0.169153,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,4.059668,0.15,4 +21094,0,0.884853,1,1,0,2,5,GRV,4,3,Coats,Rd,4410047,0.952,1.837,0,21.236465,6.55,4.5 +21092,0,0.299281,1,1,0,2,5,GRV,4,3,Coats,Rd,4410047,2.539,2.838,0,7.182748,6.55,4.5 +3104,0,0.363447,1,1,0,2,5,GRV,4,3,Sanders,Rd,671008,0.644,1.008,0,8.722735,6.55,4.5 +3249,0,0.519087,1,1,0,2,4,,4,3,Seymour Lake,Rd,669104,1.348,1.867,0,12.45808,4.5,4.5 +25571,0,0.653059,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,15.673409,0.15,4 +736,1,1.146105,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,5.06,6.206,0,27.506527,3.7,5 +783,0,0.258255,1,1,0,2,4,,4,3,Clarkston,Rd,627307,9.162,9.42,0,6.19812,4.5,4.5 +978,-1,1.145667,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,5.047,6.193,0,27.496013,3.7,5 +1851,0,1.324054,1,1,0,2,5,,4,3,Waldon,Rd,627303,6.714,8.038,0,31.77729,5.8,4.5 +2438,0,1.185096,1,1,0,2,4,,4,3,Joslyn,Rd,674110,6.954,8.139,0,28.442313,4.5,4.5 +2574,0,0.265838,1,1,0,2,5,,4,3,Heights,Rd,669109,0.648,0.914,0,6.380111,5.8,4.5 +3309,0,1.629285,1,1,0,2,5,,4,3,Indianwood,Rd,655208,2.302,3.931,0,39.102831,5.8,4.5 +27531,0,1.163475,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,27.923404,0.15,4 +28582,0,0.904099,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.698383,0.15,4 +28584,0,0.114175,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,2.740188,0.15,4 +28585,0,0.418475,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.043391,0.15,4 +30173,0,0.892538,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,21.420919,0.15,4 +2612,0,0.390345,1,1,0,2,4,,4,3,Joslyn,Rd,674110,6.564,6.954,0,9.368269,4.5,4.5 +25160,0,1.01999,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.479765,0.15,4 +2887,0,0.628402,1,1,0,2,4,,4,3,Joslyn,Rd,674110,5.936,6.564,0,15.081645,4.5,4.5 +1224,0,1.047666,1,1,0,2,4,,4,3,Clarkston,Rd,627307,8.115,9.162,0,25.143974,4.5,4.5 +3078,0,0.966288,1,1,0,2,5,,4,3,Joslyn,Rd,674110,8.391,9.357,0,23.190907,5.8,4.5 +3154,0,0.806655,1,1,0,2,5,,4,3,Indianwood,Rd,655208,1.496,2.302,0,19.359727,5.8,4.5 +3590,0,0.713803,1,1,0,2,5,,4,3,Joslyn,Rd,674110,9.357,10.071,0,17.131283,5.8,4.5 +3411,0,0.2525,1,1,0,2,5,,4,3,Joslyn,Rd,674110,8.139,8.391,0,6.060011,5.8,4.5 +2857,0,0.648499,1,1,0,2,5,,4,3,Heights,Rd,669109,0,0.648,0,15.563971,5.8,4.5 +25540,0,0.377843,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.068238,0.15,4 +454,0,0.598844,1,1,0,2,5,,4,3,Waldon,Rd,627303,8.392,8.99,0,14.372264,5.8,4.5 +1176,1,1.127334,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,3.933,5.06,0,27.056025,3.7,5 +1437,-1,1.127544,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,3.92,5.047,0,27.061051,3.7,5 +914,0,0.353673,1,1,0,2,5,,4,3,Waldon,Rd,627303,8.038,8.392,0,8.48815,5.8,4.5 +557,-1,0.102479,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,3.818,3.92,0,2.459497,3.7,5 +722,1,0.102041,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,3.831,3.933,0,2.448985,3.7,5 +2005,0,0.011157,1,1,0,2,5,,4,3,Waldon,Rd,627303,8.99,9.001,0,0.267776,5.8,4.5 +322,0,1.005263,1,1,0,2,4,,4,3,Clarkston,Rd,627307,9.42,10.425,0,24.126306,4.5,4.5 +869,0,0.290978,2,2,0,2,3,,4,3,Broadway,St,616604,6.825,7.116,0,6.983477,3.7,5 +3248,0,0.593068,1,1,0,2,5,,4,3,Heights,Rd,669109,1.249,1.842,0,14.233621,5.8,4.5 +28586,0,0.435984,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.463616,0.15,4 +28603,0,0.588958,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.134998,0.15,4 +3541,0,0.334835,1,1,0,2,5,,4,3,Heights,Rd,669109,0.914,1.249,0,8.036049,5.8,4.5 +30172,0,0.454305,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.903319,0.15,4 +30171,0,0.22163,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.319131,0.15,4 +738,0,0.308796,2,2,0,2,3,,4,3,Lapeer,Rd,616604,6.472,6.781,0,7.411103,3.7,5 +984,-1,0.266364,0,2,0,2,3,DIV,4,3,Lapeer,Rd,616605,6.193,6.459,0,6.392727,3.7,5 +1177,1,0.266306,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,6.206,6.472,0,6.391348,3.7,5 +2163,0,0.013023,1,1,0,2,4,,4,3,Clarkston,Rd,627307,10.425,10.438,0,0.312543,4.5,4.5 +2947,-1,0.224667,0,1,0,2,5,,4,3,Heights,Rd,669109,1.842,2.066,0,5.391997,5.8,4.5 +20435,1,0.218564,1,0,0,2,5,,4,3,Odanah,,4400397,0,0.219,0,5.245527,5.8,4.5 +1335,0,0.04405,2,2,0,2,3,,4,3,Lapeer,Rd,616604,6.781,6.825,0,1.05719,3.7,5 +1058,0,0.213203,2,2,0,2,3,,4,3,Park,Blvd,616604,7.427,7.64,0,5.116863,3.7,5 +3323,0,0.406319,1,1,0,2,4,,4,3,Flint,,655105,0.383,0.789,0,9.751654,4.5,4.5 +28556,0,0.173372,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,4.160924,0.15,4 +28612,0,0.254293,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.103038,0.15,4 +28614,0,0.468548,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.245158,0.15,4 +1529,0,0.311546,2,2,0,2,3,,4,3,Park,Blvd,616604,7.116,7.427,0,7.477112,3.7,5 +3391,0,0.119191,1,1,0,2,4,,4,3,Flint,,655105,0.264,0.383,0,2.86059,4.5,4.5 +1093,1,0.058927,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,7.742,7.801,0,1.414238,3.7,5 +1570,0,0.101703,2,2,0,2,3,,4,3,Lapeer,Rd,616604,7.64,7.742,0,2.440874,3.7,5 +21115,-1,0.061512,0,2,0,2,3,DIV,4,3,Lapeer,Rd,4410003,0,0.062,0,1.476295,3.7,5 +1675,1,0.042403,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,7.801,7.843,0,1.01767,3.7,5 +3159,0,0.014013,1,1,0,2,5,,4,3,Indianwood,Rd,655208,3.931,3.945,0,0.336301,5.8,4.5 +21114,-1,0.041658,0,2,0,2,3,DIV,4,3,Lapeer,Rd,4410003,0.062,0.103,0,0.99978,3.7,5 +1380,0,0.539515,2,2,0,2,3,,3,3,Washington,,616604,10.513,11.053,0,12.948372,5,5 +1891,0,0.268243,2,2,0,2,3,,3,3,Washington,,616604,10.245,10.513,0,6.437836,5,5 +2020,0,0.390621,1,1,0,2,5,,4,3,Drahner,Rd,626708,3.555,3.945,0,9.37491,5.8,4.5 +2616,0,0.306251,1,1,0,2,4,,3,3,Burdick,,669104,3.524,3.83,0,7.350027,6,4.5 +3068,0,0.758086,1,1,0,2,5,,5,3,Ray,Rd,671410,0.014,0.772,0,18.194055,3.7,5 +3080,0,0.210566,1,1,0,2,5,,3,3,Glaspie,,670401,0.992,1.203,0,5.053578,8,4.5 +25560,0,1.489127,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.73904,0.15,4 +28546,0,1.503208,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,36.076996,0.15,4 +28548,0,0.257074,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.169773,0.15,4 +28549,0,0.603907,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.493761,0.15,4 +522,0,0.514165,1,1,0,2,5,,4,3,Drahner,Rd,626708,2.505,3.019,0,12.339955,5.8,4.5 +3193,0,1.027757,1,1,0,2,4,,5,3,Seymour Lake,Rd,669104,2.337,3.364,0,24.666166,3,4 +28563,0,1.209366,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,29.024795,0.15,4 +28564,0,0.467365,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.216771,0.15,4 +985,0,0.350303,1,1,0,2,5,,4,3,Drahner,Rd,626708,2.155,2.505,0,8.407278,5.8,4.5 +28562,0,0.56292,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.510081,0.15,4 +474,0,0.536075,1,1,0,2,5,,4,3,Drahner,Rd,626708,3.019,3.555,0,12.86579,5.8,4.5 +28597,0,0.423071,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.153696,0.15,4 +2890,0,0.159676,1,1,0,2,4,,3,3,Burdick,,669104,3.364,3.524,0,3.832214,6,4.5 +28589,0,0.126993,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.047826,0.15,4 +1390,1,0.464347,2,0,0,2,3,DIV,5,3,M 24,,616604,11.794,12.258,0,11.144338,1.7,4 +2022,1,0.118736,2,0,0,2,3,DIV,5,3,M 24,,616604,12.258,12.377,0,2.849655,1.7,4 +21014,-1,0.120483,0,2,0,2,3,DIV,5,3,M 24,,4410277,1.203,1.324,0,2.891594,1.7,4 +21015,-1,0.457686,0,2,0,2,3,DIV,5,3,M 24,,4410277,0.746,1.203,0,10.984468,1.7,4 +1907,1,0.74166,2,0,0,2,3,DIV,5,3,M 24,,616604,11.053,11.794,0,17.799843,1.7,4 +21016,-1,0.745874,0,2,0,2,3,DIV,5,3,M 24,,4410277,0,0.746,0,17.900976,1.7,4 +3393,0,0.014227,1,1,0,2,5,,5,3,Ray,Rd,671410,0,0.014,0,0.341453,3.7,5 +1249,0,0.917371,2,2,0,2,3,,4,3,Lapeer,Rd,616604,9.328,10.245,0,22.016909,3.7,5 +1710,1,0.482436,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,8.363,8.845,0,11.578468,3.7,5 +21104,0,0.888849,1,1,0,2,4,,4,3,Lakeville,Rd,4410040,0.586,1.475,0,21.332381,4.5,4.5 +21112,-1,0.4823,0,2,0,2,3,DIV,4,3,Lapeer,Rd,4410003,0.624,1.106,0,11.575201,3.7,5 +25564,0,0.706241,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,16.94978,0.15,4 +28550,0,1.0574,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,25.377605,0.15,4 +1509,0,0.355859,1,1,0,2,5,,4,3,Drahner,Rd,626708,3.945,4.301,0,8.540608,5.8,4.5 +28592,0,0.540373,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.968963,0.15,4 +28594,0,0.505749,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.137984,0.15,4 +28595,0,0.526614,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.638743,0.15,4 +1225,1,0.219734,2,0,0,2,3,DIV,4,3,Lapeer,Rd,616604,8.845,9.065,0,5.273611,3.7,5 +1737,0,0.263413,2,2,0,2,3,,4,3,Lapeer,Rd,616604,9.065,9.328,0,6.321912,3.7,5 +21111,-1,0.215218,0,2,0,2,3,DIV,4,3,Lapeer,Rd,4410003,1.106,1.321,0,5.165222,3.7,5 +21106,0,0.51407,1,1,0,2,4,,4,3,Lakeville,Rd,4410040,0,0.514,0,12.337674,4.5,4.5 +28591,0,0.420707,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.096978,0.15,4 +21105,0,0.072518,1,1,0,2,4,,4,3,Lakeville,Rd,4410040,0.514,0.586,0,1.740427,4.5,4.5 +24960,0,1.191662,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.599895,0.15,4 +25576,0,1.183262,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,28.398299,0.15,4 +2423,0,0.908192,1,1,0,2,5,,5,3,Oxford,Rd,646502,1.433,2.34,0,21.796616,3.7,5 +28543,0,0.874011,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,20.976252,0.15,4 +28547,0,0.594347,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,14.264317,0.15,4 +2424,0,0.541444,1,1,0,2,5,,5,3,Ray,Rd,646502,0.891,1.433,0,12.994666,3.7,5 +2425,0,0.89137,1,1,0,2,5,,5,3,Oxford,Rd,646502,0,0.891,0,21.392873,3.7,5 +2470,0,0.089554,1,1,0,2,5,,3,3,Glaspie,,670401,1.203,1.292,0,2.149308,8,4.5 +28545,0,0.141261,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,3.390255,0.15,4 +2053,1,1.110311,2,0,0,2,3,DIV,5,3,M 24,,616604,13.949,15.059,0,26.647459,1.7,4 +21012,-1,1.10725,0,2,0,2,3,DIV,5,3,M 24,,4410277,2.904,4.011,0,26.574008,1.7,4 +21030,0,0.241833,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,8.439,8.68,0,5.803985,3,4 +21035,0,0.866173,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,6.63,7.496,0,20.788146,3,4 +34077,-1,0.979327,0,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34078,0,1.179761,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34112,1,0.979473,2,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +3431,0,1.062197,1,1,0,2,5,GRV,5,3,Baldwin,Rd,4415709,6.321,7.382,0,25.492736,5.55,5 +21037,0,1.003901,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,5.627,6.63,0,24.093627,3,4 +21032,0,0.942731,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,7.496,8.439,0,22.625553,3,4 +25555,0,0.768025,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.432605,0.15,4 +21086,0,0.488887,1,1,0,2,5,GRV,5,3,Coats,Rd,4410047,5.483,5.972,0,11.733278,5.55,5 +25557,0,0.46668,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,11.200318,0.15,4 +21028,0,2.286519,1,1,0,2,5,GRV,5,3,Oakwood,Rd,4410182,8.697,10.983,0,54.876446,5.55,5 +21029,0,0.016489,1,1,0,2,4,,5,3,Oakwood,Rd,4410182,8.68,8.697,0,0.395734,3,4 +21027,0,0.511131,1,1,0,2,5,GRV,5,3,Oakwood,Rd,4410182,10.983,11.494,0,12.267144,5.55,5 +25559,0,0.725819,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,17.419664,0.15,4 +2421,0,0.033785,1,1,0,2,5,GRV,5,3,Oxford/Oakwood Cutoff,,646502,3.782,3.816,0,0.810832,5.55,5 +20953,0,0.052921,1,1,0,2,5,GRV,5,3,Oxford,Rd,4411922,0,0.053,0,1.270115,5.55,5 +21026,0,0.037745,1,1,0,2,5,GRV,5,3,Oakwood,Rd,4410182,11.494,11.531,0,0.905891,5.55,5 +1,0,1.801707,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,2.915,4.716,0,43.240974,5.55,5 +25,0,0.275728,1,1,0,2,5,GRV,5,3,Gunn,Rd,609405,2.457,2.733,0,6.61747,5.55,5 +241,0,0.390079,1,1,0,2,4,,5,3,Orion,Rd,604708,2.996,3.386,0,9.361907,3,4 +304,0,1.679829,1,1,0,2,5,,5,3,Stony Creek,Rd,627705,0,1.679,0,40.315893,3.7,5 +2597,0,0.633742,1,1,0,2,5,GRV,5,3,Kline,Rd,667704,0,0.634,0,15.209819,5.55,5 +20986,0,0.382215,1,1,0,2,5,,5,3,Romeo,,4410333,0.102,0.484,0,9.173161,3.7,5 +21100,0,0.722402,1,1,0,2,4,,5,3,Lakeville,Rd,4410040,4.587,5.309,0,17.337642,3,4 +21553,0,1.038347,1,1,0,2,4,,5,3,Rochester,Rd,4413538,20.02,21.058,0,24.920334,3,4 +24979,0,0.847184,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.332423,0.15,4 +27389,0,0.701292,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.831016,0.15,4 +28588,0,1.289482,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,30.947571,0.15,4 +28598,0,1.012054,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.289289,0.15,4 +28607,0,1.130671,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,27.136096,0.15,4 +29130,0,1.089401,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.145633,0.15,4 +4,0,0.950828,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,0.704,1.655,0,22.819868,5.55,5 +237,0,1.260138,1,1,0,2,4,,4,3,Orion,Rd,604708,5.226,6.486,0,30.243307,4.5,4.5 +707,0,0.097666,1,1,0,2,5,,5,3,Stoney Creek,Rd,609508,1.174,1.272,0,2.343973,3.7,5 +1831,0,0.945409,1,1,0,2,5,,5,3,Adams,Rd,4415861,15.645,16.591,0,22.689823,3.7,5 +24974,0,1.742303,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,41.815284,0.15,4 +28602,0,0.965802,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.179243,0.15,4 +28604,0,0.774366,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.584785,0.15,4 +28613,0,0.692358,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.616594,0.15,4 +29774,0,0.387824,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,9.307787,0.15,4 +29775,0,1.038571,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.925713,0.15,4 +236,0,0.524466,1,1,0,2,4,,4,3,Orion,Rd,604708,6.486,7.01,0,12.587172,4.5,4.5 +675,0,1.174366,1,1,0,2,5,,4,3,Stoney Creek,Rd,609508,0,1.174,0,28.18479,5.8,4.5 +28559,0,0.447608,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.742583,0.15,4 +235,0,0.159183,1,1,0,2,4,,4,3,Orion,Rd,604708,7.01,7.169,0,3.820403,4.5,4.5 +1245,0,0.500591,1,1,0,2,5,,5,3,Adams,Rd,4415861,16.591,17.091,0,12.014181,3.7,5 +13,0,0.704432,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,0,0.704,0,16.906375,5.55,5 +26,0,0.83781,1,1,0,2,5,GRV,5,3,Gunn,Rd,609405,1.619,2.457,0,20.107448,5.55,5 +239,0,0.274402,1,1,0,2,4,,5,3,Orion,Rd,604708,4.015,4.289,0,6.58564,3,4 +24976,0,0.785965,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.863153,0.15,4 +24977,0,0.298332,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,7.159975,0.15,4 +28467,0,0.8012,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.228805,0.15,4 +238,0,0.937123,1,1,0,2,4,,5,3,Orion,Rd,604708,4.289,5.226,0,22.490962,3,4 +1126,0,0.040139,1,1,0,2,5,,4,3,Adams,Rd,4415861,15.605,15.645,0,0.963327,5.8,4.5 +240,0,0.629129,1,1,0,2,4,,5,3,Orion,Rd,604708,3.386,4.015,0,15.099102,3,4 +2,0,0.758176,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,2.157,2.915,0,18.196235,5.55,5 +725,0,0.915273,1,1,0,2,5,,5,3,Stoney Creek,Rd,609508,1.272,2.187,0,21.966547,3.7,5 +28611,0,0.826014,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,19.824336,0.15,4 +3,0,0.501912,1,1,0,2,5,,5,3,Lake George,Rd,609408,1.655,2.157,0,12.045889,3.7,5 +2811,0,0.542028,1,1,0,2,5,GRV,5,3,Predmore,Rd,667508,0.963,1.505,0,13.008672,5.55,5 +1086,0,0.998331,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,4.716,5.714,0,23.959946,5.55,5 +21102,0,1.004878,1,1,0,2,4,,5,3,Lakeville,Rd,4410040,3.009,4.014,0,24.117073,3,4 +25561,0,1.784381,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,42.825148,0.15,4 +25569,0,1.05083,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.219909,0.15,4 +28615,0,0.962116,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.090791,0.15,4 +28616,0,1.012273,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.294545,0.15,4 +20987,0,0.101596,1,1,0,2,5,,5,3,Romeo,,4410333,0,0.102,0,2.438312,3.7,5 +346,0,1.264991,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,6.455,7.719,0,30.359774,5.55,5 +25563,0,1.550605,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,37.214524,0.15,4 +25572,0,2.071382,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,49.713175,0.15,4 +1346,0,0.74103,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,5.714,6.455,0,17.784718,5.55,5 +21101,0,0.573182,1,1,0,2,4,,5,3,Lakeville,Rd,4410040,4.014,4.587,0,13.756358,3,4 +23,0,0.498385,1,1,0,2,5,,5,3,Gunn,Rd,609405,4.038,4.536,0,11.961237,3.7,5 +30,0,0.499536,1,1,0,2,4,GRV,4,3,Snell,Rd,609310,1.217,1.716,0,11.988863,6.55,4.5 +21557,0,0.904911,1,1,0,2,4,,5,3,Rochester,Rd,4413538,18.038,18.943,0,21.717865,3,4 +27388,0,1.030703,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.736868,0.15,4 +28606,0,1.341001,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.184019,0.15,4 +29128,0,0.972517,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,23.340414,0.15,4 +24,0,1.305644,1,1,0,2,5,GRV,5,3,Gunn,Rd,609405,2.733,4.038,0,31.335451,5.55,5 +32,0,0.354125,1,1,0,2,4,,4,3,Snell,Rd,609310,0,0.354,0,8.498988,4.5,4.5 +21593,0,1.10185,1,1,0,2,4,,5,3,Rochester,Rd,4413538,16.936,18.038,0,26.444389,3,4 +28608,0,1.005605,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.13452,0.15,4 +28609,0,0.854414,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.50593,0.15,4 +29773,0,1.352198,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,32.452749,0.15,4 +242,0,0.174508,1,1,0,2,4,,5,3,Orion,Rd,604708,2.822,2.996,0,4.188201,3,4 +247,0,0.170299,1,1,0,2,4,,5,3,Orion,Rd,604708,2.58,2.751,0,4.087172,3,4 +243,0,0.0711,1,1,0,2,4,,5,3,Orion,Rd,604708,2.751,2.822,0,1.706398,3,4 +31,0,0.374645,1,1,0,2,4,,4,3,Snell,Rd,609310,0.843,1.217,0,8.991484,4.5,4.5 +21594,0,0.507883,1,1,1,2,4,,5,3,Rochester,Rd,4413538,16.429,16.936,0,12.189194,3,4 +21555,0,0.644499,1,1,0,2,4,,5,3,Rochester,Rd,4413538,19.375,20.02,0,15.467985,3,4 +28605,0,1.10197,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,26.447282,0.15,4 +1866,0,0.378117,1,1,0,2,5,,5,3,Stony Creek,Rd,627705,1.679,2.057,0,9.074809,3.7,5 +21556,0,0.433032,1,1,0,2,4,,5,3,Rochester,Rd,4413538,18.943,19.375,0,10.392758,3,4 +15,0,0.494965,1,1,0,2,5,,5,3,Gunn,Rd,609405,4.536,5.031,0,11.879165,3.7,5 +24963,0,0.689732,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,16.55357,0.15,4 +27522,0,1.073639,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.767331,0.15,4 +29,0,0.385967,1,1,0,2,4,GRV,4,3,Snell,Rd,609310,1.716,2.102,0,9.263199,6.55,4.5 +28468,0,0.457955,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,10.990911,0.15,4 +14,0,0.171103,1,1,0,2,5,GRV,5,3,Gunn,Rd,609405,6.016,6.187,0,4.106483,5.55,5 +256,0,0.53487,1,1,0,2,5,GRV,5,3,Mack,Rd,604404,0,0.535,0,12.836885,5.55,5 +3047,0,0.97628,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,3.661,4.637,0,23.430718,5.55,5 +20984,0,0.752515,1,1,0,2,4,,5,3,Romeo,,4410333,1.732,2.485,0,18.060355,3,4 +21505,0,0.996628,1,1,0,2,4,,5,3,Rochester,Rd,4413538,23.212,24.208,0,23.919077,3,4 +24955,0,0.957069,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,22.969656,0.15,4 +24956,0,0.764727,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.353459,0.15,4 +25567,0,1.475461,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,35.411053,0.15,4 +20985,0,1.248821,1,1,0,2,5,,5,3,Romeo,,4410333,0.484,1.732,0,29.971716,3.7,5 +21545,0,0.711191,1,1,0,2,4,,5,3,Rochester,Rd,4413538,22.501,23.212,0,17.068578,3,4 +21548,0,1.017746,1,1,0,2,4,,5,3,Rochester,Rd,4413538,21.058,22.075,0,24.425906,3,4 +28599,0,0.774897,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,18.597526,0.15,4 +28601,0,0.895401,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,21.489624,0.15,4 +28600,0,0.852592,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,20.462198,0.15,4 +21099,0,0.502855,1,1,0,2,4,,5,3,Lakeville,Rd,4410040,5.309,5.812,0,12.06852,3,4 +21546,0,0.425683,1,1,0,2,4,,5,3,Rochester,Rd,4413538,22.075,22.501,0,10.216385,3,4 +21502,0,0.504742,1,1,0,2,4,,5,3,Rochester,Rd,4413538,25.238,25.743,0,12.1138,3,4 +21503,0,1.030215,1,1,0,2,4,,5,3,Rochester,Rd,4413538,24.208,25.238,0,24.725169,3,4 +24957,0,1.039213,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,24.941116,0.15,4 +27515,0,1.06221,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,25.493033,0.15,4 +2506,0,0.029151,1,1,0,2,5,,5,4,Dequindre,Rd,667605,3.631,3.661,0,0.699629,3.7,5 +254,0,1.00999,1,1,0,2,5,GRV,5,3,Mack,Rd,604404,1.074,2.084,0,24.239757,5.55,5 +2767,0,1.011147,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,4.637,5.648,0,24.267526,5.55,5 +25566,0,2.081994,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,49.967846,0.15,4 +28554,0,1.408396,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,33.801513,0.15,4 +255,0,0.539128,1,1,0,2,5,GRV,5,3,Mack,Rd,604404,0.535,1.074,0,12.939068,5.55,5 +2484,0,0.995943,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,5.648,6.643,0,23.902622,5.55,5 +264,0,1.089505,1,1,0,2,5,GRV,5,3,Leonard,Rd,604205,0,1.089,0,26.14813,5.55,5 +21024,0,1.058913,1,1,0,2,5,GRV,5,3,Oakwood,Rd,4410182,13.413,14.472,0,25.413923,5.55,5 +34076,0,1.257867,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +19958,0,1.070012,1,1,0,2,5,GRV,5,3,Hosner,Rd,3440080,0,1.07,0,25.680296,5.55,5 +257,0,0.041888,1,1,0,2,5,GRV,5,3,Hosner,Rd,604305,0,0.042,0,1.005318,5.55,5 +665,0,0.359508,1,1,0,2,5,GRV,5,3,Lake George,Rd,609408,8.227,8.586,0,8.628196,5.55,5 +259,0,0.38401,1,1,0,2,5,,5,3,Elmwood,,604205,2.224,2.608,0,9.21624,3.7,5 +34075,0,1.483965,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +263,0,0.585987,1,1,0,2,5,GRV,5,3,Leonard,Rd,604205,1.089,1.675,0,14.06368,5.55,5 +21497,0,1.463036,1,1,0,2,4,,5,3,Rochester,Rd,4413538,26.829,28.292,0,35.112874,3,4 +260,0,0.14534,1,1,0,2,5,,5,3,Elmwood,,604205,2.078,2.224,0,3.48817,3.7,5 +28590,0,0.182407,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,4.37777,0.15,4 +21499,0,0.115844,1,1,0,2,4,,5,3,Forest,,4413538,26.618,26.734,0,2.780252,3,4 +25558,0,0.127615,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,3.062759,0.15,4 +21498,0,0.095347,1,1,0,2,4,,5,3,Forest,,4413538,26.734,26.829,0,2.288334,3,4 +29795,0,0.146651,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,3.519612,0.15,4 +261,0,0.095174,1,1,0,2,5,,5,3,Elmwood,,604205,1.983,2.078,0,2.284186,3.7,5 +25556,0,0.124335,1,1,0,2,99,,5,3,Centroid Connector,,0,0,0,0,2.984034,0.15,4 +258,0,1.129688,1,1,0,2,5,GRV,5,3,Leonard,Rd,604205,3.136,4.265,0,27.112501,5.55,5 +3921,0,0.590147,1,1,0,2,5,,4,4,18 Mile,Rd,802504,1.002,1.592,0,14.16353,5.8,4.5 +3987,1,2.304379,3,0,0,1,1,,4,4,E I 94,,798501,11.823,14.127,0,,0.8,7.5 +4080,0,0.039445,2,2,1,2,3,,4,4,Dequindre,Rd,799402,10.416,10.456,0,0.946677,3.7,5 +4294,0,0.164952,2,2,1,2,3,,4,4,Garfield,Rd,798703,4.516,4.681,0,3.95885,3.7,5 +4325,0,0.27769,1,1,0,2,5,,4,4,17 Mile,Rd,802410,0,0.278,0,6.664563,5.8,4.5 +4332,0,0.093938,2,2,0,2,5,,3,4,Market,St,800808,0.758,0.852,0,2.254504,8,4.5 +4406,-1,0.309727,0,2,0,2,4,DIV,3,4,Hayes,Rd,801010,0.506,0.815,0,7.43345,6,4.5 +4510,0,0.446667,2,2,1,2,4,,4,4,Ryan,Rd,799302,10.109,10.556,0,10.720011,4.5,4.5 +4587,0,0.503527,2,2,1,2,4,,4,4,19 Mile,Rd,802506,0.524,1.027,0,12.084651,4.5,4.5 +4590,0,0.093912,2,2,1,2,3,,3,4,14 Mile,Rd,798407,4.383,4.477,0,2.253883,5,5 +4726,1,0.813431,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,8.23,9.044,0,19.52234,3.7,5 +4881,-1,2.281263,0,3,0,1,1,,4,4,W I 94,,798502,11.871,14.152,0,,0.8,7.5 +4954,0,0.465042,1,1,0,2,4,,4,4,18 Mile,Rd,802504,0,0.465,0,11.161014,4.5,4.5 +4967,1,0.180658,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.353,10.533,0,4.335802,3.7,5 +5055,0,0.389695,1,1,0,2,4,,3,4,Masonic,Blvd,802104,0,0.39,0,9.352679,6,4.5 +5101,0,0.056529,1,1,0,2,4,,3,4,Martin,Rd,803308,0.919,0.975,0,1.356685,6,4.5 +5125,-1,0.058366,0,4,0,2,5,,3,4,11 Mile,Rd,803209,6.17,6.228,0,1.400779,8,4.5 +5182,1,0.093426,4,0,0,2,5,,3,4,11 Mile,Rd,803208,6.167,6.261,0,2.242215,8,4.5 +5221,0,0.188035,1,1,0,2,5,,3,4,Frazho,Rd,803110,1.817,2.005,0,4.51285,8,4.5 +5247,0,0.188429,2,2,1,2,4,,3,4,10 Mile,Rd,803101,5.813,6.002,0,4.522294,6,4.5 +5274,0,0.237833,2,2,1,2,3,,3,4,Groesbeck,Hwy,803009,11.477,11.715,0,5.707992,5,5 +5300,0,0.115553,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,3.576,3.691,0,2.773265,5,5 +5328,0,0.568616,1,1,0,2,5,,3,4,Stephens,Dr,803008,0.585,1.153,0,13.646795,8,4.5 +40491,0,0.161625,1,1,1,2,5,,4,4,Romeo Plank,Rd,819207,0.835,0.996,0,3.878996,5.8,4.5 +5461,0,0.481815,1,1,0,2,4,,4,4,Clinton River,Rd,820606,8.051,8.533,0,11.563555,4.5,4.5 +5487,0,0.28954,1,1,1,2,3,,3,4,Cass,Ave,819209,2.095,2.385,0,6.948968,5,5 +5542,0,0.389137,1,1,0,2,4,,4,4,21 Mile,Rd,817708,3.312,3.701,0,9.339288,4.5,4.5 +5547,0,0.330034,1,1,0,2,4,,4,4,Clinton River,Rd,820606,4.548,4.878,0,7.920822,4.5,4.5 +5642,0,0.218934,1,1,0,2,5,,3,4,Rose,St,819509,0.338,0.557,0,5.254423,8,4.5 +5717,1,0.634878,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,5.585,6.22,0,15.237062,3.7,5 +5839,0,0.528459,1,1,0,2,4,,4,4,Canal,Rd,820607,3.143,3.671,0,12.683012,4.5,4.5 +5854,0,0.19309,2,2,1,2,4,,4,4,15 Mile,Rd,803605,6.037,6.23,0,4.634153,4.5,4.5 +5903,1,0.064321,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.758,1.822,0,1.543706,5,5 +5960,1,0.215836,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,2.384,2.6,0,5.180072,3.7,5 +6002,0,0.597993,1,1,0,2,4,,4,4,24 Mile,Rd,815510,6.042,6.64,0,14.351828,4.5,4.5 +6005,1,0.51563,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,3.058,3.573,0,12.375116,3.7,5 +40490,0,0.227953,1,1,0,2,5,,4,4,Romeo Plank,Rd,819207,0.543,0.77,0,5.470861,5.8,4.5 +6057,0,0.935045,1,1,0,2,4,,4,4,Utica,Rd,4211434,7.973,8.908,0,22.441069,4.5,4.5 +6085,-1,0.395323,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,6.045,6.44,0,9.487742,3.7,5 +6095,0,0.199564,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.805,5.005,0,4.789529,4.5,4.5 +6147,0,0.444805,1,1,0,2,4,,4,4,Moravian,Dr,803604,5.76,6.204,0,10.675326,4.5,4.5 +6171,0,1.137298,1,1,0,2,5,,4,4,Irwin,Dr,831903,0,1.137,0,27.295143,5.8,4.5 +6219,0,0.500672,1,1,0,2,4,,4,4,26 Mile,Rd,816702,5.855,6.356,0,12.01612,4.5,4.5 +6281,1,0.775005,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,0,0.775,0,18.60011,3.7,5 +6282,0,0.32484,1,1,0,2,4,,4,4,Moravian,Dr,803604,1.464,1.789,0,7.796149,4.5,4.5 +6296,1,0.05143,2,0,0,2,4,,3,4,Gratiot/River Cutoff,,831808,0,0.051,0,1.234331,6,4.5 +6317,-1,0.473962,0,2,0,1,2,,4,4,S M 53,,813706,3.384,3.858,0,,0.8,7.5 +6343,0,0.358017,1,1,0,2,4,,4,4,22 Mile,Rd,807104,5.151,5.509,0,8.592403,4.5,4.5 +6453,0,0.254611,2,2,1,2,4,,3,4,13 Mile,Rd,803410,3.075,3.329,0,6.110669,6,4.5 +6568,0,0.261893,1,1,0,2,5,,3,4,Common,Rd,4211479,2.886,3.147,0,6.285435,8,4.5 +6580,0,0.774254,1,1,0,2,5,,4,4,Saal,Rd,820810,0.583,1.357,0,18.582091,5.8,4.5 +6673,0,0.607591,2,2,1,2,3,,4,4,23 Mile,Rd,807106,6.23,6.837,0,14.582173,3.7,5 +6706,0,0.236228,2,2,1,2,3,,3,4,12 Mile,Rd,803401,5.752,5.988,0,5.669484,5,5 +6786,0,0.698136,1,1,0,2,4,,4,4,Clinton River,Rd,820606,2.057,2.755,0,16.755256,4.5,4.5 +19337,-1,1.065365,0,4,0,1,1,,3,4,W I 696,,1740308,5.558,6.623,0,,0.58,7 +19378,1,1.045883,4,0,0,1,1,,3,4,E I 696,,1740201,5.607,6.652,0,,0.58,7 +20033,1,0.145223,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,2.461,2.606,0,3.485358,3.7,5 +20051,0,0.201338,1,1,1,2,5,,3,4,Main,St,4208720,0.493,0.694,0,4.832101,8,4.5 +20064,0,0.357208,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,6.286,6.643,0,8.573002,4.5,4.5 +20207,-1,0.230157,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.117,11.347,0,5.523771,5,5 +37519,-1,0.298106,0,2,0,2,4,,4,4,Van Dyke,Ave,4211014,0,0.298,0,7.154544,4.5,4.5 +20664,0,0.286646,2,2,1,2,4,,4,4,Hayes,Rd,4208921,1.943,2.23,0,6.879514,4.5,4.5 +20696,1,0.491049,2,0,0,2,4,DIV,3,4,Hayes,Rd,4204196,0.506,0.996,0,11.785172,6,4.5 +20765,1,0.162526,4,0,0,1,2,,4,4,N M 53,,4210208,3.324,3.487,0,,0.8,7.5 +24785,0,0.789944,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.958644,0.15,4 +25001,0,0.519382,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.465164,0.15,4 +25675,0,0.368456,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.842941,0.15,4 +25875,0,0.45302,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.872477,0.15,4 +25879,0,0.384072,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.217733,0.15,4 +28119,0,0.625656,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.015749,0.15,4 +28125,0,0.90062,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,21.614871,0.15,4 +28133,0,0.47557,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.413685,0.15,4 +28159,0,0.745517,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.892418,0.15,4 +28165,0,0.448907,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.773777,0.15,4 +28274,0,0.519305,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.46331,0.15,4 +28622,0,0.190878,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.581084,0.15,4 +28626,0,0.56498,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.559531,0.15,4 +28651,0,0.251766,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.042394,0.15,4 +28659,0,0.190645,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.575487,0.15,4 +28672,0,0.359529,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.628701,0.15,4 +28685,0,0.45896,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.01503,0.15,4 +28687,0,0.348523,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.364549,0.15,4 +28696,0,0.493539,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.844937,0.15,4 +28710,0,0.262447,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.298735,0.15,4 +28716,0,0.437951,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.510835,0.15,4 +28924,0,0.344052,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.257258,0.15,4 +29147,0,0.46487,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.156884,0.15,4 +29655,0,0.50264,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.063369,0.15,4 +30212,0,0.525884,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.621225,0.15,4 +3965,0,0.440111,2,2,1,2,4,,3,4,Hoover,Rd,798909,5.558,5.998,0,10.562671,6,4.5 +4016,1,0.553713,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,11.649,12.203,0,13.289117,3.7,5 +4490,0,0.16195,1,1,0,2,4,,3,4,Hayes,Rd,801010,2.04,2.202,0,3.8868,6,4.5 +4518,0,0.29137,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.526,7.818,0,6.992879,5,5 +4530,0,0.390254,2,2,1,2,4,,3,4,Ryan,Rd,799302,5.703,6.093,0,9.366101,6,4.5 +4695,0,0.446472,2,2,1,2,3,,3,4,Dequindre,Rd,799402,5.613,6.06,0,10.715336,5,5 +4811,0,0.372309,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,5.744,6.116,0,8.935412,5,5 +4936,0,0.539668,1,1,0,2,5,,3,4,Masonic,Blvd,802703,1.999,2.539,0,12.952028,8,4.5 +4990,1,0.331683,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.771,6.103,0,7.960401,5,5 +5022,0,0.519751,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.595,6.115,0,12.474031,5,5 +5157,-1,0.203445,0,2,0,2,5,,3,4,11 Mile,Rd,803209,2.826,3.029,0,4.882683,8,4.5 +5199,1,0.238033,2,0,0,2,5,,3,4,11 Mile,Rd,803208,2.701,2.939,0,5.712802,8,4.5 +5258,0,0.236905,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.437,2.674,0,5.685711,6,4.5 +5393,0,0.376284,2,2,1,2,4,,3,4,Chicago,Rd,804109,2.739,3.115,0,9.030822,6,4.5 +5569,0,0.484372,2,2,1,2,4,,4,4,17 Mile,Rd,805203,2.523,3.007,0,11.624935,4.5,4.5 +5618,0,0.255129,1,1,0,2,3,,4,4,18 Mile,Rd,805207,2.758,3.013,0,6.123103,3.7,5 +5732,1,0.571195,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,2.254,2.825,0,13.708687,3.7,5 +5841,1,0.331442,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,6.768,7.099,0,7.954614,5,5 +5968,0,0.490145,2,2,1,2,4,,4,4,15 Mile,Rd,803605,2.536,3.026,0,11.763479,4.5,4.5 +6763,0,0.480761,2,2,1,2,3,,3,4,12 Mile,Rd,803401,2.218,2.698,0,11.538275,5,5 +6966,0,0.680924,1,1,0,2,5,,3,4,Chicago,Rd,804109,3.919,4.6,0,16.342172,8,4.5 +19342,-1,0.270555,0,4,0,1,1,,3,4,W I 696,,1740308,2.732,3.003,0,,0.58,7 +19370,1,0.175176,2,0,0,1,1,ROF,3,4,E I 696/M 53,RAMP,1740203,0,0.175,0,,2.24,5 +19382,1,0.631377,4,0,0,1,1,,3,4,E I 696,,1740201,2.94,3.572,0,,0.58,7 +26376,0,0.101592,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.438197,0.15,4 +27557,0,0.520292,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.487003,0.15,4 +28718,0,0.284639,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.831337,0.15,4 +28719,0,0.477694,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.464646,0.15,4 +28727,0,0.550667,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.216001,0.15,4 +28728,0,0.568263,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.638315,0.15,4 +28730,0,0.253383,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.081194,0.15,4 +28732,0,0.26367,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.328084,0.15,4 +28737,0,0.514225,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.341404,0.15,4 +28740,0,0.441511,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.596267,0.15,4 +28741,0,0.433413,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.401906,0.15,4 +28744,0,0.372277,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.934656,0.15,4 +28751,0,0.486216,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.669185,0.15,4 +28753,0,0.463614,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.126728,0.15,4 +28755,0,0.248872,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.972934,0.15,4 +28757,0,0.447475,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.739399,0.15,4 +28758,0,0.442513,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.62032,0.15,4 +28761,0,0.094772,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.274534,0.15,4 +28762,0,0.25159,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.038149,0.15,4 +28767,0,0.368115,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.834765,0.15,4 +28830,0,0.547673,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.144142,0.15,4 +29651,0,0.494305,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.863321,0.15,4 +29652,0,0.516411,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.393868,0.15,4 +29653,0,0.557773,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.38655,0.15,4 +29711,0,0.574748,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.793943,0.15,4 +4429,0,0.277433,2,2,1,2,3,,3,4,Dequindre,Rd,799402,3.398,3.675,0,6.658387,5,5 +4551,0,0.4744,2,2,1,2,4,,3,4,Ryan,Rd,799302,2.538,3.012,0,11.385602,6,4.5 +4895,0,0.503692,2,2,1,2,4,,3,4,Ryan,Rd,799302,3.536,4.04,0,12.088616,6,4.5 +5000,1,0.539109,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,3.492,4.031,0,12.938616,5,5 +5162,-1,0.40087,0,2,0,2,5,,3,4,11 Mile,Rd,803209,1.152,1.553,0,9.620871,8,4.5 +5204,1,0.382538,2,0,0,2,5,,3,4,11 Mile,Rd,803208,1.182,1.564,0,9.18091,8,4.5 +5264,0,0.361934,2,2,1,2,4,,3,4,10 Mile,Rd,803101,0.627,0.989,0,8.686424,6,4.5 +5388,1,0.506879,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,8.84,9.346,0,12.165104,5,5 +5476,0,0.362229,1,1,0,2,4,,3,4,Chicago,Rd,804109,0.998,1.36,0,8.693491,6,4.5 +5489,0,0.503746,2,2,0,2,3,,3,4,13 Mile,Rd,805105,0.936,1.44,0,12.089906,5,5 +6440,0,0.499238,1,1,0,2,5,,3,4,Stephens,Rd,806307,0.499,0.998,0,11.981701,8,4.5 +6848,0,0.415327,2,2,1,2,3,,3,4,12 Mile,Rd,803401,0.925,1.34,0,9.967838,5,5 +19344,-1,0.98923,0,4,0,1,1,,3,4,W I 696,,1740308,0.915,1.904,0,,0.58,7 +19385,1,0.947915,4,0,0,1,1,,3,4,E I 696,,1740201,0.926,1.874,0,,0.58,7 +25098,0,0.543576,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.04583,0.15,4 +25800,0,0.561367,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.472807,0.15,4 +28769,0,0.50131,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.031448,0.15,4 +28775,0,0.241299,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.791183,0.15,4 +28783,0,0.575291,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.806972,0.15,4 +28785,0,0.513106,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.314544,0.15,4 +28786,0,0.458086,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.994061,0.15,4 +28791,0,0.495771,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.898507,0.15,4 +28793,0,0.501309,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.031423,0.15,4 +29913,0,0.519527,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.468658,0.15,4 +76,-1,0.144849,0,3,0,2,5,,3,3,Progress,Dr,607607,1.31,1.455,0,3.476374,8,4.5 +3289,0,0.478922,1,1,0,2,5,,3,3,Lincoln,,651908,4.405,4.883,0,11.494119,8,4.5 +4172,0,0.110005,2,2,1,2,3,,3,4,Dequindre,Rd,799402,2.494,2.604,0,2.640119,5,5 +5168,-1,0.304516,0,2,0,2,5,,3,4,W I 696 Service Drive,,803209,0.138,0.442,0,7.308376,8,4.5 +5210,1,0.174687,3,0,0,2,5,,3,4,E I 696 Service Drive,,803208,0,0.175,0,4.192479,8,4.5 +5266,0,0.486388,2,2,1,2,4,,3,4,10 Mile,Rd,803101,0,0.486,0,11.673308,6,4.5 +6859,0,0.498988,1,1,0,2,5,,3,4,Stephens,Rd,806307,0,0.499,0,11.975721,8,4.5 +6940,0,0.130059,2,2,1,2,4,,3,4,11 Mile,Rd,805404,0,0.13,0,3.121406,6,4.5 +19330,1,0.185721,1,0,0,1,1,ROF,3,4,W I 696/Dequindre,RAMP,1740309,0,0.186,0,,2.24,5 +19346,-1,0.358077,0,4,0,1,1,,3,4,W I 696,,1740308,0,0.358,0,,0.58,7 +19387,1,0.392331,4,0,0,1,1,,3,4,E I 696,,1740201,0,0.392,0,,0.58,7 +19464,1,0.333207,4,0,0,1,1,,3,3,E I 696,,1903903,5.869,6.202,0,,0.58,7 +19698,-1,0.362231,0,4,0,1,1,,3,3,W I 696,,1904002,5.852,6.214,0,,0.58,7 +26860,0,0.461077,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.065852,0.15,4 +27461,0,0.405471,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.731302,0.15,4 +27545,0,0.252747,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.065929,0.15,4 +28788,0,0.479964,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.519134,0.15,4 +28789,0,0.53209,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.770152,0.15,4 +28797,0,0.23941,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.745837,0.15,4 +64,0,0.182301,1,1,0,2,5,,3,3,10 Mile,Rd,607703,0.714,0.896,0,4.375225,8,4.5 +69,1,0.139437,2,0,0,2,5,,3,3,Heights,Dr,607610,0.903,1.042,0,3.34648,8,4.5 +77,-1,0.425362,0,3,0,2,5,,3,3,Progress,Dr,607607,0.885,1.31,0,10.208696,8,4.5 +1205,0,0.504774,2,2,1,2,5,,3,3,Woodward Heights,Blvd,644905,2.34,2.844,0,12.114577,8,4.5 +2311,0,0.506626,1,1,0,2,5,,3,3,Couzens,,647006,0,0.507,0,12.15903,8,4.5 +2388,-1,0.102037,0,1,0,2,5,,3,3,E I 696 Service Drive/10 Mile,Ramp,646802,0,0.102,0,2.448887,8,4.5 +2840,1,0.113001,1,0,0,2,5,,3,3,10 Mile/W I 696 Service Drive,RAMP,660108,0.125,0.238,0,2.712027,8,4.5 +4768,0,0.381464,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.643,2.025,0,9.155125,5,5 +19465,1,0.607155,4,0,0,1,1,,3,3,E I 696,,1903903,5.262,5.869,0,,0.58,7 +19699,-1,0.611461,0,4,0,1,1,,3,3,W I 696,,1904002,5.241,5.852,0,,0.58,7 +27548,0,0.320127,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.68304,0.15,4 +27549,0,0.479265,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.502356,0.15,4 +442,0,0.012576,2,2,1,2,5,,3,3,Woodward Heights,Blvd,644905,2.327,2.34,0,0.301817,8,4.5 +71,1,0.084922,2,0,0,2,5,,3,3,Heights,Dr,607610,0.725,0.81,0,2.038117,8,4.5 +79,-1,0.076438,0,3,0,2,5,,3,3,Progress,Dr,607607,0.687,0.763,0,1.834514,8,4.5 +2307,0,0.107074,1,1,0,2,5,,3,3,Couzens,,647006,0.714,0.821,0,2.569782,8,4.5 +2831,0,0.065444,1,1,0,2,5,,3,3,Lincoln,,651908,4.339,4.405,0,1.570659,8,4.5 +29971,0,0.043,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.031992,0.15,4 +19395,1,0.155362,1,0,0,1,1,RON,3,3,Couzens/W I 696,RAMP,1738810,0,0.155,0,,1.09,4 +19396,1,0.122189,1,0,0,1,1,ROF,3,3,E I 696/Couzens,RAMP,1738809,0,0.122,0,,2.24,5 +70,1,0.092981,2,0,0,2,5,,3,3,Heights,Dr,607610,0.81,0.903,0,2.231548,8,4.5 +78,-1,0.121999,0,3,0,2,5,,3,3,Progress,Dr,607607,0.763,0.885,0,2.92797,8,4.5 +2309,0,0.057865,2,2,0,2,5,,3,3,Couzens,,647006,0.546,0.603,0,1.388762,8,4.5 +2310,0,0.039078,2,2,0,2,5,,3,3,Couzens,,647006,0.507,0.546,0,0.937873,8,4.5 +2308,0,0.110154,1,1,0,2,5,,3,3,Couzens,,647006,0.603,0.714,0,2.643696,8,4.5 +2306,0,0.202526,1,1,0,2,5,,3,3,Couzens,,647006,0.821,1.023,0,4.86063,8,4.5 +27547,0,0.068867,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,1.652815,0.15,4 +4447,0,0.070222,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.521,1.591,0,1.685334,5,5 +4173,0,0.05239,2,2,0,2,3,,3,4,Dequindre,Rd,799402,1.591,1.643,0,1.257366,5,5 +61,0,0.201911,1,1,0,2,5,,3,3,10 Mile,Rd,607703,1.03,1.232,0,4.845853,8,4.5 +68,1,0.337692,4,0,0,2,5,,3,3,Heights,Dr,607610,1.042,1.38,0,8.104619,8,4.5 +4446,0,0.469444,2,2,1,2,3,,3,4,Dequindre,Rd,799402,2.025,2.494,0,11.266657,5,5 +19389,1,0.146997,1,0,0,1,1,ROF,3,3,E I 696/Dequindre,RAMP,1738908,0,0.147,0,,2.24,5 +19394,1,0.190584,1,0,0,1,1,RON,3,3,Dequindre/W I 696,RAMP,1738901,0,0.191,0,,1.09,4 +62,0,0.061621,1,1,0,2,5,,3,3,10 Mile,Rd,607703,0.968,1.03,0,1.478911,8,4.5 +2770,1,0.124606,1,0,0,2,5,,3,3,10 Mile/W I 696 Service Drive,Ramp,660108,0,0.125,0,2.99055,8,4.5 +63,0,0.072067,1,1,0,2,5,,3,3,10 Mile,Rd,607703,0.896,0.968,0,1.729601,8,4.5 +67,1,0.152763,3,0,0,2,5,,3,3,Heights,Dr,607610,1.38,1.532,0,3.666309,8,4.5 +4162,0,0.134283,2,2,1,2,3,,3,4,Dequindre,Rd,799402,3.02,3.154,0,3.222793,5,5 +20098,0,0.574,2,2,0,2,4,,3,3,11 Mile,Rd,4400088,9.984,10.558,0,13.776007,6,4.5 +25097,0,0.535383,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.849197,0.15,4 +28446,0,0.527913,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.669907,0.15,4 +27543,0,0.253279,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.078689,0.15,4 +4755,0,0.27014,2,2,1,2,3,,3,4,Dequindre,Rd,799402,2.604,2.874,0,6.483371,5,5 +75,-1,0.06391,0,3,0,2,5,,3,3,Progress,Dr,607607,1.455,1.519,0,1.533848,8,4.5 +5170,-1,0.080367,0,3,0,2,5,,3,4,W I 696 Service Drive,,803209,0,0.08,0,1.928811,8,4.5 +5169,-1,0.057477,0,3,0,2,5,,3,4,W I 696 Service Drive,,803209,0.08,0.138,0,1.37945,8,4.5 +4438,0,0.145856,2,2,1,2,3,,3,4,Dequindre,Rd,799402,2.874,3.02,0,3.500533,5,5 +4745,0,0.243999,2,2,1,2,3,,3,4,Dequindre,Rd,799402,3.154,3.398,0,5.855969,5,5 +24862,0,0.515182,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.364371,0.15,4 +28790,0,0.25288,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.069126,0.15,4 +28792,0,0.251228,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.029465,0.15,4 +5265,0,0.140653,2,2,1,2,4,,3,4,10 Mile,Rd,803101,0.486,0.627,0,3.375673,6,4.5 +3872,0,0.470841,2,2,1,2,4,,3,4,Ryan,Rd,799302,3.065,3.536,0,11.300186,6,4.5 +5164,-1,0.078692,0,2,0,2,4,,3,4,11 Mile,Rd,803209,0.691,0.77,0,1.888614,6,4.5 +5205,1,0.422813,2,0,0,2,4,,3,4,11 Mile,Rd,803208,0.759,1.182,0,10.147502,6,4.5 +19329,1,0.219876,1,0,0,1,1,ROF,3,4,W I 696/11 Mile,RAMP,1740310,0,0.22,0,,2.24,5 +19345,-1,0.557388,0,4,0,1,1,,3,4,W I 696,,1740308,0.358,0.915,0,,0.58,7 +19371,1,0.182731,1,0,0,1,1,RON,3,4,11 Mile/E I 696,RAMP,1740202,0,0.183,0,,1.09,4 +19386,1,0.533942,4,0,0,1,1,,3,4,E I 696,,1740201,0.392,0.926,0,,0.58,7 +28784,0,0.476929,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.446295,0.15,4 +28794,0,0.511697,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.280726,0.15,4 +5166,-1,0.116379,0,2,0,2,5,,3,4,W I 696 Service Drive,,803209,0.466,0.582,0,2.793093,8,4.5 +5208,1,0.388572,2,0,0,2,5,,3,4,E I 696 Service Drive,,803208,0.221,0.61,0,9.325717,8,4.5 +6504,1,0.106302,2,0,0,2,4,,3,4,11 Mile,Rd,805404,0.264,0.37,0,2.55125,6,4.5 +6922,1,0.206962,2,0,0,2,4,,3,4,11 Mile,Rd,805405,0,0.207,0,4.967082,6,4.5 +19388,1,0.207263,1,0,0,1,1,RON,3,4,Dequindre/E I 696,RAMP,1740110,0,0.207,0,,1.09,4 +5209,1,0.046755,3,0,0,2,5,,3,4,E I 696 Service Drive,,803208,0.175,0.221,0,1.122123,8,4.5 +6512,1,0.079251,2,0,0,2,4,,3,4,11 Mile,Rd,805404,0.157,0.236,0,1.902028,6,4.5 +6929,0,0.026769,2,2,1,2,4,,3,4,11 Mile,Rd,805404,0.13,0.157,0,0.642446,6,4.5 +5167,-1,0.023284,0,2,0,2,5,,3,4,W I 696 Service Drive,,803209,0.442,0.466,0,0.558818,8,4.5 +6923,1,0.027655,2,0,0,2,4,,3,4,11 Mile,Rd,805404,0.236,0.264,0,0.663731,6,4.5 +5633,1,0.02984,1,0,0,2,4,,3,4,Service Drive/ 11 Mile Cutoff,,805403,0,0.03,0,0.716151,6,4.5 +5165,-1,0.109501,0,2,0,2,4,,3,4,11 Mile,Rd,803209,0.582,0.691,0,2.628021,6,4.5 +5207,1,0.09792,2,0,0,2,4,,3,4,11 Mile,Rd,803208,0.61,0.708,0,2.350083,6,4.5 +5206,1,0.051215,2,0,0,2,4,,3,4,11 Mile,Rd,803208,0.708,0.759,0,1.229158,6,4.5 +5163,-1,0.382338,0,2,0,2,4,,3,4,11 Mile,Rd,803209,0.77,1.152,0,9.176119,6,4.5 +4247,0,0.052852,2,2,1,2,4,,3,4,Ryan,Rd,799302,3.012,3.065,0,1.268442,6,4.5 +28782,0,0.263495,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.323869,0.15,4 +3866,0,0.553124,2,2,1,2,4,,3,4,Ryan,Rd,799302,4.502,5.055,0,13.274985,6,4.5 +4382,0,0.546367,2,2,1,2,3,,3,4,Dequindre,Rd,799402,4.493,5.04,0,13.112796,5,5 +5483,0,0.4986,1,1,0,2,4,,3,4,Chicago,Rd,804109,0,0.499,0,11.96639,6,4.5 +5536,0,0.434418,2,2,1,2,3,,3,4,13 Mile,Rd,805105,0,0.434,0,10.426021,5,5 +6860,0,0.270088,2,2,1,2,3,,3,4,12 Mile,Rd,803401,0,0.27,0,6.48211,5,5 +25374,0,0.473733,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.369591,0.15,4 +28798,0,0.516473,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.395349,0.15,4 +28799,0,0.301827,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.243838,0.15,4 +28801,0,0.565662,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.575893,0.15,4 +28806,0,0.546933,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.126386,0.15,4 +2566,0,0.336529,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,21.677,22.014,0,8.076701,5,5 +4709,0,0.47658,2,2,1,2,3,,3,4,Dequindre,Rd,799402,4.017,4.493,0,11.437927,5,5 +28796,0,0.269056,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.457342,0.15,4 +28802,0,0.561003,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.464073,0.15,4 +3234,0,0.177375,2,2,1,2,3,,3,3,12 Mile,Rd,4462980,21.5,21.677,0,4.257011,5,5 +4156,0,0.341668,2,2,1,2,3,,3,4,Dequindre,Rd,799402,3.675,4.017,0,8.200025,5,5 +28795,0,0.253972,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.095327,0.15,4 +28803,0,0.246018,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.904435,0.15,4 +153,0,0.372126,2,2,1,2,3,,3,3,13 Mile,Rd,607408,0,0.372,0,8.931019,5,5 +2248,0,0.393346,2,2,1,2,5,,3,3,Whitcomb,,647603,0.91,1.303,0,9.440297,8,4.5 +4371,0,0.156277,2,2,1,2,3,,3,4,Dequindre,Rd,799402,5.245,5.401,0,3.750652,5,5 +25094,0,0.258013,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.19232,0.15,4 +28285,0,0.564884,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,13.557226,0.15,4 +29969,0,0.249512,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.988277,0.15,4 +152,0,0.19597,2,2,1,2,3,,3,3,13 Mile,Rd,607408,0.372,0.568,0,4.70327,5,5 +25095,0,0.211155,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.067728,0.15,4 +2249,1,0.161319,2,0,0,2,5,DV2,3,3,Whitcomb,,647603,0.749,0.91,0,3.871645,8,4.5 +20485,-1,0.163227,0,2,0,2,5,DV2,3,3,Whitcomb,,4400514,0.749,0.912,0,3.917449,8,4.5 +4101,0,0.132998,2,2,1,2,3,,3,4,Dequindre,Rd,799402,5.04,5.173,0,3.191955,5,5 +4698,0,0.072584,2,2,1,2,3,,3,4,Dequindre,Rd,799402,5.173,5.245,0,1.742012,5,5 +28768,0,0.265225,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.365407,0.15,4 +4089,0,0.21195,2,2,1,2,3,,3,4,Dequindre,Rd,799402,5.401,5.613,0,5.0868,5,5 +4544,0,0.462545,2,2,1,2,4,,3,4,Ryan,Rd,799302,4.04,4.502,0,11.101087,6,4.5 +6852,0,0.52989,2,2,1,2,3,,3,4,12 Mile,Rd,803401,0.395,0.925,0,12.717349,5,5 +28800,0,0.54941,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.18585,0.15,4 +28804,0,0.520762,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.498281,0.15,4 +28805,0,0.25492,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.118077,0.15,4 +6854,0,0.124677,2,2,1,2,3,,3,4,12 Mile,Rd,803401,0.27,0.395,0,2.992248,5,5 +4539,0,0.2098,2,2,1,2,4,,3,4,Ryan,Rd,799302,5.324,5.534,0,5.035202,6,4.5 +5481,0,0.499461,1,1,0,2,4,,3,4,Chicago,Rd,804109,0.499,0.998,0,11.98706,6,4.5 +5532,0,0.180256,2,2,1,2,3,,3,4,13 Mile,Rd,805105,0.434,0.615,0,4.326141,5,5 +25802,0,0.515485,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.371641,0.15,4 +28765,0,0.09883,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.371924,0.15,4 +4890,0,0.269253,2,2,1,2,4,,3,4,Ryan,Rd,799302,5.055,5.324,0,6.46207,6,4.5 +5528,0,0.321591,2,2,1,2,3,,3,4,13 Mile,Rd,805105,0.615,0.936,0,7.718176,5,5 +4873,0,0.168976,2,2,1,2,4,,3,4,Ryan,Rd,799302,5.534,5.703,0,4.055436,6,4.5 +4901,0,0.026637,2,2,1,2,4,,3,4,Ryan,Rd,799302,2.512,2.538,0,0.639299,6,4.5 +5009,1,0.52702,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,2.297,2.824,0,12.648475,5,5 +5161,-1,0.638135,0,2,0,2,5,,3,4,11 Mile,Rd,803209,1.553,2.191,0,15.315243,8,4.5 +5203,1,0.658655,2,0,0,2,5,,3,4,11 Mile,Rd,803208,1.564,2.223,0,15.80772,8,4.5 +5262,0,0.460538,2,2,1,2,4,,3,4,10 Mile,Rd,803101,1.525,1.985,0,11.052912,6,4.5 +5552,0,0.467381,1,1,0,2,5,,3,4,Stephens,Rd,805007,0.339,0.806,0,11.21714,8,4.5 +6688,0,0.307439,1,1,0,2,5,,3,4,Sherwood,Ave,804507,2.257,2.564,0,7.378525,8,4.5 +6974,1,0.532364,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,10.062,10.594,0,12.776738,5,5 +19326,1,0.168059,2,0,0,1,1,RON,3,4,S Mound/ W I 696,RAMP,1740401,0.46,0.628,0,,1.09,4 +19343,-1,0.828247,0,4,0,1,1,,3,4,W I 696,,1740308,1.904,2.732,0,,0.58,7 +19350,1,0.302027,1,0,0,1,1,RON,3,4,N Mound/E I 696,RAMP,1740305,0,0.302,0,,1.09,4 +19354,1,0.300754,2,0,0,2,5,,3,4,N Mound Service Drive,,1740304,0.066,0.366,0,7.218104,8,4.5 +19355,1,0.350609,2,0,0,2,5,,3,4,S Mound Service Dr/S Mound,Ramp,1740303,0.507,0.858,0,8.414626,8,4.5 +19359,1,0.3329,2,0,0,1,1,ROF,3,4,E I 696/S Mound,RAMP,1740302,0.453,0.786,0,,2.24,5 +19361,1,0.300298,2,0,0,1,1,ROF,3,4,E I 696/S Mound,RAMP,1740302,0,0.3,0,,2.24,5 +19384,1,0.787385,4,0,0,1,1,,3,4,E I 696,,1740201,1.874,2.661,0,,0.58,7 +20800,0,0.26742,1,1,0,2,5,,3,4,Frazho,Rd,4200036,0.752,1.02,0,6.418073,8,4.5 +25433,0,0.50898,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.215527,0.15,4 +26041,0,0.534876,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.837014,0.15,4 +26145,0,0.493299,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.839182,0.15,4 +28773,0,0.512701,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.304818,0.15,4 +28787,0,0.496957,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.926958,0.15,4 +28809,0,0.330919,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.942047,0.15,4 +3887,0,0.253734,2,2,1,2,4,,3,4,Ryan,Rd,799302,1.781,2.035,0,6.089605,6,4.5 +5263,0,0.536329,2,2,1,2,4,,3,4,10 Mile,Rd,803101,0.989,1.525,0,12.871901,6,4.5 +5606,0,0.290472,1,1,0,2,5,,3,4,Stephens,Rd,805007,0,0.29,0,6.971335,8,4.5 +26172,0,0.508525,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.2046,0.15,4 +28810,0,0.257351,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.176418,0.15,4 +4175,0,0.255609,2,2,1,2,4,,3,4,Ryan,Rd,799302,1.526,1.781,0,6.134618,6,4.5 +6856,0,0.188725,1,1,0,2,5,,3,4,Stephens,Rd,806307,0.998,1.187,0,4.529393,8,4.5 +4908,0,0.476807,2,2,1,2,4,,3,4,Ryan,Rd,799302,2.035,2.512,0,11.443357,6,4.5 +5553,0,0.04821,1,1,0,2,5,,3,4,Stephens,Rd,805007,0.29,0.339,0,1.157036,8,4.5 +28811,0,0.255827,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.139842,0.15,4 +20801,0,0.425993,1,1,0,2,5,,3,4,Frazho,Rd,4200036,0.326,0.752,0,10.223822,8,4.5 +25432,0,0.547524,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.140577,0.15,4 +26818,0,0.544731,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.073555,0.15,4 +28776,0,0.48823,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.717509,0.15,4 +28777,0,0.501727,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.041439,0.15,4 +28778,0,0.228496,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.483916,0.15,4 +20802,0,0.326383,1,1,0,2,5,,3,4,Frazho,Rd,4200036,0,0.326,0,7.833191,8,4.5 +28779,0,0.203878,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.893083,0.15,4 +5015,1,0.230347,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,1.797,2.028,0,5.528327,5,5 +5259,0,0.293338,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.144,2.437,0,7.040109,6,4.5 +5616,1,0.507754,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,10.842,11.35,0,12.186092,5,5 +6770,0,0.222854,2,2,0,2,5,,3,4,Sherwood,Ave,804507,1.799,2.022,0,5.348496,8,4.5 +25140,0,0.228279,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.478698,0.15,4 +28885,0,0.381471,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.155303,0.15,4 +3982,1,0.125269,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,2.171,2.297,0,3.006456,5,5 +5649,1,0.085698,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,10.594,10.68,0,2.056761,5,5 +19307,1,0.053602,1,0,0,2,5,,3,4,N Mound/Service Drive,Ramp,1740602,0,0.054,0,1.286445,8,4.5 +4289,1,0.143893,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,2.028,2.171,0,3.453427,5,5 +5260,0,0.136787,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.007,2.144,0,3.282876,6,4.5 +6955,1,0.16197,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,10.68,10.842,0,3.887285,5,5 +5261,0,0.021818,2,2,1,2,4,,3,4,10 Mile,Rd,803101,1.985,2.007,0,0.52362,6,4.5 +28807,0,0.402364,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.656739,0.15,4 +6692,0,0.075881,1,1,0,2,5,,3,4,Sherwood,Ave,804507,2.181,2.257,0,1.821148,8,4.5 +28760,0,0.209943,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.038627,0.15,4 +6695,0,0.158894,1,1,0,2,5,,3,4,Sherwood,Ave,804507,2.022,2.181,0,3.813461,8,4.5 +3977,1,0.419149,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,2.824,3.243,0,10.059572,5,5 +5158,-1,0.388918,0,2,0,2,5,,3,4,11 Mile,Rd,803209,2.437,2.826,0,9.334029,8,4.5 +5159,-1,0.155953,0,2,0,2,5,,3,4,11 Mile,Rd,803209,2.281,2.437,0,3.742882,8,4.5 +5201,1,0.159027,2,0,0,2,5,,3,4,11 Mile,Rd,803208,2.311,2.47,0,3.816649,8,4.5 +5657,1,0.397874,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,9.664,10.062,0,9.548966,5,5 +19306,1,0.343377,1,0,0,2,5,,3,4,11 Mile/N Mound,Ramp,1740603,0,0.343,0,8.241038,8,4.5 +19309,1,0.360537,1,0,0,2,5,,3,4,S Mound/11 Mile,Ramp,1740510,0,0.36,0,8.65288,8,4.5 +19314,1,0.68514,2,0,0,1,1,RON,3,4,S Mound/E I 696,RAMP,1740505,0,0.685,0,,1.09,4 +19323,1,0.312053,2,0,0,1,1,ROF,3,4,W I 696/N Mound,RAMP,1740402,0.384,0.696,0,,2.24,5 +19325,1,0.241209,2,0,0,1,1,ROF,3,4,W I 696/N Mound,RAMP,1740402,0,0.241,0,,2.24,5 +19328,1,0.229463,2,0,0,1,1,RON,3,4,S Mound/ W I 696,RAMP,1740401,0,0.229,0,,1.09,4 +19349,1,0.310333,1,0,0,1,1,RON,3,4,N Mound/E I 696,RAMP,1740305,0.302,0.612,0,,1.09,4 +20760,0,0.124439,1,1,0,2,5,,3,4,Mackersie,Ave,4200036,1.219,1.344,0,2.986525,8,4.5 +26739,0,0.222012,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.328294,0.15,4 +26743,0,0.241715,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.801166,0.15,4 +28808,0,0.05919,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.420548,0.15,4 +29880,0,0.49546,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.89105,0.15,4 +5160,-1,0.089823,0,2,0,2,5,,3,4,11 Mile,Rd,803209,2.191,2.281,0,2.155746,8,4.5 +5202,1,0.088029,2,0,0,2,5,,3,4,11 Mile,Rd,803208,2.223,2.311,0,2.112686,8,4.5 +19311,1,0.38818,2,0,0,1,1,ROF,3,4,W I 696/S Mound,RAMP,1740508,0,0.388,0,,2.24,5 +19312,1,0.38503,2,0,0,1,1,ROF,3,4,E I 696/N Mound,RAMP,1740507,0,0.385,0,,2.24,5 +19313,1,0.546409,2,0,0,1,1,RON,3,4,N Mound/ W I 696,RAMP,1740506,0,0.546,0,,1.09,4 +19353,1,0.379218,2,0,0,2,5,,3,4,N Mound Service Drive,,1740304,0.366,0.745,0,9.101223,8,4.5 +19356,1,0.337374,2,0,0,2,5,,3,4,S Mound Service Drive,,1740303,0.17,0.507,0,8.09697,8,4.5 +19357,1,0.14426,1,0,0,2,5,,3,4,S Mound Service Drive,,1740303,0.026,0.17,0,3.46225,8,4.5 +20799,0,0.113194,1,1,0,2,5,,3,4,Frazho,Rd,4200036,1.02,1.133,0,2.716666,8,4.5 +19360,1,0.152836,1,0,0,1,1,ROF,3,4,E I 696/S Mound,RAMP,1740302,0.3,0.453,0,,2.24,5 +19327,1,0.230797,2,0,0,1,1,RON,3,4,S Mound/ W I 696,RAMP,1740401,0.229,0.46,0,,1.09,4 +19358,1,0.025791,1,0,0,2,5,,3,4,S Mound Service Drive,,1740303,0,0.026,0,0.618991,8,4.5 +20761,0,0.086631,1,1,0,2,5,,3,4,Frazho,Rd,4200036,1.133,1.219,0,2.079146,8,4.5 +19324,1,0.142794,1,0,0,1,1,ROF,3,4,W I 696/N Mound,RAMP,1740402,0.241,0.384,0,,2.24,5 +19352,1,0.102799,1,0,0,2,5,,3,4,N Mound Service Drive,,1740304,0.745,0.848,0,2.467182,8,4.5 +19308,1,0.049906,1,0,0,1,3,RSF,3,4,11 Mile/S Mound,Ramp,1740601,0,0.05,0,,5,5 +19310,1,0.076717,1,0,0,1,3,RSF,3,4,N Mound/11 Mile,Ramp,1740509,0,0.077,0,,5,5 +19351,1,0.026092,1,0,0,2,5,,3,4,N Mound Service Drive,,1740304,0.848,0.874,0,0.626211,8,4.5 +5001,1,0.106282,3,0,0,2,3,DIV,3,4,Mound,Rd,799110,3.243,3.349,0,2.550768,5,5 +6976,1,0.178149,3,0,0,2,3,DIV,3,4,Mound,Rd,812510,9.486,9.664,0,4.27558,5,5 +5658,1,0.140008,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,9.346,9.486,0,3.360203,5,5 +4658,1,0.143312,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,3.349,3.492,0,3.43948,5,5 +5200,1,0.231866,2,0,0,2,5,,3,4,11 Mile,Rd,803208,2.47,2.701,0,5.564786,8,4.5 +6674,0,0.488857,1,1,0,2,5,,3,4,Sherwood,Ave,804507,2.564,3.053,0,11.732568,8,4.5 +19383,1,0.279672,4,0,0,1,1,,3,4,E I 696,,1740201,2.661,2.94,0,,0.58,7 +19348,1,0.083414,1,0,0,1,1,RON,3,4,N Mound/E I 696,RAMP,1740305,0.612,0.696,0,,1.09,4 +6667,0,0.026036,1,1,0,2,5,,3,4,Sherwood,Ave,804507,3.053,3.079,0,0.624861,8,4.5 +4655,1,0.972501,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,4.031,5.003,0,23.340021,5,5 +5398,1,0.5588,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,7.837,8.396,0,13.411198,5,5 +5459,1,0.166363,2,0,0,2,3,DV2,3,4,13 Mile,Rd,805105,1.811,1.977,0,3.992703,5,5 +5474,0,0.686706,1,1,0,2,4,,3,4,Chicago,Rd,804109,1.36,2.046,0,16.480941,6,4.5 +6787,0,0.320471,2,2,1,2,3,,3,4,12 Mile,Rd,803401,1.664,1.985,0,7.691302,5,5 +20694,-1,0.166337,0,2,0,2,3,DV2,3,4,13 Mile,Rd,4204468,0,0.166,0,3.992083,5,5 +26738,0,0.55721,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.373035,0.15,4 +28774,0,0.444626,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.671021,0.15,4 +28812,0,0.685125,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.44301,0.15,4 +28814,0,0.565965,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.583164,0.15,4 +28815,0,0.577143,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.851432,0.15,4 +28817,0,0.291915,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.005959,0.15,4 +29911,0,0.501083,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.026001,0.15,4 +29912,0,0.523313,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.559517,0.15,4 +29914,0,0.519753,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.474064,0.15,4 +29915,0,0.549565,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.189568,0.15,4 +6790,0,0.100401,2,2,1,2,3,,3,4,12 Mile,Rd,803401,1.34,1.44,0,2.40962,5,5 +28781,0,0.540596,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.974308,0.15,4 +28816,0,0.499856,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.99654,0.15,4 +6789,0,0.224251,2,2,1,2,3,,3,4,12 Mile,Rd,803401,1.44,1.664,0,5.38202,5,5 +28770,0,0.262049,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.289166,0.15,4 +5472,0,0.370998,2,2,0,2,3,,3,4,13 Mile,Rd,805105,1.44,1.811,0,8.903961,5,5 +28772,0,0.274469,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.587245,0.15,4 +5783,1,0.444193,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,8.396,8.84,0,10.660639,5,5 +6766,0,0.210873,2,2,1,2,3,,3,4,12 Mile,Rd,803401,2.007,2.218,0,5.060964,5,5 +28780,0,0.612392,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.697418,0.15,4 +28813,0,0.300529,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.212707,0.15,4 +6777,0,0.022078,2,2,0,2,3,,3,4,12 Mile,Rd,803401,1.985,2.007,0,0.529877,5,5 +4648,1,0.287833,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.051,5.339,0,6.908004,5,5 +5399,1,0.077939,2,0,0,2,4,DV2,3,4,Chicago,Rd,804109,2.41,2.488,0,1.870547,6,4.5 +5402,1,0.292942,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,7.53,7.822,0,7.030604,5,5 +5458,0,0.03729,1,1,0,2,4,,3,4,Chicago,Rd,804109,2.354,2.392,0,0.894951,6,4.5 +20689,-1,0.095861,0,2,0,2,4,DV2,3,4,Chicago,Rd,4204468,0.523,0.619,0,2.300654,6,4.5 +4338,1,0.032756,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.003,5.036,0,0.786135,5,5 +5443,1,0.354383,2,0,0,2,4,DV2,3,4,13 Mile,Rd,805105,1.999,2.353,0,8.505189,6,4.5 +20690,-1,0.335174,0,2,0,2,4,DV2,3,4,13 Mile,Rd,4204468,0.188,0.523,0,8.04417,6,4.5 +5454,1,0.021924,2,0,0,2,3,DV2,3,4,13 Mile,Rd,805105,1.977,1.999,0,0.526165,5,5 +20692,-1,0.022046,0,2,0,2,3,DV2,3,4,13 Mile,Rd,4204468,0.166,0.188,0,0.529112,5,5 +5791,1,0.014566,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,7.822,7.837,0,0.349591,5,5 +4991,1,0.014911,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.036,5.051,0,0.357853,5,5 +5453,1,0.018343,1,0,0,2,4,,3,4,Chicago,Rd,804109,2.392,2.41,0,0.440235,6,4.5 +3969,1,0.24337,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.528,5.771,0,5.840885,5,5 +5451,1,0.239835,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,7.099,7.339,0,5.756036,5,5 +5470,0,0.285267,1,1,0,2,4,,3,4,Chicago,Rd,804109,2.069,2.354,0,6.846414,6,4.5 +28724,0,0.248928,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.974268,0.15,4 +28759,0,0.339078,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.137863,0.15,4 +29654,0,0.26939,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.465355,0.15,4 +4330,1,0.189365,4,0,0,2,3,DIV,3,4,Mound,Rd,799110,5.339,5.528,0,4.544765,5,5 +5797,1,0.190833,4,0,0,2,3,DIV,3,4,Mound,Rd,812510,7.339,7.53,0,4.579993,5,5 +5473,0,0.022692,1,1,0,2,4,,3,4,Chicago,Rd,804109,2.046,2.069,0,0.544602,6,4.5 +5395,0,0.093998,2,2,1,2,4,,3,4,Chicago,Rd,804109,2.645,2.739,0,2.255944,6,4.5 +5396,0,0.156929,2,2,1,2,4,,3,4,Chicago,Rd,804109,2.488,2.645,0,3.766301,6,4.5 +3959,1,0.36066,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,8.114,8.475,0,8.655843,3.7,5 +4082,0,0.458522,2,2,1,2,3,,4,4,Dequindre,Rd,799402,8.083,8.542,0,11.004532,3.7,5 +4194,0,0.532172,2,2,1,2,3,,3,4,14 Mile,Rd,798407,8.998,9.53,0,12.772123,5,5 +4864,0,0.494723,2,2,1,2,4,,4,4,Ryan,Rd,799302,8.112,8.606,0,11.873353,4.5,4.5 +4996,1,0.562868,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,12.922,13.485,0,13.508836,3.7,5 +5651,0,0.440687,1,1,0,2,3,,4,4,18 Mile,Rd,805207,0.973,1.413,0,10.576489,3.7,5 +5740,1,0.561659,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,0.962,1.523,0,13.479814,3.7,5 +5878,1,0.497176,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,4.26,4.757,0,11.932216,3.7,5 +6053,0,0.443717,2,2,1,2,4,,4,4,15 Mile,Rd,803605,0.975,1.418,0,10.649217,4.5,4.5 +6708,0,0.419478,2,2,1,2,4,,4,4,17 Mile,Rd,805203,0.973,1.392,0,10.067477,4.5,4.5 +25091,0,0.505691,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.136572,0.15,4 +25092,0,0.530186,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.724461,0.15,4 +28764,0,0.536688,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.880503,0.15,4 +28818,0,0.512891,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.30938,0.15,4 +28826,0,0.489638,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.751314,0.15,4 +29020,0,0.525055,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.60133,0.15,4 +29612,0,0.490701,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.776824,0.15,4 +29613,0,0.51138,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.273112,0.15,4 +29618,0,0.538666,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.927977,0.15,4 +29859,0,0.503236,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.077652,0.15,4 +29862,0,0.49504,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.880962,0.15,4 +30216,0,0.509941,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.238572,0.15,4 +4160,0,0.343828,2,2,1,2,3,,3,4,14 Mile,Rd,798407,10.122,10.466,0,8.251873,5,5 +4235,1,0.467818,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,13.979,14.447,0,11.22763,3.7,5 +4369,0,0.417888,2,2,1,2,3,,4,4,Dequindre,Rd,799402,6.65,7.068,0,10.029317,3.7,5 +4529,0,0.540885,2,2,1,2,4,,4,4,Ryan,Rd,799302,6.588,7.128,0,12.981235,4.5,4.5 +5752,1,0.462793,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,0,0.463,0,11.107028,3.7,5 +6136,0,0.313244,2,2,1,2,4,,4,4,15 Mile,Rd,803605,0.228,0.541,0,7.517856,4.5,4.5 +27554,0,0.267344,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.41625,0.15,4 +28837,0,0.544065,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.057564,0.15,4 +28840,0,0.521035,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.504849,0.15,4 +28842,0,0.563794,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.531062,0.15,4 +29621,0,0.541868,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.004827,0.15,4 +30217,0,0.23051,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.532235,0.15,4 +702,0,0.415268,2,2,1,2,3,,3,3,14 Mile,Rd,625804,0,0.415,0,9.966437,5,5 +4086,0,0.202837,2,2,1,2,3,,4,4,Dequindre,Rd,799402,6.373,6.576,0,4.8681,3.7,5 +27555,0,0.570627,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.695046,0.15,4 +27556,0,0.510684,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.256409,0.15,4 +2123,0,0.206993,2,2,1,2,3,,3,3,14 Mile,Rd,625804,0.415,0.622,0,4.967829,5,5 +27558,0,0.273164,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,6.555928,0.15,4 +4370,0,0.313463,2,2,1,2,3,,4,4,Dequindre,Rd,799402,6.06,6.373,0,7.523113,3.7,5 +4694,0,0.074769,2,2,1,2,3,,4,4,Dequindre,Rd,799402,6.576,6.65,0,1.794461,3.7,5 +154,1,0.442118,2,0,0,2,3,DIV,4,3,Big Beaver,Rd,607204,5.567,6.009,0,10.61084,3.7,5 +3770,0,0.556908,2,2,1,2,3,,4,3,Maple,Rd,683906,19.67,20.226,0,13.365801,3.7,5 +4084,0,0.58541,2,2,1,2,3,,4,4,Dequindre,Rd,799402,7.068,7.653,0,14.049839,3.7,5 +21137,-1,0.352694,0,3,0,2,3,DIV,4,3,Big Beaver,Rd,4408243,5.135,5.488,0,8.464664,3.7,5 +27551,0,0.502284,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.054824,0.15,4 +27552,0,0.500232,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.005562,0.15,4 +28841,0,0.532249,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.773983,0.15,4 +29622,0,0.262993,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.311844,0.15,4 +29625,0,0.499716,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.993196,0.15,4 +6146,0,0.228312,2,2,1,2,4,,4,4,15 Mile,Rd,803605,0,0.228,0,5.479485,4.5,4.5 +29623,0,0.511053,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.265261,0.15,4 +4693,0,0.413478,2,2,1,2,3,,4,4,Dequindre,Rd,799402,7.653,8.067,0,9.923477,3.7,5 +4367,0,0.016434,2,2,1,2,3,,4,4,Dequindre,Rd,799402,8.067,8.083,0,0.394422,3.7,5 +4168,0,0.144259,2,2,1,2,3,,3,4,14 Mile,Rd,798407,9.78,9.924,0,3.462222,5,5 +4228,0,0.468784,2,2,1,2,4,,4,4,Ryan,Rd,799302,6.093,6.562,0,11.250819,4.5,4.5 +28838,0,0.487685,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.704443,0.15,4 +28843,0,0.569745,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.673879,0.15,4 +4431,0,0.197983,2,2,1,2,3,,3,4,14 Mile,Rd,798407,9.924,10.122,0,4.75159,5,5 +4440,0,0.25016,2,2,1,2,3,,3,4,14 Mile,Rd,798407,9.53,9.78,0,6.003834,5,5 +28836,0,0.257796,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.187102,0.15,4 +4872,0,0.026035,2,2,1,2,4,,4,4,Ryan,Rd,799302,6.562,6.588,0,0.624838,4.5,4.5 +4336,1,0.479121,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,13.5,13.979,0,11.498903,3.7,5 +4869,0,0.108982,2,2,1,2,4,,4,4,Ryan,Rd,799302,7.566,7.675,0,2.615577,4.5,4.5 +5749,1,0.321816,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,0.463,0.784,0,7.723573,3.7,5 +6123,0,0.133281,2,2,1,2,4,,4,4,15 Mile,Rd,803605,0.541,0.675,0,3.198751,4.5,4.5 +28846,0,0.242568,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.821629,0.15,4 +29619,0,0.497783,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.946788,0.15,4 +29620,0,0.559923,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.438145,0.15,4 +4227,0,0.438127,2,2,1,2,4,,4,4,Ryan,Rd,799302,7.128,7.566,0,10.515059,4.5,4.5 +6093,0,0.300193,2,2,1,2,4,,4,4,15 Mile,Rd,803605,0.675,0.975,0,7.204624,4.5,4.5 +28845,0,0.479342,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.504201,0.15,4 +4527,0,0.415798,2,2,1,2,4,,4,4,Ryan,Rd,799302,7.675,8.091,0,9.979149,4.5,4.5 +5742,1,0.177315,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,0.784,0.962,0,4.255567,3.7,5 +4225,0,0.020714,2,2,1,2,4,,4,4,Ryan,Rd,799302,8.091,8.112,0,0.497127,4.5,4.5 +4652,1,0.015068,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,13.485,13.5,0,0.361624,3.7,5 +4223,0,0.463373,2,2,1,2,4,,4,4,Ryan,Rd,799302,9.112,9.576,0,11.120956,4.5,4.5 +4366,0,0.552546,2,2,1,2,3,,4,4,Dequindre,Rd,799402,9.075,9.628,0,13.26111,3.7,5 +5390,0,0.365473,2,2,1,2,4,,4,4,17 Mile,Rd,805203,0,0.365,0,8.771349,4.5,4.5 +5946,0,0.358915,1,1,0,2,3,,4,4,18 Mile,Rd,805207,0,0.359,0,8.613951,3.7,5 +28275,0,0.535109,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.842623,0.15,4 +28819,0,0.51807,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.433681,0.15,4 +28821,0,0.487948,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.710751,0.15,4 +29614,0,0.48604,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.664959,0.15,4 +1344,0,0.323718,1,1,1,2,4,,4,3,Wattles,Rd,618802,6.58,6.904,0,7.769238,4.5,4.5 +4692,0,0.533735,2,2,1,2,3,,4,4,Dequindre,Rd,799402,8.542,9.075,0,12.809632,3.7,5 +25089,0,0.497906,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.949737,0.15,4 +4691,0,0.405047,2,2,1,2,3,,4,4,Dequindre,Rd,799402,9.675,10.08,0,9.721117,3.7,5 +25088,0,0.508388,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.201309,0.15,4 +4081,0,0.047712,2,2,1,2,3,,4,4,Dequindre,Rd,799402,9.628,9.675,0,1.145092,3.7,5 +4365,0,0.336258,2,2,1,2,3,,4,4,Dequindre,Rd,799402,10.08,10.416,0,8.070192,3.7,5 +4523,0,0.506105,2,2,1,2,4,,4,4,Ryan,Rd,799302,8.606,9.112,0,12.146514,4.5,4.5 +6825,0,0.482144,2,2,1,2,4,,4,4,17 Mile,Rd,805203,0.491,0.973,0,11.571452,4.5,4.5 +28834,0,0.482644,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.583444,0.15,4 +29615,0,0.507892,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.18941,0.15,4 +6696,0,0.125668,2,2,1,2,4,,4,4,17 Mile,Rd,805203,0.365,0.491,0,3.016023,4.5,4.5 +4851,0,0.53359,2,2,1,2,4,,4,4,Ryan,Rd,799302,9.576,10.109,0,12.806168,4.5,4.5 +5563,0,0.500382,1,1,0,2,3,,4,4,18 Mile,Rd,805207,0.472,0.973,0,12.009178,3.7,5 +28847,0,0.501592,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.0382,0.15,4 +28848,0,0.488354,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.720502,0.15,4 +6555,0,0.11348,1,1,0,2,3,,4,4,18 Mile,Rd,805207,0.359,0.472,0,2.723509,3.7,5 +4195,0,0.48096,2,2,1,2,3,,3,4,14 Mile,Rd,798407,8.489,8.97,0,11.543036,5,5 +4207,1,0.483685,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,12.439,12.922,0,11.608429,3.7,5 +4266,1,0.507645,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,6.593,7.101,0,12.183486,3.7,5 +5739,1,0.485257,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,1.523,2.008,0,11.646168,3.7,5 +5845,1,0.453931,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,5.77,6.224,0,10.894343,3.7,5 +6046,0,0.53176,2,2,1,2,4,,4,4,15 Mile,Rd,803605,1.504,2.035,0,12.762249,4.5,4.5 +28763,0,0.520006,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.480151,0.15,4 +28771,0,0.540085,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.96204,0.15,4 +28825,0,0.516861,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.404673,0.15,4 +28831,0,0.497529,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.940694,0.15,4 +28849,0,0.501003,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.024076,0.15,4 +29617,0,0.548572,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.16573,0.15,4 +28833,0,0.501853,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.044462,0.15,4 +4478,0,0.027531,2,2,1,2,3,,3,4,14 Mile,Rd,798407,8.97,8.998,0,0.660749,5,5 +28829,0,0.508911,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.213876,0.15,4 +6047,0,0.08512,2,2,1,2,4,,4,4,15 Mile,Rd,803605,1.418,1.504,0,2.042871,4.5,4.5 +28827,0,0.498975,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.9754,0.15,4 +29860,0,0.519415,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.465966,0.15,4 +4511,0,0.360104,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.871,8.231,0,8.642498,5,5 +4647,1,0.490432,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,6.103,6.593,0,11.770376,3.7,5 +5455,1,0.544106,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,6.224,6.768,0,13.058554,3.7,5 +28850,0,0.501127,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.02706,0.15,4 +4216,0,0.2347,2,2,1,2,3,,3,4,14 Mile,Rd,798407,8.231,8.466,0,5.632791,5,5 +4481,0,0.023236,2,2,1,2,3,,3,4,14 Mile,Rd,798407,8.466,8.489,0,0.557673,5,5 +28832,0,0.261991,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.287779,0.15,4 +28839,0,0.236625,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.678998,0.15,4 +4221,0,0.053728,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.818,7.871,0,1.289483,5,5 +3963,1,0.619619,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,7.101,7.72,0,14.870861,3.7,5 +5456,1,0.556331,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,5.214,5.77,0,13.351936,3.7,5 +5970,0,0.184272,2,2,1,2,4,,4,4,15 Mile,Rd,803605,2.351,2.536,0,4.422521,4.5,4.5 +28852,0,0.499332,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.983979,0.15,4 +6032,0,0.293599,2,2,1,2,4,,4,4,15 Mile,Rd,803605,2.058,2.351,0,7.046377,4.5,4.5 +6038,0,0.022774,2,2,1,2,4,,4,4,15 Mile,Rd,803605,2.035,2.058,0,0.54658,4.5,4.5 +4836,1,0.213593,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,12.203,12.416,0,5.126224,3.7,5 +4983,1,0.372717,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,7.72,8.093,0,8.945217,3.7,5 +5733,1,0.222921,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,2.031,2.254,0,5.350111,3.7,5 +5846,1,0.435963,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,4.778,5.214,0,10.463113,3.7,5 +28828,0,0.277036,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.648859,0.15,4 +28844,0,0.276152,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.627648,0.15,4 +28851,0,0.489843,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.756234,0.15,4 +29861,0,0.508832,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.211957,0.15,4 +4264,1,0.021208,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,8.093,8.114,0,0.508997,3.7,5 +5479,1,0.020794,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,4.757,4.778,0,0.499065,3.7,5 +5735,1,0.022463,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,2.008,2.031,0,0.539112,3.7,5 +4496,1,0.022481,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,12.416,12.439,0,0.539539,3.7,5 +4259,1,0.622695,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,9.117,9.74,0,14.944689,3.7,5 +4977,1,0.23589,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.117,10.353,0,5.661354,3.7,5 +5737,0,0.019521,1,1,0,2,3,,4,4,18 Mile,Rd,805207,1.996,2.015,0,0.46851,3.7,5 +5940,1,0.441222,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,3.313,3.754,0,10.589338,3.7,5 +5956,1,0.437397,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,2.755,3.192,0,10.497517,3.7,5 +6408,0,0.352854,2,2,1,2,4,,4,4,17 Mile,Rd,805203,1.649,2.002,0,8.468486,4.5,4.5 +26136,0,0.54439,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.065358,0.15,4 +28709,0,0.538931,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.934346,0.15,4 +28712,0,0.50748,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.179521,0.15,4 +28822,0,0.517978,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.431467,0.15,4 +28823,0,0.507519,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.180452,0.15,4 +28854,0,0.494833,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.87599,0.15,4 +29649,0,0.565569,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.573647,0.15,4 +6262,0,0.256885,2,2,1,2,4,,4,4,17 Mile,Rd,805203,1.392,1.649,0,6.165243,4.5,4.5 +28824,0,0.523242,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.557809,0.15,4 +6962,0,0.554233,1,1,0,2,3,,4,4,18 Mile,Rd,805207,1.442,1.996,0,13.301601,3.7,5 +28820,0,0.499078,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.977869,0.15,4 +29832,0,0.503307,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.079363,0.15,4 +29833,0,0.514675,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.352189,0.15,4 +28711,0,0.265953,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.382876,0.15,4 +5392,0,0.028625,1,1,0,2,3,,4,4,18 Mile,Rd,805207,1.413,1.442,0,0.686994,3.7,5 +5548,1,0.154724,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,2.6,2.755,0,3.713378,3.7,5 +4979,1,0.64297,4,0,0,2,3,DIV,4,4,Mound,Rd,799110,8.475,9.117,0,15.431276,3.7,5 +5484,0,0.225685,2,2,1,2,4,,4,4,17 Mile,Rd,805203,2.297,2.523,0,5.416445,4.5,4.5 +5534,1,0.506122,4,0,0,2,3,DIV,4,4,Mound,Rd,812510,3.754,4.26,0,12.146925,3.7,5 +28835,0,0.519043,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.457027,0.15,4 +29650,0,0.570888,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.701304,0.15,4 +26859,0,0.278399,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.68158,0.15,4 +29616,0,0.270494,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.491845,0.15,4 +6947,0,0.273739,2,2,1,2,4,,4,4,17 Mile,Rd,805203,2.024,2.297,0,6.569736,4.5,4.5 +6661,0,0.021575,2,2,1,2,4,,4,4,17 Mile,Rd,805203,2.002,2.024,0,0.51781,4.5,4.5 +3954,1,0.376933,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,9.74,10.117,0,9.046384,3.7,5 +6743,0,0.375812,1,1,0,2,3,,4,4,18 Mile,Rd,805207,2.382,2.758,0,9.019496,3.7,5 +28731,0,0.504567,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.109617,0.15,4 +28853,0,0.523725,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.569396,0.15,4 +29647,0,0.276201,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.628824,0.15,4 +29648,0,0.27997,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.719283,0.15,4 +5545,1,0.121139,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,3.192,3.313,0,2.907344,3.7,5 +6833,0,0.367193,1,1,0,2,3,,4,4,18 Mile,Rd,805207,2.015,2.382,0,8.812629,3.7,5 +4253,0,0.498955,2,2,1,2,4,,3,4,Hoover,Rd,798909,3.555,4.054,0,11.974928,6,4.5 +4324,0,0.271763,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,3.54,3.812,0,6.522323,5,5 +4638,0,0.034862,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.485,3.52,0,0.836697,5,5 +4937,0,0.584033,1,1,0,2,5,,3,4,Masonic,Blvd,802703,0.502,1.086,0,14.016802,8,4.5 +5105,0,0.411073,1,1,0,2,5,,3,4,Martin,Rd,803307,1.683,2.094,0,9.865746,8,4.5 +5106,0,0.581446,1,1,0,2,5,,3,4,Martin,Rd,803307,1.102,1.683,0,13.954698,8,4.5 +5149,-1,0.150511,0,2,0,2,5,,3,4,11 Mile,Rd,803209,4.37,4.52,0,3.612255,8,4.5 +5190,1,0.187885,2,0,0,2,5,,3,4,11 Mile,Rd,803208,4.363,4.551,0,4.509245,8,4.5 +5227,0,0.290657,1,1,0,2,5,,3,4,Frazho,Rd,803110,0,0.291,0,6.97577,8,4.5 +5252,0,0.280004,2,2,1,2,4,,3,4,10 Mile,Rd,803101,4.006,4.286,0,6.720087,6,4.5 +5574,0,0.214061,2,2,0,2,5,,3,4,Bunert,Rd,805804,0.816,1.03,0,5.137473,8,4.5 +6537,0,0.336431,2,2,1,2,4,,3,4,13 Mile,Rd,803410,1.094,1.43,0,8.074354,6,4.5 +6614,0,0.455522,1,1,0,2,5,,3,4,Common,Rd,4211479,0.909,1.364,0,10.932537,8,4.5 +6731,0,0.438324,1,1,0,2,5,,3,4,Stephens,Rd,841910,1.305,1.743,0,10.51977,8,4.5 +6744,0,0.595342,2,2,1,2,3,,3,4,12 Mile,Rd,803401,4.024,4.619,0,14.288203,5,5 +19319,1,0.241474,1,0,0,1,1,ROF,3,4,W I 696/Hoover,RAMP,1740406,0,0.241,0,,2.24,5 +19339,-1,0.67788,0,4,0,1,1,,3,4,W I 696,,1740308,4.058,4.736,0,,0.58,7 +19379,1,0.970089,4,0,0,1,1,,3,4,E I 696,,1740201,4.637,5.607,0,,0.58,7 +28646,0,0.147858,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.548588,0.15,4 +28648,0,0.621756,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.922154,0.15,4 +28669,0,0.4987,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.968799,0.15,4 +28750,0,0.519548,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.469158,0.15,4 +28862,0,0.496165,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.907952,0.15,4 +28868,0,0.288843,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.932226,0.15,4 +28873,0,0.255677,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.136251,0.15,4 +28876,0,0.4977,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.94481,0.15,4 +28880,0,0.575975,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.823389,0.15,4 +28886,0,0.488693,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.728626,0.15,4 +28915,0,0.499841,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.996173,0.15,4 +4039,0,0.702396,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,2.279,2.981,0,16.857512,5,5 +4866,0,0.21946,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.288,2.507,0,5.267042,6,4.5 +5109,0,0.5921,1,1,0,2,5,,3,4,Martin,Rd,803307,0,0.592,0,14.210391,8,4.5 +5153,-1,0.396036,0,2,0,2,5,,3,4,11 Mile,Rd,803209,3.446,3.842,0,9.504867,8,4.5 +5194,1,0.390944,2,0,0,2,5,,3,4,11 Mile,Rd,803208,3.479,3.87,0,9.382658,8,4.5 +5254,0,0.28776,2,2,1,2,4,,3,4,10 Mile,Rd,803101,3.212,3.5,0,6.906246,6,4.5 +5504,0,0.285329,1,1,0,2,5,,3,4,Stephens,Rd,841910,0.516,0.802,0,6.8479,8,4.5 +6388,0,0.33799,1,1,0,2,5,,3,4,Lawrence,St,846504,1.247,1.585,0,8.111761,8,4.5 +19340,-1,0.505593,0,4,0,1,1,,3,4,W I 696,,1740308,3.553,4.058,0,,0.58,7 +19381,1,0.463684,4,0,0,1,1,,3,4,E I 696,,1740201,3.572,4.035,0,,0.58,7 +28871,0,0.551985,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.247638,0.15,4 +28890,0,0.345672,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.296136,0.15,4 +28892,0,0.554866,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.316787,0.15,4 +28895,0,0.572742,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.745816,0.15,4 +28896,0,0.381026,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.144613,0.15,4 +4412,0,0.251964,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,1.777,2.029,0,6.047134,5,5 +5255,0,0.284895,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.927,3.212,0,6.837471,6,4.5 +5505,0,0.329599,1,1,0,2,5,,3,4,Lawrence,St,846504,0.503,0.833,0,7.910374,8,4.5 +5690,0,0.284639,1,1,0,2,5,,3,4,Stephens,Rd,841910,0.232,0.516,0,6.831335,8,4.5 +26146,0,0.31168,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.48033,0.15,4 +28754,0,0.337832,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.107967,0.15,4 +28897,0,0.248493,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.963837,0.15,4 +28898,0,0.284525,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.828603,0.15,4 +5056,0,0.168828,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,1.526,1.695,0,4.05188,5,5 +5420,0,0.170114,1,1,0,2,5,,3,4,Lawrence,St,846504,0.333,0.503,0,4.082731,8,4.5 +5689,0,0.231921,1,1,0,2,5,,3,4,Stephens,Dr,841910,0,0.232,0,5.566105,8,4.5 +4731,0,0.082026,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,1.695,1.777,0,1.968613,5,5 +4329,0,0.250374,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,2.029,2.279,0,6.008978,5,5 +5257,0,0.135041,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.674,2.809,0,3.240986,6,4.5 +6892,-1,0.280396,0,2,0,2,5,DV2,3,4,Lawrence,St,846504,0.833,1.113,0,6.729502,8,4.5 +20157,1,0.308873,2,0,0,2,5,DV2,3,4,Lawrence,St,4208281,0,0.309,0,7.412941,8,4.5 +28752,0,0.049917,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.198005,0.15,4 +29186,0,0.324271,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.782495,0.15,4 +6732,-1,0.133781,0,2,0,2,5,DV2,3,4,Lawrence,St,846504,1.113,1.247,0,3.210752,8,4.5 +20156,1,0.106144,2,0,0,2,5,DV2,3,4,Lawrence,St,4208281,0.309,0.415,0,2.547465,8,4.5 +5256,0,0.118069,2,2,1,2,4,,3,4,10 Mile,Rd,803101,2.809,2.927,0,2.833665,6,4.5 +28899,0,0.24955,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.989208,0.15,4 +5046,0,0.060215,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,2.981,3.042,0,1.445153,5,5 +5155,-1,0.139284,0,3,0,2,5,,3,4,11 Mile,Rd,803209,3.155,3.295,0,3.342824,8,4.5 +5196,1,0.095455,3,0,0,2,5,,3,4,11 Mile,Rd,803208,3.189,3.284,0,2.290916,8,4.5 +19322,1,0.154687,2,0,0,1,1,RON,3,4,M 53/W I 696,RAMP,1740403,0,0.155,0,,1.09,4 +19341,-1,0.549957,0,4,0,1,1,,3,4,W I 696,,1740308,3.003,3.553,0,,0.58,7 +26369,0,0.518505,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.444115,0.15,4 +5197,1,0.177177,3,0,0,2,5,,3,4,11 Mile,Rd,803208,3.012,3.189,0,4.25225,8,4.5 +5198,1,0.072617,2,0,0,2,5,,3,4,11 Mile,Rd,803208,2.939,3.012,0,1.742804,8,4.5 +6177,0,0.206125,1,1,0,2,5,,3,4,Lawrence,St,846504,1.585,1.791,0,4.946997,8,4.5 +4719,0,0.277436,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,3.248,3.525,0,6.658464,5,5 +5156,-1,0.126666,0,3,0,2,5,,3,4,11 Mile,Rd,803209,3.029,3.155,0,3.039995,8,4.5 +28749,0,0.24271,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.82503,0.15,4 +5044,0,0.206252,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,3.042,3.248,0,4.950043,5,5 +4396,0,0.015188,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,3.525,3.54,0,0.364519,5,5 +28894,0,0.457001,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.968026,0.15,4 +5195,1,0.194543,2,0,0,2,5,,3,4,11 Mile,Rd,803208,3.284,3.479,0,4.669023,8,4.5 +19368,1,0.18627,1,0,0,1,1,RON,3,4,M 53/E I 696,RAMP,1740205,0,0.186,0,,1.09,4 +5154,-1,0.151467,0,2,0,2,5,,3,4,11 Mile,Rd,803209,3.295,3.446,0,3.635196,8,4.5 +19321,1,0.133153,1,0,0,1,1,ROF,3,4,W I 696/M 53,RAMP,1740404,0,0.133,0,,2.24,5 +4356,0,0.238647,1,1,0,2,4,,3,4,Hoover,Rd,798909,1.8,2.039,0,5.727537,6,4.5 +5253,0,0.506999,2,2,1,2,4,,3,4,10 Mile,Rd,803101,3.5,4.006,0,12.167988,6,4.5 +6891,0,0.503444,1,1,0,2,5,,3,4,Stephens,Rd,841910,0.802,1.305,0,12.082654,8,4.5 +28893,0,0.253778,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.090664,0.15,4 +28901,0,0.351846,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.444307,0.15,4 +28902,0,0.357073,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.56974,0.15,4 +4528,0,0.24691,1,1,0,2,4,,3,4,Hoover,Rd,798909,1.543,1.789,0,5.92583,6,4.5 +4680,0,0.01077,1,1,0,2,4,,3,4,Hoover,Rd,798909,1.789,1.8,0,0.258471,6,4.5 +4314,0,0.221061,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.039,2.26,0,5.305465,6,4.5 +4019,0,0.027902,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.26,2.288,0,0.669657,6,4.5 +4428,0,0.061094,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.988,3.049,0,1.466266,6,4.5 +5107,0,0.436887,1,1,0,2,5,,3,4,Martin,Rd,803307,0.665,1.102,0,10.485284,8,4.5 +5152,-1,0.280651,0,2,0,2,5,,3,4,11 Mile,Rd,803209,3.842,4.123,0,6.735633,8,4.5 +5192,1,0.190171,3,0,0,2,5,,3,4,11 Mile,Rd,803208,4.082,4.272,0,4.564111,8,4.5 +19320,1,0.193069,1,0,0,1,1,RON,3,4,Hoover/W I 696,RAMP,1740405,0,0.193,0,,1.09,4 +19366,1,0.172191,1,0,0,1,1,RON,3,4,Hoover/E I 696,RAMP,1740207,0,0.172,0,,1.09,4 +19380,1,0.601686,4,0,0,1,1,,3,4,E I 696,,1740201,4.035,4.637,0,,0.58,7 +26368,0,0.538258,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.918187,0.15,4 +28874,0,0.542404,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.017689,0.15,4 +29881,0,0.325963,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.8231,0.15,4 +5193,1,0.212236,2,0,0,2,5,,3,4,11 Mile,Rd,803208,3.87,4.082,0,5.09367,8,4.5 +28891,0,0.483249,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.597974,0.15,4 +19367,1,0.1506,1,0,0,1,1,ROF,3,4,E I 696/Hoover,RAMP,1740206,0,0.151,0,,2.24,5 +28887,0,0.284493,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.827835,0.15,4 +28888,0,0.27533,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.607922,0.15,4 +5108,0,0.073202,1,1,0,2,5,,3,4,Martin,Rd,803307,0.592,0.665,0,1.756838,8,4.5 +4525,0,0.308725,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.507,2.816,0,7.409403,6,4.5 +5191,1,0.09115,3,0,0,2,5,,3,4,11 Mile,Rd,803208,4.272,4.363,0,2.187598,8,4.5 +4744,0,0.172631,2,2,1,2,4,,3,4,Hoover,Rd,798909,2.816,2.988,0,4.143147,6,4.5 +4592,0,0.256018,2,2,1,2,4,,3,4,Hoover,Rd,798909,3.049,3.305,0,6.144439,6,4.5 +5150,-1,0.129719,0,3,0,2,5,,3,4,11 Mile,Rd,803209,4.24,4.37,0,3.113259,8,4.5 +5151,-1,0.117109,0,3,0,2,5,,3,4,11 Mile,Rd,803209,4.123,4.24,0,2.810612,8,4.5 +4554,0,0.23593,2,2,1,2,4,,3,4,Hoover,Rd,798909,3.32,3.555,0,5.662331,6,4.5 +4283,0,0.014151,2,2,1,2,4,,3,4,Hoover,Rd,798909,3.305,3.32,0,0.339618,6,4.5 +4222,0,0.169421,2,2,1,2,4,,3,4,Hoover,Rd,798909,4.547,4.716,0,4.0661,6,4.5 +5037,0,0.489896,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,4.293,4.782,0,11.757497,5,5 +5500,0,0.451592,1,1,0,2,5,,3,4,Chicago,Rd,804109,3.45,3.902,0,10.838204,8,4.5 +5681,0,0.078863,1,1,0,2,5,,3,4,Kennedy,Cir,4211476,0.251,0.33,0,1.892703,8,4.5 +6135,1,0.246499,2,0,0,2,5,DV2,3,4,Lorraine,Ave,811007,0.503,0.75,0,5.915973,8,4.5 +6544,0,0.538401,2,2,1,2,4,,3,4,13 Mile,Rd,803410,0.556,1.094,0,12.921627,6,4.5 +6624,-1,0.268941,0,2,0,2,5,DV2,3,4,Common,Rd,4211479,0.363,0.632,0,6.454584,8,4.5 +6751,0,0.034149,2,2,1,2,3,,3,4,12 Mile,Rd,803401,3.469,3.503,0,0.819573,5,5 +20748,1,0.268922,2,0,0,2,5,DV2,3,4,Common,Rd,4211478,0.363,0.632,0,6.454117,8,4.5 +37117,1,0.015927,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.132,4.148,0,0.382241,5,5 +28729,0,0.064238,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.541717,0.15,4 +28866,0,0.547345,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.136268,0.15,4 +28904,0,0.594924,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.278175,0.15,4 +28906,0,0.403415,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.68197,0.15,4 +28907,0,0.397469,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.539258,0.15,4 +5041,0,0.012986,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,4.033,4.046,0,0.311655,5,5 +5831,1,0.334195,2,0,0,2,5,DV2,3,4,Lorraine,Blvd,811007,0,0.334,0,8.020673,8,4.5 +6470,0,0.274941,1,1,0,2,5,,3,4,Kennedy,Cir,4211475,0,0.275,0,6.598592,8,4.5 +6759,1,0.267864,2,0,0,2,3,DIV,3,4,12 Mile,Rd,803401,2.929,3.197,0,6.428738,5,5 +37115,0,0.242574,1,1,0,2,5,,3,4,Kennedy,Cir,4211476,0,0.243,0,5.821768,8,4.5 +28743,0,0.311913,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.485904,0.15,4 +4032,0,0.220763,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,3.812,4.033,0,5.298304,5,5 +6760,0,0.031017,2,2,1,2,3,,3,4,12 Mile,Rd,803401,2.698,2.729,0,0.744413,5,5 +28746,0,0.251715,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.041165,0.15,4 +37116,1,0.032372,2,0,0,2,3,,3,4,Utica,Rd,4211434,0,0.032,0,0.776925,5,5 +6144,1,0.160331,2,0,0,2,5,DV2,3,4,Lorraine,Blvd,811007,0.334,0.494,0,3.847951,8,4.5 +6625,-1,0.19363,0,2,0,2,5,DV2,3,4,Common,Rd,4211479,0.157,0.351,0,4.64713,8,4.5 +20749,1,0.194146,2,0,0,2,5,DV2,3,4,Common,Rd,4211478,0.156,0.35,0,4.659506,8,4.5 +28909,0,0.264203,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.340869,0.15,4 +29710,0,0.25731,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.175447,0.15,4 +6062,0,0.008842,1,1,0,2,5,,3,4,Kennedy,Cir,4211476,0.243,0.251,0,0.212214,8,4.5 +37114,0,0.02126,1,1,0,2,5,,3,4,Towne Center,Cir,4211471,0.113,0.134,0,0.510231,8,4.5 +20750,1,0.009004,2,0,0,2,5,DV2,3,4,Common,Rd,4211478,0.147,0.156,0,0.216105,8,4.5 +6627,-1,0.009398,0,2,0,2,5,DV2,3,4,Common,Rd,4211479,0.148,0.157,0,0.225558,8,4.5 +28911,0,0.057993,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.391822,0.15,4 +5788,1,0.008767,2,0,0,2,5,DV2,3,4,Lorraine,Ave,811007,0.494,0.503,0,0.210414,8,4.5 +4020,0,0.057934,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.25,5.308,0,1.390419,5,5 +5124,1,0.284804,2,0,0,2,5,DV2,3,4,Kennedy,Cir,4211476,0.5,0.785,0,6.835308,8,4.5 +5626,1,0.191052,1,0,0,1,3,RSF,3,4,Van Dyke/ Chicago,Ramp,812207,0,0.191,0,,5,5 +6016,1,0.156415,1,0,0,1,3,RSF,3,4,Chicago/ Van Dyke,Ramp,812206,0,0.156,0,,5,5 +6169,0,0.19796,2,2,1,2,4,,3,4,Chicago,Rd,804109,3.252,3.45,0,4.751039,6,4.5 +6549,0,0.451007,1,1,1,2,5,,3,4,13 Mile,Rd,803410,0,0.451,0,10.824165,8,4.5 +20753,-1,0.24733,0,2,0,2,5,DV2,3,4,Kennedy,Cir,4211477,0.196,0.443,0,5.935917,8,4.5 +28739,0,0.583618,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.006827,0.15,4 +29706,0,0.576679,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.840306,0.15,4 +4317,0,0.253138,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,4.791,5.044,0,6.075321,5,5 +28745,0,0.266932,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.406367,0.15,4 +4712,0,0.008354,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,4.782,4.791,0,0.200507,5,5 +4024,0,0.184069,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.044,5.228,0,4.417663,5,5 +5387,0,0.05516,2,2,1,2,4,,3,4,Chicago,Rd,804109,3.115,3.17,0,1.323837,6,4.5 +5629,1,0.119617,1,0,0,1,3,RSF,3,4,Van Dyke/ Chicago,Ramp,812205,0,0.12,0,,5,5 +5036,0,0.02237,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.228,5.25,0,0.536871,5,5 +5385,0,0.063868,2,2,1,2,4,,3,4,Chicago,Rd,804109,3.17,3.234,0,1.532838,6,4.5 +5382,0,0.01841,2,2,1,2,4,,3,4,Chicago,Rd,804109,3.234,3.252,0,0.44185,6,4.5 +4004,0,0.065387,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.53,5.595,0,1.569298,5,5 +28742,0,0.244009,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.856225,0.15,4 +4710,0,0.192007,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.338,5.53,0,4.608173,5,5 +5035,0,0.029762,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,5.308,5.338,0,0.714287,5,5 +5780,1,0.249758,2,0,0,2,5,DV2,3,4,Lorraine,Ave,811007,0.75,0.999,0,5.994192,8,4.5 +6012,0,0.163879,2,2,1,2,4,,3,4,Rio,Rd,812208,0,0.164,0,3.933095,6,4.5 +29808,0,0.319541,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.668978,0.15,4 +29809,0,0.288305,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.919314,0.15,4 +28905,0,0.059724,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.433369,0.15,4 +6547,0,0.093763,2,2,1,2,4,,3,4,13 Mile,Rd,803410,0.451,0.545,0,2.250304,6,4.5 +4966,0,0.30914,2,2,1,2,4,,3,4,Hoover,Rd,798909,4.054,4.363,0,7.419362,6,4.5 +6615,-1,0.276744,0,2,0,2,5,DV2,3,4,Common,Rd,4211479,0.632,0.909,0,6.641849,8,4.5 +6748,0,0.520816,2,2,1,2,3,,3,4,12 Mile,Rd,803401,3.503,4.024,0,12.499579,5,5 +20747,1,0.277058,2,0,0,2,5,DV2,3,4,Common,Rd,4211478,0.632,0.909,0,6.649403,8,4.5 +28872,0,0.254058,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.097399,0.15,4 +4617,0,0.183333,2,2,1,2,4,,3,4,Hoover,Rd,798909,4.363,4.547,0,4.399984,6,4.5 +3917,0,0.501885,1,1,0,2,5,,3,4,Masonic,Blvd,802703,0,0.502,0,12.045243,8,4.5 +4268,0,0.515121,2,2,1,2,4,,3,4,Hoover,Rd,798909,5.043,5.558,0,12.362904,6,4.5 +6972,0,0.01699,1,1,0,2,5,,3,4,Chicago,Rd,804109,3.902,3.919,0,0.407762,8,4.5 +3924,0,0.327186,2,2,1,2,4,,3,4,Hoover,Rd,798909,4.716,5.043,0,7.852474,6,4.5 +4598,0,0.249508,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,2.251,2.5,0,5.988189,6,4.5 +5128,-1,0.378991,0,2,0,2,5,,3,4,11 Mile,Rd,803209,5.232,5.611,0,9.095784,8,4.5 +5187,1,0.369465,2,0,0,2,5,,3,4,11 Mile,Rd,803208,5.264,5.634,0,8.867164,8,4.5 +5225,0,0.319933,1,1,0,2,5,,3,4,Frazho,Rd,803110,1.002,1.322,0,7.678388,8,4.5 +5250,0,0.317541,2,2,1,2,4,,3,4,10 Mile,Rd,803101,4.996,5.314,0,7.620993,6,4.5 +5305,0,0.261915,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,2.688,2.949,0,6.285967,5,5 +5307,0,0.506017,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,1.84,2.346,0,12.144402,5,5 +5329,0,0.528446,1,1,0,2,5,,3,4,Stephens,Dr,803008,0.056,0.585,0,12.682702,8,4.5 +19338,-1,0.822482,0,4,0,1,1,,3,4,W I 696,,1740308,4.736,5.558,0,,0.58,7 +25689,0,0.366985,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.807628,0.15,4 +25691,0,0.298953,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.174862,0.15,4 +28870,0,0.445942,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.702603,0.15,4 +28879,0,0.333664,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.007941,0.15,4 +28912,0,0.335919,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.062067,0.15,4 +28914,0,0.32399,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.775753,0.15,4 +4045,0,0.26247,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,1.739,2.001,0,6.299279,6,4.5 +5251,0,0.709888,2,2,1,2,4,,3,4,10 Mile,Rd,803101,4.286,4.996,0,17.037303,6,4.5 +6387,0,0.59855,1,1,0,2,5,,3,4,Stephens,Rd,841910,1.743,2.342,0,14.365195,8,4.5 +28859,0,0.418216,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.03719,0.15,4 +28877,0,0.49213,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.811122,0.15,4 +28883,0,0.374129,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.979097,0.15,4 +25141,0,0.23182,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.563679,0.15,4 +28884,0,0.29625,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.110012,0.15,4 +28881,0,0.331375,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.953005,0.15,4 +3869,0,0.101591,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,1.485,1.586,0,2.438187,6,4.5 +5308,0,0.116797,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,1.723,1.84,0,2.803119,5,5 +5309,0,0.110776,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,1.612,1.723,0,2.658623,5,5 +5330,1,0.056338,2,0,0,2,5,,3,4,Stephens,Dr,803008,0,0.056,0,1.352101,8,4.5 +4022,0,0.095289,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,1.389,1.485,0,2.28694,6,4.5 +4892,0,0.152602,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,1.586,1.739,0,3.662445,6,4.5 +6176,-1,0.060146,0,2,0,2,5,,3,4,Stephens,Rd,841910,2.342,2.402,0,1.443493,8,4.5 +5057,0,0.249524,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,2.001,2.251,0,5.988576,6,4.5 +4728,0,0.242335,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,2.715,2.957,0,5.816045,6,4.5 +5129,-1,0.342485,0,2,0,2,5,,3,4,11 Mile,Rd,803209,4.89,5.232,0,8.219645,8,4.5 +5188,1,0.338649,2,0,0,2,5,,3,4,11 Mile,Rd,803208,4.926,5.264,0,8.127583,8,4.5 +5226,0,0.711818,1,1,0,2,5,,3,4,Frazho,Rd,803110,0.291,1.002,0,17.083632,8,4.5 +26370,0,0.307751,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.386021,0.15,4 +28863,0,0.496866,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.924776,0.15,4 +28889,0,0.499462,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.987081,0.15,4 +29882,0,0.37078,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.89871,0.15,4 +5189,1,0.374945,2,0,0,2,5,,3,4,11 Mile,Rd,803208,4.551,4.926,0,8.998674,8,4.5 +28878,0,0.323938,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.774511,0.15,4 +28875,0,0.26039,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.249372,0.15,4 +5148,-1,0.36996,0,2,0,2,5,,3,4,11 Mile,Rd,803209,4.52,4.89,0,8.879045,8,4.5 +28869,0,0.323299,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.759179,0.15,4 +5053,0,0.088359,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,2.627,2.715,0,2.120608,6,4.5 +4288,0,0.126477,2,2,0,2,4,,3,4,Schoenherr,Rd,798810,2.5,2.627,0,3.035446,6,4.5 +4500,0,0.221714,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.016,3.238,0,5.32114,5,5 +4840,0,0.059184,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,2.957,3.016,0,1.420413,5,5 +4489,0,0.19777,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.288,3.485,0,4.746474,5,5 +4824,0,0.049561,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.238,3.288,0,1.189465,5,5 +5249,0,0.278812,2,2,1,2,4,,3,4,10 Mile,Rd,803101,5.314,5.592,0,6.691481,6,4.5 +25251,0,0.568008,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.632184,0.15,4 +25252,0,0.026922,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.646117,0.15,4 +5306,0,0.34184,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,2.346,2.688,0,8.204162,5,5 +5248,0,0.221124,2,2,1,2,4,,3,4,10 Mile,Rd,803101,5.592,5.813,0,5.306982,6,4.5 +5126,-1,0.438587,0,4,0,2,5,,3,4,11 Mile,Rd,803209,5.731,6.17,0,10.52609,8,4.5 +5185,1,0.247903,4,0,0,2,5,,3,4,11 Mile,Rd,803208,5.765,6.013,0,5.949682,8,4.5 +5223,0,0.168259,1,1,0,2,5,,3,4,Frazho,Rd,803110,1.455,1.624,0,4.038211,8,4.5 +5304,0,0.462463,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,2.949,3.412,0,11.099104,5,5 +6503,0,0.478312,1,1,0,2,5,,3,4,Bunert,Rd,805804,0,0.478,0,11.479477,8,4.5 +5224,0,0.133187,1,1,0,2,5,,3,4,Frazho,Rd,803110,1.322,1.455,0,3.196485,8,4.5 +28913,0,0.081195,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.948678,0.15,4 +6496,0,0.280683,2,2,0,2,5,,3,4,Bunert,Rd,805804,0.536,0.816,0,6.736389,8,4.5 +19318,1,0.183173,1,0,0,1,1,RON,3,4,M 97/W I 696,RAMP,1740407,0,0.183,0,,1.09,4 +19365,1,0.12988,1,0,0,1,1,ROF,3,4,E I 696/M 97,RAMP,1740208,0,0.13,0,,2.24,5 +5127,-1,0.120152,0,4,0,2,5,,3,4,11 Mile,Rd,803209,5.611,5.731,0,2.883653,8,4.5 +5186,1,0.130938,4,0,0,2,5,,3,4,11 Mile,Rd,803208,5.634,5.765,0,3.14251,8,4.5 +6913,0,0.057458,2,2,0,2,5,,3,4,Bunert,Rd,805804,0.478,0.536,0,1.378982,8,4.5 +28647,0,0.138657,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.327774,0.15,4 +5222,0,0.193677,1,1,0,2,5,,3,4,Frazho,Rd,803110,1.624,1.817,0,4.64825,8,4.5 +28649,0,0.145891,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.501372,0.15,4 +5184,1,0.114375,4,0,0,2,5,,3,4,11 Mile,Rd,803208,6.013,6.127,0,2.744999,8,4.5 +5301,0,0.069162,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,3.507,3.576,0,1.659895,5,5 +6209,1,0.099717,1,0,0,1,3,RSF,3,4,S M 97/E I 696,RAMP,810701,0,0.1,0,,5,5 +6876,1,0.140908,1,0,0,1,3,RSF,3,4,E I 696/S M 97,RAMP,825205,0,0.141,0,,5,5 +5183,1,0.040313,4,0,0,2,5,,3,4,11 Mile,Rd,803208,6.127,6.167,0,0.967517,8,4.5 +5302,0,0.059401,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,3.447,3.507,0,1.425619,5,5 +5303,0,0.035452,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,3.412,3.447,0,0.85084,5,5 +4206,0,0.2253,1,1,0,2,4,,3,4,Hayes,Rd,801010,1.014,1.24,0,5.407204,6,4.5 +4211,0,0.361461,1,1,0,2,5,,3,4,Masonic,Blvd,802703,1.49,1.852,0,8.675073,8,4.5 +4577,0,0.252566,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.507,4.76,0,6.061586,5,5 +5104,0,0.291684,1,1,0,2,4,,3,4,Martin,Rd,803308,0,0.292,0,7.000422,6,4.5 +6521,0,0.583732,2,2,1,2,4,,3,4,13 Mile,Rd,803410,2.081,2.665,0,14.009564,6,4.5 +6605,0,0.449411,1,1,0,2,5,,3,4,Common,Rd,4211479,1.895,2.345,0,10.785874,8,4.5 +6715,0,0.205113,2,2,1,2,3,,3,4,12 Mile,Rd,803401,5.025,5.23,0,4.922705,5,5 +25631,0,0.514745,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.353868,0.15,4 +28857,0,0.26372,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.329277,0.15,4 +28918,0,0.260784,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.258815,0.15,4 +29715,0,0.497033,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.928801,0.15,4 +29717,0,0.512844,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.308262,0.15,4 +4426,0,0.101413,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.029,4.13,0,2.433914,5,5 +6612,0,0.400223,1,1,0,2,5,,3,4,Common,Rd,4211479,1.495,1.895,0,9.605342,8,4.5 +6721,0,0.405775,2,2,1,2,3,,3,4,12 Mile,Rd,803401,4.619,5.025,0,9.738597,5,5 +28670,0,0.499289,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.982928,0.15,4 +28861,0,0.265579,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.373894,0.15,4 +28867,0,0.488817,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.731607,0.15,4 +28864,0,0.269767,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.474401,0.15,4 +28865,0,0.261738,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.281715,0.15,4 +6613,0,0.13128,1,1,0,2,5,,3,4,Common,Rd,4211479,1.364,1.495,0,3.150719,8,4.5 +28860,0,0.248209,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.957005,0.15,4 +4743,0,0.25705,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.772,4.029,0,6.169202,5,5 +4322,0,0.252009,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,3.52,3.772,0,6.048225,5,5 +4505,0,0.239141,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.268,4.507,0,5.739378,5,5 +4846,0,0.137752,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.13,4.268,0,3.306058,5,5 +4383,0,0.225083,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,5.005,5.23,0,5.401983,5,5 +4583,0,0.404604,1,1,0,2,5,,3,4,Masonic,Blvd,802703,1.086,1.49,0,9.710491,8,4.5 +6523,0,0.595712,2,2,1,2,4,,3,4,13 Mile,Rd,803410,1.486,2.081,0,14.297077,6,4.5 +25253,0,0.566443,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.594634,0.15,4 +28917,0,0.492522,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.820532,0.15,4 +28856,0,0.267183,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.412404,0.15,4 +6528,0,0.055618,2,2,1,2,4,,3,4,13 Mile,Rd,803410,1.43,1.486,0,1.334835,6,4.5 +28725,0,0.087375,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.096999,0.15,4 +4711,0,0.217893,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.787,5.005,0,5.229426,5,5 +4272,0,0.027614,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,4.76,4.787,0,0.662741,5,5 +4565,0,0.272827,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,5.23,5.503,0,6.547841,5,5 +4262,0,0.240753,2,2,1,2,3,,3,4,Schoenherr,Rd,798810,5.503,5.744,0,5.778083,5,5 +5102,0,0.429213,1,1,0,2,4,,3,4,Martin,Rd,803308,0.49,0.919,0,10.301114,6,4.5 +6600,0,0.521141,1,1,0,2,5,,3,4,Common,Rd,4211479,2.365,2.886,0,12.507392,8,4.5 +6711,0,0.242147,2,2,1,2,3,,3,4,12 Mile,Rd,803401,5.51,5.752,0,5.811533,5,5 +25230,0,0.240924,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.782174,0.15,4 +28671,0,0.338527,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.124639,0.15,4 +29714,0,0.488609,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.726618,0.15,4 +5103,0,0.198214,1,1,0,2,4,,3,4,Martin,Rd,803308,0.292,0.49,0,4.757132,6,4.5 +6714,0,0.279708,2,2,1,2,3,,3,4,12 Mile,Rd,803401,5.23,5.51,0,6.712997,5,5 +6880,0,0.270602,2,2,0,2,5,,3,4,Bunert,Rd,805804,1.03,1.301,0,6.494454,8,4.5 +6873,0,0.237047,2,2,0,2,5,,3,4,Bunert,Rd,805804,1.301,1.538,0,5.689138,8,4.5 +28668,0,0.244511,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.868276,0.15,4 +6603,0,0.019994,1,1,0,2,5,,3,4,Common,Rd,4211479,2.345,2.365,0,0.479851,8,4.5 +28673,0,0.302881,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.269134,0.15,4 +4835,-1,0.181401,0,2,0,2,4,DIV,3,4,Hayes,Rd,801010,0.815,0.997,0,4.353628,6,4.5 +4495,0,0.017771,2,2,0,2,4,,3,4,Hayes,Rd,801010,0.997,1.014,0,0.426514,6,4.5 +4074,0,0.430627,1,1,0,2,4,,3,4,Hayes,Rd,801010,1.526,1.957,0,10.335058,6,4.5 +6506,0,0.06794,2,2,1,2,4,,3,4,13 Mile,Rd,803410,2.665,2.733,0,1.630556,6,4.5 +28144,0,0.492649,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.823574,0.15,4 +28722,0,0.28601,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.864246,0.15,4 +29716,0,0.527032,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.648761,0.15,4 +28916,0,0.271854,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.524496,0.15,4 +3913,0,0.147578,1,1,0,2,5,,3,4,Masonic,Blvd,802703,1.852,1.999,0,3.541874,8,4.5 +28720,0,0.272054,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.529289,0.15,4 +4359,0,0.275838,1,1,0,2,4,,3,4,Hayes,Rd,801010,1.25,1.526,0,6.620103,6,4.5 +6457,0,0.341929,2,2,1,2,4,,3,4,13 Mile,Rd,803410,2.733,3.075,0,8.206289,6,4.5 +4686,0,0.010837,1,1,0,2,4,,3,4,Hayes,Rd,801010,1.24,1.25,0,0.260092,6,4.5 +4825,0,0.08334,1,1,0,2,4,,3,4,Hayes,Rd,801010,1.957,2.04,0,2.000149,6,4.5 +4145,1,0.470319,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,9.964,10.434,0,11.287663,3.7,5 +4311,1,0.21045,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,11.439,11.649,0,5.050806,3.7,5 +4546,0,0.202353,2,2,1,2,3,,3,4,14 Mile,Rd,798407,6.02,6.223,0,4.856481,5,5 +4718,0,0.409368,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,7.722,8.131,0,9.82483,3.7,5 +5400,0,0.425441,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,0.585,1.011,0,10.210579,4.5,4.5 +5516,0,0.590379,1,1,1,2,5,,4,4,Plumbrook,Rd,803610,1.013,1.603,0,14.169106,5.8,4.5 +5723,1,0.486717,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,4.014,4.501,0,11.681201,3.7,5 +5726,1,0.528187,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,3.027,3.555,0,12.676485,3.7,5 +5728,0,0.516497,1,1,0,2,4,,4,4,Utica,Rd,4211434,6.54,7.056,0,12.395923,4.5,4.5 +5879,0,0.529736,2,2,1,2,4,,4,4,15 Mile,Rd,803605,4.284,4.813,0,12.713671,4.5,4.5 +6436,-1,0.028814,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,1.193,1.222,0,0.69153,3.7,5 +6803,0,0.361382,1,1,1,2,4,,4,4,17 Mile,Rd,828307,0.963,1.325,0,8.673175,4.5,4.5 +20815,1,0.028929,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,1.193,1.222,0,0.694292,3.7,5 +27401,0,0.559517,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.428417,0.15,4 +28429,0,0.381471,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.155298,0.15,4 +28766,0,0.584266,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.022374,0.15,4 +28919,0,0.498748,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.969956,0.15,4 +28928,0,0.423249,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.157975,0.15,4 +28930,0,0.241888,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.8053,0.15,4 +28933,0,0.248541,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.96499,0.15,4 +28939,0,0.280482,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.73156,0.15,4 +28940,0,0.595783,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.298782,0.15,4 +29864,0,0.296957,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.126958,0.15,4 +29865,0,0.270498,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.491944,0.15,4 +29906,0,0.509268,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.22244,0.15,4 +4239,0,0.881172,2,2,1,2,3,,3,4,14 Mile,Rd,798407,6.223,7.104,0,21.148131,5,5 +5083,0,0.200932,1,1,1,2,4,,4,4,Maple Lane,Dr,798910,0.792,0.993,0,4.822365,4.5,4.5 +5885,0,0.02103,2,2,1,2,4,,4,4,15 Mile,Rd,803605,3.595,3.616,0,0.504722,4.5,4.5 +6861,-1,0.214596,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,0,0.215,0,5.150308,3.7,5 +20075,1,0.214394,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,0,0.214,0,5.14546,3.7,5 +25371,0,0.622866,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.948793,0.15,4 +28941,0,0.520975,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.503396,0.15,4 +28948,0,0.237099,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.690376,0.15,4 +28949,0,0.509204,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.220901,0.15,4 +28951,0,0.536679,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.880305,0.15,4 +28952,0,0.555391,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.32939,0.15,4 +3996,0,0.337119,3,3,1,2,3,,4,4,Van Dyke,Ave,799108,6.243,6.58,0,8.090846,3.7,5 +4234,0,0.233614,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.176,7.41,0,5.606746,5,5 +4299,0,0.109983,3,3,1,2,3,,4,4,Van Dyke,Ave,799108,6.133,6.243,0,2.639597,3.7,5 +4436,1,0.128331,1,0,0,1,3,RSF,4,4,N M 53/W 14 Mile,RAMP,799107,0,0.128,0,,5,5 +4752,0,0.165492,1,1,0,1,3,RSF,4,4,W 14 Mile/N M 53,RAMP,799104,0,0.166,0,,5,5 +4536,0,0.069305,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.41,7.479,0,1.663319,5,5 +4232,0,0.047191,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.479,7.526,0,1.132587,5,5 +4696,0,0.017878,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,6.115,6.133,0,0.429062,5,5 +5019,0,0.326312,3,3,1,2,3,,4,4,Van Dyke,Ave,799108,6.58,6.906,0,7.831497,3.7,5 +28738,0,0.257912,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.189891,0.15,4 +4537,0,0.072939,2,2,1,2,3,,3,4,14 Mile,Rd,798407,7.104,7.176,0,1.750527,5,5 +40279,0,0.263115,2,2,1,2,3,,3,4,12 Mile,Rd,803401,3.197,3.46,0,6.314758,5,5 +6442,-1,0.544695,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,0.215,0.759,0,13.072682,3.7,5 +20120,1,0.578298,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,0.615,1.193,0,13.87915,3.7,5 +28735,0,0.264876,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.357024,0.15,4 +28946,0,0.534424,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.826176,0.15,4 +28947,0,0.583715,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.009155,0.15,4 +28950,0,0.537049,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.889186,0.15,4 +30218,0,0.614557,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.749357,0.15,4 +40277,0,0.246916,3,3,1,2,3,,3,4,Van Dyke,Ave,799108,4.046,4.293,0,5.925995,5,5 +40116,-1,0.516296,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,4416846,0.905,1.421,0,12.391115,3.7,5 +40280,-1,0.200066,0,2,0,2,3,DIV,3,4,12 Mile,Rd,4212085,0,0.2,0,4.801579,5,5 +40115,-1,0.581729,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,4416846,0.324,0.905,0,13.961504,3.7,5 +40278,1,0.200248,2,0,0,2,3,DIV,3,4,12 Mile,Rd,803401,2.729,2.929,0,4.805963,5,5 +5934,0,0.018838,2,2,1,2,4,,4,4,15 Mile,Rd,803605,3.026,3.045,0,0.452108,4.5,4.5 +20515,1,0.40071,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,0.214,0.615,0,9.617031,3.7,5 +5889,0,0.550641,2,2,1,2,4,,4,4,15 Mile,Rd,803605,3.045,3.595,0,13.215375,4.5,4.5 +5730,1,0.184316,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,2.825,3.009,0,4.423584,3.7,5 +6857,-1,0.433952,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,0.759,1.193,0,10.414846,3.7,5 +28733,0,0.236672,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.680129,0.15,4 +28734,0,0.51397,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.335286,0.15,4 +28756,0,0.495473,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.891341,0.15,4 +5727,1,0.018438,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,3.009,3.027,0,0.44251,3.7,5 +4600,0,0.536942,1,1,0,2,4,,4,4,Maple Lane,Dr,798910,0,0.537,0,12.886607,4.5,4.5 +28736,0,0.698137,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.755296,0.15,4 +6958,0,0.272345,2,2,1,2,4,,3,4,Hoover,Rd,804109,4.6,4.872,0,6.536282,6,4.5 +4293,0,0.255186,1,1,1,2,4,,4,4,Maple Lane,Dr,798910,0.537,0.792,0,6.124469,4.5,4.5 +5463,0,0.479645,2,2,1,2,4,,4,4,Dodge Park,Rd,812702,0,0.48,0,11.51147,4.5,4.5 +5882,0,0.259497,2,2,1,2,4,,4,4,15 Mile,Rd,803605,4.024,4.284,0,6.227936,4.5,4.5 +5883,0,0.408344,2,2,1,2,4,,4,4,15 Mile,Rd,803605,3.616,4.024,0,9.800265,4.5,4.5 +6768,0,0.10565,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,0.48,0.585,0,2.535608,4.5,4.5 +3943,1,0.522788,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,10.434,10.956,0,12.5469,3.7,5 +5541,0,0.494824,1,1,1,2,5,,4,4,Plumbrook,Rd,803610,0,0.495,0,11.875766,5.8,4.5 +5725,1,0.458702,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,3.555,4.014,0,11.008856,3.7,5 +5898,0,0.401266,1,1,1,2,4,,4,4,17 Mile,Rd,828307,0.142,0.544,0,9.630384,4.5,4.5 +5907,0,0.173222,1,1,1,2,5,,4,4,Plumbrook,Rd,843902,0.333,0.507,0,4.157317,5.8,4.5 +6174,0,0.369957,1,1,0,2,5,,4,4,16 1/2 Mile,Rd,835704,0.616,0.986,0,8.878967,5.8,4.5 +6524,0,0.215184,1,1,0,2,4,,4,4,18 Mile,Rd,805207,3.545,3.76,0,5.164411,4.5,4.5 +6835,-1,0.626568,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,2.227,2.853,0,15.037624,3.7,5 +6938,0,0.279587,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,2.019,2.298,0,6.710078,4.5,4.5 +20864,1,0.297798,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,2.227,2.525,0,7.147148,3.7,5 +28692,0,0.415727,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.977441,0.15,4 +28700,0,0.498796,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.971094,0.15,4 +29907,0,0.503153,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.075675,0.15,4 +4963,1,0.321657,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,10.956,11.278,0,7.719772,3.7,5 +5863,0,0.267152,1,1,1,2,4,,4,4,17 Mile,Rd,805203,3.196,3.463,0,6.411648,4.5,4.5 +6422,-1,0.897993,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,1.329,2.227,0,21.551837,3.7,5 +6590,0,0.460995,1,1,0,2,5,,4,4,16 1/2 Mile,Rd,835704,0,0.461,0,11.063868,5.8,4.5 +20169,1,0.5077,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,1.719,2.227,0,12.184799,3.7,5 +28954,0,0.409341,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.824178,0.15,4 +28955,0,0.280662,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.735886,0.15,4 +20371,1,0.346255,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,1.373,1.719,0,8.310114,3.7,5 +4615,1,0.141547,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,11.278,11.419,0,3.397119,3.7,5 +40603,1,0.069584,1,0,0,2,9,,3,1,Davison,St,4705657,2.289,2.359,0,1.670017,7,4.5 +20574,1,0.151125,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,1.222,1.373,0,3.626988,3.7,5 +6847,-1,0.107598,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,1.222,1.329,0,2.582356,3.7,5 +4631,1,0.019107,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,11.419,11.439,0,0.458565,3.7,5 +6672,0,0.170369,1,1,1,2,4,,4,4,17 Mile,Rd,805203,3.026,3.196,0,4.088858,4.5,4.5 +5886,0,0.01847,2,2,1,2,4,,4,4,17 Mile,Rd,805203,3.007,3.026,0,0.443291,4.5,4.5 +28943,0,0.256278,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.150663,0.15,4 +28944,0,0.232167,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.572001,0.15,4 +29863,0,0.253017,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.072403,0.15,4 +6482,0,0.155376,1,1,0,2,5,,4,4,16 1/2 Mile,Rd,835704,0.461,0.616,0,3.729012,5.8,4.5 +6294,0,0.086672,1,1,1,2,4,,4,4,17 Mile,Rd,828307,0.056,0.142,0,2.080119,4.5,4.5 +5691,-1,0.075793,0,1,0,2,5,,4,4,Plumbrook,Rd,843902,0.507,0.582,0,1.819026,5.8,4.5 +6727,0,0.055788,1,1,1,2,4,,4,4,17 Mile,Rd,828307,0,0.056,0,1.338905,4.5,4.5 +20695,0,0.033669,1,1,0,2,5,,4,4,Bonnett,Dr,4204233,0,0.034,0,0.808047,5.8,4.5 +6122,0,0.005666,1,1,1,2,4,,4,4,17 Mile,Rd,805203,3.463,3.469,0,0.135976,4.5,4.5 +5906,0,0.333395,1,1,1,2,5,,4,4,Plumbrook,Rd,843902,0,0.333,0,8.001479,5.8,4.5 +6119,0,0.485711,1,1,0,2,4,,4,4,18 Mile,Rd,805207,3.059,3.545,0,11.657063,4.5,4.5 +6409,-1,0.387686,0,3,0,2,3,DIV,4,4,Van Dyke,Ave,813706,2.853,3.241,0,9.304456,3.7,5 +20412,1,0.486606,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,2.758,3.245,0,11.678537,3.7,5 +28698,0,0.389001,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.336031,0.15,4 +28942,0,0.66435,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.944411,0.15,4 +28945,0,0.656578,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.757875,0.15,4 +20630,1,0.233614,3,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,2.525,2.758,0,5.606731,3.7,5 +5389,0,0.045781,2,2,0,2,3,,4,4,18 Mile,Rd,805207,3.013,3.059,0,1.098742,3.7,5 +6747,-1,0.143346,0,4,0,2,3,DIV,4,4,Van Dyke,Ave,813706,3.241,3.384,0,3.440308,3.7,5 +20076,1,0.079791,4,0,0,2,3,DIV,4,4,Van Dyke,Ave,4210208,3.245,3.324,0,1.914978,3.7,5 +28956,0,0.643632,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.447156,0.15,4 +5501,0,0.419884,1,1,1,2,4,,4,4,17 Mile,Rd,828307,0.544,0.963,0,10.077222,4.5,4.5 +5521,0,0.518437,1,1,1,2,5,,4,4,Plumbrook,Rd,803610,0.495,1.013,0,12.44248,5.8,4.5 +6685,0,0.258696,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.511,1.77,0,6.208712,4.5,4.5 +28932,0,0.442785,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.626844,0.15,4 +6690,0,0.179587,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.173,1.353,0,4.310091,4.5,4.5 +5377,0,0.142132,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.031,1.173,0,3.411158,4.5,4.5 +6716,0,0.020657,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.011,1.031,0,0.495758,4.5,4.5 +5374,0,0.158287,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.353,1.511,0,3.798877,4.5,4.5 +6949,0,0.116468,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.77,1.886,0,2.795237,4.5,4.5 +6531,0,0.132731,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,1.886,2.019,0,3.185549,4.5,4.5 +28925,0,0.440884,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.581207,0.15,4 +28926,0,0.045051,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.081219,0.15,4 +37527,-1,0.22119,0,2,0,2,4,DIV,4,4,Utica,Rd,4211012,0,0.221,0,5.308565,4.5,4.5 +37526,1,0.226448,2,0,0,2,4,DIV,4,4,Utica,Rd,4211434,7.369,7.595,0,5.43475,4.5,4.5 +37528,1,0.020589,2,0,0,2,4,,4,4,Dodge Park,Rd,812702,2.739,2.76,0,0.494147,4.5,4.5 +4128,0,0.278696,1,1,0,2,4,,4,4,Hayes,Rd,801010,3.281,3.559,0,6.688695,4.5,4.5 +4255,0,0.489223,2,2,1,2,3,,3,4,14 Mile,Rd,798407,4.974,5.463,0,11.741353,5,5 +4465,0,0.343302,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,6.765,7.108,0,8.23924,3.7,5 +5874,0,0.513643,2,2,1,2,4,,4,4,15 Mile,Rd,803605,5.041,5.555,0,12.327434,4.5,4.5 +6353,0,0.527855,1,1,0,2,4,,4,4,Moravian,Dr,803604,0.25,0.777,0,12.668509,4.5,4.5 +28430,0,0.51762,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.422884,0.15,4 +28920,0,0.415599,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.974376,0.15,4 +28922,0,0.509713,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.233106,0.15,4 +28957,0,0.447926,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.750229,0.15,4 +4476,0,0.417358,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,6.116,6.533,0,10.016599,3.7,5 +4550,0,0.2625,2,2,1,2,3,,3,4,14 Mile,Rd,798407,5.463,5.725,0,6.30001,5,5 +5006,0,0.505898,1,1,0,2,5,,4,4,Red Run,Rd,798902,0.133,0.639,0,12.141562,5.8,4.5 +6357,0,0.141514,1,1,0,2,5,,4,4,Moravian,Dr,803604,0,0.141,0,3.396345,5.8,4.5 +28436,0,0.383039,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.192941,0.15,4 +28938,0,0.307868,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.388836,0.15,4 +4244,0,0.295231,2,2,1,2,3,,3,4,14 Mile,Rd,798407,5.725,6.02,0,7.085539,5,5 +3877,0,0.133333,1,1,0,2,5,,4,4,Red Run,Rd,798902,0,0.133,0,3.199988,5.8,4.5 +4795,0,0.231436,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,6.533,6.765,0,5.55446,3.7,5 +6355,0,0.108112,1,1,0,2,5,,4,4,Moravian,Dr,803604,0.141,0.25,0,2.594677,5.8,4.5 +4040,0,0.509914,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,7.108,7.617,0,12.237947,3.7,5 +5877,0,0.228115,2,2,1,2,4,,4,4,15 Mile,Rd,803605,4.813,5.041,0,5.474754,4.5,4.5 +28935,0,0.592972,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.231325,0.15,4 +28936,0,0.62861,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.086637,0.15,4 +28937,0,0.360544,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.653064,0.15,4 +5048,0,0.104534,2,2,1,2,3,,4,4,Schoenherr,Rd,798810,7.617,7.722,0,2.508817,3.7,5 +4280,0,0.467725,2,2,1,2,3,,3,4,14 Mile,Rd,798407,4.477,4.944,0,11.225405,5,5 +4724,0,0.288228,1,1,0,2,4,,4,4,Hayes,Rd,801010,2.549,2.837,0,6.917479,4.5,4.5 +28201,0,0.502039,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.048928,0.15,4 +28721,0,0.465611,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.174658,0.15,4 +28959,0,0.539153,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.939672,0.15,4 +28715,0,0.278655,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.687718,0.15,4 +4555,0,0.029261,2,2,1,2,3,,3,4,14 Mile,Rd,798407,4.944,4.974,0,0.702253,5,5 +4201,0,0.346944,1,1,0,2,4,,3,4,Hayes,Rd,801010,2.202,2.549,0,8.326652,6,4.5 +4580,0,0.069729,1,1,0,2,5,,3,4,Masonic,Blvd,802703,2.539,2.608,0,1.673491,8,4.5 +4405,0,0.443653,1,1,0,2,4,,4,4,Hayes,Rd,801010,2.837,3.281,0,10.647676,4.5,4.5 +4665,0,0.323434,1,1,0,2,4,,4,4,Hayes,Rd,801010,3.559,3.882,0,7.762417,4.5,4.5 +5873,0,0.482544,2,2,1,2,4,,4,4,15 Mile,Rd,803605,5.555,6.037,0,11.581065,4.5,4.5 +6286,0,0.32926,1,1,0,2,4,,4,4,Moravian,Dr,803604,1.135,1.464,0,7.902249,4.5,4.5 +6328,0,0.258186,1,1,0,2,4,,4,4,Moravian,Dr,803604,0.877,1.135,0,6.196476,4.5,4.5 +28921,0,0.378255,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.07812,0.15,4 +6345,0,0.099848,1,1,0,2,4,,4,4,Moravian,Dr,803604,0.777,0.877,0,2.39635,4.5,4.5 +4165,1,0.425187,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.858,9.283,0,10.204494,3.7,5 +4407,1,0.246913,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,9.044,9.29,0,5.925906,3.7,5 +5488,0,0.314707,1,1,0,2,5,,4,4,Plumbrook,Rd,803610,1.621,1.936,0,7.552963,5.8,4.5 +5718,1,0.428393,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,5.157,5.585,0,10.281436,3.7,5 +5734,0,0.340093,1,1,0,2,4,,4,4,Utica,Rd,4211434,5.734,6.074,0,8.162242,4.5,4.5 +5959,0,0.287537,1,1,0,2,4,,4,4,Clinton River,Rd,820606,4.261,4.548,0,6.900889,4.5,4.5 +6382,0,0.137995,1,2,1,2,4,,4,4,17 Mile,Rd,828307,1.325,1.463,0,3.311892,4.5,4.5 +6779,0,0.545477,1,1,0,2,4,,4,4,Clinton River,Rd,820606,3.32,3.866,0,13.091459,4.5,4.5 +20030,1,0.416981,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,3.695,4.112,0,10.007549,3.7,5 +20676,0,0.201159,2,2,1,2,4,,4,4,Hayes,Rd,4208921,0.726,0.928,0,4.827811,4.5,4.5 +28960,0,0.432694,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.384662,0.15,4 +28961,0,0.43178,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.362729,0.15,4 +28963,0,0.328681,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.888333,0.15,4 +29839,0,0.691235,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.589632,0.15,4 +4736,1,0.513333,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,9.302,9.815,0,12.320003,3.7,5 +4928,1,0.292477,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.373,8.666,0,7.019452,3.7,5 +5720,1,0.524227,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,4.623,5.147,0,12.581447,3.7,5 +5731,0,0.30534,1,1,0,2,4,,4,4,Utica,Rd,4211434,6.094,6.399,0,7.328168,4.5,4.5 +20028,1,0.123488,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,4.314,4.438,0,2.963704,3.7,5 +28931,0,0.267002,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.408039,0.15,4 +28934,0,0.285845,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.860275,0.15,4 +4420,1,0.148407,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,9.815,9.964,0,3.561772,3.7,5 +5722,1,0.12247,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,4.501,4.623,0,2.939269,3.7,5 +6089,0,0.140685,1,1,0,2,4,,4,4,Utica,Rd,4211434,6.399,6.54,0,3.37645,4.5,4.5 +5013,1,0.20266,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.171,8.373,0,4.863848,3.7,5 +20027,1,0.373485,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,4.438,4.811,0,8.963631,3.7,5 +4130,1,0.011547,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,9.29,9.302,0,0.27712,3.7,5 +20026,1,0.02048,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,4.811,4.832,0,0.491521,3.7,5 +3988,1,0.020925,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.15,8.171,0,0.502199,3.7,5 +4395,1,0.01855,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.131,8.15,0,0.445195,3.7,5 +20025,1,0.018691,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,4.832,4.85,0,0.448593,3.7,5 +5719,1,0.009973,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,5.147,5.157,0,0.239357,3.7,5 +4573,1,0.191797,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,8.666,8.858,0,4.603118,3.7,5 +20029,1,0.202288,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,4.112,4.314,0,4.854911,3.7,5 +5495,0,0.017839,2,2,0,2,5,,4,4,Plumbrook,Rd,803610,1.603,1.621,0,0.428129,5.8,4.5 +6092,0,0.019722,1,1,0,2,4,,4,4,Utica,Rd,4211434,6.074,6.094,0,0.473324,4.5,4.5 +6363,0,0.548057,1,1,0,2,4,,4,4,Clinton River,Rd,820606,2.755,3.303,0,13.15338,4.5,4.5 +20031,1,0.430557,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,3.265,3.695,0,10.33337,3.7,5 +20032,1,0.658661,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,2.606,3.265,0,15.807876,3.7,5 +5966,0,0.017893,1,1,0,2,4,,4,4,Clinton River,Rd,820606,3.303,3.32,0,0.429438,4.5,4.5 +5736,0,0.607029,1,1,0,2,4,,4,4,Utica,Rd,4211434,5.005,5.612,0,14.568685,4.5,4.5 +6094,0,0.122449,1,1,0,2,4,,4,4,Utica,Rd,4211434,5.612,5.734,0,2.938777,4.5,4.5 +20691,0,0.318609,2,2,1,2,4,,4,4,Hayes,Rd,4208921,0,0.319,0,7.646625,4.5,4.5 +28964,0,0.607198,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.572746,0.15,4 +28962,0,0.051194,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.228646,0.15,4 +20679,0,0.224166,2,2,1,2,4,,4,4,Hayes,Rd,4208921,0.502,0.726,0,5.379983,4.5,4.5 +20680,0,0.183826,2,2,1,2,4,,4,4,Hayes,Rd,4208921,0.319,0.502,0,4.411822,4.5,4.5 +5765,0,0.341828,1,1,0,2,5,,4,4,Stadler,Rd,819304,0,0.342,0,8.203862,5.8,4.5 +6064,0,0.365195,1,1,0,2,5,,4,4,Saal,Rd,820810,0.218,0.583,0,8.764679,5.8,4.5 +6350,0,0.395157,1,1,0,2,4,,4,4,Clinton River,Rd,820606,3.866,4.261,0,9.483767,4.5,4.5 +20671,0,0.307068,2,2,1,2,4,,4,4,Hayes,Rd,4208921,1.434,1.741,0,7.369631,4.5,4.5 +28690,0,0.452949,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.870769,0.15,4 +29840,0,0.347647,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.343535,0.15,4 +29905,0,0.731955,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.56692,0.15,4 +6472,0,0.217656,1,1,0,2,5,,4,4,Saal,Rd,820810,0,0.218,0,5.223739,5.8,4.5 +28691,0,0.153544,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.685059,0.15,4 +5857,0,0.150756,1,1,0,2,5,,4,4,Stadler,Rd,819304,0.342,0.493,0,3.618133,5.8,4.5 +20673,0,0.506755,2,2,1,2,4,,4,4,Hayes,Rd,4208921,0.928,1.434,0,12.162124,4.5,4.5 +20666,0,0.180848,2,2,1,2,4,,4,4,Hayes,Rd,4208921,1.762,1.943,0,4.340346,4.5,4.5 +20670,0,0.021129,2,2,1,2,4,,4,4,Hayes,Rd,4208921,1.741,1.762,0,0.507098,4.5,4.5 +4189,0,0.438138,1,1,0,2,4,,4,4,Ryan,Rd,799302,14.767,15.205,0,10.515314,4.5,4.5 +4639,0,0.571578,1,1,0,2,3,,4,4,Dequindre,Rd,799402,14.71,15.282,0,13.717871,3.7,5 +5397,0,0.29992,2,2,1,2,3,,4,4,23 Mile,Rd,807106,2.933,3.233,0,7.198091,3.7,5 +5656,0,0.450048,2,2,0,2,5,,4,4,Utica,Rd,4211434,9.311,9.761,0,10.801146,5.8,4.5 +5867,0,0.465841,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,5.184,5.649,0,11.18019,3.7,5 +5963,0,0.221538,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,3.059,3.28,0,5.316904,4.5,4.5 +6001,0,0.129323,1,1,0,2,4,,4,4,21 Mile,Rd,817708,0.171,0.301,0,3.103757,4.5,4.5 +6037,0,0.446506,1,1,0,2,4,,4,4,Mound,Rd,814501,0.275,0.721,0,10.716142,4.5,4.5 +6148,-1,0.064247,0,4,0,2,3,DIV,3,4,W M 59,,807801,2.922,2.986,0,1.541919,5,5 +6199,-1,2.429343,0,2,0,1,2,,4,4,S M 53,,813706,6.084,8.513,0,,0.8,7.5 +6226,0,0.974876,1,1,0,2,5,,4,4,27 Mile,Rd,819105,0,0.975,0,23.397028,5.8,4.5 +6254,1,0.199695,3,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,2.868,3.068,0,4.792674,3.7,5 +6508,0,0.620482,1,1,0,2,4,,4,4,24 Mile,Rd,815510,3.043,3.664,0,14.891566,4.5,4.5 +6570,1,0.068511,4,0,0,2,3,DIV,3,4,E M 59,,807710,2.923,2.992,0,1.644258,5,5 +6784,0,0.495534,1,1,0,2,4,,4,4,22 Mile,Rd,807104,1.649,2.145,0,11.892812,4.5,4.5 +6827,0,0.066978,1,1,0,2,5,,3,4,Auburn,Rd,807009,3.368,3.435,0,1.607483,8,4.5 +6960,0,0.373652,1,1,1,2,4,,4,4,19 Mile,Rd,805301,2.653,3.027,0,8.967648,4.5,4.5 +20173,0,0.418856,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,4.304,4.722,0,10.052552,4.5,4.5 +20326,-1,0.218074,0,2,0,2,5,DIV,4,4,18 1/2 Mile,Rd,4210492,0.281,0.499,0,5.233783,5.8,4.5 +20502,0,0.569223,2,2,1,2,4,,4,4,Hayes,Rd,4208921,6.463,7.032,0,13.661347,4.5,4.5 +20576,1,2.406942,2,0,0,1,2,,4,4,N M 53,,4210208,6.073,8.48,0,,0.8,7.5 +20633,0,0.324028,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,4.903,5.227,0,7.776668,4.5,4.5 +20672,0,0.533312,1,1,0,2,4,,4,4,Shelby,Rd,4210686,2.481,3.014,0,12.79948,4.5,4.5 +20682,0,0.334325,1,1,0,2,4,,3,4,Cass,Ave,4210686,0.041,0.375,0,8.023812,6,4.5 +20735,-1,0.160133,0,3,0,2,3,DIV,4,4,26 Mile,Rd,4204059,2.037,2.197,0,3.843189,3.7,5 +20767,1,0.186801,2,0,0,2,5,DIV,4,4,18 1/2 Mile,Rd,4210491,0.836,1.023,0,4.483223,5.8,4.5 +24961,0,0.577022,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.848526,0.15,4 +24962,0,0.246804,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.923296,0.15,4 +26933,0,0.392712,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.425077,0.15,4 +28704,0,0.331742,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.961798,0.15,4 +28970,0,0.508078,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.193864,0.15,4 +28978,0,0.504718,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.113232,0.15,4 +28981,0,0.529681,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.712335,0.15,4 +28987,0,0.149953,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.598882,0.15,4 +28988,0,0.669509,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.068226,0.15,4 +28989,0,0.429009,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.296208,0.15,4 +28990,0,0.520734,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.497622,0.15,4 +28993,0,0.36683,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.803931,0.15,4 +29001,0,0.229413,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.505906,0.15,4 +29513,0,0.529705,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.712913,0.15,4 +4199,0,0.377267,1,1,0,2,4,,4,4,Ryan,Rd,799302,12.468,12.846,0,9.054406,4.5,4.5 +4660,0,0.268961,1,1,0,2,3,,4,4,Dequindre,Rd,799402,12.468,12.737,0,6.455064,3.7,5 +4927,1,0.178095,2,0,0,2,4,DIV,4,4,Mound,Rd,799110,12.582,12.76,0,4.274283,4.5,4.5 +5622,1,0.289832,2,0,0,2,4,DIV,4,4,Mound,Rd,812510,0,0.29,0,6.955962,4.5,4.5 +5641,0,0.513793,1,1,0,2,5,,4,4,Dobry,Dr,805309,1.02,1.533,0,12.331032,5.8,4.5 +6164,1,1.168387,3,0,0,1,2,,4,4,E M 59,,807710,0.351,1.519,0,,0.8,7.5 +6402,-1,0.228061,0,1,0,2,5,,4,4,Auburn,Rd,807009,2.244,2.472,0,5.473458,5.8,4.5 +6431,0,0.408509,1,1,0,2,5,,4,4,Utica,Rd,807007,1.079,1.487,0,9.804226,5.8,4.5 +6480,0,0.461386,1,1,0,2,5,,4,4,18 1/2 Mile,Rd,805208,0,0.461,0,11.07327,5.8,4.5 +6569,-1,1.129688,0,3,0,1,2,,4,4,W M 59,,807801,0.39,1.519,0,,0.8,7.5 +6795,0,1.046171,1,1,0,2,4,,4,4,22 Mile,Rd,807104,0,1.046,0,25.108103,4.5,4.5 +6838,0,0.349002,1,1,0,2,4,,4,4,Auburn,Rd,807009,0.996,1.345,0,8.376042,4.5,4.5 +6968,0,0.075523,2,2,1,2,4,,4,4,19 Mile,Rd,805301,0.988,1.064,0,1.812551,4.5,4.5 +20681,0,0.698496,1,1,0,2,4,,4,4,Shelby,Rd,4210686,0.375,1.073,0,16.763895,4.5,4.5 +24915,0,0.39774,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.545754,0.15,4 +28984,0,0.898919,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,21.574056,0.15,4 +28986,0,1.494561,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,35.869469,0.15,4 +29007,0,0.451097,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.826335,0.15,4 +29010,0,0.321192,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.708601,0.15,4 +29012,0,0.516215,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.389152,0.15,4 +29516,0,0.566786,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.602852,0.15,4 +29829,0,0.516961,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.407056,0.15,4 +4210,0,0.503168,2,2,1,2,4,,4,4,Ryan,Rd,799302,11.116,11.619,0,12.07604,4.5,4.5 +4669,0,0.683687,2,2,1,2,3,,4,4,Dequindre,Rd,799402,11.551,12.235,0,16.408484,3.7,5 +6435,0,0.589434,1,1,0,2,5,,4,4,Utica,Rd,807007,0,0.589,0,14.146405,5.8,4.5 +6953,0,0.638194,1,1,0,2,5,,4,4,Dobry,Dr,805309,0.382,1.02,0,15.316657,5.8,4.5 +6969,0,0.487172,1,1,0,2,4,,4,4,19 Mile,Rd,805301,0,0.487,0,11.69212,4.5,4.5 +24912,0,0.508457,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.202962,0.15,4 +29002,0,0.50747,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.179272,0.15,4 +29021,0,0.570747,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.697927,0.15,4 +29022,0,0.530007,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.720164,0.15,4 +4690,0,0.623283,2,2,1,2,3,,4,4,Dequindre,Rd,799402,10.456,11.079,0,14.9588,3.7,5 +4364,0,0.439024,2,2,1,2,3,,4,4,Dequindre,Rd,799402,11.079,11.518,0,10.536569,3.7,5 +4078,0,0.033287,2,2,1,2,3,,4,4,Dequindre,Rd,799402,11.518,11.551,0,0.798894,3.7,5 +343,0,0.08807,2,2,1,2,4,,4,3,South,Blvd,616405,7.925,8.013,0,2.113691,4.5,4.5 +4348,0,0.159257,2,2,1,2,3,,4,4,Dequindre,Rd,799402,12.235,12.394,0,3.822166,3.7,5 +5949,1,0.406389,1,0,0,1,2,ROF,4,4,W M 59/Dequindre,RAMP,807802,0,0.406,0,,2.24,5 +6155,-1,0.389908,0,3,0,1,2,,4,4,W M 59,,807801,0,0.39,0,,0.8,7.5 +6579,1,0.350861,3,0,0,1,2,,4,4,E M 59,,807710,0,0.351,0,,0.8,7.5 +180,1,0.354464,1,0,0,1,2,RON,4,3,Dequindre/W M 59,RAMP,607006,0,0.354,0,,1.09,4 +809,0,0.186276,1,1,1,2,4,,4,3,South,Blvd,616405,7.739,7.925,0,4.470617,4.5,4.5 +1041,1,0.301356,1,0,0,1,2,ROF,4,3,E M 59/Dequindre,RAMP,625510,0,0.301,0,,2.24,5 +3096,1,0.35182,3,0,0,1,2,,4,3,E M 59,,648906,31.489,31.84,0,,0.8,7.5 +3228,-1,0.350334,0,3,0,1,2,,4,3,W M 59,,677208,9.943,10.293,0,,0.8,7.5 +4061,0,0.074317,2,2,1,2,3,,4,4,Dequindre,Rd,799402,12.394,12.468,0,1.783598,3.7,5 +5645,0,0.287912,1,1,0,2,5,,4,4,Dobry,Dr,805309,0.094,0.382,0,6.909898,5.8,4.5 +6193,1,0.267173,1,0,0,1,2,RON,4,4,Dobry/E M 59,RAMP,807709,0,0.267,0,,1.09,4 +6539,0,0.093902,2,2,1,2,5,,4,4,Dobry,Dr,805309,0,0.094,0,2.253645,5.8,4.5 +4503,0,0.178414,2,2,1,2,4,,4,4,Ryan,Rd,799302,10.938,11.116,0,4.281945,4.5,4.5 +6548,0,0.501258,1,1,0,2,4,,4,4,19 Mile,Rd,805301,0.487,0.988,0,12.030184,4.5,4.5 +28713,0,0.505561,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.133465,0.15,4 +28714,0,0.500029,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.000698,0.15,4 +4214,0,0.173221,2,2,1,2,4,,4,4,Ryan,Rd,799302,10.556,10.729,0,4.15731,4.5,4.5 +4845,0,0.208869,2,2,1,2,4,,4,4,Ryan,Rd,799302,10.729,10.938,0,5.012867,4.5,4.5 +4488,0,0.339218,2,2,1,2,4,,4,4,Ryan,Rd,799302,12.129,12.468,0,8.141234,4.5,4.5 +6855,0,0.48986,1,1,0,2,5,,4,4,Utica,Rd,807007,0.589,1.079,0,11.756641,5.8,4.5 +29023,0,0.503296,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.079104,0.15,4 +4823,0,0.510402,2,2,1,2,4,,4,4,Ryan,Rd,799302,11.619,12.129,0,12.249637,4.5,4.5 +4198,0,0.431432,1,1,0,2,4,,4,4,Ryan,Rd,799302,13.613,14.044,0,10.354369,4.5,4.5 +4326,0,0.505503,1,1,0,2,3,,4,4,Dequindre,Rd,799402,13.741,14.246,0,12.132066,3.7,5 +6846,0,0.6267,1,1,1,2,4,,4,4,Auburn,Rd,807009,0.369,0.996,0,15.0408,4.5,4.5 +20058,0,1.035069,1,1,0,2,7,,4,4,Hamlin,Rd,4208566,0,1.035,0,24.841653,6.55,4.5 +25079,0,0.499393,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.985436,0.15,4 +25081,0,0.545244,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.08585,0.15,4 +28994,0,0.831599,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,19.958385,0.15,4 +28995,0,0.55722,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.373281,0.15,4 +29515,0,0.553779,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.290698,0.15,4 +4644,0,0.50032,1,1,0,2,3,,4,4,Dequindre,Rd,799402,13.24,13.741,0,12.007689,3.7,5 +6429,0,0.30364,1,1,1,2,4,,4,4,Auburn,Rd,807009,0,0.304,0,7.28737,4.5,4.5 +4054,0,0.494555,1,1,0,2,3,,4,4,Dequindre,Rd,799402,12.746,13.24,0,11.869331,3.7,5 +4342,0,0.00884,1,1,0,2,3,,4,4,Dequindre,Rd,799402,12.737,12.746,0,0.212168,3.7,5 +5535,0,0.065565,1,1,1,2,4,,4,4,Auburn,Rd,807009,0.304,0.369,0,1.573552,4.5,4.5 +4036,0,0.464651,1,1,0,2,3,,4,4,Dequindre,Rd,799402,14.246,14.71,0,11.151616,3.7,5 +4487,0,0.35758,1,1,0,2,4,,4,4,Ryan,Rd,799302,13.256,13.613,0,8.581929,4.5,4.5 +29004,0,0.502147,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.051537,0.15,4 +4822,0,0.410187,1,1,0,2,4,,4,4,Ryan,Rd,799302,12.846,13.256,0,9.84448,4.5,4.5 +4800,0,0.41681,1,1,0,2,4,,4,4,Ryan,Rd,799302,14.044,14.461,0,10.003451,4.5,4.5 +4469,0,0.305669,1,1,0,2,4,,4,4,Ryan,Rd,799302,14.461,14.767,0,7.336059,4.5,4.5 +28985,0,0.085303,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.047266,0.15,4 +4224,1,0.549227,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,11.125,11.674,0,13.181457,3.7,5 +5634,1,0.242873,2,0,0,2,5,,4,4,Dobry,Dr,805309,2.047,2.289,0,5.828945,5.8,4.5 +5967,1,0.487358,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,1.258,1.745,0,11.696581,3.7,5 +6154,-1,1.006923,0,4,0,1,2,,4,4,W M 59,,807801,1.519,2.526,0,,0.8,7.5 +6578,1,1.197368,4,0,0,1,2,,4,4,E M 59,,807710,1.519,2.716,0,,0.8,7.5 +6851,0,0.127876,1,1,0,2,5,,4,4,Utica,Rd,807007,2.11,2.238,0,3.069021,5.8,4.5 +6951,0,0.494551,1,1,1,2,5,,4,4,Merrill,Rd,813809,0.504,0.998,0,11.869218,5.8,4.5 +6961,0,0.246427,1,1,1,2,4,,4,4,19 Mile,Rd,805301,2.02,2.266,0,5.914244,4.5,4.5 +37529,-1,0.030815,0,1,0,2,4,,4,4,Dodge Park,Rd,4211013,0,0.031,0,0.739549,4.5,4.5 +20568,-1,0.242352,0,2,0,2,5,,4,4,Hall,Rd,4205539,0.559,0.801,0,5.816444,5.8,4.5 +29008,0,0.573774,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.770576,0.15,4 +29013,0,0.599886,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.397275,0.15,4 +4305,1,0.257978,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.867,11.125,0,6.191465,3.7,5 +5564,1,0.272772,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,1.745,2.018,0,6.546526,3.7,5 +5655,1,0.311865,2,0,0,2,4,DIV,4,4,19 Mile,Rd,805301,1.621,1.932,0,7.484751,4.5,4.5 +6970,0,0.068201,1,1,1,2,5,,4,4,18 1/2 Mile,Rd,805208,0.625,0.693,0,1.636813,5.8,4.5 +29018,0,0.279711,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.713053,0.15,4 +29019,0,0.294384,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.065225,0.15,4 +29830,0,0.50199,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.047749,0.15,4 +29831,0,0.521064,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.505528,0.15,4 +6758,0,0.163369,1,1,0,2,5,,4,4,18 1/2 Mile,Rd,805208,0.461,0.625,0,3.920859,5.8,4.5 +6546,1,0.183985,2,0,0,2,4,DIV,4,4,19 Mile,Rd,805301,1.437,1.621,0,4.415632,4.5,4.5 +4623,1,0.062791,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.533,10.596,0,1.506991,3.7,5 +5964,1,0.23727,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,2.018,2.255,0,5.694472,3.7,5 +6550,0,0.339656,1,1,1,2,5,,4,4,18 1/2 Mile,Rd,805208,0.693,1.032,0,8.151737,5.8,4.5 +5558,1,0.128738,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,2.255,2.384,0,3.089703,3.7,5 +20324,1,0.050919,2,0,0,2,3,,4,4,18 1/2 Mile,Rd,4210490,0,0.051,0,1.222065,3.7,5 +6967,0,0.019438,1,1,1,2,4,,4,4,19 Mile,Rd,805301,2,2.02,0,0.466523,4.5,4.5 +3927,1,0.521293,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,11.674,12.196,0,12.511042,3.7,5 +5539,0,0.598233,1,1,0,2,5,,4,4,Utica,Rd,807007,1.487,2.086,0,14.357594,5.8,4.5 +5603,1,0.583246,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,0.675,1.258,0,13.997905,3.7,5 +6950,1,0.252284,2,0,0,2,5,,4,4,Dobry,Dr,805309,1.533,1.786,0,6.054821,5.8,4.5 +20163,1,0.247838,2,0,0,1,2,ROF,4,4,E M 59/Mound,RAMP,4208242,0,0.248,0,,2.24,5 +20164,1,0.26692,2,0,0,1,2,RON,4,4,Mound/W M 59,RAMP,4208241,0,0.267,0,,1.09,4 +20573,-1,0.317644,0,2,0,2,5,,4,4,Hall,Rd,4205539,0,0.318,0,7.623465,5.8,4.5 +29011,0,0.316242,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.589808,0.15,4 +29014,0,0.510093,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.242226,0.15,4 +29015,0,0.516476,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.395415,0.15,4 +29016,0,0.495274,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.88658,0.15,4 +3903,1,0.330309,2,0,0,2,4,DIV,4,4,Mound,Rd,799110,12.252,12.582,0,7.927413,4.5,4.5 +5638,1,0.239077,2,0,0,2,5,,4,4,Dobry,Dr,805309,1.786,2.025,0,5.737851,5.8,4.5 +6004,1,0.329048,2,0,0,2,4,DIV,4,4,Mound,Rd,812510,0.29,0.619,0,7.89714,4.5,4.5 +20571,-1,0.220218,0,2,0,2,5,,4,4,Hall,Rd,4205539,0.318,0.538,0,5.285232,5.8,4.5 +4950,1,0.056065,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,12.196,12.252,0,1.345561,3.7,5 +5998,1,0.056333,3,0,0,2,3,DIV,4,4,Mound,Rd,812510,0.619,0.675,0,1.35199,3.7,5 +6946,1,0.021829,2,0,0,2,5,,4,4,Dobry,Dr,805309,2.025,2.047,0,0.523885,5.8,4.5 +20570,-1,0.021261,0,2,0,2,5,,4,4,Hall,Rd,4205539,0.538,0.559,0,0.510259,5.8,4.5 +6853,0,0.024633,1,1,0,2,5,,4,4,Utica,Rd,807007,2.086,2.11,0,0.591192,5.8,4.5 +5650,0,0.504115,2,2,0,2,5,,4,4,Merrill,Rd,813809,0,0.504,0,12.098765,5.8,4.5 +6541,0,0.387322,1,1,1,2,4,,4,4,19 Mile,Rd,805301,2.266,2.653,0,9.295738,4.5,4.5 +20817,0,0.248649,2,2,1,2,5,,4,4,18 1/2 Mile,Rd,4210491,0.274,0.522,0,5.967572,5.8,4.5 +28706,0,0.332881,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.989133,0.15,4 +29646,0,0.357629,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.583095,0.15,4 +30211,0,0.489035,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.736841,0.15,4 +28708,0,0.020407,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,0.48976,0.15,4 +20519,-1,0.281207,0,2,0,2,5,DIV,4,4,18 1/2 Mile,Rd,4210492,0,0.281,0,6.748956,5.8,4.5 +20577,1,0.31392,2,0,0,2,5,DIV,4,4,18 1/2 Mile,Rd,4210491,0.522,0.836,0,7.534072,5.8,4.5 +28705,0,0.165349,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.968372,0.15,4 +5546,0,0.41423,1,1,0,2,5,,4,4,Merrill,Rd,813809,1.169,1.583,0,9.941515,5.8,4.5 +5905,0,0.498418,1,1,0,2,5,,4,4,Nineteen 1/2 Mile,Rd,843607,0,0.498,0,11.962035,5.8,4.5 +6022,0,0.191379,1,1,1,2,5,,3,4,Utica,Rd,4211434,10.209,10.4,0,4.593097,8,4.5 +6829,0,0.113635,1,1,0,2,5,,3,4,Auburn,Rd,807009,2.915,3.028,0,2.727248,8,4.5 +6941,1,0.298012,2,0,0,2,5,,4,4,Dobry,Dr,805309,2.289,2.587,0,7.15228,5.8,4.5 +20563,1,0.173959,2,0,0,1,2,ROF,3,4,W M 59/Mound,RAMP,4205542,0,0.174,0,,2.24,5 +6535,0,0.055419,1,1,0,2,5,,4,4,Merrill,Rd,813809,0.998,1.054,0,1.330059,5.8,4.5 +5958,0,0.114932,1,1,0,2,5,,4,4,Merrill,Rd,813809,1.054,1.169,0,2.758366,5.8,4.5 +29024,0,0.099599,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.390367,0.15,4 +29025,0,0.023767,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,0.570409,0.15,4 +5522,0,0.442923,1,1,0,2,5,,4,4,Auburn,Rd,807009,2.472,2.915,0,10.630159,5.8,4.5 +20565,-1,0.086198,0,2,0,2,5,,4,4,Hall,Rd,4205539,0.801,0.887,0,2.068742,5.8,4.5 +5955,0,0.055945,1,1,0,2,5,,4,4,Merrill,Rd,813809,1.583,1.639,0,1.342689,5.8,4.5 +20564,-1,0.099742,0,2,0,2,5,,3,4,Hall,Rd,4205539,0.887,0.987,0,2.393814,8,4.5 +5647,0,0.266227,1,1,1,2,5,,3,4,Utica,Rd,4211434,9.943,10.209,0,6.389452,8,4.5 +6035,0,0.182012,1,1,0,2,5,,3,4,Utica,Rd,4211434,9.761,9.943,0,4.368282,8,4.5 +28999,0,0.171347,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.112316,0.15,4 +29000,0,0.242277,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.814643,0.15,4 +5518,0,0.339644,1,1,0,2,5,,3,4,Auburn,Rd,807009,3.028,3.368,0,8.151449,8,4.5 +6163,1,0.207381,4,0,0,1,2,,3,4,E M 59,,807710,2.716,2.923,0,,0.58,7 +6556,-1,0.396239,0,4,0,1,2,,3,4,W M 59,,807801,2.526,2.922,0,,0.58,7 +28997,0,0.260473,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.251353,0.15,4 +5635,0,0.059308,2,2,0,2,5,,3,4,Utica,Rd,4211434,10.4,10.459,0,1.423395,8,4.5 +20162,1,0.149522,2,0,0,1,2,RON,3,4,Mound/E M 59,RAMP,4208243,0,0.15,0,,1.09,4 +28996,0,0.117071,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.809695,0.15,4 +5491,0,0.245614,1,1,0,2,4,,4,4,22 Mile,Rd,807104,1.046,1.292,0,5.894737,4.5,4.5 +20674,0,0.263199,1,1,0,2,4,,4,4,Shelby,Rd,4210686,2.218,2.481,0,6.316777,4.5,4.5 +20677,0,0.226978,1,1,0,2,4,,4,4,Shelby,Rd,4210686,1.514,1.74,0,5.447461,4.5,4.5 +28992,0,0.570544,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.693062,0.15,4 +29514,0,0.509034,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.216817,0.15,4 +5527,0,0.467959,1,1,0,2,4,,4,4,Auburn,Rd,807009,1.648,2.116,0,11.231022,4.5,4.5 +6413,0,0.30396,1,1,0,2,4,,4,4,Auburn,Rd,807009,1.345,1.648,0,7.295043,4.5,4.5 +29003,0,0.319987,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.679687,0.15,4 +29009,0,0.491375,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.793011,0.15,4 +29828,0,0.396863,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.524722,0.15,4 +6830,-1,0.120936,0,2,0,2,4,DIV,4,4,Auburn,Rd,807009,2.123,2.244,0,2.902469,4.5,4.5 +6834,0,0.006723,1,1,0,2,4,,4,4,Auburn,Rd,807009,2.116,2.123,0,0.161351,4.5,4.5 +6443,0,0.274951,1,1,0,2,4,,4,4,Mound,Rd,814501,0,0.275,0,6.598828,4.5,4.5 +20678,0,0.44026,1,1,0,2,4,,4,4,Shelby,Rd,4210686,1.073,1.514,0,10.566237,4.5,4.5 +29512,0,0.237312,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.69549,0.15,4 +6401,0,0.171327,1,1,0,2,4,,4,4,21 Mile,Rd,817708,0,0.171,0,4.111841,4.5,4.5 +28152,0,0.494493,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.867835,0.15,4 +28991,0,0.511652,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.279658,0.15,4 +6793,0,0.357929,1,1,0,2,4,,4,4,22 Mile,Rd,807104,1.292,1.649,0,8.590307,4.5,4.5 +20675,0,0.477708,1,1,0,2,4,,4,4,Shelby,Rd,4210686,1.74,2.218,0,11.465002,4.5,4.5 +5568,0,0.292799,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,1.28,1.573,0,7.027177,4.5,4.5 +5625,0,0.355705,1,1,0,2,4,,4,4,Mound,Rd,814501,2.418,2.774,0,8.536908,4.5,4.5 +6071,1,0.341733,2,0,0,1,4,,4,4,Park/E 26 Mile,Ramp,821910,0,0.342,0,,4.5,4.5 +6520,0,0.308389,1,1,0,2,4,,4,4,24 Mile,Rd,815510,1.346,1.654,0,7.401342,4.5,4.5 +6683,1,0.137779,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,1.158,1.296,0,3.306698,3.7,5 +6754,0,0.476488,1,1,0,2,3,,4,4,23 Mile,Rd,807106,1.205,1.681,0,11.435702,3.7,5 +6782,0,0.655136,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.952,1.607,0,15.723261,3.7,5 +19879,0,0.438931,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,6.28,6.719,0,10.534336,4.5,4.5 +20358,1,0.134032,2,0,0,1,4,,4,4,W 26 Mile/Park,Ramp,4208108,0.111,0.245,0,,4.5,4.5 +20626,0,0.533301,1,1,0,2,4,,4,4,Shelby,Rd,4210686,4.891,5.425,0,12.799227,4.5,4.5 +20665,0,0.452625,1,1,0,2,4,,4,4,Shelby,Rd,4210686,3.966,4.419,0,10.862999,4.5,4.5 +20741,-1,0.564555,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,0,0.564,0,13.549318,3.7,5 +27520,0,1.049111,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,25.17867,0.15,4 +29030,0,0.528668,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.688026,0.15,4 +29031,0,0.393141,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.43539,0.15,4 +29034,0,0.500253,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.006083,0.15,4 +29035,0,0.371459,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.915027,0.15,4 +29036,0,0.49744,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.938557,0.15,4 +29040,0,0.642345,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.41628,0.15,4 +5648,0,0.276554,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.331,0.607,0,6.6373,3.7,5 +6325,0,0.829262,1,1,0,2,3,,4,4,23 Mile,Rd,807106,0.106,0.935,0,19.90229,3.7,5 +6944,0,0.403329,1,1,1,2,4,,4,4,24 Mile,Rd,815510,0.424,0.827,0,9.679907,4.5,4.5 +24923,0,0.680522,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.332536,0.15,4 +29032,0,0.54374,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.049768,0.15,4 +29038,0,0.785557,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.853377,0.15,4 +29039,0,0.46475,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.154008,0.15,4 +211,0,0.203847,1,1,0,2,3,,4,3,Avon,Rd,605102,5.022,5.225,0,4.892329,3.7,5 +4323,0,0.299893,1,1,0,2,3,,4,3,Dequindre,Rd,799402,15.282,15.582,0,7.197438,3.7,5 +5391,0,0.192077,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.139,0.331,0,4.609839,3.7,5 +5450,0,0.046557,1,1,0,2,3,,4,3,Avon,Rd,814405,0,0.047,0,1.117362,3.7,5 +6757,0,0.088804,1,1,0,2,3,,4,4,23 Mile,Rd,807106,0.017,0.106,0,2.131289,3.7,5 +6334,0,0.017459,1,1,0,2,3,,4,3,23 Mile,Rd,807106,0,0.017,0,0.41901,3.7,5 +5785,0,0.092238,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.047,0.139,0,2.213716,3.7,5 +5637,0,0.423833,1,1,1,2,4,,4,4,24 Mile,Rd,815510,0,0.424,0,10.171989,4.5,4.5 +6954,0,0.277352,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.607,0.885,0,6.656445,3.7,5 +5477,0,0.067826,1,1,0,2,3,,4,4,Dequindre,Rd,814405,0.885,0.952,0,1.627817,3.7,5 +5448,0,0.269525,1,1,0,2,3,,4,4,23 Mile,Rd,807106,0.935,1.205,0,6.468612,3.7,5 +26105,0,0.540677,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.976243,0.15,4 +4777,0,0.066959,1,1,0,2,4,,4,4,Ryan,Rd,799302,15.205,15.272,0,1.607023,4.5,4.5 +6936,0,0.519048,1,1,1,2,4,,4,4,24 Mile,Rd,815510,0.827,1.346,0,12.457147,4.5,4.5 +20663,0,0.460727,1,1,0,2,4,,4,4,Shelby,Rd,4210686,4.419,4.879,0,11.057441,4.5,4.5 +24924,0,0.633637,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.207278,0.15,4 +20627,0,0.01209,1,1,0,2,4,,4,4,Shelby,Rd,4210686,4.879,4.891,0,0.290164,4.5,4.5 +5375,0,0.440801,1,1,0,2,3,,4,4,26 Mile,Rd,816702,0,0.441,0,10.57922,3.7,5 +6801,-1,0.089188,0,2,0,2,9,,4,4,Park,Rd,822103,0.511,0.6,0,2.140524,6.55,4.5 +6915,0,0.478702,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,0.484,0.962,0,11.488842,4.5,4.5 +19656,-1,0.204782,0,1,0,1,9,,4,4,Park/26 Mile,Ramp,1830602,0,0.205,0,,6.55,4.5 +21171,-1,0.262498,0,2,0,2,9,,4,4,Park,Rd,4408232,5.818,6.081,0,6.299958,6.55,4.5 +24985,0,0.620808,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.899404,0.15,4 +5605,0,0.483964,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,0,0.484,0,11.61513,4.5,4.5 +6229,0,0.283707,1,1,0,2,3,,4,4,Dequindre,Rd,814405,2.141,2.425,0,6.808974,3.7,5 +6650,0,0.534066,1,1,0,2,3,,4,4,Dequindre,Rd,814405,1.607,2.141,0,12.817573,3.7,5 +19600,0,0.309838,1,1,0,2,3,,4,4,Mount Vernon,Rd,1909604,0,0.31,0,7.4361,3.7,5 +5865,1,0.330236,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,0.828,1.158,0,7.925657,3.7,5 +6499,0,0.318006,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,0.962,1.28,0,7.632142,4.5,4.5 +20623,0,0.176749,1,1,0,2,4,,4,4,Shelby,Rd,4210686,5.868,6.044,0,4.241981,4.5,4.5 +24984,0,0.543858,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.05258,0.15,4 +24986,0,0.665953,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.982876,0.15,4 +24987,0,0.624526,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.988622,0.15,4 +6686,0,0.354993,1,1,0,2,3,,4,4,26 Mile,Rd,816702,0.441,0.796,0,8.51982,3.7,5 +6263,0,0.032391,1,1,0,2,3,,4,4,26 Mile,Rd,816702,0.796,0.828,0,0.777374,3.7,5 +20624,0,0.443058,1,1,0,2,4,,4,4,Shelby,Rd,4210686,5.425,5.868,0,10.633394,4.5,4.5 +6293,-1,0.310452,0,2,0,2,4,,4,4,Park,Rd,822103,0.079,0.389,0,7.450858,4.5,4.5 +19654,1,0.120744,1,0,0,1,7,,4,4,Visitor Center,,1830702,0,0.121,0,,6.55,4.5 +21167,-1,0.182858,0,1,0,2,4,,4,4,Park,Rd,4408232,6.309,6.492,0,4.388582,4.5,4.5 +21169,-1,0.171953,0,2,0,2,4,,4,4,Park,Rd,4408232,6.087,6.259,0,4.126872,4.5,4.5 +5897,-1,0.11528,0,2,0,2,4,,4,4,Park,Rd,822103,0.389,0.504,0,2.76673,4.5,4.5 +21170,-1,0.00652,0,2,0,2,9,,4,4,Park,Rd,4408232,6.081,6.087,0,0.156473,6.55,4.5 +5498,-1,0.006715,0,2,0,2,9,,4,4,Park,Rd,822103,0.504,0.511,0,0.161167,6.55,4.5 +6726,-1,0.078512,0,1,0,2,4,,4,4,Park,Rd,822103,0,0.079,0,1.884296,4.5,4.5 +21165,-1,0.084367,0,1,0,2,4,,4,4,Park,Rd,4408232,6.627,6.712,0,2.024806,4.5,4.5 +21166,-1,0.135157,0,2,0,2,4,,4,4,Park,Rd,4408232,6.492,6.627,0,3.243775,4.5,4.5 +20731,1,0.083617,2,0,0,2,4,,4,4,Park,Rd,4204063,0,0.084,0,2.006797,4.5,4.5 +20357,1,0.068081,2,0,0,1,4,,4,4,W 26 Mile/Park,Ramp,4208108,0.245,0.313,0,,4.5,4.5 +21168,-1,0.050443,0,2,0,2,4,,4,4,Park,Rd,4408232,6.259,6.309,0,1.210642,4.5,4.5 +6479,1,0.148896,1,0,0,1,4,,4,4,E 26 Mile/Park,Ramp,821908,0,0.149,0,,4.5,4.5 +27519,0,0.727232,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.453562,0.15,4 +30179,0,0.766831,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.403935,0.15,4 +6380,-1,0.196018,0,2,0,2,9,,4,4,Park,Rd,822103,0.6,0.796,0,4.704429,6.55,4.5 +5624,0,0.509355,1,1,0,2,4,,4,4,24 Mile,Rd,815510,2.041,2.55,0,12.224529,4.5,4.5 +6316,0,0.705987,2,2,1,2,3,,4,4,23 Mile,Rd,807106,2.227,2.933,0,16.943699,3.7,5 +6937,0,0.532319,1,1,0,2,4,,4,4,Mound,Rd,814501,1.245,1.777,0,12.775668,4.5,4.5 +20415,0,0.495306,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,5.227,5.722,0,11.887333,4.5,4.5 +28537,0,0.502776,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.066626,0.15,4 +28972,0,0.498524,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.964566,0.15,4 +28975,0,0.476387,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.433278,0.15,4 +29042,0,0.503124,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.074977,0.15,4 +5661,0,0.455259,1,1,0,2,4,,4,4,Mound,Rd,814501,0.78,1.235,0,10.926217,4.5,4.5 +6745,0,0.281959,1,1,0,2,3,,4,4,23 Mile,Rd,807106,1.945,2.227,0,6.767017,3.7,5 +20668,0,0.522049,1,1,0,2,4,,4,4,Shelby,Rd,4210686,3.411,3.933,0,12.529188,4.5,4.5 +26107,0,0.522103,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.530467,0.15,4 +29041,0,0.308146,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.395503,0.15,4 +6318,0,0.224277,1,1,0,2,3,,4,4,23 Mile,Rd,807106,1.721,1.945,0,5.382658,3.7,5 +20669,0,0.397101,1,1,0,2,4,,4,4,Shelby,Rd,4210686,3.014,3.411,0,9.530434,4.5,4.5 +6749,0,0.039704,1,1,0,2,3,,4,4,23 Mile,Rd,807106,1.681,1.721,0,0.952897,3.7,5 +26106,0,0.301387,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.233283,0.15,4 +20667,0,0.032924,1,1,0,2,4,,4,4,Shelby,Rd,4210686,3.933,3.966,0,0.790182,4.5,4.5 +6045,0,0.058548,1,1,0,2,4,,4,4,Mound,Rd,814501,0.721,0.78,0,1.405143,4.5,4.5 +5630,0,0.009665,1,1,0,2,4,,4,4,Mound,Rd,814501,1.235,1.245,0,0.231953,4.5,4.5 +6014,0,0.300717,1,1,0,2,4,,4,4,24 Mile,Rd,815510,1.74,2.041,0,7.217205,4.5,4.5 +6347,0,0.503751,1,1,0,2,4,,4,4,Mound,Rd,814501,1.777,2.281,0,12.090034,4.5,4.5 +29029,0,0.510642,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.255411,0.15,4 +29033,0,0.405216,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.725184,0.15,4 +6116,0,0.086075,1,1,0,2,4,,4,4,24 Mile,Rd,815510,1.654,1.74,0,2.065794,4.5,4.5 +5952,0,0.137545,1,1,0,2,4,,4,4,Mound,Rd,814501,2.281,2.418,0,3.301088,4.5,4.5 +27098,0,0.501048,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.025151,0.15,4 +28973,0,0.537086,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.890056,0.15,4 +6924,0,0.441515,1,1,0,2,4,,4,4,24 Mile,Rd,815510,2.602,3.043,0,10.596354,4.5,4.5 +20228,0,0.558357,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,5.722,6.28,0,13.400567,4.5,4.5 +27371,0,0.503293,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.079037,0.15,4 +29037,0,0.506968,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.167244,0.15,4 +6926,0,0.051926,1,1,0,2,4,,4,4,24 Mile,Rd,815510,2.55,2.602,0,1.246224,4.5,4.5 +5383,0,0.706207,1,1,0,2,4,,4,4,Mound,Rd,814501,3.811,4.517,0,16.948965,4.5,4.5 +5565,0,0.483479,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,2.051,2.534,0,11.603491,4.5,4.5 +6258,1,0.416921,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,1.818,2.235,0,10.006098,3.7,5 +20276,0,0.288066,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,7.473,7.761,0,6.913581,4.5,4.5 +20738,-1,0.417943,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,0.986,1.404,0,10.030633,3.7,5 +24988,0,0.556637,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.359291,0.15,4 +27820,0,0.527266,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.654377,0.15,4 +28967,0,0.860074,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,20.641776,0.15,4 +28968,0,0.544674,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.072178,0.15,4 +5549,0,0.652876,1,1,0,2,4,,4,4,Mound,Rd,814501,3.146,3.798,0,15.66903,4.5,4.5 +6468,0,0.266108,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,1.785,2.051,0,6.386592,4.5,4.5 +6680,1,0.288141,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,1.53,1.818,0,6.915374,3.7,5 +20739,-1,0.317863,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,0.668,0.986,0,7.628719,3.7,5 +27818,0,0.544163,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.059917,0.15,4 +29028,0,0.436164,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.467928,0.15,4 +6875,0,0.211537,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,1.573,1.785,0,5.076899,4.5,4.5 +5864,1,0.090907,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,1.44,1.53,0,2.18177,3.7,5 +20740,-1,0.103737,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,0.564,0.668,0,2.489685,3.7,5 +29026,0,0.510593,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.254225,0.15,4 +29027,0,0.502777,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.066649,0.15,4 +6260,1,0.143637,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,1.296,1.44,0,3.447289,3.7,5 +20360,1,0.110755,2,0,0,1,4,,4,4,W 26 Mile/Park,Ramp,4208108,0,0.111,0,,4.5,4.5 +6928,0,0.372166,1,1,0,2,4,,4,4,Mound,Rd,814501,2.774,3.146,0,8.931982,4.5,4.5 +6862,0,0.01254,1,1,0,2,4,,4,4,Mound,Rd,814501,3.798,3.811,0,0.300949,4.5,4.5 +6464,0,0.471602,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,2.587,3.059,0,11.318446,4.5,4.5 +20701,0,0.563375,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,6.719,7.282,0,13.521011,4.5,4.5 +24989,0,0.555544,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.333048,0.15,4 +27821,0,0.526603,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.638464,0.15,4 +6871,0,0.053229,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,2.534,2.587,0,1.2775,4.5,4.5 +20465,0,0.190784,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,7.282,7.473,0,4.578823,4.5,4.5 +5862,1,0.382253,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,2.235,2.617,0,9.174071,3.7,5 +20737,-1,0.382694,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,1.404,1.786,0,9.184655,3.7,5 +20769,0,0.741257,1,1,1,2,4,,4,4,Van Dyke,Ave,4211016,7.774,8.515,0,17.790164,4.5,4.5 +28965,0,0.397671,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.544114,0.15,4 +6675,1,0.250619,2,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,2.617,2.868,0,6.014851,3.7,5 +20736,-1,0.250381,0,2,0,2,3,DIV,4,4,26 Mile,Rd,4204059,1.786,2.037,0,6.009142,3.7,5 +28966,0,0.405735,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.737643,0.15,4 +30180,0,0.415879,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.981088,0.15,4 +20079,0,0.012772,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,7.761,7.774,0,0.306539,4.5,4.5 +20521,0,0.246163,1,1,1,2,4,,4,4,Van Dyke,Ave,4211016,8.515,8.761,0,5.907922,4.5,4.5 +5457,0,0.117081,1,1,0,2,4,,4,4,Canal,Rd,820607,1.526,1.643,0,2.809941,4.5,4.5 +5623,1,0.374603,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,1.299,1.674,0,8.99047,3.7,5 +5965,0,0.604776,1,1,0,2,4,,4,4,21 Mile,Rd,817708,1.704,2.309,0,14.514626,4.5,4.5 +6025,1,0.257,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,2.801,3.058,0,6.167996,3.7,5 +6113,-1,0.383771,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.285,4.668,0,9.210499,3.7,5 +6283,0,0.774931,1,1,0,2,4,,4,4,19 Mile,Rd,820705,0.575,1.35,0,18.59834,4.5,4.5 +6780,0,0.558083,1,1,0,2,4,,4,4,22 Mile,Rd,807104,3.588,4.146,0,13.393998,4.5,4.5 +20022,1,0.401028,2,0,0,2,5,DV2,4,4,Northpointe,Blvd,1923203,0.265,0.666,0,9.624669,5.8,4.5 +20039,1,0.252324,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,0.215,0.468,0,6.055776,3.7,5 +20566,0,0.341764,2,2,1,2,4,,4,4,Hayes,Rd,4208921,4.036,4.377,0,8.202325,4.5,4.5 +20611,-1,0.411503,0,2,0,2,5,DV2,4,4,Northpointe,Blvd,4205518,0.218,0.629,0,9.876076,5.8,4.5 +20768,0,0.585536,2,2,1,2,4,,3,4,Van Dyke,Ave,4211016,1.733,2.318,0,14.052864,6,4.5 +24990,0,0.518227,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.437438,0.15,4 +24995,0,0.583551,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.005229,0.15,4 +24999,0,0.289768,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.954441,0.15,4 +25008,0,0.454933,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.918404,0.15,4 +28146,0,0.338207,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.116965,0.15,4 +28675,0,0.613704,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.728891,0.15,4 +28693,0,0.545543,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.093037,0.15,4 +28980,0,0.564594,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.550255,0.15,4 +29335,0,0.509088,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.218123,0.15,4 +29835,0,0.49396,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.855031,0.15,4 +29837,0,0.567083,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.610002,0.15,4 +30204,0,0.282137,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.771299,0.15,4 +5486,0,0.893368,1,1,0,2,4,,4,4,Clinton River,Rd,820606,1.163,2.057,0,21.440822,4.5,4.5 +5924,0,0.084112,1,1,0,2,4,,4,4,19 Mile,Rd,820705,0,0.084,0,2.018678,4.5,4.5 +6010,0,0.076452,1,1,0,2,4,,4,4,Clinton River,Rd,820606,0.763,0.84,0,1.834851,4.5,4.5 +6145,-1,0.755879,0,4,0,2,3,DIV,3,4,Hall,Rd,807801,3.024,3.779,0,18.141107,5,5 +6620,-1,1.644729,0,2,0,1,2,,4,4,S M 53,,813706,3.858,5.502,0,,0.8,7.5 +6762,0,0.729249,1,1,0,2,4,,4,4,Canal,Rd,820607,0,0.729,0,17.501973,4.5,4.5 +6927,1,0.758987,4,0,0,2,3,DIV,3,4,Hall,Rd,820202,0.034,0.793,0,18.215684,5,5 +19878,0,0.463068,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,0.825,1.288,0,11.113625,4.5,4.5 +20323,1,1.835904,2,0,0,1,2,,4,4,N M 53,,4210208,3.605,5.44,0,,0.8,7.5 +24998,0,0.355617,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.534815,0.15,4 +25004,0,0.251033,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.024786,0.15,4 +25010,0,0.401412,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.633883,0.15,4 +28147,0,0.33702,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.088477,0.15,4 +28150,0,0.501733,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.041595,0.15,4 +5675,0,0.175585,1,1,0,2,4,,4,4,Utica,Rd,4211434,8.908,9.083,0,4.214033,4.5,4.5 +6935,0,0.395217,1,1,0,2,4,,4,4,Riverland,Dr,820109,0,0.395,0,9.485214,4.5,4.5 +20634,1,0.331492,1,0,0,1,2,ROF,4,4,S M 53/Van Dyke,RAMP,4210504,0,0.331,0,,2.24,5 +20867,0,0.397478,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,0.092,0.489,0,9.539467,4.5,4.5 +28702,0,0.382888,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.1893,0.15,4 +28703,0,0.174995,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.199889,0.15,4 +37524,1,0.028929,2,0,0,2,4,,4,4,18 1/2 Mile,Rd,4210491,1.023,1.052,0,0.6943,4.5,4.5 +20174,1,0.239722,2,0,0,1,2,ROF,4,4,N M 53/Van Dyke,RAMP,4210502,0,0.24,0,,2.24,5 +37525,1,0.029921,3,0,0,2,4,,4,4,Van Dyke,Ave,4211016,0,0.03,0,0.718103,4.5,4.5 +20869,1,0.301326,1,0,0,1,2,RON,4,4,Van Dyke/N M 53,RAMP,4210503,0,0.301,0,,1.09,4 +37523,-1,0.030554,0,2,0,2,4,,4,4,18 1/2 Mile,Rd,4210492,0.499,0.53,0,0.733298,4.5,4.5 +37522,1,0.062134,3,0,0,2,4,,4,4,Van Dyke,Ave,4211016,0.03,0.092,0,1.491226,4.5,4.5 +37521,-1,0.061175,0,3,0,2,4,,4,4,Van Dyke,Ave,4211014,0.327,0.388,0,1.468193,4.5,4.5 +37520,-1,0.028839,0,3,0,2,4,,4,4,Van Dyke,Ave,4211014,0.298,0.327,0,0.692135,4.5,4.5 +20516,1,0.117926,2,0,0,1,2,,4,4,N M 53,,4210208,3.487,3.605,0,,0.8,7.5 +5628,0,0.128808,1,1,0,2,5,GRV,4,4,Dawn,Dr,820107,0,0.129,0,3.091385,6.55,4.5 +6042,0,0.227525,1,1,0,2,4,,4,4,Utica,Rd,4211434,9.083,9.311,0,5.460594,4.5,4.5 +20414,0,0.097391,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,0.591,0.688,0,2.337375,4.5,4.5 +20632,0,0.101616,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,0.489,0.591,0,2.438774,4.5,4.5 +20227,0,0.136213,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,0.688,0.825,0,3.269106,4.5,4.5 +5619,0,0.323675,1,1,0,2,4,,4,4,Clinton River,Rd,820606,0.84,1.163,0,7.768209,4.5,4.5 +6518,0,0.146052,1,1,0,2,4,,4,4,Riverland,Dr,820109,0.395,0.541,0,3.50525,4.5,4.5 +6410,0,0.763552,1,1,0,2,4,,4,4,Clinton River,Rd,820606,0,0.763,0,18.325237,4.5,4.5 +20700,0,0.29524,2,2,1,2,4,,3,4,Van Dyke,Ave,4211016,1.288,1.583,0,7.085763,6,4.5 +5544,0,0.064279,1,1,0,2,4,,3,4,Clinton River,Rd,814201,0,0.064,0,1.542696,6,4.5 +20464,0,0.09705,2,2,1,2,4,,3,4,Van Dyke,Ave,4211016,1.583,1.68,0,2.329211,6,4.5 +5492,1,0.047376,1,0,0,2,5,,3,4,Auburn,Rd,807009,3.435,3.482,0,1.13702,8,4.5 +6554,-1,0.037403,0,4,0,2,3,DIV,3,4,W M 59,,807801,2.986,3.024,0,0.897666,5,5 +20078,0,0.043243,2,2,1,2,4,,3,4,Van Dyke,Ave,4211016,1.69,1.733,0,1.03782,6,4.5 +20683,0,0.040842,1,1,0,2,4,,3,4,Cass,Ave,4210686,0,0.041,0,0.980213,6,4.5 +6114,1,0.034191,4,0,0,2,3,DIV,3,4,E M 59,,820202,0,0.034,0,0.820574,5,5 +20275,0,0.010093,2,2,1,2,4,,3,4,Van Dyke,Ave,4211016,1.68,1.69,0,0.242236,6,4.5 +30213,0,0.177,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.247995,0.15,4 +6712,0,0.490938,1,1,0,2,4,,4,4,19 Mile,Rd,820705,0.084,0.575,0,11.782519,4.5,4.5 +29836,0,0.754185,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.100449,0.15,4 +28694,0,0.252977,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.07145,0.15,4 +25007,0,0.342622,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.222927,0.15,4 +5840,0,0.267441,2,2,0,2,5,,4,4,Delco,Blvd,814307,0.252,0.519,0,6.418578,5.8,4.5 +6013,1,0.138581,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,1.161,1.299,0,3.325942,3.7,5 +6206,-1,0.338836,0,2,0,1,2,,4,4,S M 53,,813706,5.502,5.841,0,,0.8,7.5 +6291,1,0.341045,1,0,0,1,2,RON,4,4,Hall/S M 53,RAMP,821008,0,0.341,0,,1.09,4 +6332,0,0.500391,1,1,0,2,4,,4,4,Canal,Rd,820607,0.729,1.229,0,12.009386,4.5,4.5 +6516,-1,0.141521,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.143,4.285,0,3.396515,3.7,5 +6756,1,0.33224,1,0,0,1,2,ROF,4,4,N M 53/E Hall,RAMP,821104,0,0.332,0,,2.24,5 +20121,1,0.374463,2,0,0,1,2,,4,4,N M 53,,4210208,5.44,5.815,0,,0.8,7.5 +5409,1,0.313593,1,0,0,1,2,ROF,4,4,S M 53/Hall,RAMP,821007,0,0.314,0,,2.24,5 +5452,1,0.316446,1,0,0,1,2,RON,4,4,Hall/N M 53,RAMP,821103,0.051,0.367,0,,1.09,4 +5744,1,0.217052,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,0.925,1.142,0,5.209248,3.7,5 +6126,-1,0.20022,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,3.899,4.099,0,4.805281,3.7,5 +6225,1,0.211281,1,0,0,1,2,ROF,4,4,N M 53/W Hall,RAMP,821102,0,0.211,0,,2.24,5 +6610,-1,0.243176,0,2,0,1,2,,4,4,S M 53,,813706,5.841,6.084,0,,0.8,7.5 +20370,1,0.36718,1,0,0,1,2,RON,4,4,W Hall/S M 53,RAMP,4210000,0,0.367,0,,1.09,4 +20816,1,0.25898,2,0,0,1,2,,4,4,N M 53,,4210208,5.815,6.073,0,,0.8,7.5 +6104,1,0.051855,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,0.873,0.925,0,1.244526,3.7,5 +6529,-1,0.119387,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,3.779,3.899,0,2.865277,3.7,5 +6510,1,0.079746,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,0.793,0.873,0,1.913914,3.7,5 +6724,1,0.052173,1,0,0,1,3,RSF,4,4,S M 53/Hall,RAMP,821007,0.314,0.366,0,,3.7,5 +5842,1,0.050636,1,0,0,1,3,RSF,4,4,Hall/N M 53,RAMP,821103,0,0.051,0,,3.7,5 +6115,-1,0.020362,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.123,4.143,0,0.488691,3.7,5 +6414,1,0.019075,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,1.142,1.161,0,0.457799,3.7,5 +6519,-1,0.024023,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.099,4.123,0,0.57655,3.7,5 +5848,0,0.296435,1,1,0,2,4,,4,4,Canal,Rd,820607,1.229,1.526,0,7.114432,4.5,4.5 +5927,0,0.180867,1,1,0,2,5,,4,4,Delco,Blvd,814307,0,0.181,0,4.340804,5.8,4.5 +29834,0,0.348002,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.352045,0.15,4 +5519,0,0.071021,1,1,0,2,5,,4,4,Delco,Blvd,814307,0.181,0.252,0,1.704502,5.8,4.5 +25000,0,0.247152,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.931649,0.15,4 +28998,0,0.286298,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.871155,0.15,4 +5478,0,0.794209,1,1,0,2,4,,4,4,22 Mile,Rd,807104,2.723,3.517,0,19.06102,4.5,4.5 +6361,0,0.901424,1,1,0,2,4,,4,4,21 Mile,Rd,817708,0.803,1.704,0,21.634187,4.5,4.5 +20125,0,0.392678,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,3.036,3.429,0,9.424269,4.5,4.5 +24992,0,0.508373,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.200957,0.15,4 +28151,0,0.701547,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.837127,0.15,4 +5608,0,0.502746,1,1,0,2,4,,4,4,21 Mile,Rd,817708,0.301,0.803,0,12.065899,4.5,4.5 +20520,0,0.403175,2,2,0,2,4,,4,4,Van Dyke,Ave,4211016,2.318,2.721,0,9.67621,4.5,4.5 +26731,0,0.467895,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.22948,0.15,4 +20327,0,0.314707,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,2.721,3.036,0,7.552977,4.5,4.5 +28153,0,0.307442,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.37861,0.15,4 +6356,0,0.577956,1,1,0,2,4,,4,4,22 Mile,Rd,807104,2.145,2.723,0,13.870944,4.5,4.5 +20580,0,0.338401,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,3.724,4.062,0,8.12162,4.5,4.5 +28977,0,0.49939,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.985361,0.15,4 +28979,0,0.507264,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.174334,0.15,4 +20820,0,0.295256,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,3.429,3.724,0,7.086154,4.5,4.5 +20375,0,0.241507,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,4.062,4.304,0,5.796156,4.5,4.5 +24996,0,0.278227,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.677448,0.15,4 +28982,0,0.514365,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.34475,0.15,4 +6783,0,0.071905,1,1,0,2,4,,4,4,22 Mile,Rd,807104,3.517,3.588,0,1.725716,4.5,4.5 +24991,0,0.501299,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.031169,0.15,4 +5729,1,0.749175,4,0,0,2,3,DIV,3,4,Hall,Rd,820202,2.159,2.908,0,17.98019,5,5 +5775,1,0.314345,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,1.516,1.831,0,7.544279,3.7,5 +6098,-1,0.74176,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,5.163,5.905,0,17.802246,3.7,5 +6224,0,0.5193,1,1,0,2,4,,4,4,Canal,Rd,820607,2.078,2.598,0,12.463197,4.5,4.5 +6710,0,0.25086,2,2,1,2,4,,4,4,19 Mile,Rd,820705,1.604,1.855,0,6.020638,4.5,4.5 +20035,1,0.321266,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,1.434,1.755,0,7.710377,3.7,5 +20617,0,0.233977,2,2,1,2,4,,4,4,Hayes,Rd,4208921,2.97,3.204,0,5.615441,4.5,4.5 +28156,0,0.265376,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.369021,0.15,4 +28695,0,0.356613,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.558712,0.15,4 +29641,0,0.629892,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.117399,0.15,4 +29643,0,0.603014,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.472336,0.15,4 +29645,0,0.576235,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.829647,0.15,4 +30215,0,0.311354,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.472506,0.15,4 +5485,1,0.638081,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,0.878,1.516,0,15.313944,3.7,5 +20034,1,0.706209,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,1.755,2.461,0,16.949019,3.7,5 +5884,1,0.103586,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,0.775,0.878,0,2.486063,3.7,5 +5490,0,0.237641,2,2,1,2,4,,4,4,19 Mile,Rd,820705,1.366,1.604,0,5.703373,4.5,4.5 +5887,0,0.01683,2,2,1,2,4,,4,4,19 Mile,Rd,820705,1.35,1.366,0,0.40393,4.5,4.5 +6102,-1,0.016979,0,4,0,2,3,DIV,3,4,Hall,Rd,807801,5.026,5.043,0,0.40749,5,5 +6502,1,0.017486,4,0,0,2,3,DIV,3,4,Hall,Rd,820202,2.038,2.056,0,0.419658,5,5 +6684,1,0.574217,3,0,0,2,3,DIV,3,4,Schoenherr,Rd,820804,2.072,2.646,0,13.781217,5,5 +6761,0,0.415084,1,1,0,2,4,,4,4,Canal,Rd,820607,1.643,2.058,0,9.962017,4.5,4.5 +20036,1,0.808936,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,0.625,1.434,0,19.414471,3.7,5 +29373,0,0.175443,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.210634,0.15,4 +30214,0,0.442779,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.626688,0.15,4 +6106,-1,0.249145,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.677,4.926,0,5.979469,3.7,5 +6925,1,0.255856,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,1.674,1.93,0,6.140539,3.7,5 +20024,1,0.050265,2,0,0,2,3,,4,4,Northpointe,Blvd,1923203,0,0.05,0,1.206371,3.7,5 +20037,1,0.044195,3,0,0,2,3,DIV,3,4,Schoenherr,Rd,1922901,0.581,0.625,0,1.060669,5,5 +25002,0,0.194154,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.659702,0.15,4 +25744,0,0.188012,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.512287,0.15,4 +28157,0,0.202275,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.854595,0.15,4 +20023,1,0.215045,2,0,0,2,5,DV2,4,4,Northpointe,Blvd,1923203,0.05,0.265,0,5.161084,5.8,4.5 +20613,-1,0.21788,0,2,0,2,5,DV2,4,4,Northpointe,Blvd,4205518,0,0.218,0,5.229127,5.8,4.5 +6511,-1,0.008265,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.668,4.677,0,0.198357,3.7,5 +6919,1,0.109043,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,1.93,2.038,0,2.617041,3.7,5 +6509,-1,0.100308,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,4.926,5.026,0,2.407399,3.7,5 +25003,0,0.148432,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.562373,0.15,4 +29329,0,0.159221,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.821298,0.15,4 +20038,1,0.11325,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,0.468,0.581,0,2.717996,3.7,5 +5373,1,0.241557,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,1.831,2.072,0,5.79737,3.7,5 +6329,0,0.020554,1,1,0,2,4,,4,4,Canal,Rd,820607,2.058,2.078,0,0.493303,4.5,4.5 +6261,1,0.04435,3,0,0,2,3,DIV,3,4,Schoenherr,Rd,820804,2.646,2.69,0,1.064402,5,5 +29642,0,0.333081,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.993944,0.15,4 +29644,0,0.307686,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.384474,0.15,4 +6091,1,0.103273,4,0,0,2,3,DIV,3,4,Hall,Rd,820202,2.056,2.159,0,2.478548,5,5 +6505,-1,0.120323,0,4,0,2,3,DIV,3,4,Hall,Rd,807801,5.043,5.163,0,2.887749,5,5 +6425,1,0.11092,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,2.69,2.801,0,2.662092,3.7,5 +4946,0,0.523995,2,1,1,2,4,,4,4,19 Mile,Rd,802506,0,0.524,0,12.575871,4.5,4.5 +6166,0,0.332945,1,1,0,2,5,,4,4,Saal,Rd,820810,1.357,1.69,0,7.99067,5.8,4.5 +20619,0,0.327884,2,2,1,2,4,,4,4,Hayes,Rd,4208921,2.301,2.629,0,7.869209,4.5,4.5 +29838,0,0.614127,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.73904,0.15,4 +28160,0,0.059005,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.416111,0.15,4 +5806,0,0.125839,1,1,1,2,4,,4,4,Saal,Rd,820810,1.69,1.816,0,3.020128,4.5,4.5 +20621,0,0.071062,2,2,1,2,4,,4,4,Hayes,Rd,4208921,2.23,2.301,0,1.70548,4.5,4.5 +20618,1,0.158459,2,0,0,2,4,,4,4,Hayes,Rd,4208921,2.811,2.97,0,3.803027,4.5,4.5 +19278,0,0.079364,2,2,0,2,7,,4,4,Shoreline,Dr,1795001,0.186,0.265,0,1.904727,6.55,4.5 +20569,0,0.381798,2,2,1,2,4,,4,4,Hayes,Rd,4208921,3.61,3.992,0,9.163145,4.5,4.5 +28154,0,0.36502,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.760484,0.15,4 +28155,0,0.44307,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.633686,0.15,4 +28162,0,0.197081,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.72995,0.15,4 +19277,0,0.19556,2,2,0,2,7,,4,4,Shoreline,Dr,1795001,0.265,0.46,0,4.693447,6.55,4.5 +20612,0,0.283838,2,2,1,2,4,,4,4,Hayes,Rd,4208921,3.204,3.487,0,6.812117,4.5,4.5 +19279,0,0.185491,2,2,0,2,7,,4,4,Shoreline,Dr,1795001,0,0.186,0,4.451784,6.55,4.5 +20572,0,0.123049,2,2,1,2,4,,4,4,Hayes,Rd,4208921,3.487,3.61,0,2.95317,4.5,4.5 +26741,0,0.281821,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.763706,0.15,4 +28161,0,0.236778,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.682675,0.15,4 +6404,1,0.149425,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,2.908,3.058,0,3.58621,3.7,5 +6497,-1,0.140275,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,5.905,6.045,0,3.366609,3.7,5 +20567,0,0.043642,2,2,1,2,4,,4,4,Hayes,Rd,4208921,3.992,4.036,0,1.04742,4.5,4.5 +5560,0,0.555581,1,1,0,2,4,,4,4,21 Mile,Rd,817708,2.309,2.865,0,13.333949,4.5,4.5 +5567,0,0.124159,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,4.052,4.176,0,2.979809,3.7,5 +6352,0,0.565916,1,1,0,2,4,,4,4,22 Mile,Rd,807104,4.146,4.712,0,13.581993,4.5,4.5 +20552,0,0.555752,2,2,1,2,4,,4,4,Hayes,Rd,4208921,5.002,5.558,0,13.338046,4.5,4.5 +28127,0,0.502344,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.056256,0.15,4 +28164,0,0.508245,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.197887,0.15,4 +28213,0,0.503718,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.08924,0.15,4 +28674,0,0.522884,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.549219,0.15,4 +6374,0,0.279631,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,3.365,3.644,0,6.711144,3.7,5 +6943,0,0.017133,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,3.271,3.288,0,0.411195,3.7,5 +5636,1,0.212823,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,820804,3.058,3.271,0,5.107743,3.7,5 +20041,1,0.206929,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,0,0.207,0,4.966306,3.7,5 +20040,1,0.008421,3,0,0,2,3,DIV,4,4,Schoenherr,Rd,1922901,0.207,0.215,0,0.202109,3.7,5 +20610,-1,0.017487,0,2,0,2,3,,4,4,Northpointe,Blvd,4205518,0.629,0.647,0,0.419676,3.7,5 +6794,0,0.076376,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,3.288,3.365,0,1.833034,3.7,5 +5971,0,0.408274,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,3.644,4.052,0,9.798573,3.7,5 +6687,0,0.252417,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,4.644,4.896,0,6.058017,3.7,5 +5376,0,0.467419,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,4.176,4.644,0,11.218052,3.7,5 +6264,0,0.287563,2,2,1,2,3,,4,4,Schoenherr,Rd,820804,4.896,5.184,0,6.90151,3.7,5 +5951,0,0.433212,1,1,0,2,4,,4,4,21 Mile,Rd,817708,2.879,3.312,0,10.397078,4.5,4.5 +20553,0,0.561245,2,2,1,2,4,,4,4,Hayes,Rd,4208921,4.441,5.002,0,13.469883,4.5,4.5 +24993,0,0.514265,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.34236,0.15,4 +24994,0,0.506834,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.164015,0.15,4 +6346,0,0.014685,1,1,0,2,4,,4,4,21 Mile,Rd,817708,2.865,2.879,0,0.352431,4.5,4.5 +20555,0,0.063507,2,2,1,2,4,,4,4,Hayes,Rd,4208921,4.377,4.441,0,1.524159,4.5,4.5 +6776,0,0.438668,1,1,0,2,4,,4,4,22 Mile,Rd,807104,4.712,5.151,0,10.528022,4.5,4.5 +20513,0,0.460654,2,2,1,2,4,,4,4,Hayes,Rd,4208921,5.558,6.018,0,11.055689,4.5,4.5 +28163,0,0.5037,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.088796,0.15,4 +28215,0,0.510373,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.24894,0.15,4 +28971,0,0.501012,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.024277,0.15,4 +28129,0,0.508974,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.215369,0.15,4 +20506,0,0.445323,2,2,1,2,4,,4,4,Hayes,Rd,4208921,6.018,6.463,0,10.687755,4.5,4.5 +5378,0,0.695258,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.533,5.228,0,16.686184,3.7,5 +5974,0,0.561962,1,1,0,2,4,,4,4,Schoenherr,Rd,820804,7.099,7.661,0,13.487095,4.5,4.5 +6234,0,0.375852,1,1,0,2,4,,4,4,26 Mile,Rd,816702,4.487,4.863,0,9.020448,4.5,4.5 +6604,-1,2.557377,0,2,0,1,2,,4,4,S M 53,,813706,9.115,11.672,0,,0.8,7.5 +6636,0,0.384167,1,1,0,2,5,,4,4,27 Mile,Rd,819105,1.609,1.993,0,9.220001,5.8,4.5 +6718,0,0.465209,1,1,0,2,5,,4,4,Jewell,Rd,816307,0.535,1,0,11.165017,5.8,4.5 +6865,0,0.666368,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,4.389,5.055,0,15.992829,4.5,4.5 +6921,0,0.870666,1,1,0,2,4,,4,4,24 Mile,Rd,815510,4.173,5.044,0,20.89599,4.5,4.5 +20450,0,0.308043,1,1,0,2,4,,4,4,Hayes,Rd,4208921,8.731,9.039,0,7.39304,4.5,4.5 +20865,1,2.539574,2,0,0,1,2,,4,4,N M 53,,4210208,9.09,11.629,0,,0.8,7.5 +26990,0,0.761891,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,18.285374,0.15,4 +27370,0,0.570103,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.682462,0.15,4 +28166,0,0.907857,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,21.788559,0.15,4 +28169,0,0.898031,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,21.552738,0.15,4 +28174,0,0.534439,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.826541,0.15,4 +28175,0,0.471609,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.318624,0.15,4 +28176,0,0.642034,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.408822,0.15,4 +28178,0,0.514596,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.350307,0.15,4 +6009,0,0.28219,1,1,0,2,4,,4,4,24 Mile,Rd,815510,3.762,4.044,0,6.772563,4.5,4.5 +37266,1,0.184976,1,0,0,1,2,ROF,4,4,N M 53/26 Mile,RAMP,822005,0,0.185,0,,2.24,5 +6705,0,0.110284,2,2,1,2,3,,4,4,23 Mile,Rd,807106,3.957,4.067,0,2.646808,3.7,5 +28179,0,0.691507,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.596165,0.15,4 +28974,0,0.516399,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.393579,0.15,4 +6713,0,0.576426,2,2,1,2,3,,4,4,23 Mile,Rd,807106,3.233,3.809,0,13.834233,3.7,5 +20868,0,0.180523,2,2,1,2,4,,4,4,Van Dyke,Ave,4211016,4.722,4.903,0,4.33256,4.5,4.5 +26931,0,0.576253,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.830075,0.15,4 +28976,0,0.532112,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.770678,0.15,4 +6707,0,0.085426,2,2,1,2,3,,4,4,23 Mile,Rd,807106,3.809,3.894,0,2.050224,3.7,5 +6277,0,0.062604,2,2,1,2,3,,4,4,23 Mile,Rd,807106,3.894,3.957,0,1.502503,3.7,5 +28969,0,0.567488,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.619722,0.15,4 +6100,0,0.09819,1,1,0,2,4,,4,4,24 Mile,Rd,815510,3.664,3.762,0,2.356559,4.5,4.5 +6197,-1,0.260974,0,2,0,1,2,,4,4,S M 53,,813706,8.854,9.115,0,,0.8,7.5 +6268,0,0.118531,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.415,4.533,0,2.844746,3.7,5 +6314,1,0.345294,1,0,0,1,2,ROF,4,4,S M 53/23 Mile,RAMP,814601,0,0.345,0,,2.24,5 +6406,1,0.343577,1,0,0,1,2,RON,4,4,23 Mile/N M 53,RAMP,814605,0,0.344,0,,1.09,4 +20170,1,0.249397,2,0,0,1,2,,4,4,N M 53,,4210208,8.841,9.09,0,,0.8,7.5 +28180,0,0.591964,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.207136,0.15,4 +5381,0,0.20999,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.095,4.305,0,5.039749,3.7,5 +6007,1,0.34481,1,0,0,1,2,ROF,4,4,N M 53/23 Mile,RAMP,814606,0,0.345,0,,2.24,5 +6207,1,0.194973,1,0,0,1,2,ROF,4,4,N M 53/W 23 Mile,RAMP,814604,0,0.195,0,,2.24,5 +6231,1,0.331981,1,0,0,1,2,RON,4,4,23 Mile/S M 53,RAMP,4212033,0,0.332,0,,1.09,4 +6608,-1,0.340921,0,2,0,1,2,,4,4,S M 53,,813706,8.513,8.854,0,,0.8,7.5 +20372,1,0.361153,2,0,0,1,2,,4,4,N M 53,,4210208,8.48,8.841,0,,0.8,7.5 +37267,1,0.020237,1,0,0,2,3,,4,4,N M 53/26 Mile,RAMP,822005,0.185,0.205,0,0.485683,3.7,5 +37248,1,0.202289,1,0,0,1,2,RON,4,4,W 23 Mile/S M 53,RAMP,4212034,0,0.202,0,,1.09,4 +6275,0,0.027582,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.067,4.095,0,0.661975,3.7,5 +6698,0,0.072643,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.342,4.415,0,1.743444,3.7,5 +6700,0,0.037338,2,2,1,2,3,,4,4,23 Mile,Rd,807106,4.305,4.342,0,0.8961,3.7,5 +5403,0,0.53537,1,1,0,2,5,,4,4,Jewell,Rd,816307,0,0.535,0,12.848871,5.8,4.5 +26918,0,0.585553,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.053266,0.15,4 +28177,0,0.366799,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.80318,0.15,4 +5617,0,0.129297,1,1,0,2,4,,4,4,24 Mile,Rd,815510,4.044,4.173,0,3.10313,4.5,4.5 +37263,1,0.326817,1,0,0,1,2,ROF,5,4,N M 53/26 Mile,RAMP,822006,0,0.327,0,,2.24,5 +5401,0,0.532575,1,1,0,2,5,,5,4,Jewell,Rd,816307,1.538,2.07,0,12.7818,3.7,5 +5557,0,0.765356,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,3.28,4.045,0,18.36854,4.5,4.5 +37249,1,0.144101,3,0,0,2,3,DIV,4,4,26 Mile,Rd,816702,3.068,3.212,0,3.458421,3.7,5 +6195,-1,0.591275,0,2,0,1,2,,4,4,S M 53,,813706,11.672,12.262,0,,0.8,7.5 +6237,0,0.325861,1,1,0,2,4,,4,4,26 Mile,Rd,816702,3.529,3.855,0,7.820661,4.5,4.5 +37254,-1,0.043985,0,2,0,2,3,,4,4,26 Mile,Rd,4212025,0.05,0.095,0,1.055631,3.7,5 +20631,1,0.358852,2,0,0,1,2,,4,4,N M 53,,4210208,11.629,11.988,0,,0.8,7.5 +27525,0,0.551344,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.232261,0.15,4 +28168,0,0.534372,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.824917,0.15,4 +28170,0,0.651393,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,15.633422,0.15,4 +27570,0,0.515988,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.383719,0.15,4 +37251,1,0.042438,2,0,0,2,3,,4,4,26 Mile,Rd,816702,3.233,3.275,0,1.018505,3.7,5 +37255,0,0.105211,2,2,0,2,3,,4,4,26 Mile,Rd,816702,3.275,3.38,0,2.525074,3.7,5 +37252,-1,0.152337,0,3,0,2,3,DIV,4,4,26 Mile,Rd,4204059,2.197,2.349,0,3.656088,3.7,5 +37258,1,0.078962,2,0,0,2,4,,4,4,26 Mile,Rd,816702,3.45,3.529,0,1.895077,4.5,4.5 +37256,1,0.050801,2,0,0,2,3,,4,4,26 Mile,Rd,816702,3.38,3.431,0,1.21923,3.7,5 +20226,1,0.250073,2,0,0,1,2,,4,4,N M 53,,4210208,11.988,12.238,0,,0.8,7.5 +37260,-1,0.020772,0,2,0,2,3,,4,4,26 Mile,Rd,4212026,0.052,0.073,0,0.498533,3.7,5 +37257,1,0.019144,2,0,0,2,3,,4,4,26 Mile,Rd,816702,3.431,3.45,0,0.459468,3.7,5 +37265,1,0.323078,1,0,0,1,2,RON,4,4,26 Mile/N M 53,RAMP,822007,0.02,0.342,0,,1.09,4 +37261,-1,0.076038,0,2,0,2,4,,4,4,26 Mile,Rd,4212026,0.073,0.149,0,1.824924,4.5,4.5 +37264,1,0.019564,1,0,0,2,3,,4,4,26 Mile/N M 53,RAMP,822007,0,0.02,0,0.469528,3.7,5 +37253,-1,0.017512,0,2,0,2,3,,4,4,26 Mile,Rd,4212025,0.033,0.05,0,0.42029,3.7,5 +37250,1,0.02083,2,0,0,2,3,,4,4,26 Mile,Rd,816702,3.212,3.233,0,0.49993,3.7,5 +5555,0,0.089304,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,4.299,4.389,0,2.143289,4.5,4.5 +5795,0,0.537571,1,1,0,2,5,,5,4,Jewell,Rd,816307,1,1.538,0,12.901701,3.7,5 +28172,0,0.538956,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.934942,0.15,4 +6868,0,0.253953,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,4.045,4.299,0,6.094864,4.5,4.5 +28171,0,0.251949,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,6.046771,0.15,4 +5843,0,0.634813,1,1,0,2,5,,4,4,27 Mile,Rd,819105,0.975,1.609,0,15.235505,5.8,4.5 +6656,0,0.625412,1,1,0,2,4,,4,4,26 Mile,Rd,816702,3.862,4.487,0,15.009881,4.5,4.5 +20068,0,0.572471,1,1,0,2,5,,4,4,Jewell,Rd,4208421,0.423,0.995,0,13.739306,5.8,4.5 +28167,0,0.277101,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.650429,0.15,4 +20069,0,0.422946,1,1,0,2,5,,4,4,Jewell,Rd,4208421,0,0.423,0,10.150711,5.8,4.5 +5849,0,0.006926,1,1,0,2,4,,4,4,26 Mile,Rd,816702,3.855,3.862,0,0.166222,4.5,4.5 +5611,0,0.586119,1,1,0,2,4,,4,4,24 Mile,Rd,815510,5.044,5.63,0,14.066859,4.5,4.5 +5799,0,0.442567,1,1,0,2,4,,4,4,Schoenherr,Rd,820804,6.209,6.652,0,10.621612,4.5,4.5 +6257,0,0.509188,2,2,1,2,3,,4,4,23 Mile,Rd,807106,5.721,6.23,0,12.220508,3.7,5 +20500,0,0.681408,1,1,0,2,4,,4,4,Hayes,Rd,4208921,7.032,7.714,0,16.353785,4.5,4.5 +27103,0,0.508359,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.200625,0.15,4 +28173,0,0.493723,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.849359,0.15,4 +28181,0,0.525909,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.621805,0.15,4 +28182,0,0.531677,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.760255,0.15,4 +6571,0,0.540572,1,1,0,2,4,,4,4,Schoenherr,Rd,820804,5.649,6.19,0,12.973716,4.5,4.5 +6691,0,0.43755,2,2,1,2,3,,4,4,23 Mile,Rd,807106,5.228,5.666,0,10.501206,3.7,5 +28183,0,0.512904,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.309696,0.15,4 +28983,0,0.501086,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.026073,0.15,4 +6156,0,0.019347,1,1,0,2,4,,4,4,Schoenherr,Rd,820804,6.19,6.209,0,0.464318,4.5,4.5 +6678,0,0.055144,2,2,1,2,3,,4,4,23 Mile,Rd,807106,5.666,5.721,0,1.323445,3.7,5 +5404,0,0.447971,1,1,0,2,4,,4,4,Schoenherr,Rd,820804,6.652,7.099,0,10.751303,4.5,4.5 +24782,0,0.505455,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.130926,0.15,4 +6501,0,0.393973,1,1,0,2,4,,4,4,24 Mile,Rd,815510,5.649,6.042,0,9.455353,4.5,4.5 +20453,0,0.468032,1,1,0,2,4,,4,4,Hayes,Rd,4208921,8.056,8.524,0,11.232771,4.5,4.5 +6917,0,0.018761,1,1,0,2,4,,4,4,24 Mile,Rd,815510,5.63,5.649,0,0.450259,4.5,4.5 +20498,0,0.342843,1,1,0,2,4,,4,4,Hayes,Rd,4208921,7.714,8.056,0,8.228221,4.5,4.5 +20451,0,0.206854,1,1,0,2,4,,4,4,Hayes,Rd,4208921,8.524,8.731,0,4.964492,4.5,4.5 +5962,0,0.675672,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,5.332,6.007,0,16.216118,4.5,4.5 +6634,0,0.516732,1,1,0,2,4,,5,4,26 Mile,Rd,816702,5.339,5.855,0,12.401572,3,4 +6879,0,0.444443,1,1,0,2,4,,5,4,Schoenherr,Rd,820804,8.274,8.718,0,10.666635,3,4 +37237,1,0.017242,1,0,0,2,4,,4,4,25 Mile,Rd,4211019,6.037,6.055,0,0.413801,4.5,4.5 +26988,0,0.501055,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,12.025316,0.15,4 +5573,0,0.61288,1,1,0,2,4,,5,4,Schoenherr,Rd,820804,7.661,8.274,0,14.709118,3,4 +6449,0,0.277311,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,5.055,5.332,0,6.655463,4.5,4.5 +26944,0,0.493176,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,11.836231,0.15,4 +27214,0,0.57634,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.832159,0.15,4 +5847,0,0.475979,1,1,0,2,4,,5,4,26 Mile,Rd,816702,4.863,5.339,0,11.423496,3,4 +27529,0,0.682716,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,16.38519,0.15,4 +27530,0,0.727756,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,17.466147,0.15,4 +37236,1,0.029875,1,0,0,2,4,,4,4,25 Mile,Rd,4211019,6.007,6.037,0,0.71701,4.5,4.5 +37235,0,0.197356,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,6.088,6.286,0,4.736535,4.5,4.5 +3925,-1,2.528956,0,3,0,1,1,,3,4,W I 94,,798502,5.69,8.218,0,,0.58,7 +3981,1,0.417027,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800010,0.748,1.165,0,10.008643,6,4.5 +4023,0,0.481766,1,1,0,2,5,,3,4,Fresard,St,799707,0.304,0.786,0,11.562392,8,4.5 +4126,0,0.354959,2,2,1,2,3,,3,4,Harper,Ave,798408,6,6.355,0,8.519016,5,5 +4284,0,0.710153,1,1,0,2,5,,4,4,Quinn,Rd,4211435,0,0.71,0,17.043679,5.8,4.5 +4319,1,2.304691,3,0,0,1,1,,3,4,E I 94,,798501,5.923,8.227,0,,0.58,7 +4334,0,0.260099,1,1,0,2,5,,3,4,Beaconsfield,Ave,798602,0,0.26,0,6.242377,8,4.5 +4349,0,0.975247,1,1,0,2,3,,3,4,14 Mile,Rd,798407,0.395,1.37,0,23.405927,5,5 +4423,0,0.346999,2,2,1,2,3,,3,4,Harper,Ave,798408,1.808,2.155,0,8.327969,5,5 +4534,1,1.051045,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,4.367,5.418,0,25.225081,3.7,5 +4612,1,0.417445,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800009,0,0.417,0,10.018685,6,4.5 +4636,1,0.695749,2,0,0,2,4,DIV,3,4,Masonic,Blvd,802104,3.313,4.008,0,16.697968,6,4.5 +5123,0,0.236059,1,1,0,2,4,,4,4,Harrington,St,825404,0.556,0.792,0,5.665411,4.5,4.5 +5232,0,0.134009,2,2,1,2,4,,3,4,10 Mile,Rd,803101,9.222,9.356,0,3.216219,6,4.5 +5275,0,0.557334,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,10.92,11.477,0,13.376018,3.7,5 +5276,0,0.166124,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,10.754,10.92,0,3.986977,3.7,5 +5277,0,0.568348,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,10.186,10.754,0,13.640362,3.7,5 +5289,0,0.153877,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,6.528,6.682,0,3.693049,5,5 +5668,1,1.041066,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,9.02,10.061,0,24.985577,3.7,5 +5756,0,0.112667,2,2,0,2,3,,3,4,Utica,Rd,4211434,2.107,2.22,0,2.704004,5,5 +5761,0,0.283491,2,2,1,2,4,,4,4,15 Mile,Rd,803605,9.345,9.628,0,6.803777,4.5,4.5 +5870,1,0.563675,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,7.475,8.038,0,13.528193,3.7,5 +5950,1,0.422323,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,6.331,6.753,0,10.135762,5,5 +5977,0,0.309973,1,1,0,2,4,,3,4,Kelly,Rd,827505,0.511,0.821,0,7.439351,6,4.5 +6061,0,0.55544,1,1,0,2,5,,4,4,Little Mack,Ave,825403,0.347,0.902,0,13.33055,5.8,4.5 +6368,0,0.120136,2,2,0,2,4,,3,4,13 Mile,Rd,803410,6.421,6.541,0,2.883276,6,4.5 +6640,0,0.511079,2,2,1,2,3,,3,4,12 Mile,Rd,803401,9.06,9.571,0,12.265902,5,5 +6939,0,0.515115,1,1,0,2,4,,3,4,Martin,Rd,803308,4.052,4.567,0,12.362756,6,4.5 +20056,0,0.278675,1,1,0,2,5,,4,4,Nunneley,Rd,4208681,0.203,0.482,0,6.688193,5.8,4.5 +20158,-1,0.695899,0,2,0,2,4,DIV,3,4,Masonic,Blvd,4208279,0,0.696,0,16.701578,6,4.5 +20221,-1,0.508794,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,7.493,8.002,0,12.211061,3.7,5 +20257,-1,0.365034,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,6.294,6.659,0,8.760813,5,5 +20754,0,0.380041,2,2,0,2,4,,3,4,Little Mack,Ave,4208744,4.366,4.746,0,9.120991,6,4.5 +24412,0,0.287461,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,6.098,6.386,0,6.899069,5,5 +25105,0,0.487872,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.708927,0.15,4 +25114,0,0.344648,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.271541,0.15,4 +25118,0,0.185743,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.457842,0.15,4 +25125,0,0.225611,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.414664,0.15,4 +25207,0,0.667741,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.025781,0.15,4 +25872,0,0.325315,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.80757,0.15,4 +25892,0,0.253403,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.081669,0.15,4 +26094,0,0.565983,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.583603,0.15,4 +28187,0,0.504531,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.108739,0.15,4 +28188,0,0.344578,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.269875,0.15,4 +28189,0,0.271084,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.506024,0.15,4 +28190,0,0.461068,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.065629,0.15,4 +28194,0,0.624747,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.993933,0.15,4 +28195,0,0.515221,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.365315,0.15,4 +28202,0,0.234414,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.625946,0.15,4 +29495,0,0.661217,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.869199,0.15,4 +29496,0,0.370446,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.890708,0.15,4 +29709,0,0.442279,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.614691,0.15,4 +29924,0,0.498218,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.957223,0.15,4 +29932,0,0.571547,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.717124,0.15,4 +4073,-1,0.343932,0,3,0,1,1,,3,4,W I 94,,798502,3.382,3.725,0,,0.58,7 +4333,1,0.881462,3,0,0,1,1,,3,4,E I 94,,798501,2.821,3.702,0,,0.58,7 +4400,0,0.28257,2,2,0,2,4,,3,4,Masonic,Blvd,802104,1.561,1.843,0,6.781679,6,4.5 +4437,1,0.230422,2,0,0,1,1,RFF,3,4,11 Mile/E I 94,RAMP,801008,0.192,0.422,0,,0.58,7 +5112,-1,0.24424,0,2,0,2,5,,3,4,11 Mile,Rd,803209,7.862,8.106,0,5.861756,8,4.5 +5173,1,0.343151,2,0,0,2,5,,3,4,11 Mile,Rd,803208,7.801,8.144,0,8.235623,8,4.5 +5215,0,0.332108,1,1,1,2,5,,3,4,Frazho,Rd,803110,3.585,3.917,0,7.970593,8,4.5 +5242,0,0.345057,2,2,0,2,4,,3,4,10 Mile,Rd,803101,7.406,7.751,0,8.281356,6,4.5 +5299,0,0.461179,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,3.691,4.152,0,11.06829,5,5 +5321,0,0.213675,1,1,0,2,5,,3,4,Stephens,Dr,803008,2.689,2.902,0,5.128211,8,4.5 +5768,0,0.184921,2,2,0,2,3,,3,4,Utica,Rd,4211434,0.284,0.469,0,4.438115,5,5 +6272,1,0.255722,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,3.78,4.035,0,6.137337,5,5 +6333,1,0.318972,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,3.461,3.78,0,7.655326,5,5 +6421,0,0.354557,2,2,1,2,4,,3,4,13 Mile,Rd,803410,4.637,4.991,0,8.509375,6,4.5 +6559,0,0.465163,1,1,1,2,5,,3,4,Common,Rd,4211479,4.341,4.806,0,11.163909,8,4.5 +6666,0,0.183603,2,2,0,2,3,,3,4,12 Mile,Rd,803401,7.642,7.826,0,4.406461,5,5 +6973,0,0.226304,1,1,1,2,4,,3,4,Martin,Rd,803308,2.518,2.744,0,5.431284,6,4.5 +19315,1,0.178656,1,0,0,1,1,ROF,3,4,W I 696/M 3,RAMP,1740410,0,0.179,0,,2.24,5 +19331,-1,0.240492,0,2,0,1,1,RFF,3,4,W I 696,,1740308,8.931,9.171,0,,0.58,7 +19335,-1,0.687927,0,3,0,1,1,,3,4,W I 696,,1740308,7.477,8.164,0,,0.58,7 +19363,1,0.196913,1,0,0,1,1,RON,3,4,M 3/E I 696,RAMP,1740210,0,0.197,0,,1.09,4 +19376,1,0.622492,3,0,0,1,1,,3,4,E I 696,,1740201,7.476,8.098,0,,0.58,7 +20267,-1,0.223642,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,3.774,3.998,0,5.367401,5,5 +20268,-1,0.35043,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,3.424,3.774,0,8.410319,5,5 +20905,0,0.225214,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,2.103,2.328,0,5.405133,6,4.5 +24941,0,0.474395,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.385479,0.15,4 +24942,0,0.528038,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.672921,0.15,4 +25126,0,0.38066,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.135836,0.15,4 +25203,0,0.407237,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.773678,0.15,4 +25222,0,0.243899,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.853588,0.15,4 +25224,0,0.325775,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.818599,0.15,4 +25225,0,0.570986,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.703655,0.15,4 +25228,0,0.565953,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.582864,0.15,4 +25428,0,0.387752,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.306049,0.15,4 +25679,0,0.466957,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.206959,0.15,4 +25700,0,0.517058,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.409389,0.15,4 +25787,0,0.25888,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.21313,0.15,4 +26119,0,0.358431,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.602336,0.15,4 +26499,0,0.332659,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.983815,0.15,4 +29933,0,0.30585,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.340411,0.15,4 +5117,-1,0.257112,0,2,0,2,5,,3,4,11 Mile,Rd,803209,6.998,7.255,0,6.170692,8,4.5 +5178,1,0.258213,2,0,0,2,5,,3,4,11 Mile,Rd,803208,7.03,7.288,0,6.197124,8,4.5 +5218,0,0.543257,1,1,0,2,5,,3,4,Frazho,Rd,803110,2.687,3.23,0,13.038167,8,4.5 +5245,0,0.453326,2,2,0,2,4,,3,4,10 Mile,Rd,803101,6.507,6.96,0,10.879832,6,4.5 +5323,0,0.295988,1,1,0,2,5,,3,4,Stephens,Dr,803008,1.871,2.167,0,7.103705,8,4.5 +5890,0,0.252043,1,1,0,2,4,,3,4,Hayes,Rd,808510,1.275,1.527,0,6.049032,6,4.5 +6441,1,0.524924,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,2.355,2.88,0,12.59818,5,5 +6536,1,0.256997,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,1.727,1.984,0,6.167926,5,5 +19336,-1,0.853818,0,4,0,1,1,,3,4,W I 696,,1740308,6.623,7.477,0,,0.58,7 +19377,1,0.823647,4,0,0,1,1,,3,4,E I 696,,1740201,6.652,7.476,0,,0.58,7 +20306,-1,0.306826,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,2.535,2.842,0,7.363824,5,5 +20309,-1,0.296172,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,1.689,1.985,0,7.108118,5,5 +24892,0,0.431536,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.356862,0.15,4 +24895,0,0.51517,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.364091,0.15,4 +25257,0,0.446532,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.716778,0.15,4 +25630,0,0.690319,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.567649,0.15,4 +25676,0,0.553076,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.273833,0.15,4 +25677,0,0.263267,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.318418,0.15,4 +25693,0,0.421366,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.112774,0.15,4 +25695,0,0.532571,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.781696,0.15,4 +25696,0,0.28796,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.911031,0.15,4 +27468,0,0.46611,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.186638,0.15,4 +28652,0,0.68879,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.530955,0.15,4 +5246,0,0.505542,2,2,0,2,4,,3,4,10 Mile,Rd,803101,6.002,6.507,0,12.133013,6,4.5 +5326,0,0.324747,2,2,0,2,5,,3,4,Stephens,Dr,803008,1.335,1.66,0,7.793919,8,4.5 +5892,0,0.33723,1,1,0,2,4,,3,4,Hayes,Ave,808510,0.684,1.021,0,8.093526,6,4.5 +25629,0,0.423735,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.16964,0.15,4 +28654,0,0.307824,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.387771,0.15,4 +5327,0,0.18182,2,2,0,2,5,,3,4,Stephens,Dr,803008,1.153,1.335,0,4.363672,8,4.5 +5944,0,0.227761,1,1,0,2,4,,3,4,Hayes,Ave,808510,0.283,0.51,0,5.466275,6,4.5 +25255,0,0.246434,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.914407,0.15,4 +25256,0,0.16903,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.056718,0.15,4 +6285,0,0.173905,1,1,0,2,4,,3,4,Hayes,Ave,808510,0.51,0.684,0,4.173731,6,4.5 +6284,0,0.254109,1,1,0,2,4,,3,4,Hayes,Rd,808510,1.021,1.275,0,6.098615,6,4.5 +5325,0,0.188508,2,2,0,2,5,,3,4,Stephens,Dr,803008,1.66,1.848,0,4.524192,8,4.5 +6365,1,0.259348,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,1.467,1.727,0,6.224349,5,5 +20310,-1,0.250915,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,1.439,1.689,0,6.021958,5,5 +5324,0,0.023338,2,2,0,2,5,,3,4,Stephens,Dr,803008,1.848,1.871,0,0.560108,8,4.5 +28653,0,0.240404,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.7697,0.15,4 +5119,-1,0.285059,0,2,0,2,5,,3,4,11 Mile,Rd,803209,6.338,6.623,0,6.841418,8,4.5 +5180,1,0.316121,2,0,0,2,5,,3,4,11 Mile,Rd,803208,6.34,6.656,0,7.586909,8,4.5 +5220,0,0.448552,1,1,0,2,5,,3,4,Frazho,Rd,803110,2.005,2.454,0,10.765245,8,4.5 +5881,0,0.206124,1,1,0,2,4,,3,4,Hayes,Rd,808510,1.78,1.986,0,4.946967,6,4.5 +25688,0,0.222387,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.337281,0.15,4 +28655,0,0.687111,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.490659,0.15,4 +29254,0,0.278487,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.683681,0.15,4 +6280,0,0.252846,1,1,0,2,4,,3,4,Hayes,Rd,808510,1.527,1.78,0,6.068304,6,4.5 +19317,1,0.161007,1,0,0,1,1,ROF,3,4,W I 696/M 97,RAMP,1740408,0,0.161,0,,2.24,5 +19364,1,0.211921,2,0,0,1,1,RON,3,4,M 97/E I 696,RAMP,1740209,0,0.212,0,,1.09,4 +5120,-1,0.110351,0,4,0,2,5,,3,4,11 Mile,Rd,803209,6.228,6.338,0,2.648416,8,4.5 +5181,1,0.079179,4,0,0,2,5,,3,4,11 Mile,Rd,803208,6.261,6.34,0,1.900296,8,4.5 +6276,0,0.058616,2,2,1,2,4,,3,4,Hayes,Rd,808510,1.986,2.045,0,1.406783,6,4.5 +5876,0,0.097163,2,2,1,2,4,,3,4,Hayes,Rd,808510,2.045,2.142,0,2.33191,6,4.5 +5219,0,0.23339,1,1,0,2,5,,3,4,Frazho,Rd,803110,2.454,2.687,0,5.601359,8,4.5 +25690,0,0.25699,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.16776,0.15,4 +25692,0,0.248757,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.970166,0.15,4 +5118,-1,0.374985,0,2,0,2,5,,3,4,11 Mile,Rd,803209,6.623,6.998,0,8.99965,8,4.5 +5179,1,0.374552,2,0,0,2,5,,3,4,11 Mile,Rd,803208,6.656,7.03,0,8.989248,8,4.5 +5243,0,0.423216,2,2,0,2,4,,3,4,10 Mile,Rd,803101,6.983,7.406,0,10.157187,6,4.5 +5322,0,0.521594,1,1,0,2,5,,3,4,Stephens,Dr,803008,2.167,2.689,0,12.518246,8,4.5 +25680,0,0.600009,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.400222,0.15,4 +25683,0,0.487638,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.703313,0.15,4 +25694,0,0.352318,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.455622,0.15,4 +25697,0,0.434726,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.433414,0.15,4 +26133,0,0.264676,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.352216,0.15,4 +5244,0,0.022533,2,2,0,2,4,,3,4,10 Mile,Rd,803101,6.96,6.983,0,0.540787,6,4.5 +6526,1,0.317727,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,1.984,2.301,0,7.62545,5,5 +20307,-1,0.269717,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,2.265,2.535,0,6.473215,5,5 +20308,-1,0.279888,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,1.985,2.265,0,6.717315,5,5 +26132,0,0.345277,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.286651,0.15,4 +26135,0,0.339318,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.143629,0.15,4 +6447,1,0.053735,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,2.301,2.355,0,1.289629,5,5 +25678,0,0.300639,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.21534,0.15,4 +5116,-1,0.306047,0,2,0,2,5,,3,4,11 Mile,Rd,803209,7.255,7.561,0,7.34513,8,4.5 +5177,1,0.336959,2,0,0,2,5,,3,4,11 Mile,Rd,803208,7.288,7.625,0,8.087007,8,4.5 +6434,1,0.23301,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,3.164,3.397,0,5.592239,5,5 +19316,1,0.209705,2,0,0,1,1,RON,3,4,M 3/W I 696,RAMP,1740409,0,0.21,0,,1.09,4 +19362,1,0.253823,2,0,0,1,1,ROF,3,4,E I 696/M 3,RAMP,1740301,0,0.254,0,,2.24,5 +20270,-1,0.189397,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,3.173,3.362,0,4.545519,5,5 +25425,0,0.422617,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.14282,0.15,4 +29712,0,0.387359,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.296623,0.15,4 +5216,0,0.330572,1,1,1,2,5,,3,4,Frazho,Rd,803110,3.255,3.585,0,7.933735,8,4.5 +6439,1,0.284147,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,2.88,3.164,0,6.819535,5,5 +20271,-1,0.331378,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,2.842,3.173,0,7.953076,5,5 +5217,0,0.024721,1,1,1,2,5,,3,4,Frazho,Rd,803110,3.23,3.255,0,0.593313,8,4.5 +5115,-1,0.166543,0,3,0,2,5,,3,4,11 Mile,Rd,803209,7.561,7.728,0,3.997032,8,4.5 +5176,1,0.108514,4,0,0,2,5,,3,4,11 Mile,Rd,803208,7.625,7.734,0,2.604335,8,4.5 +5113,-1,0.108912,0,3,0,2,5,,3,4,11 Mile,Rd,803209,7.753,7.862,0,2.613899,8,4.5 +5174,1,0.045169,3,0,0,2,5,,3,4,11 Mile,Rd,803208,7.756,7.801,0,1.084057,8,4.5 +5175,1,0.021945,3,0,0,2,5,,3,4,11 Mile,Rd,803208,7.734,7.756,0,0.526681,8,4.5 +20269,-1,0.061402,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,3.362,3.424,0,1.473639,5,5 +5114,-1,0.024878,0,3,0,2,5,,3,4,11 Mile,Rd,803209,7.728,7.753,0,0.597084,8,4.5 +6351,1,0.064038,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,3.397,3.461,0,1.536916,5,5 +4729,0,0.667736,1,1,0,2,4,,3,4,Masonic,Blvd,802104,0.39,1.057,0,16.025662,6,4.5 +5295,0,0.295362,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,5.045,5.34,0,7.088685,5,5 +5762,0,0.272363,2,2,0,2,3,,3,4,Utica,Rd,4211434,0.736,1.008,0,6.536705,5,5 +6131,0,0.158595,1,1,0,2,5,,3,4,Calahan,Ave,811303,0.508,0.666,0,3.806282,8,4.5 +6450,0,0.661131,2,2,1,2,4,,3,4,13 Mile,Rd,803410,3.56,4.221,0,15.867145,6,4.5 +6563,0,0.240313,1,1,0,2,5,,3,4,Common,Rd,4211479,3.492,3.732,0,5.767507,8,4.5 +6565,0,0.344232,1,1,0,2,5,,3,4,Common,Rd,4211479,3.147,3.492,0,8.261575,8,4.5 +6679,0,0.388273,2,2,1,2,3,,3,4,12 Mile,Rd,803401,6.536,6.924,0,9.318562,5,5 +6977,0,0.493051,1,1,1,2,4,,3,4,Martin,Rd,803308,1.767,2.26,0,11.833217,6,4.5 +25699,0,0.22693,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.446316,0.15,4 +28642,0,0.349265,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.38236,0.15,4 +28644,0,0.523421,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.562112,0.15,4 +28650,0,0.718711,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,17.249064,0.15,4 +29656,0,0.446619,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.718848,0.15,4 +29724,0,0.452584,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.862022,0.15,4 +4725,-1,0.505668,0,2,0,2,4,DIV,3,4,Hayes,Rd,801010,0,0.506,0,12.13602,6,4.5 +5097,0,0.546523,1,1,1,2,4,,3,4,Martin,Rd,803308,1.221,1.767,0,13.116563,6,4.5 +5297,0,0.073865,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,4.672,4.746,0,1.772767,5,5 +5298,0,0.520072,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,4.152,4.672,0,12.481723,5,5 +6681,0,0.146631,2,2,1,2,3,,3,4,12 Mile,Rd,803401,6.389,6.536,0,3.519135,5,5 +20730,1,0.505624,2,0,0,2,4,DIV,3,4,Hayes,Rd,4204196,0,0.506,0,12.134979,6,4.5 +25684,0,0.369247,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.861918,0.15,4 +25685,0,0.352223,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.453357,0.15,4 +25687,0,0.345404,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.289692,0.15,4 +29713,0,0.345225,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.285402,0.15,4 +5098,0,0.142466,1,1,1,2,4,,3,4,Martin,Rd,803308,1.078,1.221,0,3.419174,6,4.5 +25686,0,0.222644,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.343444,0.15,4 +5099,0,0.088551,1,1,1,2,4,,3,4,Martin,Rd,803308,0.99,1.078,0,2.125213,6,4.5 +5100,0,0.014154,1,1,0,2,4,,3,4,Martin,Rd,803308,0.975,0.99,0,0.339689,6,4.5 +6134,0,0.34001,1,1,0,2,5,,3,4,Calahan,Ave,811303,0,0.34,0,8.160239,8,4.5 +6697,0,0.250289,2,2,1,2,3,,3,4,12 Mile,Rd,803401,6.001,6.251,0,6.006932,5,5 +28645,0,0.277322,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.655734,0.15,4 +6702,0,0.01318,2,2,1,2,3,,3,4,12 Mile,Rd,803401,5.988,6.001,0,0.316325,5,5 +6694,0,0.138101,2,2,1,2,3,,3,4,12 Mile,Rd,803401,6.251,6.389,0,3.314419,5,5 +5777,0,0.167784,1,1,0,2,5,,3,4,Calahan,Ave,811303,0.34,0.508,0,4.026817,8,4.5 +28643,0,0.111081,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.665942,0.15,4 +25221,0,0.531633,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.759202,0.15,4 +25229,0,0.182515,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.380358,0.15,4 +5296,0,0.298616,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,4.746,5.045,0,7.166782,5,5 +6452,0,0.231071,2,2,1,2,4,,3,4,13 Mile,Rd,803410,3.329,3.56,0,5.545707,6,4.5 +28117,0,0.554838,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.316116,0.15,4 +28638,0,0.145775,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.498604,0.15,4 +28640,0,0.26592,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.382079,0.15,4 +5774,0,0.355997,1,1,0,2,5,,3,4,Calahan,Ave,811303,0.666,1.022,0,8.543934,8,4.5 +28145,0,0.243557,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.84538,0.15,4 +28641,0,0.287195,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.892677,0.15,4 +6669,0,0.614521,2,2,1,2,3,,3,4,12 Mile,Rd,803401,7.028,7.642,0,14.748502,5,5 +25215,0,0.495975,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.903397,0.15,4 +27025,0,0.434943,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.438634,0.15,4 +25701,0,0.422431,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.138345,0.15,4 +6671,0,0.104118,2,2,1,2,3,,3,4,12 Mile,Rd,803401,6.924,7.028,0,2.498832,5,5 +6878,0,0.258196,1,1,1,2,4,,3,4,Martin,Rd,803308,2.26,2.518,0,6.196697,6,4.5 +25220,0,0.277268,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.654422,0.15,4 +6121,0,0.266492,2,2,0,2,3,,3,4,Utica,Rd,4211434,0.469,0.736,0,6.395807,5,5 +5047,0,0.270566,2,2,0,2,4,,3,4,Masonic,Blvd,802104,1.186,1.457,0,6.493583,6,4.5 +5291,0,0.163745,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,6.058,6.222,0,3.929881,5,5 +5292,0,0.130456,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,5.928,6.058,0,3.130953,5,5 +5758,0,0.120386,2,2,0,2,3,,3,4,Utica,Rd,4211434,1.553,1.673,0,2.889267,5,5 +6118,0,0.276618,2,2,0,2,3,,3,4,Utica,Rd,4211434,1.276,1.553,0,6.63884,5,5 +6427,0,0.305371,2,2,1,2,4,,3,4,13 Mile,Rd,803410,4.332,4.637,0,7.328908,6,4.5 +6560,0,0.498598,1,1,1,2,5,,3,4,Common,Rd,4211479,3.842,4.341,0,11.96636,8,4.5 +25209,0,0.261809,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.283413,0.15,4 +5293,0,0.240089,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,5.688,5.928,0,5.762144,5,5 +5294,0,0.347633,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,5.34,5.688,0,8.343184,5,5 +6561,0,0.110628,1,1,1,2,5,,3,4,Common,Rd,4211479,3.732,3.842,0,2.655065,8,4.5 +6446,0,0.110366,2,2,1,2,4,,3,4,13 Mile,Rd,803410,4.221,4.332,0,2.648776,6,4.5 +4410,0,0.129156,2,2,0,2,4,,3,4,Masonic,Blvd,802104,1.057,1.186,0,3.099747,6,4.5 +6117,0,0.434497,2,2,0,2,3,,3,4,Utica,Rd,4211434,1.673,2.107,0,10.427917,5,5 +5760,0,0.054507,2,2,0,2,3,,3,4,Utica,Rd,4211434,1.222,1.276,0,1.308177,5,5 +6120,0,0.21352,2,2,0,2,3,,3,4,Utica,Rd,4211434,1.008,1.222,0,5.124473,5,5 +4721,0,0.104142,2,2,0,2,4,,3,4,Masonic,Blvd,802104,1.457,1.561,0,2.499405,6,4.5 +5290,0,0.306628,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,6.222,6.528,0,7.359078,5,5 +25112,0,0.366361,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.792655,0.15,4 +25208,0,0.295064,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.081527,0.15,4 +3880,1,0.248286,1,0,0,1,1,ROF,3,4,W I 94/10 Mile,RAMP,801503,0,0.248,0,,2.24,5 +3884,-1,0.469315,0,3,0,1,1,,3,4,W I 94,,798502,2.048,2.517,0,,0.58,7 +4335,1,0.46052,3,0,0,1,1,,3,4,E I 94,,798501,2.046,2.506,0,,0.58,7 +4894,1,0.244116,1,0,0,1,1,RON,3,4,10 Mile/E I 94,RAMP,801004,0,0.244,0,,1.09,4 +4900,1,0.238156,1,0,0,1,1,RON,3,4,11 Mile/W I 94,RAMP,801504,0,0.238,0,,1.09,4 +5212,0,0.540539,1,1,0,2,5,,3,4,Frazho,Rd,803110,4.273,4.814,0,12.972937,8,4.5 +5237,0,0.1288,2,2,1,2,4,,3,4,10 Mile,Rd,803101,8.427,8.556,0,3.091205,6,4.5 +5317,0,0.610103,1,1,0,2,5,,3,4,Stephens,St,803008,3.417,4.027,0,14.642482,8,4.5 +5566,0,0.114316,2,2,0,2,4,,3,4,11 Mile,Rd,806006,0.061,0.175,0,2.743594,6,4.5 +19305,1,0.486436,2,0,0,1,1,RFS,3,4,E I 94/W I 696,RAMP,1740604,0,0.486,0,,0.22,6 +19332,-1,0.267881,0,2,0,1,1,RFS,3,4,W I 696,,1740308,8.663,8.931,0,,0.22,6 +19347,1,0.355022,2,0,0,1,1,RFF,3,4,E I 696/E I 94,RAMP,1740306,0,0.355,0,,0.58,7 +19373,1,0.202134,2,0,0,1,1,RFF,3,4,E I 696,,1740201,8.761,8.963,0,,0.58,7 +20159,0,0.511143,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,0.796,1.307,0,12.267434,6,4.5 +20368,0,0.23798,1,1,1,2,5,,3,4,Kelly,Rd,4208040,2.314,2.552,0,5.711515,8,4.5 +25702,0,0.503667,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.087996,0.15,4 +25783,0,0.260021,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.240495,0.15,4 +5241,0,0.285327,2,2,0,2,4,,3,4,10 Mile,Rd,803101,7.751,8.036,0,6.84785,6,4.5 +5320,0,0.288091,1,1,0,2,5,,3,4,Stephens,Dr,803008,2.902,3.19,0,6.914192,8,4.5 +20405,1,0.347232,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,1.949,2.296,0,8.333573,6,4.5 +20501,1,0.347236,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,0.018,0.365,0,8.333676,6,4.5 +25436,0,0.273019,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.552444,0.15,4 +25682,0,0.259777,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.234655,0.15,4 +26102,0,0.488054,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.713298,0.15,4 +26121,0,0.262132,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.291162,0.15,4 +25681,0,0.259029,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.216697,0.15,4 +5318,0,0.214423,1,1,0,2,5,,3,4,Stephens,Dr,803008,3.202,3.417,0,5.146159,8,4.5 +20407,1,0.167022,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,1.618,1.785,0,4.008523,6,4.5 +20497,1,0.166475,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,0.529,0.695,0,3.995407,6,4.5 +26118,0,0.267957,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.430972,0.15,4 +26593,0,0.257657,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.183762,0.15,4 +20406,1,0.163778,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208040,1.785,1.949,0,3.930681,6,4.5 +20499,1,0.164041,2,0,0,2,4,DV2,3,4,Kelly,Rd,4208039,0.365,0.529,0,3.936992,6,4.5 +5319,0,0.011977,1,1,0,2,5,,3,4,Stephens,Dr,803008,3.19,3.202,0,0.287443,8,4.5 +26103,0,0.048591,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.166186,0.15,4 +5239,0,0.27974,2,2,0,2,4,,3,4,10 Mile,Rd,803101,8.044,8.324,0,6.713772,6,4.5 +20369,1,0.018005,1,0,0,2,5,DV2,3,4,Kelly,Rd,4208040,2.296,2.314,0,0.43211,8,4.5 +20503,1,0.017628,1,0,0,2,5,DV2,3,4,Kelly,Rd,4208039,0,0.018,0,0.423063,8,4.5 +5240,0,0.008229,2,2,0,2,4,,3,4,10 Mile,Rd,803101,8.036,8.044,0,0.197484,6,4.5 +5238,0,0.103405,2,2,1,2,4,,3,4,10 Mile,Rd,803101,8.324,8.427,0,2.481729,6,4.5 +5111,-1,0.325962,0,2,0,2,5,,3,4,11 Mile,Rd,803209,8.106,8.432,0,7.823079,8,4.5 +5172,1,0.322765,2,0,0,2,5,,3,4,11 Mile,Rd,803208,8.144,8.467,0,7.746351,8,4.5 +5214,0,0.124877,1,1,1,2,5,,3,4,Frazho,Rd,803110,3.917,4.042,0,2.997058,8,4.5 +19333,-1,0.279653,0,3,0,1,1,,3,4,W I 696,,1740308,8.383,8.663,0,,0.58,7 +19369,1,0.205174,1,0,0,1,1,ROF,3,4,E I 696/11 Mile,RAMP,1740204,0,0.205,0,,2.24,5 +19374,1,0.396522,4,0,0,1,1,,3,4,E I 696,,1740201,8.364,8.761,0,,0.58,7 +20365,1,0.17964,1,0,0,1,1,RON,3,4,11 Mile/W I 696,RAMP,4208095,0,0.18,0,,1.09,4 +25206,0,0.315472,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.571339,0.15,4 +25219,0,0.452695,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.864675,0.15,4 +25226,0,0.292455,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.018922,0.15,4 +25435,0,0.236022,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.664539,0.15,4 +26372,0,0.438686,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.528456,0.15,4 +26450,0,0.354345,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.504276,0.15,4 +25227,0,0.232054,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.569306,0.15,4 +19334,-1,0.218951,0,4,0,1,1,,3,4,W I 696,,1740308,8.164,8.383,0,,0.58,7 +19375,1,0.266339,4,0,0,1,1,,3,4,E I 696,,1740201,8.098,8.364,0,,0.58,7 +5213,0,0.231098,1,1,1,2,5,,3,4,Frazho,Rd,803110,4.042,4.273,0,5.54636,8,4.5 +25111,0,0.251442,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.03462,0.15,4 +20367,0,0.256179,1,1,1,2,5,,3,4,Kelly,Rd,4208040,2.552,2.808,0,6.148305,8,4.5 +25782,0,0.254311,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.103475,0.15,4 +5110,-1,0.133159,0,2,0,2,4,,3,4,11 Mile,Rd,803209,8.432,8.565,0,3.19582,6,4.5 +5171,1,0.128099,2,0,0,2,4,,3,4,11 Mile,Rd,803208,8.467,8.595,0,3.074367,6,4.5 +6465,0,0.060944,2,2,0,2,4,,3,4,11 Mile,Rd,806006,0,0.061,0,1.462658,6,4.5 +4050,1,0.624502,3,0,0,1,1,,3,4,E I 94,,798501,1.421,2.046,0,,0.58,7 +4149,0,0.242346,2,2,1,2,3,,3,4,Harper,Ave,798408,1.566,1.808,0,5.816306,5,5 +4171,-1,0.635032,0,3,0,1,1,,3,4,W I 94,,798502,1.413,2.048,0,,0.58,7 +5234,0,0.32324,2,2,1,2,4,,3,4,10 Mile,Rd,803101,8.743,9.066,0,7.757752,6,4.5 +20047,0,0.513456,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,0.283,0.796,0,12.322939,6,4.5 +26093,0,0.499209,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.981016,0.15,4 +26095,0,0.04067,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.976079,0.15,4 +3870,1,0.221894,1,0,0,1,1,ROF,3,4,E I 94/10 Mile,RAMP,801001,0,0.222,0,,2.24,5 +4167,1,0.220892,1,0,0,1,1,RON,3,4,10 Mile/W I 94,RAMP,801502,0,0.221,0,,1.09,4 +5235,0,0.136412,2,2,1,2,4,,3,4,10 Mile,Rd,803101,8.607,8.743,0,3.273884,6,4.5 +5236,0,0.050348,2,2,0,2,4,,3,4,10 Mile,Rd,803101,8.556,8.607,0,1.208344,6,4.5 +4424,0,0.224171,2,2,1,2,3,,3,4,Harper,Ave,798408,1.342,1.566,0,5.380112,5,5 +5316,0,0.192891,1,1,0,2,5,,3,4,Stephens,St,803008,4.027,4.219,0,4.629384,8,4.5 +20048,0,0.282658,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,0,0.283,0,6.783799,6,4.5 +5233,0,0.155838,2,2,1,2,4,,3,4,10 Mile,Rd,803101,9.066,9.222,0,3.740114,6,4.5 +3874,-1,0.340689,0,3,0,1,1,,3,4,W I 94,,798502,3.041,3.382,0,,0.58,7 +5084,1,0.249352,1,0,0,1,1,ROF,3,4,E I 94/11 Mile,RAMP,801006,0.221,0.471,0,,2.24,5 +5211,0,0.257903,1,1,0,2,5,,3,4,Frazho,St,803110,4.814,5.071,0,6.18967,8,4.5 +6869,0,0.256914,2,2,1,2,4,,3,4,11 Mile,Rd,806006,0.491,0.748,0,6.165926,6,4.5 +19372,1,0.104614,2,0,0,1,1,RFF,3,4,E I 696,,1740201,8.963,9.067,0,,0.58,7 +20575,0,0.491231,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,1.325,1.816,0,11.789547,6,4.5 +25429,0,0.450239,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.80573,0.15,4 +29922,0,0.52012,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.482885,0.15,4 +4046,1,0.314785,4,0,0,1,1,,3,4,E I 94,,798501,2.506,2.821,0,,0.58,7 +4163,-1,0.524009,0,4,0,1,1,,3,4,W I 94,,798502,2.517,3.041,0,,0.58,7 +25703,0,0.012169,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.292061,0.15,4 +4541,1,0.2214,2,0,0,1,1,RFF,3,4,E I 94/W I 696,RAMP,801006,0,0.221,0,,0.58,7 +4453,1,0.210676,1,0,0,1,1,ROF,3,4,W I 94/11 Mile,RAMP,801506,0,0.211,0,,2.24,5 +4753,1,0.191744,1,0,0,1,1,RON,3,4,11 Mile/E I 94,RAMP,801008,0,0.192,0,,1.09,4 +4782,1,0.236788,1,0,0,1,1,RON,3,4,11 Mile/W I 94,RAMP,801505,0,0.237,0,,1.09,4 +6455,0,0.089034,2,2,1,2,4,,3,4,11 Mile,Rd,806006,0.313,0.402,0,2.136825,6,4.5 +6870,0,0.083202,2,2,0,2,4,,3,4,11 Mile,Rd,806006,0.23,0.313,0,1.996845,6,4.5 +6872,0,0.055053,2,2,0,2,4,,3,4,11 Mile,Rd,806006,0.175,0.23,0,1.321277,6,4.5 +5561,0,0.088849,2,2,1,2,4,,3,4,11 Mile,Rd,806006,0.402,0.491,0,2.132365,6,4.5 +20460,0,0.017607,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,1.307,1.325,0,0.422569,6,4.5 +6863,0,0.072111,2,2,1,2,4,,3,4,11 Mile,Rd,806006,0.748,0.82,0,1.730672,6,4.5 +20908,0,0.287507,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,1.816,2.103,0,6.900177,6,4.5 +28200,0,0.024799,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.595166,0.15,4 +6444,0,0.024801,2,2,1,2,4,,3,4,11 Mile,Rd,806006,0.82,0.845,0,0.595235,6,4.5 +4041,1,0.42103,3,0,0,1,1,,3,4,E I 94,,798501,4.532,4.953,0,,0.58,7 +4328,0,0.272737,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.282,2.554,0,6.54569,6,4.5 +5040,-1,0.51995,0,4,0,1,1,,3,4,W I 94,,798502,4.535,5.055,0,,0.58,7 +6096,1,0.210859,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,5.541,5.752,0,5.060606,5,5 +6137,1,0.381982,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.794,5.176,0,9.167567,5,5 +6400,0,0.262157,2,2,1,2,4,,3,4,13 Mile,Rd,803410,5.361,5.623,0,6.291761,6,4.5 +6649,0,0.032078,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.493,8.525,0,0.769872,5,5 +6956,0,0.399259,2,2,0,2,4,,3,4,Martin,Rd,803308,3.37,3.769,0,9.58221,6,4.5 +20260,-1,0.285915,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,5.427,5.713,0,6.861953,5,5 +20262,-1,0.379252,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,4.761,5.14,0,9.102043,5,5 +20857,0,0.655001,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,2.837,3.492,0,15.720029,6,4.5 +25216,0,0.228667,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.48802,0.15,4 +25785,0,0.502259,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.054228,0.15,4 +29869,0,0.135013,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.240302,0.15,4 +6213,1,0.18412,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.428,4.612,0,4.418881,5,5 +6330,1,0.182106,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.612,4.794,0,4.370532,5,5 +6652,0,0.447054,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.046,8.493,0,10.729305,5,5 +6959,0,0.378862,1,1,0,2,4,,3,4,Martin,Rd,803308,2.991,3.37,0,9.092698,6,4.5 +20263,-1,0.184786,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,4.576,4.761,0,4.434858,5,5 +20264,-1,0.233315,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,4.343,4.576,0,5.599549,5,5 +24758,0,0.30505,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.321193,0.15,4 +25218,0,0.28211,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.770639,0.15,4 +25698,0,0.303246,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.2779,0.15,4 +25789,0,0.389518,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.34842,0.15,4 +25790,0,0.27497,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.599278,0.15,4 +6127,0,0.252114,2,2,0,2,3,,3,4,Utica,Rd,4211434,0.032,0.284,0,6.050733,5,5 +6128,0,0.200915,1,1,0,2,5,,3,4,Utica,Rd,811503,0,0.201,0,4.821971,8,4.5 +6235,1,0.280601,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.148,4.428,0,6.734427,5,5 +6963,0,0.222044,1,1,0,2,4,,3,4,Martin,Rd,803308,2.769,2.991,0,5.329066,6,4.5 +20265,-1,0.214535,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,4.128,4.343,0,5.148836,5,5 +6250,1,0.096195,3,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,4.035,4.132,0,2.308686,5,5 +20266,-1,0.130387,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,3.998,4.128,0,3.129292,5,5 +6971,0,0.024796,1,1,0,2,4,,3,4,Martin,Rd,803308,2.744,2.769,0,0.595094,6,4.5 +37130,0,0.014944,2,2,1,2,3,,3,2,Northline,Rd,1578505,2.998,3.013,0,0.358657,5,5 +6663,0,0.196272,2,2,0,2,3,,3,4,12 Mile,Rd,803401,7.826,8.022,0,4.710535,5,5 +25217,0,0.283981,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.815533,0.15,4 +6654,0,0.023594,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.022,8.046,0,0.566254,5,5 +25791,0,0.291024,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.98457,0.15,4 +25788,0,0.440452,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.570856,0.15,4 +4646,0,0.241306,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.04,2.282,0,5.791345,6,4.5 +6411,0,0.248197,2,2,1,2,4,,3,4,13 Mile,Rd,803410,5.113,5.361,0,5.956736,6,4.5 +6557,0,0.364502,1,1,1,2,5,,3,4,Common,Rd,4211479,4.806,5.17,0,8.748039,8,4.5 +6576,0,0.170216,1,1,0,2,4,,3,4,Kelly,Rd,827505,0,0.17,0,4.085194,6,4.5 +25212,0,0.591142,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.187404,0.15,4 +25214,0,0.528055,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.673332,0.15,4 +29934,0,0.55496,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.319037,0.15,4 +25211,0,0.23831,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.719446,0.15,4 +25213,0,0.275317,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.607598,0.15,4 +6418,0,0.121562,2,2,1,2,4,,3,4,13 Mile,Rd,803410,4.991,5.113,0,2.917478,6,4.5 +4124,0,0.197015,2,2,0,2,4,,3,4,Masonic,Blvd,802104,1.843,2.04,0,4.72835,6,4.5 +6161,0,0.341125,1,1,0,2,4,,3,4,Kelly,Rd,827505,0.17,0.511,0,8.186991,6,4.5 +6112,1,0.36505,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,5.176,5.541,0,8.761195,5,5 +6551,0,0.025955,1,1,1,2,3,,3,4,Common,Rd,4211479,5.17,5.196,0,0.622921,5,5 +20261,-1,0.287877,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,5.14,5.427,0,6.909052,5,5 +25113,0,0.114804,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.755306,0.15,4 +4031,-1,0.461493,0,3,0,1,1,,3,4,W I 94,,798502,4.074,4.535,0,,0.58,7 +4180,1,0.242135,1,0,0,1,1,RON,3,4,12 Mile/W I 94,RAMP,801507,0,0.242,0,,1.09,4 +4331,1,0.489996,3,0,0,1,1,,3,4,E I 94,,798501,4.042,4.532,0,,0.58,7 +5051,1,0.271118,1,0,0,1,1,ROF,3,4,E I 94/12 Mile,RAMP,801009,0,0.271,0,,2.24,5 +6641,0,0.256013,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.804,9.06,0,6.144311,5,5 +6942,0,0.282646,2,2,0,2,4,,3,4,Martin,Rd,803308,3.769,4.052,0,6.783505,6,4.5 +20900,0,0.273849,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,2.563,2.837,0,6.572379,6,4.5 +25426,0,0.46318,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.116329,0.15,4 +25427,0,0.376751,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.042034,0.15,4 +4044,1,0.340557,4,0,0,1,1,,3,4,E I 94,,798501,3.702,4.042,0,,0.58,7 +5095,-1,0.34819,0,4,0,1,1,,3,4,W I 94,,798502,3.725,4.074,0,,0.58,7 +3953,1,0.221949,1,0,0,1,1,ROF,3,4,W I 94/12 Mile,RAMP,801508,0,0.222,0,,2.24,5 +4345,1,0.22145,1,0,0,1,1,RON,3,4,12 Mile/E I 94,RAMP,801101,0,0.221,0,,1.09,4 +6642,0,0.132768,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.671,8.804,0,3.18643,5,5 +6643,0,0.093814,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.578,8.671,0,2.251536,5,5 +6645,0,0.052715,2,2,0,2,3,,3,4,12 Mile,Rd,803401,8.525,8.578,0,1.265169,5,5 +20901,0,0.235019,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,2.328,2.563,0,5.640462,6,4.5 +28198,0,0.021605,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.518515,0.15,4 +3972,-1,0.434396,0,3,0,1,1,,3,4,W I 94,,798502,5.055,5.489,0,,0.58,7 +4007,1,0.330218,1,0,0,1,1,RON,3,4,Little Mack/W I 94,RAMP,801510,0,0.33,0,,1.09,4 +4058,1,0.629596,1,0,0,1,2,,3,4,E I 94/Gratiot Connector,,801102,0,0.629,0,,0.58,7 +4327,1,0.729942,3,0,0,1,1,,3,4,E I 94,,798501,4.953,5.683,0,,0.58,7 +4713,0,0.21077,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.843,3.054,0,5.058486,6,4.5 +4975,-1,0.451724,0,2,0,1,2,,3,4,Gratiot/W I 94 Connector,,801509,0,0.452,0,,0.58,7 +4995,-1,0.200654,0,3,0,1,1,,3,4,W I 94,,798502,5.489,5.69,0,,0.58,7 +6370,0,0.219415,2,2,0,2,4,,3,4,13 Mile,Rd,803410,5.92,6.139,0,5.265948,6,4.5 +20855,0,0.362568,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,3.492,3.854,0,8.701641,6,4.5 +25119,0,0.505391,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.12938,0.15,4 +5045,0,0.116828,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.702,2.818,0,2.803878,6,4.5 +6371,0,0.26918,2,2,0,2,4,,3,4,13 Mile,Rd,803410,5.651,5.92,0,6.460316,6,4.5 +6607,1,0.324124,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,6.006,6.331,0,7.778979,5,5 +20258,-1,0.352847,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,5.941,6.294,0,8.468338,5,5 +6090,1,0.165174,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,5.752,5.917,0,3.964182,5,5 +20259,-1,0.227974,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,5.713,5.941,0,5.471375,5,5 +6373,0,0.027528,2,2,0,2,4,,3,4,13 Mile,Rd,803410,5.623,5.651,0,0.660667,6,4.5 +6088,1,0.089548,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,5.917,6.006,0,2.149142,5,5 +4630,-1,0.0543,0,2,0,2,3,RSF,3,4,Gratiot/W I 94 Connector,,801509,0.452,0.506,0,1.303188,5,5 +4038,0,0.147165,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.554,2.702,0,3.531955,6,4.5 +5039,0,0.02476,2,2,0,2,4,,3,4,Masonic,Blvd,802104,2.818,2.843,0,0.594241,6,4.5 +25786,0,0.202829,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.867884,0.15,4 +4037,1,0.240226,3,0,0,1,1,,3,4,E I 94,,798501,5.683,5.923,0,,0.58,7 +4197,1,0.387388,1,0,0,1,1,RON,3,4,Little Mack/E I 94,RAMP,801106,0,0.387,0,,1.09,4 +4387,0,0.167855,2,2,0,2,4,,3,4,Masonic,Blvd,802104,3.054,3.222,0,4.02852,6,4.5 +4486,1,0.240634,1,0,0,1,1,ROF,3,4,E I 94/Little Mack,RAMP,801105,0,0.241,0,,2.24,5 +6369,0,0.282244,2,2,0,2,4,,3,4,13 Mile,Rd,803410,6.139,6.421,0,6.773862,6,4.5 +20759,0,0.038119,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,4.098,4.136,0,0.914864,6,4.5 +25103,0,0.134593,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.230229,0.15,4 +5026,1,0.239866,1,0,0,1,1,ROF,3,4,W I 94/Little Mack,RAMP,801601,0,0.24,0,,2.24,5 +20850,0,0.119524,2,2,0,2,4,,3,4,Little Mack,Ave,4208744,3.969,4.089,0,2.868574,6,4.5 +20854,0,0.104876,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,3.854,3.959,0,2.517027,6,4.5 +20852,0,0.010286,2,2,0,2,4,,3,4,Little Mack,Ave,4208744,3.959,3.969,0,0.246858,6,4.5 +20762,0,0.009042,2,2,0,2,4,,3,4,Little Mack,Ave,4208744,4.089,4.098,0,0.217017,6,4.5 +20758,0,0.229895,2,2,1,2,4,,3,4,Little Mack,Ave,4208744,4.136,4.366,0,5.517471,6,4.5 +25104,0,0.1574,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.777589,0.15,4 +4109,0,0.091239,2,2,0,2,4,,3,4,Masonic,Blvd,802104,3.222,3.313,0,2.18974,6,4.5 +4318,0,0.357625,2,2,1,2,3,,3,4,14 Mile,Rd,798407,2.714,3.071,0,8.583009,5,5 +4642,0,0.513189,1,1,0,2,4,,4,4,Millar,Rd,802408,1.473,1.986,0,12.316536,4.5,4.5 +4809,0,0.195009,2,2,1,2,3,,4,4,Garfield,Rd,798703,2.217,2.412,0,4.680226,3.7,5 +4853,1,0.938656,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,5.845,6.783,0,22.527745,3.7,5 +5282,0,0.440961,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,9.053,9.494,0,10.583061,3.7,5 +5288,0,0.441973,3,3,1,2,3,,3,4,Groesbeck,Hwy,803009,6.682,7.124,0,10.607358,5,5 +5412,0,0.224107,1,1,0,2,5,,4,4,Nunneley,Rd,828103,0.051,0.275,0,5.378557,5.8,4.5 +5672,1,0.983982,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,7.643,8.627,0,23.61556,3.7,5 +5741,0,0.235141,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.472,4.707,0,5.643382,4.5,4.5 +5784,0,0.281632,2,2,1,2,4,,4,4,15 Mile,Rd,803605,7.793,8.074,0,6.759174,4.5,4.5 +5856,0,0.659807,1,1,0,2,4,,4,4,Clinton River,Rd,820606,6.279,6.939,0,15.835369,4.5,4.5 +6170,0,0.264417,1,1,0,2,5,,4,4,Kelly,Rd,827505,2.83,3.095,0,6.346008,5.8,4.5 +6230,0,0.473991,1,1,0,2,4,,4,4,Moravian,Dr,803604,3.307,3.78,0,11.375773,4.5,4.5 +6270,0,0.48779,1,1,0,2,4,,4,4,Moravian,Dr,803604,2.638,3.126,0,11.706961,4.5,4.5 +20504,0,0.576905,1,1,0,2,5,,4,4,Little Mack,Ave,4208035,0.892,1.469,0,13.845729,5.8,4.5 +25110,0,0.460445,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.050683,0.15,4 +25781,0,0.557278,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.374664,0.15,4 +25796,0,0.552165,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.251965,0.15,4 +25797,0,0.423284,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.158814,0.15,4 +25803,0,0.426943,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.246634,0.15,4 +25804,0,0.418246,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.037893,0.15,4 +25871,0,0.365837,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.780094,0.15,4 +28660,0,0.461261,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.070259,0.15,4 +4274,0,0.583955,1,1,0,2,3,,4,4,Garfield,Rd,798703,0.674,1.258,0,14.014908,3.7,5 +4374,0,0.165866,1,1,0,2,5,,4,4,Klein,Rd,802304,0,0.166,0,3.980783,5.8,4.5 +4599,0,0.160092,2,2,1,2,3,,3,4,14 Mile,Rd,798407,3.459,3.619,0,3.842198,5,5 +4957,0,0.366588,1,1,0,2,5,,4,4,Mulvey,Rd,798708,0.947,1.313,0,8.798108,5.8,4.5 +5018,0,0.562653,1,1,0,2,5,,4,4,Klein,Rd,802304,0.524,1.087,0,13.503669,5.8,4.5 +5824,0,0.318209,2,2,1,2,4,,4,4,15 Mile,Rd,803605,6.732,7.05,0,7.637005,4.5,4.5 +6105,0,0.088303,2,2,1,2,4,,4,4,Utica,Rd,4211434,3.422,3.51,0,2.119282,4.5,4.5 +6108,0,0.437918,2,2,0,2,4,,3,4,Utica,Rd,4211434,2.22,2.658,0,10.510029,6,4.5 +6273,0,0.61858,1,1,0,2,4,,4,4,Moravian,Dr,803604,2.02,2.638,0,14.845921,4.5,4.5 +25798,0,0.502058,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.049401,0.15,4 +28143,0,0.432049,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.369173,0.15,4 +28717,0,0.574344,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.784251,0.15,4 +28923,0,0.511661,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.27987,0.15,4 +29718,0,0.335518,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.052444,0.15,4 +29926,0,0.425677,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.216251,0.15,4 +3958,0,0.412859,1,1,0,2,5,,4,4,Mulvey,Rd,798708,0.344,0.756,0,9.908624,5.8,4.5 +4263,0,0.343656,1,1,0,2,5,,4,4,Mulvey,Rd,798708,0,0.344,0,8.247748,5.8,4.5 +4595,0,0.425998,2,2,1,2,3,,3,4,14 Mile,Rd,798407,3.764,4.19,0,10.223963,5,5 +6107,0,0.349286,2,2,1,2,4,,4,4,Utica,Rd,4211434,2.733,3.082,0,8.382855,4.5,4.5 +28141,0,0.353675,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.488194,0.15,4 +29925,0,0.460894,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.061446,0.15,4 +4285,0,0.192764,2,2,1,2,3,,3,4,14 Mile,Rd,798407,4.19,4.383,0,4.626339,5,5 +28142,0,0.195722,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.69732,0.15,4 +4290,0,0.144811,2,2,1,2,3,,3,4,14 Mile,Rd,798407,3.619,3.764,0,3.475463,5,5 +5747,0,0.075156,2,2,1,2,4,,4,4,Utica,Rd,4211434,2.658,2.733,0,1.803742,4.5,4.5 +3933,0,0.190307,1,1,0,2,5,,4,4,Mulvey,Rd,798708,0.756,0.947,0,4.567371,5.8,4.5 +5746,0,0.339608,2,2,1,2,4,,4,4,Utica,Rd,4211434,3.082,3.422,0,8.150589,4.5,4.5 +25873,0,0.060879,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.461095,0.15,4 +5745,0,0.232026,2,2,1,2,4,,4,4,Utica,Rd,4211434,3.51,3.742,0,5.56863,4.5,4.5 +5829,0,0.195953,2,2,1,2,4,,4,4,15 Mile,Rd,803605,6.536,6.732,0,4.702867,4.5,4.5 +6103,0,0.425861,2,2,1,2,4,,4,4,Utica,Rd,4211434,3.742,4.168,0,10.220674,4.5,4.5 +28958,0,0.48883,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.731927,0.15,4 +5837,0,0.270916,2,2,1,2,4,,4,4,15 Mile,Rd,803605,6.23,6.501,0,6.501978,4.5,4.5 +5830,0,0.035036,2,2,1,2,4,,4,4,15 Mile,Rd,803605,6.501,6.536,0,0.840852,4.5,4.5 +5743,0,0.083628,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.168,4.251,0,2.007072,4.5,4.5 +6101,0,0.221136,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.251,4.472,0,5.307271,4.5,4.5 +6279,0,0.230875,1,1,0,2,4,,4,4,Moravian,Dr,803604,1.789,2.02,0,5.541003,4.5,4.5 +29927,0,0.345717,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.2972,0.15,4 +28667,0,0.223118,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.354831,0.15,4 +28666,0,0.032473,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,0.779362,0.15,4 +4297,0,0.370291,2,2,1,2,3,,3,4,14 Mile,Rd,798407,3.089,3.459,0,8.886987,5,5 +4582,0,0.269269,1,1,0,2,3,,4,4,Garfield,Rd,798703,0.405,0.674,0,6.462463,3.7,5 +25123,0,0.323459,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.763009,0.15,4 +25870,0,0.480928,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.542275,0.15,4 +29719,0,0.267248,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.413958,0.15,4 +4281,0,0.252575,1,1,0,2,3,,3,4,Garfield,Rd,798703,0.153,0.405,0,6.061804,5,5 +25124,0,0.267789,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.426935,0.15,4 +4591,0,0.152763,1,1,0,2,3,,3,4,Garfield,Rd,798703,0,0.153,0,3.666316,5,5 +3995,0,0.253018,1,1,0,2,5,,4,4,Klein,Rd,802304,0.271,0.524,0,6.072426,5.8,4.5 +4092,0,0.105189,1,1,0,2,5,,4,4,Klein,Rd,802304,0.166,0.271,0,2.524542,5.8,4.5 +25806,0,0.055064,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.321529,0.15,4 +4605,0,0.01777,2,2,1,2,3,,3,4,14 Mile,Rd,798407,3.071,3.089,0,0.426481,5,5 +4273,0,0.380616,2,2,1,2,3,,4,4,Garfield,Rd,798703,1.418,1.798,0,9.134779,3.7,5 +5790,0,0.130688,2,2,1,2,4,,4,4,15 Mile,Rd,803605,7.306,7.437,0,3.136522,4.5,4.5 +25805,0,0.552423,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.258158,0.15,4 +28665,0,0.479216,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.501191,0.15,4 +4578,0,0.15954,1,1,0,2,3,,4,4,Garfield,Rd,798703,1.258,1.418,0,3.828951,3.7,5 +5805,0,0.25577,2,2,1,2,4,,4,4,15 Mile,Rd,803605,7.05,7.306,0,6.138478,4.5,4.5 +4668,0,0.318308,2,2,1,2,3,,4,4,Garfield,Rd,798703,1.899,2.217,0,7.639392,3.7,5 +5008,0,0.100408,2,2,1,2,3,,4,4,Garfield,Rd,798703,1.798,1.899,0,2.409796,3.7,5 +5789,0,0.356304,2,2,1,2,4,,4,4,15 Mile,Rd,803605,7.437,7.793,0,8.551289,4.5,4.5 +4218,1,0.833503,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,7.397,8.23,0,20.004076,3.7,5 +4271,0,0.473824,2,2,1,2,3,,4,4,Garfield,Rd,798703,4.042,4.516,0,11.371774,3.7,5 +4351,0,0.244669,2,2,1,2,3,,4,4,Garfield,Rd,798703,3.257,3.502,0,5.872045,3.7,5 +4358,0,0.543664,1,1,0,2,4,,4,4,Millar,Rd,802408,0.44,0.983,0,13.047943,4.5,4.5 +4961,0,0.279856,1,1,0,2,5,,4,4,17 Mile,Rd,802410,0.722,1.002,0,6.71654,5.8,4.5 +5716,1,0.830456,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,6.22,7.05,0,19.930956,3.7,5 +6245,0,0.332168,1,1,0,2,4,,4,4,Clinton River,Rd,820606,5.947,6.279,0,7.972042,4.5,4.5 +6336,0,0.508654,1,1,0,2,4,,4,4,Clinton River,Rd,820606,5.102,5.61,0,12.207692,4.5,4.5 +25876,0,0.250281,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.006743,0.15,4 +28138,0,0.395722,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.49733,0.15,4 +28661,0,0.290173,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.964157,0.15,4 +28662,0,0.48916,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.739847,0.15,4 +29908,0,0.550696,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.216699,0.15,4 +4683,0,0.439797,1,1,0,2,4,,4,4,Millar,Rd,802408,0,0.44,0,10.555135,4.5,4.5 +5738,0,0.08272,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.723,4.805,0,1.985282,4.5,4.5 +6097,0,0.015185,2,2,1,2,4,,4,4,Utica,Rd,4211434,4.707,4.723,0,0.36444,4.5,4.5 +6771,0,0.175009,1,1,0,2,4,,4,4,Clinton River,Rd,820606,4.927,5.102,0,4.20022,4.5,4.5 +28663,0,0.272591,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.542192,0.15,4 +28664,0,0.232323,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.575744,0.15,4 +5465,0,0.048713,1,1,0,2,4,,4,4,Clinton River,Rd,820606,4.878,4.927,0,1.169106,4.5,4.5 +30223,0,0.228279,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.478701,0.15,4 +3942,0,0.244955,1,1,0,2,5,,4,4,17 Mile,Rd,802410,0.477,0.722,0,5.878928,5.8,4.5 +4295,0,0.059846,1,1,0,2,4,,4,4,18 Mile,Rd,802504,0.592,0.652,0,1.436302,4.5,4.5 +25878,0,0.494435,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.86644,0.15,4 +28689,0,0.549962,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.199098,0.15,4 +4034,0,0.199908,1,1,0,2,5,,4,4,17 Mile,Rd,802410,0.278,0.477,0,4.797797,5.8,4.5 +28688,0,0.602974,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.471385,0.15,4 +4601,0,0.12711,1,1,0,2,4,,4,4,18 Mile,Rd,802504,0.465,0.592,0,3.050632,4.5,4.5 +3986,0,0.350249,1,1,0,2,4,,4,4,18 Mile,Rd,802504,0.652,1.002,0,8.405966,4.5,4.5 +25877,0,0.524625,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.590999,0.15,4 +4191,0,0.323662,2,2,1,2,3,,4,4,Garfield,Rd,798703,2.514,2.837,0,7.767895,3.7,5 +4512,1,0.613733,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,6.783,7.397,0,14.729586,3.7,5 +4987,0,0.489708,1,1,0,2,4,,4,4,Millar,Rd,802408,0.983,1.473,0,11.752992,4.5,4.5 +5673,1,0.592838,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,7.05,7.643,0,14.228115,3.7,5 +28139,0,0.449674,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.792167,0.15,4 +28140,0,0.20447,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.907281,0.15,4 +4471,0,0.083831,2,2,1,2,3,,4,4,Garfield,Rd,798703,2.43,2.514,0,2.011956,3.7,5 +4475,0,0.017896,2,2,1,2,3,,4,4,Garfield,Rd,798703,2.412,2.43,0,0.429502,3.7,5 +4354,0,0.344455,2,2,1,2,3,,4,4,Garfield,Rd,798703,2.837,3.182,0,8.266913,3.7,5 +5939,0,0.336481,1,1,0,2,4,,4,4,Clinton River,Rd,820606,5.61,5.947,0,8.07554,4.5,4.5 +4068,0,0.075829,2,2,1,2,3,,4,4,Garfield,Rd,798703,3.182,3.257,0,1.819887,3.7,5 +6252,0,0.129341,1,1,0,2,4,,4,4,Moravian,Dr,803604,3.126,3.255,0,3.104173,4.5,4.5 +5809,1,0.051394,1,0,0,2,5,,4,4,Nunneley,Rd,828103,0,0.051,0,1.233444,5.8,4.5 +6251,0,0.022682,1,1,0,2,4,,4,4,Moravian,Dr,803604,3.255,3.278,0,0.544358,4.5,4.5 +6246,0,0.028542,1,1,0,2,4,,4,4,Moravian,Dr,803604,3.278,3.307,0,0.684998,4.5,4.5 +4302,0,0.302953,1,1,0,2,5,,4,4,17 Mile,Rd,802410,1.236,1.539,0,7.270873,5.8,4.5 +4575,0,0.186097,2,2,1,2,3,,4,4,Garfield,Rd,798703,3.856,4.042,0,4.466322,3.7,5 +4065,0,0.354006,2,2,1,2,3,,4,4,Garfield,Rd,798703,3.502,3.856,0,8.49614,3.7,5 +4614,0,0.233858,1,1,0,2,5,,4,4,17 Mile,Rd,802410,1.002,1.236,0,5.612601,5.8,4.5 +29909,0,0.347862,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.348681,0.15,4 +25874,0,0.148886,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.573267,0.15,4 +4651,0,0.508904,1,1,0,2,5,,4,4,Beaconsfield,St,798601,0.511,1.02,0,12.213701,5.8,4.5 +4656,0,0.48405,1,1,0,2,3,,3,4,14 Mile,Rd,798407,1.439,1.923,0,11.617204,5,5 +5283,0,0.407297,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,8.646,9.053,0,9.775133,3.7,5 +5285,0,0.401152,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,7.906,8.307,0,9.627658,3.7,5 +5771,0,0.304768,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.584,8.889,0,7.314426,4.5,4.5 +6068,0,0.290963,1,1,1,2,4,,4,4,Kelly,Rd,827505,1.486,1.777,0,6.983103,4.5,4.5 +20508,0,0.468783,1,1,0,2,5,,4,4,Little Mack,Ave,4208035,0,0.469,0,11.250784,5.8,4.5 +25101,0,0.570199,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.684778,0.15,4 +25117,0,0.198063,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.753519,0.15,4 +25585,0,0.432555,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.381326,0.15,4 +25793,0,0.293155,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.03571,0.15,4 +25795,0,0.450945,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.822678,0.15,4 +29928,0,0.46351,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.124233,0.15,4 +4637,0,0.303108,1,1,0,2,3,,3,4,14 Mile,Rd,798407,2.132,2.435,0,7.274581,5,5 +4793,0,0.439744,1,1,0,2,5,,4,4,Beaconsfield,St,798601,0,0.44,0,10.553867,5.8,4.5 +5287,0,0.538568,2,2,1,2,3,,3,4,Groesbeck,Hwy,803009,7.124,7.662,0,12.925622,5,5 +6886,0,0.282769,2,2,0,2,4,,3,4,Kelly,Rd,827505,1.024,1.307,0,6.786459,6,4.5 +25799,0,0.323726,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.769415,0.15,4 +25807,0,0.438808,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.531391,0.15,4 +25881,0,0.285335,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.848039,0.15,4 +4321,0,0.228947,2,2,1,2,3,,3,4,14 Mile,Rd,798407,2.435,2.663,0,5.494734,5,5 +5578,0,0.203076,1,1,0,2,4,,3,4,Kelly,Rd,827505,0.821,1.024,0,4.873817,6,4.5 +25115,0,0.18931,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.543449,0.15,4 +25116,0,0.195428,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.690276,0.15,4 +4635,0,0.050396,2,2,1,2,3,,3,4,14 Mile,Rd,798407,2.663,2.714,0,1.209499,5,5 +6477,0,0.179235,2,2,0,2,4,,3,4,Kelly,Rd,827505,1.307,1.486,0,4.30164,6,4.5 +5286,0,0.243562,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,7.662,7.906,0,5.845495,3.7,5 +4072,0,0.075654,1,1,0,2,5,,3,4,Beaconsfield,Ave,798602,0.26,0.336,0,1.8157,8,4.5 +4339,0,0.208305,1,1,0,2,3,,3,4,14 Mile,Rd,798407,1.923,2.132,0,4.999322,5,5 +5093,0,0.168069,1,1,0,2,5,,3,4,Beaconsfield,Ave,798602,0.336,0.504,0,4.033646,8,4.5 +25880,0,0.232994,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.59186,0.15,4 +4464,0,0.071475,1,1,0,2,5,,4,4,Beaconsfield,St,798601,0.44,0.511,0,1.715408,5.8,4.5 +5130,0,0.500545,1,1,1,2,5,,4,4,Kelly,Rd,827505,2.038,2.539,0,12.013073,5.8,4.5 +5778,0,0.193002,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.074,8.267,0,4.63205,4.5,4.5 +25780,0,0.292966,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.031175,0.15,4 +26104,0,0.535812,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.859486,0.15,4 +5685,0,0.261324,1,1,1,2,4,,4,4,Kelly,Rd,827505,1.777,2.038,0,6.271765,4.5,4.5 +6583,0,0.291754,1,1,0,2,5,,4,4,Kelly,Rd,827505,2.539,2.83,0,7.002098,5.8,4.5 +5284,0,0.338718,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,8.307,8.646,0,8.129237,3.7,5 +5772,0,0.175999,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.408,8.584,0,4.223965,4.5,4.5 +5773,0,0.140754,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.267,8.408,0,3.378094,4.5,4.5 +4466,0,0.557215,1,1,0,2,5,,4,4,Little Mack,Ave,798506,0,0.557,0,13.373164,5.8,4.5 +5875,1,0.57387,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,6.901,7.475,0,13.772884,3.7,5 +20222,-1,0.628541,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,6.864,7.493,0,15.084985,3.7,5 +25102,0,0.072013,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.728303,0.15,4 +29707,0,0.289812,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.955477,0.15,4 +29708,0,0.358907,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.613761,0.15,4 +4662,0,0.024144,1,1,0,2,3,,3,4,14 Mile,Rd,798407,1.37,1.394,0,0.579446,5,5 +5942,1,0.148125,4,0,0,2,3,DIV,3,4,Gratiot,Ave,804806,6.753,6.901,0,3.555005,5,5 +20223,-1,0.205495,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,6.659,6.864,0,4.931878,5,5 +4343,0,0.04504,1,1,0,2,3,,3,4,14 Mile,Rd,798407,1.394,1.439,0,1.08095,5,5 +37123,1,0.044539,2,0,0,2,4,,3,2,Plymouth / M 14 Cutoff,,4718326,0,0.045,0,1.068932,6,4.5 +5764,0,0.186517,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.91,9.097,0,4.476406,4.5,4.5 +20507,0,0.282273,1,1,0,2,5,,4,4,Little Mack,Ave,4208035,0.469,0.751,0,6.77455,5.8,4.5 +25792,0,0.236876,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.685034,0.15,4 +26584,0,0.372,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.928005,0.15,4 +5766,0,0.021338,2,2,1,2,4,,4,4,15 Mile,Rd,803605,8.889,8.91,0,0.512122,4.5,4.5 +5763,0,0.248065,2,2,1,2,4,,4,4,15 Mile,Rd,803605,9.097,9.345,0,5.953554,4.5,4.5 +25109,0,0.340403,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.169666,0.15,4 +20505,0,0.141367,1,1,0,2,5,,4,4,Little Mack,Ave,4208035,0.751,0.892,0,3.39282,5.8,4.5 +4230,1,0.427063,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,5.418,5.845,0,10.249505,3.7,5 +5670,1,0.393499,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,8.627,9.02,0,9.44398,3.7,5 +6194,0,0.515877,1,1,0,2,4,,4,4,Moravian,Dr,803604,4.329,4.845,0,12.381055,4.5,4.5 +6742,0,0.23402,1,1,0,2,4,,4,4,Canal,Rd,820607,5.763,5.997,0,5.616482,4.5,4.5 +6765,0,0.62214,1,1,0,2,4,,4,4,Clinton River,Rd,820606,7.21,7.832,0,14.931355,4.5,4.5 +25121,0,0.687986,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.511654,0.15,4 +28137,0,0.492425,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.818207,0.15,4 +28637,0,0.691855,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.604515,0.15,4 +28658,0,0.442214,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.613143,0.15,4 +29866,0,0.689936,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.558459,0.15,4 +6210,0,0.549088,1,1,0,2,4,,4,4,Moravian,Dr,803604,3.78,4.329,0,13.178101,4.5,4.5 +29910,0,0.604078,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.497868,0.15,4 +5462,0,0.271353,1,1,0,2,4,,4,4,Clinton River,Rd,820606,6.939,7.21,0,6.512461,4.5,4.5 +6433,0,0.542632,1,1,0,2,5,,4,4,Romeo Plank,Rd,819207,0,0.543,0,13.023169,5.8,4.5 +28136,0,0.26127,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.270479,0.15,4 +28135,0,0.435226,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.445421,0.15,4 +5278,0,0.370156,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,9.816,10.186,0,8.88374,3.7,5 +5280,0,0.116395,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,9.512,9.628,0,2.79347,3.7,5 +5419,0,0.208364,1,1,0,2,5,,4,4,Weybridge,St,844409,0.975,1.183,0,5.000728,5.8,4.5 +6469,0,0.346917,1,1,0,2,5,,4,4,Little Mack,Ave,825403,0,0.347,0,8.326018,5.8,4.5 +30224,0,0.247039,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.928941,0.15,4 +5281,0,0.018398,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,9.494,9.512,0,0.441547,3.7,5 +25120,0,0.19078,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.578726,0.15,4 +20057,0,0.203234,1,1,0,2,5,,4,4,Nunneley,Rd,4208681,0,0.203,0,4.877616,5.8,4.5 +5279,0,0.187255,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,9.628,9.816,0,4.494116,3.7,5 +5680,0,0.556322,1,1,0,2,4,,4,4,Harrington,St,825404,0,0.556,0,13.351716,4.5,4.5 +6149,0,0.584024,1,1,0,2,4,,4,4,Moravian,Dr,803604,5.176,5.76,0,14.016583,4.5,4.5 +28636,0,0.653619,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.686849,0.15,4 +6192,0,0.288996,1,1,0,2,4,,4,4,Moravian,Dr,803604,4.845,5.134,0,6.935898,4.5,4.5 +28635,0,0.203994,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.895859,0.15,4 +6165,0,0.041531,1,1,0,2,4,,4,4,Moravian,Dr,803604,5.134,5.176,0,0.996745,4.5,4.5 +5852,0,0.219207,1,1,0,2,4,,4,4,Clinton River,Rd,820606,7.832,8.051,0,5.260962,4.5,4.5 +6312,0,0.145519,1,1,0,2,4,,4,4,Canal,Rd,820607,5.997,6.143,0,3.492464,4.5,4.5 +4140,0,0.218016,2,2,1,2,3,,3,4,Harper,Ave,798408,3.539,3.757,0,5.232385,5,5 +24052,0,0.314094,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,3.545,3.859,0,7.538255,5,5 +25882,0,0.309931,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.438341,0.15,4 +26832,0,0.31792,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.630074,0.15,4 +4148,0,0.528151,2,2,1,2,3,,3,4,Harper,Ave,798408,2.155,2.683,0,12.675621,5,5 +24301,0,0.560091,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,2.232,2.792,0,13.442183,5,5 +25430,0,0.37518,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.004328,0.15,4 +25884,0,0.541828,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.003866,0.15,4 +29497,0,0.212572,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.101734,0.15,4 +5230,0,0.189848,2,2,1,2,4,,3,4,10 Mile,Rd,803101,9.61,9.8,0,4.556341,6,4.5 +5853,0,0.349478,1,1,1,2,5,,3,4,Greater Mack,Ave,809106,1.655,2.005,0,8.387478,8,4.5 +6242,0,0.132152,2,2,0,2,5,,3,4,Greater Mack,Ave,809106,1.523,1.655,0,3.171657,8,4.5 +24459,0,0.36783,2,2,1,2,3,,3,4,Jefferson,Ave,4718263,1.865,2.232,0,8.827928,5,5 +29131,0,0.181751,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.362031,0.15,4 +29919,0,0.4835,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.603994,0.15,4 +29920,0,0.463729,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.129507,0.15,4 +26097,0,0.254258,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.102184,0.15,4 +5231,0,0.253969,2,2,1,2,4,,3,4,10 Mile,Rd,803101,9.356,9.61,0,6.095244,6,4.5 +4316,0,0.304445,1,1,0,2,5,,3,4,Fresard,St,799707,0,0.304,0,7.306691,8,4.5 +24051,0,0.153578,2,2,1,2,3,,3,4,Jefferson,Ave,4718263,1.711,1.865,0,3.685871,5,5 +26089,0,0.20519,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.924557,0.15,4 +5228,0,0.086977,2,2,0,2,4,,3,4,10 Mile,Rd,803101,9.925,10.012,0,2.087444,6,4.5 +5229,0,0.125875,2,2,0,2,4,,3,4,10 Mile,Rd,803101,9.8,9.925,0,3.020993,6,4.5 +4287,1,0.2579,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800010,0.491,0.748,0,6.189609,6,4.5 +4301,1,0.257119,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800009,0.417,0.674,0,6.170866,6,4.5 +4417,0,0.563837,2,2,1,2,3,,3,4,Harper,Ave,798408,2.683,3.247,0,13.532089,5,5 +24258,0,0.326655,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,3.211,3.538,0,7.839724,5,5 +25885,0,0.638787,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,15.330889,0.15,4 +28196,0,0.233926,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.614229,0.15,4 +28197,0,0.651851,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,15.644423,0.15,4 +29923,0,0.35149,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.435748,0.15,4 +25106,0,0.244035,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.856836,0.15,4 +4416,0,0.278761,2,2,1,2,3,,3,4,Harper,Ave,798408,3.26,3.539,0,6.690259,5,5 +4142,0,0.013612,2,2,1,2,3,,3,4,Harper,Ave,798408,3.247,3.26,0,0.326678,5,5 +24405,0,0.418689,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,2.792,3.211,0,10.048537,5,5 +25886,0,0.255118,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.122831,0.15,4 +3999,1,0.20505,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800009,0.674,0.879,0,4.921209,6,4.5 +4597,1,0.206905,2,0,0,2,4,DIV,3,4,11 Mile,Rd,800010,0.284,0.491,0,4.965715,6,4.5 +25883,0,0.226677,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.440242,0.15,4 +24162,0,0.007837,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,3.538,3.545,0,0.188095,5,5 +4413,0,0.479397,2,2,1,2,3,,3,4,Harper,Ave,798408,4.259,4.738,0,11.505538,5,5 +5038,0,0.280552,2,2,1,2,5,,3,4,Masonic,Blvd,802104,4.141,4.422,0,6.733242,8,4.5 +6020,0,0.415999,1,1,0,2,5,,3,4,Greater Mack,Ave,811808,0.362,0.778,0,9.983967,8,4.5 +6360,0,0.191916,2,2,0,2,4,,3,4,13 Mile,Rd,803410,7.165,7.357,0,4.605983,6,4.5 +6631,0,0.41076,2,2,0,2,4,,3,4,12 Mile,Rd,803401,10.079,10.49,0,9.858243,6,4.5 +6866,0,0.420435,1,1,0,2,4,,3,4,Martin,Rd,803308,4.868,5.289,0,10.090445,6,4.5 +24059,0,0.428737,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,4.631,5.059,0,10.289684,5,5 +25888,0,0.280302,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.727248,0.15,4 +25895,0,0.354739,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.513746,0.15,4 +28186,0,0.413708,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.928984,0.15,4 +29721,0,0.497615,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.942764,0.15,4 +4138,0,0.307682,2,2,1,2,3,,3,4,Harper,Ave,798408,3.951,4.259,0,7.384367,5,5 +6632,0,0.349711,2,2,0,2,4,,3,4,12 Mile,Rd,803401,9.73,10.079,0,8.39307,6,4.5 +6934,0,0.195761,1,1,0,2,4,,3,4,Martin,Rd,803308,4.567,4.762,0,4.69826,6,4.5 +25893,0,0.297794,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.147046,0.15,4 +4414,0,0.194626,2,2,1,2,3,,3,4,Harper,Ave,798408,3.757,3.951,0,4.671023,5,5 +6637,0,0.158587,2,2,0,2,4,,3,4,12 Mile,Rd,803401,9.571,9.73,0,3.806091,6,4.5 +25894,0,0.273131,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.555147,0.15,4 +6881,0,0.106073,1,1,0,2,4,,3,4,Martin,Rd,803308,4.762,4.868,0,2.54576,6,4.5 +4136,0,0.537931,2,2,1,2,3,,3,4,Harper,Ave,798408,4.738,5.276,0,12.910355,5,5 +4404,0,0.326676,2,2,1,2,3,,3,4,Harper,Ave,798408,5.276,5.603,0,7.840225,5,5 +6018,0,0.526766,1,1,0,2,5,,3,4,Greater Mack,Ave,811808,0.815,1.342,0,12.642391,8,4.5 +6362,0,0.442429,2,2,0,2,4,,3,4,13 Mile,Rd,803410,6.723,7.165,0,10.618306,6,4.5 +28191,0,0.383958,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.21498,0.15,4 +28193,0,0.131137,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.147277,0.15,4 +6367,0,0.181609,2,2,0,2,4,,3,4,13 Mile,Rd,803410,6.541,6.723,0,4.358618,6,4.5 +5631,0,0.037218,1,1,0,2,5,,3,4,Greater Mack,Ave,811808,0.778,0.815,0,0.89323,8,4.5 +4127,0,0.193315,2,2,1,2,3,,3,4,Harper,Ave,798408,5.603,5.796,0,4.639563,5,5 +4320,0,0.014908,2,2,1,2,4,,3,4,Masonic,Blvd,802104,4.008,4.023,0,0.357789,6,4.5 +4029,0,0.11798,2,2,1,2,4,,3,4,Masonic,Blvd,802104,4.023,4.141,0,2.831521,6,4.5 +4403,0,0.203884,2,2,1,2,3,,3,4,Harper,Ave,798408,5.796,6,0,4.89322,5,5 +24168,0,0.455532,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,4.175,4.631,0,10.932768,5,5 +24271,0,0.228929,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,3.946,4.175,0,5.494299,5,5 +24418,0,0.087064,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,3.859,3.946,0,2.089542,5,5 +4699,0,0.400343,2,2,1,2,5,,3,4,Masonic,Blvd,802104,4.569,4.969,0,9.608228,8,4.5 +6359,0,0.474458,1,1,0,2,4,,3,4,13 Mile,Rd,803410,7.357,7.832,0,11.386989,6,4.5 +24215,0,0.260078,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,5.549,5.81,0,6.241883,5,5 +24508,0,0.31447,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,5.059,5.374,0,7.547279,5,5 +25890,0,0.423216,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.157177,0.15,4 +25891,0,0.247601,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.942428,0.15,4 +5025,0,0.147135,2,2,1,2,5,,3,4,Masonic,Blvd,802104,4.422,4.569,0,3.531229,8,4.5 +25887,0,0.265688,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.376503,0.15,4 +25889,0,0.162859,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.908614,0.15,4 +24343,0,0.175743,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,5.374,5.549,0,4.217841,5,5 +24112,0,0.288786,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,5.81,6.098,0,6.930852,5,5 +3886,-1,0.841387,0,3,0,1,1,,4,4,W I 94,,798502,9.171,10.012,0,,0.8,7.5 +3919,-1,0.339211,0,3,0,1,1,,3,4,W I 94,,798502,8.488,8.827,0,,0.58,7 +3976,1,0.252121,1,0,0,1,1,ROF,3,4,E I 94/Harper,RAMP,800510,0,0.252,0,,2.24,5 +4159,0,0.26393,1,1,0,2,4,,3,4,Rathbone,St,800901,0,0.264,0,6.33433,6,4.5 +4277,1,0.370566,1,0,0,1,1,RON,3,4,Harper/E I 94,RAMP,800509,0,0.371,0,,1.09,4 +4303,1,0.662436,3,0,0,1,1,,4,4,E I 94,,798501,9.394,10.056,0,,0.8,7.5 +4313,1,0.229628,3,0,0,1,1,,3,4,E I 94,,798501,8.569,8.798,0,,0.58,7 +4355,0,0.489249,1,1,0,2,5,,4,4,Union Lake,Rd,801201,0.601,1.09,0,11.741974,5.8,4.5 +4357,0,0.527535,1,1,1,2,4,,3,4,Harper,Ave,798408,9.509,10.036,0,12.660836,6,4.5 +4385,0,0.146607,1,1,1,2,3,,4,4,Harper,Ave,798408,8.525,8.672,0,3.518565,3.7,5 +4388,0,0.153982,1,1,1,2,3,,4,4,Harper,Ave,798408,8.051,8.205,0,3.695569,3.7,5 +4391,0,0.067636,2,2,1,2,3,,4,4,Harper,Ave,798408,7.737,7.805,0,1.623256,3.7,5 +4467,1,0.589354,2,0,0,2,3,DIV,3,4,Metropolitan,Pkwy,801202,2.759,3.348,0,14.144497,5,5 +4470,0,0.39546,1,1,0,2,5,,3,4,Dickinson,St,800808,0,0.395,0,9.491052,8,4.5 +4566,1,0.22428,1,0,0,1,1,ROF,3,4,W I 94/Harper,RAMP,800605,0,0.224,0,,2.24,5 +5632,1,0.409117,2,0,0,2,3,DIV,3,4,Metropolitan,Pkwy,803608,11.098,11.507,0,9.818808,5,5 +5751,1,0.452996,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,8.682,9.135,0,10.871898,3.7,5 +5753,0,0.694861,1,1,0,2,4,,4,4,15 Mile,Rd,803605,10.449,11.143,0,16.67667,4.5,4.5 +6804,0,0.471635,2,2,0,2,4,,3,4,River,Rd,831807,0.116,0.587,0,11.319244,6,4.5 +6845,0,0.480081,1,1,0,2,4,,3,4,Crocker,Blvd,819209,3.402,3.882,0,11.521947,6,4.5 +20160,0,0.319373,1,1,1,2,5,,3,4,Beverly,St,4208277,0.51,0.829,0,7.664942,8,4.5 +20219,-1,0.455739,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,8.619,9.075,0,10.937725,3.7,5 +24114,0,0.286545,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,8.77,9.056,0,6.877082,4.5,4.5 +25108,0,0.4249,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.197609,0.15,4 +25801,0,0.591492,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.195796,0.15,4 +25897,0,0.219279,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.262686,0.15,4 +25932,0,0.305534,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.332825,0.15,4 +29051,0,0.234631,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.631154,0.15,4 +29052,0,0.449592,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.790196,0.15,4 +29053,0,0.110918,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.662038,0.15,4 +29054,0,0.202587,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.862094,0.15,4 +29060,0,0.465338,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.168105,0.15,4 +29868,0,0.460497,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.051925,0.15,4 +29930,0,0.72739,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.457368,0.15,4 +30227,0,0.699086,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,16.778063,0.15,4 +3979,0,0.72086,1,1,0,2,5,,4,4,Quinn,Rd,4211435,0.71,1.431,0,17.300644,5.8,4.5 +4123,0,0.339052,2,2,1,2,3,,3,4,Harper,Ave,798408,7.235,7.574,0,8.13726,5,5 +4670,0,0.259706,1,1,0,2,3,,3,4,14 Mile,Rd,798407,0.136,0.395,0,6.23295,5,5 +5754,0,0.374707,1,1,0,2,4,,4,4,15 Mile,Rd,803605,10.074,10.449,0,8.992977,4.5,4.5 +20118,0,0.715667,1,1,0,2,5,,4,4,Glenwood,St,4208296,0.267,0.982,0,17.176007,5.8,4.5 +25011,0,0.466441,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.194581,0.15,4 +25122,0,0.660697,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.856738,0.15,4 +25210,0,0.71433,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,17.14392,0.15,4 +29045,0,0.390146,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.363499,0.15,4 +29061,0,0.623724,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.969368,0.15,4 +29929,0,0.554531,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.308738,0.15,4 +25100,0,0.04635,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.1124,0.15,4 +5755,0,0.42308,1,1,0,2,4,,4,4,15 Mile,Rd,803605,9.651,10.074,0,10.153918,4.5,4.5 +5759,1,0.22362,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,8.459,8.682,0,5.366891,3.7,5 +5866,1,0.420502,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,8.038,8.459,0,10.09205,3.7,5 +20119,0,0.266886,1,1,0,2,5,,4,4,Glenwood,St,4208296,0,0.267,0,6.405253,5.8,4.5 +20220,-1,0.61798,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,8.002,8.619,0,14.831532,3.7,5 +25794,0,0.200163,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.803921,0.15,4 +5757,0,0.023179,2,2,1,2,4,,4,4,15 Mile,Rd,803605,9.628,9.651,0,0.556285,4.5,4.5 +25107,0,0.16985,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.076397,0.15,4 +4399,0,0.607989,2,2,1,2,3,,3,4,Harper,Ave,798408,6.628,7.235,0,14.591738,5,5 +20161,0,0.510172,1,1,1,2,5,,3,4,Beverly,St,4208277,0,0.51,0,12.244131,8,4.5 +29720,0,0.528033,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,12.6728,0.15,4 +4363,0,0.1355,1,1,0,2,3,,3,4,14 Mile,Rd,798407,0,0.136,0,3.251997,5,5 +4401,0,0.265441,2,2,1,2,3,,3,4,Harper,Ave,798408,6.355,6.62,0,6.370593,5,5 +4125,0,0.007501,2,2,1,2,3,,3,4,Harper,Ave,798408,6.62,6.628,0,0.180013,5,5 +28185,0,0.127608,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.062601,0.15,4 +25128,0,0.187869,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.508865,0.15,4 +29048,0,0.190334,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.56801,0.15,4 +29062,0,0.410993,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.86384,0.15,4 +3964,1,0.487304,1,0,0,1,1,RON,4,4,Harper/W I 94,RAMP,800604,0,0.487,0,,1.09,4 +4028,1,0.341326,3,0,0,1,1,,3,4,E I 94,,798501,8.227,8.569,0,,0.58,7 +4267,1,0.359124,1,0,0,1,1,ROF,4,4,W I 94/Harper,RAMP,800603,0,0.359,0,,2.24,5 +4393,0,0.109987,2,2,1,2,3,,3,4,Harper,Ave,798408,7.613,7.723,0,2.639695,5,5 +4588,1,0.231181,1,0,0,1,1,ROF,3,4,E I 94/Harper,RAMP,800508,0,0.231,0,,2.24,5 +4949,-1,0.269651,0,3,0,1,1,,3,4,W I 94,,798502,8.218,8.488,0,,0.58,7 +4397,0,0.026733,2,2,1,2,3,,3,4,Harper,Ave,798408,7.574,7.601,0,0.6416,5,5 +4121,0,0.011892,2,2,1,2,3,,3,4,Harper,Ave,798408,7.601,7.613,0,0.285415,5,5 +4118,0,0.014102,2,2,1,2,3,,3,4,Harper,Ave,798408,7.723,7.737,0,0.338438,5,5 +4111,0,0.320051,1,1,1,2,3,,4,4,Harper,Ave,798408,8.205,8.525,0,7.681228,3.7,5 +20117,0,0.348157,1,1,0,2,5,,4,4,Glenwood,St,4208296,0.982,1.33,0,8.355777,5.8,4.5 +4188,1,0.865618,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,3.348,4.214,0,20.774822,3.7,5 +4213,0,0.323878,1,1,0,2,4,,4,4,Wellington,Cres,800709,0.507,0.831,0,7.773073,4.5,4.5 +5660,1,0.903984,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,10.194,11.098,0,21.695612,3.7,5 +5902,1,0.150258,3,0,0,2,3,DIV,4,4,Broadway,St,833209,0.468,0.619,0,3.606201,3.7,5 +6160,0,0.272205,1,1,0,2,4,,3,4,Harrington,St,825404,1.302,1.574,0,6.532913,6,4.5 +6288,0,0.492211,1,1,0,2,5,,3,4,Church,St,825406,0.509,1.001,0,11.813061,8,4.5 +6299,1,0.2586,3,0,0,2,3,DIV,4,4,Broadway,St,833209,0,0.259,0,6.206397,3.7,5 +6788,0,0.48057,1,1,1,2,3,,3,4,Cass,Ave,819209,2.385,2.865,0,11.533683,5,5 +20213,-1,0.17171,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.023,10.195,0,4.121032,5,5 +20214,-1,0.247497,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,9.776,10.023,0,5.939933,5,5 +25534,0,0.546661,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.119876,0.15,4 +27402,0,0.420242,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.085813,0.15,4 +29058,0,0.633916,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.21398,0.15,4 +29065,0,0.407717,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.785202,0.15,4 +29066,0,0.529941,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.718585,0.15,4 +29068,0,0.434242,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.421806,0.15,4 +29867,0,0.681969,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.367267,0.15,4 +5640,1,0.298928,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,9.309,9.608,0,7.174283,3.7,5 +20055,0,0.479004,1,1,0,2,5,,4,4,Nunneley,Rd,4208681,0.482,0.961,0,11.496099,5.8,4.5 +20215,-1,0.49465,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,9.282,9.776,0,11.871597,3.7,5 +29494,0,0.523477,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.563446,0.15,4 +30226,0,0.502322,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.055721,0.15,4 +3897,1,0.130525,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,4.214,4.344,0,3.1326,3.7,5 +5652,1,0.124463,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,9.185,9.309,0,2.987112,3.7,5 +5662,1,0.110465,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,10.084,10.194,0,2.651171,3.7,5 +5724,1,0.049622,4,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,9.135,9.185,0,1.19092,3.7,5 +20216,-1,0.133338,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,9.148,9.282,0,3.200119,3.7,5 +20217,-1,0.049205,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,9.099,9.148,0,1.180911,3.7,5 +5664,1,0.022653,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,10.061,10.084,0,0.543673,3.7,5 +20218,-1,0.024099,0,4,0,2,3,DIV,4,4,Gratiot,Ave,4208203,9.075,9.099,0,0.578384,3.7,5 +4878,1,0.023115,3,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,4.344,4.367,0,0.554767,3.7,5 +5620,1,0.013586,3,0,0,2,3,DIV,4,4,Gratiot,Ave,804806,9.608,9.622,0,0.326068,3.7,5 +6575,0,0.509345,1,1,0,2,4,,3,4,Harrington,St,825404,0.792,1.302,0,12.224284,6,4.5 +6720,0,0.288584,1,1,0,2,5,,3,4,Church,St,825406,0.221,0.509,0,6.926017,8,4.5 +30225,0,0.405406,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.729735,0.15,4 +5407,0,0.220639,1,1,0,2,5,,3,4,Church,St,825406,0,0.221,0,5.295346,8,4.5 +29067,0,0.144869,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.476845,0.15,4 +29064,0,0.258884,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.213213,0.15,4 +28634,0,0.09435,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.264388,0.15,4 +28633,0,0.110777,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,2.658636,0.15,4 +4372,0,0.258776,2,2,1,2,4,,3,4,Harper,Ave,798408,8.936,9.195,0,6.210614,6,4.5 +26591,0,0.527591,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.662184,0.15,4 +29056,0,0.280359,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.728608,0.15,4 +29057,0,0.300177,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.20425,0.15,4 +5803,0,0.076006,1,1,0,2,4,,4,4,Harrington,St,825404,1.574,1.65,0,1.824147,4.5,4.5 +6173,1,0.209913,3,0,0,2,3,DIV,4,4,Broadway,St,833209,0.259,0.468,0,5.037903,3.7,5 +4091,0,0.109502,2,2,1,2,4,,3,4,Harper,Ave,798408,8.826,8.936,0,2.628058,6,4.5 +4108,0,0.139156,1,1,1,2,3,,4,4,Harper,Ave,798408,8.672,8.811,0,3.339752,3.7,5 +4373,0,0.015685,2,2,1,2,3,,3,4,Harper,Ave,798408,8.811,8.826,0,0.376434,5,5 +4090,0,0.313982,1,1,1,2,4,,3,4,Harper,Ave,798408,9.195,9.509,0,7.535563,6,4.5 +4509,0,0.507231,1,1,0,2,4,,4,4,Wellington,Cres,800709,0,0.507,0,12.173553,4.5,4.5 +5982,0,0.054535,1,1,1,2,5,,3,4,Robertson,St,837804,0.575,0.629,0,1.308851,8,4.5 +6364,0,0.132346,2,2,0,2,3,,3,4,Cass,Ave,819209,2.865,2.998,0,3.176302,5,5 +6589,1,0.244262,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.325,1.569,0,5.862276,5,5 +6890,1,0.253999,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.071,1.325,0,6.095971,5,5 +20052,0,0.145153,2,2,0,2,5,,3,4,Main,St,4208720,0.348,0.493,0,3.48368,8,4.5 +20054,0,0.255559,2,2,0,2,5,,3,4,Main,St,4208720,0,0.256,0,6.133422,8,4.5 +20210,-1,0.071229,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.56,10.631,0,1.70949,5,5 +29050,0,0.244061,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.857474,0.15,4 +29063,0,0.363024,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.712585,0.15,4 +30222,0,0.408331,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.799937,0.15,4 +5417,1,0.317134,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,0.754,1.071,0,7.611226,5,5 +5688,1,0.135221,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,0.619,0.754,0,3.2453,5,5 +20211,-1,0.257805,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.302,10.56,0,6.187313,5,5 +3916,0,0.076347,1,1,0,2,4,,3,4,Wellington,Cres,800709,0.831,0.907,0,1.832324,6,4.5 +20212,-1,0.107033,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.195,10.302,0,2.568798,5,5 +5904,0,0.063732,1,1,1,2,5,,3,4,Robertson,St,837804,0.629,0.693,0,1.529569,8,4.5 +20510,1,0.02987,2,0,0,2,5,,3,4,Main,St,4207941,0,0.03,0,0.716887,8,4.5 +19639,-1,0.03795,0,1,0,2,5,,3,4,Gratiot/Main Cutoff,,1841806,0,0.038,0,0.910797,8,4.5 +20053,0,0.092421,2,2,0,2,5,,3,4,Main,St,4208720,0.256,0.348,0,2.218109,8,4.5 +20208,-1,0.230124,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.887,11.117,0,5.522982,5,5 +5894,0,0.060393,1,1,0,2,5,,3,4,Church,St,825406,1.001,1.062,0,1.449441,8,4.5 +20209,-1,0.255689,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,10.631,10.887,0,6.136529,5,5 +5494,0,0.064737,1,1,0,2,5,,3,4,Church,St,825406,1.062,1.126,0,1.553676,8,4.5 +3898,0,0.332743,1,1,0,2,4,,3,4,Dickinson,St,800808,0.426,0.758,0,7.98584,6,4.5 +5579,1,0.071534,2,0,0,2,4,,3,4,River,Rd,831807,0,0.072,0,1.716811,6,4.5 +6722,0,0.235876,2,2,0,2,4,,3,4,Crocker,Blvd,819209,3.04,3.276,0,5.661023,6,4.5 +6386,1,0.155138,3,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.569,1.724,0,3.723316,5,5 +5408,0,0.042163,2,2,0,2,3,,3,4,Cass,Ave,819209,2.998,3.04,0,1.011918,5,5 +6074,1,0.033353,4,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.724,1.758,0,0.800468,5,5 +6289,0,0.126071,1,1,0,2,4,,3,4,Crocker,Blvd,819209,3.276,3.402,0,3.025705,6,4.5 +4190,0,0.030111,1,1,0,2,4,,3,4,Dickinson,St,800808,0.395,0.426,0,0.722672,6,4.5 +5413,0,0.044328,2,2,0,2,4,,3,4,River,Rd,831807,0.072,0.116,0,1.063861,6,4.5 +24055,0,0.632035,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,7.374,8.006,0,15.168843,5,5 +24511,0,0.31648,1,1,0,2,4,,3,4,Jefferson,Ave,4718263,8.006,8.323,0,7.595513,6,4.5 +25896,0,0.46656,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.197432,0.15,4 +29069,0,0.297312,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.135492,0.15,4 +29071,0,0.426064,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.225531,0.15,4 +24266,0,0.631805,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,6.386,7.017,0,15.163327,5,5 +24164,0,0.357049,2,2,0,2,3,,3,4,Jefferson,Ave,4718263,7.017,7.374,0,8.569181,5,5 +3901,1,0.225026,1,0,0,1,1,RON,4,4,Shook/E I 94,RAMP,801108,0,0.225,0,,1.09,4 +4018,1,0.59549,3,0,0,1,1,,3,4,E I 94,,798501,8.798,9.394,0,,0.58,7 +4114,0,0.079597,1,1,1,2,3,,4,4,Harper,Ave,798408,7.972,8.051,0,1.910328,3.7,5 +4434,0,0.329503,1,1,0,2,5,,4,4,Union Lake,Rd,801201,0.186,0.515,0,7.908078,5.8,4.5 +4548,0,0.148296,2,2,0,2,3,,4,4,Shook,Rd,4211898,0.407,0.555,0,3.559098,3.7,5 +4572,1,0.15312,1,0,0,1,1,ROF,4,4,W I 94/Shook,RAMP,800602,0,0.153,0,,2.24,5 +4943,-1,0.344399,0,3,0,1,1,,3,4,W I 94,,798502,8.827,9.171,0,,0.58,7 +29072,0,0.326579,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.837891,0.15,4 +29931,0,0.449239,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.781724,0.15,4 +4261,0,0.20937,1,1,0,2,3,,4,4,Shook,Rd,4211898,0.086,0.295,0,5.024876,3.7,5 +40292,-1,0.01257,0,3,0,2,3,DIV,3,3,14 Mile,Rd,4407074,0.698,0.711,0,0.301677,5,5 +4390,0,0.146266,1,1,1,2,3,,4,4,Harper,Ave,798408,7.825,7.972,0,3.510379,3.7,5 +4116,0,0.020582,2,2,1,2,3,,4,4,Harper,Ave,798408,7.805,7.825,0,0.493964,3.7,5 +3962,0,0.070505,1,1,0,2,3,,4,4,Shook,Rd,4211898,0,0.071,0,1.692118,3.7,5 +4564,0,0.015265,1,1,0,2,3,,4,4,Shook,Rd,4211898,0.071,0.086,0,0.366351,3.7,5 +3956,0,0.111798,1,1,0,2,3,,4,4,Shook,Rd,4211898,0.295,0.407,0,2.683159,3.7,5 +4677,0,0.085341,1,1,0,2,5,,4,4,Union Lake,Rd,801201,0.515,0.601,0,2.048173,5.8,4.5 +29044,0,0.179908,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.317787,0.15,4 +4243,0,0.136645,2,2,0,2,3,,3,4,Shook,Rd,4211898,0.555,0.692,0,3.279483,5,5 +29070,0,0.37669,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.040559,0.15,4 +3938,0,0.171158,2,2,0,2,3,,3,4,Shook,Rd,4211898,0.692,0.863,0,4.107791,5,5 +24218,0,0.229895,1,1,0,2,4,,3,4,Jefferson,Ave,4718263,8.54,8.77,0,5.517487,6,4.5 +24353,0,0.217547,1,1,0,2,4,,3,4,Jefferson,Ave,4718263,8.323,8.54,0,5.221135,6,4.5 +3891,1,0.092858,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,2.333,2.426,0,2.228603,3.7,5 +3997,1,1.12509,3,0,0,1,1,,4,4,E I 94,,798501,10.51,11.635,0,,0.8,7.5 +5074,-1,1.11702,0,3,0,1,1,,4,4,W I 94,,798502,10.534,11.651,0,,0.8,7.5 +5131,0,0.131898,1,1,0,2,4,,4,4,River,Rd,831807,1.393,1.525,0,3.165548,4.5,4.5 +5570,1,0.239135,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,11.882,12.121,0,5.739237,3.7,5 +5767,0,0.350083,1,1,0,2,5,,4,4,Reimold,St,819809,0.281,0.631,0,8.40199,5.8,4.5 +6265,0,0.258829,1,1,0,2,4,,4,4,Crocker,Blvd,819209,4.884,5.143,0,6.211905,4.5,4.5 +6689,0,0.631152,1,1,0,2,4,,4,4,Crocker,Blvd,819209,4.253,4.884,0,15.147649,4.5,4.5 +6952,0,0.390472,1,1,0,2,5,,4,4,Lanse Creuse,St,5498373,0.531,0.921,0,9.371328,5.8,4.5 +29049,0,0.322668,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.744042,0.15,4 +29074,0,0.165531,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.972733,0.15,4 +3931,1,0.359726,1,0,0,1,1,RON,4,4,W Metropolitan/E I 94,RAMP,801203,0,0.36,0,,1.09,4 +4064,-1,0.233272,0,3,0,1,1,,4,4,W I 94,,798502,10.301,10.534,0,,0.8,7.5 +4300,1,0.342107,3,0,0,1,1,,4,4,E I 94,,798501,10.168,10.51,0,,0.8,7.5 +5094,1,0.33315,1,0,0,1,1,ROF,4,4,W I 94/Metropolitan,RAMP,801603,0,0.333,0,,2.24,5 +5612,1,0.185976,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,11.507,11.693,0,4.463425,3.7,5 +4003,1,0.111825,3,0,0,1,1,,4,4,E I 94,,798501,10.056,10.168,0,,0.8,7.5 +4748,1,0.217936,1,0,0,1,1,RON,4,4,E Metropolitan/E I 94,RAMP,801110,0,0.218,0,,1.09,4 +4907,-1,0.288822,0,3,0,1,1,,4,4,W I 94,,798502,10.012,10.301,0,,0.8,7.5 +4911,1,0.156649,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,2.426,2.583,0,3.759567,3.7,5 +5076,1,0.2308,1,0,0,1,1,ROF,4,4,E I 94/Metropolitan,RAMP,801109,0,0.231,0,,2.24,5 +5610,1,0.021381,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,11.693,11.714,0,0.513145,3.7,5 +20551,1,0.254014,1,0,0,1,1,RON,4,4,E Metropolitan/W I 94,RAMP,4205735,0,0.254,0,,1.09,4 +40672,1,0.130768,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,2.583,2.713,0,3.138424,3.7,5 +40671,1,0.1176,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,11.714,11.832,0,2.822398,3.7,5 +4557,1,0.045608,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,2.713,2.759,0,1.094582,3.7,5 +4700,1,0.217547,1,0,0,1,1,RON,4,4,W Metropolitan/W I 94,RAMP,801602,0,0.218,0,,1.09,4 +5600,1,0.050166,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,11.832,11.882,0,1.203986,3.7,5 +6125,0,0.280655,1,1,0,2,5,,4,4,Reimold,St,819809,0,0.281,0,6.735728,5.8,4.5 +29073,0,0.112712,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.705091,0.15,4 +4350,0,0.209448,1,1,1,2,5,,3,4,Avery,St,798408,10.236,10.446,0,5.026763,8,4.5 +4884,0,0.616105,1,1,0,2,4,,4,4,River,Rd,800901,0.269,0.885,0,14.786515,4.5,4.5 +6026,0,0.387858,1,1,0,2,5,,4,4,Lanse Creuse,St,5498373,0.921,1.309,0,9.308594,5.8,4.5 +6584,0,0.393087,2,2,0,2,4,,3,4,River,Rd,831807,0.587,0.98,0,9.434092,6,4.5 +6021,0,0.304159,1,1,0,2,4,,3,4,Crocker,Blvd,819209,3.949,4.253,0,7.299812,6,4.5 +4071,0,0.200299,1,1,1,2,5,,3,4,Avery,St,798408,10.036,10.236,0,4.807183,8,4.5 +6420,0,0.067422,1,1,0,2,4,,3,4,Crocker,Blvd,819209,3.882,3.949,0,1.618119,6,4.5 +29055,0,0.182618,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.382828,0.15,4 +3865,0,0.004804,1,1,0,2,4,,3,4,River,Rd,800901,0.264,0.269,0,0.115298,6,4.5 +3863,-1,0.219995,0,3,0,1,1,,4,4,W I 94,,798502,11.651,11.871,0,,0.8,7.5 +4296,1,0.188846,3,0,0,1,1,,4,4,E I 94,,798501,11.635,11.823,0,,0.8,7.5 +4439,1,0.176714,1,0,0,1,1,ROF,3,4,W I 94/River,RAMP,801605,0,0.177,0,,2.24,5 +4763,1,0.16608,1,0,0,1,1,RON,4,4,River/W I 94,RAMP,801604,0,0.166,0,,1.09,4 +4783,1,0.203582,1,0,0,1,1,RON,4,4,River/E I 94,RAMP,801208,0,0.204,0,,1.09,4 +5810,0,0.336966,1,1,0,2,4,,4,4,River,Rd,831807,1.049,1.385,0,8.087194,4.5,4.5 +4166,1,0.073555,1,0,0,1,1,ROF,3,4,W I 94/W River,RAMP,801605,0.177,0.25,0,,2.24,5 +6295,0,0.053152,2,1,0,2,4,,3,4,River,Rd,831807,0.98,1.034,0,1.275657,6,4.5 +20155,1,0.048358,1,0,0,1,1,ROF,3,4,W I 94/E River,RAMP,4208283,0,0.048,0,,2.24,5 +6069,0,0.015022,2,1,0,2,4,,3,4,River,Rd,831807,1.034,1.049,0,0.360525,6,4.5 +4953,1,0.162035,1,0,0,1,1,ROF,4,4,E I 94/River,RAMP,801207,0,0.162,0,,2.24,5 +5580,0,0.007809,1,1,0,2,4,,4,4,River,Rd,831807,1.385,1.393,0,0.187411,4.5,4.5 +4231,1,0.368222,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,1.965,2.333,0,8.837339,3.7,5 +5562,1,0.361427,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,12.121,12.482,0,8.674245,3.7,5 +5644,0,0.530803,1,1,0,2,5,,4,4,Lanse Creuse,St,5498373,0,0.531,0,12.739273,5.8,4.5 +6124,0,0.62922,1,1,0,2,4,,4,4,Crocker,Blvd,819209,5.177,5.806,0,15.101273,4.5,4.5 +25931,0,0.398071,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.553696,0.15,4 +6525,0,0.022455,1,1,0,2,4,,4,4,Crocker,Blvd,819209,5.154,5.177,0,0.538911,4.5,4.5 +5868,0,0.011189,1,1,0,2,4,,4,4,Crocker,Blvd,819209,5.143,5.154,0,0.268525,4.5,4.5 +6031,0,0.445739,1,1,0,2,5,,4,4,Lanse Creuse,St,815306,0,0.446,0,10.697747,5.8,4.5 +24354,0,0.241391,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,9.056,9.298,0,5.793395,4.5,4.5 +5677,1,0.971064,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,6.492,7.463,0,23.305525,3.7,5 +5844,0,0.578534,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,4.821,5.4,0,13.884813,4.5,4.5 +5929,0,0.387185,1,1,0,2,4,,4,4,21 Mile,Rd,817708,6.859,7.246,0,9.292449,4.5,4.5 +6029,0,0.406201,1,1,0,2,5,,4,4,Little,Rd,819504,0.809,1.215,0,9.748827,5.8,4.5 +6162,0,0.292793,2,2,1,2,3,,4,4,Cass,Ave,819209,1.588,1.881,0,7.027024,3.7,5 +6247,0,1.020088,1,1,0,2,3,,4,4,23 Mile,Rd,807106,9.132,10.152,0,24.482111,3.7,5 +6424,-1,0.456937,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,9.534,9.991,0,10.966482,3.7,5 +6586,0,0.151081,2,2,1,2,3,,4,4,Gratiot,Ave,832010,4.559,4.709,0,3.625944,3.7,5 +6611,0,1.036639,1,1,0,2,4,,5,4,26 Mile,Rd,816702,8.773,9.809,0,24.879344,3,4 +6693,0,0.49882,1,1,0,2,5,,4,4,Fairchild,Rd,817902,2.073,2.572,0,11.971669,5.8,4.5 +6764,0,0.500722,1,1,0,2,5,,4,4,22 Mile,Rd,807104,8.577,9.078,0,12.017331,5.8,4.5 +19760,0,0.954387,1,1,0,2,4,,4,4,North,Ave,1817105,1.551,2.505,0,22.905291,4.5,4.5 +20059,0,1.018243,1,1,0,2,5,,5,4,25 Mile,Rd,4211019,8.955,9.973,0,24.437837,3.7,5 +20851,0,0.539789,1,1,0,2,4,,4,4,Card,Rd,4200010,2.03,2.57,0,12.954929,4.5,4.5 +24931,0,0.600956,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.422956,0.15,4 +28130,0,0.501754,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.042087,0.15,4 +29077,0,1.052082,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,25.249964,0.15,4 +29078,0,0.61994,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.878552,0.15,4 +29082,0,1.437341,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,34.496189,0.15,4 +29085,0,1.262456,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,30.298954,0.15,4 +29088,0,1.065068,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,25.561629,0.15,4 +29089,0,0.542524,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.020583,0.15,4 +29092,0,0.516458,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.394987,0.15,4 +29227,0,0.508367,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.200815,0.15,4 +3906,0,0.345455,1,1,0,2,4,,4,4,Garfield,Rd,798703,6.577,6.922,0,8.290914,4.5,4.5 +37540,1,0.029028,3,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.559,1.588,0,0.696667,3.7,5 +5466,0,0.441466,1,1,0,2,5,,4,4,22 Mile,Rd,807104,7.053,7.495,0,10.595193,5.8,4.5 +5537,0,0.514784,1,1,0,2,4,,4,4,21 Mile,Rd,817708,5.221,5.735,0,12.354808,4.5,4.5 +5925,0,0.438198,2,2,1,2,4,,4,4,Romeo Plank,Rd,819207,2.835,3.273,0,10.516745,4.5,4.5 +6067,1,0.160508,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,4.808,4.969,0,3.852204,3.7,5 +6111,0,0.460155,1,1,0,2,5,,4,4,Greenfield,Rd,819208,0.43,0.89,0,11.043709,5.8,4.5 +6313,0,0.041373,2,2,1,2,3,,4,4,Romeo Plank,Rd,819207,2.794,2.835,0,0.99294,3.7,5 +6438,-1,0.369627,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,7.956,8.326,0,8.871058,3.7,5 +40493,0,0.423344,1,1,0,2,4,,4,4,Canal,Rd,820607,5.34,5.763,0,10.160257,4.5,4.5 +20807,0,0.50391,1,1,0,2,5,,4,4,Tilch,Rd,4200028,0,0.504,0,12.093839,5.8,4.5 +20906,0,0.559507,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,0,0.559,0,13.428178,5.8,4.5 +25389,0,0.60765,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.583597,0.15,4 +25393,0,0.501441,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.034577,0.15,4 +25394,0,0.508006,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.192151,0.15,4 +25396,0,0.488193,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.716624,0.15,4 +25397,0,0.517865,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.428749,0.15,4 +25403,0,0.63657,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.277682,0.15,4 +25408,0,0.505165,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.123948,0.15,4 +25411,0,0.464309,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.143428,0.15,4 +25482,0,0.522456,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.538932,0.15,4 +29094,0,0.497048,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.929163,0.15,4 +29144,0,0.531727,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.761444,0.15,4 +4219,0,0.22514,2,2,1,2,4,,4,4,19 Mile,Rd,802506,1.527,1.752,0,5.403369,4.5,4.5 +5058,0,0.644799,2,2,1,2,3,,4,4,Garfield,Rd,798703,5.524,6.168,0,15.475183,3.7,5 +6214,0,0.299439,1,1,0,2,4,,4,4,Canal,Rd,820607,4.205,4.504,0,7.186537,4.5,4.5 +6471,-1,0.184748,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,7.056,7.241,0,4.433959,3.7,5 +6918,1,0.19531,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,4.07,4.265,0,4.687433,3.7,5 +25009,0,0.505303,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.127278,0.15,4 +25402,0,0.555166,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.323973,0.15,4 +25406,0,0.560462,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.451079,0.15,4 +28679,0,0.506539,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.156936,0.15,4 +4291,0,0.176434,2,2,1,2,3,,4,4,Garfield,Rd,798703,4.994,5.171,0,4.234413,3.7,5 +4514,0,0.463517,2,2,1,2,4,,4,4,19 Mile,Rd,802506,1.064,1.527,0,11.12441,4.5,4.5 +6755,0,0.469347,1,1,0,2,4,,4,4,Canal,Rd,820607,3.735,4.205,0,11.264339,4.5,4.5 +28158,0,0.44133,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.591924,0.15,4 +28684,0,0.332844,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.988255,0.15,4 +28686,0,0.574878,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.797069,0.15,4 +28680,0,0.196642,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.719399,0.15,4 +5449,0,0.063812,1,1,0,2,4,,4,4,Canal,Rd,820607,3.671,3.735,0,1.531485,4.5,4.5 +28682,0,0.178639,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.287333,0.15,4 +4275,0,0.036216,2,2,1,2,4,,4,4,19 Mile,Rd,802506,1.027,1.064,0,0.869174,4.5,4.5 +3985,0,0.313881,2,2,1,2,3,,4,4,Garfield,Rd,798703,4.681,4.994,0,7.533144,3.7,5 +3983,0,0.353126,2,2,1,2,3,,4,4,Garfield,Rd,798703,5.171,5.524,0,8.475032,3.7,5 +5614,1,0.496854,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,3.573,4.07,0,11.924497,3.7,5 +6084,-1,0.486129,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,6.57,7.056,0,11.667102,3.7,5 +24997,0,0.525222,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.605325,0.15,4 +25481,0,0.550638,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.215314,0.15,4 +28678,0,0.506928,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.166267,0.15,4 +6495,-1,0.129463,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,6.44,6.57,0,3.107116,3.7,5 +4733,0,0.365235,2,2,1,2,3,,4,4,Garfield,Rd,798703,6.168,6.534,0,8.76564,3.7,5 +4203,0,0.043165,2,2,0,2,3,,4,4,Garfield,Rd,798703,6.534,6.577,0,1.035968,3.7,5 +5833,0,0.307771,1,1,0,2,4,,4,4,Canal,Rd,820607,4.504,4.812,0,7.386499,4.5,4.5 +6515,0,0.430386,1,1,0,2,5,,4,4,Greenfield,Rd,819208,0,0.43,0,10.329253,5.8,4.5 +25405,0,0.426192,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.228598,0.15,4 +25407,0,0.402449,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.658781,0.15,4 +3918,0,0.122871,2,2,1,2,4,,4,4,19 Mile,Rd,802506,1.752,1.875,0,2.948893,4.5,4.5 +5444,0,0.06699,1,1,0,2,4,,4,4,Canal,Rd,820607,4.812,4.879,0,1.60777,4.5,4.5 +25404,0,0.041083,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,0.985989,0.15,4 +6456,-1,0.291127,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,7.508,7.799,0,6.987059,3.7,5 +6475,1,0.282727,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,4.526,4.808,0,6.785439,3.7,5 +25401,0,0.517822,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.427724,0.15,4 +30219,0,0.55901,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.416239,0.15,4 +6063,-1,0.267345,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,7.241,7.508,0,6.416274,3.7,5 +6884,1,0.260761,4,0,0,2,3,DIV,4,4,Hall,Rd,820202,4.265,4.526,0,6.258263,3.7,5 +6048,-1,0.157377,0,4,0,2,3,DIV,4,4,Hall,Rd,807801,7.799,7.956,0,3.777052,3.7,5 +5948,0,0.325258,1,1,0,2,4,,4,4,21 Mile,Rd,817708,4.207,4.532,0,7.806194,4.5,4.5 +6647,0,0.839113,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,3.807,4.646,0,20.138709,4.5,4.5 +6773,0,1.012314,1,1,0,2,4,,4,4,22 Mile,Rd,807104,6.041,7.053,0,24.295547,4.5,4.5 +25409,0,0.507876,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.189032,0.15,4 +25410,0,0.50938,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.22512,0.15,4 +28657,0,0.510973,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.263344,0.15,4 +29275,0,0.323575,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.765804,0.15,4 +4468,0,0.328509,1,1,0,2,4,,4,4,Garfield,Rd,798703,7.236,7.564,0,7.884226,4.5,4.5 +6342,0,0.505842,1,1,0,2,4,,4,4,21 Mile,Rd,817708,3.701,4.207,0,12.140207,4.5,4.5 +20806,0,0.461102,1,1,0,2,5,,4,4,Tilch,Rd,4200028,0.504,0.965,0,11.066445,5.8,4.5 +28677,0,0.457523,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.980555,0.15,4 +28676,0,0.087504,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.100084,0.15,4 +4799,0,0.313946,1,1,0,2,4,,4,4,Garfield,Rd,798703,6.922,7.236,0,7.534704,4.5,4.5 +5467,0,0.532765,1,1,0,2,4,,4,4,22 Mile,Rd,807104,5.509,6.041,0,12.786359,4.5,4.5 +28656,0,0.514333,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.343997,0.15,4 +5517,0,0.533707,2,2,1,2,4,,4,4,Romeo Plank,Rd,819207,3.273,3.807,0,12.808971,4.5,4.5 +6337,0,0.285958,1,1,0,2,4,,4,4,21 Mile,Rd,817708,4.661,4.947,0,6.862981,4.5,4.5 +25395,0,0.482653,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.583669,0.15,4 +25398,0,0.514682,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.352361,0.15,4 +5540,0,0.129175,1,1,0,2,4,,4,4,21 Mile,Rd,817708,4.532,4.661,0,3.100202,4.5,4.5 +25399,0,0.236317,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.671598,0.15,4 +5941,0,0.273478,1,1,0,2,4,,4,4,21 Mile,Rd,817708,4.947,5.221,0,6.563477,4.5,4.5 +6227,0,0.175458,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,4.646,4.821,0,4.210988,4.5,4.5 +29091,0,0.604419,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.50605,0.15,4 +37539,0,0.379826,2,2,1,2,3,,4,4,Cass,Ave,819209,0.026,0.406,0,9.115813,3.7,5 +6430,-1,0.326076,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,8.646,8.972,0,7.825831,3.7,5 +6467,1,0.359783,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,5.576,5.936,0,8.634801,3.7,5 +6664,0,0.463009,2,2,1,2,3,,4,4,Cass,Ave,819209,0.406,0.869,0,11.112205,3.7,5 +6769,0,0.651328,1,1,0,2,5,,4,4,Heydenreich,Rd,819502,0.329,0.98,0,15.631881,5.8,4.5 +25386,0,0.759431,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.226337,0.15,4 +25412,0,0.392221,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.413315,0.15,4 +28149,0,0.66205,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.88919,0.15,4 +37536,0,0.641688,2,2,1,2,4,,4,4,19 Mile,Rd,802506,1.875,2.516,0,15.400505,4.5,4.5 +6217,0,0.475824,1,1,1,2,5,,4,4,Romeo Plank,Rd,819207,0.996,1.472,0,11.419775,5.8,4.5 +28131,0,0.446547,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.717121,0.15,4 +28132,0,0.416607,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.998565,0.15,4 +40492,0,0.399259,1,1,0,2,4,,4,4,Canal,Rd,820607,4.879,5.278,0,9.58222,4.5,4.5 +37541,-1,0.033059,0,1,0,2,3,,4,4,Romeo Plank,Rd,4212032,0,0.033,0,0.79342,3.7,5 +37538,0,0.086594,1,1,1,2,5,,4,4,Romeo Plank,Rd,819207,1.472,1.559,0,2.078256,5.8,4.5 +6034,-1,0.320162,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,8.326,8.646,0,7.68388,3.7,5 +6476,0,0.552422,2,2,1,2,3,,4,4,Romeo Plank,Rd,819207,2.242,2.794,0,13.258131,3.7,5 +6874,1,0.234138,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,5.342,5.576,0,5.619314,3.7,5 +25005,0,0.487544,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.701056,0.15,4 +25006,0,0.71477,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.15449,0.15,4 +25400,0,0.672234,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.133627,0.15,4 +6885,0,0.327555,2,2,1,2,3,,4,4,Romeo Plank,Rd,819207,1.914,2.242,0,7.861324,3.7,5 +5684,1,0.373317,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,4.969,5.342,0,8.959599,3.7,5 +5464,0,0.328962,1,1,0,2,5,,4,4,Heydenreich,Rd,819502,0,0.329,0,7.895079,5.8,4.5 +5855,0,0.396401,2,2,1,2,3,,4,4,Cass,Ave,819209,1.123,1.52,0,9.513619,3.7,5 +6432,0,0.809421,1,1,0,2,5,,4,4,Little,Rd,819504,0,0.809,0,19.426094,5.8,4.5 +28134,0,0.513958,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.334997,0.15,4 +6243,0,0.25436,2,2,1,2,3,,4,4,Cass,Ave,819209,0.869,1.123,0,6.104645,3.7,5 +6577,0,0.068746,2,2,1,2,3,,4,4,Cass,Ave,819209,1.52,1.588,0,1.649916,3.7,5 +30220,0,0.21965,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.271604,0.15,4 +4215,0,0.625231,1,1,0,2,5,,4,4,Heydenreich,Rd,802507,0,0.625,0,15.005538,5.8,4.5 +6028,-1,0.561983,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,8.972,9.534,0,13.48758,3.7,5 +6059,1,0.556161,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,5.936,6.492,0,13.347872,3.7,5 +29099,0,0.63249,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.179749,0.15,4 +6385,0,0.066532,1,1,0,2,5,,4,4,Heydenreich,Rd,832703,0.295,0.361,0,1.596772,5.8,4.5 +25385,0,0.289443,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.94664,0.15,4 +26742,0,0.320259,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.686218,0.15,4 +5931,0,0.354674,1,1,0,2,4,,4,4,21 Mile,Rd,817708,5.878,6.232,0,8.512188,4.5,4.5 +6767,0,0.233521,1,1,0,2,5,,4,4,22 Mile,Rd,807104,7.832,8.065,0,5.604493,5.8,4.5 +20902,0,0.411427,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,0.975,1.387,0,9.874248,5.8,4.5 +25387,0,0.509204,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.220894,0.15,4 +25390,0,0.530305,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.727318,0.15,4 +25391,0,0.513061,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.313472,0.15,4 +29282,0,0.507321,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.175713,0.15,4 +25392,0,0.509274,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.222585,0.15,4 +6321,0,0.142117,1,1,0,2,4,,4,4,21 Mile,Rd,817708,5.735,5.878,0,3.410806,4.5,4.5 +6772,0,0.336936,1,1,0,2,5,,4,4,22 Mile,Rd,807104,7.495,7.832,0,8.086462,5.8,4.5 +25388,0,0.511824,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.283769,0.15,4 +5525,0,0.536448,1,1,0,2,4,,4,4,21 Mile,Rd,817708,6.232,6.768,0,12.874761,4.5,4.5 +20904,0,0.191657,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,0.559,0.751,0,4.599758,5.8,4.5 +25413,0,0.586218,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.069238,0.15,4 +29093,0,0.5319,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.765601,0.15,4 +20903,0,0.224403,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,0.751,0.975,0,5.38568,5.8,4.5 +6315,0,0.090543,1,1,0,2,4,,4,4,21 Mile,Rd,817708,6.768,6.859,0,2.17304,4.5,4.5 +6335,0,0.51245,1,1,0,2,5,,4,4,22 Mile,Rd,807104,8.065,8.577,0,12.298804,5.8,4.5 +20898,0,0.475538,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,1.515,1.99,0,11.412915,5.8,4.5 +29090,0,0.50695,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.166812,0.15,4 +29276,0,0.512343,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.29624,0.15,4 +20899,0,0.128173,1,1,0,2,5,,4,4,Heydenreich,Rd,4200009,1.387,1.515,0,3.076163,5.8,4.5 +5996,0,0.429169,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,7.486,7.915,0,10.300045,4.5,4.5 +6218,0,1.300214,1,1,0,2,4,,5,4,26 Mile,Rd,816702,7.455,8.755,0,31.205126,3,4 +6248,0,0.552776,1,1,0,2,3,,4,4,23 Mile,Rd,807106,7.987,8.539,0,13.266631,3.7,5 +20060,0,1.396231,1,1,0,2,5,,4,4,25 Mile,Rd,4211019,7.559,8.955,0,33.509537,5.8,4.5 +25930,0,1.563758,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,37.530181,0.15,4 +28120,0,0.50713,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.171131,0.15,4 +29086,0,1.091628,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,26.199071,0.15,4 +5441,0,0.565904,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,6.473,7.039,0,13.581701,4.5,4.5 +6399,0,0.447196,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,7.039,7.486,0,10.732693,4.5,4.5 +6670,0,0.736396,2,2,1,2,3,,4,4,23 Mile,Rd,807106,7.25,7.987,0,17.673516,3.7,5 +6916,0,0.343092,1,1,0,2,4,,4,4,24 Mile,Rd,815510,6.915,7.258,0,8.234197,4.5,4.5 +26941,0,0.756875,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.164991,0.15,4 +28123,0,0.873384,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,20.961219,0.15,4 +28124,0,0.545379,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.0891,0.15,4 +6253,0,0.41312,2,2,1,2,3,,4,4,23 Mile,Rd,807106,6.837,7.25,0,9.914886,3.7,5 +28126,0,0.503177,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.076242,0.15,4 +28128,0,0.524496,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.587914,0.15,4 +5609,0,0.275101,1,1,0,2,4,,4,4,24 Mile,Rd,815510,6.64,6.915,0,6.602436,4.5,4.5 +28121,0,0.60346,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.483052,0.15,4 +28122,0,0.503778,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.090673,0.15,4 +5825,0,0.599311,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,5.874,6.473,0,14.383474,4.5,4.5 +6198,0,0.474384,1,1,0,2,4,,4,4,Romeo Plank,Rd,819207,5.4,5.874,0,11.385221,4.5,4.5 +5787,0,0.372906,1,1,0,2,4,,4,4,Romeo Plank,Rd,816509,0.692,1.065,0,8.949741,4.5,4.5 +6633,0,0.72243,1,1,0,2,4,,4,4,26 Mile,Rd,816702,6.733,7.455,0,17.338314,4.5,4.5 +25414,0,0.884938,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,21.238522,0.15,4 +28184,0,0.532776,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.786633,0.15,4 +29146,0,0.417367,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.01681,0.15,4 +6717,0,0.69253,1,1,0,2,4,,4,4,Romeo Plank,Rd,816509,0,0.692,0,16.620714,4.5,4.5 +20063,0,0.288717,1,1,0,2,4,,4,4,25 Mile,Rd,4211019,6.643,6.931,0,6.929199,4.5,4.5 +28625,0,0.460038,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.040913,0.15,4 +5836,0,0.377005,1,1,0,2,4,,4,4,26 Mile,Rd,816702,6.356,6.733,0,9.048121,4.5,4.5 +25415,0,0.191524,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.596588,0.15,4 +6668,0,0.593079,1,1,0,2,3,,4,4,23 Mile,Rd,807106,8.539,9.132,0,14.233897,3.7,5 +29084,0,0.663866,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.932785,0.15,4 +29087,0,0.50293,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.070315,0.15,4 +29079,0,0.022211,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,0.533065,0.15,4 +29080,0,1.042975,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.03139,0.15,4 +5835,0,0.017987,1,1,0,2,4,,5,4,26 Mile,Rd,816702,8.755,8.773,0,0.431677,3,4 +3984,1,0.403768,3,0,0,1,1,,4,4,E I 94,,798501,14.388,14.792,0,,0.8,7.5 +4742,-1,0.372396,0,3,0,1,1,,4,4,W I 94,,798502,14.434,14.806,0,,0.8,7.5 +5475,0,0.430159,1,1,0,2,4,,4,4,Fairchild,Rd,817902,0.045,0.475,0,10.323828,4.5,4.5 +5482,0,0.609127,2,2,1,2,4,,4,4,21 Mile,Rd,817708,8.266,8.875,0,14.619038,4.5,4.5 +5581,1,0.274747,3,0,0,2,3,DIV,4,4,Gratiot,Ave,832010,0.638,0.912,0,6.593935,3.7,5 +6006,-1,0.309324,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,11.008,11.317,0,7.423775,3.7,5 +6383,0,0.60788,2,2,1,2,3,,4,4,Gratiot,Ave,832010,2.133,2.741,0,14.589118,3.7,5 +6451,1,0.326056,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,8.019,8.345,0,7.825346,3.7,5 +6730,0,0.27413,2,2,0,2,5,,3,4,Henry B Joy,Blvd,837908,0.448,0.722,0,6.57912,8,4.5 +19212,0,0.428854,2,2,1,2,4,,4,4,North,Ave,1817105,0.172,0.601,0,10.292489,4.5,4.5 +20166,-1,0.295883,0,3,0,2,3,DIV,4,4,Gratiot,Ave,4208203,12.18,12.476,0,7.101181,3.7,5 +20273,1,0.396935,1,0,0,1,1,RON,4,4,M 59/E I 94,RAMP,4210058,0.035,0.432,0,,1.09,4 +20319,1,0.279533,1,0,0,1,1,RON,4,4,W M 59/W I 94,RAMP,4208181,0,0.279,0,,1.09,4 +20411,1,0.486443,1,0,0,1,1,ROF,4,4,W I 94/M 59,RAMP,4210055,0,0.486,0,,2.24,5 +20698,1,0.288012,1,0,0,1,1,ROF,4,4,E I 94/W M 59,RAMP,4210057,0,0.288,0,,2.24,5 +20862,0,0.38837,1,1,0,2,4,,4,4,Card,Rd,4200010,0,0.388,0,9.320888,4.5,4.5 +24764,0,0.66591,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.981852,0.15,4 +24933,0,0.794208,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,19.060992,0.15,4 +25418,0,0.603672,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.488117,0.15,4 +25423,0,0.491232,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.789577,0.15,4 +25901,0,0.531423,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.754144,0.15,4 +27392,0,0.59529,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.286972,0.15,4 +27400,0,0.640235,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.365637,0.15,4 +28620,0,0.498674,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,11.968171,0.15,4 +28707,0,0.513232,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.317576,0.15,4 +29059,0,0.63019,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.124562,0.15,4 +29095,0,0.371751,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.922014,0.15,4 +5270,0,0.46147,2,2,1,2,3,,3,4,Groesbeck,Hwy,803009,12.644,13.106,0,11.075272,5,5 +5529,0,0.16876,1,1,1,2,5,,4,4,Elizabeth,Rd,821106,0.752,0.92,0,4.05023,5.8,4.5 +5556,1,0.091449,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,7.463,7.554,0,2.194787,3.7,5 +5973,0,0.224697,1,1,0,2,5,,3,4,Hubbard,Ave,825409,0.464,0.688,0,5.392729,8,4.5 +6024,-1,0.565324,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,9.991,10.556,0,13.567782,3.7,5 +6060,0,0.187732,1,1,0,2,5,,3,4,Elizabeth,Rd,821106,0.92,1.108,0,4.505563,8,4.5 +6553,0,0.509279,1,1,0,2,5,,4,4,Rose,St,819509,1.377,1.886,0,12.222693,5.8,4.5 +6945,0,0.380043,2,2,0,2,4,,3,4,North,Ave,819704,0.707,1.087,0,9.121028,6,4.5 +28683,0,0.546116,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,13.106791,0.15,4 +29097,0,0.418732,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.049576,0.15,4 +29100,0,0.374454,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.986886,0.15,4 +5271,0,0.192292,2,2,1,2,3,,3,4,Groesbeck,Hwy,803009,12.452,12.644,0,4.615016,5,5 +5272,0,0.380138,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,12.072,12.452,0,9.123319,3.7,5 +6139,0,0.335709,1,1,0,2,5,,3,4,Rose,St,819509,0.929,1.265,0,8.057015,8,4.5 +6376,0,0.293327,1,1,0,2,5,,3,4,Hubbard,Ave,825409,0.17,0.464,0,7.03984,8,4.5 +28629,0,0.295521,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,7.092497,0.15,4 +29102,0,0.1678,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.027204,0.15,4 +5273,0,0.357209,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,11.715,12.072,0,8.57301,3.7,5 +5804,0,0.214422,1,1,1,2,3,,3,4,Cass,Ave,819209,1.881,2.095,0,5.146122,5,5 +6540,0,0.372233,1,1,0,2,5,,3,4,Rose,St,819509,0.557,0.929,0,8.933589,8,4.5 +6797,0,0.170372,1,1,0,2,5,,4,4,Hubbard,Ave,825409,0,0.17,0,4.088936,5.8,4.5 +6975,0,0.074143,1,1,0,2,5,,4,4,Rose,St,819509,1.303,1.377,0,1.779421,5.8,4.5 +29101,0,0.07178,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.722731,0.15,4 +5781,0,0.038058,1,1,0,2,5,,3,4,Rose,St,819509,1.265,1.303,0,0.913384,8,4.5 +29103,0,0.006632,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,0.15918,0.15,4 +28681,0,0.267659,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.423822,0.15,4 +5933,0,0.383141,1,1,0,2,5,,4,4,Elizabeth,Rd,821106,0.369,0.752,0,9.195376,5.8,4.5 +6729,0,0.325238,1,1,0,2,5,,4,4,Dunham,Rd,832505,0,0.325,0,7.805722,5.8,4.5 +29098,0,0.055051,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,1.32123,0.15,4 +6588,0,0.354543,1,1,0,2,5,,4,4,Dunham,Rd,832505,0.325,0.68,0,8.509036,5.8,4.5 +6323,0,0.368536,1,1,0,2,5,,4,4,Elizabeth,Rd,821106,0,0.369,0,8.844874,5.8,4.5 +4312,0,0.12162,1,1,0,2,5,,3,4,Market,St,800808,0.95,1.071,0,2.918891,8,4.5 +5587,0,0.197638,1,1,0,2,5,,3,4,Clair,Ave,837908,0,0.198,0,4.743305,8,4.5 +5899,1,0.314933,3,0,0,2,3,DIV,3,4,Gratiot,Ave,832010,0.323,0.638,0,7.558396,5,5 +6129,0,0.288549,1,1,0,2,4,,3,4,North,Ave,819704,0.41,0.698,0,6.925181,6,4.5 +20167,-1,0.302177,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.878,12.18,0,7.252244,5,5 +20205,-1,0.112059,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.469,11.581,0,2.689408,5,5 +28623,0,0.288657,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.927764,0.15,4 +28631,0,0.177658,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.2638,0.15,4 +30221,0,0.621474,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,14.91537,0.15,4 +4017,0,0.079627,1,1,0,2,5,,3,4,Market,St,800808,1.071,1.151,0,1.911055,8,4.5 +5572,0,0.25798,1,1,0,2,5,,3,4,Hubbard,Ave,825409,0.688,0.946,0,6.191525,8,4.5 +6143,0,0.153732,1,1,1,2,4,,3,4,North,Ave,819704,0,0.154,0,3.689571,6,4.5 +28630,0,0.2255,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.411991,0.15,4 +28632,0,0.072532,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.740756,0.15,4 +20206,-1,0.12183,0,4,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.347,11.469,0,2.923913,5,5 +6530,0,0.137997,1,1,1,2,4,,3,4,North,Ave,819704,0.272,0.41,0,3.311932,6,4.5 +6948,0,0.082479,1,1,1,2,4,,3,4,North,Ave,819704,0.189,0.272,0,1.979496,6,4.5 +5034,0,0.047935,1,1,0,2,5,,3,4,Market,St,800808,1.151,1.199,0,1.15045,8,4.5 +5786,0,0.035509,1,1,1,2,4,,3,4,North,Ave,819704,0.154,0.189,0,0.852213,6,4.5 +6877,0,0.03333,1,1,0,2,5,,3,4,Hubbard,Ave,825409,0.946,0.98,0,0.79991,8,4.5 +5121,0,0.175295,1,1,0,2,5,,3,4,Elizabeth,St,821106,1.239,1.415,0,4.207085,8,4.5 +5678,0,0.131396,1,1,0,2,5,,3,4,Elizabeth,Rd,821106,1.108,1.239,0,3.153516,8,4.5 +5770,0,0.009114,1,1,0,2,4,,3,4,North,Ave,819704,0.698,0.707,0,0.218727,6,4.5 +5586,1,0.096414,4,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.822,1.918,0,2.313937,5,5 +5979,1,0.32285,3,0,0,2,3,DIV,3,4,Gratiot,Ave,832010,0,0.323,0,7.748411,5,5 +20203,-1,0.253832,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.624,11.878,0,6.091974,5,5 +20687,-1,0.060683,0,2,0,2,5,,3,4,Welts,St,4204859,0,0.061,0,1.456391,8,4.5 +20803,1,0.042657,2,0,0,2,5,,3,4,Main,St,4200029,0.096,0.139,0,1.023769,8,4.5 +28621,0,0.172693,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,4.144624,0.15,4 +28624,0,0.132277,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.174654,0.15,4 +4042,0,0.024611,2,2,0,2,5,,3,4,Market,St,800808,0.852,0.877,0,0.590658,8,4.5 +5418,1,0.078847,4,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.918,1.997,0,1.892322,5,5 +20050,0,0.132914,1,1,0,2,5,,3,4,Main,St,4208720,0.694,0.827,0,3.189925,8,4.5 +20804,0,0.080475,1,1,0,2,5,,3,4,Main,St,4200029,0.016,0.096,0,1.931391,8,4.5 +5052,0,0.072817,2,2,0,2,5,,3,4,Market,St,800808,0.877,0.95,0,1.747611,8,4.5 +6808,1,0.036753,2,0,0,2,3,DIV,3,4,Gratiot,Ave,833209,1.997,2.034,0,0.88208,5,5 +20049,1,0.025256,2,0,0,2,5,,3,4,Main,St,4208720,0.827,0.853,0,0.60615,8,4.5 +20805,1,0.015644,2,0,0,2,5,,3,4,Main,St,4200029,0,0.016,0,0.375462,8,4.5 +28628,0,0.221127,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.307046,0.15,4 +20204,-1,0.042983,0,3,0,2,3,DIV,3,4,Gratiot,Ave,4208203,11.581,11.624,0,1.03159,5,5 +5503,0,0.204928,1,1,0,2,5,,3,4,Clair,Ave,837908,0.198,0.403,0,4.918264,8,4.5 +5135,0,0.045072,2,2,0,2,5,,3,4,Clair,Ave,837908,0.403,0.448,0,1.08172,8,4.5 +5267,0,0.399707,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,13.699,14.098,0,9.592973,3.7,5 +6405,-1,0.452138,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,10.556,11.008,0,10.851309,3.7,5 +6867,1,0.465034,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,7.554,8.019,0,11.160816,3.7,5 +25424,0,0.465363,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.168717,0.15,4 +5268,0,0.338518,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,13.36,13.699,0,8.124438,3.7,5 +6527,0,0.433677,2,2,0,2,4,,4,4,North,Ave,819704,1.087,1.521,0,10.408239,4.5,4.5 +5269,0,0.254555,2,2,1,2,3,,4,4,Groesbeck,Hwy,803009,13.106,13.36,0,6.109313,3.7,5 +19214,0,0.130604,2,2,1,2,3,,4,4,Groesbeck,Hwy,1817105,0,0.131,0,3.134499,3.7,5 +19213,0,0.041559,2,2,1,2,3,,4,4,Groesbeck,Hwy,1817105,0.131,0.172,0,0.997424,3.7,5 +5523,0,0.566177,1,1,0,2,4,,4,4,21 Mile,Rd,817708,7.246,7.812,0,13.588251,4.5,4.5 +19210,0,0.407362,1,1,0,2,4,,4,4,North,Ave,1817105,1.144,1.551,0,9.776679,4.5,4.5 +20858,0,0.474176,1,1,0,2,4,,4,4,Card,Rd,4200010,1.018,1.492,0,11.380231,4.5,4.5 +24932,0,1.014827,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,24.355851,0.15,4 +28701,0,0.505109,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.122625,0.15,4 +20859,0,0.506644,1,1,0,2,4,,4,4,Card,Rd,4200010,0.512,1.018,0,12.159461,4.5,4.5 +20860,0,0.123493,1,1,0,2,4,,4,4,Card,Rd,4200010,0.388,0.512,0,2.963837,4.5,4.5 +20856,0,0.418734,1,1,0,2,4,,4,4,Card,Rd,4200010,1.492,1.911,0,10.049628,4.5,4.5 +29075,0,0.526525,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.636598,0.15,4 +20853,0,0.119453,1,1,0,2,4,,4,4,Card,Rd,4200010,1.911,2.03,0,2.866864,4.5,4.5 +5880,0,0.408991,1,1,0,2,4,,4,4,21 Mile,Rd,817708,7.858,8.266,0,9.815793,4.5,4.5 +19211,0,0.543009,2,2,1,2,4,,4,4,North,Ave,1817105,0.601,1.144,0,13.03222,4.5,4.5 +25422,0,0.512963,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.311106,0.15,4 +28148,0,0.534614,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.830729,0.15,4 +6278,0,0.045508,1,1,0,2,4,,4,4,21 Mile,Rd,817708,7.812,7.858,0,1.092181,4.5,4.5 +5414,0,0.090824,2,2,1,2,3,,4,4,Gratiot,Ave,832010,0.912,1.003,0,2.17977,3.7,5 +5983,0,0.408309,2,2,0,2,5,,4,4,Henry B Joy,Blvd,837908,1.042,1.45,0,9.799411,5.8,4.5 +6349,-1,0.114127,0,3,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,12.122,12.236,0,2.739057,3.7,5 +20558,1,0.141733,3,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205580,0.317,0.459,0,3.401596,3.7,5 +25925,0,0.189442,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.54662,0.15,4 +6483,0,0.225802,2,2,0,2,5,,3,4,Henry B Joy,Blvd,837908,0.722,0.947,0,5.419258,8,4.5 +25421,0,0.365418,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.770022,0.15,4 +29096,0,0.230744,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,5.537862,0.15,4 +28618,0,0.314846,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.556302,0.15,4 +6175,0,0.094216,2,2,0,2,5,,3,4,Henry B Joy,Blvd,837908,0.947,1.042,0,2.26118,8,4.5 +6003,-1,0.185471,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,11.611,11.797,0,4.451295,3.7,5 +6836,1,0.177152,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,8.616,8.793,0,4.251651,3.7,5 +6888,0,0.73369,2,2,1,2,3,,4,4,Gratiot,Ave,832010,1.359,2.093,0,17.608558,3.7,5 +5583,0,0.355992,2,2,1,2,3,,4,4,Gratiot,Ave,832010,1.003,1.359,0,8.543816,3.7,5 +6043,1,0.270705,3,0,0,2,3,DIV,4,4,Hall,Rd,820202,8.345,8.616,0,6.496931,3.7,5 +6403,-1,0.294188,0,3,0,2,3,DIV,4,4,Hall,Rd,807801,11.317,11.611,0,7.060522,3.7,5 +5872,1,0.045444,1,0,0,2,3,,4,4,Fairchild,Rd,817902,0,0.045,0,1.090659,3.7,5 +5961,-1,0.211179,0,3,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,11.911,12.122,0,5.068296,3.7,5 +20559,1,0.196213,3,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205580,0.121,0.317,0,4.709105,3.7,5 +27393,0,0.399714,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.593139,0.15,4 +29104,0,0.365749,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.777976,0.15,4 +6354,-1,0.114381,0,3,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,11.797,11.911,0,2.745138,3.7,5 +20562,1,0.1211,3,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205580,0,0.121,0,2.906388,3.7,5 +6728,0,0.040846,2,2,1,2,3,,4,4,Gratiot,Ave,832010,2.093,2.133,0,0.980293,3.7,5 +4292,1,0.260903,3,0,0,1,1,,4,4,E I 94,,798501,14.127,14.388,0,,0.8,7.5 +5069,-1,0.282356,0,3,0,1,1,,4,4,W I 94,,798502,14.152,14.434,0,,0.8,7.5 +6348,-1,0.136738,0,2,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,12.323,12.459,0,3.281716,3.7,5 +19876,1,0.203703,1,0,0,1,1,RON,4,4,E M 59/W I 94,RAMP,4210056,0,0.204,0,,1.09,4 +20318,1,0.311643,1,0,0,1,1,ROF,4,4,E I 94/E M 59,RAMP,4208182,0,0.312,0,,2.24,5 +20557,1,0.113183,2,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205580,0.459,0.572,0,2.716387,3.7,5 +5957,-1,0.086442,0,2,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,12.236,12.323,0,2.074617,3.7,5 +20225,1,0.028129,1,0,0,1,3,RSF,4,4,W I 94/M 59,RAMP,4210055,0.486,0.514,0,,3.7,5 +20622,1,0.148292,2,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205105,0,0.148,0,3.559019,3.7,5 +5954,-1,0.074571,0,2,0,2,3,DIV,4,4,William P Rosso,Hwy,807801,12.459,12.534,0,1.789702,3.7,5 +20461,1,0.035079,1,0,0,1,3,RSF,4,4,M 59/E I 94,RAMP,4210058,0,0.035,0,,3.7,5 +20620,1,0.015138,2,0,0,2,3,DIV,4,4,William P Rosso,Hwy,4205105,0.148,0.163,0,0.363316,3.7,5 +3973,1,0.528824,3,0,0,1,1,,4,4,E I 94,,798501,15.153,15.682,0,,0.8,7.5 +4425,1,0.37546,1,0,0,1,1,ROF,4,4,W I 94/21 Mile,RAMP,801609,0,0.375,0,,2.24,5 +4654,-1,0.269904,0,3,0,1,1,,4,4,W I 94,,798502,15.578,15.848,0,,0.8,7.5 +4664,1,0.04126,1,0,0,1,1,RON,4,4,21 Mile/E I 94,RAMP,801305,0,0.041,0,,1.09,4 +5779,0,0.456721,1,1,0,2,5,,4,4,Fairchild,Rd,817902,1.021,1.477,0,10.961305,5.8,4.5 +5850,0,0.241679,2,2,1,2,4,,4,4,21 Mile,Rd,817708,9.223,9.464,0,5.800297,4.5,4.5 +5900,0,0.363515,2,2,1,2,3,,4,4,Gratiot,Ave,832010,3.203,3.567,0,8.724364,3.7,5 +6172,0,0.462089,2,2,1,2,3,,4,4,Gratiot,Ave,832010,2.741,3.203,0,11.090143,3.7,5 +6538,0,0.188589,1,1,0,2,5,,4,4,22 Mile,Rd,818404,0,0.189,0,4.526138,5.8,4.5 +24929,0,0.376593,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.038222,0.15,4 +25419,0,0.298245,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.157887,0.15,4 +29105,0,0.662795,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.907089,0.15,4 +6240,0,0.347189,2,2,1,2,4,,4,4,21 Mile,Rd,817708,8.875,9.223,0,8.332539,4.5,4.5 +6778,0,0.545401,1,1,0,2,4,,4,4,Fairchild,Rd,817902,0.475,1.021,0,13.089618,4.5,4.5 +29108,0,0.516721,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.401296,0.15,4 +25420,0,0.100511,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.412258,0.15,4 +5379,0,0.595935,1,1,0,2,5,,4,4,Fairchild,Rd,817902,1.477,2.073,0,14.302428,5.8,4.5 +29076,0,0.57054,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.692972,0.15,4 +4276,1,0.361501,3,0,0,1,1,,4,4,E I 94,,798501,14.792,15.153,0,,0.8,7.5 +4998,-1,0.77229,0,3,0,1,1,,4,4,W I 94,,798502,14.806,15.578,0,,0.8,7.5 +6201,0,0.090067,2,2,1,2,4,,4,4,21 Mile,Rd,817708,9.846,9.936,0,2.161619,4.5,4.5 +25416,0,0.522181,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.532343,0.15,4 +5460,0,0.382055,2,2,1,2,4,,4,4,21 Mile,Rd,817708,9.464,9.846,0,9.16932,4.5,4.5 +39861,-1,0.553925,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,2.059,2.613,0,13.294195,3.7,5 +4741,1,0.164235,1,0,0,1,1,RON,4,4,21 Mile/W I 94,RAMP,801608,0.069,0.233,0,,1.09,4 +5068,1,0.068651,1,0,0,1,1,RON,4,4,W 21 Mile/W I 94,RAMP,801608,0,0.069,0,,1.09,4 +6017,0,0.048896,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.027,10.076,0,1.173513,4.5,4.5 +5827,0,0.081596,2,2,1,2,4,,4,4,21 Mile,Rd,817708,9.936,10.018,0,1.958301,4.5,4.5 +20745,1,0.044593,1,0,0,1,1,RON,4,4,E 21 Mile/W I 94,RAMP,4201833,0,0.045,0,,1.09,4 +5442,0,0.00964,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.018,10.027,0,0.231361,4.5,4.5 +5627,0,0.140912,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.076,10.217,0,3.381891,4.5,4.5 +4181,1,0.415955,1,0,0,1,1,ROF,4,4,E I 94/21 Mile,RAMP,801303,0,0.416,0,,2.24,5 +5415,0,0.511004,2,2,1,2,3,,4,4,Gratiot,Ave,832010,3.801,4.312,0,12.264085,3.7,5 +6931,0,0.321331,1,1,0,2,5,,4,4,22 Mile,Rd,818404,0.503,0.824,0,7.711944,5.8,4.5 +29106,0,0.414097,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.93833,0.15,4 +29817,0,0.265886,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.381256,0.15,4 +5687,0,0.234494,2,2,1,2,3,,4,4,Gratiot,Ave,832010,3.567,3.801,0,5.627849,3.7,5 +29107,0,0.286527,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.87666,0.15,4 +6138,0,0.037107,1,1,0,2,5,,4,4,22 Mile,Rd,818404,0.466,0.503,0,0.890571,5.8,4.5 +6889,0,0.246554,2,2,1,2,3,,4,4,Gratiot,Ave,832010,4.312,4.559,0,5.917285,3.7,5 +5446,0,1.020496,1,1,0,2,5,,5,4,Fairchild,Rd,817902,4.816,5.837,0,24.491901,3.7,5 +6157,0,0.502479,1,1,0,2,4,,5,4,26 Mile,Rd,816702,11.059,11.562,0,12.059504,3,4 +6660,0,1.26337,2,2,1,2,3,,4,4,23 Mile,Rd,807106,11.187,12.45,0,30.320889,3.7,5 +19757,0,1.013939,1,1,0,2,4,,5,4,North,Ave,1817105,4.678,5.692,0,24.334545,3,4 +20321,0,0.624353,1,1,0,2,5,,5,4,Fairchild,Rd,4208137,0,0.624,0,14.98446,3.7,5 +20811,0,1.078769,1,1,0,2,5,GRV,5,4,Card,Rd,4200010,4.057,5.136,0,25.89045,5.55,5 +29081,0,1.141955,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,27.406912,0.15,4 +29112,0,0.585589,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,14.054132,0.15,4 +29113,0,0.733104,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,17.594484,0.15,4 +6244,0,0.799914,2,2,1,2,3,,4,4,23 Mile,Rd,807106,10.387,11.187,0,19.197946,3.7,5 +19759,0,1.013358,1,1,0,2,4,,5,4,North,Ave,1817105,3.162,4.175,0,24.320592,3,4 +20812,0,0.839641,1,1,0,2,5,,4,4,Card,Rd,4200010,3.218,4.057,0,20.151373,5.8,4.5 +29083,0,1.037446,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,24.898707,0.15,4 +6665,0,0.234943,2,2,1,2,3,,4,4,23 Mile,Rd,807106,10.152,10.387,0,5.638622,3.7,5 +20814,0,0.477702,1,1,0,2,4,,4,4,Card,Rd,4200010,2.57,3.048,0,11.464839,4.5,4.5 +20813,0,0.170148,1,1,0,2,5,,4,4,Card,Rd,4200010,3.048,3.218,0,4.083558,5.8,4.5 +19634,0,0.656762,1,1,0,2,4,,4,4,North,Ave,1817105,2.505,3.162,0,15.7623,4.5,4.5 +19758,0,0.50323,1,1,0,2,4,,5,4,North,Ave,1817105,4.175,4.678,0,12.077519,3,4 +29109,0,0.468943,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,11.254643,0.15,4 +6110,0,0.406549,1,1,0,2,6,,5,4,Indian,Trl,818409,0,0.407,0,9.757169,5.8,6 +6200,0,0.871829,1,1,0,2,4,,5,4,26 Mile,Rd,816702,9.809,10.681,0,20.923887,3,4 +19754,0,0.390763,1,1,0,2,4,,5,4,North,Ave,1817105,5.817,6.208,0,9.378302,3,4 +20808,0,1.064604,1,1,0,2,5,,5,4,Card,Rd,4200010,5.136,6.2,0,25.5505,3.7,5 +29111,0,0.712117,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,17.090807,0.15,4 +19755,0,0.125439,1,1,0,2,4,,5,4,North,Ave,1817105,5.692,5.817,0,3.010538,3,4 +6572,0,0.255186,1,1,0,2,4,,5,4,26 Mile,Rd,816702,10.804,11.059,0,6.124476,3,4 +5826,0,0.123018,1,1,0,2,4,,5,4,26 Mile,Rd,816702,10.681,10.804,0,2.952432,3,4 +19752,0,0.092372,1,1,0,2,4,,5,4,North,Ave,1817105,6.208,6.3,0,2.216926,3,4 +5531,0,0.620291,1,1,0,2,5,,4,4,Fairchild,Rd,817902,2.572,3.192,0,14.886982,5.8,4.5 +6841,0,1.046932,1,1,0,2,5,,4,4,Fairchild,Rd,817902,3.192,4.239,0,25.126359,5.8,4.5 +25952,0,0.498907,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.973764,0.15,4 +25963,0,0.862403,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,20.697676,0.15,4 +25964,0,0.549864,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.196732,0.15,4 +6417,0,0.577648,1,1,0,2,5,,5,4,Fairchild,Rd,817902,4.239,4.816,0,13.863542,3.7,5 +6239,0,0.51057,2,2,1,2,3,,4,4,23 Mile,Rd,807106,12.45,12.96,0,12.25369,3.7,5 +6326,0,0.408317,1,1,0,2,5,,4,4,Chesterfield,Rd,814610,0,0.408,0,9.799615,5.8,4.5 +25951,0,0.532685,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.784447,0.15,4 +25953,0,0.412805,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.907311,0.15,4 +6384,0,0.342506,2,2,1,2,3,,4,4,Gratiot,Ave,832010,4.709,5.052,0,8.220154,3.7,5 +6659,0,0.230362,2,2,1,2,3,,4,4,23 Mile,Rd,807106,12.96,13.191,0,5.52869,3.7,5 +6750,0,0.510532,1,1,0,2,5,,5,4,Omo,Rd,817902,5.837,6.347,0,12.25277,3.7,5 +6514,0,0.057211,1,1,0,2,5,,5,4,Hagen,Rd,818408,0.706,0.763,0,1.37306,3.7,5 +5800,0,0.009929,1,1,0,2,4,,5,4,26 Mile,Rd,816702,11.562,11.571,0,0.238299,3,4 +5493,0,1.123111,1,1,0,2,5,,5,4,Armada Center,Rd,824306,0.083,1.206,0,26.954656,3.7,5 +5838,0,0.887954,1,1,0,2,5,,5,4,27 Mile,Rd,819105,2.988,3.876,0,21.310905,3.7,5 +6202,0,1.06889,1,1,0,2,3,,5,4,Earle Memorial,Hwy,813706,22.709,23.778,0,25.653365,1.7,4 +6381,0,0.917984,1,1,0,2,4,,5,4,Division,Rd,815804,6.104,7.021,0,22.031626,3,4 +6850,0,1.895437,1,1,0,2,5,,5,4,29 Mile,Rd,815710,3.015,4.91,0,45.490477,3.7,5 +8570,0,1.997722,1,1,0,2,5,,5,7,Almont,Rd,972209,0,1.997,0,47.945337,3.7,5 +9188,0,2.988112,1,1,0,2,6,GRV,5,7,Burt,Rd,972704,0,2.988,0,71.714682,5.55,5 +19742,0,2.117353,1,1,0,2,5,,5,4,North,Ave,1817105,15.529,17.646,0,50.816477,3.7,5 +19959,0,2.274117,1,1,0,2,5,,5,7,Dryden,Rd,3440076,0.983,3.257,0,54.578808,3.7,5 +20445,0,2.538642,1,1,0,2,4,,5,4,Capac,Rd,4208938,0,2.538,0,60.927406,3,4 +20517,0,0.887955,1,1,0,2,5,GRV,5,4,33 Mile,Rd,4210214,1.519,2.407,0,21.310932,5.55,5 +27513,0,2.111403,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,50.673672,0.15,4 +27514,0,0.503037,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,12.072887,0.15,4 +28551,0,1.401903,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,33.645664,0.15,4 +29121,0,1.554402,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,37.305659,0.15,4 +29823,0,2.597903,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,62.349684,0.15,4 +3087,0,1.0823,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,1.542,2.624,0,25.975202,5.55,5 +5683,0,1.024564,1,1,0,2,5,,5,4,34 Mile,Rd,821608,2.049,3.073,0,24.589534,3.7,5 +5928,0,0.997096,1,1,0,2,4,,3,4,32 Mile,Rd,815804,3.105,4.102,0,23.930301,6,4.5 +5945,-1,2.171291,0,2,0,2,3,DIV,5,4,S M 53,,813706,16.224,18.395,0,52.110992,1.7,4 +5953,0,0.980396,1,1,0,2,5,,4,4,29 Mile,Rd,815710,1.018,1.998,0,23.5295,5.8,4.5 +5975,0,2.824418,1,1,0,2,6,GRV,5,4,36 Mile,Rd,822708,1.261,4.084,0,67.786022,5.55,5 +6466,0,0.681428,1,1,1,2,4,,5,4,Van Dyke,Rd,817001,3.452,4.133,0,16.354261,3,4 +6517,0,1.105641,1,1,0,2,5,,5,4,Mound,Rd,814501,8.844,9.949,0,26.535393,3.7,5 +20126,0,0.404796,1,1,0,2,4,,4,4,Van Dyke,Ave,4211016,9.127,9.532,0,9.715098,4.5,4.5 +20463,1,2.171411,2,0,0,2,3,DIV,5,4,N M 53,,4210208,16.213,18.384,0,52.113865,1.7,4 +20733,0,0.333539,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,3.054,3.388,0,8.004939,4.5,4.5 +25590,0,0.963412,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,23.121878,0.15,4 +29810,0,1.320975,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,31.703402,0.15,4 +29811,0,1.33631,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,32.071438,0.15,4 +29812,0,1.57064,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,37.695356,0.15,4 +29813,0,0.714622,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.150937,0.15,4 +6445,0,0.762806,1,1,0,2,5,GRV,5,4,Dequindre,Rd,817205,0,0.763,0,18.307353,5.55,5 +6532,0,0.497756,1,1,0,2,5,,5,4,Mound,Rd,814501,6.826,7.324,0,11.946155,3.7,5 +6839,0,1.527821,1,1,0,2,6,GRV,5,4,Inwood,Rd,815801,0.513,2.04,0,36.667711,5.55,5 +20744,0,1.128813,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,0.901,2.03,0,27.09151,4.5,4.5 +25580,0,1.043104,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.034494,0.15,4 +25582,0,1.537144,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,36.891466,0.15,4 +25592,0,0.90735,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,21.776403,0.15,4 +25593,0,1.049849,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.196385,0.15,4 +5792,0,0.274658,1,1,0,2,5,GRV,5,4,Mount Vernon,Rd,816905,2.07,2.345,0,6.591796,5.55,5 +20751,0,0.315896,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,0.508,0.824,0,7.581506,4.5,4.5 +25594,0,0.545031,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.08075,0.15,4 +25595,0,0.760795,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,18.259077,0.15,4 +6545,0,0.426315,1,1,0,2,4,,4,4,Mount Vernon,Rd,816905,3.016,3.442,0,10.231561,4.5,4.5 +20752,0,0.507976,1,1,0,2,5,GRV,4,4,28 Mile,Rd,4208920,0,0.508,0,12.191434,6.55,4.5 +21172,0,0.435408,1,1,0,2,4,GRV,4,4,Snell,Rd,4408229,1.125,1.56,0,10.449793,6.55,4.5 +19509,0,0.10883,1,1,0,2,5,GRV,5,4,Gunn,Rd,1895401,0,0.109,0,2.61191,5.55,5 +6142,0,0.075363,1,1,0,2,4,,4,4,Mount Vernon,Rd,816905,3.442,3.517,0,1.808703,4.5,4.5 +20746,0,0.077414,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,0.824,0.901,0,1.857944,4.5,4.5 +2520,0,1.542143,1,1,0,2,5,GRV,5,4,Dequindre,Rd,667605,0,1.542,0,37.011432,5.55,5 +25578,0,1.39567,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,33.496084,0.15,4 +25579,0,0.991376,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,23.793031,0.15,4 +5530,0,0.512807,1,1,0,2,6,GRV,5,4,Inwood,Rd,815801,0,0.513,0,12.30737,5.55,5 +5554,0,0.358961,1,1,0,2,5,,4,4,29 Mile,Rd,815710,0,0.359,0,8.615067,5.8,4.5 +5943,0,0.994225,1,1,0,2,5,GRV,4,4,Mound,Rd,814501,5.832,6.826,0,23.861393,6.55,4.5 +6133,0,0.619172,1,1,0,2,5,,4,4,Campground,Rd,816908,0.649,1.268,0,14.860116,5.8,4.5 +20743,0,0.729321,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,2.03,2.759,0,17.5037,4.5,4.5 +25588,0,0.541679,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.000285,0.15,4 +27537,0,0.760153,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.243679,0.15,4 +6338,0,0.279485,1,1,0,2,4,,4,4,Mound,Rd,814501,5.553,5.832,0,6.70765,4.5,4.5 +6534,0,0.451386,1,1,0,2,4,,4,4,Campground,Rd,816908,0.197,0.649,0,10.833269,4.5,4.5 +20742,0,0.295548,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,2.759,3.054,0,7.093148,4.5,4.5 +27521,0,0.622425,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.938192,0.15,4 +27523,0,0.382551,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.181216,0.15,4 +5782,0,0.197384,1,1,0,2,4,,4,4,Campground,Rd,816908,0,0.197,0,4.737214,4.5,4.5 +5776,0,0.368151,1,1,0,2,5,,4,4,Campground,Rd,816908,1.268,1.636,0,8.83562,5.8,4.5 +6864,0,0.659466,1,1,0,2,5,,4,4,29 Mile,Rd,815710,0.359,1.018,0,15.827189,5.8,4.5 +29814,0,0.686252,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.470058,0.15,4 +25586,0,0.18105,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.345212,0.15,4 +6933,0,1.017274,1,1,0,2,5,,5,4,Mound,Rd,814501,7.827,8.844,0,24.414585,3.7,5 +30178,0,1.1739,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,28.173597,0.15,4 +6130,0,0.502923,1,1,0,2,5,,5,4,Mound,Rd,814501,7.324,7.827,0,12.070151,3.7,5 +5524,0,0.884636,1,1,0,2,4,,5,4,32 Mile,Rd,815804,1.33,2.214,0,21.231268,3,4 +6033,0,1.009704,1,1,0,2,5,,5,4,Fisher,Rd,817306,1.033,2.042,0,24.232896,3.7,5 +6066,0,0.799743,1,1,0,2,5,,5,4,34 Mile,Rd,821608,1.249,2.049,0,19.193828,3.7,5 +24958,0,1.133566,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,27.205579,0.15,4 +29825,0,1.196805,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,28.723331,0.15,4 +6415,0,1.252762,1,1,0,2,4,,5,4,32 Mile,Rd,815804,0,1.253,0,30.066287,3,4 +6437,0,1.032874,1,1,0,2,5,,5,4,Fisher,Rd,817306,0,1.033,0,24.788981,3.7,5 +5930,0,0.077053,1,1,0,2,4,,5,4,32 Mile,Rd,815804,1.253,1.33,0,1.849281,3,4 +24959,0,0.23835,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,5.720401,0.15,4 +6832,0,0.891109,1,1,0,2,4,,5,4,32 Mile,Rd,815804,2.214,3.105,0,21.386619,3,4 +5538,0,0.302715,1,1,0,2,5,,5,4,29 Mile,Rd,815710,2.712,3.015,0,7.265159,3.7,5 +5721,0,2.071779,1,1,1,2,4,,5,4,Van Dyke,Rd,817001,1.381,3.452,0,49.722696,3,4 +6340,-1,2.940874,0,2,0,2,3,DIV,5,4,S M 53,,813706,13.284,16.224,0,70.580984,1.7,4 +20699,1,2.972821,2,0,0,2,3,DIV,5,4,N M 53,,4210208,13.241,16.213,0,71.34771,1.7,4 +25591,0,1.080324,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.927774,0.15,4 +25596,0,0.576286,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.830857,0.15,4 +25597,0,0.553968,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.295244,0.15,4 +25598,0,1.014218,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,24.341226,0.15,4 +5543,0,0.34334,1,1,0,2,5,,5,4,29 Mile,Rd,815710,1.998,2.342,0,8.240149,3.7,5 +6086,0,1.150046,1,1,0,2,4,,4,4,Van Dyke,Rd,817001,0.231,1.381,0,27.60111,4.5,4.5 +20066,0,1.121326,1,1,0,2,5,,5,4,Jewell,Rd,4208421,2.021,3.142,0,26.91182,3.7,5 +20693,0,0.590983,1,1,0,2,5,,5,4,28 Mile,Rd,4208920,3.442,4.032,0,14.18359,3.7,5 +29815,0,1.140603,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,27.374479,0.15,4 +19581,-1,0.549563,0,2,0,1,2,RON,4,4,Old M 53,,1917410,0,0.55,0,,1.09,4 +19585,1,0.401559,2,0,0,2,3,,4,4,Old M 53,,1917409,0.034,0.436,0,9.637418,3.7,5 +6019,-1,0.161597,0,2,0,1,2,,4,4,S M 53,,813706,13.123,13.284,0,,0.8,7.5 +19586,1,0.034056,2,0,0,2,3,,4,4,Old M 53,,1917409,0,0.034,0,0.817352,3.7,5 +6498,0,0.231147,1,1,0,2,4,,4,4,Van Dyke,Rd,817001,0,0.231,0,5.547535,4.5,4.5 +20732,0,0.053893,1,1,0,2,4,,4,4,28 Mile,Rd,4208920,3.388,3.442,0,1.293431,4.5,4.5 +19580,-1,0.172612,0,2,0,2,4,,4,4,Van Dyke,Rd,1917410,0.55,0.722,0,4.142685,4.5,4.5 +19584,1,0.159763,2,0,0,2,4,,4,4,Van Dyke,Rd,1917409,0.436,0.595,0,3.834306,4.5,4.5 +20821,0,0.021148,1,1,0,2,4,,4,4,Van Dyke,Ave,4211016,9.532,9.553,0,0.507559,4.5,4.5 +27524,0,0.289159,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,6.939825,0.15,4 +6858,0,0.370695,1,1,0,2,5,,5,4,29 Mile,Rd,815710,2.342,2.712,0,8.896678,3.7,5 +27527,0,1.059045,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.417085,0.15,4 +27528,0,1.088015,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,26.112368,0.15,4 +5406,0,1.003649,1,1,0,2,5,,5,4,Ebeling,Rd,824302,0,1.003,0,24.087582,3.7,5 +5515,0,0.276695,1,1,1,2,4,,3,4,32 Mile,Rd,815804,4.769,5.046,0,6.64067,6,4.5 +5582,0,0.964717,1,1,0,2,5,,5,4,McKay,Rd,821905,0,0.965,0,23.153217,3.7,5 +5938,0,0.190159,1,1,1,2,3,,5,4,M 53,,813706,20.353,20.543,0,4.563813,1.7,4 +20077,0,0.524191,1,1,0,2,5,,5,4,33 Mile,Rd,4210214,0,0.524,0,12.580595,3.7,5 +20113,0,0.854822,1,1,0,2,4,,5,4,Earle Memorial,Hwy,4208310,0.915,1.77,0,20.515716,3,4 +25574,0,0.88958,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,21.349913,0.15,4 +25577,0,1.063289,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.518929,0.15,4 +28617,0,0.861833,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,20.683984,0.15,4 +5520,0,0.306654,1,1,1,2,4,,3,4,Saint Clair,St,815804,4.102,4.408,0,7.35969,6,4.5 +5895,0,0.185692,1,1,0,2,4,,3,4,Gates,St,822607,0.36,0.546,0,4.456607,6,4.5 +20114,0,0.508182,1,1,0,2,4,,5,4,Earle Memorial,Hwy,4208310,0.407,0.915,0,12.196372,3,4 +20115,0,0.466574,1,1,0,2,5,,5,4,McVicar,St,4208305,0,0.467,0,11.197783,3.7,5 +25599,0,0.440376,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,10.56903,0.15,4 +25601,0,0.38919,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.340564,0.15,4 +27073,0,0.372892,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,8.949413,0.15,4 +29132,0,0.712581,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,17.101939,0.15,4 +29133,0,0.412126,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,9.891022,0.15,4 +5674,0,0.247526,1,1,1,2,4,,3,4,Main,St,817001,4.553,4.8,0,5.940612,6,4.5 +6828,0,0.207719,1,1,1,2,4,,3,4,Saint Clair,St,815804,4.408,4.616,0,4.985246,6,4.5 +25603,0,0.407264,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.774347,0.15,4 +29640,0,0.398978,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,9.575465,0.15,4 +6056,0,0.419633,1,1,1,2,4,,3,4,Main,St,817001,4.133,4.553,0,10.071188,6,4.5 +25583,0,0.140688,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,3.376524,0.15,4 +6463,0,0.260319,1,1,1,2,4,,3,4,Main,St,817001,4.8,5.061,0,6.247652,6,4.5 +6723,0,0.125581,1,1,0,2,5,,3,4,Gates,St,822607,0.219,0.344,0,3.01395,8,4.5 +29639,0,0.257262,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,6.174285,0.15,4 +6290,0,0.016096,1,1,0,2,5,,3,4,Gates,St,822607,0.344,0.36,0,0.386292,8,4.5 +25600,0,0.050139,1,1,0,2,99,,3,4,Centroid Connector,,0,0,0,0,1.203333,0.15,4 +6379,0,0.108357,1,1,0,2,5,,3,4,Gates,St,822607,0.11,0.219,0,2.600572,8,4.5 +5923,0,0.153148,1,1,1,2,4,,3,4,Saint Clair,St,815804,4.616,4.769,0,3.675562,6,4.5 +29134,0,0.289473,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,6.947343,0.15,4 +5937,0,1.002362,1,1,1,2,3,,5,4,Earle Memorial,Hwy,813706,20.718,21.72,0,24.056697,1.7,4 +25575,0,0.413415,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,9.921965,0.15,4 +6327,0,0.174981,1,1,1,2,3,,5,4,Earle Memorial,Hwy,813706,20.543,20.718,0,4.199552,1.7,4 +6324,0,0.502702,1,1,1,2,3,,5,4,Earle Memorial,Hwy,813706,21.72,22.223,0,12.064852,1.7,4 +5935,0,0.486221,1,1,1,2,3,,5,4,Earle Memorial,Hwy,813706,22.223,22.709,0,11.669304,1.7,4 +5654,0,0.72684,1,1,0,2,5,,4,4,Powell,Rd,817209,2.762,3.488,0,17.444162,5.8,4.5 +6802,0,0.881031,2,2,1,2,4,,4,4,32 Mile,Rd,815804,5.223,6.104,0,21.144755,4.5,4.5 +20766,0,0.995117,1,1,0,2,5,,4,4,33 Mile,Rd,4210214,0.524,1.519,0,23.8828,5.8,4.5 +25602,0,0.430733,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.337603,0.15,4 +25604,0,0.615324,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.767774,0.15,4 +5499,0,0.154702,2,2,1,2,4,,4,4,32 Mile,Rd,815804,5.068,5.223,0,3.712845,4.5,4.5 +6826,0,0.022335,2,2,1,2,4,,3,4,32 Mile,Rd,815804,5.046,5.068,0,0.536036,6,4.5 +6040,0,0.40109,1,1,0,2,5,,4,4,Powell,Rd,817209,2.361,2.762,0,9.626158,5.8,4.5 +6887,0,1.017614,1,1,0,2,5,,5,4,Kanie,Rd,821906,0,1.017,0,24.422739,3.7,5 +5980,0,0.743792,1,1,0,2,5,,5,4,34 Mile,Rd,821608,5.085,5.829,0,17.851001,3.7,5 +6287,0,0.556973,1,1,0,2,5,,5,4,Brown,Rd,824303,0,0.557,0,13.36736,3.7,5 +6719,0,0.505285,1,1,0,2,5,,5,4,Ebeling,Rd,824302,1.003,1.509,0,12.126848,3.7,5 +5893,0,0.08267,1,1,0,2,5,,5,4,Armada Center,Rd,824306,0,0.083,0,1.984092,3.7,5 +6036,0,1.234095,1,1,0,2,3,,5,4,Earle Memorial,Hwy,813706,23.92,25.154,0,29.618279,1.7,4 +27512,0,2.31651,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,55.596239,0.15,4 +34074,0,1.65355,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34073,0,1.898069,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +28553,0,1.169473,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,28.067342,0.15,4 +5828,0,0.142781,1,1,0,2,3,,5,4,Earle Memorial,Hwy,813706,23.778,23.92,0,3.426752,1.7,4 +34072,0,1.941187,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34111,0,1.874544,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +4688,0,0.061501,1,1,0,2,6,GRV,,7,Burt,Rd,757810,0.984,1.046,0,1.476026,5.55,5 +5480,0,1.036902,1,1,0,2,4,,5,4,Division,Rd,815804,10.025,11.061,0,24.885641,3,4 +5669,0,2.332414,1,1,0,2,6,GRV,5,4,Indian Trail,Rd,817101,1.054,3.386,0,55.977928,5.55,5 +5671,0,2.23665,1,1,0,2,6,GRV,5,4,Wolcott,Rd,817008,2.113,4.349,0,53.679611,5.55,5 +5972,0,2.014346,1,1,0,2,5,,5,4,Armada Center,Rd,824306,3.231,5.245,0,48.344301,3.7,5 +6027,0,1.244088,1,1,0,2,5,,4,4,Armada Ridge,Rd,817602,2.646,3.89,0,29.858102,5.8,4.5 +6274,0,1.07956,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,6.13,7.209,0,25.909435,3,4 +6423,0,1.14859,1,1,0,2,5,,5,4,29 Mile,Rd,815710,7.809,8.957,0,27.566162,3.7,5 +19746,0,2.058319,1,1,0,2,5,,5,4,North,Ave,1817105,10.423,12.481,0,49.399647,3.7,5 +25581,0,1.804911,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,43.317853,0.15,4 +28627,0,2.09116,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,50.18783,0.15,4 +29224,0,1.822023,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,43.728547,0.15,4 +30181,0,2.037457,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,48.898962,0.15,4 +6426,0,1.771099,1,1,0,2,5,,5,4,29 Mile,Rd,815710,4.91,6.681,0,42.506384,3.7,5 +6461,0,1.316649,1,1,0,2,6,,5,4,Indian Trail,Rd,817101,3.386,4.702,0,31.599586,5.8,6 +6704,0,2.02849,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,4.102,6.13,0,48.683767,3,4 +25948,0,2.165624,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,51.974974,0.15,4 +29824,0,2.123989,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,50.975727,0.15,4 +5386,0,1.010726,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,3.091,4.102,0,24.257435,3,4 +6709,0,1.012762,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,2.079,3.091,0,24.306298,3,4 +6849,0,1.128427,1,1,0,2,5,,5,4,29 Mile,Rd,815710,6.681,7.809,0,27.082254,3.7,5 +24967,0,1.544775,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,37.074589,0.15,4 +29129,0,0.832371,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,19.976902,0.15,4 +6055,0,0.529696,1,1,0,2,6,,5,4,Wolcott,Rd,817008,1.583,2.113,0,12.712709,5.8,6 +5646,0,0.60956,1,1,0,2,5,,5,4,Armada Ridge,Rd,817602,0,0.609,0,14.629432,3.7,5 +6372,0,1.006711,1,1,0,2,4,,5,4,Division,Rd,815804,8.032,9.039,0,24.161058,3,4 +6375,0,1.006898,1,1,0,2,5,,5,4,Armada Center,Rd,824306,2.225,3.231,0,24.16555,3.7,5 +6428,0,2.03741,1,1,0,2,5,,5,4,Armada Ridge,Rd,817602,0.609,2.646,0,48.897835,3.7,5 +6699,0,1.012796,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,8.226,9.238,0,24.307105,3,4 +29124,0,1.55484,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,37.316165,0.15,4 +29126,0,2.09006,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,50.161428,0.15,4 +29548,0,1.098676,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,26.36822,0.15,4 +5380,0,1.016987,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,7.209,8.226,0,24.407684,3,4 +6462,0,0.576537,1,1,0,2,5,,5,4,Wolcott,Rd,817008,4.349,4.925,0,13.83689,3.7,5 +6792,0,1.010838,1,1,0,2,4,,5,4,Division,Rd,815804,7.021,8.032,0,24.260101,3,4 +6269,0,1.009764,1,1,0,2,4,,5,4,Romeo Plank,Rd,816509,9.238,10.248,0,24.234338,3,4 +6796,0,1.019267,1,1,0,2,4,,5,4,Armada Center,Rd,824306,1.206,2.225,0,24.462416,3,4 +5969,0,0.986415,1,1,0,2,4,,5,4,Division,Rd,815804,9.039,10.025,0,23.673966,3,4 +29549,0,1.482694,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,35.584665,0.15,4 +24753,0,0.90816,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,21.795848,0.15,4 +5653,0,1.442785,1,1,0,2,5,,5,4,New Haven,Rd,814905,8.029,9.472,0,34.626832,3.7,5 +19747,0,1.016918,1,1,0,2,5,,5,4,North,Ave,1817105,9.406,10.423,0,24.406031,3.7,5 +19750,0,1.035789,1,1,0,2,5,,5,4,North,Ave,1817105,8.371,9.406,0,24.858945,3.7,5 +6023,0,0.107012,1,1,0,2,5,,5,4,New Haven,Rd,815710,8.957,9.064,0,2.568294,3.7,5 +20111,0,0.704197,1,1,0,2,6,GRV,5,4,Omo,Rd,4208329,1.807,2.511,0,16.900718,5.55,5 +6039,0,0.896776,1,1,0,2,5,,5,4,New Haven,Rd,814905,7.133,8.029,0,21.522619,3.7,5 +5571,0,1.030755,1,1,0,2,6,,5,4,Armada Center,Rd,824306,5.245,6.276,0,24.738124,5.8,6 +6412,0,0.839066,1,1,0,2,5,,5,4,Ridge,St,817602,4.099,4.938,0,20.137583,3.7,5 +19745,0,2.2898,1,1,0,2,5,,5,4,North,Ave,1817105,12.481,14.77,0,54.955204,3.7,5 +19743,0,0.427187,1,1,0,2,5,,4,4,Fulton,St,1817105,15.102,15.529,0,10.252482,5.8,4.5 +5639,0,0.208404,1,1,0,2,5,,4,4,Main,St,817602,3.89,4.099,0,5.001689,5.8,4.5 +19744,0,0.33113,1,1,0,2,5,,4,4,Fulton,St,1817105,14.77,15.102,0,7.947122,5.8,4.5 +25607,0,0.234764,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.634333,0.15,4 +29257,0,0.17564,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.21536,0.15,4 +6011,0,0.672695,1,1,0,2,5,,5,4,Ridge,St,817602,4.938,5.61,0,16.144682,3.7,5 +20110,0,0.289611,1,1,0,2,6,,5,4,Omo,Rd,4208329,9.153,9.443,0,6.95067,5.8,6 +5575,0,0.249821,1,1,0,2,5,,5,4,Burman,Rd,822808,0,0.25,0,5.995709,3.7,5 +7375,-1,3.513966,0,2,0,1,1,,5,7,W I 69,,962902,3.54,7.053,0,,1.02,7 +7508,1,3.595936,2,0,0,1,1,,5,7,E I 69,,962706,3.48,7.076,0,,1.02,7 +8541,0,0.989102,1,1,0,2,5,,5,7,Belle River,Rd,972307,1.782,2.771,0,23.738451,3.7,5 +8580,0,3.068197,1,1,0,2,5,,5,7,Riley Center,Rd,972105,0,3.068,0,73.636728,3.7,5 +9161,0,2.045051,1,1,0,2,5,,5,7,Berville,Rd,972708,0,2.045,0,49.081232,3.7,5 +9172,0,3.244832,1,1,0,2,6,GRV,5,7,Burt,Rd,972704,2.988,6.232,0,77.875969,5.55,5 +19961,0,2.277108,1,1,0,2,5,,5,7,Hough,Rd,3440075,2.986,5.263,0,54.650597,3.7,5 +20361,0,1.006406,1,1,0,2,4,,5,7,Capac,Rd,4210003,2.594,3.601,0,24.153746,3,4 +24770,0,2.078712,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,49.889082,0.15,4 +29116,0,2.033313,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,48.799507,0.15,4 +29119,0,2.216559,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,53.19742,0.15,4 +19962,0,0.757027,1,1,0,2,5,,5,7,Hough,Rd,3440075,2.229,2.986,0,18.168644,3.7,5 +20364,0,0.57679,1,1,0,2,4,,5,4,Capac,Rd,4210003,0,0.577,0,13.842952,3,4 +29120,0,1.463557,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,35.125368,0.15,4 +20362,0,1.012823,1,1,0,2,4,,5,7,Capac,Rd,4210003,1.582,2.594,0,24.307763,3,4 +20363,0,1.005162,1,1,0,2,4,,5,7,Capac,Rd,4210003,0.577,1.582,0,24.123879,3,4 +7587,-1,1.020936,0,2,0,1,1,,5,7,W I 69,,962902,2.519,3.54,0,,1.02,7 +7702,1,0.920365,2,0,0,1,1,,5,7,E I 69,,962706,2.56,3.48,0,,1.02,7 +8568,0,1.782774,1,1,0,2,5,,5,7,Belle River,Rd,972307,0,1.782,0,42.786572,3.7,5 +19620,1,0.570032,1,0,0,1,1,RON,5,7,Capac/W I 69,RAMP,1847209,0,0.57,0,,1.09,4 +19622,1,0.596477,1,0,0,1,1,ROF,5,7,E I 69/Capac,RAMP,1847207,0,0.596,0,,2.24,5 +20071,0,2.0186,1,1,0,2,4,,5,7,Capac,Rd,4210003,4.882,6.9,0,48.446411,3,4 +29117,0,1.012477,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.299455,0.15,4 +20359,0,1.056235,1,1,0,2,4,,5,7,Capac,Rd,4210003,3.601,4.657,0,25.349639,3,4 +20459,0,0.225814,1,1,0,2,4,,5,7,Capac,Rd,4210003,4.657,4.882,0,5.419541,3,4 +29115,0,1.648075,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,39.553802,0.15,4 +19619,1,0.484902,1,0,0,1,1,ROF,5,7,W I 69/Capac,RAMP,1847210,0,0.485,0,,2.24,5 +19621,1,0.418516,1,0,0,1,1,RON,5,7,Capac/E I 69,RAMP,1847208,0,0.419,0,,1.09,4 +20462,0,0.07202,1,1,0,2,4,,5,7,Capac,Rd,4210003,6.9,6.972,0,1.728471,3,4 +20810,0,0.286693,1,1,0,2,4,,5,7,Capac,Rd,4210003,6.972,7.259,0,6.880624,3,4 +6882,0,2.17507,1,1,0,2,5,,5,7,Bordman,Rd,824010,1.819,3.994,0,52.201687,3.7,5 +19740,0,1.071968,1,1,0,2,5,,5,4,North,Ave,1817105,17.646,18.717,0,25.727231,3.7,5 +8582,0,1.023814,1,1,0,2,5,,5,7,North,Ave,972104,0,1.024,0,24.571535,3.7,5 +19960,0,0.113017,1,1,0,2,5,,5,7,Hough,Rd,3440075,5.263,5.376,0,2.712408,3.7,5 +8574,0,1.988953,1,1,0,2,5,,5,7,Riley Center,Rd,972105,3.138,5.127,0,47.734866,3.7,5 +9158,0,2.666372,1,1,0,2,5,,5,7,Belle River,Rd,972801,0,2.666,0,63.992929,3.7,5 +9160,0,1.046316,1,1,0,2,5,,5,7,Berville,Rd,972708,2.045,3.091,0,25.111573,3.7,5 +9159,0,0.120104,1,1,0,2,5,,5,7,Belle River,Rd,972708,3.091,3.211,0,2.882494,3.7,5 +8425,0,0.079717,1,1,0,2,6,GRV,5,7,Masters,Rd,972701,3.243,3.322,0,1.913201,5.55,5 +9157,0,0.106202,1,1,0,2,5,,5,7,Belle River,Rd,972801,2.666,2.772,0,2.548839,3.7,5 +8576,0,0.070573,1,1,0,2,5,,5,7,Riley Center,Rd,972105,3.068,3.138,0,1.693742,3.7,5 +8573,0,0.535756,1,1,0,2,5,,5,7,Riley Center,Rd,972105,5.127,5.663,0,12.858142,3.7,5 +8571,0,0.118786,1,1,0,2,5,,5,7,Riley Center,Rd,972105,6.03,6.148,0,2.850853,3.7,5 +9165,0,0.267078,1,1,0,2,5,,5,7,Burt,Rd,972704,6.982,7.249,0,6.409865,3.7,5 +19613,1,0.392249,1,0,0,1,1,RON,5,7,Riley Center/W I 69,RAMP,1847307,0,0.392,0,,1.09,4 +19617,1,0.611048,1,0,0,1,1,ROF,5,7,E I 69/Riley Center,RAMP,1847305,0,0.611,0,,2.24,5 +8572,0,0.367122,1,1,0,2,5,,5,7,Riley Center,Rd,972105,5.663,6.03,0,8.810921,3.7,5 +7770,0,2.018392,1,1,0,2,5,,5,7,Imlay City,Rd,962606,0,2.018,0,48.44141,3.7,5 +8428,0,1.008462,1,1,0,2,5,,5,7,Dudley,Rd,972602,1.047,2.055,0,24.20309,3.7,5 +8498,0,2.086127,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,0,2.086,0,50.067043,5.55,5 +9012,0,0.84089,1,1,0,2,6,,5,7,Mason,Rd,973507,0.164,1.005,0,20.181358,5.8,6 +20809,0,0.99989,1,1,0,2,5,,5,7,Capac,Rd,4210003,15.838,16.837,0,23.997368,3.7,5 +25609,0,2.190868,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,52.580835,0.15,4 +25611,0,1.710916,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,41.061985,0.15,4 +4380,0,3.927637,1,1,0,2,5,GRV,5,7,Cade,Rd,755509,0.742,4.669,0,94.263285,5.55,5 +34070,0,2.136415,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34071,-1,1.97337,0,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34110,1,1.972939,2,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34069,0,2.048079,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +4701,0,0.014512,1,1,0,2,5,GRV,5,7,Cade,Rd,755509,4.669,4.684,0,0.34829,5.55,5 +34015,0,1.731276,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34016,0,1.473191,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +4375,0,1.412388,1,1,0,2,6,GRV,5,7,Cade,Rd,755509,8.181,9.593,0,33.897314,5.55,5 +8429,0,1.046779,1,1,0,2,5,GRV,5,7,Dudley,Rd,972602,0,1.047,0,25.122688,5.55,5 +9045,0,1.403006,1,1,0,2,5,,5,7,Martin,Rd,973403,4.51,5.913,0,33.672146,3.7,5 +7519,0,2.757158,1,1,0,2,5,,5,7,Bryce,Rd,962608,3.278,6.034,0,66.171787,3.7,5 +8492,0,3.46332,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,3.96,7.423,0,83.119669,5.55,5 +8510,0,0.775286,1,1,0,2,6,,5,7,Sterling,Rd,972506,3.118,3.893,0,18.606866,5.8,6 +8537,0,0.743173,1,1,0,2,6,,5,7,Foley,Rd,972503,1.256,2,0,17.836161,5.8,6 +20509,0,1.621712,1,1,0,2,5,,5,7,Capac,Rd,4210003,10.913,12.534,0,38.921084,3.7,5 +7747,0,0.452685,1,1,0,2,7,,5,7,Imlay City,Rd,962606,2.581,3.033,0,10.864441,5.8,6 +7774,0,0.551861,1,1,0,2,5,,5,7,Downey,Rd,962605,0,0.552,0,13.244661,3.7,5 +20763,0,0.318866,1,1,0,2,5,,5,7,Capac,Rd,4210003,9.588,9.907,0,7.652786,3.7,5 +25910,0,1.41409,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.938164,0.15,4 +29562,0,1.430371,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,34.328911,0.15,4 +7563,0,0.562679,1,1,0,2,5,,5,7,Imlay City,Rd,962606,2.018,2.581,0,13.504306,3.7,5 +7524,0,0.629919,1,1,0,2,7,,5,7,Mill,St,962608,2.174,2.804,0,15.118067,5.8,6 +7567,0,1.049939,1,1,0,2,5,,4,7,Downey,Rd,962605,0.552,1.602,0,25.198534,5.8,4.5 +7732,0,0.149501,1,1,0,2,7,,4,7,Mill,St,962608,2.025,2.174,0,3.58802,6.55,4.5 +20074,0,0.681812,1,1,0,2,5,,4,7,Main,St,4210003,8.906,9.588,0,16.363499,5.8,4.5 +26081,0,0.090172,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,2.164134,0.15,4 +20272,0,0.251161,1,1,0,2,5,,4,7,Main,St,4210003,8.655,8.906,0,6.027869,5.8,4.5 +28258,0,0.249799,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.995166,0.15,4 +7727,0,0.47392,1,1,0,2,5,,5,7,Bryce,Rd,962608,2.804,3.278,0,11.374088,3.7,5 +8538,0,1.256616,1,1,0,2,6,,5,7,Foley,Rd,972503,0,1.256,0,30.15879,5.8,6 +20514,0,1.006457,1,1,0,2,5,,5,7,Capac,Rd,4210003,9.907,10.913,0,24.154973,3.7,5 +28221,0,1.236766,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,29.682395,0.15,4 +25909,0,0.397894,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.549454,0.15,4 +8495,0,0.993664,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,2.086,3.079,0,23.847934,5.55,5 +8516,0,1.559758,1,1,0,2,6,,5,7,Sterling,Rd,972506,1.559,3.118,0,37.434202,5.8,6 +20116,0,2.007646,1,1,0,2,5,,5,7,Capac,Rd,4210003,13.83,15.838,0,48.1835,3.7,5 +25610,0,2.311205,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,55.468918,0.15,4 +8493,0,0.881013,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,3.079,3.96,0,21.144301,5.55,5 +8517,0,1.558997,1,1,0,2,6,,5,7,Sterling,Rd,972506,0,1.559,0,37.415923,5.8,6 +20316,0,1.296272,1,1,0,2,5,,5,7,Capac,Rd,4210003,12.534,13.83,0,31.110529,3.7,5 +25914,0,0.947939,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.75053,0.15,4 +25608,0,0.431657,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,10.359769,0.15,4 +21289,0,0.242001,1,1,0,2,6,,5,7,Mason,Rd,4502078,0,0.242,0,5.808033,5.8,6 +8468,0,1.006521,1,1,0,2,5,,5,7,Yale,Rd,972601,2.301,3.308,0,24.156495,3.7,5 +8427,0,0.996656,1,1,0,2,5,,5,7,Dudley,Rd,972602,2.055,3.051,0,23.919738,3.7,5 +21380,0,0.967524,1,1,0,2,5,,5,7,Winn,Rd,4500090,0,0.967,0,23.220569,3.7,5 +8472,0,1.008251,1,1,0,2,5,,5,7,Yale,Rd,972601,1.293,2.301,0,24.198026,3.7,5 +9019,0,0.503394,1,1,0,2,5,,5,7,Winn,Rd,973505,0.499,1.002,0,12.081455,3.7,5 +20561,0,0.502167,1,1,0,2,5,,5,7,Capac,Rd,4210003,16.837,17.339,0,12.052002,3.7,5 +9031,0,0.498946,1,1,0,2,5,,5,7,Winn,Rd,973505,0,0.499,0,11.974696,3.7,5 +34017,0,1.610046,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +4204,1,1.194787,2,0,0,1,1,,5,4,E I 94,,798501,22.7,23.894,0,,1.02,7 +4797,-1,1.317491,0,2,0,1,1,,5,4,W I 94,,798502,22.654,23.971,0,,1.02,7 +5585,0,0.538066,1,1,0,2,4,,4,4,Gratiot,Ave,832010,9.423,9.961,0,12.913588,4.5,4.5 +5947,0,0.096183,1,1,0,2,5,,4,4,Main,St,814905,4.812,4.908,0,2.308393,5.8,4.5 +7347,-1,1.681861,0,2,0,1,1,,5,7,W I 69,,962902,21.616,23.297,0,,1.02,7 +7483,1,1.534825,2,0,0,1,1,,5,7,E I 69,,962706,21.651,23.185,0,,1.02,7 +7750,0,1.4678,1,1,0,2,5,,5,7,Gratiot,Ave,963509,9.411,10.879,0,35.227201,3.7,5 +7962,0,1.270297,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,10.369,11.639,0,30.487135,3.7,5 +8192,-1,4.805512,0,2,0,1,1,,5,7,W I 94,,967804,7.833,12.638,0,,1.02,7 +8223,0,2.03984,1,1,0,2,5,,5,7,Meisner,Rd,967607,7.111,9.151,0,48.956148,3.7,5 +8241,1,4.402115,2,0,0,1,1,,5,7,E I 94,,967606,7.845,12.246,0,,1.02,7 +8245,0,3.525822,1,1,0,2,5,,5,7,Green,Dr,967507,0.089,3.615,0,84.61972,3.7,5 +8249,0,0.872635,1,1,0,2,5,,5,7,La Croix,Rd,967504,0.12,0.992,0,20.943234,3.7,5 +8251,0,1.452885,1,1,0,2,5,,5,7,Columbine,St,967409,0.081,1.534,0,34.869229,3.7,5 +8258,0,0.702362,1,1,0,2,6,,5,7,Channel,Dr,967406,0,0.702,0,16.856689,5.8,6 +8305,0,1.023422,1,1,0,2,5,,5,7,Palms,Rd,965609,3.419,4.442,0,24.562122,3.7,5 +8315,0,1.018455,1,1,0,2,6,GRV,5,7,Church,Rd,965408,2.151,3.169,0,24.442909,5.55,5 +8644,0,1.012413,1,1,0,2,5,,5,7,King,Rd,970305,1.292,2.304,0,24.297921,3.7,5 +8676,0,1.064279,1,1,0,2,5,,5,7,Indian,Trl,970302,1.524,2.588,0,25.542706,3.7,5 +8691,0,1.031804,1,1,0,2,5,,5,7,County Line,Rd,970206,1.021,2.053,0,24.763287,3.7,5 +8739,0,1.018808,1,1,0,2,4,,5,7,Marine City,Hwy,970205,7.111,8.129,0,24.451404,3,4 +8929,0,1.02188,1,1,0,2,5,,5,7,Shea,Rd,969506,2.071,3.093,0,24.525118,3.7,5 +8938,0,1.101865,1,1,0,2,5,,5,7,Swartout,Rd,974006,0.673,1.774,0,26.444753,3.7,5 +8970,0,1.017718,1,1,0,2,5,,5,7,Griswold,Rd,969503,1.978,2.996,0,24.425222,3.7,5 +9042,0,1.438572,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,9.036,10.474,0,34.525718,3.7,5 +20518,0,2.031149,1,1,0,2,4,,5,7,Fred W Moore,Hwy,4210005,7.363,9.394,0,48.747568,3,4 +21196,0,0.919915,1,1,0,2,4,,5,7,Pointe Tremble,Rd,4502633,9.212,10.141,0,22.077952,3,4 +21982,0,0.718372,1,1,0,2,4,,4,7,Main,St,4502782,0.633,1.351,0,17.240921,4.5,4.5 +25966,0,1.325467,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,31.811211,0.15,4 +28222,0,1.067267,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.614412,0.15,4 +29149,0,1.06695,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.606811,0.15,4 +29151,0,1.532654,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,36.783697,0.15,4 +29152,0,0.997452,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.938838,0.15,4 +29153,0,1.154577,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.70984,0.15,4 +29157,0,1.449376,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,34.785029,0.15,4 +29161,0,1.944637,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,46.671292,0.15,4 +29163,0,1.164328,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.94386,0.15,4 +29169,0,0.575005,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.800114,0.15,4 +29170,0,1.611253,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,38.670081,0.15,4 +29172,0,0.536926,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.886223,0.15,4 +29174,0,0.161298,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.871151,0.15,4 +29175,0,1.733701,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,41.608832,0.15,4 +29178,0,1.380924,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.142164,0.15,4 +29181,0,2.002622,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,48.062925,0.15,4 +29193,0,1.88605,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,45.2652,0.15,4 +29269,0,1.536222,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,36.869322,0.15,4 +29314,0,2.112299,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,50.695187,0.15,4 +29323,0,1.550118,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,37.202837,0.15,4 +6478,0,2.637305,1,1,0,2,5,,4,4,River,Rd,831807,2.977,5.614,0,63.295332,5.8,4.5 +8777,0,0.990169,1,1,0,2,4,,5,7,Marine City,Hwy,970205,1.017,2.007,0,23.76405,3,4 +8801,0,3.600582,1,1,0,2,6,,5,7,Middle Channel,Dr,974320,0.898,4.498,0,86.413971,5.8,6 +21206,0,0.256641,1,1,0,2,4,,5,7,Dixie,Hwy,4502633,0,0.257,0,6.159389,3,4 +21335,0,1.280045,1,1,0,2,5,,5,7,Bethuy,Rd,4501164,0.17,1.45,0,30.721075,3.7,5 +25927,0,2.833883,1,1,0,2,99,,,4,Centroid Connector,,0,0,0,0,68.013193,0.15,4 +29139,0,0.581812,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.963496,0.15,4 +29192,0,0.903461,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,21.683069,0.15,4 +3902,0,1.730893,1,1,0,2,5,,4,4,River,Rd,800901,3.502,5.233,0,41.541432,5.8,4.5 +29199,0,0.401655,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.639717,0.15,4 +4069,1,0.874759,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,0,0.875,0,20.994209,3.7,5 +4649,0,1.153416,1,1,0,2,4,,4,4,River,Rd,800901,2.349,3.502,0,27.681993,4.5,4.5 +5550,1,0.877742,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,13.569,14.446,0,21.065818,3.7,5 +24543,0,0.01679,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,11.265,11.281,0,0.402968,4.5,4.5 +24935,0,0.664724,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.953364,0.15,4 +25929,0,0.386986,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.287655,0.15,4 +29871,0,0.631265,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.150368,0.15,4 +4880,1,0.454423,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,801202,0.875,1.329,0,10.906144,3.7,5 +5551,1,0.264648,2,0,0,2,3,DIV,4,4,Metropolitan,Pkwy,803608,13.304,13.569,0,6.351557,3.7,5 +25928,0,0.309236,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.421672,0.15,4 +29870,0,0.327534,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.86082,0.15,4 +4992,0,0.314,1,1,0,2,4,,4,4,River,Rd,800901,2.035,2.349,0,7.53599,4.5,4.5 +24934,0,0.363034,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.712827,0.15,4 +6070,0,0.519014,1,1,0,2,4,,4,4,Bridgeview,St,831906,0,0.519,0,12.456327,4.5,4.5 +24115,0,0.54365,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,10.721,11.265,0,13.047599,4.5,4.5 +24196,0,0.615431,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,11.607,12.222,0,14.770343,4.5,4.5 +24305,0,0.3252,1,1,0,2,4,,4,4,Jefferson,Ave,4718263,11.281,11.607,0,7.80479,4.5,4.5 +29197,0,1.360813,1,1,0,2,99,,,4,Centroid Connector,,0,0,0,0,32.659513,0.15,4 +3920,0,0.677478,1,1,0,2,5,,4,4,Cotton,Rd,801306,1.151,1.829,0,16.259467,5.8,4.5 +4208,1,1.450928,2,0,0,1,1,,5,4,E I 94,,798501,20.736,22.187,0,,1.02,7 +5012,-1,1.320981,0,2,0,1,1,,5,4,W I 94,,798502,20.806,22.127,0,,1.02,7 +5576,0,0.776007,1,1,0,2,4,,4,4,Jefferson,Ave,821205,3.119,3.895,0,18.624162,4.5,4.5 +5936,0,0.561803,1,1,0,2,5,,4,4,Donner,Rd,814703,0,0.562,0,13.483276,5.8,4.5 +6087,0,0.509592,1,1,0,2,5,,4,4,Callens,Rd,814710,0.875,1.385,0,12.230206,5.8,4.5 +6141,0,0.241362,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,3.457,3.698,0,5.792678,5.8,4.5 +6215,0,0.29802,2,2,1,2,4,,4,4,23 Mile,Rd,807106,16.444,16.742,0,7.152481,4.5,4.5 +6454,0,0.510452,1,1,0,2,5,,4,4,24 Mile,Rd,819202,1.018,1.529,0,12.250856,5.8,4.5 +6533,0,0.543458,1,1,0,2,4,,5,4,Washington,St,814905,2.164,2.707,0,13.042996,3,4 +6543,0,0.895352,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,2.562,3.457,0,21.488447,5.8,4.5 +6562,0,0.502045,1,1,0,2,4,,5,4,26 Mile,Rd,816702,15.989,16.491,0,12.049089,3,4 +6883,0,1.468451,1,1,0,2,4,,4,4,Jefferson,Ave,821205,3.895,5.363,0,35.242825,4.5,4.5 +29200,0,1.162364,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,27.896748,0.15,4 +29203,0,0.274085,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.57805,0.15,4 +29209,0,0.566507,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.596158,0.15,4 +29212,0,0.452941,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.870589,0.15,4 +29215,0,0.359909,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.637811,0.15,4 +29225,0,0.960236,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,23.045661,0.15,4 +29235,0,0.389177,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.340246,0.15,4 +6378,0,1.067257,1,1,0,2,4,,4,4,Jefferson,Ave,821205,1.452,2.519,0,25.614158,4.5,4.5 +25923,0,0.537717,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.905209,0.15,4 +29205,0,0.559276,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.422634,0.15,4 +20615,0,0.546289,1,1,0,2,4,,4,4,William P Rosso,Hwy,4205105,0.666,1.213,0,13.11094,4.5,4.5 +4057,0,0.515797,1,1,0,2,5,,4,4,Cotton,Rd,801306,0.577,1.092,0,12.379117,5.8,4.5 +5384,0,0.503554,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,1.119,1.622,0,12.085294,5.8,4.5 +5602,0,0.69589,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.74,11.436,0,16.701356,4.5,4.5 +6573,0,0.347126,2,2,0,2,4,,4,4,Jefferson,Ave,821205,0.21,0.557,0,8.331016,4.5,4.5 +6799,0,0.262586,1,1,0,2,4,,4,4,Jefferson,Ave,821205,1.189,1.452,0,6.302053,4.5,4.5 +25918,0,0.322597,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.742334,0.15,4 +25919,0,0.339991,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.159775,0.15,4 +28619,0,0.647292,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.535007,0.15,4 +29818,0,0.672565,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.141571,0.15,4 +5997,0,0.429828,2,2,1,2,4,,4,4,21 Mile,Rd,817708,10.31,10.74,0,10.315872,4.5,4.5 +25921,0,0.533874,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.812974,0.15,4 +6319,0,0.169683,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,0.949,1.119,0,4.07239,5.8,4.5 +29819,0,0.583685,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.008441,0.15,4 +4220,0,0.059061,1,1,0,2,5,,4,4,Cotton,Rd,801306,1.092,1.151,0,1.41747,5.8,4.5 +6158,0,0.378572,2,2,0,2,4,,4,4,Jefferson,Ave,821205,0.557,0.935,0,9.085719,4.5,4.5 +5405,0,0.253841,1,1,0,2,4,,4,4,Jefferson,Ave,821205,0.935,1.189,0,6.092194,4.5,4.5 +37234,0,1.006589,1,1,0,2,5,,4,4,Hayes,Rd,4208921,9.118,10.124,0,24.158146,5.8,4.5 +37289,-1,0.040478,0,2,0,2,4,,4,5,Geddes,Rd,4606143,0,0.04,0,0.971473,4.5,4.5 +37241,-1,0.034487,0,1,0,2,4,,4,4,25 Mile,Rd,4211018,0.046,0.08,0,0.827685,4.5,4.5 +37240,-1,0.018111,0,1,0,2,4,,4,4,25 Mile,Rd,4211018,0.028,0.046,0,0.434654,4.5,4.5 +37247,-1,0.026463,0,1,0,2,4,,4,4,Hayes,Rd,4211017,0.052,0.079,0,0.635116,4.5,4.5 +4344,0,0.484695,1,1,0,2,5,,4,4,Cotton,Rd,801306,0.092,0.577,0,11.632686,5.8,4.5 +6271,0,0.299335,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,1.836,2.135,0,7.184043,5.8,4.5 +6703,0,0.213389,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,1.622,1.836,0,5.121336,5.8,4.5 +6965,0,0.426913,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,2.135,2.562,0,10.245919,5.8,4.5 +5976,0,0.600474,1,1,0,2,4,,4,4,Jefferson,Ave,821205,2.519,3.119,0,14.411367,4.5,4.5 +6957,0,0.580208,1,1,0,2,5,,4,4,Sugarbush,Rd,817906,3.698,4.278,0,13.924989,5.8,4.5 +29202,0,0.85315,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,20.475597,0.15,4 +29206,0,0.413064,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.913527,0.15,4 +3912,1,2.646615,2,0,0,1,1,,4,4,E I 94,,798501,18.09,20.736,0,,0.8,7.5 +4568,-1,2.705638,0,2,0,1,1,,4,4,W I 94,,798502,18.101,20.806,0,,0.8,7.5 +6223,0,0.811227,2,2,1,2,4,,4,4,23 Mile,Rd,807106,14.266,15.077,0,19.469457,4.5,4.5 +6297,0,1.20818,2,2,1,2,4,,5,4,Gratiot,Ave,832010,7.875,9.083,0,28.996319,3,4 +6564,0,0.691187,1,1,0,2,4,,4,4,26 Mile,Rd,816702,14.304,14.995,0,16.588479,4.5,4.5 +6587,0,0.611711,2,2,1,2,4,,4,4,Gratiot,Ave,832010,7.263,7.875,0,14.681066,4.5,4.5 +25949,0,1.418558,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,34.045403,0.15,4 +29220,0,0.780942,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.742611,0.15,4 +29498,0,0.767878,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.429079,0.15,4 +29500,0,0.954573,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,22.90976,0.15,4 +3935,1,0.368447,3,0,0,1,1,,4,4,E I 94,,798501,17.358,17.726,0,,0.8,7.5 +4435,1,0.303814,1,0,0,1,1,RON,4,4,E 23 Mile/E I 94,RAMP,801308,0,0.304,0,,1.09,4 +4641,-1,0.309945,0,3,0,1,1,,4,4,W I 94,,798502,17.486,17.796,0,,0.8,7.5 +4738,1,0.426915,1,0,0,1,1,ROF,4,4,W I 94/23 Mile,RAMP,801702,0,0.427,0,,2.24,5 +4750,1,0.487422,1,0,0,1,1,ROF,4,4,E I 94/23 Mile,RAMP,801307,0,0.487,0,,2.24,5 +5065,1,0.312823,1,0,0,1,1,RON,4,4,W 23 Mile/W I 94,RAMP,801701,0,0.313,0,,1.09,4 +5584,0,1.007013,2,2,1,2,4,,4,4,Gratiot,Ave,832010,5.508,6.515,0,24.168305,4.5,4.5 +6648,0,0.098087,2,2,1,2,3,,4,4,23 Mile,Rd,807106,14.045,14.143,0,2.354076,3.7,5 +6806,0,0.611785,2,2,1,2,4,,4,4,Gratiot,Ave,832010,6.652,7.263,0,14.682833,4.5,4.5 +29138,0,0.776974,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.647371,0.15,4 +29223,0,0.502383,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.05718,0.15,4 +4150,1,0.242298,1,0,0,1,1,RON,4,4,23 Mile/W I 94,RAMP,801610,0,0.242,0,,1.09,4 +5901,0,0.398094,2,2,1,2,3,,4,4,Gratiot,Ave,832010,5.11,5.508,0,9.554263,3.7,5 +6655,0,0.306511,2,2,1,2,3,,4,4,23 Mile,Rd,807106,13.461,13.767,0,7.356266,3.7,5 +4944,0,0.328317,1,1,0,2,5,,4,4,Cotton,Rd,801306,1.829,2.157,0,7.879597,5.8,4.5 +24928,0,0.165028,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,3.960668,0.15,4 +6233,0,0.179091,2,2,1,2,3,,4,4,23 Mile,Rd,807106,13.767,13.946,0,4.298192,3.7,5 +6653,0,0.027098,2,2,1,2,3,,4,4,23 Mile,Rd,807106,13.946,13.973,0,0.650343,3.7,5 +6232,0,0.07123,2,2,1,2,3,,4,4,23 Mile,Rd,807106,13.973,14.045,0,1.709516,3.7,5 +5416,0,0.136919,2,2,1,2,4,,4,4,Gratiot,Ave,832010,6.515,6.652,0,3.286058,4.5,4.5 +6682,0,0.664551,1,1,0,2,5,,4,4,Donner,Rd,814703,0.562,1.226,0,15.949213,5.8,4.5 +29222,0,0.288024,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.912565,0.15,4 +4161,1,0.260686,1,0,0,1,1,RON,4,4,23 Mile/E I 94,RAMP,801310,0,0.261,0,,1.09,4 +4209,1,0.364064,3,0,0,1,1,,4,4,E I 94,,798501,17.726,18.09,0,,0.8,7.5 +4922,-1,0.30511,0,2,0,1,1,,4,4,W I 94,,798502,17.796,18.101,0,,0.8,7.5 +6228,0,0.059629,2,2,1,2,3,,4,4,23 Mile,Rd,807106,14.143,14.202,0,1.431087,3.7,5 +6639,0,0.063444,2,2,1,2,3,,4,4,23 Mile,Rd,807106,14.202,14.266,0,1.522663,3.7,5 +5796,0,0.683389,1,1,0,2,4,,5,4,26 Mile,Rd,816702,13.621,14.304,0,16.401335,3,4 +25957,0,1.208522,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,29.004539,0.15,4 +25958,0,0.606707,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,14.560959,0.15,4 +6153,0,0.350377,1,1,0,2,4,,5,4,26 Mile,Rd,816702,13.271,13.621,0,8.409044,3,4 +29173,0,0.7612,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.268795,0.15,4 +6109,0,0.221972,1,1,0,2,5,,4,4,24 Mile,Rd,819202,0.184,0.405,0,5.327327,5.8,4.5 +6259,0,0.550018,1,1,0,2,5,,4,4,Foster,Rd,814707,0,0.55,0,13.200439,5.8,4.5 +6630,0,0.293452,2,2,1,2,4,,4,4,23 Mile,Rd,807106,15.516,15.81,0,7.042841,4.5,4.5 +6657,0,0.291815,1,1,0,2,5,,4,4,Sass,Rd,814708,0.766,1.058,0,7.00355,5.8,4.5 +6753,0,0.341268,1,1,0,2,5,,4,4,Callens,Rd,814710,0,0.341,0,8.190423,5.8,4.5 +29211,0,0.914014,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,21.93634,0.15,4 +29214,0,0.529927,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.718237,0.15,4 +29228,0,0.211318,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.071641,0.15,4 +29820,0,0.522348,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.53635,0.15,4 +29827,0,0.630562,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.133485,0.15,4 +6222,0,0.222887,2,2,1,2,4,,4,4,23 Mile,Rd,807106,15.294,15.516,0,5.349276,4.5,4.5 +6638,0,0.21683,2,2,1,2,4,,4,4,23 Mile,Rd,807106,15.077,15.294,0,5.203917,4.5,4.5 +29229,0,0.386834,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.284024,0.15,4 +6635,0,0.516447,1,1,0,2,5,,4,4,Foster,Rd,814707,0.55,1.066,0,12.394718,5.8,4.5 +6513,0,0.18352,1,1,0,2,5,,4,4,24 Mile,Rd,819202,0,0.184,0,4.404473,5.8,4.5 +6322,0,0.452929,1,1,0,2,5,,4,4,Callens,Rd,814710,0.341,0.794,0,10.870305,5.8,4.5 +6628,0,0.307836,2,2,1,2,4,,4,4,23 Mile,Rd,807106,16.136,16.444,0,7.388067,4.5,4.5 +6676,0,0.395231,1,1,0,2,5,,4,4,Sass,Rd,814708,0.118,0.513,0,9.485551,5.8,4.5 +25916,0,0.357892,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.589408,0.15,4 +29216,0,0.266668,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.40003,0.15,4 +6220,0,0.118166,1,1,0,2,5,,4,4,Sass,Rd,814708,0,0.118,0,2.835993,5.8,4.5 +29218,0,0.249828,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.995862,0.15,4 +6216,0,0.326381,2,2,1,2,4,,4,4,23 Mile,Rd,807106,15.81,16.136,0,7.833141,4.5,4.5 +6255,0,0.253231,1,1,0,2,5,,4,4,Sass,Rd,814708,0.513,0.766,0,6.07755,5.8,4.5 +6500,0,0.081141,1,1,0,2,5,,4,4,Callens,Rd,814710,0.794,0.875,0,1.947395,5.8,4.5 +5748,0,0.613109,1,1,0,2,5,,4,4,24 Mile,Rd,819202,0.405,1.018,0,14.71461,5.8,4.5 +6236,0,0.474098,1,1,0,2,5,,4,4,Sass,Rd,814708,1.058,1.532,0,11.378349,5.8,4.5 +29210,0,0.706726,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.961433,0.15,4 +29213,0,0.502481,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.059555,0.15,4 +5794,0,0.563933,1,1,0,2,4,,5,4,26 Mile,Rd,816702,15.425,15.989,0,13.534397,3,4 +6041,0,0.974062,1,1,0,2,4,,5,4,New Haven,Rd,814905,2.996,3.97,0,23.377481,3,4 +6073,0,0.340323,1,1,1,2,4,,4,4,Gratiot,Ave,832010,9.083,9.423,0,8.167743,4.5,4.5 +6152,0,0.429871,1,1,0,2,4,,4,4,26 Mile,Rd,816702,14.995,15.425,0,10.316905,4.5,4.5 +6341,0,0.404465,1,1,0,2,5,,4,4,Main,St,814905,4.408,4.812,0,9.707168,5.8,4.5 +6677,0,0.377819,1,1,0,2,4,,4,4,Main,St,814905,3.97,4.348,0,9.067656,4.5,4.5 +40114,-1,0.323607,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,4416846,0,0.324,0,7.766569,3.7,5 +6256,0,0.059751,1,1,0,2,4,,4,4,Main,St,814905,4.348,4.408,0,1.434022,4.5,4.5 +40113,0,0.011304,1,1,0,2,4,,4,3,11 Mile,Rd,634509,0.992,1.003,0,0.271294,4.5,4.5 +3936,1,0.327089,2,0,0,1,1,ROF,5,4,E I 94/New Haven,RAMP,801403,0,0.327,0,,2.24,5 +4421,1,0.318161,2,0,0,1,1,RON,4,4,New Haven/W I 94,RAMP,801705,0,0.318,0,,1.09,4 +29226,0,0.47531,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,11.407439,0.15,4 +6448,0,0.067524,1,1,0,2,4,,4,4,New Haven,Rd,814905,2.929,2.996,0,1.620576,4.5,4.5 +6132,0,0.221729,1,1,0,2,4,,5,4,New Haven,Rd,814905,2.707,2.929,0,5.321489,3,4 +5468,0,0.995881,1,1,0,2,4,,4,4,Washington,St,814905,0.211,1.207,0,23.901142,4.5,4.5 +5604,0,0.793094,1,1,0,2,4,,4,4,Washington,St,814905,1.371,2.164,0,19.034257,4.5,4.5 +5607,0,0.275535,1,1,0,2,5,,5,4,Baker,Rd,814801,1.444,1.719,0,6.612841,3.7,5 +6150,0,0.957788,1,1,0,2,4,,5,4,26 Mile,Rd,816702,17.469,18.427,0,22.986905,3,4 +6619,0,0.355786,2,2,0,2,4,,4,4,Green,St,807106,18.002,18.358,0,8.538873,4.5,4.5 +6964,0,0.296338,1,1,0,2,5,,4,4,County Line,Rd,814910,0.676,0.972,0,7.112101,5.8,4.5 +20109,0,0.432409,1,1,0,2,5,,4,4,Main,St,4208331,0,0.432,0,10.377804,5.8,4.5 +29196,0,0.721271,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.310515,0.15,4 +29207,0,1.073826,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.771826,0.15,4 +29230,0,0.754184,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,18.100415,0.15,4 +29232,0,0.607165,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.571958,0.15,4 +29236,0,0.604734,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,14.513612,0.15,4 +29237,0,0.933,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,22.392008,0.15,4 +30205,0,0.732359,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,17.576609,0.15,4 +6044,0,0.616447,1,1,0,2,5,,4,4,24 Mile,Rd,819202,1.529,2.145,0,14.794732,5.8,4.5 +6507,0,0.364064,1,1,0,2,5,,4,4,Baker,Rd,814801,0,0.364,0,8.737525,5.8,4.5 +6623,0,0.512796,2,2,1,2,4,,4,4,23 Mile,Rd,807106,17.327,17.84,0,12.307115,4.5,4.5 +29234,0,0.521702,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,12.520842,0.15,4 +6211,0,0.493516,2,2,1,2,4,,4,4,23 Mile,Rd,807106,16.834,17.327,0,11.844373,4.5,4.5 +6626,0,0.092218,2,2,1,2,4,,4,4,23 Mile,Rd,807106,16.742,16.834,0,2.213226,4.5,4.5 +6099,0,0.668239,1,1,0,2,5,,4,4,Baker,Rd,814801,0.364,1.032,0,16.037735,5.8,4.5 +6000,0,0.411588,1,1,0,2,5,,5,4,Baker,Rd,814801,1.032,1.444,0,9.878124,3.7,5 +6208,0,0.161577,2,2,1,2,4,,4,4,23 Mile,Rd,807106,17.84,18.002,0,3.877843,4.5,4.5 +29233,0,0.706569,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.957666,0.15,4 +5659,0,0.142813,1,1,0,2,5,,4,4,24 Mile,Rd,819202,2.145,2.288,0,3.427503,5.8,4.5 +5999,0,0.164211,1,1,0,2,4,,4,4,Washington,St,814905,1.207,1.371,0,3.941062,4.5,4.5 +3911,1,0.513079,2,0,0,1,1,,5,4,E I 94,,798501,22.187,22.7,0,,1.02,7 +4043,1,0.371122,1,0,0,1,1,ROF,5,4,W I 94/26 Mile,RAMP,801707,0,0.371,0,,2.24,5 +4674,-1,0.527336,0,2,0,1,1,,5,4,W I 94,,798502,22.127,22.654,0,,1.02,7 +4960,1,0.385764,1,0,0,1,1,ROF,5,4,E I 94/26 Mile,RAMP,801405,0,0.386,0,,2.24,5 +5793,0,0.318838,1,1,0,2,4,,5,4,26 Mile,Rd,816702,17.057,17.376,0,7.652113,3,4 +29208,0,0.578716,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,13.889186,0.15,4 +6151,0,0.566497,1,1,0,2,4,,5,4,26 Mile,Rd,816702,16.491,17.057,0,13.595929,3,4 +4147,1,0.240509,1,0,0,1,1,RON,5,4,26 Mile/W I 94,RAMP,801706,0,0.241,0,,1.09,4 +4609,1,0.202104,1,0,0,1,1,RON,5,4,26 Mile/E I 94,RAMP,801407,0,0.202,0,,1.09,4 +6558,0,0.093158,1,1,0,2,4,,5,4,26 Mile,Rd,816702,17.376,17.469,0,2.235803,3,4 +5859,0,0.141129,1,1,0,2,5,,4,4,Washington,St,814905,0.07,0.211,0,3.387088,5.8,4.5 +6140,0,0.481239,1,1,0,2,5,,4,4,Main,St,815001,0,0.481,0,11.549741,5.8,4.5 +6205,0,0.140712,2,2,0,2,4,,4,4,Green,St,807106,18.358,18.498,0,3.377083,4.5,4.5 +6616,0,0.470308,2,2,0,2,4,,4,4,Green,St,807106,19.08,19.55,0,11.287394,4.5,4.5 +20072,0,0.280371,1,1,0,2,5,,4,4,Main,St,4208331,0.575,0.855,0,6.728895,5.8,4.5 +29195,0,0.43204,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.368964,0.15,4 +20073,0,0.142704,1,1,0,2,5,,4,4,Main,St,4208331,0.432,0.575,0,3.424902,5.8,4.5 +6196,0,0.49319,1,1,0,2,5,,4,4,County Line,Rd,814910,0.183,0.676,0,11.836571,5.8,4.5 +6204,0,0.298689,2,2,0,2,4,,4,4,Green,St,807106,18.781,19.08,0,7.168536,4.5,4.5 +29219,0,0.546124,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.106976,0.15,4 +29231,0,0.390561,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.373458,0.15,4 +6617,0,0.282776,2,2,0,2,4,,4,4,Green,St,807106,18.498,18.781,0,6.786624,4.5,4.5 +6606,0,0.182618,1,1,0,2,5,,4,4,County Line,Rd,814910,0,0.183,0,4.382839,5.8,4.5 +20070,0,0.180839,1,1,0,2,5,,4,4,Main,St,4208331,0.855,1.036,0,4.340134,5.8,4.5 +6602,0,0.517674,1,1,0,2,4,,4,4,Dixie,Hwy,807106,19.612,20.13,0,12.424174,4.5,4.5 +29244,0,0.389217,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,9.341207,0.15,4 +6203,0,0.0623,2,2,0,2,4,,4,4,Dixie,Hwy,807106,19.55,19.612,0,1.495192,4.5,4.5 +8713,0,1.021156,1,1,0,2,5,,5,7,County Line,Rd,970206,0,1.021,0,24.507754,3.7,5 +8781,0,1.016982,1,1,0,2,4,,5,7,Marine City,Hwy,970205,0,1.017,0,24.407576,3,4 +21334,0,1.016928,1,1,0,2,5,,5,7,Bethuy,Rd,4501164,1.45,2.467,0,24.406282,3.7,5 +6542,0,0.538216,1,1,0,2,5,,4,4,County Line,Rd,814910,0.972,1.51,0,12.91719,5.8,4.5 +29194,0,0.096357,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,2.312561,0.15,4 +19574,0,2.819207,1,1,0,2,5,,5,7,Channel,Dr,1917709,0.531,3.35,0,67.660978,3.7,5 +19681,0,0.531319,1,1,0,2,5,,5,7,Channel,Dr,1917709,0,0.531,0,12.751661,3.7,5 +29140,0,2.398129,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,57.555096,0.15,4 +29141,0,1.293992,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,31.0558,0.15,4 +8742,0,1.030606,1,1,0,2,4,,5,7,Marine City,Hwy,970205,4.031,5.061,0,24.734536,3,4 +8937,0,1.240222,1,1,0,2,5,,5,7,Starville,Rd,974010,1.151,2.391,0,29.765327,3.7,5 +21199,0,1.65444,1,1,0,2,4,,5,7,Dyke,Rd,4502633,4.356,6.011,0,39.706555,3,4 +21200,0,1.047038,1,1,0,2,4,,5,7,Dixie,Hwy,4502633,3.31,4.356,0,25.128908,3,4 +29239,0,1.466696,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,35.200707,0.15,4 +29241,0,0.539579,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.949898,0.15,4 +29242,0,0.920805,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.099322,0.15,4 +8317,0,1.116019,1,1,0,2,5,,5,7,Church,Rd,965408,0,1.116,0,26.784468,3.7,5 +8774,0,1.006788,1,1,0,2,4,,5,7,Marine City,Hwy,970205,2.007,3.014,0,24.162918,3,4 +21202,0,1.127927,1,1,0,2,4,,5,7,Dixie,Hwy,4502633,1.041,2.168,0,27.070241,3,4 +29240,0,2.12375,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,50.969999,0.15,4 +21204,0,0.784021,1,1,0,2,4,,5,7,Dixie,Hwy,4502633,0.257,1.041,0,18.816496,3,4 +8316,0,1.034846,1,1,0,2,5,,5,7,Church,Rd,965408,1.116,2.151,0,24.836303,3.7,5 +21201,0,1.141581,1,1,0,2,4,,5,7,Dixie,Hwy,4502633,2.168,3.31,0,27.39794,3,4 +8757,0,1.017385,1,1,0,2,4,,5,7,Marine City,Hwy,970205,3.014,4.031,0,24.417243,3,4 +29243,0,1.106345,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.552284,0.15,4 +21197,0,3.210894,1,1,0,2,4,,5,7,Dyke,Rd,4502633,6.011,9.212,0,77.061447,3,4 +29136,0,1.283945,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,30.814691,0.15,4 +29148,0,1.570658,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,37.695797,0.15,4 +8818,0,0.898468,1,1,0,2,6,,5,7,Middle Channel,Dr,974320,0,0.898,0,21.563224,5.8,6 +8800,0,0.641092,1,1,0,2,6,,5,7,Cottage,Ln,974401,0,0.641,0,15.386214,5.8,6 +8254,0,0.129287,1,1,0,2,6,,5,7,Golf Course,Rd,967407,1.56,1.689,0,3.10288,5.8,6 +30208,0,1.402707,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.664956,0.15,4 +22093,0,0.053035,1,1,0,2,5,,5,7,Swartout,Rd,4502742,0,0.053,0,1.272841,3.7,5 +8307,0,1.024453,1,1,0,2,5,,5,7,Palms,Rd,965609,1.373,2.397,0,24.586862,3.7,5 +8740,0,2.049889,1,1,0,2,4,,5,7,Marine City,Hwy,970205,5.061,7.111,0,49.197327,3,4 +8927,0,1.53014,1,1,0,2,5,,5,7,Starville,Rd,974010,2.391,3.921,0,36.723355,3.7,5 +8930,0,2.071513,1,1,0,2,5,,5,7,Shea,Rd,969506,0,2.071,0,49.716322,3.7,5 +29145,0,0.827056,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,19.849344,0.15,4 +8308,0,1.017258,1,1,0,2,5,,5,7,Palms,Rd,965609,0.356,1.373,0,24.414182,3.7,5 +8309,0,0.35591,1,1,0,2,5,,5,7,Palms,Rd,965609,0,0.356,0,8.541839,3.7,5 +29238,0,0.9921,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.810389,0.15,4 +8306,0,1.021498,1,1,0,2,5,,5,7,Palms,Rd,965609,2.397,3.419,0,24.515951,3.7,5 +8922,0,1.525925,1,1,0,2,5,,5,7,Starville,Rd,974010,3.921,5.447,0,36.622207,3.7,5 +5665,0,1.054374,1,1,0,2,4,,5,4,Memphis Ridge,Rd,817204,4.022,5.076,0,25.304967,3,4 +6798,0,1.783162,1,1,0,2,5,,5,4,School Section,Rd,822609,2.704,4.487,0,42.795888,3.7,5 +7358,-1,3.723256,0,2,0,1,1,,5,7,W I 69,,962902,11.921,15.643,0,,1.02,7 +7488,1,3.604263,2,0,0,1,1,,5,7,E I 69,,962706,11.98,15.584,0,,1.02,7 +7669,0,0.53999,1,1,0,2,6,GRV,5,7,Lambs,Rd,963704,1.03,1.57,0,12.959753,5.55,5 +7678,0,2.15995,1,1,0,2,5,,5,7,Bauman,Rd,963605,1.086,3.246,0,51.838795,3.7,5 +7776,0,1.032045,1,1,0,2,5,,5,7,Gratiot,Ave,963509,7.4,8.432,0,24.769086,3.7,5 +7877,0,1.005866,1,1,0,2,5,,5,7,Gratiot,Ave,963509,1.488,2.494,0,24.140788,3.7,5 +7929,0,1.531371,1,1,0,2,6,GRV,5,7,Sparling,Rd,961908,2.728,4.259,0,36.752898,5.55,5 +8194,-1,7.292188,0,2,0,1,1,,5,7,W I 94,,967804,0,7.291,0,,1.02,7 +8228,0,1.300887,1,1,0,2,5,,5,7,Meisner,Rd,967607,0,1.301,0,31.221293,3.7,5 +8243,1,7.267295,2,0,0,1,1,,5,7,E I 94,,967606,0,7.266,0,,1.02,7 +8299,0,0.920078,1,1,0,2,5,,5,7,Palms,Rd,965609,12.217,13.137,0,22.081882,3.7,5 +8696,0,1.719063,1,1,0,2,5,,5,7,Alpine,Rd,976210,1.257,2.976,0,41.257502,3.7,5 +8992,0,1.046977,1,1,0,2,5,GRV,5,7,Mayer,Rd,969310,2.527,3.573,0,25.127449,5.55,5 +9047,0,0.76973,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,7.54,8.31,0,18.473528,3.7,5 +9063,0,1.883676,1,1,0,2,5,,5,7,Dolan,Rd,968804,1.437,3.32,0,45.208217,3.7,5 +20861,0,1.47849,1,1,0,2,4,,5,7,Division,Rd,4210005,0.774,2.252,0,35.483754,3,4 +25936,0,1.055761,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,25.338252,0.15,4 +25961,0,1.701797,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,40.843137,0.15,4 +28204,0,2.495428,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,59.890268,0.15,4 +28205,0,1.799406,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,43.185737,0.15,4 +28208,0,1.431796,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,34.363097,0.15,4 +29189,0,0.882038,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,21.168911,0.15,4 +5502,0,0.12573,1,1,1,2,4,,4,4,Gratiot,Ave,832010,15.152,15.278,0,3.017515,4.5,4.5 +6008,0,2.362336,1,1,0,2,5,,5,4,Ridge,St,817602,8.552,10.914,0,56.696068,3.7,5 +6298,0,1.199762,1,1,0,2,4,,5,4,Gratiot,Ave,832010,11.536,12.736,0,28.794276,3,4 +6416,0,0.604247,1,1,0,2,6,GRV,5,4,29 Mile,Rd,815710,14.546,15.15,0,14.501937,5.55,5 +6775,0,0.612061,1,1,0,2,4,,4,4,Division,Rd,815804,16.591,17.203,0,14.689469,4.5,4.5 +6800,0,2.017922,1,1,0,2,5,,5,4,Haven Ridge,Rd,822207,3.403,5.421,0,48.430126,3.7,5 +8680,0,1.245096,1,1,0,2,5,,5,7,County Line,Rd,970206,5.114,6.359,0,29.882295,3.7,5 +20685,0,1.021067,1,1,0,2,5,GRV,5,4,33 Mile,Rd,4204881,3.489,4.51,0,24.505609,5.55,5 +24936,0,2.164716,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,51.953196,0.15,4 +25954,0,1.682395,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,40.377468,0.15,4 +25955,0,1.522598,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,36.542353,0.15,4 +28225,0,1.691954,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,40.606899,0.15,4 +28226,0,1.367259,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,32.814208,0.15,4 +29164,0,1.478718,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,35.489242,0.15,4 +29165,0,0.636702,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,15.280847,0.15,4 +5896,0,1.030728,1,1,0,2,5,,5,4,Haven Ridge,Rd,822207,1.345,2.375,0,24.737463,3.7,5 +6366,0,0.424772,1,1,0,2,5,,4,4,Main,St,814905,4.991,5.415,0,10.194534,5.8,4.5 +6581,0,0.388415,1,1,0,2,5,,4,4,Clark,St,822108,1.932,2.32,0,9.321966,5.8,4.5 +25956,0,1.557295,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,37.375085,0.15,4 +29816,0,1.653703,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,39.688869,0.15,4 +5932,0,0.154134,1,1,0,2,5,,4,4,Main,St,814905,5.415,5.569,0,3.699213,5.8,4.5 +5133,0,0.35506,1,1,0,2,4,,4,4,Gratiot,Ave,832010,9.961,10.316,0,8.521433,4.5,4.5 +5807,0,0.299102,1,1,0,2,5,,4,4,Clark,St,822108,2.879,3.178,0,7.178445,5.8,4.5 +6292,0,1.026781,1,1,0,2,5,,4,4,Haven Ridge,Rd,822207,0.318,1.345,0,24.642737,5.8,4.5 +6481,0,0.931631,1,1,0,2,4,,5,4,Gratiot,Ave,832010,10.605,11.536,0,22.359142,3,4 +29110,0,0.68288,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,16.38912,0.15,4 +6167,0,0.558749,1,1,0,2,5,,4,4,Clark,St,822108,2.32,2.879,0,13.409971,5.8,4.5 +6725,0,0.318248,1,1,0,2,5,,4,4,Haven Ridge,Rd,822207,0,0.318,0,7.63796,5.8,4.5 +6791,0,0.08252,1,1,0,2,5,,4,4,Main,St,814905,4.908,4.991,0,1.980477,5.8,4.5 +29168,0,0.219495,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.267875,0.15,4 +29167,0,0.093523,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.244553,0.15,4 +6807,0,0.288572,1,1,0,2,4,,4,4,Gratiot,Ave,832010,10.316,10.605,0,6.925735,4.5,4.5 +5497,0,1.027801,1,1,0,2,5,,5,4,Haven Ridge,Rd,822207,2.375,3.403,0,24.667233,3.7,5 +6840,0,1.562901,1,1,0,2,6,GRV,5,4,29 Mile,Rd,815710,12.983,14.546,0,37.509616,5.55,5 +5861,0,1.512137,1,1,0,2,4,,5,4,Division,Rd,815804,13.538,15.05,0,36.291292,3,4 +6407,0,1.528436,1,1,0,2,5,,5,4,Ridge,St,817602,7.024,8.552,0,36.682471,3.7,5 +20686,0,0.525117,1,1,0,2,5,GRV,5,4,33 Mile,Rd,4204881,2.964,3.489,0,12.602806,5.55,5 +24937,0,1.430969,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,34.343265,0.15,4 +24939,0,0.731719,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,17.561249,0.15,4 +25606,0,2.430775,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,58.338604,0.15,4 +6358,0,0.04624,1,1,0,2,4,,5,4,Division,Rd,815804,13.492,13.538,0,1.109771,3,4 +5471,0,1.541746,1,1,0,2,4,,5,4,Division,Rd,815804,15.05,16.591,0,37.001907,3,4 +24938,0,1.841071,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,44.185716,0.15,4 +5812,0,1.203584,1,1,0,2,4,,5,4,Gratiot,Ave,832010,13.949,15.152,0,28.886026,3,4 +6015,0,0.664869,1,1,0,2,6,,5,4,29 Mile,Rd,815710,15.15,15.815,0,15.956851,5.8,6 +8683,0,1.017384,1,1,0,2,5,,5,7,County Line,Rd,970206,3.076,4.093,0,24.417217,3.7,5 +29166,0,1.708622,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,41.006939,0.15,4 +5981,0,1.213258,1,1,0,2,4,,5,4,Gratiot,Ave,832010,12.736,13.949,0,29.118201,3,4 +28227,0,1.217013,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,29.208321,0.15,4 +8684,0,1.02363,1,1,0,2,5,,5,7,County Line,Rd,970206,2.053,3.076,0,24.567123,3.7,5 +8682,0,1.020848,1,1,0,2,5,,5,7,County Line,Rd,970206,4.093,5.114,0,24.500353,3.7,5 +25960,0,0.655353,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,15.728484,0.15,4 +6050,0,1.535965,1,1,0,2,4,,5,4,Memphis Ridge,Rd,817204,2.486,4.022,0,36.863159,3,4 +6052,0,0.292308,1,1,1,2,4,,4,4,Main,St,817204,0,0.292,0,7.015399,4.5,4.5 +20366,0,0.269647,1,1,0,2,4,,4,4,32 Mile,Rd,4210005,0,0.27,0,6.471522,4.5,4.5 +28232,0,1.542607,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,37.022564,0.15,4 +6051,0,0.479683,1,1,0,2,4,,4,4,Main,St,817204,1.422,1.901,0,11.512396,4.5,4.5 +6460,0,0.199823,1,1,0,2,4,,4,4,Main,St,817204,1.222,1.422,0,4.79575,4.5,4.5 +6752,0,0.088412,1,1,1,2,4,,4,4,Division,Rd,815804,17.513,17.601,0,2.121889,4.5,4.5 +25584,0,0.482691,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.584587,0.15,4 +29249,0,0.499383,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,11.985183,0.15,4 +29252,0,0.214864,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,5.156736,0.15,4 +29807,0,0.36999,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.879755,0.15,4 +5447,0,0.309639,1,1,1,2,4,,4,4,Division,Rd,815804,17.203,17.513,0,7.431345,4.5,4.5 +29250,0,0.425899,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.221566,0.15,4 +5615,0,0.339596,1,1,0,2,5,,4,4,Ridge,St,817602,10.914,11.254,0,8.150295,5.8,4.5 +5666,0,0.373138,1,1,0,2,4,,4,4,Main,St,817204,1.901,2.274,0,8.955322,4.5,4.5 +20684,0,0.666576,1,1,0,2,5,,4,4,33 Mile,Rd,4204881,4.51,5.177,0,15.997832,5.8,4.5 +28228,0,0.660719,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,15.857245,0.15,4 +28230,0,0.293657,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,7.047776,0.15,4 +6459,0,0.211956,1,1,0,2,4,,4,4,Main,St,817204,2.274,2.486,0,5.086945,4.5,4.5 +5667,0,0.929872,1,1,0,2,4,,4,4,Main,St,817204,0.292,1.222,0,22.316935,4.5,4.5 +5798,0,0.646195,1,1,0,2,4,,4,4,Division,Rd,815804,17.714,18.36,0,15.508677,4.5,4.5 +28231,0,0.557414,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.377924,0.15,4 +6320,0,0.112424,1,1,0,2,4,,4,4,Division,Rd,815804,17.601,17.714,0,2.698184,4.5,4.5 +29248,0,0.207114,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,4.970733,0.15,4 +7866,0,0.549261,1,1,0,2,5,,5,7,Gratiot,Ave,963509,0.939,1.488,0,13.182258,3.7,5 +8130,0,0.939292,1,1,0,2,4,,5,7,Gratiot,Ave,963509,0,0.939,0,22.543015,3,4 +20165,0,0.503983,1,1,0,2,4,,5,7,Division,Rd,4210005,0.27,0.774,0,12.095604,3,4 +5134,0,0.139397,1,1,0,2,4,,4,4,Gratiot,Ave,832010,15.278,15.417,0,3.345522,4.5,4.5 +5682,0,0.22272,1,1,0,2,5,,4,7,Bordman,Rd,824010,7.377,7.6,0,5.345286,5.8,4.5 +7580,-1,0.76104,0,2,0,1,1,,5,7,W I 69,,962902,11.16,11.921,0,,1.02,7 +7666,1,0.903943,2,0,0,1,1,,5,7,E I 69,,962706,11.077,11.98,0,,1.02,7 +7711,0,1.01301,1,1,0,2,4,,5,7,Kinney,Rd,961905,1.011,2.024,0,24.312232,3,4 +7712,0,1.707738,1,1,0,2,6,GRV,5,7,Lambs,Rd,961904,2.021,3.729,0,40.985719,5.55,5 +7970,0,0.213393,1,1,0,2,5,,5,7,Mill,Rd,961810,0,0.213,0,5.121444,3.7,5 +9162,0,1.505289,1,1,0,2,6,GRV,5,7,Burt,Rd,972704,8.987,10.492,0,36.126938,5.55,5 +9193,0,2.009592,1,1,0,2,6,GRV,5,7,Masters,Rd,972701,5.266,7.275,0,48.230215,5.55,5 +19607,1,0.450174,1,0,0,1,1,RON,5,7,Kinney/W I 69,RAMP,1847403,0,0.45,0,,1.09,4 +19610,1,0.508244,1,0,0,1,1,ROF,5,7,E I 69/Kinney,RAMP,1847310,0,0.508,0,,2.24,5 +25935,0,1.843594,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,44.246264,0.15,4 +25937,0,0.27356,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,6.56543,0.15,4 +26451,0,2.719954,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,65.278885,0.15,4 +26455,0,2.351985,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,56.447639,0.15,4 +29822,0,0.353801,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,8.491224,0.15,4 +6065,0,1.786775,1,1,0,2,5,,5,7,Bordman,Rd,824010,5.591,7.377,0,42.882603,3.7,5 +25934,0,1.481836,1,1,0,2,99,,5,4,Centroid Connector,,0,0,0,0,35.564069,0.15,4 +9128,0,1.589041,1,1,0,2,5,,5,7,Belle River,Rd,972801,5.67,7.258,0,38.136984,3.7,5 +9117,0,0.132467,1,1,0,2,5,,5,7,Belle River,Rd,972801,7.429,7.561,0,3.179207,3.7,5 +9122,0,0.170229,1,1,0,2,5,,5,7,Belle River,Rd,972801,7.258,7.429,0,4.085505,3.7,5 +7363,-1,3.186173,0,2,0,1,1,,5,7,W I 69,,962902,7.974,11.16,0,,1.02,7 +7493,1,3.120193,2,0,0,1,1,,5,7,E I 69,,962706,7.957,11.077,0,,1.02,7 +25940,0,0.318072,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,7.63373,0.15,4 +5663,0,0.415558,1,1,0,2,4,,4,4,Main,St,817204,7.127,7.542,0,9.973397,4.5,4.5 +6574,0,0.388611,1,1,0,2,5,,5,7,Stoddard,Rd,824207,1.069,1.458,0,9.326654,3.7,5 +20444,0,0.083095,1,1,0,2,5,,5,4,Bordman,Rd,4208939,0,0.083,0,1.994278,3.7,5 +21323,0,0.067867,1,1,0,2,5,,5,7,Bordman,Rd,4502650,0,0.068,0,1.628807,3.7,5 +29821,0,0.433257,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.398172,0.15,4 +6049,0,1.02667,1,1,0,2,4,,4,4,Memphis Ridge,Rd,817204,6.1,7.127,0,24.640074,4.5,4.5 +6458,0,1.023832,1,1,0,2,4,,5,4,Memphis Ridge,Rd,817204,5.076,6.1,0,24.571959,3,4 +29258,0,0.11729,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,2.814961,0.15,4 +5122,0,1.246872,1,1,0,2,5,,5,7,Bordman,Rd,824010,7.824,9.071,0,29.924918,3.7,5 +7981,0,0.754353,1,1,0,2,4,,5,7,Memphis Ridge,Rd,961807,0.297,1.051,0,18.104475,3,4 +5679,0,0.224456,1,1,0,2,5,,4,7,Bordman,Rd,824010,7.6,7.824,0,5.386934,5.8,4.5 +7734,0,0.074654,1,1,0,2,4,,5,7,Main,St,961807,0,0.075,0,1.791694,3,4 +7248,0,0.222059,1,1,0,2,4,,5,7,Main,St,961807,0.075,0.297,0,5.329424,3,4 +25938,0,0.179816,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.315578,0.15,4 +7953,0,0.96497,1,1,0,2,4,,5,7,Burnell,Rd,961902,0,0.965,0,23.159278,3,4 +7946,0,0.176179,1,1,0,2,4,,5,7,Kinney,Rd,961905,0.835,1.011,0,4.228299,3,4 +8154,0,1.535357,1,1,0,2,5,,5,7,Bauman,Rd,963605,3.246,4.781,0,36.848565,3.7,5 +9065,0,1.401656,1,1,0,2,5,,5,7,Dolan,Rd,968804,0.035,1.437,0,33.639739,3.7,5 +21288,0,0.048589,1,1,0,2,5,,5,7,Dolan,Rd,4502091,0,0.049,0,1.166146,3.7,5 +8688,0,0.670512,1,1,0,2,5,,5,7,Wales Ridge,Rd,976302,0,0.67,0,16.092291,3.7,5 +6159,0,0.090381,1,1,0,2,5,,5,7,Stoddard,Rd,824207,1.458,1.548,0,2.169147,3.7,5 +5802,0,0.034934,1,1,0,2,5,,5,7,Wales Ridge,Rd,824207,1.548,1.583,0,0.838408,3.7,5 +7701,0,2.728475,1,1,0,2,6,GRV,5,7,Sparling,Rd,961908,0,2.728,0,65.483408,5.55,5 +7945,0,1.530638,1,1,0,2,4,,5,7,Kinney,Rd,961905,2.024,3.554,0,36.735309,3,4 +9115,0,1.028852,1,1,0,2,6,GRV,5,7,Cove,Rd,972905,2.567,3.596,0,24.692451,5.55,5 +7943,0,0.515834,1,1,0,2,4,,5,7,Kinney,Rd,961905,4.065,4.581,0,12.380008,3,4 +7710,0,0.510906,1,1,0,2,4,,5,7,Kinney,Rd,961905,3.554,4.065,0,12.261732,3,4 +7940,0,0.256333,1,1,0,2,4,,5,7,Kinney,Rd,961905,4.907,5.163,0,6.151998,3,4 +19608,1,0.419345,1,0,0,1,1,ROF,5,7,W I 69/Kinney,RAMP,1847402,0,0.419,0,,2.24,5 +19609,1,0.4646,1,0,0,1,1,RON,5,7,Kinney/E I 69,RAMP,1847401,0,0.465,0,,1.09,4 +7709,0,0.326261,1,1,0,2,4,,5,7,Kinney,Rd,961905,4.581,4.907,0,7.830272,3,4 +7884,0,1.029793,1,1,0,2,6,GRV,5,7,Lambs,Rd,963704,0,1.03,0,24.715033,5.55,5 +9116,0,1.215001,1,1,0,2,6,GRV,5,7,Cove,Rd,972905,1.352,2.567,0,29.160012,5.55,5 +8687,0,0.133639,1,1,0,2,6,GRV,5,7,Lambs,Rd,976302,2.292,2.425,0,3.207343,5.55,5 +7391,0,1.326015,1,1,0,2,5,,5,7,Gratiot,Ave,963509,4.951,6.277,0,31.824354,3.7,5 +8225,0,1.006043,1,1,0,2,5,,5,7,Meisner,Rd,967607,4.05,5.056,0,24.145022,3.7,5 +8302,0,2.030577,1,1,0,2,5,,5,7,Palms,Rd,965609,7.513,9.544,0,48.733858,3.7,5 +8312,0,1.018476,1,1,0,2,6,GRV,5,7,Church,Rd,965408,6.233,7.251,0,24.443436,5.55,5 +20863,0,1.275853,1,1,0,2,4,,5,7,Division,Rd,4210005,4.039,5.314,0,30.62047,3,4 +28211,0,0.842244,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,20.21385,0.15,4 +28214,0,1.593113,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,38.234716,0.15,4 +28220,0,0.962365,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.096769,0.15,4 +29160,0,1.85999,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,44.639769,0.15,4 +8227,0,1.033784,1,1,0,2,5,GRV,5,7,Meisner,Rd,967607,1.992,3.026,0,24.810811,5.55,5 +8313,0,0.696378,1,1,0,2,6,GRV,5,7,Church,Rd,965408,4.188,4.884,0,16.713062,5.55,5 +28212,0,1.589938,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,38.158507,0.15,4 +29159,0,1.204679,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,28.912305,0.15,4 +8314,0,1.01902,1,1,0,2,6,GRV,5,7,Church,Rd,965408,3.169,4.188,0,24.456482,5.55,5 +28216,0,0.742567,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.82162,0.15,4 +8226,0,1.024191,1,1,0,2,5,,5,7,Meisner,Rd,967607,3.026,4.05,0,24.580576,3.7,5 +29150,0,1.077211,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.853056,0.15,4 +7252,0,2.058905,1,1,0,2,5,,5,7,Gratiot,Ave,963509,2.773,4.832,0,49.413723,3.7,5 +7906,0,1.086475,1,1,0,2,5,,5,7,Bauman,Rd,963605,0,1.086,0,26.075392,3.7,5 +20168,0,0.759964,1,1,0,2,4,,5,7,Division,Rd,4210005,3.279,4.039,0,18.239126,3,4 +24773,0,1.180999,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,28.343966,0.15,4 +28217,0,2.220343,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,53.28824,0.15,4 +28218,0,0.998145,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.95549,0.15,4 +8310,0,0.456493,1,1,0,2,6,GRV,5,7,Church,Rd,965408,8.266,8.722,0,10.955834,5.55,5 +20625,0,1.027012,1,1,0,2,4,,5,7,Division,Rd,4210005,2.252,3.279,0,24.648291,3,4 +8311,0,1.014824,1,1,0,2,6,GRV,5,7,Church,Rd,965408,7.251,8.266,0,24.355771,5.55,5 +7662,0,0.27952,1,1,0,2,5,,5,7,Gratiot,Ave,963509,2.494,2.773,0,6.708488,3.7,5 +7663,0,0.422144,1,1,0,2,6,GRV,5,7,Arlington,Rd,963604,0,0.422,0,10.131446,5.55,5 +21333,0,0.067907,1,1,0,2,6,GRV,5,7,Church,Rd,4501349,0,0.068,0,1.629763,5.55,5 +21329,0,0.024656,1,1,0,2,6,GRV,5,7,Bartel,Rd,4501744,0.771,0.796,0,0.591733,5.55,5 +29465,0,0.414464,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.947125,0.15,4 +28219,0,1.122804,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.9473,0.15,4 +7990,0,0.119354,1,1,0,2,5,,5,7,Gratiot,Ave,963509,4.832,4.951,0,2.864484,3.7,5 +8224,0,2.055821,1,1,0,2,5,,5,7,Meisner,Rd,967607,5.056,7.111,0,49.339714,3.7,5 +8303,0,2.049692,1,1,0,2,5,,5,7,Palms,Rd,965609,5.464,7.513,0,49.1926,3.7,5 +29284,0,1.382184,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.172405,0.15,4 +8304,0,1.022169,1,1,0,2,5,,5,7,Palms,Rd,965609,4.442,5.464,0,24.532044,3.7,5 +29162,0,1.160822,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.859726,0.15,4 +8300,0,1.652426,1,1,0,2,5,,5,7,Palms,Rd,965609,10.565,12.217,0,39.658233,3.7,5 +20697,0,1.584054,1,1,0,2,4,,5,7,Fred W Moore,Hwy,4210005,5.779,7.363,0,38.017284,3,4 +29154,0,1.409017,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.816413,0.15,4 +29246,0,1.257792,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,30.187014,0.15,4 +8175,1,0.425141,1,0,0,1,1,ROF,5,7,W I 94/Division,RAMP,967808,0,0.425,0,,2.24,5 +8193,-1,0.542296,0,2,0,1,1,,5,7,W I 94,,967804,7.291,7.833,0,,1.02,7 +8214,1,0.455848,1,0,0,1,1,ROF,5,7,E I 94/Fred W Moore,RAMP,967704,0,0.456,0,,2.24,5 +8242,1,0.578716,2,0,0,1,1,,5,7,E I 94,,967606,7.266,7.845,0,,1.02,7 +8301,0,1.02123,1,1,0,2,5,,5,7,Palms,Rd,965609,9.544,10.565,0,24.509525,3.7,5 +20628,0,0.224615,1,1,0,2,4,,5,7,Division,Rd,4210005,5.314,5.539,0,5.390749,3,4 +40112,1,0.322191,2,0,0,2,3,,4,3,Orchard Lake,Rd,634003,1.061,1.383,0,7.732595,3.7,5 +40111,1,0.033653,2,0,0,2,4,,4,5,Whittaker,Rd,1439102,9.051,9.084,0,0.807681,4.5,4.5 +40077,1,0.189138,1,0,0,1,1,RON,5,7,Division/W I 94,RAMP,4506226,0,0.189,0,,1.09,4 +20410,0,0.240683,1,1,0,2,4,,5,7,Division,Rd,4210005,5.539,5.779,0,5.776394,3,4 +40076,1,0.195618,1,0,0,1,1,RON,5,7,Fred W Moore/E I 94,RAMP,4506225,0,0.196,0,,1.09,4 +8127,0,1.123206,1,1,0,2,5,,5,7,Gratiot,Ave,963509,6.277,7.4,0,26.956942,3.7,5 +29191,0,1.130182,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.124377,0.15,4 +9044,0,0.726116,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,8.31,9.036,0,17.426783,3.7,5 +7349,-1,4.493708,0,2,0,1,1,,5,7,W I 69,,962902,16.423,20.916,0,,1.02,7 +7486,1,4.468337,2,0,0,1,1,,5,7,E I 69,,962706,16.344,20.811,0,,1.02,7 +7637,0,2.502399,1,1,0,2,5,,5,7,Lapeer,Rd,962901,6.468,8.97,0,60.057575,3.7,5 +7698,0,2.275666,1,1,0,2,5,,5,7,Sparling,Rd,961908,4.259,6.535,0,54.61599,3.7,5 +7968,0,3.622289,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,5.515,9.137,0,86.934946,3.7,5 +8666,0,1.796988,1,1,0,2,6,GRV,5,7,Emerson,Rd,976305,0,1.797,0,43.127704,5.55,5 +8686,0,1.028698,1,1,0,2,5,,5,7,Richman,Rd,976303,0.418,1.447,0,24.688743,3.7,5 +9024,0,1.028635,1,1,0,2,5,,5,7,Wales Center,Rd,968807,1.843,2.871,0,24.687246,3.7,5 +9057,0,1.668833,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,3.666,5.335,0,40.051981,3.7,5 +28206,0,1.996553,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,47.917279,0.15,4 +9027,0,1.843029,1,1,0,2,5,,5,7,Wales Center,Rd,968807,0,1.843,0,44.232685,3.7,5 +9060,0,0.346065,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,3.32,3.666,0,8.305569,3.7,5 +28223,0,0.746649,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.919571,0.15,4 +7726,0,1.023404,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,4.492,5.515,0,24.561707,3.7,5 +9028,0,0.508048,1,1,0,2,5,,5,7,Fitz,Rd,968806,0.946,1.454,0,12.193153,3.7,5 +7403,0,1.042019,1,1,0,2,6,GRV,5,7,Lambs,Rd,963704,2.666,3.708,0,25.008453,5.55,5 +7576,-1,0.779701,0,2,0,1,1,,5,7,W I 69,,962902,15.643,16.423,0,,1.02,7 +7665,1,0.759627,2,0,0,1,1,,5,7,E I 69,,962706,15.584,16.344,0,,1.02,7 +9021,0,1.228708,1,1,0,2,5,,5,7,Wales Center,Rd,968807,3.694,4.922,0,29.488996,3.7,5 +19631,1,0.472877,1,0,0,1,1,ROF,5,7,W I 69/Wales Center,RAMP,1847109,0,0.473,0,,2.24,5 +19632,1,0.395385,1,0,0,1,1,RON,5,7,Wales Center/E I 69,RAMP,1847108,0,0.395,0,,1.09,4 +29253,0,1.258963,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,30.215112,0.15,4 +29256,0,1.292506,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,31.020135,0.15,4 +7607,0,1.096714,1,1,0,2,6,GRV,5,7,Lambs,Rd,963704,1.57,2.666,0,26.321131,5.55,5 +28210,0,1.365642,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,32.77541,0.15,4 +29123,0,1.011182,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.268375,0.15,4 +9022,0,0.822421,1,1,0,2,5,,5,7,Wales Center,Rd,968807,2.871,3.694,0,19.738101,3.7,5 +9006,0,1.093271,1,1,0,2,5,,5,7,Wales Center,Rd,968807,5.868,6.961,0,26.238499,3.7,5 +9017,0,0.513861,1,1,0,2,5,,5,7,Wales Center,Rd,968807,4.922,5.436,0,12.332663,3.7,5 +19629,1,0.355779,1,0,0,1,1,RON,5,7,Wales Center/W I 69,RAMP,1847110,0,0.356,0,,1.09,4 +19635,1,0.469931,1,0,0,1,1,ROF,5,7,E I 69/Wales Center,RAMP,1847107,0,0.47,0,,2.24,5 +9014,0,0.3252,1,1,0,2,5,,5,7,Wales Center,Rd,968807,5.543,5.868,0,7.8048,3.7,5 +9015,0,0.107157,1,1,0,2,5,,5,7,Wales Center,Rd,968807,5.436,5.543,0,2.571776,3.7,5 +8143,0,0.309809,1,1,0,2,6,GRV,5,7,Lambs,Rd,963704,3.708,4.018,0,7.435425,5.55,5 +8586,0,0.38743,1,1,0,2,5,,5,7,Main,St,977005,0,0.387,0,9.298315,3.7,5 +8984,0,1.019308,1,1,0,2,5,,5,7,Mayer,Rd,969310,4.532,5.551,0,24.463391,3.7,5 +9048,0,1.079359,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,6.461,7.54,0,25.904617,3.7,5 +29176,0,1.342227,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,32.213453,0.15,4 +8298,0,1.025245,1,1,0,2,5,,5,7,Palms,Rd,965609,13.137,14.162,0,24.605882,3.7,5 +8986,0,0.958435,1,1,0,2,5,,5,7,Mayer,Rd,969310,3.573,4.532,0,23.002443,3.7,5 +9050,0,1.126296,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,5.335,6.461,0,27.031102,3.7,5 +9071,0,0.490068,1,1,0,2,5,,5,7,Yager,Rd,968704,3.885,4.375,0,11.761642,3.7,5 +9068,0,0.465193,1,1,0,2,5,,5,7,Burns,Rd,968709,0,0.465,0,11.164629,3.7,5 +8007,0,0.839309,1,1,0,2,5,,5,7,Gratiot,Ave,963509,8.572,9.411,0,20.14342,3.7,5 +29177,0,1.339225,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,32.141398,0.15,4 +7569,0,0.140154,1,1,0,2,5,,5,7,Gratiot,Ave,963509,8.432,8.572,0,3.363694,3.7,5 +29188,0,0.591111,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.186663,0.15,4 +7723,0,1.001034,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,9.368,10.369,0,24.024814,3.7,5 +7282,0,0.098239,1,1,0,2,5,,5,7,Henry,St,963308,0.262,0.36,0,2.357731,3.7,5 +7725,0,0.114171,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,9.137,9.251,0,2.740093,3.7,5 +7848,0,0.262284,1,1,0,2,5,,5,7,Henry,St,963308,0,0.262,0,6.294824,3.7,5 +7965,0,0.116971,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,9.251,9.368,0,2.807302,3.7,5 +9070,0,0.097494,1,1,0,2,5,,5,7,Henry/Smith Creek Cutoff,,968707,0,0.098,0,2.339862,3.7,5 +29179,0,0.385712,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.257095,0.15,4 +8668,0,1.049867,1,1,0,2,5,,5,7,Richman,Rd,976303,2.471,3.521,0,25.1968,3.7,5 +8979,0,1.044432,1,1,0,2,5,,5,7,Griswold,Rd,969503,0,1.044,0,25.066375,3.7,5 +29185,0,1.23301,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,29.592236,0.15,4 +29601,0,1.400591,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.614173,0.15,4 +7460,0,1.109214,1,1,0,2,5,,5,7,Lapeer,Rd,962901,8.97,10.079,0,26.621143,3.7,5 +7927,0,0.923683,1,1,0,2,5,,5,7,Sparling,Rd,961908,6.535,7.458,0,22.168387,3.7,5 +8672,0,1.024183,1,1,0,2,5,,5,7,Richman,Rd,976303,1.447,2.471,0,24.580387,3.7,5 +29182,0,1.204217,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,28.901204,0.15,4 +7661,1,0.839203,2,0,0,1,1,,5,7,E I 69,,962706,20.811,21.651,0,,1.02,7 +8972,0,0.604003,1,1,0,2,5,,5,7,Griswold,Rd,969503,1.374,1.978,0,14.496069,3.7,5 +19626,1,0.40515,1,0,0,1,1,ROF,5,7,E I 69/Taylor,RAMP,1847201,0,0.405,0,,2.24,5 +21893,0,0.506989,1,1,0,2,5,,5,7,Dunlap,Rd,4502796,0.51,1.017,0,12.167732,3.7,5 +29184,0,0.472966,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.351184,0.15,4 +8974,0,0.329617,1,1,0,2,5,,5,7,Griswold,Rd,969503,1.044,1.374,0,7.910799,3.7,5 +21904,0,0.50991,1,1,0,2,5,,5,7,Dunlap,Rd,4502796,0,0.51,0,12.237837,3.7,5 +29183,0,0.776164,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,18.62793,0.15,4 +7573,-1,0.69929,0,2,0,1,1,,5,7,W I 69,,962902,20.916,21.616,0,,1.02,7 +19624,1,0.391772,1,0,0,1,1,ROF,5,7,W I 69/Taylor,RAMP,1847203,0,0.392,0,,2.24,5 +19625,1,0.458736,1,0,0,1,1,RON,5,7,Taylor/E I 69,RAMP,1847202,0,0.459,0,,1.09,4 +21892,0,0.622343,1,1,0,2,5,,5,7,Taylor,Dr,4502796,1.017,1.639,0,14.936225,3.7,5 +26075,0,0.380089,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.122136,0.15,4 +19623,1,0.448812,1,0,0,1,1,RON,5,7,Taylor/W I 69,RAMP,1847204,0,0.449,0,,1.09,4 +21889,0,0.338006,1,1,0,2,5,,5,7,Taylor,Dr,4502796,1.639,1.977,0,8.112143,3.7,5 +8250,0,0.426532,1,1,0,2,6,,5,7,Orchid,Blvd,967501,0,0.427,0,10.236766,5.8,6 +8244,0,1.409303,1,1,0,2,6,,5,7,Channel,Dr,967605,1.013,2.422,0,33.823262,5.8,6 +8247,0,0.270798,1,1,0,2,6,,5,7,La Croix,Rd,967504,1.056,1.327,0,6.499161,5.8,6 +8248,0,0.064008,1,1,0,2,6,,5,7,La Croix,Rd,967504,0.992,1.056,0,1.536188,5.8,6 +20046,0,0.06949,1,1,0,2,6,,5,7,La Croix/Green Cutoff,,1918008,0,0.07,0,1.667763,5.8,6 +8246,0,0.089385,1,1,0,2,5,,5,7,Green,Dr,967507,0,0.089,0,2.145233,3.7,5 +8650,0,0.451691,1,1,0,2,4,,4,7,King,Rd,970305,0.779,1.231,0,10.840588,4.5,4.5 +8870,0,1.155296,1,1,0,2,5,,5,7,Marsh,Rd,974108,1.767,2.922,0,27.727109,3.7,5 +8975,0,1.517926,1,1,0,2,5,,5,7,Chartier,Rd,973908,0,1.518,0,36.430235,3.7,5 +21184,0,1.294992,1,1,0,2,4,,5,7,River,Rd,4502633,16.762,18.057,0,31.079807,3,4 +21187,0,0.794985,1,1,0,2,4,,5,7,River,Rd,4502633,15.434,16.229,0,19.079637,3,4 +29265,0,1.021226,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.509419,0.15,4 +29268,0,0.29673,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,7.121522,0.15,4 +8294,0,0.532837,1,1,0,2,5,,5,7,Stone,Rd,966110,0.403,0.936,0,12.788095,3.7,5 +8830,0,1.083739,1,1,0,2,5,,5,7,Stone,Rd,974110,0,1.084,0,26.009746,3.7,5 +8892,0,1.00938,1,1,0,2,5,,5,7,Marsh,Rd,974108,0.248,1.257,0,24.225108,3.7,5 +21189,0,0.925997,1,1,0,2,4,,4,7,Saint Clair River,Dr,4502633,12.823,13.749,0,22.22393,4.5,4.5 +21193,0,0.252374,2,2,1,2,4,,4,7,Pointe Tremble,Rd,4502633,11.466,11.719,0,6.056975,4.5,4.5 +29137,0,1.632864,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,39.188742,0.15,4 +29267,0,0.898262,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,21.55829,0.15,4 +29279,0,0.364099,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.738377,0.15,4 +8252,0,0.080844,1,1,0,2,5,,5,7,Columbine,St,967409,0,0.081,0,1.940259,3.7,5 +8256,0,0.066675,1,1,0,2,6,,5,7,Channel,Dr,967406,0.862,0.929,0,1.600207,5.8,6 +21194,0,0.957398,1,1,0,2,4,,5,7,Pointe Tremble,Rd,4502633,10.509,11.466,0,22.977548,3,4 +24573,0,0.315982,1,1,0,2,5,,,7,Ferry to Harsens Island,,0,0,0,0,7.583566,3.7,5 +8257,0,0.159973,1,1,0,2,5,,5,7,Channel,Dr,967406,0.702,0.862,0,3.839346,3.7,5 +21218,0,0.026052,1,1,0,2,5,,5,7,Ferry Dock,Rd,4502588,0,0.026,0,0.625251,3.7,5 +21195,0,0.36838,1,1,0,2,4,,5,7,Pointe Tremble,Rd,4502633,10.141,10.509,0,8.841121,3,4 +8297,0,0.040765,1,1,0,2,9,,5,7,Ferry Dock,Rd,966005,0,0.041,0,0.978353,5.8,6 +8255,0,0.945131,1,1,0,2,6,,5,7,Channel,Dr,967406,0.929,1.874,0,22.683138,5.8,6 +8253,0,0.051862,1,1,0,2,6,,5,7,Columbine,St,967408,0,0.052,0,1.244686,5.8,6 +8913,0,0.247808,1,1,0,2,5,,5,7,Stone,Rd,974108,0,0.248,0,5.947401,3.7,5 +8292,0,0.62392,1,1,0,2,5,,5,7,Stone,Rd,966110,2.87,3.493,0,14.974091,3.7,5 +8882,0,0.510144,1,1,0,2,5,,5,7,Marsh,Rd,974108,1.257,1.767,0,12.243467,3.7,5 +30209,0,0.868368,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,20.840843,0.15,4 +29135,0,0.143197,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,3.436723,0.15,4 +8293,0,0.156676,1,1,0,2,5,,5,7,Stone,Rd,966110,2.713,2.87,0,3.760235,3.7,5 +8920,0,0.373997,1,1,0,2,5,,5,7,McKinley,Rd,974105,0,0.374,0,8.975937,3.7,5 +8916,0,0.222307,1,1,0,2,5,,5,7,Benoit,Rd,974106,0,0.222,0,5.335367,3.7,5 +22091,0,0.053029,1,1,0,2,5,,5,7,Stone,Rd,4502746,0,0.053,0,1.272699,3.7,5 +21190,0,0.414107,1,1,1,2,4,,4,7,Saint Clair River,Dr,4502633,12.409,12.823,0,9.938559,4.5,4.5 +21192,0,0.157577,1,1,1,2,4,,4,7,Saint Clair River,Dr,4502633,11.853,12.01,0,3.781839,4.5,4.5 +29277,0,0.177628,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.26308,0.15,4 +29281,0,0.395766,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.498378,0.15,4 +8295,0,0.118294,1,1,0,2,5,,4,7,Smith,St,966110,0.285,0.403,0,2.839056,5.8,4.5 +29278,0,0.330306,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,7.927347,0.15,4 +29280,0,0.422901,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,10.149624,0.15,4 +30210,0,0.466652,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.199653,0.15,4 +8296,0,0.061262,1,1,0,2,5,,4,7,Smith,St,966110,0.033,0.095,0,1.470294,5.8,4.5 +21191,0,0.170916,1,1,1,2,4,,4,7,Saint Clair River,Dr,4502633,12.181,12.352,0,4.101986,4.5,4.5 +21188,0,1.685311,1,1,0,2,4,,5,7,River,Rd,4502633,13.749,15.434,0,40.447457,3,4 +29266,0,1.064835,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.556039,0.15,4 +8729,0,0.719006,1,1,0,2,4,,5,7,Marine City,Hwy,970205,9.158,9.877,0,17.256137,3,4 +8844,0,1.17754,1,1,0,2,5,,5,7,Marsh,Rd,974108,4.246,5.423,0,28.260953,3.7,5 +8868,0,0.955833,1,1,0,2,5,,5,7,Marsh,Rd,974108,2.922,3.878,0,22.939992,3.7,5 +8910,0,0.526032,1,1,0,2,5,GRV,5,7,Markel,Rd,969509,4.109,4.635,0,12.624757,5.55,5 +8926,0,1.381242,1,1,0,2,5,,5,7,Shea,Rd,969506,3.093,4.474,0,33.1498,3.7,5 +29261,0,1.382298,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.175143,0.15,4 +29286,0,0.925597,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.214328,0.15,4 +8679,0,1.523806,1,1,0,2,5,GRV,5,7,Indian,Trl,970302,0,1.524,0,36.571341,5.55,5 +8734,0,1.029035,1,1,0,2,4,,5,7,Marine City,Hwy,970205,8.129,9.158,0,24.696848,3,4 +21327,0,1.505072,1,1,0,2,5,,5,7,Broadbridge,Rd,4501745,0.086,1.591,0,36.121725,3.7,5 +29264,0,0.70845,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.002802,0.15,4 +8858,0,0.271748,1,1,0,2,5,,5,7,Marsh,Rd,974108,3.878,4.15,0,6.521951,3.7,5 +21284,1,0.112874,1,0,0,2,5,,5,7,Marsh/Broadbridge Cutoff,,4502200,0,0.113,0,2.708969,3.7,5 +21328,0,0.086421,1,1,0,2,5,,5,7,Broadbridge,Rd,4501745,0,0.086,0,2.074099,3.7,5 +8857,0,0.075616,1,1,0,2,5,,5,7,Marsh,Rd,974108,4.15,4.225,0,1.814779,3.7,5 +8856,0,0.020223,1,1,0,2,5,,5,7,Marsh,Rd,974108,4.225,4.246,0,0.485342,3.7,5 +21186,0,0.533503,1,1,0,2,4,,5,7,River,Rd,4502633,16.229,16.762,0,12.804073,3,4 +8714,0,1.329713,1,1,0,2,4,,5,7,Marine City,Hwy,970205,9.877,11.207,0,31.913115,3,4 +29263,0,1.529842,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,36.716206,0.15,4 +8837,0,0.249965,1,1,0,2,5,,5,7,Marsh,Rd,974108,5.423,5.673,0,5.999162,3.7,5 +29262,0,0.585031,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.040735,0.15,4 +8645,0,0.061047,1,1,0,2,4,,4,7,King,Rd,970305,1.231,1.292,0,1.46513,4.5,4.5 +8287,0,0.406015,1,1,0,2,5,,4,7,Water,St,966706,0.43,0.836,0,9.744362,5.8,4.5 +8290,0,0.279015,2,2,0,2,4,,4,7,Broadway,St,966604,0.241,0.52,0,6.696354,4.5,4.5 +8653,0,0.444935,1,1,0,2,5,,4,7,King,Rd,970305,0,0.445,0,10.67845,5.8,4.5 +21180,0,0.429208,2,2,0,2,4,,4,7,Parker,St,4502633,18.99,19.419,0,10.300999,4.5,4.5 +22151,0,0.198816,1,1,0,2,5,,4,7,Bridge,St,4502654,0,0.199,0,4.771586,5.8,4.5 +29273,0,0.416386,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.993268,0.15,4 +8958,0,0.310923,1,1,1,2,5,,4,7,Chartier,Rd,973908,1.658,1.969,0,7.462156,5.8,4.5 +21183,0,0.713306,1,1,1,2,4,,4,7,River,Rd,4502633,18.057,18.77,0,17.119351,4.5,4.5 +29259,0,0.482478,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.579478,0.15,4 +29260,0,0.459188,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.020522,0.15,4 +8964,0,0.140774,1,1,1,2,5,,4,7,Chartier,Rd,973908,1.518,1.658,0,3.378579,5.8,4.5 +8949,0,0.155832,2,2,1,2,5,,4,7,Chartier,Rd,973908,1.969,2.125,0,3.739957,5.8,4.5 +21182,0,0.219859,1,1,1,2,4,,4,7,River,Rd,4502633,18.77,18.99,0,5.276615,4.5,4.5 +8288,0,0.21002,2,2,1,2,5,,4,7,Belle River,Ave,966610,0.246,0.456,0,5.04048,5.8,4.5 +8656,0,0.115288,1,1,0,2,4,,4,7,West,Blvd,970304,4.441,4.556,0,2.766902,4.5,4.5 +21178,0,0.06153,2,2,0,2,4,,4,7,Parker,St,4502633,19.762,19.823,0,1.476716,4.5,4.5 +29270,0,0.47036,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.288639,0.15,4 +29271,0,0.208854,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.012488,0.15,4 +30207,0,0.280532,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.732775,0.15,4 +8652,0,0.3343,1,1,0,2,5,,4,7,King,Rd,970305,0.445,0.779,0,8.023211,5.8,4.5 +8665,0,0.307932,1,1,0,2,4,,4,7,West,Blvd,970304,4.094,4.402,0,7.390376,4.5,4.5 +29272,0,0.256734,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.161608,0.15,4 +29274,0,0.384422,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.226118,0.15,4 +8662,0,0.039139,1,1,0,2,4,,4,7,West,Blvd,970304,4.402,4.441,0,0.939339,4.5,4.5 +21179,0,0.342746,2,2,0,2,4,,4,7,Parker,St,4502633,19.419,19.762,0,8.225916,4.5,4.5 +8291,0,0.152092,2,2,0,2,4,,4,7,Fairbanks,St,966604,0.089,0.241,0,3.650211,4.5,4.5 +21983,0,0.172523,1,1,0,2,4,,4,7,Main,St,4502782,0.46,0.633,0,4.140562,4.5,4.5 +29283,0,0.168364,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.040742,0.15,4 +8289,0,0.099814,1,1,0,2,5,,4,7,Broadway,St,966604,0.52,0.62,0,2.39554,5.8,4.5 +29285,0,0.085975,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,2.063411,0.15,4 +7350,1,0.473683,2,0,0,2,3,,4,7,Military,St,963509,17.712,18.186,0,11.368387,3.7,5 +7393,0,0.253455,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.418,18.672,0,6.082914,6,4.5 +7469,1,0.252043,2,0,0,2,3,,3,7,I 69 BL,,962706,28.595,28.847,0,6.049024,5,5 +7513,-1,0.250341,0,2,0,2,3,,3,7,I 69 BL,,962902,28.623,28.874,0,6.008182,5,5 +7598,-1,0.251338,0,2,0,2,5,,3,7,Court,St,964102,0.255,0.506,0,6.032112,8,4.5 +7932,-1,0.233562,0,2,0,2,3,,3,7,Electric,Ave,963402,1.633,1.867,0,5.605493,5,5 +8088,1,0.251282,2,0,0,2,5,,3,7,Union,St,964101,0.248,0.5,0,6.030763,8,4.5 +8167,0,2.021032,1,1,0,2,4,,4,7,Range,Rd,968407,0.939,2.959,0,48.504765,4.5,4.5 +8212,1,0.243015,1,0,0,1,1,ROF,5,7,E I 94/Wadhams,RAMP,967706,0,0.243,0,,2.24,5 +8240,1,0.519556,2,0,0,1,1,,5,7,E I 94,,967606,12.246,12.766,0,,1.02,7 +8281,0,1.891809,1,1,0,2,4,,4,7,River,Rd,967105,2.405,4.296,0,45.40341,4.5,4.5 +8889,0,0.09768,1,1,0,2,5,,5,7,Wadhams,Rd,969901,5.801,5.899,0,2.344316,3.7,5 +9084,0,0.253808,2,2,0,2,4,,3,7,Dove,St,968503,2.808,3.061,0,6.091383,6,4.5 +21232,0,0.1312,2,2,0,2,4,,3,7,Water,St,4502548,0.578,0.709,0,3.148806,6,4.5 +24952,0,0.284101,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.818431,0.15,4 +29287,0,0.229253,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.502061,0.15,4 +29290,0,0.535737,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.857682,0.15,4 +29293,0,0.278413,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.681911,0.15,4 +29296,0,1.216865,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,29.204759,0.15,4 +29303,0,0.242158,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.811784,0.15,4 +29304,0,0.258947,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.21473,0.15,4 +29306,0,0.250395,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.009485,0.15,4 +29404,0,0.287353,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.896461,0.15,4 +8217,0,0.659448,1,1,0,2,5,,5,7,Saint Clair,Hwy,967702,11.177,11.837,0,15.826763,3.7,5 +8220,0,0.878464,1,1,0,2,5,,4,7,Meisner,Rd,967607,11.183,12.061,0,21.083143,5.8,4.5 +8627,0,1.016751,1,1,0,2,5,,5,7,King,Rd,970305,5.408,6.424,0,24.402028,3.7,5 +8896,0,1.744206,1,1,0,2,5,,5,7,Wadhams,Rd,969901,0,1.744,0,41.860934,3.7,5 +9038,0,1.889341,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,11.539,13.428,0,45.344178,3.7,5 +20818,0,0.469307,1,1,1,2,4,,4,7,Fred W Moore,Hwy,4210005,11.445,11.914,0,11.263357,4.5,4.5 +21967,0,0.948505,1,1,0,2,4,,4,7,River,Rd,4502782,5.378,6.326,0,22.764127,4.5,4.5 +29156,0,0.673993,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,16.175829,0.15,4 +29295,0,1.155079,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.721896,0.15,4 +29318,0,0.983007,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,23.592173,0.15,4 +8222,0,1.014687,1,1,0,2,5,,5,7,Meisner,Rd,967607,9.151,10.165,0,24.352489,3.7,5 +8629,0,1.020313,1,1,0,2,5,,5,7,King,Rd,970305,3.366,4.386,0,24.487515,3.7,5 +8671,0,1.118312,1,1,0,2,5,,5,7,Indian,Trl,970302,3.616,4.734,0,26.839499,3.7,5 +29324,0,1.135947,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.262719,0.15,4 +8674,0,1.02811,1,1,0,2,5,,5,7,Indian,Trl,970302,2.588,3.616,0,24.674629,3.7,5 +8670,0,0.324816,1,1,0,2,5,,5,7,Indian,Trl,970302,4.734,5.059,0,7.795596,3.7,5 +8221,0,1.017406,1,1,0,2,5,,5,7,Meisner,Rd,967607,10.165,11.183,0,24.417732,3.7,5 +8638,0,1.025165,1,1,0,2,5,,5,7,King,Rd,970305,2.341,3.366,0,24.603971,3.7,5 +29143,0,1.081518,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.956442,0.15,4 +29142,0,0.582256,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.97415,0.15,4 +8641,0,0.036632,1,1,0,2,5,,5,7,King,Rd,970305,2.304,2.341,0,0.87918,3.7,5 +8628,0,1.021564,1,1,0,2,5,,5,7,King,Rd,970305,4.386,5.408,0,24.517548,3.7,5 +30206,0,0.745631,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.895149,0.15,4 +29322,0,0.278551,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,6.685231,0.15,4 +8894,0,1.020076,1,1,0,2,5,,5,7,Wadhams,Rd,969901,2.747,3.767,0,24.481816,3.7,5 +9041,0,1.065139,1,1,0,2,5,,5,7,Rattle Run,Rd,968804,10.474,11.539,0,25.563337,3.7,5 +20325,0,1.023043,1,1,0,2,4,,5,7,Fred W Moore,Hwy,4210005,9.394,10.417,0,24.553041,3,4 +25959,0,0.963367,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.1208,0.15,4 +29299,0,1.856923,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,44.566143,0.15,4 +8895,0,1.003421,1,1,0,2,5,,5,7,Wadhams,Rd,969901,1.744,2.747,0,24.082114,3.7,5 +29158,0,1.080161,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.923861,0.15,4 +8890,0,1.417313,1,1,0,2,5,,5,7,Wadhams,Rd,969901,4.384,5.801,0,34.0155,3.7,5 +8891,0,0.617008,1,1,0,2,5,,5,7,Wadhams,Rd,969901,3.767,4.384,0,14.808184,3.7,5 +8626,0,1.034964,1,1,0,2,5,,5,7,King,Rd,970305,6.424,7.459,0,24.839135,3.7,5 +20123,0,1.027699,1,1,0,2,4,,5,7,Fred W Moore,Hwy,4210005,10.417,11.445,0,24.664782,3,4 +29501,0,1.131044,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.145051,0.15,4 +29502,0,1.100253,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.406077,0.15,4 +29298,0,0.45496,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,10.91903,0.15,4 +21970,0,2.130853,1,1,0,2,4,,4,7,River,Rd,4502782,3.247,5.378,0,51.140476,4.5,4.5 +29325,0,1.128576,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,27.085816,0.15,4 +29327,0,0.707494,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,16.979852,0.15,4 +8218,0,0.478671,1,1,0,2,5,,4,7,Meisner,Rd,967607,12.172,12.65,0,11.488101,5.8,4.5 +21976,0,0.758574,1,1,0,2,4,,5,7,River,Rd,4502782,2.101,2.859,0,18.205768,3,4 +25612,0,0.57098,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.703515,0.15,4 +25613,0,0.824013,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,19.77631,0.15,4 +29326,0,0.772515,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,18.540356,0.15,4 +8219,0,0.11082,1,1,0,2,5,,4,7,Meisner,Rd,967607,12.061,12.172,0,2.659683,5.8,4.5 +21978,0,0.749851,1,1,0,2,4,,5,7,River,Rd,4502782,1.351,2.101,0,17.996435,3,4 +21975,0,0.38804,1,1,0,2,4,,4,7,River,Rd,4502782,2.859,3.247,0,9.312957,4.5,4.5 +8268,0,0.516142,1,1,0,2,4,,4,7,Carney,Dr,967209,0.352,0.868,0,12.387414,4.5,4.5 +8283,0,0.299779,1,1,1,2,4,,4,7,Riverside,Ave,967105,1.777,2.077,0,7.194691,4.5,4.5 +8981,0,0.139201,1,1,0,2,5,,4,7,Vine,St,969402,2.606,2.746,0,3.340813,5.8,4.5 +8998,0,0.186738,1,1,0,2,5,,4,7,9th,St,969001,0.546,0.733,0,4.481706,5.8,4.5 +29312,0,0.211708,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.08099,0.15,4 +29313,0,0.262452,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.298852,0.15,4 +8215,0,0.53471,1,1,0,2,5,,4,7,Saint Clair,Hwy,967702,12.506,13.041,0,12.833041,5.8,4.5 +8216,0,0.669682,1,1,0,2,5,,4,7,Saint Clair,Hwy,967702,11.837,12.506,0,16.072366,5.8,4.5 +8788,0,0.258309,1,1,0,2,5,,4,7,Bree,Rd,970004,0.443,0.702,0,6.19942,5.8,4.5 +9003,0,0.260111,1,1,0,2,5,,4,7,9th,St,969001,0.286,0.546,0,6.242671,5.8,4.5 +9030,0,0.141536,1,1,0,2,4,,4,7,Clinton,Ave,968804,13.994,14.136,0,3.396854,4.5,4.5 +20866,0,0.408352,1,1,0,2,4,,4,7,6th,St,4210005,12.468,12.877,0,9.800452,4.5,4.5 +21906,0,0.345565,2,2,0,2,4,,4,7,Oakland,Ave,4502782,7.021,7.366,0,8.293572,4.5,4.5 +29315,0,0.318186,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,7.636461,0.15,4 +29317,0,0.25567,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.136069,0.15,4 +29332,0,0.239978,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.75948,0.15,4 +29333,0,0.182662,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.383879,0.15,4 +8789,0,0.443483,1,1,0,2,5,,4,7,Bree,Rd,970004,0,0.443,0,10.643588,5.8,4.5 +8269,0,0.352205,1,1,0,2,4,,4,7,Carney,Dr,967209,0,0.352,0,8.452914,4.5,4.5 +9005,0,0.286222,1,1,0,2,7,,4,7,9th,St,969001,0,0.286,0,6.86933,6.55,4.5 +9034,0,0.313828,1,1,0,2,4,,4,7,Clinton,Ave,968804,13.428,13.742,0,7.531866,4.5,4.5 +20578,0,0.208528,1,1,0,2,4,,4,7,Fred W Moore,Hwy,4210005,11.914,12.122,0,5.004667,4.5,4.5 +20171,0,0.282667,1,1,0,2,4,,4,7,Fred W Moore,Hwy,4210005,12.186,12.468,0,6.784005,4.5,4.5 +29321,0,0.490587,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.774081,0.15,4 +20373,0,0.063319,1,1,0,2,4,,4,7,Fred W Moore,Hwy,4210005,12.122,12.186,0,1.519658,4.5,4.5 +29319,0,0.057511,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,1.380263,0.15,4 +29320,0,0.02792,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,0.670074,0.15,4 +9032,0,0.252005,1,1,0,2,4,,4,7,Clinton,Ave,968804,13.742,13.994,0,6.048118,4.5,4.5 +29328,0,0.362543,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.701027,0.15,4 +8784,0,0.182193,1,1,0,2,5,,4,7,Bree,Rd,970004,0.702,0.884,0,4.372637,5.8,4.5 +21956,0,0.336495,1,1,0,2,4,,4,7,River,Rd,4502782,6.326,6.663,0,8.075892,4.5,4.5 +29316,0,0.188086,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.514057,0.15,4 +21955,0,0.357926,2,2,0,2,4,,4,7,Oakland,Ave,4502782,6.663,7.021,0,8.590214,4.5,4.5 +8284,0,0.435053,1,1,1,2,4,,4,7,Riverside,Ave,967105,1.342,1.777,0,10.441283,4.5,4.5 +8285,0,0.282848,1,1,1,2,4,,4,7,Riverside,Ave,967105,1.059,1.342,0,6.788344,4.5,4.5 +8980,0,0.243138,1,1,0,2,5,,4,7,Vine,St,969402,2.746,2.989,0,5.835304,5.8,4.5 +29331,0,0.2903,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.967199,0.15,4 +8286,0,0.076656,2,2,0,2,4,,4,7,Riverside,Ave,967105,0.983,1.059,0,1.839752,4.5,4.5 +9029,0,0.23951,1,1,0,2,4,,4,7,Clinton,Ave,968804,14.136,14.375,0,5.748247,4.5,4.5 +20629,0,0.433812,1,1,0,2,5,,4,7,6th,St,4210005,12.877,13.311,0,10.411487,5.8,4.5 +8168,0,0.467946,1,1,0,2,4,,4,7,Range,Rd,968407,0.471,0.939,0,11.2307,4.5,4.5 +8266,0,0.245705,1,1,0,2,4,,4,7,Brown,St,967209,1.372,1.618,0,5.896924,4.5,4.5 +8982,0,0.125377,1,1,0,2,5,,4,7,Vine,St,969402,2.481,2.606,0,3.009046,5.8,4.5 +29297,0,1.028249,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,24.677982,0.15,4 +29371,0,0.465052,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.161253,0.15,4 +8169,0,0.470658,1,1,0,2,4,,4,7,Range,Rd,968407,0,0.471,0,11.295781,4.5,4.5 +8267,0,0.50363,1,1,0,2,4,,4,7,Carney,Dr,967209,0.868,1.372,0,12.08711,4.5,4.5 +8983,0,0.411764,1,1,0,2,5,,4,7,Vine,St,969402,2.069,2.481,0,9.882346,5.8,4.5 +8264,0,0.263586,1,1,0,2,4,,4,7,Brown,St,967209,1.748,2.011,0,6.326065,4.5,4.5 +29330,0,0.360562,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.653476,0.15,4 +29366,0,0.380033,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.120802,0.15,4 +8265,0,0.129948,1,1,0,2,4,,4,7,Brown,St,967209,1.618,1.748,0,3.118757,4.5,4.5 +8993,0,0.314295,1,1,0,2,5,,4,7,9th,St,969001,0.733,1.047,0,7.543091,5.8,4.5 +8282,0,0.327612,2,2,0,2,4,,4,7,River,Rd,967105,2.077,2.405,0,7.862678,4.5,4.5 +7339,-1,1.989328,0,2,0,1,1,,5,7,W I 69,,962902,23.927,25.916,0,,1.02,7 +7426,0,0.532307,1,1,0,2,4,,5,7,Lapeer,Rd,962901,15.079,15.611,0,12.775373,3,4 +7481,1,2.144133,2,0,0,1,1,,5,7,E I 69,,962706,23.827,25.971,0,,1.02,7 +7548,0,0.238896,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,16.294,16.533,0,5.733498,3.7,5 +7570,1,0.030434,1,0,0,2,3,,4,7,Gratiot/Busha Cutoff,,964003,0,0.03,0,0.730415,3.7,5 +7847,0,0.223217,1,1,0,2,5,,5,7,Gratiot,Rd,963509,13.697,13.92,0,5.3572,3.7,5 +7959,0,0.567589,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,13.885,14.452,0,13.622127,3.7,5 +8103,0,0.252263,1,1,0,2,5,,4,7,Michigan,Rd,963906,2.077,2.329,0,6.054312,5.8,4.5 +8188,-1,2.700167,0,2,0,1,1,,5,7,W I 94,,967804,16.973,19.673,0,,1.02,7 +8190,-1,3.825635,0,2,0,1,1,,5,7,W I 94,,967804,12.898,16.724,0,,1.02,7 +8237,1,2.818168,2,0,0,1,1,,5,7,E I 94,,967606,16.705,19.523,0,,1.02,7 +8239,1,3.699348,2,0,0,1,1,,5,7,E I 94,,967606,12.766,16.465,0,,1.02,7 +8270,0,0.038541,2,2,0,2,4,,4,7,Busha,Hwy,967105,9.388,9.426,0,0.924993,4.5,4.5 +8845,0,1.017544,1,1,0,2,4,,5,7,Wadhams,Rd,969901,10.24,11.257,0,24.42106,3,4 +9189,0,0.709863,1,1,0,2,4,,4,7,Range,Rd,968407,6.022,6.732,0,17.036722,4.5,4.5 +29307,0,1.144725,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.473411,0.15,4 +29340,0,0.423278,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,10.158683,0.15,4 +29341,0,0.542421,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.018092,0.15,4 +29343,0,0.514019,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.336456,0.15,4 +29348,0,0.596354,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.312505,0.15,4 +29349,0,1.109041,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,26.616992,0.15,4 +29350,0,1.148367,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.560801,0.15,4 +29351,0,0.512863,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.308714,0.15,4 +29354,0,1.167935,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,28.030449,0.15,4 +29355,0,0.52448,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.58751,0.15,4 +7235,0,1.158181,1,1,0,2,5,,5,7,Gratiot,Ave,963509,10.879,12.037,0,27.796334,3.7,5 +7721,0,0.763812,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,11.639,12.403,0,18.331492,3.7,5 +7972,0,0.949358,1,1,0,2,5,,5,7,Gratiot,Ave,963509,12.037,12.986,0,22.78458,3.7,5 +8849,0,1.303067,1,1,0,2,4,,5,7,Wadhams,Rd,969901,8.937,10.24,0,31.273602,3,4 +8851,0,1.103194,1,1,0,2,4,,5,7,Wadhams,Rd,969901,7.834,8.937,0,26.476653,3,4 +29187,0,1.218951,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,29.254815,0.15,4 +29346,0,1.381716,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.161176,0.15,4 +29357,0,1.009644,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.231465,0.15,4 +29358,0,0.783142,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,18.795406,0.15,4 +8867,0,0.553079,1,1,0,2,4,,5,7,Wadhams,Rd,969901,6.559,7.112,0,13.273892,3,4 +8878,0,0.379164,1,1,0,2,4,,5,7,Wadhams,Rd,969901,6.18,6.559,0,9.099928,3,4 +8173,1,0.28957,1,0,0,1,1,ROF,5,7,W I 94/Wadhams,RAMP,967810,0,0.29,0,,2.24,5 +8174,1,0.161148,1,0,0,1,1,RON,5,7,Wadhams/W I 94,RAMP,967809,0,0.161,0,,1.09,4 +8191,-1,0.259905,0,2,0,1,1,,5,7,W I 94,,967804,12.638,12.898,0,,1.02,7 +8211,1,0.30655,1,0,0,1,1,RON,5,7,Wadhams/E I 94,RAMP,967707,0,0.307,0,,1.09,4 +8886,0,0.270241,1,1,0,2,4,,5,7,Wadhams,Rd,969901,5.899,6.169,0,6.485777,3,4 +40110,-1,0.038914,0,2,0,2,4,,4,5,Whittaker,Rd,4606157,0,0.039,0,0.933935,4.5,4.5 +8884,0,0.010291,1,1,0,2,4,,5,7,Wadhams,Rd,969901,6.169,6.18,0,0.246993,3,4 +8855,0,0.343572,1,1,0,2,4,,5,7,Wadhams,Rd,969901,7.49,7.834,0,8.245726,3,4 +8860,0,0.378717,1,1,0,2,4,,5,7,Wadhams,Rd,969901,7.112,7.49,0,9.089215,3,4 +29347,0,0.498217,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.957213,0.15,4 +7961,0,1.023898,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,12.403,13.427,0,24.573561,3.7,5 +29356,0,1.078587,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.886078,0.15,4 +29359,0,1.019094,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.458261,0.15,4 +7684,0,0.496127,1,1,0,2,5,,5,7,Gratiot,Ave,963509,13.201,13.697,0,11.907055,3.7,5 +7910,0,0.214376,1,1,0,2,5,,5,7,Gratiot,Ave,963509,12.986,13.201,0,5.145033,3.7,5 +7720,0,0.457993,1,1,0,2,5,,5,7,Smiths Creek,Rd,961901,13.427,13.885,0,10.991827,3.7,5 +7266,1,0.33904,1,0,0,1,1,RON,5,7,Wadhams/E I 69,RAMP,962905,0,0.339,0,,1.09,4 +7560,-1,0.629544,0,2,0,1,1,,5,7,W I 69,,962902,23.297,23.927,0,,1.02,7 +7657,1,0.641432,2,0,0,1,1,,5,7,E I 69,,962706,23.185,23.827,0,,1.02,7 +7713,1,0.325803,1,0,0,1,1,RON,5,7,Wadhams/W I 69,RAMP,963301,0,0.326,0,,1.09,4 +8826,0,0.275179,1,1,0,2,4,,5,7,Wadhams,Rd,969901,14.281,14.556,0,6.604294,3,4 +8839,0,1.021832,1,1,0,2,4,,5,7,Wadhams,Rd,969901,12.269,13.291,0,24.523979,3,4 +8965,0,1.021179,1,1,0,2,4,,5,7,Griswold,Rd,969503,4.017,5.038,0,24.508289,3,4 +25969,0,0.197282,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.734757,0.15,4 +25971,0,0.399462,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.587093,0.15,4 +29353,0,1.157949,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.790781,0.15,4 +29360,0,0.518831,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.451956,0.15,4 +8838,0,0.871202,1,1,0,2,4,,5,7,Wadhams,Rd,969901,13.291,14.162,0,20.908841,3,4 +8968,0,1.021368,1,1,0,2,5,,5,7,Griswold,Rd,969503,2.996,4.017,0,24.512827,3.7,5 +7496,1,0.364595,1,0,0,1,1,ROF,5,7,E I 69/Wadhams,RAMP,962903,0,0.365,0,,2.24,5 +8834,0,0.11887,1,1,0,2,4,,5,7,Wadhams,Rd,969901,14.162,14.281,0,2.852883,3,4 +8843,0,1.011843,1,1,0,2,4,,5,7,Wadhams,Rd,969901,11.257,12.269,0,24.284228,3,4 +28224,0,1.243235,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,29.837637,0.15,4 +29190,0,1.146157,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.507774,0.15,4 +29361,0,0.546638,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.119324,0.15,4 +8804,0,0.282641,2,2,0,2,4,,5,7,Wadhams,Rd,969901,14.556,14.839,0,6.783381,3,4 +7829,1,0.379054,1,0,0,1,1,ROF,5,7,W I 69/Wadhams,RAMP,963302,0,0.379,0,,2.24,5 +7632,0,0.231768,1,1,0,2,5,,5,7,Lapeer,Rd,962901,13.606,13.838,0,5.562433,3.7,5 +8798,0,0.082976,2,2,1,2,4,,5,7,Wadhams,Rd,969901,15,15.082,0,1.991426,3,4 +8802,0,0.160956,2,2,0,2,4,,5,7,Wadhams,Rd,969901,14.839,15,0,3.862944,3,4 +7489,0,0.5111,1,1,0,2,5,,5,7,Allen,Rd,962906,3.07,3.581,0,12.266397,3.7,5 +25970,0,0.550034,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.200811,0.15,4 +29352,0,0.353176,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,8.476224,0.15,4 +26074,0,0.323612,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,7.766679,0.15,4 +7386,0,0.26798,2,2,0,2,4,,4,7,Huron,Blvd,963901,1.098,1.366,0,6.431526,4.5,4.5 +7557,0,0.346743,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,15.487,15.834,0,8.321835,3.7,5 +8166,0,1.27643,1,1,0,2,4,,5,7,Range,Rd,968407,2.959,4.236,0,30.63432,3,4 +8170,0,0.3046,1,1,0,2,5,,4,7,Collard,Dr,968305,0.056,0.361,0,7.310411,5.8,4.5 +8261,0,0.711323,1,1,0,2,5,,4,7,River,Rd,967305,0.841,1.552,0,17.071761,5.8,4.5 +8263,0,0.297395,1,1,0,2,5,,4,7,River,Rd,967305,0,0.297,0,7.137478,5.8,4.5 +8273,0,0.339055,1,1,0,2,4,,4,7,Busha,Hwy,967105,7.698,8.037,0,8.137314,4.5,4.5 +8277,0,1.20281,1,1,0,2,4,,4,7,Busha,Hwy,967105,5.64,6.842,0,28.867435,4.5,4.5 +8280,0,0.755202,1,1,0,2,4,,4,7,River,Rd,967105,4.296,5.051,0,18.124838,4.5,4.5 +8898,0,0.154384,1,1,0,2,5,,4,7,Davis,Rd,969701,3.018,3.172,0,3.705222,5.8,4.5 +21986,0,0.300766,1,1,0,2,5,,4,7,Cuttle,Rd,4502830,0.305,0.606,0,7.218377,5.8,4.5 +29363,0,0.261788,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.282916,0.15,4 +29365,0,0.640668,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,15.376031,0.15,4 +29367,0,0.332178,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,7.972276,0.15,4 +29370,0,0.661379,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,15.873101,0.15,4 +8278,0,0.229533,1,1,0,2,4,,4,7,Busha,Hwy,967105,5.41,5.64,0,5.508789,4.5,4.5 +8901,0,0.201923,1,1,0,2,5,,4,7,Davis,Rd,969701,2.816,3.018,0,4.846161,5.8,4.5 +8908,0,0.556854,1,1,0,2,5,,5,7,Davis,Rd,969701,1.998,2.555,0,13.364493,3.7,5 +29308,0,0.678775,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,16.290602,0.15,4 +29345,0,0.667637,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,16.023276,0.15,4 +8906,0,0.261002,1,1,0,2,5,,5,7,Davis,Rd,969701,2.555,2.816,0,6.264042,3.7,5 +8279,0,0.358896,1,1,0,2,4,,4,7,Busha,Hwy,967105,5.051,5.41,0,8.613494,4.5,4.5 +25920,0,0.569962,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.679081,0.15,4 +25922,0,0.581536,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.956858,0.15,4 +29374,0,0.700198,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,16.804748,0.15,4 +40083,0,0.186671,1,1,0,2,5,,2,7,River,St,5492775,0,0.187,0,4.480108,8.5,4.5 +7380,0,0.376433,1,1,0,2,5,,4,7,Michigan,Rd,963906,0.65,1.027,0,9.034404,5.8,4.5 +7717,0,0.434764,1,1,0,2,5,,4,7,6th,St,961901,14.452,14.887,0,10.434347,5.8,4.5 +7769,0,0.545148,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,14.334,14.879,0,13.083564,3.7,5 +8126,0,0.470675,1,1,0,2,4,,4,7,Huron,Blvd,963901,0,0.471,0,11.296206,4.5,4.5 +8132,1,0.352014,1,0,0,1,1,ROF,5,7,W I 94/Gratiot,RAMP,963804,0,0.352,0,,2.24,5 +8189,-1,0.249469,0,2,0,1,1,,5,7,W I 94,,967804,16.724,16.973,0,,1.02,7 +8897,0,0.321489,1,1,0,2,5,,4,7,Cuttle,Rd,969702,0.672,0.994,0,7.71573,5.8,4.5 +9079,0,0.650157,1,1,0,2,4,,4,7,Range,Rd,968407,4.632,5.282,0,15.603759,4.5,4.5 +29291,0,0.561008,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.464191,0.15,4 +29292,0,0.630968,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,15.143223,0.15,4 +40107,1,0.025849,2,0,0,2,4,,4,5,Whittaker,Rd,1439102,9.096,9.121,0,0.620386,4.5,4.5 +40078,1,0.218445,1,0,0,1,1,RON,5,7,Gratiot/E I 94,RAMP,963807,0,0.218,0,,1.09,4 +40081,1,0.342492,1,0,0,1,1,ROF,5,7,E I 94/Gratiot,RAMP,967708,0,0.342,0,,2.24,5 +8238,1,0.239918,2,0,0,1,1,,5,7,E I 94,,967606,16.465,16.705,0,,1.02,7 +7627,0,0.008605,2,2,0,2,3,,5,7,Gratiot,Rd,963509,13.92,13.929,0,0.206514,1.7,4 +40109,1,0.011255,2,0,0,2,4,,4,5,Whittaker,Rd,1439102,9.084,9.096,0,0.270115,4.5,4.5 +40108,-1,0.024089,0,2,0,2,4,,4,5,Whittaker,Rd,4606157,0.039,0.063,0,0.578137,4.5,4.5 +8018,0,0.165039,2,2,0,2,3,,5,7,Gratiot,Rd,963509,13.929,14.094,0,3.960929,1.7,4 +40100,-1,0.097384,0,2,0,2,5,,3,5,Green,Rd,5490676,0.088,0.185,0,2.337209,8,4.5 +7586,0,0.229729,2,2,1,2,3,,5,7,Gratiot,Rd,963509,14.104,14.334,0,5.513495,1.7,4 +40101,0,0.306167,2,2,1,2,4,,4,5,Whittaker,Rd,1439102,9.121,9.427,0,7.348016,4.5,4.5 +40079,1,0.21338,1,0,0,1,1,RON,5,7,Gratiot/W I 94,RAMP,5492910,0,0.213,0,,1.09,4 +40105,-1,0.017998,0,1,0,2,4,,4,5,Stony Creek,Rd,4606156,0.04,0.058,0,0.431946,4.5,4.5 +40104,1,0.019849,1,0,0,2,4,,4,5,Stony Creek,Rd,1431208,11.407,11.427,0,0.476364,4.5,4.5 +40106,-1,0.025921,0,2,0,2,4,,4,5,Whittaker,Rd,4606157,0.063,0.089,0,0.622097,4.5,4.5 +7503,0,0.010769,2,2,0,2,3,,5,7,Gratiot,Rd,963509,14.094,14.104,0,0.258451,1.7,4 +9204,0,0.395891,1,1,0,2,4,,4,7,Range,Rd,968407,4.236,4.632,0,9.501385,4.5,4.5 +9192,0,0.281109,1,1,0,2,4,,4,7,Range,Rd,968407,5.741,6.022,0,6.746608,4.5,4.5 +29344,0,0.369188,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,8.860515,0.15,4 +9198,0,0.196845,1,1,0,2,4,,4,7,Range,Rd,968407,5.544,5.741,0,4.724282,4.5,4.5 +9200,0,0.262645,2,2,0,2,4,,4,7,Range,Rd,968407,5.282,5.544,0,6.303477,4.5,4.5 +7854,0,0.553465,1,1,0,2,5,,4,7,Michigan,Rd,963906,0,0.553,0,13.283156,5.8,4.5 +8275,0,0.565461,1,1,0,2,4,,4,7,Busha,Hwy,967105,7.02,7.585,0,13.571061,4.5,4.5 +8276,0,0.177406,1,1,0,2,4,,4,7,Busha,Hwy,967105,6.842,7.02,0,4.257745,4.5,4.5 +29155,0,0.567387,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.617286,0.15,4 +29368,0,0.508513,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.204313,0.15,4 +21884,0,0.301396,1,1,0,2,5,,4,7,Cuttle,Rd,4502813,0,0.301,0,7.233511,5.8,4.5 +22083,0,0.305311,1,1,0,2,5,,4,7,Cuttle,Rd,4502830,0,0.305,0,7.327475,5.8,4.5 +8274,0,0.113229,1,1,0,2,4,,4,7,Busha,Hwy,967105,7.585,7.698,0,2.717494,4.5,4.5 +7590,0,0.096723,1,1,0,2,5,,4,7,Michigan,Rd,963906,0.553,0.65,0,2.321354,5.8,4.5 +7377,0,0.297823,1,1,0,2,5,,4,7,Michigan,Rd,963906,1.258,1.555,0,7.147755,5.8,4.5 +7562,0,0.407015,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,14.879,15.286,0,9.768363,3.7,5 +7595,0,0.312622,2,2,0,2,4,,4,7,Huron,Blvd,963901,0.786,1.098,0,7.502921,4.5,4.5 +7716,0,0.460748,1,1,0,2,5,,4,7,6th,St,961901,15.001,15.461,0,11.057946,5.8,4.5 +7761,0,0.200481,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,15.286,15.487,0,4.811555,3.7,5 +29338,0,0.610683,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,14.656395,0.15,4 +29372,0,0.266415,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.393949,0.15,4 +29378,0,0.168351,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.04043,0.15,4 +7860,0,0.075034,2,2,0,2,4,,4,7,Huron,Blvd,963901,0.521,0.596,0,1.800812,4.5,4.5 +8125,0,0.050172,1,1,0,2,4,,4,7,Huron,Blvd,963901,0.471,0.521,0,1.204117,4.5,4.5 +29375,0,0.211655,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.079724,0.15,4 +7642,0,0.189879,2,2,0,2,4,,4,7,Huron,Blvd,963901,0.596,0.786,0,4.557088,4.5,4.5 +7957,0,0.11393,1,1,0,2,5,,4,7,6th,St,961901,14.887,15.001,0,2.734326,5.8,4.5 +8119,0,0.231035,1,1,0,2,5,,4,7,Michigan,Rd,963906,1.027,1.258,0,5.544844,5.8,4.5 +29376,0,0.177477,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.259451,0.15,4 +29377,0,0.176879,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.245096,0.15,4 +7366,0,0.298636,1,1,0,2,5,,4,7,Michigan,Rd,963906,1.778,2.077,0,7.167275,5.8,4.5 +7852,0,0.143809,1,1,0,2,5,,4,7,Michigan,Rd,963906,1.634,1.778,0,3.451419,5.8,4.5 +8118,0,0.078805,1,1,0,2,5,,4,7,Michigan,Rd,963906,1.555,1.634,0,1.891328,5.8,4.5 +8262,0,0.543749,1,1,0,2,5,,4,7,River,Rd,967305,0.297,0.841,0,13.049965,5.8,4.5 +7578,0,0.365436,1,1,0,2,5,,4,7,Delaware,Ave,963907,0,0.366,0,8.770472,5.8,4.5 +8259,0,0.831915,1,1,0,2,5,,4,7,River,Rd,967305,2.435,3.267,0,19.965966,5.8,4.5 +8272,0,0.716588,1,1,0,2,4,,4,7,Busha,Hwy,967105,8.037,8.754,0,17.198107,4.5,4.5 +8120,0,0.164352,1,1,0,2,5,,4,7,Huron,Blvd,963901,1.631,1.795,0,3.94444,5.8,4.5 +8260,0,0.883038,1,1,0,2,5,,4,7,River,Rd,967305,1.552,2.435,0,21.192916,5.8,4.5 +29364,0,0.648051,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,15.553225,0.15,4 +7382,0,0.212243,1,1,0,2,5,,4,7,Huron,Blvd,963901,1.418,1.631,0,5.093838,5.8,4.5 +29369,0,0.288337,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.920085,0.15,4 +8122,0,0.052138,2,2,0,2,4,,4,7,Huron,Blvd,963901,1.366,1.418,0,1.251319,4.5,4.5 +7550,0,0.136444,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,16.157,16.294,0,3.274653,3.7,5 +8094,0,0.308904,1,1,0,2,5,,4,7,Delaware,Ave,963907,0.524,0.833,0,7.413697,5.8,4.5 +8271,0,0.633914,2,2,0,2,4,,4,7,Busha,Hwy,967105,8.754,9.388,0,15.213934,4.5,4.5 +29334,0,0.236649,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.679568,0.15,4 +29336,0,0.273563,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.565509,0.15,4 +7355,0,0.158211,1,1,0,2,5,,4,7,Delaware,Ave,963907,0.366,0.524,0,3.797063,5.8,4.5 +7754,0,0.323908,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,15.834,16.157,0,7.773796,3.7,5 +29362,0,0.337661,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.103863,0.15,4 +7385,0,0.069715,2,2,0,2,4,,3,7,24th,St,963010,1.168,1.238,0,1.673152,6,4.5 +7610,0,0.869746,1,1,1,2,4,,4,7,Lapeer,Rd,962901,16.798,17.668,0,20.873906,4.5,4.5 +7617,1,0.397433,1,0,0,1,1,,4,7,W I 69,,0,0,0,0,,0.8,7.5 +7654,1,0.984702,2,0,0,1,2,,5,7,I 69 BL,,962706,26.805,27.79,0,,1.02,7 +7841,0,1.029147,1,1,0,2,5,,5,7,Michigan,Rd,963906,3.822,4.851,0,24.699534,3.7,5 +8184,-1,0.724223,0,2,0,1,1,,5,7,W I 94,,967804,21.73,22.454,0,,1.02,7 +8186,-1,1.146202,0,2,0,1,1,,5,7,W I 94,,967804,20.243,21.389,0,,1.02,7 +8205,0,0.8151,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,3.834,4.649,0,19.562403,5.8,4.5 +40434,1,0.239281,1,0,0,1,1,RON,4,7,Water/Pine Grove,RAMP,4506257,0,0.239,0,,1.09,4 +8235,1,1.216803,2,0,0,1,1,,5,7,E I 94,,967606,20.113,21.329,0,,1.02,7 +8956,0,1.029266,1,1,0,2,4,,5,7,Griswold,Rd,969503,7.094,8.123,0,24.702384,3,4 +9094,0,0.50972,1,1,0,2,4,,4,7,Dove,St,968503,1.027,1.537,0,12.233271,4.5,4.5 +25317,0,0.651785,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,15.642848,0.15,4 +29245,0,0.82726,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,19.854243,0.15,4 +29337,0,0.530027,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.720639,0.15,4 +29379,0,0.514121,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.338902,0.15,4 +29383,0,0.813708,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,19.528985,0.15,4 +29391,0,0.775774,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,18.618582,0.15,4 +29395,0,0.338638,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,8.127306,0.15,4 +7364,0,0.51179,1,1,0,2,5,,4,7,Michigan,Rd,963906,2.803,3.315,0,12.282965,5.8,4.5 +8208,0,0.510133,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,2.809,3.319,0,12.2432,5.8,4.5 +9106,-1,0.16123,0,2,0,2,4,DV2,4,7,Dove,St,4505946,0,0.161,0,3.869525,4.5,4.5 +9178,0,0.982568,1,1,0,2,4,,4,7,Range,Rd,968407,7.046,8.028,0,23.581627,4.5,4.5 +29396,0,0.506306,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.151332,0.15,4 +29403,0,0.538878,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.933073,0.15,4 +9187,0,0.313796,1,1,0,2,4,,4,7,Range,Rd,968407,6.732,7.046,0,7.5311,4.5,4.5 +8187,-1,0.569826,0,2,0,1,1,,5,7,W I 94,,967804,19.673,20.243,0,,1.02,7 +8236,1,0.589756,2,0,0,1,1,,5,7,E I 94,,967606,19.523,20.113,0,,1.02,7 +8318,1,0.304174,1,0,0,1,1,ROF,5,7,W I 94/Range,RAMP,965402,0,0.304,0,,2.24,5 +8319,1,0.342963,1,0,0,1,1,RON,5,7,Range/W I 94,RAMP,965309,0,0.343,0,,1.09,4 +8321,1,0.28271,1,0,0,1,1,RON,5,7,Range/E I 94,RAMP,965305,0,0.283,0,,1.09,4 +9147,0,0.245184,1,1,1,2,4,,5,7,Range,Rd,968407,8.072,8.318,0,5.884418,3,4 +8114,1,0.300494,1,0,0,1,1,ROF,5,7,E I 94/Range,RAMP,963307,0,0.301,0,,2.24,5 +9173,0,0.007455,1,1,1,2,4,,4,7,Range,Rd,968407,8.028,8.036,0,0.178925,4.5,4.5 +9155,0,0.036724,1,1,1,2,4,,4,7,Range,Rd,968407,8.036,8.072,0,0.881365,4.5,4.5 +9137,0,0.237541,1,1,0,2,4,,5,7,Range,Rd,968407,8.318,8.555,0,5.700978,3,4 +37118,0,0.352661,1,1,0,2,4,,4,7,Dove,St,968503,0.164,0.517,0,8.463876,4.5,4.5 +37119,1,0.164127,2,0,0,2,4,DV2,4,7,Dove,St,968503,0,0.164,0,3.939045,4.5,4.5 +37122,-1,0.101233,0,1,0,2,4,,3,2,Plymouth,Rd,1680408,2.773,2.875,0,2.429604,6,4.5 +7843,0,0.474052,1,1,0,2,5,,4,7,Michigan,Rd,963906,2.329,2.803,0,11.37724,5.8,4.5 +8206,0,0.295851,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,3.538,3.834,0,7.10043,5.8,4.5 +29342,0,0.563248,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.51795,0.15,4 +8207,0,0.218988,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,3.319,3.538,0,5.255715,5.8,4.5 +8100,0,0.507189,1,1,0,2,5,,4,7,Michigan,Rd,963906,3.315,3.822,0,12.172527,5.8,4.5 +9102,0,0.510013,1,1,0,2,4,,4,7,Dove,St,968503,0.517,1.027,0,12.240313,4.5,4.5 +29393,0,0.509956,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.238934,0.15,4 +29394,0,0.511483,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.275585,0.15,4 +29390,0,0.392081,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.409954,0.15,4 +7244,1,0.400267,1,0,0,1,1,RFF,5,7,E I 69/W I 94,RAMP,962908,0,0.4,0,,1.02,7 +7309,-1,0.114644,0,1,0,1,1,,4,7,W I 69,,0,0,0,0,,0.8,7.5 +7425,0,0.256491,1,1,0,2,4,,4,7,Lapeer,Rd,962901,15.865,16.121,0,6.155786,4.5,4.5 +7612,1,0.638756,1,0,0,1,1,RFS,5,7,E I 94/W I 69,RAMP,963303,0,0.639,0,,0.22,6 +7656,1,0.636667,2,0,0,1,1,,5,7,E I 69,,962706,25.971,26.607,0,,1.02,7 +8097,0,0.538216,1,1,0,2,5,,5,7,Michigan,Rd,963906,5.077,5.615,0,12.917181,3.7,5 +9108,0,0.523011,1,1,0,2,4,,5,7,Range,Rd,968407,9.744,10.267,0,12.552275,3,4 +25968,0,0.658838,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,15.812113,0.15,4 +26078,0,0.511826,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.283829,0.15,4 +29397,0,0.483675,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.60821,0.15,4 +25967,0,0.421277,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,10.110659,0.15,4 +29398,0,0.477027,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.448649,0.15,4 +9123,0,0.254004,1,1,0,2,4,,5,7,Range,Rd,968407,9.49,9.744,0,6.096087,3,4 +7623,0,0.253607,1,1,0,2,4,,4,7,Lapeer,Rd,962901,15.611,15.865,0,6.086557,4.5,4.5 +7579,0,0.169462,1,1,0,2,5,,5,7,Michigan,Rd,963906,4.851,5.02,0,4.06709,3.7,5 +8164,1,0.580845,1,0,0,1,1,RFF,5,7,E I 94/E I 69,RAMP,963003,0.159,0.74,0,,1.02,7 +8234,1,0.804485,2,0,0,1,1,,5,7,E I 94,,967606,21.329,22.134,0,,1.02,7 +29399,0,0.176324,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.231771,0.15,4 +29400,0,0.172858,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.148602,0.15,4 +7415,1,0.159483,1,0,0,1,1,RFF,5,7,E I 94/E I 69,RAMP,963003,0,0.159,0,,1.02,7 +8185,-1,0.341258,0,2,0,1,1,,5,7,W I 94,,967804,21.389,21.73,0,,1.02,7 +7234,1,0.200181,1,0,0,1,1,,5,7,E I 69/E I 94,RAMP,963002,0,0.2,0,,1.02,7 +7479,1,0.197823,2,0,0,1,2,,5,7,I 69 BL,,962706,26.607,26.805,0,,1.02,7 +7357,0,0.056768,1,1,0,2,5,,5,7,Michigan,Rd,963906,5.02,5.077,0,1.362438,3.7,5 +7424,0,0.254911,1,1,1,2,4,,4,7,Lapeer,Rd,962901,16.376,16.631,0,6.117861,4.5,4.5 +29389,0,0.56526,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.566233,0.15,4 +7622,0,0.255215,1,1,0,2,4,,4,7,Lapeer,Rd,962901,16.121,16.376,0,6.125165,4.5,4.5 +7413,0,0.074566,1,1,1,2,4,,4,7,Lapeer,Rd,962901,16.724,16.798,0,1.78959,4.5,4.5 +8095,0,0.104838,1,1,0,2,5,,4,7,Michigan,Rd,963906,5.731,5.836,0,2.516116,5.8,4.5 +29388,0,0.148634,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,3.567221,0.15,4 +29409,0,0.173076,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.153821,0.15,4 +7356,0,0.116303,1,1,0,2,5,,4,7,Michigan,Rd,963906,5.615,5.731,0,2.791266,5.8,4.5 +7616,0,0.09228,1,1,1,2,4,,4,7,Lapeer,Rd,962901,16.631,16.724,0,2.214732,4.5,4.5 +7544,1,0.846077,2,0,0,2,3,DIV,4,7,Busha,Hwy,963509,16.573,17.42,0,20.30585,3.7,5 +7594,-1,0.444114,0,2,0,2,3,,4,7,Electric,Ave,963402,1.189,1.633,0,10.658737,3.7,5 +7630,-1,0.819378,0,2,0,2,3,DIV,4,7,Busha,Hwy,963402,0,0.819,0,19.665072,3.7,5 +8163,0,0.440596,2,2,0,2,4,,3,7,24th,St,963010,0.032,0.473,0,10.574304,6,4.5 +8203,0,0.254197,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,4.846,5.101,0,6.100721,5.8,4.5 +9091,0,0.251327,1,1,0,2,4,,4,7,Dove,St,968503,2.05,2.301,0,6.03185,4.5,4.5 +29381,0,0.724727,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,17.393455,0.15,4 +29339,0,0.543839,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.052141,0.15,4 +7323,0,0.040832,2,2,0,2,3,,4,7,Gratiot,Blvd,963509,16.533,16.573,0,0.979979,3.7,5 +8204,0,0.197179,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,4.649,4.846,0,4.732286,5.8,4.5 +9092,0,0.513336,1,1,0,2,4,,4,7,Dove,St,968503,1.537,2.05,0,12.320076,4.5,4.5 +29380,0,0.508288,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.198905,0.15,4 +29386,0,0.50022,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.005276,0.15,4 +7321,1,0.292595,2,0,0,2,3,,4,7,Military,St,963509,17.42,17.712,0,7.02227,3.7,5 +7960,-1,0.325892,0,2,0,2,3,,4,7,Electric,Ave,963402,0.819,1.145,0,7.82141,3.7,5 +29401,0,0.207636,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.983255,0.15,4 +29402,0,0.259634,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.231217,0.15,4 +8201,0,0.050788,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,5.172,5.223,0,1.218911,5.8,4.5 +8202,0,0.071787,1,1,0,2,5,,4,7,Ravenswood,Rd,967709,5.101,5.172,0,1.72288,5.8,4.5 +8008,0,0.068142,2,2,0,2,4,,4,7,Conner,St,963409,0.515,0.583,0,1.63542,4.5,4.5 +7414,0,0.032069,2,2,0,2,4,,4,7,24th,St,963010,0,0.032,0,0.769656,4.5,4.5 +7804,-1,0.02499,0,2,0,2,3,,4,7,Electric,Ave,963402,1.164,1.189,0,0.599763,3.7,5 +7719,0,0.018804,2,2,0,2,3,,4,7,Electric,Ave,963402,1.145,1.164,0,0.4513,3.7,5 +19564,1,0.022491,1,0,0,2,4,,4,7,Power,St,1917906,0,0.023,0,0.539792,4.5,4.5 +7407,0,0.252325,2,2,0,2,4,,3,7,24th,St,963010,0.473,0.725,0,6.055808,6,4.5 +9090,0,0.256935,1,1,0,2,4,,4,7,Dove,St,968503,2.301,2.558,0,6.166431,4.5,4.5 +29288,0,0.260039,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.240939,0.15,4 +29405,0,0.220892,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.301405,0.15,4 +29406,0,0.244422,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.866122,0.15,4 +29289,0,0.156707,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.760959,0.15,4 +29387,0,0.251332,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.03196,0.15,4 +8146,0,0.443175,2,2,0,2,4,,3,7,24th,St,963010,0.725,1.168,0,10.63621,6,4.5 +9086,0,0.249551,2,2,0,2,4,,3,7,Dove,St,968503,2.558,2.808,0,5.989224,6,4.5 +29198,0,0.277468,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.659234,0.15,4 +29294,0,0.31404,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,7.536969,0.15,4 +7268,0,0.107339,2,2,1,2,4,,3,7,24th,St,963010,2.251,2.358,0,2.576136,6,4.5 +7299,-1,0.216936,0,3,0,2,3,DIV,3,7,I 69 BL,,962902,27.832,28.048,0,5.206465,5,5 +7405,0,0.161963,1,1,1,2,4,,3,7,Lapeer,Rd,962901,17.668,17.83,0,3.887117,6,4.5 +7477,1,0.170582,3,0,0,2,3,DIV,3,7,I 69 BL,,962706,27.79,27.96,0,4.093969,5,5 +40431,0,0.090862,1,1,1,2,4,,4,7,Water,St,4502548,1.235,1.326,0,2.18069,4.5,4.5 +8934,-1,0.097349,0,1,0,2,4,,3,7,Griswold,Rd,969503,8.167,8.264,0,2.336373,6,4.5 +19605,1,0.139306,1,0,0,2,4,,3,7,Griswold,Rd,1847408,0,0.139,0,3.343354,6,4.5 +29310,0,0.226855,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.444508,0.15,4 +29382,0,0.716345,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.192283,0.15,4 +29407,0,0.420464,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,10.091131,0.15,4 +29411,0,0.417954,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,10.030901,0.15,4 +29412,0,0.365022,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,8.760527,0.15,4 +29413,0,0.25452,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.10849,0.15,4 +30145,0,0.381123,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,9.146964,0.15,4 +30146,0,0.392284,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.414805,0.15,4 +29385,0,0.44674,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,10.721756,0.15,4 +8947,0,0.043816,1,1,0,2,4,,3,7,Griswold,Rd,969503,8.123,8.167,0,1.051582,6,4.5 +40433,1,0.230232,2,0,0,1,1,ROF,4,7,E I 94/Water,RAMP,4506254,0.469,0.699,0,,2.24,5 +29408,0,0.405899,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.741568,0.15,4 +7300,0,0.138561,2,2,1,2,4,,3,7,24th,St,963010,1.753,1.892,0,3.325466,6,4.5 +7345,1,0.248208,2,0,0,2,5,,3,7,Union,St,964101,0,0.248,0,5.956985,8,4.5 +7470,1,0.330245,3,0,0,2,3,,5,7,I 69 BL,,962706,28.012,28.343,0,7.925888,1.7,4 +7514,-1,0.323155,0,3,0,2,3,,3,7,I 69 BL,,962902,28.048,28.372,0,7.755728,5,5 +7809,-1,0.254943,0,2,0,2,5,,3,7,Court,St,964102,0,0.255,0,6.118623,8,4.5 +29300,0,0.258016,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.192394,0.15,4 +29302,0,0.142408,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.417781,0.15,4 +7649,1,0.05229,3,0,0,2,3,DIV,3,7,I 69 BL,,962706,27.96,28.012,0,1.25495,5,5 +8931,-1,0.043149,0,1,0,2,4,,3,7,Griswold,Rd,969503,8.264,8.308,0,1.03557,6,4.5 +8028,0,0.23929,2,2,1,2,4,,3,7,24th,St,963010,2.012,2.251,0,5.742954,6,4.5 +29410,0,0.269369,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.464848,0.15,4 +8033,0,0.080331,2,2,1,2,4,,3,7,24th,St,963010,1.892,1.972,0,1.92795,6,4.5 +7295,0,0.039708,2,2,1,2,4,,3,7,24th,St,963010,1.972,2.012,0,0.952981,6,4.5 +7291,-1,0.251734,0,2,0,2,3,,3,7,I 69 BL,,962902,28.372,28.623,0,6.041626,5,5 +7338,0,0.195652,2,2,0,2,4,,3,7,24th,St,963010,1.494,1.69,0,4.695642,6,4.5 +7648,1,0.252239,2,0,0,2,3,,3,7,I 69 BL,,962706,28.343,28.595,0,6.053726,5,5 +29523,0,0.265773,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.37856,0.15,4 +8121,0,0.256177,2,2,0,2,4,,3,7,24th,St,963010,1.238,1.494,0,6.148253,6,4.5 +8075,0,0.063374,2,2,0,2,4,,3,7,24th,St,963010,1.69,1.753,0,1.520977,6,4.5 +29305,0,0.137947,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.310728,0.15,4 +29435,0,0.213638,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.127309,0.15,4 +29301,0,0.076881,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.845151,0.15,4 +7395,0,0.049439,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.175,18.225,0,1.186541,6,4.5 +7589,-1,0.588158,0,2,0,2,4,DIV,4,7,I 94/Lapeer Connector,,4506261,0,0.588,0,14.115789,4.5,4.5 +8200,1,0.647512,2,0,0,2,4,DIV,3,7,Lapeer/I 94 Connector,,4506260,0,0.648,0,15.540297,6,4.5 +24950,0,0.256681,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.16034,0.15,4 +25974,0,0.247816,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.947589,0.15,4 +26071,0,0.684352,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,16.424445,0.15,4 +26072,0,0.285546,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.853112,0.15,4 +7399,0,0.160001,2,2,0,2,4,,3,7,Lapeer,Rd,962901,17.943,18.103,0,3.840023,6,4.5 +7603,0,0.112988,2,2,0,2,4,,3,7,Lapeer,Rd,962901,17.83,17.943,0,2.711709,6,4.5 +8002,0,0.167079,2,2,1,2,4,,3,7,24th,St,963010,2.358,2.525,0,4.009905,6,4.5 +7602,0,0.072654,2,2,0,2,4,,3,7,Lapeer,Rd,962901,18.103,18.175,0,1.743703,6,4.5 +40435,1,0.240202,1,0,0,1,1,ROF,4,7,W I 94/Water,RAMP,4506258,0,0.24,0,,2.24,5 +40430,1,0.336083,2,0,0,1,1,ROF,4,7,Water/W I 94,RAMP,4506259,0,0.336,0,,2.24,5 +40429,1,0.17613,1,0,0,1,2,,4,7,Lapeer/I 94 Connector,,4506260,0.734,0.91,0,,0.8,7.5 +40436,-1,0.369144,0,3,0,1,1,,3,7,W I 94,,967804,24.458,24.827,0,,0.58,7 +40427,1,0.289925,1,0,0,1,1,RON,4,7,Water/W I 94,RAMP,4506259,0.336,0.626,0,,1.09,4 +7600,0,0.193404,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.225,18.418,0,4.64169,6,4.5 +24951,0,0.407473,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,9.779341,0.15,4 +21230,0,0.217001,2,2,0,2,4,,4,7,Water,St,4502548,0.964,1.181,0,5.20802,4.5,4.5 +21231,0,0.255174,2,2,0,2,4,,3,7,Water,St,4502548,0.709,0.964,0,6.124183,6,4.5 +21229,0,0.054055,1,1,1,2,4,,4,7,Water,St,4502548,1.181,1.235,0,1.297316,4.5,4.5 +7921,0,0.158356,2,2,0,2,4,,3,7,10th,St,963204,0.305,0.463,0,3.800554,6,4.5 +7973,0,0.21529,2,2,0,2,4,,3,7,16th,St,963108,0.746,0.961,0,5.166948,6,4.5 +8133,0,0.321439,2,2,0,2,3,,3,7,Military,St,963509,19.311,19.632,0,7.714535,5,5 +7281,1,0.383317,2,0,0,2,3,,3,7,Military,St,963509,18.654,19.037,0,9.199599,5,5 +7715,-1,0.479939,0,2,0,2,3,,3,7,Electric,Ave,963402,2.085,2.565,0,11.518531,5,5 +7956,-1,0.17702,0,2,0,2,3,,3,7,Electric,Ave,963402,1.908,2.085,0,4.248491,5,5 +7977,0,0.126607,2,2,0,2,4,,3,7,16th,St,963108,0.196,0.323,0,3.038573,6,4.5 +9074,0,0.070171,2,2,0,2,4,,3,7,Reid,Ave,968503,3.252,3.322,0,1.684115,6,4.5 +29414,0,0.366948,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,8.806749,0.15,4 +7502,1,0.265227,2,0,0,2,3,,3,7,Military,St,963509,18.388,18.654,0,6.365454,5,5 +8092,1,0.202733,2,0,0,2,3,,3,7,Military,St,963509,18.186,18.388,0,4.865599,5,5 +7247,0,0.083572,2,2,0,2,4,,3,7,16th,St,963108,0,0.084,0,2.005735,6,4.5 +7245,0,0.072168,2,2,0,2,4,,3,7,16th,St,963108,0.124,0.196,0,1.73204,6,4.5 +7700,-1,0.041581,0,2,0,2,3,,3,7,Electric,Ave,963402,1.867,1.908,0,0.997946,5,5 +21285,-1,0.036402,0,1,0,2,3,,3,7,Electric/16th Cutoff,,4502132,0,0.036,0,0.873653,5,5 +7980,0,0.040383,2,2,0,2,4,,3,7,16th,St,963108,0.084,0.124,0,0.969196,6,4.5 +7238,0,0.423016,2,2,0,2,4,,3,7,16th,St,963108,0.323,0.746,0,10.152378,6,4.5 +9081,0,0.131471,2,2,0,2,4,,3,7,Reid,Ave,968503,3.061,3.193,0,3.155312,6,4.5 +29419,0,0.400643,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,9.615428,0.15,4 +29421,0,0.260136,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.24327,0.15,4 +9080,0,0.059316,2,2,0,2,4,,3,7,Reid,Ave,968503,3.193,3.252,0,1.423576,6,4.5 +7394,1,0.274119,2,0,0,2,3,,3,7,Military,St,963509,19.037,19.311,0,6.578866,5,5 +7699,0,0.186143,2,2,0,2,4,,3,7,10th,St,963204,0.119,0.305,0,4.467439,6,4.5 +7930,0,0.118496,1,1,0,2,4,,3,7,10th,St,963204,0,0.119,0,2.843896,6,4.5 +7280,-1,0.194745,0,2,0,2,3,,3,7,Electric,Ave,963402,2.565,2.76,0,4.673869,5,5 +7302,0,0.162767,2,2,1,2,3,,2,7,Pine Grove,Ave,964203,0.335,0.498,0,3.906414,6,5 +7498,-1,0.091147,0,2,0,2,3,,3,7,I 69 BL,,962902,29.557,29.648,0,2.187531,5,5 +7517,0,0.080181,2,2,0,2,3,,2,7,Military,St,963509,20.58,20.66,0,1.924345,6,5 +40085,0,0.07363,1,1,0,2,5,,2,7,River,St,5492775,0.187,0.26,0,1.767114,8.5,4.5 +7553,-1,0.092177,0,2,0,2,5,,2,7,Court,St,964102,1.193,1.285,0,2.212249,8.5,4.5 +7559,0,0.118491,2,2,0,2,4,,2,7,10th,St,963204,1.411,1.53,0,2.843773,8,4.5 +7588,0,0.085755,2,2,1,2,4,,2,7,Lapeer,Ave,962901,19.379,19.464,0,2.05813,8,4.5 +7604,1,0.091737,2,0,0,2,5,,3,7,Union,St,964101,1.186,1.278,0,2.201695,8,4.5 +7614,0,0.1639,1,1,0,2,5,,3,7,13th,St,963201,0.881,1.045,0,3.933605,8,4.5 +7645,1,0.268339,2,0,0,2,3,,3,7,I 69 BL,,962706,29.353,29.621,0,6.440144,5,5 +7828,0,0.206807,1,1,0,2,4,,3,7,16th,St,963108,1.84,2.047,0,4.963367,6,4.5 +8039,0,0.071792,1,1,0,2,4,,2,7,7th,St,963208,0.97,1.042,0,1.72302,8,4.5 +8047,0,0.103327,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.203,0.307,0,2.47986,8.5,4.5 +21219,0,0.08712,1,1,1,2,4,,2,7,Water,St,4502561,0.08,0.167,0,2.090876,8,4.5 +29247,0,0.27331,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.559447,0.15,4 +29416,0,0.16935,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.06441,0.15,4 +29427,0,0.140477,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.371443,0.15,4 +29429,0,0.039741,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,0.953786,0.15,4 +29431,0,0.101075,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.425808,0.15,4 +29432,0,0.159963,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.839106,0.15,4 +29438,0,0.067464,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.619129,0.15,4 +29439,0,0.117941,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.830581,0.15,4 +7290,-1,0.250429,0,2,0,2,3,,3,7,I 69 BL,,962902,28.874,29.124,0,6.010297,5,5 +7468,1,0.255253,2,0,0,2,3,,3,7,I 69 BL,,962706,29.098,29.353,0,6.126064,5,5 +7512,-1,0.256956,0,2,0,2,3,,3,7,I 69 BL,,962902,29.124,29.381,0,6.166941,5,5 +7691,0,0.062838,2,2,0,2,4,,3,7,10th,St,963204,0.847,0.909,0,1.508102,6,4.5 +7813,0,0.062007,1,1,0,2,5,,3,7,13th,St,963201,0.322,0.384,0,1.488165,8,4.5 +7876,0,0.140654,1,1,0,2,4,,3,7,16th,St,963108,1.349,1.49,0,3.375706,6,4.5 +8070,-1,0.253382,0,2,0,2,5,,3,7,Court,St,964102,0.757,1.01,0,6.081161,8,4.5 +8079,1,0.172479,2,0,0,2,5,,3,7,Union,St,964101,0.832,1.004,0,4.139498,8,4.5 +26076,0,0.253369,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.080867,0.15,4 +29311,0,0.262697,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.304739,0.15,4 +29418,0,0.258886,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.213254,0.15,4 +29521,0,0.283649,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.807574,0.15,4 +7646,1,0.250812,2,0,0,2,3,,3,7,I 69 BL,,962706,28.847,29.098,0,6.019488,5,5 +8142,0,0.128862,2,2,0,2,4,,3,7,16th,St,963108,0.961,1.09,0,3.092699,6,4.5 +29417,0,0.257307,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.175366,0.15,4 +29424,0,0.285823,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.859761,0.15,4 +7879,0,0.197596,2,2,0,2,4,,3,7,16th,St,963108,1.09,1.287,0,4.742308,6,4.5 +8140,0,0.061644,1,1,0,2,4,,3,7,16th,St,963108,1.287,1.349,0,1.479463,6,4.5 +29448,0,0.066729,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.601507,0.15,4 +7335,-1,0.250789,0,2,0,2,5,,3,7,Court,St,964102,0.506,0.757,0,6.018931,8,4.5 +7870,0,0.078213,1,1,0,2,4,,3,7,16th,St,963108,1.569,1.647,0,1.877107,6,4.5 +8013,0,0.077387,1,1,0,2,5,,3,7,13th,St,963201,0.604,0.682,0,1.857298,8,4.5 +8080,1,0.169242,2,0,0,2,5,,3,7,Union,St,964101,0.581,0.75,0,4.061816,8,4.5 +29309,0,0.24564,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.895368,0.15,4 +29525,0,0.186726,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.481426,0.15,4 +7342,1,0.08163,2,0,0,2,5,,3,7,Union,St,964101,0.5,0.581,0,1.959122,8,4.5 +8134,0,0.078769,1,1,0,2,4,,3,7,16th,St,963108,1.49,1.569,0,1.890453,6,4.5 +8091,0,0.19311,1,1,0,2,4,,3,7,16th,St,963108,1.647,1.84,0,4.634635,6,4.5 +8067,0,0.14119,1,1,0,2,5,,3,7,13th,St,963201,0.384,0.525,0,3.388557,8,4.5 +7805,0,0.079602,1,1,0,2,5,,3,7,13th,St,963201,0.525,0.604,0,1.910439,8,4.5 +7816,1,0.081462,2,0,0,2,5,,3,7,Union,St,964101,0.75,0.832,0,1.955092,8,4.5 +29522,0,0.105522,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.532539,0.15,4 +29524,0,0.008456,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.202942,0.15,4 +7755,0,0.199602,1,1,0,2,5,,3,7,13th,St,963201,0.682,0.881,0,4.790437,8,4.5 +29443,0,0.01907,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.457674,0.15,4 +7919,0,0.126682,2,2,0,2,4,,3,7,10th,St,963204,0.523,0.65,0,3.040371,6,4.5 +29415,0,0.162032,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.888772,0.15,4 +7694,0,0.060407,2,2,0,2,4,,3,7,10th,St,963204,0.463,0.523,0,1.449761,6,4.5 +7915,0,0.127417,2,2,0,2,4,,3,7,10th,St,963204,0.719,0.847,0,3.057998,6,4.5 +7693,0,0.069056,2,2,0,2,4,,3,7,10th,St,963204,0.65,0.719,0,1.657348,6,4.5 +7287,-1,0.176179,0,2,0,2,3,,3,7,I 69 BL,,962902,29.381,29.557,0,4.228295,5,5 +7771,0,0.077276,2,2,0,2,4,,3,7,10th,St,963204,1.128,1.205,0,1.854625,6,4.5 +7808,-1,0.182423,0,2,0,2,5,,2,7,Court,St,964102,1.01,1.193,0,4.378143,8.5,4.5 +7814,1,0.181572,2,0,0,2,5,,3,7,Union,St,964101,1.004,1.186,0,4.357733,8,4.5 +29425,0,0.203471,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.883304,0.15,4 +29445,0,0.175756,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,4.21814,0.15,4 +7811,0,0.139747,2,2,0,2,4,,3,7,10th,St,963204,0.909,1.049,0,3.353917,6,4.5 +7601,0,0.078699,2,2,0,2,4,,3,7,10th,St,963204,1.049,1.128,0,1.888771,6,4.5 +7564,0,0.133906,2,2,0,2,4,,2,7,10th,St,963204,1.205,1.339,0,3.213734,8,4.5 +7765,0,0.072151,2,2,0,2,4,,2,7,10th,St,963204,1.339,1.411,0,1.731635,8,4.5 +29437,0,0.152302,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.655255,0.15,4 +29436,0,0.072909,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.749814,0.15,4 +29446,0,0.135876,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.261015,0.15,4 +7556,0,0.070298,2,2,0,2,4,,2,7,10th,Ave,963204,1.929,2,0,1.687146,8,4.5 +7596,0,0.260069,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.926,19.186,0,6.241653,6,4.5 +8420,0,0.217782,1,1,0,2,7,,2,7,Stone,St,964308,0.151,0.369,0,5.226766,8.5,4.5 +8592,0,0.067543,1,1,0,2,4,,3,7,17th,St,971001,0.449,0.516,0,1.621043,6,4.5 +40087,0,0.071086,2,2,0,2,4,,2,7,10th,Ave,963204,2,2.071,0,1.706064,8,4.5 +21234,0,0.090897,2,2,0,2,4,,3,7,Water,St,4502548,0.372,0.463,0,2.181538,6,4.5 +21281,0,0.265089,2,2,0,2,4,,3,7,Water,St,4502548,0.082,0.348,0,6.362137,6,4.5 +29526,0,0.136727,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.281459,0.15,4 +29530,0,0.206347,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.95234,0.15,4 +29531,0,0.242347,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.816338,0.15,4 +7411,0,0.23907,1,1,0,2,5,,3,7,13th,St,963201,1.045,1.284,0,5.737687,8,4.5 +7599,0,0.164619,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.672,18.836,0,3.950867,6,4.5 +8087,0,0.181383,1,1,0,2,4,,3,7,16th,St,963108,2.047,2.228,0,4.353188,6,4.5 +24947,0,0.246277,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.910648,0.15,4 +28253,0,0.254011,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.096256,0.15,4 +8077,0,0.132871,1,1,0,2,4,,3,7,16th,St,963108,2.34,2.473,0,3.188904,6,4.5 +7823,0,0.112009,1,1,0,2,4,,3,7,16th,St,963108,2.228,2.34,0,2.688206,6,4.5 +7392,0,0.090004,2,2,0,2,4,,3,7,Lapeer,Ave,962901,18.836,18.926,0,2.1601,6,4.5 +7554,0,0.178056,1,1,0,2,5,,3,7,13th,St,963201,1.284,1.462,0,4.273352,8,4.5 +29532,0,0.016621,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.398913,0.15,4 +7332,-1,0.038625,0,1,0,2,5,,3,7,13th,St,963201,1.462,1.501,0,0.927011,8,4.5 +8799,1,0.030368,1,0,0,2,5,,3,7,Sherman,St,975307,0.09,0.121,0,0.728821,8,4.5 +21280,0,0.024744,2,2,0,2,4,,3,7,Water,St,4502548,0.348,0.372,0,0.593854,6,4.5 +21233,0,0.114745,2,2,0,2,4,,3,7,Water,St,4502548,0.463,0.578,0,2.753891,6,4.5 +29528,0,0.04021,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.965046,0.15,4 +21210,0,0.020378,1,1,0,2,5,,3,7,12th,Ave,4502623,0,0.02,0,0.489063,8,4.5 +7389,0,0.085306,2,2,1,2,4,,2,7,Lapeer,Ave,962901,19.186,19.272,0,2.047333,8,4.5 +7558,0,0.097041,2,2,0,2,4,,3,7,10th,St,963204,1.662,1.759,0,2.328972,6,4.5 +8050,0,0.102275,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.052,0.154,0,2.454595,8.5,4.5 +40086,0,0.253932,1,1,0,2,5,,3,7,River,St,4506224,0,0.254,0,6.094363,8,4.5 +40088,0,0.020526,1,1,0,2,5,,2,7,Stanton,St,964204,0.042,0.062,0,0.492633,8.5,4.5 +28255,0,0.106124,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.546969,0.15,4 +29441,0,0.066085,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.586034,0.15,4 +7762,0,0.132634,2,2,0,2,4,,3,7,10th,St,963204,1.53,1.662,0,3.183216,6,4.5 +7759,0,0.170136,2,2,0,2,4,,3,7,10th,Ave,963204,1.759,1.929,0,4.083263,6,4.5 +21282,0,0.08249,2,2,0,2,4,,3,7,Water,St,4502548,0,0.082,0,1.97977,6,4.5 +7319,0,0.051788,1,1,0,2,5,,2,7,Glenwood,Ave,964202,0,0.052,0,1.242903,8.5,4.5 +40099,-1,0.088069,0,2,0,2,5,,3,5,Green,Rd,5490676,0,0.088,0,2.113649,8,4.5 +7384,0,0.031277,2,2,1,2,4,,2,7,Lapeer,Ave,962901,19.347,19.379,0,0.750646,8,4.5 +26079,0,0.135615,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.254763,0.15,4 +29442,0,0.109711,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.633053,0.15,4 +7592,0,0.075683,2,2,1,2,4,,2,7,Lapeer,Ave,962901,19.272,19.347,0,1.816389,8,4.5 +7799,0,0.049076,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.154,0.203,0,1.17782,8.5,4.5 +8421,0,0.128939,1,1,0,2,7,,2,7,Stone,St,964308,0.023,0.151,0,3.094527,8.5,4.5 +29440,0,0.038187,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,0.916483,0.15,4 +29536,0,0.145475,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.491393,0.15,4 +7974,0,0.022516,1,1,0,2,7,,2,7,Stone,St,964308,0,0.023,0,0.540394,8.5,4.5 +7791,0,0.240471,2,2,0,2,4,,2,7,10th,Ave,963204,2.226,2.467,0,5.771294,8,4.5 +8419,0,0.324391,1,1,0,2,7,,2,7,Stone,St,964308,0.369,0.694,0,7.785374,8.5,4.5 +24927,0,0.05777,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.386487,0.15,4 +29118,0,0.192464,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,4.619134,0.15,4 +8046,0,0.15534,2,2,0,2,4,,2,7,10th,Ave,963204,2.071,2.226,0,3.728162,8,4.5 +28593,0,0.099343,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.384238,0.15,4 +28229,0,0.028969,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,0.695258,0.15,4 +8034,0,0.191112,2,2,1,2,3,,2,7,Pine Grove,Ave,964203,0.498,0.689,0,4.586692,6,5 +8418,0,0.077062,1,1,0,2,7,,2,7,Stone,St,964308,0.694,0.771,0,1.849483,8.5,4.5 +7286,0,0.064943,1,1,0,2,4,,3,7,7th,St,963208,0.397,0.462,0,1.558635,6,4.5 +7429,0,0.06932,2,2,0,2,3,,3,7,Military,St,963509,19.988,20.057,0,1.663679,5,5 +7439,0,0.233179,2,2,0,2,3,,3,7,Military,St,963509,19.632,19.866,0,5.596299,5,5 +7025,0,0.122102,2,2,0,2,3,,3,7,Military,St,963509,19.866,19.988,0,2.930443,5,5 +7467,1,0.123472,2,0,0,2,3,,3,7,I 69 BL,,962706,29.621,29.745,0,2.963333,5,5 +29420,0,0.115853,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.780462,0.15,4 +29426,0,0.109878,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.637076,0.15,4 +7406,0,0.077842,1,1,0,2,4,,3,7,7th,St,963208,0.681,0.759,0,1.868218,6,4.5 +7692,0,0.078556,2,2,0,2,3,,3,7,Military,St,963509,20.275,20.354,0,1.885355,5,5 +29428,0,0.285419,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.850059,0.15,4 +29434,0,0.163391,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.921382,0.15,4 +7017,0,0.139398,2,2,0,2,3,,3,7,Military,St,963509,20.057,20.196,0,3.345548,5,5 +7270,-1,0.12764,0,2,0,2,3,,3,7,I 69 BL,,962902,29.648,29.776,0,3.063358,5,5 +7491,0,0.139686,1,1,0,2,4,,3,7,7th,St,963208,0.462,0.602,0,3.352466,6,4.5 +8071,1,0.140491,2,0,0,2,5,,3,7,Union,St,964101,1.278,1.418,0,3.371783,8,4.5 +7259,0,0.079076,1,1,0,2,4,,3,7,7th,St,963208,0.602,0.681,0,1.897824,6,4.5 +7917,0,0.079005,2,2,0,2,3,,3,7,Military,St,963509,20.196,20.275,0,1.896132,5,5 +7331,-1,0.143606,0,2,0,2,5,,2,7,Court,St,964102,1.285,1.429,0,3.446548,8.5,4.5 +7371,0,0.133081,2,2,0,2,3,,2,7,Military,St,963509,20.354,20.487,0,3.193955,6,5 +8145,0,0.132309,1,1,0,2,4,,2,7,7th,St,963208,0.759,0.891,0,3.175425,8,4.5 +29430,0,0.114237,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.741679,0.15,4 +7307,0,0.078894,1,1,0,2,4,,2,7,7th,St,963208,0.891,0.97,0,1.893459,8,4.5 +29433,0,0.07344,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.76257,0.15,4 +8107,0,0.092639,2,2,0,2,3,,2,7,Military,St,963509,20.487,20.58,0,2.223332,6,5 +7484,0,0.142387,2,2,0,2,4,,2,7,Erie,St,964210,0.388,0.531,0,3.417289,8,4.5 +7786,0,0.2391,2,2,1,2,3,,2,7,Pine Grove,Ave,964203,0,0.239,0,5.738391,6,5 +29114,0,0.267416,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,6.417988,0.15,4 +7310,0,0.054109,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.461,0.515,0,1.298627,8.5,4.5 +7549,0,0.054145,1,1,1,2,5,,2,7,McMorran,Blvd,5492776,0.155,0.209,0,1.299491,8.5,4.5 +7566,0,0.117848,2,2,0,2,3,,2,7,Huron,Ave,963509,20.831,20.949,0,2.828359,6,5 +7978,0,0.117876,2,2,0,2,4,,2,7,Erie,St,964210,0.14,0.258,0,2.829027,8,4.5 +8748,-1,0.115334,0,1,0,2,5,DV2,2,7,Fort,St,975605,0.235,0.35,0,2.76801,8.5,4.5 +21222,1,0.115104,1,0,0,2,5,DV2,2,7,Fort,St,4502560,0.09,0.205,0,2.762491,8.5,4.5 +21225,1,0.121591,2,0,0,2,5,,2,7,Quay,St,4502551,0.167,0.288,0,2.918191,8.5,4.5 +29251,0,0.126819,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.043651,0.15,4 +29534,0,0.116888,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.80531,0.15,4 +29540,0,0.089278,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.142667,0.15,4 +7294,0,0.086565,2,2,0,2,3,,2,7,Huron,Ave,963509,20.66,20.746,0,2.07757,6,5 +7328,0,0.101046,1,1,1,2,5,,2,7,McMorran,Blvd,5492776,0,0.101,0,2.425105,8.5,4.5 +7735,0,0.056441,2,2,0,2,4,,2,7,Erie,St,964210,0,0.056,0,1.354573,8,4.5 +21226,0,0.166528,1,1,0,2,5,,2,7,Quay,St,4502551,0,0.167,0,3.996672,8.5,4.5 +29503,0,0.094267,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.262403,0.15,4 +29538,0,0.075653,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.815675,0.15,4 +29539,0,0.055321,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.327705,0.15,4 +7955,0,0.053784,2,2,0,2,4,,2,7,Erie,St,963208,1.042,1.096,0,1.290816,8,4.5 +21220,0,0.080281,1,1,1,2,4,,2,7,Water,St,4502561,0,0.08,0,1.926747,8,4.5 +7246,0,0.083751,2,2,0,2,4,,2,7,Erie,St,964210,0.056,0.14,0,2.010021,8,4.5 +8064,0,0.024431,1,1,0,2,5,,2,7,Grand River,Ave,964107,0,0.025,0,0.586352,8.5,4.5 +7772,0,0.08424,2,2,0,2,3,,2,7,Huron,Ave,963509,20.746,20.831,0,2.021755,6,5 +8060,0,0.053766,1,1,1,2,5,,2,7,McMorran,Blvd,5492776,0.101,0.155,0,1.290375,8.5,4.5 +7731,0,0.130312,2,2,0,2,4,,2,7,Erie,St,964210,0.258,0.388,0,3.127492,8,4.5 +7797,0,0.100855,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.307,0.407,0,2.420518,8.5,4.5 +7878,0,0.132023,2,2,0,2,3,,2,7,Huron,Ave,963509,20.949,21.081,0,3.168551,6,5 +29535,0,0.127981,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.071538,0.15,4 +29537,0,0.077588,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.862102,0.15,4 +29447,0,0.078385,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.881238,0.15,4 +7583,0,0.053138,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.407,0.461,0,1.275315,8.5,4.5 +8760,0,0.14569,1,1,0,2,5,,2,7,Fort,St,975605,0,0.146,0,3.496571,8.5,4.5 +29422,0,0.140521,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.372494,0.15,4 +29423,0,0.109294,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,2.623056,0.15,4 +40657,0,0.7011,1,1,0,2,5,,4,7,Degurse,Ave,973906,0,0.701,0,16.826401,5.8,4.5 +7324,1,0.05041,1,0,0,2,5,DV2,2,7,McMorran,Blvd,5492776,0.209,0.259,0,1.209852,8.5,4.5 +8755,-1,0.081011,0,1,0,2,5,DV2,2,7,Fort,St,975605,0.146,0.227,0,1.94426,8.5,4.5 +21224,1,0.081848,1,0,0,2,5,DV2,2,7,Fort,St,4502560,0,0.082,0,1.964352,8.5,4.5 +21338,-1,0.04937,0,1,0,2,5,DV2,2,7,McMorran,Blvd,4500354,0,0.049,0,1.184888,8.5,4.5 +8753,-1,0.007837,0,1,0,2,5,DV2,2,7,Fort,St,975605,0.227,0.235,0,0.188091,8.5,4.5 +21337,-1,0.012547,0,1,0,2,5,DV2,2,7,McMorran,Blvd,4500354,0.049,0.062,0,0.301128,8.5,4.5 +8058,1,0.013083,1,0,0,2,5,DV2,2,7,McMorran,Blvd,5492776,0.259,0.272,0,0.313998,8.5,4.5 +21223,1,0.00832,1,0,0,2,5,DV2,2,7,Fort,St,4502560,0.082,0.09,0,0.199671,8.5,4.5 +9051,-1,0.131522,0,1,0,2,5,DV2,2,7,Fort,St,975605,0.35,0.481,0,3.156524,8.5,4.5 +21221,1,0.132557,1,0,0,2,5,DV2,2,7,Fort,St,4502560,0.205,0.338,0,3.181358,8.5,4.5 +29444,0,0.143288,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,3.438923,0.15,4 +29533,0,0.026678,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,0.640275,0.15,4 +30143,0,0.016128,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,0.387075,0.15,4 +8042,0,0.054242,2,2,0,2,5,,2,7,Glenwood,Ave,964202,0.515,0.569,0,1.30181,8.5,4.5 +7243,0,0.159677,2,2,0,2,4,,2,7,Erie,St,964210,0.531,0.69,0,3.832237,8,4.5 +7521,0,0.096364,2,2,1,2,3,,2,7,Pine Grove,Ave,964203,0.239,0.335,0,2.312743,6,5 +29122,0,0.066571,1,1,0,2,99,,2,7,Centroid Connector,,0,0,0,0,1.597713,0.15,4 +7634,0,1.305697,1,1,0,2,5,,5,7,Lapeer,Rd,962901,11.347,12.652,0,31.336724,3.7,5 +7851,0,2.339338,1,1,0,2,5,,5,7,Abbottsford,Rd,962509,0,2.339,0,56.144108,3.7,5 +7895,0,1.173158,1,1,0,2,4,,5,7,Beard,Rd,962408,9.698,10.871,0,28.155802,3,4 +8503,0,0.998466,1,1,0,2,5,,5,7,Burtch,Rd,977601,0.991,1.989,0,23.963187,3.7,5 +21217,0,0.998083,1,1,0,2,6,GRV,5,7,Metcalf,Rd,4502618,1.011,2.009,0,23.953995,5.55,5 +21883,0,1.041585,1,1,0,2,5,,5,7,Jeddo,Rd,4505840,19.996,21.037,0,24.998036,3.7,5 +28261,0,1.61725,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,38.813996,0.15,4 +29542,0,1.028844,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.692247,0.15,4 +7639,0,3.613102,1,1,0,2,5,,5,7,Brandon,Rd,962901,2.275,5.888,0,86.714447,3.7,5 +7640,0,1.502775,1,1,0,2,5,,5,7,Fargo,Rd,962507,4.449,5.952,0,36.066593,3.7,5 +7671,0,1.871752,1,1,0,2,5,,5,7,Avoca,Rd,962501,0,1.872,0,44.922054,3.7,5 +7689,0,1.887363,1,1,0,2,4,,5,7,Brockway,Rd,962207,0,1.887,0,45.296711,3,4 +7746,0,0.994858,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,13.96,14.955,0,23.876584,5.55,5 +7824,0,1.499138,1,1,0,2,4,,5,7,Wildcat,Rd,962602,4.938,6.437,0,35.979309,3,4 +7863,0,1.008071,1,1,0,2,6,GRV,5,7,Brown,Rd,962502,6.977,7.985,0,24.193711,5.55,5 +7926,0,1.003773,1,1,0,2,6,GRV,5,7,Metcalf,Rd,962108,2.518,3.522,0,24.090563,5.55,5 +8438,0,0.99273,1,1,0,2,5,,5,7,Yale,Rd,972601,12.126,13.118,0,23.825522,3.7,5 +8994,0,1.179688,1,1,0,2,5,,5,7,Comstock,Rd,973809,4.035,5.214,0,28.31252,3.7,5 +9001,0,0.719061,1,1,0,2,6,,5,7,Sayles,Rd,973702,0,0.719,0,17.25747,5.8,6 +25912,0,1.021772,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.522526,0.15,4 +25946,0,1.004964,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.119127,0.15,4 +29557,0,1.005451,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.130832,0.15,4 +29558,0,1.004931,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,24.118338,0.15,4 +7643,0,2.101126,1,1,0,2,5,,5,7,Dunnigan,Rd,962901,0,2.101,0,50.427034,3.7,5 +7936,0,2.108295,1,1,0,2,4,,5,7,Emmett,Rd,961905,9.229,11.337,0,50.599091,3,4 +8487,0,2.003462,1,1,0,2,5,GRV,5,7,Norman,Rd,972507,9.428,11.431,0,48.08309,5.55,5 +8527,0,1.482794,1,1,0,2,6,GRV,5,7,Foley,Rd,972503,6.916,8.398,0,35.587051,5.55,5 +8649,0,0.930883,1,1,0,2,4,,5,7,Wilkes,Rd,976409,0,0.931,0,22.341187,3,4 +9076,0,1.002574,1,1,0,2,6,GRV,5,7,Sheridan,Rd,973005,4.003,5.005,0,24.061781,5.55,5 +25941,0,1.911723,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,45.881358,0.15,4 +7705,0,0.651962,1,1,0,2,5,,5,7,Bryce,Rd,962608,7.987,8.639,0,15.647095,3.7,5 +8528,0,0.994019,1,1,0,2,6,GRV,5,7,Foley,Rd,972503,5.922,6.916,0,23.856447,5.55,5 +9112,0,2.004928,1,1,0,2,6,GRV,5,7,Sheridan,Rd,973005,1.998,4.003,0,48.118263,5.55,5 +25942,0,1.399762,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.594292,0.15,4 +25943,0,1.411614,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.87874,0.15,4 +29451,0,1.330997,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,31.943931,0.15,4 +7515,0,0.97838,1,1,0,2,5,,5,7,Bryce,Rd,962608,7.009,7.987,0,23.481121,3.7,5 +8521,0,0.490545,1,1,0,2,6,GRV,5,7,Sullivan,Rd,972505,5.909,6.399,0,11.773072,5.55,5 +8524,0,0.128199,1,1,0,2,6,,5,7,Wilkes,Rd,976409,1.827,1.955,0,3.076768,5.8,6 +9053,0,1.032188,1,1,0,2,6,GRV,5,7,Connell,Rd,973310,1.977,3.009,0,24.772519,5.55,5 +9056,0,1.977383,1,1,0,2,6,GRV,5,7,Connell,Rd,973310,0,1.977,0,47.457204,5.55,5 +25911,0,0.785959,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,18.863008,0.15,4 +9009,0,0.959315,1,1,0,2,6,,5,7,Sayles,Rd,973701,0.072,1.031,0,23.023554,5.8,6 +21324,0,0.105789,1,1,0,2,6,,5,7,Sayles,Rd,4502000,0,0.106,0,2.538936,5.8,6 +8481,0,0.122538,1,1,0,2,6,,5,7,Sayles,Rd,972509,9.73,9.852,0,2.940905,5.8,6 +7707,0,3.269974,1,1,0,2,4,,5,7,Emmett,Rd,961905,5.959,9.229,0,78.479382,3,4 +8523,0,1.484874,1,1,0,2,6,GRV,5,7,Foley,Rd,972503,8.398,9.883,0,35.636976,5.55,5 +7938,0,0.292803,1,1,0,2,4,,5,7,Kinney,Rd,961905,5.667,5.959,0,7.027282,3,4 +24940,0,0.458712,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.009092,0.15,4 +24943,0,0.177722,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.265325,0.15,4 +7465,0,0.174097,1,1,0,2,5,,5,7,Dunnigan,Rd,962901,2.101,2.275,0,4.178328,3.7,5 +7543,0,1.015764,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,12.944,13.96,0,24.378336,5.55,5 +8631,0,0.999763,1,1,0,2,6,GRV,5,7,Bricker,Rd,976704,3.526,4.526,0,23.994311,5.55,5 +7651,0,2.005239,1,1,0,2,6,GRV,5,7,Brown,Rd,962502,4.972,6.977,0,48.125742,5.55,5 +7905,0,1.488399,1,1,0,2,5,,5,7,Beard,Rd,962408,0,1.488,0,35.721565,3.7,5 +7933,0,0.984395,1,1,0,2,4,,5,7,Emmett,Rd,961905,12.225,13.209,0,23.625478,3,4 +8486,0,2.473608,1,1,0,2,6,GRV,5,7,Norman,Rd,972507,11.431,13.905,0,59.366598,5.55,5 +7697,0,0.535888,1,1,0,2,5,,5,7,Metcalf,Rd,962108,0.036,0.571,0,12.861315,3.7,5 +7704,0,0.888101,1,1,0,2,4,,5,7,Emmett,Rd,961905,11.337,12.225,0,21.314419,3,4 +7913,0,0.054777,1,1,0,2,5,,5,7,Metcalf,Rd,962109,0,0.055,0,1.314642,3.7,5 +7865,0,1.002896,1,1,0,2,6,GRV,5,7,Brown,Rd,962502,3.969,4.972,0,24.069494,5.55,5 +8444,0,2.768592,1,1,0,2,5,,4,7,Yale,Rd,972601,8.352,11.121,0,66.446199,5.8,4.5 +34109,0,1.961299,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7679,0,1.798732,1,1,0,2,4,,4,7,Brockway,Rd,962207,2.4,4.198,0,43.169558,4.5,4.5 +8449,0,0.76143,1,1,0,2,5,,5,7,Yale,Rd,972601,7.158,7.92,0,18.274326,3.7,5 +7907,0,0.220721,1,1,0,2,4,,4,7,Main,St,962207,2.179,2.4,0,5.297316,4.5,4.5 +8445,0,0.18928,1,1,0,2,5,,4,7,North,St,972601,8.163,8.352,0,4.542726,5.8,4.5 +29563,0,0.20137,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.83288,0.15,4 +29565,0,0.37332,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.95969,0.15,4 +7908,0,0.125046,1,1,0,2,4,,4,7,Main,St,962207,1.887,2.012,0,3.001104,4.5,4.5 +8446,0,0.243459,1,1,0,2,5,,4,7,Park,Ave,972601,7.92,8.163,0,5.843017,5.8,4.5 +29255,0,0.329772,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,7.914534,0.15,4 +7680,0,0.167231,1,1,0,2,4,,4,7,Main,St,962207,2.012,2.179,0,4.013544,4.5,4.5 +29564,0,0.049078,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,1.177881,0.15,4 +34018,0,1.955745,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +8440,0,1.005291,1,1,0,2,5,,5,7,Yale,Rd,972601,11.121,12.126,0,24.126984,3.7,5 +8625,0,2.011272,1,1,0,2,6,,5,7,Bricker,Rd,976704,10.518,12.529,0,48.270521,5.8,6 +7660,0,1.517981,1,1,0,2,5,,5,7,Avoca,Rd,962501,3.872,5.39,0,36.431545,3.7,5 +7744,0,2.000525,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,15.96,17.96,0,48.012606,5.55,5 +7844,0,0.381974,1,1,0,2,4,,5,7,Wildcat,Rd,962602,0.534,0.916,0,9.167365,3,4 +7867,0,1.166156,1,1,0,2,5,,5,7,Glyshaw,Rd,962501,5.39,6.556,0,27.987754,3.7,5 +8483,0,2.996593,1,1,0,2,6,GRV,5,7,Norman,Rd,972507,16.905,19.901,0,71.918232,5.55,5 +8591,0,0.886717,1,1,0,2,5,,5,7,Kilgore,Rd,976706,4.876,5.763,0,21.281204,3.7,5 +29568,0,1.159344,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,27.824246,0.15,4 +8594,0,1.004393,1,1,0,2,5,,5,7,Kilgore,Rd,976706,2.716,3.72,0,24.105432,3.7,5 +24926,0,1.070389,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.689342,0.15,4 +8602,0,1.746678,1,1,0,2,5,,5,7,Kilgore,Rd,976706,0.969,2.716,0,41.92028,3.7,5 +7541,0,1.005234,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,14.955,15.96,0,24.125607,5.55,5 +8593,0,1.156466,1,1,0,2,5,,5,7,Kilgore,Rd,976706,3.72,4.876,0,27.755178,3.7,5 +24925,0,1.435238,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,34.445706,0.15,4 +25945,0,1.402639,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.663334,0.15,4 +7644,0,1.002904,1,1,0,2,5,,5,7,Fargo,Rd,962507,1.939,2.941,0,24.069706,3.7,5 +7696,0,2.000784,1,1,0,2,6,GRV,5,7,Metcalf,Rd,962108,3.522,5.522,0,48.018814,5.55,5 +7875,0,2.000896,1,1,0,2,5,,5,7,Avoca,Rd,962501,1.872,3.872,0,48.021498,3.7,5 +29556,0,3.011225,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,72.2694,0.15,4 +29559,0,2.053352,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,49.280457,0.15,4 +8590,0,0.923444,1,1,0,2,6,,5,7,Kilgore,Rd,976706,5.763,6.686,0,22.162647,5.8,6 +7861,0,0.940785,1,1,0,2,5,,5,7,Fargo,Rd,962507,0.998,1.939,0,22.578846,3.7,5 +7857,0,1.507756,1,1,0,2,5,,5,7,Fargo,Rd,962507,2.941,4.449,0,36.186152,3.7,5 +7526,0,0.719318,1,1,0,2,5,,5,7,Imlay City,Rd,962606,19.287,20.006,0,17.263628,3.7,5 +7629,0,1.076977,1,1,0,2,5,,5,7,Abbottsford,Rd,962509,2.339,3.416,0,25.847454,3.7,5 +7676,0,2.048756,1,1,0,2,5,,5,7,Beard,Rd,962408,7.65,9.698,0,49.170147,3.7,5 +8588,0,1.002343,1,1,0,2,6,GRV,5,7,Cribbins,Rd,976907,2.006,3.009,0,24.056222,5.55,5 +9058,0,0.429126,1,1,0,2,5,,5,7,Brott,Rd,973302,1.048,1.478,0,10.299034,3.7,5 +22096,0,0.065386,1,1,0,2,5,,5,7,Brott,Rd,4502675,0,0.065,0,1.569259,3.7,5 +24944,0,1.620651,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,38.89563,0.15,4 +24945,0,1.232813,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,29.587506,0.15,4 +7741,0,1.18344,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,17.96,19.143,0,28.402568,5.55,5 +40098,0,0.202903,2,2,0,2,5,,3,5,Green,Rd,4603133,1.803,2.006,0,4.869675,8,4.5 +40097,1,0.087382,2,0,0,2,5,,3,5,Green,Rd,4603133,1.619,1.706,0,2.097177,8,4.5 +40096,-1,0.010432,0,1,0,2,7,,2,5,Ann,St,4606154,0.038,0.048,0,0.250375,8.5,4.5 +7530,0,0.082844,1,1,0,2,6,GRV,5,7,Imlay City,Rd,962606,19.143,19.226,0,1.988267,5.55,5 +7733,0,0.060744,1,1,0,2,6,,5,7,Imlay City,Rd,962606,19.226,19.287,0,1.457853,5.8,6 +22144,0,0.082936,1,1,0,2,5,,5,7,Imlay City/Brott Cutoff,,4502673,0,0.083,0,1.990454,3.7,5 +7677,0,0.169106,1,1,0,2,5,,5,7,Beard,Rd,962408,7.413,7.582,0,4.058535,3.7,5 +7849,0,0.845875,1,1,0,2,5,,5,7,Abbottsford,Rd,962509,4.428,5.274,0,20.300999,3.7,5 +7628,0,0.064477,1,1,0,2,5,,5,7,Glyshaw/Beard Cutoff,,962510,0,0.065,0,1.547452,3.7,5 +7652,0,0.099932,1,1,0,2,5,,5,7,Glyshaw,Rd,962501,6.556,6.656,0,2.398369,3.7,5 +7904,0,0.068092,1,1,0,2,5,,5,7,Beard,Rd,962408,7.582,7.65,0,1.634198,3.7,5 +7458,0,0.383727,1,1,0,2,5,,5,7,Lapeer,Rd,962901,10.963,11.347,0,9.209436,3.7,5 +24946,0,0.98871,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.729051,0.15,4 +29595,0,1.86635,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,44.79239,0.15,4 +21332,0,0.08699,1,1,0,2,5,,5,7,Imlay City,Rd,4501538,0,0.087,0,2.087754,3.7,5 +7620,0,1.001382,1,1,0,2,4,,5,7,Wildcat,Rd,962602,2.429,3.43,0,24.033179,3,4 +29567,0,0.954149,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.899585,0.15,4 +7839,0,0.89024,1,1,0,2,4,,5,7,Wildcat,Rd,962602,1.538,2.429,0,21.365755,3,4 +29566,0,1.528039,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,36.672927,0.15,4 +7625,0,0.622217,1,1,0,2,4,,5,7,Wildcat,Rd,962602,0.916,1.538,0,14.933219,3,4 +7615,0,1.002151,1,1,0,2,4,,5,7,Wildcat,Rd,962602,3.936,4.938,0,24.051621,3,4 +8482,0,1.004997,1,1,0,2,6,GRV,5,7,Norman,Rd,972507,19.901,20.906,0,24.11994,5.55,5 +8508,0,0.991066,1,1,0,2,5,,5,7,Burtch,Rd,977601,0,0.991,0,23.785592,3.7,5 +29544,0,0.707803,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,16.987278,0.15,4 +29545,0,1.099975,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.399391,0.15,4 +29546,0,0.544967,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.079218,0.15,4 +37120,0,0.024323,1,1,0,2,5,,3,1,Spinoza,Dr,4718421,0,0.024,0,0.583746,8,4.5 +8985,0,0.195285,1,1,0,2,5,,5,7,Gibbons,Rd,973810,2.521,2.716,0,4.686833,3.7,5 +37121,0,0.063429,2,2,0,2,3,,3,2,Ann Arbor,Rd,1604102,7.548,7.611,0,1.522298,5,5 +7833,0,0.506176,1,1,0,2,4,,5,7,Wildcat,Rd,962602,3.43,3.936,0,12.148234,3,4 +8430,0,1.16768,1,1,0,2,5,,5,7,Yale,Rd,972601,15.121,16.289,0,28.024309,3.7,5 +34019,0,1.898999,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34020,0,1.628176,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7647,0,2.001305,1,1,0,2,5,,5,7,Duce,Rd,962505,5.863,7.865,0,48.031322,3.7,5 +8436,0,1.000783,1,1,0,2,5,,5,7,Yale,Rd,972601,14.121,15.121,0,24.0188,3.7,5 +8437,0,1.002316,1,1,0,2,5,,5,7,Yale,Rd,972601,13.118,14.121,0,24.055573,3.7,5 +7819,0,0.974017,1,1,0,2,4,,5,7,Wildcat,Rd,962602,7.44,8.413,0,23.376413,3,4 +29560,0,1.444476,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,34.667433,0.15,4 +8999,0,1.090296,1,1,0,2,5,,5,7,Comstock,Rd,973809,2.944,4.035,0,26.16711,3.7,5 +29561,0,1.374578,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,32.989861,0.15,4 +7609,0,1.002893,1,1,0,2,4,,5,7,Wildcat,Rd,962602,6.437,7.44,0,24.069426,3,4 +7497,0,0.2244,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,2.001,2.226,0,5.385599,5,5 +40416,-1,1.137439,0,2,0,1,1,,4,7,W I 94,,967804,22.454,23.592,0,,0.8,7.5 +40417,1,0.086404,2,0,0,1,2,,4,7,Lapeer/I 94 Connector,,4506260,0.648,0.734,0,,0.8,7.5 +8329,0,1.873207,1,1,0,2,3,,5,7,Kimball,Dr,964704,8.757,10.63,0,44.956979,1.7,4 +8339,0,0.687497,1,1,0,2,4,,3,7,Gratiot,Ave,964704,2.335,3.022,0,16.499917,6,4.5 +8372,0,0.104641,2,2,0,2,5,,3,7,Holland,Ave,964606,0.217,0.322,0,2.511382,8,4.5 +8384,0,0.174879,1,1,0,2,5,,3,7,Sanborn,St,964604,0.24,0.415,0,4.197107,8,4.5 +8401,0,0.26148,1,1,0,2,5,,4,7,Hancock,St,964505,0.297,0.558,0,6.275522,5.8,4.5 +8407,0,0.234149,1,1,0,2,5,,4,7,Scott,Ave,964405,0,0.234,0,5.619586,5.8,4.5 +8519,0,0.38428,1,1,1,2,4,,3,7,Krafft,Rd,977504,3.915,4.299,0,9.222716,6,4.5 +29543,0,1.733851,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,41.61242,0.15,4 +29571,0,1.950763,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,46.8183,0.15,4 +29576,0,0.434831,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,10.435946,0.15,4 +29580,0,0.356966,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,8.567192,0.15,4 +29581,0,0.352463,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,8.459101,0.15,4 +29585,0,0.178557,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.285359,0.15,4 +7778,0,1.000532,1,1,0,2,5,,5,7,North,Rd,962604,2.743,3.744,0,24.012774,3.7,5 +8337,0,0.724776,1,1,0,2,4,,4,7,Lakeshore,Rd,964704,3.647,4.372,0,17.394618,4.5,4.5 +8352,0,1.012413,1,1,0,2,4,,5,7,Keewahdin,Rd,964703,2.639,3.652,0,24.297901,3,4 +8360,0,0.205492,1,1,0,2,3,,4,7,M 25,,964608,2.276,2.481,0,4.931808,3.7,5 +8473,0,0.703533,1,1,0,2,4,,4,7,River,Rd,4506233,0.039,0.742,0,16.8848,4.5,4.5 +8489,0,1.553446,1,1,0,2,5,,5,7,Burtch,Rd,977601,3.606,5.16,0,37.2827,3.7,5 +8583,0,0.791872,1,1,0,2,4,,4,7,Krafft,Rd,977504,0.501,1.293,0,19.004934,4.5,4.5 +8597,0,1.000288,1,1,0,2,5,,5,7,State,Rd,970601,2.858,3.858,0,24.006915,3.7,5 +8616,0,0.385262,1,1,0,2,5,,4,7,Water,St,970405,0.814,1.199,0,9.246284,5.8,4.5 +21214,0,0.999355,1,1,0,2,6,GRV,5,7,Metcalf,Rd,4502618,4.007,5.006,0,23.984519,5.55,5 +29554,0,1.387629,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.303097,0.15,4 +29555,0,1.052854,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,25.268489,0.15,4 +29593,0,1.162958,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,27.910984,0.15,4 +29594,0,1.513225,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,36.317393,0.15,4 +29599,0,1.102088,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.450109,0.15,4 +29602,0,0.741321,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.791696,0.15,4 +29604,0,0.715183,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.164385,0.15,4 +29605,0,0.710523,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,17.052559,0.15,4 +7606,0,1.852128,1,1,0,2,4,,5,7,Vincent,Rd,962603,0,1.852,0,44.451076,3,4 +7674,0,1.503257,1,1,0,2,5,,5,7,Beard,Rd,962408,10.871,12.374,0,36.078157,3.7,5 +7802,0,0.996851,1,1,0,2,5,,5,7,North,Rd,962604,1.242,2.239,0,23.924415,3.7,5 +7815,0,2.0042,1,1,0,2,4,,5,7,Vincent,Rd,962603,1.852,3.856,0,48.100805,3,4 +29550,0,0.941592,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.598199,0.15,4 +7605,0,0.481685,1,1,0,2,4,,5,7,North,Rd,962604,0,0.482,0,11.560435,3,4 +8479,0,1.212288,1,1,0,2,4,,5,7,River,Rd,978108,0,1.212,0,29.094904,3,4 +8619,0,0.147035,1,1,0,2,7,,4,7,Water,St,970405,0,0.147,0,3.528846,6.55,4.5 +28239,0,0.481422,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.554116,0.15,4 +29551,0,0.970294,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.287066,0.15,4 +8791,0,0.136458,1,1,0,2,4,,5,7,Wadhams,Rd,969901,15.339,15.476,0,3.274996,3,4 +8617,0,0.666557,1,1,0,2,5,,4,7,Water,St,970405,0.147,0.814,0,15.997363,5.8,4.5 +25972,0,0.539289,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.942926,0.15,4 +7593,0,0.504385,1,1,0,2,4,,5,7,North,Rd,962604,0.738,1.242,0,12.10523,3,4 +8584,0,0.501115,1,1,0,2,4,,5,7,Krafft,Rd,977504,0,0.501,0,12.026753,3,4 +8585,0,0.320149,1,1,0,2,4,,5,7,Lightle,Rd,977503,0,0.32,0,7.683581,3,4 +7803,0,0.255985,1,1,0,2,4,,5,7,North,Rd,962604,0.482,0.738,0,6.143638,3,4 +7782,0,0.432287,1,1,0,2,5,,5,7,North,Rd,962604,2.311,2.743,0,10.374884,3.7,5 +40276,0,0.164009,1,1,0,2,4,,4,4,Klix,St,5491476,0,0.164,0,3.936223,4.5,4.5 +40282,-1,0.268097,0,2,0,2,3,DIV,3,4,12 Mile,Rd,4212085,0.2,0.468,0,6.434331,5,5 +8351,0,0.433545,1,1,0,2,5,,5,7,Keewahdin,Rd,964703,3.652,4.085,0,10.405075,3.7,5 +7591,0,0.072326,1,1,0,2,5,,5,7,North,Rd,962604,2.239,2.311,0,1.735831,3.7,5 +8350,0,0.069554,1,1,0,2,5,,5,7,Keewahdin,Rd,964703,4.085,4.155,0,1.669306,3.7,5 +19567,0,0.11185,1,1,0,2,5,,5,7,Keewahdin/North Cutoff,,1917806,0,0.112,0,2.684401,3.7,5 +7777,0,0.999846,1,1,0,2,5,,5,7,North,Rd,962604,5.269,6.269,0,23.996302,3.7,5 +8502,0,1.011992,1,1,0,2,5,,5,7,Burtch,Rd,977601,1.989,3.001,0,24.287807,3.7,5 +21216,0,1.498477,1,1,0,2,6,GRV,5,7,Metcalf,Rd,4502618,2.009,3.508,0,35.963459,5.55,5 +29552,0,0.936367,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.472813,0.15,4 +29597,0,1.089473,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,26.147341,0.15,4 +29553,0,1.398991,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,33.575792,0.15,4 +7574,0,1.525455,1,1,0,2,5,,5,7,North,Rd,962604,3.744,5.269,0,36.610926,3.7,5 +21215,0,0.499136,1,1,0,2,6,GRV,5,7,Metcalf,Rd,4502618,3.508,4.007,0,11.979266,5.55,5 +7571,0,1.197101,1,1,0,2,5,,5,7,North,Rd,962604,6.269,7.466,0,28.730424,3.7,5 +29596,0,0.480566,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,11.533583,0.15,4 +8494,0,0.604945,1,1,0,2,5,,5,7,Burtch,Rd,977601,3.001,3.606,0,14.518679,3.7,5 +7254,0,0.277,1,1,0,2,4,,3,7,Pine Grove,Ave,964203,3.179,3.456,0,6.647997,6,4.5 +7988,0,0.518452,1,1,0,2,4,,4,7,Pine Grove,Ave,964203,4.524,5.043,0,12.442846,4.5,4.5 +8354,0,0.425341,1,1,0,2,4,,5,7,Keewahdin,Rd,964703,1.641,2.067,0,10.208187,3,4 +8365,0,0.171131,2,2,1,2,3,,3,7,M 25,,964608,0.097,0.268,0,4.107135,5,5 +8460,0,0.514279,2,2,0,2,4,,4,7,River,Rd,4506233,1.821,2.335,0,12.342692,4.5,4.5 +8562,0,0.311005,1,1,0,2,4,,4,7,Krafft,Rd,977504,2.192,2.503,0,7.464112,4.5,4.5 +8601,0,0.164311,1,1,0,2,5,,4,7,State,Rd,970601,0.855,1.019,0,3.943458,5.8,4.5 +8609,0,0.532993,1,1,0,2,5,,4,7,Water,St,970405,2.202,2.735,0,12.79183,5.8,4.5 +28241,0,0.664605,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,15.950509,0.15,4 +28245,0,0.424765,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,10.194369,0.15,4 +28247,0,0.53487,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.836875,0.15,4 +28251,0,0.391691,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.40059,0.15,4 +28254,0,0.390191,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.364591,0.15,4 +29579,0,0.320972,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,7.703326,0.15,4 +8461,0,0.509586,2,2,0,2,4,,4,7,River,Rd,4506233,1.311,1.821,0,12.230062,4.5,4.5 +8612,0,0.736596,1,1,0,2,5,,4,7,Water,St,970405,1.212,1.948,0,17.678315,5.8,4.5 +8996,0,0.682734,1,1,0,2,4,,4,7,Krafft,Rd,977504,1.51,2.192,0,16.385621,4.5,4.5 +28233,0,0.626328,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,15.031883,0.15,4 +28240,0,0.733378,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,17.601079,0.15,4 +28234,0,0.554401,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,13.305624,0.15,4 +8614,0,0.013114,1,1,0,2,5,,4,7,Water,St,970405,1.199,1.212,0,0.314743,5.8,4.5 +8464,0,0.399695,1,1,0,2,4,,4,7,River,Rd,4506233,0.912,1.311,0,9.592677,4.5,4.5 +8603,0,0.553443,1,1,0,2,5,,4,7,State,Rd,970601,0.301,0.855,0,13.282622,5.8,4.5 +28235,0,0.526907,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.645767,0.15,4 +28237,0,0.260524,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.252572,0.15,4 +28238,0,0.501565,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,12.037551,0.15,4 +8469,0,0.169624,1,1,0,2,4,,4,7,River,Rd,4506233,0.742,0.912,0,4.070987,4.5,4.5 +8604,0,0.301192,1,1,0,2,5,,4,7,State,Rd,970601,0,0.301,0,7.228599,5.8,4.5 +8581,0,0.216559,1,1,0,2,4,,4,7,Krafft,Rd,977504,1.293,1.51,0,5.197427,4.5,4.5 +8610,0,0.254003,1,1,0,2,5,,4,7,Water,St,970405,1.948,2.202,0,6.096082,5.8,4.5 +28236,0,0.700499,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,16.811965,0.15,4 +28256,0,0.186263,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.470317,0.15,4 +8353,0,0.572849,1,1,0,2,4,,4,7,Keewahdin,Rd,964703,2.067,2.639,0,13.748373,4.5,4.5 +8599,0,0.374411,1,1,0,2,5,,5,7,State,Rd,970601,1.858,2.233,0,8.985871,3.7,5 +25319,0,0.525127,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.603059,0.15,4 +28246,0,0.703295,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,16.87908,0.15,4 +8600,0,0.839254,1,1,0,2,5,,4,7,State,Rd,970601,1.019,1.858,0,20.142099,5.8,4.5 +29606,0,0.608018,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.59242,0.15,4 +8598,0,0.625616,1,1,0,2,5,,5,7,State,Rd,970601,2.233,2.858,0,15.014776,3.7,5 +29603,0,0.588499,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.123968,0.15,4 +8375,0,0.525697,1,1,0,2,5,,4,7,Riverside,Dr,964605,0.675,1.2,0,12.616728,5.8,4.5 +8458,0,0.959417,2,2,0,2,4,,4,7,River,Rd,4506233,2.557,3.517,0,23.026015,4.5,4.5 +8605,0,0.318739,1,1,0,2,5,,4,7,Water,St,970405,3.174,3.493,0,7.649736,5.8,4.5 +28250,0,0.490369,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.768864,0.15,4 +29582,0,0.290496,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.971904,0.15,4 +8607,0,0.438574,1,1,0,2,5,,4,7,Water,St,970405,2.735,3.174,0,10.525781,5.8,4.5 +25973,0,0.59163,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,14.199131,0.15,4 +28252,0,0.409227,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,9.821437,0.15,4 +8459,0,0.221998,2,2,0,2,4,,4,7,River,Rd,4506233,2.335,2.557,0,5.32796,4.5,4.5 +40421,1,0.151639,1,0,0,1,1,ROF,4,7,E I 94/Water,RAMP,4506254,0,0.152,0,,2.24,5 +8377,0,0.216431,1,1,0,2,5,,4,7,Riverside,Dr,964605,0.276,0.492,0,5.19434,5.8,4.5 +29590,0,0.117474,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,2.81937,0.15,4 +21227,0,0.424837,1,1,0,2,5,,4,7,Water,St,4502548,1.326,1.751,0,10.196093,5.8,4.5 +40418,-1,0.100189,0,2,0,1,2,,4,7,I 94/Lapeer Connector,,4506261,0.588,0.688,0,,0.8,7.5 +40419,1,0.2199,1,0,0,1,1,ROF,4,7,E I 94/Lapeer,RAMP,4506255,0,0.22,0,,2.24,5 +8378,0,0.17353,1,1,0,2,5,,4,7,Riverside,Dr,964605,0.102,0.276,0,4.164731,5.8,4.5 +29591,0,0.095963,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,2.303107,0.15,4 +8402,0,0.241456,1,1,0,2,5,,4,7,Hancock,St,964505,0.055,0.297,0,5.794953,5.8,4.5 +29583,0,0.237987,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,5.711686,0.15,4 +8376,0,0.182482,1,1,0,2,5,,4,7,Riverside,Dr,964605,0.492,0.675,0,4.379558,5.8,4.5 +7492,0,0.294266,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,2.633,2.927,0,7.062389,5,5 +29573,0,0.479888,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,11.517315,0.15,4 +7262,0,0.198371,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,2.927,3.125,0,4.760905,5,5 +8366,0,0.096651,2,2,1,2,3,,3,7,M 25,,964608,0,0.097,0,2.319617,5,5 +7997,0,0.053737,1,1,0,2,4,,3,7,Pine Grove,Ave,964203,3.125,3.179,0,1.289683,6,4.5 +7269,0,0.264306,2,2,1,2,3,,4,7,Pine Grove,Ave,964203,2.226,2.49,0,6.34335,3.7,5 +8373,0,0.21698,2,2,0,2,5,,3,7,Holland,Ave,964606,0,0.217,0,5.207527,8,4.5 +8374,0,0.263568,1,1,0,2,5,,4,7,Riverside,Dr,964605,1.2,1.464,0,6.325629,5.8,4.5 +29467,0,0.189676,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.55222,0.15,4 +8003,0,0.142462,2,2,1,2,3,,4,7,Pine Grove,Ave,964203,2.49,2.633,0,3.41909,3.7,5 +29584,0,0.174273,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.182547,0.15,4 +7992,0,0.04399,1,1,0,2,4,,3,7,Pine Grove,Ave,964203,3.456,3.5,0,1.055771,6,4.5 +8338,0,0.625063,1,1,0,2,4,,4,7,Lakeshore,Rd,964704,3.022,3.647,0,15.001516,4.5,4.5 +8355,0,0.835288,1,1,0,2,4,,3,7,Keewahdin,Rd,964703,0.806,1.641,0,20.046905,6,4.5 +8362,0,0.512626,2,2,1,2,3,,4,7,M 25,,964608,1.259,1.771,0,12.303017,3.7,5 +8542,0,0.044139,2,2,0,2,4,,3,7,Krafft,Rd,977504,3.261,3.305,0,1.059343,6,4.5 +28242,0,0.498684,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,11.968416,0.15,4 +28243,0,0.60877,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,14.610469,0.15,4 +28248,0,0.388184,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,9.316418,0.15,4 +28249,0,0.510309,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,12.247408,0.15,4 +7249,0,0.473569,1,1,0,2,4,,3,7,Pine Grove,Ave,964203,4.051,4.524,0,11.365645,6,4.5 +8504,0,0.474121,1,1,0,2,4,,4,7,Krafft,Rd,977504,2.787,3.261,0,11.378905,4.5,4.5 +8554,0,0.283545,1,1,0,2,4,,4,7,Krafft,Rd,977504,2.503,2.787,0,6.805073,4.5,4.5 +7739,0,0.551004,1,1,0,2,4,,3,7,Pine Grove,Ave,964203,3.5,4.051,0,13.224087,6,4.5 +29575,0,0.286629,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.879096,0.15,4 +8358,0,0.360265,1,1,0,2,4,,3,7,Keewahdin,Rd,964703,0.152,0.512,0,8.646358,6,4.5 +8364,0,0.647804,2,2,1,2,3,,3,7,M 25,,964608,0.268,0.916,0,15.547285,5,5 +8532,0,0.389165,1,1,1,2,4,,3,7,Krafft,Rd,977504,3.505,3.894,0,9.33995,6,4.5 +26955,0,0.474443,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,11.386631,0.15,4 +29578,0,0.577794,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,13.867051,0.15,4 +8536,0,0.200167,2,2,0,2,4,,3,7,Krafft,Rd,977504,3.305,3.505,0,4.804002,6,4.5 +19250,1,0.037333,1,0,0,2,4,,3,7,M 136/Kraft Cutoff,,1806908,0,0.037,0,0.895993,6,4.5 +8357,0,0.126811,2,2,1,2,4,,3,7,Keewahdin,Rd,964703,0.512,0.639,0,3.043466,6,4.5 +8363,0,0.343147,2,2,1,2,3,,3,7,M 25,,964608,0.916,1.259,0,8.235516,5,5 +8356,0,0.166765,1,1,0,2,4,,3,7,Keewahdin,Rd,964703,0.639,0.806,0,4.00236,6,4.5 +29577,0,0.429356,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,10.304551,0.15,4 +8530,0,0.020495,1,1,1,2,4,,3,7,Krafft,Rd,977504,3.894,3.915,0,0.491875,6,4.5 +8359,0,0.081995,1,1,0,2,4,,3,7,Keewahdin,Rd,964703,0.07,0.152,0,1.967876,6,4.5 +8361,0,0.504349,2,2,1,2,3,,4,7,M 25,,964608,1.771,2.276,0,12.104377,3.7,5 +28244,0,0.258779,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,6.210697,0.15,4 +29572,0,0.200048,1,1,0,2,99,,4,7,Centroid Connector,,0,0,0,0,4.80115,0.15,4 +8333,0,1.069964,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,6.391,7.461,0,25.679146,1.7,4 +21211,0,0.160384,1,1,0,2,5,,5,7,Metcalf,Rd,4502618,6.045,6.205,0,3.849222,3.7,5 +29449,0,0.577886,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.869272,0.15,4 +29450,0,0.604733,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,14.513603,0.15,4 +29592,0,0.885312,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,21.247487,0.15,4 +8595,0,0.785348,1,1,0,2,5,,5,7,State,Rd,970601,4.112,4.897,0,18.848352,3.7,5 +21213,0,0.637629,1,1,0,2,5,,5,7,Metcalf,Rd,4502618,5.006,5.644,0,15.303092,3.7,5 +29598,0,0.966468,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.195237,0.15,4 +29600,0,0.504293,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,12.10304,0.15,4 +8596,0,0.253174,1,1,0,2,5,,5,7,State,Rd,970601,3.858,4.112,0,6.076166,3.7,5 +21212,0,0.400765,1,1,0,2,5,,5,7,Metcalf,Rd,4502618,5.644,6.045,0,9.618364,3.7,5 +28260,0,0.575786,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,13.818852,0.15,4 +29452,0,0.44891,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,10.773831,0.15,4 +8330,0,0.408526,1,1,0,2,3,,5,7,M 25,,964704,8.349,8.757,0,9.804634,1.7,4 +8331,0,0.454266,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,7.894,8.349,0,10.902372,1.7,4 +28257,0,0.399442,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.586604,0.15,4 +8480,0,0.387362,1,1,0,2,5,,5,7,Burtch,Rd,977601,5.16,5.547,0,9.296679,3.7,5 +8332,0,0.43333,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,7.461,7.894,0,10.399926,1.7,4 +28259,0,0.197885,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,4.749246,0.15,4 +8335,0,0.64259,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,5.24,5.883,0,15.422157,1.7,4 +8336,0,0.868529,1,1,0,2,3,,4,7,Lakeshore,Rd,964704,4.372,5.24,0,20.844697,3.7,5 +8334,0,0.508283,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,5.883,6.391,0,12.198781,1.7,4 +21877,0,1.090728,1,1,0,2,5,,5,7,Jeddo,Rd,4505840,23.086,24.176,0,26.177482,3.7,5 +29569,0,0.848029,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,20.352704,0.15,4 +34021,0,1.557241,1,1,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +21879,0,2.048436,1,1,0,2,5,,5,7,Jeddo,Rd,4505840,21.037,23.086,0,49.162462,3.7,5 +29541,0,0.933316,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,22.399578,0.15,4 +29570,0,0.986723,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,23.681361,0.15,4 +8327,0,0.965028,1,1,0,2,3,,5,7,Lakeshore,Rd,964704,11.633,12.598,0,23.16068,1.7,4 +8328,0,1.002702,1,1,0,2,3,,5,7,Kimball,Dr,964704,10.63,11.633,0,24.064857,1.7,4 +8341,0,0.614676,1,1,0,2,4,,3,7,Gratiot,Ave,964704,1.303,1.918,0,14.752224,6,4.5 +27958,0,0.237973,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.711346,0.15,4 +29574,0,0.112788,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.706903,0.15,4 +34022,-1,0.811083,0,3,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34023,1,0.793885,3,0,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +7346,0,0.078655,1,1,0,2,5,,3,7,10th,Ave,963204,3.71,3.789,0,1.887732,8,4.5 +8177,-1,0.745567,0,2,0,1,1,,3,7,W I 94,,967804,25.024,25.77,0,,0.58,7 +8229,1,0.600849,2,0,0,1,1,,3,7,E I 94,,967606,25.102,25.702,0,,0.58,7 +8325,0,0.094564,1,1,0,2,4,,3,7,State,St,964705,0.105,0.199,0,2.269541,6,4.5 +8347,0,0.21241,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0.456,0.668,0,5.097838,6,4.5 +8348,0,0.178646,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0.277,0.456,0,4.287498,6,4.5 +8394,0,0.154279,1,1,0,2,4,,3,7,Hancock,St,964505,1.121,1.275,0,3.702689,6,4.5 +8411,0,0.212259,1,1,0,2,7,,3,7,Stone,St,964308,1.742,1.954,0,5.094211,7,4.5 +24772,0,0.22338,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.36112,0.15,4 +26357,0,0.283656,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.807755,0.15,4 +29455,0,0.230831,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.539941,0.15,4 +29468,0,0.19968,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.792323,0.15,4 +29504,0,0.277024,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.648583,0.15,4 +29588,0,0.185145,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.443479,0.15,4 +7284,0,0.157285,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.375,1.532,0,3.774834,5,5 +7408,0,0.160717,2,2,0,2,4,,3,7,10th,Ave,963204,2.864,3.025,0,3.857218,6,4.5 +7572,0,0.211425,1,1,0,2,5,,3,7,10th,Ave,963204,3.499,3.71,0,5.074207,8,4.5 +8029,0,0.133212,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.047,1.18,0,3.197077,5,5 +8386,-1,0.32477,0,2,0,1,2,,3,7,I 94/Pine Grove Connector,,964510,0,0.325,0,,0.58,7 +8388,1,0.126612,2,0,0,1,2,,3,7,I 94/Pine Grove Connector,,964509,0.255,0.381,0,,0.58,7 +8392,0,0.172671,1,1,0,2,5,,3,7,Garfield,St,964508,0.664,0.836,0,4.144106,8,4.5 +8397,0,0.172106,2,2,0,2,4,,3,7,Hancock,St,964505,0.715,0.887,0,4.130541,6,4.5 +8405,0,0.162484,1,1,0,2,7,,3,7,Scott,Ave,964405,0.509,0.672,0,3.899623,7,4.5 +8414,0,0.174887,1,1,0,2,5,,3,7,Stone,St,964308,1.298,1.473,0,4.197285,8,4.5 +29463,0,0.130673,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.136142,0.15,4 +29529,0,0.239424,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.746171,0.15,4 +8178,-1,0.196802,0,1,0,1,1,,3,7,W I 94,,967804,24.827,25.024,0,,0.58,7 +8230,1,0.320629,2,0,0,1,1,,3,7,E I 94,,967606,24.781,25.102,0,,0.58,7 +8322,1,0.113101,1,0,0,1,1,RFS,3,7,W I 94/Pine Grove Connector,RAMP,965304,0,0.113,0,,0.22,6 +8406,0,0.274963,1,1,0,2,5,,3,7,Scott,Ave,964405,0.234,0.509,0,6.599102,8,4.5 +24948,0,0.225099,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.402371,0.15,4 +40415,1,1.428613,2,0,0,1,1,,5,7,E I 94,,967606,22.134,23.562,0,,1.02,7 +21208,0,0.161753,1,1,0,2,5,,3,7,12th,Ave,4502623,0.497,0.659,0,3.882072,8,4.5 +24949,0,0.082122,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.970929,0.15,4 +21330,1,0.291363,1,0,0,1,1,RON,3,7,Pine Grove/E I 94,RAMP,4502649,0,0.291,0,,1.09,4 +8017,0,0.189945,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.532,1.722,0,4.558684,5,5 +8385,-1,0.332908,0,2,0,2,3,DIV,3,7,I 94/Pine Grove Connector,,964510,0.325,0.658,0,7.989781,5,5 +8387,1,0.272636,2,0,0,2,3,DIV,3,7,I 94/Pine Grove Connector,,964509,0.381,0.654,0,6.543265,5,5 +8393,0,0.096574,1,1,0,2,5,,3,7,Garfield,St,964508,0.567,0.664,0,2.317785,8,4.5 +8399,0,0.113995,2,2,0,2,3,,3,7,Hancock,St,964505,0.571,0.685,0,2.735885,5,5 +29461,0,0.181521,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.356509,0.15,4 +8400,0,0.013181,2,2,0,2,3,,3,7,Hancock,St,964505,0.558,0.571,0,0.316345,5,5 +7499,0,0.067014,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.82,1.887,0,1.608332,5,5 +7271,0,0.097412,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.887,1.984,0,2.337882,5,5 +8004,0,0.017141,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.984,2.001,0,0.411382,5,5 +7757,0,0.097491,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.722,1.82,0,2.339773,5,5 +29462,0,0.070315,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.687554,0.15,4 +8398,0,0.029858,2,2,0,2,4,,3,7,Hancock,St,964505,0.685,0.715,0,0.716601,6,4.5 +8403,0,0.153727,1,1,0,2,7,,3,7,Scott,Ave,964405,0.682,0.836,0,3.689458,7,4.5 +8416,0,0.081711,1,1,0,2,4,,3,7,Stone,St,964308,1.089,1.171,0,1.961072,6,4.5 +29457,0,0.086912,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.085894,0.15,4 +7505,0,0.1392,2,2,0,2,4,,3,7,10th,Ave,963204,2.705,2.845,0,3.340799,6,4.5 +7296,0,0.022675,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.024,1.047,0,0.544208,5,5 +7611,0,0.019469,2,2,0,2,4,,3,7,10th,Ave,963204,2.845,2.864,0,0.467262,6,4.5 +8404,0,0.010185,1,1,0,2,7,,3,7,Scott,Ave,964405,0.672,0.682,0,0.244442,7,4.5 +8326,0,0.104588,1,1,0,2,4,,3,7,State,St,964705,0,0.105,0,2.510118,6,4.5 +8415,0,0.079485,1,1,0,2,4,,3,7,Stone,St,964308,1.171,1.251,0,1.907639,6,4.5 +29460,0,0.16447,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,3.947278,0.15,4 +29459,0,0.009327,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.223837,0.15,4 +7348,0,0.087512,1,1,0,2,5,,3,7,10th,Ave,963204,3.411,3.499,0,2.100292,8,4.5 +8390,0,0.231048,1,1,0,2,5,,3,7,Garfield,St,964508,0.993,1.224,0,5.545158,8,4.5 +8395,0,0.07559,1,1,0,2,4,,3,7,Hancock,St,964505,1.045,1.121,0,1.814161,6,4.5 +8412,0,0.178481,1,1,0,2,5,,3,7,Stone,St,964308,1.563,1.742,0,4.283546,8,4.5 +8413,0,0.090168,1,1,0,2,5,,3,7,Stone,St,964308,1.473,1.563,0,2.164027,8,4.5 +8396,0,0.157502,1,1,0,2,4,,3,7,Hancock,St,964505,0.887,1.045,0,3.78006,6,4.5 +7575,0,0.089989,1,1,0,2,5,,3,7,10th,Ave,963204,3.321,3.411,0,2.159739,8,4.5 +8391,0,0.156568,1,1,0,2,5,,3,7,Garfield,St,964508,0.836,0.993,0,3.757641,8,4.5 +29456,0,0.083004,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.992108,0.15,4 +29454,0,0.040879,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,0.981086,0.15,4 +7511,0,0.098619,1,1,0,2,5,,3,7,10th,Ave,963204,4.245,4.343,0,2.366851,8,4.5 +8342,0,0.139089,1,1,0,2,4,,3,7,Gratiot,Ave,964704,1.164,1.303,0,3.338132,6,4.5 +8369,0,0.157767,1,1,0,2,5,,3,7,Holland,Ave,964606,0.592,0.749,0,3.786409,8,4.5 +8381,0,0.15728,1,1,0,2,5,,3,7,Sanborn,St,964604,0.695,0.852,0,3.774722,8,4.5 +8408,0,0.134459,1,1,0,2,7,,3,7,Stone,St,964308,2.449,2.583,0,3.227014,7,4.5 +27360,0,0.211111,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.066657,0.15,4 +7327,0,0.232627,1,1,0,2,5,,3,7,10th,Ave,963204,4.012,4.245,0,5.583048,8,4.5 +8382,0,0.144579,1,1,0,2,5,,3,7,Sanborn,St,964604,0.55,0.695,0,3.469889,8,4.5 +27366,0,0.193772,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.650537,0.15,4 +29586,0,0.184082,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.417964,0.15,4 +8383,0,0.134887,1,1,0,2,5,,3,7,Sanborn,St,964604,0.415,0.55,0,3.237299,8,4.5 +29587,0,0.256079,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.1459,0.15,4 +7551,0,0.223292,1,1,0,2,5,,3,7,10th,Ave,963204,3.789,4.012,0,5.359019,8,4.5 +29466,0,0.109358,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,2.624596,0.15,4 +8370,0,0.254425,2,2,0,2,5,,3,7,Holland,Ave,964606,0.337,0.592,0,6.106208,8,4.5 +8371,0,0.015611,2,2,0,2,5,,3,7,Holland,Ave,964606,0.322,0.337,0,0.374666,8,4.5 +8345,0,0.103637,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0.867,0.97,0,2.487291,6,4.5 +8379,0,0.156496,1,1,0,2,5,,3,7,Sanborn,St,964604,0.928,1.084,0,3.755896,8,4.5 +8410,0,0.302403,1,1,0,2,7,,3,7,Stone,St,964308,1.954,2.256,0,7.257663,7,4.5 +28596,0,0.195536,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.692865,0.15,4 +29453,0,0.246803,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,5.923261,0.15,4 +29589,0,0.058095,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.394278,0.15,4 +8380,0,0.075671,1,1,0,2,5,,3,7,Sanborn,St,964604,0.852,0.928,0,1.816107,8,4.5 +8409,0,0.192592,1,1,0,2,7,,3,7,Stone,St,964308,2.256,2.449,0,4.622217,7,4.5 +29464,0,0.168484,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,4.04361,0.15,4 +29527,0,0.046956,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,1.126945,0.15,4 +8346,0,0.198436,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0.668,0.867,0,4.762473,6,4.5 +8344,0,0.09299,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0.97,1.063,0,2.231769,6,4.5 +8343,0,0.100911,1,1,0,2,4,,3,7,Gratiot,Ave,964704,1.063,1.164,0,2.421865,6,4.5 +8367,0,0.13024,1,1,0,2,5,,3,7,Holland,Ave,964606,0.849,0.979,0,3.125761,8,4.5 +25174,0,0.491822,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,11.80372,0.15,4 +8368,0,0.099446,1,1,0,2,5,,3,7,Holland,Ave,964606,0.749,0.849,0,2.3867,8,4.5 +8349,0,0.277154,1,1,0,2,4,,3,7,Gratiot,Ave,964704,0,0.277,0,6.651706,6,4.5 +29458,0,0.280722,1,1,0,2,99,,3,7,Centroid Connector,,0,0,0,0,6.737328,0.15,4 +8195,1,0.09356,3,0,0,1,1,,2,7,Blue Water Bridge,,967803,0,0.094,0,,0.32,8.5 +21381,-1,0.086475,0,3,0,1,1,,3,7,Blue Water Bridge,,4500000,0,0.087,0,,0.58,7 +8340,0,0.4167,1,1,0,2,4,,3,7,Gratiot,Ave,964704,1.918,2.335,0,10.0008,6,4.5 +8518,0,0.230173,1,1,1,2,4,,3,7,Krafft,Rd,977504,4.299,4.529,0,5.524161,6,4.5 +34120,0,1.024382,2,2,0,1,90,,,9,External Station Connector,,0,0,0,0,,0.15,4 +34133,0,0.293515,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34122,0,0.273778,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34123,0,0.248837,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34127,0,0.207316,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34126,0,0.255621,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34168,0,0.011144,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.267467,0.15,4 +34128,0,0.148453,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34169,0,0.027994,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.671849,0.15,4 +34125,0,0.120491,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34121,0,0.103502,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34130,0,0.141946,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34134,0,0.601524,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34131,0,0.163647,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34166,0,0.02087,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.500873,0.15,4 +34162,0,0.076207,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,1.828976,0.15,4 +34164,0,0.020759,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.498225,0.15,4 +34170,0,0.012444,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.298647,0.15,4 +34172,0,0.020641,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.495394,0.15,4 +34171,0,0.011734,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.281615,0.15,4 +34163,0,0.009748,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.233964,0.15,4 +34167,0,0.014534,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.348817,0.15,4 +34161,0,0.046018,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,1.104429,0.15,4 +34157,0,0.033438,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.802505,0.15,4 +34158,0,0.023675,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.568204,0.15,4 +34165,0,0.011115,1,1,0,3,96,,1,1,Walk Link,,0,0,0,0,0.266767,0.15,4 +34151,0,0.093319,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34155,0,0.239954,1,1,0,0,81,,1,1,DPM ROW,,0,0,0,1,,0.15,4 +34173,0,0.015331,1,1,0,2,5,,3,5,Glazier,Way,0,0,0,0,0.367942,8,4.5 +34175,0,0.123024,2,2,1,2,3,,3,1,Michigan,Ave,1577103,5.437,5.56,0,2.952577,5,5 +40313,0,0.509237,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.221678,0.15,4 +34212,0,6.983886,1,1,0,0,83,,5,8,Huron & Eastern Railway,,4104388,9.302,16.284,1,,0.15,4 +34213,0,0.040841,1,1,0,3,96,,5,8,Walk Link,,0,0,0,0,0.980188,0.15,4 +34214,0,7.424152,1,1,0,0,83,,5,8,Huron & Eastern Railway,,4104388,1.881,9.302,1,,0.15,4 +34215,0,0.029295,1,1,0,3,96,,5,8,Walk Link,,0,0,0,0,0.703071,0.15,4 +34216,0,1.881771,1,1,0,0,83,,5,8,Huron & Eastern Railway,,4104388,0,1.881,1,,0.15,4 +34217,0,0.024367,1,1,0,3,96,,5,5,Walk Link,,0,0,0,0,0.584817,0.15,4 +34218,0,10.351032,1,1,0,0,83,,5,5,Huron & Eastern Railway,,4605002,15.812,26.159,1,,0.15,4 +34219,0,0.015456,1,1,0,3,96,,2,5,Walk Link,,0,0,0,0,0.37095,0.15,4 +37168,0,0.06276,1,1,0,3,96,,3,8,Walk Link,,0,0,0,0,1.506249,0.15,4 +34222,0,0.010172,1,1,0,3,96,,3,5,Walk Link,,0,0,0,0,0.244129,0.15,4 +34223,0,3.498116,1,1,0,0,82,,4,5,Norfolk Southern Railway,,4604999,31.155,34.652,1,,0.15,4 +34224,0,0.060535,1,1,0,3,96,,3,2,Walk Link,,0,0,0,0,1.452834,0.15,4 +34225,0,5.43063,1,1,0,0,82,,3,2,Norfolk Southern Railway,,4711929,10.786,16.215,1,,0.15,4 +40445,0,0.039069,1,1,1,2,4,,3,3,Lahser,Rd,685510,0.408,0.447,0,0.937652,6,4.5 +40446,0,0.235564,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.65354,0.15,4 +37166,0,0.123593,1,1,0,3,96,,2,5,Walk Link,,0,0,0,0,2.966233,0.15,4 +34230,0,3.514684,1,1,0,0,82,,3,1,Canadian National Railway,,4711927,2.49,6.004,1,,0.15,4 +37163,0,6.779035,1,1,0,0,82,,3,2,Consolidated Rail Corporation,,4711929,16.215,22.992,1,,0.15,4 +34232,0,0.063742,1,1,0,2,7,,3,8,Walnut,St,933407,0.632,0.696,0,1.529805,7,4.5 +39319,0,0.089365,1,1,0,2,7,,3,5,Traver,Rd,1443305,1.889,1.978,0,2.14476,7,4.5 +39322,0,0.400325,1,1,0,2,5,,4,2,6 Mile,Rd,1680701,0.613,1.014,0,9.607792,5.8,4.5 +39321,0,0.332873,1,1,0,2,5,,4,2,Woodruff,Rd,1694803,1.772,2.105,0,7.988961,5.8,4.5 +40909,0,1.491305,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,35.791326,0.15,4 +40908,-1,0.042511,0,1,0,2,4,,4,4,25 Mile,Rd,0,0,0,0,1.02027,4.5,4.5 +40906,-1,0.036952,0,1,0,2,5,,4,4,25 Mile,Rd,0,0,0,0,0.886851,5.8,4.5 +40907,1,0.047693,1,0,0,2,4,,4,4,25 Mile,Rd,0,0,0,0,1.144633,4.5,4.5 +40904,-1,0.03895,0,1,0,2,4,,4,4,Romeo Plank,Rd,0,0,0,0,0.934789,4.5,4.5 +40902,-1,0.027534,0,1,0,2,4,,4,4,25 Mile,Rd,0,0,0,0,0.660825,4.5,4.5 +40905,1,0.04205,1,0,0,2,5,,4,4,25 Mile,Rd,0,0,0,0,1.009208,5.8,4.5 +40903,1,0.035724,2,0,0,2,4,,4,4,Romeo Plank,Rd,0,0,0,0,0.85738,4.5,4.5 +40898,0,0.076913,1,1,0,2,4,,4,4,Romeo Plank,Rd,0,0,0,0,1.845914,4.5,4.5 +40899,1,0.026183,1,0,0,2,4,,4,4,25 Mile,Rd,0,0,0,0,0.628396,4.5,4.5 +40901,1,0.03034,1,0,0,2,4,,4,4,Romeo Plank,Rd,0,0,0,0,0.728155,4.5,4.5 +40896,0,0.228401,1,1,0,2,4,,4,4,25 Mile,Rd,0,0,0,0,5.481614,4.5,4.5 +40900,-1,0.028661,0,1,0,2,4,,4,4,Romeo Plank,Rd,0,0,0,0,0.687862,4.5,4.5 +40895,0,0.296682,1,1,0,2,5,,4,4,25 Mile,Rd,0,0,0,0,7.120364,5.8,4.5 +40892,0,0.303651,1,1,0,2,5,,4,5,Tyler,Rd,0,0,0,0,7.28762,5.8,4.5 +40893,-1,0.245155,0,1,0,1,3,RSF,4,5,N Wiard/Tyler,Ramp,0,0,0,0,,3.7,5 +40890,1,0.066914,1,0,0,2,4,,5,8,Coon Lake,Rd,0,0,0,0,1.605933,3,4 +40891,-1,0.064221,0,1,0,2,4,,5,8,Coon Lake,Rd,0,0,0,0,1.541303,3,4 +39356,0,0.961637,1,1,0,2,4,,5,7,Griswold,Rd,0,0,0,0,23.079296,3,4 +40889,-1,0.044273,0,1,0,2,4,,5,8,Chilson,Rd,0,0,0,0,1.06256,3,4 +39358,-1,0.070519,0,1,0,2,4,,5,7,Griswold,Rd,0,0,0,0,1.692467,3,4 +39357,1,0.06683,1,0,0,2,4,,5,7,Griswold,Rd,0,0,0,0,1.603908,3,4 +39360,-1,0.038826,0,1,0,2,4,,5,7,Griswold,Rd,0,0,0,0,0.931836,3,4 +39359,-1,0.031476,0,1,0,2,4,,5,7,Range,Rd,0,0,0,0,0.755416,3,4 +39362,1,0.038795,1,0,0,2,4,,5,7,Griswold,Rd,0,0,0,0,0.931087,3,4 +39361,1,0.035287,1,0,0,2,4,,5,7,Range,Rd,0,0,0,0,0.846881,3,4 +39364,1,0.058437,1,0,0,2,4,,5,7,Range,Rd,0,0,0,0,1.402488,3,4 +39365,-1,0.072107,0,1,0,2,4,,5,7,Griswold,Rd,0,0,0,0,1.73056,3,4 +39363,-1,0.061932,0,1,0,2,4,,5,7,Range,Rd,0,0,0,0,1.486361,3,4 +39366,1,0.074513,1,0,0,2,4,,5,7,Griswold,Rd,0,0,0,0,1.788319,3,4 +39368,-1,0.073454,0,1,0,2,4,,5,7,Range,Rd,0,0,0,0,1.76289,3,4 +39367,1,0.06892,1,0,0,2,4,,5,7,Range,Rd,0,0,0,0,1.654072,3,4 +39370,0,0.301954,1,1,0,2,4,,5,7,Range,Rd,0,0,0,0,7.246902,3,4 +39369,0,0.477764,1,1,0,2,4,,5,7,Range,Rd,0,0,0,0,11.46633,3,4 +39372,0,0.416193,1,1,0,2,99,,5,7,Centroid Connector,,0,0,0,0,9.98862,0.15,4 +39371,0,0.924701,1,1,0,2,4,,5,7,Griswold,Rd,0,0,0,0,22.192823,3,4 +34294,0,0.53757,1,1,0,2,5,,3,2,Henry Ruff,Rd,1664604,4.16,4.698,0,12.901687,8,4.5 +34293,0,0.335512,1,1,0,2,5,,5,8,Hamburg,Rd,932904,1.138,1.473,0,8.052286,3.7,5 +40609,0,0.515407,1,1,0,2,5,,5,8,Hartland,Rd,4105279,1.216,1.732,0,12.369779,3.7,5 +40608,-1,1.267537,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,0.432,1.699,0,30.420891,1.7,4 +40611,0,0.884873,1,1,0,2,6,,5,8,Clark,Rd,4103128,0,0.885,0,21.236957,5.8,6 +40610,0,0.736055,1,1,0,2,6,,5,8,Dunham,Rd,936708,0,0.736,0,17.665329,5.8,6 +37196,1,0.073754,1,0,0,1,1,ROF,4,3,E I 96/SB Beck,RAMP,4462972,0.297,0.37,0,,2.24,5 +37195,1,0.081674,2,0,0,1,1,ROF,4,3,E I 96/NB Beck,RAMP,4462973,0,0.082,0,,2.24,5 +37194,1,0.296648,1,0,0,1,1,ROF,4,3,E I 96/Beck,RAMP,4462972,0,0.297,0,,2.24,5 +37193,0,0.275683,2,2,1,2,4,,4,3,Beck,Rd,662105,0.085,0.361,0,6.616389,4.5,4.5 +37192,0,0.045556,2,2,1,2,3,,4,3,Beck,Rd,662105,0.04,0.085,0,1.09335,3.7,5 +37191,0,0.039899,2,2,1,2,3,,4,3,Beck,Rd,662105,0,0.04,0,0.957573,3.7,5 +39903,1,0.294859,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,10.967,11.262,0,7.076606,3.7,5 +40060,1,0.057346,2,0,0,2,3,DIV,3,3,Orchard Lake,Rd,5500201,0,0.057,0,1.376301,5,5 +34329,0,0.299178,1,1,1,2,3,,3,3,West Maple,Rd,683906,0.702,1.001,0,7.180265,5,5 +37208,0,0.054419,1,1,0,2,3,,4,3,12 Mile,Rd,4462980,1.336,1.39,0,1.306058,3.7,5 +37207,-1,0.278166,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4463321,0,0.278,0,6.675988,3.7,5 +37206,1,0.275981,2,0,0,2,3,DIV,4,3,12 Mile,Rd,4462980,0,0.275,0,6.623536,3.7,5 +37205,1,0.150426,1,0,0,1,1,RON,4,3,Beck/W I 96,RAMP,4462978,0.1,0.25,0,,1.09,4 +37204,1,0.127922,1,0,0,1,1,RON,4,3,NB Beck/W I 96,RAMP,4462979,0,0.128,0,,1.09,4 +37203,1,0.09971,1,0,0,1,1,RON,4,3,SB Beck/W I 96,RAMP,4462978,0,0.1,0,,1.09,4 +37202,1,0.060947,2,0,0,1,1,ROF,4,3,W I 96/NB Beck,RAMP,4462976,0.34,0.401,0,,2.24,5 +37201,1,0.064006,2,0,0,1,1,ROF,4,3,W I 96/SB Beck,RAMP,4462977,0,0.064,0,,2.24,5 +37200,1,0.340152,2,0,0,1,1,ROF,4,3,W I 96/Beck,RAMP,4462976,0,0.34,0,,2.24,5 +37199,1,0.355421,2,0,0,1,1,RON,4,3,Beck/E I 96,RAMP,4462974,0.085,0.44,0,,1.09,4 +37198,1,0.093711,2,0,0,1,1,RON,4,3,SB Beck/E I 96,RAMP,4462975,0,0.094,0,,1.09,4 +37197,1,0.084469,1,0,0,1,1,RON,4,3,NB Beck/E I 96,RAMP,4462974,0,0.085,0,,1.09,4 +34342,-1,0.125798,0,2,0,2,3,DV2,4,3,Joslyn,Rd,4416557,0,0.126,0,3.01916,3.7,5 +34343,1,0.128672,2,0,0,2,3,DV2,4,3,Joslyn,Rd,674110,2.969,3.097,0,3.088138,3.7,5 +37073,1,0.363411,1,0,0,1,1,RON,4,3,Joslyn/S I 75,RAMP,669205,0.011,0.375,0,,1.09,4 +39789,-1,0.220629,0,2,0,2,4,DIV,4,3,Joslyn,Rd,4463372,0,0.221,0,5.295101,4.5,4.5 +34346,1,0.27659,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,1.237,1.514,0,6.638163,4.5,4.5 +34347,-1,0.224017,0,2,0,2,4,DIV,4,3,Brown,Rd,4463371,0,0.224,0,5.376402,4.5,4.5 +34348,1,0.010963,2,0,0,2,4,DIV,4,3,Joslyn,Rd,674110,3.896,3.907,0,0.263122,4.5,4.5 +34349,-1,0.070546,0,2,0,2,4,RSF,4,3,Joslyn/Brown Cutoff,,4463373,0.097,0.167,0,1.69311,4.5,4.5 +34350,-1,0.080276,0,2,0,2,4,RSF,4,3,Joslyn/Brown Cutoff,,4463373,0.017,0.097,0,1.926635,4.5,4.5 +34351,1,0.22399,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,0.887,1.111,0,5.375756,4.5,4.5 +34352,1,0.064911,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,1.12,1.185,0,1.557873,4.5,4.5 +34353,1,0.052489,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,1.185,1.237,0,1.259725,4.5,4.5 +39787,-1,0.209719,0,2,0,2,4,DIV,4,3,Brown,Rd,4463371,0.367,0.577,0,5.03325,4.5,4.5 +39788,-1,0.134807,0,2,0,2,4,DIV,4,3,Brown,Rd,4463371,0.577,0.712,0,3.235362,4.5,4.5 +34356,-1,0.134961,0,2,0,2,4,DIV,4,3,Brown,Rd,4463371,0.232,0.367,0,3.239068,4.5,4.5 +34357,1,0.045481,2,0,0,2,4,DIV,4,3,Joslyn,Rd,674110,3.797,3.842,0,1.091544,4.5,4.5 +39791,1,0.009011,2,0,0,2,4,DIV,4,3,Brown,Rd,4416311,1.111,1.12,0,0.216274,4.5,4.5 +34359,1,0.053741,2,0,0,2,4,DIV,4,3,Joslyn,Rd,674110,3.842,3.896,0,1.289772,4.5,4.5 +39792,-1,0.066434,0,2,0,2,4,DIV,4,3,Joslyn,Rd,4463372,0.221,0.287,0,1.594425,4.5,4.5 +37079,-1,0.095913,0,2,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0,0.096,0,2.301912,3.7,5 +37084,1,0.019116,2,0,0,2,3,,4,3,S Baldwin/Great Lakes Turn,TURN,4414692,0,0.019,0,0.458787,3.7,5 +37087,1,0.021116,1,0,0,2,3,RSF,4,3,S I 75/Baldwin,RAMP,668908,0.338,0.359,0,0.506787,3.7,5 +37108,1,0.21522,2,0,0,2,4,DIV,4,3,Baldwin,Rd,655009,1.612,1.827,0,5.165284,4.5,4.5 +37112,1,0.170243,2,0,0,2,5,DV2,3,4,Kennedy,Cir,4211476,0.33,0.5,0,4.085835,8,4.5 +37106,1,0.022574,1,0,0,2,3,RSF,4,3,Baldwin/N I 75,RAMP,669002,0,0.023,0,0.541776,3.7,5 +37109,1,0.019219,1,0,0,2,4,,4,3,S Baldwin/Brown,TURN,4414694,0,0.019,0,0.461256,4.5,4.5 +37216,-1,0.514139,0,2,0,2,3,DIV,3,3,12 Mile,Rd,4414623,0.663,1.177,0,12.339332,5,5 +37215,-1,0.307965,0,2,0,2,3,DIV,3,3,12 Mile,Rd,4414623,0.355,0.663,0,7.391154,5,5 +37214,-1,0.198667,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4414623,0.156,0.355,0,4.768013,3.7,5 +37213,-1,0.156164,0,2,0,2,3,DIV,4,3,12 Mile,Rd,4414623,0,0.156,0,3.74793,3.7,5 +37212,0,0.332363,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.976715,0.15,4 +37211,0,0.01595,2,2,1,2,3,,3,3,Novi,Rd,621910,1.009,1.025,0,0.38279,5,5 +37220,1,0.027036,1,0,0,1,1,ROF,4,8,W I 96/WB Highland,RAMP,4104613,0,0.027,0,,2.24,5 +37219,0,0.024674,2,1,0,2,3,,4,8,Highland,Rd,933209,0.134,0.158,0,0.59218,3.7,5 +37218,1,0.267571,2,0,0,2,3,DIV,4,8,Highland,Rd,933209,0.532,0.8,0,6.421705,3.7,5 +37217,-1,0.489844,0,2,0,2,3,DIV,3,3,12 Mile,Rd,4414623,1.177,1.666,0,11.756252,5,5 +39715,-1,1.02651,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,0.248,1.274,0,24.636249,3.7,5 +39729,-1,0.013489,0,1,0,2,4,,4,3,White Lake,Rd,4416625,0.023,0.036,0,0.323728,4.5,4.5 +39728,-1,0.022702,0,1,0,2,4,,4,3,White Lake,Rd,4416625,0,0.023,0,0.544855,4.5,4.5 +37232,0,2.373529,1,1,0,2,99,,5,8,Centroid Connector,,0,0,0,0,56.964689,0.15,4 +37288,1,0.040475,2,0,0,2,4,,4,5,Geddes,Rd,1448104,5.338,5.378,0,0.971411,4.5,4.5 +37287,0,0.622694,1,1,0,2,4,,4,5,Geddes,Rd,1448104,4.716,5.338,0,14.944655,4.5,4.5 +37294,-1,0.092158,0,2,0,2,4,,4,5,Geddes,Rd,4606143,0.04,0.132,0,2.211785,4.5,4.5 +37285,0,0.49066,1,1,0,2,4,,4,5,Superior,Rd,4606142,0.164,0.655,0,11.775836,4.5,4.5 +37286,0,0.54654,1,1,0,2,4,,4,5,Superior,Rd,4606142,0.655,1.201,0,13.116953,4.5,4.5 +37226,-1,0.840562,0,2,0,2,3,DIV,5,8,Highland,Rd,4105117,0.782,1.622,0,20.173491,1.7,4 +37223,0,0.037156,2,2,1,2,3,,4,8,Grand River,Ave,932910,9.861,9.898,0,0.891755,3.7,5 +37222,0,0.116221,2,2,1,2,3,,3,8,Highland,Rd,933209,3.512,3.628,0,2.789307,5,5 +37225,-1,0.332355,0,2,0,2,3,DIV,4,8,Highland,Rd,4105117,0.45,0.782,0,7.976531,3.7,5 +37221,1,0.063964,1,0,0,1,1,ROF,4,8,W I 96/Highland,RAMP,934201,0.317,0.381,0,,2.24,5 +37224,-1,0.450071,0,2,0,2,3,DIV,4,8,Highland,Rd,4105117,0,0.45,0,10.801713,3.7,5 +37233,0,0.34242,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,8.218087,0.15,4 +37231,0,0.307223,1,1,0,2,99,,3,8,Centroid Connector,,0,0,0,0,7.373354,0.15,4 +37230,-1,0.394004,0,2,0,2,3,DIV,3,8,Highland,Rd,4105117,2.591,2.985,0,9.456092,5,5 +37229,-1,0.332053,0,2,0,2,3,DIV,3,8,Highland,Rd,4105117,2.259,2.591,0,7.969282,5,5 +37228,-1,0.637188,0,2,0,2,3,DIV,3,8,Highland,Rd,4105117,1.622,2.259,0,15.292518,5,5 +37227,0,2.153559,1,1,0,2,5,,5,8,Byron,Rd,933401,0.894,3.046,0,51.685427,3.7,5 +39713,0,0.201615,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.018,0.22,0,4.838768,3.7,5 +37302,1,0.415861,1,0,0,1,1,RON,4,5,Baker/E I 94,RAMP,4606001,0,0.416,0,,1.09,4 +37301,1,1.498525,3,0,0,1,1,,4,5,E I 94,,1426109,13.58,15.078,0,,0.8,7.5 +37300,0,0.176785,2,2,1,2,3,,4,5,Baker,Rd,1426608,0.273,0.449,0,4.242848,3.7,5 +37143,-1,0.54701,0,3,0,2,3,DIV,4,3,Rochester,Rd,4406170,2.148,2.695,0,13.128243,3.7,5 +40196,-1,0.009712,0,3,0,2,3,DIV,3,3,Rochester,Rd,4406170,1.965,1.975,0,0.233084,5,5 +37139,1,0.483495,3,0,0,2,3,DIV,4,3,Rochester,Rd,4413538,4.661,5.144,0,11.603873,3.7,5 +37135,1,0.016923,3,0,0,2,3,DIV,3,3,Rochester,Rd,4413538,4.46,4.477,0,0.40614,5,5 +40195,-1,0.150407,0,3,0,2,3,DIV,3,3,Rochester,Rd,4406170,1.975,2.125,0,3.609777,5,5 +37131,-1,0.017524,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,3.436,3.453,0,0.420584,5,5 +34410,0,0.093903,2,2,1,2,3,,4,3,Long Lake,Rd,641102,11.53,11.624,0,2.253679,3.7,5 +40064,-1,0.366375,0,2,0,2,3,DIV,3,3,Orchard Lake,Rd,641405,0.79,1.156,0,8.793011,5,5 +40033,-1,0.038325,0,3,0,2,3,DIV,4,3,Northwestern,Hwy,4463312,0,0.038,0,0.919806,3.7,5 +39897,1,0.167875,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,10.799,10.967,0,4.029009,3.7,5 +34414,-1,0.25901,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4416844,0,0.259,0,6.216245,3.7,5 +34415,1,0.259009,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,12.022,12.281,0,6.216208,3.7,5 +34416,1,0.302329,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,12.281,12.583,0,7.2559,3.7,5 +37378,-1,0.020087,0,1,0,2,4,,4,5,Maple,Rd,4605983,0.033,0.053,0,0.48209,4.5,4.5 +37377,1,0.010413,1,0,0,2,4,,4,5,Skyline High School,Rd,4605985,0,0.01,0,0.249919,4.5,4.5 +37376,-1,0.033038,0,1,0,2,4,,4,5,Maple,Rd,4605983,0,0.033,0,0.79292,4.5,4.5 +37306,-1,0.63587,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,2.299,2.935,0,15.260887,3.7,5 +39714,-1,0.247785,0,2,0,2,4,DIV,4,5,Jackson,Rd,5490574,0,0.248,0,5.946849,4.5,4.5 +37304,0,0.064472,2,2,1,2,4,,4,5,Zeeb,Rd,1436703,6.28,6.344,0,1.547337,4.5,4.5 +37411,1,0.017516,1,0,0,2,4,,3,5,Earhart,Rd,1442503,0,0.018,0,0.420375,6,4.5 +37379,1,0.024513,1,0,0,2,4,,4,5,Maple,Rd,1452206,3.466,3.491,0,0.588304,4.5,4.5 +37380,-1,0.010268,0,1,0,2,4,,4,5,Skyline High School,Rd,4605984,0,0.01,0,0.246434,4.5,4.5 +37381,-1,0.041503,0,1,0,2,4,,4,5,Maple,Rd,4605983,0.053,0.095,0,0.996065,4.5,4.5 +37382,1,0.043092,1,0,0,2,4,,4,5,Maple,Rd,1452206,3.491,3.534,0,1.034209,4.5,4.5 +37383,0,0.065705,1,1,0,2,4,,4,5,Maple,Rd,1452206,3.534,3.599,0,1.576913,4.5,4.5 +37393,-1,0.057435,0,1,0,2,5,,5,8,Hamburg,Rd,4105274,0,0.057,0,1.378441,3.7,5 +37394,-1,0.05647,0,1,0,2,4,,5,8,Winans Lake,Rd,4105274,0.064,0.121,0,1.355287,3,4 +37395,1,0.056915,1,0,0,2,4,,5,8,Winans Lake,Rd,940105,2.035,2.092,0,1.365962,3,4 +37396,0,0.425075,1,1,0,2,4,,4,5,Huron River,Dr,1431609,12.549,12.974,0,10.2018,4.5,4.5 +37397,0,0.066458,1,1,0,2,4,,4,5,Huron River,Dr,4605101,0,0.066,0,1.594994,4.5,4.5 +37410,-1,0.014329,0,1,0,2,4,,3,5,Geddes,Rd,4606146,0.025,0.039,0,0.343887,6,4.5 +37409,-1,0.015035,0,1,0,2,4,,3,5,Earhart,Rd,4606147,0,0.015,0,0.360834,6,4.5 +37408,1,0.016243,1,0,0,2,4,,3,5,Geddes,Rd,1448104,2.838,2.855,0,0.389841,6,4.5 +37407,-1,0.025005,0,1,0,2,4,,3,5,Geddes,Rd,4606146,0,0.025,0,0.600131,6,4.5 +37402,0,0.133848,2,2,1,2,4,,4,5,Dixboro,Rd,4605100,0.381,0.515,0,3.212357,4.5,4.5 +37423,1,0.011106,1,0,0,2,5,,3,5,Nixon,Rd,1443105,0.177,0.188,0,0.266546,8,4.5 +37424,-1,0.024877,0,1,0,2,5,,3,5,Nixon,Rd,4606150,0.041,0.066,0,0.597045,8,4.5 +37425,1,0.028219,1,0,0,2,5,,3,5,Nixon,Rd,1443105,0.188,0.216,0,0.677262,8,4.5 +37426,0,0.023787,1,1,0,2,5,,3,5,Nixon,Rd,1443105,0.216,0.24,0,0.570879,8,4.5 +37418,0,0.461093,1,1,0,2,5,,3,5,Earhart,Rd,1442503,0.062,0.523,0,11.066222,8,4.5 +37427,0,0.222547,1,1,1,2,5,,3,5,Huron,Pkwy,1429602,3.805,4.028,0,5.34112,8,4.5 +40373,1,0.045036,2,0,0,2,4,,3,5,Geddes,Rd,1448104,2.998,3.043,0,1.080875,6,4.5 +37415,1,0.044535,1,0,0,2,4,,3,5,Earhart,Rd,1442503,0.018,0.062,0,1.068833,6,4.5 +37414,-1,0.04371,0,1,0,2,4,,3,5,Earhart,Rd,4606147,0.015,0.059,0,1.049034,6,4.5 +37413,-1,0.025959,0,2,0,2,4,,3,5,Geddes,Rd,4606146,0.039,0.065,0,0.623023,6,4.5 +37412,1,0.02689,1,0,0,2,4,,3,5,Geddes,Rd,1448104,2.855,2.881,0,0.645362,6,4.5 +34450,0,0.16631,1,1,1,2,4,,4,4,Utica,Rd,4211434,7.807,7.973,0,3.99144,4.5,4.5 +34451,0,0.440886,1,1,1,2,4,,4,4,Dodge Park,Rd,812702,2.298,2.739,0,10.581271,4.5,4.5 +34452,0,0.31319,1,1,0,2,4,,4,4,Utica,Rd,4211434,7.056,7.369,0,7.516552,4.5,4.5 +37900,0,1.041114,1,1,0,2,4,,5,8,Latson,Rd,940302,0,1.041,0,24.986727,3,4 +37487,1,0.013811,2,0,0,2,4,,4,8,Lee,Rd,931610,0.257,0.271,0,0.331476,4.5,4.5 +37486,1,0.017595,2,0,0,2,4,,4,8,S US 23/Lee,Ramp,932009,0.208,0.225,0,0.422269,4.5,4.5 +37485,-1,0.027758,0,3,0,2,4,,4,8,Lee,Rd,4104575,0.089,0.116,0,0.666197,4.5,4.5 +37484,1,0.024894,3,0,0,2,4,,4,8,Lee,Rd,931610,0.232,0.257,0,0.597454,4.5,4.5 +37483,1,0.268638,1,0,0,1,2,RON,4,8,Lee/S US 23,RAMP,932008,0,0.269,0,,1.09,4 +37482,0,0.369151,1,1,1,2,4,,4,8,Whitmore Lake,Rd,932204,5.337,5.706,0,8.859628,4.5,4.5 +37481,1,0.038748,2,0,0,2,4,,4,8,Whitmore Lake,Rd,932204,5.706,5.744,0,0.92995,4.5,4.5 +37480,-1,0.04433,0,2,0,2,4,,4,8,Whitmore Lake,Rd,4104576,0,0.044,0,1.063919,4.5,4.5 +37479,1,0.116066,3,0,0,2,4,,4,8,Whitmore Lake,Rd,932204,5.763,5.879,0,2.785577,4.5,4.5 +37468,1,0.03046,1,0,0,2,4,,5,8,Kensington,Rd,942603,4.23,4.261,0,0.731052,3,4 +37467,-1,0.033705,0,1,0,2,4,,5,8,Kensington,Rd,4104578,0.052,0.086,0,0.808923,3,4 +37466,-1,0.015591,0,1,0,2,4,,5,8,Jacoby,,4102973,0.022,0.037,0,0.374194,3,4 +37465,1,0.008568,1,0,0,2,4,,5,8,Kensington,Rd,942603,4.222,4.23,0,0.205627,3,4 +37464,1,0.016809,1,0,0,2,4,,5,8,Jacoby,,943010,0.732,0.749,0,0.403406,3,4 +37463,-1,0.029937,0,1,0,2,4,,5,8,Kensington,Rd,4104578,0,0.03,0,0.71848,3,4 +37462,1,0.021285,1,0,0,2,4,,5,8,Kensington,Rd,942603,4.2,4.222,0,0.510838,3,4 +37461,-1,0.02252,0,1,0,2,4,,5,8,Kensington,Rd,4104578,0.03,0.052,0,0.540473,3,4 +37452,-1,0.029617,0,1,0,2,4,,3,8,3rd,St,4104564,0.041,0.071,0,0.710811,6,4.5 +37451,1,0.029771,1,0,0,2,4,,3,8,3rd,St,938410,0.389,0.419,0,0.714513,6,4.5 +37450,-1,0.010116,0,1,0,2,4,,3,8,3rd,St,4104564,0.031,0.041,0,0.242794,6,4.5 +37449,1,0.008816,1,0,0,2,4,,3,8,3rd,St,938410,0.38,0.389,0,0.211586,6,4.5 +37448,-1,0.030781,0,1,0,2,4,,3,8,3rd,St,4104564,0,0.031,0,0.738735,6,4.5 +37447,1,0.031812,1,0,0,2,4,,3,8,3rd,St,938410,0.348,0.38,0,0.763495,6,4.5 +37446,0,0.090687,1,1,0,2,5,,3,8,3rd,St,938410,0.258,0.348,0,2.176483,8,4.5 +37458,-1,0.167685,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,0,0.168,0,4.024447,1.7,4 +37454,-1,0.264133,0,2,0,2,3,DIV,5,8,Highland,Rd,4105278,0.168,0.432,0,6.339181,1.7,4 +37457,1,0.152188,2,0,0,2,3,DIV,5,8,Highland,Rd,933209,12.844,12.996,0,3.652503,1.7,4 +37442,0,0.083266,1,1,0,2,4,,3,8,Main,St,940301,4.368,4.452,0,1.998383,6,4.5 +37441,-1,0.036509,0,1,0,2,4,,3,8,Main,St,4104563,0.043,0.079,0,0.876208,6,4.5 +37440,1,0.03608,1,0,0,2,4,,3,8,Main,St,940301,4.332,4.368,0,0.865923,6,4.5 +37439,-1,0.011167,0,1,0,2,4,,3,8,Main,St,4104563,0.031,0.043,0,0.268008,6,4.5 +37438,1,0.011082,1,0,0,2,4,,3,8,Main,St,940301,4.321,4.332,0,0.265957,6,4.5 +37434,0,0.348467,1,1,1,2,7,,3,5,Huron,Pkwy,1429602,4.097,4.445,0,8.363203,7,4.5 +37433,-1,0.026337,0,1,0,2,5,,3,5,Huron,Pkwy,1429602,4.071,4.097,0,0.632078,8,4.5 +37432,1,0.022976,1,0,0,2,5,,3,5,Huron,Pkwy,4606151,0.044,0.067,0,0.551431,8,4.5 +37431,-1,0.014455,0,1,0,2,5,,3,5,Huron,Pkwy,1429602,4.056,4.071,0,0.346911,8,4.5 +37430,1,0.011418,1,0,0,2,5,,3,5,Huron,Pkwy,4606151,0.033,0.044,0,0.274023,8,4.5 +34491,0,0.252438,2,2,0,2,7,,4,3,American,Dr,686915,0,0.252,0,6.058519,6.55,4.5 +34492,0,0.386541,1,1,1,2,7,,4,3,American,Dr,686915,0.252,0.639,0,9.276975,6.55,4.5 +37503,-1,0.083072,0,1,0,2,6,,5,8,Fieldcrest,Dr,4104413,0,0.083,0,1.993739,5.8,6 +37502,1,0.07653,1,0,0,2,6,,5,8,Fieldcrest,Dr,4105311,4.298,4.374,0,1.836727,5.8,6 +37501,1,0.021229,1,0,0,2,4,,5,8,Lee/N US 23,Ramp,4104572,0,0.021,0,0.509497,3,4 +37500,1,0.025836,2,0,0,2,4,,5,8,Lee,Rd,931610,0.416,0.442,0,0.62007,3,4 +37499,-1,0.026867,0,2,0,2,4,,5,8,Lee,Rd,4104410,0.054,0.08,0,0.644801,3,4 +37498,-1,0.022293,0,1,0,2,4,,5,8,N US 23/Lee,Ramp,931701,0.213,0.235,0,0.535026,3,4 +37497,-1,0.053507,0,2,0,2,4,,5,8,Lee,Rd,4104410,0,0.054,0,1.284164,3,4 +37496,1,0.053363,2,0,0,2,4,,5,8,Lee,Rd,931610,0.363,0.416,0,1.280704,3,4 +37506,0,0.206232,1,1,1,2,5,,4,4,Callens,Rd,814710,1.385,1.591,0,4.949558,5.8,4.5 +40602,1,0.013897,3,0,0,1,3,DIV,3,1,Davison,St,4702009,5.305,5.319,0,,5,5 +37493,0,0.041189,1,1,0,2,4,,4,8,Lee,Rd,931610,0.322,0.363,0,0.988533,4.5,4.5 +34505,1,0.446341,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0.078,0.524,0,10.71218,4.5,4.5 +34506,-1,0.464848,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0.079,0.543,0,11.156354,4.5,4.5 +34507,1,0.067863,2,0,0,2,4,DIV,4,3,Squirrel,Rd,4414558,0,0.068,0,1.628709,4.5,4.5 +34508,-1,0.067922,0,2,0,2,4,DIV,4,3,Squirrel,Rd,4414559,0,0.068,0,1.630138,4.5,4.5 +34509,-1,0.034871,0,1,0,2,5,,4,3,Squirrel,Ct,4414556,0,0.035,0,0.836896,5.8,4.5 +34510,-1,0.012081,0,1,0,2,4,,4,3,Squirrel,Ct,4414556,0.035,0.047,0,0.289936,4.5,4.5 +39894,-1,0.63381,0,2,0,2,4,DIV,4,3,Sashabaw,Rd,4416849,0.273,0.906,0,15.211435,4.5,4.5 +39893,-1,0.272576,0,2,0,2,4,DIV,4,3,Sashabaw,Rd,4416849,0,0.273,0,6.541814,4.5,4.5 +39892,0,0.061654,2,2,1,2,4,,4,3,Sashabaw,Rd,697309,3.797,3.858,0,1.47969,4.5,4.5 +39891,1,0.208734,2,0,0,2,4,DIV,4,3,Sashabaw,Rd,697309,2.89,3.099,0,5.009605,4.5,4.5 +37505,1,0.212588,1,0,0,1,2,ROF,5,8,N US 23/Lee,RAMP,931701,0,0.213,0,,2.24,5 +37504,1,0.327882,1,0,0,1,2,RON,5,8,Lee/N US 23,RAMP,4104572,0.021,0.349,0,,1.09,4 +37535,1,0.019814,1,0,0,2,4,,4,4,Dodge Park,Rd,812702,2.76,2.779,0,0.475538,4.5,4.5 +37534,-1,0.018452,0,2,0,2,4,,4,4,Utica,Rd,4211012,0.221,0.239,0,0.442848,4.5,4.5 +37533,1,0.016986,2,0,0,2,4,,4,4,Utica,Rd,4211434,7.595,7.612,0,0.407667,4.5,4.5 +37532,-1,0.027952,0,1,0,2,4,,4,4,Dodge Park,Rd,4211013,0.031,0.059,0,0.670848,4.5,4.5 +37531,1,0.19431,2,0,0,2,4,DIV,4,4,Utica,Rd,4211434,7.612,7.807,0,4.663433,4.5,4.5 +37530,-1,0.195749,0,2,0,2,4,DIV,4,4,Utica,Rd,4211012,0.239,0.435,0,4.697968,4.5,4.5 +37518,1,0.090268,1,0,0,2,5,,4,4,WB 18 1/2 Mile/NB Mound Cutoff,,4210493,0,0.09,0,2.166425,5.8,4.5 +37514,0,0.267776,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,6.426628,0.15,4 +37513,0,0.563632,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,13.527177,0.15,4 +37512,-1,0.49652,0,2,0,2,4,DIV,4,4,19 Mile,Rd,4211579,0.372,0.869,0,11.916483,4.5,4.5 +37511,-1,0.37243,0,2,0,2,4,DIV,4,4,19 Mile,Rd,4211579,0,0.372,0,8.938316,4.5,4.5 +37510,0,0.068044,2,2,0,2,4,,4,4,19 Mile,Rd,805301,1.932,2,0,1.63305,4.5,4.5 +37509,1,0.373058,2,0,0,2,4,DIV,4,4,19 Mile,Rd,805301,1.064,1.437,0,8.953385,4.5,4.5 +37542,-1,0.026404,0,2,0,2,3,,4,4,Cass,Ave,819209,0,0.026,0,0.633688,3.7,5 +37543,1,0.026945,2,0,0,2,3,,4,4,Cass,Ave,4212030,0,0.027,0,0.646679,3.7,5 +37508,-1,0.110398,0,1,0,2,7,,4,4,Callens Cutoff,,4212020,0,0.11,0,2.649552,6.55,4.5 +37547,1,0.018162,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.603,1.621,0,0.4359,3.7,5 +37546,-1,0.016575,0,1,0,2,3,,4,4,Romeo Plank,Rd,4212032,0.033,0.05,0,0.397804,3.7,5 +37545,1,0.0247,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.621,1.646,0,0.592806,3.7,5 +37544,-1,0.029229,0,2,0,2,3,,4,4,Romeo Plank,Rd,4212031,0.02,0.049,0,0.701507,3.7,5 +39796,0,0.388025,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.312603,0.15,4 +39795,0,0.601429,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.434299,0.15,4 +39794,-1,0.062286,0,2,0,2,4,DIV,4,3,Joslyn,Rd,4463372,0.298,0.36,0,1.494852,4.5,4.5 +39793,-1,0.011121,0,2,0,2,4,DIV,4,3,Joslyn,Rd,4463372,0.287,0.298,0,0.266894,4.5,4.5 +39785,1,0.163709,2,0,0,2,4,RSF,4,3,Joslyn/Brown Cutoff,,4410164,0,0.164,0,3.929008,4.5,4.5 +39784,0,0.441791,1,1,0,2,4,,4,3,Joslyn,Rd,674110,3.97,4.411,0,10.602974,4.5,4.5 +39783,0,0.322014,1,1,0,2,99,,4,2,Centroid Connector,,0,0,0,0,7.728341,0.15,4 +39782,-1,0.290817,0,2,0,2,3,DIV,4,2,Beck,Rd,4718968,0.702,0.992,0,6.979618,3.7,5 +39781,-1,0.701735,0,2,0,2,3,DIV,4,2,Beck,Rd,4718968,0,0.702,0,16.841648,3.7,5 +39718,0,0.953661,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,22.887859,0.15,4 +39717,0,0.2115,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,5.075995,0.15,4 +39716,0,1.230302,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,29.527247,0.15,4 +34549,0,2.000256,1,1,0,2,5,,4,2,Denton,Rd,1599103,2.077,4.077,0,48.006145,5.8,4.5 +37558,-1,0.016242,0,2,0,2,3,,4,4,19 Mile,Rd,4212029,0.033,0.049,0,0.389811,3.7,5 +37557,-1,0.015356,0,2,0,2,3,,4,4,Romeo Plank,Rd,4212028,0.026,0.042,0,0.368534,3.7,5 +37556,-1,0.032508,0,2,0,2,3,,4,4,19 Mile,Rd,4212029,0,0.033,0,0.780201,3.7,5 +37555,1,0.033046,3,0,0,2,3,,4,4,19 Mile,Rd,802506,2.516,2.549,0,0.793099,3.7,5 +37554,1,0.023549,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.722,1.746,0,0.565168,3.7,5 +37553,-1,0.026463,0,2,0,2,3,,4,4,Romeo Plank,Rd,4212028,0,0.026,0,0.635101,3.7,5 +37552,1,0.028708,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.769,1.798,0,0.689,3.7,5 +37551,-1,0.032098,0,2,0,2,3,,4,4,Romeo Plank,Rd,4212028,0.042,0.074,0,0.770341,3.7,5 +37550,0,0.076058,2,2,1,2,3,,4,4,Romeo Plank,Rd,819207,1.646,1.722,0,1.825389,3.7,5 +37549,-1,0.020114,0,2,0,2,3,,4,4,Romeo Plank,Rd,4212031,0,0.02,0,0.482742,3.7,5 +39889,-1,0.341067,0,2,0,2,4,,4,4,Hayes,Rd,4212090,0,0.341,0,8.185606,4.5,4.5 +39888,1,0.182666,2,0,0,2,4,,4,4,Hayes,Rd,4208921,2.629,2.811,0,4.383979,4.5,4.5 +39840,1,0.03053,2,0,0,2,3,,4,3,Martin,Pkwy,4403012,1.17,1.2,0,0.73271,3.7,5 +39841,-1,0.034148,0,2,0,2,3,,4,3,Martin,Pkwy,4416635,0.905,0.939,0,0.819547,3.7,5 +39842,1,0.091247,1,0,0,2,3,,4,3,N Pontiac Trl/S M 5 Cutoff,,5492455,0,0.091,0,2.189934,3.7,5 +39843,1,0.075901,1,0,0,2,3,,4,3,N M 5/N Pontiac Trl Cutoff,,5492460,0,0.076,0,1.821613,3.7,5 +34566,1,0.252125,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.615,10.867,0,6.050989,3.7,5 +34567,1,0.019342,3,0,0,2,3,DIV,4,4,Mound,Rd,799110,10.596,10.615,0,0.464212,3.7,5 +37515,0,0.119668,2,2,1,2,5,,4,4,18 1/2 Mile,Rd,4210491,0,0.12,0,2.872034,5.8,4.5 +37516,0,0.154175,2,2,1,2,5,,4,4,18 1/2 Mile,Rd,4210491,0.12,0.274,0,3.70019,5.8,4.5 +37607,1,0.014724,1,0,0,2,3,RSF,4,3,Adams/E M 59,RAMP,4462969,0,0.015,0,0.353367,3.7,5 +37598,-1,0.180134,0,2,0,2,3,DIV,4,3,Adams,Rd,4415855,0.619,0.799,0,4.323209,3.7,5 +37606,1,0.014917,1,0,0,2,3,RSF,4,3,E M 59/Adams,RAMP,4462965,0.376,0.391,0,0.358014,3.7,5 +37563,0,0.563891,1,1,0,2,4,,4,3,Dutton,Rd,626101,0,0.564,0,13.533378,4.5,4.5 +37594,-1,0.015312,0,2,0,2,3,DIV,4,3,Adams,Rd,4462960,0,0.015,0,0.367491,3.7,5 +37595,-1,0.074371,0,2,0,2,3,DIV,4,3,Adams,Rd,4415855,0.799,0.873,0,1.784898,3.7,5 +37562,0,0.503677,1,1,0,2,4,,4,3,Dutton,Rd,4462954,0,0.504,0,12.088248,4.5,4.5 +37605,1,0.375901,1,0,0,1,2,ROF,4,3,E M 59/Adams,RAMP,4462965,0,0.376,0,,2.24,5 +37560,1,0.015794,2,0,0,2,3,,4,4,19 Mile,Rd,802506,2.549,2.565,0,0.379058,3.7,5 +37559,1,0.023314,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.746,1.769,0,0.559526,3.7,5 +34586,1,0.299714,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,0.695,0.994,0,7.193127,4.5,4.5 +37579,1,0.193126,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,1.176,1.369,0,4.635033,4.5,4.5 +37581,1,0.614936,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,1.385,1.999,0,14.758452,4.5,4.5 +37578,1,0.181814,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,0.994,1.176,0,4.363536,4.5,4.5 +37564,1,0.673308,3,0,0,1,2,,4,3,E M 59,,648906,25.079,25.752,0,,0.8,7.5 +34591,1,0.446899,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,1.999,2.446,0,10.725566,4.5,4.5 +34592,-1,0.103148,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,0,0.103,0,2.475561,4.5,4.5 +34593,-1,0.431176,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,0.103,0.534,0,10.348232,4.5,4.5 +34594,0,0.209939,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.038525,0.15,4 +37576,-1,0.155135,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,1.003,1.158,0,3.723229,4.5,4.5 +34596,-1,0.160137,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,0.534,0.694,0,3.84329,4.5,4.5 +34597,-1,0.308674,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,0.694,1.003,0,7.408168,4.5,4.5 +34598,0,0.597844,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,14.348263,0.15,4 +34599,0,0.126908,1,1,0,2,3,,4,3,Adams,Rd,4415861,8.464,8.591,0,3.0458,3.7,5 +34601,-1,0.015543,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,1.372,1.388,0,0.373028,4.5,4.5 +37577,-1,0.214435,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,1.158,1.372,0,5.146436,4.5,4.5 +34603,-1,0.189566,0,2,0,2,3,DIV,4,3,Adams,Rd,4462960,0.015,0.205,0,4.549588,3.7,5 +37572,-1,0.760487,0,3,0,1,2,,4,3,W M 59,,677208,3.572,4.332,0,,0.8,7.5 +34605,1,0.185462,2,0,0,2,3,DIV,4,3,Adams,Rd,4415861,8.279,8.464,0,4.451077,3.7,5 +34606,-1,0.611972,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,1.388,2,0,14.687327,4.5,4.5 +34607,-1,0.443789,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4462959,2,2.443,0,10.650933,4.5,4.5 +34608,0,0.33924,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.141767,0.15,4 +37584,0,0.300019,2,2,1,2,3,,4,3,Adams,Rd,4415861,7.066,7.366,0,7.200466,3.7,5 +37585,1,0.502123,2,0,0,2,3,DIV,4,3,Adams,Rd,4415861,7.366,7.868,0,12.050956,3.7,5 +37608,1,0.06521,1,0,0,1,2,RON,4,3,Adams/E M 59,RAMP,4462969,0.015,0.08,0,,1.09,4 +37589,1,0.310481,2,0,0,2,3,DIV,4,3,Adams,Rd,4415861,7.868,8.179,0,7.451539,3.7,5 +37609,1,0.122751,1,0,0,1,2,RON,4,3,Adams/E M 59,RAMP,4462966,0,0.123,0,,1.09,4 +37569,1,0.342994,3,0,0,1,2,,4,3,E M 59,,648906,25.752,26.095,0,,0.8,7.5 +37580,1,0.015426,2,0,0,2,4,DIV,4,3,Hamlin,Rd,626003,1.369,1.385,0,0.37023,4.5,4.5 +37618,0,0.205962,2,2,1,2,4,,4,3,Old Wixom,Rd,639101,4.173,4.379,0,4.943092,4.5,4.5 +37582,0,0.381571,2,2,1,2,3,,4,3,Adams,Rd,4415861,6.685,7.066,0,9.157713,3.7,5 +34618,1,0.869259,3,0,0,1,2,,4,3,E M 59,,648906,26.095,26.964,0,,0.8,7.5 +34619,-1,0.861417,0,3,0,1,2,,4,3,W M 59,,677208,4.665,5.526,0,,0.8,7.5 +37672,1,0.021906,1,0,0,2,4,,4,3,Cooley Lake,Rd,4416312,0.056,0.078,0,0.525738,4.5,4.5 +37671,1,0.050664,1,0,0,2,4,,4,3,Bogie Lake,Rd,630101,0.04,0.09,0,1.215946,4.5,4.5 +37670,1,0.056314,2,0,0,2,4,,4,3,Bogie Lake,Rd,4416312,0,0.056,0,1.351529,4.5,4.5 +37665,1,0.203158,1,0,0,1,1,ROF,4,3,E I 696/American,RAMP,4415716,0,0.203,0,,2.24,5 +37664,1,0.195881,1,0,0,1,1,RON,4,3,Franklin/W I 696,RAMP,4415717,0,0.196,0,,1.09,4 +37669,1,0.038292,2,0,0,2,4,,4,3,Bogie Lake,Rd,630007,1,1.039,0,0.919009,4.5,4.5 +37660,0,0.185047,2,2,1,2,4,,4,3,Franklin,Rd,638109,0.556,0.741,0,4.441135,4.5,4.5 +37659,0,0.04554,2,2,1,2,4,,4,3,Franklin,Rd,638109,0.51,0.556,0,1.092958,4.5,4.5 +37657,0,0.072039,2,2,1,2,9,,4,3,Franklin,Rd,4463267,0.133,0.205,0,1.728946,6.55,4.5 +37658,0,0.273275,2,2,1,2,4,,4,3,Franklin,Rd,638109,0.237,0.51,0,6.558595,4.5,4.5 +37655,0,0.024588,2,2,1,2,9,,4,3,Franklin,Rd,4463267,0.108,0.133,0,0.590105,6.55,4.5 +37654,0,0.1083,2,2,1,2,9,,4,3,Franklin,Rd,4463267,0,0.108,0,2.599212,6.55,4.5 +37652,0,0.237016,1,1,1,2,4,,4,3,Franklin,Rd,638109,0,0.237,0,5.688376,4.5,4.5 +37653,0,0.441103,2,2,1,2,3,,4,3,12 Mile,Rd,4462980,10.821,11.261,0,10.586469,3.7,5 +37644,-1,0.50337,0,4,0,1,1,,4,3,W I 696,,710702,7.49,7.993,0,,0.8,7.5 +37643,1,0.399402,4,0,0,1,1,,4,3,E I 696,,710701,7.364,7.763,0,,0.8,7.5 +37642,-1,0.023335,0,1,0,2,4,,5,3,Baldwin,Rd,4415709,0,0.023,0,0.560043,3,4 +37641,-1,0.024518,0,1,0,2,4,,5,3,Coats,Rd,4415708,0,0.025,0,0.588422,3,4 +37640,1,0.025037,2,0,0,2,4,,5,3,Coats,Rd,4410047,0,0.025,0,0.600885,3,4 +37639,1,0.023808,2,0,0,2,4,,5,3,Baldwin,Rd,4415710,0,0.024,0,0.571401,3,4 +37638,1,0.039485,1,0,0,2,4,,5,3,Indianwood,Rd,655208,0,0.039,0,0.94763,3,4 +37637,-1,0.038087,0,1,0,2,4,,5,3,Indianwood,Rd,4411504,0,0.038,0,0.9141,3,4 +37636,1,0.041608,1,0,0,2,4,,5,3,Coats,Rd,4410047,0.025,0.067,0,0.998598,3,4 +37619,0,0.210953,2,2,1,2,3,,4,3,Wixom,Rd,4414552,0,0.211,0,5.062877,3.7,5 +37615,1,0.023112,1,0,0,2,4,RSF,4,3,W M 59/Hamlin,RAMP,4462968,0.281,0.304,0,0.554689,4.5,4.5 +37604,-1,0.492531,0,2,0,2,3,DIV,4,3,Adams,Rd,4415855,0,0.492,0,11.820747,3.7,5 +37617,1,0.319693,1,0,0,1,2,RON,4,3,Adams/W M 59,RAMP,4462967,0.016,0.336,0,,1.09,4 +37616,1,0.01601,1,0,0,2,3,RSF,4,3,Adams/W M 59,RAMP,4462967,0,0.016,0,0.384228,3.7,5 +37601,-1,0.006768,0,2,0,2,3,DIV,4,3,Adams,Rd,4415855,0.492,0.499,0,0.162429,3.7,5 +37600,-1,0.11972,0,2,0,2,3,DIV,4,3,Adams,Rd,4415855,0.499,0.619,0,2.873283,3.7,5 +37715,-1,0.040964,0,3,0,2,3,,4,3,Maple,Rd,4415862,0.071,0.112,0,0.983137,3.7,5 +37705,0,0.296304,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,4.321,4.618,0,7.111289,3.7,5 +37704,0,0.096402,1,1,0,2,3,,4,3,Williams Lake,Rd,4463020,4.225,4.321,0,2.31364,3.7,5 +37703,-1,0.110667,0,2,0,2,3,DIV,4,3,Williams Lake,Rd,4463013,0.764,0.875,0,2.656019,3.7,5 +37702,1,0.271222,2,0,0,2,3,DIV,4,3,Williams Lake,Rd,4463020,3.954,4.225,0,6.509337,3.7,5 +37707,0,0.323903,1,1,1,2,3,,4,3,Maple,Rd,683906,4.324,4.647,0,7.773678,3.7,5 +37711,-1,0.040663,0,2,0,2,3,,4,3,Drake,Rd,4415863,0.065,0.106,0,0.97592,3.7,5 +37699,-1,0.179059,0,2,0,2,3,DIV,4,3,Williams Lake,Rd,4463013,0.585,0.764,0,4.297416,3.7,5 +37708,0,0.497276,1,1,0,2,4,,4,3,Drake,Rd,633804,6.269,6.766,0,11.934623,4.5,4.5 +37712,1,0.041981,2,0,0,2,3,,4,3,Drake,Rd,633804,6.227,6.269,0,1.007544,3.7,5 +37696,1,0.020969,1,0,0,2,3,,4,3,Williams Lake,Rd,4463017,0,0.021,0,0.50325,3.7,5 +37695,1,0.074618,2,0,0,2,3,DIV,4,3,Williams Lake,Rd,4463020,3.879,3.954,0,1.790823,3.7,5 +37685,1,0.049285,1,0,0,2,5,,4,3,Oxbow Lake,Rd,630010,0.01,0.06,0,1.182833,5.8,4.5 +37684,-1,0.041365,0,1,0,2,5,,4,3,Oxbow Lake,Rd,4415869,0.02,0.062,0,0.99276,5.8,4.5 +37683,-1,0.024882,0,1,0,2,5,,4,3,Cooley Lake,Rd,4415868,0.088,0.113,0,0.597169,5.8,4.5 +37682,1,0.022293,1,0,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.156,0.178,0,0.535027,5.8,4.5 +37681,1,0.021151,1,0,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.135,0.156,0,0.507624,5.8,4.5 +37680,1,0.010434,1,0,0,2,5,,4,3,Oxbow Lake,Rd,630010,0,0.01,0,0.250417,5.8,4.5 +37679,-1,0.025516,0,1,0,2,5,,4,3,Cooley Lake,Rd,4415868,0.063,0.088,0,0.612378,5.8,4.5 +37678,-1,0.020385,0,1,0,2,5,,4,3,Oxbow Lake,Rd,4415869,0,0.02,0,0.489229,5.8,4.5 +37677,1,0.056274,1,0,0,2,5,,4,3,Cooley Lake,Rd,4416312,0.078,0.135,0,1.350573,5.8,4.5 +37676,-1,0.062535,0,1,0,2,5,,4,3,Cooley Lake,Rd,4415868,0,0.063,0,1.50085,5.8,4.5 +37675,1,0.018988,1,0,0,2,4,,4,3,Bogie Lake,Rd,630101,0.021,0.04,0,0.455712,4.5,4.5 +37674,1,0.020596,1,0,0,2,4,,4,3,Bogie Lake,Rd,630101,0,0.021,0,0.494312,4.5,4.5 +37673,1,0.016248,1,0,0,2,4,,4,3,Cooley Lake,Rd,4415867,0,0.016,0,0.389947,4.5,4.5 +37722,0,0.340889,1,1,0,2,4,,4,3,Farmington,Rd,634005,5.463,5.804,0,8.181339,4.5,4.5 +37727,-1,0.035209,0,2,0,2,3,,4,3,Maple,Rd,4415865,0.05,0.085,0,0.845006,3.7,5 +37720,-1,0.03143,0,2,0,2,3,,4,3,Maple,Rd,4415862,0.04,0.071,0,0.754315,3.7,5 +37719,1,0.029191,2,0,0,2,3,,4,3,Drake,Rd,633804,6.198,6.227,0,0.700584,3.7,5 +37718,1,0.033271,2,0,0,2,3,,4,3,Maple,Rd,683906,4.249,4.282,0,0.798507,3.7,5 +37717,-1,0.028199,0,2,0,2,3,,4,3,Drake,Rd,4415863,0.037,0.065,0,0.676771,3.7,5 +37713,1,0.03667,3,0,0,2,3,,4,3,Maple,Rd,683906,4.212,4.249,0,0.880086,3.7,5 +37714,-1,0.039803,0,2,0,2,3,,4,3,Maple,Rd,4415862,0,0.04,0,0.955274,3.7,5 +37744,-1,0.049973,0,2,0,2,3,,4,3,Farmington,Rd,4416317,0.074,0.124,0,1.199349,3.7,5 +37743,1,0.052991,2,0,0,2,3,,4,3,Farmington,Rd,634005,4.396,4.449,0,1.271774,3.7,5 +37739,1,0.0441,2,0,0,2,3,,4,3,Farmington,Rd,634005,4.321,4.365,0,1.058388,3.7,5 +37738,0,0.343512,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,1.22,1.564,0,8.244283,3.7,5 +37737,0,0.270704,1,1,0,2,4,,4,3,Farmington,Rd,634005,4.449,4.72,0,6.496899,4.5,4.5 +37740,-1,0.043037,0,2,0,2,3,,4,3,Farmington,Rd,4416317,0,0.043,0,1.032878,3.7,5 +37735,1,0.052806,2,0,0,2,3,,4,3,Farmington,Rd,634005,5.41,5.463,0,1.267337,3.7,5 +37734,-1,0.049979,0,3,0,2,3,,4,3,Farmington,Rd,4415864,0.077,0.127,0,1.199485,3.7,5 +37733,1,0.046729,2,0,0,2,3,,4,3,Farmington,Rd,634005,5.335,5.382,0,1.121489,3.7,5 +37732,-1,0.04518,0,2,0,2,3,,4,3,Farmington,Rd,4415864,0,0.045,0,1.084314,3.7,5 +37731,-1,0.032243,0,2,0,2,3,,4,3,Farmington,Rd,4415864,0.045,0.077,0,0.773833,3.7,5 +37730,1,0.028322,2,0,0,2,3,,4,3,Farmington,Rd,634005,5.382,5.41,0,0.679729,3.7,5 +37729,-1,0.068439,0,3,0,2,3,,4,3,Maple,Rd,4415865,0.085,0.153,0,1.642528,3.7,5 +37728,1,0.067359,2,0,0,2,3,,4,3,Maple,Rd,683906,5.3,5.367,0,1.616605,3.7,5 +37724,1,0.050832,3,0,0,2,3,,4,3,Maple,Rd,683906,5.213,5.264,0,1.219968,3.7,5 +37723,0,0.233057,1,1,1,2,3,,4,3,Maple,Rd,683906,5.367,5.6,0,5.593357,3.7,5 +40136,-1,0.017121,0,1,0,2,4,,4,3,Pontiac,Trl,4416654,0.026,0.043,0,0.410895,4.5,4.5 +40137,1,0.017301,1,0,0,2,4,,4,3,Lyon Center,Dr,4414237,0,0.017,0,0.415225,4.5,4.5 +40138,-1,0.019341,0,1,0,2,4,,4,3,Pontiac,Trl,4416654,0.043,0.063,0,0.464187,4.5,4.5 +40139,1,0.020965,1,0,0,2,4,,4,3,Pontiac,Trl,656507,6.784,6.805,0,0.503163,4.5,4.5 +40140,1,0.024594,1,0,0,2,4,,4,3,Lyon Center,Dr,1825504,0.343,0.368,0,0.59025,4.5,4.5 +40145,1,0.048866,2,0,0,2,4,,4,3,Grand River,Ave,4104142,3.511,3.56,0,1.172783,4.5,4.5 +37189,0,0.064512,2,2,1,2,3,,4,3,Beck,Rd,656605,3.889,3.954,0,1.548279,3.7,5 +40142,-1,0.026073,0,1,0,2,4,,4,3,Lyon Center,Dr,4416653,0,0.026,0,0.625757,4.5,4.5 +40141,1,0.016423,1,0,0,2,4,,4,3,Pontiac,Trl,656507,6.768,6.784,0,0.394144,4.5,4.5 +40144,0,0.274299,1,1,1,2,4,,4,3,Grand River,Ave,4104142,3.61,3.885,0,6.583166,4.5,4.5 +39848,0,0.377689,1,1,0,2,4,,4,3,Welch,Rd,4403557,1.038,1.415,0,9.064529,4.5,4.5 +37934,1,0.020794,2,0,0,2,4,RSF,4,3,W M 59/Squirrel,RAMP,4462970,0.309,0.329,0,0.49905,4.5,4.5 +37935,1,0.349813,1,0,0,1,2,RON,4,3,Squirrel/W M 59,RAMP,4462971,0,0.35,0,,1.09,4 +37944,1,0.093677,3,0,0,2,3,DIV,4,2,Merriman,Rd,4700021,1.781,1.874,0,2.248249,3.7,5 +37925,1,0.045178,1,0,0,2,5,,1,1,Fisher Crossover,,1803905,0,0.045,0,1.084275,8.5,4.5 +37927,1,0.737758,1,0,0,1,1,ROF,5,6,S I 75/Summit,RAMP,4302985,0,0.738,0,,2.24,5 +37923,1,0.014861,1,0,0,1,1,ROF,1,1,S I 75/Grand River,RAMP,1595307,0.108,0.122,0,,3.07,5 +37922,1,0.111344,3,0,0,2,5,,1,1,N I 75 Service Drive,,4708766,0.14,0.251,0,2.672251,8.5,4.5 +37921,1,0.044599,1,0,0,2,5,,1,1,2nd/Fisher Cutoff,,4707199,0,0.045,0,1.070388,8.5,4.5 +37920,1,0.007363,3,0,0,2,5,,1,1,2nd,St,4718974,0.109,0.116,0,0.176717,8.5,4.5 +37919,-1,0.043462,0,3,0,2,5,,1,1,S I 75 Service Drive,,4707198,0.29,0.333,0,1.043082,8.5,4.5 +37918,0,0.02024,1,1,0,2,5,,3,2,Howe,Rd,4712012,1.017,1.038,0,0.485771,8,4.5 +37917,-1,0.498443,0,4,0,2,3,DIV,3,2,Michigan,Ave,4705565,9.352,9.851,0,11.962634,5,5 +37916,1,0.017662,2,0,0,2,3,RSF,4,2,Sheldon/M 14,RAMP,4712090,0,0.018,0,0.423882,5,5 +37915,1,0.017102,2,0,0,2,3,RSF,4,2,W M 14/Sheldon,RAMP,1778207,0.426,0.443,0,0.410437,5,5 +37914,-1,0.08234,0,3,0,2,3,DIV,4,2,Sheldon,Rd,4704692,0.316,0.398,0,1.976168,3.7,5 +37913,-1,0.044346,0,3,0,2,3,DIV,4,2,Sheldon,Rd,4704692,0.271,0.316,0,1.064315,3.7,5 +37190,0,0.058476,2,2,1,2,3,,4,3,Beck,Rd,656605,3.954,4.012,0,1.403435,3.7,5 +37912,0,0.021532,1,1,0,2,3,,4,2,E Michigan/Beck,TURN,4710680,0,0.022,0,0.516772,3.7,5 +37188,0,0.046082,2,2,1,2,3,,4,3,Beck,Rd,656605,3.843,3.889,0,1.105964,3.7,5 +37911,1,0.838442,2,0,0,2,3,DIV,4,2,Michigan,Ave,1600206,2.41,3.248,0,20.122609,3.7,5 +37757,1,0.280666,2,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.611,1.892,0,6.735994,3.7,5 +39854,-1,0.115467,0,2,0,2,3,DIV,4,3,West Maple,Rd,4416612,0.775,0.89,0,2.771213,3.7,5 +39856,-1,0.217876,0,2,0,2,4,DV2,1,1,3rd,St,4718979,0,0.218,0,5.229014,8,4.5 +37754,1,0.150952,3,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.37,1.521,0,3.622838,3.7,5 +39851,1,0.025025,2,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.521,1.546,0,0.600588,3.7,5 +37752,1,0.209454,2,0,0,2,3,DIV,4,3,West Maple,Rd,683906,1.001,1.211,0,5.026889,3.7,5 +37750,-1,0.070456,0,3,0,2,3,,4,3,14 Mile,Rd,4416316,0,0.07,0,1.69095,3.7,5 +37749,1,0.068189,3,0,0,2,3,,4,3,14 Mile,Rd,5500000,1.069,1.137,0,1.63653,3.7,5 +37748,-1,0.035263,0,3,0,2,3,,4,3,14 Mile,Rd,4416316,0.07,0.106,0,0.846308,3.7,5 +37747,1,0.034024,3,0,0,2,3,,4,3,14 Mile,Rd,5500000,1.137,1.171,0,0.816571,3.7,5 +37746,-1,0.047415,0,3,0,2,3,,4,3,14 Mile,Rd,4416316,0.106,0.153,0,1.137964,3.7,5 +37745,1,0.04948,3,0,0,2,3,,4,3,14 Mile,Rd,5500000,1.171,1.22,0,1.187528,3.7,5 +40135,1,0.025373,1,0,0,2,4,,4,3,Lyon Center,Dr,4414237,0.017,0.043,0,0.608945,4.5,4.5 +40134,-1,0.024829,0,1,0,2,4,,4,3,Lyon Center,Dr,4416653,0.044,0.069,0,0.595906,4.5,4.5 +40133,-1,0.017609,0,1,0,2,4,,4,3,Lyon Center,Dr,4416653,0.026,0.044,0,0.422618,4.5,4.5 +40132,-1,0.026245,0,1,0,2,4,,4,3,Pontiac,Trl,4416654,0,0.026,0,0.629873,4.5,4.5 +40131,1,0.021386,1,0,0,2,4,,4,3,Pontiac,Trl,656507,6.746,6.768,0,0.513267,4.5,4.5 +40130,0,0.297307,1,1,0,2,4,,4,3,Pontiac,Trl,656507,6.805,7.102,0,7.13537,4.5,4.5 +37492,-1,0.051217,0,2,0,2,4,,4,8,Lee,Rd,4104575,0.132,0.183,0,1.229208,4.5,4.5 +37491,1,0.051392,2,0,0,2,4,,4,8,Lee,Rd,931610,0.271,0.322,0,1.233402,4.5,4.5 +37490,1,0.207799,1,0,0,1,2,ROF,4,8,S US 23/Lee,RAMP,932009,0,0.208,0,,2.24,5 +37489,-1,0.015463,0,2,0,2,4,,4,8,Lee,Rd,4104575,0.116,0.132,0,0.371101,4.5,4.5 +37488,1,0.025451,1,0,0,2,4,,4,8,EB Lee/WB Lee,TURN,4104577,0,0.026,0,0.610815,4.5,4.5 +39320,0,0.557463,1,1,0,2,5,,4,2,Denton,Rd,1599103,4.077,4.634,0,13.379106,5.8,4.5 +40154,-1,0.029251,0,2,0,2,4,,4,3,Grand River,Ave,4416578,0.071,0.101,0,0.702024,4.5,4.5 +40129,-1,0.060784,0,1,0,2,5,,3,2,Levan,Rd,4719309,0,0.061,0,1.458813,8,4.5 +40174,0,0.211409,1,1,1,2,5,,4,3,Lyon Center,Dr,4414237,0.043,0.254,0,5.07381,5.8,4.5 +40181,-1,0.017362,0,1,0,2,5,,5,8,Hartland Square,Dr,4105286,0,0.017,0,0.416684,3.7,5 +40177,0,0.827456,1,1,1,2,5,,4,3,Lyon Center,Dr,4414238,0,0.827,0,19.858947,5.8,4.5 +40180,1,0.026563,1,0,0,2,5,,5,8,Hartland,Rd,4105285,0.046,0.072,0,0.6375,3.7,5 +40179,-1,0.028236,0,1,0,2,5,,5,8,Hartland,Rd,4105279,0.4,0.428,0,0.677654,3.7,5 +40182,1,0.019698,1,0,0,2,5,,5,8,Hartland,Rd,4105285,0.026,0.046,0,0.472747,3.7,5 +40955,1,0.057515,1,0,0,2,4,,4,3,Napier,Rd,0,0,0,0,1.380367,4.5,4.5 +40147,-1,0.020297,0,2,0,2,4,,4,3,New Hudson,Dr,4416579,0.029,0.049,0,0.487126,4.5,4.5 +40148,-1,0.019341,0,2,0,2,4,,4,3,Grand River,Ave,4416578,0.052,0.071,0,0.46419,4.5,4.5 +40149,1,0.018899,2,0,0,2,4,,4,3,Grand River,Ave,4104142,3.56,3.578,0,0.453571,4.5,4.5 +40150,-1,0.029192,0,2,0,2,4,,4,3,Lyon Center,Dr,4416579,0,0.029,0,0.700608,4.5,4.5 +34767,0,0.237673,1,1,0,2,4,,4,5,Dixboro,Rd,4605100,0.515,0.753,0,5.704153,4.5,4.5 +40151,1,0.023219,2,0,0,2,4,,4,3,Lyon Center,Dr,4414237,0.254,0.277,0,0.557264,4.5,4.5 +40207,1,0.013138,2,0,0,2,5,,3,2,Wren,St,4719115,0,0.013,0,0.315319,8,4.5 +40204,-1,0.013234,0,2,0,2,4,DV2,3,2,Miller,Rd,4719114,0.864,0.877,0,0.317606,6,4.5 +40208,-1,0.01301,0,2,0,2,5,,3,2,Eagle,Pass,4719116,0,0.013,0,0.312232,8,4.5 +40206,-1,0.337331,0,2,0,2,4,DV2,3,2,Miller,Rd,4719114,0.877,1.214,0,8.095941,6,4.5 +40209,0,0.007871,2,2,0,2,4,,3,2,Wyoming,Ave,1653404,0.923,0.931,0,0.188897,6,4.5 +40210,1,0.126357,2,0,0,2,4,,3,2,Wyoming,Ave,1653404,0.797,0.923,0,3.032574,6,4.5 +40211,-1,0.126503,0,2,0,2,4,,3,2,Wyoming,Ave,4719445,0,0.127,0,3.036064,6,4.5 +40240,0,0.012573,1,1,0,2,5,,3,3,Lincoln,Dr,684507,1.49,1.503,0,0.301758,8,4.5 +40233,-1,0.089711,0,2,0,2,3,DIV,3,1,Davison,St,4702011,2.816,2.906,0,2.153075,5,5 +40218,-1,0.277398,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0.713,0.99,0,6.657551,5,5 +40219,-1,0.018022,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0.695,0.713,0,0.432535,5,5 +40220,-1,0.488672,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0.207,0.695,0,11.728116,5,5 +40224,1,0.02048,1,0,0,2,9,,2,1,Temple,St,5496270,0,0.021,0,0.491529,8.5,4.5 +40222,-1,0.024318,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0.182,0.207,0,0.583624,5,5 +40223,-1,0.182264,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0,0.182,0,4.374332,5,5 +40236,1,0.038453,3,0,0,2,3,DIV,3,1,Davison,St,4702009,5.374,5.412,0,0.922861,5,5 +40243,0,0.010833,2,2,1,2,4,,3,3,10 Mile,Rd,633409,8.841,8.852,0,0.259981,6,4.5 +40238,0,0.07824,3,2,1,2,3,,3,1,Davison,St,4702009,5.412,5.491,0,1.877752,5,5 +40244,-1,0.249843,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416853,0,0.25,0,5.996237,5,5 +40245,-1,0.200199,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416853,0.25,0.45,0,4.80477,5,5 +40246,-1,0.046343,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416853,0.45,0.496,0,1.112239,5,5 +40247,-1,0.254091,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416853,0.496,0.75,0,6.098177,5,5 +40248,-1,0.201963,0,2,0,2,3,DIV,3,3,Greenfield,Rd,4416853,0.75,0.952,0,4.84711,5,5 +40249,-1,0.217165,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,0.991,1.208,0,5.211963,3.7,5 +40254,-1,0.011117,0,3,0,2,3,DIV,4,3,Crooks,Rd,4408239,0.98,0.991,0,0.26681,3.7,5 +40188,1,0.740492,2,0,0,2,3,DIV,4,2,Fort,St,1592105,3.968,4.708,0,17.771805,3.7,5 +40189,1,0.108323,2,0,0,2,4,DV2,4,2,Van Horn,Rd,1674101,7.532,7.641,0,2.599751,4.5,4.5 +40190,-1,0.112234,0,2,0,2,4,DV2,4,2,Van Horn,Rd,4718965,0,0.112,0,2.693625,4.5,4.5 +40191,-1,0.042985,0,2,0,2,4,DV2,4,2,Van Horn,Rd,4718965,0.112,0.155,0,1.031629,4.5,4.5 +40183,-1,0.021149,0,1,0,2,5,,5,8,Hartland,Rd,4105279,0.379,0.4,0,0.507567,3.7,5 +40184,1,0.01621,1,0,0,2,5,,5,8,Hartland Square,Dr,4105287,0,0.016,0,0.389033,3.7,5 +40185,1,0.02605,1,0,0,2,5,,5,8,Hartland,Rd,4105285,0,0.026,0,0.625208,3.7,5 +40186,-1,0.023113,0,1,0,2,5,,5,8,Hartland,Rd,4105279,0.356,0.379,0,0.554721,3.7,5 +40155,1,0.042873,2,0,0,2,4,,4,3,Lyon Center,Dr,4414237,0.295,0.338,0,1.028956,4.5,4.5 +40156,-1,0.03878,0,2,0,2,4,,4,3,New Hudson,Dr,4416579,0.049,0.088,0,0.930719,4.5,4.5 +40159,1,0.042921,2,0,0,2,4,,4,3,Grand River,Ave,4104142,4.302,4.345,0,1.0301,4.5,4.5 +40158,0,0.551507,1,1,0,2,4,,4,3,Grand River,Ave,4104142,4.405,4.956,0,13.236166,4.5,4.5 +40160,-1,0.045068,0,2,0,2,4,,4,3,Grand River,Ave,4416633,0,0.045,0,1.081643,4.5,4.5 +40161,1,0.021173,2,0,0,2,4,,4,3,Grand River,Ave,4104142,4.345,4.366,0,0.508151,4.5,4.5 +40162,-1,0.021365,0,2,0,2,4,,4,3,Grand River,Ave,4416633,0.045,0.066,0,0.512749,4.5,4.5 +40163,1,0.038322,2,0,0,2,4,,4,3,Grand River,Ave,4104142,4.366,4.405,0,0.919716,4.5,4.5 +40164,-1,0.033517,0,2,0,2,4,,4,3,Grand River,Ave,4416633,0.066,0.1,0,0.804411,4.5,4.5 +40165,-1,0.016952,0,2,0,2,4,,4,3,Lyon Center,Dr,4416634,0,0.017,0,0.406836,4.5,4.5 +40166,-1,0.016773,0,2,0,2,4,,4,3,Lyon Center,Dr,4414238,0.862,0.879,0,0.402559,4.5,4.5 +40167,-1,0.027083,0,2,0,2,4,,4,3,Lyon Center,Dr,4416634,0.017,0.044,0,0.649997,4.5,4.5 +40168,-1,0.034781,0,2,0,2,4,,4,3,Lyon Center,Dr,4414238,0.827,0.862,0,0.834742,4.5,4.5 +40169,0,0.155629,2,2,0,2,3,,4,3,Milford,Rd,656804,3.688,3.844,0,3.735088,3.7,5 +40170,0,0.293597,1,1,0,2,3,,5,3,Milford,Rd,656804,3.154,3.448,0,7.046327,1.7,4 +40175,0,0.311948,1,1,1,2,5,,4,3,Lyon Center,Dr,4414237,0.338,0.65,0,7.486762,5.8,4.5 +40172,0,0.343112,1,1,1,2,5,,5,3,Lyon Center,Dr,1825504,0,0.343,0,8.234686,3.7,5 +34821,0,0.09583,1,1,0,2,7,,3,3,Hilton/E M 102,,1850901,0.075,0.171,0,2.299913,7,4.5 +34822,0,0.421652,1,1,0,2,4,,3,3,Lahser,Rd,685510,0.589,1.011,0,10.119645,6,4.5 +40440,0,0.06238,2,2,1,2,4,,3,3,Lahser,Rd,685510,0.023,0.085,0,1.497116,6,4.5 +40443,-1,0.237759,0,2,0,2,4,DIV,3,3,Lahser,Rd,4463310,0.086,0.323,0,5.706209,6,4.5 +40441,1,0.084664,2,0,0,2,4,DIV,3,3,Lahser,Rd,685510,0.085,0.17,0,2.031934,6,4.5 +40447,1,0.406716,2,0,0,2,4,DIV,3,3,Civic Center,Dr,684205,0.775,1.182,0,9.761179,6,4.5 +40450,-1,0.462872,0,2,0,2,4,DIV,3,3,Civic Center,Dr,4463315,0,0.463,0,11.108917,6,4.5 +40448,-1,0.407744,0,2,0,2,4,DIV,3,3,Civic Center,Dr,4463315,0.463,0.87,0,9.785859,6,4.5 +40953,-1,0.091395,0,1,0,2,4,,5,3,Napier,Rd,0,0,0,0,2.193472,3,4 +40950,1,0.095658,2,0,0,2,3,,4,3,10 Mile,Rd,0,0,0,0,2.295784,3.7,5 +40951,-1,0.097477,0,2,0,2,3,,4,3,10 Mile,Rd,0,0,0,0,2.339445,3.7,5 +40945,1,0.031943,2,0,0,2,3,,4,3,10 Mile,Rd,0,0,0,0,0.766636,3.7,5 +40942,0,0.881169,1,1,0,2,3,,4,3,10 Mile,Rd,0,0,0,0,21.148045,3.7,5 +40943,0,0.393881,1,1,0,2,4,,5,3,Napier,Rd,0,0,0,0,9.45314,3,4 +40944,-1,0.031968,0,2,0,2,3,,4,3,10 Mile,Rd,0,0,0,0,0.767239,3.7,5 +40948,1,0.094442,2,0,0,2,3,,5,3,10 Mile,Rd,0,0,0,0,2.266598,1.7,4 +40949,-1,0.093154,0,2,0,2,3,,5,3,10 Mile,Rd,0,0,0,0,2.235707,1.7,4 +40268,0,0.113692,2,2,0,2,4,,4,3,Coolidge,Rd,693006,5.06,5.173,0,2.72861,4.5,4.5 +40269,0,0.007757,1,1,0,2,4,,4,3,Wattles,Rd,618802,1.89,1.897,0,0.186164,4.5,4.5 +40270,-1,0.014952,0,3,0,2,3,DIV,3,3,Big Beaver,Rd,4408243,0.473,0.488,0,0.358848,5,5 +40271,1,0.014292,3,0,0,2,3,DIV,3,3,Big Beaver,Rd,607204,0.994,1.008,0,0.342997,5,5 +40272,0,0.008732,2,2,1,2,3,,3,3,Maple,Rd,683906,15.218,15.227,0,0.209565,5,5 +40273,-1,0.735951,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4463391,0.523,1.259,0,17.662821,6,4.5 +40274,-1,0.019147,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4463391,1.464,1.483,0,0.459527,6,4.5 +40275,-1,0.214209,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4463391,1.483,1.698,0,5.141008,6,4.5 +40283,0,0.008944,2,2,1,2,3,,3,4,12 Mile,Rd,803401,3.46,3.469,0,0.21466,5,5 +40284,0,0.011029,2,2,1,2,4,,3,4,13 Mile,Rd,803410,0.545,0.556,0,0.264706,6,4.5 +40285,-1,0.012313,0,2,0,2,5,DV2,3,4,Common,Rd,4211479,0.351,0.363,0,0.295522,8,4.5 +40286,1,0.012314,2,0,0,2,5,DV2,3,4,Common,Rd,4211478,0.35,0.363,0,0.295528,8,4.5 +40263,0,0.110846,2,2,1,2,3,,3,3,13 Mile,Rd,607408,4.991,5.101,0,2.660305,5,5 +40264,0,0.012897,2,2,0,2,5,,3,3,Normandy,Rd,644402,1.014,1.027,0,0.309537,8,4.5 +40265,-1,0.103628,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4416865,1.052,1.156,0,2.48706,6,4.5 +40266,-1,0.49576,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4416865,1.156,1.651,0,11.898251,6,4.5 +40267,-1,0.510039,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4416865,1.651,2.161,0,12.240944,6,4.5 +40256,1,0.015658,2,0,0,2,5,,4,3,Corporate,Dr,1848503,0.335,0.35,0,0.375797,5.8,4.5 +40258,-1,0.495933,0,2,0,2,4,DV2,3,3,Coolidge,Hwy,4416865,0,0.496,0,11.902399,6,4.5 +40259,-1,0.540045,0,2,0,2,4,DV2,3,3,Coolidge,Hwy,4416865,0.496,1.036,0,12.961086,6,4.5 +40260,1,0.012643,4,0,0,2,3,DIV,3,3,Woodward,Ave,614101,7.295,7.308,0,0.303427,5,5 +40261,-1,0.011763,0,4,0,2,3,DIV,3,3,Woodward,Ave,616808,7.286,7.297,0,0.282305,5,5 +40262,-1,0.016511,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4416865,1.036,1.052,0,0.396257,6,4.5 +40192,-1,0.75576,0,2,0,2,4,DV2,4,2,Van Horn,Rd,4718965,0.155,0.911,0,18.138242,4.5,4.5 +38453,0,0.556509,1,1,0,2,5,,4,6,Monroe,Rd,1232702,0.5,1.056,0,13.356206,5.8,4.5 +34864,0,0.907195,1,1,0,2,4,,4,8,Whitmore Lake,Rd,932204,5.879,6.786,0,21.772686,4.5,4.5 +34865,0,0.392252,2,2,1,2,3,,4,8,Grand River,Ave,932910,23.766,24.158,0,9.414053,3.7,5 +34866,0,0.08178,1,1,0,2,4,,3,8,Old US 23,Hwy,932204,6.786,6.868,0,1.962713,6,4.5 +40203,-1,0.236505,0,2,0,2,4,DV2,3,2,Miller,Rd,4719114,0.628,0.864,0,5.676116,6,4.5 +40201,-1,0.627713,0,2,0,2,4,DV2,3,2,Miller,Rd,4719114,0,0.628,0,15.065121,6,4.5 +40054,-1,0.007188,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,0.29,0.297,0,0.172501,3.7,5 +40954,-1,0.058444,0,1,0,2,4,,4,3,Napier,Rd,0,0,0,0,1.402664,4.5,4.5 +37239,-1,0.027508,0,1,0,2,4,,4,4,25 Mile,Rd,4211018,0,0.028,0,0.66018,4.5,4.5 +37243,1,0.019287,1,0,0,2,4,,4,4,Hayes,Rd,4208921,9.068,9.088,0,0.462881,4.5,4.5 +37244,1,0.030004,1,0,0,2,4,,4,4,Hayes,Rd,4208921,9.088,9.118,0,0.720103,4.5,4.5 +37238,1,0.033744,1,0,0,2,4,,4,4,25 Mile,Rd,4211019,6.055,6.088,0,0.809867,4.5,4.5 +37269,1,0.021431,1,0,0,2,3,,4,4,S M 53/26 Mile,RAMP,822003,0.327,0.349,0,0.51434,3.7,5 +37268,1,0.327626,1,0,0,1,2,ROF,4,4,S M 53/26 Mile,RAMP,822003,0,0.327,0,,2.24,5 +37271,1,0.021438,1,0,0,2,3,,4,4,E 26 Mile/W 26 Mile,TURN,4212027,0,0.021,0,0.514504,3.7,5 +40965,-1,0.072226,0,2,0,2,3,DIV,4,5,W US 12,,0,0,0,0,1.733427,3.7,5 +40966,0,0.203005,1,1,0,2,3,,4,5,Wiard,Rd,0,0,0,0,4.872129,3.7,5 +40967,0,0.278668,1,1,0,2,3,,4,5,Wiard,Rd,0,0,0,0,6.688035,3.7,5 +40968,0,0.374775,2,2,0,2,3,,4,5,Ecorse,Rd,0,0,0,0,8.994588,3.7,5 +40969,0,0.952012,2,2,0,2,3,,4,5,Ecorse,Rd,0,0,0,0,22.848295,3.7,5 +40970,-1,0.11158,0,2,0,2,3,DIV,4,5,Ecorse,Rd,0,0,0,0,2.677924,3.7,5 +40958,0,0.290429,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,6.970299,0.15,4 +40959,-1,0.166585,0,3,0,2,3,DIV,4,5,Ecorse,Rd,0,0,0,0,3.998038,3.7,5 +40960,1,0.129039,3,0,0,2,3,DIV,4,5,Ecorse,Rd,0,0,0,0,3.096937,3.7,5 +40962,1,0.204547,1,0,0,2,3,DIV,4,5,Wiard,Rd,0,0,0,0,4.909117,3.7,5 +37242,1,0.029265,1,0,0,2,4,,4,4,Hayes,Rd,4208921,9.039,9.068,0,0.70237,4.5,4.5 +37270,1,0.30644,1,0,0,1,2,RON,4,4,26 Mile/S M 53,RAMP,822002,0,0.306,0,,1.09,4 +37246,-1,0.019922,0,1,0,2,4,,4,4,Hayes,Rd,4211017,0.033,0.052,0,0.478135,4.5,4.5 +37245,-1,0.032507,0,1,0,2,4,,4,4,Hayes,Rd,4211017,0,0.033,0,0.780161,4.5,4.5 +34909,1,0.138958,1,0,0,1,1,RON,4,4,21 Mile/E I 94,RAMP,801305,0.041,0.18,0,,1.09,4 +34910,1,0.114306,1,0,0,1,1,RON,4,4,E 21 Mile/E I 94,RAMP,5492909,0,0.114,0,,1.09,4 +40972,1,0.026428,1,0,0,2,4,,4,3,11 Mile,Rd,0,0,0,0,0.634275,4.5,4.5 +40963,0,0.242616,1,1,0,2,5,,4,5,Airport,Dr,0,0,0,0,5.822784,5.8,4.5 +40964,-1,0.070757,0,2,0,2,4,DIV,4,5,Ecorse,Rd,0,0,0,0,1.698165,4.5,4.5 +40987,0,0.624654,1,1,0,2,5,,5,3,Gunn,Rd,0,0,0,0,14.991706,3.7,5 +40995,1,0.037327,1,0,0,2,4,,4,3,Adams,Rd,0,0,0,0,0.895844,4.5,4.5 +40973,1,0.024792,2,0,0,2,4,,4,3,Franklin,Rd,0,0,0,0,0.595016,4.5,4.5 +40971,-1,0.026216,0,1,0,2,4,,4,3,11 Mile,Rd,0,0,0,0,0.629192,4.5,4.5 +40985,0,0.993424,1,1,0,2,4,,4,3,Adams,Rd,0,0,0,0,23.842167,4.5,4.5 +40312,-1,0.327596,0,3,0,2,3,DIV,4,3,Rochester,Rd,4406170,3.168,3.496,0,7.862301,3.7,5 +40989,-1,0.025136,0,1,0,2,5,,4,3,Gunn,Rd,0,0,0,0,0.60326,5.8,4.5 +40990,1,0.024295,1,0,0,2,4,,4,3,Gunn,Rd,0,0,0,0,0.583083,4.5,4.5 +40993,1,0.058219,1,0,0,2,4,,4,3,Adams,Rd,0,0,0,0,1.397253,4.5,4.5 +40994,-1,0.059038,0,1,0,2,4,,4,3,Adams,Rd,0,0,0,0,1.416912,4.5,4.5 +40988,0,0.264114,1,1,0,2,4,,4,3,Adams,Rd,0,0,0,0,6.338745,4.5,4.5 +37892,0,0.326777,2,2,1,2,3,,4,6,Telegraph,Rd,4300001,17.51,17.837,0,7.842658,3.7,5 +37885,0,0.540817,1,1,0,2,7,,4,4,Garfield,Rd,798703,8.036,8.576,0,12.97962,6.55,4.5 +40314,0,0.500517,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.0124,0.15,4 +37886,0,0.447704,1,1,0,2,99,,4,4,Centroid Connector,,0,0,0,0,10.744905,0.15,4 +37889,0,0.140106,2,2,0,2,3,,3,1,Jefferson,Ave,4302169,19.275,19.415,0,3.362554,5,5 +37891,0,0.692019,2,2,0,2,5,,3,1,Springwells,Ct,4718285,0,0.692,0,16.608456,8,4.5 +37893,0,0.932095,1,1,1,2,3,,5,6,Telegraph,Rd,4300001,17.837,18.768,0,22.370288,1.7,4 +37882,0,0.471235,1,1,0,2,7,,4,4,Garfield,Rd,798703,7.564,8.036,0,11.309637,6.55,4.5 +40979,1,0.031374,1,0,0,2,4,,4,3,11 Mile,Rd,0,0,0,0,0.752987,4.5,4.5 +40980,-1,0.025444,0,1,0,2,4,,4,3,11 Mile,Rd,0,0,0,0,0.61065,4.5,4.5 +40981,0,0.157778,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,3.786664,0.15,4 +40982,0,0.567253,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.614073,0.15,4 +40991,-1,0.025482,0,1,0,2,4,,4,3,Adams,Rd,0,0,0,0,0.611578,4.5,4.5 +40992,1,0.024552,1,0,0,2,4,,4,3,Adams,Rd,0,0,0,0,0.589238,4.5,4.5 +40215,-1,0.213079,0,3,0,2,3,DIV,3,3,Greenfield,Rd,4416851,0.99,1.203,0,5.113894,5,5 +39887,-1,0.501485,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,3.569,4.07,0,12.035651,5,5 +39886,0,0.553376,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,13.281034,0.15,4 +39885,0,0.507973,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.191351,0.15,4 +39884,-1,0.243204,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,3.326,3.569,0,5.836887,5,5 +39883,-1,0.01305,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,3.313,3.326,0,0.313207,5,5 +39882,-1,0.242931,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,3.07,3.313,0,5.830338,5,5 +39881,-1,0.123189,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,2.947,3.07,0,2.956528,5,5 +39880,0,0.010332,2,2,0,2,3,,3,1,7 Mile,Rd,1700106,14.91,14.921,0,0.247974,5,5 +39879,-1,0.37449,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,2.572,2.947,0,8.987749,5,5 +39878,0,0.506238,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,12.1497,0.15,4 +39877,-1,0.124795,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,2.448,2.572,0,2.995069,5,5 +39876,0,0.01166,1,1,0,2,5,,3,1,Curtis,St,1620803,1.911,1.922,0,0.279846,8,4.5 +39875,-1,0.375973,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,2.072,2.448,0,9.023362,5,5 +39874,-1,0.169655,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.902,2.072,0,4.071726,5,5 +39873,0,0.011764,1,1,0,2,3,,3,1,McNichols,Rd,1680701,20.979,20.99,0,0.282333,5,5 +39872,-1,0.012256,0,2,0,2,4,DV2,3,1,Outer,Dr,4707854,1.065,1.078,0,0.294147,6,4.5 +40996,-1,0.037072,0,1,0,2,4,,4,3,Adams,Rd,0,0,0,0,0.889736,4.5,4.5 +40997,1,0.049661,1,0,0,2,5,,5,3,Gunn,Rd,0,0,0,0,1.191876,3.7,5 +40998,-1,0.049368,0,1,0,2,5,,5,3,Gunn,Rd,0,0,0,0,1.184824,3.7,5 +40974,-1,0.026858,0,2,0,2,4,,4,3,Franklin,Rd,0,0,0,0,0.644591,4.5,4.5 +40975,1,0.104774,2,0,0,2,4,,4,3,Franklin,Rd,0,0,0,0,2.514567,4.5,4.5 +40976,-1,0.11161,0,2,0,2,4,,4,3,Franklin,Rd,0,0,0,0,2.678652,4.5,4.5 +40977,1,0.068926,2,0,0,2,4,,4,3,Franklin,Rd,0,0,0,0,1.654216,4.5,4.5 +40978,-1,0.060085,0,2,0,2,4,,4,3,Franklin,Rd,0,0,0,0,1.442036,4.5,4.5 +41525,0,0.075367,2,2,0,2,3,,3,1,Warren,Ave,0,0,0,0,1.808804,5,5 +41319,1,0.479533,2,0,0,2,3,DIV,3,4,N M 53,,0,0,0,0,11.50878,5,5 +41320,1,0.497993,2,0,0,2,3,DIV,5,4,N M 53,,0,0,0,0,11.951827,1.7,4 +41321,0,0.169239,1,1,0,2,7,,5,4,M 53/33 Mile Connector,,0,0,0,0,4.061744,5.8,6 +37879,0,0.134121,1,1,0,2,7,,4,3,Tienken,Rd,626010,0.568,0.702,0,3.218895,6.55,4.5 +41322,-1,0.481053,0,2,0,2,3,DIV,3,4,S M 53,,0,0,0,0,11.54528,5,5 +41323,-1,0.974569,0,2,0,2,3,DIV,5,4,S M 53,,0,0,0,0,23.389657,1.7,4 +40126,1,0.035914,1,0,0,2,5,,3,2,Levan,Rd,1604605,3.155,3.191,0,0.861931,8,4.5 +40123,-1,0.173878,0,2,0,2,4,DV2,3,2,Newburgh,Rd,4719274,0,0.174,0,4.173072,6,4.5 +40048,1,0.007356,3,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,0.123,0.13,0,0.176552,3.7,5 +40125,-1,0.035143,0,1,0,2,5,,3,2,Levan,Rd,4719291,0,0.035,0,0.843424,8,4.5 +40124,0,0.013602,1,1,0,2,5,,3,2,Levan,Rd,1604605,3.191,3.205,0,0.326449,8,4.5 +39890,1,0.595313,2,0,0,2,4,DIV,4,2,Ecorse,Rd,5495384,2.36,2.955,0,14.287512,4.5,4.5 +39869,0,0.503183,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.076396,0.15,4 +39868,0,0.493007,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.832165,0.15,4 +39866,0,0.485823,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.659744,0.15,4 +39865,0,1.013434,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,24.322406,0.15,4 +39864,-1,0.241362,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,3.514,3.756,0,5.792691,3.7,5 +39863,-1,0.394097,0,2,0,2,3,DIV,4,3,Crooks,Rd,4408239,3.121,3.514,0,9.458328,3.7,5 +41340,0,0.079418,1,1,0,2,5,,1,1,Columbia,St,0,0,0,0,1.906025,8.5,4.5 +41339,0,0.049139,1,1,0,2,5,,1,1,Columbia,St,0,0,0,0,1.179337,8.5,4.5 +41338,0,0.048735,1,1,0,2,5,,1,1,Park,Ave,0,0,0,0,1.169645,8.5,4.5 +41337,0,0.048028,1,1,0,2,5,,1,1,Park,Ave,0,0,0,0,1.152669,8.5,4.5 +41336,0,0.050325,1,1,0,2,5,,1,1,Park,Ave,0,0,0,0,1.207789,8.5,4.5 +41335,0,0.051428,1,1,0,2,5,,1,1,Park,Ave,0,0,0,0,1.234276,8.5,4.5 +41334,0,0.047148,1,1,0,2,5,,1,1,Clifford,St,0,0,0,0,1.131541,8.5,4.5 +41333,0,0.048489,1,1,0,2,5,,1,1,Clifford,St,0,0,0,0,1.163729,8.5,4.5 +41330,0,0.050837,1,1,0,2,5,,1,1,Clifford,St,0,0,0,0,1.220099,8.5,4.5 +41130,1,0.034914,1,0,0,2,4,,5,7,Allen,Rd,0,0,0,0,0.837941,3,4 +41332,0,0.048147,1,1,0,2,5,,1,1,Clifford,St,0,0,0,0,1.155531,8.5,4.5 +41331,0,0.050392,1,1,0,2,5,,1,1,Clifford,St,0,0,0,0,1.209412,8.5,4.5 +40051,1,0.136434,5,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,0.13,0.267,0,3.274415,3.7,5 +39766,-1,0.251401,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.32,1.572,0,6.033633,5,5 +39767,-1,0.330539,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.572,1.902,0,7.932944,5,5 +39734,1,0.020057,1,0,0,2,4,,4,3,White Lake,Rd,649303,1.904,1.924,0,0.481377,4.5,4.5 +39735,1,0.034399,1,0,0,2,4,,4,3,White Lake,Rd,649303,1.924,1.959,0,0.825575,4.5,4.5 +39736,0,0.679435,1,1,0,2,4,,4,3,White Lake,Rd,649303,1.959,2.638,0,16.306432,4.5,4.5 +39737,-1,0.018952,0,1,0,2,4,,4,3,White Lake,Rd,4416627,0.036,0.055,0,0.454843,4.5,4.5 +39738,-1,0.030608,0,1,0,2,4,,4,3,White Lake,Rd,4416627,0.055,0.085,0,0.734586,4.5,4.5 +39730,1,0.021329,1,0,0,2,4,,4,3,White Lake,Rd,649303,1.744,1.766,0,0.511903,4.5,4.5 +39731,1,0.014317,1,0,0,2,4,,4,3,White Lake,Rd,4416626,0,0.014,0,0.343611,4.5,4.5 +39732,1,0.035895,1,0,0,2,4,,4,3,White Lake,Rd,649303,1.868,1.904,0,0.861472,4.5,4.5 +39733,-1,0.03579,0,1,0,2,4,,4,3,White Lake,Rd,4416627,0,0.036,0,0.858969,4.5,4.5 +39724,1,0.036806,1,0,0,2,4,,4,3,White Lake,Rd,649303,1.766,1.802,0,0.88334,4.5,4.5 +39723,1,0.01851,1,0,0,2,4,,4,3,Rose Center,Rd,660906,2.61,2.628,0,0.444231,4.5,4.5 +39721,0,0.066094,1,1,1,2,4,,4,3,White Lake,Rd,649303,1.802,1.868,0,1.586265,4.5,4.5 +35142,0,0.116358,2,2,1,2,3,,4,4,Romeo Plank,Rd,819207,1.798,1.914,0,2.792593,3.7,5 +39725,-1,0.022113,0,1,0,2,4,,4,3,Rose Center,Rd,4416624,0,0.022,0,0.530719,4.5,4.5 +39726,-1,0.019567,0,1,0,2,4,,4,3,White Lake,Rd,4416624,0.022,0.042,0,0.469606,4.5,4.5 +39727,-1,0.031563,0,1,0,2,4,,4,3,White Lake,Rd,4416624,0.042,0.073,0,0.757517,4.5,4.5 +39749,-1,0.368087,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490586,0.838,1.206,0,8.834076,5,5 +39751,-1,0.013411,0,2,0,2,4,DV2,3,1,Oakman,Blvd,4701478,2.045,2.059,0,0.321866,6,4.5 +39752,1,0.0113,1,0,0,2,5,DV2,3,1,Ewald,Cir,1615601,1.088,1.1,0,0.271193,8,4.5 +39753,-1,0.011072,0,1,0,2,5,DV2,3,1,Ewald,Cir,4707876,1.082,1.093,0,0.26573,8,4.5 +39754,-1,0.215085,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0,0.215,0,5.162036,5,5 +39755,-1,0.016707,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.215,0.232,0,0.400976,5,5 +39756,-1,0.06193,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.232,0.294,0,1.48631,5,5 +39757,-1,0.006905,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.294,0.301,0,0.165725,5,5 +39758,0,0.010391,2,2,0,2,4,,3,1,Lyndon,St,1612706,2.988,2.998,0,0.249396,6,4.5 +39759,-1,0.27203,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.301,0.573,0,6.528717,5,5 +39760,1,0.010027,1,0,0,2,5,,3,1,Keeler,Ave,1590901,2.368,2.378,0,0.240652,8,4.5 +39761,-1,0.010245,0,2,0,2,5,,3,1,Hughes,St,4705979,0.962,0.972,0,0.245881,8,4.5 +39762,-1,0.342126,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.573,0.915,0,8.211014,5,5 +39763,-1,0.053179,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.199,1.252,0,1.276307,5,5 +39764,0,0.012533,1,1,0,2,4,,3,1,Puritan,St,4707953,4.507,4.519,0,0.300798,6,4.5 +39765,-1,0.068394,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.252,1.32,0,1.641466,5,5 +39745,0,0.01172,1,1,1,2,5,,3,1,Elmhurst,St,1581710,0.743,0.755,0,0.281285,8,4.5 +39744,-1,0.128318,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490586,0.178,0.307,0,3.079621,5,5 +39746,-1,0.18377,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490586,0.307,0.49,0,4.410487,5,5 +39750,1,0.012003,2,0,0,2,4,DV2,3,1,Oakman,Blvd,1581709,2.018,2.03,0,0.288083,6,4.5 +39748,-1,0.347409,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490586,0.49,0.838,0,8.337811,5,5 +40062,-1,0.134646,0,2,0,2,3,DIV,3,3,Orchard Lake,Rd,641405,0.409,0.543,0,3.231504,5,5 +38360,0,0.719828,1,1,0,2,4,,4,5,Whittaker,Rd,1439102,8.331,9.051,0,17.275871,4.5,4.5 +39705,-1,0.025265,0,1,0,2,5,,4,5,NORTH,St,5490690,0,0.025,0,0.606367,5.8,4.5 +39706,1,0.025105,1,0,0,2,5,,4,5,North,St,4604989,0.877,0.902,0,0.602512,5.8,4.5 +39707,0,0.475823,1,1,1,2,4,,3,2,7 Mile,Rd,1698901,0.271,0.747,0,11.419748,6,4.5 +39708,0,1.113894,1,1,0,2,5,,3,2,Silver Spring,Dr,1710310,0.048,1.162,0,26.733444,8,4.5 +39709,1,0.048201,1,0,0,2,5,,3,2,Silver Spring,Dr,1710310,0,0.048,0,1.156815,8,4.5 +39710,-1,0.072164,0,1,0,2,5,,3,2,Silver Spring,Dr,4719462,0,0.072,0,1.73194,8,4.5 +39711,1,0.077274,1,0,0,2,5,,3,2,Silver Spring,Dr,1710310,1.162,1.239,0,1.854577,8,4.5 +39712,-1,1.025643,0,2,0,2,3,DIV,4,5,Jackson,Rd,5490574,1.274,2.299,0,24.615435,3.7,5 +39768,-1,0.157458,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,0.915,1.072,0,3.778983,5,5 +39769,0,0.011715,2,2,0,2,4,,3,1,Fenkell,St,1579605,8.938,8.949,0,0.281171,6,4.5 +39770,-1,0.126968,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490612,1.072,1.199,0,3.047237,5,5 +39771,0,0.25874,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,6.209763,0.15,4 +39772,0,0.197579,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.741887,0.15,4 +39773,0,0.743883,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,17.853201,0.15,4 +39774,0,0.491338,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.792107,0.15,4 +39778,0,0.041674,2,2,1,2,3,,3,2,Greenfield,,1651002,2.069,2.11,0,1.000172,5,5 +39777,1,0.05261,1,0,0,1,1,ROF,3,2,E I 94/Greenfield,RAMP,1577004,0.152,0.204,0,,2.24,5 +39775,0,0.496384,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,11.913207,0.15,4 +39779,1,0.046877,1,0,0,1,1,ROF,3,2,E I 94/S Greenfield,RAMP,5500788,0,0.047,0,,2.24,5 +39776,0,0.169581,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.069934,0.15,4 +39780,0,0.014633,2,2,1,2,3,,4,2,Beck,Rd,1595603,9.746,9.761,0,0.351194,3.7,5 +39739,-1,0.013647,0,1,0,2,4,,4,3,Duck Lake,Rd,4416628,0.034,0.048,0,0.327536,4.5,4.5 +39740,1,0.011398,1,0,0,2,4,,4,3,Duck Lake,Rd,4416629,0,0.011,0,0.273545,4.5,4.5 +39741,1,0.157926,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,5.259,5.417,0,3.790219,5,5 +39742,1,0.220103,2,0,0,2,3,DIV,3,1,Livernois,Ave,1581701,6.511,6.731,0,5.28248,5,5 +39743,-1,0.178471,0,2,0,2,3,DIV,3,1,Livernois,Ave,5490586,0,0.178,0,4.283307,5,5 +39908,1,0.267931,2,0,0,2,3,DIV,4,3,Long Lake,Rd,641102,11.262,11.53,0,6.430356,3.7,5 +39909,-1,0.267848,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4416835,0.463,0.731,0,6.428364,3.7,5 +40061,-1,0.071716,0,2,0,2,3,DIV,3,3,Orchard Lake,Rd,641405,0.337,0.409,0,1.721182,5,5 +40044,1,0.123354,3,0,0,2,3,DIV,4,3,Northwestern,Hwy,710010,0,0.123,0,2.960485,3.7,5 +40040,-1,0.183254,0,3,0,2,3,DIV,4,3,Northwestern,Hwy,5499978,0.161,0.344,0,4.3981,3.7,5 +40063,-1,0.246858,0,2,0,2,3,DIV,3,3,Orchard Lake,Rd,641405,0.543,0.79,0,5.924589,5,5 +40045,-1,0.170928,0,2,0,2,3,DIV,4,3,Northwestern,Hwy,710102,0,0.171,0,4.102262,3.7,5 +39904,-1,0.319492,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4416835,0.144,0.463,0,7.66782,3.7,5 +40059,0,0.110102,2,2,1,2,3,,3,3,Orchard Lake,Rd,641405,1.156,1.266,0,2.642445,5,5 +40034,1,0.027336,3,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,5.062,5.089,0,0.656061,3.7,5 +40035,1,0.190174,3,0,0,2,3,DIV,4,3,Orchard Lake,Rd,634003,5.089,5.28,0,4.56418,3.7,5 +39918,1,0.082477,1,0,0,1,1,RON,3,1,Ambassador Bridge/N I 75,RAMP,4718924,0.024,0.106,0,,1.09,4 +40884,1,0.021298,1,0,0,2,4,,5,8,Coon Lake,Rd,0,0,0,0,0.51116,3,4 +40876,0,0.32645,2,2,1,2,3,,3,1,Oakwood,Blvd,0,0,0,0,7.83479,5,5 +40410,1,0.190839,2,0,0,2,4,DIV,4,3,Livernois,Rd,625408,9.217,9.408,0,4.580133,4.5,4.5 +40411,-1,0.190877,0,2,0,2,4,DIV,4,3,Livernois,Rd,4416832,0.963,1.154,0,4.581057,4.5,4.5 +38494,0,0.29635,2,2,0,2,4,,3,7,10th,Ave,963204,3.025,3.321,0,7.112409,6,4.5 +38495,0,0.047298,1,1,0,2,4,,3,7,Stone,St,964308,1.251,1.298,0,1.135164,6,4.5 +38496,0,0.155365,1,1,0,2,7,,3,7,Harker,St,5492974,0,0.155,0,3.728749,7,4.5 +40857,-1,0.024899,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,0.597576,6,4.5 +40856,-1,0.036825,0,2,0,2,4,,3,3,Civic Center,Dr,0,0,0,0,0.883809,6,4.5 +40855,1,0.041438,2,0,0,2,4,,3,3,Civic Center,Dr,0,0,0,0,0.994515,6,4.5 +40872,1,0.109201,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,2.620816,6,4.5 +40850,0,0.46973,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,11.273529,0.15,4 +40854,1,0.027148,2,0,0,2,4,,3,3,Civic Center,Dr,0,0,0,0,0.651542,6,4.5 +40851,1,0.029137,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,0.699276,6,4.5 +40845,-1,0.130906,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,3.141749,6,4.5 +40853,-1,0.028181,0,2,0,2,4,,3,3,Civic Center,Dr,0,0,0,0,0.676335,6,4.5 +40852,-1,0.02861,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,0.686646,6,4.5 +40841,0,0.102547,2,2,1,2,4,,3,3,Civic Center,Dr,0,0,0,0,2.461131,6,4.5 +40870,1,0.189736,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,4.553652,6,4.5 +40412,0,0.165915,1,1,0,2,4,,4,3,Livernois,Rd,625408,9.408,9.574,0,3.981951,4.5,4.5 +40413,0,0.437947,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,10.510739,0.15,4 +40095,1,0.011212,1,0,0,2,7,,2,5,Observatory,St,1429309,0.482,0.493,0,0.269089,8.5,4.5 +40092,1,0.031087,1,0,0,2,7,,2,5,Observatory,St,1429309,0.451,0.482,0,0.746079,8.5,4.5 +40414,0,0.490535,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.772847,0.15,4 +40437,1,0.726687,2,0,0,1,1,,3,7,E I 94,,967606,24.055,24.781,0,,0.58,7 +40438,1,0.6437,3,0,0,1,1,ROF,3,7,E I 94/Pine Grove,RAMP,4506262,0.433,1.077,0,,2.24,5 +40439,1,0.083511,2,0,0,2,9,,3,7,Harker,St,5492975,0,0.084,0,2.004262,7,4.5 +40152,1,0.031951,2,0,0,2,4,,4,3,Grand River,Ave,4104142,3.578,3.61,0,0.76683,4.5,4.5 +40153,1,0.018074,2,0,0,2,4,,4,3,Lyon Center,Dr,4414237,0.277,0.295,0,0.433785,4.5,4.5 +40957,0,0.316997,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,7.607938,0.15,4 +40952,1,0.08971,1,0,0,2,4,,5,3,Napier,Rd,0,0,0,0,2.153039,3,4 +40961,-1,0.117724,0,2,0,2,3,DIV,4,5,Wiard,Rd,0,0,0,0,2.825368,3.7,5 +40127,1,0.060295,1,0,0,2,5,,3,2,Levan,Rd,1604605,4.151,4.212,0,1.447081,8,4.5 +40052,-1,0.119099,0,4,0,2,3,DIV,4,3,Northwestern,Hwy,710102,0.171,0.29,0,2.858371,3.7,5 +40361,-1,0.015449,0,3,0,2,3,DIV,4,3,University,Dr,5500949,1.549,1.564,0,0.370783,3.7,5 +40362,1,0.015232,3,0,0,2,3,DIV,4,3,University,Dr,624301,4.432,4.447,0,0.36557,3.7,5 +40363,-1,0.523503,0,2,0,2,4,DIV,3,3,Coolidge,Rd,4463391,0,0.523,0,12.564081,6,4.5 +40391,1,0.020213,1,0,0,2,4,,4,5,Geddes/N US 23,RAMP,1431402,0,0.02,0,0.485103,4.5,4.5 +40392,1,0.03381,2,0,0,2,4,,4,5,Geddes,Rd,1448104,3.263,3.296,0,0.811449,4.5,4.5 +40398,-1,0.171511,0,3,0,1,1,FCD,4,8,W I 96 CD,,935207,22.675,22.846,0,,0.8,7.5 +40395,1,0.141937,1,0,0,1,1,ROF,4,8,W I 96/Spencer,RAMP,5500704,0.442,0.584,0,,2.24,5 +40399,1,0.441892,1,0,0,1,1,ROF,3,8,W I 96/Spencer,RAMP,5500704,0,0.442,0,,2.24,5 +40393,-1,0.02879,0,2,0,2,4,,4,5,Geddes,Rd,4606198,0.059,0.088,0,0.690965,4.5,4.5 +37905,0,0.012962,1,1,0,2,5,,4,6,Herr,Rd,1224507,1.056,1.069,0,0.311091,5.8,4.5 +40394,0,0.12156,2,2,1,2,4,,4,5,Geddes,Rd,1448104,3.296,3.418,0,2.917445,4.5,4.5 +40400,-1,1.555691,0,3,0,1,1,,4,8,W I 96,,935207,23.622,25.177,0,,0.8,7.5 +40401,1,1.584566,3,0,0,1,1,,4,8,E I 96,,935105,23.53,25.115,0,,0.8,7.5 +40402,1,0.88565,2,0,0,1,1,,4,8,E I 96,,2000030,0,0.884,0,,0.8,7.5 +40397,-1,0.021885,0,2,0,1,1,FCD,3,8,W I 96 CD,,935207,22.653,22.675,0,,0.58,7 +40403,-1,0.977462,0,2,0,1,1,,4,8,W I 96,,2000031,0,0.977,0,,0.8,7.5 +39280,0,1.007868,1,1,0,2,5,,5,4,34 Mile,Rd,821608,3.073,4.081,0,24.188833,3.7,5 +38452,0,0.499897,1,1,0,2,5,,4,6,Monroe,Rd,1232702,0,0.5,0,11.997528,5.8,4.5 +39281,0,0.67106,1,1,0,2,5,,5,4,Mount Vernon,Rd,816905,2.345,3.016,0,16.105443,3.7,5 +39282,0,0.277227,1,1,0,2,5,,4,4,22 Mile,Rd,818404,0.189,0.466,0,6.653447,5.8,4.5 +39283,0,0.780359,1,1,0,2,6,GRV,5,4,29 Mile,Rd,815710,15.815,16.595,0,18.728612,5.55,5 +40351,1,0.020002,2,0,0,2,5,,4,3,Pontiac,Rd,677501,1.149,1.169,0,0.480046,5.8,4.5 +40352,-1,0.020466,0,2,0,2,5,,4,3,Pontiac,Rd,4463352,0.021,0.041,0,0.491192,5.8,4.5 +40353,-1,0.008166,0,3,0,2,3,DIV,4,3,University,Dr,5500949,0.891,0.899,0,0.195986,3.7,5 +40354,1,0.016358,3,0,0,2,3,DIV,4,3,University,Dr,624301,3.778,3.795,0,0.39258,3.7,5 +38451,0,0.504139,1,1,0,2,4,,4,6,Sterns,Rd,1223310,6.654,7.158,0,12.09934,4.5,4.5 +38450,0,0.210808,1,1,0,2,5,,4,6,Secor,Rd,1223604,2.64,2.851,0,5.059391,5.8,4.5 +38449,0,0.322691,1,1,0,2,4,,4,6,Summerfield,Rd,1223702,11.547,11.869,0,7.744577,4.5,4.5 +40691,0,0.01705,2,2,1,2,4,,5,3,Sashabaw,Rd,697309,4.158,4.175,0,0.409191,3,4 +40692,1,0.272137,3,0,0,1,1,,4,3,N I 75,,647308,29.8,30.072,0,,0.8,7.5 +40693,1,0.161562,1,0,0,1,1,ROF,5,3,N I 75/S Sashabaw,RAMP,5500786,0,0.162,0,,2.24,5 +39817,-1,0.038187,0,2,0,2,4,,4,3,Martin,Pkwy,4416635,0,0.038,0,0.916486,4.5,4.5 +39819,-1,0.021829,0,1,0,2,4,,4,3,Pga,Dr,4416636,0,0.022,0,0.523893,4.5,4.5 +36963,0,0.100016,1,1,0,2,5,,3,6,7th,St,4302993,1.367,1.467,0,2.400396,8,4.5 +39823,1,0.022802,2,0,0,2,4,,4,3,Martin,Pkwy,4403012,0.939,0.962,0,0.547256,4.5,4.5 +39820,1,0.020706,1,0,0,2,4,,4,3,Pga,Dr,4416637,0,0.021,0,0.496944,4.5,4.5 +39824,-1,0.021165,0,2,0,2,4,,4,3,Martin,Pkwy,4416635,0.674,0.695,0,0.507956,4.5,4.5 +39821,1,0.615003,2,0,0,2,4,DIV,4,3,Martin,Pkwy,4403012,0.324,0.939,0,14.760062,4.5,4.5 +39825,1,0.025458,2,0,0,2,4,,4,3,Library,Dr,4416638,0,0.025,0,0.610994,4.5,4.5 +39822,-1,0.613551,0,2,0,2,4,DIV,4,3,Martin,Pkwy,4416635,0.061,0.674,0,14.725222,4.5,4.5 +39818,-1,0.022415,0,2,0,2,4,,4,3,Martin,Pkwy,4416635,0.038,0.061,0,0.537961,4.5,4.5 +39826,-1,0.019895,0,2,0,2,4,,4,3,Library,Dr,4416639,0,0.02,0,0.477487,4.5,4.5 +39813,0,0.030033,2,2,1,2,4,,4,3,Martin,Pkwy,4403012,0.064,0.094,0,0.720791,4.5,4.5 +39814,0,0.173134,2,2,1,2,4,,4,3,Martin,Pkwy,4403012,0.094,0.267,0,4.155215,4.5,4.5 +40664,-1,0.297752,0,3,0,1,2,,4,3,W M 59,,677208,5.809,6.106,0,,0.8,7.5 +40665,1,0.293693,3,0,0,1,2,,4,3,E M 59,,648906,27.29,27.584,0,,0.8,7.5 +40666,1,0.227347,1,0,0,1,2,RON,4,3,S Crooks/E M 59,RAMP,4463508,0,0.227,0,,1.09,4 +40667,1,0.215069,1,0,0,1,2,RON,4,3,N Crooks/W M 59,RAMP,4463509,0,0.215,0,,1.09,4 +40668,0,0.557964,2,2,0,2,5,,4,3,Oakland,Blvd,1824710,0,0.558,0,13.391125,5.8,4.5 +40669,1,0.032919,1,0,0,2,4,,4,3,Duck Lake,Rd,4410161,5.647,5.68,0,0.790045,4.5,4.5 +40670,-1,0.034061,0,1,0,2,4,,4,3,Duck Lake,Rd,4416628,0,0.034,0,0.817464,4.5,4.5 +40673,1,0.019476,1,0,0,2,3,RSF,4,4,E I 94/Metropolitan,RAMP,801109,0.231,0.25,0,0.467422,3.7,5 +40674,1,0.027288,1,0,0,2,3,RSF,4,4,W I 94/Metropolitan,RAMP,801603,0.333,0.36,0,0.654903,5,5 +38455,0,0.703087,1,1,1,2,5,,4,6,Mall,Rd,4302559,0,0.703,0,16.874083,5.8,4.5 +38454,0,0.349606,1,1,0,2,5,,4,6,Monroe,Rd,1232702,1.056,1.406,0,8.390548,5.8,4.5 +39815,1,0.037624,2,0,0,2,4,,4,3,Martin,Pkwy,4403012,0.267,0.304,0,0.902985,4.5,4.5 +39816,1,0.020113,2,0,0,2,4,,4,3,Martin,Pkwy,4403012,0.304,0.324,0,0.482719,4.5,4.5 +36958,0,0.648996,1,1,0,2,5,,5,6,Temperance,Rd,1232206,4.536,5.185,0,15.575907,3.7,5 +36957,0,0.189444,1,1,0,2,5,,4,6,Secor,Rd,1223604,2.45,2.64,0,4.546661,5.8,4.5 +36956,0,0.494613,1,1,0,2,4,,4,2,Inkster,Rd,1674404,8.615,9.109,0,11.870702,4.5,4.5 +36955,0,0.133832,2,2,1,2,4,,4,7,Pointe Tremble,Rd,4502633,11.719,11.853,0,3.211967,4.5,4.5 +36954,0,0.171258,1,1,1,2,4,,4,7,Saint Clair River,Dr,4502633,12.01,12.181,0,4.110194,4.5,4.5 +36969,0,0.127724,1,1,0,2,5,,4,5,Michigan,Ave,1439807,0.281,0.408,0,3.065365,5.8,4.5 +36986,0,1.014617,1,1,0,2,5,,5,6,Dean,Rd,1235109,1.261,2.275,0,24.350799,3.7,5 +36987,0,0.976505,1,1,0,2,5,,4,6,Dean,Rd,1235109,2.275,3.251,0,23.436125,5.8,4.5 +36975,0,0.279202,1,1,0,2,5,,4,5,North,St,4604989,0.598,0.877,0,6.70084,5.8,4.5 +36979,0,0.497458,1,1,0,2,5,GRV,5,5,Arkona,Rd,1439605,0,0.497,0,11.938999,5.55,5 +36972,0,0.343313,1,1,0,2,5,,4,5,Marvin,St,1440006,0.362,0.705,0,8.239509,5.8,4.5 +36968,0,0.343592,1,1,0,2,5,,4,5,North,St,4604989,0.255,0.598,0,8.246203,5.8,4.5 +36971,0,0.361797,1,1,0,2,5,,4,5,Marvin,St,1440006,0,0.362,0,8.683125,5.8,4.5 +36960,0,0.614284,1,1,0,2,5,,5,6,Newport,Rd,1228304,2.145,2.759,0,14.742814,3.7,5 +36953,0,0.19044,1,1,0,2,5,,4,7,Smith,St,966110,0.095,0.285,0,4.570553,5.8,4.5 +36976,0,0.00838,1,1,1,2,5,,4,5,Arkona,Rd,1439605,0.706,0.714,0,0.201113,5.8,4.5 +36967,0,0.254891,1,1,0,2,5,,4,5,North,St,4604989,0,0.255,0,6.117387,5.8,4.5 +36977,0,0.194254,1,1,1,2,5,,4,5,Arkona,Rd,4603257,0,0.194,0,4.662084,5.8,4.5 +36951,0,0.224475,1,1,0,2,4,,5,6,Main,St,1226001,0.284,0.509,0,5.387402,3,4 +36961,0,0.457124,1,1,0,2,4,,4,6,Nadeau,Rd,1225701,0.355,0.812,0,10.97097,4.5,4.5 +36962,0,0.131885,1,1,0,2,4,,3,6,Front,St,1223803,18.991,19.123,0,3.165231,6,4.5 +36980,0,0.432542,1,1,0,2,5,,5,6,Platt,Rd,1233604,5.529,5.962,0,10.381,3.7,5 +36952,0,0.20736,1,1,0,2,4,,4,6,County,St,1223905,0.061,0.268,0,4.976649,4.5,4.5 +36959,0,0.367767,1,1,0,2,5,,4,6,Jackman,Rd,4300008,1.982,2.35,0,8.826414,5.8,4.5 +36991,0,0.98967,1,1,0,2,5,,5,6,War,Rd,1229809,2.885,3.874,0,23.752068,3.7,5 +36974,0,0.190252,1,1,0,2,5,,4,5,Lewis,Ave,4604992,0.402,0.593,0,4.566038,5.8,4.5 +36970,0,0.192457,1,1,0,2,5,,4,5,Michigan,Ave,1439807,0.408,0.601,0,4.618973,5.8,4.5 +36973,0,0.124471,1,1,0,2,5,,4,5,Lewis,Ave,4604992,0.278,0.402,0,2.987316,5.8,4.5 +36978,0,0.208791,1,1,1,2,5,,4,5,Arkona,Rd,1439605,0.497,0.706,0,5.010979,5.8,4.5 +40306,-1,0.180355,0,2,0,2,4,DIV,4,3,Wattles,Rd,4416867,0,0.18,0,4.328525,4.5,4.5 +36990,0,1.507847,1,1,0,2,5,,5,6,War,Rd,1229809,1.378,2.885,0,36.188338,3.7,5 +36981,0,0.050962,1,1,0,2,5,,5,6,Platt,Rd,4302160,0,0.051,0,1.223077,3.7,5 +36992,0,0.43199,1,1,1,2,5,,5,2,Wahrman,Rd,5495435,0,0.432,0,10.367766,3.7,5 +36985,0,0.998398,1,1,0,2,5,,5,6,Douglas,Rd,1226801,2.434,3.432,0,23.961561,3.7,5 +36984,0,1.007385,1,1,0,2,5,,4,6,Dean,Rd,1235109,0.254,1.261,0,24.177235,5.8,4.5 +36983,0,0.996692,1,1,0,2,5,,4,6,Douglas,Rd,1226801,1.438,2.434,0,23.920615,5.8,4.5 +36982,0,0.400953,1,1,0,2,5,,4,5,Platt,St,4302160,0.051,0.452,0,9.622863,5.8,4.5 +36994,0,0.996356,1,1,0,2,5,,4,2,Harrison,Rd,4718366,0.902,1.898,0,23.912543,5.8,4.5 +36989,0,0.87739,1,1,0,2,5,,5,6,War,Rd,1229809,0.501,1.378,0,21.057371,3.7,5 +36988,0,0.251404,1,1,0,2,5,,3,6,Cooper,St,1224704,0,0.251,0,6.033687,8,4.5 +36993,0,0.996094,1,1,1,2,5,,4,2,Wahrman,Rd,4719472,2.032,3.028,0,23.906249,5.8,4.5 +36995,0,1.002735,1,1,0,2,5,GRV,4,2,Harrison,Rd,4718366,1.898,2.901,0,24.065646,6.55,4.5 +36996,0,0.49338,1,1,1,2,5,,4,2,Harrison,Rd,4718366,2.901,3.394,0,11.841114,5.8,4.5 +36965,0,0.135399,1,1,0,2,4,,5,6,Dexter,St,1239405,0.26,0.395,0,3.249564,3,4 +36964,0,0.056377,1,1,1,2,4,,4,7,Saint Clair River,Dr,4502633,12.352,12.409,0,1.35305,4.5,4.5 +37002,0,0.641701,1,1,0,2,5,,3,3,Elmwood,,628408,1,1.642,0,15.400831,8,4.5 +37007,0,0.247351,1,1,0,2,5,,4,7,Fruit,St,974309,1.585,1.832,0,5.936424,5.8,4.5 +36999,0,0.516844,1,1,0,2,5,,4,2,Hildebrandt,Rd,1682607,0.497,1.014,0,12.404258,5.8,4.5 +37003,0,0.292176,1,1,0,2,5,,4,7,State,St,966009,0.156,0.448,0,7.012226,5.8,4.5 +37006,0,0.11459,1,1,0,2,5,,4,7,State,St,966009,0.731,0.846,0,2.75017,5.8,4.5 +36998,0,0.497315,1,1,0,2,5,,4,2,Hildebrandt,Rd,1682607,0,0.497,0,11.935548,5.8,4.5 +36997,0,0.507573,1,1,1,2,5,,4,2,Harrison,Rd,4718366,3.394,3.901,0,12.181759,5.8,4.5 +37000,-1,0.049686,0,1,0,2,5,,3,2,Silver Spring,Dr,4719228,0,0.05,0,1.192463,8,4.5 +37001,0,1.000501,1,1,0,2,5,,3,3,Elmwood,,628408,0,1,0,24.012033,8,4.5 +40305,-1,0.461129,0,3,0,2,3,DIV,4,3,Rochester,Rd,4406170,2.695,3.156,0,11.067096,3.7,5 +37005,0,0.283704,1,1,0,2,5,,4,7,State,St,966009,0.448,0.731,0,6.808885,5.8,4.5 +40304,0,0.31579,1,1,1,2,4,,4,3,Wattles,Rd,618802,5.073,5.389,0,7.578948,4.5,4.5 +40303,1,0.017553,2,0,0,2,4,DIV,4,3,Wattles,Rd,618802,4.905,4.923,0,0.421278,4.5,4.5 +37004,0,0.249197,1,1,0,2,5,,4,7,Liberty,St,966105,0.278,0.527,0,5.980723,5.8,4.5 +35582,0,0.020853,1,1,0,2,4,,5,2,Sibley,Rd,1607308,1.111,1.132,0,0.500461,3,4 +37008,0,0.055506,1,1,0,2,5,,4,7,Washington,St,974805,0.285,0.34,0,1.332133,5.8,4.5 +39203,1,0.087655,1,0,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,2.103709,4.5,4.5 +39202,-1,0.087861,0,1,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,2.108667,4.5,4.5 +39201,-1,0.065155,0,1,0,2,4,,4,5,Merritt,Rd,0,0,0,0,1.563715,4.5,4.5 +39200,1,0.076972,1,0,0,2,4,,4,5,Merritt,Rd,0,0,0,0,1.847318,4.5,4.5 +39199,-1,0.131272,0,1,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,3.150518,4.5,4.5 +39197,-1,0.024378,0,1,0,2,4,,4,5,Merritt,Rd,0,0,0,0,0.585076,4.5,4.5 +39193,0,0.302673,1,1,0,2,5,,4,5,Merritt,Rd,0,0,0,0,7.264146,5.8,4.5 +39192,0,0.90013,1,1,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,21.603124,4.5,4.5 +39198,1,0.125524,1,0,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,3.012586,4.5,4.5 +39196,1,0.025631,1,0,0,2,4,,4,5,Merritt,Rd,0,0,0,0,0.615147,4.5,4.5 +39189,0,0.836757,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,20.082167,0.15,4 +39195,1,0.024703,1,0,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,0.592869,4.5,4.5 +39187,0,0.984364,1,1,0,2,99,,4,5,Centroid Connector,,0,0,0,0,23.624727,0.15,4 +39194,-1,0.02514,0,1,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,0.603353,4.5,4.5 +39185,0,0.381953,1,1,0,2,4,,4,5,Whittaker,Rd,0,0,0,0,9.166866,4.5,4.5 +40604,0,0.195044,2,2,1,2,3,,3,7,Pine Grove,Ave,964203,1.18,1.375,0,4.681061,5,5 +40606,0,2.403411,1,1,0,2,6,,5,8,Owosso,Rd,943904,0.335,2.737,0,57.681868,5.8,6 +40607,0,1.280281,1,1,0,2,5,,5,8,Eager,Rd,4104848,0,1.28,0,30.72674,3.7,5 +38550,0,0.012797,1,1,0,2,5,,2,1,Second,St,0,0,0,0,0.307126,8.5,4.5 +39569,-1,0.059012,0,1,0,2,4,,5,5,Werkner,Rd,0,0,0,0,1.416287,3,4 +39567,1,0.063632,1,0,0,2,4,,5,5,M 52,,0,0,0,0,1.527159,3,4 +40532,-1,0.056351,0,2,0,2,4,,4,5,State,Rd,1427508,3.201,3.257,0,1.352425,4.5,4.5 +40533,-1,0.02694,0,2,0,2,3,,4,5,State,Rd,1427508,3.275,3.302,0,0.646561,3.7,5 +40534,-1,0.032545,0,1,0,2,3,,4,5,S State / W Ellsworth Cutoff,Rd,5498167,0,0.033,0,0.781079,3.7,5 +40535,-1,0.024211,0,2,0,2,4,,4,5,Ellsworth,Rd,4602939,7.986,8.01,0,0.581073,4.5,4.5 +40536,1,0.032281,2,0,0,2,4,,4,5,Ellsworth,Rd,5498166,0,0.032,0,0.774754,4.5,4.5 +40537,-1,0.010563,0,2,0,2,4,,4,5,Ellsworth,Rd,4602939,8.01,8.021,0,0.253504,4.5,4.5 +40538,-1,0.039977,0,2,0,2,3,,4,5,Ellsworth,Rd,4602939,8.041,8.081,0,0.959458,3.7,5 +40541,1,0.019994,2,0,0,2,3,,4,5,State,St,5498165,0.047,0.067,0,0.479845,3.7,5 +40542,-1,0.020258,0,2,0,2,3,,4,5,Ellsworth,Rd,4602939,8.021,8.041,0,0.486196,3.7,5 +40539,1,0.039696,2,0,0,2,3,,4,5,Ellsworth,Rd,5498166,0.056,0.096,0,0.952708,3.7,5 +40540,1,0.023788,2,0,0,2,3,,4,5,Ellsworth,Rd,5498166,0.032,0.056,0,0.570906,3.7,5 +40559,-1,0.017952,0,2,0,2,4,,4,3,Tienken,Rd,5499957,0.041,0.059,0,0.430854,4.5,4.5 +40558,1,0.052629,1,0,0,2,4,,4,3,Tienken,Rd,626010,3.492,3.545,0,1.263097,4.5,4.5 +40560,-1,0.022167,0,2,0,2,4,,4,3,Livernois,Rd,5499956,0.066,0.089,0,0.532015,4.5,4.5 +40543,-1,0.018173,0,2,0,2,3,,4,5,State,Rd,1427508,3.257,3.275,0,0.436145,3.7,5 +38549,0,0.081409,1,1,0,2,5,,2,1,Second,St,0,0,0,0,1.953826,8.5,4.5 +38548,0,0.080876,1,1,0,2,5,,2,1,Second,St,0,0,0,0,1.941034,8.5,4.5 +38547,0,0.147271,1,1,0,2,5,,2,1,Second,St,0,0,0,0,3.534497,8.5,4.5 +38546,0,0.175672,1,1,0,2,5,,2,1,Second,St,0,0,0,0,4.216133,8.5,4.5 +38545,0,0.097499,1,1,0,2,5,,2,1,Second,St,0,0,0,0,2.339983,8.5,4.5 +38544,0,0.189759,1,1,0,2,5,,2,1,Second,St,0,0,0,0,4.554213,8.5,4.5 +38543,0,0.189716,1,1,0,2,5,,2,1,Second,St,0,0,0,0,4.553193,8.5,4.5 +38542,0,0.094733,1,1,0,2,5,,2,1,Second,St,0,0,0,0,2.273599,8.5,4.5 +38541,0,0.100216,2,1,0,2,5,,2,1,Second,St,0,0,0,0,2.405185,8.5,4.5 +38540,0,0.087361,2,1,0,2,5,,2,1,Second,St,0,0,0,0,2.096658,8.5,4.5 +40882,-1,0.023426,0,1,0,2,4,,5,8,Chilson,Rd,0,0,0,0,0.562227,3,4 +40881,0,0.773095,1,1,0,2,4,,5,8,Chilson,Rd,0,0,0,0,18.55427,3,4 +40883,1,0.024094,1,0,0,2,4,,5,8,Chilson,Rd,0,0,0,0,0.578251,3,4 +40879,0,0.53792,1,1,0,2,4,,5,8,Coon Lake,Rd,0,0,0,0,12.910074,3,4 +40878,0,0.241469,1,1,0,2,4,,5,8,Chilson,Rd,0,0,0,0,5.795259,3,4 +39811,1,0.062897,2,0,0,2,4,,4,3,Martin,Pkwy,4416632,0,0.063,0,1.50952,4.5,4.5 +39812,-1,0.063805,0,2,0,2,4,,4,3,Martin,Pkwy,4403012,0,0.064,0,1.531323,4.5,4.5 +39577,1,0.037681,1,0,0,2,4,,5,5,Werkner,Rd,0,0,0,0,0.904343,3,4 +39576,1,0.094798,1,0,0,2,4,,5,5,M 52,,0,0,0,0,2.27516,3,4 +39570,1,0.064863,1,0,0,2,4,,5,5,Werkner,Rd,0,0,0,0,1.55671,3,4 +39575,-1,0.091982,0,1,0,2,4,,5,5,M 52,,0,0,0,0,2.207567,3,4 +39573,1,0.055463,1,0,0,2,4,,5,5,Werkner,Rd,0,0,0,0,1.331112,3,4 +39571,0,0.788861,1,1,0,2,5,,5,5,Werkner,Rd,0,0,0,0,18.932658,3.7,5 +39574,0,0.639991,1,1,0,2,4,,5,5,M 52,,0,0,0,0,15.359791,3,4 +39565,0,0.878306,1,1,0,2,4,,5,5,M 52,,0,0,0,0,21.079339,3,4 +39568,0,0.687853,1,1,0,2,5,,5,5,Werkner,Rd,0,0,0,0,16.508471,3.7,5 +39566,-1,0.07334,0,1,0,2,4,,5,5,M 52,,0,0,0,0,1.760153,3,4 +39291,0,0.127811,1,1,0,2,5,,4,3,Walnut Lake,Rd,622906,1.485,1.612,0,3.067468,5.8,4.5 +39290,0,0.286289,1,1,0,2,5,,4,3,Dutton,Rd,626101,4.03,4.316,0,6.870929,5.8,4.5 +39289,0,0.579815,1,1,0,2,5,GRV,4,3,Dutton,Rd,626101,3.202,3.782,0,13.915554,6.55,4.5 +39288,0,0.985676,1,1,0,2,5,GRV,5,3,Gunn,Rd,609405,5.031,6.016,0,23.656217,5.55,5 +39287,0,0.488523,1,1,0,2,4,GRV,4,3,Snell,Rd,609310,0.354,0.843,0,11.724563,6.55,4.5 +39286,0,0.333709,1,1,0,2,5,,4,3,Sheldon,Rd,605709,0.751,1.084,0,8.009016,5.8,4.5 +39299,0,1.483434,1,1,0,2,5,GRV,5,8,Burkhart,Rd,933208,4.37,5.852,0,35.602409,5.55,5 +39298,0,0.347757,1,1,0,2,5,,5,3,Martindale,Rd,656802,2.637,2.985,0,8.346176,3.7,5 +39301,0,1.396198,1,1,0,2,5,GRV,5,8,Clyde,Rd,939905,8.507,9.903,0,33.50875,5.55,5 +39302,0,1.12739,1,1,0,2,6,GRV,5,8,Nicholson,Rd,933006,5.806,6.933,0,27.057358,5.55,5 +39297,0,0.785223,1,1,0,2,5,,4,3,Pontiac Lake,Rd,703707,3.134,3.918,0,18.845349,5.8,4.5 +39572,-1,0.067307,0,1,0,2,4,,5,5,Werkner,Rd,0,0,0,0,1.615366,3,4 +40875,0,0.208022,1,1,0,2,99,,3,1,Centroid Connector,,0,0,0,0,4.992519,0.15,4 +37259,-1,0.05193,0,2,0,2,3,,4,4,26 Mile,Rd,4212026,0,0.052,0,1.246327,3.7,5 +37262,-1,0.032918,0,3,0,2,3,DIV,4,4,26 Mile,Rd,4212025,0,0.033,0,0.790042,3.7,5 +39296,0,0.406596,1,1,0,2,5,GRV,4,3,Pontiac Lake,Rd,703707,2.331,2.737,0,9.758315,6.55,4.5 +39295,0,0.553569,1,1,0,2,5,,5,3,Rattalee Lake,Rd,649405,6.637,7.191,0,13.285665,3.7,5 +39294,0,0.903408,1,1,0,2,5,,4,3,Jackson,Blvd,649302,0.976,1.879,0,21.681802,5.8,4.5 +39293,0,0.277608,1,1,0,2,5,GRV,4,3,Jackson,Blvd,649302,0.699,0.976,0,6.662596,6.55,4.5 +39300,0,1.534027,1,1,0,2,5,GRV,5,8,Byron,Rd,939703,2.527,4.06,0,36.816639,5.55,5 +35724,1,0.425792,2,0,0,2,3,DIV,4,4,Schoenherr,Rd,798810,9.283,9.708,0,10.219007,3.7,5 +35725,0,0.021142,1,1,0,2,4,,4,4,17 Mile,Rd,5491826,0,0.021,0,0.507398,4.5,4.5 +39285,0,0.528117,1,1,0,2,5,GRV,5,3,Leonard,Rd,604205,2.608,3.136,0,12.674805,5.55,5 +39284,0,0.308232,1,1,0,2,5,,5,3,Elmwood,,604205,1.675,1.983,0,7.397568,3.7,5 +39279,1,0.019063,1,0,0,2,3,RSF,3,2,S I 75/Outer,RAMP,1595209,0.254,0.273,0,0.457501,5,5 +39277,0,0.389861,1,1,0,2,5,,5,5,Barker,Rd,1445807,1.573,1.963,0,9.356655,3.7,5 +39276,0,0.049467,2,2,0,2,5,,2,5,Medical Center,Dr,1839204,0.022,0.072,0,1.187219,8.5,4.5 +39275,0,0.753554,1,1,0,2,5,GRV,5,5,Saline Waterworks,Rd,1432706,5.498,6.251,0,18.0853,5.55,5 +35753,1,0.030774,1,0,0,2,4,,4,3,Tienken,Rd,626010,5.011,5.042,0,0.738585,4.5,4.5 +35754,-1,0.018426,0,1,0,2,4,,4,3,Tienken,Rd,4415702,0.031,0.05,0,0.442218,4.5,4.5 +35755,1,0.020729,1,0,0,2,4,,4,3,Sheldon,Rd,605709,0,0.021,0,0.4975,4.5,4.5 +35756,-1,0.016985,0,1,0,2,4,,4,3,Sheldon,Rd,4415701,0,0.017,0,0.40763,4.5,4.5 +35757,1,0.016976,1,0,0,2,4,,4,3,Tienken,Rd,626010,5.042,5.059,0,0.407422,4.5,4.5 +35758,1,0.046136,1,0,0,2,4,,4,3,Tienken,Rd,626010,5.059,5.105,0,1.107267,4.5,4.5 +35759,-1,0.038838,0,1,0,2,4,,4,3,Tienken,Rd,4415702,0.05,0.089,0,0.932105,4.5,4.5 +35760,0,0.125677,1,1,1,2,4,,4,3,Tienken,Rd,626010,5.105,5.231,0,3.016247,4.5,4.5 +35761,0,0.103846,1,1,1,2,4,,4,3,Tienken,Rd,626010,5.231,5.334,0,2.492308,4.5,4.5 +39810,1,0.019483,2,0,0,2,4,,4,3,Oakley Park,Rd,629707,2.839,2.859,0,0.467604,4.5,4.5 +35763,0,0.28497,1,1,0,2,4,,4,3,Tienken,Rd,626010,5.334,5.619,0,6.839291,4.5,4.5 +39809,1,0.063851,2,0,0,2,4,,4,3,Martin,Rd,631703,0.021,0.085,0,1.532414,4.5,4.5 +39808,1,0.021408,2,0,0,2,4,,4,3,Martin,Pkwy,631703,0,0.021,0,0.513796,4.5,4.5 +35766,1,0.047443,1,0,0,2,4,,4,3,Tienken,Rd,626010,5.619,5.667,0,1.138624,4.5,4.5 +35767,-1,0.053515,0,1,0,2,4,,4,3,Tienken,Rd,4415703,0,0.054,0,1.284356,4.5,4.5 +35768,-1,0.019114,0,1,0,2,4,,4,3,Washington,Rd,4415704,0.023,0.042,0,0.458738,4.5,4.5 +35769,-1,0.023747,0,1,0,2,4,,4,3,Tienken,Rd,4415703,0.054,0.077,0,0.569939,4.5,4.5 +35770,1,0.023408,1,0,0,2,4,,4,3,Washington,Rd,4415706,0.088,0.112,0,0.561791,4.5,4.5 +35771,1,0.018192,1,0,0,2,4,,4,3,Tienken,Rd,626010,5.667,5.685,0,0.436601,4.5,4.5 +35772,1,0.067549,1,0,0,2,4,,4,3,Runyon,Rd,4413806,0,0.068,0,1.621184,4.5,4.5 +35773,-1,0.063461,0,1,0,2,4,,4,3,Runyon,Rd,4415705,0,0.063,0,1.523056,4.5,4.5 +39807,-1,0.062676,0,2,0,2,4,,4,3,Martin,Rd,4416631,0.023,0.086,0,1.504214,4.5,4.5 +35776,0,0.493327,1,1,0,2,4,,4,3,Runyon,Rd,4413806,0.068,0.561,0,11.839856,4.5,4.5 +35779,-1,0.050667,0,1,0,2,4,,4,3,Washington,Rd,4415704,0.042,0.093,0,1.215996,4.5,4.5 +35780,1,0.044787,1,0,0,2,4,,4,3,Washington,Rd,4415706,0.112,0.156,0,1.074882,4.5,4.5 +35781,0,0.353311,1,1,0,2,5,GRV,4,3,Washington,Rd,4415706,0.156,0.51,0,8.479459,6.55,4.5 +37162,0,0.034514,1,1,0,3,96,,2,1,Walk Link,,0,0,0,0,0.828343,0.15,4 +37902,-1,0.022926,0,1,0,2,4,,4,3,Washington,Rd,4415704,0,0.023,0,0.55023,4.5,4.5 +37878,0,0.568451,1,1,0,2,7,,4,3,Tienken,Rd,626010,0,0.568,0,13.642817,6.55,4.5 +41122,0,0.652197,1,1,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,15.652717,3,4 +41121,0,0.666191,1,1,0,2,5,,5,7,Allen,Rd,0,0,0,0,15.988584,3.7,5 +41145,1,0.288931,3,0,0,1,1,,4,3,N I 75,,0,0,0,0,,0.8,7.5 +41144,-1,0.87835,0,3,0,1,1,,4,3,S I 75,,0,0,0,0,,0.8,7.5 +41143,1,0.761206,2,0,0,1,1,,4,3,N I 75 BL,,0,0,0,0,,0.8,7.5 +41146,1,0.229868,3,0,0,1,1,,4,3,N I 75,,0,0,0,0,,0.8,7.5 +40922,0,0.266,1,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,6.384005,8,4.5 +40296,-1,0.221726,0,2,0,2,4,DIV,3,3,John R,Rd,4463374,0.615,0.836,0,5.321421,6,4.5 +40928,-1,0.026163,0,1,0,2,5,,3,5,Dhu Varren,Rd,0,0,0,0,0.627913,8,4.5 +40295,-1,0.437879,0,2,0,2,4,DIV,3,3,John R,Rd,4463374,0.177,0.615,0,10.509094,6,4.5 +40920,0,0.450749,1,1,0,2,5,,3,5,Dhu Varren,Rd,0,0,0,0,10.817967,8,4.5 +40919,0,0.154443,1,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,3.706632,8,4.5 +40364,0,0.406276,2,2,1,2,3,,4,3,Rochester,Rd,4413538,6.669,7.075,0,9.750629,3.7,5 +40388,1,0.015327,1,0,0,2,4,,4,5,W Geddes/E Geddes,TURN,4606200,0,0.015,0,0.367844,4.5,4.5 +40366,-1,0.302295,0,2,0,2,3,DIV,4,3,Long Lake,Rd,4416844,0.259,0.561,0,7.255079,3.7,5 +40389,1,0.016337,1,0,0,2,4,,4,5,Geddes,Rd,1448104,3.246,3.263,0,0.392093,4.5,4.5 +40297,0,0.298954,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.174891,0.15,4 +40298,0,0.553289,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,13.278943,0.15,4 +40926,-1,0.023469,0,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.563262,8,4.5 +40404,0,0.121327,2,2,1,2,3,,4,3,Livernois,Rd,625408,8.13,8.252,0,2.911857,3.7,5 +40406,1,0.28781,2,0,0,2,3,DIV,4,3,Livernois,Rd,625408,8.252,8.539,0,6.907446,3.7,5 +40408,-1,0.680126,0,2,0,2,3,DIV,4,3,Livernois,Rd,4416832,0.283,0.963,0,16.323029,3.7,5 +40355,1,0.637223,3,0,0,2,3,DIV,4,3,University,Dr,624301,3.795,4.432,0,15.293358,3.7,5 +40356,-1,0.407157,0,3,0,2,3,DIV,4,3,University,Dr,5500949,0.899,1.306,0,9.771774,3.7,5 +40357,0,0.101616,1,1,1,2,5,,4,3,Five Points,Dr,4463363,0,0.102,0,2.438793,5.8,4.5 +40358,-1,0.363099,0,3,0,2,3,DIV,4,3,Squirrel,Rd,4414559,2.756,3.119,0,8.714373,3.7,5 +40359,1,0.430675,3,0,0,2,3,DIV,4,3,Squirrel,Rd,4414558,2.75,3.181,0,10.33621,3.7,5 +40360,-1,0.242547,0,3,0,2,3,DIV,4,3,University,Dr,5500949,1.306,1.549,0,5.821138,3.7,5 +40287,-1,0.49461,0,2,0,2,5,DV2,3,4,Lorraine,Blvd,5495391,0,0.495,0,11.870649,8,4.5 +40290,-1,0.008767,0,2,0,2,5,DV2,3,4,Lorraine,Ave,5495391,0.495,0.503,0,0.210414,8,4.5 +40289,-1,0.49671,0,2,0,2,5,DV2,3,4,Lorraine,Ave,5495391,0.503,1,0,11.92104,8,4.5 +40293,-1,0.164223,0,2,0,2,4,DIV,3,3,John R,Rd,4463374,0,0.164,0,3.941341,6,4.5 +40294,-1,0.01315,0,2,0,2,4,DIV,3,3,John R,Rd,4463374,0.164,0.177,0,0.315612,6,4.5 +40301,1,0.038746,1,0,0,2,5,,2,3,Center,,0,0,0,0,0.929905,8.5,4.5 +37941,0,0.130006,1,1,1,2,3,,3,5,State,St,1427508,4.557,4.686,0,3.120143,5,5 +37942,0,0.205522,1,1,0,2,7,,3,5,Boardwalk,St,1444305,0.577,0.782,0,4.932529,7,4.5 +37943,0,0.252519,1,1,0,2,5,,3,5,Oakbrook,Dr,4605509,0,0.252,0,6.060466,8,4.5 +39100,0,1.22905,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,29.497192,0.15,4 +37548,1,0.015582,2,0,0,2,3,,4,4,Romeo Plank,Rd,819207,1.588,1.603,0,0.373972,3.7,5 +35861,1,0.760429,2,0,0,2,4,DV2,4,2,Van Horn,Rd,1674101,7.683,8.443,0,18.250294,4.5,4.5 +40198,1,0.015012,1,0,0,2,3,,3,3,S Rochester/N I 75,RAMP,5492912,0,0.015,0,0.360289,5,5 +39703,0,0.589602,1,1,1,2,5,,5,2,Wahrman,Rd,4719472,1.443,2.032,0,14.150446,3.7,5 +39704,0,0.15156,1,1,1,2,5,,4,5,Arkona,Rd,1439605,0.714,0.866,0,3.637443,5.8,4.5 +40117,-1,0.129005,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,4416846,1.421,1.55,0,3.096129,3.7,5 +40014,0,0.380558,1,1,1,2,3,,4,3,14 Mile,Rd,5500000,0.233,0.613,0,9.133394,3.7,5 +40118,0,0.507958,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,12.19099,0.15,4 +40863,1,0.296809,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,7.123416,6,4.5 +40871,-1,0.109201,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,2.620815,6,4.5 +40867,-1,0.155721,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,3.737294,6,4.5 +40868,1,0.15478,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,3.714715,6,4.5 +40873,1,0.130784,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,3.138808,6,4.5 +40874,0,0.373174,2,2,1,2,3,,3,1,Oakwood,Blvd,0,0,0,0,8.956172,5,5 +40858,1,0.025407,2,0,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,0.609757,6,4.5 +40859,1,0.023026,1,0,0,2,4,,3,3,Evergreen Turnaround,,0,0,0,0,0.552616,6,4.5 +40860,-1,0.022496,0,1,0,2,4,,3,3,Evergreen Turnaround,,0,0,0,0,0.539899,6,4.5 +39636,1,0.004536,1,0,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +40869,-1,0.189919,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,4.558067,6,4.5 +39637,-1,1.000862,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39638,1,0.003433,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39639,1,0.460905,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39640,-1,0.004047,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39641,-1,0.227696,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +40917,-1,0.146966,0,2,0,2,4,,4,4,William P Rosso,Hwy,0,0,0,0,3.527192,4.5,4.5 +40927,1,0.025716,1,0,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.617179,8,4.5 +40470,-1,0.241533,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,3.505,3.746,0,5.796781,4.5,4.5 +40469,0,0.011689,2,2,0,2,3,,4,3,Long Lake,Rd,641102,9.256,9.268,0,0.280547,3.7,5 +40468,-1,0.543636,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,2.961,3.505,0,13.047265,4.5,4.5 +40478,-1,0.484009,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,2.029,2.513,0,11.616216,4.5,4.5 +40002,1,0.040738,2,0,0,2,3,,4,3,14 Mile,Rd,5500000,0,0.041,0,0.977719,3.7,5 +40004,1,0.024162,3,0,0,2,3,,4,3,14 Mile,Rd,5500000,0.131,0.155,0,0.579892,3.7,5 +40003,1,0.09011,2,0,0,2,3,,4,3,14 Mile,Rd,5500000,0.041,0.131,0,2.162642,3.7,5 +41134,1,0.035283,1,0,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,0.846788,3,4 +41125,0,0.481242,1,1,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,11.549814,3,4 +41135,1,0.044884,1,0,0,2,5,,5,7,Allen,Rd,0,0,0,0,1.077209,3.7,5 +41131,1,0.049553,1,0,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,1.189282,3,4 +41127,-1,0.031545,0,1,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,0.757088,3,4 +41132,-1,0.046253,0,1,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,1.110082,3,4 +41129,-1,0.034719,0,1,0,2,4,,5,7,Allen,Rd,0,0,0,0,0.833258,3,4 +41142,1,0.993381,2,0,0,1,1,,4,3,S I 75 BL/N I 75,RAMP,0,0,0,0,,0.8,7.5 +41141,1,1.105072,3,0,0,1,1,,4,3,N I 75,,0,0,0,0,,0.8,7.5 +41140,0,2.024342,1,1,0,2,5,GRV,5,3,Sashabaw,Rd,0,0,0,0,48.584204,5.55,5 +41139,0,1.006568,1,1,0,2,5,,5,3,Sashabaw,Rd,0,0,0,0,24.157625,3.7,5 +41138,-1,0.03678,0,1,0,2,5,,5,7,Allen,Rd,0,0,0,0,0.882728,3.7,5 +41137,1,0.03869,1,0,0,2,5,,5,7,Allen,Rd,0,0,0,0,0.928564,3.7,5 +41136,-1,0.044554,0,1,0,2,5,,5,7,Allen,Rd,0,0,0,0,1.069306,3.7,5 +41128,1,0.033775,1,0,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,0.810603,3,4 +41133,-1,0.042084,0,1,0,2,4,,5,7,Lapeer,Rd,0,0,0,0,1.010014,3,4 +41126,0,0.777672,1,1,0,2,5,,5,7,Allen,Rd,0,0,0,0,18.664116,3.7,5 +41094,-1,0.196116,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,4.706774,3.7,5 +41095,1,0.196115,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,4.706766,3.7,5 +41096,-1,0.300623,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,7.214953,3.7,5 +41097,1,0.300439,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,7.210537,3.7,5 +41098,-1,0.235204,0,2,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,5.644899,3.7,5 +41099,1,0.235204,2,0,0,2,3,DIV,4,3,Orchard Lake,Rd,0,0,0,0,5.644899,3.7,5 +40614,0,0.488355,1,1,0,2,4,,5,8,Brighton,Rd,940301,0.532,1.02,0,11.720522,3,4 +41324,1,0.492345,2,0,0,2,3,DIV,5,4,N M 53,,0,0,0,0,11.816284,1.7,4 +41325,1,0.024652,1,0,0,2,3,,3,4,M 53 Crossover,,0,0,0,0,0.59166,5,5 +41326,1,0.505297,2,0,0,2,3,DIV,5,4,N M 53,,0,0,0,0,12.12714,1.7,4 +41327,-1,0.502756,0,2,0,2,3,DIV,5,4,S M 53,,0,0,0,0,12.066144,1.7,4 +41328,1,0.023831,1,0,0,2,3,,5,4,M 53 Crossover,,0,0,0,0,0.571941,1.7,4 +41329,0,0.163249,1,1,0,2,99,,2,1,Centroid Connector,,0,0,0,0,3.917984,0.15,4 +40336,-1,0.016759,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0.191,0.208,0,0.402227,3.7,5 +40334,-1,0.19103,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0,0.191,0,4.584726,3.7,5 +40335,1,0.028864,2,0,0,2,3,DIV,4,3,University,Dr,624301,3.075,3.104,0,0.692731,3.7,5 +40349,1,0.019516,2,0,0,2,5,,4,3,Pontiac,Rd,677501,1.129,1.149,0,0.468383,5.8,4.5 +40323,-1,0.027348,0,2,0,2,3,DIV,4,3,University,Dr,5500949,0.432,0.46,0,0.656344,3.7,5 +40320,1,0.04105,2,0,0,2,3,DIV,4,3,University,Dr,624301,3.354,3.395,0,0.98521,3.7,5 +40316,1,0.210044,1,0,0,1,1,RON,4,3,University/N I 75,RAMP,5500951,0.044,0.254,0,,1.09,4 +40676,-1,0.103423,0,2,0,2,4,DIV,3,1,Grand,Blvd,5494519,0.02,0.123,0,2.48216,6,4.5 +39303,0,1.332847,1,1,0,2,7,,5,8,Schafer,Rd,944107,1.007,2.339,0,31.988325,5.8,6 +39304,0,0.691563,1,1,0,2,5,GRV,5,7,Meisner,Rd,967607,1.301,1.992,0,16.597512,5.55,5 +39305,0,0.326054,1,1,0,2,6,,5,7,Church,Rd,965408,4.884,5.21,0,7.825296,5.8,6 +39306,0,1.023119,1,1,0,2,6,GRV,5,7,Church,Rd,965408,5.21,6.233,0,24.554864,5.55,5 +39307,0,0.744406,1,1,0,2,6,,5,7,Burt,Rd,972704,10.492,11.236,0,17.865732,5.8,6 +39308,0,0.750172,1,1,0,2,6,,5,7,Burt,Rd,972704,6.232,6.982,0,18.00414,5.8,6 +39309,0,0.048842,1,1,0,2,6,,5,7,Brott,Rd,973302,1,1.048,0,1.172212,5.8,6 +39310,0,2.460658,1,1,0,2,6,GRV,5,7,Foley,Rd,972503,2,4.46,0,59.055782,5.55,5 +39311,0,0.083162,1,1,0,2,5,,5,5,Saline Waterworks,Rd,1432706,7.026,7.109,0,1.9959,3.7,5 +39315,0,0.599354,1,1,0,2,5,GRV,5,5,Earhart,Rd,4600037,2.114,2.714,0,14.384492,5.55,5 +39312,0,0.846679,1,1,0,2,4,,4,5,Textile,Rd,1432903,7.392,8.239,0,20.320298,4.5,4.5 +39316,0,0.146024,1,1,0,2,7,,4,5,Warner,Rd,4602926,1.407,1.553,0,3.504571,6.55,4.5 +39317,0,0.249522,1,1,0,2,7,GRV,4,5,Morgan,Rd,1437402,0.5,0.749,0,5.988521,6.55,4.5 +39314,0,0.398464,1,1,0,2,5,,4,5,Merritt,Rd,1438204,1.243,1.642,0,9.563145,5.8,4.5 +39318,0,0.82098,1,1,0,2,7,GRV,3,5,Traver,Rd,1443305,1.068,1.889,0,19.703515,7,4.5 +39313,0,1.435024,1,1,0,2,5,GRV,5,5,Cherry Hill,Rd,1436303,0.963,2.398,0,34.440588,5.55,5 +40888,1,0.040606,1,0,0,2,4,,5,8,Chilson,Rd,0,0,0,0,0.974532,3,4 +40887,-1,0.081836,0,1,0,2,4,,5,8,Chilson,Rd,0,0,0,0,1.964067,3,4 +40886,1,0.076198,1,0,0,2,4,,5,8,Chilson,Rd,0,0,0,0,1.828745,3,4 +40885,-1,0.022635,0,1,0,2,4,,5,8,Coon Lake,Rd,0,0,0,0,0.543232,3,4 +40615,0,0.126494,1,1,0,2,4,,5,8,Chilson,Rd,940206,2.451,2.578,0,3.035853,3,4 +40924,0,0.261302,1,1,0,2,5,,3,5,Green,Rd,0,0,0,0,6.271258,8,4.5 +40925,1,0.027028,1,0,0,2,5,,3,5,Dhu Varren,Rd,0,0,0,0,0.648679,8,4.5 +40929,1,0.031626,1,0,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.759026,8,4.5 +40930,-1,0.036658,0,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.87978,8,4.5 +40931,-1,0.025593,0,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.61423,8,4.5 +40932,1,0.03415,1,0,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.819602,8,4.5 +40933,1,0.02812,1,0,0,2,5,,3,5,Dhu Varren,Rd,0,0,0,0,0.674889,8,4.5 +40934,-1,0.032999,0,1,0,2,5,,3,5,Dhu Varren,Rd,0,0,0,0,0.791979,8,4.5 +40935,1,0.036358,1,0,0,2,5,,3,5,Nixon,Rd,0,0,0,0,0.872603,8,4.5 +40936,-1,0.042804,0,1,0,2,5,,3,5,Nixon,Rd,0,0,0,0,1.027295,8,4.5 +40946,-1,0.031223,0,1,0,2,4,,4,3,Napier,Rd,0,0,0,0,0.749347,4.5,4.5 +40938,0,0.924741,1,1,0,2,4,,4,3,Napier,Rd,0,0,0,0,22.193789,4.5,4.5 +40939,0,0.397039,1,1,0,2,3,,5,3,10 Mile,Rd,0,0,0,0,9.528942,1.7,4 +40947,1,0.031331,1,0,0,2,4,,4,3,Napier,Rd,0,0,0,0,0.751955,4.5,4.5 +40587,-1,0.050976,0,1,0,2,4,,4,5,Geddes,Rd,5499930,0,0.051,0,1.223421,4.5,4.5 +40588,-1,0.039349,0,1,0,2,5,,4,5,Ridge,Rd,5499929,0.059,0.099,0,0.944365,5.8,4.5 +40589,1,0.043661,1,0,0,2,5,,4,5,Ridge,Rd,4603889,0.018,0.062,0,1.047872,5.8,4.5 +40500,-1,0.014998,0,1,0,2,4,,4,4,Romeo Plank,Rd,4212036,0.026,0.041,0,0.359943,4.5,4.5 +40501,-1,0.020144,0,1,0,2,4,,4,4,Canal,Rd,4212037,0.021,0.042,0,0.483462,4.5,4.5 +40502,1,0.016585,1,0,0,2,4,,4,4,Canal,Rd,820607,5.303,5.319,0,0.39805,4.5,4.5 +40503,1,0.015037,1,0,0,2,4,,4,4,Romeo Plank,Rd,819207,0.794,0.809,0,0.360885,4.5,4.5 +40504,1,0.020534,1,0,0,2,4,,4,4,Canal,Rd,820607,5.319,5.34,0,0.492804,4.5,4.5 +40505,-1,0.020311,0,1,0,2,4,,4,4,Canal,Rd,4212037,0.042,0.062,0,0.487466,4.5,4.5 +40515,0,0.137063,1,1,0,2,3,,5,6,Saint Anthony,Rd,1223208,3.99,4.127,0,3.289506,1.7,4 +40516,1,0.046235,1,0,0,2,3,,5,6,Saint Anthony,Rd,1223208,4.127,4.173,0,1.10964,1.7,4 +40517,-1,0.047804,0,1,0,2,3,,5,6,US 223,,5493544,0,0.048,0,1.147297,1.7,4 +40518,1,0.018228,1,0,0,1,2,RON,5,6,Saint Anthony/N US 23,RAMP,1223507,0,0.018,0,,1.09,4 +40519,1,0.216949,1,0,0,1,2,RON,5,6,Saint Anthony/N US 23,RAMP,1223507,0.018,0.235,0,,1.09,4 +40520,1,0.023993,1,0,0,2,4,,5,6,Saint Anthony,Rd,1223208,4.173,4.197,0,0.575837,3,4 +40521,-1,0.022776,0,1,0,2,4,,5,6,Saint Anthony,Rd,5493545,0,0.023,0,0.546627,3,4 +40522,1,0.36556,1,0,0,1,2,ROF,5,6,N US 23/Saint Anthony,RAMP,1223506,0,0.365,0,,2.24,5 +40523,0,0.898295,1,1,0,2,4,,5,6,Saint Anthony,Rd,1223208,4.197,5.095,0,21.559071,3,4 +40525,-1,0.439881,0,2,0,1,2,,5,6,S US 23,,1223504,4.89,5.329,0,,1.02,7 +40471,-1,0.289493,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,4.206,4.496,0,6.947823,4.5,4.5 +40472,-1,0.459973,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,3.746,4.206,0,11.039348,4.5,4.5 +40473,0,0.326536,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,7.836859,0.15,4 +40474,0,0.287993,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.911827,0.15,4 +40475,0,0.398055,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,9.55332,0.15,4 +40476,0,0.273741,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.56979,0.15,4 +40477,0,0.24845,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,5.962801,0.15,4 +40479,0,0.458977,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,11.015447,0.15,4 +40480,0,0.341734,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,8.201606,0.15,4 +40481,-1,0.331295,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4463391,1.698,2.029,0,7.951087,6,4.5 +40482,0,0.181405,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.35372,0.15,4 +40483,0,0.298394,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.161454,0.15,4 +40484,0,0.165014,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,3.960337,0.15,4 +40485,-1,0.205141,0,2,0,2,4,DV2,3,3,Coolidge,Rd,4463391,1.259,1.464,0,4.923394,6,4.5 +40486,0,0.179842,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,4.316218,0.15,4 +40487,0,0.210076,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.041833,0.15,4 +40488,0,0.329834,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,7.916026,0.15,4 +40489,0,0.522258,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,12.534194,0.15,4 +40494,-1,0.021275,0,1,0,2,4,,4,4,Canal,Rd,4212037,0,0.021,0,0.510595,4.5,4.5 +40495,1,0.025157,1,0,0,2,4,,4,4,Canal,Rd,820607,5.278,5.303,0,0.60376,4.5,4.5 +40496,-1,0.020911,0,1,0,2,4,,4,4,Romeo Plank,Rd,4212036,0.041,0.062,0,0.501859,4.5,4.5 +40497,1,0.025921,1,0,0,2,4,,4,4,Romeo Plank,Rd,819207,0.809,0.835,0,0.622111,4.5,4.5 +40498,-1,0.026062,0,1,0,2,4,,4,4,Romeo Plank,Rd,4212036,0,0.026,0,0.625483,4.5,4.5 +40499,1,0.023406,1,0,0,2,4,,4,4,Romeo Plank,Rd,819207,0.77,0.794,0,0.561742,4.5,4.5 +40456,1,0.355927,1,0,0,1,1,RON,4,8,Latson/W I 96,RAMP,5490672,0,0.356,0,,1.09,4 +40457,1,0.426545,1,0,0,1,1,ROF,4,8,W I 96/Latson,RAMP,5490673,0,0.426,0,,2.24,5 +40458,1,0.483515,1,0,0,1,1,RON,5,8,Nixon/E I 96,RAMP,5490670,0,0.483,0,,1.09,4 +40459,-1,0.739072,0,3,0,1,1,,4,8,W I 96,,935207,15.213,15.952,0,,0.8,7.5 +40460,1,0.652814,3,0,0,1,1,,5,8,E I 96,,935105,15.985,16.638,0,,1.02,7 +40461,-1,0.586666,0,3,0,1,1,,4,8,W I 96,,935207,15.952,16.539,0,,0.8,7.5 +40462,0,1.415016,1,1,0,2,4,,5,8,Latson,Rd,940302,1.041,2.455,0,33.960394,3,4 +40463,0,0.439405,2,2,1,2,4,,4,8,Latson,Rd,5490669,0.144,0.583,0,10.545711,4.5,4.5 +40464,0,0.127948,2,2,1,2,4,,5,8,Latson,Rd,940302,2.455,2.583,0,3.070748,3,4 +39102,0,1.923839,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,46.172138,0.15,4 +39103,0,1.3663,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,32.791203,0.15,4 +39104,0,1.063836,1,1,0,2,99,,5,5,Centroid Connector,,0,0,0,0,25.532061,0.15,4 +40662,0,0.021747,2,2,1,2,3,,4,3,Crooks,Rd,659810,10.52,10.542,0,0.521925,3.7,5 +40663,0,0.207319,2,2,0,2,3,,4,3,Crooks,Rd,659810,10.313,10.52,0,4.975648,3.7,5 +40146,-1,0.052201,0,2,0,2,4,,4,3,Grand River,Ave,4416578,0,0.052,0,1.252817,4.5,4.5 +40465,0,0.143996,2,2,1,2,4,,4,8,Latson,Rd,5490669,0,0.144,0,3.455896,4.5,4.5 +40466,-1,0.449001,0,2,0,2,4,DV2,4,3,Coolidge,Rd,4463391,2.513,2.961,0,10.776019,4.5,4.5 +39579,-1,0.035717,0,1,0,2,4,,5,5,Werkner,Rd,0,0,0,0,0.857214,3,4 +39578,1,0.035645,1,0,0,2,4,,5,5,M 52,,0,0,0,0,0.855471,3,4 +40650,0,0.028836,1,1,0,2,6,,3,1,Georgia,St,1586506,0,0.029,0,0.692073,7,4.5 +40651,0,0.23234,1,1,0,2,6,,3,1,Georgia,St,1586506,0.029,0.261,0,5.576161,7,4.5 +40653,0,0.235095,1,1,0,2,5,,2,7,Merchant,St,975607,0.059,0.294,0,5.642275,8.5,4.5 +40652,0,0.097505,1,1,0,2,5,,2,7,Quay,St,4502551,0.288,0.386,0,2.340119,8.5,4.5 +40658,0,0.214664,1,1,0,2,5,,4,7,Belle River,Ave,966610,1.072,1.287,0,5.151933,5.8,4.5 +40655,1,0.089356,1,0,0,2,5,DV2,2,7,McMorran,Blvd,5492776,0.272,0.362,0,2.144537,8.5,4.5 +40656,-1,0.08982,0,1,0,2,5,DV2,2,7,McMorran,Blvd,4500354,0.062,0.152,0,2.155675,8.5,4.5 +40660,0,0.013975,1,1,0,2,6,,5,3,Dunlap,Rd,627009,1.302,1.316,0,0.335397,5.8,6 +40661,0,1.136837,1,1,0,2,6,GRV,5,3,Dunlap,Rd,627010,3.828,4.964,0,27.284091,5.55,5 +40627,0,0.617247,1,1,0,2,5,,4,6,7th,St,4302993,0,0.617,0,14.813919,5.8,4.5 +40628,0,0.581032,1,1,0,2,4,,4,2,Grosse Ile,Pkwy,1692407,0.769,1.35,0,13.944775,4.5,4.5 +40629,0,0.613248,1,1,0,2,5,,4,2,River,Rd,1691206,1.312,1.925,0,14.717953,5.8,4.5 +40630,0,0.095428,1,1,0,2,4,,4,2,River Access,Rd,4710788,0,0.095,0,2.290282,4.5,4.5 +40631,-1,0.26561,0,2,0,2,3,DIV,3,2,Northline,Rd,4707653,0.139,0.404,0,6.374652,5,5 +40632,-1,0.01992,0,1,0,2,3,,3,2,Reeck,Rd,4705866,1.537,1.557,0,0.478081,5,5 +40633,0,0.022305,2,2,1,2,5,,5,2,Huron,Rd,1607304,2.39,2.412,0,0.535323,3.7,5 +40634,1,0.068043,1,0,0,1,2,ROF,3,2,N M 39/Van Born,RAMP,1589506,0.274,0.342,0,,2.24,5 +40635,-1,0.34385,0,2,0,2,5,,3,2,S M 39 Service Drive,,1595505,0.073,0.417,0,8.252407,8,4.5 +40636,1,0.018494,1,0,0,2,5,,3,2,Van Born/Southfield Cutoff,,1869602,0,0.019,0,0.443852,8,4.5 +40637,0,0.028889,1,1,0,2,5,,1,1,State,St,4718987,0,0.029,0,0.693334,8.5,4.5 +40638,-1,0.087392,0,2,0,1,5,,3,1,Kentfield,St,1590506,0.398,0.485,0,,8,4.5 +40639,1,0.041244,3,0,0,2,5,,3,1,E I 96 Service Drive,,4700002,0.445,0.486,0,0.989853,8,4.5 +40640,-1,0.048019,0,1,0,1,5,,3,1,Kentfield,St,5495061,0,0.048,0,,8,4.5 +40641,-1,0.107283,0,3,0,2,5,,3,1,W I 96 Service Drive,,1598908,0.128,0.235,0,2.574784,8,4.5 +40642,0,0.113678,2,2,0,2,3,,3,1,Grand River,Ave,1577408,5.137,5.251,0,2.728263,5,5 +40643,0,0.743395,1,1,0,2,6,,3,1,Strong,St,1631803,0,0.743,0,17.841491,7,4.5 +40644,0,0.23168,1,1,0,2,3,,3,1,Mount Elliott,St,1577808,4.009,4.241,0,5.56031,5,5 +40645,0,0.120864,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.507,0.628,0,2.900732,8,4.5 +40646,0,0.010615,1,1,0,2,5,,3,1,Saint Cyril,Ave,1633508,0.496,0.507,0,0.254761,8,4.5 +40647,0,0.04178,3,3,0,2,3,,3,1,Van Dyke,St,1577904,1.108,1.15,0,1.002713,5,5 +40648,0,0.494501,1,1,0,2,6,,3,1,Georgia,St,1631905,0,0.494,0,11.868035,7,4.5 +40649,0,0.026371,1,1,0,2,6,,3,1,Georgia,St,1631905,0.494,0.521,0,0.632896,7,4.5 +40590,-1,0.069475,0,1,0,2,4,,4,5,Geddes,Rd,5499930,0.066,0.135,0,1.66741,4.5,4.5 +40591,1,0.069427,1,0,0,2,4,,4,5,Geddes,Rd,4603888,0,0.069,0,1.666253,4.5,4.5 +40592,1,0.037617,1,0,0,2,5,,4,5,Ridge,Rd,1428402,1.588,1.625,0,0.902809,5.8,4.5 +40593,-1,0.041286,0,1,0,2,5,,4,5,Ridge,Rd,5499929,0,0.041,0,0.990872,5.8,4.5 +40594,1,0.018295,1,0,0,2,4,,4,5,Geddes,Rd,1448104,9.703,9.721,0,0.439082,4.5,4.5 +40595,1,0.018301,1,0,0,2,4,,4,5,Ridge,Rd,4603889,0,0.018,0,0.439228,4.5,4.5 +40596,-1,0.014827,0,1,0,2,4,,4,5,Geddes,Rd,5499930,0.051,0.066,0,0.355842,4.5,4.5 +40597,-1,0.017853,0,1,0,2,4,,4,5,Ridge,Rd,5499929,0.041,0.059,0,0.428474,4.5,4.5 +40598,0,0.133241,1,1,0,2,4,,2,1,3rd,St,4708767,0.848,0.981,0,3.197777,8,4.5 +40599,-1,0.018902,0,2,0,2,4,DV2,2,1,3rd,St,4708767,0.981,1,0,0.453657,8,4.5 +40600,1,0.017124,2,0,0,2,4,DV2,2,1,3rd,St,5500021,0,0.017,0,0.410971,8,4.5 +40616,0,0.097374,1,1,0,2,4,,5,8,Chilson/Brighton Cutoff,,4105305,0,0.097,0,2.336973,3,4 +40617,0,2.044633,1,1,0,2,6,GRV,5,8,Bauer,Rd,940108,0.589,2.633,0,49.071201,5.55,5 +40618,0,0.503126,1,1,0,2,5,,5,5,Manchester,Rd,1426204,0,0.503,0,12.075027,3.7,5 +40619,0,0.366118,1,1,0,2,5,,5,5,North,St,1426306,0,0.366,0,8.786838,3.7,5 +40620,0,0.130179,1,1,0,2,5,,5,5,Hayes,St,1452604,0,0.13,0,3.124289,3.7,5 +40621,0,0.1177,1,1,0,2,4,,5,5,Main,St,1425710,18.707,18.824,0,2.824796,3,4 +40622,0,0.163448,1,1,0,2,6,,5,5,Dewey,St,1426308,0,0.163,0,3.922763,5.8,6 +40623,0,0.138163,1,1,0,2,6,,5,5,McKinley,St,1451005,0.076,0.214,0,3.315923,5.8,6 +40624,0,0.04302,1,1,0,2,4,,4,5,Main,St,1446002,0.715,0.758,0,1.03247,4.5,4.5 +40625,0,0.292787,1,1,0,2,5,,4,5,Broad,St,4604061,0,0.293,0,7.026894,5.8,4.5 +40626,0,0.120536,1,1,0,2,5,,4,5,3rd,St,4603162,0.472,0.592,0,2.892869,5.8,4.5 +40562,1,0.021632,2,0,0,2,4,,4,3,Livernois,Rd,625408,10.149,10.17,0,0.519166,4.5,4.5 +40563,0,0.063496,2,2,1,2,4,,4,3,Hamlin,Rd,606606,0.109,0.173,0,1.523912,4.5,4.5 +40564,1,0.397043,2,0,0,2,4,DIV,4,3,Hamlin,Rd,606606,0.173,0.57,0,9.52903,4.5,4.5 +40565,-1,0.4068,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4416644,0,0.407,0,9.763193,4.5,4.5 +40566,1,0.461937,2,0,0,2,4,DIV,4,3,Hamlin,Rd,606606,0.57,1.031,0,11.086482,4.5,4.5 +40567,-1,0.455165,0,2,0,2,4,DIV,4,3,Hamlin,Rd,4416644,0.407,0.862,0,10.923964,4.5,4.5 +40568,0,0.456063,1,1,1,2,4,,4,3,Hamlin,Rd,606606,1.113,1.569,0,10.945518,4.5,4.5 +40569,0,0.231055,1,1,0,2,4,,4,3,Livernois,Rd,625408,7.212,7.443,0,5.545324,4.5,4.5 +40570,0,0.464435,1,1,0,2,4,,4,3,Livernois,Rd,625408,6.641,7.106,0,11.146437,4.5,4.5 +40571,1,0.04738,2,0,0,2,4,,4,3,Livernois,Rd,625408,7.106,7.153,0,1.137113,4.5,4.5 +40572,-1,0.049231,0,2,0,2,4,,4,3,Livernois,Rd,4416643,0,0.049,0,1.181554,4.5,4.5 +40573,-1,0.018065,0,2,0,2,4,,4,3,Livernois,Rd,4416643,0.049,0.067,0,0.43357,4.5,4.5 +40574,1,0.018888,2,0,0,2,4,,4,3,Livernois,Rd,625408,7.153,7.172,0,0.453319,4.5,4.5 +40575,1,0.04021,2,0,0,2,4,,4,3,Livernois,Rd,625408,7.172,7.212,0,0.965037,4.5,4.5 +40576,-1,0.040256,0,2,0,2,4,,4,3,Livernois,Rd,4416643,0.067,0.108,0,0.966142,4.5,4.5 +40577,-1,0.019352,0,2,0,2,4,,4,3,Hamlin,Rd,4416644,0.862,0.881,0,0.464448,4.5,4.5 +40578,-1,0.059352,0,2,0,2,4,,4,3,Hamlin,Rd,4416644,0.881,0.94,0,1.424453,4.5,4.5 +40579,1,0.060041,2,0,0,2,4,,4,3,Hamlin,Rd,606606,1.053,1.113,0,1.440972,4.5,4.5 +40580,1,0.021405,2,0,0,2,4,,4,3,Hamlin,Rd,606606,1.031,1.053,0,0.51372,4.5,4.5 +40581,0,0.261249,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,6.26997,0.15,4 +40582,0,1.176934,1,1,0,2,5,,5,5,Ridge,Rd,4603889,0.062,1.239,0,28.246416,3.7,5 +40583,0,0.43449,1,1,0,2,4,,4,5,Geddes,Rd,4603888,0.069,0.504,0,10.427749,4.5,4.5 +40584,0,0.451017,1,1,0,2,4,,4,5,Geddes,Rd,1448104,9.204,9.655,0,10.824396,4.5,4.5 +40585,0,0.965903,1,1,0,2,5,,4,5,Ridge,Rd,1428402,0.622,1.588,0,23.181673,5.8,4.5 +40586,1,0.047209,1,0,0,2,4,,4,5,Geddes,Rd,1448104,9.655,9.703,0,1.133006,4.5,4.5 +39642,-1,0.003223,0,1,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39643,1,1.623142,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39599,0,0.769467,1,1,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,18.467219,4.5,4.5 +39598,1,0.269987,2,0,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,6.479694,4.5,4.5 +39597,-1,0.270534,0,2,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,6.492815,4.5,4.5 +39596,1,0.024148,2,0,0,2,4,,4,3,Judah,Rd,0,0,0,0,0.57954,4.5,4.5 +39595,1,0.024794,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.595044,4.5,4.5 +39594,-1,0.025363,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.608716,4.5,4.5 +39593,-1,0.023886,0,2,0,2,4,,4,3,Judah,Rd,0,0,0,0,0.573262,4.5,4.5 +39592,1,0.075951,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.822831,4.5,4.5 +39591,-1,0.075441,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.810581,4.5,4.5 +39590,0,0.285807,2,2,1,2,4,,4,3,Baldwin,Rd,0,0,0,0,6.859373,4.5,4.5 +39589,1,0.066135,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.587247,4.5,4.5 +39588,-1,0.068393,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.641423,4.5,4.5 +39587,1,0.030084,2,0,0,2,4,,4,3,Gregory,Rd,0,0,0,0,0.722011,4.5,4.5 +39586,1,0.030684,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.736412,4.5,4.5 +39585,-1,0.031051,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.745223,4.5,4.5 +39584,-1,0.030096,0,2,0,2,4,,4,3,Gregory,Rd,0,0,0,0,0.722301,4.5,4.5 +39580,-1,0.033872,0,1,0,2,4,,5,5,M 52,,0,0,0,0,0.812927,3,4 +40019,0,0.166627,2,2,1,2,3,,4,3,Orchard Lake,Rd,634003,4.771,4.937,0,3.999042,3.7,5 +40067,0,0.374628,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,8.991065,0.15,4 +40068,0,0.225548,1,1,0,2,99,,3,3,Centroid Connector,,0,0,0,0,5.413164,0.15,4 +40069,1,0.260127,2,0,0,2,4,DIV,4,3,Featherstone,,616508,0.103,0.363,0,6.243051,4.5,4.5 +40612,0,1.004345,1,1,0,2,6,GRV,5,8,Crooked Lake,Rd,940406,2.05,3.053,0,24.104287,5.55,5 +40613,0,1.014404,1,1,0,2,6,,5,8,Crooked Lake,Rd,940406,3.053,4.067,0,24.345686,5.8,6 +39804,-1,0.022626,0,2,0,2,4,,4,3,Oakley Park,Rd,4416630,0.066,0.089,0,0.543015,4.5,4.5 +40032,-1,0.063648,0,3,0,2,3,DIV,4,3,Orchard Lake,Rd,5499978,0.097,0.161,0,1.527561,3.7,5 +39799,0,0.430991,1,1,0,2,4,,4,3,Martin,Rd,631703,0.085,0.516,0,10.343773,4.5,4.5 +39798,0,0.297055,1,1,0,2,4,,4,3,Oakley Park,Rd,629707,2.933,3.23,0,7.129313,4.5,4.5 +39803,-1,0.066308,0,2,0,2,4,,4,3,Oakley Park,Rd,4416630,0,0.066,0,1.591384,4.5,4.5 +39611,1,0.031235,2,0,0,2,4,,4,3,Waldon,Rd,0,0,0,0,0.749633,4.5,4.5 +39610,1,0.032594,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.782252,4.5,4.5 +39609,-1,0.032802,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.787244,4.5,4.5 +39608,-1,0.031107,0,2,0,2,4,,4,3,Waldon,Rd,0,0,0,0,0.746562,4.5,4.5 +39607,1,0.066126,2,0,0,2,4,,4,3,Waldon,Rd,0,0,0,0,1.587016,4.5,4.5 +39606,-1,0.067658,0,2,0,2,4,,4,3,Waldon,Rd,0,0,0,0,1.623788,4.5,4.5 +39605,0,0.348165,1,1,0,2,5,,4,3,Waldon,Rd,0,0,0,0,8.355964,5.8,4.5 +39604,-1,0.073438,0,2,0,2,4,,4,3,Waldon,Rd,0,0,0,0,1.762522,4.5,4.5 +39603,1,0.070951,2,0,0,2,4,,4,3,Waldon,Rd,0,0,0,0,1.702829,4.5,4.5 +39602,0,0.981105,1,1,0,2,5,,4,3,Waldon,Rd,0,0,0,0,23.546521,5.8,4.5 +39601,1,0.077783,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.866794,4.5,4.5 +39600,-1,0.077776,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,1.866613,4.5,4.5 +39613,1,0.475566,2,0,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,11.413589,4.5,4.5 +39612,-1,0.478161,0,2,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,11.475859,4.5,4.5 +39619,1,0.035593,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.854224,4.5,4.5 +39618,-1,0.035941,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.862577,4.5,4.5 +39617,-1,0.037107,0,2,0,2,4,,4,3,Maybee,Rd,0,0,0,0,0.890579,4.5,4.5 +39616,-1,0.078466,0,2,0,2,4,,4,3,Maybee,Rd,0,0,0,0,1.883176,4.5,4.5 +39615,1,0.0752,2,0,0,2,4,,4,3,Maybee,Rd,0,0,0,0,1.804799,4.5,4.5 +39614,0,0.859086,1,1,0,2,5,,4,3,Maybee,Rd,0,0,0,0,20.618075,5.8,4.5 +39634,-1,0.002997,0,1,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39633,-1,0.269122,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39632,1,0.319697,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39631,-1,3.870627,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39630,1,3.555608,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39629,1,0.206149,2,0,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,4.94757,4.5,4.5 +39628,-1,0.206584,0,2,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,4.958023,4.5,4.5 +39627,1,0.031154,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.747706,4.5,4.5 +39626,1,0.034336,2,0,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.824059,4.5,4.5 +39625,-1,0.032938,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.790522,4.5,4.5 +39624,-1,0.03049,0,2,0,2,4,,4,3,Baldwin,Rd,0,0,0,0,0.731756,4.5,4.5 +39623,1,0.238308,2,0,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,5.719389,4.5,4.5 +39622,-1,0.240313,0,2,0,2,4,DIV,4,3,Baldwin,Rd,0,0,0,0,5.767522,4.5,4.5 +39621,0,0.726268,1,1,0,2,99,,4,3,Centroid Connector,,0,0,0,0,17.430425,0.15,4 +39620,1,0.036506,2,0,0,2,4,,4,3,Maybee,Rd,0,0,0,0,0.876151,4.5,4.5 +36628,0,0.061802,3,3,1,2,3,,3,1,Livernois,Ave,1581701,5.171,5.233,0,1.483253,5,5 +39837,-1,0.12908,0,2,0,2,3,,4,3,Pontiac,Trl,4463510,0,0.129,0,3.097931,3.7,5 +39836,1,0.13052,2,0,0,2,3,,4,3,Pontiac,Trl,657404,9.649,9.78,0,3.13247,3.7,5 +39835,1,0.042441,2,0,0,2,3,,4,3,Pontiac,Trl,657404,9.607,9.649,0,1.018578,3.7,5 +39831,0,0.119867,2,2,1,2,3,,4,3,Pontiac,Trl,657404,9.78,9.899,0,2.876817,3.7,5 +39830,1,0.880756,3,0,0,2,3,DIV,4,3,S M 5,,4402005,0.049,0.93,0,21.138152,3.7,5 +39829,-1,0.885116,0,3,0,2,3,DIV,4,3,N M 5,,4402006,0.044,0.928,0,21.242775,3.7,5 +39828,-1,0.209775,0,2,0,2,4,DIV,4,3,Martin,Pkwy,4416635,0.695,0.905,0,5.034612,4.5,4.5 +39827,1,0.207543,2,0,0,2,4,DIV,4,3,Martin,Pkwy,4403012,0.962,1.17,0,4.981028,4.5,4.5 +39635,1,0.715392,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39645,-1,1.568873,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39644,1,0.004502,1,0,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39657,-1,0.005283,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39656,1,0.003864,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39651,1,0.222405,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39646,1,0.002639,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39655,-1,0.219402,0,1,0,7,2,,5,8,S US 23 Flex,,0,0,0,0,,1.02,7 +39654,1,0.240428,1,0,0,8,2,,5,8,N US 23 Flex,,0,0,0,0,,1.02,7 +39653,-1,0.183163,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39652,-1,0.004296,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39650,1,0.00358,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +39649,-1,0.43509,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39648,-1,0.004728,0,1,0,7,2,,5,5,S US 23 Flex,,0,0,0,0,,1.02,7 +39647,1,0.405508,1,0,0,8,2,,5,5,N US 23 Flex,,0,0,0,0,,1.02,7 +36668,1,0.210851,2,0,0,2,4,DV2,2,1,Anthony Wayne,Dr,0,0,0,0,5.060427,8,4.5 +36669,1,0.13751,2,0,0,2,4,DV2,2,1,Palmer,St,0,0,0,0,3.300238,8,4.5 +36670,0,0.011089,1,1,0,2,4,,2,1,Second,Ave,0,0,0,0,0.266141,8,4.5 +36671,0,0.096083,1,1,0,2,4,,2,1,Second,Ave,0,0,0,0,2.305999,8,4.5 +36672,1,0.035488,1,0,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,0.851724,8,4.5 +36673,1,0.071664,1,0,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,1.719928,8,4.5 +36674,-1,0.034305,0,1,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,0.823322,8,4.5 +36675,-1,0.071697,0,1,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,1.720717,8,4.5 +36676,1,0.225209,1,0,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,5.40502,8,4.5 +36677,-1,0.223611,0,1,0,2,4,DV2,2,1,Second,Ave,0,0,0,0,5.36667,8,4.5 +36678,0,0.046272,1,1,1,2,4,,2,1,Second,Ave,0,0,0,0,1.110534,8,4.5 +36679,0,0.055076,1,1,1,2,4,,2,1,Second,Ave,0,0,0,0,1.321831,8,4.5 +36680,0,0.077948,1,1,1,2,4,,2,1,Second,Ave,0,0,0,0,1.870748,8,4.5 +36681,0,0.017679,1,1,1,2,4,,2,1,Second,Ave,0,0,0,0,0.424298,8,4.5 +40300,1,0.025404,1,0,0,2,5,,2,3,Center,,4415777,0,0.025,0,0.609695,8.5,4.5 +40299,0,0.043668,1,1,0,2,5,,2,3,5th,St,4415779,0,0.044,0,1.048034,8.5,4.5 +40862,-1,0.296138,0,2,0,2,4,DIV,3,3,Evergreen,Rd,0,0,0,0,7.107321,6,4.5 +37058,1,0.011535,1,0,0,2,5,,3,3,Morgan,Blvd,661904,0.034,0.045,0,0.276849,8,4.5 +37057,-1,0.086801,0,1,0,2,5,,3,3,Taft,Rd,4416333,0.093,0.179,0,2.083235,8,4.5 +37056,-1,0.010859,0,1,0,2,5,,3,3,Taft,Rd,4416333,0.082,0.093,0,0.260611,8,4.5 +37055,-1,0.081662,0,1,0,2,5,,3,3,Taft,Rd,4416333,0,0.082,0,1.959884,8,4.5 +37054,1,0.0854,1,0,0,2,5,,3,3,Taft,Rd,656608,0.413,0.498,0,2.049602,8,4.5 +37052,1,0.081415,1,0,0,2,5,,3,3,Taft,Rd,656608,0.319,0.4,0,1.953958,8,4.5 +37019,0,0.638363,1,1,0,2,5,,4,3,West Maple,Rd,657406,4.446,5.084,0,15.320724,5.8,4.5 +37018,0,0.236085,1,1,0,2,5,,4,7,Michigan,St,966103,0,0.236,0,5.66604,5.8,4.5 +37017,0,0.061721,1,1,0,2,5,,4,7,Liberty,St,966105,0.588,0.65,0,1.481309,5.8,4.5 +37078,-1,0.074577,0,3,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0.096,0.17,0,1.789846,3.7,5 +37016,0,0.061204,1,1,0,2,5,,4,7,Liberty,St,966105,0.527,0.588,0,1.468907,5.8,4.5 +37164,0,0.101037,1,1,0,3,96,,3,2,Walk Link,,0,0,0,0,2.424884,0.15,4 +37015,0,0.116349,1,1,0,2,5,,4,7,Michigan,St,966103,0.236,0.352,0,2.792381,5.8,4.5 +37014,0,0.060788,1,1,0,2,5,,4,7,Howard,St,974707,0.598,0.659,0,1.458914,5.8,4.5 +37059,-1,0.012997,0,1,0,2,5,,3,3,Morgan,Blvd,4416334,0.032,0.045,0,0.311919,8,4.5 +37160,0,10.789584,1,1,0,0,82,,3,2,Norfolk Southern Railway,,4711929,0,10.786,1,,0.15,4 +37060,1,0.070203,2,0,0,2,4,,3,3,Evergreen,Rd,666003,1.815,1.885,0,1.684882,6,4.5 +37013,0,0.113863,1,1,0,2,5,,4,7,Washington,St,974805,0,0.114,0,2.732714,5.8,4.5 +37067,1,0.157376,1,0,0,1,2,RON,3,3,Lahser/N M 10,RAMP,4462981,0,0.157,0,,1.09,4 +37012,0,0.170834,1,1,0,2,5,,4,7,Washington,St,974805,0.114,0.285,0,4.10001,5.8,4.5 +37009,0,0.058211,1,1,0,2,5,,4,7,Clay,St,966109,0,0.058,0,1.397066,5.8,4.5 +37011,0,0.062809,1,1,0,2,5,,4,7,Clay,St,966109,0.058,0.121,0,1.507427,5.8,4.5 +37010,0,0.054645,1,1,0,2,5,,4,7,Michigan,St,974301,0,0.055,0,1.311478,5.8,4.5 +37061,1,0.01542,3,0,0,2,5,,3,3,Northwestern,Hwy,710508,2.396,2.411,0,0.370071,8,4.5 +37062,-1,0.01458,0,3,0,2,5,,3,3,Northwestern,Hwy,4462982,1.338,1.353,0,0.349914,8,4.5 +37063,-1,0.082175,0,2,0,2,4,,3,3,Evergreen,Rd,4416556,0,0.082,0,1.972196,6,4.5 +37065,-1,0.047452,0,3,0,2,4,,3,3,Evergreen,Rd,4416556,0.151,0.199,0,1.138846,6,4.5 +37064,-1,0.068976,0,3,0,2,4,,3,3,Evergreen,Rd,4416556,0.082,0.151,0,1.655429,6,4.5 +39855,0,0.008049,2,2,0,2,4,,1,1,Bagley,St,1584404,0.065,0.073,0,0.193185,8,4.5 +37083,-1,0.31924,0,3,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0.17,0.49,0,7.661764,3.7,5 +37081,1,0.295704,3,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,1.011,1.307,0,7.096904,3.7,5 +37104,-1,0.076119,0,3,0,2,4,DIV,4,3,Baldwin,Rd,4414691,0.712,0.788,0,1.826845,4.5,4.5 +39857,-1,0.057739,0,2,0,2,4,DV2,1,1,3rd,St,4718979,0.218,0.276,0,1.385741,8,4.5 +37101,1,0.299011,1,0,0,1,1,RON,4,3,Baldwin/N I 75,RAMP,669002,0.023,0.322,0,,1.09,4 +37097,-1,0.027228,0,3,0,2,3,DIV,4,3,Baldwin,Rd,4414691,0.685,0.712,0,0.653484,3.7,5 +37125,1,0.265029,1,0,0,1,1,RON,3,2,W 6 Mile/W I 96,RAMP,1607604,0,0.265,0,,1.09,4 +37099,1,0.022717,3,0,0,2,3,DIV,4,3,Baldwin,Rd,655009,1.529,1.551,0,0.545197,3.7,5 +41315,0,0.054396,1,1,0,2,5,,2,5,State,St,1427508,6.916,6.971,0,1.305513,8.5,4.5 +41263,0,0.10982,1,1,0,2,7,,2,5,Forest,Ave,1429307,0,0.11,0,2.635673,8.5,4.5 +41266,0,0.089266,1,1,0,2,7,,2,5,Forest,Ave,1429307,0.11,0.199,0,2.142395,8.5,4.5 +41267,0,0.202252,1,1,0,2,7,,2,5,University,Ave,1441604,0.334,0.537,0,4.854053,8.5,4.5 +41268,0,0.201019,1,1,0,2,7,,2,5,Church,St,1429305,0.284,0.485,0,4.824447,8.5,4.5 +41270,0,0.054497,1,1,0,2,7,,2,5,Jefferson,St,1453005,0.106,0.16,0,1.307923,8.5,4.5 +41271,0,0.058005,1,1,0,2,7,,2,5,Jefferson,St,1453005,0.16,0.218,0,1.392114,8.5,4.5 +41272,0,0.177764,1,1,0,2,7,,2,5,Church,St,1429305,0.485,0.662,0,4.266342,8.5,4.5 +41273,0,0.115251,1,1,0,2,7,,2,5,Maynard,St,1444802,0,0.115,0,2.766013,8.5,4.5 +41274,0,0.10523,1,1,0,2,7,,1,5,Maynard,St,1444802,0.115,0.22,0,2.525517,8.5,4.5 +41275,0,0.063331,1,1,0,2,7,,1,5,Washington,St,1430707,1.273,1.336,0,1.51994,8.5,4.5 +41276,0,0.117959,1,1,0,2,7,,1,5,Thayer,St,1452409,0,0.118,0,2.831012,8.5,4.5 +41277,0,0.16169,1,1,0,2,7,,1,5,Washington,St,1430707,1.111,1.273,0,3.880553,8.5,4.5 +41278,0,0.105312,1,1,0,2,7,,1,5,Washington,St,1430707,1.006,1.111,0,2.527492,8.5,4.5 +41279,0,0.126379,1,1,0,2,7,,2,5,Washington,St,1430707,1.336,1.462,0,3.033096,8.5,4.5 +41280,0,0.120862,1,1,0,2,7,,2,5,Fletcher,St,1430307,0,0.121,0,2.900698,8.5,4.5 +41281,0,0.063284,1,1,0,2,7,,1,5,Washington,St,1430707,0.942,1.006,0,1.518816,8.5,4.5 +41282,0,0.063869,1,1,0,2,7,,1,5,Washington,St,1430707,0.879,0.942,0,1.53286,8.5,4.5 +41283,0,0.064779,1,1,0,2,7,,1,5,Washington,St,1430707,0.814,0.879,0,1.5547,8.5,4.5 +41284,0,0.062413,1,1,0,2,7,,1,5,Washington,St,1430707,0.751,0.814,0,1.497913,8.5,4.5 +41285,0,0.063649,1,1,0,2,7,,2,5,Fletcher,St,1430307,0.121,0.184,0,1.527582,8.5,4.5 +41316,-1,0.068124,0,3,0,2,4,,1,5,5th,Ave,1430303,0.791,0.859,0,1.634981,8,4.5 +41287,1,0.274804,1,0,0,2,7,,2,5,Ann,St,4604073,0,0.275,0,6.59529,8.5,4.5 +41288,1,0.111974,1,0,0,2,7,,1,5,Ann,St,1430708,0.31,0.422,0,2.687369,8.5,4.5 +41290,0,0.063764,1,1,0,2,7,,1,5,Ann,St,1430708,0.246,0.31,0,1.530337,8.5,4.5 +41291,1,0.145302,1,0,0,2,7,,2,5,Ann,St,4600019,0,0.145,0,3.48724,8.5,4.5 +41292,0,0.063818,1,1,0,2,7,,1,5,Ann,St,1430708,0.183,0.246,0,1.531636,8.5,4.5 +41293,0,0.066009,1,1,0,2,7,,1,5,Ann,St,1430708,0.117,0.183,0,1.584217,8.5,4.5 +41294,0,0.06033,1,1,0,2,7,,1,5,Ann,St,1430708,0.056,0.117,0,1.447926,8.5,4.5 +41295,-1,0.142522,0,1,0,2,7,,2,5,Catherine,St,4604074,0,0.143,0,3.42053,8.5,4.5 +41296,-1,0.125588,0,1,0,2,7,,2,5,Catherine,St,4604074,0.143,0.268,0,3.014104,8.5,4.5 +41318,0,0.064189,1,1,0,2,5,,1,5,4th,Ave,1430302,0.438,0.502,0,1.540545,8.5,4.5 +41298,-1,0.112141,0,1,0,2,7,,1,5,Catherine,St,1430709,0.254,0.366,0,2.691396,8.5,4.5 +41317,1,0.051991,2,0,0,2,4,,1,5,Division,St,1430304,0.935,0.987,0,1.247791,8,4.5 +41300,0,0.064871,1,1,1,2,7,,1,5,Catherine,St,1430709,0.189,0.254,0,1.55691,8.5,4.5 +41301,0,0.147519,1,1,0,2,7,,2,5,Catherine,St,4604074,0.268,0.416,0,3.540445,8.5,4.5 +41302,0,0.062767,1,1,1,2,7,,1,5,Catherine,St,1430709,0.126,0.189,0,1.506402,8.5,4.5 +41303,0,0.213414,1,1,0,2,7,,3,5,Fuller,Ct,1448104,0.982,1.196,0,5.121945,7,4.5 +41306,0,0.288907,1,1,0,2,7,,3,5,Fuller,Ct,1448104,0.694,0.982,0,6.933779,7,4.5 +41308,1,0.279421,1,0,0,2,9,,3,5,Bonisteel,Blvd,4606011,0.22,0.499,0,6.706104,7,4.5 +41309,0,0.192161,1,1,0,2,9,,3,5,Beal,Ave,1443410,0,0.192,0,4.611852,7,4.5 +41310,-1,0.281037,0,1,0,2,9,,3,5,Bonisteel,Blvd,4603256,0.257,0.538,0,6.744895,7,4.5 +41311,0,0.005314,1,1,0,2,9,,3,5,Beal,Ave,1443410,0.192,0.197,0,0.127546,7,4.5 +41312,0,0.291763,1,1,0,2,9,,3,5,Beal,Ave,1443410,0.197,0.489,0,7.00231,7,4.5 +41507,1,0.230422,2,0,0,1,1,FCD,3,8,E I 96 CD,,0,0,0,0,,0.58,7 +41506,1,0.019052,1,0,0,1,1,FCD,3,8,E I 96 CD,,0,0,0,0,,0.58,7 +41509,-1,0.32752,0,2,0,1,1,,5,7,W I 69,,0,0,0,0,,1.02,7 +41508,1,0.467038,1,0,0,1,1,RON,3,8,Spencer/E I 96,RAMP,0,0,0,0,,1.09,4 +41510,-1,1.256145,0,2,0,1,2,,5,7,I 69 BL,,0,0,0,0,,1.02,7 +41513,-1,0.35605,0,1,0,1,1,,5,7,W I 69,,0,0,0,0,,1.02,7 +41511,-1,0.344169,0,2,0,1,2,,5,7,I 69 BL,,0,0,0,0,,1.02,7 +41512,1,0.172514,1,0,0,1,1,RFF,5,7,W I 69/W I 94,RAMP,0,0,0,0,,1.02,7 +41521,1,0.173752,2,0,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,4.170046,5.8,4.5 +41523,0,0.0147,1,1,0,2,7,,4,2,Superior,Rd,0,0,0,0,0.352789,6.55,4.5 +41516,0,1.086078,1,1,1,2,7,,4,2,Lotz,Rd,0,0,0,0,26.065873,6.55,4.5 +41520,1,0.160403,2,0,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,3.849672,5.8,4.5 +41519,1,0.955898,2,0,0,2,5,DV2,4,3,Centerpoint,Pkwy,0,0,0,0,22.94156,5.8,4.5 +41517,0,0.528471,1,1,1,2,7,,4,2,Lotz,Rd,0,0,0,0,12.683312,6.55,4.5 +41518,0,0.473506,2,2,1,2,3,,3,2,Ford,Rd,0,0,0,0,11.364133,5,5 +41524,0,0.139691,2,2,0,2,3,,3,1,Warren,Ave,0,0,0,0,3.352584,5,5 +41526,0,0.169304,2,2,0,2,3,,3,1,Warren,Ave,0,0,0,0,4.063306,5,5 +41527,0,0.068002,2,2,0,2,3,,3,1,Warren,Ave,0,0,0,0,1.632037,5,5 +41528,-1,0.115753,0,2,0,2,5,,3,1,W I 94 Service Drive,,0,0,0,0,2.778084,8,4.5 +41529,0,0.170399,1,1,0,2,7,,3,1,Lemay,St,0,0,0,0,4.089586,7,4.5 +41530,1,0.090973,2,0,0,2,5,,3,1,E I 94 Service Drive,,0,0,0,0,2.18336,8,4.5 +41531,0,0.02062,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0.642,1.066,0,0.494887,8,4.5 +41532,0,0.233668,1,1,0,2,7,,3,1,Lemay,St,0,0,0,0,5.60803,7,4.5 +41533,0,0.255587,2,2,0,2,3,,3,1,Warren,Ave,4700429,5.051,5.435,0,6.134095,5,5 +41534,0,0.276496,1,1,0,2,5,,3,1,Shoemaker,St,1713304,0.642,1.066,0,6.635895,8,4.5 +41535,0,0.294126,1,1,0,2,7,,3,1,Lemay,St,0,0,0,0,7.059017,7,4.5 +41537,-1,0.493085,0,2,0,2,7,,4,2,Vining,Rd,0,0,0,0,11.834046,6.55,4.5 +41538,1,0.493155,2,0,0,2,7,DIV,4,2,Vining,Rd,0,0,0,0,11.835727,6.55,4.5 +41539,0,0.049096,1,1,0,2,4,,4,2,Ecorse,Rd,0,0,0,0,1.178295,4.5,4.5 +41540,0,0.991725,1,1,0,2,4,,4,2,Ecorse,Rd,0,0,0,0,23.801396,4.5,4.5 diff --git a/activitysim/examples/prototype_mtc_extended/test/configs_mp/logging.yaml b/activitysim/examples/prototype_mtc_extended/test/configs_mp/logging.yaml index e932009c5..64333d141 100644 --- a/activitysim/examples/prototype_mtc_extended/test/configs_mp/logging.yaml +++ b/activitysim/examples/prototype_mtc_extended/test/configs_mp/logging.yaml @@ -28,7 +28,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET @@ -37,21 +38,20 @@ logging: class: logging.StreamHandler stream: ext://sys.stdout formatter: simpleFormatter - #level: NOTSET - level: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [WARNING, NOTSET] + level: + if_sub_task: WARNING + if_not_sub_task: NOTSET formatters: simpleFormatter: class: logging.Formatter - #format: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' - format: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [ - '%(processName)-10s %(levelname)s - %(name)s - %(message)s', - '%(levelname)s - %(name)s - %(message)s'] + format: + if_sub_task: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' + if_not_sub_task: '%(levelname)s - %(name)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' - diff --git a/activitysim/examples/prototype_mtc_extended/test/prototype_mtc_extended_reference_pipeline.zip b/activitysim/examples/prototype_mtc_extended/test/prototype_mtc_extended_reference_pipeline.zip new file mode 100644 index 000000000..9dda15936 Binary files /dev/null and b/activitysim/examples/prototype_mtc_extended/test/prototype_mtc_extended_reference_pipeline.zip differ diff --git a/activitysim/examples/prototype_mtc_extended/test/test_mtc_extended.py b/activitysim/examples/prototype_mtc_extended/test/test_mtc_extended.py index 758a291d5..f78b7f8b9 100644 --- a/activitysim/examples/prototype_mtc_extended/test/test_mtc_extended.py +++ b/activitysim/examples/prototype_mtc_extended/test/test_mtc_extended.py @@ -1,23 +1,25 @@ +from __future__ import annotations + # ActivitySim # See full license in LICENSE.txt. import os import subprocess import sys +from pathlib import Path import pandas as pd import pandas.testing as pdt import pkg_resources +import pytest -from activitysim.core import inject - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +from activitysim.core import configuration, test, workflow def _test_prototype_mtc_extended( - multiprocess=False, sharrow=False, shadow_pricing=True + multiprocess=False, + sharrow=False, + shadow_pricing=True, + via_cli=True, ): def example_path(dirname): resource = os.path.join("examples", "prototype_mtc_extended", dirname) @@ -37,7 +39,7 @@ def regress(): if sharrow: regress_suffix += "-sharrow" - output_dir = "output" + output_dir = f"output_{int(sharrow)}{int(shadow_pricing)}" regress_trips_df = pd.read_csv( test_path(f"regress/final_trips{regress_suffix}.csv") ) @@ -63,19 +65,32 @@ def regress(): if i not in regress_accessibility_df.columns ] ) - pdt.assert_frame_equal( - final_accessibiliy_df, regress_accessibility_df, rtol=1.0e-4 + test.assert_frame_substantively_equal( + final_accessibiliy_df, + regress_accessibility_df, + rtol=1.0e-4, + check_dtype=False, ) - pdt.assert_frame_equal(final_trips_df, regress_trips_df, rtol=1.0e-4) - pdt.assert_frame_equal(final_vehicles_df, regress_vehicles_df, rtol=1.0e-4) + test.assert_frame_substantively_equal( + final_trips_df, regress_trips_df, rtol=1.0e-4 + ) + test.assert_frame_substantively_equal( + final_vehicles_df, regress_vehicles_df, rtol=1.0e-4 + ) + kwargs = { + "configs_dir": [], + } file_path = os.path.join(os.path.dirname(__file__), "simulation.py") shadowprice_configs = ( [] if shadow_pricing else ["-c", test_path("no-shadow-pricing")] ) + if shadow_pricing: + kwargs["configs_dir"].append(test_path("no-shadow-pricing")) if sharrow: sh_configs = ["-c", example_path("configs_sharrow")] + kwargs["configs_dir"].append(example_path("configs_sharrow")) else: sh_configs = [] if multiprocess: @@ -85,16 +100,20 @@ def regress(): "-c", example_path("configs_mp"), ] + kwargs["configs_dir"].append(test_path("configs_mp")) + kwargs["configs_dir"].append(example_path("configs_mp")) elif sharrow: mp_configs = [ "-c", test_path("configs"), ] + kwargs["configs_dir"].append(test_path("configs")) else: mp_configs = [ "-c", test_path("configs"), ] + kwargs["configs_dir"].append(test_path("configs")) run_args = ( shadowprice_configs + sh_configs @@ -107,16 +126,27 @@ def regress(): "-d", example_mtc_path("data"), "-o", - test_path("output"), + test_path(f"output_{int(sharrow)}{int(shadow_pricing)}"), + "--data_model", + example_path("data_model"), ] ) + kwargs["configs_dir"].append(example_path("configs")) + kwargs["configs_dir"].append(example_mtc_path("configs")) + kwargs["data_dir"] = [example_mtc_path("data")] + kwargs["output_dir"] = test_path("output") + if os.environ.get("GITHUB_ACTIONS") == "true": subprocess.run(["coverage", "run", "-a", file_path] + run_args, check=True) - else: + elif via_cli: subprocess.run( [sys.executable, "-m", "activitysim", "run"] + run_args, check=True ) + else: + import activitysim.abm + state = workflow.State.make_default(**kwargs) + state.run.all() regress() @@ -146,8 +176,138 @@ def test_prototype_mtc_extended_mp_shadow_pricing(): _test_prototype_mtc_extended(multiprocess=True, sharrow=False, shadow_pricing=True) -if __name__ == "__main__": +EXPECTED_MODELS = [ + "input_checker", + "initialize_proto_population", + "compute_disaggregate_accessibility", + "initialize_landuse", + "initialize_households", + "compute_accessibility", + "school_location", + "workplace_location", + "auto_ownership_simulate", + "vehicle_type_choice", + "free_parking", + "cdap_simulate", + "mandatory_tour_frequency", + "mandatory_tour_scheduling", + "school_escorting", + "joint_tour_frequency", + "joint_tour_composition", + "joint_tour_participation", + "joint_tour_destination", + "joint_tour_scheduling", + "non_mandatory_tour_frequency", + "non_mandatory_tour_destination", + "non_mandatory_tour_scheduling", + "vehicle_allocation", + "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", + "write_data_dictionary", + "track_skim_usage", + "write_trip_matrices", + "write_tables", +] + + +def test_prototype_mtc_extended_progressive(): + import activitysim.abm # register components + + state = workflow.create_example("prototype_mtc_extended", temp=True) + + state.settings.households_sample_size = 10 + state.settings.use_shadow_pricing = False + state.settings.want_dest_choice_sample_tables = False + state.settings.want_dest_choice_presampling = True + state.settings.recode_pipeline_columns = False + state.settings.output_tables = configuration.OutputTables( + h5_store=False, + action="include", + prefix="final_", + sort=True, + tables=[ + configuration.OutputTable( + tablename="trips", + decode_columns=dict( + origin="land_use.zone_id", destination="land_use.zone_id" + ), + ), + "vehicles", + "proto_disaggregate_accessibility", + ], + ) + + assert state.settings.models == EXPECTED_MODELS + assert state.settings.chunk_size == 0 + assert state.settings.sharrow == False + ref_target = Path(__file__).parent.joinpath( + "prototype_mtc_extended_reference_pipeline.zip" + ) + + test.progressive_checkpoint_test( + state, ref_target, EXPECTED_MODELS, name="prototype_mtc_extended" + ) + + +@pytest.mark.parametrize( + "chunksize", + [ + 100_000_000, # will sometimes trigger chunking + 999_999_999_999, # will never actually trigger chunking + ], +) +def test_prototype_mtc_extended_with_chunking(chunksize): + import activitysim.abm # register components + + state = workflow.create_example("prototype_mtc_extended", temp=True) + + state.settings.households_sample_size = 10 + state.settings.use_shadow_pricing = False + state.settings.want_dest_choice_sample_tables = False + state.settings.want_dest_choice_presampling = True + state.settings.recode_pipeline_columns = False + state.settings.output_tables = configuration.OutputTables( + h5_store=False, + action="include", + prefix="final_", + sort=True, + tables=[ + configuration.OutputTable( + tablename="trips", + decode_columns=dict( + origin="land_use.zone_id", destination="land_use.zone_id" + ), + ), + "vehicles", + "proto_disaggregate_accessibility", + ], + ) + state.settings.chunk_size = chunksize + state.settings.chunk_training_mode = "training" + + assert state.settings.models == EXPECTED_MODELS + assert state.settings.sharrow == False + assert state.settings.chunk_size == chunksize + + test.progressive_checkpoint_test( + state, + Path(__file__).parent.joinpath("prototype_mtc_extended_reference_pipeline.zip"), + EXPECTED_MODELS, + name="prototype_mtc_extended_with_chunking", + ) + + +if __name__ == "__main__": test_prototype_mtc_extended() test_prototype_mtc_extended_sharrow() test_prototype_mtc_extended_mp() diff --git a/activitysim/examples/prototype_mwcog/configs/logging.yaml b/activitysim/examples/prototype_mwcog/configs/logging.yaml index 5fc7798a3..c9cd6a100 100644 --- a/activitysim/examples/prototype_mwcog/configs/logging.yaml +++ b/activitysim/examples/prototype_mwcog/configs/logging.yaml @@ -42,7 +42,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET diff --git a/activitysim/examples/prototype_mwcog/configs/non_mandatory_tour_destination.yaml b/activitysim/examples/prototype_mwcog/configs/non_mandatory_tour_destination.yaml index 4f9f144a8..4c5f7ef91 100644 --- a/activitysim/examples/prototype_mwcog/configs/non_mandatory_tour_destination.yaml +++ b/activitysim/examples/prototype_mwcog/configs/non_mandatory_tour_destination.yaml @@ -50,15 +50,15 @@ IN_PERIOD: othdiscr: 36 eatout: 36 social: 36 - escort: 11 + escort: 11 OUT_PERIOD: shopping: 15 othmaint: 15 othdiscr: 31 eatout: 31 social: 31 - escort: 10 - + escort: 10 + SEGMENT_IDS: work_low: 1 work_med: 2 @@ -70,10 +70,10 @@ CONSTANTS: WORK_MED_SEGMENT_ID: 2 WORK_HIGH_SEGMENT_ID: 3 WORK_VERYHIGH_SEGMENT_ID: 4 - -preprocessor: - SPEC: non_mandatory_tour_destination_annotate_tours_preprocessor - DF: tours - TABLES: - - persons \ No newline at end of file + +#preprocessor: +# SPEC: non_mandatory_tour_destination_annotate_tours_preprocessor +# DF: tours +# TABLES: +# - persons diff --git a/activitysim/examples/prototype_mwcog/configs/non_mandatory_tour_frequency_alternatives.csv b/activitysim/examples/prototype_mwcog/configs/non_mandatory_tour_frequency_alternatives.csv index b9765aa75..09e89fae3 100644 --- a/activitysim/examples/prototype_mwcog/configs/non_mandatory_tour_frequency_alternatives.csv +++ b/activitysim/examples/prototype_mwcog/configs/non_mandatory_tour_frequency_alternatives.csv @@ -1,97 +1,97 @@ -escort,shopping,othmaint,othdiscr,eatout,social -0,0,0,0,0,0 -0,0,0,1,0,0 -0,0,0,0,0,1 -0,0,0,1,0,1 -0,0,0,0,1,0 -0,0,0,1,1,0 -0,0,0,0,1,1 -0,0,0,1,1,1 -0,0,1,0,0,0 -0,0,1,1,0,0 -0,0,1,0,0,1 -0,0,1,1,0,1 -0,0,1,0,1,0 -0,0,1,1,1,0 -0,0,1,0,1,1 -0,0,1,1,1,1 -0,1,0,0,0,0 -0,1,0,1,0,0 -0,1,0,0,0,1 -0,1,0,1,0,1 -0,1,0,0,1,0 -0,1,0,1,1,0 -0,1,0,0,1,1 -0,1,0,1,1,1 -0,1,1,0,0,0 -0,1,1,1,0,0 -0,1,1,0,0,1 -0,1,1,1,0,1 -0,1,1,0,1,0 -0,1,1,1,1,0 -0,1,1,0,1,1 -0,1,1,1,1,1 -1,0,0,0,0,0 -1,0,0,1,0,0 -1,0,0,0,0,1 -1,0,0,1,0,1 -1,0,0,0,1,0 -1,0,0,1,1,0 -1,0,0,0,1,1 -1,0,0,1,1,1 -1,0,1,0,0,0 -1,0,1,1,0,0 -1,0,1,0,0,1 -1,0,1,1,0,1 -1,0,1,0,1,0 -1,0,1,1,1,0 -1,0,1,0,1,1 -1,0,1,1,1,1 -1,1,0,0,0,0 -1,1,0,1,0,0 -1,1,0,0,0,1 -1,1,0,1,0,1 -1,1,0,0,1,0 -1,1,0,1,1,0 -1,1,0,0,1,1 -1,1,0,1,1,1 -1,1,1,0,0,0 -1,1,1,1,0,0 -1,1,1,0,0,1 -1,1,1,1,0,1 -1,1,1,0,1,0 -1,1,1,1,1,0 -1,1,1,0,1,1 -1,1,1,1,1,1 -2,0,0,0,0,0 -2,0,0,1,0,0 -2,0,0,0,0,1 -2,0,0,1,0,1 -2,0,0,0,1,0 -2,0,0,1,1,0 -2,0,0,0,1,1 -2,0,0,1,1,1 -2,0,1,0,0,0 -2,0,1,1,0,0 -2,0,1,0,0,1 -2,0,1,1,0,1 -2,0,1,0,1,0 -2,0,1,1,1,0 -2,0,1,0,1,1 -2,0,1,1,1,1 -2,1,0,0,0,0 -2,1,0,1,0,0 -2,1,0,0,0,1 -2,1,0,1,0,1 -2,1,0,0,1,0 -2,1,0,1,1,0 -2,1,0,0,1,1 -2,1,0,1,1,1 -2,1,1,0,0,0 -2,1,1,1,0,0 -2,1,1,0,0,1 -2,1,1,1,0,1 -2,1,1,0,1,0 -2,1,1,1,1,0 -2,1,1,0,1,1 -2,1,1,1,1,1 +escort,shopping,othmaint,othdiscr,eatout,social,tot_tours +0,0,0,0,0,0,0 +0,0,0,1,0,0,1 +0,0,0,0,0,1,1 +0,0,0,1,0,1,2 +0,0,0,0,1,0,1 +0,0,0,1,1,0,2 +0,0,0,0,1,1,2 +0,0,0,1,1,1,3 +0,0,1,0,0,0,1 +0,0,1,1,0,0,2 +0,0,1,0,0,1,2 +0,0,1,1,0,1,3 +0,0,1,0,1,0,2 +0,0,1,1,1,0,3 +0,0,1,0,1,1,3 +0,0,1,1,1,1,4 +0,1,0,0,0,0,1 +0,1,0,1,0,0,2 +0,1,0,0,0,1,2 +0,1,0,1,0,1,3 +0,1,0,0,1,0,2 +0,1,0,1,1,0,3 +0,1,0,0,1,1,3 +0,1,0,1,1,1,4 +0,1,1,0,0,0,2 +0,1,1,1,0,0,3 +0,1,1,0,0,1,3 +0,1,1,1,0,1,4 +0,1,1,0,1,0,3 +0,1,1,1,1,0,4 +0,1,1,0,1,1,4 +0,1,1,1,1,1,5 +1,0,0,0,0,0,1 +1,0,0,1,0,0,2 +1,0,0,0,0,1,2 +1,0,0,1,0,1,3 +1,0,0,0,1,0,2 +1,0,0,1,1,0,3 +1,0,0,0,1,1,3 +1,0,0,1,1,1,4 +1,0,1,0,0,0,2 +1,0,1,1,0,0,3 +1,0,1,0,0,1,3 +1,0,1,1,0,1,4 +1,0,1,0,1,0,3 +1,0,1,1,1,0,4 +1,0,1,0,1,1,4 +1,0,1,1,1,1,5 +1,1,0,0,0,0,2 +1,1,0,1,0,0,3 +1,1,0,0,0,1,3 +1,1,0,1,0,1,4 +1,1,0,0,1,0,3 +1,1,0,1,1,0,4 +1,1,0,0,1,1,4 +1,1,0,1,1,1,5 +1,1,1,0,0,0,3 +1,1,1,1,0,0,4 +1,1,1,0,0,1,4 +1,1,1,1,0,1,5 +1,1,1,0,1,0,4 +1,1,1,1,1,0,5 +1,1,1,0,1,1,5 +1,1,1,1,1,1,6 +2,0,0,0,0,0,2 +2,0,0,1,0,0,3 +2,0,0,0,0,1,3 +2,0,0,1,0,1,4 +2,0,0,0,1,0,3 +2,0,0,1,1,0,4 +2,0,0,0,1,1,4 +2,0,0,1,1,1,5 +2,0,1,0,0,0,3 +2,0,1,1,0,0,4 +2,0,1,0,0,1,4 +2,0,1,1,0,1,5 +2,0,1,0,1,0,4 +2,0,1,1,1,0,5 +2,0,1,0,1,1,5 +2,0,1,1,1,1,6 +2,1,0,0,0,0,3 +2,1,0,1,0,0,4 +2,1,0,0,0,1,4 +2,1,0,1,0,1,5 +2,1,0,0,1,0,4 +2,1,0,1,1,0,5 +2,1,0,0,1,1,5 +2,1,0,1,1,1,6 +2,1,1,0,0,0,4 +2,1,1,1,0,0,5 +2,1,1,0,0,1,5 +2,1,1,1,0,1,6 +2,1,1,0,1,0,5 +2,1,1,1,1,0,6 +2,1,1,0,1,1,6 +2,1,1,1,1,1,7 diff --git a/activitysim/examples/prototype_mwcog/configs/trip_destination.yaml b/activitysim/examples/prototype_mwcog/configs/trip_destination.yaml index 8bac788cc..9b2f1e588 100644 --- a/activitysim/examples/prototype_mwcog/configs/trip_destination.yaml +++ b/activitysim/examples/prototype_mwcog/configs/trip_destination.yaml @@ -4,9 +4,6 @@ COEFFICIENTS: trip_destination_coefficients.csv SAMPLE_SIZE: 30 -DESTINATION_SAMPLE_SPEC: trip_destination_sample.csv -DESTINATION_SPEC: trip_destination.csv - LOGSUM_SETTINGS: trip_mode_choice.yaml # optional (comment out if not desired) diff --git a/activitysim/examples/prototype_mwcog/configs_mp/logging.yaml b/activitysim/examples/prototype_mwcog/configs_mp/logging.yaml index e932009c5..64333d141 100644 --- a/activitysim/examples/prototype_mwcog/configs_mp/logging.yaml +++ b/activitysim/examples/prototype_mwcog/configs_mp/logging.yaml @@ -28,7 +28,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET @@ -37,21 +38,20 @@ logging: class: logging.StreamHandler stream: ext://sys.stdout formatter: simpleFormatter - #level: NOTSET - level: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [WARNING, NOTSET] + level: + if_sub_task: WARNING + if_not_sub_task: NOTSET formatters: simpleFormatter: class: logging.Formatter - #format: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' - format: !!python/object/apply:activitysim.core.mp_tasks.if_sub_task [ - '%(processName)-10s %(levelname)s - %(name)s - %(message)s', - '%(levelname)s - %(name)s - %(message)s'] + format: + if_sub_task: '%(processName)-10s %(levelname)s - %(name)s - %(message)s' + if_not_sub_task: '%(levelname)s - %(name)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' - diff --git a/activitysim/examples/prototype_mwcog/test/test_mwcog.py b/activitysim/examples/prototype_mwcog/test/test_mwcog.py index 98652504f..27d56a2a2 100644 --- a/activitysim/examples/prototype_mwcog/test/test_mwcog.py +++ b/activitysim/examples/prototype_mwcog/test/test_mwcog.py @@ -1,3 +1,5 @@ +from __future__ import annotations + # ActivitySim # See full license in LICENSE.txt. import os @@ -8,12 +10,7 @@ import pandas.testing as pdt import pkg_resources -from activitysim.core import inject - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +from activitysim.core import test def _test_mwcog(sharrow=False): @@ -31,7 +28,7 @@ def regress(): # person_id,household_id,tour_id,primary_purpose,trip_num,outbound,trip_count,purpose, # destination,origin,destination_logsum,depart,trip_mode,mode_choice_logsum # compare_cols = [] - pdt.assert_frame_equal(final_trips_df, regress_trips_df) + test.assert_frame_substantively_equal(final_trips_df, regress_trips_df) file_path = os.path.join(os.path.dirname(__file__), ".." + os.sep + "simulation.py") diff --git a/activitysim/examples/prototype_sandag_xborder/configs/legacy-1.1.3/logging.yaml b/activitysim/examples/prototype_sandag_xborder/configs/legacy-1.1.3/logging.yaml index 1e92b76a3..9addd3070 100755 --- a/activitysim/examples/prototype_sandag_xborder/configs/legacy-1.1.3/logging.yaml +++ b/activitysim/examples/prototype_sandag_xborder/configs/legacy-1.1.3/logging.yaml @@ -28,7 +28,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET diff --git a/activitysim/examples/prototype_sandag_xborder/configs/logging.yaml b/activitysim/examples/prototype_sandag_xborder/configs/logging.yaml index 33072a571..641739cc7 100755 --- a/activitysim/examples/prototype_sandag_xborder/configs/logging.yaml +++ b/activitysim/examples/prototype_sandag_xborder/configs/logging.yaml @@ -40,7 +40,8 @@ logging: logfile: class: logging.FileHandler - filename: !!python/object/apply:activitysim.core.config.log_file_path ['activitysim.log'] + filename: + get_log_file_path: 'activitysim.log' mode: w formatter: fileFormatter level: NOTSET diff --git a/activitysim/examples/prototype_sandag_xborder/configs/tour_mode_choice.yaml b/activitysim/examples/prototype_sandag_xborder/configs/tour_mode_choice.yaml index 56bf36044..195407bcd 100755 --- a/activitysim/examples/prototype_sandag_xborder/configs/tour_mode_choice.yaml +++ b/activitysim/examples/prototype_sandag_xborder/configs/tour_mode_choice.yaml @@ -63,7 +63,5 @@ LOGSUM_CHOOSER_COLUMNS: - person_id - household_id -CHOICE_COL_NAME: tour_mode MODE_CHOICE_LOGSUM_COLUMN_NAME: mode_choice_logsum COMPUTE_TRIP_MODE_CHOICE_LOGSUMS: True - diff --git a/activitysim/examples/prototype_sandag_xborder/configs/trip_destination.yaml b/activitysim/examples/prototype_sandag_xborder/configs/trip_destination.yaml index d6b0aeeb7..f4d5d701b 100644 --- a/activitysim/examples/prototype_sandag_xborder/configs/trip_destination.yaml +++ b/activitysim/examples/prototype_sandag_xborder/configs/trip_destination.yaml @@ -4,9 +4,6 @@ COEFFICIENTS: trip_destination_coefficients.csv SAMPLE_SIZE: 30 -DESTINATION_SAMPLE_SPEC: trip_destination_sample.csv -DESTINATION_SPEC: trip_destination.csv - LOGSUM_SETTINGS: trip_mode_choice.yaml # optional (comment out if not desired) diff --git a/activitysim/examples/prototype_sandag_xborder/configs/write_trip_matrices.yaml b/activitysim/examples/prototype_sandag_xborder/configs/write_trip_matrices.yaml index 37c6849ac..dce35ce76 100644 --- a/activitysim/examples/prototype_sandag_xborder/configs/write_trip_matrices.yaml +++ b/activitysim/examples/prototype_sandag_xborder/configs/write_trip_matrices.yaml @@ -104,5 +104,3 @@ MATRICES: data_field: TNC_SINGLE_EV - name: TNC_SHARED_EV data_field: TNC_SHARED_EV - -CONSTANTS: diff --git a/activitysim/examples/prototype_sandag_xborder/extensions/reassign_tour_purpose.py b/activitysim/examples/prototype_sandag_xborder/extensions/reassign_tour_purpose.py index 74e909856..cc5281832 100644 --- a/activitysim/examples/prototype_sandag_xborder/extensions/reassign_tour_purpose.py +++ b/activitysim/examples/prototype_sandag_xborder/extensions/reassign_tour_purpose.py @@ -1,17 +1,19 @@ # ActivitySim # See full license in LICENSE.txt. +from __future__ import annotations + import logging import numpy as np import pandas as pd -from activitysim.core import config, inject, pipeline +from activitysim.core import config, workflow logger = logging.getLogger(__name__) -@inject.step() -def reassign_tour_purpose_by_poe(tours, chunk_size, trace_hh_id): +@workflow.step +def reassign_tour_purpose_by_poe(state: workflow.State, tours: pd.DataFrame) -> None: """ Simulates tour purpose choices after tour origin has been assigned. This @@ -20,13 +22,15 @@ def reassign_tour_purpose_by_poe(tours, chunk_size, trace_hh_id): """ trace_label = "reassign_tour_purpose_by_poe" - probs_df = pd.read_csv(config.config_file_path("tour_purpose_probs_by_poe.csv")) + probs_df = pd.read_csv( + state.filesystem.get_config_file_path("tour_purpose_probs_by_poe.csv") + ) probs_df.columns = [ col if col in ["Purpose", "Description"] else int(col) for col in probs_df.columns ] - tours_df = tours.to_frame(columns=["tour_type", "poe_id"]) + tours_df = tours[["tour_type", "poe_id"]] tour_types = probs_df[["Purpose", "Description"]].set_index("Purpose")[ "Description" ] @@ -36,18 +40,17 @@ def reassign_tour_purpose_by_poe(tours, chunk_size, trace_hh_id): num_tours = len(group) purpose_probs = probs_df[poe] purpose_cum_probs = purpose_probs.values.cumsum() - rands = pipeline.get_rn_generator().random_for_df(group) + rands = state.get_rn_generator().random_for_df(group) purpose_scaled_probs = np.subtract(purpose_cum_probs, rands) purpose = np.argmax((purpose_scaled_probs + 1.0).astype("i4"), axis=1) tours_df.loc[group.index, "purpose_id"] = purpose tours_df["new_tour_type"] = tours_df["purpose_id"].map(tour_types) - tours = tours.to_frame() tours["tour_type"] = tours_df["new_tour_type"].reindex(tours.index) tours["purpose_id"] = tours_df["purpose_id"].reindex(tours.index) tours["tour_category"] = "non_mandatory" tours.loc[tours["tour_type"].isin(["home", "work"]), "tour_category"] = "mandatory" - pipeline.replace_table("tours", tours) + state.add_table("tours", tours) return diff --git a/activitysim/examples/prototype_sandag_xborder/test/prototype_sandag_xborder_reference_pipeline.zip b/activitysim/examples/prototype_sandag_xborder/test/prototype_sandag_xborder_reference_pipeline.zip new file mode 100644 index 000000000..72f109894 Binary files /dev/null and b/activitysim/examples/prototype_sandag_xborder/test/prototype_sandag_xborder_reference_pipeline.zip differ diff --git a/activitysim/examples/prototype_sandag_xborder/test/test_sandag_xborder.py b/activitysim/examples/prototype_sandag_xborder/test/test_sandag_xborder.py index 261190248..e9d538cde 100644 --- a/activitysim/examples/prototype_sandag_xborder/test/test_sandag_xborder.py +++ b/activitysim/examples/prototype_sandag_xborder/test/test_sandag_xborder.py @@ -1,19 +1,18 @@ +from __future__ import annotations + # ActivitySim # See full license in LICENSE.txt. import os import subprocess import sys +from pathlib import Path import pandas as pd import pandas.testing as pdt import pkg_resources -from activitysim.core import inject - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() +from activitysim.core import workflow +from activitysim.core.test import run_if_exists def _test_sandag_xborder(sharrow=False, mp=True): @@ -32,7 +31,12 @@ def regress(): test_path("regress/final_trips_1_process.csv") ) final_trips_df = pd.read_csv(test_path("output/final_trips.csv")) - pdt.assert_frame_equal(final_trips_df, regress_trips_df) + # column ordering not important + assert sorted(regress_trips_df.columns) == sorted(final_trips_df.columns) + pdt.assert_frame_equal( + final_trips_df[sorted(regress_trips_df.columns)], + regress_trips_df[sorted(regress_trips_df.columns)], + ) file_path = os.path.join(os.path.dirname(__file__), "../simulation.py") @@ -72,6 +76,56 @@ def test_sandag_xborder_sharrow(): _test_sandag_xborder(sharrow=True, mp=False) -if __name__ == "__main__": +EXPECTED_MODELS = [ + "initialize_landuse", + "initialize_households", + "initialize_tours", + "initialize_los", + "initialize_tvpb", + "tour_scheduling_probabilistic", + "tour_od_choice", + "reassign_tour_purpose_by_poe", + "tour_mode_choice_simulate", + "stop_frequency", + "trip_purpose", + "trip_scheduling", + "trip_destination", + "trip_mode_choice", + "write_trip_matrices", + "write_tables", +] + + +@run_if_exists("prototype_sandag_xborder_reference_pipeline.zip") +def test_sandag_xborder_progressive(): + import activitysim.abm # register components # noqa: F401 + + state = workflow.create_example("prototype_sandag_xborder", temp=True) + state.settings.multiprocess = False + state.settings.num_processes = 1 + state.settings.households_sample_size = 10 + state.settings.chunk_size = 0 + state.settings.recode_pipeline_columns = False + state.import_extensions("extensions") + + assert state.settings.models == EXPECTED_MODELS + assert state.settings.sharrow == False + + for step_name in EXPECTED_MODELS: + state.run.by_name(step_name) + try: + state.checkpoint.check_against( + Path(__file__).parent.joinpath( + "prototype_sandag_xborder_reference_pipeline.zip" + ), + checkpoint_name=step_name, + ) + except Exception: + print(f"> prototype_sandag_xborder {step_name}: ERROR") + raise + else: + print(f"> prototype_sandag_xborder {step_name}: ok") + +if __name__ == "__main__": test_sandag_xborder() diff --git a/activitysim/examples/prototype_semcog/change_log.txt b/activitysim/examples/prototype_semcog/change_log.txt deleted file mode 100644 index bb49241b3..000000000 --- a/activitysim/examples/prototype_semcog/change_log.txt +++ /dev/null @@ -1,200 +0,0 @@ -### -##### extensions -##### simulation.py -### - -# added extensions folder -# changed relative imports of estimation to absolute in model extension steps - -#from .util import estimation -from activitysim.abm.models.util import estimation - -# added line to simulation.py to load it:" - -import extensions - - -### -##### cdap.yaml -### -COEFFICIENTS: _dummy_coefficients.csv -INTERACTION_COEFFICIENTS: cdap_interaction_coefficients.csv - - -### -##### _dummy_coefficients.csv -### - -# dummy file to allow coefficients hard coded into -# cdap.yaml INDIV_AND_HHSIZE1_SPEC and INTERACTION_COEFFICIENTS - -### -##### tour_mode_choice_coeffs_template.csv -### - -# comment out unused coefficients - -# walk_light_rail_ASC,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_school_univ,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_light_rail_ASC_school_univ,walk_light_rail_ASC_work,walk_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# drive_light_rail_ASC,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_school_univ,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_light_rail_ASC_school_univ,drive_light_rail_ASC_work,drive_light_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# walk_ferry_ASC,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_school_univ,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,walk_ferry_ASC_school_univ,walk_ferry_ASC_work,walk_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# drive_ferry_ASC,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_school_univ,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,drive_ferry_ASC_school_univ,drive_ferry_ASC_work,drive_ferry_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# express_bus_ASC,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_school_univ,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,express_bus_ASC_school_univ,express_bus_ASC_work,express_bus_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# heavy_rail_ASC,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_school_univ,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,heavy_rail_ASC_school_univ,heavy_rail_ASC_work,heavy_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork -# commuter_rail_ASC,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_school_univ,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,commuter_rail_ASC_school_univ,commuter_rail_ASC_work,commuter_rail_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork - - -### -##### tour_scheduling_joint_coeffs.csv -### - -WARNING - duplicate coefficients in configs/tour_scheduling_joint_coeffs.csv - value constrain -coefficient_name -coef_eatout_Departure_Constant_12_00_PM_12_30_PM 1.164107 F -coef_eatout_Departure_Constant_06_00_PM_06_30_PM -0.425984 F -coef_eatout_Departure_Constant_06_30_PM_07_00_PM 0.000000 T -coef_eatout_Departure_Constant_07_00_PM_07_30_PM -0.227801 F -coef_eatout_Departure_Constant_After_07_30_PM -0.293904 F -coef_eatout_Departure_Constant_Shift_for_every_... -0.554409 F -coef_eatout_Departure_Constant_12_00_PM_12_30_PM 0.673838 F -coef_eatout_Departure_Constant_06_00_PM_06_30_PM 0.000000 T -coef_eatout_Departure_Constant_06_30_PM_07_00_PM -0.282096 F -coef_eatout_Departure_Constant_07_00_PM_07_30_PM -0.299749 F -coef_eatout_Departure_Constant_After_07_30_PM -0.845301 F -coef_eatout_Departure_Constant_Shift_for_every_... -0.667843 F -coef_eatout_Arrival_Constant_12_30_PM_to_01_00_PM 0.629299 F -coef_eatout_Arrival_Constant_01_00_PM_to_01_30_PM 0.938529 F -coef_eatout_Arrival_Constant_01_30_PM_to_02_00_PM 0.584420 F -coef_eatout_Arrival_Constant_02_00_PM_to_02_30_PM 0.842550 F -coef_eatout_Arrival_Constant_7_00_PM_to_7_30_PM -0.124886 F -coef_eatout_Arrival_Constant_7_30_PM_to_8_00_PM -0.605456 F -coef_eatout_Arrival_Constant_8_00_PM_to_8_30_PM 0.000000 T -coef_eatout_Arrival_Constant_8_30_PM_to_9_00_PM -0.657383 F -coef_eatout_Arrival_Constant_Shift_for_every_30... -0.204722 F -coef_eatout_Arrival_Constant_12_30_PM_to_01_00_PM 2.002032 F -coef_eatout_Arrival_Constant_01_00_PM_to_01_30_PM 2.115334 F -coef_eatout_Arrival_Constant_01_30_PM_to_02_00_PM 1.647880 F -coef_eatout_Arrival_Constant_02_00_PM_to_02_30_PM 1.525310 F -coef_eatout_Arrival_Constant_7_00_PM_to_7_30_PM -0.384557 F -coef_eatout_Arrival_Constant_7_30_PM_to_8_00_PM -0.044050 F -coef_eatout_Arrival_Constant_8_00_PM_to_8_30_PM 0.000000 T -coef_eatout_Arrival_Constant_8_30_PM_to_9_00_PM -0.239939 F -coef_eatout_Arrival_Constant_Shift_for_every_30... -0.204771 F -coef_eatout_Duration_Constant_0_hours -11.726604 F -coef_eatout_Duration_Constant_0p5_hous -5.088731 F -coef_eatout_Duration_Constant_1_hour -0.125521 F -coef_eatout_Duration_Constant_1p5_hours 0.000000 T -coef_eatout_Duration_Constant_0_hours -4.268997 F -coef_eatout_Duration_Constant_0p5_hous -1.323298 F -coef_eatout_Duration_Constant_1_hour 0.000000 T -coef_eatout_Duration_Constant_1p5_hours -0.195669 F -coef_disc_Duration_Constant_0_hours -0.944258 F -coef_disc_Duration_Constant_0p5_hous -0.117696 F -coef_disc_Duration_Constant_1_hour 0.438404 F -coef_disc_Duration_Constant_1p5_hours -0.002500 F -coef_disc_Duration_Constant_2_hours 0.000000 T -coef_disc_Duration_Constant_Shift_for_every_30_... -0.108261 F -coef_disc_Duration_Constant_0_hours 0.436988 F -coef_disc_Duration_Constant_0p5_hous 1.359676 F -coef_disc_Duration_Constant_1_hour 1.692673 F -coef_disc_Duration_Constant_1p5_hours 1.118933 F -coef_disc_Duration_Constant_2_hours 0.771256 F -coef_disc_Duration_Constant_Shift_for_every_30_... -0.700936 F - - -### -##### trip_destination.yaml -### - -# will need coefficients file to run estimation... -#COEFFICIENTS: trip_destination_coefficients.csv -COEFFICIENTS: _dummy_coefficients.csv - - -### -##### trip_mode_choice.yaml -### - -#COEFFICIENTS: trip_mode_choice_coeffs.csv -LEGACY_COEFFICIENTS: trip_mode_choice_coeffs.csv - -### -##### trip_mode_choice_coeffs.csv -### - -# change Expression column name to coefficient_name -#Expression,work,univ,school,escort,shopping,eatout,othmaint,social,othdiscr,atwork -coefficient_name,work,univ,school,escort,shopping,eatout,othmaint,social,othdiscr,atwork - -### -##### atwork_subtour_destination.csv -##### atwork_subtour_destination_sample.csv -### - -# util_size_variable_atwork,Size variable atwork,@df['atwork'].apply(np.log1p),coef_size_variable_atwork -# util_no_attractions_atwork_size_variable_is_0,"No attractions, atwork size variable is 0",atwork==0,coef_no_attractions_atwork_size_variable_is_0 -util_size_variable_atwork,Size variable atwork,@df['size_term'].apply(np.log1p),coef_size_variable_atwork -util_no_attractions_atwork_size_variable_is_0,"No attractions, atwork size variable is 0",size_term==0,coef_no_attractions_atwork_size_variable_is_0 - -### -##### tour_scheduling_non_mandatory.csv -### - -# change remaining_periods_available() call to max_time_block_available() -# tt.remaining_periods_available(df.person_id, df.start, df.end) -tt.max_time_block_available(df.person_id) - -#util_shopping_time_pressure_duration_greater_than_1_hour_30_minutes,SHOPPING - Time Pressure - Duration > 1.5 hrs,"@np.where(((df.tour_type == 'shopping') & (df.duration>2)), np.minimum(df.duration-2,26) *(np.log10 (30 *(tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_shopping_time_pressure_duration_greater_than_1_hour_30_minutes -util_shopping_time_pressure_duration_greater_than_1_hour_30_minutes,SHOPPING - Time Pressure - Duration > 1.5 hrs,"@np.where(((df.tour_type == 'shopping') & (df.duration>2)), np.minimum(df.duration-2,26) *(np.log10 (30 *(tt.max_time_block_available(df.person_id)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_shopping_time_pressure_duration_greater_than_1_hour_30_minutes - -# and similar changes in 8 other lines where the same substitution - -### -##### tour_scheduling_atwork_coeffs.csv -### - -# remove duplicate coefficients - -#coef_1200_AM_1230_PM,0,T -#coef_1230_PM_0100_PM,-0.084950396,F -coef_1200_AM_1230_PM,-0.045281832,F -coef_1230_PM_0100_PM,0.214070736,F - -### -##### work_from_home.py -### - - # E211 whitespace before '(' - # print (dest_choice_column_name) - print(dest_choice_column_name) - - # E712 comparison to True should be 'if cond is True:' or 'if cond:' - # persons[dest_choice_column_name] = np.where(persons.work_from_home == True, -1, persons[dest_choice_column_name]) - persons[dest_choice_column_name] = np.where(persons.work_from_home is True, -1, persons[dest_choice_column_name]) - - -### -##### tour_departure_and_duration_segments.csv -### - -# new file - contents of which I just guessed at - you should check - -tour_purpose,time_period,start,end -work,EA,3,5 -work,AM,8,11 -work,MD,14,22 -work,PM,26,30 -work,EV,33,44 -#,,, -school,EA,3,5 -school,AM,8,11 -school,MD,14,22 -school,PM,26,30 -school,EV,33,44 -#,,, -univ,EA,3,5 -univ,AM,8,11 -univ,MD,14,22 -univ,PM,26,30 -univ,EV,33,44 - diff --git a/activitysim/examples/prototype_semcog/configs/auto_ownership.csv b/activitysim/examples/prototype_semcog/configs/auto_ownership.csv deleted file mode 100755 index e9ad2c58e..000000000 --- a/activitysim/examples/prototype_semcog/configs/auto_ownership.csv +++ /dev/null @@ -1,25 +0,0 @@ -Label,Description,Expression,cars0,cars1,cars2,cars3,cars4 -util_drivers_2,2 Adults (age 16+),num_drivers==2,,coef_cars1_drivers_2,coef_cars2_drivers_2,coef_cars3_drivers_2,coef_cars4_drivers_2 -util_drivers_3,3 Adults (age 16+),num_drivers==3,,coef_cars1_drivers_3,coef_cars2_drivers_3,coef_cars3_drivers_3,coef_cars4_drivers_3 -util_drivers_4_up,4+ Adults (age 16+),num_drivers>3,,coef_cars1_drivers_4_up,coef_cars2_drivers_4_up,coef_cars3_drivers_4_up,coef_cars4_drivers_4_up -util_persons_16_17,Persons age 16-17,num_children_16_to_17,,coef_cars1_persons_16_17,coef_cars2_persons_16_17,coef_cars34_persons_16_17,coef_cars34_persons_16_17 -util_persons_18_24,Persons age 18-24,num_college_age,,coef_cars1_persons_18_24,coef_cars2_persons_18_24,coef_cars34_persons_18_24,coef_cars34_persons_18_24 -util_persons_25_34,Persons age 35-34,num_young_adults,,coef_cars1_persons_25_34,coef_cars2_persons_25_34,coef_cars34_persons_25_34,coef_cars34_persons_25_34 -util_presence_children_0_4,Presence of children age 0-4,num_young_children>0,,coef_cars1_presence_children_0_4,coef_cars234_presence_children_0_4,coef_cars234_presence_children_0_4,coef_cars234_presence_children_0_4 -util_presence_children_5_17,Presence of children age 5-17,(num_children_5_to_15+num_children_16_to_17)>0,,coef_cars1_presence_children_5_17,coef_cars2_presence_children_5_17,coef_cars34_presence_children_5_17,coef_cars34_presence_children_5_17 -util_num_workers_clip_3,"Number of workers, capped at 3",@df.num_workers.clip(upper=3),,coef_cars1_num_workers_clip_3,coef_cars2_num_workers_clip_3,coef_cars3_num_workers_clip_3,coef_cars4_num_workers_clip_3 -util_hh_income_0_30k,"Piecewise Linear household income, $0-30k","@df.income_in_thousands.clip(0, 30)",,coef_cars1_hh_income_0_30k,coef_cars2_hh_income_0_30k,coef_cars3_hh_income_0_30k,coef_cars4_hh_income_0_30k -util_hh_income_30_75k,"Piecewise Linear household income, $30-75k","@(df.income_in_thousands-30).clip(0, 45)",,coef_cars1_hh_income_30_up,coef_cars2_hh_income_30_up,coef_cars3_hh_income_30_up,coef_cars4_hh_income_30_up -util_hh_income_75k_up,"Piecewise Linear household income, $75k+, capped at $125k","@(df.income_in_thousands-75).clip(0, 50)",,coef_cars1_hh_income_30_up,coef_cars2_hh_income_30_up,coef_cars3_hh_income_30_up,coef_cars4_hh_income_30_up -util_density_0_10_no_workers,"Density index up to 10, if 0 workers","@(df.num_workers==0)*df.density_index.clip(0, 10)",,coef_cars1_density_0_10_no_workers,coef_cars2_density_0_10_no_workers,coef_cars34_density_0_10_no_workers,coef_cars34_density_0_10_no_workers -util_density_10_up_no_workers,"Density index in excess of 10, if 0 workers",@(df.num_workers==0)*(df.density_index-10).clip(0),,coef_cars1_density_10_up_no_workers,coef_cars2_density_10_up_no_workers,coef_cars34_density_10_up_no_workers,coef_cars34_density_10_up_no_workers -util_density_0_10_workers,"Density index up to 10, if 1+ workers","@(df.num_workers>0)*df.density_index.clip(0, 10)",,coef_cars1_density_0_10_no_workers,coef_cars2_density_0_10_no_workers,coef_cars34_density_0_10_no_workers,coef_cars34_density_0_10_no_workers -util_density_10_up_workers,"Density index in excess of 10, if 1+ workers",@(df.num_workers>0)*(df.density_index-10).clip(0),,coef_cars1_density_10_up_workers,coef_cars2_density_10_up_no_workers,coef_cars34_density_10_up_no_workers,coef_cars34_density_10_up_no_workers -util_asc,Constants,1,,coef_cars1_asc,coef_cars2_asc,coef_cars3_asc,coef_cars4_asc -util_retail_auto_no_workers,"Retail accessibility (0.66*PK + 0.34*OP) by auto, if 0 workers",(num_workers==0)*(0.66*auPkRetail+0.34*auOpRetail),,coef_retail_auto_no_workers,coef_retail_auto_no_workers,coef_retail_auto_no_workers,coef_retail_auto_no_workers -util_retail_auto_workers,"Retail accessibility (0.66*PK + 0.34*OP) by auto, if 1+ workers",(num_workers>0)*(0.66*auPkRetail+0.34*auOpRetail),,coef_retail_auto_workers,coef_retail_auto_workers,coef_retail_auto_workers,coef_retail_auto_workers -util_retail_transit_no_workers,"Retail accessibility (0.66*PK + 0.34*OP) by transit, if 0 workers",(num_workers==0)*(0.66*trPkRetail+0.34*trOpRetail),,coef_retail_transit_no_workers,coef_retail_transit_no_workers,coef_retail_transit_no_workers,coef_retail_transit_no_workers -util_retail_transit_workers,"Retail accessibility (0.66*PK + 0.34*OP) by transit, if 1+ workers",(num_workers>0)*(0.66*trPkRetail+0.34*trOpRetail),,coef_retail_transit_workers,coef_retail_transit_workers,coef_retail_transit_workers,coef_retail_transit_workers -util_retail_non_motor_no_workers,"Retail accessibility by non-motorized, if 0 workers",(num_workers==0)*nmRetail,,coef_retail_non_motor,coef_retail_non_motor,coef_retail_non_motor,coef_retail_non_motor -util_retail_non_motor_workers,"Retail accessibility by non-motorized, if 1+ workers",(num_workers>0)*nmRetail,,coef_retail_non_motor,coef_retail_non_motor,coef_retail_non_motor,coef_retail_non_motor -util_auto_time_saving_per_worker,Auto time savings per worker to work,"@np.where(df.num_workers > 0, df.hh_work_auto_savings_ratio / df.num_workers, 0)",,coef_cars1_auto_time_saving_per_worker,coef_cars2_auto_time_saving_per_worker,coef_cars3_auto_time_saving_per_worker,coef_cars4_auto_time_saving_per_worker diff --git a/activitysim/examples/prototype_semcog/configs/auto_ownership_coeffs.csv b/activitysim/examples/prototype_semcog/configs/auto_ownership_coeffs.csv deleted file mode 100755 index adad6e991..000000000 --- a/activitysim/examples/prototype_semcog/configs/auto_ownership_coeffs.csv +++ /dev/null @@ -1,68 +0,0 @@ -coefficient_name,value,constrain -coef_cars1_drivers_2,0.0,T -coef_cars1_drivers_3,0.0,T -coef_cars1_persons_16_17,0.0,T -coef_cars234_asc_marin,0.0,T -coef_cars1_persons_25_34,0.0,T -coef_cars1_num_workers_clip_3,0.0,T -coef_cars1_hh_income_30_up,0.0,T -coef_cars1_density_0_10_no_workers,0.0,T -coef_cars1_density_10_up_workers,-0.0006916064567687393,F -coef_retail_non_motor,-0.03,T -coef_cars4_asc,-2.1157137267630084,F -coef_cars3_asc,-0.5389664867851066,F -coef_cars34_persons_16_17,-1.0131713092471806,F -coef_cars2_asc,0.5089927738334394,F -coef_cars34_persons_18_24,-0.22633082627703238,F -coef_cars2_persons_18_24,-0.2779863655452459,F -coef_cars2_persons_16_17,-0.8499905464429038,F -coef_cars34_persons_25_34,-0.5072697829616668,F -coef_cars1_asc_county,-0.5660000000000001,F -coef_retail_transit_workers,-0.26599406864996145,F -coef_cars2_persons_25_34,-0.2845857507016052,F -coef_cars2_asc_county,-0.4429,F -coef_cars1_persons_18_24,0.3122834693531618,F -coef_cars34_density_0_10_no_workers,-1.0611910844303392,F -coef_retail_transit_no_workers,-0.4610891860644177,F -coef_cars1_asc_marin,-0.2434,F -coef_cars34_asc_county,-0.2372,F -coef_cars2_density_0_10_no_workers,-0.4334566014350984,F -coef_cars34_density_10_up_no_workers,-0.1766,T -coef_cars2_density_10_up_no_workers,0.22349472733850723,F -coef_cars2_density_10_up_workers,-0.1106,F -coef_cars1_density_10_up_no_workers,-0.6278796181279449,F -coef_cars2_hh_income_30_up,0.013802348149352129,F -coef_cars3_hh_income_30_up,0.01756826620528943,F -coef_cars4_hh_income_30_up,0.020241067403575532,F -coef_cars1_presence_children_5_17,0.2201929251562138,F -coef_cars1_hh_income_0_30k,0.08754817729196587,F -coef_cars2_hh_income_0_30k,0.11363199169081308,F -coef_cars3_hh_income_0_30k,0.10919644885632351,F -coef_cars4_hh_income_0_30k,0.12371561063030768,F -coef_retail_auto_no_workers,-0.27201647971031934,F -coef_cars34_asc_san_francisco,0.1458,F -coef_retail_auto_workers,-0.3440504516404184,F -coef_cars2_presence_children_5_17,0.3267549927594411,F -coef_cars2_num_workers_clip_3,0.7131266645999695,F -coef_cars1_presence_children_0_4,-0.13410330297845457,F -coef_cars1_asc_san_francisco,0.4259,F -coef_cars2_asc_san_francisco,0.4683,F -coef_cars1_auto_time_saving_per_worker,1.3138947141281918,F -coef_cars34_presence_children_5_17,0.09288972465342095,F -coef_cars3_auto_time_saving_per_worker,0.9830482363478317,F -coef_cars2_auto_time_saving_per_worker,1.0902251470013522,F -coef_cars3_num_workers_clip_3,1.000861534518726,F -coef_cars234_presence_children_0_4,0.049938987712858804,F -coef_cars4_auto_time_saving_per_worker,0.8990148505984551,F -coef_cars4_num_workers_clip_3,1.079450657634896,F -coef_cars1_asc,3.1493581264401556,F -coef_cars1_drivers_4_up,-1.4515192922101592,F -coef_cars4_drivers_2,2.4056683705077937,F -coef_cars2_drivers_2,2.817372734348654,F -coef_cars3_drivers_2,2.6801310124351496,F -coef_cars2_drivers_3,2.5819723625758484,F -coef_cars4_drivers_3,3.964857311371601,F -coef_cars3_drivers_3,4.277120564378806,F -coef_cars2_drivers_4_up,1.5182056527267993,F -coef_cars3_drivers_4_up,3.4916291197074343,F -coef_cars4_drivers_4_up,4.509213244436791,F diff --git a/activitysim/examples/prototype_semcog/configs/constants.yaml b/activitysim/examples/prototype_semcog/configs/constants.yaml deleted file mode 100755 index 7d3864fd9..000000000 --- a/activitysim/examples/prototype_semcog/configs/constants.yaml +++ /dev/null @@ -1,63 +0,0 @@ -## ActivitySim -## See full license in LICENSE.txt. - - -#HHT_NONE: 0 -#HHT_FAMILY_MARRIED: 1 -#HHT_FAMILY_MALE: 2 -#HHT_FAMILY_FEMALE: 3 -#HHT_NONFAMILY_MALE_ALONE: 4 -#HHT_NONFAMILY_MALE_NOTALONE: 5 -#HHT_NONFAMILY_FEMALE_ALONE: 6 -#HHT_NONFAMILY_FEMALE_NOTALONE: 7 - -# convenience for expression files -HHT_NONFAMILY: [4, 5, 6, 7] -HHT_FAMILY: [1, 2, 3] - -PSTUDENT_GRADE_OR_HIGH: 1 -PSTUDENT_UNIVERSITY: 2 -PSTUDENT_NOT: 3 - -GRADE_SCHOOL_MAX_AGE: 14 -GRADE_SCHOOL_MIN_AGE: 5 - -SCHOOL_SEGMENT_NONE: 0 -SCHOOL_SEGMENT_GRADE: 1 -SCHOOL_SEGMENT_HIGH: 2 -SCHOOL_SEGMENT_UNIV: 3 - -INCOME_SEGMENT_LOW: 1 -INCOME_SEGMENT_MED: 2 -INCOME_SEGMENT_HIGH: 3 -INCOME_SEGMENT_VERYHIGH: 4 - -PEMPLOY_FULL: 1 -PEMPLOY_PART: 2 -PEMPLOY_NOT: 3 -PEMPLOY_CHILD: 4 - -PTYPE_FULL: &ptype_full 1 -PTYPE_PART: &ptype_part 2 -PTYPE_UNIVERSITY: &ptype_university 3 -PTYPE_NONWORK: &ptype_nonwork 4 -PTYPE_RETIRED: &ptype_retired 5 -PTYPE_DRIVING: &ptype_driving 6 -PTYPE_SCHOOL: &ptype_school 7 -PTYPE_PRESCHOOL: &ptype_preschool 8 - -# these appear as column headers in non_mandatory_tour_frequency.csv -PTYPE_NAME: - *ptype_full: PTYPE_FULL - *ptype_part: PTYPE_PART - *ptype_university: PTYPE_UNIVERSITY - *ptype_nonwork: PTYPE_NONWORK - *ptype_retired: PTYPE_RETIRED - *ptype_driving: PTYPE_DRIVING - *ptype_school: PTYPE_SCHOOL - *ptype_preschool: PTYPE_PRESCHOOL - - -CDAP_ACTIVITY_MANDATORY: M -CDAP_ACTIVITY_NONMANDATORY: N -CDAP_ACTIVITY_HOME: H diff --git a/activitysim/examples/prototype_semcog/configs/free_parking_annotate_persons_preprocessor.csv b/activitysim/examples/prototype_semcog/configs/free_parking_annotate_persons_preprocessor.csv deleted file mode 100755 index 677599949..000000000 --- a/activitysim/examples/prototype_semcog/configs/free_parking_annotate_persons_preprocessor.csv +++ /dev/null @@ -1,2 +0,0 @@ -Description,Target,Expression -,workplace_county_id,"reindex(land_use.COUNTY, persons.workplace_zone_id)" diff --git a/activitysim/examples/prototype_semcog/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv b/activitysim/examples/prototype_semcog/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv deleted file mode 100755 index 6c2089653..000000000 --- a/activitysim/examples/prototype_semcog/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv +++ /dev/null @@ -1,4 +0,0 @@ -Description,Target,Expression -departure_shift,departureLinearShift1,"np.minimum(9-df.start,48)*(df.start<=9) + np.minimum(df.start-9,21)*(df.start>9)" -arrival_shift,arrivalLinearShift1,"np.minimum(30-df.end,48)*(df.end<=30) + np.minimum(df.end-30,21)*(df.end>30)" -duration_shift,durationShift,"(np.minimum(21-df.duration,47)*(df.duration<=20)) + (np.minimum(df.duration-21,20)*(df.duration>21))" diff --git a/activitysim/examples/prototype_semcog/configs/mandatory_tour_scheduling_annotate_tours_preprocessor.csv b/activitysim/examples/prototype_semcog/configs/mandatory_tour_scheduling_annotate_tours_preprocessor.csv deleted file mode 100755 index 6c2089653..000000000 --- a/activitysim/examples/prototype_semcog/configs/mandatory_tour_scheduling_annotate_tours_preprocessor.csv +++ /dev/null @@ -1,4 +0,0 @@ -Description,Target,Expression -departure_shift,departureLinearShift1,"np.minimum(9-df.start,48)*(df.start<=9) + np.minimum(df.start-9,21)*(df.start>9)" -arrival_shift,arrivalLinearShift1,"np.minimum(30-df.end,48)*(df.end<=30) + np.minimum(df.end-30,21)*(df.end>30)" -duration_shift,durationShift,"(np.minimum(21-df.duration,47)*(df.duration<=20)) + (np.minimum(df.duration-21,20)*(df.duration>21))" diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_alternatives.csv b/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_alternatives.csv deleted file mode 100755 index b9765aa75..000000000 --- a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_frequency_alternatives.csv +++ /dev/null @@ -1,97 +0,0 @@ -escort,shopping,othmaint,othdiscr,eatout,social -0,0,0,0,0,0 -0,0,0,1,0,0 -0,0,0,0,0,1 -0,0,0,1,0,1 -0,0,0,0,1,0 -0,0,0,1,1,0 -0,0,0,0,1,1 -0,0,0,1,1,1 -0,0,1,0,0,0 -0,0,1,1,0,0 -0,0,1,0,0,1 -0,0,1,1,0,1 -0,0,1,0,1,0 -0,0,1,1,1,0 -0,0,1,0,1,1 -0,0,1,1,1,1 -0,1,0,0,0,0 -0,1,0,1,0,0 -0,1,0,0,0,1 -0,1,0,1,0,1 -0,1,0,0,1,0 -0,1,0,1,1,0 -0,1,0,0,1,1 -0,1,0,1,1,1 -0,1,1,0,0,0 -0,1,1,1,0,0 -0,1,1,0,0,1 -0,1,1,1,0,1 -0,1,1,0,1,0 -0,1,1,1,1,0 -0,1,1,0,1,1 -0,1,1,1,1,1 -1,0,0,0,0,0 -1,0,0,1,0,0 -1,0,0,0,0,1 -1,0,0,1,0,1 -1,0,0,0,1,0 -1,0,0,1,1,0 -1,0,0,0,1,1 -1,0,0,1,1,1 -1,0,1,0,0,0 -1,0,1,1,0,0 -1,0,1,0,0,1 -1,0,1,1,0,1 -1,0,1,0,1,0 -1,0,1,1,1,0 -1,0,1,0,1,1 -1,0,1,1,1,1 -1,1,0,0,0,0 -1,1,0,1,0,0 -1,1,0,0,0,1 -1,1,0,1,0,1 -1,1,0,0,1,0 -1,1,0,1,1,0 -1,1,0,0,1,1 -1,1,0,1,1,1 -1,1,1,0,0,0 -1,1,1,1,0,0 -1,1,1,0,0,1 -1,1,1,1,0,1 -1,1,1,0,1,0 -1,1,1,1,1,0 -1,1,1,0,1,1 -1,1,1,1,1,1 -2,0,0,0,0,0 -2,0,0,1,0,0 -2,0,0,0,0,1 -2,0,0,1,0,1 -2,0,0,0,1,0 -2,0,0,1,1,0 -2,0,0,0,1,1 -2,0,0,1,1,1 -2,0,1,0,0,0 -2,0,1,1,0,0 -2,0,1,0,0,1 -2,0,1,1,0,1 -2,0,1,0,1,0 -2,0,1,1,1,0 -2,0,1,0,1,1 -2,0,1,1,1,1 -2,1,0,0,0,0 -2,1,0,1,0,0 -2,1,0,0,0,1 -2,1,0,1,0,1 -2,1,0,0,1,0 -2,1,0,1,1,0 -2,1,0,0,1,1 -2,1,0,1,1,1 -2,1,1,0,0,0 -2,1,1,1,0,0 -2,1,1,0,0,1 -2,1,1,1,0,1 -2,1,1,0,1,0 -2,1,1,1,1,0 -2,1,1,0,1,1 -2,1,1,1,1,1 diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_annotate_alts_preprocessor.csv b/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_annotate_alts_preprocessor.csv deleted file mode 100644 index 3f3110621..000000000 --- a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_annotate_alts_preprocessor.csv +++ /dev/null @@ -1,15 +0,0 @@ -Description,Target,Expression -#,, -departure_shift_generic,departureLinearShift1_generic,"(alt_tdd.start<=10) * np.minimum(10-alt_tdd.start,7) + (alt_tdd.start>10) * np.minimum(alt_tdd.start-10,35)" -arrival_shift_generic,arrivalLinearShift1_generic,"(alt_tdd.end<=11) * np.minimum(11-alt_tdd.end,7) + (alt_tdd.end>11) * np.minimum(alt_tdd.end-11,35)" -departure_shift2_generic,departureLinearShift2_generic,"(alt_tdd.start<=24) * np.minimum(24-alt_tdd.start,3) + (alt_tdd.start>24) * np.minimum(alt_tdd.start-24,9)" -arrival_shift2_generic,arrivalLinearShift2_generic,"(alt_tdd.end<=25) * np.minimum(25-alt_tdd.end,3) + (alt_tdd.end>25) * np.minimum(alt_tdd.end-25,9)" -duration_shift_generic,durationShift_generic,"(alt_tdd.duration<=1) * np.minimum(1-alt_tdd.duration, 0) + (alt_tdd.duration>1) * np.minimum(alt_tdd.duration-1,47)" -#,, -depConstShift1_generic,depConstShift1_generic,"(alt_tdd.start<8) * np.minimum(8-alt_tdd.start,4) + (alt_tdd.start>13) * np.minimum(alt_tdd.start-13,28)" -depConstShift2_generic,depConstShift2_generic,"(alt_tdd.start<0) * np.minimum(0-alt_tdd.start,48) + (alt_tdd.start>26) * np.minimum(alt_tdd.start-26,15)" -arrConstShift1_generic,arrConstShift1_generic,"(alt_tdd.end<8) * np.minimum(8-alt_tdd.end,2) + (alt_tdd.end>13) * np.minimum(alt_tdd.end-13,30)" -arrConstShift2_generic,arrConstShift2_generic,"(alt_tdd.end<0) * np.minimum(0-alt_tdd.end,48) + (alt_tdd.start>28) * np.minimum(alt_tdd.end-28,15)" -#,, -,origin_to_destination_distance,1 -,num_person_joint_tours,1 diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_annotate_shifts_preprocessor.csv b/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_annotate_shifts_preprocessor.csv deleted file mode 100755 index 26f140378..000000000 --- a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_annotate_shifts_preprocessor.csv +++ /dev/null @@ -1,15 +0,0 @@ -Description,Target,Expression -#,, -departure_shift_escort,departureLinearShift1_escort,"(alt_tdd.start<=10) * np.minimum(10-alt_tdd.start,7) + (alt_tdd.start>10) * np.minimum(alt_tdd.start-10,35)" -arrival_shift_escort,arrivalLinearShift1_escort,"(alt_tdd.end<=11) * np.minimum(11-alt_tdd.end,7) + (alt_tdd.end>11) * np.minimum(alt_tdd.end-11,35)" -departure_shift2_escort,departureLinearShift2_escort,"(alt_tdd.start<=24) * np.minimum(24-alt_tdd.start,3) + (alt_tdd.start>24) * np.minimum(alt_tdd.start-24,9)" -arrival_shift2_escort,arrivalLinearShift2_escort,"(alt_tdd.end<=25) * np.minimum(25-alt_tdd.end,3) + (alt_tdd.end>25) * np.minimum(alt_tdd.end-25,9)" -duration_shift_escort,durationShift_escort,"(alt_tdd.duration<=1) * np.minimum(1-alt_tdd.duration, 0) + (alt_tdd.duration>1) * np.minimum(alt_tdd.duration-1,47)" -#,, -depConstShift1_escort,depConstShift1_escort,"(alt_tdd.start<8) * np.minimum(8-alt_tdd.start,4) + (alt_tdd.start>13) * np.minimum(alt_tdd.start-13,28)" -depConstShift2_escort,depConstShift2_escort,"(alt_tdd.start<0) * np.minimum(0-alt_tdd.start,48) + (alt_tdd.start>26) * np.minimum(alt_tdd.start-26,15)" -arrConstShift1_escort,arrConstShift1_escort,"(alt_tdd.end<8) * np.minimum(8-alt_tdd.end,2) + (alt_tdd.end>13) * np.minimum(alt_tdd.end-13,30)" -arrConstShift2_escort,arrConstShift2_escort,"(alt_tdd.end<0) * np.minimum(0-alt_tdd.end,48) + (alt_tdd.start>28) * np.minimum(alt_tdd.end-28,15)" -,, -,origin_to_destination_distance,1 -,num_person_joint_tours,1 diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_escort_annotate_alts_preprocessor.csv b/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_escort_annotate_alts_preprocessor.csv deleted file mode 100644 index 4d07acfb8..000000000 --- a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_escort_annotate_alts_preprocessor.csv +++ /dev/null @@ -1,15 +0,0 @@ -Description,Target,Expression -#,, -departure_shift_escort,departureLinearShift1_escort,"(alt_tdd.start<=10) * np.minimum(10-alt_tdd.start,7) + (alt_tdd.start>10) * np.minimum(alt_tdd.start-10,35)" -arrival_shift_escort,arrivalLinearShift1_escort,"(alt_tdd.end<=11) * np.minimum(11-alt_tdd.end,7) + (alt_tdd.end>11) * np.minimum(alt_tdd.end-11,35)" -departure_shift2_escort,departureLinearShift2_escort,"(alt_tdd.start<=24) * np.minimum(24-alt_tdd.start,3) + (alt_tdd.start>24) * np.minimum(alt_tdd.start-24,9)" -arrival_shift2_escort,arrivalLinearShift2_escort,"(alt_tdd.end<=25) * np.minimum(25-alt_tdd.end,3) + (alt_tdd.end>25) * np.minimum(alt_tdd.end-25,9)" -duration_shift_escort,durationShift_escort,"(alt_tdd.duration<=1) * np.minimum(1-alt_tdd.duration, 0) + (alt_tdd.duration>1) * np.minimum(alt_tdd.duration-1,47)" -#,, -depConstShift1_escort,depConstShift1_escort,"(alt_tdd.start<8) * np.minimum(8-alt_tdd.start,4) + (alt_tdd.start>13) * np.minimum(alt_tdd.start-13,28)" -depConstShift2_escort,depConstShift2_escort,"(alt_tdd.start<0) * np.minimum(0-alt_tdd.start,48) + (alt_tdd.start>26) * np.minimum(alt_tdd.start-26,15)" -arrConstShift1_escort,arrConstShift1_escort,"(alt_tdd.end<8) * np.minimum(8-alt_tdd.end,2) + (alt_tdd.end>13) * np.minimum(alt_tdd.end-13,30)" -arrConstShift2_escort,arrConstShift2_escort,"(alt_tdd.end<0) * np.minimum(0-alt_tdd.end,48) + (alt_tdd.start>28) * np.minimum(alt_tdd.end-28,15)" -#,, -,origin_to_destination_distance,1 -,num_person_joint_tours,1 diff --git a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_shopping_annotate_alts_preprocessor.csv b/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_shopping_annotate_alts_preprocessor.csv deleted file mode 100644 index 50efe1c78..000000000 --- a/activitysim/examples/prototype_semcog/configs/non_mandatory_tour_scheduling_shopping_annotate_alts_preprocessor.csv +++ /dev/null @@ -1,15 +0,0 @@ -Description,Target,Expression -#,, -departure_shift_shopping,departureLinearShift1_shopping,"(alt_tdd.start<=10) * np.minimum(10-alt_tdd.start,7) + (alt_tdd.start>10) * np.minimum(alt_tdd.start-10,35)" -arrival_shift_shopping,arrivalLinearShift1_shopping,"(alt_tdd.end<=11) * np.minimum(11-alt_tdd.end,7) + (alt_tdd.end>11) * np.minimum(alt_tdd.end-11,35)" -departure_shift2_shopping,departureLinearShift2_shopping,"(alt_tdd.start<=24) * np.minimum(24-alt_tdd.start,3) + (alt_tdd.start>24) * np.minimum(alt_tdd.start-24,9)" -arrival_shift2_shopping,arrivalLinearShift2_shopping,"(alt_tdd.end<=25) * np.minimum(25-alt_tdd.end,3) + (alt_tdd.end>25) * np.minimum(alt_tdd.end-25,9)" -duration_shift_shopping,durationShift_shopping,"(alt_tdd.duration<=1) * np.minimum(1-alt_tdd.duration, 0) + (alt_tdd.duration>1) * np.minimum(alt_tdd.duration-1,47)" -#,, -depConstShift1_shopping,depConstShift1_shopping,"(alt_tdd.start<8) * np.minimum(8-alt_tdd.start,4) + (alt_tdd.start>13) * np.minimum(alt_tdd.start-13,28)" -depConstShift2_shopping,depConstShift2_shopping,"(alt_tdd.start<0) * np.minimum(0-alt_tdd.start,48) + (alt_tdd.start>26) * np.minimum(alt_tdd.start-26,15)" -arrConstShift1_shopping,arrConstShift1_shopping,"(alt_tdd.end<8) * np.minimum(8-alt_tdd.end,2) + (alt_tdd.end>13) * np.minimum(alt_tdd.end-13,30)" -arrConstShift2_shopping,arrConstShift2_shopping,"(alt_tdd.end<0) * np.minimum(0-alt_tdd.end,48) + (alt_tdd.start>28) * np.minimum(alt_tdd.end-28,15)" -#,, -,origin_to_destination_distance,1 -,num_person_joint_tours,1 diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_atwork.csv b/activitysim/examples/prototype_semcog/configs/stop_frequency_atwork.csv deleted file mode 100755 index 8f9709d4b..000000000 --- a/activitysim/examples/prototype_semcog/configs/stop_frequency_atwork.csv +++ /dev/null @@ -1,13 +0,0 @@ -Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in -Middle to Low Income HH ,income_in_thousands<50000,,0.45,0.45,0.45,0.45,0.45,0.45,0.45,0.45,0.45,0.45,0.45,0.45,0.45,0.45,0.45 -Number of eating tours tours undertaken by the person,num_eatout_tours,,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28 -Subtour departure less than or equal to 11AM,start<19,,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31 -Subtour return time greater or equal to 2PM,end>24,,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34 -Subtour duration in hours (integer),end-start,,0.56,0.56,0.56,0.56,0.56,0.56,0.56,0.56,0.56,0.56,0.56,0.56,0.56,0.56,0.56 -dummy for subtour origin (tour destination) at Exurban or Rual (AreaTypes = 6 or 7),destination_area_type >5,,0.27,0.27,0.27,0.27,0.27,0.27,0.27,0.27,0.27,0.27,0.27,0.27,0.27,0.27,0.27 -Primary Destination Accessibility (LOG of it),pracc,,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18 -subtour distance in miles (from tour destination to subtour primary destination one way),distance_in_miles,,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02 -Alternative specific constant for outbound stops,1,,,,,-3.896,-3.896,-3.896,-3.896,-5.709,-5.709,-5.709,-5.709,-7.361,-7.361,-7.361,-7.361 -Alternative specific constant for return stops,1,,-3.671,-5.388,-6.21,,-3.671,-5.388,-6.21,,-3.671,-5.388,-6.21,,-3.671,-5.388,-6.21 -Alternative specific constant for the total number of stops,1,,,0,0,,0,0,2.127,0,0,2.127,2.127,0,2.127,2.127,2.127 -Phase1_Calibration,1,,-0.214873516,-0.08829587,-0.021076701,-0.583908707,1.759594513,1.768617768,0.015908847,-0.496833561,0.742087614,0.721158833,-0.038026423,1.210255745,0.858858431,2.537970801,3.355148354 diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_eatout.csv b/activitysim/examples/prototype_semcog/configs/stop_frequency_eatout.csv deleted file mode 100755 index c6dc0b83b..000000000 --- a/activitysim/examples/prototype_semcog/configs/stop_frequency_eatout.csv +++ /dev/null @@ -1,54 +0,0 @@ -Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in -Middle to Low Income HH ,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, -Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, -High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, -Number of HH Persons,hhsize,,,,,,,,,,,,,,,, -Number of full time workes in HH,num_full,,,,,,,,,,,,,,,, -Number of Students in HH,num_student,,,,,,,,,,,,,,,, -Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, -Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, -Num kids between 4 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, -Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, -Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, -Number of Vehicles,auto_ownership,,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19 -Dummy for female,~is_joint & female,,,,,,,,,,,,,,,, -Dummy for all stops made by transit,tour_mode_is_transit,,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7 -Dummy for walking to all stops,tour_mode_is_non_motorized,,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73 -Number of work tours undertaken by the person,~is_joint * num_work_tours,,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28 -Number of university tours tours undertaken by the person,~is_joint * num_univ_tours,,,,,,,,,,,,,,,, -Number of shool tours tours undertaken by the person,~is_joint * num_school_tours,,,,,,,,,,,,,,,, -Number of escort tours tours undertaken by the person,~is_joint * num_escort_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the person,~is_joint * num_shop_tours,,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24 -Number of maintenace tours tours undertaken by the person,~is_joint * num_maint_tours,,,,,,,,,,,,,,,, -Number of eating tours tours undertaken by the person,~is_joint * num_eatout_tours,,,,,,,,,,,,,,,, -Number of visit tours tours undertaken by the person,~is_joint * num_social_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, -Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46 -Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -At least one kid and one adult participate in the tour,composition=='mixed',,0.37,0.37,0.37,,0.37,0.37,0.37,,0.37,0.37,0.37,,0.37,0.37,0.37 -AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>6) & (start<11),,,,,,,,,,,,,,,, -Arrival later than 17:00.,(end > 28),,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45 -Evening Arrival (>=19:00) Interacted with return tours,(end > 32),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 21),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 17),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 5),,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31 -HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, -dummy for distance less than 20 Miles ,(distance_in_miles < 20),,,,,,,,,,,,,,,, -dummy for distance in miles,distance_in_miles,,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01 -#distance in miles * Number of stops,distance_in_miles * @@numStopsAlt,,,,,,,,,,,,,,,, -No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Alternative specific constant for outbound stops,~is_joint,,,,,-2.19,-2.19,-2.19,-2.19,-4.516,-4.516,-4.516,-4.516,-5.255,-5.255,-5.255,-5.255 -Alternative specific constant for return stops,~is_joint,,-1.761,-3.697,-4.717,,-1.761,-3.697,-4.717,,-1.761,-3.697,-4.717,,-1.761,-3.697,-4.717 -Alternative specific constant for the total number of stops,~is_joint,,,0,0,,0,0,0.94,0,0,0.94,2.026,0,0.94,2.026,2.026 -Alternative specific constant for outbound stops on joint tours,is_joint,,,,,-1.783,-1.783,-1.783,-1.783,-4.067,-4.067,-4.067,-4.067,-4.998,-4.998,-4.998,-4.998 -Alternative specific constant for return stops on joint tours,is_joint,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379 -Alternative specific constant for the total number of stops on joint tours,is_joint,,,0,0,,0,0,0.518,0,0,0.518,1.497,0,0.518,1.497,1.497 -Dummy for an outbound visiting tour,primary_purpose == 'social',,,,,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69 -Dummy for a return visiting tour,primary_purpose == 'social',,-0.64,-0.64,-0.64,,-0.64,-0.64,-0.64,,-0.64,-0.64,-0.64,,-0.64,-0.64,-0.64 -Dummy for a visiting tour with both outbound and return leg,primary_purpose == 'social',,,,,,0.44,0.44,0.44,,0.44,0.44,0.44,,0.44,0.44,0.44 -Phase1_Calibration,~is_joint,,0.402777606,0.769044419,1.547375234,0.17724742,1.523737838,1.704085866,1.219450496,1.50935493,2.583402672,2.411844468,0.759903236,1.610165394,2.324582352,2.016696053,2.783482815 diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_escort.csv b/activitysim/examples/prototype_semcog/configs/stop_frequency_escort.csv deleted file mode 100755 index c38df6d57..000000000 --- a/activitysim/examples/prototype_semcog/configs/stop_frequency_escort.csv +++ /dev/null @@ -1,48 +0,0 @@ -Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in -Middle to Low Income HH,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, -Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, -High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, -Number of HH Persons,hhsize,,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24 -Number of full time workers in HH,num_full,,,,,,,,,,,,,,,, -Number of Students in HH,num_student,,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19 -Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, -Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, -Num kids between 5 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, -Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, -Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, -Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, -Dummy for female,female,,,,,,,,,,,,,,,, -Dummy for all stops made by transit,tour_mode_is_transit,,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7 -Dummy for walking to all stops,tour_mode_is_non_motorized,,-1.91,-1.91,-1.91,-1.91,-1.91,-1.91,-1.91,-1.91,-1.91,-1.91,-1.91,-1.91,-1.91,-1.91,-1.91 -Number of work tours undertaken by the person,num_work_tours,,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29 -Number of university tours tours undertaken by the person,num_univ_tours,,,,,,,,,,,,,,,, -Number of school tours tours undertaken by the person,num_school_tours,,,,,,,,,,,,,,,, -Number of escort tours tours undertaken by the person,num_escort_tours,,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15 -Number of shop tours undertaken by the person,num_shop_tours,,,,,,,,,,,,,,,, -Number of maintenace tours tours undertaken by the person,num_maint_tours,,,,,,,,,,,,,,,, -Number of eating tours tours undertaken by the person,num_eatout_tours,,,,,,,,,,,,,,,, -Number of visit tours tours undertaken by the person,num_social_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, -AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>6) & (start<11),,,,,,,,,,,,,,,, -Arrival later than 17:00.,(end > 28),,,,,,,,,,,,,,,, -Evening Arrival (>=19:00) Interacted with return tours,(end > 32),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 21),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 17),,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59 -Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 5),,,,,,,,,,,,,,,, -HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, -dummy for distance less than 5 Miles,(distance_in_miles < 5),,0.32,0.32,0.32,0.32,0.32,0.32,0.32,0.32,0.32,0.32,0.32,0.32,0.32,0.32,0.32 -dummy for distance in miles,distance_in_miles,,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01 -#distance in miles * Number of stops,distance_in_miles * @@numStopsAlt,,,,,,,,,,,,,,,, -No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Alternative specific constant for outbound stops,~is_joint,,,,,-2.173,-2.173,-2.173,-2.173,-4.294,-4.294,-4.294,-4.294,-4.758,-4.758,-4.758,-4.758 -Alternative specific constant for return stops,~is_joint,,-0.968,-2.41,-3.024,,-0.968,-2.41,-3.024,,-0.968,-2.41,-3.024,,-0.968,-2.41,-3.024 -Alternative specific constant for the total number of stops,~is_joint,,,0,0,,0,0,0,0,0,0,-1.807,0,0,-1.807,-1.807 -Alternative specific constant for outbound stops on joint tours,is_joint,,,,,-1.783,-1.783,-1.783,-1.783,-4.067,-4.067,-4.067,-4.067,-4.998,-4.998,-4.998,-4.998 -Alternative specific constant for return stops on joint tours,is_joint,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379 -Alternative specific constant for the total number of stops on joint tours,is_joint,,,0,0,,0,0,0.518,0,0,0.518,1.497,0,0.518,1.497,1.497 -Phase1_Calibration,~is_joint,,-0.281471428,-0.016095822,0.633091127,0.54790928,0.034142435,0.648536014,1.179253849,1.588769694,1.014803541,1.362137736,4.47587972,1.689728522,1.349848675,3.365045965,4.461548606 diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_othdiscr.csv b/activitysim/examples/prototype_semcog/configs/stop_frequency_othdiscr.csv deleted file mode 100755 index 9dc631cee..000000000 --- a/activitysim/examples/prototype_semcog/configs/stop_frequency_othdiscr.csv +++ /dev/null @@ -1,50 +0,0 @@ -Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in -Middle to Low Income HH ,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, -Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, -High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, -Number of HH Persons,hhsize,,,,,,,,,,,,,,,, -Number of full time workes in HH,num_full,,,,,,,,,,,,,,,, -Number of Students in HH,num_student,,,,,,,,,,,,,,,, -Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, -Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, -Num kids between 4 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, -Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, -Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, -Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, -Dummy for female,~is_joint & female,,,,,,,,,,,,,,,, -Dummy for all stops made by transit,tour_mode_is_transit,,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7 -Dummy for walking to all stops,tour_mode_is_non_motorized,,-2.4578,-2.4578,-2.4578,-2.4578,-2.4578,-2.4578,-2.4578,-2.4578,-2.4578,-2.4578,-2.4578,-2.4578,-2.4578,-2.4578,-2.4578 -Number of work tours undertaken by the person,~is_joint * num_work_tours,,-0.6153,-0.6153,-0.6153,-0.6153,-0.6153,-0.6153,-0.6153,-0.6153,-0.6153,-0.6153,-0.6153,-0.6153,-0.6153,-0.6153,-0.6153 -Number of university tours tours undertaken by the person,~is_joint * num_univ_tours,,,,,,,,,,,,,,,, -Number of shool tours tours undertaken by the person,~is_joint * num_school_tours,,-0.8176,-0.8176,-0.8176,-0.8176,-0.8176,-0.8176,-0.8176,-0.8176,-0.8176,-0.8176,-0.8176,-0.8176,-0.8176,-0.8176,-0.8176 -Number of escort tours tours undertaken by the person,~is_joint * num_escort_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the person,~is_joint * num_shop_tours,,-0.629,-0.629,-0.629,-0.629,-0.629,-0.629,-0.629,-0.629,-0.629,-0.629,-0.629,-0.629,-0.629,-0.629,-0.629 -Number of maintenace tours tours undertaken by the person,~is_joint * num_maint_tours,,-0.3715,-0.3715,-0.3715,-0.3715,-0.3715,-0.3715,-0.3715,-0.3715,-0.3715,-0.3715,-0.3715,-0.3715,-0.3715,-0.3715,-0.3715 -Number of eating tours tours undertaken by the person,~is_joint * num_eatout_tours,,,,,,,,,,,,,,,, -Number of visit tours tours undertaken by the person,~is_joint * num_social_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, -Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>6) & (start<11),,,,,,,,,,,,,,,, -Arrival later than 17:00.,(end > 28),,-0.6383,-0.6383,-0.6383,-0.6383,-0.6383,-0.6383,-0.6383,-0.6383,-0.6383,-0.6383,-0.6383,-0.6383,-0.6383,-0.6383,-0.6383 -Evening Arrival (>=19:00) Interacted with return tours,(end > 32),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 21),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 17),,0.8335,0.8335,0.8335,0.8335,0.8335,0.8335,0.8335,0.8335,0.8335,0.8335,0.8335,0.8335,0.8335,0.8335,0.8335 -Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 5),,,,,,,,,,,,,,,, -HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, -dummy for distance less than 10 Miles ,(distance_in_miles < 10),,0.3756,0.3756,0.3756,0.3756,0.3756,0.3756,0.3756,0.3756,0.3756,0.3756,0.3756,0.3756,0.3756,0.3756,0.3756 -dummy for distance in miles,distance_in_miles,,-0.0225,-0.0225,-0.0225,-0.0225,-0.0225,-0.0225,-0.0225,-0.0225,-0.0225,-0.0225,-0.0225,-0.0225,-0.0225,-0.0225,-0.0225 -#distance in miles * Number of stops,distance_in_miles * @@numStopsAlt,,,,,,,,,,,,,,,, -No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Alternative specific constant for outbound stops,~is_joint,,,,,-1.581,-1.581,-1.581,-1.581,-3.323,-3.323,-3.323,-3.323,-4.623,-4.623,-4.623,-4.623 -Alternative specific constant for return stops,~is_joint,,-0.921,-2.336,-2.927,,-0.921,-2.336,-2.927,,-0.921,-2.336,-2.927,,-0.921,-2.336,-2.927 -Alternative specific constant for the total number of stops,~is_joint,,,0,0,,0,0,0.863,0,0,0.863,0.939,0,0.863,0.939,0.939 -Alternative specific constant for outbound stops on joint tours,is_joint,,,,,-1.783,-1.783,-1.783,-1.783,-4.067,-4.067,-4.067,-4.067,-4.998,-4.998,-4.998,-4.998 -Alternative specific constant for return stops on joint tours,is_joint,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379 -Alternative specific constant for the total number of stops on joint tours,is_joint,,,0,0,,0,0,0.518,0,0,0.518,1.497,0,0.518,1.497,1.497 -Phase1_Calibration,~is_joint,,0.187263987,0.670000983,0.992092361,0.283823906,0.461537002,0.958158373,-0.156485013,0.806611419,0.872137091,0.343003767,0.7657564,2.063744949,1.13525473,1.376716611,2.113754844 diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_othmaint.csv b/activitysim/examples/prototype_semcog/configs/stop_frequency_othmaint.csv deleted file mode 100755 index d8f4a60fc..000000000 --- a/activitysim/examples/prototype_semcog/configs/stop_frequency_othmaint.csv +++ /dev/null @@ -1,51 +0,0 @@ -Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in -Middle to Low Income HH ,(income_in_thousands>19999) & (income_in_thousands<50000),,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17 -Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23 -High Income HH,(income_in_thousands>=100000),,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24 -Number of HH Persons,hhsize,,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31 -Number of full time workes in HH,num_full,,,,,,,,,,,,,,,, -Number of Students in HH,num_student,,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21 -Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, -Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74 -Num kids between 4 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, -Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, -Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, -Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, -Dummy for female,~is_joint & female,,0.3012,0.3012,0.3012,0.3012,0.3012,0.3012,0.3012,0.3012,0.3012,0.3012,0.3012,0.3012,0.3012,0.3012,0.3012 -Dummy for all stops made by transit,tour_mode_is_transit,,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7 -Dummy for walking to all stops,tour_mode_is_non_motorized,,-1.4329,-1.4329,-1.4329,-1.4329,-1.4329,-1.4329,-1.4329,-1.4329,-1.4329,-1.4329,-1.4329,-1.4329,-1.4329,-1.4329,-1.4329 -Number of work tours undertaken by the person,~is_joint * num_work_tours,,-0.364,-0.364,-0.364,-0.364,-0.364,-0.364,-0.364,-0.364,-0.364,-0.364,-0.364,-0.364,-0.364,-0.364,-0.364 -Number of university tours tours undertaken by the person,~is_joint * num_univ_tours,,-0.6252,-0.6252,-0.6252,-0.6252,-0.6252,-0.6252,-0.6252,-0.6252,-0.6252,-0.6252,-0.6252,-0.6252,-0.6252,-0.6252,-0.6252 -Number of shool tours tours undertaken by the person,~is_joint * num_school_tours,,-1.4135,-1.4135,-1.4135,-1.4135,-1.4135,-1.4135,-1.4135,-1.4135,-1.4135,-1.4135,-1.4135,-1.4135,-1.4135,-1.4135,-1.4135 -Number of escort tours tours undertaken by the person,~is_joint * num_escort_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the person,~is_joint * num_shop_tours,,-0.1428,-0.1428,-0.1428,-0.1428,-0.1428,-0.1428,-0.1428,-0.1428,-0.1428,-0.1428,-0.1428,-0.1428,-0.1428,-0.1428,-0.1428 -Number of maintenace tours tours undertaken by the person,~is_joint * num_maint_tours,,,,,,,,,,,,,,,, -Number of eating tours tours undertaken by the person,~is_joint * num_eatout_tours,,,,,,,,,,,,,,,, -Number of visit tours tours undertaken by the person,~is_joint * num_social_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, -Number of maintenace tours undertaken by the houshold,num_hh_maint_tours,,-0.0468,-0.0468,-0.0468,-0.0468,-0.0468,-0.0468,-0.0468,-0.0468,-0.0468,-0.0468,-0.0468,-0.0468,-0.0468,-0.0468,-0.0468 -Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,0.4904,0.4904,0.4904,,0.4904,0.4904,0.4904,,0.4904,0.4904,0.4904,,0.4904,0.4904,0.4904 -AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>6) & (start<11),,,,,,,,,,,,,,,, -Arrival later than 17:00.,(end > 28),,,,,,,,,,,,,,,, -Evening Arrival (>=19:00) Interacted with return tours,(end > 32),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 21),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 17),,0.5134,0.5134,0.5134,0.5134,0.5134,0.5134,0.5134,0.5134,0.5134,0.5134,0.5134,0.5134,0.5134,0.5134,0.5134 -Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 5),,,,,,,,,,,,,,,, -HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, -dummy for distance less than 20 Miles ,(distance_in_miles < 20),,-0.408,-0.408,-0.408,-0.408,-0.408,-0.408,-0.408,-0.408,-0.408,-0.408,-0.408,-0.408,-0.408,-0.408,-0.408 -dummy for distance in miles,distance_in_miles,,0.0273,0.0273,0.0273,0.0273,0.0273,0.0273,0.0273,0.0273,0.0273,0.0273,0.0273,0.0273,0.0273,0.0273,0.0273 -#distance in miles * Number of stops,distance_in_miles * @@numStopsAlt,,,,,,,,,,,,,,,, -No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Alternative specific constant for outbound stops,~is_joint,,,,,-1.761,-1.761,-1.761,-1.761,-3.661,-3.661,-3.661,-3.661,-5.426,-5.426,-5.426,-5.426 -Alternative specific constant for return stops,~is_joint,,-0.585,-1.48,-2.462,,-0.585,-1.48,-2.462,,-0.585,-1.48,-2.462,,-0.585,-1.48,-2.462 -Alternative specific constant for the total number of stops,~is_joint,,,0,0,,0,0,0.414,0,0,0.414,0.488,0,0.414,0.488,0.488 -Alternative specific constant for outbound stops on joint tours,is_joint,,,,,-1.783,-1.783,-1.783,-1.783,-4.067,-4.067,-4.067,-4.067,-4.998,-4.998,-4.998,-4.998 -Alternative specific constant for return stops on joint tours,is_joint,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379 -Alternative specific constant for the total number of stops on joint tours,is_joint,,,0,0,,0,0,0.518,0,0,0.518,1.497,0,0.518,1.497,1.497 -Phase1_Calibration,~is_joint,,0.475190752,0.530588025,1.389497026,0.960593185,0.775245847,1.122815367,1.226361438,1.683900584,1.594911845,1.101961687,2.302278146,3.35277309,2.734475828,2.746850954,3.93916549 diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_school.csv b/activitysim/examples/prototype_semcog/configs/stop_frequency_school.csv deleted file mode 100755 index d48e0f739..000000000 --- a/activitysim/examples/prototype_semcog/configs/stop_frequency_school.csv +++ /dev/null @@ -1,45 +0,0 @@ -Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in -Middle to Low Income HH,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, -Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, -High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, -Number of HH Persons,hhsize,,-0.506,-0.506,-0.506,-0.506,-0.506,-0.506,-0.506,-0.506,-0.506,-0.506,-0.506,-0.506,-0.506,-0.506,-0.506 -Number of full time workers in HH,num_full,,,,,,,,,,,,,,,, -Number of Students in HH,num_student,,,,,,,,,,,,,,,, -Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, -Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, -Num kids between 5 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, -Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,0.3299,0.3299,0.3299,0.3299,0.3299,0.3299,0.3299,0.3299,0.3299,0.3299,0.3299,0.3299,0.3299,0.3299,0.3299 -Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, -Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Cars > Number of Workers,more_cars_than_workers,,0.5331,0.5331,0.5331,0.5331,0.5331,0.5331,0.5331,0.5331,0.5331,0.5331,0.5331,0.5331,0.5331,0.5331,0.5331 -Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, -Dummy for female,female,,0.4099,0.4099,0.4099,0.4099,0.4099,0.4099,0.4099,0.4099,0.4099,0.4099,0.4099,0.4099,0.4099,0.4099,0.4099 -Dummy for all stops made by transit,tour_mode_is_transit,,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7 -Dummy for walking to all stops,tour_mode_is_non_motorized,,-1.8163,-1.8163,-1.8163,-1.8163,-1.8163,-1.8163,-1.8163,-1.8163,-1.8163,-1.8163,-1.8163,-1.8163,-1.8163,-1.8163,-1.8163 -Number of work tours undertaken by the person,num_work_tours,,,,,,,,,,,,,,,, -Number of university tours tours undertaken by the person,num_univ_tours,,,,,,,,,,,,,,,, -Number of school tours tours undertaken by the person,num_school_tours,,,,,,,,,,,,,,,, -Number of escort tours tours undertaken by the person,num_escort_tours,,1.2365,1.2365,1.2365,1.2365,1.2365,1.2365,1.2365,1.2365,1.2365,1.2365,1.2365,1.2365,1.2365,1.2365,1.2365 -Number of shop tours undertaken by the person,num_shop_tours,,,,,,,,,,,,,,,, -Number of maintenace tours tours undertaken by the person,num_maint_tours,,,,,,,,,,,,,,,, -Number of eating tours tours undertaken by the person,num_eatout_tours,,,,,,,,,,,,,,,, -Number of visit tours tours undertaken by the person,num_social_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, -AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>6) & (start<11),,,,,,,,,,,,,,,, -Arrival later than 17:00.,(end > 28),,1.8377,1.8377,1.8377,1.8377,1.8377,1.8377,1.8377,1.8377,1.8377,1.8377,1.8377,1.8377,1.8377,1.8377,1.8377 -Evening Arrival (>=19:00) Interacted with return tours,(end > 32),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 21),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 17),,0.9549,0.9549,0.9549,0.9549,0.9549,0.9549,0.9549,0.9549,0.9549,0.9549,0.9549,0.9549,0.9549,0.9549,0.9549 -Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 5),,,,,,,,,,,,,,,, -HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, -dummy for distance less than 15 Miles,(distance_in_miles < 15),,,,,,,,,,,,,,,, -dummy for distance in miles,distance_in_miles,,0.0438,0.0438,0.0438,0.0438,0.0438,0.0438,0.0438,0.0438,0.0438,0.0438,0.0438,0.0438,0.0438,0.0438,0.0438 -#distance in miles * Number of stops,distance_in_miles * @@numStopsAlt,,,,,,,,,,,,,,,, -No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Alternative specific constant for outbound stops,1,,,,,-2.123,-2.123,-2.123,-2.123,-3.798,-3.798,-3.798,-3.798,-5.85,-5.85,-5.85,-5.85 -Alternative specific constant for return stops,1,,-1.206,-2.672,-3.364,,-1.206,-2.672,-3.364,,-1.206,-2.672,-3.364,,-1.206,-2.672,-3.364 -Alternative specific constant for the total number of stops,1,,,0,0,,0,0,0.701,0,0,0.701,1.135,0,0.701,1.135,1.135 -Phase1_Calibration,1,,-0.462185603,0.034598859,0.143710811,-0.107820253,0.247416913,0.525399532,0.065742876,-0.264881606,-0.844194184,-0.191651123,-0.295391166,1.390171934,-1.256414914,0.034312538,0.662067578 diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_shopping.csv b/activitysim/examples/prototype_semcog/configs/stop_frequency_shopping.csv deleted file mode 100755 index 909e70610..000000000 --- a/activitysim/examples/prototype_semcog/configs/stop_frequency_shopping.csv +++ /dev/null @@ -1,51 +0,0 @@ -Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in -Middle to Low Income HH,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, -Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, -High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, -Number of HH Persons,hhsize,,-0.1522,-0.1522,-0.1522,-0.1522,-0.1522,-0.1522,-0.1522,-0.1522,-0.1522,-0.1522,-0.1522,-0.1522,-0.1522,-0.1522,-0.1522 -Number of full time workers in HH,num_full,,,,,,,,,,,,,,,, -Number of Students in HH,num_student,,,,,,,,,,,,,,,, -Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, -Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, -Num kids between 5 and 15 (including) years old,num_age_5_15,,0.0482,0.0482,0.0482,0.0482,0.0482,0.0482,0.0482,0.0482,0.0482,0.0482,0.0482,0.0482,0.0482,0.0482,0.0482 -Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, -Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, -Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, -Dummy for female,~is_joint & female,,0.1721,0.1721,0.1721,0.1721,0.1721,0.1721,0.1721,0.1721,0.1721,0.1721,0.1721,0.1721,0.1721,0.1721,0.1721 -Dummy for all stops made by transit,tour_mode_is_transit,,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7 -Dummy for walking to all stops,tour_mode_is_non_motorized,,-1.4908,-1.4908,-1.4908,-1.4908,-1.4908,-1.4908,-1.4908,-1.4908,-1.4908,-1.4908,-1.4908,-1.4908,-1.4908,-1.4908,-1.4908 -Number of work tours undertaken by the person,~is_joint * num_work_tours,,-0.548,-0.548,-0.548,-0.548,-0.548,-0.548,-0.548,-0.548,-0.548,-0.548,-0.548,-0.548,-0.548,-0.548,-0.548 -Number of university tours tours undertaken by the person,~is_joint * num_univ_tours,,-0.6709,-0.6709,-0.6709,-0.6709,-0.6709,-0.6709,-0.6709,-0.6709,-0.6709,-0.6709,-0.6709,-0.6709,-0.6709,-0.6709,-0.6709 -Number of school tours tours undertaken by the person,~is_joint * num_school_tours,,,,,,,,,,,,,,,, -Number of escort tours tours undertaken by the person,~is_joint * num_escort_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the person,~is_joint * num_shop_tours,,,,,,,,,,,,,,,, -Number of maintenace tours tours undertaken by the person,~is_joint * num_maint_tours,,-0.1977,-0.1977,-0.1977,-0.1977,-0.1977,-0.1977,-0.1977,-0.1977,-0.1977,-0.1977,-0.1977,-0.1977,-0.1977,-0.1977,-0.1977 -Number of eating tours tours undertaken by the person,~is_joint * num_eatout_tours,,,,,,,,,,,,,,,, -Number of visit tours tours undertaken by the person,~is_joint * num_social_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the houshold,num_hh_shop_tours,,-0.0733,-0.0733,-0.0733,-0.0733,-0.0733,-0.0733,-0.0733,-0.0733,-0.0733,-0.0733,-0.0733,-0.0733,-0.0733,-0.0733,-0.0733 -Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -Dummy for only adults participate in the tour,composition=='adults',,0.1902,0.1902,0.1902,0.1902,0.1902,0.1902,0.1902,0.1902,0.1902,0.1902,0.1902,0.1902,0.1902,0.1902,0.1902 -AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>6) & (start<11),,,,,,,,,,,,,,,, -Arrival later than 17:00.,(end > 28),,,,,,,,,,,,,,,, -Evening Arrival (>=19:00) Interacted with return tours,(end > 32),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 21),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 17),,0.9056,0.9056,0.9056,0.9056,0.9056,0.9056,0.9056,0.9056,0.9056,0.9056,0.9056,0.9056,0.9056,0.9056,0.9056 -Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 5),,,,,,,,,,,,,,,, -HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, -dummy for distance less than 5 Miles,(distance_in_miles < 5),,0.3768,0.3768,0.3768,0.3768,0.3768,0.3768,0.3768,0.3768,0.3768,0.3768,0.3768,0.3768,0.3768,0.3768,0.3768 -dummy for distance in miles,distance_in_miles,,0.0289,0.0289,0.0289,0.0289,0.0289,0.0289,0.0289,0.0289,0.0289,0.0289,0.0289,0.0289,0.0289,0.0289,0.0289 -#distance in miles * Number of stops,distance_in_miles * @@numStopsAlt,,,,,,,,,,,,,,,, -No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Alternative specific constant for outbound stops,~is_joint,,,,,-1.339,-1.339,-1.339,-1.339,-3.11,-3.11,-3.11,-3.11,-4.487,-4.487,-4.487,-4.487 -Alternative specific constant for return stops,~is_joint,,-1.179,-2.305,-3.024,,-1.179,-2.305,-3.024,,-1.179,-2.305,-3.024,,-1.179,-2.305,-3.024 -Alternative specific constant for the total number of stops,~is_joint,,,0,0,,0,0,0.252,0,0,0.252,0.514,0,0.252,0.514,0.514 -Alternative specific constant for outbound stops on joint tours,is_joint,,,,,-1.783,-1.783,-1.783,-1.783,-4.067,-4.067,-4.067,-4.067,-4.998,-4.998,-4.998,-4.998 -Alternative specific constant for return stops on joint tours,is_joint,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379 -Alternative specific constant for the total number of stops on joint tours,is_joint,,,0,0,,0,0,0.518,0,0,0.518,1.497,0,0.518,1.497,1.497 -Phase1_Calibration,~is_joint,,0.061908526,0.211807872,0.269959028,0.159052037,0.386325269,0.209133272,0.563685874,1.002319475,1.182476858,1.537241286,1.004078003,2.038636069,1.69019331,2.060858768,2.809711477 diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_social.csv b/activitysim/examples/prototype_semcog/configs/stop_frequency_social.csv deleted file mode 100755 index c04a51f48..000000000 --- a/activitysim/examples/prototype_semcog/configs/stop_frequency_social.csv +++ /dev/null @@ -1,54 +0,0 @@ -Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in -Middle to Low Income HH ,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, -Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, -High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, -Number of HH Persons,hhsize,,,,,,,,,,,,,,,, -Number of full time workes in HH,num_full,,,,,,,,,,,,,,,, -Number of Students in HH,num_student,,,,,,,,,,,,,,,, -Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, -Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, -Num kids between 4 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, -Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, -Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, -Number of Vehicles,auto_ownership,,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19,-0.19 -Dummy for female,~is_joint & female,,,,,,,,,,,,,,,, -Dummy for all stops made by transit,tour_mode_is_transit,,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7 -Dummy for walking to all stops,tour_mode_is_non_motorized,,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73,-1.73 -Number of work tours undertaken by the person,~is_joint * num_work_tours,,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28,-0.28 -Number of university tours tours undertaken by the person,~is_joint * num_univ_tours,,,,,,,,,,,,,,,, -Number of shool tours tours undertaken by the person,~is_joint * num_school_tours,,,,,,,,,,,,,,,, -Number of escort tours tours undertaken by the person,~is_joint * num_escort_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the person,~is_joint * num_shop_tours,,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24,-0.24 -Number of maintenace tours tours undertaken by the person,~is_joint * num_maint_tours,,,,,,,,,,,,,,,, -Number of eating tours tours undertaken by the person,~is_joint * num_eatout_tours,,,,,,,,,,,,,,,, -Number of visit tours tours undertaken by the person,~is_joint * num_social_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, -Number of persons participating in the tour.Outgoing stops interaction,is_joint * number_of_participants,,,,,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46 -Number of persons participating in the tour.Return stops interaction,is_joint * number_of_participants,,,,,,,,,,,,,,,, -At least one kid and one adult participate in the tour,composition=='mixed',,0.37,0.37,0.37,0.37,0.37,0.37,0.37,0.37,0.37,0.37,0.37,0.37,0.37,0.37,0.37 -AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>6) & (start<11),,,,,,,,,,,,,,,, -Arrival later than 17:00.,(end > 28),,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45 -Evening Arrival (>=19:00) Interacted with return tours,(end > 32),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 21),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 17),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 5),,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31,1.31 -HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, -dummy for distance less than 20 Miles ,(distance_in_miles < 20),,,,,,,,,,,,,,,, -dummy for distance in miles,distance_in_miles,,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01 -#distance in miles * Number of stops,distance_in_miles * @@numStopsAlt,,,,,,,,,,,,,,,, -No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Alternative specific constant for outbound stops,~is_joint,,,,,-1.081,-1.081,-1.081,-1.081,-2.874,-2.874,-2.874,-2.874,-4.552,-4.552,-4.552,-4.552 -Alternative specific constant for return stops,~is_joint,,-1.12,-2.764,-3.451,,-1.12,-2.764,-3.451,,-1.12,-2.764,-3.451,,-1.12,-2.764,-3.451 -Alternative specific constant for the total number of stops,~is_joint,,,0,0,,0,0,0.496,0,0,0.496,0.882,0,0.496,0.882,0.882 -Alternative specific constant for outbound stops on joint tours,is_joint,,,,,-1.783,-1.783,-1.783,-1.783,-4.067,-4.067,-4.067,-4.067,-4.998,-4.998,-4.998,-4.998 -Alternative specific constant for return stops on joint tours,is_joint,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379,,-1.329,-2.796,-3.379 -Alternative specific constant for the total number of stops on joint tours,is_joint,,,0,0,,0,0,0.518,0,0,0.518,1.497,0,0.518,1.497,1.497 -Dummy for an outbound visiting tour,primary_purpose == 'social',,,,,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69 -Dummy for a return visiting tour,primary_purpose == 'social',,-0.64,-0.64,-0.64,,-0.64,-0.64,-0.64,,-0.64,-0.64,-0.64,,-0.64,-0.64,-0.64 -Dummy for a visiting tour with both outbound and return leg,primary_purpose == 'social',,,,,,0.44,0.44,0.44,,0.44,0.44,0.44,,0.44,0.44,0.44 -Phase1_Calibration,~is_joint,,0.38246443,0.839705649,1.208071759,0.577945215,0.470848758,0.683396345,0.561543342,1.335624596,0.972779572,1.949517699,0.318404726,3.210420697,0.539522475,0.864775287,3.503722118 diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_univ.csv b/activitysim/examples/prototype_semcog/configs/stop_frequency_univ.csv deleted file mode 100755 index 9c9ba1af0..000000000 --- a/activitysim/examples/prototype_semcog/configs/stop_frequency_univ.csv +++ /dev/null @@ -1,45 +0,0 @@ -Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in -Middle to Low Income HH,(income_in_thousands>19999) & (income_in_thousands<50000),,,,,,,,,,,,,,,, -Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,,,,,,,,,,,,,,, -High Income HH,(income_in_thousands>=100000),,,,,,,,,,,,,,,, -Number of HH Persons,hhsize,,-0.2827,-0.2827,-0.2827,-0.2827,-0.2827,-0.2827,-0.2827,-0.2827,-0.2827,-0.2827,-0.2827,-0.2827,-0.2827,-0.2827,-0.2827 -Number of full time workers in HH,num_full,,,,,,,,,,,,,,,, -Number of Students in HH,num_student,,,,,,,,,,,,,,,, -Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, -Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,,,,,,,,,,,,,,, -Num kids between 5 and 15 (including) years old,num_age_5_15,,,,,,,,,,,,,,,, -Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,0.6823,0.6823,0.6823,0.6823,0.6823,0.6823,0.6823,0.6823,0.6823,0.6823,0.6823,0.6823,0.6823,0.6823,0.6823 -Number of Adults (>= 16 years old),num_adult,,,,,,,,,,,,,,,, -Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Cars > Number of Workers,more_cars_than_workers,,,,,,,,,,,,,,,, -Number of Vehicles,auto_ownership,,0.1703,0.1703,0.1703,0.1703,0.1703,0.1703,0.1703,0.1703,0.1703,0.1703,0.1703,0.1703,0.1703,0.1703,0.1703 -Dummy for female,female,,0.7349,0.7349,0.7349,0.7349,0.7349,0.7349,0.7349,0.7349,0.7349,0.7349,0.7349,0.7349,0.7349,0.7349,0.7349 -Dummy for all stops made by transit,tour_mode_is_transit,,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7 -Dummy for walking to all stops,tour_mode_is_non_motorized,,,,,,,,,,,,,,,, -Number of work tours undertaken by the person,num_work_tours,,,,,,,,,,,,,,,, -Number of university tours tours undertaken by the person,num_univ_tours,,,,,,,,,,,,,,,, -Number of school tours tours undertaken by the person,num_school_tours,,,,,,,,,,,,,,,, -Number of escort tours tours undertaken by the person,num_escort_tours,,0.9018,0.9018,0.9018,0.9018,0.9018,0.9018,0.9018,0.9018,0.9018,0.9018,0.9018,0.9018,0.9018,0.9018,0.9018 -Number of shop tours undertaken by the person,num_shop_tours,,,,,,,,,,,,,,,, -Number of maintenace tours tours undertaken by the person,num_maint_tours,,,,,,,,,,,,,,,, -Number of eating tours tours undertaken by the person,num_eatout_tours,,,,,,,,,,,,,,,, -Number of visit tours tours undertaken by the person,num_social_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the houshold,num_hh_shop_tours,,,,,,,,,,,,,,,, -AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>6) & (start<11),,,,,,,,,,,,,,,, -Arrival later than 17:00.,(end > 28),,0.389,0.389,0.389,0.389,0.389,0.389,0.389,0.389,0.389,0.389,0.389,0.389,0.389,0.389,0.389 -Evening Arrival (>=19:00) Interacted with return tours,(end > 32),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 21),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 17),,0.8434,0.8434,0.8434,0.8434,0.8434,0.8434,0.8434,0.8434,0.8434,0.8434,0.8434,0.8434,0.8434,0.8434,0.8434 -Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 5),,,,,,,,,,,,,,,, -HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -HH accesibility for inbound tours. Interaction,hhacc,,0.2481,0.2481,0.2481,0.2481,0.2481,0.2481,0.2481,0.2481,0.2481,0.2481,0.2481,0.2481,0.2481,0.2481,0.2481 -Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, -dummy for distance less than 20 Miles,(distance_in_miles < 20),,,,,,,,,,,,,,,, -dummy for distance in miles,distance_in_miles,,,,,,,,,,,,,,,, -#distance in miles * Number of stops,distance_in_miles * @@numStopsAlt,,,,,,,,,,,,,,,, -No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Alternative specific constant for outbound stops,1,,,,,-2.628,-2.628,-2.628,-2.628,-3.741,-3.741,-3.741,-3.741,-4.981,-4.981,-4.981,-4.981 -Alternative specific constant for return stops,1,,-2.003,-3.51,-3.677,,-2.003,-3.51,-3.677,,-2.003,-3.51,-3.677,,-2.003,-3.51,-3.677 -Alternative specific constant for the total number of stops,1,,,0,0,,0,0,1.272,0,0,1.272,1.871,0,1.272,1.871,1.871 -Phase1_Calibration,1,,0.420011539,0.781344394,0.733748807,0.712121201,1.545847839,1.973538669,0.675841505,0.652388889,0.802044327,0.807649045,0.537484229,1.764449963,1.356930627,0.668833391,1.667362221 diff --git a/activitysim/examples/prototype_semcog/configs/stop_frequency_work.csv b/activitysim/examples/prototype_semcog/configs/stop_frequency_work.csv deleted file mode 100755 index 89389766d..000000000 --- a/activitysim/examples/prototype_semcog/configs/stop_frequency_work.csv +++ /dev/null @@ -1,46 +0,0 @@ -Description,Expression,0out_0in,0out_1in,0out_2in,0out_3in,1out_0in,1out_1in,1out_2in,1out_3in,2out_0in,2out_1in,2out_2in,2out_3in,3out_0in,3out_1in,3out_2in,3out_3in -Middle to Low Income HH,(income_in_thousands>19999) & (income_in_thousands<50000),,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17 -Mid to High Income HH,(income_in_thousands>=50000) & (income_in_thousands<100000),,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23 -High Income HH,(income_in_thousands>=100000),,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24 -Number of HH Persons,hhsize,,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31 -Number of full time workers in HH,num_full,,,,,,,,,,,,,,,, -Number of Students in HH,num_student,,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21 -Num Kids between 0 and 4 (including) years old,num_age_0_4,,,,,,,,,,,,,,,, -Presence of Kids between 0 and 4 (including) years old,(num_age_0_4 > 0),,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74 -Num kids between 5 and 15 (including) years old,num_age_5_15,,0.08,0.08,0.08,0.08,0.08,0.08,0.08,0.08,0.08,0.08,0.08,0.08,0.08,0.08,0.08 -Presence of kids between 5 and 15 (including) years old,(num_age_5_15 > 0),,0.26,0.26,0.26,0.26,0.26,0.26,0.26,0.26,0.26,0.26,0.26,0.26,0.26,0.26,0.26 -Number of Adults (>= 16 years old),num_adult,,0.03,0.03,0.03,0.03,0.03,0.03,0.03,0.03,0.03,0.03,0.03,0.03,0.03,0.03,0.03 -Dummy for single parent household,(num_adult == 1) & (num_age_0_4 + num_age_5_15 > 0),,,,,,,,,,,,,,,, -Number of Cars > Number of Workers,more_cars_than_workers,,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16 -Number of Vehicles,auto_ownership,,,,,,,,,,,,,,,, -Dummy for female,female,,0.22,0.22,0.22,0.22,0.22,0.22,0.22,0.22,0.22,0.22,0.22,0.22,0.22,0.22,0.22 -Dummy for all stops made by transit,tour_mode_is_transit,,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7 -Dummy for walking to all stops,tour_mode_is_non_motorized,,-1.54,-1.54,-1.54,-1.54,-1.54,-1.54,-1.54,-1.54,-1.54,-1.54,-1.54,-1.54,-1.54,-1.54,-1.54 -Number of work tours undertaken by the person,num_work_tours,,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15,-0.15 -Number of university tours tours undertaken by the person,num_univ_tours,,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48 -Number of school tours tours undertaken by the person,num_school_tours,,-1.55,-1.55,-1.55,-1.55,-1.55,-1.55,-1.55,-1.55,-1.55,-1.55,-1.55,-1.55,-1.55,-1.55,-1.55 -Number of escort tours tours undertaken by the person,num_escort_tours,,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 -Number of shop tours undertaken by the person,num_shop_tours,,,,,,,,,,,,,,,, -Number of maintenace tours tours undertaken by the person,num_maint_tours,,,,,,,,,,,,,,,, -Number of eating tours tours undertaken by the person,num_eatout_tours,,,,,,,,,,,,,,,, -Number of visit tours tours undertaken by the person,num_social_tours,,,,,,,,,,,,,,,, -Number of shop tours undertaken by the houshold,num_hh_shop_tours,,-0.05,-0.05,-0.05,-0.05,-0.05,-0.05,-0.05,-0.05,-0.05,-0.05,-0.05,-0.05,-0.05,-0.05,-0.05 -AM Peak departure between 6AM and 7 AM (including) Interacted with outbound tours,(start>6) & (start<11),,-1.93,-1.93,-1.93,-1.93,-1.93,-1.93,-1.93,-1.93,-1.93,-1.93,-1.93,-1.93,-1.93,-1.93,-1.93 -Arrival later than 17:00.,(end > 28),,,,,,,,,,,,,,,, -Evening Arrival (>=19:00) Interacted with return tours,(end > 32),,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31,0.31 -Dummy for the duration of the tour being equal or greater than or equal to 11 hours,(duration > 21),,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6 -Dummy for the duration of the tour being equal or greater than or equal to 9 hours ,(duration > 17),,,,,,,,,,,,,,,, -Dummy for the duration of the tour being equal or greater than or equal to 3 hours ,(duration > 5),,,,,,,,,,,,,,,, -HH accesibility for outbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -HH accesibility for inbound tours. Interaction,hhacc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for outbound tours. Interaction,pracc,,,,,,,,,,,,,,,, -Primary Destination Accessibility for return tours. Interaction,pracc,,,,,,,,,,,,,,,, -dummy for distance less than 20 Miles,(distance_in_miles < 20),,-0.22,-0.22,-0.22,-0.22,-0.22,-0.22,-0.22,-0.22,-0.22,-0.22,-0.22,-0.22,-0.22,-0.22,-0.22 -dummy for distance in miles,distance_in_miles,,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01 -#distance in miles * Number of stops,distance_in_miles * @@numStopsAlt,,,,,,,,,,,,,,,, -No stops if tour mode is driveTransit,tour_mode_is_drive_transit,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Alternative specific constant for outbound stops,1,,,,,-0.833,-0.833,-0.833,-0.833,-2.613,-2.613,-2.613,-2.613,-3.934,-3.934,-3.934,-3.934 -Alternative specific constant for return stops,1,,-0.445,-1.775,-2.139,,-0.445,-1.775,-2.139,,-0.445,-1.775,-2.139,,-0.445,-1.775,-2.139 -Alternative specific constant for the total number of stops,1,,,0,0,,0,0,0,0,0,0,0.695,0,0,0.695,0.695 -Number of subtours in the tour,num_atwork_subtours,,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19,0.19 -Phase1_Calibration,1,,0.223196473,0.325510562,0.203854333,-0.303375802,-0.391244072,-0.093964049,-0.096568307,-0.097190886,-0.494486563,0.334444913,-0.145593481,0.40493641,-0.229067675,0.390561162,0.076806162 diff --git a/activitysim/examples/prototype_semcog/configs/telecommute_frequency_coeffs.csv b/activitysim/examples/prototype_semcog/configs/telecommute_frequency_coeffs.csv deleted file mode 100755 index e4aeff94d..000000000 --- a/activitysim/examples/prototype_semcog/configs/telecommute_frequency_coeffs.csv +++ /dev/null @@ -1,58 +0,0 @@ -coefficient_name,coefficient_name,value,constrain -coef_Services_1day,Services,-1.624,F -coef_SalesOffice_1day,SalesOffice,-0.62,F -coef_ResourceConstruct_1day,ResourceConstruct,-1.57,F -coef_TransportMat_1day,TransportMat,-14.747,F -coef_HasChildren0to5_1day,HasChildren0to5,0,F -coef_HasChildren6to12_1day,HasChildren6to12,0,F -coef_OneAdultInHH_1day,OneAdultInHH,0.177,F -coef_2plusAdultsInHH_1day,2plusAdultsInHH,0,F -coef_Female_1day,Female,0,F -coef_PartTimeWorker_1day,PartTimeWorker,0,F -coef_CollegeStudent_1day,CollegeStudent,0,F -coef_PaysToPark_1day,PaysToPark,0.457,F -coef_Income60to100k_1day,Income60to100k,0.56,F -coef_Income100to150k_1day,Income100to150k,0.644,F -coef_Income150kplus_1day,Income150kplus,0.92,F -coef_0Autos_1day,0Autos,0,F -coef_1Auto_1day,1Auto,0,F -coef_3plusAutos_1day,3plusAutos,0,F -coef_DistanceToWork_1day,DistanceToWork,0.016,F -coef_Services_23day,Services,-0.651,F -coef_SalesOffice_23day,SalesOffice,-0.738,F -coef_ResourceConstruct_23day,ResourceConstruct,0,F -coef_TransportMat_23day,TransportMat,0,F -coef_HasChildren0to5_23day,HasChildren0to5,0,F -coef_HasChildren6to12_23day,HasChildren6to12,0.517,F -coef_OneAdultInHH_23day,OneAdultInHH,0,F -coef_2plusAdultsInHH_23day,2plusAdultsInHH,0,F -coef_Female_23day,Female,0,F -coef_PartTimeWorker_23day,PartTimeWorker,0.425,F -coef_CollegeStudent_23day,CollegeStudent,0.6,F -coef_PaysToPark_23day,PaysToPark,0,F -coef_Income60to100k_23day,Income60to100k,0.389,F -coef_Income100to150k_23day,Income100to150k,0.193,F -coef_Income150kplus_23day,Income150kplus,0.765,F -coef_0Autos_23day,0Autos,0.407,F -coef_1Auto_23day,1Auto,0,F -coef_3plusAutos_23day,3plusAutos,-0.73,F -coef_DistanceToWork_23day,DistanceToWork,0,F -coef_Services_4day,Services,0,F -coef_SalesOffice_4day,SalesOffice,-0.894,F -coef_ResourceConstruct_4day,ResourceConstruct,0,F -coef_TransportMat_4day,TransportMat,0,F -coef_HasChildren0to5_4day,HasChildren0to5,-0.864,F -coef_HasChildren6to12_4day,HasChildren6to12,-0.81,F -coef_OneAdultInHH_4day,OneAdultInHH,-0.043,F -coef_2plusAdultsInHH_4day,2plusAdultsInHH,0,F -coef_Female_4day,Female,0,F -coef_PartTimeWorker_4day,PartTimeWorker,1.112,F -coef_CollegeStudent_4day,CollegeStudent,0,F -coef_PaysToPark_4day,PaysToPark,0,F -coef_Income60to100k_4day,Income60to100k,0,F -coef_Income100to150k_4day,Income100to150k,0,F -coef_Income150kplus_4day,Income150kplus,0,F -coef_0Autos_4day,0Autos,0,F -coef_1Auto_4day,1Auto,0,F -coef_3plusAutos_4day,3plusAutos,0,F -coef_DistanceToWork_4day,DistanceToWork,0,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_departure_and_duration_segments.csv b/activitysim/examples/prototype_semcog/configs/tour_departure_and_duration_segments.csv deleted file mode 100644 index ad710ded1..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_departure_and_duration_segments.csv +++ /dev/null @@ -1,24 +0,0 @@ -tour_purpose,time_period,start,end -work,EA,3,5 -work,AM,8,11 -work,MD,14,22 -work,PM,26,30 -work,EV,33,44 -#,,, -school,EA,3,5 -school,AM,8,11 -school,MD,14,22 -school,PM,26,30 -school,EV,33,44 -#,,, -univ,EA,3,5 -univ,AM,8,11 -univ,MD,14,22 -univ,PM,26,30 -univ,EV,33,44 -#,,, -,EA,3,5 -,AM,8,11 -,MD,14,22 -,PM,26,30 -,EV,33,44 diff --git a/activitysim/examples/prototype_semcog/configs/tour_mode_choice_annotate_choosers_preprocessor.csv b/activitysim/examples/prototype_semcog/configs/tour_mode_choice_annotate_choosers_preprocessor.csv deleted file mode 100755 index d437d0b10..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_mode_choice_annotate_choosers_preprocessor.csv +++ /dev/null @@ -1,98 +0,0 @@ -Description,Target,Expression -#,, -local,_DF_IS_TOUR,'tour_type' in df.columns -,number_of_participants,df.number_of_participants if _DF_IS_TOUR else 1 -,is_joint,(df.tour_category=='joint') if _DF_IS_TOUR else False -#,, - local,_HAVE_PARENT_TOURS,'parent_tour_id' in df.columns -,_parent_tour_mode,"reindex(tours.tour_mode, df.parent_tour_id) if _HAVE_PARENT_TOURS else ''" -,work_tour_is_drive,_parent_tour_mode.isin(['DRIVEALONE']) -,work_tour_is_bike,_parent_tour_mode=='BIKE' -,work_tour_is_SOV,_parent_tour_mode.isin(['DRIVEALONE']) -#,, -,is_mandatory,(df.tour_category=='mandatory') if 'tour_category' in df.columns else False -,is_joint,(df.tour_category=='joint') if 'tour_category' in df.columns else False -,is_indiv,~is_joint -,is_atwork_subtour,(df.tour_category=='atwork') if 'tour_category' in df.columns else False -,is_escort,(df.tour_type == 'escort') if _DF_IS_TOUR else False -,is_school,(df.tour_type=='school') & (df.is_university==False) if _DF_IS_TOUR else False -#,, -#,c_cost,(0.60 * c_ivt) / df.value_of_time -#,, -,ivot,1.0/df.value_of_time -,dest_topology,"reindex(land_use.TOPOLOGY, df[dest_col_name])" -,terminal_time,"reindex(land_use.TERMINAL, df[dest_col_name])" -,dest_density_index,"reindex(land_use.density_index, df[dest_col_name])" -# FIXME no transit subzones so all zones short walk to transit,, -,_walk_transit_origin,True -,_walk_transit_destination,True -,walk_transit_available,_walk_transit_origin & _walk_transit_destination -,pnr_transit_available,_walk_transit_destination & (df.auto_ownership > 0) -,knr_transit_available,_walk_transit_origin & _walk_transit_destination -,origin_walk_time,shortWalk*60/walkSpeed -,destination_walk_time,shortWalk*60/walkSpeed -# RIDEHAIL,, -,origin_density_measure,"(reindex(land_use.tot_pop, df[orig_col_name]) + reindex(land_use.tot_emp, df[orig_col_name])) / (reindex(land_use.tot_acres, df[orig_col_name]) / 640)" -,dest_density_measure,"(reindex(land_use.tot_pop, df[dest_col_name]) + reindex(land_use.tot_emp, df[dest_col_name])) / (reindex(land_use.tot_acres, 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)" -,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()})" -,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 -,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()})" -,origin_zone_singleTNC_wait_time_sd,"origin_density.map({k: v for k, v in TNC_single_waitTime_sd.items()})" -,dest_zone_singleTNC_wait_time_mean,"dest_density.map({k: v for k, v in TNC_single_waitTime_mean.items()})" -,dest_zone_singleTNC_wait_time_sd,"dest_density.map({k: v for k, v in TNC_single_waitTime_sd.items()})" -,origSingleTNCWaitTime,"rng.lognormal_for_df(df, mu=origin_zone_singleTNC_wait_time_mean, sigma=origin_zone_singleTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)" -,destSingleTNCWaitTime,"rng.lognormal_for_df(df, mu=dest_zone_singleTNC_wait_time_mean, sigma=dest_zone_singleTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)" -,origin_zone_sharedTNC_wait_time_mean,"origin_density.map({k: v for k, v in TNC_shared_waitTime_mean.items()})" -,origin_zone_sharedTNC_wait_time_sd,"origin_density.map({k: v for k, v in TNC_shared_waitTime_sd.items()})" -,dest_zone_sharedTNC_wait_time_mean,"dest_density.map({k: v for k, v in TNC_shared_waitTime_mean.items()})" -,dest_zone_sharedTNC_wait_time_sd,"dest_density.map({k: v for k, v in TNC_shared_waitTime_sd.items()})" -,origSharedTNCWaitTime,"rng.lognormal_for_df(df, mu=origin_zone_sharedTNC_wait_time_mean, sigma=origin_zone_sharedTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)" -,destSharedTNCWaitTime,"rng.lognormal_for_df(df, mu=dest_zone_sharedTNC_wait_time_mean, sigma=dest_zone_sharedTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)" -,totalWaitTaxi,origTaxiWaitTime + destTaxiWaitTime -,totalWaitSingleTNC,origSingleTNCWaitTime + destSingleTNCWaitTime -,totalWaitSharedTNC,origSharedTNCWaitTime + destSharedTNCWaitTime -#,, -,_free_parking_available,(df.tour_type == 'work') & df.free_parking_at_work if _DF_IS_TOUR else False -,_dest_hourly_peak_parking_cost,"reindex(land_use.PRKCST, df[dest_col_name])" -,_dest_hourly_offpeak_parking_cost,"reindex(land_use.OPRKCST, df[dest_col_name])" -,_hourly_peak_parking_cost,"np.where(_free_parking_available, 0, _dest_hourly_peak_parking_cost)" -,_hourly_offpeak_parking_cost,"np.where(_free_parking_available, 0, _dest_hourly_offpeak_parking_cost)" -,daily_parking_cost,"np.where(is_mandatory, _hourly_peak_parking_cost * df.duration/2, _hourly_offpeak_parking_cost * df.duration/2)" -#,, -,distance,od_skims['DIST'] -,sov_available,(odt_skims['SOV_TIME']>0) & (dot_skims['SOV_TIME']>0) -,hov2_available,(odt_skims['HOV2_TIME'] + dot_skims['HOV2_TIME'])>0 -,hov3_available,(odt_skims['HOV3_TIME']>0) & (dot_skims['HOV3_TIME']>0) -,walk_local_available,walk_transit_available & (odt_skims['WLK_LOC_IVT']>0) & (dot_skims['WLK_LOC_IVT']>0) -,walk_premium_available,walk_transit_available & (odt_skims['WLK_PRM_IVT']>0) & (dot_skims['WLK_PRM_IVT']>0) -,walk_mix_available,walk_transit_available & (odt_skims['WLK_MIX_IVT']>0) & (dot_skims['WLK_MIX_IVT']>0) -,pnr_local_available,pnr_transit_available & (odt_skims['PNR_LOC_IVT']>0) & (dot_skims['PNRE_LOC_IVT']>0) -,pnr_premium_available,pnr_transit_available & (odt_skims['PNR_PRM_IVT']>0) & (dot_skims['PNRE_PRM_IVT']>0) -,pnr_mix_available,pnr_transit_available & (odt_skims['PNR_MIX_IVT']>0) & (dot_skims['PNRE_MIX_IVT']>0) -,knr_local_available,knr_transit_available & (odt_skims['KNR_LOC_IVT']>0) & (dot_skims['KNRE_LOC_IVT']>0) -,knr_premium_available,knr_transit_available & (odt_skims['KNR_PRM_IVT']>0) & (dot_skims['KNRE_PRM_IVT']>0) -,knr_mix_available,knr_transit_available & (odt_skims['KNR_MIX_IVT']>0) & (dot_skims['KNRE_MIX_IVT']>0) -#,, -destination in central business district,destination_in_cbd,"(reindex(land_use.AreaType, df[dest_col_name]) < setting('cbd_threshold')) * 1" -#,,FIXME diagnostic -#,sov_dist_rt,(odt_skims['SOV_DIST'] + dot_skims['SOV_DIST']) -#,,fare discounts (no discount for use in logsums) -,ptype,df.ptype if _DF_IS_TOUR else 1 -,transit_pass_ownership,df.transit_pass_ownership if _DF_IS_TOUR else 0 -,transit_pass_subsidy,df.transit_pass_subsidy if _DF_IS_TOUR else 0 -,tour_type,df.tour_type if _DF_IS_TOUR else 'other' -,fare_nopass_discount_percent,"ptype.map({k: v for k, v in transit_nopass_fare_discount_percent.items()})" -,fare_pass_discount_percent,"ptype.map({k: v for k, v in transit_pass_fare_discount_percent.items()})" -,fare_subsidy_discount_percent,"np.where(tour_type=='work', transit_subsidy_fare_discount_percent_worktour, 1)" -,fare_discount_percent_ff,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == False), fare_nopass_discount_percent, 1)" -,fare_discount_percent_tf,"np.where((transit_pass_ownership == True) & (transit_pass_subsidy == False), fare_pass_discount_percent, 1)" -,fare_discount_percent_ft,"np.where((transit_pass_ownership == False) & (transit_pass_subsidy == True), fare_nopass_discount_percent * (1-fare_subsidy_discount_percent), 1)" -,fare_discount_percent_tt,"np.where((transit_pass_ownership == True ) & (transit_pass_subsidy == True), fare_pass_discount_percent * (1-fare_subsidy_discount_percent), 1)" -,fare_discount_percent,fare_discount_percent_ff * fare_discount_percent_tf * fare_discount_percent_ft * fare_discount_percent_tt \ No newline at end of file diff --git a/activitysim/examples/prototype_semcog/configs/tour_mode_choice_coeffs.csv b/activitysim/examples/prototype_semcog/configs/tour_mode_choice_coeffs.csv deleted file mode 100755 index d21e4c81c..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_mode_choice_coeffs.csv +++ /dev/null @@ -1,349 +0,0 @@ -coefficient_name,value,constrain -coef_nest_root,1,T -coef_nest_AUTO,0.72,T -coef_nest_AUTO_DRIVEALONE,0.35,T -coef_nest_AUTO_SHAREDRIDE2,0.35,T -coef_nest_AUTO_SHAREDRIDE3,0.35,T -coef_nest_NONMOTORIZED,0.72,T -coef_nest_TRANSIT,0.72,T -coef_nest_TRANSIT_WALKACCESS,0.5,T -coef_nest_TRANSIT_KNRACCESS,0.5,T -coef_nest_TRANSIT_PNRACCESS,0.5,T -coef_nest_SCHOOL_BUS,0.72,T -coef_nest_RIDEHAIL,0.36,T -coef_ivt_eatout_escort_othdiscr_othmaint_shopping_social,-0.0175,F -coef_ivt_school_univ,-0.0224,F -coef_ivt_work,-0.0134,F -coef_ivt_atwork,-0.0188,F -coef_topology_walk_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,15,F -coef_topology_walk_multiplier_atwork,7.5,F -coef_topology_bike_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,20,F -coef_topology_bike_multiplier_atwork,10,F -coef_topology_trn_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_work,2.2,F -coef_topology_trn_multiplier_atwork,2,F -coef_age1619_da_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,0,F -coef_age1619_da_multiplier_school_univ,-1.3813,F -coef_age1619_da_multiplier_atwork,0.0032336,F -coef_age010_trn_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work,0,F -coef_age010_trn_multiplier_school_univ,-1.5548,F -coef_age010_trn_multiplier_atwork,0.000722,F -coef_age16p_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social,-1.366,F -coef_age16p_sr_multiplier_school_univ_work_atwork,0,F -coef_hhsize1_sr_multiplier_eatout_escort_othdiscr_othmaint_school_shopping_social_univ_atwork,0,F -coef_hhsize1_sr_multiplier_work,-0.734588,F -coef_hhsize2_sr_multiplier_eatout_escort_othdiscr_othmaint_shopping_social_work_atwork,0,F -coef_hhsize2_sr_multiplier_school_univ,-0.6359,F -walk_ASC_no_auto_eatout,6.589427019,F -walk_ASC_no_auto_escort,4.880440839,F -walk_ASC_no_auto_othdiscr,4.730904319,F -walk_ASC_no_auto_othmaint,3.366533039,F -walk_ASC_no_auto_school,12.00708155,F -walk_ASC_no_auto_shopping,4.456111339,F -walk_ASC_no_auto_social,3.332401219,F -walk_ASC_no_auto_univ,3.063248695,F -walk_ASC_no_auto_work,4.43703301,F -walk_ASC_no_auto_atwork,0.421704944,F -walk_ASC_auto_deficient_eatout,2.887675213,F -walk_ASC_auto_deficient_escort,-1.356970662,F -walk_ASC_auto_deficient_othdiscr,1.862477713,F -walk_ASC_auto_deficient_othmaint,0.914116298,F -walk_ASC_auto_deficient_school,1.097961688,F -walk_ASC_auto_deficient_shopping,1.815249198,F -walk_ASC_auto_deficient_social,2.483254213,F -walk_ASC_auto_deficient_univ,2.850042543,F -walk_ASC_auto_deficient_work,1.637904594,F -walk_ASC_auto_deficient_atwork,-17.85938696,F -walk_ASC_auto_sufficient_eatout,1.896049479,F -walk_ASC_auto_sufficient_escort,-1.53483226,F -walk_ASC_auto_sufficient_othdiscr,1.607706779,F -walk_ASC_auto_sufficient_othmaint,0.07673774,F -walk_ASC_auto_sufficient_school,-1.384129543,F -walk_ASC_auto_sufficient_shopping,0.00804064,F -walk_ASC_auto_sufficient_social,2.051577779,F -walk_ASC_auto_sufficient_univ,2.131895451,F -walk_ASC_auto_sufficient_work,-0.633007823,F -walk_ASC_auto_sufficient_atwork,0.1438828,F -bike_ASC_no_auto_eatout,1.477690443,F -bike_ASC_no_auto_escort,-2.060060749,F -bike_ASC_no_auto_othdiscr,0.233196283,F -bike_ASC_no_auto_othmaint,0.195584651,F -bike_ASC_no_auto_school,0,F -bike_ASC_no_auto_shopping,-0.509693249,F -bike_ASC_no_auto_social,0.630202693,F -bike_ASC_no_auto_univ,1.297297637,F -bike_ASC_no_auto_work,2.338049977,F -bike_ASC_no_auto_atwork,18.45901812,F -bike_ASC_auto_deficient_eatout,-0.743790882,F -bike_ASC_auto_deficient_escort,-3.511021918,F -bike_ASC_auto_deficient_othdiscr,0.732851378,F -bike_ASC_auto_deficient_othmaint,-0.501558818,F -bike_ASC_auto_deficient_school,-0.465024971,F -bike_ASC_auto_deficient_shopping,0.141061422,F -bike_ASC_auto_deficient_social,1.459841118,F -bike_ASC_auto_deficient_univ,0.950303703,F -bike_ASC_auto_deficient_work,0.224440057,F -bike_ASC_auto_deficient_atwork,-3.8074083,F -bike_ASC_auto_sufficient_eatout,-0.885432566,F -bike_ASC_auto_sufficient_escort,-4.318656917,F -bike_ASC_auto_sufficient_othdiscr,-0.756545166,F -bike_ASC_auto_sufficient_othmaint,-2.063850917,F -bike_ASC_auto_sufficient_school,-2.878621083,F -bike_ASC_auto_sufficient_shopping,-1.821758817,F -bike_ASC_auto_sufficient_social,-1.053156466,F -bike_ASC_auto_sufficient_univ,-0.119499054,F -bike_ASC_auto_sufficient_work,-1.806805644,F -bike_ASC_auto_sufficient_atwork,-0.106470168,F -sr2_ASC_auto_deficient_eatout,0.413083337,F -sr2_ASC_auto_deficient_escort,0.664157519,F -sr2_ASC_auto_deficient_othdiscr,0.485000137,F -sr2_ASC_auto_deficient_othmaint,0.926310219,F -sr2_ASC_auto_deficient_school,0.100573545,F -sr2_ASC_auto_deficient_shopping,0.908255079,F -sr2_ASC_auto_deficient_social,1.680701637,F -sr2_ASC_auto_deficient_univ,0.078542755,F -sr2_ASC_auto_deficient_work,-0.304765262,F -sr2_ASC_auto_deficient_atwork,-20.27957549,F -sr2_ASC_auto_sufficient_eatout,0.899117605,F -sr2_ASC_auto_sufficient_escort,0.075825052,F -sr2_ASC_auto_sufficient_othdiscr,0.533158225,F -sr2_ASC_auto_sufficient_othmaint,0.334003882,F -sr2_ASC_auto_sufficient_school,-1.897992866,F -sr2_ASC_auto_sufficient_shopping,0.273532122,F -sr2_ASC_auto_sufficient_social,0.559914555,F -sr2_ASC_auto_sufficient_univ,-0.53703344,F -sr2_ASC_auto_sufficient_work,-0.766476766,F -sr2_ASC_auto_sufficient_atwork,-1.621794475,F -sr3p_ASC_no_auto_eatout,2.190553045,F -sr3p_ASC_no_auto_escort,0.209802522,F -sr3p_ASC_no_auto_othdiscr,2.140722265,F -sr3p_ASC_no_auto_othmaint,1.219543822,F -sr3p_ASC_no_auto_school,9.926556957,F -sr3p_ASC_no_auto_shopping,1.742939742,F -sr3p_ASC_no_auto_social,0.464863045,F -sr3p_ASC_no_auto_univ,-0.087322435,F -sr3p_ASC_no_auto_work,-1.064082,F -sr3p_ASC_no_auto_atwork,-0.940776326,F -sr3p_ASC_auto_deficient_eatout,0.140990485,F -sr3p_ASC_auto_deficient_escort,0.409243052,F -sr3p_ASC_auto_deficient_othdiscr,1.142034725,F -sr3p_ASC_auto_deficient_othmaint,-0.531961788,F -sr3p_ASC_auto_deficient_school,0.587171252,F -sr3p_ASC_auto_deficient_shopping,0.744060546,F -sr3p_ASC_auto_deficient_social,1.595662425,F -sr3p_ASC_auto_deficient_univ,0.335943236,F -sr3p_ASC_auto_deficient_work,-0.800161676,F -sr3p_ASC_auto_deficient_atwork,-20.24587122,F -sr3p_ASC_auto_sufficient_eatout,0.665638218,F -sr3p_ASC_auto_sufficient_escort,0.017050265,F -sr3p_ASC_auto_sufficient_othdiscr,0.407280668,F -sr3p_ASC_auto_sufficient_othmaint,-0.001035875,F -sr3p_ASC_auto_sufficient_school,-1.294501505,F -sr3p_ASC_auto_sufficient_shopping,-0.0031085,F -sr3p_ASC_auto_sufficient_social,0.324957478,F -sr3p_ASC_auto_sufficient_univ,-0.702604136,F -sr3p_ASC_auto_sufficient_work,-1.404899513,F -sr3p_ASC_auto_sufficient_atwork,-2.062496761,F -walk_transit_ASC_no_auto_eatout,1.388223363,F -walk_transit_ASC_no_auto_escort,-3.242571633,F -walk_transit_ASC_no_auto_othdiscr,1.038365063,F -walk_transit_ASC_no_auto_othmaint,1.538982067,F -walk_transit_ASC_no_auto_school,9.278859746,F -walk_transit_ASC_no_auto_shopping,1.081384067,F -walk_transit_ASC_no_auto_social,0.176051663,F -walk_transit_ASC_no_auto_univ,3.321119594,F -walk_transit_ASC_no_auto_work,3.061409806,F -walk_transit_ASC_no_auto_atwork,-2.75530458,F -walk_transit_ASC_auto_deficient_eatout,-0.710721656,F -walk_transit_ASC_auto_deficient_escort,-3.220750388,F -walk_transit_ASC_auto_deficient_othdiscr,0.281329984,F -walk_transit_ASC_auto_deficient_othmaint,-1.319772188,F -walk_transit_ASC_auto_deficient_school,1.023632747,F -walk_transit_ASC_auto_deficient_shopping,0.892296712,F -walk_transit_ASC_auto_deficient_social,0.302686454,F -walk_transit_ASC_auto_deficient_univ,2.231442966,F -walk_transit_ASC_auto_deficient_work,0.186141441,F -walk_transit_ASC_auto_deficient_atwork,-22.64172131,F -walk_transit_ASC_auto_sufficient_eatout,-3.537966973,F -walk_transit_ASC_auto_sufficient_escort,-6.313884394,F -walk_transit_ASC_auto_sufficient_othdiscr,-3.231644303,F -walk_transit_ASC_auto_sufficient_othmaint,-2.926154591,F -walk_transit_ASC_auto_sufficient_school,-3.421589964,F -walk_transit_ASC_auto_sufficient_shopping,-3.582717191,F -walk_transit_ASC_auto_sufficient_social,-2.770652273,F -walk_transit_ASC_auto_sufficient_univ,-0.179769816,F -walk_transit_ASC_auto_sufficient_work,-2.912845227,F -walk_transit_ASC_auto_sufficient_atwork,-6.453181068,F -joint_walk_ASC_no_auto_all,-0.039874578,F -joint_walk_ASC_auto_deficient_all,0.010741394,F -joint_walk_ASC_auto_sufficient_all,-1.975332928,F -joint_bike_ASC_no_auto_all,-2.221523576,F -joint_bike_ASC_auto_deficient_all,-2.104028545,F -joint_bike_ASC_auto_sufficient_all,-5.415064076,F -joint_sr2_ASC_no_auto_all,0,T -joint_sr2_ASC_auto_deficient_all,0,T -joint_sr2_ASC_auto_sufficient_all,0,T -joint_sr3p_ASC_no_auto_all,-1.057362954,F -joint_sr3p_ASC_auto_deficient_all,-1.358121204,F -joint_sr3p_ASC_auto_sufficient_all,-2.71447634,F -joint_walk_transit_ASC_no_auto_all,-2.489686956,F -joint_walk_transit_ASC_auto_deficient_all,-3.485773675,F -joint_walk_transit_ASC_auto_sufficient_all,-15.264534,F -walk_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,0.525,F -walk_transit_CBD_ASC_school_univ,0.672,F -walk_transit_CBD_ASC_work,0.804,F -walk_transit_CBD_ASC_atwork,0.564,F -drive_transit_CBD_ASC_eatout_escort_othdiscr_othmaint_shopping_social,0.525,F -drive_transit_CBD_ASC_school_univ,0.672,F -drive_transit_CBD_ASC_work,1.1,F -drive_transit_CBD_ASC_atwork,0.564,F -joint_knr_transit_ASC_auto_deficient_all,-3.534648371,F -joint_knr_transit_ASC_auto_sufficient_all,-8.843788241,F -joint_knr_transit_ASC_no_auto_all,-3.987873766,F -joint_pnr_transit_ASC_auto_deficient_all,-5.146470604,F -joint_pnr_transit_ASC_auto_sufficient_all,-8.812715084,F -joint_pnr_transit_ASC_no_auto_all,0,T -knr_transit_ASC_auto_deficient_atwork,-23.01220348,F -knr_transit_ASC_auto_deficient_eatout,-1.841465519,F -knr_transit_ASC_auto_deficient_escort,-3.212214291,F -knr_transit_ASC_auto_deficient_othdiscr,-0.849413879,F -knr_transit_ASC_auto_deficient_othmaint,-1.311236091,F -knr_transit_ASC_auto_deficient_school,2.329981301,F -knr_transit_ASC_auto_deficient_shopping,0.900832809,F -knr_transit_ASC_auto_deficient_social,-0.828057409,F -knr_transit_ASC_auto_deficient_univ,0.781396375,F -knr_transit_ASC_auto_deficient_work,-1.44770466,F -knr_transit_ASC_auto_sufficient_atwork,-4.401027,F -knr_transit_ASC_auto_sufficient_eatout,-4.103602632,F -knr_transit_ASC_auto_sufficient_escort,-6.720817468,F -knr_transit_ASC_auto_sufficient_othdiscr,-3.797279962,F -knr_transit_ASC_auto_sufficient_othmaint,-3.333087668,F -knr_transit_ASC_auto_sufficient_school,-2.273708088,F -knr_transit_ASC_auto_sufficient_shopping,-3.989650268,F -knr_transit_ASC_auto_sufficient_social,-3.336287932,F -knr_transit_ASC_auto_sufficient_univ,-1.714133165,F -knr_transit_ASC_auto_sufficient_work,-4.698155028,F -knr_transit_ASC_no_auto_atwork,-0.580585596,F -knr_transit_ASC_no_auto_eatout,0.219095046,F -knr_transit_ASC_no_auto_escort,0.32982881,F -knr_transit_ASC_no_auto_othdiscr,0.219095046,F -knr_transit_ASC_no_auto_othmaint,0.32982881,F -knr_transit_ASC_no_auto_school,0.38894965,F -knr_transit_ASC_no_auto_shopping,0.32982881,F -knr_transit_ASC_no_auto_social,0.219095046,F -knr_transit_ASC_no_auto_univ,2.400389489,F -knr_transit_ASC_no_auto_work,1.821801152,F -local_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0,F -local_ASC_school_univ,0,F -local_ASC_work,0,F -mix_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0,F -mix_ASC_school_univ,0,F -mix_ASC_work,0,F -pnr_transit_ASC_auto_deficient_atwork,-998.8196,F -pnr_transit_ASC_auto_deficient_eatout,-0.430359164,F -pnr_transit_ASC_auto_deficient_escort,-1.239230126,F -pnr_transit_ASC_auto_deficient_othdiscr,-0.710234464,F -pnr_transit_ASC_auto_deficient_othmaint,-0.384955706,F -pnr_transit_ASC_auto_deficient_school,1.14553143,F -pnr_transit_ASC_auto_deficient_shopping,-0.504015206,F -pnr_transit_ASC_auto_deficient_social,0.532554236,F -pnr_transit_ASC_auto_deficient_univ,1.899678681,F -pnr_transit_ASC_auto_deficient_work,-0.99603153,F -pnr_transit_ASC_auto_sufficient_atwork,-999.21466,F -pnr_transit_ASC_auto_sufficient_eatout,-7.21057228,F -pnr_transit_ASC_auto_sufficient_escort,-6.200504711,F -pnr_transit_ASC_auto_sufficient_othdiscr,-6.61964812,F -pnr_transit_ASC_auto_sufficient_othmaint,-4.224027811,F -pnr_transit_ASC_auto_sufficient_school,-3.608979199,F -pnr_transit_ASC_auto_sufficient_shopping,-3.770973811,F -pnr_transit_ASC_auto_sufficient_social,-6.85691217,F -pnr_transit_ASC_auto_sufficient_univ,0.143230071,F -pnr_transit_ASC_auto_sufficient_work,-2.571689178,F -pnr_transit_ASC_no_auto_atwork,0,F -pnr_transit_ASC_no_auto_eatout,0,F -pnr_transit_ASC_no_auto_escort,0,F -pnr_transit_ASC_no_auto_othdiscr,0,F -pnr_transit_ASC_no_auto_othmaint,0,F -pnr_transit_ASC_no_auto_school,0,F -pnr_transit_ASC_no_auto_shopping,0,F -pnr_transit_ASC_no_auto_social,0,F -pnr_transit_ASC_no_auto_univ,0,F -pnr_transit_ASC_no_auto_work,0,F -premium_ASC_eatout_escort_othdiscr_othmaint_shopping_social_atwork,0,F -premium_ASC_school_univ,0,F -premium_ASC_work,0,F -schoolbus_ASC_auto_deficient_school,0.835683653,F -schoolbus_ASC_auto_sufficient_school,-1.200290369,F -schoolbus_ASC_no_auto_school,10.43589235,F -schoolbus_ASC_not_school,0,T -sr2_ASC_no_auto_atwork,-0.963211851,F -sr2_ASC_no_auto_eatout,1.502329299,F -sr2_ASC_no_auto_escort,1.796584262,F -sr2_ASC_no_auto_othdiscr,1.502329299,F -sr2_ASC_no_auto_othmaint,1.796584262,F -sr2_ASC_no_auto_school,8.462111263,F -sr2_ASC_no_auto_shopping,1.796584262,F -sr2_ASC_no_auto_social,1.502329299,F -sr2_ASC_no_auto_univ,0.438511398,F -sr2_ASC_no_auto_work,0.768381772,F -taxi_ASC_no_auto_eatout_othdiscr_social,0.9923,F -taxi_ASC_no_auto_escort_othmaint_shopping,1.8939,F -taxi_ASC_no_auto_school_univ,-7,T -taxi_ASC_no_auto_work,4.7291,F -taxi_ASC_no_auto_atwork,4.1021,F -taxi_ASC_auto_deficient_eatout_othdiscr_social,-3.1317,F -taxi_ASC_auto_deficient_escort_othmaint_shopping,0.1766,F -taxi_ASC_auto_deficient_school,-0.3338,F -taxi_ASC_auto_deficient_univ,4.2492,F -taxi_ASC_auto_deficient_work,-1.4766,F -taxi_ASC_auto_deficient_atwork,-4.4046,F -taxi_ASC_auto_sufficient_eatout_othdiscr_social,-3.0374,F -taxi_ASC_auto_sufficient_escort_othmaint_shopping,-1.8055,F -taxi_ASC_auto_sufficient_school,-2.4294,F -taxi_ASC_auto_sufficient_univ,-0.3131,F -taxi_ASC_auto_sufficient_work,-4.8509,F -taxi_ASC_auto_sufficient_atwork,-2.8804,F -tnc_single_ASC_no_auto_eatout_othdiscr_social,1.6852,F -tnc_single_ASC_no_auto_escort_othmaint_shopping,1.8605,F -tnc_single_ASC_no_auto_school,-7,T -tnc_single_ASC_no_auto_univ,-2.519,F -tnc_single_ASC_no_auto_work,5.7855,F -tnc_single_ASC_no_auto_atwork,4.4982,F -tnc_single_ASC_auto_deficient_eatout_othdiscr_social,-2.9623,F -tnc_single_ASC_auto_deficient_escort_othmaint_shopping,0.6748,F -tnc_single_ASC_auto_deficient_school,-0.5524,F -tnc_single_ASC_auto_deficient_univ,1.0221,F -tnc_single_ASC_auto_deficient_work,-0.8013,F -tnc_single_ASC_auto_deficient_atwork,-3.7626,F -tnc_single_ASC_auto_sufficient_eatout_othdiscr_social,-2.3239,F -tnc_single_ASC_auto_sufficient_escort_othmaint_shopping,-1.45,F -tnc_single_ASC_auto_sufficient_school,-2.8375,F -tnc_single_ASC_auto_sufficient_univ,0.2088,F -tnc_single_ASC_auto_sufficient_work,-4.1946,F -tnc_single_ASC_auto_sufficient_atwork,-2.7988,F -tnc_shared_ASC_no_auto_eatout_othdiscr_social,0.6464,F -tnc_shared_ASC_no_auto_escort_othmaint_shopping,0.9361,F -tnc_shared_ASC_no_auto_school,-7,T -tnc_shared_ASC_no_auto_univ,-5.8116,F -tnc_shared_ASC_no_auto_work,3.2429,F -tnc_shared_ASC_no_auto_atwork,3.3672,F -tnc_shared_ASC_auto_deficient_eatout_othdiscr_social,-4.3576,F -tnc_shared_ASC_auto_deficient_escort_othmaint_shopping,-0.3863,F -tnc_shared_ASC_auto_deficient_school,-1.4746,F -tnc_shared_ASC_auto_deficient_univ,3.25,F -tnc_shared_ASC_auto_deficient_work,-2.1435,F -tnc_shared_ASC_auto_deficient_atwork,-4.5089,F -tnc_shared_ASC_auto_sufficient_eatout_othdiscr_social,-3.6638,F -tnc_shared_ASC_auto_sufficient_escort_othmaint_shopping,-2.4365,F -tnc_shared_ASC_auto_sufficient_school,-3.7219,F -tnc_shared_ASC_auto_sufficient_univ,-0.9068,F -tnc_shared_ASC_auto_sufficient_work,-5.3575,F -tnc_shared_ASC_auto_sufficient_atwork,-3.5397,F -joint_taxi_ASC_no_auto_all,-4.5792,F -joint_taxi_ASC_auto_deficient_all,-9.8157,F -joint_taxi_ASC_auto_sufficient_all,-11.7099,T -joint_tnc_single_ASC_no_auto_all,-4.4917,F -joint_tnc_single_ASC_auto_deficient_all,-9.8961,F -joint_tnc_single_ASC_auto_sufficient_all,-14.0159,T -joint_tnc_shared_ASC_no_auto_all,-4.3002,F -joint_tnc_shared_ASC_auto_deficient_all,-11.1572,F -joint_tnc_shared_ASC_auto_sufficient_all,-13.205,T diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_joint_coeffs.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_joint_coeffs.csv deleted file mode 100755 index 131bb5335..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_joint_coeffs.csv +++ /dev/null @@ -1,400 +0,0 @@ -coefficient_name,value,constrain -coef_escort_Mode_Choice_Logsum,1.173173034,F -coef_escort_Distance_to_destination_Duration_less_than_0p5_hours_depart_and_arrive_in_the_same_period,-0.335017673,F -coef_escort_Distance_to_destination_Duration_greater_than_0p5_hours,0.005298165,F -coef_escort_Fulltime_worker_Departure_after_8_00_am_Linear,-0.037980109,F -coef_escort_Fulltime_worker_Departure_after_3_00_am_Linear,0.163254125,F -coef_escort_Fulltime_worker_Duration_lt_0p5_hrs,-0.275077482,F -coef_escort_Fulltime_worker_Duration_gt_0p5_hrs,0.051530545,F -coef_escort_University_student_Duration_lt_0p5_hrs,-0.426802718,F -coef_escort_Nondriving_age_student_Duration_gt_0p5_hrs,0.240582361,F -coef_escort_Driving_age_student_Duration_lt_0p5_hrs,-0.554146191,F -coef_escort_Driving_age_student_Duration_gt_0p5_hrs,0.299387708,F -coef_escort_Preschool_kid_Duration_gt_0p5_hrs,0.195482563,F -coef_escort_Medhigh_income_60k_to_120k_Duration_gt_0p5_hrs,-0.029281467,F -coef_escort_Households_with_no_kids_Dummy_1_0_Departure_before_7_30_AM,0.589083327,F -coef_escort_Households_with_no_kids_Dummy_1_0_Departure_after_8_00_AM,0.086690827,F -coef_escort_Households_with_no_kids_Dummy_1_0_Departure_before_2_30_PM,0.477582648,F -coef_escort_Households_with_no_kids_Dummy_1_0_Departure_after_3_00_PM,-0.204065502,F -coef_escort_Households_with_no_kids_Dummy_1_0_Arrival_before_8_00_AM,-0.360039254,F -coef_escort_Households_with_no_kids_Dummy_1_0_Arrival_after_8_30_AM,0.091614107,F -coef_escort_Households_with_no_kids_Dummy_1_0_Arrival_before_3_00_PM,0.432854268,F -coef_escort_Households_with_no_kids_Dummy_1_0_Arrival_after_3_30_PM,0.131037275,F -coef_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Departure_after_8_00_AM,0.109700265,F -coef_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Departure_after_3_00_PM,-0.224568648,F -coef_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_before_8_00_AM,-0.357416434,F -coef_escort_PreSchool_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_before_3_00_PM,0.629285298,F -coef_escort_Driving_age_School_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Departure_after_8_00_AM,0.039005148,F -coef_escort_Driving_age_School_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_after_8_30_AM,-0.06556611,F -coef_escort_Driving_age_School_Child_in_HH_with_Mandatory_tour_Dummy_1_0_Arrival_after_3_30_PM,0.117680977,F -coef_escort_Number_of_autos_greater_than_number_of_adults_Duration_gt_0p5_hrs,-0.057322708,F -coef_escort_Number_of_Individual_Tours_excluding_escorting_Duration_gt_0p5_hrs,-0.062899692,F -coef_escort_Number_of_joint_tours_Duration_gt_0p5_hrs,-0.048533895,F -coef_escort_Departure_Constant_Shift_for_every_30_minutes_before_06_30_am_Linear,-1.469240002,F -coef_escort_Departure_Constant_Before_07_00_AM,-2.070292862,F -coef_escort_Departure_Constant_07_00_AM_07_30_AM,-0.642734296,F -coef_escort_Departure_Constant_07_30_AM_08_00_AM,0,T -coef_escort_Departure_Constant_08_00_AM_08_30_AM,-0.214617667,F -coef_escort_Departure_Constant_08_30_AM_09_00_AM,-0.147266606,F -coef_escort_Departure_Constant_After_09_00_AM,-1.356686422,F -coef_escort_Departure_Constant_01_30_PM_02_00_PM,0.368092381,F -coef_escort_Departure_Constant_02_00_PM_02_30_PM,1.166803383,F -coef_escort_Departure_Constant_02_30_PM_03_00_PM,1.28466083,F -coef_escort_Departure_Constant_03_00_PM_03_30_PM,0.581891245,F -coef_escort_Departure_Constant_After_03_30_PM,0.834510243,F -coef_escort_Departure_Constant_Shift_for_every_30_minutes_after_9_30_am_Linear,0.175257649,F -coef_escort_Departure_Constant_Shift_for_every_30_minutes_after_4_00_pm_Linear,-0.019161202,F -coef_escort_Arrival_Constant_Shift_for_every_30_minutes_before_6_30_am_Linear,0.44978138,F -coef_escort_Arrival_Constant_Before_07_00_AM,0.549584585,F -coef_escort_Arrival_Constant_07_00_AM_07_30_AM,0.488181278,F -coef_escort_Arrival_Constant_07_30_AM_08_00_AM,0.236447651,F -coef_escort_Arrival_Constant_08_00_AM_08_30_AM,0,T -coef_escort_Arrival_Constant_08_30_AM_09_00_AM,-0.683756801,F -coef_escort_Arrival_Constant_After_09_00_AM,-1.428888485,F -coef_escort_Arrival_Constant_02_30_PM_03_00_PM,1.311480662,F -coef_escort_Arrival_Constant_03_00_PM_03_30_PM,1.316883154,F -coef_escort_Arrival_Constant_03_30_PM_04_00_PM,1.396838392,F -coef_escort_Arrival_Constant_04_00_PM_04_30_PM,1.03146139,F -coef_escort_Arrival_Constant_After_04_30_PM,0.907344583,F -coef_escort_Arrival_Constant_Shift_for_every_30_minutes_after_9_30_am_Linear,-0.148408887,F -coef_escort_Arrival_Constant_Shift_for_every_30_minutes_after_5_00_pm_Linear,-0.389082896,F -coef_escort_Duration_Constant_0_hrs,-0.173757322,F -coef_escort_Duration_Constant_0p5_hrs,0,T -coef_escort_Duration_Constant_1_hrs,-0.431287743,F -coef_escort_Duration_Constant_1p5hrs,-0.700473959,F -coef_escort_Duration_Constant_2_hrs,-1.071871358,F -coef_escort_Duration_Constant_Longer_than_2_hrs,-1.691098421,F -coef_escort_Calibration_Constant_Duration_eq_1,-0.047200214,F -coef_escort_Calibration_Constant_Duration_eq_2,0.035611332,F -coef_escort_Calibration_Constant_Departure_eq_9,0.106814756,F -coef_escort_Calibration_Constant_Departure_eq_10,0.215386864,F -coef_escort_Calibration_Constant_Departure_eq_23,-0.255087318,F -coef_escort_Calibration_Constant_Departure_eq_24,-0.296870428,F -coef_shop_Joint_Shopping_tours_dummy_Departure_before_10_00_AM_Linear,-0.190727375,F -coef_shop_Joint_Shopping_tours_dummy_Departure_after_10_30_AM_Linear,-0.029551313,F -coef_shop_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs,-0.291965906,F -coef_shop_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,0.045755784,F -coef_shop_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs,-0.571185116,F -coef_shop_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,-0.468815184,F -coef_shop_Kids_in_Joint_Tour_Duration_gt_1p5_hr,-0.047470039,F -coef_shop_Driving_age_student_Duration_gt_1p5_hr,0.122149101,F -coef_shop_Fulltime_worker_Duration_gt_1p5_hr,-0.037886459,F -coef_shop_Nondriving_Student_Duration_gt_1p5_hr,0.10247157,F -coef_shop_Preschool_Child_Duration_lt_1p5_hrs,-1.882944033,F -coef_shop_Part_Time_Worker_Duration_lt_1p5_hrs,-0.197455071,F -coef_shop_Part_Time_Worker_Duration_gt_1p5_hr,-0.045152663,F -coef_shop_Retired_Duration_lt_1p5_hrs,-0.264728908,F -coef_shop_Retired_Duration_gt_1p5_hr,-0.042981757,F -coef_shop_University_Student_Duration_gt_1p5_hr,0.045926523,F -coef_shop_Female_Duration_lt_1p5_hrs,-0.417208254,F -coef_shop_Female_Duration_gt_1p5_hr,0.045801918,F -coef_shop_Low_Income_lteq25_000_Duration_gt_1p5_hr,0.040776383,F -coef_shop_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs,0.108462927,F -coef_shop_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr,-0.037893416,F -coef_shop_Distance_Duration_lt_1p5_hrs,-0.214802537,F -coef_shop_Distance_Duration_gt_1p5_hr,0.007991656,F -coef_shop_Time_Pressure_Duration_gt_1p5_hrs,0.013503327,F -coef_shop_Number_of_additional_individual_shop_and_maintp_tours_Duration_lt_1p5_hrs,0.078844289,F -coef_shop_Number_of_additional_individual_shop_and_maintp_tours_Duration_gt_1p5_hrs,-0.115431492,F -coef_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear,-0.959875456,F -coef_shop_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Square_root,1.112594898,F -coef_shop_Departure_Constant_Before_09_00_AM,-0.446394064,F -coef_shop_Departure_Constant_09_00_AM_09_30_AM,-0.021669265,F -coef_shop_Departure_Constant_09_30_AM_10_00_AM,-0.282978638,F -coef_shop_Departure_Constant_10_00_AM_10_30_AM,0,T -coef_shop_Departure_Constant_10_30_AM_11_00_AM,-0.309421311,F -coef_shop_Departure_Constant_After_11_00_AM,-0.541073357,F -coef_shop_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear,-0.072013428,F -coef_shop_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Squared,-0.000653398,F -coef_shop_Arrival_Constant_Shift_for_every_30_minutes_before_12_00_pm_Linear,-0.18376635,F -coef_shop_Arrival_Constant_Before_12_30_PM,-0.716195343,F -coef_shop_Arrival_Constant_12_30_PM_03_00_PM,-0.502714001,F -coef_shop_Arrival_Constant_03_00_PM_03_30_PM,-0.167868872,F -coef_shop_Arrival_Constant_03_30_PM_04_00_PM,-0.156786941,F -coef_shop_Arrival_Constant_04_00_PM_04_30_PM,0,T -coef_shop_Arrival_Constant_04_30_PM_05_00_PM,-0.057314044,F -coef_shop_Arrival_Constant_05_00_PM_05_30_PM,-0.580040851,F -coef_shop_Arrival_Constant_05_30_PM_07_00_PM,-0.32239566,F -coef_shop_Arrival_Constant_07_00_PM_09_30_PM,-0.347828147,F -coef_shop_Arrival_Constant_After_09_30_PM,-1.123574723,F -coef_shop_Arrival_Constant_Shift_for_every_30_minutes_after_10_00_pm_Linear,-0.499770654,F -coef_shop_Duration_Constant_0_hrs,-0.131743185,F -coef_shop_Duration_Constant_0p5_hrs,0.888857137,F -coef_shop_Duration_Constant_1_hrs,0,T -coef_shop_Duration_Constant_1p5hrs,-0.333413031,F -coef_shop_Duration_Constant_2_hrs,-0.850897912,F -coef_shop_Duration_Constant_Longer_than_2_hrs,-1.203783479,F -coef_shop_Duration_Constant_Duration_gt_2p5_hrs_Linear,-0.293581223,F -coef_shop_Duration_Constant_Duration_gt_2p5_hrs_Square_root,-0.215759138,F -coef_shop_Calibration_Constant_Duration_eq_1,-0.138450424,F -coef_shop_Calibration_Constant_Duration_eq_2,-0.092704403,F -coef_shop_Calibration_Constant_Duration_eq_3,-0.087738073,F -coef_maint_Joint_Maintenance_tours_dummy_Departure_before_10_00_AM_Linear,-0.139150288,F -coef_maint_Joint_Maintenance_tours_dummy_Departure_after_10_30_AM_Linear,-0.065786345,F -coef_maint_Joint_Tours_Party_Size_gt_2_Duration_lt_1p5_hrs,-0.291965906,F -coef_maint_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,0.045755784,F -coef_maint_Joint_Tour_with_only_adults_Duration_lt_1p5_hrs,-0.571185116,F -coef_maint_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,-0.468815184,F -coef_maint_Kids_in_Joint_Tour_Duration_gt_1p5_hr,-0.047470039,F -coef_maint_Fulltime_worker_Duration_gt_1p5_hr,-0.037886459,F -coef_maint_Nondriving_Student_Duration_gt_1p5_hr,0.10247157,F -coef_maint_Preschool_Child_Duration_lt_1p5_hrs,-1.882944033,F -coef_maint_Part_Time_Worker_Duration_lt_1p5_hrs,-0.197455071,F -coef_maint_Part_Time_Worker_Duration_gt_1p5_hr,-0.045152663,F -coef_maint_Retired_Duration_lt_1p5_hrs,-0.264728908,F -coef_maint_Retired_Duration_gt_1p5_hr,-0.042981757,F -coef_maint_University_Student_Duration_gt_1p5_hr,0.045926523,F -coef_maint_Female_Duration_lt_1p5_hrs,-0.417208254,F -coef_maint_Female_Duration_gt_1p5_hr,0.045801918,F -coef_maint_Low_Income_lteq25_000_Duration_gt_1p5_hr,0.040776383,F -coef_maint_Medium_Income_25_001_to_60_000_Duration_lt_1p5_hrs,0.108462927,F -coef_maint_Medium_Income_25_001_to_60_000_Duration_gt_1p5_hr,0,T -coef_maint_MediumHigh_Income_60_001_to_120_00_Duration_gt_1p5_hr,-0.037893416,F -coef_maint_Distance_Duration_lt_1p5_hrs,-0.214802537,F -coef_maint_Distance_Duration_gt_1p5_hr,0.007991656,F -coef_maint_Time_Pressure_Duration_gt_1p5_hrs,0.013503327,F -coef_maint_Number_of_additional_individual_shop_and_maintp_tours_Duration_lt_1p5_hrs,0.078844289,F -coef_maint_Number_of_additional_individual_shop_and_maintp_tours_Duration_gt_1p5_hrs,-0.115431492,F -coef_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Linear,-0.864112609,F -coef_maint_Departure_Constant_Shift_for_every_30_minutes_before_07_30_am_Square_Root,0.504598473,F -coef_maint_Departure_Constant_Before_08_00_AM,-0.383711788,F -coef_maint_Departure_Constant_08_00_AM_08_30_AM,-0.076771517,F -coef_maint_Departure_Constant_08_30_AM_09_00_AM,-0.169259979,F -coef_maint_Departure_Constant_09_00_AM_09_30_AM,-0.051785379,F -coef_maint_Departure_Constant_09_30_AM_10_00_AM,-0.214942451,F -coef_maint_Departure_Constant_10_00_AM_10_30_AM,0,T -coef_maint_Departure_Constant_10_30_AM_11_00_AM,-0.427568963,F -coef_maint_Departure_Constant_After_11_00_AM,-0.520863411,F -coef_maint_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Linear,0.042879095,F -coef_maint_Departure_Constant_Shift_for_every_30_minutes_after_11_30_am_Squared,-0.003157293,F -coef_maint_Arrival_Constant_Shift_for_every_30_minutes_before_10_00_am_Linear,-0.226803619,F -coef_maint_Arrival_Constant_Before_10_30_AM,-0.223212258,F -coef_maint_Arrival_Constant_10_30_AM_11_00_AM,0,T -coef_maint_Arrival_Constant_11_00_AM_11_30_AM,-0.128382637,F -coef_maint_Arrival_Constant_11_30_AM_01_30_PM,0.167977332,F -coef_maint_Arrival_Constant_01_30_PM_02_30_PM,-0.149495878,F -coef_maint_Arrival_Constant_02_30_PM_04_00_PM,0.087679934,F -coef_maint_Arrival_Constant_04_00_PM_04_30_PM,0.121707557,F -coef_maint_Arrival_Constant_After_04_30_PM,0.106745013,F -coef_maint_Arrival_Constant_Shift_for_every_30_minutes_after_5_00_pm_Linear,-0.232610927,F -coef_maint_Duration_Constant_0_hrs,-0.483549396,F -coef_maint_Duration_Constant_0p5_hrs,0,T -coef_maint_Duration_Constant_Longer_than_0p5_hrs,-1.450618319,F -coef_maint_Duration_Constant_Duration_gt_1_hrs_Linear,-0.275082922,F -coef_maint_Duration_Constant_Duration_gt_1_hrs_Square_Root,0.208434683,F -coef_maint_Calibration_Constant_Duration_eq_1,-0.124602605,F -coef_maint_Calibration_Constant_Duration_eq_2,-0.103637715,F -coef_maint_Calibration_Constant_Duration_eq_3,-0.225442145,F -coef_maint_Calibration_Constant_Duration_eq_4,-0.145273012,F -coef_maint_Calibration_Constant_Duration_eq_5,-0.019241539,F -coef_eatout_Distance_to_destination_Duration_lt_1_hrs,-0.134981987,F -coef_eatout_Distance_to_destination_Duration_gt_1_hrs,0.017860742,F -coef_eatout_Low_income_lt25000_Duration_lt_1_hrs,1.002485807,F -coef_eatout_Medium_25k_to_60k_Duration_lt_1_hrs,0.499822018,F -coef_eatout_Zero_auto_HH_Duration_gt_1_hrs,0.259409942,F -coef_eatout_Kids_in_Joint_tour_Duration_lt_1_hrs,1.785123348,F -coef_eatout_Joint_Tours_Party_Size_greater_than_2_Duration_lt_1_hrs,-1.626003709,F -coef_eatout_University_student_Departure_after_7_00_pm_Linear,0.293827759,F -coef_eatout_Female_Duration_lt_1_hrs,-0.399414247,F -coef_eatout_Female_Duration_gt_1_hrs,0.064593482,F -coef_eatout_Time_Pressure_Departure_before_6_30_pm,0.083673557,F -coef_eatout_Time_Pressure_Duration_lt_1_hrs,1.69632588,F -coef_eatout_Departure_Constant_07_30_AM_09_00_AM,1.222417262,F -coef_eatout_Departure_Constant_10_30_AM_11_00_AM,0.519559134,F -coef_eatout_Departure_Constant_11_00_AM_11_30_AM,1.191543552,F -coef_eatout_Departure_Constant_11_30_AM_12_00_PM,1.66870995,F -#coef_eatout_Departure_Constant_12_00_PM_12_30_PM,1.164106986,F -coef_eatout_Departure_Constant_12_30_PM_01_00_PM,1.057346496,F -coef_eatout_Departure_Constant_01_00_PM_01_30_PM,0.728959087,F -coef_eatout_Departure_Constant_Shift_for_every_30_minutes_before_05_30_pm_Linear,-0.477439748,F -coef_eatout_Departure_Constant_Before_06_00_PM,-1.21554671,F -#coef_eatout_Departure_Constant_06_00_PM_06_30_PM,-0.425984037,F -#coef_eatout_Departure_Constant_06_30_PM_07_00_PM,0,T -#coef_eatout_Departure_Constant_07_00_PM_07_30_PM,-0.227800647,F -#coef_eatout_Departure_Constant_After_07_30_PM,-0.293904097,F -#coef_eatout_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear,-0.55440861,F -coef_eatout_Departure_Constant_11_00_AM_12_00_PM,0.531539506,F -coef_eatout_Departure_Constant_12_00_PM_12_30_PM,0.673838195,F -coef_eatout_Departure_Constant_12_30_PM_to_01_00_PM,0.422292261,F -coef_eatout_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear,-0.033290717,F -coef_eatout_Departure_Constant_Before_05_30_PM,-0.561079452,F -coef_eatout_Departure_Constant_05_30_PM_06_00_PM,-0.178719161,F -coef_eatout_Departure_Constant_06_00_PM_06_30_PM,0,T -coef_eatout_Departure_Constant_06_30_PM_07_00_PM,-0.282095841,F -coef_eatout_Departure_Constant_07_00_PM_07_30_PM,-0.299748613,F -coef_eatout_Departure_Constant_After_07_30_PM,-0.845300559,F -coef_eatout_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear,-0.667843486,F -coef_eatout_Arrival_Constant_9_30_AM_to_11_00_AM,0.486337344,F -#coef_eatout_Arrival_Constant_12_30_PM_to_01_00_PM,0.629299404,F -#coef_eatout_Arrival_Constant_01_00_PM_to_01_30_PM,0.938528731,F -#coef_eatout_Arrival_Constant_01_30_PM_to_02_00_PM,0.584420106,F -#coef_eatout_Arrival_Constant_02_00_PM_to_02_30_PM,0.842550215,F -coef_eatout_Arrival_Constant_02_30_PM_to_03_00_PM,0.298486505,F -#coef_eatout_Arrival_Constant_Shift_for_every_30_minutes_before_06_00_pm_Linear,0.125034982,F -coef_eatout_Arrival_Constant_Before_6_30_PM,-0.029062996,F -coef_eatout_Arrival_Constant_6_30_PM_to_7_00_PM,-0.509075598,F -# coef_eatout_Arrival_Constant_7_00_PM_to_7_30_PM,-0.124885931,F -# coef_eatout_Arrival_Constant_7_30_PM_to_8_00_PM,-0.605455664,F -# coef_eatout_Arrival_Constant_8_00_PM_to_8_30_PM,0,T -# coef_eatout_Arrival_Constant_8_30_PM_to_9_00_PM,-0.657382835,F -coef_eatout_Arrival_Constant_After_9_00_PM,-0.813629712,F -#coef_eatout_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear,-0.204722406,F -coef_eatout_Arrival_Constant_12_30_PM_to_01_00_PM,2.002032369,F -coef_eatout_Arrival_Constant_01_00_PM_to_01_30_PM,2.115334472,F -coef_eatout_Arrival_Constant_01_30_PM_to_02_00_PM,1.647879687,F -coef_eatout_Arrival_Constant_02_00_PM_to_02_30_PM,1.525310078,F -coef_eatout_Arrival_Constant_Shift_for_every_30_minutes_before_06_30_pm_Linear,-0.152980854,F -coef_eatout_Arrival_Constant_Before_7_00_PM,-0.41165142,F -coef_eatout_Arrival_Constant_7_00_PM_to_7_30_PM,-0.384557379,F -coef_eatout_Arrival_Constant_7_30_PM_to_8_00_PM,-0.044050359,F -coef_eatout_Arrival_Constant_8_00_PM_to_8_30_PM,0,T -coef_eatout_Arrival_Constant_8_30_PM_to_9_00_PM,-0.239939049,F -coef_eatout_Arrival_Constant_After_09_00_PM,-0.248639696,F -coef_eatout_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear,-0.204771082,F -#coef_eatout_Duration_Constant_0_hours,-11.72660422,F -#coef_eatout_Duration_Constant_0p5_hous,-5.08873115,F -#coef_eatout_Duration_Constant_1_hour,-0.125521065,F -#coef_eatout_Duration_Constant_1p5_hours,0,T -coef_eatout_Duration_Constant_2_hours,-0.124807752,F -coef_eatout_Duration_Constant_2p5_hours_or_more,-0.156019835,F -coef_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear,-0.3357414,F -coef_eatout_Duration_Constant_0_hours,-4.268996522,F -coef_eatout_Duration_Constant_0p5_hous,-1.323297693,F -coef_eatout_Duration_Constant_1_hour,0,T -coef_eatout_Duration_Constant_1p5_hours,-0.195669185,F -coef_eatout_Duration_Constant_2_hours_or_more,-0.523723192,F -coef_eatout_Duration_Constant_Shift_for_every_30_minutes_more_than_2p5_hrs_Linear,-0.649331488,F -coef_eatout_Calibration_Constant_Duration_eq_1,-0.333697861,F -coef_eatout_Calibration_Constant_Duration_eq_2,-0.245716,F -coef_eatout_Calibration_Constant_Duration_eq_3,0.052708833,F -coef_eatout_Calibration_Constant_Duration_eq_4,0.041571499,F -coef_eatout_Calibration_Constant_Departure_eq_1,-10,F -coef_eatout_Calibration_Constant_Departure_eq_2,-10,F -coef_eatout_Calibration_Constant_Departure_eq_3,-10,F -coef_eatout_Calibration_Constant_Departure_eq_17,0.706568704,F -coef_eatout_Calibration_Constant_Departure_eq_18,0.634353544,F -coef_eatout_Calibration_Constant_Departure_eq_19,0.584387268,F -coef_eatout_Calibration_Constant_Departure_eq_20,0.469777884,F -coef_eatout_Calibration_Constant_Departure_eq_21,0.39548931,F -coef_social_Personlt_18_years_old_Duration_lt_1p5_hrs_Linear,-0.262839914,F -coef_social_Personlt_18_years_old_Duration_gt_1p5_hrs_Linear,0.086919429,F -coef_social_Nonworking_senior_retiree_Duration_lt_1p5_hrs_Linear,0.468354376,F -coef_social_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear,-0.312282762,F -coef_social_Zero_auto_households_Duration_lt_1p5_hrs_Linear,-0.508439932,F -coef_social_Zero_auto_households_Duration_gt_1p5_hrs_Linear,0.074190914,F -coef_social_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear,0.127185965,F -coef_social_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear,0.048756122,F -coef_social_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,-0.559947083,F -coef_social_Kids_in_Joint_Tour_Duration_gt_1p5_hr,-0.115347031,F -coef_social_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,0.104494637,F -coef_social_Auto_Distance_Duration_lt_1_hrs_Linear,-0.162965435,F -coef_social_Auto_Distance_Duration_gt_1_hrs_Linear,0.006797399,F -coef_social_Time_Pressure_Duration_lt_1_hr,-0.229264474,F -coef_social_Time_Pressure_Duration_gt_1_hr,0.219325112,F -coef_social_Number_of_additional_individual_social_and_dicretionary_tours_Duration_lt_1_hr,0.156250451,F -coef_social_Departure_Constant_Shift_for_every_30_minutes_before_08_30_am_Linear,-0.529943196,F -coef_social_Departure_Constant_Before_09_00_AM,-0.198438086,F -coef_social_Departure_Constant_09_00_AM_to_09_30_AM,0.137620628,F -coef_social_Departure_Constant_Shift_for_every_30_minutes_before_05_00_pm_Linear,-0.142078961,F -coef_social_Departure_Constant_Before_05_30_PM,-0.390965052,F -coef_social_Departure_Constant_05_30_PM_06_00_PM,-0.453580491,F -coef_social_Departure_Constant_06_00_PM_06_30_PM,0,T -coef_social_Departure_Constant_06_30_PM_07_00_PM,-0.088537991,F -coef_social_Departure_Constant_07_00_PM_07_30_PM,0.052983115,F -coef_social_Departure_Constant_After_07_30_PM,-0.649629162,F -coef_social_Departure_Constant_Shift_for_every_30_minutes_after_08_00_pm_Linear,-0.09574499,F -coef_social_Arrival_Constant_03_00_PM_to_03_30_PM,0.37674882,F -coef_social_Arrival_Constant_03_30_PM_to_04_00_PM,0.583355461,F -coef_social_Arrival_Constant_04_00_PM_to_04_30_PM,0.727855233,F -coef_social_Arrival_Constant_05_00_PM_to_06_00_PM,0.249551955,F -coef_social_Arrival_Constant_Shift_for_every_30_minutes_before_08_00_pm_Linear,0.053771388,F -coef_social_Arrival_Constant_Before_8_30_PM,0.308763611,F -coef_social_Arrival_Constant_8_30_PM_to_9_00_PM,-0.208797698,F -coef_social_Arrival_Constant_9_00_PM_to_9_30_PM,-0.336319511,F -coef_social_Arrival_Constant_9_30_PM_to10_00_PM,0,T -coef_social_Arrival_Constant_10_00_PM_to_10_30_PM,-0.055707591,F -coef_social_Arrival_Constant_After_10_30_PM,-0.612356296,F -coef_social_Arrival_Constant_Shift_for_every_30_minutes_after_11_00_pm_Linear,-0.348479901,F -coef_social_Duration_Constant_Shift_for_every_30_minutes_less_than_1p5_hrs_Linear,0.619073863,F -coef_social_Duration_Constant_Less_than_2_hours,-0.584024011,F -coef_social_Duration_Constant_2_hours,-0.271552271,F -coef_social_Duration_Constant_2p5_hours,0,T -coef_social_Duration_Constant_3_hours_or_more,0.042083404,F -coef_social_Duration_Constant_Shift_for_every_30_minutes_more_than_3p5_hrs_Linear,-0.13049452,F -coef_social_Duration_Constant_Shift_for_every_30_minutes_less_than_2p5_hrs_Linear,0.614440191,F -coef_social_Duration_Constant_Less_than_3_hrs,0.353666691,F -coef_social_Duration_Constant_3_hours,0,T -coef_social_Duration_Constant_3p5_hours,-0.691218836,F -coef_social_Duration_Constant_4_hours_or_more,-1.344375328,F -coef_social_Duration_Constant_Shift_for_every_30_minutes_more_than_4p5_hrs_Linear,-0.786970714,F -coef_social_Calibration_Constant_Duration_eq_1,-1.346772472,F -coef_social_Calibration_Constant_Duration_eq_2,0.377121689,F -coef_social_Calibration_Constant_Duration_eq_3,0.179818928,F -coef_social_Calibration_Constant_Duration_eq_4,-0.283418619,F -coef_social_Calibration_Constant_Duration_eq_5,-0.103541313,F -coef_social_Calibration_Constant_Duration_eq_6,-0.03704707,F -coef_social_Calibration_Constant_Duration_eq_7,-0.062437167,F -coef_social_Calibration_Constant_Duration_eq_8,0.047640282,F -coef_social_Calibration_Constant_Duration_eq_9,0.284369793,F -coef_disc_Personlt_18_years_old_Duration_lt_1p5_hrs_Linear,-0.262839914,F -coef_disc_Personlt_18_years_old_Duration_gt_1p5_hrs_Linear,0.086919429,F -coef_disc_Nonworking_senior_retiree_Duration_lt_1p5_hrs_Linear,0.468354376,F -coef_disc_Retiree_Nonworking_senior_only_HH_Duration_lt_1p5_hrs_Linear,-0.312282762,F -coef_disc_Zero_auto_households_Duration_lt_1p5_hrs_Linear,-0.508439932,F -coef_disc_Zero_auto_households_Duration_gt_1p5_hrs_Linear,0.074190914,F -coef_disc_Number_of_auto_more_that_number_of_adults_Duration_lt_1p5_hrs_Linear,0.127185965,F -coef_disc_Number_of_auto_more_that_number_of_adults_Duration_gt_1p5_hrs_Linear,0.048756122,F -coef_disc_Kids_in_Joint_Tour_Duration_lt_1p5_hrs,-0.559947083,F -coef_disc_Kids_in_Joint_Tour_Duration_gt_1p5_hr,-0.115347031,F -coef_disc_Joint_Tours_Party_Size_gt_2_Duration_gt_1p5_hr,0.104494637,F -coef_disc_Auto_Distance_Duration_lt_1_hrs_Linear,-0.162965435,F -coef_disc_Auto_Distance_Duration_gt_1_hrs_Linear,0.006797399,F -coef_disc_Time_Pressure_Duration_lt_1_hr,-0.229264474,F -coef_disc_Time_Pressure_Duration_gt_1_hr,0.219325112,F -coef_disc_Number_of_additional_individual_social_and_dicretionary_tours_Duration_lt_1_hr,0.156250451,F -coef_disc_Departure_Constant_Shift_for_every_30_minutes_before_07_30_pm_Linear,-0.742176805,F -coef_disc_Departure_Constant_Before_7_30_AM_,-1.323901585,F -coef_disc_Departure_Constant_7_30_AM_to_8_00_AM,-0.695441631,F -coef_disc_Departure_Constant_8_00_AM_to_8_30_AM,-0.269903336,F -coef_disc_Departure_Constant_8_30_AM_to_9_00_AM,-0.093709211,F -coef_disc_Departure_Constant_9_00_AM_to_9_30_AM,0.265634082,F -coef_disc_Departure_Constant_9_30_AM_to_10_00_AM,0.287521134,F -coef_disc_Departure_Constant_10_00_AM_to_10_30_AM,0.396547817,F -coef_disc_Departure_Constant_Shift_for_every_30_minutes_before_04_30_pm_Linear,-0.245885745,F -coef_disc_Departure_Constant_Before_05_00_PM,-1.344482349,F -coef_disc_Departure_Constant_05_00_PM_05_30_PM,-0.622632748,F -coef_disc_Departure_Constant_05_30_PM_06_00_PM,-0.456718676,F -coef_disc_Departure_Constant_06_00_PM_06_30_PM,-0.206896106,F -coef_disc_Departure_Constant_06_30_PM_07_00_PM,0,T -coef_disc_Departure_Constant_After_07_00_PM,-0.46439343,F -coef_disc_Departure_Constant_Shift_for_every_30_minutes_after_07_30_pm_Linear,-0.291998986,F -coef_disc_Arrival_Constant_Shift_for_every_30_minutes_before_06_00_pm_Linear,0.148649188,F -coef_disc_Arrival_Constant_Before_6_30_PM,0.668775963,F -coef_disc_Arrival_Constant_6_30_PM_to_7_00_PM,-0.053520826,F -coef_disc_Arrival_Constant_7_00_PM_to_7_30_PM,0.099726391,F -coef_disc_Arrival_Constant_7_30_PM_to_8_00_PM,0.063414092,F -coef_disc_Arrival_Constant_8_00_PM_to_8_30_PM,0,T -coef_disc_Arrival_Constant_8_30_PM_to_9_00_PM,-0.18610847,F -coef_disc_Arrival_Constant_After_9_00_PM,-0.423207857,F -coef_disc_Arrival_Constant_Shift_for_every_30_minutes_after_09_30_pm_Linear,-0.525545923,F -#coef_disc_Duration_Constant_0_hours,-0.944257762,F -#coef_disc_Duration_Constant_0p5_hous,-0.117695955,F -#coef_disc_Duration_Constant_1_hour,0.438403665,F -#coef_disc_Duration_Constant_1p5_hours,-0.002500048,F -#coef_disc_Duration_Constant_2_hours,0,T -coef_disc_Duration_Constant_2p5_hours_or_more,0.239192556,F -#coef_disc_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear,-0.108260689,F -coef_disc_Duration_Constant_0_hours,0.436988282,F -coef_disc_Duration_Constant_0p5_hous,1.35967577,F -coef_disc_Duration_Constant_1_hour,1.692672999,F -coef_disc_Duration_Constant_1p5_hours,1.118932964,F -coef_disc_Duration_Constant_2_hours,0.771255733,F -coef_disc_Duration_Constant_2p5_hours,0,T -coef_disc_Duration_Constant_3_hours_or_more,-0.631242175,F -coef_disc_Duration_Constant_Shift_for_every_30_minutes_more_than_3_hrs_Linear,-0.700935645,F -coef_disc_Calibration_Constant_Duration_eq_4,-0.132674257,F -coef_disc_Calibration_Constant_Duration_eq_5,-0.013371871,F -coef_disc_Calibration_Constant_Departure_eq_29,0.232927977,F -coef_disc_Calibration_Constant_Departure_eq_30,0.306104612,F -coef_disc_Calibration_Constant_Departure_eq_31,0.285520678,F -coef_disc_Calibration_Constant_Departure_eq_32,0.115886631,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory.csv deleted file mode 100755 index f345af80a..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory.csv +++ /dev/null @@ -1,348 +0,0 @@ -Label,Description,Expression,Coefficient -# ESCORT,,, -util_escort_mode_choice_logsum,ESCORT - Mode Choice Logsum,"@np.where(df.tour_type == 'escort', df.mode_choice_logsum, 0) ",coef_escort_mode_choice_logsum -"#Note: In CTRAMP expressions, duration alternative is from 1 to 48 but in ActivitySim, it is from 0 to 47 since the duration alternative ID was calculated as (end - start). Therefore, duration in ActivitySim expression = CTRAMP duration expresssion - 1 ",,,# -util_escort_distance_to_destination_duration_less_than_30_minutes,ESCORT - Distance to destination - Duration less than 0.5 hour (depart and arrive in the same period),"@np.where(((df.tour_type == 'escort') & (df.duration<1)), ((df.origin_to_destination_distance) * (np.where((df.duration<=1), np.minimum(1-df.duration, 0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0))), 0)",coef_escort_distance_to_destination_duration_less_than_30_minutes -util_escort_distance_to_destination_duration_greater_than_30_minutes,ESCORT - Distance to destination - Duration greater than 0.5 hour,"@np.where(((df.tour_type == 'escort') & (df.duration>1)), ((df.origin_to_destination_distance) * (np.where((df.duration<=1), np.minimum(1-df.duration, 0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0))), 0)",coef_escort_distance_to_destination_duration_greater_than_30_minutes -util_escort_fulltime_worker_departure_after_8_am_linear,ESCORT - Full-time worker - Departure after 8:00 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)),0)",coef_escort_fulltime_worker_departure_after_8_am_linear -"#Note: In CTRAMP expression file, the description below says departure is after 3 am but from the expression it seems that it would be 3 pm instead of 3 am",,, -util_escort_fulltime_worker_departure_after_3_am_linear,ESCORT - Full-time worker - Departure after 3:00 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.start>24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_fulltime_worker_departure_after_3_am_linear -util_escort_fulltime_worker_duration_less_than_30_minutes,ESCORT - Full-time worker - Duration < 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_fulltime_worker_duration_less_than_30_minutes -util_escort_fulltime_worker_duration_greater_than_30_minutes,ESCORT - Full-time worker - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_fulltime_worker_duration_greater_than_30_minutes -util_escort_university_student_duration_less_than_30_minutes,ESCORT - University student - Duration < 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 3) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_university_student_duration_less_than_30_minutes -util_escort_non_driving_age_student_duration_greater_than_30_minutes,ESCORT - Non-driving age student - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & ((df.ptype == 7)|(df.ptype == 8)) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_non_driving_age_student_duration_greater_than_30_minutes -util_escort_driving_age_student_duration_less_than_30_minutes,ESCORT - Driving age student - Duration < 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 6) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_driving_age_student_duration_less_than_30_minutes -util_escort_driving_age_student_duration_greater_than_30_minutes,ESCORT - Driving age student - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 6) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_driving_age_student_duration_greater_than_30_minutes -"#Note: In CTRAMP expression file, description says the expression below is for duration > 0.5 hr but the expression says duration < 0.5 hr",,, -util_escort_pre_school_kid_duration_greater_than_30_minutes,ESCORT - Pre-school kid - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 8) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_pre_school_kid_duration_greater_than_30_minutes -util_escort_med_high_income_duration_greater_than_30_minutes,ESCORT - Med-high income (60k to 120k) - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.is_income_60K_to_120K) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_med_high_income_duration_greater_than_30_minutes -util_escort_households_with_no_kids_departure_before_7_30_am,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 7:30 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start<10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_households_with_no_kids_departure_before_7_30_am -util_escort_households_with_no_kids_departure_after_8_00_am,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_households_with_no_kids_departure_after_8_00_am -util_escort_households_with_no_kids_departure_before_2_30_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 2:30 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start<24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_households_with_no_kids_departure_before_2_30_pm -util_escort_households_with_no_kids_departure_after_3_00_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start>24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where ((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_households_with_no_kids_departure_after_3_00_pm -util_escort_households_with_no_kids_arrival_before_8_am,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end<11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_households_with_no_kids_arrival_before_8_am -util_escort_households_with_no_kids_arrival_after_8_30_am,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end>11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_households_with_no_kids_arrival_after_8_30_am -util_escort_households_with_no_kids_arrival_before_3_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end<25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_households_with_no_kids_arrival_before_3_pm -util_escort_households_with_no_kids_arrival_after_3_30_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end>25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_households_with_no_kids_arrival_after_3_30_pm -util_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am -util_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.start>24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm -util_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am,"ESCORT -Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.end<11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am -util_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.end<25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where ((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) & (df.end>11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) & (df.end>25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm -util_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes,ESCORT - Number of autos greater than number of adults - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes -util_escort_number_of_individual_tours_duration_greater_than_30_minutes,ESCORT -Number of Individual Tours (excluding escorting) - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.num_non_escort_tours > 0) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)) * (df.num_non_escort_tours), 0)",coef_escort_number_of_individual_tours_duration_greater_than_30_minutes -util_escort_number_of_joint_tours_duration_greater_than_30_minutes,ESCORT - Number of joint tours - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)) *(df.num_joint_tours), 0)",coef_escort_number_of_joint_tours_duration_greater_than_30_minutes -util_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear,ESCORT - Departure Constant: Shift for every 30 minutes before 06:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.start<8)), (np.where((df.start<8), np.minimum(8-df.start,4), 0) + np.where((df.start>13), np.minimum(df.start-13,28), 0)), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear -util_escort_departure_constant_before_7_am,ESCORT - Departure Constant: Before 07:00 AM,@((df.tour_type == 'escort') & (df.start<9)),coef_escort_departure_constant_before_7_am -util_escort_departure_constant_7_am_to_7_30_am,ESCORT - Departure Constant: 07:00 AM - 07:30 AM,@((df.tour_type == 'escort') & (df.start==9)),coef_escort_departure_constant_7_am_to_7_30_am -util_escort_departure_constant_7_30_am_to_8_am,ESCORT - Departure Constant: 07:30 AM - 08:00 AM,@((df.tour_type == 'escort') & (df.start==10)),coef_escort_departure_constant_7_30_am_to_8_am -util_escort_departure_constant_8_am_to_8_30_am,ESCORT - Departure Constant: 08:00 AM - 08:30 AM,@((df.tour_type == 'escort') & (df.start==11)),coef_escort_departure_constant_8_am_to_8_30_am -util_escort_departure_constant_8_30_am_to_9_am,ESCORT - Departure Constant: 08:30 AM - 09:00 AM,@((df.tour_type == 'escort') & (df.start==12)),coef_escort_departure_constant_8_30_am_to_9_am -util_escort_departure_constant_after_9_am,ESCORT - Departure Constant: After 09:00 AM,@((df.tour_type == 'escort') & (df.start>12)),coef_escort_departure_constant_after_9_am -util_escort_departure_constant_1_30_pm_to_2_pm,ESCORT - Departure Constant: 01:30 PM - 02:00 PM,@((df.tour_type == 'escort') & (df.start==22)),coef_escort_departure_constant_1_30_pm_to_2_pm -util_escort_departure_constant_2_pm_to_2_30_pm,ESCORT - Departure Constant: 02:00 PM - 02:30 PM,@((df.tour_type == 'escort') & (df.start==23)),coef_escort_departure_constant_2_pm_to_2_30_pm -util_escort_departure_constant_2_30_pm_to_3_pm,ESCORT - Departure Constant: 02:30 PM - 03:00 PM,@((df.tour_type == 'escort') & (df.start==24)),coef_escort_departure_constant_2_30_pm_to_3_pm -util_escort_departure_constant_3_pm_to_3_30_pm,ESCORT - Departure Constant: 03:00 PM - 03:30 PM,@((df.tour_type == 'escort') & (df.start==25)),coef_escort_departure_constant_3_pm_to_3_30_pm -util_escort_departure_constant_after_3_30_pm,ESCORT - Departure Constant: After 03:30 PM,@((df.tour_type == 'escort') & (df.start>25)),coef_escort_departure_constant_after_3_30_pm -util_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear,ESCORT - Departure Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.start>13)), (np.where((df.start<8), np.minimum(8-df.start,4), 0) + (np.where((df.start>13), np.minimum(df.start-13,28), 0))), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear -util_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear,ESCORT - Departure Constant: Shift for every 30 minutes after 4:00 pm - Linear,"@np.where(((df.tour_type == 'escort') & (df.start>26)), (np.where((df.start<0), np.minimum(0-df.start,48), 0) + np.where((df.start>26), np.minimum(df.start-26,15),0)), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear -util_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear,ESCORT - Arrival Constant: Shift for every 30 minutes before 6:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.end<8)), (np.where((df.end<8), np.minimum(8-df.end,2), 0) + np.where((df.end>13), np.minimum(df.end-13,30), 0)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear -util_escort_arrival_constant_before_7_am,ESCORT - Arrival Constant: Before 07:00 AM,@((df.tour_type == 'escort') & (df.end<9)),coef_escort_arrival_constant_before_7_am -util_escort_arrival_constant_7_am_to_7_30_am,ESCORT - Arrival Constant: 07:00 AM - 07:30 AM,@((df.tour_type == 'escort') & (df.end==9)),coef_escort_arrival_constant_7_am_to_7_30_am -util_escort_arrival_constant_7_30_am_to_8_am,ESCORT - Arrival Constant: 07:30 AM - 08:00 AM,@((df.tour_type == 'escort') & (df.end==10)),coef_escort_arrival_constant_7_30_am_to_8_am -util_escort_arrival_constant_8_am_to_8_30_am,ESCORT - Arrival Constant: 08:00 AM - 08:30 AM,@((df.tour_type == 'escort') & (df.end==11)),coef_escort_arrival_constant_8_am_to_8_30_am -util_escort_arrival_constant_8_30_am_to_9_am,ESCORT - Arrival Constant: 08:30 AM - 09:00 AM,@((df.tour_type == 'escort') & (df.end==12)),coef_escort_arrival_constant_8_30_am_to_9_am -util_escort_arrival_constant_after_9_am,ESCORT - Arrival Constant: After 09:00 AM,@((df.tour_type == 'escort') & (df.end>12)),coef_escort_arrival_constant_after_9_am -util_escort_arrival_constant_2_30_pm_to_3_pm,ESCORT - Arrival Constant: 02:30 PM - 03:00 PM,@((df.tour_type == 'escort') & (df.end==24)),coef_escort_arrival_constant_2_30_pm_to_3_pm -util_escort_arrival_constant_3_pm_to_3_30_pm,ESCORT - Arrival Constant: 03:00 PM - 03:30 PM,@((df.tour_type == 'escort') & (df.end==25)),coef_escort_arrival_constant_3_pm_to_3_30_pm -util_escort_arrival_constant_3_30_pm_to_4_pm,ESCORT - Arrival Constant: 03:30 PM - 04:00 PM,@((df.tour_type == 'escort') & (df.end==26)),coef_escort_arrival_constant_3_30_pm_to_4_pm -util_escort_arrival_constant_4_pm_to_4_30_pm,ESCORT - Arrival Constant: 04:00 PM - 04:30 PM,@((df.tour_type == 'escort') & (df.end==27)),coef_escort_arrival_constant_4_pm_to_4_30_pm -util_escort_arrival_constant_after_4_30_pm,ESCORT - Arrival Constant: After 04:30 PM,@((df.tour_type == 'escort') & (df.end>27)),coef_escort_arrival_constant_after_4_30_pm -util_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.end>13)), (np.where((df.end<8), np.minimum(8-df.end,2), 0) + np.where((df.end>13), np.minimum(df.end-13,30), 0)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear -util_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.tour_type == 'escort') & (df.end>28)), (np.where((df.end<0), np.minimum(0-df.end,48), 0) + np.where((df.start>28), np.minimum(df.end-28,15), 0)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear -util_escort_duration_constant_0_hour,ESCORT - Duration Constant: 0 hr,@((df.tour_type == 'escort') & (df.duration==0)),coef_escort_duration_constant_0_hour -util_escort_duration_constant_30_minutes,ESCORT - Duration Constant: 0.5 hr,@((df.tour_type == 'escort') & (df.duration==1)),coef_escort_duration_constant_30_minutes -util_escort_duration_constant_1_hour,ESCORT - Duration Constant: 1 hr,@((df.tour_type == 'escort') & (df.duration==2)),coef_escort_duration_constant_1_hour -util_escort_duration_constant_1_hour_30_minutes,ESCORT - Duration Constant: 1.5hrs,@((df.tour_type == 'escort') & (df.duration==3)),coef_escort_duration_constant_1_hour_30_minutes -util_escort_duration_constant_2_hours,ESCORT - Duration Constant: 2 hrs,@((df.tour_type == 'escort') & (df.duration==4)),coef_escort_duration_constant_2_hours -util_escort_duration_constant_longer_than_2_hours,ESCORT - Duration Constant: Longer than 2 hrs,@((df.tour_type == 'escort') & (df.duration>4)),coef_escort_duration_constant_longer_than_2_hours -util_escort_calibration_constant_duration_1,ESCORT - Calibration Constant - Duration = 1,@((df.tour_type == 'escort') & (df.duration==0)),coef_escort_calibration_constant_duration_1 -util_escort_calibration_constant_duration_2,ESCORT - Calibration Constant - Duration = 2,@((df.tour_type == 'escort') & (df.duration==1)),coef_escort_calibration_constant_duration_2 -util_escort_calibration_constant_departure_9,ESCORT - Calibration Constant - Departure = 9,@((df.tour_type == 'escort') & (df.start==9)),coef_escort_calibration_constant_departure_9 -util_escort_calibration_constant_departure_10,ESCORT - Calibration Constant - Departure = 10,@((df.tour_type == 'escort') & (df.start==10)),coef_escort_calibration_constant_departure_10 -util_escort_calibration_constant_departure_23,ESCORT - Calibration Constant - Departure = 23,@((df.tour_type == 'escort') & (df.start==23)),coef_escort_calibration_constant_departure_23 -util_escort_calibration_constant_departure_24,ESCORT - Calibration Constant - Departure = 24,@((df.tour_type == 'escort') & (df.start==24)),coef_escort_calibration_constant_departure_24 -#SHOPPING,,,#SHOPPING -util_shoppping_driving_age_student_duration_greater_than_1_hour_30_minutes,SHOPPING - Driving age student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 6)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_driving_age_student_duration_greater_than_1_hour_30_minutes -util_shoppping_full_time_worker_duration_greater_than_1_hour_30_minutes,SHOPPING - Full-time worker: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_full_time_worker_duration_greater_than_1_hour_30_minutes -util_shoppping_non_driving_student_duration_greater_than_1_hour_30_minutes,SHOPPING - Non-driving Student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & ((df.ptype == 7)|(df.ptype == 8))), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_non_driving_student_duration_greater_than_1_hour_30_minutes -util_shoppping_pre_school_child_duration_less_than_1_hour_30_minutes,SHOPPING - Pre-school Child: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.ptype == 8)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_pre_school_child_duration_less_than_1_hour_30_minutes -util_shoppping_part_time_worker_duration_less_than_1_hour_30_minutes,SHOPPING - Part Time Worker: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_part_time_worker_duration_less_than_1_hour_30_minutes -util_shopping_part_time_worker_duration_greater_than_1_hour_30_minutes,SHOPPING - Part Time Worker: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_part_time_worker_duration_greater_than_1_hour_30_minutes -util_shopping_retired_duration_less_than_1_hour_30_minutes,SHOPPING - Retired: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_retired_duration_less_than_1_hour_30_minutes -util_shopping_retired_duration_greater_than_1_hour_30_minutes,SHOPPING - Retired: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_retired_duration_greater_than_1_hour_30_minutes -util_shopping_university_student_duration_greater_than_1_hour_30_minutes,SHOPPING - University Student: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 3)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_university_student_duration_greater_than_1_hour_30_minutes -util_shopping_female_duration_less_than_1_hour_30_minutes,SHOPPING - Female: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_female_duration_less_than_1_hour_30_minutes -util_shopping_female_duration_greater_than_1_hour_30_minutes,SHOPPING - Female: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_female_duration_greater_than_1_hour_30_minutes -util_shopping_low_income_duration_greater_than_1_hour_30_minutes,"SHOPPING - Low Income (<=$25,000): Duration > 1.5 hr","@np.where(((df.tour_type == 'shopping') & (df.is_income_less25K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_low_income_duration_greater_than_1_hour_30_minutes -util_shopping_medium_income_duration_less_than_1_hour_30_minutes,"SHOPPING - Medium Income ($25,001 to $60,000): Duration < 1.5 hrs","@np.where(((df.tour_type == 'shopping') & (df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_medium_income_duration_less_than_1_hour_30_minutes -util_shopping_medium_high_income_duration_greater_than_1_hour_30_minutes,"SHOPPING - Medium-High Income ($60,001 to $120,00): Duration > 1.5 hrs","@np.where(((df.tour_type == 'shopping') & (df.is_income_60K_to_120K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_medium_high_income_duration_greater_than_1_hour_30_minutes -util_shopping_distance_duration_less_than_1_hour_30_minutes,SHOPPING - Distance: Duration < 1.5 hrs,"@np.where(((df.tour_type == 'shopping') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_shopping_distance_duration_less_than_1_hour_30_minutes -util_shopping_distance_duration_greater_than_1_hour_30_minutes,SHOPPING - Distance: Duration > 1.5 hrs,"@np.where(((df.tour_type == 'shopping') & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_shopping_distance_duration_greater_than_1_hour_30_minutes -util_shopping_time_pressure_duration_greater_than_1_hour_30_minutes,SHOPPING - Time Pressure - Duration > 1.5 hrs,"@np.where(((df.tour_type == 'shopping') & (df.duration>2)), np.minimum(df.duration-2,26) *(np.log10 (30 *(tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_shopping_time_pressure_duration_greater_than_1_hour_30_minutes -util_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,SHOPPING - Number of additional individual shop and maint. tours - Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.num_add_shop_maint_tours), 0)",coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes -util_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,SHOPPING - Number of additional individual shop and maint. tours - Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') &(df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.num_add_shop_maint_tours), 0)",coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes -util_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@np.where(((df.tour_type == 'shopping') & (df.start<12)), (np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear -util_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Square root,"@np.where(((df.tour_type == 'shopping') & (df.start<12)), (np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0))**0.5, 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root -util_shopping_departure_constant_before_9_am,SHOPPING - Departure Constant: Before 09:00 AM,@((df.tour_type == 'shopping') & (df.start<13)),coef_shopping_departure_constant_before_9_am -util_shopping_departure_constant_9_am_to_9_30_am,SHOPPING - Departure Constant: 09:00 AM - 09:30 AM,@((df.tour_type == 'shopping') & (df.start==13)),coef_shopping_departure_constant_9_am_to_9_30_am -util_shopping_departure_constant_9_30_am_to_10_am,SHOPPING - Departure Constant: 09:30 AM - 10:00 AM,@((df.tour_type == 'shopping') & (df.start==14)),coef_shopping_departure_constant_9_30_am_to_10_am -util_shopping_departure_constant_10_am_to_10_30_am,SHOPPING - Departure Constant: 10:00 AM - 10:30 AM,@((df.tour_type == 'shopping') & (df.start==15)),coef_shopping_departure_constant_10_am_to_10_30_am -util_shopping_departure_constant_10_30_am_to_11_00_am,SHOPPING - Departure Constant: 10:30 AM - 11:00 AM,@((df.tour_type == 'shopping') & (df.start==16)),coef_shopping_departure_constant_10_30_am_to_11_00_am -util_shopping_departure_constant_after_11_am,SHOPPING - Departure Constant: After 11:00 AM,@((df.tour_type == 'shopping') & (df.start>16)),coef_shopping_departure_constant_after_11_am -util_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.tour_type == 'shopping') & (df.start>17)), (np.where((df.start<12), np.minimum(12-df.start,7),0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear -util_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Squared,"@np.where(((df.tour_type == 'shopping') & (df.start>17)), ((np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)) ** 2), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared -util_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear,SHOPPING - Arrival Constant: Shift for every 30 minutes before 12:00 pm - Linear,"@np.where(((df.tour_type == 'shopping') & (df.end<19)), (np.where ((df.end<19), np.minimum(19-df.end,10), 0) + np.where((df.end>38), np.minimum(df.end-38,5), 0)), 0)",coef_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear -util_shopping_arrival_constant_before_12_30_pm,SHOPPING - Arrival Constant: Before 12:30 PM,@((df.tour_type == 'shopping') & (df.end<20)),coef_shopping_arrival_constant_before_12_30_pm -util_shopping_arrival_constant_12_30_pm_to_3_pm,SHOPPING - Arrival Constant: 12:30 PM - 03:00 PM,@((df.tour_type == 'shopping') & ( df.end>=20) & (df.end<=24)),coef_shopping_arrival_constant_12_30_pm_to_3_pm -util_shopping_arrival_constant_3_pm_to_3_30_pm,SHOPPING - Arrival Constant: 03:00 PM - 03:30 PM,@((df.tour_type == 'shopping') & (df.end==25)),coef_shopping_arrival_constant_3_pm_to_3_30_pm -util_shopping_arrival_constant_3_30_pm_to_4_pm,SHOPPING - Arrival Constant: 03:30 PM - 04:00 PM,@((df.tour_type == 'shopping') & (df.end==26)),coef_shopping_arrival_constant_3_30_pm_to_4_pm -util_shopping_arrival_constant_4_pm_to_4_30_pm,SHOPPING - Arrival Constant: 04:00 PM - 04:30 PM,@((df.tour_type == 'shopping') & (df.end==27)),coef_shopping_arrival_constant_4_pm_to_4_30_pm -util_shopping_arrival_constant_4_30_pm_to_5_pm,SHOPPING - Arrival Constant: 04:30 PM - 05:00 PM,@((df.tour_type == 'shopping') & (df.end==28)),coef_shopping_arrival_constant_4_30_pm_to_5_pm -util_shopping_arrival_constant_5_pm_to_5_30_pm,SHOPPING - Arrival Constant: 05:00 PM - 05:30 PM,@((df.tour_type == 'shopping') & (df.end==29)),coef_shopping_arrival_constant_5_pm_to_5_30_pm -util_shopping_arrival_constant_5_30_pm_to_7_pm,SHOPPING - Arrival Constant: 05:30 PM - 07:00 PM,@((df.tour_type == 'shopping') & (df.end>=30) & (df.end<=32)),coef_shopping_arrival_constant_5_30_pm_to_7_pm -util_shopping_arrival_constant_7_pm_to_9_30_pm,SHOPPING - Arrival Constant: 07:00 PM - 09:30 PM,@((df.tour_type == 'shopping') & (df.end>=33) & (df.end<=37)),coef_shopping_arrival_constant_7_pm_to_9_30_pm -util_shopping_arrival_constant_after_9_30_pm,SHOPPING - Arrival Constant: After 09:30 PM,@((df.tour_type == 'shopping') & (df.end>37)),coef_shopping_arrival_constant_after_9_30_pm -util_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear,SHOPPING - Arrival Constant: Shift for every 30 minutes after 10:00 pm - Linear,"@np.where(((df.tour_type == 'shopping') & (df.end>38)), (np.where((df.end<19), np.minimum(19-df.end,10), 0) + np.where ((df.end>38), np.minimum(df.end-38,5), 0)), 0)",coef_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear -util_shopping_duration_constant_0_hr,SHOPPING - Duration Constant: 0 hr,@((df.tour_type == 'shopping') & (df.duration==0)),coef_shopping_duration_constant_0_hr -util_shopping_duration_constant_30_minutes,SHOPPING - Duration Constant: 0.5 hr,@((df.tour_type == 'shopping') & (df.duration==1)),coef_shopping_duration_constant_30_minutes -util_shopping_duration_constant_1_hr,SHOPPING - Duration Constant: 1 hr,@((df.tour_type == 'shopping') & (df.duration==2)),coef_shopping_duration_constant_1_hr -util_shopping_duration_constant_1_hour_30_minutes,SHOPPING - Duration Constant: 1.5hrs,@(df.tour_type == 'shopping') & (df.duration==3),coef_shopping_duration_constant_1_hour_30_minutes -util_shopping_duration_constant_2_hrs,SHOPPING - Duration Constant: 2 hrs,@((df.tour_type == 'shopping') & (df.duration==4)),coef_shopping_duration_constant_2_hrs -util_shopping_duration_constant_longer_than_2_hrs,SHOPPING - Duration Constant: Longer than 2 hrs,@((df.tour_type == 'shopping') & (df.duration>4)),coef_shopping_duration_constant_longer_than_2_hrs -util_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear,SHOPPING - Duration Constant: Duration > 2.5 hrs - Linear,"@np.where(((df.tour_type == 'shopping') & (df.duration>5)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,26), 0)), 0)",coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear -util_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root,SHOPPING - Duration Constant: Duration > 2.5 hrs - Square root,"@np.where(((df.tour_type == 'shopping') & (df.duration>5)), ((np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,26), 0)) ** 0.5), 0)",coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root -util_shopping_calibration_constant_duration_1,SHOPPING - Calibration Constant - Duration = 1,@((df.tour_type == 'shopping') & (df.duration==0)),coef_shopping_calibration_constant_duration_1 -util_shopping_calibration_constant_duration_2,SHOPPING - Calibration Constant - Duration = 2,@((df.tour_type == 'shopping') & (df.duration==1)),coef_shopping_calibration_constant_duration_2 -util_shopping_calibration_constant_duration_3,SHOPPING - Calibration Constant - Duration = 3,@((df.tour_type == 'shopping') & (df.duration==2)),coef_shopping_calibration_constant_duration_3 -#MAINTENANCE,#MAINTENANCE,,#MAINTENANCE -util_maintenance_driving_age_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Driving age student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 6)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_driving_age_student_duration_greater_than_1_hour_30_minutes -util_maintenance_full_time_worker_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Full-time worker: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_full_time_worker_duration_greater_than_1_hour_30_minutes -util_maintenance_non_driving_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Non-driving Student: Duration > 1.5 hrs,"@np.where (((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & ((df.ptype == 7)|(df.ptype == 8))), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_non_driving_student_duration_greater_than_1_hour_30_minutes -util_maintenance_pre_school_child_duration_less_than_1_hour_30_minutes,MAINTENANCE - Pre-school Child: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.ptype == 8)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_pre_school_child_duration_less_than_1_hour_30_minutes -util_maintenance_part_time_worker_duration_less_than_1_hour_30_minutes,MAINTENANCE - Part Time Worker: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_part_time_worker_duration_less_than_1_hour_30_minutes -util_maintenance_part_time_worker_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Part Time Worker: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_part_time_worker_duration_greater_than_1_hour_30_minutes -util_maintenance_retired_duration_less_than_1_hour_30_minutes,MAINTENANCE - Retired: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_retired_duration_less_than_1_hour_30_minutes -util_maintenance_retired_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Retired: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_retired_duration_greater_than_1_hour_30_minutes -util_maintenance_university_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - University Student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 3)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_university_student_duration_greater_than_1_hour_30_minutes -util_maintenance_female_duration_less_than_1_hour_30_minutes,MAINTENANCE - Female: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_female_duration_less_than_1_hour_30_minutes -util_maintenance_female_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Female: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_female_duration_greater_than_1_hour_30_minutes -util_maintenance_low_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Low Income (<=$25,000): Duration > 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_less25K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_low_income_duration_greater_than_1_hour_30_minutes -util_maintenance_medium_income_duration_less_than_1_hour_30_minutes,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration < 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_income_duration_less_than_1_hour_30_minutes -util_maintenance_medium_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration > 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_25K_to_60K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_income_duration_greater_than_1_hour_30_minutes -util_maintenance_medium_high_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Medium-High Income ($60,001 to $120,00): Duration > 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_60K_to_120K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_high_income_duration_greater_than_1_hour_30_minutes -util_maintenance_distance_duration_less_than_1_hour_30_minutes,MAINTENANCE - Distance: Duration < 1.5 hrs,"@np.where(((df.tour_type == 'othmaint') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.origin_to_destination_distance), 0)",coef_maintenance_distance_duration_less_than_1_hour_30_minutes -util_maintenance_distance_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Distance: Duration > 1.5 hrs,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_maintenance_distance_duration_greater_than_1_hour_30_minutes -util_maintenance_time_pressure_duration_greater_than_1_hour_30_minutes,Time Pressure - Duration > 1.5 hrs,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), np.minimum(df.duration-2,26) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_maintenance_time_pressure_duration_greater_than_1_hour_30_minutes -util_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,MAINTENANCE - Number of additional individual shop and maint. tours - Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint')&(df.tour_type == 'othmaint')&(df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.num_add_shop_maint_tours), 0)",coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes -util_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Number of additional individual shop and maint. tours - Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint')&(df.tour_type == 'othmaint')&(df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.num_add_shop_maint_tours), 0)",coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes -util_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.start<10)), (np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear -util_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Square Root,"@np.where(((df.tour_type == 'othmaint') & (df.start<10)), ((np.where((df.start<10), np.minimum(10-df.start,7), 0) + (np.where((df.start>17), np.minimum(df.start-17,24), 0)))** 0.5), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root -util_maintenance_departure_constant_before_8_am,MAINTENANCE - Departure Constant: Before 08:00 AM,@((df.tour_type == 'othmaint') & (df.start<11)),coef_maintenance_departure_constant_before_8_am -util_maintenance_departure_constant_8_am_to_8_30_am,MAINTENANCE - Departure Constant: 08:00 AM - 08:30 AM,@((df.tour_type == 'othmaint') & (df.start==11)),coef_maintenance_departure_constant_8_am_to_8_30_am -util_maintenance_departure_constant_8_30_am_to_9_00_am,MAINTENANCE - Departure Constant: 08:30 AM - 09:00 AM,@((df.tour_type == 'othmaint') & (df.start==12)),coef_maintenance_departure_constant_8_30_am_to_9_00_am -util_maintenance_departure_constant_9_am_to_9_30_am,MAINTENANCE - Departure Constant: 09:00 AM - 09:30 AM,@((df.tour_type == 'othmaint') & (df.start==13)),coef_maintenance_departure_constant_9_am_to_9_30_am -util_maintenance_departure_constant_9_30_am_to_10_am,MAINTENANCE - Departure Constant: 09:30 AM - 10:00 AM,@((df.tour_type == 'othmaint') & (df.start==14)),coef_maintenance_departure_constant_9_30_am_to_10_am -util_maintenance_departure_constant_10_am_to_10_30_am,MAINTENANCE - Departure Constant: 10:00 AM - 10:30 AM,@((df.tour_type == 'othmaint') & (df.start==15)),coef_maintenance_departure_constant_10_am_to_10_30_am -util_maintenance_departure_constant_10_30_am_to_11_am,MAINTENANCE - Departure Constant: 10:30 AM - 11:00 AM,@((df.tour_type == 'othmaint') & (df.start==16)),coef_maintenance_departure_constant_10_30_am_to_11_am -util_maintenance_departure_constant_after_11_am,MAINTENANCE - Departure Constant: After 11:00 AM,@((df.tour_type == 'othmaint') & (df.start>16)),coef_maintenance_departure_constant_after_11_am -util_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.start>17)), np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear -util_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Squared,"@np.where(((df.tour_type == 'othmaint') & (df.start>17)), ((np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)) ** 2), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared -util_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes before 10:00 am - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.end<15)), (np.where((df.end<15), np.minimum(15-df.end,9), 0) + np.where((df.end>28), np.minimum(df.end-28,16), 0)), 0)",coef_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear -util_maintenance_arrival_constant_before_10_30_am,MAINTENANCE - Arrival Constant: Before 10:30 AM,@((df.tour_type == 'othmaint') & (df.end<16)),coef_maintenance_arrival_constant_before_10_30_am -util_maintenance_arrival_constant_10_30_am_to_11_am,MAINTENANCE - Arrival Constant: 10:30 AM - 11:00 AM,@((df.tour_type == 'othmaint') & (df.end==16)),coef_maintenance_arrival_constant_10_30_am_to_11_am -util_maintenance_arrival_constant_11_am_to_11_30_am,MAINTENANCE - Arrival Constant: 11:00 AM - 11:30 AM,@((df.tour_type == 'othmaint') & (df.end==17)),coef_maintenance_arrival_constant_11_am_to_11_30_am -util_maintenance_arrival_constant_11_30_am_to_1_30_pm,MAINTENANCE - Arrival Constant: 11:30 AM - 01:30 PM,@((df.tour_type == 'othmaint') & (df.end>=18) & (df.end<=21)),coef_maintenance_arrival_constant_11_30_am_to_1_30_pm -util_maintenance_arrival_constant_1_30_pm_to_2_30_pm,MAINTENANCE - Arrival Constant: 01:30 PM - 02:30 PM,@((df.tour_type == 'othmaint') & (df.end>=22) & (df.end<=23)),coef_maintenance_arrival_constant_1_30_pm_to_2_30_pm -util_maintenance_arrival_constant_2_30_pm_to_4_pm,MAINTENANCE - Arrival Constant: 02:30 PM - 04:00 PM,@((df.tour_type == 'othmaint') & (df.end>=24) & (df.end<=26)),coef_maintenance_arrival_constant_2_30_pm_to_4_pm -util_maintenance_arrival_constant_4_pm_to_4_30_pm,MAINTENANCE - Arrival Constant: 04:00 PM - 04:30 PM,@((df.tour_type == 'othmaint') & (df.end==27)),coef_maintenance_arrival_constant_4_pm_to_4_30_pm -util_maintenance_arrival_constant_after_4_30_pm,MAINTENANCE - Arrival Constant: After 04:30 PM,@((df.tour_type == 'othmaint') & (df.end>27)),coef_maintenance_arrival_constant_after_4_30_pm -util_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.end>28)), (np.where((df.end<15), np.minimum(15-df.end,9), 0) + np.where((df.end>28), np.minimum(df.end-28,16), 0)), 0)",coef_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear -util_maintenance_duration_constant_0_hr,MAINTENANCE - Duration Constant: 0 hr,@((df.tour_type == 'othmaint') & (df.duration==0)),coef_maintenance_duration_constant_0_hr -util_maintenance_duration_constant_30_minutes,MAINTENANCE - Duration Constant: 0.5 hr,@((df.tour_type == 'othmaint') & (df.duration==1)),coef_maintenance_duration_constant_30_minutes -util_maintenance_duration_constant_longer_than_30_minutes,MAINTENANCE - Duration Constant: Longer than 0.5 hr,@((df.tour_type == 'othmaint') & (df.duration>1)),coef_maintenance_duration_constant_longer_than_30_minutes -util_maintenance_duration_constant_duration_greater_than_1_hr_linear,MAINTENANCE - Duration Constant: Duration > 1 hr - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_duration_constant_duration_greater_than_1_hr_linear -util_maintenance_duration_constant_duration_greater_than_1_hr_square_root,MAINTENANCE - Duration Constant: Duration > 1 hr - Square Root,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), ((np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0))** 0.5), 0)",coef_maintenance_duration_constant_duration_greater_than_1_hr_square_root -util_maintenance_calibration_constant_duration_1,MAINTENANCE - Calibration Constant - Duration = 1,@((df.tour_type == 'othmaint') & (df.duration==0)),coef_maintenance_calibration_constant_duration_1 -util_maintenance_calibration_constant_duration_2,MAINTENANCE - Calibration Constant - Duration = 2,@((df.tour_type == 'othmaint') & (df.duration==1)),coef_maintenance_calibration_constant_duration_2 -util_maintenance_calibration_constant_duration_3,MAINTENANCE - Calibration Constant - Duration = 3,@((df.tour_type == 'othmaint') & (df.duration==2)),coef_maintenance_calibration_constant_duration_3 -util_maintenance_calibration_constant_duration_4,MAINTENANCE - Calibration Constant - Duration = 4,@((df.tour_type == 'othmaint') & (df.duration==3)),coef_maintenance_calibration_constant_duration_4 -util_maintenance_calibration_constant_duration_5,MAINTENANCE - Calibration Constant - Duration = 5,@((df.tour_type == 'othmaint') & (df.duration==4)),coef_maintenance_calibration_constant_duration_5 -#EAT-OUT,#EAT-OUT,,#EAT-OUT -util_eatout_distance_to_destination_duration_less_than_1_hr,EAT-OUT - Distance to destination - Duration < 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)) * (df.origin_to_destination_distance), 0)",coef_eatout_distance_to_destination_duration_less_than_1_hr -util_eatout_distance_to_destination_duration_greater_than_1_hr,EAT-OUT - Distance to destination - Duration > 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)) *(df.origin_to_destination_distance), 0)",coef_eatout_distance_to_destination_duration_greater_than_1_hr -util_eatout_low_income_duration_less_than_1_hr,EAT-OUT - Low income (<25000) - Duration < 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.is_income_less25K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_low_income_duration_less_than_1_hr -util_eatout_medium_income_duration_less_than_1_hr,EAT-OUT - Medium (25k to 60k) - Duration < 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_medium_income_duration_less_than_1_hr -util_eatout_zeroauto_HH_duration_greater_than_1_hr,EAT-OUT - Zero auto HH - Duration > 1 hrs,"@np.where(((df.tour_type == 'eatout') & (df.auto_ownership == 0) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_zeroauto_HH_duration_greater_than_1_hr -util_eatout_university_student_departure_after_7_pm_linear,EAT-OUT - University student - Departure after 7:00 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.start>32) & (df.ptype == 3)), (np.where((df.start<=32), np.minimum(32-df.start,29), 0) + np.where((df.start>32), np.minimum(df.start-32,8), 0)), 0)",coef_eatout_university_student_departure_after_7_pm_linear -util_eatout_female_duration_less_than_1_hr,EAT-OUT - Female - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_female_duration_less_than_1_hr -util_eatout_female_duration_greater_than_1_hr,EAT-OUT - Female - Duration > 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_female_duration_greater_than_1_hr -util_eatout_time_pressure_departure_before_6_30_pm,EAT-OUT - Time Pressure - Departure before 6:30 pm,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start<32)), (np.minimum(32-df.start,29)) * (np.log10 (30 *(tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_eatout_time_pressure_departure_before_6_30_pm -util_eatout_time_pressure_duration_less_than_1_hr,EAT-OUT - Time Pressure - Duration < 1 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.duration<2)), np.minimum(2-df.duration,47) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_eatout_time_pressure_duration_less_than_1_hr -util_eatout_departure_constant_7_30_am_to_9_am,EAT-OUT - Departure Constant: 07:30 AM - 09:00 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start>=10) & (df.start<=12)),coef_eatout_departure_constant_7_30_am_to_9_am -util_eatout_departure_constant_10_30_am_to_11_am,EAT-OUT - Departure Constant: 10:30 AM - 11:00 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==16)),coef_eatout_departure_constant_10_30_am_to_11_am -util_eatout_departure_constant_11_am_to_11_30_am,EAT-OUT - Departure Constant: 11:00 AM - 11:30 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==17)),coef_eatout_departure_constant_11_am_to_11_30_am -util_eatout_departure_constant_11_30_am_to_12_pm,EAT-OUT - Departure Constant: 11:30 AM - 12:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==18)),coef_eatout_departure_constant_11_30_am_to_12_pm -util_eatout_departure_constant_12_pm_to_12_30_pm,EAT-OUT - Departure Constant: 12:00 PM - 12:30 PM,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.start==19)),coef_eatout_departure_constant_12_pm_to_12_30_pm -util_eatout_departure_constant_12_30_pm_to_1_pm,EAT-OUT - Departure Constant: 12:30 PM - 01:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==20)),coef_eatout_departure_constant_12_30_pm_to_1_pm -util_eatout_departure_constant_1_pm_to_1_30_pm,EAT-OUT - Departure Constant: 01:00 PM - 01:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==21)),coef_eatout_departure_constant_1_pm_to_1_30_pm -util_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear,EAT-OUT - Departure Constant: Shift for every 30 minutes before 05:30 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start<31)), (np.where((df.start<30), np.minimum(30-df.start,27), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear -util_eatout_departure_constant_before_6_pm,EAT-OUT - Departure Constant: Before 06:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start<31)),coef_eatout_departure_constant_before_6_pm -util_eatout_departure_constant_6_pm_to_6_30_pm,EAT-OUT - Departure Constant: 06:00 PM - 06:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==31)),coef_eatout_departure_constant_6_pm_to_6_30_pm -util_eatout_departure_constant_6_30_pm_to_7_pm,EAT-OUT - Departure Constant: 06:30 PM - 07:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==32)),coef_eatout_departure_constant_6_30_pm_to_7_pm -util_eatout_departure_constant_7_pm_to_7_30_pm,EAT-OUT - Departure Constant: 07:00 PM - 07:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==33)),coef_eatout_departure_constant_7_pm_to_7_30_pm -util_eatout_departure_constant_after_7_30_pm,EAT-OUT - Departure Constant: After 07:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start>33)),coef_eatout_departure_constant_after_7_30_pm -util_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,EAT-OUT - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start>34)), (np.where((df.start<30), np.minimum(30-df.start,27), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear -util_eatout_arrival_constant_9_30_am_to_11_am,EAT-OUT - Arrival Constant: 9:30 AM to 11:00 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end>=14) & (df.end<=16)),coef_eatout_arrival_constant_9_30_am_to_11_am -util_eatout_arrival_constant_12_30_pm_to_1_pm,EAT-OUT - Arrival Constant: 12:30 PM to 01:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==20)),coef_eatout_arrival_constant_12_30_pm_to_1_pm -util_eatout_arrival_constant_1_pm_to_1_30_pm,EAT-OUT - Arrival Constant: 01:00 PM to 01:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==21)),coef_eatout_arrival_constant_1_pm_to_1_30_pm -util_eatout_arrival_constant_1_30_pm_to_2_pm,EAT-OUT - Arrival Constant: 01:30 PM to 02:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==22)),coef_eatout_arrival_constant_1_30_pm_to_2_pm -util_eatout_arrival_constant_2_pm_to_2_30_pm,EAT-OUT - Arrival Constant: 02:00 PM to 02:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==23)),coef_eatout_arrival_constant_2_pm_to_2_30_pm -util_eatout_arrival_constant_2_30_pm_to_3_pm,EAT-OUT - Arrival Constant: 02:30 PM to 03:00 PM,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.end==24)),coef_eatout_arrival_constant_2_30_pm_to_3_pm -util_eatout_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes before 06:00 pm - Linear,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end<31)),coef_eatout_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear -util_eatout_arrival_constant_before_6_30_pm,EAT-OUT - Arrival Constant: Before 6:30 PM,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end<32)), (np.where((df.end<31), np.minimum(31-df.end,24), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_eatout_arrival_constant_before_6_30_pm -util_eatout_arrival_constant_6_30_pm_to_7_pm,EAT-OUT - Arrival Constant: 6:30 PM to 7:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==32)),coef_eatout_arrival_constant_6_30_pm_to_7_pm -util_eatout_arrival_constant_7_pm_to_7_30_pm,EAT-OUT - Arrival Constant: 7:00 PM to 7:30 PM,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.end==33)),coef_eatout_arrival_constant_7_pm_to_7_30_pm -util_eatout_arrival_constant_7_30_pm_to_8_pm,EAT-OUT - Arrival Constant: 7:30 PM to 8:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==34)),coef_eatout_arrival_constant_7_30_pm_to_8_pm -util_eatout_arrival_constant_8_pm_to_8_30_pm,EAT-OUT - Arrival Constant: 8:00 PM to 8:30 PM,@((df.tour_category != 'joint') &(df.tour_type == 'eatout') & (df.end==35)),coef_eatout_arrival_constant_8_pm_to_8_30_pm -util_eatout_arrival_constant_8_30_pm_to_9_pm,EAT-OUT - Arrival Constant: 8:30 PM to 9:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==36)),coef_eatout_arrival_constant_8_30_pm_to_9_pm -util_eatout_arrival_constant_after_9_pm,EAT-OUT - Arrival Constant: After 9:00 PM,@((df.tour_category != 'joint')& (df.tour_type == 'eatout') & (df.end>36)),coef_eatout_arrival_constant_after_9_pm -util_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end>37)), (np.where((df.end<31), np.minimum(31-df.end,24), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear -util_eatout_duration_constant_0_hour,EAT-OUT - Duration Constant: 0 hour,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.duration==0)),coef_eatout_duration_constant_0_hour -util_eatout_duration_constant_30_minutes,EAT-OUT - Duration Constant: 0.5 hour,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration==1)),coef_eatout_duration_constant_30_minutes -util_eatout_duration_constant_1_hour,EAT-OUT - Duration Constant: 1 hour,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration==2)),coef_eatout_duration_constant_1_hour -util_eatout_duration_constant_1_hour_30_minutes,EAT-OUT - Duration Constant: 1.5 hours,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration==3)),coef_eatout_duration_constant_1_hour_30_minutes -util_eatout_duration_constant_2_hours,EAT-OUT - Duration Constant: 2 hours,@((df.tour_category != 'joint')& (df.tour_type == 'eatout') & (df.duration==4)),coef_eatout_duration_constant_2_hours -util_eatout_duration_constant_2_hour_30_minutes_or_more,EAT-OUT - Duration Constant: 2.5 hours or more,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration>4)),coef_eatout_duration_constant_2_hour_30_minutes_or_more -util_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,EAT-OUT - Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration>5)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,11), 0)), 0)",coef_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear -util_eatout_calibration_constant_duration_1,EAT-OUT - Calibration Constant - Duration = 1,@((df.tour_type == 'eatout') & (df.duration==0)),coef_eatout_calibration_constant_duration_1 -util_eatout_calibration_constant_duration_2,EAT-OUT - Calibration Constant - Duration = 2,@((df.tour_type == 'eatout') & (df.duration==1)),coef_eatout_calibration_constant_duration_2 -util_eatout_calibration_constant_duration_3,EAT-OUT - Calibration Constant - Duration = 3,@((df.tour_type== 'eatout') & (df.duration==2)),coef_eatout_calibration_constant_duration_3 -util_eatout_calibration_constant_duration_4,EAT-OUT - Calibration Constant - Duration = 4,@((df.tour_type == 'eatout') & (df.duration==3)),coef_eatout_calibration_constant_duration_4 -util_eatout_calibration_constant_departure_1,EAT-OUT - Calibration Constant - Departure = 1,@((df.tour_type == 'eatout') & (df.start == 1)),coef_eatout_calibration_constant_departure_1 -util_eatout_calibration_constant_departure_2,EAT-OUT - Calibration Constant - Departure = 2,@((df.tour_type == 'eatout') & (df.start == 2)),coef_eatout_calibration_constant_departure_2 -util_eatout_calibration_constant_departure_3,EAT-OUT - Calibration Constant - Departure = 3,@((df.tour_type== 'eatout') & (df.start == 3)),coef_eatout_calibration_constant_departure_3 -util_eatout_calibration_constant_departure_17,EAT-OUT - Calibration Constant - Departure = 17,@((df.tour_type == 'eatout') & (df.start ==17)),coef_eatout_calibration_constant_departure_17 -util_eatout_calibration_constant_departure_18,EAT-OUT - Calibration Constant - Departure = 18,@((df.tour_type== 'eatout') & (df.start ==18)),coef_eatout_calibration_constant_departure_18 -util_eatout_calibration_constant_departure_19,EAT-OUT - Calibration Constant - Departure = 19,@((df.tour_type == 'eatout') & (df.start ==19)),coef_eatout_calibration_constant_departure_19 -util_eatout_calibration_constant_departure_20,EAT-OUT - Calibration Constant - Departure = 20,@((df.tour_type == 'eatout') & (df.start ==20)),coef_eatout_calibration_constant_departure_20 -util_eatout_calibration_constant_departure_21,EAT-OUT - Calibration Constant - Departure = 21,@((df.tour_type == 'eatout') & (df.start ==21)),coef_eatout_calibration_constant_departure_21 -#SOCIAL,#SOCIAL,,#SOCIAL -util_social_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Person< 18 years old: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear -util_social_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Person< 18 years old: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear -util_social_non_working_senior_or_retiree_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Non-working senior/ retiree: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3) & (df.ptype == 5)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_non_working_senior_or_retiree_duration_less_than_1_hr_30_minutes_linear -util_social_retiree_or_non_working_senior_only_HH_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Retiree/ Non-working senior only HH: Duration < 1.5 hrs - Linear,"@np.where(((df.retired_adults_only_hh) & (df.tour_type == 'social') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_retiree_or_non_working_senior_only_HH_duration_less_than_1_hr_30_minutes_linear -util_social_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Zero auto households: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership == 0) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_zero_auto_households_duration_less_than_1_hr_30_minutes_linear -util_social_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Zero auto households: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership == 0) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear -util_social_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Number of auto more than number of adults: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership > 0) &(df.auto_ownership > df.num_adults) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear -util_social_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Number of auto more than number of adults: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear -"# In CTRAMP, although the description below says duration is less than 1 hr, expression is for less than 1.5 hr",,, -util_social_auto_distance_duration_less_than_1_hr_linear,SOCIAL - Auto Distance: Duration < 1 hr - Linear,"@np.where(((df.tour_type == 'social') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_social_auto_distance_duration_less_than_1_hr_linear -util_social_auto_distance_duration_greater_than_1_hr_linear,SOCIAL - Auto Distance: Duration > 1 hr - Linear,"@np.where(((df.tour_type == 'social') & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_social_auto_distance_duration_greater_than_1_hr_linear -util_social_time_pressure_duration_less_than_1_hr,SOCIAL - Time Pressure - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3)), np.minimum(3-df.duration,47), 0)* (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_social_time_pressure_duration_less_than_1_hr -util_social_time_pressure_duration_greater_than_1_hr,SOCIAL - Time Pressure - Duration > 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>3)), np.minimum(df.duration-3,47), 0) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_social_time_pressure_duration_greater_than_1_hr -util_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,SOCIAL - Number of additional individual social and dicretionary tours - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)) * (df.num_add_soc_discr_tours), 0)",coef_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr -util_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@((df.tour_type == 'social') & (df.start<12)) * ((np.minimum(12-df.start,48)*(df.start<12)) + (np.minimum(df.start-48,48)*(df.start>48)))",coef_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear -util_social_departure_constant_before_9_am,SOCIAL - Departure Constant: Before 09:00 AM,@(df.tour_type == 'social') & (df.start<13),coef_social_departure_constant_before_9_am -util_social_departure_constant_9_am_to_9_30_am,SOCIAL - Departure Constant: 09:00 AM to 09:30 AM,@(df.tour_type == 'social') & (df.start==13),coef_social_departure_constant_9_am_to_9_30_am -util_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 05:00 pm - Linear,"@np.where((df.tour_type == 'social') & (df.start<29), (np.where((df.start<29), np.minimum(29-df.start,8), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear -util_social_departure_constant_before_5_30_pm,SOCIAL - Departure Constant: Before 05:30 PM,@((df.tour_type == 'social') & (df.start<30)),coef_social_departure_constant_before_5_30_pm -util_social_departure_constant_5_30_pm_to_6_pm,SOCIAL - Departure Constant: 05:30 PM - 06:00 PM,@((df.tour_type == 'social') & (df.start==30)),coef_social_departure_constant_5_30_pm_to_6_pm -util_social_departure_constant_6_pm_to_6_30_pm,SOCIAL - Departure Constant: 06:00 PM - 06:30 PM,@((df.tour_type == 'social') & (df.start==31)),coef_social_departure_constant_6_pm_to_6_30_pm -util_social_departure_constant_6_30_pm_to_7_pm,SOCIAL - Departure Constant: 06:30 PM - 07:00 PM,@((df.tour_type == 'social') & (df.start==32)),coef_social_departure_constant_6_30_pm_to_7_pm -util_social_departure_constant_7_pm_to_7_30_pm,SOCIAL - Departure Constant: 07:00 PM - 07:30 PM,@((df.tour_type == 'social') & (df.start==33)),coef_social_departure_constant_7_pm_to_7_30_pm -util_social_departure_constant_after_7_30_pm,SOCIAL - Departure Constant: After 07:30 PM,@((df.tour_type == 'social') & (df.start>33)),coef_social_departure_constant_after_7_30_pm -util_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,SOCIAL - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where((df.tour_type == 'social') & (df.start>34), (np.where((df.start<29), np.minimum(29-df.start,8), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear -util_social_arrival_constant_3_pm_to_3_30_pm,SOCIAL - Arrival Constant: 03:00 PM to 03:30 PM,@((df.tour_type == 'social') & (df.end==25)),coef_social_arrival_constant_3_pm_to_3_30_pm -util_social_arrival_constant_3_30_pm_to_4_pm,SOCIAL - Arrival Constant: 03:30 PM to 04:00 PM,@((df.tour_type == 'social') & (df.end==26)),coef_social_arrival_constant_3_30_pm_to_4_pm -util_social_arrival_constant_4_pm_to_4_30_pm,SOCIAL - Arrival Constant: 04:00 PM to 04:30 PM,@((df.tour_type == 'social') & (df.end==27)),coef_social_arrival_constant_4_pm_to_4_30_pm -util_social_arrival_constant_5_pm_to_6_pm,SOCIAL - Arrival Constant: 05:00 PM to 06:00 PM,@((df.tour_type == 'social') & (df.end>=29) & (df.end<=30)),coef_social_arrival_constant_5_pm_to_6_pm -util_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear,SOCIAL - Arrival Constant: Shift for every 30 minutes before 08:00 pm - Linear,"@np.where(((df.tour_type == 'social') & (df.end<35)), (np.where((df.end<35), np.minimum(35-df.end,48), 0) + np.where((df.end>40), np.minimum(df.end-40,48), 0)), 0)",coef_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear -util_social_arrival_constant_before_8_30_pm,SOCIAL - Arrival Constant: Before 8:30 PM,@((df.tour_type == 'social') & (df.end<36)),coef_social_arrival_constant_before_8_30_pm -util_social_arrival_constant_8_30_pm_to_9_pm,SOCIAL - Arrival Constant: 8:30 PM to 9:00 PM,@((df.tour_type == 'social') & (df.end==36)),coef_social_arrival_constant_8_30_pm_to_9_pm -util_social_arrival_constant_9_pm_to_9_30_pm,SOCIAL - Arrival Constant: 9:00 PM to 9:30 PM,@((df.tour_type == 'social') & (df.end==37)),coef_social_arrival_constant_9_pm_to_9_30_pm -util_social_arrival_constant_9_30_pm_to_10_pm,SOCIAL - Arrival Constant: 9:30 PM to10:00 PM,@((df.tour_type == 'social') & (df.end==38)),coef_social_arrival_constant_9_30_pm_to_10_pm -util_social_arrival_constant_10_pm_to_10_30_pm,SOCIAL - Arrival Constant: 10:00 PM to 10:30 PM,@((df.tour_type == 'social') & (df.end==39)),coef_social_arrival_constant_10_pm_to_10_30_pm -util_social_arrival_constant_after_10_30_pm,SOCIAL - Arrival Constant: After 10:30 PM,@((df.tour_type == 'social') & (df.end>39)),coef_social_arrival_constant_after_10_30_pm -util_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear,SOCIAL - Arrival Constant: Shift for every 30 minutes after 11:00 pm - Linear,"@np.where(((df.tour_type == 'social') & (df.end>40)), (np.where((df.end<35), np.minimum(35-df.end,48), 0) +np.where((df.end>40),np.minimum(df.end-40,48),0)), 0)",coef_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear -util_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear,SOCIAL - Duration Constant: Shift for every 30 minutes less than 2.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<5)), (np.where((df.duration<5), np.minimum(5-df.duration,47), 0) + np.where((df.duration>7), np.minimum(df.duration-7,47), 0)), 0)",coef_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear -util_social_duration_constant_less_than_3_hours,SOCIAL - Duration Constant: Less than 3 hrs,@((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<6)),coef_social_duration_constant_less_than_3_hours -util_social_duration_constant_3_hours,SOCIAL - Duration Constant: 3 hours,@((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration==6)),coef_social_duration_constant_3_hours -util_social_duration_constant_3_hrs_30_minutes,SOCIAL - Duration Constant: 3.5 hours,@((df.tour_category != 'joint')& (df.tour_type == 'social') & (df.duration==7)),coef_social_duration_constant_3_hrs_30_minutes -util_social_duration_constant_4_hours_or_more,SOCIAL - Duration Constant: 4 hours or more,@((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>7)),coef_social_duration_constant_4_hours_or_more -util_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear,SOCIAL - Duration Constant: Shift for every 30 minutes more than 4.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>8)), (np.where((df.duration<5), np.minimum(5-df.duration,47), 0) + np.where((df.duration>8), np.minimum(df.duration-8,47), 0)), 0)",coef_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear -util_social_calibration_constant_duration_1,SOCIAL - Calibration Constant - Duration = 1,@((df.tour_type == 'social') & (df.duration ==0)),coef_social_calibration_constant_duration_1 -util_social_calibration_constant_duration_2,SOCIAL - Calibration Constant - Duration = 2,@((df.tour_type == 'social') & (df.duration == 1)),coef_social_calibration_constant_duration_2 -util_social_calibration_constant_duration_3,SOCIAL - Calibration Constant - Duration = 3,@((df.tour_type == 'social') & (df.duration ==2)),coef_social_calibration_constant_duration_3 -util_social_calibration_constant_duration_4,SOCIAL - Calibration Constant - Duration = 4,@((df.tour_type == 'social') & (df.duration ==3)),coef_social_calibration_constant_duration_4 -util_social_calibration_constant_duration_5,SOCIAL - Calibration Constant - Duration = 5,@((df.tour_type == 'social') & (df.duration ==4)),coef_social_calibration_constant_duration_5 -util_social_calibration_constant_duration_6,SOCIAL - Calibration Constant - Duration = 6,@((df.tour_type == 'social') & (df.duration ==5)),coef_social_calibration_constant_duration_6 -util_social_calibration_constant_duration_7,SOCIAL - Calibration Constant - Duration = 7,@((df.tour_type == 'social') & (df.duration ==6)),coef_social_calibration_constant_duration_7 -util_social_calibration_constant_duration_8,SOCIAL - Calibration Constant - Duration = 8,@((df.tour_type == 'social') & (df.duration ==7)),coef_social_calibration_constant_duration_8 -util_social_calibration_constant_duration_9,SOCIAL - Calibration Constant - Duration = 9,@((df.tour_type == 'social') & (df.duration ==8)),coef_social_calibration_constant_duration_9 -#DISCRETIONARY,#DISCRETIONARY,,#DISCRETIONARY -util_discretionary_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Person< 18 years old: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear -util_discretionary_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Person< 18 years old: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear -util_discretionary_non_working_senior_retiree_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Non-working senior/ retiree: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3) & (df.ptype == 5)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_non_working_senior_retiree_duration_less_than_1_hr_30_minutes_linear -util_discretionary_retiree_non_working_senior_only_HH_duration_1_hr_30_minutes_linear,DISCRETIONARY - Retiree/ Non-working senior only HH: Duration < 1.5 hrs - Linear,"@np.where(((df.retired_adults_only_hh) & (df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_retiree_non_working_senior_only_HH_duration_1_hr_30_minutes_linear -util_discretionary_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Zero auto households: Duration < 1.5 hrs - Linear,"@np.where(((df.auto_ownership == 0) & (df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_zero_auto_households_duration_less_than_1_hr_30_minutes_linear -util_discretionary_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Zero auto households: Duration > 1.5 hrs - Linear,"@np.where(((df.auto_ownership == 0) & (df.tour_type == 'othdiscr') & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear -util_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Number of auto more that number of adults: Duration < 1.5 hrs - Linear,"@np.where(((df.auto_ownership > 0) & (df.tour_type == 'othdiscr') & (df.auto_ownership > df.num_adults) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)),0)",coef_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear -util_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Number of auto more that number of adults: Duration > 1.5 hrs - Linear,"@np.where(((df.auto_ownership > 0) &(df.tour_type == 'othdiscr')&(df.auto_ownership > df.num_adults) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear -"# In CTRAMP, although the description below says duration is less than 1 hr, expression is for less than 1.5 hr",,, -util_discretionary_auto_distance_duration_less_than_1_hr_linear,DISCRETIONARY - Auto Distance: Duration < 1 hr - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_discretionary_auto_distance_duration_less_than_1_hr_linear -util_discretionary_auto_distance_duration_greater_than_1_hr_linear,DISCRETIONARY - Auto Distance: Duration > 1 hr - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_discretionary_auto_distance_duration_greater_than_1_hr_linear -util_discretionary_time_pressure_duration_less_than_1_hr,DISCRETIONARY - Time Pressure - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3)), np.minimum(3-df.duration,47), 0) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_discretionary_time_pressure_duration_less_than_1_hr -util_discretionary_time_pressure_duration_greater_than_1_hr,DISCRETIONARY - Time Pressure - Duration > 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3)), np.minimum(df.duration-3,47) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_discretionary_time_pressure_duration_greater_than_1_hr -util_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,DISCRETIONARY - Number of additional individual social and dicretionary tours - Duration < 1 hr,"@np.where(((df.tour_category != 'joint')&(df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0))*(df.num_add_soc_discr_tours),0)",coef_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr -util_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 07:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.start<9)), (np.where((df.start<9), np.minimum(9-df.start,48), 0) + np.where((df.start>48), np.minimum(df.start-48,48),0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear -util_discretionary_departure_constant_before_7_30_am,DISCRETIONARY - Departure Constant: Before 7:30 AM ,@((df.tour_type == 'othdiscr') & (df.start<10)),coef_discretionary_departure_constant_before_7_30_am -util_discretionary_departure_constant_7_30_am_to_8_am,DISCRETIONARY - Departure Constant: 7:30 AM to 8:00 AM,@((df.tour_type == 'othdiscr') & (df.start==10)),coef_discretionary_departure_constant_7_30_am_to_8_am -util_discretionary_departure_constant_8_am_to_8_30_am,DISCRETIONARY - Departure Constant: 8:00 AM to 8:30 AM,@((df.tour_type == 'othdiscr') & (df.start==11)),coef_discretionary_departure_constant_8_am_to_8_30_am -util_discretionary_departure_constant_8_30_am_to_9_am,DISCRETIONARY - Departure Constant: 8:30 AM to 9:00 AM,@((df.tour_type == 'othdiscr') & (df.start==12)),coef_discretionary_departure_constant_8_30_am_to_9_am -util_discretionary_departure_constant_9_am_to_9_30_am,DISCRETIONARY - Departure Constant: 9:00 AM to 9:30 AM,@((df.tour_type == 'othdiscr') & (df.start==13)),coef_discretionary_departure_constant_9_am_to_9_30_am -util_discretionary_departure_constant_9_30_am_to_10_am,DISCRETIONARY - Departure Constant: 9:30 AM to 10:00 AM,@((df.tour_type == 'othdiscr') & (df.start==14)),coef_discretionary_departure_constant_9_30_am_to_10_am -util_discretionary_departure_constant_10_am_to_10_30_am,DISCRETIONARY - Departure Constant: 10:00 AM to 10:30 AM,@((df.tour_type == 'othdiscr') & (df.start==15)),coef_discretionary_departure_constant_10_am_to_10_30_am -util_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 04:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.start<28)), (np.where((df.start<28), np.minimum(28-df.start,8),0) + np.where((df.start>33), np.minimum(df.start-33,6), 0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear -util_discretionary_departure_constant_before_5_pm,DISCRETIONARY - Departure Constant: Before 05:00 PM,@((df.tour_type == 'othdiscr') & (df.start<29)),coef_discretionary_departure_constant_before_5_pm -util_discretionary_departure_constant_5_pm_to_5_30_pm,DISCRETIONARY - Departure Constant: 05:00 PM - 05:30 PM,@((df.tour_type == 'othdiscr') & (df.start==29)),coef_discretionary_departure_constant_5_pm_to_5_30_pm -util_discretionary_departure_constant_5_30_pm_to_6_pm,DISCRETIONARY - Departure Constant: 05:30 PM - 06:00 PM,@((df.tour_type == 'othdiscr') & (df.start==30)),coef_discretionary_departure_constant_5_30_pm_to_6_pm -util_discretionary_departure_constant_6_pm_to_6_30_pm,DISCRETIONARY - Departure Constant: 06:00 PM - 06:30 PM,@((df.tour_type == 'othdiscr') & (df.start==31)),coef_discretionary_departure_constant_6_pm_to_6_30_pm -util_discretionary_departure_constant_6_30_pm_to_7_pm,DISCRETIONARY - Departure Constant: 06:30 PM - 07:00 PM,@((df.tour_type == 'othdiscr') & (df.start==32)),coef_discretionary_departure_constant_6_30_pm_to_7_pm -util_discretionary_departure_constant_after_7_pm,DISCRETIONARY - Departure Constant: After 07:00 PM,@((df.tour_type == 'othdiscr') & (df.start>32)),coef_discretionary_departure_constant_after_7_pm -util_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes after 07:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.start>33)), (np.where((df.start<28), np.minimum(28-df.start,8), 0) + np.where((df.start>33), np.minimum(df.start-33,6), 0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear -util_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes before 06:00 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.end<31)), (np.where((df.end<31), np.minimum(31-df.end,48), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear -util_discretionary_arrival_constant_before_6_30_pm,DISCRETIONARY - Arrival Constant: Before 6:30 PM,@((df.tour_type == 'othdiscr') & (df.end<32)),coef_discretionary_arrival_constant_before_6_30_pm -util_discretionary_arrival_constant_6_30_pm_to_7_pm,DISCRETIONARY - Arrival Constant: 6:30 PM to 7:00 PM,@((df.tour_type == 'othdiscr') & (df.end==32)),coef_discretionary_arrival_constant_6_30_pm_to_7_pm -util_discretionary_arrival_constant_7_pm_to_7_30_pm,DISCRETIONARY - Arrival Constant: 7:00 PM to 7:30 PM,@((df.tour_type == 'othdiscr') & (df.end==33)),coef_discretionary_arrival_constant_7_pm_to_7_30_pm -util_discretionary_arrival_constant_7_30_pm_to_8_pm,DISCRETIONARY - Arrival Constant: 7:30 PM to 8:00 PM,@((df.tour_type == 'othdiscr') & (df.end==34)),coef_discretionary_arrival_constant_7_30_pm_to_8_pm -util_discretionary_arrival_constant_8_pm_to_8_30_pm,DISCRETIONARY - Arrival Constant: 8:00 PM to 8:30 PM,@((df.tour_type == 'othdiscr') & (df.end==35)),coef_discretionary_arrival_constant_8_pm_to_8_30_pm -util_discretionary_arrival_constant_8_30_pm_to_9_pm,DISCRETIONARY - Arrival Constant: 8:30 PM to 9:00 PM,@((df.tour_type == 'othdiscr') & (df.end==36)),coef_discretionary_arrival_constant_8_30_pm_to_9_pm -util_discretionary_arrival_constant_after_9_pm,DISCRETIONARY - Arrival Constant: After 9:00 PM,@((df.tour_type == 'othdiscr') & (df.end>36)),coef_discretionary_arrival_constant_after_9_pm -util_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.end>37)), (np.where((df.end<31), np.minimum(31-df.end,48), 0) + np.where((df.end>37), np.minimum(df.end-37,48),0)), 0)",coef_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear -util_discretionary_duration_constant_0_hour,DISCRETIONARY - Duration Constant: 0 hour,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==0)),coef_discretionary_duration_constant_0_hour -util_discretionary_duration_constant_30_minutes,DISCRETIONARY -Duration Constant: 0.5 hour,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==1)),coef_discretionary_duration_constant_30_minutes -util_discretionary_duration_constant_1_hour,DISCRETIONARY -Duration Constant: 1 hour,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==2)),coef_discretionary_duration_constant_1_hour -util_discretionary_duration_constant_1_hr_30_minutes,DISCRETIONARY -Duration Constant: 1.5 hours,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==3)),coef_discretionary_duration_constant_1_hr_30_minutes -util_discretionary_duration_constant_2_hours,DISCRETIONARY -Duration Constant: 2 hours,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==4)),coef_discretionary_duration_constant_2_hours -util_discretionary_duration_constant_2_hr_30_minutes,DISCRETIONARY -Duration Constant: 2.5 hours,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==5)),coef_discretionary_duration_constant_2_hr_30_minutes -util_discretionary_duration_constant_3_hours_or_more,DISCRETIONARY -Duration Constant: 3 hours or more,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>5)),coef_discretionary_duration_constant_3_hours_or_more -util_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,DISCRETIONARY -Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>6)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>6), np.minimum(df.duration-6,47), 0)), 0)",coef_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear -util_discretionary_calibration_constant_duration_4,DISCRETIONARY -Calibration Constant - Duration = 4,@((df.tour_type == 'othdiscr') & (df.duration==3)),coef_discretionary_calibration_constant_duration_4 -util_discretionary_calibration_constant_duration_5,DISCRETIONARY -Calibration Constant - Duration = 5,@((df.tour_type == 'othdiscr') & (df.duration==4)),coef_discretionary_calibration_constant_duration_5 -util_discretionary_calibration_constant_departure_29,DISCRETIONARY -Calibration Constant - Departure = 29,@((df.tour_type == 'othdiscr') & (df.start==29)),coef_discretionary_calibration_constant_departure_29 -util_discretionary_calibration_constant_departure_30,DISCRETIONARY -Calibration Constant - Departure = 30,@((df.tour_type == 'othdiscr') & (df.start==30)),coef_discretionary_calibration_constant_departure_30 -util_discretionary_calibration_constant_departure_31,DISCRETIONARY -Calibration Constant - Departure = 31,@((df.tour_type == 'othdiscr') & (df.start==31)),coef_discretionary_calibration_constant_departure_31 -util_discretionary_calibration_constant_departure_32,DISCRETIONARY -Calibration Constant - Departure = 32,@((df.tour_type == 'othdiscr') & (df.start==32)),coef_discretionary_calibration_constant_departure_32 diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_coeffs.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_coeffs.csv deleted file mode 100755 index 42cb13d76..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_coeffs.csv +++ /dev/null @@ -1,337 +0,0 @@ -coefficient_name,value,constrain -coef_escort_mode_choice_logsum,1.173173034,F -coef_escort_distance_to_destination_duration_less_than_30_minutes,-0.335017673,F -coef_escort_distance_to_destination_duration_greater_than_30_minutes,0.005298165,F -coef_escort_fulltime_worker_departure_after_8_am_linear,-0.037980109,F -coef_escort_fulltime_worker_departure_after_3_am_linear,0.163254125,F -coef_escort_fulltime_worker_duration_less_than_30_minutes,-0.275077482,F -coef_escort_fulltime_worker_duration_greater_than_30_minutes,0.051530545,F -coef_escort_university_student_duration_less_than_30_minutes,-0.426802718,F -coef_escort_non_driving_age_student_duration_greater_than_30_minutes,0.240582361,F -coef_escort_driving_age_student_duration_less_than_30_minutes,-0.554146191,F -coef_escort_driving_age_student_duration_greater_than_30_minutes,0.299387708,F -coef_escort_pre_school_kid_duration_greater_than_30_minutes,0.195482563,F -coef_escort_med_high_income_duration_greater_than_30_minutes,-0.029281467,F -coef_escort_households_with_no_kids_departure_before_7_30_am,0.589083327,F -coef_escort_households_with_no_kids_departure_after_8_00_am,0.086690827,F -coef_escort_households_with_no_kids_departure_before_2_30_pm,0.477582648,F -coef_escort_households_with_no_kids_departure_after_3_00_pm,-0.204065502,F -coef_escort_households_with_no_kids_arrival_before_8_am,-0.360039254,F -coef_escort_households_with_no_kids_arrival_after_8_30_am,0.091614107,F -coef_escort_households_with_no_kids_arrival_before_3_pm,0.432854268,F -coef_escort_households_with_no_kids_arrival_after_3_30_pm,0.131037275,F -coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am,0.109700265,F -coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm,-0.224568648,F -coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am,-0.357416434,F -coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm,0.629285298,F -coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am,0.039005148,F -coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am,-0.06556611,F -coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm,0.117680977,F -coef_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes,-0.057322708,F -coef_escort_number_of_individual_tours_duration_greater_than_30_minutes,-0.062899692,F -coef_escort_number_of_joint_tours_duration_greater_than_30_minutes,-0.048533895,F -coef_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear,-1.469240002,F -coef_escort_departure_constant_before_7_am,-2.070292862,F -coef_escort_departure_constant_7_am_to_7_30_am,-0.642734296,F -coef_escort_departure_constant_7_30_am_to_8_am,0,T -coef_escort_departure_constant_8_am_to_8_30_am,-0.214617667,F -coef_escort_departure_constant_8_30_am_to_9_am,-0.147266606,F -coef_escort_departure_constant_after_9_am,-1.356686422,F -coef_escort_departure_constant_1_30_pm_to_2_pm,0.368092381,F -coef_escort_departure_constant_2_pm_to_2_30_pm,1.166803383,F -coef_escort_departure_constant_2_30_pm_to_3_pm,1.28466083,F -coef_escort_departure_constant_3_pm_to_3_30_pm,0.581891245,F -coef_escort_departure_constant_after_3_30_pm,0.834510243,F -coef_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear,0.175257649,F -coef_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear,-0.019161202,F -coef_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear,0.44978138,F -coef_escort_arrival_constant_before_7_am,0.549584585,F -coef_escort_arrival_constant_7_am_to_7_30_am,0.488181278,F -coef_escort_arrival_constant_7_30_am_to_8_am,0.236447651,F -coef_escort_arrival_constant_8_am_to_8_30_am,0,T -coef_escort_arrival_constant_8_30_am_to_9_am,-0.683756801,F -coef_escort_arrival_constant_after_9_am,-1.428888485,F -coef_escort_arrival_constant_2_30_pm_to_3_pm,1.311480662,F -coef_escort_arrival_constant_3_pm_to_3_30_pm,1.316883154,F -coef_escort_arrival_constant_3_30_pm_to_4_pm,1.396838392,F -coef_escort_arrival_constant_4_pm_to_4_30_pm,1.03146139,F -coef_escort_arrival_constant_after_4_30_pm,0.907344583,F -coef_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear,-0.148408887,F -coef_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,-0.389082896,F -coef_escort_duration_constant_0_hour,-0.173757322,F -coef_escort_duration_constant_30_minutes,0,T -coef_escort_duration_constant_1_hour,-0.431287743,F -coef_escort_duration_constant_1_hour_30_minutes,-0.700473959,F -coef_escort_duration_constant_2_hours,-1.071871358,F -coef_escort_duration_constant_longer_than_2_hours,-1.691098421,F -coef_escort_calibration_constant_duration_1,-0.047200214,F -coef_escort_calibration_constant_duration_2,0.035611332,F -coef_escort_calibration_constant_departure_9,0.106814756,F -coef_escort_calibration_constant_departure_10,0.215386864,F -coef_escort_calibration_constant_departure_23,-0.255087318,F -coef_escort_calibration_constant_departure_24,-0.296870428,F -coef_shoppping_driving_age_student_duration_greater_than_1_hour_30_minutes,0.122149101,F -coef_shoppping_full_time_worker_duration_greater_than_1_hour_30_minutes,-0.037886459,F -coef_shoppping_non_driving_student_duration_greater_than_1_hour_30_minutes,0.10247157,F -coef_shoppping_pre_school_child_duration_less_than_1_hour_30_minutes,-1.882944033,F -coef_shoppping_part_time_worker_duration_less_than_1_hour_30_minutes,-0.197455071,F -coef_shopping_part_time_worker_duration_greater_than_1_hour_30_minutes,-0.045152663,F -coef_shopping_retired_duration_less_than_1_hour_30_minutes,-0.264728908,F -coef_shopping_retired_duration_greater_than_1_hour_30_minutes,-0.042981757,F -coef_shopping_university_student_duration_greater_than_1_hour_30_minutes,0.045926523,F -coef_shopping_female_duration_less_than_1_hour_30_minutes,-0.417208254,F -coef_shopping_female_duration_greater_than_1_hour_30_minutes,0.045801918,F -coef_shopping_low_income_duration_greater_than_1_hour_30_minutes,0.040776383,F -coef_shopping_medium_income_duration_less_than_1_hour_30_minutes,0.108462927,F -coef_shopping_medium_high_income_duration_greater_than_1_hour_30_minutes,-0.037893416,F -coef_shopping_distance_duration_less_than_1_hour_30_minutes,-0.214802537,F -coef_shopping_distance_duration_greater_than_1_hour_30_minutes,0.007991656,F -coef_shopping_time_pressure_duration_greater_than_1_hour_30_minutes,0.013503327,F -coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,0.078844289,F -coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,-0.115431492,F -coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,-0.959875456,F -coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root,1.112594898,F -coef_shopping_departure_constant_before_9_am,-0.446394064,F -coef_shopping_departure_constant_9_am_to_9_30_am,-0.021669265,F -coef_shopping_departure_constant_9_30_am_to_10_am,-0.282978638,F -coef_shopping_departure_constant_10_am_to_10_30_am,0,T -coef_shopping_departure_constant_10_30_am_to_11_00_am,-0.309421311,F -coef_shopping_departure_constant_after_11_am,-0.541073357,F -coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,-0.072013428,F -coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,-0.000653398,F -coef_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear,-0.18376635,F -coef_shopping_arrival_constant_before_12_30_pm,-0.716195343,F -coef_shopping_arrival_constant_12_30_pm_to_3_pm,-0.502714001,F -coef_shopping_arrival_constant_3_pm_to_3_30_pm,-0.167868872,F -coef_shopping_arrival_constant_3_30_pm_to_4_pm,-0.156786941,F -coef_shopping_arrival_constant_4_pm_to_4_30_pm,0,T -coef_shopping_arrival_constant_4_30_pm_to_5_pm,-0.057314044,F -coef_shopping_arrival_constant_5_pm_to_5_30_pm,-0.580040851,F -coef_shopping_arrival_constant_5_30_pm_to_7_pm,-0.32239566,F -coef_shopping_arrival_constant_7_pm_to_9_30_pm,-0.347828147,F -coef_shopping_arrival_constant_after_9_30_pm,-1.123574723,F -coef_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear,-0.499770654,F -coef_shopping_duration_constant_0_hr,-0.131743185,F -coef_shopping_duration_constant_30_minutes,0.888857137,F -coef_shopping_duration_constant_1_hr,0,T -coef_shopping_duration_constant_1_hour_30_minutes,-0.333413031,F -coef_shopping_duration_constant_2_hrs,-0.850897912,F -coef_shopping_duration_constant_longer_than_2_hrs,-1.203783479,F -coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear,-0.293581223,F -coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root,-0.215759138,F -coef_shopping_calibration_constant_duration_1,-0.138450424,F -coef_shopping_calibration_constant_duration_2,-0.092704403,F -coef_shopping_calibration_constant_duration_3,-0.087738073,F -coef_maintenance_driving_age_student_duration_greater_than_1_hour_30_minutes,0.122149101,F -coef_maintenance_full_time_worker_duration_greater_than_1_hour_30_minutes,-0.037886459,F -coef_maintenance_non_driving_student_duration_greater_than_1_hour_30_minutes,0.10247157,F -coef_maintenance_pre_school_child_duration_less_than_1_hour_30_minutes,-1.882944033,F -coef_maintenance_part_time_worker_duration_less_than_1_hour_30_minutes,-0.197455071,F -coef_maintenance_part_time_worker_duration_greater_than_1_hour_30_minutes,-0.045152663,F -coef_maintenance_retired_duration_less_than_1_hour_30_minutes,-0.264728908,F -coef_maintenance_retired_duration_greater_than_1_hour_30_minutes,-0.042981757,F -coef_maintenance_university_student_duration_greater_than_1_hour_30_minutes,0.045926523,F -coef_maintenance_female_duration_less_than_1_hour_30_minutes,-0.417208254,F -coef_maintenance_female_duration_greater_than_1_hour_30_minutes,0.045801918,F -coef_maintenance_low_income_duration_greater_than_1_hour_30_minutes,0.040776383,F -coef_maintenance_medium_income_duration_less_than_1_hour_30_minutes,0.108462927,F -coef_maintenance_medium_income_duration_greater_than_1_hour_30_minutes,0,T -coef_maintenance_medium_high_income_duration_greater_than_1_hour_30_minutes,-0.037893416,F -coef_maintenance_distance_duration_less_than_1_hour_30_minutes,-0.214802537,F -coef_maintenance_distance_duration_greater_than_1_hour_30_minutes,0.007991656,F -coef_maintenance_time_pressure_duration_greater_than_1_hour_30_minutes,0.013503327,F -coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,0.078844289,F -coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,-0.115431492,F -coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear,-0.864112609,F -coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root,0.504598473,F -coef_maintenance_departure_constant_before_8_am,-0.383711788,F -coef_maintenance_departure_constant_8_am_to_8_30_am,-0.076771517,F -coef_maintenance_departure_constant_8_30_am_to_9_00_am,-0.169259979,F -coef_maintenance_departure_constant_9_am_to_9_30_am,-0.051785379,F -coef_maintenance_departure_constant_9_30_am_to_10_am,-0.214942451,F -coef_maintenance_departure_constant_10_am_to_10_30_am,0,T -coef_maintenance_departure_constant_10_30_am_to_11_am,-0.427568963,F -coef_maintenance_departure_constant_after_11_am,-0.520863411,F -coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,0.042879095,F -coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,-0.003157293,F -coef_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear,-0.226803619,F -coef_maintenance_arrival_constant_before_10_30_am,-0.223212258,F -coef_maintenance_arrival_constant_10_30_am_to_11_am,0,T -coef_maintenance_arrival_constant_11_am_to_11_30_am,-0.128382637,F -coef_maintenance_arrival_constant_11_30_am_to_1_30_pm,0.167977332,F -coef_maintenance_arrival_constant_1_30_pm_to_2_30_pm,-0.149495878,F -coef_maintenance_arrival_constant_2_30_pm_to_4_pm,0.087679934,F -coef_maintenance_arrival_constant_4_pm_to_4_30_pm,0.121707557,F -coef_maintenance_arrival_constant_after_4_30_pm,0.106745013,F -coef_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,-0.232610927,F -coef_maintenance_duration_constant_0_hr,-0.483549396,F -coef_maintenance_duration_constant_30_minutes,0,T -coef_maintenance_duration_constant_longer_than_30_minutes,-1.450618319,F -coef_maintenance_duration_constant_duration_greater_than_1_hr_linear,-0.275082922,F -coef_maintenance_duration_constant_duration_greater_than_1_hr_square_root,0.208434683,F -coef_maintenance_calibration_constant_duration_1,-0.124602605,F -coef_maintenance_calibration_constant_duration_2,-0.103637715,F -coef_maintenance_calibration_constant_duration_3,-0.225442145,F -coef_maintenance_calibration_constant_duration_4,-0.145273012,F -coef_maintenance_calibration_constant_duration_5,-0.019241539,F -coef_eatout_distance_to_destination_duration_less_than_1_hr,-0.134981987,F -coef_eatout_distance_to_destination_duration_greater_than_1_hr,0.017860742,F -coef_eatout_low_income_duration_less_than_1_hr,1.002485807,F -coef_eatout_medium_income_duration_less_than_1_hr,0.499822018,F -coef_eatout_zeroauto_HH_duration_greater_than_1_hr,0.259409942,F -coef_eatout_university_student_departure_after_7_pm_linear,0.293827759,F -coef_eatout_female_duration_less_than_1_hr,-0.399414247,F -coef_eatout_female_duration_greater_than_1_hr,0.064593482,F -coef_eatout_time_pressure_departure_before_6_30_pm,0.083673557,F -coef_eatout_time_pressure_duration_less_than_1_hr,1.69632588,F -coef_eatout_departure_constant_7_30_am_to_9_am,1.222417262,F -coef_eatout_departure_constant_10_30_am_to_11_am,0.519559134,F -coef_eatout_departure_constant_11_am_to_11_30_am,1.191543552,F -coef_eatout_departure_constant_11_30_am_to_12_pm,1.66870995,F -coef_eatout_departure_constant_12_pm_to_12_30_pm,1.164106986,F -coef_eatout_departure_constant_12_30_pm_to_1_pm,1.057346496,F -coef_eatout_departure_constant_1_pm_to_1_30_pm,0.728959087,F -coef_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear,-0.477439748,F -coef_eatout_departure_constant_before_6_pm,-1.21554671,F -coef_eatout_departure_constant_6_pm_to_6_30_pm,-0.425984037,F -coef_eatout_departure_constant_6_30_pm_to_7_pm,0,T -coef_eatout_departure_constant_7_pm_to_7_30_pm,-0.227800647,F -coef_eatout_departure_constant_after_7_30_pm,-0.293904097,F -coef_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,-0.55440861,F -coef_eatout_arrival_constant_9_30_am_to_11_am,0.486337344,F -coef_eatout_arrival_constant_12_30_pm_to_1_pm,0.629299404,F -coef_eatout_arrival_constant_1_pm_to_1_30_pm,0.938528731,F -coef_eatout_arrival_constant_1_30_pm_to_2_pm,0.584420106,F -coef_eatout_arrival_constant_2_pm_to_2_30_pm,0.842550215,F -coef_eatout_arrival_constant_2_30_pm_to_3_pm,0.298486505,F -coef_eatout_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,0.125034982,F -coef_eatout_arrival_constant_before_6_30_pm,-0.029062996,F -coef_eatout_arrival_constant_6_30_pm_to_7_pm,-0.509075598,F -coef_eatout_arrival_constant_7_pm_to_7_30_pm,-0.124885931,F -coef_eatout_arrival_constant_7_30_pm_to_8_pm,-0.605455664,F -coef_eatout_arrival_constant_8_pm_to_8_30_pm,0,T -coef_eatout_arrival_constant_8_30_pm_to_9_pm,-0.657382835,F -coef_eatout_arrival_constant_after_9_pm,-0.813629712,F -coef_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,-0.204722406,F -coef_eatout_duration_constant_0_hour,-11.72660422,F -coef_eatout_duration_constant_30_minutes,-5.08873115,F -coef_eatout_duration_constant_1_hour,-0.125521065,F -coef_eatout_duration_constant_1_hour_30_minutes,0,T -coef_eatout_duration_constant_2_hours,-0.124807752,F -coef_eatout_duration_constant_2_hour_30_minutes_or_more,-0.156019835,F -coef_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,-0.3357414,F -coef_eatout_calibration_constant_duration_1,-0.333697861,F -coef_eatout_calibration_constant_duration_2,-0.245716,F -coef_eatout_calibration_constant_duration_3,0.052708833,F -coef_eatout_calibration_constant_duration_4,0.041571499,F -coef_eatout_calibration_constant_departure_1,-10,F -coef_eatout_calibration_constant_departure_2,-10,F -coef_eatout_calibration_constant_departure_3,-10,F -coef_eatout_calibration_constant_departure_17,0.706568704,F -coef_eatout_calibration_constant_departure_18,0.634353544,F -coef_eatout_calibration_constant_departure_19,0.584387268,F -coef_eatout_calibration_constant_departure_20,0.469777884,F -coef_eatout_calibration_constant_departure_21,0.39548931,F -coef_social_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,-0.262839914,F -coef_social_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,0.086919429,F -coef_social_non_working_senior_or_retiree_duration_less_than_1_hr_30_minutes_linear,0.468354376,F -coef_social_retiree_or_non_working_senior_only_HH_duration_less_than_1_hr_30_minutes_linear,-0.312282762,F -coef_social_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,-0.508439932,F -coef_social_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,0.074190914,F -coef_social_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,0.127185965,F -coef_social_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,0.048756122,F -coef_social_auto_distance_duration_less_than_1_hr_linear,-0.162965435,F -coef_social_auto_distance_duration_greater_than_1_hr_linear,0.006797399,F -coef_social_time_pressure_duration_less_than_1_hr,-0.229264474,F -coef_social_time_pressure_duration_greater_than_1_hr,0.219325112,F -coef_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,0.156250451,F -coef_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,-0.529943196,F -coef_social_departure_constant_before_9_am,-0.198438086,F -coef_social_departure_constant_9_am_to_9_30_am,0.137620628,F -coef_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear,-0.142078961,F -coef_social_departure_constant_before_5_30_pm,-0.390965052,F -coef_social_departure_constant_5_30_pm_to_6_pm,-0.453580491,F -coef_social_departure_constant_6_pm_to_6_30_pm,0,T -coef_social_departure_constant_6_30_pm_to_7_pm,-0.088537991,F -coef_social_departure_constant_7_pm_to_7_30_pm,0.052983115,F -coef_social_departure_constant_after_7_30_pm,-0.649629162,F -coef_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,-0.09574499,F -coef_social_arrival_constant_3_pm_to_3_30_pm,0.37674882,F -coef_social_arrival_constant_3_30_pm_to_4_pm,0.583355461,F -coef_social_arrival_constant_4_pm_to_4_30_pm,0.727855233,F -coef_social_arrival_constant_5_pm_to_6_pm,0.249551955,F -coef_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear,0.053771388,F -coef_social_arrival_constant_before_8_30_pm,0.308763611,F -coef_social_arrival_constant_8_30_pm_to_9_pm,-0.208797698,F -coef_social_arrival_constant_9_pm_to_9_30_pm,-0.336319511,F -coef_social_arrival_constant_9_30_pm_to_10_pm,0,T -coef_social_arrival_constant_10_pm_to_10_30_pm,-0.055707591,F -coef_social_arrival_constant_after_10_30_pm,-0.612356296,F -coef_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear,-0.348479901,F -coef_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear,0.614440191,F -coef_social_duration_constant_less_than_3_hours,0.353666691,F -coef_social_duration_constant_3_hours,0,T -coef_social_duration_constant_3_hrs_30_minutes,-0.691218836,F -coef_social_duration_constant_4_hours_or_more,-1.344375328,F -coef_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear,-0.786970714,F -coef_social_calibration_constant_duration_1,-1.346772472,F -coef_social_calibration_constant_duration_2,0.377121689,F -coef_social_calibration_constant_duration_3,0.179818928,F -coef_social_calibration_constant_duration_4,-0.283418619,F -coef_social_calibration_constant_duration_5,-0.103541313,F -coef_social_calibration_constant_duration_6,-0.03704707,F -coef_social_calibration_constant_duration_7,-0.062437167,F -coef_social_calibration_constant_duration_8,0.047640282,F -coef_social_calibration_constant_duration_9,0.284369793,F -coef_discretionary_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,-0.262839914,F -coef_discretionary_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,0.086919429,F -coef_discretionary_non_working_senior_retiree_duration_less_than_1_hr_30_minutes_linear,0.468354376,F -coef_discretionary_retiree_non_working_senior_only_HH_duration_1_hr_30_minutes_linear,-0.312282762,F -coef_discretionary_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,-0.508439932,F -coef_discretionary_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,0.074190914,F -coef_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,0.127185965,F -coef_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,0.048756122,F -coef_discretionary_auto_distance_duration_less_than_1_hr_linear,-0.162965435,F -coef_discretionary_auto_distance_duration_greater_than_1_hr_linear,0.006797399,F -coef_discretionary_time_pressure_duration_less_than_1_hr,-0.229264474,F -coef_discretionary_time_pressure_duration_greater_than_1_hr,0.219325112,F -coef_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,0.156250451,F -coef_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear,-0.742176805,F -coef_discretionary_departure_constant_before_7_30_am,-1.323901585,F -coef_discretionary_departure_constant_7_30_am_to_8_am,-0.695441631,F -coef_discretionary_departure_constant_8_am_to_8_30_am,-0.269903336,F -coef_discretionary_departure_constant_8_30_am_to_9_am,-0.093709211,F -coef_discretionary_departure_constant_9_am_to_9_30_am,0.265634082,F -coef_discretionary_departure_constant_9_30_am_to_10_am,0.287521134,F -coef_discretionary_departure_constant_10_am_to_10_30_am,0.396547817,F -coef_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear,-0.245885745,F -coef_discretionary_departure_constant_before_5_pm,-1.344482349,F -coef_discretionary_departure_constant_5_pm_to_5_30_pm,-0.622632748,F -coef_discretionary_departure_constant_5_30_pm_to_6_pm,-0.456718676,F -coef_discretionary_departure_constant_6_pm_to_6_30_pm,-0.206896106,F -coef_discretionary_departure_constant_6_30_pm_to_7_pm,0,T -coef_discretionary_departure_constant_after_7_pm,-0.46439343,F -coef_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear,-0.291998986,F -coef_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,0.148649188,F -coef_discretionary_arrival_constant_before_6_30_pm,0.668775963,F -coef_discretionary_arrival_constant_6_30_pm_to_7_pm,-0.053520826,F -coef_discretionary_arrival_constant_7_pm_to_7_30_pm,0.099726391,F -coef_discretionary_arrival_constant_7_30_pm_to_8_pm,0.063414092,F -coef_discretionary_arrival_constant_8_pm_to_8_30_pm,0,T -coef_discretionary_arrival_constant_8_30_pm_to_9_pm,-0.18610847,F -coef_discretionary_arrival_constant_after_9_pm,-0.423207857,F -coef_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,-0.525545923,F -coef_discretionary_duration_constant_0_hour,0.436988282,F -coef_discretionary_duration_constant_30_minutes,1.35967577,F -coef_discretionary_duration_constant_1_hour,1.692672999,F -coef_discretionary_duration_constant_1_hr_30_minutes,1.118932964,F -coef_discretionary_duration_constant_2_hours,0.771255733,F -coef_discretionary_duration_constant_2_hr_30_minutes,0,T -coef_discretionary_duration_constant_3_hours_or_more,-0.631242175,F -coef_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,-0.700935645,F -coef_discretionary_calibration_constant_duration_4,-0.132674257,F -coef_discretionary_calibration_constant_duration_5,-0.013371871,F -coef_discretionary_calibration_constant_departure_29,0.232927977,F -coef_discretionary_calibration_constant_departure_30,0.306104612,F -coef_discretionary_calibration_constant_departure_31,0.285520678,F -coef_discretionary_calibration_constant_departure_32,0.115886631,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_eatout_coefficients.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_eatout_coefficients.csv deleted file mode 100644 index d94961976..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_eatout_coefficients.csv +++ /dev/null @@ -1,59 +0,0 @@ -coefficient_name,value,constrain -coef_eatout_distance_to_destination_duration_less_than_1_hr,-0.134981987,F -coef_eatout_distance_to_destination_duration_greater_than_1_hr,0.017860742,F -coef_eatout_low_income_duration_less_than_1_hr,1.002485807,F -coef_eatout_medium_income_duration_less_than_1_hr,0.499822018,F -coef_eatout_zeroauto_HH_duration_greater_than_1_hr,0.259409942,F -coef_eatout_university_student_departure_after_7_pm_linear,0.293827759,F -coef_eatout_female_duration_less_than_1_hr,-0.399414247,F -coef_eatout_female_duration_greater_than_1_hr,0.064593482,F -coef_eatout_time_pressure_departure_before_6_30_pm,0.083673557,F -coef_eatout_time_pressure_duration_less_than_1_hr,1.69632588,F -coef_eatout_departure_constant_7_30_am_to_9_am,1.222417262,F -coef_eatout_departure_constant_10_30_am_to_11_am,0.519559134,F -coef_eatout_departure_constant_11_am_to_11_30_am,1.191543552,F -coef_eatout_departure_constant_11_30_am_to_12_pm,1.66870995,F -coef_eatout_departure_constant_12_pm_to_12_30_pm,1.164106986,F -coef_eatout_departure_constant_12_30_pm_to_1_pm,1.057346496,F -coef_eatout_departure_constant_1_pm_to_1_30_pm,0.728959087,F -coef_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear,-0.477439748,F -coef_eatout_departure_constant_before_6_pm,-1.21554671,F -coef_eatout_departure_constant_6_pm_to_6_30_pm,-0.425984037,F -coef_eatout_departure_constant_6_30_pm_to_7_pm,0,T -coef_eatout_departure_constant_7_pm_to_7_30_pm,-0.227800647,F -coef_eatout_departure_constant_after_7_30_pm,-0.293904097,F -coef_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,-0.55440861,F -coef_eatout_arrival_constant_9_30_am_to_11_am,0.486337344,F -coef_eatout_arrival_constant_12_30_pm_to_1_pm,0.629299404,F -coef_eatout_arrival_constant_1_pm_to_1_30_pm,0.938528731,F -coef_eatout_arrival_constant_1_30_pm_to_2_pm,0.584420106,F -coef_eatout_arrival_constant_2_pm_to_2_30_pm,0.842550215,F -coef_eatout_arrival_constant_2_30_pm_to_3_pm,0.298486505,F -coef_eatout_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,0.125034982,F -coef_eatout_arrival_constant_before_6_30_pm,-0.029062996,F -coef_eatout_arrival_constant_6_30_pm_to_7_pm,-0.509075598,F -coef_eatout_arrival_constant_7_pm_to_7_30_pm,-0.124885931,F -coef_eatout_arrival_constant_7_30_pm_to_8_pm,-0.605455664,F -coef_eatout_arrival_constant_8_pm_to_8_30_pm,0,T -coef_eatout_arrival_constant_8_30_pm_to_9_pm,-0.657382835,F -coef_eatout_arrival_constant_after_9_pm,-0.813629712,F -coef_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,-0.204722406,F -coef_eatout_duration_constant_0_hour,-11.72660422,F -coef_eatout_duration_constant_30_minutes,-5.08873115,F -coef_eatout_duration_constant_1_hour,-0.125521065,F -coef_eatout_duration_constant_1_hour_30_minutes,0,T -coef_eatout_duration_constant_2_hours,-0.124807752,F -coef_eatout_duration_constant_2_hour_30_minutes_or_more,-0.156019835,F -coef_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,-0.3357414,F -coef_eatout_calibration_constant_duration_1,-0.333697861,F -coef_eatout_calibration_constant_duration_2,-0.245716,F -coef_eatout_calibration_constant_duration_3,0.052708833,F -coef_eatout_calibration_constant_duration_4,0.041571499,F -coef_eatout_calibration_constant_departure_1,-10,F -coef_eatout_calibration_constant_departure_2,-10,F -coef_eatout_calibration_constant_departure_3,-10,F -coef_eatout_calibration_constant_departure_17,0.706568704,F -coef_eatout_calibration_constant_departure_18,0.634353544,F -coef_eatout_calibration_constant_departure_19,0.584387268,F -coef_eatout_calibration_constant_departure_20,0.469777884,F -coef_eatout_calibration_constant_departure_21,0.39548931,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_escort_coefficients.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_escort_coefficients.csv deleted file mode 100644 index 76a5b7c13..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_escort_coefficients.csv +++ /dev/null @@ -1,72 +0,0 @@ -coefficient_name,value,constrain -coef_escort_mode_choice_logsum,1.173173034,F -coef_escort_distance_to_destination_duration_less_than_30_minutes,-0.335017673,F -coef_escort_distance_to_destination_duration_greater_than_30_minutes,0.005298165,F -coef_escort_fulltime_worker_departure_after_8_am_linear,-0.037980109,F -coef_escort_fulltime_worker_departure_after_3_am_linear,0.163254125,F -coef_escort_fulltime_worker_duration_less_than_30_minutes,-0.275077482,F -coef_escort_fulltime_worker_duration_greater_than_30_minutes,0.051530545,F -coef_escort_university_student_duration_less_than_30_minutes,-0.426802718,F -coef_escort_non_driving_age_student_duration_greater_than_30_minutes,0.240582361,F -coef_escort_driving_age_student_duration_less_than_30_minutes,-0.554146191,F -coef_escort_driving_age_student_duration_greater_than_30_minutes,0.299387708,F -coef_escort_pre_school_kid_duration_greater_than_30_minutes,0.195482563,F -coef_escort_med_high_income_duration_greater_than_30_minutes,-0.029281467,F -coef_escort_households_with_no_kids_departure_before_7_30_am,0.589083327,F -coef_escort_households_with_no_kids_departure_after_8_00_am,0.086690827,F -coef_escort_households_with_no_kids_departure_before_2_30_pm,0.477582648,F -coef_escort_households_with_no_kids_departure_after_3_00_pm,-0.204065502,F -coef_escort_households_with_no_kids_arrival_before_8_am,-0.360039254,F -coef_escort_households_with_no_kids_arrival_after_8_30_am,0.091614107,F -coef_escort_households_with_no_kids_arrival_before_3_pm,0.432854268,F -coef_escort_households_with_no_kids_arrival_after_3_30_pm,0.131037275,F -coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am,0.109700265,F -coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm,-0.224568648,F -coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am,-0.357416434,F -coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm,0.629285298,F -coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am,0.039005148,F -coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am,-0.06556611,F -coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm,0.117680977,F -coef_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes,-0.057322708,F -coef_escort_number_of_individual_tours_duration_greater_than_30_minutes,-0.062899692,F -coef_escort_number_of_joint_tours_duration_greater_than_30_minutes,-0.048533895,F -coef_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear,-1.469240002,F -coef_escort_departure_constant_before_7_am,-2.070292862,F -coef_escort_departure_constant_7_am_to_7_30_am,-0.642734296,F -coef_escort_departure_constant_7_30_am_to_8_am,0,T -coef_escort_departure_constant_8_am_to_8_30_am,-0.214617667,F -coef_escort_departure_constant_8_30_am_to_9_am,-0.147266606,F -coef_escort_departure_constant_after_9_am,-1.356686422,F -coef_escort_departure_constant_1_30_pm_to_2_pm,0.368092381,F -coef_escort_departure_constant_2_pm_to_2_30_pm,1.166803383,F -coef_escort_departure_constant_2_30_pm_to_3_pm,1.28466083,F -coef_escort_departure_constant_3_pm_to_3_30_pm,0.581891245,F -coef_escort_departure_constant_after_3_30_pm,0.834510243,F -coef_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear,0.175257649,F -coef_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear,-0.019161202,F -coef_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear,0.44978138,F -coef_escort_arrival_constant_before_7_am,0.549584585,F -coef_escort_arrival_constant_7_am_to_7_30_am,0.488181278,F -coef_escort_arrival_constant_7_30_am_to_8_am,0.236447651,F -coef_escort_arrival_constant_8_am_to_8_30_am,0,T -coef_escort_arrival_constant_8_30_am_to_9_am,-0.683756801,F -coef_escort_arrival_constant_after_9_am,-1.428888485,F -coef_escort_arrival_constant_2_30_pm_to_3_pm,1.311480662,F -coef_escort_arrival_constant_3_pm_to_3_30_pm,1.316883154,F -coef_escort_arrival_constant_3_30_pm_to_4_pm,1.396838392,F -coef_escort_arrival_constant_4_pm_to_4_30_pm,1.03146139,F -coef_escort_arrival_constant_after_4_30_pm,0.907344583,F -coef_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear,-0.148408887,F -coef_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,-0.389082896,F -coef_escort_duration_constant_0_hour,-0.173757322,F -coef_escort_duration_constant_30_minutes,0,T -coef_escort_duration_constant_1_hour,-0.431287743,F -coef_escort_duration_constant_1_hour_30_minutes,-0.700473959,F -coef_escort_duration_constant_2_hours,-1.071871358,F -coef_escort_duration_constant_longer_than_2_hours,-1.691098421,F -coef_escort_calibration_constant_duration_1,-0.047200214,F -coef_escort_calibration_constant_duration_2,0.035611332,F -coef_escort_calibration_constant_departure_9,0.106814756,F -coef_escort_calibration_constant_departure_10,0.215386864,F -coef_escort_calibration_constant_departure_23,-0.255087318,F -coef_escort_calibration_constant_departure_24,-0.296870428,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othdiscr_coefficients.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othdiscr_coefficients.csv deleted file mode 100644 index d9a4e607c..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othdiscr_coefficients.csv +++ /dev/null @@ -1,53 +0,0 @@ -coefficient_name,value,constrain -coef_discretionary_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,-0.262839914,F -coef_discretionary_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,0.086919429,F -coef_discretionary_non_working_senior_retiree_duration_less_than_1_hr_30_minutes_linear,0.468354376,F -coef_discretionary_retiree_non_working_senior_only_HH_duration_1_hr_30_minutes_linear,-0.312282762,F -coef_discretionary_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,-0.508439932,F -coef_discretionary_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,0.074190914,F -coef_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,0.127185965,F -coef_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,0.048756122,F -coef_discretionary_auto_distance_duration_less_than_1_hr_linear,-0.162965435,F -coef_discretionary_auto_distance_duration_greater_than_1_hr_linear,0.006797399,F -coef_discretionary_time_pressure_duration_less_than_1_hr,-0.229264474,F -coef_discretionary_time_pressure_duration_greater_than_1_hr,0.219325112,F -coef_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,0.156250451,F -coef_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear,-0.742176805,F -coef_discretionary_departure_constant_before_7_30_am,-1.323901585,F -coef_discretionary_departure_constant_7_30_am_to_8_am,-0.695441631,F -coef_discretionary_departure_constant_8_am_to_8_30_am,-0.269903336,F -coef_discretionary_departure_constant_8_30_am_to_9_am,-0.093709211,F -coef_discretionary_departure_constant_9_am_to_9_30_am,0.265634082,F -coef_discretionary_departure_constant_9_30_am_to_10_am,0.287521134,F -coef_discretionary_departure_constant_10_am_to_10_30_am,0.396547817,F -coef_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear,-0.245885745,F -coef_discretionary_departure_constant_before_5_pm,-1.344482349,F -coef_discretionary_departure_constant_5_pm_to_5_30_pm,-0.622632748,F -coef_discretionary_departure_constant_5_30_pm_to_6_pm,-0.456718676,F -coef_discretionary_departure_constant_6_pm_to_6_30_pm,-0.206896106,F -coef_discretionary_departure_constant_6_30_pm_to_7_pm,0,T -coef_discretionary_departure_constant_after_7_pm,-0.46439343,F -coef_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear,-0.291998986,F -coef_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,0.148649188,F -coef_discretionary_arrival_constant_before_6_30_pm,0.668775963,F -coef_discretionary_arrival_constant_6_30_pm_to_7_pm,-0.053520826,F -coef_discretionary_arrival_constant_7_pm_to_7_30_pm,0.099726391,F -coef_discretionary_arrival_constant_7_30_pm_to_8_pm,0.063414092,F -coef_discretionary_arrival_constant_8_pm_to_8_30_pm,0,T -coef_discretionary_arrival_constant_8_30_pm_to_9_pm,-0.18610847,F -coef_discretionary_arrival_constant_after_9_pm,-0.423207857,F -coef_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,-0.525545923,F -coef_discretionary_duration_constant_0_hour,0.436988282,F -coef_discretionary_duration_constant_30_minutes,1.35967577,F -coef_discretionary_duration_constant_1_hour,1.692672999,F -coef_discretionary_duration_constant_1_hr_30_minutes,1.118932964,F -coef_discretionary_duration_constant_2_hours,0.771255733,F -coef_discretionary_duration_constant_2_hr_30_minutes,0,T -coef_discretionary_duration_constant_3_hours_or_more,-0.631242175,F -coef_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,-0.700935645,F -coef_discretionary_calibration_constant_duration_4,-0.132674257,F -coef_discretionary_calibration_constant_duration_5,-0.013371871,F -coef_discretionary_calibration_constant_departure_29,0.232927977,F -coef_discretionary_calibration_constant_departure_30,0.306104612,F -coef_discretionary_calibration_constant_departure_31,0.285520678,F -coef_discretionary_calibration_constant_departure_32,0.115886631,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othmaint.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othmaint.csv deleted file mode 100644 index 967964c3d..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othmaint.csv +++ /dev/null @@ -1,54 +0,0 @@ -Label,Description,Expression,Coefficient -#MAINTENANCE,#MAINTENANCE,,#MAINTENANCE -util_maintenance_driving_age_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Driving age student: Duration > 1.5 hrs,"@np.where(((df.duration>2) & (df.ptype == 6)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_driving_age_student_duration_greater_than_1_hour_30_minutes -util_maintenance_full_time_worker_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Full-time worker: Duration > 1.5 hrs,"@np.where(((df.duration>2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_full_time_worker_duration_greater_than_1_hour_30_minutes -util_maintenance_non_driving_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Non-driving Student: Duration > 1.5 hrs,"@np.where (((df.duration>2) & ((df.ptype == 7)|(df.ptype == 8))), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_non_driving_student_duration_greater_than_1_hour_30_minutes -util_maintenance_pre_school_child_duration_less_than_1_hour_30_minutes,MAINTENANCE - Pre-school Child: Duration < 1.5 hrs,"@np.where(((df.duration<2) & (df.ptype == 8)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_pre_school_child_duration_less_than_1_hour_30_minutes -util_maintenance_part_time_worker_duration_less_than_1_hour_30_minutes,MAINTENANCE - Part Time Worker: Duration < 1.5 hrs,"@np.where(((df.duration<2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_part_time_worker_duration_less_than_1_hour_30_minutes -util_maintenance_part_time_worker_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Part Time Worker: Duration > 1.5 hrs,"@np.where(((df.duration>2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_part_time_worker_duration_greater_than_1_hour_30_minutes -util_maintenance_retired_duration_less_than_1_hour_30_minutes,MAINTENANCE - Retired: Duration < 1.5 hrs,"@np.where(((df.duration<2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_retired_duration_less_than_1_hour_30_minutes -util_maintenance_retired_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Retired: Duration > 1.5 hr,"@np.where(((df.duration>2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_retired_duration_greater_than_1_hour_30_minutes -util_maintenance_university_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - University Student: Duration > 1.5 hrs,"@np.where(((df.duration>2) & (df.ptype == 3)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_university_student_duration_greater_than_1_hour_30_minutes -util_maintenance_female_duration_less_than_1_hour_30_minutes,MAINTENANCE - Female: Duration < 1.5 hrs,"@np.where(((df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_female_duration_less_than_1_hour_30_minutes -util_maintenance_female_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Female: Duration > 1.5 hrs,"@np.where(((df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_female_duration_greater_than_1_hour_30_minutes -util_maintenance_low_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Low Income (<=$25,000): Duration > 1.5 hrs","@np.where(((df.is_income_less25K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_low_income_duration_greater_than_1_hour_30_minutes -util_maintenance_medium_income_duration_less_than_1_hour_30_minutes,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration < 1.5 hrs","@np.where(((df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_income_duration_less_than_1_hour_30_minutes -util_maintenance_medium_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration > 1.5 hrs","@np.where(((df.is_income_25K_to_60K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_income_duration_greater_than_1_hour_30_minutes -util_maintenance_medium_high_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Medium-High Income ($60,001 to $120,00): Duration > 1.5 hrs","@np.where(((df.is_income_60K_to_120K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_high_income_duration_greater_than_1_hour_30_minutes -util_maintenance_distance_duration_less_than_1_hour_30_minutes,MAINTENANCE - Distance: Duration < 1.5 hrs,"@np.where(((df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.origin_to_destination_distance), 0)",coef_maintenance_distance_duration_less_than_1_hour_30_minutes -util_maintenance_distance_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Distance: Duration > 1.5 hrs,"@np.where(((df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_maintenance_distance_duration_greater_than_1_hour_30_minutes -util_maintenance_time_pressure_duration_greater_than_1_hour_30_minutes,Time Pressure - Duration > 1.5 hrs,"@np.where(((df.duration>2)), np.minimum(df.duration-2,26) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_maintenance_time_pressure_duration_greater_than_1_hour_30_minutes -util_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,MAINTENANCE - Number of additional individual shop and maint. tours - Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint')&(df.tour_type == 'othmaint')&(df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.num_add_shop_maint_tours), 0)",coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes -util_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Number of additional individual shop and maint. tours - Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint')&(df.tour_type == 'othmaint')&(df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.num_add_shop_maint_tours), 0)",coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes -util_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Linear,"@np.where(((df.start<10)), (np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear -util_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Square Root,"@np.where(((df.start<10)), ((np.where((df.start<10), np.minimum(10-df.start,7), 0) + (np.where((df.start>17), np.minimum(df.start-17,24), 0)))** 0.5), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root -util_maintenance_departure_constant_before_8_am,MAINTENANCE - Departure Constant: Before 08:00 AM,@((df.start<11)),coef_maintenance_departure_constant_before_8_am -util_maintenance_departure_constant_8_am_to_8_30_am,MAINTENANCE - Departure Constant: 08:00 AM - 08:30 AM,@((df.start==11)),coef_maintenance_departure_constant_8_am_to_8_30_am -util_maintenance_departure_constant_8_30_am_to_9_00_am,MAINTENANCE - Departure Constant: 08:30 AM - 09:00 AM,@((df.start==12)),coef_maintenance_departure_constant_8_30_am_to_9_00_am -util_maintenance_departure_constant_9_am_to_9_30_am,MAINTENANCE - Departure Constant: 09:00 AM - 09:30 AM,@((df.start==13)),coef_maintenance_departure_constant_9_am_to_9_30_am -util_maintenance_departure_constant_9_30_am_to_10_am,MAINTENANCE - Departure Constant: 09:30 AM - 10:00 AM,@((df.start==14)),coef_maintenance_departure_constant_9_30_am_to_10_am -util_maintenance_departure_constant_10_am_to_10_30_am,MAINTENANCE - Departure Constant: 10:00 AM - 10:30 AM,@((df.start==15)),coef_maintenance_departure_constant_10_am_to_10_30_am -util_maintenance_departure_constant_10_30_am_to_11_am,MAINTENANCE - Departure Constant: 10:30 AM - 11:00 AM,@((df.start==16)),coef_maintenance_departure_constant_10_30_am_to_11_am -util_maintenance_departure_constant_after_11_am,MAINTENANCE - Departure Constant: After 11:00 AM,@((df.start>16)),coef_maintenance_departure_constant_after_11_am -util_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.start>17)), np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear -util_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Squared,"@np.where(((df.start>17)), ((np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)) ** 2), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared -util_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes before 10:00 am - Linear,"@np.where(((df.end<15)), (np.where((df.end<15), np.minimum(15-df.end,9), 0) + np.where((df.end>28), np.minimum(df.end-28,16), 0)), 0)",coef_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear -util_maintenance_arrival_constant_before_10_30_am,MAINTENANCE - Arrival Constant: Before 10:30 AM,@((df.end<16)),coef_maintenance_arrival_constant_before_10_30_am -util_maintenance_arrival_constant_10_30_am_to_11_am,MAINTENANCE - Arrival Constant: 10:30 AM - 11:00 AM,@((df.end==16)),coef_maintenance_arrival_constant_10_30_am_to_11_am -util_maintenance_arrival_constant_11_am_to_11_30_am,MAINTENANCE - Arrival Constant: 11:00 AM - 11:30 AM,@((df.end==17)),coef_maintenance_arrival_constant_11_am_to_11_30_am -util_maintenance_arrival_constant_11_30_am_to_1_30_pm,MAINTENANCE - Arrival Constant: 11:30 AM - 01:30 PM,@((df.end>=18) & (df.end<=21)),coef_maintenance_arrival_constant_11_30_am_to_1_30_pm -util_maintenance_arrival_constant_1_30_pm_to_2_30_pm,MAINTENANCE - Arrival Constant: 01:30 PM - 02:30 PM,@((df.end>=22) & (df.end<=23)),coef_maintenance_arrival_constant_1_30_pm_to_2_30_pm -util_maintenance_arrival_constant_2_30_pm_to_4_pm,MAINTENANCE - Arrival Constant: 02:30 PM - 04:00 PM,@((df.end>=24) & (df.end<=26)),coef_maintenance_arrival_constant_2_30_pm_to_4_pm -util_maintenance_arrival_constant_4_pm_to_4_30_pm,MAINTENANCE - Arrival Constant: 04:00 PM - 04:30 PM,@((df.end==27)),coef_maintenance_arrival_constant_4_pm_to_4_30_pm -util_maintenance_arrival_constant_after_4_30_pm,MAINTENANCE - Arrival Constant: After 04:30 PM,@((df.end>27)),coef_maintenance_arrival_constant_after_4_30_pm -util_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.end>28)), (np.where((df.end<15), np.minimum(15-df.end,9), 0) + np.where((df.end>28), np.minimum(df.end-28,16), 0)), 0)",coef_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear -util_maintenance_duration_constant_0_hr,MAINTENANCE - Duration Constant: 0 hr,@((df.duration==0)),coef_maintenance_duration_constant_0_hr -util_maintenance_duration_constant_30_minutes,MAINTENANCE - Duration Constant: 0.5 hr,@((df.duration==1)),coef_maintenance_duration_constant_30_minutes -util_maintenance_duration_constant_longer_than_30_minutes,MAINTENANCE - Duration Constant: Longer than 0.5 hr,@((df.duration>1)),coef_maintenance_duration_constant_longer_than_30_minutes -util_maintenance_duration_constant_duration_greater_than_1_hr_linear,MAINTENANCE - Duration Constant: Duration > 1 hr - Linear,"@np.where(((df.duration>2)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_duration_constant_duration_greater_than_1_hr_linear -util_maintenance_duration_constant_duration_greater_than_1_hr_square_root,MAINTENANCE - Duration Constant: Duration > 1 hr - Square Root,"@np.where(((df.duration>2)), ((np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0))** 0.5), 0)",coef_maintenance_duration_constant_duration_greater_than_1_hr_square_root -util_maintenance_calibration_constant_duration_1,MAINTENANCE - Calibration Constant - Duration = 1,@((df.duration==0)),coef_maintenance_calibration_constant_duration_1 -util_maintenance_calibration_constant_duration_2,MAINTENANCE - Calibration Constant - Duration = 2,@((df.duration==1)),coef_maintenance_calibration_constant_duration_2 -util_maintenance_calibration_constant_duration_3,MAINTENANCE - Calibration Constant - Duration = 3,@((df.duration==2)),coef_maintenance_calibration_constant_duration_3 -util_maintenance_calibration_constant_duration_4,MAINTENANCE - Calibration Constant - Duration = 4,@((df.duration==3)),coef_maintenance_calibration_constant_duration_4 -util_maintenance_calibration_constant_duration_5,MAINTENANCE - Calibration Constant - Duration = 5,@((df.duration==4)),coef_maintenance_calibration_constant_duration_5 diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othmaint_coefficients.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othmaint_coefficients.csv deleted file mode 100644 index 991068579..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_othmaint_coefficients.csv +++ /dev/null @@ -1,53 +0,0 @@ -coefficient_name,value,constrain -coef_maintenance_driving_age_student_duration_greater_than_1_hour_30_minutes,0.122149101,F -coef_maintenance_full_time_worker_duration_greater_than_1_hour_30_minutes,-0.037886459,F -coef_maintenance_non_driving_student_duration_greater_than_1_hour_30_minutes,0.10247157,F -coef_maintenance_pre_school_child_duration_less_than_1_hour_30_minutes,-1.882944033,F -coef_maintenance_part_time_worker_duration_less_than_1_hour_30_minutes,-0.197455071,F -coef_maintenance_part_time_worker_duration_greater_than_1_hour_30_minutes,-0.045152663,F -coef_maintenance_retired_duration_less_than_1_hour_30_minutes,-0.264728908,F -coef_maintenance_retired_duration_greater_than_1_hour_30_minutes,-0.042981757,F -coef_maintenance_university_student_duration_greater_than_1_hour_30_minutes,0.045926523,F -coef_maintenance_female_duration_less_than_1_hour_30_minutes,-0.417208254,F -coef_maintenance_female_duration_greater_than_1_hour_30_minutes,0.045801918,F -coef_maintenance_low_income_duration_greater_than_1_hour_30_minutes,0.040776383,F -coef_maintenance_medium_income_duration_less_than_1_hour_30_minutes,0.108462927,F -coef_maintenance_medium_income_duration_greater_than_1_hour_30_minutes,0,T -coef_maintenance_medium_high_income_duration_greater_than_1_hour_30_minutes,-0.037893416,F -coef_maintenance_distance_duration_less_than_1_hour_30_minutes,-0.214802537,F -coef_maintenance_distance_duration_greater_than_1_hour_30_minutes,0.007991656,F -coef_maintenance_time_pressure_duration_greater_than_1_hour_30_minutes,0.013503327,F -coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,0.078844289,F -coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,-0.115431492,F -coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear,-0.864112609,F -coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root,0.504598473,F -coef_maintenance_departure_constant_before_8_am,-0.383711788,F -coef_maintenance_departure_constant_8_am_to_8_30_am,-0.076771517,F -coef_maintenance_departure_constant_8_30_am_to_9_00_am,-0.169259979,F -coef_maintenance_departure_constant_9_am_to_9_30_am,-0.051785379,F -coef_maintenance_departure_constant_9_30_am_to_10_am,-0.214942451,F -coef_maintenance_departure_constant_10_am_to_10_30_am,0,T -coef_maintenance_departure_constant_10_30_am_to_11_am,-0.427568963,F -coef_maintenance_departure_constant_after_11_am,-0.520863411,F -coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,0.042879095,F -coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,-0.003157293,F -coef_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear,-0.226803619,F -coef_maintenance_arrival_constant_before_10_30_am,-0.223212258,F -coef_maintenance_arrival_constant_10_30_am_to_11_am,0,T -coef_maintenance_arrival_constant_11_am_to_11_30_am,-0.128382637,F -coef_maintenance_arrival_constant_11_30_am_to_1_30_pm,0.167977332,F -coef_maintenance_arrival_constant_1_30_pm_to_2_30_pm,-0.149495878,F -coef_maintenance_arrival_constant_2_30_pm_to_4_pm,0.087679934,F -coef_maintenance_arrival_constant_4_pm_to_4_30_pm,0.121707557,F -coef_maintenance_arrival_constant_after_4_30_pm,0.106745013,F -coef_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,-0.232610927,F -coef_maintenance_duration_constant_0_hr,-0.483549396,F -coef_maintenance_duration_constant_30_minutes,0,T -coef_maintenance_duration_constant_longer_than_30_minutes,-1.450618319,F -coef_maintenance_duration_constant_duration_greater_than_1_hr_linear,-0.275082922,F -coef_maintenance_duration_constant_duration_greater_than_1_hr_square_root,0.208434683,F -coef_maintenance_calibration_constant_duration_1,-0.124602605,F -coef_maintenance_calibration_constant_duration_2,-0.103637715,F -coef_maintenance_calibration_constant_duration_3,-0.225442145,F -coef_maintenance_calibration_constant_duration_4,-0.145273012,F -coef_maintenance_calibration_constant_duration_5,-0.019241539,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shift_in.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shift_in.csv deleted file mode 100755 index 318f1b695..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shift_in.csv +++ /dev/null @@ -1,348 +0,0 @@ -Label,Description,Expression,Coefficient -# ESCORT,,, -util_escort_mode_choice_logsum,ESCORT - Mode Choice Logsum,"@np.where(df.tour_type == 'escort', df.mode_choice_logsum, 0) ",coef_escort_mode_choice_logsum -"#Note: In CTRAMP expressions, duration alternative is from 1 to 48 but in ActivitySim, it is from 0 to 47 since the duration alternative ID was calculated as (end - start). Therefore, duration in ActivitySim expression = CTRAMP duration expresssion - 1 ",,,# -util_escort_distance_to_destination_duration_less_than_30_minutes,ESCORT - Distance to destination - Duration less than 0.5 hour (depart and arrive in the same period),"@np.where(((df.tour_type == 'escort') & (df.duration<1)), ((df.origin_to_destination_distance) * (np.where((df.duration<=1), np.minimum(1-df.duration, 0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0))), 0)",coef_escort_distance_to_destination_duration_less_than_30_minutes -util_escort_distance_to_destination_duration_greater_than_30_minutes,ESCORT - Distance to destination - Duration greater than 0.5 hour,"@np.where(((df.tour_type == 'escort') & (df.duration>1)), ((df.origin_to_destination_distance) * (np.where((df.duration<=1), np.minimum(1-df.duration, 0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0))), 0)",coef_escort_distance_to_destination_duration_greater_than_30_minutes -util_escort_fulltime_worker_departure_after_8_am_linear,ESCORT - Full-time worker - Departure after 8:00 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)),0)",coef_escort_fulltime_worker_departure_after_8_am_linear -"#Note: In CTRAMP expression file, the description below says departure is after 3 am but from the expression it seems that it would be 3 pm instead of 3 am",,, -util_escort_fulltime_worker_departure_after_3_am_linear,ESCORT - Full-time worker - Departure after 3:00 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.start>24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_fulltime_worker_departure_after_3_am_linear -util_escort_fulltime_worker_duration_less_than_30_minutes,ESCORT - Full-time worker - Duration < 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_fulltime_worker_duration_less_than_30_minutes -util_escort_fulltime_worker_duration_greater_than_30_minutes,ESCORT - Full-time worker - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_fulltime_worker_duration_greater_than_30_minutes -util_escort_university_student_duration_less_than_30_minutes,ESCORT - University student - Duration < 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 3) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_university_student_duration_less_than_30_minutes -util_escort_non_driving_age_student_duration_greater_than_30_minutes,ESCORT - Non-driving age student - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & ((df.ptype == 7)|(df.ptype == 8)) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_non_driving_age_student_duration_greater_than_30_minutes -util_escort_driving_age_student_duration_less_than_30_minutes,ESCORT - Driving age student - Duration < 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 6) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_driving_age_student_duration_less_than_30_minutes -util_escort_driving_age_student_duration_greater_than_30_minutes,ESCORT - Driving age student - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 6) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_driving_age_student_duration_greater_than_30_minutes -"#Note: In CTRAMP expression file, description says the expression below is for duration > 0.5 hr but the expression says duration < 0.5 hr",,, -util_escort_pre_school_kid_duration_greater_than_30_minutes,ESCORT - Pre-school kid - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 8) & (df.duration<1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_pre_school_kid_duration_greater_than_30_minutes -util_escort_med_high_income_duration_greater_than_30_minutes,ESCORT - Med-high income (60k to 120k) - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.is_income_60K_to_120K) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_med_high_income_duration_greater_than_30_minutes -util_escort_households_with_no_kids_departure_before_7_30_am,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 7:30 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start<10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_households_with_no_kids_departure_before_7_30_am -util_escort_households_with_no_kids_departure_after_8_00_am,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_households_with_no_kids_departure_after_8_00_am -util_escort_households_with_no_kids_departure_before_2_30_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 2:30 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start<24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_households_with_no_kids_departure_before_2_30_pm -util_escort_households_with_no_kids_departure_after_3_00_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start>24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where ((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_households_with_no_kids_departure_after_3_00_pm -util_escort_households_with_no_kids_arrival_before_8_am,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end<11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_households_with_no_kids_arrival_before_8_am -util_escort_households_with_no_kids_arrival_after_8_30_am,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end>11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_households_with_no_kids_arrival_after_8_30_am -util_escort_households_with_no_kids_arrival_before_3_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end<25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_households_with_no_kids_arrival_before_3_pm -util_escort_households_with_no_kids_arrival_after_3_30_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end>25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_households_with_no_kids_arrival_after_3_30_pm -util_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am -util_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.start>24)), (np.where((df.start<=24), np.minimum(24-df.start,3), 0) + np.where((df.start>24), np.minimum(df.start-24,9), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm -util_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am,"ESCORT -Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.end<11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am -util_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.end<25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) & (df.start>10)), (np.where((df.start<=10), np.minimum(10-df.start,7), 0) + np.where ((df.start>10), np.minimum(df.start-10,35), 0)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) & (df.end>11)), (np.where((df.end<=11), np.minimum(11-df.end,7), 0) + np.where((df.end>11), np.minimum(df.end-11,35), 0)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) & (df.end>25)), (np.where((df.end<=25), np.minimum(25-df.end,3), 0) + np.where((df.end>25), np.minimum(df.end-25,9), 0)), 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm -util_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes,ESCORT - Number of autos greater than number of adults - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)), 0)",coef_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes -util_escort_number_of_individual_tours_duration_greater_than_30_minutes,ESCORT -Number of Individual Tours (excluding escorting) - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.num_non_escort_tours > 0) & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)) * (df.num_non_escort_tours), 0)",coef_escort_number_of_individual_tours_duration_greater_than_30_minutes -util_escort_number_of_joint_tours_duration_greater_than_30_minutes,ESCORT - Number of joint tours - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.duration>1)), (np.where((df.duration<=1), np.minimum(1-df.duration,0), 0) + np.where((df.duration>1), np.minimum(df.duration-1,47), 0)) *(df.num_joint_tours), 0)",coef_escort_number_of_joint_tours_duration_greater_than_30_minutes -util_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear,ESCORT - Departure Constant: Shift for every 30 minutes before 06:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.start<8)), (np.where((df.start<8), np.minimum(8-df.start,4), 0) + np.where((df.start>13), np.minimum(df.start-13,28), 0)), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear -util_escort_departure_constant_before_7_am,ESCORT - Departure Constant: Before 07:00 AM,@((df.tour_type == 'escort') & (df.start<9)),coef_escort_departure_constant_before_7_am -util_escort_departure_constant_7_am_to_7_30_am,ESCORT - Departure Constant: 07:00 AM - 07:30 AM,@((df.tour_type == 'escort') & (df.start==9)),coef_escort_departure_constant_7_am_to_7_30_am -util_escort_departure_constant_7_30_am_to_8_am,ESCORT - Departure Constant: 07:30 AM - 08:00 AM,@((df.tour_type == 'escort') & (df.start==10)),coef_escort_departure_constant_7_30_am_to_8_am -util_escort_departure_constant_8_am_to_8_30_am,ESCORT - Departure Constant: 08:00 AM - 08:30 AM,@((df.tour_type == 'escort') & (df.start==11)),coef_escort_departure_constant_8_am_to_8_30_am -util_escort_departure_constant_8_30_am_to_9_am,ESCORT - Departure Constant: 08:30 AM - 09:00 AM,@((df.tour_type == 'escort') & (df.start==12)),coef_escort_departure_constant_8_30_am_to_9_am -util_escort_departure_constant_after_9_am,ESCORT - Departure Constant: After 09:00 AM,@((df.tour_type == 'escort') & (df.start>12)),coef_escort_departure_constant_after_9_am -util_escort_departure_constant_1_30_pm_to_2_pm,ESCORT - Departure Constant: 01:30 PM - 02:00 PM,@((df.tour_type == 'escort') & (df.start==22)),coef_escort_departure_constant_1_30_pm_to_2_pm -util_escort_departure_constant_2_pm_to_2_30_pm,ESCORT - Departure Constant: 02:00 PM - 02:30 PM,@((df.tour_type == 'escort') & (df.start==23)),coef_escort_departure_constant_2_pm_to_2_30_pm -util_escort_departure_constant_2_30_pm_to_3_pm,ESCORT - Departure Constant: 02:30 PM - 03:00 PM,@((df.tour_type == 'escort') & (df.start==24)),coef_escort_departure_constant_2_30_pm_to_3_pm -util_escort_departure_constant_3_pm_to_3_30_pm,ESCORT - Departure Constant: 03:00 PM - 03:30 PM,@((df.tour_type == 'escort') & (df.start==25)),coef_escort_departure_constant_3_pm_to_3_30_pm -util_escort_departure_constant_after_3_30_pm,ESCORT - Departure Constant: After 03:30 PM,@((df.tour_type == 'escort') & (df.start>25)),coef_escort_departure_constant_after_3_30_pm -util_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear,ESCORT - Departure Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.start>13)), (np.where((df.start<8), np.minimum(8-df.start,4), 0) + (np.where((df.start>13), np.minimum(df.start-13,28), 0))), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear -util_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear,ESCORT - Departure Constant: Shift for every 30 minutes after 4:00 pm - Linear,"@np.where(((df.tour_type == 'escort') & (df.start>26)), (np.where((df.start<0), np.minimum(0-df.start,48), 0) + np.where((df.start>26), np.minimum(df.start-26,15),0)), 0)",coef_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear -util_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear,ESCORT - Arrival Constant: Shift for every 30 minutes before 6:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.end<8)), (np.where((df.end<8), np.minimum(8-df.end,2), 0) + np.where((df.end>13), np.minimum(df.end-13,30), 0)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear -util_escort_arrival_constant_before_7_am,ESCORT - Arrival Constant: Before 07:00 AM,@((df.tour_type == 'escort') & (df.end<9)),coef_escort_arrival_constant_before_7_am -util_escort_arrival_constant_7_am_to_7_30_am,ESCORT - Arrival Constant: 07:00 AM - 07:30 AM,@((df.tour_type == 'escort') & (df.end==9)),coef_escort_arrival_constant_7_am_to_7_30_am -util_escort_arrival_constant_7_30_am_to_8_am,ESCORT - Arrival Constant: 07:30 AM - 08:00 AM,@((df.tour_type == 'escort') & (df.end==10)),coef_escort_arrival_constant_7_30_am_to_8_am -util_escort_arrival_constant_8_am_to_8_30_am,ESCORT - Arrival Constant: 08:00 AM - 08:30 AM,@((df.tour_type == 'escort') & (df.end==11)),coef_escort_arrival_constant_8_am_to_8_30_am -util_escort_arrival_constant_8_30_am_to_9_am,ESCORT - Arrival Constant: 08:30 AM - 09:00 AM,@((df.tour_type == 'escort') & (df.end==12)),coef_escort_arrival_constant_8_30_am_to_9_am -util_escort_arrival_constant_after_9_am,ESCORT - Arrival Constant: After 09:00 AM,@((df.tour_type == 'escort') & (df.end>12)),coef_escort_arrival_constant_after_9_am -util_escort_arrival_constant_2_30_pm_to_3_pm,ESCORT - Arrival Constant: 02:30 PM - 03:00 PM,@((df.tour_type == 'escort') & (df.end==24)),coef_escort_arrival_constant_2_30_pm_to_3_pm -util_escort_arrival_constant_3_pm_to_3_30_pm,ESCORT - Arrival Constant: 03:00 PM - 03:30 PM,@((df.tour_type == 'escort') & (df.end==25)),coef_escort_arrival_constant_3_pm_to_3_30_pm -util_escort_arrival_constant_3_30_pm_to_4_pm,ESCORT - Arrival Constant: 03:30 PM - 04:00 PM,@((df.tour_type == 'escort') & (df.end==26)),coef_escort_arrival_constant_3_30_pm_to_4_pm -util_escort_arrival_constant_4_pm_to_4_30_pm,ESCORT - Arrival Constant: 04:00 PM - 04:30 PM,@((df.tour_type == 'escort') & (df.end==27)),coef_escort_arrival_constant_4_pm_to_4_30_pm -util_escort_arrival_constant_after_4_30_pm,ESCORT - Arrival Constant: After 04:30 PM,@((df.tour_type == 'escort') & (df.end>27)),coef_escort_arrival_constant_after_4_30_pm -util_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.end>13)), (np.where((df.end<8), np.minimum(8-df.end,2), 0) + np.where((df.end>13), np.minimum(df.end-13,30), 0)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear -util_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.tour_type == 'escort') & (df.end>28)), (np.where((df.end<0), np.minimum(0-df.end,48), 0) + np.where((df.start>28), np.minimum(df.end-28,15), 0)), 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear -util_escort_duration_constant_0_hour,ESCORT - Duration Constant: 0 hr,@((df.tour_type == 'escort') & (df.duration==0)),coef_escort_duration_constant_0_hour -util_escort_duration_constant_30_minutes,ESCORT - Duration Constant: 0.5 hr,@((df.tour_type == 'escort') & (df.duration==1)),coef_escort_duration_constant_30_minutes -util_escort_duration_constant_1_hour,ESCORT - Duration Constant: 1 hr,@((df.tour_type == 'escort') & (df.duration==2)),coef_escort_duration_constant_1_hour -util_escort_duration_constant_1_hour_30_minutes,ESCORT - Duration Constant: 1.5hrs,@((df.tour_type == 'escort') & (df.duration==3)),coef_escort_duration_constant_1_hour_30_minutes -util_escort_duration_constant_2_hours,ESCORT - Duration Constant: 2 hrs,@((df.tour_type == 'escort') & (df.duration==4)),coef_escort_duration_constant_2_hours -util_escort_duration_constant_longer_than_2_hours,ESCORT - Duration Constant: Longer than 2 hrs,@((df.tour_type == 'escort') & (df.duration>4)),coef_escort_duration_constant_longer_than_2_hours -util_escort_calibration_constant_duration_1,ESCORT - Calibration Constant - Duration = 1,@((df.tour_type == 'escort') & (df.duration==0)),coef_escort_calibration_constant_duration_1 -util_escort_calibration_constant_duration_2,ESCORT - Calibration Constant - Duration = 2,@((df.tour_type == 'escort') & (df.duration==1)),coef_escort_calibration_constant_duration_2 -util_escort_calibration_constant_departure_9,ESCORT - Calibration Constant - Departure = 9,@((df.tour_type == 'escort') & (df.start==9)),coef_escort_calibration_constant_departure_9 -util_escort_calibration_constant_departure_10,ESCORT - Calibration Constant - Departure = 10,@((df.tour_type == 'escort') & (df.start==10)),coef_escort_calibration_constant_departure_10 -util_escort_calibration_constant_departure_23,ESCORT - Calibration Constant - Departure = 23,@((df.tour_type == 'escort') & (df.start==23)),coef_escort_calibration_constant_departure_23 -util_escort_calibration_constant_departure_24,ESCORT - Calibration Constant - Departure = 24,@((df.tour_type == 'escort') & (df.start==24)),coef_escort_calibration_constant_departure_24 -#SHOPPING,,,#SHOPPING -util_shoppping_driving_age_student_duration_greater_than_1_hour_30_minutes,SHOPPING - Driving age student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 6)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_driving_age_student_duration_greater_than_1_hour_30_minutes -util_shoppping_full_time_worker_duration_greater_than_1_hour_30_minutes,SHOPPING - Full-time worker: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_full_time_worker_duration_greater_than_1_hour_30_minutes -util_shoppping_non_driving_student_duration_greater_than_1_hour_30_minutes,SHOPPING - Non-driving Student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & ((df.ptype == 7)|(df.ptype == 8))), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_non_driving_student_duration_greater_than_1_hour_30_minutes -util_shoppping_pre_school_child_duration_less_than_1_hour_30_minutes,SHOPPING - Pre-school Child: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.ptype == 8)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_pre_school_child_duration_less_than_1_hour_30_minutes -util_shoppping_part_time_worker_duration_less_than_1_hour_30_minutes,SHOPPING - Part Time Worker: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_part_time_worker_duration_less_than_1_hour_30_minutes -util_shopping_part_time_worker_duration_greater_than_1_hour_30_minutes,SHOPPING - Part Time Worker: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_part_time_worker_duration_greater_than_1_hour_30_minutes -util_shopping_retired_duration_less_than_1_hour_30_minutes,SHOPPING - Retired: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_retired_duration_less_than_1_hour_30_minutes -util_shopping_retired_duration_greater_than_1_hour_30_minutes,SHOPPING - Retired: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_retired_duration_greater_than_1_hour_30_minutes -util_shopping_university_student_duration_greater_than_1_hour_30_minutes,SHOPPING - University Student: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 3)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_university_student_duration_greater_than_1_hour_30_minutes -util_shopping_female_duration_less_than_1_hour_30_minutes,SHOPPING - Female: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_female_duration_less_than_1_hour_30_minutes -util_shopping_female_duration_greater_than_1_hour_30_minutes,SHOPPING - Female: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_female_duration_greater_than_1_hour_30_minutes -util_shopping_low_income_duration_greater_than_1_hour_30_minutes,"SHOPPING - Low Income (<=$25,000): Duration > 1.5 hr","@np.where(((df.tour_type == 'shopping') & (df.is_income_less25K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_low_income_duration_greater_than_1_hour_30_minutes -util_shopping_medium_income_duration_less_than_1_hour_30_minutes,"SHOPPING - Medium Income ($25,001 to $60,000): Duration < 1.5 hrs","@np.where(((df.tour_type == 'shopping') & (df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_medium_income_duration_less_than_1_hour_30_minutes -util_shopping_medium_high_income_duration_greater_than_1_hour_30_minutes,"SHOPPING - Medium-High Income ($60,001 to $120,00): Duration > 1.5 hrs","@np.where(((df.tour_type == 'shopping') & (df.is_income_60K_to_120K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_medium_high_income_duration_greater_than_1_hour_30_minutes -util_shopping_distance_duration_less_than_1_hour_30_minutes,SHOPPING - Distance: Duration < 1.5 hrs,"@np.where(((df.tour_type == 'shopping') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_shopping_distance_duration_less_than_1_hour_30_minutes -util_shopping_distance_duration_greater_than_1_hour_30_minutes,SHOPPING - Distance: Duration > 1.5 hrs,"@np.where(((df.tour_type == 'shopping') & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_shopping_distance_duration_greater_than_1_hour_30_minutes -util_shopping_time_pressure_duration_greater_than_1_hour_30_minutes,SHOPPING - Time Pressure - Duration > 1.5 hrs,"@np.where(((df.tour_type == 'shopping') & (df.duration>2)), np.minimum(df.duration-2,26) *(np.log10 (30 *(tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_shopping_time_pressure_duration_greater_than_1_hour_30_minutes -util_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,SHOPPING - Number of additional individual shop and maint. tours - Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.num_add_shop_maint_tours), 0)",coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes -util_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,SHOPPING - Number of additional individual shop and maint. tours - Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') &(df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.num_add_shop_maint_tours), 0)",coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes -util_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@np.where(((df.tour_type == 'shopping') & (df.start<12)), (np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear -util_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Square root,"@np.where(((df.tour_type == 'shopping') & (df.start<12)), (np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0))**0.5, 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root -util_shopping_departure_constant_before_9_am,SHOPPING - Departure Constant: Before 09:00 AM,@((df.tour_type == 'shopping') & (df.start<13)),coef_shopping_departure_constant_before_9_am -util_shopping_departure_constant_9_am_to_9_30_am,SHOPPING - Departure Constant: 09:00 AM - 09:30 AM,@((df.tour_type == 'shopping') & (df.start==13)),coef_shopping_departure_constant_9_am_to_9_30_am -util_shopping_departure_constant_9_30_am_to_10_am,SHOPPING - Departure Constant: 09:30 AM - 10:00 AM,@((df.tour_type == 'shopping') & (df.start==14)),coef_shopping_departure_constant_9_30_am_to_10_am -util_shopping_departure_constant_10_am_to_10_30_am,SHOPPING - Departure Constant: 10:00 AM - 10:30 AM,@((df.tour_type == 'shopping') & (df.start==15)),coef_shopping_departure_constant_10_am_to_10_30_am -util_shopping_departure_constant_10_30_am_to_11_00_am,SHOPPING - Departure Constant: 10:30 AM - 11:00 AM,@((df.tour_type == 'shopping') & (df.start==16)),coef_shopping_departure_constant_10_30_am_to_11_00_am -util_shopping_departure_constant_after_11_am,SHOPPING - Departure Constant: After 11:00 AM,@((df.tour_type == 'shopping') & (df.start>16)),coef_shopping_departure_constant_after_11_am -util_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.tour_type == 'shopping') & (df.start>17)), (np.where((df.start<12), np.minimum(12-df.start,7),0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear -util_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Squared,"@np.where(((df.tour_type == 'shopping') & (df.start>17)), ((np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)) ** 2), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared -util_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear,SHOPPING - Arrival Constant: Shift for every 30 minutes before 12:00 pm - Linear,"@np.where(((df.tour_type == 'shopping') & (df.end<19)), (np.where ((df.end<19), np.minimum(19-df.end,10), 0) + np.where((df.end>38), np.minimum(df.end-38,5), 0)), 0)",coef_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear -util_shopping_arrival_constant_before_12_30_pm,SHOPPING - Arrival Constant: Before 12:30 PM,@((df.tour_type == 'shopping') & (df.end<20)),coef_shopping_arrival_constant_before_12_30_pm -util_shopping_arrival_constant_12_30_pm_to_3_pm,SHOPPING - Arrival Constant: 12:30 PM - 03:00 PM,@((df.tour_type == 'shopping') & ( df.end>=20) & (df.end<=24)),coef_shopping_arrival_constant_12_30_pm_to_3_pm -util_shopping_arrival_constant_3_pm_to_3_30_pm,SHOPPING - Arrival Constant: 03:00 PM - 03:30 PM,@((df.tour_type == 'shopping') & (df.end==25)),coef_shopping_arrival_constant_3_pm_to_3_30_pm -util_shopping_arrival_constant_3_30_pm_to_4_pm,SHOPPING - Arrival Constant: 03:30 PM - 04:00 PM,@((df.tour_type == 'shopping') & (df.end==26)),coef_shopping_arrival_constant_3_30_pm_to_4_pm -util_shopping_arrival_constant_4_pm_to_4_30_pm,SHOPPING - Arrival Constant: 04:00 PM - 04:30 PM,@((df.tour_type == 'shopping') & (df.end==27)),coef_shopping_arrival_constant_4_pm_to_4_30_pm -util_shopping_arrival_constant_4_30_pm_to_5_pm,SHOPPING - Arrival Constant: 04:30 PM - 05:00 PM,@((df.tour_type == 'shopping') & (df.end==28)),coef_shopping_arrival_constant_4_30_pm_to_5_pm -util_shopping_arrival_constant_5_pm_to_5_30_pm,SHOPPING - Arrival Constant: 05:00 PM - 05:30 PM,@((df.tour_type == 'shopping') & (df.end==29)),coef_shopping_arrival_constant_5_pm_to_5_30_pm -util_shopping_arrival_constant_5_30_pm_to_7_pm,SHOPPING - Arrival Constant: 05:30 PM - 07:00 PM,@((df.tour_type == 'shopping') & (df.end>=30) & (df.end<=32)),coef_shopping_arrival_constant_5_30_pm_to_7_pm -util_shopping_arrival_constant_7_pm_to_9_30_pm,SHOPPING - Arrival Constant: 07:00 PM - 09:30 PM,@((df.tour_type == 'shopping') & (df.end>=33) & (df.end<=37)),coef_shopping_arrival_constant_7_pm_to_9_30_pm -util_shopping_arrival_constant_after_9_30_pm,SHOPPING - Arrival Constant: After 09:30 PM,@((df.tour_type == 'shopping') & (df.end>37)),coef_shopping_arrival_constant_after_9_30_pm -util_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear,SHOPPING - Arrival Constant: Shift for every 30 minutes after 10:00 pm - Linear,"@np.where(((df.tour_type == 'shopping') & (df.end>38)), (np.where((df.end<19), np.minimum(19-df.end,10), 0) + np.where ((df.end>38), np.minimum(df.end-38,5), 0)), 0)",coef_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear -util_shopping_duration_constant_0_hr,SHOPPING - Duration Constant: 0 hr,@((df.tour_type == 'shopping') & (df.duration==0)),coef_shopping_duration_constant_0_hr -util_shopping_duration_constant_30_minutes,SHOPPING - Duration Constant: 0.5 hr,@((df.tour_type == 'shopping') & (df.duration==1)),coef_shopping_duration_constant_30_minutes -util_shopping_duration_constant_1_hr,SHOPPING - Duration Constant: 1 hr,@((df.tour_type == 'shopping') & (df.duration==2)),coef_shopping_duration_constant_1_hr -util_shopping_duration_constant_1_hour_30_minutes,SHOPPING - Duration Constant: 1.5hrs,@(df.tour_type == 'shopping') & (df.duration==3),coef_shopping_duration_constant_1_hour_30_minutes -util_shopping_duration_constant_2_hrs,SHOPPING - Duration Constant: 2 hrs,@((df.tour_type == 'shopping') & (df.duration==4)),coef_shopping_duration_constant_2_hrs -util_shopping_duration_constant_longer_than_2_hrs,SHOPPING - Duration Constant: Longer than 2 hrs,@((df.tour_type == 'shopping') & (df.duration>4)),coef_shopping_duration_constant_longer_than_2_hrs -util_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear,SHOPPING - Duration Constant: Duration > 2.5 hrs - Linear,"@np.where(((df.tour_type == 'shopping') & (df.duration>5)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,26), 0)), 0)",coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear -util_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root,SHOPPING - Duration Constant: Duration > 2.5 hrs - Square root,"@np.where(((df.tour_type == 'shopping') & (df.duration>5)), ((np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,26), 0)) ** 0.5), 0)",coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root -util_shopping_calibration_constant_duration_1,SHOPPING - Calibration Constant - Duration = 1,@((df.tour_type == 'shopping') & (df.duration==0)),coef_shopping_calibration_constant_duration_1 -util_shopping_calibration_constant_duration_2,SHOPPING - Calibration Constant - Duration = 2,@((df.tour_type == 'shopping') & (df.duration==1)),coef_shopping_calibration_constant_duration_2 -util_shopping_calibration_constant_duration_3,SHOPPING - Calibration Constant - Duration = 3,@((df.tour_type == 'shopping') & (df.duration==2)),coef_shopping_calibration_constant_duration_3 -#MAINTENANCE,#MAINTENANCE,,#MAINTENANCE -util_maintenance_driving_age_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Driving age student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 6)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_driving_age_student_duration_greater_than_1_hour_30_minutes -util_maintenance_full_time_worker_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Full-time worker: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_full_time_worker_duration_greater_than_1_hour_30_minutes -util_maintenance_non_driving_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Non-driving Student: Duration > 1.5 hrs,"@np.where (((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & ((df.ptype == 7)|(df.ptype == 8))), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_non_driving_student_duration_greater_than_1_hour_30_minutes -util_maintenance_pre_school_child_duration_less_than_1_hour_30_minutes,MAINTENANCE - Pre-school Child: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.ptype == 8)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_pre_school_child_duration_less_than_1_hour_30_minutes -util_maintenance_part_time_worker_duration_less_than_1_hour_30_minutes,MAINTENANCE - Part Time Worker: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_part_time_worker_duration_less_than_1_hour_30_minutes -util_maintenance_part_time_worker_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Part Time Worker: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_part_time_worker_duration_greater_than_1_hour_30_minutes -util_maintenance_retired_duration_less_than_1_hour_30_minutes,MAINTENANCE - Retired: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_retired_duration_less_than_1_hour_30_minutes -util_maintenance_retired_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Retired: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_retired_duration_greater_than_1_hour_30_minutes -util_maintenance_university_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - University Student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 3)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_university_student_duration_greater_than_1_hour_30_minutes -util_maintenance_female_duration_less_than_1_hour_30_minutes,MAINTENANCE - Female: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_female_duration_less_than_1_hour_30_minutes -util_maintenance_female_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Female: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_female_duration_greater_than_1_hour_30_minutes -util_maintenance_low_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Low Income (<=$25,000): Duration > 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_less25K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_low_income_duration_greater_than_1_hour_30_minutes -util_maintenance_medium_income_duration_less_than_1_hour_30_minutes,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration < 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_income_duration_less_than_1_hour_30_minutes -util_maintenance_medium_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration > 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_25K_to_60K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_income_duration_greater_than_1_hour_30_minutes -util_maintenance_medium_high_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Medium-High Income ($60,001 to $120,00): Duration > 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_60K_to_120K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_high_income_duration_greater_than_1_hour_30_minutes -util_maintenance_distance_duration_less_than_1_hour_30_minutes,MAINTENANCE - Distance: Duration < 1.5 hrs,"@np.where(((df.tour_type == 'othmaint') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.origin_to_destination_distance), 0)",coef_maintenance_distance_duration_less_than_1_hour_30_minutes -util_maintenance_distance_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Distance: Duration > 1.5 hrs,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_maintenance_distance_duration_greater_than_1_hour_30_minutes -util_maintenance_time_pressure_duration_greater_than_1_hour_30_minutes,Time Pressure - Duration > 1.5 hrs,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), np.minimum(df.duration-2,26) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_maintenance_time_pressure_duration_greater_than_1_hour_30_minutes -util_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,MAINTENANCE - Number of additional individual shop and maint. tours - Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint')&(df.tour_type == 'othmaint')&(df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.num_add_shop_maint_tours), 0)",coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes -util_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Number of additional individual shop and maint. tours - Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint')&(df.tour_type == 'othmaint')&(df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.num_add_shop_maint_tours), 0)",coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes -util_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.start<10)), (np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear -util_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Square Root,"@np.where(((df.tour_type == 'othmaint') & (df.start<10)), ((np.where((df.start<10), np.minimum(10-df.start,7), 0) + (np.where((df.start>17), np.minimum(df.start-17,24), 0)))** 0.5), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root -util_maintenance_departure_constant_before_8_am,MAINTENANCE - Departure Constant: Before 08:00 AM,@((df.tour_type == 'othmaint') & (df.start<11)),coef_maintenance_departure_constant_before_8_am -util_maintenance_departure_constant_8_am_to_8_30_am,MAINTENANCE - Departure Constant: 08:00 AM - 08:30 AM,@((df.tour_type == 'othmaint') & (df.start==11)),coef_maintenance_departure_constant_8_am_to_8_30_am -util_maintenance_departure_constant_8_30_am_to_9_00_am,MAINTENANCE - Departure Constant: 08:30 AM - 09:00 AM,@((df.tour_type == 'othmaint') & (df.start==12)),coef_maintenance_departure_constant_8_30_am_to_9_00_am -util_maintenance_departure_constant_9_am_to_9_30_am,MAINTENANCE - Departure Constant: 09:00 AM - 09:30 AM,@((df.tour_type == 'othmaint') & (df.start==13)),coef_maintenance_departure_constant_9_am_to_9_30_am -util_maintenance_departure_constant_9_30_am_to_10_am,MAINTENANCE - Departure Constant: 09:30 AM - 10:00 AM,@((df.tour_type == 'othmaint') & (df.start==14)),coef_maintenance_departure_constant_9_30_am_to_10_am -util_maintenance_departure_constant_10_am_to_10_30_am,MAINTENANCE - Departure Constant: 10:00 AM - 10:30 AM,@((df.tour_type == 'othmaint') & (df.start==15)),coef_maintenance_departure_constant_10_am_to_10_30_am -util_maintenance_departure_constant_10_30_am_to_11_am,MAINTENANCE - Departure Constant: 10:30 AM - 11:00 AM,@((df.tour_type == 'othmaint') & (df.start==16)),coef_maintenance_departure_constant_10_30_am_to_11_am -util_maintenance_departure_constant_after_11_am,MAINTENANCE - Departure Constant: After 11:00 AM,@((df.tour_type == 'othmaint') & (df.start>16)),coef_maintenance_departure_constant_after_11_am -util_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.start>17)), np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear -util_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Squared,"@np.where(((df.tour_type == 'othmaint') & (df.start>17)), ((np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)) ** 2), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared -util_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes before 10:00 am - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.end<15)), (np.where((df.end<15), np.minimum(15-df.end,9), 0) + np.where((df.end>28), np.minimum(df.end-28,16), 0)), 0)",coef_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear -util_maintenance_arrival_constant_before_10_30_am,MAINTENANCE - Arrival Constant: Before 10:30 AM,@((df.tour_type == 'othmaint') & (df.end<16)),coef_maintenance_arrival_constant_before_10_30_am -util_maintenance_arrival_constant_10_30_am_to_11_am,MAINTENANCE - Arrival Constant: 10:30 AM - 11:00 AM,@((df.tour_type == 'othmaint') & (df.end==16)),coef_maintenance_arrival_constant_10_30_am_to_11_am -util_maintenance_arrival_constant_11_am_to_11_30_am,MAINTENANCE - Arrival Constant: 11:00 AM - 11:30 AM,@((df.tour_type == 'othmaint') & (df.end==17)),coef_maintenance_arrival_constant_11_am_to_11_30_am -util_maintenance_arrival_constant_11_30_am_to_1_30_pm,MAINTENANCE - Arrival Constant: 11:30 AM - 01:30 PM,@((df.tour_type == 'othmaint') & (df.end>=18) & (df.end<=21)),coef_maintenance_arrival_constant_11_30_am_to_1_30_pm -util_maintenance_arrival_constant_1_30_pm_to_2_30_pm,MAINTENANCE - Arrival Constant: 01:30 PM - 02:30 PM,@((df.tour_type == 'othmaint') & (df.end>=22) & (df.end<=23)),coef_maintenance_arrival_constant_1_30_pm_to_2_30_pm -util_maintenance_arrival_constant_2_30_pm_to_4_pm,MAINTENANCE - Arrival Constant: 02:30 PM - 04:00 PM,@((df.tour_type == 'othmaint') & (df.end>=24) & (df.end<=26)),coef_maintenance_arrival_constant_2_30_pm_to_4_pm -util_maintenance_arrival_constant_4_pm_to_4_30_pm,MAINTENANCE - Arrival Constant: 04:00 PM - 04:30 PM,@((df.tour_type == 'othmaint') & (df.end==27)),coef_maintenance_arrival_constant_4_pm_to_4_30_pm -util_maintenance_arrival_constant_after_4_30_pm,MAINTENANCE - Arrival Constant: After 04:30 PM,@((df.tour_type == 'othmaint') & (df.end>27)),coef_maintenance_arrival_constant_after_4_30_pm -util_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.end>28)), (np.where((df.end<15), np.minimum(15-df.end,9), 0) + np.where((df.end>28), np.minimum(df.end-28,16), 0)), 0)",coef_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear -util_maintenance_duration_constant_0_hr,MAINTENANCE - Duration Constant: 0 hr,@((df.tour_type == 'othmaint') & (df.duration==0)),coef_maintenance_duration_constant_0_hr -util_maintenance_duration_constant_30_minutes,MAINTENANCE - Duration Constant: 0.5 hr,@((df.tour_type == 'othmaint') & (df.duration==1)),coef_maintenance_duration_constant_30_minutes -util_maintenance_duration_constant_longer_than_30_minutes,MAINTENANCE - Duration Constant: Longer than 0.5 hr,@((df.tour_type == 'othmaint') & (df.duration>1)),coef_maintenance_duration_constant_longer_than_30_minutes -util_maintenance_duration_constant_duration_greater_than_1_hr_linear,MAINTENANCE - Duration Constant: Duration > 1 hr - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_duration_constant_duration_greater_than_1_hr_linear -util_maintenance_duration_constant_duration_greater_than_1_hr_square_root,MAINTENANCE - Duration Constant: Duration > 1 hr - Square Root,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), ((np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0))** 0.5), 0)",coef_maintenance_duration_constant_duration_greater_than_1_hr_square_root -util_maintenance_calibration_constant_duration_1,MAINTENANCE - Calibration Constant - Duration = 1,@((df.tour_type == 'othmaint') & (df.duration==0)),coef_maintenance_calibration_constant_duration_1 -util_maintenance_calibration_constant_duration_2,MAINTENANCE - Calibration Constant - Duration = 2,@((df.tour_type == 'othmaint') & (df.duration==1)),coef_maintenance_calibration_constant_duration_2 -util_maintenance_calibration_constant_duration_3,MAINTENANCE - Calibration Constant - Duration = 3,@((df.tour_type == 'othmaint') & (df.duration==2)),coef_maintenance_calibration_constant_duration_3 -util_maintenance_calibration_constant_duration_4,MAINTENANCE - Calibration Constant - Duration = 4,@((df.tour_type == 'othmaint') & (df.duration==3)),coef_maintenance_calibration_constant_duration_4 -util_maintenance_calibration_constant_duration_5,MAINTENANCE - Calibration Constant - Duration = 5,@((df.tour_type == 'othmaint') & (df.duration==4)),coef_maintenance_calibration_constant_duration_5 -#EAT-OUT,#EAT-OUT,,#EAT-OUT -util_eatout_distance_to_destination_duration_less_than_1_hr,EAT-OUT - Distance to destination - Duration < 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)) * (df.origin_to_destination_distance), 0)",coef_eatout_distance_to_destination_duration_less_than_1_hr -util_eatout_distance_to_destination_duration_greater_than_1_hr,EAT-OUT - Distance to destination - Duration > 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)) *(df.origin_to_destination_distance), 0)",coef_eatout_distance_to_destination_duration_greater_than_1_hr -util_eatout_low_income_duration_less_than_1_hr,EAT-OUT - Low income (<25000) - Duration < 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.is_income_less25K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_low_income_duration_less_than_1_hr -util_eatout_medium_income_duration_less_than_1_hr,EAT-OUT - Medium (25k to 60k) - Duration < 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_medium_income_duration_less_than_1_hr -util_eatout_zeroauto_HH_duration_greater_than_1_hr,EAT-OUT - Zero auto HH - Duration > 1 hrs,"@np.where(((df.tour_type == 'eatout') & (df.auto_ownership == 0) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_zeroauto_HH_duration_greater_than_1_hr -util_eatout_university_student_departure_after_7_pm_linear,EAT-OUT - University student - Departure after 7:00 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.start>32) & (df.ptype == 3)), (np.where((df.start<=32), np.minimum(32-df.start,29), 0) + np.where((df.start>32), np.minimum(df.start-32,8), 0)), 0)",coef_eatout_university_student_departure_after_7_pm_linear -util_eatout_female_duration_less_than_1_hr,EAT-OUT - Female - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_female_duration_less_than_1_hr -util_eatout_female_duration_greater_than_1_hr,EAT-OUT - Female - Duration > 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_female_duration_greater_than_1_hr -util_eatout_time_pressure_departure_before_6_30_pm,EAT-OUT - Time Pressure - Departure before 6:30 pm,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start<32)), (np.minimum(32-df.start,29)) * (np.log10 (30 *(tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_eatout_time_pressure_departure_before_6_30_pm -util_eatout_time_pressure_duration_less_than_1_hr,EAT-OUT - Time Pressure - Duration < 1 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.duration<2)), np.minimum(2-df.duration,47) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_eatout_time_pressure_duration_less_than_1_hr -util_eatout_departure_constant_7_30_am_to_9_am,EAT-OUT - Departure Constant: 07:30 AM - 09:00 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start>=10) & (df.start<=12)),coef_eatout_departure_constant_7_30_am_to_9_am -util_eatout_departure_constant_10_30_am_to_11_am,EAT-OUT - Departure Constant: 10:30 AM - 11:00 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==16)),coef_eatout_departure_constant_10_30_am_to_11_am -util_eatout_departure_constant_11_am_to_11_30_am,EAT-OUT - Departure Constant: 11:00 AM - 11:30 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==17)),coef_eatout_departure_constant_11_am_to_11_30_am -util_eatout_departure_constant_11_30_am_to_12_pm,EAT-OUT - Departure Constant: 11:30 AM - 12:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==18)),coef_eatout_departure_constant_11_30_am_to_12_pm -util_eatout_departure_constant_12_pm_to_12_30_pm,EAT-OUT - Departure Constant: 12:00 PM - 12:30 PM,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.start==19)),coef_eatout_departure_constant_12_pm_to_12_30_pm -util_eatout_departure_constant_12_30_pm_to_1_pm,EAT-OUT - Departure Constant: 12:30 PM - 01:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==20)),coef_eatout_departure_constant_12_30_pm_to_1_pm -util_eatout_departure_constant_1_pm_to_1_30_pm,EAT-OUT - Departure Constant: 01:00 PM - 01:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==21)),coef_eatout_departure_constant_1_pm_to_1_30_pm -util_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear,EAT-OUT - Departure Constant: Shift for every 30 minutes before 05:30 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start<31)), (np.where((df.start<30), np.minimum(30-df.start,27), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear -util_eatout_departure_constant_before_6_pm,EAT-OUT - Departure Constant: Before 06:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start<31)),coef_eatout_departure_constant_before_6_pm -util_eatout_departure_constant_6_pm_to_6_30_pm,EAT-OUT - Departure Constant: 06:00 PM - 06:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==31)),coef_eatout_departure_constant_6_pm_to_6_30_pm -util_eatout_departure_constant_6_30_pm_to_7_pm,EAT-OUT - Departure Constant: 06:30 PM - 07:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==32)),coef_eatout_departure_constant_6_30_pm_to_7_pm -util_eatout_departure_constant_7_pm_to_7_30_pm,EAT-OUT - Departure Constant: 07:00 PM - 07:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==33)),coef_eatout_departure_constant_7_pm_to_7_30_pm -util_eatout_departure_constant_after_7_30_pm,EAT-OUT - Departure Constant: After 07:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start>33)),coef_eatout_departure_constant_after_7_30_pm -util_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,EAT-OUT - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start>34)), (np.where((df.start<30), np.minimum(30-df.start,27), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear -util_eatout_arrival_constant_9_30_am_to_11_am,EAT-OUT - Arrival Constant: 9:30 AM to 11:00 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end>=14) & (df.end<=16)),coef_eatout_arrival_constant_9_30_am_to_11_am -util_eatout_arrival_constant_12_30_pm_to_1_pm,EAT-OUT - Arrival Constant: 12:30 PM to 01:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==20)),coef_eatout_arrival_constant_12_30_pm_to_1_pm -util_eatout_arrival_constant_1_pm_to_1_30_pm,EAT-OUT - Arrival Constant: 01:00 PM to 01:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==21)),coef_eatout_arrival_constant_1_pm_to_1_30_pm -util_eatout_arrival_constant_1_30_pm_to_2_pm,EAT-OUT - Arrival Constant: 01:30 PM to 02:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==22)),coef_eatout_arrival_constant_1_30_pm_to_2_pm -util_eatout_arrival_constant_2_pm_to_2_30_pm,EAT-OUT - Arrival Constant: 02:00 PM to 02:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==23)),coef_eatout_arrival_constant_2_pm_to_2_30_pm -util_eatout_arrival_constant_2_30_pm_to_3_pm,EAT-OUT - Arrival Constant: 02:30 PM to 03:00 PM,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.end==24)),coef_eatout_arrival_constant_2_30_pm_to_3_pm -util_eatout_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes before 06:00 pm - Linear,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end<31)),coef_eatout_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear -util_eatout_arrival_constant_before_6_30_pm,EAT-OUT - Arrival Constant: Before 6:30 PM,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end<32)), (np.where((df.end<31), np.minimum(31-df.end,24), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_eatout_arrival_constant_before_6_30_pm -util_eatout_arrival_constant_6_30_pm_to_7_pm,EAT-OUT - Arrival Constant: 6:30 PM to 7:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==32)),coef_eatout_arrival_constant_6_30_pm_to_7_pm -util_eatout_arrival_constant_7_pm_to_7_30_pm,EAT-OUT - Arrival Constant: 7:00 PM to 7:30 PM,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.end==33)),coef_eatout_arrival_constant_7_pm_to_7_30_pm -util_eatout_arrival_constant_7_30_pm_to_8_pm,EAT-OUT - Arrival Constant: 7:30 PM to 8:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==34)),coef_eatout_arrival_constant_7_30_pm_to_8_pm -util_eatout_arrival_constant_8_pm_to_8_30_pm,EAT-OUT - Arrival Constant: 8:00 PM to 8:30 PM,@((df.tour_category != 'joint') &(df.tour_type == 'eatout') & (df.end==35)),coef_eatout_arrival_constant_8_pm_to_8_30_pm -util_eatout_arrival_constant_8_30_pm_to_9_pm,EAT-OUT - Arrival Constant: 8:30 PM to 9:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==36)),coef_eatout_arrival_constant_8_30_pm_to_9_pm -util_eatout_arrival_constant_after_9_pm,EAT-OUT - Arrival Constant: After 9:00 PM,@((df.tour_category != 'joint')& (df.tour_type == 'eatout') & (df.end>36)),coef_eatout_arrival_constant_after_9_pm -util_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end>37)), (np.where((df.end<31), np.minimum(31-df.end,24), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear -util_eatout_duration_constant_0_hour,EAT-OUT - Duration Constant: 0 hour,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.duration==0)),coef_eatout_duration_constant_0_hour -util_eatout_duration_constant_30_minutes,EAT-OUT - Duration Constant: 0.5 hour,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration==1)),coef_eatout_duration_constant_30_minutes -util_eatout_duration_constant_1_hour,EAT-OUT - Duration Constant: 1 hour,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration==2)),coef_eatout_duration_constant_1_hour -util_eatout_duration_constant_1_hour_30_minutes,EAT-OUT - Duration Constant: 1.5 hours,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration==3)),coef_eatout_duration_constant_1_hour_30_minutes -util_eatout_duration_constant_2_hours,EAT-OUT - Duration Constant: 2 hours,@((df.tour_category != 'joint')& (df.tour_type == 'eatout') & (df.duration==4)),coef_eatout_duration_constant_2_hours -util_eatout_duration_constant_2_hour_30_minutes_or_more,EAT-OUT - Duration Constant: 2.5 hours or more,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration>4)),coef_eatout_duration_constant_2_hour_30_minutes_or_more -util_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,EAT-OUT - Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration>5)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,11), 0)), 0)",coef_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear -util_eatout_calibration_constant_duration_1,EAT-OUT - Calibration Constant - Duration = 1,@((df.tour_type == 'eatout') & (df.duration==0)),coef_eatout_calibration_constant_duration_1 -util_eatout_calibration_constant_duration_2,EAT-OUT - Calibration Constant - Duration = 2,@((df.tour_type == 'eatout') & (df.duration==1)),coef_eatout_calibration_constant_duration_2 -util_eatout_calibration_constant_duration_3,EAT-OUT - Calibration Constant - Duration = 3,@((df.tour_type== 'eatout') & (df.duration==2)),coef_eatout_calibration_constant_duration_3 -util_eatout_calibration_constant_duration_4,EAT-OUT - Calibration Constant - Duration = 4,@((df.tour_type == 'eatout') & (df.duration==3)),coef_eatout_calibration_constant_duration_4 -util_eatout_calibration_constant_departure_1,EAT-OUT - Calibration Constant - Departure = 1,@((df.tour_type == 'eatout') & (df.start == 1)),coef_eatout_calibration_constant_departure_1 -util_eatout_calibration_constant_departure_2,EAT-OUT - Calibration Constant - Departure = 2,@((df.tour_type == 'eatout') & (df.start == 2)),coef_eatout_calibration_constant_departure_2 -util_eatout_calibration_constant_departure_3,EAT-OUT - Calibration Constant - Departure = 3,@((df.tour_type== 'eatout') & (df.start == 3)),coef_eatout_calibration_constant_departure_3 -util_eatout_calibration_constant_departure_17,EAT-OUT - Calibration Constant - Departure = 17,@((df.tour_type == 'eatout') & (df.start ==17)),coef_eatout_calibration_constant_departure_17 -util_eatout_calibration_constant_departure_18,EAT-OUT - Calibration Constant - Departure = 18,@((df.tour_type== 'eatout') & (df.start ==18)),coef_eatout_calibration_constant_departure_18 -util_eatout_calibration_constant_departure_19,EAT-OUT - Calibration Constant - Departure = 19,@((df.tour_type == 'eatout') & (df.start ==19)),coef_eatout_calibration_constant_departure_19 -util_eatout_calibration_constant_departure_20,EAT-OUT - Calibration Constant - Departure = 20,@((df.tour_type == 'eatout') & (df.start ==20)),coef_eatout_calibration_constant_departure_20 -util_eatout_calibration_constant_departure_21,EAT-OUT - Calibration Constant - Departure = 21,@((df.tour_type == 'eatout') & (df.start ==21)),coef_eatout_calibration_constant_departure_21 -#SOCIAL,#SOCIAL,,#SOCIAL -util_social_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Person< 18 years old: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear -util_social_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Person< 18 years old: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear -util_social_non_working_senior_or_retiree_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Non-working senior/ retiree: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3) & (df.ptype == 5)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_non_working_senior_or_retiree_duration_less_than_1_hr_30_minutes_linear -util_social_retiree_or_non_working_senior_only_HH_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Retiree/ Non-working senior only HH: Duration < 1.5 hrs - Linear,"@np.where(((df.retired_adults_only_hh) & (df.tour_type == 'social') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_retiree_or_non_working_senior_only_HH_duration_less_than_1_hr_30_minutes_linear -util_social_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Zero auto households: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership == 0) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_zero_auto_households_duration_less_than_1_hr_30_minutes_linear -util_social_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Zero auto households: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership == 0) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear -util_social_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Number of auto more than number of adults: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership > 0) &(df.auto_ownership > df.num_adults) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear -util_social_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Number of auto more than number of adults: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear -"# In CTRAMP, although the description below says duration is less than 1 hr, expression is for less than 1.5 hr",,, -util_social_auto_distance_duration_less_than_1_hr_linear,SOCIAL - Auto Distance: Duration < 1 hr - Linear,"@np.where(((df.tour_type == 'social') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0) * (df.origin_to_destination_distance)",coef_social_auto_distance_duration_less_than_1_hr_linear -util_social_auto_distance_duration_greater_than_1_hr_linear,SOCIAL - Auto Distance: Duration > 1 hr - Linear,"@np.where(((df.tour_type == 'social') & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0) * (df.origin_to_destination_distance) ",coef_social_auto_distance_duration_greater_than_1_hr_linear -util_social_time_pressure_duration_less_than_1_hr,SOCIAL - Time Pressure - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3)), np.minimum(3-df.duration,47), 0)* (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_social_time_pressure_duration_less_than_1_hr -util_social_time_pressure_duration_greater_than_1_hr,SOCIAL - Time Pressure - Duration > 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>3)), np.minimum(df.duration-3,47), 0) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_social_time_pressure_duration_greater_than_1_hr -util_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,SOCIAL - Number of additional individual social and dicretionary tours - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)) * (df.num_add_soc_discr_tours), 0)",coef_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr -util_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@(df.tour_type == 'social') & (df.start<12) * ((np.minimum(12-df.start,48)*(df.start<48)) + (np.minimum(df.start-48,48)*(df.start>48)))",coef_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear -util_social_departure_constant_before_9_am,SOCIAL - Departure Constant: Before 09:00 AM,@(df.tour_type == 'social') & (df.start<13),coef_social_departure_constant_before_9_am -util_social_departure_constant_9_am_to_9_30_am,SOCIAL - Departure Constant: 09:00 AM to 09:30 AM,@(df.tour_type == 'social') & (df.start==13),coef_social_departure_constant_9_am_to_9_30_am -util_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 05:00 pm - Linear,"@np.where((df.start<29), (np.where((df.start<29), np.minimum(29-df.start,8), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear -util_social_departure_constant_before_5_30_pm,SOCIAL - Departure Constant: Before 05:30 PM,@((df.tour_type == 'social') & (df.start<30)),coef_social_departure_constant_before_5_30_pm -util_social_departure_constant_5_30_pm_to_6_pm,SOCIAL - Departure Constant: 05:30 PM - 06:00 PM,@((df.tour_type == 'social') & (df.start==30)),coef_social_departure_constant_5_30_pm_to_6_pm -util_social_departure_constant_6_pm_to_6_30_pm,SOCIAL - Departure Constant: 06:00 PM - 06:30 PM,@((df.tour_type == 'social') & (df.start==31)),coef_social_departure_constant_6_pm_to_6_30_pm -util_social_departure_constant_6_30_pm_to_7_pm,SOCIAL - Departure Constant: 06:30 PM - 07:00 PM,@((df.tour_type == 'social') & (df.start==32)),coef_social_departure_constant_6_30_pm_to_7_pm -util_social_departure_constant_7_pm_to_7_30_pm,SOCIAL - Departure Constant: 07:00 PM - 07:30 PM,@((df.tour_type == 'social') & (df.start==33)),coef_social_departure_constant_7_pm_to_7_30_pm -util_social_departure_constant_after_7_30_pm,SOCIAL - Departure Constant: After 07:30 PM,@((df.tour_type == 'social') & (df.start>33)),coef_social_departure_constant_after_7_30_pm -util_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,SOCIAL - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where((df.start>34), (np.where((df.start<29), np.minimum(29-df.start,8), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear -util_social_arrival_constant_3_pm_to_3_30_pm,SOCIAL - Arrival Constant: 03:00 PM to 03:30 PM,@((df.tour_type == 'social') & (df.end==25)),coef_social_arrival_constant_3_pm_to_3_30_pm -util_social_arrival_constant_3_30_pm_to_4_pm,SOCIAL - Arrival Constant: 03:30 PM to 04:00 PM,@((df.tour_type == 'social') & (df.end==26)),coef_social_arrival_constant_3_30_pm_to_4_pm -util_social_arrival_constant_4_pm_to_4_30_pm,SOCIAL - Arrival Constant: 04:00 PM to 04:30 PM,@((df.tour_type == 'social') & (df.end==27)),coef_social_arrival_constant_4_pm_to_4_30_pm -util_social_arrival_constant_5_pm_to_6_pm,SOCIAL - Arrival Constant: 05:00 PM to 06:00 PM,@((df.tour_type == 'social') & (df.end>=29) & (df.end<=30)),coef_social_arrival_constant_5_pm_to_6_pm -util_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear,SOCIAL - Arrival Constant: Shift for every 30 minutes before 08:00 pm - Linear,"@np.where(((df.tour_type == 'social') & (df.end<35)), (np.where((df.end<35), np.minimum(35-df.end,48), 0) + np.where((df.end>40), np.minimum(df.end-40,48), 0)), 0)",coef_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear -util_social_arrival_constant_before_8_30_pm,SOCIAL - Arrival Constant: Before 8:30 PM,@((df.tour_type == 'social') & (df.end<36)),coef_social_arrival_constant_before_8_30_pm -util_social_arrival_constant_8_30_pm_to_9_pm,SOCIAL - Arrival Constant: 8:30 PM to 9:00 PM,@((df.tour_type == 'social') & (df.end==36)),coef_social_arrival_constant_8_30_pm_to_9_pm -util_social_arrival_constant_9_pm_to_9_30_pm,SOCIAL - Arrival Constant: 9:00 PM to 9:30 PM,@((df.tour_type == 'social') & (df.end==37)),coef_social_arrival_constant_9_pm_to_9_30_pm -util_social_arrival_constant_9_30_pm_to_10_pm,SOCIAL - Arrival Constant: 9:30 PM to10:00 PM,@((df.tour_type == 'social') & (df.end==38)),coef_social_arrival_constant_9_30_pm_to_10_pm -util_social_arrival_constant_10_pm_to_10_30_pm,SOCIAL - Arrival Constant: 10:00 PM to 10:30 PM,@((df.tour_type == 'social') & (df.end==39)),coef_social_arrival_constant_10_pm_to_10_30_pm -util_social_arrival_constant_after_10_30_pm,SOCIAL - Arrival Constant: After 10:30 PM,@((df.tour_type == 'social') & (df.end>39)),coef_social_arrival_constant_after_10_30_pm -util_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear,SOCIAL - Arrival Constant: Shift for every 30 minutes after 11:00 pm - Linear,"@np.where(((df.tour_type == 'social') & (df.end>40)), (np.where((df.end<35), np.minimum(35-df.end,48), 0) +np.where((df.end>40),np.minimum(df.end-40,48),0)), 0)",coef_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear -util_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear,SOCIAL - Duration Constant: Shift for every 30 minutes less than 2.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<5)), (np.where((df.duration<5), np.minimum(5-df.duration,47), 0) + np.where((df.duration>7), np.minimum(df.duration-7,47), 0)), 0)",coef_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear -util_social_duration_constant_less_than_3_hours,SOCIAL - Duration Constant: Less than 3 hrs,@((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<6)),coef_social_duration_constant_less_than_3_hours -util_social_duration_constant_3_hours,SOCIAL - Duration Constant: 3 hours,@((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration==6)),coef_social_duration_constant_3_hours -util_social_duration_constant_3_hrs_30_minutes,SOCIAL - Duration Constant: 3.5 hours,@((df.tour_category != 'joint')& (df.tour_type == 'social') & (df.duration==7)),coef_social_duration_constant_3_hrs_30_minutes -util_social_duration_constant_4_hours_or_more,SOCIAL - Duration Constant: 4 hours or more,@((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>7)),coef_social_duration_constant_4_hours_or_more -util_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear,SOCIAL - Duration Constant: Shift for every 30 minutes more than 4.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>8)), (np.where((df.duration<5), np.minimum(5-df.duration,47), 0) + np.where((df.duration>8), np.minimum(df.duration-8,47), 0)), 0)",coef_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear -util_social_calibration_constant_duration_1,SOCIAL - Calibration Constant - Duration = 1,@((df.tour_type == 'social') & (df.duration ==0)),coef_social_calibration_constant_duration_1 -util_social_calibration_constant_duration_2,SOCIAL - Calibration Constant - Duration = 2,@((df.tour_type == 'social') & (df.duration == 1)),coef_social_calibration_constant_duration_2 -util_social_calibration_constant_duration_3,SOCIAL - Calibration Constant - Duration = 3,@((df.tour_type == 'social') & (df.duration ==2)),coef_social_calibration_constant_duration_3 -util_social_calibration_constant_duration_4,SOCIAL - Calibration Constant - Duration = 4,@((df.tour_type == 'social') & (df.duration ==3)),coef_social_calibration_constant_duration_4 -util_social_calibration_constant_duration_5,SOCIAL - Calibration Constant - Duration = 5,@((df.tour_type == 'social') & (df.duration ==4)),coef_social_calibration_constant_duration_5 -util_social_calibration_constant_duration_6,SOCIAL - Calibration Constant - Duration = 6,@((df.tour_type == 'social') & (df.duration ==5)),coef_social_calibration_constant_duration_6 -util_social_calibration_constant_duration_7,SOCIAL - Calibration Constant - Duration = 7,@((df.tour_type == 'social') & (df.duration ==6)),coef_social_calibration_constant_duration_7 -util_social_calibration_constant_duration_8,SOCIAL - Calibration Constant - Duration = 8,@((df.tour_type == 'social') & (df.duration ==7)),coef_social_calibration_constant_duration_8 -util_social_calibration_constant_duration_9,SOCIAL - Calibration Constant - Duration = 9,@((df.tour_type == 'social') & (df.duration ==8)),coef_social_calibration_constant_duration_9 -#DISCRETIONARY,#DISCRETIONARY,,#DISCRETIONARY -util_discretionary_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Person< 18 years old: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear -util_discretionary_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Person< 18 years old: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear -util_discretionary_non_working_senior_retiree_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Non-working senior/ retiree: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3) & (df.ptype == 5)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_non_working_senior_retiree_duration_less_than_1_hr_30_minutes_linear -util_discretionary_retiree_non_working_senior_only_HH_duration_1_hr_30_minutes_linear,DISCRETIONARY - Retiree/ Non-working senior only HH: Duration < 1.5 hrs - Linear,"@np.where(((df.retired_adults_only_hh) & (df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_retiree_non_working_senior_only_HH_duration_1_hr_30_minutes_linear -util_discretionary_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Zero auto households: Duration < 1.5 hrs - Linear,"@np.where(((df.auto_ownership == 0) & (df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_zero_auto_households_duration_less_than_1_hr_30_minutes_linear -util_discretionary_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Zero auto households: Duration > 1.5 hrs - Linear,"@np.where(((df.auto_ownership == 0) & (df.tour_type == 'othdiscr') & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear -util_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Number of auto more that number of adults: Duration < 1.5 hrs - Linear,"@np.where(((df.auto_ownership > 0) & (df.tour_type == 'othdiscr') & (df.auto_ownership > df.num_adults) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)),0)",coef_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear -util_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Number of auto more that number of adults: Duration > 1.5 hrs - Linear,"@np.where(((df.auto_ownership > 0) &(df.tour_type == 'othdiscr')&(df.auto_ownership > df.num_adults) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear -"# In CTRAMP, although the description below says duration is less than 1 hr, expression is for less than 1.5 hr",,, -util_discretionary_auto_distance_duration_less_than_1_hr_linear,DISCRETIONARY - Auto Distance: Duration < 1 hr - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_discretionary_auto_distance_duration_less_than_1_hr_linear -util_discretionary_auto_distance_duration_greater_than_1_hr_linear,DISCRETIONARY - Auto Distance: Duration > 1 hr - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_discretionary_auto_distance_duration_greater_than_1_hr_linear -util_discretionary_time_pressure_duration_less_than_1_hr,DISCRETIONARY - Time Pressure - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3)), np.minimum(3-df.duration,47), 0) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_discretionary_time_pressure_duration_less_than_1_hr -util_discretionary_time_pressure_duration_greater_than_1_hr,DISCRETIONARY - Time Pressure - Duration > 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3)), np.minimum(df.duration-3,47) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_discretionary_time_pressure_duration_greater_than_1_hr -util_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,DISCRETIONARY - Number of additional individual social and dicretionary tours - Duration < 1 hr,"@np.where(((df.tour_category != 'joint')&(df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0))*(df.num_add_soc_discr_tours),0)",coef_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr -util_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 07:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.start<9)), (np.where((df.start<9), np.minimum(9-df.start,48), 0) + np.where((df.start>48), np.minimum(df.start-48,48),0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear -util_discretionary_departure_constant_before_7_30_am,DISCRETIONARY - Departure Constant: Before 7:30 AM ,@((df.tour_type == 'othdiscr') & (df.start<10)),coef_discretionary_departure_constant_before_7_30_am -util_discretionary_departure_constant_7_30_am_to_8_am,DISCRETIONARY - Departure Constant: 7:30 AM to 8:00 AM,@((df.tour_type == 'othdiscr') & (df.start==10)),coef_discretionary_departure_constant_7_30_am_to_8_am -util_discretionary_departure_constant_8_am_to_8_30_am,DISCRETIONARY - Departure Constant: 8:00 AM to 8:30 AM,@((df.tour_type == 'othdiscr') & (df.start==11)),coef_discretionary_departure_constant_8_am_to_8_30_am -util_discretionary_departure_constant_8_30_am_to_9_am,DISCRETIONARY - Departure Constant: 8:30 AM to 9:00 AM,@((df.tour_type == 'othdiscr') & (df.start==12)),coef_discretionary_departure_constant_8_30_am_to_9_am -util_discretionary_departure_constant_9_am_to_9_30_am,DISCRETIONARY - Departure Constant: 9:00 AM to 9:30 AM,@((df.tour_type == 'othdiscr') & (df.start==13)),coef_discretionary_departure_constant_9_am_to_9_30_am -util_discretionary_departure_constant_9_30_am_to_10_am,DISCRETIONARY - Departure Constant: 9:30 AM to 10:00 AM,@((df.tour_type == 'othdiscr') & (df.start==14)),coef_discretionary_departure_constant_9_30_am_to_10_am -util_discretionary_departure_constant_10_am_to_10_30_am,DISCRETIONARY - Departure Constant: 10:00 AM to 10:30 AM,@((df.tour_type == 'othdiscr') & (df.start==15)),coef_discretionary_departure_constant_10_am_to_10_30_am -util_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 04:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.start<28)), (np.where((df.start<28), np.minimum(28-df.start,8),0) + np.where((df.start>33), np.minimum(df.start-33,6), 0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear -util_discretionary_departure_constant_before_5_pm,DISCRETIONARY - Departure Constant: Before 05:00 PM,@((df.tour_type == 'othdiscr') & (df.start<29)),coef_discretionary_departure_constant_before_5_pm -util_discretionary_departure_constant_5_pm_to_5_30_pm,DISCRETIONARY - Departure Constant: 05:00 PM - 05:30 PM,@((df.tour_type == 'othdiscr') & (df.start==29)),coef_discretionary_departure_constant_5_pm_to_5_30_pm -util_discretionary_departure_constant_5_30_pm_to_6_pm,DISCRETIONARY - Departure Constant: 05:30 PM - 06:00 PM,@((df.tour_type == 'othdiscr') & (df.start==30)),coef_discretionary_departure_constant_5_30_pm_to_6_pm -util_discretionary_departure_constant_6_pm_to_6_30_pm,DISCRETIONARY - Departure Constant: 06:00 PM - 06:30 PM,@((df.tour_type == 'othdiscr') & (df.start==31)),coef_discretionary_departure_constant_6_pm_to_6_30_pm -util_discretionary_departure_constant_6_30_pm_to_7_pm,DISCRETIONARY - Departure Constant: 06:30 PM - 07:00 PM,@((df.tour_type == 'othdiscr') & (df.start==32)),coef_discretionary_departure_constant_6_30_pm_to_7_pm -util_discretionary_departure_constant_after_7_pm,DISCRETIONARY - Departure Constant: After 07:00 PM,@((df.tour_type == 'othdiscr') & (df.start>32)),coef_discretionary_departure_constant_after_7_pm -util_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes after 07:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.start>33)), (np.where((df.start<28), np.minimum(28-df.start,8), 0) + np.where((df.start>33), np.minimum(df.start-33,6), 0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear -util_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes before 06:00 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.end<31)), (np.where((df.end<31), np.minimum(31-df.end,48), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear -util_discretionary_arrival_constant_before_6_30_pm,DISCRETIONARY - Arrival Constant: Before 6:30 PM,@((df.tour_type == 'othdiscr') & (df.end<32)),coef_discretionary_arrival_constant_before_6_30_pm -util_discretionary_arrival_constant_6_30_pm_to_7_pm,DISCRETIONARY - Arrival Constant: 6:30 PM to 7:00 PM,@((df.tour_type == 'othdiscr') & (df.end==32)),coef_discretionary_arrival_constant_6_30_pm_to_7_pm -util_discretionary_arrival_constant_7_pm_to_7_30_pm,DISCRETIONARY - Arrival Constant: 7:00 PM to 7:30 PM,@((df.tour_type == 'othdiscr') & (df.end==33)),coef_discretionary_arrival_constant_7_pm_to_7_30_pm -util_discretionary_arrival_constant_7_30_pm_to_8_pm,DISCRETIONARY - Arrival Constant: 7:30 PM to 8:00 PM,@((df.tour_type == 'othdiscr') & (df.end==34)),coef_discretionary_arrival_constant_7_30_pm_to_8_pm -util_discretionary_arrival_constant_8_pm_to_8_30_pm,DISCRETIONARY - Arrival Constant: 8:00 PM to 8:30 PM,@((df.tour_type == 'othdiscr') & (df.end==35)),coef_discretionary_arrival_constant_8_pm_to_8_30_pm -util_discretionary_arrival_constant_8_30_pm_to_9_pm,DISCRETIONARY - Arrival Constant: 8:30 PM to 9:00 PM,@((df.tour_type == 'othdiscr') & (df.end==36)),coef_discretionary_arrival_constant_8_30_pm_to_9_pm -util_discretionary_arrival_constant_after_9_pm,DISCRETIONARY - Arrival Constant: After 9:00 PM,@((df.tour_type == 'othdiscr') & (df.end>36)),coef_discretionary_arrival_constant_after_9_pm -util_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.end>37)), (np.where((df.end<31), np.minimum(31-df.end,48), 0) + np.where((df.end>37), np.minimum(df.end-37,48),0)), 0)",coef_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear -util_discretionary_duration_constant_0_hour,DISCRETIONARY - Duration Constant: 0 hour,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==0)),coef_discretionary_duration_constant_0_hour -util_discretionary_duration_constant_30_minutes,DISCRETIONARY -Duration Constant: 0.5 hour,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==1)),coef_discretionary_duration_constant_30_minutes -util_discretionary_duration_constant_1_hour,DISCRETIONARY -Duration Constant: 1 hour,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==2)),coef_discretionary_duration_constant_1_hour -util_discretionary_duration_constant_1_hr_30_minutes,DISCRETIONARY -Duration Constant: 1.5 hours,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==3)),coef_discretionary_duration_constant_1_hr_30_minutes -util_discretionary_duration_constant_2_hours,DISCRETIONARY -Duration Constant: 2 hours,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==4)),coef_discretionary_duration_constant_2_hours -util_discretionary_duration_constant_2_hr_30_minutes,DISCRETIONARY -Duration Constant: 2.5 hours,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==5)),coef_discretionary_duration_constant_2_hr_30_minutes -util_discretionary_duration_constant_3_hours_or_more,DISCRETIONARY -Duration Constant: 3 hours or more,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>5)),coef_discretionary_duration_constant_3_hours_or_more -util_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,DISCRETIONARY -Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>6)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>6), np.minimum(df.duration-6,47), 0)), 0)",coef_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear -util_discretionary_calibration_constant_duration_4,DISCRETIONARY -Calibration Constant - Duration = 4,@((df.tour_type == 'othdiscr') & (df.duration==3)),coef_discretionary_calibration_constant_duration_4 -util_discretionary_calibration_constant_duration_5,DISCRETIONARY -Calibration Constant - Duration = 5,@((df.tour_type == 'othdiscr') & (df.duration==4)),coef_discretionary_calibration_constant_duration_5 -util_discretionary_calibration_constant_departure_29,DISCRETIONARY -Calibration Constant - Departure = 29,@((df.tour_type == 'othdiscr') & (df.start==29)),coef_discretionary_calibration_constant_departure_29 -util_discretionary_calibration_constant_departure_30,DISCRETIONARY -Calibration Constant - Departure = 30,@((df.tour_type == 'othdiscr') & (df.start==30)),coef_discretionary_calibration_constant_departure_30 -util_discretionary_calibration_constant_departure_31,DISCRETIONARY -Calibration Constant - Departure = 31,@((df.tour_type == 'othdiscr') & (df.start==31)),coef_discretionary_calibration_constant_departure_31 -util_discretionary_calibration_constant_departure_32,DISCRETIONARY -Calibration Constant - Departure = 32,@((df.tour_type == 'othdiscr') & (df.start==32)),coef_discretionary_calibration_constant_departure_32 diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shift_out.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shift_out.csv deleted file mode 100755 index 05b6b8ba9..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shift_out.csv +++ /dev/null @@ -1,348 +0,0 @@ -Label,Description,Expression,Coefficient -# ESCORT,,, -util_escort_mode_choice_logsum,ESCORT - Mode Choice Logsum,"@np.where(df.tour_type == 'escort', df.mode_choice_logsum, 0) ",coef_escort_mode_choice_logsum -"#Note: In CTRAMP expressions, duration alternative is from 1 to 48 but in ActivitySim, it is from 0 to 47 since the duration alternative ID was calculated as (end - start). Therefore, duration in ActivitySim expression = CTRAMP duration expresssion - 1 ",,,# -util_escort_distance_to_destination_duration_less_than_30_minutes,ESCORT - Distance to destination - Duration less than 0.5 hour (depart and arrive in the same period),"@np.where(((df.tour_type == 'escort') & (df.duration<1)), ((df.origin_to_destination_distance) * df.durationShift_escort), 0)",coef_escort_distance_to_destination_duration_less_than_30_minutes -util_escort_distance_to_destination_duration_greater_than_30_minutes,ESCORT - Distance to destination - Duration greater than 0.5 hour,"@np.where(((df.tour_type == 'escort') & (df.duration>1)), ((df.origin_to_destination_distance) * df.durationShift_escort), 0)",coef_escort_distance_to_destination_duration_greater_than_30_minutes -util_escort_fulltime_worker_departure_after_8_am_linear,ESCORT - Full-time worker - Departure after 8:00 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.start>10)), df.departureLinearShift1_escort,0)",coef_escort_fulltime_worker_departure_after_8_am_linear -"#Note: In CTRAMP expression file, the description below says departure is after 3 am but from the expression it seems that it would be 3 pm instead of 3 am",,, -util_escort_fulltime_worker_departure_after_3_am_linear,ESCORT - Full-time worker - Departure after 3:00 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.start>24)), df.departureLinearShift2_escort, 0)",coef_escort_fulltime_worker_departure_after_3_am_linear -util_escort_fulltime_worker_duration_less_than_30_minutes,ESCORT - Full-time worker - Duration < 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.duration<1)), df.durationShift_escort, 0)",coef_escort_fulltime_worker_duration_less_than_30_minutes -util_escort_fulltime_worker_duration_greater_than_30_minutes,ESCORT - Full-time worker - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 1) & (df.duration>1)), df.durationShift_escort, 0)",coef_escort_fulltime_worker_duration_greater_than_30_minutes -util_escort_university_student_duration_less_than_30_minutes,ESCORT - University student - Duration < 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 3) & (df.duration<1)), df.durationShift_escort, 0)",coef_escort_university_student_duration_less_than_30_minutes -util_escort_non_driving_age_student_duration_greater_than_30_minutes,ESCORT - Non-driving age student - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & ((df.ptype == 7)|(df.ptype == 8)) & (df.duration>1)), df.durationShift_escort, 0)",coef_escort_non_driving_age_student_duration_greater_than_30_minutes -util_escort_driving_age_student_duration_less_than_30_minutes,ESCORT - Driving age student - Duration < 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 6) & (df.duration<1)), df.durationShift_escort, 0)",coef_escort_driving_age_student_duration_less_than_30_minutes -util_escort_driving_age_student_duration_greater_than_30_minutes,ESCORT - Driving age student - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 6) & (df.duration>1)), df.durationShift_escort, 0)",coef_escort_driving_age_student_duration_greater_than_30_minutes -"#Note: In CTRAMP expression file, description says the expression below is for duration > 0.5 hr but the expression says duration < 0.5 hr",,, -util_escort_pre_school_kid_duration_greater_than_30_minutes,ESCORT - Pre-school kid - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.ptype == 8) & (df.duration<1)), df.durationShift_escort, 0)",coef_escort_pre_school_kid_duration_greater_than_30_minutes -util_escort_med_high_income_duration_greater_than_30_minutes,ESCORT - Med-high income (60k to 120k) - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.is_income_60K_to_120K) & (df.duration>1)), df.durationShift_escort, 0)",coef_escort_med_high_income_duration_greater_than_30_minutes -util_escort_households_with_no_kids_departure_before_7_30_am,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 7:30 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start<10)), df.departureLinearShift1_escort, 0)",coef_escort_households_with_no_kids_departure_before_7_30_am -util_escort_households_with_no_kids_departure_after_8_00_am,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start>10)), df.departureLinearShift1_escort, 0)",coef_escort_households_with_no_kids_departure_after_8_00_am -util_escort_households_with_no_kids_departure_before_2_30_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Departure before 2:30 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start<24)), df.departureLinearShift2_escort, 0)",coef_escort_households_with_no_kids_departure_before_2_30_pm -util_escort_households_with_no_kids_departure_after_3_00_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.start>24)), df.departureLinearShift2_escort, 0)",coef_escort_households_with_no_kids_departure_after_3_00_pm -util_escort_households_with_no_kids_arrival_before_8_am,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end<11)), df.arrivalLinearShift1_escort, 0)",coef_escort_households_with_no_kids_arrival_before_8_am -util_escort_households_with_no_kids_arrival_after_8_30_am,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end>11)), df.arrivalLinearShift1_escort, 0)",coef_escort_households_with_no_kids_arrival_after_8_30_am -util_escort_households_with_no_kids_arrival_before_3_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end<25)), df.arrivalLinearShift2_escort, 0)",coef_escort_households_with_no_kids_arrival_before_3_pm -util_escort_households_with_no_kids_arrival_after_3_30_pm,"ESCORT - Households with no kids (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.tour_type == 'escort') & (df.num_children == 0) & (df.end>25)), df.arrivalLinearShift2_escort, 0)",coef_escort_households_with_no_kids_arrival_after_3_30_pm -util_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.start>10)), df.departureLinearShift1_escort, 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_8_am -util_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.start>24)), df.departureLinearShift2_escort, 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_departure_after_3_pm -util_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am,"ESCORT -Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.end<11)), df.arrivalLinearShift1_escort, 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_8_am -util_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm,"ESCORT - Pre-School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival before 3:00 PM","@np.where(((df.tour_type == 'escort') & (df.has_pre_school_child_with_mandatory > 0) & (df.end<25)), df.arrivalLinearShift2_escort, 0)",coef_escort_pre_school_child_in_hh_with_mandatory_tour_arrival_before_3_pm -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Departure after 8:00 AM","@np.where(((df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) & (df.start>10)), df.departureLinearShift1_escort, 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_departure_after_8_am -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 8:30 AM","@np.where(((df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) & (df.end>11)), df.arrivalLinearShift1_escort, 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_8_30_am -util_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm,"ESCORT - Driving age School Child in HH with Mandatory tour (Dummy- 1,0) - Arrival after 3:30 PM","@np.where(((df.tour_type == 'escort') & (df.has_driving_age_child_with_mandatory > 0) & (df.end>25)), df.arrivalLinearShift2_escort, 0)",coef_escort_driving_age_school_child_in_hh_with_mandatory_tour_arrival_after_3_30_pm -util_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes,ESCORT - Number of autos greater than number of adults - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>1)), df.durationShift_escort, 0)",coef_escort_number_of_autos_greater_than_number_of_adults_duration_greater_than_30_minutes -util_escort_number_of_individual_tours_duration_greater_than_30_minutes,ESCORT -Number of Individual Tours (excluding escorting) - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.num_non_escort_tours > 0) & (df.duration>1)), df.durationShift_escort*df.num_non_escort_tours, 0)",coef_escort_number_of_individual_tours_duration_greater_than_30_minutes -util_escort_number_of_joint_tours_duration_greater_than_30_minutes,ESCORT - Number of joint tours - Duration > 0.5 hr,"@np.where(((df.tour_type == 'escort') & (df.duration>1)), df.durationShift_escort *(df.num_joint_tours), 0)",coef_escort_number_of_joint_tours_duration_greater_than_30_minutes -util_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear,ESCORT - Departure Constant: Shift for every 30 minutes before 06:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.start<8)), df.depConstShift1_escort, 0)",coef_escort_departure_constant_shift_for_every_30_minutes_before_6_30_am_linear -util_escort_departure_constant_before_7_am,ESCORT - Departure Constant: Before 07:00 AM,@((df.tour_type == 'escort') & (df.start<9)),coef_escort_departure_constant_before_7_am -util_escort_departure_constant_7_am_to_7_30_am,ESCORT - Departure Constant: 07:00 AM - 07:30 AM,@((df.tour_type == 'escort') & (df.start==9)),coef_escort_departure_constant_7_am_to_7_30_am -util_escort_departure_constant_7_30_am_to_8_am,ESCORT - Departure Constant: 07:30 AM - 08:00 AM,@((df.tour_type == 'escort') & (df.start==10)),coef_escort_departure_constant_7_30_am_to_8_am -util_escort_departure_constant_8_am_to_8_30_am,ESCORT - Departure Constant: 08:00 AM - 08:30 AM,@((df.tour_type == 'escort') & (df.start==11)),coef_escort_departure_constant_8_am_to_8_30_am -util_escort_departure_constant_8_30_am_to_9_am,ESCORT - Departure Constant: 08:30 AM - 09:00 AM,@((df.tour_type == 'escort') & (df.start==12)),coef_escort_departure_constant_8_30_am_to_9_am -util_escort_departure_constant_after_9_am,ESCORT - Departure Constant: After 09:00 AM,@((df.tour_type == 'escort') & (df.start>12)),coef_escort_departure_constant_after_9_am -util_escort_departure_constant_1_30_pm_to_2_pm,ESCORT - Departure Constant: 01:30 PM - 02:00 PM,@((df.tour_type == 'escort') & (df.start==22)),coef_escort_departure_constant_1_30_pm_to_2_pm -util_escort_departure_constant_2_pm_to_2_30_pm,ESCORT - Departure Constant: 02:00 PM - 02:30 PM,@((df.tour_type == 'escort') & (df.start==23)),coef_escort_departure_constant_2_pm_to_2_30_pm -util_escort_departure_constant_2_30_pm_to_3_pm,ESCORT - Departure Constant: 02:30 PM - 03:00 PM,@((df.tour_type == 'escort') & (df.start==24)),coef_escort_departure_constant_2_30_pm_to_3_pm -util_escort_departure_constant_3_pm_to_3_30_pm,ESCORT - Departure Constant: 03:00 PM - 03:30 PM,@((df.tour_type == 'escort') & (df.start==25)),coef_escort_departure_constant_3_pm_to_3_30_pm -util_escort_departure_constant_after_3_30_pm,ESCORT - Departure Constant: After 03:30 PM,@((df.tour_type == 'escort') & (df.start>25)),coef_escort_departure_constant_after_3_30_pm -util_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear,ESCORT - Departure Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.start>13)), df.depConstShift1_escort, 0)",coef_escort_departure_constant_shift_for_every_30_minutes_after_9_30_am_linear -util_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear,ESCORT - Departure Constant: Shift for every 30 minutes after 4:00 pm - Linear,"@np.where(((df.tour_type == 'escort') & (df.start>26)), df.depConstShift2_escort, 0)",coef_escort_departure_constant_shift_for_every_30_minutes_after_4_pm_linear -util_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear,ESCORT - Arrival Constant: Shift for every 30 minutes before 6:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.end<8)), df.arrConstShift1_escort, 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_before_6_30_am_linear -util_escort_arrival_constant_before_7_am,ESCORT - Arrival Constant: Before 07:00 AM,@((df.tour_type == 'escort') & (df.end<9)),coef_escort_arrival_constant_before_7_am -util_escort_arrival_constant_7_am_to_7_30_am,ESCORT - Arrival Constant: 07:00 AM - 07:30 AM,@((df.tour_type == 'escort') & (df.end==9)),coef_escort_arrival_constant_7_am_to_7_30_am -util_escort_arrival_constant_7_30_am_to_8_am,ESCORT - Arrival Constant: 07:30 AM - 08:00 AM,@((df.tour_type == 'escort') & (df.end==10)),coef_escort_arrival_constant_7_30_am_to_8_am -util_escort_arrival_constant_8_am_to_8_30_am,ESCORT - Arrival Constant: 08:00 AM - 08:30 AM,@((df.tour_type == 'escort') & (df.end==11)),coef_escort_arrival_constant_8_am_to_8_30_am -util_escort_arrival_constant_8_30_am_to_9_am,ESCORT - Arrival Constant: 08:30 AM - 09:00 AM,@((df.tour_type == 'escort') & (df.end==12)),coef_escort_arrival_constant_8_30_am_to_9_am -util_escort_arrival_constant_after_9_am,ESCORT - Arrival Constant: After 09:00 AM,@((df.tour_type == 'escort') & (df.end>12)),coef_escort_arrival_constant_after_9_am -util_escort_arrival_constant_2_30_pm_to_3_pm,ESCORT - Arrival Constant: 02:30 PM - 03:00 PM,@((df.tour_type == 'escort') & (df.end==24)),coef_escort_arrival_constant_2_30_pm_to_3_pm -util_escort_arrival_constant_3_pm_to_3_30_pm,ESCORT - Arrival Constant: 03:00 PM - 03:30 PM,@((df.tour_type == 'escort') & (df.end==25)),coef_escort_arrival_constant_3_pm_to_3_30_pm -util_escort_arrival_constant_3_30_pm_to_4_pm,ESCORT - Arrival Constant: 03:30 PM - 04:00 PM,@((df.tour_type == 'escort') & (df.end==26)),coef_escort_arrival_constant_3_30_pm_to_4_pm -util_escort_arrival_constant_4_pm_to_4_30_pm,ESCORT - Arrival Constant: 04:00 PM - 04:30 PM,@((df.tour_type == 'escort') & (df.end==27)),coef_escort_arrival_constant_4_pm_to_4_30_pm -util_escort_arrival_constant_after_4_30_pm,ESCORT - Arrival Constant: After 04:30 PM,@((df.tour_type == 'escort') & (df.end>27)),coef_escort_arrival_constant_after_4_30_pm -util_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 9:30 am - Linear,"@np.where(((df.tour_type == 'escort') & (df.end>13)), df.arrConstShift1_escort, 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_after_9_30_am_linear -util_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,ESCORT - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.tour_type == 'escort') & (df.end>28)), df.arrConstShift2_escort, 0)",coef_escort_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear -util_escort_duration_constant_0_hour,ESCORT - Duration Constant: 0 hr,@((df.tour_type == 'escort') & (df.duration==0)),coef_escort_duration_constant_0_hour -util_escort_duration_constant_30_minutes,ESCORT - Duration Constant: 0.5 hr,@((df.tour_type == 'escort') & (df.duration==1)),coef_escort_duration_constant_30_minutes -util_escort_duration_constant_1_hour,ESCORT - Duration Constant: 1 hr,@((df.tour_type == 'escort') & (df.duration==2)),coef_escort_duration_constant_1_hour -util_escort_duration_constant_1_hour_30_minutes,ESCORT - Duration Constant: 1.5hrs,@((df.tour_type == 'escort') & (df.duration==3)),coef_escort_duration_constant_1_hour_30_minutes -util_escort_duration_constant_2_hours,ESCORT - Duration Constant: 2 hrs,@((df.tour_type == 'escort') & (df.duration==4)),coef_escort_duration_constant_2_hours -util_escort_duration_constant_longer_than_2_hours,ESCORT - Duration Constant: Longer than 2 hrs,@((df.tour_type == 'escort') & (df.duration>4)),coef_escort_duration_constant_longer_than_2_hours -util_escort_calibration_constant_duration_1,ESCORT - Calibration Constant - Duration = 1,@((df.tour_type == 'escort') & (df.duration==0)),coef_escort_calibration_constant_duration_1 -util_escort_calibration_constant_duration_2,ESCORT - Calibration Constant - Duration = 2,@((df.tour_type == 'escort') & (df.duration==1)),coef_escort_calibration_constant_duration_2 -util_escort_calibration_constant_departure_9,ESCORT - Calibration Constant - Departure = 9,@((df.tour_type == 'escort') & (df.start==9)),coef_escort_calibration_constant_departure_9 -util_escort_calibration_constant_departure_10,ESCORT - Calibration Constant - Departure = 10,@((df.tour_type == 'escort') & (df.start==10)),coef_escort_calibration_constant_departure_10 -util_escort_calibration_constant_departure_23,ESCORT - Calibration Constant - Departure = 23,@((df.tour_type == 'escort') & (df.start==23)),coef_escort_calibration_constant_departure_23 -util_escort_calibration_constant_departure_24,,@((df.tour_type == 'escort') & (df.start==24)),coef_escort_calibration_constant_departure_24 -#SHOPPING,ESCORT - Calibration Constant - Departure = 24,,#SHOPPING -util_shoppping_driving_age_student_duration_greater_than_1_hour_30_minutes,SHOPPING - Driving age student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 6)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_driving_age_student_duration_greater_than_1_hour_30_minutes -util_shoppping_full_time_worker_duration_greater_than_1_hour_30_minutes,SHOPPING - Full-time worker: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_full_time_worker_duration_greater_than_1_hour_30_minutes -util_shoppping_non_driving_student_duration_greater_than_1_hour_30_minutes,SHOPPING - Non-driving Student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & ((df.ptype == 7)|(df.ptype == 8))), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_non_driving_student_duration_greater_than_1_hour_30_minutes -util_shoppping_pre_school_child_duration_less_than_1_hour_30_minutes,SHOPPING - Pre-school Child: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.ptype == 8)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_pre_school_child_duration_less_than_1_hour_30_minutes -util_shoppping_part_time_worker_duration_less_than_1_hour_30_minutes,SHOPPING - Part Time Worker: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_part_time_worker_duration_less_than_1_hour_30_minutes -util_shopping_part_time_worker_duration_greater_than_1_hour_30_minutes,SHOPPING - Part Time Worker: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_part_time_worker_duration_greater_than_1_hour_30_minutes -util_shopping_retired_duration_less_than_1_hour_30_minutes,SHOPPING - Retired: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_retired_duration_less_than_1_hour_30_minutes -util_shopping_retired_duration_greater_than_1_hour_30_minutes,SHOPPING - Retired: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_retired_duration_greater_than_1_hour_30_minutes -util_shopping_university_student_duration_greater_than_1_hour_30_minutes,SHOPPING - University Student: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.ptype == 3)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_university_student_duration_greater_than_1_hour_30_minutes -util_shopping_female_duration_less_than_1_hour_30_minutes,SHOPPING - Female: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_female_duration_less_than_1_hour_30_minutes -util_shopping_female_duration_greater_than_1_hour_30_minutes,SHOPPING - Female: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_female_duration_greater_than_1_hour_30_minutes -util_shopping_low_income_duration_greater_than_1_hour_30_minutes,"SHOPPING - Low Income (<=$25,000): Duration > 1.5 hr","@np.where(((df.tour_type == 'shopping') & (df.is_income_less25K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_low_income_duration_greater_than_1_hour_30_minutes -util_shopping_medium_income_duration_less_than_1_hour_30_minutes,"SHOPPING - Medium Income ($25,001 to $60,000): Duration < 1.5 hrs","@np.where(((df.tour_type == 'shopping') & (df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_medium_income_duration_less_than_1_hour_30_minutes -util_shopping_medium_high_income_duration_greater_than_1_hour_30_minutes,"SHOPPING - Medium-High Income ($60,001 to $120,00): Duration > 1.5 hrs","@np.where(((df.tour_type == 'shopping') & (df.is_income_60K_to_120K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_medium_high_income_duration_greater_than_1_hour_30_minutes -util_shopping_distance_duration_less_than_1_hour_30_minutes,SHOPPING - Distance: Duration < 1.5 hrs,"@np.where(((df.tour_type == 'shopping') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_shopping_distance_duration_less_than_1_hour_30_minutes -util_shopping_distance_duration_greater_than_1_hour_30_minutes,SHOPPING - Distance: Duration > 1.5 hrs,"@np.where(((df.tour_type == 'shopping') & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_shopping_distance_duration_greater_than_1_hour_30_minutes -util_shopping_time_pressure_duration_greater_than_1_hour_30_minutes,SHOPPING - Time Pressure - Duration > 1.5 hrs,"@np.where(((df.tour_type == 'shopping') & (df.duration>2)), np.minimum(df.duration-2,26) *(np.log10 (30 *(tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_shopping_time_pressure_duration_greater_than_1_hour_30_minutes -util_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,SHOPPING - Number of additional individual shop and maint. tours - Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.num_add_shop_maint_tours), 0)",coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes -util_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,SHOPPING - Number of additional individual shop and maint. tours - Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'shopping') &(df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.num_add_shop_maint_tours), 0)",coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes -util_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@np.where(((df.tour_type == 'shopping') & (df.start<12)), (np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear -util_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Square root,"@np.where(((df.tour_type == 'shopping') & (df.start<12)), (np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0))**0.5, 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root -util_shopping_departure_constant_before_9_am,SHOPPING - Departure Constant: Before 09:00 AM,@((df.tour_type == 'shopping') & (df.start<13)),coef_shopping_departure_constant_before_9_am -util_shopping_departure_constant_9_am_to_9_30_am,SHOPPING - Departure Constant: 09:00 AM - 09:30 AM,@((df.tour_type == 'shopping') & (df.start==13)),coef_shopping_departure_constant_9_am_to_9_30_am -util_shopping_departure_constant_9_30_am_to_10_am,SHOPPING - Departure Constant: 09:30 AM - 10:00 AM,@((df.tour_type == 'shopping') & (df.start==14)),coef_shopping_departure_constant_9_30_am_to_10_am -util_shopping_departure_constant_10_am_to_10_30_am,SHOPPING - Departure Constant: 10:00 AM - 10:30 AM,@((df.tour_type == 'shopping') & (df.start==15)),coef_shopping_departure_constant_10_am_to_10_30_am -util_shopping_departure_constant_10_30_am_to_11_00_am,SHOPPING - Departure Constant: 10:30 AM - 11:00 AM,@((df.tour_type == 'shopping') & (df.start==16)),coef_shopping_departure_constant_10_30_am_to_11_00_am -util_shopping_departure_constant_after_11_am,SHOPPING - Departure Constant: After 11:00 AM,@((df.tour_type == 'shopping') & (df.start>16)),coef_shopping_departure_constant_after_11_am -util_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.tour_type == 'shopping') & (df.start>17)), (np.where((df.start<12), np.minimum(12-df.start,7),0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear -util_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Squared,"@np.where(((df.tour_type == 'shopping') & (df.start>17)), ((np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)) ** 2), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared -util_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear,SHOPPING - Arrival Constant: Shift for every 30 minutes before 12:00 pm - Linear,"@np.where(((df.tour_type == 'shopping') & (df.end<19)), (np.where ((df.end<19), np.minimum(19-df.end,10), 0) + np.where((df.end>38), np.minimum(df.end-38,5), 0)), 0)",coef_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear -util_shopping_arrival_constant_before_12_30_pm,SHOPPING - Arrival Constant: Before 12:30 PM,@((df.tour_type == 'shopping') & (df.end<20)),coef_shopping_arrival_constant_before_12_30_pm -util_shopping_arrival_constant_12_30_pm_to_3_pm,SHOPPING - Arrival Constant: 12:30 PM - 03:00 PM,@((df.tour_type == 'shopping') & ( df.end>=20) & (df.end<=24)),coef_shopping_arrival_constant_12_30_pm_to_3_pm -util_shopping_arrival_constant_3_pm_to_3_30_pm,SHOPPING - Arrival Constant: 03:00 PM - 03:30 PM,@((df.tour_type == 'shopping') & (df.end==25)),coef_shopping_arrival_constant_3_pm_to_3_30_pm -util_shopping_arrival_constant_3_30_pm_to_4_pm,SHOPPING - Arrival Constant: 03:30 PM - 04:00 PM,@((df.tour_type == 'shopping') & (df.end==26)),coef_shopping_arrival_constant_3_30_pm_to_4_pm -util_shopping_arrival_constant_4_pm_to_4_30_pm,SHOPPING - Arrival Constant: 04:00 PM - 04:30 PM,@((df.tour_type == 'shopping') & (df.end==27)),coef_shopping_arrival_constant_4_pm_to_4_30_pm -util_shopping_arrival_constant_4_30_pm_to_5_pm,SHOPPING - Arrival Constant: 04:30 PM - 05:00 PM,@((df.tour_type == 'shopping') & (df.end==28)),coef_shopping_arrival_constant_4_30_pm_to_5_pm -util_shopping_arrival_constant_5_pm_to_5_30_pm,SHOPPING - Arrival Constant: 05:00 PM - 05:30 PM,@((df.tour_type == 'shopping') & (df.end==29)),coef_shopping_arrival_constant_5_pm_to_5_30_pm -util_shopping_arrival_constant_5_30_pm_to_7_pm,SHOPPING - Arrival Constant: 05:30 PM - 07:00 PM,@((df.tour_type == 'shopping') & (df.end>=30) & (df.end<=32)),coef_shopping_arrival_constant_5_30_pm_to_7_pm -util_shopping_arrival_constant_7_pm_to_9_30_pm,SHOPPING - Arrival Constant: 07:00 PM - 09:30 PM,@((df.tour_type == 'shopping') & (df.end>=33) & (df.end<=37)),coef_shopping_arrival_constant_7_pm_to_9_30_pm -util_shopping_arrival_constant_after_9_30_pm,SHOPPING - Arrival Constant: After 09:30 PM,@((df.tour_type == 'shopping') & (df.end>37)),coef_shopping_arrival_constant_after_9_30_pm -util_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear,SHOPPING - Arrival Constant: Shift for every 30 minutes after 10:00 pm - Linear,"@np.where(((df.tour_type == 'shopping') & (df.end>38)), (np.where((df.end<19), np.minimum(19-df.end,10), 0) + np.where ((df.end>38), np.minimum(df.end-38,5), 0)), 0)",coef_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear -util_shopping_duration_constant_0_hr,SHOPPING - Duration Constant: 0 hr,@((df.tour_type == 'shopping') & (df.duration==0)),coef_shopping_duration_constant_0_hr -util_shopping_duration_constant_30_minutes,SHOPPING - Duration Constant: 0.5 hr,@((df.tour_type == 'shopping') & (df.duration==1)),coef_shopping_duration_constant_30_minutes -util_shopping_duration_constant_1_hr,SHOPPING - Duration Constant: 1 hr,@((df.tour_type == 'shopping') & (df.duration==2)),coef_shopping_duration_constant_1_hr -util_shopping_duration_constant_1_hour_30_minutes,SHOPPING - Duration Constant: 1.5hrs,@(df.tour_type == 'shopping') & (df.duration==3),coef_shopping_duration_constant_1_hour_30_minutes -util_shopping_duration_constant_2_hrs,SHOPPING - Duration Constant: 2 hrs,@((df.tour_type == 'shopping') & (df.duration==4)),coef_shopping_duration_constant_2_hrs -util_shopping_duration_constant_longer_than_2_hrs,SHOPPING - Duration Constant: Longer than 2 hrs,@((df.tour_type == 'shopping') & (df.duration>4)),coef_shopping_duration_constant_longer_than_2_hrs -util_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear,SHOPPING - Duration Constant: Duration > 2.5 hrs - Linear,"@np.where(((df.tour_type == 'shopping') & (df.duration>5)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,26), 0)), 0)",coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear -util_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root,SHOPPING - Duration Constant: Duration > 2.5 hrs - Square root,"@np.where(((df.tour_type == 'shopping') & (df.duration>5)), ((np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,26), 0)) ** 0.5), 0)",coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root -util_shopping_calibration_constant_duration_1,SHOPPING - Calibration Constant - Duration = 1,@((df.tour_type == 'shopping') & (df.duration==0)),coef_shopping_calibration_constant_duration_1 -util_shopping_calibration_constant_duration_2,SHOPPING - Calibration Constant - Duration = 2,@((df.tour_type == 'shopping') & (df.duration==1)),coef_shopping_calibration_constant_duration_2 -util_shopping_calibration_constant_duration_3,SHOPPING - Calibration Constant - Duration = 3,@((df.tour_type == 'shopping') & (df.duration==2)),coef_shopping_calibration_constant_duration_3 -#MAINTENANCE,#MAINTENANCE,,#MAINTENANCE -util_maintenance_driving_age_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Driving age student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 6)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_driving_age_student_duration_greater_than_1_hour_30_minutes -util_maintenance_full_time_worker_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Full-time worker: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_full_time_worker_duration_greater_than_1_hour_30_minutes -util_maintenance_non_driving_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Non-driving Student: Duration > 1.5 hrs,"@np.where (((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & ((df.ptype == 7)|(df.ptype == 8))), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_non_driving_student_duration_greater_than_1_hour_30_minutes -util_maintenance_pre_school_child_duration_less_than_1_hour_30_minutes,MAINTENANCE - Pre-school Child: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.ptype == 8)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_pre_school_child_duration_less_than_1_hour_30_minutes -util_maintenance_part_time_worker_duration_less_than_1_hour_30_minutes,MAINTENANCE - Part Time Worker: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_part_time_worker_duration_less_than_1_hour_30_minutes -util_maintenance_part_time_worker_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Part Time Worker: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_part_time_worker_duration_greater_than_1_hour_30_minutes -util_maintenance_retired_duration_less_than_1_hour_30_minutes,MAINTENANCE - Retired: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_retired_duration_less_than_1_hour_30_minutes -util_maintenance_retired_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Retired: Duration > 1.5 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_retired_duration_greater_than_1_hour_30_minutes -util_maintenance_university_student_duration_greater_than_1_hour_30_minutes,MAINTENANCE - University Student: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.ptype == 3)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_university_student_duration_greater_than_1_hour_30_minutes -util_maintenance_female_duration_less_than_1_hour_30_minutes,MAINTENANCE - Female: Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_female_duration_less_than_1_hour_30_minutes -util_maintenance_female_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Female: Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othmaint') & (df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_female_duration_greater_than_1_hour_30_minutes -util_maintenance_low_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Low Income (<=$25,000): Duration > 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_less25K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_low_income_duration_greater_than_1_hour_30_minutes -util_maintenance_medium_income_duration_less_than_1_hour_30_minutes,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration < 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_income_duration_less_than_1_hour_30_minutes -util_maintenance_medium_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Medium Income ($25,001 to $60,000): Duration > 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_25K_to_60K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_income_duration_greater_than_1_hour_30_minutes -util_maintenance_medium_high_income_duration_greater_than_1_hour_30_minutes,"MAINTENANCE - Medium-High Income ($60,001 to $120,00): Duration > 1.5 hrs","@np.where(((df.tour_type == 'othmaint') & (df.is_income_60K_to_120K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_medium_high_income_duration_greater_than_1_hour_30_minutes -util_maintenance_distance_duration_less_than_1_hour_30_minutes,MAINTENANCE - Distance: Duration < 1.5 hrs,"@np.where(((df.tour_type == 'othmaint') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.origin_to_destination_distance), 0)",coef_maintenance_distance_duration_less_than_1_hour_30_minutes -util_maintenance_distance_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Distance: Duration > 1.5 hrs,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_maintenance_distance_duration_greater_than_1_hour_30_minutes -util_maintenance_time_pressure_duration_greater_than_1_hour_30_minutes,Time Pressure - Duration > 1.5 hrs,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), np.minimum(df.duration-2,26) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_maintenance_time_pressure_duration_greater_than_1_hour_30_minutes -util_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,MAINTENANCE - Number of additional individual shop and maint. tours - Duration < 1.5 hrs,"@np.where(((df.tour_category != 'joint')&(df.tour_type == 'othmaint')&(df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.num_add_shop_maint_tours), 0)",coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes -util_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,MAINTENANCE - Number of additional individual shop and maint. tours - Duration > 1.5 hrs,"@np.where(((df.tour_category != 'joint')&(df.tour_type == 'othmaint')&(df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.num_add_shop_maint_tours), 0)",coef_maintenance_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes -util_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.start<10)), (np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_linear -util_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root,MAINTENANCE - Departure Constant: Shift for every 30 minutes before 07:30 am - Square Root,"@np.where(((df.tour_type == 'othmaint') & (df.start<10)), ((np.where((df.start<10), np.minimum(10-df.start,7), 0) + (np.where((df.start>17), np.minimum(df.start-17,24), 0)))** 0.5), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_before_7_30_am_square_root -util_maintenance_departure_constant_before_8_am,MAINTENANCE - Departure Constant: Before 08:00 AM,@((df.tour_type == 'othmaint') & (df.start<11)),coef_maintenance_departure_constant_before_8_am -util_maintenance_departure_constant_8_am_to_8_30_am,MAINTENANCE - Departure Constant: 08:00 AM - 08:30 AM,@((df.tour_type == 'othmaint') & (df.start==11)),coef_maintenance_departure_constant_8_am_to_8_30_am -util_maintenance_departure_constant_8_30_am_to_9_00_am,MAINTENANCE - Departure Constant: 08:30 AM - 09:00 AM,@((df.tour_type == 'othmaint') & (df.start==12)),coef_maintenance_departure_constant_8_30_am_to_9_00_am -util_maintenance_departure_constant_9_am_to_9_30_am,MAINTENANCE - Departure Constant: 09:00 AM - 09:30 AM,@((df.tour_type == 'othmaint') & (df.start==13)),coef_maintenance_departure_constant_9_am_to_9_30_am -util_maintenance_departure_constant_9_30_am_to_10_am,MAINTENANCE - Departure Constant: 09:30 AM - 10:00 AM,@((df.tour_type == 'othmaint') & (df.start==14)),coef_maintenance_departure_constant_9_30_am_to_10_am -util_maintenance_departure_constant_10_am_to_10_30_am,MAINTENANCE - Departure Constant: 10:00 AM - 10:30 AM,@((df.tour_type == 'othmaint') & (df.start==15)),coef_maintenance_departure_constant_10_am_to_10_30_am -util_maintenance_departure_constant_10_30_am_to_11_am,MAINTENANCE - Departure Constant: 10:30 AM - 11:00 AM,@((df.tour_type == 'othmaint') & (df.start==16)),coef_maintenance_departure_constant_10_30_am_to_11_am -util_maintenance_departure_constant_after_11_am,MAINTENANCE - Departure Constant: After 11:00 AM,@((df.tour_type == 'othmaint') & (df.start>16)),coef_maintenance_departure_constant_after_11_am -util_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.start>17)), np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear -util_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,MAINTENANCE - Departure Constant: Shift for every 30 minutes after 11:30 am - Squared,"@np.where(((df.tour_type == 'othmaint') & (df.start>17)), ((np.where((df.start<10), np.minimum(10-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)) ** 2), 0)",coef_maintenance_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared -util_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes before 10:00 am - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.end<15)), (np.where((df.end<15), np.minimum(15-df.end,9), 0) + np.where((df.end>28), np.minimum(df.end-28,16), 0)), 0)",coef_maintenance_arrival_constant_shift_for_every_30_minutes_before_10_am_linear -util_maintenance_arrival_constant_before_10_30_am,MAINTENANCE - Arrival Constant: Before 10:30 AM,@((df.tour_type == 'othmaint') & (df.end<16)),coef_maintenance_arrival_constant_before_10_30_am -util_maintenance_arrival_constant_10_30_am_to_11_am,MAINTENANCE - Arrival Constant: 10:30 AM - 11:00 AM,@((df.tour_type == 'othmaint') & (df.end==16)),coef_maintenance_arrival_constant_10_30_am_to_11_am -util_maintenance_arrival_constant_11_am_to_11_30_am,MAINTENANCE - Arrival Constant: 11:00 AM - 11:30 AM,@((df.tour_type == 'othmaint') & (df.end==17)),coef_maintenance_arrival_constant_11_am_to_11_30_am -util_maintenance_arrival_constant_11_30_am_to_1_30_pm,MAINTENANCE - Arrival Constant: 11:30 AM - 01:30 PM,@((df.tour_type == 'othmaint') & (df.end>=18) & (df.end<=21)),coef_maintenance_arrival_constant_11_30_am_to_1_30_pm -util_maintenance_arrival_constant_1_30_pm_to_2_30_pm,MAINTENANCE - Arrival Constant: 01:30 PM - 02:30 PM,@((df.tour_type == 'othmaint') & (df.end>=22) & (df.end<=23)),coef_maintenance_arrival_constant_1_30_pm_to_2_30_pm -util_maintenance_arrival_constant_2_30_pm_to_4_pm,MAINTENANCE - Arrival Constant: 02:30 PM - 04:00 PM,@((df.tour_type == 'othmaint') & (df.end>=24) & (df.end<=26)),coef_maintenance_arrival_constant_2_30_pm_to_4_pm -util_maintenance_arrival_constant_4_pm_to_4_30_pm,MAINTENANCE - Arrival Constant: 04:00 PM - 04:30 PM,@((df.tour_type == 'othmaint') & (df.end==27)),coef_maintenance_arrival_constant_4_pm_to_4_30_pm -util_maintenance_arrival_constant_after_4_30_pm,MAINTENANCE - Arrival Constant: After 04:30 PM,@((df.tour_type == 'othmaint') & (df.end>27)),coef_maintenance_arrival_constant_after_4_30_pm -util_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear,MAINTENANCE - Arrival Constant: Shift for every 30 minutes after 5:00 pm - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.end>28)), (np.where((df.end<15), np.minimum(15-df.end,9), 0) + np.where((df.end>28), np.minimum(df.end-28,16), 0)), 0)",coef_maintenance_arrival_constant_shift_for_every_30_minutes_after_5_pm_linear -util_maintenance_duration_constant_0_hr,MAINTENANCE - Duration Constant: 0 hr,@((df.tour_type == 'othmaint') & (df.duration==0)),coef_maintenance_duration_constant_0_hr -util_maintenance_duration_constant_30_minutes,MAINTENANCE - Duration Constant: 0.5 hr,@((df.tour_type == 'othmaint') & (df.duration==1)),coef_maintenance_duration_constant_30_minutes -util_maintenance_duration_constant_longer_than_30_minutes,MAINTENANCE - Duration Constant: Longer than 0.5 hr,@((df.tour_type == 'othmaint') & (df.duration>1)),coef_maintenance_duration_constant_longer_than_30_minutes -util_maintenance_duration_constant_duration_greater_than_1_hr_linear,MAINTENANCE - Duration Constant: Duration > 1 hr - Linear,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_maintenance_duration_constant_duration_greater_than_1_hr_linear -util_maintenance_duration_constant_duration_greater_than_1_hr_square_root,MAINTENANCE - Duration Constant: Duration > 1 hr - Square Root,"@np.where(((df.tour_type == 'othmaint') & (df.duration>2)), ((np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0))** 0.5), 0)",coef_maintenance_duration_constant_duration_greater_than_1_hr_square_root -util_maintenance_calibration_constant_duration_1,MAINTENANCE - Calibration Constant - Duration = 1,@((df.tour_type == 'othmaint') & (df.duration==0)),coef_maintenance_calibration_constant_duration_1 -util_maintenance_calibration_constant_duration_2,MAINTENANCE - Calibration Constant - Duration = 2,@((df.tour_type == 'othmaint') & (df.duration==1)),coef_maintenance_calibration_constant_duration_2 -util_maintenance_calibration_constant_duration_3,MAINTENANCE - Calibration Constant - Duration = 3,@((df.tour_type == 'othmaint') & (df.duration==2)),coef_maintenance_calibration_constant_duration_3 -util_maintenance_calibration_constant_duration_4,MAINTENANCE - Calibration Constant - Duration = 4,@((df.tour_type == 'othmaint') & (df.duration==3)),coef_maintenance_calibration_constant_duration_4 -util_maintenance_calibration_constant_duration_5,MAINTENANCE - Calibration Constant - Duration = 5,@((df.tour_type == 'othmaint') & (df.duration==4)),coef_maintenance_calibration_constant_duration_5 -#EAT-OUT,#EAT-OUT,,#EAT-OUT -util_eatout_distance_to_destination_duration_less_than_1_hr,EAT-OUT - Distance to destination - Duration < 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)) * (df.origin_to_destination_distance), 0)",coef_eatout_distance_to_destination_duration_less_than_1_hr -util_eatout_distance_to_destination_duration_greater_than_1_hr,EAT-OUT - Distance to destination - Duration > 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)) *(df.origin_to_destination_distance), 0)",coef_eatout_distance_to_destination_duration_greater_than_1_hr -util_eatout_low_income_duration_less_than_1_hr,EAT-OUT - Low income (<25000) - Duration < 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.is_income_less25K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_low_income_duration_less_than_1_hr -util_eatout_medium_income_duration_less_than_1_hr,EAT-OUT - Medium (25k to 60k) - Duration < 1 hr,"@np.where(((df.tour_type == 'eatout') & (df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_medium_income_duration_less_than_1_hr -util_eatout_zeroauto_HH_duration_greater_than_1_hr,EAT-OUT - Zero auto HH - Duration > 1 hrs,"@np.where(((df.tour_type == 'eatout') & (df.auto_ownership == 0) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_zeroauto_HH_duration_greater_than_1_hr -util_eatout_university_student_departure_after_7_pm_linear,EAT-OUT - University student - Departure after 7:00 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.start>32) & (df.ptype == 3)), (np.where((df.start<=32), np.minimum(32-df.start,29), 0) + np.where((df.start>32), np.minimum(df.start-32,8), 0)), 0)",coef_eatout_university_student_departure_after_7_pm_linear -util_eatout_female_duration_less_than_1_hr,EAT-OUT - Female - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_female_duration_less_than_1_hr -util_eatout_female_duration_greater_than_1_hr,EAT-OUT - Female - Duration > 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,47), 0) + np.where((df.duration>2), np.minimum(df.duration-2,14), 0)), 0)",coef_eatout_female_duration_greater_than_1_hr -util_eatout_time_pressure_departure_before_6_30_pm,EAT-OUT - Time Pressure - Departure before 6:30 pm,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start<32)), (np.minimum(32-df.start,29)) * (np.log10 (30 *(tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_eatout_time_pressure_departure_before_6_30_pm -util_eatout_time_pressure_duration_less_than_1_hr,EAT-OUT - Time Pressure - Duration < 1 hrs,"@np.where(((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.duration<2)), np.minimum(2-df.duration,47) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_eatout_time_pressure_duration_less_than_1_hr -util_eatout_departure_constant_7_30_am_to_9_am,EAT-OUT - Departure Constant: 07:30 AM - 09:00 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start>=10) & (df.start<=12)),coef_eatout_departure_constant_7_30_am_to_9_am -util_eatout_departure_constant_10_30_am_to_11_am,EAT-OUT - Departure Constant: 10:30 AM - 11:00 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==16)),coef_eatout_departure_constant_10_30_am_to_11_am -util_eatout_departure_constant_11_am_to_11_30_am,EAT-OUT - Departure Constant: 11:00 AM - 11:30 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==17)),coef_eatout_departure_constant_11_am_to_11_30_am -util_eatout_departure_constant_11_30_am_to_12_pm,EAT-OUT - Departure Constant: 11:30 AM - 12:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==18)),coef_eatout_departure_constant_11_30_am_to_12_pm -util_eatout_departure_constant_12_pm_to_12_30_pm,EAT-OUT - Departure Constant: 12:00 PM - 12:30 PM,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.start==19)),coef_eatout_departure_constant_12_pm_to_12_30_pm -util_eatout_departure_constant_12_30_pm_to_1_pm,EAT-OUT - Departure Constant: 12:30 PM - 01:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==20)),coef_eatout_departure_constant_12_30_pm_to_1_pm -util_eatout_departure_constant_1_pm_to_1_30_pm,EAT-OUT - Departure Constant: 01:00 PM - 01:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==21)),coef_eatout_departure_constant_1_pm_to_1_30_pm -util_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear,EAT-OUT - Departure Constant: Shift for every 30 minutes before 05:30 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start<31)), (np.where((df.start<30), np.minimum(30-df.start,27), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_eatout_departure_constant_shift_for_every_30_minutes_before_5_30_pm_linear -util_eatout_departure_constant_before_6_pm,EAT-OUT - Departure Constant: Before 06:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start<31)),coef_eatout_departure_constant_before_6_pm -util_eatout_departure_constant_6_pm_to_6_30_pm,EAT-OUT - Departure Constant: 06:00 PM - 06:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==31)),coef_eatout_departure_constant_6_pm_to_6_30_pm -util_eatout_departure_constant_6_30_pm_to_7_pm,EAT-OUT - Departure Constant: 06:30 PM - 07:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==32)),coef_eatout_departure_constant_6_30_pm_to_7_pm -util_eatout_departure_constant_7_pm_to_7_30_pm,EAT-OUT - Departure Constant: 07:00 PM - 07:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start==33)),coef_eatout_departure_constant_7_pm_to_7_30_pm -util_eatout_departure_constant_after_7_30_pm,EAT-OUT - Departure Constant: After 07:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start>33)),coef_eatout_departure_constant_after_7_30_pm -util_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,EAT-OUT - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.start>34)), (np.where((df.start<30), np.minimum(30-df.start,27), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_eatout_departure_constant_shift_for_every_30_minutes_after_8_pm_linear -util_eatout_arrival_constant_9_30_am_to_11_am,EAT-OUT - Arrival Constant: 9:30 AM to 11:00 AM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end>=14) & (df.end<=16)),coef_eatout_arrival_constant_9_30_am_to_11_am -util_eatout_arrival_constant_12_30_pm_to_1_pm,EAT-OUT - Arrival Constant: 12:30 PM to 01:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==20)),coef_eatout_arrival_constant_12_30_pm_to_1_pm -util_eatout_arrival_constant_1_pm_to_1_30_pm,EAT-OUT - Arrival Constant: 01:00 PM to 01:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==21)),coef_eatout_arrival_constant_1_pm_to_1_30_pm -util_eatout_arrival_constant_1_30_pm_to_2_pm,EAT-OUT - Arrival Constant: 01:30 PM to 02:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==22)),coef_eatout_arrival_constant_1_30_pm_to_2_pm -util_eatout_arrival_constant_2_pm_to_2_30_pm,EAT-OUT - Arrival Constant: 02:00 PM to 02:30 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==23)),coef_eatout_arrival_constant_2_pm_to_2_30_pm -util_eatout_arrival_constant_2_30_pm_to_3_pm,EAT-OUT - Arrival Constant: 02:30 PM to 03:00 PM,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.end==24)),coef_eatout_arrival_constant_2_30_pm_to_3_pm -util_eatout_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes before 06:00 pm - Linear,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end<31)),coef_eatout_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear -util_eatout_arrival_constant_before_6_30_pm,EAT-OUT - Arrival Constant: Before 6:30 PM,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end<32)), (np.where((df.end<31), np.minimum(31-df.end,24), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_eatout_arrival_constant_before_6_30_pm -util_eatout_arrival_constant_6_30_pm_to_7_pm,EAT-OUT - Arrival Constant: 6:30 PM to 7:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==32)),coef_eatout_arrival_constant_6_30_pm_to_7_pm -util_eatout_arrival_constant_7_pm_to_7_30_pm,EAT-OUT - Arrival Constant: 7:00 PM to 7:30 PM,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.end==33)),coef_eatout_arrival_constant_7_pm_to_7_30_pm -util_eatout_arrival_constant_7_30_pm_to_8_pm,EAT-OUT - Arrival Constant: 7:30 PM to 8:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==34)),coef_eatout_arrival_constant_7_30_pm_to_8_pm -util_eatout_arrival_constant_8_pm_to_8_30_pm,EAT-OUT - Arrival Constant: 8:00 PM to 8:30 PM,@((df.tour_category != 'joint') &(df.tour_type == 'eatout') & (df.end==35)),coef_eatout_arrival_constant_8_pm_to_8_30_pm -util_eatout_arrival_constant_8_30_pm_to_9_pm,EAT-OUT - Arrival Constant: 8:30 PM to 9:00 PM,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end==36)),coef_eatout_arrival_constant_8_30_pm_to_9_pm -util_eatout_arrival_constant_after_9_pm,EAT-OUT - Arrival Constant: After 9:00 PM,@((df.tour_category != 'joint')& (df.tour_type == 'eatout') & (df.end>36)),coef_eatout_arrival_constant_after_9_pm -util_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,EAT-OUT - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.end>37)), (np.where((df.end<31), np.minimum(31-df.end,24), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_eatout_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear -util_eatout_duration_constant_0_hour,EAT-OUT - Duration Constant: 0 hour,@((df.tour_category != 'joint') & (df.tour_type== 'eatout') & (df.duration==0)),coef_eatout_duration_constant_0_hour -util_eatout_duration_constant_30_minutes,EAT-OUT - Duration Constant: 0.5 hour,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration==1)),coef_eatout_duration_constant_30_minutes -util_eatout_duration_constant_1_hour,EAT-OUT - Duration Constant: 1 hour,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration==2)),coef_eatout_duration_constant_1_hour -util_eatout_duration_constant_1_hour_30_minutes,EAT-OUT - Duration Constant: 1.5 hours,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration==3)),coef_eatout_duration_constant_1_hour_30_minutes -util_eatout_duration_constant_2_hours,EAT-OUT - Duration Constant: 2 hours,@((df.tour_category != 'joint')& (df.tour_type == 'eatout') & (df.duration==4)),coef_eatout_duration_constant_2_hours -util_eatout_duration_constant_2_hour_30_minutes_or_more,EAT-OUT - Duration Constant: 2.5 hours or more,@((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration>4)),coef_eatout_duration_constant_2_hour_30_minutes_or_more -util_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,EAT-OUT - Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'eatout') & (df.duration>5)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,11), 0)), 0)",coef_eatout_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear -util_eatout_calibration_constant_duration_1,EAT-OUT - Calibration Constant - Duration = 1,@((df.tour_type == 'eatout') & (df.duration==0)),coef_eatout_calibration_constant_duration_1 -util_eatout_calibration_constant_duration_2,EAT-OUT - Calibration Constant - Duration = 2,@((df.tour_type == 'eatout') & (df.duration==1)),coef_eatout_calibration_constant_duration_2 -util_eatout_calibration_constant_duration_3,EAT-OUT - Calibration Constant - Duration = 3,@((df.tour_type== 'eatout') & (df.duration==2)),coef_eatout_calibration_constant_duration_3 -util_eatout_calibration_constant_duration_4,EAT-OUT - Calibration Constant - Duration = 4,@((df.tour_type == 'eatout') & (df.duration==3)),coef_eatout_calibration_constant_duration_4 -util_eatout_calibration_constant_departure_1,EAT-OUT - Calibration Constant - Departure = 1,@((df.tour_type == 'eatout') & (df.start == 1)),coef_eatout_calibration_constant_departure_1 -util_eatout_calibration_constant_departure_2,EAT-OUT - Calibration Constant - Departure = 2,@((df.tour_type == 'eatout') & (df.start == 2)),coef_eatout_calibration_constant_departure_2 -util_eatout_calibration_constant_departure_3,EAT-OUT - Calibration Constant - Departure = 3,@((df.tour_type== 'eatout') & (df.start == 3)),coef_eatout_calibration_constant_departure_3 -util_eatout_calibration_constant_departure_17,EAT-OUT - Calibration Constant - Departure = 17,@((df.tour_type == 'eatout') & (df.start ==17)),coef_eatout_calibration_constant_departure_17 -util_eatout_calibration_constant_departure_18,EAT-OUT - Calibration Constant - Departure = 18,@((df.tour_type== 'eatout') & (df.start ==18)),coef_eatout_calibration_constant_departure_18 -util_eatout_calibration_constant_departure_19,EAT-OUT - Calibration Constant - Departure = 19,@((df.tour_type == 'eatout') & (df.start ==19)),coef_eatout_calibration_constant_departure_19 -util_eatout_calibration_constant_departure_20,EAT-OUT - Calibration Constant - Departure = 20,@((df.tour_type == 'eatout') & (df.start ==20)),coef_eatout_calibration_constant_departure_20 -util_eatout_calibration_constant_departure_21,EAT-OUT - Calibration Constant - Departure = 21,@((df.tour_type == 'eatout') & (df.start ==21)),coef_eatout_calibration_constant_departure_21 -#SOCIAL,#SOCIAL,,#SOCIAL -util_social_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Person< 18 years old: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear -util_social_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Person< 18 years old: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear -util_social_non_working_senior_or_retiree_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Non-working senior/ retiree: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3) & (df.ptype == 5)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_non_working_senior_or_retiree_duration_less_than_1_hr_30_minutes_linear -util_social_retiree_or_non_working_senior_only_HH_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Retiree/ Non-working senior only HH: Duration < 1.5 hrs - Linear,"@np.where(((df.retired_adults_only_hh) & (df.tour_type == 'social') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_retiree_or_non_working_senior_only_HH_duration_less_than_1_hr_30_minutes_linear -util_social_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Zero auto households: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership == 0) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_zero_auto_households_duration_less_than_1_hr_30_minutes_linear -util_social_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Zero auto households: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership == 0) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear -util_social_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Number of auto more than number of adults: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership > 0) &(df.auto_ownership > df.num_adults) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear -util_social_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Number of auto more than number of adults: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_type == 'social') & (df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear -"# In CTRAMP, although the description below says duration is less than 1 hr, expression is for less than 1.5 hr",,, -util_social_auto_distance_duration_less_than_1_hr_linear,SOCIAL - Auto Distance: Duration < 1 hr - Linear,"@np.where(((df.tour_type == 'social') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0) * (df.origin_to_destination_distance)",coef_social_auto_distance_duration_less_than_1_hr_linear -util_social_auto_distance_duration_greater_than_1_hr_linear,SOCIAL - Auto Distance: Duration > 1 hr - Linear,"@np.where(((df.tour_type == 'social') & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0) * (df.origin_to_destination_distance) ",coef_social_auto_distance_duration_greater_than_1_hr_linear -util_social_time_pressure_duration_less_than_1_hr,SOCIAL - Time Pressure - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3)), np.minimum(3-df.duration,47), 0)* (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_social_time_pressure_duration_less_than_1_hr -util_social_time_pressure_duration_greater_than_1_hr,SOCIAL - Time Pressure - Duration > 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>3)), np.minimum(df.duration-3,47), 0) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_social_time_pressure_duration_greater_than_1_hr -util_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,SOCIAL - Number of additional individual social and dicretionary tours - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)) * (df.num_add_soc_discr_tours), 0)",coef_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr -util_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@(df.tour_type == 'social') & (df.start<12) * ((np.minimum(12-df.start,48)*(df.start<48)) + (np.minimum(df.start-48,48)*(df.start>48)))",coef_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear -util_social_departure_constant_before_9_am,SOCIAL - Departure Constant: Before 09:00 AM,@(df.tour_type == 'social') & (df.start<13),coef_social_departure_constant_before_9_am -util_social_departure_constant_9_am_to_9_30_am,SOCIAL - Departure Constant: 09:00 AM to 09:30 AM,@(df.tour_type == 'social') & (df.start==13),coef_social_departure_constant_9_am_to_9_30_am -util_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 05:00 pm - Linear,"@np.where((df.start<29), (np.where((df.start<29), np.minimum(29-df.start,8), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear -util_social_departure_constant_before_5_30_pm,SOCIAL - Departure Constant: Before 05:30 PM,@((df.tour_type == 'social') & (df.start<30)),coef_social_departure_constant_before_5_30_pm -util_social_departure_constant_5_30_pm_to_6_pm,SOCIAL - Departure Constant: 05:30 PM - 06:00 PM,@((df.tour_type == 'social') & (df.start==30)),coef_social_departure_constant_5_30_pm_to_6_pm -util_social_departure_constant_6_pm_to_6_30_pm,SOCIAL - Departure Constant: 06:00 PM - 06:30 PM,@((df.tour_type == 'social') & (df.start==31)),coef_social_departure_constant_6_pm_to_6_30_pm -util_social_departure_constant_6_30_pm_to_7_pm,SOCIAL - Departure Constant: 06:30 PM - 07:00 PM,@((df.tour_type == 'social') & (df.start==32)),coef_social_departure_constant_6_30_pm_to_7_pm -util_social_departure_constant_7_pm_to_7_30_pm,SOCIAL - Departure Constant: 07:00 PM - 07:30 PM,@((df.tour_type == 'social') & (df.start==33)),coef_social_departure_constant_7_pm_to_7_30_pm -util_social_departure_constant_after_7_30_pm,SOCIAL - Departure Constant: After 07:30 PM,@((df.tour_type == 'social') & (df.start>33)),coef_social_departure_constant_after_7_30_pm -util_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,SOCIAL - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where((df.start>34), (np.where((df.start<29), np.minimum(29-df.start,8), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear -util_social_arrival_constant_3_pm_to_3_30_pm,SOCIAL - Arrival Constant: 03:00 PM to 03:30 PM,@((df.tour_type == 'social') & (df.end==25)),coef_social_arrival_constant_3_pm_to_3_30_pm -util_social_arrival_constant_3_30_pm_to_4_pm,SOCIAL - Arrival Constant: 03:30 PM to 04:00 PM,@((df.tour_type == 'social') & (df.end==26)),coef_social_arrival_constant_3_30_pm_to_4_pm -util_social_arrival_constant_4_pm_to_4_30_pm,SOCIAL - Arrival Constant: 04:00 PM to 04:30 PM,@((df.tour_type == 'social') & (df.end==27)),coef_social_arrival_constant_4_pm_to_4_30_pm -util_social_arrival_constant_5_pm_to_6_pm,SOCIAL - Arrival Constant: 05:00 PM to 06:00 PM,@((df.tour_type == 'social') & (df.end>=29) & (df.end<=30)),coef_social_arrival_constant_5_pm_to_6_pm -util_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear,SOCIAL - Arrival Constant: Shift for every 30 minutes before 08:00 pm - Linear,"@np.where(((df.tour_type == 'social') & (df.end<35)), (np.where((df.end<35), np.minimum(35-df.end,48), 0) + np.where((df.end>40), np.minimum(df.end-40,48), 0)), 0)",coef_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear -util_social_arrival_constant_before_8_30_pm,SOCIAL - Arrival Constant: Before 8:30 PM,@((df.tour_type == 'social') & (df.end<36)),coef_social_arrival_constant_before_8_30_pm -util_social_arrival_constant_8_30_pm_to_9_pm,SOCIAL - Arrival Constant: 8:30 PM to 9:00 PM,@((df.tour_type == 'social') & (df.end==36)),coef_social_arrival_constant_8_30_pm_to_9_pm -util_social_arrival_constant_9_pm_to_9_30_pm,SOCIAL - Arrival Constant: 9:00 PM to 9:30 PM,@((df.tour_type == 'social') & (df.end==37)),coef_social_arrival_constant_9_pm_to_9_30_pm -util_social_arrival_constant_9_30_pm_to_10_pm,SOCIAL - Arrival Constant: 9:30 PM to10:00 PM,@((df.tour_type == 'social') & (df.end==38)),coef_social_arrival_constant_9_30_pm_to_10_pm -util_social_arrival_constant_10_pm_to_10_30_pm,SOCIAL - Arrival Constant: 10:00 PM to 10:30 PM,@((df.tour_type == 'social') & (df.end==39)),coef_social_arrival_constant_10_pm_to_10_30_pm -util_social_arrival_constant_after_10_30_pm,SOCIAL - Arrival Constant: After 10:30 PM,@((df.tour_type == 'social') & (df.end>39)),coef_social_arrival_constant_after_10_30_pm -util_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear,SOCIAL - Arrival Constant: Shift for every 30 minutes after 11:00 pm - Linear,"@np.where(((df.tour_type == 'social') & (df.end>40)), (np.where((df.end<35), np.minimum(35-df.end,48), 0) +np.where((df.end>40),np.minimum(df.end-40,48),0)), 0)",coef_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear -util_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear,SOCIAL - Duration Constant: Shift for every 30 minutes less than 2.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<5)), (np.where((df.duration<5), np.minimum(5-df.duration,47), 0) + np.where((df.duration>7), np.minimum(df.duration-7,47), 0)), 0)",coef_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear -util_social_duration_constant_less_than_3_hours,SOCIAL - Duration Constant: Less than 3 hrs,@((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration<6)),coef_social_duration_constant_less_than_3_hours -util_social_duration_constant_3_hours,SOCIAL - Duration Constant: 3 hours,@((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration==6)),coef_social_duration_constant_3_hours -util_social_duration_constant_3_hrs_30_minutes,SOCIAL - Duration Constant: 3.5 hours,@((df.tour_category != 'joint')& (df.tour_type == 'social') & (df.duration==7)),coef_social_duration_constant_3_hrs_30_minutes -util_social_duration_constant_4_hours_or_more,SOCIAL - Duration Constant: 4 hours or more,@((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>7)),coef_social_duration_constant_4_hours_or_more -util_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear,SOCIAL - Duration Constant: Shift for every 30 minutes more than 4.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'social') & (df.duration>8)), (np.where((df.duration<5), np.minimum(5-df.duration,47), 0) + np.where((df.duration>8), np.minimum(df.duration-8,47), 0)), 0)",coef_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear -util_social_calibration_constant_duration_1,SOCIAL - Calibration Constant - Duration = 1,@((df.tour_type == 'social') & (df.duration ==0)),coef_social_calibration_constant_duration_1 -util_social_calibration_constant_duration_2,SOCIAL - Calibration Constant - Duration = 2,@((df.tour_type == 'social') & (df.duration == 1)),coef_social_calibration_constant_duration_2 -util_social_calibration_constant_duration_3,SOCIAL - Calibration Constant - Duration = 3,@((df.tour_type == 'social') & (df.duration ==2)),coef_social_calibration_constant_duration_3 -util_social_calibration_constant_duration_4,SOCIAL - Calibration Constant - Duration = 4,@((df.tour_type == 'social') & (df.duration ==3)),coef_social_calibration_constant_duration_4 -util_social_calibration_constant_duration_5,SOCIAL - Calibration Constant - Duration = 5,@((df.tour_type == 'social') & (df.duration ==4)),coef_social_calibration_constant_duration_5 -util_social_calibration_constant_duration_6,SOCIAL - Calibration Constant - Duration = 6,@((df.tour_type == 'social') & (df.duration ==5)),coef_social_calibration_constant_duration_6 -util_social_calibration_constant_duration_7,SOCIAL - Calibration Constant - Duration = 7,@((df.tour_type == 'social') & (df.duration ==6)),coef_social_calibration_constant_duration_7 -util_social_calibration_constant_duration_8,SOCIAL - Calibration Constant - Duration = 8,@((df.tour_type == 'social') & (df.duration ==7)),coef_social_calibration_constant_duration_8 -util_social_calibration_constant_duration_9,SOCIAL - Calibration Constant - Duration = 9,@((df.tour_type == 'social') & (df.duration ==8)),coef_social_calibration_constant_duration_9 -#DISCRETIONARY,#DISCRETIONARY,,#DISCRETIONARY -util_discretionary_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Person< 18 years old: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear -util_discretionary_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Person< 18 years old: Duration > 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear -util_discretionary_non_working_senior_retiree_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Non-working senior/ retiree: Duration < 1.5 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3) & (df.ptype == 5)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_non_working_senior_retiree_duration_less_than_1_hr_30_minutes_linear -util_discretionary_retiree_non_working_senior_only_HH_duration_1_hr_30_minutes_linear,DISCRETIONARY - Retiree/ Non-working senior only HH: Duration < 1.5 hrs - Linear,"@np.where(((df.retired_adults_only_hh) & (df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_retiree_non_working_senior_only_HH_duration_1_hr_30_minutes_linear -util_discretionary_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Zero auto households: Duration < 1.5 hrs - Linear,"@np.where(((df.auto_ownership == 0) & (df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_zero_auto_households_duration_less_than_1_hr_30_minutes_linear -util_discretionary_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Zero auto households: Duration > 1.5 hrs - Linear,"@np.where(((df.auto_ownership == 0) & (df.tour_type == 'othdiscr') & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear -util_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,DISCRETIONARY - Number of auto more that number of adults: Duration < 1.5 hrs - Linear,"@np.where(((df.auto_ownership > 0) & (df.tour_type == 'othdiscr') & (df.auto_ownership > df.num_adults) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)),0)",coef_discretionary_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear -util_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,DISCRETIONARY - Number of auto more that number of adults: Duration > 1.5 hrs - Linear,"@np.where(((df.auto_ownership > 0) &(df.tour_type == 'othdiscr')&(df.auto_ownership > df.num_adults) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_discretionary_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear -"# In CTRAMP, although the description below says duration is less than 1 hr, expression is for less than 1.5 hr",,, -util_discretionary_auto_distance_duration_less_than_1_hr_linear,DISCRETIONARY - Auto Distance: Duration < 1 hr - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_discretionary_auto_distance_duration_less_than_1_hr_linear -util_discretionary_auto_distance_duration_greater_than_1_hr_linear,DISCRETIONARY - Auto Distance: Duration > 1 hr - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_discretionary_auto_distance_duration_greater_than_1_hr_linear -util_discretionary_time_pressure_duration_less_than_1_hr,DISCRETIONARY - Time Pressure - Duration < 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration<3)), np.minimum(3-df.duration,47), 0) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_discretionary_time_pressure_duration_less_than_1_hr -util_discretionary_time_pressure_duration_greater_than_1_hr,DISCRETIONARY - Time Pressure - Duration > 1 hr,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>3)), np.minimum(df.duration-3,47) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_discretionary_time_pressure_duration_greater_than_1_hr -util_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,DISCRETIONARY - Number of additional individual social and dicretionary tours - Duration < 1 hr,"@np.where(((df.tour_category != 'joint')&(df.tour_type == 'othdiscr') & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0))*(df.num_add_soc_discr_tours),0)",coef_discretionary_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr -util_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 07:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.start<9)), (np.where((df.start<9), np.minimum(9-df.start,48), 0) + np.where((df.start>48), np.minimum(df.start-48,48),0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_before_7_30_pm_linear -util_discretionary_departure_constant_before_7_30_am,DISCRETIONARY - Departure Constant: Before 7:30 AM ,@((df.tour_type == 'othdiscr') & (df.start<10)),coef_discretionary_departure_constant_before_7_30_am -util_discretionary_departure_constant_7_30_am_to_8_am,DISCRETIONARY - Departure Constant: 7:30 AM to 8:00 AM,@((df.tour_type == 'othdiscr') & (df.start==10)),coef_discretionary_departure_constant_7_30_am_to_8_am -util_discretionary_departure_constant_8_am_to_8_30_am,DISCRETIONARY - Departure Constant: 8:00 AM to 8:30 AM,@((df.tour_type == 'othdiscr') & (df.start==11)),coef_discretionary_departure_constant_8_am_to_8_30_am -util_discretionary_departure_constant_8_30_am_to_9_am,DISCRETIONARY - Departure Constant: 8:30 AM to 9:00 AM,@((df.tour_type == 'othdiscr') & (df.start==12)),coef_discretionary_departure_constant_8_30_am_to_9_am -util_discretionary_departure_constant_9_am_to_9_30_am,DISCRETIONARY - Departure Constant: 9:00 AM to 9:30 AM,@((df.tour_type == 'othdiscr') & (df.start==13)),coef_discretionary_departure_constant_9_am_to_9_30_am -util_discretionary_departure_constant_9_30_am_to_10_am,DISCRETIONARY - Departure Constant: 9:30 AM to 10:00 AM,@((df.tour_type == 'othdiscr') & (df.start==14)),coef_discretionary_departure_constant_9_30_am_to_10_am -util_discretionary_departure_constant_10_am_to_10_30_am,DISCRETIONARY - Departure Constant: 10:00 AM to 10:30 AM,@((df.tour_type == 'othdiscr') & (df.start==15)),coef_discretionary_departure_constant_10_am_to_10_30_am -util_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes before 04:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.start<28)), (np.where((df.start<28), np.minimum(28-df.start,8),0) + np.where((df.start>33), np.minimum(df.start-33,6), 0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_before_4_30_pm_linear -util_discretionary_departure_constant_before_5_pm,DISCRETIONARY - Departure Constant: Before 05:00 PM,@((df.tour_type == 'othdiscr') & (df.start<29)),coef_discretionary_departure_constant_before_5_pm -util_discretionary_departure_constant_5_pm_to_5_30_pm,DISCRETIONARY - Departure Constant: 05:00 PM - 05:30 PM,@((df.tour_type == 'othdiscr') & (df.start==29)),coef_discretionary_departure_constant_5_pm_to_5_30_pm -util_discretionary_departure_constant_5_30_pm_to_6_pm,DISCRETIONARY - Departure Constant: 05:30 PM - 06:00 PM,@((df.tour_type == 'othdiscr') & (df.start==30)),coef_discretionary_departure_constant_5_30_pm_to_6_pm -util_discretionary_departure_constant_6_pm_to_6_30_pm,DISCRETIONARY - Departure Constant: 06:00 PM - 06:30 PM,@((df.tour_type == 'othdiscr') & (df.start==31)),coef_discretionary_departure_constant_6_pm_to_6_30_pm -util_discretionary_departure_constant_6_30_pm_to_7_pm,DISCRETIONARY - Departure Constant: 06:30 PM - 07:00 PM,@((df.tour_type == 'othdiscr') & (df.start==32)),coef_discretionary_departure_constant_6_30_pm_to_7_pm -util_discretionary_departure_constant_after_7_pm,DISCRETIONARY - Departure Constant: After 07:00 PM,@((df.tour_type == 'othdiscr') & (df.start>32)),coef_discretionary_departure_constant_after_7_pm -util_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear,DISCRETIONARY - Departure Constant: Shift for every 30 minutes after 07:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.start>33)), (np.where((df.start<28), np.minimum(28-df.start,8), 0) + np.where((df.start>33), np.minimum(df.start-33,6), 0)), 0)",coef_discretionary_departure_constant_shift_for_every_30_minutes_after_7_30_pm_linear -util_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes before 06:00 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.end<31)), (np.where((df.end<31), np.minimum(31-df.end,48), 0) + np.where((df.end>37), np.minimum(df.end-37,48), 0)), 0)",coef_discretionary_arrival_constant_shift_for_every_30_minutes_before_6_pm_linear -util_discretionary_arrival_constant_before_6_30_pm,DISCRETIONARY - Arrival Constant: Before 6:30 PM,@((df.tour_type == 'othdiscr') & (df.end<32)),coef_discretionary_arrival_constant_before_6_30_pm -util_discretionary_arrival_constant_6_30_pm_to_7_pm,DISCRETIONARY - Arrival Constant: 6:30 PM to 7:00 PM,@((df.tour_type == 'othdiscr') & (df.end==32)),coef_discretionary_arrival_constant_6_30_pm_to_7_pm -util_discretionary_arrival_constant_7_pm_to_7_30_pm,DISCRETIONARY - Arrival Constant: 7:00 PM to 7:30 PM,@((df.tour_type == 'othdiscr') & (df.end==33)),coef_discretionary_arrival_constant_7_pm_to_7_30_pm -util_discretionary_arrival_constant_7_30_pm_to_8_pm,DISCRETIONARY - Arrival Constant: 7:30 PM to 8:00 PM,@((df.tour_type == 'othdiscr') & (df.end==34)),coef_discretionary_arrival_constant_7_30_pm_to_8_pm -util_discretionary_arrival_constant_8_pm_to_8_30_pm,DISCRETIONARY - Arrival Constant: 8:00 PM to 8:30 PM,@((df.tour_type == 'othdiscr') & (df.end==35)),coef_discretionary_arrival_constant_8_pm_to_8_30_pm -util_discretionary_arrival_constant_8_30_pm_to_9_pm,DISCRETIONARY - Arrival Constant: 8:30 PM to 9:00 PM,@((df.tour_type == 'othdiscr') & (df.end==36)),coef_discretionary_arrival_constant_8_30_pm_to_9_pm -util_discretionary_arrival_constant_after_9_pm,DISCRETIONARY - Arrival Constant: After 9:00 PM,@((df.tour_type == 'othdiscr') & (df.end>36)),coef_discretionary_arrival_constant_after_9_pm -util_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear,DISCRETIONARY - Arrival Constant: Shift for every 30 minutes after 09:30 pm - Linear,"@np.where(((df.tour_type == 'othdiscr') & (df.end>37)), (np.where((df.end<31), np.minimum(31-df.end,48), 0) + np.where((df.end>37), np.minimum(df.end-37,48),0)), 0)",coef_discretionary_arrival_constant_shift_for_every_30_minutes_after_9_30_pm_linear -util_discretionary_duration_constant_0_hour,DISCRETIONARY - Duration Constant: 0 hour,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==0)),coef_discretionary_duration_constant_0_hour -util_discretionary_duration_constant_30_minutes,DISCRETIONARY -Duration Constant: 0.5 hour,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==1)),coef_discretionary_duration_constant_30_minutes -util_discretionary_duration_constant_1_hour,DISCRETIONARY -Duration Constant: 1 hour,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==2)),coef_discretionary_duration_constant_1_hour -util_discretionary_duration_constant_1_hr_30_minutes,DISCRETIONARY -Duration Constant: 1.5 hours,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==3)),coef_discretionary_duration_constant_1_hr_30_minutes -util_discretionary_duration_constant_2_hours,DISCRETIONARY -Duration Constant: 2 hours,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==4)),coef_discretionary_duration_constant_2_hours -util_discretionary_duration_constant_2_hr_30_minutes,DISCRETIONARY -Duration Constant: 2.5 hours,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration==5)),coef_discretionary_duration_constant_2_hr_30_minutes -util_discretionary_duration_constant_3_hours_or_more,DISCRETIONARY -Duration Constant: 3 hours or more,@((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>5)),coef_discretionary_duration_constant_3_hours_or_more -util_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear,DISCRETIONARY -Duration Constant: Shift for every 30 minutes more than 3 hrs - Linear,"@np.where(((df.tour_category != 'joint') & (df.tour_type == 'othdiscr') & (df.duration>6)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>6), np.minimum(df.duration-6,47), 0)), 0)",coef_discretionary_duration_constant_shift_for_every_30_minutes_more_than_3_hrs_linear -util_discretionary_calibration_constant_duration_4,DISCRETIONARY -Calibration Constant - Duration = 4,@((df.tour_type == 'othdiscr') & (df.duration==3)),coef_discretionary_calibration_constant_duration_4 -util_discretionary_calibration_constant_duration_5,DISCRETIONARY -Calibration Constant - Duration = 5,@((df.tour_type == 'othdiscr') & (df.duration==4)),coef_discretionary_calibration_constant_duration_5 -util_discretionary_calibration_constant_departure_29,DISCRETIONARY -Calibration Constant - Departure = 29,@((df.tour_type == 'othdiscr') & (df.start==29)),coef_discretionary_calibration_constant_departure_29 -util_discretionary_calibration_constant_departure_30,DISCRETIONARY -Calibration Constant - Departure = 30,@((df.tour_type == 'othdiscr') & (df.start==30)),coef_discretionary_calibration_constant_departure_30 -util_discretionary_calibration_constant_departure_31,DISCRETIONARY -Calibration Constant - Departure = 31,@((df.tour_type == 'othdiscr') & (df.start==31)),coef_discretionary_calibration_constant_departure_31 -util_discretionary_calibration_constant_departure_32,DISCRETIONARY -Calibration Constant - Departure = 32,@((df.tour_type == 'othdiscr') & (df.start==32)),coef_discretionary_calibration_constant_departure_32 diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shopping.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shopping.csv deleted file mode 100644 index 07e94fd82..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shopping.csv +++ /dev/null @@ -1,55 +0,0 @@ -Label,Description,Expression,Coefficient -#SHOPPING,,,#SHOPPING -util_shoppping_driving_age_student_duration_greater_than_1_hour_30_minutes,SHOPPING - Driving age student: Duration > 1.5 hrs,"@np.where(((df.duration>2) & (df.ptype == 6)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_driving_age_student_duration_greater_than_1_hour_30_minutes -util_shoppping_full_time_worker_duration_greater_than_1_hour_30_minutes,SHOPPING - Full-time worker: Duration > 1.5 hr,"@np.where(((df.duration>2) & (df.ptype == 1)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_full_time_worker_duration_greater_than_1_hour_30_minutes -util_shoppping_non_driving_student_duration_greater_than_1_hour_30_minutes,SHOPPING - Non-driving Student: Duration > 1.5 hrs,"@np.where(((df.duration>2) & ((df.ptype == 7)|(df.ptype == 8))), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_non_driving_student_duration_greater_than_1_hour_30_minutes -util_shoppping_pre_school_child_duration_less_than_1_hour_30_minutes,SHOPPING - Pre-school Child: Duration < 1.5 hrs,"@np.where(((df.duration<2) & (df.ptype == 8)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_pre_school_child_duration_less_than_1_hour_30_minutes -util_shoppping_part_time_worker_duration_less_than_1_hour_30_minutes,SHOPPING - Part Time Worker: Duration < 1.5 hrs,"@np.where(((df.duration<2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shoppping_part_time_worker_duration_less_than_1_hour_30_minutes -util_shopping_part_time_worker_duration_greater_than_1_hour_30_minutes,SHOPPING - Part Time Worker: Duration > 1.5 hr,"@np.where(((df.duration>2) & (df.ptype == 2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_part_time_worker_duration_greater_than_1_hour_30_minutes -util_shopping_retired_duration_less_than_1_hour_30_minutes,SHOPPING - Retired: Duration < 1.5 hrs,"@np.where(((df.duration<2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_retired_duration_less_than_1_hour_30_minutes -util_shopping_retired_duration_greater_than_1_hour_30_minutes,SHOPPING - Retired: Duration > 1.5 hr,"@np.where(((df.duration>2) & (df.ptype == 5)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_retired_duration_greater_than_1_hour_30_minutes -util_shopping_university_student_duration_greater_than_1_hour_30_minutes,SHOPPING - University Student: Duration > 1.5 hr,"@np.where(((df.duration>2) & (df.ptype == 3)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_university_student_duration_greater_than_1_hour_30_minutes -util_shopping_female_duration_less_than_1_hour_30_minutes,SHOPPING - Female: Duration < 1.5 hrs,"@np.where(((df.duration<2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_female_duration_less_than_1_hour_30_minutes -util_shopping_female_duration_greater_than_1_hour_30_minutes,SHOPPING - Female: Duration > 1.5 hr,"@np.where(((df.duration>2) & (df.female)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_female_duration_greater_than_1_hour_30_minutes -util_shopping_low_income_duration_greater_than_1_hour_30_minutes,"SHOPPING - Low Income (<=$25,000): Duration > 1.5 hr","@np.where(((df.is_income_less25K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_low_income_duration_greater_than_1_hour_30_minutes -util_shopping_medium_income_duration_less_than_1_hour_30_minutes,"SHOPPING - Medium Income ($25,001 to $60,000): Duration < 1.5 hrs","@np.where(((df.is_income_25K_to_60K) & (df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_medium_income_duration_less_than_1_hour_30_minutes -util_shopping_medium_high_income_duration_greater_than_1_hour_30_minutes,"SHOPPING - Medium-High Income ($60,001 to $120,00): Duration > 1.5 hrs","@np.where(((df.is_income_60K_to_120K) & (df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2), np.minimum(df.duration-2,26), 0)), 0)",coef_shopping_medium_high_income_duration_greater_than_1_hour_30_minutes -util_shopping_distance_duration_less_than_1_hour_30_minutes,SHOPPING - Distance: Duration < 1.5 hrs,"@np.where(((df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_shopping_distance_duration_less_than_1_hour_30_minutes -#util_shopping_distance_duration_greater_than_1_hour_30_minutes,SHOPPING - Distance: Duration > 1.5 hrs,"@np.where(((df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) * (df.origin_to_destination_distance), 0)",coef_shopping_distance_duration_greater_than_1_hour_30_minutes -util_shopping_time_pressure_duration_greater_than_1_hour_30_minutes,SHOPPING - Time Pressure - Duration > 1.5 hrs,"@np.where(((df.duration>2)), np.minimum(df.duration-2,26) *(np.log10 (30 *(tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_shopping_time_pressure_duration_greater_than_1_hour_30_minutes -util_shopping_time_pressure_duration_greater_than_1_hour_30_minutes,SHOPPING - Time Pressure - Duration > 1.5 hrs,"@np.where(((df.duration>2)), np.minimum(df.duration-2,26) *(np.log10 (30 *(tt.max_time_block_available(df.person_id)/(1.0 + df.tour_count - df.tour_num)))), 0)",coef_shopping_time_pressure_duration_greater_than_1_hour_30_minutes -util_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,SHOPPING - Number of additional individual shop and maint. tours - Duration < 1.5 hrs,"@np.where(((df.duration<2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.num_add_shop_maint_tours), 0)",coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes -util_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,SHOPPING - Number of additional individual shop and maint. tours - Duration > 1.5 hrs,"@np.where(((df.tour_type == 'shopping') &(df.duration>2)), (np.where((df.duration<=2), np.minimum(2-df.duration,1), 0) + np.where((df.duration>2),np.minimum(df.duration-2,26), 0)) *(df.num_add_shop_maint_tours), 0)",coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes -util_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@np.where(((df.start<12)), (np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear -util_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root,SHOPPING - Departure Constant: Shift for every 30 minutes before 08:30 am - Square root,"@np.where(((df.start<12)), (np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0))**0.5, 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root -util_shopping_departure_constant_before_9_am,SHOPPING - Departure Constant: Before 09:00 AM,@((df.start<13)),coef_shopping_departure_constant_before_9_am -util_shopping_departure_constant_9_am_to_9_30_am,SHOPPING - Departure Constant: 09:00 AM - 09:30 AM,@((df.start==13)),coef_shopping_departure_constant_9_am_to_9_30_am -util_shopping_departure_constant_9_30_am_to_10_am,SHOPPING - Departure Constant: 09:30 AM - 10:00 AM,@((df.start==14)),coef_shopping_departure_constant_9_30_am_to_10_am -util_shopping_departure_constant_10_am_to_10_30_am,SHOPPING - Departure Constant: 10:00 AM - 10:30 AM,@((df.start==15)),coef_shopping_departure_constant_10_am_to_10_30_am -util_shopping_departure_constant_10_30_am_to_11_00_am,SHOPPING - Departure Constant: 10:30 AM - 11:00 AM,@((df.start==16)),coef_shopping_departure_constant_10_30_am_to_11_00_am -util_shopping_departure_constant_after_11_am,SHOPPING - Departure Constant: After 11:00 AM,@((df.start>16)),coef_shopping_departure_constant_after_11_am -util_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Linear,"@np.where(((df.start>17)), (np.where((df.start<12), np.minimum(12-df.start,7),0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear -util_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,SHOPPING - Departure Constant: Shift for every 30 minutes after 11:30 am - Squared,"@np.where(((df.start>17)), ((np.where((df.start<12), np.minimum(12-df.start,7), 0) + np.where((df.start>17), np.minimum(df.start-17,24), 0)) ** 2), 0)",coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared -util_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear,SHOPPING - Arrival Constant: Shift for every 30 minutes before 12:00 pm - Linear,"@np.where(((df.end<19)), (np.where ((df.end<19), np.minimum(19-df.end,10), 0) + np.where((df.end>38), np.minimum(df.end-38,5), 0)), 0)",coef_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear -util_shopping_arrival_constant_before_12_30_pm,SHOPPING - Arrival Constant: Before 12:30 PM,@((df.end<20)),coef_shopping_arrival_constant_before_12_30_pm -util_shopping_arrival_constant_12_30_pm_to_3_pm,SHOPPING - Arrival Constant: 12:30 PM - 03:00 PM,@(( df.end>=20) & (df.end<=24)),coef_shopping_arrival_constant_12_30_pm_to_3_pm -util_shopping_arrival_constant_3_pm_to_3_30_pm,SHOPPING - Arrival Constant: 03:00 PM - 03:30 PM,@((df.end==25)),coef_shopping_arrival_constant_3_pm_to_3_30_pm -util_shopping_arrival_constant_3_30_pm_to_4_pm,SHOPPING - Arrival Constant: 03:30 PM - 04:00 PM,@((df.end==26)),coef_shopping_arrival_constant_3_30_pm_to_4_pm -util_shopping_arrival_constant_4_pm_to_4_30_pm,SHOPPING - Arrival Constant: 04:00 PM - 04:30 PM,@((df.end==27)),coef_shopping_arrival_constant_4_pm_to_4_30_pm -util_shopping_arrival_constant_4_30_pm_to_5_pm,SHOPPING - Arrival Constant: 04:30 PM - 05:00 PM,@((df.end==28)),coef_shopping_arrival_constant_4_30_pm_to_5_pm -util_shopping_arrival_constant_5_pm_to_5_30_pm,SHOPPING - Arrival Constant: 05:00 PM - 05:30 PM,@((df.end==29)),coef_shopping_arrival_constant_5_pm_to_5_30_pm -util_shopping_arrival_constant_5_30_pm_to_7_pm,SHOPPING - Arrival Constant: 05:30 PM - 07:00 PM,@((df.end>=30) & (df.end<=32)),coef_shopping_arrival_constant_5_30_pm_to_7_pm -util_shopping_arrival_constant_7_pm_to_9_30_pm,SHOPPING - Arrival Constant: 07:00 PM - 09:30 PM,@((df.end>=33) & (df.end<=37)),coef_shopping_arrival_constant_7_pm_to_9_30_pm -util_shopping_arrival_constant_after_9_30_pm,SHOPPING - Arrival Constant: After 09:30 PM,@((df.end>37)),coef_shopping_arrival_constant_after_9_30_pm -util_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear,SHOPPING - Arrival Constant: Shift for every 30 minutes after 10:00 pm - Linear,"@np.where(((df.end>38)), (np.where((df.end<19), np.minimum(19-df.end,10), 0) + np.where ((df.end>38), np.minimum(df.end-38,5), 0)), 0)",coef_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear -util_shopping_duration_constant_0_hr,SHOPPING - Duration Constant: 0 hr,@((df.duration==0)),coef_shopping_duration_constant_0_hr -util_shopping_duration_constant_30_minutes,SHOPPING - Duration Constant: 0.5 hr,@((df.duration==1)),coef_shopping_duration_constant_30_minutes -util_shopping_duration_constant_1_hr,SHOPPING - Duration Constant: 1 hr,@((df.duration==2)),coef_shopping_duration_constant_1_hr -util_shopping_duration_constant_1_hour_30_minutes,SHOPPING - Duration Constant: 1.5hrs,@(df.duration==3),coef_shopping_duration_constant_1_hour_30_minutes -util_shopping_duration_constant_2_hrs,SHOPPING - Duration Constant: 2 hrs,@((df.duration==4)),coef_shopping_duration_constant_2_hrs -util_shopping_duration_constant_longer_than_2_hrs,SHOPPING - Duration Constant: Longer than 2 hrs,@((df.duration>4)),coef_shopping_duration_constant_longer_than_2_hrs -util_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear,SHOPPING - Duration Constant: Duration > 2.5 hrs - Linear,"@np.where(((df.duration>5)), (np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,26), 0)), 0)",coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear -util_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root,SHOPPING - Duration Constant: Duration > 2.5 hrs - Square root,"@np.where(((df.duration>5)), ((np.where((df.duration<0), np.minimum(0-df.duration,47), 0) + np.where((df.duration>5), np.minimum(df.duration-5,26), 0)) ** 0.5), 0)",coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root -util_shopping_calibration_constant_duration_1,SHOPPING - Calibration Constant - Duration = 1,@((df.duration==0)),coef_shopping_calibration_constant_duration_1 -util_shopping_calibration_constant_duration_2,SHOPPING - Calibration Constant - Duration = 2,@((df.duration==1)),coef_shopping_calibration_constant_duration_2 -util_shopping_calibration_constant_duration_3,SHOPPING - Calibration Constant - Duration = 3,@((df.duration==2)),coef_shopping_calibration_constant_duration_3 diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shopping_coefficients.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shopping_coefficients.csv deleted file mode 100644 index fac50e210..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_shopping_coefficients.csv +++ /dev/null @@ -1,53 +0,0 @@ -coefficient_name,value,constrain -coef_shoppping_driving_age_student_duration_greater_than_1_hour_30_minutes,0.122149101,F -coef_shoppping_full_time_worker_duration_greater_than_1_hour_30_minutes,-0.037886459,F -coef_shoppping_non_driving_student_duration_greater_than_1_hour_30_minutes,0.10247157,F -coef_shoppping_pre_school_child_duration_less_than_1_hour_30_minutes,-1.882944033,F -coef_shoppping_part_time_worker_duration_less_than_1_hour_30_minutes,-0.197455071,F -coef_shopping_part_time_worker_duration_greater_than_1_hour_30_minutes,-0.045152663,F -coef_shopping_retired_duration_less_than_1_hour_30_minutes,-0.264728908,F -coef_shopping_retired_duration_greater_than_1_hour_30_minutes,-0.042981757,F -coef_shopping_university_student_duration_greater_than_1_hour_30_minutes,0.045926523,F -coef_shopping_female_duration_less_than_1_hour_30_minutes,-0.417208254,F -coef_shopping_female_duration_greater_than_1_hour_30_minutes,0.045801918,F -coef_shopping_low_income_duration_greater_than_1_hour_30_minutes,0.040776383,F -coef_shopping_medium_income_duration_less_than_1_hour_30_minutes,0.108462927,F -coef_shopping_medium_high_income_duration_greater_than_1_hour_30_minutes,-0.037893416,F -coef_shopping_distance_duration_less_than_1_hour_30_minutes,-0.214802537,F -coef_shopping_distance_duration_greater_than_1_hour_30_minutes,0.007991656,F -coef_shopping_time_pressure_duration_greater_than_1_hour_30_minutes,0.013503327,F -coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_less_than_1_hour_30_minutes,0.078844289,F -coef_shopping_number_of_additional_individual_shop_and_maint_tours_duration_greater_than_1_hour_30_minutes,-0.115431492,F -coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,-0.959875456,F -coef_shopping_departure_constant_shift_for_every_30_minutes_before_8_30_am_square_root,1.112594898,F -coef_shopping_departure_constant_before_9_am,-0.446394064,F -coef_shopping_departure_constant_9_am_to_9_30_am,-0.021669265,F -coef_shopping_departure_constant_9_30_am_to_10_am,-0.282978638,F -coef_shopping_departure_constant_10_am_to_10_30_am,0,T -coef_shopping_departure_constant_10_30_am_to_11_00_am,-0.309421311,F -coef_shopping_departure_constant_after_11_am,-0.541073357,F -coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_linear,-0.072013428,F -coef_shopping_departure_constant_shift_for_every_30_minutes_after_11_30_am_squared,-0.000653398,F -coef_shopping_arrival_constant_shift_for_every_30_minutes_before_12_pm_linear,-0.18376635,F -coef_shopping_arrival_constant_before_12_30_pm,-0.716195343,F -coef_shopping_arrival_constant_12_30_pm_to_3_pm,-0.502714001,F -coef_shopping_arrival_constant_3_pm_to_3_30_pm,-0.167868872,F -coef_shopping_arrival_constant_3_30_pm_to_4_pm,-0.156786941,F -coef_shopping_arrival_constant_4_pm_to_4_30_pm,0,T -coef_shopping_arrival_constant_4_30_pm_to_5_pm,-0.057314044,F -coef_shopping_arrival_constant_5_pm_to_5_30_pm,-0.580040851,F -coef_shopping_arrival_constant_5_30_pm_to_7_pm,-0.32239566,F -coef_shopping_arrival_constant_7_pm_to_9_30_pm,-0.347828147,F -coef_shopping_arrival_constant_after_9_30_pm,-1.123574723,F -coef_shopping_arrival_constant_shift_for_every_30_minutes_after_10_pm_linear,-0.499770654,F -coef_shopping_duration_constant_0_hr,-0.131743185,F -coef_shopping_duration_constant_30_minutes,0.888857137,F -coef_shopping_duration_constant_1_hr,0,T -coef_shopping_duration_constant_1_hour_30_minutes,-0.333413031,F -coef_shopping_duration_constant_2_hrs,-0.850897912,F -coef_shopping_duration_constant_longer_than_2_hrs,-1.203783479,F -coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_linear,-0.293581223,F -coef_shopping_duration_constant_duration_greater_than_2_hr_30_minutes_square_root,-0.215759138,F -coef_shopping_calibration_constant_duration_1,-0.138450424,F -coef_shopping_calibration_constant_duration_2,-0.092704403,F -coef_shopping_calibration_constant_duration_3,-0.087738073,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_social.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_social.csv deleted file mode 100644 index febe0516d..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_social.csv +++ /dev/null @@ -1,54 +0,0 @@ -Label,Description,Expression,Coefficient -#SOCIAL,#SOCIAL,,#SOCIAL -util_social_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Person< 18 years old: Duration < 1.5 hrs - Linear,"@np.where(((df.duration<3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear -util_social_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Person< 18 years old: Duration > 1.5 hrs - Linear,"@np.where(((df.duration>3) & (df.age<18)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear -util_social_non_working_senior_or_retiree_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Non-working senior/ retiree: Duration < 1.5 hrs - Linear,"@np.where(((df.duration<3) & (df.ptype == 5)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_non_working_senior_or_retiree_duration_less_than_1_hr_30_minutes_linear -util_social_retiree_or_non_working_senior_only_HH_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Retiree/ Non-working senior only HH: Duration < 1.5 hrs - Linear,"@np.where(((df.retired_adults_only_hh) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_retiree_or_non_working_senior_only_HH_duration_less_than_1_hr_30_minutes_linear -util_social_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Zero auto households: Duration < 1.5 hrs - Linear,"@np.where(((df.auto_ownership == 0) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_zero_auto_households_duration_less_than_1_hr_30_minutes_linear -util_social_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Zero auto households: Duration > 1.5 hrs - Linear,"@np.where(((df.auto_ownership == 0) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)), 0)",coef_social_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear -util_social_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,SOCIAL - Number of auto more than number of adults: Duration < 1.5 hrs - Linear,"@np.where(((df.auto_ownership > 0) &(df.auto_ownership > df.num_adults) & (df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear -util_social_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,SOCIAL - Number of auto more than number of adults: Duration > 1.5 hrs - Linear,"@np.where(((df.auto_ownership > 0) & (df.auto_ownership > df.num_adults) & (df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3), np.minimum(df.duration-3,47), 0)), 0)",coef_social_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear -"# In CTRAMP, although the description below says duration is less than 1 hr, expression is for less than 1.5 hr",,, -util_social_auto_distance_duration_less_than_1_hr_linear,SOCIAL - Auto Distance: Duration < 1 hr - Linear,"@np.where(((df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_social_auto_distance_duration_less_than_1_hr_linear -util_social_auto_distance_duration_greater_than_1_hr_linear,SOCIAL - Auto Distance: Duration > 1 hr - Linear,"@np.where(((df.duration>3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)) * (df.origin_to_destination_distance), 0)",coef_social_auto_distance_duration_greater_than_1_hr_linear -util_social_time_pressure_duration_less_than_1_hr,SOCIAL - Time Pressure - Duration < 1 hr,"@np.where(((df.duration<3)), np.minimum(3-df.duration,47), 0)* (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_social_time_pressure_duration_less_than_1_hr -util_social_time_pressure_duration_greater_than_1_hr,SOCIAL - Time Pressure - Duration > 1 hr,"@np.where(((df.duration>3)), np.minimum(df.duration-3,47), 0) * (np.log10 (30 * (tt.remaining_periods_available(df.person_id, df.start, df.end)/(1.0 + df.tour_count - df.tour_num))))",coef_social_time_pressure_duration_greater_than_1_hr -util_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,SOCIAL - Number of additional individual social and dicretionary tours - Duration < 1 hr,"@np.where(((df.duration<3)), (np.where((df.duration<=3), np.minimum(3-df.duration,47), 0) + np.where((df.duration>3),np.minimum(df.duration-3,47), 0)) * (df.num_add_soc_discr_tours), 0)",coef_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr -util_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 08:30 am - Linear,"@((df.start<12)) * ((np.minimum(12-df.start,48)*(df.start<12)) + (np.minimum(df.start-48,48)*(df.start>48)))",coef_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear -util_social_departure_constant_before_9_am,SOCIAL - Departure Constant: Before 09:00 AM,@(df.start<13),coef_social_departure_constant_before_9_am -util_social_departure_constant_9_am_to_9_30_am,SOCIAL - Departure Constant: 09:00 AM to 09:30 AM,@(df.start==13),coef_social_departure_constant_9_am_to_9_30_am -util_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear,SOCIAL - Departure Constant: Shift for every 30 minutes before 05:00 pm - Linear,"@np.where((df.start<29), (np.where((df.start<29), np.minimum(29-df.start,8), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear -util_social_departure_constant_before_5_30_pm,SOCIAL - Departure Constant: Before 05:30 PM,@((df.start<30)),coef_social_departure_constant_before_5_30_pm -util_social_departure_constant_5_30_pm_to_6_pm,SOCIAL - Departure Constant: 05:30 PM - 06:00 PM,@((df.start==30)),coef_social_departure_constant_5_30_pm_to_6_pm -util_social_departure_constant_6_pm_to_6_30_pm,SOCIAL - Departure Constant: 06:00 PM - 06:30 PM,@((df.start==31)),coef_social_departure_constant_6_pm_to_6_30_pm -util_social_departure_constant_6_30_pm_to_7_pm,SOCIAL - Departure Constant: 06:30 PM - 07:00 PM,@((df.start==32)),coef_social_departure_constant_6_30_pm_to_7_pm -util_social_departure_constant_7_pm_to_7_30_pm,SOCIAL - Departure Constant: 07:00 PM - 07:30 PM,@((df.start==33)),coef_social_departure_constant_7_pm_to_7_30_pm -util_social_departure_constant_after_7_30_pm,SOCIAL - Departure Constant: After 07:30 PM,@((df.start>33)),coef_social_departure_constant_after_7_30_pm -util_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,SOCIAL - Departure Constant: Shift for every 30 minutes after 08:00 pm - Linear,"@np.where((df.start>34), (np.where((df.start<29), np.minimum(29-df.start,8), 0) + np.where((df.start>34), np.minimum(df.start-34,6), 0)), 0)",coef_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear -util_social_arrival_constant_3_pm_to_3_30_pm,SOCIAL - Arrival Constant: 03:00 PM to 03:30 PM,@((df.end==25)),coef_social_arrival_constant_3_pm_to_3_30_pm -util_social_arrival_constant_3_30_pm_to_4_pm,SOCIAL - Arrival Constant: 03:30 PM to 04:00 PM,@((df.end==26)),coef_social_arrival_constant_3_30_pm_to_4_pm -util_social_arrival_constant_4_pm_to_4_30_pm,SOCIAL - Arrival Constant: 04:00 PM to 04:30 PM,@((df.end==27)),coef_social_arrival_constant_4_pm_to_4_30_pm -util_social_arrival_constant_5_pm_to_6_pm,SOCIAL - Arrival Constant: 05:00 PM to 06:00 PM,@((df.end>=29) & (df.end<=30)),coef_social_arrival_constant_5_pm_to_6_pm -util_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear,SOCIAL - Arrival Constant: Shift for every 30 minutes before 08:00 pm - Linear,"@np.where(((df.end<35)), (np.where((df.end<35), np.minimum(35-df.end,48), 0) + np.where((df.end>40), np.minimum(df.end-40,48), 0)), 0)",coef_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear -util_social_arrival_constant_before_8_30_pm,SOCIAL - Arrival Constant: Before 8:30 PM,@((df.end<36)),coef_social_arrival_constant_before_8_30_pm -util_social_arrival_constant_8_30_pm_to_9_pm,SOCIAL - Arrival Constant: 8:30 PM to 9:00 PM,@((df.end==36)),coef_social_arrival_constant_8_30_pm_to_9_pm -util_social_arrival_constant_9_pm_to_9_30_pm,SOCIAL - Arrival Constant: 9:00 PM to 9:30 PM,@((df.end==37)),coef_social_arrival_constant_9_pm_to_9_30_pm -util_social_arrival_constant_9_30_pm_to_10_pm,SOCIAL - Arrival Constant: 9:30 PM to10:00 PM,@((df.end==38)),coef_social_arrival_constant_9_30_pm_to_10_pm -util_social_arrival_constant_10_pm_to_10_30_pm,SOCIAL - Arrival Constant: 10:00 PM to 10:30 PM,@((df.end==39)),coef_social_arrival_constant_10_pm_to_10_30_pm -util_social_arrival_constant_after_10_30_pm,SOCIAL - Arrival Constant: After 10:30 PM,@((df.end>39)),coef_social_arrival_constant_after_10_30_pm -util_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear,SOCIAL - Arrival Constant: Shift for every 30 minutes after 11:00 pm - Linear,"@np.where(((df.end>40)), (np.where((df.end<35), np.minimum(35-df.end,48), 0) +np.where((df.end>40),np.minimum(df.end-40,48),0)), 0)",coef_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear -util_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear,SOCIAL - Duration Constant: Shift for every 30 minutes less than 2.5 hrs - Linear,"@np.where(((df.duration<5)), (np.where((df.duration<5), np.minimum(5-df.duration,47), 0) + np.where((df.duration>7), np.minimum(df.duration-7,47), 0)), 0)",coef_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear -util_social_duration_constant_less_than_3_hours,SOCIAL - Duration Constant: Less than 3 hrs,@((df.duration<6)),coef_social_duration_constant_less_than_3_hours -util_social_duration_constant_3_hours,SOCIAL - Duration Constant: 3 hours,@((df.duration==6)),coef_social_duration_constant_3_hours -util_social_duration_constant_3_hrs_30_minutes,SOCIAL - Duration Constant: 3.5 hours,@((df.duration==7)),coef_social_duration_constant_3_hrs_30_minutes -util_social_duration_constant_4_hours_or_more,SOCIAL - Duration Constant: 4 hours or more,@((df.duration>7)),coef_social_duration_constant_4_hours_or_more -util_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear,SOCIAL - Duration Constant: Shift for every 30 minutes more than 4.5 hrs - Linear,"@np.where(((df.duration>8)), (np.where((df.duration<5), np.minimum(5-df.duration,47), 0) + np.where((df.duration>8), np.minimum(df.duration-8,47), 0)), 0)",coef_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear -util_social_calibration_constant_duration_1,SOCIAL - Calibration Constant - Duration = 1,@((df.duration ==0)),coef_social_calibration_constant_duration_1 -util_social_calibration_constant_duration_2,SOCIAL - Calibration Constant - Duration = 2,@((df.duration == 1)),coef_social_calibration_constant_duration_2 -util_social_calibration_constant_duration_3,SOCIAL - Calibration Constant - Duration = 3,@((df.duration ==2)),coef_social_calibration_constant_duration_3 -util_social_calibration_constant_duration_4,SOCIAL - Calibration Constant - Duration = 4,@((df.duration ==3)),coef_social_calibration_constant_duration_4 -util_social_calibration_constant_duration_5,SOCIAL - Calibration Constant - Duration = 5,@((df.duration ==4)),coef_social_calibration_constant_duration_5 -util_social_calibration_constant_duration_6,SOCIAL - Calibration Constant - Duration = 6,@((df.duration ==5)),coef_social_calibration_constant_duration_6 -util_social_calibration_constant_duration_7,SOCIAL - Calibration Constant - Duration = 7,@((df.duration ==6)),coef_social_calibration_constant_duration_7 -util_social_calibration_constant_duration_8,SOCIAL - Calibration Constant - Duration = 8,@((df.duration ==7)),coef_social_calibration_constant_duration_8 -util_social_calibration_constant_duration_9,SOCIAL - Calibration Constant - Duration = 9,@((df.duration ==8)),coef_social_calibration_constant_duration_9 diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_social_coefficients.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_social_coefficients.csv deleted file mode 100644 index 9819e0e69..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_nonmandatory_social_coefficients.csv +++ /dev/null @@ -1,52 +0,0 @@ -coefficient_name,value,constrain -coef_social_person_less_than_18_years_old_duration_less_than_1_hr_30_minutes_linear,-0.262839914,F -coef_social_person_less_than_18_years_old_duration_greater_than_1_hr_30_minutes_linear,0.086919429,F -coef_social_non_working_senior_or_retiree_duration_less_than_1_hr_30_minutes_linear,0.468354376,F -coef_social_retiree_or_non_working_senior_only_HH_duration_less_than_1_hr_30_minutes_linear,-0.312282762,F -coef_social_zero_auto_households_duration_less_than_1_hr_30_minutes_linear,-0.508439932,F -coef_social_zero_auto_households_duration_greater_than_1_hr_30_minutes_linear,0.074190914,F -coef_social_number_of_auto_more_than_number_of_adults_duration_less_than_1_hr_30_minutes_linear,0.127185965,F -coef_social_number_of_auto_more_than_number_of_adults_duration_greater_than_1_hr_30_minutes_linear,0.048756122,F -coef_social_auto_distance_duration_less_than_1_hr_linear,-0.162965435,F -coef_social_auto_distance_duration_greater_than_1_hr_linear,0.006797399,F -coef_social_time_pressure_duration_less_than_1_hr,-0.229264474,F -coef_social_time_pressure_duration_greater_than_1_hr,0.219325112,F -coef_social_number_of_additional_individual_social_and_dicretionary_tours_duration_less_than_1_hr,0.156250451,F -coef_social_departure_constant_shift_for_every_30_minutes_before_8_30_am_linear,-0.529943196,F -coef_social_departure_constant_before_9_am,-0.198438086,F -coef_social_departure_constant_9_am_to_9_30_am,0.137620628,F -coef_social_departure_constant_shift_for_every_30_minutes_before_5_pm_linear,-0.142078961,F -coef_social_departure_constant_before_5_30_pm,-0.390965052,F -coef_social_departure_constant_5_30_pm_to_6_pm,-0.453580491,F -coef_social_departure_constant_6_pm_to_6_30_pm,0,T -coef_social_departure_constant_6_30_pm_to_7_pm,-0.088537991,F -coef_social_departure_constant_7_pm_to_7_30_pm,0.052983115,F -coef_social_departure_constant_after_7_30_pm,-0.649629162,F -coef_social_departure_constant_shift_for_every_30_minutes_after_8_pm_linear,-0.09574499,F -coef_social_arrival_constant_3_pm_to_3_30_pm,0.37674882,F -coef_social_arrival_constant_3_30_pm_to_4_pm,0.583355461,F -coef_social_arrival_constant_4_pm_to_4_30_pm,0.727855233,F -coef_social_arrival_constant_5_pm_to_6_pm,0.249551955,F -coef_social_arrival_constant_shift_for_every_30_minutes_before_8_pm_linear,0.053771388,F -coef_social_arrival_constant_before_8_30_pm,0.308763611,F -coef_social_arrival_constant_8_30_pm_to_9_pm,-0.208797698,F -coef_social_arrival_constant_9_pm_to_9_30_pm,-0.336319511,F -coef_social_arrival_constant_9_30_pm_to_10_pm,0,T -coef_social_arrival_constant_10_pm_to_10_30_pm,-0.055707591,F -coef_social_arrival_constant_after_10_30_pm,-0.612356296,F -coef_social_arrival_constant_shift_for_every_30_minutes_after_11_pm_linear,-0.348479901,F -coef_social_duration_constant_shift_for_every_30_minutes_less_than_2_hr_30_minutes_linear,0.614440191,F -coef_social_duration_constant_less_than_3_hours,0.353666691,F -coef_social_duration_constant_3_hours,0,T -coef_social_duration_constant_3_hrs_30_minutes,-0.691218836,F -coef_social_duration_constant_4_hours_or_more,-1.344375328,F -coef_social_duration_constant_shift_for_every_30_minutes_more_than_4_hr_30_minutes_linear,-0.786970714,F -coef_social_calibration_constant_duration_1,-1.346772472,F -coef_social_calibration_constant_duration_2,0.377121689,F -coef_social_calibration_constant_duration_3,0.179818928,F -coef_social_calibration_constant_duration_4,-0.283418619,F -coef_social_calibration_constant_duration_5,-0.103541313,F -coef_social_calibration_constant_duration_6,-0.03704707,F -coef_social_calibration_constant_duration_7,-0.062437167,F -coef_social_calibration_constant_duration_8,0.047640282,F -coef_social_calibration_constant_duration_9,0.284369793,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_school.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_school.csv deleted file mode 100755 index f84c333d4..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_school.csv +++ /dev/null @@ -1,59 +0,0 @@ -Label,Description,Expression,Coefficient -util_Mode_Choice_Logsum,SCHOOL - Mode Choice Logsum,mode_choice_logsum,coef_Mode_Choice_Logsum -util_Low_income_lt25000_Departure_before_730_am__Linear,SCHOOL - Low income (<25000) - Departure before 7:30 am - Linear,"@((df.is_income_less25K) & (df.start<10)) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10)))",coef_Low_income_lt25000_Departure_before_730_am__Linear -util_Low_income_lt25000_Departure_after_800_am_Linear,SCHOOL - Low income (<25000) - Departure after 8:00 am - Linear,"@((df.is_income_less25K) & (df.start>10)) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10)))",coef_Low_income_lt25000_Departure_after_800_am_Linear -util_Low_income_lt25000_Duration_lt_8hrs,SCHOOL - Low income (<25000) - Duration < 8hrs,"@((df.is_income_less25K) & (df.duration<8)) * ((np.minimum(8-df.duration,47)*(df.duration<=8)) + (np.minimum(df.duration-8,47)*(df.duration>8)))",coef_Low_income_lt25000_Duration_lt_8hrs -util_Low_income_lt25000_Duration_gt_8hrs,SCHOOL - Low income (<25000) - Duration > 8hrs,"@((df.is_income_less25K) & (df.duration>8)) * ((np.minimum(8-df.duration,47)*(df.duration<=8)) + (np.minimum(df.duration-8,47)*(df.duration>8)))",coef_Low_income_lt25000_Duration_gt_8hrs -util_Med_income_25k_to_60k_Departure_before_730_am__Linear,SCHOOL - Med income (25k to 60k) - Departure before 7:30 am - Linear,"@((df.is_income_25K_to_60K) & (df.start<10)) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10)))",coef_Med_income_25k_to_60k_Departure_before_730_am__Linear -util_Age_0_to_5_yrs_Departure_Before_730_am,SCHOOL - Age 0 to 5 yrs - Departure Before 7:30 am,"@(((df.age>=0) & (df.age<=5)) & (df.start<10)) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10)))",coef_Age_0_to_5_yrs_Departure_Before_730_am -util_Age_13_to_15_yrs_Departure_Before_730_am,SCHOOL - Age 13 to 15 yrs - Departure Before 7:30 am,"@(((df.age>=13) & (df.age<=15)) & (df.start<10)) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10)))",coef_Age_13_to_15_yrs_Departure_Before_730_am -util_Age_13_to_15_yrs_Departure_After_800_am,SCHOOL - Age 13 to 15 yrs - Departure After 8:00 am,"@(((df.age>=13) & (df.age<=15)) & (df.start>10)) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10)))",coef_Age_13_to_15_yrs_Departure_After_800_am -util_Age_16_to_17_yrs_Departure_After_800_am,SCHOOL - Age 16 to 17 yrs - Departure After 8:00 am,"@(((df.age>=16) & (df.age<=17)) & (df.start>10)) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10)))",coef_Age_16_to_17_yrs_Departure_After_800_am -util_Age_0_to_5_yrs_Duration_lt_8hrs,SCHOOL - Age 0 to 5 yrs - Duration < 8hrs,"@(((df.age>0) & (df.age<=5)) & (df.duration<8)) * ((np.minimum(8-df.duration,47)*(df.duration<=8)) + (np.minimum(df.duration-8,47)*(df.duration>8)))",coef_Age_0_to_5_yrs_Duration_lt_8hrs -util_Age_0_to_5_yrs_Duration_gt_8hrs,SCHOOL - Age 0 to 5 yrs - Duration > 8hrs,"@(((df.age>0) & (df.age<=5)) & (df.duration>8)) * ((np.minimum(8-df.duration,47)*(df.duration<=8)) + (np.minimum(df.duration-8,47)*(df.duration>8)))",coef_Age_0_to_5_yrs_Duration_gt_8hrs -util_Age_13_to_15_yrs_Duration_lt_8hrs,SCHOOL - Age 13 to 15 yrs - Duration < 8hrs,"@(((df.age>=13) & (df.age<=15)) & (df.duration<8)) * ((np.minimum(8-df.duration,47)*(df.duration<=8)) + (np.minimum(df.duration-8,47)*(df.duration>8)))",coef_Age_13_to_15_yrs_Duration_lt_8hrs -util_Age_13_to_15_yrs_Duration_gt_8hrs,SCHOOL - Age 13 to 15 yrs - Duration > 8hrs,"@(((df.age>=13) & (df.age<=15)) & (df.duration>8)) * ((np.minimum(8-df.duration,47)*(df.duration<=8)) + (np.minimum(df.duration-8,47)*(df.duration>8)))",coef_Age_13_to_15_yrs_Duration_gt_8hrs -util_Age_16_to_17_yrs_Duration_gt_8hrs,SCHOOL - Age 16 to 17 yrs - Duration > 8hrs,"@(((df.age>=16) & (df.age<=17)) & (df.duration>8)) * ((np.minimum(8-df.duration,47)*(df.duration<=8)) + (np.minimum(df.duration-8,47)*(df.duration>8)))",coef_Age_16_to_17_yrs_Duration_gt_8hrs -util_Time_SOV_freeflow_to_destination_Departure_before_730_am__Linear,SCHOOL - Time (SOV freeflow) to destination - Departure before 7:30 am - Linear,"@(df.start<10) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10))) * (df.roundtrip_auto_time_to_school)",coef_Time_SOV_freeflow_to_destination_Departure_before_730_am__Linear -util_Time_SOV_freeflow_to_destination_Departure_after_800_am_Linear,SCHOOL - Time (SOV freeflow) to destination - Departure after 8:00 am - Linear,"@(df.start>10) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10))) * (df.roundtrip_auto_time_to_school)",coef_Time_SOV_freeflow_to_destination_Departure_after_800_am_Linear -util_Time_SOV_freeflow_to_destination_Duration_lt_8hrs,SCHOOL - Time (SOV freeflow) to destination - Duration < 8hrs,"@(df.end<27) * ((np.minimum(27-df.end,48)*(df.end<=27)) + (np.minimum(df.end-27,48)*(df.end>27))) * (df.roundtrip_auto_time_to_school)",coef_Time_SOV_freeflow_to_destination_Duration_lt_8hrs -util_Time_SOV_freeflow_to_destination_Duration_gt_8hrs,SCHOOL - Time (SOV freeflow) to destination - Duration > 8hrs,"@(df.end>27) * ((np.minimum(27-df.end,48)*(df.end<=27)) + (np.minimum(df.end-27,48)*(df.end>27))) * (df.roundtrip_auto_time_to_school)",coef_Time_SOV_freeflow_to_destination_Duration_gt_8hrs -util_All_adults_in_the_household_are_fulltime_workers_Departure_before_730_am__Linear,SCHOOL - All adults in the household are fulltime workers - Departure before 7:30 am - Linear,"@((df.is_all_adults_full_time_workers) & (df.start<10)) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10)))",coef_All_adults_in_the_household_are_fulltime_workers_Departure_before_730_am__Linear -util_All_adults_in_the_household_are_fulltime_workers_Departure_after_800_am_Linear,SCHOOL - All adults in the household are fulltime workers - Departure after 8:00 am - Linear,"@((df.is_all_adults_full_time_workers) & (df.start>10)) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10)))",coef_All_adults_in_the_household_are_fulltime_workers_Departure_after_800_am_Linear -util_All_adults_in_the_household_are_fulltime_workers_Duration_lt_8hrs,SCHOOL - All adults in the household are fulltime workers - Duration < 8hrs,"@((df.is_all_adults_full_time_workers) & (df.end<27)) * ((np.minimum(27-df.end,48)*(df.end<=27)) + (np.minimum(df.end-27,48)*(df.end>27)))",coef_All_adults_in_the_household_are_fulltime_workers_Duration_lt_8hrs -util_All_adults_in_the_household_are_fulltime_workers_Duration_gt_8hrs,SCHOOL - All adults in the household are fulltime workers - Duration > 8hrs,"@((df.is_all_adults_full_time_workers) & (df.end>27)) * ((np.minimum(27-df.end,48)*(df.end<=27)) + (np.minimum(df.end-27,48)*(df.end>27)))",coef_All_adults_in_the_household_are_fulltime_workers_Duration_gt_8hrs -util_Subsequent_tour_is_work_tour_Duration_lt_8_hours,SCHOOL - Subsequent tour is work tour: Duration < 8 hours,"@(((df.tour_count>1) & (df.tour_num == 1) & (df.tour_type.shift(-1) == 'work') & (df.duration<8))) * ((np.minimum(8-df.duration,47)*(df.duration<=8)) + (np.minimum(df.duration-8,47)*(df.duration>8)))",coef_Subsequent_tour_is_work_tour_Duration_lt_8_hours -util_Subsequent_tour_is_work_tour_Duration_gt_8_hours,SCHOOL - Subsequent tour is work tour: Duration > 8 hours,"@(((df.tour_count>1) & (df.tour_num == 1) & (df.tour_type.shift(-1) == 'work') & (df.duration>8))) * ((np.minimum(8-df.duration,47)*(df.duration<=8)) + (np.minimum(df.duration-8,47)*(df.duration>8)))",coef_Subsequent_tour_is_work_tour_Duration_gt_8_hours -util_Subsequent_tour_is_school_tour_Departure_after_800_am,SCHOOL - Subsequent tour is school tour: Departure after 8:00 am,"@(((df.tour_count>1) & (df.tour_num == 1) & (df.tour_type.shift(-1) == 'school') & (df.start>10))) *((np.minimum(10-df.start,48)*(df.start<=10)) + (np.minimum(df.start-10,48)*(df.start>10)))",coef_Subsequent_tour_is_school_tour_Departure_after_800_am -util_Subsequent_tour_is_school_tour_Duration_lt_8_hours,SCHOOL - Subsequent tour is school tour: Duration < 8 hours,"@(((df.tour_count>1) & (df.tour_num == 1) & (df.tour_type.shift(-1) == 'school') & (df.duration<8))) * ((np.minimum(8-df.duration,47)*(df.duration<=8)) + (np.minimum(df.duration-8,47)*(df.duration>8)))",coef_Subsequent_tour_is_school_tour_Duration_lt_8_hours -util_Subsequent_tour_is_school_tour_Duration_gt_8_hours,SCHOOL - Subsequent tour is school tour: Duration > 8 hours,"@(((df.tour_count>1) & (df.tour_num == 1) & (df.tour_type.shift(-1) == 'school') & (df.duration>8))) * ((np.minimum(8-df.duration,47)*(df.duration<=8)) + (np.minimum(df.duration-8,47)*(df.duration>8)))",coef_Subsequent_tour_is_school_tour_Duration_gt_8_hours -util_Second_tour_of_two_mandatory_tours_Duration_lt_4_hours,SCHOOL - Second tour of two mandatory tours: Duration < 4 hours,"@(((df.tour_count>1) & (df.tour_num > 1)) & (df.duration<7)) * ((np.minimum(7-df.duration,47)*(df.duration<=7)) + (np.minimum(df.duration-7,47)*(df.duration>7)))",coef_Second_tour_of_two_mandatory_tours_Duration_lt_4_hours -util_Second_tour_of_two_mandatory_tours_Duration_gt_4_hours,SCHOOL - Second tour of two mandatory tours: Duration > 4 hours,"@(((df.tour_count>1) & (df.tour_num > 1)) & (df.duration>7)) * ((np.minimum(7-df.duration,47)*(df.duration<=7)) + (np.minimum(df.duration-7,47)*(df.duration>7)))",coef_Second_tour_of_two_mandatory_tours_Duration_gt_4_hours -util_Departure_Constant_Before_0600_AM,SCHOOL - Departure Constant: Before 06:00 AM,@(df.start<7),coef_Departure_Constant_Before_0600_AM -util_Departure_Constant_0600_AM_to_0630_AM_7,SCHOOL - Departure Constant: 06:00 AM to 06:30 AM (7),@(df.start==7),coef_Departure_Constant_0600_AM_to_0630_AM_7 -util_Departure_Constant_0630_AM_to_0700_AM_8,SCHOOL - Departure Constant: 06:30 AM to 07:00 AM (8),@(df.start==8),coef_Departure_Constant_0630_AM_to_0700_AM_8 -util_Departure_Constant_0700_AM_to_0730_AM_9,SCHOOL - Departure Constant: 07:00 AM to 07:30 AM (9),@(df.start==9),coef_Departure_Constant_0700_AM_to_0730_AM_9 -util_Departure_Constant_0730_AM_to_0800_AM_10,SCHOOL - Departure Constant: 07:30 AM to 08:00 AM (10),@(df.start==10),coef_Departure_Constant_0730_AM_to_0800_AM_10 -util_Departure_Constant_After_0800_AM,SCHOOL - Departure Constant: After 08:00 AM,@(df.start>10),coef_Departure_Constant_After_0800_AM -util_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Linear,SCHOOL - Departure Constant: Shift for every 30 minutes after 8:30 am - Linear,"@((df.start>11)) * ((np.minimum(7-df.start,48)*(df.start<7)) + (np.minimum(df.start-11,23)*(df.start>11)))",coef_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Linear -util_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Square_Root,SCHOOL - Departure Constant: Shift for every 30 minutes after 8:30 am - Square Root,"@((df.start>11)) * (((np.minimum(7-df.start,48)*(df.start<7)) + (np.minimum(df.start-11,23)*(df.start>11))) ** 0.5)",coef_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Square_Root -util_Arrival_Constant_Before_0230_PM,SCHOOL - Arrival Constant: Before 02:30 PM,@(df.end<24),coef_Arrival_Constant_Before_0230_PM -util_Arrival_Constant_0230_PM_0300_PM_24_,SCHOOL - Arrival Constant: 02:30 PM - 03:00 PM (24) ,@(df.end==24),coef_Arrival_Constant_0230_PM_0300_PM_24_ -util_Arrival_Constant_0300_PM_0330_PM_25_,SCHOOL - Arrival Constant: 03:00 PM - 03:30 PM (25) ,@(df.end==25),coef_Arrival_Constant_0300_PM_0330_PM_25_ -util_Arrival_Constant_0330_PM_0400_PM_26_,SCHOOL - Arrival Constant: 03:30 PM - 04:00 PM (26) ,@(df.end==26),coef_Arrival_Constant_0330_PM_0400_PM_26_ -util_Arrival_Constant_0400_PM_0430_PM_27_,SCHOOL - Arrival Constant: 04:00 PM - 04:30 PM (27) ,@(df.end==27),coef_Arrival_Constant_0400_PM_0430_PM_27_ -util_Arrival_Constant_0430_PM_0500_PM_28_,SCHOOL - Arrival Constant: 04:30 PM - 05:00 PM (28) ,@(df.end==28),coef_Arrival_Constant_0430_PM_0500_PM_28_ -util_Arrival_Constant_0500_PM_0530_PM_29,SCHOOL - Arrival Constant: 05:00 PM - 05:30 PM (29),@(df.end==29),coef_Arrival_Constant_0500_PM_0530_PM_29 -util_Arrival_Constant_0530_PM_0600_PM_30_,SCHOOL - Arrival Constant: 05:30 PM - 06:00 PM (30) ,@(df.end==30),coef_Arrival_Constant_0530_PM_0600_PM_30_ -util_Arrival_Constant_After_0600_PM,SCHOOL - Arrival Constant: After 06:00 PM,@(df.end>30),coef_Arrival_Constant_After_0600_PM -util_Arrival_Constant_Shift_for_every_30_minutes_after_630_pm_Linear,SCHOOL - Arrival Constant: Shift for every 30 minutes after 6:30 pm - Linear,"@(df.end>31) * ((np.minimum(24-df.end,6)*(df.end<24)) + (np.minimum(df.end-31,12)*(df.end>31)))",coef_Arrival_Constant_Shift_for_every_30_minutes_after_630_pm_Linear -util_Duration_Constant_Shift_for_every_30_minutes_less_than_6p5_hrs_Linear,SCHOOL - Duration Constant: Shift for every 30 minutes less than 6.5 hrs - Linear,"@((df.duration<13)) * ((np.minimum(13-df.duration,48)*(df.duration<13)) + (np.minimum(df.duration-19,9)*(df.duration>19)))",coef_Duration_Constant_Shift_for_every_30_minutes_less_than_6p5_hrs_Linear -util_Duration_Constant_Shorter_than_7_hrs,SCHOOL - Duration Constant: Shorter than 7 hrs,@(df.duration<14),coef_Duration_Constant_Shorter_than_7_hrs -util_Duration_Constant_7_hours,SCHOOL - Duration Constant: 7 hours,@(df.duration==14),coef_Duration_Constant_7_hours -util_Duration_Constant_7p5_hours,SCHOOL - Duration Constant: 7.5 hours,@(df.duration==15),coef_Duration_Constant_7p5_hours -util_Duration_Constant_8_hours,SCHOOL - Duration Constant: 8 hours,@(df.duration==16),coef_Duration_Constant_8_hours -util_Duration_Constant_8p5_hours,SCHOOL - Duration Constant: 8.5 hours,@(df.duration==17),coef_Duration_Constant_8p5_hours -util_Duration_Constant_9_hours,SCHOOL - Duration Constant: 9 hours,@(df.duration==18),coef_Duration_Constant_9_hours -util_Duration_Constant_Longer_than_9_hrs,SCHOOL - Duration Constant: Longer than 9 hrs,@(df.duration>18),coef_Duration_Constant_Longer_than_9_hrs -util_Duration_Constant_Shift_for_every_30_minutes_more_than_9p5_hrs_Linear,SCHOOL - Duration Constant: Shift for every 30 minutes more than 9.5 hrs - Linear,"@(df.duration>19) * ((np.minimum(13-df.duration,47)*(df.duration<13)) + (np.minimum(df.duration-19,9)*(df.duration>19)))",coef_Duration_Constant_Shift_for_every_30_minutes_more_than_9p5_hrs_Linear -util_Duration_Constant_Shift_for_every_30_minutes_more_than_9p5_hrs_Squared,SCHOOL - Duration Constant: Shift for every 30 minutes more than 9.5 hrs - Squared,"@(df.duration>19) * (((np.minimum(13-df.duration,47)*(df.duration<13)) + (np.minimum(df.duration-19,9)*(df.duration>19))) ** 2)",coef_Duration_Constant_Shift_for_every_30_minutes_more_than_9p5_hrs_Squared diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_school_coeffs.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_school_coeffs.csv deleted file mode 100755 index 589b4ce61..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_school_coeffs.csv +++ /dev/null @@ -1,59 +0,0 @@ -coefficient_name,value,constrain -coef_Mode_Choice_Logsum,0.524017431,F -coef_Low_income_lt25000_Departure_before_730_am__Linear,0.134574548,F -coef_Low_income_lt25000_Departure_after_800_am_Linear,-0.075554725,F -coef_Low_income_lt25000_Duration_lt_8hrs,-0.150039779,F -coef_Low_income_lt25000_Duration_gt_8hrs,-0.043562413,F -coef_Med_income_25k_to_60k_Departure_before_730_am__Linear,0.102594589,F -coef_Age_0_to_5_yrs_Departure_Before_730_am,-0.178916721,F -coef_Age_13_to_15_yrs_Departure_Before_730_am,-0.164708594,F -coef_Age_13_to_15_yrs_Departure_After_800_am,0.169641715,F -coef_Age_16_to_17_yrs_Departure_After_800_am,0.077527892,F -coef_Age_0_to_5_yrs_Duration_lt_8hrs,0.254486164,F -coef_Age_0_to_5_yrs_Duration_gt_8hrs,0.14409403,F -coef_Age_13_to_15_yrs_Duration_lt_8hrs,-0.211129273,F -coef_Age_13_to_15_yrs_Duration_gt_8hrs,0.102348303,F -coef_Age_16_to_17_yrs_Duration_gt_8hrs,0.1184616,F -coef_Time_SOV_freeflow_to_destination_Departure_before_730_am__Linear,0.011813391,F -coef_Time_SOV_freeflow_to_destination_Departure_after_800_am_Linear,-0.0088956,F -coef_Time_SOV_freeflow_to_destination_Duration_lt_8hrs,-0.011793416,F -coef_Time_SOV_freeflow_to_destination_Duration_gt_8hrs,0.001485453,F -coef_All_adults_in_the_household_are_fulltime_workers_Departure_before_730_am__Linear,0.1625279,F -coef_All_adults_in_the_household_are_fulltime_workers_Departure_after_800_am_Linear,-0.161840551,F -coef_All_adults_in_the_household_are_fulltime_workers_Duration_lt_8hrs,-0.233061473,F -coef_All_adults_in_the_household_are_fulltime_workers_Duration_gt_8hrs,0.08462748,F -coef_Subsequent_tour_is_work_tour_Duration_lt_8_hours,0.154332088,F -coef_Subsequent_tour_is_work_tour_Duration_gt_8_hours,-0.62871831,F -coef_Subsequent_tour_is_school_tour_Departure_after_800_am,-0.41618671,F -coef_Subsequent_tour_is_school_tour_Duration_lt_8_hours,0.261423274,F -coef_Subsequent_tour_is_school_tour_Duration_gt_8_hours,-0.263857404,F -coef_Second_tour_of_two_mandatory_tours_Duration_lt_4_hours,-0.537535787,F -coef_Second_tour_of_two_mandatory_tours_Duration_gt_4_hours,-0.545479806,F -coef_Departure_Constant_Before_0600_AM,-10.04417122,F -coef_Departure_Constant_0600_AM_to_0630_AM_7,-3.792318538,F -coef_Departure_Constant_0630_AM_to_0700_AM_8,-1.941704371,F -coef_Departure_Constant_0700_AM_to_0730_AM_9,-0.558080224,F -coef_Departure_Constant_0730_AM_to_0800_AM_10,0,T -coef_Departure_Constant_After_0800_AM,-0.280439854,F -coef_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Linear,0.293697164,F -coef_Departure_Constant_Shift_for_every_30_minutes_after_830_am_Square_Root,-1.220165702,F -coef_Arrival_Constant_Before_0230_PM,0.720751128,F -coef_Arrival_Constant_0230_PM_0300_PM_24_,1.605012317,F -coef_Arrival_Constant_0300_PM_0330_PM_25_,0.463502951,F -coef_Arrival_Constant_0330_PM_0400_PM_26_,0.196107179,F -coef_Arrival_Constant_0400_PM_0430_PM_27_,0,T -coef_Arrival_Constant_0430_PM_0500_PM_28_,-0.389421484,F -coef_Arrival_Constant_0500_PM_0530_PM_29,-1.412720271,F -coef_Arrival_Constant_0530_PM_0600_PM_30_,-1.938567609,F -coef_Arrival_Constant_After_0600_PM,-2.246103785,F -coef_Arrival_Constant_Shift_for_every_30_minutes_after_630_pm_Linear,-0.552223894,F -coef_Duration_Constant_Shift_for_every_30_minutes_less_than_6p5_hrs_Linear,-0.249724903,F -coef_Duration_Constant_Shorter_than_7_hrs,-2.791243553,F -coef_Duration_Constant_7_hours,-1.679006455,F -coef_Duration_Constant_7p5_hours,-0.555288612,F -coef_Duration_Constant_8_hours,0,T -coef_Duration_Constant_8p5_hours,-0.139412248,F -coef_Duration_Constant_9_hours,-0.509620713,F -coef_Duration_Constant_Longer_than_9_hrs,-0.561449384,F -coef_Duration_Constant_Shift_for_every_30_minutes_more_than_9p5_hrs_Linear,0.379484906,F -coef_Duration_Constant_Shift_for_every_30_minutes_more_than_9p5_hrs_Squared,-0.028814477,F diff --git a/activitysim/examples/prototype_semcog/configs/tour_scheduling_work_coeffs.csv b/activitysim/examples/prototype_semcog/configs/tour_scheduling_work_coeffs.csv deleted file mode 100755 index 19a85e817..000000000 --- a/activitysim/examples/prototype_semcog/configs/tour_scheduling_work_coeffs.csv +++ /dev/null @@ -1,97 +0,0 @@ -coefficient_name,value,constrain -coef_Mode_Choice_Logsum,0.2279,T -coef_Female_Departure_before_7_am,-0.12935306,F -coef_Female_Arrival_after_6_pm,-0.041312616,F -coef_Female_with_preschool_child_Departure_before_7_am,-0.129130464,F -coef_Female_with_preschool_child_Departure_after_7_am,-0.031947595,F -coef_Female_with_preschool_child_Arrival_after_6_pm,-0.048859218,F -coef_Low_income_lt_25000_Departure_before_7_am,0.232768373,F -coef_Low_income_lt_25000_Departure_after_7_am,0.014908169,F -coef_Low_income_lt_25000_Arrival_after_6_pm,0.039105101,F -coef_Med_income_25k_to_60k_Departure_before_7_am,0.123945957,F -coef_Med_income_25k_to_60k_Arrival_after_6_pm,0.020965221,F -coef_Medhigh_income_60k_to_120k_Departure_before_7_am,0.09890939,F -coef_Age_16_to_18_yrs_Departure_Before_7_am,-0.459593556,F -coef_Age_16_to_18_yrs_Departure_After_7_am,0.060951693,F -coef_Age_19_to_24_yrs_Departure_After_7_am,0.031477187,F -coef_Age_25_to_40_yrs_Departure_Before_7_am,-0.11723451,F -coef_Age_65_plus_yrs_Departure_After_7_am,0.051923956,F -coef_Age_19_to_24_yrs_Arrival_after_6_pm,0.032734453,F -coef_Age_25_to_40_yrs_Arrival_before_5_pm,-0.027623617,F -coef_Age_56_to_64_yrs_Arrival_after_6_pm,-0.049130187,F -coef_Age_65_plus_yrs_Arrival_before_5_pm,0.056774635,F -coef_Age_65_plus_yrs_Arrival_after_6_pm,-0.077532684,F -coef_Zero_auto_HH_Departure_before_7_am,0.396983749,F -coef_Zero_auto_HH_Arrival_after_6_pm,0.050665232,F -coef_Parttime_worker_Departure_before_7_am,-0.264760988,F -coef_Parttime_worker_Departure_after_7_am,0.126626287,F -coef_Parttime_worker_Arrival_before_5_pm,0.175158545,F -coef_Parttime_worker_Arrival_after_6_pm,-0.054124518,F -coef_University_student_Departure_after_7_am,0.024758204,F -coef_University_student_Arrival_before_5_pm,0.035389739,F -coef_University_student_Arrival_after_6_pm,0.06173996,F -coef_Blue_collar_Departure_before_7_am,0.327242475,F -coef_Blue_collar_Departure_after_7_am,0.047214248,F -coef_Blue_collar_Arrival_before_5_pm,0.04197056,F -coef_Service_Departure_before_7_am,0.117783508,F -coef_Service_Departure_after_7_am,0.081611629,F -coef_Service_Arrival_before_5_pm,0,T -coef_Health_Departure_before_7_am,0.135275931,F -coef_Health_Arrival_after_6_pm,0.062010123,F -coef_Retail_and_food_Departure_after_7_am,0.076302969,F -coef_Retail_and_food_Arrival_before_5_pm,0.052905387,F -coef_Retail_and_food_Arrival_after_6_pm,0.027069194,F -coef_Time_SOV_freeflowto_destination_Departure_before_7_am,0.011511462,F -coef_Time_SOV_freeflowto_destination_Departure_after_7_am,-0.003821379,F -coef_Time_SOV_freeflowto_destination_Arrival_before_5_pm,-0.00549578,F -coef_Time_SOV_freeflowto_destination_Arrival_after_6_pm,0.002253695,F -coef_Presence_of_NonWorking_Adult_in_the_HH_Departure_before_7_am,0.069957209,F -coef_Presence_of_NonWorking_Adult_in_the_HH_Arrival_before_5_pm,-0.019807228,F -coef_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_before_7_am,-0.084564489,F -coef_Presence_of_PreDriving_Age_Children_in_the_HH_Departure_after_8_am,-0.023894467,F -coef_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_before_5_pm,0.018983499,F -coef_Presence_of_PreDriving_Age_Children_in_the_HH_Arrival_after_6_pm,-0.032091123,F -coef_First_of_2_plus_mandatory_tour_Departure_before_7_am,0.145890035,F -coef_First_of_2_plus_mandatory_tour_Departure_after_7_am,-0.214531877,F -coef_First_of_2_plus_mandatory_tour_Duration_lt_9p5_hours,0.3069241,F -coef_First_of_2_plus_mandatory_tour_Duration_gt_9p5_hours,-0.526297898,F -coef_2nd_or_later_of_2_plus_mandatory_tour_Departure_before_1_pm,-0.221304523,F -coef_2nd_or_later_of_2_plus_mandatory_tour_Departure_after_2_pm,-0.176348812,F -coef_2nd_or_later_of_2_plus_mandatory_tour_Duration_lt_9p5_hours,0.064893097,F -coef_2nd_or_later_of_2_plus_mandatory_tour_Duration_gt_9p5_hours,-0.656942049,F -coef_Departure_Constant_Shift_for_every_30_minutes_before_6_am,-1.151564775,F -coef_Departure_Constant_Before_06_AM,-2.197677208,F -coef_Departure_Constant_06_AM_06_AM_7,-1.314098638,F -coef_Departure_Constant_06_AM_07_AM_8,-0.558766028,F -coef_Departure_Constant_07_AM_07_AM_9,0,T -coef_Departure_Constant_07_AM_08_AM_10,-0.036957515,F -coef_Departure_Constant_08_AM_08_AM_11,-0.285560423,F -coef_Departure_Constant_08_AM_09_AM_12,-0.555478447,F -coef_Departure_Constant_After_09_AM,-0.865125273,F -coef_Departure_Constant_Shift_for_every_30_minutes_after_9_am_Square_Root,-0.435746145,F -coef_Arrival_Constant_Shift_for_every_30_minutes_before_3_pm,-0.191607342,F -coef_Arrival_Constant_Before_03_PM,-0.289333093,F -coef_Arrival_Constant_03_PM_04_PM_26,-0.273555837,F -coef_Arrival_Constant_04_PM_04_PM_27,-0.142653706,F -coef_Arrival_Constant_04_PM_05_PM_28,-0.124814807,F -coef_Arrival_Constant_05_PM_05_PM_29,0.004265544,F -coef_Arrival_Constant_05_PM_06_PM_30,0,T -coef_Arrival_Constant_06_PM_06_PM_31,-0.060515031,F -coef_Arrival_Constant_06_PM_7_PM_32,-0.236621114,F -coef_Arrival_Constant_7_PM_7_PM_33,-0.577646614,F -coef_Arrival_Constant_7_PM_8_PM_34,-0.815994515,F -coef_Arrival_Constant_After_08_PM,-0.854151925,F -coef_Arrival_Constant_Shift_for_every_30_minutes_after_6_pm_Square_root,-0.469720787,F -coef_Duration_Constant_Shift_for_every_30_minutes_less_than_8p5_hrs,-0.074266981,F -coef_Duration_Constant_Shorter_than_8p5_hrs,-0.748584335,F -coef_Duration_Constant_8p5_hours,-0.654814097,F -coef_Duration_Constant_9_hours,-0.372064236,F -coef_Duration_Constant_9p5_hours,-0.144226124,F -coef_Duration_Constant_10_hours,0.013153356,F -coef_Duration_Constant_10p5_hours,0,T -coef_Duration_Constant_11_hours,-0.115847245,F -coef_Duration_Constant_11p5_hours,-0.288506368,F -coef_Duration_Constant_12_hours,-0.524241874,F -coef_Duration_Constant_Longer_than_12_hrs,-0.598634071,F -coef_Duration_Constant_Shift_for_every_30_minutes_more_than_10_hrs,-0.293607565,F -coef_Calibration_constant_Duration_0,-10,F diff --git a/activitysim/examples/prototype_semcog/configs/transit_pass_ownership.csv b/activitysim/examples/prototype_semcog/configs/transit_pass_ownership.csv deleted file mode 100644 index 15a053d16..000000000 --- a/activitysim/examples/prototype_semcog/configs/transit_pass_ownership.csv +++ /dev/null @@ -1,21 +0,0 @@ -Label,Description,Expression,no_pass,pass -util_ft,Full-time worker,@df.pemploy==PEMPLOY_FULL,0,coef_ft_pass -util_pt,Part-time worker,@df.pemploy==PEMPLOY_PART,0,coef_pt_pass -util_un,University/College,@df.ptype==PTYPE_SCHOOL,0,coef_un_pass -util_nw,Non-working adult,@df.ptype==PTYPE_NONWORK,0,coef_nw_pass -util_rt,Retired,@df.ptype==PTYPE_RETIRED,0,coef_rt_pass -util_inc1,0-$9k,"@df.income.between(0, 9000)",0,coef_inc1_pass -util_inc2,$10-$24k,"@df.income.between(10000, 24000)",0,coef_inc2_pass -util_inc3,$25-$34k,"@df.income.between(25000,34000)",0,coef_inc3_pass -util_inc4,$35-$49k,"@df.income.between(35000,49000)",0,coef_inc4_pass -util_inc10,$250k+,@df.income >= 250000,0,coef_inc10_pass -#util_na20,NAICS 20 (mining/utilities/construct),@df.industry==20,0,coef_na20_pas -#util_na30,NAICS 30 (manufacturing,@df.industry==30,0,coef_na30_pas -#util_na50,NAICS 50 (Info/Fin/insur/real estate/prof/sci/tech/manage/admin),@df.industry==50,0,coef_na50_pas -#util_na70,NAICS 70 (Entertain/accom),@df.industry==70,0,coef_na70_pas -#util_na80,NAICS 80 (Other services),@df.industry==80,0,coef_na80_pas -#util_publ,NAICS 90 (Public admin),@df.industry==90,0,coef_publ_pas -#approximate measure for the time being,,, -util_wrkamt,Auto minus transit time (work),@df.work_auto_savings * -1,0,coef_wrkamt_pas -util_subs,Subsidy offered,@df.transit_pass_subsidy,0,coef_subs_pas -utils_pass_asc,Constant,1,0,coef_pass_asc diff --git a/activitysim/examples/prototype_semcog/configs/transit_pass_subsidy.csv b/activitysim/examples/prototype_semcog/configs/transit_pass_subsidy.csv deleted file mode 100644 index eaaff3fd0..000000000 --- a/activitysim/examples/prototype_semcog/configs/transit_pass_subsidy.csv +++ /dev/null @@ -1,12 +0,0 @@ -Label,Description,Expression,no_subsidy,subsidy -util_ft,Full-time worker,@df.pemploy==PEMPLOY_FULL,0,coef_ft -util_pt,Part-time worker,@df.pemploy==PEMPLOY_PART,0,coef_pt -util_un,University/College,@df.ptype==PTYPE_SCHOOL,0,coef_un -#util_na70,NAICS 70 (Entertain/accom),@df.industry==70,0,coef_na70 -#util_na80,NAICS 80 (Other services),@df.industry==80,0,coef_na80 -#util_publ,NAICS 90 (Public admin),@df.industry==90,0,coef_publ -#approximate measure for the time being,,, -util_tr_hh_emp,Household transit accessibility,@df.trOpRetail,0,coef_tr_hh_emp -#approximate measure for the time being,,, -util_pkcost,Daily parking cost (dollars),@df.PRKCST+df.OPRKCST,0,coef_pkcost -utils_sub_asc,Constant,1,0,coef_sub_asc diff --git a/activitysim/examples/prototype_semcog/configs/transit_pass_subsidy_coeffs.csv b/activitysim/examples/prototype_semcog/configs/transit_pass_subsidy_coeffs.csv deleted file mode 100644 index 8e4b511e0..000000000 --- a/activitysim/examples/prototype_semcog/configs/transit_pass_subsidy_coeffs.csv +++ /dev/null @@ -1,10 +0,0 @@ -coefficient_name,coefficient_name,value,constrain -coef_ft,Full-time worker,1.882665664,F -coef_pt,Part-time worker,1.360746182,F -coef_un,University/College,2.026985147,F -coef_na70,NAICS 70 (Entertain/accom),-0.659568416,F -coef_na80,NAICS 80 (Other services),-0.352588858,F -coef_publ,NAICS 90 (Public admin),0.864991571,F -coef_tr_hh_emp,Transit accessibility to households,0.049608562,F -coef_pkcost,Daily parking cost (dollars),0.060145818,F -coef_sub_asc,Constant,-5.138015944,F diff --git a/activitysim/examples/prototype_semcog/configs/trip_destination.csv b/activitysim/examples/prototype_semcog/configs/trip_destination.csv deleted file mode 100755 index 79b73f1ea..000000000 --- a/activitysim/examples/prototype_semcog/configs/trip_destination.csv +++ /dev/null @@ -1,17 +0,0 @@ -Description,Expression,work,univ,school,escort,shopping,eatout,othmaint,social,othdiscr,atwork -size term,"@np.log1p(size_terms.get(df.dest_taz, df.purpose)) # sharrow: np.log1p(size_terms['sizearray'])",1,1,1,1,1,1,1,1,1,1 -no attractions,"@size_terms.get(df.dest_taz, df.purpose) == 0 # sharrow: size_terms['sizearray'] == 0",-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -#stop zone CBD area type,"@reindex(land_use.AreaType, df.dest_taz) < setting('cbd_threshold')",,,,,,,,,, -distance (calibration adjustment individual - inbound),@(~df.is_joint & ~df.outbound) * (od_skims['DIST'] + dp_skims['DIST']),-0.049725916,-0.0613,-0.1056,-0.1491,-0.1192,-0.1029,-0.0962,-0.1329,-0.126172224,-0.122334597 -distance (calibration adjustment individual - outbound),@(~df.is_joint & df.outbound) * (od_skims['DIST'] + dp_skims['DIST']),0.147813279,-0.0613,-0.1056,-0.1491,-0.1192,-0.1029,-0.0962,-0.1329,-0.126172224,-0.122334597 -distance (calibration adjustment joint),@df.is_joint * (od_skims['DIST'] + dp_skims['DIST']),0,0,0,-0.1238,-0.1238,-0.1238,-0.1238,-0.1238,-0.123801985,0 -stop proximity to home (outbound),@df.outbound * od_skims['DIST'],-0.38,0,0,0,0,0,0,0,0,0 -stop proximity to home (inbound),@~df.outbound * dp_skims['DIST'],-0.15,0,0,0,0,0,0,0,0,0 -stop proximity to main destination (outbound),@df.outbound * dp_skims['DIST'],-0.26,,,,,,,,, -stop proximity to main destination (inbound),@~df.outbound * od_skims['DIST'],0,,,,,,,,, -#,,,,,,,,,,, -Sample of alternatives correction factor,"@np.minimum(np.log(df.pick_count/df.prob), 60)",1,1,1,1,1,1,1,1,1,1 -Mode choice logsum from origin to stop,od_logsum,1.821,1.821,1.821,1.821,1.821,1.821,1.821,1.821,1.821,1.821 -Can't access stop zone by this tour mode,(od_logsum < -100),-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 -Mode choice logsum from stop to destination,dp_logsum,1.821,1.821,1.821,1.821,1.821,1.821,1.821,1.821,1.821,1.821 -Can't access destination zone by this tour mode,(dp_logsum < -100),-999,-999,-999,-999,-999,-999,-999,-999,-999,-999 diff --git a/activitysim/examples/prototype_semcog/configs/trip_mode_choice.csv b/activitysim/examples/prototype_semcog/configs/trip_mode_choice.csv deleted file mode 100755 index 9908e6972..000000000 --- a/activitysim/examples/prototype_semcog/configs/trip_mode_choice.csv +++ /dev/null @@ -1,399 +0,0 @@ -Description,Expression,DRIVEALONE,SHARED2,SHARED3,WALK,BIKE,WALK_LOC,WALK_PRM,WALK_MIX,PNR_LOC,PNR_PRM,PNR_MIX,KNR_LOC,KNR_PRM,KNR_MIX,SCHOOLBUS,TAXI,TNC_SINGLE,TNC_SHARED -#Drive alone no toll,,,,,,,,,,,,,,,,,,, -DRIVEALONE - Unavailable,sov_available == False,-999,,,,,,,,,,,,,,,,, -DRIVEALONE - Unavailable for persons less than 16,age < 16,-999,,,,,,,,,,,,,,,,, -DRIVEALONE - Unavailable for joint tours,is_joint == True,-999,,,,,,,,,,,,,,,,, -DRIVEALONE - Unavailable if didn't drive to work,is_atwork_subtour & ~work_tour_is_SOV,-999,,,,,,,,,,,,,,,,, -DRIVEALONE - In-vehicle time,@c_ivt*odt_skims['SOV_TIME'],1,,,,,,,,,,,,,,,,, -DRIVEALONE - Terminal time,@c_walktimeshort * df.total_terminal_time,1,,,,,,,,,,,,,,,,, -DRIVEALONE - Operating cost ,@df.c_cost * costPerMile * odt_skims['SOV_DIST'],1,,,,,,,,,,,,,,,,, -DRIVEALONE - Parking cost ,c_cost * total_parking_cost,1,,,,,,,,,,,,,,,,, -DRIVEALONE - Person is between 16 and 19 years old,@c_age1619_da * ((df.age >= 16) & (df.age <= 19)),1,,,,,,,,,,,,,,,,, -#Shared ride 2,,,,,,,,,,,,,,,,,,, -SHARED2 - Unavailable,hov2_available == False,,-999,,,,,,,,,,,,,,,, -SHARED2 - Unavailable based on party size,is_joint & (number_of_participants > 2),,-999,,,,,,,,,,,,,,,, -SHARED2 - In-vehicle time,@c_ivt * odt_skims['HOV2_TIME'],,1,,,,,,,,,,,,,,,, -SHARED2 - Terminal time,@c_walktimeshort * df.total_terminal_time,,1,,,,,,,,,,,,,,,, -SHARED2 - Operating cost,@df.c_cost * costPerMile * odt_skims['HOV2_DIST'],,1,,,,,,,,,,,,,,,, -SHARED2 - Parking cost,@df.c_cost * df.total_parking_cost / costShareSr2,,1,,,,,,,,,,,,,,,, -SHARED2 - One person household,@c_hhsize1_sr * (df.hhsize == 1),,1,,,,,,,,,,,,,,,, -SHARED2 - Two person household,@c_hhsize2_sr * (df.hhsize == 2),,1,,,,,,,,,,,,,,,, -SHARED2 - Person is 16 years old or older,@c_age16p_sr * (df.age >= 16),,1,,,,,,,,,,,,,,,, -#Shared ride 3+,,,,,,,,,,,,,,,,,,, -SHARED3 - Unavailable,hov3_available == False,,,-999,,,,,,,,,,,,,,, -SHARED3 - Unavailable based joint tour mode,@df.is_joint & df.i_tour_mode.isin(I_SR2_MODES),,,-999,,,,,,,,,,,,,,, -SHARED3 - Unavailable if tour mode is shared 2,@df.i_tour_mode.isin(I_SR2_MODES),,,-999,,,,,,,,,,,,,,, -SHARED3 - In-vehicle time,@c_ivt * odt_skims['HOV3_TIME'],,,1,,,,,,,,,,,,,,, -SHARED3 - Terminal time,@c_walktimeshort * df.total_terminal_time,,,1,,,,,,,,,,,,,,, -SHARED3 - Operating cost,@df.c_cost * costPerMile * odt_skims['HOV3_DIST'],,,1,,,,,,,,,,,,,,, -SHARED3 - Parking cost,@df.c_cost * df.total_parking_cost / costShareSr3,,,1,,,,,,,,,,,,,,, -SHARED3 - One person household,@c_hhsize1_sr * (df.hhsize == 1),,,1,,,,,,,,,,,,,,, -SHARED3 - Two person household,@c_hhsize2_sr * (df.hhsize == 2),,,1,,,,,,,,,,,,,,, -SHARED3 - Person is 16 years old or older,@c_age16p_sr * (df.age >= 16),,,1,,,,,,,,,,,,,,, -#Walk,,,,,,,,,,,,,,,,,,, -WALK - Time up to 2 miles,@c_walktimeshort * od_skims['DISTWALK'].clip(upper=walkThresh) * 60/walkSpeed,,,,1,,,,,,,,,,,,,, -WALK - Time beyond 2 of a miles,@c_walktimelong * (od_skims['DISTWALK'] - walkThresh).clip(lower=0) * 60/walkSpeed,,,,1,,,,,,,,,,,,,, -WALK - Destination zone densityIndex,@c_density_index * df.density_index,,,,1,,,,,,,,,,,,,, -WALK - Topology,@c_topology_walk * df.trip_topology,,,,1,,,,,,,,,,,,,, -#Bike,,,,,,,,,,,,,,,,,,, -BIKE - Unavailable if tour mode is not bike,~tour_mode_is_bike,,,,,-999,,,,,,,,,,,,, -BIKE - Unavailable if didn't bike to work,is_atwork_subtour & ~work_tour_is_bike,,,,,-999,,,,,,,,,,,,, -BIKE - Time up to 6 miles,@c_biketimeshort * od_skims['DISTBIKE'].clip(upper=bikeThresh)*60/bikeSpeed,,,,,1,,,,,,,,,,,,, -BIKE - Time beyond 6 of a miles,@c_biketimelong * (od_skims['DISTBIKE']-bikeThresh).clip(lower=0)*60/bikeSpeed,,,,,1,,,,,,,,,,,,, -BIKE - Destination zone densityIndex,@c_density_index*df.density_index,,,,,1,,,,,,,,,,,,, -BIKE - Topology,@c_topology_bike * df.trip_topology,,,,,1,,,,,,,,,,,,, -#Walk to Local,,,,,,,,,,,,,,,,,,, -WALK_LOC - Unavailable,walk_local_available == False,,,,,,-999,,,,,,,,,,,, -WALK_LOC - In-vehicle time,@c_ivt * odt_skims['WLK_LOC_IVT'],,,,,,1,,,,,,,,,,,, -WALK_LOC - Short iwait time,@c_short_i_wait * (odt_skims['WLK_LOC_IWAIT']).clip(upper=waitThresh),,,,,,1,,,,,,,,,,,, -WALK_LOC - Long iwait time,@c_long_i_wait * (odt_skims['WLK_LOC_IWAIT']-waitThresh).clip(0),,,,,,1,,,,,,,,,,,, -WALK_LOC - transfer wait time,@c_xwait * odt_skims['WLK_LOC_XWAIT'],,,,,,1,,,,,,,,,,,, -WALK_LOC - number of transfers,@c_xfers_wlk * (odt_skims['WLK_LOC_NT']).clip(0),,,,,,1,,,,,,,,,,,, -WALK_LOC - Walk access time,@c_wacc * df.origin_walk_time,,,,,,1,,,,,,,,,,,, -WALK_LOC - Walk egress time,@c_wegr * df.destination_walk_time,,,,,,1,,,,,,,,,,,, -WALK_LOC - Walk other time,@c_waux * odt_skims['WLK_LOC_WAUX'],,,,,,1,,,,,,,,,,,, -WALK_LOC - Fare,@df.c_cost * odt_skims['WLK_LOC_FARE'],,,,,,1,,,,,,,,,,,, -WALK_LOC - Destination zone densityIndex,@c_density_index * df.density_index,,,,,,1,,,,,,,,,,,, -WALK_LOC - Topology,@c_topology_trn * df.trip_topology,,,,,,1,,,,,,,,,,,, -WALK_LOC - Person is less than 10 years old,@c_age010_trn * (df.age <= 10),,,,,,1,,,,,,,,,,,, -#Walk to Premium,,,,,,,,,,,,,,,,,,, -WALK_PRM - Unavailable,walk_premium_available == False,,,,,,,-999,,,,,,,,,,, -WALK_PRM - In-vehicle time,@c_ivt * odt_skims['WLK_PRM_IVT'],,,,,,,1,,,,,,,,,,, -WALK_PRM - In-vehicle time on PMov,@(c_ivt_pmov - c_ivt) * odt_skims['WLK_PRM_IVTT_PMov'],,,,,,,1,,,,,,,,,,, -WALK_PRM - In-vehicle time on StCar,@(c_ivt_stcar - c_ivt) * odt_skims['WLK_PRM_IVTT_StCar'],,,,,,,1,,,,,,,,,,, -WALK_PRM - In-vehicle time on BRT,@(c_ivt_brt - c_ivt) * odt_skims['WLK_PRM_IVTT_Brt'],,,,,,,1,,,,,,,,,,, -WALK_PRM - In-vehicle time on URB,@(c_ivt_urb - c_ivt) * odt_skims['WLK_PRM_IVTT_UrbRail'],,,,,,,1,,,,,,,,,,, -WALK_PRM - In-vehicle time on COM,@(c_ivt_com - c_ivt) * odt_skims['WLK_PRM_IVTT_ComRail'],,,,,,,1,,,,,,,,,,, -WALK_PRM - Short iwait time,@c_short_i_wait * (odt_skims['WLK_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,1,,,,,,,,,,, -WALK_PRM - Long iwait time,@c_long_i_wait * (odt_skims['WLK_PRM_IWAIT']-waitThresh).clip(0),,,,,,,1,,,,,,,,,,, -WALK_PRM - transfer wait time,@c_xwait * odt_skims['WLK_PRM_XWAIT'],,,,,,,1,,,,,,,,,,, -WALK_PRM - number of transfers,@c_xfers_wlk * (odt_skims['WLK_PRM_NT']).clip(0),,,,,,,1,,,,,,,,,,, -WALK_PRM - Walk access time,@c_wacc * df.origin_walk_time,,,,,,,1,,,,,,,,,,, -WALK_PRM - Walk egress time,@c_wegr * df.destination_walk_time,,,,,,,1,,,,,,,,,,, -WALK_PRM - Walk otherLight rail/Ferry time,@c_waux * odt_skims['WLK_PRM_WAUX'],,,,,,,1,,,,,,,,,,, -WALK_PRM - Fare,@df.c_cost * odt_skims['WLK_PRM_FARE'],,,,,,,1,,,,,,,,,,, -WALK_PRM - Destination zone densityIndex,@c_density_index * df.density_index,,,,,,,1,,,,,,,,,,, -WALK_PRM - Topology,@c_topology_trn * df.trip_topology,,,,,,,1,,,,,,,,,,, -WALK_PRM - Person is less than 10 years old,@c_age010_trn * (df.age <= 10),,,,,,,1,,,,,,,,,,, -#Walk to Mix,,,,,,,,,,,,,,,,,,, -WALK_MIX - Unavailable,walk_mix_available == False,,,,,,,,-999,,,,,,,,,, -WALK_MIX - In-vehicle time,@c_ivt * odt_skims['WLK_MIX_IVT'],,,,,,,,1,,,,,,,,,, -WALK_MIX - In-vehicle time on Bus,@c_ivt * odt_skims['WLK_MIX_IVTT_Bus'],,,,,,,,1,,,,,,,,,, -WALK_MIX - In-vehicle time on PMov,@(c_ivt_pmov - c_ivt) * odt_skims['WLK_MIX_IVTT_PMov'],,,,,,,,1,,,,,,,,,, -WALK_MIX - In-vehicle time on StCar,@(c_ivt_stcar - c_ivt) * odt_skims['WLK_MIX_IVTT_StCar'],,,,,,,,1,,,,,,,,,, -WALK_MIX - In-vehicle time on BRT,@(c_ivt_brt - c_ivt) * odt_skims['WLK_MIX_IVTT_Brt'],,,,,,,,1,,,,,,,,,, -WALK_MIX - In-vehicle time on URB,@(c_ivt_urb - c_ivt) * odt_skims['WLK_MIX_IVTT_UrbRail'],,,,,,,,1,,,,,,,,,, -WALK_MIX - In-vehicle time on COM,@(c_ivt_com - c_ivt) * odt_skims['WLK_MIX_IVTT_ComRail'],,,,,,,,1,,,,,,,,,, -WALK_MIX - Short iwait time,@c_short_i_wait * (odt_skims['WLK_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,1,,,,,,,,,, -WALK_MIX - Long iwait time,@c_long_i_wait * (odt_skims['WLK_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,1,,,,,,,,,, -WALK_MIX - transfer wait time,@c_xwait * odt_skims['WLK_MIX_XWAIT'],,,,,,,,1,,,,,,,,,, -WALK_MIX - number of transfers,@c_xfers_wlk * (odt_skims['WLK_MIX_NT']).clip(0),,,,,,,,1,,,,,,,,,, -WALK_MIX - Walk access time,@c_wacc * df.origin_walk_time,,,,,,,,1,,,,,,,,,, -WALK_MIX - Walk egress time,@c_wegr * df.destination_walk_time,,,,,,,,1,,,,,,,,,, -WALK_MIX - Walk other time,@c_waux * odt_skims['WLK_MIX_WAUX'],,,,,,,,1,,,,,,,,,, -WALK_MIX - Fare,@df.c_cost * odt_skims['WLK_MIX_FARE'],,,,,,,,1,,,,,,,,,, -WALK_MIX - Destination zone densityIndex,@c_density_index * df.density_index,,,,,,,,1,,,,,,,,,, -WALK_MIX - Topology,@c_topology_trn * df.trip_topology,,,,,,,,1,,,,,,,,,, -WALK_MIX - Person is less than 10 years old,@c_age010_trn * (df.age <= 10),,,,,,,,1,,,,,,,,,, -#PNR to Local,,,,,,,,,,,,,,,,,,, -PNR_LOC - Unavailable for zero auto households,auto_ownership == 0,,,,,,,,,-999,,,,,,,,, -PNR_LOC - Unavailable for persons less than 16,age < 16,,,,,,,,,-999,,,,,,,,, -PNR_LOC - Destination zone densityIndex,@c_density_index * df.density_index,,,,,,,,,1,,,,,,,,, -PNR_LOC - Topology,@c_topology_trn * df.trip_topology,,,,,,,,,1,,,,,,,,, -PNR_LOC - Person is less than 10 years old,@c_age010_trn * (df.age < 10),,,,,,,,,1,,,,,,,,, -PNR_LOC outbound - Unavailable,outbound & ~pnr_local_available_outbound,,,,,,,,,-999,,,,,,,,, -PNR_LOC outbound - In-vehicle time,@df.outbound * c_ivt * odt_skims['PNR_LOC_IVT'],,,,,,,,,1,,,,,,,,, -PNR_LOC outbound - Short iwait time,@df.outbound * c_short_i_wait * (odt_skims['PNR_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,1,,,,,,,,, -PNR_LOC outbound - Long iwait time,@df.outbound * c_long_i_wait * (odt_skims['PNR_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,1,,,,,,,,, -PNR_LOC outbound - transfer wait time,@df.outbound * c_xwait * odt_skims['PNR_LOC_XWAIT'],,,,,,,,,1,,,,,,,,, -PNR_LOC outbound - number of transfers,@df.outbound * c_xfers_wlk * (odt_skims['PNR_LOC_NT']).clip(0),,,,,,,,,1,,,,,,,,, -PNR_LOC outbound - Drive time,@df.outbound * c_dtim * odt_skims['PNR_LOC_DTIME'],,,,,,,,,1,,,,,,,,, -PNR_LOC outbound - Walk egress time,@df.outbound * c_wegr * df.destination_walk_time,,,,,,,,,1,,,,,,,,, -PNR_LOC outbound - Walk other time,@df.outbound * c_waux * odt_skims['PNR_LOC_WAUX'],,,,,,,,,1,,,,,,,,, -PNR_LOC outbound - Fare and operating cost,@df.outbound * df.c_cost * (odt_skims['PNR_LOC_FARE'] + costPerMile*odt_skims['PNR_LOC_DDIST']),,,,,,,,,1,,,,,,,,, -PNR_LOC outbound - Ratio of drive access distance to OD distance,@df.outbound * c_dacc_ratio * (odt_skims['PNR_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,1,,,,,,,,, -PNR_LOC inbound - Unavailable,inbound & ~pnr_local_available_inbound,,,,,,,,,-999,,,,,,,,, -PNR_LOC inbound - In-vehicle time,@df.inbound * c_ivt * odt_skims['PNRE_LOC_IVT'],,,,,,,,,1,,,,,,,,, -PNR_LOC inbound - Short iwait time,@df.inbound * c_short_i_wait * (odt_skims['PNRE_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,1,,,,,,,,, -PNR_LOC inbound - Long iwait time,@df.inbound * c_long_i_wait * (odt_skims['PNRE_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,1,,,,,,,,, -PNR_LOC inbound - transfer wait time,@df.inbound * c_xwait * odt_skims['PNRE_LOC_XWAIT'],,,,,,,,,1,,,,,,,,, -PNR_LOC inbound - number of transfers,@df.inbound * c_xfers_wlk * (odt_skims['PNRE_LOC_NT']).clip(0),,,,,,,,,1,,,,,,,,, -PNR_LOC inbound - Drive time,@df.inbound * c_dtim * odt_skims['PNRE_LOC_DTIME'],,,,,,,,,1,,,,,,,,, -PNR_LOC inbound - Walk access time,@df.inbound * c_wacc * df.origin_walk_time,,,,,,,,,1,,,,,,,,, -PNR_LOC inbound - Walk other time,@df.inbound * c_waux * odt_skims['PNRE_LOC_WAUX'],,,,,,,,,1,,,,,,,,, -PNR_LOC inbound - Fare and operating cost,@df.inbound * df.c_cost * (odt_skims['PNRE_LOC_FARE'] + costPerMile*odt_skims['PNRE_LOC_DDIST']),,,,,,,,,1,,,,,,,,, -PNR_LOC inbound - Ratio of drive access distance to OD distance,@df.outbound * c_dacc_ratio * (odt_skims['PNRE_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,1,,,,,,,,, -#Drive to Premium,,,,,,,,,,,,,,,,,,, -PNR_PRM - Unavailable for zero auto households,auto_ownership == 0,,,,,,,,,,-999,,,,,,,, -PNR_PRM - Unavailable for persons less than 16,age < 16,,,,,,,,,,-999,,,,,,,, -PNR_PRM - Destination zone densityIndex,@c_density_index * df.density_index,,,,,,,,,,1,,,,,,,, -PNR_PRM - Topology,@c_topology_trn * df.trip_topology,,,,,,,,,,1,,,,,,,, -PNR_PRM - Person is less than 10 years old,@c_age010_trn * (df.age < 10),,,,,,,,,,1,,,,,,,, -PNR_PRM outbound - Unavailable,outbound & ~pnr_premium_available_outbound,,,,,,,,,,-999,,,,,,,, -PNR_PRM outbound - In-vehicle time,@df.outbound * c_ivt * odt_skims['PNR_PRM_IVT'],,,,,,,,,,1,,,,,,,, -PNR_PRM - In-vehicle time on PMov,@df.outbound * (c_ivt_pmov - c_ivt) * odt_skims['PNR_PRM_IVTT_PMov'],,,,,,,,,,1,,,,,,,, -PNR_PRM - In-vehicle time on StCar,@df.outbound * (c_ivt_stcar - c_ivt) * odt_skims['PNR_PRM_IVTT_StCar'],,,,,,,,,,1,,,,,,,, -PNR_PRM - In-vehicle time on BRT,@df.outbound * (c_ivt_brt - c_ivt) * odt_skims['PNR_PRM_IVTT_Brt'],,,,,,,,,,1,,,,,,,, -PNR_PRM - In-vehicle time on URB,@df.outbound * (c_ivt_urb - c_ivt) * odt_skims['PNR_PRM_IVTT_UrbRail'],,,,,,,,,,1,,,,,,,, -PNR_PRM - In-vehicle time on COM,@df.outbound * (c_ivt_com - c_ivt) * odt_skims['PNR_PRM_IVTT_ComRail'],,,,,,,,,,1,,,,,,,, -PNR_PRM outbound - Short iwait time,@df.outbound * c_short_i_wait * (odt_skims['PNR_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,1,,,,,,,, -PNR_PRM outbound - Long iwait time,@df.outbound * c_long_i_wait * (odt_skims['PNR_PRM_IWAIT']-waitThresh).clip(0) ,,,,,,,,,,1,,,,,,,, -PNR_PRM outbound - transfer wait time,@df.outbound * c_xwait * odt_skims['PNR_PRM_XWAIT'],,,,,,,,,,1,,,,,,,, -PNR_PRM outbound - number of transfers,@df.outbound * c_xfers_drv * (odt_skims['PNR_PRM_NT']).clip(0),,,,,,,,,,1,,,,,,,, -PNR_PRM outbound - Drive time,@df.outbound * c_dtim * odt_skims['PNR_PRM_DTIME'],,,,,,,,,,1,,,,,,,, -PNR_PRM outbound - Walk egress time,@df.outbound * c_wegr * df.destination_walk_time,,,,,,,,,,1,,,,,,,, -PNR_PRM outbound - Walk other time,@df.outbound * c_waux * odt_skims['PNR_PRM_WAUX'],,,,,,,,,,1,,,,,,,, -PNR_PRM outbound - Fare and operating cost,@df.outbound * df.c_cost * (odt_skims['PNR_PRM_FARE'] + costPerMile * odt_skims['PNR_PRM_DDIST']),,,,,,,,,,1,,,,,,,, -PNR_PRM outbound - Ratio of drive access distance to OD distance,@df.outbound * c_dacc_ratio * (odt_skims['PNR_PRM_DDIST']) / od_skims['DIST'],,,,,,,,,,1,,,,,,,, -PNR_PRM inbound - Unavailable,inbound & ~pnr_premium_available_inbound,,,,,,,,,,-999,,,,,,,, -PNR_PRM inbound - In-vehicle time,@df.inbound * c_ivt * odt_skims['PNRE_PRM_IVT'],,,,,,,,,,1,,,,,,,, -PNR_PRM - In-vehicle time on PMov,@df.inbound * (c_ivt_pmov - c_ivt) * odt_skims['PNRE_PRM_IVTT_PMov'],,,,,,,,,,1,,,,,,,, -PNR_PRM - In-vehicle time on StCar,@df.inbound * (c_ivt_stcar - c_ivt) * odt_skims['PNRE_PRM_IVTT_StCar'],,,,,,,,,,1,,,,,,,, -PNR_PRM - In-vehicle time on BRT,@df.inbound * (c_ivt_brt - c_ivt) * odt_skims['PNRE_PRM_IVTT_Brt'],,,,,,,,,,1,,,,,,,, -PNR_PRM - In-vehicle time on URB,@df.inbound * (c_ivt_urb - c_ivt) * odt_skims['PNRE_PRM_IVTT_UrbRail'],,,,,,,,,,1,,,,,,,, -PNR_PRM - In-vehicle time on COM,@df.inbound * (c_ivt_com - c_ivt) * odt_skims['PNRE_PRM_IVTT_ComRail'],,,,,,,,,,1,,,,,,,, -PNR_PRM inbound - Short iwait time,@df.inbound * c_short_i_wait * (odt_skims['PNRE_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,1,,,,,,,, -PNR_PRM inbound - Long iwait time,@df.inbound * c_long_i_wait * (odt_skims['PNRE_PRM_IWAIT']-waitThresh).clip(0),,,,,,,,,,1,,,,,,,, -PNR_PRM inbound - transfer wait time,@df.inbound * c_xwait * odt_skims['PNRE_PRM_XWAIT'],,,,,,,,,,1,,,,,,,, -PNR_PRM inbound - number of transfers,@df.inbound * c_xfers_drv * (odt_skims['PNRE_PRM_NT']).clip(0),,,,,,,,,,1,,,,,,,, -PNR_PRM inbound - Drive time,@df.inbound * c_dtim * odt_skims['PNRE_PRM_DTIME'],,,,,,,,,,1,,,,,,,, -PNR_PRM inbound - Walk access time,@df.inbound * c_wacc * df.origin_walk_time,,,,,,,,,,1,,,,,,,, -PNR_PRM inbound - Walk other time,@df.inbound * c_waux * odt_skims['PNRE_PRM_WAUX'],,,,,,,,,,1,,,,,,,, -PNR_PRM inbound - Fare and operating cost,@df.inbound * df.c_cost * (odt_skims['PNRE_PRM_FARE'] + costPerMile * odt_skims['PNRE_PRM_DDIST']),,,,,,,,,,1,,,,,,,, -PNR_PRM inbound - Ratio of drive access distance to OD distance,@df.inbound * c_dacc_ratio * (odt_skims['PNRE_PRM_DDIST'])/ od_skims['DIST'],,,,,,,,,,1,,,,,,,, -#PNR to Mix,,,,,,,,,,,,,,,,,,, -PNR_MIX - Unavailable for zero auto households,auto_ownership == 0,,,,,,,,,,,-999,,,,,,, -PNR_MIX - Unavailable for persons less than 16,age < 16,,,,,,,,,,,-999,,,,,,, -PNR_MIX - Destination zone densityIndex,@c_density_index * df.density_index,,,,,,,,,,,1,,,,,,, -PNR_MIX - Topology,@c_topology_trn * df.trip_topology,,,,,,,,,,,1,,,,,,, -PNR_MIX - Person is less than 10 years old,@c_age010_trn * (df.age < 10),,,,,,,,,,,1,,,,,,, -PNR_MIX outbound - Unavailable,outbound & ~pnr_mix_available_outbound,,,,,,,,,,,-999,,,,,,, -PNR_MIX outbound - In-vehicle time,@df.outbound * c_ivt * odt_skims['PNR_MIX_IVT'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on Bus,@df.outbound * c_ivt * odt_skims['PNR_MIX_IVTT_Bus'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on PMov,@df.outbound * (c_ivt_pmov - c_ivt) * odt_skims['PNR_MIX_IVTT_PMov'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on StCar,@df.outbound * (c_ivt_stcar - c_ivt) * odt_skims['PNR_MIX_IVTT_StCar'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on BRT,@df.outbound * (c_ivt_brt - c_ivt) * odt_skims['PNR_MIX_IVTT_Brt'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on URB,@df.outbound * (c_ivt_urb - c_ivt) * odt_skims['PNR_MIX_IVTT_UrbRail'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on COM,@df.outbound * (c_ivt_com - c_ivt) * odt_skims['PNR_MIX_IVTT_ComRail'],,,,,,,,,,,1,,,,,,, -PNR_MIX outbound - Short iwait time,@df.outbound * c_short_i_wait * (odt_skims['PNR_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,1,,,,,,, -PNR_MIX outbound - Long iwait time,@df.outbound * c_long_i_wait * (odt_skims['PNR_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,1,,,,,,, -PNR_MIX outbound - transfer wait time,@df.outbound * c_xwait * odt_skims['PNR_MIX_XWAIT'],,,,,,,,,,,1,,,,,,, -PNR_MIX outbound - number of transfers,@df.outbound * c_xfers_drv * (odt_skims['PNR_MIX_NT']).clip(0),,,,,,,,,,,1,,,,,,, -PNR_MIX outbound - Drive time,@df.outbound * c_dtim * odt_skims['PNR_MIX_DTIME'],,,,,,,,,,,1,,,,,,, -PNR_MIX outbound - Walk egress ime,@df.outbound * c_wegr * df.destination_walk_time,,,,,,,,,,,1,,,,,,, -PNR_MIX outbound - Walk other time,@df.outbound * c_waux * odt_skims['PNR_MIX_WAUX'],,,,,,,,,,,1,,,,,,, -PNR_MIX outbound - Fare and operating cost,@df.outbound * df.c_cost * (odt_skims['PNR_MIX_FARE'] + costPerMile * odt_skims['PNR_MIX_DDIST']),,,,,,,,,,,1,,,,,,, -PNR_MIX outbound - Ratio of drive access distance to OD distance,@df.outbound * c_dacc_ratio * (odt_skims['PNR_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,1,,,,,,, -PNR_MIX inbound - Unavailable,inbound & ~pnr_mix_available_inbound,,,,,,,,,,,-999,,,,,,, -PNR_MIX inbound - In-vehicle time,@df.inbound * c_ivt * odt_skims['PNRE_MIX_IVT'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on Bus,@df.inbound * c_ivt * odt_skims['PNRE_MIX_IVTT_Bus'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on PMov,@df.inbound * (c_ivt_pmov - c_ivt) * odt_skims['PNRE_MIX_IVTT_PMov'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on StCar,@df.inbound * (c_ivt_stcar - c_ivt) * odt_skims['PNRE_MIX_IVTT_StCar'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on BRT,@df.inbound * (c_ivt_brt - c_ivt) * odt_skims['PNRE_MIX_IVTT_Brt'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on URB,@df.inbound * (c_ivt_urb - c_ivt) * odt_skims['PNRE_MIX_IVTT_UrbRail'],,,,,,,,,,,1,,,,,,, -PNR_MIX - In-vehicle time on COM,@df.inbound * (c_ivt_com - c_ivt) * odt_skims['PNRE_MIX_IVTT_ComRail'],,,,,,,,,,,1,,,,,,, -PNR_MIX inbound - Short iwait time,@df.inbound * c_short_i_wait * (odt_skims['PNRE_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,1,,,,,,, -PNR_MIX inbound - Long iwait time,@df.inbound * c_long_i_wait * (odt_skims['PNRE_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,1,,,,,,, -PNR_MIX inbound - transfer wait time,@df.inbound * c_xwait * odt_skims['PNRE_MIX_XWAIT'],,,,,,,,,,,1,,,,,,, -PNR_MIX inbound - number of transfers,@df.inbound * c_xfers_drv * (odt_skims['PNRE_MIX_NT']).clip(0),,,,,,,,,,,1,,,,,,, -PNR_MIX inbound - Drive time,@df.inbound * c_dtim * odt_skims['PNRE_MIX_DTIME'],,,,,,,,,,,1,,,,,,, -PNR_MIX inbound - Walk access time,@df.inbound * c_wacc * df.origin_walk_time,,,,,,,,,,,1,,,,,,, -PNR_MIX inbound - Walk other time,@df.inbound * c_waux * odt_skims['PNRE_MIX_WAUX'],,,,,,,,,,,1,,,,,,, -PNR_MIX inbound - Fare and operating cost,@df.inbound * df.c_cost * (odt_skims['PNRE_MIX_FARE'] + costPerMile * odt_skims['PNRE_MIX_DDIST']),,,,,,,,,,,1,,,,,,, -PNR_MIX inbound - Ratio of drive access distance to OD distance,@df.inbound * c_dacc_ratio * (odt_skims['PNRE_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,1,,,,,,, -#KNR to Local,,,,,,,,,,,,,,,,,,, -KNR_LOC - Unavailable for persons less than 16,age < 16,,,,,,,,,,,,-999,,,,,, -KNR_LOC - Destination zone densityIndex,@c_density_index * df.density_index,,,,,,,,,,,,1,,,,,, -KNR_LOC - Topology,@c_topology_trn * df.trip_topology,,,,,,,,,,,,1,,,,,, -KNR_LOC - Person is less than 10 years old,@c_age010_trn * (df.age < 10),,,,,,,,,,,,1,,,,,, -KNR_LOC outbound - Unavailable,outbound & ~knr_local_available_outbound,,,,,,,,,,,,-999,,,,,, -KNR_LOC outbound - In-vehicle time,@df.outbound * c_ivt * odt_skims['KNR_LOC_IVT'],,,,,,,,,,,,1,,,,,, -KNR_LOC outbound - Short iwait time,@df.outbound * c_short_i_wait * (odt_skims['KNR_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,1,,,,,, -KNR_LOC outbound - Long iwait time,@df.outbound * c_long_i_wait * (odt_skims['KNR_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,1,,,,,, -KNR_LOC outbound - transfer wait time,@df.outbound * c_xwait * odt_skims['KNR_LOC_XWAIT'],,,,,,,,,,,,1,,,,,, -KNR_LOC outbound - number of transfers,@df.outbound * c_xfers_wlk * (odt_skims['KNR_LOC_NT']).clip(0),,,,,,,,,,,,1,,,,,, -KNR_LOC outbound - Drive time,@df.outbound * c_dtim * odt_skims['KNR_LOC_DTIME'],,,,,,,,,,,,1,,,,,, -KNR_LOC outbound - Walk egress time,@df.outbound * c_wegr * df.destination_walk_time,,,,,,,,,,,,1,,,,,, -KNR_LOC outbound - Walk other time,@df.outbound * c_waux * odt_skims['KNR_LOC_WAUX'],,,,,,,,,,,,1,,,,,, -KNR_LOC outbound - Fare and operating cost,@df.outbound * df.c_cost * (odt_skims['KNR_LOC_FARE'] + costPerMile*odt_skims['KNR_LOC_DDIST']),,,,,,,,,,,,1,,,,,, -KNR_LOC outbound - Ratio of drive access distance to OD distance,@df.outbound * c_dacc_ratio * (odt_skims['KNR_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,,,,1,,,,,, -KNR_LOC inbound - Unavailable,inbound & ~knr_local_available_inbound,,,,,,,,,,,,-999,,,,,, -KNR_LOC inbound - In-vehicle time,@df.inbound * c_ivt * odt_skims['KNRE_LOC_IVT'],,,,,,,,,,,,1,,,,,, -KNR_LOC inbound - Short iwait time,@df.inbound * c_short_i_wait * (odt_skims['KNRE_LOC_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,1,,,,,, -KNR_LOC inbound - Long iwait time,@df.inbound * c_long_i_wait * (odt_skims['KNRE_LOC_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,1,,,,,, -KNR_LOC inbound - transfer wait time,@df.inbound * c_xwait * odt_skims['KNRE_LOC_XWAIT'],,,,,,,,,,,,1,,,,,, -KNR_LOC inbound - number of transfers,@df.inbound * c_xfers_wlk * (odt_skims['KNRE_LOC_NT']).clip(0),,,,,,,,,,,,1,,,,,, -KNR_LOC inbound - Drive time,@df.inbound * c_dtim * odt_skims['KNRE_LOC_DTIME'],,,,,,,,,,,,1,,,,,, -KNR_LOC inbound - Walk access time,@df.inbound * c_wacc * df.origin_walk_time,,,,,,,,,,,,1,,,,,, -KNR_LOC inbound - Walk other time,@df.inbound * c_waux * odt_skims['KNRE_LOC_WAUX'],,,,,,,,,,,,1,,,,,, -KNR_LOC inbound - Fare and operating cost,@df.inbound * df.c_cost * (odt_skims['KNRE_LOC_FARE'] + costPerMile*odt_skims['KNRE_LOC_DDIST']),,,,,,,,,,,,1,,,,,, -KNR_LOC inbound - Ratio of drive access distance to OD distance,@df.outbound * c_dacc_ratio * (odt_skims['KNRE_LOC_DDIST'])/ (od_skims['DIST']),,,,,,,,,,,,1,,,,,, -#Drive to Premium,,,,,,,,,,,,,,,,,,, -KNR_PRM - Unavailable for persons less than 16,age < 16,,,,,,,,,,,,,-999,,,,, -KNR_PRM - Destination zone densityIndex,@c_density_index * df.density_index,,,,,,,,,,,,,1,,,,, -KNR_PRM - Topology,@c_topology_trn * df.trip_topology,,,,,,,,,,,,,1,,,,, -KNR_PRM - Person is less than 10 years old,@c_age010_trn * (df.age < 10),,,,,,,,,,,,,1,,,,, -KNR_PRM outbound - Unavailable,outbound & ~knr_premium_available_outbound,,,,,,,,,,,,,-999,,,,, -KNR_PRM outbound - In-vehicle time,@df.outbound * c_ivt * odt_skims['KNR_PRM_IVT'],,,,,,,,,,,,,1,,,,, -KNR_PRM - In-vehicle time on PMov,@df.outbound * (c_ivt_pmov - c_ivt) * odt_skims['KNR_PRM_IVTT_PMov'],,,,,,,,,,,,,1,,,,, -KNR_PRM - In-vehicle time on StCar,@df.outbound * (c_ivt_stcar - c_ivt) * odt_skims['KNR_PRM_IVTT_StCar'],,,,,,,,,,,,,1,,,,, -KNR_PRM - In-vehicle time on BRT,@df.outbound * (c_ivt_brt - c_ivt) * odt_skims['KNR_PRM_IVTT_Brt'],,,,,,,,,,,,,1,,,,, -KNR_PRM - In-vehicle time on URB,@df.outbound * (c_ivt_urb - c_ivt) * odt_skims['KNR_PRM_IVTT_UrbRail'],,,,,,,,,,,,,1,,,,, -KNR_PRM - In-vehicle time on COM,@df.outbound * (c_ivt_com - c_ivt) * odt_skims['KNR_PRM_IVTT_ComRail'],,,,,,,,,,,,,1,,,,, -KNR_PRM outbound - Short iwait time,@df.outbound * c_short_i_wait * (odt_skims['KNR_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,1,,,,, -KNR_PRM outbound - Long iwait time,@df.outbound * c_long_i_wait * (odt_skims['KNR_PRM_IWAIT']-waitThresh).clip(0) ,,,,,,,,,,,,,1,,,,, -KNR_PRM outbound - transfer wait time,@df.outbound * c_xwait * odt_skims['KNR_PRM_XWAIT'],,,,,,,,,,,,,1,,,,, -KNR_PRM outbound - number of transfers,@df.outbound * c_xfers_drv * (odt_skims['KNR_PRM_NT']).clip(0),,,,,,,,,,,,,1,,,,, -KNR_PRM outbound - Drive time,@df.outbound * c_dtim * odt_skims['KNR_PRM_DTIME'],,,,,,,,,,,,,1,,,,, -KNR_PRM outbound - Walk egress time,@df.outbound * c_wegr * df.destination_walk_time,,,,,,,,,,,,,1,,,,, -KNR_PRM outbound - Walk other time,@df.outbound * c_waux * odt_skims['KNR_PRM_WAUX'],,,,,,,,,,,,,1,,,,, -KNR_PRM outbound - Fare and operating cost,@df.outbound * df.c_cost * (odt_skims['KNR_PRM_FARE'] + costPerMile * odt_skims['KNR_PRM_DDIST']),,,,,,,,,,,,,1,,,,, -KNR_PRM outbound - Ratio of drive access distance to OD distance,@df.outbound * c_dacc_ratio * (odt_skims['KNR_PRM_DDIST']) / od_skims['DIST'],,,,,,,,,,,,,1,,,,, -KNR_PRM inbound - Unavailable,inbound & ~knr_premium_available_inbound,,,,,,,,,,,,,-999,,,,, -KNR_PRM inbound - In-vehicle time,@df.inbound * c_ivt * odt_skims['KNRE_PRM_IVT'],,,,,,,,,,,,,1,,,,, -KNR_PRM - In-vehicle time on PMov,@df.inbound * (c_ivt_pmov - c_ivt) * odt_skims['KNRE_PRM_IVTT_PMov'],,,,,,,,,,,,,1,,,,, -KNR_PRM - In-vehicle time on StCar,@df.inbound * (c_ivt_stcar - c_ivt) * odt_skims['KNRE_PRM_IVTT_StCar'],,,,,,,,,,,,,1,,,,, -KNR_PRM - In-vehicle time on BRT,@df.inbound * (c_ivt_brt - c_ivt) * odt_skims['KNRE_PRM_IVTT_Brt'],,,,,,,,,,,,,1,,,,, -KNR_PRM - In-vehicle time on URB,@df.inbound * (c_ivt_urb - c_ivt) * odt_skims['KNRE_PRM_IVTT_UrbRail'],,,,,,,,,,,,,1,,,,, -KNR_PRM - In-vehicle time on COM,@df.inbound * (c_ivt_com - c_ivt) * odt_skims['KNRE_PRM_IVTT_ComRail'],,,,,,,,,,,,,1,,,,, -KNR_PRM inbound - Short iwait time,@df.inbound * c_short_i_wait * (odt_skims['KNRE_PRM_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,1,,,,, -KNR_PRM inbound - Long iwait time,@df.inbound * c_long_i_wait * (odt_skims['KNRE_PRM_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,,1,,,,, -KNR_PRM inbound - transfer wait time,@df.inbound * c_xwait * odt_skims['KNRE_PRM_XWAIT'],,,,,,,,,,,,,1,,,,, -KNR_PRM inbound - number of transfers,@df.inbound * c_xfers_drv * (odt_skims['KNRE_PRM_NT']).clip(0),,,,,,,,,,,,,1,,,,, -KNR_PRM inbound - Drive time,@df.inbound * c_dtim * odt_skims['KNRE_PRM_DTIME'],,,,,,,,,,,,,1,,,,, -KNR_PRM inbound - Walk access time,@df.inbound * c_wacc * df.origin_walk_time,,,,,,,,,,,,,1,,,,, -KNR_PRM inbound - Walk other time,@df.inbound * c_waux * odt_skims['KNRE_PRM_WAUX'],,,,,,,,,,,,,1,,,,, -KNR_PRM inbound - Fare and operating cost,@df.inbound * df.c_cost * (odt_skims['KNRE_PRM_FARE'] + costPerMile * odt_skims['KNRE_PRM_DDIST']),,,,,,,,,,,,,1,,,,, -KNR_PRM inbound - Ratio of drive access distance to OD distance,@df.inbound * c_dacc_ratio * (odt_skims['KNRE_PRM_DDIST'])/ od_skims['DIST'],,,,,,,,,,,,,1,,,,, -#KNR to Mix,,,,,,,,,,,,,,,,,,, -KNR_MIX - Unavailable for persons less than 16,age < 16,,,,,,,,,,,,,,-999,,,, -KNR_MIX - Destination zone densityIndex,@c_density_index * df.density_index,,,,,,,,,,,,,,1,,,, -KNR_MIX - Topology,@c_topology_trn * df.trip_topology,,,,,,,,,,,,,,1,,,, -KNR_MIX - Person is less than 10 years old,@c_age010_trn * (df.age < 10),,,,,,,,,,,,,,1,,,, -KNR_MIX outbound - Unavailable,outbound & ~knr_mix_available_outbound,,,,,,,,,,,,,,-999,,,, -KNR_MIX outbound - In-vehicle time,@df.outbound * c_ivt * odt_skims['KNR_MIX_IVT'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on Bus,@df.outbound * c_ivt * odt_skims['KNR_MIX_IVTT_Bus'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on PMov,@df.outbound * (c_ivt_pmov - c_ivt) * odt_skims['KNR_MIX_IVTT_PMov'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on StCar,@df.outbound * (c_ivt_stcar - c_ivt) * odt_skims['KNR_MIX_IVTT_StCar'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on BRT,@df.outbound * (c_ivt_brt - c_ivt) * odt_skims['KNR_MIX_IVTT_Brt'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on URB,@df.outbound * (c_ivt_urb - c_ivt) * odt_skims['KNR_MIX_IVTT_UrbRail'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on COM,@df.outbound * (c_ivt_com - c_ivt) * odt_skims['KNR_MIX_IVTT_ComRail'],,,,,,,,,,,,,,1,,,, -KNR_MIX outbound - Short iwait time,@df.outbound * c_short_i_wait * (odt_skims['KNR_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,,1,,,, -KNR_MIX outbound - Long iwait time,@df.outbound * c_long_i_wait * (odt_skims['KNR_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,,,1,,,, -KNR_MIX outbound - transfer wait time,@df.outbound * c_xwait * odt_skims['KNR_MIX_XWAIT'],,,,,,,,,,,,,,1,,,, -KNR_MIX outbound - number of transfers,@df.outbound * c_xfers_drv * (odt_skims['KNR_MIX_NT']).clip(0),,,,,,,,,,,,,,1,,,, -KNR_MIX outbound - Drive time,@df.outbound * c_dtim * odt_skims['KNR_MIX_DTIME'],,,,,,,,,,,,,,1,,,, -KNR_MIX outbound - Walk egress ime,@df.outbound * c_wegr * df.destination_walk_time,,,,,,,,,,,,,,1,,,, -KNR_MIX outbound - Walk other time,@df.outbound * c_waux * odt_skims['KNR_MIX_WAUX'],,,,,,,,,,,,,,1,,,, -KNR_MIX outbound - Fare and operating cost,@df.outbound * df.c_cost * (odt_skims['KNR_MIX_FARE'] + costPerMile * odt_skims['KNR_MIX_DDIST']),,,,,,,,,,,,,,1,,,, -KNR_MIX outbound - Ratio of drive access distance to OD distance,@df.outbound * c_dacc_ratio * (odt_skims['KNR_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,,,,1,,,, -KNR_MIX inbound - Unavailable,inbound & ~knr_mix_available_inbound,,,,,,,,,,,,,,-999,,,, -KNR_MIX inbound - In-vehicle time,@df.inbound * c_ivt * odt_skims['KNRE_MIX_IVT'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on Bus,@df.inbound * c_ivt * odt_skims['KNRE_MIX_IVTT_Bus'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on PMov,@df.inbound * (c_ivt_pmov - c_ivt) * odt_skims['KNRE_MIX_IVTT_PMov'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on StCar,@df.inbound * (c_ivt_stcar - c_ivt) * odt_skims['KNRE_MIX_IVTT_StCar'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on BRT,@df.inbound * (c_ivt_brt - c_ivt) * odt_skims['KNRE_MIX_IVTT_Brt'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on URB,@df.inbound * (c_ivt_urb - c_ivt) * odt_skims['KNRE_MIX_IVTT_UrbRail'],,,,,,,,,,,,,,1,,,, -KNR_MIX - In-vehicle time on COM,@df.inbound * (c_ivt_com - c_ivt) * odt_skims['KNRE_MIX_IVTT_ComRail'],,,,,,,,,,,,,,1,,,, -KNR_MIX inbound - Short iwait time,@df.inbound * c_short_i_wait * (odt_skims['KNRE_MIX_IWAIT']).clip(upper=waitThresh),,,,,,,,,,,,,,1,,,, -KNR_MIX inbound - Long iwait time,@df.inbound * c_long_i_wait * (odt_skims['KNRE_MIX_IWAIT']-waitThresh).clip(0),,,,,,,,,,,,,,1,,,, -KNR_MIX inbound - transfer wait time,@df.inbound * c_xwait * odt_skims['KNRE_MIX_XWAIT'],,,,,,,,,,,,,,1,,,, -KNR_MIX inbound - number of transfers,@df.inbound * c_xfers_drv * (odt_skims['KNRE_MIX_NT']).clip(0),,,,,,,,,,,,,,1,,,, -KNR_MIX inbound - Drive time,@df.inbound * c_dtim * odt_skims['KNRE_MIX_DTIME'],,,,,,,,,,,,,,1,,,, -KNR_MIX inbound - Walk access time,@df.inbound * c_wacc * df.origin_walk_time,,,,,,,,,,,,,,1,,,, -KNR_MIX inbound - Walk other time,@df.inbound * c_waux * odt_skims['KNRE_MIX_WAUX'],,,,,,,,,,,,,,1,,,, -KNR_MIX inbound - Fare and operating cost,@df.inbound * df.c_cost * (odt_skims['KNRE_MIX_FARE'] + costPerMile * odt_skims['KNRE_MIX_DDIST']),,,,,,,,,,,,,,1,,,, -KNR_MIX inbound - Ratio of drive access distance to OD distance,@df.inbound * c_dacc_ratio * (odt_skims['KNRE_MIX_DDIST']) / od_skims['DIST'],,,,,,,,,,,,,,1,,,, -#Taxi,,,,,,,,,,,,,,,,,,, -Taxi - In-vehicle time,@c_ivt * odt_skims['HOV2_TIME'],,,,,,,,,,,,,,,,1,, -Taxi - Wait time,@c_ivt * 1.5 * df.origTaxiWaitTime,,,,,,,,,,,,,,,,1,, -#Taxi - Tolls,@df.c_cost * odt_skims['HOV2_VTOLL'],,,,,,,,,,,,,,,,1,, -#Taxi - Bridge toll,@df.c_cost * odt_skims['HOV2_BTOLL'],,,,,,,,,,,,,,,,1,, -Taxi - Fare,@df.c_cost * (Taxi_baseFare + odt_skims['HOV2_DIST'] * Taxi_costPerMile + odt_skims['HOV2_TIME'] * Taxi_costPerMinute)*100,,,,,,,,,,,,,,,,1,, -#TNC Single,,,,,,,,,,,,,,,,,,, -TNC Single - In-vehicle time,@c_ivt * odt_skims['HOV2_TIME'] ,,,,,,,,,,,,,,,,,1, -TNC Single - Wait time,@c_ivt * 1.5 * df.origSingleTNCWaitTime,,,,,,,,,,,,,,,,,1, -#TNC Single - Tolls,@df.c_cost * odt_skims['HOV2_VTOLL'],,,,,,,,,,,,,,,,,1, -#TNC Single - Bridge toll,@df.c_cost * (odt_skims['HOV2_BTOLL'] + dot_skims['HOV2_BTOLL']),,,,,,,,,,,,,,,,,1, -TNC Single - Cost,"@df.c_cost * np.maximum(TNC_single_baseFare + odt_skims['HOV2_DIST'] * TNC_single_costPerMile + odt_skims['HOV2_TIME'] * TNC_single_costPerMinute, TNC_single_costMinimum) * 100",,,,,,,,,,,,,,,,,1, -#TNC Shared,,,,,,,,,,,,,,,,,,, -TNC Shared - In-vehicle time,@c_ivt * odt_skims['HOV2_TIME'] * TNC_shared_IVTFactor,,,,,,,,,,,,,,,,,,1 -TNC Shared - Wait time,@c_ivt * 1.5 * df.origSharedTNCWaitTime,,,,,,,,,,,,,,,,,,1 -#TNC Shared - Tolls,@df.c_cost * odt_skims['HOV2_VTOLL'],,,,,,,,,,,,,,,,,,1 -#TNC Shared - Bridge toll,@df.c_cost * (odt_skims['HOV2_BTOLL'] + dot_skims['HOV2_BTOLL']),,,,,,,,,,,,,,,,,,1 -TNC Shared - Cost,"@df.c_cost * np.maximum(TNC_shared_baseFare + odt_skims['HOV2_DIST'] * TNC_shared_costPerMile + odt_skims['HOV2_TIME']* TNC_shared_costPerMinute, TNC_shared_costMinimum) * 100",,,,,,,,,,,,,,,,,,1 -#,,,,,,,,,,,,,,,,,,, -Auto tour mode availability,tour_mode_is_auto,,,,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,,, -Walk tour mode availability,tour_mode_is_walk,-999,-999,-999,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,,, -Bike tour mode availability,tour_mode_is_bike,-999,-999,-999,,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,,, -Walk to Transit tour mode availability,tour_mode_is_walk_transit,-999,,,,-999,,,,-999,-999,-999,-999,-999,-999,-999,,, -Drive to Transit tour mode availability,tour_mode_is_drive_transit,-999,-999,-999,-999,-999,-999,-999,-999,,,,,,,-999,,, -School bus tour mode availability,tour_mode_is_school_bus,-999,,,,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,,,, -#indiv tour ASCs,,,,,,,,,,,,,,,,,,, -Drive Alone tour mode ASC -- shared ride 2,@sov_ASC_sr2 * (df.is_indiv & df.i_tour_mode.isin(I_SOV_MODES)),,1,,,,,,,,,,,,,,,, -Drive Alone tour mode ASC -- shared ride 3+,@sov_ASC_sr3p * (df.is_indiv & df.i_tour_mode.isin(I_SOV_MODES)),,,1,,,,,,,,,,,,,,, -Drive Alone tour mode ASC -- walk,@sov_ASC_walk * (df.is_indiv & df.i_tour_mode.isin(I_SOV_MODES)),,,,1,,,,,,,,,,,,,, -Drive Alone tour mode ASC -- ride hail,@sov_ASC_rh * (df.is_indiv & df.i_tour_mode.isin(I_SOV_MODES)),,,,,,,,,,,,,,,,1,1,1 -#Shared Ride 2 tour mode ASC -- shared ride 2 - reference mode,@sr2_ASC_sr2 * (df.is_indiv & df.i_tour_mode.isin(I_SR2_MODES)),,1,,,,,,,,,,,,,,,, -Shared Ride 2 tour mode ASC -- drive alone,@sr2_ASC_sov * (df.is_indiv & df.i_tour_mode.isin(I_SR2_MODES)),1,,,,,,,,,,,,,,,,, -Shared Ride 2 tour mode ASC -- walk,@sr2_ASC_walk * (df.is_indiv & df.i_tour_mode.isin(I_SR2_MODES)),,,,1,,,,,,,,,,,,,, -Shared Ride 2 tour mode ASC -- ride hail,@sr2_ASC_rh * (df.is_indiv & df.i_tour_mode.isin(I_SR2_MODES)),,,,,,,,,,,,,,,,1,1,1 -Shared Ride 3+ tour mode ASC -- drive alone,@sr3p_ASC_sov * (df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),1,,,,,,,,,,,,,,,,, -Shared Ride 3+ tour mode ASC -- shared ride 2,@sr3p_ASC_sr2 * (df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),,1,,,,,,,,,,,,,,,, -#Shared Ride 3+ tour mode ASC -- shared ride 3+ - reference mode,@sr3p_ASC_sr3p * (df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),,,1,,,,,,,,,,,,,,, -Shared Ride 3+ tour mode ASC -- walk,@sr3p_ASC_walk * (df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),,,,1,,,,,,,,,,,,,, -Shared Ride 3+ tour mode ASC -- ride hail,@sr3p_ASC_rh * (df.is_indiv & df.i_tour_mode.isin(I_SR3P_MODES)),,,,,,,,,,,,,,,,1,1,1 -Walk tour mode ASC -- ride hail,@walk_ASC_rh * df.is_indiv * (df.i_tour_mode == I_WALK_MODE),,,,,,,,,,,,,,,,1,1,1 -Bike tour mode ASC -- walk,@bike_ASC_walk * df.is_indiv * (df.i_tour_mode == I_BIKE_MODE),,,,1,,,,,,,,,,,,,, -Bike tour mode ASC -- ride hail,@bike_ASC_rh * df.is_indiv * (df.i_tour_mode == I_BIKE_MODE),,,,,,,,,,,,,,,,1,1,1 -Walk-transit tour mode ASC -- shared ride 2,@walktransit_ASC_sr2 * (df.is_indiv & df.i_tour_mode.isin(I_WALK_TRANSIT_MODES)),,1,,,,,,,,,,,,,,,, -Walk-transit tour mode ASC -- shared ride 3+,@walktransit_ASC_sr3p * (df.is_indiv & df.i_tour_mode.isin(I_WALK_TRANSIT_MODES)),,,1,,,,,,,,,,,,,,, -Walk-transit tour mode ASC -- walk,@walktransit_ASC_walk * (df.is_indiv & df.i_tour_mode.isin(I_WALK_TRANSIT_MODES)),,,,1,,,,,,,,,,,,,, -Walk-transit tour mode ASC -- ride hail,@walk_transit_ASC_rh * (df.is_indiv & df.tour_mode_is_walk_transit),,,,,,,,,,,,,,,,1,1,1 -Drive to Transit tour mode ASC -- ride hail,@drive_transit_ASC_rh * (df.is_indiv & df.tour_mode_is_drive_transit),,,,,,,,,,,,,,,,1,1,1 -Ride Hail tour mode ASC -- ride hail,@ride_hail_ASC_taxi * (df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,,,,,,,,,,1,, -Ride Hail tour mode ASC -- ride hail,@ride_hail_ASC_tnc_single * (df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,,,,,,,,,,,1, -Ride Hail tour mode ASC -- ride hail,@ride_hail_ASC_tnc_shared * (df.is_indiv & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,,,,,,,,,,,,1 -#Walk-transit tour mode ASC -- walk-transit - reference mode,@walktransit_ASC_walktransit * (df.is_indiv & df.i_tour_mode.isin(I_WALK_TRANSIT_MODES)),,,,,,1,1,1,,,,,,,,,, -#PNR tour mode ASC -- PNR - reference mode,@pnr_ASC_pnr * (df.is_indiv & df.i_tour_mode.isin(I_PNR_TRANSIT_MODES)),,,,,,,,,1,1,1,,,,,,, -#KNR tour mode ASC -- KNR - reference mode,@knr_ASC_knr * (df.is_indiv & df.i_tour_mode.isin(I_KNR_TRANSIT_MODES)),,,,,,,,,,,,1,1,1,,,, -#joint tour ASCs,,,,,,,,,,,,,,,,,,, -#joint - SR2 tour mode ASC -- shared ride 2 - reference mode,@joint_sr2_ASC_sr2 * (df.is_joint & df.i_tour_mode.isin(I_SR2_MODES)),,1,,,,,,,,,,,,,,,, -joint - SR2 tour mode ASC -- walk,@joint_sr2_ASC_walk * (df.is_joint & df.i_tour_mode.isin(I_SR2_MODES)),,,,1,,,,,,,,,,,,,, -#joint - SR3 tour mode ASC -- shared ride 3+ - reference mode,@joint_sr3p_ASC_sr3p * (df.is_joint & df.i_tour_mode.isin(I_SR3P_MODES)),,,1,,,,,,,,,,,,,,, -joint - SR3 tour mode ASC -- shared ride 2,@joint_sr3p_ASC_sr2 * (df.is_joint & df.i_tour_mode.isin(I_SR3P_MODES)),,1,,,,,,,,,,,,,,,, -joint - SR3 tour mode ASC -- walk,@joint_sr3p_ASC_walk * (df.is_joint & df.i_tour_mode.isin(I_SR3P_MODES)),,,,1,,,,,,,,,,,,,, -joint - auto tour mode ASC -- ride hail,@joint_auto_ASC_rh * (df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,,,,,,,,,,1,1,1 -joint - Bike tour mode ASC -- walk,@joint_bike_ASC_walk * df.is_joint * (df.i_tour_mode == I_BIKE_MODE),,,,1,,,,,,,,,,,,,, -joint - Bike tour mode ASC -- ride hail,@joint_bike_ASC_rh * df.is_joint * (df.i_tour_mode == I_BIKE_MODE),,,,,,,,,,,,,,,,1,1,1 -joint - Walk-transit tour mode ASC -- shared ride 2,@joint_walktransit_ASC_sr2 * (df.is_joint & df.i_tour_mode.isin(I_WALK_TRANSIT_MODES)),,1,,,,,,,,,,,,,,,, -joint - Walk-transit tour mode ASC -- shared ride 3+,@joint_walktransit_ASC_sr3p * (df.is_joint & df.i_tour_mode.isin(I_WALK_TRANSIT_MODES)),,,1,,,,,,,,,,,,,,, -joint - Walk-transit tour mode ASC -- walk,@joint_walktransit_ASC_walk * (df.is_joint & df.i_tour_mode.isin(I_WALK_TRANSIT_MODES)),,,,1,,,,,,,,,,,,,, -joint - Walk to Transit tour mode ASC -- ride hail,@joint_walk_transit_ASC_rh * (df.is_joint & df.i_tour_mode.isin(I_WALK_TRANSIT_MODES)),,,,,,,,,,,,,,,,1,1,1 -joint - Drive to Transit tour mode ASC -- ride hail,@joint_drive_transit_ASC_rh * (df.is_joint & df.tour_mode_is_drive_transit),,,,,,,,,,,,,,,,1,1,1 -joint - Ride Hail tour mode ASC -- ride hail,@joint_ride_hail_ASC_taxi * (df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,,,,,,,,,,1,, -joint - Ride Hail tour mode ASC -- ride hail,@joint_ride_hail_ASC_tnc_single * (df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,,,,,,,,,,,1, -joint - Ride Hail tour mode ASC -- ride hail,@joint_ride_hail_ASC_tnc_shared * (df.is_joint & df.i_tour_mode.isin(I_RIDE_HAIL_MODES)),,,,,,,,,,,,,,,,,,1 -#joint - Walk-transit tour mode ASC -- walk-transit - reference mode,@joint_walktransit_ASC_walktransit * (df.is_joint & df.i_tour_mode.isin(I_WALK_TRANSIT_MODES)),,,,,,1,1,1,,,,,,,,,, -#joint - PNR tour mode ASC -- PNR - reference mode,@joint_pnr_ASC_pnr * (df.is_joint & df.i_tour_mode.isin(I_PNR_TRANSIT_MODES)),,,,,,,,,1,1,1,,,,,,, -#joint - KNR tour mode ASC -- KNR - reference mode,@joint_knr_ASC_knr * (df.is_joint & df.i_tour_mode.isin(I_KNR_TRANSIT_MODES)),,,,,,,,,,,,1,1,1,,,, -#,,,,,,,,,,,,,,,,,,, -Walk not available for long distances,@df.tour_mode_is_walk & (od_skims['DISTWALK'] > 3),,,,-999,,,,,,,,,,,,,, -Bike not available for long distances,@df.tour_mode_is_walk & (od_skims['DISTBIKE'] > 8),,,,,-999,,,,,,,,,,,,, -Origin density index,@(c_origin_density_index*df.origin_density_index).clip(c_origin_density_index_max) if origin_density_applied else 0,,,,1,1,1,1,1,,,,,,,,,, -#Walk-express penalty for intermediate stops,@c_walk_express_penalty * ~(df.first_trip | df.first_trip),,,,,,,,1,,,,,,,,,, -#School Bus,,,,,,,,,,,,,,,,,,, -School Bus Unavailable if primary purpose NOT school,~is_school,,,,,,,,,,,,,,,-999,,, -School Bus Unavailable - Tour Mode = SOV,tour_mode_is_SOV,,,,,,,,,,,,,,,-999,,, -School Bus Unavailable - Tour Mode = Transit,tour_mode_is_drive_transit,,,,,,,,,,,,,,,-999,,, -School Bus - In-vehicle time (20 miles per hour),@c_ivt * odt_skims['HOV3_DIST']*3,,,,,,,,,,,,,,,1,,, -School Bus - Walk Time,@c_wacc*10,,,,,,,,,,,,,,,1,,, -School Bus - Wait Time,@c_short_i_wait*10,,,,,,,,,,,,,,,1,,, -School Bus tour mode ASC -- shared ride 2,@schoolbus_ASC_sr2 * df.i_tour_mode.isin(I_SCHOOLBUS_MODE),,1,,,,,,,,,,,,,,,, -School Bus tour mode ASC -- shared ride 3+,@schoolbus_ASC_sr3p * df.i_tour_mode.isin(I_SCHOOLBUS_MODE),,,1,,,,,,,,,,,,,,, -School Bus tour mode ASC -- walk,@schoolbus_ASC_walk * df.i_tour_mode.isin(I_SCHOOLBUS_MODE),,,,1,,,,,,,,,,,,,, -local_ASC,@local_ASC,,,,,,1,,,1,,,1,,,,,, -premium_ASC,@premium_ASC,,,,,,,1,,,1,,,1,,,,, -mix_ASC,@mix_ASC,,,,,,,,1,,,1,,,1,,,, -Origin density index,@(c_origin_density_index*df.origin_density_index).clip(c_origin_density_index_max) if origin_density_applied else 0,,,,,,,1,1,1,1,1,1,1,,,,1,1 -TNC shared adjustment,@adjust_tnc_shared,,,,,,,,,,,,,,,,,,1 diff --git a/activitysim/examples/prototype_semcog/configs/trip_mode_choice_annotate_trips_preprocessor.csv b/activitysim/examples/prototype_semcog/configs/trip_mode_choice_annotate_trips_preprocessor.csv deleted file mode 100755 index 1c557d499..000000000 --- a/activitysim/examples/prototype_semcog/configs/trip_mode_choice_annotate_trips_preprocessor.csv +++ /dev/null @@ -1,89 +0,0 @@ -Description,Target,Expression, -,is_joint,(df.number_of_participants > 1), -,is_indiv,(df.number_of_participants == 1), -,is_atwork_subtour,~df.parent_tour_id.isnull(), -,is_school,"(df.primary_purpose=='school') & (df.purpose.isin(['school', 'Home']))", -,c_cost,(0.60 * c_ivt) / df.value_of_time, -#,,, -#atwork subtours,,, -#FIXME tripModeChoice uec wrongly conflates these with tour_mode_is_bike?,,, -,parent_tour_mode,"reindex(tours.tour_mode, df.parent_tour_id).fillna('')", -,work_tour_is_SOV,parent_tour_mode.isin(['DRIVEALONE']), -,work_tour_is_bike,parent_tour_mode=='BIKE', -#,,, -,i_tour_mode,df.tour_mode.map(I_MODE_MAP), -,tour_mode_is_SOV,i_tour_mode.isin(I_SOV_MODES), -,tour_mode_is_auto,i_tour_mode.isin(I_AUTO_MODES), -,tour_mode_is_walk,i_tour_mode.isin([I_WALK_MODE]), -,tour_mode_is_bike,i_tour_mode.isin([I_BIKE_MODE]), -,tour_mode_is_walk_transit,i_tour_mode.isin(I_WALK_TRANSIT_MODES), -,tour_mode_is_drive_transit,i_tour_mode.isin(I_DRIVE_TRANSIT_MODES), -,tour_mode_not_drive_transit,~tour_mode_is_drive_transit, -,tour_mode_is_pnr_transit,i_tour_mode.isin(I_PNR_TRANSIT_MODES), -,tour_mode_is_knr_transit,i_tour_mode.isin(I_KNR_TRANSIT_MODES), -,tour_mode_is_school_bus,i_tour_mode.isin(I_SCHOOLBUS_MODE), -,tour_mode_is_ride_hail,i_tour_mode.isin(I_RIDE_HAIL_MODES), -#,,, -,inbound,~df.outbound, -,first_trip,df.trip_num == 1, -,last_trip,df.trip_num == df.trip_count, -origin terminal time not counted at home,_origin_terminal_time,"np.where(df.outbound & first_trip, 0, reindex(land_use.TERMINAL, df[ORIGIN]))", -dest terminal time not counted at home,_dest_terminal_time,"np.where(inbound & last_trip, 0, reindex(land_use.TERMINAL, df[DESTINATION]))", -,total_terminal_time,_origin_terminal_time + _dest_terminal_time, -#,,, -,free_parking_available,(df.tour_type == 'work') & df.free_parking_at_work, -,dest_hourly_peak_parking_cost,"reindex(land_use.PRKCST, df[DESTINATION])", -,origin_hourly_peak_parking_cost,"reindex(land_use.PRKCST, df[ORIGIN])", -,origin_duration,"np.where(first_trip, np.where(inbound,df.duration/2 * ~free_parking_available,0), 1)", -,dest_duration,"np.where(last_trip, np.where(inbound, df.duration/2 * ~free_parking_available, 0), 1)", -,origin_parking_cost,origin_duration*origin_hourly_peak_parking_cost, -,dest_parking_cost,dest_duration*dest_hourly_peak_parking_cost, -,total_parking_cost,(origin_parking_cost + dest_parking_cost) / 2.0, -,trip_topology,"np.where(df.outbound, reindex(land_use.TOPOLOGY, df[DESTINATION]), reindex(land_use.TOPOLOGY, df[ORIGIN]))", -,density_index,"np.where(df.outbound, reindex(land_use.density_index, df[DESTINATION]), reindex(land_use.density_index, df[ORIGIN]))", -,origin_density_index,"np.where(df.outbound, reindex(land_use.density_index, df[ORIGIN]), reindex(land_use.density_index, df[DESTINATION]))", -# FIXME no transit subzones so all zones short walk to transit,,, -,_walk_transit_origin,True, -,_walk_transit_destination,True, -,walk_transit_available,_walk_transit_origin & _walk_transit_destination & (tour_mode_not_drive_transit), -,pnr_transit_available,tour_mode_is_pnr_transit, -,knr_transit_available,tour_mode_is_knr_transit, -,origin_walk_time,shortWalk*60/walkSpeed, -,destination_walk_time,shortWalk*60/walkSpeed, -# RIDEHAIL,,, -,origin_density_measure,"(reindex(land_use.tot_pop, df[orig_col_name]) + reindex(land_use.tot_emp, df[orig_col_name])) / (reindex(land_use.tot_acres, df[orig_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)", -,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()})", -# ,, 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)", -,origin_zone_singleTNC_wait_time_mean,"origin_density.map({k: v for k, v in TNC_single_waitTime_mean.items()})", -,origin_zone_singleTNC_wait_time_sd,"origin_density.map({k: v for k, v in TNC_single_waitTime_sd.items()})", -,origSingleTNCWaitTime,"rng.lognormal_for_df(df, mu=origin_zone_singleTNC_wait_time_mean, sigma=origin_zone_singleTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)", -,origin_zone_sharedTNC_wait_time_mean,"origin_density.map({k: v for k, v in TNC_shared_waitTime_mean.items()})", -,origin_zone_sharedTNC_wait_time_sd,"origin_density.map({k: v for k, v in TNC_shared_waitTime_sd.items()})", -,origSharedTNCWaitTime,"rng.lognormal_for_df(df, mu=origin_zone_sharedTNC_wait_time_mean, sigma=origin_zone_sharedTNC_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)", -#,,, -,sov_available,(odt_skims['SOV_TIME']>0) & tour_mode_not_drive_transit, -,hov2_available,(odt_skims['HOV2_TIME']>0) & tour_mode_not_drive_transit, -,hov3_available,(odt_skims['HOV3_TIME']>0) & tour_mode_not_drive_transit, -,walk_local_available,walk_transit_available & (odt_skims['WLK_LOC_IVT']>0), -,walk_premium_available,walk_transit_available & (odt_skims['WLK_PRM_IVT']>0), -,walk_mix_available,walk_transit_available & (odt_skims['WLK_MIX_IVT']>0), -,pnr_local_available_outbound,pnr_transit_available & df.outbound & (odt_skims['PNR_LOC_IVT']>0), -,pnr_local_available_inbound,pnr_transit_available & ~df.outbound & (odt_skims['PNRE_LOC_IVT']>0), -,pnr_premium_available_outbound,pnr_transit_available & df.outbound & (odt_skims['PNR_PRM_IVT']>0), -,pnr_premium_available_inbound,pnr_transit_available & ~df.outbound & (odt_skims['PNRE_PRM_IVT']>0), -,pnr_mix_available_outbound,pnr_transit_available & df.outbound & (odt_skims['PNR_MIX_IVT']>0), -,pnr_mix_available_inbound,pnr_transit_available & ~df.outbound & (odt_skims['PNRE_MIX_IVT']>0), -,knr_local_available_outbound,knr_transit_available & df.outbound & (odt_skims['KNR_LOC_IVT']>0), -,knr_local_available_inbound,knr_transit_available & ~df.outbound & (odt_skims['KNRE_LOC_IVT']>0), -,knr_premium_available_outbound,knr_transit_available & df.outbound & (odt_skims['KNR_PRM_IVT']>0), -,knr_premium_available_inbound,knr_transit_available & ~df.outbound & (odt_skims['KNRE_PRM_IVT']>0), -,knr_mix_available_outbound,knr_transit_available & df.outbound & (odt_skims['KNR_MIX_IVT']>0), -,knr_mix_available_inbound,knr_transit_available & ~df.outbound & (odt_skims['KNRE_MIX_IVT']>0), -#,od_dist_walk,od_skims['DISTWALK'], -#,do_dist_walk,od_skims.reverse('DISTWALK'), -#,max_dist_walk,od_skims.max('DISTWALK'), -#,dist_bike,od_skims['DISTBIKE'], -#,dist_only,od_skims['DIST'], diff --git a/activitysim/examples/prototype_semcog/configs/work_from_home.yaml b/activitysim/examples/prototype_semcog/configs/work_from_home.yaml deleted file mode 100755 index 623c57b35..000000000 --- a/activitysim/examples/prototype_semcog/configs/work_from_home.yaml +++ /dev/null @@ -1,23 +0,0 @@ - -SPEC: work_from_home.csv -COEFFICIENTS: work_from_home_coeffs.csv - -#LOGIT_TYPE: NL -LOGIT_TYPE: MNL - -WORK_FROM_HOME_ALT: 0 - -# boolean column to filter choosers (True means keep) -CHOOSER_FILTER_COLUMN_NAME: is_worker - -# iterative what-if analysis example -# omit these settings to not iterate -# WORK_FROM_HOME_ITERATIONS: 3 -# WORK_FROM_HOME_CHOOSER_FILTER: is_worker -# WORK_FROM_HOME_TARGET_PERCENT: 0.1 -# WORK_FROM_HOME_TARGET_PERCENT_TOLERANCE: 0.01 -# WORK_FROM_HOME_COEFFICIENT_CONSTANT: coef_work_from_home_constant - -preprocessor: - SPEC: work_from_home_annotate_persons_preprocessor - DF: persons diff --git a/activitysim/examples/prototype_semcog/configs/workplace_location.csv b/activitysim/examples/prototype_semcog/configs/workplace_location.csv deleted file mode 100755 index d065c3e01..000000000 --- a/activitysim/examples/prototype_semcog/configs/workplace_location.csv +++ /dev/null @@ -1,16 +0,0 @@ -Label,Description,Expression,coefficient -local_dist,,_DIST@skims['DIST'],1 -util_dist,Distance,@_DIST,coef_dist -util_dist_squared,"Distance squared, capped at 20 miles","@(_DIST).clip(0,20)**2",coef_dist_squared -util_dist_cubed,"Distance cubed, capped at 20 miles","@(_DIST).clip(0,20)**3",coef_dist_cubed -util_dist_logged,Distance logged,@(_DIST).apply(np.log1p),coef_dist_logged -util_dist_low,"Distance,low income",@(df['income_segment']==WORK_LOW_SEGMENT_ID) * _DIST,coef_dist_low_inc -util_dist_med,"Distance,med income",@(df['income_segment']==WORK_MED_SEGMENT_ID) * _DIST,coef_dist_med_inc -util_dist_high,"Distance,high income",@(df['income_segment']==WORK_HIGH_SEGMENT_ID) * _DIST,coef_dist_high_inc -util_dist_part_time,"Distance,part_time",@(df['pemploy']==2) * _DIST,coef_dist_part_time -util_dist_student,"Distance,student",@(df['is_student']==True) * _DIST,coef_dist_student -util_size_variable,Size variable,@(df['size_term'] * df['shadow_price_size_term_adjustment']).apply(np.log1p),1 -util_utility_adjustment,utility adjustment,@df['shadow_price_utility_adjustment'],1 -util_no_attractions,No attractions,@df['size_term']==0,-999 -util_mode_logsum,Mode choice logsum,mode_choice_logsum,coef_mode_logsum -util_sample_of_corrections_factor,Sample of alternatives correction factor,"@np.minimum(np.log(df.pick_count/df.prob), 60)",1 diff --git a/activitysim/examples/prototype_semcog/configs/workplace_location_coeffs.csv b/activitysim/examples/prototype_semcog/configs/workplace_location_coeffs.csv deleted file mode 100755 index f3e7c9df5..000000000 --- a/activitysim/examples/prototype_semcog/configs/workplace_location_coeffs.csv +++ /dev/null @@ -1,11 +0,0 @@ -coefficient_name,value,constrain -coef_dist,-0.063338148,F -coef_dist_squared,0.001294031,F -coef_dist_cubed,-6.70E-05,F -coef_dist_logged,-0.479603662,F -coef_dist_low_inc,-0.029396589,F -coef_dist_med_inc,-0.024858401,F -coef_dist_high_inc,-0.013891636,F -coef_dist_part_time,-0.047762376,F -coef_dist_student,-0.024044614,F -coef_mode_logsum,0.25,F diff --git a/activitysim/examples/prototype_semcog/configs/workplace_location_sample.csv b/activitysim/examples/prototype_semcog/configs/workplace_location_sample.csv deleted file mode 100755 index 22e3251d6..000000000 --- a/activitysim/examples/prototype_semcog/configs/workplace_location_sample.csv +++ /dev/null @@ -1,14 +0,0 @@ -Label,Description,Expression,coefficient -local_dist,,_DIST@skims['DIST'],1 -util_dist,Distance,@_DIST,coef_dist -util_dist_squared,"Distance squared, capped at 20 miles","@(_DIST).clip(0,20)**2",coef_dist_squared -util_dist_cubed,"Distance cubed, capped at 20 miles","@(_DIST).clip(0,20)**3",coef_dist_cubed -util_dist_logged,Distance logged,@(_DIST).apply(np.log1p),coef_dist_logged -util_dist_low,"Distance,low income",@(df['income_segment']==WORK_LOW_SEGMENT_ID) * _DIST,coef_dist_low_inc -util_dist_med,"Distance,med income",@(df['income_segment']==WORK_MED_SEGMENT_ID) * _DIST,coef_dist_med_inc -util_dist_high,"Distance,high income",@(df['income_segment']==WORK_HIGH_SEGMENT_ID) * _DIST,coef_dist_high_inc -util_dist_part_time,"Distance,part_time",@(df['pemploy']==2) * _DIST,coef_dist_part_time -util_dist_student,"Distance,student",@(df['is_student']==True) * _DIST,coef_dist_student -util_size_variable,Size variable,@(df['size_term'] * df['shadow_price_size_term_adjustment']).apply(np.log1p),1 -util_utility_adjustment,utility adjustment,@df['shadow_price_utility_adjustment'],1 -util_no_attractions,No attractions,@df['size_term']==0,-999 diff --git a/activitysim/examples/prototype_semcog/data/households.csv b/activitysim/examples/prototype_semcog/data/households.csv deleted file mode 100644 index 1afef6545..000000000 --- a/activitysim/examples/prototype_semcog/data/households.csv +++ /dev/null @@ -1,19943 +0,0 @@ -household_id,legacy_household_id,building_id,race_id,age_of_head,children,persons,cars,TYPE,HINCP,ADJINC,HHT,zone_id -1216141,1630051320,8188086,2,38,5.0,6,1.0,1,48600.0,1009585,3.0,152 -1216142,1630051321,8182316,2,41,2.0,5,2.0,1,31000.0,1025215,3.0,152 -1216143,1630051322,8194596,2,44,1.0,4,1.0,1,33790.0,1009585,3.0,152 -1216144,1630051323,8187180,2,44,1.0,3,1.0,1,33790.0,1009585,3.0,152 -1216145,1630051324,8187452,2,36,3.0,6,1.0,1,31330.0,1001264,1.0,152 -1216146,1630051325,8189715,2,36,3.0,6,1.0,1,31330.0,1001264,1.0,152 -1216147,1630051326,8197056,2,40,-9.0,3,1.0,1,34900.0,1042852,1.0,152 -1216148,1630051327,8183466,2,44,1.0,3,2.0,1,57000.0,1009585,1.0,152 -1216149,1630051328,8182509,2,37,-9.0,2,1.0,1,35500.0,1009585,3.0,152 -1216150,1630051329,8183217,2,42,2.0,4,1.0,1,87000.0,1009585,3.0,152 -1216151,1630051330,8186920,2,35,2.0,4,2.0,1,88500.0,1025215,1.0,152 -1216152,1630051331,8197782,2,35,2.0,4,2.0,1,88500.0,1025215,1.0,152 -1216153,1630051332,8188491,2,33,1.0,3,3.0,1,97000.0,1009585,2.0,152 -1216154,1630051333,8902331,2,41,1.0,3,2.0,1,75300.0,1073094,1.0,152 -1216155,1630051334,8183734,2,35,3.0,4,1.0,1,20000.0,1073094,3.0,152 -1216156,1630051335,8187061,2,36,3.0,4,1.0,1,25700.0,1009585,3.0,152 -1216157,1630051336,8185775,2,36,3.0,4,1.0,1,25700.0,1009585,3.0,152 -1216158,1630051337,8183575,2,34,-9.0,1,1.0,1,8920.0,1009585,4.0,152 -1216159,1630051338,8186218,2,30,-9.0,1,1.0,1,8000.0,1025215,4.0,152 -1216160,1630051339,8192260,2,31,-9.0,1,2.0,1,0.0,1073094,6.0,152 -1216161,1630051340,8193513,2,32,1.0,3,1.0,1,10000.0,1009585,1.0,152 -1216162,1630051341,8185333,2,32,1.0,3,1.0,1,10000.0,1009585,1.0,152 -1216163,1630051342,8185867,2,44,1.0,3,1.0,1,12200.0,1025215,1.0,152 -1216164,1630051343,8186967,2,36,1.0,3,2.0,1,29800.0,1073094,7.0,152 -1216165,1630051344,8169113,2,31,-9.0,2,1.0,1,29500.0,1025215,1.0,152 -1216166,1630051345,8187228,2,36,-9.0,2,2.0,1,17200.0,1042852,1.0,152 -1216167,1630051346,8192597,2,47,2.0,4,1.0,1,30300.0,1025215,2.0,152 -1216168,1630051347,8184295,2,57,1.0,3,2.0,1,41730.0,1042852,1.0,152 -1216169,1630051348,8187715,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,152 -1216170,1630051349,8188208,2,55,-9.0,1,1.0,1,58000.0,1009585,6.0,152 -1216171,1630051350,8183680,2,55,-9.0,3,2.0,1,38900.0,1001264,1.0,152 -1216172,1630051351,8186031,2,60,2.0,4,1.0,1,52800.0,1009585,3.0,152 -1216173,1630051352,8187268,2,50,2.0,4,1.0,1,41500.0,1009585,3.0,152 -1216174,1630051353,8182871,2,59,1.0,4,2.0,1,68000.0,1009585,1.0,152 -1216175,1630051354,8186850,2,61,-9.0,3,2.0,1,92600.0,1001264,1.0,152 -1216176,1630051355,8194820,2,56,-9.0,1,0.0,1,0.0,1025215,6.0,152 -1216177,1630051356,8183468,2,50,-9.0,1,0.0,1,2500.0,1001264,6.0,152 -1216178,1630051357,8178935,2,60,-9.0,1,1.0,1,13000.0,1042852,6.0,152 -1216179,1630051358,8182538,2,54,-9.0,1,1.0,1,13700.0,1042852,6.0,152 -1216180,1630051359,8186832,2,52,-9.0,1,1.0,1,1200.0,1009585,4.0,152 -1216181,1630051360,8187942,2,49,-9.0,1,1.0,1,0.0,1001264,6.0,152 -1216182,1630051361,8187740,2,63,-9.0,1,1.0,1,12000.0,1001264,6.0,152 -1216183,1630051362,8182404,2,60,-9.0,1,1.0,1,14300.0,1001264,6.0,152 -1216184,1630051363,8181016,2,51,-9.0,1,1.0,1,1700.0,1042852,6.0,152 -1216185,1630051364,8184578,2,50,-9.0,2,1.0,1,21900.0,1073094,3.0,152 -1216186,1630051365,8181016,2,48,-9.0,2,1.0,1,22150.0,1009585,3.0,152 -1216187,1630051366,8181016,2,48,-9.0,2,1.0,1,22150.0,1009585,3.0,152 -1216188,1630051367,8185033,2,50,-9.0,1,1.0,1,25000.0,1009585,6.0,152 -1216189,1630051368,8188867,2,51,-9.0,4,1.0,1,26800.0,1025215,5.0,152 -1216190,1630051369,8185924,2,51,-9.0,4,1.0,1,26800.0,1025215,5.0,152 -1216191,1630051370,8915415,2,57,-9.0,3,1.0,1,16500.0,1042852,1.0,152 -1216192,1630051371,8188408,2,59,-9.0,3,3.0,1,13400.0,1025215,1.0,152 -1216193,1630051372,8179132,2,48,-9.0,2,4.0,1,11490.0,1009585,5.0,152 -1216194,1630051373,8194752,2,80,1.0,4,2.0,1,54000.0,1025215,1.0,152 -1216195,1630051374,8186261,2,85,-9.0,1,1.0,1,35100.0,1001264,6.0,152 -1216196,1630051375,8181932,2,76,-9.0,1,1.0,1,39700.0,1001264,6.0,152 -1216197,1630051376,8197545,2,79,-9.0,1,1.0,1,40160.0,1001264,5.0,152 -1216198,1630051377,8186861,2,79,-9.0,2,1.0,1,40160.0,1001264,5.0,152 -1216199,1630051378,8187249,2,74,-9.0,2,2.0,1,32600.0,1042852,3.0,152 -1216200,1630051379,8182505,2,70,-9.0,3,2.0,1,56180.0,1009585,3.0,152 -1216201,1630051380,8184029,4,67,2.0,4,1.0,1,26850.0,1042852,3.0,152 -1216202,1630051381,8182223,2,77,-9.0,1,0.0,1,8800.0,1025215,4.0,152 -1216203,1630051382,8184805,2,68,-9.0,1,0.0,1,8700.0,1009585,6.0,152 -1216204,1630051383,8184831,2,94,-9.0,1,1.0,1,12040.0,1009585,6.0,152 -1216205,1630051384,8197730,2,87,-9.0,1,1.0,1,19200.0,1073094,6.0,152 -1216206,1630051385,8194087,2,68,-9.0,1,1.0,1,1500.0,1025215,4.0,152 -1216207,1630051386,8191287,2,73,-9.0,1,1.0,1,18700.0,1073094,6.0,152 -1216208,1630051387,8181016,2,70,-9.0,1,1.0,1,15040.0,1009585,6.0,152 -1216209,1630051388,8187739,2,73,-9.0,1,1.0,1,15600.0,1001264,6.0,152 -1216210,1630051389,8186873,2,71,-9.0,1,1.0,1,23600.0,1042852,6.0,152 -1216211,1630051390,8181016,2,68,-9.0,1,1.0,1,25000.0,1073094,6.0,152 -1216212,1630051391,8169113,2,87,-9.0,1,1.0,1,14900.0,1025215,6.0,152 -1216213,1630051392,8186697,2,77,-9.0,1,1.0,1,0.0,1042852,6.0,152 -1216214,1630051393,8184217,2,75,-9.0,1,1.0,1,11400.0,1073094,6.0,152 -1216215,1630051394,8187153,2,75,-9.0,1,1.0,1,6600.0,1073094,6.0,152 -1216216,1630051395,8184641,2,94,-9.0,1,1.0,1,12040.0,1009585,6.0,152 -1216217,1630051396,8169113,2,72,-9.0,1,1.0,1,2800.0,1073094,6.0,152 -1216218,1630051397,8197324,4,86,-9.0,1,1.0,1,12900.0,1009585,6.0,152 -1216219,1630051398,8186561,2,88,-9.0,1,2.0,1,2500.0,1001264,4.0,152 -1216220,1630051399,8181659,2,65,-9.0,3,1.0,1,24400.0,1042852,3.0,152 -1216221,1630051400,8182882,2,76,-9.0,2,0.0,1,12400.0,1025215,3.0,152 -1216222,1630051401,8187665,2,86,-9.0,2,1.0,1,14100.0,1025215,3.0,152 -1216223,1630051402,8178833,2,71,-9.0,2,1.0,1,21300.0,1001264,3.0,152 -1216224,1630051403,8187308,2,82,-9.0,2,2.0,1,0.0,1025215,1.0,152 -1216225,1630051404,8196849,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,152 -1216226,1630051405,8193223,2,42,-9.0,1,1.0,1,55000.0,1025215,4.0,152 -1216227,1630051406,8196382,2,40,2.0,4,1.0,1,43600.0,1073094,1.0,152 -1216228,1630051407,8915428,2,37,2.0,4,1.0,1,41000.0,1001264,1.0,152 -1216229,1630051408,8184028,2,36,1.0,4,2.0,1,59600.0,1009585,3.0,152 -1216230,1630051409,8191121,4,41,1.0,4,3.0,1,52000.0,1042852,1.0,152 -1216231,1630051410,8197678,2,29,1.0,3,1.0,1,42970.0,1042852,2.0,152 -1216232,1630051411,8915427,2,38,3.0,4,0.0,1,15000.0,1001264,3.0,152 -1216233,1630051412,8184936,2,37,2.0,4,1.0,1,7800.0,1009585,1.0,152 -1216234,1630051413,8182390,2,29,3.0,4,1.0,1,17800.0,1025215,3.0,152 -1216235,1630051414,8179137,2,40,1.0,4,1.0,1,5000.0,1073094,3.0,152 -1216236,1630051415,8178196,2,33,3.0,4,1.0,1,8600.0,1025215,3.0,153 -1216237,1630051416,8902366,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,153 -1216238,1630051417,8197678,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,152 -1216239,1630051418,8197678,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,152 -1216240,1630051419,8197678,2,41,-9.0,1,1.0,1,8900.0,1009585,6.0,152 -1216241,1630051420,8186239,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,152 -1216242,1630051421,8197678,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,152 -1216243,1630051422,8186239,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,152 -1216244,1630051423,8197678,2,41,-9.0,1,1.0,1,8900.0,1009585,6.0,152 -1216245,1630051424,8902366,2,30,-9.0,1,1.0,1,10400.0,1073094,4.0,153 -1216246,1630051425,8180430,2,25,5.0,6,1.0,1,16700.0,1073094,3.0,152 -1216247,1630051426,8181172,2,28,4.0,5,1.0,1,0.0,1042852,3.0,152 -1216248,1630051427,8197678,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,152 -1216249,1630051428,8184362,2,26,2.0,3,1.0,1,0.0,1009585,3.0,152 -1216250,1630051429,8179334,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,152 -1216251,1630051430,8181796,2,29,2.0,3,1.0,1,12300.0,1001264,3.0,152 -1216252,1630051431,8181230,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,152 -1216253,1630051432,8186237,2,43,-9.0,2,1.0,1,24740.0,1042852,7.0,152 -1216254,1630051433,8197678,2,30,1.0,2,1.0,1,15500.0,1042852,3.0,152 -1216255,1630051434,8197678,2,30,1.0,2,1.0,1,15500.0,1042852,3.0,152 -1216256,1630051435,8186794,2,30,3.0,4,1.0,1,12800.0,1042852,3.0,152 -1216257,1630051436,8183386,2,30,3.0,4,1.0,1,17000.0,1009585,3.0,152 -1216258,1630051437,8915425,2,30,3.0,4,1.0,1,17000.0,1009585,3.0,152 -1216259,1630051438,8181706,2,30,3.0,4,1.0,1,5150.0,1009585,3.0,152 -1216260,1630051439,8180996,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,152 -1216261,1630051440,8197678,2,29,-9.0,1,1.0,1,9000.0,1009585,4.0,152 -1216262,1630051441,8196140,2,42,-9.0,1,1.0,1,24000.0,1001264,6.0,152 -1216263,1630051442,8186261,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,152 -1216264,1630051443,8197678,2,31,2.0,3,1.0,1,12000.0,1042852,3.0,152 -1216265,1630051444,8197678,2,25,1.0,2,1.0,1,4500.0,1042852,3.0,152 -1216266,1630051445,8181702,2,32,2.0,4,1.0,1,23000.0,1001264,2.0,152 -1216267,1630051446,8193880,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,152 -1216268,1630051447,8197560,2,25,2.0,4,2.0,1,14900.0,1042852,3.0,152 -1216269,1630051448,8186975,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,152 -1216270,1630051449,8197678,2,31,1.0,3,1.0,1,7500.0,1009585,2.0,152 -1216271,1630051450,8197678,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,152 -1216272,1630051451,8196382,2,56,-9.0,1,1.0,1,33000.0,1073094,6.0,152 -1216273,1630051452,8196382,2,59,-9.0,1,1.0,1,50020.0,1001264,6.0,152 -1216274,1630051453,8185759,2,50,-9.0,4,1.0,1,37500.0,1042852,7.0,152 -1216275,1630051454,8185813,2,50,-9.0,4,1.0,1,37500.0,1042852,7.0,152 -1216276,1630051455,8196967,2,50,-9.0,4,1.0,1,37500.0,1042852,7.0,152 -1216277,1630051456,8187256,4,47,-9.0,4,1.0,1,32800.0,1009585,3.0,152 -1216278,1630051457,8187297,2,58,-9.0,3,2.0,1,55200.0,1025215,3.0,152 -1216279,1630051458,8181878,2,46,-9.0,2,1.0,1,63000.0,1025215,3.0,152 -1216280,1630051459,8181151,2,62,2.0,4,1.0,1,8400.0,1001264,3.0,152 -1216281,1630051460,8186239,2,60,-9.0,1,0.0,1,13300.0,1001264,6.0,152 -1216282,1630051461,8189923,2,58,-9.0,1,0.0,1,11000.0,1025215,6.0,152 -1216283,1630051462,8196849,2,61,-9.0,1,0.0,1,25830.0,1042852,6.0,152 -1216284,1630051463,8188508,2,62,-9.0,1,0.0,1,12000.0,1073094,4.0,152 -1216285,1630051464,8185924,2,50,-9.0,1,0.0,1,0.0,1025215,4.0,152 -1216286,1630051465,8902366,2,51,-9.0,1,0.0,1,20800.0,1073094,6.0,153 -1216287,1630051466,8197678,2,57,-9.0,1,0.0,1,8800.0,1001264,6.0,152 -1216288,1630051467,8183806,2,62,-9.0,1,0.0,1,8100.0,1001264,6.0,152 -1216289,1630051468,8195660,2,58,-9.0,1,0.0,1,8400.0,1042852,4.0,152 -1216290,1630051469,8195660,2,51,-9.0,1,0.0,1,8400.0,1042852,6.0,152 -1216291,1630051470,8195660,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,152 -1216292,1630051471,8196849,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,152 -1216293,1630051472,8197678,2,57,-9.0,1,0.0,1,8800.0,1001264,6.0,152 -1216294,1630051473,8196140,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,152 -1216295,1630051474,8186237,2,62,-9.0,1,0.0,1,12000.0,1073094,4.0,152 -1216296,1630051475,8182182,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,152 -1216297,1630051476,8187022,2,52,-9.0,1,0.0,1,8900.0,1009585,6.0,152 -1216298,1630051477,8186239,2,64,-9.0,1,1.0,1,7660.0,1009585,4.0,152 -1216299,1630051478,8196140,2,47,-9.0,1,1.0,1,2400.0,1042852,6.0,152 -1216300,1630051479,8186239,2,55,-9.0,1,1.0,1,8500.0,1025215,4.0,152 -1216301,1630051480,8197678,2,58,-9.0,1,1.0,1,25600.0,1073094,6.0,152 -1216302,1630051481,8197678,2,58,-9.0,1,1.0,1,25600.0,1073094,6.0,152 -1216303,1630051482,8188285,2,46,-9.0,1,1.0,1,0.0,1073094,6.0,152 -1216304,1630051483,8186793,2,51,-9.0,1,1.0,1,1000.0,1009585,4.0,152 -1216305,1630051484,8197678,2,63,-9.0,1,1.0,1,1780.0,1009585,6.0,152 -1216306,1630051485,8186239,2,53,-9.0,1,1.0,1,16000.0,1025215,6.0,152 -1216307,1630051486,8184487,2,47,-9.0,1,1.0,1,8400.0,1009585,6.0,152 -1216308,1630051487,8198050,2,47,-9.0,3,0.0,1,13300.0,1042852,3.0,152 -1216309,1630051488,8197678,2,59,-9.0,2,0.0,1,18300.0,1001264,7.0,152 -1216310,1630051489,8186760,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,152 -1216311,1630051490,8186401,2,46,-9.0,2,1.0,1,15000.0,1042852,3.0,152 -1216312,1630051491,8915414,2,63,-9.0,2,1.0,1,780.0,1009585,3.0,152 -1216313,1630051492,8187297,2,59,-9.0,2,1.0,1,8900.0,1042852,3.0,152 -1216314,1630051493,8192911,2,54,1.0,2,1.0,1,8500.0,1009585,2.0,152 -1216315,1630051494,8186239,2,55,-9.0,1,0.0,1,22600.0,1009585,6.0,152 -1216316,1630051495,8184651,2,51,-9.0,1,1.0,1,1200.0,1073094,6.0,152 -1216317,1630051496,8197678,2,48,-9.0,1,1.0,1,6000.0,1025215,6.0,152 -1216318,1630051497,8181932,2,51,-9.0,1,1.0,1,1200.0,1073094,6.0,152 -1216319,1630051498,8194652,2,50,-9.0,2,1.0,1,18000.0,1042852,3.0,152 -1216320,1630051499,8902325,2,61,-9.0,2,1.0,1,29250.0,1042852,3.0,152 -1216321,1630051500,8197678,2,68,-9.0,1,1.0,1,34800.0,1073094,6.0,152 -1216322,1630051501,8197678,2,78,-9.0,1,0.0,1,9100.0,1001264,6.0,152 -1216323,1630051502,8180733,2,65,-9.0,1,0.0,1,9000.0,1001264,6.0,152 -1216324,1630051503,8197678,2,67,-9.0,1,0.0,1,6900.0,1042852,4.0,152 -1216325,1630051504,8197678,2,73,-9.0,1,0.0,1,9600.0,1001264,6.0,152 -1216326,1630051505,8197678,2,68,-9.0,1,0.0,1,7200.0,1042852,6.0,152 -1216327,1630051506,8182036,2,74,-9.0,1,0.0,1,14300.0,1025215,6.0,152 -1216328,1630051507,8181759,2,90,-9.0,1,0.0,1,8600.0,1073094,6.0,152 -1216329,1630051508,8197678,2,69,-9.0,1,0.0,1,7000.0,1009585,6.0,152 -1216330,1630051509,8197678,2,82,-9.0,1,0.0,1,18900.0,1042852,6.0,152 -1216331,1630051510,8197678,2,82,-9.0,1,0.0,1,18900.0,1042852,6.0,152 -1216332,1630051511,8197678,2,69,-9.0,1,1.0,1,13500.0,1009585,6.0,152 -1216333,1630051512,8197678,2,77,-9.0,1,1.0,1,9600.0,1009585,6.0,152 -1216334,1630051513,8184651,2,69,-9.0,1,1.0,1,10500.0,1073094,6.0,152 -1216335,1630051514,8184029,2,71,-9.0,1,1.0,1,15700.0,1042852,6.0,152 -1216336,1630051515,8197678,2,83,-9.0,1,1.0,1,12600.0,1025215,4.0,152 -1216337,1630051516,8181759,2,81,-9.0,1,1.0,1,9500.0,1009585,6.0,152 -1216338,1630051517,8197678,2,84,-9.0,1,1.0,1,10100.0,1001264,6.0,152 -1216339,1630051518,8181759,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,152 -1216340,1630051519,8197678,2,69,-9.0,1,1.0,1,3100.0,1001264,6.0,152 -1216341,1630051520,8197678,2,74,-9.0,1,1.0,1,11000.0,1025215,6.0,152 -1216342,1630051521,8186239,2,73,-9.0,2,0.0,1,10000.0,1042852,3.0,152 -1216343,1630051522,8182512,2,73,-9.0,2,1.0,1,14400.0,1073094,3.0,152 -1216344,1630051523,8186261,2,33,3.0,4,0.0,1,0.0,1001264,3.0,152 -1216345,1630051524,8915406,2,42,-9.0,4,3.0,1,0.0,1009585,1.0,152 -1216346,1630051525,8197849,2,94,1.0,4,3.0,1,41000.0,1073094,3.0,152 -1216347,1630051526,8183479,2,61,-9.0,2,2.0,1,51200.0,1001264,1.0,152 -1216348,1630051527,8187172,2,52,-9.0,2,2.0,1,76000.0,1009585,1.0,152 -1216349,1630051528,8195955,2,59,-9.0,3,1.0,1,14600.0,1001264,3.0,152 -1216350,1630051529,8184193,2,28,4.0,6,1.0,1,0.0,1042852,3.0,152 -1216351,1630051530,8184489,2,76,-9.0,2,1.0,1,10000.0,1025215,3.0,152 -1216352,1630051531,8197678,2,58,-9.0,1,1.0,1,7200.0,1001264,6.0,152 -1216353,1630051532,8189515,2,79,-9.0,3,2.0,1,18000.0,1073094,2.0,152 -1216354,1630051533,8187981,2,60,-9.0,1,2.0,1,36000.0,1073094,6.0,152 -1216355,1630051534,8184569,2,26,1.0,2,0.0,1,3600.0,1025215,3.0,152 -1216356,1630051535,8915430,2,29,3.0,4,1.0,1,17800.0,1025215,3.0,152 -1216357,1630051536,8195660,2,56,-9.0,4,1.0,1,8100.0,1073094,2.0,152 -1216358,1630051537,8181932,2,28,1.0,2,1.0,1,13000.0,1073094,3.0,152 -1216359,1630051538,8182731,2,82,-9.0,1,1.0,1,43400.0,1042852,6.0,152 -1216360,1630051539,8180733,2,32,4.0,6,1.0,1,5800.0,1001264,3.0,152 -1216361,1630051540,8902366,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,153 -1216362,1630051541,8194177,2,70,1.0,3,2.0,1,27600.0,1073094,3.0,152 -1216363,1630051542,8182910,2,32,3.0,4,1.0,1,48000.0,1025215,3.0,152 -1216364,1630051543,8186388,2,63,1.0,2,1.0,1,10000.0,1001264,3.0,152 -1216365,1630051544,8181551,2,54,-9.0,2,2.0,1,0.0,1025215,3.0,152 -1216366,1630051545,8902324,2,51,2.0,3,1.0,1,23800.0,1073094,3.0,152 -1216367,1630051546,8189227,2,93,-9.0,1,0.0,1,19100.0,1025215,6.0,152 -1216368,1630051547,8183866,2,74,-9.0,4,2.0,1,58050.0,1025215,1.0,152 -1216369,1630051548,8915426,2,47,-9.0,2,2.0,1,51600.0,1042852,1.0,152 -1216370,1630051549,8181206,2,24,2.0,4,2.0,1,20600.0,1009585,2.0,152 -1216371,1630051550,8184998,2,36,2.0,4,2.0,1,11400.0,1042852,3.0,152 -1216372,1630051551,8185701,2,64,-9.0,2,1.0,1,52000.0,1042852,1.0,152 -1216373,1630051552,8181311,2,32,2.0,4,1.0,1,23000.0,1001264,2.0,152 -1216374,1630051553,8192106,2,59,-9.0,2,1.0,1,6700.0,1009585,3.0,152 -1216375,1630051554,8180330,2,43,-9.0,2,1.0,1,50000.0,1009585,5.0,152 -1216376,1630051555,8184385,1,74,-9.0,1,1.0,1,14500.0,1025215,6.0,152 -1216377,1630051556,8182550,2,57,-9.0,3,2.0,1,77000.0,1001264,1.0,152 -1216378,1630051557,8180119,2,77,-9.0,2,1.0,1,59100.0,1073094,3.0,152 -1216379,1630051558,8197678,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,152 -1216380,1630051559,8181248,2,40,-9.0,1,1.0,1,56000.0,1073094,6.0,152 -1216381,1630051560,8186460,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,152 -1216382,1630051561,8184724,4,60,-9.0,3,3.0,1,51000.0,1073094,1.0,152 -1216383,1630051562,8198379,2,36,3.0,4,1.0,1,25700.0,1009585,3.0,152 -1216384,1630051563,8185576,2,55,3.0,4,1.0,1,24500.0,1025215,3.0,152 -1216385,1630051564,8182126,2,54,-9.0,2,2.0,1,43500.0,1073094,1.0,152 -1216386,1630051565,8902366,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,153 -1216387,1630051566,8184496,2,57,-9.0,1,2.0,1,8400.0,1025215,6.0,152 -1216388,1630051567,8197678,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,152 -1216389,1630051568,8186239,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,152 -1216390,1630051569,8197001,2,50,-9.0,1,0.0,1,5100.0,1042852,2.0,152 -1216391,1630051570,8180284,2,22,2.0,3,1.0,1,6000.0,1025215,3.0,152 -1216392,1630051571,8197877,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,152 -1216393,1630051572,8184381,2,60,1.0,4,4.0,1,69900.0,1009585,2.0,152 -1216394,1630051573,8194718,2,75,-9.0,4,1.0,1,33400.0,1042852,1.0,152 -1216395,1630051574,8193023,2,58,-9.0,3,2.0,1,49400.0,1042852,1.0,152 -1216396,1630051575,8182512,2,56,-9.0,2,2.0,1,3800.0,1025215,3.0,152 -1216397,1630051576,8183134,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,152 -1216398,1630051577,8181482,2,64,1.0,4,1.0,1,75000.0,1073094,3.0,152 -1216399,1630051578,8902317,2,47,2.0,4,0.0,1,24600.0,1042852,2.0,152 -1216400,1630051579,8190944,2,52,-9.0,4,4.0,1,84670.0,1009585,1.0,152 -1216401,1630051580,8186892,2,42,-9.0,2,1.0,1,8000.0,1025215,2.0,152 -1216402,1630051581,8197831,2,36,1.0,3,2.0,1,29800.0,1073094,7.0,152 -1216403,1630051582,8181205,2,50,-9.0,3,1.0,1,24400.0,1001264,1.0,152 -1216404,1630051583,8182182,2,87,-9.0,2,2.0,1,42000.0,1001264,1.0,152 -1216405,1630051584,8189212,2,24,-9.0,4,2.0,1,58800.0,1042852,2.0,152 -1216406,1630051585,8186239,2,26,-9.0,2,1.0,1,20000.0,1042852,5.0,152 -1216407,1630051586,8189717,2,82,-9.0,3,2.0,1,30600.0,1001264,3.0,152 -1216408,1630051587,8170169,2,44,-9.0,2,1.0,1,18000.0,1042852,2.0,153 -1216409,1630051588,8186261,2,48,1.0,3,1.0,1,26000.0,1042852,1.0,152 -1216410,1630051589,8171137,2,52,-9.0,2,0.0,1,15000.0,1025215,5.0,153 -1216411,1630051590,8197678,2,56,-9.0,3,1.0,1,44400.0,1073094,3.0,152 -1216412,1630051591,8185469,2,62,2.0,4,1.0,1,8400.0,1001264,3.0,152 -1216413,1630051592,8188856,2,59,-9.0,1,1.0,1,75000.0,1025215,6.0,152 -1216414,1630051593,8183958,2,84,-9.0,4,3.0,1,75200.0,1073094,1.0,152 -1216415,1630051594,8181025,2,55,-9.0,1,1.0,1,10000.0,1001264,6.0,152 -1216416,1630051595,8185718,2,34,4.0,5,1.0,1,0.0,1042852,3.0,152 -1216417,1630051596,8902316,2,74,-9.0,2,4.0,1,43600.0,1042852,5.0,152 -1216418,1630051597,8187337,2,40,-9.0,1,1.0,1,800.0,1042852,4.0,152 -1216419,1630051598,8182209,2,51,-9.0,2,1.0,1,42900.0,1025215,3.0,152 -1216420,1630051599,8185573,2,71,1.0,4,1.0,1,4500.0,1009585,3.0,152 -1216421,1630051600,8184255,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,152 -1216422,1630051601,8187088,2,59,1.0,3,2.0,1,43000.0,1009585,1.0,152 -1216423,1630051602,8197678,2,37,-9.0,1,0.0,1,15000.0,1073094,6.0,152 -1216424,1630051603,8186994,2,50,-9.0,4,0.0,1,34000.0,1042852,2.0,152 -1216425,1630051604,8197678,2,57,-9.0,2,1.0,1,26100.0,1001264,3.0,152 -1216426,1630051605,8188818,2,61,-9.0,2,0.0,1,16700.0,1073094,7.0,152 -1216427,1630051606,8180733,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,152 -1216428,1630051607,8183971,2,55,-9.0,2,2.0,1,20050.0,1001264,3.0,152 -1216429,1630051608,8182909,2,40,1.0,2,1.0,1,19900.0,1073094,3.0,152 -1216430,1630051609,8186269,2,64,-9.0,1,1.0,1,30000.0,1042852,4.0,152 -1216431,1630051610,8169113,2,35,-9.0,2,1.0,1,32000.0,1025215,5.0,152 -1216432,1630051611,8188032,2,30,-9.0,1,1.0,1,8000.0,1025215,4.0,152 -1216433,1630051612,8915423,2,22,1.0,3,1.0,1,24600.0,1073094,2.0,152 -1216434,1630051613,8197678,2,66,-9.0,1,1.0,1,14400.0,1025215,6.0,152 -1216435,1630051614,8192379,2,64,-9.0,2,2.0,1,44200.0,1025215,3.0,152 -1216436,1630051615,8187897,2,43,1.0,3,2.0,1,50400.0,1042852,1.0,152 -1216437,1630051616,8185300,2,47,2.0,3,0.0,1,8700.0,1009585,3.0,152 -1216438,1630051617,8186468,2,44,1.0,3,0.0,1,8400.0,1025215,2.0,152 -1216439,1630051618,8184598,2,76,-9.0,1,2.0,1,30000.0,1009585,4.0,152 -1216440,1630051619,8190696,4,36,3.0,4,1.0,1,23000.0,1009585,3.0,152 -1216441,1630051620,8195660,2,22,3.0,4,1.0,1,18600.0,1001264,3.0,152 -1216442,1630051621,8187427,2,65,-9.0,1,1.0,1,22000.0,1042852,6.0,152 -1216443,1630051622,8183134,2,38,1.0,2,1.0,1,42200.0,1001264,3.0,152 -1216444,1630051623,8186883,2,43,1.0,5,1.0,1,25600.0,1009585,1.0,152 -1216445,1630051624,8187590,2,73,1.0,6,2.0,1,78140.0,1025215,3.0,152 -1216446,1630051625,8183016,2,54,1.0,4,3.0,1,32100.0,1042852,3.0,152 -1216447,1630051626,8197282,2,80,1.0,3,1.0,1,14400.0,1073094,2.0,152 -1216448,1630051627,8192093,2,54,2.0,6,2.0,1,51300.0,1009585,1.0,152 -1216449,1630051628,8191195,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,152 -1216450,1630051629,8181542,2,49,1.0,3,1.0,1,21300.0,1042852,3.0,152 -1216451,1630051630,8185287,2,59,-9.0,3,1.0,1,1400.0,1009585,1.0,152 -1216452,1630051631,8197678,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,152 -1216453,1630051632,8186564,2,44,-9.0,1,0.0,1,4600.0,1009585,4.0,152 -1216454,1630051633,8192560,2,35,-9.0,1,2.0,1,15000.0,1042852,4.0,152 -1216455,1630051634,8197678,4,60,-9.0,1,0.0,1,8600.0,1001264,6.0,152 -1216456,1630051635,8197678,1,26,-9.0,1,1.0,1,0.0,1073094,6.0,152 -1216457,1630051636,8184651,2,62,-9.0,1,1.0,1,37000.0,1009585,6.0,152 -1216458,1630051637,8187062,2,71,-9.0,3,3.0,1,29100.0,1025215,1.0,152 -1216459,1630051638,8189153,2,36,2.0,4,2.0,1,39400.0,1042852,3.0,152 -1216460,1630051639,8181471,2,45,-9.0,3,1.0,1,11000.0,1042852,3.0,152 -1216461,1630051640,8186172,2,42,2.0,4,0.0,1,30000.0,1025215,3.0,152 -1216462,1630051641,8187617,2,26,3.0,6,0.0,1,30700.0,1009585,3.0,152 -1216463,1630051642,8186392,2,46,2.0,5,2.0,1,47000.0,1009585,1.0,152 -1216464,1630051643,8185238,2,48,1.0,3,1.0,1,26000.0,1025215,1.0,152 -1216465,1630051644,8181609,2,69,4.0,6,0.0,1,18200.0,1025215,3.0,152 -1216466,1630051645,8184108,2,46,3.0,6,1.0,1,5760.0,1073094,1.0,152 -1216467,1630051646,8195660,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,152 -1216468,1630051647,8195660,2,87,-9.0,1,0.0,1,51000.0,1009585,6.0,152 -1216469,1630051648,8186435,2,44,1.0,3,2.0,1,7300.0,1073094,3.0,152 -1216470,1630051649,8187613,2,44,-9.0,4,0.0,1,24000.0,1042852,3.0,152 -1216471,1630051650,8187098,2,66,-9.0,2,1.0,1,17600.0,1025215,3.0,152 -1216472,1630051651,8180055,2,47,-9.0,3,0.0,1,13300.0,1042852,3.0,152 -1216473,1630051652,8181560,2,47,1.0,3,2.0,1,38200.0,1001264,3.0,152 -1216474,1630051653,8187428,2,44,1.0,3,1.0,1,12200.0,1025215,1.0,152 -1216475,1630051654,8197678,2,49,-9.0,4,0.0,1,46100.0,1009585,1.0,152 -1216476,1630051655,8186517,2,66,-9.0,1,1.0,1,74000.0,1001264,6.0,152 -1216477,1630051656,8184147,2,55,-9.0,2,1.0,1,60000.0,1009585,1.0,152 -1216478,1630051657,8185165,2,40,-9.0,3,1.0,1,34900.0,1042852,1.0,152 -1216479,1630051658,8915424,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,152 -1216480,1630051659,8195660,2,30,-9.0,2,1.0,1,98800.0,1073094,5.0,152 -1216481,1630051660,8196382,2,41,-9.0,1,1.0,1,62000.0,1073094,6.0,152 -1216482,1630051661,8902327,2,24,3.0,4,0.0,1,1600.0,1001264,3.0,152 -1216483,1630051662,8197273,1,55,-9.0,1,1.0,1,830.0,1009585,4.0,152 -1216484,1630051663,8180733,2,29,4.0,5,0.0,1,0.0,1025215,3.0,152 -1216485,1630051664,8193692,2,50,2.0,4,1.0,1,41500.0,1009585,3.0,152 -1216486,1630051665,8187859,1,82,-9.0,1,1.0,1,32000.0,1001264,6.0,152 -1216487,1630051666,8188941,2,44,1.0,3,0.0,1,170.0,1009585,3.0,152 -1216488,1630051667,8186096,2,58,-9.0,3,1.0,1,92000.0,1042852,1.0,152 -1216489,1630051668,8197678,2,81,-9.0,2,1.0,1,13700.0,1073094,3.0,152 -1216490,1630051669,8186691,2,43,-9.0,1,1.0,1,50000.0,1073094,4.0,152 -1216491,1630051670,8182490,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,152 -1216492,1630051671,8185235,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,152 -1216493,1630051672,8181172,2,77,-9.0,2,2.0,1,1300.0,1025215,3.0,152 -1216494,1630051673,8187155,2,55,1.0,4,0.0,1,11500.0,1042852,1.0,152 -1216495,1630051674,8185089,2,53,2.0,6,0.0,1,10860.0,1042852,1.0,152 -1216496,1630051675,8185901,2,45,1.0,4,3.0,1,22900.0,1025215,3.0,152 -1216497,1630051676,8189999,2,94,-9.0,2,1.0,1,33000.0,1042852,3.0,152 -1216498,1630051677,8196382,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,152 -1216499,1630051678,8183359,2,66,-9.0,3,1.0,1,89400.0,1001264,3.0,152 -1216500,1630051679,8184794,2,74,-9.0,2,1.0,1,42970.0,1042852,3.0,152 -1216501,1630051680,8187393,2,64,-9.0,3,1.0,1,43100.0,1042852,3.0,152 -1216502,1630051681,8181932,2,46,-9.0,3,0.0,1,1400.0,1025215,3.0,152 -1216503,1630051682,8196084,2,65,-9.0,4,1.0,1,84400.0,1073094,3.0,152 -1216504,1630051683,8182205,2,68,3.0,4,0.0,1,12000.0,1073094,3.0,152 -1216505,1630051684,8185527,2,50,-9.0,4,1.0,1,37500.0,1042852,7.0,152 -1216506,1630051685,8185192,2,54,-9.0,4,0.0,1,14900.0,1025215,3.0,152 -1216507,1630051686,8196382,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,152 -1216508,1630051687,8197493,2,45,5.0,6,1.0,1,28100.0,1009585,3.0,152 -1216509,1630051688,8198066,2,67,-9.0,6,3.0,1,94300.0,1073094,3.0,152 -1216510,1630051689,8197678,2,30,1.0,2,1.0,1,19000.0,1073094,3.0,152 -1216511,1630051690,8192172,2,40,-9.0,3,1.0,1,34900.0,1042852,1.0,152 -1216512,1630051691,8190991,2,35,-9.0,2,1.0,1,32000.0,1025215,5.0,152 -1216513,1630051692,8194734,2,40,-9.0,1,1.0,1,0.0,1009585,4.0,152 -1216514,1630051693,8195806,2,42,-9.0,2,1.0,1,8000.0,1025215,2.0,152 -1216515,1630051694,8194980,2,56,-9.0,2,2.0,1,43000.0,1001264,1.0,152 -1216516,1630051695,8191721,2,64,-9.0,3,2.0,1,59000.0,1042852,1.0,152 -1216517,1630051696,8190564,2,53,-9.0,3,1.0,1,66800.0,1009585,3.0,152 -1216518,1630051697,8192794,2,52,-9.0,4,4.0,1,84670.0,1009585,1.0,152 -1216519,1630051698,8191970,2,61,-9.0,3,2.0,1,92600.0,1001264,1.0,152 -1216520,1630051699,8190205,2,46,-9.0,1,1.0,1,0.0,1025215,4.0,152 -1216521,1630051700,8193079,2,54,-9.0,1,1.0,1,4800.0,1073094,4.0,152 -1216522,1630051701,8195136,2,50,-9.0,3,1.0,1,24400.0,1001264,1.0,152 -1216523,1630051702,8193088,2,47,-9.0,2,1.0,1,17100.0,1001264,2.0,152 -1216524,1630051703,8196099,2,60,-9.0,2,1.0,1,7200.0,1009585,1.0,152 -1216525,1630051704,8195690,2,47,-9.0,2,1.0,1,17100.0,1001264,2.0,152 -1216526,1630051705,8188424,2,47,-9.0,2,1.0,1,17100.0,1001264,2.0,152 -1216527,1630051706,8192121,1,53,-9.0,2,1.0,1,11400.0,1042852,3.0,152 -1216528,1630051707,8195882,2,51,-9.0,4,1.0,1,26800.0,1025215,5.0,152 -1216529,1630051708,8191357,2,55,-9.0,4,1.0,1,56000.0,1025215,2.0,152 -1216530,1630051709,8195636,2,55,-9.0,4,1.0,1,56000.0,1025215,2.0,152 -1216531,1630051710,8193302,2,56,-9.0,4,1.0,1,8100.0,1073094,2.0,152 -1216532,1630051711,8192432,2,50,-9.0,1,0.0,1,0.0,1025215,4.0,152 -1216533,1630051712,8193302,2,50,-9.0,1,0.0,1,6000.0,1073094,4.0,152 -1216534,1630051713,8193302,2,62,-9.0,1,0.0,1,21000.0,1001264,6.0,152 -1216535,1630051714,8189938,2,62,-9.0,1,1.0,1,0.0,1042852,4.0,152 -1216536,1630051715,8193302,2,62,-9.0,1,1.0,1,13200.0,1009585,4.0,152 -1216537,1630051716,8196947,2,54,-9.0,3,0.0,1,17700.0,1042852,5.0,152 -1216538,1630051717,8193302,2,61,-9.0,2,0.0,1,23800.0,1073094,2.0,152 -1216539,1630051718,8193047,2,59,-9.0,2,1.0,1,8900.0,1042852,3.0,152 -1216540,1630051719,8195699,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,152 -1216541,1630051720,8193302,2,78,-9.0,1,0.0,1,9100.0,1001264,6.0,152 -1216542,1630051721,8193302,2,83,-9.0,1,1.0,1,12600.0,1025215,4.0,152 -1216543,1630051722,8194826,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,152 -1216544,1630051723,8196781,2,50,-9.0,3,1.0,1,37500.0,1042852,7.0,152 -1216545,1630051724,8192409,1,36,-9.0,1,1.0,1,0.0,1042852,4.0,152 -1216546,1630051725,8182669,1,33,-9.0,2,2.0,1,65000.0,1009585,5.0,152 -1216547,1630051726,8193302,2,56,-9.0,4,1.0,1,8100.0,1073094,2.0,152 -1216548,1630051727,8188582,2,51,-9.0,4,1.0,1,26800.0,1025215,5.0,152 -1216549,1630051728,8190125,2,50,-9.0,4,0.0,1,34000.0,1042852,2.0,152 -1216550,1630051729,8189092,2,57,-9.0,3,2.0,1,83200.0,1073094,3.0,152 -1216551,1630051730,8190163,2,53,-9.0,1,0.0,1,9600.0,1001264,4.0,152 -1216552,1630051731,8190111,1,64,-9.0,3,2.0,1,16710.0,1001264,3.0,152 -1216553,1630051732,8195958,2,60,-9.0,3,2.0,1,61200.0,1073094,3.0,152 -1216554,1630051733,8189138,1,64,-9.0,1,1.0,1,9260.0,1001264,4.0,152 -1216555,1630051734,8195818,2,55,-9.0,3,1.0,1,50000.0,1009585,2.0,152 -1216556,1630051735,8915391,2,54,-9.0,4,0.0,1,14900.0,1025215,3.0,152 -1216557,1630051736,8194338,2,80,-9.0,1,1.0,1,8900.0,1009585,4.0,152 -1216558,1630051737,8196373,1,38,-9.0,2,1.0,1,46000.0,1001264,3.0,152 -1216559,1630051738,8195552,2,40,-9.0,3,1.0,1,34900.0,1042852,1.0,152 -1216560,1630051739,8191060,2,58,-9.0,3,2.0,1,36400.0,1001264,1.0,152 -1216561,1630051740,8191668,2,58,-9.0,3,1.0,1,92000.0,1042852,1.0,152 -1216562,1630051741,8188319,2,65,-9.0,4,1.0,1,84400.0,1073094,3.0,152 -1216563,1630051742,8196249,2,55,-9.0,4,2.0,1,58500.0,1025215,1.0,152 -1216564,1630051743,8190485,2,62,-9.0,1,1.0,1,57000.0,1009585,4.0,152 -1216565,1630051744,8194332,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,152 -1216566,1630051745,8193302,2,45,-9.0,2,1.0,1,85000.0,1073094,2.0,152 -1216567,1630051746,8194163,2,73,-9.0,2,1.0,1,23600.0,1073094,3.0,152 -1216568,1630051747,8189976,1,52,-9.0,2,3.0,1,85000.0,1001264,5.0,152 -1216569,1630051748,8915392,2,58,-9.0,2,1.0,1,26500.0,1073094,3.0,152 -1216570,1630051749,8195629,2,50,-9.0,2,2.0,1,20800.0,1073094,1.0,152 -1216571,1630051750,8192628,2,63,-9.0,2,0.0,1,26500.0,1001264,7.0,152 -1216572,1630051751,8182831,2,52,-9.0,2,2.0,1,76000.0,1009585,1.0,152 -1216573,1630051752,8189001,2,50,-9.0,4,0.0,1,78000.0,1042852,1.0,152 -1216574,1630051753,8192117,2,61,-9.0,1,1.0,1,30000.0,1073094,4.0,152 -1216575,1630051754,8189164,2,70,-9.0,1,1.0,1,35400.0,1001264,1.0,152 -1216576,1630051755,8194422,1,30,-9.0,1,1.0,1,58000.0,1001264,4.0,152 -1216577,1630051756,8188462,2,59,-9.0,2,1.0,1,1400.0,1009585,1.0,152 -1216578,1630051757,8191909,2,57,-9.0,3,1.0,1,16500.0,1042852,1.0,152 -1216579,1630051758,8188717,2,50,-9.0,1,1.0,1,50000.0,1073094,4.0,152 -1216580,1630051759,8182696,1,64,-9.0,1,1.0,1,42200.0,1025215,4.0,152 -1216581,1630051760,8190754,2,61,-9.0,2,2.0,1,64700.0,1073094,3.0,152 -1216582,1630051761,8195133,2,31,-9.0,2,1.0,1,29500.0,1025215,1.0,152 -1216583,1630051762,8915400,2,54,-9.0,3,0.0,1,17700.0,1042852,5.0,152 -1216584,1630051763,8188304,2,70,-9.0,2,0.0,1,26900.0,1025215,1.0,152 -1216585,1630051764,8194074,1,41,-9.0,1,1.0,1,66000.0,1025215,4.0,152 -1216586,1630051765,8188930,2,54,-9.0,1,1.0,1,70000.0,1009585,4.0,152 -1216587,1630051766,8189203,1,49,-9.0,3,2.0,1,74500.0,1009585,5.0,152 -1216588,1630051767,8193302,2,83,-9.0,1,1.0,1,12600.0,1025215,4.0,152 -1216589,1630051768,8195951,2,52,-9.0,1,1.0,1,1200.0,1009585,4.0,152 -1216590,1630051769,8194918,2,53,-9.0,4,1.0,1,66800.0,1009585,3.0,152 -1216591,1630051770,8194797,2,72,-9.0,2,1.0,1,21200.0,1042852,3.0,152 -1216592,1630051771,8194993,1,57,-9.0,2,1.0,1,19600.0,1001264,2.0,152 -1216593,1630051772,8188999,2,49,-9.0,2,1.0,1,93180.0,1025215,3.0,152 -1216594,1630051773,8915393,2,57,-9.0,4,0.0,1,60000.0,1042852,1.0,152 -1216595,1630051774,8195074,1,53,-9.0,2,1.0,1,11400.0,1042852,3.0,152 -1216596,1630051775,8190281,2,38,-9.0,1,1.0,1,40000.0,1073094,4.0,152 -1216597,1630051776,8188972,2,62,-9.0,2,1.0,1,41800.0,1009585,7.0,152 -1216598,1630051777,8189662,2,31,-9.0,2,2.0,1,62900.0,1001264,1.0,152 -1216599,1630051778,8197287,2,64,-9.0,2,1.0,1,97220.0,1001264,1.0,152 -1216600,1630051779,8189831,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,152 -1216601,1630051780,8189055,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,152 -1216602,1630051781,8189798,2,59,-9.0,2,1.0,1,59500.0,1025215,1.0,152 -1216603,1630051782,8195057,2,39,-9.0,2,1.0,1,69000.0,1001264,1.0,152 -1216604,1630051783,8193302,2,49,-9.0,4,0.0,1,46100.0,1009585,1.0,152 -1216605,1630051784,8191831,2,63,-9.0,2,2.0,1,59200.0,1025215,3.0,152 -1216606,1630051785,8193302,2,54,-9.0,1,0.0,1,3200.0,1042852,4.0,152 -1217215,1630052394,8203604,2,38,5.0,6,1.0,1,48600.0,1009585,3.0,151 -1217216,1630052395,8204390,2,38,5.0,6,1.0,1,48600.0,1009585,3.0,151 -1217217,1630052396,8203979,2,36,3.0,4,1.0,1,25700.0,1009585,3.0,151 -1217218,1630052397,8204370,2,42,1.0,6,0.0,1,22170.0,1042852,3.0,151 -1217219,1630052398,8200910,2,42,1.0,6,0.0,1,22170.0,1042852,3.0,151 -1217220,1630052399,8201346,2,47,2.0,4,1.0,1,30300.0,1025215,2.0,151 -1217221,1630052400,8203490,2,57,1.0,4,2.0,1,41730.0,1042852,1.0,151 -1217222,1630052401,8204196,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,151 -1217223,1630052402,8204322,2,62,-9.0,1,2.0,1,51200.0,1042852,4.0,151 -1217224,1630052403,8200932,2,55,-9.0,4,2.0,1,58500.0,1025215,1.0,151 -1217225,1630052404,8202434,2,54,1.0,4,3.0,1,32100.0,1042852,3.0,151 -1217226,1630052405,8204395,2,62,-9.0,1,1.0,1,51700.0,1009585,6.0,151 -1217227,1630052406,8204193,2,59,-9.0,1,1.0,1,57000.0,1042852,4.0,151 -1217228,1630052407,8204005,2,55,3.0,6,2.0,1,40000.0,1042852,1.0,151 -1217229,1630052408,8200714,2,54,2.0,6,2.0,1,51300.0,1009585,1.0,151 -1217230,1630052409,8203110,2,61,-9.0,3,2.0,1,33300.0,1009585,1.0,151 -1217231,1630052410,8204634,2,55,-9.0,3,2.0,1,38900.0,1001264,1.0,151 -1217232,1630052411,8204101,2,61,-9.0,3,2.0,1,33300.0,1009585,1.0,151 -1217233,1630052412,8201725,2,50,-9.0,4,0.0,1,34000.0,1042852,2.0,151 -1217234,1630052413,8204788,2,55,1.0,4,0.0,1,11500.0,1042852,1.0,151 -1217235,1630052414,8204575,2,57,-9.0,1,0.0,1,19200.0,1042852,6.0,151 -1217236,1630052415,8204207,2,62,-9.0,1,0.0,1,11200.0,1042852,6.0,151 -1217237,1630052416,8197955,2,53,-9.0,1,0.0,1,18000.0,1001264,4.0,151 -1217238,1630052417,8203608,2,57,-9.0,1,0.0,1,10800.0,1042852,6.0,151 -1217239,1630052418,8204638,2,61,-9.0,1,0.0,1,14400.0,1073094,6.0,151 -1217240,1630052419,8203685,2,58,-9.0,1,1.0,1,18800.0,1042852,6.0,151 -1217241,1630052420,8200625,2,63,-9.0,1,1.0,1,920.0,1001264,6.0,151 -1217242,1630052421,8204471,2,53,2.0,6,0.0,1,10860.0,1042852,1.0,151 -1217243,1630052422,8203816,2,53,2.0,6,0.0,1,10860.0,1042852,1.0,151 -1217244,1630052423,8204123,2,46,-9.0,3,0.0,1,23400.0,1001264,1.0,151 -1217245,1630052424,8204154,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,151 -1217246,1630052425,8203941,2,53,-9.0,1,0.0,1,3100.0,1001264,4.0,151 -1217247,1630052426,8203242,2,68,-9.0,4,3.0,1,35000.0,1025215,1.0,151 -1217248,1630052427,8202223,2,69,-9.0,1,0.0,1,18700.0,1042852,6.0,151 -1217249,1630052428,8204594,2,83,-9.0,1,0.0,1,9300.0,1025215,6.0,151 -1217250,1630052429,8203877,2,68,-9.0,1,1.0,1,1500.0,1025215,4.0,151 -1217251,1630052430,8204340,2,38,3.0,4,0.0,1,15000.0,1001264,3.0,151 -1217252,1630052431,8200625,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,151 -1217253,1630052432,8204439,2,28,-9.0,1,0.0,1,7800.0,1025215,4.0,151 -1217254,1630052433,8204647,2,26,2.0,3,0.0,1,11100.0,1009585,3.0,151 -1217255,1630052434,8204723,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,151 -1217256,1630052435,8199901,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,151 -1217257,1630052436,8202802,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,151 -1217258,1630052437,8201421,2,51,-9.0,1,0.0,1,10600.0,1025215,6.0,151 -1217259,1630052438,8200190,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,151 -1217260,1630052439,8202105,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,151 -1217261,1630052440,8202949,2,54,-9.0,1,0.0,1,4400.0,1025215,4.0,151 -1217262,1630052441,8204536,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,151 -1217263,1630052442,8202223,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,151 -1217264,1630052443,8204045,2,55,-9.0,3,1.0,1,50000.0,1009585,2.0,151 -1217265,1630052444,8204753,2,76,-9.0,1,1.0,1,31410.0,1042852,4.0,151 -1217266,1630052445,8203765,2,30,3.0,4,1.0,1,17000.0,1009585,3.0,151 -1217267,1630052446,8201324,2,58,-9.0,3,2.0,1,157810.0,1009585,1.0,151 -1217268,1630052447,8202765,2,38,2.0,4,2.0,1,100000.0,1073094,1.0,151 -1217269,1630052448,8203590,2,82,-9.0,3,2.0,1,30600.0,1001264,3.0,151 -1217270,1630052449,8203194,2,61,-9.0,1,1.0,1,16000.0,1001264,6.0,151 -1217271,1630052450,8201319,2,32,1.0,3,0.0,1,33000.0,1073094,1.0,151 -1217272,1630052451,8204702,2,62,-9.0,1,0.0,1,35000.0,1073094,6.0,151 -1217273,1630052452,8203867,2,65,-9.0,1,1.0,1,20100.0,1042852,4.0,151 -1217274,1630052453,8201767,2,35,-9.0,1,0.0,1,0.0,1001264,4.0,151 -1217275,1630052454,8203932,2,36,2.0,4,2.0,1,39400.0,1042852,3.0,151 -1217276,1630052455,8201102,2,56,-9.0,3,2.0,1,51700.0,1025215,3.0,151 -1217277,1630052456,8203895,2,58,-9.0,3,2.0,1,36400.0,1001264,1.0,151 -1217278,1630052457,8204598,2,51,2.0,4,1.0,1,102680.0,1009585,2.0,151 -1217279,1630052458,8200972,2,35,-9.0,1,1.0,1,35000.0,1073094,4.0,151 -1217280,1630052459,8200447,2,57,-9.0,1,0.0,1,8400.0,1025215,6.0,151 -1217281,1630052460,8200501,2,43,1.0,3,2.0,1,50400.0,1042852,1.0,151 -1217282,1630052461,8202949,2,44,2.0,6,0.0,1,30400.0,1073094,3.0,151 -1217283,1630052462,8201661,2,50,-9.0,4,0.0,1,78000.0,1042852,1.0,151 -1217284,1630052463,8204223,2,50,1.0,4,3.0,1,237000.0,1025215,1.0,151 -1217285,1630052464,8202334,2,38,-9.0,1,1.0,1,40000.0,1073094,4.0,151 -1217286,1630052465,8202565,2,57,1.0,4,2.0,1,41730.0,1042852,1.0,151 -1217287,1630052466,8195337,2,84,-9.0,3,1.0,1,241900.0,1042852,1.0,151 -1217288,1630052467,8199418,2,80,-9.0,3,1.0,1,39200.0,1073094,3.0,151 -1217289,1630052468,8202831,2,44,1.0,3,0.0,1,170.0,1009585,3.0,151 -1217290,1630052469,8204572,2,47,-9.0,1,1.0,1,8400.0,1009585,6.0,151 -1217291,1630052470,8204228,2,87,-9.0,3,0.0,1,52200.0,1009585,3.0,151 -1217292,1630052471,8204189,2,41,2.0,4,2.0,1,104000.0,1073094,1.0,151 -1217293,1630052472,8199901,2,63,-9.0,1,1.0,1,36600.0,1042852,4.0,151 -1217294,1630052473,8199876,2,68,-9.0,1,0.0,1,8700.0,1009585,6.0,151 -1217295,1630052474,8201877,2,36,3.0,6,1.0,1,31330.0,1001264,1.0,151 -1217296,1630052475,8204499,2,44,-9.0,4,0.0,1,24000.0,1042852,3.0,151 -1217297,1630052476,8203113,2,25,5.0,6,1.0,1,16700.0,1073094,3.0,151 -1217298,1630052477,8204719,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,151 -1217299,1630052478,8200653,2,62,1.0,3,2.0,1,40500.0,1001264,3.0,151 -1217300,1630052479,8204368,2,80,1.0,4,2.0,1,54000.0,1025215,1.0,151 -1217301,1630052480,8195448,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,151 -1217302,1630052481,8203226,2,55,3.0,6,2.0,1,40000.0,1042852,1.0,151 -1217303,1630052482,8202087,2,87,-9.0,1,0.0,1,50000.0,1001264,4.0,151 -1217304,1630052483,8204647,2,46,3.0,6,1.0,1,5760.0,1073094,1.0,151 -1217305,1630052484,8204292,2,44,-9.0,1,1.0,1,0.0,1009585,6.0,151 -1217306,1630052485,8203113,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,151 -1217307,1630052486,8204568,2,40,3.0,6,1.0,1,35000.0,1001264,1.0,151 -1217308,1630052487,8203647,2,63,-9.0,1,0.0,1,32400.0,1009585,6.0,151 -1217309,1630052488,8204738,2,58,-9.0,1,0.0,1,12000.0,1042852,4.0,151 -1217310,1630052489,8204536,2,33,3.0,4,0.0,1,0.0,1001264,3.0,151 -1217311,1630052490,8201544,2,50,-9.0,4,0.0,1,34000.0,1042852,2.0,151 -1217312,1630052491,8204514,2,37,2.0,3,1.0,1,15600.0,1025215,3.0,151 -1217313,1630052492,8204738,2,37,3.0,4,1.0,1,2600.0,1009585,3.0,151 -1217314,1630052493,8202253,2,60,2.0,4,1.0,1,52800.0,1009585,3.0,151 -1217315,1630052494,8204533,2,93,-9.0,3,0.0,1,57300.0,1025215,3.0,151 -1217316,1630052495,8204471,2,47,-9.0,1,0.0,1,47000.0,1001264,4.0,151 -1217317,1630052496,8204253,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,151 -1217318,1630052497,8204186,2,41,-9.0,1,2.0,1,40000.0,1025215,6.0,151 -1217319,1630052498,8204464,2,54,-9.0,3,2.0,1,101400.0,1009585,1.0,151 -1217320,1630052499,8201664,2,58,-9.0,3,0.0,1,11500.0,1001264,3.0,151 -1217321,1630052500,8200865,2,60,-9.0,1,1.0,1,14300.0,1001264,6.0,151 -1217322,1630052501,8203925,2,32,1.0,3,1.0,1,10000.0,1009585,1.0,151 -1217323,1630052502,8199522,2,74,-9.0,4,2.0,1,58050.0,1025215,1.0,151 -1217324,1630052503,8204150,2,54,-9.0,1,1.0,1,70000.0,1009585,4.0,151 -1217325,1630052504,8202895,2,32,3.0,4,1.0,1,48000.0,1025215,3.0,151 -1217326,1630052505,8204859,2,68,3.0,4,0.0,1,12000.0,1073094,3.0,151 -1217327,1630052506,8204042,2,29,2.0,3,1.0,1,12300.0,1001264,3.0,151 -1217328,1630052507,8204802,2,45,1.0,3,3.0,1,22900.0,1025215,3.0,151 -1217329,1630052508,8203318,2,58,-9.0,3,2.0,1,99000.0,1009585,1.0,151 -1217330,1630052509,8202944,2,61,-9.0,1,2.0,1,48230.0,1042852,4.0,151 -1217331,1630052510,8203939,2,65,-9.0,3,0.0,1,0.0,1042852,1.0,151 -1217332,1630052511,8204260,2,26,3.0,5,0.0,1,30700.0,1009585,3.0,151 -1217333,1630052512,8203951,2,55,-9.0,4,2.0,1,58500.0,1025215,1.0,151 -1217334,1630052513,8204046,2,50,-9.0,2,1.0,1,24400.0,1001264,1.0,151 -1217335,1630052514,8203737,2,42,-9.0,1,2.0,1,8600.0,1009585,4.0,151 -1217336,1630052515,8199368,2,58,-9.0,1,0.0,1,17600.0,1001264,6.0,151 -1217337,1630052516,8203561,2,60,-9.0,1,1.0,1,26800.0,1001264,4.0,151 -1217338,1630052517,8204466,2,55,-9.0,1,1.0,1,10000.0,1001264,6.0,151 -1217339,1630052518,8200436,2,54,-9.0,1,2.0,1,3500.0,1025215,6.0,151 -1217340,1630052519,8201376,2,59,5.0,7,2.0,1,21600.0,1001264,3.0,151 -1217341,1630052520,8201361,2,59,5.0,7,2.0,1,21600.0,1001264,3.0,151 -1217342,1630052521,8203994,2,80,-9.0,1,0.0,1,15600.0,1025215,6.0,151 -1217343,1630052522,8204535,2,90,-9.0,1,0.0,1,12200.0,1073094,6.0,151 -1217344,1630052523,8203040,2,73,-9.0,1,1.0,1,18700.0,1073094,6.0,151 -1217345,1630052524,8203427,2,87,-9.0,1,1.0,1,12700.0,1001264,6.0,151 -1217346,1630052525,8200893,2,89,-9.0,1,1.0,1,14400.0,1042852,4.0,151 -1217347,1630052526,8199368,2,87,-9.0,1,1.0,1,14900.0,1025215,6.0,151 -1217348,1630052527,8195410,2,88,-9.0,1,2.0,1,2500.0,1001264,4.0,151 -1217349,1630052528,8200502,2,88,-9.0,1,2.0,1,2500.0,1001264,4.0,151 -1217350,1630052529,8204401,2,74,-9.0,1,2.0,1,0.0,1042852,4.0,151 -1217351,1630052530,8204192,2,36,5.0,8,2.0,1,33600.0,1042852,3.0,151 -1217352,1630052531,8204103,2,36,5.0,8,2.0,1,33600.0,1042852,3.0,151 -1217353,1630052532,8203351,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,151 -1217354,1630052533,8204435,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,151 -1217355,1630052534,8202705,2,44,-9.0,1,0.0,1,9350.0,1025215,6.0,151 -1217356,1630052535,8200183,2,42,-9.0,1,0.0,1,4000.0,1073094,4.0,151 -1217357,1630052536,8203570,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,151 -1217358,1630052537,8204435,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,151 -1217359,1630052538,8203570,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,151 -1217360,1630052539,8204435,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,151 -1217361,1630052540,8199381,2,41,-9.0,1,1.0,1,8900.0,1009585,6.0,151 -1217362,1630052541,8200183,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,151 -1217363,1630052542,8199381,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,151 -1217364,1630052543,8204583,2,43,-9.0,1,1.0,1,12000.0,1009585,4.0,151 -1217365,1630052544,8199381,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,151 -1217366,1630052545,8198024,2,42,-9.0,1,1.0,1,5000.0,1042852,6.0,151 -1217367,1630052546,8198993,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,151 -1217368,1630052547,8198190,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,151 -1217369,1630052548,8197797,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,151 -1217370,1630052549,8197797,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,151 -1217371,1630052550,8200548,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,151 -1217372,1630052551,8197690,2,38,6.0,8,0.0,1,12200.0,1042852,3.0,151 -1217373,1630052552,8203797,2,44,2.0,4,1.0,1,7200.0,1009585,3.0,151 -1217374,1630052553,8204435,2,37,-9.0,1,0.0,1,15000.0,1073094,6.0,151 -1217375,1630052554,8203570,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,151 -1217376,1630052555,8204403,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,151 -1217377,1630052556,8197129,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,151 -1217378,1630052557,8204435,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,151 -1217379,1630052558,8902284,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,151 -1217380,1630052559,8199470,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,151 -1217381,1630052560,8200183,2,32,-9.0,1,1.0,1,22500.0,1001264,6.0,151 -1217382,1630052561,8200183,2,32,-9.0,1,1.0,1,22500.0,1001264,6.0,151 -1217383,1630052562,8199401,2,27,-9.0,1,1.0,1,26000.0,1001264,6.0,151 -1217384,1630052563,8199381,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,151 -1217385,1630052564,8199470,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,151 -1217386,1630052565,8199381,2,42,-9.0,1,1.0,1,24000.0,1001264,6.0,151 -1217387,1630052566,8199470,2,27,-9.0,1,1.0,1,26000.0,1001264,6.0,151 -1217388,1630052567,8199381,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,151 -1217389,1630052568,8199381,2,25,-9.0,1,1.0,1,29600.0,1073094,6.0,151 -1217390,1630052569,8202705,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,151 -1217391,1630052570,8199381,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,151 -1217392,1630052571,8200183,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,151 -1217393,1630052572,8204435,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,151 -1217394,1630052573,8198190,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,151 -1217395,1630052574,8199381,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,151 -1217396,1630052575,8199858,2,44,5.0,11,0.0,1,25300.0,1009585,3.0,151 -1217397,1630052576,8204013,2,44,5.0,11,0.0,1,25300.0,1009585,3.0,151 -1217398,1630052577,8198358,2,33,7.0,8,1.0,1,13200.0,1042852,3.0,151 -1217399,1630052578,8198740,2,33,7.0,8,1.0,1,13200.0,1042852,3.0,151 -1217400,1630052579,8203414,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,151 -1217401,1630052580,8204105,2,25,2.0,4,2.0,1,14900.0,1042852,3.0,151 -1217402,1630052581,8204092,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,151 -1217403,1630052582,8203414,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,151 -1217404,1630052583,8203414,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,151 -1217405,1630052584,8199368,2,25,2.0,4,2.0,1,14900.0,1042852,3.0,151 -1217406,1630052585,8197690,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,151 -1217407,1630052586,8198706,2,25,2.0,4,2.0,1,14900.0,1042852,3.0,151 -1217408,1630052587,8197443,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,151 -1217409,1630052588,8197690,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,151 -1217410,1630052589,8198607,2,25,2.0,4,2.0,1,14900.0,1042852,3.0,151 -1217411,1630052590,8196948,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,151 -1217412,1630052591,8203797,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,151 -1217413,1630052592,8203351,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,151 -1217414,1630052593,8204435,2,50,-9.0,1,0.0,1,6000.0,1073094,4.0,151 -1217415,1630052594,8203570,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,151 -1217416,1630052595,8203614,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,151 -1217417,1630052596,8198145,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,151 -1217418,1630052597,8203570,2,53,-9.0,1,0.0,1,26030.0,1042852,4.0,151 -1217419,1630052598,8199381,2,61,-9.0,1,0.0,1,28000.0,1009585,6.0,151 -1217420,1630052599,8200183,2,60,-9.0,1,0.0,1,12000.0,1025215,4.0,151 -1217421,1630052600,8203570,2,53,-9.0,1,0.0,1,26030.0,1042852,4.0,151 -1217422,1630052601,8199381,2,62,-9.0,1,0.0,1,21000.0,1001264,6.0,151 -1217423,1630052602,8204435,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,151 -1217424,1630052603,8204097,2,58,-9.0,1,0.0,1,0.0,1025215,4.0,151 -1217425,1630052604,8199721,2,58,-9.0,1,0.0,1,8700.0,1009585,6.0,151 -1217426,1630052605,8204584,2,58,-9.0,1,0.0,1,8700.0,1009585,6.0,151 -1217427,1630052606,8203351,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,151 -1217428,1630052607,8198190,2,50,-9.0,1,0.0,1,0.0,1073094,6.0,151 -1217429,1630052608,8204441,2,58,-9.0,1,0.0,1,0.0,1025215,4.0,151 -1217430,1630052609,8197512,2,48,-9.0,1,0.0,1,12200.0,1009585,6.0,151 -1217431,1630052610,8200183,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,151 -1217432,1630052611,8197443,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,151 -1217433,1630052612,8203570,2,60,-9.0,1,0.0,1,13300.0,1001264,6.0,151 -1217434,1630052613,8203351,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,151 -1217435,1630052614,8204435,2,56,-9.0,1,0.0,1,0.0,1009585,6.0,151 -1217436,1630052615,8203351,2,57,-9.0,1,0.0,1,8400.0,1009585,6.0,151 -1217437,1630052616,8203570,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,151 -1217438,1630052617,8200183,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,151 -1217439,1630052618,8204435,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,151 -1217440,1630052619,8204435,2,57,-9.0,1,1.0,1,12200.0,1001264,4.0,151 -1217441,1630052620,8197924,2,51,-9.0,1,1.0,1,1000.0,1009585,4.0,151 -1217442,1630052621,8203351,2,62,-9.0,1,1.0,1,13200.0,1009585,4.0,151 -1217443,1630052622,8204435,2,58,-9.0,1,1.0,1,25600.0,1073094,6.0,151 -1217444,1630052623,8204435,2,64,-9.0,1,1.0,1,3300.0,1025215,4.0,151 -1217445,1630052624,8203614,2,56,-9.0,1,1.0,1,0.0,1025215,6.0,151 -1217446,1630052625,8203875,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,151 -1217447,1630052626,8193565,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,151 -1217448,1630052627,8197512,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,151 -1217449,1630052628,8200092,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,151 -1217450,1630052629,8204435,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,151 -1217451,1630052630,8203614,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,151 -1217452,1630052631,8199470,2,62,-9.0,1,0.0,1,29000.0,1009585,6.0,151 -1217453,1630052632,8199401,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,151 -1217454,1630052633,8204092,2,55,-9.0,1,0.0,1,7500.0,1001264,6.0,151 -1217455,1630052634,8203570,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,151 -1217456,1630052635,8204435,2,60,-9.0,1,0.0,1,4800.0,1025215,6.0,151 -1217457,1630052636,8204435,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,151 -1217458,1630052637,8193389,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,151 -1217459,1630052638,8199381,2,47,-9.0,1,0.0,1,20600.0,1073094,6.0,151 -1217460,1630052639,8204435,2,59,-9.0,1,0.0,1,15000.0,1025215,6.0,151 -1217461,1630052640,8204435,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,151 -1217462,1630052641,8198607,2,61,-9.0,1,0.0,1,11500.0,1009585,4.0,151 -1217463,1630052642,8199381,2,64,-9.0,1,0.0,1,15000.0,1025215,4.0,151 -1217464,1630052643,8200183,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,151 -1217465,1630052644,8204136,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,151 -1217466,1630052645,8203561,2,46,-9.0,1,1.0,1,1000.0,1001264,6.0,151 -1217467,1630052646,8196948,2,54,-9.0,1,1.0,1,21900.0,1025215,4.0,151 -1217468,1630052647,8204435,2,62,-9.0,1,1.0,1,22000.0,1009585,6.0,151 -1217469,1630052648,8204435,2,60,-9.0,1,1.0,1,12000.0,1001264,4.0,151 -1217470,1630052649,8204435,2,60,-9.0,1,1.0,1,12000.0,1001264,4.0,151 -1217471,1630052650,8203351,2,53,-9.0,1,1.0,1,12900.0,1025215,6.0,151 -1217472,1630052651,8204478,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,151 -1217473,1630052652,8902284,2,58,-9.0,1,1.0,1,29600.0,1009585,6.0,151 -1217474,1630052653,8204025,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,151 -1217475,1630052654,8203351,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,151 -1217476,1630052655,8203351,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,151 -1217477,1630052656,8198190,2,59,-9.0,1,2.0,1,20000.0,1001264,4.0,151 -1217478,1630052657,8203351,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,151 -1217479,1630052658,8198190,2,59,-9.0,1,2.0,1,20000.0,1001264,4.0,151 -1217480,1630052659,8198190,2,59,-9.0,1,2.0,1,20000.0,1001264,4.0,151 -1217481,1630052660,8204013,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,151 -1217482,1630052661,8198993,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,151 -1217483,1630052662,8204435,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,151 -1217484,1630052663,8203351,2,87,-9.0,1,0.0,1,20400.0,1025215,6.0,151 -1217485,1630052664,8199381,2,68,-9.0,1,0.0,1,17360.0,1009585,6.0,151 -1217486,1630052665,8203351,2,69,-9.0,1,0.0,1,7000.0,1009585,6.0,151 -1217487,1630052666,8204435,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,151 -1217488,1630052667,8203570,2,69,-9.0,1,0.0,1,12600.0,1025215,6.0,151 -1217489,1630052668,8203570,2,82,-9.0,1,0.0,1,18900.0,1042852,6.0,151 -1217490,1630052669,8199381,2,82,-9.0,1,0.0,1,12500.0,1073094,4.0,151 -1217491,1630052670,8204435,2,78,-9.0,1,0.0,1,9100.0,1001264,6.0,151 -1217492,1630052671,8204435,2,80,-9.0,1,0.0,1,15000.0,1001264,6.0,151 -1217493,1630052672,8200183,2,85,-9.0,1,0.0,1,13200.0,1025215,6.0,151 -1217494,1630052673,8198145,2,65,-9.0,1,1.0,1,3300.0,1073094,4.0,151 -1217495,1630052674,8203351,2,83,-9.0,1,1.0,1,12600.0,1025215,4.0,151 -1217496,1630052675,8199401,2,78,-9.0,1,1.0,1,11900.0,1001264,6.0,151 -1217497,1630052676,8199401,2,65,-9.0,1,2.0,1,16000.0,1001264,6.0,151 -1217498,1630052677,8199381,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,151 -1217499,1630052678,8200763,4,73,-9.0,1,2.0,1,24000.0,1025215,6.0,151 -1217500,1630052679,8204435,2,59,-9.0,1,0.0,1,1200.0,1042852,4.0,151 -1217501,1630052680,8204092,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,151 -1217502,1630052681,8199381,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,151 -1217503,1630052682,8199368,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,151 -1217504,1630052683,8203875,4,61,-9.0,1,1.0,1,13500.0,1025215,4.0,151 -1217505,1630052684,8203414,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,151 -1217506,1630052685,8199858,2,32,2.0,4,1.0,1,23000.0,1001264,2.0,151 -1217507,1630052686,8203570,4,46,-9.0,1,0.0,1,9000.0,1009585,6.0,151 -1217508,1630052687,8203570,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,151 -1217509,1630052688,8199496,1,79,-9.0,1,2.0,1,13300.0,1001264,6.0,151 -1217510,1630052689,8199381,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,151 -1217511,1630052690,8199381,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,151 -1217512,1630052691,8204435,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,151 -1217513,1630052692,8199381,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,151 -1217514,1630052693,8199368,2,49,-9.0,1,0.0,1,22000.0,1009585,4.0,151 -1217515,1630052694,8196948,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,151 -1217516,1630052695,8197238,2,47,-9.0,1,1.0,1,8400.0,1009585,6.0,151 -1217517,1630052696,8196948,2,47,5.0,10,0.0,1,5400.0,1009585,1.0,151 -1217518,1630052697,8203797,2,61,-9.0,1,1.0,1,16000.0,1001264,6.0,151 -1217519,1630052698,8200296,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,151 -1217520,1630052699,8199381,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,151 -1217521,1630052700,8203172,2,59,1.0,4,2.0,1,68000.0,1009585,1.0,151 -1217522,1630052701,8198740,2,38,3.0,4,1.0,1,13300.0,1073094,3.0,151 -1217523,1630052702,8203614,2,60,-9.0,1,1.0,1,28000.0,1001264,6.0,151 -1217524,1630052703,8203379,2,53,2.0,4,2.0,1,20500.0,1042852,3.0,151 -1217525,1630052704,8199890,2,53,-9.0,1,2.0,1,12400.0,1073094,4.0,151 -1217526,1630052705,8204025,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,151 -1217527,1630052706,8200548,2,42,-9.0,1,1.0,1,40000.0,1042852,4.0,151 -1217528,1630052707,8199401,2,72,-9.0,1,1.0,1,20000.0,1025215,4.0,151 -1217529,1630052708,8201483,2,46,-9.0,1,2.0,1,75000.0,1042852,6.0,151 -1217530,1630052709,8201239,2,77,-9.0,1,1.0,1,0.0,1042852,6.0,151 -1217531,1630052710,8199381,4,58,-9.0,1,0.0,1,21700.0,1025215,6.0,151 -1217532,1630052711,8203379,2,52,-9.0,1,1.0,1,7000.0,1025215,4.0,151 -1217533,1630052712,8203390,2,42,4.0,8,1.0,1,5280.0,1001264,3.0,151 -1217534,1630052713,8204563,2,36,2.0,4,2.0,1,11400.0,1042852,3.0,151 -1217535,1630052714,8201336,2,66,-9.0,1,1.0,1,320.0,1009585,6.0,151 -1217536,1630052715,8204435,2,36,-9.0,1,2.0,1,33000.0,1001264,4.0,151 -1217537,1630052716,8199381,2,50,-9.0,1,1.0,1,32000.0,1001264,6.0,151 -1217538,1630052717,8203351,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,151 -1217539,1630052718,8200183,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,151 -1217540,1630052719,8197134,1,89,-9.0,1,1.0,1,10000.0,1042852,6.0,151 -1217541,1630052720,8203612,2,44,5.0,11,0.0,1,25300.0,1009585,3.0,151 -1217542,1630052721,8199381,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,151 -1217543,1630052722,8204630,2,77,-9.0,1,0.0,1,8800.0,1025215,4.0,151 -1217544,1630052723,8198145,2,56,-9.0,1,2.0,1,45000.0,1001264,4.0,151 -1217545,1630052724,8204242,2,61,-9.0,1,3.0,1,46000.0,1001264,1.0,151 -1217546,1630052725,8204562,2,48,-9.0,2,5.0,1,53800.0,1025215,7.0,151 -1217547,1630052726,8204299,2,55,3.0,6,2.0,1,40000.0,1042852,1.0,151 -1217548,1630052727,8204898,2,55,3.0,6,2.0,1,40000.0,1042852,1.0,151 -1217549,1630052728,8203901,2,55,3.0,6,2.0,1,40000.0,1042852,1.0,151 -1217550,1630052729,8204783,2,55,3.0,6,2.0,1,40000.0,1042852,1.0,151 -1217551,1630052730,8204606,2,55,3.0,6,2.0,1,40000.0,1042852,1.0,151 -1217552,1630052731,8204567,2,55,3.0,6,2.0,1,40000.0,1042852,1.0,151 -1217553,1630052732,8203883,2,57,-9.0,2,2.0,1,54000.0,1025215,1.0,151 -1217554,1630052733,8204592,2,53,2.0,6,0.0,1,10860.0,1042852,1.0,151 -1217555,1630052734,8204205,2,53,2.0,6,0.0,1,10860.0,1042852,1.0,151 -1217556,1630052735,8204952,2,60,-9.0,2,0.0,1,9600.0,1025215,1.0,151 -1217557,1630052736,8204888,2,47,-9.0,2,1.0,1,17100.0,1001264,2.0,151 -1217558,1630052737,8204913,4,80,-9.0,7,5.0,1,152300.0,1042852,3.0,151 -1217559,1630052738,8204152,2,67,-9.0,2,1.0,1,33600.0,1073094,2.0,151 -1217560,1630052739,8204554,2,66,-9.0,2,1.0,1,33700.0,1042852,2.0,151 -1217561,1630052740,8204003,2,67,-9.0,2,1.0,1,33600.0,1073094,2.0,151 -1217562,1630052741,8204942,2,74,-9.0,2,2.0,1,32600.0,1042852,3.0,151 -1217563,1630052742,8204907,2,73,-9.0,2,3.0,1,50700.0,1073094,1.0,151 -1217564,1630052743,8204862,2,68,-9.0,2,2.0,1,48700.0,1042852,1.0,151 -1217565,1630052744,8204961,3,77,-9.0,1,2.0,1,39000.0,1001264,1.0,151 -1217566,1630052745,8199920,2,88,-9.0,2,2.0,1,31000.0,1009585,3.0,151 -1217567,1630052746,8204176,2,85,4.0,8,0.0,1,52100.0,1009585,3.0,151 -1217568,1630052747,8204070,2,90,-9.0,2,0.0,1,24700.0,1073094,3.0,151 -1217569,1630052748,8204200,2,37,6.0,7,0.0,1,40000.0,1025215,3.0,151 -1217570,1630052749,8204672,2,44,2.0,5,0.0,1,30400.0,1073094,3.0,151 -1217571,1630052750,8204771,2,44,2.0,6,0.0,1,30400.0,1073094,3.0,151 -1217572,1630052751,8204502,2,44,2.0,6,0.0,1,30400.0,1073094,3.0,151 -1217573,1630052752,8204795,2,26,3.0,6,0.0,1,30700.0,1009585,3.0,151 -1217574,1630052753,8204755,2,39,4.0,7,0.0,1,5900.0,1025215,3.0,151 -1217575,1630052754,8204668,2,25,5.0,6,1.0,1,16700.0,1073094,3.0,151 -1217576,1630052755,8204668,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,151 -1217577,1630052756,8204716,2,34,6.0,7,0.0,1,12200.0,1025215,3.0,151 -1217578,1630052757,8204450,2,53,3.0,7,0.0,1,45600.0,1009585,1.0,151 -1217579,1630052758,8204436,2,55,-9.0,6,1.0,1,37900.0,1042852,3.0,151 -1217580,1630052759,8204436,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,151 -1217581,1630052760,8204946,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,151 -1217582,1630052761,8204600,2,60,-9.0,1,0.0,1,13400.0,1042852,5.0,151 -1217583,1630052762,8204474,2,61,-9.0,2,0.0,1,10800.0,1025215,2.0,151 -1217584,1630052763,8204417,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,151 -1217585,1630052764,8204375,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,151 -1217586,1630052765,8204554,2,24,1.0,2,0.0,1,3000.0,1042852,3.0,151 -1217587,1630052766,8204436,2,24,1.0,2,0.0,1,3000.0,1042852,3.0,151 -1217588,1630052767,8204474,2,23,1.0,2,0.0,1,6600.0,1025215,3.0,151 -1217589,1630052768,8204436,2,32,3.0,6,1.0,1,19200.0,1073094,1.0,151 -1217590,1630052769,8204538,2,25,5.0,6,1.0,1,16700.0,1073094,3.0,151 -1217591,1630052770,8204361,2,46,3.0,6,1.0,1,5760.0,1073094,1.0,151 -1217592,1630052771,8204184,2,89,-9.0,2,1.0,1,20500.0,1073094,1.0,151 -1217593,1630052772,8204474,2,53,1.0,2,0.0,1,12000.0,1025215,2.0,151 -1217594,1630052773,8204908,2,94,-9.0,2,1.0,1,33000.0,1042852,3.0,151 -1217595,1630052774,8204726,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,151 -1217596,1630052775,8204816,2,29,1.0,2,1.0,1,32000.0,1025215,2.0,151 -1217597,1630052776,8204830,4,52,-9.0,2,2.0,1,46400.0,1073094,1.0,151 -1217598,1630052777,8204484,2,76,-9.0,2,0.0,1,8520.0,1042852,3.0,151 -1217599,1630052778,8204856,2,53,2.0,6,0.0,1,10860.0,1042852,1.0,151 -1217600,1630052779,8204600,2,63,-9.0,2,2.0,1,39200.0,1073094,1.0,151 -1217601,1630052780,8204417,2,57,-9.0,2,0.0,1,49700.0,1001264,1.0,151 -1217602,1630052781,8204685,2,26,3.0,6,0.0,1,30700.0,1009585,3.0,151 -1217603,1630052782,8204779,2,37,5.0,8,1.0,1,42000.0,1009585,3.0,151 -1217604,1630052783,8204749,2,37,6.0,7,0.0,1,40000.0,1025215,3.0,151 -1217605,1630052784,8204649,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,151 -1217606,1630052785,8204660,2,81,-9.0,2,2.0,1,58600.0,1025215,3.0,151 -1217607,1630052786,8204436,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,151 -1217608,1630052787,8204951,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,151 -1217609,1630052788,8204745,2,48,4.0,7,1.0,1,0.0,1001264,3.0,151 -1217610,1630052789,8204669,2,72,-9.0,2,0.0,1,40800.0,1042852,1.0,151 -1217611,1630052790,8204538,2,31,1.0,2,1.0,1,22900.0,1042852,2.0,151 -1217612,1630052791,8204120,2,71,-9.0,1,0.0,1,18000.0,1009585,4.0,151 -1217613,1630052792,8204272,4,74,-9.0,2,1.0,1,31800.0,1025215,1.0,151 -1217614,1630052793,8204496,4,63,-9.0,2,2.0,1,38500.0,1009585,3.0,151 -1217615,1630052794,8204734,2,64,-9.0,2,2.0,1,169704.0,1025215,1.0,151 -1217616,1630052795,8204705,2,46,-9.0,1,0.0,1,12000.0,1025215,4.0,151 -1217617,1630052796,8204976,2,61,-9.0,2,0.0,1,53100.0,1025215,5.0,151 -1217618,1630052797,8204909,2,56,4.0,8,0.0,1,11000.0,1001264,3.0,151 -1217619,1630052798,8204997,2,39,4.0,7,0.0,1,5900.0,1025215,3.0,151 -1217620,1630052799,8204388,2,85,4.0,8,0.0,1,52100.0,1009585,3.0,151 -1217621,1630052800,8204600,2,61,-9.0,2,1.0,1,2800.0,1001264,1.0,151 -1217622,1630052801,8204744,2,68,-9.0,1,1.0,1,1500.0,1025215,4.0,151 -1217623,1630052802,8204931,2,22,1.0,2,1.0,1,34000.0,1025215,3.0,151 -1217624,1630052803,8204845,2,59,5.0,7,2.0,1,21600.0,1001264,3.0,151 -1217625,1630052804,8204387,2,62,-9.0,2,4.0,1,101660.0,1009585,2.0,151 -1217626,1630052805,8204658,2,85,-9.0,2,2.0,1,28700.0,1025215,2.0,151 -1217627,1630052806,8204791,2,66,-9.0,1,1.0,1,40150.0,1001264,4.0,151 -1217628,1630052807,8204412,2,63,-9.0,1,1.0,1,38000.0,1042852,4.0,151 -1217629,1630052808,8204777,2,38,2.0,6,2.0,1,122500.0,1042852,3.0,151 -1217630,1630052809,8204436,2,35,5.0,8,1.0,1,24600.0,1073094,2.0,151 -1217631,1630052810,8204725,2,71,-9.0,2,0.0,1,40370.0,1042852,3.0,151 -1217632,1630052811,8204582,2,48,-9.0,2,3.0,1,163200.0,1042852,3.0,151 -1217633,1630052812,8204474,2,61,-9.0,2,0.0,1,31400.0,1042852,2.0,151 -1217634,1630052813,8204474,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,151 -1217635,1630052814,8204480,2,41,-9.0,1,0.0,1,7350.0,1001264,4.0,151 -1217636,1630052815,8203919,2,36,5.0,8,2.0,1,33600.0,1042852,3.0,151 -1217637,1630052816,8204726,2,60,-9.0,2,2.0,1,40700.0,1001264,1.0,151 -1217638,1630052817,8204761,2,47,5.0,10,0.0,1,5400.0,1009585,1.0,151 -1217639,1630052818,8204855,2,75,-9.0,2,2.0,1,104000.0,1001264,1.0,151 -1217640,1630052819,8204726,2,55,-9.0,2,1.0,1,9800.0,1042852,3.0,151 -1217641,1630052820,8204525,2,42,2.0,8,1.0,1,35400.0,1025215,3.0,151 -1217642,1630052821,8204587,3,52,-9.0,2,2.0,1,120000.0,1025215,1.0,151 -1217643,1630052822,8204592,2,60,-9.0,1,1.0,1,36000.0,1001264,4.0,151 -1217644,1630052823,8203824,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,151 -1217645,1630052824,8204623,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,151 -1217646,1630052825,8204726,2,75,-9.0,2,0.0,1,185800.0,1009585,3.0,151 -1217647,1630052826,8204361,2,52,-9.0,2,0.0,1,4100.0,1009585,3.0,151 -1217648,1630052827,8203923,2,61,-9.0,1,2.0,1,12800.0,1073094,7.0,151 -1217649,1630052828,8204508,2,47,-9.0,2,1.0,1,17100.0,1001264,2.0,151 -1217650,1630052829,8204554,2,63,-9.0,2,3.0,1,26400.0,1009585,1.0,151 -1217651,1630052830,8203914,3,77,-9.0,2,2.0,1,39000.0,1001264,1.0,151 -1217652,1630052831,8204474,2,58,-9.0,1,0.0,1,9680.0,1073094,4.0,151 -1217653,1630052832,8204870,2,53,3.0,8,0.0,1,45600.0,1009585,1.0,151 -1217654,1630052833,8204948,2,63,1.0,2,1.0,1,10000.0,1001264,3.0,151 -1217655,1630052834,8204230,2,60,1.0,2,1.0,1,32200.0,1042852,3.0,151 -1217656,1630052835,8204182,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,151 -1217657,1630052836,8204239,2,68,-9.0,2,1.0,1,127300.0,1009585,1.0,151 -1217658,1630052837,8204890,2,62,-9.0,2,1.0,1,41800.0,1009585,7.0,151 -1217659,1630052838,8203904,2,45,5.0,6,1.0,1,28100.0,1009585,3.0,151 -1217660,1630052839,8204649,2,42,-9.0,1,1.0,1,40000.0,1042852,4.0,151 -1217661,1630052840,8204960,2,42,4.0,8,1.0,1,5280.0,1001264,3.0,151 -1217662,1630052841,8204690,2,49,9.0,12,1.0,1,46500.0,1001264,1.0,151 -1217663,1630052842,8203088,2,63,1.0,4,1.0,1,100000.0,1073094,3.0,151 -1217664,1630052843,8202604,2,54,-9.0,3,2.0,1,101400.0,1009585,1.0,151 -1217665,1630052844,8203467,2,52,-9.0,3,3.0,1,123000.0,1025215,2.0,151 -1217666,1630052845,8203182,2,50,-9.0,4,0.0,1,78000.0,1042852,1.0,151 -1217667,1630052846,8202781,2,50,-9.0,4,0.0,1,78000.0,1042852,1.0,151 -1217668,1630052847,8203294,2,59,-9.0,3,0.0,1,82600.0,1009585,3.0,151 -1217669,1630052848,8204021,2,84,-9.0,4,1.0,1,241900.0,1042852,1.0,151 -1217670,1630052849,8204438,2,65,-9.0,4,1.0,1,107500.0,1009585,1.0,151 -1217671,1630052850,8203731,2,84,-9.0,4,1.0,1,241900.0,1042852,1.0,151 -1217672,1630052851,8203330,2,65,-9.0,3,1.0,1,107500.0,1009585,1.0,151 -1217673,1630052852,8203244,2,84,-9.0,4,1.0,1,241900.0,1042852,1.0,151 -1217674,1630052853,8203721,2,84,-9.0,4,1.0,1,241900.0,1042852,1.0,151 -1217675,1630052854,8203646,2,84,-9.0,4,1.0,1,241900.0,1042852,1.0,151 -1217676,1630052855,8204491,2,84,-9.0,4,1.0,1,241900.0,1042852,1.0,151 -1217677,1630052856,8204473,2,84,-9.0,4,1.0,1,241900.0,1042852,1.0,151 -1217678,1630052857,8203591,2,84,-9.0,4,1.0,1,241900.0,1042852,1.0,151 -1217679,1630052858,8203247,2,75,-9.0,2,0.0,1,185800.0,1009585,3.0,151 -1217680,1630052859,8203494,2,76,-9.0,4,2.0,1,113300.0,1001264,3.0,151 -1217681,1630052860,8203195,2,76,-9.0,4,2.0,1,113300.0,1001264,3.0,151 -1217682,1630052861,8202791,2,87,-9.0,3,0.0,1,136700.0,1042852,3.0,151 -1217683,1630052862,8203480,2,87,-9.0,3,0.0,1,52200.0,1009585,3.0,151 -1217684,1630052863,8203960,2,65,-9.0,4,1.0,1,84400.0,1073094,3.0,151 -1217685,1630052864,8204402,2,85,-9.0,4,0.0,1,66700.0,1009585,7.0,151 -1217686,1630052865,8202755,2,85,-9.0,4,0.0,1,66700.0,1009585,7.0,151 -1217687,1630052866,8203664,2,38,2.0,3,1.0,1,131004.0,1001264,3.0,151 -1217688,1630052867,8202866,2,38,2.0,4,1.0,1,131004.0,1001264,3.0,151 -1217689,1630052868,8204067,2,38,2.0,6,2.0,1,122500.0,1042852,3.0,151 -1217690,1630052869,8203503,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,151 -1217691,1630052870,8203673,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,151 -1217692,1630052871,8203475,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,151 -1217693,1630052872,8203472,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,151 -1217694,1630052873,8202903,2,44,2.0,6,0.0,1,30400.0,1073094,3.0,151 -1217695,1630052874,8203375,2,44,2.0,6,0.0,1,30400.0,1073094,3.0,151 -1217696,1630052875,8204143,2,44,2.0,6,0.0,1,30400.0,1073094,3.0,151 -1217697,1630052876,8203624,2,40,4.0,6,2.0,1,63000.0,1009585,2.0,151 -1217698,1630052877,8204128,2,40,4.0,6,2.0,1,63000.0,1009585,2.0,151 -1217699,1630052878,8203508,2,35,3.0,4,0.0,1,8700.0,1009585,3.0,151 -1217700,1630052879,8203944,2,38,2.0,4,0.0,1,0.0,1025215,3.0,151 -1217701,1630052880,8203247,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,151 -1217702,1630052881,8204121,2,39,2.0,3,0.0,1,9000.0,1025215,3.0,151 -1217703,1630052882,8202866,2,80,-9.0,5,2.0,1,104070.0,1001264,2.0,151 -1217704,1630052883,8204171,2,80,-9.0,6,2.0,1,104070.0,1001264,2.0,151 -1217705,1630052884,8203247,2,80,-9.0,6,2.0,1,104070.0,1001264,2.0,151 -1217706,1630052885,8203460,2,80,-9.0,6,2.0,1,104070.0,1001264,2.0,151 -1217707,1630052886,8203424,2,44,-9.0,4,0.0,1,24000.0,1042852,3.0,151 -1217708,1630052887,8203564,2,38,2.0,6,2.0,1,122500.0,1042852,3.0,151 -1217709,1630052888,8203460,2,69,-9.0,2,0.0,1,183100.0,1042852,1.0,151 -1217710,1630052889,8203819,2,25,5.0,6,1.0,1,16700.0,1073094,3.0,151 -1217711,1630052890,8203507,2,68,-9.0,2,0.0,1,53700.0,1025215,3.0,151 -1217712,1630052891,8203376,2,65,-9.0,4,1.0,1,107500.0,1009585,1.0,151 -1217713,1630052892,8203876,2,67,-9.0,2,0.0,1,60300.0,1009585,7.0,151 -1217714,1630052893,8203846,2,44,2.0,6,0.0,1,30400.0,1073094,3.0,151 -1217715,1630052894,8199911,2,60,-9.0,3,2.0,1,61200.0,1073094,3.0,151 -1217716,1630052895,8204194,2,26,3.0,6,0.0,1,30700.0,1009585,3.0,151 -1217717,1630052896,8203406,2,76,-9.0,3,3.0,1,92000.0,1001264,3.0,151 -1217718,1630052897,8203837,2,87,-9.0,3,0.0,1,136700.0,1042852,3.0,151 -1217719,1630052898,8204171,2,75,-9.0,2,0.0,1,185800.0,1009585,3.0,151 -1217720,1630052899,8204011,2,85,-9.0,4,0.0,1,66700.0,1009585,7.0,151 -1217721,1630052900,8202727,2,38,2.0,4,1.0,1,131004.0,1001264,3.0,151 -1217722,1630052901,8204234,2,68,-9.0,2,1.0,1,127300.0,1009585,1.0,151 -1217723,1630052902,8203762,2,59,-9.0,3,0.0,1,82600.0,1009585,3.0,151 -1217724,1630052903,8203800,2,65,3.0,6,0.0,1,6100.0,1073094,1.0,151 -1217725,1630052904,8203728,2,30,2.0,4,1.0,1,80400.0,1042852,3.0,151 -1217726,1630052905,8204297,2,93,-9.0,3,0.0,1,57300.0,1025215,3.0,151 -1217727,1630052906,8202653,2,51,2.0,4,1.0,1,102680.0,1009585,2.0,151 -1217728,1630052907,8203183,2,26,2.0,4,1.0,1,36800.0,1001264,3.0,151 -1217729,1630052908,8199914,2,48,-9.0,3,2.0,1,50200.0,1025215,3.0,151 -1217730,1630052909,8203026,2,87,-9.0,3,0.0,1,52200.0,1009585,3.0,151 -1217731,1630052910,8203214,2,48,-9.0,2,3.0,1,163200.0,1042852,3.0,151 -1217732,1630052911,8203377,2,56,1.0,4,2.0,1,144000.0,1009585,1.0,151 -1217733,1630052912,8204185,2,53,2.0,6,0.0,1,10860.0,1042852,1.0,151 -1217734,1630052913,8199924,2,74,-9.0,3,2.0,1,58050.0,1025215,1.0,151 -1217735,1630052914,8203943,2,31,2.0,3,1.0,1,12000.0,1009585,3.0,151 -1217736,1630052915,8203145,2,82,-9.0,3,2.0,1,30600.0,1001264,3.0,151 -1217737,1630052916,8203493,2,68,-9.0,4,1.0,1,137700.0,1025215,3.0,151 -1217738,1630052917,8902342,2,55,3.0,6,2.0,1,40000.0,1042852,1.0,151 -1217739,1630052918,8203327,2,46,-9.0,2,0.0,1,23400.0,1001264,1.0,151 -1217740,1630052919,8902341,2,53,-9.0,4,1.0,1,66800.0,1009585,3.0,151 -1217741,1630052920,8202727,2,37,3.0,4,1.0,1,2600.0,1009585,3.0,151 -1217742,1630052921,8204505,2,73,1.0,3,1.0,1,100500.0,1001264,2.0,151 -1217743,1630052922,8203325,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,151 -1217744,1630052923,8204214,2,39,1.0,3,0.0,1,14000.0,1001264,3.0,151 -1217745,1630052924,8204183,2,75,-9.0,2,2.0,1,104000.0,1001264,1.0,151 -1217746,1630052925,8203455,2,88,-9.0,3,1.0,1,71200.0,1025215,2.0,151 -1217747,1630052926,8203372,2,73,1.0,4,2.0,1,46100.0,1042852,1.0,151 -1217748,1630052927,8202323,2,50,1.0,3,3.0,1,175140.0,1025215,3.0,151 -1217749,1630052928,8202467,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,151 -1217750,1630052929,8202295,2,43,1.0,4,2.0,1,146950.0,1009585,1.0,151 -1217751,1630052930,8202074,2,37,2.0,5,1.0,1,39000.0,1073094,1.0,151 -1217752,1630052931,8196914,2,36,2.0,4,2.0,1,39400.0,1042852,3.0,151 -1217753,1630052932,8198315,2,36,2.0,4,2.0,1,39400.0,1042852,3.0,151 -1217754,1630052933,8200681,2,40,3.0,6,1.0,1,35000.0,1001264,1.0,151 -1217755,1630052934,8195728,2,40,3.0,6,1.0,1,35000.0,1001264,1.0,151 -1217756,1630052935,8199376,2,38,1.0,3,2.0,1,51200.0,1025215,1.0,151 -1217757,1630052936,8197226,2,39,2.0,5,2.0,1,43200.0,1025215,2.0,151 -1217758,1630052937,8199748,2,44,2.0,4,2.0,1,60000.0,1001264,2.0,151 -1217759,1630052938,8198356,2,44,2.0,4,2.0,1,60000.0,1001264,2.0,151 -1217760,1630052939,8201826,2,42,-9.0,2,3.0,1,75000.0,1073094,5.0,151 -1217761,1630052940,8202317,2,44,1.0,4,2.0,1,82800.0,1001264,1.0,151 -1217762,1630052941,8201134,2,35,3.0,4,1.0,1,20000.0,1073094,3.0,151 -1217763,1630052942,8193497,2,36,3.0,4,1.0,1,25700.0,1009585,3.0,151 -1217764,1630052943,8197612,2,41,3.0,5,2.0,1,28000.0,1025215,1.0,151 -1217765,1630052944,8202488,2,42,1.0,6,0.0,1,22170.0,1042852,3.0,151 -1217766,1630052945,8203133,2,42,1.0,6,0.0,1,22170.0,1042852,3.0,151 -1217767,1630052946,8195491,2,44,1.0,3,1.0,1,12200.0,1025215,1.0,151 -1217768,1630052947,8196613,2,73,1.0,4,2.0,1,46100.0,1042852,1.0,151 -1217769,1630052948,8200590,2,76,-9.0,2,2.0,1,49600.0,1001264,1.0,151 -1217770,1630052949,8198397,2,80,-9.0,4,1.0,1,39200.0,1073094,3.0,151 -1217771,1630052950,8198468,2,66,-9.0,4,2.0,1,30600.0,1009585,2.0,151 -1217772,1630052951,8198446,2,66,-9.0,4,2.0,1,30600.0,1009585,2.0,151 -1217773,1630052952,8199905,2,88,-9.0,2,2.0,1,31000.0,1009585,3.0,151 -1217774,1630052953,8196995,2,77,-9.0,1,0.0,1,8800.0,1025215,4.0,151 -1217775,1630052954,8197050,2,83,-9.0,1,0.0,1,7200.0,1073094,4.0,151 -1217776,1630052955,8201886,2,75,-9.0,1,1.0,1,11400.0,1073094,6.0,151 -1217777,1630052956,8197869,2,80,-9.0,1,1.0,1,8900.0,1009585,4.0,151 -1217778,1630052957,8198261,2,90,-9.0,2,0.0,1,24700.0,1073094,3.0,151 -1217779,1630052958,8201714,2,76,-9.0,2,1.0,1,10000.0,1025215,3.0,151 -1217780,1630052959,8200567,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,151 -1217781,1630052960,8915403,2,30,3.0,4,0.0,1,0.0,1073094,3.0,151 -1217782,1630052961,8915404,2,37,2.0,4,1.0,1,7800.0,1009585,1.0,151 -1217783,1630052962,8902322,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,151 -1217784,1630052963,8902322,2,27,2.0,4,1.0,1,23000.0,1009585,2.0,151 -1217785,1630052964,8902322,2,27,2.0,4,1.0,1,23000.0,1009585,2.0,151 -1217786,1630052965,8196523,2,27,2.0,4,1.0,1,23000.0,1009585,2.0,151 -1217787,1630052966,8201758,2,50,-9.0,4,2.0,1,43680.0,1073094,1.0,151 -1217788,1630052967,8196796,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,151 -1217789,1630052968,8196523,2,60,-9.0,1,1.0,1,36000.0,1001264,4.0,151 -1217790,1630052969,8199365,2,48,-9.0,1,1.0,1,30000.0,1073094,4.0,151 -1217791,1630052970,8201244,2,51,-9.0,2,1.0,1,42900.0,1025215,3.0,151 -1217792,1630052971,8195416,2,60,-9.0,2,2.0,1,40700.0,1001264,1.0,151 -1217793,1630052972,8197275,2,50,-9.0,4,1.0,1,37500.0,1042852,7.0,151 -1217794,1630052973,8915411,2,54,-9.0,4,0.0,1,14900.0,1025215,3.0,151 -1217795,1630052974,8200414,2,47,2.0,4,0.0,1,24600.0,1042852,2.0,151 -1217796,1630052975,8201196,2,47,2.0,4,0.0,1,24600.0,1042852,2.0,151 -1217797,1630052976,8201385,2,47,1.0,4,1.0,1,21300.0,1001264,3.0,151 -1217798,1630052977,8196523,2,62,-9.0,1,0.0,1,16200.0,1009585,4.0,151 -1217799,1630052978,8902322,2,64,-9.0,1,0.0,1,12600.0,1001264,4.0,151 -1217800,1630052979,8200853,2,49,-9.0,1,0.0,1,0.0,1025215,4.0,151 -1217801,1630052980,8915402,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,151 -1217802,1630052981,8902322,2,59,-9.0,1,0.0,1,8100.0,1073094,4.0,151 -1217803,1630052982,8196523,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,151 -1217804,1630052983,8196796,2,53,-9.0,1,0.0,1,8400.0,1042852,6.0,151 -1217805,1630052984,8196796,2,58,-9.0,1,0.0,1,8700.0,1009585,4.0,151 -1217806,1630052985,8196523,2,64,-9.0,1,0.0,1,12300.0,1042852,4.0,151 -1217807,1630052986,8902322,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,151 -1217808,1630052987,8196523,2,64,-9.0,1,0.0,1,24700.0,1001264,4.0,151 -1217809,1630052988,8196523,2,53,-9.0,1,0.0,1,8300.0,1042852,4.0,151 -1217810,1630052989,8200354,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,151 -1217811,1630052990,8902322,2,57,-9.0,1,0.0,1,11000.0,1009585,4.0,151 -1217812,1630052991,8200163,2,51,-9.0,1,0.0,1,0.0,1025215,4.0,151 -1217813,1630052992,8902322,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,151 -1217814,1630052993,8198995,2,58,-9.0,1,0.0,1,8500.0,1025215,4.0,151 -1217815,1630052994,8196523,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,151 -1217816,1630052995,8902322,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,151 -1217817,1630052996,8196523,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,151 -1217818,1630052997,8902322,2,62,-9.0,1,0.0,1,1800.0,1001264,4.0,151 -1217819,1630052998,8198788,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,151 -1217820,1630052999,8902322,2,54,-9.0,1,0.0,1,10000.0,1001264,4.0,151 -1217821,1630053000,8196796,2,53,-9.0,1,1.0,1,16000.0,1025215,6.0,151 -1217822,1630053001,8902322,2,53,-9.0,1,1.0,1,13200.0,1025215,4.0,151 -1217823,1630053002,8196523,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,151 -1217824,1630053003,8198596,2,57,-9.0,3,0.0,1,8690.0,1042852,3.0,151 -1217825,1630053004,8196796,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,151 -1217826,1630053005,8201414,2,48,1.0,3,0.0,1,13600.0,1073094,3.0,151 -1217827,1630053006,8199691,2,59,-9.0,2,0.0,1,8650.0,1025215,3.0,151 -1217828,1630053007,8902322,2,55,-9.0,2,0.0,1,12770.0,1073094,7.0,151 -1217829,1630053008,8902322,2,59,-9.0,2,0.0,1,18300.0,1001264,7.0,151 -1217830,1630053009,8196796,2,58,-9.0,2,0.0,1,16310.0,1009585,1.0,151 -1217831,1630053010,8915405,2,61,-9.0,2,0.0,1,12700.0,1042852,1.0,151 -1217832,1630053011,8199722,2,55,-9.0,2,0.0,1,0.0,1025215,5.0,151 -1217833,1630053012,8196796,2,58,-9.0,2,0.0,1,16310.0,1009585,1.0,151 -1217834,1630053013,8902322,2,51,1.0,2,0.0,1,3100.0,1073094,2.0,151 -1217835,1630053014,8196796,2,53,1.0,2,0.0,1,12000.0,1025215,2.0,151 -1217836,1630053015,8196796,2,55,-9.0,2,1.0,1,28600.0,1009585,1.0,151 -1217837,1630053016,8200756,2,61,-9.0,2,1.0,1,2800.0,1001264,1.0,151 -1217838,1630053017,8193522,2,53,1.0,4,1.0,1,5800.0,1073094,3.0,151 -1217839,1630053018,8200840,2,53,2.0,4,2.0,1,20500.0,1042852,3.0,151 -1217840,1630053019,8902322,2,64,-9.0,1,0.0,1,15000.0,1025215,4.0,151 -1217841,1630053020,8197246,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,151 -1217842,1630053021,8196523,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,151 -1217843,1630053022,8196523,2,48,-9.0,1,0.0,1,12000.0,1001264,4.0,151 -1217844,1630053023,8902322,2,48,-9.0,1,0.0,1,12000.0,1001264,4.0,151 -1217845,1630053024,8201311,2,55,-9.0,1,0.0,1,8000.0,1009585,4.0,151 -1217846,1630053025,8902322,2,59,-9.0,1,1.0,1,2800.0,1001264,4.0,151 -1217847,1630053026,8902322,2,58,-9.0,1,1.0,1,13900.0,1073094,4.0,151 -1217848,1630053027,8902322,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,151 -1217849,1630053028,8197947,2,46,-9.0,2,0.0,1,4200.0,1025215,3.0,151 -1217850,1630053029,8902313,2,55,-9.0,2,1.0,1,9800.0,1042852,3.0,151 -1217851,1630053030,8200065,2,55,-9.0,2,1.0,1,25000.0,1042852,3.0,151 -1217852,1630053031,8196523,2,53,-9.0,2,5.0,1,29200.0,1042852,1.0,151 -1217853,1630053032,8196796,2,70,-9.0,1,0.0,1,10800.0,1009585,4.0,151 -1217854,1630053033,8196523,2,72,-9.0,1,0.0,1,18830.0,1001264,6.0,151 -1217855,1630053034,8196523,2,87,-9.0,1,0.0,1,7200.0,1042852,6.0,151 -1217856,1630053035,8902322,2,70,-9.0,1,0.0,1,25004.0,1073094,4.0,151 -1217857,1630053036,8902322,2,69,-9.0,1,0.0,1,7200.0,1042852,4.0,151 -1217858,1630053037,8902322,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,151 -1217859,1630053038,8196523,2,76,-9.0,1,0.0,1,4101.0,1001264,4.0,151 -1217860,1630053039,8196523,2,79,-9.0,1,0.0,1,13600.0,1001264,4.0,151 -1217861,1630053040,8196523,2,67,-9.0,1,0.0,1,9600.0,1001264,4.0,151 -1217862,1630053041,8196523,2,79,-9.0,1,0.0,1,18000.0,1025215,4.0,151 -1217863,1630053042,8195416,2,69,-9.0,1,0.0,1,23200.0,1009585,4.0,151 -1217864,1630053043,8196523,2,70,-9.0,1,0.0,1,25004.0,1073094,4.0,151 -1217865,1630053044,8200334,2,83,-9.0,1,1.0,1,21900.0,1042852,4.0,151 -1217866,1630053045,8196523,2,77,-9.0,1,1.0,1,15100.0,1042852,4.0,151 -1217867,1630053046,8196796,2,67,-9.0,1,1.0,1,9500.0,1042852,6.0,151 -1217868,1630053047,8198275,2,65,3.0,6,0.0,1,6100.0,1073094,1.0,151 -1217869,1630053048,8199376,2,72,-9.0,2,0.0,1,10420.0,1009585,3.0,151 -1217870,1630053049,8199376,2,72,-9.0,2,0.0,1,10420.0,1009585,3.0,151 -1217871,1630053050,8199376,2,72,-9.0,2,0.0,1,10420.0,1009585,3.0,151 -1217872,1630053051,8201721,2,78,2.0,4,0.0,1,23900.0,1042852,3.0,151 -1217873,1630053052,8201764,2,85,-9.0,4,0.0,1,66700.0,1009585,7.0,151 -1217874,1630053053,8198788,2,77,-9.0,2,2.0,1,1300.0,1025215,3.0,151 -1217875,1630053054,8202959,2,67,-9.0,2,1.0,1,33600.0,1073094,2.0,151 -1217876,1630053055,8201721,2,41,1.0,3,2.0,1,75300.0,1073094,1.0,151 -1217877,1630053056,8200178,4,56,1.0,4,0.0,1,58500.0,1025215,1.0,151 -1217878,1630053057,8198693,2,39,2.0,5,2.0,1,43200.0,1025215,2.0,151 -1217879,1630053058,8201702,2,51,4.0,5,0.0,1,1920.0,1025215,3.0,151 -1217880,1630053059,8201941,2,67,-9.0,3,2.0,1,51900.0,1073094,1.0,151 -1217881,1630053060,8200757,2,45,5.0,6,1.0,1,28100.0,1009585,3.0,151 -1217882,1630053061,8902322,2,52,-9.0,2,0.0,1,12160.0,1001264,7.0,151 -1217883,1630053062,8203013,2,79,-9.0,3,2.0,1,18000.0,1073094,2.0,151 -1217884,1630053063,8202689,2,35,3.0,4,0.0,1,8700.0,1009585,3.0,151 -1217885,1630053064,8902322,2,47,1.0,2,1.0,1,18000.0,1073094,3.0,151 -1217886,1630053065,8195399,2,41,2.0,4,2.0,1,104000.0,1073094,1.0,151 -1217887,1630053066,8202654,2,68,3.0,4,0.0,1,12000.0,1073094,3.0,151 -1217888,1630053067,8199281,2,53,1.0,4,1.0,1,5800.0,1073094,3.0,151 -1217889,1630053068,8200178,2,49,2.0,3,0.0,1,7000.0,1009585,3.0,151 -1217890,1630053069,8200080,2,73,-9.0,2,1.0,1,23600.0,1073094,3.0,151 -1217891,1630053070,8202397,2,44,1.0,4,2.0,1,82800.0,1001264,1.0,151 -1217892,1630053071,8200885,2,65,3.0,6,0.0,1,6100.0,1073094,1.0,151 -1217893,1630053072,8201960,2,34,3.0,5,1.0,1,28500.0,1009585,3.0,151 -1217894,1630053073,8197325,2,55,-9.0,6,1.0,1,37900.0,1042852,3.0,151 -1217895,1630053074,8195848,2,52,-9.0,3,2.0,1,72500.0,1009585,1.0,151 -1217896,1630053075,8196523,2,56,-9.0,4,1.0,1,8100.0,1073094,2.0,151 -1217897,1630053076,8202252,4,29,3.0,5,3.0,1,7200.0,1073094,1.0,151 -1217898,1630053077,8196132,2,45,3.0,4,1.0,1,43000.0,1001264,2.0,151 -1217899,1630053078,8902322,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,151 -1217900,1630053079,8196523,2,74,-9.0,1,0.0,1,12000.0,1009585,6.0,151 -1217901,1630053080,8200638,2,47,3.0,5,2.0,1,37100.0,1009585,3.0,151 -1217902,1630053081,8196523,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,151 -1217903,1630053082,8202315,2,54,1.0,4,3.0,1,32100.0,1042852,3.0,151 -1217904,1630053083,8201045,2,54,2.0,6,2.0,1,51300.0,1009585,1.0,151 -1217905,1630053084,8902322,2,54,-9.0,3,2.0,1,39800.0,1073094,5.0,151 -1217906,1630053085,8199069,2,47,2.0,4,0.0,1,24600.0,1042852,2.0,151 -1217907,1630053086,8199767,2,37,4.0,5,1.0,1,4000.0,1001264,3.0,151 -1217908,1630053087,8202720,2,58,1.0,3,1.0,1,23160.0,1025215,1.0,151 -1217909,1630053088,8201735,2,53,-9.0,1,0.0,1,9600.0,1001264,4.0,151 -1217910,1630053089,8200159,2,58,1.0,5,2.0,1,80300.0,1001264,3.0,151 -1217911,1630053090,8199495,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,151 -1217912,1630053091,8201093,2,66,-9.0,4,2.0,1,30600.0,1009585,2.0,151 -1217913,1630053092,8202917,2,34,4.0,5,1.0,1,0.0,1009585,3.0,151 -1217914,1630053093,8198995,2,41,1.0,2,0.0,1,9700.0,1009585,3.0,151 -1217915,1630053094,8196523,2,58,-9.0,1,0.0,1,9680.0,1073094,4.0,151 -1217916,1630053095,8202079,2,61,-9.0,2,0.0,1,12700.0,1042852,1.0,151 -1217917,1630053096,8200354,2,35,2.0,4,1.0,1,48900.0,1042852,2.0,151 -1217918,1630053097,8196796,2,61,-9.0,2,0.0,1,31400.0,1042852,2.0,151 -1217919,1630053098,8200129,2,57,-9.0,4,0.0,1,60000.0,1042852,1.0,151 -1217920,1630053099,8201913,2,63,2.0,4,2.0,1,57000.0,1073094,1.0,151 -1217921,1630053100,8201970,2,94,-9.0,1,1.0,1,43000.0,1073094,4.0,151 -1217922,1630053101,8197171,2,43,4.0,6,1.0,1,5900.0,1025215,3.0,151 -1217923,1630053102,8195471,2,56,-9.0,3,2.0,1,51700.0,1025215,3.0,151 -1217924,1630053103,8197402,2,37,2.0,3,1.0,1,28200.0,1042852,3.0,151 -1217925,1630053104,8198736,2,57,-9.0,3,0.0,1,8690.0,1042852,3.0,151 -1217926,1630053105,8196796,2,46,1.0,2,2.0,1,51200.0,1025215,3.0,151 -1217927,1630053106,8202732,2,83,-9.0,2,0.0,1,21590.0,1001264,3.0,151 -1217928,1630053107,8200621,2,53,2.0,4,2.0,1,20500.0,1042852,3.0,151 -1217929,1630053108,8200080,2,45,-9.0,1,1.0,1,36000.0,1009585,4.0,151 -1217930,1630053109,8199233,2,38,1.0,3,1.0,1,16200.0,1001264,1.0,151 -1217931,1630053110,8196523,2,57,-9.0,2,1.0,1,26100.0,1001264,3.0,151 -1217932,1630053111,8196523,2,49,-9.0,4,0.0,1,46100.0,1009585,1.0,151 -1217933,1630053112,8201721,2,44,2.0,3,2.0,1,80000.0,1009585,2.0,151 -1217934,1630053113,8197420,4,50,2.0,4,2.0,1,95000.0,1042852,1.0,151 -1217935,1630053114,8201766,2,39,-9.0,2,0.0,1,580.0,1025215,2.0,151 -1217936,1630053115,8199589,2,40,1.0,2,1.0,1,22400.0,1042852,3.0,151 -1217937,1630053116,8902313,2,45,-9.0,1,1.0,1,81000.0,1009585,4.0,151 -1217938,1630053117,8200098,2,54,-9.0,2,1.0,1,18400.0,1073094,3.0,151 -1217939,1630053118,8199937,2,47,1.0,4,1.0,1,21300.0,1001264,3.0,151 -1217940,1630053119,8200048,2,45,-9.0,1,1.0,1,22000.0,1073094,4.0,151 -1217941,1630053120,8200527,2,71,-9.0,3,3.0,1,29100.0,1025215,1.0,151 -1217942,1630053121,8197803,2,32,1.0,3,0.0,1,33000.0,1073094,1.0,151 -1217943,1630053122,8199376,2,90,-9.0,2,0.0,1,30900.0,1009585,7.0,151 -1217944,1630053123,8195084,1,30,2.0,4,4.0,1,15600.0,1009585,1.0,151 -1217945,1630053124,8198185,2,87,1.0,4,1.0,1,80600.0,1001264,2.0,151 -1217946,1630053125,8199416,2,44,1.0,3,0.0,1,170.0,1009585,3.0,151 -1217947,1630053126,8202115,2,89,3.0,5,2.0,1,93000.0,1073094,2.0,151 -1217948,1630053127,8198571,2,64,-9.0,2,2.0,1,56600.0,1025215,1.0,151 -1217949,1630053128,8200480,2,43,1.0,2,1.0,1,34800.0,1001264,3.0,151 -1217950,1630053129,8200829,2,42,2.0,4,1.0,1,87000.0,1009585,3.0,151 -1217951,1630053130,8201926,2,35,-9.0,1,2.0,1,15000.0,1042852,4.0,151 -1217952,1630053131,8199954,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,151 -1217953,1630053132,8195574,2,66,2.0,6,1.0,1,57400.0,1073094,1.0,151 -1217954,1630053133,8196494,2,71,1.0,4,1.0,1,4500.0,1009585,3.0,151 -1217955,1630053134,8199960,2,42,-9.0,1,1.0,1,43000.0,1025215,4.0,151 -1217956,1630053135,8199796,2,36,4.0,5,0.0,1,13000.0,1042852,3.0,151 -1217957,1630053136,8198647,2,36,2.0,5,0.0,1,23680.0,1001264,3.0,151 -1217958,1630053137,8196572,2,60,1.0,4,3.0,1,80800.0,1025215,1.0,151 -1217959,1630053138,8199197,2,34,-9.0,1,1.0,1,8920.0,1009585,4.0,151 -1217960,1630053139,8203056,2,85,-9.0,3,2.0,1,96700.0,1001264,1.0,151 -1217961,1630053140,8201574,2,74,-9.0,2,2.0,1,32600.0,1042852,3.0,151 -1217962,1630053141,8201196,2,45,-9.0,3,1.0,1,11000.0,1042852,3.0,151 -1217963,1630053142,8199937,2,52,-9.0,1,1.0,1,7000.0,1025215,4.0,151 -1217964,1630053143,8197481,2,32,3.0,6,1.0,1,19200.0,1073094,1.0,151 -1217965,1630053144,8199281,2,87,-9.0,3,0.0,1,12200.0,1001264,3.0,151 -1217966,1630053145,8201236,2,42,1.0,2,2.0,1,72000.0,1042852,3.0,151 -1217967,1630053146,8198326,2,46,-9.0,2,1.0,1,63000.0,1025215,3.0,151 -1217968,1630053147,8195431,2,34,4.0,5,1.0,1,0.0,1042852,3.0,151 -1217969,1630053148,8196676,2,44,1.0,4,1.0,1,33790.0,1009585,3.0,151 -1217970,1630053149,8201322,2,27,-9.0,2,0.0,1,33000.0,1009585,1.0,151 -1217971,1630053150,8202863,2,36,3.0,6,1.0,1,31330.0,1001264,1.0,151 -1217972,1630053151,8902322,2,31,1.0,2,1.0,1,22900.0,1042852,2.0,151 -1217973,1630053152,8202161,2,43,-9.0,2,2.0,1,53320.0,1001264,2.0,151 -1217974,1630053153,8196523,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,151 -1217975,1630053154,8196523,2,34,-9.0,1,1.0,1,36000.0,1042852,6.0,151 -1217976,1630053155,8193522,2,54,-9.0,2,0.0,1,19000.0,1001264,1.0,151 -1217977,1630053156,8200943,2,65,-9.0,4,1.0,1,84400.0,1073094,3.0,151 -1217978,1630053157,8196523,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,151 -1217979,1630053158,8200471,2,94,-9.0,2,1.0,1,33000.0,1042852,3.0,151 -1217980,1630053159,8196523,2,53,1.0,2,0.0,1,0.0,1042852,3.0,151 -1217981,1630053160,8200277,2,40,1.0,2,0.0,1,9800.0,1042852,2.0,151 -1217982,1630053161,8194875,2,54,3.0,5,1.0,1,31000.0,1001264,3.0,151 -1217983,1630053162,8200259,2,45,1.0,4,3.0,1,22900.0,1025215,3.0,151 -1217984,1630053163,8196744,2,44,-9.0,1,0.0,1,4600.0,1009585,4.0,151 -1217985,1630053164,8195307,2,41,-9.0,1,2.0,1,40000.0,1025215,6.0,151 -1217986,1630053165,8196244,2,40,1.0,4,0.0,1,18200.0,1042852,3.0,151 -1217987,1630053166,8201699,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,151 -1217988,1630053167,8199151,2,56,-9.0,1,2.0,1,45000.0,1001264,4.0,151 -1217989,1630053168,8193557,2,70,1.0,3,2.0,1,27600.0,1073094,3.0,151 -1217990,1630053169,8196523,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,151 -1217991,1630053170,8202611,2,42,-9.0,1,2.0,1,8600.0,1009585,4.0,151 -1217992,1630053171,8197048,2,73,1.0,4,2.0,1,46100.0,1042852,1.0,151 -1217993,1630053172,8199742,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,151 -1217994,1630053173,8201492,2,50,-9.0,4,0.0,1,78000.0,1042852,1.0,151 -1217995,1630053174,8197743,2,69,-9.0,1,1.0,1,37000.0,1001264,4.0,151 -1217996,1630053175,8203211,2,42,1.0,6,0.0,1,22170.0,1042852,3.0,151 -1217997,1630053176,8196796,2,36,-9.0,2,0.0,1,8100.0,1073094,7.0,151 -1217998,1630053177,8199495,2,67,-9.0,2,2.0,1,69551.0,1009585,3.0,151 -1217999,1630053178,8200553,2,60,-9.0,1,1.0,1,36000.0,1042852,4.0,151 -1218000,1630053179,8202710,2,77,-9.0,1,1.0,1,0.0,1042852,6.0,151 -1218001,1630053180,8202455,2,78,2.0,5,0.0,1,35300.0,1042852,3.0,151 -1218002,1630053181,8198472,2,57,1.0,3,2.0,1,17500.0,1001264,3.0,151 -1218003,1630053182,8201841,2,67,-9.0,6,3.0,1,94300.0,1073094,3.0,151 -1218004,1630053183,8200839,2,77,-9.0,2,2.0,1,8400.0,1025215,2.0,151 -1218005,1630053184,8200151,2,54,-9.0,2,2.0,1,28000.0,1025215,1.0,151 -1218006,1630053185,8201385,2,52,-9.0,1,1.0,1,0.0,1042852,4.0,151 -1218007,1630053186,8200342,2,54,-9.0,4,0.0,1,14900.0,1025215,3.0,151 -1218008,1630053187,8199627,4,49,-9.0,1,0.0,1,9990.0,1025215,4.0,151 -1218009,1630053188,8200638,2,50,-9.0,4,2.0,1,43680.0,1073094,1.0,151 -1218010,1630053189,8200872,2,75,-9.0,2,1.0,1,9300.0,1001264,2.0,151 -1218011,1630053190,8195416,2,62,1.0,3,1.0,1,15170.0,1042852,1.0,151 -1218012,1630053191,8198623,2,77,1.0,6,3.0,1,85930.0,1001264,3.0,151 -1218013,1630053192,8201435,2,88,-9.0,2,2.0,1,31000.0,1009585,3.0,151 -1218014,1630053193,8200529,2,84,-9.0,4,3.0,1,75200.0,1073094,1.0,151 -1218015,1630053194,8200224,2,40,4.0,6,2.0,1,63000.0,1009585,2.0,151 -1218016,1630053195,8902313,2,80,-9.0,6,2.0,1,104070.0,1001264,2.0,151 -1218017,1630053196,8202204,2,55,-9.0,4,2.0,1,58500.0,1025215,1.0,151 -1218018,1630053197,8198349,2,41,3.0,5,2.0,1,28000.0,1025215,1.0,151 -1218019,1630053198,8200198,2,47,-9.0,2,2.0,1,51600.0,1042852,1.0,151 -1218020,1630053199,8200498,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,151 -1218021,1630053200,8199074,2,44,-9.0,4,0.0,1,24000.0,1042852,3.0,151 -1218022,1630053201,8196520,2,55,1.0,4,0.0,1,11500.0,1042852,1.0,151 -1218023,1630053202,8196523,2,57,-9.0,1,0.0,1,38400.0,1073094,4.0,151 -1218024,1630053203,8197509,2,73,1.0,6,2.0,1,78140.0,1025215,3.0,151 -1218025,1630053204,8199151,2,42,-9.0,4,3.0,1,0.0,1009585,1.0,151 -1218026,1630053205,8179573,2,38,2.0,4,2.0,1,100000.0,1073094,1.0,156 -1218027,1630053206,8182115,1,41,3.0,6,3.0,1,257400.0,1009585,1.0,156 -1218028,1630053207,8183643,1,37,-9.0,2,4.0,1,153000.0,1009585,5.0,156 -1218029,1630053208,8182345,2,30,-9.0,1,1.0,1,8000.0,1025215,4.0,156 -1218030,1630053209,8175517,1,45,-9.0,1,1.0,1,128000.0,1009585,4.0,153 -1218031,1630053210,8178823,2,48,2.0,4,4.0,1,153820.0,1025215,1.0,156 -1218032,1630053211,8167002,2,60,-9.0,2,2.0,1,142000.0,1001264,1.0,153 -1218033,1630053212,8183363,1,48,-9.0,2,2.0,1,100060.0,1001264,5.0,156 -1218034,1630053213,8183429,2,60,-9.0,1,2.0,1,36000.0,1073094,6.0,156 -1218035,1630053214,8181849,2,64,-9.0,1,1.0,1,30000.0,1042852,4.0,156 -1218036,1630053215,8180877,2,54,-9.0,1,1.0,1,60000.0,1042852,6.0,156 -1218037,1630053216,8184589,2,54,-9.0,1,1.0,1,70000.0,1009585,4.0,156 -1218038,1630053217,8169751,2,58,-9.0,1,0.0,1,17600.0,1001264,6.0,153 -1218039,1630053218,8173313,2,63,-9.0,1,0.0,1,28800.0,1042852,6.0,153 -1218040,1630053219,8183556,2,63,-9.0,1,0.0,1,12000.0,1009585,4.0,156 -1218041,1630053220,8177442,2,63,-9.0,1,0.0,1,12000.0,1009585,4.0,156 -1218042,1630053221,8182917,2,58,-9.0,1,0.0,1,0.0,1001264,4.0,156 -1218043,1630053222,8182417,2,46,-9.0,1,0.0,1,12000.0,1025215,4.0,156 -1218044,1630053223,8180079,2,46,-9.0,1,0.0,1,12000.0,1025215,4.0,156 -1218045,1630053224,8180437,2,63,-9.0,1,0.0,1,12000.0,1009585,4.0,156 -1218046,1630053225,8902293,2,46,-9.0,1,0.0,1,12000.0,1025215,4.0,156 -1218047,1630053226,8182275,2,61,-9.0,1,0.0,1,14400.0,1073094,6.0,156 -1218048,1630053227,8184372,1,49,-9.0,1,0.0,1,8500.0,1025215,6.0,156 -1218049,1630053228,8184688,2,46,-9.0,1,1.0,1,0.0,1025215,4.0,156 -1218050,1630053229,8175517,2,53,-9.0,1,1.0,1,4100.0,1025215,4.0,153 -1218051,1630053230,8179911,2,52,-9.0,1,1.0,1,1200.0,1009585,4.0,156 -1218052,1630053231,8182151,2,52,-9.0,1,1.0,1,1200.0,1009585,4.0,156 -1218053,1630053232,8180357,2,54,-9.0,1,1.0,1,13700.0,1042852,6.0,156 -1218054,1630053233,8173026,2,46,-9.0,1,1.0,1,0.0,1025215,4.0,153 -1218055,1630053234,8175517,2,60,-9.0,1,1.0,1,14300.0,1001264,6.0,153 -1218056,1630053235,8179497,2,62,-9.0,1,1.0,1,25700.0,1009585,4.0,156 -1218057,1630053236,8167695,2,58,-9.0,1,1.0,1,8700.0,1009585,4.0,153 -1218058,1630053237,8178946,2,52,-9.0,1,1.0,1,1200.0,1009585,4.0,156 -1218059,1630053238,8166501,2,58,-9.0,1,1.0,1,8700.0,1009585,4.0,153 -1218060,1630053239,8178696,1,64,-9.0,1,1.0,1,9260.0,1001264,4.0,156 -1218061,1630053240,8183701,1,59,-9.0,1,1.0,1,11900.0,1001264,4.0,156 -1218062,1630053241,8176352,2,53,2.0,6,0.0,1,10860.0,1042852,1.0,156 -1218063,1630053242,8184644,2,55,-9.0,2,1.0,1,13700.0,1009585,1.0,156 -1218064,1630053243,8185439,2,45,1.0,2,1.0,1,0.0,1042852,3.0,156 -1218065,1630053244,8184859,2,47,-9.0,1,0.0,1,24000.0,1073094,4.0,156 -1218066,1630053245,8167828,2,47,-9.0,1,1.0,1,17500.0,1025215,4.0,153 -1218067,1630053246,8181480,2,50,-9.0,1,1.0,1,24000.0,1073094,4.0,156 -1218068,1630053247,8182268,2,57,-9.0,1,1.0,1,16000.0,1042852,4.0,156 -1218069,1630053248,8183785,2,94,-9.0,1,0.0,1,23100.0,1073094,6.0,156 -1218070,1630053249,8180380,2,83,-9.0,1,0.0,1,7200.0,1073094,4.0,156 -1218071,1630053250,8181143,2,68,-9.0,1,1.0,1,1500.0,1025215,4.0,156 -1218072,1630053251,8184006,2,65,-9.0,1,1.0,1,20100.0,1042852,4.0,156 -1218073,1630053252,8166751,2,68,-9.0,1,1.0,1,18000.0,1025215,4.0,153 -1218074,1630053253,8184094,2,87,-9.0,1,1.0,1,12700.0,1001264,6.0,156 -1218075,1630053254,8177999,2,81,-9.0,1,1.0,1,10000.0,1009585,6.0,156 -1218076,1630053255,8179460,1,34,2.0,4,2.0,1,178000.0,1009585,1.0,156 -1218077,1630053256,8182139,2,38,2.0,6,2.0,1,122500.0,1042852,3.0,156 -1218078,1630053257,8183953,2,38,2.0,6,2.0,1,122500.0,1042852,3.0,156 -1218079,1630053258,8169991,2,38,2.0,6,2.0,1,122500.0,1042852,3.0,153 -1218080,1630053259,8184070,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,156 -1218081,1630053260,8902339,2,43,-9.0,1,1.0,1,55000.0,1009585,6.0,153 -1218082,1630053261,8182980,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,156 -1218083,1630053262,8185770,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,156 -1218084,1630053263,8171764,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,153 -1218085,1630053264,8166751,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,153 -1218086,1630053265,8183953,2,30,3.0,4,0.0,1,0.0,1073094,3.0,156 -1218087,1630053266,8167234,2,37,2.0,3,1.0,1,7800.0,1009585,1.0,153 -1218088,1630053267,8182980,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,156 -1218089,1630053268,8171764,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,153 -1218090,1630053269,8171764,2,44,-9.0,1,0.0,1,50.0,1042852,4.0,153 -1218091,1630053270,8182980,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,156 -1218092,1630053271,8171764,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,153 -1218093,1630053272,8164976,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,153 -1218094,1630053273,8172622,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,153 -1218095,1630053274,8182980,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,156 -1218096,1630053275,8171764,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,153 -1218097,1630053276,8171764,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,153 -1218098,1630053277,8172622,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,153 -1218099,1630053278,8172622,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,153 -1218100,1630053279,8167316,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,153 -1218101,1630053280,8172622,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,153 -1218102,1630053281,8182980,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,156 -1218103,1630053282,8171764,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,153 -1218104,1630053283,8182980,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,156 -1218105,1630053284,8182980,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,156 -1218106,1630053285,8166049,2,43,-9.0,1,1.0,1,12000.0,1009585,4.0,153 -1218107,1630053286,8178921,2,40,-9.0,1,1.0,1,0.0,1001264,4.0,156 -1218108,1630053287,8165880,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,153 -1218109,1630053288,8171764,2,42,-9.0,1,1.0,1,0.0,1073094,4.0,153 -1218110,1630053289,8179858,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,156 -1218111,1630053290,8186095,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,156 -1218112,1630053291,8171764,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,153 -1218113,1630053292,8167695,2,43,-9.0,1,1.0,1,12000.0,1009585,4.0,153 -1218114,1630053293,8167029,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,153 -1218115,1630053294,8166466,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,153 -1218116,1630053295,8180700,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,156 -1218117,1630053296,8183883,2,38,6.0,8,0.0,1,12200.0,1042852,3.0,156 -1218118,1630053297,8184589,2,28,4.0,6,1.0,1,0.0,1042852,3.0,156 -1218119,1630053298,8173026,2,25,5.0,6,1.0,1,16700.0,1073094,3.0,153 -1218120,1630053299,8902293,2,25,5.0,6,1.0,1,16700.0,1073094,3.0,156 -1218121,1630053300,8178370,2,28,4.0,6,1.0,1,0.0,1042852,3.0,156 -1218122,1630053301,8172622,2,25,1.0,2,0.0,1,4800.0,1042852,3.0,153 -1218123,1630053302,8180384,2,35,1.0,2,0.0,1,7400.0,1073094,3.0,156 -1218124,1630053303,8172622,2,25,1.0,2,0.0,1,4800.0,1042852,3.0,153 -1218125,1630053304,8172622,2,25,1.0,2,0.0,1,4800.0,1042852,3.0,153 -1218126,1630053305,8181164,2,33,1.0,2,1.0,1,17000.0,1073094,3.0,156 -1218127,1630053306,8181164,2,33,1.0,2,1.0,1,17000.0,1073094,3.0,156 -1218128,1630053307,8179234,2,33,1.0,2,1.0,1,17000.0,1073094,3.0,156 -1218129,1630053308,8185770,2,28,1.0,2,1.0,1,0.0,1001264,3.0,156 -1218130,1630053309,8166909,2,27,2.0,3,1.0,1,23000.0,1009585,2.0,153 -1218131,1630053310,8180384,2,27,2.0,4,1.0,1,23000.0,1009585,2.0,156 -1218132,1630053311,8182980,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,156 -1218133,1630053312,8176352,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,156 -1218134,1630053313,8182980,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,156 -1218135,1630053314,8182980,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,156 -1218136,1630053315,8172622,2,29,-9.0,1,1.0,1,9000.0,1009585,4.0,153 -1218137,1630053316,8183571,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,156 -1218138,1630053317,8165880,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,153 -1218139,1630053318,8171764,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,153 -1218140,1630053319,8171764,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,153 -1218141,1630053320,8182980,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,156 -1218142,1630053321,8171764,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,153 -1218143,1630053322,8171764,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,153 -1218144,1630053323,8167316,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,153 -1218145,1630053324,8179858,2,34,6.0,7,0.0,1,12200.0,1025215,3.0,156 -1218146,1630053325,8166751,2,35,5.0,8,1.0,1,24600.0,1073094,2.0,153 -1218147,1630053326,8177988,2,32,3.0,6,1.0,1,19200.0,1073094,1.0,156 -1218148,1630053327,8184898,2,28,1.0,2,1.0,1,21000.0,1009585,3.0,156 -1218149,1630053328,8176055,2,29,1.0,2,1.0,1,15000.0,1025215,3.0,153 -1218150,1630053329,8182980,2,60,-9.0,1,1.0,1,164000.0,1009585,4.0,156 -1218151,1630053330,8182980,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,156 -1218152,1630053331,8182980,2,47,1.0,2,1.0,1,104500.0,1001264,3.0,156 -1218153,1630053332,8182473,2,64,4.0,9,1.0,1,130400.0,1025215,1.0,156 -1218154,1630053333,8171764,2,64,-9.0,1,1.0,1,32700.0,1042852,4.0,153 -1218155,1630053334,8182980,2,47,-9.0,1,0.0,1,47000.0,1001264,4.0,156 -1218156,1630053335,8181849,2,56,-9.0,1,1.0,1,39000.0,1009585,4.0,156 -1218157,1630053336,8182980,2,50,-9.0,1,1.0,1,38000.0,1073094,6.0,156 -1218158,1630053337,8171764,2,60,-9.0,1,1.0,1,36000.0,1001264,4.0,153 -1218159,1630053338,8902250,2,62,-9.0,1,1.0,1,82000.0,1009585,4.0,153 -1218160,1630053339,8182980,2,58,-9.0,1,0.0,1,1020.0,1009585,4.0,156 -1218161,1630053340,8171764,2,59,-9.0,1,0.0,1,8100.0,1073094,4.0,153 -1218162,1630053341,8902340,2,51,-9.0,1,0.0,1,9100.0,1001264,6.0,153 -1218163,1630053342,8171764,2,51,-9.0,1,0.0,1,8900.0,1009585,4.0,153 -1218164,1630053343,8171764,2,64,-9.0,1,0.0,1,12300.0,1042852,4.0,153 -1218165,1630053344,8171764,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,153 -1218166,1630053345,8171764,2,56,-9.0,1,0.0,1,13200.0,1009585,4.0,153 -1218167,1630053346,8179672,2,62,-9.0,1,0.0,1,12000.0,1073094,4.0,156 -1218168,1630053347,8182980,2,56,-9.0,1,0.0,1,13200.0,1009585,4.0,156 -1218169,1630053348,8171764,2,47,-9.0,1,0.0,1,16300.0,1073094,4.0,153 -1218170,1630053349,8902340,2,56,-9.0,1,0.0,1,0.0,1001264,4.0,153 -1218171,1630053350,8171764,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,153 -1218172,1630053351,8171764,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,153 -1218173,1630053352,8167775,2,58,-9.0,1,0.0,1,8700.0,1009585,4.0,153 -1218174,1630053353,8177044,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,156 -1218175,1630053354,8185707,2,58,-9.0,1,0.0,1,0.0,1025215,4.0,156 -1218176,1630053355,8171764,2,54,-9.0,1,0.0,1,8200.0,1009585,4.0,153 -1218177,1630053356,8171764,2,57,-9.0,1,0.0,1,8100.0,1073094,4.0,153 -1218178,1630053357,8182980,2,58,-9.0,1,0.0,1,9000.0,1042852,4.0,156 -1218179,1630053358,8182980,2,52,-9.0,1,0.0,1,6000.0,1073094,6.0,156 -1218180,1630053359,8171764,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,153 -1218181,1630053360,8171764,2,60,-9.0,1,0.0,1,12000.0,1025215,4.0,153 -1218182,1630053361,8178597,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,156 -1218183,1630053362,8171764,2,64,-9.0,1,0.0,1,12300.0,1042852,4.0,153 -1218184,1630053363,8176311,2,53,-9.0,1,0.0,1,0.0,1042852,4.0,156 -1218185,1630053364,8171764,2,57,-9.0,1,0.0,1,11000.0,1009585,4.0,153 -1218186,1630053365,8177499,2,60,-9.0,1,0.0,1,5600.0,1025215,4.0,156 -1218187,1630053366,8171764,2,47,-9.0,1,0.0,1,16300.0,1073094,4.0,153 -1218188,1630053367,8182980,2,62,-9.0,1,0.0,1,16200.0,1009585,4.0,156 -1218189,1630053368,8171764,2,60,-9.0,1,0.0,1,12000.0,1025215,4.0,153 -1218190,1630053369,8184262,2,49,-9.0,1,0.0,1,0.0,1001264,4.0,156 -1218191,1630053370,8182980,2,58,-9.0,1,0.0,1,9000.0,1042852,4.0,156 -1218192,1630053371,8184036,2,46,-9.0,1,0.0,1,1770.0,1042852,6.0,156 -1218193,1630053372,8179234,2,59,-9.0,1,0.0,1,14300.0,1073094,6.0,156 -1218194,1630053373,8167002,2,50,-9.0,1,0.0,1,0.0,1073094,6.0,153 -1218195,1630053374,8171764,2,62,-9.0,1,0.0,1,28800.0,1001264,4.0,153 -1218196,1630053375,8171764,2,63,-9.0,1,0.0,1,0.0,1025215,6.0,153 -1218197,1630053376,8171764,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,153 -1218198,1630053377,8183785,2,49,-9.0,1,0.0,1,0.0,1001264,4.0,156 -1218199,1630053378,8184817,2,51,-9.0,1,0.0,1,10600.0,1025215,6.0,156 -1218200,1630053379,8171764,2,57,-9.0,1,0.0,1,8800.0,1001264,6.0,153 -1218201,1630053380,8171764,2,59,-9.0,1,0.0,1,1200.0,1042852,4.0,153 -1218202,1630053381,8171764,2,55,-9.0,1,0.0,1,12900.0,1042852,4.0,153 -1218203,1630053382,8182980,2,56,-9.0,1,0.0,1,13200.0,1009585,4.0,156 -1218204,1630053383,8165356,2,51,-9.0,1,0.0,1,0.0,1025215,4.0,153 -1218205,1630053384,8184817,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,156 -1218206,1630053385,8171764,2,57,-9.0,1,0.0,1,8800.0,1001264,6.0,153 -1218207,1630053386,8181401,2,58,-9.0,1,0.0,1,10800.0,1025215,6.0,156 -1218208,1630053387,8176377,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,156 -1218209,1630053388,8171764,2,47,-9.0,1,0.0,1,16300.0,1073094,4.0,153 -1218210,1630053389,8180384,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,156 -1218211,1630053390,8171764,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,153 -1218212,1630053391,8902340,2,53,-9.0,1,0.0,1,26030.0,1042852,4.0,153 -1218213,1630053392,8167019,2,53,-9.0,1,0.0,1,0.0,1042852,4.0,153 -1218214,1630053393,8184644,2,62,-9.0,1,0.0,1,12000.0,1073094,4.0,156 -1218215,1630053394,8171764,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,153 -1218216,1630053395,8180384,2,58,-9.0,1,0.0,1,8400.0,1025215,4.0,156 -1218217,1630053396,8183571,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,156 -1218218,1630053397,8171764,2,53,-9.0,1,0.0,1,8800.0,1001264,4.0,153 -1218219,1630053398,8171764,2,62,-9.0,1,0.0,1,28800.0,1001264,4.0,153 -1218220,1630053399,8176377,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,156 -1218221,1630053400,8182980,2,53,-9.0,1,0.0,1,8300.0,1042852,4.0,156 -1218222,1630053401,8171764,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,153 -1218223,1630053402,8182980,2,61,-9.0,1,0.0,1,25830.0,1042852,6.0,156 -1218224,1630053403,8171764,2,57,-9.0,1,0.0,1,8100.0,1073094,4.0,153 -1218225,1630053404,8176867,2,61,-9.0,1,0.0,1,1600.0,1009585,4.0,156 -1218226,1630053405,8171764,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,153 -1218227,1630053406,8171764,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,153 -1218228,1630053407,8182980,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,156 -1218229,1630053408,8172622,2,63,-9.0,1,0.0,1,3300.0,1025215,4.0,153 -1218230,1630053409,8171764,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,153 -1218231,1630053410,8171764,2,59,-9.0,1,0.0,1,8100.0,1073094,4.0,153 -1218232,1630053411,8171764,2,47,-9.0,1,0.0,1,16300.0,1073094,4.0,153 -1218233,1630053412,8171764,2,62,-9.0,1,0.0,1,16200.0,1009585,4.0,153 -1218234,1630053413,8171764,2,53,-9.0,1,0.0,1,8800.0,1001264,4.0,153 -1218235,1630053414,8182155,2,57,-9.0,1,0.0,1,5200.0,1073094,4.0,156 -1218236,1630053415,8184898,2,50,-9.0,1,0.0,1,0.0,1025215,4.0,156 -1218237,1630053416,8172622,2,50,-9.0,1,0.0,1,10900.0,1073094,4.0,153 -1218238,1630053417,8172622,2,63,-9.0,1,0.0,1,3300.0,1025215,4.0,153 -1218239,1630053418,8171764,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,153 -1218240,1630053419,8182980,2,56,-9.0,1,0.0,1,13200.0,1009585,4.0,156 -1218241,1630053420,8183953,2,49,-9.0,1,0.0,1,0.0,1025215,4.0,156 -1218242,1630053421,8182980,2,58,-9.0,1,0.0,1,1020.0,1009585,4.0,156 -1218243,1630053422,8182980,2,62,-9.0,1,0.0,1,12300.0,1001264,6.0,156 -1218244,1630053423,8171764,2,64,-9.0,1,0.0,1,24700.0,1001264,4.0,153 -1218245,1630053424,8184419,2,61,-9.0,1,0.0,1,1600.0,1009585,4.0,156 -1218246,1630053425,8171764,2,56,-9.0,1,0.0,1,8750.0,1001264,4.0,153 -1218247,1630053426,8184070,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,156 -1218248,1630053427,8176377,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,156 -1218249,1630053428,8177742,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,156 -1218250,1630053429,8171764,2,64,-9.0,1,0.0,1,24700.0,1001264,4.0,153 -1218251,1630053430,8182980,2,54,-9.0,1,0.0,1,10000.0,1001264,4.0,156 -1218252,1630053431,8171764,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,153 -1218253,1630053432,8171764,2,58,-9.0,1,0.0,1,8400.0,1042852,4.0,153 -1218254,1630053433,8172622,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,153 -1218255,1630053434,8171764,2,50,-9.0,1,0.0,1,6000.0,1073094,4.0,153 -1218256,1630053435,8171764,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,153 -1218257,1630053436,8171764,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,153 -1218258,1630053437,8171764,2,55,-9.0,1,0.0,1,12900.0,1042852,4.0,153 -1218259,1630053438,8171764,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,153 -1218260,1630053439,8171764,2,55,-9.0,1,0.0,1,0.0,1025215,4.0,153 -1218261,1630053440,8184688,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,156 -1218262,1630053441,8171764,2,59,-9.0,1,0.0,1,8100.0,1073094,4.0,153 -1218263,1630053442,8165356,2,58,-9.0,1,0.0,1,12000.0,1042852,4.0,153 -1218264,1630053443,8176377,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,156 -1218265,1630053444,8172622,2,54,-9.0,1,0.0,1,8400.0,1042852,4.0,153 -1218266,1630053445,8183188,2,50,-9.0,1,0.0,1,8100.0,1073094,4.0,156 -1218267,1630053446,8171764,2,60,-9.0,1,0.0,1,2000.0,1042852,6.0,153 -1218268,1630053447,8182248,2,56,-9.0,1,0.0,1,0.0,1001264,4.0,156 -1218269,1630053448,8171764,2,60,-9.0,1,0.0,1,13200.0,1009585,4.0,153 -1218270,1630053449,8171764,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,153 -1218271,1630053450,8184070,2,62,-9.0,1,0.0,1,21000.0,1001264,6.0,156 -1218272,1630053451,8171764,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,153 -1218273,1630053452,8171764,2,58,-9.0,1,0.0,1,4800.0,1042852,4.0,153 -1218274,1630053453,8172622,4,60,-9.0,1,0.0,1,8600.0,1001264,6.0,153 -1218275,1630053454,8171764,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,153 -1218276,1630053455,8182980,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,156 -1218277,1630053456,8171764,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,153 -1218278,1630053457,8182980,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,156 -1218279,1630053458,8171764,1,60,-9.0,1,0.0,1,10840.0,1009585,4.0,153 -1218280,1630053459,8182980,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,156 -1218281,1630053460,8179326,2,62,-9.0,1,1.0,1,7000.0,1001264,4.0,156 -1218282,1630053461,8177988,2,57,-9.0,1,1.0,1,8700.0,1025215,4.0,156 -1218283,1630053462,8183243,2,62,-9.0,1,1.0,1,7000.0,1001264,4.0,156 -1218284,1630053463,8172622,2,61,-9.0,1,1.0,1,19500.0,1025215,4.0,153 -1218285,1630053464,8176055,2,52,-9.0,1,1.0,1,0.0,1042852,4.0,153 -1218286,1630053465,8171764,2,53,-9.0,1,1.0,1,22600.0,1001264,4.0,153 -1218287,1630053466,8177476,2,45,-9.0,1,1.0,1,20500.0,1042852,4.0,156 -1218288,1630053467,8171764,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,153 -1218289,1630053468,8167775,2,63,-9.0,1,1.0,1,12000.0,1042852,6.0,153 -1218290,1630053469,8172622,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,153 -1218291,1630053470,8902340,2,64,-9.0,1,1.0,1,7660.0,1009585,4.0,153 -1218292,1630053471,8176058,2,55,-9.0,1,1.0,1,8500.0,1025215,4.0,153 -1218293,1630053472,8171764,2,64,-9.0,1,1.0,1,12400.0,1001264,4.0,153 -1218294,1630053473,8176058,2,58,-9.0,1,1.0,1,18000.0,1073094,4.0,153 -1218295,1630053474,8185219,2,46,-9.0,1,1.0,1,0.0,1073094,6.0,156 -1218296,1630053475,8176055,2,52,-9.0,1,1.0,1,0.0,1042852,4.0,153 -1218297,1630053476,8167316,2,64,-9.0,1,1.0,1,7660.0,1009585,4.0,153 -1218298,1630053477,8176055,2,52,-9.0,1,1.0,1,0.0,1042852,4.0,153 -1218299,1630053478,8172622,2,61,-9.0,1,1.0,1,19500.0,1025215,4.0,153 -1218300,1630053479,8176058,2,58,-9.0,1,1.0,1,18000.0,1073094,4.0,153 -1218301,1630053480,8171764,2,64,-9.0,1,1.0,1,12400.0,1001264,4.0,153 -1218302,1630053481,8172622,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,153 -1218303,1630053482,8176058,2,58,-9.0,1,1.0,1,11000.0,1025215,4.0,153 -1218304,1630053483,8176055,2,52,-9.0,1,1.0,1,0.0,1042852,4.0,153 -1218305,1630053484,8171764,2,64,-9.0,1,1.0,1,3300.0,1025215,4.0,153 -1218306,1630053485,8171764,2,64,-9.0,1,1.0,1,3300.0,1025215,4.0,153 -1218307,1630053486,8180357,1,64,-9.0,1,1.0,1,12300.0,1009585,4.0,156 -1218308,1630053487,8177943,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,156 -1218309,1630053488,8167775,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,153 -1218310,1630053489,8183953,2,56,4.0,8,0.0,1,11000.0,1001264,3.0,156 -1218311,1630053490,8182324,1,61,3.0,6,0.0,1,9900.0,1042852,3.0,156 -1218312,1630053491,8171764,2,55,-9.0,2,0.0,1,12770.0,1073094,7.0,153 -1218313,1630053492,8171764,2,63,-9.0,2,0.0,1,15000.0,1073094,5.0,153 -1218314,1630053493,8182980,2,61,-9.0,2,0.0,1,23800.0,1073094,2.0,156 -1218315,1630053494,8180384,2,58,-9.0,2,0.0,1,16310.0,1009585,1.0,156 -1218316,1630053495,8182980,2,53,1.0,2,0.0,1,0.0,1042852,3.0,156 -1218317,1630053496,8902340,2,53,1.0,2,0.0,1,12000.0,1025215,2.0,153 -1218318,1630053497,8167316,2,53,1.0,2,0.0,1,12000.0,1025215,2.0,153 -1218319,1630053498,8182248,2,53,1.0,2,0.0,1,12000.0,1025215,2.0,156 -1218320,1630053499,8182917,2,50,1.0,2,0.0,1,8100.0,1073094,3.0,156 -1218321,1630053500,8180886,2,51,-9.0,2,1.0,1,8500.0,1009585,1.0,156 -1218322,1630053501,8167775,2,55,-9.0,2,1.0,1,28600.0,1009585,1.0,153 -1218323,1630053502,8182980,2,47,1.0,2,1.0,1,18000.0,1073094,3.0,156 -1218324,1630053503,8171764,2,59,1.0,2,1.0,1,14880.0,1042852,3.0,153 -1218325,1630053504,8185426,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,156 -1218326,1630053505,8171764,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,153 -1218327,1630053506,8172622,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,153 -1218328,1630053507,8902340,2,52,-9.0,1,0.0,1,13400.0,1042852,6.0,153 -1218329,1630053508,8166257,2,62,-9.0,1,0.0,1,29000.0,1009585,6.0,153 -1218330,1630053509,8172622,2,58,-9.0,1,0.0,1,9680.0,1073094,4.0,153 -1218331,1630053510,8182980,2,61,-9.0,1,0.0,1,5600.0,1001264,4.0,156 -1218332,1630053511,8182980,2,45,-9.0,1,0.0,1,1700.0,1073094,4.0,156 -1218333,1630053512,8183363,2,55,-9.0,1,0.0,1,8000.0,1009585,4.0,156 -1218334,1630053513,8171764,2,60,-9.0,1,0.0,1,26000.0,1025215,4.0,153 -1218335,1630053514,8183188,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,156 -1218336,1630053515,8172622,2,51,-9.0,1,0.0,1,19000.0,1025215,4.0,153 -1218337,1630053516,8172622,2,58,-9.0,1,0.0,1,9680.0,1073094,4.0,153 -1218338,1630053517,8172622,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,153 -1218339,1630053518,8180877,2,61,-9.0,1,0.0,1,11500.0,1009585,4.0,156 -1218340,1630053519,8171764,2,60,-9.0,1,0.0,1,26000.0,1025215,4.0,153 -1218341,1630053520,8182980,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,156 -1218342,1630053521,8172622,2,60,-9.0,1,1.0,1,12000.0,1001264,4.0,153 -1218343,1630053522,8185219,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,156 -1218344,1630053523,8167019,2,45,-9.0,1,1.0,1,22000.0,1073094,4.0,153 -1218345,1630053524,8171764,2,48,-9.0,1,1.0,1,6000.0,1025215,6.0,153 -1218346,1630053525,8185486,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,156 -1218347,1630053526,8182189,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,156 -1218348,1630053527,8177742,2,54,-9.0,1,1.0,1,21900.0,1025215,4.0,156 -1218349,1630053528,8176895,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,156 -1218350,1630053529,8171764,2,55,-9.0,1,1.0,1,21900.0,1009585,6.0,153 -1218351,1630053530,8171764,2,59,-9.0,1,1.0,1,2800.0,1001264,4.0,153 -1218352,1630053531,8179497,1,62,-9.0,1,1.0,1,22600.0,1001264,4.0,156 -1218353,1630053532,8902326,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,156 -1218354,1630053533,8184006,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,156 -1218355,1630053534,8177690,2,45,5.0,6,1.0,1,28100.0,1009585,3.0,156 -1218356,1630053535,8178370,2,55,-9.0,1,1.0,1,25000.0,1073094,3.0,156 -1218357,1630053536,8172622,2,75,-9.0,1,0.0,1,8800.0,1001264,4.0,153 -1218358,1630053537,8166501,2,77,-9.0,1,0.0,1,9600.0,1009585,4.0,153 -1218359,1630053538,8184070,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,156 -1218360,1630053539,8181164,2,69,-9.0,1,0.0,1,23200.0,1009585,4.0,156 -1218361,1630053540,8181849,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,156 -1218362,1630053541,8171764,2,80,-9.0,1,0.0,1,8300.0,1073094,6.0,153 -1218363,1630053542,8171764,2,69,-9.0,1,0.0,1,17000.0,1025215,4.0,153 -1218364,1630053543,8182980,2,74,-9.0,1,0.0,1,17000.0,1073094,6.0,156 -1218365,1630053544,8182980,2,86,-9.0,1,0.0,1,12300.0,1042852,6.0,156 -1218366,1630053545,8171764,2,79,-9.0,1,0.0,1,13600.0,1001264,4.0,153 -1218367,1630053546,8183096,2,82,-9.0,1,0.0,1,8300.0,1042852,6.0,156 -1218368,1630053547,8171764,2,66,-9.0,1,0.0,1,8400.0,1025215,4.0,153 -1218369,1630053548,8171764,2,65,-9.0,1,0.0,1,12000.0,1025215,4.0,153 -1218370,1630053549,8179234,2,69,-9.0,1,0.0,1,23200.0,1009585,4.0,156 -1218371,1630053550,8172622,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,153 -1218372,1630053551,8171764,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,153 -1218373,1630053552,8185486,2,74,-9.0,1,0.0,1,14300.0,1025215,6.0,156 -1218374,1630053553,8182980,1,74,-9.0,1,0.0,1,9600.0,1042852,4.0,156 -1218375,1630053554,8166257,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,153 -1218376,1630053555,8184859,2,83,-9.0,1,1.0,1,21900.0,1042852,4.0,156 -1218377,1630053556,8179113,2,69,-9.0,1,1.0,1,21000.0,1001264,6.0,156 -1218378,1630053557,8184070,2,81,-9.0,1,1.0,1,8400.0,1009585,4.0,156 -1218379,1630053558,8182980,2,66,-9.0,1,1.0,1,15300.0,1073094,6.0,156 -1218380,1630053559,8178370,2,65,-9.0,1,1.0,1,3300.0,1073094,4.0,156 -1218381,1630053560,8171764,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,153 -1218382,1630053561,8167141,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,153 -1218383,1630053562,8182980,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,156 -1218384,1630053563,8171764,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,153 -1218385,1630053564,8171764,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,153 -1218386,1630053565,8182248,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,156 -1218387,1630053566,8184589,2,20,1.0,2,0.0,1,0.0,1009585,3.0,156 -1218388,1630053567,8167316,2,23,1.0,2,0.0,1,6600.0,1025215,3.0,153 -1218389,1630053568,8181165,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,156 -1218390,1630053569,8172622,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,153 -1218391,1630053570,8169826,2,34,1.0,2,0.0,1,18000.0,1025215,3.0,153 -1218392,1630053571,8180877,1,70,-9.0,1,1.0,1,13000.0,1001264,4.0,156 -1218393,1630053572,8184036,2,48,2.0,4,4.0,1,153820.0,1025215,1.0,156 -1218394,1630053573,8171764,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,153 -1218395,1630053574,8177943,2,36,1.0,2,1.0,1,9600.0,1073094,3.0,156 -1218396,1630053575,8171764,2,59,1.0,2,1.0,1,14880.0,1042852,3.0,153 -1218397,1630053576,8176055,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,153 -1218398,1630053577,8183659,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,156 -1218399,1630053578,8177988,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,156 -1218400,1630053579,8171764,2,23,-9.0,1,1.0,1,1920.0,1073094,6.0,153 -1218401,1630053580,8183659,2,46,3.0,6,1.0,1,5760.0,1073094,1.0,156 -1218402,1630053581,8183883,2,43,2.0,5,1.0,1,13790.0,1009585,3.0,156 -1218403,1630053582,8180026,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,156 -1218404,1630053583,8184573,2,42,-9.0,1,2.0,1,8600.0,1009585,4.0,156 -1218405,1630053584,8172622,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,153 -1218406,1630053585,8171764,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,153 -1218407,1630053586,8182980,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,156 -1218408,1630053587,8171764,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,153 -1218409,1630053588,8178929,2,64,-9.0,1,2.0,1,73000.0,1025215,6.0,156 -1218410,1630053589,8167695,2,47,2.0,4,0.0,1,24600.0,1042852,2.0,153 -1218411,1630053590,8175517,2,62,-9.0,2,2.0,1,453000.0,1073094,1.0,153 -1218412,1630053591,8182155,2,48,4.0,7,1.0,1,0.0,1001264,3.0,156 -1218413,1630053592,8171764,1,60,-9.0,1,0.0,1,10840.0,1009585,4.0,153 -1218414,1630053593,8178627,2,60,1.0,4,3.0,1,80800.0,1025215,1.0,156 -1218415,1630053594,8185770,2,42,4.0,8,1.0,1,5280.0,1001264,3.0,156 -1218416,1630053595,8171764,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,153 -1218417,1630053596,8167854,2,53,-9.0,1,2.0,1,12400.0,1073094,4.0,153 -1218418,1630053597,8176055,2,32,3.0,6,1.0,1,19200.0,1073094,1.0,153 -1218419,1630053598,8183883,2,38,6.0,8,0.0,1,12200.0,1042852,3.0,156 -1218420,1630053599,8183996,2,80,-9.0,1,0.0,1,15600.0,1025215,6.0,156 -1218421,1630053600,8180886,2,62,-9.0,1,1.0,1,57000.0,1009585,4.0,156 -1218422,1630053601,8184262,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,156 -1218423,1630053602,8166098,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,153 -1218424,1630053603,8184575,2,55,3.0,6,2.0,1,40000.0,1042852,1.0,156 -1218425,1630053604,8184419,2,59,5.0,7,2.0,1,21600.0,1001264,3.0,156 -1218426,1630053605,8177742,2,47,1.0,4,1.0,1,21300.0,1001264,3.0,156 -1218427,1630053606,8184006,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,156 -1218428,1630053607,8177943,2,65,3.0,6,0.0,1,6100.0,1073094,1.0,156 -1218429,1630053608,8177943,2,40,4.0,6,2.0,1,63000.0,1009585,2.0,156 -1218430,1630053609,8171764,2,60,-9.0,1,1.0,1,164000.0,1009585,4.0,153 -1218431,1630053610,8183571,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,156 -1218432,1630053611,8181164,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,156 -1218433,1630053612,8183571,2,47,5.0,9,0.0,1,5400.0,1009585,1.0,156 -1218434,1630053613,8183883,2,42,3.0,5,1.0,1,15800.0,1001264,3.0,156 -1218435,1630053614,8176055,2,54,-9.0,2,0.0,1,13640.0,1001264,7.0,153 -1218436,1630053615,8180026,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,156 -1218437,1630053616,8171764,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,153 -1218438,1630053617,8175517,2,46,-9.0,1,2.0,1,135800.0,1025215,6.0,153 -1218439,1630053618,8181480,2,53,-9.0,1,1.0,1,42000.0,1042852,4.0,156 -1218440,1630053619,8182264,2,88,-9.0,1,2.0,1,2500.0,1001264,4.0,156 -1218441,1630053620,8183114,2,35,-9.0,1,0.0,1,0.0,1001264,4.0,156 -1218442,1630053621,8185426,2,60,-9.0,2,2.0,1,24500.0,1042852,1.0,156 -1218443,1630053622,8177499,2,38,3.0,4,0.0,1,15000.0,1001264,3.0,156 -1218444,1630053623,8175517,1,57,-9.0,1,3.0,1,27400.0,1042852,4.0,153 -1218445,1630053624,8180384,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,156 -1218446,1630053625,8182296,1,61,3.0,6,0.0,1,9900.0,1042852,3.0,156 -1218447,1630053626,8176433,2,26,-9.0,1,1.0,1,13000.0,1073094,6.0,153 -1218448,1630053627,8183274,1,62,-9.0,1,1.0,1,75000.0,1025215,4.0,156 -1218449,1630053628,8184589,2,28,1.0,2,1.0,1,0.0,1001264,3.0,156 -1218450,1630053629,8171764,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,153 -1218451,1630053630,8166833,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,153 -1218452,1630053631,8182980,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,156 -1218453,1630053632,8181143,2,50,-9.0,2,1.0,1,74300.0,1009585,3.0,156 -1218454,1630053633,8179697,2,63,-9.0,2,0.0,1,26500.0,1001264,7.0,156 -1218455,1630053634,8181165,2,54,-9.0,2,2.0,1,0.0,1025215,3.0,156 -1218456,1630053635,8183613,2,52,-9.0,2,2.0,1,76000.0,1009585,1.0,156 -1218457,1630053636,8167695,2,52,-9.0,2,0.0,1,15000.0,1025215,5.0,153 -1218458,1630053637,8182980,2,52,-9.0,2,0.0,1,12160.0,1001264,7.0,156 -1218459,1630053638,8163117,1,64,-9.0,1,1.0,1,59000.0,1073094,4.0,153 -1218460,1630053639,8184070,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,156 -1218461,1630053640,8171764,1,57,-9.0,1,1.0,1,72000.0,1042852,6.0,153 -1218462,1630053641,8185154,2,63,-9.0,1,1.0,1,68000.0,1009585,4.0,156 -1218463,1630053642,8185770,2,51,1.0,2,1.0,1,2100.0,1025215,3.0,156 -1218464,1630053643,8181143,2,39,2.0,8,1.0,1,21100.0,1025215,3.0,156 -1218465,1630053644,8183274,2,23,2.0,4,0.0,1,7700.0,1009585,3.0,156 -1218466,1630053645,8178597,2,53,2.0,6,0.0,1,10860.0,1042852,1.0,156 -1218467,1630053646,8167627,2,48,-9.0,2,3.0,1,163200.0,1042852,3.0,153 -1218468,1630053647,8177690,1,50,-9.0,1,1.0,1,14600.0,1073094,4.0,156 -1218469,1630053648,8180325,2,59,-9.0,2,1.0,1,6700.0,1009585,3.0,156 -1218470,1630053649,8182248,2,22,1.0,2,0.0,1,1100.0,1001264,3.0,156 -1218471,1630053650,8183096,2,42,1.0,6,0.0,1,22170.0,1042852,3.0,156 -1218472,1630053651,8178022,2,35,-9.0,1,2.0,1,15000.0,1042852,4.0,156 -1218473,1630053652,8182417,2,30,-9.0,2,1.0,1,21500.0,1025215,3.0,156 -1218474,1630053653,8171764,2,64,-9.0,1,1.0,1,12400.0,1001264,4.0,153 -1218475,1630053654,8182980,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,156 -1218476,1630053655,8178929,2,57,-9.0,1,2.0,1,67700.0,1025215,4.0,156 -1218477,1630053656,8183783,2,62,-9.0,2,4.0,1,101660.0,1009585,2.0,156 -1218478,1630053657,8172622,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,153 -1218479,1630053658,8182264,2,46,-9.0,1,2.0,1,31500.0,1009585,6.0,156 -1218480,1630053659,8184995,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,156 -1218481,1630053660,8182473,2,63,1.0,4,1.0,1,100000.0,1073094,3.0,156 -1218482,1630053661,8171764,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,153 -1218483,1630053662,8182980,2,23,-9.0,1,0.0,1,0.0,1042852,4.0,156 -1218484,1630053663,8175517,2,63,-9.0,2,3.0,1,26400.0,1009585,1.0,153 -1218485,1630053664,8171764,2,59,-9.0,1,1.0,1,2800.0,1001264,4.0,153 -1218486,1630053665,8180384,2,71,-9.0,2,0.0,1,13000.0,1042852,1.0,156 -1218487,1630053666,8176058,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,153 -1218488,1630053667,8177988,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,156 -1218489,1630053668,8183613,2,38,1.0,2,1.0,1,42200.0,1001264,3.0,156 -1218490,1630053669,8181143,2,60,-9.0,1,0.0,1,260400.0,1001264,6.0,156 -1218491,1630053670,8181143,2,38,4.0,7,0.0,1,17100.0,1042852,3.0,156 -1218492,1630053671,8175517,1,36,-9.0,1,1.0,1,0.0,1042852,4.0,153 -1218493,1630053672,8167775,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,153 -1218494,1630053673,8176867,2,37,2.0,4,1.0,1,7800.0,1009585,1.0,156 -1218495,1630053674,8178370,2,58,1.0,5,2.0,1,80300.0,1001264,3.0,156 -1218496,1630053675,8185657,2,54,-9.0,1,2.0,1,3500.0,1025215,6.0,156 -1218497,1630053676,8171764,2,54,-9.0,2,2.0,1,27000.0,1009585,1.0,153 -1218498,1630053677,8179672,2,47,-9.0,1,0.0,1,24000.0,1073094,4.0,156 -1218499,1630053678,8176946,1,57,-9.0,1,0.0,1,0.0,1042852,6.0,156 -1218500,1630053679,8177742,2,47,4.0,7,1.0,1,80000.0,1073094,1.0,156 -1218501,1630053680,8171764,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,153 -1218502,1630053681,8182252,2,64,4.0,9,1.0,1,130400.0,1025215,1.0,156 -1218503,1630053682,8167234,2,53,1.0,4,1.0,1,5800.0,1073094,3.0,153 -1218504,1630053683,8180325,2,26,3.0,6,0.0,1,30700.0,1009585,3.0,156 -1218505,1630053684,8184817,2,64,-9.0,1,1.0,1,30000.0,1042852,4.0,156 -1218506,1630053685,8181401,1,59,-9.0,1,2.0,1,78800.0,1025215,4.0,156 -1218507,1630053686,8179186,4,54,-9.0,1,0.0,1,0.0,1009585,4.0,156 -1218508,1630053687,8171764,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,153 -1218509,1630053688,8171764,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,153 -1218510,1630053689,8175517,2,66,-9.0,1,1.0,1,40150.0,1001264,4.0,153 -1218511,1630053690,8166257,2,47,-9.0,1,1.0,1,106000.0,1001264,6.0,153 -1218512,1630053691,8167029,1,41,3.0,6,3.0,1,257400.0,1009585,1.0,153 -1218513,1630053692,8183162,2,31,2.0,3,1.0,1,12000.0,1009585,3.0,156 -1218514,1630053693,8177686,2,54,-9.0,1,2.0,1,60000.0,1042852,4.0,156 -1218515,1630053694,8178747,2,36,2.0,4,2.0,1,11400.0,1042852,3.0,156 -1218516,1630053695,8167075,2,42,1.0,3,0.0,1,0.0,1001264,3.0,153 -1218517,1630053696,8179234,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,156 -1218518,1630053697,8183349,2,62,-9.0,1,1.0,1,82000.0,1009585,4.0,156 -1218519,1630053698,8183523,1,52,-9.0,2,3.0,1,85000.0,1001264,5.0,156 -1218520,1630053699,8172622,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,153 -1218521,1630053700,8183779,2,45,1.0,2,1.0,1,0.0,1042852,3.0,156 -1218522,1630053701,8184070,2,45,1.0,2,0.0,1,20900.0,1009585,3.0,156 -1218523,1630053702,8180079,2,24,2.0,4,2.0,1,20600.0,1009585,2.0,156 -1218524,1630053703,8172622,2,19,1.0,2,1.0,1,11500.0,1042852,3.0,153 -1218525,1630053704,8185331,1,60,1.0,2,1.0,1,28410.0,1042852,3.0,156 -1218526,1630053705,8169826,1,47,-9.0,1,1.0,1,47000.0,1073094,4.0,153 -1218527,1630053706,8171764,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,153 -1218528,1630053707,8179239,2,20,3.0,4,1.0,1,12000.0,1009585,7.0,156 -1218529,1630053708,8177044,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,156 -1218530,1630053709,8182980,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,156 -1218531,1630053710,8171764,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,153 -1218532,1630053711,8179049,2,57,-9.0,1,1.0,1,16000.0,1042852,4.0,156 -1218533,1630053712,8183903,2,40,-9.0,1,1.0,1,800.0,1042852,4.0,156 -1218534,1630053713,8183523,2,61,-9.0,2,1.0,1,29250.0,1042852,3.0,156 -1218535,1630053714,8171764,2,65,-9.0,1,2.0,1,16000.0,1001264,6.0,153 -1218536,1630053715,8183883,2,47,1.0,2,1.0,1,25000.0,1025215,2.0,156 -1218537,1630053716,8171764,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,153 -1218538,1630053717,8166244,2,50,1.0,3,3.0,1,175140.0,1025215,3.0,153 -1218539,1630053718,8166751,2,36,5.0,8,2.0,1,33600.0,1042852,3.0,153 -1218540,1630053719,8183162,1,53,-9.0,2,1.0,1,11400.0,1042852,3.0,156 -1218541,1630053720,8171764,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,153 -1218542,1630053721,8178910,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,156 -1218543,1630053722,8178946,2,53,2.0,4,2.0,1,20500.0,1042852,3.0,156 -1218544,1630053723,8177999,2,55,-9.0,2,1.0,1,14000.0,1042852,3.0,156 -1218545,1630053724,8182980,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,156 -1218546,1630053725,8182252,2,36,3.0,4,1.0,1,25700.0,1009585,3.0,156 -1218547,1630053726,8177476,2,34,-9.0,2,2.0,1,157000.0,1001264,1.0,156 -1218548,1630053727,8178823,4,61,-9.0,1,1.0,1,13500.0,1025215,4.0,156 -1218549,1630053728,8181935,2,55,1.0,3,0.0,1,11500.0,1042852,1.0,156 -1218550,1630053729,8189012,2,63,1.0,4,1.0,1,100000.0,1073094,3.0,152 -1218551,1630053730,8186141,2,54,-9.0,3,2.0,1,101400.0,1009585,1.0,152 -1218552,1630053731,8186652,2,47,-9.0,2,1.0,1,139600.0,1009585,1.0,152 -1218553,1630053732,8193316,2,61,-9.0,3,3.0,1,184000.0,1025215,2.0,152 -1218554,1630053733,8189349,2,61,-9.0,3,3.0,1,184000.0,1025215,2.0,152 -1218555,1630053734,8187324,2,61,-9.0,3,3.0,1,184000.0,1025215,2.0,152 -1218556,1630053735,8190538,2,50,1.0,3,3.0,1,175140.0,1025215,3.0,152 -1218557,1630053736,8188997,2,50,1.0,3,4.0,1,148000.0,1009585,1.0,152 -1218558,1630053737,8189478,2,55,-9.0,3,1.0,1,50000.0,1009585,2.0,152 -1218559,1630053738,8186434,2,64,-9.0,3,2.0,1,59000.0,1042852,1.0,152 -1218560,1630053739,8185445,2,61,-9.0,3,2.0,1,33300.0,1009585,1.0,152 -1218561,1630053740,8192923,2,53,-9.0,7,0.0,1,69300.0,1025215,7.0,152 -1218562,1630053741,8187298,2,59,-9.0,3,0.0,1,82600.0,1009585,3.0,152 -1218563,1630053742,8187552,2,57,-9.0,3,2.0,1,77000.0,1001264,1.0,152 -1218564,1630053743,8193130,2,57,-9.0,5,1.0,1,10000.0,1073094,3.0,152 -1218565,1630053744,8187304,2,64,1.0,5,1.0,1,11000.0,1042852,3.0,152 -1218566,1630053745,8192229,2,63,-9.0,1,0.0,1,28800.0,1042852,6.0,152 -1218567,1630053746,8187138,2,58,-9.0,1,0.0,1,17600.0,1001264,6.0,152 -1218568,1630053747,8187557,2,53,-9.0,1,0.0,1,9600.0,1001264,4.0,152 -1218569,1630053748,8192123,2,56,-9.0,1,0.0,1,8600.0,1009585,6.0,152 -1218570,1630053749,8194298,2,57,-9.0,1,0.0,1,10800.0,1042852,6.0,152 -1218571,1630053750,8192719,2,57,-9.0,1,0.0,1,8400.0,1025215,6.0,152 -1218572,1630053751,8190066,2,53,-9.0,1,1.0,1,4100.0,1025215,4.0,152 -1218573,1630053752,8187303,2,51,-9.0,1,1.0,1,1700.0,1042852,6.0,152 -1218574,1630053753,8186853,2,63,-9.0,1,1.0,1,920.0,1001264,6.0,152 -1218575,1630053754,8189773,2,60,-9.0,1,1.0,1,13000.0,1042852,6.0,152 -1218576,1630053755,8188724,2,48,4.0,7,1.0,1,0.0,1001264,3.0,152 -1218577,1630053756,8191192,2,46,-9.0,3,0.0,1,23400.0,1001264,1.0,152 -1218578,1630053757,8191824,2,46,-9.0,3,0.0,1,23400.0,1001264,1.0,152 -1218579,1630053758,8192166,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,152 -1218580,1630053759,8184879,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,152 -1218581,1630053760,8191521,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,152 -1218582,1630053761,8185951,2,46,-9.0,2,0.0,1,23400.0,1001264,1.0,152 -1218583,1630053762,8189530,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,152 -1218584,1630053763,8193614,2,61,-9.0,2,0.0,1,12000.0,1042852,3.0,152 -1218585,1630053764,8195762,2,46,-9.0,3,0.0,1,23400.0,1001264,1.0,152 -1218586,1630053765,8191491,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,152 -1218587,1630053766,8193015,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,152 -1218588,1630053767,8186537,2,50,-9.0,3,1.0,1,24400.0,1001264,1.0,152 -1218589,1630053768,8185768,2,50,-9.0,3,1.0,1,24400.0,1001264,1.0,152 -1218590,1630053769,8189175,2,50,-9.0,3,1.0,1,24400.0,1001264,1.0,152 -1218591,1630053770,8193585,2,63,-9.0,2,0.0,1,26500.0,1001264,7.0,152 -1218592,1630053771,8185683,2,60,-9.0,1,0.0,1,9600.0,1025215,1.0,152 -1218593,1630053772,8190539,2,55,-9.0,2,1.0,1,13700.0,1009585,1.0,152 -1218594,1630053773,8187067,2,54,-9.0,2,1.0,1,18400.0,1073094,3.0,152 -1218595,1630053774,8192985,2,58,-9.0,2,1.0,1,0.0,1001264,3.0,152 -1218596,1630053775,8190897,2,55,-9.0,2,1.0,1,13700.0,1009585,1.0,152 -1218597,1630053776,8185645,2,46,1.0,2,1.0,1,2400.0,1025215,3.0,152 -1218598,1630053777,8192473,2,50,-9.0,1,1.0,1,24000.0,1073094,4.0,152 -1218599,1630053778,8189699,2,49,-9.0,3,1.0,1,20000.0,1073094,1.0,152 -1218600,1630053779,8188268,2,61,1.0,3,1.0,1,18000.0,1042852,3.0,152 -1218601,1630053780,8194494,2,61,1.0,3,1.0,1,18000.0,1042852,3.0,152 -1218602,1630053781,8194116,2,49,1.0,3,1.0,1,21300.0,1042852,3.0,152 -1218603,1630053782,8191431,2,87,-9.0,3,0.0,1,136700.0,1042852,3.0,152 -1218604,1630053783,8185750,2,86,-9.0,1,0.0,1,20400.0,1073094,6.0,152 -1218605,1630053784,8191112,2,94,-9.0,1,0.0,1,26000.0,1073094,6.0,152 -1218606,1630053785,8184038,2,68,-9.0,1,0.0,1,8700.0,1009585,6.0,152 -1218607,1630053786,8191985,2,75,-9.0,1,1.0,1,11400.0,1073094,6.0,152 -1218608,1630053787,8189449,2,71,-9.0,1,1.0,1,23600.0,1042852,6.0,152 -1218609,1630053788,8194629,2,84,-9.0,1,1.0,1,16400.0,1001264,6.0,152 -1218610,1630053789,8186229,2,65,-9.0,3,0.0,1,0.0,1042852,1.0,152 -1218611,1630053790,8184930,2,65,-9.0,3,0.0,1,0.0,1042852,1.0,152 -1218612,1630053791,8194873,2,89,-9.0,3,1.0,1,29900.0,1009585,3.0,152 -1218613,1630053792,8186412,2,89,-9.0,3,1.0,1,29900.0,1009585,3.0,152 -1218614,1630053793,8190837,2,80,1.0,3,1.0,1,14400.0,1073094,2.0,152 -1218615,1630053794,8190636,2,73,1.0,2,3.0,1,19000.0,1042852,3.0,152 -1218616,1630053795,8194110,2,83,-9.0,2,0.0,1,21590.0,1001264,3.0,152 -1218617,1630053796,8193913,2,80,-9.0,2,0.0,1,26800.0,1001264,3.0,152 -1218618,1630053797,8187483,2,76,-9.0,2,1.0,1,10000.0,1025215,3.0,152 -1218619,1630053798,8192229,2,43,1.0,5,0.0,1,9200.0,1025215,3.0,152 -1218620,1630053799,8186057,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,152 -1218621,1630053800,8185096,2,43,1.0,5,0.0,1,9200.0,1025215,3.0,152 -1218622,1630053801,8190052,2,34,4.0,5,1.0,1,0.0,1042852,3.0,152 -1218623,1630053802,8189049,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,152 -1218624,1630053803,8188997,2,38,6.0,8,0.0,1,12200.0,1042852,3.0,152 -1218625,1630053804,8192123,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,152 -1218626,1630053805,8194329,2,42,1.0,3,0.0,1,0.0,1001264,3.0,152 -1218627,1630053806,8192123,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,152 -1218628,1630053807,8185586,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,152 -1218629,1630053808,8192229,2,27,1.0,2,0.0,1,10200.0,1025215,3.0,152 -1218630,1630053809,8191919,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,152 -1218631,1630053810,8189699,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,152 -1218632,1630053811,8182714,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,152 -1218633,1630053812,8185096,2,31,1.0,3,1.0,1,8400.0,1073094,2.0,152 -1218634,1630053813,8182714,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,152 -1218635,1630053814,8192229,2,42,1.0,3,0.0,1,8900.0,1073094,3.0,152 -1218636,1630053815,8187122,2,38,1.0,3,1.0,1,16200.0,1001264,1.0,152 -1218637,1630053816,8189201,2,38,1.0,3,1.0,1,16200.0,1001264,1.0,152 -1218638,1630053817,8190922,2,53,-9.0,3,1.0,1,105400.0,1042852,2.0,152 -1218639,1630053818,8191470,2,53,-9.0,2,1.0,1,105400.0,1042852,2.0,152 -1218640,1630053819,8182638,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,152 -1218641,1630053820,8189937,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,152 -1218642,1630053821,8186536,2,57,-9.0,1,0.0,1,8100.0,1073094,4.0,152 -1218643,1630053822,8185096,2,45,-9.0,1,0.0,1,4400.0,1025215,4.0,152 -1218644,1630053823,8187253,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,152 -1218645,1630053824,8189961,2,64,-9.0,1,0.0,1,3660.0,1042852,6.0,152 -1218646,1630053825,8185390,2,59,-9.0,1,0.0,1,14300.0,1073094,6.0,152 -1218647,1630053826,8191806,2,64,-9.0,1,0.0,1,9500.0,1025215,6.0,152 -1218648,1630053827,8186427,2,54,-9.0,1,0.0,1,8300.0,1042852,4.0,152 -1218649,1630053828,8189961,2,62,-9.0,1,0.0,1,12300.0,1001264,6.0,152 -1218650,1630053829,8189049,2,58,-9.0,1,0.0,1,8600.0,1073094,6.0,152 -1218651,1630053830,8189682,2,60,-9.0,1,0.0,1,5600.0,1025215,4.0,152 -1218652,1630053831,8185390,2,61,-9.0,1,0.0,1,28000.0,1009585,6.0,152 -1218653,1630053832,8189012,2,57,-9.0,1,0.0,1,5200.0,1073094,4.0,152 -1218654,1630053833,8185096,2,50,-9.0,1,0.0,1,8600.0,1042852,6.0,152 -1218655,1630053834,8188540,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,152 -1218656,1630053835,8185568,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,152 -1218657,1630053836,8187663,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,152 -1218658,1630053837,8189961,2,64,-9.0,1,1.0,1,3300.0,1025215,4.0,152 -1218659,1630053838,8185096,2,64,-9.0,1,1.0,1,7660.0,1009585,4.0,152 -1218660,1630053839,8185910,2,56,4.0,8,0.0,1,11000.0,1001264,3.0,152 -1218661,1630053840,8188570,2,57,-9.0,3,0.0,1,8690.0,1042852,3.0,152 -1218662,1630053841,8193867,2,57,-9.0,3,0.0,1,8690.0,1042852,3.0,152 -1218663,1630053842,8187591,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,152 -1218664,1630053843,8186427,2,49,-9.0,3,0.0,1,10170.0,1001264,1.0,152 -1218665,1630053844,8191344,2,61,-9.0,3,0.0,1,7000.0,1073094,5.0,152 -1218666,1630053845,8192408,2,61,-9.0,3,0.0,1,7000.0,1073094,5.0,152 -1218667,1630053846,8190312,2,57,-9.0,3,0.0,1,8690.0,1042852,3.0,152 -1218668,1630053847,8186427,2,49,-9.0,3,0.0,1,10170.0,1001264,1.0,152 -1218669,1630053848,8192229,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,152 -1218670,1630053849,8185096,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,152 -1218671,1630053850,8192229,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,152 -1218672,1630053851,8194816,2,57,-9.0,3,0.0,1,8690.0,1042852,3.0,152 -1218673,1630053852,8190538,2,45,1.0,3,0.0,1,16900.0,1042852,3.0,152 -1218674,1630053853,8191669,2,45,1.0,2,0.0,1,16900.0,1042852,3.0,152 -1218675,1630053854,8902323,2,45,1.0,3,0.0,1,16900.0,1042852,3.0,152 -1218676,1630053855,8176391,2,45,1.0,3,0.0,1,16900.0,1042852,3.0,152 -1218677,1630053856,8184579,2,59,-9.0,3,1.0,1,1400.0,1009585,1.0,152 -1218678,1630053857,8187591,2,62,1.0,3,1.0,1,15170.0,1042852,1.0,152 -1218679,1630053858,8184435,2,57,-9.0,2,0.0,1,9000.0,1042852,5.0,152 -1218680,1630053859,8192460,2,61,-9.0,2,0.0,1,12700.0,1042852,1.0,152 -1218681,1630053860,8190320,2,53,-9.0,2,0.0,1,3500.0,1009585,1.0,152 -1218682,1630053861,8192408,2,57,-9.0,2,0.0,1,20540.0,1025215,3.0,152 -1218683,1630053862,8188265,2,50,-9.0,2,0.0,1,5100.0,1042852,2.0,152 -1218684,1630053863,8186079,2,50,1.0,2,0.0,1,8100.0,1073094,3.0,152 -1218685,1630053864,8189682,2,51,-9.0,2,1.0,1,8500.0,1009585,1.0,152 -1218686,1630053865,8186427,2,51,-9.0,1,0.0,1,19000.0,1025215,4.0,152 -1218687,1630053866,8190622,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,152 -1218688,1630053867,8187591,2,48,-9.0,1,1.0,1,27700.0,1073094,6.0,152 -1218689,1630053868,8186427,2,46,-9.0,3,0.0,1,1400.0,1025215,3.0,152 -1218690,1630053869,8191634,2,58,-9.0,3,0.0,1,11500.0,1001264,3.0,152 -1218691,1630053870,8186606,2,58,-9.0,3,0.0,1,11500.0,1001264,3.0,152 -1218692,1630053871,8192464,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,152 -1218693,1630053872,8187138,2,49,2.0,3,0.0,1,7000.0,1009585,3.0,152 -1218694,1630053873,8191048,2,45,-9.0,3,1.0,1,11000.0,1042852,3.0,152 -1218695,1630053874,8191289,2,58,1.0,3,1.0,1,23160.0,1025215,1.0,152 -1218696,1630053875,8189049,2,25,1.0,2,0.0,1,4800.0,1042852,3.0,152 -1218697,1630053876,8188845,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,152 -1218698,1630053877,8186677,2,84,-9.0,3,1.0,1,241900.0,1042852,1.0,152 -1218699,1630053878,8189455,2,53,-9.0,6,0.0,1,69300.0,1025215,7.0,152 -1218700,1630053879,8193633,2,30,2.0,3,1.0,1,20600.0,1042852,3.0,152 -1218701,1630053880,8186964,2,54,-9.0,1,0.0,1,7200.0,1042852,6.0,152 -1218702,1630053881,8191991,2,55,1.0,4,0.0,1,11500.0,1042852,1.0,152 -1218703,1630053882,8188265,2,49,-9.0,3,1.0,1,20000.0,1073094,1.0,152 -1218704,1630053883,8189708,2,30,3.0,4,0.0,1,0.0,1073094,3.0,152 -1218705,1630053884,8186940,2,45,-9.0,2,1.0,1,9500.0,1025215,3.0,152 -1218706,1630053885,8193309,2,60,-9.0,1,0.0,1,9600.0,1025215,1.0,152 -1218707,1630053886,8186595,2,57,-9.0,3,1.0,1,16500.0,1042852,1.0,152 -1218708,1630053887,8185390,2,38,3.0,5,1.0,1,21600.0,1042852,1.0,152 -1218709,1630053888,8187591,2,40,-9.0,1,1.0,1,12000.0,1001264,6.0,152 -1218710,1630053889,8188520,2,48,-9.0,1,0.0,1,4800.0,1009585,6.0,152 -1218711,1630053890,8190323,2,45,2.0,3,1.0,1,60000.0,1009585,3.0,152 -1218712,1630053891,8191621,2,87,-9.0,3,0.0,1,52200.0,1009585,3.0,152 -1218713,1630053892,8192011,2,48,4.0,7,1.0,1,0.0,1001264,3.0,152 -1218714,1630053893,8184654,2,54,-9.0,3,2.0,1,101400.0,1009585,1.0,152 -1218715,1630053894,8189049,2,53,-9.0,1,1.0,1,16000.0,1025215,6.0,152 -1218716,1630053895,8194658,2,83,-9.0,1,1.0,1,24400.0,1042852,6.0,152 -1218717,1630053896,8186162,2,64,-9.0,2,1.0,1,102000.0,1042852,1.0,152 -1218718,1630053897,8186505,2,57,-9.0,5,1.0,1,10000.0,1073094,3.0,152 -1218719,1630053898,8188510,2,60,-9.0,3,2.0,1,61200.0,1073094,3.0,152 -1218720,1630053899,8191147,2,63,-9.0,2,2.0,1,124500.0,1025215,1.0,152 -1218721,1630053900,8193764,2,47,-9.0,2,1.0,1,139600.0,1009585,1.0,152 -1218722,1630053901,8187591,2,62,1.0,3,1.0,1,15170.0,1042852,1.0,152 -1218723,1630053902,8194044,2,62,-9.0,1,1.0,1,51700.0,1009585,6.0,152 -1218724,1630053903,8194384,2,54,-9.0,1,1.0,1,13700.0,1042852,6.0,152 -1218725,1630053904,8189937,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,152 -1218726,1630053905,8187377,2,55,1.0,3,0.0,1,11100.0,1073094,3.0,152 -1218727,1630053906,8191438,2,57,-9.0,1,1.0,1,98000.0,1001264,6.0,152 -1218728,1630053907,8186079,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,152 -1218729,1630053908,8193971,2,50,2.0,5,3.0,1,18100.0,1001264,1.0,152 -1218730,1630053909,8188812,2,59,-9.0,3,0.0,1,82600.0,1009585,3.0,152 -1218731,1630053910,8189049,2,43,1.0,5,0.0,1,9200.0,1025215,3.0,152 -1218732,1630053911,8189950,2,45,-9.0,3,0.0,1,40800.0,1042852,3.0,152 -1218733,1630053912,8190741,2,59,-9.0,1,1.0,1,22100.0,1025215,1.0,152 -1218734,1630053913,8186427,2,44,1.0,2,1.0,1,14500.0,1042852,3.0,152 -1218735,1630053914,8189045,2,44,5.0,11,0.0,1,25300.0,1009585,3.0,152 -1218736,1630053915,8192163,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,152 -1218737,1630053916,8187003,2,48,-9.0,2,5.0,1,110000.0,1025215,1.0,152 -1218738,1630053917,8189045,2,80,-9.0,3,2.0,1,17300.0,1073094,3.0,152 -1218739,1630053918,8185187,2,61,1.0,3,1.0,1,44600.0,1042852,3.0,152 -1218740,1630053919,8185096,2,42,1.0,3,0.0,1,8900.0,1073094,3.0,152 -1218741,1630053920,8194909,2,60,-9.0,2,2.0,1,142000.0,1001264,1.0,152 -1218742,1630053921,8186088,2,81,-9.0,2,1.0,1,52600.0,1042852,3.0,152 -1218743,1630053922,8191103,2,58,-9.0,3,2.0,1,36400.0,1001264,1.0,152 -1218744,1630053923,8182638,2,52,-9.0,2,0.0,1,4100.0,1009585,3.0,152 -1218745,1630053924,8190400,2,46,1.0,3,2.0,1,42000.0,1009585,1.0,152 -1218746,1630053925,8192163,2,93,-9.0,2,1.0,1,125100.0,1025215,3.0,152 -1218747,1630053926,8190365,2,45,1.0,3,0.0,1,16900.0,1042852,3.0,152 -1218748,1630053927,8185096,2,55,-9.0,1,1.0,1,28600.0,1009585,1.0,152 -1218749,1630053928,8190729,2,61,-9.0,2,2.0,1,12800.0,1073094,7.0,152 -1218750,1630053929,8194430,2,36,4.0,5,0.0,1,13000.0,1042852,3.0,152 -1218751,1630053930,8192812,2,77,3.0,5,1.0,1,21600.0,1042852,3.0,152 -1218752,1630053931,8185850,2,65,-9.0,3,1.0,1,42000.0,1025215,3.0,152 -1218753,1630053932,8186754,2,47,2.0,3,0.0,1,24600.0,1042852,2.0,152 -1218754,1630053933,8186210,2,64,1.0,5,1.0,1,11000.0,1042852,3.0,152 -1218755,1630053934,8184435,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,152 -1218756,1630053935,8191473,2,64,-9.0,2,1.0,1,43100.0,1042852,3.0,152 -1218757,1630053936,8186209,2,61,-9.0,3,0.0,1,7000.0,1073094,5.0,152 -1218758,1630053937,8185568,2,59,1.0,2,1.0,1,14880.0,1042852,3.0,152 -1218759,1630053938,8191183,2,62,-9.0,1,0.0,1,11200.0,1042852,6.0,152 -1218760,1630053939,8186162,2,47,5.0,10,0.0,1,5400.0,1009585,1.0,152 -1218761,1630053940,8187205,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,152 -1218762,1630053941,8191738,2,82,-9.0,3,2.0,1,30600.0,1001264,3.0,152 -1218763,1630053942,8185568,2,48,1.0,3,1.0,1,26000.0,1042852,1.0,152 -1218764,1630053943,8190473,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,152 -1218765,1630053944,8191551,2,37,2.0,4,1.0,1,7800.0,1009585,1.0,152 -1218766,1630053945,8185568,2,75,-9.0,2,0.0,1,185800.0,1009585,3.0,152 -1218767,1630053946,8187556,2,89,-9.0,3,1.0,1,29900.0,1009585,3.0,152 -1218768,1630053947,8193062,2,59,5.0,7,2.0,1,21600.0,1001264,3.0,152 -1218769,1630053948,8190192,2,93,-9.0,3,0.0,1,57300.0,1025215,3.0,152 -1218770,1630053949,8187025,2,61,-9.0,1,1.0,1,30300.0,1001264,6.0,152 -1218771,1630053950,8190918,2,61,-9.0,2,3.0,1,184000.0,1025215,2.0,152 -1218772,1630053951,8194580,2,51,-9.0,2,0.0,1,7200.0,1025215,1.0,152 -1218773,1630053952,8193194,2,56,-9.0,2,1.0,1,102000.0,1042852,1.0,152 -1218774,1630053953,8187048,2,82,-9.0,1,1.0,1,43400.0,1042852,6.0,152 -1218775,1630053954,8186057,2,51,4.0,5,0.0,1,1920.0,1025215,3.0,152 -1218776,1630053955,8189360,2,58,-9.0,3,1.0,1,92000.0,1042852,1.0,152 -1218777,1630053956,8191899,2,57,-9.0,4,2.0,1,100200.0,1001264,1.0,152 -1218778,1630053957,8186289,2,54,-9.0,2,2.0,1,28000.0,1025215,1.0,152 -1218779,1630053958,8193648,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,152 -1218780,1630053959,8185122,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,152 -1218781,1630053960,8192326,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,152 -1218782,1630053961,8186846,2,50,1.0,4,1.0,1,36550.0,1001264,1.0,152 -1218783,1630053962,8188121,2,32,1.0,3,1.0,1,10000.0,1009585,1.0,152 -1218784,1630053963,8184540,2,76,-9.0,2,1.0,1,10000.0,1025215,3.0,152 -1218785,1630053964,8186910,2,60,-9.0,1,0.0,1,260400.0,1001264,6.0,152 -1218786,1630053965,8188364,2,46,-9.0,3,0.0,1,23400.0,1001264,1.0,152 -1218787,1630053966,8184699,2,59,-9.0,3,3.0,1,13400.0,1025215,1.0,152 -1218788,1630053967,8194506,2,50,1.0,4,3.0,1,237000.0,1025215,1.0,152 -1218789,1630053968,8191344,2,35,5.0,8,1.0,1,24600.0,1073094,2.0,152 -1218790,1630053969,8186079,2,51,1.0,2,1.0,1,2100.0,1025215,3.0,152 -1218791,1630053970,8192901,2,55,-9.0,3,0.0,1,34150.0,1042852,3.0,152 -1218792,1630053971,8187945,2,56,-9.0,2,2.0,1,43000.0,1001264,1.0,152 -1218793,1630053972,8186209,2,32,1.0,2,1.0,1,13600.0,1001264,3.0,152 -1218794,1630053973,8187351,2,78,2.0,5,0.0,1,35300.0,1042852,3.0,152 -1218795,1630053974,8186797,2,52,1.0,4,5.0,1,91300.0,1025215,1.0,152 -1218796,1630053975,8181207,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,152 -1218797,1630053976,8192340,2,44,1.0,3,1.0,1,12200.0,1025215,1.0,152 -1218798,1630053977,8191589,2,59,-9.0,2,1.0,1,80000.0,1073094,3.0,152 -1218799,1630053978,8186378,2,88,-9.0,3,1.0,1,71200.0,1025215,2.0,152 -1218800,1630053979,8189302,2,73,-9.0,2,2.0,1,28300.0,1025215,3.0,152 -1218801,1630053980,8188615,2,44,1.0,3,0.0,1,170.0,1009585,3.0,152 -1218802,1630053981,8183881,2,50,-9.0,3,1.0,1,24400.0,1001264,1.0,152 -1246023,1630081202,8030379,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,185 -1246024,1630081203,8030379,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,185 -1246025,1630081204,8030379,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,185 -1246026,1630081205,8030379,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,185 -1246027,1630081206,8030379,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,185 -1246028,1630081207,8030379,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,185 -1246029,1630081208,8030716,1,27,-9.0,1,1.0,1,113000.0,1025215,1.0,193 -1246030,1630081209,8030716,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,193 -1246031,1630081210,8030716,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,193 -1246032,1630081211,8030716,1,27,-9.0,1,1.0,1,113000.0,1025215,1.0,193 -1246033,1630081212,8030379,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,185 -1246034,1630081213,8030379,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,185 -1246035,1630081214,8030379,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,185 -1246036,1630081215,8030379,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,185 -1246037,1630081216,8030379,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,185 -1246038,1630081217,8030716,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,193 -1246039,1630081218,8030716,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,193 -1246040,1630081219,8030379,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,185 -1246041,1630081220,8030379,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,185 -1246042,1630081221,8030379,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,185 -1246043,1630081222,8030379,1,31,-9.0,2,2.0,1,404000.0,1025215,7.0,185 -1246044,1630081223,8030379,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,185 -1246045,1630081224,8030379,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,185 -1246046,1630081225,8030379,1,31,-9.0,2,2.0,1,404000.0,1025215,7.0,185 -1246047,1630081226,8030379,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,185 -1246048,1630081227,8030379,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,185 -1246049,1630081228,8030379,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,185 -1246050,1630081229,8030379,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,185 -1246051,1630081230,8030379,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,185 -1246052,1630081231,8030379,1,31,-9.0,2,2.0,1,404000.0,1025215,7.0,185 -1246053,1630081232,8030379,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,185 -1246054,1630081233,8030379,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,185 -1246055,1630081234,8030379,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,185 -1246056,1630081235,8030379,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,185 -1246057,1630081236,8030379,2,29,-9.0,1,0.0,1,37000.0,1042852,4.0,185 -1246058,1630081237,8423469,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,185 -1246059,1630081238,8423469,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,185 -1246060,1630081239,8030379,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,185 -1246061,1630081240,8030379,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,185 -1246062,1630081241,8030379,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,185 -1246063,1630081242,8030379,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,185 -1246064,1630081243,8030379,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,185 -1246065,1630081244,8030379,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,185 -1246066,1630081245,8030379,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,185 -1246067,1630081246,8030379,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,185 -1246068,1630081247,8030379,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,185 -1246069,1630081248,8030379,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,185 -1246070,1630081249,8030379,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,185 -1246071,1630081250,8030379,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,185 -1246072,1630081251,8030379,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,185 -1246073,1630081252,8030379,2,25,-9.0,1,1.0,1,34000.0,1025215,6.0,185 -1246074,1630081253,8030379,2,32,-9.0,1,1.0,1,54000.0,1009585,6.0,185 -1246075,1630081254,8030716,2,42,-9.0,1,1.0,1,55000.0,1025215,4.0,193 -1246076,1630081255,8030379,2,25,-9.0,1,1.0,1,34000.0,1025215,6.0,185 -1246077,1630081256,8030379,2,32,-9.0,1,1.0,1,54000.0,1009585,6.0,185 -1246078,1630081257,8030379,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,185 -1246079,1630081258,8030379,2,26,-9.0,1,1.0,1,40000.0,1042852,6.0,185 -1246080,1630081259,8030379,2,26,-9.0,1,1.0,1,40000.0,1042852,6.0,185 -1246081,1630081260,8030716,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,193 -1246082,1630081261,8030716,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,193 -1246083,1630081262,8030379,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,185 -1246084,1630081263,8030716,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,193 -1246085,1630081264,8030379,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,185 -1246086,1630081265,8030379,2,29,-9.0,1,1.0,1,50000.0,1001264,6.0,185 -1246087,1630081266,8030716,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,193 -1246088,1630081267,8030379,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,185 -1246089,1630081268,8030716,3,27,-9.0,1,1.0,1,55000.0,1025215,6.0,193 -1246090,1630081269,8030379,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,185 -1246091,1630081270,8030379,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,185 -1246092,1630081271,8030379,4,28,-9.0,1,1.0,1,50000.0,1073094,4.0,185 -1246093,1630081272,8030379,4,28,-9.0,1,1.0,1,50000.0,1073094,4.0,185 -1246094,1630081273,8423469,4,41,-9.0,1,1.0,1,30000.0,1001264,4.0,185 -1246095,1630081274,8030379,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,185 -1246096,1630081275,8030379,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,185 -1246097,1630081276,8030379,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,185 -1246098,1630081277,8030716,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,193 -1246099,1630081278,8030379,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,185 -1246100,1630081279,8030379,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,185 -1246101,1630081280,8031375,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,149 -1246102,1630081281,8030716,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,193 -1246103,1630081282,8030379,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,185 -1246104,1630081283,8030379,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,185 -1246105,1630081284,8127489,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,187 -1246106,1630081285,8030379,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,185 -1246107,1630081286,8030379,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,185 -1246108,1630081287,8030379,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,185 -1246109,1630081288,8030379,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,185 -1246110,1630081289,8030379,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,185 -1246111,1630081290,8030379,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,185 -1246112,1630081291,8030716,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,193 -1246113,1630081292,8423469,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,185 -1246114,1630081293,8030716,2,36,-9.0,1,2.0,1,33000.0,1001264,4.0,193 -1246115,1630081294,8030379,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,185 -1246116,1630081295,8030716,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,193 -1246117,1630081296,8030379,1,25,-9.0,2,2.0,1,48000.0,1042852,7.0,185 -1246118,1630081297,8030716,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,193 -1246119,1630081298,8030379,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,185 -1246120,1630081299,8030716,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,193 -1246121,1630081300,8030379,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,185 -1246122,1630081301,8030379,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,185 -1246123,1630081302,8030379,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,185 -1246124,1630081303,8030379,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,185 -1246125,1630081304,8030379,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,185 -1246126,1630081305,8030379,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,185 -1246127,1630081306,8030379,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,185 -1246128,1630081307,8030379,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,185 -1246129,1630081308,8030379,2,31,-9.0,1,1.0,1,60000.0,1042852,4.0,185 -1246130,1630081309,8030379,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,185 -1246131,1630081310,8030379,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,185 -1246132,1630081311,8030379,2,41,-9.0,1,1.0,1,80000.0,1073094,6.0,185 -1246133,1630081312,8030716,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,193 -1246134,1630081313,8030379,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,185 -1246135,1630081314,8030716,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,193 -1246136,1630081315,8030716,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,193 -1246137,1630081316,8030379,2,41,-9.0,1,1.0,1,62000.0,1073094,6.0,185 -1246138,1630081317,8030379,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,185 -1246139,1630081318,8030379,2,41,-9.0,1,1.0,1,62000.0,1073094,6.0,185 -1246140,1630081319,8030379,2,41,-9.0,1,1.0,1,80000.0,1073094,6.0,185 -1246141,1630081320,8030379,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,185 -1246142,1630081321,8030379,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,185 -1246143,1630081322,8030379,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,185 -1246144,1630081323,8030379,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,185 -1246145,1630081324,8030379,1,28,-9.0,1,1.0,1,62000.0,1009585,6.0,185 -1246146,1630081325,8030379,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,185 -1246147,1630081326,8030379,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,185 -1246148,1630081327,8030379,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,185 -1246149,1630081328,8030379,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,185 -1246150,1630081329,8030379,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,185 -1246151,1630081330,8030379,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,185 -1246152,1630081331,8030379,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,185 -1246153,1630081332,8030379,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,185 -1246154,1630081333,8030379,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,185 -1246155,1630081334,8030379,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,185 -1246156,1630081335,8030379,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,185 -1246157,1630081336,8030379,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,185 -1246158,1630081337,8030379,1,28,-9.0,1,1.0,1,62000.0,1009585,6.0,185 -1246159,1630081338,8030379,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,185 -1246160,1630081339,8030379,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,185 -1246161,1630081340,8030379,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,185 -1246162,1630081341,8030379,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,185 -1246163,1630081342,8030379,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,185 -1246164,1630081343,8030379,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,185 -1246165,1630081344,8030379,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,185 -1246166,1630081345,8030379,1,37,-9.0,1,1.0,1,63900.0,1025215,5.0,185 -1246167,1630081346,8030379,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,185 -1246168,1630081347,8030716,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,193 -1246169,1630081348,8030716,2,26,-9.0,2,1.0,1,73000.0,1001264,1.0,193 -1246170,1630081349,8030379,1,25,-9.0,2,1.0,1,75000.0,1001264,5.0,185 -1246171,1630081350,8030379,1,25,-9.0,2,1.0,1,75000.0,1001264,5.0,185 -1246172,1630081351,8030379,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,185 -1246173,1630081352,8030379,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,185 -1246174,1630081353,8030379,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,185 -1246175,1630081354,8030716,1,26,-9.0,2,2.0,1,80000.0,1001264,5.0,193 -1246176,1630081355,8030379,1,28,-9.0,2,2.0,1,94000.0,1001264,7.0,185 -1246177,1630081356,8030716,1,34,-9.0,2,2.0,1,70000.0,1042852,7.0,193 -1246178,1630081357,8423469,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,185 -1246179,1630081358,8030379,1,31,-9.0,2,2.0,1,84000.0,1073094,1.0,185 -1246180,1630081359,8030716,1,26,-9.0,2,2.0,1,80000.0,1001264,5.0,193 -1246181,1630081360,8423469,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,185 -1246182,1630081361,8030379,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,185 -1246183,1630081362,8030716,2,28,-9.0,1,0.0,1,7800.0,1025215,4.0,193 -1246184,1630081363,8030716,2,44,-9.0,1,0.0,1,9350.0,1025215,6.0,193 -1246185,1630081364,8030716,2,43,-9.0,1,0.0,1,8700.0,1009585,6.0,193 -1246186,1630081365,8030379,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,185 -1246187,1630081366,8030716,2,44,-9.0,1,1.0,1,15300.0,1009585,6.0,193 -1246188,1630081367,8030379,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,185 -1246189,1630081368,8030716,2,42,-9.0,1,1.0,1,0.0,1025215,6.0,193 -1246190,1630081369,8030716,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,193 -1246191,1630081370,8030716,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,193 -1246192,1630081371,8030716,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,193 -1246193,1630081372,8030379,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,185 -1246194,1630081373,8030379,2,42,-9.0,1,0.0,1,27000.0,1025215,6.0,185 -1246195,1630081374,8030379,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,185 -1246196,1630081375,8030716,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,193 -1246197,1630081376,8423469,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,185 -1246198,1630081377,8030716,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,193 -1246199,1630081378,8030716,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,193 -1246200,1630081379,8423469,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,185 -1246201,1630081380,8423469,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,185 -1246202,1630081381,8423469,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,185 -1246203,1630081382,8030379,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,185 -1246204,1630081383,8030716,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,193 -1246205,1630081384,8030379,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,185 -1246206,1630081385,8030716,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,193 -1246207,1630081386,8030379,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,185 -1246208,1630081387,8423469,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,185 -1246209,1630081388,8030379,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,185 -1246210,1630081389,8030379,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,185 -1246211,1630081390,8030379,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,185 -1246212,1630081391,8030379,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,185 -1246213,1630081392,8030379,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,185 -1246214,1630081393,8030379,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,185 -1246215,1630081394,8030379,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,185 -1246216,1630081395,8030379,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,185 -1246217,1630081396,8030379,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,185 -1246218,1630081397,8030716,2,29,-9.0,1,1.0,1,9000.0,1009585,4.0,193 -1246219,1630081398,8030379,2,42,-9.0,1,1.0,1,24000.0,1001264,6.0,185 -1246220,1630081399,8423469,2,29,-9.0,1,1.0,1,24000.0,1009585,6.0,185 -1246221,1630081400,8030716,2,26,-9.0,1,1.0,1,13000.0,1073094,6.0,193 -1246222,1630081401,8030379,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,185 -1246223,1630081402,8030379,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,185 -1246224,1630081403,8030379,2,42,-9.0,1,1.0,1,24000.0,1001264,6.0,185 -1246225,1630081404,8030716,2,29,-9.0,1,1.0,1,9000.0,1009585,4.0,193 -1246226,1630081405,8030716,2,26,-9.0,1,1.0,1,13000.0,1073094,6.0,193 -1246227,1630081406,8030716,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,193 -1246228,1630081407,8030379,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,185 -1246229,1630081408,8030716,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,193 -1246230,1630081409,8030716,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,193 -1246231,1630081410,8030379,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,185 -1246232,1630081411,8030379,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,185 -1246233,1630081412,8030379,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,185 -1246234,1630081413,8030379,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,185 -1246235,1630081414,8030379,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,185 -1246236,1630081415,8030379,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,185 -1246237,1630081416,8030379,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,185 -1246238,1630081417,8030379,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,185 -1246239,1630081418,8030379,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,185 -1246240,1630081419,8030379,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,185 -1246241,1630081420,8030379,1,31,-9.0,1,1.0,1,18000.0,1001264,6.0,185 -1246242,1630081421,8030379,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,185 -1246243,1630081422,8030379,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,185 -1246244,1630081423,8030379,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,185 -1246245,1630081424,8030379,1,31,-9.0,1,1.0,1,18000.0,1001264,6.0,185 -1246246,1630081425,8030379,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,185 -1246247,1630081426,8030379,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,185 -1246248,1630081427,8030379,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,185 -1246249,1630081428,8030379,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,185 -1246250,1630081429,8030379,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,185 -1246251,1630081430,8030379,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,185 -1246252,1630081431,8030716,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,193 -1246253,1630081432,8030379,2,32,-9.0,2,1.0,1,28600.0,1009585,1.0,185 -1246254,1630081433,8030716,2,26,-9.0,2,1.0,1,20000.0,1042852,5.0,193 -1246255,1630081434,8030716,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,193 -1246256,1630081435,8030716,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,193 -1246257,1630081436,8030716,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,193 -1246258,1630081437,8030716,2,58,-9.0,1,1.0,1,109000.0,1073094,6.0,193 -1246259,1630081438,8030716,2,58,-9.0,1,1.0,1,109000.0,1073094,6.0,193 -1246260,1630081439,8030716,2,58,-9.0,1,1.0,1,109000.0,1073094,6.0,193 -1246261,1630081440,8030379,2,60,-9.0,1,1.0,1,164000.0,1009585,4.0,185 -1246262,1630081441,8030379,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,185 -1246263,1630081442,8030379,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,185 -1246264,1630081443,8030379,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,185 -1246265,1630081444,8030379,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,185 -1246266,1630081445,8030379,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,185 -1246267,1630081446,8030379,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,185 -1246268,1630081447,8030379,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,185 -1246269,1630081448,8030379,1,59,-9.0,1,1.0,1,318000.0,1073094,4.0,185 -1246270,1630081449,8030379,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,185 -1246271,1630081450,8030379,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,185 -1246272,1630081451,8030379,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,185 -1246273,1630081452,8030379,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,185 -1246274,1630081453,8030379,1,59,-9.0,1,1.0,1,318000.0,1073094,4.0,185 -1246275,1630081454,8030379,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,185 -1246276,1630081455,8030379,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,185 -1246277,1630081456,8030379,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,185 -1246278,1630081457,8030379,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,185 -1246279,1630081458,8030379,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,185 -1246280,1630081459,8030379,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,185 -1246281,1630081460,8030716,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,193 -1246282,1630081461,8030379,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,185 -1246283,1630081462,8030379,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,185 -1246284,1630081463,8030379,2,58,-9.0,1,0.0,1,45000.0,1009585,6.0,185 -1246285,1630081464,8030716,2,55,-9.0,1,0.0,1,50000.0,1025215,6.0,193 -1246286,1630081465,8030716,2,61,-9.0,1,0.0,1,49000.0,1073094,6.0,193 -1246287,1630081466,8423469,2,45,-9.0,1,0.0,1,31300.0,1001264,4.0,185 -1246288,1630081467,8030716,2,62,-9.0,1,1.0,1,37000.0,1009585,6.0,193 -1246289,1630081468,8423469,2,60,-9.0,1,1.0,1,36000.0,1001264,4.0,185 -1246290,1630081469,8030379,2,59,-9.0,1,1.0,1,50020.0,1001264,6.0,185 -1246291,1630081470,8030716,2,56,-9.0,1,1.0,1,39000.0,1009585,4.0,193 -1246292,1630081471,8030716,2,63,-9.0,1,1.0,1,36600.0,1042852,4.0,193 -1246293,1630081472,8030379,2,60,-9.0,1,1.0,1,49000.0,1042852,6.0,185 -1246294,1630081473,8030379,2,50,-9.0,1,1.0,1,32000.0,1001264,6.0,185 -1246295,1630081474,8030379,2,56,-9.0,1,1.0,1,33000.0,1073094,6.0,185 -1246296,1630081475,8030716,2,53,-9.0,1,1.0,1,42000.0,1042852,4.0,193 -1246297,1630081476,8030379,2,59,-9.0,1,1.0,1,32000.0,1042852,4.0,185 -1246298,1630081477,8423469,2,50,-9.0,1,1.0,1,38000.0,1073094,6.0,185 -1246299,1630081478,8030716,2,53,-9.0,1,1.0,1,42000.0,1042852,4.0,193 -1246300,1630081479,8030716,2,50,-9.0,1,1.0,1,50000.0,1073094,4.0,193 -1246301,1630081480,8030379,2,54,-9.0,1,1.0,1,38000.0,1073094,6.0,185 -1246302,1630081481,8030716,1,61,-9.0,1,1.0,1,57000.0,1025215,4.0,193 -1246303,1630081482,8030716,1,63,-9.0,1,1.0,1,36000.0,1025215,6.0,193 -1246304,1630081483,8030379,1,60,-9.0,1,1.0,1,38000.0,1025215,6.0,185 -1246305,1630081484,8030379,1,60,-9.0,1,1.0,1,38000.0,1025215,6.0,185 -1246306,1630081485,8030379,3,54,-9.0,1,1.0,1,52000.0,1009585,4.0,185 -1246307,1630081486,8030716,2,46,-9.0,1,2.0,1,31500.0,1009585,6.0,193 -1246308,1630081487,8030379,2,45,-9.0,2,1.0,1,40200.0,1042852,3.0,185 -1246309,1630081488,8030716,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,193 -1246310,1630081489,8030716,2,53,-9.0,2,2.0,1,30000.0,1042852,3.0,193 -1246311,1630081490,8030379,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,185 -1246312,1630081491,8030379,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,185 -1246313,1630081492,8030716,2,58,-9.0,1,0.0,1,94300.0,1025215,6.0,193 -1246314,1630081493,8030379,2,56,-9.0,1,1.0,1,64900.0,1009585,6.0,185 -1246315,1630081494,8423469,2,61,-9.0,1,1.0,1,66000.0,1009585,4.0,185 -1246316,1630081495,8030716,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,193 -1246317,1630081496,8030716,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,193 -1246318,1630081497,8030716,2,45,-9.0,1,1.0,1,81000.0,1009585,4.0,193 -1246319,1630081498,8030716,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,193 -1246320,1630081499,8030379,1,57,-9.0,1,1.0,1,72000.0,1042852,6.0,185 -1246321,1630081500,8030379,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,185 -1246322,1630081501,8030379,1,55,-9.0,1,1.0,1,92000.0,1009585,6.0,185 -1246323,1630081502,8030379,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,185 -1246324,1630081503,8030716,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,193 -1246325,1630081504,8030716,2,50,-9.0,2,1.0,1,74300.0,1009585,3.0,193 -1246326,1630081505,8030379,2,45,-9.0,2,1.0,1,85000.0,1073094,2.0,185 -1246327,1630081506,8030716,2,61,-9.0,1,0.0,1,18000.0,1042852,6.0,193 -1246328,1630081507,8030379,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,185 -1246329,1630081508,8423469,2,46,-9.0,1,0.0,1,0.0,1025215,4.0,185 -1246330,1630081509,8423469,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,185 -1246331,1630081510,8030716,2,58,-9.0,1,0.0,1,0.0,1025215,4.0,193 -1246332,1630081511,8030716,2,55,-9.0,1,0.0,1,8500.0,1009585,6.0,193 -1246333,1630081512,8030716,2,53,-9.0,1,0.0,1,9420.0,1009585,6.0,193 -1246334,1630081513,8030716,2,57,-9.0,1,0.0,1,13900.0,1073094,4.0,193 -1246335,1630081514,8030716,2,52,-9.0,1,0.0,1,8800.0,1001264,6.0,193 -1246336,1630081515,8423469,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,185 -1246337,1630081516,8423469,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,185 -1246338,1630081517,8030716,2,47,-9.0,1,0.0,1,6900.0,1025215,6.0,193 -1246339,1630081518,8030716,2,64,-9.0,1,0.0,1,4610.0,1025215,6.0,193 -1246340,1630081519,8030716,2,54,-9.0,1,0.0,1,10000.0,1001264,4.0,193 -1246341,1630081520,8030716,2,60,-9.0,1,0.0,1,5600.0,1025215,4.0,193 -1246342,1630081521,8030716,2,48,-9.0,1,0.0,1,12200.0,1009585,6.0,193 -1246343,1630081522,8423469,2,55,-9.0,1,0.0,1,10800.0,1025215,6.0,185 -1246344,1630081523,8030716,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,193 -1246345,1630081524,8030379,2,51,-9.0,1,0.0,1,0.0,1001264,6.0,185 -1246346,1630081525,8030379,2,51,-9.0,1,0.0,1,0.0,1001264,6.0,185 -1246347,1630081526,8030716,1,51,-9.0,1,0.0,1,0.0,1042852,6.0,193 -1246348,1630081527,8030716,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,193 -1246349,1630081528,8030379,2,56,-9.0,1,1.0,1,0.0,1025215,6.0,185 -1246350,1630081529,8030379,2,63,-9.0,1,1.0,1,1780.0,1009585,6.0,185 -1246351,1630081530,8030716,2,62,-9.0,1,1.0,1,0.0,1042852,4.0,193 -1246352,1630081531,8030379,2,53,-9.0,1,1.0,1,13200.0,1025215,4.0,185 -1246353,1630081532,8030716,2,57,-9.0,1,0.0,1,20540.0,1025215,3.0,193 -1246354,1630081533,8423469,2,51,-9.0,2,0.0,1,24000.0,1073094,7.0,185 -1246355,1630081534,8030716,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,193 -1246356,1630081535,8030716,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,193 -1246357,1630081536,8030379,2,64,-9.0,1,0.0,1,15000.0,1025215,4.0,185 -1246358,1630081537,8030716,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,193 -1246359,1630081538,8030716,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,193 -1246360,1630081539,8423469,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,185 -1246361,1630081540,8030379,2,60,-9.0,1,0.0,1,26000.0,1025215,4.0,185 -1246362,1630081541,8030379,2,54,-9.0,1,0.0,1,21000.0,1009585,4.0,185 -1246363,1630081542,8030379,2,58,-9.0,1,0.0,1,12000.0,1025215,6.0,185 -1246364,1630081543,8423469,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,185 -1246365,1630081544,8030716,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,193 -1246366,1630081545,8030716,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,193 -1246367,1630081546,8423469,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,185 -1246368,1630081547,8030379,2,47,-9.0,1,0.0,1,20600.0,1073094,6.0,185 -1246369,1630081548,8030379,2,58,-9.0,1,0.0,1,12000.0,1025215,6.0,185 -1246370,1630081549,8030379,2,54,-9.0,1,0.0,1,21000.0,1009585,4.0,185 -1246371,1630081550,8030716,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,193 -1246372,1630081551,8030716,2,59,-9.0,1,0.0,1,11300.0,1042852,6.0,193 -1246373,1630081552,8030716,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,193 -1246374,1630081553,8030716,2,45,-9.0,1,0.0,1,1700.0,1073094,4.0,193 -1246375,1630081554,8030379,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,185 -1246376,1630081555,8030379,2,62,-9.0,1,1.0,1,22000.0,1009585,6.0,185 -1246377,1630081556,8030716,2,58,-9.0,1,1.0,1,29600.0,1009585,6.0,193 -1246378,1630081557,8030379,2,51,-9.0,1,1.0,1,4500.0,1001264,6.0,185 -1246379,1630081558,8030716,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,193 -1246380,1630081559,8030716,2,60,-9.0,1,1.0,1,28000.0,1001264,6.0,193 -1246381,1630081560,8030716,2,60,-9.0,1,1.0,1,12000.0,1001264,4.0,193 -1246382,1630081561,8030379,2,48,-9.0,1,1.0,1,19200.0,1001264,6.0,185 -1246383,1630081562,8030716,2,60,-9.0,1,1.0,1,12000.0,1001264,4.0,193 -1246384,1630081563,8030379,2,48,-9.0,1,1.0,1,6000.0,1025215,6.0,185 -1246385,1630081564,8030716,2,60,-9.0,1,1.0,1,12000.0,1001264,4.0,193 -1246386,1630081565,8030379,2,48,-9.0,1,1.0,1,6000.0,1025215,6.0,185 -1246387,1630081566,8030379,4,50,-9.0,1,1.0,1,27000.0,1009585,6.0,185 -1246388,1630081567,8030379,3,51,-9.0,1,1.0,1,29000.0,1042852,6.0,185 -1246389,1630081568,8030379,1,56,-9.0,1,1.0,1,18000.0,1042852,4.0,185 -1246390,1630081569,8030379,1,56,-9.0,1,1.0,1,18000.0,1042852,4.0,185 -1246391,1630081570,8030716,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,193 -1246392,1630081571,8030716,1,46,-9.0,1,1.0,1,20000.0,1001264,4.0,193 -1246393,1630081572,8030379,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,185 -1246394,1630081573,8423469,2,52,-9.0,2,0.0,1,4100.0,1009585,3.0,185 -1246395,1630081574,8423469,2,52,-9.0,2,0.0,1,4100.0,1009585,3.0,185 -1246396,1630081575,8030716,2,60,-9.0,2,1.0,1,2700.0,1009585,3.0,193 -1246397,1630081576,8030716,2,54,-9.0,2,1.0,1,18300.0,1073094,5.0,193 -1246398,1630081577,8030716,2,47,-9.0,2,1.0,1,19300.0,1042852,7.0,193 -1246399,1630081578,8030716,2,55,-9.0,1,1.0,1,9800.0,1042852,3.0,193 -1246400,1630081579,8030716,2,73,-9.0,1,1.0,1,128300.0,1001264,6.0,193 -1246401,1630081580,8030716,2,73,-9.0,1,1.0,1,128300.0,1001264,6.0,193 -1246402,1630081581,8030379,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,185 -1246403,1630081582,8030379,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,185 -1246404,1630081583,8030379,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,185 -1246405,1630081584,8030379,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,185 -1246406,1630081585,8030379,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,185 -1246407,1630081586,8030379,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,185 -1246408,1630081587,8030379,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,185 -1246409,1630081588,8030379,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,185 -1246410,1630081589,8030379,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,185 -1246411,1630081590,8030379,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,185 -1246412,1630081591,8030379,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,185 -1246413,1630081592,8030379,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,185 -1246414,1630081593,8030379,2,70,-9.0,2,3.0,1,100000.0,1042852,1.0,185 -1246415,1630081594,8030379,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,185 -1246416,1630081595,8030379,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,185 -1246417,1630081596,8030379,2,68,-9.0,2,0.0,1,126000.0,1001264,5.0,185 -1246418,1630081597,8030716,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,193 -1246419,1630081598,8030716,2,68,-9.0,1,1.0,1,34800.0,1042852,6.0,193 -1246420,1630081599,8030716,3,69,-9.0,1,0.0,1,51400.0,1001264,4.0,193 -1246421,1630081600,8030716,2,75,-9.0,1,1.0,1,49800.0,1042852,6.0,193 -1246422,1630081601,8030716,2,66,-9.0,1,1.0,1,32000.0,1001264,4.0,193 -1246423,1630081602,8030716,2,65,-9.0,1,1.0,1,31700.0,1001264,1.0,193 -1246424,1630081603,8030379,2,69,-9.0,1,1.0,1,70010.0,1001264,6.0,185 -1246425,1630081604,8030379,2,69,-9.0,1,1.0,1,70010.0,1001264,6.0,185 -1246426,1630081605,8030716,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,193 -1246427,1630081606,8030379,2,81,-9.0,1,0.0,1,20000.0,1025215,6.0,185 -1246428,1630081607,8030716,2,78,-9.0,1,0.0,1,9200.0,1001264,6.0,193 -1246429,1630081608,8423469,2,74,-9.0,1,0.0,1,12000.0,1009585,6.0,185 -1246430,1630081609,8030716,2,66,-9.0,1,0.0,1,10100.0,1009585,6.0,193 -1246431,1630081610,8030716,2,86,-9.0,1,0.0,1,8100.0,1073094,4.0,193 -1246432,1630081611,8423469,2,69,-9.0,1,0.0,1,12600.0,1025215,6.0,185 -1246433,1630081612,8030716,2,67,-9.0,1,0.0,1,8300.0,1073094,6.0,193 -1246434,1630081613,8423469,2,79,-9.0,1,0.0,1,9100.0,1073094,6.0,185 -1246435,1630081614,8030716,2,65,-9.0,1,0.0,1,430.0,1025215,6.0,193 -1246436,1630081615,8030716,2,75,-9.0,1,0.0,1,9600.0,1009585,4.0,193 -1246437,1630081616,8030379,2,68,-9.0,1,0.0,1,7200.0,1042852,6.0,185 -1246438,1630081617,8423469,2,65,-9.0,1,0.0,1,17000.0,1009585,6.0,185 -1246439,1630081618,8030379,2,68,-9.0,1,0.0,1,17360.0,1009585,6.0,185 -1246440,1630081619,8030716,2,73,-9.0,1,0.0,1,8400.0,1042852,6.0,193 -1246441,1630081620,8030716,2,94,-9.0,1,0.0,1,25200.0,1042852,4.0,193 -1246442,1630081621,8030716,2,74,-9.0,1,0.0,1,14300.0,1025215,6.0,193 -1246443,1630081622,8030716,2,80,-9.0,1,0.0,1,12700.0,1073094,6.0,193 -1246444,1630081623,8030716,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,193 -1246445,1630081624,8030716,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,193 -1246446,1630081625,8030716,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,193 -1246447,1630081626,8030379,2,76,-9.0,1,1.0,1,23000.0,1042852,6.0,185 -1246448,1630081627,8423469,2,69,-9.0,1,1.0,1,3100.0,1001264,6.0,185 -1246449,1630081628,8030379,2,69,-9.0,1,1.0,1,10800.0,1042852,6.0,185 -1246450,1630081629,8030716,2,80,-9.0,1,1.0,1,8530.0,1042852,6.0,193 -1246451,1630081630,8030379,2,69,-9.0,1,1.0,1,10800.0,1042852,6.0,185 -1246452,1630081631,8030716,2,66,-9.0,1,1.0,1,8700.0,1009585,6.0,193 -1246453,1630081632,8030716,2,77,-9.0,2,0.0,1,8000.0,1042852,1.0,193 -1246454,1630081633,8030716,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,193 -1246455,1630081634,8030379,2,66,-9.0,1,1.0,1,20200.0,1042852,6.0,185 -1246456,1630081635,8030379,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,185 -1246457,1630081636,8030379,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,185 -1246458,1630081637,8030379,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,185 -1246459,1630081638,8030379,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,185 -1246460,1630081639,8030716,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,193 -1246461,1630081640,8030379,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,185 -1246462,1630081641,8030379,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,185 -1246463,1630081642,8030379,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,185 -1246464,1630081643,8030379,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,185 -1246465,1630081644,8030379,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,185 -1246466,1630081645,8030379,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,185 -1246467,1630081646,8030379,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,185 -1246468,1630081647,8030716,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,193 -1246469,1630081648,8423469,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,185 -1246470,1630081649,8030379,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,185 -1246471,1630081650,8423469,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,185 -1246472,1630081651,8030716,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,193 -1246473,1630081652,8423469,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,185 -1246474,1630081653,8030716,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,193 -1246475,1630081654,8030379,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,185 -1246476,1630081655,8030379,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,185 -1246477,1630081656,8030379,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,185 -1246478,1630081657,8030716,2,20,-9.0,1,1.0,1,15000.0,1001264,6.0,193 -1246479,1630081658,8030379,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,185 -1246480,1630081659,8423469,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,185 -1246481,1630081660,8030379,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,185 -1246482,1630081661,8423469,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,185 -1246483,1630081662,8030379,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,185 -1246484,1630081663,8030716,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,193 -1246485,1630081664,8423469,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,185 -1246486,1630081665,8423469,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,185 -1246487,1630081666,8030716,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,193 -1246488,1630081667,8030379,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,185 -1246489,1630081668,8030716,2,64,-9.0,2,1.0,1,8300.0,1073094,5.0,193 -1246490,1630081669,8030379,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,185 -1246491,1630081670,8030379,2,54,-9.0,1,1.0,1,17700.0,1001264,6.0,185 -1246492,1630081671,8030379,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,185 -1246493,1630081672,8030379,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,185 -1246494,1630081673,8030379,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,185 -1246495,1630081674,8030379,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,185 -1246496,1630081675,8030716,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,193 -1246497,1630081676,8030379,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,185 -1246498,1630081677,8423469,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,185 -1246499,1630081678,8423469,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,185 -1246500,1630081679,8030379,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,185 -1246501,1630081680,8030379,4,58,-9.0,1,0.0,1,21700.0,1025215,6.0,185 -1246502,1630081681,8030379,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,185 -1246503,1630081682,8030379,2,53,-9.0,2,5.0,1,29200.0,1042852,1.0,185 -1246504,1630081683,8030379,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,185 -1246505,1630081684,8030379,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,185 -1246506,1630081685,8030379,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,185 -1246507,1630081686,8030716,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,193 -1246508,1630081687,8030716,4,29,-9.0,2,5.0,1,36800.0,1001264,1.0,193 -1246509,1630081688,8030379,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,185 -1246510,1630081689,8030716,4,60,-9.0,1,0.0,1,8600.0,1001264,6.0,193 -1246511,1630081690,8030379,2,69,-9.0,2,1.0,1,77600.0,1025215,1.0,185 -1246512,1630081691,8030379,2,66,-9.0,1,0.0,1,15500.0,1009585,4.0,185 -1246513,1630081692,8030716,3,44,-9.0,1,1.0,1,43370.0,1009585,3.0,193 -1246514,1630081693,8030379,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,185 -1246515,1630081694,8030716,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,193 -1246516,1630081695,8423469,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,185 -1246517,1630081696,8030379,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,185 -1246518,1630081697,8030716,1,72,-9.0,1,1.0,1,25520.0,1001264,6.0,193 -1246519,1630081698,8030716,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,193 -1246520,1630081699,8030716,2,35,-9.0,1,0.0,1,1600.0,1001264,2.0,193 -1246521,1630081700,8030716,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,193 -1246522,1630081701,8030379,2,61,-9.0,2,0.0,1,31400.0,1042852,2.0,185 -1246523,1630081702,8030379,1,20,-9.0,1,3.0,1,4900.0,1042852,5.0,185 -1246524,1630081703,8030716,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,193 -1246525,1630081704,8030379,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,185 -1246526,1630081705,8030379,4,27,-9.0,2,1.0,1,76700.0,1073094,1.0,185 -1246527,1630081706,8030716,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,193 -1246528,1630081707,8030716,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,193 -1246529,1630081708,8030379,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,185 -1246530,1630081709,8030379,1,57,-9.0,1,1.0,1,72000.0,1042852,6.0,185 -1246531,1630081710,8030379,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,185 -1246532,1630081711,8030716,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,193 -1246533,1630081712,8030716,1,29,-9.0,1,2.0,1,60000.0,1009585,1.0,193 -1246534,1630081713,8030716,2,68,-9.0,2,2.0,1,81200.0,1001264,1.0,193 -1246535,1630081714,8030379,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,185 -1246536,1630081715,8030379,2,73,-9.0,1,1.0,1,16800.0,1001264,4.0,185 -1246537,1630081716,8030379,2,70,-9.0,2,3.0,1,100000.0,1042852,1.0,185 -1246538,1630081717,8030716,2,52,-9.0,3,2.0,1,72500.0,1009585,1.0,193 -1246539,1630081718,8030716,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,193 -1246540,1630081719,8030716,2,57,-9.0,2,2.0,1,75000.0,1001264,2.0,193 -1246541,1630081720,8030716,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,193 -1246542,1630081721,8030716,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,193 -1246543,1630081722,8423469,4,61,-9.0,2,0.0,1,6200.0,1009585,3.0,185 -1246544,1630081723,8030379,3,60,-9.0,1,0.0,1,21600.0,1001264,6.0,185 -1246545,1630081724,8030379,2,64,-9.0,1,1.0,1,32700.0,1042852,4.0,185 -1246546,1630081725,8030716,2,29,-9.0,1,1.0,1,9000.0,1009585,4.0,193 -1246547,1630081726,8423469,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,185 -1246548,1630081727,8030379,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,185 -1246549,1630081728,8030716,2,49,-9.0,2,2.0,1,69000.0,1042852,1.0,193 -1246550,1630081729,8423469,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,185 -1246551,1630081730,8030379,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,185 -1246552,1630081731,8030716,2,81,-9.0,2,1.0,1,13700.0,1073094,3.0,193 -1246553,1630081732,8030716,2,43,-9.0,2,1.0,1,50000.0,1009585,5.0,193 -1246554,1630081733,8423469,2,24,-9.0,1,0.0,1,20000.0,1025215,1.0,185 -1246555,1630081734,8030716,2,52,-9.0,2,0.0,1,23400.0,1073094,7.0,193 -1246556,1630081735,8030379,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,185 -1246557,1630081736,8030379,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,185 -1246558,1630081737,8030716,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,193 -1246559,1630081738,8030716,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,193 -1246560,1630081739,8030379,2,66,-9.0,1,1.0,1,20200.0,1042852,6.0,185 -1246561,1630081740,8030716,2,72,-9.0,1,0.0,1,54300.0,1073094,6.0,193 -1246562,1630081741,8030716,4,61,-9.0,1,1.0,1,13500.0,1025215,4.0,193 -1246563,1630081742,8030716,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,193 -1246564,1630081743,8030716,1,62,-9.0,2,0.0,1,23900.0,1001264,5.0,193 -1246565,1630081744,8030716,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,193 -1246566,1630081745,8030716,3,69,-9.0,1,0.0,1,51400.0,1001264,4.0,193 -1246567,1630081746,8030379,2,41,-9.0,2,1.0,1,35000.0,1073094,3.0,185 -1246568,1630081747,8030716,4,48,-9.0,2,1.0,1,5000.0,1025215,3.0,193 -1246569,1630081748,8423469,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,185 -1246570,1630081749,8030379,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,185 -1246571,1630081750,8030716,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,193 -1246572,1630081751,8030379,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,185 -1246573,1630081752,8030716,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,193 -1246574,1630081753,8030716,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,193 -1246575,1630081754,8030716,2,40,-9.0,1,1.0,1,14100.0,1073094,3.0,193 -1246576,1630081755,8030716,2,43,-9.0,1,1.0,1,55000.0,1009585,6.0,193 -1246577,1630081756,8030379,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,185 -1246578,1630081757,8030379,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,185 -1246579,1630081758,8030379,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,185 -1246580,1630081759,8030379,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,185 -1246581,1630081760,8030379,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,185 -1246582,1630081761,8030379,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,185 -1246583,1630081762,8423469,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,185 -1246584,1630081763,8030716,2,69,-9.0,2,0.0,1,183100.0,1042852,1.0,193 -1246585,1630081764,8030716,2,66,-9.0,1,1.0,1,63000.0,1001264,4.0,193 -1246586,1630081765,8030379,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,185 -1246587,1630081766,8030716,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,193 -1246588,1630081767,8030379,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,185 -1246589,1630081768,8030379,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,185 -1246590,1630081769,8030716,1,60,-9.0,1,1.0,1,640.0,1042852,6.0,193 -1246591,1630081770,8030379,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,185 -1246592,1630081771,8030379,4,52,-9.0,1,2.0,1,70.0,1042852,1.0,185 -1246593,1630081772,8030379,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,185 -1246594,1630081773,8423469,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,185 -1246595,1630081774,8030379,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,185 -1246596,1630081775,8030716,2,50,-9.0,1,1.0,1,62000.0,1009585,6.0,193 -1246597,1630081776,8030716,2,77,-9.0,2,0.0,1,8000.0,1042852,1.0,193 -1246598,1630081777,8030716,4,72,-9.0,1,0.0,1,4800.0,1009585,6.0,193 -1246599,1630081778,8030379,1,33,-9.0,2,1.0,1,25000.0,1009585,1.0,185 -1246600,1630081779,8423469,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,185 -1246601,1630081780,8030379,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,185 -1246602,1630081781,8030379,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,185 -1246603,1630081782,8030716,1,59,-9.0,1,1.0,1,356000.0,1025215,6.0,193 -1246604,1630081783,8030716,2,59,-9.0,2,2.0,1,54400.0,1042852,1.0,193 -1246605,1630081784,8030716,2,69,-9.0,2,1.0,1,137000.0,1009585,1.0,193 -1246606,1630081785,8030379,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,185 -1246607,1630081786,8030379,1,24,-9.0,1,2.0,1,22500.0,1025215,5.0,185 -1246608,1630081787,8030716,2,58,-9.0,2,0.0,1,90000.0,1001264,1.0,193 -1246609,1630081788,8030716,1,60,-9.0,2,2.0,1,9600.0,1001264,1.0,193 -1246610,1630081789,8030379,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,185 -1246611,1630081790,8030379,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,185 -1246612,1630081791,8030379,1,49,-9.0,2,2.0,1,58000.0,1042852,1.0,185 -1246613,1630081792,8030379,2,71,-9.0,2,0.0,1,13500.0,1025215,7.0,185 -1246614,1630081793,8030716,2,85,-9.0,2,0.0,1,42220.0,1009585,3.0,193 -1246615,1630081794,8030716,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,193 -1246616,1630081795,8030716,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,193 -1246617,1630081796,8030716,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,193 -1246618,1630081797,8900349,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,180 -1246619,1630081798,8126637,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,179 -1246620,1630081799,8126637,1,27,-9.0,1,1.0,1,113000.0,1025215,1.0,179 -1246621,1630081800,8900326,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,179 -1246622,1630081801,8900326,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,179 -1246623,1630081802,8900341,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,179 -1246624,1630081803,8900341,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,179 -1246625,1630081804,8900341,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,179 -1246626,1630081805,8126962,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,180 -1246627,1630081806,8900341,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,179 -1246628,1630081807,8900341,2,32,-9.0,1,0.0,1,35000.0,1025215,5.0,179 -1246629,1630081808,8900341,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,179 -1246630,1630081809,8900324,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,179 -1246631,1630081810,8900324,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,179 -1246632,1630081811,8900324,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,179 -1246633,1630081812,8900326,2,29,-9.0,1,0.0,1,37000.0,1042852,4.0,179 -1246634,1630081813,8900326,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,179 -1246635,1630081814,8900326,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,179 -1246636,1630081815,8900326,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,179 -1246637,1630081816,8900349,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,180 -1246638,1630081817,8900349,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,180 -1246639,1630081818,8900349,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,180 -1246640,1630081819,8900326,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,179 -1246641,1630081820,8900326,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,179 -1246642,1630081821,8900349,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,180 -1246643,1630081822,8900326,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,179 -1246644,1630081823,8900326,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,179 -1246645,1630081824,8900349,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,180 -1246646,1630081825,8900326,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,179 -1246647,1630081826,8900326,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,179 -1246648,1630081827,8900326,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,179 -1246649,1630081828,8900326,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,179 -1246650,1630081829,8900349,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,180 -1246651,1630081830,8900349,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,180 -1246652,1630081831,8900326,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,179 -1246653,1630081832,8900326,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,179 -1246654,1630081833,8900349,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,180 -1246655,1630081834,8900349,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,180 -1246656,1630081835,8900326,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,179 -1246657,1630081836,8900349,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,180 -1246658,1630081837,8900326,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,179 -1246659,1630081838,8900326,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,179 -1246660,1630081839,8900326,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,179 -1246661,1630081840,8900326,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,179 -1246662,1630081841,8900326,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,179 -1246663,1630081842,8900326,2,34,-9.0,1,1.0,1,56000.0,1009585,4.0,179 -1246664,1630081843,8126637,2,42,-9.0,1,1.0,1,55000.0,1025215,4.0,179 -1246665,1630081844,8126637,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,179 -1246666,1630081845,8900349,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,180 -1246667,1630081846,8900326,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,179 -1246668,1630081847,8900349,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,180 -1246669,1630081848,8126962,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,180 -1246670,1630081849,8900349,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,180 -1246671,1630081850,8900349,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,180 -1246672,1630081851,8900326,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,179 -1246673,1630081852,8126637,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,179 -1246674,1630081853,8900326,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,179 -1246675,1630081854,8900349,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,180 -1246676,1630081855,8900349,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,180 -1246677,1630081856,8900341,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,179 -1246678,1630081857,8900349,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,180 -1246679,1630081858,8900349,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,180 -1246680,1630081859,8900341,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,179 -1246681,1630081860,8900341,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,179 -1246682,1630081861,8126962,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,180 -1246683,1630081862,8900326,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,179 -1246684,1630081863,8900326,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,179 -1246685,1630081864,8900326,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,179 -1246686,1630081865,8900326,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,179 -1246687,1630081866,8900349,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,180 -1246688,1630081867,8900326,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,179 -1246689,1630081868,8126637,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,179 -1246690,1630081869,8900326,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,179 -1246691,1630081870,8900349,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,180 -1246692,1630081871,8900326,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,179 -1246693,1630081872,8126962,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,180 -1246694,1630081873,8900349,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,180 -1246695,1630081874,8900326,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,179 -1246696,1630081875,8900326,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,179 -1246697,1630081876,8900326,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,179 -1246698,1630081877,8900349,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,180 -1246699,1630081878,8900326,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,179 -1246700,1630081879,8126962,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,180 -1246701,1630081880,8126962,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,180 -1246702,1630081881,8900326,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,179 -1246703,1630081882,8900326,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,179 -1246704,1630081883,8900349,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,180 -1246705,1630081884,8900326,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,179 -1246706,1630081885,8900326,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,179 -1246707,1630081886,8900326,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,179 -1246708,1630081887,8900326,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,179 -1246709,1630081888,8900326,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,179 -1246710,1630081889,8126962,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,180 -1246711,1630081890,8900349,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,180 -1246712,1630081891,8900326,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,179 -1246713,1630081892,8900326,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,179 -1246714,1630081893,8126962,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,180 -1246715,1630081894,8126962,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,180 -1246716,1630081895,8900326,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,179 -1246717,1630081896,8900326,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,179 -1246718,1630081897,8900326,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,179 -1246719,1630081898,8900349,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,180 -1246720,1630081899,8900349,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,180 -1246721,1630081900,8126962,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,180 -1246722,1630081901,8900326,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,179 -1246723,1630081902,8900326,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,179 -1246724,1630081903,8900326,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,179 -1246725,1630081904,8900349,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,180 -1246726,1630081905,8900349,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,180 -1246727,1630081906,8900326,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,179 -1246728,1630081907,8900349,1,37,-9.0,1,1.0,1,63900.0,1025215,5.0,180 -1246729,1630081908,8900326,1,37,-9.0,1,1.0,1,63900.0,1025215,5.0,179 -1246730,1630081909,8900349,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,180 -1246731,1630081910,8900326,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,179 -1246732,1630081911,8900341,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,179 -1246733,1630081912,8900341,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,179 -1246734,1630081913,8900349,1,37,-9.0,1,1.0,1,63900.0,1025215,5.0,180 -1246735,1630081914,8900332,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,179 -1246736,1630081915,8900324,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,179 -1246737,1630081916,8900332,1,29,-9.0,1,2.0,1,60000.0,1009585,1.0,179 -1246738,1630081917,8900326,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,179 -1246739,1630081918,8900326,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,179 -1246740,1630081919,8900326,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,179 -1246741,1630081920,8900349,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,180 -1246742,1630081921,8900326,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,179 -1246743,1630081922,8900339,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,179 -1246744,1630081923,8900326,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,179 -1246745,1630081924,8900339,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,179 -1246746,1630081925,8900339,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,179 -1246747,1630081926,8900349,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,180 -1246748,1630081927,8900326,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,179 -1246749,1630081928,8900326,2,42,-9.0,1,0.0,1,4000.0,1073094,4.0,179 -1246750,1630081929,8900349,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,180 -1246751,1630081930,8900349,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,180 -1246752,1630081931,8900326,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,179 -1246753,1630081932,8900332,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,179 -1246754,1630081933,8126637,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,179 -1246755,1630081934,8126637,1,24,-9.0,1,0.0,1,43000.0,1042852,1.0,179 -1246756,1630081935,8900326,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,179 -1246757,1630081936,8900326,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,179 -1246758,1630081937,8900326,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,179 -1246759,1630081938,8900326,1,57,-9.0,1,1.0,1,72000.0,1042852,6.0,179 -1246760,1630081939,8126637,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,179 -1246761,1630081940,8900349,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,180 -1246762,1630081941,8900341,2,66,-9.0,1,0.0,1,33400.0,1042852,4.0,179 -1246763,1630081942,8900326,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,179 -1246764,1630081943,8900324,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,179 -1246765,1630081944,8126637,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,179 -1246766,1630081945,8900326,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,179 -1246767,1630081946,8900326,2,74,-9.0,1,0.0,1,68400.0,1001264,4.0,179 -1246768,1630081947,8900349,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,180 -1246769,1630081948,8900349,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,180 -1246770,1630081949,8900326,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,179 -1246771,1630081950,8126962,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,180 -1246772,1630081951,8900349,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,180 -1246773,1630081952,8900326,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,179 -1246774,1630081953,8900341,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,179 -1246775,1630081954,8900326,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,179 -1246776,1630081955,8900349,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,180 -1246777,1630081956,8900349,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,180 -1246778,1630081957,8900326,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,179 -1246779,1630081958,8900326,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,179 -1246780,1630081959,8900326,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,179 -1246781,1630081960,8900349,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,180 -1246782,1630081961,8900341,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,179 -1246783,1630081962,8900349,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,180 -1246784,1630081963,8900332,1,29,-9.0,1,2.0,1,60000.0,1009585,1.0,179 -1246785,1630081964,8126637,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,179 -1246786,1630081965,8900332,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,179 -1246787,1630081966,8900339,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,179 -1246788,1630081967,8126637,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,179 -1246789,1630081968,8900326,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,179 -1246790,1630081969,8900349,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,180 -1246791,1630081970,8900326,1,37,-9.0,1,1.0,1,63900.0,1025215,5.0,179 -1246792,1630081971,8126637,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,179 -1246793,1630081972,8900326,2,88,-9.0,2,0.0,1,33800.0,1073094,3.0,179 -1246794,1630081973,8900332,1,64,-9.0,1,1.0,1,59000.0,1073094,4.0,179 -1246795,1630081974,8126962,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,180 -1246796,1630081975,8900332,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,179 -1246797,1630081976,8900349,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,180 -1246798,1630081977,8900341,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,179 -1246799,1630081978,8900341,2,94,-9.0,1,0.0,1,25200.0,1042852,4.0,179 -1246800,1630081979,8134312,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,170 -1246801,1630081980,8139402,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,170 -1246802,1630081981,8133455,1,28,-9.0,1,1.0,1,105000.0,1073094,4.0,170 -1246803,1630081982,8134649,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,170 -1246804,1630081983,8133881,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,170 -1246805,1630081984,8136670,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,170 -1246806,1630081985,8133455,1,28,-9.0,1,1.0,1,116000.0,1009585,4.0,170 -1246807,1630081986,8139334,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,170 -1246808,1630081987,8133455,1,28,-9.0,1,1.0,1,105000.0,1073094,4.0,170 -1246809,1630081988,8136934,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,170 -1246810,1630081989,8133455,1,28,-9.0,1,1.0,1,116000.0,1009585,4.0,170 -1246811,1630081990,8134649,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,170 -1246812,1630081991,8133455,1,28,-9.0,1,1.0,1,105000.0,1073094,4.0,170 -1246813,1630081992,8133455,1,28,-9.0,1,1.0,1,116000.0,1009585,4.0,170 -1246814,1630081993,8133881,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,170 -1246815,1630081994,8132409,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,170 -1246816,1630081995,8136934,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,170 -1246817,1630081996,8136670,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,170 -1246818,1630081997,8136670,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,170 -1246819,1630081998,8133455,1,28,-9.0,1,1.0,1,105000.0,1073094,4.0,170 -1246820,1630081999,8134559,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,170 -1246821,1630082000,8134312,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,170 -1246822,1630082001,8134446,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,170 -1246823,1630082002,8133455,1,28,-9.0,1,1.0,1,105000.0,1073094,4.0,170 -1246824,1630082003,8133455,1,28,-9.0,1,1.0,1,116000.0,1009585,4.0,170 -1246825,1630082004,8133455,1,28,-9.0,1,1.0,1,105000.0,1073094,4.0,170 -1246826,1630082005,8136670,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,170 -1246827,1630082006,8136934,1,33,-9.0,2,2.0,1,165190.0,1001264,1.0,170 -1246828,1630082007,8133455,1,33,-9.0,2,2.0,1,165190.0,1001264,1.0,170 -1246829,1630082008,8136670,1,33,-9.0,2,2.0,1,165190.0,1001264,1.0,170 -1246830,1630082009,8133455,4,40,-9.0,2,2.0,1,391000.0,1009585,5.0,170 -1246831,1630082010,8134979,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,170 -1246832,1630082011,8134312,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,170 -1246833,1630082012,8134017,1,40,-9.0,2,2.0,1,150400.0,1025215,1.0,170 -1246834,1630082013,8900713,1,42,-9.0,2,3.0,1,675000.0,1025215,1.0,170 -1246835,1630082014,8134149,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,170 -1246836,1630082015,8133881,1,42,-9.0,2,2.0,1,103400.0,1025215,1.0,170 -1246837,1630082016,8134039,1,40,-9.0,2,2.0,1,150400.0,1025215,1.0,170 -1246838,1630082017,8133791,1,40,-9.0,2,2.0,1,150400.0,1025215,1.0,170 -1246839,1630082018,8132248,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,170 -1246840,1630082019,8133860,1,40,-9.0,2,2.0,1,150400.0,1025215,1.0,170 -1246841,1630082020,8133455,2,42,-9.0,1,1.0,1,43000.0,1025215,4.0,170 -1246842,1630082021,8133455,1,28,-9.0,1,1.0,1,36700.0,1001264,6.0,170 -1246843,1630082022,8134577,1,35,-9.0,1,1.0,1,35000.0,1073094,6.0,170 -1246844,1630082023,8133455,1,31,-9.0,1,1.0,1,44000.0,1001264,6.0,170 -1246845,1630082024,8134017,1,30,-9.0,1,1.0,1,58000.0,1001264,4.0,170 -1246846,1630082025,8133455,1,31,-9.0,1,1.0,1,44000.0,1001264,6.0,170 -1246847,1630082026,8133455,1,31,-9.0,1,1.0,1,44000.0,1001264,6.0,170 -1246848,1630082027,8134577,1,35,-9.0,1,1.0,1,35000.0,1073094,6.0,170 -1246849,1630082028,8133881,3,37,-9.0,1,1.0,1,35000.0,1073094,6.0,170 -1246850,1630082029,8133455,2,31,-9.0,1,1.0,1,91000.0,1009585,6.0,170 -1246851,1630082030,8134446,2,35,-9.0,1,1.0,1,60000.0,1025215,6.0,170 -1246852,1630082031,8134312,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,170 -1246853,1630082032,8132248,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,170 -1246854,1630082033,8133826,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,170 -1246855,1630082034,8133455,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,170 -1246856,1630082035,8133455,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,170 -1246857,1630082036,8133455,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,170 -1246858,1630082037,8134039,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,170 -1246859,1630082038,8134017,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,170 -1246860,1630082039,8133826,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,170 -1246861,1630082040,8134039,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,170 -1246862,1630082041,8133455,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,170 -1246863,1630082042,8134017,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,170 -1246864,1630082043,8134039,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,170 -1246865,1630082044,8134039,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,170 -1246866,1630082045,8133826,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,170 -1246867,1630082046,8133455,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,170 -1246868,1630082047,8134280,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,170 -1246869,1630082048,8134314,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,170 -1246870,1630082049,8134312,2,42,-9.0,2,3.0,1,75000.0,1073094,5.0,170 -1246871,1630082050,8139255,1,28,-9.0,2,2.0,1,89000.0,1073094,5.0,170 -1246872,1630082051,8139198,1,28,-9.0,2,2.0,1,89000.0,1073094,5.0,170 -1246873,1630082052,8134280,2,35,-9.0,1,0.0,1,0.0,1001264,4.0,170 -1246874,1630082053,8133860,1,30,-9.0,1,0.0,1,25200.0,1042852,6.0,170 -1246875,1630082054,8134017,1,30,-9.0,1,0.0,1,25200.0,1042852,6.0,170 -1246876,1630082055,8133011,2,30,-9.0,1,1.0,1,8000.0,1025215,4.0,170 -1246877,1630082056,8133860,1,36,-9.0,1,1.0,1,0.0,1042852,4.0,170 -1246878,1630082057,8134314,1,26,-9.0,1,1.0,1,13000.0,1042852,6.0,170 -1246879,1630082058,8134314,1,30,-9.0,1,1.0,1,15000.0,1001264,4.0,170 -1246880,1630082059,8132248,1,64,-9.0,2,2.0,1,118790.0,1025215,1.0,170 -1246881,1630082060,8139334,2,60,-9.0,1,0.0,1,260400.0,1001264,6.0,170 -1246882,1630082061,8133455,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,170 -1246883,1630082062,8133455,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,170 -1246884,1630082063,8133455,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,170 -1246885,1630082064,8133455,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,170 -1246886,1630082065,8134559,1,59,-9.0,1,1.0,1,356000.0,1025215,6.0,170 -1246887,1630082066,8134559,1,45,-9.0,1,1.0,1,128000.0,1009585,4.0,170 -1246888,1630082067,8134280,1,59,-9.0,1,1.0,1,356000.0,1025215,6.0,170 -1246889,1630082068,8134446,1,59,-9.0,1,1.0,1,356000.0,1025215,6.0,170 -1246890,1630082069,8134149,1,59,-9.0,1,1.0,1,160000.0,1042852,4.0,170 -1246891,1630082070,8132248,1,59,-9.0,1,1.0,1,356000.0,1025215,6.0,170 -1246892,1630082071,8134280,1,59,-9.0,1,1.0,1,160000.0,1042852,4.0,170 -1246893,1630082072,8139402,3,59,-9.0,1,1.0,1,131000.0,1042852,4.0,170 -1246894,1630082073,8139402,3,59,-9.0,1,1.0,1,131000.0,1042852,4.0,170 -1246895,1630082074,8133011,1,62,-9.0,2,1.0,1,125200.0,1042852,5.0,170 -1246896,1630082075,8134280,1,64,-9.0,2,2.0,1,389100.0,1001264,1.0,170 -1246897,1630082076,8134149,1,64,-9.0,2,2.0,1,389100.0,1001264,1.0,170 -1246898,1630082077,8133011,1,63,-9.0,2,3.0,1,184050.0,1009585,1.0,170 -1246899,1630082078,8134149,1,59,-9.0,2,4.0,1,145000.0,1025215,2.0,170 -1246900,1630082079,8139255,1,47,-9.0,1,1.0,1,47000.0,1073094,4.0,170 -1246901,1630082080,8134446,1,58,-9.0,1,1.0,1,31250.0,1001264,6.0,170 -1246902,1630082081,8132248,2,63,-9.0,1,1.0,1,38000.0,1042852,4.0,170 -1246903,1630082082,8132248,2,62,-9.0,1,1.0,1,51700.0,1009585,6.0,170 -1246904,1630082083,8132248,1,58,-9.0,1,2.0,1,32000.0,1001264,4.0,170 -1246905,1630082084,8136670,3,49,-9.0,1,0.0,1,99100.0,1025215,6.0,170 -1246906,1630082085,8136670,3,49,-9.0,1,0.0,1,99100.0,1025215,6.0,170 -1246907,1630082086,8133455,2,54,-9.0,1,1.0,1,70000.0,1009585,4.0,170 -1246908,1630082087,8133826,2,64,-9.0,1,1.0,1,69000.0,1025215,6.0,170 -1246909,1630082088,8133791,2,64,-9.0,1,1.0,1,69000.0,1025215,6.0,170 -1246910,1630082089,8134314,2,59,-9.0,1,1.0,1,65000.0,1025215,6.0,170 -1246911,1630082090,8134149,1,62,-9.0,1,1.0,1,75000.0,1025215,4.0,170 -1246912,1630082091,8135225,1,58,-9.0,1,1.0,1,65000.0,1042852,6.0,170 -1246913,1630082092,8135225,1,58,-9.0,1,1.0,1,65000.0,1042852,6.0,170 -1246914,1630082093,8133455,1,55,-9.0,1,1.0,1,92070.0,1009585,6.0,170 -1246915,1630082094,8133455,1,55,-9.0,1,1.0,1,92070.0,1009585,6.0,170 -1246916,1630082095,8134446,1,57,-9.0,1,1.0,1,80000.0,1025215,6.0,170 -1246917,1630082096,8135225,1,58,-9.0,1,1.0,1,65000.0,1042852,6.0,170 -1246918,1630082097,8134149,2,46,-9.0,1,2.0,1,75000.0,1042852,6.0,170 -1246919,1630082098,8135796,1,59,-9.0,1,2.0,1,78800.0,1025215,4.0,170 -1246920,1630082099,8134577,1,59,-9.0,1,2.0,1,78800.0,1025215,4.0,170 -1246921,1630082100,8135796,1,59,-9.0,1,2.0,1,78800.0,1025215,4.0,170 -1246922,1630082101,8133992,1,56,-9.0,2,2.0,1,67100.0,1009585,1.0,170 -1246923,1630082102,8133881,1,58,-9.0,2,2.0,1,73900.0,1042852,1.0,170 -1246924,1630082103,8139744,2,61,-9.0,1,0.0,1,14400.0,1073094,6.0,170 -1246925,1630082104,8136958,2,53,-9.0,1,0.0,1,18000.0,1001264,4.0,170 -1246926,1630082105,8134649,2,53,-9.0,1,0.0,1,9600.0,1001264,4.0,170 -1246927,1630082106,8134577,2,57,-9.0,1,0.0,1,19200.0,1042852,6.0,170 -1246928,1630082107,8134629,4,50,-9.0,1,0.0,1,0.0,1042852,6.0,170 -1246929,1630082108,8134446,1,49,-9.0,1,0.0,1,8500.0,1025215,6.0,170 -1246930,1630082109,8134649,1,62,-9.0,1,0.0,1,6850.0,1001264,6.0,170 -1246931,1630082110,8134398,2,63,-9.0,1,1.0,1,12000.0,1001264,6.0,170 -1246932,1630082111,8134398,2,60,-9.0,1,1.0,1,26800.0,1001264,4.0,170 -1246933,1630082112,8139836,1,54,-9.0,1,1.0,1,8000.0,1042852,4.0,170 -1246934,1630082113,8133011,1,64,-9.0,1,1.0,1,9260.0,1001264,4.0,170 -1246935,1630082114,8140257,2,59,-9.0,1,1.0,1,3400.0,1009585,6.0,170 -1246936,1630082115,8133455,1,16,1.0,1,1.0,1,32300.0,1009585,4.0,170 -1246937,1630082116,8133455,1,16,1.0,1,1.0,1,32300.0,1009585,4.0,170 -1246938,1630082117,8133455,1,16,1.0,1,1.0,1,32300.0,1009585,4.0,170 -1246939,1630082118,8133455,4,23,-9.0,1,1.0,1,0.0,1025215,6.0,170 -1246940,1630082119,8133455,4,23,-9.0,1,1.0,1,0.0,1025215,6.0,170 -1246941,1630082120,8133455,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,170 -1246942,1630082121,8133455,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,170 -1246943,1630082122,8133455,1,24,-9.0,2,1.0,1,16600.0,1001264,5.0,170 -1246944,1630082123,8134149,2,20,-9.0,1,0.0,1,1100.0,1042852,4.0,170 -1246945,1630082124,8133455,1,23,-9.0,2,2.0,1,1500.0,1009585,7.0,170 -1246946,1630082125,8137439,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,169 -1246947,1630082126,8137439,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,169 -1246948,1630082127,8136003,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,170 -1246949,1630082128,8137439,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,169 -1246950,1630082129,8137439,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,169 -1246951,1630082130,8137439,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,169 -1246952,1630082131,8136040,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,170 -1246953,1630082132,8137439,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,169 -1246954,1630082133,8139220,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,169 -1246955,1630082134,8137439,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,169 -1246956,1630082135,8139220,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,169 -1246957,1630082136,8137439,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,169 -1246958,1630082137,8134901,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,170 -1246959,1630082138,8137439,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,169 -1246960,1630082139,8135886,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,170 -1246961,1630082140,8137439,2,32,-9.0,1,1.0,1,48000.0,1025215,6.0,169 -1246962,1630082141,8137439,2,26,-9.0,1,1.0,1,41660.0,1042852,6.0,169 -1246963,1630082142,8137439,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,169 -1246964,1630082143,8134033,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,170 -1246965,1630082144,8134033,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,170 -1246966,1630082145,8137439,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,169 -1246967,1630082146,8134901,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,170 -1246968,1630082147,8139069,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,170 -1246969,1630082148,8134901,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,170 -1246970,1630082149,8134936,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,170 -1246971,1630082150,8134033,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,170 -1246972,1630082151,8137439,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,169 -1246973,1630082152,8137439,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,169 -1246974,1630082153,8137439,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,169 -1246975,1630082154,8139744,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,170 -1246976,1630082155,8134979,2,31,-9.0,1,1.0,1,60000.0,1042852,4.0,170 -1246977,1630082156,8137439,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,169 -1246978,1630082157,8137439,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,169 -1246979,1630082158,8137439,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,169 -1246980,1630082159,8137439,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,169 -1246981,1630082160,8137439,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,169 -1246982,1630082161,8137439,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,169 -1246983,1630082162,8134979,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,170 -1246984,1630082163,8137439,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,169 -1246985,1630082164,8137439,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,169 -1246986,1630082165,8137439,1,28,-9.0,1,1.0,1,62000.0,1009585,6.0,169 -1246987,1630082166,8137439,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,169 -1246988,1630082167,8137439,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,169 -1246989,1630082168,8137439,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,169 -1246990,1630082169,8137439,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,169 -1246991,1630082170,8137439,1,25,-9.0,2,1.0,1,75000.0,1001264,5.0,169 -1246992,1630082171,8140470,1,34,-9.0,2,2.0,1,70000.0,1042852,7.0,170 -1246993,1630082172,8137439,1,28,-9.0,2,2.0,1,65000.0,1001264,1.0,169 -1246994,1630082173,8900564,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,170 -1246995,1630082174,8134901,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,170 -1246996,1630082175,8134901,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,170 -1246997,1630082176,8134033,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,170 -1246998,1630082177,8134033,2,42,-9.0,1,0.0,1,4000.0,1073094,4.0,170 -1246999,1630082178,8137675,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,170 -1247000,1630082179,8137439,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,169 -1247001,1630082180,8137439,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,169 -1247002,1630082181,8139069,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,170 -1247003,1630082182,8137439,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,169 -1247004,1630082183,8137439,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,169 -1247005,1630082184,8134901,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,170 -1247006,1630082185,8134901,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,170 -1247007,1630082186,8137097,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,170 -1247008,1630082187,8140095,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,170 -1247009,1630082188,8139198,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,170 -1247010,1630082189,8139744,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,170 -1247011,1630082190,8134033,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,170 -1247012,1630082191,8140644,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,170 -1247013,1630082192,8134033,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,170 -1247014,1630082193,8900564,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,170 -1247015,1630082194,8140470,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,170 -1247016,1630082195,8134901,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,170 -1247017,1630082196,8137439,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,169 -1247018,1630082197,8134901,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,170 -1247019,1630082198,8134033,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,170 -1247020,1630082199,8137439,2,60,-9.0,1,1.0,1,164000.0,1009585,4.0,169 -1247021,1630082200,8134033,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,170 -1247022,1630082201,8137439,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,169 -1247023,1630082202,8134979,1,59,-9.0,1,1.0,1,318000.0,1073094,4.0,170 -1247024,1630082203,8134979,1,59,-9.0,1,1.0,1,318000.0,1073094,4.0,170 -1247025,1630082204,8137439,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,169 -1247026,1630082205,8137439,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,169 -1247027,1630082206,8137439,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,169 -1247028,1630082207,8139454,1,59,-9.0,1,1.0,1,30700.0,1025215,6.0,170 -1247029,1630082208,8139069,2,56,-9.0,1,0.0,1,42000.0,1042852,6.0,170 -1247030,1630082209,8135699,2,55,-9.0,1,1.0,1,49900.0,1042852,6.0,170 -1247031,1630082210,8137439,2,60,-9.0,1,1.0,1,49000.0,1042852,6.0,169 -1247032,1630082211,8135699,2,55,-9.0,1,1.0,1,49900.0,1042852,6.0,170 -1247033,1630082212,8135886,1,64,-9.0,1,1.0,1,59000.0,1073094,4.0,170 -1247034,1630082213,8138545,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,170 -1247035,1630082214,8134314,1,61,-9.0,1,1.0,1,57000.0,1025215,4.0,170 -1247036,1630082215,8140350,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,170 -1247037,1630082216,8140350,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,170 -1247038,1630082217,8135593,2,62,-9.0,1,1.0,1,82000.0,1009585,4.0,170 -1247039,1630082218,8137439,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,169 -1247040,1630082219,8137439,1,57,-9.0,1,1.0,1,72000.0,1042852,6.0,169 -1247041,1630082220,8137439,1,55,-9.0,1,1.0,1,92000.0,1009585,6.0,169 -1247042,1630082221,8136803,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,169 -1247043,1630082222,8134901,2,62,-9.0,1,0.0,1,9600.0,1001264,6.0,170 -1247044,1630082223,8139473,2,63,-9.0,1,0.0,1,0.0,1073094,6.0,170 -1247045,1630082224,8134901,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,170 -1247046,1630082225,8136938,2,63,-9.0,1,0.0,1,4200.0,1073094,6.0,170 -1247047,1630082226,8137439,2,61,-9.0,1,0.0,1,28000.0,1009585,6.0,169 -1247048,1630082227,8139473,2,63,-9.0,1,0.0,1,0.0,1073094,6.0,170 -1247049,1630082228,8134901,2,54,-9.0,1,0.0,1,8400.0,1042852,4.0,170 -1247050,1630082229,8132409,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,170 -1247051,1630082230,8139744,2,63,-9.0,1,0.0,1,8500.0,1009585,4.0,170 -1247052,1630082231,8134901,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,170 -1247053,1630082232,8134033,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,170 -1247054,1630082233,8139069,2,60,-9.0,1,0.0,1,13300.0,1001264,6.0,170 -1247055,1630082234,8135886,2,50,-9.0,1,0.0,1,0.0,1073094,6.0,170 -1247056,1630082235,8134039,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,170 -1247057,1630082236,8139069,2,58,-9.0,1,0.0,1,8600.0,1073094,6.0,170 -1247058,1630082237,8134033,2,59,-9.0,1,0.0,1,8100.0,1073094,4.0,170 -1247059,1630082238,8133935,2,47,-9.0,1,0.0,1,12000.0,1025215,4.0,170 -1247060,1630082239,8134033,2,62,-9.0,1,0.0,1,1800.0,1001264,4.0,170 -1247061,1630082240,8139069,2,53,-9.0,1,0.0,1,8400.0,1042852,6.0,170 -1247062,1630082241,8134033,2,53,-9.0,1,0.0,1,8300.0,1042852,4.0,170 -1247063,1630082242,8138545,2,57,-9.0,1,0.0,1,5200.0,1073094,4.0,170 -1247064,1630082243,8136040,2,58,-9.0,1,0.0,1,8400.0,1025215,4.0,170 -1247065,1630082244,8135886,2,57,-9.0,1,0.0,1,13900.0,1073094,4.0,170 -1247066,1630082245,8134901,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,170 -1247067,1630082246,8134901,2,58,-9.0,1,0.0,1,8400.0,1042852,4.0,170 -1247068,1630082247,8134901,2,57,-9.0,1,0.0,1,8400.0,1009585,6.0,170 -1247069,1630082248,8134033,2,59,-9.0,1,0.0,1,9800.0,1009585,6.0,170 -1247070,1630082249,8139744,4,46,-9.0,1,0.0,1,9000.0,1009585,6.0,170 -1247071,1630082250,8134901,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,170 -1247072,1630082251,8134033,1,62,-9.0,1,0.0,1,10100.0,1001264,6.0,170 -1247073,1630082252,8134901,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,170 -1247074,1630082253,8134033,1,51,-9.0,1,0.0,1,0.0,1042852,6.0,170 -1247075,1630082254,8134901,1,62,-9.0,1,0.0,1,10100.0,1001264,6.0,170 -1247076,1630082255,8134033,1,60,-9.0,1,0.0,1,14000.0,1073094,6.0,170 -1247077,1630082256,8139744,1,51,-9.0,1,0.0,1,0.0,1042852,6.0,170 -1247078,1630082257,8134901,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,170 -1247079,1630082258,8139125,2,51,-9.0,1,1.0,1,1000.0,1009585,4.0,170 -1247080,1630082259,8136160,2,47,-9.0,1,1.0,1,1800.0,1042852,6.0,170 -1247081,1630082260,8134033,2,63,-9.0,1,1.0,1,1780.0,1009585,6.0,170 -1247082,1630082261,8134033,1,60,-9.0,1,1.0,1,640.0,1042852,6.0,170 -1247083,1630082262,8136040,2,61,-9.0,2,0.0,1,10800.0,1025215,2.0,170 -1247084,1630082263,8140470,2,60,-9.0,2,0.0,1,13400.0,1042852,5.0,170 -1247085,1630082264,8139744,2,55,-9.0,1,0.0,1,22600.0,1009585,6.0,170 -1247086,1630082265,8140350,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,170 -1247087,1630082266,8134901,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,170 -1247088,1630082267,8136270,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,170 -1247089,1630082268,8140350,2,61,-9.0,1,0.0,1,14000.0,1073094,6.0,170 -1247090,1630082269,8139255,2,45,-9.0,1,1.0,1,22000.0,1073094,4.0,170 -1247091,1630082270,8134979,2,54,-9.0,1,1.0,1,17700.0,1001264,6.0,170 -1247092,1630082271,8134901,1,56,-9.0,1,1.0,1,18000.0,1042852,4.0,170 -1247093,1630082272,8137439,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,169 -1247094,1630082273,8137439,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,169 -1247095,1630082274,8135668,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,170 -1247096,1630082275,8136968,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,170 -1247097,1630082276,8137439,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,169 -1247098,1630082277,8137439,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,169 -1247099,1630082278,8137439,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,169 -1247100,1630082279,8137439,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,169 -1247101,1630082280,8137439,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,169 -1247102,1630082281,8137439,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,169 -1247103,1630082282,8137439,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,169 -1247104,1630082283,8137439,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,169 -1247105,1630082284,8137439,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,169 -1247106,1630082285,8137439,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,169 -1247107,1630082286,8137439,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,169 -1247108,1630082287,8134901,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,170 -1247109,1630082288,8137439,2,90,-9.0,1,0.0,1,44700.0,1001264,6.0,169 -1247110,1630082289,8134901,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,170 -1247111,1630082290,8134901,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,170 -1247112,1630082291,8136270,2,68,-9.0,1,1.0,1,34800.0,1042852,6.0,170 -1247113,1630082292,8137439,2,76,-9.0,1,1.0,1,34350.0,1001264,6.0,169 -1247114,1630082293,8138304,1,66,-9.0,1,1.0,1,49000.0,1025215,4.0,170 -1247115,1630082294,8137439,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,169 -1247116,1630082295,8136938,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,170 -1247117,1630082296,8137439,2,74,-9.0,1,0.0,1,68400.0,1001264,4.0,169 -1247118,1630082297,8137439,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,169 -1247119,1630082298,8139069,2,66,-9.0,1,1.0,1,63000.0,1001264,4.0,170 -1247120,1630082299,8134901,2,67,-9.0,1,0.0,1,8300.0,1001264,6.0,170 -1247121,1630082300,8134033,2,73,-9.0,1,0.0,1,8400.0,1042852,6.0,170 -1247122,1630082301,8134901,2,86,-9.0,1,0.0,1,14300.0,1042852,6.0,170 -1247123,1630082302,8134033,2,70,-9.0,1,0.0,1,14300.0,1042852,6.0,170 -1247124,1630082303,8134033,2,69,-9.0,1,0.0,1,12600.0,1025215,6.0,170 -1247125,1630082304,8132409,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,170 -1247126,1630082305,8134901,2,79,-9.0,1,0.0,1,18000.0,1025215,4.0,170 -1247127,1630082306,8134314,2,66,-9.0,1,0.0,1,10100.0,1009585,6.0,170 -1247128,1630082307,8134033,2,94,-9.0,1,0.0,1,14300.0,1009585,4.0,170 -1247129,1630082308,8900564,2,74,-9.0,1,0.0,1,7200.0,1009585,6.0,170 -1247130,1630082309,8134901,2,70,-9.0,1,0.0,1,7300.0,1073094,6.0,170 -1247131,1630082310,8134033,2,83,-9.0,1,0.0,1,9070.0,1009585,6.0,170 -1247132,1630082311,8136968,2,69,-9.0,1,0.0,1,8400.0,1001264,6.0,170 -1247133,1630082312,8134901,2,85,-9.0,1,0.0,1,13200.0,1025215,6.0,170 -1247134,1630082313,8139069,2,67,-9.0,1,0.0,1,8900.0,1009585,6.0,170 -1247135,1630082314,8900564,2,67,-9.0,1,0.0,1,8900.0,1009585,6.0,170 -1247136,1630082315,8136040,2,74,-9.0,1,0.0,1,7200.0,1009585,6.0,170 -1247137,1630082316,8137439,2,71,-9.0,1,0.0,1,24300.0,1042852,6.0,169 -1247138,1630082317,8134901,2,70,-9.0,1,0.0,1,9200.0,1042852,6.0,170 -1247139,1630082318,8138304,2,70,-9.0,1,0.0,1,11400.0,1042852,6.0,170 -1247140,1630082319,8139198,2,78,-9.0,1,0.0,1,26100.0,1009585,6.0,170 -1247141,1630082320,8139069,2,85,-9.0,1,0.0,1,12100.0,1025215,6.0,170 -1247142,1630082321,8137439,2,68,-9.0,1,0.0,1,17360.0,1009585,6.0,169 -1247143,1630082322,8134033,2,66,-9.0,1,0.0,1,8400.0,1025215,4.0,170 -1247144,1630082323,8134901,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,170 -1247145,1630082324,8136040,2,68,-9.0,1,0.0,1,7200.0,1025215,6.0,170 -1247146,1630082325,8134979,2,72,-9.0,1,0.0,1,11220.0,1009585,6.0,170 -1247147,1630082326,8134901,2,75,-9.0,1,0.0,1,9600.0,1009585,4.0,170 -1247148,1630082327,8134033,2,66,-9.0,1,0.0,1,9300.0,1025215,4.0,170 -1247149,1630082328,8134901,2,66,-9.0,1,0.0,1,9300.0,1025215,4.0,170 -1247150,1630082329,8138304,2,70,-9.0,1,0.0,1,11400.0,1042852,6.0,170 -1247151,1630082330,8137439,2,68,-9.0,1,0.0,1,7200.0,1042852,6.0,169 -1247152,1630082331,8134901,2,70,-9.0,1,0.0,1,7300.0,1073094,6.0,170 -1247153,1630082332,8140410,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,170 -1247154,1630082333,8134033,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,170 -1247155,1630082334,8134033,2,76,-9.0,1,0.0,1,4101.0,1001264,4.0,170 -1247156,1630082335,8134901,2,66,-9.0,1,0.0,1,20400.0,1009585,6.0,170 -1247157,1630082336,8134901,2,78,-9.0,1,0.0,1,9100.0,1001264,6.0,170 -1247158,1630082337,8137439,2,71,-9.0,1,0.0,1,24300.0,1042852,6.0,169 -1247159,1630082338,8134033,2,86,-9.0,1,0.0,1,10600.0,1009585,6.0,170 -1247160,1630082339,8134901,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,170 -1247161,1630082340,8139198,4,70,-9.0,1,0.0,1,19900.0,1042852,6.0,170 -1247162,1630082341,8134033,1,67,-9.0,1,0.0,1,8300.0,1073094,6.0,170 -1247163,1630082342,8134901,1,74,-9.0,1,0.0,1,9600.0,1042852,4.0,170 -1247164,1630082343,8136938,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,170 -1247165,1630082344,8134901,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,170 -1247166,1630082345,8134901,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,170 -1247167,1630082346,8134033,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,170 -1247168,1630082347,8134901,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,170 -1247169,1630082348,8134033,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,170 -1247170,1630082349,8134033,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,170 -1247171,1630082350,8137439,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,169 -1247172,1630082351,8134033,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,170 -1247173,1630082352,8136938,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,170 -1247174,1630082353,8136938,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,170 -1247175,1630082354,8138304,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,170 -1247176,1630082355,8139069,3,67,-9.0,1,0.0,1,16800.0,1042852,4.0,170 -1247177,1630082356,8140350,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,170 -1247178,1630082357,8134033,2,66,-9.0,1,1.0,1,11000.0,1042852,6.0,170 -1247179,1630082358,8134033,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,170 -1247180,1630082359,8134901,2,69,-9.0,1,1.0,1,13500.0,1009585,6.0,170 -1247181,1630082360,8134033,2,66,-9.0,1,1.0,1,15300.0,1073094,6.0,170 -1247182,1630082361,8134901,2,77,-9.0,1,1.0,1,7700.0,1025215,6.0,170 -1247183,1630082362,8134901,2,83,-9.0,1,1.0,1,12600.0,1025215,4.0,170 -1247184,1630082363,8134495,2,71,-9.0,1,1.0,1,15700.0,1042852,6.0,170 -1247185,1630082364,8134033,2,94,-9.0,1,1.0,1,20300.0,1001264,4.0,170 -1247186,1630082365,8140257,1,69,-9.0,1,1.0,1,14600.0,1001264,6.0,170 -1247187,1630082366,8135668,2,66,-9.0,2,0.0,1,0.0,1073094,3.0,170 -1247188,1630082367,8134017,2,72,-9.0,2,0.0,1,10420.0,1009585,3.0,170 -1247189,1630082368,8137439,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,169 -1247190,1630082369,8137439,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,169 -1247191,1630082370,8137439,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,169 -1247192,1630082371,8137439,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,169 -1247193,1630082372,8137439,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,169 -1247194,1630082373,8134033,2,23,-9.0,1,0.0,1,0.0,1042852,4.0,170 -1247195,1630082374,8134901,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,170 -1247196,1630082375,8134901,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,170 -1247197,1630082376,8137439,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,169 -1247198,1630082377,8134033,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,170 -1247199,1630082378,8137439,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,169 -1247200,1630082379,8134901,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,170 -1247201,1630082380,8900564,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,170 -1247202,1630082381,8136040,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,170 -1247203,1630082382,8132248,1,49,-9.0,1,0.0,1,8500.0,1025215,6.0,170 -1247204,1630082383,8134901,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,170 -1247205,1630082384,8133791,2,64,-9.0,1,1.0,1,40000.0,1025215,6.0,170 -1247206,1630082385,8900713,1,37,-9.0,2,4.0,1,153000.0,1009585,5.0,170 -1247207,1630082386,8134901,1,26,-9.0,1,1.0,1,0.0,1073094,6.0,170 -1247208,1630082387,8133791,1,26,-9.0,1,1.0,1,13000.0,1042852,6.0,170 -1247209,1630082388,8134901,2,75,-9.0,1,1.0,1,49800.0,1042852,6.0,170 -1247210,1630082389,8133455,1,31,-9.0,1,1.0,1,44000.0,1001264,6.0,170 -1247211,1630082390,8134280,2,63,-9.0,1,1.0,1,84800.0,1042852,6.0,170 -1247212,1630082391,8135225,1,54,-9.0,1,1.0,1,24000.0,1073094,6.0,170 -1247213,1630082392,8139220,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,169 -1247214,1630082393,8136934,3,49,-9.0,1,0.0,1,99100.0,1025215,6.0,170 -1247215,1630082394,8134901,1,67,-9.0,1,0.0,1,8300.0,1073094,6.0,170 -1247216,1630082395,8134901,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,170 -1247217,1630082396,8135886,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,170 -1247218,1630082397,8134149,1,63,-9.0,2,2.0,1,76500.0,1009585,1.0,170 -1247219,1630082398,8134649,2,40,-9.0,1,1.0,1,56000.0,1073094,6.0,170 -1247220,1630082399,8134901,2,61,-9.0,1,0.0,1,49000.0,1073094,6.0,170 -1247221,1630082400,8134901,3,69,-9.0,1,0.0,1,51400.0,1001264,4.0,170 -1247222,1630082401,8137439,1,55,-9.0,1,1.0,1,92000.0,1009585,6.0,169 -1247223,1630082402,8139220,2,69,-9.0,2,0.0,1,183100.0,1042852,1.0,169 -1247224,1630082403,8133881,1,51,-9.0,1,0.0,1,22000.0,1042852,6.0,170 -1247225,1630082404,8133826,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,170 -1247226,1630082405,8137439,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,169 -1247227,1630082406,8132248,1,62,-9.0,3,0.0,1,75900.0,1042852,1.0,170 -1247228,1630082407,8139198,2,61,-9.0,1,3.0,1,42300.0,1009585,6.0,170 -1247229,1630082408,8134033,2,64,-9.0,1,1.0,1,32700.0,1042852,4.0,170 -1247230,1630082409,8900713,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,170 -1247231,1630082410,8134559,2,43,-9.0,1,2.0,1,30000.0,1073094,6.0,170 -1247232,1630082411,8137439,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,169 -1247233,1630082412,8134446,2,48,-9.0,1,0.0,1,4800.0,1009585,6.0,170 -1247234,1630082413,8137439,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,169 -1247235,1630082414,8139334,4,41,-9.0,2,2.0,1,109100.0,1009585,1.0,170 -1247236,1630082415,8132248,1,61,-9.0,2,1.0,1,28400.0,1042852,3.0,170 -1247237,1630082416,8134149,1,22,-9.0,2,2.0,1,55000.0,1001264,7.0,170 -1247238,1630082417,8137439,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,169 -1247239,1630082418,8134446,2,60,-9.0,2,2.0,1,247000.0,1025215,2.0,170 -1247240,1630082419,8134901,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,170 -1247241,1630082420,8139220,2,45,-9.0,1,1.0,1,36000.0,1009585,4.0,169 -1247242,1630082421,8140350,2,65,-9.0,1,0.0,1,14900.0,1025215,6.0,170 -1247243,1630082422,8134017,2,63,-9.0,1,0.0,1,37000.0,1073094,4.0,170 -1247244,1630082423,8134559,1,36,1.0,3,1.0,1,112000.0,1042852,1.0,170 -1247245,1630082424,8134280,2,24,-9.0,2,0.0,1,33100.0,1042852,5.0,170 -1247246,1630082425,8134559,2,62,-9.0,2,4.0,1,101660.0,1009585,2.0,170 -1247247,1630082426,8134901,2,53,-9.0,1,1.0,1,22600.0,1001264,4.0,170 -1247248,1630082427,8133011,3,37,-9.0,1,1.0,1,35000.0,1073094,6.0,170 -1247249,1630082428,8134312,2,47,-9.0,1,0.0,1,77000.0,1009585,4.0,170 -1247250,1630082429,8139069,2,35,1.0,2,0.0,1,7400.0,1073094,3.0,170 -1247251,1630082430,8134577,2,90,-9.0,2,0.0,1,30900.0,1009585,7.0,170 -1247252,1630082431,8134033,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,170 -1247253,1630082432,8133860,1,30,-9.0,1,0.0,1,25200.0,1042852,6.0,170 -1247254,1630082433,8134979,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,170 -1247255,1630082434,8134559,1,82,-9.0,1,1.0,1,32000.0,1001264,6.0,170 -1247256,1630082435,8134312,2,34,-9.0,2,2.0,1,157000.0,1001264,1.0,170 -1247257,1630082436,8138304,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,170 -1247258,1630082437,8134559,3,58,-9.0,1,2.0,1,89100.0,1001264,4.0,170 -1247259,1630082438,8139334,2,43,-9.0,2,2.0,1,225300.0,1001264,1.0,170 -1247260,1630082439,8134314,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,170 -1247261,1630082440,8139069,2,59,-9.0,1,0.0,1,11300.0,1042852,6.0,170 -1247262,1630082441,8137439,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,169 -1247263,1630082442,8139220,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,169 -1247264,1630082443,8133881,1,60,-9.0,1,1.0,1,40000.0,1025215,6.0,170 -1247265,1630082444,8134312,2,37,1.0,2,1.0,1,150000.0,1042852,3.0,170 -1247266,1630082445,8133011,2,47,-9.0,2,1.0,1,17100.0,1001264,2.0,170 -1247267,1630082446,8134033,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,170 -1247268,1630082447,8134495,1,77,-9.0,2,0.0,1,16400.0,1025215,5.0,170 -1247269,1630082448,8134033,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,170 -1247270,1630082449,8135654,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,170 -1247271,1630082450,8133881,1,29,1.0,4,2.0,1,114000.0,1009585,1.0,170 -1247272,1630082451,8134901,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,170 -1247273,1630082452,8133791,2,54,-9.0,1,1.0,1,4800.0,1073094,4.0,170 -1247274,1630082453,8132248,1,64,-9.0,1,1.0,1,9260.0,1001264,4.0,170 -1247275,1630082454,8137439,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,169 -1247276,1630082455,8134979,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,170 -1247277,1630082456,8136040,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,170 -1247278,1630082457,8132409,3,61,-9.0,1,0.0,1,8670.0,1025215,6.0,170 -1247279,1630082458,8134559,2,84,-9.0,1,1.0,1,15310.0,1009585,6.0,170 -1247280,1630082459,8137439,2,72,-9.0,1,1.0,1,61000.0,1025215,4.0,169 -1247281,1630082460,8133455,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,170 -1247282,1630082461,8139069,1,72,-9.0,1,1.0,1,25520.0,1001264,6.0,170 -1247283,1630082462,8134033,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,170 -1247284,1630082463,8133455,1,69,-9.0,1,1.0,1,121800.0,1025215,6.0,170 -1247285,1630082464,8134577,3,40,1.0,3,2.0,1,180200.0,1042852,5.0,170 -1247286,1630082465,8132409,2,62,-9.0,1,0.0,1,35000.0,1073094,6.0,170 -1247287,1630082466,8134312,1,59,-9.0,2,1.0,1,372000.0,1073094,1.0,170 -1247288,1630082467,8133455,2,64,-9.0,2,1.0,1,97220.0,1001264,1.0,170 -1247289,1630082468,8134901,2,81,-9.0,2,1.0,1,13700.0,1073094,3.0,170 -1247290,1630082469,8134280,2,42,-9.0,1,2.0,1,8600.0,1009585,4.0,170 -1247291,1630082470,8134149,2,40,-9.0,1,1.0,1,22000.0,1001264,6.0,170 -1247292,1630082471,8134033,2,52,1.0,2,0.0,1,8500.0,1001264,2.0,170 -1247293,1630082472,8134312,1,86,-9.0,1,1.0,1,17300.0,1025215,6.0,170 -1247294,1630082473,8139402,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,170 -1247295,1630082474,8134033,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,170 -1247296,1630082475,8134649,1,46,-9.0,2,2.0,1,69300.0,1001264,1.0,170 -1247297,1630082476,8134017,2,63,-9.0,2,2.0,1,124500.0,1025215,1.0,170 -1247298,1630082477,8139255,1,72,-9.0,1,1.0,1,99500.0,1025215,6.0,170 -1247299,1630082478,8133992,2,69,-9.0,1,0.0,1,18700.0,1042852,6.0,170 -1247300,1630082479,8134033,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,170 -1247301,1630082480,8133455,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,170 -1247302,1630082481,8137439,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,169 -1247303,1630082482,8133455,1,26,-9.0,2,2.0,1,12000.0,1009585,5.0,170 -1247304,1630082483,8134901,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,170 -1247305,1630082484,8135886,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,170 -1247306,1630082485,8135225,2,63,-9.0,1,1.0,1,60000.0,1073094,6.0,170 -1247307,1630082486,8133455,2,47,-9.0,1,1.0,1,106000.0,1001264,6.0,170 -1247308,1630082487,8136938,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,170 -1247309,1630082488,8137439,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,169 -1247310,1630082489,8133992,1,56,-9.0,2,2.0,1,67100.0,1009585,1.0,170 -1247311,1630082490,8134559,2,39,-9.0,2,1.0,1,69000.0,1001264,1.0,170 -1247312,1630082491,8134033,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,170 -1247313,1630082492,8136968,2,59,-9.0,2,1.0,1,8900.0,1042852,3.0,170 -1247314,1630082493,8134629,2,56,-9.0,1,1.0,1,37800.0,1073094,4.0,170 -1247315,1630082494,8134901,2,58,-9.0,1,0.0,1,94300.0,1025215,6.0,170 -1247316,1630082495,8133011,2,56,-9.0,2,2.0,1,79500.0,1073094,3.0,170 -1247317,1630082496,8139069,4,46,-9.0,1,0.0,1,9000.0,1009585,6.0,170 -1247318,1630082497,8137439,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,169 -1247319,1630082498,8137439,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,169 -1247320,1630082499,8134149,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,170 -1247321,1630082500,8136938,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,170 -1247322,1630082501,8138706,2,42,-9.0,1,2.0,1,15000.0,1001264,4.0,170 -1247323,1630082502,8134033,2,71,-9.0,1,0.0,1,31400.0,1073094,4.0,170 -1247324,1630082503,8133881,2,43,-9.0,1,1.0,1,50000.0,1073094,4.0,170 -1247325,1630082504,8133455,4,23,-9.0,1,1.0,1,0.0,1025215,6.0,170 -1247326,1630082505,8137439,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,169 -1247327,1630082506,8133791,2,46,-9.0,1,2.0,1,135800.0,1025215,6.0,170 -1247328,1630082507,8136968,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,170 -1247329,1630082508,8140257,2,37,1.0,2,1.0,1,7900.0,1025215,3.0,170 -1247330,1630082509,8134033,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,170 -1247331,1630082510,8132248,1,38,-9.0,2,1.0,1,46000.0,1001264,3.0,170 -1247332,1630082511,8133455,1,16,1.0,1,1.0,1,32300.0,1009585,4.0,170 -1247333,1630082512,8132409,2,47,-9.0,2,1.0,1,19300.0,1042852,7.0,170 -1247334,1630082513,8137439,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,169 -1247335,1630082514,8133791,2,36,1.0,2,1.0,1,70000.0,1025215,2.0,170 -1247336,1630082515,8134312,2,38,2.0,4,2.0,1,100000.0,1073094,1.0,170 -1247337,1630082516,8136938,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,170 -1247338,1630082517,8140257,1,69,-9.0,1,1.0,1,14600.0,1001264,6.0,170 -1247339,1630082518,8138304,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,170 -1247340,1630082519,8135225,1,38,2.0,4,2.0,1,68000.0,1025215,1.0,170 -1247341,1630082520,8133455,4,40,-9.0,2,2.0,1,391000.0,1009585,5.0,170 -1247342,1630082521,8133455,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,170 -1247343,1630082522,8900564,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,170 -1247344,1630082523,8138611,2,61,-9.0,2,0.0,1,16700.0,1073094,7.0,170 -1247345,1630082524,8134559,2,33,1.0,3,3.0,1,97000.0,1009585,2.0,170 -1247346,1630082525,8133011,2,59,-9.0,2,3.0,1,88000.0,1001264,2.0,170 -1247347,1630082526,8133860,1,57,-9.0,1,3.0,1,27400.0,1042852,4.0,170 -1247348,1630082527,8137439,3,54,-9.0,1,1.0,1,52000.0,1009585,4.0,169 -1247349,1630082528,8139220,2,50,-9.0,2,1.0,1,74300.0,1009585,3.0,169 -1247350,1630082529,8140257,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,170 -1247351,1630082530,8134901,4,72,-9.0,1,0.0,1,4800.0,1009585,6.0,170 -1247352,1630082531,8136938,2,69,-9.0,2,1.0,1,137000.0,1009585,1.0,170 -1247353,1630082532,8134735,2,67,-9.0,1,1.0,1,7200.0,1042852,6.0,170 -1247354,1630082533,8137439,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,169 -1247355,1630082534,8137439,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,169 -1247356,1630082535,8139744,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,170 -1247357,1630082536,8132409,1,34,2.0,4,2.0,1,178000.0,1009585,1.0,170 -1247358,1630082537,8134039,2,64,-9.0,2,2.0,1,59900.0,1009585,3.0,170 -1247359,1630082538,8134901,2,66,-9.0,1,1.0,1,15300.0,1073094,6.0,170 -1247360,1630082539,8134901,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,170 -1247361,1630082540,8132409,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,170 -1247362,1630082541,8134033,2,30,1.0,2,1.0,1,19000.0,1073094,3.0,170 -1247363,1630082542,8133860,1,77,-9.0,1,1.0,1,62610.0,1009585,4.0,170 -1247364,1630082543,8137439,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,169 -1247365,1630082544,8133011,1,64,-9.0,1,1.0,1,42200.0,1025215,4.0,170 -1247366,1630082545,8139402,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,170 -1247367,1630082546,8134901,2,20,1.0,2,0.0,1,0.0,1009585,3.0,170 -1247368,1630082547,8134149,2,42,1.0,2,2.0,1,72000.0,1042852,3.0,170 -1247369,1630082548,8136803,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,169 -1247370,1630082549,8133011,2,27,-9.0,2,0.0,1,33000.0,1009585,1.0,170 -1247371,1630082550,8139402,2,87,-9.0,1,1.0,1,48000.0,1025215,6.0,170 -1247372,1630082551,8137439,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,169 -1247373,1630082552,8138772,2,72,-9.0,1,0.0,1,54300.0,1073094,6.0,170 -1247374,1630082553,8138052,2,48,-9.0,2,5.0,1,53800.0,1025215,7.0,170 -1247375,1630082554,8137439,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,169 -1247376,1630082555,8139875,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,170 -1247377,1630082556,8133935,4,63,-9.0,1,1.0,1,31400.0,1001264,6.0,170 -1247378,1630082557,8134314,2,61,-9.0,2,2.0,1,64700.0,1073094,3.0,170 -1247379,1630082558,8135796,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,170 -1247380,1630082559,8133455,1,69,-9.0,1,0.0,1,73900.0,1042852,6.0,170 -1247381,1630082560,8134280,2,54,-9.0,1,2.0,1,60000.0,1042852,4.0,170 -1247382,1630082561,8137439,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,169 -1247383,1630082562,8134312,2,34,-9.0,2,1.0,1,141000.0,1025215,1.0,170 -1247384,1630082563,8132248,1,59,-9.0,1,1.0,1,160000.0,1042852,4.0,170 -1247385,1630082564,8139198,2,41,1.0,2,1.0,1,50300.0,1025215,3.0,170 -1247386,1630082565,8135289,2,41,1.0,2,1.0,1,35000.0,1073094,2.0,170 -1247387,1630082566,8132399,2,74,-9.0,2,1.0,1,42970.0,1042852,3.0,170 -1247388,1630082567,8133881,2,30,-9.0,1,1.0,1,8000.0,1025215,4.0,170 -1247389,1630082568,8900713,1,33,1.0,3,2.0,1,50000.0,1001264,1.0,170 -1247390,1630082569,8137439,4,28,-9.0,1,1.0,1,50000.0,1073094,4.0,169 -1247391,1630082570,8138119,1,57,-9.0,2,1.0,1,19600.0,1001264,2.0,170 -1247392,1630082571,8135796,4,65,-9.0,1,1.0,1,12000.0,1009585,4.0,170 -1247393,1630082572,8134901,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,170 -1247394,1630082573,8900564,2,68,-9.0,2,0.0,1,126000.0,1001264,5.0,170 -1247395,1630082574,8134901,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,170 -1247396,1630082575,8134901,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,170 -1247397,1630082576,8137439,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,169 -1247398,1630082577,8137439,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,169 -1247399,1630082578,8134280,1,48,1.0,2,0.0,1,8000.0,1025215,3.0,170 -1247400,1630082579,8137439,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,169 -1247401,1630082580,8134901,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,170 -1247402,1630082581,8137439,2,47,1.0,2,1.0,1,104500.0,1001264,3.0,169 -1247403,1630082582,8133011,4,60,-9.0,1,1.0,1,52000.0,1009585,6.0,170 -1247404,1630082583,8134649,4,54,2.0,4,2.0,1,90000.0,1025215,3.0,170 -1247405,1630082584,8140257,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,170 -1247406,1630082585,8141197,2,34,3.0,5,2.0,1,41500.0,1009585,1.0,169 -1247407,1630082586,8136934,2,34,3.0,5,2.0,1,41500.0,1009585,1.0,170 -1247408,1630082587,8136938,2,32,3.0,4,1.0,1,48000.0,1025215,3.0,170 -1247409,1630082588,8141230,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,169 -1247410,1630082589,8139987,2,44,2.0,6,0.0,1,30400.0,1073094,3.0,169 -1247411,1630082590,8138817,2,27,1.0,3,3.0,1,59000.0,1025215,3.0,169 -1247412,1630082591,8140998,2,38,1.0,2,1.0,1,42200.0,1001264,3.0,169 -1247413,1630082592,8134446,2,29,1.0,2,1.0,1,32000.0,1025215,2.0,170 -1247414,1630082593,8133606,2,41,1.0,2,1.0,1,50300.0,1025215,3.0,170 -1247415,1630082594,8140962,2,31,1.0,2,1.0,1,30000.0,1001264,3.0,169 -1247416,1630082595,8142249,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,169 -1247417,1630082596,8139940,2,36,-9.0,2,2.0,1,56700.0,1025215,2.0,169 -1247418,1630082597,8139953,2,28,3.0,5,1.0,1,52700.0,1042852,2.0,169 -1247419,1630082598,8139415,2,36,5.0,8,2.0,1,33600.0,1042852,3.0,169 -1247420,1630082599,8139509,2,26,3.0,6,0.0,1,30700.0,1009585,3.0,169 -1247421,1630082600,8139753,2,29,-9.0,2,1.0,1,43100.0,1025215,2.0,169 -1247422,1630082601,8140579,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,169 -1247423,1630082602,8141208,2,28,-9.0,2,2.0,1,40000.0,1009585,7.0,169 -1247424,1630082603,8139905,2,43,1.0,5,0.0,1,9200.0,1025215,3.0,169 -1247425,1630082604,8141475,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,169 -1247426,1630082605,8139227,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,169 -1247427,1630082606,8139459,2,43,1.0,5,0.0,1,9200.0,1025215,3.0,169 -1247428,1630082607,8140579,2,43,1.0,5,0.0,1,9200.0,1025215,3.0,169 -1247429,1630082608,8140892,2,36,2.0,5,0.0,1,23680.0,1001264,3.0,169 -1247430,1630082609,8140859,2,43,1.0,5,0.0,1,9200.0,1025215,3.0,169 -1247431,1630082610,8139934,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,169 -1247432,1630082611,8140856,2,34,4.0,5,1.0,1,0.0,1042852,3.0,169 -1247433,1630082612,8140139,2,34,4.0,5,1.0,1,0.0,1042852,3.0,169 -1247434,1630082613,8139334,2,34,4.0,5,1.0,1,0.0,1042852,3.0,170 -1247435,1630082614,8139103,2,29,4.0,5,1.0,1,8700.0,1009585,3.0,169 -1247436,1630082615,8900713,2,34,4.0,5,1.0,1,0.0,1042852,3.0,170 -1247437,1630082616,8134649,2,33,4.0,5,2.0,1,10100.0,1001264,3.0,170 -1247438,1630082617,8134446,2,33,4.0,5,2.0,1,10100.0,1001264,3.0,170 -1247439,1630082618,8900713,2,35,3.0,4,0.0,1,8700.0,1009585,3.0,170 -1247440,1630082619,8900564,2,38,3.0,4,0.0,1,15000.0,1001264,3.0,170 -1247441,1630082620,8139103,2,40,1.0,4,1.0,1,5000.0,1073094,3.0,169 -1247442,1630082621,8141475,2,40,1.0,4,1.0,1,5000.0,1073094,3.0,169 -1247443,1630082622,8133881,2,36,2.0,4,2.0,1,11400.0,1042852,3.0,170 -1247444,1630082623,8140921,2,43,-9.0,1,0.0,1,8700.0,1009585,6.0,169 -1247445,1630082624,8141230,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,169 -1247446,1630082625,8142152,2,30,-9.0,1,1.0,1,10400.0,1073094,4.0,169 -1247447,1630082626,8133606,2,38,6.0,8,0.0,1,12200.0,1042852,3.0,170 -1247448,1630082627,8139491,2,25,5.0,6,1.0,1,16700.0,1073094,3.0,169 -1247449,1630082628,8136934,2,43,4.0,6,1.0,1,5900.0,1025215,3.0,170 -1247450,1630082629,8136934,2,43,4.0,6,1.0,1,5900.0,1025215,3.0,170 -1247451,1630082630,8139821,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,169 -1247452,1630082631,8900564,2,42,1.0,3,0.0,1,0.0,1001264,3.0,170 -1247453,1630082632,8141159,2,31,1.0,3,1.0,1,8400.0,1073094,2.0,169 -1247454,1630082633,8133011,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,170 -1247455,1630082634,8140666,2,36,2.0,3,1.0,1,290.0,1042852,3.0,169 -1247456,1630082635,8136670,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,170 -1247457,1630082636,8139599,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,169 -1247458,1630082637,8140748,2,36,-9.0,2,0.0,1,8100.0,1073094,7.0,169 -1247459,1630082638,8139181,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,169 -1247460,1630082639,8138799,2,26,1.0,2,0.0,1,3600.0,1025215,3.0,169 -1247461,1630082640,8140415,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,169 -1247462,1630082641,8140198,2,26,1.0,2,0.0,1,0.0,1001264,3.0,169 -1247463,1630082642,8139987,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,169 -1247464,1630082643,8140198,2,25,1.0,2,0.0,1,4800.0,1042852,3.0,169 -1247465,1630082644,8139415,2,30,-9.0,2,1.0,1,21500.0,1025215,3.0,169 -1247466,1630082645,8140962,2,43,-9.0,2,1.0,1,24740.0,1042852,7.0,169 -1247467,1630082646,8140998,2,33,1.0,2,1.0,1,17000.0,1073094,3.0,169 -1247468,1630082647,8141159,2,34,1.0,2,1.0,1,8700.0,1009585,3.0,169 -1247469,1630082648,8141208,2,28,1.0,2,1.0,1,13000.0,1073094,3.0,169 -1247470,1630082649,8140139,2,33,1.0,2,1.0,1,17000.0,1073094,3.0,169 -1247471,1630082650,8140177,2,42,1.0,2,1.0,1,2000.0,1073094,3.0,169 -1247472,1630082651,8140472,2,34,1.0,2,1.0,1,8700.0,1009585,3.0,169 -1247473,1630082652,8141208,2,30,1.0,2,1.0,1,15500.0,1042852,3.0,169 -1247474,1630082653,8141419,2,28,1.0,2,1.0,1,0.0,1001264,3.0,169 -1247475,1630082654,8139905,2,30,4.0,5,0.0,1,19000.0,1001264,3.0,169 -1247476,1630082655,8140748,2,30,4.0,5,0.0,1,19000.0,1001264,3.0,169 -1247477,1630082656,8140860,2,30,4.0,5,0.0,1,19000.0,1001264,3.0,169 -1247478,1630082657,8140860,2,30,4.0,5,0.0,1,19000.0,1001264,3.0,169 -1247479,1630082658,8140472,2,38,3.0,5,1.0,1,21600.0,1042852,1.0,169 -1247480,1630082659,8140415,2,33,4.0,5,1.0,1,5000.0,1001264,3.0,169 -1247481,1630082660,8140748,2,38,3.0,5,1.0,1,21600.0,1042852,1.0,169 -1247482,1630082661,8139821,2,38,3.0,5,1.0,1,21600.0,1042852,1.0,169 -1247483,1630082662,8138799,2,31,4.0,5,1.0,1,8400.0,1042852,3.0,169 -1247484,1630082663,8140356,2,31,4.0,5,1.0,1,8400.0,1042852,3.0,169 -1247485,1630082664,8140962,2,42,3.0,5,1.0,1,15800.0,1001264,3.0,169 -1247486,1630082665,8139043,2,38,3.0,5,1.0,1,21600.0,1042852,1.0,169 -1247487,1630082666,8139687,2,38,3.0,5,1.0,1,21600.0,1042852,1.0,169 -1247488,1630082667,8140177,2,38,3.0,5,1.0,1,21600.0,1042852,1.0,169 -1247489,1630082668,8140256,2,42,3.0,5,1.0,1,15800.0,1001264,3.0,169 -1247490,1630082669,8141121,2,27,2.0,4,1.0,1,23000.0,1009585,2.0,169 -1247491,1630082670,8140240,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,169 -1247492,1630082671,8139227,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,169 -1247493,1630082672,8140415,2,32,2.0,4,1.0,1,23900.0,1001264,2.0,169 -1247494,1630082673,8140240,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,169 -1247495,1630082674,8140356,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,169 -1247496,1630082675,8142152,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,169 -1247497,1630082676,8139491,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,169 -1247498,1630082677,8140892,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,169 -1247499,1630082678,8139227,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,169 -1247500,1630082679,8139753,2,27,2.0,4,1.0,1,23000.0,1009585,2.0,169 -1247501,1630082680,8142152,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,169 -1247502,1630082681,8139181,2,42,-9.0,1,0.0,1,27000.0,1025215,6.0,169 -1247503,1630082682,8138668,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,169 -1247504,1630082683,8140859,2,26,-9.0,1,1.0,1,13000.0,1073094,6.0,169 -1247505,1630082684,8142020,2,44,5.0,11,0.0,1,25300.0,1009585,3.0,169 -1247506,1630082685,8138799,2,44,5.0,11,0.0,1,25300.0,1009585,3.0,169 -1247507,1630082686,8139940,2,34,6.0,7,0.0,1,12200.0,1025215,3.0,169 -1247508,1630082687,8140546,2,35,5.0,8,1.0,1,24600.0,1073094,2.0,169 -1247509,1630082688,8139491,2,35,5.0,8,1.0,1,24600.0,1073094,2.0,169 -1247510,1630082689,8139043,2,35,5.0,8,1.0,1,24600.0,1073094,2.0,169 -1247511,1630082690,8134446,2,32,3.0,6,1.0,1,19200.0,1073094,1.0,170 -1247512,1630082691,8134280,2,32,3.0,6,1.0,1,19200.0,1073094,1.0,170 -1247513,1630082692,8133606,2,32,3.0,6,1.0,1,19200.0,1073094,1.0,170 -1247514,1630082693,8138817,2,32,4.0,6,1.0,1,5800.0,1001264,3.0,169 -1247515,1630082694,8141230,2,42,1.0,3,0.0,1,8900.0,1073094,3.0,169 -1247516,1630082695,8140666,2,42,1.0,3,0.0,1,8900.0,1073094,3.0,169 -1247517,1630082696,8136938,2,38,1.0,3,1.0,1,24000.0,1009585,3.0,170 -1247518,1630082697,8141419,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,169 -1247519,1630082698,8141419,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,169 -1247520,1630082699,8136040,2,38,1.0,3,1.0,1,16200.0,1001264,1.0,170 -1247521,1630082700,8138668,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,169 -1247522,1630082701,8136670,2,25,1.0,3,1.0,1,7640.0,1042852,3.0,170 -1247523,1630082702,8139687,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,169 -1247524,1630082703,8140240,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,169 -1247525,1630082704,8142020,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,169 -1247526,1630082705,8139934,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,169 -1247527,1630082706,8139905,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,169 -1247528,1630082707,8139953,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,169 -1247529,1630082708,8141208,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,169 -1247530,1630082709,8140579,2,34,1.0,2,0.0,1,18000.0,1025215,3.0,169 -1247531,1630082710,8140998,2,35,1.0,2,0.0,1,5400.0,1073094,3.0,169 -1247532,1630082711,8141230,2,34,1.0,2,0.0,1,18000.0,1025215,3.0,169 -1247533,1630082712,8142020,2,35,1.0,2,0.0,1,3210.0,1009585,3.0,169 -1247534,1630082713,8140198,2,26,-9.0,2,1.0,1,20000.0,1042852,5.0,169 -1247535,1630082714,8140472,2,26,-9.0,2,1.0,1,20000.0,1042852,5.0,169 -1247536,1630082715,8133606,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,170 -1247537,1630082716,8139905,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,169 -1247538,1630082717,8140666,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,169 -1247539,1630082718,8133606,2,29,1.0,2,1.0,1,15000.0,1025215,3.0,170 -1247540,1630082719,8141704,2,32,1.0,2,1.0,1,13600.0,1001264,3.0,169 -1247541,1630082720,8140198,2,30,1.0,2,1.0,1,19000.0,1073094,3.0,169 -1247542,1630082721,8140860,2,25,1.0,2,1.0,1,4500.0,1042852,3.0,169 -1247543,1630082722,8139459,2,30,1.0,2,1.0,1,19000.0,1073094,3.0,169 -1247544,1630082723,8139953,2,32,1.0,2,1.0,1,13600.0,1001264,3.0,169 -1247545,1630082724,8140472,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,169 -1247546,1630082725,8141208,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,169 -1247547,1630082726,8140859,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,169 -1247548,1630082727,8140192,2,25,1.0,2,1.0,1,4500.0,1042852,3.0,169 -1247549,1630082728,8138817,2,26,1.0,2,1.0,1,7500.0,1009585,3.0,169 -1247550,1630082729,8900564,2,40,1.0,2,1.0,1,22400.0,1042852,3.0,170 -1247551,1630082730,8136040,2,40,1.0,2,1.0,1,22400.0,1042852,3.0,170 -1247552,1630082731,8140860,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,169 -1247553,1630082732,8135225,2,42,-9.0,2,2.0,1,8500.0,1009585,3.0,170 -1247554,1630082733,8139069,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,170 -1247555,1630082734,8135225,2,42,-9.0,2,2.0,1,8500.0,1009585,3.0,170 -1247556,1630082735,8136670,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,170 -1247557,1630082736,8133606,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,170 -1247558,1630082737,8136934,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,170 -1247559,1630082738,8134979,2,44,2.0,5,1.0,1,27700.0,1025215,3.0,170 -1247560,1630082739,8136670,2,44,2.0,5,1.0,1,27700.0,1025215,3.0,170 -1247561,1630082740,8138799,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,169 -1247562,1630082741,8134649,2,25,2.0,4,2.0,1,14900.0,1042852,3.0,170 -1247563,1630082742,8135225,2,25,2.0,4,2.0,1,14900.0,1042852,3.0,170 -1247564,1630082743,8141475,2,26,-9.0,2,0.0,1,12200.0,1001264,7.0,169 -1247565,1630082744,8900564,2,44,-9.0,2,1.0,1,18000.0,1042852,2.0,170 -1247566,1630082745,8136670,2,47,3.0,5,2.0,1,37100.0,1009585,3.0,170 -1247567,1630082746,8136938,2,46,-9.0,1,1.0,1,30000.0,1042852,4.0,170 -1247568,1630082747,8139459,2,45,-9.0,2,1.0,1,40200.0,1042852,3.0,169 -1247569,1630082748,8140192,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,169 -1247570,1630082749,8136938,2,45,-9.0,2,2.0,1,58400.0,1001264,3.0,170 -1247571,1630082750,8139491,2,60,-9.0,2,2.0,1,40700.0,1001264,1.0,169 -1247572,1630082751,8141159,2,63,1.0,2,2.0,1,37300.0,1009585,3.0,169 -1247573,1630082752,8136670,2,54,-9.0,2,2.0,1,58900.0,1025215,1.0,170 -1247574,1630082753,8900564,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,170 -1247575,1630082754,8134280,2,54,-9.0,1,0.0,1,7200.0,1042852,6.0,170 -1247576,1630082755,8900564,2,56,-9.0,1,0.0,1,2440.0,1001264,6.0,170 -1247577,1630082756,8141494,2,55,-9.0,1,0.0,1,10800.0,1025215,6.0,169 -1247578,1630082757,8141230,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,169 -1247579,1630082758,8141121,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,169 -1247580,1630082759,8140256,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,169 -1247581,1630082760,8139069,2,62,-9.0,1,1.0,1,7000.0,1001264,4.0,170 -1247582,1630082761,8140859,2,49,-9.0,1,1.0,1,3700.0,1073094,6.0,169 -1247583,1630082762,8140859,2,49,-9.0,3,0.0,1,10170.0,1001264,1.0,169 -1247584,1630082763,8141494,2,51,-9.0,2,0.0,1,24000.0,1073094,7.0,169 -1247585,1630082764,8141475,2,59,-9.0,2,0.0,1,8650.0,1025215,3.0,169 -1247586,1630082765,8139509,2,54,-9.0,2,0.0,1,11800.0,1001264,3.0,169 -1247587,1630082766,8136934,2,62,-9.0,2,0.0,1,16800.0,1042852,1.0,170 -1247588,1630082767,8139334,2,57,-9.0,2,0.0,1,14200.0,1009585,1.0,170 -1247589,1630082768,8140192,2,63,-9.0,2,0.0,1,15000.0,1073094,5.0,169 -1247590,1630082769,8136040,2,51,-9.0,2,0.0,1,7200.0,1025215,1.0,170 -1247591,1630082770,8135225,2,50,-9.0,2,0.0,1,5100.0,1042852,2.0,170 -1247592,1630082771,8141197,2,51,1.0,2,0.0,1,3100.0,1073094,2.0,169 -1247593,1630082772,8139103,2,50,1.0,2,0.0,1,8100.0,1073094,3.0,169 -1247594,1630082773,8140472,2,53,1.0,2,0.0,1,12000.0,1025215,2.0,169 -1247595,1630082774,8140579,2,56,-9.0,2,1.0,1,15600.0,1009585,1.0,169 -1247596,1630082775,8138668,2,61,-9.0,2,1.0,1,2800.0,1001264,1.0,169 -1247597,1630082776,8141419,2,46,-9.0,2,1.0,1,15000.0,1042852,3.0,169 -1247598,1630082777,8139043,2,51,-9.0,2,1.0,1,17900.0,1042852,7.0,169 -1247599,1630082778,8140256,2,54,1.0,2,1.0,1,8500.0,1009585,2.0,169 -1247600,1630082779,8140356,2,59,1.0,2,1.0,1,14880.0,1042852,3.0,169 -1247601,1630082780,8141680,2,51,4.0,5,0.0,1,1920.0,1025215,3.0,169 -1247602,1630082781,8140892,2,53,1.0,4,1.0,1,5800.0,1073094,3.0,169 -1247603,1630082782,8139953,2,53,2.0,4,2.0,1,20500.0,1042852,3.0,169 -1247604,1630082783,8139905,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,169 -1247605,1630082784,8140666,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,169 -1247606,1630082785,8139459,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,169 -1247607,1630082786,8139821,2,60,-9.0,1,1.0,1,12000.0,1001264,4.0,169 -1247608,1630082787,8140748,2,51,-9.0,1,1.0,1,1200.0,1073094,6.0,169 -1247609,1630082788,8140240,2,45,5.0,6,1.0,1,28100.0,1009585,3.0,169 -1247610,1630082789,8139649,2,49,-9.0,3,0.0,1,2200.0,1042852,1.0,169 -1247611,1630082790,8139940,2,58,1.0,3,1.0,1,23160.0,1025215,1.0,169 -1247612,1630082791,8140579,2,54,-9.0,2,0.0,1,29300.0,1001264,3.0,169 -1247613,1630082792,8139227,2,52,-9.0,2,0.0,1,4100.0,1009585,3.0,169 -1247614,1630082793,8141680,2,52,-9.0,2,0.0,1,12160.0,1001264,7.0,169 -1247615,1630082794,8139649,2,55,-9.0,2,1.0,1,25000.0,1042852,3.0,169 -1247616,1630082795,8140660,2,55,-9.0,2,1.0,1,14000.0,1042852,3.0,169 -1247617,1630082796,8139509,2,50,-9.0,2,1.0,1,20480.0,1073094,3.0,169 -1247618,1630082797,8142249,2,55,-9.0,2,1.0,1,14000.0,1042852,3.0,169 -1247619,1630082798,8140177,2,55,-9.0,2,1.0,1,14000.0,1042852,3.0,169 -1247620,1630082799,8140859,2,57,-9.0,2,1.0,1,26100.0,1001264,3.0,169 -1247621,1630082800,8139043,2,50,-9.0,2,1.0,1,20480.0,1073094,3.0,169 -1247622,1630082801,8139103,2,55,-9.0,2,1.0,1,9800.0,1042852,3.0,169 -1247623,1630082802,8139509,2,54,-9.0,2,2.0,1,27000.0,1009585,1.0,169 -1247624,1630082803,8141680,2,53,-9.0,2,5.0,1,29200.0,1042852,1.0,169 -1247625,1630082804,8140139,2,53,-9.0,2,5.0,1,29200.0,1042852,1.0,169 -1247626,1630082805,8140356,2,54,-9.0,2,0.0,1,19000.0,1001264,1.0,169 -1247627,1630082806,8141525,2,50,-9.0,2,1.0,1,25400.0,1001264,3.0,169 -1247628,1630082807,8141121,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,169 -1247629,1630082808,8140921,2,66,2.0,6,1.0,1,57400.0,1073094,1.0,169 -1247630,1630082809,8139934,2,73,-9.0,2,1.0,1,55100.0,1001264,3.0,169 -1247631,1630082810,8140660,2,73,-9.0,2,2.0,1,52800.0,1073094,1.0,169 -1247632,1630082811,8139940,2,86,-9.0,1,0.0,1,9400.0,1009585,6.0,169 -1247633,1630082812,8140198,2,86,-9.0,1,0.0,1,8100.0,1073094,4.0,169 -1247634,1630082813,8142249,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,169 -1247635,1630082814,8139753,2,76,-9.0,1,0.0,1,4101.0,1001264,4.0,169 -1247636,1630082815,8139415,2,79,-9.0,1,0.0,1,13800.0,1025215,4.0,169 -1247637,1630082816,8142152,2,94,-9.0,1,0.0,1,23000.0,1042852,6.0,169 -1247638,1630082817,8139459,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,169 -1247639,1630082818,8138668,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,169 -1247640,1630082819,8140415,2,69,-9.0,1,0.0,1,8400.0,1001264,6.0,169 -1247641,1630082820,8139821,2,76,-9.0,1,1.0,1,23400.0,1025215,4.0,169 -1247642,1630082821,8140139,2,65,-9.0,1,1.0,1,19300.0,1073094,4.0,169 -1247643,1630082822,8139987,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,169 -1247644,1630082823,8141704,2,65,-9.0,1,1.0,1,9100.0,1073094,6.0,169 -1247645,1630082824,8140660,2,65,3.0,6,0.0,1,6100.0,1073094,1.0,169 -1247646,1630082825,8141704,2,65,3.0,6,0.0,1,6100.0,1073094,1.0,169 -1247647,1630082826,8139459,2,71,-9.0,2,0.0,1,13000.0,1042852,1.0,169 -1247648,1630082827,8140962,2,69,-9.0,2,0.0,1,26200.0,1001264,5.0,169 -1247649,1630082828,8140860,2,71,-9.0,2,0.0,1,13000.0,1042852,1.0,169 -1247650,1630082829,8139649,2,76,-9.0,2,0.0,1,21400.0,1025215,1.0,169 -1247651,1630082830,8140660,2,90,-9.0,2,0.0,1,21000.0,1073094,1.0,169 -1247652,1630082831,8140856,2,72,-9.0,2,0.0,1,10420.0,1009585,3.0,169 -1247653,1630082832,8141197,2,69,-9.0,2,0.0,1,26200.0,1001264,5.0,169 -1247654,1630082833,8139415,2,66,-9.0,2,0.0,1,0.0,1073094,3.0,169 -1247655,1630082834,8140546,2,68,-9.0,2,1.0,1,12000.0,1001264,1.0,169 -1247656,1630082835,8140666,2,81,-9.0,2,1.0,1,13700.0,1073094,3.0,169 -1247657,1630082836,8134559,2,84,-9.0,2,1.0,1,21700.0,1025215,3.0,170 -1247658,1630082837,8133606,2,84,-9.0,2,1.0,1,21700.0,1025215,3.0,170 -1247659,1630082838,8133606,2,66,1.0,2,1.0,1,15200.0,1001264,3.0,170 -1247660,1630082839,8140192,2,65,-9.0,2,2.0,1,19100.0,1025215,1.0,169 -1247661,1630082840,8140921,2,65,-9.0,2,2.0,1,19100.0,1025215,1.0,169 -1247662,1630082841,8140998,2,71,-9.0,2,0.0,1,13500.0,1025215,7.0,169 -1247663,1630082842,8140546,2,72,-9.0,2,1.0,1,11000.0,1001264,3.0,169 -1247664,1630082843,8134649,2,37,2.0,4,1.0,1,41000.0,1001264,1.0,170 -1247665,1630082844,8139069,2,74,-9.0,2,1.0,1,42970.0,1042852,3.0,170 -1247666,1630082845,8136670,2,43,4.0,6,1.0,1,5900.0,1025215,3.0,170 -1247667,1630082846,8134649,2,40,1.0,4,0.0,1,18200.0,1042852,3.0,170 -1247668,1630082847,8136938,2,37,4.0,5,1.0,1,4000.0,1001264,3.0,170 -1247669,1630082848,8139181,2,76,-9.0,2,0.0,1,41200.0,1009585,3.0,169 -1247670,1630082849,8133606,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,170 -1247671,1630082850,8136934,2,42,4.0,8,1.0,1,5280.0,1001264,3.0,170 -1247672,1630082851,8136934,2,61,-9.0,2,0.0,1,12700.0,1042852,1.0,170 -1247673,1630082852,8136670,2,32,2.0,4,1.0,1,23000.0,1001264,2.0,170 -1247674,1630082853,8136670,2,37,5.0,8,1.0,1,42000.0,1009585,3.0,170 -1247675,1630082854,8136670,2,36,1.0,4,2.0,1,59600.0,1009585,3.0,170 -1247676,1630082855,8142249,2,42,-9.0,4,3.0,1,0.0,1009585,1.0,169 -1247677,1630082856,8141197,2,40,1.0,4,1.0,1,5000.0,1073094,3.0,169 -1247678,1630082857,8136938,2,47,5.0,10,0.0,1,5400.0,1009585,1.0,170 -1247679,1630082858,8136938,2,37,6.0,7,0.0,1,40000.0,1025215,3.0,170 -1247680,1630082859,8139649,2,43,-9.0,2,1.0,1,24740.0,1042852,7.0,169 -1247681,1630082860,8139599,2,29,2.0,3,0.0,1,8100.0,1042852,3.0,169 -1247682,1630082861,8140748,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,169 -1247683,1630082862,8136670,2,47,-9.0,2,2.0,1,51600.0,1042852,1.0,170 -1247684,1630082863,8140892,2,78,2.0,4,0.0,1,23900.0,1042852,3.0,169 -1247685,1630082864,8132248,2,30,2.0,3,1.0,1,20600.0,1042852,3.0,170 -1247686,1630082865,8133606,2,47,1.0,2,1.0,1,25000.0,1025215,2.0,170 -1247687,1630082866,8136670,2,42,2.0,8,1.0,1,35400.0,1025215,3.0,170 -1247688,1630082867,8140256,2,55,1.0,3,0.0,1,11100.0,1073094,3.0,169 -1247689,1630082868,8142020,2,52,-9.0,2,0.0,1,15000.0,1025215,5.0,169 -1247690,1630082869,8140472,2,34,-9.0,1,1.0,1,30000.0,1073094,6.0,169 -1247691,1630082870,8141159,2,45,1.0,2,0.0,1,20900.0,1009585,3.0,169 -1247692,1630082871,8140579,2,75,-9.0,2,1.0,1,45200.0,1001264,7.0,169 -1247693,1630082872,8136670,2,44,1.0,3,2.0,1,7300.0,1073094,3.0,170 -1247694,1630082873,8141704,2,38,1.0,2,1.0,1,42200.0,1001264,3.0,169 -1247695,1630082874,8136938,2,39,4.0,7,0.0,1,5900.0,1025215,3.0,170 -1247696,1630082875,8140546,2,32,1.0,2,0.0,1,40400.0,1042852,3.0,169 -1247697,1630082876,8139744,2,57,1.0,3,2.0,1,17500.0,1001264,3.0,170 -1247698,1630082877,8139934,2,29,1.0,3,1.0,1,42970.0,1042852,2.0,169 -1247699,1630082878,8138817,2,54,-9.0,2,2.0,1,27000.0,1009585,1.0,169 -1247700,1630082879,8136934,2,45,-9.0,3,1.0,1,11000.0,1042852,3.0,170 -1247701,1630082880,8900564,2,54,3.0,5,1.0,1,31000.0,1001264,3.0,170 -1247702,1630082881,8141494,2,62,-9.0,2,0.0,1,38100.0,1025215,1.0,169 -1247703,1630082882,8140921,2,61,-9.0,2,1.0,1,2800.0,1001264,1.0,169 -1247704,1630082883,8139753,2,47,-9.0,4,1.0,1,37450.0,1001264,3.0,169 -1247705,1630082884,8136670,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,170 -1247706,1630082885,8140856,2,33,3.0,4,0.0,1,0.0,1001264,3.0,169 -1247707,1630082886,8136938,2,45,-9.0,2,2.0,1,58400.0,1001264,3.0,170 -1247708,1630082887,8140198,2,54,-9.0,3,3.0,1,44100.0,1025215,3.0,169 -1247709,1630082888,8139687,2,46,-9.0,2,2.0,1,15800.0,1025215,1.0,169 -1247710,1630082889,8139687,2,28,-9.0,2,2.0,1,50000.0,1001264,3.0,169 -1247711,1630082890,8134446,2,32,3.0,6,1.0,1,19200.0,1073094,1.0,170 -1247712,1630082891,8141159,2,31,1.0,3,1.0,1,7500.0,1009585,2.0,169 -1247713,1630082892,8140748,2,41,-9.0,2,1.0,1,35000.0,1073094,3.0,169 -1247714,1630082893,8136670,2,47,2.0,3,0.0,1,8700.0,1009585,3.0,170 -1247715,1630082894,8141208,2,65,1.0,2,0.0,1,10000.0,1073094,3.0,169 -1247716,1630082895,8136670,2,26,2.0,4,1.0,1,36800.0,1001264,3.0,170 -1247717,1630082896,8140177,2,56,-9.0,2,1.0,1,56000.0,1042852,3.0,169 -1247718,1630082897,8136938,2,47,1.0,4,1.0,1,21300.0,1001264,3.0,170 -1247719,1630082898,8141525,2,58,-9.0,3,2.0,1,55200.0,1025215,3.0,169 -1247720,1630082899,8139069,2,48,1.0,5,0.0,1,48300.0,1001264,3.0,170 -1247721,1630082900,8133606,2,55,-9.0,6,1.0,1,37900.0,1042852,3.0,170 -1247722,1630082901,8136040,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,170 -1247723,1630082902,8141159,2,50,3.0,4,0.0,1,8000.0,1042852,3.0,169 -1247724,1630082903,8140856,2,87,-9.0,3,0.0,1,12200.0,1001264,3.0,169 -1247725,1630082904,8139599,2,32,1.0,2,1.0,1,13600.0,1001264,3.0,169 -1247726,1630082905,8140666,2,63,1.0,2,2.0,1,37300.0,1009585,3.0,169 -1247727,1630082906,8141680,2,94,-9.0,3,1.0,1,24200.0,1009585,3.0,169 -1247728,1630082907,8139905,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,169 -1247729,1630082908,8141230,2,85,-9.0,2,0.0,1,42220.0,1009585,3.0,169 -1247730,1630082909,8136040,2,36,4.0,5,0.0,1,13000.0,1042852,3.0,170 -1247731,1630082910,8141494,1,25,-9.0,2,2.0,1,48000.0,1042852,7.0,169 -1247732,1630082911,8139744,2,71,1.0,4,1.0,1,4500.0,1009585,3.0,170 -1247733,1630082912,8141525,2,52,-9.0,1,0.0,1,6000.0,1073094,6.0,169 -1247734,1630082913,8136670,2,56,4.0,8,0.0,1,11000.0,1001264,3.0,170 -1247735,1630082914,8139821,2,59,-9.0,1,2.0,1,20000.0,1001264,4.0,169 -1247736,1630082915,8140860,2,62,1.0,3,1.0,1,15170.0,1042852,1.0,169 -1247737,1630082916,8139599,2,27,1.0,3,3.0,1,59000.0,1025215,3.0,169 -1247738,1630082917,8133606,2,42,2.0,4,0.0,1,30000.0,1025215,3.0,170 -1247739,1630082918,8136934,2,50,-9.0,4,2.0,1,43680.0,1073094,1.0,170 -1247740,1630082919,8139255,2,53,3.0,8,0.0,1,45600.0,1009585,1.0,170 -1247741,1630082920,8141525,2,59,-9.0,1,1.0,1,32000.0,1042852,4.0,169 -1247742,1630082921,8139255,2,44,-9.0,4,0.0,1,24000.0,1042852,3.0,170 -1247743,1630082922,8139181,2,61,1.0,2,0.0,1,18500.0,1042852,3.0,169 -1247744,1630082923,8136934,2,49,9.0,12,1.0,1,46500.0,1001264,1.0,170 -1247745,1630082924,8139821,2,25,1.0,2,1.0,1,45000.0,1073094,3.0,169 -1247746,1630082925,8136670,2,36,5.0,8,2.0,1,33600.0,1042852,3.0,170 -1247747,1630082926,8139987,2,50,1.0,2,1.0,1,37000.0,1025215,3.0,169 -1247748,1630082927,8134649,2,36,-9.0,2,2.0,1,56700.0,1025215,2.0,170 -1247749,1630082928,8133881,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,170 -1247750,1630082929,8141121,2,66,-9.0,1,1.0,1,20200.0,1042852,6.0,169 -1247751,1630082930,8140294,2,30,-9.0,1,1.0,1,8000.0,1025215,4.0,166 -1247752,1630082931,8140294,2,94,-9.0,1,0.0,1,26000.0,1073094,6.0,166 -1247753,1630082932,8140294,2,66,-9.0,1,1.0,1,24600.0,1009585,6.0,166 -1247754,1630082933,8140294,2,68,-9.0,1,1.0,1,25000.0,1073094,6.0,166 -1247755,1630082934,8140294,2,80,-9.0,1,1.0,1,8900.0,1009585,4.0,166 -1247756,1630082935,8155037,2,32,-9.0,1,1.0,1,48000.0,1025215,6.0,164 -1247757,1630082936,8152225,2,34,-9.0,1,1.0,1,36000.0,1042852,6.0,168 -1247758,1630082937,8155778,2,38,2.0,4,0.0,1,0.0,1025215,3.0,168 -1247759,1630082938,8155778,2,33,3.0,4,1.0,1,8600.0,1025215,3.0,168 -1247760,1630082939,8155778,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,168 -1247761,1630082940,8155037,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,164 -1247762,1630082941,8155778,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,168 -1247763,1630082942,8155037,2,42,-9.0,1,0.0,1,4000.0,1073094,4.0,164 -1247764,1630082943,8155778,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,168 -1247765,1630082944,8152511,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,168 -1247766,1630082945,8153953,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,168 -1247767,1630082946,8152042,2,43,-9.0,1,1.0,1,12000.0,1009585,4.0,168 -1247768,1630082947,8155778,2,30,-9.0,1,1.0,1,10400.0,1073094,4.0,168 -1247769,1630082948,8151851,2,42,1.0,3,0.0,1,0.0,1001264,3.0,168 -1247770,1630082949,8154798,2,31,2.0,3,1.0,1,12000.0,1009585,3.0,168 -1247771,1630082950,8155778,2,41,1.0,2,0.0,1,9700.0,1009585,3.0,168 -1247772,1630082951,8155778,2,31,1.0,2,1.0,1,22900.0,1042852,2.0,168 -1247773,1630082952,8151583,2,27,2.0,4,1.0,1,23000.0,1009585,2.0,168 -1247774,1630082953,8150531,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,162 -1247775,1630082954,8155778,2,27,2.0,4,1.0,1,23000.0,1009585,2.0,168 -1247776,1630082955,8154037,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,168 -1247777,1630082956,8155778,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,168 -1247778,1630082957,8142821,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,166 -1247779,1630082958,8155778,2,27,-9.0,1,1.0,1,26000.0,1001264,6.0,168 -1247780,1630082959,8155778,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,168 -1247781,1630082960,8155037,2,25,1.0,3,1.0,1,7640.0,1042852,3.0,164 -1247782,1630082961,8155037,2,28,1.0,2,1.0,1,21000.0,1009585,3.0,164 -1247783,1630082962,8154037,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,168 -1247784,1630082963,8142821,2,63,-9.0,1,0.0,1,37000.0,1073094,4.0,166 -1247785,1630082964,8155778,2,60,-9.0,1,1.0,1,36000.0,1042852,4.0,168 -1247786,1630082965,8155778,2,60,-9.0,1,1.0,1,36000.0,1042852,4.0,168 -1247787,1630082966,8152225,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,168 -1247788,1630082967,8155256,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,168 -1247789,1630082968,8155037,2,58,-9.0,1,0.0,1,45000.0,1009585,6.0,164 -1247790,1630082969,8155037,2,56,-9.0,1,1.0,1,45300.0,1042852,4.0,164 -1247791,1630082970,8152225,2,48,-9.0,1,1.0,1,30000.0,1073094,4.0,168 -1247792,1630082971,8155037,2,54,-9.0,1,1.0,1,34600.0,1042852,4.0,164 -1247793,1630082972,8155778,2,50,-9.0,1,1.0,1,38000.0,1073094,6.0,168 -1247794,1630082973,8155778,2,53,-9.0,1,1.0,1,42000.0,1042852,4.0,168 -1247795,1630082974,8155778,2,55,-9.0,1,1.0,1,50000.0,1042852,6.0,168 -1247796,1630082975,8155037,2,58,-9.0,1,1.0,1,40370.0,1073094,4.0,164 -1247797,1630082976,8155037,2,56,-9.0,1,1.0,1,45300.0,1042852,4.0,164 -1247798,1630082977,8155037,2,54,-9.0,1,1.0,1,38000.0,1073094,6.0,164 -1247799,1630082978,8152511,2,45,-9.0,1,1.0,1,36000.0,1009585,4.0,168 -1247800,1630082979,8153261,2,56,-9.0,1,1.0,1,39000.0,1009585,4.0,168 -1247801,1630082980,8153137,2,48,-9.0,1,1.0,1,30000.0,1073094,4.0,168 -1247802,1630082981,8155037,2,46,-9.0,1,1.0,1,40000.0,1073094,4.0,164 -1247803,1630082982,8154419,1,61,-9.0,1,1.0,1,57000.0,1025215,4.0,168 -1247804,1630082983,8155778,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,168 -1247805,1630082984,8155778,2,55,-9.0,4,1.0,1,56000.0,1025215,2.0,168 -1247806,1630082985,8153261,2,47,-9.0,4,1.0,1,37450.0,1001264,3.0,168 -1247807,1630082986,8141181,2,59,-9.0,2,2.0,1,54400.0,1042852,1.0,166 -1247808,1630082987,8142821,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,166 -1247809,1630082988,8151583,2,45,-9.0,2,1.0,1,85000.0,1073094,2.0,168 -1247810,1630082989,8155037,2,47,2.0,4,0.0,1,24600.0,1042852,2.0,164 -1247811,1630082990,8154037,2,47,1.0,4,1.0,1,21300.0,1001264,3.0,168 -1247812,1630082991,8155037,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,164 -1247813,1630082992,8155037,2,54,-9.0,1,0.0,1,10000.0,1001264,4.0,164 -1247814,1630082993,8155037,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,164 -1247815,1630082994,8155778,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,168 -1247816,1630082995,8155037,2,51,-9.0,1,0.0,1,8900.0,1009585,4.0,164 -1247817,1630082996,8153520,2,50,-9.0,1,0.0,1,11200.0,1001264,6.0,168 -1247818,1630082997,8155037,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,164 -1247819,1630082998,8155037,2,56,-9.0,1,0.0,1,8750.0,1001264,4.0,164 -1247820,1630082999,8153790,2,51,-9.0,1,0.0,1,0.0,1025215,4.0,168 -1247821,1630083000,8155037,2,63,-9.0,1,0.0,1,6000.0,1073094,4.0,164 -1247822,1630083001,8154419,2,58,-9.0,1,0.0,1,0.0,1025215,4.0,168 -1247823,1630083002,8154419,2,45,-9.0,1,0.0,1,16800.0,1009585,4.0,168 -1247824,1630083003,8151583,2,63,-9.0,1,0.0,1,8500.0,1025215,6.0,168 -1247825,1630083004,8155037,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,164 -1247826,1630083005,8153953,2,64,-9.0,1,0.0,1,25800.0,1009585,6.0,168 -1247827,1630083006,8152225,2,49,-9.0,1,0.0,1,0.0,1001264,4.0,168 -1247828,1630083007,8153565,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,168 -1247829,1630083008,8155778,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,168 -1247830,1630083009,8155778,2,47,-9.0,1,0.0,1,6900.0,1025215,6.0,168 -1247831,1630083010,8155037,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,164 -1247832,1630083011,8155037,2,63,-9.0,1,0.0,1,0.0,1025215,6.0,164 -1247833,1630083012,8155778,2,62,-9.0,1,0.0,1,28800.0,1001264,4.0,168 -1247834,1630083013,8155778,2,55,-9.0,1,0.0,1,12900.0,1042852,4.0,168 -1247835,1630083014,8155037,2,59,-9.0,1,0.0,1,9800.0,1009585,6.0,164 -1247836,1630083015,8155778,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,168 -1247837,1630083016,8154037,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,168 -1247838,1630083017,8155778,2,52,-9.0,1,0.0,1,8900.0,1009585,6.0,168 -1247839,1630083018,8155778,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,168 -1247840,1630083019,8155037,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,164 -1247841,1630083020,8151583,2,53,-9.0,1,0.0,1,26030.0,1042852,4.0,168 -1247842,1630083021,8155778,2,50,-9.0,1,0.0,1,8900.0,1009585,6.0,168 -1247843,1630083022,8152225,2,56,-9.0,1,0.0,1,0.0,1001264,4.0,168 -1247844,1630083023,8154037,2,57,-9.0,1,0.0,1,5200.0,1073094,4.0,168 -1247845,1630083024,8155778,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,168 -1247846,1630083025,8155778,2,60,-9.0,1,0.0,1,12000.0,1025215,4.0,168 -1247847,1630083026,8155778,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,168 -1247848,1630083027,8155256,2,58,-9.0,1,0.0,1,8700.0,1009585,4.0,168 -1247849,1630083028,8155778,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,168 -1247850,1630083029,8155143,2,50,-9.0,1,0.0,1,0.0,1025215,4.0,168 -1247851,1630083030,8155037,2,50,-9.0,1,0.0,1,10900.0,1073094,4.0,164 -1247852,1630083031,8155778,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,168 -1247853,1630083032,8155037,2,54,-9.0,1,0.0,1,10000.0,1001264,4.0,164 -1247854,1630083033,8155037,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,164 -1247855,1630083034,8155037,2,52,-9.0,1,0.0,1,6000.0,1073094,6.0,164 -1247856,1630083035,8152537,2,58,-9.0,1,0.0,1,12000.0,1042852,4.0,168 -1247857,1630083036,8155778,2,58,-9.0,1,0.0,1,9700.0,1009585,4.0,168 -1247858,1630083037,8155778,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,168 -1247859,1630083038,8155778,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,168 -1247860,1630083039,8155778,2,62,-9.0,1,0.0,1,8570.0,1042852,6.0,168 -1247861,1630083040,8155778,2,56,-9.0,1,0.0,1,2440.0,1001264,6.0,168 -1247862,1630083041,8155037,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,164 -1247863,1630083042,8153261,2,50,-9.0,1,0.0,1,11200.0,1001264,6.0,168 -1247864,1630083043,8154798,2,49,-9.0,1,0.0,1,0.0,1001264,4.0,168 -1247865,1630083044,8155778,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,168 -1247866,1630083045,8155256,2,56,-9.0,1,0.0,1,0.0,1001264,4.0,168 -1247867,1630083046,8155778,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,168 -1247868,1630083047,8151583,2,54,-9.0,1,0.0,1,4400.0,1025215,4.0,168 -1247869,1630083048,8155143,2,64,-9.0,1,0.0,1,25800.0,1009585,6.0,168 -1247870,1630083049,8155778,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,168 -1247871,1630083050,8153953,2,58,-9.0,1,0.0,1,8700.0,1009585,4.0,168 -1247872,1630083051,8153953,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,168 -1247873,1630083052,8155778,2,45,-9.0,1,0.0,1,16800.0,1009585,4.0,168 -1247874,1630083053,8155037,2,55,-9.0,1,0.0,1,10800.0,1025215,6.0,164 -1247875,1630083054,8154419,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,168 -1247876,1630083055,8155037,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,164 -1247877,1630083056,8155778,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,168 -1247878,1630083057,8155037,2,56,-9.0,1,0.0,1,13200.0,1009585,4.0,164 -1247879,1630083058,8155778,2,51,-9.0,1,0.0,1,10600.0,1025215,6.0,168 -1247880,1630083059,8155778,2,55,-9.0,1,0.0,1,12900.0,1042852,4.0,168 -1247881,1630083060,8155778,2,58,-9.0,1,0.0,1,8500.0,1025215,4.0,168 -1247882,1630083061,8155778,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,168 -1247883,1630083062,8155037,2,55,-9.0,1,0.0,1,10800.0,1025215,6.0,164 -1247884,1630083063,8152511,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,168 -1247885,1630083064,8155778,2,54,-9.0,1,0.0,1,8200.0,1009585,4.0,168 -1247886,1630083065,8155778,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,168 -1247887,1630083066,8153790,2,57,-9.0,1,0.0,1,13900.0,1073094,4.0,168 -1247888,1630083067,8154419,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,168 -1247889,1630083068,8154037,2,45,-9.0,1,0.0,1,0.0,1009585,6.0,168 -1247890,1630083069,8155778,2,64,-9.0,1,0.0,1,12300.0,1042852,4.0,168 -1247891,1630083070,8155037,2,53,-9.0,1,0.0,1,8800.0,1001264,4.0,164 -1247892,1630083071,8155037,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,164 -1247893,1630083072,8152511,2,62,-9.0,1,0.0,1,12000.0,1073094,4.0,168 -1247894,1630083073,8155778,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,168 -1247895,1630083074,8155778,2,58,-9.0,1,0.0,1,4800.0,1042852,4.0,168 -1247896,1630083075,8153001,2,53,-9.0,1,0.0,1,9420.0,1009585,6.0,168 -1247897,1630083076,8155037,2,64,-9.0,1,0.0,1,3660.0,1042852,6.0,164 -1247898,1630083077,8155037,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,164 -1247899,1630083078,8155037,2,55,-9.0,1,0.0,1,8500.0,1025215,6.0,164 -1247900,1630083079,8153352,2,51,-9.0,1,0.0,1,0.0,1025215,4.0,168 -1247901,1630083080,8155778,2,53,-9.0,1,0.0,1,0.0,1042852,4.0,168 -1247902,1630083081,8155032,2,50,-9.0,1,0.0,1,0.0,1025215,4.0,168 -1247903,1630083082,8153001,2,51,-9.0,1,0.0,1,0.0,1025215,4.0,168 -1247904,1630083083,8155778,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,168 -1247905,1630083084,8155778,2,55,-9.0,1,0.0,1,12900.0,1042852,4.0,168 -1247906,1630083085,8155037,2,58,-9.0,1,0.0,1,8500.0,1025215,4.0,164 -1247907,1630083086,8155037,2,62,-9.0,1,0.0,1,1800.0,1001264,4.0,164 -1247908,1630083087,8155778,2,64,-9.0,1,0.0,1,24700.0,1001264,4.0,168 -1247909,1630083088,8155778,2,49,-9.0,1,0.0,1,0.0,1025215,4.0,168 -1247910,1630083089,8155256,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,168 -1247911,1630083090,8152225,2,56,-9.0,1,0.0,1,0.0,1001264,4.0,168 -1247912,1630083091,8155037,2,54,-9.0,1,0.0,1,10000.0,1001264,4.0,164 -1247913,1630083092,8151583,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,168 -1247914,1630083093,8155037,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,164 -1247915,1630083094,8155037,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,164 -1247916,1630083095,8155037,2,54,-9.0,1,0.0,1,8300.0,1042852,4.0,164 -1247917,1630083096,8155778,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,168 -1247918,1630083097,8155778,2,53,-9.0,1,0.0,1,8800.0,1001264,4.0,168 -1247919,1630083098,8155778,2,64,-9.0,1,0.0,1,12300.0,1042852,4.0,168 -1247920,1630083099,8152511,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,168 -1247921,1630083100,8155037,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,164 -1247922,1630083101,8155037,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,164 -1247923,1630083102,8153953,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,168 -1247924,1630083103,8155037,2,55,-9.0,1,0.0,1,10800.0,1025215,6.0,164 -1247925,1630083104,8155032,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,168 -1247926,1630083105,8155778,2,54,-9.0,1,0.0,1,10000.0,1001264,4.0,168 -1247927,1630083106,8151583,2,54,-9.0,1,0.0,1,8300.0,1042852,4.0,168 -1247928,1630083107,8151583,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,168 -1247929,1630083108,8155037,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,164 -1247930,1630083109,8155256,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,168 -1247931,1630083110,8155037,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,164 -1247932,1630083111,8155037,2,64,-9.0,1,1.0,1,3300.0,1025215,4.0,164 -1247933,1630083112,8155143,2,62,-9.0,1,1.0,1,0.0,1042852,4.0,168 -1247934,1630083113,8155037,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,164 -1247935,1630083114,8155037,2,53,-9.0,1,1.0,1,22600.0,1001264,4.0,164 -1247936,1630083115,8155037,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,164 -1247937,1630083116,8155037,2,60,-9.0,1,1.0,1,9100.0,1025215,4.0,164 -1247938,1630083117,8155037,2,54,-9.0,1,1.0,1,8700.0,1001264,4.0,164 -1247939,1630083118,8155037,2,53,-9.0,1,1.0,1,22600.0,1001264,4.0,164 -1247940,1630083119,8155256,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,168 -1247941,1630083120,8155256,2,53,-9.0,1,1.0,1,16000.0,1025215,6.0,168 -1247942,1630083121,8155037,2,60,-9.0,1,1.0,1,9100.0,1025215,4.0,164 -1247943,1630083122,8155037,2,60,-9.0,1,1.0,1,9100.0,1025215,4.0,164 -1247944,1630083123,8151583,2,62,-9.0,1,1.0,1,7000.0,1001264,4.0,168 -1247945,1630083124,8155256,2,63,-9.0,1,1.0,1,8400.0,1001264,4.0,168 -1247946,1630083125,8155037,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,164 -1247947,1630083126,8155778,2,53,-9.0,1,1.0,1,8400.0,1001264,4.0,168 -1247948,1630083127,8155778,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,168 -1247949,1630083128,8155530,2,57,-9.0,1,1.0,1,8700.0,1025215,4.0,168 -1247950,1630083129,8155032,2,57,-9.0,1,1.0,1,8700.0,1025215,4.0,168 -1247951,1630083130,8155778,2,63,-9.0,1,1.0,1,8400.0,1001264,4.0,168 -1247952,1630083131,8155778,2,51,-9.0,1,1.0,1,1000.0,1009585,4.0,168 -1247953,1630083132,8155037,2,53,-9.0,1,1.0,1,13200.0,1025215,4.0,164 -1247954,1630083133,8155778,2,51,-9.0,1,1.0,1,1000.0,1009585,4.0,168 -1247955,1630083134,8155037,2,53,-9.0,1,1.0,1,22600.0,1001264,4.0,164 -1247956,1630083135,8155256,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,168 -1247957,1630083136,8155778,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,168 -1247958,1630083137,8154419,2,61,-9.0,1,1.0,1,19500.0,1025215,4.0,168 -1247959,1630083138,8155037,2,54,-9.0,1,1.0,1,8700.0,1001264,4.0,164 -1247960,1630083139,8155037,2,53,-9.0,1,1.0,1,13200.0,1025215,4.0,164 -1247961,1630083140,8151583,1,64,-9.0,1,1.0,1,12300.0,1009585,4.0,168 -1247962,1630083141,8155037,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,164 -1247963,1630083142,8155037,2,49,-9.0,3,0.0,1,10170.0,1001264,1.0,164 -1247964,1630083143,8155143,2,61,-9.0,3,0.0,1,7000.0,1073094,5.0,168 -1247965,1630083144,8142821,2,48,1.0,3,0.0,1,13600.0,1073094,3.0,166 -1247966,1630083145,8155032,2,62,1.0,3,1.0,1,15170.0,1042852,1.0,168 -1247967,1630083146,8155037,2,51,-9.0,2,0.0,1,24000.0,1073094,7.0,164 -1247968,1630083147,8155530,2,60,-9.0,2,0.0,1,13400.0,1042852,5.0,168 -1247969,1630083148,8154419,2,58,-9.0,2,0.0,1,16310.0,1009585,1.0,168 -1247970,1630083149,8155778,2,50,-9.0,2,0.0,1,5100.0,1042852,2.0,168 -1247971,1630083150,8155037,2,55,-9.0,2,0.0,1,12770.0,1073094,7.0,164 -1247972,1630083151,8155037,2,57,-9.0,2,0.0,1,9000.0,1042852,5.0,164 -1247973,1630083152,8155778,2,51,-9.0,2,0.0,1,24000.0,1073094,7.0,168 -1247974,1630083153,8155778,2,57,-9.0,2,0.0,1,20540.0,1025215,3.0,168 -1247975,1630083154,8155037,2,61,-9.0,2,0.0,1,23800.0,1073094,2.0,164 -1247976,1630083155,8155037,2,51,-9.0,2,0.0,1,24000.0,1073094,7.0,164 -1247977,1630083156,8155778,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,168 -1247978,1630083157,8153953,2,53,1.0,2,0.0,1,12000.0,1025215,2.0,168 -1247979,1630083158,8155143,2,51,1.0,2,0.0,1,8400.0,1042852,3.0,168 -1247980,1630083159,8155037,2,50,1.0,2,0.0,1,8100.0,1073094,3.0,164 -1247981,1630083160,8153520,2,56,-9.0,2,1.0,1,23000.0,1001264,3.0,168 -1247982,1630083161,8155778,2,63,-9.0,2,1.0,1,780.0,1009585,3.0,168 -1247983,1630083162,8155530,2,59,-9.0,2,1.0,1,8900.0,1042852,3.0,168 -1247984,1630083163,8155037,2,51,-9.0,2,1.0,1,17900.0,1042852,7.0,164 -1247985,1630083164,8152511,2,61,-9.0,2,1.0,1,2800.0,1001264,1.0,168 -1247986,1630083165,8155037,2,59,1.0,2,1.0,1,14880.0,1042852,3.0,164 -1247987,1630083166,8155778,2,59,1.0,2,1.0,1,14880.0,1042852,3.0,168 -1247988,1630083167,8142821,2,55,3.0,4,1.0,1,24500.0,1025215,3.0,166 -1247989,1630083168,8153520,2,53,1.0,4,1.0,1,5800.0,1073094,3.0,168 -1247990,1630083169,8155032,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,168 -1247991,1630083170,8153261,2,61,-9.0,1,0.0,1,14000.0,1073094,6.0,168 -1247992,1630083171,8155037,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,164 -1247993,1630083172,8155778,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,168 -1247994,1630083173,8155037,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,164 -1247995,1630083174,8153137,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,168 -1247996,1630083175,8155037,2,60,-9.0,1,0.0,1,4800.0,1025215,6.0,164 -1247997,1630083176,8155778,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,168 -1247998,1630083177,8155037,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,164 -1247999,1630083178,8153953,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,168 -1248000,1630083179,8153565,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,168 -1248001,1630083180,8152225,2,55,-9.0,1,0.0,1,22600.0,1009585,6.0,168 -1248002,1630083181,8155778,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,168 -1248003,1630083182,8155778,2,51,-9.0,1,0.0,1,19000.0,1025215,4.0,168 -1248004,1630083183,8154037,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,168 -1248005,1630083184,8155037,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,164 -1248006,1630083185,8155778,2,45,-9.0,1,0.0,1,1700.0,1073094,4.0,168 -1248007,1630083186,8155778,2,64,-9.0,1,0.0,1,15000.0,1025215,4.0,168 -1248008,1630083187,8154798,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,168 -1248009,1630083188,8155037,2,60,-9.0,1,0.0,1,26000.0,1025215,4.0,164 -1248010,1630083189,8155778,2,54,-9.0,1,0.0,1,21000.0,1009585,4.0,168 -1248011,1630083190,8155778,2,58,-9.0,1,0.0,1,9680.0,1073094,4.0,168 -1248012,1630083191,8155778,2,51,-9.0,1,0.0,1,19000.0,1025215,4.0,168 -1248013,1630083192,8154037,2,58,-9.0,1,0.0,1,9680.0,1073094,4.0,168 -1248014,1630083193,8155778,2,64,-9.0,1,0.0,1,15000.0,1025215,4.0,168 -1248015,1630083194,8155778,2,45,-9.0,1,0.0,1,1700.0,1073094,4.0,168 -1248016,1630083195,8155778,2,61,-9.0,1,0.0,1,11500.0,1009585,4.0,168 -1248017,1630083196,8155037,2,59,-9.0,1,0.0,1,15000.0,1025215,6.0,164 -1248018,1630083197,8153520,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,168 -1248019,1630083198,8155778,2,55,-9.0,1,0.0,1,7500.0,1001264,6.0,168 -1248020,1630083199,8153352,2,54,-9.0,1,1.0,1,14540.0,1009585,4.0,168 -1248021,1630083200,8155037,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,164 -1248022,1630083201,8142821,2,45,-9.0,1,1.0,1,22000.0,1073094,4.0,166 -1248023,1630083202,8154798,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,168 -1248024,1630083203,8155778,2,48,-9.0,1,1.0,1,6000.0,1025215,6.0,168 -1248025,1630083204,8155778,2,60,-9.0,1,1.0,1,12000.0,1001264,4.0,168 -1248026,1630083205,8155778,2,60,-9.0,1,1.0,1,12000.0,1001264,4.0,168 -1248027,1630083206,8152225,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,168 -1248028,1630083207,8153520,2,48,-9.0,1,1.0,1,27700.0,1073094,6.0,168 -1248029,1630083208,8155778,2,46,-9.0,1,1.0,1,14000.0,1001264,6.0,168 -1248030,1630083209,8155778,2,58,-9.0,1,1.0,1,13900.0,1073094,4.0,168 -1248031,1630083210,8151583,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,168 -1248032,1630083211,8155037,2,58,-9.0,1,1.0,1,13900.0,1073094,4.0,164 -1248033,1630083212,8155530,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,168 -1248034,1630083213,8153001,2,60,-9.0,1,1.0,1,28000.0,1001264,6.0,168 -1248035,1630083214,8155778,2,45,-9.0,1,1.0,1,22000.0,1073094,4.0,168 -1248036,1630083215,8155037,2,62,-9.0,1,1.0,1,22000.0,1009585,6.0,164 -1248037,1630083216,8155037,2,51,-9.0,1,1.0,1,4500.0,1001264,6.0,164 -1248038,1630083217,8151583,2,53,-9.0,1,1.0,1,12900.0,1025215,6.0,168 -1248039,1630083218,8155778,2,46,-9.0,1,1.0,1,14000.0,1001264,6.0,168 -1248040,1630083219,8155037,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,164 -1248041,1630083220,8155778,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,168 -1248042,1630083221,8153352,2,59,-9.0,1,2.0,1,20000.0,1001264,4.0,168 -1248043,1630083222,8155037,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,164 -1248044,1630083223,8155143,2,55,1.0,3,0.0,1,11100.0,1073094,3.0,168 -1248045,1630083224,8155037,2,58,1.0,3,1.0,1,23160.0,1025215,1.0,164 -1248046,1630083225,8155037,2,46,-9.0,2,0.0,1,4200.0,1025215,3.0,164 -1248047,1630083226,8155037,2,46,-9.0,2,0.0,1,4200.0,1025215,3.0,164 -1248048,1630083227,8155778,2,55,-9.0,2,1.0,1,14000.0,1042852,3.0,168 -1248049,1630083228,8155778,2,55,-9.0,2,1.0,1,14000.0,1042852,3.0,168 -1248050,1630083229,8155037,2,60,-9.0,2,1.0,1,2700.0,1009585,3.0,164 -1248051,1630083230,8155037,2,60,-9.0,2,1.0,1,2700.0,1009585,3.0,164 -1248052,1630083231,8154798,2,55,-9.0,2,1.0,1,9800.0,1042852,3.0,168 -1248053,1630083232,8155778,2,53,-9.0,2,5.0,1,29200.0,1042852,1.0,168 -1248054,1630083233,8155037,2,59,-9.0,3,1.0,1,14600.0,1001264,3.0,164 -1248055,1630083234,8153953,2,54,-9.0,2,0.0,1,19000.0,1001264,1.0,168 -1248056,1630083235,8152537,2,52,-9.0,2,0.0,1,15000.0,1025215,5.0,168 -1248057,1630083236,8153352,2,52,-9.0,2,0.0,1,15000.0,1025215,5.0,168 -1248058,1630083237,8155778,2,61,-9.0,2,1.0,1,29250.0,1042852,3.0,168 -1248059,1630083238,8155037,2,61,-9.0,2,1.0,1,29250.0,1042852,3.0,164 -1248060,1630083239,8152225,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,168 -1248061,1630083240,8155778,2,71,-9.0,1,0.0,1,31400.0,1073094,4.0,168 -1248062,1630083241,8155037,2,71,-9.0,1,0.0,1,31400.0,1073094,4.0,164 -1248063,1630083242,8155143,2,66,-9.0,1,0.0,1,33400.0,1042852,4.0,168 -1248064,1630083243,8155037,2,66,-9.0,1,1.0,1,37420.0,1073094,4.0,164 -1248065,1630083244,8155037,2,74,-9.0,1,1.0,1,45000.0,1025215,6.0,164 -1248066,1630083245,8153790,2,87,-9.0,1,1.0,1,48000.0,1025215,6.0,168 -1248067,1630083246,8155037,2,66,-9.0,1,1.0,1,32000.0,1001264,4.0,164 -1248068,1630083247,8155778,2,80,-9.0,1,0.0,1,8900.0,1009585,6.0,168 -1248069,1630083248,8155778,2,79,-9.0,1,0.0,1,13600.0,1001264,4.0,168 -1248070,1630083249,8155778,2,81,-9.0,1,0.0,1,20000.0,1025215,6.0,168 -1248071,1630083250,8155778,2,86,-9.0,1,0.0,1,12300.0,1042852,6.0,168 -1248072,1630083251,8155778,2,79,-9.0,1,0.0,1,18000.0,1025215,4.0,168 -1248073,1630083252,8155778,2,72,-9.0,1,0.0,1,9300.0,1001264,6.0,168 -1248074,1630083253,8153953,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,168 -1248075,1630083254,8155037,2,86,-9.0,1,0.0,1,9400.0,1009585,6.0,164 -1248076,1630083255,8154037,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,168 -1248077,1630083256,8155778,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,168 -1248078,1630083257,8155778,2,73,-9.0,1,0.0,1,8400.0,1042852,6.0,168 -1248079,1630083258,8155778,2,68,-9.0,1,0.0,1,17360.0,1009585,6.0,168 -1248080,1630083259,8155037,2,66,-9.0,1,0.0,1,13500.0,1073094,4.0,164 -1248081,1630083260,8153001,2,69,-9.0,1,0.0,1,23200.0,1009585,4.0,168 -1248082,1630083261,8155037,2,73,-9.0,1,0.0,1,9600.0,1001264,6.0,164 -1248083,1630083262,8155037,2,76,-9.0,1,0.0,1,4101.0,1001264,4.0,164 -1248084,1630083263,8155037,2,69,-9.0,1,0.0,1,12000.0,1042852,6.0,164 -1248085,1630083264,8155778,2,74,-9.0,1,0.0,1,12000.0,1009585,6.0,168 -1248086,1630083265,8155778,2,75,-9.0,1,0.0,1,10800.0,1009585,4.0,168 -1248087,1630083266,8155778,2,94,-9.0,1,0.0,1,25200.0,1042852,4.0,168 -1248088,1630083267,8155037,2,66,-9.0,1,0.0,1,9000.0,1001264,4.0,164 -1248089,1630083268,8155037,2,75,-9.0,1,0.0,1,9600.0,1009585,4.0,164 -1248090,1630083269,8155037,2,94,-9.0,1,0.0,1,25200.0,1042852,4.0,164 -1248091,1630083270,8155037,2,66,-9.0,1,0.0,1,17700.0,1025215,6.0,164 -1248092,1630083271,8155778,2,68,-9.0,1,0.0,1,17360.0,1009585,6.0,168 -1248093,1630083272,8155037,2,69,-9.0,1,0.0,1,8400.0,1001264,6.0,164 -1248094,1630083273,8155778,2,82,-9.0,1,0.0,1,18900.0,1042852,6.0,168 -1248095,1630083274,8155778,2,67,-9.0,1,0.0,1,9600.0,1001264,4.0,168 -1248096,1630083275,8155778,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,168 -1248097,1630083276,8153953,2,75,-9.0,1,0.0,1,8800.0,1001264,4.0,168 -1248098,1630083277,8155778,2,79,-9.0,1,0.0,1,13600.0,1001264,4.0,168 -1248099,1630083278,8152537,2,77,-9.0,1,0.0,1,9600.0,1009585,4.0,168 -1248100,1630083279,8155778,2,80,-9.0,1,0.0,1,8300.0,1073094,6.0,168 -1248101,1630083280,8155037,2,66,-9.0,1,0.0,1,9300.0,1025215,4.0,164 -1248102,1630083281,8155778,2,65,-9.0,1,0.0,1,5300.0,1042852,6.0,168 -1248103,1630083282,8155778,2,82,-9.0,1,0.0,1,12500.0,1073094,4.0,168 -1248104,1630083283,8155037,2,69,-9.0,1,0.0,1,17000.0,1025215,4.0,164 -1248105,1630083284,8155037,2,66,-9.0,1,0.0,1,17700.0,1025215,6.0,164 -1248106,1630083285,8155037,2,70,-9.0,1,0.0,1,7300.0,1073094,6.0,164 -1248107,1630083286,8154419,2,85,-9.0,1,0.0,1,12100.0,1025215,6.0,168 -1248108,1630083287,8155778,2,74,-9.0,1,0.0,1,17000.0,1073094,6.0,168 -1248109,1630083288,8155037,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,164 -1248110,1630083289,8155037,2,72,-9.0,1,0.0,1,9300.0,1001264,6.0,164 -1248111,1630083290,8155037,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,164 -1248112,1630083291,8155778,2,66,-9.0,1,0.0,1,9300.0,1025215,4.0,168 -1248113,1630083292,8155037,2,66,-9.0,1,0.0,1,20400.0,1009585,6.0,164 -1248114,1630083293,8142821,2,65,-9.0,1,0.0,1,9000.0,1001264,6.0,166 -1248115,1630083294,8155778,2,65,-9.0,1,0.0,1,12000.0,1025215,4.0,168 -1248116,1630083295,8155037,2,74,-9.0,1,0.0,1,12000.0,1009585,6.0,164 -1248117,1630083296,8155037,2,67,-9.0,1,0.0,1,9600.0,1001264,4.0,164 -1248118,1630083297,8155037,2,74,-9.0,1,0.0,1,17000.0,1073094,6.0,164 -1248119,1630083298,8155778,2,70,-9.0,1,0.0,1,25004.0,1073094,4.0,168 -1248120,1630083299,8155256,2,70,-9.0,1,0.0,1,10800.0,1009585,4.0,168 -1248121,1630083300,8155037,2,65,-9.0,1,0.0,1,17000.0,1009585,6.0,164 -1248122,1630083301,8155037,2,70,-9.0,1,0.0,1,9200.0,1042852,6.0,164 -1248123,1630083302,8155037,2,66,-9.0,1,0.0,1,17700.0,1025215,6.0,164 -1248124,1630083303,8155778,2,67,-9.0,1,0.0,1,6900.0,1042852,4.0,168 -1248125,1630083304,8155778,2,65,-9.0,1,0.0,1,17000.0,1009585,6.0,168 -1248126,1630083305,8153953,2,72,-9.0,1,0.0,1,2100.0,1042852,6.0,168 -1248127,1630083306,8155530,2,69,-9.0,1,0.0,1,23200.0,1009585,4.0,168 -1248128,1630083307,8155778,2,70,-9.0,1,0.0,1,20500.0,1009585,4.0,168 -1248129,1630083308,8155037,2,87,-9.0,1,0.0,1,20400.0,1025215,6.0,164 -1248130,1630083309,8153953,2,68,-9.0,1,0.0,1,7200.0,1025215,6.0,168 -1248131,1630083310,8153565,2,70,-9.0,1,0.0,1,8600.0,1042852,6.0,168 -1248132,1630083311,8155037,2,71,-9.0,1,0.0,1,8700.0,1025215,6.0,164 -1248133,1630083312,8155778,2,86,-9.0,1,0.0,1,12300.0,1042852,6.0,168 -1248134,1630083313,8155037,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,164 -1248135,1630083314,8153137,2,70,-9.0,1,0.0,1,11400.0,1042852,6.0,168 -1248136,1630083315,8155143,2,70,-9.0,1,0.0,1,10800.0,1009585,4.0,168 -1248137,1630083316,8155037,2,66,-9.0,1,0.0,1,8400.0,1025215,4.0,164 -1248138,1630083317,8155778,2,70,-9.0,1,0.0,1,25004.0,1073094,4.0,168 -1248139,1630083318,8155778,2,69,-9.0,1,0.0,1,7000.0,1009585,6.0,168 -1248140,1630083319,8155037,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,164 -1248141,1630083320,8155037,2,66,-9.0,1,0.0,1,13500.0,1073094,4.0,164 -1248142,1630083321,8155778,2,65,-9.0,1,0.0,1,5300.0,1042852,6.0,168 -1248143,1630083322,8155037,2,71,-9.0,1,0.0,1,24300.0,1042852,6.0,164 -1248144,1630083323,8155778,2,79,-9.0,1,0.0,1,13600.0,1001264,4.0,168 -1248145,1630083324,8155037,2,79,-9.0,1,0.0,1,9100.0,1073094,6.0,164 -1248146,1630083325,8153137,2,82,-9.0,1,0.0,1,8300.0,1042852,6.0,168 -1248147,1630083326,8155037,2,69,-9.0,1,0.0,1,7200.0,1042852,4.0,164 -1248148,1630083327,8155037,2,86,-9.0,1,0.0,1,9400.0,1009585,6.0,164 -1248149,1630083328,8155032,2,69,-9.0,1,0.0,1,23200.0,1009585,4.0,168 -1248150,1630083329,8155778,2,65,-9.0,1,0.0,1,5300.0,1042852,6.0,168 -1248151,1630083330,8154419,2,78,-9.0,1,0.0,1,12000.0,1009585,6.0,168 -1248152,1630083331,8155037,2,83,-9.0,1,0.0,1,9070.0,1009585,6.0,164 -1248153,1630083332,8155778,2,79,-9.0,1,0.0,1,13800.0,1025215,4.0,168 -1248154,1630083333,8155256,2,74,-9.0,1,0.0,1,7200.0,1009585,6.0,168 -1248155,1630083334,8155037,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,164 -1248156,1630083335,8155037,2,67,-9.0,1,0.0,1,8300.0,1073094,6.0,164 -1248157,1630083336,8155778,2,86,-9.0,1,0.0,1,14300.0,1042852,6.0,168 -1248158,1630083337,8155037,2,81,-9.0,1,0.0,1,20000.0,1025215,6.0,164 -1248159,1630083338,8155778,2,67,-9.0,1,0.0,1,9600.0,1042852,4.0,168 -1248160,1630083339,8155037,2,67,-9.0,1,0.0,1,8300.0,1001264,6.0,164 -1248161,1630083340,8154419,2,86,-9.0,1,0.0,1,8100.0,1073094,4.0,168 -1248162,1630083341,8155778,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,168 -1248163,1630083342,8155037,2,66,-9.0,1,0.0,1,9300.0,1025215,4.0,164 -1248164,1630083343,8155778,2,69,-9.0,1,0.0,1,12600.0,1025215,6.0,168 -1248165,1630083344,8155778,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,168 -1248166,1630083345,8155037,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,164 -1248167,1630083346,8155778,1,74,-9.0,1,0.0,1,9600.0,1042852,4.0,168 -1248168,1630083347,8155778,2,70,-9.0,1,1.0,1,26600.0,1025215,4.0,168 -1248169,1630083348,8153001,2,69,-9.0,1,1.0,1,10500.0,1073094,6.0,168 -1248170,1630083349,8155778,2,94,-9.0,1,1.0,1,20300.0,1001264,4.0,168 -1248171,1630083350,8155037,2,69,-9.0,1,1.0,1,24800.0,1025215,6.0,164 -1248172,1630083351,8155037,2,65,-9.0,1,1.0,1,19300.0,1073094,4.0,164 -1248173,1630083352,8152225,2,81,-9.0,1,1.0,1,8400.0,1009585,4.0,168 -1248174,1630083353,8155778,2,70,-9.0,1,1.0,1,26600.0,1025215,4.0,168 -1248175,1630083354,8155778,2,66,-9.0,1,1.0,1,11000.0,1042852,6.0,168 -1248176,1630083355,8155778,2,83,-9.0,1,1.0,1,12600.0,1025215,4.0,168 -1248177,1630083356,8153001,2,76,-9.0,1,1.0,1,23400.0,1025215,4.0,168 -1248178,1630083357,8153520,2,78,-9.0,1,1.0,1,11900.0,1001264,6.0,168 -1248179,1630083358,8155037,2,66,-9.0,1,1.0,1,11190.0,1009585,4.0,164 -1248180,1630083359,8153261,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,168 -1248181,1630083360,8153137,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,168 -1248182,1630083361,8154037,2,78,-9.0,1,1.0,1,25100.0,1073094,6.0,168 -1248183,1630083362,8155143,2,68,-9.0,1,1.0,1,24000.0,1073094,4.0,168 -1248184,1630083363,8150531,2,83,-9.0,1,1.0,1,21900.0,1042852,4.0,162 -1248185,1630083364,8155037,2,66,-9.0,1,1.0,1,11190.0,1009585,4.0,164 -1248186,1630083365,8155037,2,77,-9.0,1,1.0,1,15100.0,1042852,4.0,164 -1248187,1630083366,8155032,2,80,-9.0,1,1.0,1,8530.0,1042852,6.0,168 -1248188,1630083367,8155778,2,84,-9.0,1,1.0,1,26300.0,1009585,4.0,168 -1248189,1630083368,8155778,2,68,-9.0,1,1.0,1,24000.0,1073094,4.0,168 -1248190,1630083369,8155037,2,83,-9.0,1,1.0,1,21900.0,1042852,4.0,164 -1248191,1630083370,8155778,2,77,-9.0,1,1.0,1,9600.0,1009585,6.0,168 -1248192,1630083371,8153137,2,69,-9.0,1,1.0,1,10500.0,1073094,6.0,168 -1248193,1630083372,8155778,2,66,-9.0,1,1.0,1,11190.0,1009585,4.0,168 -1248194,1630083373,8155037,2,68,-9.0,1,1.0,1,11600.0,1001264,6.0,164 -1248195,1630083374,8155778,2,83,-9.0,1,1.0,1,12600.0,1025215,4.0,168 -1248196,1630083375,8155037,2,77,-9.0,1,1.0,1,15100.0,1042852,4.0,164 -1248197,1630083376,8155037,2,65,-9.0,1,1.0,1,0.0,1001264,6.0,164 -1248198,1630083377,8155037,2,66,-9.0,1,1.0,1,14400.0,1025215,6.0,164 -1248199,1630083378,8155778,2,68,-9.0,1,1.0,1,19000.0,1073094,6.0,168 -1248200,1630083379,8155778,2,69,-9.0,1,1.0,1,13500.0,1009585,6.0,168 -1248201,1630083380,8152225,2,79,-9.0,1,1.0,1,9300.0,1009585,6.0,168 -1248202,1630083381,8152537,2,81,-9.0,1,1.0,1,9500.0,1009585,6.0,168 -1248203,1630083382,8155778,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,168 -1248204,1630083383,8155037,2,65,-9.0,1,1.0,1,0.0,1001264,6.0,164 -1248205,1630083384,8155778,2,84,-9.0,1,1.0,1,26300.0,1009585,4.0,168 -1248206,1630083385,8152225,2,67,-9.0,1,1.0,1,9500.0,1042852,6.0,168 -1248207,1630083386,8154419,2,67,-9.0,1,1.0,1,9500.0,1042852,6.0,168 -1248208,1630083387,8155037,2,68,-9.0,1,1.0,1,19000.0,1073094,6.0,164 -1248209,1630083388,8155778,2,65,-9.0,1,2.0,1,16000.0,1001264,6.0,168 -1248210,1630083389,8155778,2,77,-9.0,2,0.0,1,8000.0,1042852,1.0,168 -1248211,1630083390,8151583,2,73,-9.0,2,0.0,1,10000.0,1042852,3.0,168 -1248212,1630083391,8155778,2,65,-9.0,2,0.0,1,9600.0,1009585,3.0,168 -1248213,1630083392,8155037,2,71,-9.0,2,0.0,1,27700.0,1009585,1.0,164 -1248214,1630083393,8153565,2,66,-9.0,2,0.0,1,0.0,1073094,3.0,168 -1248215,1630083394,8155037,2,77,-9.0,2,0.0,1,8000.0,1042852,1.0,164 -1248216,1630083395,8153352,2,73,-9.0,2,1.0,1,23600.0,1073094,3.0,168 -1248217,1630083396,8155037,2,65,-9.0,2,1.0,1,23400.0,1042852,3.0,164 -1248218,1630083397,8154798,2,73,-9.0,2,1.0,1,23600.0,1073094,3.0,168 -1248219,1630083398,8155037,2,65,1.0,2,1.0,1,16000.0,1025215,3.0,164 -1248220,1630083399,8155037,2,78,2.0,4,0.0,1,23900.0,1042852,3.0,164 -1248221,1630083400,8155037,2,68,-9.0,1,0.0,1,20000.0,1025215,4.0,164 -1248222,1630083401,8155778,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,168 -1248223,1630083402,8153261,2,72,-9.0,1,1.0,1,20000.0,1025215,4.0,168 -1248224,1630083403,8155037,2,67,-9.0,1,1.0,1,7200.0,1042852,6.0,164 -1248225,1630083404,8155778,2,24,3.0,4,0.0,1,1600.0,1001264,3.0,168 -1248226,1630083405,8155778,2,23,-9.0,1,0.0,1,0.0,1042852,4.0,168 -1248227,1630083406,8155037,2,23,-9.0,1,0.0,1,4000.0,1073094,6.0,164 -1248228,1630083407,8153137,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,168 -1248229,1630083408,8155037,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,164 -1248230,1630083409,8155037,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,164 -1248231,1630083410,8155778,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,168 -1248232,1630083411,8155778,2,24,1.0,2,0.0,1,3000.0,1042852,3.0,168 -1248233,1630083412,8152225,2,23,1.0,2,0.0,1,6600.0,1025215,3.0,168 -1248234,1630083413,8154037,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,168 -1248235,1630083414,8153352,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,168 -1248236,1630083415,8154037,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,168 -1248237,1630083416,8155778,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,168 -1248238,1630083417,8155143,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,168 -1248239,1630083418,8154419,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,168 -1248240,1630083419,8155037,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,164 -1248241,1630083420,8155778,2,24,2.0,3,1.0,1,13000.0,1025215,3.0,168 -1248242,1630083421,8152537,2,23,1.0,3,1.0,1,8000.0,1042852,2.0,168 -1248243,1630083422,8155037,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,164 -1248244,1630083423,8142821,2,24,2.0,4,2.0,1,20600.0,1009585,2.0,166 -1248245,1630083424,8142821,2,22,1.0,3,1.0,1,24600.0,1073094,2.0,166 -1248246,1630083425,8155778,2,37,-9.0,1,0.0,1,15000.0,1073094,6.0,168 -1248247,1630083426,8155778,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,168 -1248248,1630083427,8150531,2,22,2.0,3,0.0,1,4800.0,1009585,3.0,162 -1248249,1630083428,8155037,2,76,-9.0,1,1.0,1,34350.0,1001264,6.0,164 -1248250,1630083429,8155778,2,49,-9.0,4,0.0,1,46100.0,1009585,1.0,168 -1248251,1630083430,8155778,2,55,-9.0,4,1.0,1,56000.0,1025215,2.0,168 -1248252,1630083431,8150531,2,71,1.0,4,1.0,1,4500.0,1009585,3.0,162 -1248253,1630083432,8155037,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,164 -1248254,1630083433,8155778,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,168 -1248255,1630083434,8153261,2,56,-9.0,1,1.0,1,39000.0,1009585,4.0,168 -1248256,1630083435,8155037,2,75,-9.0,1,1.0,1,49800.0,1042852,6.0,164 -1248257,1630083436,8155778,2,46,-9.0,3,1.0,1,21000.0,1009585,3.0,168 -1248258,1630083437,8155778,2,59,1.0,2,1.0,1,14880.0,1042852,3.0,168 -1248259,1630083438,8155778,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,168 -1248260,1630083439,8155256,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,168 -1248261,1630083440,8155037,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,164 -1248262,1630083441,8155256,2,75,-9.0,1,0.0,1,45100.0,1042852,6.0,168 -1248263,1630083442,8155037,2,25,2.0,4,2.0,1,14900.0,1042852,3.0,164 -1248264,1630083443,8155778,2,87,-9.0,3,0.0,1,12200.0,1001264,3.0,168 -1248265,1630083444,8155143,2,47,1.0,4,1.0,1,21300.0,1001264,3.0,168 -1248266,1630083445,8154037,2,75,-9.0,2,1.0,1,45200.0,1001264,7.0,168 -1248267,1630083446,8155037,2,72,-9.0,1,1.0,1,12000.0,1009585,4.0,164 -1248268,1630083447,8155778,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,168 -1248269,1630083448,8155143,2,22,3.0,4,1.0,1,18600.0,1001264,3.0,168 -1248270,1630083449,8155037,2,55,-9.0,2,1.0,1,14000.0,1042852,3.0,164 -1248271,1630083450,8155037,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,164 -1248272,1630083451,8153001,2,58,-9.0,3,2.0,1,55200.0,1025215,3.0,168 -1248273,1630083452,8155037,2,47,2.0,4,0.0,1,24600.0,1042852,2.0,164 -1248274,1630083453,8140294,2,38,2.0,4,2.0,1,100000.0,1073094,1.0,166 -1248275,1630083454,8153790,2,46,-9.0,3,0.0,1,1400.0,1025215,3.0,168 -1248276,1630083455,8155037,2,58,1.0,3,1.0,1,23160.0,1025215,1.0,164 -1248277,1630083456,8153953,2,62,-9.0,1,1.0,1,22000.0,1009585,6.0,168 -1248278,1630083457,8152225,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,168 -1248279,1630083458,8155037,2,74,-9.0,2,1.0,1,42970.0,1042852,3.0,164 -1248280,1630083459,8154419,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,168 -1248281,1630083460,8155778,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,168 -1248282,1630083461,8155778,2,53,-9.0,2,2.0,1,30000.0,1042852,3.0,168 -1248283,1630083462,8155778,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,168 -1248284,1630083463,8155037,2,88,-9.0,2,0.0,1,33800.0,1073094,3.0,164 -1248285,1630083464,8155778,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,168 -1248286,1630083465,8152511,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,168 -1248287,1630083466,8153790,1,68,-9.0,1,1.0,1,3000.0,1009585,4.0,168 -1248288,1630083467,8155037,2,32,1.0,2,1.0,1,13600.0,1001264,3.0,164 -1248289,1630083468,8155778,2,56,-9.0,4,1.0,1,8100.0,1073094,2.0,168 -1248290,1630083469,8155037,2,53,2.0,4,2.0,1,20500.0,1042852,3.0,164 -1248291,1630083470,8155778,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,168 -1248292,1630083471,8155037,2,37,2.0,4,1.0,1,41000.0,1001264,1.0,164 -1248293,1630083472,8155778,2,54,-9.0,4,0.0,1,14900.0,1025215,3.0,168 -1248294,1630083473,8153565,2,23,1.0,3,1.0,1,8000.0,1042852,2.0,168 -1248295,1630083474,8155037,2,46,-9.0,2,1.0,1,63000.0,1025215,3.0,164 -1248296,1630083475,8155778,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,168 -1248297,1630083476,8155256,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,168 -1248298,1630083477,8153565,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,168 -1248299,1630083478,8155778,2,77,-9.0,2,2.0,1,8400.0,1025215,2.0,168 -1248300,1630083479,8154419,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,168 -1248301,1630083480,8155037,2,47,1.0,2,1.0,1,25000.0,1025215,2.0,164 -1248302,1630083481,8155143,2,23,2.0,4,0.0,1,7700.0,1009585,3.0,168 -1248303,1630083482,8155037,2,50,1.0,2,1.0,1,106700.0,1073094,7.0,164 -1248304,1630083483,8148333,2,42,-9.0,1,1.0,1,43000.0,1025215,4.0,162 -1248305,1630083484,8140294,2,35,3.0,4,1.0,1,20000.0,1073094,3.0,166 -1248306,1630083485,8155037,2,24,-9.0,4,2.0,1,58800.0,1042852,2.0,164 -1248307,1630083486,8155778,2,32,2.0,4,1.0,1,23000.0,1001264,2.0,168 -1248308,1630083487,8155143,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,168 -1248309,1630083488,8151583,2,45,1.0,2,0.0,1,20900.0,1009585,3.0,168 -1248310,1630083489,8155778,2,53,-9.0,2,1.0,1,56400.0,1073094,3.0,168 -1248311,1630083490,8155037,2,47,2.0,3,0.0,1,8700.0,1009585,3.0,164 -1248312,1630083491,8154037,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,168 -1248313,1630083492,8155778,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,168 -1248314,1630083493,8140294,2,32,2.0,3,1.0,1,20900.0,1009585,3.0,166 -1248315,1630083494,8155778,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,168 -1248316,1630083495,8155778,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,168 -1248317,1630083496,8155037,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,164 -1248318,1630083497,8152225,2,65,1.0,2,0.0,1,10000.0,1073094,3.0,168 -1248319,1630083498,8153953,2,56,-9.0,3,1.0,1,44400.0,1073094,3.0,168 -1248320,1630083499,8155032,2,72,-9.0,1,1.0,1,20000.0,1025215,4.0,168 -1248321,1630083500,8153261,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,168 -1248322,1630083501,8155037,2,41,1.0,2,1.0,1,50300.0,1025215,3.0,164 -1248323,1630083502,8155256,2,44,1.0,2,1.0,1,14500.0,1042852,3.0,168 -1248324,1630083503,8153953,2,79,1.0,3,1.0,1,13900.0,1073094,3.0,168 -1248325,1630083504,8155778,2,16,1.0,2,1.0,1,28500.0,1001264,5.0,168 -1248326,1630083505,8155037,2,45,3.0,4,1.0,1,43000.0,1001264,2.0,164 -1248327,1630083506,8153001,2,73,-9.0,1,1.0,1,128300.0,1001264,6.0,168 -1248328,1630083507,8140294,2,40,-9.0,1,1.0,1,800.0,1042852,4.0,166 -1248329,1630083508,8155778,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,168 -1248330,1630083509,8155778,2,73,1.0,3,0.0,1,11700.0,1025215,3.0,168 -1248331,1630083510,8155037,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,164 -1248332,1630083511,8154419,2,20,1.0,2,0.0,1,0.0,1009585,3.0,168 -1248333,1630083512,8151583,2,68,-9.0,2,0.0,1,126000.0,1001264,5.0,168 -1248334,1630083513,8152511,2,61,1.0,2,0.0,1,18500.0,1042852,3.0,168 -1248335,1630083514,8153790,2,51,-9.0,1,0.0,1,0.0,1001264,6.0,168 -1248336,1630083515,8140294,2,76,-9.0,1,1.0,1,31410.0,1042852,4.0,166 -1248337,1630083516,8154037,2,47,1.0,3,2.0,1,38200.0,1001264,3.0,168 -1248338,1630083517,8153953,2,61,-9.0,2,0.0,1,31400.0,1042852,2.0,168 -1248339,1630083518,8155256,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,168 -1248340,1630083519,8155778,2,20,1.0,3,0.0,1,6500.0,1025215,3.0,168 -1248341,1630083520,8155037,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,164 -1248342,1630083521,8155778,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,168 -1248343,1630083522,8154419,2,19,1.0,2,1.0,1,11500.0,1042852,3.0,168 -1248344,1630083523,8152537,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,168 -1248345,1630083524,8155037,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,164 -1248346,1630083525,8155037,2,35,1.0,2,0.0,1,3210.0,1009585,3.0,164 -1248347,1630083526,8140294,2,44,-9.0,1,0.0,1,4600.0,1009585,4.0,166 -1248348,1630083527,8155037,2,72,-9.0,2,1.0,1,11000.0,1001264,3.0,164 -1248349,1630083528,8153137,2,63,1.0,2,2.0,1,37300.0,1009585,3.0,168 -1248350,1630083529,8155778,2,71,-9.0,2,0.0,1,13500.0,1025215,7.0,168 -1248351,1630083530,8140294,2,94,-9.0,1,0.0,1,23100.0,1073094,6.0,166 -1248352,1630083531,8155143,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,168 -1248353,1630083532,8142821,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,166 -1248354,1630083533,8155778,2,63,-9.0,2,0.0,1,15000.0,1073094,5.0,168 -1248355,1630083534,8141181,2,39,1.0,3,0.0,1,14000.0,1001264,3.0,166 -1248356,1630083535,8150531,2,94,-9.0,3,1.0,1,24200.0,1009585,3.0,162 -1248357,1630083536,8150531,2,72,-9.0,1,0.0,1,54300.0,1073094,6.0,162 -1248358,1630083537,8150531,2,34,2.0,3,1.0,1,18000.0,1001264,3.0,162 -1248359,1630083538,8142821,1,53,2.0,4,0.0,1,15200.0,1001264,3.0,166 -1248360,1630083539,8155143,2,31,-9.0,1,1.0,1,60000.0,1042852,4.0,168 -1248361,1630083540,8154037,2,35,2.0,4,1.0,1,48900.0,1042852,2.0,168 -1248362,1630083541,8142821,2,24,2.0,4,2.0,1,20600.0,1009585,2.0,166 -1248363,1630083542,8150531,2,57,-9.0,4,0.0,1,60000.0,1042852,1.0,162 -1248364,1630083543,8155037,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,164 -1248365,1630083544,8140294,2,44,1.0,4,1.0,1,33790.0,1009585,3.0,166 -1248366,1630083545,8155037,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,164 -1248367,1630083546,8140294,1,37,-9.0,2,4.0,1,153000.0,1009585,5.0,166 -1248368,1630083547,8142821,2,59,-9.0,3,1.0,1,1400.0,1009585,1.0,166 -1248369,1630083548,8142821,2,57,1.0,3,2.0,1,17500.0,1001264,3.0,166 -1248370,1630083549,8150531,1,69,-9.0,2,2.0,1,41280.0,1042852,5.0,162 -1248371,1630083550,8140294,2,37,-9.0,2,1.0,1,35500.0,1009585,3.0,166 -1248372,1630083551,8142821,1,57,-9.0,2,1.0,1,19600.0,1001264,2.0,166 -1248373,1630083552,8155037,2,29,1.0,3,1.0,1,42970.0,1042852,2.0,164 -1248374,1630083553,8151583,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,168 -1248375,1630083554,8155037,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,164 -1248376,1630083555,8155037,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,164 -1248377,1630083556,8152225,1,72,-9.0,1,1.0,1,25520.0,1001264,6.0,168 -1248378,1630083557,8155530,2,57,-9.0,2,2.0,1,73000.0,1009585,1.0,168 -1248379,1630083558,8142821,1,59,-9.0,1,1.0,1,30700.0,1025215,6.0,166 -1248380,1630083559,8140294,2,42,-9.0,1,2.0,1,15000.0,1001264,4.0,166 -1248381,1630083560,8155037,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,164 -1248382,1630083561,8142821,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,166 -1248383,1630083562,8150567,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,162 -1248384,1630083563,8144473,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,166 -1248385,1630083564,8150531,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,162 -1248386,1630083565,8150531,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,162 -1248387,1630083566,8150531,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,162 -1248388,1630083567,8142821,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,166 -1248389,1630083568,8145332,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,166 -1248390,1630083569,8142821,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,166 -1248391,1630083570,8150942,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,162 -1248392,1630083571,8142821,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,166 -1248393,1630083572,8150531,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,162 -1248394,1630083573,8142821,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,166 -1248395,1630083574,8142821,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,166 -1248396,1630083575,8142821,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,166 -1248397,1630083576,8142821,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,166 -1248398,1630083577,8150531,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,162 -1248399,1630083578,8142821,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,166 -1248400,1630083579,8150531,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,162 -1248401,1630083580,8150942,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,162 -1248402,1630083581,8150942,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,162 -1248403,1630083582,8142821,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,166 -1248404,1630083583,8150942,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,162 -1248405,1630083584,8142821,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,166 -1248406,1630083585,8150531,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,162 -1248407,1630083586,8150531,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,162 -1248408,1630083587,8150531,2,35,-9.0,1,1.0,1,35000.0,1073094,4.0,162 -1248409,1630083588,8148962,2,34,-9.0,1,1.0,1,30000.0,1073094,6.0,162 -1248410,1630083589,8145332,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,166 -1248411,1630083590,8142821,2,29,-9.0,1,1.0,1,50000.0,1001264,6.0,166 -1248412,1630083591,8142821,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,166 -1248413,1630083592,8142821,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,166 -1248414,1630083593,8148962,2,34,-9.0,1,1.0,1,30000.0,1073094,6.0,162 -1248415,1630083594,8142821,2,32,-9.0,1,1.0,1,48000.0,1025215,6.0,166 -1248416,1630083595,8150531,2,42,-9.0,1,1.0,1,55000.0,1025215,4.0,162 -1248417,1630083596,8150531,2,42,-9.0,1,1.0,1,55000.0,1025215,4.0,162 -1248418,1630083597,8148310,4,41,-9.0,1,1.0,1,30000.0,1001264,4.0,162 -1248419,1630083598,8150531,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,162 -1248420,1630083599,8142821,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,166 -1248421,1630083600,8142821,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,166 -1248422,1630083601,8150531,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,162 -1248423,1630083602,8142821,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,166 -1248424,1630083603,8148962,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,162 -1248425,1630083604,8142821,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,166 -1248426,1630083605,8150531,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,162 -1248427,1630083606,8142821,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,166 -1248428,1630083607,8148962,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,162 -1248429,1630083608,8142821,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,166 -1248430,1630083609,8142821,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,166 -1248431,1630083610,8150567,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,162 -1248432,1630083611,8150567,1,25,-9.0,2,2.0,1,48000.0,1042852,7.0,162 -1248433,1630083612,8900578,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,162 -1248434,1630083613,8144927,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,162 -1248435,1630083614,8150942,2,29,-9.0,2,1.0,1,43100.0,1025215,2.0,162 -1248436,1630083615,8144473,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,166 -1248437,1630083616,8144473,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,166 -1248438,1630083617,8144473,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,166 -1248439,1630083618,8150531,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,162 -1248440,1630083619,8148962,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,162 -1248441,1630083620,8148962,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,162 -1248442,1630083621,8150567,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,162 -1248443,1630083622,8150567,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,162 -1248444,1630083623,8144473,2,31,-9.0,1,1.0,1,60000.0,1042852,4.0,166 -1248445,1630083624,8150531,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,162 -1248446,1630083625,8144231,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,166 -1248447,1630083626,8144473,2,31,-9.0,1,1.0,1,60000.0,1042852,4.0,166 -1248448,1630083627,8141181,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,166 -1248449,1630083628,8141181,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,166 -1248450,1630083629,8150567,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,162 -1248451,1630083630,8150531,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,162 -1248452,1630083631,8141181,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,166 -1248453,1630083632,8141181,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,166 -1248454,1630083633,8142821,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,166 -1248455,1630083634,8141181,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,166 -1248456,1630083635,8148962,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,162 -1248457,1630083636,8150942,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,162 -1248458,1630083637,8150942,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,162 -1248459,1630083638,8150942,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,162 -1248460,1630083639,8150567,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,162 -1248461,1630083640,8142821,2,26,-9.0,2,1.0,1,73000.0,1001264,1.0,166 -1248462,1630083641,8144231,1,29,-9.0,2,1.0,1,79500.0,1025215,5.0,166 -1248463,1630083642,8150567,1,29,-9.0,2,1.0,1,79500.0,1025215,5.0,162 -1248464,1630083643,8150531,1,25,-9.0,2,1.0,1,75000.0,1001264,5.0,162 -1248465,1630083644,8148962,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,162 -1248466,1630083645,8150567,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,162 -1248467,1630083646,8150567,1,28,-9.0,2,2.0,1,65000.0,1001264,1.0,162 -1248468,1630083647,8150942,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,162 -1248469,1630083648,8142821,1,31,-9.0,2,2.0,1,84000.0,1073094,1.0,166 -1248470,1630083649,8142821,1,28,-9.0,2,2.0,1,94000.0,1001264,7.0,166 -1248471,1630083650,8141181,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,166 -1248472,1630083651,8150942,2,44,-9.0,1,0.0,1,50.0,1042852,4.0,162 -1248473,1630083652,8150942,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,162 -1248474,1630083653,8144729,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,166 -1248475,1630083654,8150942,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,162 -1248476,1630083655,8148310,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,162 -1248477,1630083656,8144701,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,166 -1248478,1630083657,8144231,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,166 -1248479,1630083658,8150942,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,162 -1248480,1630083659,8144729,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,166 -1248481,1630083660,8145332,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,166 -1248482,1630083661,8150942,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,162 -1248483,1630083662,8150942,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,162 -1248484,1630083663,8144701,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,166 -1248485,1630083664,8150942,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,162 -1248486,1630083665,8142821,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,166 -1248487,1630083666,8150942,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,162 -1248488,1630083667,8148310,2,41,-9.0,1,0.0,1,7350.0,1001264,4.0,162 -1248489,1630083668,8142821,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,166 -1248490,1630083669,8145332,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,166 -1248491,1630083670,8145332,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,166 -1248492,1630083671,8150942,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,162 -1248493,1630083672,8150942,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,162 -1248494,1630083673,8150942,2,44,-9.0,1,0.0,1,50.0,1042852,4.0,162 -1248495,1630083674,8145332,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,166 -1248496,1630083675,8148333,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,162 -1248497,1630083676,8144927,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,162 -1248498,1630083677,8144701,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,166 -1248499,1630083678,8144729,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,166 -1248500,1630083679,8142821,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,166 -1248501,1630083680,8145332,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,166 -1248502,1630083681,8145332,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,166 -1248503,1630083682,8150942,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,162 -1248504,1630083683,8150942,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,162 -1248505,1630083684,8142821,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,166 -1248506,1630083685,8150942,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,162 -1248507,1630083686,8145332,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,166 -1248508,1630083687,8150942,2,43,-9.0,1,0.0,1,8700.0,1009585,6.0,162 -1248509,1630083688,8150942,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,162 -1248510,1630083689,8150942,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,162 -1248511,1630083690,8144729,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,166 -1248512,1630083691,8144729,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,166 -1248513,1630083692,8144701,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,166 -1248514,1630083693,8150942,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,162 -1248515,1630083694,8142821,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,166 -1248516,1630083695,8150942,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,162 -1248517,1630083696,8148310,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,162 -1248518,1630083697,8142821,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,166 -1248519,1630083698,8142821,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,166 -1248520,1630083699,8142821,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,166 -1248521,1630083700,8142821,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,166 -1248522,1630083701,8142821,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,166 -1248523,1630083702,8148310,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,162 -1248524,1630083703,8150531,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,162 -1248525,1630083704,8150531,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,162 -1248526,1630083705,8150531,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,162 -1248527,1630083706,8150531,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,162 -1248528,1630083707,8900578,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,162 -1248529,1630083708,8150567,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,162 -1248530,1630083709,8142821,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,166 -1248531,1630083710,8144729,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,166 -1248532,1630083711,8142821,2,42,-9.0,1,1.0,1,5000.0,1042852,6.0,166 -1248533,1630083712,8142821,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,166 -1248534,1630083713,8140294,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,166 -1248535,1630083714,8140294,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,166 -1248536,1630083715,8142821,2,40,-9.0,1,1.0,1,0.0,1001264,4.0,166 -1248537,1630083716,8150567,2,41,-9.0,1,1.0,1,8900.0,1009585,6.0,162 -1248538,1630083717,8144231,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,166 -1248539,1630083718,8150531,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,162 -1248540,1630083719,8150531,2,40,-9.0,1,1.0,1,0.0,1001264,4.0,162 -1248541,1630083720,8142821,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,166 -1248542,1630083721,8150567,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,162 -1248543,1630083722,8141181,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,166 -1248544,1630083723,8150567,2,40,-9.0,1,1.0,1,12000.0,1001264,6.0,162 -1248545,1630083724,8142821,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,166 -1248546,1630083725,8900578,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,162 -1248547,1630083726,8148333,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,162 -1248548,1630083727,8150942,2,42,-9.0,1,1.0,1,0.0,1073094,4.0,162 -1248549,1630083728,8141181,2,43,-9.0,1,1.0,1,12000.0,1009585,4.0,166 -1248550,1630083729,8144231,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,166 -1248551,1630083730,8141181,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,166 -1248552,1630083731,8148333,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,162 -1248553,1630083732,8144927,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,162 -1248554,1630083733,8142821,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,166 -1248555,1630083734,8142821,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,166 -1248556,1630083735,8144473,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,166 -1248557,1630083736,8148333,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,162 -1248558,1630083737,8150567,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,162 -1248559,1630083738,8144473,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,166 -1248560,1630083739,8148310,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,162 -1248561,1630083740,8142821,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,166 -1248562,1630083741,8150567,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,162 -1248563,1630083742,8900578,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,162 -1248564,1630083743,8142821,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,166 -1248565,1630083744,8150942,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,162 -1248566,1630083745,8142821,2,42,1.0,3,0.0,1,0.0,1001264,3.0,166 -1248567,1630083746,8150531,2,29,2.0,3,1.0,1,12300.0,1001264,3.0,162 -1248568,1630083747,8142821,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,166 -1248569,1630083748,8142821,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,166 -1248570,1630083749,8141181,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,166 -1248571,1630083750,8142821,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,166 -1248572,1630083751,8144701,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,166 -1248573,1630083752,8142821,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,166 -1248574,1630083753,8142821,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,166 -1248575,1630083754,8142821,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,166 -1248576,1630083755,8142821,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,166 -1248577,1630083756,8142821,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,166 -1248578,1630083757,8142821,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,166 -1248579,1630083758,8142821,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,166 -1248580,1630083759,8142821,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,166 -1248581,1630083760,8142821,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,166 -1248582,1630083761,8142821,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,166 -1248583,1630083762,8144729,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,166 -1248584,1630083763,8150942,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,162 -1248585,1630083764,8145332,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,166 -1248586,1630083765,8145332,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,166 -1248587,1630083766,8150942,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,162 -1248588,1630083767,8144701,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,166 -1248589,1630083768,8144231,2,36,-9.0,2,0.0,1,8100.0,1073094,7.0,166 -1248590,1630083769,8145332,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,166 -1248591,1630083770,8144701,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,166 -1248592,1630083771,8144729,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,166 -1248593,1630083772,8150531,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,162 -1248594,1630083773,8142821,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,166 -1248595,1630083774,8150942,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,162 -1248596,1630083775,8150942,2,41,1.0,2,0.0,1,9700.0,1009585,3.0,162 -1248597,1630083776,8142821,2,26,1.0,2,0.0,1,3600.0,1025215,3.0,166 -1248598,1630083777,8150942,2,43,-9.0,2,1.0,1,24740.0,1042852,7.0,162 -1248599,1630083778,8142821,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,166 -1248600,1630083779,8142821,2,30,-9.0,2,1.0,1,21500.0,1025215,3.0,166 -1248601,1630083780,8142821,2,30,-9.0,2,1.0,1,21500.0,1025215,3.0,166 -1248602,1630083781,8150531,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,162 -1248603,1630083782,8142821,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,166 -1248604,1630083783,8150942,2,43,-9.0,2,1.0,1,24740.0,1042852,7.0,162 -1248605,1630083784,8150531,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,162 -1248606,1630083785,8142821,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,166 -1248607,1630083786,8142821,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,166 -1248608,1630083787,8150531,2,33,1.0,2,1.0,1,17000.0,1073094,3.0,162 -1248609,1630083788,8142821,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,166 -1248610,1630083789,8150942,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,162 -1248611,1630083790,8142821,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,166 -1248612,1630083791,8142821,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,166 -1248613,1630083792,8142821,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,166 -1248614,1630083793,8142821,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,166 -1248615,1630083794,8142821,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,166 -1248616,1630083795,8145332,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,166 -1248617,1630083796,8150531,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,162 -1248618,1630083797,8148310,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,162 -1248619,1630083798,8148310,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,162 -1248620,1630083799,8148310,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,162 -1248621,1630083800,8148310,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,162 -1248622,1630083801,8142821,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,166 -1248623,1630083802,8144729,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,166 -1248624,1630083803,8148310,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,162 -1248625,1630083804,8148310,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,162 -1248626,1630083805,8150942,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,162 -1248627,1630083806,8148962,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,162 -1248628,1630083807,8150531,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,162 -1248629,1630083808,8148333,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,162 -1248630,1630083809,8148962,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,162 -1248631,1630083810,8148962,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,162 -1248632,1630083811,8148962,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,162 -1248633,1630083812,8144927,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,162 -1248634,1630083813,8150531,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,162 -1248635,1630083814,8142821,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,166 -1248636,1630083815,8144231,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,166 -1248637,1630083816,8148962,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,162 -1248638,1630083817,8144701,2,29,-9.0,1,1.0,1,9000.0,1009585,4.0,166 -1248639,1630083818,8142821,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,166 -1248640,1630083819,8142821,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,166 -1248641,1630083820,8142821,2,35,-9.0,1,1.0,1,5600.0,1073094,4.0,166 -1248642,1630083821,8150942,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,162 -1248643,1630083822,8150531,2,42,-9.0,1,1.0,1,24000.0,1001264,6.0,162 -1248644,1630083823,8148310,2,29,-9.0,1,1.0,1,24000.0,1009585,6.0,162 -1248645,1630083824,8142821,2,35,-9.0,1,1.0,1,5600.0,1073094,4.0,166 -1248646,1630083825,8148962,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,162 -1248647,1630083826,8150567,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,162 -1248648,1630083827,8142821,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,166 -1248649,1630083828,8141181,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,166 -1248650,1630083829,8142821,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,166 -1248651,1630083830,8142821,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,166 -1248652,1630083831,8142821,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,166 -1248653,1630083832,8142821,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,166 -1248654,1630083833,8142821,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,166 -1248655,1630083834,8150567,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,162 -1248656,1630083835,8150942,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,162 -1248657,1630083836,8142821,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,166 -1248658,1630083837,8148962,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,162 -1248659,1630083838,8148310,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,162 -1248660,1630083839,8148962,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,162 -1248661,1630083840,8142821,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,166 -1248662,1630083841,8142821,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,166 -1248663,1630083842,8142821,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,166 -1248664,1630083843,8150567,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,162 -1248665,1630083844,8141181,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,166 -1248666,1630083845,8142821,2,25,1.0,3,1.0,1,7640.0,1042852,3.0,166 -1248667,1630083846,8148962,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,162 -1248668,1630083847,8148962,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,162 -1248669,1630083848,8148962,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,162 -1248670,1630083849,8148962,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,162 -1248671,1630083850,8148962,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,162 -1248672,1630083851,8148962,2,30,-9.0,2,0.0,1,14700.0,1009585,1.0,162 -1248673,1630083852,8150942,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,162 -1248674,1630083853,8148962,2,30,-9.0,2,0.0,1,14700.0,1009585,1.0,162 -1248675,1630083854,8148962,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,162 -1248676,1630083855,8141181,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,166 -1248677,1630083856,8142821,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,166 -1248678,1630083857,8141181,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,166 -1248679,1630083858,8142821,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,166 -1248680,1630083859,8141181,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,166 -1248681,1630083860,8145332,2,26,-9.0,2,0.0,1,12200.0,1001264,7.0,166 -1248682,1630083861,8148310,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,162 -1248683,1630083862,8148310,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,162 -1248684,1630083863,8150942,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,162 -1248685,1630083864,8142821,1,33,-9.0,2,1.0,1,25000.0,1009585,1.0,166 -1248686,1630083865,8145332,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,166 -1248687,1630083866,8142821,2,64,-9.0,1,1.0,1,50700.0,1025215,4.0,166 -1248688,1630083867,8141181,2,61,-9.0,1,1.0,1,36100.0,1042852,6.0,166 -1248689,1630083868,8150531,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,162 -1248690,1630083869,8148962,2,61,-9.0,1,0.0,1,49000.0,1073094,6.0,162 -1248691,1630083870,8150531,2,59,-9.0,1,0.0,1,31000.0,1042852,6.0,162 -1248692,1630083871,8150567,2,63,-9.0,1,1.0,1,36600.0,1042852,4.0,162 -1248693,1630083872,8150531,2,59,-9.0,1,1.0,1,50020.0,1001264,6.0,162 -1248694,1630083873,8140294,2,48,-9.0,1,1.0,1,30000.0,1073094,4.0,166 -1248695,1630083874,8140294,2,48,-9.0,1,1.0,1,30000.0,1073094,4.0,166 -1248696,1630083875,8142821,2,58,-9.0,1,1.0,1,43000.0,1001264,4.0,166 -1248697,1630083876,8150942,2,46,-9.0,1,1.0,1,40000.0,1073094,4.0,162 -1248698,1630083877,8150567,1,64,-9.0,1,1.0,1,59000.0,1073094,4.0,162 -1248699,1630083878,8142821,1,63,-9.0,1,1.0,1,36000.0,1025215,6.0,166 -1248700,1630083879,8142821,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,166 -1248701,1630083880,8150567,2,45,-9.0,2,1.0,1,40200.0,1042852,3.0,162 -1248702,1630083881,8144701,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,166 -1248703,1630083882,8141181,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,166 -1248704,1630083883,8150531,1,57,-9.0,1,1.0,1,72000.0,1042852,6.0,162 -1248705,1630083884,8150567,2,50,-9.0,2,1.0,1,74300.0,1009585,3.0,162 -1248706,1630083885,8150942,2,58,-9.0,1,0.0,1,16200.0,1025215,4.0,162 -1248707,1630083886,8150942,2,63,-9.0,1,0.0,1,8500.0,1025215,6.0,162 -1248708,1630083887,8144701,2,45,-9.0,1,0.0,1,4400.0,1025215,4.0,166 -1248709,1630083888,8150942,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,162 -1248710,1630083889,8150942,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,162 -1248711,1630083890,8150942,2,58,-9.0,1,0.0,1,8500.0,1025215,4.0,162 -1248712,1630083891,8144729,2,54,-9.0,1,0.0,1,8300.0,1042852,4.0,166 -1248713,1630083892,8148310,2,62,-9.0,1,0.0,1,8570.0,1042852,6.0,162 -1248714,1630083893,8150942,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,162 -1248715,1630083894,8140294,2,47,-9.0,1,0.0,1,12000.0,1025215,4.0,166 -1248716,1630083895,8142821,2,52,-9.0,1,0.0,1,6000.0,1073094,6.0,166 -1248717,1630083896,8148333,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,162 -1248718,1630083897,8150942,2,61,-9.0,1,0.0,1,11000.0,1042852,4.0,162 -1248719,1630083898,8141181,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,166 -1248720,1630083899,8145332,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,166 -1248721,1630083900,8150942,2,64,-9.0,1,0.0,1,12300.0,1042852,4.0,162 -1248722,1630083901,8145332,2,50,-9.0,1,0.0,1,8100.0,1073094,4.0,166 -1248723,1630083902,8150942,2,61,-9.0,1,0.0,1,11000.0,1042852,4.0,162 -1248724,1630083903,8148310,2,60,-9.0,1,0.0,1,12000.0,1025215,4.0,162 -1248725,1630083904,8150942,2,50,-9.0,1,0.0,1,6000.0,1073094,4.0,162 -1248726,1630083905,8150942,2,64,-9.0,1,0.0,1,4610.0,1025215,6.0,162 -1248727,1630083906,8142821,2,51,-9.0,1,0.0,1,10600.0,1025215,6.0,166 -1248728,1630083907,8150942,2,53,-9.0,1,0.0,1,8800.0,1001264,4.0,162 -1248729,1630083908,8142821,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,166 -1248730,1630083909,8150942,2,58,-9.0,1,0.0,1,1020.0,1009585,4.0,162 -1248731,1630083910,8148310,2,63,-9.0,1,0.0,1,0.0,1025215,6.0,162 -1248732,1630083911,8150567,2,62,-9.0,1,0.0,1,21000.0,1001264,6.0,162 -1248733,1630083912,8150531,2,61,-9.0,1,0.0,1,25830.0,1042852,6.0,162 -1248734,1630083913,8148962,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,162 -1248735,1630083914,8150942,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,162 -1248736,1630083915,8150942,2,57,-9.0,1,0.0,1,8100.0,1073094,4.0,162 -1248737,1630083916,8148310,2,47,-9.0,1,0.0,1,16300.0,1073094,4.0,162 -1248738,1630083917,8144701,2,50,-9.0,1,0.0,1,8600.0,1042852,6.0,166 -1248739,1630083918,8140294,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,166 -1248740,1630083919,8150942,2,56,-9.0,1,0.0,1,8750.0,1001264,4.0,162 -1248741,1630083920,8150942,2,57,-9.0,1,0.0,1,8400.0,1009585,6.0,162 -1248742,1630083921,8150942,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,162 -1248743,1630083922,8150531,2,58,-9.0,1,0.0,1,11000.0,1025215,6.0,162 -1248744,1630083923,8150942,2,62,-9.0,1,0.0,1,1800.0,1001264,4.0,162 -1248745,1630083924,8149574,2,55,-9.0,1,0.0,1,8500.0,1009585,6.0,162 -1248746,1630083925,8150942,2,53,-9.0,1,0.0,1,8800.0,1001264,4.0,162 -1248747,1630083926,8141181,2,61,-9.0,1,0.0,1,28000.0,1009585,6.0,166 -1248748,1630083927,8150942,2,55,-9.0,1,0.0,1,8500.0,1025215,6.0,162 -1248749,1630083928,8150942,2,51,-9.0,1,0.0,1,8900.0,1009585,4.0,162 -1248750,1630083929,8150942,2,63,-9.0,1,0.0,1,8500.0,1025215,6.0,162 -1248751,1630083930,8144729,2,54,-9.0,1,0.0,1,8400.0,1042852,4.0,166 -1248752,1630083931,8145332,2,50,-9.0,1,0.0,1,8100.0,1073094,4.0,166 -1248753,1630083932,8144729,2,51,-9.0,1,0.0,1,0.0,1001264,6.0,166 -1248754,1630083933,8144729,2,54,-9.0,1,0.0,1,8400.0,1042852,4.0,166 -1248755,1630083934,8150942,2,58,-9.0,1,0.0,1,4800.0,1042852,4.0,162 -1248756,1630083935,8150942,2,62,-9.0,1,0.0,1,8100.0,1073094,6.0,162 -1248757,1630083936,8150531,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,162 -1248758,1630083937,8140294,2,47,-9.0,1,0.0,1,12000.0,1025215,4.0,166 -1248759,1630083938,8150942,2,64,-9.0,1,0.0,1,12600.0,1001264,4.0,162 -1248760,1630083939,8150942,2,54,-9.0,1,0.0,1,7200.0,1042852,6.0,162 -1248761,1630083940,8150942,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,162 -1248762,1630083941,8148310,2,53,-9.0,1,0.0,1,8300.0,1042852,4.0,162 -1248763,1630083942,8150942,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,162 -1248764,1630083943,8150942,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,162 -1248765,1630083944,8150531,2,54,-9.0,1,0.0,1,11100.0,1073094,6.0,162 -1248766,1630083945,8150942,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,162 -1248767,1630083946,8150942,2,56,-9.0,1,0.0,1,0.0,1009585,6.0,162 -1248768,1630083947,8150942,2,50,-9.0,1,0.0,1,0.0,1025215,4.0,162 -1248769,1630083948,8150942,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,162 -1248770,1630083949,8144927,2,63,-9.0,1,0.0,1,8500.0,1009585,4.0,162 -1248771,1630083950,8150942,2,64,-9.0,1,0.0,1,24700.0,1001264,4.0,162 -1248772,1630083951,8150942,2,64,-9.0,1,0.0,1,12300.0,1042852,4.0,162 -1248773,1630083952,8142821,2,52,-9.0,1,0.0,1,6000.0,1073094,6.0,166 -1248774,1630083953,8150942,2,62,-9.0,1,0.0,1,12000.0,1073094,4.0,162 -1248775,1630083954,8150942,2,50,-9.0,1,0.0,1,0.0,1025215,4.0,162 -1248776,1630083955,8150942,2,49,-9.0,1,0.0,1,0.0,1001264,4.0,162 -1248777,1630083956,8150942,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,162 -1248778,1630083957,8150942,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,162 -1248779,1630083958,8150942,2,58,-9.0,1,0.0,1,8400.0,1042852,4.0,162 -1248780,1630083959,8142821,2,53,-9.0,1,0.0,1,0.0,1042852,4.0,166 -1248781,1630083960,8150942,2,62,-9.0,1,0.0,1,16200.0,1009585,4.0,162 -1248782,1630083961,8140294,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,166 -1248783,1630083962,8150942,2,54,-9.0,1,0.0,1,3200.0,1042852,4.0,162 -1248784,1630083963,8150942,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,162 -1248785,1630083964,8150942,2,58,-9.0,1,0.0,1,1020.0,1009585,4.0,162 -1248786,1630083965,8144927,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,162 -1248787,1630083966,8150942,2,50,-9.0,1,0.0,1,8900.0,1009585,6.0,162 -1248788,1630083967,8150942,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,162 -1248789,1630083968,8150942,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,162 -1248790,1630083969,8144231,2,51,-9.0,1,0.0,1,9100.0,1001264,6.0,166 -1248791,1630083970,8141181,2,62,-9.0,1,0.0,1,9600.0,1001264,6.0,166 -1248792,1630083971,8150942,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,162 -1248793,1630083972,8150942,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,162 -1248794,1630083973,8140294,2,62,-9.0,1,0.0,1,8100.0,1001264,6.0,166 -1248795,1630083974,8140294,2,62,-9.0,1,0.0,1,8100.0,1001264,6.0,166 -1248796,1630083975,8150942,2,56,-9.0,1,0.0,1,13200.0,1009585,4.0,162 -1248797,1630083976,8142821,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,166 -1248798,1630083977,8150942,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,162 -1248799,1630083978,8150942,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,162 -1248800,1630083979,8144729,2,45,-9.0,1,0.0,1,4400.0,1025215,4.0,166 -1248801,1630083980,8142821,2,51,-9.0,1,0.0,1,10600.0,1025215,6.0,166 -1248802,1630083981,8150942,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,162 -1248803,1630083982,8142821,2,56,-9.0,1,0.0,1,2440.0,1001264,6.0,166 -1248804,1630083983,8142821,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,166 -1248805,1630083984,8148962,4,62,-9.0,1,0.0,1,18000.0,1042852,4.0,162 -1248806,1630083985,8900578,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,162 -1248807,1630083986,8148310,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,162 -1248808,1630083987,8148310,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,162 -1248809,1630083988,8148310,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,162 -1248810,1630083989,8150942,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,162 -1248811,1630083990,8148310,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,162 -1248812,1630083991,8144473,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,166 -1248813,1630083992,8150942,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,162 -1248814,1630083993,8144473,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,166 -1248815,1630083994,8148310,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,162 -1248816,1630083995,8150942,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,162 -1248817,1630083996,8144473,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,166 -1248818,1630083997,8150531,2,53,-9.0,1,1.0,1,13200.0,1025215,4.0,162 -1248819,1630083998,8142821,2,61,-9.0,1,1.0,1,17600.0,1073094,6.0,166 -1248820,1630083999,8148333,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,162 -1248821,1630084000,8141181,2,52,-9.0,1,1.0,1,0.0,1042852,4.0,166 -1248822,1630084001,8150942,2,64,-9.0,1,1.0,1,3300.0,1025215,4.0,162 -1248823,1630084002,8142821,2,51,-9.0,1,1.0,1,1000.0,1009585,4.0,166 -1248824,1630084003,8150942,2,64,-9.0,1,1.0,1,12400.0,1001264,4.0,162 -1248825,1630084004,8144927,2,55,-9.0,1,1.0,1,8500.0,1025215,4.0,162 -1248826,1630084005,8142821,2,62,-9.0,1,1.0,1,0.0,1042852,4.0,166 -1248827,1630084006,8148962,2,56,-9.0,1,1.0,1,0.0,1025215,6.0,162 -1248828,1630084007,8148310,2,53,-9.0,1,1.0,1,22600.0,1001264,4.0,162 -1248829,1630084008,8145332,2,60,-9.0,1,1.0,1,9100.0,1025215,4.0,166 -1248830,1630084009,8144729,2,61,-9.0,1,1.0,1,19500.0,1025215,4.0,166 -1248831,1630084010,8150531,2,62,-9.0,1,1.0,1,7000.0,1001264,4.0,162 -1248832,1630084011,8150942,2,57,-9.0,1,1.0,1,8700.0,1025215,4.0,162 -1248833,1630084012,8150942,2,63,-9.0,1,1.0,1,1780.0,1009585,6.0,162 -1248834,1630084013,8144729,2,60,-9.0,1,1.0,1,9100.0,1025215,4.0,166 -1248835,1630084014,8150942,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,162 -1248836,1630084015,8140294,1,64,-9.0,1,1.0,1,12300.0,1009585,4.0,166 -1248837,1630084016,8142821,2,54,-9.0,3,0.0,1,17700.0,1042852,5.0,166 -1248838,1630084017,8150942,2,47,-9.0,3,0.0,1,13300.0,1042852,3.0,162 -1248839,1630084018,8144701,2,49,-9.0,3,0.0,1,10170.0,1001264,1.0,166 -1248840,1630084019,8144473,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,166 -1248841,1630084020,8142821,2,61,-9.0,3,0.0,1,7000.0,1073094,5.0,166 -1248842,1630084021,8144701,2,49,-9.0,3,0.0,1,10170.0,1001264,1.0,166 -1248843,1630084022,8142821,2,61,-9.0,3,0.0,1,7000.0,1073094,5.0,166 -1248844,1630084023,8150942,2,47,-9.0,3,0.0,1,13300.0,1042852,3.0,162 -1248845,1630084024,8142821,2,57,-9.0,2,0.0,1,20540.0,1025215,3.0,166 -1248846,1630084025,8148310,2,51,-9.0,2,0.0,1,24000.0,1073094,7.0,162 -1248847,1630084026,8148310,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,162 -1248848,1630084027,8150942,2,51,-9.0,2,0.0,1,24000.0,1073094,7.0,162 -1248849,1630084028,8150531,2,61,-9.0,2,0.0,1,12700.0,1042852,1.0,162 -1248850,1630084029,8150942,2,50,-9.0,2,0.0,1,5100.0,1042852,2.0,162 -1248851,1630084030,8150531,2,55,-9.0,2,0.0,1,0.0,1025215,5.0,162 -1248852,1630084031,8142821,2,53,-9.0,2,0.0,1,3500.0,1009585,1.0,166 -1248853,1630084032,8150942,2,57,-9.0,2,0.0,1,9000.0,1042852,5.0,162 -1248854,1630084033,8145332,2,49,-9.0,2,0.0,1,22650.0,1009585,7.0,166 -1248855,1630084034,8150942,2,54,-9.0,2,0.0,1,11800.0,1001264,3.0,162 -1248856,1630084035,8150942,2,59,-9.0,2,0.0,1,18300.0,1001264,7.0,162 -1248857,1630084036,8145332,2,61,-9.0,2,0.0,1,10800.0,1025215,2.0,166 -1248858,1630084037,8148310,2,63,-9.0,2,0.0,1,15000.0,1073094,5.0,162 -1248859,1630084038,8142821,2,55,-9.0,2,0.0,1,0.0,1025215,5.0,166 -1248860,1630084039,8150942,2,61,-9.0,2,0.0,1,23800.0,1073094,2.0,162 -1248861,1630084040,8150942,2,54,-9.0,2,0.0,1,11800.0,1001264,3.0,162 -1248862,1630084041,8142821,2,57,-9.0,2,0.0,1,20540.0,1025215,3.0,166 -1248863,1630084042,8148310,2,63,-9.0,2,0.0,1,15000.0,1073094,5.0,162 -1248864,1630084043,8150942,2,61,-9.0,2,0.0,1,23800.0,1073094,2.0,162 -1248865,1630084044,8149458,2,60,-9.0,2,0.0,1,13400.0,1042852,5.0,162 -1248866,1630084045,8150531,2,59,-9.0,2,0.0,1,8650.0,1025215,3.0,162 -1248867,1630084046,8150942,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,162 -1248868,1630084047,8149574,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,162 -1248869,1630084048,8150531,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,162 -1248870,1630084049,8145332,2,56,-9.0,2,1.0,1,23000.0,1001264,3.0,166 -1248871,1630084050,8150942,2,64,-9.0,2,1.0,1,8300.0,1073094,5.0,162 -1248872,1630084051,8140294,2,58,-9.0,2,1.0,1,10000.0,1001264,5.0,166 -1248873,1630084052,8148962,2,56,-9.0,2,1.0,1,15600.0,1009585,1.0,162 -1248874,1630084053,8144729,2,56,-9.0,2,1.0,1,23000.0,1001264,3.0,166 -1248875,1630084054,8140294,2,51,-9.0,2,1.0,1,8500.0,1009585,1.0,166 -1248876,1630084055,8142821,1,57,-9.0,2,1.0,1,19600.0,1001264,2.0,166 -1248877,1630084056,8142821,1,57,-9.0,2,1.0,1,19600.0,1001264,2.0,166 -1248878,1630084057,8150942,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,162 -1248879,1630084058,8144701,2,61,-9.0,1,0.0,1,14000.0,1073094,6.0,166 -1248880,1630084059,8144927,2,61,-9.0,1,0.0,1,16200.0,1042852,6.0,162 -1248881,1630084060,8150942,2,64,-9.0,1,0.0,1,15000.0,1025215,4.0,162 -1248882,1630084061,8900578,2,59,-9.0,1,0.0,1,11300.0,1042852,6.0,162 -1248883,1630084062,8144701,2,58,-9.0,1,0.0,1,9680.0,1073094,4.0,166 -1248884,1630084063,8141181,2,55,-9.0,1,0.0,1,8000.0,1009585,4.0,166 -1248885,1630084064,8148333,2,46,-9.0,1,0.0,1,5000.0,1073094,4.0,162 -1248886,1630084065,8144701,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,166 -1248887,1630084066,8150942,2,64,-9.0,1,0.0,1,15000.0,1025215,4.0,162 -1248888,1630084067,8150942,2,54,-9.0,1,0.0,1,21000.0,1009585,4.0,162 -1248889,1630084068,8148310,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,162 -1248890,1630084069,8142821,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,166 -1248891,1630084070,8150942,2,54,-9.0,1,1.0,1,21900.0,1025215,4.0,162 -1248892,1630084071,8142821,2,56,-9.0,1,1.0,1,25000.0,1009585,6.0,166 -1248893,1630084072,8150942,2,58,-9.0,1,1.0,1,13900.0,1073094,4.0,162 -1248894,1630084073,8142821,2,46,-9.0,1,1.0,1,1000.0,1001264,6.0,166 -1248895,1630084074,8142821,2,56,-9.0,1,1.0,1,25000.0,1009585,6.0,166 -1248896,1630084075,8148962,1,46,-9.0,1,1.0,1,20000.0,1001264,4.0,162 -1248897,1630084076,8150531,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,162 -1248898,1630084077,8142821,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,166 -1248899,1630084078,8149574,2,46,-9.0,3,0.0,1,1400.0,1025215,3.0,162 -1248900,1630084079,8141181,2,46,-9.0,2,0.0,1,4200.0,1025215,3.0,166 -1248901,1630084080,8141181,2,46,-9.0,2,0.0,1,4200.0,1025215,3.0,166 -1248902,1630084081,8150531,2,55,-9.0,2,1.0,1,14000.0,1042852,3.0,162 -1248903,1630084082,8142821,2,58,-9.0,2,1.0,1,26500.0,1073094,3.0,166 -1248904,1630084083,8142821,2,45,-9.0,2,1.0,1,9500.0,1025215,3.0,166 -1248905,1630084084,8150942,2,60,-9.0,2,1.0,1,2700.0,1009585,3.0,162 -1248906,1630084085,8150531,2,52,-9.0,2,0.0,1,23400.0,1073094,7.0,162 -1248907,1630084086,8145332,2,66,-9.0,1,0.0,1,38000.0,1001264,6.0,166 -1248908,1630084087,8150942,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,162 -1248909,1630084088,8150531,2,90,-9.0,1,0.0,1,44700.0,1001264,6.0,162 -1248910,1630084089,8150942,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,162 -1248911,1630084090,8144927,2,87,-9.0,1,0.0,1,30000.0,1042852,6.0,162 -1248912,1630084091,8144701,2,66,-9.0,1,0.0,1,38000.0,1001264,6.0,166 -1248913,1630084092,8150531,2,68,-9.0,1,1.0,1,34800.0,1042852,6.0,162 -1248914,1630084093,8150531,2,68,-9.0,1,1.0,1,34800.0,1042852,6.0,162 -1248915,1630084094,8142821,2,76,-9.0,1,1.0,1,34350.0,1001264,6.0,166 -1248916,1630084095,8150531,2,68,-9.0,1,1.0,1,34800.0,1042852,6.0,162 -1248917,1630084096,8142821,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,166 -1248918,1630084097,8142821,2,68,-9.0,3,0.0,1,53700.0,1025215,3.0,166 -1248919,1630084098,8142821,2,76,-9.0,2,0.0,1,41200.0,1009585,3.0,166 -1248920,1630084099,8142821,2,76,-9.0,2,0.0,1,41200.0,1009585,3.0,166 -1248921,1630084100,8142821,2,90,-9.0,2,0.0,1,30900.0,1009585,7.0,166 -1248922,1630084101,8142821,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,166 -1248923,1630084102,8142821,2,81,-9.0,2,1.0,1,31500.0,1009585,1.0,166 -1248924,1630084103,8141181,2,74,-9.0,2,1.0,1,42970.0,1042852,3.0,166 -1248925,1630084104,8150567,2,65,-9.0,1,1.0,1,31900.0,1025215,6.0,162 -1248926,1630084105,8150531,2,73,-9.0,2,1.0,1,55100.0,1001264,3.0,162 -1248927,1630084106,8141181,2,74,-9.0,1,0.0,1,68400.0,1001264,4.0,166 -1248928,1630084107,8144701,2,78,-9.0,1,0.0,1,9200.0,1001264,6.0,166 -1248929,1630084108,8150942,2,80,-9.0,1,0.0,1,5500.0,1042852,4.0,162 -1248930,1630084109,8150942,2,82,-9.0,1,0.0,1,18900.0,1042852,6.0,162 -1248931,1630084110,8144729,2,65,-9.0,1,0.0,1,11800.0,1073094,4.0,166 -1248932,1630084111,8144729,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,166 -1248933,1630084112,8150942,2,75,-9.0,1,0.0,1,10800.0,1009585,4.0,162 -1248934,1630084113,8150531,2,66,-9.0,1,0.0,1,17700.0,1025215,6.0,162 -1248935,1630084114,8150531,2,66,-9.0,1,0.0,1,17700.0,1025215,6.0,162 -1248936,1630084115,8140294,2,82,-9.0,1,0.0,1,8300.0,1042852,6.0,166 -1248937,1630084116,8141181,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,166 -1248938,1630084117,8150942,2,80,-9.0,1,0.0,1,8300.0,1073094,6.0,162 -1248939,1630084118,8150942,2,67,-9.0,1,0.0,1,8300.0,1001264,6.0,162 -1248940,1630084119,8150942,2,66,-9.0,1,0.0,1,20400.0,1009585,6.0,162 -1248941,1630084120,8150942,2,65,-9.0,1,0.0,1,17000.0,1001264,6.0,162 -1248942,1630084121,8150942,2,71,-9.0,1,0.0,1,8700.0,1025215,6.0,162 -1248943,1630084122,8142821,2,68,-9.0,1,0.0,1,7200.0,1042852,6.0,166 -1248944,1630084123,8150942,2,78,-9.0,1,0.0,1,8500.0,1073094,6.0,162 -1248945,1630084124,8142821,2,65,-9.0,1,0.0,1,1900.0,1025215,6.0,166 -1248946,1630084125,8150942,2,66,-9.0,1,0.0,1,9000.0,1001264,4.0,162 -1248947,1630084126,8150942,2,69,-9.0,1,0.0,1,14400.0,1001264,6.0,162 -1248948,1630084127,8150942,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,162 -1248949,1630084128,8150942,2,66,-9.0,1,0.0,1,13500.0,1073094,4.0,162 -1248950,1630084129,8150942,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,162 -1248951,1630084130,8141181,2,68,-9.0,1,0.0,1,17360.0,1009585,6.0,166 -1248952,1630084131,8144701,2,70,-9.0,1,0.0,1,14300.0,1042852,6.0,166 -1248953,1630084132,8149574,2,70,-9.0,1,0.0,1,8600.0,1042852,6.0,162 -1248954,1630084133,8150942,2,70,-9.0,1,0.0,1,9200.0,1042852,6.0,162 -1248955,1630084134,8145332,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,166 -1248956,1630084135,8150942,2,69,-9.0,1,0.0,1,14400.0,1001264,6.0,162 -1248957,1630084136,8150942,2,80,-9.0,1,0.0,1,8300.0,1073094,6.0,162 -1248958,1630084137,8150942,2,65,-9.0,1,0.0,1,15600.0,1025215,6.0,162 -1248959,1630084138,8144729,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,166 -1248960,1630084139,8145332,2,75,-9.0,1,0.0,1,8800.0,1001264,4.0,166 -1248961,1630084140,8150942,2,80,-9.0,1,0.0,1,8900.0,1009585,6.0,162 -1248962,1630084141,8141181,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,166 -1248963,1630084142,8150942,2,81,-9.0,1,0.0,1,20000.0,1025215,6.0,162 -1248964,1630084143,8150942,2,87,-9.0,1,0.0,1,7200.0,1042852,6.0,162 -1248965,1630084144,8144729,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,166 -1248966,1630084145,8145332,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,166 -1248967,1630084146,8148310,2,79,-9.0,1,0.0,1,13800.0,1025215,4.0,162 -1248968,1630084147,8150942,2,80,-9.0,1,0.0,1,12700.0,1073094,6.0,162 -1248969,1630084148,8148310,2,67,-9.0,1,0.0,1,9600.0,1001264,4.0,162 -1248970,1630084149,8142821,2,83,-9.0,1,0.0,1,7700.0,1025215,4.0,166 -1248971,1630084150,8150942,2,67,-9.0,1,0.0,1,9600.0,1042852,4.0,162 -1248972,1630084151,8150942,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,162 -1248973,1630084152,8148310,2,78,-9.0,1,0.0,1,20600.0,1042852,4.0,162 -1248974,1630084153,8145332,2,72,-9.0,1,0.0,1,2100.0,1042852,6.0,166 -1248975,1630084154,8150942,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,162 -1248976,1630084155,8150942,2,71,-9.0,1,0.0,1,8700.0,1025215,6.0,162 -1248977,1630084156,8145332,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,166 -1248978,1630084157,8142821,2,67,-9.0,1,0.0,1,6900.0,1042852,4.0,166 -1248979,1630084158,8150942,2,73,-9.0,1,0.0,1,8400.0,1042852,6.0,162 -1248980,1630084159,8150942,2,65,-9.0,1,0.0,1,15600.0,1025215,6.0,162 -1248981,1630084160,8150942,2,69,-9.0,1,0.0,1,17000.0,1025215,4.0,162 -1248982,1630084161,8144729,2,72,-9.0,1,0.0,1,2100.0,1042852,6.0,166 -1248983,1630084162,8150942,2,65,-9.0,1,0.0,1,11000.0,1001264,6.0,162 -1248984,1630084163,8150942,2,65,-9.0,1,0.0,1,24000.0,1001264,4.0,162 -1248985,1630084164,8145332,2,75,-9.0,1,0.0,1,8800.0,1001264,4.0,166 -1248986,1630084165,8150942,2,72,-9.0,1,0.0,1,9300.0,1001264,6.0,162 -1248987,1630084166,8150942,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,162 -1248988,1630084167,8150942,2,86,-9.0,1,0.0,1,12300.0,1042852,6.0,162 -1248989,1630084168,8150567,2,82,-9.0,1,0.0,1,12500.0,1073094,4.0,162 -1248990,1630084169,8150942,2,75,-9.0,1,0.0,1,10800.0,1009585,4.0,162 -1248991,1630084170,8150942,2,73,-9.0,1,0.0,1,8400.0,1042852,6.0,162 -1248992,1630084171,8150942,2,80,-9.0,1,0.0,1,8900.0,1009585,6.0,162 -1248993,1630084172,8150942,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,162 -1248994,1630084173,8148310,2,79,-9.0,1,0.0,1,13800.0,1025215,4.0,162 -1248995,1630084174,8150942,2,65,-9.0,1,0.0,1,11000.0,1001264,6.0,162 -1248996,1630084175,8150942,2,75,-9.0,1,0.0,1,9600.0,1009585,4.0,162 -1248997,1630084176,8150942,2,67,-9.0,1,0.0,1,9600.0,1042852,4.0,162 -1248998,1630084177,8148333,2,73,-9.0,1,0.0,1,10600.0,1009585,6.0,162 -1248999,1630084178,8148310,2,79,-9.0,1,0.0,1,13800.0,1025215,4.0,162 -1249000,1630084179,8150942,2,80,-9.0,1,0.0,1,8300.0,1073094,6.0,162 -1249001,1630084180,8150942,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,162 -1249002,1630084181,8150567,2,82,-9.0,1,0.0,1,12500.0,1073094,4.0,162 -1249003,1630084182,8148310,2,79,-9.0,1,0.0,1,18000.0,1025215,4.0,162 -1249004,1630084183,8144231,2,85,-9.0,1,0.0,1,12100.0,1025215,6.0,166 -1249005,1630084184,8148310,2,94,-9.0,1,0.0,1,23000.0,1042852,6.0,162 -1249006,1630084185,8150942,2,73,-9.0,1,0.0,1,8400.0,1073094,6.0,162 -1249007,1630084186,8141181,2,83,-9.0,1,0.0,1,7700.0,1025215,4.0,166 -1249008,1630084187,8142821,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,166 -1249009,1630084188,8150531,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,162 -1249010,1630084189,8150942,2,69,-9.0,1,0.0,1,8400.0,1001264,6.0,162 -1249011,1630084190,8142821,2,73,-9.0,1,0.0,1,0.0,1025215,6.0,166 -1249012,1630084191,8150942,2,70,-9.0,1,0.0,1,7300.0,1073094,6.0,162 -1249013,1630084192,8148310,2,79,-9.0,1,0.0,1,9100.0,1073094,6.0,162 -1249014,1630084193,8150942,2,67,-9.0,1,0.0,1,8300.0,1001264,6.0,162 -1249015,1630084194,8150942,2,80,-9.0,1,0.0,1,12700.0,1073094,6.0,162 -1249016,1630084195,8141181,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,166 -1249017,1630084196,8142821,2,67,-9.0,1,0.0,1,6900.0,1042852,4.0,166 -1249018,1630084197,8150942,2,78,-9.0,1,0.0,1,26100.0,1009585,6.0,162 -1249019,1630084198,8145332,2,70,-9.0,1,0.0,1,14300.0,1042852,6.0,166 -1249020,1630084199,8144701,2,72,-9.0,1,0.0,1,19290.0,1001264,6.0,166 -1249021,1630084200,8150942,2,81,-9.0,1,0.0,1,20000.0,1025215,6.0,162 -1249022,1630084201,8141181,2,76,-9.0,1,0.0,1,4101.0,1001264,4.0,166 -1249023,1630084202,8145332,2,70,-9.0,1,0.0,1,14300.0,1042852,6.0,166 -1249024,1630084203,8150942,2,67,-9.0,1,0.0,1,9600.0,1042852,4.0,162 -1249025,1630084204,8141181,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,166 -1249026,1630084205,8148310,2,79,-9.0,1,0.0,1,18000.0,1025215,4.0,162 -1249027,1630084206,8144729,2,78,-9.0,1,0.0,1,9200.0,1001264,6.0,166 -1249028,1630084207,8144701,2,75,-9.0,1,0.0,1,8800.0,1001264,4.0,166 -1249029,1630084208,8150942,2,65,-9.0,1,0.0,1,24000.0,1001264,4.0,162 -1249030,1630084209,8150942,2,80,-9.0,1,0.0,1,8300.0,1073094,6.0,162 -1249031,1630084210,8150942,2,78,-9.0,1,0.0,1,26100.0,1009585,6.0,162 -1249032,1630084211,8150942,2,79,-9.0,1,0.0,1,13600.0,1001264,4.0,162 -1249033,1630084212,8142821,2,83,-9.0,1,0.0,1,7700.0,1025215,4.0,166 -1249034,1630084213,8148310,2,70,-9.0,1,0.0,1,15000.0,1025215,4.0,162 -1249035,1630084214,8144729,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,166 -1249036,1630084215,8150942,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,162 -1249037,1630084216,8148962,1,66,-9.0,1,0.0,1,5300.0,1009585,4.0,162 -1249038,1630084217,8150942,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,162 -1249039,1630084218,8142821,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,166 -1249040,1630084219,8148962,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,162 -1249041,1630084220,8144701,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,166 -1249042,1630084221,8148962,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,162 -1249043,1630084222,8144701,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,166 -1249044,1630084223,8150942,1,74,-9.0,1,0.0,1,9600.0,1042852,4.0,162 -1249045,1630084224,8150942,1,74,-9.0,1,0.0,1,9600.0,1042852,4.0,162 -1249046,1630084225,8148962,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,162 -1249047,1630084226,8148962,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,162 -1249048,1630084227,8150567,1,77,-9.0,1,0.0,1,21900.0,1009585,4.0,162 -1249049,1630084228,8150531,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,162 -1249050,1630084229,8150942,1,67,-9.0,1,0.0,1,8300.0,1073094,6.0,162 -1249051,1630084230,8900578,3,67,-9.0,1,0.0,1,16800.0,1042852,4.0,162 -1249052,1630084231,8150942,2,83,-9.0,1,1.0,1,12600.0,1025215,4.0,162 -1249053,1630084232,8148310,2,76,-9.0,1,1.0,1,16800.0,1042852,4.0,162 -1249054,1630084233,8150531,2,65,-9.0,1,1.0,1,3300.0,1073094,4.0,162 -1249055,1630084234,8900578,2,69,-9.0,1,1.0,1,10800.0,1042852,6.0,162 -1249056,1630084235,8148310,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,162 -1249057,1630084236,8141181,2,65,-9.0,1,1.0,1,3300.0,1073094,4.0,166 -1249058,1630084237,8144701,2,68,-9.0,1,1.0,1,24000.0,1073094,4.0,166 -1249059,1630084238,8150942,2,66,-9.0,1,1.0,1,11000.0,1042852,6.0,162 -1249060,1630084239,8150567,2,81,-9.0,1,1.0,1,8400.0,1009585,4.0,162 -1249061,1630084240,8144701,2,78,-9.0,1,1.0,1,11900.0,1001264,6.0,166 -1249062,1630084241,8144231,2,69,-9.0,1,1.0,1,10800.0,1042852,6.0,166 -1249063,1630084242,8150942,2,75,-9.0,1,1.0,1,13000.0,1009585,4.0,162 -1249064,1630084243,8150942,2,84,-9.0,1,1.0,1,26300.0,1009585,4.0,162 -1249065,1630084244,8150567,2,76,-9.0,1,1.0,1,23400.0,1025215,4.0,162 -1249066,1630084245,8145332,2,78,-9.0,1,1.0,1,11900.0,1001264,6.0,166 -1249067,1630084246,8150942,2,65,-9.0,1,1.0,1,19300.0,1073094,4.0,162 -1249068,1630084247,8150567,2,81,-9.0,1,1.0,1,8400.0,1009585,4.0,162 -1249069,1630084248,8150942,2,77,-9.0,1,1.0,1,15100.0,1042852,4.0,162 -1249070,1630084249,8150942,2,77,-9.0,1,1.0,1,7700.0,1025215,6.0,162 -1249071,1630084250,8148310,2,69,-9.0,1,1.0,1,3100.0,1001264,6.0,162 -1249072,1630084251,8150942,2,66,-9.0,1,1.0,1,11190.0,1009585,4.0,162 -1249073,1630084252,8141181,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,166 -1249074,1630084253,8150567,2,76,-9.0,1,1.0,1,23400.0,1025215,4.0,162 -1249075,1630084254,8150942,2,66,-9.0,1,1.0,1,14400.0,1025215,6.0,162 -1249076,1630084255,8150942,2,69,-9.0,1,1.0,1,13500.0,1009585,6.0,162 -1249077,1630084256,8150942,2,77,-9.0,1,1.0,1,9600.0,1009585,6.0,162 -1249078,1630084257,8150942,2,84,-9.0,1,1.0,1,10100.0,1001264,6.0,162 -1249079,1630084258,8144729,2,68,-9.0,1,1.0,1,24000.0,1073094,4.0,166 -1249080,1630084259,8150531,2,75,-9.0,1,1.0,1,26300.0,1025215,6.0,162 -1249081,1630084260,8145332,2,66,-9.0,1,1.0,1,8700.0,1009585,6.0,166 -1249082,1630084261,8144701,2,79,-9.0,1,1.0,1,13000.0,1073094,6.0,166 -1249083,1630084262,8150942,1,68,-9.0,1,1.0,1,3000.0,1009585,4.0,162 -1249084,1630084263,8141181,1,69,-9.0,1,1.0,1,14600.0,1001264,6.0,166 -1249085,1630084264,8141181,2,67,-9.0,3,0.0,1,17700.0,1009585,1.0,166 -1249086,1630084265,8142821,2,67,-9.0,3,0.0,1,17700.0,1009585,1.0,166 -1249087,1630084266,8150531,2,67,-9.0,3,0.0,1,17700.0,1009585,1.0,162 -1249088,1630084267,8150942,2,70,-9.0,2,0.0,1,26900.0,1025215,1.0,162 -1249089,1630084268,8149458,2,72,-9.0,2,0.0,1,18000.0,1073094,7.0,162 -1249090,1630084269,8900578,2,73,-9.0,2,0.0,1,10000.0,1042852,3.0,162 -1249091,1630084270,8142821,2,65,-9.0,2,0.0,1,9600.0,1009585,3.0,166 -1249092,1630084271,8150942,2,81,-9.0,2,0.0,1,14100.0,1009585,3.0,162 -1249093,1630084272,8150942,2,70,-9.0,2,0.0,1,26900.0,1025215,1.0,162 -1249094,1630084273,8144729,2,77,-9.0,2,0.0,1,8000.0,1042852,1.0,166 -1249095,1630084274,8142821,2,90,-9.0,2,0.0,1,21000.0,1073094,1.0,166 -1249096,1630084275,8148310,2,76,-9.0,2,0.0,1,21400.0,1025215,1.0,162 -1249097,1630084276,8150942,2,72,-9.0,2,0.0,1,18000.0,1073094,7.0,162 -1249098,1630084277,8145332,2,77,-9.0,2,0.0,1,8000.0,1042852,1.0,166 -1249099,1630084278,8150531,2,90,-9.0,2,0.0,1,21000.0,1073094,1.0,162 -1249100,1630084279,8148310,2,69,-9.0,2,0.0,1,26200.0,1001264,5.0,162 -1249101,1630084280,8142821,2,65,-9.0,2,0.0,1,9600.0,1009585,3.0,166 -1249102,1630084281,8141181,2,65,-9.0,2,0.0,1,9600.0,1009585,3.0,166 -1249103,1630084282,8148310,2,76,-9.0,2,0.0,1,21400.0,1025215,1.0,162 -1249104,1630084283,8150531,2,65,-9.0,2,0.0,1,9600.0,1009585,3.0,162 -1249105,1630084284,8150942,2,72,-9.0,2,0.0,1,18000.0,1073094,7.0,162 -1249106,1630084285,8140294,1,77,-9.0,2,0.0,1,16400.0,1025215,5.0,166 -1249107,1630084286,8140294,1,77,-9.0,2,0.0,1,16400.0,1025215,5.0,166 -1249108,1630084287,8144729,2,81,-9.0,2,1.0,1,13700.0,1073094,3.0,166 -1249109,1630084288,8150942,2,66,-9.0,2,1.0,1,13300.0,1001264,1.0,162 -1249110,1630084289,8150942,2,73,-9.0,2,1.0,1,14400.0,1073094,3.0,162 -1249111,1630084290,8145332,2,81,-9.0,2,1.0,1,13700.0,1073094,3.0,166 -1249112,1630084291,8150531,2,84,-9.0,2,1.0,1,21700.0,1025215,3.0,162 -1249113,1630084292,8141181,2,84,-9.0,2,1.0,1,21700.0,1025215,3.0,166 -1249114,1630084293,8150942,2,68,-9.0,1,0.0,1,20000.0,1025215,4.0,162 -1249115,1630084294,8144729,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,166 -1249116,1630084295,8150942,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,162 -1249117,1630084296,8148310,2,23,-9.0,1,0.0,1,0.0,1042852,4.0,162 -1249118,1630084297,8148310,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,162 -1249119,1630084298,8150942,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,162 -1249120,1630084299,8150942,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,162 -1249121,1630084300,8148310,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,162 -1249122,1630084301,8150531,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,162 -1249123,1630084302,8148962,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,162 -1249124,1630084303,8142821,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,166 -1249125,1630084304,8148962,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,162 -1249126,1630084305,8150567,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,162 -1249127,1630084306,8150531,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,162 -1249128,1630084307,8148962,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,162 -1249129,1630084308,8150531,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,162 -1249130,1630084309,8150531,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,162 -1249131,1630084310,8142821,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,166 -1249132,1630084311,8142821,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,166 -1249133,1630084312,8145332,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,166 -1249134,1630084313,8142821,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,166 -1249135,1630084314,8140294,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,166 -1249136,1630084315,8150567,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,162 -1249137,1630084316,8148962,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,162 -1249138,1630084317,8148962,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,162 -1249139,1630084318,8140294,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,166 -1249140,1630084319,8148962,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,162 -1249141,1630084320,8148962,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,162 -1249142,1630084321,8144729,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,166 -1249143,1630084322,8142821,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,166 -1249144,1630084323,8142821,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,166 -1249145,1630084324,8150567,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,162 -1249146,1630084325,8150942,2,26,1.0,2,1.0,1,7500.0,1009585,3.0,162 -1249147,1630084326,8142821,2,63,-9.0,2,1.0,1,780.0,1009585,3.0,166 -1249148,1630084327,8142821,2,45,-9.0,3,0.0,1,40800.0,1042852,3.0,166 -1249149,1630084328,8142821,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,166 -1249150,1630084329,8142821,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,166 -1249151,1630084330,8150531,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,162 -1249152,1630084331,8144701,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,166 -1249153,1630084332,8150942,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,162 -1249154,1630084333,8144701,2,72,-9.0,1,1.0,1,20000.0,1025215,4.0,166 -1249155,1630084334,8150531,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,162 -1249156,1630084335,8142821,2,55,-9.0,1,1.0,1,17000.0,1073094,6.0,166 -1249157,1630084336,8150531,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,162 -1249158,1630084337,8148310,2,23,-9.0,1,0.0,1,0.0,1042852,4.0,162 -1249159,1630084338,8142821,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,166 -1249160,1630084339,8900578,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,162 -1249161,1630084340,8150942,1,62,-9.0,2,0.0,1,23900.0,1001264,5.0,162 -1249162,1630084341,8145332,2,73,-9.0,1,1.0,1,128300.0,1001264,6.0,166 -1249163,1630084342,8142821,2,69,-9.0,1,1.0,1,70010.0,1001264,6.0,166 -1249164,1630084343,8150942,2,65,-9.0,2,2.0,1,19100.0,1025215,1.0,162 -1249165,1630084344,8150567,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,162 -1249166,1630084345,8142821,2,65,-9.0,3,1.0,1,31400.0,1025215,1.0,166 -1249167,1630084346,8150567,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,162 -1249168,1630084347,8144927,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,162 -1249169,1630084348,8142821,2,62,-9.0,2,0.0,1,38100.0,1025215,1.0,166 -1249170,1630084349,8142821,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,166 -1249171,1630084350,8141181,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,166 -1249172,1630084351,8142821,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,166 -1249173,1630084352,8150567,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,162 -1249174,1630084353,8142821,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,166 -1249175,1630084354,8150942,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,162 -1249176,1630084355,8142821,2,45,-9.0,3,1.0,1,11000.0,1042852,3.0,166 -1249177,1630084356,8142821,1,66,-9.0,3,1.0,1,40191.0,1073094,1.0,166 -1249178,1630084357,8142821,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,166 -1249179,1630084358,8142821,2,26,-9.0,1,1.0,1,41660.0,1042852,6.0,166 -1249180,1630084359,8150567,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,162 -1249181,1630084360,8150567,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,162 -1249182,1630084361,8150531,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,162 -1249183,1630084362,8145332,2,41,-9.0,2,1.0,1,35000.0,1073094,3.0,166 -1249184,1630084363,8142821,2,44,-9.0,2,1.0,1,18000.0,1042852,2.0,166 -1249185,1630084364,8150531,4,70,-9.0,1,0.0,1,19900.0,1042852,6.0,162 -1249186,1630084365,8150531,2,37,1.0,2,1.0,1,7900.0,1025215,3.0,162 -1249187,1630084366,8142821,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,166 -1249188,1630084367,8148962,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,162 -1249189,1630084368,8142821,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,166 -1249190,1630084369,8150567,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,162 -1249191,1630084370,8142821,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,166 -1249192,1630084371,8150942,2,59,-9.0,3,1.0,1,1400.0,1009585,1.0,162 -1249193,1630084372,8150942,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,162 -1249194,1630084373,8142821,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,166 -1249195,1630084374,8145332,2,50,-9.0,1,0.0,1,10900.0,1073094,4.0,166 -1249196,1630084375,8142821,2,28,-9.0,2,2.0,1,50000.0,1001264,3.0,166 -1249197,1630084376,8150942,3,44,-9.0,1,0.0,1,1900.0,1001264,4.0,162 -1249198,1630084377,8142821,3,48,-9.0,2,0.0,1,8300.0,1073094,2.0,166 -1249199,1630084378,8142821,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,166 -1249200,1630084379,8142821,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,166 -1249201,1630084380,8150567,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,162 -1249202,1630084381,8900578,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,162 -1249203,1630084382,8142821,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,166 -1249204,1630084383,8150567,2,45,-9.0,2,1.0,1,85000.0,1073094,2.0,162 -1249205,1630084384,8145332,2,36,2.0,3,1.0,1,290.0,1042852,3.0,166 -1249206,1630084385,8141181,2,71,-9.0,2,0.0,1,13500.0,1025215,7.0,166 -1249207,1630084386,8150567,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,162 -1249208,1630084387,8150531,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,162 -1249209,1630084388,8149574,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,162 -1249210,1630084389,8148962,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,162 -1249211,1630084390,8150531,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,162 -1249212,1630084391,8150531,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,162 -1249213,1630084392,8150942,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,162 -1249214,1630084393,8145332,4,31,1.0,3,0.0,1,25830.0,1042852,1.0,166 -1249215,1630084394,8150567,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,162 -1249216,1630084395,8150531,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,162 -1249217,1630084396,8148962,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,162 -1249218,1630084397,8150531,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,162 -1249219,1630084398,8150942,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,162 -1249220,1630084399,8148310,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,162 -1249221,1630084400,8150531,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,162 -1249222,1630084401,8150567,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,162 -1249223,1630084402,8150942,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,162 -1249224,1630084403,8148962,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,162 -1249225,1630084404,8150531,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,162 -1249226,1630084405,8150531,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,162 -1249227,1630084406,8145332,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,166 -1249228,1630084407,8141181,2,63,-9.0,1,0.0,1,37000.0,1073094,4.0,166 -1249229,1630084408,8140294,2,58,-9.0,2,2.0,1,57800.0,1009585,7.0,166 -1249230,1630084409,8150942,4,77,-9.0,2,0.0,1,9000.0,1001264,3.0,162 -1249231,1630084410,8148310,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,162 -1249232,1630084411,8150942,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,162 -1249233,1630084412,8142821,2,61,-9.0,2,1.0,1,29250.0,1042852,3.0,166 -1249234,1630084413,8150942,2,21,1.0,2,0.0,1,1300.0,1025215,3.0,162 -1249235,1630084414,8150567,2,85,-9.0,2,0.0,1,42220.0,1009585,3.0,162 -1249236,1630084415,8140294,2,71,-9.0,1,2.0,1,19300.0,1001264,4.0,166 -1249237,1630084416,8150531,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,162 -1249238,1630084417,8150942,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,162 -1249239,1630084418,8150567,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,162 -1249240,1630084419,8150531,2,94,-9.0,3,1.0,1,24200.0,1009585,3.0,162 -1249241,1630084420,8148962,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,162 -1249242,1630084421,8141181,2,72,-9.0,1,1.0,1,61000.0,1025215,4.0,166 -1249243,1630084422,8144927,2,57,-9.0,2,1.0,1,33700.0,1009585,3.0,162 -1249244,1630084423,8142821,2,26,-9.0,2,1.0,1,73000.0,1001264,1.0,166 -1249245,1630084424,8900578,1,72,-9.0,1,1.0,1,25520.0,1001264,6.0,162 -1249246,1630084425,8142821,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,166 -1249247,1630084426,8148310,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,162 -1249248,1630084427,8142821,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,166 -1249249,1630084428,8142821,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,166 -1249250,1630084429,8900578,2,53,-9.0,2,2.0,1,6500.0,1025215,5.0,162 -1249251,1630084430,8142821,1,32,2.0,3,0.0,1,0.0,1025215,3.0,166 -1249252,1630084431,8141181,2,87,-9.0,1,0.0,1,51000.0,1009585,6.0,166 -1249253,1630084432,8142821,2,55,-9.0,3,0.0,1,34150.0,1042852,3.0,166 -1249254,1630084433,8150942,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,162 -1249255,1630084434,8150567,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,162 -1249256,1630084435,8142821,3,35,-9.0,1,1.0,1,3600.0,1073094,6.0,166 -1249257,1630084436,8148310,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,162 -1249258,1630084437,8150942,2,39,1.0,3,0.0,1,14000.0,1001264,3.0,162 -1249259,1630084438,8144729,2,69,-9.0,2,0.0,1,183100.0,1042852,1.0,166 -1249260,1630084439,8144927,2,58,-9.0,1,1.0,1,11000.0,1025215,4.0,162 -1249261,1630084440,8142821,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,166 -1249262,1630084441,8150531,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,162 -1249263,1630084442,8144927,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,162 -1249264,1630084443,8142821,1,62,-9.0,1,1.0,1,22600.0,1001264,4.0,166 -1249265,1630084444,8150942,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,162 -1249266,1630084445,8142821,2,29,1.0,2,1.0,1,32000.0,1025215,2.0,166 -1249267,1630084446,8145332,3,61,-9.0,1,0.0,1,8670.0,1025215,6.0,166 -1249268,1630084447,8141181,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,166 -1249269,1630084448,8150942,2,86,-9.0,3,1.0,1,50470.0,1009585,3.0,162 -1249270,1630084449,8142821,2,72,-9.0,2,1.0,1,11000.0,1001264,3.0,166 -1249271,1630084450,8150942,2,42,-9.0,2,2.0,1,8500.0,1009585,3.0,162 -1249272,1630084451,8148962,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,162 -1249273,1630084452,8150531,2,87,-9.0,1,1.0,1,48000.0,1025215,6.0,162 -1249274,1630084453,8150531,2,69,-9.0,2,1.0,1,77600.0,1025215,1.0,162 -1249275,1630084454,8145332,4,28,1.0,3,1.0,1,20000.0,1001264,1.0,166 -1249276,1630084455,8150531,2,71,-9.0,3,1.0,1,70400.0,1001264,3.0,162 -1249277,1630084456,8141181,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,166 -1249278,1630084457,8150531,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,162 -1249279,1630084458,8142821,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,166 -1249280,1630084459,8150531,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,162 -1249281,1630084460,8140294,2,43,1.0,2,1.0,1,34800.0,1001264,3.0,166 -1249282,1630084461,8148756,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,168 -1249283,1630084462,8151275,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,168 -1249284,1630084463,8151275,2,34,-9.0,1,1.0,1,36000.0,1042852,6.0,168 -1249285,1630084464,8145079,2,42,1.0,2,1.0,1,36500.0,1009585,3.0,168 -1249286,1630084465,8149417,2,38,1.0,2,1.0,1,42200.0,1001264,3.0,168 -1249287,1630084466,8151275,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,168 -1249288,1630084467,8148062,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,168 -1249289,1630084468,8149800,2,41,1.0,2,0.0,1,9700.0,1009585,3.0,168 -1249290,1630084469,8142821,2,41,1.0,2,0.0,1,9700.0,1009585,3.0,166 -1249291,1630084470,8150531,2,37,1.0,2,1.0,1,4800.0,1042852,3.0,162 -1249292,1630084471,8148687,2,28,1.0,2,1.0,1,13000.0,1073094,3.0,168 -1249293,1630084472,8142821,2,32,1.0,2,1.0,1,13600.0,1001264,3.0,166 -1249294,1630084473,8148687,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,168 -1249295,1630084474,8151275,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,168 -1249296,1630084475,8149158,2,64,-9.0,1,1.0,1,32490.0,1042852,6.0,168 -1249297,1630084476,8150299,2,59,-9.0,1,0.0,1,31000.0,1042852,6.0,168 -1249298,1630084477,8148062,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,168 -1249299,1630084478,8149890,2,58,-9.0,1,0.0,1,45000.0,1009585,6.0,168 -1249300,1630084479,8149800,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,168 -1249301,1630084480,8149158,2,60,-9.0,1,1.0,1,36000.0,1001264,4.0,168 -1249302,1630084481,8147592,2,62,-9.0,1,1.0,1,37000.0,1009585,6.0,168 -1249303,1630084482,8150162,2,55,-9.0,1,1.0,1,49900.0,1042852,6.0,168 -1249304,1630084483,8149890,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,168 -1249305,1630084484,8150531,2,46,-9.0,1,1.0,1,30000.0,1042852,4.0,162 -1249306,1630084485,8144935,2,50,-9.0,1,1.0,1,32000.0,1001264,6.0,168 -1249307,1630084486,8149650,2,62,-9.0,1,1.0,1,37000.0,1009585,6.0,168 -1249308,1630084487,8150472,2,56,-9.0,1,1.0,1,33000.0,1073094,6.0,168 -1249309,1630084488,8900571,2,62,-9.0,1,1.0,1,37000.0,1009585,6.0,168 -1249310,1630084489,8150472,2,59,-9.0,1,1.0,1,50020.0,1001264,6.0,168 -1249311,1630084490,8144935,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,168 -1249312,1630084491,8150197,2,50,1.0,2,1.0,1,37000.0,1025215,3.0,168 -1249313,1630084492,8148687,2,63,1.0,2,2.0,1,37300.0,1009585,3.0,168 -1249314,1630084493,8148756,2,46,1.0,2,2.0,1,51200.0,1025215,3.0,168 -1249315,1630084494,8144935,2,59,-9.0,2,2.0,1,54400.0,1042852,1.0,168 -1249316,1630084495,8149650,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,168 -1249317,1630084496,8142821,2,62,-9.0,1,1.0,1,82000.0,1009585,4.0,166 -1249318,1630084497,8151275,2,45,-9.0,2,1.0,1,85000.0,1073094,2.0,168 -1249319,1630084498,8149650,2,50,-9.0,2,1.0,1,74300.0,1009585,3.0,168 -1249320,1630084499,8149890,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,168 -1249321,1630084500,8148062,2,53,-9.0,1,0.0,1,26030.0,1042852,4.0,168 -1249322,1630084501,8144935,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,168 -1249323,1630084502,8149890,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,168 -1249324,1630084503,8149417,2,58,-9.0,1,0.0,1,9700.0,1009585,4.0,168 -1249325,1630084504,8148062,2,62,-9.0,1,0.0,1,16200.0,1009585,4.0,168 -1249326,1630084505,8147592,2,46,-9.0,1,0.0,1,1770.0,1042852,6.0,168 -1249327,1630084506,8150299,2,58,-9.0,1,0.0,1,10800.0,1025215,6.0,168 -1249328,1630084507,8148728,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,168 -1249329,1630084508,8150769,2,54,-9.0,1,0.0,1,8200.0,1009585,4.0,168 -1249330,1630084509,8148756,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,168 -1249331,1630084510,8150299,2,60,-9.0,1,0.0,1,13300.0,1001264,6.0,168 -1249332,1630084511,8150299,2,58,-9.0,1,0.0,1,8600.0,1073094,6.0,168 -1249333,1630084512,8149417,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,168 -1249334,1630084513,8148687,2,51,-9.0,1,0.0,1,0.0,1025215,4.0,168 -1249335,1630084514,8144935,2,52,-9.0,1,0.0,1,8800.0,1001264,6.0,168 -1249336,1630084515,8150769,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,168 -1249337,1630084516,8149158,2,54,-9.0,1,0.0,1,3200.0,1042852,4.0,168 -1249338,1630084517,8150197,2,46,-9.0,1,0.0,1,4800.0,1001264,6.0,168 -1249339,1630084518,8149890,2,45,-9.0,1,0.0,1,16800.0,1009585,4.0,168 -1249340,1630084519,8150769,2,64,-9.0,1,0.0,1,24700.0,1001264,4.0,168 -1249341,1630084520,8149158,2,58,-9.0,1,0.0,1,4800.0,1042852,4.0,168 -1249342,1630084521,8148062,2,64,-9.0,1,0.0,1,24700.0,1001264,4.0,168 -1249343,1630084522,8150769,2,62,-9.0,1,0.0,1,12300.0,1001264,6.0,168 -1249344,1630084523,8145079,2,58,-9.0,1,0.0,1,8400.0,1025215,4.0,168 -1249345,1630084524,8149890,2,62,-9.0,1,0.0,1,9600.0,1001264,6.0,168 -1249346,1630084525,8145079,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,168 -1249347,1630084526,8148571,2,58,-9.0,1,0.0,1,9000.0,1042852,4.0,168 -1249348,1630084527,8150299,2,57,-9.0,1,0.0,1,8400.0,1009585,6.0,168 -1249349,1630084528,8150299,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,168 -1249350,1630084529,8151207,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,168 -1249351,1630084530,8149417,2,62,-9.0,1,0.0,1,28800.0,1001264,4.0,168 -1249352,1630084531,8149158,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,168 -1249353,1630084532,8150162,2,51,-9.0,1,0.0,1,0.0,1001264,6.0,168 -1249354,1630084533,8148062,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,168 -1249355,1630084534,8150472,2,51,-9.0,1,0.0,1,8900.0,1009585,4.0,168 -1249356,1630084535,8149800,2,54,-9.0,1,0.0,1,10000.0,1001264,4.0,168 -1249357,1630084536,8148687,2,50,-9.0,1,0.0,1,11200.0,1001264,6.0,168 -1249358,1630084537,8150769,2,54,-9.0,1,1.0,1,8700.0,1001264,4.0,168 -1249359,1630084538,8150769,2,63,-9.0,1,1.0,1,12000.0,1042852,6.0,168 -1249360,1630084539,8148756,2,47,-9.0,1,1.0,1,8400.0,1009585,6.0,168 -1249361,1630084540,8150769,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,168 -1249362,1630084541,8149890,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,168 -1249363,1630084542,8145079,2,64,-9.0,1,1.0,1,7660.0,1009585,4.0,168 -1249364,1630084543,8149890,2,58,-9.0,1,1.0,1,25600.0,1073094,6.0,168 -1249365,1630084544,8149800,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,168 -1249366,1630084545,8148571,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,168 -1249367,1630084546,8144935,2,61,-9.0,2,0.0,1,23800.0,1073094,2.0,168 -1249368,1630084547,8148571,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,168 -1249369,1630084548,8148062,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,168 -1249370,1630084549,8148728,2,61,1.0,2,0.0,1,18500.0,1042852,3.0,168 -1249371,1630084550,8148062,2,53,1.0,2,0.0,1,0.0,1042852,3.0,168 -1249372,1630084551,8145079,2,53,1.0,2,0.0,1,12000.0,1025215,2.0,168 -1249373,1630084552,8148571,2,52,1.0,2,0.0,1,8500.0,1001264,2.0,168 -1249374,1630084553,8151207,2,61,1.0,2,0.0,1,18500.0,1042852,3.0,168 -1249375,1630084554,8144935,2,52,1.0,2,0.0,1,8500.0,1001264,2.0,168 -1249376,1630084555,8142821,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,166 -1249377,1630084556,8149800,2,47,1.0,2,1.0,1,20400.0,1025215,3.0,168 -1249378,1630084557,8142821,2,46,1.0,2,1.0,1,0.0,1025215,3.0,166 -1249379,1630084558,8148062,2,59,1.0,2,1.0,1,14880.0,1042852,3.0,168 -1249380,1630084559,8145079,2,52,-9.0,1,0.0,1,13400.0,1042852,6.0,168 -1249381,1630084560,8149158,2,61,-9.0,1,0.0,1,5600.0,1001264,4.0,168 -1249382,1630084561,8150162,2,61,-9.0,1,0.0,1,14000.0,1073094,6.0,168 -1249383,1630084562,8149890,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,168 -1249384,1630084563,8149800,2,61,-9.0,1,0.0,1,11500.0,1009585,4.0,168 -1249385,1630084564,8149650,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,168 -1249386,1630084565,8149890,2,59,-9.0,1,0.0,1,15000.0,1025215,6.0,168 -1249387,1630084566,8148571,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,168 -1249388,1630084567,8150197,2,54,-9.0,1,1.0,1,14540.0,1009585,4.0,168 -1249389,1630084568,8150769,2,53,-9.0,1,1.0,1,12900.0,1025215,6.0,168 -1249390,1630084569,8150299,2,46,-9.0,1,1.0,1,14000.0,1001264,6.0,168 -1249391,1630084570,8149158,2,66,-9.0,1,0.0,1,33400.0,1042852,4.0,168 -1249392,1630084571,8151275,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,168 -1249393,1630084572,8149890,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,168 -1249394,1630084573,8150472,2,66,-9.0,1,0.0,1,33400.0,1042852,4.0,168 -1249395,1630084574,8149890,2,66,-9.0,1,0.0,1,38000.0,1001264,6.0,168 -1249396,1630084575,8148571,2,87,-9.0,1,0.0,1,30000.0,1042852,6.0,168 -1249397,1630084576,8148756,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,168 -1249398,1630084577,8900571,2,68,-9.0,1,1.0,1,34800.0,1042852,6.0,168 -1249399,1630084578,8151275,2,66,-9.0,1,1.0,1,37420.0,1073094,4.0,168 -1249400,1630084579,8151275,2,66,-9.0,1,1.0,1,37420.0,1073094,4.0,168 -1249401,1630084580,8149417,2,69,-9.0,1,1.0,1,37000.0,1001264,4.0,168 -1249402,1630084581,8149158,2,74,-9.0,1,1.0,1,45000.0,1025215,6.0,168 -1249403,1630084582,8151275,2,88,-9.0,2,0.0,1,33800.0,1073094,3.0,168 -1249404,1630084583,8151275,2,84,-9.0,2,1.0,1,30600.0,1073094,1.0,168 -1249405,1630084584,8148062,2,65,-9.0,1,1.0,1,31900.0,1025215,6.0,168 -1249406,1630084585,8151275,2,74,-9.0,1,0.0,1,68400.0,1001264,4.0,168 -1249407,1630084586,8144935,2,72,-9.0,1,0.0,1,18830.0,1001264,6.0,168 -1249408,1630084587,8145079,2,70,-9.0,1,0.0,1,7300.0,1073094,6.0,168 -1249409,1630084588,8149800,2,67,-9.0,1,0.0,1,9600.0,1001264,6.0,168 -1249410,1630084589,8150299,2,67,-9.0,1,0.0,1,6900.0,1042852,4.0,168 -1249411,1630084590,8150769,2,73,-9.0,1,0.0,1,10600.0,1009585,6.0,168 -1249412,1630084591,8142821,2,66,-9.0,1,0.0,1,9000.0,1001264,4.0,166 -1249413,1630084592,8148062,2,66,-9.0,1,0.0,1,13500.0,1073094,4.0,168 -1249414,1630084593,8150769,2,69,-9.0,1,0.0,1,12000.0,1042852,6.0,168 -1249415,1630084594,8149800,2,65,-9.0,1,0.0,1,9000.0,1001264,6.0,168 -1249416,1630084595,8144935,2,65,-9.0,1,0.0,1,5300.0,1042852,6.0,168 -1249417,1630084596,8149417,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,168 -1249418,1630084597,8144935,2,65,-9.0,1,0.0,1,0.0,1001264,6.0,168 -1249419,1630084598,8149800,2,72,-9.0,1,0.0,1,18830.0,1001264,6.0,168 -1249420,1630084599,8151275,2,78,-9.0,1,0.0,1,12000.0,1009585,6.0,168 -1249421,1630084600,8149800,2,75,-9.0,1,0.0,1,9600.0,1009585,4.0,168 -1249422,1630084601,8148756,2,88,-9.0,1,0.0,1,8800.0,1001264,6.0,168 -1249423,1630084602,8142821,2,67,-9.0,1,0.0,1,8300.0,1073094,6.0,166 -1249424,1630084603,8145079,2,87,-9.0,1,0.0,1,20400.0,1025215,6.0,168 -1249425,1630084604,8151275,2,72,-9.0,1,0.0,1,2100.0,1042852,6.0,168 -1249426,1630084605,8150472,2,80,-9.0,1,0.0,1,8900.0,1009585,6.0,168 -1249427,1630084606,8148756,2,69,-9.0,1,0.0,1,12600.0,1025215,6.0,168 -1249428,1630084607,8145079,2,69,-9.0,1,0.0,1,7000.0,1009585,6.0,168 -1249429,1630084608,8151275,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,168 -1249430,1630084609,8148571,2,66,-9.0,1,0.0,1,17700.0,1025215,6.0,168 -1249431,1630084610,8150769,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,168 -1249432,1630084611,8149890,2,65,-9.0,1,0.0,1,12000.0,1025215,4.0,168 -1249433,1630084612,8142821,2,83,-9.0,1,0.0,1,7700.0,1025215,4.0,166 -1249434,1630084613,8150162,2,70,-9.0,1,0.0,1,11400.0,1042852,6.0,168 -1249435,1630084614,8149800,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,168 -1249436,1630084615,8151275,2,68,-9.0,1,0.0,1,7200.0,1025215,6.0,168 -1249437,1630084616,8145079,2,94,-9.0,1,0.0,1,14300.0,1009585,4.0,168 -1249438,1630084617,8150472,2,65,-9.0,1,0.0,1,15600.0,1025215,6.0,168 -1249439,1630084618,8148571,2,73,-9.0,1,0.0,1,9600.0,1001264,6.0,168 -1249440,1630084619,8150299,2,81,-9.0,1,0.0,1,16600.0,1042852,6.0,168 -1249441,1630084620,8151275,2,85,-9.0,1,0.0,1,13200.0,1025215,6.0,168 -1249442,1630084621,8149890,2,66,-9.0,1,0.0,1,20400.0,1009585,6.0,168 -1249443,1630084622,8149800,2,67,-9.0,1,0.0,1,9600.0,1001264,6.0,168 -1249444,1630084623,8144935,2,70,-9.0,1,0.0,1,15000.0,1025215,4.0,168 -1249445,1630084624,8150531,2,86,-9.0,1,0.0,1,13000.0,1025215,6.0,162 -1249446,1630084625,8150769,2,72,-9.0,1,0.0,1,18830.0,1001264,6.0,168 -1249447,1630084626,8151275,2,66,-9.0,1,0.0,1,20400.0,1009585,6.0,168 -1249448,1630084627,8150531,2,65,-9.0,1,0.0,1,430.0,1025215,6.0,162 -1249449,1630084628,8145079,2,80,-9.0,1,0.0,1,8300.0,1073094,6.0,168 -1249450,1630084629,8147592,2,65,-9.0,1,0.0,1,14900.0,1025215,6.0,168 -1249451,1630084630,8144935,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,168 -1249452,1630084631,8148062,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,168 -1249453,1630084632,8149800,2,85,-9.0,1,1.0,1,14100.0,1009585,6.0,168 -1249454,1630084633,8148687,2,80,-9.0,1,1.0,1,8530.0,1042852,6.0,168 -1249455,1630084634,8148571,2,73,-9.0,1,1.0,1,16800.0,1001264,4.0,168 -1249456,1630084635,8900571,2,80,-9.0,1,1.0,1,8530.0,1042852,6.0,168 -1249457,1630084636,8149890,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,168 -1249458,1630084637,8148571,2,66,-9.0,1,1.0,1,15300.0,1073094,6.0,168 -1249459,1630084638,8150299,2,68,-9.0,1,1.0,1,11600.0,1001264,6.0,168 -1249460,1630084639,8150299,2,66,-9.0,1,1.0,1,15300.0,1073094,6.0,168 -1249461,1630084640,8900571,2,69,-9.0,1,1.0,1,10500.0,1073094,6.0,168 -1249462,1630084641,8150197,2,69,-9.0,1,1.0,1,21000.0,1001264,6.0,168 -1249463,1630084642,8147592,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,168 -1249464,1630084643,8148571,2,72,-9.0,1,1.0,1,12000.0,1009585,4.0,168 -1249465,1630084644,8149890,2,79,-9.0,1,1.0,1,13000.0,1073094,6.0,168 -1249466,1630084645,8148062,2,73,-9.0,2,0.0,1,23000.0,1025215,7.0,168 -1249467,1630084646,8149158,2,90,-9.0,2,0.0,1,21000.0,1073094,1.0,168 -1249468,1630084647,8144935,2,65,1.0,2,0.0,1,10000.0,1073094,3.0,168 -1249469,1630084648,8142821,2,68,-9.0,2,1.0,1,12000.0,1001264,1.0,166 -1249470,1630084649,8150531,2,65,1.0,2,1.0,1,16000.0,1025215,3.0,162 -1249471,1630084650,8142821,2,66,1.0,2,1.0,1,15200.0,1001264,3.0,166 -1249472,1630084651,8150472,2,65,-9.0,1,1.0,1,31900.0,1025215,6.0,168 -1249473,1630084652,8150531,2,52,-9.0,2,0.0,1,23400.0,1073094,7.0,162 -1249474,1630084653,8142821,2,50,-9.0,2,1.0,1,18000.0,1042852,3.0,166 -1249475,1630084654,8148571,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,168 -1249476,1630084655,8149158,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,168 -1249477,1630084656,8150769,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,168 -1249478,1630084657,8148728,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,168 -1249479,1630084658,8151275,1,51,-9.0,1,0.0,1,0.0,1042852,6.0,168 -1249480,1630084659,8150531,2,46,1.0,2,1.0,1,0.0,1025215,3.0,162 -1249481,1630084660,8900571,2,73,-9.0,2,1.0,1,55100.0,1001264,3.0,168 -1249482,1630084661,8142821,2,63,-9.0,1,0.0,1,37000.0,1073094,4.0,166 -1249483,1630084662,8149890,2,66,-9.0,1,0.0,1,15500.0,1009585,4.0,168 -1249484,1630084663,8148687,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,168 -1249485,1630084664,8140294,2,33,1.0,3,3.0,1,97000.0,1009585,2.0,166 -1249486,1630084665,8151275,2,66,-9.0,1,1.0,1,37420.0,1073094,4.0,168 -1249487,1630084666,8149890,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,168 -1249488,1630084667,8149417,2,66,-9.0,1,0.0,1,33400.0,1042852,4.0,168 -1249489,1630084668,8151275,2,45,1.0,2,0.0,1,20900.0,1009585,3.0,168 -1249490,1630084669,8148571,2,76,-9.0,2,0.0,1,21400.0,1025215,1.0,168 -1249491,1630084670,8150197,2,36,1.0,2,1.0,1,9600.0,1073094,3.0,168 -1249492,1630084671,8148756,2,46,-9.0,1,2.0,1,31500.0,1009585,6.0,168 -1249493,1630084672,8149890,2,58,-9.0,1,0.0,1,45000.0,1009585,6.0,168 -1249494,1630084673,8149417,2,80,-9.0,1,0.0,1,8900.0,1009585,6.0,168 -1249495,1630084674,8144935,2,64,-9.0,1,1.0,1,32700.0,1042852,4.0,168 -1249496,1630084675,8145079,2,47,1.0,3,2.0,1,38200.0,1001264,3.0,168 -1249497,1630084676,8150769,2,35,1.0,2,0.0,1,5400.0,1073094,3.0,168 -1249498,1630084677,8149158,2,29,-9.0,1,0.0,1,37000.0,1042852,4.0,168 -1249499,1630084678,8145079,2,47,2.0,3,0.0,1,8700.0,1009585,3.0,168 -1249500,1630084679,8149458,2,42,-9.0,1,1.0,1,43000.0,1025215,4.0,162 -1249501,1630084680,8149158,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,168 -1249502,1630084681,8148062,2,72,-9.0,1,0.0,1,54300.0,1073094,6.0,168 -1249503,1630084682,8150299,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,168 -1249504,1630084683,8149158,2,67,-9.0,1,1.0,1,7200.0,1042852,6.0,168 -1249505,1630084684,8150472,2,53,-9.0,2,1.0,1,56400.0,1073094,3.0,168 -1249506,1630084685,8144935,2,68,1.0,3,1.0,1,32900.0,1001264,3.0,168 -1249507,1630084686,8148756,2,30,-9.0,1,1.0,1,15000.0,1009585,4.0,168 -1249508,1630084687,8150769,2,47,1.0,2,1.0,1,25000.0,1025215,2.0,168 -1249509,1630084688,8145079,2,29,1.0,3,1.0,1,42970.0,1042852,2.0,168 -1249510,1630084689,8148062,2,46,1.0,3,1.0,1,65900.0,1025215,1.0,168 -1249511,1630084690,8140294,2,35,-9.0,2,1.0,1,32000.0,1025215,5.0,166 -1249512,1630084691,8144935,2,31,1.0,2,1.0,1,30000.0,1001264,3.0,168 -1249513,1630084692,8144935,2,32,1.0,2,0.0,1,40400.0,1042852,3.0,168 -1249514,1630084693,8149417,2,45,-9.0,1,1.0,1,22000.0,1073094,4.0,168 -1249515,1630084694,8150162,2,25,1.0,2,1.0,1,45000.0,1073094,3.0,168 -1249516,1630084695,8145079,2,58,-9.0,2,2.0,1,57800.0,1009585,7.0,168 -1249517,1630084696,8148571,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,168 -1249518,1630084697,8150299,2,61,-9.0,2,0.0,1,31400.0,1042852,2.0,168 -1249519,1630084698,8141181,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,166 -1249520,1630084699,8142821,2,57,-9.0,2,2.0,1,75000.0,1001264,2.0,166 -1249521,1630084700,8140294,2,40,1.0,2,0.0,1,9800.0,1042852,2.0,166 -1249522,1630084701,8149417,2,50,-9.0,2,1.0,1,25400.0,1001264,3.0,168 -1249523,1630084702,8149890,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,168 -1249524,1630084703,8141181,2,39,2.0,3,0.0,1,9000.0,1025215,3.0,166 -1249525,1630084704,8149650,2,58,-9.0,2,0.0,1,90000.0,1001264,1.0,168 -1249526,1630084705,8148756,2,58,-9.0,1,1.0,1,40370.0,1073094,4.0,168 -1249527,1630084706,8149158,2,65,1.0,2,0.0,1,10000.0,1073094,3.0,168 -1249528,1630084707,8142821,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,166 -1249529,1630084708,8150299,2,76,-9.0,2,0.0,1,41200.0,1009585,3.0,168 -1249530,1630084709,8147592,2,50,1.0,2,1.0,1,37000.0,1025215,3.0,168 -1249531,1630084710,8151207,2,56,2.0,3,0.0,1,40824.0,1009585,7.0,168 -1249532,1630084711,8150472,2,49,-9.0,1,1.0,1,3700.0,1073094,6.0,168 -1249533,1630084712,8150299,2,45,1.0,3,1.0,1,34400.0,1073094,3.0,168 -1249534,1630084713,8149800,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,168 -1249535,1630084714,8140294,2,36,1.0,2,1.0,1,70000.0,1025215,2.0,166 -1249536,1630084715,8150531,2,27,2.0,3,1.0,1,6200.0,1009585,3.0,162 -1249537,1630084716,8140294,2,41,1.0,2,1.0,1,35000.0,1073094,2.0,166 -1249538,1630084717,8149800,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,168 -1249539,1630084718,8148571,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,168 -1249540,1630084719,8150531,2,47,1.0,3,1.0,1,10500.0,1025215,3.0,162 -1249541,1630084720,8140294,2,34,-9.0,2,0.0,1,46300.0,1042852,1.0,166 -1249542,1630084721,8149158,2,72,-9.0,1,1.0,1,61000.0,1025215,4.0,168 -1249543,1630084722,8150472,2,65,-9.0,1,2.0,1,16000.0,1001264,6.0,168 -1249544,1630084723,8150531,1,69,-9.0,2,2.0,1,41280.0,1042852,5.0,162 -1249545,1630084724,8161292,2,64,-9.0,2,1.0,1,102000.0,1042852,1.0,160 -1249546,1630084725,8163624,2,48,-9.0,2,3.0,1,163200.0,1042852,3.0,160 -1249547,1630084726,8162848,2,48,-9.0,2,3.0,1,163200.0,1042852,3.0,160 -1249548,1630084727,8163871,2,48,-9.0,2,3.0,1,163200.0,1042852,3.0,160 -1249549,1630084728,8158288,1,64,-9.0,2,2.0,1,118790.0,1025215,1.0,160 -1249550,1630084729,8158288,1,64,-9.0,2,2.0,1,118790.0,1025215,1.0,160 -1249551,1630084730,8158288,1,64,-9.0,2,2.0,1,118790.0,1025215,1.0,160 -1249552,1630084731,8158288,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,160 -1249553,1630084732,8162285,1,45,-9.0,1,1.0,1,128000.0,1009585,4.0,160 -1249554,1630084733,8158288,1,59,-9.0,1,1.0,1,356000.0,1025215,6.0,160 -1249555,1630084734,8163871,2,62,-9.0,2,2.0,1,105000.0,1042852,3.0,160 -1249556,1630084735,8158288,1,64,-9.0,2,2.0,1,389100.0,1001264,1.0,160 -1249557,1630084736,8158288,2,60,-9.0,2,2.0,1,142000.0,1001264,1.0,160 -1249558,1630084737,8158288,1,48,-9.0,2,2.0,1,100060.0,1001264,5.0,160 -1249559,1630084738,8158288,1,48,-9.0,2,2.0,1,100060.0,1001264,5.0,160 -1249560,1630084739,8162431,2,64,-9.0,1,1.0,1,40000.0,1025215,6.0,160 -1249561,1630084740,8158288,1,58,-9.0,1,1.0,1,31250.0,1001264,6.0,160 -1249562,1630084741,8162118,1,64,-9.0,1,1.0,1,42200.0,1025215,4.0,160 -1249563,1630084742,8162154,2,62,-9.0,1,2.0,1,51200.0,1042852,4.0,160 -1249564,1630084743,8158288,2,61,-9.0,2,2.0,1,51200.0,1001264,1.0,160 -1249565,1630084744,8158288,2,64,-9.0,1,1.0,1,30000.0,1042852,4.0,160 -1249566,1630084745,8158288,2,54,-9.0,1,1.0,1,70000.0,1009585,4.0,160 -1249567,1630084746,8162678,2,57,-9.0,1,0.0,1,10800.0,1042852,6.0,160 -1249568,1630084747,8158288,2,62,-9.0,1,1.0,1,25700.0,1009585,4.0,160 -1249569,1630084748,8161808,2,72,-9.0,1,1.0,1,126900.0,1009585,6.0,160 -1249570,1630084749,8158288,2,71,-9.0,1,1.0,1,115600.0,1073094,6.0,160 -1249571,1630084750,8158288,1,69,-9.0,1,1.0,1,121800.0,1025215,6.0,160 -1249572,1630084751,8163258,1,68,-9.0,1,1.0,1,104000.0,1009585,4.0,160 -1249573,1630084752,8162431,1,68,-9.0,1,1.0,1,104000.0,1009585,4.0,160 -1249574,1630084753,8158288,1,69,-9.0,1,1.0,1,121800.0,1025215,6.0,160 -1249575,1630084754,8158288,4,74,1.0,3,2.0,1,117900.0,1009585,1.0,160 -1249576,1630084755,8162431,2,75,-9.0,2,0.0,1,185800.0,1009585,3.0,160 -1249577,1630084756,8158288,2,93,-9.0,2,1.0,1,125100.0,1025215,3.0,160 -1249578,1630084757,8158288,2,93,-9.0,2,1.0,1,125100.0,1025215,3.0,160 -1249579,1630084758,8158288,2,78,-9.0,2,3.0,1,112000.0,1001264,1.0,160 -1249580,1630084759,8158288,1,68,-9.0,2,2.0,1,128300.0,1009585,1.0,160 -1249581,1630084760,8158288,1,68,-9.0,2,2.0,1,128300.0,1009585,1.0,160 -1249582,1630084761,8158288,1,66,-9.0,2,6.0,1,455000.0,1001264,1.0,160 -1249583,1630084762,8162154,2,94,-9.0,1,0.0,1,43700.0,1073094,6.0,160 -1249584,1630084763,8162783,2,66,-9.0,1,1.0,1,40150.0,1001264,4.0,160 -1249585,1630084764,8162767,2,80,-9.0,1,1.0,1,30000.0,1009585,4.0,160 -1249586,1630084765,8158288,2,85,-9.0,1,1.0,1,35100.0,1001264,6.0,160 -1249587,1630084766,8158288,1,77,-9.0,1,1.0,1,57900.0,1073094,6.0,160 -1249588,1630084767,8158288,1,77,-9.0,1,1.0,1,57900.0,1073094,6.0,160 -1249589,1630084768,8158288,1,82,-9.0,1,1.0,1,32000.0,1001264,6.0,160 -1249590,1630084769,8158288,1,72,-9.0,1,1.0,1,35000.0,1001264,6.0,160 -1249591,1630084770,8162154,2,79,-9.0,2,1.0,1,40160.0,1001264,5.0,160 -1249592,1630084771,8162783,2,88,-9.0,2,1.0,1,56650.0,1025215,3.0,160 -1249593,1630084772,8158288,1,85,-9.0,2,1.0,1,37600.0,1025215,2.0,160 -1249594,1630084773,8163624,2,69,-9.0,2,2.0,1,58200.0,1042852,1.0,160 -1249595,1630084774,8163624,2,71,-9.0,1,1.0,1,60000.0,1001264,6.0,160 -1249596,1630084775,8158288,1,73,-9.0,1,1.0,1,75500.0,1001264,4.0,160 -1249597,1630084776,8163258,2,80,-9.0,1,0.0,1,15600.0,1025215,6.0,160 -1249598,1630084777,8162285,2,84,-9.0,1,1.0,1,16400.0,1001264,6.0,160 -1249599,1630084778,8161540,2,75,-9.0,1,1.0,1,6600.0,1073094,6.0,160 -1249600,1630084779,8158288,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,160 -1249601,1630084780,8158288,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,160 -1249602,1630084781,8158288,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,160 -1249603,1630084782,8158288,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,160 -1249604,1630084783,8158288,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,160 -1249605,1630084784,8158288,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,160 -1249606,1630084785,8158288,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,160 -1249607,1630084786,8161292,1,43,2.0,4,3.0,1,108800.0,1025215,1.0,160 -1249608,1630084787,8158288,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,160 -1249609,1630084788,8158288,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,160 -1249610,1630084789,8158288,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,160 -1249611,1630084790,8158288,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,160 -1249612,1630084791,8158288,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,160 -1249613,1630084792,8158288,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,160 -1249614,1630084793,8158288,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,160 -1249615,1630084794,8158288,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,160 -1249616,1630084795,8158288,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,160 -1249617,1630084796,8158288,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,160 -1249618,1630084797,8158288,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,160 -1249619,1630084798,8160766,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,160 -1249620,1630084799,8158288,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,160 -1249621,1630084800,8158288,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,160 -1249622,1630084801,8158288,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,160 -1249623,1630084802,8158288,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,160 -1249624,1630084803,8158288,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,160 -1249625,1630084804,8158288,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,160 -1249626,1630084805,8158288,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,160 -1249627,1630084806,8158288,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,160 -1249628,1630084807,8158288,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,160 -1249629,1630084808,8158288,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,160 -1249630,1630084809,8158288,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,160 -1249631,1630084810,8158288,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,160 -1249632,1630084811,8158288,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,160 -1249633,1630084812,8158288,1,31,-9.0,2,2.0,1,404000.0,1025215,7.0,160 -1249634,1630084813,8158288,1,31,-9.0,2,2.0,1,404000.0,1025215,7.0,160 -1249635,1630084814,8158288,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,160 -1249636,1630084815,8158288,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,160 -1249637,1630084816,8162079,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,160 -1249638,1630084817,8161815,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,160 -1249639,1630084818,8161815,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,160 -1249640,1630084819,8158288,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,160 -1249641,1630084820,8158288,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,160 -1249642,1630084821,8158288,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,160 -1249643,1630084822,8158288,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,160 -1249644,1630084823,8158288,2,28,-9.0,2,2.0,1,50000.0,1001264,3.0,160 -1249645,1630084824,8158288,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,160 -1249646,1630084825,8158288,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,160 -1249647,1630084826,8161200,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,160 -1249648,1630084827,8162079,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,160 -1249649,1630084828,8158288,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,160 -1249650,1630084829,8158288,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,160 -1249651,1630084830,8158288,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,160 -1249652,1630084831,8161347,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,160 -1249653,1630084832,8161347,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,160 -1249654,1630084833,8162053,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,160 -1249655,1630084834,8161347,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,160 -1249656,1630084835,8158288,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,160 -1249657,1630084836,8161347,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,160 -1249658,1630084837,8158288,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,160 -1249659,1630084838,8161347,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,160 -1249660,1630084839,8161347,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,160 -1249661,1630084840,8161347,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,160 -1249662,1630084841,8164864,2,34,-9.0,1,1.0,1,56000.0,1009585,4.0,160 -1249663,1630084842,8158288,2,34,-9.0,1,1.0,1,36000.0,1042852,6.0,160 -1249664,1630084843,8158288,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,160 -1249665,1630084844,8158288,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,160 -1249666,1630084845,8164864,2,34,-9.0,1,1.0,1,56000.0,1009585,4.0,160 -1249667,1630084846,8161347,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,160 -1249668,1630084847,8158288,2,32,-9.0,1,1.0,1,54000.0,1009585,6.0,160 -1249669,1630084848,8162154,2,42,-9.0,1,1.0,1,40000.0,1042852,4.0,160 -1249670,1630084849,8164864,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,160 -1249671,1630084850,8161815,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,160 -1249672,1630084851,8161030,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,160 -1249673,1630084852,8162079,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,160 -1249674,1630084853,8161347,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,160 -1249675,1630084854,8160766,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,160 -1249676,1630084855,8162079,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,160 -1249677,1630084856,8164864,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,160 -1249678,1630084857,8164864,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,160 -1249679,1630084858,8158288,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,160 -1249680,1630084859,8158288,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,160 -1249681,1630084860,8158288,2,43,1.0,2,1.0,1,40000.0,1001264,3.0,160 -1249682,1630084861,8158288,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,160 -1249683,1630084862,8158288,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,160 -1249684,1630084863,8161815,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,160 -1249685,1630084864,8161815,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,160 -1249686,1630084865,8158288,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,160 -1249687,1630084866,8158288,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,160 -1249688,1630084867,8158288,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,160 -1249689,1630084868,8161200,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,160 -1249690,1630084869,8158288,2,41,-9.0,1,1.0,1,80000.0,1073094,6.0,160 -1249691,1630084870,8158288,2,41,-9.0,1,1.0,1,80000.0,1073094,6.0,160 -1249692,1630084871,8158288,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,160 -1249693,1630084872,8161347,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,160 -1249694,1630084873,8158288,1,28,-9.0,1,1.0,1,62000.0,1009585,6.0,160 -1249695,1630084874,8158288,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,160 -1249696,1630084875,8158288,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,160 -1249697,1630084876,8161347,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,160 -1249698,1630084877,8158288,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,160 -1249699,1630084878,8161347,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,160 -1249700,1630084879,8161347,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,160 -1249701,1630084880,8161347,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,160 -1249702,1630084881,8160766,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,160 -1249703,1630084882,8161200,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,160 -1249704,1630084883,8162079,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,160 -1249705,1630084884,8158288,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,160 -1249706,1630084885,8161347,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,160 -1249707,1630084886,8161347,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,160 -1249708,1630084887,8161347,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,160 -1249709,1630084888,8161347,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,160 -1249710,1630084889,8164864,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,160 -1249711,1630084890,8164864,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,160 -1249712,1630084891,8161347,2,42,-9.0,1,0.0,1,4000.0,1073094,4.0,160 -1249713,1630084892,8161347,2,41,-9.0,1,0.0,1,7350.0,1001264,4.0,160 -1249714,1630084893,8164864,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,160 -1249715,1630084894,8164864,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,160 -1249716,1630084895,8164864,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,160 -1249717,1630084896,8158288,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,160 -1249718,1630084897,8164864,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,160 -1249719,1630084898,8164864,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,160 -1249720,1630084899,8161425,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,160 -1249721,1630084900,8161347,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,160 -1249722,1630084901,8160766,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,160 -1249723,1630084902,8161815,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,160 -1249724,1630084903,8164116,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,160 -1249725,1630084904,8158288,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,160 -1249726,1630084905,8162053,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,160 -1249727,1630084906,8164864,1,26,-9.0,1,1.0,1,0.0,1073094,6.0,160 -1249728,1630084907,8161200,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,160 -1249729,1630084908,8161815,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,160 -1249730,1630084909,8162486,2,29,2.0,3,0.0,1,8100.0,1042852,3.0,160 -1249731,1630084910,8161347,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,160 -1249732,1630084911,8162079,2,36,-9.0,2,0.0,1,8100.0,1073094,7.0,160 -1249733,1630084912,8161815,2,26,1.0,2,0.0,1,0.0,1001264,3.0,160 -1249734,1630084913,8161347,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,160 -1249735,1630084914,8158288,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,160 -1249736,1630084915,8161815,2,44,1.0,2,1.0,1,14500.0,1042852,3.0,160 -1249737,1630084916,8161347,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,160 -1249738,1630084917,8158288,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,160 -1249739,1630084918,8162079,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,160 -1249740,1630084919,8161347,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,160 -1249741,1630084920,8161347,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,160 -1249742,1630084921,8158288,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,160 -1249743,1630084922,8158288,2,53,-9.0,3,1.0,1,105400.0,1042852,2.0,160 -1249744,1630084923,8158288,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,160 -1249745,1630084924,8158288,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,160 -1249746,1630084925,8161347,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,160 -1249747,1630084926,8158288,1,59,-9.0,1,1.0,1,318000.0,1073094,4.0,160 -1249748,1630084927,8158288,1,59,-9.0,1,1.0,1,318000.0,1073094,4.0,160 -1249749,1630084928,8158288,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,160 -1249750,1630084929,8158288,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,160 -1249751,1630084930,8162053,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,160 -1249752,1630084931,8164864,2,57,-9.0,1,0.0,1,38400.0,1073094,4.0,160 -1249753,1630084932,8161347,2,64,-9.0,1,1.0,1,32700.0,1042852,4.0,160 -1249754,1630084933,8158288,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,160 -1249755,1630084934,8158288,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,160 -1249756,1630084935,8158288,2,58,-9.0,1,0.0,1,45000.0,1009585,6.0,160 -1249757,1630084936,8163704,2,55,-9.0,1,1.0,1,49900.0,1042852,6.0,160 -1249758,1630084937,8158288,2,59,-9.0,1,1.0,1,50020.0,1001264,6.0,160 -1249759,1630084938,8161347,2,59,-9.0,1,1.0,1,32000.0,1042852,4.0,160 -1249760,1630084939,8161347,2,50,-9.0,1,1.0,1,38000.0,1073094,6.0,160 -1249761,1630084940,8158288,1,60,-9.0,1,1.0,1,38000.0,1025215,6.0,160 -1249762,1630084941,8158288,2,61,-9.0,1,1.0,1,60000.0,1042852,6.0,160 -1249763,1630084942,8158288,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,160 -1249764,1630084943,8161200,2,56,-9.0,1,0.0,1,0.0,1001264,4.0,160 -1249765,1630084944,8160766,2,60,-9.0,1,0.0,1,13300.0,1001264,6.0,160 -1249766,1630084945,8158288,2,45,-9.0,1,0.0,1,0.0,1009585,6.0,160 -1249767,1630084946,8161347,2,62,-9.0,1,0.0,1,8100.0,1073094,6.0,160 -1249768,1630084947,8161347,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,160 -1249769,1630084948,8161628,2,64,-9.0,1,0.0,1,9200.0,1009585,4.0,160 -1249770,1630084949,8158288,2,51,-9.0,1,0.0,1,10600.0,1025215,6.0,160 -1249771,1630084950,8158288,2,48,-9.0,1,0.0,1,12200.0,1009585,6.0,160 -1249772,1630084951,8161347,2,51,-9.0,1,0.0,1,8400.0,1042852,6.0,160 -1249773,1630084952,8158288,2,54,-9.0,1,0.0,1,7200.0,1042852,6.0,160 -1249774,1630084953,8158288,2,51,-9.0,1,0.0,1,10600.0,1025215,6.0,160 -1249775,1630084954,8161347,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,160 -1249776,1630084955,8158288,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,160 -1249777,1630084956,8161347,2,61,-9.0,1,0.0,1,28000.0,1009585,6.0,160 -1249778,1630084957,8164864,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,160 -1249779,1630084958,8164864,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,160 -1249780,1630084959,8161347,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,160 -1249781,1630084960,8161347,2,58,-9.0,1,0.0,1,16200.0,1025215,4.0,160 -1249782,1630084961,8158288,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,160 -1249783,1630084962,8158288,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,160 -1249784,1630084963,8160766,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,160 -1249785,1630084964,8161347,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,160 -1249786,1630084965,8158288,2,62,-9.0,1,1.0,1,0.0,1042852,4.0,160 -1249787,1630084966,8164864,2,60,-9.0,1,1.0,1,9100.0,1025215,4.0,160 -1249788,1630084967,8161347,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,160 -1249789,1630084968,8161347,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,160 -1249790,1630084969,8158288,2,62,-9.0,2,0.0,1,16800.0,1042852,1.0,160 -1249791,1630084970,8161808,2,46,-9.0,2,1.0,1,15000.0,1042852,3.0,160 -1249792,1630084971,8161347,2,61,-9.0,1,0.0,1,5600.0,1001264,4.0,160 -1249793,1630084972,8162154,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,160 -1249794,1630084973,8158288,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,160 -1249795,1630084974,8158288,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,160 -1249796,1630084975,8158288,2,87,-9.0,1,0.0,1,51000.0,1009585,6.0,160 -1249797,1630084976,8161815,2,68,-9.0,1,1.0,1,34800.0,1073094,6.0,160 -1249798,1630084977,8164864,2,78,-9.0,1,0.0,1,9200.0,1001264,6.0,160 -1249799,1630084978,8161347,2,69,-9.0,1,0.0,1,7000.0,1009585,6.0,160 -1249800,1630084979,8161347,2,87,-9.0,1,0.0,1,20400.0,1025215,6.0,160 -1249801,1630084980,8161347,2,86,-9.0,1,0.0,1,9400.0,1009585,6.0,160 -1249802,1630084981,8162079,2,76,-9.0,1,1.0,1,23000.0,1042852,6.0,160 -1249803,1630084982,8162079,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,160 -1249804,1630084983,8164864,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,160 -1249805,1630084984,8164864,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,160 -1249806,1630084985,8164864,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,160 -1249807,1630084986,8160766,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,160 -1249808,1630084987,8161347,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,160 -1249809,1630084988,8161347,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,160 -1249810,1630084989,8161347,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,160 -1249811,1630084990,8158288,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,160 -1249812,1630084991,8158288,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,160 -1249813,1630084992,8160766,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,160 -1249814,1630084993,8158288,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,160 -1249815,1630084994,8158288,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,160 -1249816,1630084995,8163704,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,160 -1249817,1630084996,8158288,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,160 -1249818,1630084997,8161347,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,160 -1249819,1630084998,8158288,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,160 -1249820,1630084999,8158288,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,160 -1249821,1630085000,8158288,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,160 -1249822,1630085001,8158288,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,160 -1249823,1630085002,8158288,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,160 -1249824,1630085003,8164864,2,23,-9.0,1,0.0,1,4000.0,1073094,6.0,160 -1249825,1630085004,8164864,2,23,-9.0,1,0.0,1,4000.0,1073094,6.0,160 -1249826,1630085005,8164864,2,23,-9.0,1,0.0,1,4000.0,1073094,6.0,160 -1249827,1630085006,8161347,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,160 -1249828,1630085007,8161347,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,160 -1249829,1630085008,8161347,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,160 -1249830,1630085009,8161347,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,160 -1249831,1630085010,8161347,2,23,-9.0,1,1.0,1,1920.0,1073094,6.0,160 -1249832,1630085011,8161347,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,160 -1249833,1630085012,8164232,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,160 -1249834,1630085013,8161347,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,160 -1249835,1630085014,8158288,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,160 -1249836,1630085015,8161347,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,160 -1249837,1630085016,8158288,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,160 -1249838,1630085017,8158288,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,160 -1249839,1630085018,8164232,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,160 -1249840,1630085019,8161347,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,160 -1249841,1630085020,8158288,2,24,1.0,2,0.0,1,3000.0,1042852,3.0,160 -1249842,1630085021,8161347,2,21,1.0,2,0.0,1,1300.0,1025215,3.0,160 -1249843,1630085022,8158288,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,160 -1249844,1630085023,8164527,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,160 -1249845,1630085024,8164864,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,160 -1249846,1630085025,8158288,2,69,-9.0,2,2.0,1,43700.0,1009585,1.0,160 -1249847,1630085026,8158288,1,59,-9.0,1,1.0,1,30700.0,1025215,6.0,160 -1249848,1630085027,8162486,1,58,-9.0,1,1.0,1,65000.0,1042852,6.0,160 -1249849,1630085028,8161347,2,60,-9.0,1,1.0,1,164000.0,1009585,4.0,160 -1249850,1630085029,8158288,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,160 -1249851,1630085030,8158288,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,160 -1249852,1630085031,8158288,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,160 -1249853,1630085032,8158288,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,160 -1249854,1630085033,8158288,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,160 -1249855,1630085034,8161628,2,25,1.0,2,1.0,1,45000.0,1073094,3.0,160 -1249856,1630085035,8161347,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,160 -1249857,1630085036,8158288,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,160 -1249858,1630085037,8158288,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,160 -1249859,1630085038,8161347,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,160 -1249860,1630085039,8158288,1,59,-9.0,1,1.0,1,160000.0,1042852,4.0,160 -1249861,1630085040,8164232,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,160 -1249862,1630085041,8158288,1,74,-9.0,1,1.0,1,14500.0,1025215,6.0,160 -1249863,1630085042,8161347,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,160 -1249864,1630085043,8161347,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,160 -1249865,1630085044,8158288,1,62,-9.0,2,1.0,1,125200.0,1042852,5.0,160 -1249866,1630085045,8161347,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,160 -1249867,1630085046,8161815,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,160 -1249868,1630085047,8161815,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,160 -1249869,1630085048,8158288,2,71,-9.0,2,3.0,1,105830.0,1042852,1.0,160 -1249870,1630085049,8158288,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,160 -1249871,1630085050,8161628,2,69,-9.0,2,0.0,1,183100.0,1042852,1.0,160 -1249872,1630085051,8161347,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,160 -1249873,1630085052,8161200,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,160 -1249874,1630085053,8164864,1,69,-9.0,1,0.0,1,73900.0,1042852,6.0,160 -1249875,1630085054,8162848,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,160 -1249876,1630085055,8162848,2,63,-9.0,1,1.0,1,84800.0,1042852,6.0,160 -1249877,1630085056,8162053,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,160 -1249878,1630085057,8158288,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,160 -1249879,1630085058,8162678,2,65,-9.0,4,1.0,1,107500.0,1009585,1.0,160 -1249880,1630085059,8158288,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,160 -1249881,1630085060,8158288,2,47,1.0,2,1.0,1,104500.0,1001264,3.0,160 -1249882,1630085061,8161347,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,160 -1249883,1630085062,8158288,2,78,-9.0,2,3.0,1,213200.0,1001264,1.0,160 -1249884,1630085063,8160766,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,160 -1249885,1630085064,8161347,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,160 -1249886,1630085065,8160766,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,160 -1249887,1630085066,8161808,2,55,-9.0,1,1.0,1,52000.0,1042852,6.0,160 -1249888,1630085067,8158288,2,49,-9.0,2,2.0,1,152000.0,1042852,1.0,160 -1249889,1630085068,8164116,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,160 -1249890,1630085069,8161292,2,79,-9.0,2,0.0,1,95510.0,1042852,5.0,160 -1249891,1630085070,8158288,2,26,2.0,3,1.0,1,9000.0,1042852,3.0,160 -1249892,1630085071,8161628,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,160 -1249893,1630085072,8162053,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,160 -1249894,1630085073,8158288,1,63,-9.0,2,2.0,1,76500.0,1009585,1.0,160 -1249895,1630085074,8162118,2,61,-9.0,2,2.0,1,64700.0,1073094,3.0,160 -1249896,1630085075,8158288,2,37,1.0,2,1.0,1,7900.0,1025215,3.0,160 -1249897,1630085076,8161292,2,60,-9.0,2,2.0,1,247000.0,1025215,2.0,160 -1249898,1630085077,8158288,1,69,-9.0,1,1.0,1,121800.0,1025215,6.0,160 -1249899,1630085078,8158288,1,64,-9.0,2,2.0,1,389100.0,1001264,1.0,160 -1249900,1630085079,8161347,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,160 -1249901,1630085080,8161200,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,160 -1249902,1630085081,8161808,2,60,-9.0,1,2.0,1,36000.0,1073094,6.0,160 -1249903,1630085082,8162486,2,73,-9.0,1,2.0,1,39600.0,1025215,6.0,160 -1249904,1630085083,8158288,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,160 -1249905,1630085084,8164422,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,160 -1249906,1630085085,8158288,2,60,-9.0,1,0.0,1,260400.0,1001264,6.0,160 -1249907,1630085086,8158288,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,160 -1249908,1630085087,8163871,2,58,-9.0,2,1.0,1,0.0,1001264,3.0,160 -1249909,1630085088,8158288,2,26,-9.0,2,1.0,1,73000.0,1001264,1.0,160 -1249910,1630085089,8162767,1,54,-9.0,1,1.0,1,8000.0,1042852,4.0,160 -1249911,1630085090,8158288,2,52,-9.0,3,3.0,1,123000.0,1025215,2.0,160 -1249912,1630085091,8158288,1,68,-9.0,1,2.0,1,164200.0,1001264,6.0,160 -1249913,1630085092,8158288,2,43,1.0,2,1.0,1,40000.0,1001264,3.0,160 -1249914,1630085093,8161815,2,41,-9.0,2,2.0,1,95000.0,1025215,1.0,160 -1249915,1630085094,8162154,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,160 -1249916,1630085095,8158288,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,160 -1249917,1630085096,8158288,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,160 -1249918,1630085097,8158288,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,160 -1249919,1630085098,8158288,2,53,-9.0,2,1.0,1,65000.0,1042852,1.0,160 -1249920,1630085099,8158288,2,58,-9.0,1,0.0,1,45000.0,1009585,6.0,160 -1249921,1630085100,8161347,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,160 -1249922,1630085101,8161347,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,160 -1249923,1630085102,8162118,2,53,-9.0,1,0.0,1,9600.0,1001264,4.0,160 -1249924,1630085103,8158288,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,160 -1249925,1630085104,8158288,1,59,-9.0,2,1.0,1,372000.0,1073094,1.0,160 -1249926,1630085105,8162053,2,73,-9.0,1,1.0,1,128300.0,1001264,6.0,160 -1249927,1630085106,8161347,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,160 -1249928,1630085107,8158288,2,69,-9.0,2,1.0,1,137000.0,1009585,1.0,160 -1249929,1630085108,8161347,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,160 -1249930,1630085109,8158288,2,61,-9.0,2,3.0,1,46000.0,1001264,1.0,160 -1249931,1630085110,8161347,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,160 -1249932,1630085111,8158288,1,48,-9.0,2,2.0,1,62600.0,1042852,7.0,160 -1249933,1630085112,8158288,3,59,-9.0,1,1.0,1,131000.0,1042852,4.0,160 -1249934,1630085113,8162848,2,75,-9.0,2,0.0,1,185800.0,1009585,3.0,160 -1249935,1630085114,8158288,1,62,-9.0,1,0.0,1,6850.0,1001264,6.0,160 -1249936,1630085115,8162285,2,64,-9.0,2,1.0,1,102000.0,1042852,1.0,160 -1249937,1630085116,8164494,1,66,-9.0,1,4.0,1,63400.0,1042852,6.0,160 -1249938,1630085117,8158288,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,160 -1249939,1630085118,8158288,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,160 -1249940,1630085119,8158288,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,160 -1249941,1630085120,8158288,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,160 -1249942,1630085121,8164603,2,67,-9.0,1,2.0,1,60600.0,1025215,4.0,160 -1249943,1630085122,8158288,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,160 -1249944,1630085123,8158288,2,43,-9.0,2,1.0,1,50000.0,1009585,5.0,160 -1249945,1630085124,8161347,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,160 -1249946,1630085125,8162154,2,57,-9.0,1,2.0,1,67700.0,1025215,4.0,160 -1249947,1630085126,8158288,1,66,-9.0,1,1.0,1,49000.0,1025215,4.0,160 -1249948,1630085127,8162154,2,76,-9.0,2,0.0,1,41200.0,1009585,3.0,160 -1249949,1630085128,8158288,1,77,-9.0,2,1.0,1,73070.0,1073094,1.0,160 -1249950,1630085129,8161347,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,160 -1249951,1630085130,8162285,2,66,-9.0,2,1.0,1,60400.0,1001264,1.0,160 -1249952,1630085131,8158288,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,160 -1249953,1630085132,8163704,2,63,-9.0,2,2.0,1,39200.0,1073094,1.0,160 -1249954,1630085133,8161347,1,60,-9.0,1,1.0,1,640.0,1042852,6.0,160 -1249955,1630085134,8162767,2,63,-9.0,1,1.0,1,38000.0,1042852,4.0,160 -1249956,1630085135,8162079,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,160 -1249957,1630085136,8158288,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,160 -1249958,1630085137,8161347,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,160 -1249959,1630085138,8158288,2,68,-9.0,2,3.0,1,99900.0,1009585,1.0,160 -1249960,1630085139,8158288,2,22,2.0,3,0.0,1,4800.0,1009585,3.0,160 -1249961,1630085140,8158288,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,160 -1249962,1630085141,8158288,2,63,-9.0,2,2.0,1,70000.0,1009585,1.0,160 -1249963,1630085142,8161347,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,160 -1249964,1630085143,8163871,2,63,-9.0,1,0.0,1,32400.0,1009585,6.0,160 -1249965,1630085144,8158288,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,160 -1249966,1630085145,8158288,1,70,-9.0,1,1.0,1,64000.0,1001264,4.0,160 -1249967,1630085146,8164603,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,160 -1249968,1630085147,8158288,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,160 -1249969,1630085148,8158288,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,160 -1249970,1630085149,8158288,2,29,1.0,2,1.0,1,15000.0,1025215,3.0,160 -1249971,1630085150,8158288,2,22,1.0,2,1.0,1,34000.0,1025215,3.0,160 -1249972,1630085151,8164494,2,58,-9.0,2,2.0,1,57800.0,1009585,7.0,160 -1249973,1630085152,8161628,2,38,2.0,4,1.0,1,131004.0,1001264,3.0,160 -1249974,1630085153,8158288,2,71,-9.0,2,0.0,1,8500.0,1025215,3.0,160 -1249975,1630085154,8162678,2,80,-9.0,1,1.0,1,30000.0,1009585,4.0,160 -1249976,1630085155,8161940,2,38,3.0,4,0.0,1,15000.0,1001264,3.0,160 -1249977,1630085156,8158288,2,47,-9.0,1,1.0,1,106000.0,1001264,6.0,160 -1249978,1630085157,8161200,2,57,-9.0,2,0.0,1,49700.0,1001264,1.0,160 -1249979,1630085158,8161200,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,160 -1249980,1630085159,8162079,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,160 -1249981,1630085160,8158288,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,160 -1249982,1630085161,8164864,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,160 -1249983,1630085162,8158288,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,160 -1249984,1630085163,8158288,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,160 -1249985,1630085164,8163258,2,66,-9.0,2,0.0,1,0.0,1073094,3.0,160 -1249986,1630085165,8158288,1,45,-9.0,1,2.0,1,76500.0,1009585,6.0,160 -1249987,1630085166,8158288,2,64,-9.0,1,2.0,1,36400.0,1001264,6.0,160 -1249988,1630085167,8158288,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,160 -1249989,1630085168,8162486,2,46,-9.0,1,2.0,1,135800.0,1025215,6.0,160 -1249990,1630085169,8161815,2,57,-9.0,2,1.0,1,33700.0,1009585,3.0,160 -1249991,1630085170,8161347,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,160 -1249992,1630085171,8158288,2,56,-9.0,2,1.0,1,102000.0,1042852,1.0,160 -1249993,1630085172,8163624,2,94,-9.0,1,0.0,1,9000.0,1042852,6.0,160 -1249994,1630085173,8164527,1,83,-9.0,2,2.0,1,36840.0,1001264,1.0,160 -1249995,1630085174,8161347,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,160 -1249996,1630085175,8158288,2,71,-9.0,2,2.0,1,43600.0,1025215,1.0,160 -1249997,1630085176,8161540,1,56,-9.0,2,2.0,1,67100.0,1009585,1.0,160 -1249998,1630085177,8158288,2,56,-9.0,2,2.0,1,37800.0,1025215,3.0,160 -1249999,1630085178,8158288,1,25,-9.0,2,2.0,1,48000.0,1042852,7.0,160 -1250000,1630085179,8161347,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,160 -1250001,1630085180,8158288,1,68,-9.0,2,1.0,1,127800.0,1009585,1.0,160 -1250002,1630085181,8158288,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,160 -1250003,1630085182,8161628,2,41,-9.0,2,1.0,1,35000.0,1073094,3.0,160 -1250004,1630085183,8161347,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,160 -1250005,1630085184,8162767,2,54,-9.0,1,2.0,1,60000.0,1042852,4.0,160 -1250006,1630085185,8160766,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,160 -1250007,1630085186,8158288,1,86,-9.0,2,1.0,1,51000.0,1009585,1.0,160 -1250008,1630085187,8158288,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,160 -1250009,1630085188,8162118,1,81,-9.0,2,1.0,1,32600.0,1009585,1.0,160 -1250010,1630085189,8158288,2,28,-9.0,2,2.0,1,50000.0,1001264,3.0,160 -1250011,1630085190,8163258,1,58,-9.0,1,3.0,1,36000.0,1025215,4.0,160 -1250012,1630085191,8158288,2,32,1.0,2,0.0,1,40400.0,1042852,3.0,160 -1250013,1630085192,8161200,4,31,-9.0,4,2.0,1,79100.0,1042852,1.0,160 -1250014,1630085193,8158288,2,84,-9.0,2,1.0,1,30600.0,1073094,1.0,160 -1250015,1630085194,8158288,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,160 -1250016,1630085195,8162783,1,86,-9.0,2,3.0,1,59500.0,1042852,1.0,160 -1250017,1630085196,8164422,2,63,-9.0,1,1.0,1,920.0,1001264,6.0,160 -1250018,1630085197,8164864,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,160 -1250019,1630085198,8162010,2,54,-9.0,1,1.0,1,13700.0,1042852,6.0,161 -1250020,1630085199,8158311,1,33,-9.0,5,5.0,1,170670.0,1001264,7.0,161 -1250021,1630085200,8161508,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,161 -1250022,1630085201,8161992,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,161 -1250023,1630085202,8156690,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,161 -1250024,1630085203,8164297,1,31,-9.0,2,2.0,1,404000.0,1025215,7.0,161 -1250025,1630085204,8156690,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,161 -1250026,1630085205,8160345,2,28,-9.0,2,2.0,1,50000.0,1001264,3.0,161 -1250027,1630085206,8160345,2,29,-9.0,1,0.0,1,37000.0,1042852,4.0,161 -1250028,1630085207,8160345,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,161 -1250029,1630085208,8160345,2,32,-9.0,1,1.0,1,48000.0,1025215,6.0,161 -1250030,1630085209,8158538,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,161 -1250031,1630085210,8160345,2,32,-9.0,1,1.0,1,48000.0,1025215,6.0,161 -1250032,1630085211,8156690,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,161 -1250033,1630085212,8163513,2,35,-9.0,1,1.0,1,35000.0,1073094,4.0,161 -1250034,1630085213,8158359,2,44,-9.0,1,1.0,1,54000.0,1025215,4.0,161 -1250035,1630085214,8160345,2,29,-9.0,1,1.0,1,50000.0,1001264,6.0,161 -1250036,1630085215,8160345,2,32,-9.0,1,1.0,1,48000.0,1025215,6.0,161 -1250037,1630085216,8160345,2,25,-9.0,1,1.0,1,34000.0,1025215,6.0,161 -1250038,1630085217,8157062,2,26,-9.0,1,1.0,1,40000.0,1042852,6.0,161 -1250039,1630085218,8156690,2,32,-9.0,1,1.0,1,54000.0,1009585,6.0,161 -1250040,1630085219,8156690,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,161 -1250041,1630085220,8156690,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,161 -1250042,1630085221,8160345,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,161 -1250043,1630085222,8160345,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,161 -1250044,1630085223,8161992,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,161 -1250045,1630085224,8158359,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,161 -1250046,1630085225,8166473,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,161 -1250047,1630085226,8161550,2,36,-9.0,1,2.0,1,33000.0,1001264,4.0,161 -1250048,1630085227,8156331,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,161 -1250049,1630085228,8163882,2,27,1.0,3,3.0,1,59000.0,1025215,3.0,161 -1250050,1630085229,8161507,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,161 -1250051,1630085230,8161028,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,161 -1250052,1630085231,8160460,4,29,-9.0,2,5.0,1,36800.0,1001264,1.0,161 -1250053,1630085232,8160345,2,29,-9.0,2,1.0,1,43100.0,1025215,2.0,161 -1250054,1630085233,8161992,2,28,-9.0,2,2.0,1,40000.0,1009585,7.0,161 -1250055,1630085234,8157062,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,161 -1250056,1630085235,8161550,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,161 -1250057,1630085236,8165620,1,26,-9.0,2,2.0,1,41000.0,1001264,5.0,161 -1250058,1630085237,8165605,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,161 -1250059,1630085238,8164297,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,161 -1250060,1630085239,8160345,2,41,-9.0,1,1.0,1,62000.0,1073094,6.0,161 -1250061,1630085240,8156690,2,41,-9.0,1,1.0,1,80000.0,1073094,6.0,161 -1250062,1630085241,8165130,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,161 -1250063,1630085242,8164297,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,161 -1250064,1630085243,8156690,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,161 -1250065,1630085244,8158359,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,161 -1250066,1630085245,8165130,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,161 -1250067,1630085246,8163051,2,42,2.0,5,2.0,1,63100.0,1009585,1.0,161 -1250068,1630085247,8156331,2,42,2.0,5,2.0,1,63100.0,1009585,1.0,161 -1250069,1630085248,8156690,2,38,1.0,3,2.0,1,80000.0,1009585,1.0,161 -1250070,1630085249,8162153,2,26,-9.0,2,1.0,1,73000.0,1001264,1.0,161 -1250071,1630085250,8162153,2,26,-9.0,2,1.0,1,73000.0,1001264,1.0,161 -1250072,1630085251,8161508,2,41,-9.0,2,2.0,1,95000.0,1025215,1.0,161 -1250073,1630085252,8163654,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,161 -1250074,1630085253,8165620,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,161 -1250075,1630085254,8161992,2,41,-9.0,2,2.0,1,95000.0,1025215,1.0,161 -1250076,1630085255,8165620,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,161 -1250077,1630085256,8163701,1,34,-9.0,2,2.0,1,70000.0,1042852,7.0,161 -1250078,1630085257,8160345,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,161 -1250079,1630085258,8164220,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,161 -1250080,1630085259,8159663,2,34,4.0,5,0.0,1,10000.0,1042852,3.0,161 -1250081,1630085260,8164450,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,161 -1250082,1630085261,8166894,2,34,4.0,5,1.0,1,0.0,1042852,3.0,161 -1250083,1630085262,8157673,2,34,4.0,5,1.0,1,0.0,1042852,3.0,161 -1250084,1630085263,8156603,2,34,4.0,5,1.0,1,0.0,1042852,3.0,161 -1250085,1630085264,8160135,2,34,4.0,5,1.0,1,0.0,1042852,3.0,161 -1250086,1630085265,8158247,2,33,4.0,5,2.0,1,10100.0,1001264,3.0,161 -1250087,1630085266,8163513,2,33,4.0,5,2.0,1,10100.0,1001264,3.0,161 -1250088,1630085267,8164220,2,37,2.0,4,1.0,1,7800.0,1009585,1.0,161 -1250089,1630085268,8159385,2,42,-9.0,4,3.0,1,0.0,1009585,1.0,161 -1250090,1630085269,8157511,2,42,-9.0,4,3.0,1,0.0,1009585,1.0,161 -1250091,1630085270,8157511,2,42,-9.0,4,3.0,1,0.0,1009585,1.0,161 -1250092,1630085271,8157230,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,161 -1250093,1630085272,8160345,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,161 -1250094,1630085273,8157062,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,161 -1250095,1630085274,8156690,2,43,-9.0,1,0.0,1,8700.0,1009585,6.0,161 -1250096,1630085275,8156690,2,43,-9.0,1,0.0,1,8700.0,1009585,6.0,161 -1250097,1630085276,8160345,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,161 -1250098,1630085277,8160345,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,161 -1250099,1630085278,8163863,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,161 -1250100,1630085279,8159569,2,44,-9.0,1,0.0,1,9350.0,1025215,6.0,161 -1250101,1630085280,8156690,2,42,-9.0,1,0.0,1,4000.0,1073094,4.0,161 -1250102,1630085281,8158359,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,161 -1250103,1630085282,8156690,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,161 -1250104,1630085283,8161550,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,161 -1250105,1630085284,8160345,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,161 -1250106,1630085285,8163804,2,27,-9.0,1,0.0,1,1600.0,1001264,6.0,161 -1250107,1630085286,8159385,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,161 -1250108,1630085287,8157041,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,161 -1250109,1630085288,8164450,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,161 -1250110,1630085289,8161508,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,161 -1250111,1630085290,8160955,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,161 -1250112,1630085291,8158359,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,161 -1250113,1630085292,8161508,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,161 -1250114,1630085293,8162444,2,42,-9.0,1,1.0,1,5000.0,1042852,6.0,161 -1250115,1630085294,8160843,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,161 -1250116,1630085295,8166126,2,40,-9.0,1,1.0,1,0.0,1001264,4.0,161 -1250117,1630085296,8165620,2,41,-9.0,1,1.0,1,8900.0,1009585,6.0,161 -1250118,1630085297,8156690,2,42,-9.0,1,1.0,1,0.0,1073094,4.0,161 -1250119,1630085298,8165130,2,41,-9.0,1,1.0,1,8900.0,1009585,6.0,161 -1250120,1630085299,8159351,2,40,-9.0,1,1.0,1,12000.0,1001264,6.0,161 -1250121,1630085300,8162001,2,42,-9.0,1,1.0,1,5000.0,1042852,6.0,161 -1250122,1630085301,8161992,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,161 -1250123,1630085302,8158300,2,40,-9.0,1,1.0,1,12000.0,1001264,6.0,161 -1250124,1630085303,8161992,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,161 -1250125,1630085304,8166894,2,44,-9.0,1,1.0,1,15300.0,1009585,6.0,161 -1250126,1630085305,8157745,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,161 -1250127,1630085306,8161972,2,42,-9.0,1,1.0,1,5000.0,1042852,6.0,161 -1250128,1630085307,8160345,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,161 -1250129,1630085308,8162692,2,42,-9.0,1,1.0,1,5000.0,1042852,6.0,161 -1250130,1630085309,8160345,2,42,-9.0,1,1.0,1,0.0,1073094,4.0,161 -1250131,1630085310,8158873,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,161 -1250132,1630085311,8160345,2,30,-9.0,1,1.0,1,10400.0,1073094,4.0,161 -1250133,1630085312,8160345,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,161 -1250134,1630085313,8160843,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,161 -1250135,1630085314,8158300,2,44,-9.0,1,1.0,1,15300.0,1009585,6.0,161 -1250136,1630085315,8161508,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,161 -1250137,1630085316,8160843,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,161 -1250138,1630085317,8164693,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,161 -1250139,1630085318,8156331,2,42,-9.0,1,1.0,1,0.0,1025215,6.0,161 -1250140,1630085319,8161508,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,161 -1250141,1630085320,8161593,3,35,-9.0,1,1.0,1,3600.0,1073094,6.0,161 -1250142,1630085321,8157062,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,161 -1250143,1630085322,8162444,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,161 -1250144,1630085323,8161550,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,161 -1250145,1630085324,8162444,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,161 -1250146,1630085325,8156690,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,161 -1250147,1630085326,8163051,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,161 -1250148,1630085327,8156331,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,161 -1250149,1630085328,8164003,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,161 -1250150,1630085329,8165403,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,161 -1250151,1630085330,8162055,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,161 -1250152,1630085331,8164609,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,161 -1250153,1630085332,8165221,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,161 -1250154,1630085333,8164220,2,42,1.0,3,0.0,1,0.0,1001264,3.0,161 -1250155,1630085334,8159385,2,26,2.0,3,1.0,1,0.0,1009585,3.0,161 -1250156,1630085335,8162692,2,31,2.0,3,1.0,1,12000.0,1009585,3.0,161 -1250157,1630085336,8160460,2,31,1.0,3,1.0,1,8400.0,1073094,2.0,161 -1250158,1630085337,8162445,2,31,2.0,3,1.0,1,12000.0,1009585,3.0,161 -1250159,1630085338,8157041,2,44,1.0,3,2.0,1,7300.0,1073094,3.0,161 -1250160,1630085339,8157673,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,161 -1250161,1630085340,8157230,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,161 -1250162,1630085341,8160135,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,161 -1250163,1630085342,8159097,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,161 -1250164,1630085343,8156331,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,161 -1250165,1630085344,8159351,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,161 -1250166,1630085345,8166516,2,33,1.0,2,1.0,1,17000.0,1073094,3.0,161 -1250167,1630085346,8161508,2,44,1.0,2,1.0,1,14500.0,1042852,3.0,161 -1250168,1630085347,8163863,2,38,3.0,5,1.0,1,21600.0,1042852,1.0,161 -1250169,1630085348,8164297,2,38,3.0,5,1.0,1,21600.0,1042852,1.0,161 -1250170,1630085349,8163654,2,38,3.0,5,1.0,1,21600.0,1042852,1.0,161 -1250171,1630085350,8166144,2,33,4.0,5,1.0,1,5000.0,1001264,3.0,161 -1250172,1630085351,8162117,2,37,4.0,5,1.0,1,4000.0,1001264,3.0,161 -1250173,1630085352,8163051,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,161 -1250174,1630085353,8159430,2,44,2.0,4,1.0,1,3190.0,1001264,3.0,161 -1250175,1630085354,8159569,2,30,3.0,4,1.0,1,12800.0,1042852,3.0,161 -1250176,1630085355,8164002,2,44,2.0,4,1.0,1,7200.0,1009585,3.0,161 -1250177,1630085356,8160345,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,161 -1250178,1630085357,8156690,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,161 -1250179,1630085358,8160345,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,161 -1250180,1630085359,8160345,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,161 -1250181,1630085360,8157062,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,161 -1250182,1630085361,8160345,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,161 -1250183,1630085362,8166894,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,161 -1250184,1630085363,8160345,2,32,-9.0,1,1.0,1,22500.0,1001264,6.0,161 -1250185,1630085364,8160345,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,161 -1250186,1630085365,8160460,2,26,-9.0,1,1.0,1,13000.0,1073094,6.0,161 -1250187,1630085366,8160345,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,161 -1250188,1630085367,8156690,2,42,-9.0,1,1.0,1,24000.0,1001264,6.0,161 -1250189,1630085368,8161550,2,29,-9.0,1,1.0,1,9000.0,1009585,4.0,161 -1250190,1630085369,8156690,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,161 -1250191,1630085370,8159430,2,30,-9.0,1,1.0,1,15000.0,1009585,4.0,161 -1250192,1630085371,8158668,2,30,-9.0,1,1.0,1,15000.0,1009585,4.0,161 -1250193,1630085372,8160345,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,161 -1250194,1630085373,8160135,2,30,-9.0,1,1.0,1,15000.0,1009585,4.0,161 -1250195,1630085374,8160345,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,161 -1250196,1630085375,8160345,2,32,-9.0,1,1.0,1,22500.0,1001264,6.0,161 -1250197,1630085376,8156690,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,161 -1250198,1630085377,8156690,2,25,-9.0,1,1.0,1,29600.0,1073094,6.0,161 -1250199,1630085378,8156690,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,161 -1250200,1630085379,8156690,2,25,-9.0,1,1.0,1,29600.0,1073094,6.0,161 -1250201,1630085380,8156690,2,25,-9.0,1,1.0,1,29600.0,1073094,6.0,161 -1250202,1630085381,8156690,2,42,-9.0,1,1.0,1,24000.0,1001264,6.0,161 -1250203,1630085382,8160345,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,161 -1250204,1630085383,8156690,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,161 -1250205,1630085384,8160345,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,161 -1250206,1630085385,8156690,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,161 -1250207,1630085386,8163934,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,161 -1250208,1630085387,8164609,2,30,2.0,3,1.0,1,20600.0,1042852,3.0,161 -1250209,1630085388,8164003,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,161 -1250210,1630085389,8164003,2,25,1.0,3,1.0,1,7640.0,1042852,3.0,161 -1250211,1630085390,8156350,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,161 -1250212,1630085391,8160345,2,25,2.0,3,2.0,1,14000.0,1009585,3.0,161 -1250213,1630085392,8158311,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,161 -1250214,1630085393,8161550,2,30,-9.0,2,0.0,1,14700.0,1009585,1.0,161 -1250215,1630085394,8157062,2,32,-9.0,2,1.0,1,28600.0,1009585,1.0,161 -1250216,1630085395,8160843,2,26,-9.0,2,1.0,1,20000.0,1042852,5.0,161 -1250217,1630085396,8160843,2,26,-9.0,2,1.0,1,20000.0,1042852,5.0,161 -1250218,1630085397,8165403,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,161 -1250219,1630085398,8158247,2,29,1.0,2,1.0,1,15000.0,1025215,3.0,161 -1250220,1630085399,8161917,2,26,1.0,2,1.0,1,7500.0,1009585,3.0,161 -1250221,1630085400,8157230,2,42,-9.0,2,2.0,1,8500.0,1009585,3.0,161 -1250222,1630085401,8163513,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,161 -1250223,1630085402,8166126,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,161 -1250224,1630085403,8162117,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,161 -1250225,1630085404,8162502,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,161 -1250226,1630085405,8165221,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,161 -1250227,1630085406,8156603,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,161 -1250228,1630085407,8166175,2,44,2.0,5,1.0,1,27700.0,1025215,3.0,161 -1250229,1630085408,8158538,2,25,2.0,4,2.0,1,14900.0,1042852,3.0,161 -1250230,1630085409,8165403,2,25,2.0,4,2.0,1,14900.0,1042852,3.0,161 -1250231,1630085410,8162579,2,25,2.0,4,2.0,1,14900.0,1042852,3.0,161 -1250232,1630085411,8161550,2,31,1.0,3,1.0,1,7500.0,1009585,2.0,161 -1250233,1630085412,8164220,2,44,-9.0,2,1.0,1,18000.0,1042852,2.0,161 -1250234,1630085413,8162502,2,44,-9.0,2,1.0,1,18000.0,1042852,2.0,161 -1250235,1630085414,8165130,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,161 -1250236,1630085415,8162055,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,161 -1250237,1630085416,8160135,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,161 -1250238,1630085417,8156690,2,64,-9.0,1,1.0,1,32700.0,1042852,4.0,161 -1250239,1630085418,8160345,2,45,-9.0,1,0.0,1,31300.0,1001264,4.0,161 -1250240,1630085419,8156690,2,59,-9.0,1,1.0,1,50020.0,1001264,6.0,161 -1250241,1630085420,8156690,2,59,-9.0,1,1.0,1,50020.0,1001264,6.0,161 -1250242,1630085421,8160345,2,54,-9.0,1,1.0,1,49780.0,1025215,6.0,161 -1250243,1630085422,8160345,2,60,-9.0,1,1.0,1,49000.0,1042852,6.0,161 -1250244,1630085423,8160345,2,60,-9.0,1,1.0,1,36000.0,1001264,4.0,161 -1250245,1630085424,8156690,2,54,-9.0,1,1.0,1,38000.0,1073094,6.0,161 -1250246,1630085425,8160345,2,61,-9.0,1,1.0,1,30300.0,1001264,6.0,161 -1250247,1630085426,8164772,2,64,-9.0,1,1.0,1,32000.0,1042852,6.0,161 -1250248,1630085427,8161918,2,46,-9.0,1,2.0,1,31500.0,1009585,6.0,161 -1250249,1630085428,8163654,2,54,-9.0,3,3.0,1,44100.0,1025215,3.0,161 -1250250,1630085429,8160345,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,161 -1250251,1630085430,8164299,2,45,-9.0,2,2.0,1,58400.0,1001264,3.0,161 -1250252,1630085431,8163934,2,50,-9.0,4,1.0,1,37500.0,1042852,7.0,161 -1250253,1630085432,8166175,2,58,-9.0,3,2.0,1,55200.0,1025215,3.0,161 -1250254,1630085433,8166175,2,54,-9.0,3,3.0,1,49500.0,1042852,2.0,161 -1250255,1630085434,8164299,2,58,-9.0,3,2.0,1,55200.0,1025215,3.0,161 -1250256,1630085435,8162055,2,47,-9.0,2,2.0,1,51600.0,1042852,1.0,161 -1250257,1630085436,8163513,2,47,-9.0,2,2.0,1,51600.0,1042852,1.0,161 -1250258,1630085437,8166516,2,61,-9.0,1,1.0,1,60000.0,1042852,6.0,161 -1250259,1630085438,8158873,2,56,-9.0,1,1.0,1,64900.0,1009585,6.0,161 -1250260,1630085439,8164535,2,52,-9.0,3,2.0,1,72500.0,1009585,1.0,161 -1250261,1630085440,8156331,2,52,-9.0,3,2.0,1,72500.0,1009585,1.0,161 -1250262,1630085441,8162117,2,58,1.0,5,2.0,1,80300.0,1001264,3.0,161 -1250263,1630085442,8164450,2,58,1.0,5,2.0,1,80300.0,1001264,3.0,161 -1250264,1630085443,8157673,2,58,-9.0,3,2.0,1,63200.0,1073094,2.0,161 -1250265,1630085444,8164772,2,58,-9.0,3,2.0,1,63200.0,1073094,2.0,161 -1250266,1630085445,8165221,2,46,-9.0,2,1.0,1,63000.0,1025215,3.0,161 -1250267,1630085446,8158359,2,45,-9.0,2,1.0,1,85000.0,1073094,2.0,161 -1250268,1630085447,8158873,2,45,-9.0,2,1.0,1,85000.0,1073094,2.0,161 -1250269,1630085448,8163513,2,57,-9.0,2,2.0,1,73000.0,1009585,1.0,161 -1250270,1630085449,8160135,2,57,-9.0,2,2.0,1,75000.0,1001264,2.0,161 -1250271,1630085450,8158668,2,50,-9.0,1,0.0,1,0.0,1073094,6.0,161 -1250272,1630085451,8156690,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,161 -1250273,1630085452,8160345,2,46,-9.0,1,0.0,1,0.0,1025215,4.0,161 -1250274,1630085453,8156690,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,161 -1250275,1630085454,8161593,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,161 -1250276,1630085455,8160345,2,58,-9.0,1,0.0,1,4800.0,1042852,4.0,161 -1250277,1630085456,8160345,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,161 -1250278,1630085457,8160345,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,161 -1250279,1630085458,8156690,2,57,-9.0,1,0.0,1,8100.0,1073094,4.0,161 -1250280,1630085459,8158873,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,161 -1250281,1630085460,8157998,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,161 -1250282,1630085461,8160345,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,161 -1250283,1630085462,8156603,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,161 -1250284,1630085463,8160345,2,57,-9.0,1,0.0,1,8400.0,1009585,6.0,161 -1250285,1630085464,8156690,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,161 -1250286,1630085465,8163335,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,161 -1250287,1630085466,8158247,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,161 -1250288,1630085467,8162940,2,58,-9.0,1,0.0,1,8700.0,1009585,6.0,161 -1250289,1630085468,8160843,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,161 -1250290,1630085469,8165221,2,58,-9.0,1,0.0,1,11000.0,1025215,6.0,161 -1250291,1630085470,8166894,2,61,-9.0,1,0.0,1,18000.0,1042852,6.0,161 -1250292,1630085471,8156690,2,62,-9.0,1,0.0,1,1800.0,1001264,4.0,161 -1250293,1630085472,8160345,2,59,-9.0,1,0.0,1,9800.0,1009585,6.0,161 -1250294,1630085473,8164450,2,52,-9.0,1,0.0,1,8800.0,1001264,6.0,161 -1250295,1630085474,8160345,2,59,-9.0,1,0.0,1,1200.0,1042852,4.0,161 -1250296,1630085475,8157062,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,161 -1250297,1630085476,8163051,2,54,-9.0,1,0.0,1,7200.0,1042852,6.0,161 -1250298,1630085477,8160345,2,58,-9.0,1,0.0,1,9000.0,1042852,4.0,161 -1250299,1630085478,8163934,2,59,-9.0,1,0.0,1,14300.0,1073094,6.0,161 -1250300,1630085479,8160345,2,51,-9.0,1,0.0,1,8400.0,1042852,6.0,161 -1250301,1630085480,8156690,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,161 -1250302,1630085481,8161593,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,161 -1250303,1630085482,8159097,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,161 -1250304,1630085483,8163451,2,51,-9.0,1,0.0,1,0.0,1001264,6.0,161 -1250305,1630085484,8157745,2,54,-9.0,1,0.0,1,4600.0,1025215,6.0,161 -1250306,1630085485,8157041,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,161 -1250307,1630085486,8160345,2,58,-9.0,1,0.0,1,4800.0,1042852,4.0,161 -1250308,1630085487,8160345,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,161 -1250309,1630085488,8160345,2,64,-9.0,1,0.0,1,4610.0,1025215,6.0,161 -1250310,1630085489,8160345,2,59,-9.0,1,0.0,1,1200.0,1042852,4.0,161 -1250311,1630085490,8163513,2,64,-9.0,1,0.0,1,27900.0,1042852,6.0,161 -1250312,1630085491,8160345,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,161 -1250313,1630085492,8160345,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,161 -1250314,1630085493,8162153,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,161 -1250315,1630085494,8160345,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,161 -1250316,1630085495,8156690,2,55,-9.0,1,0.0,1,12900.0,1042852,4.0,161 -1250317,1630085496,8157062,2,45,-9.0,1,0.0,1,4400.0,1025215,4.0,161 -1250318,1630085497,8163654,4,46,-9.0,1,0.0,1,9000.0,1009585,6.0,161 -1250319,1630085498,8159351,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,161 -1250320,1630085499,8156690,2,63,-9.0,1,1.0,1,1780.0,1009585,6.0,161 -1250321,1630085500,8161550,2,58,-9.0,1,1.0,1,7200.0,1001264,6.0,161 -1250322,1630085501,8160843,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,161 -1250323,1630085502,8160345,2,62,-9.0,1,1.0,1,13200.0,1009585,4.0,161 -1250324,1630085503,8158873,2,58,-9.0,1,1.0,1,11000.0,1025215,4.0,161 -1250325,1630085504,8156690,2,53,-9.0,1,1.0,1,13200.0,1025215,4.0,161 -1250326,1630085505,8161550,2,63,-9.0,1,1.0,1,8400.0,1001264,4.0,161 -1250327,1630085506,8157062,2,58,-9.0,1,1.0,1,7200.0,1001264,6.0,161 -1250328,1630085507,8157745,2,62,-9.0,1,1.0,1,26000.0,1073094,6.0,161 -1250329,1630085508,8160345,2,61,-9.0,1,1.0,1,17600.0,1073094,6.0,161 -1250330,1630085509,8161992,2,58,-9.0,1,1.0,1,18000.0,1073094,4.0,161 -1250331,1630085510,8160843,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,161 -1250332,1630085511,8157745,2,62,-9.0,1,1.0,1,26000.0,1073094,6.0,161 -1250333,1630085512,8163513,2,62,-9.0,1,1.0,1,0.0,1042852,4.0,161 -1250334,1630085513,8161550,2,60,-9.0,1,1.0,1,9100.0,1025215,4.0,161 -1250335,1630085514,8156690,2,63,-9.0,1,1.0,1,1780.0,1009585,6.0,161 -1250336,1630085515,8160843,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,161 -1250337,1630085516,8166894,2,51,-9.0,1,1.0,1,1000.0,1009585,4.0,161 -1250338,1630085517,8160345,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,161 -1250339,1630085518,8161550,2,58,-9.0,1,1.0,1,25600.0,1073094,6.0,161 -1250340,1630085519,8161799,2,47,-9.0,1,1.0,1,8400.0,1009585,6.0,161 -1250341,1630085520,8162153,2,61,-9.0,1,1.0,1,13000.0,1009585,6.0,161 -1250342,1630085521,8163513,2,62,-9.0,1,1.0,1,0.0,1042852,4.0,161 -1250343,1630085522,8161550,2,58,-9.0,1,1.0,1,7200.0,1001264,6.0,161 -1250344,1630085523,8160843,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,161 -1250345,1630085524,8160345,2,62,-9.0,1,1.0,1,13200.0,1009585,4.0,161 -1250346,1630085525,8162570,2,46,-9.0,1,1.0,1,0.0,1073094,6.0,161 -1250347,1630085526,8161550,2,61,-9.0,1,1.0,1,19500.0,1025215,4.0,161 -1250348,1630085527,8156690,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,161 -1250349,1630085528,8156690,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,161 -1250350,1630085529,8166126,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,161 -1250351,1630085530,8166894,2,57,-9.0,1,2.0,1,8400.0,1025215,6.0,161 -1250352,1630085531,8159430,2,47,-9.0,3,0.0,1,13300.0,1042852,3.0,161 -1250353,1630085532,8166894,2,47,-9.0,3,0.0,1,13300.0,1042852,3.0,161 -1250354,1630085533,8160345,2,64,-9.0,2,0.0,1,20400.0,1042852,7.0,161 -1250355,1630085534,8158873,2,58,-9.0,2,0.0,1,16310.0,1009585,1.0,161 -1250356,1630085535,8163882,2,54,-9.0,2,0.0,1,11800.0,1001264,3.0,161 -1250357,1630085536,8163882,2,54,-9.0,2,0.0,1,11800.0,1001264,3.0,161 -1250358,1630085537,8162055,2,61,-9.0,2,0.0,1,12700.0,1042852,1.0,161 -1250359,1630085538,8158020,2,64,-9.0,2,1.0,1,8300.0,1073094,5.0,161 -1250360,1630085539,8162579,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,161 -1250361,1630085540,8163654,2,55,-9.0,2,1.0,1,28600.0,1009585,1.0,161 -1250362,1630085541,8158538,2,63,-9.0,2,1.0,1,780.0,1009585,3.0,161 -1250363,1630085542,8163725,2,59,-9.0,2,1.0,1,8900.0,1042852,3.0,161 -1250364,1630085543,8158020,2,46,-9.0,2,2.0,1,15800.0,1025215,1.0,161 -1250365,1630085544,8165221,2,61,-9.0,1,0.0,1,14000.0,1073094,6.0,161 -1250366,1630085545,8161550,2,56,-9.0,1,0.0,1,9600.0,1009585,4.0,161 -1250367,1630085546,8160345,2,58,-9.0,1,0.0,1,12000.0,1025215,6.0,161 -1250368,1630085547,8165130,2,57,-9.0,1,0.0,1,29000.0,1025215,6.0,161 -1250369,1630085548,8165620,2,52,-9.0,1,0.0,1,13400.0,1042852,6.0,161 -1250370,1630085549,8156690,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,161 -1250371,1630085550,8159351,2,61,-9.0,1,0.0,1,11500.0,1009585,4.0,161 -1250372,1630085551,8160345,2,64,-9.0,1,0.0,1,10170.0,1001264,6.0,161 -1250373,1630085552,8158300,2,55,-9.0,1,0.0,1,8000.0,1009585,4.0,161 -1250374,1630085553,8156690,2,60,-9.0,1,0.0,1,26000.0,1025215,4.0,161 -1250375,1630085554,8160955,2,62,-9.0,1,0.0,1,29000.0,1009585,6.0,161 -1250376,1630085555,8160460,2,60,-9.0,1,1.0,1,28000.0,1001264,6.0,161 -1250377,1630085556,8158247,2,45,-9.0,1,1.0,1,22000.0,1073094,4.0,161 -1250378,1630085557,8164450,2,46,-9.0,1,1.0,1,1000.0,1001264,6.0,161 -1250379,1630085558,8163654,2,54,-9.0,1,1.0,1,17700.0,1001264,6.0,161 -1250380,1630085559,8158300,2,58,-9.0,1,1.0,1,29600.0,1009585,6.0,161 -1250381,1630085560,8165605,2,55,-9.0,1,1.0,1,17000.0,1073094,6.0,161 -1250382,1630085561,8160345,2,48,-9.0,1,1.0,1,6000.0,1025215,6.0,161 -1250383,1630085562,8160460,2,51,-9.0,1,1.0,1,1200.0,1073094,6.0,161 -1250384,1630085563,8157062,2,62,-9.0,1,1.0,1,22000.0,1009585,6.0,161 -1250385,1630085564,8161333,2,51,-9.0,1,1.0,1,1200.0,1073094,6.0,161 -1250386,1630085565,8160345,2,48,-9.0,1,1.0,1,19200.0,1001264,6.0,161 -1250387,1630085566,8164772,2,48,-9.0,1,1.0,1,27700.0,1073094,6.0,161 -1250388,1630085567,8159569,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,161 -1250389,1630085568,8160345,2,46,-9.0,1,1.0,1,14000.0,1001264,6.0,161 -1250390,1630085569,8161550,2,62,-9.0,1,1.0,1,22000.0,1009585,6.0,161 -1250391,1630085570,8156690,2,58,-9.0,1,1.0,1,13900.0,1073094,4.0,161 -1250392,1630085571,8164002,2,54,-9.0,1,1.0,1,21900.0,1025215,4.0,161 -1250393,1630085572,8162812,4,61,-9.0,1,1.0,1,13500.0,1025215,4.0,161 -1250394,1630085573,8160345,4,50,-9.0,1,1.0,1,27000.0,1009585,6.0,161 -1250395,1630085574,8165620,3,51,-9.0,1,1.0,1,29000.0,1042852,6.0,161 -1250396,1630085575,8158247,2,59,-9.0,1,2.0,1,20000.0,1001264,4.0,161 -1250397,1630085576,8157041,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,161 -1250398,1630085577,8161593,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,161 -1250399,1630085578,8162502,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,161 -1250400,1630085579,8160345,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,161 -1250401,1630085580,8159097,2,45,-9.0,3,1.0,1,11000.0,1042852,3.0,161 -1250402,1630085581,8156690,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,161 -1250403,1630085582,8158247,2,50,-9.0,2,1.0,1,18000.0,1042852,3.0,161 -1250404,1630085583,8163701,2,55,-9.0,2,1.0,1,9800.0,1042852,3.0,161 -1250405,1630085584,8159097,2,50,-9.0,2,1.0,1,18000.0,1042852,3.0,161 -1250406,1630085585,8163804,2,47,-9.0,2,1.0,1,19300.0,1042852,7.0,161 -1250407,1630085586,8163701,2,55,-9.0,2,1.0,1,25000.0,1042852,3.0,161 -1250408,1630085587,8163863,2,53,-9.0,2,2.0,1,6500.0,1025215,5.0,161 -1250409,1630085588,8164297,2,53,-9.0,2,2.0,1,6500.0,1025215,5.0,161 -1250410,1630085589,8158359,2,53,-9.0,2,2.0,1,6500.0,1025215,5.0,161 -1250411,1630085590,8160345,4,52,-9.0,2,2.0,1,70.0,1042852,1.0,161 -1250412,1630085591,8163451,2,59,-9.0,3,1.0,1,14600.0,1001264,3.0,161 -1250413,1630085592,8162609,2,54,-9.0,2,0.0,1,19000.0,1001264,1.0,161 -1250414,1630085593,8164772,2,50,-9.0,2,1.0,1,25400.0,1001264,3.0,161 -1250415,1630085594,8160372,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,161 -1250416,1630085595,8160135,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,161 -1250417,1630085596,8156690,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,161 -1250418,1630085597,8157062,2,66,-9.0,1,0.0,1,38000.0,1001264,6.0,161 -1250419,1630085598,8163863,2,65,-9.0,1,1.0,1,34200.0,1009585,4.0,161 -1250420,1630085599,8157062,2,68,-9.0,1,1.0,1,34800.0,1073094,6.0,161 -1250421,1630085600,8164693,2,66,-9.0,1,2.0,1,32700.0,1009585,4.0,161 -1250422,1630085601,8161550,2,75,-9.0,1,1.0,1,49800.0,1042852,6.0,161 -1250423,1630085602,8157062,2,66,-9.0,1,1.0,1,63000.0,1001264,4.0,161 -1250424,1630085603,8157673,2,71,-9.0,3,1.0,1,70400.0,1001264,3.0,161 -1250425,1630085604,8161550,2,72,-9.0,1,0.0,1,2100.0,1042852,6.0,161 -1250426,1630085605,8160345,2,73,-9.0,1,0.0,1,9600.0,1001264,6.0,161 -1250427,1630085606,8160843,2,94,-9.0,1,0.0,1,6800.0,1009585,6.0,161 -1250428,1630085607,8157062,2,72,-9.0,1,0.0,1,2100.0,1042852,6.0,161 -1250429,1630085608,8163654,2,74,-9.0,1,0.0,1,9200.0,1025215,4.0,161 -1250430,1630085609,8160345,2,80,-9.0,1,0.0,1,12700.0,1073094,6.0,161 -1250431,1630085610,8160345,2,86,-9.0,1,0.0,1,10600.0,1009585,6.0,161 -1250432,1630085611,8157062,2,68,-9.0,1,0.0,1,7200.0,1025215,6.0,161 -1250433,1630085612,8160345,2,86,-9.0,1,0.0,1,10600.0,1009585,6.0,161 -1250434,1630085613,8160345,2,81,-9.0,1,0.0,1,16600.0,1042852,6.0,161 -1250435,1630085614,8160345,2,73,-9.0,1,0.0,1,0.0,1025215,6.0,161 -1250436,1630085615,8156690,2,74,-9.0,1,0.0,1,17000.0,1073094,6.0,161 -1250437,1630085616,8156690,2,69,-9.0,1,0.0,1,7200.0,1042852,4.0,161 -1250438,1630085617,8156690,2,73,-9.0,1,0.0,1,11000.0,1025215,6.0,161 -1250439,1630085618,8158300,2,67,-9.0,1,0.0,1,8300.0,1073094,6.0,161 -1250440,1630085619,8161550,2,78,-9.0,1,0.0,1,12000.0,1009585,6.0,161 -1250441,1630085620,8161550,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,161 -1250442,1630085621,8163804,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,161 -1250443,1630085622,8162579,2,70,-9.0,1,0.0,1,11400.0,1042852,6.0,161 -1250444,1630085623,8160345,2,73,-9.0,1,0.0,1,0.0,1025215,6.0,161 -1250445,1630085624,8156690,2,65,-9.0,1,0.0,1,12000.0,1025215,4.0,161 -1250446,1630085625,8156690,2,69,-9.0,1,0.0,1,12000.0,1042852,6.0,161 -1250447,1630085626,8160345,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,161 -1250448,1630085627,8157062,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,161 -1250449,1630085628,8161333,2,65,-9.0,1,0.0,1,14900.0,1025215,6.0,161 -1250450,1630085629,8156690,2,78,-9.0,1,0.0,1,8500.0,1073094,6.0,161 -1250451,1630085630,8156690,2,74,-9.0,1,0.0,1,12000.0,1009585,6.0,161 -1250452,1630085631,8156690,2,94,-9.0,1,0.0,1,14300.0,1009585,4.0,161 -1250453,1630085632,8156690,2,73,-9.0,1,0.0,1,8400.0,1073094,6.0,161 -1250454,1630085633,8161992,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,161 -1250455,1630085634,8161333,2,65,-9.0,1,0.0,1,14900.0,1025215,6.0,161 -1250456,1630085635,8157062,2,70,-9.0,1,0.0,1,14300.0,1042852,6.0,161 -1250457,1630085636,8160345,2,80,-9.0,1,0.0,1,8300.0,1073094,6.0,161 -1250458,1630085637,8160843,2,94,-9.0,1,0.0,1,6800.0,1009585,6.0,161 -1250459,1630085638,8157230,2,69,-9.0,1,0.0,1,8400.0,1001264,6.0,161 -1250460,1630085639,8160345,2,73,-9.0,1,0.0,1,8400.0,1042852,6.0,161 -1250461,1630085640,8156690,2,68,-9.0,1,0.0,1,17360.0,1009585,6.0,161 -1250462,1630085641,8160345,2,70,-9.0,1,0.0,1,25004.0,1073094,4.0,161 -1250463,1630085642,8160345,2,68,-9.0,1,0.0,1,7200.0,1042852,6.0,161 -1250464,1630085643,8161550,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,161 -1250465,1630085644,8156690,2,86,-9.0,1,0.0,1,9400.0,1009585,6.0,161 -1250466,1630085645,8156690,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,161 -1250467,1630085646,8163804,2,80,-9.0,1,1.0,1,8530.0,1042852,6.0,161 -1250468,1630085647,8160345,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,161 -1250469,1630085648,8160345,2,75,-9.0,1,1.0,1,13000.0,1009585,4.0,161 -1250470,1630085649,8160345,2,77,-9.0,1,1.0,1,9600.0,1009585,6.0,161 -1250471,1630085650,8165130,2,67,-9.0,1,1.0,1,9500.0,1042852,6.0,161 -1250472,1630085651,8164299,2,68,-9.0,1,1.0,1,11600.0,1001264,6.0,161 -1250473,1630085652,8161992,2,69,-9.0,1,1.0,1,10800.0,1042852,6.0,161 -1250474,1630085653,8160955,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,161 -1250475,1630085654,8156690,2,66,-9.0,1,1.0,1,11000.0,1042852,6.0,161 -1250476,1630085655,8160345,2,66,-9.0,1,1.0,1,14400.0,1025215,6.0,161 -1250477,1630085656,8161333,2,78,-9.0,1,1.0,1,11900.0,1001264,6.0,161 -1250478,1630085657,8156690,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,161 -1250479,1630085658,8156690,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,161 -1250480,1630085659,8161550,2,66,-9.0,1,1.0,1,8700.0,1009585,6.0,161 -1250481,1630085660,8160955,2,78,-9.0,1,1.0,1,11900.0,1001264,6.0,161 -1250482,1630085661,8156690,2,77,-9.0,1,1.0,1,15100.0,1042852,4.0,161 -1250483,1630085662,8156690,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,161 -1250484,1630085663,8157673,2,67,-9.0,1,1.0,1,5000.0,1073094,6.0,161 -1250485,1630085664,8160345,2,66,-9.0,1,1.0,1,14400.0,1025215,6.0,161 -1250486,1630085665,8160345,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,161 -1250487,1630085666,8164002,2,80,-9.0,1,1.0,1,8530.0,1042852,6.0,161 -1250488,1630085667,8161550,2,68,-9.0,1,1.0,1,24000.0,1073094,4.0,161 -1250489,1630085668,8160345,2,77,-9.0,1,1.0,1,9600.0,1009585,6.0,161 -1250490,1630085669,8156690,2,85,-9.0,1,1.0,1,14100.0,1009585,6.0,161 -1250491,1630085670,8156690,2,85,-9.0,1,1.0,1,14100.0,1009585,6.0,161 -1250492,1630085671,8156690,2,76,-9.0,1,1.0,1,16800.0,1042852,4.0,161 -1250493,1630085672,8156690,2,73,-9.0,1,1.0,1,16800.0,1001264,4.0,161 -1250494,1630085673,8156690,2,68,-9.0,1,1.0,1,19000.0,1073094,6.0,161 -1250495,1630085674,8160345,2,68,-9.0,1,1.0,1,19000.0,1073094,6.0,161 -1250496,1630085675,8163051,2,65,-9.0,1,1.0,1,3300.0,1073094,4.0,161 -1250497,1630085676,8160345,2,84,-9.0,1,1.0,1,10100.0,1001264,6.0,161 -1250498,1630085677,8166516,2,69,-9.0,1,1.0,1,24800.0,1025215,6.0,161 -1250499,1630085678,8160345,2,66,-9.0,1,1.0,1,15300.0,1073094,6.0,161 -1250500,1630085679,8160345,2,65,-9.0,1,1.0,1,0.0,1001264,6.0,161 -1250501,1630085680,8160345,2,68,-9.0,1,1.0,1,19000.0,1073094,6.0,161 -1250502,1630085681,8159569,2,65,-9.0,1,1.0,1,9100.0,1073094,6.0,161 -1250503,1630085682,8160345,2,66,-9.0,1,1.0,1,11190.0,1009585,4.0,161 -1250504,1630085683,8158359,2,67,-9.0,1,1.0,1,9500.0,1042852,6.0,161 -1250505,1630085684,8160345,2,85,-9.0,1,1.0,1,14100.0,1009585,6.0,161 -1250506,1630085685,8163934,2,69,-9.0,1,1.0,1,24800.0,1025215,6.0,161 -1250507,1630085686,8161917,4,65,-9.0,1,1.0,1,12000.0,1009585,4.0,161 -1250508,1630085687,8161758,3,67,-9.0,1,1.0,1,17800.0,1001264,4.0,161 -1250509,1630085688,8161097,2,71,-9.0,1,2.0,1,19300.0,1001264,4.0,161 -1250510,1630085689,8160345,2,65,-9.0,1,2.0,1,16000.0,1001264,6.0,161 -1250511,1630085690,8161972,2,71,-9.0,1,2.0,1,19300.0,1001264,4.0,161 -1250512,1630085691,8158020,2,72,-9.0,2,0.0,1,10420.0,1009585,3.0,161 -1250513,1630085692,8156690,2,69,-9.0,2,0.0,1,26200.0,1001264,5.0,161 -1250514,1630085693,8160843,2,73,-9.0,2,0.0,1,10000.0,1042852,3.0,161 -1250515,1630085694,8162055,2,68,-9.0,2,1.0,1,12000.0,1001264,1.0,161 -1250516,1630085695,8164002,2,73,-9.0,2,1.0,1,14400.0,1073094,3.0,161 -1250517,1630085696,8164220,2,65,-9.0,2,1.0,1,23400.0,1042852,3.0,161 -1250518,1630085697,8164220,2,77,-9.0,2,2.0,1,8400.0,1025215,2.0,161 -1250519,1630085698,8166126,2,77,-9.0,2,2.0,1,8400.0,1025215,2.0,161 -1250520,1630085699,8160460,2,72,-9.0,1,1.0,1,20000.0,1025215,4.0,161 -1250521,1630085700,8160345,2,66,-9.0,1,1.0,1,20200.0,1042852,6.0,161 -1250522,1630085701,8158311,2,94,-9.0,3,1.0,1,24200.0,1009585,3.0,161 -1250523,1630085702,8160345,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,161 -1250524,1630085703,8159430,2,24,-9.0,4,2.0,1,58800.0,1042852,2.0,161 -1250525,1630085704,8160135,2,24,-9.0,4,2.0,1,58800.0,1042852,2.0,161 -1250526,1630085705,8159385,1,24,-9.0,5,5.0,1,82000.0,1009585,7.0,161 -1250527,1630085706,8160345,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,161 -1250528,1630085707,8165221,2,20,3.0,5,1.0,1,12000.0,1009585,7.0,161 -1250529,1630085708,8160372,2,24,3.0,5,1.0,1,0.0,1073094,3.0,161 -1250530,1630085709,8160345,2,23,-9.0,1,0.0,1,0.0,1042852,4.0,161 -1250531,1630085710,8161550,2,23,-9.0,1,0.0,1,4000.0,1073094,6.0,161 -1250532,1630085711,8160345,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,161 -1250533,1630085712,8159385,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,161 -1250534,1630085713,8156690,2,23,-9.0,1,1.0,1,1920.0,1073094,6.0,161 -1250535,1630085714,8166894,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,161 -1250536,1630085715,8156690,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,161 -1250537,1630085716,8163335,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,161 -1250538,1630085717,8160345,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,161 -1250539,1630085718,8161507,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,161 -1250540,1630085719,8160345,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,161 -1250541,1630085720,8157673,2,20,-9.0,1,1.0,1,15000.0,1001264,6.0,161 -1250542,1630085721,8157062,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,161 -1250543,1630085722,8158247,2,20,-9.0,1,1.0,1,15000.0,1001264,6.0,161 -1250544,1630085723,8161550,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,161 -1250545,1630085724,8157062,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,161 -1250546,1630085725,8160345,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,161 -1250547,1630085726,8160345,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,161 -1250548,1630085727,8156690,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,161 -1250549,1630085728,8160345,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,161 -1250550,1630085729,8160372,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,161 -1250551,1630085730,8156690,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,161 -1250552,1630085731,8158538,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,161 -1250553,1630085732,8158300,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,161 -1250554,1630085733,8162579,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,161 -1250555,1630085734,8166126,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,161 -1250556,1630085735,8161161,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,161 -1250557,1630085736,8162875,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,161 -1250558,1630085737,8160345,2,24,2.0,3,1.0,1,13000.0,1025215,3.0,161 -1250559,1630085738,8164535,2,23,1.0,3,1.0,1,8000.0,1042852,2.0,161 -1250560,1630085739,8156350,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,161 -1250561,1630085740,8160345,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,161 -1250562,1630085741,8156690,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,161 -1250563,1630085742,8156690,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,161 -1250564,1630085743,8165403,2,24,2.0,4,2.0,1,20600.0,1009585,2.0,161 -1250565,1630085744,8158300,2,22,1.0,3,1.0,1,24600.0,1073094,2.0,161 -1250566,1630085745,8164297,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,161 -1250567,1630085746,8160345,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,161 -1250568,1630085747,8160345,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,161 -1250569,1630085748,8160345,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,161 -1250570,1630085749,8156690,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,161 -1250571,1630085750,8160345,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,161 -1250572,1630085751,8160345,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,161 -1250573,1630085752,8156690,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,161 -1250574,1630085753,8160345,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,161 -1250575,1630085754,8161161,2,57,-9.0,1,2.0,1,67700.0,1025215,4.0,161 -1250576,1630085755,8161550,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,161 -1250577,1630085756,8160345,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,161 -1250578,1630085757,8160345,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,161 -1250579,1630085758,8160345,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,161 -1250580,1630085759,8161550,2,66,-9.0,1,0.0,1,15500.0,1009585,4.0,161 -1250581,1630085760,8166254,2,57,-9.0,3,2.0,1,77000.0,1001264,1.0,161 -1250582,1630085761,8159097,2,59,-9.0,3,1.0,1,1400.0,1009585,1.0,161 -1250583,1630085762,8161550,4,72,-9.0,1,0.0,1,4800.0,1009585,6.0,161 -1250584,1630085763,8157998,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,161 -1250585,1630085764,8161508,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,161 -1250586,1630085765,8163513,2,44,2.0,5,1.0,1,27700.0,1025215,3.0,161 -1250587,1630085766,8164609,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,161 -1250588,1630085767,8163725,2,59,-9.0,2,1.0,1,8900.0,1042852,3.0,161 -1250589,1630085768,8165605,2,87,-9.0,1,1.0,1,48000.0,1025215,6.0,161 -1250590,1630085769,8160345,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,161 -1250591,1630085770,8156331,2,34,3.0,5,2.0,1,41500.0,1009585,1.0,161 -1250592,1630085771,8166894,4,41,1.0,4,3.0,1,52000.0,1042852,1.0,161 -1250593,1630085772,8163654,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,161 -1250594,1630085773,8160372,2,45,-9.0,3,1.0,1,11000.0,1042852,3.0,161 -1250595,1630085774,8156690,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,161 -1250596,1630085775,8161550,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,161 -1250597,1630085776,8160345,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,161 -1250598,1630085777,8161926,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,161 -1250599,1630085778,8162502,2,50,-9.0,2,1.0,1,25400.0,1001264,3.0,161 -1250600,1630085779,8156690,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,161 -1250601,1630085780,8158668,2,87,-9.0,3,0.0,1,12200.0,1001264,3.0,161 -1250602,1630085781,8165605,2,61,-9.0,3,0.0,1,7000.0,1073094,5.0,161 -1250603,1630085782,8157062,2,26,-9.0,2,0.0,1,12200.0,1001264,7.0,161 -1250604,1630085783,8166126,2,59,-9.0,3,1.0,1,14600.0,1001264,3.0,161 -1250605,1630085784,8157673,2,60,-9.0,2,1.0,1,2700.0,1009585,3.0,161 -1250606,1630085785,8156690,2,29,1.0,3,1.0,1,42970.0,1042852,2.0,161 -1250607,1630085786,8156690,2,61,-9.0,1,1.0,1,30300.0,1001264,6.0,161 -1250608,1630085787,8165221,2,36,4.0,5,0.0,1,13000.0,1042852,3.0,161 -1250609,1630085788,8163725,2,60,-9.0,2,2.0,1,40700.0,1001264,1.0,161 -1250610,1630085789,8160345,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,161 -1250611,1630085790,8156603,2,28,3.0,5,1.0,1,52700.0,1042852,2.0,161 -1250612,1630085791,8162117,3,35,-9.0,1,1.0,1,3600.0,1073094,6.0,161 -1250613,1630085792,8163863,2,54,-9.0,3,3.0,1,44100.0,1025215,3.0,161 -1250614,1630085793,8160460,2,23,2.0,3,1.0,1,1200.0,1009585,3.0,161 -1250615,1630085794,8160345,1,28,-9.0,2,2.0,1,94000.0,1001264,7.0,161 -1250616,1630085795,8156690,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,161 -1250617,1630085796,8160345,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,161 -1250618,1630085797,8162579,2,73,-9.0,2,1.0,1,23600.0,1073094,3.0,161 -1250619,1630085798,8164450,2,60,-9.0,1,1.0,1,36000.0,1042852,4.0,161 -1250620,1630085799,8157062,2,56,-9.0,3,1.0,1,44400.0,1073094,3.0,161 -1250621,1630085800,8156690,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,161 -1250622,1630085801,8157230,2,38,1.0,3,1.0,1,24000.0,1009585,3.0,161 -1250623,1630085802,8166126,2,36,2.0,4,2.0,1,11400.0,1042852,3.0,161 -1250624,1630085803,8165221,2,57,-9.0,1,2.0,1,8400.0,1025215,6.0,161 -1250625,1630085804,8156690,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,161 -1250626,1630085805,8163286,2,52,-9.0,3,3.0,1,123000.0,1025215,2.0,161 -1250627,1630085806,8160345,2,29,-9.0,2,1.0,1,43100.0,1025215,2.0,161 -1250628,1630085807,8165620,4,46,-9.0,1,0.0,1,9000.0,1009585,6.0,161 -1250629,1630085808,8160345,3,44,-9.0,1,0.0,1,1900.0,1001264,4.0,161 -1250630,1630085809,8159569,4,47,-9.0,4,1.0,1,32800.0,1009585,3.0,161 -1250631,1630085810,8157511,3,27,-9.0,1,1.0,1,55000.0,1025215,6.0,161 -1250632,1630085811,8157998,2,37,2.0,4,1.0,1,7800.0,1009585,1.0,161 -1250633,1630085812,8164772,2,42,2.0,5,2.0,1,63100.0,1009585,1.0,161 -1250634,1630085813,8156690,2,41,-9.0,1,1.0,1,62000.0,1073094,6.0,161 -1250635,1630085814,8156690,2,70,-9.0,2,3.0,1,100000.0,1042852,1.0,161 -1250636,1630085815,8164220,2,68,-9.0,2,2.0,1,81200.0,1001264,1.0,161 -1250637,1630085816,8159430,2,30,3.0,4,0.0,1,0.0,1073094,3.0,161 -1250638,1630085817,8157998,2,37,1.0,2,1.0,1,4800.0,1042852,3.0,161 -1250639,1630085818,8160345,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,161 -1250640,1630085819,8161720,2,58,1.0,3,1.0,1,23160.0,1025215,1.0,161 -1250641,1630085820,8165403,4,48,-9.0,2,1.0,1,5000.0,1025215,3.0,161 -1250642,1630085821,8162502,2,24,-9.0,4,2.0,1,58800.0,1042852,2.0,161 -1250643,1630085822,8156331,2,59,-9.0,2,2.0,1,54400.0,1042852,1.0,161 -1250644,1630085823,8160372,2,52,-9.0,3,2.0,1,72500.0,1009585,1.0,161 -1250645,1630085824,8160345,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,161 -1250646,1630085825,8160955,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,161 -1250647,1630085826,8158873,1,24,-9.0,2,2.0,1,22500.0,1025215,5.0,161 -1250648,1630085827,8157998,2,63,-9.0,2,2.0,1,70000.0,1009585,1.0,161 -1250649,1630085828,8162502,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,161 -1250650,1630085829,8163451,2,57,-9.0,2,2.0,1,73000.0,1009585,1.0,161 -1250651,1630085830,8158668,2,49,-9.0,2,2.0,1,69000.0,1042852,1.0,161 -1250652,1630085831,8157062,2,29,-9.0,1,1.0,1,9000.0,1009585,4.0,161 -1250653,1630085832,8158538,2,74,-9.0,2,1.0,1,42970.0,1042852,3.0,161 -1250654,1630085833,8158668,2,29,1.0,2,1.0,1,32000.0,1025215,2.0,161 -1250655,1630085834,8160345,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,161 -1250656,1630085835,8162055,2,32,2.0,4,1.0,1,23000.0,1001264,2.0,161 -1250657,1630085836,8163882,2,26,2.0,3,0.0,1,25000.0,1001264,3.0,161 -1250658,1630085837,8157230,2,65,-9.0,2,1.0,1,31700.0,1001264,1.0,161 -1250659,1630085838,8156690,2,67,-9.0,1,0.0,1,8300.0,1001264,6.0,161 -1250660,1630085839,8162117,2,64,-9.0,1,2.0,1,36400.0,1001264,6.0,161 -1250661,1630085840,8158538,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,161 -1250662,1630085841,8162502,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,161 -1250663,1630085842,8157673,2,58,-9.0,3,2.0,1,63200.0,1073094,2.0,161 -1250664,1630085843,8160345,2,30,-9.0,2,1.0,1,98800.0,1073094,5.0,161 -1250665,1630085844,8161333,2,46,-9.0,3,0.0,1,1400.0,1025215,3.0,161 -1250666,1630085845,8156603,2,36,1.0,4,2.0,1,59600.0,1009585,3.0,161 -1250667,1630085846,8160372,2,62,-9.0,1,1.0,1,82000.0,1009585,4.0,161 -1250668,1630085847,8160345,2,56,-9.0,4,1.0,1,8100.0,1073094,2.0,161 -1250669,1630085848,8156690,2,59,1.0,2,1.0,1,14880.0,1042852,3.0,161 -1250670,1630085849,8156690,4,52,-9.0,2,2.0,1,70.0,1042852,1.0,161 -1250671,1630085850,8160345,2,21,1.0,2,0.0,1,1300.0,1025215,3.0,161 -1250672,1630085851,8163451,2,24,2.0,4,2.0,1,20600.0,1009585,2.0,161 -1250673,1630085852,8157062,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,161 -1250674,1630085853,8157230,2,53,-9.0,3,1.0,1,105400.0,1042852,2.0,161 -1250675,1630085854,8156690,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,161 -1250676,1630085855,8158359,2,45,-9.0,2,1.0,1,85000.0,1073094,2.0,161 -1250677,1630085856,8159430,2,39,2.0,3,0.0,1,9000.0,1025215,3.0,161 -1250678,1630085857,8164535,3,43,-9.0,4,2.0,1,70630.0,1009585,2.0,161 -1250679,1630085858,8161013,2,44,-9.0,4,0.0,1,24000.0,1042852,3.0,161 -1250680,1630085859,8163651,2,60,-9.0,2,2.0,1,142000.0,1001264,1.0,161 -1250681,1630085860,8158668,2,50,-9.0,4,2.0,1,43680.0,1073094,1.0,161 -1250682,1630085861,8160345,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,161 -1250683,1630085862,8163051,1,24,-9.0,5,5.0,1,82000.0,1009585,7.0,161 -1250684,1630085863,8156350,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,161 -1250685,1630085864,8161550,2,62,-9.0,1,1.0,1,22000.0,1009585,6.0,161 -1250686,1630085865,8160345,2,40,2.0,4,1.0,1,43600.0,1073094,1.0,161 -1250687,1630085866,8157230,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,161 -1250688,1630085867,8162448,2,58,-9.0,3,2.0,1,55200.0,1025215,3.0,161 -1250689,1630085868,8156690,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,161 -1250690,1630085869,8164220,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,161 -1250691,1630085870,8166126,2,49,2.0,5,1.0,1,97600.0,1025215,3.0,161 -1250692,1630085871,8160372,2,50,-9.0,4,1.0,1,37500.0,1042852,7.0,161 -1250693,1630085872,8162055,2,57,1.0,3,2.0,1,17500.0,1001264,3.0,161 -1250694,1630085873,8164297,1,29,-9.0,2,1.0,1,79500.0,1025215,5.0,161 -1250695,1630085874,8156690,2,72,-9.0,2,1.0,1,11000.0,1001264,3.0,161 -1250696,1630085875,8159351,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,161 -1250697,1630085876,8160955,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,161 -1250698,1630085877,8158873,2,37,3.0,5,0.0,1,64000.0,1001264,1.0,161 -1250699,1630085878,8162448,2,61,-9.0,1,1.0,1,16000.0,1001264,6.0,161 -1250700,1630085879,8164299,1,25,-9.0,4,4.0,1,94504.0,1025215,7.0,161 -1250701,1630085880,8166126,4,36,3.0,4,1.0,1,23000.0,1009585,3.0,161 -1250702,1630085881,8164003,2,73,-9.0,2,2.0,1,52800.0,1073094,1.0,161 -1250703,1630085882,8159097,2,58,1.0,5,2.0,1,80300.0,1001264,3.0,161 -1250704,1630085883,8161333,4,29,-9.0,2,5.0,1,36800.0,1001264,1.0,161 -1250705,1630085884,8166528,2,60,-9.0,2,2.0,1,81000.0,1009585,1.0,161 -1250706,1630085885,8163701,1,33,-9.0,5,5.0,1,170670.0,1001264,7.0,161 -1250707,1630085886,8160345,2,65,-9.0,1,2.0,1,16000.0,1001264,6.0,161 -1250708,1630085887,8157998,2,62,1.0,3,1.0,1,15170.0,1042852,1.0,161 -1250709,1630085888,8162445,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,161 -1250710,1630085889,8156690,2,72,-9.0,1,1.0,1,61000.0,1025215,4.0,161 -1250711,1630085890,8160345,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,161 -1250712,1630085891,8162579,2,20,1.0,3,0.0,1,13900.0,1025215,3.0,161 -1250713,1630085892,8164693,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,161 -1250714,1630085893,8156690,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,161 -1250715,1630085894,8160928,2,60,-9.0,2,2.0,1,24500.0,1042852,1.0,161 -1250716,1630085895,8165620,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,161 -1250717,1630085896,8159385,2,56,-9.0,2,2.0,1,37800.0,1025215,3.0,161 -1250718,1630085897,8160345,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,161 -1250719,1630085898,8156690,2,38,1.0,3,2.0,1,80000.0,1009585,1.0,161 -1250720,1630085899,8156603,2,45,-9.0,1,1.0,1,20500.0,1042852,4.0,161 -1250721,1630085900,8159430,2,23,3.0,5,0.0,1,12700.0,1025215,3.0,161 -1250722,1630085901,8162055,2,41,-9.0,2,1.0,1,35000.0,1073094,3.0,161 -1250723,1630085902,8162502,2,24,3.0,5,0.0,1,12500.0,1042852,3.0,161 -1250724,1630085903,8163654,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,161 -1250725,1630085904,8160345,2,65,-9.0,3,1.0,1,31400.0,1025215,1.0,161 -1250726,1630085905,8164220,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,161 -1250727,1630085906,8164535,1,24,-9.0,4,2.0,1,15600.0,1073094,5.0,161 -1250728,1630085907,8160345,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,161 -1250729,1630085908,8162117,2,47,1.0,3,2.0,1,38200.0,1001264,3.0,161 -1250730,1630085909,8163451,2,51,-9.0,2,1.0,1,42900.0,1025215,3.0,161 -1250731,1630085910,8156690,2,86,-9.0,3,1.0,1,50470.0,1009585,3.0,161 -1250732,1630085911,8157062,2,66,-9.0,1,1.0,1,63000.0,1001264,4.0,161 -1250733,1630085912,8156690,4,58,-9.0,1,0.0,1,21700.0,1025215,6.0,161 -1250734,1630085913,8165403,2,26,2.0,4,1.0,1,36800.0,1001264,3.0,161 -1250735,1630085914,8163451,2,77,-9.0,2,2.0,1,8400.0,1025215,2.0,161 -1250736,1630085915,8164772,2,47,3.0,5,2.0,1,37100.0,1009585,3.0,161 -1250737,1630085916,8161550,2,51,1.0,2,0.0,1,8400.0,1042852,3.0,161 -1250738,1630085917,8160345,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,161 -1250739,1630085918,8156690,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,161 -1250740,1630085919,8157062,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,161 -1250741,1630085920,8158873,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,161 -1250742,1630085921,8163422,2,52,-9.0,3,1.0,1,36500.0,1001264,1.0,161 -1250743,1630085922,8158300,2,53,-9.0,2,1.0,1,56400.0,1073094,3.0,161 -1250744,1630085923,8161949,2,61,-9.0,3,2.0,1,33300.0,1009585,1.0,161 -1252554,1630087733,8152818,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,175 -1252555,1630087734,8152818,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,175 -1252556,1630087735,8145581,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,177 -1252557,1630087736,8152818,4,40,-9.0,2,2.0,1,391000.0,1009585,5.0,175 -1252558,1630087737,8152818,1,42,-9.0,2,2.0,1,103400.0,1025215,1.0,175 -1252559,1630087738,8152818,1,31,-9.0,2,2.0,1,136000.0,1073094,1.0,175 -1252560,1630087739,8152818,1,36,-9.0,2,2.0,1,214000.0,1009585,1.0,175 -1252561,1630087740,8147276,2,36,-9.0,1,1.0,1,40000.0,1025215,6.0,177 -1252562,1630087741,8148312,1,30,-9.0,1,1.0,1,58000.0,1001264,4.0,178 -1252563,1630087742,8152818,1,31,-9.0,1,1.0,1,44000.0,1001264,6.0,175 -1252564,1630087743,8152818,1,31,-9.0,1,1.0,1,44000.0,1001264,6.0,175 -1252565,1630087744,8147915,1,35,-9.0,1,1.0,1,35000.0,1073094,6.0,178 -1252566,1630087745,8152818,1,31,-9.0,1,1.0,1,44000.0,1001264,6.0,175 -1252567,1630087746,8147915,1,35,-9.0,1,1.0,1,35000.0,1073094,6.0,178 -1252568,1630087747,8152818,2,27,-9.0,2,0.0,1,33000.0,1009585,1.0,175 -1252569,1630087748,8152818,2,38,-9.0,2,1.0,1,32000.0,1042852,3.0,175 -1252570,1630087749,8148312,2,35,-9.0,2,1.0,1,32000.0,1025215,5.0,178 -1252571,1630087750,8152818,1,38,-9.0,2,1.0,1,46000.0,1001264,3.0,175 -1252572,1630087751,8152818,1,38,-9.0,2,1.0,1,46000.0,1001264,3.0,175 -1252573,1630087752,8152818,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,175 -1252574,1630087753,8152818,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,175 -1252575,1630087754,8152818,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,175 -1252576,1630087755,8152818,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,175 -1252577,1630087756,8152818,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,175 -1252578,1630087757,8147915,1,30,-9.0,1,0.0,1,25200.0,1042852,6.0,178 -1252579,1630087758,8146709,2,34,-9.0,1,1.0,1,8920.0,1009585,4.0,177 -1252580,1630087759,8147915,1,36,-9.0,1,1.0,1,0.0,1042852,4.0,178 -1252581,1630087760,8152818,1,26,-9.0,1,1.0,1,13000.0,1042852,6.0,175 -1252582,1630087761,8152818,2,42,-9.0,2,1.0,1,8000.0,1025215,2.0,175 -1252583,1630087762,8152818,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,175 -1252584,1630087763,8152818,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,175 -1252585,1630087764,8147091,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,177 -1252586,1630087765,8146070,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,177 -1252587,1630087766,8146070,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,177 -1252588,1630087767,8148821,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,177 -1252589,1630087768,8147091,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,177 -1252590,1630087769,8152818,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,175 -1252591,1630087770,8147091,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,177 -1252592,1630087771,8146892,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,177 -1252593,1630087772,8146892,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,177 -1252594,1630087773,8146022,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,177 -1252595,1630087774,8146274,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,177 -1252596,1630087775,8152818,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,175 -1252597,1630087776,8152818,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,175 -1252598,1630087777,8152818,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,175 -1252599,1630087778,8146902,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,177 -1252600,1630087779,8146612,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,177 -1252601,1630087780,8146070,1,27,-9.0,4,3.0,1,45300.0,1042852,5.0,177 -1252602,1630087781,8145849,1,27,-9.0,4,3.0,1,45300.0,1042852,5.0,177 -1252603,1630087782,8147524,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,177 -1252604,1630087783,8147524,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,177 -1252605,1630087784,8146902,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,177 -1252606,1630087785,8145602,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,177 -1252607,1630087786,8146070,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,177 -1252608,1630087787,8145999,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,177 -1252609,1630087788,8144512,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,177 -1252610,1630087789,8145602,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,177 -1252611,1630087790,8145849,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,177 -1252612,1630087791,8915355,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,178 -1252613,1630087792,8145849,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,177 -1252614,1630087793,8915355,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,178 -1252615,1630087794,8145849,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,177 -1252616,1630087795,8145849,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,177 -1252617,1630087796,8915355,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,178 -1252618,1630087797,8915355,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,178 -1252619,1630087798,8915355,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,178 -1252620,1630087799,8915355,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,178 -1252621,1630087800,8915355,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,178 -1252622,1630087801,8146070,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,177 -1252623,1630087802,8146070,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,177 -1252624,1630087803,8915355,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,178 -1252625,1630087804,8145849,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,177 -1252626,1630087805,8148821,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,177 -1252627,1630087806,8915355,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,178 -1252628,1630087807,8145849,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,177 -1252629,1630087808,8145849,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,177 -1252630,1630087809,8915355,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,178 -1252631,1630087810,8146070,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,177 -1252632,1630087811,8146892,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,177 -1252633,1630087812,8146070,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,177 -1252634,1630087813,8148821,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,177 -1252635,1630087814,8915355,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,178 -1252636,1630087815,8146070,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,177 -1252637,1630087816,8145645,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,177 -1252638,1630087817,8144512,2,44,-9.0,1,1.0,1,54000.0,1025215,4.0,177 -1252639,1630087818,8146718,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,177 -1252640,1630087819,8146070,2,32,-9.0,1,1.0,1,48000.0,1025215,6.0,177 -1252641,1630087820,8146718,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,177 -1252642,1630087821,8148008,2,32,-9.0,1,1.0,1,54000.0,1009585,6.0,178 -1252643,1630087822,8144512,2,34,-9.0,1,1.0,1,36000.0,1042852,6.0,177 -1252644,1630087823,8146892,2,25,-9.0,1,1.0,1,34000.0,1025215,6.0,177 -1252645,1630087824,8146070,2,34,-9.0,1,1.0,1,36000.0,1042852,6.0,177 -1252646,1630087825,8146070,4,28,-9.0,1,1.0,1,50000.0,1073094,4.0,177 -1252647,1630087826,8145849,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,177 -1252648,1630087827,8146070,4,28,-9.0,1,1.0,1,50000.0,1073094,4.0,177 -1252649,1630087828,8149187,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,177 -1252650,1630087829,8144512,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,177 -1252651,1630087830,8915355,4,41,-9.0,1,1.0,1,30000.0,1001264,4.0,178 -1252652,1630087831,8149187,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,177 -1252653,1630087832,8146892,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,177 -1252654,1630087833,8149372,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,178 -1252655,1630087834,8915355,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,178 -1252656,1630087835,8146892,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,177 -1252657,1630087836,8145849,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,177 -1252658,1630087837,8149187,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,177 -1252659,1630087838,8153275,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,175 -1252660,1630087839,8146892,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,177 -1252661,1630087840,8147631,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,178 -1252662,1630087841,8148008,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,178 -1252663,1630087842,8147631,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,178 -1252664,1630087843,8915355,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,178 -1252665,1630087844,8148008,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,178 -1252666,1630087845,8145849,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,177 -1252667,1630087846,8915355,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,178 -1252668,1630087847,8147091,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,177 -1252669,1630087848,8152818,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,175 -1252670,1630087849,8147524,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,177 -1252671,1630087850,8148821,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,177 -1252672,1630087851,8153275,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,175 -1252673,1630087852,8915355,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,178 -1252674,1630087853,8149387,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,178 -1252675,1630087854,8146718,2,41,-9.0,2,1.0,1,35000.0,1073094,3.0,177 -1252676,1630087855,8148821,2,43,1.0,2,1.0,1,40000.0,1001264,3.0,177 -1252677,1630087856,8145645,4,29,-9.0,2,5.0,1,36800.0,1001264,1.0,177 -1252678,1630087857,8146612,4,29,-9.0,2,5.0,1,36800.0,1001264,1.0,177 -1252679,1630087858,8147631,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,178 -1252680,1630087859,8144512,1,25,-9.0,2,2.0,1,48000.0,1042852,7.0,177 -1252681,1630087860,8146058,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,177 -1252682,1630087861,8149187,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,177 -1252683,1630087862,8146022,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,177 -1252684,1630087863,8148619,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,177 -1252685,1630087864,8148619,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,177 -1252686,1630087865,8146274,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,177 -1252687,1630087866,8146022,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,177 -1252688,1630087867,8148619,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,177 -1252689,1630087868,8146022,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,177 -1252690,1630087869,8146892,2,43,-9.0,2,1.0,1,50000.0,1009585,5.0,177 -1252691,1630087870,8146892,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,177 -1252692,1630087871,8146022,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,177 -1252693,1630087872,8145602,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,177 -1252694,1630087873,8145602,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,177 -1252695,1630087874,8148619,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,177 -1252696,1630087875,8149187,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,177 -1252697,1630087876,8146274,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,177 -1252698,1630087877,8149187,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,177 -1252699,1630087878,8153275,1,28,-9.0,2,1.0,1,58000.0,1009585,3.0,175 -1252700,1630087879,8148821,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,177 -1252701,1630087880,8146274,1,26,-9.0,2,2.0,1,41000.0,1001264,5.0,177 -1252702,1630087881,8148008,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,178 -1252703,1630087882,8147091,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,177 -1252704,1630087883,8144512,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,177 -1252705,1630087884,8145849,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,177 -1252706,1630087885,8148821,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,177 -1252707,1630087886,8146892,2,41,-9.0,1,1.0,1,80000.0,1073094,6.0,177 -1252708,1630087887,8145602,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,177 -1252709,1630087888,8149187,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,177 -1252710,1630087889,8147631,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,178 -1252711,1630087890,8144512,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,177 -1252712,1630087891,8146070,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,177 -1252713,1630087892,8144512,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,177 -1252714,1630087893,8148008,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,178 -1252715,1630087894,8146892,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,177 -1252716,1630087895,8148619,4,31,-9.0,4,2.0,1,79100.0,1042852,1.0,177 -1252717,1630087896,8146274,4,31,-9.0,4,2.0,1,79100.0,1042852,1.0,177 -1252718,1630087897,8915355,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,178 -1252719,1630087898,8915355,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,178 -1252720,1630087899,8915355,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,178 -1252721,1630087900,8145645,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,177 -1252722,1630087901,8147091,1,25,-9.0,2,1.0,1,75000.0,1001264,5.0,177 -1252723,1630087902,8149187,1,25,-9.0,2,1.0,1,75000.0,1001264,5.0,177 -1252724,1630087903,8146274,1,29,-9.0,2,1.0,1,79500.0,1025215,5.0,177 -1252725,1630087904,8146022,1,29,-9.0,2,1.0,1,79500.0,1025215,5.0,177 -1252726,1630087905,8145849,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,177 -1252727,1630087906,8146070,1,28,-9.0,2,2.0,1,65000.0,1001264,1.0,177 -1252728,1630087907,8147091,1,31,-9.0,2,2.0,1,84000.0,1073094,1.0,177 -1252729,1630087908,8148008,1,26,-9.0,2,2.0,1,80000.0,1001264,5.0,178 -1252730,1630087909,8152818,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,175 -1252731,1630087910,8146892,2,44,-9.0,4,0.0,1,24000.0,1042852,3.0,177 -1252732,1630087911,8149884,2,33,3.0,4,0.0,1,0.0,1001264,3.0,178 -1252733,1630087912,8148821,2,37,2.0,4,1.0,1,7800.0,1009585,1.0,177 -1252734,1630087913,8147524,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,177 -1252735,1630087914,8147524,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,177 -1252736,1630087915,8148821,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,177 -1252737,1630087916,8152818,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,175 -1252738,1630087917,8915355,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,178 -1252739,1630087918,8915355,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,178 -1252740,1630087919,8915355,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,178 -1252741,1630087920,8147091,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,177 -1252742,1630087921,8915355,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,178 -1252743,1630087922,8915355,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,178 -1252744,1630087923,8147524,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,177 -1252745,1630087924,8152818,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,175 -1252746,1630087925,8915355,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,178 -1252747,1630087926,8148821,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,177 -1252748,1630087927,8148008,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,178 -1252749,1630087928,8148821,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,177 -1252750,1630087929,8915355,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,178 -1252751,1630087930,8146070,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,177 -1252752,1630087931,8144512,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,177 -1252753,1630087932,8146070,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,177 -1252754,1630087933,8144512,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,177 -1252755,1630087934,8145645,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,177 -1252756,1630087935,8147524,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,177 -1252757,1630087936,8152818,2,42,-9.0,1,1.0,1,0.0,1025215,6.0,175 -1252758,1630087937,8147524,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,177 -1252759,1630087938,8145645,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,177 -1252760,1630087939,8148821,2,40,-9.0,1,1.0,1,0.0,1001264,4.0,177 -1252761,1630087940,8147524,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,177 -1252762,1630087941,8145602,2,42,-9.0,1,1.0,1,5000.0,1042852,6.0,177 -1252763,1630087942,8145602,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,177 -1252764,1630087943,8146892,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,177 -1252765,1630087944,8148008,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,178 -1252766,1630087945,8915355,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,178 -1252767,1630087946,8145602,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,177 -1252768,1630087947,8148619,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,177 -1252769,1630087948,8147524,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,177 -1252770,1630087949,8148619,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,177 -1252771,1630087950,8915355,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,178 -1252772,1630087951,8146902,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,177 -1252773,1630087952,8145602,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,177 -1252774,1630087953,8152818,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,175 -1252775,1630087954,8152818,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,175 -1252776,1630087955,8152818,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,175 -1252777,1630087956,8146902,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,177 -1252778,1630087957,8146070,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252779,1630087958,8144512,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252780,1630087959,8144512,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252781,1630087960,8146070,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252782,1630087961,8145849,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252783,1630087962,8145849,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252784,1630087963,8144512,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252785,1630087964,8146070,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252786,1630087965,8144512,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252787,1630087966,8144512,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252788,1630087967,8145849,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252789,1630087968,8145849,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252790,1630087969,8144512,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1252791,1630087970,8148008,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,178 -1252792,1630087971,8148821,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,177 -1252793,1630087972,8153275,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,175 -1252794,1630087973,8146902,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,177 -1252795,1630087974,8148821,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,177 -1252796,1630087975,8153275,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,175 -1252797,1630087976,8153275,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,175 -1252798,1630087977,8145602,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,177 -1252799,1630087978,8148821,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,177 -1252800,1630087979,8145602,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,177 -1252801,1630087980,8148821,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,177 -1252802,1630087981,8145602,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,177 -1252803,1630087982,8148821,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,177 -1252804,1630087983,8146892,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,177 -1252805,1630087984,8148821,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,177 -1252806,1630087985,8147631,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,178 -1252807,1630087986,8145645,2,28,1.0,2,1.0,1,13000.0,1073094,3.0,177 -1252808,1630087987,8148008,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,178 -1252809,1630087988,8152818,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,175 -1252810,1630087989,8145602,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,177 -1252811,1630087990,8148008,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,178 -1252812,1630087991,8148008,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,178 -1252813,1630087992,8915355,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,178 -1252814,1630087993,8146718,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,177 -1252815,1630087994,8146718,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,177 -1252816,1630087995,8915355,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,178 -1252817,1630087996,8915355,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,178 -1252818,1630087997,8146070,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252819,1630087998,8145849,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252820,1630087999,8145849,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252821,1630088000,8145849,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252822,1630088001,8145849,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252823,1630088002,8146070,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252824,1630088003,8145849,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252825,1630088004,8145849,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252826,1630088005,8146070,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252827,1630088006,8144512,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252828,1630088007,8145849,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252829,1630088008,8144512,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252830,1630088009,8146070,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252831,1630088010,8146070,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252832,1630088011,8145849,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,177 -1252833,1630088012,8915355,2,27,-9.0,1,1.0,1,26000.0,1001264,6.0,178 -1252834,1630088013,8146070,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,177 -1252835,1630088014,8146070,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,177 -1252836,1630088015,8146070,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,177 -1252837,1630088016,8148821,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,177 -1252838,1630088017,8915355,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,178 -1252839,1630088018,8148821,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,177 -1252840,1630088019,8145849,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,177 -1252841,1630088020,8146892,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,177 -1252842,1630088021,8148008,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,178 -1252843,1630088022,8144512,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,177 -1252844,1630088023,8144512,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,177 -1252845,1630088024,8144512,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,177 -1252846,1630088025,8145849,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,177 -1252847,1630088026,8915355,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,178 -1252848,1630088027,8145849,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,177 -1252849,1630088028,8145873,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,177 -1252850,1630088029,8145873,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,177 -1252851,1630088030,8148713,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,177 -1252852,1630088031,8146070,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,177 -1252853,1630088032,8148008,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,178 -1252854,1630088033,8147091,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,177 -1252855,1630088034,8148821,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,177 -1252856,1630088035,8145602,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,177 -1252857,1630088036,8148821,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,177 -1252858,1630088037,8145602,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,177 -1252859,1630088038,8148008,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,178 -1252860,1630088039,8147631,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,178 -1252861,1630088040,8148821,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,177 -1252862,1630088041,8145999,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,177 -1252863,1630088042,8915355,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,178 -1252864,1630088043,8152818,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,175 -1252865,1630088044,8148008,2,32,-9.0,2,1.0,1,28600.0,1009585,1.0,178 -1252866,1630088045,8146022,2,26,-9.0,2,1.0,1,20000.0,1042852,5.0,177 -1252867,1630088046,8146070,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,177 -1252868,1630088047,8144512,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,177 -1252869,1630088048,8149387,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,178 -1252870,1630088049,8915355,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,178 -1252871,1630088050,8915355,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,178 -1252872,1630088051,8915355,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,178 -1252873,1630088052,8915355,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,178 -1252874,1630088053,8915355,1,33,-9.0,2,1.0,1,25000.0,1009585,1.0,178 -1252875,1630088054,8146612,2,45,-9.0,1,1.0,1,36000.0,1009585,4.0,177 -1252876,1630088055,8146058,1,64,-9.0,1,1.0,1,59000.0,1073094,4.0,177 -1252877,1630088056,8149884,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,178 -1252878,1630088057,8148008,2,58,-9.0,1,0.0,1,8700.0,1009585,6.0,178 -1252879,1630088058,8145581,2,53,-9.0,1,0.0,1,9420.0,1009585,6.0,177 -1252880,1630088059,8915355,2,51,-9.0,1,0.0,1,8400.0,1042852,6.0,178 -1252881,1630088060,8915355,2,57,-9.0,1,0.0,1,8400.0,1009585,6.0,178 -1252882,1630088061,8149372,2,46,-9.0,1,0.0,1,4800.0,1001264,6.0,178 -1252883,1630088062,8146058,2,64,-9.0,1,0.0,1,27900.0,1042852,6.0,177 -1252884,1630088063,8915355,2,59,-9.0,1,0.0,1,9800.0,1009585,6.0,178 -1252885,1630088064,8146902,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,177 -1252886,1630088065,8146274,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,177 -1252887,1630088066,8146274,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,177 -1252888,1630088067,8148619,2,62,-9.0,1,1.0,1,26000.0,1073094,6.0,177 -1252889,1630088068,8915355,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,178 -1252890,1630088069,8145873,2,60,-9.0,2,0.0,1,13400.0,1042852,5.0,177 -1252891,1630088070,8915355,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,178 -1252892,1630088071,8153275,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,175 -1252893,1630088072,8145602,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,177 -1252894,1630088073,8152818,2,58,-9.0,2,1.0,1,26500.0,1073094,3.0,175 -1252895,1630088074,8915355,2,69,-9.0,1,0.0,1,14400.0,1001264,6.0,178 -1252896,1630088075,8148008,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,178 -1252897,1630088076,8148821,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,177 -1252898,1630088077,8147091,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,177 -1252899,1630088078,8147091,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,177 -1252900,1630088079,8146892,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,177 -1252901,1630088080,8145602,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,177 -1252902,1630088081,8145602,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,177 -1252903,1630088082,8145602,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,177 -1252904,1630088083,8145602,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,177 -1252905,1630088084,8145602,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,177 -1252906,1630088085,8145602,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,177 -1252907,1630088086,8145602,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,177 -1252908,1630088087,8145602,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,177 -1252909,1630088088,8145602,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,177 -1252910,1630088089,8145602,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,177 -1252911,1630088090,8915355,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,178 -1252912,1630088091,8145849,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,177 -1252913,1630088092,8149387,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,178 -1252914,1630088093,8146274,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,177 -1252915,1630088094,8146070,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,177 -1252916,1630088095,8144512,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,177 -1252917,1630088096,8144512,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,177 -1252918,1630088097,8146892,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,177 -1252919,1630088098,8149187,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,177 -1252920,1630088099,8146892,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,177 -1252921,1630088100,8148008,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,178 -1252922,1630088101,8148821,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,177 -1252923,1630088102,8149187,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,177 -1252924,1630088103,8149187,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,177 -1252925,1630088104,8148008,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,178 -1252926,1630088105,8148008,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,178 -1252927,1630088106,8147631,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,178 -1252928,1630088107,8149884,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,178 -1252929,1630088108,8149884,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,178 -1252930,1630088109,8146058,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,177 -1252931,1630088110,8145581,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,177 -1252932,1630088111,8145581,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,177 -1252933,1630088112,8146892,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,177 -1252934,1630088113,8145999,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,177 -1252935,1630088114,8145999,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,177 -1252936,1630088115,8145999,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,177 -1252937,1630088116,8145999,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,177 -1252938,1630088117,8145645,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,177 -1252939,1630088118,8145849,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,177 -1252940,1630088119,8146070,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,177 -1252941,1630088120,8146070,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,177 -1252942,1630088121,8144512,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,177 -1252943,1630088122,8145849,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,177 -1252944,1630088123,8144512,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,177 -1252945,1630088124,8144512,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,177 -1252946,1630088125,8144512,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,177 -1252947,1630088126,8148713,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,177 -1252948,1630088127,8145873,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,177 -1252949,1630088128,8915355,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,178 -1252950,1630088129,8146612,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,177 -1252951,1630088130,8915355,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,178 -1252952,1630088131,8915355,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,178 -1252953,1630088132,8915355,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,178 -1252954,1630088133,8915355,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,178 -1252955,1630088134,8915355,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,178 -1252956,1630088135,8915355,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,178 -1252957,1630088136,8915355,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,178 -1252958,1630088137,8915355,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,178 -1252959,1630088138,8915355,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,178 -1252960,1630088139,8915355,2,23,-9.0,1,1.0,1,1920.0,1073094,6.0,178 -1252961,1630088140,8149187,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,177 -1252962,1630088141,8145849,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,177 -1252963,1630088142,8147276,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,177 -1252964,1630088143,8915355,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,178 -1252965,1630088144,8144512,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,177 -1252966,1630088145,8148821,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,177 -1252967,1630088146,8148821,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,177 -1252968,1630088147,8146892,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,177 -1252969,1630088148,8146070,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,177 -1252970,1630088149,8147091,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,177 -1252971,1630088150,8147091,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,177 -1252972,1630088151,8147631,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,178 -1252973,1630088152,8148008,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,178 -1252974,1630088153,8915355,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,178 -1252975,1630088154,8146070,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,177 -1252976,1630088155,8147091,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,177 -1252977,1630088156,8146070,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,177 -1252978,1630088157,8147276,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,177 -1252979,1630088158,8149187,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,177 -1252980,1630088159,8146892,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,177 -1252981,1630088160,8148821,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,177 -1252982,1630088161,8144512,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,177 -1252983,1630088162,8147276,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,177 -1252984,1630088163,8146070,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,177 -1252985,1630088164,8146070,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,177 -1252986,1630088165,8145849,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,177 -1252987,1630088166,8146070,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,177 -1252988,1630088167,8146070,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,177 -1252989,1630088168,8145849,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,177 -1252990,1630088169,8146892,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,177 -1252991,1630088170,8147631,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,178 -1252992,1630088171,8148821,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,177 -1252993,1630088172,8147631,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,178 -1252994,1630088173,8149187,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,177 -1252995,1630088174,8148821,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,177 -1252996,1630088175,8146892,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,177 -1252997,1630088176,8147091,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,177 -1252998,1630088177,8147631,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,178 -1252999,1630088178,8146892,2,24,1.0,2,0.0,1,3000.0,1042852,3.0,177 -1253000,1630088179,8146612,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,177 -1253001,1630088180,8149372,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,178 -1253002,1630088181,8149884,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,178 -1253003,1630088182,8149884,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,178 -1253004,1630088183,8145645,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,177 -1253005,1630088184,8146612,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,177 -1253006,1630088185,8146612,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,177 -1253007,1630088186,8146612,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,177 -1253008,1630088187,8147091,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,177 -1253009,1630088188,8148821,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,177 -1253010,1630088189,8147091,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,177 -1253011,1630088190,8149187,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,177 -1253012,1630088191,8148821,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,177 -1253013,1630088192,8148008,1,24,-9.0,4,2.0,1,15600.0,1073094,5.0,178 -1253014,1630088193,8146892,1,24,-9.0,4,2.0,1,15600.0,1073094,5.0,177 -1253015,1630088194,8915355,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,178 -1253016,1630088195,8146058,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,177 -1253017,1630088196,8146058,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,177 -1253018,1630088197,8145602,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,177 -1253019,1630088198,8915355,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,178 -1253020,1630088199,8915355,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,178 -1253021,1630088200,8915355,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,178 -1253022,1630088201,8148821,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,177 -1253023,1630088202,8148821,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,177 -1253024,1630088203,8149187,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,177 -1253025,1630088204,8148008,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,178 -1253026,1630088205,8146892,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,177 -1253027,1630088206,8148821,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,177 -1253028,1630088207,8145602,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,177 -1253029,1630088208,8146892,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,177 -1253030,1630088209,8147091,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,177 -1253031,1630088210,8146709,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,177 -1253032,1630088211,8148821,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,177 -1253033,1630088212,8147091,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,177 -1253034,1630088213,8148821,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,177 -1253035,1630088214,8146892,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,177 -1253036,1630088215,8147915,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,178 -1253037,1630088216,8149884,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,178 -1253038,1630088217,8147631,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,178 -1253039,1630088218,8146274,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,177 -1253040,1630088219,8149387,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,178 -1253041,1630088220,8146274,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,177 -1253042,1630088221,8146022,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,177 -1253043,1630088222,8148619,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,177 -1253044,1630088223,8145849,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,177 -1253045,1630088224,8146892,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,177 -1253046,1630088225,8915355,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,178 -1253047,1630088226,8146070,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,177 -1253048,1630088227,8146070,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,177 -1253049,1630088228,8144512,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,177 -1253050,1630088229,8146070,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,177 -1253051,1630088230,8146070,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,177 -1253052,1630088231,8144512,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,177 -1253053,1630088232,8148008,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,178 -1253054,1630088233,8915355,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,178 -1253055,1630088234,8915355,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,178 -1253056,1630088235,8915355,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,178 -1253057,1630088236,8146892,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,177 -1253058,1630088237,8148008,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,178 -1253059,1630088238,8146892,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,177 -1253060,1630088239,8148821,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,177 -1253061,1630088240,8146892,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,177 -1253062,1630088241,8148821,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,177 -1253063,1630088242,8148821,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,177 -1253064,1630088243,8149187,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,177 -1253065,1630088244,8147091,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,177 -1253066,1630088245,8148008,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,178 -1253067,1630088246,8152818,4,49,-9.0,1,0.0,1,9990.0,1025215,4.0,175 -1253068,1630088247,8146274,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,177 -1253069,1630088248,8915355,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,178 -1253070,1630088249,8147631,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,178 -1253071,1630088250,8145602,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,177 -1253072,1630088251,8148821,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,177 -1253073,1630088252,8915355,2,29,-9.0,1,1.0,1,24000.0,1009585,6.0,178 -1253074,1630088253,8146058,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,177 -1253075,1630088254,8149372,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,178 -1253076,1630088255,8149187,1,57,-9.0,2,1.0,1,19600.0,1001264,2.0,177 -1253077,1630088256,8145581,1,24,-9.0,5,5.0,1,82000.0,1009585,7.0,177 -1253078,1630088257,8149884,2,23,2.0,4,0.0,1,7700.0,1009585,3.0,178 -1253079,1630088258,8148619,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,177 -1253080,1630088259,8149187,2,52,-9.0,1,1.0,1,0.0,1042852,4.0,177 -1253081,1630088260,8152818,1,28,-9.0,2,2.0,1,89000.0,1073094,5.0,175 -1253082,1630088261,8915355,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,178 -1253083,1630088262,8149187,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,177 -1253084,1630088263,8149387,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,178 -1253085,1630088264,8148312,1,30,-9.0,1,1.0,1,15000.0,1001264,4.0,178 -1253086,1630088265,8147524,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,177 -1253087,1630088266,8146902,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,177 -1253088,1630088267,8152818,1,33,-9.0,2,2.0,1,165190.0,1001264,1.0,175 -1253089,1630088268,8148713,1,26,-9.0,2,2.0,1,12000.0,1009585,5.0,177 -1253090,1630088269,8147179,2,44,-9.0,1,0.0,1,4600.0,1009585,4.0,177 -1253091,1630088270,8146070,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,177 -1253092,1630088271,8149187,4,31,1.0,3,0.0,1,25830.0,1042852,1.0,177 -1253093,1630088272,8148008,2,36,2.0,3,1.0,1,290.0,1042852,3.0,178 -1253094,1630088273,8149187,2,42,-9.0,1,0.0,1,27000.0,1025215,6.0,177 -1253095,1630088274,8148821,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,177 -1253096,1630088275,8145602,2,39,2.0,3,0.0,1,9000.0,1025215,3.0,177 -1253097,1630088276,8146892,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,177 -1253098,1630088277,8148821,2,44,-9.0,4,0.0,1,24000.0,1042852,3.0,177 -1253099,1630088278,8144512,1,24,-9.0,2,2.0,1,22500.0,1025215,5.0,177 -1253100,1630088279,8152818,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,175 -1253101,1630088280,8152818,2,26,-9.0,2,1.0,1,73000.0,1001264,1.0,175 -1253102,1630088281,8152818,2,39,-9.0,2,0.0,1,580.0,1025215,2.0,175 -1253103,1630088282,8146274,2,53,-9.0,1,1.0,1,12900.0,1025215,6.0,177 -1253104,1630088283,8148619,2,36,-9.0,1,1.0,1,40000.0,1025215,6.0,177 -1253105,1630088284,8146892,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,177 -1253106,1630088285,8149187,2,23,-9.0,1,0.0,1,4000.0,1073094,6.0,177 -1253107,1630088286,8148821,4,28,1.0,3,1.0,1,20000.0,1001264,1.0,177 -1253108,1630088287,8915355,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,178 -1253109,1630088288,8147091,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,177 -1253110,1630088289,8152818,2,34,-9.0,2,0.0,1,46300.0,1042852,1.0,175 -1253111,1630088290,8147631,4,28,-9.0,1,1.0,1,50000.0,1073094,4.0,178 -1253112,1630088291,8145602,2,47,-9.0,3,0.0,1,13300.0,1042852,3.0,177 -1253113,1630088292,8148008,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,178 -1253114,1630088293,8148619,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,177 -1253115,1630088294,8152818,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,175 -1253116,1630088295,8144512,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,177 -1253117,1630088296,8149187,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,177 -1253118,1630088297,8147091,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,177 -1253119,1630088298,8147524,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,177 -1253120,1630088299,8148312,2,43,-9.0,2,1.0,1,20000.0,1025215,2.0,178 -1253121,1630088300,8152818,1,26,-9.0,1,1.0,1,13000.0,1042852,6.0,175 -1253122,1630088301,8146070,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,177 -1253123,1630088302,8152818,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,175 -1253124,1630088303,8915355,2,24,2.0,3,1.0,1,13000.0,1025215,3.0,178 -1253125,1630088304,8148008,2,28,-9.0,2,2.0,1,50000.0,1001264,3.0,178 -1253126,1630088305,8152818,2,24,-9.0,4,2.0,1,58800.0,1042852,2.0,175 -1253127,1630088306,8152818,2,26,2.0,4,1.0,1,36800.0,1001264,3.0,175 -1253128,1630088307,8146022,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,177 -1253129,1630088308,8147524,2,23,1.0,2,0.0,1,6600.0,1025215,3.0,177 -1253130,1630088309,8149387,1,19,1.0,2,1.0,1,15000.0,1042852,3.0,178 -1253131,1630088310,8145581,1,25,-9.0,4,4.0,1,94504.0,1025215,7.0,177 -1253132,1630088311,8148821,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,177 -1253133,1630088312,8152818,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,175 -1253134,1630088313,8152818,2,39,-9.0,2,1.0,1,69000.0,1001264,1.0,175 -1253135,1630088314,8148821,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,177 -1253136,1630088315,8147091,2,20,-9.0,1,1.0,1,15000.0,1001264,6.0,177 -1253137,1630088316,8145602,2,30,-9.0,2,0.0,1,14700.0,1009585,1.0,177 -1253138,1630088317,8152818,2,43,-9.0,1,1.0,1,50000.0,1073094,4.0,175 -1253139,1630088318,8147631,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,178 -1253140,1630088319,8147091,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,177 -1253141,1630088320,8146718,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,177 -1253142,1630088321,8915355,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,178 -1253143,1630088322,8915355,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,178 -1253144,1630088323,8145602,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,177 -1253145,1630088324,8152818,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,175 -1253146,1630088325,8146892,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,177 -1253147,1630088326,8152818,2,25,1.0,3,1.0,1,7640.0,1042852,3.0,175 -1253148,1630088327,8147091,2,50,-9.0,1,1.0,1,32000.0,1001264,6.0,177 -1253149,1630088328,8148008,1,24,-9.0,4,2.0,1,15600.0,1073094,5.0,178 -1253150,1630088329,8152818,4,41,-9.0,2,2.0,1,109100.0,1009585,1.0,175 -1253151,1630088330,8152818,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,175 -1253152,1630088331,8152818,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,175 -1253153,1630088332,8152818,4,36,3.0,4,1.0,1,23000.0,1009585,3.0,175 -1253154,1630088333,8146058,2,46,-9.0,2,1.0,1,15000.0,1042852,3.0,177 -1253155,1630088334,8146022,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,177 -1253156,1630088335,8147631,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,178 -1253157,1630088336,8148821,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,177 -1253158,1630088337,8152818,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,175 -1253159,1630088338,8145602,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,177 -1253160,1630088339,8915355,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,178 -1253161,1630088340,8146892,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,177 -1253162,1630088341,8148312,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,178 -1253163,1630088342,8147631,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,178 -1253164,1630088343,8152818,1,59,-9.0,1,1.0,1,30700.0,1025215,6.0,175 -1253165,1630088344,8145849,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,177 -1253166,1630088345,8152818,2,42,-9.0,4,3.0,1,0.0,1009585,1.0,175 -1253167,1630088346,8147091,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,177 -1253168,1630088347,8148821,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,177 -1253169,1630088348,8147631,2,34,4.0,5,1.0,1,0.0,1042852,3.0,178 -1253170,1630088349,8148615,2,47,-9.0,2,1.0,1,17100.0,1001264,2.0,177 -1253171,1630088350,8147915,4,32,-9.0,5,5.0,1,72000.0,1025215,5.0,178 -1253172,1630088351,8152818,2,44,-9.0,1,1.0,1,0.0,1009585,6.0,175 -1253173,1630088352,8145602,2,24,3.0,5,1.0,1,0.0,1073094,3.0,177 -1253174,1630088353,8146070,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,177 -1253175,1630088354,8146718,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,177 -1253176,1630088355,8148008,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,178 -1253177,1630088356,8147091,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,177 -1253178,1630088357,8148008,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,178 -1253179,1630088358,8148619,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,177 -1253180,1630088359,8148312,1,30,-9.0,1,0.0,1,25200.0,1042852,6.0,178 -1253181,1630088360,8146274,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,177 -1253182,1630088361,8152818,1,53,-9.0,2,1.0,1,11400.0,1042852,3.0,175 -1253183,1630088362,8149884,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,178 -1253184,1630088363,8149187,4,47,-9.0,4,1.0,1,32800.0,1009585,3.0,177 -1253185,1630088364,8146070,1,28,-9.0,2,2.0,1,65000.0,1001264,1.0,177 -1253186,1630088365,8144512,2,28,-9.0,2,2.0,1,40000.0,1009585,7.0,177 -1253187,1630088366,8152818,2,40,-9.0,1,1.0,1,22000.0,1001264,6.0,175 -1253188,1630088367,8148008,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,178 -1253189,1630088368,8915355,1,33,-9.0,2,1.0,1,25000.0,1009585,1.0,178 -1253190,1630088369,8152818,2,42,1.0,2,1.0,1,2000.0,1073094,3.0,175 -1253191,1630088370,8915355,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,178 -1253192,1630088371,8149372,1,64,-9.0,1,1.0,1,12300.0,1009585,4.0,178 -1253193,1630088372,8152818,4,40,-9.0,2,2.0,1,391000.0,1009585,5.0,175 -1253194,1630088373,8148619,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,177 -1253195,1630088374,8146892,2,94,-9.0,1,1.0,1,20300.0,1001264,4.0,177 -1253196,1630088375,8146274,2,60,-9.0,1,0.0,1,13300.0,1001264,6.0,177 -1253197,1630088376,8149387,1,33,-9.0,5,5.0,1,170670.0,1001264,7.0,178 -1253198,1630088377,8144512,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,177 -1253199,1630088378,8147631,2,59,-9.0,1,0.0,1,31000.0,1042852,6.0,178 -1253200,1630088379,8152818,2,31,-9.0,1,1.0,1,91000.0,1009585,6.0,175 -1253201,1630088380,8152818,2,40,-9.0,3,1.0,1,34900.0,1042852,1.0,175 -1253202,1630088381,8148008,2,26,-9.0,2,0.0,1,12200.0,1001264,7.0,178 -1253203,1630088382,8148008,2,22,2.0,3,0.0,1,4800.0,1009585,3.0,178 -1253204,1630088383,8147631,2,43,-9.0,2,1.0,1,50000.0,1009585,5.0,178 -1253205,1630088384,8146612,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,177 -1253206,1630088385,8152818,2,42,-9.0,2,3.0,1,75000.0,1073094,5.0,175 -1253207,1630088386,8915355,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,178 -1253208,1630088387,8148008,2,33,4.0,5,1.0,1,5000.0,1001264,3.0,178 -1253209,1630088388,8915355,4,61,-9.0,2,0.0,1,6200.0,1009585,3.0,178 -1253210,1630088389,8149187,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,177 -1253211,1630088390,8146274,2,22,1.0,2,0.0,1,1100.0,1001264,3.0,177 -1253212,1630088391,8149187,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,177 -1253213,1630088392,8149187,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,177 -1253214,1630088393,8147091,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,177 -1253215,1630088394,8152818,2,43,-9.0,2,2.0,1,53320.0,1001264,2.0,175 -1253216,1630088395,8146892,2,44,-9.0,2,1.0,1,18000.0,1042852,2.0,177 -1253217,1630088396,8148008,1,32,2.0,3,0.0,1,0.0,1025215,3.0,178 -1253218,1630088397,8146892,2,77,-9.0,2,0.0,1,8000.0,1042852,1.0,177 -1253219,1630088398,8915355,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,178 -1253220,1630088399,8147524,2,22,3.0,4,1.0,1,18600.0,1001264,3.0,177 -1253221,1630088400,8152818,1,42,-9.0,2,3.0,1,675000.0,1025215,1.0,175 -1253222,1630088401,8146892,4,48,-9.0,2,1.0,1,5000.0,1025215,3.0,177 -1253223,1630088402,8152818,2,27,-9.0,2,0.0,1,33000.0,1009585,1.0,175 -1253224,1630088403,8152818,2,34,-9.0,2,1.0,1,141000.0,1025215,1.0,175 -1253225,1630088404,8152818,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,175 -1253226,1630088405,8152818,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,175 -1253227,1630088406,8152818,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,175 -1253228,1630088407,8152818,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,175 -1253229,1630088408,8152818,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,175 -1253230,1630088409,8152818,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,175 -1253231,1630088410,8153275,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,175 -1253232,1630088411,8153275,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,175 -1253233,1630088412,8153275,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,175 -1253234,1630088413,8158471,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,176 -1253235,1630088414,8159406,1,31,-9.0,2,2.0,1,404000.0,1025215,7.0,176 -1253236,1630088415,8152818,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,175 -1253237,1630088416,8153275,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,175 -1253238,1630088417,8157253,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,176 -1253239,1630088418,8152818,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,175 -1253240,1630088419,8157253,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,176 -1253241,1630088420,8152818,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,175 -1253242,1630088421,8152818,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,175 -1253243,1630088422,8153275,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,175 -1253244,1630088423,8157253,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,176 -1253245,1630088424,8153275,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,175 -1253246,1630088425,8153275,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,175 -1253247,1630088426,8157253,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,176 -1253248,1630088427,8152818,2,32,-9.0,1,1.0,1,54000.0,1009585,6.0,175 -1253249,1630088428,8152818,2,32,-9.0,1,1.0,1,54000.0,1009585,6.0,175 -1253250,1630088429,8159406,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,176 -1253251,1630088430,8155068,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,175 -1253252,1630088431,8153275,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,175 -1253253,1630088432,8158471,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,176 -1253254,1630088433,8152818,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,175 -1253255,1630088434,8153275,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,175 -1253256,1630088435,8159639,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,176 -1253257,1630088436,8159068,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,176 -1253258,1630088437,8158797,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,176 -1253259,1630088438,8159122,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,176 -1253260,1630088439,8159122,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,176 -1253261,1630088440,8158471,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,176 -1253262,1630088441,8153275,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,175 -1253263,1630088442,8153275,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,175 -1253264,1630088443,8152818,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,175 -1253265,1630088444,8157253,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,176 -1253266,1630088445,8156994,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,176 -1253267,1630088446,8156994,2,44,-9.0,1,0.0,1,9350.0,1025215,6.0,176 -1253268,1630088447,8152818,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,175 -1253269,1630088448,8152818,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,175 -1253270,1630088449,8152818,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,175 -1253271,1630088450,8152818,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,175 -1253272,1630088451,8157253,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,176 -1253273,1630088452,8157253,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,176 -1253274,1630088453,8152818,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,175 -1253275,1630088454,8156923,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,176 -1253276,1630088455,8156923,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,176 -1253277,1630088456,8152818,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,175 -1253278,1630088457,8157253,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,176 -1253279,1630088458,8157253,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,176 -1253280,1630088459,8152818,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,175 -1253281,1630088460,8152818,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,175 -1253282,1630088461,8152818,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,175 -1253283,1630088462,8157253,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,176 -1253284,1630088463,8156923,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,176 -1253285,1630088464,8152818,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,175 -1253286,1630088465,8156923,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,176 -1253287,1630088466,8152818,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,175 -1253288,1630088467,8152818,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,175 -1253289,1630088468,8159122,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,176 -1253290,1630088469,8157253,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,176 -1253291,1630088470,8152818,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,175 -1253292,1630088471,8156923,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,176 -1253293,1630088472,8156994,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,176 -1253294,1630088473,8152818,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,175 -1253295,1630088474,8152818,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,175 -1253296,1630088475,8152818,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,175 -1253297,1630088476,8152818,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,175 -1253298,1630088477,8152818,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,175 -1253299,1630088478,8152818,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,175 -1253300,1630088479,8157253,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,176 -1253301,1630088480,8157253,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,176 -1253302,1630088481,8152818,2,35,-9.0,1,1.0,1,5600.0,1073094,4.0,175 -1253303,1630088482,8157253,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,176 -1253304,1630088483,8157253,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,176 -1253305,1630088484,8152818,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,175 -1253306,1630088485,8152818,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,175 -1253307,1630088486,8152818,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,175 -1253308,1630088487,8156994,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,176 -1253309,1630088488,8152818,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,175 -1253310,1630088489,8156994,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,176 -1253311,1630088490,8153275,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,175 -1253312,1630088491,8159406,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,176 -1253313,1630088492,8157253,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,176 -1253314,1630088493,8159639,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,176 -1253315,1630088494,8156994,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,176 -1253316,1630088495,8157253,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,176 -1253317,1630088496,8153275,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,175 -1253318,1630088497,8153275,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,175 -1253319,1630088498,8157253,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,176 -1253320,1630088499,8157253,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,176 -1253321,1630088500,8157253,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,176 -1253322,1630088501,8157253,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,176 -1253323,1630088502,8157253,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,176 -1253324,1630088503,8157253,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,176 -1253325,1630088504,8157253,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,176 -1253326,1630088505,8153275,1,33,-9.0,2,1.0,1,25000.0,1009585,1.0,175 -1253327,1630088506,8152818,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,175 -1253328,1630088507,8157253,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,176 -1253329,1630088508,8158471,1,59,-9.0,1,1.0,1,318000.0,1073094,4.0,176 -1253330,1630088509,8157253,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,176 -1253331,1630088510,8157253,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,176 -1253332,1630088511,8159639,1,59,-9.0,1,1.0,1,318000.0,1073094,4.0,176 -1253333,1630088512,8152818,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,175 -1253334,1630088513,8152818,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,175 -1253335,1630088514,8152818,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,175 -1253336,1630088515,8152818,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,175 -1253337,1630088516,8157253,2,64,-9.0,1,1.0,1,32700.0,1042852,4.0,176 -1253338,1630088517,8153275,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,175 -1253339,1630088518,8158955,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,176 -1253340,1630088519,8157253,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,176 -1253341,1630088520,8152818,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,175 -1253342,1630088521,8152818,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,175 -1253343,1630088522,8152818,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,175 -1253344,1630088523,8152818,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,175 -1253345,1630088524,8152818,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,175 -1253346,1630088525,8152818,2,62,-9.0,1,1.0,1,37000.0,1009585,6.0,175 -1253347,1630088526,8152818,2,50,-9.0,1,1.0,1,50000.0,1073094,4.0,175 -1253348,1630088527,8159639,2,61,-9.0,1,1.0,1,40000.0,1025215,6.0,176 -1253349,1630088528,8153275,2,64,-9.0,1,1.0,1,32000.0,1042852,6.0,175 -1253350,1630088529,8152818,2,56,-9.0,1,1.0,1,39000.0,1009585,4.0,175 -1253351,1630088530,8152818,2,50,-9.0,1,1.0,1,50000.0,1073094,4.0,175 -1253352,1630088531,8152818,2,59,-9.0,1,1.0,1,50020.0,1001264,6.0,175 -1253353,1630088532,8157253,2,50,-9.0,1,1.0,1,38000.0,1073094,6.0,176 -1253354,1630088533,8158471,1,63,-9.0,1,1.0,1,50020.0,1001264,4.0,176 -1253355,1630088534,8153275,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,175 -1253356,1630088535,8152818,1,63,-9.0,1,1.0,1,36000.0,1025215,6.0,175 -1253357,1630088536,8158471,1,63,-9.0,1,1.0,1,50020.0,1001264,4.0,176 -1253358,1630088537,8153275,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,175 -1253359,1630088538,8152818,1,63,-9.0,1,1.0,1,36000.0,1025215,6.0,175 -1253360,1630088539,8152818,1,64,-9.0,1,1.0,1,59000.0,1073094,4.0,175 -1253361,1630088540,8159406,1,63,-9.0,1,1.0,1,50020.0,1001264,4.0,176 -1253362,1630088541,8152818,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,175 -1253363,1630088542,8153275,2,54,-9.0,2,2.0,1,58900.0,1025215,1.0,175 -1253364,1630088543,8159639,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,176 -1253365,1630088544,8152818,1,57,-9.0,1,1.0,1,72000.0,1042852,6.0,175 -1253366,1630088545,8157253,2,62,-9.0,1,0.0,1,28800.0,1001264,4.0,176 -1253367,1630088546,8157253,2,47,-9.0,1,0.0,1,16300.0,1073094,4.0,176 -1253368,1630088547,8157253,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,176 -1253369,1630088548,8157253,2,56,-9.0,1,0.0,1,0.0,1009585,6.0,176 -1253370,1630088549,8152818,2,59,-9.0,1,0.0,1,14300.0,1073094,6.0,175 -1253371,1630088550,8157253,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,176 -1253372,1630088551,8157253,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,176 -1253373,1630088552,8159639,2,45,-9.0,1,0.0,1,16800.0,1009585,4.0,176 -1253374,1630088553,8156994,2,62,-9.0,1,0.0,1,21000.0,1001264,6.0,176 -1253375,1630088554,8152818,2,52,-9.0,1,0.0,1,8900.0,1009585,6.0,175 -1253376,1630088555,8157253,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,176 -1253377,1630088556,8159068,2,61,-9.0,1,0.0,1,8000.0,1001264,4.0,176 -1253378,1630088557,8157253,2,46,-9.0,1,0.0,1,0.0,1025215,4.0,176 -1253379,1630088558,8157253,2,51,-9.0,1,0.0,1,8900.0,1009585,4.0,176 -1253380,1630088559,8159068,2,53,-9.0,1,0.0,1,8400.0,1042852,6.0,176 -1253381,1630088560,8157253,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,176 -1253382,1630088561,8152818,2,59,-9.0,1,0.0,1,14300.0,1073094,6.0,175 -1253383,1630088562,8158797,2,54,-9.0,1,0.0,1,4400.0,1025215,4.0,176 -1253384,1630088563,8159406,2,54,-9.0,1,0.0,1,8300.0,1042852,4.0,176 -1253385,1630088564,8157253,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,176 -1253386,1630088565,8157253,2,62,-9.0,1,0.0,1,1800.0,1001264,4.0,176 -1253387,1630088566,8157253,2,47,-9.0,1,0.0,1,16300.0,1073094,4.0,176 -1253388,1630088567,8157253,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,176 -1253389,1630088568,8156994,2,45,-9.0,1,0.0,1,4400.0,1025215,4.0,176 -1253390,1630088569,8152818,2,57,-9.0,1,0.0,1,13900.0,1073094,4.0,175 -1253391,1630088570,8152818,2,52,-9.0,1,0.0,1,8800.0,1001264,6.0,175 -1253392,1630088571,8157253,2,58,-9.0,1,0.0,1,9000.0,1042852,4.0,176 -1253393,1630088572,8157253,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,176 -1253394,1630088573,8157253,2,62,-9.0,1,0.0,1,8100.0,1073094,6.0,176 -1253395,1630088574,8157253,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,176 -1253396,1630088575,8157253,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,176 -1253397,1630088576,8153275,2,50,-9.0,1,0.0,1,8900.0,1009585,6.0,175 -1253398,1630088577,8157253,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,176 -1253399,1630088578,8157253,2,55,-9.0,1,0.0,1,8500.0,1025215,6.0,176 -1253400,1630088579,8157253,2,59,-9.0,1,0.0,1,7600.0,1001264,6.0,176 -1253401,1630088580,8157253,2,64,-9.0,1,0.0,1,12600.0,1001264,4.0,176 -1253402,1630088581,8153275,2,49,-9.0,1,0.0,1,0.0,1001264,4.0,175 -1253403,1630088582,8159122,2,64,-9.0,1,0.0,1,25800.0,1009585,6.0,176 -1253404,1630088583,8157253,2,64,-9.0,1,0.0,1,3660.0,1042852,6.0,176 -1253405,1630088584,8157253,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,176 -1253406,1630088585,8157253,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,176 -1253407,1630088586,8157253,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,176 -1253408,1630088587,8157253,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,176 -1253409,1630088588,8157253,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,176 -1253410,1630088589,8157253,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,176 -1253411,1630088590,8157253,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,176 -1253412,1630088591,8158797,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,176 -1253413,1630088592,8157253,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,176 -1253414,1630088593,8157253,1,60,-9.0,1,0.0,1,14000.0,1073094,6.0,176 -1253415,1630088594,8157253,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,176 -1253416,1630088595,8158797,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,176 -1253417,1630088596,8157253,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,176 -1253418,1630088597,8157253,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,176 -1253419,1630088598,8152818,2,53,-9.0,1,1.0,1,13200.0,1025215,4.0,175 -1253420,1630088599,8157253,2,62,-9.0,1,1.0,1,13200.0,1009585,4.0,176 -1253421,1630088600,8152818,2,61,-9.0,1,1.0,1,17600.0,1073094,6.0,175 -1253422,1630088601,8159068,2,55,-9.0,1,1.0,1,8500.0,1025215,4.0,176 -1253423,1630088602,8157253,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,176 -1253424,1630088603,8157253,2,53,-9.0,1,1.0,1,22600.0,1001264,4.0,176 -1253425,1630088604,8157253,2,57,-9.0,1,1.0,1,8700.0,1025215,4.0,176 -1253426,1630088605,8152818,2,53,-9.0,1,1.0,1,13200.0,1025215,4.0,175 -1253427,1630088606,8153275,2,51,-9.0,1,1.0,1,1000.0,1009585,4.0,175 -1253428,1630088607,8152818,2,46,-9.0,1,1.0,1,0.0,1073094,6.0,175 -1253429,1630088608,8159068,2,58,-9.0,1,1.0,1,18000.0,1073094,4.0,176 -1253430,1630088609,8156994,2,57,-9.0,1,1.0,1,12200.0,1001264,4.0,176 -1253431,1630088610,8157253,2,57,-9.0,1,1.0,1,8700.0,1025215,4.0,176 -1253432,1630088611,8157253,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,176 -1253433,1630088612,8153275,1,64,-9.0,1,1.0,1,12300.0,1009585,4.0,175 -1253434,1630088613,8157253,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,176 -1253435,1630088614,8157253,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,176 -1253436,1630088615,8153275,1,64,-9.0,1,1.0,1,12300.0,1009585,4.0,175 -1253437,1630088616,8156994,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,176 -1253438,1630088617,8157253,2,54,-9.0,2,0.0,1,11800.0,1001264,3.0,176 -1253439,1630088618,8152818,2,63,-9.0,2,1.0,1,780.0,1009585,3.0,175 -1253440,1630088619,8159639,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,176 -1253441,1630088620,8152818,2,45,-9.0,1,0.0,1,22900.0,1073094,6.0,175 -1253442,1630088621,8157253,2,58,-9.0,1,0.0,1,21800.0,1001264,6.0,176 -1253443,1630088622,8156994,2,51,-9.0,1,0.0,1,19000.0,1025215,4.0,176 -1253444,1630088623,8157253,2,58,-9.0,1,0.0,1,21800.0,1001264,6.0,176 -1253445,1630088624,8152818,2,58,-9.0,1,0.0,1,12000.0,1025215,6.0,175 -1253446,1630088625,8159639,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,176 -1253447,1630088626,8157253,2,58,-9.0,1,0.0,1,21800.0,1001264,6.0,176 -1253448,1630088627,8159406,2,56,-9.0,1,0.0,1,9600.0,1009585,4.0,176 -1253449,1630088628,8159406,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,176 -1253450,1630088629,8158471,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,176 -1253451,1630088630,8159068,2,52,-9.0,1,0.0,1,13400.0,1042852,6.0,176 -1253452,1630088631,8152818,2,64,-9.0,1,0.0,1,15000.0,1025215,4.0,175 -1253453,1630088632,8157253,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,176 -1253454,1630088633,8153275,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,175 -1253455,1630088634,8153275,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,175 -1253456,1630088635,8158955,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253457,1630088636,8159122,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253458,1630088637,8159068,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253459,1630088638,8159068,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253460,1630088639,8158955,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253461,1630088640,8156923,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253462,1630088641,8156923,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253463,1630088642,8156923,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253464,1630088643,8153275,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,175 -1253465,1630088644,8159068,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253466,1630088645,8156923,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253467,1630088646,8159122,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253468,1630088647,8158797,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253469,1630088648,8159068,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253470,1630088649,8156923,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253471,1630088650,8158955,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253472,1630088651,8156923,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253473,1630088652,8158955,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,176 -1253474,1630088653,8157253,2,54,-9.0,1,1.0,1,21900.0,1025215,4.0,176 -1253475,1630088654,8152818,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,175 -1253476,1630088655,8158471,2,60,-9.0,1,1.0,1,28000.0,1001264,6.0,176 -1253477,1630088656,8157253,2,55,-9.0,1,1.0,1,21900.0,1009585,6.0,176 -1253478,1630088657,8156994,2,54,-9.0,1,1.0,1,17700.0,1001264,6.0,176 -1253479,1630088658,8157253,2,59,-9.0,1,1.0,1,2800.0,1001264,4.0,176 -1253480,1630088659,8159122,2,51,-9.0,1,1.0,1,1200.0,1073094,6.0,176 -1253481,1630088660,8152818,2,46,-9.0,1,1.0,1,1000.0,1001264,6.0,175 -1253482,1630088661,8156994,2,51,-9.0,1,1.0,1,1200.0,1073094,6.0,176 -1253483,1630088662,8152818,2,55,-9.0,1,1.0,1,17000.0,1073094,6.0,175 -1253484,1630088663,8152818,2,49,-9.0,1,1.0,1,26000.0,1001264,6.0,175 -1253485,1630088664,8153275,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,175 -1253486,1630088665,8159639,1,56,-9.0,1,1.0,1,18000.0,1042852,4.0,176 -1253487,1630088666,8152818,1,62,-9.0,1,1.0,1,22600.0,1001264,4.0,175 -1253488,1630088667,8152818,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,175 -1253489,1630088668,8157253,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,176 -1253490,1630088669,8157253,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,176 -1253491,1630088670,8157253,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,176 -1253492,1630088671,8157253,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,176 -1253493,1630088672,8159639,1,46,-9.0,1,1.0,1,20000.0,1001264,4.0,176 -1253494,1630088673,8157253,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,176 -1253495,1630088674,8156994,1,46,-9.0,1,1.0,1,20000.0,1001264,4.0,176 -1253496,1630088675,8157253,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,176 -1253497,1630088676,8158471,1,46,-9.0,1,1.0,1,20000.0,1001264,4.0,176 -1253498,1630088677,8157253,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,176 -1253499,1630088678,8153275,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,175 -1253500,1630088679,8152818,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,175 -1253501,1630088680,8159639,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,176 -1253502,1630088681,8156994,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,176 -1253503,1630088682,8153275,2,50,-9.0,2,1.0,1,20480.0,1073094,3.0,175 -1253504,1630088683,8152818,2,54,-9.0,2,0.0,1,19000.0,1001264,1.0,175 -1253505,1630088684,8152818,2,61,-9.0,2,1.0,1,29250.0,1042852,3.0,175 -1253506,1630088685,8152818,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,175 -1253507,1630088686,8152818,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,175 -1253508,1630088687,8158797,2,65,-9.0,1,1.0,1,34200.0,1009585,4.0,176 -1253509,1630088688,8152818,1,66,-9.0,1,1.0,1,49000.0,1025215,4.0,175 -1253510,1630088689,8157253,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,176 -1253511,1630088690,8153275,1,69,-9.0,2,2.0,1,41280.0,1042852,5.0,175 -1253512,1630088691,8157253,2,80,-9.0,1,0.0,1,5500.0,1042852,4.0,176 -1253513,1630088692,8158797,2,70,-9.0,1,0.0,1,8600.0,1042852,6.0,176 -1253514,1630088693,8157253,2,66,-9.0,1,0.0,1,8400.0,1025215,4.0,176 -1253515,1630088694,8157253,2,72,-9.0,1,0.0,1,18830.0,1001264,6.0,176 -1253516,1630088695,8157253,2,65,-9.0,1,0.0,1,5300.0,1042852,6.0,176 -1253517,1630088696,8159068,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,176 -1253518,1630088697,8157253,2,66,-9.0,1,0.0,1,17700.0,1025215,6.0,176 -1253519,1630088698,8157253,2,81,-9.0,1,0.0,1,20000.0,1025215,6.0,176 -1253520,1630088699,8157253,2,79,-9.0,1,0.0,1,13800.0,1025215,4.0,176 -1253521,1630088700,8152818,2,68,-9.0,1,0.0,1,17360.0,1009585,6.0,175 -1253522,1630088701,8157253,2,70,-9.0,1,0.0,1,15530.0,1009585,6.0,176 -1253523,1630088702,8159068,2,74,-9.0,1,0.0,1,7200.0,1009585,6.0,176 -1253524,1630088703,8157253,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,176 -1253525,1630088704,8153275,2,65,-9.0,1,0.0,1,9000.0,1001264,6.0,175 -1253526,1630088705,8157253,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,176 -1253527,1630088706,8152818,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,175 -1253528,1630088707,8159122,2,73,-9.0,1,0.0,1,10600.0,1009585,6.0,176 -1253529,1630088708,8159639,2,75,-9.0,1,0.0,1,8800.0,1001264,4.0,176 -1253530,1630088709,8157253,2,69,-9.0,1,0.0,1,12000.0,1042852,6.0,176 -1253531,1630088710,8157253,1,67,-9.0,1,0.0,1,8300.0,1073094,6.0,176 -1253532,1630088711,8157253,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,176 -1253533,1630088712,8157253,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,176 -1253534,1630088713,8153275,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,175 -1253535,1630088714,8157253,1,65,-9.0,1,0.0,1,1100.0,1001264,4.0,176 -1253536,1630088715,8157253,1,74,-9.0,1,0.0,1,9600.0,1042852,4.0,176 -1253537,1630088716,8159639,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,176 -1253538,1630088717,8156994,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,176 -1253539,1630088718,8158955,2,78,-9.0,1,1.0,1,25100.0,1073094,6.0,176 -1253540,1630088719,8159068,2,79,-9.0,1,1.0,1,9300.0,1009585,6.0,176 -1253541,1630088720,8157253,2,84,-9.0,1,1.0,1,10100.0,1001264,6.0,176 -1253542,1630088721,8159639,2,79,-9.0,1,1.0,1,13000.0,1073094,6.0,176 -1253543,1630088722,8152818,2,69,-9.0,1,1.0,1,10500.0,1073094,6.0,175 -1253544,1630088723,8157253,2,69,-9.0,1,1.0,1,3100.0,1001264,6.0,176 -1253545,1630088724,8156994,2,81,-9.0,1,1.0,1,8400.0,1009585,4.0,176 -1253546,1630088725,8158471,2,81,-9.0,1,1.0,1,8400.0,1009585,4.0,176 -1253547,1630088726,8157253,2,77,-9.0,1,1.0,1,15100.0,1042852,4.0,176 -1253548,1630088727,8152818,2,71,-9.0,1,1.0,1,15700.0,1042852,6.0,175 -1253549,1630088728,8157253,2,77,-9.0,1,1.0,1,9600.0,1009585,6.0,176 -1253550,1630088729,8152818,1,69,-9.0,1,1.0,1,14600.0,1001264,6.0,175 -1253551,1630088730,8152818,1,69,-9.0,1,1.0,1,14600.0,1001264,6.0,175 -1253552,1630088731,8159068,1,72,-9.0,1,1.0,1,25520.0,1001264,6.0,176 -1253553,1630088732,8159639,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,176 -1253554,1630088733,8152818,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,175 -1253555,1630088734,8152818,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,175 -1253556,1630088735,8152818,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,175 -1253557,1630088736,8152818,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,175 -1253558,1630088737,8152818,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,175 -1253559,1630088738,8152818,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,175 -1253560,1630088739,8152818,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,175 -1253561,1630088740,8152818,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,175 -1253562,1630088741,8152818,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,175 -1253563,1630088742,8159122,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,176 -1253564,1630088743,8156923,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,176 -1253565,1630088744,8156923,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,176 -1253566,1630088745,8158797,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,176 -1253567,1630088746,8153275,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,175 -1253568,1630088747,8153275,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,175 -1253569,1630088748,8153275,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,175 -1253570,1630088749,8153275,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,175 -1253571,1630088750,8153275,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,175 -1253572,1630088751,8152818,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,175 -1253573,1630088752,8152818,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,175 -1253574,1630088753,8152818,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,175 -1253575,1630088754,8159406,2,23,-9.0,1,0.0,1,4000.0,1073094,6.0,176 -1253576,1630088755,8157253,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,176 -1253577,1630088756,8157253,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,176 -1253578,1630088757,8157253,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,176 -1253579,1630088758,8157253,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,176 -1253580,1630088759,8157253,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,176 -1253581,1630088760,8157253,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,176 -1253582,1630088761,8157253,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,176 -1253583,1630088762,8152818,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,175 -1253584,1630088763,8152818,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,175 -1253585,1630088764,8152818,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,175 -1253586,1630088765,8152818,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,175 -1253587,1630088766,8157253,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,176 -1253588,1630088767,8157253,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,176 -1253589,1630088768,8158471,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,176 -1253590,1630088769,8152818,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,175 -1253591,1630088770,8153275,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,175 -1253592,1630088771,8152818,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,175 -1253593,1630088772,8156994,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,176 -1253594,1630088773,8153275,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,175 -1253595,1630088774,8152818,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,175 -1253596,1630088775,8153275,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,175 -1253597,1630088776,8153275,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,175 -1253598,1630088777,8157253,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,176 -1253599,1630088778,8159406,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,176 -1253600,1630088779,8157253,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,176 -1253601,1630088780,8157253,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,176 -1253602,1630088781,8152818,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,175 -1253603,1630088782,8157253,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,176 -1253604,1630088783,8152818,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,175 -1253605,1630088784,8153275,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,175 -1253606,1630088785,8152818,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,175 -1253607,1630088786,8152818,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,175 -1253608,1630088787,8152818,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,175 -1253609,1630088788,8153275,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,175 -1253610,1630088789,8159122,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,176 -1253611,1630088790,8157253,2,23,-9.0,1,0.0,1,22000.0,1009585,6.0,176 -1253612,1630088791,8157253,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,176 -1253613,1630088792,8157253,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,176 -1253614,1630088793,8159406,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,176 -1253615,1630088794,8157253,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,176 -1253616,1630088795,8159639,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,176 -1253617,1630088796,8158471,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,176 -1253618,1630088797,8156994,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253619,1630088798,8156994,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253620,1630088799,8159406,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253621,1630088800,8159639,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253622,1630088801,8158471,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253623,1630088802,8159639,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253624,1630088803,8158471,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253625,1630088804,8156994,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253626,1630088805,8158471,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253627,1630088806,8159406,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253628,1630088807,8159406,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253629,1630088808,8158471,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253630,1630088809,8158471,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253631,1630088810,8156994,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253632,1630088811,8158471,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253633,1630088812,8159406,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253634,1630088813,8152818,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,175 -1253635,1630088814,8158471,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,176 -1253636,1630088815,8153275,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,175 -1253637,1630088816,8158471,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,176 -1253638,1630088817,8158955,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,176 -1253639,1630088818,8153275,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,175 -1253640,1630088819,8159406,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,176 -1253641,1630088820,8159122,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,176 -1253642,1630088821,8158471,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,176 -1253643,1630088822,8158471,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,176 -1253644,1630088823,8153275,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,175 -1253645,1630088824,8159406,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,176 -1253646,1630088825,8153275,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,175 -1253647,1630088826,8159406,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,176 -1253648,1630088827,8159639,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,176 -1253649,1630088828,8153275,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,175 -1253650,1630088829,8152818,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,175 -1253651,1630088830,8156994,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,176 -1253652,1630088831,8159639,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,176 -1253653,1630088832,8159406,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,176 -1253654,1630088833,8158955,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,176 -1253655,1630088834,8153275,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,175 -1253656,1630088835,8153275,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,175 -1253657,1630088836,8158797,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,176 -1253658,1630088837,8158471,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,176 -1253659,1630088838,8152818,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,175 -1253660,1630088839,8152818,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,175 -1253661,1630088840,8159406,1,24,-9.0,2,2.0,1,22500.0,1025215,5.0,176 -1253662,1630088841,8159068,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,176 -1253663,1630088842,8156923,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,176 -1253664,1630088843,8158797,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,176 -1253665,1630088844,8158797,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,176 -1253666,1630088845,8158797,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,176 -1253667,1630088846,8153275,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,175 -1253668,1630088847,8153275,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,175 -1253669,1630088848,8158471,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,176 -1253670,1630088849,8153275,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,175 -1253671,1630088850,8153275,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,175 -1253672,1630088851,8153275,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,175 -1253673,1630088852,8153275,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,175 -1253674,1630088853,8153275,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,175 -1253675,1630088854,8159639,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,176 -1253676,1630088855,8153275,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,175 -1253677,1630088856,8157253,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,176 -1253678,1630088857,8153275,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,175 -1253679,1630088858,8153275,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,175 -1253680,1630088859,8153275,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,175 -1253681,1630088860,8153275,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,175 -1253682,1630088861,8153275,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,175 -1253683,1630088862,8157253,2,55,-9.0,1,1.0,1,21900.0,1009585,6.0,176 -1253684,1630088863,8153275,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,175 -1253685,1630088864,8159406,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,176 -1253686,1630088865,8152818,1,55,-9.0,2,1.0,1,15200.0,1001264,7.0,175 -1253687,1630088866,8157253,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,176 -1253688,1630088867,8159068,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,176 -1253689,1630088868,8157253,2,65,-9.0,1,0.0,1,5300.0,1042852,6.0,176 -1253690,1630088869,8153275,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,175 -1253691,1630088870,8152818,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,175 -1253692,1630088871,8152818,1,24,-9.0,5,5.0,1,82000.0,1009585,7.0,175 -1253693,1630088872,8159122,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,176 -1253694,1630088873,8152818,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,175 -1253695,1630088874,8152818,2,67,-9.0,1,1.0,1,7200.0,1042852,6.0,175 -1253696,1630088875,8152818,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,175 -1253697,1630088876,8157253,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,176 -1253698,1630088877,8152818,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,175 -1253699,1630088878,8159406,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,176 -1253700,1630088879,8152818,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,175 -1253701,1630088880,8159406,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,176 -1253702,1630088881,8153275,1,33,-9.0,5,5.0,1,170670.0,1001264,7.0,175 -1253703,1630088882,8159406,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,176 -1253704,1630088883,8159406,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,176 -1253705,1630088884,8152818,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,175 -1253706,1630088885,8152818,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,175 -1253707,1630088886,8152818,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,175 -1253708,1630088887,8157253,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,176 -1253709,1630088888,8156994,2,71,-9.0,1,0.0,1,31400.0,1073094,4.0,176 -1253710,1630088889,8153275,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,175 -1253711,1630088890,8152818,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,175 -1253712,1630088891,8152818,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,175 -1253713,1630088892,8156994,1,60,-9.0,2,2.0,1,9600.0,1001264,1.0,176 -1253714,1630088893,8152818,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,175 -1253715,1630088894,8153275,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,175 -1253716,1630088895,8152818,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,175 -1253717,1630088896,8157253,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,176 -1253718,1630088897,8152818,3,54,-9.0,1,1.0,1,52000.0,1009585,4.0,175 -1253719,1630088898,8157253,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,176 -1253720,1630088899,8152818,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,175 -1253721,1630088900,8153275,2,58,-9.0,3,2.0,1,55200.0,1025215,3.0,175 -1253722,1630088901,8159122,2,26,-9.0,1,1.0,1,13000.0,1073094,6.0,176 -1253723,1630088902,8152818,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,175 -1253724,1630088903,8158955,3,61,-9.0,1,0.0,1,8670.0,1025215,6.0,176 -1253725,1630088904,8152818,2,66,-9.0,1,1.0,1,32000.0,1001264,4.0,175 -1253726,1630088905,8158955,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,176 -1253727,1630088906,8158955,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,176 -1253728,1630088907,8152818,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,175 -1253729,1630088908,8157253,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,176 -1253730,1630088909,8152818,2,57,-9.0,2,0.0,1,20540.0,1025215,3.0,175 -1253731,1630088910,8153275,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,175 -1253732,1630088911,8159406,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,176 -1253733,1630088912,8152818,2,59,-9.0,1,0.0,1,31000.0,1042852,6.0,175 -1253734,1630088913,8159406,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,176 -1253735,1630088914,8152818,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,175 -1253736,1630088915,8159406,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,176 -1253737,1630088916,8152818,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,175 -1253738,1630088917,8152818,1,25,-9.0,2,1.0,1,75000.0,1001264,5.0,175 -1253739,1630088918,8158471,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,176 -1253740,1630088919,8152818,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,175 -1253741,1630088920,8152818,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,175 -1253742,1630088921,8157253,2,81,-9.0,2,0.0,1,14100.0,1009585,3.0,176 -1253743,1630088922,8157253,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,176 -1253744,1630088923,8159639,1,63,-9.0,1,1.0,1,50020.0,1001264,4.0,176 -1253745,1630088924,8152818,2,45,-9.0,2,1.0,1,68000.0,1001264,3.0,175 -1253746,1630088925,8152818,2,45,-9.0,2,1.0,1,9500.0,1025215,3.0,175 -1253747,1630088926,8152818,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,175 -1253748,1630088927,8152818,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,175 -1253749,1630088928,8153275,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,175 -1253750,1630088929,8152818,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,175 -1253751,1630088930,8159122,1,72,-9.0,1,1.0,1,25520.0,1001264,6.0,176 -1253752,1630088931,8152818,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,175 -1253753,1630088932,8152818,2,59,-9.0,3,1.0,1,14600.0,1001264,3.0,175 -1253754,1630088933,8156994,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,176 -1253755,1630088934,8152818,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,175 -1253756,1630088935,8157253,1,62,-9.0,2,0.0,1,23900.0,1001264,5.0,176 -1253757,1630088936,8153275,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,175 -1253758,1630088937,8152818,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,175 -1253759,1630088938,8156923,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,176 -1253760,1630088939,8157253,2,52,-9.0,2,0.0,1,12160.0,1001264,7.0,176 -1253761,1630088940,8153275,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,175 -1253762,1630088941,8159122,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,176 -1253763,1630088942,8157253,2,65,-9.0,1,2.0,1,16000.0,1001264,6.0,176 -1253764,1630088943,8152818,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,175 -1253765,1630088944,8159122,2,56,-9.0,1,1.0,1,64900.0,1009585,6.0,176 -1253766,1630088945,8153275,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,175 -1253767,1630088946,8152818,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,175 -1253768,1630088947,8157253,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,176 -1253769,1630088948,8157253,2,54,-9.0,2,2.0,1,27000.0,1009585,1.0,176 -1253770,1630088949,8153275,1,49,-9.0,2,2.0,1,58000.0,1042852,1.0,175 -1253771,1630088950,8152818,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,175 -1253772,1630088951,8152818,2,57,-9.0,3,0.0,1,8690.0,1042852,3.0,175 -1253773,1630088952,8159406,2,57,-9.0,1,0.0,1,38400.0,1073094,4.0,176 -1253774,1630088953,8152818,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,175 -1253775,1630088954,8157253,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,176 -1253776,1630088955,8156994,2,81,-9.0,2,1.0,1,13700.0,1073094,3.0,176 -1253777,1630088956,8158955,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,176 -1253778,1630088957,8158471,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,176 -1253779,1630088958,8157253,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,176 -1253780,1630088959,8152818,2,52,-9.0,2,0.0,1,23400.0,1073094,7.0,175 -1253781,1630088960,8153275,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,175 -1253782,1630088961,8152818,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,175 -1253783,1630088962,8153275,1,19,1.0,2,1.0,1,15000.0,1042852,3.0,175 -1253784,1630088963,8159068,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,176 -1253785,1630088964,8152818,2,58,-9.0,3,0.0,1,11500.0,1001264,3.0,175 -1253786,1630088965,8144163,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,174 -1253787,1630088966,8144163,1,28,-9.0,1,1.0,1,116000.0,1009585,4.0,174 -1253788,1630088967,8146421,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,174 -1253789,1630088968,8144163,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,174 -1253790,1630088969,8141856,1,36,1.0,3,1.0,1,112000.0,1042852,1.0,174 -1253791,1630088970,8141445,1,36,1.0,3,1.0,1,112000.0,1042852,1.0,174 -1253792,1630088971,8142974,1,36,1.0,3,1.0,1,112000.0,1042852,1.0,174 -1253793,1630088972,8141540,3,40,1.0,3,2.0,1,180200.0,1042852,5.0,174 -1253794,1630088973,8141233,3,40,1.0,3,2.0,1,180200.0,1042852,5.0,174 -1253795,1630088974,8141540,3,40,1.0,3,2.0,1,180200.0,1042852,5.0,174 -1253796,1630088975,8144163,1,37,-9.0,2,4.0,1,153000.0,1009585,5.0,174 -1253797,1630088976,8144163,1,42,-9.0,2,3.0,1,675000.0,1025215,1.0,174 -1253798,1630088977,8141856,1,42,-9.0,2,2.0,1,103400.0,1025215,1.0,174 -1253799,1630088978,8142974,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,174 -1253800,1630088979,8144493,1,64,-9.0,2,2.0,1,118790.0,1025215,1.0,174 -1253801,1630088980,8142431,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,174 -1253802,1630088981,8142638,1,59,-9.0,1,1.0,1,356000.0,1025215,6.0,174 -1253803,1630088982,8141445,1,45,-9.0,1,1.0,1,128000.0,1009585,4.0,174 -1253804,1630088983,8144163,3,59,-9.0,1,1.0,1,131000.0,1042852,4.0,174 -1253805,1630088984,8144163,3,59,-9.0,1,1.0,1,131000.0,1042852,4.0,174 -1253806,1630088985,8142431,1,53,-9.0,3,3.0,1,139500.0,1025215,1.0,174 -1253807,1630088986,8144163,4,46,1.0,3,2.0,1,104000.0,1001264,1.0,174 -1253808,1630088987,8142974,3,52,-9.0,2,2.0,1,120000.0,1025215,1.0,174 -1253809,1630088988,8142638,1,63,-9.0,2,3.0,1,184050.0,1009585,1.0,174 -1253810,1630088989,8146470,1,47,-9.0,1,1.0,1,47000.0,1073094,4.0,174 -1253811,1630088990,8144163,4,64,2.0,3,2.0,1,46600.0,1042852,2.0,174 -1253812,1630088991,8141409,3,49,-9.0,1,0.0,1,99100.0,1025215,6.0,174 -1253813,1630088992,8142431,1,55,-9.0,1,1.0,1,92070.0,1009585,6.0,174 -1253814,1630088993,8144163,1,62,-9.0,3,0.0,1,75900.0,1042852,1.0,174 -1253815,1630088994,8142431,2,56,-9.0,1,0.0,1,8600.0,1009585,6.0,174 -1253816,1630088995,8146488,4,50,-9.0,1,0.0,1,0.0,1042852,6.0,174 -1253817,1630088996,8141146,1,49,-9.0,1,0.0,1,8500.0,1025215,6.0,174 -1253818,1630088997,8141642,1,54,-9.0,1,1.0,1,8000.0,1042852,4.0,174 -1253819,1630088998,8144163,3,55,1.0,3,1.0,1,13600.0,1042852,1.0,174 -1253820,1630088999,8144493,3,55,1.0,3,1.0,1,13600.0,1042852,1.0,174 -1253821,1630089000,8144163,1,69,-9.0,1,1.0,1,121800.0,1025215,6.0,174 -1253822,1630089001,8144493,1,82,-9.0,1,1.0,1,32000.0,1001264,6.0,174 -1253823,1630089002,8143604,1,24,-9.0,5,4.0,1,125100.0,1001264,5.0,174 -1253824,1630089003,8146269,1,24,-9.0,5,4.0,1,125100.0,1001264,5.0,174 -1253825,1630089004,8142431,1,16,1.0,1,1.0,1,32300.0,1009585,4.0,174 -1253826,1630089005,8142431,1,16,1.0,1,1.0,1,32300.0,1009585,4.0,174 -1253827,1630089006,8142431,4,23,-9.0,1,1.0,1,0.0,1025215,6.0,174 -1253828,1630089007,8142431,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,174 -1253829,1630089008,8142431,1,24,-9.0,2,1.0,1,16600.0,1001264,5.0,174 -1253830,1630089009,8915356,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,174 -1253831,1630089010,8148197,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,174 -1253832,1630089011,8148197,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,174 -1253833,1630089012,8148197,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,174 -1253834,1630089013,8146470,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,174 -1253835,1630089014,8146470,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,174 -1253836,1630089015,8146470,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,174 -1253837,1630089016,8146470,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,174 -1253838,1630089017,8146470,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,174 -1253839,1630089018,8141559,1,33,-9.0,5,5.0,1,170670.0,1001264,7.0,174 -1253840,1630089019,8140936,1,33,-9.0,5,5.0,1,170670.0,1001264,7.0,174 -1253841,1630089020,8141642,1,43,2.0,4,3.0,1,108800.0,1025215,1.0,174 -1253842,1630089021,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253843,1630089022,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253844,1630089023,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253845,1630089024,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253846,1630089025,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253847,1630089026,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253848,1630089027,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253849,1630089028,8144163,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253850,1630089029,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253851,1630089030,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253852,1630089031,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253853,1630089032,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253854,1630089033,8144163,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253855,1630089034,8144493,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,174 -1253856,1630089035,8915356,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,174 -1253857,1630089036,8148197,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,174 -1253858,1630089037,8146470,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,174 -1253859,1630089038,8146470,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,174 -1253860,1630089039,8148197,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,174 -1253861,1630089040,8148197,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,174 -1253862,1630089041,8146470,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,174 -1253863,1630089042,8146470,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,174 -1253864,1630089043,8142431,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,174 -1253865,1630089044,8148197,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253866,1630089045,8148197,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253867,1630089046,8148197,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253868,1630089047,8915356,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253869,1630089048,8146470,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253870,1630089049,8146470,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253871,1630089050,8146470,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253872,1630089051,8915356,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253873,1630089052,8146470,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253874,1630089053,8146470,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253875,1630089054,8148197,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253876,1630089055,8148197,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253877,1630089056,8148197,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1253878,1630089057,8146470,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,174 -1253879,1630089058,8146470,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,174 -1253880,1630089059,8146470,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,174 -1253881,1630089060,8146470,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,174 -1253882,1630089061,8146470,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,174 -1253883,1630089062,8145922,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,174 -1253884,1630089063,8146199,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,174 -1253885,1630089064,8146199,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,174 -1253886,1630089065,8146470,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,174 -1253887,1630089066,8915356,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,174 -1253888,1630089067,8146421,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,174 -1253889,1630089068,8145277,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,174 -1253890,1630089069,8146470,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,174 -1253891,1630089070,8146470,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,174 -1253892,1630089071,8146347,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,174 -1253893,1630089072,8146421,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,174 -1253894,1630089073,8148197,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,174 -1253895,1630089074,8148197,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,174 -1253896,1630089075,8146470,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,174 -1253897,1630089076,8146470,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,174 -1253898,1630089077,8142286,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,174 -1253899,1630089078,8146470,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,174 -1253900,1630089079,8148197,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1253901,1630089080,8146470,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,174 -1253902,1630089081,8139050,2,43,-9.0,1,1.0,1,55000.0,1009585,6.0,174 -1253903,1630089082,8144709,2,34,-9.0,1,1.0,1,30000.0,1073094,6.0,174 -1253904,1630089083,8148197,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,174 -1253905,1630089084,8146470,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,174 -1253906,1630089085,8148197,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,174 -1253907,1630089086,8148197,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,174 -1253908,1630089087,8146470,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,174 -1253909,1630089088,8146470,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,174 -1253910,1630089089,8144709,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,174 -1253911,1630089090,8144709,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,174 -1253912,1630089091,8144709,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,174 -1253913,1630089092,8144709,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,174 -1253914,1630089093,8146470,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,174 -1253915,1630089094,8142286,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,174 -1253916,1630089095,8146470,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,174 -1253917,1630089096,8146470,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,174 -1253918,1630089097,8144709,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,174 -1253919,1630089098,8141445,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,174 -1253920,1630089099,8148197,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,174 -1253921,1630089100,8146470,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,174 -1253922,1630089101,8141445,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,174 -1253923,1630089102,8146470,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,174 -1253924,1630089103,8146470,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,174 -1253925,1630089104,8148197,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,174 -1253926,1630089105,8141642,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,174 -1253927,1630089106,8146470,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,174 -1253928,1630089107,8142286,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,174 -1253929,1630089108,8142286,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,174 -1253930,1630089109,8146470,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253931,1630089110,8146470,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253932,1630089111,8915356,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253933,1630089112,8146470,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253934,1630089113,8148197,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253935,1630089114,8146470,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253936,1630089115,8146470,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253937,1630089116,8146470,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253938,1630089117,8146470,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253939,1630089118,8146470,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253940,1630089119,8146470,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253941,1630089120,8146470,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1253942,1630089121,8146470,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,174 -1253943,1630089122,8145922,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,174 -1253944,1630089123,8146199,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,174 -1253945,1630089124,8145922,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,174 -1253946,1630089125,8143261,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,174 -1253947,1630089126,8146470,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,174 -1253948,1630089127,8146470,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,174 -1253949,1630089128,8148197,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,174 -1253950,1630089129,8148197,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,174 -1253951,1630089130,8146470,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,174 -1253952,1630089131,8148197,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,174 -1253953,1630089132,8148197,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,174 -1253954,1630089133,8148197,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,174 -1253955,1630089134,8148197,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,174 -1253956,1630089135,8141409,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,174 -1253957,1630089136,8148197,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,174 -1253958,1630089137,8146470,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,174 -1253959,1630089138,8141409,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,174 -1253960,1630089139,8146470,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,174 -1253961,1630089140,8146470,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,174 -1253962,1630089141,8915356,1,28,-9.0,1,1.0,1,62000.0,1009585,6.0,174 -1253963,1630089142,8148197,1,28,-9.0,1,1.0,1,62000.0,1009585,6.0,174 -1253964,1630089143,8148197,1,28,-9.0,1,1.0,1,62000.0,1009585,6.0,174 -1253965,1630089144,8146470,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,174 -1253966,1630089145,8146470,1,28,-9.0,1,1.0,1,62000.0,1009585,6.0,174 -1253967,1630089146,8143261,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,174 -1253968,1630089147,8148197,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,174 -1253969,1630089148,8141086,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,174 -1253970,1630089149,8141086,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,174 -1253971,1630089150,8146470,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,174 -1253972,1630089151,8145922,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,174 -1253973,1630089152,8146470,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,174 -1253974,1630089153,8915356,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,174 -1253975,1630089154,8141409,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,174 -1253976,1630089155,8142286,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,174 -1253977,1630089156,8142286,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,174 -1253978,1630089157,8142286,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,174 -1253979,1630089158,8142286,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,174 -1253980,1630089159,8142286,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,174 -1253981,1630089160,8144639,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,174 -1253982,1630089161,8900553,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,174 -1253983,1630089162,8141559,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,174 -1253984,1630089163,8146421,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,174 -1253985,1630089164,8144639,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,174 -1253986,1630089165,8146542,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,174 -1253987,1630089166,8146470,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,174 -1253988,1630089167,8146470,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,174 -1253989,1630089168,8915356,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,174 -1253990,1630089169,8142431,1,42,1.0,3,2.0,1,87000.0,1009585,1.0,174 -1253991,1630089170,8142431,1,42,1.0,3,2.0,1,87000.0,1009585,1.0,174 -1253992,1630089171,8144384,1,29,-9.0,2,1.0,1,79500.0,1025215,5.0,174 -1253993,1630089172,8141409,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,174 -1253994,1630089173,8141086,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,174 -1253995,1630089174,8141409,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,174 -1253996,1630089175,8141409,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,174 -1253997,1630089176,8142286,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,174 -1253998,1630089177,8142286,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,174 -1253999,1630089178,8142286,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,174 -1254000,1630089179,8142286,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,174 -1254001,1630089180,8142286,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,174 -1254002,1630089181,8142286,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,174 -1254003,1630089182,8145776,2,43,1.0,5,0.0,1,9200.0,1025215,3.0,174 -1254004,1630089183,8144384,2,43,1.0,5,0.0,1,9200.0,1025215,3.0,174 -1254005,1630089184,8145277,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,174 -1254006,1630089185,8142286,2,43,-9.0,1,0.0,1,8700.0,1009585,6.0,174 -1254007,1630089186,8142431,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,174 -1254008,1630089187,8142431,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,174 -1254009,1630089188,8145277,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,174 -1254010,1630089189,8145277,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,174 -1254011,1630089190,8142286,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,174 -1254012,1630089191,8141086,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,174 -1254013,1630089192,8145277,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,174 -1254014,1630089193,8142431,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,174 -1254015,1630089194,8144709,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254016,1630089195,8141409,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254017,1630089196,8141409,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254018,1630089197,8144709,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254019,1630089198,8144709,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254020,1630089199,8144709,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254021,1630089200,8141086,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254022,1630089201,8144709,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254023,1630089202,8144709,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254024,1630089203,8141086,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254025,1630089204,8141409,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254026,1630089205,8144709,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254027,1630089206,8144709,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254028,1630089207,8142286,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254029,1630089208,8146065,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,174 -1254030,1630089209,8142144,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,174 -1254031,1630089210,8143261,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,174 -1254032,1630089211,8145776,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,174 -1254033,1630089212,8145776,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,174 -1254034,1630089213,8142286,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254035,1630089214,8146470,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,174 -1254036,1630089215,8143261,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,174 -1254037,1630089216,8141409,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,174 -1254038,1630089217,8142286,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254039,1630089218,8146470,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,174 -1254040,1630089219,8145922,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,174 -1254041,1630089220,8144709,2,41,-9.0,1,1.0,1,8900.0,1009585,6.0,174 -1254042,1630089221,8142431,2,42,-9.0,1,1.0,1,0.0,1025215,6.0,174 -1254043,1630089222,8144384,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,174 -1254044,1630089223,8146832,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,174 -1254045,1630089224,8146832,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,174 -1254046,1630089225,8141409,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,174 -1254047,1630089226,8141086,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,174 -1254048,1630089227,8142638,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,174 -1254049,1630089228,8141409,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,174 -1254050,1630089229,8146269,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,174 -1254051,1630089230,8142286,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254052,1630089231,8145922,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,174 -1254053,1630089232,8146620,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,174 -1254054,1630089233,8142286,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254055,1630089234,8145922,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,174 -1254056,1630089235,8146199,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,174 -1254057,1630089236,8142286,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254058,1630089237,8146620,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,174 -1254059,1630089238,8142286,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254060,1630089239,8144709,1,26,-9.0,1,1.0,1,0.0,1073094,6.0,174 -1254061,1630089240,8148197,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,174 -1254062,1630089241,8143261,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,174 -1254063,1630089242,8143261,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,174 -1254064,1630089243,8141642,2,44,1.0,3,0.0,1,8400.0,1025215,2.0,174 -1254065,1630089244,8141642,2,44,1.0,3,0.0,1,8400.0,1025215,2.0,174 -1254066,1630089245,8144425,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,174 -1254067,1630089246,8143261,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,174 -1254068,1630089247,8141642,2,44,1.0,3,0.0,1,8400.0,1025215,2.0,174 -1254069,1630089248,8141086,1,32,2.0,3,0.0,1,0.0,1025215,3.0,174 -1254070,1630089249,8141086,1,32,2.0,3,0.0,1,0.0,1025215,3.0,174 -1254071,1630089250,8144384,1,32,2.0,3,0.0,1,0.0,1025215,3.0,174 -1254072,1630089251,8141086,1,32,2.0,3,0.0,1,0.0,1025215,3.0,174 -1254073,1630089252,8144384,1,32,2.0,3,0.0,1,0.0,1025215,3.0,174 -1254074,1630089253,8145776,1,32,2.0,3,0.0,1,0.0,1025215,3.0,174 -1254075,1630089254,8146269,1,32,2.0,3,0.0,1,0.0,1025215,3.0,174 -1254076,1630089255,8144384,1,32,2.0,3,0.0,1,0.0,1025215,3.0,174 -1254077,1630089256,8141086,1,32,2.0,3,0.0,1,0.0,1025215,3.0,174 -1254078,1630089257,8141409,1,32,2.0,3,0.0,1,0.0,1025215,3.0,174 -1254079,1630089258,8140936,2,31,1.0,3,1.0,1,8400.0,1073094,2.0,174 -1254080,1630089259,8142431,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,174 -1254081,1630089260,8144639,2,31,1.0,3,1.0,1,8400.0,1073094,2.0,174 -1254082,1630089261,8142431,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,174 -1254083,1630089262,8142431,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,174 -1254084,1630089263,8142431,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,174 -1254085,1630089264,8139050,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,174 -1254086,1630089265,8142621,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,174 -1254087,1630089266,8139050,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,174 -1254088,1630089267,8146470,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,174 -1254089,1630089268,8148197,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,174 -1254090,1630089269,8144384,2,36,-9.0,2,0.0,1,8100.0,1073094,7.0,174 -1254091,1630089270,8146199,2,35,1.0,2,0.0,1,7400.0,1073094,3.0,174 -1254092,1630089271,8142431,2,41,1.0,2,0.0,1,9700.0,1009585,3.0,174 -1254093,1630089272,8143261,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,174 -1254094,1630089273,8142431,2,28,1.0,2,1.0,1,0.0,1001264,3.0,174 -1254095,1630089274,8141409,3,37,1.0,2,1.0,1,16000.0,1042852,3.0,174 -1254096,1630089275,8141086,3,37,1.0,2,1.0,1,16000.0,1042852,3.0,174 -1254097,1630089276,8141086,3,37,1.0,2,1.0,1,16000.0,1042852,3.0,174 -1254098,1630089277,8143261,1,41,1.0,5,0.0,1,22000.0,1042852,3.0,174 -1254099,1630089278,8142431,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,174 -1254100,1630089279,8142431,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,174 -1254101,1630089280,8142286,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,174 -1254102,1630089281,8142286,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,174 -1254103,1630089282,8142286,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,174 -1254104,1630089283,8142286,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,174 -1254105,1630089284,8142431,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,174 -1254106,1630089285,8142431,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,174 -1254107,1630089286,8142286,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,174 -1254108,1630089287,8142621,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,174 -1254109,1630089288,8142621,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,174 -1254110,1630089289,8142621,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,174 -1254111,1630089290,8141086,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,174 -1254112,1630089291,8143261,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,174 -1254113,1630089292,8146470,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,174 -1254114,1630089293,8915356,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,174 -1254115,1630089294,8144425,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,174 -1254116,1630089295,8146470,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,174 -1254117,1630089296,8146470,1,31,-9.0,1,1.0,1,18000.0,1001264,6.0,174 -1254118,1630089297,8146470,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,174 -1254119,1630089298,8915356,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,174 -1254120,1630089299,8915356,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,174 -1254121,1630089300,8146470,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,174 -1254122,1630089301,8145277,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,174 -1254123,1630089302,8145277,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,174 -1254124,1630089303,8145277,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,174 -1254125,1630089304,8148197,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,174 -1254126,1630089305,8141086,4,31,1.0,3,0.0,1,25830.0,1042852,1.0,174 -1254127,1630089306,8141409,4,31,1.0,3,0.0,1,25830.0,1042852,1.0,174 -1254128,1630089307,8146023,2,26,2.0,3,0.0,1,25000.0,1001264,3.0,174 -1254129,1630089308,8141409,4,28,1.0,3,1.0,1,20000.0,1001264,1.0,174 -1254130,1630089309,8148197,2,32,2.0,3,1.0,1,21400.0,1042852,3.0,174 -1254131,1630089310,8146470,2,53,-9.0,3,1.0,1,105400.0,1042852,2.0,174 -1254132,1630089311,8148197,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,174 -1254133,1630089312,8146470,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,174 -1254134,1630089313,8146470,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,174 -1254135,1630089314,8148197,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,174 -1254136,1630089315,8146470,1,59,-9.0,1,1.0,1,30700.0,1025215,6.0,174 -1254137,1630089316,8141146,1,63,-9.0,1,1.0,1,36000.0,1025215,6.0,174 -1254138,1630089317,8146470,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,174 -1254139,1630089318,8142431,2,51,-9.0,1,0.0,1,10600.0,1025215,6.0,174 -1254140,1630089319,8145277,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,174 -1254141,1630089320,8147502,2,58,-9.0,1,0.0,1,10800.0,1025215,6.0,174 -1254142,1630089321,8145277,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,174 -1254143,1630089322,8142431,2,63,-9.0,1,0.0,1,8500.0,1025215,6.0,174 -1254144,1630089323,8147502,2,58,-9.0,1,0.0,1,10800.0,1025215,6.0,174 -1254145,1630089324,8145277,2,51,-9.0,1,0.0,1,8400.0,1042852,6.0,174 -1254146,1630089325,8142431,2,54,-9.0,1,0.0,1,7200.0,1042852,6.0,174 -1254147,1630089326,8142431,2,54,-9.0,1,0.0,1,11100.0,1073094,6.0,174 -1254148,1630089327,8141189,2,62,-9.0,1,0.0,1,8100.0,1001264,6.0,174 -1254149,1630089328,8148197,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254150,1630089329,8143261,4,60,-9.0,1,0.0,1,8600.0,1001264,6.0,174 -1254151,1630089330,8141086,4,60,-9.0,1,0.0,1,8600.0,1001264,6.0,174 -1254152,1630089331,8141409,4,60,-9.0,1,0.0,1,8600.0,1001264,6.0,174 -1254153,1630089332,8144709,4,60,-9.0,1,0.0,1,8600.0,1001264,6.0,174 -1254154,1630089333,8145776,3,60,-9.0,1,0.0,1,21600.0,1001264,6.0,174 -1254155,1630089334,8146470,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,174 -1254156,1630089335,8146470,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,174 -1254157,1630089336,8144384,3,60,-9.0,1,0.0,1,21600.0,1001264,6.0,174 -1254158,1630089337,8146470,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,174 -1254159,1630089338,8142286,1,60,-9.0,1,0.0,1,14000.0,1073094,6.0,174 -1254160,1630089339,8145277,1,62,-9.0,1,0.0,1,10100.0,1001264,6.0,174 -1254161,1630089340,8146199,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,174 -1254162,1630089341,8145776,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,174 -1254163,1630089342,8142286,1,60,-9.0,1,0.0,1,14000.0,1073094,6.0,174 -1254164,1630089343,8145922,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,174 -1254165,1630089344,8142286,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,174 -1254166,1630089345,8141559,3,61,-9.0,1,0.0,1,8670.0,1025215,6.0,174 -1254167,1630089346,8915356,2,47,-9.0,1,1.0,1,1800.0,1042852,6.0,174 -1254168,1630089347,8142286,1,60,-9.0,1,1.0,1,640.0,1042852,6.0,174 -1254169,1630089348,8142431,2,50,-9.0,3,0.0,1,13000.0,1025215,3.0,174 -1254170,1630089349,8142431,2,54,-9.0,2,0.0,1,13640.0,1001264,7.0,174 -1254171,1630089350,8148197,3,48,-9.0,2,0.0,1,8300.0,1073094,2.0,174 -1254172,1630089351,8140936,2,90,-9.0,1,0.0,1,8600.0,1073094,6.0,174 -1254173,1630089352,8145277,2,70,-9.0,1,0.0,1,15530.0,1009585,6.0,174 -1254174,1630089353,8142286,1,67,-9.0,1,0.0,1,8300.0,1073094,6.0,174 -1254175,1630089354,8142286,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,174 -1254176,1630089355,8900553,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,174 -1254177,1630089356,8143261,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,174 -1254178,1630089357,8141086,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,174 -1254179,1630089358,8141409,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,174 -1254180,1630089359,8143261,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,174 -1254181,1630089360,8143261,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,174 -1254182,1630089361,8148197,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,174 -1254183,1630089362,8143261,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,174 -1254184,1630089363,8143261,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,174 -1254185,1630089364,8146199,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,174 -1254186,1630089365,8142431,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,174 -1254187,1630089366,8142431,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,174 -1254188,1630089367,8142431,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,174 -1254189,1630089368,8142431,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,174 -1254190,1630089369,8142431,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,174 -1254191,1630089370,8141559,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,174 -1254192,1630089371,8141502,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,174 -1254193,1630089372,8900553,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,174 -1254194,1630089373,8140936,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,174 -1254195,1630089374,8141502,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,174 -1254196,1630089375,8146347,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,174 -1254197,1630089376,8146347,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,174 -1254198,1630089377,8142621,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,174 -1254199,1630089378,8146347,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,174 -1254200,1630089379,8141559,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,174 -1254201,1630089380,8144639,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,174 -1254202,1630089381,8146421,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,174 -1254203,1630089382,8141086,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,174 -1254204,1630089383,8144709,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,174 -1254205,1630089384,8146470,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,174 -1254206,1630089385,8146470,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,174 -1254207,1630089386,8146470,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,174 -1254208,1630089387,8141086,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,174 -1254209,1630089388,8915356,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,174 -1254210,1630089389,8141502,1,24,-9.0,5,5.0,1,82000.0,1009585,7.0,174 -1254211,1630089390,8148197,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,174 -1254212,1630089391,8146470,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,174 -1254213,1630089392,8146470,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,174 -1254214,1630089393,8146470,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,174 -1254215,1630089394,8146470,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,174 -1254216,1630089395,8148197,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,174 -1254217,1630089396,8146470,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,174 -1254218,1630089397,8142621,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,174 -1254219,1630089398,8144709,2,23,-9.0,1,0.0,1,4000.0,1073094,6.0,174 -1254220,1630089399,8143604,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,174 -1254221,1630089400,8142286,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,174 -1254222,1630089401,8142286,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254223,1630089402,8145277,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254224,1630089403,8145277,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254225,1630089404,8142286,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,174 -1254226,1630089405,8142286,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,174 -1254227,1630089406,8145277,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254228,1630089407,8142286,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,174 -1254229,1630089408,8145277,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254230,1630089409,8142286,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,174 -1254231,1630089410,8145277,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254232,1630089411,8145277,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254233,1630089412,8142286,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254234,1630089413,8142286,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254235,1630089414,8142286,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254236,1630089415,8142286,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254237,1630089416,8145277,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254238,1630089417,8142286,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,174 -1254239,1630089418,8145277,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254240,1630089419,8141086,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254241,1630089420,8144709,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254242,1630089421,8144425,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,174 -1254243,1630089422,8145903,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,174 -1254244,1630089423,8915356,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,174 -1254245,1630089424,8145903,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,174 -1254246,1630089425,8143261,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254247,1630089426,8145903,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,174 -1254248,1630089427,8144709,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254249,1630089428,8141086,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254250,1630089429,8146470,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,174 -1254251,1630089430,8141086,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254252,1630089431,8144639,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,174 -1254253,1630089432,8141086,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254254,1630089433,8146542,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,174 -1254255,1630089434,8144709,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254256,1630089435,8146023,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,174 -1254257,1630089436,8141502,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,174 -1254258,1630089437,8144709,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254259,1630089438,8141086,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254260,1630089439,8140936,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,174 -1254261,1630089440,8142286,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,174 -1254262,1630089441,8144709,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254263,1630089442,8141086,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254264,1630089443,8144709,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254265,1630089444,8141409,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254266,1630089445,8143261,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254267,1630089446,8915356,2,20,1.0,3,0.0,1,13900.0,1025215,3.0,174 -1254268,1630089447,8915356,2,20,1.0,3,0.0,1,13900.0,1025215,3.0,174 -1254269,1630089448,8146470,2,20,1.0,3,0.0,1,13900.0,1025215,3.0,174 -1254270,1630089449,8146470,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,174 -1254271,1630089450,8146470,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,174 -1254272,1630089451,8146470,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,174 -1254273,1630089452,8146470,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,174 -1254274,1630089453,8915356,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,174 -1254275,1630089454,8915356,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,174 -1254276,1630089455,8915356,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,174 -1254277,1630089456,8915356,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,174 -1254278,1630089457,8915356,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,174 -1254279,1630089458,8142286,2,20,1.0,2,0.0,1,0.0,1009585,3.0,174 -1254280,1630089459,8142286,2,20,1.0,2,0.0,1,0.0,1009585,3.0,174 -1254281,1630089460,8141559,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,174 -1254282,1630089461,8146421,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,174 -1254283,1630089462,8140936,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,174 -1254284,1630089463,8148197,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,174 -1254285,1630089464,8915356,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,174 -1254286,1630089465,8142286,2,23,-9.0,1,0.0,1,22000.0,1009585,6.0,174 -1254287,1630089466,8144709,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,174 -1254288,1630089467,8145277,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,174 -1254289,1630089468,8144709,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,174 -1254290,1630089469,8145277,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,174 -1254291,1630089470,8143261,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,174 -1254292,1630089471,8148197,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,174 -1254293,1630089472,8146470,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,174 -1254294,1630089473,8148197,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,174 -1254295,1630089474,8148197,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,174 -1254296,1630089475,8915356,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,174 -1254297,1630089476,8144709,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,174 -1254298,1630089477,8141086,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,174 -1254299,1630089478,8145776,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,174 -1254300,1630089479,8145776,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,174 -1254301,1630089480,8145776,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,174 -1254302,1630089481,8144384,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,174 -1254303,1630089482,8144384,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,174 -1254304,1630089483,8141502,2,23,1.0,3,1.0,1,8000.0,1042852,2.0,174 -1254305,1630089484,8144163,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,174 -1254306,1630089485,8144163,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,174 -1254307,1630089486,8141086,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,174 -1254308,1630089487,8141409,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,174 -1254309,1630089488,8145922,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,174 -1254310,1630089489,8146470,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,174 -1254311,1630089490,8146470,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,174 -1254312,1630089491,8142431,1,28,-9.0,1,1.0,1,36700.0,1001264,6.0,174 -1254313,1630089492,8142286,3,44,-9.0,1,0.0,1,1900.0,1001264,4.0,174 -1254314,1630089493,8141086,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,174 -1254315,1630089494,8146470,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,174 -1254316,1630089495,8141502,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,174 -1254317,1630089496,8141189,1,72,-9.0,1,1.0,1,28500.0,1009585,6.0,174 -1254318,1630089497,8141086,1,24,-9.0,2,2.0,1,22500.0,1025215,5.0,174 -1254319,1630089498,8143261,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,174 -1254320,1630089499,8144709,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,174 -1254321,1630089500,8144163,1,62,-9.0,3,0.0,1,75900.0,1042852,1.0,174 -1254322,1630089501,8141189,1,26,-9.0,1,1.0,1,13000.0,1042852,6.0,174 -1254323,1630089502,8146470,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,174 -1254324,1630089503,8145776,2,52,-9.0,1,0.0,1,13400.0,1042852,6.0,174 -1254325,1630089504,8142431,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,174 -1254326,1630089505,8144709,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254327,1630089506,8142431,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,174 -1254328,1630089507,8140936,2,44,-9.0,1,0.0,1,9350.0,1025215,6.0,174 -1254329,1630089508,8142286,2,79,-9.0,1,0.0,1,9100.0,1073094,6.0,174 -1254330,1630089509,8146347,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,174 -1254331,1630089510,8144493,3,43,-9.0,4,2.0,1,70630.0,1009585,2.0,174 -1254332,1630089511,8141086,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,174 -1254333,1630089512,8146470,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,174 -1254334,1630089513,8143261,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,174 -1254335,1630089514,8141642,3,84,-9.0,3,2.0,1,150400.0,1073094,3.0,174 -1254336,1630089515,8141189,1,30,-9.0,1,0.0,1,25200.0,1042852,6.0,174 -1254337,1630089516,8148197,2,41,-9.0,1,1.0,1,80000.0,1073094,6.0,174 -1254338,1630089517,8915356,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,174 -1254339,1630089518,8146470,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,174 -1254340,1630089519,8142638,1,55,-9.0,2,1.0,1,14000.0,1042852,3.0,174 -1254341,1630089520,8146470,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,174 -1254342,1630089521,8141086,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,174 -1254343,1630089522,8143261,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,174 -1254344,1630089523,8142974,1,19,1.0,2,1.0,1,15000.0,1042852,3.0,174 -1254345,1630089524,8145922,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,174 -1254346,1630089525,8141540,4,50,-9.0,1,0.0,1,0.0,1042852,6.0,174 -1254347,1630089526,8146470,2,61,-9.0,1,0.0,1,28000.0,1009585,6.0,174 -1254348,1630089527,8141233,4,63,-9.0,1,1.0,1,31400.0,1001264,6.0,174 -1254349,1630089528,8141146,1,49,-9.0,1,0.0,1,8500.0,1025215,6.0,174 -1254350,1630089529,8146023,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,174 -1254351,1630089530,8146470,4,37,-9.0,1,1.0,1,50900.0,1025215,6.0,174 -1254352,1630089531,8141086,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,174 -1254353,1630089532,8145776,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,174 -1254354,1630089533,8146470,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,174 -1254355,1630089534,8144493,4,74,1.0,3,2.0,1,117900.0,1009585,1.0,174 -1254356,1630089535,8142431,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,174 -1254357,1630089536,8141189,1,47,1.0,3,2.0,1,82700.0,1042852,1.0,174 -1254358,1630089537,8141086,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,174 -1254359,1630089538,8141086,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,174 -1254360,1630089539,8143261,2,34,4.0,5,1.0,1,0.0,1042852,3.0,174 -1254361,1630089540,8148197,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,174 -1254362,1630089541,8146470,2,30,-9.0,2,1.0,1,21500.0,1025215,3.0,174 -1254363,1630089542,8141086,4,31,1.0,3,0.0,1,25830.0,1042852,1.0,174 -1254364,1630089543,8144493,4,44,3.0,5,2.0,1,203000.0,1001264,1.0,174 -1254365,1630089544,8144163,1,62,-9.0,2,1.0,1,125200.0,1042852,5.0,174 -1254366,1630089545,8148197,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,174 -1254367,1630089546,8142431,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,174 -1254368,1630089547,8146421,1,24,-9.0,5,5.0,1,82000.0,1009585,7.0,174 -1254369,1630089548,8146470,4,41,-9.0,2,2.0,1,109100.0,1009585,1.0,174 -1254370,1630089549,8144163,1,59,-9.0,2,1.0,1,372000.0,1073094,1.0,174 -1254371,1630089550,8144163,2,52,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254372,1630089551,8146470,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,174 -1254373,1630089552,8148197,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,174 -1254374,1630089553,8144709,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,174 -1254375,1630089554,8144163,1,52,-9.0,2,2.0,1,503000.0,1025215,1.0,174 -1254376,1630089555,8143261,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,174 -1254377,1630089556,8144163,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,174 -1254378,1630089557,8142431,2,38,1.0,3,1.0,1,24000.0,1009585,3.0,174 -1254379,1630089558,8146421,1,33,-9.0,5,5.0,1,170670.0,1001264,7.0,174 -1254380,1630089559,8146199,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,174 -1254381,1630089560,8139050,4,29,-9.0,2,5.0,1,36800.0,1001264,1.0,174 -1254382,1630089561,8141502,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,174 -1254383,1630089562,8144163,3,33,3.0,5,2.0,1,75500.0,1001264,1.0,174 -1254384,1630089563,8146470,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,174 -1254385,1630089564,8146470,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,174 -1254386,1630089565,8142286,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,174 -1254387,1630089566,8146542,2,31,1.0,3,1.0,1,8400.0,1073094,2.0,174 -1254388,1630089567,8142431,2,24,3.0,5,1.0,1,0.0,1073094,3.0,174 -1254389,1630089568,8144639,3,61,-9.0,1,0.0,1,8670.0,1025215,6.0,174 -1254390,1630089569,8146470,2,60,-9.0,1,1.0,1,49000.0,1042852,6.0,174 -1254391,1630089570,8146470,2,20,1.0,3,0.0,1,13900.0,1025215,3.0,174 -1254392,1630089571,8146620,2,33,3.0,4,0.0,1,0.0,1001264,3.0,174 -1254393,1630089572,8146269,1,55,-9.0,2,1.0,1,15200.0,1001264,7.0,174 -1254394,1630089573,8142621,2,78,-9.0,1,1.0,1,11900.0,1001264,6.0,174 -1254395,1630089574,8142431,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,174 -1254396,1630089575,8915356,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,174 -1254397,1630089576,8142431,2,42,1.0,2,1.0,1,2000.0,1073094,3.0,174 -1254398,1630089577,8141559,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,174 -1254399,1630089578,8141409,4,72,-9.0,1,0.0,1,4800.0,1009585,6.0,174 -1254400,1630089579,8145922,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,174 -1254401,1630089580,8142431,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,174 -1254402,1630089581,8141146,1,64,-9.0,1,1.0,1,42200.0,1025215,4.0,174 -1254403,1630089582,8146470,2,47,-9.0,1,1.0,1,1800.0,1042852,6.0,174 -1254404,1630089583,8141642,1,64,-9.0,1,1.0,1,9260.0,1001264,4.0,174 -1254405,1630089584,8142431,2,23,3.0,5,0.0,1,12700.0,1025215,3.0,174 -1254406,1630089585,8144493,1,59,-9.0,1,1.0,1,160000.0,1042852,4.0,174 -1254407,1630089586,8141409,3,37,1.0,2,1.0,1,16000.0,1042852,3.0,174 -1254408,1630089587,8142431,2,39,2.0,3,0.0,1,9000.0,1025215,3.0,174 -1254409,1630089588,8142431,2,40,1.0,3,1.0,1,47600.0,1073094,3.0,174 -1254410,1630089589,8142286,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254411,1630089590,8146199,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,174 -1254412,1630089591,8141146,1,43,2.0,4,3.0,1,108800.0,1025215,1.0,174 -1254413,1630089592,8139050,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,174 -1254414,1630089593,8915356,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,174 -1254415,1630089594,8146620,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,174 -1254416,1630089595,8148197,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,174 -1254417,1630089596,8145922,2,43,1.0,5,0.0,1,9200.0,1025215,3.0,174 -1254418,1630089597,8146347,2,23,1.0,3,1.0,1,8000.0,1042852,2.0,174 -1254419,1630089598,8141189,1,77,-9.0,1,1.0,1,62610.0,1009585,4.0,174 -1254420,1630089599,8143261,2,20,1.0,3,0.0,1,6500.0,1025215,3.0,174 -1254421,1630089600,8141642,3,37,-9.0,1,1.0,1,35000.0,1073094,6.0,174 -1254422,1630089601,8142431,2,45,1.0,3,0.0,1,16900.0,1042852,3.0,174 -1254423,1630089602,8146470,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,174 -1254424,1630089603,8146470,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,174 -1254425,1630089604,8144493,4,46,1.0,3,2.0,1,104000.0,1001264,1.0,174 -1254426,1630089605,8142431,2,24,1.0,2,0.0,1,3000.0,1042852,3.0,174 -1254427,1630089606,8145896,2,53,-9.0,2,0.0,1,3500.0,1009585,1.0,174 -1254428,1630089607,8146470,1,33,-9.0,2,1.0,1,25000.0,1009585,1.0,174 -1254429,1630089608,8142431,1,42,1.0,3,2.0,1,87000.0,1009585,1.0,174 -1254430,1630089609,8144163,3,58,-9.0,1,2.0,1,89100.0,1001264,4.0,174 -1254431,1630089610,8142638,1,35,1.0,3,2.0,1,16000.0,1009585,3.0,174 -1254432,1630089611,8144163,1,69,-9.0,1,1.0,1,121800.0,1025215,6.0,174 -1254433,1630089612,8142431,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,174 -1254434,1630089613,8142431,1,69,-9.0,1,0.0,1,73900.0,1042852,6.0,174 -1254435,1630089614,8144493,2,38,1.0,2,1.0,1,42200.0,1001264,3.0,174 -1254436,1630089615,8144163,2,52,-9.0,3,3.0,1,123000.0,1025215,2.0,174 -1254437,1630089616,8144163,1,48,-9.0,2,2.0,1,62600.0,1042852,7.0,174 -1254438,1630089617,8142431,2,29,1.0,2,1.0,1,15000.0,1025215,3.0,174 -1254439,1630089618,8146470,3,35,-9.0,1,1.0,1,3600.0,1073094,6.0,174 -1254440,1630089619,8144709,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,174 -1254441,1630089620,8142286,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,174 -1254442,1630089621,8142286,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,174 -1254443,1630089622,8141189,3,40,1.0,3,2.0,1,180200.0,1042852,5.0,174 -1254444,1630089623,8142621,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,174 -1254445,1630089624,8146470,1,36,3.0,5,2.0,1,365500.0,1001264,1.0,174 -1254446,1630089625,8915356,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,174 -1254447,1630089626,8144493,1,33,-9.0,2,2.0,1,165190.0,1001264,1.0,174 -1254448,1630089627,8144384,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,174 -1254449,1630089628,8142431,2,44,-9.0,1,1.0,1,15300.0,1009585,6.0,174 -1254450,1630089629,8141409,4,28,1.0,3,1.0,1,20000.0,1001264,1.0,174 -1254451,1630089630,8146199,3,49,-9.0,1,0.0,1,99100.0,1025215,6.0,174 -1254452,1630089631,8146470,3,54,-9.0,1,1.0,1,52000.0,1009585,4.0,174 -1254453,1630089632,8146470,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1254454,1630089633,8142286,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,174 -1254455,1630089634,8144493,1,49,-9.0,3,2.0,1,74500.0,1009585,5.0,174 -1254456,1630089635,8141146,1,64,-9.0,3,2.0,1,16710.0,1001264,3.0,174 -1254457,1630089636,8145922,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,174 -1254458,1630089637,8144709,1,26,-9.0,1,1.0,1,0.0,1073094,6.0,174 -1254459,1630089638,8142638,1,49,2.0,3,1.0,1,55000.0,1001264,3.0,174 -1254460,1630089639,8141856,1,31,-9.0,2,2.0,1,136000.0,1073094,1.0,174 -1254461,1630089640,8142431,2,85,-9.0,1,1.0,1,19000.0,1073094,6.0,174 -1254462,1630089641,8146470,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,174 -1254463,1630089642,8148197,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,174 -1254464,1630089643,8142286,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,174 -1254465,1630089644,8146470,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,174 -1254466,1630089645,8141086,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,174 -1254467,1630089646,8148197,3,48,-9.0,2,0.0,1,8300.0,1073094,2.0,174 -1254468,1630089647,8146470,2,29,-9.0,1,1.0,1,50000.0,1001264,6.0,174 -1254469,1630089648,8141559,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,174 -1254470,1630089649,8146269,2,61,1.0,2,0.0,1,18500.0,1042852,3.0,174 -1254471,1630089650,8141189,2,23,2.0,4,0.0,1,7700.0,1009585,3.0,174 -1254472,1630089651,8144384,3,51,-9.0,1,1.0,1,29000.0,1042852,6.0,174 -1254473,1630089652,8142431,1,24,-9.0,2,1.0,1,16600.0,1001264,5.0,174 -1254474,1630089653,8144493,4,86,-9.0,1,1.0,1,12900.0,1009585,6.0,174 -1254475,1630089654,8141146,1,53,-9.0,5,3.0,1,117000.0,1042852,3.0,174 -1254476,1630089655,8141540,2,58,-9.0,2,1.0,1,10000.0,1001264,5.0,174 -1254477,1630089656,8146470,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,174 -1254478,1630089657,8141642,1,63,-9.0,2,2.0,1,76500.0,1009585,1.0,174 -1254479,1630089658,8142431,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,174 -1254480,1630089659,8146542,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,174 -1254481,1630089660,8144163,4,40,-9.0,2,2.0,1,391000.0,1009585,5.0,174 -1254482,1630089661,8142431,2,79,-9.0,1,0.0,1,24300.0,1073094,6.0,174 -1254483,1630089662,8146470,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,174 -1254484,1630089663,8142286,3,69,-9.0,1,0.0,1,51400.0,1001264,4.0,174 -1254485,1630089664,8145277,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,174 -1254486,1630089665,8142431,1,86,-9.0,2,1.0,1,51000.0,1009585,1.0,174 -1254487,1630089666,8144709,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,174 -1254488,1630089667,8146488,3,67,-9.0,1,1.0,1,17800.0,1001264,4.0,174 -1254489,1630089668,8145277,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,174 -1254490,1630089669,8142638,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,174 -1254491,1630089670,8141642,1,63,-9.0,2,3.0,1,184050.0,1009585,1.0,174 -1254492,1630089671,8141856,2,59,-9.0,1,1.0,1,65000.0,1025215,6.0,174 -1254493,1630089672,8142431,4,23,-9.0,1,1.0,1,0.0,1025215,6.0,174 -1254494,1630089673,8142431,2,26,-9.0,2,1.0,1,73000.0,1001264,1.0,174 -1254495,1630089674,8146470,2,45,-9.0,3,0.0,1,40800.0,1042852,3.0,174 -1254496,1630089675,8146470,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,174 -1254497,1630089676,8144163,4,49,-9.0,3,3.0,1,58000.0,1042852,1.0,174 -1254498,1630089677,8142286,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,174 -1254499,1630089678,8139050,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,174 -1254500,1630089679,8146542,1,66,-9.0,1,1.0,1,49000.0,1025215,4.0,174 -1254501,1630089680,8141445,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,174 -1254502,1630089681,8915356,1,28,-9.0,2,2.0,1,89000.0,1073094,5.0,174 -1254503,1630089682,8144163,4,60,-9.0,3,3.0,1,51000.0,1073094,1.0,174 -1254504,1630089683,8142431,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,174 -1254505,1630089684,8144384,2,37,3.0,5,0.0,1,64000.0,1001264,1.0,174 -1254506,1630089685,8144709,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,174 -1254507,1630089686,8146470,4,50,-9.0,1,1.0,1,27000.0,1009585,6.0,174 -1254508,1630089687,8144163,1,70,1.0,3,2.0,1,80900.0,1073094,3.0,174 -1254509,1630089688,8144639,1,25,-9.0,4,4.0,1,94504.0,1025215,7.0,174 -1254510,1630089689,8141146,1,68,-9.0,3,2.0,1,109600.0,1025215,1.0,174 -1254511,1630089690,8142974,1,22,-9.0,2,2.0,1,55000.0,1001264,7.0,174 -1254512,1630089691,8141502,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,174 -1254513,1630089692,8144709,2,30,-9.0,2,0.0,1,14700.0,1009585,1.0,174 -1254514,1630089693,8146470,2,37,2.0,4,1.0,1,7800.0,1009585,1.0,174 -1254515,1630089694,8142974,1,94,-9.0,1,0.0,1,18000.0,1001264,6.0,174 -1254516,1630089695,8141189,4,32,-9.0,5,5.0,1,72000.0,1025215,5.0,174 -1254517,1630089696,8142286,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,174 -1254518,1630089697,8146470,4,58,-9.0,1,0.0,1,21700.0,1025215,6.0,174 -1254519,1630089698,8142431,1,55,-9.0,1,1.0,1,92070.0,1009585,6.0,174 -1254520,1630089699,8141856,2,50,1.0,3,4.0,1,148000.0,1009585,1.0,174 -1254521,1630089700,8144709,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,174 -1254522,1630089701,8141445,2,58,-9.0,2,1.0,1,0.0,1001264,3.0,174 -1254523,1630089702,8141856,4,52,-9.0,2,2.0,1,46400.0,1073094,1.0,174 -1254524,1630089703,8145277,2,48,-9.0,1,1.0,1,6000.0,1025215,6.0,174 -1254525,1630089704,8900553,2,55,-9.0,1,0.0,1,50000.0,1025215,6.0,174 -1254526,1630089705,8144493,2,58,-9.0,1,1.0,1,109000.0,1073094,6.0,174 -1254527,1630089706,8142431,1,16,1.0,1,1.0,1,32300.0,1009585,4.0,174 -1254528,1630089707,8144709,2,38,3.0,5,1.0,1,21600.0,1042852,1.0,174 -1254529,1630089708,8148197,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,174 -1254530,1630089709,8146470,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,174 -1254531,1630089710,8146470,4,36,3.0,4,1.0,1,23000.0,1009585,3.0,174 -1254532,1630089711,8144163,1,68,-9.0,2,2.0,1,128300.0,1009585,1.0,174 -1254533,1630089712,8142431,2,40,2.0,3,1.0,1,48000.0,1009585,3.0,174 -1254534,1630089713,8141146,1,45,-9.0,1,2.0,1,76500.0,1009585,6.0,174 -1254535,1630089714,8148197,2,22,1.0,3,1.0,1,24600.0,1073094,2.0,174 -1254536,1630089715,8145776,4,31,-9.0,4,2.0,1,79100.0,1042852,1.0,174 -1254537,1630089716,8144493,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,174 -1254538,1630089717,8144493,1,33,1.0,3,2.0,1,50000.0,1001264,1.0,174 -1254539,1630089718,8142431,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,174 -1254540,1630089719,8142286,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,174 -1254541,1630089720,8146470,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,174 -1254542,1630089721,8143604,2,27,1.0,3,3.0,1,59000.0,1025215,3.0,174 -1254543,1630089722,8142286,2,35,1.0,2,0.0,1,5400.0,1073094,3.0,174 -1254544,1630089723,8146470,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,174 -1254545,1630089724,8142286,4,61,-9.0,2,0.0,1,6200.0,1009585,3.0,174 -1254546,1630089725,8144163,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,174 -1254547,1630089726,8900553,1,72,-9.0,1,1.0,1,99500.0,1025215,6.0,174 -1254548,1630089727,8146620,3,27,-9.0,1,1.0,1,55000.0,1025215,6.0,174 -1254549,1630089728,8144493,4,29,3.0,5,3.0,1,7200.0,1073094,1.0,174 -1254550,1630089729,8142638,2,62,-9.0,1,1.0,1,51700.0,1009585,6.0,174 -1254551,1630089730,8144493,2,47,-9.0,3,1.0,1,139600.0,1009585,1.0,174 -1254552,1630089731,8145776,2,73,-9.0,2,0.0,1,10000.0,1042852,3.0,174 -1254553,1630089732,8148197,2,38,1.0,3,2.0,1,80000.0,1009585,1.0,174 -1254554,1630089733,8142431,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,174 -1254555,1630089734,8141086,2,19,1.0,2,1.0,1,11500.0,1042852,3.0,174 -1254556,1630089735,8145277,4,77,-9.0,2,0.0,1,9000.0,1001264,3.0,174 -1254557,1630089736,8146470,2,44,1.0,3,2.0,1,7300.0,1073094,3.0,174 -1254558,1630089737,8146470,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,174 -1254559,1630089738,8146542,2,25,1.0,2,1.0,1,45000.0,1073094,3.0,174 -1254560,1630089739,8144747,1,60,-9.0,2,2.0,1,67000.0,1042852,5.0,174 -1254561,1630089740,8144493,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,174 -1254562,1630089741,8142638,4,60,-9.0,1,1.0,1,52000.0,1009585,6.0,174 -1254563,1630089742,8142638,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,174 -1254564,1630089743,8144163,1,84,-9.0,1,1.0,1,49600.0,1025215,6.0,174 -1254565,1630089744,8141146,1,77,-9.0,2,1.0,1,73070.0,1073094,1.0,174 -1254566,1630089745,8142638,2,37,2.0,3,1.0,1,28200.0,1042852,3.0,174 -1254567,1630089746,8141146,2,61,-9.0,3,2.0,1,92600.0,1001264,1.0,174 -1254568,1630089747,8148197,1,59,-9.0,1,1.0,1,30700.0,1025215,6.0,174 -1254569,1630089748,8141445,3,52,-9.0,2,2.0,1,120000.0,1025215,1.0,174 -1254570,1630089749,8139050,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,174 -1254571,1630089750,8142974,2,64,-9.0,2,1.0,1,102000.0,1042852,1.0,174 -1254572,1630089751,8145776,2,56,-9.0,1,1.0,1,64900.0,1009585,6.0,174 -1254573,1630089752,8142431,4,41,1.0,4,3.0,1,52000.0,1042852,1.0,174 -1254574,1630089753,8142638,2,42,1.0,3,2.0,1,74000.0,1009585,1.0,174 -1254575,1630089754,8143261,2,36,4.0,5,0.0,1,13000.0,1042852,3.0,174 -1254576,1630089755,8144384,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,174 -1254577,1630089756,8142431,1,53,-9.0,3,3.0,1,139500.0,1025215,1.0,174 -1254578,1630089757,8145277,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,174 -1254579,1630089758,8142638,2,44,1.0,3,0.0,1,170.0,1009585,3.0,174 -1254580,1630089759,8144163,2,85,-9.0,1,1.0,1,35100.0,1001264,6.0,174 -1254581,1630089760,8141642,1,60,1.0,2,1.0,1,28410.0,1042852,3.0,174 -1254582,1630089761,8141146,2,48,-9.0,2,3.0,1,163200.0,1042852,3.0,174 -1254583,1630089762,8140506,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,174 -1254584,1630089763,8138559,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,174 -1254585,1630089764,8139736,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,174 -1254586,1630089765,8139736,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,174 -1254587,1630089766,8139290,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,174 -1254588,1630089767,8139736,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,174 -1254589,1630089768,8139407,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,174 -1254590,1630089769,8915357,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,174 -1254591,1630089770,8139736,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1254592,1630089771,8139736,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1254593,1630089772,8139736,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,174 -1254594,1630089773,8139407,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,174 -1254595,1630089774,8139736,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,174 -1254596,1630089775,8139736,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,174 -1254597,1630089776,8139736,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1254598,1630089777,8915357,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,174 -1254599,1630089778,8137670,2,35,-9.0,1,1.0,1,35000.0,1073094,4.0,174 -1254600,1630089779,8137670,2,35,-9.0,1,1.0,1,35000.0,1073094,4.0,174 -1254601,1630089780,8140874,2,40,-9.0,1,1.0,1,49300.0,1042852,4.0,174 -1254602,1630089781,8137992,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,174 -1254603,1630089782,8139736,2,29,-9.0,1,1.0,1,50000.0,1001264,6.0,174 -1254604,1630089783,8139407,4,41,-9.0,1,1.0,1,30000.0,1001264,4.0,174 -1254605,1630089784,8139736,4,28,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1254606,1630089785,8139736,4,28,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1254607,1630089786,8139736,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,174 -1254608,1630089787,8139736,4,28,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1254609,1630089788,8139290,4,41,-9.0,1,1.0,1,30000.0,1001264,4.0,174 -1254610,1630089789,8138915,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,174 -1254611,1630089790,8138915,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,174 -1254612,1630089791,8139736,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,174 -1254613,1630089792,8138915,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,174 -1254614,1630089793,8138026,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,174 -1254615,1630089794,8138559,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,174 -1254616,1630089795,8140292,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,174 -1254617,1630089796,8139407,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,174 -1254618,1630089797,8138026,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,174 -1254619,1630089798,8137938,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,174 -1254620,1630089799,8138026,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,174 -1254621,1630089800,8138026,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,174 -1254622,1630089801,8139736,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,174 -1254623,1630089802,8139290,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,174 -1254624,1630089803,8137938,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,174 -1254625,1630089804,8138026,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,174 -1254626,1630089805,8140292,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,174 -1254627,1630089806,8137670,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,174 -1254628,1630089807,8138915,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,174 -1254629,1630089808,8138915,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,174 -1254630,1630089809,8137938,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,174 -1254631,1630089810,8137670,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,174 -1254632,1630089811,8137670,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,174 -1254633,1630089812,8138559,2,43,-9.0,2,1.0,1,50000.0,1009585,5.0,174 -1254634,1630089813,8138559,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,174 -1254635,1630089814,8138277,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,174 -1254636,1630089815,8140506,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,174 -1254637,1630089816,8138026,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,174 -1254638,1630089817,8140506,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,174 -1254639,1630089818,8138915,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,174 -1254640,1630089819,8140506,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,174 -1254641,1630089820,8138026,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,174 -1254642,1630089821,8137938,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,174 -1254643,1630089822,8137670,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,174 -1254644,1630089823,8140292,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,174 -1254645,1630089824,8140506,1,26,-9.0,2,2.0,1,41000.0,1001264,5.0,174 -1254646,1630089825,8138026,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,174 -1254647,1630089826,8138277,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,174 -1254648,1630089827,8140506,1,26,-9.0,2,2.0,1,41000.0,1001264,5.0,174 -1254649,1630089828,8140506,1,26,-9.0,2,2.0,1,41000.0,1001264,5.0,174 -1254650,1630089829,8140506,1,26,-9.0,2,2.0,1,41000.0,1001264,5.0,174 -1254651,1630089830,8138026,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,174 -1254652,1630089831,8140506,1,26,-9.0,2,2.0,1,41000.0,1001264,5.0,174 -1254653,1630089832,8140506,1,26,-9.0,2,2.0,1,41000.0,1001264,5.0,174 -1254654,1630089833,8138559,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,174 -1254655,1630089834,8140292,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,174 -1254656,1630089835,8138915,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,174 -1254657,1630089836,8140292,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,174 -1254658,1630089837,8138277,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,174 -1254659,1630089838,8138277,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,174 -1254660,1630089839,8138210,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,174 -1254661,1630089840,8138210,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,174 -1254662,1630089841,8138210,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,174 -1254663,1630089842,8140506,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,174 -1254664,1630089843,8137670,1,29,-9.0,2,1.0,1,79500.0,1025215,5.0,174 -1254665,1630089844,8138915,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,174 -1254666,1630089845,8138915,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,174 -1254667,1630089846,8137670,1,26,-9.0,2,2.0,1,80000.0,1001264,5.0,174 -1254668,1630089847,8137938,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,174 -1254669,1630089848,8137670,1,28,-9.0,2,2.0,1,65000.0,1001264,1.0,174 -1254670,1630089849,8137670,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,174 -1254671,1630089850,8139736,1,28,-9.0,2,2.0,1,94000.0,1001264,7.0,174 -1254672,1630089851,8139736,1,31,-9.0,2,2.0,1,84000.0,1073094,1.0,174 -1254673,1630089852,8139290,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,174 -1254674,1630089853,8139407,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,174 -1254675,1630089854,8139290,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,174 -1254676,1630089855,8915357,2,42,-9.0,1,0.0,1,4000.0,1073094,4.0,174 -1254677,1630089856,8915357,2,42,-9.0,1,0.0,1,4000.0,1073094,4.0,174 -1254678,1630089857,8139290,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,174 -1254679,1630089858,8139290,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,174 -1254680,1630089859,8138210,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254681,1630089860,8138277,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254682,1630089861,8138559,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,174 -1254683,1630089862,8139736,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,174 -1254684,1630089863,8139736,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,174 -1254685,1630089864,8139736,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,174 -1254686,1630089865,8139736,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,174 -1254687,1630089866,8139736,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,174 -1254688,1630089867,8139407,2,42,-9.0,1,1.0,1,0.0,1073094,4.0,174 -1254689,1630089868,8139736,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,174 -1254690,1630089869,8140585,2,42,-9.0,1,1.0,1,12000.0,1073094,6.0,174 -1254691,1630089870,8139736,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,174 -1254692,1630089871,8138210,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,174 -1254693,1630089872,8139290,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,174 -1254694,1630089873,8137670,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,174 -1254695,1630089874,8137670,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,174 -1254696,1630089875,8138026,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,174 -1254697,1630089876,8138210,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,174 -1254698,1630089877,8138559,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,174 -1254699,1630089878,8140635,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,174 -1254700,1630089879,8139736,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,174 -1254701,1630089880,8137670,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,174 -1254702,1630089881,8137670,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,174 -1254703,1630089882,8137992,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,174 -1254704,1630089883,8140585,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,174 -1254705,1630089884,8140585,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,174 -1254706,1630089885,8138559,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,174 -1254707,1630089886,8915357,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,174 -1254708,1630089887,8138559,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,174 -1254709,1630089888,8139290,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,174 -1254710,1630089889,8139290,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,174 -1254711,1630089890,8139290,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,174 -1254712,1630089891,8139290,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,174 -1254713,1630089892,8139290,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,174 -1254714,1630089893,8139407,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,174 -1254715,1630089894,8139736,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,174 -1254716,1630089895,8138559,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,174 -1254717,1630089896,8139736,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,174 -1254718,1630089897,8139736,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,174 -1254719,1630089898,8139407,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,174 -1254720,1630089899,8139290,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,174 -1254721,1630089900,8139290,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,174 -1254722,1630089901,8139736,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,174 -1254723,1630089902,8139290,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,174 -1254724,1630089903,8139736,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,174 -1254725,1630089904,8139736,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,174 -1254726,1630089905,8139736,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,174 -1254727,1630089906,8139290,2,27,-9.0,1,1.0,1,26000.0,1001264,6.0,174 -1254728,1630089907,8137670,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,174 -1254729,1630089908,8139407,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,174 -1254730,1630089909,8139736,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,174 -1254731,1630089910,8139736,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,174 -1254732,1630089911,8139736,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,174 -1254733,1630089912,8139736,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,174 -1254734,1630089913,8137670,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,174 -1254735,1630089914,8137670,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,174 -1254736,1630089915,8138559,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,174 -1254737,1630089916,8139736,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,174 -1254738,1630089917,8915357,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,174 -1254739,1630089918,8139736,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,174 -1254740,1630089919,8139736,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,174 -1254741,1630089920,8138915,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,174 -1254742,1630089921,8139290,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,174 -1254743,1630089922,8137670,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,174 -1254744,1630089923,8139736,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,174 -1254745,1630089924,8137938,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,174 -1254746,1630089925,8137938,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,174 -1254747,1630089926,8139290,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,174 -1254748,1630089927,8139290,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,174 -1254749,1630089928,8139290,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,174 -1254750,1630089929,8139290,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,174 -1254751,1630089930,8139407,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,174 -1254752,1630089931,8139407,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,174 -1254753,1630089932,8139736,1,33,-9.0,2,1.0,1,25000.0,1009585,1.0,174 -1254754,1630089933,8139736,1,33,-9.0,2,1.0,1,25000.0,1009585,1.0,174 -1254755,1630089934,8915357,2,64,-9.0,1,1.0,1,32700.0,1042852,4.0,174 -1254756,1630089935,8139736,2,61,-9.0,1,1.0,1,36100.0,1042852,6.0,174 -1254757,1630089936,8138210,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,174 -1254758,1630089937,8140292,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,174 -1254759,1630089938,8138915,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,174 -1254760,1630089939,8138210,2,61,-9.0,1,0.0,1,49000.0,1073094,6.0,174 -1254761,1630089940,8139736,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1254762,1630089941,8139736,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1254763,1630089942,8139736,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1254764,1630089943,8139736,2,54,-9.0,1,1.0,1,34600.0,1042852,4.0,174 -1254765,1630089944,8138210,2,60,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1254766,1630089945,8138026,2,48,-9.0,1,1.0,1,30000.0,1073094,4.0,174 -1254767,1630089946,8138210,2,53,-9.0,1,1.0,1,42000.0,1042852,4.0,174 -1254768,1630089947,8139736,2,60,-9.0,1,1.0,1,49000.0,1042852,6.0,174 -1254769,1630089948,8139736,2,54,-9.0,1,1.0,1,49780.0,1025215,6.0,174 -1254770,1630089949,8915357,2,46,-9.0,1,1.0,1,40000.0,1073094,4.0,174 -1254771,1630089950,8138026,2,64,-9.0,1,1.0,1,32000.0,1042852,6.0,174 -1254772,1630089951,8139736,2,58,-9.0,1,1.0,1,43000.0,1001264,4.0,174 -1254773,1630089952,8138559,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,174 -1254774,1630089953,8137992,1,64,-9.0,1,1.0,1,59000.0,1073094,4.0,174 -1254775,1630089954,8138026,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,174 -1254776,1630089955,8138559,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,174 -1254777,1630089956,8140292,1,63,-9.0,1,1.0,1,50020.0,1001264,4.0,174 -1254778,1630089957,8138559,1,61,-9.0,1,1.0,1,57000.0,1025215,4.0,174 -1254779,1630089958,8139736,3,54,-9.0,1,1.0,1,52000.0,1009585,4.0,174 -1254780,1630089959,8139736,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,174 -1254781,1630089960,8139736,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,174 -1254782,1630089961,8138210,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,174 -1254783,1630089962,8138915,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,174 -1254784,1630089963,8138210,2,47,-9.0,2,2.0,1,51600.0,1042852,1.0,174 -1254785,1630089964,8138915,2,47,-9.0,2,2.0,1,51600.0,1042852,1.0,174 -1254786,1630089965,8138210,2,59,-9.0,2,2.0,1,54400.0,1042852,1.0,174 -1254787,1630089966,8138210,2,59,-9.0,2,2.0,1,54400.0,1042852,1.0,174 -1254788,1630089967,8138210,2,59,-9.0,2,2.0,1,54400.0,1042852,1.0,174 -1254789,1630089968,8915357,2,57,-9.0,1,0.0,1,8800.0,1001264,6.0,174 -1254790,1630089969,8138210,2,57,-9.0,1,0.0,1,5200.0,1073094,4.0,174 -1254791,1630089970,8137992,2,50,-9.0,1,0.0,1,8100.0,1073094,4.0,174 -1254792,1630089971,8139290,2,58,-9.0,1,0.0,1,16200.0,1025215,4.0,174 -1254793,1630089972,8139407,2,56,-9.0,1,0.0,1,13200.0,1009585,4.0,174 -1254794,1630089973,8139290,2,56,-9.0,1,0.0,1,13200.0,1009585,4.0,174 -1254795,1630089974,8139290,2,55,-9.0,1,0.0,1,12900.0,1042852,4.0,174 -1254796,1630089975,8915357,2,60,-9.0,1,0.0,1,2000.0,1042852,6.0,174 -1254797,1630089976,8138277,2,49,-9.0,1,0.0,1,0.0,1001264,4.0,174 -1254798,1630089977,8137670,2,54,-9.0,1,0.0,1,4600.0,1025215,6.0,174 -1254799,1630089978,8138210,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,174 -1254800,1630089979,8138026,2,63,-9.0,1,0.0,1,4200.0,1073094,6.0,174 -1254801,1630089980,8915357,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,174 -1254802,1630089981,8915357,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,174 -1254803,1630089982,8139407,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,174 -1254804,1630089983,8915357,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,174 -1254805,1630089984,8140635,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,174 -1254806,1630089985,8915357,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,174 -1254807,1630089986,8915357,2,47,-9.0,1,0.0,1,16300.0,1073094,4.0,174 -1254808,1630089987,8139407,2,59,-9.0,1,0.0,1,8100.0,1073094,4.0,174 -1254809,1630089988,8139290,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,174 -1254810,1630089989,8915357,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,174 -1254811,1630089990,8140585,2,56,-9.0,1,0.0,1,0.0,1001264,4.0,174 -1254812,1630089991,8138559,2,45,-9.0,1,0.0,1,0.0,1009585,6.0,174 -1254813,1630089992,8138559,2,49,-9.0,1,0.0,1,0.0,1025215,4.0,174 -1254814,1630089993,8139290,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,174 -1254815,1630089994,8915357,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,174 -1254816,1630089995,8140635,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,174 -1254817,1630089996,8140292,2,61,-9.0,1,0.0,1,1600.0,1009585,4.0,174 -1254818,1630089997,8138210,2,50,-9.0,1,0.0,1,10900.0,1073094,4.0,174 -1254819,1630089998,8138026,2,46,-9.0,1,0.0,1,4800.0,1001264,6.0,174 -1254820,1630089999,8138559,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,174 -1254821,1630090000,8138915,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,174 -1254822,1630090001,8915357,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,174 -1254823,1630090002,8139407,2,63,-9.0,1,0.0,1,6000.0,1073094,4.0,174 -1254824,1630090003,8138210,2,61,-9.0,1,0.0,1,1600.0,1009585,4.0,174 -1254825,1630090004,8138210,2,63,-9.0,1,0.0,1,3300.0,1025215,4.0,174 -1254826,1630090005,8138026,2,57,-9.0,1,0.0,1,5200.0,1073094,4.0,174 -1254827,1630090006,8915357,2,59,-9.0,1,0.0,1,1200.0,1042852,4.0,174 -1254828,1630090007,8138559,2,58,-9.0,1,0.0,1,0.0,1025215,4.0,174 -1254829,1630090008,8915357,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,174 -1254830,1630090009,8915357,2,62,-9.0,1,0.0,1,16200.0,1009585,4.0,174 -1254831,1630090010,8915357,2,57,-9.0,1,0.0,1,11000.0,1009585,4.0,174 -1254832,1630090011,8139290,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,174 -1254833,1630090012,8140292,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,174 -1254834,1630090013,8139407,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,174 -1254835,1630090014,8137938,2,62,-9.0,1,0.0,1,21000.0,1001264,6.0,174 -1254836,1630090015,8139290,2,62,-9.0,1,0.0,1,1800.0,1001264,4.0,174 -1254837,1630090016,8915357,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,174 -1254838,1630090017,8137938,2,59,-9.0,1,0.0,1,14300.0,1073094,6.0,174 -1254839,1630090018,8915357,2,56,-9.0,1,0.0,1,13200.0,1009585,4.0,174 -1254840,1630090019,8915357,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,174 -1254841,1630090020,8140545,2,46,-9.0,1,0.0,1,1770.0,1042852,6.0,174 -1254842,1630090021,8139290,2,61,-9.0,1,0.0,1,11000.0,1042852,4.0,174 -1254843,1630090022,8138210,4,49,-9.0,1,0.0,1,9990.0,1025215,4.0,174 -1254844,1630090023,8138210,4,62,-9.0,1,0.0,1,18000.0,1042852,4.0,174 -1254845,1630090024,8138277,4,49,-9.0,1,0.0,1,9990.0,1025215,4.0,174 -1254846,1630090025,8140292,4,62,-9.0,1,0.0,1,18000.0,1042852,4.0,174 -1254847,1630090026,8138277,4,49,-9.0,1,0.0,1,9990.0,1025215,4.0,174 -1254848,1630090027,8137670,4,49,-9.0,1,0.0,1,9990.0,1025215,4.0,174 -1254849,1630090028,8138559,4,62,-9.0,1,0.0,1,18000.0,1042852,4.0,174 -1254850,1630090029,8138559,4,62,-9.0,1,0.0,1,18000.0,1042852,4.0,174 -1254851,1630090030,8138915,3,60,-9.0,1,0.0,1,21600.0,1001264,6.0,174 -1254852,1630090031,8137670,3,60,-9.0,1,0.0,1,21600.0,1001264,6.0,174 -1254853,1630090032,8137938,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,174 -1254854,1630090033,8137670,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,174 -1254855,1630090034,8137670,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,174 -1254856,1630090035,8137670,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,174 -1254857,1630090036,8137670,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,174 -1254858,1630090037,8140635,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,174 -1254859,1630090038,8139290,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,174 -1254860,1630090039,8139290,1,60,-9.0,1,0.0,1,10840.0,1009585,4.0,174 -1254861,1630090040,8140585,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,174 -1254862,1630090041,8140585,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,174 -1254863,1630090042,8139290,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,174 -1254864,1630090043,8140635,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,174 -1254865,1630090044,8139290,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,174 -1254866,1630090045,8140585,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,174 -1254867,1630090046,8139407,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,174 -1254868,1630090047,8139290,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,174 -1254869,1630090048,8140585,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,174 -1254870,1630090049,8139290,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,174 -1254871,1630090050,8137992,3,61,-9.0,1,0.0,1,8670.0,1025215,6.0,174 -1254872,1630090051,8137992,3,61,-9.0,1,0.0,1,8670.0,1025215,6.0,174 -1254873,1630090052,8138277,2,60,-9.0,1,1.0,1,9100.0,1025215,4.0,174 -1254874,1630090053,8139736,2,63,-9.0,1,1.0,1,17100.0,1001264,6.0,174 -1254875,1630090054,8138277,2,61,-9.0,1,1.0,1,13000.0,1009585,6.0,174 -1254876,1630090055,8138026,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,174 -1254877,1630090056,8139736,2,63,-9.0,1,1.0,1,17100.0,1001264,6.0,174 -1254878,1630090057,8138559,2,45,-9.0,1,1.0,1,20500.0,1042852,4.0,174 -1254879,1630090058,8915357,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,174 -1254880,1630090059,8139736,2,53,-9.0,1,1.0,1,13200.0,1025215,4.0,174 -1254881,1630090060,8138026,2,61,-9.0,1,1.0,1,13000.0,1009585,6.0,174 -1254882,1630090061,8140585,2,55,-9.0,1,1.0,1,8500.0,1025215,4.0,174 -1254883,1630090062,8138915,2,49,-9.0,1,1.0,1,3700.0,1073094,6.0,174 -1254884,1630090063,8140585,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,174 -1254885,1630090064,8138559,2,62,-9.0,1,1.0,1,7000.0,1001264,4.0,174 -1254886,1630090065,8140635,2,58,-9.0,1,1.0,1,11000.0,1025215,4.0,174 -1254887,1630090066,8915357,2,53,-9.0,1,1.0,1,22600.0,1001264,4.0,174 -1254888,1630090067,8140292,2,45,-9.0,1,1.0,1,20500.0,1042852,4.0,174 -1254889,1630090068,8139407,2,62,-9.0,1,1.0,1,13200.0,1009585,4.0,174 -1254890,1630090069,8138277,1,64,-9.0,1,1.0,1,12300.0,1009585,4.0,174 -1254891,1630090070,8915357,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,174 -1254892,1630090071,8915357,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,174 -1254893,1630090072,8915357,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,174 -1254894,1630090073,8138915,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,174 -1254895,1630090074,8138026,2,57,-9.0,1,2.0,1,8400.0,1025215,6.0,174 -1254896,1630090075,8139290,2,45,-9.0,1,0.0,1,1700.0,1073094,4.0,174 -1254897,1630090076,8138559,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,174 -1254898,1630090077,8139290,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,174 -1254899,1630090078,8139407,2,45,-9.0,1,0.0,1,1700.0,1073094,4.0,174 -1254900,1630090079,8139290,2,61,-9.0,1,0.0,1,5600.0,1001264,4.0,174 -1254901,1630090080,8137938,2,55,-9.0,1,0.0,1,7500.0,1001264,6.0,174 -1254902,1630090081,8139407,2,60,-9.0,1,0.0,1,26000.0,1025215,4.0,174 -1254903,1630090082,8137670,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,174 -1254904,1630090083,8915357,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,174 -1254905,1630090084,8139736,4,58,-9.0,1,0.0,1,21700.0,1025215,6.0,174 -1254906,1630090085,8140635,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,174 -1254907,1630090086,8140635,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,174 -1254908,1630090087,8140585,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,174 -1254909,1630090088,8140635,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,174 -1254910,1630090089,8140585,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,174 -1254911,1630090090,8140585,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,174 -1254912,1630090091,8138026,2,62,-9.0,1,1.0,1,22000.0,1009585,6.0,174 -1254913,1630090092,8138026,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,174 -1254914,1630090093,8137670,2,53,-9.0,1,1.0,1,12900.0,1025215,6.0,174 -1254915,1630090094,8137992,2,51,-9.0,1,1.0,1,1200.0,1073094,6.0,174 -1254916,1630090095,8139290,2,58,-9.0,1,1.0,1,13900.0,1073094,4.0,174 -1254917,1630090096,8138915,2,55,-9.0,1,1.0,1,17000.0,1073094,6.0,174 -1254918,1630090097,8137938,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,174 -1254919,1630090098,8137670,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,174 -1254920,1630090099,8138026,4,61,-9.0,1,1.0,1,13500.0,1025215,4.0,174 -1254921,1630090100,8138559,4,61,-9.0,1,1.0,1,13500.0,1025215,4.0,174 -1254922,1630090101,8138559,4,61,-9.0,1,1.0,1,13500.0,1025215,4.0,174 -1254923,1630090102,8138026,4,61,-9.0,1,1.0,1,13500.0,1025215,4.0,174 -1254924,1630090103,8138559,3,51,-9.0,1,1.0,1,29000.0,1042852,6.0,174 -1254925,1630090104,8138210,3,51,-9.0,1,1.0,1,29000.0,1042852,6.0,174 -1254926,1630090105,8138559,3,51,-9.0,1,1.0,1,29000.0,1042852,6.0,174 -1254927,1630090106,8138026,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,174 -1254928,1630090107,8138210,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,174 -1254929,1630090108,8138026,1,56,-9.0,1,1.0,1,18000.0,1042852,4.0,174 -1254930,1630090109,8138210,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,174 -1254931,1630090110,8138026,1,56,-9.0,1,1.0,1,18000.0,1042852,4.0,174 -1254932,1630090111,8138277,1,56,-9.0,1,1.0,1,18000.0,1042852,4.0,174 -1254933,1630090112,8139290,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,174 -1254934,1630090113,8137670,2,59,-9.0,1,2.0,1,20000.0,1001264,4.0,174 -1254935,1630090114,8140292,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,174 -1254936,1630090115,8138559,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,174 -1254937,1630090116,8138026,2,52,-9.0,2,0.0,1,15000.0,1025215,5.0,174 -1254938,1630090117,8138277,2,50,-9.0,2,1.0,1,25400.0,1001264,3.0,174 -1254939,1630090118,8138559,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,174 -1254940,1630090119,8139736,2,87,-9.0,1,0.0,1,51000.0,1009585,6.0,174 -1254941,1630090120,8915357,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,174 -1254942,1630090121,8140656,2,69,-9.0,1,1.0,1,37000.0,1001264,4.0,174 -1254943,1630090122,8138026,2,69,-9.0,1,1.0,1,37000.0,1001264,4.0,174 -1254944,1630090123,8138915,1,66,-9.0,1,1.0,1,49000.0,1025215,4.0,174 -1254945,1630090124,8138026,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,174 -1254946,1630090125,8139290,3,69,-9.0,1,0.0,1,51400.0,1001264,4.0,174 -1254947,1630090126,8139407,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,174 -1254948,1630090127,8139290,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,174 -1254949,1630090128,8139407,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,174 -1254950,1630090129,8139407,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,174 -1254951,1630090130,8140390,1,69,-9.0,2,2.0,1,41280.0,1042852,5.0,174 -1254952,1630090131,8139290,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,174 -1254953,1630090132,8139290,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,174 -1254954,1630090133,8140675,1,69,-9.0,2,2.0,1,41280.0,1042852,5.0,174 -1254955,1630090134,8139290,2,69,-9.0,1,0.0,1,12600.0,1025215,6.0,174 -1254956,1630090135,8138277,2,83,-9.0,1,0.0,1,7700.0,1025215,4.0,174 -1254957,1630090136,8138915,2,72,-9.0,1,0.0,1,11220.0,1009585,6.0,174 -1254958,1630090137,8138915,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,174 -1254959,1630090138,8138559,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,174 -1254960,1630090139,8137938,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,174 -1254961,1630090140,8139290,2,67,-9.0,1,0.0,1,9600.0,1001264,6.0,174 -1254962,1630090141,8138559,2,65,-9.0,1,0.0,1,11800.0,1073094,4.0,174 -1254963,1630090142,8139290,2,80,-9.0,1,0.0,1,8300.0,1073094,6.0,174 -1254964,1630090143,8139407,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,174 -1254965,1630090144,8138026,2,67,-9.0,1,0.0,1,8300.0,1073094,6.0,174 -1254966,1630090145,8137670,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,174 -1254967,1630090146,8915357,2,65,-9.0,1,0.0,1,24000.0,1001264,4.0,174 -1254968,1630090147,8139290,2,79,-9.0,1,0.0,1,18000.0,1025215,4.0,174 -1254969,1630090148,8139290,2,86,-9.0,1,0.0,1,14300.0,1042852,6.0,174 -1254970,1630090149,8139736,2,65,-9.0,1,0.0,1,1900.0,1025215,6.0,174 -1254971,1630090150,8139407,2,67,-9.0,1,0.0,1,9600.0,1001264,6.0,174 -1254972,1630090151,8915357,2,78,-9.0,1,0.0,1,20600.0,1042852,4.0,174 -1254973,1630090152,8138210,2,75,-9.0,1,0.0,1,8800.0,1001264,4.0,174 -1254974,1630090153,8139407,2,69,-9.0,1,0.0,1,12000.0,1042852,6.0,174 -1254975,1630090154,8140635,2,88,-9.0,1,0.0,1,11300.0,1025215,6.0,174 -1254976,1630090155,8139290,2,82,-9.0,1,0.0,1,18900.0,1042852,6.0,174 -1254977,1630090156,8915357,2,79,-9.0,1,0.0,1,13600.0,1001264,4.0,174 -1254978,1630090157,8139407,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,174 -1254979,1630090158,8138559,2,71,-9.0,1,0.0,1,14400.0,1042852,4.0,174 -1254980,1630090159,8139407,2,72,-9.0,1,0.0,1,9300.0,1001264,6.0,174 -1254981,1630090160,8139290,2,72,-9.0,1,0.0,1,18830.0,1001264,6.0,174 -1254982,1630090161,8139290,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,174 -1254983,1630090162,8915357,2,65,-9.0,1,0.0,1,24000.0,1001264,4.0,174 -1254984,1630090163,8915357,2,80,-9.0,1,0.0,1,5500.0,1042852,4.0,174 -1254985,1630090164,8138559,2,70,-9.0,1,0.0,1,10800.0,1009585,4.0,174 -1254986,1630090165,8138277,4,72,-9.0,1,0.0,1,4800.0,1009585,6.0,174 -1254987,1630090166,8138277,4,70,-9.0,1,0.0,1,19900.0,1042852,6.0,174 -1254988,1630090167,8140292,4,70,-9.0,1,0.0,1,19900.0,1042852,6.0,174 -1254989,1630090168,8138559,1,66,-9.0,1,0.0,1,5300.0,1009585,4.0,174 -1254990,1630090169,8915357,1,65,-9.0,1,0.0,1,1100.0,1001264,4.0,174 -1254991,1630090170,8137938,1,77,-9.0,1,0.0,1,21900.0,1009585,4.0,174 -1254992,1630090171,8138026,1,66,-9.0,1,0.0,1,5300.0,1009585,4.0,174 -1254993,1630090172,8138559,1,66,-9.0,1,0.0,1,5300.0,1009585,4.0,174 -1254994,1630090173,8139407,1,74,-9.0,1,0.0,1,9600.0,1042852,4.0,174 -1254995,1630090174,8138277,1,66,-9.0,1,0.0,1,5300.0,1009585,4.0,174 -1254996,1630090175,8138559,1,66,-9.0,1,0.0,1,5300.0,1009585,4.0,174 -1254997,1630090176,8140635,3,67,-9.0,1,0.0,1,16800.0,1042852,4.0,174 -1254998,1630090177,8140635,3,67,-9.0,1,0.0,1,16800.0,1042852,4.0,174 -1254999,1630090178,8140635,3,67,-9.0,1,0.0,1,16800.0,1042852,4.0,174 -1255000,1630090179,8915357,2,66,-9.0,1,1.0,1,14400.0,1025215,6.0,174 -1255001,1630090180,8140292,2,71,-9.0,1,1.0,1,15700.0,1042852,6.0,174 -1255002,1630090181,8138210,2,80,-9.0,1,1.0,1,8200.0,1009585,4.0,174 -1255003,1630090182,8138559,2,76,-9.0,1,1.0,1,23000.0,1042852,6.0,174 -1255004,1630090183,8139407,2,77,-9.0,1,1.0,1,15100.0,1042852,4.0,174 -1255005,1630090184,8139290,2,66,-9.0,1,1.0,1,11000.0,1042852,6.0,174 -1255006,1630090185,8139290,2,66,-9.0,1,1.0,1,11190.0,1009585,4.0,174 -1255007,1630090186,8915357,2,69,-9.0,1,1.0,1,3100.0,1001264,6.0,174 -1255008,1630090187,8139407,2,65,-9.0,1,1.0,1,19300.0,1073094,4.0,174 -1255009,1630090188,8139407,2,77,-9.0,1,1.0,1,15100.0,1042852,4.0,174 -1255010,1630090189,8137938,2,67,-9.0,1,1.0,1,9500.0,1042852,6.0,174 -1255011,1630090190,8139290,2,87,-9.0,1,1.0,1,26700.0,1042852,4.0,174 -1255012,1630090191,8138026,2,65,-9.0,1,1.0,1,3300.0,1073094,4.0,174 -1255013,1630090192,8915357,2,83,-9.0,1,1.0,1,12600.0,1025215,4.0,174 -1255014,1630090193,8915357,2,69,-9.0,1,1.0,1,3100.0,1001264,6.0,174 -1255015,1630090194,8139407,2,66,-9.0,1,1.0,1,11190.0,1009585,4.0,174 -1255016,1630090195,8138026,4,65,-9.0,1,1.0,1,12000.0,1009585,4.0,174 -1255017,1630090196,8138210,3,67,-9.0,1,1.0,1,17800.0,1001264,4.0,174 -1255018,1630090197,8138210,3,67,-9.0,1,1.0,1,17800.0,1001264,4.0,174 -1255019,1630090198,8138210,3,67,-9.0,1,1.0,1,17800.0,1001264,4.0,174 -1255020,1630090199,8138559,1,68,-9.0,1,1.0,1,3000.0,1009585,4.0,174 -1255021,1630090200,8140292,1,68,-9.0,1,1.0,1,3000.0,1009585,4.0,174 -1255022,1630090201,8915357,2,65,-9.0,1,2.0,1,16000.0,1001264,6.0,174 -1255023,1630090202,8139736,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,174 -1255024,1630090203,8139407,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,174 -1255025,1630090204,8138915,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,174 -1255026,1630090205,8139736,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,174 -1255027,1630090206,8137938,1,66,-9.0,1,1.0,1,49000.0,1025215,4.0,174 -1255028,1630090207,8139290,3,69,-9.0,1,0.0,1,51400.0,1001264,4.0,174 -1255029,1630090208,8140292,2,56,-9.0,1,0.0,1,9600.0,1009585,4.0,174 -1255030,1630090209,8138559,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,174 -1255031,1630090210,8139407,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,174 -1255032,1630090211,8137670,2,64,-9.0,1,2.0,1,36400.0,1001264,6.0,174 -1255033,1630090212,8138210,2,52,-9.0,2,0.0,1,15000.0,1025215,5.0,174 -1255034,1630090213,8139736,3,54,-9.0,1,1.0,1,52000.0,1009585,4.0,174 -1255035,1630090214,8137670,1,28,-9.0,2,2.0,1,65000.0,1001264,1.0,174 -1255036,1630090215,8137938,2,45,-9.0,2,1.0,1,85000.0,1073094,2.0,174 -1255037,1630090216,8139736,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,174 -1255038,1630090217,8138277,2,66,-9.0,1,1.0,1,32000.0,1001264,4.0,174 -1255039,1630090218,8139290,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,174 -1255040,1630090219,8138277,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,174 -1255041,1630090220,8138210,4,65,-9.0,1,1.0,1,12000.0,1009585,4.0,174 -1255042,1630090221,8139736,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,174 -1255043,1630090222,8139290,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,174 -1255044,1630090223,8137670,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,174 -1255045,1630090224,8139736,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,174 -1255046,1630090225,8139290,2,29,-9.0,1,1.0,1,24000.0,1009585,6.0,174 -1255047,1630090226,8140585,1,72,-9.0,1,1.0,1,25520.0,1001264,6.0,174 -1255048,1630090227,8138026,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,174 -1255049,1630090228,8137938,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,174 -1255050,1630090229,8137938,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,174 -1255051,1630090230,8140292,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,174 -1255052,1630090231,8138210,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,174 -1255053,1630090232,8139736,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,174 -1255054,1630090233,8139290,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,174 -1255055,1630090234,8138559,2,53,-9.0,2,1.0,1,56400.0,1073094,3.0,174 -1255056,1630090235,8139736,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,174 -1255057,1630090236,8139736,2,66,-9.0,1,1.0,1,20200.0,1042852,6.0,174 -1255058,1630090237,8137670,2,57,-9.0,2,2.0,1,75000.0,1001264,2.0,174 -1255059,1630090238,8139736,1,57,-9.0,1,1.0,1,72000.0,1042852,6.0,174 -1255060,1630090239,8138671,2,44,-9.0,2,1.0,1,18000.0,1042852,2.0,174 -1255061,1630090240,8139736,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,174 -1255062,1630090241,8139736,4,58,-9.0,1,0.0,1,21700.0,1025215,6.0,174 -1255063,1630090242,8140292,3,35,-9.0,1,1.0,1,3600.0,1073094,6.0,174 -1255064,1630090243,8138210,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,174 -1255065,1630090244,8138210,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,174 -1255066,1630090245,8138026,3,53,-9.0,1,0.0,1,7000.0,1042852,4.0,174 -1255067,1630090246,8138277,3,51,-9.0,1,1.0,1,29000.0,1042852,6.0,174 -1255068,1630090247,8139736,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,174 -1255069,1630090248,8139736,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,174 -1255070,1630090249,8139290,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,174 -1255071,1630090250,8140585,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,174 -1255072,1630090251,8138210,2,50,-9.0,2,1.0,1,25400.0,1001264,3.0,174 -1255073,1630090252,8138277,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,174 -1255074,1630090253,8137670,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,174 -1255075,1630090254,8137670,2,65,-9.0,1,1.0,1,34200.0,1009585,4.0,174 -1255076,1630090255,8137938,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,174 -1255077,1630090256,8138559,2,26,-9.0,2,0.0,1,12200.0,1001264,7.0,174 -1255078,1630090257,8138277,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,174 -1255079,1630090258,8137670,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,174 -1255080,1630090259,8139290,3,44,-9.0,1,0.0,1,1900.0,1001264,4.0,174 -1255081,1630090260,8137992,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,174 -1255082,1630090261,8139736,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,174 -1255083,1630090262,8915357,1,65,-9.0,1,0.0,1,1100.0,1001264,4.0,174 -1255084,1630090263,8137938,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,174 -1255085,1630090264,8139736,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,174 -1255086,1630090265,8139290,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,174 -1255087,1630090266,8139736,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,174 -1255088,1630090267,8137670,4,49,-9.0,1,0.0,1,9990.0,1025215,4.0,174 -1255089,1630090268,8915357,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,174 -1255090,1630090269,8138026,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,174 -1255091,1630090270,8137938,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,174 -1255092,1630090271,8138915,3,27,-9.0,1,1.0,1,55000.0,1025215,6.0,174 -1255093,1630090272,8138026,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,174 -1255094,1630090273,8915357,3,65,-9.0,1,0.0,1,8040.0,1001264,4.0,174 -1255095,1630090274,8138277,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,174 -1255096,1630090275,8138210,1,63,-9.0,1,1.0,1,50020.0,1001264,4.0,174 -1255097,1630090276,8139290,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,174 -1255098,1630090277,8137938,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,174 -1255099,1630090278,8139290,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,174 -1255100,1630090279,8139736,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,174 -1255101,1630090280,8138559,2,64,-9.0,1,1.0,1,32490.0,1042852,6.0,174 -1255102,1630090281,8138210,2,71,-9.0,1,2.0,1,19300.0,1001264,4.0,174 -1255103,1630090282,8138559,2,62,-9.0,1,1.0,1,82000.0,1009585,4.0,174 -1255104,1630090283,8138026,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,174 -1255105,1630090284,8138277,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,174 -1255106,1630090285,8138559,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,174 -1255107,1630090286,8138915,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,174 -1255108,1630090287,8139290,2,59,-9.0,1,1.0,1,32000.0,1042852,4.0,174 -1255109,1630090288,8138277,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,174 -1255110,1630090289,8140635,2,66,-9.0,1,2.0,1,32700.0,1009585,4.0,174 -1255111,1630090290,8138801,1,69,-9.0,2,2.0,1,41280.0,1042852,5.0,174 -1255112,1630090291,8140292,3,67,-9.0,1,1.0,1,17800.0,1001264,4.0,174 -1255113,1630090292,8139407,2,61,-9.0,2,0.0,1,23800.0,1073094,2.0,174 -1255114,1630090293,8139736,1,25,-9.0,2,1.0,1,75000.0,1001264,5.0,174 -1255115,1630090294,8137938,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,174 -1255116,1630090295,8140292,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,174 -1255117,1630090296,8138277,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,174 -1255118,1630090297,8138210,2,45,-9.0,1,1.0,1,22000.0,1073094,4.0,174 -1255119,1630090298,8137670,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,174 -1255120,1630090299,8139736,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,174 -1255121,1630090300,8139736,4,28,-9.0,1,1.0,1,50000.0,1073094,4.0,174 -1255122,1630090301,8139407,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,174 -1255123,1630090302,8139370,1,28,-9.0,1,1.0,1,116000.0,1009585,4.0,173 -1255124,1630090303,8140001,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,173 -1255125,1630090304,8142367,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,173 -1255126,1630090305,8140184,1,42,-9.0,2,2.0,1,103400.0,1025215,1.0,173 -1255127,1630090306,8140155,1,35,-9.0,1,1.0,1,35000.0,1073094,6.0,173 -1255128,1630090307,8139615,2,37,2.0,3,1.0,1,15600.0,1025215,3.0,173 -1255129,1630090308,8140359,1,59,-9.0,1,1.0,1,356000.0,1025215,6.0,173 -1255130,1630090309,8139370,2,53,-9.0,1,1.0,1,32000.0,1009585,4.0,173 -1255131,1630090310,8140391,2,48,-9.0,3,2.0,1,50200.0,1025215,3.0,173 -1255132,1630090311,8136440,2,53,-9.0,1,0.0,1,9600.0,1001264,4.0,173 -1255133,1630090312,8144826,2,53,-9.0,1,0.0,1,9600.0,1001264,4.0,173 -1255134,1630090313,8139811,1,62,-9.0,1,0.0,1,6850.0,1001264,6.0,173 -1255135,1630090314,8141936,2,54,-9.0,1,1.0,1,4800.0,1073094,4.0,173 -1255136,1630090315,8141936,2,54,-9.0,1,1.0,1,4800.0,1073094,4.0,173 -1255137,1630090316,8139416,1,54,-9.0,1,1.0,1,8000.0,1042852,4.0,173 -1255138,1630090317,8139559,2,55,-9.0,2,1.0,1,13700.0,1009585,1.0,173 -1255139,1630090318,8138422,2,57,-9.0,1,1.0,1,16000.0,1042852,4.0,173 -1255140,1630090319,8136440,2,75,-9.0,1,1.0,1,11400.0,1073094,6.0,173 -1255141,1630090320,8141594,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,173 -1255142,1630090321,8141594,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,173 -1255143,1630090322,8142437,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,173 -1255144,1630090323,8143276,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,173 -1255145,1630090324,8143276,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,173 -1255146,1630090325,8141059,1,33,-9.0,5,5.0,1,170670.0,1001264,7.0,173 -1255147,1630090326,8143531,1,34,2.0,4,2.0,1,178000.0,1009585,1.0,173 -1255148,1630090327,8139908,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,173 -1255149,1630090328,8139908,1,32,1.0,3,1.0,1,129000.0,1001264,3.0,173 -1255150,1630090329,8141594,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,173 -1255151,1630090330,8141594,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,173 -1255152,1630090331,8136627,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,173 -1255153,1630090332,8136935,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,173 -1255154,1630090333,8141594,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,173 -1255155,1630090334,8141594,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,173 -1255156,1630090335,8136627,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,173 -1255157,1630090336,8137363,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,173 -1255158,1630090337,8136627,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,173 -1255159,1630090338,8142386,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,173 -1255160,1630090339,8137378,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,173 -1255161,1630090340,8136935,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,173 -1255162,1630090341,8137363,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,173 -1255163,1630090342,8139780,2,34,3.0,5,2.0,1,41500.0,1009585,1.0,173 -1255164,1630090343,8141629,2,26,2.0,4,1.0,1,36800.0,1001264,3.0,173 -1255165,1630090344,8141594,1,27,-9.0,4,3.0,1,45300.0,1042852,5.0,173 -1255166,1630090345,8144456,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,173 -1255167,1630090346,8900613,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,173 -1255168,1630090347,8900613,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,173 -1255169,1630090348,8900613,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,173 -1255170,1630090349,8144456,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,173 -1255171,1630090350,8900613,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,173 -1255172,1630090351,8141594,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,173 -1255173,1630090352,8141594,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,173 -1255174,1630090353,8136497,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,173 -1255175,1630090354,8136497,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,173 -1255176,1630090355,8141594,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,173 -1255177,1630090356,8136497,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,173 -1255178,1630090357,8141594,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,173 -1255179,1630090358,8136183,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,173 -1255180,1630090359,8141594,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,173 -1255181,1630090360,8139749,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,173 -1255182,1630090361,8141594,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,173 -1255183,1630090362,8141594,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,173 -1255184,1630090363,8141594,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,173 -1255185,1630090364,8141594,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,173 -1255186,1630090365,8136627,2,26,-9.0,1,1.0,1,40000.0,1042852,6.0,173 -1255187,1630090366,8141035,2,40,-9.0,1,1.0,1,49300.0,1042852,4.0,173 -1255188,1630090367,8140006,2,40,-9.0,1,1.0,1,49300.0,1042852,4.0,173 -1255189,1630090368,8138812,2,44,-9.0,1,1.0,1,54000.0,1025215,4.0,173 -1255190,1630090369,8141594,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,173 -1255191,1630090370,8139370,2,35,-9.0,1,1.0,1,35000.0,1073094,4.0,173 -1255192,1630090371,8139180,2,34,-9.0,1,1.0,1,56000.0,1009585,4.0,173 -1255193,1630090372,8142429,2,42,-9.0,1,1.0,1,40000.0,1042852,4.0,173 -1255194,1630090373,8141837,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,173 -1255195,1630090374,8141837,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,173 -1255196,1630090375,8139180,2,35,-9.0,1,1.0,1,35000.0,1073094,4.0,173 -1255197,1630090376,8139615,2,34,-9.0,1,1.0,1,56000.0,1009585,4.0,173 -1255198,1630090377,8136440,2,34,-9.0,1,1.0,1,56000.0,1009585,4.0,173 -1255199,1630090378,8143276,2,35,-9.0,1,1.0,1,35000.0,1073094,4.0,173 -1255200,1630090379,8139749,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,173 -1255201,1630090380,8145195,2,43,-9.0,1,1.0,1,55000.0,1009585,6.0,173 -1255202,1630090381,8138812,2,44,-9.0,1,1.0,1,54000.0,1025215,4.0,173 -1255203,1630090382,8143276,2,35,-9.0,1,1.0,1,35000.0,1073094,4.0,173 -1255204,1630090383,8143450,4,41,-9.0,1,1.0,1,30000.0,1001264,4.0,173 -1255205,1630090384,8139749,4,28,-9.0,1,1.0,1,50000.0,1073094,4.0,173 -1255206,1630090385,8143450,4,41,-9.0,1,1.0,1,30000.0,1001264,4.0,173 -1255207,1630090386,8143500,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,173 -1255208,1630090387,8136440,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,173 -1255209,1630090388,8136627,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,173 -1255210,1630090389,8141347,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,173 -1255211,1630090390,8136627,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,173 -1255212,1630090391,8139780,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,173 -1255213,1630090392,8139615,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,173 -1255214,1630090393,8136627,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,173 -1255215,1630090394,8136627,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,173 -1255216,1630090395,8144843,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,173 -1255217,1630090396,8139615,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,173 -1255218,1630090397,8141594,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,173 -1255219,1630090398,8136440,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,173 -1255220,1630090399,8145758,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,173 -1255221,1630090400,8143450,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,173 -1255222,1630090401,8141594,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,173 -1255223,1630090402,8136627,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,173 -1255224,1630090403,8143450,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,173 -1255225,1630090404,8139615,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,173 -1255226,1630090405,8141594,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,173 -1255227,1630090406,8140893,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,173 -1255228,1630090407,8137116,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,173 -1255229,1630090408,8140577,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,173 -1255230,1630090409,8141594,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,173 -1255231,1630090410,8141594,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,173 -1255232,1630090411,8139370,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,173 -1255233,1630090412,8138933,2,36,-9.0,1,2.0,1,33000.0,1001264,4.0,173 -1255234,1630090413,8144826,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,173 -1255235,1630090414,8143483,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,173 -1255236,1630090415,8144843,2,44,2.0,6,0.0,1,30400.0,1073094,3.0,173 -1255237,1630090416,8143276,2,40,2.0,3,1.0,1,48000.0,1009585,3.0,173 -1255238,1630090417,8139615,2,44,2.0,3,2.0,1,30000.0,1042852,3.0,173 -1255239,1630090418,8139615,2,44,2.0,3,2.0,1,30000.0,1042852,3.0,173 -1255240,1630090419,8139180,2,44,2.0,3,2.0,1,30000.0,1042852,3.0,173 -1255241,1630090420,8141369,2,32,1.0,2,0.0,1,40400.0,1042852,3.0,173 -1255242,1630090421,8137934,2,41,-9.0,2,1.0,1,35000.0,1073094,3.0,173 -1255243,1630090422,8142086,2,29,1.0,2,1.0,1,32000.0,1025215,2.0,173 -1255244,1630090423,8143674,2,31,1.0,2,1.0,1,30000.0,1001264,3.0,173 -1255245,1630090424,8138933,2,31,1.0,2,1.0,1,30000.0,1001264,3.0,173 -1255246,1630090425,8142429,2,38,1.0,2,1.0,1,42200.0,1001264,3.0,173 -1255247,1630090426,8142429,2,38,1.0,2,1.0,1,42200.0,1001264,3.0,173 -1255248,1630090427,8142386,2,36,-9.0,2,2.0,1,56700.0,1025215,2.0,173 -1255249,1630090428,8140577,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,173 -1255250,1630090429,8145195,4,29,-9.0,2,5.0,1,36800.0,1001264,1.0,173 -1255251,1630090430,8136627,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,173 -1255252,1630090431,8138812,1,25,-9.0,2,2.0,1,48000.0,1042852,7.0,173 -1255253,1630090432,8143982,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,173 -1255254,1630090433,8137128,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,173 -1255255,1630090434,8141594,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,173 -1255256,1630090435,8141594,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,173 -1255257,1630090436,8138812,1,25,-9.0,2,2.0,1,48000.0,1042852,7.0,173 -1255258,1630090437,8143982,2,40,1.0,3,1.0,1,47600.0,1073094,3.0,173 -1255259,1630090438,8143674,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,173 -1255260,1630090439,8137673,1,28,-9.0,2,1.0,1,58000.0,1009585,3.0,173 -1255261,1630090440,8141347,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,173 -1255262,1630090441,8137128,1,28,-9.0,2,1.0,1,58000.0,1009585,3.0,173 -1255263,1630090442,8143674,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,173 -1255264,1630090443,8137673,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,173 -1255265,1630090444,8139780,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,173 -1255266,1630090445,8136595,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,173 -1255267,1630090446,8142386,2,31,-9.0,1,1.0,1,60000.0,1042852,4.0,173 -1255268,1630090447,8141629,2,31,-9.0,1,1.0,1,60000.0,1042852,4.0,173 -1255269,1630090448,8136627,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,173 -1255270,1630090449,8141594,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,173 -1255271,1630090450,8139749,1,28,-9.0,1,1.0,1,62000.0,1009585,6.0,173 -1255272,1630090451,8141594,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,173 -1255273,1630090452,8141594,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,173 -1255274,1630090453,8141594,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,173 -1255275,1630090454,8139749,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,173 -1255276,1630090455,8139749,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,173 -1255277,1630090456,8138812,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,173 -1255278,1630090457,8141594,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,173 -1255279,1630090458,8139749,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,173 -1255280,1630090459,8141594,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,173 -1255281,1630090460,8138812,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,173 -1255282,1630090461,8136497,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,173 -1255283,1630090462,8136497,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,173 -1255284,1630090463,8139749,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,173 -1255285,1630090464,8138812,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,173 -1255286,1630090465,8141487,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,173 -1255287,1630090466,8137330,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,173 -1255288,1630090467,8141594,1,31,-9.0,2,2.0,1,84000.0,1073094,1.0,173 -1255289,1630090468,8136831,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,173 -1255290,1630090469,8137029,2,28,3.0,5,0.0,1,13000.0,1001264,3.0,173 -1255291,1630090470,8144456,2,34,4.0,5,0.0,1,10000.0,1042852,3.0,173 -1255292,1630090471,8137330,2,36,2.0,5,0.0,1,23680.0,1001264,3.0,173 -1255293,1630090472,8139180,2,36,2.0,5,0.0,1,23680.0,1001264,3.0,173 -1255294,1630090473,8144456,2,34,4.0,5,0.0,1,10000.0,1042852,3.0,173 -1255295,1630090474,8137576,2,36,2.0,5,0.0,1,23680.0,1001264,3.0,173 -1255296,1630090475,8144843,2,29,4.0,5,0.0,1,0.0,1025215,3.0,173 -1255297,1630090476,8139749,2,30,4.0,5,0.0,1,9800.0,1025215,3.0,173 -1255298,1630090477,8144843,2,29,4.0,5,0.0,1,0.0,1025215,3.0,173 -1255299,1630090478,8139749,2,30,4.0,5,0.0,1,9800.0,1025215,3.0,173 -1255300,1630090479,8139013,2,29,4.0,5,0.0,1,0.0,1025215,3.0,173 -1255301,1630090480,8138094,2,34,4.0,5,1.0,1,0.0,1042852,3.0,173 -1255302,1630090481,8144431,2,43,3.0,5,1.0,1,7200.0,1009585,3.0,173 -1255303,1630090482,8138389,2,29,4.0,5,1.0,1,8700.0,1009585,3.0,173 -1255304,1630090483,8143674,2,43,3.0,5,1.0,1,7200.0,1009585,3.0,173 -1255305,1630090484,8137263,2,33,4.0,5,2.0,1,10100.0,1001264,3.0,173 -1255306,1630090485,8141487,2,33,3.0,4,0.0,1,0.0,1001264,3.0,173 -1255307,1630090486,8137263,2,30,3.0,4,0.0,1,0.0,1073094,3.0,173 -1255308,1630090487,8141487,2,33,3.0,4,0.0,1,0.0,1001264,3.0,173 -1255309,1630090488,8141035,2,33,3.0,4,1.0,1,8600.0,1025215,3.0,173 -1255310,1630090489,8141423,2,40,1.0,4,1.0,1,5000.0,1073094,3.0,173 -1255311,1630090490,8143450,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,173 -1255312,1630090491,8145758,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1255313,1630090492,8136095,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,173 -1255314,1630090493,8143450,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,173 -1255315,1630090494,8143450,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1255316,1630090495,8143500,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,173 -1255317,1630090496,8900613,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,173 -1255318,1630090497,8143973,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,173 -1255319,1630090498,8145758,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,173 -1255320,1630090499,8143450,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,173 -1255321,1630090500,8145758,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,173 -1255322,1630090501,8143450,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1255323,1630090502,8138094,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,173 -1255324,1630090503,8145758,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,173 -1255325,1630090504,8144486,2,27,-9.0,1,0.0,1,1600.0,1001264,6.0,173 -1255326,1630090505,8145758,2,44,-9.0,1,0.0,1,50.0,1042852,4.0,173 -1255327,1630090506,8143450,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,173 -1255328,1630090507,8139615,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,173 -1255329,1630090508,8143483,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,173 -1255330,1630090509,8145758,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1255331,1630090510,8138933,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,173 -1255332,1630090511,8143973,2,43,-9.0,1,0.0,1,8700.0,1009585,6.0,173 -1255333,1630090512,8900613,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,173 -1255334,1630090513,8137378,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,173 -1255335,1630090514,8145758,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1255336,1630090515,8145758,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,173 -1255337,1630090516,8143450,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1255338,1630090517,8138005,2,28,-9.0,1,0.0,1,7800.0,1025215,4.0,173 -1255339,1630090518,8138933,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,173 -1255340,1630090519,8143450,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,173 -1255341,1630090520,8145758,2,42,-9.0,1,0.0,1,4000.0,1073094,4.0,173 -1255342,1630090521,8143973,2,41,-9.0,1,0.0,1,7350.0,1001264,4.0,173 -1255343,1630090522,8145758,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1255344,1630090523,8144826,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,173 -1255345,1630090524,8139941,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,173 -1255346,1630090525,8139890,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,173 -1255347,1630090526,8139256,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,173 -1255348,1630090527,8139013,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,173 -1255349,1630090528,8143973,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,173 -1255350,1630090529,8143973,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,173 -1255351,1630090530,8139013,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,173 -1255352,1630090531,8143973,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,173 -1255353,1630090532,8139749,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,173 -1255354,1630090533,8137330,2,43,-9.0,1,1.0,1,12000.0,1009585,4.0,173 -1255355,1630090534,8139370,2,29,-9.0,1,1.0,1,10400.0,1001264,6.0,173 -1255356,1630090535,8139749,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,173 -1255357,1630090536,8145758,2,42,-9.0,1,1.0,1,0.0,1073094,4.0,173 -1255358,1630090537,8138005,2,40,-9.0,1,1.0,1,0.0,1001264,4.0,173 -1255359,1630090538,8143973,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,173 -1255360,1630090539,8143973,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,173 -1255361,1630090540,8136770,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,173 -1255362,1630090541,8143973,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,173 -1255363,1630090542,8142367,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,173 -1255364,1630090543,8144226,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,173 -1255365,1630090544,8141594,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,173 -1255366,1630090545,8139013,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,173 -1255367,1630090546,8143973,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,173 -1255368,1630090547,8143973,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,173 -1255369,1630090548,8137029,2,40,-9.0,1,1.0,1,12000.0,1001264,6.0,173 -1255370,1630090549,8900613,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,173 -1255371,1630090550,8140006,2,40,-9.0,1,1.0,1,12000.0,1001264,6.0,173 -1255372,1630090551,8137378,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,173 -1255373,1630090552,8139013,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,173 -1255374,1630090553,8139615,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,173 -1255375,1630090554,8900613,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,173 -1255376,1630090555,8139749,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,173 -1255377,1630090556,8143973,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255378,1630090557,8143973,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255379,1630090558,8900613,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,173 -1255380,1630090559,8139749,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,173 -1255381,1630090560,8900613,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,173 -1255382,1630090561,8139180,1,26,-9.0,1,1.0,1,0.0,1073094,6.0,173 -1255383,1630090562,8142386,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,173 -1255384,1630090563,8143483,1,26,-9.0,1,1.0,1,0.0,1073094,6.0,173 -1255385,1630090564,8143973,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255386,1630090565,8143973,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255387,1630090566,8900613,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,173 -1255388,1630090567,8141059,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,173 -1255389,1630090568,8140184,2,25,5.0,6,1.0,1,16700.0,1073094,3.0,173 -1255390,1630090569,8137502,2,43,4.0,6,1.0,1,5900.0,1025215,3.0,173 -1255391,1630090570,8136384,2,43,4.0,6,1.0,1,5900.0,1025215,3.0,173 -1255392,1630090571,8137576,2,42,1.0,3,0.0,1,0.0,1001264,3.0,173 -1255393,1630090572,8139780,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,173 -1255394,1630090573,8144826,2,26,2.0,3,0.0,1,11100.0,1009585,3.0,173 -1255395,1630090574,8136595,2,29,2.0,3,0.0,1,8100.0,1042852,3.0,173 -1255396,1630090575,8143674,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,173 -1255397,1630090576,8139370,2,26,2.0,3,0.0,1,11100.0,1009585,3.0,173 -1255398,1630090577,8143483,2,26,2.0,3,0.0,1,11100.0,1009585,3.0,173 -1255399,1630090578,8142429,2,44,1.0,3,0.0,1,8400.0,1025215,2.0,173 -1255400,1630090579,8139180,2,26,2.0,3,0.0,1,11100.0,1009585,3.0,173 -1255401,1630090580,8137116,2,42,1.0,3,0.0,1,0.0,1001264,3.0,173 -1255402,1630090581,8136384,2,42,1.0,3,0.0,1,0.0,1001264,3.0,173 -1255403,1630090582,8137363,2,42,1.0,3,0.0,1,0.0,1001264,3.0,173 -1255404,1630090583,8138933,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,173 -1255405,1630090584,8140986,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,173 -1255406,1630090585,8142386,2,39,2.0,3,0.0,1,9000.0,1025215,3.0,173 -1255407,1630090586,8138933,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,173 -1255408,1630090587,8139013,1,32,2.0,3,0.0,1,0.0,1025215,3.0,173 -1255409,1630090588,8143500,1,32,2.0,3,0.0,1,0.0,1025215,3.0,173 -1255410,1630090589,8143500,1,32,2.0,3,0.0,1,0.0,1025215,3.0,173 -1255411,1630090590,8143500,1,32,2.0,3,0.0,1,0.0,1025215,3.0,173 -1255412,1630090591,8145448,1,32,2.0,3,0.0,1,0.0,1025215,3.0,173 -1255413,1630090592,8141347,2,29,2.0,3,1.0,1,12300.0,1001264,3.0,173 -1255414,1630090593,8141602,2,26,2.0,3,1.0,1,0.0,1009585,3.0,173 -1255415,1630090594,8141629,2,29,2.0,3,1.0,1,12300.0,1001264,3.0,173 -1255416,1630090595,8145195,2,31,1.0,3,1.0,1,8400.0,1073094,2.0,173 -1255417,1630090596,8140893,2,36,2.0,3,1.0,1,290.0,1042852,3.0,173 -1255418,1630090597,8144826,2,29,2.0,3,1.0,1,12300.0,1001264,3.0,173 -1255419,1630090598,8900608,2,31,2.0,3,1.0,1,12000.0,1009585,3.0,173 -1255420,1630090599,8138389,2,31,1.0,3,1.0,1,8400.0,1073094,2.0,173 -1255421,1630090600,8140679,2,26,2.0,3,1.0,1,9000.0,1042852,3.0,173 -1255422,1630090601,8139780,2,27,2.0,3,1.0,1,6200.0,1009585,3.0,173 -1255423,1630090602,8143276,2,29,2.0,3,1.0,1,12300.0,1001264,3.0,173 -1255424,1630090603,8144826,2,29,2.0,3,1.0,1,12300.0,1001264,3.0,173 -1255425,1630090604,8143674,2,36,2.0,3,1.0,1,290.0,1042852,3.0,173 -1255426,1630090605,8137576,2,26,2.0,3,1.0,1,0.0,1009585,3.0,173 -1255427,1630090606,8137921,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,173 -1255428,1630090607,8137673,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,173 -1255429,1630090608,8141035,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,173 -1255430,1630090609,8140866,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,173 -1255431,1630090610,8140866,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,173 -1255432,1630090611,8140866,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,173 -1255433,1630090612,8137128,2,44,1.0,3,2.0,1,7300.0,1073094,3.0,173 -1255434,1630090613,8139749,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,173 -1255435,1630090614,8900613,2,36,-9.0,2,0.0,1,8100.0,1073094,7.0,173 -1255436,1630090615,8143276,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,173 -1255437,1630090616,8136095,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,173 -1255438,1630090617,8139615,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,173 -1255439,1630090618,8138933,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,173 -1255440,1630090619,8141884,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,173 -1255441,1630090620,8139615,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,173 -1255442,1630090621,8143973,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,173 -1255443,1630090622,8143973,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,173 -1255444,1630090623,8139615,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,173 -1255445,1630090624,8143973,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,173 -1255446,1630090625,8140496,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,173 -1255447,1630090626,8139013,2,41,1.0,2,0.0,1,9700.0,1009585,3.0,173 -1255448,1630090627,8136875,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,173 -1255449,1630090628,8143674,2,25,1.0,2,0.0,1,4800.0,1042852,3.0,173 -1255450,1630090629,8143500,2,41,1.0,2,0.0,1,9700.0,1009585,3.0,173 -1255451,1630090630,8143973,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,173 -1255452,1630090631,8140679,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,173 -1255453,1630090632,8139180,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,173 -1255454,1630090633,8144843,2,43,-9.0,2,1.0,1,24740.0,1042852,7.0,173 -1255455,1630090634,8138933,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,173 -1255456,1630090635,8136831,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,173 -1255457,1630090636,8137838,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,173 -1255458,1630090637,8137838,2,37,1.0,2,1.0,1,7900.0,1025215,3.0,173 -1255459,1630090638,8141369,2,30,1.0,2,1.0,1,15500.0,1042852,3.0,173 -1255460,1630090639,8139749,2,31,1.0,2,1.0,1,22900.0,1042852,2.0,173 -1255461,1630090640,8137934,2,34,1.0,2,1.0,1,8700.0,1009585,3.0,173 -1255462,1630090641,8139749,2,31,1.0,2,1.0,1,22900.0,1042852,2.0,173 -1255463,1630090642,8141423,2,28,1.0,2,1.0,1,13000.0,1073094,3.0,173 -1255464,1630090643,8137934,2,34,1.0,2,1.0,1,8700.0,1009585,3.0,173 -1255465,1630090644,8143982,2,42,1.0,2,1.0,1,2000.0,1073094,3.0,173 -1255466,1630090645,8137363,2,28,1.0,2,1.0,1,0.0,1001264,3.0,173 -1255467,1630090646,8137838,2,33,1.0,2,1.0,1,17000.0,1073094,3.0,173 -1255468,1630090647,8139749,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,173 -1255469,1630090648,8141594,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,173 -1255470,1630090649,8141602,2,36,4.0,5,0.0,1,13000.0,1042852,3.0,173 -1255471,1630090650,8140866,2,30,4.0,5,0.0,1,19000.0,1001264,3.0,173 -1255472,1630090651,8140866,2,30,4.0,5,0.0,1,19000.0,1001264,3.0,173 -1255473,1630090652,8140866,2,30,4.0,5,0.0,1,19000.0,1001264,3.0,173 -1255474,1630090653,8143982,1,41,1.0,5,0.0,1,22000.0,1042852,3.0,173 -1255475,1630090654,8137263,1,41,1.0,5,0.0,1,22000.0,1042852,3.0,173 -1255476,1630090655,8137116,1,41,1.0,5,0.0,1,22000.0,1042852,3.0,173 -1255477,1630090656,8137502,1,41,1.0,5,0.0,1,22000.0,1042852,3.0,173 -1255478,1630090657,8139872,2,33,4.0,5,1.0,1,5000.0,1001264,3.0,173 -1255479,1630090658,8143500,2,31,4.0,5,1.0,1,8400.0,1042852,3.0,173 -1255480,1630090659,8137921,2,42,3.0,5,1.0,1,15800.0,1001264,3.0,173 -1255481,1630090660,8145448,2,31,4.0,5,1.0,1,8400.0,1042852,3.0,173 -1255482,1630090661,8138094,2,42,3.0,5,1.0,1,15800.0,1001264,3.0,173 -1255483,1630090662,8139013,2,31,4.0,5,1.0,1,8400.0,1042852,3.0,173 -1255484,1630090663,8139636,2,33,4.0,5,1.0,1,5000.0,1001264,3.0,173 -1255485,1630090664,8138933,2,37,4.0,5,1.0,1,4000.0,1001264,3.0,173 -1255486,1630090665,8143982,2,40,1.0,4,0.0,1,18200.0,1042852,3.0,173 -1255487,1630090666,8144826,2,30,3.0,4,1.0,1,17000.0,1009585,3.0,173 -1255488,1630090667,8144456,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,173 -1255489,1630090668,8140006,2,30,3.0,4,1.0,1,17000.0,1009585,3.0,173 -1255490,1630090669,8143674,2,44,2.0,4,1.0,1,3190.0,1001264,3.0,173 -1255491,1630090670,8142386,2,33,3.0,4,1.0,1,24000.0,1042852,3.0,173 -1255492,1630090671,8138005,2,38,3.0,4,1.0,1,13300.0,1073094,3.0,173 -1255493,1630090672,8140049,2,34,3.0,4,1.0,1,10000.0,1009585,3.0,173 -1255494,1630090673,8144826,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,173 -1255495,1630090674,8143276,2,33,3.0,4,1.0,1,24000.0,1042852,3.0,173 -1255496,1630090675,8136440,2,37,-9.0,1,0.0,1,15000.0,1073094,6.0,173 -1255497,1630090676,8143973,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,173 -1255498,1630090677,8143973,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,173 -1255499,1630090678,8139180,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,173 -1255500,1630090679,8143450,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,173 -1255501,1630090680,8136440,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,173 -1255502,1630090681,8143450,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,173 -1255503,1630090682,8143674,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,173 -1255504,1630090683,8145758,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,173 -1255505,1630090684,8143973,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,173 -1255506,1630090685,8143973,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,173 -1255507,1630090686,8139780,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,173 -1255508,1630090687,8143973,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,173 -1255509,1630090688,8143973,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,173 -1255510,1630090689,8143982,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,173 -1255511,1630090690,8143973,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,173 -1255512,1630090691,8143500,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,173 -1255513,1630090692,8145758,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,173 -1255514,1630090693,8143450,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,173 -1255515,1630090694,8137934,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,173 -1255516,1630090695,8143973,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,173 -1255517,1630090696,8143973,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,173 -1255518,1630090697,8143450,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,173 -1255519,1630090698,8138933,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,173 -1255520,1630090699,8141423,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,173 -1255521,1630090700,8143450,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,173 -1255522,1630090701,8143450,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,173 -1255523,1630090702,8143450,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,173 -1255524,1630090703,8143450,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,173 -1255525,1630090704,8145758,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,173 -1255526,1630090705,8143450,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,173 -1255527,1630090706,8145758,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,173 -1255528,1630090707,8143450,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,173 -1255529,1630090708,8141423,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,173 -1255530,1630090709,8143973,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,173 -1255531,1630090710,8137934,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,173 -1255532,1630090711,8139749,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,173 -1255533,1630090712,8144456,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,173 -1255534,1630090713,8139749,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,173 -1255535,1630090714,8141594,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,173 -1255536,1630090715,8144456,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,173 -1255537,1630090716,8138812,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,173 -1255538,1630090717,8143450,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,173 -1255539,1630090718,8145271,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,173 -1255540,1630090719,8139780,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,173 -1255541,1630090720,8138389,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,173 -1255542,1630090721,8139749,2,42,-9.0,1,1.0,1,24000.0,1001264,6.0,173 -1255543,1630090722,8139749,2,35,-9.0,1,1.0,1,5600.0,1073094,4.0,173 -1255544,1630090723,8138389,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,173 -1255545,1630090724,8139180,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,173 -1255546,1630090725,8140679,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,173 -1255547,1630090726,8145758,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,173 -1255548,1630090727,8141837,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,173 -1255549,1630090728,8145758,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,173 -1255550,1630090729,8138933,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,173 -1255551,1630090730,8145195,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,173 -1255552,1630090731,8140006,2,30,-9.0,1,1.0,1,15000.0,1009585,4.0,173 -1255553,1630090732,8143450,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,173 -1255554,1630090733,8141594,2,25,-9.0,1,1.0,1,29600.0,1073094,6.0,173 -1255555,1630090734,8144843,2,26,-9.0,1,1.0,1,13000.0,1073094,6.0,173 -1255556,1630090735,8139749,2,35,-9.0,1,1.0,1,5600.0,1073094,4.0,173 -1255557,1630090736,8141594,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,173 -1255558,1630090737,8143450,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255559,1630090738,8143500,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,173 -1255560,1630090739,8136627,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,173 -1255561,1630090740,8143982,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,173 -1255562,1630090741,8141594,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,173 -1255563,1630090742,8138812,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,173 -1255564,1630090743,8145758,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255565,1630090744,8139749,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,173 -1255566,1630090745,8141035,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,173 -1255567,1630090746,8143674,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,173 -1255568,1630090747,8145271,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,173 -1255569,1630090748,8138933,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,173 -1255570,1630090749,8145758,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,173 -1255571,1630090750,8141594,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,173 -1255572,1630090751,8139749,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,173 -1255573,1630090752,8143450,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255574,1630090753,8141594,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,173 -1255575,1630090754,8136627,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,173 -1255576,1630090755,8139780,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,173 -1255577,1630090756,8143450,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,173 -1255578,1630090757,8136627,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,173 -1255579,1630090758,8143450,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,173 -1255580,1630090759,8145758,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255581,1630090760,8143450,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,173 -1255582,1630090761,8141594,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,173 -1255583,1630090762,8144843,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,173 -1255584,1630090763,8139615,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,173 -1255585,1630090764,8145758,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,173 -1255586,1630090765,8141594,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,173 -1255587,1630090766,8141594,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,173 -1255588,1630090767,8140577,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,173 -1255589,1630090768,8139749,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,173 -1255590,1630090769,8139749,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,173 -1255591,1630090770,8141884,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,173 -1255592,1630090771,8139749,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,173 -1255593,1630090772,8141594,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,173 -1255594,1630090773,8141369,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,173 -1255595,1630090774,8141594,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,173 -1255596,1630090775,8139749,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,173 -1255597,1630090776,8139749,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,173 -1255598,1630090777,8139749,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,173 -1255599,1630090778,8136627,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,173 -1255600,1630090779,8141594,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,173 -1255601,1630090780,8138812,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,173 -1255602,1630090781,8143450,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255603,1630090782,8141594,1,31,-9.0,1,1.0,1,18000.0,1001264,6.0,173 -1255604,1630090783,8136627,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,173 -1255605,1630090784,8143500,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,173 -1255606,1630090785,8143450,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255607,1630090786,8143982,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,173 -1255608,1630090787,8145758,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255609,1630090788,8144486,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,173 -1255610,1630090789,8139013,2,32,4.0,6,1.0,1,5800.0,1001264,3.0,173 -1255611,1630090790,8139013,2,32,4.0,6,1.0,1,5800.0,1001264,3.0,173 -1255612,1630090791,8136440,4,31,1.0,3,0.0,1,25830.0,1042852,1.0,173 -1255613,1630090792,8138933,4,31,1.0,3,0.0,1,25830.0,1042852,1.0,173 -1255614,1630090793,8140679,4,31,1.0,3,0.0,1,25830.0,1042852,1.0,173 -1255615,1630090794,8144826,2,42,1.0,3,0.0,1,8900.0,1073094,3.0,173 -1255616,1630090795,8144826,2,42,1.0,3,0.0,1,8900.0,1073094,3.0,173 -1255617,1630090796,8144826,2,42,1.0,3,0.0,1,8900.0,1073094,3.0,173 -1255618,1630090797,8145448,2,39,1.0,3,0.0,1,14000.0,1001264,3.0,173 -1255619,1630090798,8144826,2,42,1.0,3,0.0,1,8900.0,1073094,3.0,173 -1255620,1630090799,8143500,2,39,1.0,3,0.0,1,14000.0,1001264,3.0,173 -1255621,1630090800,8140893,2,42,1.0,3,0.0,1,8900.0,1073094,3.0,173 -1255622,1630090801,8143483,2,42,1.0,3,0.0,1,8900.0,1073094,3.0,173 -1255623,1630090802,8140795,2,26,2.0,3,0.0,1,25000.0,1001264,3.0,173 -1255624,1630090803,8139615,4,28,1.0,3,1.0,1,20000.0,1001264,1.0,173 -1255625,1630090804,8139370,4,28,1.0,3,1.0,1,20000.0,1001264,1.0,173 -1255626,1630090805,8137128,2,34,2.0,3,1.0,1,18000.0,1001264,3.0,173 -1255627,1630090806,8136935,2,38,1.0,3,1.0,1,16200.0,1001264,1.0,173 -1255628,1630090807,8136831,2,32,2.0,3,1.0,1,21400.0,1042852,3.0,173 -1255629,1630090808,8137576,2,32,2.0,3,1.0,1,21400.0,1042852,3.0,173 -1255630,1630090809,8140679,2,31,2.0,3,1.0,1,12000.0,1042852,3.0,173 -1255631,1630090810,8143982,2,31,2.0,3,1.0,1,12000.0,1042852,3.0,173 -1255632,1630090811,8141059,2,25,1.0,3,1.0,1,7640.0,1042852,3.0,173 -1255633,1630090812,8138933,2,31,2.0,3,1.0,1,12000.0,1042852,3.0,173 -1255634,1630090813,8141602,2,34,2.0,3,1.0,1,18000.0,1001264,3.0,173 -1255635,1630090814,8140679,2,31,2.0,3,1.0,1,12000.0,1042852,3.0,173 -1255636,1630090815,8137378,2,30,2.0,3,1.0,1,20600.0,1042852,3.0,173 -1255637,1630090816,8136095,2,38,1.0,3,1.0,1,24000.0,1009585,3.0,173 -1255638,1630090817,8136831,2,40,2.0,3,1.0,1,28000.0,1073094,3.0,173 -1255639,1630090818,8140679,2,31,2.0,3,1.0,1,12000.0,1042852,3.0,173 -1255640,1630090819,8141059,2,25,1.0,3,1.0,1,7640.0,1042852,3.0,173 -1255641,1630090820,8136384,2,38,1.0,3,1.0,1,16200.0,1001264,1.0,173 -1255642,1630090821,8136440,2,31,2.0,3,1.0,1,12000.0,1042852,3.0,173 -1255643,1630090822,8136935,2,38,1.0,3,1.0,1,24000.0,1009585,3.0,173 -1255644,1630090823,8140006,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,173 -1255645,1630090824,8136595,2,34,2.0,3,1.0,1,18000.0,1001264,3.0,173 -1255646,1630090825,8137263,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,173 -1255647,1630090826,8137263,2,28,2.0,3,2.0,1,25000.0,1025215,3.0,173 -1255648,1630090827,8143973,2,25,2.0,3,2.0,1,14000.0,1009585,3.0,173 -1255649,1630090828,8143973,2,25,2.0,3,2.0,1,14000.0,1009585,3.0,173 -1255650,1630090829,8137921,2,28,2.0,3,2.0,1,25000.0,1025215,3.0,173 -1255651,1630090830,8137363,2,28,2.0,3,2.0,1,25000.0,1025215,3.0,173 -1255652,1630090831,8143973,2,25,2.0,3,2.0,1,14000.0,1009585,3.0,173 -1255653,1630090832,8143973,2,25,2.0,3,2.0,1,14000.0,1009585,3.0,173 -1255654,1630090833,8143674,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,173 -1255655,1630090834,8143982,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,173 -1255656,1630090835,8145758,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,173 -1255657,1630090836,8139180,2,30,-9.0,2,0.0,1,14700.0,1009585,1.0,173 -1255658,1630090837,8143450,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,173 -1255659,1630090838,8143483,2,30,-9.0,2,0.0,1,14700.0,1009585,1.0,173 -1255660,1630090839,8143450,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,173 -1255661,1630090840,8137934,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,173 -1255662,1630090841,8136935,2,34,1.0,2,0.0,1,18000.0,1025215,3.0,173 -1255663,1630090842,8137116,2,34,1.0,2,0.0,1,18000.0,1025215,3.0,173 -1255664,1630090843,8145758,2,35,1.0,2,0.0,1,5400.0,1073094,3.0,173 -1255665,1630090844,8137673,2,34,1.0,2,0.0,1,18000.0,1025215,3.0,173 -1255666,1630090845,8143450,2,35,1.0,2,0.0,1,5400.0,1073094,3.0,173 -1255667,1630090846,8142367,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,173 -1255668,1630090847,8138933,2,32,-9.0,2,1.0,1,28600.0,1009585,1.0,173 -1255669,1630090848,8142367,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,173 -1255670,1630090849,8143982,2,32,-9.0,2,1.0,1,28600.0,1009585,1.0,173 -1255671,1630090850,8136183,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,173 -1255672,1630090851,8142367,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,173 -1255673,1630090852,8141594,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,173 -1255674,1630090853,8139749,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,173 -1255675,1630090854,8141594,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,173 -1255676,1630090855,8139780,2,29,1.0,2,1.0,1,15000.0,1025215,3.0,173 -1255677,1630090856,8140577,2,36,1.0,2,1.0,1,9600.0,1073094,3.0,173 -1255678,1630090857,8145271,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,173 -1255679,1630090858,8145448,2,28,1.0,2,1.0,1,21000.0,1009585,3.0,173 -1255680,1630090859,8140893,2,30,1.0,2,1.0,1,19000.0,1073094,3.0,173 -1255681,1630090860,8140893,2,25,1.0,2,1.0,1,4500.0,1042852,3.0,173 -1255682,1630090861,8137116,2,32,1.0,2,1.0,1,13600.0,1001264,3.0,173 -1255683,1630090862,8137576,2,40,1.0,2,1.0,1,22400.0,1042852,3.0,173 -1255684,1630090863,8145271,2,36,1.0,2,1.0,1,9600.0,1073094,3.0,173 -1255685,1630090864,8143982,2,30,1.0,2,1.0,1,19000.0,1073094,3.0,173 -1255686,1630090865,8139370,2,30,1.0,2,1.0,1,19000.0,1073094,3.0,173 -1255687,1630090866,8140893,2,25,1.0,2,1.0,1,4500.0,1042852,3.0,173 -1255688,1630090867,8143674,2,25,1.0,2,1.0,1,4500.0,1042852,3.0,173 -1255689,1630090868,8143500,2,42,-9.0,2,2.0,1,8500.0,1009585,3.0,173 -1255690,1630090869,8137330,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,173 -1255691,1630090870,8137838,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,173 -1255692,1630090871,8141035,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,173 -1255693,1630090872,8137128,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,173 -1255694,1630090873,8137029,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,173 -1255695,1630090874,8137363,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,173 -1255696,1630090875,8140893,2,31,1.0,3,1.0,1,7500.0,1009585,2.0,173 -1255697,1630090876,8139749,1,33,-9.0,2,1.0,1,25000.0,1009585,1.0,173 -1255698,1630090877,8143450,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,173 -1255699,1630090878,8139749,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,173 -1255700,1630090879,8145758,2,64,-9.0,1,1.0,1,32700.0,1042852,4.0,173 -1255701,1630090880,8142386,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,173 -1255702,1630090881,8141602,2,59,-9.0,1,0.0,1,31000.0,1042852,6.0,173 -1255703,1630090882,8138389,2,56,-9.0,1,1.0,1,39000.0,1009585,4.0,173 -1255704,1630090883,8139749,2,58,-9.0,1,1.0,1,43000.0,1001264,4.0,173 -1255705,1630090884,8140420,2,48,-9.0,1,1.0,1,30000.0,1073094,4.0,173 -1255706,1630090885,8143450,2,60,-9.0,1,1.0,1,36000.0,1001264,4.0,173 -1255707,1630090886,8137029,2,46,-9.0,1,1.0,1,30000.0,1042852,4.0,173 -1255708,1630090887,8141423,2,45,-9.0,1,1.0,1,36000.0,1009585,4.0,173 -1255709,1630090888,8145758,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,173 -1255710,1630090889,8140893,1,63,-9.0,1,1.0,1,50020.0,1001264,4.0,173 -1255711,1630090890,8141594,1,60,-9.0,1,1.0,1,38000.0,1025215,6.0,173 -1255712,1630090891,8137029,1,64,-9.0,1,1.0,1,59000.0,1073094,4.0,173 -1255713,1630090892,8136183,2,55,-9.0,2,1.0,1,33200.0,1009585,1.0,173 -1255714,1630090893,8136183,2,45,-9.0,2,2.0,1,58400.0,1001264,3.0,173 -1255715,1630090894,8143973,2,58,-9.0,1,0.0,1,16200.0,1025215,4.0,173 -1255716,1630090895,8143450,2,51,-9.0,1,0.0,1,8900.0,1009585,4.0,173 -1255717,1630090896,8143973,2,58,-9.0,1,0.0,1,1020.0,1009585,4.0,173 -1255718,1630090897,8141594,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,173 -1255719,1630090898,8143973,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,173 -1255720,1630090899,8142429,2,51,-9.0,1,0.0,1,0.0,1025215,4.0,173 -1255721,1630090900,8145195,2,55,-9.0,1,0.0,1,8500.0,1009585,6.0,173 -1255722,1630090901,8143973,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,173 -1255723,1630090902,8145758,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,173 -1255724,1630090903,8145758,2,61,-9.0,1,0.0,1,11000.0,1042852,4.0,173 -1255725,1630090904,8136440,2,54,-9.0,1,0.0,1,8400.0,1042852,4.0,173 -1255726,1630090905,8143450,2,60,-9.0,1,0.0,1,13200.0,1009585,4.0,173 -1255727,1630090906,8137838,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1255728,1630090907,8139463,2,57,-9.0,1,0.0,1,5200.0,1073094,4.0,173 -1255729,1630090908,8143450,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,173 -1255730,1630090909,8143450,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,173 -1255731,1630090910,8144585,2,47,-9.0,1,0.0,1,12000.0,1025215,4.0,173 -1255732,1630090911,8144843,2,64,-9.0,1,0.0,1,9200.0,1009585,4.0,173 -1255733,1630090912,8145758,2,64,-9.0,1,0.0,1,3660.0,1042852,6.0,173 -1255734,1630090913,8145758,2,60,-9.0,1,0.0,1,12000.0,1025215,4.0,173 -1255735,1630090914,8137263,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,173 -1255736,1630090915,8145758,2,60,-9.0,1,0.0,1,2000.0,1042852,6.0,173 -1255737,1630090916,8141594,2,61,-9.0,1,0.0,1,28000.0,1009585,6.0,173 -1255738,1630090917,8144226,2,47,-9.0,1,0.0,1,12000.0,1025215,4.0,173 -1255739,1630090918,8145758,2,64,-9.0,1,0.0,1,12600.0,1001264,4.0,173 -1255740,1630090919,8145758,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1255741,1630090920,8143450,2,57,-9.0,1,0.0,1,8400.0,1009585,6.0,173 -1255742,1630090921,8900613,2,61,-9.0,1,0.0,1,8000.0,1001264,4.0,173 -1255743,1630090922,8137330,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,173 -1255744,1630090923,8143450,2,57,-9.0,1,0.0,1,8400.0,1009585,6.0,173 -1255745,1630090924,8143450,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,173 -1255746,1630090925,8145758,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,173 -1255747,1630090926,8137378,2,45,-9.0,1,0.0,1,0.0,1009585,6.0,173 -1255748,1630090927,8143450,2,58,-9.0,1,0.0,1,8400.0,1042852,4.0,173 -1255749,1630090928,8145758,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,173 -1255750,1630090929,8145758,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,173 -1255751,1630090930,8136595,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,173 -1255752,1630090931,8145758,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,173 -1255753,1630090932,8140986,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,173 -1255754,1630090933,8145758,2,53,-9.0,1,0.0,1,8800.0,1001264,4.0,173 -1255755,1630090934,8145758,2,59,-9.0,1,0.0,1,1200.0,1042852,4.0,173 -1255756,1630090935,8140577,2,55,-9.0,1,0.0,1,8500.0,1009585,6.0,173 -1255757,1630090936,8143450,2,60,-9.0,1,0.0,1,12000.0,1025215,4.0,173 -1255758,1630090937,8139749,2,52,-9.0,1,0.0,1,6000.0,1073094,6.0,173 -1255759,1630090938,8139013,2,51,-9.0,1,0.0,1,9100.0,1001264,6.0,173 -1255760,1630090939,8136095,2,58,-9.0,1,0.0,1,0.0,1025215,4.0,173 -1255761,1630090940,8140155,2,60,-9.0,1,0.0,1,5600.0,1025215,4.0,173 -1255762,1630090941,8143450,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,173 -1255763,1630090942,8137128,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,173 -1255764,1630090943,8143973,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,173 -1255765,1630090944,8900613,2,61,-9.0,1,0.0,1,8000.0,1001264,4.0,173 -1255766,1630090945,8143973,2,53,-9.0,1,0.0,1,8300.0,1042852,4.0,173 -1255767,1630090946,8141369,4,62,-9.0,1,0.0,1,18000.0,1042852,4.0,173 -1255768,1630090947,8143973,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,173 -1255769,1630090948,8144456,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,173 -1255770,1630090949,8141347,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,173 -1255771,1630090950,8143450,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,173 -1255772,1630090951,8143450,1,60,-9.0,1,0.0,1,10840.0,1009585,4.0,173 -1255773,1630090952,8143450,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,173 -1255774,1630090953,8900613,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,173 -1255775,1630090954,8143973,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,173 -1255776,1630090955,8143973,2,54,-9.0,1,1.0,1,8700.0,1001264,4.0,173 -1255777,1630090956,8145758,2,63,-9.0,1,1.0,1,1780.0,1009585,6.0,173 -1255778,1630090957,8143450,2,62,-9.0,1,1.0,1,13200.0,1009585,4.0,173 -1255779,1630090958,8139013,2,64,-9.0,1,1.0,1,7660.0,1009585,4.0,173 -1255780,1630090959,8143450,2,62,-9.0,1,1.0,1,13200.0,1009585,4.0,173 -1255781,1630090960,8143973,2,54,-9.0,1,1.0,1,8700.0,1001264,4.0,173 -1255782,1630090961,8145758,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,173 -1255783,1630090962,8144826,2,60,-9.0,1,1.0,1,9100.0,1025215,4.0,173 -1255784,1630090963,8137921,2,62,-9.0,1,1.0,1,7000.0,1001264,4.0,173 -1255785,1630090964,8145448,2,58,-9.0,1,1.0,1,18000.0,1073094,4.0,173 -1255786,1630090965,8139554,1,64,-9.0,1,1.0,1,12300.0,1009585,4.0,173 -1255787,1630090966,8137921,2,54,-9.0,3,0.0,1,17700.0,1042852,5.0,173 -1255788,1630090967,8143276,2,54,-9.0,3,0.0,1,17700.0,1042852,5.0,173 -1255789,1630090968,8139180,2,50,-9.0,3,0.0,1,13000.0,1025215,3.0,173 -1255790,1630090969,8138933,2,57,-9.0,3,0.0,1,8690.0,1042852,3.0,173 -1255791,1630090970,8139370,2,48,1.0,3,0.0,1,13600.0,1073094,3.0,173 -1255792,1630090971,8138933,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,173 -1255793,1630090972,8143276,2,51,-9.0,2,0.0,1,7200.0,1025215,1.0,173 -1255794,1630090973,8138094,2,59,-9.0,2,0.0,1,8650.0,1025215,3.0,173 -1255795,1630090974,8143674,2,61,-9.0,2,0.0,1,10800.0,1025215,2.0,173 -1255796,1630090975,8145758,2,51,-9.0,2,0.0,1,24000.0,1073094,7.0,173 -1255797,1630090976,8139370,2,57,-9.0,2,0.0,1,14200.0,1009585,1.0,173 -1255798,1630090977,8139780,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,173 -1255799,1630090978,8141347,2,61,-9.0,2,0.0,1,12700.0,1042852,1.0,173 -1255800,1630090979,8143973,2,64,-9.0,2,0.0,1,20400.0,1042852,7.0,173 -1255801,1630090980,8143973,2,51,1.0,2,0.0,1,3100.0,1073094,2.0,173 -1255802,1630090981,8143450,2,52,1.0,2,0.0,1,8500.0,1001264,2.0,173 -1255803,1630090982,8142386,2,55,-9.0,2,1.0,1,28600.0,1009585,1.0,173 -1255804,1630090983,8136440,2,56,-9.0,2,1.0,1,15600.0,1009585,1.0,173 -1255805,1630090984,8141347,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,173 -1255806,1630090985,8139180,1,57,-9.0,2,1.0,1,19600.0,1001264,2.0,173 -1255807,1630090986,8138933,2,54,1.0,2,1.0,1,8500.0,1009585,2.0,173 -1255808,1630090987,8143500,2,61,-9.0,1,0.0,1,11500.0,1009585,4.0,173 -1255809,1630090988,8139013,2,61,-9.0,1,0.0,1,11500.0,1009585,4.0,173 -1255810,1630090989,8143450,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,173 -1255811,1630090990,8137934,2,61,-9.0,1,0.0,1,14000.0,1073094,6.0,173 -1255812,1630090991,8143450,2,60,-9.0,1,0.0,1,26000.0,1025215,4.0,173 -1255813,1630090992,8143973,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,173 -1255814,1630090993,8145758,2,60,-9.0,1,0.0,1,26000.0,1025215,4.0,173 -1255815,1630090994,8144826,2,56,-9.0,1,0.0,1,9600.0,1009585,4.0,173 -1255816,1630090995,8140893,2,56,-9.0,1,0.0,1,9600.0,1009585,4.0,173 -1255817,1630090996,8140893,2,56,-9.0,1,0.0,1,9600.0,1009585,4.0,173 -1255818,1630090997,8145758,2,60,-9.0,1,0.0,1,26000.0,1025215,4.0,173 -1255819,1630090998,8143483,2,55,-9.0,1,0.0,1,8000.0,1009585,4.0,173 -1255820,1630090999,8143973,2,61,-9.0,1,0.0,1,5600.0,1001264,4.0,173 -1255821,1630091000,8142429,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,173 -1255822,1630091001,8139749,2,47,-9.0,1,0.0,1,20600.0,1073094,6.0,173 -1255823,1630091002,8145758,2,60,-9.0,1,0.0,1,26000.0,1025215,4.0,173 -1255824,1630091003,8143450,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,173 -1255825,1630091004,8141059,2,55,-9.0,1,1.0,1,17000.0,1073094,6.0,173 -1255826,1630091005,8142429,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,173 -1255827,1630091006,8136440,2,58,-9.0,1,1.0,1,29600.0,1009585,6.0,173 -1255828,1630091007,8140795,2,54,-9.0,1,1.0,1,21900.0,1025215,4.0,173 -1255829,1630091008,8141837,2,54,-9.0,1,1.0,1,14540.0,1009585,4.0,173 -1255830,1630091009,8137576,2,48,-9.0,1,1.0,1,27700.0,1073094,6.0,173 -1255831,1630091010,8143674,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,173 -1255832,1630091011,8145758,2,55,-9.0,1,1.0,1,21900.0,1009585,6.0,173 -1255833,1630091012,8144826,1,56,-9.0,1,1.0,1,18000.0,1042852,4.0,173 -1255834,1630091013,8139180,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,173 -1255835,1630091014,8141594,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,173 -1255836,1630091015,8140679,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,173 -1255837,1630091016,8143500,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,173 -1255838,1630091017,8141594,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,173 -1255839,1630091018,8141309,2,58,-9.0,3,0.0,1,11500.0,1001264,3.0,173 -1255840,1630091019,8139749,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,173 -1255841,1630091020,8140893,2,49,2.0,3,0.0,1,7000.0,1009585,3.0,173 -1255842,1630091021,8140893,2,46,-9.0,3,1.0,1,21000.0,1009585,3.0,173 -1255843,1630091022,8139547,2,47,1.0,3,1.0,1,10500.0,1025215,3.0,173 -1255844,1630091023,8143450,2,52,-9.0,2,0.0,1,4100.0,1009585,3.0,173 -1255845,1630091024,8140893,2,46,-9.0,2,0.0,1,4200.0,1025215,3.0,173 -1255846,1630091025,8141884,1,62,-9.0,2,0.0,1,23900.0,1001264,5.0,173 -1255847,1630091026,8144826,2,55,-9.0,2,1.0,1,14000.0,1042852,3.0,173 -1255848,1630091027,8139780,2,50,-9.0,2,1.0,1,18000.0,1042852,3.0,173 -1255849,1630091028,8143483,2,55,-9.0,2,1.0,1,14000.0,1042852,3.0,173 -1255850,1630091029,8138933,2,58,-9.0,2,1.0,1,26500.0,1073094,3.0,173 -1255851,1630091030,8143450,2,53,-9.0,2,5.0,1,29200.0,1042852,1.0,173 -1255852,1630091031,8140807,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,173 -1255853,1630091032,8143450,2,65,-9.0,1,0.0,1,17000.0,1001264,6.0,173 -1255854,1630091033,8143450,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,173 -1255855,1630091034,8143450,2,86,-9.0,1,0.0,1,10600.0,1009585,6.0,173 -1255856,1630091035,8145758,2,67,-9.0,1,0.0,1,8300.0,1001264,6.0,173 -1255857,1630091036,8145758,2,78,-9.0,1,0.0,1,9100.0,1001264,6.0,173 -1255858,1630091037,8145758,2,83,-9.0,1,0.0,1,9070.0,1009585,6.0,173 -1255859,1630091038,8143973,2,80,-9.0,1,0.0,1,15000.0,1001264,6.0,173 -1255860,1630091039,8143982,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,173 -1255861,1630091040,8143483,2,79,-9.0,1,1.0,1,13000.0,1073094,6.0,173 -1255862,1630091041,8143483,2,72,-9.0,1,1.0,1,12000.0,1009585,4.0,173 -1255863,1630091042,8145758,2,76,-9.0,2,0.0,1,21400.0,1025215,1.0,173 -1255864,1630091043,8139615,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,173 -1255865,1630091044,8139749,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,173 -1255866,1630091045,8143450,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,173 -1255867,1630091046,8141347,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,173 -1255868,1630091047,8138812,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,173 -1255869,1630091048,8138812,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,173 -1255870,1630091049,8143276,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,173 -1255871,1630091050,8139180,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,173 -1255872,1630091051,8139615,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,173 -1255873,1630091052,8139780,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,173 -1255874,1630091053,8138005,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,173 -1255875,1630091054,8137921,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,173 -1255876,1630091055,8136497,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,173 -1255877,1630091056,8136497,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,173 -1255878,1630091057,8141059,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,173 -1255879,1630091058,8141369,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,173 -1255880,1630091059,8141369,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,173 -1255881,1630091060,8139749,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,173 -1255882,1630091061,8140679,2,23,3.0,5,0.0,1,12700.0,1025215,3.0,173 -1255883,1630091062,8139180,2,20,3.0,5,1.0,1,12000.0,1009585,7.0,173 -1255884,1630091063,8140893,2,24,3.0,5,1.0,1,0.0,1073094,3.0,173 -1255885,1630091064,8143483,2,24,3.0,4,0.0,1,1600.0,1001264,3.0,173 -1255886,1630091065,8144826,2,23,-9.0,1,0.0,1,4000.0,1073094,6.0,173 -1255887,1630091066,8143450,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1255888,1630091067,8140986,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,173 -1255889,1630091068,8144486,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,173 -1255890,1630091069,8144486,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,173 -1255891,1630091070,8145758,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1255892,1630091071,8143450,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,173 -1255893,1630091072,8143450,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,173 -1255894,1630091073,8143450,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,173 -1255895,1630091074,8145758,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,173 -1255896,1630091075,8143450,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,173 -1255897,1630091076,8143450,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,173 -1255898,1630091077,8143450,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,173 -1255899,1630091078,8143450,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,173 -1255900,1630091079,8143450,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,173 -1255901,1630091080,8138933,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,173 -1255902,1630091081,8142386,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,173 -1255903,1630091082,8136627,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255904,1630091083,8141594,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,173 -1255905,1630091084,8143450,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,173 -1255906,1630091085,8138933,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,173 -1255907,1630091086,8139615,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255908,1630091087,8141594,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,173 -1255909,1630091088,8139370,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255910,1630091089,8145271,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,173 -1255911,1630091090,8138933,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255912,1630091091,8139615,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255913,1630091092,8141594,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,173 -1255914,1630091093,8138933,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255915,1630091094,8138933,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,173 -1255916,1630091095,8143450,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,173 -1255917,1630091096,8141594,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,173 -1255918,1630091097,8141369,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255919,1630091098,8143674,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1255920,1630091099,8143450,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,173 -1255921,1630091100,8137502,2,22,2.0,3,0.0,1,4800.0,1009585,3.0,173 -1255922,1630091101,8141629,2,20,1.0,3,0.0,1,13900.0,1025215,3.0,173 -1255923,1630091102,8141629,2,20,1.0,3,0.0,1,13900.0,1025215,3.0,173 -1255924,1630091103,8137673,2,22,2.0,3,0.0,1,4800.0,1009585,3.0,173 -1255925,1630091104,8141594,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,173 -1255926,1630091105,8141594,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,173 -1255927,1630091106,8139749,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,173 -1255928,1630091107,8141594,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,173 -1255929,1630091108,8139749,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,173 -1255930,1630091109,8139013,2,24,1.0,2,0.0,1,3000.0,1042852,3.0,173 -1255931,1630091110,8139013,2,23,1.0,2,0.0,1,6600.0,1025215,3.0,173 -1255932,1630091111,8139013,2,23,1.0,2,0.0,1,6600.0,1025215,3.0,173 -1255933,1630091112,8143500,2,23,1.0,2,0.0,1,6600.0,1025215,3.0,173 -1255934,1630091113,8141629,2,20,1.0,2,0.0,1,0.0,1009585,3.0,173 -1255935,1630091114,8143450,2,20,1.0,2,0.0,1,0.0,1009585,3.0,173 -1255936,1630091115,8136384,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,173 -1255937,1630091116,8140006,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,173 -1255938,1630091117,8143483,2,19,1.0,2,1.0,1,11500.0,1042852,3.0,173 -1255939,1630091118,8139749,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,173 -1255940,1630091119,8139749,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,173 -1255941,1630091120,8139749,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,173 -1255942,1630091121,8143674,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,173 -1255943,1630091122,8141369,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,173 -1255944,1630091123,8144456,2,24,3.0,5,0.0,1,12500.0,1042852,3.0,173 -1255945,1630091124,8144456,2,24,3.0,5,0.0,1,12500.0,1042852,3.0,173 -1255946,1630091125,8142429,1,24,-9.0,4,2.0,1,15600.0,1073094,5.0,173 -1255947,1630091126,8142429,1,24,-9.0,4,2.0,1,15600.0,1073094,5.0,173 -1255948,1630091127,8143276,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,173 -1255949,1630091128,8141629,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,173 -1255950,1630091129,8141347,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,173 -1255951,1630091130,8145758,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,173 -1255952,1630091131,8139545,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,173 -1255953,1630091132,8145758,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,173 -1255954,1630091133,8138735,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,173 -1255955,1630091134,8138735,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,173 -1255956,1630091135,8143450,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,173 -1255957,1630091136,8145758,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,173 -1255958,1630091137,8145758,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,173 -1255959,1630091138,8143450,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,173 -1255960,1630091139,8138933,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,173 -1255961,1630091140,8143483,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,173 -1255962,1630091141,8143483,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,173 -1255963,1630091142,8143450,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,173 -1255964,1630091143,8143450,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,173 -1255965,1630091144,8140679,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,173 -1255966,1630091145,8143483,2,20,-9.0,1,1.0,1,15000.0,1001264,6.0,173 -1255967,1630091146,8140893,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,173 -1255968,1630091147,8143450,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,173 -1255969,1630091148,8139180,2,20,-9.0,1,1.0,1,15000.0,1001264,6.0,173 -1255970,1630091149,8139615,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,173 -1255971,1630091150,8143674,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,173 -1255972,1630091151,8139180,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255973,1630091152,8141313,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,173 -1255974,1630091153,8136440,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255975,1630091154,8136627,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,173 -1255976,1630091155,8143500,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,173 -1255977,1630091156,8136440,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255978,1630091157,8139615,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,173 -1255979,1630091158,8144456,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,173 -1255980,1630091159,8141369,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,173 -1255981,1630091160,8145448,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,173 -1255982,1630091161,8143674,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255983,1630091162,8139615,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,173 -1255984,1630091163,8143674,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,173 -1255985,1630091164,8143982,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,173 -1255986,1630091165,8136627,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,173 -1255987,1630091166,8141629,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,173 -1255988,1630091167,8138933,2,20,1.0,3,0.0,1,6500.0,1025215,3.0,173 -1255989,1630091168,8140679,2,20,1.0,3,0.0,1,6500.0,1025215,3.0,173 -1255990,1630091169,8138933,2,20,1.0,3,0.0,1,6500.0,1025215,3.0,173 -1255991,1630091170,8136770,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,173 -1255992,1630091171,8141936,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,173 -1255993,1630091172,8141347,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,173 -1255994,1630091173,8141347,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,173 -1255995,1630091174,8143276,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,173 -1255996,1630091175,8142386,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,173 -1255997,1630091176,8142386,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,173 -1255998,1630091177,8143276,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,173 -1255999,1630091178,8138005,2,23,1.0,3,1.0,1,8000.0,1042852,2.0,173 -1256000,1630091179,8136831,2,23,1.0,3,1.0,1,8000.0,1042852,2.0,173 -1256001,1630091180,8139615,2,23,2.0,3,1.0,1,18000.0,1025215,3.0,173 -1256002,1630091181,8137029,2,23,1.0,3,1.0,1,8000.0,1042852,2.0,173 -1256003,1630091182,8136831,2,23,1.0,3,1.0,1,8000.0,1042852,2.0,173 -1256004,1630091183,8145195,2,23,2.0,3,1.0,1,1200.0,1009585,3.0,173 -1256005,1630091184,8144843,2,23,2.0,3,1.0,1,1200.0,1009585,3.0,173 -1256006,1630091185,8136440,2,23,2.0,3,1.0,1,18000.0,1025215,3.0,173 -1256007,1630091186,8145195,2,23,2.0,3,1.0,1,1200.0,1009585,3.0,173 -1256008,1630091187,8138933,2,23,2.0,3,1.0,1,18000.0,1025215,3.0,173 -1256009,1630091188,8143450,2,24,2.0,3,1.0,1,13000.0,1025215,3.0,173 -1256010,1630091189,8145758,2,24,2.0,3,1.0,1,13000.0,1025215,3.0,173 -1256011,1630091190,8137502,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,173 -1256012,1630091191,8138812,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,173 -1256013,1630091192,8138812,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,173 -1256014,1630091193,8138812,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,173 -1256015,1630091194,8138812,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,173 -1256016,1630091195,8138812,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,173 -1256017,1630091196,8138812,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,173 -1256018,1630091197,8136384,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,173 -1256019,1630091198,8138812,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,173 -1256020,1630091199,8136595,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,173 -1256021,1630091200,8138812,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,173 -1256022,1630091201,8137502,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,173 -1256023,1630091202,8137330,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,173 -1256024,1630091203,8143450,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,173 -1256025,1630091204,8143450,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,173 -1256026,1630091205,8138812,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,173 -1256027,1630091206,8138812,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,173 -1256028,1630091207,8138812,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,173 -1256029,1630091208,8138812,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,173 -1256030,1630091209,8143982,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,173 -1256031,1630091210,8138933,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,173 -1256032,1630091211,8143982,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,173 -1256033,1630091212,8145758,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,173 -1256034,1630091213,8136627,2,16,1.0,2,1.0,1,28500.0,1001264,5.0,173 -1256035,1630091214,8140496,1,19,1.0,2,1.0,1,15000.0,1042852,3.0,173 -1256036,1630091215,8140049,1,19,1.0,2,1.0,1,15000.0,1042852,3.0,173 -1256037,1630091216,8144585,1,19,1.0,2,1.0,1,15000.0,1042852,3.0,173 -1256038,1630091217,8136627,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,173 -1256039,1630091218,8141369,1,24,-9.0,2,2.0,1,22500.0,1025215,5.0,173 -1256040,1630091219,8139749,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,173 -1256041,1630091220,8139749,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,173 -1256042,1630091221,8139749,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,173 -1256043,1630091222,8139749,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,173 -1256044,1630091223,8136627,1,24,-9.0,2,2.0,1,22500.0,1025215,5.0,173 -1256045,1630091224,8139749,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,173 -1256046,1630091225,8136440,2,22,1.0,3,1.0,1,24600.0,1073094,2.0,173 -1256047,1630091226,8141629,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,173 -1256048,1630091227,8143276,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,173 -1256049,1630091228,8136440,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,173 -1256050,1630091229,8139780,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,173 -1256051,1630091230,8145758,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,173 -1256052,1630091231,8136627,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,173 -1256053,1630091232,8137838,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,173 -1256054,1630091233,8141369,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,173 -1256055,1630091234,8136595,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,173 -1256056,1630091235,8144826,1,61,-9.0,2,1.0,1,28400.0,1042852,3.0,173 -1256057,1630091236,8141347,2,54,-9.0,3,3.0,1,44100.0,1025215,3.0,173 -1256058,1630091237,8139545,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,173 -1256059,1630091238,8141347,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,173 -1256060,1630091239,8143674,2,43,-9.0,2,1.0,1,50000.0,1009585,5.0,173 -1256061,1630091240,8141369,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,173 -1256062,1630091241,8143483,2,22,1.0,2,1.0,1,34000.0,1025215,3.0,173 -1256063,1630091242,8145448,2,23,1.0,2,0.0,1,6600.0,1025215,3.0,173 -1256064,1630091243,8140893,2,55,-9.0,2,1.0,1,33200.0,1009585,1.0,173 -1256065,1630091244,8139180,2,60,-9.0,1,1.0,1,164000.0,1009585,4.0,173 -1256066,1630091245,8144826,2,29,3.0,4,1.0,1,17800.0,1025215,3.0,173 -1256067,1630091246,8143450,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,173 -1256068,1630091247,8143982,1,42,1.0,3,2.0,1,87000.0,1009585,1.0,173 -1256069,1630091248,8139180,2,26,-9.0,2,0.0,1,12200.0,1001264,7.0,173 -1256070,1630091249,8143982,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,173 -1256071,1630091250,8143982,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,173 -1256072,1630091251,8143500,2,60,-9.0,2,1.0,1,2700.0,1009585,3.0,173 -1256073,1630091252,8136095,2,22,2.0,3,0.0,1,4800.0,1009585,3.0,173 -1256074,1630091253,8140184,1,26,-9.0,1,1.0,1,13000.0,1042852,6.0,173 -1256075,1630091254,8144456,2,59,-9.0,1,0.0,1,11300.0,1042852,6.0,173 -1256076,1630091255,8143276,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,173 -1256077,1630091256,8136627,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,173 -1256078,1630091257,8143450,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,173 -1256079,1630091258,8143483,1,57,-9.0,1,1.0,1,72000.0,1042852,6.0,173 -1256080,1630091259,8145448,2,44,-9.0,4,0.0,1,24000.0,1042852,3.0,173 -1256081,1630091260,8136627,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,173 -1256082,1630091261,8139780,2,51,2.0,3,1.0,1,23800.0,1073094,3.0,173 -1256083,1630091262,8141347,1,29,-9.0,2,1.0,1,79500.0,1025215,5.0,173 -1256084,1630091263,8137934,1,60,-9.0,2,2.0,1,9600.0,1001264,1.0,173 -1256085,1630091264,8141487,2,33,3.0,4,0.0,1,0.0,1001264,3.0,173 -1256086,1630091265,8139180,2,53,-9.0,1,0.0,1,3100.0,1001264,4.0,173 -1256087,1630091266,8139615,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,173 -1256088,1630091267,8145195,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,173 -1256089,1630091268,8136183,2,48,1.0,3,1.0,1,26000.0,1042852,1.0,173 -1256090,1630091269,8140577,2,46,-9.0,3,0.0,1,1400.0,1025215,3.0,173 -1256091,1630091270,8136440,2,30,-9.0,1,1.0,1,8000.0,1025215,4.0,173 -1256092,1630091271,8136627,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,173 -1256093,1630091272,8140893,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,173 -1256094,1630091273,8137673,2,45,-9.0,1,1.0,1,81000.0,1009585,4.0,173 -1256095,1630091274,8138094,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,173 -1256096,1630091275,8139615,1,35,1.0,3,2.0,1,16000.0,1009585,3.0,173 -1256097,1630091276,8143500,2,29,4.0,5,1.0,1,8700.0,1009585,3.0,173 -1256098,1630091277,8136627,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,173 -1256099,1630091278,8139749,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,173 -1256100,1630091279,8139615,2,63,-9.0,1,0.0,1,12000.0,1009585,4.0,173 -1256101,1630091280,8136440,2,32,3.0,6,1.0,1,19200.0,1073094,1.0,173 -1256102,1630091281,8139113,2,64,-9.0,2,2.0,1,44200.0,1025215,3.0,173 -1256103,1630091282,8141989,1,64,-9.0,2,2.0,1,389100.0,1001264,1.0,173 -1256104,1630091283,8143674,2,48,1.0,3,0.0,1,13600.0,1073094,3.0,173 -1256105,1630091284,8140184,2,55,-9.0,2,2.0,1,20050.0,1001264,3.0,173 -1256106,1630091285,8136627,2,28,-9.0,2,2.0,1,50000.0,1001264,3.0,173 -1256107,1630091286,8139180,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,173 -1256108,1630091287,8138005,1,24,-9.0,5,5.0,1,82000.0,1009585,7.0,173 -1256109,1630091288,8143483,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,173 -1256110,1630091289,8140420,2,63,-9.0,2,0.0,1,26500.0,1001264,7.0,173 -1256111,1630091290,8143982,2,42,-9.0,1,1.0,1,43000.0,1025215,4.0,173 -1256112,1630091291,8143982,1,61,3.0,6,0.0,1,9900.0,1042852,3.0,173 -1256113,1630091292,8137378,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,173 -1256114,1630091293,8143982,4,36,3.0,4,1.0,1,23000.0,1009585,3.0,173 -1256115,1630091294,8136440,2,44,1.0,3,2.0,1,7300.0,1073094,3.0,173 -1256116,1630091295,8142386,2,79,-9.0,1,1.0,1,9300.0,1009585,6.0,173 -1256117,1630091296,8143483,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,173 -1256118,1630091297,8138933,1,59,-9.0,1,1.0,1,30700.0,1025215,6.0,173 -1256119,1630091298,8139370,1,41,1.0,5,0.0,1,22000.0,1042852,3.0,173 -1256120,1630091299,8138933,1,33,1.0,3,2.0,1,50000.0,1001264,1.0,173 -1256121,1630091300,8140893,2,53,-9.0,1,0.0,1,0.0,1042852,4.0,173 -1256122,1630091301,8136627,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,173 -1256123,1630091302,8141936,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,173 -1256124,1630091303,8139615,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,173 -1256125,1630091304,8139780,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,173 -1256126,1630091305,8140268,2,32,1.0,3,1.0,1,10000.0,1009585,1.0,173 -1256127,1630091306,8145448,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,173 -1256128,1630091307,8140184,1,54,-9.0,1,1.0,1,24000.0,1073094,6.0,173 -1256129,1630091308,8137116,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,173 -1256130,1630091309,8141936,2,64,-9.0,1,1.0,1,69000.0,1025215,6.0,173 -1256131,1630091310,8141837,2,43,-9.0,2,1.0,1,24740.0,1042852,7.0,173 -1256132,1630091311,8140795,1,26,-9.0,2,2.0,1,12000.0,1009585,5.0,173 -1256133,1630091312,8145758,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,173 -1256134,1630091313,8137502,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,173 -1256135,1630091314,8136935,1,33,-9.0,5,5.0,1,170670.0,1001264,7.0,173 -1256136,1630091315,8143450,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,173 -1256137,1630091316,8144826,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,173 -1256138,1630091317,8143450,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,173 -1256139,1630091318,8136627,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,173 -1256140,1630091319,8141629,2,61,-9.0,2,0.0,1,31400.0,1042852,2.0,173 -1256141,1630091320,8140679,2,62,-9.0,1,1.0,1,51700.0,1009585,6.0,173 -1256142,1630091321,8141423,2,38,2.0,4,1.0,1,131004.0,1001264,3.0,173 -1256143,1630091322,8143500,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,173 -1256144,1630091323,8142894,1,48,-9.0,2,2.0,1,100060.0,1001264,5.0,173 -1256145,1630091324,8145758,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,173 -1256146,1630091325,8143982,2,44,2.0,5,1.0,1,27700.0,1025215,3.0,173 -1256147,1630091326,8139780,2,52,-9.0,2,0.0,1,23400.0,1073094,7.0,173 -1256148,1630091327,8141884,1,31,-9.0,1,1.0,1,44000.0,1001264,6.0,173 -1256149,1630091328,8900613,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,173 -1256150,1630091329,8900611,2,77,-9.0,1,0.0,1,8800.0,1025215,4.0,173 -1256151,1630091330,8145758,2,52,1.0,2,0.0,1,8500.0,1001264,2.0,173 -1256152,1630091331,8143982,2,44,-9.0,2,1.0,1,18000.0,1042852,2.0,173 -1256153,1630091332,8144826,2,54,-9.0,2,0.0,1,29300.0,1001264,3.0,173 -1256154,1630091333,8143483,2,34,2.0,3,1.0,1,18000.0,1001264,3.0,173 -1256155,1630091334,8145448,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,173 -1256156,1630091335,8145758,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,173 -1256157,1630091336,8138933,2,56,-9.0,1,2.0,1,45000.0,1001264,4.0,173 -1256158,1630091337,8141742,2,50,-9.0,1,1.0,1,24000.0,1073094,4.0,173 -1256159,1630091338,8139615,1,36,3.0,5,2.0,1,365500.0,1001264,1.0,173 -1256160,1630091339,8138933,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,173 -1256161,1630091340,8143973,1,60,-9.0,1,1.0,1,640.0,1042852,6.0,173 -1256162,1630091341,8139615,2,42,-9.0,4,3.0,1,0.0,1009585,1.0,173 -1256163,1630091342,8140184,2,38,1.0,3,2.0,1,51200.0,1025215,1.0,173 -1256164,1630091343,8138094,3,37,1.0,2,1.0,1,16000.0,1042852,3.0,173 -1256165,1630091344,8140679,1,33,-9.0,2,2.0,1,165190.0,1001264,1.0,173 -1256166,1630091345,8141313,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,173 -1256167,1630091346,8140893,2,63,-9.0,1,0.0,1,37000.0,1073094,4.0,173 -1256168,1630091347,8141369,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,173 -1256169,1630091348,8145758,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,173 -1256170,1630091349,8143450,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,173 -1256171,1630091350,8140679,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,173 -1256172,1630091351,8140577,2,25,1.0,2,1.0,1,45000.0,1073094,3.0,173 -1256173,1630091352,8143483,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,173 -1256174,1630091353,8136627,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,173 -1256175,1630091354,8141369,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,173 -1256176,1630091355,8136875,4,61,-9.0,1,1.0,1,13500.0,1025215,4.0,173 -1256177,1630091356,8143483,2,23,3.0,5,0.0,1,12700.0,1025215,3.0,173 -1256178,1630091357,8141347,2,53,-9.0,1,1.0,1,12900.0,1025215,6.0,173 -1256179,1630091358,8142696,1,50,2.0,3,2.0,1,29120.0,1025215,3.0,173 -1256180,1630091359,8136627,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,173 -1256181,1630091360,8142386,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,173 -1256182,1630091361,8141369,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,173 -1256183,1630091362,8140577,2,23,2.0,3,1.0,1,1200.0,1009585,3.0,173 -1256184,1630091363,8141369,2,55,-9.0,3,0.0,1,34150.0,1042852,3.0,173 -1256185,1630091364,8140866,2,56,-9.0,2,1.0,1,23000.0,1001264,3.0,173 -1256186,1630091365,8141035,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,173 -1256187,1630091366,8900608,2,63,-9.0,1,1.0,1,12000.0,1001264,6.0,173 -1256188,1630091367,8139615,2,47,-9.0,2,1.0,1,17100.0,1001264,2.0,173 -1256189,1630091368,8143982,2,50,1.0,2,1.0,1,106700.0,1073094,7.0,173 -1256190,1630091369,8143982,2,40,2.0,3,1.0,1,48000.0,1009585,3.0,173 -1256191,1630091370,8143483,2,24,3.0,4,0.0,1,1600.0,1001264,3.0,173 -1256192,1630091371,8136440,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,173 -1256193,1630091372,8141936,1,30,-9.0,1,1.0,1,15000.0,1001264,4.0,173 -1256194,1630091373,8139370,2,32,3.0,4,1.0,1,48000.0,1025215,3.0,173 -1256195,1630091374,8139370,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,173 -1256196,1630091375,8145758,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,173 -1256197,1630091376,8139554,2,55,1.0,3,0.0,1,11100.0,1073094,3.0,173 -1256198,1630091377,8139370,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,173 -1256199,1630091378,8140866,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,173 -1256200,1630091379,8143973,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,173 -1256201,1630091380,8138933,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,173 -1256202,1630091381,8144456,2,22,3.0,4,1.0,1,18600.0,1001264,3.0,173 -1256203,1630091382,8140184,1,30,-9.0,1,0.0,1,25200.0,1042852,6.0,173 -1256204,1630091383,8136627,1,49,-9.0,2,2.0,1,58000.0,1042852,1.0,173 -1256205,1630091384,8140268,2,26,1.0,2,1.0,1,7500.0,1009585,3.0,173 -1256206,1630091385,8139180,2,57,1.0,3,2.0,1,17500.0,1001264,3.0,173 -1256207,1630091386,8141369,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,173 -1256208,1630091387,8144826,2,61,1.0,3,1.0,1,18000.0,1042852,3.0,173 -1256209,1630091388,8140184,1,58,-9.0,1,1.0,1,65000.0,1042852,6.0,173 -1256210,1630091389,8140893,2,30,3.0,4,1.0,1,17000.0,1009585,3.0,173 -1256211,1630091390,8141347,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,173 -1256212,1630091391,8140893,1,53,2.0,4,0.0,1,15200.0,1001264,3.0,173 -1256213,1630091392,8139370,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,173 -1256214,1630091393,8144826,2,36,2.0,4,2.0,1,11400.0,1042852,3.0,173 -1256215,1630091394,8142206,2,61,-9.0,3,3.0,1,184000.0,1025215,2.0,173 -1256216,1630091395,8143674,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,173 -1256217,1630091396,8143450,1,33,-9.0,2,1.0,1,25000.0,1009585,1.0,173 -1256218,1630091397,8140679,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,173 -1256219,1630091398,8138933,1,64,-9.0,3,2.0,1,16710.0,1001264,3.0,173 -1256220,1630091399,8140679,2,38,2.0,6,2.0,1,122500.0,1042852,3.0,173 -1256221,1630091400,8136627,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,173 -1256222,1630091401,8136440,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,173 -1256223,1630091402,8139180,2,26,-9.0,2,1.0,1,73000.0,1001264,1.0,173 -1256224,1630091403,8144265,2,40,-9.0,1,1.0,1,800.0,1042852,4.0,173 -1256225,1630091404,8141347,2,41,-9.0,2,2.0,1,95000.0,1025215,1.0,173 -1256226,1630091405,8140679,2,42,-9.0,1,2.0,1,15000.0,1001264,4.0,173 -1256227,1630091406,8143674,1,58,-9.0,1,1.0,1,31250.0,1001264,6.0,173 -1256228,1630091407,8138933,2,26,3.0,6,0.0,1,30700.0,1009585,3.0,173 -1256229,1630091408,8136627,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,173 -1256230,1630091409,8140893,2,40,4.0,6,2.0,1,63000.0,1009585,2.0,173 -1256231,1630091410,8139463,2,44,-9.0,1,0.0,1,4600.0,1009585,4.0,173 -1256232,1630091411,8138933,2,31,1.0,2,1.0,1,30000.0,1001264,3.0,173 -1256233,1630091412,8140184,2,62,-9.0,2,2.0,1,105000.0,1042852,3.0,173 -1256234,1630091413,8141602,2,56,2.0,3,0.0,1,40824.0,1009585,7.0,173 -1256235,1630091414,8144456,2,39,1.0,3,0.0,1,14000.0,1001264,3.0,173 -1256236,1630091415,8136183,2,51,4.0,5,0.0,1,1920.0,1025215,3.0,173 -1256237,1630091416,8140679,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,173 -1256238,1630091417,8136627,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,173 -1256239,1630091418,8140893,1,86,-9.0,1,1.0,1,17300.0,1025215,6.0,173 -1256240,1630091419,8141369,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,173 -1256241,1630091420,8143450,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,173 -1256242,1630091421,8144456,2,59,-9.0,3,1.0,1,1400.0,1009585,1.0,173 -1256243,1630091422,8143982,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,173 -1256244,1630091423,8136440,2,37,2.0,3,1.0,1,15600.0,1025215,3.0,173 -1256245,1630091424,8140893,2,24,3.0,5,1.0,1,0.0,1073094,3.0,173 -1256246,1630091425,8143450,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,173 -1256247,1630091426,8145758,4,61,-9.0,2,0.0,1,6200.0,1009585,3.0,173 -1256248,1630091427,8143450,1,67,-9.0,1,0.0,1,8300.0,1073094,6.0,173 -1256249,1630091428,8143276,1,52,1.0,2,3.0,1,30500.0,1025215,2.0,173 -1256250,1630091429,8141369,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,173 -1256251,1630091430,8140893,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,173 -1256252,1630091431,8139780,1,58,-9.0,1,3.0,1,36000.0,1025215,4.0,173 -1256253,1630091432,8138933,4,28,1.0,3,1.0,1,20000.0,1001264,1.0,173 -1256254,1630091433,8143276,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,173 -1256255,1630091434,8142733,2,61,-9.0,2,2.0,1,51200.0,1001264,1.0,173 -1256256,1630091435,8141347,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,173 -1256257,1630091436,8143674,1,48,1.0,2,0.0,1,8000.0,1025215,3.0,173 -1256258,1630091437,8138933,2,44,1.0,3,0.0,1,170.0,1009585,3.0,173 -1256259,1630091438,8143483,2,64,-9.0,2,2.0,1,169704.0,1025215,1.0,173 -1256260,1630091439,8143982,2,53,-9.0,3,1.0,1,105400.0,1042852,2.0,173 -1256261,1630091440,8139780,1,51,-9.0,1,0.0,1,22000.0,1042852,6.0,173 -1256262,1630091441,8139180,2,28,3.0,5,1.0,1,52700.0,1042852,2.0,173 -1256263,1630091442,8145271,2,52,-9.0,3,1.0,1,36500.0,1001264,1.0,173 -1256264,1630091443,8141369,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,173 -1256265,1630091444,8143982,2,56,-9.0,1,0.0,1,42000.0,1042852,6.0,173 -1256266,1630091445,8139780,2,55,-9.0,3,1.0,1,50000.0,1009585,2.0,173 -1256267,1630091446,8141369,2,40,2.0,4,1.0,1,43600.0,1073094,1.0,173 -1256268,1630091447,8139180,2,45,-9.0,3,0.0,1,40800.0,1042852,3.0,173 -1256269,1630091448,8139370,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,173 -1256270,1630091449,8138933,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,173 -1256271,1630091450,8138933,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,173 -1256272,1630091451,8140866,2,63,1.0,2,2.0,1,37300.0,1009585,3.0,173 -1256273,1630091452,8141936,2,32,4.0,5,1.0,1,33400.0,1009585,3.0,173 -1256274,1630091453,8139615,2,40,1.0,3,1.0,1,47600.0,1073094,3.0,173 -1256275,1630091454,8140184,1,36,1.0,3,1.0,1,112000.0,1042852,1.0,173 -1256276,1630091455,8139370,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,173 -1256277,1630091456,8136627,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,173 -1256278,1630091457,8136627,2,45,1.0,2,0.0,1,20900.0,1009585,3.0,173 -1256279,1630091458,8143982,2,32,1.0,3,0.0,1,33000.0,1073094,1.0,173 -1256280,1630091459,8144826,2,46,-9.0,3,1.0,1,21000.0,1009585,3.0,173 -1256281,1630091460,8139180,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,173 -1256282,1630091461,8139615,2,55,-9.0,3,2.0,1,38900.0,1001264,1.0,173 -1256283,1630091462,8140893,1,49,2.0,3,1.0,1,55000.0,1001264,3.0,173 -1256284,1630091463,8139780,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,173 -1256285,1630091464,8139615,1,46,2.0,4,2.0,1,26980.0,1025215,1.0,173 -1256286,1630091465,8136440,1,34,2.0,4,2.0,1,178000.0,1009585,1.0,173 -1256287,1630091466,8139914,2,39,-9.0,2,0.0,1,580.0,1025215,2.0,173 -1256288,1630091467,8138933,2,50,-9.0,2,2.0,1,20800.0,1073094,1.0,173 -1256289,1630091468,8145758,4,58,-9.0,1,0.0,1,21700.0,1025215,6.0,173 -1256290,1630091469,8142386,2,58,-9.0,2,1.0,1,90000.0,1009585,7.0,173 -1256291,1630091470,8136384,2,58,-9.0,3,2.0,1,55200.0,1025215,3.0,173 -1256292,1630091471,8141369,1,28,-9.0,2,2.0,1,65000.0,1001264,1.0,173 -1256293,1630091472,8140679,2,68,-9.0,2,1.0,1,12000.0,1001264,1.0,173 -1256294,1630091473,8143982,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,173 -1256295,1630091474,8144826,2,38,1.0,3,2.0,1,80000.0,1009585,1.0,173 -1256296,1630091475,8145758,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,173 -1256297,1630091476,8139370,2,32,-9.0,2,1.0,1,28600.0,1009585,1.0,173 -1256298,1630091477,8139816,2,62,-9.0,1,1.0,1,57000.0,1009585,4.0,173 -1256299,1630091478,8139615,2,16,1.0,2,1.0,1,28500.0,1001264,5.0,173 -1256300,1630091479,8136440,2,29,-9.0,1,1.0,1,50000.0,1001264,6.0,173 -1256301,1630091480,8143483,2,55,-9.0,1,2.0,1,56000.0,1042852,4.0,173 -1256302,1630091481,8139180,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,173 -1256303,1630091482,8145758,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,173 -1256304,1630091483,8143483,2,42,-9.0,1,2.0,1,8600.0,1009585,4.0,173 -1256305,1630091484,8145758,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,173 -1256306,1630091485,8136095,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,173 -1256307,1630091486,8140144,1,62,-9.0,3,0.0,1,75900.0,1042852,1.0,173 -1256308,1630091487,8136440,2,33,3.0,5,2.0,1,39000.0,1042852,1.0,173 -1256309,1630091488,8139749,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,173 -1256310,1630091489,8144265,2,60,1.0,3,2.0,1,30100.0,1025215,1.0,173 -1256311,1630091490,8143483,1,27,-9.0,4,3.0,1,45300.0,1042852,5.0,173 -1256312,1630091491,8142503,1,62,-9.0,2,1.0,1,125200.0,1042852,5.0,173 -1256313,1630091492,8129204,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,215 -1256314,1630091493,8129204,1,64,-9.0,2,2.0,1,389100.0,1001264,1.0,215 -1256315,1630091494,8031356,1,48,-9.0,2,2.0,1,100060.0,1001264,5.0,208 -1256316,1630091495,8424105,2,51,-9.0,1,0.0,1,900.0,1042852,4.0,215 -1256317,1630091496,8424105,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,215 -1256318,1630091497,8424105,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,215 -1256319,1630091498,8031356,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,208 -1256320,1630091499,8031356,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,208 -1256321,1630091500,8031356,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,208 -1256322,1630091501,8031356,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,208 -1256323,1630091502,8031356,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,208 -1256324,1630091503,8424105,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,215 -1256325,1630091504,8128671,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,215 -1256326,1630091505,8129204,1,31,-9.0,2,2.0,1,404000.0,1025215,7.0,215 -1256327,1630091506,8129204,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,215 -1256328,1630091507,8424105,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,215 -1256329,1630091508,8424105,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,215 -1256330,1630091509,8129204,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,215 -1256331,1630091510,8424105,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,215 -1256332,1630091511,8129204,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,215 -1256333,1630091512,8424105,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,215 -1256334,1630091513,8031356,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,208 -1256335,1630091514,8424105,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,215 -1256336,1630091515,8424105,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,215 -1256337,1630091516,8424105,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,215 -1256338,1630091517,8424105,1,31,-9.0,2,2.0,1,404000.0,1025215,7.0,215 -1256339,1630091518,8129204,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,215 -1256340,1630091519,8129204,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,215 -1256341,1630091520,8424105,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,215 -1256342,1630091521,8129204,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,215 -1256343,1630091522,8129204,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,215 -1256344,1630091523,8424105,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,215 -1256345,1630091524,8424105,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,215 -1256346,1630091525,8031356,2,32,-9.0,1,0.0,1,35000.0,1025215,5.0,208 -1256347,1630091526,8031356,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,208 -1256348,1630091527,8424105,2,28,-9.0,2,2.0,1,50000.0,1001264,3.0,215 -1256349,1630091528,8129204,1,29,-9.0,1,2.0,1,49500.0,1042852,5.0,215 -1256350,1630091529,8129204,1,29,-9.0,1,2.0,1,49500.0,1042852,5.0,215 -1256351,1630091530,8129204,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,215 -1256352,1630091531,8031356,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,208 -1256353,1630091532,8128671,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,215 -1256354,1630091533,8031356,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,208 -1256355,1630091534,8031356,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,208 -1256356,1630091535,8128671,2,29,-9.0,1,0.0,1,37000.0,1042852,4.0,215 -1256357,1630091536,8128671,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,215 -1256358,1630091537,8031356,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,208 -1256359,1630091538,8128671,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,215 -1256360,1630091539,8128671,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,215 -1256361,1630091540,8128671,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,215 -1256362,1630091541,8128671,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,215 -1256363,1630091542,8128671,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,215 -1256364,1630091543,8128671,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,215 -1256365,1630091544,8128671,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,215 -1256366,1630091545,8128671,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,215 -1256367,1630091546,8128671,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,215 -1256368,1630091547,8128671,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,215 -1256369,1630091548,8128671,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,215 -1256370,1630091549,8128671,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,215 -1256371,1630091550,8128671,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,215 -1256372,1630091551,8128671,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,215 -1256373,1630091552,8129204,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,215 -1256374,1630091553,8128671,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,215 -1256375,1630091554,8128671,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,215 -1256376,1630091555,8424105,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,215 -1256377,1630091556,8031356,2,42,-9.0,1,1.0,1,40000.0,1042852,4.0,208 -1256378,1630091557,8424105,2,40,-9.0,1,1.0,1,49300.0,1042852,4.0,215 -1256379,1630091558,8128671,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,215 -1256380,1630091559,8031356,2,42,-9.0,1,1.0,1,55000.0,1025215,4.0,208 -1256381,1630091560,8129204,2,34,-9.0,1,1.0,1,36000.0,1042852,6.0,215 -1256382,1630091561,8424105,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,215 -1256383,1630091562,8128671,2,26,-9.0,1,1.0,1,41660.0,1042852,6.0,215 -1256384,1630091563,8128671,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,215 -1256385,1630091564,8128671,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,215 -1256386,1630091565,8129204,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,215 -1256387,1630091566,8129204,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,215 -1256388,1630091567,8129204,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,215 -1256389,1630091568,8424105,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,215 -1256390,1630091569,8128671,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,215 -1256391,1630091570,8031356,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,208 -1256392,1630091571,8129204,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,215 -1256393,1630091572,8128975,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,215 -1256394,1630091573,8128671,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,215 -1256395,1630091574,8424105,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,215 -1256396,1630091575,8424105,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,215 -1256397,1630091576,8129204,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,215 -1256398,1630091577,8128671,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,215 -1256399,1630091578,8129204,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,215 -1256400,1630091579,8128975,2,36,-9.0,1,2.0,1,33000.0,1001264,4.0,215 -1256401,1630091580,8031356,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,208 -1256402,1630091581,8129204,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,215 -1256403,1630091582,8128671,2,32,1.0,2,0.0,1,40400.0,1042852,3.0,215 -1256404,1630091583,8031356,2,29,1.0,2,1.0,1,32000.0,1025215,2.0,208 -1256405,1630091584,8424105,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,215 -1256406,1630091585,8031356,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,208 -1256407,1630091586,8031356,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,208 -1256408,1630091587,8129204,1,25,-9.0,2,2.0,1,48000.0,1042852,7.0,215 -1256409,1630091588,8031356,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,208 -1256410,1630091589,8031356,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,208 -1256411,1630091590,8031356,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,208 -1256412,1630091591,8128671,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,215 -1256413,1630091592,8031356,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,208 -1256414,1630091593,8129204,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,215 -1256415,1630091594,8129204,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,215 -1256416,1630091595,8129204,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,215 -1256417,1630091596,8031356,1,28,-9.0,2,2.0,1,32000.0,1009585,5.0,208 -1256418,1630091597,8129204,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,215 -1256419,1630091598,8424105,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,215 -1256420,1630091599,8129204,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,215 -1256421,1630091600,8031356,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,208 -1256422,1630091601,8031356,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,208 -1256423,1630091602,8128671,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,215 -1256424,1630091603,8128671,2,41,-9.0,1,1.0,1,62000.0,1073094,6.0,215 -1256425,1630091604,8128671,2,41,-9.0,1,1.0,1,62000.0,1073094,6.0,215 -1256426,1630091605,8129204,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,215 -1256427,1630091606,8128671,1,28,-9.0,1,1.0,1,62000.0,1009585,6.0,215 -1256428,1630091607,8424105,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,215 -1256429,1630091608,8128671,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,215 -1256430,1630091609,8129204,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,215 -1256431,1630091610,8130143,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,215 -1256432,1630091611,8128671,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,215 -1256433,1630091612,8130143,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,215 -1256434,1630091613,8128671,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,215 -1256435,1630091614,8128671,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,215 -1256436,1630091615,8128671,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,215 -1256437,1630091616,8128671,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,215 -1256438,1630091617,8129204,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,215 -1256439,1630091618,8129204,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,215 -1256440,1630091619,8424105,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,215 -1256441,1630091620,8130143,1,29,-9.0,2,1.0,1,79500.0,1025215,5.0,215 -1256442,1630091621,8129204,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,215 -1256443,1630091622,8129204,1,31,-9.0,2,2.0,1,84000.0,1073094,1.0,215 -1256444,1630091623,8129204,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,215 -1256445,1630091624,8128671,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,215 -1256446,1630091625,8129204,1,34,-9.0,2,2.0,1,70000.0,1042852,7.0,215 -1256447,1630091626,8424105,1,26,-9.0,2,2.0,1,80000.0,1001264,5.0,215 -1256448,1630091627,8129204,1,28,-9.0,2,2.0,1,65000.0,1001264,1.0,215 -1256449,1630091628,8129204,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,215 -1256450,1630091629,8424150,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,215 -1256451,1630091630,8031356,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,208 -1256452,1630091631,8424150,2,41,-9.0,1,0.0,1,7350.0,1001264,4.0,215 -1256453,1630091632,8128975,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,215 -1256454,1630091633,8128975,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,215 -1256455,1630091634,8128975,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,215 -1256456,1630091635,8129204,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,215 -1256457,1630091636,8129204,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,215 -1256458,1630091637,8128975,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,215 -1256459,1630091638,8128975,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,215 -1256460,1630091639,8424150,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,215 -1256461,1630091640,8129204,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,215 -1256462,1630091641,8128975,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,215 -1256463,1630091642,8424105,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,215 -1256464,1630091643,8128975,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,215 -1256465,1630091644,8424105,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,215 -1256466,1630091645,8128975,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,215 -1256467,1630091646,8424105,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,215 -1256468,1630091647,8128975,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,215 -1256469,1630091648,8128975,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,215 -1256470,1630091649,8128975,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,215 -1256471,1630091650,8424105,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,215 -1256472,1630091651,8129204,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,215 -1256473,1630091652,8129204,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,215 -1256474,1630091653,8031356,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,208 -1256475,1630091654,8424150,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,215 -1256476,1630091655,8128671,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,215 -1256477,1630091656,8128671,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,215 -1256478,1630091657,8424150,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,215 -1256479,1630091658,8128671,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,215 -1256480,1630091659,8128671,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,215 -1256481,1630091660,8424105,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,215 -1256482,1630091661,8128671,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,215 -1256483,1630091662,8128671,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,215 -1256484,1630091663,8424105,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,215 -1256485,1630091664,8128671,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,215 -1256486,1630091665,8031356,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,208 -1256487,1630091666,8031356,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,208 -1256488,1630091667,8424105,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,215 -1256489,1630091668,8424105,2,42,-9.0,1,1.0,1,0.0,1073094,4.0,215 -1256490,1630091669,8031356,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,208 -1256491,1630091670,8129204,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,215 -1256492,1630091671,8129204,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,215 -1256493,1630091672,8129204,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,215 -1256494,1630091673,8128671,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,215 -1256495,1630091674,8129204,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,215 -1256496,1630091675,8031356,2,36,-9.0,2,0.0,1,8100.0,1073094,7.0,208 -1256497,1630091676,8129204,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,215 -1256498,1630091677,8031356,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,208 -1256499,1630091678,8424105,2,38,-9.0,2,0.0,1,20700.0,1042852,3.0,215 -1256500,1630091679,8031356,2,36,-9.0,1,0.0,1,8100.0,1073094,7.0,208 -1256501,1630091680,8031356,2,36,-9.0,2,0.0,1,8100.0,1073094,7.0,208 -1256502,1630091681,8031356,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,208 -1256503,1630091682,8031356,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,208 -1256504,1630091683,8031356,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,208 -1256505,1630091684,8031356,2,41,1.0,2,0.0,1,9700.0,1009585,3.0,208 -1256506,1630091685,8031356,2,41,1.0,2,0.0,1,9700.0,1009585,3.0,208 -1256507,1630091686,8031356,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,208 -1256508,1630091687,8129204,2,26,1.0,2,0.0,1,3600.0,1025215,3.0,215 -1256509,1630091688,8031356,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,208 -1256510,1630091689,8031356,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,208 -1256511,1630091690,8424105,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,215 -1256512,1630091691,8031356,2,33,1.0,2,1.0,1,17000.0,1073094,3.0,208 -1256513,1630091692,8031356,2,37,1.0,2,1.0,1,4800.0,1042852,3.0,208 -1256514,1630091693,8128671,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,215 -1256515,1630091694,8128671,1,27,-9.0,1,2.0,1,0.0,1025215,1.0,215 -1256516,1630091695,8424150,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,215 -1256517,1630091696,8031356,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,208 -1256518,1630091697,8128975,2,37,-9.0,1,0.0,1,15000.0,1073094,6.0,215 -1256519,1630091698,8129204,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,215 -1256520,1630091699,8424150,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,215 -1256521,1630091700,8424150,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,215 -1256522,1630091701,8128671,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,215 -1256523,1630091702,8424150,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,215 -1256524,1630091703,8424150,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,215 -1256525,1630091704,8424150,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,215 -1256526,1630091705,8424150,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,215 -1256527,1630091706,8424150,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,215 -1256528,1630091707,8424150,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,215 -1256529,1630091708,8031356,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,208 -1256530,1630091709,8424150,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,215 -1256531,1630091710,8031356,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,208 -1256532,1630091711,8424150,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,215 -1256533,1630091712,8424150,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,215 -1256534,1630091713,8424150,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,215 -1256535,1630091714,8424150,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,215 -1256536,1630091715,8424150,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,215 -1256537,1630091716,8424150,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,215 -1256538,1630091717,8424150,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,215 -1256539,1630091718,8128671,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,215 -1256540,1630091719,8424105,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,215 -1256541,1630091720,8424105,2,30,-9.0,1,1.0,1,15000.0,1009585,4.0,215 -1256542,1630091721,8031356,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,208 -1256543,1630091722,8128671,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,215 -1256544,1630091723,8128671,1,31,-9.0,1,1.0,1,18000.0,1001264,6.0,215 -1256545,1630091724,8424150,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,215 -1256546,1630091725,8128671,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,215 -1256547,1630091726,8128671,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,215 -1256548,1630091727,8129204,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,215 -1256549,1630091728,8424150,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,215 -1256550,1630091729,8129204,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,215 -1256551,1630091730,8031356,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,208 -1256552,1630091731,8128671,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,215 -1256553,1630091732,8031356,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,208 -1256554,1630091733,8424105,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,215 -1256555,1630091734,8128671,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,215 -1256556,1630091735,8129204,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,215 -1256557,1630091736,8031356,2,30,-9.0,2,0.0,1,14700.0,1009585,1.0,208 -1256558,1630091737,8031356,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,208 -1256559,1630091738,8031356,2,35,1.0,2,0.0,1,3210.0,1009585,3.0,208 -1256560,1630091739,8424105,2,34,1.0,2,0.0,1,18000.0,1025215,3.0,215 -1256561,1630091740,8031356,2,32,-9.0,2,1.0,1,28600.0,1009585,1.0,208 -1256562,1630091741,8128671,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,215 -1256563,1630091742,8031356,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,208 -1256564,1630091743,8031356,2,29,1.0,2,1.0,1,12190.0,1001264,3.0,208 -1256565,1630091744,8129204,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,215 -1256566,1630091745,8031356,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,208 -1256567,1630091746,8129204,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,215 -1256568,1630091747,8129204,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,215 -1256569,1630091748,8129204,2,58,-9.0,1,1.0,1,109000.0,1073094,6.0,215 -1256570,1630091749,8128671,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,215 -1256571,1630091750,8128671,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,215 -1256572,1630091751,8128671,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,215 -1256573,1630091752,8128671,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,215 -1256574,1630091753,8031356,1,59,-9.0,1,1.0,1,318000.0,1073094,4.0,208 -1256575,1630091754,8128671,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,215 -1256576,1630091755,8128671,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,215 -1256577,1630091756,8128671,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,215 -1256578,1630091757,8031356,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,208 -1256579,1630091758,8129204,2,57,-9.0,1,0.0,1,38400.0,1073094,4.0,215 -1256580,1630091759,8031356,2,63,-9.0,1,0.0,1,37000.0,1073094,4.0,208 -1256581,1630091760,8128671,2,64,-9.0,1,1.0,1,32700.0,1042852,4.0,215 -1256582,1630091761,8129204,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,215 -1256583,1630091762,8130143,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,215 -1256584,1630091763,8424150,2,47,-9.0,1,0.0,1,47000.0,1001264,4.0,215 -1256585,1630091764,8424150,2,47,-9.0,1,0.0,1,47000.0,1001264,4.0,215 -1256586,1630091765,8424150,2,47,-9.0,1,0.0,1,47000.0,1001264,4.0,215 -1256587,1630091766,8424105,2,55,-9.0,1,0.0,1,50000.0,1025215,6.0,215 -1256588,1630091767,8424150,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,215 -1256589,1630091768,8424150,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,215 -1256590,1630091769,8129204,2,56,-9.0,1,1.0,1,39000.0,1009585,4.0,215 -1256591,1630091770,8031356,2,60,-9.0,1,1.0,1,50000.0,1073094,4.0,208 -1256592,1630091771,8031356,2,56,-9.0,1,1.0,1,39000.0,1009585,4.0,208 -1256593,1630091772,8031356,2,45,-9.0,1,1.0,1,36000.0,1009585,4.0,208 -1256594,1630091773,8129204,2,60,-9.0,1,1.0,1,50000.0,1073094,4.0,215 -1256595,1630091774,8031356,1,64,-9.0,1,1.0,1,59000.0,1073094,4.0,208 -1256596,1630091775,8129204,1,61,-9.0,1,1.0,1,57000.0,1025215,4.0,215 -1256597,1630091776,8129204,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,215 -1256598,1630091777,8031356,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,208 -1256599,1630091778,8128671,2,62,-9.0,2,0.0,1,38100.0,1025215,1.0,215 -1256600,1630091779,8031356,2,53,-9.0,2,1.0,1,34600.0,1009585,1.0,208 -1256601,1630091780,8031356,2,45,-9.0,2,2.0,1,58400.0,1001264,3.0,208 -1256602,1630091781,8128671,1,49,-9.0,2,2.0,1,58000.0,1042852,1.0,215 -1256603,1630091782,8031356,2,45,-9.0,1,1.0,1,81000.0,1009585,4.0,208 -1256604,1630091783,8031356,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,208 -1256605,1630091784,8129204,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,215 -1256606,1630091785,8031356,2,51,-9.0,1,0.0,1,8400.0,1042852,6.0,208 -1256607,1630091786,8031356,2,50,-9.0,1,0.0,1,0.0,1073094,6.0,208 -1256608,1630091787,8031356,2,57,-9.0,1,0.0,1,8100.0,1073094,4.0,208 -1256609,1630091788,8129204,2,56,-9.0,1,0.0,1,0.0,1001264,4.0,215 -1256610,1630091789,8128671,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,215 -1256611,1630091790,8031356,2,51,-9.0,1,0.0,1,8900.0,1009585,4.0,208 -1256612,1630091791,8424105,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,215 -1256613,1630091792,8128975,2,63,-9.0,1,0.0,1,3300.0,1025215,4.0,215 -1256614,1630091793,8031356,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,208 -1256615,1630091794,8031356,2,57,-9.0,1,0.0,1,8800.0,1001264,6.0,208 -1256616,1630091795,8424105,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,215 -1256617,1630091796,8031356,2,57,-9.0,1,0.0,1,8800.0,1001264,6.0,208 -1256618,1630091797,8129204,2,47,-9.0,1,0.0,1,6900.0,1025215,6.0,215 -1256619,1630091798,8424150,2,63,-9.0,1,0.0,1,6000.0,1073094,4.0,215 -1256620,1630091799,8129204,2,64,-9.0,1,0.0,1,9200.0,1009585,4.0,215 -1256621,1630091800,8128671,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,215 -1256622,1630091801,8031356,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,208 -1256623,1630091802,8424150,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,215 -1256624,1630091803,8129204,2,50,-9.0,1,0.0,1,8900.0,1009585,6.0,215 -1256625,1630091804,8031356,2,47,-9.0,1,0.0,1,12000.0,1025215,4.0,208 -1256626,1630091805,8424150,2,60,-9.0,1,0.0,1,13200.0,1009585,4.0,215 -1256627,1630091806,8424105,2,54,-9.0,1,0.0,1,4400.0,1025215,4.0,215 -1256628,1630091807,8424150,2,55,-9.0,1,0.0,1,10800.0,1025215,6.0,215 -1256629,1630091808,8128671,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,215 -1256630,1630091809,8129204,2,53,-9.0,1,0.0,1,26030.0,1042852,4.0,215 -1256631,1630091810,8031356,2,63,-9.0,1,0.0,1,8500.0,1009585,4.0,208 -1256632,1630091811,8031356,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,208 -1256633,1630091812,8031356,2,59,-9.0,1,0.0,1,9800.0,1009585,6.0,208 -1256634,1630091813,8424105,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,215 -1256635,1630091814,8031356,2,50,-9.0,1,0.0,1,6000.0,1073094,4.0,208 -1256636,1630091815,8031356,2,52,-9.0,1,0.0,1,8800.0,1001264,6.0,208 -1256637,1630091816,8031356,2,46,-9.0,1,0.0,1,1770.0,1042852,6.0,208 -1256638,1630091817,8129204,2,58,-9.0,1,0.0,1,8600.0,1073094,6.0,215 -1256639,1630091818,8424105,2,64,-9.0,1,0.0,1,9200.0,1009585,4.0,215 -1256640,1630091819,8128671,2,54,-9.0,1,0.0,1,8200.0,1009585,4.0,215 -1256641,1630091820,8424150,2,46,-9.0,1,0.0,1,0.0,1025215,4.0,215 -1256642,1630091821,8031356,2,63,-9.0,1,0.0,1,8500.0,1025215,6.0,208 -1256643,1630091822,8031356,2,57,-9.0,1,0.0,1,8100.0,1073094,4.0,208 -1256644,1630091823,8129204,2,58,-9.0,1,0.0,1,11000.0,1025215,6.0,215 -1256645,1630091824,8031356,2,64,-9.0,1,0.0,1,27900.0,1042852,6.0,208 -1256646,1630091825,8129204,2,54,-9.0,1,0.0,1,3200.0,1042852,4.0,215 -1256647,1630091826,8129204,2,62,-9.0,1,0.0,1,8100.0,1001264,6.0,215 -1256648,1630091827,8424105,2,50,-9.0,1,0.0,1,0.0,1025215,4.0,215 -1256649,1630091828,8128671,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,215 -1256650,1630091829,8031356,2,64,-9.0,1,0.0,1,12600.0,1001264,4.0,208 -1256651,1630091830,8031356,2,62,-9.0,1,0.0,1,21000.0,1001264,6.0,208 -1256652,1630091831,8424150,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,215 -1256653,1630091832,8129204,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,215 -1256654,1630091833,8424150,2,63,-9.0,1,0.0,1,0.0,1025215,6.0,215 -1256655,1630091834,8424105,2,63,-9.0,1,0.0,1,4200.0,1073094,6.0,215 -1256656,1630091835,8031356,2,53,-9.0,1,0.0,1,26030.0,1042852,4.0,208 -1256657,1630091836,8031356,2,51,-9.0,1,0.0,1,8900.0,1009585,4.0,208 -1256658,1630091837,8128975,2,45,-9.0,1,0.0,1,16800.0,1009585,4.0,215 -1256659,1630091838,8031356,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,208 -1256660,1630091839,8128671,2,64,-9.0,1,0.0,1,0.0,1009585,4.0,215 -1256661,1630091840,8031356,2,60,-9.0,1,0.0,1,5600.0,1025215,4.0,208 -1256662,1630091841,8424105,2,62,-9.0,1,0.0,1,12000.0,1073094,4.0,215 -1256663,1630091842,8031356,2,59,-9.0,1,0.0,1,14300.0,1073094,6.0,208 -1256664,1630091843,8031356,2,53,-9.0,1,0.0,1,26030.0,1042852,4.0,208 -1256665,1630091844,8128671,2,61,-9.0,1,0.0,1,25830.0,1042852,6.0,215 -1256666,1630091845,8128671,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,215 -1256667,1630091846,8424105,2,62,-9.0,1,0.0,1,12300.0,1001264,6.0,215 -1256668,1630091847,8128671,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,215 -1256669,1630091848,8424150,2,60,-9.0,1,0.0,1,13200.0,1009585,4.0,215 -1256670,1630091849,8031356,2,55,-9.0,1,0.0,1,0.0,1025215,4.0,208 -1256671,1630091850,8128671,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,215 -1256672,1630091851,8031356,2,62,-9.0,1,0.0,1,1800.0,1001264,4.0,208 -1256673,1630091852,8031356,2,60,-9.0,1,0.0,1,5600.0,1025215,4.0,208 -1256674,1630091853,8031356,2,59,-9.0,1,0.0,1,1200.0,1042852,4.0,208 -1256675,1630091854,8031356,2,51,-9.0,1,0.0,1,8900.0,1009585,4.0,208 -1256676,1630091855,8031356,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,208 -1256677,1630091856,8129204,2,64,-9.0,1,0.0,1,12600.0,1001264,4.0,215 -1256678,1630091857,8129204,2,58,-9.0,1,0.0,1,1020.0,1009585,4.0,215 -1256679,1630091858,8129204,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,215 -1256680,1630091859,8424105,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,215 -1256681,1630091860,8031356,2,58,-9.0,1,0.0,1,8500.0,1025215,4.0,208 -1256682,1630091861,8129204,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,215 -1256683,1630091862,8031356,2,63,-9.0,1,0.0,1,8500.0,1009585,4.0,208 -1256684,1630091863,8129204,2,56,-9.0,1,0.0,1,2440.0,1001264,6.0,215 -1256685,1630091864,8129204,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,215 -1256686,1630091865,8129204,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,215 -1256687,1630091866,8031356,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,208 -1256688,1630091867,8031356,4,46,-9.0,1,0.0,1,9000.0,1009585,6.0,208 -1256689,1630091868,8031356,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,208 -1256690,1630091869,8129204,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,215 -1256691,1630091870,8031356,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,208 -1256692,1630091871,8129204,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,215 -1256693,1630091872,8129204,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,215 -1256694,1630091873,8424150,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,215 -1256695,1630091874,8031356,1,62,-9.0,1,0.0,1,10100.0,1001264,6.0,208 -1256696,1630091875,8424150,1,60,-9.0,1,0.0,1,14000.0,1073094,6.0,215 -1256697,1630091876,8424150,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,215 -1256698,1630091877,8130143,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,215 -1256699,1630091878,8129204,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,215 -1256700,1630091879,8424105,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,215 -1256701,1630091880,8424150,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,215 -1256702,1630091881,8424150,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,215 -1256703,1630091882,8424150,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,215 -1256704,1630091883,8130143,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,215 -1256705,1630091884,8031356,1,60,-9.0,1,0.0,1,10840.0,1009585,4.0,208 -1256706,1630091885,8129204,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,215 -1256707,1630091886,8031356,3,61,-9.0,1,0.0,1,8670.0,1025215,6.0,208 -1256708,1630091887,8128671,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,215 -1256709,1630091888,8031356,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,208 -1256710,1630091889,8424105,2,64,-9.0,1,1.0,1,3300.0,1025215,4.0,215 -1256711,1630091890,8031356,2,58,-9.0,1,1.0,1,11000.0,1025215,4.0,208 -1256712,1630091891,8424105,2,62,-9.0,1,1.0,1,7000.0,1001264,4.0,215 -1256713,1630091892,8129204,1,64,-9.0,1,1.0,1,12300.0,1009585,4.0,215 -1256714,1630091893,8031356,2,57,-9.0,2,0.0,1,20540.0,1025215,3.0,208 -1256715,1630091894,8129204,2,57,-9.0,2,0.0,1,9000.0,1042852,5.0,215 -1256716,1630091895,8424150,2,55,-9.0,2,0.0,1,12770.0,1073094,7.0,215 -1256717,1630091896,8031356,2,55,-9.0,1,0.0,1,0.0,1025215,5.0,208 -1256718,1630091897,8129204,2,50,-9.0,2,0.0,1,5100.0,1042852,2.0,215 -1256719,1630091898,8129204,2,51,-9.0,1,0.0,1,19200.0,1001264,2.0,215 -1256720,1630091899,8128975,2,49,-9.0,2,0.0,1,22650.0,1009585,7.0,215 -1256721,1630091900,8128975,2,61,-9.0,2,0.0,1,10800.0,1025215,2.0,215 -1256722,1630091901,8128975,2,61,-9.0,2,0.0,1,10800.0,1025215,2.0,215 -1256723,1630091902,8424105,2,57,-9.0,2,0.0,1,9000.0,1042852,5.0,215 -1256724,1630091903,8128975,2,49,-9.0,2,0.0,1,22650.0,1009585,7.0,215 -1256725,1630091904,8031356,2,57,-9.0,2,0.0,1,9000.0,1042852,5.0,208 -1256726,1630091905,8424105,2,60,-9.0,1,0.0,1,13400.0,1042852,5.0,215 -1256727,1630091906,8129204,2,50,-9.0,1,0.0,1,5100.0,1042852,2.0,215 -1256728,1630091907,8031356,2,54,-9.0,2,0.0,1,13640.0,1001264,7.0,208 -1256729,1630091908,8031356,2,57,-9.0,2,0.0,1,20540.0,1025215,3.0,208 -1256730,1630091909,8129204,2,59,-9.0,2,0.0,1,18300.0,1001264,7.0,215 -1256731,1630091910,8031356,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,208 -1256732,1630091911,8129204,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,215 -1256733,1630091912,8129204,3,48,-9.0,2,0.0,1,8300.0,1073094,2.0,215 -1256734,1630091913,8128671,2,53,1.0,2,0.0,1,0.0,1042852,3.0,215 -1256735,1630091914,8128671,2,52,1.0,2,0.0,1,8500.0,1001264,2.0,215 -1256736,1630091915,8031356,2,51,1.0,2,0.0,1,8400.0,1042852,3.0,208 -1256737,1630091916,8031356,2,63,-9.0,2,1.0,1,780.0,1009585,3.0,208 -1256738,1630091917,8424105,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,215 -1256739,1630091918,8424105,1,57,-9.0,2,1.0,1,19600.0,1001264,2.0,215 -1256740,1630091919,8031356,2,55,-9.0,1,0.0,1,8000.0,1009585,4.0,208 -1256741,1630091920,8424105,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,215 -1256742,1630091921,8129204,2,51,-9.0,1,0.0,1,19000.0,1025215,4.0,215 -1256743,1630091922,8031356,2,59,-9.0,1,0.0,1,11300.0,1042852,6.0,208 -1256744,1630091923,8424150,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,215 -1256745,1630091924,8128975,2,58,-9.0,1,0.0,1,9680.0,1073094,4.0,215 -1256746,1630091925,8031356,2,46,-9.0,1,0.0,1,5000.0,1073094,4.0,208 -1256747,1630091926,8128671,2,48,-9.0,1,0.0,1,12000.0,1001264,4.0,215 -1256748,1630091927,8128975,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,215 -1256749,1630091928,8129204,2,59,-9.0,1,0.0,1,15000.0,1025215,6.0,215 -1256750,1630091929,8128975,2,56,-9.0,1,0.0,1,9600.0,1009585,4.0,215 -1256751,1630091930,8424105,2,45,-9.0,1,0.0,1,1700.0,1073094,4.0,215 -1256752,1630091931,8128975,2,58,-9.0,1,0.0,1,9680.0,1073094,4.0,215 -1256753,1630091932,8128975,2,58,-9.0,1,0.0,1,9680.0,1073094,4.0,215 -1256754,1630091933,8128671,2,48,-9.0,1,0.0,1,12000.0,1001264,4.0,215 -1256755,1630091934,8129204,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,215 -1256756,1630091935,8424105,2,51,-9.0,1,0.0,1,19000.0,1025215,4.0,215 -1256757,1630091936,8031356,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,208 -1256758,1630091937,8128975,2,60,-9.0,1,1.0,1,12000.0,1001264,4.0,215 -1256759,1630091938,8424105,2,45,-9.0,1,1.0,1,22000.0,1073094,4.0,215 -1256760,1630091939,8424150,2,46,-9.0,1,1.0,1,14000.0,1001264,6.0,215 -1256761,1630091940,8129204,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,215 -1256762,1630091941,8129204,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,215 -1256763,1630091942,8031356,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,208 -1256764,1630091943,8424105,2,52,-9.0,2,0.0,1,12160.0,1001264,7.0,215 -1256765,1630091944,8424150,2,52,-9.0,2,0.0,1,4100.0,1009585,3.0,215 -1256766,1630091945,8129204,1,62,-9.0,2,0.0,1,23900.0,1001264,5.0,215 -1256767,1630091946,8424105,1,62,-9.0,2,0.0,1,23900.0,1001264,5.0,215 -1256768,1630091947,8129204,2,50,-9.0,2,1.0,1,18000.0,1042852,3.0,215 -1256769,1630091948,8424105,2,55,-9.0,2,1.0,1,9800.0,1042852,3.0,215 -1256770,1630091949,8031356,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,208 -1256771,1630091950,8129204,2,69,-9.0,1,0.0,1,183100.0,1042852,1.0,215 -1256772,1630091951,8128671,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,215 -1256773,1630091952,8128671,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,215 -1256774,1630091953,8031356,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,208 -1256775,1630091954,8129204,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,215 -1256776,1630091955,8031356,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,208 -1256777,1630091956,8031356,2,66,-9.0,1,0.0,1,33400.0,1042852,4.0,208 -1256778,1630091957,8128975,2,66,-9.0,1,0.0,1,38000.0,1001264,6.0,215 -1256779,1630091958,8031356,2,87,-9.0,1,0.0,1,30000.0,1042852,6.0,208 -1256780,1630091959,8031356,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,208 -1256781,1630091960,8424105,2,69,-9.0,1,1.0,1,37000.0,1001264,4.0,215 -1256782,1630091961,8424105,2,90,-9.0,2,0.0,1,30900.0,1009585,7.0,215 -1256783,1630091962,8129204,2,90,-9.0,2,0.0,1,30900.0,1009585,7.0,215 -1256784,1630091963,8129204,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,215 -1256785,1630091964,8129204,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,215 -1256786,1630091965,8128671,2,74,-9.0,1,0.0,1,68400.0,1001264,4.0,215 -1256787,1630091966,8424105,2,70,-9.0,1,0.0,1,9200.0,1042852,6.0,215 -1256788,1630091967,8128975,2,72,-9.0,1,0.0,1,2100.0,1042852,6.0,215 -1256789,1630091968,8128671,2,66,-9.0,1,0.0,1,17700.0,1025215,6.0,215 -1256790,1630091969,8129204,2,65,-9.0,1,0.0,1,15600.0,1025215,6.0,215 -1256791,1630091970,8129204,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,215 -1256792,1630091971,8128671,2,81,-9.0,1,0.0,1,16600.0,1042852,6.0,215 -1256793,1630091972,8031356,2,66,-9.0,1,0.0,1,13500.0,1073094,4.0,208 -1256794,1630091973,8128671,2,70,-9.0,1,0.0,1,25004.0,1073094,4.0,215 -1256795,1630091974,8424105,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,215 -1256796,1630091975,8031356,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,208 -1256797,1630091976,8128671,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,215 -1256798,1630091977,8031356,2,73,-9.0,1,0.0,1,8400.0,1073094,6.0,208 -1256799,1630091978,8031356,2,69,-9.0,1,0.0,1,8400.0,1001264,6.0,208 -1256800,1630091979,8031356,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,208 -1256801,1630091980,8424105,2,70,-9.0,1,0.0,1,11400.0,1042852,6.0,215 -1256802,1630091981,8129204,2,85,-9.0,1,0.0,1,12100.0,1025215,6.0,215 -1256803,1630091982,8031356,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,208 -1256804,1630091983,8129204,2,82,-9.0,1,0.0,1,8300.0,1042852,6.0,215 -1256805,1630091984,8424150,2,78,-9.0,1,0.0,1,20600.0,1042852,4.0,215 -1256806,1630091985,8031356,2,94,-9.0,1,0.0,1,6800.0,1009585,6.0,208 -1256807,1630091986,8128671,2,73,-9.0,1,0.0,1,0.0,1025215,6.0,215 -1256808,1630091987,8424150,2,79,-9.0,1,0.0,1,9100.0,1073094,6.0,215 -1256809,1630091988,8031356,2,65,-9.0,1,0.0,1,12000.0,1025215,4.0,208 -1256810,1630091989,8031356,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,208 -1256811,1630091990,8424105,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,215 -1256812,1630091991,8424150,2,67,-9.0,1,0.0,1,9600.0,1001264,4.0,215 -1256813,1630091992,8424150,2,79,-9.0,1,0.0,1,18000.0,1025215,4.0,215 -1256814,1630091993,8031356,2,82,-9.0,1,0.0,1,12500.0,1073094,4.0,208 -1256815,1630091994,8128671,2,76,-9.0,1,0.0,1,4101.0,1001264,4.0,215 -1256816,1630091995,8129204,2,65,-9.0,1,0.0,1,5300.0,1042852,6.0,215 -1256817,1630091996,8129204,2,67,-9.0,1,0.0,1,9600.0,1042852,4.0,215 -1256818,1630091997,8031356,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,208 -1256819,1630091998,8031356,2,79,-9.0,1,0.0,1,13600.0,1001264,4.0,208 -1256820,1630091999,8031356,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,208 -1256821,1630092000,8129204,2,80,-9.0,1,0.0,1,12700.0,1073094,6.0,215 -1256822,1630092001,8129204,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,215 -1256823,1630092002,8129204,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,215 -1256824,1630092003,8031356,2,67,-9.0,1,0.0,1,9600.0,1001264,6.0,208 -1256825,1630092004,8128975,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,215 -1256826,1630092005,8031356,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,208 -1256827,1630092006,8129204,2,65,-9.0,1,0.0,1,15600.0,1025215,6.0,215 -1256828,1630092007,8128975,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,215 -1256829,1630092008,8129204,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,215 -1256830,1630092009,8031356,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,208 -1256831,1630092010,8424105,1,66,-9.0,1,0.0,1,5300.0,1009585,4.0,215 -1256832,1630092011,8424105,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,215 -1256833,1630092012,8130143,1,77,-9.0,1,0.0,1,21900.0,1009585,4.0,215 -1256834,1630092013,8424105,1,66,-9.0,1,0.0,1,5300.0,1009585,4.0,215 -1256835,1630092014,8031356,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,208 -1256836,1630092015,8424105,1,66,-9.0,1,0.0,1,5300.0,1009585,4.0,215 -1256837,1630092016,8424105,1,74,-9.0,1,0.0,1,9600.0,1042852,4.0,215 -1256838,1630092017,8031356,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,208 -1256839,1630092018,8031356,2,76,-9.0,1,1.0,1,23400.0,1025215,4.0,208 -1256840,1630092019,8129204,2,75,-9.0,1,1.0,1,13000.0,1009585,4.0,215 -1256841,1630092020,8128975,2,80,-9.0,1,1.0,1,8200.0,1009585,4.0,215 -1256842,1630092021,8031356,2,75,-9.0,1,1.0,1,13000.0,1009585,4.0,208 -1256843,1630092022,8031356,2,90,-9.0,1,0.0,1,21000.0,1073094,1.0,208 -1256844,1630092023,8128975,2,77,-9.0,2,0.0,1,8000.0,1042852,1.0,215 -1256845,1630092024,8424150,2,76,-9.0,2,0.0,1,21400.0,1025215,1.0,215 -1256846,1630092025,8129204,2,71,-9.0,2,0.0,1,13000.0,1042852,1.0,215 -1256847,1630092026,8424150,2,69,-9.0,2,0.0,1,26200.0,1001264,5.0,215 -1256848,1630092027,8031356,2,71,-9.0,2,0.0,1,13000.0,1042852,1.0,208 -1256849,1630092028,8129204,1,77,-9.0,2,0.0,1,16400.0,1025215,5.0,215 -1256850,1630092029,8424105,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,215 -1256851,1630092030,8129204,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,215 -1256852,1630092031,8129204,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,215 -1256853,1630092032,8424105,1,24,-9.0,1,0.0,1,43000.0,1042852,1.0,215 -1256854,1630092033,8031356,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,208 -1256855,1630092034,8031356,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,208 -1256856,1630092035,8129204,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,215 -1256857,1630092036,8031356,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,208 -1256858,1630092037,8424150,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,215 -1256859,1630092038,8424150,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,215 -1256860,1630092039,8128671,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,215 -1256861,1630092040,8128671,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,215 -1256862,1630092041,8128671,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,215 -1256863,1630092042,8128975,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,215 -1256864,1630092043,8424150,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,215 -1256865,1630092044,8128671,1,21,-9.0,1,0.0,1,3320.0,1001264,7.0,215 -1256866,1630092045,8128671,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,215 -1256867,1630092046,8129204,2,24,1.0,2,0.0,1,3000.0,1042852,3.0,215 -1256868,1630092047,8129204,2,20,1.0,2,0.0,1,0.0,1009585,3.0,215 -1256869,1630092048,8031356,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,208 -1256870,1630092049,8031356,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,208 -1256871,1630092050,8031356,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,208 -1256872,1630092051,8031356,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,208 -1256873,1630092052,8128671,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,215 -1256874,1630092053,8031356,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,208 -1256875,1630092054,8129204,1,24,-9.0,1,1.0,1,2500.0,1009585,4.0,215 -1256876,1630092055,8129204,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,215 -1256877,1630092056,8129204,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,215 -1256878,1630092057,8129204,1,24,-9.0,2,2.0,1,22500.0,1025215,5.0,215 -1256879,1630092058,8424150,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,215 -1256880,1630092059,8424105,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,215 -1256881,1630092060,8130143,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,215 -1256882,1630092061,8424105,2,69,-9.0,1,0.0,1,183100.0,1042852,1.0,215 -1256883,1630092062,8129204,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,215 -1256884,1630092063,8130143,1,29,-9.0,2,1.0,1,79500.0,1025215,5.0,215 -1256885,1630092064,8129204,1,59,-9.0,1,1.0,1,160000.0,1042852,4.0,215 -1256886,1630092065,8424105,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,215 -1256887,1630092066,8129204,1,62,-9.0,1,0.0,1,6850.0,1001264,6.0,215 -1256888,1630092067,8031356,1,60,-9.0,1,0.0,1,10840.0,1009585,4.0,208 -1256889,1630092068,8128671,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,215 -1256890,1630092069,8031356,1,60,-9.0,2,2.0,1,9600.0,1001264,1.0,208 -1256891,1630092070,8031356,2,31,1.0,2,1.0,1,30000.0,1001264,3.0,208 -1256892,1630092071,8129204,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,215 -1256893,1630092072,8128671,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,215 -1256894,1630092073,8424105,2,47,1.0,2,1.0,1,104500.0,1001264,3.0,215 -1256895,1630092074,8128671,2,62,-9.0,2,0.0,1,38100.0,1025215,1.0,215 -1256896,1630092075,8128975,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,215 -1256897,1630092076,8031356,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,208 -1256898,1630092077,8031356,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,208 -1256899,1630092078,8424150,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,215 -1256900,1630092079,8031356,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,208 -1256901,1630092080,8031356,1,52,1.0,2,3.0,1,30500.0,1025215,2.0,208 -1256902,1630092081,8424105,1,28,-9.0,2,2.0,1,65000.0,1001264,1.0,215 -1256903,1630092082,8129204,1,64,-9.0,2,2.0,1,118790.0,1025215,1.0,215 -1256904,1630092083,8128671,2,53,-9.0,2,5.0,1,29200.0,1042852,1.0,215 -1256905,1630092084,8031356,2,30,-9.0,1,0.0,1,14700.0,1009585,1.0,208 -1256906,1630092085,8129204,2,66,-9.0,1,0.0,1,15500.0,1009585,4.0,215 -1256907,1630092086,8031356,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,208 -1256908,1630092087,8031356,1,66,-9.0,1,1.0,1,49000.0,1025215,4.0,208 -1256909,1630092088,8031356,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,208 -1256910,1630092089,8424105,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,215 -1256911,1630092090,8424105,2,84,-9.0,2,1.0,1,21700.0,1025215,3.0,215 -1256912,1630092091,8424105,1,24,-9.0,2,2.0,1,22500.0,1025215,5.0,215 -1256913,1630092092,8031356,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,208 -1256914,1630092093,8128671,3,44,-9.0,1,0.0,1,1900.0,1001264,4.0,215 -1256915,1630092094,8031356,3,48,-9.0,2,0.0,1,8300.0,1073094,2.0,208 -1256916,1630092095,8128671,2,70,-9.0,2,3.0,1,100000.0,1042852,1.0,215 -1256917,1630092096,8128671,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,215 -1256918,1630092097,8031356,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,208 -1256919,1630092098,8129204,2,36,-9.0,2,2.0,1,56700.0,1025215,2.0,215 -1256920,1630092099,8424105,2,42,-9.0,2,2.0,1,8500.0,1009585,3.0,215 -1256921,1630092100,8128671,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,215 -1256922,1630092101,8031356,2,60,-9.0,2,2.0,1,40700.0,1001264,1.0,208 -1256923,1630092102,8129204,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,215 -1256924,1630092103,8128671,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,215 -1256925,1630092104,8031356,2,54,-9.0,2,0.0,1,19000.0,1001264,1.0,208 -1256926,1630092105,8129204,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,215 -1256927,1630092106,8031356,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,208 -1256928,1630092107,8031356,2,58,-9.0,1,0.0,1,94300.0,1025215,6.0,208 -1256929,1630092108,8031356,2,62,-9.0,2,2.0,1,105000.0,1042852,3.0,208 -1256930,1630092109,8130143,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,215 -1256931,1630092110,8129204,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,215 -1256932,1630092111,8424105,2,53,1.0,2,0.0,1,12000.0,1025215,2.0,215 -1256933,1630092112,8031356,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,208 -1256934,1630092113,8424150,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,215 -1256935,1630092114,8424105,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,215 -1256936,1630092115,8424105,2,46,-9.0,1,0.0,1,12000.0,1025215,4.0,215 -1256937,1630092116,8424105,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,215 -1256938,1630092117,8129204,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,215 -1256939,1630092118,8424150,2,30,-9.0,1,1.0,1,10400.0,1073094,4.0,215 -1256940,1630092119,8424105,2,68,-9.0,2,0.0,1,126000.0,1001264,5.0,215 -1256941,1630092120,8129204,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,215 -1256942,1630092121,8424105,2,59,-9.0,1,2.0,1,20000.0,1001264,4.0,215 -1256943,1630092122,8128671,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,215 -1256944,1630092123,8424150,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,215 -1256945,1630092124,8031356,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,208 -1256946,1630092125,8128671,2,59,1.0,2,1.0,1,14880.0,1042852,3.0,215 -1256947,1630092126,8129204,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,215 -1256948,1630092127,8031356,3,37,1.0,2,1.0,1,16000.0,1042852,3.0,208 -1256949,1630092128,8129204,4,29,-9.0,2,5.0,1,36800.0,1001264,1.0,215 -1256950,1630092129,8031356,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,208 -1256951,1630092130,8031356,2,45,-9.0,2,1.0,1,85000.0,1073094,2.0,208 -1256952,1630092131,8129204,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,215 -1256953,1630092132,8129204,2,85,-9.0,2,0.0,1,42220.0,1009585,3.0,215 -1256954,1630092133,8129204,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,215 -1256955,1630092134,8129204,2,62,-9.0,1,1.0,1,26000.0,1073094,6.0,215 -1256956,1630092135,8424150,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,215 -1256957,1630092136,8031356,1,69,-9.0,1,1.0,1,14600.0,1001264,6.0,208 -1256958,1630092137,8031356,2,30,-9.0,2,1.0,1,21500.0,1025215,3.0,208 -1256959,1630092138,8424150,2,45,-9.0,1,0.0,1,31300.0,1001264,4.0,215 -1256960,1630092139,8129204,2,63,1.0,2,2.0,1,37300.0,1009585,3.0,215 -1256961,1630092140,8129204,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,215 -1256962,1630092141,8031356,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,208 -1256963,1630092142,8031356,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,208 -1256964,1630092143,8424105,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,215 -1256965,1630092144,8129204,2,63,-9.0,1,1.0,1,12000.0,1001264,6.0,215 -1256966,1630092145,8031356,1,56,-9.0,2,2.0,1,67100.0,1009585,1.0,208 -1256967,1630092146,8129204,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,215 -1256968,1630092147,8129204,2,63,-9.0,2,0.0,1,26500.0,1001264,7.0,215 -1256969,1630092148,8129204,2,74,-9.0,2,1.0,1,42970.0,1042852,3.0,215 -1256970,1630092149,8031356,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,208 -1256971,1630092150,8129204,2,48,-9.0,2,3.0,1,163200.0,1042852,3.0,215 -1256972,1630092151,8031356,2,60,-9.0,2,2.0,1,257200.0,1042852,1.0,208 -1256973,1630092152,8128671,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,215 -1256974,1630092153,8129204,2,69,-9.0,2,1.0,1,137000.0,1009585,1.0,215 -1256975,1630092154,8129204,1,52,-9.0,2,2.0,1,503000.0,1025215,1.0,215 -1256976,1630092155,8031356,2,63,-9.0,2,2.0,1,70000.0,1009585,1.0,208 -1256977,1630092156,8031356,2,41,-9.0,1,1.0,1,35000.0,1073094,3.0,208 -1256978,1630092157,8128671,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,215 -1256979,1630092158,8031356,2,64,-9.0,1,1.0,1,30000.0,1042852,4.0,208 -1256980,1630092159,8128671,2,59,-9.0,1,1.0,1,32000.0,1042852,4.0,215 -1256981,1630092160,8128671,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,215 -1256982,1630092161,8129204,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,215 -1256983,1630092162,8031356,2,58,-9.0,2,0.0,1,16310.0,1009585,1.0,208 -1256984,1630092163,8424105,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,215 -1256985,1630092164,8031356,2,56,-9.0,2,2.0,1,37800.0,1025215,3.0,208 -1256986,1630092165,8424105,2,59,-9.0,2,2.0,1,54400.0,1042852,1.0,215 -1256987,1630092166,8031356,2,26,-9.0,2,0.0,1,12200.0,1001264,7.0,208 -1256988,1630092167,8031356,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,208 -1256989,1630092168,8031356,2,64,-9.0,2,2.0,1,44200.0,1025215,3.0,208 -1256990,1630092169,8424150,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,215 -1256991,1630092170,8128671,3,27,-9.0,1,0.0,1,8000.0,1025215,6.0,215 -1256992,1630092171,8129204,1,77,-9.0,2,0.0,1,16400.0,1025215,5.0,215 -1256993,1630092172,8129204,2,65,-9.0,2,1.0,1,31700.0,1001264,1.0,215 -1256994,1630092173,8129204,2,61,-9.0,2,2.0,1,51200.0,1001264,1.0,215 -1256995,1630092174,8128671,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,215 -1256996,1630092175,8129204,2,47,-9.0,1,0.0,1,6900.0,1025215,6.0,215 -1256997,1630092176,8031356,1,57,-9.0,1,1.0,1,80000.0,1025215,6.0,208 -1256998,1630092177,8128671,2,35,-9.0,1,1.0,1,5600.0,1073094,4.0,215 -1256999,1630092178,8031356,2,44,1.0,2,1.0,1,14500.0,1042852,3.0,208 -1257000,1630092179,8130143,2,65,-9.0,1,1.0,1,31900.0,1025215,6.0,215 -1257001,1630092180,8129204,2,49,-9.0,2,2.0,1,69000.0,1042852,1.0,215 -1257002,1630092181,8031356,3,54,-9.0,1,1.0,1,52000.0,1009585,4.0,208 -1257003,1630092182,8129204,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,215 -1257004,1630092183,8129204,4,70,-9.0,1,0.0,1,19900.0,1042852,6.0,215 -1257005,1630092184,8424105,1,62,-9.0,2,1.0,1,125200.0,1042852,5.0,215 -1257006,1630092185,8031356,4,62,-9.0,1,0.0,1,18000.0,1042852,4.0,208 -1257007,1630092186,8031356,2,35,1.0,2,0.0,1,3210.0,1009585,3.0,208 -1257008,1630092187,8424150,4,61,-9.0,2,0.0,1,6200.0,1009585,3.0,215 -1257009,1630092188,8030638,2,63,-9.0,1,1.0,1,60000.0,1073094,6.0,213 -1257010,1630092189,8030638,1,45,-9.0,1,2.0,1,76500.0,1009585,6.0,213 -1257011,1630092190,8127462,2,51,-9.0,1,0.0,1,900.0,1042852,4.0,214 -1257012,1630092191,8423504,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,213 -1257013,1630092192,8900345,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,213 -1257014,1630092193,8030638,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,213 -1257015,1630092194,8424106,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,214 -1257016,1630092195,8030638,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,213 -1257017,1630092196,8030638,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,213 -1257018,1630092197,8030638,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,213 -1257019,1630092198,8030638,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,213 -1257020,1630092199,8126287,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,214 -1257021,1630092200,8424161,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,213 -1257022,1630092201,8424106,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,214 -1257023,1630092202,8424106,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,214 -1257024,1630092203,8424106,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,214 -1257025,1630092204,8906619,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,214 -1257026,1630092205,8423504,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,213 -1257027,1630092206,8423504,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,213 -1257028,1630092207,8906621,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,213 -1257029,1630092208,8424106,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,214 -1257030,1630092209,8900345,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,213 -1257031,1630092210,8423504,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,213 -1257032,1630092211,8906621,1,31,-9.0,2,2.0,1,404000.0,1025215,7.0,213 -1257033,1630092212,8424106,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,214 -1257034,1630092213,8424106,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,214 -1257035,1630092214,8900345,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,213 -1257036,1630092215,8424106,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,214 -1257037,1630092216,8424106,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,214 -1257038,1630092217,8906622,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,213 -1257039,1630092218,8900345,2,29,-9.0,1,0.0,1,37000.0,1042852,4.0,213 -1257040,1630092219,8900345,2,29,-9.0,1,0.0,1,37000.0,1042852,4.0,213 -1257041,1630092220,8423504,2,29,-9.0,1,0.0,1,37000.0,1042852,4.0,213 -1257042,1630092221,8126037,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,212 -1257043,1630092222,8906620,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,213 -1257044,1630092223,8416280,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,213 -1257045,1630092224,8126287,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,214 -1257046,1630092225,8424106,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,214 -1257047,1630092226,8424106,2,29,-9.0,1,0.0,1,37000.0,1042852,4.0,214 -1257048,1630092227,8424106,2,29,-9.0,1,0.0,1,37000.0,1042852,4.0,214 -1257049,1630092228,8424167,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,214 -1257050,1630092229,8424106,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,214 -1257051,1630092230,8424106,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,214 -1257052,1630092231,8906622,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,213 -1257053,1630092232,8424106,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,214 -1257054,1630092233,8900345,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,213 -1257055,1630092234,8423504,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,213 -1257056,1630092235,8906622,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,213 -1257057,1630092236,8423504,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,213 -1257058,1630092237,8423504,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,213 -1257059,1630092238,8423504,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,213 -1257060,1630092239,8906622,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,213 -1257061,1630092240,8906622,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,213 -1257062,1630092241,8424106,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,214 -1257063,1630092242,8906622,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,213 -1257064,1630092243,8906622,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,213 -1257065,1630092244,8416280,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,213 -1257066,1630092245,8906619,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,214 -1257067,1630092246,8906621,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,213 -1257068,1630092247,8423504,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,213 -1257069,1630092248,8900345,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,213 -1257070,1630092249,8423504,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,213 -1257071,1630092250,8424106,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,214 -1257072,1630092251,8127504,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,214 -1257073,1630092252,8424106,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,214 -1257074,1630092253,8900345,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,213 -1257075,1630092254,8424163,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,213 -1257076,1630092255,8126037,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,212 -1257077,1630092256,8900345,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,213 -1257078,1630092257,8423504,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,213 -1257079,1630092258,8424106,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,214 -1257080,1630092259,8126037,2,27,-9.0,1,1.0,1,30000.0,1009585,6.0,212 -1257081,1630092260,8424161,2,34,-9.0,1,1.0,1,30000.0,1073094,6.0,213 -1257082,1630092261,8424167,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,214 -1257083,1630092262,8906621,2,44,-9.0,1,1.0,1,54000.0,1025215,4.0,213 -1257084,1630092263,8424106,2,26,-9.0,1,1.0,1,41660.0,1042852,6.0,214 -1257085,1630092264,8900345,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,213 -1257086,1630092265,8900345,2,25,-9.0,1,1.0,1,34000.0,1025215,6.0,213 -1257087,1630092266,8423504,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,213 -1257088,1630092267,8906621,2,44,-9.0,1,1.0,1,54000.0,1025215,4.0,213 -1257089,1630092268,8030638,2,42,-9.0,1,1.0,1,40000.0,1042852,4.0,213 -1257090,1630092269,8424106,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,214 -1257091,1630092270,8126037,2,27,-9.0,1,1.0,1,30000.0,1009585,6.0,212 -1257092,1630092271,8424167,2,26,-9.0,1,1.0,1,40000.0,1042852,6.0,214 -1257093,1630092272,8906619,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,214 -1257094,1630092273,8900308,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,213 -1257095,1630092274,8423504,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,213 -1257096,1630092275,8900345,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,213 -1257097,1630092276,8030653,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,213 -1257098,1630092277,8416280,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,213 -1257099,1630092278,8125920,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,214 -1257100,1630092279,8900308,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,213 -1257101,1630092280,8030638,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,213 -1257102,1630092281,8906621,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,213 -1257103,1630092282,8900308,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,213 -1257104,1630092283,8906621,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,213 -1257105,1630092284,8031846,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,213 -1257106,1630092285,8030638,1,42,-9.0,1,1.0,1,35700.0,1042852,4.0,213 -1257107,1630092286,8424167,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,214 -1257108,1630092287,8423504,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,213 -1257109,1630092288,8906619,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,214 -1257110,1630092289,8031846,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,213 -1257111,1630092290,8900311,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,213 -1257112,1630092291,8900311,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,213 -1257113,1630092292,8900311,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,213 -1257114,1630092293,8125920,2,36,-9.0,1,2.0,1,33000.0,1001264,4.0,214 -1257115,1630092294,8424167,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,214 -1257116,1630092295,8416280,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,213 -1257117,1630092296,8424167,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,214 -1257118,1630092297,8906621,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,213 -1257119,1630092298,8900308,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,213 -1257120,1630092299,8423504,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,213 -1257121,1630092300,8906621,1,25,-9.0,2,2.0,1,48000.0,1042852,7.0,213 -1257122,1630092301,8424106,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,214 -1257123,1630092302,8424167,1,25,-9.0,2,2.0,1,48000.0,1042852,7.0,214 -1257124,1630092303,8900311,1,28,-9.0,2,1.0,1,58000.0,1009585,3.0,213 -1257125,1630092304,8424161,2,42,-9.0,2,2.0,1,51000.0,1025215,7.0,213 -1257126,1630092305,8424167,1,26,-9.0,2,2.0,1,41000.0,1001264,5.0,214 -1257127,1630092306,8900311,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,213 -1257128,1630092307,8906621,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,213 -1257129,1630092308,8906619,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,214 -1257130,1630092309,8424106,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,214 -1257131,1630092310,8424106,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,214 -1257132,1630092311,8423504,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,213 -1257133,1630092312,8424106,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,214 -1257134,1630092313,8423504,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,213 -1257135,1630092314,8424106,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,214 -1257136,1630092315,8423504,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,213 -1257137,1630092316,8906621,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,213 -1257138,1630092317,8126287,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,214 -1257139,1630092318,8416280,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,213 -1257140,1630092319,8126287,2,31,-9.0,1,1.0,1,60000.0,1042852,4.0,214 -1257141,1630092320,8424161,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,213 -1257142,1630092321,8424106,2,41,-9.0,1,1.0,1,80000.0,1073094,6.0,214 -1257143,1630092322,8424167,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,214 -1257144,1630092323,8424167,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,214 -1257145,1630092324,8423504,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,213 -1257146,1630092325,8416280,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,213 -1257147,1630092326,8424106,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,214 -1257148,1630092327,8900345,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,213 -1257149,1630092328,8424167,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,214 -1257150,1630092329,8416280,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,213 -1257151,1630092330,8424106,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,214 -1257152,1630092331,8416280,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,213 -1257153,1630092332,8900345,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,213 -1257154,1630092333,8423504,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,213 -1257155,1630092334,8424167,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,214 -1257156,1630092335,8906621,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,213 -1257157,1630092336,8416280,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,213 -1257158,1630092337,8900345,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,213 -1257159,1630092338,8906621,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,213 -1257160,1630092339,8423504,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,213 -1257161,1630092340,8906621,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,213 -1257162,1630092341,8424167,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,214 -1257163,1630092342,8906619,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,214 -1257164,1630092343,8424167,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,214 -1257165,1630092344,8424106,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,214 -1257166,1630092345,8424106,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,214 -1257167,1630092346,8424106,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,214 -1257168,1630092347,8900345,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,213 -1257169,1630092348,8900345,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,213 -1257170,1630092349,8424106,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,214 -1257171,1630092350,8424106,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,214 -1257172,1630092351,8900345,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,213 -1257173,1630092352,8423504,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,213 -1257174,1630092353,8424106,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,214 -1257175,1630092354,8423504,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,213 -1257176,1630092355,8900345,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,213 -1257177,1630092356,8906621,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,213 -1257178,1630092357,8126287,1,29,-9.0,1,2.0,1,60000.0,1009585,1.0,214 -1257179,1630092358,8031846,4,27,-9.0,2,1.0,1,76700.0,1073094,1.0,213 -1257180,1630092359,8424106,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,214 -1257181,1630092360,8906621,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,213 -1257182,1630092361,8424167,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,214 -1257183,1630092362,8906619,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,214 -1257184,1630092363,8424167,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,214 -1257185,1630092364,8906620,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,213 -1257186,1630092365,8424106,1,28,-9.0,2,2.0,1,76000.0,1009585,5.0,214 -1257187,1630092366,8900311,1,26,-9.0,2,2.0,1,80000.0,1001264,5.0,213 -1257188,1630092367,8424106,1,34,-9.0,2,2.0,1,70000.0,1042852,7.0,214 -1257189,1630092368,8900345,1,31,-9.0,2,2.0,1,84000.0,1073094,1.0,213 -1257190,1630092369,8900345,1,34,-9.0,2,2.0,1,70000.0,1042852,7.0,213 -1257191,1630092370,8423504,1,31,-9.0,2,2.0,1,84000.0,1073094,1.0,213 -1257192,1630092371,8423504,1,31,-9.0,2,2.0,1,84000.0,1073094,1.0,213 -1257193,1630092372,8900345,1,28,-9.0,2,2.0,1,94000.0,1001264,7.0,213 -1257194,1630092373,8906619,1,28,-9.0,2,2.0,1,65000.0,1001264,1.0,214 -1257195,1630092374,8900311,1,26,-9.0,2,2.0,1,80000.0,1001264,5.0,213 -1257196,1630092375,8424106,1,31,-9.0,2,2.0,1,84000.0,1073094,1.0,214 -1257197,1630092376,8424106,1,28,-9.0,2,2.0,1,94000.0,1001264,7.0,214 -1257198,1630092377,8424163,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,213 -1257199,1630092378,8906621,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,213 -1257200,1630092379,8030653,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,213 -1257201,1630092380,8900311,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,213 -1257202,1630092381,8424163,2,43,-9.0,1,0.0,1,8700.0,1009585,6.0,213 -1257203,1630092382,8424163,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,213 -1257204,1630092383,8125920,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,214 -1257205,1630092384,8126037,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,212 -1257206,1630092385,8126287,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,214 -1257207,1630092386,8127504,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,214 -1257208,1630092387,8906620,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,213 -1257209,1630092388,8125920,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,214 -1257210,1630092389,8127504,2,44,-9.0,1,0.0,1,9350.0,1025215,6.0,214 -1257211,1630092390,8127504,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,214 -1257212,1630092391,8030653,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,213 -1257213,1630092392,8125920,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,214 -1257214,1630092393,8030653,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,213 -1257215,1630092394,8424163,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,213 -1257216,1630092395,8424161,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,213 -1257217,1630092396,8031846,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,213 -1257218,1630092397,8424163,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,213 -1257219,1630092398,8906619,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,214 -1257220,1630092399,8127462,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,214 -1257221,1630092400,8031846,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,213 -1257222,1630092401,8424163,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,213 -1257223,1630092402,8125920,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,214 -1257224,1630092403,8424163,2,41,-9.0,1,0.0,1,7350.0,1001264,4.0,213 -1257225,1630092404,8125920,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,214 -1257226,1630092405,8126037,2,44,-9.0,1,0.0,1,9350.0,1025215,6.0,212 -1257227,1630092406,8125920,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,214 -1257228,1630092407,8424163,3,44,-9.0,1,0.0,1,1900.0,1001264,4.0,213 -1257229,1630092408,8127462,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,214 -1257230,1630092409,8423504,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,213 -1257231,1630092410,8127462,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,214 -1257232,1630092411,8031846,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,213 -1257233,1630092412,8424163,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,213 -1257234,1630092413,8424106,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,214 -1257235,1630092414,8424163,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,213 -1257236,1630092415,8423504,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,213 -1257237,1630092416,8030638,2,42,-9.0,1,1.0,1,0.0,1025215,6.0,213 -1257238,1630092417,8424166,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,214 -1257239,1630092418,8423504,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,213 -1257240,1630092419,8127462,2,44,-9.0,1,1.0,1,15300.0,1009585,6.0,214 -1257241,1630092420,8424163,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,213 -1257242,1630092421,8900311,2,29,-9.0,1,1.0,1,10400.0,1001264,6.0,213 -1257243,1630092422,8126287,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,214 -1257244,1630092423,8127504,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,214 -1257245,1630092424,8900345,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,213 -1257246,1630092425,8424163,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,213 -1257247,1630092426,8030638,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,213 -1257248,1630092427,8030638,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,213 -1257249,1630092428,8030638,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,213 -1257250,1630092429,8423504,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,213 -1257251,1630092430,8424166,2,36,-9.0,1,0.0,1,8100.0,1073094,7.0,214 -1257252,1630092431,8424166,2,36,-9.0,1,0.0,1,8100.0,1073094,7.0,214 -1257253,1630092432,8125920,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,214 -1257254,1630092433,8030653,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,213 -1257255,1630092434,8127504,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,214 -1257256,1630092435,8424106,2,42,-9.0,1,0.0,1,27000.0,1025215,6.0,214 -1257257,1630092436,8030653,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,213 -1257258,1630092437,8127462,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,214 -1257259,1630092438,8030653,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,213 -1257260,1630092439,8127462,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,214 -1257261,1630092440,8125920,2,37,-9.0,1,0.0,1,15000.0,1073094,6.0,214 -1257262,1630092441,8125920,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,214 -1257263,1630092442,8416280,2,37,-9.0,1,0.0,1,15000.0,1073094,6.0,213 -1257264,1630092443,8030653,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,213 -1257265,1630092444,8424106,2,42,-9.0,1,0.0,1,27000.0,1025215,6.0,214 -1257266,1630092445,8127462,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,214 -1257267,1630092446,8127462,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,214 -1257268,1630092447,8031846,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,213 -1257269,1630092448,8127504,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,214 -1257270,1630092449,8030653,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,213 -1257271,1630092450,8126037,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,212 -1257272,1630092451,8424163,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,213 -1257273,1630092452,8030653,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,213 -1257274,1630092453,8030653,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,213 -1257275,1630092454,8424163,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,213 -1257276,1630092455,8127504,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,214 -1257277,1630092456,8127504,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,214 -1257278,1630092457,8126037,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,212 -1257279,1630092458,8126037,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,212 -1257280,1630092459,8127504,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,214 -1257281,1630092460,8126037,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,212 -1257282,1630092461,8030653,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,213 -1257283,1630092462,8030653,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,213 -1257284,1630092463,8030653,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,213 -1257285,1630092464,8126287,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,214 -1257286,1630092465,8906621,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,213 -1257287,1630092466,8906621,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,213 -1257288,1630092467,8424167,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,214 -1257289,1630092468,8424167,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,214 -1257290,1630092469,8424167,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,214 -1257291,1630092470,8416280,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,213 -1257292,1630092471,8424167,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,214 -1257293,1630092472,8416280,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,213 -1257294,1630092473,8031846,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,213 -1257295,1630092474,8424106,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,214 -1257296,1630092475,8424106,2,25,-9.0,1,1.0,1,29600.0,1073094,6.0,214 -1257297,1630092476,8424106,2,42,-9.0,1,1.0,1,24000.0,1001264,6.0,214 -1257298,1630092477,8424161,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,213 -1257299,1630092478,8424106,2,42,-9.0,1,1.0,1,24000.0,1001264,6.0,214 -1257300,1630092479,8126037,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,212 -1257301,1630092480,8126037,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,212 -1257302,1630092481,8126037,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,212 -1257303,1630092482,8030638,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,213 -1257304,1630092483,8031846,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,213 -1257305,1630092484,8906619,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,214 -1257306,1630092485,8900345,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,213 -1257307,1630092486,8031846,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,213 -1257308,1630092487,8423504,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,213 -1257309,1630092488,8126287,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,214 -1257310,1630092489,8126037,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,212 -1257311,1630092490,8127504,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,214 -1257312,1630092491,8900345,1,31,-9.0,1,1.0,1,18000.0,1001264,6.0,213 -1257313,1630092492,8424106,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,214 -1257314,1630092493,8900345,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,213 -1257315,1630092494,8900345,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,213 -1257316,1630092495,8423504,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,213 -1257317,1630092496,8126037,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,212 -1257318,1630092497,8906619,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,214 -1257319,1630092498,8906620,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,213 -1257320,1630092499,8906620,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,213 -1257321,1630092500,8126037,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,212 -1257322,1630092501,8030638,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,213 -1257323,1630092502,8126037,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,212 -1257324,1630092503,8126037,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,212 -1257325,1630092504,8126037,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,212 -1257326,1630092505,8424167,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,214 -1257327,1630092506,8030638,2,58,-9.0,1,1.0,1,109000.0,1073094,6.0,213 -1257328,1630092507,8423504,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,213 -1257329,1630092508,8127504,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,214 -1257330,1630092509,8423504,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,213 -1257331,1630092510,8126037,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,212 -1257332,1630092511,8424106,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,214 -1257333,1630092512,8423504,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,213 -1257334,1630092513,8424106,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,214 -1257335,1630092514,8423504,2,49,-9.0,2,2.0,1,152000.0,1042852,1.0,213 -1257336,1630092515,8424106,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,214 -1257337,1630092516,8424106,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,214 -1257338,1630092517,8127462,2,63,-9.0,1,0.0,1,37000.0,1073094,4.0,214 -1257339,1630092518,8424167,2,57,-9.0,1,0.0,1,38400.0,1073094,4.0,214 -1257340,1630092519,8030638,2,64,-9.0,1,1.0,1,32490.0,1042852,6.0,213 -1257341,1630092520,8030653,1,59,-9.0,1,1.0,1,30700.0,1025215,6.0,213 -1257342,1630092521,8424106,2,55,-9.0,1,0.0,1,50000.0,1025215,6.0,214 -1257343,1630092522,8424167,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,214 -1257344,1630092523,8126287,2,56,-9.0,1,0.0,1,42000.0,1042852,6.0,214 -1257345,1630092524,8126037,2,45,-9.0,1,0.0,1,31300.0,1001264,4.0,212 -1257346,1630092525,8126037,2,45,-9.0,1,0.0,1,31300.0,1001264,4.0,212 -1257347,1630092526,8126037,2,45,-9.0,1,0.0,1,31300.0,1001264,4.0,212 -1257348,1630092527,8906620,2,61,-9.0,1,0.0,1,49000.0,1073094,6.0,213 -1257349,1630092528,8900308,2,59,-9.0,1,0.0,1,31000.0,1042852,6.0,213 -1257350,1630092529,8126037,2,45,-9.0,1,0.0,1,31300.0,1001264,4.0,212 -1257351,1630092530,8906620,2,61,-9.0,1,0.0,1,49000.0,1073094,6.0,213 -1257352,1630092531,8424163,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,213 -1257353,1630092532,8424163,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,213 -1257354,1630092533,8423504,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,213 -1257355,1630092534,8424106,2,61,-9.0,1,1.0,1,40000.0,1025215,6.0,214 -1257356,1630092535,8031846,2,58,-9.0,1,1.0,1,40370.0,1073094,4.0,213 -1257357,1630092536,8127462,2,64,-9.0,1,1.0,1,32000.0,1042852,6.0,214 -1257358,1630092537,8423504,2,45,-9.0,1,1.0,1,36000.0,1009585,4.0,213 -1257359,1630092538,8424161,2,61,-9.0,1,1.0,1,40000.0,1025215,6.0,213 -1257360,1630092539,8424167,2,47,-9.0,1,1.0,1,50000.0,1025215,6.0,214 -1257361,1630092540,8030653,2,53,-9.0,1,1.0,1,42000.0,1042852,4.0,213 -1257362,1630092541,8423504,2,54,-9.0,1,1.0,1,38000.0,1073094,6.0,213 -1257363,1630092542,8900345,2,54,-9.0,1,1.0,1,34600.0,1042852,4.0,213 -1257364,1630092543,8126037,2,59,-9.0,1,1.0,1,32000.0,1042852,4.0,212 -1257365,1630092544,8424106,2,55,-9.0,1,1.0,1,49900.0,1042852,6.0,214 -1257366,1630092545,8424161,1,63,-9.0,1,1.0,1,50020.0,1001264,4.0,213 -1257367,1630092546,8900308,1,63,-9.0,1,1.0,1,36000.0,1025215,6.0,213 -1257368,1630092547,8416276,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,213 -1257369,1630092548,8906621,1,63,-9.0,1,1.0,1,50020.0,1001264,4.0,213 -1257370,1630092549,8424106,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,214 -1257371,1630092550,8900345,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,213 -1257372,1630092551,8030638,2,56,-9.0,1,2.0,1,45000.0,1001264,4.0,213 -1257373,1630092552,8030653,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,213 -1257374,1630092553,8030653,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,213 -1257375,1630092554,8900345,2,60,-9.0,2,2.0,1,40700.0,1001264,1.0,213 -1257376,1630092555,8030638,2,47,-9.0,2,2.0,1,51600.0,1042852,1.0,213 -1257377,1630092556,8900311,2,57,-9.0,1,2.0,1,67700.0,1025215,4.0,213 -1257378,1630092557,8126287,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,214 -1257379,1630092558,8906621,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,213 -1257380,1630092559,8906621,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,213 -1257381,1630092560,8424167,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,214 -1257382,1630092561,8126287,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,214 -1257383,1630092562,8906621,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,213 -1257384,1630092563,8424167,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,214 -1257385,1630092564,8424163,2,58,-9.0,1,0.0,1,94300.0,1025215,6.0,213 -1257386,1630092565,8906621,2,56,-9.0,1,1.0,1,64900.0,1009585,6.0,213 -1257387,1630092566,8126287,2,56,-9.0,1,1.0,1,64900.0,1009585,6.0,214 -1257388,1630092567,8030653,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,213 -1257389,1630092568,8424106,1,55,-9.0,1,1.0,1,92000.0,1009585,6.0,214 -1257390,1630092569,8423504,1,57,-9.0,1,1.0,1,72000.0,1042852,6.0,213 -1257391,1630092570,8424106,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,214 -1257392,1630092571,8900345,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,213 -1257393,1630092572,8900308,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,213 -1257394,1630092573,8900308,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,213 -1257395,1630092574,8900308,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,213 -1257396,1630092575,8030638,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,213 -1257397,1630092576,8900311,2,57,-9.0,2,2.0,1,75000.0,1001264,2.0,213 -1257398,1630092577,8126037,2,58,-9.0,1,0.0,1,8400.0,1042852,4.0,212 -1257399,1630092578,8424163,2,62,-9.0,1,0.0,1,12300.0,1001264,6.0,213 -1257400,1630092579,8127462,2,56,-9.0,1,0.0,1,2440.0,1001264,6.0,214 -1257401,1630092580,8031846,2,58,-9.0,1,0.0,1,8400.0,1042852,4.0,213 -1257402,1630092581,8126037,2,55,-9.0,1,0.0,1,8500.0,1025215,6.0,212 -1257403,1630092582,8423504,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,213 -1257404,1630092583,8424163,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,213 -1257405,1630092584,8127504,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,214 -1257406,1630092585,8125920,2,63,-9.0,1,0.0,1,3300.0,1025215,4.0,214 -1257407,1630092586,8906620,2,58,-9.0,1,0.0,1,8700.0,1009585,4.0,213 -1257408,1630092587,8031846,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,213 -1257409,1630092588,8424166,2,53,-9.0,1,0.0,1,8400.0,1042852,6.0,214 -1257410,1630092589,8127462,2,61,-9.0,1,0.0,1,18000.0,1042852,6.0,214 -1257411,1630092590,8906621,2,55,-9.0,1,0.0,1,8500.0,1009585,6.0,213 -1257412,1630092591,8126037,2,52,-9.0,1,0.0,1,0.0,1042852,6.0,212 -1257413,1630092592,8030653,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,213 -1257414,1630092593,8424161,2,62,-9.0,1,0.0,1,21000.0,1001264,6.0,213 -1257415,1630092594,8424106,2,64,-9.0,1,0.0,1,27900.0,1042852,6.0,214 -1257416,1630092595,8030653,2,48,-9.0,1,0.0,1,12200.0,1009585,6.0,213 -1257417,1630092596,8416276,2,57,-9.0,1,0.0,1,5200.0,1073094,4.0,213 -1257418,1630092597,8424163,2,62,-9.0,1,0.0,1,8100.0,1073094,6.0,213 -1257419,1630092598,8127462,2,63,-9.0,1,0.0,1,8500.0,1025215,6.0,214 -1257420,1630092599,8126037,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,212 -1257421,1630092600,8424167,2,55,-9.0,1,0.0,1,8500.0,1009585,6.0,214 -1257422,1630092601,8900311,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,213 -1257423,1630092602,8126037,2,55,-9.0,1,0.0,1,8500.0,1025215,6.0,212 -1257424,1630092603,8424163,2,50,-9.0,1,0.0,1,8600.0,1042852,6.0,213 -1257425,1630092604,8126287,2,55,-9.0,1,0.0,1,8500.0,1009585,6.0,214 -1257426,1630092605,8906621,2,60,-9.0,1,0.0,1,13300.0,1001264,6.0,213 -1257427,1630092606,8127462,2,45,-9.0,1,0.0,1,0.0,1009585,6.0,214 -1257428,1630092607,8126037,2,62,-9.0,1,0.0,1,8100.0,1073094,6.0,212 -1257429,1630092608,8424106,2,52,-9.0,1,0.0,1,6000.0,1073094,6.0,214 -1257430,1630092609,8416276,2,62,-9.0,1,0.0,1,8100.0,1001264,6.0,213 -1257431,1630092610,8126037,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,212 -1257432,1630092611,8126037,2,57,-9.0,1,0.0,1,11000.0,1009585,4.0,212 -1257433,1630092612,8126037,2,51,-9.0,1,0.0,1,8400.0,1042852,6.0,212 -1257434,1630092613,8126037,2,60,-9.0,1,0.0,1,2000.0,1042852,6.0,212 -1257435,1630092614,8126037,2,59,-9.0,1,0.0,1,7600.0,1001264,6.0,212 -1257436,1630092615,8126037,2,64,-9.0,1,0.0,1,12600.0,1001264,4.0,212 -1257437,1630092616,8424166,2,63,-9.0,1,0.0,1,8500.0,1009585,4.0,214 -1257438,1630092617,8030653,2,52,-9.0,1,0.0,1,8800.0,1001264,6.0,213 -1257439,1630092618,8125920,2,54,-9.0,1,0.0,1,8400.0,1042852,4.0,214 -1257440,1630092619,8126037,2,55,-9.0,1,0.0,1,8500.0,1025215,6.0,212 -1257441,1630092620,8126037,2,59,-9.0,1,0.0,1,7600.0,1001264,6.0,212 -1257442,1630092621,8900308,2,61,-9.0,1,0.0,1,1600.0,1009585,4.0,213 -1257443,1630092622,8423504,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,213 -1257444,1630092623,8031846,2,53,-9.0,1,0.0,1,0.0,1042852,4.0,213 -1257445,1630092624,8031846,2,53,-9.0,1,0.0,1,8300.0,1042852,4.0,213 -1257446,1630092625,8127462,2,58,-9.0,1,0.0,1,8500.0,1025215,4.0,214 -1257447,1630092626,8906621,2,60,-9.0,1,0.0,1,13300.0,1001264,6.0,213 -1257448,1630092627,8900311,2,47,-9.0,1,0.0,1,6900.0,1025215,6.0,213 -1257449,1630092628,8127504,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,214 -1257450,1630092629,8126037,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,212 -1257451,1630092630,8424163,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,213 -1257452,1630092631,8127462,2,63,-9.0,1,0.0,1,8500.0,1025215,6.0,214 -1257453,1630092632,8127462,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,214 -1257454,1630092633,8126037,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,212 -1257455,1630092634,8125920,2,50,-9.0,1,0.0,1,10900.0,1073094,4.0,214 -1257456,1630092635,8030653,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,213 -1257457,1630092636,8126037,2,63,-9.0,1,0.0,1,0.0,1025215,6.0,212 -1257458,1630092637,8127504,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,214 -1257459,1630092638,8127462,2,58,-9.0,1,0.0,1,11000.0,1025215,6.0,214 -1257460,1630092639,8126037,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,212 -1257461,1630092640,8127504,2,64,-9.0,1,0.0,1,24700.0,1001264,4.0,214 -1257462,1630092641,8030653,2,51,-9.0,1,0.0,1,10600.0,1025215,6.0,213 -1257463,1630092642,8126037,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,212 -1257464,1630092643,8424161,2,54,-9.0,1,0.0,1,4600.0,1025215,6.0,213 -1257465,1630092644,8127462,2,58,-9.0,1,0.0,1,8700.0,1009585,6.0,214 -1257466,1630092645,8127462,2,50,-9.0,1,0.0,1,8900.0,1009585,6.0,214 -1257467,1630092646,8125920,2,54,-9.0,1,0.0,1,8400.0,1042852,4.0,214 -1257468,1630092647,8127462,2,63,-9.0,1,0.0,1,8500.0,1025215,6.0,214 -1257469,1630092648,8424106,2,50,-9.0,1,0.0,1,0.0,1073094,6.0,214 -1257470,1630092649,8127462,2,61,-9.0,1,0.0,1,18000.0,1042852,6.0,214 -1257471,1630092650,8127504,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,214 -1257472,1630092651,8126037,2,63,-9.0,1,0.0,1,0.0,1025215,6.0,212 -1257473,1630092652,8127504,2,62,-9.0,1,0.0,1,8100.0,1073094,6.0,214 -1257474,1630092653,8424163,2,62,-9.0,1,0.0,1,9600.0,1001264,6.0,213 -1257475,1630092654,8126037,2,63,-9.0,1,0.0,1,0.0,1025215,6.0,212 -1257476,1630092655,8127462,2,58,-9.0,1,0.0,1,8500.0,1025215,4.0,214 -1257477,1630092656,8126037,2,62,-9.0,1,0.0,1,16200.0,1009585,4.0,212 -1257478,1630092657,8126037,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,212 -1257479,1630092658,8126037,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,212 -1257480,1630092659,8127504,2,61,-9.0,1,0.0,1,11000.0,1042852,4.0,214 -1257481,1630092660,8127504,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,214 -1257482,1630092661,8030653,2,63,-9.0,1,0.0,1,4200.0,1073094,6.0,213 -1257483,1630092662,8125920,2,50,-9.0,1,0.0,1,10900.0,1073094,4.0,214 -1257484,1630092663,8127462,2,50,-9.0,1,0.0,1,8900.0,1009585,6.0,214 -1257485,1630092664,8424161,2,53,-9.0,1,0.0,1,8400.0,1042852,6.0,213 -1257486,1630092665,8900311,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,213 -1257487,1630092666,8127462,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,214 -1257488,1630092667,8416276,2,46,-9.0,1,0.0,1,1770.0,1042852,6.0,213 -1257489,1630092668,8906620,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,213 -1257490,1630092669,8126037,2,64,-9.0,1,0.0,1,4610.0,1025215,6.0,212 -1257491,1630092670,8030653,2,48,-9.0,1,0.0,1,12200.0,1009585,6.0,213 -1257492,1630092671,8126037,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,212 -1257493,1630092672,8424106,2,57,-9.0,1,0.0,1,13900.0,1073094,4.0,214 -1257494,1630092673,8424161,2,54,-9.0,1,0.0,1,4600.0,1025215,6.0,213 -1257495,1630092674,8125920,2,54,-9.0,1,0.0,1,8300.0,1042852,4.0,214 -1257496,1630092675,8126037,2,64,-9.0,1,0.0,1,4610.0,1025215,6.0,212 -1257497,1630092676,8031846,2,62,-9.0,1,0.0,1,8570.0,1042852,6.0,213 -1257498,1630092677,8416276,2,62,-9.0,1,0.0,1,8100.0,1001264,6.0,213 -1257499,1630092678,8906619,2,58,-9.0,1,0.0,1,8400.0,1025215,4.0,214 -1257500,1630092679,8126037,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,212 -1257501,1630092680,8906620,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,213 -1257502,1630092681,8424163,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,213 -1257503,1630092682,8126037,1,60,-9.0,1,0.0,1,10840.0,1009585,4.0,212 -1257504,1630092683,8424163,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,213 -1257505,1630092684,8031846,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,213 -1257506,1630092685,8126037,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,212 -1257507,1630092686,8424166,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,214 -1257508,1630092687,8424163,1,60,-9.0,1,0.0,1,14000.0,1073094,6.0,213 -1257509,1630092688,8424163,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,213 -1257510,1630092689,8906620,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,213 -1257511,1630092690,8031846,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,213 -1257512,1630092691,8906620,1,51,-9.0,1,0.0,1,0.0,1042852,6.0,213 -1257513,1630092692,8031846,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,213 -1257514,1630092693,8126037,3,61,-9.0,1,0.0,1,8670.0,1025215,6.0,212 -1257515,1630092694,8126037,2,57,-9.0,1,1.0,1,8700.0,1025215,4.0,212 -1257516,1630092695,8900308,2,46,-9.0,1,1.0,1,0.0,1073094,6.0,213 -1257517,1630092696,8030638,2,47,-9.0,1,1.0,1,1800.0,1042852,6.0,213 -1257518,1630092697,8900311,2,53,-9.0,1,1.0,1,8400.0,1001264,4.0,213 -1257519,1630092698,8126037,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,212 -1257520,1630092699,8125920,2,60,-9.0,1,1.0,1,9100.0,1025215,4.0,214 -1257521,1630092700,8424106,2,61,-9.0,1,1.0,1,17600.0,1073094,6.0,214 -1257522,1630092701,8127504,1,60,-9.0,1,1.0,1,640.0,1042852,6.0,214 -1257523,1630092702,8030653,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,213 -1257524,1630092703,8125920,2,49,-9.0,3,0.0,1,10170.0,1001264,1.0,214 -1257525,1630092704,8126037,2,55,-9.0,2,0.0,1,12770.0,1073094,7.0,212 -1257526,1630092705,8126037,2,63,-9.0,2,0.0,1,15000.0,1073094,5.0,212 -1257527,1630092706,8126037,2,54,-9.0,2,0.0,1,13640.0,1001264,7.0,212 -1257528,1630092707,8126037,2,63,-9.0,2,0.0,1,15000.0,1073094,5.0,212 -1257529,1630092708,8126037,2,53,-9.0,1,0.0,1,7500.0,1042852,3.0,212 -1257530,1630092709,8127504,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,214 -1257531,1630092710,8031846,2,62,-9.0,1,0.0,1,29000.0,1009585,6.0,213 -1257532,1630092711,8031846,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,213 -1257533,1630092712,8126037,2,60,-9.0,1,0.0,1,26000.0,1025215,4.0,212 -1257534,1630092713,8424167,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,214 -1257535,1630092714,8030638,2,55,-9.0,1,0.0,1,7500.0,1001264,6.0,213 -1257536,1630092715,8030638,2,55,-9.0,1,0.0,1,7500.0,1001264,6.0,213 -1257537,1630092716,8424163,2,60,-9.0,1,0.0,1,4800.0,1025215,6.0,213 -1257538,1630092717,8031846,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,213 -1257539,1630092718,8127462,2,55,-9.0,1,0.0,1,8000.0,1009585,4.0,214 -1257540,1630092719,8416276,2,45,-9.0,1,0.0,1,22900.0,1073094,6.0,213 -1257541,1630092720,8424166,2,61,-9.0,1,0.0,1,16200.0,1042852,6.0,214 -1257542,1630092721,8424161,2,55,-9.0,1,0.0,1,22600.0,1009585,6.0,213 -1257543,1630092722,8424167,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,214 -1257544,1630092723,8030653,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,213 -1257545,1630092724,8031846,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,213 -1257546,1630092725,8126037,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,212 -1257547,1630092726,8424167,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,214 -1257548,1630092727,8416280,2,55,-9.0,1,0.0,1,22600.0,1009585,6.0,213 -1257549,1630092728,8424106,2,58,-9.0,1,0.0,1,12000.0,1025215,6.0,214 -1257550,1630092729,8126037,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,212 -1257551,1630092730,8126287,2,55,-9.0,1,0.0,1,22600.0,1009585,6.0,214 -1257552,1630092731,8031846,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,213 -1257553,1630092732,8424163,2,64,-9.0,1,0.0,1,10170.0,1001264,6.0,213 -1257554,1630092733,8127504,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,214 -1257555,1630092734,8424161,2,62,-9.0,1,0.0,1,29000.0,1009585,6.0,213 -1257556,1630092735,8424166,2,61,-9.0,1,0.0,1,16200.0,1042852,6.0,214 -1257557,1630092736,8127504,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,214 -1257558,1630092737,8423504,2,58,-9.0,1,0.0,1,12000.0,1025215,6.0,213 -1257559,1630092738,8127504,2,60,-9.0,1,0.0,1,4800.0,1025215,6.0,214 -1257560,1630092739,8424167,2,51,-9.0,1,0.0,1,19000.0,1025215,4.0,214 -1257561,1630092740,8906620,2,46,-9.0,1,0.0,1,5000.0,1073094,4.0,213 -1257562,1630092741,8126037,2,60,-9.0,1,0.0,1,4800.0,1025215,6.0,212 -1257563,1630092742,8030653,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,213 -1257564,1630092743,8906620,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,213 -1257565,1630092744,8127504,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,214 -1257566,1630092745,8900345,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,213 -1257567,1630092746,8900345,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,213 -1257568,1630092747,8906621,2,54,-9.0,1,1.0,1,17700.0,1001264,6.0,213 -1257569,1630092748,8031846,2,54,-9.0,1,1.0,1,21900.0,1025215,4.0,213 -1257570,1630092749,8906619,2,62,-9.0,1,1.0,1,22000.0,1009585,6.0,214 -1257571,1630092750,8424163,2,59,-9.0,1,1.0,1,2800.0,1001264,4.0,213 -1257572,1630092751,8126037,2,58,-9.0,1,1.0,1,13900.0,1073094,4.0,212 -1257573,1630092752,8126287,2,48,-9.0,1,1.0,1,27700.0,1073094,6.0,214 -1257574,1630092753,8900311,1,62,-9.0,1,1.0,1,22600.0,1001264,4.0,213 -1257575,1630092754,8906619,1,46,-9.0,1,1.0,1,20000.0,1001264,4.0,214 -1257576,1630092755,8030653,1,62,-9.0,1,1.0,1,22600.0,1001264,4.0,213 -1257577,1630092756,8424106,2,59,-9.0,1,2.0,1,20000.0,1001264,4.0,214 -1257578,1630092757,8127462,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,214 -1257579,1630092758,8126287,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,214 -1257580,1630092759,8126037,2,46,-9.0,1,0.0,1,1400.0,1025215,3.0,212 -1257581,1630092760,8424163,2,52,-9.0,2,0.0,1,12160.0,1001264,7.0,213 -1257582,1630092761,8031846,2,47,-9.0,2,1.0,1,19300.0,1042852,7.0,213 -1257583,1630092762,8424106,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,214 -1257584,1630092763,8030653,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,213 -1257585,1630092764,8423504,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,213 -1257586,1630092765,8423504,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,213 -1257587,1630092766,8424106,2,69,-9.0,2,0.0,1,183100.0,1042852,1.0,214 -1257588,1630092767,8424106,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,214 -1257589,1630092768,8900345,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,213 -1257590,1630092769,8424106,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,214 -1257591,1630092770,8900345,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,213 -1257592,1630092771,8423504,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,213 -1257593,1630092772,8424106,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,214 -1257594,1630092773,8424106,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,214 -1257595,1630092774,8423504,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,213 -1257596,1630092775,8423504,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,213 -1257597,1630092776,8424106,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,214 -1257598,1630092777,8424106,2,70,-9.0,2,3.0,1,100000.0,1042852,1.0,214 -1257599,1630092778,8423504,2,70,-9.0,2,3.0,1,100000.0,1042852,1.0,213 -1257600,1630092779,8424106,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,214 -1257601,1630092780,8424106,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,214 -1257602,1630092781,8423504,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,213 -1257603,1630092782,8424106,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,214 -1257604,1630092783,8906621,2,68,-9.0,2,0.0,1,126000.0,1001264,5.0,213 -1257605,1630092784,8906621,2,87,-9.0,1,0.0,1,30000.0,1042852,6.0,213 -1257606,1630092785,8423504,2,90,-9.0,1,0.0,1,44700.0,1001264,6.0,213 -1257607,1630092786,8416280,2,71,-9.0,1,0.0,1,31400.0,1073094,4.0,213 -1257608,1630092787,8126287,2,66,-9.0,1,0.0,1,38000.0,1001264,6.0,214 -1257609,1630092788,8900345,2,90,-9.0,1,0.0,1,44700.0,1001264,6.0,213 -1257610,1630092789,8127504,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,214 -1257611,1630092790,8126287,2,66,-9.0,1,0.0,1,38000.0,1001264,6.0,214 -1257612,1630092791,8126037,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,212 -1257613,1630092792,8906619,2,71,-9.0,1,0.0,1,31400.0,1073094,4.0,214 -1257614,1630092793,8906619,2,87,-9.0,1,0.0,1,30000.0,1042852,6.0,214 -1257615,1630092794,8424167,2,66,-9.0,1,0.0,1,38000.0,1001264,6.0,214 -1257616,1630092795,8424106,2,87,-9.0,1,0.0,1,51000.0,1009585,6.0,214 -1257617,1630092796,8126287,2,87,-9.0,1,0.0,1,30000.0,1042852,6.0,214 -1257618,1630092797,8424106,2,90,-9.0,1,0.0,1,44700.0,1001264,6.0,214 -1257619,1630092798,8906619,2,87,-9.0,1,0.0,1,30000.0,1042852,6.0,214 -1257620,1630092799,8031846,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,213 -1257621,1630092800,8900345,2,90,-9.0,1,0.0,1,44700.0,1001264,6.0,213 -1257622,1630092801,8424161,2,87,-9.0,1,0.0,1,30000.0,1042852,6.0,213 -1257623,1630092802,8906619,2,75,-9.0,1,0.0,1,45100.0,1042852,6.0,214 -1257624,1630092803,8423504,2,87,-9.0,1,1.0,1,48000.0,1025215,6.0,213 -1257625,1630092804,8424161,2,65,-9.0,1,1.0,1,34200.0,1009585,4.0,213 -1257626,1630092805,8906621,2,66,-9.0,1,1.0,1,37420.0,1073094,4.0,213 -1257627,1630092806,8424161,2,65,-9.0,1,1.0,1,34200.0,1009585,4.0,213 -1257628,1630092807,8424161,2,65,-9.0,1,1.0,1,34200.0,1009585,4.0,213 -1257629,1630092808,8900345,1,66,-9.0,1,1.0,1,49000.0,1025215,4.0,213 -1257630,1630092809,8424106,1,66,-9.0,1,1.0,1,49000.0,1025215,4.0,214 -1257631,1630092810,8906619,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,214 -1257632,1630092811,8424166,2,66,-9.0,1,2.0,1,32700.0,1009585,4.0,214 -1257633,1630092812,8126287,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,214 -1257634,1630092813,8030638,2,76,-9.0,2,0.0,1,41200.0,1009585,3.0,213 -1257635,1630092814,8030638,2,76,-9.0,2,0.0,1,41200.0,1009585,3.0,213 -1257636,1630092815,8030653,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,213 -1257637,1630092816,8030653,2,72,-9.0,1,0.0,1,54300.0,1073094,6.0,213 -1257638,1630092817,8030653,2,72,-9.0,1,0.0,1,54300.0,1073094,6.0,213 -1257639,1630092818,8030653,2,72,-9.0,1,0.0,1,54300.0,1073094,6.0,213 -1257640,1630092819,8125920,2,75,-9.0,1,1.0,1,49800.0,1042852,6.0,214 -1257641,1630092820,8125920,2,75,-9.0,1,1.0,1,49800.0,1042852,6.0,214 -1257642,1630092821,8030638,2,66,-9.0,1,1.0,1,32000.0,1001264,4.0,213 -1257643,1630092822,8423504,2,85,-9.0,2,0.0,1,42220.0,1009585,3.0,213 -1257644,1630092823,8416280,2,75,-9.0,2,1.0,1,45200.0,1001264,7.0,213 -1257645,1630092824,8424106,2,73,-9.0,1,2.0,1,52800.0,1073094,1.0,214 -1257646,1630092825,8424163,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,213 -1257647,1630092826,8127462,1,69,-9.0,2,2.0,1,41280.0,1042852,5.0,214 -1257648,1630092827,8127504,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,214 -1257649,1630092828,8424106,2,74,-9.0,1,0.0,1,68400.0,1001264,4.0,214 -1257650,1630092829,8424106,2,74,-9.0,1,0.0,1,68400.0,1001264,4.0,214 -1257651,1630092830,8126287,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,214 -1257652,1630092831,8424106,2,74,-9.0,1,0.0,1,68400.0,1001264,4.0,214 -1257653,1630092832,8126287,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,214 -1257654,1630092833,8126287,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,214 -1257655,1630092834,8906621,2,66,-9.0,1,1.0,1,63000.0,1001264,4.0,213 -1257656,1630092835,8423504,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,213 -1257657,1630092836,8424106,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,214 -1257658,1630092837,8424106,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,214 -1257659,1630092838,8900311,2,68,-9.0,2,2.0,1,81200.0,1001264,1.0,213 -1257660,1630092839,8031846,2,73,-9.0,1,0.0,1,8400.0,1073094,6.0,213 -1257661,1630092840,8424167,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,214 -1257662,1630092841,8127462,2,83,-9.0,1,0.0,1,7700.0,1025215,4.0,214 -1257663,1630092842,8126037,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,212 -1257664,1630092843,8126037,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,212 -1257665,1630092844,8424163,2,70,-9.0,1,0.0,1,15000.0,1025215,4.0,213 -1257666,1630092845,8126037,2,65,-9.0,1,0.0,1,13000.0,1025215,6.0,212 -1257667,1630092846,8125920,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,214 -1257668,1630092847,8126037,2,66,-9.0,1,0.0,1,9300.0,1025215,4.0,212 -1257669,1630092848,8126287,2,67,-9.0,1,0.0,1,8900.0,1009585,6.0,214 -1257670,1630092849,8126037,2,73,-9.0,1,0.0,1,11000.0,1025215,6.0,212 -1257671,1630092850,8424166,2,85,-9.0,1,0.0,1,12100.0,1025215,6.0,214 -1257672,1630092851,8126037,2,67,-9.0,1,0.0,1,9600.0,1001264,6.0,212 -1257673,1630092852,8125920,2,68,-9.0,1,0.0,1,7200.0,1025215,6.0,214 -1257674,1630092853,8031846,2,65,-9.0,1,0.0,1,11000.0,1001264,6.0,213 -1257675,1630092854,8127462,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,214 -1257676,1630092855,8416276,2,82,-9.0,1,0.0,1,8300.0,1042852,6.0,213 -1257677,1630092856,8424163,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,213 -1257678,1630092857,8126037,2,86,-9.0,1,0.0,1,14300.0,1042852,6.0,212 -1257679,1630092858,8126037,2,70,-9.0,1,0.0,1,9200.0,1042852,6.0,212 -1257680,1630092859,8126037,2,80,-9.0,1,0.0,1,5500.0,1042852,4.0,212 -1257681,1630092860,8126037,2,70,-9.0,1,0.0,1,20500.0,1009585,4.0,212 -1257682,1630092861,8127462,2,65,-9.0,1,0.0,1,430.0,1025215,6.0,214 -1257683,1630092862,8126037,2,70,-9.0,1,0.0,1,25004.0,1073094,4.0,212 -1257684,1630092863,8126037,2,67,-9.0,1,0.0,1,9600.0,1001264,6.0,212 -1257685,1630092864,8125920,2,72,-9.0,1,0.0,1,2100.0,1042852,6.0,214 -1257686,1630092865,8126037,2,73,-9.0,1,0.0,1,8400.0,1073094,6.0,212 -1257687,1630092866,8126037,2,77,-9.0,1,0.0,1,9600.0,1009585,4.0,212 -1257688,1630092867,8424163,2,65,-9.0,1,0.0,1,11000.0,1001264,6.0,213 -1257689,1630092868,8900308,2,74,-9.0,1,0.0,1,14300.0,1025215,6.0,213 -1257690,1630092869,8900308,2,65,-9.0,1,0.0,1,0.0,1001264,6.0,213 -1257691,1630092870,8127504,2,79,-9.0,1,0.0,1,13600.0,1001264,4.0,214 -1257692,1630092871,8126037,2,73,-9.0,1,0.0,1,9600.0,1001264,6.0,212 -1257693,1630092872,8126037,2,87,-9.0,1,0.0,1,7200.0,1042852,6.0,212 -1257694,1630092873,8126037,2,66,-9.0,1,0.0,1,17700.0,1025215,6.0,212 -1257695,1630092874,8127504,2,79,-9.0,1,0.0,1,13600.0,1001264,4.0,214 -1257696,1630092875,8126037,2,65,-9.0,1,0.0,1,5300.0,1042852,6.0,212 -1257697,1630092876,8126037,2,67,-9.0,1,0.0,1,9600.0,1001264,6.0,212 -1257698,1630092877,8127462,2,67,-9.0,1,0.0,1,8300.0,1073094,6.0,214 -1257699,1630092878,8126037,2,73,-9.0,1,0.0,1,11000.0,1025215,6.0,212 -1257700,1630092879,8416280,2,90,-9.0,1,0.0,1,8600.0,1073094,6.0,213 -1257701,1630092880,8126037,2,85,-9.0,1,0.0,1,13200.0,1025215,6.0,212 -1257702,1630092881,8031846,2,86,-9.0,1,0.0,1,9400.0,1009585,6.0,213 -1257703,1630092882,8126037,2,65,-9.0,1,0.0,1,15600.0,1025215,6.0,212 -1257704,1630092883,8126037,2,75,-9.0,1,0.0,1,9600.0,1009585,4.0,212 -1257705,1630092884,8126037,2,67,-9.0,1,0.0,1,8300.0,1001264,6.0,212 -1257706,1630092885,8900308,2,74,-9.0,1,0.0,1,14300.0,1025215,6.0,213 -1257707,1630092886,8424161,2,88,-9.0,1,0.0,1,11300.0,1025215,6.0,213 -1257708,1630092887,8424163,2,86,-9.0,1,0.0,1,12300.0,1042852,6.0,213 -1257709,1630092888,8127462,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,214 -1257710,1630092889,8126037,2,78,-9.0,1,0.0,1,20600.0,1042852,4.0,212 -1257711,1630092890,8126037,2,72,-9.0,1,0.0,1,12500.0,1042852,6.0,212 -1257712,1630092891,8424161,2,94,-9.0,1,0.0,1,6800.0,1009585,6.0,213 -1257713,1630092892,8127462,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,214 -1257714,1630092893,8125920,2,75,-9.0,1,0.0,1,8800.0,1001264,4.0,214 -1257715,1630092894,8126037,2,94,-9.0,1,0.0,1,14300.0,1009585,4.0,212 -1257716,1630092895,8126037,2,73,-9.0,1,0.0,1,8400.0,1042852,6.0,212 -1257717,1630092896,8424163,2,87,-9.0,1,0.0,1,20400.0,1025215,6.0,213 -1257718,1630092897,8031846,2,66,-9.0,1,0.0,1,9300.0,1025215,4.0,213 -1257719,1630092898,8424163,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,213 -1257720,1630092899,8127462,2,66,-9.0,1,0.0,1,10100.0,1009585,6.0,214 -1257721,1630092900,8125920,2,68,-9.0,1,0.0,1,7200.0,1025215,6.0,214 -1257722,1630092901,8126037,2,87,-9.0,1,0.0,1,20400.0,1025215,6.0,212 -1257723,1630092902,8127462,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,214 -1257724,1630092903,8424166,2,85,-9.0,1,0.0,1,12100.0,1025215,6.0,214 -1257725,1630092904,8127504,2,71,-9.0,1,0.0,1,8700.0,1025215,6.0,214 -1257726,1630092905,8031846,2,78,-9.0,1,0.0,1,8500.0,1073094,6.0,213 -1257727,1630092906,8126037,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,212 -1257728,1630092907,8424106,2,73,-9.0,1,0.0,1,0.0,1025215,6.0,214 -1257729,1630092908,8126037,2,81,-9.0,1,0.0,1,16600.0,1042852,6.0,212 -1257730,1630092909,8423504,2,67,-9.0,1,0.0,1,6900.0,1042852,4.0,213 -1257731,1630092910,8126037,2,79,-9.0,1,0.0,1,9100.0,1073094,6.0,212 -1257732,1630092911,8126037,2,94,-9.0,1,0.0,1,23000.0,1042852,6.0,212 -1257733,1630092912,8126037,2,69,-9.0,1,0.0,1,12000.0,1042852,6.0,212 -1257734,1630092913,8125920,2,78,-9.0,1,0.0,1,12000.0,1009585,6.0,214 -1257735,1630092914,8423504,2,67,-9.0,1,0.0,1,6900.0,1042852,4.0,213 -1257736,1630092915,8031846,2,65,-9.0,1,0.0,1,17000.0,1001264,6.0,213 -1257737,1630092916,8424163,2,78,-9.0,1,0.0,1,9100.0,1001264,6.0,213 -1257738,1630092917,8031846,2,78,-9.0,1,0.0,1,8500.0,1073094,6.0,213 -1257739,1630092918,8031846,2,78,-9.0,1,0.0,1,8500.0,1073094,6.0,213 -1257740,1630092919,8031846,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,213 -1257741,1630092920,8424161,2,82,-9.0,1,0.0,1,12500.0,1073094,4.0,213 -1257742,1630092921,8416276,2,82,-9.0,1,0.0,1,8300.0,1042852,6.0,213 -1257743,1630092922,8125920,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,214 -1257744,1630092923,8127462,2,67,-9.0,1,0.0,1,8300.0,1073094,6.0,214 -1257745,1630092924,8424163,2,87,-9.0,1,0.0,1,20400.0,1025215,6.0,213 -1257746,1630092925,8126037,2,79,-9.0,1,0.0,1,13800.0,1025215,4.0,212 -1257747,1630092926,8900308,2,65,-9.0,1,0.0,1,0.0,1001264,6.0,213 -1257748,1630092927,8126037,2,78,-9.0,1,0.0,1,26100.0,1009585,6.0,212 -1257749,1630092928,8424106,2,68,-9.0,1,0.0,1,17360.0,1009585,6.0,214 -1257750,1630092929,8424106,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,214 -1257751,1630092930,8031846,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,213 -1257752,1630092931,8127462,2,86,-9.0,1,0.0,1,13000.0,1025215,6.0,214 -1257753,1630092932,8126037,2,66,-9.0,1,0.0,1,9300.0,1025215,4.0,212 -1257754,1630092933,8126037,2,70,-9.0,1,0.0,1,15530.0,1009585,6.0,212 -1257755,1630092934,8127462,2,65,-9.0,1,0.0,1,9000.0,1001264,6.0,214 -1257756,1630092935,8126037,2,90,-9.0,1,0.0,1,8600.0,1073094,6.0,212 -1257757,1630092936,8125920,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,214 -1257758,1630092937,8126037,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,212 -1257759,1630092938,8126037,2,94,-9.0,1,0.0,1,23000.0,1042852,6.0,212 -1257760,1630092939,8126037,2,65,-9.0,1,0.0,1,12000.0,1025215,4.0,212 -1257761,1630092940,8127462,2,69,-9.0,1,0.0,1,8400.0,1001264,6.0,214 -1257762,1630092941,8031846,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,213 -1257763,1630092942,8127462,2,69,-9.0,1,0.0,1,8400.0,1001264,6.0,214 -1257764,1630092943,8127504,2,66,-9.0,1,0.0,1,8400.0,1025215,4.0,214 -1257765,1630092944,8126037,2,70,-9.0,1,0.0,1,9200.0,1042852,6.0,212 -1257766,1630092945,8126037,2,90,-9.0,1,0.0,1,8600.0,1073094,6.0,212 -1257767,1630092946,8126037,2,70,-9.0,1,0.0,1,25004.0,1073094,4.0,212 -1257768,1630092947,8424106,2,70,-9.0,1,0.0,1,11400.0,1042852,6.0,214 -1257769,1630092948,8900308,2,65,-9.0,1,0.0,1,0.0,1001264,6.0,213 -1257770,1630092949,8424167,2,71,-9.0,1,0.0,1,24300.0,1042852,6.0,214 -1257771,1630092950,8031846,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,213 -1257772,1630092951,8031846,2,71,-9.0,1,0.0,1,8700.0,1025215,6.0,213 -1257773,1630092952,8423504,2,69,-9.0,1,0.0,1,23200.0,1009585,4.0,213 -1257774,1630092953,8127462,2,67,-9.0,1,0.0,1,9600.0,1042852,4.0,214 -1257775,1630092954,8127462,2,67,-9.0,1,0.0,1,9600.0,1042852,4.0,214 -1257776,1630092955,8126037,2,65,-9.0,1,0.0,1,24000.0,1001264,4.0,212 -1257777,1630092956,8126037,2,76,-9.0,1,0.0,1,4101.0,1001264,4.0,212 -1257778,1630092957,8125920,2,70,-9.0,1,0.0,1,14300.0,1042852,6.0,214 -1257779,1630092958,8424163,2,66,-9.0,1,0.0,1,10100.0,1009585,6.0,213 -1257780,1630092959,8126037,2,65,-9.0,1,0.0,1,14900.0,1025215,6.0,212 -1257781,1630092960,8900345,2,67,-9.0,1,0.0,1,6900.0,1042852,4.0,213 -1257782,1630092961,8424166,2,74,-9.0,1,0.0,1,9200.0,1025215,4.0,214 -1257783,1630092962,8126037,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,212 -1257784,1630092963,8126037,2,86,-9.0,1,0.0,1,10600.0,1009585,6.0,212 -1257785,1630092964,8126037,2,69,-9.0,1,0.0,1,14400.0,1001264,6.0,212 -1257786,1630092965,8126037,2,73,-9.0,1,0.0,1,11000.0,1025215,6.0,212 -1257787,1630092966,8125920,2,72,-9.0,1,0.0,1,2100.0,1042852,6.0,214 -1257788,1630092967,8126037,2,81,-9.0,1,0.0,1,20000.0,1025215,6.0,212 -1257789,1630092968,8126037,2,82,-9.0,1,0.0,1,18900.0,1042852,6.0,212 -1257790,1630092969,8126037,2,69,-9.0,1,0.0,1,12600.0,1025215,6.0,212 -1257791,1630092970,8126037,2,69,-9.0,1,0.0,1,14400.0,1001264,6.0,212 -1257792,1630092971,8126037,2,65,-9.0,1,0.0,1,15600.0,1025215,6.0,212 -1257793,1630092972,8031846,2,87,-9.0,1,0.0,1,20400.0,1025215,6.0,213 -1257794,1630092973,8126037,2,69,-9.0,1,0.0,1,7000.0,1009585,6.0,212 -1257795,1630092974,8906621,2,82,-9.0,1,0.0,1,12500.0,1073094,4.0,213 -1257796,1630092975,8031846,2,80,-9.0,1,0.0,1,8900.0,1009585,6.0,213 -1257797,1630092976,8424106,2,73,-9.0,1,0.0,1,0.0,1025215,6.0,214 -1257798,1630092977,8424106,2,70,-9.0,1,0.0,1,11400.0,1042852,6.0,214 -1257799,1630092978,8126037,2,86,-9.0,1,0.0,1,10600.0,1009585,6.0,212 -1257800,1630092979,8900345,2,74,-9.0,1,0.0,1,17000.0,1073094,6.0,213 -1257801,1630092980,8126037,2,69,-9.0,1,0.0,1,12000.0,1042852,6.0,212 -1257802,1630092981,8126037,2,67,-9.0,1,0.0,1,8300.0,1001264,6.0,212 -1257803,1630092982,8125920,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,214 -1257804,1630092983,8127462,2,67,-9.0,1,0.0,1,8300.0,1073094,6.0,214 -1257805,1630092984,8125920,2,78,-9.0,1,0.0,1,9200.0,1001264,6.0,214 -1257806,1630092985,8906621,2,71,-9.0,1,0.0,1,24300.0,1042852,6.0,213 -1257807,1630092986,8126037,2,78,-9.0,1,0.0,1,20600.0,1042852,4.0,212 -1257808,1630092987,8126037,2,86,-9.0,1,0.0,1,12300.0,1042852,6.0,212 -1257809,1630092988,8125920,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,214 -1257810,1630092989,8126037,2,66,-9.0,1,0.0,1,20400.0,1009585,6.0,212 -1257811,1630092990,8424163,2,65,-9.0,1,0.0,1,11000.0,1001264,6.0,213 -1257812,1630092991,8126287,2,88,-9.0,1,0.0,1,11300.0,1025215,6.0,214 -1257813,1630092992,8424163,2,72,-9.0,1,0.0,1,18830.0,1001264,6.0,213 -1257814,1630092993,8125920,2,68,-9.0,1,0.0,1,7200.0,1025215,6.0,214 -1257815,1630092994,8424106,2,70,-9.0,1,0.0,1,11400.0,1042852,6.0,214 -1257816,1630092995,8424163,2,81,-9.0,1,0.0,1,16600.0,1042852,6.0,213 -1257817,1630092996,8900345,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,213 -1257818,1630092997,8126037,2,81,-9.0,1,0.0,1,20000.0,1025215,6.0,212 -1257819,1630092998,8126037,2,88,-9.0,1,0.0,1,8800.0,1001264,6.0,212 -1257820,1630092999,8031846,2,74,-9.0,1,0.0,1,12000.0,1009585,6.0,213 -1257821,1630093000,8126287,2,72,-9.0,1,0.0,1,19290.0,1001264,6.0,214 -1257822,1630093001,8125920,2,70,-9.0,1,0.0,1,14300.0,1042852,6.0,214 -1257823,1630093002,8126037,2,78,-9.0,1,0.0,1,26100.0,1009585,6.0,212 -1257824,1630093003,8127504,2,78,-9.0,1,0.0,1,9100.0,1001264,6.0,214 -1257825,1630093004,8900308,2,65,-9.0,1,0.0,1,0.0,1001264,6.0,213 -1257826,1630093005,8424163,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,213 -1257827,1630093006,8127462,2,66,-9.0,1,0.0,1,9000.0,1001264,4.0,214 -1257828,1630093007,8126037,2,67,-9.0,1,0.0,1,9600.0,1001264,6.0,212 -1257829,1630093008,8424163,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,213 -1257830,1630093009,8126037,2,70,-9.0,1,0.0,1,25004.0,1073094,4.0,212 -1257831,1630093010,8424161,2,94,-9.0,1,0.0,1,6800.0,1009585,6.0,213 -1257832,1630093011,8424163,2,78,-9.0,1,0.0,1,8500.0,1073094,6.0,213 -1257833,1630093012,8424163,2,70,-9.0,1,0.0,1,15000.0,1025215,4.0,213 -1257834,1630093013,8126037,2,78,-9.0,1,0.0,1,26100.0,1009585,6.0,212 -1257835,1630093014,8125920,2,78,-9.0,1,0.0,1,9200.0,1001264,6.0,214 -1257836,1630093015,8906619,2,72,-9.0,1,0.0,1,11220.0,1009585,6.0,214 -1257837,1630093016,8126037,2,87,-9.0,1,0.0,1,7200.0,1042852,6.0,212 -1257838,1630093017,8126037,2,79,-9.0,1,0.0,1,18000.0,1025215,4.0,212 -1257839,1630093018,8126037,2,70,-9.0,1,0.0,1,9200.0,1042852,6.0,212 -1257840,1630093019,8424163,2,69,-9.0,1,0.0,1,7200.0,1042852,4.0,213 -1257841,1630093020,8424163,2,78,-9.0,1,0.0,1,8500.0,1073094,6.0,213 -1257842,1630093021,8906621,2,86,-9.0,1,0.0,1,8100.0,1073094,4.0,213 -1257843,1630093022,8424166,2,85,-9.0,1,0.0,1,12100.0,1025215,6.0,214 -1257844,1630093023,8031846,2,87,-9.0,1,0.0,1,20400.0,1025215,6.0,213 -1257845,1630093024,8126037,2,65,-9.0,1,0.0,1,13000.0,1025215,6.0,212 -1257846,1630093025,8126037,2,69,-9.0,1,0.0,1,12000.0,1042852,6.0,212 -1257847,1630093026,8423504,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,213 -1257848,1630093027,8126037,2,94,-9.0,1,0.0,1,14300.0,1009585,4.0,212 -1257849,1630093028,8031846,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,213 -1257850,1630093029,8424163,2,78,-9.0,1,0.0,1,8500.0,1073094,6.0,213 -1257851,1630093030,8126037,2,66,-9.0,1,0.0,1,13500.0,1073094,4.0,212 -1257852,1630093031,8424167,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,214 -1257853,1630093032,8125920,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,214 -1257854,1630093033,8126287,2,67,-9.0,1,0.0,1,8900.0,1009585,6.0,214 -1257855,1630093034,8906620,2,70,-9.0,1,0.0,1,10800.0,1009585,4.0,213 -1257856,1630093035,8126037,2,80,-9.0,1,0.0,1,5500.0,1042852,4.0,212 -1257857,1630093036,8126037,2,78,-9.0,1,0.0,1,20600.0,1042852,4.0,212 -1257858,1630093037,8906621,2,72,-9.0,1,0.0,1,11220.0,1009585,6.0,213 -1257859,1630093038,8125920,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,214 -1257860,1630093039,8126037,3,65,-9.0,1,0.0,1,8040.0,1001264,4.0,212 -1257861,1630093040,8900311,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,213 -1257862,1630093041,8127504,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,214 -1257863,1630093042,8900311,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,213 -1257864,1630093043,8900311,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,213 -1257865,1630093044,8416280,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,213 -1257866,1630093045,8126037,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,212 -1257867,1630093046,8900311,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,213 -1257868,1630093047,8031846,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,213 -1257869,1630093048,8900311,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,213 -1257870,1630093049,8031846,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,213 -1257871,1630093050,8031846,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,213 -1257872,1630093051,8900311,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,213 -1257873,1630093052,8126037,1,65,-9.0,1,0.0,1,1100.0,1001264,4.0,212 -1257874,1630093053,8127504,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,214 -1257875,1630093054,8900311,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,213 -1257876,1630093055,8125920,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,214 -1257877,1630093056,8125920,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,214 -1257878,1630093057,8126037,1,67,-9.0,1,0.0,1,8300.0,1073094,6.0,212 -1257879,1630093058,8424161,1,77,-9.0,1,0.0,1,21900.0,1009585,4.0,213 -1257880,1630093059,8424163,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,213 -1257881,1630093060,8906621,1,66,-9.0,1,0.0,1,5300.0,1009585,4.0,213 -1257882,1630093061,8900311,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,213 -1257883,1630093062,8126037,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,212 -1257884,1630093063,8127504,1,74,-9.0,1,0.0,1,9600.0,1042852,4.0,214 -1257885,1630093064,8127504,1,65,-9.0,1,0.0,1,1100.0,1001264,4.0,214 -1257886,1630093065,8424161,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,213 -1257887,1630093066,8126037,1,65,-9.0,1,0.0,1,1100.0,1001264,4.0,212 -1257888,1630093067,8125920,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,214 -1257889,1630093068,8900311,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,213 -1257890,1630093069,8424161,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,213 -1257891,1630093070,8126037,1,67,-9.0,1,0.0,1,8300.0,1073094,6.0,212 -1257892,1630093071,8900345,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,213 -1257893,1630093072,8423504,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,213 -1257894,1630093073,8900345,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,213 -1257895,1630093074,8424106,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,214 -1257896,1630093075,8424161,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,213 -1257897,1630093076,8424166,3,67,-9.0,1,0.0,1,16800.0,1042852,4.0,214 -1257898,1630093077,8416280,2,69,-9.0,1,1.0,1,10800.0,1042852,6.0,213 -1257899,1630093078,8424167,2,79,-9.0,1,1.0,1,9300.0,1009585,6.0,214 -1257900,1630093079,8126037,2,76,-9.0,1,1.0,1,23400.0,1025215,4.0,212 -1257901,1630093080,8126037,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,212 -1257902,1630093081,8126037,2,75,-9.0,1,1.0,1,13000.0,1009585,4.0,212 -1257903,1630093082,8900345,2,75,-9.0,1,1.0,1,26300.0,1025215,6.0,213 -1257904,1630093083,8424106,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,214 -1257905,1630093084,8424161,2,79,-9.0,1,1.0,1,13000.0,1073094,6.0,213 -1257906,1630093085,8900345,2,68,-9.0,1,1.0,1,19000.0,1073094,6.0,213 -1257907,1630093086,8424167,2,79,-9.0,1,1.0,1,1300.0,1073094,6.0,214 -1257908,1630093087,8424106,2,69,-9.0,1,1.0,1,10500.0,1073094,6.0,214 -1257909,1630093088,8127504,2,73,-9.0,1,1.0,1,16800.0,1001264,4.0,214 -1257910,1630093089,8424106,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,214 -1257911,1630093090,8423504,2,69,-9.0,1,1.0,1,10500.0,1073094,6.0,213 -1257912,1630093091,8127462,2,83,-9.0,1,1.0,1,21900.0,1042852,4.0,214 -1257913,1630093092,8031846,2,77,-9.0,1,1.0,1,7700.0,1025215,6.0,213 -1257914,1630093093,8906620,2,67,-9.0,1,1.0,1,9500.0,1042852,6.0,213 -1257915,1630093094,8126037,2,75,-9.0,1,1.0,1,13000.0,1009585,4.0,212 -1257916,1630093095,8416280,2,78,-9.0,1,1.0,1,25100.0,1073094,6.0,213 -1257917,1630093096,8424106,2,68,-9.0,1,1.0,1,19000.0,1073094,6.0,214 -1257918,1630093097,8126037,2,69,-9.0,1,1.0,1,13500.0,1009585,6.0,212 -1257919,1630093098,8424163,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,213 -1257920,1630093099,8127462,2,68,-9.0,1,1.0,1,11600.0,1001264,6.0,214 -1257921,1630093100,8424106,2,68,-9.0,1,1.0,1,19000.0,1073094,6.0,214 -1257922,1630093101,8416276,1,68,-9.0,1,1.0,1,3000.0,1009585,4.0,213 -1257923,1630093102,8416276,2,71,-9.0,1,2.0,1,19300.0,1001264,4.0,213 -1257924,1630093103,8126037,2,65,-9.0,1,2.0,1,16000.0,1001264,6.0,212 -1257925,1630093104,8030638,2,87,-9.0,2,0.0,1,12200.0,1001264,3.0,213 -1257926,1630093105,8424167,2,71,-9.0,1,0.0,1,13000.0,1042852,1.0,214 -1257927,1630093106,8424167,2,73,-9.0,2,0.0,1,10000.0,1042852,3.0,214 -1257928,1630093107,8900308,2,66,-9.0,2,0.0,1,0.0,1073094,3.0,213 -1257929,1630093108,8127462,2,72,-9.0,1,0.0,1,10420.0,1009585,3.0,214 -1257930,1630093109,8126287,2,73,-9.0,1,0.0,1,10000.0,1042852,3.0,214 -1257931,1630093110,8900311,2,65,-9.0,2,0.0,1,9600.0,1009585,3.0,213 -1257932,1630093111,8126037,2,81,-9.0,2,0.0,1,14100.0,1009585,3.0,212 -1257933,1630093112,8900308,2,66,-9.0,2,0.0,1,0.0,1073094,3.0,213 -1257934,1630093113,8416276,1,77,-9.0,1,0.0,1,16400.0,1025215,5.0,213 -1257935,1630093114,8127462,2,84,-9.0,2,1.0,1,21700.0,1025215,3.0,214 -1257936,1630093115,8030638,2,77,-9.0,2,2.0,1,8400.0,1025215,2.0,213 -1257937,1630093116,8127462,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,214 -1257938,1630093117,8906619,2,66,-9.0,1,0.0,1,15500.0,1009585,4.0,214 -1257939,1630093118,8416280,2,66,-9.0,1,0.0,1,15500.0,1009585,4.0,213 -1257940,1630093119,8416280,2,66,-9.0,1,0.0,1,15500.0,1009585,4.0,213 -1257941,1630093120,8127462,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,214 -1257942,1630093121,8126037,2,68,-9.0,1,0.0,1,20000.0,1025215,4.0,212 -1257943,1630093122,8127462,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,214 -1257944,1630093123,8906619,2,72,-9.0,1,1.0,1,20000.0,1025215,4.0,214 -1257945,1630093124,8127462,2,67,-9.0,1,1.0,1,7200.0,1042852,6.0,214 -1257946,1630093125,8424166,1,72,-9.0,1,1.0,1,25520.0,1001264,6.0,214 -1257947,1630093126,8424106,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,214 -1257948,1630093127,8900345,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,213 -1257949,1630093128,8126037,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,212 -1257950,1630093129,8416280,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,213 -1257951,1630093130,8424167,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,214 -1257952,1630093131,8900311,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,213 -1257953,1630093132,8424167,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,214 -1257954,1630093133,8424167,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,214 -1257955,1630093134,8900345,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,213 -1257956,1630093135,8423504,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,213 -1257957,1630093136,8900345,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,213 -1257958,1630093137,8424106,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,214 -1257959,1630093138,8424106,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,214 -1257960,1630093139,8424106,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,214 -1257961,1630093140,8423504,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,213 -1257962,1630093141,8424163,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,213 -1257963,1630093142,8424161,2,23,-9.0,1,0.0,1,4000.0,1073094,6.0,213 -1257964,1630093143,8424163,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,213 -1257965,1630093144,8031846,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,213 -1257966,1630093145,8031846,2,23,-9.0,1,0.0,1,0.0,1042852,4.0,213 -1257967,1630093146,8126037,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,212 -1257968,1630093147,8424163,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,213 -1257969,1630093148,8126037,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,212 -1257970,1630093149,8424163,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,213 -1257971,1630093150,8126037,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,212 -1257972,1630093151,8031846,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,213 -1257973,1630093152,8423504,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,213 -1257974,1630093153,8125920,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,214 -1257975,1630093154,8424161,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,213 -1257976,1630093155,8031846,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,213 -1257977,1630093156,8424106,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,214 -1257978,1630093157,8424106,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,214 -1257979,1630093158,8416276,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,213 -1257980,1630093159,8031846,2,23,-9.0,1,0.0,1,22000.0,1009585,6.0,213 -1257981,1630093160,8424161,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,213 -1257982,1630093161,8031846,2,23,-9.0,1,0.0,1,22000.0,1009585,6.0,213 -1257983,1630093162,8416276,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,213 -1257984,1630093163,8416276,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,213 -1257985,1630093164,8126037,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,212 -1257986,1630093165,8126037,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,212 -1257987,1630093166,8424161,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,213 -1257988,1630093167,8424161,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,213 -1257989,1630093168,8126037,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,212 -1257990,1630093169,8424161,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,213 -1257991,1630093170,8424161,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,213 -1257992,1630093171,8424167,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,214 -1257993,1630093172,8416280,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,213 -1257994,1630093173,8424167,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,214 -1257995,1630093174,8424161,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,213 -1257996,1630093175,8906620,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,213 -1257997,1630093176,8906620,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,213 -1257998,1630093177,8900311,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,213 -1257999,1630093178,8423504,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,213 -1258000,1630093179,8030638,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,213 -1258001,1630093180,8030638,1,21,-9.0,2,2.0,1,16250.0,1073094,5.0,213 -1258002,1630093181,8424167,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,214 -1258003,1630093182,8906621,1,24,-9.0,2,2.0,1,22500.0,1025215,5.0,213 -1258004,1630093183,8423504,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,213 -1258005,1630093184,8423504,2,53,-9.0,2,1.0,1,65000.0,1042852,1.0,213 -1258006,1630093185,8030653,2,51,-9.0,2,1.0,1,42900.0,1025215,3.0,213 -1258007,1630093186,8030638,2,55,-9.0,1,1.0,1,58000.0,1009585,6.0,213 -1258008,1630093187,8126037,2,60,-9.0,1,1.0,1,28000.0,1001264,6.0,212 -1258009,1630093188,8424167,2,61,-9.0,2,0.0,1,31400.0,1042852,2.0,214 -1258010,1630093189,8126037,2,54,-9.0,2,2.0,1,27000.0,1009585,1.0,212 -1258011,1630093190,8126037,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,212 -1258012,1630093191,8906621,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,213 -1258013,1630093192,8127462,2,67,-9.0,1,0.0,1,8300.0,1073094,6.0,214 -1258014,1630093193,8416280,2,30,-9.0,2,0.0,1,14700.0,1009585,1.0,213 -1258015,1630093194,8030638,1,63,-9.0,2,3.0,1,184050.0,1009585,1.0,213 -1258016,1630093195,8126037,2,58,-9.0,1,0.0,1,94300.0,1025215,6.0,212 -1258017,1630093196,8126037,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,212 -1258018,1630093197,8030638,2,56,-9.0,1,0.0,1,0.0,1025215,6.0,213 -1258019,1630093198,8424106,2,72,-9.0,1,1.0,1,61000.0,1025215,4.0,214 -1258020,1630093199,8906619,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,214 -1258021,1630093200,8900345,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,213 -1258022,1630093201,8424163,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,213 -1258023,1630093202,8423504,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,213 -1258024,1630093203,8030638,2,46,-9.0,1,2.0,1,75000.0,1042852,6.0,213 -1258025,1630093204,8126287,2,54,-9.0,3,3.0,1,44100.0,1025215,3.0,214 -1258026,1630093205,8030638,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,213 -1258027,1630093206,8126037,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,212 -1258028,1630093207,8424106,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,214 -1258029,1630093208,8424106,2,71,-9.0,2,0.0,1,13500.0,1025215,7.0,214 -1258030,1630093209,8424106,1,49,-9.0,2,2.0,1,58000.0,1042852,1.0,214 -1258031,1630093210,8900311,1,26,-9.0,2,2.0,1,80000.0,1001264,5.0,213 -1258032,1630093211,8424167,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,214 -1258033,1630093212,8125920,2,49,-9.0,2,0.0,1,22650.0,1009585,7.0,214 -1258034,1630093213,8416276,2,71,-9.0,1,2.0,1,19300.0,1001264,4.0,213 -1258035,1630093214,8030653,2,52,-9.0,2,0.0,1,23400.0,1073094,7.0,213 -1258036,1630093215,8416280,2,68,-9.0,2,0.0,1,126000.0,1001264,5.0,213 -1258037,1630093216,8900308,2,46,-9.0,2,1.0,1,15000.0,1042852,3.0,213 -1258038,1630093217,8030653,1,69,-9.0,1,1.0,1,14600.0,1001264,6.0,213 -1258039,1630093218,8424167,2,41,-9.0,2,2.0,1,95000.0,1025215,1.0,214 -1258040,1630093219,8424106,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,214 -1258041,1630093220,8030638,2,68,-9.0,2,0.0,1,53700.0,1025215,3.0,213 -1258042,1630093221,8126287,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,214 -1258043,1630093222,8906621,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,213 -1258044,1630093223,8900345,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,213 -1258045,1630093224,8030638,1,58,-9.0,1,2.0,1,32000.0,1001264,4.0,213 -1258046,1630093225,8900345,1,27,-9.0,3,2.0,1,0.0,1009585,7.0,213 -1258047,1630093226,8424163,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,213 -1258048,1630093227,8126287,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,214 -1258049,1630093228,8424106,3,54,-9.0,1,1.0,1,52000.0,1009585,4.0,214 -1258050,1630093229,8900345,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,213 -1258051,1630093230,8030638,2,64,-9.0,1,2.0,1,36400.0,1001264,6.0,213 -1258052,1630093231,8030653,2,42,-9.0,1,1.0,1,5000.0,1042852,6.0,213 -1258053,1630093232,8424161,2,58,-9.0,1,0.0,1,9680.0,1073094,4.0,213 -1258054,1630093233,8900345,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,213 -1258055,1630093234,8424106,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,214 -1258056,1630093235,8906619,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,214 -1258057,1630093236,8030638,1,55,-9.0,1,1.0,1,92070.0,1009585,6.0,213 -1258058,1630093237,8030638,1,45,-9.0,1,1.0,1,128000.0,1009585,4.0,213 -1258059,1630093238,8900345,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,213 -1258060,1630093239,8424106,1,21,-9.0,1,0.0,1,3320.0,1001264,7.0,214 -1258061,1630093240,8424167,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,214 -1258062,1630093241,8126037,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,212 -1258063,1630093242,8424161,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,213 -1258064,1630093243,8030638,2,61,-9.0,3,0.0,1,7000.0,1073094,5.0,213 -1258065,1630093244,8416276,2,58,-9.0,2,2.0,1,57800.0,1009585,7.0,213 -1258066,1630093245,8126287,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,214 -1258067,1630093246,8424106,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,214 -1258068,1630093247,8030653,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,213 -1258069,1630093248,8030638,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,213 -1258070,1630093249,8900345,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,213 -1258071,1630093250,8416280,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,213 -1258072,1630093251,8424106,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,214 -1258073,1630093252,8424106,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,214 -1258074,1630093253,8423504,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,213 -1258075,1630093254,8127504,1,62,-9.0,2,0.0,1,23900.0,1001264,5.0,214 -1258076,1630093255,8423504,3,27,-9.0,1,1.0,1,55000.0,1025215,6.0,213 -1258077,1630093256,8030638,3,49,-9.0,1,0.0,1,99100.0,1025215,6.0,213 -1258078,1630093257,8900311,2,58,-9.0,3,2.0,1,55200.0,1025215,3.0,213 -1258079,1630093258,8030638,1,52,-9.0,2,3.0,1,85000.0,1001264,5.0,213 -1258080,1630093259,8030638,2,62,-9.0,2,2.0,1,453000.0,1073094,1.0,213 -1258081,1630093260,8900345,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,213 -1258082,1630093261,8900311,1,66,-9.0,2,1.0,1,40191.0,1073094,1.0,213 -1258083,1630093262,8030653,2,74,-9.0,2,1.0,1,42970.0,1042852,3.0,213 -1258084,1630093263,8127462,3,53,-9.0,1,0.0,1,7000.0,1042852,4.0,214 -1258085,1630093264,8126037,3,65,-9.0,1,0.0,1,8040.0,1001264,4.0,212 -1258086,1630093265,8031846,2,60,-9.0,1,2.0,1,36000.0,1073094,6.0,213 -1258087,1630093266,8030638,2,63,-9.0,1,1.0,1,920.0,1001264,6.0,213 -1258088,1630093267,8900345,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,213 -1258089,1630093268,8424163,2,66,-9.0,1,1.0,1,30000.0,1009585,4.0,213 -1258090,1630093269,8030638,1,57,-9.0,1,0.0,1,0.0,1042852,6.0,213 -1258091,1630093270,8127462,2,49,-9.0,1,0.0,1,22000.0,1009585,4.0,214 -1258092,1630093271,8423504,4,26,-9.0,1,0.0,1,28000.0,1001264,5.0,213 -1258093,1630093272,8900308,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,213 -1258094,1630093273,8126287,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,214 -1258095,1630093274,8416280,2,57,-9.0,1,0.0,1,38400.0,1073094,4.0,213 -1258096,1630093275,8030638,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,213 -1258097,1630093276,8030638,2,49,-9.0,2,2.0,1,69000.0,1042852,1.0,213 -1258098,1630093277,8126037,1,60,-9.0,2,2.0,1,9600.0,1001264,1.0,212 -1258099,1630093278,8030653,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,213 -1258100,1630093279,8424163,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,213 -1258101,1630093280,8030653,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,213 -1258102,1630093281,8030653,2,39,-9.0,3,0.0,1,37830.0,1001264,3.0,213 -1258103,1630093282,8126287,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,214 -1258104,1630093283,8424161,2,65,-9.0,1,1.0,1,34200.0,1009585,4.0,213 -1258105,1630093284,8900345,2,59,-9.0,1,2.0,1,20000.0,1001264,4.0,213 -1258106,1630093285,8125920,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,214 -1258107,1630093286,8424106,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,214 -1258108,1630093287,8030638,1,64,-9.0,2,2.0,1,389100.0,1001264,1.0,213 -1258109,1630093288,8900311,1,28,-9.0,2,1.0,1,58000.0,1009585,3.0,213 -1258110,1630093289,8030653,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,213 -1258111,1630093290,8126037,2,23,-9.0,1,1.0,1,1920.0,1073094,6.0,212 -1258112,1630093291,8126037,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,212 -1258113,1630093292,8030653,2,26,-9.0,2,1.0,1,73000.0,1001264,1.0,213 -1258114,1630093293,8424106,2,69,-9.0,2,0.0,1,183100.0,1042852,1.0,214 -1258115,1630093294,8126037,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,212 -1258116,1630093295,8126037,2,27,-9.0,1,1.0,1,30000.0,1009585,6.0,212 -1258117,1630093296,8900311,2,68,-9.0,2,2.0,1,81200.0,1001264,1.0,213 -1258118,1630093297,8030638,2,20,-9.0,1,0.0,1,1100.0,1042852,4.0,213 -1258119,1630093298,8900308,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,213 -1258120,1630093299,8906619,2,58,-9.0,2,0.0,1,90000.0,1001264,1.0,214 -1258121,1630093300,8424163,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,213 -1258122,1630093301,8126037,2,63,-9.0,1,1.0,1,1780.0,1009585,6.0,212 -1258123,1630093302,8126037,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,212 -1258124,1630093303,8030638,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,213 -1258125,1630093304,8424106,1,60,-9.0,1,1.0,1,38000.0,1025215,6.0,214 -1258126,1630093305,8127462,2,60,-9.0,1,1.0,1,36000.0,1042852,4.0,214 -1258127,1630093306,8900311,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,213 -1258128,1630093307,8424106,2,28,-9.0,2,2.0,1,50000.0,1001264,3.0,214 -1258129,1630093308,8906619,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,214 -1258130,1630093309,8900311,2,58,-9.0,2,2.0,1,63200.0,1073094,2.0,213 -1258131,1630093310,8900308,2,46,-9.0,1,2.0,1,31500.0,1009585,6.0,213 -1258132,1630093311,8030638,3,48,-9.0,2,0.0,1,8300.0,1073094,2.0,213 -1258133,1630093312,8423504,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,213 -1258134,1630093313,8424106,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,214 -1258135,1630093314,8423504,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,213 -1258136,1630093315,8906620,2,26,-9.0,2,0.0,1,12200.0,1001264,7.0,213 -1258137,1630093316,8423504,2,69,-9.0,2,1.0,1,77600.0,1025215,1.0,213 -1258138,1630093317,8423504,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,213 -1258139,1630093318,8424106,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,214 -1258140,1630093319,8900311,2,30,-9.0,2,1.0,1,21500.0,1025215,3.0,213 -1258141,1630093320,8423504,2,55,-9.0,2,0.0,1,34150.0,1042852,3.0,213 -1258142,1630093321,8424106,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,214 -1258143,1630093322,8900345,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,213 -1258144,1630093323,8906621,2,35,1.0,2,0.0,1,7400.0,1073094,3.0,213 -1258145,1630093324,8126287,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,214 -1258146,1630093325,8126037,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,212 -1258147,1630093326,8030638,2,58,-9.0,3,2.0,1,157810.0,1009585,1.0,213 -1258148,1630093327,8031846,2,46,-9.0,3,0.0,1,1400.0,1025215,3.0,213 -1258149,1630093328,8030638,2,50,-9.0,1,1.0,1,25000.0,1009585,6.0,213 -1258150,1630093329,8900308,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,213 -1258151,1630093330,8031846,2,47,-9.0,1,0.0,1,47000.0,1001264,4.0,213 -1258152,1630093331,8030638,2,56,-9.0,2,2.0,1,51700.0,1025215,3.0,213 -1258153,1630093332,8906620,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,213 -1258154,1630093333,8127462,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,214 -1258155,1630093334,8900311,2,69,-9.0,2,1.0,1,137000.0,1009585,1.0,213 -1258156,1630093335,8030638,2,64,-9.0,2,2.0,1,44200.0,1025215,3.0,213 -1258157,1630093336,8030638,2,57,-9.0,2,2.0,1,83200.0,1073094,3.0,213 -1258158,1630093337,8030638,2,62,-9.0,1,0.0,1,35000.0,1073094,6.0,213 -1258159,1630093338,8030638,1,56,-9.0,1,2.0,1,67100.0,1009585,1.0,213 -1258160,1630093339,8030638,2,62,-9.0,2,4.0,1,101660.0,1009585,2.0,213 -1258161,1630093340,8030638,2,60,-9.0,1,0.0,1,260400.0,1001264,6.0,213 -1258162,1630093341,8900308,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,213 -1258163,1630093342,8030638,2,52,-9.0,2,2.0,1,76000.0,1009585,1.0,213 -1258164,1630093343,8127462,2,42,1.0,3,0.0,1,0.0,1001264,3.0,214 -1258165,1630093344,8424163,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,213 -1258166,1630093345,8024739,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,198 -1258167,1630093346,8024739,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,198 -1258168,1630093347,8024739,1,28,-9.0,1,1.0,1,105000.0,1073094,4.0,198 -1258169,1630093348,8024739,1,28,-9.0,1,1.0,1,105000.0,1073094,4.0,198 -1258170,1630093349,8024739,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,198 -1258171,1630093350,8024739,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,198 -1258172,1630093351,8900284,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,202 -1258173,1630093352,8024739,1,28,-9.0,1,1.0,1,105000.0,1073094,4.0,198 -1258174,1630093353,8024739,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,198 -1258175,1630093354,8024739,1,28,-9.0,1,1.0,1,116000.0,1009585,4.0,198 -1258176,1630093355,8900284,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,202 -1258177,1630093356,8024739,1,30,-9.0,1,1.0,1,128000.0,1042852,4.0,198 -1258178,1630093357,8024441,2,43,-9.0,2,2.0,1,225300.0,1001264,1.0,198 -1258179,1630093358,8024739,1,33,-9.0,2,2.0,1,165190.0,1001264,1.0,198 -1258180,1630093359,8024739,4,40,-9.0,2,2.0,1,391000.0,1009585,5.0,198 -1258181,1630093360,8024739,4,40,-9.0,2,2.0,1,391000.0,1009585,5.0,198 -1258182,1630093361,8024739,4,40,-9.0,2,2.0,1,391000.0,1009585,5.0,198 -1258183,1630093362,8900284,2,34,-9.0,2,2.0,1,157000.0,1001264,1.0,202 -1258184,1630093363,8024441,4,41,-9.0,2,2.0,1,109100.0,1009585,1.0,198 -1258185,1630093364,8024739,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,198 -1258186,1630093365,8024739,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,198 -1258187,1630093366,8024739,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,198 -1258188,1630093367,8024739,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,198 -1258189,1630093368,8024739,1,36,-9.0,2,2.0,1,214000.0,1009585,1.0,198 -1258190,1630093369,8024739,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,198 -1258191,1630093370,8024441,2,43,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258192,1630093371,8025800,2,40,-9.0,1,1.0,1,56000.0,1073094,6.0,200 -1258193,1630093372,8025800,2,40,-9.0,1,1.0,1,56000.0,1073094,6.0,200 -1258194,1630093373,8024441,2,38,-9.0,1,1.0,1,40000.0,1073094,4.0,198 -1258195,1630093374,8024441,1,30,-9.0,1,1.0,1,58000.0,1001264,4.0,198 -1258196,1630093375,8024739,1,31,-9.0,1,1.0,1,44000.0,1001264,6.0,198 -1258197,1630093376,8024441,1,35,-9.0,1,1.0,1,35000.0,1073094,6.0,198 -1258198,1630093377,8024739,1,31,-9.0,1,1.0,1,44000.0,1001264,6.0,198 -1258199,1630093378,8025800,3,37,-9.0,1,1.0,1,35000.0,1073094,6.0,200 -1258200,1630093379,8025800,3,37,-9.0,1,1.0,1,35000.0,1073094,6.0,200 -1258201,1630093380,8025800,2,41,-9.0,1,2.0,1,40000.0,1025215,6.0,200 -1258202,1630093381,8025800,2,41,-9.0,1,2.0,1,40000.0,1025215,6.0,200 -1258203,1630093382,8024739,2,31,-9.0,1,1.0,1,91000.0,1009585,6.0,198 -1258204,1630093383,8024441,2,35,-9.0,1,1.0,1,60000.0,1025215,6.0,198 -1258205,1630093384,8024441,2,35,-9.0,1,1.0,1,60000.0,1025215,6.0,198 -1258206,1630093385,8024441,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,198 -1258207,1630093386,8024441,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,198 -1258208,1630093387,8024441,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,198 -1258209,1630093388,8024441,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,198 -1258210,1630093389,8024739,1,41,-9.0,1,1.0,1,66000.0,1025215,4.0,198 -1258211,1630093390,8024739,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,198 -1258212,1630093391,8024739,1,41,-9.0,1,1.0,1,66000.0,1025215,4.0,198 -1258213,1630093392,8024441,1,34,-9.0,1,1.0,1,96750.0,1042852,4.0,198 -1258214,1630093393,8024739,1,41,-9.0,1,1.0,1,66000.0,1025215,4.0,198 -1258215,1630093394,8024739,1,41,-9.0,1,1.0,1,66000.0,1025215,4.0,198 -1258216,1630093395,8024739,1,41,-9.0,1,1.0,1,66000.0,1025215,4.0,198 -1258217,1630093396,8024441,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,198 -1258218,1630093397,8024441,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,198 -1258219,1630093398,8024441,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,198 -1258220,1630093399,8024441,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,198 -1258221,1630093400,8024441,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,198 -1258222,1630093401,8024441,2,31,-9.0,2,2.0,1,62900.0,1001264,1.0,198 -1258223,1630093402,8900284,1,28,-9.0,2,2.0,1,89000.0,1073094,5.0,202 -1258224,1630093403,8028806,2,30,-9.0,1,1.0,1,8000.0,1025215,4.0,200 -1258225,1630093404,8024441,1,26,-9.0,1,1.0,1,13000.0,1042852,6.0,198 -1258226,1630093405,8024441,2,42,-9.0,1,2.0,1,8600.0,1009585,4.0,198 -1258227,1630093406,8024441,1,45,-9.0,1,1.0,1,128000.0,1009585,4.0,198 -1258228,1630093407,8900284,1,59,-9.0,1,1.0,1,160000.0,1042852,4.0,202 -1258229,1630093408,8900284,3,59,-9.0,1,1.0,1,131000.0,1042852,4.0,202 -1258230,1630093409,8024441,2,48,-9.0,2,5.0,1,110000.0,1025215,1.0,198 -1258231,1630093410,8024441,2,60,-9.0,2,2.0,1,247000.0,1025215,2.0,198 -1258232,1630093411,8024441,3,52,-9.0,2,2.0,1,120000.0,1025215,1.0,198 -1258233,1630093412,8024441,1,48,-9.0,2,2.0,1,100060.0,1001264,5.0,198 -1258234,1630093413,8024441,2,62,-9.0,1,1.0,1,57000.0,1009585,4.0,198 -1258235,1630093414,8025800,1,64,-9.0,1,1.0,1,42200.0,1025215,4.0,200 -1258236,1630093415,8025800,2,58,-9.0,1,2.0,1,46000.0,1025215,4.0,200 -1258237,1630093416,8025800,2,58,-9.0,1,2.0,1,46000.0,1025215,4.0,200 -1258238,1630093417,8025800,2,63,-9.0,1,1.0,1,38000.0,1042852,4.0,200 -1258239,1630093418,8024441,2,61,-9.0,1,1.0,1,31100.0,1025215,6.0,198 -1258240,1630093419,8024441,2,61,-9.0,1,1.0,1,31100.0,1025215,6.0,198 -1258241,1630093420,8025800,2,63,-9.0,1,1.0,1,68000.0,1009585,4.0,200 -1258242,1630093421,8024441,2,50,-9.0,1,1.0,1,62000.0,1009585,6.0,198 -1258243,1630093422,8024441,2,50,-9.0,1,1.0,1,62000.0,1009585,6.0,198 -1258244,1630093423,8024441,2,57,-9.0,1,1.0,1,98000.0,1001264,6.0,198 -1258245,1630093424,8024441,2,63,-9.0,1,1.0,1,60000.0,1073094,6.0,198 -1258246,1630093425,8024441,2,59,-9.0,1,1.0,1,65000.0,1025215,6.0,198 -1258247,1630093426,8024441,1,57,-9.0,1,1.0,1,80000.0,1025215,6.0,198 -1258248,1630093427,8024441,1,58,-9.0,1,1.0,1,65000.0,1042852,6.0,198 -1258249,1630093428,8024441,2,55,-9.0,1,2.0,1,88000.0,1025215,6.0,198 -1258250,1630093429,8024441,2,46,-9.0,1,2.0,1,75000.0,1042852,6.0,198 -1258251,1630093430,8024441,3,58,-9.0,1,2.0,1,89100.0,1001264,4.0,198 -1258252,1630093431,8024441,3,58,-9.0,1,2.0,1,89100.0,1001264,4.0,198 -1258253,1630093432,8024441,3,58,-9.0,1,2.0,1,89100.0,1001264,4.0,198 -1258254,1630093433,8024441,1,59,-9.0,1,2.0,1,78800.0,1025215,4.0,198 -1258255,1630093434,8024441,2,60,-9.0,1,1.0,1,14300.0,1001264,6.0,198 -1258256,1630093435,8024441,2,52,-9.0,1,1.0,1,7000.0,1025215,4.0,198 -1258257,1630093436,8024739,1,69,-9.0,1,1.0,1,121800.0,1025215,6.0,198 -1258258,1630093437,8024739,2,76,-9.0,1,1.0,1,39700.0,1001264,6.0,198 -1258259,1630093438,8024441,2,65,-9.0,1,1.0,1,38700.0,1009585,6.0,198 -1258260,1630093439,8900284,1,84,-9.0,1,1.0,1,49600.0,1025215,6.0,202 -1258261,1630093440,8024441,2,71,-9.0,1,1.0,1,60000.0,1001264,6.0,198 -1258262,1630093441,8024441,1,77,-9.0,1,1.0,1,62610.0,1009585,4.0,198 -1258263,1630093442,8024739,1,72,-9.0,1,1.0,1,85700.0,1073094,6.0,198 -1258264,1630093443,8025800,2,72,-9.0,1,1.0,1,28200.0,1009585,6.0,200 -1258265,1630093444,8025800,2,70,-9.0,1,1.0,1,22800.0,1042852,6.0,200 -1258266,1630093445,8024739,1,16,1.0,1,1.0,1,32300.0,1009585,4.0,198 -1258267,1630093446,8024739,4,23,-9.0,1,1.0,1,0.0,1025215,6.0,198 -1258268,1630093447,8024739,4,23,-9.0,1,1.0,1,0.0,1025215,6.0,198 -1258269,1630093448,8024613,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,198 -1258270,1630093449,8024613,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,198 -1258271,1630093450,8024613,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,198 -1258272,1630093451,8900284,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,202 -1258273,1630093452,8024739,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,198 -1258274,1630093453,8024739,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,198 -1258275,1630093454,8024739,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,198 -1258276,1630093455,8024441,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,198 -1258277,1630093456,8024441,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,198 -1258278,1630093457,8024441,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,198 -1258279,1630093458,8024441,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,198 -1258280,1630093459,8024613,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,198 -1258281,1630093460,8024613,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,198 -1258282,1630093461,8024739,1,28,-9.0,2,2.0,1,100500.0,1001264,5.0,198 -1258283,1630093462,8024613,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,198 -1258284,1630093463,8024613,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,198 -1258285,1630093464,8024613,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,198 -1258286,1630093465,8024739,3,27,-9.0,2,2.0,1,135000.0,1025215,5.0,198 -1258287,1630093466,8024441,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,198 -1258288,1630093467,8024739,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,198 -1258289,1630093468,8024613,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,198 -1258290,1630093469,8024613,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,198 -1258291,1630093470,8024613,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,198 -1258292,1630093471,8024613,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,198 -1258293,1630093472,8024613,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,198 -1258294,1630093473,8024613,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258295,1630093474,8024613,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,198 -1258296,1630093475,8024613,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258297,1630093476,8024613,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,198 -1258298,1630093477,8024613,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,198 -1258299,1630093478,8024613,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,198 -1258300,1630093479,8024613,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,198 -1258301,1630093480,8024613,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,198 -1258302,1630093481,8024613,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,198 -1258303,1630093482,8024613,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,198 -1258304,1630093483,8024613,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,198 -1258305,1630093484,8024613,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,198 -1258306,1630093485,8024613,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,198 -1258307,1630093486,8024613,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,198 -1258308,1630093487,8024613,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258309,1630093488,8024613,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,198 -1258310,1630093489,8024613,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,198 -1258311,1630093490,8024613,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,198 -1258312,1630093491,8024613,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,198 -1258313,1630093492,8024613,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,198 -1258314,1630093493,8024613,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258315,1630093494,8024739,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,198 -1258316,1630093495,8024613,2,26,-9.0,1,1.0,1,41660.0,1042852,6.0,198 -1258317,1630093496,8024613,2,28,-9.0,1,1.0,1,37000.0,1001264,6.0,198 -1258318,1630093497,8024739,2,34,-9.0,1,1.0,1,36000.0,1042852,6.0,198 -1258319,1630093498,8024739,2,26,-9.0,1,1.0,1,40000.0,1042852,6.0,198 -1258320,1630093499,8024613,2,25,-9.0,1,1.0,1,34000.0,1025215,6.0,198 -1258321,1630093500,8024613,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,198 -1258322,1630093501,8024739,2,34,-9.0,1,1.0,1,30000.0,1073094,6.0,198 -1258323,1630093502,8024739,2,44,-9.0,1,1.0,1,54000.0,1025215,4.0,198 -1258324,1630093503,8024739,2,27,-9.0,1,1.0,1,30000.0,1009585,6.0,198 -1258325,1630093504,8024613,2,26,-9.0,1,1.0,1,41660.0,1042852,6.0,198 -1258326,1630093505,8024613,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,198 -1258327,1630093506,8024739,2,34,-9.0,1,1.0,1,56000.0,1009585,4.0,198 -1258328,1630093507,8024441,2,42,-9.0,1,1.0,1,40000.0,1042852,4.0,198 -1258329,1630093508,8024613,2,29,-9.0,1,1.0,1,50000.0,1001264,6.0,198 -1258330,1630093509,8024739,2,27,-9.0,1,1.0,1,30000.0,1009585,6.0,198 -1258331,1630093510,8024613,2,32,-9.0,1,1.0,1,54000.0,1009585,6.0,198 -1258332,1630093511,8024739,3,27,-9.0,1,1.0,1,55000.0,1025215,6.0,198 -1258333,1630093512,8024613,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,198 -1258334,1630093513,8024613,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,198 -1258335,1630093514,8024739,4,41,-9.0,1,1.0,1,30000.0,1001264,4.0,198 -1258336,1630093515,8024739,4,41,-9.0,1,1.0,1,30000.0,1001264,4.0,198 -1258337,1630093516,8024739,4,41,-9.0,1,1.0,1,30000.0,1001264,4.0,198 -1258338,1630093517,8024613,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,198 -1258339,1630093518,8024613,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,198 -1258340,1630093519,8024613,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,198 -1258341,1630093520,8024613,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,198 -1258342,1630093521,8024739,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,198 -1258343,1630093522,8024739,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,198 -1258344,1630093523,8024739,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,198 -1258345,1630093524,8024739,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,198 -1258346,1630093525,8900284,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,202 -1258347,1630093526,8025800,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,200 -1258348,1630093527,8024739,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,198 -1258349,1630093528,8025800,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,200 -1258350,1630093529,8024613,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,198 -1258351,1630093530,8900284,1,26,-9.0,1,1.0,1,56200.0,1009585,6.0,202 -1258352,1630093531,8024613,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,198 -1258353,1630093532,8024613,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,198 -1258354,1630093533,8024613,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,198 -1258355,1630093534,8024441,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,198 -1258356,1630093535,8024441,1,40,-9.0,1,1.0,1,40000.0,1009585,6.0,198 -1258357,1630093536,8024613,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,198 -1258358,1630093537,8024613,1,31,-9.0,1,1.0,1,48000.0,1001264,6.0,198 -1258359,1630093538,8024613,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,198 -1258360,1630093539,8024613,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,198 -1258361,1630093540,8024739,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,198 -1258362,1630093541,8024739,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,198 -1258363,1630093542,8024441,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,198 -1258364,1630093543,8024441,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,198 -1258365,1630093544,8024739,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,198 -1258366,1630093545,8900284,3,44,-9.0,2,1.0,1,43370.0,1009585,3.0,202 -1258367,1630093546,8024441,2,31,1.0,2,1.0,1,30000.0,1001264,3.0,198 -1258368,1630093547,8024739,4,29,-9.0,2,5.0,1,36800.0,1001264,1.0,198 -1258369,1630093548,8024739,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,198 -1258370,1630093549,8024739,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,198 -1258371,1630093550,8024739,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,198 -1258372,1630093551,8029213,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,200 -1258373,1630093552,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1258374,1630093553,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1258375,1630093554,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1258376,1630093555,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1258377,1630093556,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1258378,1630093557,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1258379,1630093558,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1258380,1630093559,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1258381,1630093560,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1258382,1630093561,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1258383,1630093562,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1258384,1630093563,8024739,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,198 -1258385,1630093564,8024613,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,198 -1258386,1630093565,8024613,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,198 -1258387,1630093566,8024739,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,198 -1258388,1630093567,8024739,2,31,-9.0,1,1.0,1,60000.0,1042852,4.0,198 -1258389,1630093568,8024441,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,198 -1258390,1630093569,8024739,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,198 -1258391,1630093570,8024441,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,198 -1258392,1630093571,8024441,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,198 -1258393,1630093572,8900295,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,203 -1258394,1630093573,8024739,2,31,-9.0,1,1.0,1,60000.0,1042852,4.0,198 -1258395,1630093574,8024441,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,198 -1258396,1630093575,8024613,2,41,-9.0,1,1.0,1,62000.0,1073094,6.0,198 -1258397,1630093576,8024613,2,41,-9.0,1,1.0,1,62000.0,1073094,6.0,198 -1258398,1630093577,8024613,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,198 -1258399,1630093578,8024739,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,198 -1258400,1630093579,8024613,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,198 -1258401,1630093580,8024613,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,198 -1258402,1630093581,8024739,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,198 -1258403,1630093582,8024739,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,198 -1258404,1630093583,8024739,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,198 -1258405,1630093584,8024739,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,198 -1258406,1630093585,8024613,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,198 -1258407,1630093586,8024739,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,198 -1258408,1630093587,8024613,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,198 -1258409,1630093588,8024613,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,198 -1258410,1630093589,8024613,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,198 -1258411,1630093590,8024739,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,198 -1258412,1630093591,8024613,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,198 -1258413,1630093592,8024739,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,198 -1258414,1630093593,8024739,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,198 -1258415,1630093594,8024613,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,198 -1258416,1630093595,8024739,1,36,-9.0,1,1.0,1,75000.0,1001264,6.0,198 -1258417,1630093596,8024739,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,198 -1258418,1630093597,8024739,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,198 -1258419,1630093598,8024613,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,198 -1258420,1630093599,8024613,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,198 -1258421,1630093600,8024613,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,198 -1258422,1630093601,8024613,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,198 -1258423,1630093602,8024613,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,198 -1258424,1630093603,8024613,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,198 -1258425,1630093604,8024739,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,198 -1258426,1630093605,8024739,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,198 -1258427,1630093606,8024613,4,27,-9.0,2,1.0,1,76700.0,1073094,1.0,198 -1258428,1630093607,8024739,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,198 -1258429,1630093608,8024739,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,198 -1258430,1630093609,8024739,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,198 -1258431,1630093610,8024739,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,198 -1258432,1630093611,8024739,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,198 -1258433,1630093612,8024613,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,198 -1258434,1630093613,8024613,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,198 -1258435,1630093614,8024613,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,198 -1258436,1630093615,8024613,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,198 -1258437,1630093616,8024613,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,198 -1258438,1630093617,8024441,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,198 -1258439,1630093618,8024613,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,198 -1258440,1630093619,8024613,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,198 -1258441,1630093620,8025800,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,200 -1258442,1630093621,8024441,2,44,-9.0,1,1.0,1,15300.0,1009585,6.0,198 -1258443,1630093622,8024613,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,198 -1258444,1630093623,8900284,2,43,-9.0,1,1.0,1,12000.0,1009585,4.0,202 -1258445,1630093624,8024441,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,198 -1258446,1630093625,8024441,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,198 -1258447,1630093626,8024739,2,41,-9.0,1,1.0,1,8900.0,1009585,6.0,198 -1258448,1630093627,8900295,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,203 -1258449,1630093628,8024441,2,42,-9.0,1,1.0,1,0.0,1025215,6.0,198 -1258450,1630093629,8024441,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,198 -1258451,1630093630,8024441,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,198 -1258452,1630093631,8024613,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,198 -1258453,1630093632,8024739,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,198 -1258454,1630093633,8024739,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,198 -1258455,1630093634,8025800,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,200 -1258456,1630093635,8024441,2,28,1.0,2,1.0,1,0.0,1001264,3.0,198 -1258457,1630093636,8024739,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,198 -1258458,1630093637,8024739,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,198 -1258459,1630093638,8024613,4,29,-9.0,1,1.0,1,21000.0,1042852,4.0,198 -1258460,1630093639,8024739,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,198 -1258461,1630093640,8024739,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,198 -1258462,1630093641,8024739,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,198 -1258463,1630093642,8024739,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,198 -1258464,1630093643,8024739,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,198 -1258465,1630093644,8024739,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,198 -1258466,1630093645,8900284,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,202 -1258467,1630093646,8024613,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,198 -1258468,1630093647,8024613,2,27,-9.0,1,1.0,1,26000.0,1001264,6.0,198 -1258469,1630093648,8024739,2,29,-9.0,1,1.0,1,9000.0,1009585,4.0,198 -1258470,1630093649,8024613,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,198 -1258471,1630093650,8024613,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,198 -1258472,1630093651,8024613,1,33,-9.0,1,1.0,1,22000.0,1009585,4.0,198 -1258473,1630093652,8024441,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,198 -1258474,1630093653,8024739,1,26,-9.0,1,1.0,1,23000.0,1073094,4.0,198 -1258475,1630093654,8024613,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,198 -1258476,1630093655,8024613,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,198 -1258477,1630093656,8024613,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,198 -1258478,1630093657,8024739,2,36,1.0,2,1.0,1,9600.0,1073094,3.0,198 -1258479,1630093658,8024441,2,58,-9.0,1,1.0,1,109000.0,1073094,6.0,198 -1258480,1630093659,8024739,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,198 -1258481,1630093660,8024739,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,198 -1258482,1630093661,8024441,2,58,-9.0,1,1.0,1,109000.0,1073094,6.0,198 -1258483,1630093662,8024739,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,198 -1258484,1630093663,8024613,2,60,-9.0,1,1.0,1,164000.0,1009585,4.0,198 -1258485,1630093664,8024613,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,198 -1258486,1630093665,8024739,1,59,-9.0,1,1.0,1,318000.0,1073094,4.0,198 -1258487,1630093666,8024613,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,198 -1258488,1630093667,8024613,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,198 -1258489,1630093668,8024613,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,198 -1258490,1630093669,8024613,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,198 -1258491,1630093670,8024613,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,198 -1258492,1630093671,8024739,1,59,-9.0,1,1.0,1,318000.0,1073094,4.0,198 -1258493,1630093672,8024613,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,198 -1258494,1630093673,8024613,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,198 -1258495,1630093674,8024613,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,198 -1258496,1630093675,8024739,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,198 -1258497,1630093676,8024739,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,198 -1258498,1630093677,8024613,2,47,1.0,2,1.0,1,104500.0,1001264,3.0,198 -1258499,1630093678,8024739,2,49,-9.0,2,2.0,1,152000.0,1042852,1.0,198 -1258500,1630093679,8024613,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,198 -1258501,1630093680,8024613,2,64,-9.0,1,1.0,1,32700.0,1042852,4.0,198 -1258502,1630093681,8024613,2,61,-9.0,1,1.0,1,36100.0,1042852,6.0,198 -1258503,1630093682,8024613,2,61,-9.0,1,1.0,1,36100.0,1042852,6.0,198 -1258504,1630093683,8024739,2,64,-9.0,1,1.0,1,50700.0,1025215,4.0,198 -1258505,1630093684,8024739,2,60,-9.0,1,1.0,1,36000.0,1042852,4.0,198 -1258506,1630093685,8024613,2,61,-9.0,1,1.0,1,36100.0,1042852,6.0,198 -1258507,1630093686,8900284,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,202 -1258508,1630093687,8900284,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,202 -1258509,1630093688,8900284,2,64,-9.0,1,2.0,1,36400.0,1001264,6.0,202 -1258510,1630093689,8024613,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258511,1630093690,8024613,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258512,1630093691,8024613,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258513,1630093692,8024613,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258514,1630093693,8024739,2,61,-9.0,1,1.0,1,30300.0,1001264,6.0,198 -1258515,1630093694,8024613,2,59,-9.0,1,1.0,1,32000.0,1042852,4.0,198 -1258516,1630093695,8024739,2,50,-9.0,1,1.0,1,38000.0,1073094,6.0,198 -1258517,1630093696,8900284,2,53,-9.0,1,1.0,1,42000.0,1042852,4.0,202 -1258518,1630093697,8024613,2,60,-9.0,1,1.0,1,49000.0,1042852,6.0,198 -1258519,1630093698,8900284,2,53,-9.0,1,1.0,1,42000.0,1042852,4.0,202 -1258520,1630093699,8024739,2,55,-9.0,1,1.0,1,49900.0,1042852,6.0,198 -1258521,1630093700,8024739,2,61,-9.0,1,1.0,1,30300.0,1001264,6.0,198 -1258522,1630093701,8024613,2,46,-9.0,1,1.0,1,40000.0,1073094,4.0,198 -1258523,1630093702,8024739,2,60,-9.0,1,1.0,1,36000.0,1001264,4.0,198 -1258524,1630093703,8024441,2,60,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258525,1630093704,8024739,2,64,-9.0,1,1.0,1,32000.0,1042852,6.0,198 -1258526,1630093705,8024613,2,54,-9.0,1,1.0,1,49780.0,1025215,6.0,198 -1258527,1630093706,8024739,2,63,-9.0,1,1.0,1,36600.0,1042852,4.0,198 -1258528,1630093707,8024739,2,64,-9.0,1,1.0,1,32000.0,1042852,6.0,198 -1258529,1630093708,8024441,2,46,-9.0,1,1.0,1,30000.0,1042852,4.0,198 -1258530,1630093709,8024739,2,47,-9.0,1,1.0,1,50000.0,1025215,6.0,198 -1258531,1630093710,8024739,2,56,-9.0,1,1.0,1,39000.0,1009585,4.0,198 -1258532,1630093711,8024613,2,54,-9.0,1,1.0,1,38000.0,1073094,6.0,198 -1258533,1630093712,8024739,2,61,-9.0,1,1.0,1,40000.0,1025215,6.0,198 -1258534,1630093713,8024739,2,63,-9.0,1,1.0,1,36600.0,1042852,4.0,198 -1258535,1630093714,8024441,1,63,-9.0,1,1.0,1,36000.0,1025215,6.0,198 -1258536,1630093715,8024613,1,60,-9.0,1,1.0,1,38000.0,1025215,6.0,198 -1258537,1630093716,8024441,1,63,-9.0,1,1.0,1,36000.0,1025215,6.0,198 -1258538,1630093717,8024441,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,198 -1258539,1630093718,8024739,1,64,-9.0,1,1.0,1,59000.0,1073094,4.0,198 -1258540,1630093719,8024613,3,54,-9.0,1,1.0,1,52000.0,1009585,4.0,198 -1258541,1630093720,8024613,3,54,-9.0,1,1.0,1,52000.0,1009585,4.0,198 -1258542,1630093721,8024441,2,46,-9.0,1,2.0,1,31500.0,1009585,6.0,198 -1258543,1630093722,8024613,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,198 -1258544,1630093723,8900284,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,202 -1258545,1630093724,8024441,2,51,-9.0,2,1.0,1,42900.0,1025215,3.0,198 -1258546,1630093725,8024441,2,51,-9.0,1,1.0,1,42900.0,1025215,3.0,198 -1258547,1630093726,8024739,2,60,-9.0,2,2.0,1,40700.0,1001264,1.0,198 -1258548,1630093727,8024441,2,57,-9.0,1,2.0,1,67700.0,1025215,4.0,198 -1258549,1630093728,8024441,2,57,-9.0,1,2.0,1,67700.0,1025215,4.0,198 -1258550,1630093729,8024441,2,57,-9.0,1,2.0,1,67700.0,1025215,4.0,198 -1258551,1630093730,8024441,2,63,-9.0,2,2.0,1,70000.0,1009585,1.0,198 -1258552,1630093731,8024739,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,198 -1258553,1630093732,8024739,2,56,-9.0,1,1.0,1,64900.0,1009585,6.0,198 -1258554,1630093733,8900284,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,202 -1258555,1630093734,8900284,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,202 -1258556,1630093735,8900284,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,202 -1258557,1630093736,8900284,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,202 -1258558,1630093737,8024613,2,61,-9.0,1,1.0,1,66000.0,1009585,4.0,198 -1258559,1630093738,8900284,2,61,-9.0,1,1.0,1,60000.0,1042852,6.0,202 -1258560,1630093739,8024739,2,56,-9.0,1,1.0,1,64900.0,1009585,6.0,198 -1258561,1630093740,8024739,2,62,-9.0,1,1.0,1,82000.0,1009585,4.0,198 -1258562,1630093741,8024613,1,57,-9.0,1,1.0,1,72000.0,1042852,6.0,198 -1258563,1630093742,8024613,1,55,-9.0,1,1.0,1,92000.0,1009585,6.0,198 -1258564,1630093743,8024613,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,198 -1258565,1630093744,8024613,1,55,-9.0,1,1.0,1,92000.0,1009585,6.0,198 -1258566,1630093745,8024613,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,198 -1258567,1630093746,8024613,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,198 -1258568,1630093747,8024613,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,198 -1258569,1630093748,8024613,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,198 -1258570,1630093749,8024441,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,198 -1258571,1630093750,8024441,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,198 -1258572,1630093751,8024441,2,45,-9.0,2,1.0,1,68000.0,1001264,3.0,198 -1258573,1630093752,8024613,2,53,-9.0,2,1.0,1,65000.0,1042852,1.0,198 -1258574,1630093753,8024441,2,50,-9.0,1,0.0,1,0.0,1025215,4.0,198 -1258575,1630093754,8024441,2,60,-9.0,1,0.0,1,5600.0,1025215,4.0,198 -1258576,1630093755,8900295,2,63,-9.0,1,0.0,1,8500.0,1009585,4.0,203 -1258577,1630093756,8024739,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,198 -1258578,1630093757,8024739,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,198 -1258579,1630093758,8025800,2,50,-9.0,1,0.0,1,11200.0,1001264,6.0,200 -1258580,1630093759,8024613,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,198 -1258581,1630093760,8024739,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,198 -1258582,1630093761,8025800,2,45,-9.0,1,1.0,1,20500.0,1042852,4.0,200 -1258583,1630093762,8024739,2,56,-9.0,1,1.0,1,0.0,1025215,6.0,198 -1258584,1630093763,8900284,2,53,-9.0,1,1.0,1,8400.0,1001264,4.0,202 -1258585,1630093764,8900284,2,47,-9.0,1,1.0,1,1800.0,1042852,6.0,202 -1258586,1630093765,8024739,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,198 -1258587,1630093766,8900295,2,53,-9.0,1,1.0,1,16000.0,1025215,6.0,203 -1258588,1630093767,8900284,2,47,-9.0,1,1.0,1,1800.0,1042852,6.0,202 -1258589,1630093768,8900295,2,55,-9.0,1,1.0,1,8500.0,1025215,4.0,203 -1258590,1630093769,8024739,2,61,-9.0,1,1.0,1,19500.0,1025215,4.0,198 -1258591,1630093770,8024739,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,198 -1258592,1630093771,8900295,2,58,-9.0,1,1.0,1,18000.0,1073094,4.0,203 -1258593,1630093772,8900284,2,53,-9.0,1,1.0,1,8400.0,1001264,4.0,202 -1258594,1630093773,8024441,2,52,-9.0,1,1.0,1,0.0,1042852,4.0,198 -1258595,1630093774,8024441,2,61,-9.0,1,1.0,1,13000.0,1009585,6.0,198 -1258596,1630093775,8024441,1,64,-9.0,1,1.0,1,12300.0,1009585,4.0,198 -1258597,1630093776,8024739,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,198 -1258598,1630093777,8900284,2,63,-9.0,2,1.0,1,780.0,1009585,3.0,202 -1258599,1630093778,8024739,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,198 -1258600,1630093779,8024613,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,198 -1258601,1630093780,8024613,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,198 -1258602,1630093781,8024613,4,51,-9.0,1,1.0,1,23000.0,1073094,6.0,198 -1258603,1630093782,8024739,2,54,-9.0,1,1.0,1,17700.0,1001264,6.0,198 -1258604,1630093783,8024441,2,54,-9.0,1,1.0,1,14540.0,1009585,4.0,198 -1258605,1630093784,8024739,2,60,-9.0,1,1.0,1,28000.0,1001264,6.0,198 -1258606,1630093785,8024739,2,60,-9.0,1,1.0,1,28000.0,1001264,6.0,198 -1258607,1630093786,8024441,2,46,-9.0,1,1.0,1,1000.0,1001264,6.0,198 -1258608,1630093787,8025800,2,55,-9.0,1,1.0,1,21900.0,1009585,6.0,200 -1258609,1630093788,8024613,4,50,-9.0,1,1.0,1,27000.0,1009585,6.0,198 -1258610,1630093789,8900295,3,51,-9.0,1,1.0,1,29000.0,1042852,6.0,203 -1258611,1630093790,8024739,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,198 -1258612,1630093791,8025800,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,200 -1258613,1630093792,8024613,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,198 -1258614,1630093793,8024739,2,57,-9.0,2,1.0,1,26100.0,1001264,3.0,198 -1258615,1630093794,8024613,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,198 -1258616,1630093795,8024739,2,73,-9.0,1,1.0,1,128300.0,1001264,6.0,198 -1258617,1630093796,8024613,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,198 -1258618,1630093797,8024613,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,198 -1258619,1630093798,8024613,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,198 -1258620,1630093799,8024613,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,198 -1258621,1630093800,8024613,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,198 -1258622,1630093801,8024739,2,73,-9.0,1,1.0,1,128300.0,1001264,6.0,198 -1258623,1630093802,8024613,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,198 -1258624,1630093803,8024441,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,198 -1258625,1630093804,8024613,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,198 -1258626,1630093805,8024613,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,198 -1258627,1630093806,8024613,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,198 -1258628,1630093807,8024613,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,198 -1258629,1630093808,8024613,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,198 -1258630,1630093809,8024441,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,198 -1258631,1630093810,8024739,2,73,-9.0,1,1.0,1,128300.0,1001264,6.0,198 -1258632,1630093811,8024613,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,198 -1258633,1630093812,8024613,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,198 -1258634,1630093813,8024441,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,198 -1258635,1630093814,8024441,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,198 -1258636,1630093815,8024441,2,69,-9.0,2,1.0,1,137000.0,1009585,1.0,198 -1258637,1630093816,8024441,2,69,-9.0,2,1.0,1,137000.0,1009585,1.0,198 -1258638,1630093817,8024613,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,198 -1258639,1630093818,8024613,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,198 -1258640,1630093819,8024613,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,198 -1258641,1630093820,8024613,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,198 -1258642,1630093821,8024613,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,198 -1258643,1630093822,8024613,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,198 -1258644,1630093823,8024613,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,198 -1258645,1630093824,8024613,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,198 -1258646,1630093825,8024613,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,198 -1258647,1630093826,8024613,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,198 -1258648,1630093827,8024613,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,198 -1258649,1630093828,8024613,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,198 -1258650,1630093829,8024613,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,198 -1258651,1630093830,8024613,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,198 -1258652,1630093831,8024613,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,198 -1258653,1630093832,8024613,2,70,-9.0,2,3.0,1,100000.0,1042852,1.0,198 -1258654,1630093833,8024613,2,70,-9.0,2,3.0,1,100000.0,1042852,1.0,198 -1258655,1630093834,8024613,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,198 -1258656,1630093835,8024613,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,198 -1258657,1630093836,8900295,2,87,-9.0,1,0.0,1,30000.0,1042852,6.0,203 -1258658,1630093837,8024739,2,65,-9.0,1,1.0,1,34200.0,1009585,4.0,198 -1258659,1630093838,8024613,2,74,-9.0,1,1.0,1,45000.0,1025215,6.0,198 -1258660,1630093839,8024613,2,74,-9.0,1,1.0,1,45000.0,1025215,6.0,198 -1258661,1630093840,8024739,2,68,-9.0,1,1.0,1,34800.0,1073094,6.0,198 -1258662,1630093841,8024739,2,66,-9.0,1,1.0,1,37420.0,1073094,4.0,198 -1258663,1630093842,8025800,2,66,-9.0,1,1.0,1,41700.0,1025215,4.0,200 -1258664,1630093843,8025800,2,66,-9.0,1,1.0,1,41700.0,1025215,4.0,200 -1258665,1630093844,8024613,2,74,-9.0,1,1.0,1,45000.0,1025215,6.0,198 -1258666,1630093845,8024613,2,74,-9.0,1,1.0,1,45000.0,1025215,6.0,198 -1258667,1630093846,8024739,2,87,-9.0,1,1.0,1,48000.0,1025215,6.0,198 -1258668,1630093847,8024613,2,76,-9.0,1,1.0,1,34350.0,1001264,6.0,198 -1258669,1630093848,8024739,2,69,-9.0,1,1.0,1,37000.0,1001264,4.0,198 -1258670,1630093849,8024739,2,87,-9.0,1,1.0,1,48000.0,1025215,6.0,198 -1258671,1630093850,8024613,2,74,-9.0,1,1.0,1,45000.0,1025215,6.0,198 -1258672,1630093851,8024739,2,68,-9.0,1,1.0,1,34800.0,1073094,6.0,198 -1258673,1630093852,8024613,2,74,-9.0,1,1.0,1,45000.0,1025215,6.0,198 -1258674,1630093853,8024739,1,66,-9.0,1,1.0,1,49000.0,1025215,4.0,198 -1258675,1630093854,8024613,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,198 -1258676,1630093855,8024613,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,198 -1258677,1630093856,8024613,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,198 -1258678,1630093857,8900295,2,66,-9.0,1,2.0,1,32700.0,1009585,4.0,203 -1258679,1630093858,8900295,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,203 -1258680,1630093859,8900295,2,66,-9.0,1,2.0,1,32700.0,1009585,4.0,203 -1258681,1630093860,8900295,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,203 -1258682,1630093861,8900284,2,74,-9.0,1,1.0,1,42970.0,1042852,3.0,202 -1258683,1630093862,8900284,2,74,-9.0,2,1.0,1,42970.0,1042852,3.0,202 -1258684,1630093863,8024739,2,65,-9.0,1,1.0,1,31900.0,1025215,6.0,198 -1258685,1630093864,8024441,2,66,-9.0,1,1.0,1,32000.0,1001264,4.0,198 -1258686,1630093865,8024441,2,66,-9.0,1,1.0,1,32000.0,1001264,4.0,198 -1258687,1630093866,8024441,2,66,-9.0,1,1.0,1,32000.0,1001264,4.0,198 -1258688,1630093867,8025800,2,75,-9.0,1,1.0,1,49800.0,1042852,6.0,200 -1258689,1630093868,8024739,2,75,-9.0,2,1.0,1,45200.0,1001264,7.0,198 -1258690,1630093869,8029278,1,69,-9.0,2,2.0,1,41280.0,1042852,5.0,200 -1258691,1630093870,8024613,2,72,-9.0,1,1.0,1,61000.0,1025215,4.0,198 -1258692,1630093871,8024613,2,72,-9.0,1,1.0,1,61000.0,1025215,4.0,198 -1258693,1630093872,8024613,2,72,-9.0,1,1.0,1,61000.0,1025215,4.0,198 -1258694,1630093873,8024613,2,72,-9.0,1,1.0,1,61000.0,1025215,4.0,198 -1258695,1630093874,8024739,2,66,-9.0,1,1.0,1,63000.0,1001264,4.0,198 -1258696,1630093875,8024739,2,66,-9.0,1,1.0,1,63000.0,1001264,4.0,198 -1258697,1630093876,8024739,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,198 -1258698,1630093877,8024613,2,69,-9.0,1,1.0,1,70010.0,1001264,6.0,198 -1258699,1630093878,8024613,2,69,-9.0,1,1.0,1,70010.0,1001264,6.0,198 -1258700,1630093879,8024613,2,69,-9.0,1,1.0,1,70010.0,1001264,6.0,198 -1258701,1630093880,8024739,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,198 -1258702,1630093881,8024739,2,66,-9.0,1,1.0,1,63000.0,1001264,4.0,198 -1258703,1630093882,8024613,2,69,-9.0,2,1.0,1,77600.0,1025215,1.0,198 -1258704,1630093883,8024441,2,68,-9.0,2,2.0,1,81200.0,1001264,1.0,198 -1258705,1630093884,8025800,2,83,-9.0,1,0.0,1,9070.0,1009585,6.0,200 -1258706,1630093885,8024739,2,65,-9.0,1,0.0,1,13000.0,1025215,6.0,198 -1258707,1630093886,8025800,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,200 -1258708,1630093887,8024613,2,68,-9.0,1,0.0,1,17360.0,1009585,6.0,198 -1258709,1630093888,8024739,2,72,-9.0,1,0.0,1,11220.0,1009585,6.0,198 -1258710,1630093889,8025800,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,200 -1258711,1630093890,8024739,2,79,-9.0,1,0.0,1,9100.0,1073094,6.0,198 -1258712,1630093891,8025800,2,69,-9.0,1,0.0,1,7200.0,1042852,4.0,200 -1258713,1630093892,8900295,2,88,-9.0,1,0.0,1,11300.0,1025215,6.0,203 -1258714,1630093893,8024739,2,72,-9.0,1,0.0,1,19290.0,1001264,6.0,198 -1258715,1630093894,8024739,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,198 -1258716,1630093895,8024441,2,68,-9.0,1,1.0,1,11600.0,1001264,6.0,198 -1258717,1630093896,8025800,2,83,-9.0,1,1.0,1,21900.0,1042852,4.0,200 -1258718,1630093897,8024613,2,75,-9.0,1,1.0,1,26300.0,1025215,6.0,198 -1258719,1630093898,8024739,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,198 -1258720,1630093899,8024739,2,69,-9.0,1,1.0,1,3100.0,1001264,6.0,198 -1258721,1630093900,8900295,2,69,-9.0,1,1.0,1,10800.0,1042852,6.0,203 -1258722,1630093901,8024441,2,71,-9.0,1,1.0,1,15700.0,1042852,6.0,198 -1258723,1630093902,8024441,2,65,-9.0,1,1.0,1,3300.0,1073094,4.0,198 -1258724,1630093903,8024441,2,65,-9.0,1,1.0,1,3300.0,1073094,4.0,198 -1258725,1630093904,8024739,2,78,-9.0,1,1.0,1,25100.0,1073094,6.0,198 -1258726,1630093905,8025800,2,66,-9.0,1,1.0,1,15300.0,1073094,6.0,200 -1258727,1630093906,8024613,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,198 -1258728,1630093907,8024739,2,69,-9.0,1,1.0,1,3100.0,1001264,6.0,198 -1258729,1630093908,8024441,2,69,-9.0,1,1.0,1,24800.0,1025215,6.0,198 -1258730,1630093909,8024441,2,69,-9.0,1,1.0,1,24800.0,1025215,6.0,198 -1258731,1630093910,8024739,2,69,-9.0,1,1.0,1,3100.0,1001264,6.0,198 -1258732,1630093911,8025800,2,75,-9.0,1,1.0,1,13000.0,1009585,4.0,200 -1258733,1630093912,8024739,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,198 -1258734,1630093913,8024739,2,79,-9.0,1,1.0,1,9300.0,1009585,6.0,198 -1258735,1630093914,8024739,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,198 -1258736,1630093915,8025800,2,77,-9.0,1,1.0,1,9600.0,1009585,6.0,200 -1258737,1630093916,8024739,2,67,-9.0,1,1.0,1,9500.0,1042852,6.0,198 -1258738,1630093917,8025800,2,75,-9.0,1,1.0,1,13000.0,1009585,4.0,200 -1258739,1630093918,8024739,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,198 -1258740,1630093919,8024613,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,198 -1258741,1630093920,8024739,2,76,-9.0,1,1.0,1,23400.0,1025215,4.0,198 -1258742,1630093921,8025800,2,66,-9.0,1,1.0,1,8700.0,1009585,6.0,200 -1258743,1630093922,8024739,2,67,-9.0,1,1.0,1,9500.0,1042852,6.0,198 -1258744,1630093923,8024739,2,69,-9.0,1,1.0,1,21000.0,1001264,6.0,198 -1258745,1630093924,8024613,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,198 -1258746,1630093925,8024739,2,94,-9.0,1,1.0,1,20300.0,1001264,4.0,198 -1258747,1630093926,8025800,2,66,-9.0,1,1.0,1,11000.0,1042852,6.0,200 -1258748,1630093927,8024613,2,87,-9.0,1,1.0,1,26700.0,1042852,4.0,198 -1258749,1630093928,8024613,2,69,-9.0,1,1.0,1,13500.0,1009585,6.0,198 -1258750,1630093929,8025800,2,83,-9.0,1,1.0,1,12600.0,1025215,4.0,200 -1258751,1630093930,8025800,2,81,-9.0,1,1.0,1,9500.0,1009585,6.0,200 -1258752,1630093931,8024441,4,65,-9.0,1,1.0,1,12000.0,1009585,4.0,198 -1258753,1630093932,8024441,3,67,-9.0,1,1.0,1,17800.0,1001264,4.0,198 -1258754,1630093933,8024441,3,67,-9.0,1,1.0,1,17800.0,1001264,4.0,198 -1258755,1630093934,8024441,3,67,-9.0,1,1.0,1,17800.0,1001264,4.0,198 -1258756,1630093935,8900284,1,69,-9.0,1,1.0,1,14600.0,1001264,6.0,202 -1258757,1630093936,8024441,2,71,-9.0,1,2.0,1,19300.0,1001264,4.0,198 -1258758,1630093937,8024441,2,68,-9.0,2,1.0,1,12000.0,1001264,1.0,198 -1258759,1630093938,8024739,2,67,-9.0,1,1.0,1,7200.0,1042852,6.0,198 -1258760,1630093939,8024739,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,198 -1258761,1630093940,8024739,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,198 -1258762,1630093941,8024739,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,198 -1258763,1630093942,8024613,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,198 -1258764,1630093943,8024613,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,198 -1258765,1630093944,8024613,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,198 -1258766,1630093945,8024613,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,198 -1258767,1630093946,8024613,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,198 -1258768,1630093947,8024613,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,198 -1258769,1630093948,8024613,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,198 -1258770,1630093949,8024613,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,198 -1258771,1630093950,8024613,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,198 -1258772,1630093951,8024613,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,198 -1258773,1630093952,8024613,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,198 -1258774,1630093953,8024613,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,198 -1258775,1630093954,8024613,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,198 -1258776,1630093955,8024739,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,198 -1258777,1630093956,8024739,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,198 -1258778,1630093957,8024739,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,198 -1258779,1630093958,8024739,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,198 -1258780,1630093959,8024441,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,198 -1258781,1630093960,8024441,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,198 -1258782,1630093961,8024613,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,198 -1258783,1630093962,8024739,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,198 -1258784,1630093963,8024739,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,198 -1258785,1630093964,8024613,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,198 -1258786,1630093965,8024613,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,198 -1258787,1630093966,8024739,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,198 -1258788,1630093967,8024613,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,198 -1258789,1630093968,8024613,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,198 -1258790,1630093969,8024613,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,198 -1258791,1630093970,8024613,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,198 -1258792,1630093971,8024613,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,198 -1258793,1630093972,8024613,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,198 -1258794,1630093973,8024613,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,198 -1258795,1630093974,8024613,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,198 -1258796,1630093975,8024613,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,198 -1258797,1630093976,8024441,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,198 -1258798,1630093977,8024613,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,198 -1258799,1630093978,8024613,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,198 -1258800,1630093979,8024613,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,198 -1258801,1630093980,8024739,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,198 -1258802,1630093981,8024613,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,198 -1258803,1630093982,8024613,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,198 -1258804,1630093983,8024739,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,198 -1258805,1630093984,8024613,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,198 -1258806,1630093985,8024739,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,198 -1258807,1630093986,8024613,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,198 -1258808,1630093987,8024613,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,198 -1258809,1630093988,8024613,1,24,-9.0,1,2.0,1,400.0,1001264,7.0,198 -1258810,1630093989,8024739,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,198 -1258811,1630093990,8024739,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,198 -1258812,1630093991,8024739,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,198 -1258813,1630093992,8024739,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,198 -1258814,1630093993,8024613,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,198 -1258815,1630093994,8024613,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,198 -1258816,1630093995,8024739,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,198 -1258817,1630093996,8024613,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,198 -1258818,1630093997,8024613,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,198 -1258819,1630093998,8024613,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,198 -1258820,1630093999,8024613,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,198 -1258821,1630094000,8024739,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,198 -1258822,1630094001,8024739,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,198 -1258823,1630094002,8024739,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,198 -1258824,1630094003,8900284,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,202 -1258825,1630094004,8024739,4,40,-9.0,2,2.0,1,391000.0,1009585,5.0,198 -1258826,1630094005,8025800,2,70,-9.0,1,2.0,1,79600.0,1042852,6.0,200 -1258827,1630094006,8024739,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,198 -1258828,1630094007,8024613,2,48,-9.0,1,1.0,1,19200.0,1001264,6.0,198 -1258829,1630094008,8024441,2,41,1.0,3,2.0,1,75300.0,1073094,1.0,198 -1258830,1630094009,8900295,2,75,-9.0,1,0.0,1,45100.0,1042852,6.0,203 -1258831,1630094010,8024613,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,198 -1258832,1630094011,8024613,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,198 -1258833,1630094012,8024441,2,63,-9.0,2,2.0,1,124500.0,1025215,1.0,198 -1258834,1630094013,8024441,3,67,-9.0,1,1.0,1,17800.0,1001264,4.0,198 -1258835,1630094014,8024441,2,71,-9.0,1,1.0,1,115600.0,1073094,6.0,198 -1258836,1630094015,8024739,1,52,-9.0,2,2.0,1,503000.0,1025215,1.0,198 -1258837,1630094016,8024613,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,198 -1258838,1630094017,8024441,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,198 -1258839,1630094018,8900284,3,35,-9.0,1,1.0,1,3600.0,1073094,6.0,202 -1258840,1630094019,8024441,2,57,-9.0,2,2.0,1,75000.0,1001264,2.0,198 -1258841,1630094020,8024441,2,54,-9.0,1,2.0,1,60000.0,1042852,4.0,198 -1258842,1630094021,8024613,1,60,-9.0,1,1.0,1,38000.0,1025215,6.0,198 -1258843,1630094022,8024613,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,198 -1258844,1630094023,8024739,2,73,-9.0,1,1.0,1,14400.0,1073094,3.0,198 -1258845,1630094024,8024441,4,65,-9.0,1,1.0,1,12000.0,1009585,4.0,198 -1258846,1630094025,8024739,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,198 -1258847,1630094026,8024441,2,56,-9.0,1,2.0,1,45000.0,1001264,4.0,198 -1258848,1630094027,8025800,3,69,-9.0,1,0.0,1,51400.0,1001264,4.0,200 -1258849,1630094028,8024441,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,198 -1258850,1630094029,8024441,3,40,1.0,3,2.0,1,180200.0,1042852,5.0,198 -1258851,1630094030,8024441,3,58,-9.0,1,2.0,1,89100.0,1001264,4.0,198 -1258852,1630094031,8900284,2,52,-9.0,2,2.0,1,72500.0,1009585,1.0,202 -1258853,1630094032,8024613,3,23,-9.0,1,1.0,1,21300.0,1009585,6.0,198 -1258854,1630094033,8900284,1,69,-9.0,1,1.0,1,14600.0,1001264,6.0,202 -1258855,1630094034,8024441,2,46,-9.0,1,2.0,1,135800.0,1025215,6.0,198 -1258856,1630094035,8024613,2,23,-9.0,1,1.0,1,1920.0,1073094,6.0,198 -1258857,1630094036,8900284,3,59,-9.0,1,1.0,1,131000.0,1042852,4.0,202 -1258858,1630094037,8024739,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,198 -1258859,1630094038,8900284,2,50,-9.0,1,1.0,1,24000.0,1073094,4.0,202 -1258860,1630094039,8024441,4,63,-9.0,1,1.0,1,31400.0,1001264,6.0,198 -1258861,1630094040,8024441,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,198 -1258862,1630094041,8024441,2,31,-9.0,2,2.0,1,62900.0,1001264,1.0,198 -1258863,1630094042,8024441,1,73,-9.0,1,1.0,1,17300.0,1009585,6.0,198 -1258864,1630094043,8024441,1,59,-9.0,1,2.0,1,78800.0,1025215,4.0,198 -1258865,1630094044,8900284,2,49,-9.0,2,2.0,1,69000.0,1042852,1.0,202 -1258866,1630094045,8024613,2,65,-9.0,1,2.0,1,16000.0,1001264,6.0,198 -1258867,1630094046,8024739,1,29,-9.0,1,2.0,1,49500.0,1042852,5.0,198 -1258868,1630094047,8024739,1,25,-9.0,2,2.0,1,48000.0,1042852,7.0,198 -1258869,1630094048,8024441,4,41,-9.0,2,2.0,1,109100.0,1009585,1.0,198 -1258870,1630094049,8024739,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,198 -1258871,1630094050,8024441,2,65,-9.0,1,1.0,1,22100.0,1025215,6.0,198 -1258872,1630094051,8024441,2,38,1.0,2,1.0,1,42200.0,1001264,3.0,198 -1258873,1630094052,8024441,2,42,1.0,2,2.0,1,72000.0,1042852,3.0,198 -1258874,1630094053,8024739,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,198 -1258875,1630094054,8900295,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,203 -1258876,1630094055,8024441,2,60,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258877,1630094056,8024613,2,30,-9.0,2,1.0,1,98800.0,1073094,5.0,198 -1258878,1630094057,8025800,2,48,-9.0,2,5.0,1,53800.0,1025215,7.0,200 -1258879,1630094058,8024739,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,198 -1258880,1630094059,8024441,1,58,-9.0,1,2.0,1,32000.0,1001264,4.0,198 -1258881,1630094060,8024739,2,64,-9.0,1,1.0,1,8300.0,1073094,5.0,198 -1258882,1630094061,8025800,1,54,-9.0,1,1.0,1,8000.0,1042852,4.0,200 -1258883,1630094062,8024739,2,37,1.0,2,1.0,1,150000.0,1042852,3.0,198 -1258884,1630094063,8900284,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,202 -1258885,1630094064,8025800,2,42,-9.0,1,2.0,1,15000.0,1001264,4.0,200 -1258886,1630094065,8900284,1,48,-9.0,2,2.0,1,62600.0,1042852,7.0,202 -1258887,1630094066,8900284,2,56,-9.0,2,2.0,1,79500.0,1073094,3.0,202 -1258888,1630094067,8024739,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,198 -1258889,1630094068,8024739,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,198 -1258890,1630094069,8900284,1,84,-9.0,1,1.0,1,49600.0,1025215,6.0,202 -1258891,1630094070,8024441,1,58,-9.0,1,1.0,1,65000.0,1042852,6.0,198 -1258892,1630094071,8024739,3,27,-9.0,1,1.0,1,55000.0,1025215,6.0,198 -1258893,1630094072,8024441,2,69,-9.0,2,2.0,1,58200.0,1042852,1.0,198 -1258894,1630094073,8024739,2,66,-9.0,1,1.0,1,63000.0,1001264,4.0,198 -1258895,1630094074,8024441,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,198 -1258896,1630094075,8024441,4,28,-9.0,2,3.0,1,0.0,1025215,5.0,198 -1258897,1630094076,8900284,2,61,-9.0,1,1.0,1,60000.0,1042852,6.0,202 -1258898,1630094077,8024441,2,57,-9.0,2,2.0,1,73200.0,1042852,1.0,198 -1258899,1630094078,8024441,2,52,-9.0,2,2.0,1,76000.0,1009585,1.0,198 -1258900,1630094079,8024613,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,198 -1258901,1630094080,8900284,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,202 -1258902,1630094081,8024613,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,198 -1258903,1630094082,8024441,1,56,-9.0,2,2.0,1,67100.0,1009585,1.0,198 -1258904,1630094083,8900284,2,77,-9.0,2,2.0,1,8400.0,1025215,2.0,202 -1258905,1630094084,8024739,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,198 -1258906,1630094085,8024739,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,198 -1258907,1630094086,8024441,1,59,-9.0,1,1.0,1,356000.0,1025215,6.0,198 -1258908,1630094087,8024441,2,57,-9.0,2,2.0,1,54000.0,1025215,1.0,198 -1258909,1630094088,8900284,2,30,-9.0,2,1.0,1,21500.0,1025215,3.0,202 -1258910,1630094089,8024441,4,74,1.0,3,2.0,1,117900.0,1009585,1.0,198 -1258911,1630094090,8900284,2,73,1.0,3,1.0,1,100500.0,1001264,2.0,202 -1258912,1630094091,8024613,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,198 -1258913,1630094092,8024613,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,198 -1258914,1630094093,8024739,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,198 -1258915,1630094094,8024441,2,59,-9.0,1,0.0,1,31000.0,1042852,6.0,198 -1258916,1630094095,8024739,1,51,-9.0,1,0.0,1,0.0,1042852,6.0,198 -1258917,1630094096,8024441,2,39,-9.0,2,1.0,1,69000.0,1001264,1.0,198 -1258918,1630094097,8024739,2,46,1.0,2,2.0,1,51200.0,1025215,3.0,198 -1258919,1630094098,8024613,2,59,1.0,2,1.0,1,14880.0,1042852,3.0,198 -1258920,1630094099,8024739,2,73,-9.0,1,2.0,1,52800.0,1073094,1.0,198 -1258921,1630094100,8024441,2,26,2.0,3,1.0,1,0.0,1009585,3.0,198 -1258922,1630094101,8900295,1,72,-9.0,1,1.0,1,25520.0,1001264,6.0,203 -1258923,1630094102,8024613,1,54,-9.0,2,2.0,1,390000.0,1009585,1.0,198 -1258924,1630094103,8024441,2,30,-9.0,1,1.0,1,8000.0,1025215,4.0,198 -1258925,1630094104,8024441,1,66,-9.0,1,4.0,1,63400.0,1042852,6.0,198 -1258926,1630094105,8024739,2,47,-9.0,1,1.0,1,106000.0,1001264,6.0,198 -1258927,1630094106,8024441,1,64,-9.0,1,2.0,1,118790.0,1025215,1.0,198 -1258928,1630094107,8025800,2,73,-9.0,1,2.0,1,39600.0,1025215,6.0,200 -1258929,1630094108,8024613,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,198 -1258930,1630094109,8024739,1,33,-9.0,1,2.0,1,165190.0,1001264,1.0,198 -1258931,1630094110,8024441,2,74,-9.0,2,1.0,1,43500.0,1025215,3.0,198 -1258932,1630094111,8024613,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,198 -1258933,1630094112,8025800,2,23,2.0,3,1.0,1,18000.0,1025215,3.0,200 -1258934,1630094113,8024613,2,65,-9.0,1,0.0,1,11000.0,1001264,6.0,198 -1258935,1630094114,8024739,2,22,1.0,2,1.0,1,34000.0,1025215,3.0,198 -1258936,1630094115,8024441,2,28,1.0,2,1.0,1,0.0,1001264,3.0,198 -1258937,1630094116,8900284,2,47,-9.0,2,2.0,1,51600.0,1042852,1.0,202 -1258938,1630094117,8024613,1,55,-9.0,1,1.0,1,92000.0,1009585,6.0,198 -1258939,1630094118,8024441,2,36,1.0,2,1.0,1,70000.0,1025215,2.0,198 -1258940,1630094119,8024441,1,68,-9.0,1,2.0,1,164200.0,1001264,6.0,198 -1258941,1630094120,8024441,4,60,-9.0,1,1.0,1,52000.0,1009585,6.0,198 -1258942,1630094121,8024613,2,28,-9.0,2,2.0,1,50000.0,1001264,3.0,198 -1258943,1630094122,8024739,2,54,-9.0,1,1.0,1,70000.0,1009585,4.0,198 -1258944,1630094123,8024739,2,29,-9.0,1,1.0,1,9000.0,1009585,4.0,198 -1258945,1630094124,8024739,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,198 -1258946,1630094125,8024441,2,59,-9.0,1,2.0,1,54000.0,1009585,6.0,198 -1258947,1630094126,8900284,2,53,-9.0,1,1.0,1,105400.0,1042852,2.0,202 -1258948,1630094127,8024441,2,40,-9.0,1,1.0,1,22000.0,1001264,6.0,198 -1258949,1630094128,8024739,2,64,-9.0,2,1.0,1,97220.0,1001264,1.0,198 -1258950,1630094129,8900295,3,51,-9.0,1,1.0,1,29000.0,1042852,6.0,203 -1258951,1630094130,8024613,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,198 -1258952,1630094131,8024613,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,198 -1258953,1630094132,8024441,2,62,-9.0,1,1.0,1,57000.0,1009585,4.0,198 -1258954,1630094133,8025800,1,60,-9.0,1,1.0,1,640.0,1042852,6.0,200 -1258955,1630094134,8024739,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,198 -1258956,1630094135,8024613,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,198 -1258957,1630094136,8024613,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,198 -1258958,1630094137,8024441,2,43,1.0,2,1.0,1,34800.0,1001264,3.0,198 -1258959,1630094138,8024739,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,198 -1258960,1630094139,8024739,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,198 -1258961,1630094140,8024739,2,31,2.0,3,1.0,1,12000.0,1042852,3.0,198 -1258962,1630094141,8024613,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,198 -1258963,1630094142,8024613,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,198 -1258964,1630094143,8024613,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,198 -1258965,1630094144,8024739,1,28,-9.0,1,1.0,1,116000.0,1009585,4.0,198 -1258966,1630094145,8024441,2,54,-9.0,1,1.0,1,4800.0,1073094,4.0,198 -1258967,1630094146,8024613,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,198 -1258968,1630094147,8024739,2,65,-9.0,2,1.0,1,31700.0,1001264,1.0,198 -1258969,1630094148,8024441,2,69,-9.0,2,2.0,1,118400.0,1009585,1.0,198 -1258970,1630094149,8024441,2,57,-9.0,1,2.0,1,8400.0,1025215,6.0,198 -1258971,1630094150,8024441,2,68,-9.0,2,2.0,1,81200.0,1001264,1.0,198 -1258972,1630094151,8024613,4,50,-9.0,1,1.0,1,27000.0,1009585,6.0,198 -1258973,1630094152,8900284,3,51,-9.0,1,0.0,1,0.0,1009585,6.0,202 -1258974,1630094153,8024739,2,53,-9.0,1,2.0,1,30000.0,1042852,3.0,198 -1258975,1630094154,8024441,2,67,-9.0,1,1.0,1,78000.0,1009585,6.0,198 -1258976,1630094155,8024441,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,198 -1258977,1630094156,8024739,2,31,-9.0,1,1.0,1,91000.0,1009585,6.0,198 -1258978,1630094157,8024441,2,56,-9.0,2,2.0,1,37800.0,1025215,3.0,198 -1258979,1630094158,8024441,2,54,-9.0,2,1.0,1,10800.0,1042852,3.0,198 -1258980,1630094159,8024441,4,75,-9.0,1,1.0,1,28800.0,1025215,6.0,198 -1258981,1630094160,8024613,1,49,-9.0,2,2.0,1,58000.0,1042852,1.0,198 -1258982,1630094161,8024739,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,198 -1258983,1630094162,8900284,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,202 -1258984,1630094163,8900295,2,26,-9.0,2,1.0,1,20000.0,1042852,5.0,203 -1258985,1630094164,8024441,2,50,1.0,2,1.0,1,106700.0,1073094,7.0,198 -1258986,1630094165,8024441,4,40,-9.0,1,1.0,1,0.0,1042852,4.0,198 -1258987,1630094166,8024739,4,62,-9.0,1,0.0,1,18000.0,1042852,4.0,198 -1258988,1630094167,8024441,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,198 -1258989,1630094168,8024441,1,63,-9.0,1,2.0,1,76500.0,1009585,1.0,198 -1258990,1630094169,8024739,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,198 -1258991,1630094170,8025800,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,200 -1258992,1630094171,8024739,2,72,-9.0,1,1.0,1,20000.0,1025215,4.0,198 -1258993,1630094172,8024441,2,34,-9.0,2,1.0,1,141000.0,1025215,1.0,198 -1258994,1630094173,8024739,2,28,-9.0,2,2.0,1,40000.0,1009585,7.0,198 -1258995,1630094174,8024441,1,65,-9.0,2,2.0,1,122700.0,1025215,1.0,198 -1258996,1630094175,8024441,2,65,1.0,2,1.0,1,16000.0,1025215,3.0,198 -1258997,1630094176,8024441,3,77,-9.0,2,2.0,1,39000.0,1001264,1.0,198 -1258998,1630094177,8024613,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,198 -1258999,1630094178,8024739,3,69,-9.0,1,0.0,1,2000.0,1042852,6.0,198 -1259000,1630094179,8024739,1,52,1.0,2,3.0,1,30500.0,1025215,2.0,198 -1259001,1630094180,8024441,2,71,-9.0,1,1.0,1,60000.0,1001264,6.0,198 -1259002,1630094181,8024739,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,198 -1259003,1630094182,8024739,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,198 -1259004,1630094183,8024441,2,72,-9.0,1,0.0,1,10420.0,1009585,3.0,198 -1259005,1630094184,8900284,4,70,-9.0,1,0.0,1,19900.0,1042852,6.0,202 -1259006,1630094185,8024739,2,67,-9.0,1,2.0,1,120000.0,1009585,4.0,198 -1259007,1630094186,8025800,2,64,-9.0,1,1.0,1,3300.0,1025215,4.0,200 -1259008,1630094187,8024739,3,37,1.0,2,1.0,1,16000.0,1042852,3.0,198 -1259009,1630094188,8024441,4,52,-9.0,1,2.0,1,46400.0,1073094,1.0,198 -1259010,1630094189,8024441,2,50,-9.0,2,0.0,1,5100.0,1042852,2.0,198 -1259011,1630094190,8024441,2,44,2.0,3,2.0,1,80000.0,1009585,2.0,198 -1259012,1630094191,8025800,2,44,-9.0,1,0.0,1,9350.0,1025215,6.0,200 -1259013,1630094192,8024613,2,53,-9.0,2,5.0,1,29200.0,1042852,1.0,198 -1259014,1630094193,8024441,2,81,-9.0,2,2.0,1,58600.0,1025215,3.0,198 -1259015,1630094194,8024441,2,63,-9.0,1,1.0,1,49000.0,1001264,6.0,198 -1259016,1630094195,8024441,2,44,2.0,3,2.0,1,30000.0,1042852,3.0,198 -1259017,1630094196,8024739,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,198 -1259018,1630094197,8024739,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,198 -1259019,1630094198,8025800,2,25,1.0,2,1.0,1,45000.0,1073094,3.0,200 -1259020,1630094199,8024441,2,43,-9.0,2,2.0,1,53320.0,1001264,2.0,198 -1259021,1630094200,8024441,2,63,-9.0,1,1.0,1,84800.0,1042852,6.0,198 -1259022,1630094201,8024739,1,55,-9.0,2,1.0,1,15200.0,1001264,7.0,198 -1259023,1630094202,8024739,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,198 -1259024,1630094203,8024613,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,198 -1259025,1630094204,8024441,1,30,-9.0,1,1.0,1,15000.0,1001264,4.0,198 -1259026,1630094205,8024613,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,198 -1259027,1630094206,8024739,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,198 -1259028,1630094207,8024441,2,50,-9.0,3,3.0,1,109000.0,1001264,1.0,198 -1259029,1630094208,8024613,4,52,-9.0,2,2.0,1,70.0,1042852,1.0,198 -1259030,1630094209,8024441,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,198 -1259031,1630094210,8024739,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,198 -1259032,1630094211,8024441,2,78,-9.0,2,3.0,1,213200.0,1001264,1.0,198 -1259033,1630094212,8024613,2,54,-9.0,2,2.0,1,39800.0,1073094,5.0,198 -1259034,1630094213,8024613,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,198 -1259035,1630094214,8024441,1,28,-9.0,2,2.0,1,89000.0,1073094,5.0,198 -1259036,1630094215,8025800,2,43,1.0,2,2.0,1,50400.0,1042852,1.0,200 -1259037,1630094216,8024739,2,57,-9.0,1,1.0,1,33700.0,1009585,3.0,198 -1259038,1630094217,8024739,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,198 -1259039,1630094218,8024441,2,61,-9.0,2,2.0,1,92600.0,1001264,1.0,198 -1259040,1630094219,8024441,2,68,-9.0,1,3.0,1,99900.0,1009585,1.0,198 -1259041,1630094220,8024441,4,83,-9.0,2,2.0,1,75600.0,1073094,2.0,198 -1259042,1630094221,8024441,2,61,-9.0,2,2.0,1,33300.0,1009585,1.0,198 -1259043,1630094222,8025800,2,93,-9.0,1,1.0,1,125100.0,1025215,3.0,200 -1259044,1630094223,8024739,1,29,-9.0,1,2.0,1,60000.0,1009585,1.0,198 -1259045,1630094224,8024613,2,65,-9.0,2,1.0,1,31400.0,1025215,1.0,198 -1259046,1630094225,8025800,2,29,-9.0,2,1.0,1,43100.0,1025215,2.0,200 -1259047,1630094226,8024739,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,198 -1259048,1630094227,8900284,1,66,-9.0,3,1.0,1,40191.0,1073094,1.0,202 -1259049,1630094228,8025800,4,28,1.0,3,1.0,1,20000.0,1001264,1.0,200 -1259050,1630094229,8024613,2,60,-9.0,1,1.0,1,164000.0,1009585,4.0,198 -1259051,1630094230,8024739,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,198 -1259052,1630094231,8024441,2,64,-9.0,1,1.0,1,102000.0,1042852,1.0,198 -1259053,1630094232,8900284,1,42,1.0,3,2.0,1,87000.0,1009585,1.0,202 -1259054,1630094233,8900284,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,202 -1259055,1630094234,8024613,2,42,-9.0,1,0.0,1,27000.0,1025215,6.0,198 -1259056,1630094235,8024613,2,36,-9.0,1,1.0,1,72000.0,1001264,6.0,198 -1259057,1630094236,8024613,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,198 -1259058,1630094237,8024441,1,62,-9.0,2,1.0,1,125200.0,1042852,5.0,198 -1266535,1630101734,8133615,2,63,-9.0,1,0.0,1,28800.0,1042852,6.0,172 -1266536,1630101735,8134159,2,46,1.0,2,1.0,1,2400.0,1025215,3.0,172 -1266537,1630101736,8915361,1,60,1.0,2,1.0,1,28410.0,1042852,3.0,172 -1266538,1630101737,8915385,1,48,1.0,2,0.0,1,8000.0,1025215,3.0,172 -1266539,1630101738,8915376,2,41,1.0,2,1.0,1,50300.0,1025215,3.0,172 -1266540,1630101739,8134529,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,172 -1266541,1630101740,8915374,1,26,-9.0,2,2.0,1,80000.0,1001264,5.0,172 -1266542,1630101741,8134529,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,172 -1266543,1630101742,8915381,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,172 -1266544,1630101743,8134529,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,172 -1266545,1630101744,8915375,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1266546,1630101745,8133615,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,172 -1266547,1630101746,8134529,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,172 -1266548,1630101747,8133979,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,172 -1266549,1630101748,8134529,2,42,-9.0,1,1.0,1,0.0,1073094,4.0,172 -1266550,1630101749,8134529,1,26,-9.0,1,1.0,1,0.0,1073094,6.0,172 -1266551,1630101750,8915372,2,44,1.0,3,0.0,1,8400.0,1025215,2.0,172 -1266552,1630101751,8915371,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,172 -1266553,1630101752,8133615,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,172 -1266554,1630101753,8915369,2,44,1.0,3,0.0,1,8400.0,1025215,2.0,172 -1266555,1630101754,8915386,2,29,2.0,3,0.0,1,8100.0,1042852,3.0,172 -1266556,1630101755,8915374,2,44,1.0,3,0.0,1,8400.0,1025215,2.0,172 -1266557,1630101756,8915374,2,39,2.0,3,0.0,1,9000.0,1025215,3.0,172 -1266558,1630101757,8915382,2,29,2.0,3,0.0,1,8100.0,1042852,3.0,172 -1266559,1630101758,8134529,2,26,2.0,3,0.0,1,11100.0,1009585,3.0,172 -1266560,1630101759,8915362,2,42,1.0,3,0.0,1,0.0,1001264,3.0,172 -1266561,1630101760,8915382,2,44,1.0,3,0.0,1,8400.0,1025215,2.0,172 -1266562,1630101761,8915381,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,172 -1266563,1630101762,8915386,2,29,2.0,3,0.0,1,8100.0,1042852,3.0,172 -1266564,1630101763,8134529,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,172 -1266565,1630101764,8915369,2,44,1.0,3,0.0,1,8400.0,1025215,2.0,172 -1266566,1630101765,8915386,2,39,2.0,3,0.0,1,9000.0,1025215,3.0,172 -1266567,1630101766,8133615,2,26,2.0,3,0.0,1,11100.0,1009585,3.0,172 -1266568,1630101767,8133532,1,32,2.0,3,0.0,1,0.0,1025215,3.0,172 -1266569,1630101768,8915376,1,32,2.0,3,0.0,1,0.0,1025215,3.0,172 -1266570,1630101769,8134757,1,32,2.0,3,0.0,1,0.0,1025215,3.0,172 -1266571,1630101770,8915378,1,32,2.0,3,0.0,1,0.0,1025215,3.0,172 -1266572,1630101771,8915385,1,32,2.0,3,0.0,1,0.0,1025215,3.0,172 -1266573,1630101772,8915383,1,32,2.0,3,0.0,1,0.0,1025215,3.0,172 -1266574,1630101773,8915380,1,32,2.0,3,0.0,1,0.0,1025215,3.0,172 -1266575,1630101774,8915375,2,26,2.0,3,1.0,1,9000.0,1042852,3.0,172 -1266576,1630101775,8915376,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,172 -1266577,1630101776,8134529,2,36,2.0,3,1.0,1,290.0,1042852,3.0,172 -1266578,1630101777,8915383,2,38,1.0,3,1.0,1,16500.0,1073094,1.0,172 -1266579,1630101778,8915367,2,31,1.0,3,1.0,1,8400.0,1073094,2.0,172 -1266580,1630101779,8134529,2,36,2.0,3,1.0,1,290.0,1042852,3.0,172 -1266581,1630101780,8133615,2,36,2.0,3,1.0,1,290.0,1042852,3.0,172 -1266582,1630101781,8915383,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,172 -1266583,1630101782,8915373,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,172 -1266584,1630101783,8133615,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,172 -1266585,1630101784,8134529,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,172 -1266586,1630101785,8134529,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,172 -1266587,1630101786,8915373,2,26,1.0,2,0.0,1,0.0,1001264,3.0,172 -1266588,1630101787,8134529,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,172 -1266589,1630101788,8134529,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,172 -1266590,1630101789,8915362,2,26,1.0,2,0.0,1,3600.0,1025215,3.0,172 -1266591,1630101790,8134529,2,25,1.0,2,0.0,1,4800.0,1042852,3.0,172 -1266592,1630101791,8915365,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,172 -1266593,1630101792,8915384,2,26,1.0,2,0.0,1,0.0,1001264,3.0,172 -1266594,1630101793,8915368,2,26,1.0,2,0.0,1,0.0,1001264,3.0,172 -1266595,1630101794,8134529,2,25,1.0,2,0.0,1,4800.0,1042852,3.0,172 -1266596,1630101795,8915361,2,26,1.0,2,0.0,1,0.0,1001264,3.0,172 -1266597,1630101796,8915363,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,172 -1266598,1630101797,8915367,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,172 -1266599,1630101798,8915380,2,26,1.0,2,0.0,1,0.0,1001264,3.0,172 -1266600,1630101799,8915362,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,172 -1266601,1630101800,8915371,2,26,1.0,2,0.0,1,3600.0,1025215,3.0,172 -1266602,1630101801,8915374,2,26,1.0,2,0.0,1,3600.0,1025215,3.0,172 -1266603,1630101802,8915378,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,172 -1266604,1630101803,8915384,2,26,1.0,2,0.0,1,0.0,1001264,3.0,172 -1266605,1630101804,8915369,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,172 -1266606,1630101805,8915384,2,26,1.0,2,0.0,1,0.0,1001264,3.0,172 -1266607,1630101806,8915370,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,172 -1266608,1630101807,8133615,2,35,1.0,2,0.0,1,7400.0,1073094,3.0,172 -1266609,1630101808,8915365,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,172 -1266610,1630101809,8915372,2,26,1.0,2,0.0,1,3600.0,1025215,3.0,172 -1266611,1630101810,8915371,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,172 -1266612,1630101811,8915371,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,172 -1266613,1630101812,8133615,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,172 -1266614,1630101813,8133555,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,172 -1266615,1630101814,8915366,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,172 -1266616,1630101815,8915386,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,172 -1266617,1630101816,8133615,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,172 -1266618,1630101817,8915364,2,34,1.0,2,1.0,1,8700.0,1009585,3.0,172 -1266619,1630101818,8915366,2,33,1.0,2,1.0,1,17000.0,1073094,3.0,172 -1266620,1630101819,8915385,2,42,1.0,2,1.0,1,2000.0,1073094,3.0,172 -1266621,1630101820,8915379,2,28,1.0,2,1.0,1,13000.0,1073094,3.0,172 -1266622,1630101821,8915370,2,33,1.0,2,1.0,1,17000.0,1073094,3.0,172 -1266623,1630101822,8915363,2,28,1.0,2,1.0,1,13000.0,1073094,3.0,172 -1266624,1630101823,8915376,2,37,1.0,2,1.0,1,4800.0,1042852,3.0,172 -1266625,1630101824,8133615,2,31,1.0,2,1.0,1,22900.0,1042852,2.0,172 -1266626,1630101825,8915367,2,37,1.0,2,1.0,1,7900.0,1025215,3.0,172 -1266627,1630101826,8915377,2,42,1.0,2,1.0,1,2000.0,1073094,3.0,172 -1266628,1630101827,8915365,2,28,1.0,2,1.0,1,13000.0,1073094,3.0,172 -1266629,1630101828,8915376,2,42,1.0,2,1.0,1,2000.0,1073094,3.0,172 -1266630,1630101829,8915368,2,42,1.0,2,1.0,1,2000.0,1073094,3.0,172 -1266631,1630101830,8915373,2,34,1.0,2,1.0,1,8700.0,1009585,3.0,172 -1266632,1630101831,8915377,2,37,1.0,2,1.0,1,7900.0,1025215,3.0,172 -1266633,1630101832,8915375,2,37,1.0,2,1.0,1,7900.0,1025215,3.0,172 -1266634,1630101833,8133615,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,172 -1266635,1630101834,8134529,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,172 -1266636,1630101835,8133615,1,31,-9.0,1,1.0,1,18000.0,1001264,6.0,172 -1266637,1630101836,8915359,2,26,2.0,3,0.0,1,25000.0,1001264,3.0,172 -1266638,1630101837,8915370,2,26,2.0,3,0.0,1,25000.0,1001264,3.0,172 -1266639,1630101838,8915366,2,26,2.0,3,0.0,1,25000.0,1001264,3.0,172 -1266640,1630101839,8915358,2,25,1.0,3,1.0,1,7640.0,1042852,3.0,172 -1266641,1630101840,8915381,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,172 -1266642,1630101841,8915387,2,30,2.0,3,1.0,1,20600.0,1042852,3.0,172 -1266643,1630101842,8134529,2,35,1.0,2,0.0,1,5400.0,1073094,3.0,172 -1266644,1630101843,8134529,2,35,1.0,2,0.0,1,3210.0,1009585,3.0,172 -1266645,1630101844,8915377,2,34,1.0,2,0.0,1,18000.0,1025215,3.0,172 -1266646,1630101845,8134529,2,35,1.0,2,0.0,1,5400.0,1073094,3.0,172 -1266647,1630101846,8133615,2,35,1.0,2,0.0,1,5400.0,1073094,3.0,172 -1266648,1630101847,8134529,2,25,1.0,2,1.0,1,4500.0,1042852,3.0,172 -1266649,1630101848,8915379,2,29,1.0,2,1.0,1,15000.0,1025215,3.0,172 -1266650,1630101849,8134529,2,30,1.0,2,1.0,1,19000.0,1073094,3.0,172 -1266651,1630101850,8915382,2,29,1.0,2,1.0,1,12190.0,1001264,3.0,172 -1266652,1630101851,8134529,2,30,1.0,2,1.0,1,19000.0,1073094,3.0,172 -1266653,1630101852,8915382,2,29,1.0,2,1.0,1,12190.0,1001264,3.0,172 -1266654,1630101853,8133615,2,30,1.0,2,1.0,1,19000.0,1073094,3.0,172 -1266655,1630101854,8915384,2,64,-9.0,1,0.0,1,25800.0,1009585,6.0,172 -1266656,1630101855,8133615,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,172 -1266657,1630101856,8915361,2,54,-9.0,1,0.0,1,7200.0,1042852,6.0,172 -1266658,1630101857,8915364,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,172 -1266659,1630101858,8915367,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,172 -1266660,1630101859,8134529,2,55,-9.0,1,0.0,1,8500.0,1025215,6.0,172 -1266661,1630101860,8134529,2,62,-9.0,1,0.0,1,8570.0,1042852,6.0,172 -1266662,1630101861,8915364,2,64,-9.0,1,0.0,1,27900.0,1042852,6.0,172 -1266663,1630101862,8134529,2,51,-9.0,1,0.0,1,20800.0,1073094,6.0,172 -1266664,1630101863,8134529,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,172 -1266665,1630101864,8915358,2,47,-9.0,1,0.0,1,6900.0,1025215,6.0,172 -1266666,1630101865,8133615,1,62,-9.0,1,0.0,1,10100.0,1001264,6.0,172 -1266667,1630101866,8133615,1,60,-9.0,1,0.0,1,14000.0,1073094,6.0,172 -1266668,1630101867,8915368,2,63,-9.0,1,1.0,1,12000.0,1042852,6.0,172 -1266669,1630101868,8915373,2,48,1.0,3,0.0,1,13600.0,1073094,3.0,172 -1266670,1630101869,8915363,2,48,1.0,3,0.0,1,13600.0,1073094,3.0,172 -1266671,1630101870,8915385,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,172 -1266672,1630101871,8915368,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,172 -1266673,1630101872,8915363,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,172 -1266674,1630101873,8915360,2,61,1.0,2,0.0,1,18500.0,1042852,3.0,172 -1266675,1630101874,8133615,2,51,1.0,2,0.0,1,3100.0,1073094,2.0,172 -1266676,1630101875,8133615,2,52,1.0,2,0.0,1,8500.0,1001264,2.0,172 -1266677,1630101876,8915387,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,172 -1266678,1630101877,8915360,2,61,1.0,2,0.0,1,18500.0,1042852,3.0,172 -1266679,1630101878,8915377,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,172 -1266680,1630101879,8915384,2,50,1.0,2,0.0,1,8100.0,1073094,3.0,172 -1266681,1630101880,8915359,2,61,1.0,2,0.0,1,18500.0,1042852,3.0,172 -1266682,1630101881,8915372,2,61,1.0,2,0.0,1,18500.0,1042852,3.0,172 -1266683,1630101882,8915384,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,172 -1266684,1630101883,8915378,2,46,1.0,2,1.0,1,0.0,1025215,3.0,172 -1266685,1630101884,8915384,2,46,1.0,2,1.0,1,0.0,1025215,3.0,172 -1266686,1630101885,8134529,2,55,-9.0,1,0.0,1,22600.0,1009585,6.0,172 -1266687,1630101886,8134529,2,78,-9.0,1,0.0,1,9100.0,1001264,6.0,172 -1266688,1630101887,8134529,2,66,-9.0,1,0.0,1,17700.0,1025215,6.0,172 -1266689,1630101888,8134529,2,65,-9.0,1,0.0,1,15600.0,1025215,6.0,172 -1266690,1630101889,8915360,2,61,1.0,2,0.0,1,18500.0,1042852,3.0,172 -1266691,1630101890,8915362,2,28,1.0,2,1.0,1,13000.0,1073094,3.0,172 -1266692,1630101891,8915379,2,44,-9.0,1,0.0,1,9350.0,1025215,6.0,172 -1266693,1630101892,8134529,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,172 -1266694,1630101893,8915366,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,172 -1266695,1630101894,8915359,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,172 -1266696,1630101895,8134529,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,172 -1266697,1630101896,8915376,1,42,1.0,3,2.0,1,87000.0,1009585,1.0,172 -1266698,1630101897,8915362,2,44,-9.0,1,1.0,1,15300.0,1009585,6.0,172 -1266699,1630101898,8134529,2,35,1.0,2,0.0,1,3210.0,1009585,3.0,172 -1266700,1630101899,8915378,2,90,-9.0,2,0.0,1,21000.0,1073094,1.0,172 -1266701,1630101900,8915385,1,48,1.0,2,0.0,1,8000.0,1025215,3.0,172 -1266702,1630101901,8915361,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,172 -1266703,1630101902,8133555,2,55,1.0,3,0.0,1,11100.0,1073094,3.0,172 -1266704,1630101903,8915380,2,46,1.0,2,1.0,1,0.0,1025215,3.0,172 -1266705,1630101904,8915364,2,31,1.0,3,1.0,1,8400.0,1073094,2.0,172 -1266706,1630101905,8915360,2,61,-9.0,2,1.0,1,2800.0,1001264,1.0,172 -1266707,1630101906,8134529,2,43,1.0,2,0.0,1,3800.0,1073094,3.0,172 -1266708,1630101907,8915383,2,44,1.0,3,2.0,1,7300.0,1073094,3.0,172 -1266709,1630101908,8134529,1,25,-9.0,2,1.0,1,75000.0,1001264,5.0,172 -1266710,1630101909,8915383,1,49,-9.0,1,0.0,1,8500.0,1025215,6.0,172 -1266711,1630101910,8133615,2,45,1.0,2,0.0,1,20900.0,1009585,3.0,172 -1266712,1630101911,8915361,2,62,1.0,3,1.0,1,15170.0,1042852,1.0,172 -1266713,1630101912,8915373,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,172 -1266714,1630101913,8915368,2,60,-9.0,2,1.0,1,6620.0,1025215,3.0,172 -1266715,1630101914,8134529,2,32,1.0,2,0.0,1,40400.0,1042852,3.0,172 -1266716,1630101915,8915375,2,55,1.0,2,0.0,1,5000.0,1042852,2.0,172 -1266717,1630101916,8915387,2,59,-9.0,1,1.0,1,2300.0,1001264,6.0,172 -1266718,1630101917,8915384,1,28,-9.0,1,1.0,1,500.0,1042852,6.0,172 -1266719,1630101918,8915376,2,79,-9.0,1,1.0,1,9300.0,1009585,6.0,172 -1266720,1630101919,8915378,2,54,-9.0,3,0.0,1,17700.0,1042852,5.0,172 -1266721,1630101920,8915383,2,63,1.0,2,1.0,1,10000.0,1001264,3.0,172 -1266722,1630101921,8134529,2,27,-9.0,1,1.0,1,26000.0,1001264,6.0,172 -1266723,1630101922,8133615,2,58,-9.0,2,0.0,1,7200.0,1042852,5.0,172 -1266724,1630101923,8915365,1,60,1.0,2,1.0,1,28410.0,1042852,3.0,172 -1266725,1630101924,8915364,2,25,1.0,2,1.0,1,45000.0,1073094,3.0,172 -1266726,1630101925,8915378,2,65,1.0,2,0.0,1,10000.0,1073094,3.0,172 -1266727,1630101926,8915380,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,172 -1266728,1630101927,8915359,2,26,1.0,2,1.0,1,7500.0,1009585,3.0,172 -1266729,1630101928,8915380,1,47,1.0,3,2.0,1,82700.0,1042852,1.0,172 -1266730,1630101929,8133615,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,172 -1266731,1630101930,8915375,1,53,-9.0,2,1.0,1,11400.0,1042852,3.0,172 -1266732,1630101931,8134529,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,172 -1266733,1630101932,8134388,2,56,1.0,2,1.0,1,9000.0,1009585,2.0,172 -1266734,1630101933,8915364,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,172 -1266735,1630101934,8133615,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,172 -1266736,1630101935,8915361,2,65,-9.0,1,0.0,1,430.0,1025215,6.0,172 -1266737,1630101936,8915379,2,65,1.0,2,1.0,1,16000.0,1025215,3.0,172 -1266738,1630101937,8134140,2,47,1.0,3,1.0,1,10500.0,1025215,3.0,172 -1266739,1630101938,8134529,1,51,-9.0,1,1.0,1,380.0,1042852,6.0,172 -1266740,1630101939,8915368,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,172 -1266741,1630101940,8915377,2,41,1.0,2,1.0,1,50300.0,1025215,3.0,172 -1266742,1630101941,8134435,1,28,-9.0,1,1.0,1,105000.0,1073094,4.0,171 -1266743,1630101942,8135632,1,28,-9.0,1,1.0,1,116000.0,1009585,4.0,172 -1266744,1630101943,8915383,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,172 -1266745,1630101944,8915373,1,42,-9.0,2,3.0,1,675000.0,1025215,1.0,172 -1266746,1630101945,8915377,1,37,-9.0,2,4.0,1,153000.0,1009585,5.0,172 -1266747,1630101946,8133396,2,44,-9.0,1,0.0,1,4600.0,1009585,4.0,171 -1266748,1630101947,8900602,2,40,-9.0,1,1.0,1,0.0,1009585,4.0,172 -1266749,1630101948,8915358,2,44,-9.0,1,1.0,1,0.0,1009585,6.0,172 -1266750,1630101949,8915387,1,36,-9.0,1,1.0,1,0.0,1042852,4.0,172 -1266751,1630101950,8135000,2,31,-9.0,1,2.0,1,0.0,1073094,6.0,172 -1266752,1630101951,8915377,2,69,-9.0,1,0.0,1,22800.0,1025215,6.0,172 -1266753,1630101952,8915365,2,93,-9.0,1,0.0,1,19100.0,1025215,6.0,172 -1266754,1630101953,8915362,2,84,-9.0,1,1.0,1,16400.0,1001264,6.0,172 -1266755,1630101954,8915367,2,80,-9.0,1,1.0,1,8900.0,1009585,4.0,172 -1266756,1630101955,8136129,2,89,-9.0,1,1.0,1,9900.0,1001264,6.0,171 -1266757,1630101956,8138333,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,171 -1266758,1630101957,8138333,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,171 -1266759,1630101958,8138333,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,171 -1266760,1630101959,8138333,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,171 -1266761,1630101960,8138333,2,32,-9.0,1,1.0,1,48000.0,1025215,6.0,171 -1266762,1630101961,8135359,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,172 -1266763,1630101962,8138333,2,25,-9.0,1,1.0,1,34000.0,1025215,6.0,171 -1266764,1630101963,8135953,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,171 -1266765,1630101964,8136069,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,172 -1266766,1630101965,8134435,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,171 -1266767,1630101966,8135411,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,172 -1266768,1630101967,8133950,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,172 -1266769,1630101968,8138333,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,171 -1266770,1630101969,8138333,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1266771,1630101970,8133950,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,172 -1266772,1630101971,8136009,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1266773,1630101972,8136069,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,172 -1266774,1630101973,8134435,2,42,-9.0,1,0.0,1,4000.0,1073094,4.0,171 -1266775,1630101974,8135411,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,172 -1266776,1630101975,8136009,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,171 -1266777,1630101976,8137415,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,171 -1266778,1630101977,8134263,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,172 -1266779,1630101978,8138333,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1266780,1630101979,8135411,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1266781,1630101980,8137415,2,44,-9.0,1,0.0,1,50.0,1042852,4.0,171 -1266782,1630101981,8138333,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,171 -1266783,1630101982,8137415,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,171 -1266784,1630101983,8136069,2,41,-9.0,1,0.0,1,7350.0,1001264,4.0,172 -1266785,1630101984,8135543,2,27,-9.0,1,0.0,1,1600.0,1001264,6.0,171 -1266786,1630101985,8136069,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,172 -1266787,1630101986,8134435,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,171 -1266788,1630101987,8138333,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,171 -1266789,1630101988,8133539,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,172 -1266790,1630101989,8135543,2,27,-9.0,1,0.0,1,1600.0,1001264,6.0,171 -1266791,1630101990,8138333,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,171 -1266792,1630101991,8136069,2,43,-9.0,1,0.0,1,8700.0,1009585,6.0,172 -1266793,1630101992,8136069,2,40,-9.0,1,0.0,1,6100.0,1042852,6.0,172 -1266794,1630101993,8135543,2,27,-9.0,1,0.0,1,1600.0,1001264,6.0,171 -1266795,1630101994,8138333,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,171 -1266796,1630101995,8138333,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,171 -1266797,1630101996,8138333,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,171 -1266798,1630101997,8134148,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,171 -1266799,1630101998,8134148,2,30,-9.0,1,0.0,1,2400.0,1001264,6.0,171 -1266800,1630101999,8134435,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,171 -1266801,1630102000,8138333,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1266802,1630102001,8137415,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,171 -1266803,1630102002,8134435,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,171 -1266804,1630102003,8138333,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1266805,1630102004,8138333,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1266806,1630102005,8135411,1,27,-9.0,1,0.0,1,0.0,1042852,6.0,172 -1266807,1630102006,8138333,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1266808,1630102007,8900602,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,172 -1266809,1630102008,8135953,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,171 -1266810,1630102009,8135567,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,171 -1266811,1630102010,8136600,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,171 -1266812,1630102011,8135567,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,171 -1266813,1630102012,8134213,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,172 -1266814,1630102013,8138333,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,171 -1266815,1630102014,8138333,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,171 -1266816,1630102015,8138333,2,43,-9.0,1,1.0,1,12000.0,1009585,4.0,171 -1266817,1630102016,8138333,2,42,-9.0,1,1.0,1,0.0,1025215,6.0,171 -1266818,1630102017,8138333,2,43,-9.0,1,1.0,1,12000.0,1009585,4.0,171 -1266819,1630102018,8138333,2,40,-9.0,1,1.0,1,0.0,1001264,4.0,171 -1266820,1630102019,8136069,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,172 -1266821,1630102020,8138333,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,171 -1266822,1630102021,8138333,2,42,-9.0,1,1.0,1,0.0,1025215,6.0,171 -1266823,1630102022,8136009,2,42,-9.0,1,1.0,1,5000.0,1042852,6.0,171 -1266824,1630102023,8135567,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,171 -1266825,1630102024,8138333,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,171 -1266826,1630102025,8135953,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,171 -1266827,1630102026,8138333,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,171 -1266828,1630102027,8138333,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,171 -1266829,1630102028,8138333,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,171 -1266830,1630102029,8138333,2,42,-9.0,1,1.0,1,0.0,1025215,6.0,171 -1266831,1630102030,8138333,2,40,-9.0,1,1.0,1,0.0,1001264,4.0,171 -1266832,1630102031,8136009,2,40,-9.0,1,1.0,1,12000.0,1001264,6.0,171 -1266833,1630102032,8135953,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,171 -1266834,1630102033,8137415,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,171 -1266835,1630102034,8133539,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,172 -1266836,1630102035,8134263,1,26,-9.0,1,1.0,1,0.0,1073094,6.0,172 -1266837,1630102036,8135953,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,171 -1266838,1630102037,8134148,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,171 -1266839,1630102038,8135953,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,171 -1266840,1630102039,8138333,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,171 -1266841,1630102040,8136009,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,171 -1266842,1630102041,8138333,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,171 -1266843,1630102042,8138333,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,171 -1266844,1630102043,8138333,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,171 -1266845,1630102044,8138333,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,171 -1266846,1630102045,8136169,2,40,1.0,2,0.0,1,8300.0,1042852,2.0,171 -1266847,1630102046,8138333,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,171 -1266848,1630102047,8138333,2,30,-9.0,2,1.0,1,21500.0,1025215,3.0,171 -1266849,1630102048,8138333,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,171 -1266850,1630102049,8915367,2,37,1.0,2,1.0,1,7900.0,1025215,3.0,172 -1266851,1630102050,8138333,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,171 -1266852,1630102051,8138333,2,42,-9.0,1,0.0,1,27000.0,1025215,6.0,171 -1266853,1630102052,8135411,2,37,-9.0,1,0.0,1,15000.0,1073094,6.0,172 -1266854,1630102053,8136069,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,172 -1266855,1630102054,8138333,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,171 -1266856,1630102055,8138333,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,171 -1266857,1630102056,8136069,2,41,-9.0,1,0.0,1,14400.0,1025215,4.0,172 -1266858,1630102057,8138333,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,171 -1266859,1630102058,8915363,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,172 -1266860,1630102059,8138333,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,171 -1266861,1630102060,8138333,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,171 -1266862,1630102061,8134435,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,171 -1266863,1630102062,8137415,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,171 -1266864,1630102063,8915380,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,172 -1266865,1630102064,8136069,2,29,-9.0,1,1.0,1,24000.0,1009585,6.0,172 -1266866,1630102065,8138333,2,35,-9.0,1,1.0,1,5600.0,1073094,4.0,171 -1266867,1630102066,8138333,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,171 -1266868,1630102067,8138333,2,35,-9.0,1,1.0,1,5600.0,1073094,4.0,171 -1266869,1630102068,8135000,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,172 -1266870,1630102069,8138333,2,30,-9.0,1,1.0,1,15000.0,1009585,4.0,171 -1266871,1630102070,8138333,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,171 -1266872,1630102071,8138333,2,35,-9.0,1,1.0,1,5600.0,1073094,4.0,171 -1266873,1630102072,8136069,2,29,-9.0,1,1.0,1,24000.0,1009585,6.0,172 -1266874,1630102073,8138333,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,171 -1266875,1630102074,8135953,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,171 -1266876,1630102075,8138333,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,171 -1266877,1630102076,8138333,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,171 -1266878,1630102077,8138333,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,171 -1266879,1630102078,8138333,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,171 -1266880,1630102079,8138333,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,171 -1266881,1630102080,8138333,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,171 -1266882,1630102081,8135953,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,171 -1266883,1630102082,8138333,1,35,-9.0,1,1.0,1,18500.0,1001264,4.0,171 -1266884,1630102083,8135359,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,172 -1266885,1630102084,8138333,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,171 -1266886,1630102085,8133539,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,172 -1266887,1630102086,8136009,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,171 -1266888,1630102087,8138333,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,171 -1266889,1630102088,8135567,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,171 -1266890,1630102089,8137415,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,171 -1266891,1630102090,8134365,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,171 -1266892,1630102091,8134365,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,171 -1266893,1630102092,8915373,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,172 -1266894,1630102093,8134435,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,171 -1266895,1630102094,8138333,2,60,-9.0,1,1.0,1,164000.0,1009585,4.0,171 -1266896,1630102095,8138333,2,60,-9.0,1,1.0,1,164000.0,1009585,4.0,171 -1266897,1630102096,8133950,2,58,-9.0,1,1.0,1,109000.0,1073094,6.0,172 -1266898,1630102097,8135953,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,171 -1266899,1630102098,8138333,1,51,-9.0,1,1.0,1,101000.0,1001264,6.0,171 -1266900,1630102099,8138333,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,171 -1266901,1630102100,8138333,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,171 -1266902,1630102101,8138333,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,171 -1266903,1630102102,8138333,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,171 -1266904,1630102103,8133950,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,172 -1266905,1630102104,8138333,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,171 -1266906,1630102105,8138333,2,60,-9.0,1,1.0,1,36000.0,1042852,4.0,171 -1266907,1630102106,8135953,2,58,-9.0,1,0.0,1,45000.0,1009585,6.0,171 -1266908,1630102107,8138333,2,50,-9.0,1,1.0,1,32000.0,1001264,6.0,171 -1266909,1630102108,8135359,2,50,-9.0,1,1.0,1,50000.0,1073094,4.0,172 -1266910,1630102109,8137415,2,50,-9.0,1,1.0,1,38000.0,1073094,6.0,171 -1266911,1630102110,8135411,2,56,-9.0,1,1.0,1,39000.0,1009585,4.0,172 -1266912,1630102111,8134435,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,171 -1266913,1630102112,8135620,2,50,-9.0,1,0.0,1,8600.0,1042852,6.0,171 -1266914,1630102113,8136600,2,46,-9.0,1,0.0,1,4800.0,1001264,6.0,171 -1266915,1630102114,8138333,2,58,-9.0,1,0.0,1,11000.0,1025215,6.0,171 -1266916,1630102115,8133539,2,58,-9.0,1,0.0,1,8600.0,1073094,6.0,172 -1266917,1630102116,8138333,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,171 -1266918,1630102117,8138333,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1266919,1630102118,8135411,2,50,-9.0,1,0.0,1,8900.0,1009585,6.0,172 -1266920,1630102119,8133539,2,54,-9.0,1,0.0,1,4400.0,1025215,4.0,172 -1266921,1630102120,8133950,2,50,-9.0,1,0.0,1,10900.0,1073094,4.0,172 -1266922,1630102121,8136069,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,172 -1266923,1630102122,8138333,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,171 -1266924,1630102123,8134148,2,51,-9.0,1,0.0,1,20800.0,1073094,6.0,171 -1266925,1630102124,8135632,2,53,-9.0,1,0.0,1,8400.0,1042852,6.0,172 -1266926,1630102125,8138333,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,171 -1266927,1630102126,8136069,2,55,-9.0,1,0.0,1,8500.0,1025215,6.0,172 -1266928,1630102127,8138333,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,171 -1266929,1630102128,8136009,2,50,-9.0,1,0.0,1,8900.0,1009585,6.0,171 -1266930,1630102129,8134365,2,50,-9.0,1,0.0,1,8600.0,1042852,6.0,171 -1266931,1630102130,8137415,2,55,-9.0,1,0.0,1,10800.0,1025215,6.0,171 -1266932,1630102131,8136069,2,54,-9.0,1,0.0,1,10000.0,1001264,4.0,172 -1266933,1630102132,8136169,2,58,-9.0,1,0.0,1,10800.0,1025215,6.0,171 -1266934,1630102133,8137415,2,52,-9.0,1,0.0,1,0.0,1042852,6.0,171 -1266935,1630102134,8138333,2,54,-9.0,1,0.0,1,11100.0,1073094,6.0,171 -1266936,1630102135,8134435,2,61,-9.0,1,0.0,1,11000.0,1042852,4.0,171 -1266937,1630102136,8134435,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,171 -1266938,1630102137,8133539,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,172 -1266939,1630102138,8138333,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,171 -1266940,1630102139,8138333,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,171 -1266941,1630102140,8134435,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,171 -1266942,1630102141,8136169,2,58,-9.0,1,0.0,1,10800.0,1025215,6.0,171 -1266943,1630102142,8135411,2,61,-9.0,1,0.0,1,18000.0,1042852,6.0,172 -1266944,1630102143,8133950,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,172 -1266945,1630102144,8135632,2,51,-9.0,1,0.0,1,20800.0,1073094,6.0,172 -1266946,1630102145,8133950,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,172 -1266947,1630102146,8138333,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,171 -1266948,1630102147,8135411,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,172 -1266949,1630102148,8134213,2,58,-9.0,1,0.0,1,8700.0,1009585,4.0,172 -1266950,1630102149,8136069,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,172 -1266951,1630102150,8135411,2,61,-9.0,1,0.0,1,1600.0,1009585,4.0,172 -1266952,1630102151,8138333,2,54,-9.0,1,0.0,1,8200.0,1009585,4.0,171 -1266953,1630102152,8136069,2,52,-9.0,1,0.0,1,9300.0,1025215,4.0,172 -1266954,1630102153,8138333,2,58,-9.0,1,0.0,1,11000.0,1025215,6.0,171 -1266955,1630102154,8135359,2,45,-9.0,1,0.0,1,16800.0,1009585,4.0,172 -1266956,1630102155,8138333,2,51,-9.0,1,0.0,1,10600.0,1025215,6.0,171 -1266957,1630102156,8134263,2,51,-9.0,1,0.0,1,0.0,1025215,4.0,172 -1266958,1630102157,8135632,2,61,-9.0,1,0.0,1,8000.0,1001264,4.0,172 -1266959,1630102158,8137415,2,58,-9.0,1,0.0,1,9000.0,1042852,4.0,171 -1266960,1630102159,8136231,2,64,-9.0,1,0.0,1,9200.0,1009585,4.0,171 -1266961,1630102160,8138333,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,171 -1266962,1630102161,8133950,2,61,-9.0,1,0.0,1,18000.0,1042852,6.0,172 -1266963,1630102162,8135953,2,54,-9.0,1,0.0,1,4600.0,1025215,6.0,171 -1266964,1630102163,8137415,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1266965,1630102164,8136069,2,50,-9.0,1,0.0,1,6000.0,1073094,4.0,172 -1266966,1630102165,8134365,2,64,-9.0,1,0.0,1,9200.0,1009585,4.0,171 -1266967,1630102166,8134435,2,62,-9.0,1,0.0,1,12300.0,1001264,6.0,171 -1266968,1630102167,8134435,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,171 -1266969,1630102168,8137415,2,58,-9.0,1,0.0,1,16200.0,1025215,4.0,171 -1266970,1630102169,8136169,2,60,-9.0,1,0.0,1,5600.0,1025215,4.0,171 -1266971,1630102170,8138333,2,56,-9.0,1,0.0,1,13200.0,1009585,4.0,171 -1266972,1630102171,8136069,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,172 -1266973,1630102172,8136069,2,46,-9.0,1,0.0,1,0.0,1025215,4.0,172 -1266974,1630102173,8138333,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,171 -1266975,1630102174,8137415,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,171 -1266976,1630102175,8138333,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,171 -1266977,1630102176,8915375,2,54,-9.0,1,0.0,1,7200.0,1042852,6.0,172 -1266978,1630102177,8135620,2,53,-9.0,1,0.0,1,9420.0,1009585,6.0,171 -1266979,1630102178,8134263,2,51,-9.0,1,0.0,1,0.0,1001264,6.0,172 -1266980,1630102179,8136069,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,172 -1266981,1630102180,8134435,2,52,-9.0,1,0.0,1,0.0,1042852,6.0,171 -1266982,1630102181,8138333,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,171 -1266983,1630102182,8137415,2,59,-9.0,1,0.0,1,8100.0,1073094,4.0,171 -1266984,1630102183,8137415,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,171 -1266985,1630102184,8137415,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,171 -1266986,1630102185,8138333,2,61,-9.0,1,0.0,1,28000.0,1009585,6.0,171 -1266987,1630102186,8137415,2,55,-9.0,1,0.0,1,12900.0,1042852,4.0,171 -1266988,1630102187,8135953,2,57,-9.0,1,0.0,1,13900.0,1073094,4.0,171 -1266989,1630102188,8135632,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,172 -1266990,1630102189,8138333,2,53,-9.0,1,0.0,1,0.0,1042852,4.0,171 -1266991,1630102190,8133950,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,172 -1266992,1630102191,8136069,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,172 -1266993,1630102192,8138333,2,58,-9.0,1,0.0,1,4800.0,1042852,4.0,171 -1266994,1630102193,8134435,2,57,-9.0,1,0.0,1,11000.0,1009585,4.0,171 -1266995,1630102194,8137415,2,53,-9.0,1,0.0,1,8800.0,1001264,4.0,171 -1266996,1630102195,8136009,2,58,-9.0,1,0.0,1,12000.0,1042852,4.0,171 -1266997,1630102196,8135359,2,59,-9.0,1,0.0,1,14300.0,1073094,6.0,172 -1266998,1630102197,8135359,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,172 -1266999,1630102198,8137415,2,60,-9.0,1,0.0,1,13200.0,1009585,4.0,171 -1267000,1630102199,8137415,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,171 -1267001,1630102200,8138333,2,45,-9.0,1,0.0,1,0.0,1009585,6.0,171 -1267002,1630102201,8138333,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,171 -1267003,1630102202,8137415,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,171 -1267004,1630102203,8138333,2,58,-9.0,1,0.0,1,4800.0,1042852,4.0,171 -1267005,1630102204,8136069,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267006,1630102205,8135359,2,61,-9.0,1,0.0,1,1600.0,1009585,4.0,172 -1267007,1630102206,8137415,2,54,-9.0,1,0.0,1,3200.0,1042852,4.0,171 -1267008,1630102207,8135953,2,62,-9.0,1,0.0,1,21000.0,1001264,6.0,171 -1267009,1630102208,8138333,2,62,-9.0,1,0.0,1,9600.0,1001264,6.0,171 -1267010,1630102209,8134435,2,46,-9.0,1,0.0,1,0.0,1025215,4.0,171 -1267011,1630102210,8135411,2,50,-9.0,1,0.0,1,8900.0,1009585,6.0,172 -1267012,1630102211,8138333,2,52,-9.0,1,0.0,1,8900.0,1009585,6.0,171 -1267013,1630102212,8134213,2,51,-9.0,1,0.0,1,9100.0,1001264,6.0,172 -1267014,1630102213,8138333,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,171 -1267015,1630102214,8138333,2,61,-9.0,1,0.0,1,28000.0,1009585,6.0,171 -1267016,1630102215,8136069,2,58,-9.0,1,0.0,1,9000.0,1042852,4.0,172 -1267017,1630102216,8136600,2,46,-9.0,1,0.0,1,4800.0,1001264,6.0,171 -1267018,1630102217,8138333,2,52,-9.0,1,0.0,1,8800.0,1001264,6.0,171 -1267019,1630102218,8135359,2,61,-9.0,1,0.0,1,18000.0,1042852,6.0,172 -1267020,1630102219,8134435,2,55,-9.0,1,0.0,1,8500.0,1025215,6.0,171 -1267021,1630102220,8136009,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,171 -1267022,1630102221,8136069,2,58,-9.0,1,0.0,1,8400.0,1042852,4.0,172 -1267023,1630102222,8134435,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,171 -1267024,1630102223,8135359,2,50,-9.0,1,0.0,1,0.0,1025215,4.0,172 -1267025,1630102224,8137415,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,171 -1267026,1630102225,8136069,2,53,-9.0,1,0.0,1,8300.0,1042852,4.0,172 -1267027,1630102226,8138333,2,63,-9.0,1,0.0,1,4200.0,1073094,6.0,171 -1267028,1630102227,8136069,2,55,-9.0,1,0.0,1,0.0,1025215,4.0,172 -1267029,1630102228,8133950,2,50,-9.0,1,0.0,1,10900.0,1073094,4.0,172 -1267030,1630102229,8136169,2,60,-9.0,1,0.0,1,5600.0,1025215,4.0,171 -1267031,1630102230,8137415,2,47,-9.0,1,0.0,1,16300.0,1073094,4.0,171 -1267032,1630102231,8137415,2,63,-9.0,1,0.0,1,0.0,1025215,6.0,171 -1267033,1630102232,8135411,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,172 -1267034,1630102233,8137415,2,64,-9.0,1,0.0,1,9500.0,1025215,6.0,171 -1267035,1630102234,8136069,2,60,-9.0,1,0.0,1,13200.0,1009585,4.0,172 -1267036,1630102235,8135411,2,45,-9.0,1,0.0,1,4400.0,1025215,4.0,172 -1267037,1630102236,8135411,2,54,-9.0,1,0.0,1,8300.0,1042852,4.0,172 -1267038,1630102237,8137415,2,64,-9.0,1,0.0,1,24700.0,1001264,4.0,171 -1267039,1630102238,8133950,2,45,-9.0,1,0.0,1,16800.0,1009585,4.0,172 -1267040,1630102239,8136069,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,172 -1267041,1630102240,8138333,2,58,-9.0,1,0.0,1,0.0,1025215,4.0,171 -1267042,1630102241,8138333,2,58,-9.0,1,0.0,1,11000.0,1025215,6.0,171 -1267043,1630102242,8138333,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1267044,1630102243,8135359,2,54,-9.0,1,0.0,1,8400.0,1042852,4.0,172 -1267045,1630102244,8137415,2,53,-9.0,1,0.0,1,8300.0,1042852,4.0,171 -1267046,1630102245,8138333,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,171 -1267047,1630102246,8134435,2,64,-9.0,1,0.0,1,9500.0,1025215,6.0,171 -1267048,1630102247,8136345,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,171 -1267049,1630102248,8136069,2,55,-9.0,1,0.0,1,10800.0,1025215,6.0,172 -1267050,1630102249,8136069,2,53,-9.0,1,0.0,1,8300.0,1042852,4.0,172 -1267051,1630102250,8136069,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,172 -1267052,1630102251,8136069,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,172 -1267053,1630102252,8134435,2,58,-9.0,1,0.0,1,9700.0,1009585,4.0,171 -1267054,1630102253,8133539,2,56,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267055,1630102254,8138333,2,64,-9.0,1,0.0,1,0.0,1009585,4.0,171 -1267056,1630102255,8138333,2,53,-9.0,1,0.0,1,0.0,1042852,4.0,171 -1267057,1630102256,8137415,2,64,-9.0,1,0.0,1,4610.0,1025215,6.0,171 -1267058,1630102257,8134435,2,62,-9.0,1,0.0,1,8100.0,1073094,6.0,171 -1267059,1630102258,8134263,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,172 -1267060,1630102259,8136069,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,172 -1267061,1630102260,8134435,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,171 -1267062,1630102261,8138333,2,58,-9.0,1,0.0,1,4800.0,1042852,4.0,171 -1267063,1630102262,8134435,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,171 -1267064,1630102263,8136009,2,49,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1267065,1630102264,8136009,2,45,-9.0,1,0.0,1,16800.0,1009585,4.0,171 -1267066,1630102265,8136069,2,51,-9.0,1,0.0,1,8900.0,1009585,4.0,172 -1267067,1630102266,8135953,2,62,-9.0,1,0.0,1,21000.0,1001264,6.0,171 -1267068,1630102267,8138333,2,58,-9.0,1,0.0,1,0.0,1025215,4.0,171 -1267069,1630102268,8134435,2,56,-9.0,1,0.0,1,8750.0,1001264,4.0,171 -1267070,1630102269,8136600,2,60,-9.0,1,0.0,1,5600.0,1025215,4.0,171 -1267071,1630102270,8138333,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,171 -1267072,1630102271,8138333,2,54,-9.0,1,0.0,1,11100.0,1073094,6.0,171 -1267073,1630102272,8915385,2,54,-9.0,1,0.0,1,7200.0,1042852,6.0,172 -1267074,1630102273,8138333,2,48,-9.0,1,0.0,1,12200.0,1009585,6.0,171 -1267075,1630102274,8135632,2,58,-9.0,1,0.0,1,8700.0,1009585,4.0,172 -1267076,1630102275,8137415,2,62,-9.0,1,0.0,1,8570.0,1042852,6.0,171 -1267077,1630102276,8137415,2,55,-9.0,1,0.0,1,0.0,1025215,4.0,171 -1267078,1630102277,8138333,2,52,-9.0,1,0.0,1,8800.0,1001264,6.0,171 -1267079,1630102278,8134435,2,56,-9.0,1,0.0,1,8750.0,1001264,4.0,171 -1267080,1630102279,8138333,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,171 -1267081,1630102280,8138333,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,171 -1267082,1630102281,8138333,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,171 -1267083,1630102282,8136600,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,171 -1267084,1630102283,8138333,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,171 -1267085,1630102284,8134435,2,62,-9.0,1,0.0,1,1800.0,1001264,4.0,171 -1267086,1630102285,8136069,2,58,-9.0,1,0.0,1,9700.0,1009585,4.0,172 -1267087,1630102286,8137415,2,53,-9.0,1,0.0,1,8800.0,1001264,4.0,171 -1267088,1630102287,8138333,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1267089,1630102288,8136009,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,171 -1267090,1630102289,8136231,2,50,-9.0,1,0.0,1,11200.0,1001264,6.0,171 -1267091,1630102290,8138333,2,56,-9.0,1,0.0,1,2440.0,1001264,6.0,171 -1267092,1630102291,8136600,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,171 -1267093,1630102292,8134435,2,59,-9.0,1,0.0,1,9800.0,1009585,6.0,171 -1267094,1630102293,8133950,2,58,-9.0,1,0.0,1,8500.0,1025215,4.0,172 -1267095,1630102294,8134263,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,172 -1267096,1630102295,8135411,2,61,-9.0,1,0.0,1,0.0,1073094,4.0,172 -1267097,1630102296,8138333,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,171 -1267098,1630102297,8133539,2,53,-9.0,1,0.0,1,26030.0,1042852,4.0,172 -1267099,1630102298,8137415,2,63,-9.0,1,0.0,1,6000.0,1073094,4.0,171 -1267100,1630102299,8135359,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,172 -1267101,1630102300,8136069,2,57,-9.0,1,0.0,1,8100.0,1073094,4.0,172 -1267102,1630102301,8135411,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,172 -1267103,1630102302,8134435,2,64,-9.0,1,0.0,1,12600.0,1001264,4.0,171 -1267104,1630102303,8137415,2,50,-9.0,1,0.0,1,6000.0,1073094,4.0,171 -1267105,1630102304,8135359,2,61,-9.0,1,0.0,1,1600.0,1009585,4.0,172 -1267106,1630102305,8138333,2,63,-9.0,1,0.0,1,4200.0,1073094,6.0,171 -1267107,1630102306,8135632,2,58,-9.0,1,0.0,1,8700.0,1009585,4.0,172 -1267108,1630102307,8135953,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,171 -1267109,1630102308,8133539,2,61,-9.0,1,0.0,1,8000.0,1001264,4.0,172 -1267110,1630102309,8134435,2,63,-9.0,1,0.0,1,6000.0,1073094,4.0,171 -1267111,1630102310,8135411,2,56,-9.0,1,0.0,1,8500.0,1009585,4.0,172 -1267112,1630102311,8133950,2,61,-9.0,1,0.0,1,18000.0,1042852,6.0,172 -1267113,1630102312,8138333,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,171 -1267114,1630102313,8137415,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,171 -1267115,1630102314,8136069,2,47,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267116,1630102315,8138333,2,52,-9.0,1,0.0,1,8900.0,1009585,6.0,171 -1267117,1630102316,8136009,2,63,-9.0,1,0.0,1,8500.0,1025215,6.0,171 -1267118,1630102317,8137415,2,62,-9.0,1,0.0,1,12300.0,1001264,6.0,171 -1267119,1630102318,8133539,2,51,-9.0,1,0.0,1,20800.0,1073094,6.0,172 -1267120,1630102319,8136069,2,51,-9.0,1,0.0,1,8900.0,1009585,4.0,172 -1267121,1630102320,8135411,2,58,-9.0,1,0.0,1,8700.0,1009585,6.0,172 -1267122,1630102321,8137415,2,57,-9.0,1,0.0,1,11000.0,1009585,4.0,171 -1267123,1630102322,8138333,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,171 -1267124,1630102323,8136345,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,171 -1267125,1630102324,8134435,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,171 -1267126,1630102325,8138333,2,53,-9.0,1,0.0,1,0.0,1042852,4.0,171 -1267127,1630102326,8138333,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,171 -1267128,1630102327,8135411,2,54,-9.0,1,0.0,1,8400.0,1042852,4.0,172 -1267129,1630102328,8134435,2,46,-9.0,1,0.0,1,0.0,1025215,4.0,171 -1267130,1630102329,8136009,2,45,-9.0,1,0.0,1,4400.0,1025215,4.0,171 -1267131,1630102330,8134213,2,58,-9.0,1,0.0,1,8400.0,1025215,4.0,172 -1267132,1630102331,8136009,2,59,-9.0,1,0.0,1,14300.0,1073094,6.0,171 -1267133,1630102332,8136069,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,172 -1267134,1630102333,8136069,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,172 -1267135,1630102334,8137415,2,56,-9.0,1,0.0,1,8750.0,1001264,4.0,171 -1267136,1630102335,8134213,2,56,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267137,1630102336,8135953,2,62,-9.0,1,0.0,1,21000.0,1001264,6.0,171 -1267138,1630102337,8138333,2,56,-9.0,1,0.0,1,2440.0,1001264,6.0,171 -1267139,1630102338,8136069,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,172 -1267140,1630102339,8135620,2,64,-9.0,1,0.0,1,9200.0,1009585,4.0,171 -1267141,1630102340,8138333,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,171 -1267142,1630102341,8135359,2,45,-9.0,1,0.0,1,16800.0,1009585,4.0,172 -1267143,1630102342,8137415,2,64,-9.0,1,0.0,1,12600.0,1001264,4.0,171 -1267144,1630102343,8133950,2,54,-9.0,1,0.0,1,8400.0,1042852,4.0,172 -1267145,1630102344,8137415,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,171 -1267146,1630102345,8135359,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,172 -1267147,1630102346,8135359,2,54,-9.0,1,0.0,1,8400.0,1042852,4.0,172 -1267148,1630102347,8133539,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,172 -1267149,1630102348,8136069,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,172 -1267150,1630102349,8134148,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,171 -1267151,1630102350,8134435,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,171 -1267152,1630102351,8135632,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,172 -1267153,1630102352,8137415,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,171 -1267154,1630102353,8137415,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,171 -1267155,1630102354,8135632,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,172 -1267156,1630102355,8134148,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,171 -1267157,1630102356,8137415,1,45,-9.0,1,0.0,1,13050.0,1042852,4.0,171 -1267158,1630102357,8137415,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1267159,1630102358,8134213,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,172 -1267160,1630102359,8134435,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,171 -1267161,1630102360,8137415,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1267162,1630102361,8134213,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,172 -1267163,1630102362,8135359,2,57,-9.0,1,1.0,1,12200.0,1001264,4.0,172 -1267164,1630102363,8134213,2,58,-9.0,1,1.0,1,11000.0,1025215,4.0,172 -1267165,1630102364,8135620,2,56,-9.0,1,1.0,1,0.0,1025215,6.0,171 -1267166,1630102365,8138333,2,53,-9.0,1,1.0,1,8400.0,1001264,4.0,171 -1267167,1630102366,8138333,2,53,-9.0,1,1.0,1,8400.0,1001264,4.0,171 -1267168,1630102367,8136009,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,171 -1267169,1630102368,8135632,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,172 -1267170,1630102369,8135411,2,58,-9.0,1,1.0,1,7200.0,1001264,6.0,172 -1267171,1630102370,8138333,2,47,-9.0,1,1.0,1,2400.0,1042852,6.0,171 -1267172,1630102371,8134148,2,58,-9.0,1,1.0,1,18000.0,1073094,4.0,171 -1267173,1630102372,8137415,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,171 -1267174,1630102373,8135359,2,47,-9.0,1,1.0,1,8400.0,1009585,6.0,172 -1267175,1630102374,8134213,2,58,-9.0,1,1.0,1,11000.0,1025215,4.0,172 -1267176,1630102375,8134213,2,58,-9.0,1,1.0,1,18000.0,1073094,4.0,172 -1267177,1630102376,8138333,2,62,-9.0,1,1.0,1,7000.0,1001264,4.0,171 -1267178,1630102377,8138333,2,53,-9.0,1,1.0,1,8400.0,1001264,4.0,171 -1267179,1630102378,8138333,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,171 -1267180,1630102379,8135411,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,172 -1267181,1630102380,8138333,2,52,-9.0,1,1.0,1,0.0,1042852,4.0,171 -1267182,1630102381,8138333,2,62,-9.0,1,1.0,1,0.0,1042852,4.0,171 -1267183,1630102382,8136231,2,56,-9.0,1,1.0,1,0.0,1025215,6.0,171 -1267184,1630102383,8135359,2,63,-9.0,1,1.0,1,8400.0,1001264,4.0,172 -1267185,1630102384,8134148,2,63,-9.0,1,1.0,1,12000.0,1042852,6.0,171 -1267186,1630102385,8138333,2,45,-9.0,1,1.0,1,20500.0,1042852,4.0,171 -1267187,1630102386,8134213,2,58,-9.0,1,1.0,1,11000.0,1025215,4.0,172 -1267188,1630102387,8138333,2,47,-9.0,1,1.0,1,2400.0,1042852,6.0,171 -1267189,1630102388,8138333,2,53,-9.0,1,1.0,1,8400.0,1001264,4.0,171 -1267190,1630102389,8135359,2,58,-9.0,1,1.0,1,25600.0,1073094,6.0,172 -1267191,1630102390,8134435,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,171 -1267192,1630102391,8135411,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,172 -1267193,1630102392,8134148,2,49,-9.0,1,1.0,1,3700.0,1073094,6.0,171 -1267194,1630102393,8135359,2,61,-9.0,1,1.0,1,19500.0,1025215,4.0,172 -1267195,1630102394,8135411,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,172 -1267196,1630102395,8138333,2,53,-9.0,1,1.0,1,13200.0,1025215,4.0,171 -1267197,1630102396,8138333,2,51,-9.0,1,1.0,1,1000.0,1009585,4.0,171 -1267198,1630102397,8138333,2,63,-9.0,1,1.0,1,1780.0,1009585,6.0,171 -1267199,1630102398,8134148,2,58,-9.0,1,1.0,1,18000.0,1073094,4.0,171 -1267200,1630102399,8135953,2,62,-9.0,1,1.0,1,26000.0,1073094,6.0,171 -1267201,1630102400,8135411,2,61,-9.0,1,1.0,1,19500.0,1025215,4.0,172 -1267202,1630102401,8134263,2,46,-9.0,1,1.0,1,0.0,1073094,6.0,172 -1267203,1630102402,8138333,2,63,-9.0,1,1.0,1,17100.0,1001264,6.0,171 -1267204,1630102403,8133950,2,63,-9.0,1,1.0,1,8400.0,1001264,4.0,172 -1267205,1630102404,8136009,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,171 -1267206,1630102405,8136231,2,56,-9.0,1,1.0,1,0.0,1025215,6.0,171 -1267207,1630102406,8138333,2,53,-9.0,1,1.0,1,8400.0,1001264,4.0,171 -1267208,1630102407,8135411,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,172 -1267209,1630102408,8134213,2,63,-9.0,1,1.0,1,12000.0,1042852,6.0,172 -1267210,1630102409,8138333,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,171 -1267211,1630102410,8134213,2,58,-9.0,1,1.0,1,11000.0,1025215,4.0,172 -1267212,1630102411,8138333,2,53,-9.0,1,1.0,1,22600.0,1001264,4.0,171 -1267213,1630102412,8138333,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,171 -1267214,1630102413,8138333,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,171 -1267215,1630102414,8138333,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,171 -1267216,1630102415,8138333,2,57,-9.0,1,2.0,1,8400.0,1025215,6.0,171 -1267217,1630102416,8138333,2,46,-9.0,1,3.0,1,0.0,1073094,4.0,171 -1267218,1630102417,8134148,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,171 -1267219,1630102418,8135359,2,61,-9.0,3,0.0,1,7000.0,1073094,5.0,172 -1267220,1630102419,8136069,2,61,-9.0,2,0.0,1,23800.0,1073094,2.0,172 -1267221,1630102420,8138333,2,62,-9.0,2,0.0,1,16800.0,1042852,1.0,171 -1267222,1630102421,8138333,2,54,-9.0,2,0.0,1,13640.0,1001264,7.0,171 -1267223,1630102422,8135411,2,61,-9.0,2,0.0,1,10800.0,1025215,2.0,172 -1267224,1630102423,8135411,2,60,-9.0,2,0.0,1,13400.0,1042852,5.0,172 -1267225,1630102424,8134435,2,64,-9.0,2,0.0,1,20400.0,1042852,7.0,171 -1267226,1630102425,8134435,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,171 -1267227,1630102426,8137415,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,171 -1267228,1630102427,8138333,2,61,-9.0,2,0.0,1,12700.0,1042852,1.0,171 -1267229,1630102428,8135359,2,60,-9.0,2,0.0,1,13400.0,1042852,5.0,172 -1267230,1630102429,8136069,2,61,-9.0,2,0.0,1,23800.0,1073094,2.0,172 -1267231,1630102430,8138333,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,171 -1267232,1630102431,8136069,2,59,-9.0,2,0.0,1,18300.0,1001264,7.0,172 -1267233,1630102432,8138333,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,171 -1267234,1630102433,8133950,2,54,-9.0,2,0.0,1,11800.0,1001264,3.0,172 -1267235,1630102434,8137415,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,171 -1267236,1630102435,8136069,2,61,-9.0,2,0.0,1,23800.0,1073094,2.0,172 -1267237,1630102436,8134435,2,57,-9.0,2,0.0,1,9000.0,1042852,5.0,171 -1267238,1630102437,8137415,2,59,-9.0,2,0.0,1,18300.0,1001264,7.0,171 -1267239,1630102438,8137415,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,171 -1267240,1630102439,8136069,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,172 -1267241,1630102440,8134263,2,61,-9.0,2,0.0,1,10800.0,1025215,2.0,172 -1267242,1630102441,8138333,2,61,-9.0,2,0.0,1,12700.0,1042852,1.0,171 -1267243,1630102442,8137415,2,64,-9.0,2,0.0,1,20400.0,1042852,7.0,171 -1267244,1630102443,8136069,2,59,-9.0,2,0.0,1,18300.0,1001264,7.0,172 -1267245,1630102444,8138333,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,171 -1267246,1630102445,8135411,2,56,-9.0,2,1.0,1,23000.0,1001264,3.0,172 -1267247,1630102446,8135359,2,59,-9.0,2,1.0,1,8900.0,1042852,3.0,172 -1267248,1630102447,8135411,2,46,-9.0,2,1.0,1,15000.0,1042852,3.0,172 -1267249,1630102448,8135411,2,56,-9.0,2,1.0,1,23000.0,1001264,3.0,172 -1267250,1630102449,8136009,2,59,-9.0,2,1.0,1,8900.0,1042852,3.0,171 -1267251,1630102450,8134263,2,61,-9.0,2,1.0,1,2800.0,1001264,1.0,172 -1267252,1630102451,8138333,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,171 -1267253,1630102452,8135411,2,56,-9.0,2,1.0,1,15600.0,1009585,1.0,172 -1267254,1630102453,8133950,2,56,-9.0,2,1.0,1,23000.0,1001264,3.0,172 -1267255,1630102454,8136009,2,46,-9.0,2,1.0,1,15000.0,1042852,3.0,171 -1267256,1630102455,8138333,1,57,-9.0,2,1.0,1,19600.0,1001264,2.0,171 -1267257,1630102456,8138333,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,171 -1267258,1630102457,8134148,2,57,-9.0,1,0.0,1,29000.0,1025215,6.0,171 -1267259,1630102458,8136069,2,64,-9.0,1,0.0,1,10170.0,1001264,6.0,172 -1267260,1630102459,8134263,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,172 -1267261,1630102460,8138333,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,171 -1267262,1630102461,8138333,2,55,-9.0,1,0.0,1,7500.0,1001264,6.0,171 -1267263,1630102462,8133950,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,172 -1267264,1630102463,8138333,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,171 -1267265,1630102464,8133539,2,57,-9.0,1,0.0,1,29000.0,1025215,6.0,172 -1267266,1630102465,8135411,2,51,-9.0,1,0.0,1,19000.0,1025215,4.0,172 -1267267,1630102466,8136069,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,172 -1267268,1630102467,8138333,2,48,-9.0,1,0.0,1,12000.0,1001264,4.0,171 -1267269,1630102468,8138333,2,61,-9.0,1,0.0,1,11500.0,1009585,4.0,171 -1267270,1630102469,8138333,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,171 -1267271,1630102470,8138333,2,48,-9.0,1,0.0,1,12000.0,1001264,4.0,171 -1267272,1630102471,8138333,2,55,-9.0,1,0.0,1,7500.0,1001264,6.0,171 -1267273,1630102472,8136069,2,60,-9.0,1,0.0,1,4800.0,1025215,6.0,172 -1267274,1630102473,8134365,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,171 -1267275,1630102474,8136069,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,172 -1267276,1630102475,8134365,2,62,-9.0,1,0.0,1,29000.0,1009585,6.0,171 -1267277,1630102476,8137415,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,171 -1267278,1630102477,8133950,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,172 -1267279,1630102478,8136600,2,45,-9.0,1,0.0,1,22900.0,1073094,6.0,171 -1267280,1630102479,8135551,2,45,-9.0,1,0.0,1,22900.0,1073094,6.0,171 -1267281,1630102480,8136009,2,61,-9.0,1,0.0,1,11500.0,1009585,4.0,171 -1267282,1630102481,8138333,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,171 -1267283,1630102482,8137415,2,61,-9.0,1,0.0,1,5600.0,1001264,4.0,171 -1267284,1630102483,8134263,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,172 -1267285,1630102484,8138333,2,58,-9.0,1,0.0,1,12000.0,1025215,6.0,171 -1267286,1630102485,8137415,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,171 -1267287,1630102486,8134435,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,171 -1267288,1630102487,8134365,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,171 -1267289,1630102488,8137415,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,171 -1267290,1630102489,8136069,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,172 -1267291,1630102490,8138333,2,61,-9.0,1,0.0,1,11500.0,1009585,4.0,171 -1267292,1630102491,8138333,2,48,-9.0,1,0.0,1,12000.0,1001264,4.0,171 -1267293,1630102492,8136069,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,172 -1267294,1630102493,8138333,2,46,-9.0,1,1.0,1,14000.0,1001264,6.0,171 -1267295,1630102494,8138333,2,45,-9.0,1,1.0,1,22000.0,1073094,4.0,171 -1267296,1630102495,8135359,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,172 -1267297,1630102496,8133950,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,172 -1267298,1630102497,8134263,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,172 -1267299,1630102498,8134263,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,172 -1267300,1630102499,8136009,2,54,-9.0,1,1.0,1,21900.0,1025215,4.0,171 -1267301,1630102500,8136009,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,171 -1267302,1630102501,8138333,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,171 -1267303,1630102502,8137415,2,59,-9.0,1,1.0,1,2800.0,1001264,4.0,171 -1267304,1630102503,8138333,2,48,-9.0,1,1.0,1,19200.0,1001264,6.0,171 -1267305,1630102504,8137415,2,58,-9.0,1,1.0,1,13900.0,1073094,4.0,171 -1267306,1630102505,8135359,2,48,-9.0,1,1.0,1,27700.0,1073094,6.0,172 -1267307,1630102506,8134263,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,172 -1267308,1630102507,8138333,2,46,-9.0,1,1.0,1,14000.0,1001264,6.0,171 -1267309,1630102508,8135567,2,60,-9.0,1,1.0,1,28000.0,1001264,6.0,171 -1267310,1630102509,8138333,2,55,-9.0,1,1.0,1,17000.0,1073094,6.0,171 -1267311,1630102510,8134263,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,172 -1267312,1630102511,8138333,2,46,-9.0,1,1.0,1,14000.0,1001264,6.0,171 -1267313,1630102512,8138333,2,56,-9.0,1,1.0,1,25000.0,1009585,6.0,171 -1267314,1630102513,8135632,2,53,-9.0,1,1.0,1,12900.0,1025215,6.0,172 -1267315,1630102514,8135359,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,172 -1267316,1630102515,8138333,1,48,-9.0,1,1.0,1,5500.0,1001264,4.0,171 -1267317,1630102516,8135359,1,56,-9.0,1,1.0,1,18000.0,1042852,4.0,172 -1267318,1630102517,8135359,1,46,-9.0,1,1.0,1,20000.0,1001264,4.0,172 -1267319,1630102518,8138333,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,171 -1267320,1630102519,8135359,2,54,-9.0,2,0.0,1,29300.0,1001264,3.0,172 -1267321,1630102520,8136009,2,54,-9.0,2,0.0,1,29300.0,1001264,3.0,171 -1267322,1630102521,8135359,2,54,-9.0,2,0.0,1,29300.0,1001264,3.0,172 -1267323,1630102522,8138333,2,58,-9.0,2,1.0,1,26500.0,1073094,3.0,171 -1267324,1630102523,8135359,2,60,-9.0,2,1.0,1,2700.0,1009585,3.0,172 -1267325,1630102524,8138333,2,55,-9.0,2,1.0,1,25000.0,1042852,3.0,171 -1267326,1630102525,8138333,2,58,-9.0,2,1.0,1,26500.0,1073094,3.0,171 -1267327,1630102526,8138333,2,55,-9.0,2,1.0,1,25000.0,1073094,3.0,171 -1267328,1630102527,8134263,2,57,-9.0,2,1.0,1,26100.0,1001264,3.0,172 -1267329,1630102528,8133539,2,54,-9.0,2,1.0,1,18300.0,1073094,5.0,172 -1267330,1630102529,8133539,2,53,-9.0,2,2.0,1,6500.0,1025215,5.0,172 -1267331,1630102530,8138333,2,52,-9.0,2,0.0,1,23400.0,1073094,7.0,171 -1267332,1630102531,8138333,2,52,-9.0,2,0.0,1,23400.0,1073094,7.0,171 -1267333,1630102532,8138333,2,50,-9.0,2,1.0,1,25400.0,1001264,3.0,171 -1267334,1630102533,8138333,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,171 -1267335,1630102534,8138333,2,77,-9.0,1,1.0,1,127000.0,1001264,4.0,171 -1267336,1630102535,8134263,2,80,-9.0,1,1.0,1,119400.0,1042852,4.0,172 -1267337,1630102536,8138333,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,171 -1267338,1630102537,8136009,2,86,-9.0,1,0.0,1,13000.0,1025215,6.0,171 -1267339,1630102538,8138333,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,171 -1267340,1630102539,8135359,2,74,-9.0,1,0.0,1,14300.0,1025215,6.0,172 -1267341,1630102540,8135359,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,172 -1267342,1630102541,8137415,2,80,-9.0,1,0.0,1,5500.0,1042852,4.0,171 -1267343,1630102542,8134435,2,73,-9.0,1,0.0,1,8400.0,1073094,6.0,171 -1267344,1630102543,8137415,2,65,-9.0,1,0.0,1,24000.0,1001264,4.0,171 -1267345,1630102544,8136069,2,65,-9.0,1,0.0,1,24000.0,1001264,4.0,172 -1267346,1630102545,8134263,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,172 -1267347,1630102546,8137415,2,87,-9.0,1,0.0,1,20400.0,1025215,6.0,171 -1267348,1630102547,8135411,2,75,-9.0,1,0.0,1,8800.0,1001264,4.0,172 -1267349,1630102548,8136009,2,86,-9.0,1,0.0,1,13000.0,1025215,6.0,171 -1267350,1630102549,8138333,2,83,-9.0,1,0.0,1,7700.0,1025215,4.0,171 -1267351,1630102550,8134148,2,88,-9.0,1,0.0,1,11300.0,1025215,6.0,171 -1267352,1630102551,8137415,2,80,-9.0,1,0.0,1,5500.0,1042852,4.0,171 -1267353,1630102552,8135953,2,82,-9.0,1,0.0,1,12500.0,1073094,4.0,171 -1267354,1630102553,8136069,2,80,-9.0,1,0.0,1,8900.0,1009585,6.0,172 -1267355,1630102554,8136009,2,86,-9.0,1,0.0,1,13000.0,1025215,6.0,171 -1267356,1630102555,8138333,2,66,-9.0,1,0.0,1,10100.0,1009585,6.0,171 -1267357,1630102556,8136069,2,79,-9.0,1,0.0,1,18000.0,1025215,4.0,172 -1267358,1630102557,8138333,2,65,-9.0,1,0.0,1,1900.0,1025215,6.0,171 -1267359,1630102558,8138333,2,83,-9.0,1,0.0,1,7700.0,1025215,4.0,171 -1267360,1630102559,8138333,2,67,-9.0,1,0.0,1,6900.0,1042852,4.0,171 -1267361,1630102560,8135953,2,71,-9.0,1,0.0,1,24300.0,1042852,6.0,171 -1267362,1630102561,8134435,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,171 -1267363,1630102562,8134435,2,79,-9.0,1,0.0,1,9100.0,1073094,6.0,171 -1267364,1630102563,8135359,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,172 -1267365,1630102564,8138333,2,81,-9.0,1,0.0,1,20000.0,1025215,6.0,171 -1267366,1630102565,8136069,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,172 -1267367,1630102566,8135359,2,78,-9.0,1,0.0,1,26100.0,1009585,6.0,172 -1267368,1630102567,8134435,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,171 -1267369,1630102568,8134435,2,71,-9.0,1,0.0,1,8700.0,1025215,6.0,171 -1267370,1630102569,8133950,2,65,-9.0,1,0.0,1,0.0,1001264,6.0,172 -1267371,1630102570,8138333,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,171 -1267372,1630102571,8135411,2,75,-9.0,1,0.0,1,8800.0,1001264,4.0,172 -1267373,1630102572,8134435,2,71,-9.0,1,0.0,1,8700.0,1025215,6.0,171 -1267374,1630102573,8138333,2,67,-9.0,1,0.0,1,8300.0,1073094,6.0,171 -1267375,1630102574,8134263,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,172 -1267376,1630102575,8900602,2,77,-9.0,1,0.0,1,9600.0,1009585,4.0,172 -1267377,1630102576,8135567,2,90,-9.0,1,0.0,1,8600.0,1073094,6.0,171 -1267378,1630102577,8134435,2,69,-9.0,1,0.0,1,12600.0,1025215,6.0,171 -1267379,1630102578,8137415,2,79,-9.0,1,0.0,1,13800.0,1025215,4.0,171 -1267380,1630102579,8135411,2,66,-9.0,1,0.0,1,9000.0,1001264,4.0,172 -1267381,1630102580,8136069,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,172 -1267382,1630102581,8137415,2,73,-9.0,1,0.0,1,8400.0,1073094,6.0,171 -1267383,1630102582,8138333,2,66,-9.0,1,0.0,1,10100.0,1009585,6.0,171 -1267384,1630102583,8136009,2,65,-9.0,1,0.0,1,11800.0,1073094,4.0,171 -1267385,1630102584,8133539,2,74,-9.0,1,0.0,1,9200.0,1025215,4.0,172 -1267386,1630102585,8135359,2,78,-9.0,1,0.0,1,12000.0,1009585,6.0,172 -1267387,1630102586,8137415,2,70,-9.0,1,0.0,1,7300.0,1073094,6.0,171 -1267388,1630102587,8136069,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,172 -1267389,1630102588,8134213,2,73,-9.0,1,0.0,1,10600.0,1009585,6.0,172 -1267390,1630102589,8138333,2,66,-9.0,1,0.0,1,17700.0,1025215,6.0,171 -1267391,1630102590,8136069,2,69,-9.0,1,0.0,1,12600.0,1025215,6.0,172 -1267392,1630102591,8136069,2,79,-9.0,1,0.0,1,13800.0,1025215,4.0,172 -1267393,1630102592,8138333,2,65,-9.0,1,0.0,1,17000.0,1001264,6.0,171 -1267394,1630102593,8136069,2,70,-9.0,1,0.0,1,15530.0,1009585,6.0,172 -1267395,1630102594,8138333,2,65,-9.0,1,0.0,1,11000.0,1001264,6.0,171 -1267396,1630102595,8136069,2,73,-9.0,1,0.0,1,8400.0,1073094,6.0,172 -1267397,1630102596,8134263,2,65,-9.0,1,0.0,1,0.0,1001264,6.0,172 -1267398,1630102597,8135953,2,71,-9.0,1,0.0,1,24300.0,1042852,6.0,171 -1267399,1630102598,8135359,2,69,-9.0,1,0.0,1,8400.0,1001264,6.0,172 -1267400,1630102599,8133539,2,86,-9.0,1,0.0,1,8100.0,1073094,4.0,172 -1267401,1630102600,8137415,2,71,-9.0,1,0.0,1,10600.0,1042852,4.0,171 -1267402,1630102601,8134263,2,71,-9.0,1,0.0,1,14400.0,1042852,4.0,172 -1267403,1630102602,8136069,2,67,-9.0,1,0.0,1,9600.0,1001264,4.0,172 -1267404,1630102603,8136009,2,72,-9.0,1,0.0,1,19290.0,1001264,6.0,171 -1267405,1630102604,8134213,2,88,-9.0,1,0.0,1,11300.0,1025215,6.0,172 -1267406,1630102605,8136069,2,66,-9.0,1,0.0,1,8400.0,1025215,4.0,172 -1267407,1630102606,8138333,2,81,-9.0,1,0.0,1,16600.0,1042852,6.0,171 -1267408,1630102607,8135953,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,171 -1267409,1630102608,8134435,1,67,-9.0,1,0.0,1,8300.0,1073094,6.0,171 -1267410,1630102609,8134435,1,67,-9.0,1,0.0,1,8300.0,1073094,6.0,171 -1267411,1630102610,8137415,1,76,-9.0,1,0.0,1,8800.0,1009585,6.0,171 -1267412,1630102611,8135953,1,77,-9.0,1,0.0,1,21900.0,1009585,4.0,171 -1267413,1630102612,8134435,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,171 -1267414,1630102613,8138333,2,83,-9.0,1,1.0,1,21900.0,1042852,4.0,171 -1267415,1630102614,8135620,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,171 -1267416,1630102615,8135632,2,78,-9.0,1,1.0,1,25100.0,1073094,6.0,172 -1267417,1630102616,8135953,2,81,-9.0,1,1.0,1,8400.0,1009585,4.0,171 -1267418,1630102617,8136009,2,68,-9.0,1,1.0,1,24000.0,1073094,4.0,171 -1267419,1630102618,8138333,2,65,-9.0,1,1.0,1,19300.0,1073094,4.0,171 -1267420,1630102619,8134213,2,78,-9.0,1,1.0,1,25100.0,1073094,6.0,172 -1267421,1630102620,8136009,2,66,-9.0,1,1.0,1,8700.0,1009585,6.0,171 -1267422,1630102621,8138333,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,171 -1267423,1630102622,8136069,2,84,-9.0,1,1.0,1,26300.0,1009585,4.0,172 -1267424,1630102623,8136231,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,171 -1267425,1630102624,8136009,2,69,-9.0,1,1.0,1,10500.0,1073094,6.0,171 -1267426,1630102625,8134435,2,65,-9.0,1,1.0,1,0.0,1001264,6.0,171 -1267427,1630102626,8136069,2,75,-9.0,1,1.0,1,13000.0,1009585,4.0,172 -1267428,1630102627,8135000,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,172 -1267429,1630102628,8135000,2,78,-9.0,1,1.0,1,11900.0,1001264,6.0,172 -1267430,1630102629,8137415,2,74,-9.0,1,1.0,1,11000.0,1025215,6.0,171 -1267431,1630102630,8138333,2,68,-9.0,1,1.0,1,19000.0,1073094,6.0,171 -1267432,1630102631,8137415,2,77,-9.0,1,1.0,1,15100.0,1042852,4.0,171 -1267433,1630102632,8138333,2,73,-9.0,1,1.0,1,16800.0,1001264,4.0,171 -1267434,1630102633,8135359,2,76,-9.0,1,1.0,1,23400.0,1025215,4.0,172 -1267435,1630102634,8133539,2,79,-9.0,1,1.0,1,1300.0,1073094,6.0,172 -1267436,1630102635,8133539,2,69,-9.0,1,1.0,1,10800.0,1042852,6.0,172 -1267437,1630102636,8138333,2,69,-9.0,2,0.0,1,26200.0,1001264,5.0,171 -1267438,1630102637,8133950,2,81,-9.0,2,0.0,1,14100.0,1009585,3.0,172 -1267439,1630102638,8135359,2,66,-9.0,2,0.0,1,0.0,1073094,3.0,172 -1267440,1630102639,8135359,2,66,-9.0,2,0.0,1,0.0,1073094,3.0,172 -1267441,1630102640,8136009,2,81,-9.0,2,0.0,1,14100.0,1009585,3.0,171 -1267442,1630102641,8134263,2,81,-9.0,2,1.0,1,13700.0,1073094,3.0,172 -1267443,1630102642,8136069,2,66,-9.0,2,1.0,1,13300.0,1001264,1.0,172 -1267444,1630102643,8915379,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,172 -1267445,1630102644,8135359,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,172 -1267446,1630102645,8135953,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,171 -1267447,1630102646,8915378,2,40,-9.0,1,1.0,1,22000.0,1001264,6.0,172 -1267448,1630102647,8915358,2,44,-9.0,1,1.0,1,0.0,1009585,6.0,172 -1267449,1630102648,8138333,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,171 -1267450,1630102649,8138333,1,27,-9.0,2,1.0,1,109380.0,1073094,1.0,171 -1267451,1630102650,8138333,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,171 -1267452,1630102651,8900602,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,172 -1267453,1630102652,8138333,1,27,-9.0,2,1.0,1,113000.0,1025215,1.0,171 -1267454,1630102653,8138333,2,49,-9.0,3,0.0,1,2200.0,1042852,1.0,171 -1267455,1630102654,8134435,2,29,-9.0,1,1.0,1,24000.0,1009585,6.0,171 -1267456,1630102655,8135000,2,72,-9.0,1,1.0,1,20000.0,1025215,4.0,172 -1267457,1630102656,8136069,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,172 -1267458,1630102657,8134213,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,172 -1267459,1630102658,8134435,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,171 -1267460,1630102659,8133950,2,27,-9.0,1,0.0,1,1600.0,1001264,6.0,172 -1267461,1630102660,8138333,1,69,-9.0,1,1.0,1,14600.0,1001264,6.0,171 -1267462,1630102661,8915365,2,34,-9.0,2,2.0,1,157000.0,1001264,1.0,172 -1267463,1630102662,8138333,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,171 -1267464,1630102663,8138333,1,60,-9.0,1,1.0,1,38000.0,1025215,6.0,171 -1267465,1630102664,8915368,1,30,-9.0,1,0.0,1,25200.0,1042852,6.0,172 -1267466,1630102665,8138333,2,53,-9.0,1,1.0,1,8400.0,1001264,4.0,171 -1267467,1630102666,8138333,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,171 -1267468,1630102667,8135411,2,57,-9.0,1,0.0,1,38400.0,1073094,4.0,172 -1267469,1630102668,8135551,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,171 -1267470,1630102669,8135620,2,44,-9.0,1,0.0,1,4600.0,1009585,4.0,171 -1267471,1630102670,8134148,2,69,-9.0,1,1.0,1,10800.0,1042852,6.0,171 -1267472,1630102671,8900602,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,172 -1267473,1630102672,8135953,2,41,-9.0,1,1.0,1,8900.0,1009585,6.0,171 -1267474,1630102673,8138333,2,76,-9.0,1,1.0,1,34350.0,1001264,6.0,171 -1267475,1630102674,8136069,2,63,-9.0,1,0.0,1,109000.0,1001264,6.0,172 -1267476,1630102675,8915377,1,69,-9.0,1,1.0,1,21201.0,1001264,4.0,172 -1267477,1630102676,8138333,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,171 -1267478,1630102677,8134263,2,26,-9.0,2,0.0,1,12200.0,1001264,7.0,172 -1267479,1630102678,8138333,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,171 -1267480,1630102679,8135953,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,171 -1267481,1630102680,8138333,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,171 -1267482,1630102681,8134365,1,40,-9.0,2,2.0,1,150400.0,1025215,1.0,171 -1267483,1630102682,8138333,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,171 -1267484,1630102683,8136009,2,69,-9.0,2,0.0,1,183100.0,1042852,1.0,171 -1267485,1630102684,8137415,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,171 -1267486,1630102685,8135635,2,42,-9.0,1,2.0,1,15000.0,1001264,4.0,172 -1267487,1630102686,8135411,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,172 -1267488,1630102687,8135953,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,171 -1267489,1630102688,8133950,1,62,-9.0,2,0.0,1,23900.0,1001264,5.0,172 -1267490,1630102689,8138333,1,57,-9.0,2,1.0,1,19600.0,1001264,2.0,171 -1267491,1630102690,8136345,2,71,-9.0,1,2.0,1,19300.0,1001264,4.0,171 -1267492,1630102691,8134213,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,172 -1267493,1630102692,8915358,2,34,-9.0,2,1.0,1,141000.0,1025215,1.0,172 -1267494,1630102693,8138333,2,44,-9.0,2,1.0,1,18000.0,1042852,2.0,171 -1267495,1630102694,8135411,2,46,-9.0,2,1.0,1,15000.0,1042852,3.0,172 -1267496,1630102695,8138333,2,46,-9.0,2,2.0,1,15800.0,1025215,1.0,171 -1267497,1630102696,8138333,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,171 -1267498,1630102697,8915367,2,71,-9.0,1,1.0,1,23600.0,1042852,6.0,172 -1267499,1630102698,8138333,2,57,-9.0,1,2.0,1,8400.0,1025215,6.0,171 -1267500,1630102699,8138333,1,33,-9.0,2,1.0,1,25000.0,1009585,1.0,171 -1267501,1630102700,8138333,2,69,-9.0,2,1.0,1,137000.0,1009585,1.0,171 -1267502,1630102701,8138333,2,46,1.0,2,1.0,1,0.0,1025215,3.0,171 -1267503,1630102702,8138333,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,171 -1267504,1630102703,8138333,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,171 -1267505,1630102704,8915379,2,65,-9.0,2,0.0,1,20400.0,1042852,1.0,172 -1267506,1630102705,8134435,1,60,-9.0,1,1.0,1,640.0,1042852,6.0,171 -1267507,1630102706,8135411,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,172 -1267508,1630102707,8135417,2,42,-9.0,2,1.0,1,8000.0,1025215,2.0,171 -1267509,1630102708,8138333,2,53,-9.0,3,1.0,1,105400.0,1042852,2.0,171 -1267510,1630102709,8138333,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,171 -1267511,1630102710,8915361,2,72,-9.0,2,1.0,1,21200.0,1042852,3.0,172 -1267512,1630102711,8138333,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,171 -1267513,1630102712,8138333,2,46,-9.0,2,0.0,1,4200.0,1025215,3.0,171 -1267514,1630102713,8133950,2,61,-9.0,3,0.0,1,7000.0,1073094,5.0,172 -1267515,1630102714,8138333,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,171 -1267516,1630102715,8135632,2,68,-9.0,2,0.0,1,126000.0,1001264,5.0,172 -1267517,1630102716,8915358,1,30,-9.0,1,1.0,1,15000.0,1001264,4.0,172 -1267518,1630102717,8915376,2,77,-9.0,2,2.0,1,8400.0,1025215,2.0,172 -1267519,1630102718,8135359,2,81,-9.0,2,0.0,1,14100.0,1009585,3.0,172 -1267520,1630102719,8136009,2,55,-9.0,1,0.0,1,50000.0,1025215,6.0,171 -1267521,1630102720,8915363,1,62,-9.0,1,1.0,1,34200.0,1009585,4.0,172 -1267522,1630102721,8136009,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,171 -1267523,1630102722,8915387,2,39,-9.0,2,0.0,1,580.0,1025215,2.0,172 -1267524,1630102723,8138333,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,171 -1267525,1630102724,8915364,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,172 -1267526,1630102725,8138333,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,171 -1267527,1630102726,8915368,2,20,-9.0,1,1.0,1,15000.0,1001264,6.0,172 -1267528,1630102727,8915365,2,43,-9.0,2,2.0,1,225300.0,1001264,1.0,172 -1267529,1630102728,8915378,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,172 -1267530,1630102729,8900600,2,41,-9.0,1,1.0,1,33360.0,1025215,4.0,172 -1267531,1630102730,8132028,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,172 -1267532,1630102731,8132028,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,172 -1267533,1630102732,8133519,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,171 -1267534,1630102733,8133519,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,171 -1267535,1630102734,8133519,1,29,-9.0,2,2.0,1,49500.0,1042852,5.0,171 -1267536,1630102735,8900601,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,172 -1267537,1630102736,8130890,2,38,-9.0,1,0.0,1,48000.0,1001264,4.0,172 -1267538,1630102737,8133519,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,171 -1267539,1630102738,8133519,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,171 -1267540,1630102739,8133519,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,171 -1267541,1630102740,8133519,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,171 -1267542,1630102741,8133519,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,171 -1267543,1630102742,8133519,1,30,-9.0,1,0.0,1,48000.0,1009585,4.0,171 -1267544,1630102743,8131021,2,44,-9.0,1,1.0,1,54000.0,1025215,4.0,172 -1267545,1630102744,8133519,2,25,-9.0,1,1.0,1,34000.0,1025215,6.0,171 -1267546,1630102745,8133519,2,42,-9.0,1,1.0,1,40000.0,1042852,4.0,171 -1267547,1630102746,8134097,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,171 -1267548,1630102747,8900600,2,40,-9.0,1,1.0,1,49300.0,1042852,4.0,172 -1267549,1630102748,8133519,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,171 -1267550,1630102749,8900601,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,172 -1267551,1630102750,8900601,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,172 -1267552,1630102751,8130890,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,172 -1267553,1630102752,8130890,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,172 -1267554,1630102753,8900601,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,172 -1267555,1630102754,8131021,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,172 -1267556,1630102755,8900601,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,172 -1267557,1630102756,8133519,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,171 -1267558,1630102757,8132028,1,26,-9.0,2,1.0,1,59000.0,1001264,5.0,172 -1267559,1630102758,8132028,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,172 -1267560,1630102759,8133519,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,171 -1267561,1630102760,8900601,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,172 -1267562,1630102761,8900601,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,172 -1267563,1630102762,8132028,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,172 -1267564,1630102763,8133519,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,171 -1267565,1630102764,8133519,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,171 -1267566,1630102765,8132028,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,172 -1267567,1630102766,8132028,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,172 -1267568,1630102767,8131021,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,172 -1267569,1630102768,8130890,1,34,-9.0,2,1.0,1,64000.0,1042852,1.0,172 -1267570,1630102769,8133519,1,28,-9.0,2,2.0,1,94000.0,1001264,7.0,171 -1267571,1630102770,8133519,1,28,-9.0,2,2.0,1,94000.0,1001264,7.0,171 -1267572,1630102771,8900601,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,172 -1267573,1630102772,8134121,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,171 -1267574,1630102773,8130890,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,172 -1267575,1630102774,8133519,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,171 -1267576,1630102775,8130890,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,172 -1267577,1630102776,8900601,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,172 -1267578,1630102777,8130890,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267579,1630102778,8130773,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,172 -1267580,1630102779,8131021,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,172 -1267581,1630102780,8900601,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,172 -1267582,1630102781,8900601,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,172 -1267583,1630102782,8134121,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,171 -1267584,1630102783,8130773,2,34,-9.0,1,0.0,1,0.0,1042852,6.0,172 -1267585,1630102784,8900601,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,172 -1267586,1630102785,8133519,2,43,-9.0,1,0.0,1,14000.0,1009585,4.0,171 -1267587,1630102786,8134121,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1267588,1630102787,8130773,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267589,1630102788,8130890,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,172 -1267590,1630102789,8130450,2,41,-9.0,1,0.0,1,7350.0,1001264,4.0,172 -1267591,1630102790,8900601,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,172 -1267592,1630102791,8131021,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267593,1630102792,8130773,2,36,-9.0,1,0.0,1,8600.0,1009585,4.0,172 -1267594,1630102793,8133519,2,28,-9.0,1,0.0,1,7800.0,1025215,4.0,171 -1267595,1630102794,8130450,2,43,-9.0,1,0.0,1,8700.0,1009585,6.0,172 -1267596,1630102795,8133519,2,28,-9.0,1,0.0,1,7800.0,1025215,4.0,171 -1267597,1630102796,8134121,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,171 -1267598,1630102797,8130890,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,172 -1267599,1630102798,8900600,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267600,1630102799,8133519,2,28,-9.0,1,0.0,1,7800.0,1025215,4.0,171 -1267601,1630102800,8131021,2,39,-9.0,1,0.0,1,0.0,1073094,4.0,172 -1267602,1630102801,8900600,2,33,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267603,1630102802,8900600,2,41,-9.0,1,0.0,1,7350.0,1001264,4.0,172 -1267604,1630102803,8131021,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,172 -1267605,1630102804,8900601,2,38,-9.0,1,0.0,1,8400.0,1042852,6.0,172 -1267606,1630102805,8133519,2,28,-9.0,1,0.0,1,7800.0,1025215,4.0,171 -1267607,1630102806,8131021,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,172 -1267608,1630102807,8900601,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,172 -1267609,1630102808,8130450,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,172 -1267610,1630102809,8130450,3,44,-9.0,1,0.0,1,1900.0,1001264,4.0,172 -1267611,1630102810,8130450,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,172 -1267612,1630102811,8130450,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,172 -1267613,1630102812,8133519,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1267614,1630102813,8133519,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1267615,1630102814,8133519,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1267616,1630102815,8133519,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1267617,1630102816,8133519,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1267618,1630102817,8133519,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1267619,1630102818,8133519,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1267620,1630102819,8900600,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,172 -1267621,1630102820,8133519,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1267622,1630102821,8133519,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1267623,1630102822,8134097,2,28,-9.0,1,1.0,1,3000.0,1073094,4.0,171 -1267624,1630102823,8130450,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,172 -1267625,1630102824,8130890,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,172 -1267626,1630102825,8131021,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,172 -1267627,1630102826,8134121,2,40,-9.0,1,1.0,1,0.0,1001264,4.0,171 -1267628,1630102827,8133519,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,171 -1267629,1630102828,8130450,2,35,-9.0,1,1.0,1,0.0,1025215,4.0,172 -1267630,1630102829,8130890,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,172 -1267631,1630102830,8130890,2,41,-9.0,1,1.0,1,8900.0,1009585,6.0,172 -1267632,1630102831,8130450,2,42,-9.0,1,1.0,1,0.0,1073094,4.0,172 -1267633,1630102832,8133519,2,40,-9.0,1,1.0,1,12000.0,1001264,6.0,171 -1267634,1630102833,8130773,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,172 -1267635,1630102834,8130890,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,172 -1267636,1630102835,8133519,1,29,-9.0,1,1.0,1,8500.0,1025215,4.0,171 -1267637,1630102836,8131021,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,172 -1267638,1630102837,8132028,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,172 -1267639,1630102838,8131021,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,172 -1267640,1630102839,8132028,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,172 -1267641,1630102840,8132028,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,172 -1267642,1630102841,8132028,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,172 -1267643,1630102842,8132028,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,172 -1267644,1630102843,8130890,1,31,-9.0,1,1.0,1,11000.0,1025215,4.0,172 -1267645,1630102844,8132028,1,40,-9.0,1,1.0,1,3000.0,1025215,4.0,172 -1267646,1630102845,8133519,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,171 -1267647,1630102846,8133519,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,171 -1267648,1630102847,8133519,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,171 -1267649,1630102848,8133519,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,171 -1267650,1630102849,8133519,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,171 -1267651,1630102850,8133519,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,171 -1267652,1630102851,8133519,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,171 -1267653,1630102852,8133519,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,171 -1267654,1630102853,8133519,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,171 -1267655,1630102854,8130450,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,172 -1267656,1630102855,8133519,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,171 -1267657,1630102856,8134121,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,171 -1267658,1630102857,8134121,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,171 -1267659,1630102858,8134121,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,171 -1267660,1630102859,8134121,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,171 -1267661,1630102860,8130450,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,172 -1267662,1630102861,8133519,2,30,-9.0,1,1.0,1,15000.0,1009585,4.0,171 -1267663,1630102862,8133519,2,35,-9.0,1,1.0,1,5600.0,1073094,4.0,171 -1267664,1630102863,8900601,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,172 -1267665,1630102864,8130773,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,172 -1267666,1630102865,8130773,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,172 -1267667,1630102866,8900601,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,172 -1267668,1630102867,8130450,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,172 -1267669,1630102868,8131021,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,172 -1267670,1630102869,8900601,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,172 -1267671,1630102870,8133519,2,64,-9.0,1,1.0,1,50700.0,1025215,4.0,171 -1267672,1630102871,8133519,1,59,-9.0,1,1.0,1,30700.0,1025215,6.0,171 -1267673,1630102872,8134121,2,60,-9.0,1,1.0,1,50000.0,1073094,4.0,171 -1267674,1630102873,8900600,2,55,-9.0,1,0.0,1,12900.0,1042852,4.0,172 -1267675,1630102874,8134121,2,62,-9.0,1,0.0,1,12000.0,1073094,4.0,171 -1267676,1630102875,8130450,2,53,-9.0,1,0.0,1,8300.0,1042852,4.0,172 -1267677,1630102876,8133519,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,171 -1267678,1630102877,8130773,2,62,-9.0,1,0.0,1,16200.0,1009585,4.0,172 -1267679,1630102878,8131021,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,172 -1267680,1630102879,8130773,2,62,-9.0,1,0.0,1,12300.0,1001264,6.0,172 -1267681,1630102880,8134121,2,59,-9.0,1,0.0,1,8500.0,1009585,4.0,171 -1267682,1630102881,8130450,2,64,-9.0,1,0.0,1,0.0,1009585,4.0,172 -1267683,1630102882,8134121,2,62,-9.0,1,0.0,1,12000.0,1073094,4.0,171 -1267684,1630102883,8130773,2,58,-9.0,1,0.0,1,9700.0,1009585,4.0,172 -1267685,1630102884,8130450,2,61,-9.0,1,0.0,1,0.0,1073094,6.0,172 -1267686,1630102885,8134121,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,171 -1267687,1630102886,8130450,2,60,-9.0,1,0.0,1,12000.0,1025215,4.0,172 -1267688,1630102887,8130773,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,172 -1267689,1630102888,8130450,2,59,-9.0,1,0.0,1,1200.0,1042852,4.0,172 -1267690,1630102889,8130450,2,64,-9.0,1,0.0,1,24700.0,1001264,4.0,172 -1267691,1630102890,8900601,2,57,-9.0,1,0.0,1,13900.0,1073094,4.0,172 -1267692,1630102891,8130450,2,60,-9.0,1,0.0,1,2000.0,1042852,6.0,172 -1267693,1630102892,8130773,2,64,-9.0,1,0.0,1,3660.0,1042852,6.0,172 -1267694,1630102893,8900600,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,172 -1267695,1630102894,8130773,2,60,-9.0,1,0.0,1,13200.0,1009585,4.0,172 -1267696,1630102895,8134121,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,171 -1267697,1630102896,8134121,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,171 -1267698,1630102897,8130450,2,56,-9.0,1,0.0,1,0.0,1009585,4.0,172 -1267699,1630102898,8130773,2,61,-9.0,1,0.0,1,11000.0,1042852,4.0,172 -1267700,1630102899,8900601,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,172 -1267701,1630102900,8130450,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,172 -1267702,1630102901,8130890,2,45,-9.0,1,0.0,1,16800.0,1009585,4.0,172 -1267703,1630102902,8900600,2,62,-9.0,1,0.0,1,12000.0,1073094,4.0,172 -1267704,1630102903,8130450,2,61,-9.0,1,0.0,1,11000.0,1042852,4.0,172 -1267705,1630102904,8131021,2,58,-9.0,1,0.0,1,8700.0,1009585,4.0,172 -1267706,1630102905,8134121,2,58,-9.0,1,0.0,1,1020.0,1009585,4.0,171 -1267707,1630102906,8900600,2,58,-9.0,1,0.0,1,8400.0,1042852,4.0,172 -1267708,1630102907,8130773,2,60,-9.0,1,0.0,1,12000.0,1025215,4.0,172 -1267709,1630102908,8130450,2,59,-9.0,1,0.0,1,9800.0,1009585,6.0,172 -1267710,1630102909,8133519,2,51,-9.0,1,0.0,1,0.0,1025215,4.0,171 -1267711,1630102910,8900601,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,172 -1267712,1630102911,8131021,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,172 -1267713,1630102912,8132028,2,54,-9.0,1,0.0,1,4400.0,1025215,4.0,172 -1267714,1630102913,8130773,2,49,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267715,1630102914,8134121,2,58,-9.0,1,0.0,1,16200.0,1025215,4.0,171 -1267716,1630102915,8134097,2,50,-9.0,1,0.0,1,8100.0,1073094,4.0,171 -1267717,1630102916,8131021,2,63,-9.0,1,0.0,1,3300.0,1025215,4.0,172 -1267718,1630102917,8134121,2,58,-9.0,1,0.0,1,1020.0,1009585,4.0,171 -1267719,1630102918,8133519,2,47,-9.0,1,0.0,1,6900.0,1025215,6.0,171 -1267720,1630102919,8130890,4,62,-9.0,1,0.0,1,18000.0,1042852,4.0,172 -1267721,1630102920,8130773,1,60,-9.0,1,0.0,1,10840.0,1009585,4.0,172 -1267722,1630102921,8134121,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,171 -1267723,1630102922,8134121,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,171 -1267724,1630102923,8132028,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,172 -1267725,1630102924,8130450,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267726,1630102925,8130890,1,64,-9.0,1,0.0,1,11600.0,1009585,4.0,172 -1267727,1630102926,8900600,1,60,-9.0,1,0.0,1,10840.0,1009585,4.0,172 -1267728,1630102927,8130450,1,64,-9.0,1,0.0,1,11000.0,1025215,4.0,172 -1267729,1630102928,8900601,2,55,-9.0,1,1.0,1,8500.0,1025215,4.0,172 -1267730,1630102929,8900601,2,64,-9.0,1,1.0,1,7660.0,1009585,4.0,172 -1267731,1630102930,8130773,2,45,-9.0,1,1.0,1,20500.0,1042852,4.0,172 -1267732,1630102931,8130890,2,58,-9.0,1,1.0,1,18000.0,1073094,4.0,172 -1267733,1630102932,8130773,2,62,-9.0,1,1.0,1,0.0,1042852,4.0,172 -1267734,1630102933,8130450,1,56,-9.0,1,1.0,1,1500.0,1009585,4.0,172 -1267735,1630102934,8134121,2,54,-9.0,2,0.0,1,13640.0,1001264,7.0,171 -1267736,1630102935,8900601,2,49,-9.0,2,0.0,1,22650.0,1009585,7.0,172 -1267737,1630102936,8900600,2,61,-9.0,2,0.0,1,23800.0,1073094,2.0,172 -1267738,1630102937,8130450,2,64,-9.0,2,0.0,1,20400.0,1042852,7.0,172 -1267739,1630102938,8130450,2,59,-9.0,2,0.0,1,18300.0,1001264,7.0,172 -1267740,1630102939,8134121,2,54,-9.0,2,0.0,1,13640.0,1001264,7.0,171 -1267741,1630102940,8130773,2,63,-9.0,2,0.0,1,15000.0,1073094,5.0,172 -1267742,1630102941,8134121,2,58,-9.0,2,1.0,1,10000.0,1001264,5.0,171 -1267743,1630102942,8900601,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,172 -1267744,1630102943,8134121,2,61,-9.0,1,0.0,1,5600.0,1001264,4.0,171 -1267745,1630102944,8130890,2,71,-9.0,1,0.0,1,31400.0,1073094,4.0,172 -1267746,1630102945,8131021,2,66,-9.0,1,0.0,1,38000.0,1001264,6.0,172 -1267747,1630102946,8133519,2,90,-9.0,1,0.0,1,44700.0,1001264,6.0,171 -1267748,1630102947,8900601,2,66,-9.0,1,1.0,1,37420.0,1073094,4.0,172 -1267749,1630102948,8900601,2,88,-9.0,2,0.0,1,33800.0,1073094,3.0,172 -1267750,1630102949,8133519,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,171 -1267751,1630102950,8133519,2,74,-9.0,1,0.0,1,68400.0,1001264,4.0,171 -1267752,1630102951,8130773,2,65,-9.0,1,0.0,1,24000.0,1001264,4.0,172 -1267753,1630102952,8130773,2,79,-9.0,1,0.0,1,13800.0,1025215,4.0,172 -1267754,1630102953,8134121,2,86,-9.0,1,0.0,1,13000.0,1025215,6.0,171 -1267755,1630102954,8130773,2,75,-9.0,1,0.0,1,9600.0,1009585,4.0,172 -1267756,1630102955,8130773,2,70,-9.0,1,0.0,1,20500.0,1009585,4.0,172 -1267757,1630102956,8900600,2,86,-9.0,1,0.0,1,9400.0,1009585,6.0,172 -1267758,1630102957,8130773,2,83,-9.0,1,0.0,1,7700.0,1025215,4.0,172 -1267759,1630102958,8130890,2,85,-9.0,1,0.0,1,12100.0,1025215,6.0,172 -1267760,1630102959,8130773,2,86,-9.0,1,0.0,1,9400.0,1009585,6.0,172 -1267761,1630102960,8134121,2,65,-9.0,1,0.0,1,24000.0,1001264,4.0,171 -1267762,1630102961,8900600,2,94,-9.0,1,0.0,1,14300.0,1009585,4.0,172 -1267763,1630102962,8130890,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,172 -1267764,1630102963,8133519,2,68,-9.0,1,0.0,1,17360.0,1009585,6.0,171 -1267765,1630102964,8130450,2,80,-9.0,1,0.0,1,5500.0,1042852,4.0,172 -1267766,1630102965,8134121,2,79,-9.0,1,0.0,1,18000.0,1025215,4.0,171 -1267767,1630102966,8130773,2,85,-9.0,1,0.0,1,13200.0,1025215,6.0,172 -1267768,1630102967,8130450,2,75,-9.0,1,0.0,1,10800.0,1009585,4.0,172 -1267769,1630102968,8900600,2,80,-9.0,1,0.0,1,5500.0,1042852,4.0,172 -1267770,1630102969,8131021,2,69,-9.0,1,0.0,1,13900.0,1042852,4.0,172 -1267771,1630102970,8130450,2,71,-9.0,1,0.0,1,14400.0,1042852,4.0,172 -1267772,1630102971,8900601,2,75,-9.0,1,0.0,1,8800.0,1001264,4.0,172 -1267773,1630102972,8131021,2,82,-9.0,1,0.0,1,12500.0,1073094,4.0,172 -1267774,1630102973,8130450,2,75,-9.0,1,0.0,1,10800.0,1009585,4.0,172 -1267775,1630102974,8130450,2,75,-9.0,1,0.0,1,10800.0,1009585,4.0,172 -1267776,1630102975,8130773,2,70,-9.0,1,0.0,1,20500.0,1009585,4.0,172 -1267777,1630102976,8900600,2,73,-9.0,1,0.0,1,11000.0,1025215,6.0,172 -1267778,1630102977,8133460,2,94,-9.0,1,0.0,1,25200.0,1042852,4.0,171 -1267779,1630102978,8134121,2,79,-9.0,1,0.0,1,9100.0,1073094,6.0,171 -1267780,1630102979,8134121,2,80,-9.0,1,0.0,1,5500.0,1042852,4.0,171 -1267781,1630102980,8900600,1,65,-9.0,1,0.0,1,1100.0,1001264,4.0,172 -1267782,1630102981,8900601,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,172 -1267783,1630102982,8900601,1,66,-9.0,1,0.0,1,5300.0,1009585,4.0,172 -1267784,1630102983,8130450,1,74,-9.0,1,0.0,1,9600.0,1042852,4.0,172 -1267785,1630102984,8130773,1,74,-9.0,1,0.0,1,9600.0,1042852,4.0,172 -1267786,1630102985,8131021,1,77,-9.0,1,0.0,1,21900.0,1009585,4.0,172 -1267787,1630102986,8131021,3,67,-9.0,1,0.0,1,16800.0,1042852,4.0,172 -1267788,1630102987,8130773,2,65,-9.0,1,1.0,1,19300.0,1073094,4.0,172 -1267789,1630102988,8900600,2,65,-9.0,1,1.0,1,19300.0,1073094,4.0,172 -1267790,1630102989,8130890,2,76,-9.0,1,1.0,1,23400.0,1025215,4.0,172 -1267791,1630102990,8130773,2,76,-9.0,1,1.0,1,16800.0,1042852,4.0,172 -1267792,1630102991,8134097,2,81,-9.0,1,1.0,1,9500.0,1009585,6.0,171 -1267793,1630102992,8133519,2,66,-9.0,2,0.0,1,0.0,1073094,3.0,171 -1267794,1630102993,8130890,2,77,-9.0,2,0.0,1,8000.0,1042852,1.0,172 -1267795,1630102994,8130773,2,69,-9.0,2,0.0,1,26200.0,1001264,5.0,172 -1267796,1630102995,8900600,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,172 -1267797,1630102996,8134121,2,23,-9.0,1,0.0,1,0.0,1042852,4.0,171 -1267798,1630102997,8130773,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,172 -1267799,1630102998,8900600,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,172 -1267800,1630102999,8130450,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,172 -1267801,1630103000,8133519,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,171 -1267802,1630103001,8900601,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,172 -1267803,1630103002,8130450,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,172 -1267804,1630103003,8133519,1,24,-9.0,1,1.0,1,0.0,1042852,4.0,171 -1267805,1630103004,8133519,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,171 -1267806,1630103005,8131021,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,172 -1267807,1630103006,8900601,1,27,-9.0,1,1.0,1,47000.0,1001264,6.0,172 -1267808,1630103007,8133519,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,171 -1267809,1630103008,8130773,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,172 -1267810,1630103009,8133519,2,42,-9.0,1,0.0,1,27000.0,1025215,6.0,171 -1267811,1630103010,8133519,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,171 -1267812,1630103011,8130773,2,45,-9.0,1,0.0,1,31300.0,1001264,4.0,172 -1267813,1630103012,8900601,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,172 -1267814,1630103013,8133519,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,171 -1267815,1630103014,8134121,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,171 -1267816,1630103015,8900600,2,37,-9.0,1,1.0,1,15700.0,1025215,4.0,172 -1267817,1630103016,8131021,4,38,-9.0,1,1.0,1,18700.0,1001264,4.0,172 -1267818,1630103017,8130890,2,28,-9.0,1,0.0,1,30000.0,1025215,4.0,172 -1267819,1630103018,8130890,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,172 -1267820,1630103019,8900600,1,61,-9.0,1,1.0,1,57000.0,1025215,4.0,172 -1267821,1630103020,8133519,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,171 -1267822,1630103021,8130450,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,172 -1267823,1630103022,8130773,3,39,-9.0,1,0.0,1,15000.0,1001264,4.0,172 -1267824,1630103023,8133519,1,27,-9.0,2,2.0,1,0.0,1025215,1.0,171 -1267825,1630103024,8134097,1,51,-9.0,2,0.0,1,10300.0,1042852,7.0,171 -1267826,1630103025,8900600,1,51,-9.0,1,0.0,1,0.0,1073094,4.0,172 -1267827,1630103026,8900601,3,60,-9.0,1,0.0,1,21600.0,1001264,6.0,172 -1267828,1630103027,8130450,2,54,-9.0,1,1.0,1,14540.0,1009585,4.0,172 -1267829,1630103028,8133519,4,49,-9.0,1,0.0,1,9990.0,1025215,4.0,171 -1267830,1630103029,8133519,1,26,-9.0,1,1.0,1,30000.0,1001264,4.0,171 -1267831,1630103030,8900600,2,66,-9.0,2,1.0,1,13300.0,1001264,1.0,172 -1267832,1630103031,8900600,1,57,-9.0,2,1.0,1,19600.0,1001264,2.0,172 -1267833,1630103032,8134097,3,61,-9.0,1,0.0,1,8670.0,1025215,6.0,171 -1267834,1630103033,8130773,1,40,-9.0,2,1.0,1,800.0,1073094,5.0,172 -1267835,1630103034,8133519,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,171 -1267836,1630103035,8130890,4,72,-9.0,1,0.0,1,4800.0,1009585,6.0,172 -1267837,1630103036,8133519,3,48,-9.0,2,0.0,1,8300.0,1073094,2.0,171 -1267838,1630103037,8130450,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,172 -1267839,1630103038,8133519,3,30,-9.0,1,0.0,1,80000.0,1001264,4.0,171 -1267840,1630103039,8131021,2,71,-9.0,1,0.0,1,31400.0,1073094,4.0,172 -1267841,1630103040,8130773,2,39,-9.0,1,2.0,1,11900.0,1009585,6.0,172 -1267842,1630103041,8130773,1,77,-9.0,2,0.0,1,16400.0,1025215,5.0,172 -1267843,1630103042,8130890,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,172 -1267844,1630103043,8900600,2,66,-9.0,1,1.0,1,41700.0,1025215,4.0,172 -1267845,1630103044,8900601,2,57,-9.0,1,0.0,1,38400.0,1073094,4.0,172 -1267846,1630103045,8130773,3,29,-9.0,1,1.0,1,36000.0,1025215,4.0,172 -1267847,1630103046,8133519,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,171 -1267848,1630103047,8134097,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,171 -1267849,1630103048,8900601,2,55,-9.0,2,1.0,1,28600.0,1009585,1.0,172 -1267850,1630103049,8134121,2,58,-9.0,1,1.0,1,40370.0,1073094,4.0,171 -1267851,1630103050,8133519,3,35,-9.0,1,1.0,1,3600.0,1073094,6.0,171 -1267852,1630103051,8131021,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,172 -1267853,1630103052,8900600,1,68,-9.0,1,1.0,1,3000.0,1009585,4.0,172 -1267854,1630103053,8130890,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,172 -1267855,1630103054,8133519,2,27,-9.0,1,2.0,1,30000.0,1073094,4.0,171 -1267856,1630103055,8130450,2,43,-9.0,2,1.0,1,24740.0,1042852,7.0,172 -1267857,1630103056,8133519,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,171 -1267858,1630103057,8133519,1,55,-9.0,1,1.0,1,92000.0,1009585,6.0,171 -1267859,1630103058,8133519,2,28,-9.0,2,2.0,1,50000.0,1001264,3.0,171 -1267860,1630103059,8133519,2,81,-9.0,2,1.0,1,31500.0,1009585,1.0,171 -1267861,1630103060,8133396,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,171 -1267862,1630103061,8133519,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,171 -1267863,1630103062,8133519,2,26,-9.0,2,1.0,1,73000.0,1001264,1.0,171 -1267864,1630103063,8133519,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,171 -1267865,1630103064,8133519,2,48,-9.0,1,0.0,1,12000.0,1001264,4.0,171 -1267866,1630103065,8130450,4,25,-9.0,1,0.0,1,8400.0,1009585,4.0,172 -1267867,1630103066,8900601,1,56,-9.0,1,1.0,1,18000.0,1042852,4.0,172 -1267868,1630103067,8133519,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,171 -1267869,1630103068,8133519,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,171 -1267870,1630103069,8131021,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,172 -1302493,1630137692,8200445,2,35,3.0,4,1.0,1,20000.0,1073094,3.0,159 -1302494,1630137693,8201345,2,34,-9.0,1,1.0,1,8920.0,1009585,4.0,159 -1302495,1630137694,8195419,2,34,-9.0,1,1.0,1,8920.0,1009585,4.0,159 -1302496,1630137695,8201518,2,42,-9.0,1,2.0,1,8600.0,1009585,4.0,159 -1302497,1630137696,8197876,2,37,2.0,3,1.0,1,28200.0,1042852,3.0,159 -1302498,1630137697,8201636,2,40,-9.0,1,1.0,1,800.0,1042852,4.0,159 -1302499,1630137698,8200776,2,42,-9.0,1,2.0,1,15000.0,1001264,4.0,159 -1302500,1630137699,8200057,2,35,-9.0,1,2.0,1,15000.0,1042852,4.0,159 -1302501,1630137700,8201480,2,32,2.0,3,1.0,1,20900.0,1009585,3.0,159 -1302502,1630137701,8200890,2,32,2.0,3,1.0,1,20900.0,1009585,3.0,159 -1302503,1630137702,8200827,2,36,1.0,3,2.0,1,29800.0,1073094,7.0,159 -1302504,1630137703,8200016,2,36,1.0,3,2.0,1,29800.0,1073094,7.0,159 -1302505,1630137704,8200953,2,31,-9.0,2,1.0,1,29500.0,1025215,1.0,159 -1302506,1630137705,8200473,2,36,-9.0,2,2.0,1,17200.0,1042852,1.0,159 -1302507,1630137706,8197373,2,36,-9.0,2,2.0,1,17200.0,1042852,1.0,159 -1302508,1630137707,8199989,2,56,-9.0,1,0.0,1,8600.0,1009585,6.0,159 -1302509,1630137708,8200278,2,62,-9.0,1,1.0,1,25700.0,1009585,4.0,159 -1302510,1630137709,8197437,2,60,-9.0,1,1.0,1,26800.0,1001264,4.0,159 -1302511,1630137710,8200368,2,60,-9.0,1,1.0,1,26800.0,1001264,4.0,159 -1302512,1630137711,8198656,2,60,-9.0,1,1.0,1,26800.0,1001264,4.0,159 -1302513,1630137712,8197978,2,52,-9.0,1,1.0,1,7000.0,1025215,4.0,159 -1302514,1630137713,8201493,2,60,-9.0,2,1.0,1,6620.0,1025215,3.0,159 -1302515,1630137714,8200328,2,60,-9.0,2,1.0,1,6620.0,1025215,3.0,159 -1302516,1630137715,8201537,2,57,-9.0,1,1.0,1,-6500.0,1025215,4.0,159 -1302517,1630137716,8199251,2,59,-9.0,1,1.0,1,3400.0,1009585,6.0,159 -1302518,1630137717,8198953,2,59,-9.0,1,1.0,1,3400.0,1009585,6.0,159 -1302519,1630137718,8199542,2,63,-9.0,2,2.0,1,16800.0,1025215,3.0,159 -1302520,1630137719,8200671,2,48,-9.0,2,4.0,1,11490.0,1009585,5.0,159 -1302521,1630137720,8200405,2,48,-9.0,2,4.0,1,11490.0,1009585,5.0,159 -1302522,1630137721,8201486,2,90,-9.0,1,1.0,1,24400.0,1042852,6.0,159 -1302523,1630137722,8200745,2,94,-9.0,1,1.0,1,12040.0,1009585,6.0,159 -1302524,1630137723,8200474,2,75,-9.0,1,1.0,1,11400.0,1073094,6.0,159 -1302525,1630137724,8202096,2,38,-9.0,1,1.0,1,47000.0,1001264,6.0,159 -1302526,1630137725,8198864,2,40,1.0,4,1.0,1,5000.0,1073094,3.0,159 -1302527,1630137726,8198768,2,41,-9.0,1,0.0,1,4800.0,1042852,4.0,159 -1302528,1630137727,8201722,2,41,-9.0,1,0.0,1,7350.0,1001264,4.0,159 -1302529,1630137728,8201722,2,41,-9.0,1,0.0,1,7350.0,1001264,4.0,159 -1302530,1630137729,8201722,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,159 -1302531,1630137730,8201616,2,30,-9.0,1,1.0,1,10400.0,1073094,4.0,159 -1302532,1630137731,8201616,2,28,-9.0,1,1.0,1,3200.0,1001264,6.0,159 -1302533,1630137732,8201722,2,30,-9.0,1,1.0,1,10400.0,1073094,4.0,159 -1302534,1630137733,8201722,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,159 -1302535,1630137734,8197602,2,38,-9.0,1,1.0,1,7000.0,1073094,4.0,159 -1302536,1630137735,8201836,2,43,4.0,6,1.0,1,5900.0,1025215,3.0,159 -1302537,1630137736,8201518,2,31,2.0,3,1.0,1,12000.0,1009585,3.0,159 -1302538,1630137737,8198768,2,36,2.0,3,1.0,1,290.0,1042852,3.0,159 -1302539,1630137738,8202096,2,28,1.0,2,1.0,1,13000.0,1073094,3.0,159 -1302540,1630137739,8201357,2,28,1.0,2,1.0,1,0.0,1001264,3.0,159 -1302541,1630137740,8201189,2,31,2.0,4,1.0,1,10000.0,1009585,2.0,159 -1302542,1630137741,8195339,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,159 -1302543,1630137742,8198768,2,27,2.0,3,1.0,1,23000.0,1009585,2.0,159 -1302544,1630137743,8198768,2,27,2.0,4,1.0,1,23000.0,1009585,2.0,159 -1302545,1630137744,8200473,2,30,3.0,4,1.0,1,5150.0,1009585,3.0,159 -1302546,1630137745,8198768,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,159 -1302547,1630137746,8201616,2,27,-9.0,1,1.0,1,26000.0,1001264,6.0,159 -1302548,1630137747,8201722,2,35,-9.0,1,1.0,1,5600.0,1073094,4.0,159 -1302549,1630137748,8201722,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,159 -1302550,1630137749,8201411,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,159 -1302551,1630137750,8199351,2,30,-9.0,1,1.0,1,15000.0,1009585,4.0,159 -1302552,1630137751,8195310,2,32,4.0,6,1.0,1,5800.0,1001264,3.0,159 -1302553,1630137752,8198713,2,38,1.0,3,1.0,1,24000.0,1009585,3.0,159 -1302554,1630137753,8201726,2,38,1.0,2,1.0,1,24000.0,1009585,3.0,159 -1302555,1630137754,8195430,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,159 -1302556,1630137755,8197826,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,159 -1302557,1630137756,8198737,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,159 -1302558,1630137757,8201411,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,159 -1302559,1630137758,8197887,2,40,1.0,2,1.0,1,22400.0,1042852,3.0,159 -1302560,1630137759,8198919,2,29,1.0,2,1.0,1,15000.0,1025215,3.0,159 -1302561,1630137760,8200016,2,42,-9.0,2,2.0,1,8500.0,1009585,3.0,159 -1302562,1630137761,8201589,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,159 -1302563,1630137762,8198166,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,159 -1302564,1630137763,8201722,2,59,-9.0,1,1.0,1,32000.0,1042852,4.0,159 -1302565,1630137764,8201616,2,53,-9.0,1,0.0,1,8400.0,1042852,6.0,159 -1302566,1630137765,8201616,2,47,-9.0,1,0.0,1,16300.0,1073094,4.0,159 -1302567,1630137766,8201616,2,64,-9.0,1,0.0,1,12300.0,1042852,4.0,159 -1302568,1630137767,8195430,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,159 -1302569,1630137768,8198768,2,58,-9.0,1,0.0,1,16200.0,1025215,4.0,159 -1302570,1630137769,8195489,2,49,-9.0,1,0.0,1,0.0,1025215,4.0,159 -1302571,1630137770,8198132,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,159 -1302572,1630137771,8201345,2,49,-9.0,1,0.0,1,0.0,1025215,4.0,159 -1302573,1630137772,8201816,2,50,-9.0,1,0.0,1,8100.0,1073094,4.0,159 -1302574,1630137773,8198768,2,53,-9.0,1,0.0,1,8800.0,1001264,4.0,159 -1302575,1630137774,8198429,2,53,-9.0,1,0.0,1,0.0,1042852,4.0,159 -1302576,1630137775,8201616,2,63,-9.0,1,1.0,1,1780.0,1009585,6.0,159 -1302577,1630137776,8201616,2,55,-9.0,1,1.0,1,8500.0,1025215,4.0,159 -1302578,1630137777,8199343,2,45,-9.0,1,1.0,1,20500.0,1042852,4.0,159 -1302579,1630137778,8201722,2,64,-9.0,1,1.0,1,12400.0,1001264,4.0,159 -1302580,1630137779,8201616,2,63,-9.0,1,1.0,1,12000.0,1042852,6.0,159 -1302581,1630137780,8201722,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,159 -1302582,1630137781,8198696,2,62,-9.0,1,1.0,1,0.0,1042852,4.0,159 -1302583,1630137782,8200521,2,57,-9.0,2,0.0,1,14200.0,1009585,1.0,159 -1302584,1630137783,8198768,2,56,-9.0,2,1.0,1,15600.0,1009585,1.0,159 -1302585,1630137784,8201616,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,159 -1302586,1630137785,8198768,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,159 -1302587,1630137786,8201411,2,62,-9.0,1,0.0,1,29000.0,1009585,6.0,159 -1302588,1630137787,8198768,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,159 -1302589,1630137788,8198768,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,159 -1302590,1630137789,8198768,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,159 -1302591,1630137790,8198768,2,59,-9.0,1,1.0,1,2800.0,1001264,4.0,159 -1302592,1630137791,8200204,2,54,-9.0,1,1.0,1,21900.0,1025215,4.0,159 -1302593,1630137792,8198683,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,159 -1302594,1630137793,8201616,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,159 -1302595,1630137794,8199315,2,58,-9.0,2,1.0,1,26500.0,1073094,3.0,159 -1302596,1630137795,8200900,2,58,-9.0,2,1.0,1,26500.0,1073094,3.0,159 -1302597,1630137796,8201722,2,69,-9.0,1,0.0,1,17000.0,1025215,4.0,159 -1302598,1630137797,8201616,2,94,-9.0,1,0.0,1,14300.0,1009585,4.0,159 -1302599,1630137798,8200855,2,66,-9.0,1,0.0,1,9000.0,1001264,4.0,159 -1302600,1630137799,8198768,2,78,-9.0,1,0.0,1,9100.0,1001264,6.0,159 -1302601,1630137800,8201722,2,85,-9.0,1,1.0,1,14100.0,1009585,6.0,159 -1302602,1630137801,8198768,2,66,-9.0,1,1.0,1,11000.0,1042852,6.0,159 -1302603,1630137802,8201078,2,83,-9.0,1,1.0,1,21900.0,1042852,4.0,159 -1302604,1630137803,8200204,2,80,-9.0,1,1.0,1,8530.0,1042852,6.0,159 -1302605,1630137804,8201157,2,32,2.0,4,1.0,1,23000.0,1001264,2.0,159 -1302606,1630137805,8201357,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,159 -1302607,1630137806,8198768,2,81,-9.0,1,1.0,1,8400.0,1009585,4.0,159 -1302608,1630137807,8200356,2,59,-9.0,3,3.0,1,13400.0,1025215,1.0,159 -1302609,1630137808,8200214,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,159 -1302610,1630137809,8198768,2,31,1.0,3,1.0,1,7500.0,1009585,2.0,159 -1302611,1630137810,8193525,2,50,-9.0,2,1.0,1,25400.0,1001264,3.0,159 -1302612,1630137811,8195404,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,159 -1302613,1630137812,8198768,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,159 -1302614,1630137813,8200169,2,42,-9.0,1,2.0,1,8600.0,1009585,4.0,159 -1302615,1630137814,8201722,2,53,-9.0,2,2.0,1,6500.0,1025215,5.0,159 -1302616,1630137815,8200411,2,50,-9.0,2,2.0,1,20800.0,1073094,1.0,159 -1302617,1630137816,8201616,2,47,1.0,2,1.0,1,18000.0,1073094,3.0,159 -1302618,1630137817,8201910,2,26,1.0,2,0.0,1,3600.0,1025215,3.0,159 -1302619,1630137818,8201836,2,61,-9.0,1,1.0,1,30000.0,1073094,4.0,159 -1302620,1630137819,8198768,2,26,2.0,3,0.0,1,11100.0,1009585,3.0,159 -1302621,1630137820,8198132,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,159 -1302622,1630137821,8200204,2,61,-9.0,2,1.0,1,2800.0,1001264,1.0,159 -1302623,1630137822,8197709,2,44,-9.0,2,1.0,1,18000.0,1042852,2.0,159 -1302624,1630137823,8200512,2,51,-9.0,4,1.0,1,26800.0,1025215,5.0,159 -1302625,1630137824,8201130,2,58,1.0,3,1.0,1,23160.0,1025215,1.0,159 -1302626,1630137825,8201910,2,32,1.0,3,2.0,1,23400.0,1009585,3.0,159 -1302627,1630137826,8199315,2,40,-9.0,1,1.0,1,22000.0,1001264,6.0,159 -1302628,1630137827,8200187,2,57,-9.0,3,1.0,1,16500.0,1042852,1.0,159 -1302629,1630137828,8199371,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,159 -1302630,1630137829,8201411,2,64,-9.0,1,1.0,1,12400.0,1001264,4.0,159 -1302631,1630137830,8201845,2,37,2.0,4,1.0,1,7800.0,1009585,1.0,159 -1302632,1630137831,8200214,2,43,-9.0,2,1.0,1,20000.0,1025215,2.0,159 -1302633,1630137832,8200704,2,63,1.0,2,1.0,1,10000.0,1001264,3.0,159 -1302634,1630137833,8200578,2,61,1.0,2,1.0,1,18000.0,1042852,3.0,159 -1302635,1630137834,8200669,2,35,3.0,4,0.0,1,8700.0,1009585,3.0,159 -1302636,1630137835,8200685,2,43,4.0,6,1.0,1,5900.0,1025215,3.0,159 -1302637,1630137836,8200805,2,36,1.0,3,2.0,1,29800.0,1073094,7.0,159 -1302638,1630137837,8198713,2,37,1.0,2,1.0,1,4800.0,1042852,3.0,159 -1302639,1630137838,8199498,2,69,-9.0,1,0.0,1,18700.0,1042852,6.0,159 -1302640,1630137839,8200434,2,53,-9.0,1,0.0,1,9600.0,1001264,4.0,159 -1302641,1630137840,8200204,2,46,3.0,6,1.0,1,5760.0,1073094,1.0,159 -1302642,1630137841,8200780,2,56,1.0,2,1.0,1,9000.0,1009585,2.0,159 -1302643,1630137842,8201687,2,38,-9.0,1,1.0,1,40000.0,1073094,4.0,159 -1302644,1630137843,8200488,2,55,3.0,4,1.0,1,24500.0,1025215,3.0,159 -1302645,1630137844,8201175,2,42,1.0,6,0.0,1,22170.0,1042852,3.0,159 -1302646,1630137845,8200685,2,40,1.0,2,1.0,1,19900.0,1073094,3.0,159 -1302647,1630137846,8200635,2,36,3.0,6,1.0,1,31330.0,1001264,1.0,159 -1302648,1630137847,8200998,2,34,-9.0,1,1.0,1,8920.0,1009585,4.0,159 -1302649,1630137848,8200169,2,59,-9.0,3,1.0,1,14600.0,1001264,3.0,159 -1302650,1630137849,8202096,2,73,-9.0,2,1.0,1,23600.0,1073094,3.0,159 -1302651,1630137850,8197990,2,52,-9.0,2,0.0,1,15000.0,1025215,5.0,159 -1302652,1630137851,8198797,2,45,1.0,4,3.0,1,22900.0,1025215,3.0,159 -1302653,1630137852,8200884,2,47,-9.0,1,0.0,1,24000.0,1073094,4.0,159 -1302654,1630137853,8200964,2,42,-9.0,2,1.0,1,8000.0,1025215,2.0,159 -1302655,1630137854,8200445,2,36,2.0,4,2.0,1,11400.0,1042852,3.0,159 -1302656,1630137855,8200933,2,54,-9.0,1,2.0,1,3500.0,1025215,6.0,159 -1302657,1630137856,8198768,2,51,1.0,2,0.0,1,8400.0,1042852,3.0,159 -1302658,1630137857,8199211,2,44,-9.0,1,0.0,1,4600.0,1009585,4.0,159 -1302659,1630137858,8199769,2,89,-9.0,2,1.0,1,20500.0,1073094,1.0,159 -1302660,1630137859,8197543,2,35,-9.0,2,1.0,1,32000.0,1025215,5.0,159 -1302661,1630137860,8199489,2,48,-9.0,2,4.0,1,11490.0,1009585,5.0,159 -1302662,1630137861,8195430,2,25,2.0,3,1.0,1,26000.0,1073094,3.0,159 -1302663,1630137862,8200855,2,38,5.0,6,1.0,1,48600.0,1009585,3.0,159 -1302664,1630137863,8202096,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,159 -1302665,1630137864,8198132,2,64,-9.0,1,0.0,1,15000.0,1025215,4.0,159 -1302666,1630137865,8198919,2,31,-9.0,2,1.0,1,29500.0,1025215,1.0,159 -1302667,1630137866,8200900,2,42,-9.0,4,3.0,1,0.0,1009585,1.0,159 -1302668,1630137867,8201572,2,39,1.0,3,0.0,1,14000.0,1001264,3.0,159 -1302669,1630137868,8198375,2,46,-9.0,3,1.0,1,21000.0,1009585,3.0,159 -1302670,1630137869,8200187,2,44,1.0,2,2.0,1,7300.0,1073094,3.0,159 -1302671,1630137870,8200437,2,45,5.0,6,1.0,1,28100.0,1009585,3.0,159 -1302672,1630137871,8197826,2,54,-9.0,3,0.0,1,17700.0,1042852,5.0,159 -1302673,1630137872,8200437,2,44,1.0,3,2.0,1,57000.0,1009585,1.0,159 -1302674,1630137873,8200832,2,63,-9.0,2,2.0,1,16800.0,1025215,3.0,159 -1302675,1630137874,8201092,2,88,-9.0,1,2.0,1,2500.0,1001264,4.0,159 -1302676,1630137875,8199958,2,47,1.0,4,1.0,1,21300.0,1001264,3.0,159 -1302677,1630137876,8195424,2,32,4.0,6,1.0,1,5800.0,1001264,3.0,159 -1302678,1630137877,8203801,2,41,2.0,4,2.0,1,104000.0,1073094,1.0,159 -1302679,1630137878,8195467,1,28,-9.0,1,1.0,1,116000.0,1009585,4.0,159 -1302680,1630137879,8200282,2,38,2.0,4,2.0,1,100000.0,1073094,1.0,159 -1302681,1630137880,8201256,2,43,1.0,4,2.0,1,146950.0,1009585,1.0,159 -1302682,1630137881,8203520,2,38,-9.0,1,1.0,1,40000.0,1073094,4.0,159 -1302683,1630137882,8195482,2,40,-9.0,1,1.0,1,56000.0,1073094,6.0,159 -1302684,1630137883,8201568,2,35,3.0,4,1.0,1,20000.0,1073094,3.0,159 -1302685,1630137884,8201282,2,36,3.0,4,1.0,1,25700.0,1009585,3.0,159 -1302686,1630137885,8203866,2,40,-9.0,1,1.0,1,0.0,1009585,4.0,159 -1302687,1630137886,8200778,2,40,-9.0,1,1.0,1,0.0,1009585,4.0,159 -1302688,1630137887,8200351,2,39,2.0,8,1.0,1,21100.0,1025215,3.0,159 -1302689,1630137888,8202622,2,32,2.0,3,1.0,1,20900.0,1009585,3.0,159 -1302690,1630137889,8203141,2,64,-9.0,2,1.0,1,102000.0,1042852,1.0,159 -1302691,1630137890,8202289,2,48,-9.0,2,3.0,1,163200.0,1042852,3.0,159 -1302692,1630137891,8201250,2,63,1.0,4,1.0,1,100000.0,1073094,3.0,159 -1302693,1630137892,8203552,2,51,2.0,4,1.0,1,102680.0,1009585,2.0,159 -1302694,1630137893,8202023,2,63,1.0,4,1.0,1,100000.0,1073094,3.0,159 -1302695,1630137894,8203103,2,63,1.0,4,1.0,1,100000.0,1073094,3.0,159 -1302696,1630137895,8203311,2,47,-9.0,1,1.0,1,106000.0,1001264,6.0,159 -1302697,1630137896,8203799,1,45,-9.0,1,1.0,1,128000.0,1009585,4.0,159 -1302698,1630137897,8201769,2,56,-9.0,2,1.0,1,102000.0,1042852,1.0,159 -1302699,1630137898,8199711,2,62,-9.0,2,2.0,1,105000.0,1042852,3.0,159 -1302700,1630137899,8202875,2,48,2.0,4,4.0,1,153820.0,1025215,1.0,159 -1302701,1630137900,8201231,2,48,2.0,4,4.0,1,153820.0,1025215,1.0,159 -1302702,1630137901,8202780,2,47,-9.0,3,1.0,1,139600.0,1009585,1.0,159 -1302703,1630137902,8202267,2,61,-9.0,3,3.0,1,184000.0,1025215,2.0,159 -1302704,1630137903,8203993,2,61,-9.0,3,3.0,1,184000.0,1025215,2.0,159 -1302705,1630137904,8198018,2,50,1.0,3,3.0,1,175140.0,1025215,3.0,159 -1302706,1630137905,8201596,2,62,-9.0,2,2.0,1,453000.0,1073094,1.0,159 -1302707,1630137906,8203071,2,60,-9.0,2,2.0,1,257200.0,1042852,1.0,159 -1302708,1630137907,8203035,2,50,1.0,4,1.0,1,36550.0,1001264,1.0,159 -1302709,1630137908,8202030,2,50,1.0,4,1.0,1,36550.0,1001264,1.0,159 -1302710,1630137909,8203223,2,50,1.0,4,1.0,1,36550.0,1001264,1.0,159 -1302711,1630137910,8202057,2,63,2.0,4,2.0,1,57000.0,1073094,1.0,159 -1302712,1630137911,8203340,2,64,-9.0,1,1.0,1,40000.0,1025215,6.0,159 -1302713,1630137912,8200324,2,64,-9.0,1,1.0,1,40000.0,1025215,6.0,159 -1302714,1630137913,8202989,2,62,-9.0,1,1.0,1,30060.0,1025215,6.0,159 -1302715,1630137914,8203077,2,55,-9.0,1,1.0,1,52000.0,1042852,6.0,159 -1302716,1630137915,8201333,2,62,-9.0,1,2.0,1,51200.0,1042852,4.0,159 -1302717,1630137916,8201862,2,62,-9.0,1,2.0,1,51200.0,1042852,4.0,159 -1302718,1630137917,8203835,2,56,-9.0,2,2.0,1,43000.0,1001264,1.0,159 -1302719,1630137918,8201143,2,61,-9.0,2,2.0,1,51200.0,1001264,1.0,159 -1302720,1630137919,8202029,2,46,2.0,4,2.0,1,33800.0,1009585,3.0,159 -1302721,1630137920,8203656,2,56,-9.0,1,1.0,1,37800.0,1073094,4.0,159 -1302722,1630137921,8202855,2,55,-9.0,1,1.0,1,58000.0,1009585,6.0,159 -1302723,1630137922,8202854,2,55,-9.0,1,1.0,1,58000.0,1009585,6.0,159 -1302724,1630137923,8195377,2,56,-9.0,1,1.0,1,55000.0,1001264,6.0,159 -1302725,1630137924,8200611,2,54,-9.0,1,1.0,1,56000.0,1001264,6.0,159 -1302726,1630137925,8202545,2,56,-9.0,1,1.0,1,37800.0,1073094,4.0,159 -1302727,1630137926,8203384,2,55,-9.0,1,1.0,1,58000.0,1009585,6.0,159 -1302728,1630137927,8203413,2,54,-9.0,1,1.0,1,56000.0,1001264,6.0,159 -1302729,1630137928,8199865,2,61,-9.0,1,1.0,1,31100.0,1025215,6.0,159 -1302730,1630137929,8202274,2,61,-9.0,1,1.0,1,31100.0,1025215,6.0,159 -1302731,1630137930,8202285,2,64,-9.0,2,1.0,1,43100.0,1042852,3.0,159 -1302732,1630137931,8200692,2,64,-9.0,3,2.0,1,59000.0,1042852,1.0,159 -1302733,1630137932,8201378,2,55,-9.0,3,2.0,1,38900.0,1001264,1.0,159 -1302734,1630137933,8201857,2,57,-9.0,2,2.0,1,54000.0,1025215,1.0,159 -1302735,1630137934,8203123,2,63,-9.0,2,2.0,1,59200.0,1025215,3.0,159 -1302736,1630137935,8201742,2,50,2.0,4,1.0,1,41500.0,1009585,3.0,159 -1302737,1630137936,8203473,2,50,2.0,4,1.0,1,41500.0,1009585,3.0,159 -1302738,1630137937,8202527,2,59,-9.0,2,1.0,1,59500.0,1025215,1.0,159 -1302739,1630137938,8202657,2,54,-9.0,1,1.0,1,86000.0,1042852,4.0,159 -1302740,1630137939,8203777,2,57,-9.0,1,0.0,1,8400.0,1025215,6.0,159 -1302741,1630137940,8201172,2,61,-9.0,1,0.0,1,14400.0,1073094,6.0,159 -1302742,1630137941,8195488,2,50,-9.0,1,0.0,1,2500.0,1001264,6.0,159 -1302743,1630137942,8201776,2,58,-9.0,1,0.0,1,0.0,1001264,4.0,159 -1302744,1630137943,8200289,2,58,-9.0,1,0.0,1,0.0,1001264,4.0,159 -1302745,1630137944,8201550,2,57,-9.0,1,0.0,1,10800.0,1042852,6.0,159 -1302746,1630137945,8201975,2,58,-9.0,1,1.0,1,8700.0,1009585,4.0,159 -1302747,1630137946,8202745,2,46,-9.0,1,1.0,1,0.0,1025215,4.0,159 -1302748,1630137947,8202503,2,63,-9.0,1,1.0,1,920.0,1001264,6.0,159 -1302749,1630137948,8197954,2,60,-9.0,1,1.0,1,13000.0,1042852,6.0,159 -1302750,1630137949,8201778,2,58,-9.0,1,1.0,1,18000.0,1025215,6.0,159 -1302751,1630137950,8201125,2,63,-9.0,1,1.0,1,920.0,1001264,6.0,159 -1302752,1630137951,8199946,2,51,-9.0,1,1.0,1,1700.0,1042852,6.0,159 -1302753,1630137952,8201720,2,60,-9.0,1,1.0,1,26800.0,1001264,4.0,159 -1302754,1630137953,8202406,2,58,-9.0,1,1.0,1,18000.0,1025215,6.0,159 -1302755,1630137954,8197992,2,62,-9.0,1,1.0,1,25700.0,1009585,4.0,159 -1302756,1630137955,8201392,2,53,-9.0,1,1.0,1,4100.0,1025215,4.0,159 -1302757,1630137956,8202810,2,60,-9.0,1,1.0,1,13000.0,1042852,6.0,159 -1302758,1630137957,8202154,2,48,4.0,7,1.0,1,0.0,1001264,3.0,159 -1302759,1630137958,8202888,2,58,-9.0,2,0.0,1,7200.0,1042852,5.0,159 -1302760,1630137959,8203281,2,59,-9.0,2,1.0,1,22100.0,1025215,1.0,159 -1302761,1630137960,8201132,2,48,-9.0,2,1.0,1,22150.0,1009585,3.0,159 -1302762,1630137961,8202247,2,54,-9.0,2,1.0,1,18400.0,1073094,3.0,159 -1302763,1630137962,8199867,2,58,-9.0,2,1.0,1,0.0,1001264,3.0,159 -1302764,1630137963,8201807,2,54,-9.0,2,1.0,1,18400.0,1073094,3.0,159 -1302765,1630137964,8203497,2,59,-9.0,2,1.0,1,22100.0,1025215,1.0,159 -1302766,1630137965,8195443,2,45,1.0,2,1.0,1,0.0,1042852,3.0,159 -1302767,1630137966,8203097,2,47,-9.0,1,0.0,1,24000.0,1073094,4.0,159 -1302768,1630137967,8201773,2,50,-9.0,1,1.0,1,25000.0,1009585,6.0,159 -1302769,1630137968,8203217,2,55,-9.0,1,1.0,1,10000.0,1001264,6.0,159 -1302770,1630137969,8201944,2,55,-9.0,1,1.0,1,10000.0,1001264,6.0,159 -1302771,1630137970,8203459,2,61,-9.0,1,1.0,1,16000.0,1001264,6.0,159 -1302772,1630137971,8195451,2,65,-9.0,4,1.0,1,107500.0,1009585,1.0,159 -1302773,1630137972,8202664,2,65,-9.0,4,1.0,1,107500.0,1009585,1.0,159 -1302774,1630137973,8201873,2,76,-9.0,1,1.0,1,31410.0,1042852,4.0,159 -1302775,1630137974,8203609,2,70,-9.0,1,1.0,1,31800.0,1001264,6.0,159 -1302776,1630137975,8203032,2,65,-9.0,1,1.0,1,34500.0,1009585,4.0,159 -1302777,1630137976,8200806,2,79,-9.0,2,1.0,1,40160.0,1001264,5.0,159 -1302778,1630137977,8203076,2,79,-9.0,2,1.0,1,40160.0,1001264,5.0,159 -1302779,1630137978,8203043,2,75,-9.0,2,2.0,1,37300.0,1042852,1.0,159 -1302780,1630137979,8202869,2,80,-9.0,4,1.0,1,39200.0,1073094,3.0,159 -1302781,1630137980,8202134,2,93,-9.0,1,0.0,1,19100.0,1025215,6.0,159 -1302782,1630137981,8203780,2,79,-9.0,1,0.0,1,24300.0,1073094,6.0,159 -1302783,1630137982,8202588,2,65,-9.0,1,1.0,1,610.0,1001264,6.0,159 -1302784,1630137983,8202119,2,87,-9.0,1,1.0,1,14900.0,1025215,6.0,159 -1302785,1630137984,8201427,2,80,-9.0,1,1.0,1,8900.0,1009585,4.0,159 -1302786,1630137985,8201650,2,77,-9.0,1,1.0,1,0.0,1042852,6.0,159 -1302787,1630137986,8197952,2,87,-9.0,1,1.0,1,19200.0,1073094,6.0,159 -1302788,1630137987,8200896,2,66,-9.0,1,1.0,1,24600.0,1009585,6.0,159 -1302789,1630137988,8203725,2,82,-9.0,1,1.0,1,29600.0,1009585,6.0,159 -1302790,1630137989,8201192,2,81,-9.0,1,1.0,1,25100.0,1073094,4.0,159 -1302791,1630137990,8199412,2,87,-9.0,2,1.0,1,18400.0,1009585,1.0,159 -1302792,1630137991,8202464,2,26,2.0,4,1.0,1,36800.0,1001264,3.0,159 -1302793,1630137992,8201581,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,159 -1302794,1630137993,8201581,2,32,-9.0,1,1.0,1,48000.0,1025215,6.0,159 -1302795,1630137994,8201581,2,26,-9.0,1,1.0,1,41660.0,1042852,6.0,159 -1302796,1630137995,8201581,2,29,-9.0,1,1.0,1,50000.0,1001264,6.0,159 -1302797,1630137996,8202625,2,43,1.0,2,1.0,1,40000.0,1001264,3.0,159 -1302798,1630137997,8203192,2,38,3.0,4,0.0,1,15000.0,1001264,3.0,159 -1302799,1630137998,8201772,2,37,2.0,4,1.0,1,7800.0,1009585,1.0,159 -1302800,1630137999,8201581,2,28,-9.0,1,0.0,1,0.0,1009585,4.0,159 -1302801,1630138000,8201581,2,34,-9.0,1,0.0,1,10800.0,1025215,4.0,159 -1302802,1630138001,8201700,2,29,-9.0,1,1.0,1,0.0,1001264,4.0,159 -1302803,1630138002,8902277,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,159 -1302804,1630138003,8902277,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,159 -1302805,1630138004,8202914,2,26,2.0,3,1.0,1,9000.0,1042852,3.0,159 -1302806,1630138005,8201581,2,31,1.0,2,1.0,1,22900.0,1042852,2.0,159 -1302807,1630138006,8202283,2,34,3.0,4,1.0,1,10000.0,1009585,3.0,159 -1302808,1630138007,8203587,2,30,3.0,4,1.0,1,5150.0,1009585,3.0,159 -1302809,1630138008,8201172,2,44,2.0,4,1.0,1,7200.0,1009585,3.0,159 -1302810,1630138009,8201965,2,30,-9.0,1,1.0,1,15000.0,1009585,4.0,159 -1302811,1630138010,8201581,2,27,-9.0,1,1.0,1,26000.0,1001264,6.0,159 -1302812,1630138011,8202789,2,38,1.0,3,1.0,1,16200.0,1001264,1.0,159 -1302813,1630138012,8201700,2,25,1.0,2,1.0,1,4500.0,1042852,3.0,159 -1302814,1630138013,8195482,2,64,-9.0,1,1.0,1,50700.0,1025215,4.0,159 -1302815,1630138014,8201581,2,59,-9.0,1,1.0,1,32000.0,1042852,4.0,159 -1302816,1630138015,8201581,2,54,-9.0,1,1.0,1,34600.0,1042852,4.0,159 -1302817,1630138016,8201873,2,48,-9.0,1,1.0,1,30000.0,1073094,4.0,159 -1302818,1630138017,8203334,2,46,-9.0,1,1.0,1,30000.0,1042852,4.0,159 -1302819,1630138018,8195482,2,50,-9.0,1,1.0,1,50000.0,1073094,4.0,159 -1302820,1630138019,8201581,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,159 -1302821,1630138020,8203505,2,50,-9.0,4,1.0,1,37500.0,1042852,7.0,159 -1302822,1630138021,8202232,2,48,-9.0,1,0.0,1,12200.0,1009585,6.0,159 -1302823,1630138022,8202086,2,52,-9.0,1,0.0,1,8800.0,1001264,6.0,159 -1302824,1630138023,8202363,2,46,-9.0,1,0.0,1,1770.0,1042852,6.0,159 -1302825,1630138024,8201581,2,56,-9.0,1,0.0,1,0.0,1009585,6.0,159 -1302826,1630138025,8902277,2,60,-9.0,1,0.0,1,13300.0,1001264,6.0,159 -1302827,1630138026,8902277,2,59,-9.0,1,0.0,1,19000.0,1001264,6.0,159 -1302828,1630138027,8202503,2,46,-9.0,1,0.0,1,4800.0,1001264,6.0,159 -1302829,1630138028,8201581,2,64,-9.0,1,0.0,1,9500.0,1025215,6.0,159 -1302830,1630138029,8201581,2,60,-9.0,1,0.0,1,2000.0,1042852,6.0,159 -1302831,1630138030,8203397,2,50,-9.0,1,0.0,1,8600.0,1042852,6.0,159 -1302832,1630138031,8201581,2,54,-9.0,1,0.0,1,0.0,1042852,4.0,159 -1302833,1630138032,8200682,2,58,-9.0,1,0.0,1,12000.0,1042852,4.0,159 -1302834,1630138033,8195458,2,46,-9.0,1,0.0,1,4800.0,1001264,6.0,159 -1302835,1630138034,8202283,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,159 -1302836,1630138035,8201581,2,58,-9.0,1,0.0,1,4800.0,1042852,4.0,159 -1302837,1630138036,8195458,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,159 -1302838,1630138037,8201581,2,53,-9.0,1,1.0,1,22600.0,1001264,4.0,159 -1302839,1630138038,8902277,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,159 -1302840,1630138039,8201581,2,63,-9.0,1,1.0,1,17100.0,1001264,6.0,159 -1302841,1630138040,8902277,2,63,-9.0,1,1.0,1,12000.0,1042852,6.0,159 -1302842,1630138041,8201807,2,46,-9.0,1,1.0,1,0.0,1073094,6.0,159 -1302843,1630138042,8203397,2,62,-9.0,1,1.0,1,26000.0,1073094,6.0,159 -1302844,1630138043,8200487,2,55,-9.0,2,0.0,1,0.0,1025215,5.0,159 -1302845,1630138044,8902277,2,58,-9.0,2,0.0,1,16310.0,1009585,1.0,159 -1302846,1630138045,8201700,2,55,-9.0,2,1.0,1,28600.0,1009585,1.0,159 -1302847,1630138046,8202810,2,58,-9.0,2,1.0,1,10000.0,1001264,5.0,159 -1302848,1630138047,8203483,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,159 -1302849,1630138048,8201700,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,159 -1302850,1630138049,8201581,2,64,-9.0,1,0.0,1,10170.0,1001264,6.0,159 -1302851,1630138050,8203483,2,53,-9.0,1,1.0,1,12900.0,1025215,6.0,159 -1302852,1630138051,8201945,2,46,-9.0,1,1.0,1,1000.0,1001264,6.0,159 -1302853,1630138052,8201581,2,59,-9.0,1,1.0,1,2800.0,1001264,4.0,159 -1302854,1630138053,8202965,2,50,-9.0,2,1.0,1,20480.0,1073094,3.0,159 -1302855,1630138054,8201581,2,85,-9.0,1,0.0,1,13200.0,1025215,6.0,159 -1302856,1630138055,8201581,2,86,-9.0,1,0.0,1,12300.0,1042852,6.0,159 -1302857,1630138056,8203734,2,76,-9.0,1,1.0,1,23400.0,1025215,4.0,159 -1302858,1630138057,8202391,2,63,-9.0,2,2.0,1,16800.0,1025215,3.0,159 -1302859,1630138058,8201971,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,159 -1302860,1630138059,8202106,2,48,1.0,4,1.0,1,26000.0,1025215,1.0,159 -1302861,1630138060,8203937,2,32,1.0,3,1.0,1,10000.0,1009585,1.0,159 -1302862,1630138061,8202574,2,51,-9.0,4,1.0,1,26800.0,1025215,5.0,159 -1302863,1630138062,8200925,2,43,1.0,2,1.0,1,34800.0,1001264,3.0,159 -1302864,1630138063,8201700,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,159 -1302865,1630138064,8202978,2,65,-9.0,1,0.0,1,20400.0,1042852,1.0,159 -1302866,1630138065,8201716,2,37,-9.0,2,1.0,1,35500.0,1009585,3.0,159 -1302867,1630138066,8202608,2,59,-9.0,2,1.0,1,22100.0,1025215,1.0,159 -1302868,1630138067,8201781,2,58,-9.0,1,1.0,1,109000.0,1073094,6.0,159 -1302869,1630138068,8202299,2,44,1.0,4,1.0,1,33790.0,1009585,3.0,159 -1302870,1630138069,8203565,2,61,-9.0,2,2.0,1,12800.0,1073094,7.0,159 -1302871,1630138070,8202716,2,55,-9.0,4,2.0,1,58500.0,1025215,1.0,159 -1302872,1630138071,8199888,2,62,-9.0,2,1.0,1,41800.0,1009585,7.0,159 -1302873,1630138072,8202356,2,46,-9.0,3,0.0,1,23400.0,1001264,1.0,159 -1302874,1630138073,8201920,2,93,-9.0,2,1.0,1,125100.0,1025215,3.0,159 -1302875,1630138074,8202729,1,59,-9.0,1,1.0,1,11900.0,1001264,4.0,159 -1302876,1630138075,8195405,2,79,-9.0,2,1.0,1,47800.0,1042852,3.0,159 -1302877,1630138076,8201704,2,47,-9.0,3,0.0,1,13300.0,1042852,3.0,159 -1302878,1630138077,8201052,2,64,-9.0,2,1.0,1,102700.0,1009585,3.0,159 -1302879,1630138078,8202324,2,29,3.0,4,1.0,1,17800.0,1025215,3.0,159 -1302880,1630138079,8202540,2,50,-9.0,3,0.0,1,34000.0,1042852,2.0,159 -1302881,1630138080,8202533,2,49,1.0,3,1.0,1,21300.0,1042852,3.0,159 -1302882,1630138081,8202735,2,41,5.0,8,1.0,1,37800.0,1001264,1.0,159 -1302883,1630138082,8200857,2,71,-9.0,1,1.0,1,115600.0,1073094,6.0,159 -1302884,1630138083,8203734,2,62,-9.0,1,0.0,1,35000.0,1073094,6.0,159 -1302885,1630138084,8202278,2,66,-9.0,4,2.0,1,30600.0,1009585,2.0,159 -1302886,1630138085,8197930,2,40,-9.0,1,1.0,1,800.0,1042852,4.0,159 -1302887,1630138086,8202476,2,79,-9.0,2,1.0,1,40160.0,1001264,5.0,159 -1302888,1630138087,8201581,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,159 -1302889,1630138088,8202150,2,64,-9.0,1,1.0,1,32000.0,1042852,6.0,159 -1302890,1630138089,8201142,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,159 -1302891,1630138090,8200623,1,31,-9.0,2,2.0,1,136000.0,1073094,1.0,159 -1302892,1630138091,8203134,2,57,1.0,4,2.0,1,41730.0,1042852,1.0,159 -1302893,1630138092,8202626,1,47,-9.0,1,1.0,1,47000.0,1073094,4.0,159 -1302894,1630138093,8203549,2,37,1.0,2,1.0,1,150000.0,1042852,3.0,159 -1302895,1630138094,8902277,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,159 -1302896,1630138095,8202473,2,34,-9.0,2,1.0,1,141000.0,1025215,1.0,159 -1302897,1630138096,8200711,2,69,-9.0,2,2.0,1,49000.0,1009585,2.0,159 -1302898,1630138097,8203075,2,65,-9.0,1,1.0,1,34500.0,1009585,4.0,159 -1302899,1630138098,8201581,2,24,2.0,3,1.0,1,13000.0,1025215,3.0,159 -1302900,1630138099,8202691,2,34,-9.0,2,2.0,1,157000.0,1001264,1.0,159 -1302901,1630138100,8199256,2,30,-9.0,2,1.0,1,21500.0,1025215,3.0,159 -1302902,1630138101,8201509,2,43,-9.0,1,1.0,1,50000.0,1073094,4.0,159 -1302903,1630138102,8203468,2,55,1.0,4,0.0,1,11500.0,1042852,1.0,159 -1302904,1630138103,8203300,2,61,-9.0,1,1.0,1,16000.0,1001264,6.0,159 -1302905,1630138104,8201640,2,62,-9.0,2,2.0,1,105000.0,1042852,3.0,159 -1302906,1630138105,8201991,2,51,1.0,2,1.0,1,2100.0,1025215,3.0,159 -1302907,1630138106,8201395,2,69,-9.0,2,1.0,1,13400.0,1025215,3.0,159 -1302908,1630138107,8201342,2,35,1.0,3,0.0,1,3100.0,1042852,7.0,159 -1302909,1630138108,8198017,2,50,-9.0,3,1.0,1,24400.0,1001264,1.0,159 -1302910,1630138109,8202581,1,31,-9.0,1,1.0,1,44000.0,1001264,6.0,159 -1302911,1630138110,8203964,2,64,-9.0,2,1.0,1,42800.0,1025215,2.0,159 -1302912,1630138111,8201694,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,159 -1302913,1630138112,8203483,2,38,2.0,4,1.0,1,131004.0,1001264,3.0,159 -1302914,1630138113,8202083,2,68,-9.0,4,1.0,1,137700.0,1025215,3.0,159 -1302915,1630138114,8201700,2,49,-9.0,1,1.0,1,3700.0,1073094,6.0,159 -1302916,1630138115,8201321,2,60,-9.0,1,0.0,1,260400.0,1001264,6.0,159 -1302917,1630138116,8200897,2,55,-9.0,3,1.0,1,50000.0,1009585,2.0,159 -1302918,1630138117,8202713,2,60,1.0,2,1.0,1,32200.0,1042852,3.0,159 -1302919,1630138118,8201065,2,59,-9.0,1,2.0,1,54000.0,1009585,6.0,159 -1302920,1630138119,8200388,2,47,1.0,3,1.0,1,21300.0,1001264,3.0,159 -1302921,1630138120,8202158,2,54,-9.0,3,2.0,1,101400.0,1009585,1.0,159 -1302922,1630138121,8195386,2,42,-9.0,1,1.0,1,5000.0,1042852,6.0,159 -1302923,1630138122,8201342,2,47,-9.0,2,1.0,1,19300.0,1042852,7.0,159 -1302924,1630138123,8201581,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,159 -1302925,1630138124,8201172,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,159 -1302926,1630138125,8200771,2,46,1.0,2,1.0,1,0.0,1025215,3.0,159 -1302927,1630138126,8202308,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,159 -1302928,1630138127,8200929,2,44,-9.0,1,0.0,1,4600.0,1009585,4.0,159 -1302929,1630138128,8203431,2,37,2.0,4,1.0,1,41000.0,1001264,1.0,159 -1302930,1630138129,8203345,2,45,-9.0,2,2.0,1,198000.0,1042852,1.0,159 -1302931,1630138130,8201315,1,82,-9.0,1,1.0,1,32000.0,1001264,6.0,159 -1302932,1630138131,8203349,2,61,1.0,3,1.0,1,44600.0,1042852,3.0,159 -1302933,1630138132,8202953,2,38,-9.0,2,1.0,1,32000.0,1042852,3.0,159 -1302934,1630138133,8203236,2,52,-9.0,1,1.0,1,1200.0,1009585,4.0,159 -1302935,1630138134,8202056,2,62,1.0,3,2.0,1,40500.0,1001264,3.0,159 -1302936,1630138135,8203248,2,50,-9.0,2,0.0,1,5100.0,1042852,2.0,159 -1302937,1630138136,8201223,2,63,1.0,4,1.0,1,100000.0,1073094,3.0,159 -1302938,1630138137,8200930,2,38,4.0,7,0.0,1,17100.0,1042852,3.0,159 -1302939,1630138138,8203142,2,36,2.0,4,2.0,1,39400.0,1042852,3.0,159 -1302940,1630138139,8203734,2,78,-9.0,1,1.0,1,11900.0,1001264,6.0,159 -1302941,1630138140,8201700,2,32,-9.0,2,1.0,1,28600.0,1009585,1.0,159 -1302942,1630138141,8203383,2,43,-9.0,1,2.0,1,30000.0,1073094,6.0,159 -1302943,1630138142,8201803,2,47,2.0,4,1.0,1,30300.0,1025215,2.0,159 -1302944,1630138143,8902277,2,36,-9.0,2,0.0,1,8100.0,1073094,7.0,159 -1302945,1630138144,8203489,2,39,2.0,8,1.0,1,21100.0,1025215,3.0,159 -1302946,1630138145,8203167,2,38,3.0,4,1.0,1,13300.0,1073094,3.0,159 -1302947,1630138146,8201906,2,50,1.0,4,3.0,1,237000.0,1025215,1.0,159 -1302948,1630138147,8203261,4,63,-9.0,1,1.0,1,31400.0,1001264,6.0,159 -1302949,1630138148,8200682,2,49,-9.0,2,1.0,1,20000.0,1073094,1.0,159 -1302950,1630138149,8199863,4,52,1.0,4,4.0,1,225650.0,1001264,1.0,159 -1302951,1630138150,8201448,2,61,-9.0,2,0.0,1,16700.0,1073094,7.0,159 -1302952,1630138151,8199881,2,57,-9.0,2,0.0,1,49700.0,1001264,1.0,159 -1302953,1630138152,8201581,4,41,-9.0,1,1.0,1,30000.0,1001264,4.0,159 -1302954,1630138153,8200409,1,61,-9.0,2,1.0,1,28400.0,1042852,3.0,159 -1302955,1630138154,8202230,2,43,1.0,3,2.0,1,50400.0,1042852,1.0,159 -1302956,1630138155,8202459,2,40,-9.0,3,1.0,1,34900.0,1042852,1.0,159 -1302957,1630138156,8202916,2,46,-9.0,1,2.0,1,135800.0,1025215,6.0,159 -1302958,1630138157,8199741,2,56,-9.0,2,2.0,1,3800.0,1025215,3.0,159 -1302959,1630138158,8195408,2,35,5.0,8,1.0,1,24600.0,1073094,2.0,159 -1302960,1630138159,8202216,2,42,-9.0,2,1.0,1,8000.0,1025215,2.0,159 -1302961,1630138160,8195456,1,78,-9.0,1,1.0,1,25200.0,1073094,6.0,159 -1302962,1630138161,8201799,2,73,1.0,4,2.0,1,46100.0,1042852,1.0,159 -1302963,1630138162,8202788,2,63,-9.0,1,0.0,1,32400.0,1009585,6.0,159 -1302964,1630138163,8199599,2,42,3.0,7,0.0,1,55200.0,1025215,3.0,159 -1302965,1630138164,8201072,2,23,2.0,4,0.0,1,7700.0,1009585,3.0,159 -1302966,1630138165,8202089,2,54,-9.0,2,2.0,1,43500.0,1073094,1.0,159 -1302967,1630138166,8197954,2,53,1.0,4,1.0,1,5800.0,1073094,3.0,159 -1302968,1630138167,8202167,2,65,-9.0,2,2.0,1,142590.0,1001264,5.0,159 -1302969,1630138168,8199909,2,71,-9.0,2,3.0,1,105830.0,1042852,1.0,159 -1302970,1630138169,8198013,2,53,-9.0,3,2.0,1,42400.0,1073094,3.0,159 -1302971,1630138170,8197980,2,94,-9.0,1,0.0,1,19000.0,1009585,6.0,159 -1302972,1630138171,8202548,2,58,-9.0,3,2.0,1,36400.0,1001264,1.0,159 -1302973,1630138172,8203093,1,59,-9.0,2,3.0,1,123000.0,1025215,1.0,159 -1302974,1630138173,8202667,2,20,1.0,2,0.0,1,0.0,1009585,3.0,159 -1302975,1630138174,8201009,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,159 -1302976,1630138175,8200039,2,31,-9.0,1,2.0,1,0.0,1073094,6.0,159 -1302977,1630138176,8202566,2,65,-9.0,3,1.0,1,42000.0,1025215,3.0,159 -1302978,1630138177,8202502,2,82,-9.0,3,2.0,1,30600.0,1001264,3.0,159 -1302979,1630138178,8195482,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,159 -1302980,1630138179,8203597,2,43,-9.0,2,2.0,1,225300.0,1001264,1.0,159 -1302981,1630138180,8201581,1,22,-9.0,1,1.0,1,12000.0,1025215,4.0,159 -1302982,1630138181,8203036,2,20,-9.0,1,1.0,1,15000.0,1001264,6.0,159 -1302983,1630138182,8201099,2,94,-9.0,1,0.0,1,43700.0,1073094,6.0,159 -1302984,1630138183,8202363,4,50,-9.0,1,0.0,1,0.0,1042852,6.0,159 -1302985,1630138184,8201581,2,47,1.0,2,1.0,1,104500.0,1001264,3.0,159 -1302986,1630138185,8201830,2,64,-9.0,2,1.0,1,102000.0,1042852,1.0,159 -1302987,1630138186,8201581,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,159 -1302988,1630138187,8202212,2,63,-9.0,2,2.0,1,124500.0,1025215,1.0,159 -1302989,1630138188,8201656,2,45,1.0,3,3.0,1,22900.0,1025215,3.0,159 -1302990,1630138189,8202188,2,53,-9.0,3,1.0,1,105400.0,1042852,2.0,159 -1302991,1630138190,8200245,2,77,-9.0,2,2.0,1,1300.0,1025215,3.0,159 -1302992,1630138191,8203502,4,52,1.0,4,2.0,1,47300.0,1042852,1.0,159 -1302993,1630138192,8203216,2,60,-9.0,1,1.0,1,36000.0,1042852,4.0,159 -1302994,1630138193,8201470,2,76,-9.0,4,2.0,1,113300.0,1001264,3.0,159 -1302995,1630138194,8203457,4,60,-9.0,1,1.0,1,52000.0,1009585,6.0,159 -1302996,1630138195,8202092,2,75,-9.0,2,1.0,1,9300.0,1001264,2.0,159 -1302997,1630138196,8203285,2,37,1.0,2,1.0,1,7900.0,1025215,3.0,159 -1302998,1630138197,8203483,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,159 -1302999,1630138198,8202542,2,61,-9.0,2,0.0,1,53100.0,1025215,5.0,159 -1303000,1630138199,8201581,2,56,-9.0,3,1.0,1,8100.0,1073094,2.0,159 -1303001,1630138200,8202343,2,59,5.0,7,2.0,1,21600.0,1001264,3.0,159 -1303002,1630138201,8201781,2,65,-9.0,3,1.0,1,24400.0,1042852,3.0,159 -1303003,1630138202,8203014,2,64,4.0,9,1.0,1,130400.0,1025215,1.0,159 -1303004,1630138203,8200186,2,63,-9.0,1,1.0,1,38000.0,1042852,4.0,159 -1303005,1630138204,8201584,2,42,-9.0,1,1.0,1,43000.0,1025215,4.0,159 -1303006,1630138205,8202244,2,38,6.0,8,0.0,1,12200.0,1042852,3.0,159 -1303007,1630138206,8203510,2,43,-9.0,2,1.0,1,20000.0,1025215,2.0,159 -1303008,1630138207,8202910,2,57,-9.0,3,1.0,1,16500.0,1042852,1.0,159 -1303009,1630138208,8902277,2,22,3.0,4,1.0,1,18600.0,1001264,3.0,159 -1303010,1630138209,8202694,2,39,4.0,8,2.0,1,32000.0,1042852,1.0,159 -1303011,1630138210,8201581,2,52,-9.0,2,0.0,1,12160.0,1001264,7.0,159 -1303012,1630138211,8201445,2,63,1.0,2,1.0,1,10000.0,1001264,3.0,159 -1303013,1630138212,8203087,2,47,2.0,4,0.0,1,24600.0,1042852,2.0,159 -1303014,1630138213,8200988,2,78,-9.0,1,1.0,1,52900.0,1025215,6.0,159 -1303015,1630138214,8199663,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,159 -1303016,1630138215,8203397,2,45,-9.0,2,1.0,1,40200.0,1042852,3.0,159 -1303017,1630138216,8203253,2,46,2.0,4,2.0,1,33800.0,1009585,3.0,159 -1303018,1630138217,8202908,2,40,1.0,2,1.0,1,19900.0,1073094,3.0,159 -1303019,1630138218,8195409,2,35,-9.0,1,2.0,1,15000.0,1042852,4.0,159 -1303020,1630138219,8199506,2,37,5.0,8,1.0,1,42000.0,1009585,3.0,159 -1303021,1630138220,8203397,2,46,-9.0,3,0.0,1,1400.0,1025215,3.0,159 -1303022,1630138221,8202167,2,60,-9.0,2,2.0,1,40700.0,1001264,1.0,159 -1303023,1630138222,8202236,2,67,-9.0,1,2.0,1,56100.0,1073094,4.0,159 -1303024,1630138223,8201919,2,27,-9.0,2,0.0,1,33000.0,1009585,1.0,159 -1303025,1630138224,8201700,2,65,-9.0,1,1.0,1,34200.0,1009585,4.0,159 -1303026,1630138225,8203582,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,159 -1303027,1630138226,8201519,2,45,3.0,4,1.0,1,43000.0,1001264,2.0,159 -1303028,1630138227,8201581,2,78,-9.0,1,0.0,1,9100.0,1001264,6.0,159 -1303029,1630138228,8201364,2,51,-9.0,1,0.0,1,900.0,1042852,4.0,159 -1303030,1630138229,8201683,2,84,-9.0,4,1.0,1,241900.0,1042852,1.0,159 -1303031,1630138230,8201581,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,159 -1303032,1630138231,8203402,4,77,-9.0,1,1.0,1,10800.0,1073094,4.0,159 -1303033,1630138232,8202375,2,47,1.0,3,1.0,1,10500.0,1025215,3.0,159 -1303034,1630138233,8202998,2,73,-9.0,1,2.0,1,20300.0,1009585,6.0,159 -1303035,1630138234,8201739,2,37,2.0,5,1.0,1,39000.0,1073094,1.0,159 -1303036,1630138235,8201700,2,36,2.0,3,1.0,1,290.0,1042852,3.0,159 -1303037,1630138236,8202703,1,62,-9.0,2,1.0,1,125200.0,1042852,5.0,159 -1303038,1630138237,8196802,1,36,3.0,5,2.0,1,365500.0,1001264,1.0,159 -1303044,1630138243,8200867,2,43,1.0,4,2.0,1,146950.0,1009585,1.0,159 -1303045,1630138244,8193542,2,38,2.0,4,2.0,1,100000.0,1073094,1.0,159 -1303047,1630138246,8196874,2,43,2.0,4,2.0,1,120000.0,1001264,1.0,159 -1303049,1630138248,8197646,1,29,1.0,4,2.0,1,114000.0,1009585,1.0,159 -1303050,1630138249,8200399,1,29,1.0,4,2.0,1,114000.0,1009585,1.0,159 -1303063,1630138262,8197365,1,43,-9.0,2,3.0,1,128000.0,1009585,5.0,159 -1303065,1630138264,8197159,2,31,3.0,5,2.0,1,36000.0,1042852,1.0,159 -1303066,1630138265,8200208,2,39,2.0,5,2.0,1,43200.0,1025215,2.0,159 -1303074,1630138273,8197935,1,38,2.0,4,2.0,1,68000.0,1025215,1.0,159 -1303076,1630138275,8200444,2,42,1.0,3,2.0,1,74000.0,1009585,1.0,159 -1303080,1630138279,8196598,2,40,-9.0,1,1.0,1,0.0,1009585,4.0,159 -1303081,1630138280,8198092,2,31,-9.0,1,2.0,1,0.0,1073094,6.0,159 -1303091,1630138290,8197045,2,48,2.0,4,4.0,1,153820.0,1025215,1.0,159 -1303103,1630138302,8196155,2,60,-9.0,2,2.0,1,257200.0,1042852,1.0,159 -1303116,1630138315,8198734,2,60,-9.0,3,2.0,1,61200.0,1073094,3.0,159 -1303117,1630138316,8197503,2,61,-9.0,2,2.0,1,64700.0,1073094,3.0,159 -1303124,1630138323,8200556,2,45,-9.0,3,3.0,1,96004.0,1001264,3.0,159 -1303127,1630138326,8199090,2,45,-9.0,3,3.0,1,96004.0,1001264,3.0,159 -1303130,1630138329,8196546,2,50,-9.0,2,2.0,1,94000.0,1025215,1.0,159 -1303132,1630138331,8200281,1,48,-9.0,2,2.0,1,62600.0,1042852,7.0,159 -1303133,1630138332,8197297,1,48,-9.0,2,2.0,1,62600.0,1042852,7.0,159 -1303135,1630138334,8199387,2,49,-9.0,1,1.0,1,0.0,1001264,6.0,159 -1303138,1630138337,8197652,2,65,-9.0,4,1.0,1,107500.0,1009585,1.0,159 -1303143,1630138342,8198863,1,69,-9.0,1,1.0,1,121800.0,1025215,6.0,159 -1303146,1630138345,8201247,1,68,-9.0,1,2.0,1,128300.0,1009585,1.0,159 -1303149,1630138348,8199622,1,66,-9.0,2,6.0,1,455000.0,1001264,1.0,159 -1303151,1630138350,8199783,2,70,-9.0,5,5.0,1,143000.0,1009585,1.0,159 -1303154,1630138353,8200021,2,70,-9.0,3,2.0,1,115400.0,1009585,1.0,159 -1303161,1630138360,8197439,2,68,-9.0,2,3.0,1,194400.0,1001264,3.0,159 -1303168,1630138367,8199967,1,82,-9.0,1,1.0,1,32000.0,1001264,6.0,159 -1303170,1630138369,8199135,2,74,-9.0,2,1.0,1,43500.0,1025215,3.0,159 -1303175,1630138374,8195996,2,82,-9.0,3,2.0,1,30600.0,1001264,3.0,159 -1303177,1630138376,8195272,2,70,-9.0,3,2.0,1,56180.0,1009585,3.0,159 -1303181,1630138380,8196991,1,73,-9.0,1,1.0,1,75500.0,1001264,4.0,159 -1303182,1630138381,8197459,2,67,-9.0,1,2.0,1,60600.0,1025215,4.0,159 -1303186,1630138385,8200416,2,88,-9.0,2,2.0,1,73300.0,1042852,1.0,159 -1303188,1630138387,8200365,1,65,-9.0,3,3.0,1,71100.0,1042852,1.0,159 -1303194,1630138393,8197419,2,94,-9.0,1,0.0,1,23100.0,1073094,6.0,159 -1303195,1630138394,8197723,2,90,-9.0,1,0.0,1,12200.0,1073094,6.0,159 -1303198,1630138397,8198894,2,84,-9.0,1,1.0,1,16400.0,1001264,6.0,159 -1303205,1630138404,8198929,1,89,-9.0,1,1.0,1,10000.0,1042852,6.0,159 -1303207,1630138406,8196737,2,73,-9.0,1,2.0,1,20300.0,1009585,6.0,159 -1303211,1630138410,8197140,1,50,-9.0,1,1.0,1,100000.0,1001264,4.0,159 -1303213,1630138412,8197140,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,159 -1303214,1630138413,8197140,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,159 -1303215,1630138414,8195300,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,159 -1303216,1630138415,8197140,2,60,-9.0,1,1.0,1,49000.0,1042852,6.0,159 -1303217,1630138416,8197140,2,54,-9.0,1,1.0,1,34600.0,1042852,4.0,159 -1303222,1630138421,8198391,2,52,-9.0,3,2.0,1,72500.0,1009585,1.0,159 -1303225,1630138424,8197140,2,53,-9.0,2,1.0,1,65000.0,1042852,1.0,159 -1303227,1630138426,8197140,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,159 -1303231,1630138430,8197140,2,57,-9.0,1,0.0,1,8400.0,1009585,6.0,159 -1303234,1630138433,8197140,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,159 -1303238,1630138437,8197531,2,47,-9.0,1,0.0,1,12000.0,1025215,4.0,159 -1303239,1630138438,8197140,2,60,-9.0,1,0.0,1,8400.0,1042852,4.0,159 -1303240,1630138439,8197140,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,159 -1303241,1630138440,8197140,2,62,-9.0,1,0.0,1,12300.0,1001264,6.0,159 -1303243,1630138442,8197140,2,63,-9.0,1,0.0,1,0.0,1025215,6.0,159 -1303245,1630138444,8197140,1,60,-9.0,1,0.0,1,14000.0,1073094,6.0,159 -1303246,1630138445,8197140,1,60,-9.0,1,0.0,1,10840.0,1009585,4.0,159 -1303247,1630138446,8197140,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,159 -1303252,1630138451,8195300,2,53,-9.0,1,1.0,1,16000.0,1025215,6.0,159 -1303254,1630138453,8197140,2,51,-9.0,2,0.0,1,24000.0,1073094,7.0,159 -1303257,1630138456,8197140,2,46,-9.0,1,1.0,1,14000.0,1001264,6.0,159 -1303259,1630138458,8197140,2,65,-9.0,1,0.0,1,11000.0,1001264,6.0,159 -1303260,1630138459,8197140,2,70,-9.0,1,0.0,1,9200.0,1042852,6.0,159 -1303262,1630138461,8197140,2,73,-9.0,1,0.0,1,8400.0,1073094,6.0,159 -1303265,1630138464,8197140,2,66,-9.0,1,1.0,1,11000.0,1042852,6.0,159 -1303270,1630138469,8196232,2,66,-9.0,3,2.0,1,54200.0,1042852,7.0,159 -1303272,1630138471,8198037,1,59,-9.0,1,2.0,1,78800.0,1025215,4.0,159 -1303273,1630138472,8199170,2,82,-9.0,1,1.0,1,43400.0,1042852,6.0,159 -1303284,1630138483,8195300,1,63,-9.0,1,1.0,1,50020.0,1001264,4.0,159 -1303285,1630138484,8198308,2,45,2.0,5,2.0,1,36500.0,1025215,3.0,159 -1303289,1630138488,8198369,1,68,-9.0,1,2.0,1,164200.0,1001264,6.0,159 -1303290,1630138489,8199027,2,52,-9.0,4,4.0,1,84670.0,1009585,1.0,159 -1303291,1630138490,8199360,2,62,-9.0,1,0.0,1,16800.0,1042852,1.0,159 -1303292,1630138491,8197140,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,159 -1303293,1630138492,8200599,2,57,-9.0,4,0.0,1,60000.0,1042852,1.0,159 -1303294,1630138493,8197140,1,25,-9.0,2,2.0,1,275000.0,1025215,1.0,159 -1303295,1630138494,8198255,1,40,-9.0,2,2.0,1,150400.0,1025215,1.0,159 -1303296,1630138495,8197309,1,52,-9.0,2,2.0,1,503000.0,1025215,1.0,159 -1303297,1630138496,8195162,1,55,-9.0,4,4.0,1,120000.0,1009585,1.0,159 -1303299,1630138498,8195300,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,159 -1303301,1630138500,8199653,2,54,-9.0,1,2.0,1,60000.0,1042852,4.0,159 -1303302,1630138501,8200726,2,54,-9.0,2,2.0,1,58900.0,1025215,1.0,159 -1303304,1630138503,8196061,2,70,-9.0,2,1.0,1,37200.0,1009585,1.0,159 -1303307,1630138506,8197615,2,55,-9.0,4,1.0,1,56000.0,1025215,2.0,159 -1303316,1630138515,8196669,2,66,-9.0,3,1.0,1,89400.0,1001264,3.0,159 -1303318,1630138517,8197460,2,56,-9.0,1,0.0,1,0.0,1025215,6.0,159 -1303323,1630138522,8197140,1,60,-9.0,1,1.0,1,640.0,1042852,6.0,159 -1303329,1630138528,8197140,1,38,-9.0,2,2.0,1,68000.0,1001264,1.0,159 -1303333,1630138532,8197140,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,159 -1303335,1630138534,8198680,2,52,1.0,5,5.0,1,91300.0,1025215,1.0,159 -1303337,1630138536,8197255,1,54,-9.0,2,2.0,1,57200.0,1001264,5.0,159 -1303339,1630138538,8198172,1,72,-9.0,2,2.0,1,49400.0,1009585,3.0,159 -1303341,1630138540,8197419,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,159 -1303349,1630138548,8197140,2,75,-9.0,1,1.0,1,26300.0,1025215,6.0,159 -1303351,1630138550,8199483,1,66,-9.0,1,4.0,1,63400.0,1042852,6.0,159 -1303352,1630138551,8197140,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,159 -1303353,1630138552,8199740,1,60,-9.0,2,2.0,1,67000.0,1042852,5.0,159 -1303355,1630138554,8197395,2,56,-9.0,2,2.0,1,79500.0,1073094,3.0,159 -1303358,1630138557,8199081,2,94,1.0,4,3.0,1,41000.0,1073094,3.0,159 -1303364,1630138563,8196564,2,82,-9.0,3,2.0,1,30600.0,1001264,3.0,159 -1303365,1630138564,8196633,2,70,1.0,3,2.0,1,27600.0,1073094,3.0,159 -1303370,1630138569,8198092,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,159 -1303373,1630138572,8196688,1,47,1.0,3,2.0,1,82700.0,1042852,1.0,159 -1303376,1630138575,8198037,1,43,2.0,4,3.0,1,108800.0,1025215,1.0,159 -1303391,1630138590,8195557,1,48,-9.0,2,2.0,1,62600.0,1042852,7.0,159 -1303393,1630138592,8197140,2,62,-9.0,1,2.0,1,396000.0,1001264,4.0,159 -1303400,1630138599,8197775,2,65,-9.0,4,1.0,1,84400.0,1073094,3.0,159 -1303404,1630138603,8199214,2,43,-9.0,2,2.0,1,225300.0,1001264,1.0,159 -1303405,1630138604,8197654,2,84,-9.0,4,3.0,1,75200.0,1073094,1.0,159 -1303406,1630138605,8195300,2,49,-9.0,3,0.0,1,10170.0,1001264,1.0,159 -1303410,1630138609,8197140,1,69,-9.0,1,1.0,1,358000.0,1025215,4.0,159 -1303412,1630138611,8195720,2,73,-9.0,1,2.0,1,20300.0,1009585,6.0,159 -1303413,1630138612,8197140,2,56,-9.0,4,1.0,1,8100.0,1073094,2.0,159 -1303420,1630138619,8199044,2,53,-9.0,4,1.0,1,66800.0,1009585,3.0,159 -1303424,1630138623,8197140,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,159 -1303425,1630138624,8197140,2,30,-9.0,1,1.0,1,10400.0,1073094,4.0,159 -1303428,1630138627,8198584,2,56,1.0,3,2.0,1,144000.0,1009585,1.0,159 -1303432,1630138631,8195300,2,56,-9.0,2,2.0,1,3800.0,1025215,3.0,159 -1303434,1630138633,8197140,2,70,-9.0,1,0.0,1,9200.0,1042852,6.0,159 -1303437,1630138636,8195300,2,66,-9.0,1,2.0,1,32700.0,1009585,4.0,159 -1303440,1630138639,8198467,1,71,-9.0,1,1.0,1,50400.0,1042852,4.0,159 -1303449,1630138648,8200121,2,35,-9.0,1,2.0,1,15000.0,1042852,4.0,159 -1303453,1630138652,8197140,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,159 -1310819,1630146018,8175770,2,38,-9.0,1,1.0,1,40000.0,1073094,4.0,157 -1310820,1630146019,8181253,2,42,-9.0,1,1.0,1,43000.0,1025215,4.0,157 -1310821,1630146020,8181253,2,42,-9.0,1,1.0,1,43000.0,1025215,4.0,157 -1310822,1630146021,8176447,2,43,-9.0,1,2.0,1,30000.0,1073094,6.0,157 -1310823,1630146022,8169032,2,38,1.0,3,2.0,1,51200.0,1025215,1.0,157 -1310824,1630146023,8182474,2,27,-9.0,2,0.0,1,33000.0,1009585,1.0,157 -1310825,1630146024,8181527,2,38,-9.0,2,1.0,1,32000.0,1042852,3.0,157 -1310826,1630146025,8181741,2,43,-9.0,2,2.0,1,53320.0,1001264,2.0,157 -1310827,1630146026,8179258,2,35,-9.0,2,1.0,1,32000.0,1025215,5.0,157 -1310828,1630146027,8180553,2,31,-9.0,1,1.0,1,91000.0,1009585,6.0,157 -1310829,1630146028,8169032,2,35,-9.0,1,1.0,1,60000.0,1025215,6.0,157 -1310830,1630146029,8169032,2,35,-9.0,1,1.0,1,60000.0,1025215,6.0,157 -1310831,1630146030,8177660,2,35,-9.0,1,1.0,1,60000.0,1025215,6.0,157 -1310832,1630146031,8177247,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,157 -1310833,1630146032,8182235,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,157 -1310834,1630146033,8177084,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,157 -1310835,1630146034,8179721,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,157 -1310836,1630146035,8179721,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,157 -1310837,1630146036,8176478,4,39,-9.0,1,1.0,1,65380.0,1009585,4.0,157 -1310838,1630146037,8181253,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,157 -1310839,1630146038,8177449,2,44,2.0,3,1.0,1,91880.0,1001264,3.0,157 -1310840,1630146039,8177660,2,44,2.0,3,2.0,1,80000.0,1009585,2.0,157 -1310841,1630146040,8177323,2,39,-9.0,2,1.0,1,69000.0,1001264,1.0,157 -1310842,1630146041,8182403,2,39,-9.0,2,1.0,1,69000.0,1001264,1.0,157 -1310843,1630146042,8177473,2,39,-9.0,2,1.0,1,69000.0,1001264,1.0,157 -1310844,1630146043,8179258,2,36,1.0,2,1.0,1,70000.0,1025215,2.0,157 -1310845,1630146044,8176953,2,42,-9.0,2,3.0,1,75000.0,1073094,5.0,157 -1310846,1630146045,8182475,2,31,-9.0,2,2.0,1,62900.0,1001264,1.0,157 -1310847,1630146046,8176882,2,42,-9.0,2,3.0,1,75000.0,1073094,5.0,157 -1310848,1630146047,8179721,2,31,-9.0,2,2.0,1,62900.0,1001264,1.0,157 -1310849,1630146048,8177189,2,42,-9.0,2,3.0,1,75000.0,1073094,5.0,157 -1310850,1630146049,8179721,2,31,-9.0,2,2.0,1,62900.0,1001264,1.0,157 -1310851,1630146050,8181253,2,42,1.0,2,2.0,1,72000.0,1042852,3.0,157 -1310852,1630146051,8169032,2,41,1.0,3,2.0,1,75300.0,1073094,1.0,157 -1310853,1630146052,8181253,2,31,1.0,3,2.0,1,62000.0,1042852,3.0,157 -1310854,1630146053,8184402,2,42,1.0,3,2.0,1,74000.0,1009585,1.0,157 -1310855,1630146054,8176080,2,33,1.0,3,3.0,1,97000.0,1009585,2.0,157 -1310856,1630146055,8183983,2,44,-9.0,1,0.0,1,4600.0,1009585,4.0,157 -1310857,1630146056,8181508,2,40,-9.0,1,1.0,1,0.0,1009585,4.0,157 -1310858,1630146057,8181154,2,40,-9.0,1,1.0,1,800.0,1042852,4.0,157 -1310859,1630146058,8180521,2,35,-9.0,1,2.0,1,15000.0,1042852,4.0,157 -1310860,1630146059,8182003,2,44,1.0,3,1.0,1,12200.0,1025215,1.0,157 -1310861,1630146060,8181010,2,39,-9.0,2,0.0,1,580.0,1025215,2.0,157 -1310862,1630146061,8180352,2,48,-9.0,2,5.0,1,53800.0,1025215,7.0,157 -1310863,1630146062,8181253,2,55,-9.0,1,1.0,1,58000.0,1009585,6.0,157 -1310864,1630146063,8182354,2,56,-9.0,1,1.0,1,37800.0,1073094,4.0,157 -1310865,1630146064,8183579,2,54,-9.0,1,1.0,1,56000.0,1001264,6.0,157 -1310866,1630146065,8181080,2,48,-9.0,3,2.0,1,50200.0,1025215,3.0,157 -1310867,1630146066,8176750,2,55,-9.0,3,2.0,1,38900.0,1001264,1.0,157 -1310868,1630146067,8183150,4,49,-9.0,3,3.0,1,58000.0,1042852,1.0,157 -1310869,1630146068,8176587,2,63,-9.0,2,2.0,1,59200.0,1025215,3.0,157 -1310870,1630146069,8181253,2,64,-9.0,2,2.0,1,44200.0,1025215,3.0,157 -1310871,1630146070,8176478,2,57,-9.0,2,2.0,1,73200.0,1042852,1.0,157 -1310872,1630146071,8183799,2,54,-9.0,1,1.0,1,60000.0,1042852,6.0,157 -1310873,1630146072,8178975,2,64,-9.0,1,1.0,1,69000.0,1025215,6.0,157 -1310874,1630146073,8182195,2,64,-9.0,1,1.0,1,85200.0,1073094,6.0,157 -1310875,1630146074,8178698,2,64,-9.0,1,1.0,1,69000.0,1025215,6.0,157 -1310876,1630146075,8177368,2,50,-9.0,1,1.0,1,62000.0,1009585,6.0,157 -1310877,1630146076,8177504,2,50,-9.0,1,1.0,1,62000.0,1009585,6.0,157 -1310878,1630146077,8176478,2,59,-9.0,1,1.0,1,75000.0,1025215,6.0,157 -1310879,1630146078,8175895,2,50,-9.0,1,1.0,1,62000.0,1009585,6.0,157 -1310880,1630146079,8181253,2,46,-9.0,1,2.0,1,75000.0,1042852,6.0,157 -1310881,1630146080,8181687,2,55,-9.0,1,2.0,1,88000.0,1025215,6.0,157 -1310882,1630146081,8181253,2,59,-9.0,3,0.0,1,82600.0,1009585,3.0,157 -1310883,1630146082,8181253,2,64,-9.0,2,1.0,1,97220.0,1001264,1.0,157 -1310884,1630146083,8181253,2,64,-9.0,2,1.0,1,97220.0,1001264,1.0,157 -1310885,1630146084,8179721,2,64,-9.0,2,2.0,1,84340.0,1001264,1.0,157 -1310886,1630146085,8181425,2,58,-9.0,2,3.0,1,70400.0,1042852,3.0,157 -1310887,1630146086,8179721,2,64,-9.0,2,2.0,1,84340.0,1001264,1.0,157 -1310888,1630146087,8184402,2,57,-9.0,3,2.0,1,83200.0,1073094,3.0,157 -1310889,1630146088,8183579,2,57,-9.0,3,2.0,1,77000.0,1001264,1.0,157 -1310890,1630146089,8176478,2,58,-9.0,3,2.0,1,99000.0,1009585,1.0,157 -1310891,1630146090,8182080,2,57,-9.0,3,2.0,1,83200.0,1073094,3.0,157 -1310892,1630146091,8179721,2,55,-9.0,2,1.0,1,60000.0,1009585,1.0,157 -1310893,1630146092,8179879,2,50,-9.0,2,2.0,1,94000.0,1025215,1.0,157 -1310894,1630146093,8181067,2,60,-9.0,2,2.0,1,81000.0,1009585,1.0,157 -1310895,1630146094,8179550,2,57,-9.0,2,2.0,1,74520.0,1001264,5.0,157 -1310896,1630146095,8183579,2,53,-9.0,1,0.0,1,9600.0,1001264,4.0,157 -1310897,1630146096,8179735,2,56,-9.0,1,0.0,1,8600.0,1009585,6.0,157 -1310898,1630146097,8177886,2,51,-9.0,1,1.0,1,1700.0,1042852,6.0,157 -1310899,1630146098,8181253,2,49,-9.0,1,1.0,1,0.0,1001264,6.0,157 -1310900,1630146099,8183579,2,60,-9.0,2,1.0,1,7200.0,1009585,1.0,157 -1310901,1630146100,8169111,2,53,-9.0,1,0.0,1,3100.0,1001264,4.0,157 -1310902,1630146101,8181253,2,59,-9.0,1,1.0,1,3400.0,1009585,6.0,157 -1310903,1630146102,8177349,2,50,-9.0,1,1.0,1,7100.0,1001264,4.0,157 -1310904,1630146103,8176999,2,63,-9.0,2,2.0,1,16800.0,1025215,3.0,157 -1310905,1630146104,8183579,2,80,-9.0,1,1.0,1,8900.0,1009585,4.0,157 -1310906,1630146105,8178300,2,42,-9.0,1,1.0,1,55000.0,1025215,4.0,157 -1310907,1630146106,8176355,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,157 -1310908,1630146107,8178300,4,31,-9.0,1,1.0,1,47200.0,1009585,4.0,157 -1310909,1630146108,8180057,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,157 -1310910,1630146109,8180057,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,157 -1310911,1630146110,8178101,2,42,-9.0,1,0.0,1,0.0,1001264,4.0,157 -1310912,1630146111,8181746,2,26,-9.0,1,1.0,1,12100.0,1042852,6.0,157 -1310913,1630146112,8181498,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,157 -1310914,1630146113,8181637,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,157 -1310915,1630146114,8902272,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,157 -1310916,1630146115,8180447,2,61,-9.0,1,1.0,1,36100.0,1042852,6.0,157 -1310917,1630146116,8178425,2,61,-9.0,1,0.0,1,49000.0,1073094,6.0,157 -1310918,1630146117,8177968,2,47,-9.0,1,0.0,1,47000.0,1001264,4.0,157 -1310919,1630146118,8181746,2,56,-9.0,1,0.0,1,42000.0,1042852,6.0,157 -1310920,1630146119,8179841,2,45,-9.0,1,0.0,1,31300.0,1001264,4.0,157 -1310921,1630146120,8177968,2,47,-9.0,1,0.0,1,47000.0,1001264,4.0,157 -1310922,1630146121,8181678,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,157 -1310923,1630146122,8902272,2,58,-9.0,1,0.0,1,45000.0,1009585,6.0,157 -1310924,1630146123,8180478,2,50,-9.0,1,1.0,1,50000.0,1073094,4.0,157 -1310925,1630146124,8178300,2,54,-9.0,1,1.0,1,34600.0,1042852,4.0,157 -1310926,1630146125,8180057,2,53,-9.0,1,1.0,1,42000.0,1042852,4.0,157 -1310927,1630146126,8179431,2,58,-9.0,1,1.0,1,40370.0,1073094,4.0,157 -1310928,1630146127,8179431,2,61,-9.0,1,1.0,1,30300.0,1001264,6.0,157 -1310929,1630146128,8178101,2,62,-9.0,1,1.0,1,37000.0,1009585,6.0,157 -1310930,1630146129,8179431,2,61,-9.0,1,1.0,1,30300.0,1001264,6.0,157 -1310931,1630146130,8180447,2,54,-9.0,1,1.0,1,49780.0,1025215,6.0,157 -1310932,1630146131,8180447,2,60,-9.0,1,1.0,1,49000.0,1042852,6.0,157 -1310933,1630146132,8180447,2,60,-9.0,1,1.0,1,49000.0,1042852,6.0,157 -1310934,1630146133,8902273,2,56,-9.0,1,1.0,1,33000.0,1073094,6.0,157 -1310935,1630146134,8180057,2,47,-9.0,1,1.0,1,50000.0,1025215,6.0,157 -1310936,1630146135,8180553,2,55,-9.0,1,1.0,1,49900.0,1042852,6.0,157 -1310937,1630146136,8178425,2,47,-9.0,1,1.0,1,50000.0,1025215,6.0,157 -1310938,1630146137,8181678,2,64,-9.0,1,1.0,1,32000.0,1042852,6.0,157 -1310939,1630146138,8180447,2,55,-9.0,1,1.0,1,50000.0,1042852,6.0,157 -1310940,1630146139,8181678,2,63,-9.0,1,1.0,1,36600.0,1042852,4.0,157 -1310941,1630146140,8180478,2,55,-9.0,1,1.0,1,49900.0,1042852,6.0,157 -1310942,1630146141,8181746,2,47,-9.0,1,1.0,1,50000.0,1025215,6.0,157 -1310943,1630146142,8178300,2,50,-9.0,1,1.0,1,32000.0,1001264,6.0,157 -1310944,1630146143,8178894,2,60,-9.0,1,1.0,1,36000.0,1001264,4.0,157 -1310945,1630146144,8178865,2,50,-9.0,1,1.0,1,50000.0,1073094,4.0,157 -1310946,1630146145,8180447,2,60,-9.0,1,1.0,1,49000.0,1042852,6.0,157 -1310947,1630146146,8178300,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,157 -1310948,1630146147,8902273,2,46,-9.0,1,2.0,1,31500.0,1009585,6.0,157 -1310949,1630146148,8180447,2,55,-9.0,3,0.0,1,34150.0,1042852,3.0,157 -1310950,1630146149,8181253,2,52,-9.0,3,1.0,1,36500.0,1001264,1.0,157 -1310951,1630146150,8178300,2,54,-9.0,2,2.0,1,39800.0,1073094,5.0,157 -1310952,1630146151,8178101,2,54,-9.0,3,3.0,1,44100.0,1025215,3.0,157 -1310953,1630146152,8902272,2,61,-9.0,2,0.0,1,31400.0,1042852,2.0,157 -1310954,1630146153,8178300,2,62,-9.0,2,0.0,1,38100.0,1025215,1.0,157 -1310955,1630146154,8180447,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,157 -1310956,1630146155,8180447,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,157 -1310957,1630146156,8180447,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,157 -1310958,1630146157,8180447,2,51,-9.0,2,1.0,1,42900.0,1025215,3.0,157 -1310959,1630146158,8182281,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,157 -1310960,1630146159,8180447,2,55,-9.0,2,1.0,1,33200.0,1009585,1.0,157 -1310961,1630146160,8179735,2,60,-9.0,2,2.0,1,40700.0,1001264,1.0,157 -1310962,1630146161,8181746,2,53,-9.0,2,2.0,1,30000.0,1042852,3.0,157 -1310963,1630146162,8183396,2,60,-9.0,2,2.0,1,40700.0,1001264,1.0,157 -1310964,1630146163,8181637,2,45,-9.0,2,2.0,1,58400.0,1001264,3.0,157 -1310965,1630146164,8180447,2,54,-9.0,3,3.0,1,49500.0,1042852,2.0,157 -1310966,1630146165,8902273,2,59,-9.0,2,2.0,1,54400.0,1042852,1.0,157 -1310967,1630146166,8180447,2,54,-9.0,2,2.0,1,58900.0,1025215,1.0,157 -1310968,1630146167,8182281,2,57,-9.0,1,2.0,1,67700.0,1025215,4.0,157 -1310969,1630146168,8178300,2,63,-9.0,2,2.0,1,70000.0,1009585,1.0,157 -1310970,1630146169,8179431,2,58,-9.0,1,0.0,1,94300.0,1025215,6.0,157 -1310971,1630146170,8179841,2,58,-9.0,1,0.0,1,94300.0,1025215,6.0,157 -1310972,1630146171,8178425,2,62,-9.0,1,1.0,1,82000.0,1009585,4.0,157 -1310973,1630146172,8178101,2,62,-9.0,1,1.0,1,82000.0,1009585,4.0,157 -1310974,1630146173,8183235,2,45,-9.0,1,1.0,1,81000.0,1009585,4.0,157 -1310975,1630146174,8181678,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,157 -1310976,1630146175,8179734,2,61,-9.0,1,1.0,1,60000.0,1042852,6.0,157 -1310977,1630146176,8181637,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,157 -1310978,1630146177,8179431,2,61,-9.0,1,1.0,1,66000.0,1009585,4.0,157 -1310979,1630146178,8181678,2,62,-9.0,1,1.0,1,60000.0,1009585,6.0,157 -1310980,1630146179,8178865,2,45,-9.0,1,1.0,1,81000.0,1009585,4.0,157 -1310981,1630146180,8902272,2,56,-9.0,1,1.0,1,64900.0,1009585,6.0,157 -1310982,1630146181,8182195,2,45,-9.0,1,1.0,1,81000.0,1009585,4.0,157 -1310983,1630146182,8181637,2,62,-9.0,1,1.0,1,82000.0,1009585,4.0,157 -1310984,1630146183,8181637,2,61,-9.0,1,1.0,1,60000.0,1042852,6.0,157 -1310985,1630146184,8180447,1,55,-9.0,1,1.0,1,92000.0,1009585,6.0,157 -1310986,1630146185,8178300,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,157 -1310987,1630146186,8180447,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,157 -1310988,1630146187,8180447,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,157 -1310989,1630146188,8180447,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,157 -1310990,1630146189,8180447,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,157 -1310991,1630146190,8180447,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,157 -1310992,1630146191,8180447,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,157 -1310993,1630146192,8180057,2,52,-9.0,3,2.0,1,72500.0,1009585,1.0,157 -1310994,1630146193,8902273,2,52,-9.0,3,2.0,1,72500.0,1009585,1.0,157 -1310995,1630146194,8178300,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,157 -1310996,1630146195,8178300,2,49,-9.0,2,2.0,1,69000.0,1042852,1.0,157 -1310997,1630146196,8180447,2,49,-9.0,2,2.0,1,69000.0,1042852,1.0,157 -1310998,1630146197,8180447,2,49,-9.0,2,2.0,1,69000.0,1042852,1.0,157 -1310999,1630146198,8178101,2,58,-9.0,3,2.0,1,63200.0,1073094,2.0,157 -1311000,1630146199,8178425,2,58,-9.0,3,2.0,1,63200.0,1073094,2.0,157 -1311001,1630146200,8181665,2,58,-9.0,2,0.0,1,90000.0,1001264,1.0,157 -1311002,1630146201,8176355,2,58,-9.0,2,0.0,1,90000.0,1001264,1.0,157 -1311003,1630146202,8180447,2,53,-9.0,2,1.0,1,65000.0,1042852,1.0,157 -1311004,1630146203,8902272,2,58,-9.0,2,1.0,1,90000.0,1009585,7.0,157 -1311005,1630146204,8181746,2,46,-9.0,2,1.0,1,63000.0,1025215,3.0,157 -1311006,1630146205,8902272,2,58,-9.0,2,1.0,1,90000.0,1009585,7.0,157 -1311007,1630146206,8902272,2,45,-9.0,2,1.0,1,85000.0,1073094,2.0,157 -1311008,1630146207,8181637,2,45,-9.0,2,1.0,1,68000.0,1001264,3.0,157 -1311009,1630146208,8902272,2,58,-9.0,2,1.0,1,90000.0,1009585,7.0,157 -1311010,1630146209,8180057,2,46,-9.0,2,1.0,1,63000.0,1025215,3.0,157 -1311011,1630146210,8181103,2,45,-9.0,2,1.0,1,68000.0,1001264,3.0,157 -1311012,1630146211,8180447,2,53,-9.0,2,1.0,1,65000.0,1042852,1.0,157 -1311013,1630146212,8181746,2,50,-9.0,2,1.0,1,74300.0,1009585,3.0,157 -1311014,1630146213,8180057,2,57,-9.0,2,2.0,1,73000.0,1009585,1.0,157 -1311015,1630146214,8180057,2,57,-9.0,2,2.0,1,75000.0,1001264,2.0,157 -1311016,1630146215,8181678,2,57,-9.0,2,2.0,1,73000.0,1009585,1.0,157 -1311017,1630146216,8181678,2,57,-9.0,2,2.0,1,73000.0,1009585,1.0,157 -1311018,1630146217,8183396,2,59,-9.0,1,0.0,1,14300.0,1073094,6.0,157 -1311019,1630146218,8179431,2,55,-9.0,1,0.0,1,0.0,1025215,4.0,157 -1311020,1630146219,8178101,2,63,-9.0,1,0.0,1,3300.0,1025215,4.0,157 -1311021,1630146220,8181637,2,50,-9.0,1,0.0,1,10900.0,1073094,4.0,157 -1311022,1630146221,8179841,2,55,-9.0,1,0.0,1,0.0,1025215,4.0,157 -1311023,1630146222,8179431,2,54,-9.0,1,0.0,1,3200.0,1042852,4.0,157 -1311024,1630146223,8181665,2,50,-9.0,1,0.0,1,11200.0,1001264,6.0,157 -1311025,1630146224,8180057,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,157 -1311026,1630146225,8179550,2,58,-9.0,1,0.0,1,10800.0,1025215,6.0,157 -1311027,1630146226,8178390,2,54,-9.0,1,0.0,1,4400.0,1025215,4.0,157 -1311028,1630146227,8178390,2,56,-9.0,1,0.0,1,0.0,1001264,4.0,157 -1311029,1630146228,8178425,2,64,-9.0,1,0.0,1,27900.0,1042852,6.0,157 -1311030,1630146229,8181665,2,50,-9.0,1,0.0,1,0.0,1073094,6.0,157 -1311031,1630146230,8178900,2,51,-9.0,1,0.0,1,0.0,1025215,4.0,157 -1311032,1630146231,8178101,2,60,-9.0,1,0.0,1,13300.0,1001264,6.0,157 -1311033,1630146232,8179841,2,55,-9.0,1,0.0,1,8500.0,1025215,6.0,157 -1311034,1630146233,8178900,2,51,-9.0,1,0.0,1,0.0,1025215,4.0,157 -1311035,1630146234,8181746,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,157 -1311036,1630146235,8178300,2,52,-9.0,1,0.0,1,6000.0,1073094,6.0,157 -1311037,1630146236,8177968,2,59,-9.0,1,0.0,1,1200.0,1042852,4.0,157 -1311038,1630146237,8179431,2,58,-9.0,1,0.0,1,16200.0,1025215,4.0,157 -1311039,1630146238,8179841,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,157 -1311040,1630146239,8178894,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,157 -1311041,1630146240,8179879,2,51,-9.0,1,0.0,1,0.0,1001264,6.0,157 -1311042,1630146241,8179431,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,157 -1311043,1630146242,8179841,2,58,-9.0,1,0.0,1,9700.0,1009585,4.0,157 -1311044,1630146243,8179431,2,55,-9.0,1,0.0,1,10800.0,1025215,6.0,157 -1311045,1630146244,8179841,2,60,-9.0,1,0.0,1,13200.0,1009585,4.0,157 -1311046,1630146245,8179431,2,62,-9.0,1,0.0,1,9600.0,1001264,6.0,157 -1311047,1630146246,8179721,2,54,-9.0,1,0.0,1,14400.0,1025215,4.0,157 -1311048,1630146247,8181746,2,45,-9.0,1,0.0,1,4400.0,1025215,4.0,157 -1311049,1630146248,8902273,2,54,-9.0,1,0.0,1,7200.0,1042852,6.0,157 -1311050,1630146249,8178894,2,57,-9.0,1,0.0,1,8800.0,1001264,6.0,157 -1311051,1630146250,8181637,2,57,-9.0,1,0.0,1,170.0,1042852,6.0,157 -1311052,1630146251,8179841,2,58,-9.0,1,0.0,1,8600.0,1042852,6.0,157 -1311053,1630146252,8180057,2,45,-9.0,1,0.0,1,0.0,1009585,6.0,157 -1311054,1630146253,8178390,2,58,-9.0,1,0.0,1,8600.0,1073094,6.0,157 -1311055,1630146254,8176478,2,61,-9.0,1,0.0,1,1600.0,1009585,4.0,157 -1311056,1630146255,8181746,2,45,-9.0,1,0.0,1,0.0,1009585,6.0,157 -1311057,1630146256,8178390,2,58,-9.0,1,0.0,1,8600.0,1073094,6.0,157 -1311058,1630146257,8178390,2,54,-9.0,1,0.0,1,4400.0,1025215,4.0,157 -1311059,1630146258,8178101,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,157 -1311060,1630146259,8178894,2,60,-9.0,1,0.0,1,13200.0,1009585,4.0,157 -1311061,1630146260,8179841,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,157 -1311062,1630146261,8177968,2,45,-9.0,1,0.0,1,17000.0,1073094,6.0,157 -1311063,1630146262,8178894,2,55,-9.0,1,0.0,1,12900.0,1042852,4.0,157 -1311064,1630146263,8176652,2,63,-9.0,1,0.0,1,0.0,1073094,6.0,157 -1311065,1630146264,8177968,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,157 -1311066,1630146265,8179841,2,60,-9.0,1,0.0,1,2000.0,1042852,6.0,157 -1311067,1630146266,8181637,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,157 -1311068,1630146267,8179841,2,64,-9.0,1,0.0,1,24700.0,1001264,4.0,157 -1311069,1630146268,8179841,2,60,-9.0,1,0.0,1,12000.0,1025215,4.0,157 -1311070,1630146269,8179841,2,52,-9.0,1,0.0,1,0.0,1042852,6.0,157 -1311071,1630146270,8177968,2,57,-9.0,1,0.0,1,8100.0,1073094,4.0,157 -1311072,1630146271,8178894,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,157 -1311073,1630146272,8179431,2,62,-9.0,1,0.0,1,16200.0,1009585,4.0,157 -1311074,1630146273,8179431,2,62,-9.0,1,0.0,1,9600.0,1001264,6.0,157 -1311075,1630146274,8178390,2,54,-9.0,1,0.0,1,1500.0,1025215,4.0,157 -1311076,1630146275,8179431,2,59,-9.0,1,0.0,1,1200.0,1042852,4.0,157 -1311077,1630146276,8178642,2,50,-9.0,1,0.0,1,8600.0,1042852,6.0,157 -1311078,1630146277,8178425,2,58,-9.0,1,0.0,1,8500.0,1025215,4.0,157 -1311079,1630146278,8181746,2,45,-9.0,1,0.0,1,4400.0,1025215,4.0,157 -1311080,1630146279,8178425,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,157 -1311081,1630146280,8181103,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,157 -1311082,1630146281,8179841,2,63,-9.0,1,0.0,1,0.0,1025215,6.0,157 -1311083,1630146282,8178300,2,61,-9.0,1,0.0,1,28000.0,1009585,6.0,157 -1311084,1630146283,8179841,2,62,-9.0,1,0.0,1,12800.0,1009585,4.0,157 -1311085,1630146284,8178894,2,61,-9.0,1,0.0,1,8400.0,1001264,4.0,157 -1311086,1630146285,8179431,2,64,-9.0,1,0.0,1,3660.0,1042852,6.0,157 -1311087,1630146286,8179431,2,62,-9.0,1,0.0,1,8570.0,1042852,6.0,157 -1311088,1630146287,8178425,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,157 -1311089,1630146288,8179431,2,56,-9.0,1,0.0,1,0.0,1009585,6.0,157 -1311090,1630146289,8179841,2,59,-9.0,1,0.0,1,9800.0,1009585,6.0,157 -1311091,1630146290,8178390,2,58,-9.0,1,0.0,1,8600.0,1073094,6.0,157 -1311092,1630146291,8178894,2,59,-9.0,1,0.0,1,7600.0,1001264,6.0,157 -1311093,1630146292,8178425,2,56,-9.0,1,0.0,1,8700.0,1009585,4.0,157 -1311094,1630146293,8181103,4,46,-9.0,1,0.0,1,9000.0,1009585,6.0,157 -1311095,1630146294,8181678,4,62,-9.0,1,0.0,1,18000.0,1042852,4.0,157 -1311096,1630146295,8181746,4,62,-9.0,1,0.0,1,18000.0,1042852,4.0,157 -1311097,1630146296,8178101,4,60,-9.0,1,0.0,1,8600.0,1001264,6.0,157 -1311098,1630146297,8180447,4,49,-9.0,1,0.0,1,9990.0,1025215,4.0,157 -1311099,1630146298,8179431,1,62,-9.0,1,0.0,1,10100.0,1001264,6.0,157 -1311100,1630146299,8181746,2,58,-9.0,1,1.0,1,18000.0,1073094,4.0,157 -1311101,1630146300,8178425,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,157 -1311102,1630146301,8178101,2,58,-9.0,1,1.0,1,25600.0,1073094,6.0,157 -1311103,1630146302,8178425,2,45,-9.0,1,1.0,1,20500.0,1042852,4.0,157 -1311104,1630146303,8180057,2,49,-9.0,1,1.0,1,3700.0,1073094,6.0,157 -1311105,1630146304,8178101,2,61,-9.0,1,1.0,1,19500.0,1025215,4.0,157 -1311106,1630146305,8178101,2,61,-9.0,1,1.0,1,19500.0,1025215,4.0,157 -1311107,1630146306,8179431,2,63,-9.0,1,1.0,1,13200.0,1009585,4.0,157 -1311108,1630146307,8180447,2,47,-9.0,1,1.0,1,1800.0,1042852,6.0,157 -1311109,1630146308,8178583,2,47,-9.0,1,1.0,1,8400.0,1009585,6.0,157 -1311110,1630146309,8180447,2,61,-9.0,1,1.0,1,17600.0,1073094,6.0,157 -1311111,1630146310,8177968,2,54,-9.0,1,1.0,1,8700.0,1001264,4.0,157 -1311112,1630146311,8181746,2,60,-9.0,1,1.0,1,9100.0,1025215,4.0,157 -1311113,1630146312,8902273,2,57,-9.0,1,1.0,1,12200.0,1001264,4.0,157 -1311114,1630146313,8181746,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,157 -1311115,1630146314,8177968,2,64,-9.0,1,1.0,1,3300.0,1025215,4.0,157 -1311116,1630146315,8902272,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,157 -1311117,1630146316,8181678,2,61,-9.0,3,0.0,1,7000.0,1073094,5.0,157 -1311118,1630146317,8178101,2,49,-9.0,3,0.0,1,10170.0,1001264,1.0,157 -1311119,1630146318,8178300,2,54,-9.0,3,0.0,1,17700.0,1042852,5.0,157 -1311120,1630146319,8178425,2,49,-9.0,3,0.0,1,10170.0,1001264,1.0,157 -1311121,1630146320,8181678,2,57,-9.0,3,0.0,1,8690.0,1042852,3.0,157 -1311122,1630146321,8180057,2,47,2.0,3,0.0,1,8700.0,1009585,3.0,157 -1311123,1630146322,8179431,2,57,-9.0,2,0.0,1,9000.0,1042852,5.0,157 -1311124,1630146323,8178101,2,58,-9.0,1,0.0,1,16310.0,1009585,1.0,157 -1311125,1630146324,8179579,2,57,-9.0,1,0.0,1,14200.0,1009585,1.0,157 -1311126,1630146325,8179841,2,55,-9.0,2,0.0,1,12770.0,1073094,7.0,157 -1311127,1630146326,8181678,2,62,-9.0,1,0.0,1,16800.0,1042852,1.0,157 -1311128,1630146327,8178101,2,58,-9.0,2,0.0,1,16310.0,1009585,1.0,157 -1311129,1630146328,8180447,2,57,-9.0,2,0.0,1,20540.0,1025215,3.0,157 -1311130,1630146329,8181678,2,50,-9.0,2,0.0,1,5100.0,1042852,2.0,157 -1311131,1630146330,8178261,2,57,-9.0,2,0.0,1,14200.0,1009585,1.0,157 -1311132,1630146331,8182195,2,60,-9.0,2,0.0,1,13400.0,1042852,5.0,157 -1311133,1630146332,8178894,2,63,-9.0,2,0.0,1,15000.0,1073094,5.0,157 -1311134,1630146333,8181637,2,51,-9.0,2,0.0,1,19200.0,1001264,2.0,157 -1311135,1630146334,8179431,2,59,-9.0,2,0.0,1,18300.0,1001264,7.0,157 -1311136,1630146335,8181746,2,58,-9.0,2,0.0,1,16310.0,1009585,1.0,157 -1311137,1630146336,8181103,2,61,-9.0,2,0.0,1,10800.0,1025215,2.0,157 -1311138,1630146337,8178425,2,51,1.0,2,0.0,1,8400.0,1042852,3.0,157 -1311139,1630146338,8180447,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,157 -1311140,1630146339,8178900,2,59,-9.0,2,1.0,1,8900.0,1042852,3.0,157 -1311141,1630146340,8181678,2,56,-9.0,2,1.0,1,23000.0,1001264,3.0,157 -1311142,1630146341,8176478,2,51,-9.0,2,1.0,1,8500.0,1009585,1.0,157 -1311143,1630146342,8183799,2,58,-9.0,2,1.0,1,10000.0,1001264,5.0,157 -1311144,1630146343,8902273,2,46,-9.0,2,1.0,1,15000.0,1042852,3.0,157 -1311145,1630146344,8178425,2,46,-9.0,2,1.0,1,15000.0,1042852,3.0,157 -1311146,1630146345,8902272,2,47,1.0,2,1.0,1,20400.0,1025215,3.0,157 -1311147,1630146346,8179431,2,45,-9.0,1,0.0,1,1700.0,1073094,4.0,157 -1311148,1630146347,8180057,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,157 -1311149,1630146348,8178390,2,61,-9.0,1,0.0,1,16200.0,1042852,6.0,157 -1311150,1630146349,8181103,2,56,-9.0,1,0.0,1,9600.0,1009585,4.0,157 -1311151,1630146350,8179841,2,63,-9.0,1,0.0,1,10000.0,1042852,4.0,157 -1311152,1630146351,8178894,2,60,-9.0,1,0.0,1,4800.0,1025215,6.0,157 -1311153,1630146352,8181103,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,157 -1311154,1630146353,8178390,2,57,-9.0,1,0.0,1,29000.0,1025215,6.0,157 -1311155,1630146354,8180057,2,59,-9.0,1,0.0,1,11300.0,1042852,6.0,157 -1311156,1630146355,8180928,2,48,-9.0,1,0.0,1,3000.0,1001264,4.0,157 -1311157,1630146356,8178390,2,61,-9.0,1,0.0,1,16200.0,1042852,6.0,157 -1311158,1630146357,8178390,2,57,-9.0,1,0.0,1,29000.0,1025215,6.0,157 -1311159,1630146358,8178101,2,51,-9.0,1,0.0,1,19000.0,1025215,4.0,157 -1311160,1630146359,8181103,2,59,-9.0,1,0.0,1,15000.0,1025215,6.0,157 -1311161,1630146360,8181637,2,59,-9.0,1,0.0,1,11300.0,1042852,6.0,157 -1311162,1630146361,8179431,2,45,-9.0,1,0.0,1,1700.0,1073094,4.0,157 -1311163,1630146362,8177968,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,157 -1311164,1630146363,8178390,2,57,-9.0,1,0.0,1,29000.0,1025215,6.0,157 -1311165,1630146364,8179431,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,157 -1311166,1630146365,8181746,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,157 -1311167,1630146366,8179431,2,64,-9.0,1,0.0,1,10170.0,1001264,6.0,157 -1311168,1630146367,8178425,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,157 -1311169,1630146368,8178642,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,157 -1311170,1630146369,8178101,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,157 -1311171,1630146370,8181746,2,52,-9.0,1,0.0,1,13400.0,1042852,6.0,157 -1311172,1630146371,8181746,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,157 -1311173,1630146372,8179431,2,61,-9.0,1,0.0,1,5600.0,1001264,4.0,157 -1311174,1630146373,8178642,2,62,-9.0,1,0.0,1,29000.0,1009585,6.0,157 -1311175,1630146374,8181665,2,62,-9.0,1,0.0,1,29000.0,1009585,6.0,157 -1311176,1630146375,8179431,2,64,-9.0,1,0.0,1,15000.0,1025215,4.0,157 -1311177,1630146376,8180447,4,58,-9.0,1,0.0,1,21700.0,1025215,6.0,157 -1311178,1630146377,8180447,4,58,-9.0,1,0.0,1,21700.0,1025215,6.0,157 -1311179,1630146378,8181637,2,58,-9.0,1,1.0,1,29600.0,1009585,6.0,157 -1311180,1630146379,8181253,2,54,-9.0,1,1.0,1,14540.0,1009585,4.0,157 -1311181,1630146380,8178074,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,157 -1311182,1630146381,8180057,2,55,-9.0,1,1.0,1,17000.0,1073094,6.0,157 -1311183,1630146382,8178425,2,60,-9.0,1,1.0,1,12000.0,1001264,4.0,157 -1311184,1630146383,8181678,2,48,-9.0,1,1.0,1,27700.0,1073094,6.0,157 -1311185,1630146384,8179431,2,51,-9.0,1,1.0,1,4500.0,1001264,6.0,157 -1311186,1630146385,8181746,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,157 -1311187,1630146386,8180447,2,56,-9.0,1,1.0,1,25000.0,1009585,6.0,157 -1311188,1630146387,8178300,2,56,-9.0,1,1.0,1,25000.0,1009585,6.0,157 -1311189,1630146388,8181746,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,157 -1311190,1630146389,8180447,2,56,-9.0,1,1.0,1,25000.0,1009585,6.0,157 -1311191,1630146390,8179431,2,55,-9.0,1,1.0,1,21900.0,1009585,6.0,157 -1311192,1630146391,8179431,2,51,-9.0,1,1.0,1,4500.0,1001264,6.0,157 -1311193,1630146392,8180478,2,54,-9.0,1,1.0,1,21900.0,1025215,4.0,157 -1311194,1630146393,8179431,2,51,-9.0,1,1.0,1,4500.0,1001264,6.0,157 -1311195,1630146394,8902272,2,53,-9.0,1,1.0,1,12900.0,1025215,6.0,157 -1311196,1630146395,8180447,4,50,-9.0,1,1.0,1,27000.0,1009585,6.0,157 -1311197,1630146396,8178617,4,61,-9.0,1,1.0,1,13500.0,1025215,4.0,157 -1311198,1630146397,8179258,4,61,-9.0,1,1.0,1,13500.0,1025215,4.0,157 -1311199,1630146398,8179431,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,157 -1311200,1630146399,8179431,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,157 -1311201,1630146400,8180595,2,58,-9.0,3,0.0,1,11500.0,1001264,3.0,157 -1311202,1630146401,8180412,2,58,-9.0,3,0.0,1,11500.0,1001264,3.0,157 -1311203,1630146402,8180447,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,157 -1311204,1630146403,8180447,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,157 -1311205,1630146404,8180928,2,46,-9.0,3,0.0,1,1400.0,1025215,3.0,157 -1311206,1630146405,8180057,2,49,2.0,3,0.0,1,7000.0,1009585,3.0,157 -1311207,1630146406,8181746,2,46,-9.0,3,1.0,1,21000.0,1009585,3.0,157 -1311208,1630146407,8178300,2,45,-9.0,3,1.0,1,11000.0,1042852,3.0,157 -1311209,1630146408,8181873,2,48,1.0,3,1.0,1,26000.0,1042852,1.0,157 -1311210,1630146409,8178894,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,157 -1311211,1630146410,8178425,2,54,-9.0,2,0.0,1,29300.0,1001264,3.0,157 -1311212,1630146411,8179431,2,52,-9.0,2,0.0,1,12160.0,1001264,7.0,157 -1311213,1630146412,8178894,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,157 -1311214,1630146413,8179431,2,52,-9.0,2,0.0,1,4100.0,1009585,3.0,157 -1311215,1630146414,8179431,4,61,-9.0,2,0.0,1,6200.0,1009585,3.0,157 -1311216,1630146415,8179431,4,61,-9.0,2,0.0,1,6200.0,1009585,3.0,157 -1311217,1630146416,8181746,2,55,-9.0,2,1.0,1,9800.0,1042852,3.0,157 -1311218,1630146417,8178300,2,58,-9.0,2,1.0,1,26500.0,1073094,3.0,157 -1311219,1630146418,8181678,2,45,-9.0,2,1.0,1,9500.0,1025215,3.0,157 -1311220,1630146419,8181746,2,55,-9.0,2,1.0,1,9800.0,1042852,3.0,157 -1311221,1630146420,8180447,2,58,-9.0,2,1.0,1,26500.0,1073094,3.0,157 -1311222,1630146421,8178865,2,47,-9.0,2,1.0,1,19300.0,1042852,7.0,157 -1311223,1630146422,8181746,2,60,-9.0,2,1.0,1,2700.0,1009585,3.0,157 -1311224,1630146423,8181746,2,57,-9.0,2,1.0,1,26100.0,1001264,3.0,157 -1311225,1630146424,8180057,2,50,-9.0,2,1.0,1,18000.0,1042852,3.0,157 -1311226,1630146425,8181637,2,57,-9.0,2,1.0,1,26100.0,1001264,3.0,157 -1311227,1630146426,8178101,4,48,-9.0,2,1.0,1,5000.0,1025215,3.0,157 -1311228,1630146427,8181637,4,48,-9.0,2,1.0,1,5000.0,1025215,3.0,157 -1311229,1630146428,8902272,2,53,-9.0,2,2.0,1,6500.0,1025215,5.0,157 -1311230,1630146429,8181103,2,53,-9.0,2,2.0,1,6500.0,1025215,5.0,157 -1311231,1630146430,8181103,2,53,-9.0,2,2.0,1,6500.0,1025215,5.0,157 -1311232,1630146431,8180447,4,52,-9.0,2,2.0,1,70.0,1042852,1.0,157 -1311233,1630146432,8178300,4,52,-9.0,2,2.0,1,70.0,1042852,1.0,157 -1311234,1630146433,8902273,2,54,-9.0,2,0.0,1,19000.0,1001264,1.0,157 -1311235,1630146434,8180057,2,52,-9.0,2,0.0,1,23400.0,1073094,7.0,157 -1311236,1630146435,8178101,2,50,-9.0,2,1.0,1,25400.0,1001264,3.0,157 -1311237,1630146436,8181678,2,87,-9.0,1,0.0,1,30000.0,1042852,6.0,157 -1311238,1630146437,8180057,2,66,-9.0,1,0.0,1,38000.0,1001264,6.0,157 -1311239,1630146438,8178300,2,74,-9.0,1,1.0,1,45000.0,1025215,6.0,157 -1311240,1630146439,8178425,2,68,-9.0,1,1.0,1,34800.0,1042852,6.0,157 -1311241,1630146440,8902272,2,88,-9.0,2,0.0,1,33800.0,1073094,3.0,157 -1311242,1630146441,8179841,2,66,-9.0,1,1.0,1,30000.0,1009585,4.0,157 -1311243,1630146442,8902272,2,75,-9.0,1,1.0,1,45200.0,1001264,7.0,157 -1311244,1630146443,8902272,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,157 -1311245,1630146444,8180447,2,69,-9.0,1,1.0,1,70010.0,1001264,6.0,157 -1311246,1630146445,8183235,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,157 -1311247,1630146446,8179735,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,157 -1311248,1630146447,8180447,2,69,-9.0,2,1.0,1,77600.0,1025215,1.0,157 -1311249,1630146448,8181746,2,68,-9.0,2,2.0,1,81200.0,1001264,1.0,157 -1311250,1630146449,8181746,2,71,-9.0,3,1.0,1,70400.0,1001264,3.0,157 -1311251,1630146450,8180057,2,67,-9.0,1,0.0,1,8900.0,1009585,6.0,157 -1311252,1630146451,8181873,2,86,-9.0,1,0.0,1,21900.0,1073094,4.0,157 -1311253,1630146452,8902273,2,78,-9.0,1,0.0,1,9200.0,1001264,6.0,157 -1311254,1630146453,8181103,2,69,-9.0,1,0.0,1,8400.0,1001264,6.0,157 -1311255,1630146454,8180057,2,78,-9.0,1,0.0,1,9200.0,1001264,6.0,157 -1311256,1630146455,8181637,2,70,-9.0,1,0.0,1,10800.0,1009585,4.0,157 -1311257,1630146456,8178894,2,65,-9.0,1,0.0,1,24000.0,1001264,4.0,157 -1311258,1630146457,8178393,2,70,-9.0,1,0.0,1,8600.0,1042852,6.0,157 -1311259,1630146458,8177968,2,81,-9.0,1,0.0,1,16600.0,1042852,6.0,157 -1311260,1630146459,8178766,2,94,-9.0,1,0.0,1,25200.0,1042852,4.0,157 -1311261,1630146460,8179431,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,157 -1311262,1630146461,8178894,2,80,-9.0,1,0.0,1,8300.0,1073094,6.0,157 -1311263,1630146462,8180447,2,65,-9.0,1,0.0,1,1900.0,1025215,6.0,157 -1311264,1630146463,8183396,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,157 -1311265,1630146464,8183338,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,157 -1311266,1630146465,8902272,2,72,-9.0,1,0.0,1,11220.0,1009585,6.0,157 -1311267,1630146466,8181103,2,67,-9.0,1,0.0,1,8300.0,1073094,6.0,157 -1311268,1630146467,8180553,2,78,-9.0,1,0.0,1,26100.0,1009585,6.0,157 -1311269,1630146468,8177968,2,82,-9.0,1,0.0,1,14900.0,1073094,6.0,157 -1311270,1630146469,8179841,2,67,-9.0,1,0.0,1,9600.0,1001264,6.0,157 -1311271,1630146470,8180057,2,72,-9.0,1,0.0,1,2100.0,1042852,6.0,157 -1311272,1630146471,8179841,2,82,-9.0,1,0.0,1,18900.0,1042852,6.0,157 -1311273,1630146472,8178894,2,82,-9.0,1,0.0,1,18900.0,1042852,6.0,157 -1311274,1630146473,8181665,2,65,-9.0,1,0.0,1,14900.0,1025215,6.0,157 -1311275,1630146474,8178894,2,69,-9.0,1,0.0,1,7000.0,1009585,6.0,157 -1311276,1630146475,8178894,2,75,-9.0,1,0.0,1,10800.0,1009585,4.0,157 -1311277,1630146476,8178425,2,67,-9.0,1,0.0,1,8900.0,1009585,6.0,157 -1311278,1630146477,8178300,2,68,-9.0,1,0.0,1,7200.0,1042852,6.0,157 -1311279,1630146478,8178894,2,73,-9.0,1,0.0,1,8400.0,1073094,6.0,157 -1311280,1630146479,8180447,2,65,-9.0,1,0.0,1,1900.0,1025215,6.0,157 -1311281,1630146480,8176355,2,77,-9.0,1,0.0,1,9600.0,1009585,4.0,157 -1311282,1630146481,8902273,4,70,-9.0,1,0.0,1,19900.0,1042852,6.0,157 -1311283,1630146482,8178300,2,68,-9.0,1,1.0,1,19000.0,1073094,6.0,157 -1311284,1630146483,8182565,2,71,-9.0,1,1.0,1,15700.0,1042852,6.0,157 -1311285,1630146484,8181678,2,65,-9.0,1,1.0,1,9100.0,1073094,6.0,157 -1311286,1630146485,8902272,2,79,-9.0,1,1.0,1,1300.0,1073094,6.0,157 -1311287,1630146486,8181746,2,83,-9.0,1,1.0,1,21900.0,1042852,4.0,157 -1311288,1630146487,8178425,2,66,-9.0,1,1.0,1,8700.0,1009585,6.0,157 -1311289,1630146488,8178101,2,66,-9.0,1,1.0,1,8700.0,1009585,6.0,157 -1311290,1630146489,8181665,2,86,-9.0,1,1.0,1,8600.0,1042852,4.0,157 -1311291,1630146490,8902272,2,67,-9.0,1,1.0,1,9500.0,1042852,6.0,157 -1311292,1630146491,8181678,2,69,-9.0,1,1.0,1,24800.0,1025215,6.0,157 -1311293,1630146492,8177968,2,84,-9.0,1,1.0,1,10100.0,1001264,6.0,157 -1311294,1630146493,8178894,2,71,-9.0,2,0.0,1,27700.0,1009585,1.0,157 -1311295,1630146494,8181253,2,66,-9.0,2,0.0,1,0.0,1073094,3.0,157 -1311296,1630146495,8181678,2,90,-9.0,2,0.0,1,21000.0,1073094,1.0,157 -1311297,1630146496,8179841,2,76,-9.0,2,0.0,1,21400.0,1025215,1.0,157 -1311298,1630146497,8902273,2,81,-9.0,2,1.0,1,13700.0,1073094,3.0,157 -1311299,1630146498,8902273,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,157 -1311300,1630146499,8178393,2,72,-9.0,1,1.0,1,20000.0,1025215,4.0,157 -1311301,1630146500,8180447,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,157 -1311302,1630146501,8178894,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,157 -1311303,1630146502,8178300,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,157 -1311304,1630146503,8180447,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,157 -1311305,1630146504,8178300,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,157 -1311306,1630146505,8179431,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,157 -1311307,1630146506,8180447,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,157 -1311308,1630146507,8178300,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,157 -1311309,1630146508,8178390,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,157 -1311310,1630146509,8178101,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,157 -1311311,1630146510,8902273,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,157 -1311312,1630146511,8178425,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,157 -1311313,1630146512,8902273,2,21,-9.0,1,1.0,1,48200.0,1025215,5.0,157 -1311314,1630146513,8178101,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,157 -1311315,1630146514,8178425,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,157 -1311316,1630146515,8902273,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,157 -1311317,1630146516,8181746,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,157 -1311318,1630146517,8181746,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,157 -1311319,1630146518,8181746,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,157 -1311320,1630146519,8902273,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,157 -1311321,1630146520,8181678,2,22,1.0,2,1.0,1,34000.0,1025215,3.0,157 -1311322,1630146521,8902273,2,22,1.0,2,1.0,1,34000.0,1025215,3.0,157 -1311323,1630146522,8181678,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,157 -1311324,1630146523,8178101,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,157 -1311325,1630146524,8181637,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,157 -1311326,1630146525,8181746,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,157 -1311327,1630146526,8181637,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,157 -1311328,1630146527,8180057,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,157 -1311329,1630146528,8181678,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,157 -1311330,1630146529,8902272,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,157 -1311331,1630146530,8902272,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,157 -1311332,1630146531,8902272,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,157 -1311333,1630146532,8178300,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,157 -1311334,1630146533,8180447,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,157 -1311335,1630146534,8180447,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,157 -1311336,1630146535,8180447,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,157 -1311337,1630146536,8180447,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,157 -1311338,1630146537,8180447,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,157 -1311339,1630146538,8180447,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,157 -1311340,1630146539,8180447,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,157 -1311341,1630146540,8180447,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,157 -1311342,1630146541,8178300,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,157 -1311343,1630146542,8178393,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,157 -1311344,1630146543,8178894,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,157 -1311345,1630146544,8180928,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,157 -1311346,1630146545,8180553,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,157 -1311347,1630146546,8178894,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,157 -1311348,1630146547,8179879,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,157 -1311349,1630146548,8179879,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,157 -1311350,1630146549,8180928,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,157 -1311351,1630146550,8178894,2,19,-9.0,1,0.0,1,0.0,1009585,4.0,157 -1311352,1630146551,8179879,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,157 -1311353,1630146552,8178865,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,157 -1311354,1630146553,8176355,2,24,-9.0,1,0.0,1,200.0,1042852,6.0,157 -1311355,1630146554,8180478,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,157 -1311356,1630146555,8177968,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,157 -1311357,1630146556,8902273,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,157 -1311358,1630146557,8178894,2,23,-9.0,1,1.0,1,1920.0,1073094,6.0,157 -1311359,1630146558,8181746,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,157 -1311360,1630146559,8181678,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,157 -1311361,1630146560,8180773,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,157 -1311362,1630146561,8178425,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,157 -1311363,1630146562,8181746,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,157 -1311364,1630146563,8181103,2,22,2.0,3,0.0,1,4800.0,1009585,3.0,157 -1311365,1630146564,8178300,2,20,1.0,3,0.0,1,13900.0,1025215,3.0,157 -1311366,1630146565,8180447,2,20,1.0,3,0.0,1,13900.0,1025215,3.0,157 -1311367,1630146566,8902273,2,24,1.0,2,0.0,1,3000.0,1042852,3.0,157 -1311368,1630146567,8178894,2,21,1.0,2,0.0,1,1300.0,1025215,3.0,157 -1311369,1630146568,8178894,2,20,1.0,2,0.0,1,0.0,1009585,3.0,157 -1311370,1630146569,8902273,2,24,1.0,2,0.0,1,3000.0,1042852,3.0,157 -1311371,1630146570,8179841,2,21,1.0,2,0.0,1,1300.0,1025215,3.0,157 -1311372,1630146571,8181637,2,24,1.0,2,0.0,1,3000.0,1042852,3.0,157 -1311373,1630146572,8178425,2,19,1.0,2,1.0,1,11500.0,1042852,3.0,157 -1311374,1630146573,8180447,1,24,-9.0,2,2.0,1,400.0,1001264,7.0,157 -1311375,1630146574,8181425,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,157 -1311376,1630146575,8176478,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,157 -1311377,1630146576,8902272,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,157 -1311378,1630146577,8178894,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,157 -1311379,1630146578,8179431,2,23,-9.0,1,0.0,1,22000.0,1009585,6.0,157 -1311380,1630146579,8176478,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,157 -1311381,1630146580,8178511,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,157 -1311382,1630146581,8179721,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,157 -1311383,1630146582,8178617,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,157 -1311384,1630146583,8178894,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,157 -1311385,1630146584,8177968,2,23,-9.0,1,0.0,1,22000.0,1009585,6.0,157 -1311386,1630146585,8178894,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,157 -1311387,1630146586,8178894,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,157 -1311388,1630146587,8179431,2,23,-9.0,1,0.0,1,22000.0,1009585,6.0,157 -1311389,1630146588,8179431,2,23,-9.0,1,0.0,1,22000.0,1009585,6.0,157 -1311390,1630146589,8182354,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,157 -1311391,1630146590,8902272,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,157 -1311392,1630146591,8178511,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,157 -1311393,1630146592,8902272,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,157 -1311394,1630146593,8178894,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,157 -1311395,1630146594,8179841,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,157 -1311396,1630146595,8182002,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,157 -1311397,1630146596,8179841,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,157 -1311398,1630146597,8180447,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,157 -1311399,1630146598,8180447,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,157 -1311400,1630146599,8178101,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,157 -1311401,1630146600,8180447,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,157 -1311402,1630146601,8181103,2,20,-9.0,1,1.0,1,15000.0,1001264,6.0,157 -1311403,1630146602,8178425,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,157 -1311404,1630146603,8181103,2,20,-9.0,1,1.0,1,15000.0,1001264,6.0,157 -1311405,1630146604,8181678,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,157 -1311406,1630146605,8181103,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,157 -1311407,1630146606,8181678,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,157 -1311408,1630146607,8181746,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,157 -1311409,1630146608,8178101,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,157 -1311410,1630146609,8180057,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,157 -1311411,1630146610,8178101,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,157 -1311412,1630146611,8181678,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,157 -1311413,1630146612,8181746,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,157 -1311414,1630146613,8181637,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,157 -1311415,1630146614,8181637,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,157 -1311416,1630146615,8178425,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,157 -1311417,1630146616,8902273,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,157 -1311418,1630146617,8178425,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,157 -1311419,1630146618,8181678,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,157 -1311420,1630146619,8180447,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,157 -1311421,1630146620,8180447,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,157 -1311422,1630146621,8180447,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,157 -1311423,1630146622,8180447,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,157 -1311424,1630146623,8178101,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,157 -1311425,1630146624,8181637,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,157 -1311426,1630146625,8180447,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,157 -1311427,1630146626,8178425,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,157 -1311428,1630146627,8180447,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,157 -1311429,1630146628,8181678,2,20,1.0,3,0.0,1,6500.0,1025215,3.0,157 -1311430,1630146629,8180057,2,20,1.0,3,0.0,1,6500.0,1025215,3.0,157 -1311431,1630146630,8181678,2,20,1.0,3,0.0,1,6500.0,1025215,3.0,157 -1311432,1630146631,8181253,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,157 -1311433,1630146632,8181253,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,157 -1311434,1630146633,8181253,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,157 -1311435,1630146634,8181253,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,157 -1311436,1630146635,8181253,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,157 -1311437,1630146636,8181253,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,157 -1311438,1630146637,8902272,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,157 -1311439,1630146638,8178425,2,23,2.0,3,1.0,1,18000.0,1025215,3.0,157 -1311440,1630146639,8178894,2,24,2.0,3,1.0,1,13000.0,1025215,3.0,157 -1311441,1630146640,8178393,2,23,2.0,3,1.0,1,1200.0,1009585,3.0,157 -1311442,1630146641,8178393,2,23,2.0,3,1.0,1,1200.0,1009585,3.0,157 -1311443,1630146642,8180057,2,22,2.0,3,1.0,1,6000.0,1025215,3.0,157 -1311444,1630146643,8181665,2,23,2.0,3,1.0,1,1200.0,1009585,3.0,157 -1311445,1630146644,8178425,2,22,2.0,3,1.0,1,6000.0,1025215,3.0,157 -1311446,1630146645,8178425,2,23,1.0,3,1.0,1,8000.0,1042852,2.0,157 -1311447,1630146646,8178425,2,23,2.0,3,1.0,1,18000.0,1025215,3.0,157 -1311448,1630146647,8181637,2,22,2.0,3,1.0,1,6000.0,1025215,3.0,157 -1311449,1630146648,8902273,2,22,2.0,3,1.0,1,6000.0,1025215,3.0,157 -1311450,1630146649,8181746,2,22,2.0,3,1.0,1,6000.0,1025215,3.0,157 -1311451,1630146650,8902272,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,157 -1311452,1630146651,8902272,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,157 -1311453,1630146652,8177968,2,24,-9.0,1,0.0,1,20000.0,1025215,1.0,157 -1311454,1630146653,8179431,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,157 -1311455,1630146654,8179431,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,157 -1311456,1630146655,8179431,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,157 -1311457,1630146656,8177968,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,157 -1311458,1630146657,8902272,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,157 -1311459,1630146658,8181103,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,157 -1311460,1630146659,8181746,2,22,1.0,2,0.0,1,1100.0,1001264,3.0,157 -1311461,1630146660,8181103,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,157 -1311462,1630146661,8181103,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,157 -1311463,1630146662,8180447,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,157 -1311464,1630146663,8178300,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,157 -1311465,1630146664,8178300,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,157 -1311466,1630146665,8180447,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,157 -1311467,1630146666,8180447,2,16,1.0,2,1.0,1,28500.0,1001264,5.0,157 -1311468,1630146667,8180447,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,157 -1311469,1630146668,8178300,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,157 -1311470,1630146669,8178300,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,157 -1311471,1630146670,8178300,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,157 -1311472,1630146671,8180447,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,157 -1311473,1630146672,8902272,1,24,-9.0,2,2.0,1,22500.0,1025215,5.0,157 -1311474,1630146673,8902272,1,24,-9.0,2,2.0,1,22500.0,1025215,5.0,157 -1311475,1630146674,8180447,2,22,1.0,3,1.0,1,24600.0,1073094,2.0,157 -1311476,1630146675,8180447,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,157 -1311477,1630146676,8180447,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,157 -1311478,1630146677,8178300,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,157 -1311479,1630146678,8180447,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,157 -1311480,1630146679,8178300,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,157 -1311481,1630146680,8178300,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,157 -1311482,1630146681,8180447,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,157 -1311483,1630146682,8180447,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,157 -1311484,1630146683,8179431,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,157 -1311485,1630146684,8179431,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,157 -1311486,1630146685,8179431,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,157 -1311487,1630146686,8182881,2,31,-9.0,1,2.0,1,0.0,1073094,6.0,157 -1311488,1630146687,8178300,2,46,1.0,3,1.0,1,65900.0,1025215,1.0,157 -1311489,1630146688,8180888,4,63,-9.0,2,2.0,1,38500.0,1009585,3.0,157 -1311490,1630146689,8179431,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,157 -1311491,1630146690,8180447,4,19,-9.0,2,1.0,1,17000.0,1001264,7.0,157 -1311492,1630146691,8176224,2,55,-9.0,3,2.0,1,38900.0,1001264,1.0,157 -1311493,1630146692,8180447,2,63,-9.0,2,2.0,1,70000.0,1009585,1.0,157 -1311494,1630146693,8180447,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,157 -1311495,1630146694,8180447,2,16,1.0,2,1.0,1,28500.0,1001264,5.0,157 -1311496,1630146695,8176478,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,157 -1311497,1630146696,8184402,2,54,-9.0,2,1.0,1,10800.0,1042852,3.0,157 -1311498,1630146697,8178390,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,157 -1311499,1630146698,8180057,2,54,-9.0,3,3.0,1,44100.0,1025215,3.0,157 -1311500,1630146699,8182881,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,157 -1311501,1630146700,8178975,2,43,-9.0,2,1.0,1,20000.0,1025215,2.0,157 -1311502,1630146701,8178425,2,63,1.0,2,2.0,1,37300.0,1009585,3.0,157 -1311503,1630146702,8176617,1,33,-9.0,2,2.0,1,65000.0,1009585,5.0,157 -1311504,1630146703,8178300,2,45,-9.0,3,0.0,1,40800.0,1042852,3.0,157 -1311505,1630146704,8178425,2,56,-9.0,2,1.0,1,56000.0,1042852,3.0,157 -1311506,1630146705,8179721,2,31,-9.0,2,2.0,1,62900.0,1001264,1.0,157 -1311507,1630146706,8180057,2,58,-9.0,3,2.0,1,55200.0,1025215,3.0,157 -1311508,1630146707,8176587,2,58,-9.0,1,1.0,1,8700.0,1009585,4.0,157 -1311509,1630146708,8178894,2,20,1.0,2,0.0,1,0.0,1009585,3.0,157 -1311510,1630146709,8902273,2,74,-9.0,2,1.0,1,42970.0,1042852,3.0,157 -1311511,1630146710,8177660,2,47,-9.0,1,0.0,1,77000.0,1009585,4.0,157 -1311512,1630146711,8181253,2,64,-9.0,2,1.0,1,97220.0,1001264,1.0,157 -1311513,1630146712,8183579,2,63,-9.0,1,1.0,1,68000.0,1009585,4.0,157 -1311514,1630146713,8181746,2,84,-9.0,2,1.0,1,21700.0,1025215,3.0,157 -1311515,1630146714,8178642,2,61,-9.0,1,3.0,1,42300.0,1009585,6.0,157 -1311516,1630146715,8183538,2,40,-9.0,3,1.0,1,34900.0,1042852,1.0,157 -1311517,1630146716,8181253,2,61,-9.0,1,1.0,1,31100.0,1025215,6.0,157 -1311518,1630146717,8180128,2,64,-9.0,3,1.0,1,43100.0,1042852,3.0,157 -1311519,1630146718,8181873,1,55,-9.0,1,1.0,1,22000.0,1001264,4.0,157 -1311520,1630146719,8178975,2,60,-9.0,3,2.0,1,61200.0,1073094,3.0,157 -1311521,1630146720,8182002,4,50,-9.0,1,0.0,1,0.0,1042852,6.0,157 -1311522,1630146721,8179721,2,43,1.0,2,1.0,1,34800.0,1001264,3.0,157 -1311523,1630146722,8176355,2,58,-9.0,2,0.0,1,7200.0,1042852,5.0,157 -1311524,1630146723,8176499,2,41,-9.0,1,2.0,1,40000.0,1025215,6.0,157 -1311525,1630146724,8169032,2,44,2.0,3,2.0,1,80000.0,1009585,2.0,157 -1311526,1630146725,8181678,2,67,-9.0,3,0.0,1,17700.0,1009585,1.0,157 -1311527,1630146726,8180447,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,157 -1311528,1630146727,8181103,2,56,-9.0,3,1.0,1,44400.0,1073094,3.0,157 -1311529,1630146728,8179431,4,77,-9.0,2,0.0,1,9000.0,1001264,3.0,157 -1311530,1630146729,8178894,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,157 -1311531,1630146730,8181253,4,60,-9.0,3,3.0,1,51000.0,1073094,1.0,157 -1311532,1630146731,8184402,2,58,-9.0,3,1.0,1,92000.0,1042852,1.0,157 -1311533,1630146732,8181253,2,34,-9.0,2,0.0,1,46300.0,1042852,1.0,157 -1311534,1630146733,8181253,2,46,-9.0,1,0.0,1,12000.0,1025215,4.0,157 -1311535,1630146734,8178300,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,157 -1311536,1630146735,8181678,2,58,-9.0,3,2.0,1,63200.0,1073094,2.0,157 -1311537,1630146736,8181253,2,62,-9.0,1,1.0,1,57000.0,1009585,4.0,157 -1311538,1630146737,8181637,2,58,-9.0,1,1.0,1,109000.0,1073094,6.0,157 -1311539,1630146738,8178101,2,59,-9.0,3,1.0,1,14600.0,1001264,3.0,157 -1311540,1630146739,8181253,2,31,1.0,3,2.0,1,62000.0,1042852,3.0,157 -1311541,1630146740,8177968,4,61,-9.0,2,0.0,1,6200.0,1009585,3.0,157 -1311542,1630146741,8902273,2,64,-9.0,1,1.0,1,50700.0,1025215,4.0,157 -1311543,1630146742,8178390,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,157 -1311544,1630146743,8178300,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,157 -1311545,1630146744,8179721,2,44,-9.0,1,1.0,1,0.0,1009585,6.0,157 -1311546,1630146745,8178390,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,157 -1311547,1630146746,8181253,2,93,-9.0,1,0.0,1,19100.0,1025215,6.0,157 -1311548,1630146747,8178300,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,157 -1311549,1630146748,8179841,2,24,2.0,3,1.0,1,13000.0,1025215,3.0,157 -1311550,1630146749,8181018,2,36,-9.0,2,2.0,1,17200.0,1042852,1.0,157 -1311551,1630146750,8181253,2,31,-9.0,1,1.0,1,91000.0,1009585,6.0,157 -1311552,1630146751,8177968,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,157 -1311553,1630146752,8181746,2,59,-9.0,3,1.0,1,1400.0,1009585,1.0,157 -1311554,1630146753,8178300,2,72,-9.0,1,1.0,1,61000.0,1025215,4.0,157 -1311555,1630146754,8180057,2,68,-9.0,2,2.0,1,81200.0,1001264,1.0,157 -1311556,1630146755,8181746,2,54,-9.0,2,1.0,1,18300.0,1073094,5.0,157 -1311557,1630146756,8180447,2,56,-9.0,2,2.0,1,37800.0,1025215,3.0,157 -1311558,1630146757,8180773,2,27,-9.0,1,0.0,1,1600.0,1001264,6.0,157 -1311559,1630146758,8184402,4,60,-9.0,1,1.0,1,52000.0,1009585,6.0,157 -1311560,1630146759,8181253,1,28,-9.0,1,1.0,1,36700.0,1001264,6.0,157 -1311561,1630146760,8179841,2,58,-9.0,1,0.0,1,94300.0,1025215,6.0,157 -1311562,1630146761,8180816,2,42,-9.0,1,2.0,1,15000.0,1001264,4.0,157 -1311563,1630146762,8180773,2,56,-9.0,2,2.0,1,3800.0,1025215,3.0,157 -1311564,1630146763,8178300,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,157 -1311565,1630146764,8173177,2,32,1.0,3,0.0,1,33000.0,1073094,1.0,157 -1311566,1630146765,8179431,2,86,-9.0,2,1.0,1,50470.0,1009585,3.0,157 -1311567,1630146766,8181253,4,41,-9.0,2,2.0,1,109100.0,1009585,1.0,157 -1311568,1630146767,8181103,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,157 -1311569,1630146768,8178494,2,57,-9.0,3,2.0,1,83200.0,1073094,3.0,157 -1311570,1630146769,8178300,2,22,1.0,3,1.0,1,24600.0,1073094,2.0,157 -1311571,1630146770,8180057,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,157 -1311572,1630146771,8180447,2,60,-9.0,1,2.0,1,42000.0,1025215,4.0,157 -1311573,1630146772,8178425,2,53,-9.0,2,1.0,1,56400.0,1073094,3.0,157 -1311574,1630146773,8178300,4,52,-9.0,2,2.0,1,70.0,1042852,1.0,157 -1311575,1630146774,8902273,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,157 -1311576,1630146775,8179841,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,157 -1311577,1630146776,8180773,2,56,2.0,3,0.0,1,40824.0,1009585,7.0,157 -1311578,1630146777,8183799,1,58,-9.0,1,1.0,1,65000.0,1042852,6.0,157 -1311579,1630146778,8179841,2,65,-9.0,2,2.0,1,19100.0,1025215,1.0,157 -1311580,1630146779,8180928,2,62,-9.0,1,0.0,1,35000.0,1073094,6.0,157 -1311581,1630146780,8902272,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,157 -1311582,1630146781,8176132,2,50,-9.0,2,2.0,1,20800.0,1073094,1.0,157 -1311583,1630146782,8902273,2,46,-9.0,2,2.0,1,15800.0,1025215,1.0,157 -1311584,1630146783,8179550,2,31,-9.0,2,1.0,1,29500.0,1025215,1.0,157 -1311585,1630146784,8181253,2,44,2.0,3,1.0,1,91880.0,1001264,3.0,157 -1311586,1630146785,8169032,2,60,1.0,3,2.0,1,30100.0,1025215,1.0,157 -1311587,1630146786,8178300,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,157 -1311588,1630146787,8178642,2,85,-9.0,2,0.0,1,42220.0,1009585,3.0,157 -1311589,1630146788,8180057,4,22,-9.0,1,1.0,1,19004.0,1009585,4.0,157 -1311590,1630146789,8181678,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,157 -1311591,1630146790,8177157,2,61,-9.0,1,2.0,1,48230.0,1042852,4.0,157 -1311592,1630146791,8178300,2,20,1.0,3,0.0,1,13900.0,1025215,3.0,157 -1311593,1630146792,8178425,2,94,-9.0,3,1.0,1,24200.0,1009585,3.0,157 -1311594,1630146793,8181955,2,32,1.0,3,1.0,1,10000.0,1009585,1.0,157 -1311595,1630146794,8181253,1,48,-9.0,2,2.0,1,62600.0,1042852,7.0,157 -1311596,1630146795,8178101,2,57,-9.0,2,1.0,1,33700.0,1009585,3.0,157 -1311597,1630146796,8178101,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,157 -1311598,1630146797,8181637,4,24,1.0,2,1.0,1,35000.0,1001264,3.0,157 -1311599,1630146798,8177660,4,52,-9.0,2,2.0,1,46400.0,1073094,1.0,157 -1311600,1630146799,8181253,2,46,-9.0,1,2.0,1,75000.0,1042852,6.0,157 -1311601,1630146800,8179735,2,73,-9.0,2,2.0,1,52800.0,1073094,1.0,157 -1311602,1630146801,8178300,4,50,-9.0,1,1.0,1,27000.0,1009585,6.0,157 -1311603,1630146802,8178300,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,157 -1311604,1630146803,8178698,2,57,-9.0,2,2.0,1,74520.0,1001264,5.0,157 -1311605,1630146804,8178300,2,66,-9.0,1,1.0,1,32000.0,1001264,4.0,157 -1311606,1630146805,8180447,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,157 -1311607,1630146806,8180447,2,51,2.0,3,1.0,1,23800.0,1073094,3.0,157 -1311608,1630146807,8180447,2,40,2.0,3,1.0,1,28000.0,1073094,3.0,157 -1311609,1630146808,8181678,2,40,-9.0,2,2.0,1,95000.0,1042852,1.0,157 -1311610,1630146809,8181171,2,85,-9.0,3,2.0,1,96700.0,1001264,1.0,157 -1311611,1630146810,8169049,2,42,-9.0,2,1.0,1,8000.0,1025215,2.0,157 -1311612,1630146811,8176749,4,83,-9.0,2,2.0,1,75600.0,1073094,2.0,157 -1311613,1630146812,8182565,2,61,-9.0,2,0.0,1,12000.0,1042852,3.0,157 -1311614,1630146813,8181746,2,57,1.0,3,2.0,1,17500.0,1001264,3.0,157 -1311615,1630146814,8181253,4,65,-9.0,1,1.0,1,12000.0,1009585,4.0,157 -1311616,1630146815,8178300,2,71,-9.0,2,0.0,1,13500.0,1025215,7.0,157 -1311617,1630146816,8179431,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,157 -1311618,1630146817,8178390,2,73,-9.0,1,2.0,1,37000.0,1042852,4.0,157 -1311619,1630146818,8180447,2,55,-9.0,3,0.0,1,34150.0,1042852,3.0,157 -1311620,1630146819,8181253,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,157 -1311621,1630146820,8178300,2,64,-9.0,1,2.0,1,36400.0,1001264,6.0,157 -1311622,1630146821,8178101,2,57,-9.0,1,2.0,1,67700.0,1025215,4.0,157 -1311623,1630146822,8182195,2,60,-9.0,2,2.0,1,40700.0,1001264,1.0,157 -1311624,1630146823,8180447,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,157 -1311625,1630146824,8180057,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,157 -1311626,1630146825,8181746,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,157 -1311627,1630146826,8181253,2,45,2.0,3,1.0,1,60000.0,1009585,3.0,157 -1311628,1630146827,8184402,2,74,-9.0,2,4.0,1,43600.0,1042852,5.0,157 -1311629,1630146828,8184402,2,54,-9.0,1,2.0,1,60000.0,1042852,4.0,157 -1311630,1630146829,8180447,2,48,-9.0,1,0.0,1,12000.0,1001264,4.0,157 -1311631,1630146830,8181637,2,73,-9.0,2,1.0,1,55100.0,1001264,3.0,157 -1311632,1630146831,8181746,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,157 -1311633,1630146832,8177660,2,31,-9.0,2,2.0,1,125000.0,1042852,7.0,157 -1311634,1630146833,8181253,2,59,-9.0,3,0.0,1,82600.0,1009585,3.0,157 -1311635,1630146834,8177886,2,51,-9.0,2,2.0,1,50000.0,1042852,3.0,157 -1311636,1630146835,8181253,2,44,1.0,3,1.0,1,12200.0,1025215,1.0,157 -1311637,1630146836,8179431,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,157 -1311638,1630146837,8180447,2,30,-9.0,2,1.0,1,98800.0,1073094,5.0,157 -1311639,1630146838,8178894,2,69,-9.0,2,0.0,1,26200.0,1001264,5.0,157 -1311640,1630146839,8183396,2,45,-9.0,2,2.0,1,198000.0,1042852,1.0,157 -1311641,1630146840,8179431,2,65,-9.0,1,2.0,1,16000.0,1001264,6.0,157 -1311642,1630146841,8181746,2,53,-9.0,2,3.0,1,110000.0,1009585,1.0,157 -1311643,1630146842,8182969,2,43,-9.0,1,1.0,1,50000.0,1073094,4.0,157 -1311644,1630146843,8181746,2,28,1.0,2,1.0,1,21000.0,1009585,3.0,157 -1311645,1630146844,8180447,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,157 -1311646,1630146845,8178390,2,26,-9.0,2,1.0,1,20000.0,1042852,5.0,157 -1311647,1630146846,8181746,2,72,-9.0,1,0.0,1,54300.0,1073094,6.0,157 -1311648,1630146847,8180447,2,69,-9.0,2,1.0,1,77600.0,1025215,1.0,157 -1311649,1630146848,8180447,2,68,-9.0,3,0.0,1,53700.0,1025215,3.0,157 -1311650,1630146849,8176652,1,56,-9.0,2,2.0,1,67100.0,1009585,1.0,157 -1311651,1630146850,8180447,2,72,-9.0,2,1.0,1,11000.0,1001264,3.0,157 -1311652,1630146851,8181253,2,40,-9.0,1,1.0,1,22000.0,1001264,6.0,157 -1311653,1630146852,8181253,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,157 -1311654,1630146853,8181103,2,63,-9.0,1,1.0,1,12000.0,1042852,6.0,157 -1311655,1630146854,8902272,2,45,1.0,2,0.0,1,20900.0,1009585,3.0,157 -1311656,1630146855,8181057,2,59,-9.0,2,1.0,1,59500.0,1025215,1.0,157 -1311657,1630146856,8183235,2,67,-9.0,2,2.0,1,69551.0,1009585,3.0,157 -1311658,1630146857,8902272,1,27,-9.0,1,1.0,1,75001.0,1009585,4.0,157 -1311659,1630146858,8181678,2,58,1.0,3,1.0,1,23160.0,1025215,1.0,157 -1311660,1630146859,8176478,2,58,-9.0,3,2.0,1,157810.0,1009585,1.0,157 -1311661,1630146860,8180057,2,61,-9.0,1,1.0,1,60000.0,1042852,6.0,157 -1311662,1630146861,8179431,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,157 -1311663,1630146862,8181873,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,157 -1311664,1630146863,8178101,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,157 -1311665,1630146864,8178698,2,66,-9.0,1,1.0,1,40150.0,1001264,4.0,157 -1311666,1630146865,8178300,2,57,-9.0,1,2.0,1,8400.0,1025215,6.0,157 -1311667,1630146866,8181637,2,44,-9.0,2,0.0,1,22790.0,1073094,2.0,157 -1311668,1630146867,8180812,2,62,-9.0,2,2.0,1,105000.0,1042852,3.0,157 -1311669,1630146868,8175207,2,45,-9.0,2,2.0,1,198000.0,1042852,1.0,157 -1311670,1630146869,8175207,2,60,-9.0,2,2.0,1,247000.0,1025215,2.0,157 -1311671,1630146870,8175207,2,61,-9.0,2,3.0,1,46000.0,1001264,1.0,157 -1311672,1630146871,8175207,2,62,-9.0,1,1.0,1,51700.0,1009585,6.0,157 -1311673,1630146872,8177008,2,63,-9.0,1,1.0,1,49000.0,1001264,6.0,157 -1311674,1630146873,8175207,2,54,-9.0,1,1.0,1,56000.0,1001264,6.0,157 -1311675,1630146874,8177392,2,63,-9.0,2,2.0,1,59200.0,1025215,3.0,157 -1311676,1630146875,8175956,2,63,-9.0,2,2.0,1,59200.0,1025215,3.0,157 -1311677,1630146876,8177392,2,63,-9.0,2,2.0,1,59200.0,1025215,3.0,157 -1311678,1630146877,8175207,2,64,-9.0,2,2.0,1,44200.0,1025215,3.0,157 -1311679,1630146878,8175207,2,56,-9.0,1,0.0,1,0.0,1025215,6.0,157 -1311680,1630146879,8175207,2,63,-9.0,1,0.0,1,28800.0,1042852,6.0,157 -1311681,1630146880,8175956,2,51,-9.0,1,1.0,1,1700.0,1042852,6.0,157 -1311682,1630146881,8175207,2,52,-9.0,1,1.0,1,0.0,1001264,6.0,157 -1311683,1630146882,8175982,2,63,-9.0,2,0.0,1,26500.0,1001264,7.0,157 -1311684,1630146883,8175207,2,60,-9.0,2,1.0,1,7200.0,1009585,1.0,157 -1311685,1630146884,8175956,2,58,-9.0,2,1.0,1,0.0,1001264,3.0,157 -1311686,1630146885,8175207,2,55,-9.0,2,1.0,1,13700.0,1009585,1.0,157 -1311687,1630146886,8179183,2,48,-9.0,1,0.0,1,4800.0,1009585,6.0,157 -1311688,1630146887,8175207,2,55,-9.0,1,1.0,1,10000.0,1001264,6.0,157 -1311689,1630146888,8175207,2,59,-9.0,1,1.0,1,3400.0,1009585,6.0,157 -1311690,1630146889,8180287,2,63,-9.0,2,2.0,1,16800.0,1025215,3.0,157 -1311691,1630146890,8176767,2,55,-9.0,2,2.0,1,20050.0,1001264,3.0,157 -1311692,1630146891,8175207,2,60,-9.0,2,2.0,1,24500.0,1042852,1.0,157 -1311693,1630146892,8175207,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,157 -1311694,1630146893,8180522,2,35,2.0,4,1.0,1,48900.0,1042852,2.0,157 -1311695,1630146894,8175207,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,157 -1311696,1630146895,8177840,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,157 -1311697,1630146896,8177706,2,34,-9.0,1,1.0,1,30000.0,1073094,6.0,157 -1311698,1630146897,8177840,2,27,-9.0,1,1.0,1,30000.0,1009585,6.0,157 -1311699,1630146898,8177706,2,26,-9.0,1,1.0,1,40000.0,1042852,6.0,157 -1311700,1630146899,8175207,2,32,-9.0,1,1.0,1,54000.0,1009585,6.0,157 -1311701,1630146900,8177264,2,43,-9.0,1,1.0,1,55000.0,1009585,6.0,157 -1311702,1630146901,8177706,2,34,-9.0,1,1.0,1,56000.0,1009585,4.0,157 -1311703,1630146902,8177706,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,157 -1311704,1630146903,8175207,1,26,-9.0,1,1.0,1,45000.0,1001264,6.0,157 -1311705,1630146904,8176859,2,38,1.0,2,1.0,1,42200.0,1001264,3.0,157 -1311706,1630146905,8175706,2,42,1.0,2,1.0,1,36500.0,1009585,3.0,157 -1311707,1630146906,8180041,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,157 -1311708,1630146907,8175207,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,157 -1311709,1630146908,8177840,2,29,-9.0,2,1.0,1,43100.0,1025215,2.0,157 -1311710,1630146909,8175207,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,157 -1311711,1630146910,8177706,2,28,-9.0,2,2.0,1,40000.0,1009585,7.0,157 -1311712,1630146911,8178979,1,29,-9.0,2,2.0,1,45800.0,1001264,5.0,157 -1311713,1630146912,8175207,2,30,3.0,4,0.0,1,0.0,1073094,3.0,157 -1311714,1630146913,8180812,2,40,1.0,4,1.0,1,5000.0,1073094,3.0,157 -1311715,1630146914,8177840,2,44,-9.0,1,0.0,1,50.0,1042852,4.0,157 -1311716,1630146915,8177477,2,44,-9.0,1,0.0,1,9350.0,1025215,6.0,157 -1311717,1630146916,8177706,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,157 -1311718,1630146917,8175207,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,157 -1311719,1630146918,8177706,2,41,-9.0,1,1.0,1,8900.0,1009585,6.0,157 -1311720,1630146919,8175207,2,29,-9.0,1,1.0,1,10400.0,1001264,6.0,157 -1311721,1630146920,8175207,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,157 -1311722,1630146921,8175207,2,34,-9.0,2,0.0,1,0.0,1042852,2.0,157 -1311723,1630146922,8175842,2,26,1.0,2,0.0,1,0.0,1001264,3.0,157 -1311724,1630146923,8180212,2,43,-9.0,2,1.0,1,24740.0,1042852,7.0,157 -1311725,1630146924,8175207,2,42,1.0,2,1.0,1,2000.0,1073094,3.0,157 -1311726,1630146925,8175207,2,38,3.0,4,1.0,1,13300.0,1073094,3.0,157 -1311727,1630146926,8179448,2,30,3.0,4,1.0,1,12800.0,1042852,3.0,157 -1311728,1630146927,8175207,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,157 -1311729,1630146928,8176667,2,44,2.0,4,1.0,1,7200.0,1009585,3.0,157 -1311730,1630146929,8175207,2,30,3.0,4,1.0,1,17000.0,1009585,3.0,157 -1311731,1630146930,8175207,2,38,3.0,4,1.0,1,13300.0,1073094,3.0,157 -1311732,1630146931,8175207,2,42,-9.0,1,0.0,1,27000.0,1025215,6.0,157 -1311733,1630146932,8175207,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,157 -1311734,1630146933,8177840,2,39,-9.0,1,0.0,1,24000.0,1025215,4.0,157 -1311735,1630146934,8177840,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,157 -1311736,1630146935,8177840,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,157 -1311737,1630146936,8177840,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,157 -1311738,1630146937,8175207,2,42,-9.0,1,1.0,1,24000.0,1001264,6.0,157 -1311739,1630146938,8177840,2,44,-9.0,1,1.0,1,24000.0,1001264,6.0,157 -1311740,1630146939,8175207,1,31,-9.0,1,1.0,1,18000.0,1001264,6.0,157 -1311741,1630146940,8176537,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,157 -1311742,1630146941,8176537,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,157 -1311743,1630146942,8177840,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,157 -1311744,1630146943,8175842,2,31,-9.0,2,0.0,1,23100.0,1073094,2.0,157 -1311745,1630146944,8176106,2,34,1.0,2,0.0,1,18000.0,1025215,3.0,157 -1311746,1630146945,8175207,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,157 -1311747,1630146946,8177477,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,157 -1311748,1630146947,8175207,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,157 -1311749,1630146948,8175207,2,29,1.0,2,1.0,1,12190.0,1001264,3.0,157 -1311750,1630146949,8179816,2,32,1.0,2,1.0,1,9400.0,1001264,3.0,157 -1311751,1630146950,8177706,2,25,1.0,2,1.0,1,4500.0,1042852,3.0,157 -1311752,1630146951,8177706,2,25,1.0,2,1.0,1,4500.0,1042852,3.0,157 -1311753,1630146952,8175207,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,157 -1311754,1630146953,8175207,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,157 -1311755,1630146954,8175207,2,49,-9.0,2,2.0,1,152000.0,1042852,1.0,157 -1311756,1630146955,8175207,2,50,-9.0,4,2.0,1,43680.0,1073094,1.0,157 -1311757,1630146956,8176237,2,59,-9.0,1,0.0,1,31000.0,1042852,6.0,157 -1311758,1630146957,8177706,2,61,-9.0,1,0.0,1,49000.0,1073094,6.0,157 -1311759,1630146958,8176237,2,55,-9.0,1,0.0,1,50000.0,1025215,6.0,157 -1311760,1630146959,8175207,2,59,-9.0,1,1.0,1,50020.0,1001264,6.0,157 -1311761,1630146960,8177840,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,157 -1311762,1630146961,8175207,2,59,-9.0,1,1.0,1,50020.0,1001264,6.0,157 -1311763,1630146962,8177840,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,157 -1311764,1630146963,8175207,2,55,-9.0,1,1.0,1,50000.0,1042852,6.0,157 -1311765,1630146964,8176106,2,62,-9.0,1,1.0,1,37000.0,1009585,6.0,157 -1311766,1630146965,8175207,2,50,-9.0,1,1.0,1,32000.0,1001264,6.0,157 -1311767,1630146966,8176421,2,61,-9.0,1,1.0,1,40000.0,1025215,6.0,157 -1311768,1630146967,8175842,2,56,-9.0,1,1.0,1,33000.0,1073094,6.0,157 -1311769,1630146968,8175207,2,62,-9.0,2,0.0,1,38100.0,1025215,1.0,157 -1311770,1630146969,8177264,2,61,-9.0,2,0.0,1,31400.0,1042852,2.0,157 -1311771,1630146970,8175207,2,58,-9.0,2,1.0,1,38000.0,1001264,3.0,157 -1311772,1630146971,8180041,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,157 -1311773,1630146972,8175207,2,51,-9.0,2,1.0,1,42900.0,1025215,3.0,157 -1311774,1630146973,8177264,2,45,-9.0,2,1.0,1,40200.0,1042852,3.0,157 -1311775,1630146974,8175706,2,45,-9.0,2,1.0,1,40200.0,1042852,3.0,157 -1311776,1630146975,8180369,2,58,-9.0,2,2.0,1,57800.0,1009585,7.0,157 -1311777,1630146976,8177706,2,53,-9.0,2,2.0,1,30000.0,1042852,3.0,157 -1311778,1630146977,8177928,2,58,-9.0,2,2.0,1,57800.0,1009585,7.0,157 -1311779,1630146978,8177477,2,50,-9.0,4,1.0,1,37500.0,1042852,7.0,157 -1311780,1630146979,8175207,2,54,-9.0,2,2.0,1,58900.0,1025215,1.0,157 -1311781,1630146980,8177840,2,62,-9.0,1,0.0,1,1800.0,1001264,4.0,157 -1311782,1630146981,8177706,2,51,-9.0,1,0.0,1,9100.0,1001264,6.0,157 -1311783,1630146982,8177706,2,51,-9.0,1,0.0,1,9100.0,1001264,6.0,157 -1311784,1630146983,8176537,2,51,-9.0,1,0.0,1,20800.0,1073094,6.0,157 -1311785,1630146984,8177706,2,50,-9.0,1,0.0,1,10900.0,1073094,4.0,157 -1311786,1630146985,8179816,2,55,-9.0,1,0.0,1,8500.0,1009585,6.0,157 -1311787,1630146986,8175207,2,47,-9.0,1,0.0,1,6900.0,1025215,6.0,157 -1311788,1630146987,8180212,2,63,-9.0,1,0.0,1,0.0,1073094,6.0,157 -1311789,1630146988,8175207,2,58,-9.0,1,0.0,1,11000.0,1025215,6.0,157 -1311790,1630146989,8177840,2,62,-9.0,1,0.0,1,9600.0,1001264,6.0,157 -1311791,1630146990,8175207,2,52,-9.0,1,0.0,1,6000.0,1073094,6.0,157 -1311792,1630146991,8180953,2,58,-9.0,1,0.0,1,8700.0,1009585,6.0,157 -1311793,1630146992,8177706,2,54,-9.0,1,0.0,1,4600.0,1025215,6.0,157 -1311794,1630146993,8177840,2,51,-9.0,1,0.0,1,0.0,1001264,4.0,157 -1311795,1630146994,8177840,2,63,-9.0,1,0.0,1,0.0,1025215,6.0,157 -1311796,1630146995,8177840,2,59,-9.0,1,0.0,1,1200.0,1042852,4.0,157 -1311797,1630146996,8177840,2,54,-9.0,1,0.0,1,10000.0,1001264,4.0,157 -1311798,1630146997,8175207,2,48,-9.0,1,0.0,1,12200.0,1009585,6.0,157 -1311799,1630146998,8176237,2,53,-9.0,1,0.0,1,7640.0,1001264,6.0,157 -1311800,1630146999,8177840,2,58,-9.0,1,0.0,1,8400.0,1042852,4.0,157 -1311801,1630147000,8177142,2,53,-9.0,1,0.0,1,14300.0,1001264,6.0,157 -1311802,1630147001,8179816,2,53,-9.0,1,0.0,1,9420.0,1009585,6.0,157 -1311803,1630147002,8177840,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,157 -1311804,1630147003,8177840,2,62,-9.0,1,0.0,1,12300.0,1001264,6.0,157 -1311805,1630147004,8177706,2,53,-9.0,1,0.0,1,8400.0,1042852,6.0,157 -1311806,1630147005,8177706,2,58,-9.0,1,0.0,1,8600.0,1073094,6.0,157 -1311807,1630147006,8175207,2,63,-9.0,1,1.0,1,17100.0,1001264,6.0,157 -1311808,1630147007,8177477,2,63,-9.0,1,1.0,1,12000.0,1042852,6.0,157 -1311809,1630147008,8177706,2,58,-9.0,1,1.0,1,7200.0,1001264,6.0,157 -1311810,1630147009,8177840,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,157 -1311811,1630147010,8177706,2,58,-9.0,1,1.0,1,25600.0,1073094,6.0,157 -1311812,1630147011,8177706,2,58,-9.0,2,0.0,1,16310.0,1009585,1.0,157 -1311813,1630147012,8175207,2,53,-9.0,2,0.0,1,3500.0,1009585,1.0,157 -1311814,1630147013,8175207,2,61,-9.0,2,0.0,1,12700.0,1042852,1.0,157 -1311815,1630147014,8175207,2,62,-9.0,2,0.0,1,16800.0,1042852,1.0,157 -1311816,1630147015,8177840,2,51,-9.0,2,0.0,1,24000.0,1073094,7.0,157 -1311817,1630147016,8177840,2,55,-9.0,2,0.0,1,12770.0,1073094,7.0,157 -1311818,1630147017,8175207,2,53,-9.0,2,0.0,1,3500.0,1009585,1.0,157 -1311819,1630147018,8175207,2,61,-9.0,2,0.0,1,12700.0,1042852,1.0,157 -1311820,1630147019,8177840,2,53,-9.0,1,0.0,1,7500.0,1042852,3.0,157 -1311821,1630147020,8180287,2,59,-9.0,2,0.0,1,8650.0,1025215,3.0,157 -1311822,1630147021,8175207,2,54,1.0,2,0.0,1,10030.0,1025215,3.0,157 -1311823,1630147022,8175207,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,157 -1311824,1630147023,8176537,2,55,-9.0,2,1.0,1,28600.0,1009585,1.0,157 -1311825,1630147024,8175207,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,157 -1311826,1630147025,8177840,2,51,-9.0,2,1.0,1,17900.0,1042852,7.0,157 -1311827,1630147026,8177706,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,157 -1311828,1630147027,8175207,2,47,-9.0,1,0.0,1,20600.0,1073094,6.0,157 -1311829,1630147028,8175842,2,61,-9.0,1,0.0,1,14000.0,1073094,6.0,157 -1311830,1630147029,8177706,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,157 -1311831,1630147030,8177477,2,62,-9.0,1,0.0,1,29000.0,1009585,6.0,157 -1311832,1630147031,8177706,2,56,-9.0,1,0.0,1,8800.0,1009585,6.0,157 -1311833,1630147032,8176237,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,157 -1311834,1630147033,8176106,2,52,-9.0,1,0.0,1,13400.0,1042852,6.0,157 -1311835,1630147034,8177840,2,54,-9.0,1,0.0,1,21000.0,1009585,4.0,157 -1311836,1630147035,8175207,2,64,-9.0,1,0.0,1,15000.0,1025215,4.0,157 -1311837,1630147036,8178325,2,58,-9.0,1,0.0,1,21800.0,1001264,6.0,157 -1311838,1630147037,8177706,2,49,-9.0,1,0.0,1,6000.0,1042852,4.0,157 -1311839,1630147038,8180643,2,45,-9.0,1,0.0,1,22900.0,1073094,6.0,157 -1311840,1630147039,8176537,2,61,-9.0,1,0.0,1,14000.0,1073094,6.0,157 -1311841,1630147040,8176421,2,60,-9.0,1,1.0,1,28000.0,1001264,6.0,157 -1311842,1630147041,8175207,2,48,-9.0,1,1.0,1,19200.0,1001264,6.0,157 -1311843,1630147042,8176237,2,46,-9.0,1,1.0,1,1000.0,1001264,6.0,157 -1311844,1630147043,8176106,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,157 -1311845,1630147044,8175207,2,53,-9.0,1,1.0,1,27000.0,1009585,4.0,157 -1311846,1630147045,8177840,2,46,-9.0,1,1.0,1,14000.0,1001264,6.0,157 -1311847,1630147046,8177840,2,48,-9.0,1,1.0,1,6000.0,1025215,6.0,157 -1311848,1630147047,8177840,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,157 -1311849,1630147048,8175207,2,46,-9.0,2,0.0,1,4200.0,1025215,3.0,157 -1311850,1630147049,8177840,2,52,-9.0,2,0.0,1,12160.0,1001264,7.0,157 -1311851,1630147050,8177840,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,157 -1311852,1630147051,8177840,2,52,-9.0,2,0.0,1,12160.0,1001264,7.0,157 -1311853,1630147052,8175207,2,50,-9.0,2,1.0,1,20480.0,1073094,3.0,157 -1311854,1630147053,8175207,2,60,-9.0,2,1.0,1,2700.0,1009585,3.0,157 -1311855,1630147054,8177142,2,55,-9.0,2,1.0,1,9800.0,1042852,3.0,157 -1311856,1630147055,8177706,2,54,-9.0,2,1.0,1,18300.0,1073094,5.0,157 -1311857,1630147056,8175207,2,50,-9.0,2,1.0,1,18000.0,1042852,3.0,157 -1311858,1630147057,8177264,2,50,-9.0,2,1.0,1,20480.0,1073094,3.0,157 -1311859,1630147058,8175207,2,55,-9.0,2,1.0,1,25000.0,1042852,3.0,157 -1311860,1630147059,8175207,2,50,-9.0,2,1.0,1,20480.0,1073094,3.0,157 -1311861,1630147060,8176667,2,47,-9.0,2,1.0,1,19300.0,1042852,7.0,157 -1311862,1630147061,8177840,2,54,-9.0,2,2.0,1,27000.0,1009585,1.0,157 -1311863,1630147062,8177840,2,54,-9.0,2,2.0,1,27000.0,1009585,1.0,157 -1311864,1630147063,8177142,2,54,-9.0,2,0.0,1,19000.0,1001264,1.0,157 -1311865,1630147064,8177264,2,52,-9.0,2,0.0,1,23400.0,1073094,7.0,157 -1311866,1630147065,8175207,2,61,-9.0,2,1.0,1,29250.0,1042852,3.0,157 -1311867,1630147066,8177840,2,66,-9.0,1,0.0,1,9000.0,1001264,4.0,157 -1311868,1630147067,8177706,2,74,-9.0,1,0.0,1,12700.0,1025215,6.0,157 -1311869,1630147068,8177840,2,69,-9.0,1,0.0,1,8400.0,1001264,6.0,157 -1311870,1630147069,8177706,2,73,-9.0,1,0.0,1,10600.0,1009585,6.0,157 -1311871,1630147070,8175706,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,157 -1311872,1630147071,8179816,2,70,-9.0,1,0.0,1,8600.0,1042852,6.0,157 -1311873,1630147072,8177840,2,71,-9.0,1,0.0,1,8700.0,1025215,6.0,157 -1311874,1630147073,8177840,2,76,-9.0,1,1.0,1,16800.0,1042852,4.0,157 -1311875,1630147074,8177706,2,66,-9.0,1,1.0,1,8700.0,1009585,6.0,157 -1311876,1630147075,8177706,2,73,-9.0,2,0.0,1,10000.0,1042852,3.0,157 -1311877,1630147076,8175207,2,90,-9.0,2,0.0,1,21000.0,1073094,1.0,157 -1311878,1630147077,8176859,2,23,-9.0,2,1.0,1,34000.0,1042852,2.0,157 -1311879,1630147078,8175207,2,20,1.0,2,0.0,1,0.0,1009585,3.0,157 -1311880,1630147079,8177840,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,157 -1311881,1630147080,8177928,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,157 -1311882,1630147081,8177706,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,157 -1311883,1630147082,8177840,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,157 -1311884,1630147083,8177706,2,22,1.0,2,0.0,1,11000.0,1073094,3.0,157 -1311885,1630147084,8176667,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,157 -1311886,1630147085,8175207,2,50,-9.0,4,1.0,1,37500.0,1042852,7.0,157 -1311887,1630147086,8178325,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,157 -1311888,1630147087,8176421,1,60,-9.0,1,0.0,1,24500.0,1025215,6.0,157 -1311889,1630147088,8175207,2,55,3.0,4,1.0,1,24500.0,1025215,3.0,157 -1311890,1630147089,8175207,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,157 -1311891,1630147090,8177840,2,51,-9.0,1,6.0,1,28000.0,1025215,4.0,157 -1311892,1630147091,8178325,2,46,-9.0,1,2.0,1,31500.0,1009585,6.0,157 -1311893,1630147092,8175207,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,157 -1311894,1630147093,8175207,1,62,-9.0,1,1.0,1,22600.0,1001264,4.0,157 -1311895,1630147094,8175207,1,61,-9.0,1,1.0,1,57000.0,1025215,4.0,157 -1311896,1630147095,8177008,2,62,-9.0,2,2.0,1,105000.0,1042852,3.0,157 -1311897,1630147096,8175207,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,157 -1311898,1630147097,8175207,2,61,-9.0,2,2.0,1,12800.0,1073094,7.0,157 -1311899,1630147098,8180522,2,51,-9.0,2,2.0,1,50000.0,1042852,3.0,157 -1311900,1630147099,8175207,2,64,-9.0,2,1.0,1,52000.0,1042852,1.0,157 -1311901,1630147100,8177477,2,41,-9.0,2,1.0,1,35000.0,1073094,3.0,157 -1311902,1630147101,8175706,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,157 -1311903,1630147102,8177264,2,42,-9.0,1,1.0,1,0.0,1025215,6.0,157 -1311904,1630147103,8175207,2,55,-9.0,4,2.0,1,58500.0,1025215,1.0,157 -1311905,1630147104,8177706,2,45,-9.0,1,1.0,1,135000.0,1073094,6.0,157 -1311906,1630147105,8175207,2,61,-9.0,1,0.0,1,53100.0,1025215,5.0,157 -1311907,1630147106,8177706,2,49,-9.0,4,0.0,1,46100.0,1009585,1.0,157 -1311908,1630147107,8177840,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,157 -1311909,1630147108,8179618,1,59,-9.0,2,3.0,1,123000.0,1025215,1.0,157 -1311910,1630147109,8176537,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,157 -1311911,1630147110,8175207,2,65,-9.0,2,1.0,1,23400.0,1042852,3.0,157 -1311912,1630147111,8175207,2,54,1.0,2,1.0,1,8500.0,1009585,2.0,157 -1311913,1630147112,8177706,2,75,-9.0,2,1.0,1,45200.0,1001264,7.0,157 -1311914,1630147113,8180812,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,157 -1311915,1630147114,8175207,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,157 -1311916,1630147115,8175207,2,61,-9.0,1,1.0,1,36100.0,1042852,6.0,157 -1311917,1630147116,8175207,2,54,1.0,4,3.0,1,32100.0,1042852,3.0,157 -1311918,1630147117,8175207,2,65,-9.0,1,1.0,1,22000.0,1042852,6.0,157 -1311919,1630147118,8175207,2,27,-9.0,1,0.0,1,16600.0,1073094,6.0,157 -1311920,1630147119,8178048,2,43,-9.0,2,2.0,1,53500.0,1073094,3.0,157 -1311921,1630147120,8175706,2,63,1.0,2,2.0,1,37300.0,1009585,3.0,157 -1311922,1630147121,8175207,2,24,-9.0,4,2.0,1,58800.0,1042852,2.0,157 -1311923,1630147122,8175207,2,74,-9.0,2,4.0,1,43600.0,1042852,5.0,157 -1311924,1630147123,8175207,2,28,1.0,2,1.0,1,0.0,1001264,3.0,157 -1311925,1630147124,8177706,2,44,-9.0,1,0.0,1,10400.0,1042852,4.0,157 -1311926,1630147125,8175207,2,53,-9.0,2,1.0,1,65000.0,1042852,1.0,157 -1311927,1630147126,8177008,2,63,-9.0,1,1.0,1,49000.0,1001264,6.0,157 -1311928,1630147127,8177392,2,63,-9.0,2,3.0,1,26400.0,1009585,1.0,157 -1311929,1630147128,8175207,2,45,-9.0,2,1.0,1,9500.0,1025215,3.0,157 -1311930,1630147129,8177706,2,26,-9.0,2,0.0,1,12200.0,1001264,7.0,157 -1311931,1630147130,8175207,2,50,1.0,4,3.0,1,237000.0,1025215,1.0,157 -1311932,1630147131,8179959,2,63,1.0,4,1.0,1,100000.0,1073094,3.0,157 -1311933,1630147132,8175207,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,157 -1311934,1630147133,8175207,2,47,1.0,2,1.0,1,104500.0,1001264,3.0,157 -1311935,1630147134,8175207,2,50,-9.0,4,0.0,1,34000.0,1042852,2.0,157 -1311936,1630147135,8175207,2,29,-9.0,2,2.0,1,20200.0,1025215,7.0,157 -1311937,1630147136,8175207,2,26,2.0,4,2.0,1,15600.0,1001264,3.0,157 -1311938,1630147137,8175207,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,157 -1311939,1630147138,8176859,2,61,1.0,2,0.0,1,18500.0,1042852,3.0,157 -1311940,1630147139,8177706,2,36,-9.0,1,2.0,1,33000.0,1001264,4.0,157 -1311941,1630147140,8175207,2,64,-9.0,2,1.0,1,42800.0,1025215,2.0,157 -1311942,1630147141,8175207,2,40,2.0,4,1.0,1,43600.0,1073094,1.0,157 -1311943,1630147142,8175207,1,27,-9.0,2,2.0,1,108000.0,1042852,5.0,157 -1311944,1630147143,8175207,2,59,-9.0,1,1.0,1,75000.0,1025215,6.0,157 -1311945,1630147144,8175207,2,40,1.0,4,0.0,1,18200.0,1042852,3.0,157 -1311946,1630147145,8175207,1,64,-9.0,2,2.0,1,389100.0,1001264,1.0,157 -1311947,1630147146,8180369,2,58,-9.0,1,0.0,1,50000.0,1025215,6.0,157 -1311948,1630147147,8179959,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,157 -1311949,1630147148,8177706,2,54,-9.0,1,1.0,1,17700.0,1001264,6.0,157 -1311950,1630147149,8175207,2,56,-9.0,2,1.0,1,102000.0,1042852,1.0,157 -1311951,1630147150,8175207,2,54,-9.0,2,2.0,1,58900.0,1025215,1.0,157 -1311952,1630147151,8175207,2,41,-9.0,1,1.0,1,80000.0,1073094,6.0,157 -1311953,1630147152,8176767,2,51,1.0,2,1.0,1,2100.0,1025215,3.0,157 -1311954,1630147153,8177894,2,44,-9.0,4,0.0,1,24000.0,1042852,3.0,157 -1311955,1630147154,8177840,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,157 -1311956,1630147155,8177706,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,157 -1311957,1630147156,8177706,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,157 -1311958,1630147157,8175207,2,29,-9.0,1,1.0,1,22000.0,1001264,6.0,157 -1311959,1630147158,8175842,1,24,-9.0,4,2.0,1,15600.0,1073094,5.0,157 -1311960,1630147159,8177706,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,157 -1311961,1630147160,8180862,2,23,2.0,4,0.0,1,7700.0,1009585,3.0,157 -1311962,1630147161,8175207,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,157 -1311963,1630147162,8175207,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,157 -1311964,1630147163,8178573,2,44,-9.0,2,1.0,1,18000.0,1042852,2.0,157 -1311965,1630147164,8175207,2,54,-9.0,4,0.0,1,14900.0,1025215,3.0,157 -1311966,1630147165,8175207,1,27,-9.0,3,3.0,1,45300.0,1042852,5.0,157 -1311967,1630147166,8180862,2,60,-9.0,1,2.0,1,36000.0,1073094,6.0,157 -1311968,1630147167,8180643,2,48,-9.0,2,3.0,1,163200.0,1042852,3.0,157 -1311969,1630147168,8175207,2,51,-9.0,4,1.0,1,26800.0,1025215,5.0,157 -1311970,1630147169,8176421,2,34,1.0,2,0.0,1,18000.0,1025215,3.0,157 -1311971,1630147170,8177477,2,26,-9.0,2,2.0,1,118000.0,1009585,7.0,157 -1311972,1630147171,8175207,2,62,-9.0,1,1.0,1,57000.0,1009585,4.0,157 -1311973,1630147172,8175207,2,49,-9.0,2,2.0,1,24500.0,1009585,3.0,157 -1311974,1630147173,8177840,2,62,-9.0,1,0.0,1,8740.0,1009585,6.0,157 -1311975,1630147174,8176767,2,57,-9.0,2,2.0,1,74520.0,1001264,5.0,157 -1311976,1630147175,8175207,2,53,-9.0,2,1.0,1,56400.0,1073094,3.0,157 -1311977,1630147176,8176667,1,62,-9.0,2,0.0,1,23900.0,1001264,5.0,157 -1311978,1630147177,8175207,2,47,2.0,4,0.0,1,24600.0,1042852,2.0,157 -1311979,1630147178,8175207,2,33,-9.0,2,1.0,1,1600.0,1009585,3.0,157 -1311980,1630147179,8178048,2,57,-9.0,1,1.0,1,16000.0,1042852,4.0,157 -1311981,1630147180,8176237,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,157 -1311982,1630147181,8175207,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,157 -1311983,1630147182,8175207,2,59,-9.0,1,2.0,1,54000.0,1009585,6.0,157 -1311984,1630147183,8175207,2,32,1.0,2,0.0,1,40400.0,1042852,3.0,157 -1311985,1630147184,8175207,2,63,-9.0,1,0.0,1,37000.0,1073094,4.0,157 -1311986,1630147185,8175207,2,32,3.0,4,1.0,1,48000.0,1025215,3.0,157 -1311987,1630147186,8175207,2,50,2.0,4,1.0,1,41500.0,1009585,3.0,157 -1311988,1630147187,8175207,2,87,-9.0,1,0.0,1,51000.0,1009585,6.0,157 -1311989,1630147188,8176767,2,62,-9.0,2,2.0,1,453000.0,1073094,1.0,157 -1311990,1630147189,8177840,2,53,-9.0,2,5.0,1,29200.0,1042852,1.0,157 -1311991,1630147190,8175207,2,79,-9.0,1,0.0,1,24300.0,1073094,6.0,157 -1311992,1630147191,8179816,2,58,-9.0,2,0.0,1,7200.0,1042852,5.0,157 -1311993,1630147192,8175207,2,42,-9.0,4,3.0,1,0.0,1009585,1.0,157 -1311994,1630147193,8177142,1,34,-9.0,2,2.0,1,70000.0,1042852,7.0,157 -1311995,1630147194,8175207,2,31,-9.0,2,1.0,1,28800.0,1001264,3.0,157 -1311996,1630147195,8175207,2,64,-9.0,2,2.0,1,84340.0,1001264,1.0,157 -1311997,1630147196,8175207,2,32,-9.0,2,0.0,1,35000.0,1025215,5.0,157 -1311998,1630147197,8175207,2,53,2.0,4,2.0,1,20500.0,1042852,3.0,157 -1311999,1630147198,8175207,2,48,-9.0,2,5.0,1,53800.0,1025215,7.0,157 -1312000,1630147199,8177706,2,45,1.0,2,0.0,1,20900.0,1009585,3.0,157 -1312001,1630147200,8179266,2,80,-9.0,2,0.0,1,26800.0,1001264,3.0,157 -1312002,1630147201,8175207,2,64,-9.0,2,1.0,1,97220.0,1001264,1.0,157 -1312003,1630147202,8176106,2,38,2.0,4,1.0,1,131004.0,1001264,3.0,157 -1312004,1630147203,8175207,2,45,3.0,4,1.0,1,43000.0,1001264,2.0,157 -1312005,1630147204,8178493,2,79,-9.0,2,1.0,1,40160.0,1001264,5.0,157 -1312006,1630147205,8175207,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,157 -1312007,1630147206,8175207,1,55,-9.0,2,3.0,1,40200.0,1009585,1.0,157 -1312008,1630147207,8177840,2,64,-9.0,1,0.0,1,10170.0,1001264,6.0,157 -1312009,1630147208,8177840,2,90,-9.0,2,0.0,1,30900.0,1009585,7.0,157 -1312010,1630147209,8177840,2,56,-9.0,4,1.0,1,8100.0,1073094,2.0,157 -1312011,1630147210,8175207,1,53,-9.0,2,1.0,1,11400.0,1042852,3.0,157 -1312012,1630147211,8177840,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,157 -1312013,1630147212,8175207,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,157 -1312014,1630147213,8177840,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,157 -1312015,1630147214,8176859,2,45,-9.0,1,1.0,1,81000.0,1009585,4.0,157 -1312016,1630147215,8177706,2,36,-9.0,1,0.0,1,8100.0,1073094,7.0,157 -1312017,1630147216,8175207,2,87,-9.0,2,2.0,1,42000.0,1001264,1.0,157 -1312018,1630147217,8177008,2,85,-9.0,2,1.0,1,45400.0,1042852,3.0,157 -1312019,1630147218,8176421,1,60,-9.0,2,2.0,1,9600.0,1001264,1.0,157 -1312020,1630147219,8175207,2,42,2.0,4,0.0,1,30000.0,1025215,3.0,157 -1312021,1630147220,8175207,2,16,1.0,2,1.0,1,28500.0,1001264,5.0,157 -1312022,1630147221,8175207,1,49,-9.0,2,2.0,1,58000.0,1042852,1.0,157 -1312023,1630147222,8175207,2,71,-9.0,2,1.0,1,21300.0,1001264,3.0,157 -1312024,1630147223,8175207,2,22,1.0,2,1.0,1,34000.0,1025215,3.0,157 -1312025,1630147224,8177264,1,27,-9.0,1,1.0,1,113000.0,1025215,1.0,157 -1312026,1630147225,8177376,1,42,-9.0,1,1.0,1,336004.0,1025215,4.0,158 -1312027,1630147226,8178371,1,42,-9.0,2,3.0,1,675000.0,1025215,1.0,158 -1312028,1630147227,8177376,2,40,-9.0,1,1.0,1,56000.0,1073094,6.0,158 -1312029,1630147228,8174286,1,35,-9.0,1,1.0,1,35000.0,1073094,6.0,158 -1312030,1630147229,8178371,2,31,-9.0,1,1.0,1,91000.0,1009585,6.0,158 -1312031,1630147230,8177376,1,41,-9.0,1,1.0,1,66000.0,1025215,4.0,158 -1312032,1630147231,8177141,1,41,-9.0,1,1.0,1,66000.0,1025215,4.0,158 -1312033,1630147232,8174286,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,158 -1312034,1630147233,8173866,2,42,-9.0,2,3.0,1,75000.0,1073094,5.0,158 -1312035,1630147234,8171847,2,33,1.0,3,3.0,1,97000.0,1009585,2.0,158 -1312036,1630147235,8172918,2,52,-9.0,3,3.0,1,123000.0,1025215,2.0,158 -1312037,1630147236,8172663,2,62,-9.0,1,0.0,1,35000.0,1073094,6.0,158 -1312038,1630147237,8172727,2,56,-9.0,1,1.0,1,55000.0,1001264,6.0,158 -1312039,1630147238,8172200,2,61,-9.0,1,1.0,1,30000.0,1073094,4.0,158 -1312040,1630147239,8178371,2,64,-9.0,1,1.0,1,30000.0,1042852,4.0,158 -1312041,1630147240,8177405,2,64,-9.0,1,1.0,1,36000.0,1073094,6.0,158 -1312042,1630147241,8175576,2,63,-9.0,1,1.0,1,38000.0,1042852,4.0,158 -1312043,1630147242,8175294,1,58,-9.0,1,3.0,1,36000.0,1025215,4.0,158 -1312044,1630147243,8172918,2,55,-9.0,3,1.0,1,50000.0,1009585,2.0,158 -1312045,1630147244,8174764,2,56,-9.0,3,2.0,1,51700.0,1025215,3.0,158 -1312046,1630147245,8172727,2,56,-9.0,3,2.0,1,51700.0,1025215,3.0,158 -1312047,1630147246,8172918,2,64,-9.0,3,2.0,1,59000.0,1042852,1.0,158 -1312048,1630147247,8172727,2,56,-9.0,3,2.0,1,51700.0,1025215,3.0,158 -1312049,1630147248,8172153,2,56,-9.0,3,2.0,1,51700.0,1025215,3.0,158 -1312050,1630147249,8174136,2,63,-9.0,2,2.0,1,59200.0,1025215,3.0,158 -1312051,1630147250,8175960,2,63,-9.0,2,2.0,1,39200.0,1073094,1.0,158 -1312052,1630147251,8178253,2,47,-9.0,1,0.0,1,77000.0,1009585,4.0,158 -1312053,1630147252,8177855,2,54,-9.0,1,1.0,1,86000.0,1042852,4.0,158 -1312054,1630147253,8177855,2,59,-9.0,1,1.0,1,65000.0,1025215,6.0,158 -1312055,1630147254,8177405,2,64,-9.0,1,1.0,1,69000.0,1025215,6.0,158 -1312056,1630147255,8177974,2,64,-9.0,1,1.0,1,69000.0,1025215,6.0,158 -1312057,1630147256,8178371,2,54,-9.0,1,1.0,1,70000.0,1009585,4.0,158 -1312058,1630147257,8172727,2,59,-9.0,1,1.0,1,75000.0,1025215,6.0,158 -1312059,1630147258,8178253,2,54,-9.0,1,1.0,1,60000.0,1042852,6.0,158 -1312060,1630147259,8177698,1,58,-9.0,1,1.0,1,65000.0,1042852,6.0,158 -1312061,1630147260,8172663,1,57,-9.0,1,1.0,1,80000.0,1025215,6.0,158 -1312062,1630147261,8175960,1,58,-9.0,1,1.0,1,65000.0,1042852,6.0,158 -1312063,1630147262,8177376,1,62,-9.0,1,1.0,1,75000.0,1025215,4.0,158 -1312064,1630147263,8172918,2,46,-9.0,1,2.0,1,75000.0,1042852,6.0,158 -1312065,1630147264,8178371,2,46,-9.0,1,2.0,1,75000.0,1042852,6.0,158 -1312066,1630147265,8159301,1,59,-9.0,1,2.0,1,78800.0,1025215,4.0,154 -1312067,1630147266,8158371,1,59,-9.0,1,2.0,1,78800.0,1025215,4.0,154 -1312068,1630147267,8177141,2,59,-9.0,3,0.0,1,82600.0,1009585,3.0,158 -1312069,1630147268,8177376,2,59,-9.0,3,0.0,1,82600.0,1009585,3.0,158 -1312070,1630147269,8172663,1,62,-9.0,3,0.0,1,75900.0,1042852,1.0,158 -1312071,1630147270,8172663,1,62,-9.0,3,0.0,1,75900.0,1042852,1.0,158 -1312072,1630147271,8172727,1,62,-9.0,3,0.0,1,75900.0,1042852,1.0,158 -1312073,1630147272,8178371,2,64,-9.0,2,1.0,1,97220.0,1001264,1.0,158 -1312074,1630147273,8175896,2,56,-9.0,2,2.0,1,79500.0,1073094,3.0,158 -1312075,1630147274,8156723,1,56,-9.0,2,2.0,1,67100.0,1009585,1.0,154 -1312076,1630147275,8173093,1,56,-9.0,2,2.0,1,67100.0,1009585,1.0,158 -1312077,1630147276,8177141,2,45,-9.0,3,3.0,1,96004.0,1001264,3.0,158 -1312078,1630147277,8173187,2,61,-9.0,3,2.0,1,92600.0,1001264,1.0,158 -1312079,1630147278,8172153,2,57,-9.0,3,2.0,1,83200.0,1073094,3.0,158 -1312080,1630147279,8173187,2,58,-9.0,3,2.0,1,99000.0,1009585,1.0,158 -1312081,1630147280,8177376,1,49,-9.0,3,2.0,1,74500.0,1009585,5.0,158 -1312082,1630147281,8181253,1,45,1.0,3,2.0,1,78000.0,1001264,1.0,157 -1312083,1630147282,8178253,2,57,-9.0,2,2.0,1,74520.0,1001264,5.0,158 -1312084,1630147283,8175960,1,46,-9.0,2,2.0,1,69300.0,1001264,1.0,158 -1312085,1630147284,8178371,1,58,-9.0,2,2.0,1,73900.0,1042852,1.0,158 -1312086,1630147285,8178371,2,61,-9.0,1,0.0,1,14400.0,1073094,6.0,158 -1312087,1630147286,8177141,2,56,-9.0,1,0.0,1,8600.0,1009585,6.0,158 -1312088,1630147287,8173187,2,53,-9.0,1,0.0,1,9600.0,1001264,4.0,158 -1312089,1630147288,8175133,2,51,-9.0,1,0.0,1,900.0,1042852,4.0,158 -1312090,1630147289,8174744,1,62,-9.0,1,0.0,1,6850.0,1001264,6.0,158 -1312091,1630147290,8172200,2,51,-9.0,1,1.0,1,1700.0,1042852,6.0,158 -1312092,1630147291,8171847,2,64,-9.0,1,1.0,1,22500.0,1001264,6.0,158 -1312093,1630147292,8172153,2,52,-9.0,1,1.0,1,1200.0,1009585,4.0,158 -1312094,1630147293,8158790,1,54,-9.0,1,1.0,1,8000.0,1042852,4.0,154 -1312095,1630147294,8902244,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,154 -1312096,1630147295,8174286,2,48,-9.0,1,1.0,1,22150.0,1009585,3.0,158 -1312097,1630147296,8177698,2,49,-9.0,1,0.0,1,22000.0,1009585,4.0,158 -1312098,1630147297,8160003,2,57,-9.0,1,1.0,1,-6500.0,1025215,4.0,154 -1312099,1630147298,8172663,2,50,-9.0,1,1.0,1,25000.0,1009585,6.0,158 -1312100,1630147299,8173093,2,57,-9.0,1,1.0,1,-6500.0,1025215,4.0,158 -1312101,1630147300,8174346,2,63,-9.0,2,2.0,1,16800.0,1025215,3.0,158 -1312102,1630147301,8173499,1,37,-9.0,2,2.0,1,145000.0,1009585,5.0,158 -1312103,1630147302,8173499,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,158 -1312104,1630147303,8173499,2,26,-9.0,1,0.0,1,42000.0,1009585,6.0,158 -1312105,1630147304,8175343,2,39,-9.0,1,0.0,1,38000.0,1042852,4.0,158 -1312106,1630147305,8175343,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,158 -1312107,1630147306,8173499,1,33,-9.0,1,0.0,1,40000.0,1009585,6.0,158 -1312108,1630147307,8175343,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,158 -1312109,1630147308,8175343,1,29,-9.0,1,0.0,1,40000.0,1025215,4.0,158 -1312110,1630147309,8173499,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,158 -1312111,1630147310,8906695,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,158 -1312112,1630147311,8175343,4,30,-9.0,1,1.0,1,30000.0,1009585,4.0,158 -1312113,1630147312,8173499,4,42,-9.0,1,1.0,1,40000.0,1001264,4.0,158 -1312114,1630147313,8173499,4,44,-9.0,1,1.0,1,32000.0,1025215,4.0,158 -1312115,1630147314,8175343,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,158 -1312116,1630147315,8173499,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,158 -1312117,1630147316,8173499,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,158 -1312118,1630147317,8173499,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,158 -1312119,1630147318,8175343,2,43,-9.0,1,1.0,1,55000.0,1009585,6.0,158 -1312120,1630147319,8906695,2,35,-9.0,1,1.0,1,35000.0,1001264,4.0,158 -1312121,1630147320,8906695,2,32,-9.0,1,1.0,1,48000.0,1025215,6.0,158 -1312122,1630147321,8173499,2,35,-9.0,1,1.0,1,35000.0,1073094,4.0,158 -1312123,1630147322,8902259,2,34,-9.0,1,1.0,1,56000.0,1009585,4.0,155 -1312124,1630147323,8173499,2,32,-9.0,1,1.0,1,48000.0,1025215,6.0,158 -1312125,1630147324,8173499,2,30,-9.0,1,1.0,1,40000.0,1042852,4.0,158 -1312126,1630147325,8175343,2,43,-9.0,1,1.0,1,55000.0,1009585,6.0,158 -1312127,1630147326,8174886,1,31,-9.0,1,1.0,1,30000.0,1001264,4.0,158 -1312128,1630147327,8902259,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,155 -1312129,1630147328,8158880,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,154 -1312130,1630147329,8161254,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,154 -1312131,1630147330,8175343,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,158 -1312132,1630147331,8174314,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,158 -1312133,1630147332,8161479,1,27,-9.0,1,1.0,1,43000.0,1073094,4.0,154 -1312134,1630147333,8158880,1,29,-9.0,1,1.0,1,45000.0,1025215,4.0,154 -1312135,1630147334,8173499,1,33,-9.0,1,1.0,1,40000.0,1001264,6.0,158 -1312136,1630147335,8159939,2,35,-9.0,1,2.0,1,40000.0,1001264,6.0,154 -1312137,1630147336,8173499,1,26,-9.0,2,2.0,1,59000.0,1009585,5.0,158 -1312138,1630147337,8906695,1,25,-9.0,2,2.0,1,58000.0,1001264,1.0,158 -1312139,1630147338,8159328,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,154 -1312140,1630147339,8902259,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,155 -1312141,1630147340,8174106,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,158 -1312142,1630147341,8174106,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,158 -1312143,1630147342,8174106,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,158 -1312144,1630147343,8159328,2,29,-9.0,1,1.0,1,85000.0,1025215,4.0,154 -1312145,1630147344,8161479,2,31,-9.0,1,1.0,1,60000.0,1042852,4.0,154 -1312146,1630147345,8902259,2,42,-9.0,1,1.0,1,61000.0,1073094,4.0,155 -1312147,1630147346,8173499,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,158 -1312148,1630147347,8173499,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,158 -1312149,1630147348,8173499,2,33,-9.0,1,1.0,1,84000.0,1073094,4.0,158 -1312150,1630147349,8173499,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,158 -1312151,1630147350,8906695,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,158 -1312152,1630147351,8906695,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,158 -1312153,1630147352,8906695,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,158 -1312154,1630147353,8173499,1,28,-9.0,1,1.0,1,62000.0,1009585,6.0,158 -1312155,1630147354,8173499,1,32,-9.0,1,1.0,1,90000.0,1009585,6.0,158 -1312156,1630147355,8906695,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,158 -1312157,1630147356,8159328,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,154 -1312158,1630147357,8161254,1,26,-9.0,1,1.0,1,85000.0,1042852,4.0,154 -1312159,1630147358,8906695,1,25,-9.0,1,1.0,1,60840.0,1009585,4.0,158 -1312160,1630147359,8906695,1,27,-9.0,1,1.0,1,77120.0,1009585,4.0,158 -1312161,1630147360,8174106,2,36,-9.0,1,2.0,1,65000.0,1042852,4.0,158 -1312162,1630147361,8906695,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,158 -1312163,1630147362,8175343,1,39,-9.0,1,2.0,1,60030.0,1025215,4.0,158 -1312164,1630147363,8906695,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,158 -1312165,1630147364,8174106,1,37,-9.0,2,1.0,1,63900.0,1025215,5.0,158 -1312166,1630147365,8173499,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,158 -1312167,1630147366,8173499,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,158 -1312168,1630147367,8173499,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,158 -1312169,1630147368,8173499,4,27,-9.0,3,1.0,1,76700.0,1073094,1.0,158 -1312170,1630147369,8173499,4,27,-9.0,2,1.0,1,76700.0,1073094,1.0,158 -1312171,1630147370,8173499,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,158 -1312172,1630147371,8173499,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,158 -1312173,1630147372,8906695,1,26,-9.0,3,3.0,1,64000.0,1001264,7.0,158 -1312174,1630147373,8173499,1,25,-9.0,2,1.0,1,75000.0,1001264,5.0,158 -1312175,1630147374,8173499,1,25,-9.0,2,1.0,1,75000.0,1001264,5.0,158 -1312176,1630147375,8174886,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,158 -1312177,1630147376,8161254,2,41,-9.0,2,2.0,1,95000.0,1025215,1.0,154 -1312178,1630147377,8906695,1,31,-9.0,2,2.0,1,84000.0,1073094,1.0,158 -1312179,1630147378,8175343,1,28,-9.0,2,2.0,1,94000.0,1001264,7.0,158 -1312180,1630147379,8175343,1,28,-9.0,2,2.0,1,94000.0,1001264,7.0,158 -1312181,1630147380,8174106,1,28,-9.0,2,2.0,1,65000.0,1001264,1.0,158 -1312182,1630147381,8159939,1,26,-9.0,2,2.0,1,80000.0,1001264,5.0,154 -1312183,1630147382,8167357,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,154 -1312184,1630147383,8173499,2,39,-9.0,1,0.0,1,12000.0,1001264,4.0,158 -1312185,1630147384,8173499,2,42,-9.0,1,0.0,1,4000.0,1073094,4.0,158 -1312186,1630147385,8173499,2,28,-9.0,1,0.0,1,7800.0,1025215,4.0,158 -1312187,1630147386,8167357,2,44,-9.0,1,0.0,1,50.0,1042852,4.0,154 -1312188,1630147387,8161254,2,26,-9.0,1,0.0,1,7200.0,1042852,4.0,154 -1312189,1630147388,8173499,2,32,-9.0,1,0.0,1,8600.0,1042852,6.0,158 -1312190,1630147389,8158880,2,41,-9.0,1,0.0,1,8400.0,1025215,6.0,154 -1312191,1630147390,8173499,1,37,-9.0,1,0.0,1,0.0,1073094,6.0,158 -1312192,1630147391,8165683,2,44,-9.0,1,1.0,1,15300.0,1009585,6.0,154 -1312193,1630147392,8173499,2,33,-9.0,1,1.0,1,0.0,1025215,6.0,158 -1312194,1630147393,8177968,2,40,-9.0,1,1.0,1,0.0,1001264,4.0,157 -1312195,1630147394,8906695,2,29,-9.0,1,1.0,1,10000.0,1001264,4.0,158 -1312196,1630147395,8174886,1,26,-9.0,1,1.0,1,0.0,1073094,6.0,158 -1312197,1630147396,8175343,2,39,2.0,3,0.0,1,9000.0,1025215,3.0,158 -1312198,1630147397,8165683,2,26,2.0,3,1.0,1,0.0,1009585,3.0,154 -1312199,1630147398,8180447,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,157 -1312200,1630147399,8173499,4,26,-9.0,2,0.0,1,28000.0,1001264,5.0,158 -1312201,1630147400,8906695,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,158 -1312202,1630147401,8178300,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,157 -1312203,1630147402,8175343,2,41,-9.0,1,0.0,1,23400.0,1073094,6.0,158 -1312204,1630147403,8173499,2,42,-9.0,1,0.0,1,27000.0,1025215,6.0,158 -1312205,1630147404,8173499,2,42,-9.0,1,0.0,1,27000.0,1025215,6.0,158 -1312206,1630147405,8173499,2,40,-9.0,1,0.0,1,26000.0,1042852,4.0,158 -1312207,1630147406,8173499,2,37,-9.0,1,0.0,1,5300.0,1025215,4.0,158 -1312208,1630147407,8173499,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,158 -1312209,1630147408,8175343,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,158 -1312210,1630147409,8173499,1,42,-9.0,1,0.0,1,25000.0,1042852,4.0,158 -1312211,1630147410,8906695,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,158 -1312212,1630147411,8173499,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,158 -1312213,1630147412,8175343,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,158 -1312214,1630147413,8173499,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,158 -1312215,1630147414,8174106,4,30,-9.0,1,1.0,1,27400.0,1001264,6.0,158 -1312216,1630147415,8173499,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,158 -1312217,1630147416,8173499,4,32,-9.0,1,1.0,1,700.0,1042852,4.0,158 -1312218,1630147417,8175343,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,158 -1312219,1630147418,8161479,4,31,-9.0,1,1.0,1,15300.0,1009585,4.0,154 -1312220,1630147419,8159080,2,26,-9.0,1,1.0,1,13000.0,1073094,6.0,154 -1312221,1630147420,8173499,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,158 -1312222,1630147421,8173499,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,158 -1312223,1630147422,8159080,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,154 -1312224,1630147423,8173499,2,30,-9.0,1,1.0,1,15000.0,1009585,4.0,158 -1312225,1630147424,8902259,2,29,-9.0,1,1.0,1,9000.0,1009585,4.0,155 -1312226,1630147425,8902259,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,155 -1312227,1630147426,8174886,1,27,-9.0,1,1.0,1,10000.0,1009585,4.0,158 -1312228,1630147427,8174886,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,158 -1312229,1630147428,8173499,1,27,-9.0,1,1.0,1,20000.0,1009585,4.0,158 -1312230,1630147429,8174106,1,25,-9.0,1,1.0,1,5000.0,1025215,4.0,158 -1312231,1630147430,8173499,1,31,-9.0,1,1.0,1,18000.0,1001264,6.0,158 -1312232,1630147431,8178300,1,30,-9.0,1,1.0,1,19800.0,1001264,4.0,157 -1312233,1630147432,8175343,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,158 -1312234,1630147433,8173499,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,158 -1312235,1630147434,8906695,1,26,-9.0,1,1.0,1,15000.0,1001264,4.0,158 -1312236,1630147435,8173499,1,31,-9.0,1,1.0,1,25000.0,1042852,4.0,158 -1312237,1630147436,8158880,1,31,-9.0,1,1.0,1,10000.0,1073094,4.0,154 -1312238,1630147437,8902259,4,31,1.0,3,0.0,1,25830.0,1042852,1.0,155 -1312239,1630147438,8902259,4,31,1.0,3,0.0,1,25830.0,1042852,1.0,155 -1312240,1630147439,8165683,2,39,1.0,3,0.0,1,14000.0,1001264,3.0,154 -1312241,1630147440,8158880,4,28,1.0,3,1.0,1,20000.0,1001264,1.0,154 -1312242,1630147441,8173499,2,34,2.0,3,1.0,1,18000.0,1001264,3.0,158 -1312243,1630147442,8173499,2,40,2.0,3,1.0,1,28000.0,1073094,3.0,158 -1312244,1630147443,8173499,2,40,2.0,3,1.0,1,28000.0,1073094,3.0,158 -1312245,1630147444,8175343,2,28,2.0,3,2.0,1,25000.0,1025215,3.0,158 -1312246,1630147445,8902259,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,155 -1312247,1630147446,8174886,4,26,-9.0,2,0.0,1,28000.0,1042852,1.0,158 -1312248,1630147447,8902259,2,30,-9.0,2,0.0,1,14700.0,1009585,1.0,155 -1312249,1630147448,8174886,2,36,-9.0,2,1.0,1,23300.0,1025215,3.0,158 -1312250,1630147449,8165683,2,29,1.0,2,1.0,1,12190.0,1001264,3.0,154 -1312251,1630147450,8173499,2,43,-9.0,2,2.0,1,28600.0,1009585,3.0,158 -1312252,1630147451,8173499,1,57,-9.0,1,1.0,1,220000.0,1001264,4.0,158 -1312253,1630147452,8175343,2,64,-9.0,1,1.0,1,32490.0,1042852,6.0,158 -1312254,1630147453,8173499,2,47,-9.0,1,0.0,1,47000.0,1001264,4.0,158 -1312255,1630147454,8174314,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,158 -1312256,1630147455,8165683,2,59,-9.0,1,0.0,1,31000.0,1042852,6.0,154 -1312257,1630147456,8159328,2,47,-9.0,1,0.0,1,47000.0,1009585,4.0,154 -1312258,1630147457,8173499,4,51,-9.0,1,1.0,1,50000.0,1073094,4.0,158 -1312259,1630147458,8173499,2,46,-9.0,1,1.0,1,40000.0,1073094,4.0,158 -1312260,1630147459,8178300,2,46,-9.0,1,1.0,1,30000.0,1042852,4.0,157 -1312261,1630147460,8173499,2,61,-9.0,1,1.0,1,30300.0,1001264,6.0,158 -1312262,1630147461,8174886,2,47,-9.0,1,1.0,1,50000.0,1025215,6.0,158 -1312263,1630147462,8161479,2,56,-9.0,1,1.0,1,33000.0,1073094,6.0,154 -1312264,1630147463,8173499,2,46,-9.0,1,1.0,1,30000.0,1042852,4.0,158 -1312265,1630147464,8902243,2,48,-9.0,1,1.0,1,30000.0,1073094,4.0,154 -1312266,1630147465,8175343,2,63,-9.0,1,1.0,1,36600.0,1042852,4.0,158 -1312267,1630147466,8906695,2,60,-9.0,1,1.0,1,50000.0,1073094,4.0,158 -1312268,1630147467,8173499,2,55,-9.0,1,1.0,1,49900.0,1042852,6.0,158 -1312269,1630147468,8159301,1,52,-9.0,1,1.0,1,39000.0,1025215,4.0,154 -1312270,1630147469,8165683,1,61,-9.0,1,1.0,1,57000.0,1025215,4.0,154 -1312271,1630147470,8902259,1,63,-9.0,1,1.0,1,50020.0,1001264,4.0,155 -1312272,1630147471,8165683,2,46,-9.0,1,2.0,1,31500.0,1009585,6.0,154 -1312273,1630147472,8175343,2,55,-9.0,3,0.0,1,34150.0,1042852,3.0,158 -1312274,1630147473,8174314,2,54,-9.0,3,3.0,1,44100.0,1025215,3.0,158 -1312275,1630147474,8173499,2,55,-9.0,2,1.0,1,33200.0,1009585,1.0,158 -1312276,1630147475,8177141,2,60,-9.0,2,1.0,1,35100.0,1001264,2.0,158 -1312277,1630147476,8902259,2,53,-9.0,1,2.0,1,30000.0,1042852,3.0,155 -1312278,1630147477,8165683,2,58,-9.0,3,2.0,1,55200.0,1025215,3.0,154 -1312279,1630147478,8906695,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,158 -1312280,1630147479,8173499,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,158 -1312281,1630147480,8173499,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,158 -1312282,1630147481,8173499,4,45,-9.0,1,0.0,1,70000.0,1009585,4.0,158 -1312283,1630147482,8173499,2,58,-9.0,1,0.0,1,94300.0,1025215,6.0,158 -1312284,1630147483,8173499,2,45,-9.0,1,1.0,1,81000.0,1009585,4.0,158 -1312285,1630147484,8175343,2,61,-9.0,1,1.0,1,60000.0,1042852,6.0,158 -1312286,1630147485,8179841,2,62,-9.0,1,1.0,1,82000.0,1009585,4.0,157 -1312287,1630147486,8173499,2,61,-9.0,1,1.0,1,66000.0,1009585,4.0,158 -1312288,1630147487,8173499,1,48,-9.0,1,1.0,1,91000.0,1073094,6.0,158 -1312289,1630147488,8173499,1,55,-9.0,1,1.0,1,92000.0,1009585,6.0,158 -1312290,1630147489,8173499,1,55,-9.0,1,1.0,1,92000.0,1009585,6.0,158 -1312291,1630147490,8177141,1,63,-9.0,1,2.0,1,85200.0,1042852,4.0,158 -1312292,1630147491,8173499,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,158 -1312293,1630147492,8173499,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,158 -1312294,1630147493,8173499,2,64,-9.0,3,2.0,1,60700.0,1025215,1.0,158 -1312295,1630147494,8173499,2,50,-9.0,2,1.0,1,74300.0,1009585,3.0,158 -1312296,1630147495,8158880,2,50,-9.0,1,0.0,1,8100.0,1073094,4.0,154 -1312297,1630147496,8167357,2,61,-9.0,1,0.0,1,8400.0,1025215,4.0,154 -1312298,1630147497,8167357,2,56,-9.0,1,0.0,1,0.0,1009585,6.0,154 -1312299,1630147498,8173499,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,158 -1312300,1630147499,8902243,2,61,-9.0,1,0.0,1,1600.0,1009585,4.0,154 -1312301,1630147500,8158619,2,46,-9.0,1,0.0,1,1770.0,1042852,6.0,154 -1312302,1630147501,8173499,2,59,-9.0,1,0.0,1,14300.0,1073094,6.0,158 -1312303,1630147502,8167357,2,62,-9.0,1,0.0,1,16200.0,1009585,4.0,154 -1312304,1630147503,8160003,2,49,-9.0,1,0.0,1,14400.0,1025215,4.0,154 -1312305,1630147504,8161254,2,58,-9.0,1,0.0,1,8400.0,1025215,4.0,154 -1312306,1630147505,8167357,2,57,-9.0,1,0.0,1,8400.0,1042852,6.0,154 -1312307,1630147506,8902259,2,55,-9.0,1,0.0,1,24000.0,1042852,4.0,155 -1312308,1630147507,8902259,2,50,-9.0,1,0.0,1,10900.0,1073094,4.0,155 -1312309,1630147508,8174314,2,58,-9.0,1,0.0,1,8400.0,1025215,4.0,158 -1312310,1630147509,8173499,2,55,-9.0,1,0.0,1,10800.0,1025215,6.0,158 -1312311,1630147510,8173499,2,59,-9.0,1,0.0,1,8600.0,1025215,4.0,158 -1312312,1630147511,8161479,2,53,-9.0,1,0.0,1,26030.0,1042852,4.0,154 -1312313,1630147512,8167357,2,57,-9.0,1,0.0,1,8800.0,1001264,6.0,154 -1312314,1630147513,8167357,2,55,-9.0,1,0.0,1,0.0,1025215,4.0,154 -1312315,1630147514,8173499,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,158 -1312316,1630147515,8177974,2,61,-9.0,1,0.0,1,1600.0,1009585,4.0,158 -1312317,1630147516,8167357,2,53,-9.0,1,0.0,1,14600.0,1009585,4.0,154 -1312318,1630147517,8165683,2,58,-9.0,1,0.0,1,12000.0,1042852,4.0,154 -1312319,1630147518,8175343,2,64,-9.0,1,0.0,1,0.0,1009585,4.0,158 -1312320,1630147519,8173499,2,47,-9.0,1,0.0,1,6900.0,1025215,6.0,158 -1312321,1630147520,8906695,2,61,-9.0,1,0.0,1,3000.0,1042852,6.0,158 -1312322,1630147521,8174886,2,45,-9.0,1,0.0,1,16800.0,1009585,4.0,158 -1312323,1630147522,8173499,2,55,-9.0,1,0.0,1,10800.0,1025215,6.0,158 -1312324,1630147523,8158525,2,63,-9.0,1,0.0,1,0.0,1073094,6.0,154 -1312325,1630147524,8167357,2,55,-9.0,1,0.0,1,0.0,1025215,4.0,154 -1312326,1630147525,8161479,2,64,-9.0,1,0.0,1,25800.0,1009585,6.0,154 -1312327,1630147526,8161479,2,54,-9.0,1,0.0,1,4400.0,1025215,4.0,154 -1312328,1630147527,8173499,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,158 -1312329,1630147528,8167357,2,56,-9.0,1,0.0,1,0.0,1009585,6.0,154 -1312330,1630147529,8173499,2,47,-9.0,1,0.0,1,6900.0,1025215,6.0,158 -1312331,1630147530,8159659,2,62,-9.0,1,0.0,1,8100.0,1001264,6.0,154 -1312332,1630147531,8175343,2,54,-9.0,1,0.0,1,4960.0,1042852,4.0,158 -1312333,1630147532,8173499,2,60,-9.0,1,0.0,1,10000.0,1009585,4.0,158 -1312334,1630147533,8902259,1,51,-9.0,1,0.0,1,0.0,1042852,6.0,155 -1312335,1630147534,8167357,1,50,-9.0,1,0.0,1,0.0,1001264,4.0,154 -1312336,1630147535,8161254,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,154 -1312337,1630147536,8161254,1,53,-9.0,1,0.0,1,8960.0,1073094,4.0,154 -1312338,1630147537,8161479,2,58,-9.0,1,1.0,1,11000.0,1025215,4.0,154 -1312339,1630147538,8173499,2,53,-9.0,1,1.0,1,22600.0,1001264,4.0,158 -1312340,1630147539,8167357,2,64,-9.0,1,1.0,1,3300.0,1025215,4.0,154 -1312341,1630147540,8902259,2,63,-9.0,1,1.0,1,8400.0,1001264,4.0,155 -1312342,1630147541,8159328,2,64,-9.0,1,1.0,1,7660.0,1009585,4.0,154 -1312343,1630147542,8161254,2,50,-9.0,1,1.0,1,0.0,1001264,6.0,154 -1312344,1630147543,8174886,2,49,-9.0,2,0.0,1,10170.0,1001264,1.0,158 -1312345,1630147544,8174314,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,158 -1312346,1630147545,8159328,2,57,-9.0,3,0.0,1,21600.0,1009585,3.0,154 -1312347,1630147546,8173499,2,55,-9.0,2,0.0,1,0.0,1025215,5.0,158 -1312348,1630147547,8175343,2,63,-9.0,2,0.0,1,15000.0,1073094,5.0,158 -1312349,1630147548,8174653,2,53,-9.0,2,0.0,1,3500.0,1009585,1.0,158 -1312350,1630147549,8156984,2,60,-9.0,2,0.0,1,13400.0,1042852,5.0,154 -1312351,1630147550,8173499,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,158 -1312352,1630147551,8167357,2,45,-9.0,1,0.0,1,1700.0,1073094,4.0,154 -1312353,1630147552,8175343,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,158 -1312354,1630147553,8173499,2,59,-9.0,1,0.0,1,12000.0,1009585,4.0,158 -1312355,1630147554,8161254,2,46,-9.0,1,0.0,1,5000.0,1073094,4.0,154 -1312356,1630147555,8158880,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,154 -1312357,1630147556,8167357,2,45,-9.0,1,0.0,1,1700.0,1073094,4.0,154 -1312358,1630147557,8174314,2,57,-9.0,1,0.0,1,29000.0,1025215,6.0,158 -1312359,1630147558,8174886,2,51,-9.0,1,0.0,1,19000.0,1025215,4.0,158 -1312360,1630147559,8174314,2,52,-9.0,1,0.0,1,13400.0,1042852,6.0,158 -1312361,1630147560,8165683,2,47,-9.0,1,0.0,1,15600.0,1009585,4.0,154 -1312362,1630147561,8158880,2,49,-9.0,1,0.0,1,15200.0,1025215,6.0,154 -1312363,1630147562,8167357,2,64,-9.0,1,0.0,1,10170.0,1001264,6.0,154 -1312364,1630147563,8173499,2,48,-9.0,1,0.0,1,12000.0,1001264,4.0,158 -1312365,1630147564,8174886,2,59,-9.0,1,0.0,1,15000.0,1025215,6.0,158 -1312366,1630147565,8175343,2,58,-9.0,1,0.0,1,12000.0,1025215,6.0,158 -1312367,1630147566,8159659,2,45,-9.0,1,0.0,1,22900.0,1073094,6.0,154 -1312368,1630147567,8173499,2,54,-9.0,1,0.0,1,21000.0,1009585,4.0,158 -1312369,1630147568,8167357,2,54,-9.0,1,0.0,1,6000.0,1009585,4.0,154 -1312370,1630147569,8159328,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,154 -1312371,1630147570,8159328,4,63,-9.0,1,1.0,1,10680.0,1025215,4.0,154 -1312372,1630147571,8174886,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,158 -1312373,1630147572,8173499,2,45,-9.0,1,1.0,1,22000.0,1073094,4.0,158 -1312374,1630147573,8167357,2,58,-9.0,1,1.0,1,13900.0,1073094,4.0,154 -1312375,1630147574,8158880,2,47,-9.0,1,1.0,1,19000.0,1001264,4.0,154 -1312376,1630147575,8173499,2,48,-9.0,1,1.0,1,27700.0,1073094,6.0,158 -1312377,1630147576,8174106,2,54,-9.0,1,1.0,1,17700.0,1001264,6.0,158 -1312378,1630147577,8173499,2,55,-9.0,1,1.0,1,17000.0,1073094,6.0,158 -1312379,1630147578,8173499,1,62,-9.0,1,1.0,1,22600.0,1001264,4.0,158 -1312380,1630147579,8174886,1,46,-9.0,1,1.0,1,20000.0,1001264,4.0,158 -1312381,1630147580,8165683,2,62,-9.0,1,4.0,1,11000.0,1009585,4.0,154 -1312382,1630147581,8159080,2,46,-9.0,3,0.0,1,1400.0,1025215,3.0,154 -1312383,1630147582,8173499,2,55,-9.0,2,0.0,1,15800.0,1042852,2.0,158 -1312384,1630147583,8173499,2,55,-9.0,3,0.0,1,15800.0,1042852,2.0,158 -1312385,1630147584,8159080,2,46,-9.0,3,0.0,1,1400.0,1025215,3.0,154 -1312386,1630147585,8175343,2,45,-9.0,3,1.0,1,11000.0,1042852,3.0,158 -1312387,1630147586,8906695,2,46,-9.0,2,0.0,1,4200.0,1025215,3.0,158 -1312388,1630147587,8173499,2,62,-9.0,2,0.0,1,27500.0,1001264,3.0,158 -1312389,1630147588,8173499,2,45,-9.0,2,1.0,1,9500.0,1025215,3.0,158 -1312390,1630147589,8159358,2,60,-9.0,2,1.0,1,2700.0,1009585,3.0,154 -1312391,1630147590,8177968,2,60,-9.0,2,1.0,1,2700.0,1009585,3.0,157 -1312392,1630147591,8175343,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,158 -1312393,1630147592,8906695,2,87,-9.0,1,0.0,1,51000.0,1009585,6.0,158 -1312394,1630147593,8906695,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,158 -1312395,1630147594,8906695,2,75,-9.0,1,0.0,1,38300.0,1025215,6.0,158 -1312396,1630147595,8175343,2,85,-9.0,1,0.0,1,52300.0,1073094,6.0,158 -1312397,1630147596,8158880,2,66,-9.0,1,0.0,1,38000.0,1001264,6.0,154 -1312398,1630147597,8165683,2,68,-9.0,1,1.0,1,34800.0,1042852,6.0,154 -1312399,1630147598,8173499,2,74,-9.0,1,1.0,1,45000.0,1025215,6.0,158 -1312400,1630147599,8175343,2,87,-9.0,1,1.0,1,48000.0,1025215,6.0,158 -1312401,1630147600,8173499,1,66,-9.0,1,1.0,1,50000.0,1001264,4.0,158 -1312402,1630147601,8175343,2,68,-9.0,3,0.0,1,53700.0,1025215,3.0,158 -1312403,1630147602,8158880,2,88,-9.0,2,0.0,1,33800.0,1073094,3.0,154 -1312404,1630147603,8173499,2,72,-9.0,1,0.0,1,54300.0,1073094,6.0,158 -1312405,1630147604,8175343,2,66,-9.0,1,1.0,1,32000.0,1001264,4.0,158 -1312406,1630147605,8173499,2,66,-9.0,1,1.0,1,32000.0,1001264,4.0,158 -1312407,1630147606,8173499,2,86,-9.0,3,1.0,1,50470.0,1009585,3.0,158 -1312408,1630147607,8173499,1,66,-9.0,3,1.0,1,40191.0,1073094,1.0,158 -1312409,1630147608,8173499,1,66,-9.0,3,1.0,1,40191.0,1073094,1.0,158 -1312410,1630147609,8902259,2,75,-9.0,2,1.0,1,45200.0,1001264,7.0,155 -1312411,1630147610,8173499,1,82,-9.0,2,2.0,1,59000.0,1073094,1.0,158 -1312412,1630147611,8906695,2,74,-9.0,1,0.0,1,68400.0,1001264,4.0,158 -1312413,1630147612,8174106,2,65,-9.0,1,0.0,1,72100.0,1025215,6.0,158 -1312414,1630147613,8906695,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,158 -1312415,1630147614,8906695,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,158 -1312416,1630147615,8906695,2,67,-9.0,1,1.0,1,97200.0,1001264,4.0,158 -1312417,1630147616,8173499,2,69,-9.0,1,1.0,1,70010.0,1001264,6.0,158 -1312418,1630147617,8173499,2,69,-9.0,2,1.0,1,77600.0,1025215,1.0,158 -1312419,1630147618,8165683,2,68,-9.0,2,2.0,1,81200.0,1001264,1.0,154 -1312420,1630147619,8180447,2,71,-9.0,3,1.0,1,70400.0,1001264,3.0,157 -1312421,1630147620,8173499,2,94,-9.0,1,0.0,1,23000.0,1042852,6.0,158 -1312422,1630147621,8173499,2,69,-9.0,1,0.0,1,12000.0,1042852,6.0,158 -1312423,1630147622,8167357,2,66,-9.0,1,0.0,1,13500.0,1073094,4.0,154 -1312424,1630147623,8167357,2,66,-9.0,1,0.0,1,9300.0,1025215,4.0,154 -1312425,1630147624,8174314,2,86,-9.0,1,0.0,1,8100.0,1073094,4.0,158 -1312426,1630147625,8167357,2,66,-9.0,1,0.0,1,9300.0,1025215,4.0,154 -1312427,1630147626,8175343,2,69,-9.0,1,0.0,1,23200.0,1009585,4.0,158 -1312428,1630147627,8175960,2,65,-9.0,1,0.0,1,0.0,1001264,6.0,158 -1312429,1630147628,8173499,2,72,-9.0,1,0.0,1,8000.0,1009585,4.0,158 -1312430,1630147629,8156962,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,154 -1312431,1630147630,8161479,2,72,-9.0,1,0.0,1,11220.0,1009585,6.0,154 -1312432,1630147631,8902259,2,78,-9.0,1,0.0,1,9200.0,1001264,6.0,155 -1312433,1630147632,8174886,2,75,-9.0,1,0.0,1,14700.0,1009585,4.0,158 -1312434,1630147633,8173499,2,74,-9.0,1,0.0,1,12000.0,1009585,6.0,158 -1312435,1630147634,8165683,2,66,-9.0,1,0.0,1,9000.0,1001264,4.0,154 -1312436,1630147635,8167357,2,66,-9.0,1,0.0,1,13500.0,1073094,4.0,154 -1312437,1630147636,8156723,2,82,-9.0,1,0.0,1,8300.0,1042852,6.0,154 -1312438,1630147637,8906695,2,66,-9.0,1,0.0,1,20400.0,1009585,6.0,158 -1312439,1630147638,8173499,2,78,-9.0,1,0.0,1,26100.0,1009585,6.0,158 -1312440,1630147639,8167357,2,76,-9.0,1,0.0,1,8460.0,1073094,4.0,154 -1312441,1630147640,8167357,2,70,-9.0,1,0.0,1,15530.0,1009585,6.0,154 -1312442,1630147641,8167357,2,66,-9.0,1,0.0,1,9300.0,1025215,4.0,154 -1312443,1630147642,8167357,2,70,-9.0,1,0.0,1,15530.0,1009585,6.0,154 -1312444,1630147643,8167357,2,73,-9.0,1,0.0,1,9600.0,1001264,6.0,154 -1312445,1630147644,8165683,2,65,-9.0,1,0.0,1,9000.0,1001264,6.0,154 -1312446,1630147645,8173499,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,158 -1312447,1630147646,8161479,2,88,-9.0,1,0.0,1,11300.0,1025215,6.0,154 -1312448,1630147647,8156962,2,71,-9.0,1,0.0,1,24000.0,1025215,4.0,154 -1312449,1630147648,8159328,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,154 -1312450,1630147649,8156984,2,78,-9.0,1,0.0,1,26100.0,1009585,6.0,154 -1312451,1630147650,8158880,2,78,-9.0,1,0.0,1,12000.0,1009585,6.0,154 -1312452,1630147651,8174106,2,71,-9.0,1,0.0,1,24300.0,1042852,6.0,158 -1312453,1630147652,8174106,2,71,-9.0,1,0.0,1,24300.0,1042852,6.0,158 -1312454,1630147653,8177968,2,67,-9.0,1,0.0,1,14000.0,1009585,6.0,157 -1312455,1630147654,8174106,2,71,-9.0,1,0.0,1,24300.0,1042852,6.0,158 -1312456,1630147655,8167357,2,69,-9.0,1,0.0,1,14400.0,1001264,6.0,154 -1312457,1630147656,8167357,2,67,-9.0,1,0.0,1,8300.0,1001264,6.0,154 -1312458,1630147657,8161254,2,88,-9.0,1,0.0,1,11300.0,1025215,6.0,154 -1312459,1630147658,8165683,2,65,-9.0,1,0.0,1,9000.0,1001264,6.0,154 -1312460,1630147659,8159328,2,94,-9.0,1,0.0,1,6800.0,1009585,6.0,154 -1312461,1630147660,8173499,2,65,-9.0,1,0.0,1,11000.0,1001264,6.0,158 -1312462,1630147661,8167357,2,70,-9.0,1,0.0,1,15530.0,1009585,6.0,154 -1312463,1630147662,8167357,2,65,-9.0,1,0.0,1,5300.0,1042852,6.0,154 -1312464,1630147663,8167357,2,75,-9.0,1,0.0,1,10800.0,1009585,4.0,154 -1312465,1630147664,8173499,2,67,-9.0,1,0.0,1,9600.0,1001264,4.0,158 -1312466,1630147665,8159328,2,74,-9.0,1,0.0,1,7200.0,1009585,6.0,154 -1312467,1630147666,8175343,2,79,-9.0,1,0.0,1,13800.0,1025215,4.0,158 -1312468,1630147667,8174106,2,82,-9.0,1,0.0,1,12500.0,1073094,4.0,158 -1312469,1630147668,8167357,2,88,-9.0,1,0.0,1,8800.0,1001264,6.0,154 -1312470,1630147669,8167357,2,73,-9.0,1,0.0,1,8400.0,1073094,6.0,154 -1312471,1630147670,8173499,2,68,-9.0,1,0.0,1,7200.0,1042852,6.0,158 -1312472,1630147671,8159080,2,70,-9.0,1,0.0,1,8600.0,1042852,6.0,154 -1312473,1630147672,8902259,2,68,-9.0,1,0.0,1,7200.0,1025215,6.0,155 -1312474,1630147673,8174314,2,66,-9.0,1,0.0,1,11400.0,1001264,4.0,158 -1312475,1630147674,8173499,2,81,-9.0,1,0.0,1,16600.0,1042852,6.0,158 -1312476,1630147675,8167357,2,69,-9.0,1,0.0,1,14400.0,1001264,6.0,154 -1312477,1630147676,8173499,2,65,-9.0,1,0.0,1,17000.0,1009585,6.0,158 -1312478,1630147677,8167357,2,71,-9.0,1,0.0,1,8700.0,1025215,6.0,154 -1312479,1630147678,8175343,2,70,-9.0,1,0.0,1,25004.0,1073094,4.0,158 -1312480,1630147679,8175343,2,94,-9.0,1,0.0,1,23000.0,1042852,6.0,158 -1312481,1630147680,8175343,2,73,-9.0,1,0.0,1,0.0,1025215,6.0,158 -1312482,1630147681,8174886,1,76,-9.0,1,0.0,1,12800.0,1073094,6.0,158 -1312483,1630147682,8165683,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,154 -1312484,1630147683,8167357,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,154 -1312485,1630147684,8165683,1,69,-9.0,1,0.0,1,17670.0,1025215,6.0,154 -1312486,1630147685,8174886,1,67,-9.0,1,0.0,1,4200.0,1073094,6.0,158 -1312487,1630147686,8167357,1,67,-9.0,1,0.0,1,8300.0,1073094,6.0,154 -1312488,1630147687,8167357,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,154 -1312489,1630147688,8175343,2,84,-9.0,1,1.0,1,26300.0,1009585,4.0,158 -1312490,1630147689,8175343,2,70,-9.0,1,1.0,1,26600.0,1025215,4.0,158 -1312491,1630147690,8159015,2,80,-9.0,1,1.0,1,8530.0,1042852,6.0,154 -1312492,1630147691,8175343,2,70,-9.0,1,1.0,1,26600.0,1025215,4.0,158 -1312493,1630147692,8175343,2,84,-9.0,1,1.0,1,26300.0,1009585,4.0,158 -1312494,1630147693,8902259,2,76,-9.0,1,1.0,1,23000.0,1042852,6.0,155 -1312495,1630147694,8173499,2,69,-9.0,1,1.0,1,13500.0,1009585,6.0,158 -1312496,1630147695,8167357,2,66,-9.0,1,1.0,1,11190.0,1009585,4.0,154 -1312497,1630147696,8167357,2,66,-9.0,1,1.0,1,11000.0,1042852,6.0,154 -1312498,1630147697,8159015,2,80,-9.0,1,1.0,1,8530.0,1042852,6.0,154 -1312499,1630147698,8167357,2,85,-9.0,1,1.0,1,14100.0,1009585,6.0,154 -1312500,1630147699,8167357,2,66,-9.0,1,1.0,1,11190.0,1009585,4.0,154 -1312501,1630147700,8167357,2,77,-9.0,1,1.0,1,9600.0,1009585,6.0,154 -1312502,1630147701,8906695,2,84,-9.0,1,1.0,1,26300.0,1025215,6.0,158 -1312503,1630147702,8173499,2,65,-9.0,1,1.0,1,8670.0,1025215,6.0,158 -1312504,1630147703,8159015,2,80,-9.0,1,1.0,1,8530.0,1042852,6.0,154 -1312505,1630147704,8178300,2,87,-9.0,3,0.0,1,12200.0,1001264,3.0,157 -1312506,1630147705,8175343,2,87,-9.0,3,0.0,1,12200.0,1001264,3.0,158 -1312507,1630147706,8161254,2,71,-9.0,2,0.0,1,13000.0,1042852,1.0,154 -1312508,1630147707,8174886,2,77,-9.0,2,0.0,1,8000.0,1042852,1.0,158 -1312509,1630147708,8173499,2,76,-9.0,2,0.0,1,21400.0,1025215,1.0,158 -1312510,1630147709,8161479,2,73,-9.0,2,0.0,1,10000.0,1042852,3.0,154 -1312511,1630147710,8174886,2,77,-9.0,2,0.0,1,8000.0,1042852,1.0,158 -1312512,1630147711,8167357,2,66,-9.0,2,1.0,1,13300.0,1001264,1.0,154 -1312513,1630147712,8902259,2,66,-9.0,1,0.0,1,15500.0,1009585,4.0,155 -1312514,1630147713,8165683,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,154 -1312515,1630147714,8165683,2,66,-9.0,1,0.0,1,10800.0,1042852,4.0,154 -1312516,1630147715,8158880,2,72,-9.0,1,1.0,1,20000.0,1025215,4.0,154 -1312517,1630147716,8165683,2,94,-9.0,3,1.0,1,24200.0,1009585,3.0,154 -1312518,1630147717,8173499,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,158 -1312519,1630147718,8173499,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,158 -1312520,1630147719,8173499,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,158 -1312521,1630147720,8173499,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,158 -1312522,1630147721,8175343,2,20,-9.0,1,1.0,1,30000.0,1009585,4.0,158 -1312523,1630147722,8906695,2,23,-9.0,1,1.0,1,50000.0,1001264,4.0,158 -1312524,1630147723,8174106,1,23,-9.0,1,1.0,1,50000.0,1009585,4.0,158 -1312525,1630147724,8161479,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,154 -1312526,1630147725,8174886,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,158 -1312527,1630147726,8165683,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,154 -1312528,1630147727,8165683,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,154 -1312529,1630147728,8178371,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,158 -1312530,1630147729,8177376,2,21,-9.0,2,1.0,1,48200.0,1025215,5.0,158 -1312531,1630147730,8173499,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,158 -1312532,1630147731,8173499,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,158 -1312533,1630147732,8173499,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,158 -1312534,1630147733,8906695,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,158 -1312535,1630147734,8173499,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,158 -1312536,1630147735,8158880,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,154 -1312537,1630147736,8173499,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,158 -1312538,1630147737,8902259,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,155 -1312539,1630147738,8175343,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,158 -1312540,1630147739,8158880,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,154 -1312541,1630147740,8902259,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,155 -1312542,1630147741,8902259,1,24,-9.0,1,1.0,1,72000.0,1025215,4.0,155 -1312543,1630147742,8173499,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,158 -1312544,1630147743,8173499,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,158 -1312545,1630147744,8173499,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,158 -1312546,1630147745,8906695,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,158 -1312547,1630147746,8173499,1,24,-9.0,2,2.0,1,82500.0,1009585,5.0,158 -1312548,1630147747,8906695,1,24,-9.0,2,2.0,1,67000.0,1073094,7.0,158 -1312549,1630147748,8175343,2,23,-9.0,1,0.0,1,0.0,1042852,4.0,158 -1312550,1630147749,8173499,2,23,-9.0,1,0.0,1,0.0,1042852,4.0,158 -1312551,1630147750,8156962,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,154 -1312552,1630147751,8156984,2,22,-9.0,1,0.0,1,15800.0,1042852,6.0,154 -1312553,1630147752,8173499,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,158 -1312554,1630147753,8173499,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,158 -1312555,1630147754,8175343,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,158 -1312556,1630147755,8173499,2,23,-9.0,1,1.0,1,9600.0,1073094,6.0,158 -1312557,1630147756,8902259,1,24,-9.0,1,1.0,1,5300.0,1025215,4.0,155 -1312558,1630147757,8173499,1,20,-9.0,1,1.0,1,6600.0,1001264,4.0,158 -1312559,1630147758,8174886,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,158 -1312560,1630147759,8174886,1,24,-9.0,1,1.0,1,0.0,1001264,6.0,158 -1312561,1630147760,8173499,1,24,-9.0,1,1.0,1,1500.0,1009585,6.0,158 -1312562,1630147761,8906695,1,24,-9.0,1,1.0,1,5000.0,1009585,4.0,158 -1312563,1630147762,8175343,2,20,1.0,3,0.0,1,13900.0,1025215,3.0,158 -1312564,1630147763,8906695,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,158 -1312565,1630147764,8173499,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,158 -1312566,1630147765,8173499,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,158 -1312567,1630147766,8173499,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,158 -1312568,1630147767,8173499,1,21,-9.0,2,0.0,1,3320.0,1001264,7.0,158 -1312569,1630147768,8161479,2,23,1.0,2,0.0,1,6600.0,1025215,3.0,154 -1312570,1630147769,8173499,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,158 -1312571,1630147770,8161254,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,154 -1312572,1630147771,8161479,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,154 -1312573,1630147772,8158619,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,154 -1312574,1630147773,8174314,2,19,-9.0,1,0.0,1,18000.0,1073094,4.0,158 -1312575,1630147774,8159949,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,154 -1312576,1630147775,8906695,2,24,-9.0,1,0.0,1,12000.0,1001264,6.0,158 -1312577,1630147776,8158232,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,154 -1312578,1630147777,8906695,2,23,-9.0,1,0.0,1,22000.0,1009585,6.0,158 -1312579,1630147778,8902259,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,155 -1312580,1630147779,8173499,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,158 -1312581,1630147780,8173499,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,158 -1312582,1630147781,8175343,1,20,-9.0,1,0.0,1,16000.0,1025215,4.0,158 -1312583,1630147782,8174886,1,22,-9.0,1,0.0,1,3000.0,1001264,4.0,158 -1312584,1630147783,8174886,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,158 -1312585,1630147784,8174886,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,158 -1312586,1630147785,8174886,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,158 -1312587,1630147786,8902259,2,22,-9.0,1,1.0,1,28600.0,1001264,6.0,155 -1312588,1630147787,8165683,2,20,-9.0,1,1.0,1,15000.0,1001264,6.0,154 -1312589,1630147788,8906695,2,24,-9.0,1,1.0,1,25000.0,1025215,4.0,158 -1312590,1630147789,8173499,1,24,-9.0,1,1.0,1,18000.0,1001264,6.0,158 -1312591,1630147790,8902259,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,155 -1312592,1630147791,8174886,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,158 -1312593,1630147792,8174314,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,158 -1312594,1630147793,8174886,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,158 -1312595,1630147794,8161479,1,21,-9.0,1,1.0,1,10000.0,1001264,6.0,154 -1312596,1630147795,8174886,1,22,-9.0,1,1.0,1,25000.0,1042852,4.0,158 -1312597,1630147796,8902259,1,23,-9.0,1,1.0,1,16000.0,1009585,4.0,155 -1312598,1630147797,8175343,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,158 -1312599,1630147798,8173499,2,23,-9.0,1,2.0,1,9000.0,1073094,6.0,158 -1312600,1630147799,8174886,2,20,1.0,3,0.0,1,6500.0,1025215,3.0,158 -1312601,1630147800,8174136,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,158 -1312602,1630147801,8174136,2,24,-9.0,3,1.0,1,17000.0,1042852,1.0,158 -1312603,1630147802,8174314,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,158 -1312604,1630147803,8161254,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,154 -1312605,1630147804,8174314,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,158 -1312606,1630147805,8159080,2,23,2.0,3,1.0,1,1200.0,1009585,3.0,154 -1312607,1630147806,8158880,2,23,2.0,3,1.0,1,18000.0,1025215,3.0,154 -1312608,1630147807,8902259,2,23,2.0,3,1.0,1,18000.0,1025215,3.0,155 -1312609,1630147808,8173499,2,22,2.0,3,1.0,1,6000.0,1025215,3.0,158 -1312610,1630147809,8165683,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,154 -1312611,1630147810,8174106,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,158 -1312612,1630147811,8165683,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,154 -1312613,1630147812,8165683,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,154 -1312614,1630147813,8165683,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,154 -1312615,1630147814,8165683,1,21,-9.0,3,2.0,1,16250.0,1073094,5.0,154 -1312616,1630147815,8174106,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,158 -1312617,1630147816,8174106,1,20,-9.0,3,3.0,1,4900.0,1042852,5.0,158 -1312618,1630147817,8175343,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,158 -1312619,1630147818,8174106,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,158 -1312620,1630147819,8174106,1,20,-9.0,2,0.0,1,10900.0,1073094,7.0,158 -1312621,1630147820,8174314,2,22,1.0,2,0.0,1,1100.0,1001264,3.0,158 -1312622,1630147821,8173499,2,24,-9.0,2,2.0,1,7000.0,1073094,5.0,158 -1312623,1630147822,8173499,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,158 -1312624,1630147823,8906695,1,20,-9.0,2,2.0,1,14000.0,1009585,7.0,158 -1312625,1630147824,8174106,1,24,-9.0,1,2.0,1,22500.0,1025215,5.0,158 -1312626,1630147825,8161254,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,154 -1312627,1630147826,8161479,1,22,-9.0,3,2.0,1,13500.0,1073094,3.0,154 -1312628,1630147827,8902259,1,22,-9.0,2,1.0,1,13700.0,1042852,7.0,155 -1312629,1630147828,8177855,4,29,-9.0,2,2.0,1,88000.0,1042852,7.0,158 -1312630,1630147829,8161254,1,72,-9.0,1,1.0,1,25520.0,1001264,6.0,154 -1312631,1630147830,8172918,2,55,-9.0,1,2.0,1,56000.0,1042852,4.0,158 -1312632,1630147831,8173499,4,27,-9.0,1,1.0,1,36500.0,1025215,4.0,158 -1312633,1630147832,8158880,2,26,2.0,3,0.0,1,11100.0,1009585,3.0,154 -1312634,1630147833,8180447,2,58,-9.0,3,2.0,1,63200.0,1073094,2.0,157 -1312635,1630147834,8175343,2,85,-9.0,2,0.0,1,42220.0,1009585,3.0,158 -1312636,1630147835,8906695,1,23,-9.0,2,2.0,1,68000.0,1009585,7.0,158 -1312637,1630147836,8174314,2,61,-9.0,2,0.0,1,31400.0,1042852,2.0,158 -1312638,1630147837,8173499,2,41,1.0,2,1.0,1,50300.0,1025215,3.0,158 -1312639,1630147838,8175812,1,33,-9.0,2,2.0,1,65000.0,1009585,5.0,158 -1312640,1630147839,8180447,2,36,-9.0,2,2.0,1,56700.0,1025215,2.0,157 -1312641,1630147840,8165683,2,44,2.0,3,2.0,1,30000.0,1042852,3.0,154 -1312642,1630147841,8175343,1,37,-9.0,1,1.0,1,0.0,1001264,6.0,158 -1312643,1630147842,8177974,2,49,-9.0,1,0.0,1,22000.0,1009585,4.0,158 -1312644,1630147843,8173499,1,69,-9.0,1,1.0,1,14600.0,1001264,6.0,158 -1312645,1630147844,8175343,2,29,-9.0,1,0.0,1,37000.0,1042852,4.0,158 -1312646,1630147845,8174091,1,50,-9.0,1,1.0,1,14600.0,1073094,4.0,158 -1312647,1630147846,8175343,1,29,-9.0,1,0.0,1,46000.0,1073094,4.0,158 -1312648,1630147847,8165683,2,45,-9.0,2,1.0,1,68000.0,1001264,3.0,154 -1312649,1630147848,8175343,1,62,-9.0,1,1.0,1,22600.0,1001264,4.0,158 -1312650,1630147849,8158880,1,29,-9.0,1,1.0,1,33000.0,1025215,4.0,154 -1312651,1630147850,8177974,1,45,-9.0,1,1.0,1,128000.0,1009585,4.0,158 -1312652,1630147851,8158525,2,58,-9.0,2,3.0,1,70400.0,1042852,3.0,154 -1312653,1630147852,8173499,1,68,-9.0,1,1.0,1,325000.0,1073094,4.0,158 -1312654,1630147853,8173499,2,53,-9.0,2,5.0,1,29200.0,1042852,1.0,158 -1312655,1630147854,8902259,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,155 -1312656,1630147855,8173499,1,23,-9.0,2,2.0,1,24000.0,1009585,7.0,158 -1312657,1630147856,8173499,4,28,-9.0,3,3.0,1,0.0,1025215,5.0,158 -1312658,1630147857,8173499,2,64,-9.0,2,0.0,1,20400.0,1042852,7.0,158 -1312659,1630147858,8173499,1,58,-9.0,1,0.0,1,43000.0,1025215,6.0,158 -1312660,1630147859,8174886,4,30,-9.0,2,2.0,1,82000.0,1009585,1.0,158 -1312661,1630147860,8174886,1,40,-9.0,1,2.0,1,30000.0,1009585,4.0,158 -1312662,1630147861,8175343,2,24,-9.0,2,1.0,1,9900.0,1009585,5.0,158 -1312663,1630147862,8175343,2,30,-9.0,2,1.0,1,98800.0,1073094,5.0,158 -1312664,1630147863,8158880,4,22,-9.0,1,1.0,1,5000.0,1073094,6.0,154 -1312665,1630147864,8175343,4,26,-9.0,1,1.0,1,8000.0,1009585,4.0,158 -1312666,1630147865,8906695,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,158 -1312667,1630147866,8902259,2,72,-9.0,1,1.0,1,20000.0,1025215,4.0,155 -1312668,1630147867,8173499,2,33,1.0,2,0.0,1,1500.0,1025215,3.0,158 -1312669,1630147868,8906695,2,74,-9.0,2,1.0,1,42970.0,1042852,3.0,158 -1312670,1630147869,8158880,2,75,-9.0,1,1.0,1,49800.0,1042852,6.0,154 -1312671,1630147870,8159328,4,30,-9.0,2,1.0,1,39000.0,1009585,1.0,154 -1312672,1630147871,8906695,2,71,-9.0,2,0.0,1,13500.0,1025215,7.0,158 -1312673,1630147872,8165683,2,49,2.0,3,0.0,1,7000.0,1009585,3.0,154 -1312674,1630147873,8165683,2,63,-9.0,1,0.0,1,37000.0,1073094,4.0,154 -1312675,1630147874,8172663,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,158 -1312676,1630147875,8173499,2,39,-9.0,2,0.0,1,37830.0,1001264,3.0,158 -1312677,1630147876,8165683,2,52,-9.0,1,1.0,1,5000.0,1073094,4.0,154 -1312678,1630147877,8173187,2,50,-9.0,2,2.0,1,94000.0,1025215,1.0,158 -1312679,1630147878,8173499,1,27,-9.0,2,2.0,1,0.0,1009585,7.0,158 -1312680,1630147879,8172727,2,48,-9.0,2,5.0,1,53800.0,1025215,7.0,158 -1312681,1630147880,8172200,1,35,-9.0,1,1.0,1,35000.0,1073094,6.0,158 -1312682,1630147881,8159328,2,66,-9.0,1,2.0,1,32700.0,1009585,4.0,154 -1312683,1630147882,8173499,1,42,1.0,3,2.0,1,87000.0,1009585,1.0,158 -1312684,1630147883,8174002,2,59,-9.0,1,2.0,1,54000.0,1009585,6.0,158 -1312685,1630147884,8177698,2,60,-9.0,3,2.0,1,61200.0,1073094,3.0,158 -1312686,1630147885,8175343,2,48,-9.0,1,3.0,1,85000.0,1042852,4.0,158 -1312687,1630147886,8173499,2,73,-9.0,1,1.0,1,128300.0,1001264,6.0,158 -1312688,1630147887,8171847,2,58,-9.0,3,1.0,1,92000.0,1042852,1.0,158 -1312689,1630147888,8178371,2,58,-9.0,2,0.0,1,7200.0,1042852,5.0,158 -1312690,1630147889,8167357,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,154 -1312691,1630147890,8173499,2,73,-9.0,2,1.0,1,55100.0,1001264,3.0,158 -1312692,1630147891,8169043,2,47,1.0,3,1.0,1,10500.0,1025215,3.0,158 -1312693,1630147892,8177698,1,64,-9.0,1,1.0,1,42200.0,1025215,4.0,158 -1312694,1630147893,8175343,2,25,-9.0,1,1.0,1,34000.0,1025215,6.0,158 -1312695,1630147894,8173499,2,54,-9.0,3,2.0,1,39800.0,1073094,5.0,158 -1312696,1630147895,8175343,2,68,-9.0,2,1.0,1,12000.0,1001264,1.0,158 -1312697,1630147896,8173499,1,32,-9.0,3,1.0,1,72050.0,1001264,5.0,158 -1312698,1630147897,8173499,4,26,-9.0,1,1.0,1,0.0,1001264,4.0,158 -1312699,1630147898,8174886,1,24,-9.0,1,1.0,1,58000.0,1042852,4.0,158 -1312700,1630147899,8178371,2,52,-9.0,3,1.0,1,36500.0,1001264,1.0,158 -1312701,1630147900,8174618,1,51,-9.0,1,0.0,1,22000.0,1042852,6.0,158 -1312702,1630147901,8906695,2,57,-9.0,2,2.0,1,73000.0,1009585,1.0,158 -1312703,1630147902,8175343,4,27,-9.0,2,1.0,1,21000.0,1073094,1.0,158 -1312704,1630147903,8175343,2,65,-9.0,2,1.0,1,31400.0,1025215,1.0,158 -1312705,1630147904,8175343,2,37,-9.0,2,0.0,1,20200.0,1025215,3.0,158 -1312706,1630147905,8159015,2,26,2.0,3,0.0,1,25000.0,1001264,3.0,154 -1312707,1630147906,8156962,2,27,-9.0,1,0.0,1,1600.0,1001264,6.0,154 -1312708,1630147907,8173499,1,87,-9.0,2,0.0,1,43200.0,1025215,5.0,158 -1312709,1630147908,8906695,2,71,-9.0,2,0.0,1,27700.0,1009585,1.0,158 -1312710,1630147909,8165683,2,52,-9.0,2,0.0,1,23400.0,1073094,7.0,154 -1312711,1630147910,8167357,1,60,-9.0,1,1.0,1,640.0,1042852,6.0,154 -1312712,1630147911,8159949,2,71,-9.0,1,2.0,1,19300.0,1001264,4.0,154 -1312713,1630147912,8173499,4,23,-9.0,3,3.0,1,670.0,1025215,7.0,158 -1312714,1630147913,8173499,1,22,-9.0,2,1.0,1,75000.0,1025215,7.0,158 -1312715,1630147914,8165683,2,40,-9.0,2,1.0,1,14100.0,1073094,3.0,154 -1312716,1630147915,8906695,2,73,-9.0,2,2.0,1,52800.0,1073094,1.0,158 -1312717,1630147916,8158880,1,32,-9.0,2,2.0,1,55000.0,1025215,1.0,154 -1312718,1630147917,8172918,1,59,-9.0,2,3.0,1,123000.0,1025215,1.0,158 -1312719,1630147918,8165683,2,28,1.0,2,1.0,1,0.0,1001264,3.0,154 -1312720,1630147919,8906695,2,34,1.0,2,0.0,1,18000.0,1025215,3.0,158 -1312721,1630147920,8175745,2,43,-9.0,1,2.0,1,30000.0,1073094,6.0,158 -1312722,1630147921,8906695,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,158 -1312723,1630147922,8167357,2,69,-9.0,1,0.0,1,14400.0,1001264,6.0,154 -1312724,1630147923,8172200,2,46,1.0,3,2.0,1,42000.0,1009585,1.0,158 -1312725,1630147924,8173499,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,158 -1312726,1630147925,8175343,1,23,-9.0,3,0.0,1,30300.0,1009585,5.0,158 -1312727,1630147926,8167357,2,61,-9.0,1,0.0,1,5600.0,1001264,4.0,154 -1312728,1630147927,8178371,2,68,-9.0,1,1.0,1,1500.0,1025215,4.0,158 -1312729,1630147928,8175343,2,49,-9.0,2,2.0,1,69000.0,1042852,1.0,158 -1312730,1630147929,8902259,2,49,-9.0,3,0.0,1,10170.0,1001264,1.0,155 -1312731,1630147930,8906695,2,72,-9.0,1,1.0,1,61000.0,1025215,4.0,158 -1312732,1630147931,8156984,1,62,-9.0,2,0.0,1,23900.0,1001264,5.0,154 -1312733,1630147932,8175343,1,43,-9.0,2,2.0,1,24200.0,1009585,7.0,158 -1312734,1630147933,8177376,2,60,-9.0,2,2.0,1,142000.0,1001264,1.0,158 -1312735,1630147934,8906695,1,22,-9.0,3,2.0,1,58730.0,1042852,7.0,158 -1312736,1630147935,8177376,2,64,-9.0,2,1.0,1,97220.0,1001264,1.0,158 -1312737,1630147936,8175343,2,71,-9.0,3,1.0,1,70400.0,1001264,3.0,158 -1312738,1630147937,8173499,1,57,-9.0,1,2.0,1,40000.0,1025215,4.0,158 -1312739,1630147938,8175343,1,28,-9.0,2,2.0,1,94000.0,1001264,7.0,158 -1312740,1630147939,8174136,2,49,-9.0,3,1.0,1,20000.0,1073094,1.0,158 -1312741,1630147940,8167357,1,65,-9.0,1,0.0,1,8800.0,1009585,6.0,154 -1312742,1630147941,8172727,2,57,-9.0,3,2.0,1,83200.0,1073094,3.0,158 -1312743,1630147942,8158232,1,77,-9.0,2,0.0,1,16400.0,1025215,5.0,154 -1312744,1630147943,8171847,2,63,-9.0,1,1.0,1,68000.0,1009585,4.0,158 -1312745,1630147944,8173499,2,52,1.0,2,0.0,1,8500.0,1001264,2.0,158 -1312746,1630147945,8174425,2,37,2.0,3,1.0,1,15600.0,1025215,3.0,158 -1312747,1630147946,8173499,1,65,-9.0,2,2.0,1,130800.0,1001264,1.0,158 -1312748,1630147947,8172153,2,57,-9.0,2,2.0,1,73200.0,1042852,1.0,158 -1312749,1630147948,8173187,2,49,-9.0,2,1.0,1,93180.0,1025215,3.0,158 -1312750,1630147949,8906695,2,60,-9.0,1,1.0,1,164000.0,1009585,4.0,158 -1312751,1630147950,8165683,2,45,1.0,3,0.0,1,16900.0,1042852,3.0,154 -1312752,1630147951,8177141,1,64,-9.0,2,2.0,1,389100.0,1001264,1.0,158 -1312753,1630147952,8178371,1,29,-9.0,1,1.0,1,91000.0,1001264,4.0,158 -1312754,1630147953,8173499,2,45,-9.0,3,0.0,1,40800.0,1042852,3.0,158 -1312755,1630147954,8168957,2,35,-9.0,1,2.0,1,15000.0,1042852,4.0,158 -1312756,1630147955,8902259,2,61,-9.0,1,0.0,1,49000.0,1073094,6.0,155 -1312757,1630147956,8173499,2,77,-9.0,2,2.0,1,8400.0,1025215,2.0,158 -1312758,1630147957,8174244,1,55,-9.0,2,3.0,1,40200.0,1009585,1.0,158 -1312759,1630147958,8175343,2,54,-9.0,2,2.0,1,58900.0,1025215,1.0,158 -1312760,1630147959,8173499,2,21,-9.0,2,2.0,1,24000.0,1001264,5.0,158 -1312761,1630147960,8171847,2,62,-9.0,2,4.0,1,101660.0,1009585,2.0,158 -1312762,1630147961,8175343,1,39,-9.0,1,0.0,1,1900.0,1042852,4.0,158 -1312763,1630147962,8175497,1,61,-9.0,2,1.0,1,28400.0,1042852,3.0,158 -1312764,1630147963,8173962,1,64,-9.0,3,2.0,1,16710.0,1001264,3.0,158 -1312765,1630147964,8174886,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,158 -1312766,1630147965,8173499,4,33,-9.0,2,2.0,1,238580.0,1009585,7.0,158 -1312767,1630147966,8177855,2,43,1.0,3,2.0,1,50400.0,1042852,1.0,158 -1312768,1630147967,8173499,1,22,-9.0,2,2.0,1,0.0,1073094,7.0,158 -1312769,1630147968,8173499,1,27,-9.0,2,1.0,1,13000.0,1042852,1.0,158 -1312770,1630147969,8173499,1,24,-9.0,2,1.0,1,12200.0,1025215,1.0,158 -1312771,1630147970,8173187,1,62,-9.0,3,0.0,1,75900.0,1042852,1.0,158 -1312772,1630147971,8174352,2,45,2.0,3,1.0,1,60000.0,1009585,3.0,158 -1312773,1630147972,8173499,1,49,-9.0,2,2.0,1,58000.0,1042852,1.0,158 -1312774,1630147973,8177405,2,44,2.0,3,2.0,1,80000.0,1009585,2.0,158 -1312775,1630147974,8158371,2,20,-9.0,1,0.0,1,120.0,1009585,6.0,154 -1312776,1630147975,8174314,1,19,-9.0,3,1.0,1,16000.0,1025215,5.0,158 -1312777,1630147976,8172663,1,19,1.0,2,1.0,1,15000.0,1042852,3.0,158 -1312778,1630147977,8158880,2,28,-9.0,2,2.0,1,40000.0,1009585,7.0,154 -1312779,1630147978,8173499,1,59,-9.0,1,1.0,1,30700.0,1025215,6.0,158 -1312780,1630147979,8165683,1,24,-9.0,2,0.0,1,43000.0,1042852,1.0,154 -1312781,1630147980,8169314,1,60,-9.0,1,1.0,1,40000.0,1025215,6.0,158 -1312782,1630147981,8174886,2,63,-9.0,1,2.0,1,2400.0,1009585,4.0,158 -1312783,1630147982,8174683,2,94,-9.0,1,0.0,1,26000.0,1073094,6.0,158 -1312784,1630147983,8173499,2,86,-9.0,3,1.0,1,50470.0,1009585,3.0,158 -1312785,1630147984,8175679,1,62,-9.0,2,2.0,1,32500.0,1001264,1.0,158 -1312786,1630147985,8906695,2,72,-9.0,2,1.0,1,11000.0,1001264,3.0,158 -1312787,1630147986,8158880,2,58,-9.0,2,0.0,1,90000.0,1001264,1.0,154 -1312788,1630147987,8180447,2,63,-9.0,2,1.0,1,780.0,1009585,3.0,157 -1312789,1630147988,8173499,2,38,1.0,3,2.0,1,80000.0,1009585,1.0,158 -1312790,1630147989,8174684,2,40,-9.0,1,1.0,1,22000.0,1001264,6.0,158 -1312791,1630147990,8172153,2,61,1.0,3,1.0,1,18000.0,1042852,3.0,158 -1312792,1630147991,8173499,2,34,-9.0,1,1.0,1,80000.0,1001264,4.0,158 -1312793,1630147992,8177141,1,56,-9.0,1,0.0,1,115000.0,1073094,6.0,158 -1312794,1630147993,8906695,2,22,1.0,3,1.0,1,24600.0,1073094,2.0,158 -1312795,1630147994,8177376,2,56,-9.0,2,2.0,1,3800.0,1025215,3.0,158 -1312796,1630147995,8171847,2,54,-9.0,3,2.0,1,101400.0,1009585,1.0,158 -1312797,1630147996,8175220,2,40,-9.0,1,1.0,1,0.0,1009585,4.0,158 -1312798,1630147997,8175343,4,30,-9.0,2,1.0,1,142000.0,1001264,1.0,158 -1312799,1630147998,8172663,1,63,-9.0,2,2.0,1,76500.0,1009585,1.0,158 -1312800,1630147999,8175343,2,41,-9.0,1,2.0,1,0.0,1025215,4.0,158 -1312801,1630148000,8173187,2,58,-9.0,3,2.0,1,49400.0,1042852,1.0,158 -1312802,1630148001,8906695,2,56,2.0,3,0.0,1,40824.0,1009585,7.0,158 -1312803,1630148002,8173499,1,60,-9.0,2,2.0,1,9600.0,1001264,1.0,158 -1312804,1630148003,8173499,2,23,-9.0,1,3.0,1,10000.0,1073094,4.0,158 -1312805,1630148004,8178253,2,55,-9.0,3,1.0,1,50000.0,1009585,2.0,158 -1312806,1630148005,8174514,2,39,-9.0,2,1.0,1,69000.0,1001264,1.0,158 -1312807,1630148006,8174572,2,44,2.0,3,1.0,1,91880.0,1001264,3.0,158 -1312808,1630148007,8177141,2,61,-9.0,2,0.0,1,53100.0,1025215,5.0,158 -1312809,1630148008,8173499,2,43,-9.0,2,1.0,1,50000.0,1009585,5.0,158 -1312810,1630148009,8173499,2,29,1.0,3,1.0,1,42970.0,1042852,2.0,158 -1312811,1630148010,8174859,1,50,2.0,3,2.0,1,29120.0,1025215,3.0,158 -1312812,1630148011,8158880,1,38,-9.0,2,2.0,1,167000.0,1073094,5.0,154 -1312813,1630148012,8177141,1,49,-9.0,3,2.0,1,74500.0,1009585,5.0,158 -1312814,1630148013,8177405,1,49,2.0,3,1.0,1,55000.0,1001264,3.0,158 -1312815,1630148014,8174314,1,37,-9.0,2,1.0,1,50000.0,1073094,1.0,158 -1312816,1630148015,8181253,1,33,1.0,3,2.0,1,50000.0,1001264,1.0,157 -1312817,1630148016,8173499,1,33,-9.0,1,1.0,1,200000.0,1001264,6.0,158 -1312818,1630148017,8174106,4,25,-9.0,1,1.0,1,67000.0,1025215,4.0,158 -1312819,1630148018,8159081,1,32,2.0,3,0.0,1,0.0,1025215,3.0,154 -1312820,1630148019,8177376,1,53,-9.0,3,3.0,1,139500.0,1025215,1.0,158 -1312821,1630148020,8174314,2,26,-9.0,2,1.0,1,20000.0,1042852,5.0,158 -1312822,1630148021,8902259,2,56,-9.0,3,1.0,1,44400.0,1073094,3.0,155 -1312823,1630148022,8906695,1,29,-9.0,2,2.0,1,60000.0,1009585,1.0,158 -1312824,1630148023,8172663,2,54,-9.0,2,2.0,1,0.0,1025215,3.0,158 -1312825,1630148024,8175343,2,24,-9.0,2,0.0,1,20000.0,1025215,1.0,158 -1312826,1630148025,8158880,2,20,1.0,3,0.0,1,6500.0,1025215,3.0,154 -1312827,1630148026,8173799,2,59,-9.0,3,3.0,1,13400.0,1025215,1.0,158 -1312828,1630148027,8906695,1,40,-9.0,1,2.0,1,65000.0,1009585,4.0,158 -1312829,1630148028,8902259,2,23,2.0,3,1.0,1,18000.0,1025215,3.0,155 -1312830,1630148029,8906695,4,23,-9.0,1,1.0,1,34000.0,1001264,4.0,158 -1312831,1630148030,8906695,1,32,-9.0,1,0.0,1,6000.0,1001264,4.0,158 -1852407,1630687834,8024356,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,201 -1852408,1630687835,8024356,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,201 -1852409,1630687836,8024356,2,34,-9.0,1,0.0,1,10000.0,1042852,6.0,201 -1852410,1630687837,8024356,2,37,-9.0,1,0.0,1,15000.0,1073094,6.0,201 -1852411,1630687838,8024356,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,201 -1852412,1630687839,8024356,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,201 -1852413,1630687840,8024356,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,201 -1852414,1630687842,8024356,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,201 -1852415,1630687843,8024356,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,201 -1852416,1630687844,8024356,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,201 -1852417,1630687845,8024356,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,201 -1852418,1630687846,8024356,1,26,-9.0,1,0.0,1,26000.0,1001264,6.0,201 -1852419,1630687847,8024356,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,201 -1852420,1630687848,8024356,1,44,-9.0,1,0.0,1,8100.0,1009585,6.0,201 -1852421,1630687849,8024356,2,32,-9.0,1,1.0,1,22500.0,1001264,6.0,201 -1852422,1630687850,8024356,2,25,-9.0,1,1.0,1,29600.0,1073094,6.0,201 -1852423,1630687851,8024356,1,31,-9.0,1,1.0,1,18000.0,1001264,6.0,201 -1852424,1630687852,8024356,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,201 -1852425,1630687854,8024356,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,201 -1852426,1630687855,8024356,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,201 -1852427,1630687856,8024356,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,201 -1852428,1630687857,8024356,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,201 -1852429,1630687858,8024356,1,31,-9.0,1,1.0,1,18000.0,1073094,6.0,201 -1852430,1630687859,8024356,1,26,-9.0,1,1.0,1,18000.0,1025215,6.0,201 -1852431,1630687860,8024356,1,26,-9.0,1,1.0,1,13500.0,1001264,6.0,201 -1852432,1630687861,8024356,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,201 -1852433,1630687862,8024356,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,201 -1852434,1630687863,8024356,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,201 -1852435,1630687864,8024356,1,28,-9.0,1,1.0,1,27000.0,1025215,6.0,201 -1852436,1630687865,8024356,1,25,-9.0,1,1.0,1,12000.0,1001264,6.0,201 -1852437,1630687867,8024356,2,45,-9.0,1,0.0,1,22900.0,1073094,6.0,201 -1852438,1630687868,8024356,2,59,-9.0,1,0.0,1,15000.0,1025215,6.0,201 -1852439,1630687869,8024356,2,52,-9.0,1,0.0,1,13400.0,1042852,6.0,201 -1852440,1630687870,8024356,2,55,-9.0,1,0.0,1,22600.0,1009585,6.0,201 -1852441,1630687871,8024356,2,47,-9.0,1,0.0,1,20600.0,1073094,6.0,201 -1852442,1630687872,8024356,2,47,-9.0,1,0.0,1,13000.0,1073094,6.0,201 -1852443,1630687873,8024356,2,62,-9.0,1,0.0,1,29000.0,1009585,6.0,201 -1852444,1630687874,8024356,2,55,-9.0,1,0.0,1,22600.0,1009585,6.0,201 -1852445,1630687875,8024356,2,58,-9.0,1,0.0,1,15800.0,1001264,6.0,201 -1852446,1630687876,8024356,2,56,-9.0,4,0.0,1,8800.0,1009585,6.0,201 -1852447,1630687877,8024356,2,52,-9.0,1,0.0,1,13400.0,1042852,6.0,201 -1852448,1630687879,8024356,2,58,-9.0,1,0.0,1,21800.0,1001264,6.0,201 -1852449,1630687880,8024356,2,61,-9.0,1,0.0,1,14000.0,1073094,6.0,201 -1852450,1630687881,8024356,2,59,-9.0,1,0.0,1,15000.0,1025215,6.0,201 -1852451,1630687882,8024356,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,201 -1852452,1630687883,8024356,1,55,-9.0,1,0.0,1,4800.0,1009585,4.0,201 -1852453,1630687884,8024356,2,55,-9.0,1,1.0,1,21900.0,1009585,6.0,201 -1852454,1630687885,8024356,2,56,-9.0,1,1.0,1,25000.0,1009585,6.0,201 -1852455,1630687886,8024356,2,56,-9.0,1,1.0,1,25000.0,1009585,6.0,201 -1852456,1630687887,8024356,2,51,-9.0,1,1.0,1,4500.0,1001264,6.0,201 -1852457,1630687888,8024356,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,201 -1852458,1630687889,8024356,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,201 -1852459,1630687890,8024356,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,201 -1852460,1630687891,8024356,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,201 -1852461,1630687892,8024356,1,31,-9.0,1,1.0,1,26800.0,1009585,6.0,201 -1852462,1630687893,8024356,1,53,-9.0,1,1.0,1,18000.0,1025215,6.0,201 -1852463,1630687894,8024356,2,32,-9.0,1,1.0,1,22500.0,1001264,6.0,201 -1852464,1630687895,8024356,1,25,-9.0,1,0.0,1,25000.0,1009585,6.0,201 -1852703,1630688134,8023938,1,63,-9.0,1,1.0,1,36000.0,1025215,6.0,201 -1852717,1630688148,8024730,1,40,-9.0,2,2.0,1,150400.0,1025215,1.0,201 -1852871,1630688302,8136517,3,34,-9.0,1,1.0,1,55000.0,1073094,6.0,173 -1852872,1630688303,8915366,2,44,-9.0,1,1.0,1,19600.0,1073094,4.0,172 -1852873,1630688304,8915355,2,60,-9.0,1,1.0,1,30000.0,1042852,6.0,178 -1852874,1630688305,8133791,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,170 -1852875,1630688306,8141925,2,74,-9.0,1,0.0,1,17000.0,1073094,6.0,174 -1852876,1630688307,8135699,1,24,-9.0,1,0.0,1,5000.0,1025215,4.0,170 -1852877,1630688308,8135632,1,32,2.0,3,0.0,1,0.0,1025215,3.0,172 -1852878,1630688309,8140001,2,53,-9.0,2,0.0,1,7500.0,1042852,3.0,173 -1852879,1630688310,8136169,2,61,-9.0,3,0.0,1,12000.0,1042852,3.0,171 -1852880,1630688311,8135160,2,58,-9.0,1,0.0,1,7900.0,1042852,6.0,172 -1852881,1630688312,8145581,1,24,-9.0,1,1.0,1,38450.0,1025215,4.0,177 -1852882,1630688313,8133950,1,59,-9.0,2,2.0,1,125000.0,1025215,1.0,172 -1852883,1630688314,8132066,1,30,-9.0,1,1.0,1,8000.0,1001264,4.0,172 -1852884,1630688315,8900518,1,57,-9.0,1,2.0,1,19900.0,1001264,4.0,175 -1852885,1630688316,8900600,1,34,-9.0,1,1.0,1,41400.0,1025215,4.0,172 -1852886,1630688317,8900577,2,31,1.0,3,1.0,1,8400.0,1073094,2.0,162 -1852887,1630688318,8128751,2,70,-9.0,1,1.0,1,242400.0,1001264,6.0,172 -1852888,1630688319,8140506,2,58,-9.0,1,0.0,1,33000.0,1073094,4.0,174 -1852889,1630688320,8140457,2,41,-9.0,1,0.0,1,7700.0,1025215,6.0,174 -1852890,1630688321,8144935,2,69,-9.0,1,1.0,1,70010.0,1001264,6.0,168 -1852891,1630688322,8159430,2,74,-9.0,1,0.0,1,12000.0,1009585,6.0,161 -1852892,1630688323,8132682,1,28,-9.0,1,1.0,1,116000.0,1009585,4.0,172 -1852893,1630688324,8164422,2,39,-9.0,1,0.0,1,8470.0,1073094,4.0,160 -1852894,1630688325,8915368,2,33,-9.0,1,1.0,1,1000.0,1001264,4.0,172 -1852895,1630688326,8146274,1,84,-9.0,1,1.0,1,49600.0,1025215,6.0,177 -1852896,1630688327,8161200,2,52,-9.0,1,1.0,1,10800.0,1073094,4.0,160 -1852897,1630688328,8149204,2,29,3.0,5,0.0,1,4300.0,1001264,3.0,175 -1852898,1630688329,8162053,1,24,-9.0,1,0.0,1,0.0,1073094,6.0,160 -1852899,1630688330,8163451,4,33,-9.0,1,1.0,1,50000.0,1073094,4.0,161 -1852900,1630688331,8157786,2,35,-9.0,2,0.0,1,1600.0,1001264,2.0,176 -1852901,1630688332,8915383,2,55,-9.0,2,1.0,1,14000.0,1042852,3.0,172 -1852902,1630688333,8140851,2,55,-9.0,2,0.0,1,0.0,1025215,5.0,169 -1852903,1630688334,8141629,2,38,1.0,4,1.0,1,27360.0,1001264,3.0,173 -1852904,1630688335,8148062,2,81,-9.0,2,1.0,1,13700.0,1073094,3.0,168 -1852905,1630688336,8145849,2,68,-9.0,1,1.0,1,19000.0,1073094,6.0,177 -1852906,1630688337,8134479,1,24,-9.0,1,1.0,1,60000.0,1025215,6.0,172 -1852907,1630688338,8900564,2,23,3.0,5,0.0,1,12700.0,1025215,3.0,170 -1852908,1630688339,8133606,1,67,-9.0,1,1.0,1,117100.0,1009585,4.0,170 -1852909,1630688340,8135796,2,50,1.0,2,0.0,1,8100.0,1073094,4.0,170 -1852910,1630688341,8137797,3,44,-9.0,3,1.0,1,43370.0,1009585,3.0,174 -1852911,1630688342,8145271,2,22,-9.0,1,0.0,1,400.0,1073094,4.0,173 -1852912,1630688343,8136875,2,55,-9.0,2,2.0,1,20050.0,1001264,3.0,173 -1852913,1630688344,8157094,1,22,-9.0,2,1.0,1,0.0,1073094,5.0,175 -1852914,1630688345,8141704,2,58,-9.0,1,0.0,1,4800.0,1042852,4.0,169 -1852915,1630688346,8151207,2,69,-9.0,1,0.0,1,12600.0,1025215,6.0,168 -1852916,1630688347,8158247,2,59,-9.0,1,0.0,1,0.0,1009585,6.0,161 -1852917,1630688348,8137174,2,61,-9.0,2,0.0,1,31400.0,1042852,2.0,171 -1852918,1630688349,8135996,2,59,-9.0,2,0.0,1,8650.0,1025215,3.0,172 -1852919,1630688350,8135176,1,22,-9.0,1,0.0,1,9000.0,1073094,4.0,172 -1852920,1630688351,8160251,2,32,-9.0,1,1.0,1,48000.0,1025215,3.0,160 -1852921,1630688352,8143982,2,55,-9.0,1,0.0,1,8500.0,1025215,6.0,173 -1852922,1630688353,8145079,2,73,-9.0,1,0.0,1,10600.0,1009585,6.0,168 -1852923,1630688354,8159351,2,45,-9.0,2,1.0,1,9500.0,1025215,3.0,161 -1852924,1630688355,8163882,2,87,-9.0,1,1.0,1,48000.0,1025215,6.0,161 -1852925,1630688356,8139545,2,58,-9.0,1,1.0,1,7200.0,1001264,6.0,173 -1852926,1630688357,8141419,1,33,-9.0,5,5.0,1,170670.0,1001264,7.0,169 -1852927,1630688358,8134031,2,29,-9.0,1,1.0,1,25000.0,1001264,4.0,172 -1852928,1630688359,8145758,2,56,-9.0,2,1.0,1,15800.0,1009585,3.0,173 -1852929,1630688360,8164494,2,22,2.0,3,0.0,1,4800.0,1009585,3.0,160 -1852930,1630688361,8143973,2,51,-9.0,1,0.0,1,0.0,1001264,6.0,173 -1852931,1630688362,8900588,2,34,4.0,5,0.0,1,10000.0,1042852,6.0,174 -1852932,1630688363,8161949,2,54,-9.0,1,1.0,1,12000.0,1025215,4.0,161 -1852933,1630688364,8156994,1,77,-9.0,1,0.0,1,21900.0,1009585,4.0,176 -1852934,1630688365,8136009,2,27,1.0,3,0.0,1,10200.0,1025215,3.0,171 -1852935,1630688366,8139412,1,49,-9.0,1,0.0,1,8500.0,1025215,6.0,173 -1852936,1630688367,8915360,2,26,1.0,2,1.0,1,7500.0,1009585,3.0,172 -1852937,1630688368,8134446,1,30,-9.0,2,1.0,1,40000.0,1009585,1.0,170 -1900751,2000038755,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1900752,2000038756,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1900753,2000038757,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1900754,2000038758,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1900755,2000038759,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1900756,2000038760,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1900783,2000038787,8170749,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,155 -1900784,2000038788,8170749,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,155 -1900785,2000038789,8184385,2,58,-9.0,1,-9.0,3,7000.0,1001264,0.0,152 -1900786,2000038790,8180384,2,43,-9.0,1,-9.0,3,14400.0,1001264,0.0,156 -1900787,2000038791,8180384,2,44,-9.0,1,-9.0,3,6000.0,1009585,0.0,156 -1900788,2000038792,8180478,2,43,-9.0,1,-9.0,3,14400.0,1001264,0.0,157 -1900791,2000038795,8169314,2,58,-9.0,1,-9.0,3,7000.0,1001264,0.0,158 -1900792,2000038796,8201256,2,56,-9.0,1,-9.0,3,3500.0,1001264,0.0,159 -1900793,2000038797,8200925,2,58,-9.0,1,-9.0,3,7000.0,1001264,0.0,159 -1900794,2000038798,8195478,2,41,-9.0,1,-9.0,3,6500.0,1073094,0.0,151 -1900795,2000038799,8199368,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,151 -1900796,2000038800,8180384,2,56,-9.0,1,-9.0,3,3500.0,1001264,0.0,156 -1901233,2000039237,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901234,2000039238,8154365,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1901235,2000039239,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901236,2000039240,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901237,2000039241,8154365,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901238,2000039242,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901239,2000039243,8159542,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,160 -1901240,2000039244,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901241,2000039245,8143067,2,22,-9.0,1,-9.0,3,22000.0,1042852,0.0,174 -1901242,2000039246,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901243,2000039247,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901244,2000039248,8900511,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1901245,2000039249,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901246,2000039250,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901247,2000039251,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901248,2000039252,8159542,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,160 -1901249,2000039253,8152231,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1901250,2000039254,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901251,2000039255,8900511,2,22,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1901252,2000039256,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901253,2000039257,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901254,2000039258,8900511,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901255,2000039259,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901256,2000039260,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901257,2000039261,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1901258,2000039262,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901259,2000039263,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901260,2000039264,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901261,2000039265,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901262,2000039266,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901263,2000039267,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901264,2000039268,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901265,2000039269,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901266,2000039270,8152231,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,175 -1901267,2000039271,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901268,2000039272,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901269,2000039273,8140209,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,170 -1901270,2000039274,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901271,2000039275,8159542,2,25,-9.0,1,-9.0,3,8000.0,1025215,0.0,160 -1901272,2000039276,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1901273,2000039277,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901274,2000039278,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901275,2000039279,8152231,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,175 -1901276,2000039280,8152231,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1901277,2000039281,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901278,2000039282,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901279,2000039283,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901280,2000039284,8152231,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1901281,2000039285,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1901282,2000039286,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901283,2000039287,8900511,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1901284,2000039288,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901285,2000039289,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1901286,2000039290,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901287,2000039291,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901288,2000039292,8154365,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,175 -1901289,2000039293,8159542,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,160 -1901290,2000039294,8159542,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1901291,2000039295,8154365,1,26,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901292,2000039296,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901293,2000039297,8159542,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,160 -1901294,2000039298,8154365,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901295,2000039299,8159542,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,160 -1901296,2000039300,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901297,2000039301,8159542,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1901298,2000039302,8154365,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901299,2000039303,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901300,2000039304,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1901301,2000039305,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901302,2000039306,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1901303,2000039307,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901304,2000039308,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1901305,2000039309,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901306,2000039310,8900511,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1901307,2000039311,8152231,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1901308,2000039312,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1901309,2000039313,8152231,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1901310,2000039314,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901311,2000039315,8159542,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,160 -1901312,2000039316,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901313,2000039317,8900511,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1901314,2000039318,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901315,2000039319,8152231,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1901316,2000039320,8152231,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1901317,2000039321,8900511,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1901318,2000039322,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901319,2000039323,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901320,2000039324,8154365,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,175 -1901321,2000039325,8159542,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,160 -1901322,2000039326,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1901323,2000039327,8152231,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901324,2000039328,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901325,2000039329,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901326,2000039330,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901327,2000039331,8152231,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901328,2000039332,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901329,2000039333,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901330,2000039334,8159542,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1901331,2000039335,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901332,2000039336,8154365,2,22,-9.0,1,-9.0,3,22000.0,1042852,0.0,175 -1901333,2000039337,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1901334,2000039338,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901335,2000039339,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901336,2000039340,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1901337,2000039341,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901338,2000039342,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901339,2000039343,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901340,2000039344,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901341,2000039345,8154365,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,175 -1901342,2000039346,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901343,2000039347,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901344,2000039348,8900511,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901345,2000039349,8159542,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,160 -1901346,2000039350,8154365,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1901347,2000039351,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901348,2000039352,8154365,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,175 -1901349,2000039353,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1901350,2000039354,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901351,2000039355,8152231,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,175 -1901352,2000039356,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901353,2000039357,8154365,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901354,2000039358,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901355,2000039359,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901356,2000039360,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901357,2000039361,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901358,2000039362,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901359,2000039363,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901360,2000039364,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1901361,2000039365,8152231,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901362,2000039366,8900511,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1901363,2000039367,8159542,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901364,2000039368,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901365,2000039369,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901366,2000039370,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901367,2000039371,8154365,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,175 -1901368,2000039372,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901369,2000039373,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901370,2000039374,8159542,1,26,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1901371,2000039375,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901372,2000039376,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901373,2000039377,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901374,2000039378,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1901375,2000039379,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901376,2000039380,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901377,2000039381,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901378,2000039382,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901379,2000039383,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901380,2000039384,8159542,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1901381,2000039385,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901382,2000039386,8154365,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,175 -1901383,2000039387,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901384,2000039388,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901385,2000039389,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901386,2000039390,8154365,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901387,2000039391,8159542,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901388,2000039392,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1901389,2000039393,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1901390,2000039394,8154365,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901391,2000039395,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1901392,2000039396,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1901393,2000039397,8154365,2,22,-9.0,1,-9.0,3,22000.0,1042852,0.0,175 -1901394,2000039398,8900511,2,22,-9.0,1,-9.0,3,22000.0,1042852,0.0,175 -1901395,2000039399,8154365,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,175 -1901396,2000039400,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901397,2000039401,8159542,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,160 -1901398,2000039402,8152231,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1901399,2000039403,8154365,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,175 -1901400,2000039404,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1901401,2000039405,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901402,2000039406,8152231,1,26,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901403,2000039407,8152231,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901404,2000039408,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901405,2000039409,8159542,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1901406,2000039410,8159542,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,160 -1901407,2000039411,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901408,2000039412,8900511,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,175 -1901409,2000039413,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1901410,2000039414,8154365,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901411,2000039415,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901412,2000039416,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901413,2000039417,8900511,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,175 -1901414,2000039418,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901415,2000039419,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901416,2000039420,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901417,2000039421,8154365,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901418,2000039422,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901419,2000039423,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901420,2000039424,8154365,1,26,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901421,2000039425,8154365,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1901422,2000039426,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901423,2000039427,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901424,2000039428,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901425,2000039429,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901426,2000039430,8152231,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1901427,2000039431,8900511,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901428,2000039432,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901429,2000039433,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901430,2000039434,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901431,2000039435,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901432,2000039436,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901433,2000039437,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901434,2000039438,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901435,2000039439,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1901436,2000039440,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901437,2000039441,8900511,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1901438,2000039442,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901439,2000039443,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901440,2000039444,8140209,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,170 -1901441,2000039445,8152231,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1901442,2000039446,8900511,1,26,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901443,2000039447,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901444,2000039448,8900511,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901445,2000039449,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901446,2000039450,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901447,2000039451,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901448,2000039452,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901449,2000039453,8154365,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,175 -1901450,2000039454,8152231,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1901451,2000039455,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901452,2000039456,8154365,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,175 -1901453,2000039457,8152231,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901454,2000039458,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901455,2000039459,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901456,2000039460,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901457,2000039461,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901458,2000039462,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901459,2000039463,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901460,2000039464,8900511,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1901461,2000039465,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901462,2000039466,8159542,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,160 -1901463,2000039467,8152231,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1901464,2000039468,8900511,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901465,2000039469,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901466,2000039470,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901467,2000039471,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901468,2000039472,8159542,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,160 -1901469,2000039473,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901470,2000039474,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901471,2000039475,8152231,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1901472,2000039476,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901473,2000039477,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901474,2000039478,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901475,2000039479,8159542,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,160 -1901476,2000039480,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1901477,2000039481,8159542,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1901478,2000039482,8154365,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901479,2000039483,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901480,2000039484,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901481,2000039485,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901482,2000039486,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901483,2000039487,8152231,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1901484,2000039488,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901485,2000039489,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901486,2000039490,8154365,2,25,-9.0,1,-9.0,3,8000.0,1025215,0.0,175 -1901487,2000039491,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901488,2000039492,8152231,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1901489,2000039493,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901490,2000039494,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901491,2000039495,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1901492,2000039496,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1901493,2000039497,8152231,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901494,2000039498,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901495,2000039499,8152231,1,26,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901496,2000039500,8900511,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901497,2000039501,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1901498,2000039502,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901499,2000039503,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901500,2000039504,8152231,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901501,2000039505,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901502,2000039506,8154365,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,175 -1901503,2000039507,8159542,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1901504,2000039508,8152231,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1901505,2000039509,8152231,2,22,-9.0,1,-9.0,3,22000.0,1042852,0.0,175 -1901506,2000039510,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901507,2000039511,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901508,2000039512,8154365,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,175 -1901509,2000039513,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901510,2000039514,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901511,2000039515,8159542,1,26,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901512,2000039516,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1901513,2000039517,8154365,1,26,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901514,2000039518,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1901515,2000039519,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1901516,2000039520,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1901517,2000039521,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901518,2000039522,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901519,2000039523,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901520,2000039524,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1901521,2000039525,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901522,2000039526,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901523,2000039527,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1901524,2000039528,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1901525,2000039529,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901526,2000039530,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901527,2000039531,8152231,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,175 -1901528,2000039532,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901529,2000039533,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901530,2000039534,8900511,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1901531,2000039535,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901532,2000039536,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901533,2000039537,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901534,2000039538,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901535,2000039539,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1901536,2000039540,8154365,1,26,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901537,2000039541,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901538,2000039542,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901539,2000039543,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901540,2000039544,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901541,2000039545,8159542,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901542,2000039546,8154365,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,175 -1901543,2000039547,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901544,2000039548,8900511,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1901545,2000039549,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901546,2000039550,8154365,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901547,2000039551,8152231,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1901548,2000039552,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901549,2000039553,8159542,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,160 -1901550,2000039554,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901551,2000039555,8159542,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,160 -1901552,2000039556,8154365,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901553,2000039557,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1901554,2000039558,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901555,2000039559,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1901556,2000039560,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901557,2000039561,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1901558,2000039562,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901559,2000039563,8154365,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901560,2000039564,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901561,2000039565,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901562,2000039566,8159542,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901563,2000039567,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901564,2000039568,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901565,2000039569,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901566,2000039570,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901567,2000039571,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901568,2000039572,8900511,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,175 -1901569,2000039573,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901570,2000039574,8159542,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1901571,2000039575,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901572,2000039576,8900511,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1901573,2000039577,8152231,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1901574,2000039578,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1901575,2000039579,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901576,2000039580,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901577,2000039581,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901578,2000039582,8159542,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,160 -1901579,2000039583,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901580,2000039584,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901581,2000039585,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1901582,2000039586,8900511,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901583,2000039587,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901584,2000039588,8152231,2,22,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1901585,2000039589,8159542,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,160 -1901586,2000039590,8154365,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901587,2000039591,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901588,2000039592,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901589,2000039593,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901590,2000039594,8152231,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1901591,2000039595,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901592,2000039596,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901593,2000039597,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901594,2000039598,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901595,2000039599,8143067,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,174 -1901596,2000039600,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901597,2000039601,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901598,2000039602,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1901599,2000039603,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901600,2000039604,8152231,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1901601,2000039605,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1901602,2000039606,8154365,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,175 -1901603,2000039607,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901604,2000039608,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901605,2000039609,8154365,1,26,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901606,2000039610,8154365,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901607,2000039611,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1901608,2000039612,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901609,2000039613,8154365,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,175 -1901610,2000039614,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901611,2000039615,8152231,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901612,2000039616,8900511,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901613,2000039617,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1901614,2000039618,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901615,2000039619,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901616,2000039620,8159542,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1901617,2000039621,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901618,2000039622,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901619,2000039623,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901620,2000039624,8154365,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901621,2000039625,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901622,2000039626,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901623,2000039627,8152231,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,175 -1901624,2000039628,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901625,2000039629,8152231,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1901626,2000039630,8152231,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1901627,2000039631,8900511,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1901628,2000039632,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901629,2000039633,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901630,2000039634,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901631,2000039635,8900511,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,175 -1901632,2000039636,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901633,2000039637,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901634,2000039638,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901635,2000039639,8900511,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1901636,2000039640,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901637,2000039641,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901638,2000039642,8900511,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901639,2000039643,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901640,2000039644,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901641,2000039645,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901642,2000039646,8152231,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1901643,2000039647,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901644,2000039648,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901645,2000039649,8161186,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901646,2000039650,8152231,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,175 -1901647,2000039651,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901648,2000039652,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901649,2000039653,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901650,2000039654,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1901651,2000039655,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1901652,2000039656,8159542,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1901653,2000039657,8900511,1,26,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901654,2000039658,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901655,2000039659,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901656,2000039660,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901657,2000039661,8154365,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901658,2000039662,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901659,2000039663,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901660,2000039664,8159542,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1901661,2000039665,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1901662,2000039666,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901663,2000039667,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901664,2000039668,8159542,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,160 -1901665,2000039669,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1901666,2000039670,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1901667,2000039671,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1901668,2000039672,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901669,2000039673,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901670,2000039674,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901671,2000039675,8154365,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,175 -1901672,2000039676,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901673,2000039677,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901674,2000039678,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901675,2000039679,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901676,2000039680,8140209,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,170 -1901677,2000039681,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901678,2000039682,8152231,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901679,2000039683,8154365,1,26,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901680,2000039684,8152231,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1901681,2000039685,8900511,1,26,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901682,2000039686,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901683,2000039687,8154365,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,175 -1901684,2000039688,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901685,2000039689,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901686,2000039690,8161186,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1901687,2000039691,8900511,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1901688,2000039692,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901689,2000039693,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1901690,2000039694,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901691,2000039695,8159542,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1901692,2000039696,8900511,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1901693,2000039697,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901694,2000039698,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1901695,2000039699,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901696,2000039700,8152231,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1901697,2000039701,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901698,2000039702,8159542,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1901699,2000039703,8154365,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,175 -1901700,2000039704,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901701,2000039705,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1901702,2000039706,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901703,2000039707,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901704,2000039708,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901705,2000039709,8900511,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901706,2000039710,8152231,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,175 -1901707,2000039711,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901708,2000039712,8900511,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,175 -1901709,2000039713,8900511,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901710,2000039714,8154365,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901711,2000039715,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1901712,2000039716,8154365,2,25,-9.0,1,-9.0,3,8000.0,1025215,0.0,175 -1901713,2000039717,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901714,2000039718,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1901715,2000039719,8154365,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,175 -1901716,2000039720,8154365,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1901717,2000039721,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1901718,2000039722,8134567,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,170 -1901719,2000039723,8132090,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,172 -1901720,2000039724,8134140,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,172 -1901721,2000039725,8134567,2,25,-9.0,1,-9.0,3,8000.0,1025215,0.0,170 -1901722,2000039726,8133532,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,172 -1901723,2000039727,8140311,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,173 -1901724,2000039728,8140311,1,27,-9.0,1,-9.0,3,8500.0,1009585,0.0,173 -1901725,2000039729,8132090,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,172 -1901726,2000039730,8133979,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,172 -1901727,2000039731,8132090,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,172 -1901728,2000039732,8132090,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,172 -1901729,2000039733,8132090,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,172 -1901730,2000039734,8140311,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,173 -1901812,2000039816,8170749,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,155 -1901813,2000039817,8170749,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1901814,2000039818,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1901815,2000039819,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901816,2000039820,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901817,2000039821,8170749,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,155 -1901818,2000039822,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901819,2000039823,8170749,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1901820,2000039824,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901821,2000039825,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901822,2000039826,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901823,2000039827,8170749,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1901824,2000039828,8170749,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,155 -1901825,2000039829,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901826,2000039830,8170749,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,155 -1901827,2000039831,8170749,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,155 -1901828,2000039832,8170749,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,155 -1901829,2000039833,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901830,2000039834,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901831,2000039835,8170749,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,155 -1901832,2000039836,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901833,2000039837,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901834,2000039838,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901835,2000039839,8170749,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,155 -1901836,2000039840,8181842,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,157 -1901837,2000039841,8170749,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,155 -1901838,2000039842,8180021,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,157 -1901839,2000039843,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901840,2000039844,8170749,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1901841,2000039845,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1901842,2000039846,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901843,2000039847,8170749,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,155 -1901844,2000039848,8181842,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,157 -1901845,2000039849,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901846,2000039850,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1901847,2000039851,8170749,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,155 -1901848,2000039852,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901849,2000039853,8181842,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,157 -1901850,2000039854,8180021,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,157 -1901851,2000039855,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1901852,2000039856,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901853,2000039857,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901854,2000039858,8170749,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,155 -1901855,2000039859,8180021,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,157 -1901856,2000039860,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901857,2000039861,8170749,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1901858,2000039862,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901859,2000039863,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901860,2000039864,8170749,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,155 -1901861,2000039865,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901862,2000039866,8170749,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901863,2000039867,8181842,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,157 -1901864,2000039868,8170749,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,155 -1901865,2000039869,8170749,2,22,-9.0,1,-9.0,3,3200.0,1042852,0.0,155 -1901866,2000039870,8170749,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,155 -1901867,2000039871,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1901868,2000039872,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901869,2000039873,8170749,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,155 -1901870,2000039874,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901871,2000039875,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1901872,2000039876,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901873,2000039877,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1901874,2000039878,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901875,2000039879,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1901876,2000039880,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901877,2000039881,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901878,2000039882,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901879,2000039883,8170749,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,155 -1901880,2000039884,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901881,2000039885,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901882,2000039886,8170749,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,155 -1901883,2000039887,8170749,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1901884,2000039888,8170749,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,155 -1901885,2000039889,8180021,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,157 -1901891,2000039895,8200925,1,65,-9.0,1,-9.0,3,10300.0,1073094,0.0,159 -1901892,2000039896,8180384,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,156 -1901893,2000039897,8186760,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,152 -1901895,2000039899,8201256,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,159 -1901896,2000039900,8195478,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,151 -1901897,2000039901,8180384,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,156 -1901899,2000039903,8180384,1,65,-9.0,1,-9.0,3,10900.0,1009585,0.0,156 -1901900,2000039904,8200925,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,159 -1901901,2000039905,8180384,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,156 -1901904,2000039908,8191238,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,152 -1901905,2000039909,8169314,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,158 -1901907,2000039911,8180384,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,156 -1901908,2000039912,8195478,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,151 -1901910,2000039914,8180384,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,156 -1902195,2000040199,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902196,2000040200,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902197,2000040201,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902198,2000040202,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902199,2000040203,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902200,2000040204,8900511,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902201,2000040205,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902202,2000040206,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902203,2000040207,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1902204,2000040208,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902205,2000040209,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902206,2000040210,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1902207,2000040211,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902208,2000040212,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1902209,2000040213,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902210,2000040214,8900511,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1902211,2000040215,8900511,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902212,2000040216,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902213,2000040217,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1902214,2000040218,8154365,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1902215,2000040219,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1902216,2000040220,8161186,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,160 -1902217,2000040221,8159542,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,160 -1902218,2000040222,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902219,2000040223,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902220,2000040224,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902221,2000040225,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902222,2000040226,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902223,2000040227,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902224,2000040228,8159542,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,160 -1902225,2000040229,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902226,2000040230,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902227,2000040231,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902228,2000040232,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902229,2000040233,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1902230,2000040234,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902231,2000040235,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902232,2000040236,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1902233,2000040237,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902234,2000040238,8900511,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902235,2000040239,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902236,2000040240,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902237,2000040241,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902238,2000040242,8152231,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1902239,2000040243,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902240,2000040244,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1902241,2000040245,8152231,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1902242,2000040246,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902243,2000040247,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902244,2000040248,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1902245,2000040249,8159542,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,160 -1902246,2000040250,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902247,2000040251,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1902248,2000040252,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1902249,2000040253,8133532,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,172 -1902250,2000040254,8132090,3,20,-9.0,1,-9.0,3,0.0,1042852,0.0,172 -1902307,2000040311,8170749,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,155 -1902308,2000040312,8170749,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,155 -1902309,2000040313,8170749,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,155 -1902310,2000040314,8170749,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,155 -1902311,2000040315,8180021,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,157 -1902312,2000040316,8181842,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,157 -1902313,2000040317,8180384,2,63,-9.0,1,-9.0,3,8670.0,1001264,0.0,156 -1902315,2000040319,8200925,2,43,-9.0,1,-9.0,3,56000.0,1073094,0.0,159 -1902316,2000040320,8169314,4,51,-9.0,1,-9.0,3,0.0,1025215,0.0,158 -1902317,2000040321,8180384,2,43,-9.0,1,-9.0,3,14400.0,1001264,0.0,156 -1902318,2000040322,8180384,2,63,-9.0,1,-9.0,3,8670.0,1001264,0.0,156 -1902320,2000040324,8180384,2,52,-9.0,1,-9.0,3,10400.0,1009585,0.0,156 -1902321,2000040325,8180384,2,48,-9.0,1,-9.0,3,0.0,1073094,0.0,156 -1902322,2000040326,8195478,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,151 -1902323,2000040327,8200925,1,59,-9.0,1,-9.0,3,0.0,1001264,0.0,159 -1902327,2000040331,8180478,2,43,-9.0,1,-9.0,3,14400.0,1001264,0.0,157 -1902328,2000040332,8200925,2,43,-9.0,1,-9.0,3,56000.0,1073094,0.0,159 -1902331,2000040335,8180478,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,157 -1902333,2000040337,8180384,2,63,-9.0,1,-9.0,3,8670.0,1001264,0.0,156 -1902334,2000040338,8180384,1,79,-9.0,1,-9.0,3,0.0,1025215,0.0,156 -1902335,2000040339,8197641,2,46,-9.0,1,-9.0,3,11400.0,1042852,0.0,151 -1902336,2000040340,8199368,2,41,-9.0,1,-9.0,3,6500.0,1073094,0.0,151 -1903505,2000041509,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903506,2000041510,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903507,2000041511,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903508,2000041512,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1903509,2000041513,8900511,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903510,2000041514,8152231,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903511,2000041515,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903512,2000041516,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903513,2000041517,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903514,2000041518,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903515,2000041519,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903516,2000041520,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903517,2000041521,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903518,2000041522,8900511,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903519,2000041523,8159542,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1903520,2000041524,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903521,2000041525,8140209,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,170 -1903522,2000041526,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903523,2000041527,8900511,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903524,2000041528,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903525,2000041529,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903526,2000041530,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903527,2000041531,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903528,2000041532,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903529,2000041533,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1903530,2000041534,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903531,2000041535,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903532,2000041536,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903533,2000041537,8900511,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903534,2000041538,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903535,2000041539,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903536,2000041540,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903537,2000041541,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903538,2000041542,8900511,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903539,2000041543,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903540,2000041544,8900511,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903541,2000041545,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903542,2000041546,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1903543,2000041547,8152231,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903544,2000041548,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903545,2000041549,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903546,2000041550,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903547,2000041551,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903548,2000041552,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1903549,2000041553,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1903550,2000041554,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903551,2000041555,8159542,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,160 -1903552,2000041556,8159542,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1903553,2000041557,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903554,2000041558,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903555,2000041559,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903556,2000041560,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1903557,2000041561,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903558,2000041562,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903559,2000041563,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903560,2000041564,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903561,2000041565,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903562,2000041566,8152231,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1903563,2000041567,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903564,2000041568,8159542,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1903565,2000041569,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903566,2000041570,8152231,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1903567,2000041571,8161186,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1903568,2000041572,8159542,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,160 -1903569,2000041573,8900511,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903570,2000041574,8152231,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1903571,2000041575,8152231,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903572,2000041576,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1903573,2000041577,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903574,2000041578,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903575,2000041579,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903576,2000041580,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903577,2000041581,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903578,2000041582,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903579,2000041583,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903580,2000041584,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903581,2000041585,8159542,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1903582,2000041586,8152231,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1903583,2000041587,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903584,2000041588,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903585,2000041589,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903586,2000041590,8900511,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903587,2000041591,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903588,2000041592,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1903589,2000041593,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903590,2000041594,8900511,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1903591,2000041595,8900511,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903592,2000041596,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1903593,2000041597,8159542,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,160 -1903594,2000041598,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903595,2000041599,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903596,2000041600,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903597,2000041601,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903598,2000041602,8900511,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903599,2000041603,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903600,2000041604,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903601,2000041605,8900511,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903602,2000041606,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903603,2000041607,8900511,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903604,2000041608,8152231,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1903605,2000041609,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903606,2000041610,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903607,2000041611,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903608,2000041612,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1903609,2000041613,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903610,2000041614,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1903611,2000041615,8152231,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903612,2000041616,8159542,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,160 -1903613,2000041617,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903614,2000041618,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903615,2000041619,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1903616,2000041620,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1903617,2000041621,8152231,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903618,2000041622,8159542,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,160 -1903619,2000041623,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903620,2000041624,8159542,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,160 -1903621,2000041625,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903622,2000041626,8159542,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,160 -1903623,2000041627,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1903624,2000041628,8159542,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,160 -1903625,2000041629,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903626,2000041630,8900511,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903627,2000041631,8159542,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1903628,2000041632,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903629,2000041633,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903630,2000041634,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1903631,2000041635,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1903632,2000041636,8159542,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1903633,2000041637,8900511,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903634,2000041638,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903635,2000041639,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903636,2000041640,8900511,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903637,2000041641,8152231,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1903638,2000041642,8900511,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1903639,2000041643,8159542,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,160 -1903640,2000041644,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903641,2000041645,8143067,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,174 -1903642,2000041646,8152231,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903643,2000041647,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903644,2000041648,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903645,2000041649,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1903646,2000041650,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903647,2000041651,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903648,2000041652,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903649,2000041653,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1903650,2000041654,8900511,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1903651,2000041655,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903652,2000041656,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903653,2000041657,8159542,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903654,2000041658,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903655,2000041659,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903656,2000041660,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903657,2000041661,8152231,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1903658,2000041662,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903659,2000041663,8152231,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903660,2000041664,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903661,2000041665,8900511,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903662,2000041666,8900511,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903663,2000041667,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903664,2000041668,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903665,2000041669,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903666,2000041670,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903667,2000041671,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903668,2000041672,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903669,2000041673,8159542,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903670,2000041674,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903671,2000041675,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1903672,2000041676,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1903673,2000041677,8159542,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903674,2000041678,8159542,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1903675,2000041679,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903676,2000041680,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903677,2000041681,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903678,2000041682,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903679,2000041683,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903680,2000041684,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1903681,2000041685,8159542,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1903682,2000041686,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903683,2000041687,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1903684,2000041688,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903685,2000041689,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903686,2000041690,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903687,2000041691,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903688,2000041692,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903689,2000041693,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903690,2000041694,8152231,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1903691,2000041695,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903692,2000041696,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1903693,2000041697,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903694,2000041698,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903695,2000041699,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1903696,2000041700,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903697,2000041701,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903698,2000041702,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903699,2000041703,8900511,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1903700,2000041704,8159542,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1903701,2000041705,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1903702,2000041706,8159542,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,160 -1903703,2000041707,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903704,2000041708,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903705,2000041709,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903706,2000041710,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903707,2000041711,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903708,2000041712,8152231,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903709,2000041713,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903710,2000041714,8900511,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1903711,2000041715,8152231,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903712,2000041716,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903713,2000041717,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903714,2000041718,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903715,2000041719,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903716,2000041720,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903717,2000041721,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903718,2000041722,8900511,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903719,2000041723,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903720,2000041724,8152231,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903721,2000041725,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903722,2000041726,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903723,2000041727,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1903724,2000041728,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903725,2000041729,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903726,2000041730,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903727,2000041731,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903728,2000041732,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903729,2000041733,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903730,2000041734,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903731,2000041735,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903732,2000041736,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903733,2000041737,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903734,2000041738,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903735,2000041739,8900511,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1903736,2000041740,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903737,2000041741,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903738,2000041742,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903739,2000041743,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903740,2000041744,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1903741,2000041745,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903742,2000041746,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903743,2000041747,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903744,2000041748,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903745,2000041749,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1903746,2000041750,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903747,2000041751,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903748,2000041752,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903749,2000041753,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903750,2000041754,8143067,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,174 -1903751,2000041755,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903752,2000041756,8152231,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903753,2000041757,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903754,2000041758,8152231,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903755,2000041759,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903756,2000041760,8900511,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903757,2000041761,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903758,2000041762,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903759,2000041763,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903760,2000041764,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1903761,2000041765,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903762,2000041766,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903763,2000041767,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903764,2000041768,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903765,2000041769,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903766,2000041770,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903767,2000041771,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903768,2000041772,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903769,2000041773,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903770,2000041774,8152231,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1903771,2000041775,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903772,2000041776,8900511,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903773,2000041777,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1903774,2000041778,8152231,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1903775,2000041779,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903776,2000041780,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903777,2000041781,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903778,2000041782,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903779,2000041783,8152231,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1903780,2000041784,8159542,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1903781,2000041785,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903782,2000041786,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903783,2000041787,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903784,2000041788,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903785,2000041789,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903786,2000041790,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903787,2000041791,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903788,2000041792,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903789,2000041793,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903790,2000041794,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903791,2000041795,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903792,2000041796,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903793,2000041797,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903794,2000041798,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903795,2000041799,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903796,2000041800,8152231,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903797,2000041801,8161186,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903798,2000041802,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903799,2000041803,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1903800,2000041804,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1903801,2000041805,8159542,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,160 -1903802,2000041806,8900511,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1903803,2000041807,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903804,2000041808,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903805,2000041809,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903806,2000041810,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903807,2000041811,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903808,2000041812,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1903809,2000041813,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903810,2000041814,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903811,2000041815,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903812,2000041816,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903813,2000041817,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903814,2000041818,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903815,2000041819,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903816,2000041820,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903817,2000041821,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903818,2000041822,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903819,2000041823,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903820,2000041824,8159542,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1903821,2000041825,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903822,2000041826,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903823,2000041827,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903824,2000041828,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903825,2000041829,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903826,2000041830,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903827,2000041831,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1903828,2000041832,8900511,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903829,2000041833,8900511,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903830,2000041834,8900511,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1903831,2000041835,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903832,2000041836,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903833,2000041837,8152231,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1903834,2000041838,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903835,2000041839,8152231,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1903836,2000041840,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903837,2000041841,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903838,2000041842,8159542,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,160 -1903839,2000041843,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903840,2000041844,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1903841,2000041845,8152231,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1903842,2000041846,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1903843,2000041847,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903844,2000041848,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903845,2000041849,8159542,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903846,2000041850,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903847,2000041851,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903848,2000041852,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903849,2000041853,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903850,2000041854,8159542,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,160 -1903851,2000041855,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903852,2000041856,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903853,2000041857,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903854,2000041858,8159542,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,160 -1903855,2000041859,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903856,2000041860,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903857,2000041861,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903858,2000041862,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903859,2000041863,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903860,2000041864,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903861,2000041865,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903862,2000041866,8152231,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903863,2000041867,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903864,2000041868,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903865,2000041869,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903866,2000041870,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1903867,2000041871,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903868,2000041872,8159542,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,160 -1903869,2000041873,8152231,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1903870,2000041874,8900511,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903871,2000041875,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903872,2000041876,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903873,2000041877,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903874,2000041878,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903875,2000041879,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903876,2000041880,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903877,2000041881,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903878,2000041882,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903879,2000041883,8152231,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1903880,2000041884,8161186,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1903881,2000041885,8159542,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1903882,2000041886,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903883,2000041887,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1903884,2000041888,8143067,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,174 -1903885,2000041889,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903886,2000041890,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903887,2000041891,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903888,2000041892,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903889,2000041893,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903890,2000041894,8159542,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,160 -1903891,2000041895,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903892,2000041896,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903893,2000041897,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1903894,2000041898,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903895,2000041899,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903896,2000041900,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903897,2000041901,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903898,2000041902,8159542,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903899,2000041903,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903900,2000041904,8159542,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,160 -1903901,2000041905,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903902,2000041906,8152231,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1903903,2000041907,8143067,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,174 -1903904,2000041908,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903905,2000041909,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903906,2000041910,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903907,2000041911,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903908,2000041912,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903909,2000041913,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903910,2000041914,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903911,2000041915,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903912,2000041916,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903913,2000041917,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903914,2000041918,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903915,2000041919,8900511,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1903916,2000041920,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903917,2000041921,8159542,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1903918,2000041922,8152231,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1903919,2000041923,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903920,2000041924,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903921,2000041925,8152231,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1903922,2000041926,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903923,2000041927,8152231,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903924,2000041928,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903925,2000041929,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1903926,2000041930,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903927,2000041931,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903928,2000041932,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903929,2000041933,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903930,2000041934,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903931,2000041935,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903932,2000041936,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903933,2000041937,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903934,2000041938,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903935,2000041939,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903936,2000041940,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903937,2000041941,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903938,2000041942,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903939,2000041943,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1903940,2000041944,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903941,2000041945,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1903942,2000041946,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903943,2000041947,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903944,2000041948,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903945,2000041949,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903946,2000041950,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903947,2000041951,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1903948,2000041952,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903949,2000041953,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903950,2000041954,8159542,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,160 -1903951,2000041955,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1903952,2000041956,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903953,2000041957,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903954,2000041958,8159542,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,160 -1903955,2000041959,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903956,2000041960,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903957,2000041961,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903958,2000041962,8900511,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903959,2000041963,8152231,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1903960,2000041964,8152231,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903961,2000041965,8159542,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,160 -1903962,2000041966,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903963,2000041967,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903964,2000041968,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903965,2000041969,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903966,2000041970,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903967,2000041971,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903968,2000041972,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1903969,2000041973,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1903970,2000041974,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1903971,2000041975,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903972,2000041976,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1903973,2000041977,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903974,2000041978,8154365,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1903975,2000041979,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903976,2000041980,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903977,2000041981,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1903978,2000041982,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903979,2000041983,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903980,2000041984,8143067,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,174 -1903981,2000041985,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903982,2000041986,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1903983,2000041987,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903984,2000041988,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1903985,2000041989,8900511,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1903986,2000041990,8140209,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,170 -1903987,2000041991,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903988,2000041992,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903989,2000041993,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1903990,2000041994,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1903991,2000041995,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903992,2000041996,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1903993,2000041997,8152231,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1903994,2000041998,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1903995,2000041999,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1903996,2000042000,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1903997,2000042001,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1903998,2000042002,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1903999,2000042003,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904000,2000042004,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904001,2000042005,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904002,2000042006,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1904003,2000042007,8159542,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,160 -1904004,2000042008,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904005,2000042009,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904006,2000042010,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904007,2000042011,8152231,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904008,2000042012,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904009,2000042013,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904010,2000042014,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904011,2000042015,8159542,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1904012,2000042016,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904013,2000042017,8900511,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904014,2000042018,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904015,2000042019,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1904016,2000042020,8152231,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1904017,2000042021,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904018,2000042022,8159542,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,160 -1904019,2000042023,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904020,2000042024,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904021,2000042025,8143067,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,174 -1904022,2000042026,8159542,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1904023,2000042027,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904024,2000042028,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904025,2000042029,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904026,2000042030,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904027,2000042031,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904028,2000042032,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904029,2000042033,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904030,2000042034,8159542,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,160 -1904031,2000042035,8159542,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1904032,2000042036,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904033,2000042037,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904034,2000042038,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904035,2000042039,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904036,2000042040,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1904037,2000042041,8900511,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904038,2000042042,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904039,2000042043,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904040,2000042044,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904041,2000042045,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904042,2000042046,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904043,2000042047,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904044,2000042048,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904045,2000042049,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904046,2000042050,8159542,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,160 -1904047,2000042051,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904048,2000042052,8159542,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1904049,2000042053,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904050,2000042054,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904051,2000042055,8900511,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1904052,2000042056,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904053,2000042057,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1904054,2000042058,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904055,2000042059,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904056,2000042060,8152231,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904057,2000042061,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904058,2000042062,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904059,2000042063,8159542,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904060,2000042064,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904061,2000042065,8900511,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1904062,2000042066,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904063,2000042067,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1904064,2000042068,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1904065,2000042069,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904066,2000042070,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904067,2000042071,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904068,2000042072,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904069,2000042073,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904070,2000042074,8152231,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904071,2000042075,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904072,2000042076,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1904073,2000042077,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904074,2000042078,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904075,2000042079,8152231,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904076,2000042080,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1904077,2000042081,8900511,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1904078,2000042082,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904079,2000042083,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904080,2000042084,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904081,2000042085,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904082,2000042086,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904083,2000042087,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1904084,2000042088,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1904085,2000042089,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904086,2000042090,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904087,2000042091,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904088,2000042092,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904089,2000042093,8900511,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904090,2000042094,8900511,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1904091,2000042095,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1904092,2000042096,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904093,2000042097,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904094,2000042098,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904095,2000042099,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904096,2000042100,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904097,2000042101,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1904098,2000042102,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904099,2000042103,8159542,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1904100,2000042104,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904101,2000042105,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904102,2000042106,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1904103,2000042107,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904104,2000042108,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904105,2000042109,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904106,2000042110,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904107,2000042111,8900511,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904108,2000042112,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904109,2000042113,8154365,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904110,2000042114,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904111,2000042115,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904112,2000042116,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904113,2000042117,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904114,2000042118,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904115,2000042119,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904116,2000042120,8152231,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1904117,2000042121,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904118,2000042122,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904119,2000042123,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1904120,2000042124,8159542,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1904121,2000042125,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904122,2000042126,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904123,2000042127,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904124,2000042128,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904125,2000042129,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904126,2000042130,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904127,2000042131,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904128,2000042132,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904129,2000042133,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904130,2000042134,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904131,2000042135,8159542,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,160 -1904132,2000042136,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904133,2000042137,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904134,2000042138,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904135,2000042139,8159542,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1904136,2000042140,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904137,2000042141,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904138,2000042142,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1904139,2000042143,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1904140,2000042144,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904141,2000042145,8900511,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904142,2000042146,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904143,2000042147,8900511,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904144,2000042148,8140209,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,170 -1904145,2000042149,8900511,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1904146,2000042150,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904147,2000042151,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904148,2000042152,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904149,2000042153,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904150,2000042154,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904151,2000042155,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904152,2000042156,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904153,2000042157,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904154,2000042158,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904155,2000042159,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904156,2000042160,8900511,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904157,2000042161,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904158,2000042162,8159542,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1904159,2000042163,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904160,2000042164,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904161,2000042165,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904162,2000042166,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904163,2000042167,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904164,2000042168,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904165,2000042169,8900511,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1904166,2000042170,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904167,2000042171,8159542,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1904168,2000042172,8161186,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1904169,2000042173,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904170,2000042174,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904171,2000042175,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904172,2000042176,8900511,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904173,2000042177,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904174,2000042178,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904175,2000042179,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904176,2000042180,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904177,2000042181,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904178,2000042182,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904179,2000042183,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904180,2000042184,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904181,2000042185,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904182,2000042186,8152231,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904183,2000042187,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904184,2000042188,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904185,2000042189,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904186,2000042190,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1904187,2000042191,8143067,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,174 -1904188,2000042192,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904189,2000042193,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904190,2000042194,8159542,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1904191,2000042195,8159542,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1904192,2000042196,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904193,2000042197,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904194,2000042198,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904195,2000042199,8900511,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1904196,2000042200,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904197,2000042201,8900511,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1904198,2000042202,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904199,2000042203,8900511,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1904200,2000042204,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904201,2000042205,8152231,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904202,2000042206,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904203,2000042207,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904204,2000042208,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904205,2000042209,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904206,2000042210,8900511,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904207,2000042211,8900511,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904208,2000042212,8900511,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1904209,2000042213,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1904210,2000042214,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904211,2000042215,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904212,2000042216,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904213,2000042217,8159542,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1904214,2000042218,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904215,2000042219,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904216,2000042220,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904217,2000042221,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904218,2000042222,8159542,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904219,2000042223,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904220,2000042224,8159542,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,160 -1904221,2000042225,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904222,2000042226,8159542,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1904223,2000042227,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904224,2000042228,8159542,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,160 -1904225,2000042229,8900511,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1904226,2000042230,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904227,2000042231,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904228,2000042232,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904229,2000042233,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1904230,2000042234,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1904231,2000042235,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1904232,2000042236,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1904233,2000042237,8140209,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,170 -1904234,2000042238,8900511,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1904235,2000042239,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1904236,2000042240,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904237,2000042241,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904238,2000042242,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904239,2000042243,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904240,2000042244,8900511,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1904241,2000042245,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904242,2000042246,8159542,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,160 -1904243,2000042247,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904244,2000042248,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904245,2000042249,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904246,2000042250,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904247,2000042251,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904248,2000042252,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904249,2000042253,8154365,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904250,2000042254,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1904251,2000042255,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904252,2000042256,8900511,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1904253,2000042257,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904254,2000042258,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904255,2000042259,8152231,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1904256,2000042260,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904257,2000042261,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1904258,2000042262,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904259,2000042263,8159542,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1904260,2000042264,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904261,2000042265,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904262,2000042266,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904263,2000042267,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904264,2000042268,8900511,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904265,2000042269,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904266,2000042270,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904267,2000042271,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904268,2000042272,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904269,2000042273,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904270,2000042274,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904271,2000042275,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904272,2000042276,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904273,2000042277,8152231,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904274,2000042278,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904275,2000042279,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904276,2000042280,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904277,2000042281,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904278,2000042282,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904279,2000042283,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1904280,2000042284,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904281,2000042285,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904282,2000042286,8159542,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904283,2000042287,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904284,2000042288,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904285,2000042289,8159542,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,160 -1904286,2000042290,8152231,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1904287,2000042291,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904288,2000042292,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904289,2000042293,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904290,2000042294,8159542,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1904291,2000042295,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1904292,2000042296,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904293,2000042297,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904294,2000042298,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904295,2000042299,8900511,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904296,2000042300,8154365,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904297,2000042301,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904298,2000042302,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904299,2000042303,8900511,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904300,2000042304,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1904301,2000042305,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904302,2000042306,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904303,2000042307,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1904304,2000042308,8154365,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,175 -1904305,2000042309,8161186,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1904306,2000042310,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1904307,2000042311,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904308,2000042312,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904309,2000042313,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904310,2000042314,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904311,2000042315,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904312,2000042316,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904313,2000042317,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904314,2000042318,8900511,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1904315,2000042319,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904316,2000042320,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904317,2000042321,8159542,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,160 -1904318,2000042322,8159542,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,160 -1904319,2000042323,8900511,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904320,2000042324,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904321,2000042325,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904322,2000042326,8900511,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1904323,2000042327,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904324,2000042328,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904325,2000042329,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904326,2000042330,8159542,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,160 -1904327,2000042331,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904328,2000042332,8900511,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1904329,2000042333,8152231,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904330,2000042334,8159542,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,160 -1904331,2000042335,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904332,2000042336,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904333,2000042337,8159542,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904334,2000042338,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904335,2000042339,8159542,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,160 -1904336,2000042340,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904337,2000042341,8154365,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1904338,2000042342,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904339,2000042343,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904340,2000042344,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904341,2000042345,8159542,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1904342,2000042346,8152231,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1904343,2000042347,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1904344,2000042348,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904345,2000042349,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904346,2000042350,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904347,2000042351,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904348,2000042352,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904349,2000042353,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904350,2000042354,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904351,2000042355,8159542,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,160 -1904352,2000042356,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904353,2000042357,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904354,2000042358,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904355,2000042359,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904356,2000042360,8161186,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1904357,2000042361,8900511,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904358,2000042362,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904359,2000042363,8152231,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904360,2000042364,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904361,2000042365,8159542,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1904362,2000042366,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904363,2000042367,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904364,2000042368,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1904365,2000042369,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904366,2000042370,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1904367,2000042371,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904368,2000042372,8900511,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1904369,2000042373,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904370,2000042374,8152231,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1904371,2000042375,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904372,2000042376,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904373,2000042377,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904374,2000042378,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904375,2000042379,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904376,2000042380,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904377,2000042381,8900511,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1904378,2000042382,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904379,2000042383,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904380,2000042384,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904381,2000042385,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904382,2000042386,8900511,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1904383,2000042387,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904384,2000042388,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904385,2000042389,8154365,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1904386,2000042390,8159542,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1904387,2000042391,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904388,2000042392,8900511,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904389,2000042393,8900511,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904390,2000042394,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904391,2000042395,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904392,2000042396,8152231,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1904393,2000042397,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1904394,2000042398,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904395,2000042399,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904396,2000042400,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904397,2000042401,8900511,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1904398,2000042402,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904399,2000042403,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904400,2000042404,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904401,2000042405,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904402,2000042406,8900511,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904403,2000042407,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904404,2000042408,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904405,2000042409,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904406,2000042410,8154365,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904407,2000042411,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904408,2000042412,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1904409,2000042413,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1904410,2000042414,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904411,2000042415,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904412,2000042416,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1904413,2000042417,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904414,2000042418,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904415,2000042419,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904416,2000042420,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904417,2000042421,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904418,2000042422,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904419,2000042423,8159542,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,160 -1904420,2000042424,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904421,2000042425,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904422,2000042426,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904423,2000042427,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904424,2000042428,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904425,2000042429,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904426,2000042430,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904427,2000042431,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904428,2000042432,8161186,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,160 -1904429,2000042433,8143067,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,174 -1904430,2000042434,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904431,2000042435,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904432,2000042436,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904433,2000042437,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904434,2000042438,8159542,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,160 -1904435,2000042439,8152231,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1904436,2000042440,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904437,2000042441,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904438,2000042442,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1904439,2000042443,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904440,2000042444,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904441,2000042445,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904442,2000042446,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904443,2000042447,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904444,2000042448,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904445,2000042449,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904446,2000042450,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904447,2000042451,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904448,2000042452,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904449,2000042453,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904450,2000042454,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904451,2000042455,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904452,2000042456,8152231,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1904453,2000042457,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904454,2000042458,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904455,2000042459,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904456,2000042460,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904457,2000042461,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904458,2000042462,8900511,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1904459,2000042463,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904460,2000042464,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904461,2000042465,8152231,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904462,2000042466,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904463,2000042467,8900511,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904464,2000042468,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904465,2000042469,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904466,2000042470,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904467,2000042471,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904468,2000042472,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904469,2000042473,8900511,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1904470,2000042474,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904471,2000042475,8152231,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904472,2000042476,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904473,2000042477,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904474,2000042478,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904475,2000042479,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904476,2000042480,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904477,2000042481,8159542,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,160 -1904478,2000042482,8159542,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904479,2000042483,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904480,2000042484,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904481,2000042485,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904482,2000042486,8900511,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904483,2000042487,8154365,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904484,2000042488,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904485,2000042489,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904486,2000042490,8159542,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,160 -1904487,2000042491,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904488,2000042492,8154365,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904489,2000042493,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1904490,2000042494,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904491,2000042495,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904492,2000042496,8152231,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904493,2000042497,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904494,2000042498,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904495,2000042499,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1904496,2000042500,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904497,2000042501,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904498,2000042502,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904499,2000042503,8152231,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904500,2000042504,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904501,2000042505,8900511,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1904502,2000042506,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904503,2000042507,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904504,2000042508,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904505,2000042509,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904506,2000042510,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904507,2000042511,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904508,2000042512,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904509,2000042513,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1904510,2000042514,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1904511,2000042515,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904512,2000042516,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904513,2000042517,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904514,2000042518,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904515,2000042519,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904516,2000042520,8159542,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1904517,2000042521,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1904518,2000042522,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904519,2000042523,8900511,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904520,2000042524,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1904521,2000042525,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904522,2000042526,8159542,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,160 -1904523,2000042527,8900511,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904524,2000042528,8152231,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904525,2000042529,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904526,2000042530,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904527,2000042531,8152231,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904528,2000042532,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904529,2000042533,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904530,2000042534,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904531,2000042535,8900511,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904532,2000042536,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904533,2000042537,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904534,2000042538,8140209,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,170 -1904535,2000042539,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904536,2000042540,8152231,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904537,2000042541,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904538,2000042542,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1904539,2000042543,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904540,2000042544,8900511,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904541,2000042545,8900511,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904542,2000042546,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904543,2000042547,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904544,2000042548,8900511,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904545,2000042549,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904546,2000042550,8159542,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904547,2000042551,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904548,2000042552,8154365,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,175 -1904549,2000042553,8159542,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,160 -1904550,2000042554,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904551,2000042555,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904552,2000042556,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904553,2000042557,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904554,2000042558,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904555,2000042559,8154365,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1904556,2000042560,8154365,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1904557,2000042561,8152231,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904558,2000042562,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904559,2000042563,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904560,2000042564,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904561,2000042565,8159542,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1904562,2000042566,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904563,2000042567,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904564,2000042568,8154365,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904565,2000042569,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904566,2000042570,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1904567,2000042571,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1904568,2000042572,8152231,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904569,2000042573,8152231,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904570,2000042574,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1904571,2000042575,8154365,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904572,2000042576,8900511,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1904573,2000042577,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904574,2000042578,8900511,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1904575,2000042579,8900511,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1904576,2000042580,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904577,2000042581,8159542,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1904578,2000042582,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1904579,2000042583,8152231,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904580,2000042584,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904581,2000042585,8154365,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,175 -1904582,2000042586,8154365,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1904583,2000042587,8900511,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904584,2000042588,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1904585,2000042589,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904586,2000042590,8159542,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1904587,2000042591,8159542,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,160 -1904588,2000042592,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904589,2000042593,8154365,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1904590,2000042594,8154365,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,175 -1904591,2000042595,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904592,2000042596,8152231,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1904593,2000042597,8154365,1,4,-9.0,1,-9.0,3,-9.0,1001264,0.0,175 -1904594,2000042598,8159542,1,4,-9.0,1,-9.0,3,-9.0,1001264,0.0,160 -1904595,2000042599,8900511,1,4,-9.0,1,-9.0,3,-9.0,1001264,0.0,175 -1904596,2000042600,8154365,1,4,-9.0,1,-9.0,3,-9.0,1001264,0.0,175 -1904597,2000042601,8900511,1,4,-9.0,1,-9.0,3,-9.0,1001264,0.0,175 -1904598,2000042602,8154365,1,4,-9.0,1,-9.0,3,-9.0,1001264,0.0,175 -1904599,2000042603,8154365,1,4,-9.0,1,-9.0,3,-9.0,1001264,0.0,175 -1904600,2000042604,8900511,1,4,-9.0,1,-9.0,3,-9.0,1001264,0.0,175 -1904601,2000042605,8154365,1,4,-9.0,1,-9.0,3,-9.0,1001264,0.0,175 -1904602,2000042606,8134567,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,170 -1904603,2000042607,8140311,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,173 -1904604,2000042608,8132090,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,172 -1904605,2000042609,8132090,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,172 -1904606,2000042610,8140311,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,173 -1904607,2000042611,8132090,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,172 -1904608,2000042612,8132090,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,172 -1904609,2000042613,8133979,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,172 -1904610,2000042614,8134140,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,172 -1904611,2000042615,8132090,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,172 -1904612,2000042616,8132090,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,172 -1904613,2000042617,8134140,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,172 -1904614,2000042618,8140311,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,173 -1904615,2000042619,8132090,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,172 -1904616,2000042620,8134140,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,172 -1904617,2000042621,8140311,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,173 -1904618,2000042622,8133979,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,172 -1904619,2000042623,8132090,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,172 -1904620,2000042624,8132090,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,172 -1904621,2000042625,8132090,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,172 -1904622,2000042626,8132090,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,172 -1904623,2000042627,8132090,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,172 -1904624,2000042628,8132090,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,172 -1904625,2000042629,8133532,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,172 -1904626,2000042630,8134567,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,170 -1904627,2000042631,8134140,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,172 -1904628,2000042632,8132090,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,172 -1904629,2000042633,8133532,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,172 -1904630,2000042634,8133979,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,172 -1904631,2000042635,8133979,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,172 -1904632,2000042636,8140311,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,173 -1904633,2000042637,8134567,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,170 -1904634,2000042638,8134567,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,170 -1904635,2000042639,8140311,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,173 -1904636,2000042640,8134567,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,170 -1904637,2000042641,8133532,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,172 -1904638,2000042642,8134567,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,170 -1904639,2000042643,8134567,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,170 -1904640,2000042644,8140311,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,173 -1904641,2000042645,8140311,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,173 -1904642,2000042646,8134567,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,170 -1904954,2000042958,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1904955,2000042959,8170749,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1904956,2000042960,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1904957,2000042961,8170749,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,155 -1904958,2000042962,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1904959,2000042963,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1904960,2000042964,8170749,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,155 -1904961,2000042965,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1904962,2000042966,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1904963,2000042967,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1904964,2000042968,8170749,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1904965,2000042969,8170749,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1904966,2000042970,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1904967,2000042971,8170749,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,155 -1904968,2000042972,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1904969,2000042973,8170749,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1904970,2000042974,8180021,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,157 -1904971,2000042975,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1904972,2000042976,8170749,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,155 -1904973,2000042977,8181842,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,157 -1904974,2000042978,8170749,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1904975,2000042979,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1904976,2000042980,8170749,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,155 -1904977,2000042981,8170749,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1904978,2000042982,8170749,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,155 -1904979,2000042983,8170749,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,155 -1904980,2000042984,8170749,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1904981,2000042985,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1904982,2000042986,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1904983,2000042987,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1904984,2000042988,8170749,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,155 -1904985,2000042989,8170749,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,155 -1904986,2000042990,8170749,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,155 -1904987,2000042991,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1904988,2000042992,8181842,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,157 -1904989,2000042993,8170749,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,155 -1904990,2000042994,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1904991,2000042995,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1904992,2000042996,8170749,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,155 -1904993,2000042997,8170749,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,155 -1904994,2000042998,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1904995,2000042999,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1904996,2000043000,8170749,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,155 -1904997,2000043001,8170749,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,155 -1904998,2000043002,8170749,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1904999,2000043003,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905000,2000043004,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1905001,2000043005,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1905002,2000043006,8170749,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905003,2000043007,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1905004,2000043008,8170749,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,155 -1905005,2000043009,8170749,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905006,2000043010,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905007,2000043011,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905008,2000043012,8170749,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,155 -1905009,2000043013,8181842,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,157 -1905010,2000043014,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905011,2000043015,8170749,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905012,2000043016,8170749,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,155 -1905013,2000043017,8170749,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,155 -1905014,2000043018,8170749,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905015,2000043019,8170749,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,155 -1905016,2000043020,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905017,2000043021,8170749,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,155 -1905018,2000043022,8170749,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,155 -1905019,2000043023,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1905020,2000043024,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905021,2000043025,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905022,2000043026,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1905023,2000043027,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905024,2000043028,8170749,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,155 -1905025,2000043029,8170749,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,155 -1905026,2000043030,8170749,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,155 -1905027,2000043031,8170749,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,155 -1905028,2000043032,8170749,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,155 -1905029,2000043033,8170749,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905030,2000043034,8180021,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,157 -1905031,2000043035,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905032,2000043036,8170749,2,20,-9.0,1,-9.0,3,0.0,1042852,0.0,155 -1905033,2000043037,8170749,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905034,2000043038,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905035,2000043039,8170749,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,155 -1905036,2000043040,8170749,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1905037,2000043041,8170749,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,155 -1905038,2000043042,8170749,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,155 -1905039,2000043043,8170749,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1905040,2000043044,8170749,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,155 -1905041,2000043045,8170749,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,155 -1905042,2000043046,8181842,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,157 -1905043,2000043047,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905044,2000043048,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905045,2000043049,8170749,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,155 -1905046,2000043050,8170749,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905047,2000043051,8170749,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905048,2000043052,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905049,2000043053,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1905050,2000043054,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1905051,2000043055,8170749,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,155 -1905052,2000043056,8170749,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1905053,2000043057,8170749,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,155 -1905054,2000043058,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905055,2000043059,8170749,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,155 -1905056,2000043060,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905057,2000043061,8170749,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,155 -1905058,2000043062,8170749,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905059,2000043063,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905060,2000043064,8170749,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,155 -1905061,2000043065,8170749,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,155 -1905062,2000043066,8170749,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,155 -1905063,2000043067,8180021,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,157 -1905064,2000043068,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905065,2000043069,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905066,2000043070,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905067,2000043071,8180021,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,157 -1905068,2000043072,8170749,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1905069,2000043073,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905070,2000043074,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905071,2000043075,8170749,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,155 -1905072,2000043076,8170749,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,155 -1905073,2000043077,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905074,2000043078,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905075,2000043079,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905076,2000043080,8170749,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,155 -1905077,2000043081,8170749,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905078,2000043082,8170749,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,155 -1905079,2000043083,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905080,2000043084,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905081,2000043085,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905082,2000043086,8170749,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905083,2000043087,8170749,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1905084,2000043088,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905085,2000043089,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905086,2000043090,8181842,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,157 -1905087,2000043091,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905088,2000043092,8170749,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905089,2000043093,8170749,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905090,2000043094,8170749,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905091,2000043095,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905092,2000043096,8170749,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1905093,2000043097,8170749,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,155 -1905094,2000043098,8170749,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905095,2000043099,8180021,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,157 -1905096,2000043100,8170749,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1905097,2000043101,8181842,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,157 -1905098,2000043102,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905099,2000043103,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905100,2000043104,8170749,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1905101,2000043105,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905102,2000043106,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905103,2000043107,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905104,2000043108,8170749,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,155 -1905105,2000043109,8170749,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,155 -1905106,2000043110,8170749,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,155 -1905107,2000043111,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905108,2000043112,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905109,2000043113,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1905110,2000043114,8170749,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,155 -1905111,2000043115,8170749,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,155 -1905112,2000043116,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905113,2000043117,8170749,2,24,-9.0,1,-9.0,3,13200.0,1001264,0.0,155 -1905114,2000043118,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905115,2000043119,8170749,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,155 -1905116,2000043120,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905117,2000043121,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905118,2000043122,8170749,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,155 -1905119,2000043123,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905120,2000043124,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905121,2000043125,8170749,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,155 -1905122,2000043126,8170749,2,20,-9.0,1,-9.0,3,10000.0,1001264,0.0,155 -1905123,2000043127,8180021,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,157 -1905124,2000043128,8170749,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,155 -1905125,2000043129,8170749,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1905126,2000043130,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905127,2000043131,8170749,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1905128,2000043132,8170749,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1905129,2000043133,8180021,2,19,-9.0,1,-9.0,3,0.0,1009585,0.0,157 -1905130,2000043134,8170749,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,155 -1905132,2000043136,8184385,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,152 -1905133,2000043137,8201256,2,63,-9.0,1,-9.0,3,8670.0,1001264,0.0,159 -1905138,2000043142,8199368,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,151 -1905139,2000043143,8180384,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,156 -1905145,2000043149,8180384,2,56,-9.0,1,-9.0,3,3500.0,1001264,0.0,156 -1905146,2000043150,8197641,2,56,-9.0,1,-9.0,3,0.0,1073094,0.0,151 -1905149,2000043153,8180384,2,60,-9.0,1,-9.0,3,44600.0,1042852,0.0,156 -1905150,2000043154,8180478,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,157 -1905152,2000043156,8197641,2,60,-9.0,1,-9.0,3,44600.0,1042852,0.0,151 -1905153,2000043157,8180384,2,56,-9.0,1,-9.0,3,8600.0,1073094,0.0,156 -1905157,2000043161,8180384,2,56,-9.0,1,-9.0,3,0.0,1073094,0.0,156 -1905158,2000043162,8199368,4,57,-9.0,1,-9.0,3,9000.0,1001264,0.0,151 -1905160,2000043164,8169314,4,57,-9.0,1,-9.0,3,9000.0,1001264,0.0,158 -1905161,2000043165,8191238,2,56,-9.0,1,-9.0,3,0.0,1042852,0.0,152 -1905164,2000043168,8180384,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,156 -1905166,2000043170,8180478,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,157 -1905167,2000043171,8180478,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,157 -1905169,2000043173,8184385,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,152 -1905170,2000043174,8180384,2,63,-9.0,1,-9.0,3,8670.0,1001264,0.0,156 -1905171,2000043175,8186760,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,152 -1905172,2000043176,8184385,1,65,-9.0,1,-9.0,3,10300.0,1073094,0.0,152 -1905173,2000043177,8199368,2,20,-9.0,1,-9.0,3,3000.0,1025215,0.0,151 -1905174,2000043178,8169314,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,158 -1905179,2000043183,8180478,1,78,-9.0,1,-9.0,3,12600.0,1001264,0.0,157 -1905180,2000043184,8191238,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,152 -1905181,2000043185,8180384,2,60,-9.0,1,-9.0,3,44600.0,1042852,0.0,156 -1905182,2000043186,8191238,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,152 -1905183,2000043187,8200925,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,159 -1905184,2000043188,8184385,4,57,-9.0,1,-9.0,3,9000.0,1001264,0.0,152 -1905185,2000043189,8180478,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,157 -1905187,2000043191,8180478,2,34,-9.0,1,-9.0,3,0.0,1025215,0.0,157 -1905188,2000043192,8186760,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,152 -1905189,2000043193,8180384,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,156 -1905190,2000043194,8180384,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,156 -1905191,2000043195,8180384,1,78,-9.0,1,-9.0,3,12600.0,1001264,0.0,156 -1905192,2000043196,8195478,2,58,-9.0,1,-9.0,3,7000.0,1001264,0.0,151 -1905193,2000043197,8180384,2,19,-9.0,1,-9.0,3,0.0,1073094,0.0,156 -1905196,2000043200,8191238,1,78,-9.0,1,-9.0,3,12600.0,1001264,0.0,152 -1905197,2000043201,8191238,2,60,-9.0,1,-9.0,3,0.0,1001264,0.0,152 -1905199,2000043203,8186760,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,152 -1905200,2000043204,8180478,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,157 -1905202,2000043206,8191238,2,56,-9.0,1,-9.0,3,15200.0,1042852,0.0,152 -1905203,2000043207,8169314,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,158 -1905205,2000043209,8200925,1,56,-9.0,1,-9.0,3,0.0,1001264,0.0,159 -1905206,2000043210,8180384,2,52,-9.0,1,-9.0,3,10400.0,1009585,0.0,156 -1905207,2000043211,8180384,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,156 -1905208,2000043212,8180384,1,78,-9.0,1,-9.0,3,12600.0,1001264,0.0,156 -1905210,2000043214,8191238,2,19,-9.0,1,-9.0,3,0.0,1001264,0.0,152 -1905212,2000043216,8197641,4,57,-9.0,1,-9.0,3,9000.0,1001264,0.0,151 -1905214,2000043218,8180478,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,157 -1905215,2000043219,8180384,2,19,-9.0,1,-9.0,3,5400.0,1042852,0.0,156 -1905216,2000043220,8180478,2,41,-9.0,1,-9.0,3,6500.0,1073094,0.0,157 -1905217,2000043221,8180478,2,38,-9.0,1,-9.0,3,0.0,1042852,0.0,157 -1905219,2000043223,8180478,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,157 -1905220,2000043224,8180384,2,24,-9.0,1,-9.0,3,370.0,1009585,0.0,156 -1905222,2000043226,8200925,2,19,-9.0,1,-9.0,3,0.0,1025215,0.0,159 -1905224,2000043228,8180384,2,60,-9.0,1,-9.0,3,0.0,1001264,0.0,156 -1905985,2000043989,8159542,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1905986,2000043990,8152231,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1905987,2000043991,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1905988,2000043992,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1905989,2000043993,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1905990,2000043994,8900511,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1905991,2000043995,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1905992,2000043996,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1905993,2000043997,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1905994,2000043998,8159542,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1905995,2000043999,8152231,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,175 -1905996,2000044000,8900511,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1905997,2000044001,8161186,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,160 -1905998,2000044002,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1905999,2000044003,8154365,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1906000,2000044004,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906001,2000044005,8154365,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1906002,2000044006,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906003,2000044007,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1906004,2000044008,8159542,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,160 -1906005,2000044009,8159542,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906006,2000044010,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906007,2000044011,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906008,2000044012,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906009,2000044013,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906010,2000044014,8159542,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1906011,2000044015,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906012,2000044016,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1906013,2000044017,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906014,2000044018,8159542,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906015,2000044019,8154365,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,175 -1906016,2000044020,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906017,2000044021,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906018,2000044022,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1906019,2000044023,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906020,2000044024,8152231,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1906021,2000044025,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906022,2000044026,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906023,2000044027,8154365,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,175 -1906024,2000044028,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906025,2000044029,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906026,2000044030,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906027,2000044031,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906028,2000044032,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1906029,2000044033,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1906030,2000044034,8159542,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906031,2000044035,8159542,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1906032,2000044036,8900511,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906033,2000044037,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906034,2000044038,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906035,2000044039,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906036,2000044040,8152231,2,25,-9.0,1,-9.0,3,8000.0,1025215,0.0,175 -1906037,2000044041,8154365,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1906038,2000044042,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906039,2000044043,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906040,2000044044,8900511,2,22,-9.0,1,-9.0,3,22000.0,1042852,0.0,175 -1906041,2000044045,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906042,2000044046,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906043,2000044047,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906044,2000044048,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906045,2000044049,8152231,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1906046,2000044050,8152231,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1906047,2000044051,8152231,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1906048,2000044052,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906049,2000044053,8152231,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906050,2000044054,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906051,2000044055,8154365,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1906052,2000044056,8900511,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1906053,2000044057,8152231,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1906054,2000044058,8159542,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,160 -1906055,2000044059,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906056,2000044060,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906057,2000044061,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906058,2000044062,8152231,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906059,2000044063,8159542,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906060,2000044064,8159542,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1906061,2000044065,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906062,2000044066,8154365,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1906063,2000044067,8159542,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,160 -1906064,2000044068,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906065,2000044069,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906066,2000044070,8152231,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1906067,2000044071,8154365,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1906068,2000044072,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1906069,2000044073,8159542,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906070,2000044074,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906071,2000044075,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1906072,2000044076,8154365,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906073,2000044077,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906074,2000044078,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906075,2000044079,8140209,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,170 -1906076,2000044080,8161186,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,160 -1906077,2000044081,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906078,2000044082,8152231,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,175 -1906079,2000044083,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1906080,2000044084,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906081,2000044085,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906082,2000044086,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906083,2000044087,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906084,2000044088,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906085,2000044089,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906086,2000044090,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906087,2000044091,8154365,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1906088,2000044092,8159542,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1906089,2000044093,8159542,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906090,2000044094,8900511,2,25,-9.0,1,-9.0,3,8000.0,1025215,0.0,175 -1906091,2000044095,8154365,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1906092,2000044096,8143067,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,174 -1906093,2000044097,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906094,2000044098,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906095,2000044099,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906096,2000044100,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906097,2000044101,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906098,2000044102,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906099,2000044103,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906100,2000044104,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1906101,2000044105,8159542,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,160 -1906102,2000044106,8154365,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1906103,2000044107,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906104,2000044108,8152231,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1906105,2000044109,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906106,2000044110,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906107,2000044111,8143067,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,174 -1906108,2000044112,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906109,2000044113,8159542,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,160 -1906110,2000044114,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906111,2000044115,8900511,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1906112,2000044116,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906113,2000044117,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906114,2000044118,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906115,2000044119,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906116,2000044120,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906117,2000044121,8152231,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906118,2000044122,8152231,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906119,2000044123,8159542,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1906120,2000044124,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906121,2000044125,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906122,2000044126,8140209,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,170 -1906123,2000044127,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906124,2000044128,8159542,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,160 -1906125,2000044129,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906126,2000044130,8159542,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,160 -1906127,2000044131,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906128,2000044132,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906129,2000044133,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906130,2000044134,8159542,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1906131,2000044135,8900511,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906132,2000044136,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906133,2000044137,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1906134,2000044138,8159542,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,160 -1906135,2000044139,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906136,2000044140,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906137,2000044141,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906138,2000044142,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906139,2000044143,8159542,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906140,2000044144,8140209,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,170 -1906141,2000044145,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1906142,2000044146,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906143,2000044147,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906144,2000044148,8154365,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1906145,2000044149,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906146,2000044150,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906147,2000044151,8159542,2,22,-9.0,1,-9.0,3,22000.0,1042852,0.0,160 -1906148,2000044152,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1906149,2000044153,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906150,2000044154,8152231,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1906151,2000044155,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1906152,2000044156,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906153,2000044157,8159542,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,160 -1906154,2000044158,8152231,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,175 -1906155,2000044159,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1906156,2000044160,8159542,2,29,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906157,2000044161,8154365,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,175 -1906158,2000044162,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906159,2000044163,8154365,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,175 -1906160,2000044164,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906161,2000044165,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906162,2000044166,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906163,2000044167,8154365,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1906164,2000044168,8152231,1,25,-9.0,1,-9.0,3,600.0,1042852,0.0,175 -1906165,2000044169,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906166,2000044170,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906167,2000044171,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906168,2000044172,8159542,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,160 -1906169,2000044173,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906170,2000044174,8152231,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906171,2000044175,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906172,2000044176,8152231,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906173,2000044177,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1906174,2000044178,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906175,2000044179,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906176,2000044180,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906177,2000044181,8159542,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1906178,2000044182,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906179,2000044183,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906180,2000044184,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906181,2000044185,8152231,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1906182,2000044186,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906183,2000044187,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906184,2000044188,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906185,2000044189,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906186,2000044190,8159542,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,160 -1906187,2000044191,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1906188,2000044192,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906189,2000044193,8152231,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1906190,2000044194,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906191,2000044195,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906192,2000044196,8900511,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906193,2000044197,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906194,2000044198,8154365,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1906195,2000044199,8152231,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1906196,2000044200,8900511,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1906197,2000044201,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906198,2000044202,8900511,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,175 -1906199,2000044203,8900511,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1906200,2000044204,8900511,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906201,2000044205,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906202,2000044206,8900511,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1906203,2000044207,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906204,2000044208,8140209,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,170 -1906205,2000044209,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906206,2000044210,8152231,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906207,2000044211,8152231,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906208,2000044212,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906209,2000044213,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906210,2000044214,8900511,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1906211,2000044215,8152231,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906212,2000044216,8154365,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1906213,2000044217,8159542,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906214,2000044218,8154365,2,22,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1906215,2000044219,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906216,2000044220,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906217,2000044221,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1906218,2000044222,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906219,2000044223,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906220,2000044224,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906221,2000044225,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906222,2000044226,8159542,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906223,2000044227,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1906224,2000044228,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906225,2000044229,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906226,2000044230,8900511,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1906227,2000044231,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906228,2000044232,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906229,2000044233,8154365,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1906230,2000044234,8159542,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,160 -1906231,2000044235,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906232,2000044236,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906233,2000044237,8900511,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906234,2000044238,8900511,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906235,2000044239,8900511,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,175 -1906236,2000044240,8152231,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906237,2000044241,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906238,2000044242,8154365,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1906239,2000044243,8900511,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906240,2000044244,8159542,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906241,2000044245,8143067,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,174 -1906242,2000044246,8159542,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1906243,2000044247,8900511,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1906244,2000044248,8900511,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1906245,2000044249,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906246,2000044250,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906247,2000044251,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906248,2000044252,8159542,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,160 -1906249,2000044253,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906250,2000044254,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906251,2000044255,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906252,2000044256,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906253,2000044257,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906254,2000044258,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906255,2000044259,8159542,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906256,2000044260,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906257,2000044261,8152231,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906258,2000044262,8900511,1,25,-9.0,1,-9.0,3,5000.0,1073094,0.0,175 -1906259,2000044263,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906260,2000044264,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906261,2000044265,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906262,2000044266,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906263,2000044267,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906264,2000044268,8159542,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,160 -1906265,2000044269,8159542,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1906266,2000044270,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906267,2000044271,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906268,2000044272,8159542,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,160 -1906269,2000044273,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906270,2000044274,8152231,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1906271,2000044275,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906272,2000044276,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906273,2000044277,8900511,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906274,2000044278,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906275,2000044279,8152231,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906276,2000044280,8154365,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,175 -1906277,2000044281,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906278,2000044282,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906279,2000044283,8154365,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1906280,2000044284,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906281,2000044285,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1906282,2000044286,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1906283,2000044287,8154365,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,175 -1906284,2000044288,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906285,2000044289,8154365,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1906286,2000044290,8152231,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906287,2000044291,8154365,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,175 -1906288,2000044292,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906289,2000044293,8152231,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1906290,2000044294,8154365,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906291,2000044295,8159542,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1906292,2000044296,8900511,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,175 -1906293,2000044297,8154365,2,25,-9.0,1,-9.0,3,8000.0,1025215,0.0,175 -1906294,2000044298,8159542,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1906295,2000044299,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906296,2000044300,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906297,2000044301,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906298,2000044302,8900511,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906299,2000044303,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906300,2000044304,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906301,2000044305,8154365,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1906302,2000044306,8154365,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,175 -1906303,2000044307,8152231,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906304,2000044308,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906305,2000044309,8154365,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,175 -1906306,2000044310,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906307,2000044311,8152231,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,175 -1906308,2000044312,8152231,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906309,2000044313,8159542,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,160 -1906310,2000044314,8900511,2,22,-9.0,1,-9.0,3,7200.0,1001264,0.0,175 -1906311,2000044315,8152231,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906312,2000044316,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906313,2000044317,8154365,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906314,2000044318,8159542,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,160 -1906315,2000044319,8152231,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,175 -1906316,2000044320,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906317,2000044321,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906318,2000044322,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906319,2000044323,8900511,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906320,2000044324,8154365,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,175 -1906321,2000044325,8152231,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1906322,2000044326,8900511,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,175 -1906323,2000044327,8140209,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,170 -1906324,2000044328,8159542,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,160 -1906325,2000044329,8161186,2,29,-9.0,1,-9.0,3,8000.0,1001264,0.0,160 -1906326,2000044330,8154365,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906327,2000044331,8154365,1,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906328,2000044332,8152231,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,175 -1906329,2000044333,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906330,2000044334,8159542,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,160 -1906331,2000044335,8154365,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906332,2000044336,8152231,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,175 -1906333,2000044337,8900511,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906334,2000044338,8154365,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906335,2000044339,8152231,1,18,-9.0,1,-9.0,3,3200.0,1042852,0.0,175 -1906336,2000044340,8152231,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906337,2000044341,8154365,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906338,2000044342,8154365,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,175 -1906339,2000044343,8154365,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,175 -1906340,2000044344,8152231,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,175 -1906341,2000044345,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906342,2000044346,8152231,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,175 -1906343,2000044347,8154365,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,175 -1906344,2000044348,8159542,2,22,-9.0,1,-9.0,3,3200.0,1042852,0.0,160 -1906345,2000044349,8154365,2,25,-9.0,1,-9.0,3,8000.0,1025215,0.0,175 -1906346,2000044350,8159542,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,160 -1906347,2000044351,8900511,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,175 -1906348,2000044352,8134567,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,170 -1906349,2000044353,8140311,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,173 -1906350,2000044354,8132090,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,172 -1906351,2000044355,8134567,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,170 -1906352,2000044356,8132090,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,172 -1906353,2000044357,8134567,2,25,-9.0,1,-9.0,3,0.0,1042852,0.0,170 -1906354,2000044358,8134567,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,170 -1906355,2000044359,8132090,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,172 -1906356,2000044360,8140311,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,173 -1906474,2000044478,8170749,2,22,-9.0,1,-9.0,3,22000.0,1042852,0.0,155 -1906475,2000044479,8170749,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,155 -1906476,2000044480,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906477,2000044481,8170749,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,155 -1906478,2000044482,8170749,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1906479,2000044483,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906480,2000044484,8170749,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,155 -1906481,2000044485,8170749,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,155 -1906482,2000044486,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906483,2000044487,8170749,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,155 -1906484,2000044488,8170749,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,155 -1906485,2000044489,8170749,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,155 -1906486,2000044490,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906487,2000044491,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906488,2000044492,8170749,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,155 -1906489,2000044493,8170749,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,155 -1906490,2000044494,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906491,2000044495,8170749,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1906492,2000044496,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906493,2000044497,8170749,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,155 -1906494,2000044498,8170749,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,155 -1906495,2000044499,8170749,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,155 -1906496,2000044500,8170749,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,155 -1906497,2000044501,8170749,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,155 -1906498,2000044502,8170749,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1906499,2000044503,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906500,2000044504,8170749,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,155 -1906501,2000044505,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906502,2000044506,8170749,1,25,-9.0,1,-9.0,3,10700.0,1001264,0.0,155 -1906503,2000044507,8170749,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1906504,2000044508,8170749,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1906505,2000044509,8170749,1,18,-9.0,1,-9.0,3,1500.0,1001264,0.0,155 -1906506,2000044510,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906507,2000044511,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906508,2000044512,8170749,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,155 -1906509,2000044513,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906510,2000044514,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906511,2000044515,8170749,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,155 -1906512,2000044516,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906513,2000044517,8170749,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,155 -1906514,2000044518,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906515,2000044519,8170749,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1906516,2000044520,8170749,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,155 -1906517,2000044521,8170749,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1906518,2000044522,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906519,2000044523,8170749,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,155 -1906520,2000044524,8170749,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1906521,2000044525,8181842,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,157 -1906522,2000044526,8170749,2,22,-9.0,1,-9.0,3,25000.0,1073094,0.0,155 -1906523,2000044527,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906524,2000044528,8180021,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,157 -1906525,2000044529,8170749,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,155 -1906526,2000044530,8170749,2,22,-9.0,1,-9.0,3,3200.0,1073094,0.0,155 -1906527,2000044531,8170749,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1906528,2000044532,8170749,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,155 -1906529,2000044533,8170749,1,18,-9.0,1,-9.0,3,1000.0,1073094,0.0,155 -1906530,2000044534,8170749,4,20,-9.0,1,-9.0,3,1200.0,1025215,0.0,155 -1906531,2000044535,8170749,1,18,-9.0,1,-9.0,3,1400.0,1001264,0.0,155 -1906532,2000044536,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906533,2000044537,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906534,2000044538,8170749,2,18,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906535,2000044539,8170749,2,22,-9.0,1,-9.0,3,0.0,1001264,0.0,155 -1906536,2000044540,8170749,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,155 -1906537,2000044541,8170749,2,18,-9.0,1,-9.0,3,0.0,1009585,0.0,155 -1906538,2000044542,8170749,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,155 -1906539,2000044543,8170749,1,18,-9.0,1,-9.0,3,0.0,1025215,0.0,155 -1906540,2000044544,8195478,1,18,-9.0,1,-9.0,3,4000.0,1042852,0.0,151 -1906541,2000044545,8180478,2,56,-9.0,1,-9.0,3,0.0,1073094,0.0,157 -1906542,2000044546,8200925,2,63,-9.0,1,-9.0,3,8670.0,1001264,0.0,159 -1906543,2000044547,8186760,2,22,-9.0,1,-9.0,3,17200.0,1009585,0.0,152 -1906544,2000044548,8191238,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,152 -1906545,2000044549,8180384,2,56,-9.0,1,-9.0,3,8600.0,1073094,0.0,156 -1906547,2000044551,8201256,1,79,-9.0,1,-9.0,3,0.0,1025215,0.0,159 -1906549,2000044553,8180384,2,22,-9.0,1,-9.0,3,8000.0,1009585,0.0,156 -1906550,2000044554,8191238,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,152 -1906553,2000044557,8191238,4,21,-9.0,1,-9.0,3,0.0,1073094,0.0,152 -1906556,2000044560,8180478,2,41,-9.0,1,-9.0,3,0.0,1001264,0.0,157 -1906557,2000044561,8195478,1,56,-9.0,1,-9.0,3,0.0,1001264,0.0,151 -1906558,2000044562,8200925,2,18,-9.0,1,-9.0,3,9400.0,1073094,0.0,159 -1906559,2000044563,8195478,2,18,-9.0,1,-9.0,3,10000.0,1001264,0.0,151 -1906560,2000044564,8169314,1,56,-9.0,1,-9.0,3,0.0,1001264,0.0,158 -1906561,2000044565,8200925,1,18,-9.0,1,-9.0,3,0.0,1009585,0.0,159 -1906562,2000044566,8180384,2,22,-9.0,1,-9.0,3,15100.0,1001264,0.0,156 -1906564,2000044568,8200925,1,56,-9.0,1,-9.0,3,0.0,1001264,0.0,159 -1906565,2000044569,8195478,1,79,-9.0,1,-9.0,3,0.0,1025215,0.0,151 -1906568,2000044572,8191238,2,69,-9.0,1,-9.0,3,8600.0,1073094,0.0,152 -1906570,2000044574,8169314,2,56,-9.0,1,-9.0,3,8400.0,1042852,0.0,158 diff --git a/activitysim/examples/prototype_semcog/data/land_use.csv b/activitysim/examples/prototype_semcog/data/land_use.csv deleted file mode 100644 index ff4a727a8..000000000 --- a/activitysim/examples/prototype_semcog/data/land_use.csv +++ /dev/null @@ -1,68 +0,0 @@ -ZONE,COUNTY,EXTERNAL,DISTRICT,SUPER_DIST_25,tot_acres,tot_hhs,hhs_pop,workers,grppop,tot_pop,tot_emp,e01_nrm,e02_constr,e03_manuf,e04_whole,e05_retail,e06_trans,e07_utility,e08_infor,e09_finan,e10_pstsvc,e11_compmgt,e12_admsvc,e13_edusvc,e14_medfac,e15_hospit,e16_leisure,e17_othsvc,e18_pubadm,WrkPrkCost,NonWrkPrk,PRKCST,OPRKCST,AirportADT,AreaType,UMI,CBD,DET,K_8,G9_12,k12enroll,Univ_Enrollment,University_Name,TERMINAL,TOPOLOGY,parking_spaces -149,1,0,21,1,13.89134,0.0,0.0,0.0,0.0,0.0,236.0,0.0,8.0,0.0,0.0,10.0,0.0,0.0,5.0,39.0,137.0,0.0,3.0,0.0,13.0,0.0,12.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -150,1,0,21,1,48.088087,0.0,0.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,236.0,47.0,29.5,5.875,0.0,3,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -151,1,0,19,3,486.382683,812.0,2210.0,636.0,101.0,2311.0,1124.0,0.0,13.0,279.0,21.0,18.0,37.0,127.0,4.0,40.0,57.0,0.0,72.0,140.0,117.0,0.0,31.0,168.0,0.0,0.0,0.0,0.0,0.0,0.0,3,0,0,1,370.0,237.0,607.0,0.0,0,0,1,0.0 -152,1,0,19,3,310.287607,713.0,1767.0,570.0,22.0,1789.0,571.0,0.0,14.0,16.0,1.0,46.0,0.0,2.0,3.0,18.0,15.0,0.0,41.0,0.0,176.0,0.0,56.0,183.0,0.0,0.0,0.0,0.0,0.0,0.0,3,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -153,1,0,19,3,218.656573,246.0,329.0,101.0,0.0,329.0,1029.0,0.0,56.0,208.0,28.0,99.0,96.0,0.0,15.0,20.0,62.0,2.0,46.0,7.0,30.0,0.0,153.0,207.0,0.0,80.0,74.0,10.0,9.25,0.0,3,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -154,1,0,19,3,119.297156,201.0,280.0,123.0,0.0,280.0,1831.0,0.0,0.0,58.0,4.0,9.0,0.0,12.0,36.0,8.0,61.0,1153.0,37.0,351.0,70.0,4.0,19.0,5.0,4.0,0.0,0.0,0.0,0.0,0.0,2,0,0,1,830.0,596.0,1426.0,0.0,0,0,1,0.0 -155,1,0,19,3,60.803295,36.0,53.0,30.0,300.0,353.0,4315.0,0.0,23.0,13.0,18.0,32.0,0.0,0.0,6.0,148.0,98.0,0.0,163.0,127.0,320.0,0.0,136.0,74.0,3157.0,160.0,44.0,20.0,5.5,0.0,2,0,0,1,349.0,449.0,798.0,0.0,0,0,1,0.0 -156,1,0,19,3,87.598161,286.0,583.0,169.0,37.0,620.0,510.0,0.0,13.0,0.0,5.0,23.0,2.0,0.0,14.0,14.0,159.0,0.0,22.0,7.0,97.0,0.0,5.0,32.0,117.0,0.0,0.0,0.0,0.0,0.0,3,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -157,1,0,19,3,95.431608,1223.0,2018.0,1057.0,41.0,2059.0,820.0,0.0,10.0,0.0,4.0,25.0,2.0,0.0,4.0,50.0,43.0,0.0,36.0,87.0,219.0,194.0,14.0,127.0,5.0,108.0,29.0,13.5,3.625,0.0,2,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -158,1,0,19,3,70.91536500000002,551.0,880.0,517.0,8.0,888.0,4461.0,0.0,41.0,10.0,37.0,78.0,4.0,0.0,183.0,288.0,558.0,0.0,1269.0,154.0,595.0,240.0,325.0,337.0,342.0,108.0,29.0,13.5,3.625,0.0,2,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -159,1,0,19,3,250.36687799999999,672.0,1416.0,528.0,17.0,1433.0,463.0,4.0,10.0,0.0,1.0,23.0,3.0,0.0,5.0,47.0,32.0,0.0,40.0,115.0,122.0,0.0,25.0,36.0,0.0,0.0,0.0,0.0,0.0,0.0,3,0,0,1,386.0,0.0,386.0,0.0,0,0,1,0.0 -160,1,0,20,1,87.539895,473.0,691.0,340.0,260.0,951.0,1159.0,0.0,6.0,6.0,8.0,24.0,3.0,0.0,21.0,47.0,80.0,0.0,32.0,215.0,61.0,23.0,549.0,80.0,4.0,48.0,75.0,6.0,9.375,0.0,2,0,0,1,440.0,0.0,440.0,0.0,0,0,1,0.0 -161,1,0,20,1,118.06248899999999,730.0,1276.0,593.0,0.0,1276.0,275.0,0.0,5.0,0.0,2.0,5.0,0.0,0.0,0.0,23.0,11.0,0.0,32.0,127.0,37.0,0.0,1.0,32.0,0.0,48.0,75.0,6.0,9.375,0.0,2,0,0,1,794.0,0.0,794.0,0.0,0,0,1,0.0 -162,1,0,20,1,26.595326,540.0,731.0,272.0,0.0,731.0,486.0,0.0,28.0,0.0,14.0,26.0,2.0,0.0,4.0,20.0,31.0,0.0,5.0,31.0,89.0,1.0,101.0,133.0,1.0,0.0,0.0,0.0,0.0,0.0,2,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -163,1,0,20,1,27.700522999999997,0.0,0.0,0.0,0.0,0.0,4025.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,94.0,0.0,42.0,104.0,24.0,3712.0,18.0,11.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,0,0,1,0.0 -164,1,0,20,1,8.911122,196.0,268.0,75.0,0.0,268.0,70.0,0.0,0.0,0.0,0.0,31.0,1.0,0.0,8.0,19.0,1.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -165,1,0,20,1,23.613292,0.0,0.0,0.0,0.0,0.0,935.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,6.0,0.0,15.0,0.0,8.0,29.0,825.0,1.0,1.0,21.0,21.0,0.0,0.0,0.0,0.0,0.0,2,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -166,1,0,20,1,30.785145,447.0,678.0,247.0,0.0,678.0,565.0,0.0,1.0,0.0,8.0,21.0,2.0,0.0,15.0,28.0,17.0,0.0,169.0,8.0,150.0,37.0,81.0,28.0,0.0,48.0,100.0,6.0,12.5,0.0,2,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -167,1,0,20,1,61.800263,0.0,0.0,0.0,21.0,21.0,17762.0,0.0,3.0,5.0,2.0,43.0,1.0,2.0,63.0,10.0,89.0,629.0,198.0,329.0,3650.0,12580.0,68.0,81.0,9.0,48.0,100.0,6.0,12.5,0.0,2,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -168,1,0,20,1,93.581547,619.0,828.0,262.0,0.0,828.0,939.0,1.0,1.0,0.0,2.0,8.0,0.0,0.0,0.0,15.0,31.0,21.0,34.0,199.0,177.0,423.0,4.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,2,0,0,1,438.0,0.0,438.0,0.0,0,0,1,0.0 -169,1,0,20,1,119.55574299999999,360.0,831.0,305.0,0.0,831.0,220.0,0.0,3.0,0.0,0.0,11.0,0.0,0.0,0.0,20.0,10.0,0.0,9.0,0.0,145.0,0.0,1.0,12.0,9.0,0.0,0.0,0.0,0.0,0.0,2,0,0,1,0.0,403.0,403.0,0.0,0,0,1,0.0 -170,1,0,20,1,95.98693,594.0,988.0,437.0,27.0,1015.0,290.0,0.0,14.0,0.0,0.0,6.0,2.0,0.0,3.0,21.0,14.0,0.0,7.0,16.0,141.0,0.0,8.0,58.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,0,0,1,0.0 -171,1,0,20,1,74.393112,629.0,749.0,245.0,0.0,749.0,891.0,0.0,7.0,0.0,0.0,31.0,93.0,0.0,2.0,63.0,18.0,0.0,10.0,47.0,309.0,171.0,85.0,46.0,9.0,0.0,0.0,0.0,0.0,0.0,2,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -172,1,0,20,1,166.601155,721.0,1019.0,272.0,38.0,1057.0,1615.0,0.0,12.0,119.0,14.0,25.0,5.0,1.0,71.0,16.0,28.0,2.0,51.0,366.0,178.0,4.0,49.0,166.0,508.0,0.0,0.0,0.0,0.0,0.0,2,0,0,1,0.0,2370.0,2370.0,0.0,0,0,1,0.0 -173,1,0,20,1,106.01136799999999,1191.0,2281.0,984.0,13.0,2294.0,484.0,0.0,17.0,5.0,20.0,11.0,1.0,0.0,5.0,40.0,16.0,0.0,19.0,198.0,91.0,0.0,32.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,2,0,0,1,264.0,74.0,338.0,0.0,0,0,1,0.0 -174,1,0,20,1,110.159888,1375.0,2131.0,1144.0,13.0,2144.0,2077.0,0.0,35.0,66.0,17.0,51.0,0.0,0.0,35.0,57.0,61.0,0.0,55.0,147.0,449.0,52.0,888.0,129.0,35.0,0.0,0.0,0.0,0.0,0.0,2,0,0,1,0.0,495.0,495.0,0.0,0,0,1,0.0 -175,1,0,20,1,107.599845,324.0,502.0,341.0,1719.0,2221.0,1852.0,0.0,0.0,11.0,0.0,15.0,0.0,6.0,193.0,6.0,173.0,0.0,67.0,997.0,275.0,42.0,37.0,6.0,24.0,48.0,100.0,6.0,12.5,0.0,2,0,0,1,0.0,0.0,0.0,20163.0,Wayne State University,0,1,0.0 -176,1,0,20,1,38.410502,319.0,369.0,229.0,0.0,369.0,795.0,0.0,2.0,6.0,0.0,2.0,0.0,1.0,239.0,12.0,54.0,0.0,22.0,219.0,95.0,7.0,79.0,12.0,45.0,48.0,100.0,6.0,12.5,0.0,2,0,0,1,0.0,0.0,0.0,7414.0,Wayne State University,0,1,0.0 -177,1,0,20,1,27.850647,418.0,665.0,385.0,0.0,665.0,144.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,4.0,2.0,4.0,0.0,2.0,66.0,38.0,0.0,20.0,2.0,0.0,48.0,100.0,6.0,12.5,0.0,2,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -178,1,0,20,1,29.079526,171.0,275.0,147.0,0.0,275.0,396.0,0.0,4.0,6.0,0.0,14.0,0.0,0.0,18.0,14.0,21.0,0.0,14.0,78.0,31.0,2.0,68.0,91.0,35.0,48.0,100.0,6.0,12.5,0.0,2,0,0,1,0.0,0.0,0.0,0.0,0,0,1,0.0 -179,1,0,48,1,19.940622,124.0,160.0,115.0,0.0,160.0,977.0,0.0,28.0,0.0,11.0,56.0,0.0,0.0,66.0,83.0,274.0,0.0,10.0,18.0,58.0,0.0,338.0,22.0,13.0,76.0,36.0,9.5,4.5,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -180,1,0,48,1,25.488007999999997,58.0,64.0,59.0,0.0,64.0,1026.0,0.0,18.0,20.0,3.0,58.0,2.0,0.0,29.0,28.0,134.0,0.0,50.0,14.0,9.0,0.0,374.0,283.0,4.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -181,1,0,48,1,18.474343,0.0,0.0,0.0,0.0,0.0,506.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,5.0,11.0,52.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,426.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -182,1,0,48,1,42.28200800000001,0.0,0.0,0.0,0.0,0.0,2034.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,5.0,11.0,633.0,0.0,45.0,0.0,0.0,0.0,1256.0,79.0,0.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -183,1,0,48,1,35.00861,0.0,0.0,0.0,0.0,0.0,775.0,0.0,2.0,0.0,0.0,7.0,0.0,0.0,0.0,3.0,0.0,0.0,11.0,0.0,12.0,0.0,695.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -184,1,0,21,1,26.575542,0.0,0.0,0.0,0.0,0.0,10756.0,0.0,23.0,38.0,33.0,87.0,21.0,0.0,119.0,1892.0,2059.0,4634.0,545.0,0.0,55.0,0.0,1013.0,144.0,93.0,236.0,47.0,29.5,5.875,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -185,1,0,48,1,20.796329999999998,388.0,470.0,409.0,0.0,470.0,1211.0,0.0,20.0,35.0,5.0,63.0,91.0,0.0,56.0,89.0,213.0,2.0,93.0,0.0,26.0,0.0,454.0,64.0,0.0,244.0,86.0,30.5,10.75,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -186,1,0,48,1,37.540649,0.0,0.0,0.0,0.0,0.0,3217.0,0.0,4.0,0.0,0.0,8.0,0.0,0.0,44.0,2578.0,30.0,185.0,61.0,52.0,72.0,0.0,157.0,17.0,9.0,108.0,100.0,13.5,12.5,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -187,1,0,48,1,28.575048,0.0,0.0,0.0,0.0,0.0,3990.0,0.0,17.0,26.0,17.0,59.0,5.0,77.0,13.0,62.0,98.0,4.0,69.0,5.0,7.0,0.0,2441.0,56.0,1034.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -188,1,0,48,1,30.931258000000003,0.0,0.0,0.0,1628.0,1628.0,1336.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,11.0,9.0,0.0,12.0,0.0,147.0,0.0,36.0,3.0,1117.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -189,1,0,21,1,17.570733999999998,0.0,0.0,0.0,0.0,0.0,347.0,0.0,0.0,0.0,5.0,16.0,185.0,0.0,8.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,7.0,119.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -190,1,0,48,1,4.960128,0.0,0.0,0.0,0.0,0.0,1790.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,2.0,1767.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -191,1,0,48,1,5.962071,0.0,0.0,0.0,0.0,0.0,1921.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,4.0,83.0,1467.0,102.0,40.0,0.0,0.0,0.0,5.0,36.0,181.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -192,1,0,48,1,6.9774009999999995,0.0,0.0,0.0,0.0,0.0,2665.0,0.0,12.0,18.0,6.0,38.0,2.0,0.0,16.0,1572.0,579.0,0.0,68.0,1.0,137.0,0.0,78.0,62.0,76.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -193,1,0,48,1,17.941113,205.0,260.0,174.0,0.0,260.0,5593.0,0.0,75.0,125.0,27.0,63.0,2.0,0.0,311.0,2547.0,733.0,192.0,107.0,16.0,110.0,0.0,274.0,52.0,959.0,120.0,59.0,15.0,7.375,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -194,1,0,50,1,59.87315600000001,0.0,0.0,0.0,0.0,0.0,731.0,0.0,7.0,0.0,16.0,0.0,0.0,0.0,0.0,35.0,8.0,0.0,74.0,6.0,0.0,0.0,370.0,212.0,3.0,160.0,112.0,20.0,14.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -195,1,0,50,1,7.658772,0.0,0.0,0.0,0.0,0.0,2102.0,0.0,1.0,6.0,1.0,0.0,4.0,0.0,198.0,296.0,1150.0,0.0,89.0,0.0,11.0,0.0,297.0,49.0,0.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -196,1,0,50,1,8.358943,0.0,0.0,0.0,0.0,0.0,3608.0,7.0,53.0,57.0,12.0,35.0,211.0,0.0,30.0,252.0,943.0,3.0,123.0,6.0,48.0,0.0,97.0,134.0,1597.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -197,1,0,50,1,9.471862,0.0,0.0,0.0,0.0,0.0,4889.0,0.0,25.0,22.0,38.0,58.0,61.0,3.0,80.0,1681.0,1292.0,7.0,241.0,36.0,138.0,0.0,165.0,211.0,831.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -198,1,0,51,1,49.823411,763.0,943.0,655.0,0.0,943.0,231.0,0.0,2.0,0.0,23.0,6.0,4.0,0.0,2.0,43.0,52.0,2.0,15.0,0.0,18.0,0.0,42.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,3,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -199,1,0,51,4,49.36785,0.0,0.0,0.0,0.0,0.0,1329.0,0.0,2.0,0.0,1.0,14.0,923.0,0.0,0.0,5.0,0.0,0.0,22.0,271.0,28.0,0.0,13.0,50.0,0.0,76.0,35.0,9.5,4.375,0.0,3,0,1,0,0.0,0.0,0.0,3983.0,WCCCD - Downtown,0,1,0.0 -200,1,0,51,1,59.842243,55.0,65.0,28.0,0.0,65.0,699.0,0.0,41.0,67.0,24.0,21.0,141.0,0.0,12.0,11.0,17.0,0.0,9.0,0.0,78.0,0.0,90.0,99.0,89.0,0.0,0.0,0.0,0.0,0.0,3,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -201,1,0,51,4,156.851456,59.0,64.0,60.0,0.0,64.0,1378.0,0.0,122.0,64.0,62.0,41.0,55.0,0.0,70.0,18.0,29.0,0.0,180.0,8.0,220.0,0.0,40.0,113.0,356.0,0.0,0.0,0.0,0.0,0.0,3,0,0,1,36.0,208.0,244.0,0.0,0,0,1,0.0 -202,1,0,50,1,23.958202,55.0,76.0,40.0,0.0,76.0,1500.0,0.0,17.0,90.0,6.0,13.0,2.0,0.0,12.0,705.0,183.0,0.0,28.0,3.0,179.0,0.0,142.0,120.0,0.0,200.0,71.0,25.0,8.875,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -203,1,0,50,1,13.005362,18.0,19.0,4.0,0.0,19.0,2923.0,0.0,86.0,5.0,5.0,35.0,6.0,0.0,354.0,638.0,690.0,69.0,319.0,16.0,53.0,0.0,149.0,24.0,474.0,256.0,118.0,32.0,14.75,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -204,1,0,50,1,10.802926,0.0,0.0,0.0,0.0,0.0,2214.0,0.0,0.0,0.0,4.0,5.0,0.0,0.0,0.0,14.0,12.0,0.0,56.0,0.0,42.0,0.0,4.0,104.0,1973.0,0.0,35.0,0.0,4.375,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -205,1,0,50,1,17.945451000000006,0.0,0.0,0.0,0.0,0.0,562.0,0.0,30.0,0.0,0.0,0.0,0.0,0.0,152.0,79.0,53.0,0.0,8.0,0.0,7.0,0.0,0.0,188.0,45.0,0.0,35.0,0.0,4.375,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -206,1,0,50,1,13.67443,0.0,0.0,0.0,0.0,0.0,10.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,140.0,0.0,17.5,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -207,1,0,50,1,14.654917999999999,0.0,0.0,0.0,0.0,0.0,1705.0,0.0,0.0,130.0,0.0,0.0,0.0,0.0,6.0,23.0,0.0,0.0,58.0,0.0,0.0,0.0,7.0,15.0,1466.0,140.0,0.0,17.5,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -208,1,0,49,1,13.422013,207.0,284.0,116.0,0.0,284.0,239.0,0.0,0.0,0.0,0.0,12.0,6.0,0.0,175.0,6.0,20.0,0.0,11.0,0.0,1.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -209,1,0,49,1,46.247253,0.0,0.0,0.0,0.0,0.0,3086.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.0,0.0,0.0,0.0,3037.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -210,1,0,49,1,23.748887,0.0,0.0,0.0,0.0,0.0,2021.0,0.0,14.0,0.0,2.0,6.0,12.0,1650.0,0.0,86.0,15.0,186.0,31.0,0.0,0.0,0.0,13.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -211,1,0,49,1,14.626191,0.0,0.0,0.0,0.0,0.0,407.0,0.0,4.0,0.0,1.0,11.0,6.0,0.0,2.0,20.0,81.0,0.0,37.0,3.0,96.0,22.0,81.0,43.0,0.0,104.0,35.0,13.0,4.375,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -212,1,0,49,1,17.323292000000002,189.0,201.0,56.0,0.0,201.0,193.0,0.0,2.0,2.0,0.0,15.0,26.0,0.0,2.0,9.0,55.0,0.0,14.0,0.0,27.0,0.0,20.0,21.0,0.0,108.0,59.0,13.5,7.375,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -213,1,0,49,1,16.664503,580.0,715.0,413.0,0.0,715.0,1559.0,0.0,3.0,20.0,3.0,55.0,23.0,0.0,88.0,410.0,319.0,0.0,42.0,21.0,49.0,0.0,238.0,288.0,0.0,160.0,150.0,20.0,18.75,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -214,1,0,49,1,12.214883,392.0,467.0,255.0,0.0,467.0,251.0,0.0,12.0,2.0,8.0,23.0,9.0,0.0,11.0,27.0,35.0,0.0,25.0,6.0,29.0,0.0,20.0,44.0,0.0,160.0,150.0,20.0,18.75,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 -215,1,0,49,1,45.050559,489.0,626.0,323.0,0.0,626.0,1456.0,0.0,55.0,0.0,38.0,3.0,0.0,0.0,88.0,76.0,141.0,0.0,39.0,13.0,127.0,0.0,712.0,108.0,56.0,128.0,59.0,16.0,7.375,0.0,1,0,1,0,0.0,0.0,0.0,0.0,0,0,1,0.0 diff --git a/activitysim/examples/prototype_semcog/data/persons.csv b/activitysim/examples/prototype_semcog/data/persons.csv deleted file mode 100644 index 3b86b438e..000000000 --- a/activitysim/examples/prototype_semcog/data/persons.csv +++ /dev/null @@ -1,30745 +0,0 @@ -person_id,legacy_person_id,race_id,age,relate,member_id,legacy_household_id,sex,ESR,WKHP,WKW,SCHG,MIL,household_id -3031858,1630140252,2,38,0,1,1630051320,2,1.0,40.0,1.0,16.0,4.0,1216141 -3031859,1630140256,2,14,2,2,1630051320,2,-9.0,-9.0,-9.0,11.0,-9.0,1216141 -3031860,1630140253,2,8,10,3,1630051320,1,-9.0,-9.0,-9.0,4.0,-9.0,1216141 -3031861,1630140254,2,7,10,4,1630051320,1,-9.0,-9.0,-9.0,4.0,-9.0,1216141 -3031862,1630140255,2,7,10,5,1630051320,1,-9.0,-9.0,-9.0,4.0,-9.0,1216141 -3031863,1630140257,2,5,10,6,1630051320,2,-9.0,-9.0,-9.0,2.0,-9.0,1216141 -3031864,1630140187,2,41,0,1,1630051321,2,1.0,40.0,1.0,-9.0,4.0,1216142 -3031865,1630140188,2,20,2,2,1630051321,2,6.0,-9.0,-9.0,-9.0,4.0,1216142 -3031866,1630140190,2,17,2,3,1630051321,2,6.0,-9.0,-9.0,13.0,4.0,1216142 -3031867,1630140191,2,6,2,4,1630051321,2,-9.0,-9.0,-9.0,3.0,-9.0,1216142 -3031868,1630140189,2,38,13,5,1630051321,1,1.0,40.0,1.0,-9.0,4.0,1216142 -3031869,1630140286,2,44,0,1,1630051322,2,1.0,40.0,1.0,-9.0,4.0,1216143 -3031870,1630140288,2,25,2,2,1630051322,2,3.0,-9.0,-9.0,15.0,4.0,1216143 -3031871,1630140290,2,20,2,3,1630051322,2,1.0,20.0,6.0,15.0,4.0,1216143 -3031872,1630140292,2,16,2,4,1630051322,1,6.0,-9.0,-9.0,13.0,-9.0,1216143 -3031873,1630140287,2,44,0,1,1630051323,2,1.0,40.0,1.0,-9.0,4.0,1216144 -3031874,1630140291,2,20,2,2,1630051323,2,1.0,20.0,6.0,15.0,4.0,1216144 -3031875,1630140293,2,16,2,3,1630051323,1,6.0,-9.0,-9.0,13.0,-9.0,1216144 -3031876,1630140436,2,36,0,1,1630051324,2,6.0,-9.0,-9.0,-9.0,4.0,1216145 -3031877,1630140442,2,35,1,2,1630051324,1,1.0,45.0,1.0,-9.0,4.0,1216145 -3031878,1630140438,2,18,2,3,1630051324,2,6.0,-9.0,-9.0,15.0,4.0,1216145 -3031879,1630140440,2,16,2,4,1630051324,1,1.0,25.0,6.0,11.0,-9.0,1216145 -3031880,1630140444,2,14,2,5,1630051324,2,-9.0,-9.0,-9.0,10.0,-9.0,1216145 -3031881,1630140446,2,9,2,6,1630051324,2,-9.0,-9.0,-9.0,5.0,-9.0,1216145 -3031882,1630140437,2,36,0,1,1630051325,2,6.0,-9.0,-9.0,-9.0,4.0,1216146 -3031883,1630140443,2,35,1,2,1630051325,1,1.0,45.0,1.0,-9.0,4.0,1216146 -3031884,1630140439,2,18,2,3,1630051325,2,6.0,-9.0,-9.0,15.0,4.0,1216146 -3031885,1630140441,2,16,2,4,1630051325,1,1.0,25.0,6.0,11.0,-9.0,1216146 -3031886,1630140445,2,14,2,5,1630051325,2,-9.0,-9.0,-9.0,10.0,-9.0,1216146 -3031887,1630140447,2,9,2,6,1630051325,2,-9.0,-9.0,-9.0,5.0,-9.0,1216146 -3031888,1630140038,2,40,0,1,1630051326,1,2.0,25.0,1.0,15.0,4.0,1216147 -3031889,1630140036,2,40,1,2,1630051326,2,1.0,40.0,1.0,16.0,4.0,1216147 -3031890,1630140040,2,19,2,3,1630051326,1,6.0,25.0,5.0,15.0,4.0,1216147 -3031891,1630140327,2,44,0,1,1630051327,2,1.0,20.0,1.0,15.0,4.0,1216148 -3031892,1630140329,2,50,1,2,1630051327,1,1.0,60.0,1.0,-9.0,4.0,1216148 -3031893,1630140328,2,14,2,3,1630051327,1,-9.0,-9.0,-9.0,11.0,-9.0,1216148 -3031894,1630140222,2,37,0,1,1630051328,2,1.0,40.0,1.0,-9.0,4.0,1216149 -3031895,1630140223,2,22,2,2,1630051328,1,2.0,30.0,6.0,-9.0,4.0,1216149 -3031896,1630140240,2,42,0,1,1630051329,2,1.0,40.0,1.0,-9.0,4.0,1216150 -3031897,1630140241,2,20,2,2,1630051329,2,1.0,40.0,4.0,-9.0,4.0,1216150 -3031898,1630140243,2,17,2,3,1630051329,2,3.0,-9.0,-9.0,-9.0,4.0,1216150 -3031899,1630140242,2,10,2,4,1630051329,1,-9.0,-9.0,-9.0,5.0,-9.0,1216150 -3031900,1630140146,2,35,0,1,1630051330,2,1.0,41.0,1.0,-9.0,4.0,1216151 -3031901,1630140150,2,38,1,2,1630051330,1,1.0,40.0,1.0,-9.0,4.0,1216151 -3031902,1630140152,2,8,2,3,1630051330,2,-9.0,-9.0,-9.0,4.0,-9.0,1216151 -3031903,1630140148,2,1,2,4,1630051330,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216151 -3031904,1630140147,2,35,0,1,1630051331,2,1.0,41.0,1.0,-9.0,4.0,1216152 -3031905,1630140151,2,38,1,2,1630051331,1,1.0,40.0,1.0,-9.0,4.0,1216152 -3031906,1630140153,2,8,2,3,1630051331,2,-9.0,-9.0,-9.0,4.0,-9.0,1216152 -3031907,1630140149,2,1,2,4,1630051331,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216152 -3031908,1630140569,2,33,0,1,1630051332,1,1.0,40.0,1.0,-9.0,4.0,1216153 -3031909,1630140568,2,11,2,2,1630051332,1,-9.0,-9.0,-9.0,8.0,-9.0,1216153 -3031910,1630140570,2,26,5,3,1630051332,1,1.0,55.0,1.0,15.0,4.0,1216153 -3031911,1630140547,2,41,0,1,1630051333,1,1.0,40.0,1.0,-9.0,2.0,1216154 -3031912,1630140545,2,43,1,2,1630051333,2,1.0,30.0,1.0,-9.0,4.0,1216154 -3031913,1630140546,2,17,2,3,1630051333,1,6.0,-9.0,-9.0,14.0,4.0,1216154 -3031914,1630140554,2,35,0,1,1630051334,2,6.0,-9.0,-9.0,-9.0,4.0,1216155 -3031915,1630140556,2,12,2,2,1630051334,2,-9.0,-9.0,-9.0,8.0,-9.0,1216155 -3031916,1630140555,2,9,2,3,1630051334,1,-9.0,-9.0,-9.0,5.0,-9.0,1216155 -3031917,1630140557,2,5,2,4,1630051334,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216155 -3031918,1630140195,2,36,0,1,1630051335,2,6.0,-9.0,-9.0,15.0,4.0,1216156 -3031919,1630140201,2,17,2,2,1630051335,2,6.0,-9.0,-9.0,14.0,4.0,1216156 -3031920,1630140198,2,13,2,3,1630051335,1,-9.0,-9.0,-9.0,9.0,-9.0,1216156 -3031921,1630140204,2,11,2,4,1630051335,2,-9.0,-9.0,-9.0,7.0,-9.0,1216156 -3031922,1630140196,2,36,0,1,1630051336,2,6.0,-9.0,-9.0,15.0,4.0,1216157 -3031923,1630140202,2,17,2,2,1630051336,2,6.0,-9.0,-9.0,14.0,4.0,1216157 -3031924,1630140199,2,13,2,3,1630051336,1,-9.0,-9.0,-9.0,9.0,-9.0,1216157 -3031925,1630140205,2,11,2,4,1630051336,2,-9.0,-9.0,-9.0,7.0,-9.0,1216157 -3031926,1630140614,2,34,0,1,1630051337,1,6.0,-9.0,-9.0,-9.0,4.0,1216158 -3031927,1630140594,2,30,0,1,1630051338,1,3.0,36.0,5.0,-9.0,4.0,1216159 -3031928,1630140474,2,31,0,1,1630051339,2,6.0,-9.0,-9.0,-9.0,4.0,1216160 -3031929,1630140207,2,32,0,1,1630051340,2,6.0,40.0,5.0,16.0,4.0,1216161 -3031930,1630140209,2,31,1,2,1630051340,2,6.0,40.0,5.0,-9.0,4.0,1216161 -3031931,1630140211,2,5,2,3,1630051340,2,-9.0,-9.0,-9.0,2.0,-9.0,1216161 -3031932,1630140208,2,32,0,1,1630051341,2,6.0,40.0,5.0,16.0,4.0,1216162 -3031933,1630140210,2,31,1,2,1630051341,2,6.0,40.0,5.0,-9.0,4.0,1216162 -3031934,1630140212,2,5,2,3,1630051341,2,-9.0,-9.0,-9.0,2.0,-9.0,1216162 -3031935,1630139945,2,44,0,1,1630051342,2,1.0,29.0,1.0,-9.0,4.0,1216163 -3031936,1630139943,1,41,1,2,1630051342,1,3.0,-9.0,-9.0,-9.0,4.0,1216163 -3031937,1630139947,4,16,2,3,1630051342,2,6.0,-9.0,-9.0,13.0,-9.0,1216163 -3031938,1630140525,2,36,0,1,1630051343,2,1.0,40.0,3.0,-9.0,4.0,1216164 -3031939,1630140529,2,43,15,2,1630051343,1,1.0,40.0,6.0,-9.0,4.0,1216164 -3031940,1630140527,2,4,15,3,1630051343,1,-9.0,-9.0,-9.0,2.0,-9.0,1216164 -3031941,1630140124,2,31,0,1,1630051344,1,1.0,40.0,1.0,-9.0,4.0,1216165 -3031942,1630140123,2,31,1,2,1630051344,2,1.0,40.0,6.0,-9.0,4.0,1216165 -3031943,1630139998,2,36,0,1,1630051345,1,2.0,25.0,1.0,-9.0,4.0,1216166 -3031944,1630139997,2,34,1,2,1630051345,2,1.0,16.0,1.0,15.0,4.0,1216166 -3031945,1630139818,2,47,0,1,1630051346,1,3.0,-9.0,-9.0,-9.0,4.0,1216167 -3031946,1630139819,2,17,2,2,1630051346,2,6.0,-9.0,-9.0,13.0,2.0,1216167 -3031947,1630139817,2,11,2,3,1630051346,1,-9.0,-9.0,-9.0,7.0,-9.0,1216167 -3031948,1630139816,2,73,8,4,1630051346,2,6.0,-9.0,-9.0,-9.0,4.0,1216167 -3031949,1630140058,2,57,0,1,1630051347,1,6.0,-9.0,-9.0,-9.0,4.0,1216168 -3031950,1630140057,2,22,2,2,1630051347,2,6.0,40.0,6.0,-9.0,4.0,1216168 -3031951,1630140059,2,13,2,3,1630051347,2,-9.0,-9.0,-9.0,9.0,-9.0,1216168 -3031952,1630139954,2,60,0,1,1630051348,2,6.0,-9.0,-9.0,-9.0,4.0,1216169 -3031953,1630140277,2,55,0,1,1630051349,2,1.0,50.0,1.0,-9.0,4.0,1216170 -3031954,1630140399,2,55,0,1,1630051350,1,6.0,16.0,6.0,-9.0,4.0,1216171 -3031955,1630140398,2,51,1,2,1630051350,2,6.0,16.0,3.0,-9.0,4.0,1216171 -3031956,1630140400,2,26,2,3,1630051350,1,1.0,40.0,2.0,-9.0,4.0,1216171 -3031957,1630140218,2,60,0,1,1630051351,2,1.0,25.0,1.0,-9.0,4.0,1216172 -3031958,1630140219,2,27,2,2,1630051351,2,1.0,50.0,1.0,-9.0,4.0,1216172 -3031959,1630140221,2,5,7,3,1630051351,2,-9.0,-9.0,-9.0,2.0,-9.0,1216172 -3031960,1630140220,2,3,7,4,1630051351,1,-9.0,-9.0,-9.0,1.0,-9.0,1216172 -3031961,1630140338,2,50,0,1,1630051352,2,1.0,40.0,3.0,-9.0,3.0,1216173 -3031962,1630140340,2,19,2,2,1630051352,1,1.0,22.0,5.0,-9.0,4.0,1216173 -3031963,1630140342,2,16,7,3,1630051352,2,6.0,-9.0,-9.0,12.0,-9.0,1216173 -3031964,1630140344,2,12,7,4,1630051352,2,-9.0,-9.0,-9.0,9.0,-9.0,1216173 -3031965,1630139930,2,59,0,1,1630051353,1,6.0,-9.0,-9.0,-9.0,4.0,1216174 -3031966,1630139929,1,55,1,2,1630051353,2,1.0,20.0,3.0,-9.0,4.0,1216174 -3031967,1630139931,4,22,2,3,1630051353,2,1.0,40.0,6.0,15.0,4.0,1216174 -3031968,1630139932,4,17,2,4,1630051353,1,6.0,-9.0,-9.0,12.0,4.0,1216174 -3031969,1630140361,2,61,0,1,1630051354,1,1.0,40.0,3.0,-9.0,2.0,1216175 -3031970,1630140360,2,61,1,2,1630051354,2,1.0,35.0,1.0,-9.0,4.0,1216175 -3031971,1630140362,2,50,5,3,1630051354,1,6.0,-9.0,-9.0,-9.0,4.0,1216175 -3031972,1630140122,2,56,0,1,1630051355,2,3.0,-9.0,-9.0,-9.0,4.0,1216176 -3031973,1630140459,2,50,0,1,1630051356,2,6.0,-9.0,-9.0,-9.0,4.0,1216177 -3031974,1630140064,2,60,0,1,1630051357,2,6.0,-9.0,-9.0,-9.0,4.0,1216178 -3031975,1630140075,2,54,0,1,1630051358,2,3.0,30.0,5.0,15.0,4.0,1216179 -3031976,1630140608,2,52,0,1,1630051359,1,6.0,-9.0,-9.0,-9.0,4.0,1216180 -3031977,1630140410,2,49,0,1,1630051360,2,6.0,-9.0,-9.0,-9.0,4.0,1216181 -3031978,1630140386,2,63,0,1,1630051361,2,6.0,-9.0,-9.0,-9.0,4.0,1216182 -3031979,1630140423,2,60,0,1,1630051362,2,6.0,14.0,4.0,-9.0,4.0,1216183 -3031980,1630140079,2,51,0,1,1630051363,2,3.0,-9.0,-9.0,-9.0,4.0,1216184 -3031981,1630140482,2,50,0,1,1630051364,2,3.0,40.0,1.0,-9.0,4.0,1216185 -3031982,1630140483,2,19,2,2,1630051364,1,6.0,-9.0,-9.0,15.0,4.0,1216185 -3031983,1630140334,2,48,0,1,1630051365,2,6.0,20.0,1.0,15.0,4.0,1216186 -3031984,1630140336,2,21,2,2,1630051365,1,6.0,-9.0,-9.0,15.0,4.0,1216186 -3031985,1630140335,2,48,0,1,1630051366,2,6.0,20.0,1.0,15.0,4.0,1216187 -3031986,1630140337,2,21,2,2,1630051366,1,6.0,-9.0,-9.0,15.0,4.0,1216187 -3031987,1630140213,2,50,0,1,1630051367,2,1.0,40.0,1.0,-9.0,4.0,1216188 -3031988,1630140114,2,51,0,1,1630051368,1,1.0,20.0,1.0,-9.0,4.0,1216189 -3031989,1630140112,2,51,13,2,1630051368,2,1.0,36.0,4.0,-9.0,4.0,1216189 -3031990,1630140116,2,21,15,3,1630051368,1,3.0,-9.0,-9.0,-9.0,4.0,1216189 -3031991,1630140118,2,20,15,4,1630051368,1,6.0,-9.0,-9.0,13.0,4.0,1216189 -3031992,1630140115,2,51,0,1,1630051369,1,1.0,20.0,1.0,-9.0,4.0,1216190 -3031993,1630140113,2,51,13,2,1630051369,2,1.0,36.0,4.0,-9.0,4.0,1216190 -3031994,1630140117,2,21,15,3,1630051369,1,3.0,-9.0,-9.0,-9.0,4.0,1216190 -3031995,1630140119,2,20,15,4,1630051369,1,6.0,-9.0,-9.0,13.0,4.0,1216190 -3031996,1630140009,2,57,0,1,1630051370,2,1.0,15.0,6.0,-9.0,4.0,1216191 -3031997,1630140010,2,60,1,2,1630051370,1,6.0,-9.0,-9.0,-9.0,4.0,1216191 -3031998,1630140011,2,23,2,3,1630051370,1,1.0,15.0,5.0,15.0,4.0,1216191 -3031999,1630140134,2,59,0,1,1630051371,2,1.0,10.0,1.0,-9.0,4.0,1216192 -3032000,1630140136,2,52,1,2,1630051371,1,1.0,5.0,1.0,15.0,4.0,1216192 -3032001,1630140135,2,21,2,3,1630051371,2,1.0,4.0,1.0,-9.0,4.0,1216192 -3032002,1630140615,2,48,0,1,1630051372,1,1.0,12.0,4.0,15.0,2.0,1216193 -3032003,1630140616,2,48,12,2,1630051372,1,1.0,34.0,5.0,-9.0,2.0,1216193 -3032004,1630139810,2,80,0,1,1630051373,2,6.0,-9.0,-9.0,-9.0,4.0,1216194 -3032005,1630139813,2,80,1,2,1630051373,1,6.0,-9.0,-9.0,-9.0,4.0,1216194 -3032006,1630139811,2,45,2,3,1630051373,2,6.0,-9.0,-9.0,-9.0,4.0,1216194 -3032007,1630139812,2,14,7,4,1630051373,1,-9.0,-9.0,-9.0,9.0,-9.0,1216194 -3032008,1630139860,2,85,0,1,1630051374,2,3.0,20.0,5.0,-9.0,4.0,1216195 -3032009,1630139858,2,76,0,1,1630051375,2,6.0,-9.0,-9.0,-9.0,4.0,1216196 -3032010,1630139937,2,79,0,1,1630051376,1,6.0,-9.0,-9.0,-9.0,4.0,1216197 -3032011,1630139938,2,79,0,1,1630051377,1,6.0,-9.0,-9.0,-9.0,4.0,1216198 -3032012,1630139936,3,60,15,2,1630051377,2,6.0,-9.0,-9.0,-9.0,4.0,1216198 -3032013,1630139764,2,74,0,1,1630051378,2,6.0,-9.0,-9.0,-9.0,4.0,1216199 -3032014,1630139765,2,49,2,2,1630051378,1,3.0,-9.0,-9.0,-9.0,4.0,1216199 -3032015,1630139837,2,70,0,1,1630051379,2,1.0,45.0,1.0,-9.0,4.0,1216200 -3032016,1630139838,2,25,7,2,1630051379,1,1.0,4.0,4.0,-9.0,4.0,1216200 -3032017,1630139839,2,22,7,3,1630051379,1,1.0,24.0,6.0,-9.0,4.0,1216200 -3032018,1630140046,4,67,0,1,1630051380,2,6.0,-9.0,-9.0,-9.0,4.0,1216201 -3032019,1630140043,2,45,2,2,1630051380,2,6.0,-9.0,-9.0,-9.0,4.0,1216201 -3032020,1630140044,2,10,7,3,1630051380,1,-9.0,-9.0,-9.0,7.0,-9.0,1216201 -3032021,1630140045,2,8,7,4,1630051380,1,-9.0,-9.0,-9.0,4.0,-9.0,1216201 -3032022,1630140632,2,77,0,1,1630051381,1,6.0,-9.0,-9.0,-9.0,4.0,1216202 -3032023,1630139834,2,68,0,1,1630051382,2,6.0,-9.0,-9.0,-9.0,4.0,1216203 -3032024,1630139835,2,94,0,1,1630051383,2,6.0,-9.0,-9.0,-9.0,4.0,1216204 -3032025,1630139888,2,87,0,1,1630051384,2,6.0,-9.0,-9.0,-9.0,4.0,1216205 -3032026,1630140633,2,68,0,1,1630051385,1,3.0,-9.0,-9.0,-9.0,2.0,1216206 -3032027,1630139878,2,73,0,1,1630051386,2,6.0,-9.0,-9.0,-9.0,4.0,1216207 -3032028,1630139831,2,70,0,1,1630051387,2,6.0,-9.0,-9.0,-9.0,4.0,1216208 -3032029,1630139851,2,73,0,1,1630051388,2,6.0,-9.0,-9.0,-9.0,4.0,1216209 -3032030,1630139751,2,71,0,1,1630051389,2,6.0,-9.0,-9.0,-9.0,4.0,1216210 -3032031,1630139871,2,68,0,1,1630051390,2,6.0,-9.0,-9.0,-9.0,4.0,1216211 -3032032,1630139809,2,87,0,1,1630051391,2,6.0,-9.0,-9.0,-9.0,4.0,1216212 -3032033,1630139770,2,77,0,1,1630051392,2,6.0,-9.0,-9.0,-9.0,4.0,1216213 -3032034,1630139870,2,75,0,1,1630051393,2,6.0,-9.0,-9.0,-9.0,4.0,1216214 -3032035,1630139883,2,75,0,1,1630051394,2,6.0,-9.0,-9.0,-9.0,4.0,1216215 -3032036,1630139836,2,94,0,1,1630051395,2,6.0,-9.0,-9.0,-9.0,4.0,1216216 -3032037,1630139862,2,72,0,1,1630051396,2,6.0,-9.0,-9.0,-9.0,4.0,1216217 -3032038,1630140629,4,86,0,1,1630051397,2,6.0,-9.0,-9.0,-9.0,4.0,1216218 -3032039,1630140636,2,88,0,1,1630051398,1,6.0,-9.0,-9.0,-9.0,4.0,1216219 -3032040,1630139761,2,65,0,1,1630051399,2,6.0,-9.0,-9.0,-9.0,4.0,1216220 -3032041,1630139762,2,64,5,2,1630051399,1,6.0,-9.0,-9.0,-9.0,2.0,1216220 -3032042,1630139763,2,65,11,3,1630051399,1,6.0,-9.0,-9.0,-9.0,4.0,1216220 -3032043,1630139814,2,76,0,1,1630051400,2,6.0,-9.0,-9.0,-9.0,4.0,1216221 -3032044,1630139815,2,34,7,2,1630051400,1,3.0,-9.0,-9.0,-9.0,4.0,1216221 -3032045,1630139806,2,86,0,1,1630051401,2,6.0,-9.0,-9.0,-9.0,4.0,1216222 -3032046,1630139807,2,53,2,2,1630051401,1,6.0,-9.0,-9.0,-9.0,2.0,1216222 -3032047,1630139856,2,71,0,1,1630051402,2,6.0,-9.0,-9.0,-9.0,4.0,1216223 -3032048,1630139857,2,87,6,2,1630051402,2,6.0,-9.0,-9.0,-9.0,4.0,1216223 -3032049,1630140178,2,82,0,1,1630051403,1,6.0,-9.0,-9.0,-9.0,2.0,1216224 -3032050,1630140177,2,62,1,2,1630051403,2,6.0,-9.0,-9.0,-9.0,4.0,1216224 -3032051,1630140462,2,28,0,1,1630051404,2,1.0,40.0,1.0,-9.0,4.0,1216225 -3032052,1630140586,2,42,0,1,1630051405,1,1.0,48.0,1.0,-9.0,4.0,1216226 -3032053,1630140510,2,40,0,1,1630051406,2,1.0,35.0,1.0,-9.0,4.0,1216227 -3032054,1630140512,2,46,1,2,1630051406,1,1.0,40.0,1.0,-9.0,4.0,1216227 -3032055,1630140511,2,11,2,3,1630051406,1,-9.0,-9.0,-9.0,8.0,-9.0,1216227 -3032056,1630140513,2,9,2,4,1630051406,2,-9.0,-9.0,-9.0,5.0,-9.0,1216227 -3032057,1630140396,2,37,0,1,1630051407,1,1.0,40.0,1.0,-9.0,4.0,1216228 -3032058,1630140394,2,37,1,2,1630051407,2,1.0,15.0,1.0,-9.0,4.0,1216228 -3032059,1630140397,2,13,2,3,1630051407,2,-9.0,-9.0,-9.0,10.0,-9.0,1216228 -3032060,1630140395,2,10,2,4,1630051407,1,-9.0,-9.0,-9.0,6.0,-9.0,1216228 -3032061,1630140314,2,36,0,1,1630051408,2,1.0,40.0,1.0,-9.0,4.0,1216229 -3032062,1630140317,2,14,2,2,1630051408,2,-9.0,-9.0,-9.0,11.0,-9.0,1216229 -3032063,1630140316,2,36,13,3,1630051408,1,1.0,30.0,1.0,-9.0,4.0,1216229 -3032064,1630140315,2,18,15,4,1630051408,2,6.0,-9.0,-9.0,-9.0,4.0,1216229 -3032065,1630140567,4,41,0,1,1630051409,2,6.0,40.0,4.0,15.0,4.0,1216230 -3032066,1630140565,4,38,1,2,1630051409,1,1.0,40.0,1.0,-9.0,4.0,1216230 -3032067,1630140564,2,11,4,3,1630051409,1,-9.0,-9.0,-9.0,8.0,-9.0,1216230 -3032068,1630140566,4,31,5,4,1630051409,1,1.0,40.0,1.0,-9.0,4.0,1216230 -3032069,1630140019,2,29,0,1,1630051410,1,1.0,50.0,5.0,-9.0,4.0,1216231 -3032070,1630140018,2,2,2,2,1630051410,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216231 -3032071,1630140017,2,27,13,3,1630051410,2,1.0,45.0,1.0,-9.0,4.0,1216231 -3032072,1630140419,2,38,0,1,1630051411,2,3.0,34.0,5.0,-9.0,4.0,1216232 -3032073,1630140421,2,12,2,2,1630051411,2,-9.0,-9.0,-9.0,8.0,-9.0,1216232 -3032074,1630140420,2,8,2,3,1630051411,1,-9.0,-9.0,-9.0,5.0,-9.0,1216232 -3032075,1630140422,2,6,2,4,1630051411,2,-9.0,-9.0,-9.0,3.0,-9.0,1216232 -3032076,1630140261,2,37,0,1,1630051412,2,6.0,-9.0,-9.0,-9.0,4.0,1216233 -3032077,1630140264,2,40,1,2,1630051412,1,6.0,-9.0,-9.0,-9.0,4.0,1216233 -3032078,1630140262,2,8,2,3,1630051412,1,-9.0,-9.0,-9.0,3.0,-9.0,1216233 -3032079,1630140263,2,5,2,4,1630051412,1,-9.0,-9.0,-9.0,2.0,-9.0,1216233 -3032080,1630140169,2,29,0,1,1630051413,2,3.0,40.0,4.0,-9.0,4.0,1216234 -3032081,1630140175,2,8,2,2,1630051413,2,-9.0,-9.0,-9.0,4.0,-9.0,1216234 -3032082,1630140171,2,6,2,3,1630051413,1,-9.0,-9.0,-9.0,3.0,-9.0,1216234 -3032083,1630140173,2,4,2,4,1630051413,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216234 -3032084,1630140499,2,40,0,1,1630051414,2,3.0,-9.0,-9.0,-9.0,4.0,1216235 -3032085,1630140500,2,19,2,2,1630051414,2,6.0,-9.0,-9.0,15.0,4.0,1216235 -3032086,1630140501,2,18,2,3,1630051414,1,6.0,-9.0,-9.0,14.0,4.0,1216235 -3032087,1630140502,2,3,7,4,1630051414,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216235 -3032088,1630140137,2,33,0,1,1630051415,2,6.0,25.0,5.0,-9.0,4.0,1216236 -3032089,1630140139,2,15,2,2,1630051415,2,-9.0,-9.0,-9.0,12.0,-9.0,1216236 -3032090,1630140138,2,14,2,3,1630051415,1,-9.0,-9.0,-9.0,10.0,-9.0,1216236 -3032091,1630140140,2,0,2,4,1630051415,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216236 -3032092,1630140460,2,30,0,1,1630051416,2,6.0,-9.0,-9.0,-9.0,4.0,1216237 -3032093,1630140617,2,42,0,1,1630051417,1,3.0,-9.0,-9.0,-9.0,4.0,1216238 -3032094,1630140618,2,42,0,1,1630051418,1,3.0,-9.0,-9.0,-9.0,4.0,1216239 -3032095,1630140325,2,41,0,1,1630051419,2,3.0,-9.0,-9.0,-9.0,4.0,1216240 -3032096,1630140486,2,42,0,1,1630051420,2,6.0,-9.0,-9.0,-9.0,4.0,1216241 -3032097,1630140097,2,33,0,1,1630051421,2,3.0,-9.0,-9.0,-9.0,4.0,1216242 -3032098,1630140467,2,28,0,1,1630051422,2,6.0,-9.0,-9.0,15.0,4.0,1216243 -3032099,1630140326,2,41,0,1,1630051423,2,3.0,-9.0,-9.0,-9.0,4.0,1216244 -3032100,1630140622,2,30,0,1,1630051424,1,3.0,36.0,4.0,-9.0,4.0,1216245 -3032101,1630140488,2,25,0,1,1630051425,2,3.0,-9.0,-9.0,-9.0,4.0,1216246 -3032102,1630140489,2,6,2,2,1630051425,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216246 -3032103,1630140492,2,5,2,3,1630051425,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216246 -3032104,1630140493,2,4,2,4,1630051425,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216246 -3032105,1630140490,2,3,2,5,1630051425,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216246 -3032106,1630140491,2,2,2,6,1630051425,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216246 -3032107,1630140024,2,28,0,1,1630051426,2,3.0,-9.0,-9.0,-9.0,4.0,1216247 -3032108,1630140030,2,11,2,2,1630051426,2,-9.0,-9.0,-9.0,7.0,-9.0,1216247 -3032109,1630140028,2,9,2,3,1630051426,1,-9.0,-9.0,-9.0,6.0,-9.0,1216247 -3032110,1630140032,2,6,2,4,1630051426,2,-9.0,-9.0,-9.0,5.0,-9.0,1216247 -3032111,1630140034,2,5,2,5,1630051426,2,-9.0,-9.0,-9.0,3.0,-9.0,1216247 -3032112,1630140179,2,27,0,1,1630051427,2,6.0,-9.0,-9.0,-9.0,4.0,1216248 -3032113,1630140181,2,0,2,2,1630051427,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216248 -3032114,1630140180,2,35,13,3,1630051427,1,6.0,-9.0,-9.0,-9.0,4.0,1216248 -3032115,1630140322,2,26,0,1,1630051428,2,3.0,-9.0,-9.0,-9.0,4.0,1216249 -3032116,1630140323,2,8,2,2,1630051428,1,-9.0,-9.0,-9.0,4.0,-9.0,1216249 -3032117,1630140324,2,2,2,3,1630051428,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216249 -3032118,1630140514,2,38,0,1,1630051429,2,6.0,-9.0,-9.0,-9.0,4.0,1216250 -3032119,1630140516,2,38,1,2,1630051429,1,3.0,-9.0,-9.0,-9.0,4.0,1216250 -3032120,1630140518,2,16,2,3,1630051429,2,6.0,-9.0,-9.0,13.0,-9.0,1216250 -3032121,1630140387,2,29,0,1,1630051430,2,3.0,40.0,5.0,-9.0,4.0,1216251 -3032122,1630140389,2,15,2,2,1630051430,2,-9.0,-9.0,-9.0,10.0,-9.0,1216251 -3032123,1630140388,3,6,2,3,1630051430,1,-9.0,-9.0,-9.0,2.0,-9.0,1216251 -3032124,1630140515,2,38,0,1,1630051431,2,6.0,-9.0,-9.0,-9.0,4.0,1216252 -3032125,1630140517,2,38,1,2,1630051431,1,3.0,-9.0,-9.0,-9.0,4.0,1216252 -3032126,1630140519,2,16,2,3,1630051431,2,6.0,-9.0,-9.0,13.0,-9.0,1216252 -3032127,1630140054,2,43,0,1,1630051432,2,6.0,40.0,1.0,-9.0,4.0,1216253 -3032128,1630140055,2,46,12,2,1630051432,1,3.0,20.0,5.0,-9.0,4.0,1216253 -3032129,1630139958,2,30,0,1,1630051433,2,3.0,-9.0,-9.0,-9.0,4.0,1216254 -3032130,1630139960,2,12,2,2,1630051433,2,-9.0,-9.0,-9.0,9.0,-9.0,1216254 -3032131,1630139959,2,30,0,1,1630051434,2,3.0,-9.0,-9.0,-9.0,4.0,1216255 -3032132,1630139961,2,12,2,2,1630051434,2,-9.0,-9.0,-9.0,9.0,-9.0,1216255 -3032133,1630139962,2,30,0,1,1630051435,2,2.0,40.0,5.0,-9.0,4.0,1216256 -3032134,1630139964,2,10,2,2,1630051435,2,-9.0,-9.0,-9.0,7.0,-9.0,1216256 -3032135,1630139963,2,2,2,3,1630051435,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216256 -3032136,1630139965,2,0,2,4,1630051435,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216256 -3032137,1630140244,2,30,0,1,1630051436,2,1.0,20.0,6.0,-9.0,4.0,1216257 -3032138,1630140246,2,9,2,2,1630051436,1,-9.0,-9.0,-9.0,6.0,-9.0,1216257 -3032139,1630140248,2,6,2,3,1630051436,2,-9.0,-9.0,-9.0,3.0,-9.0,1216257 -3032140,1630140250,2,3,2,4,1630051436,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216257 -3032141,1630140245,2,30,0,1,1630051437,2,1.0,20.0,6.0,-9.0,4.0,1216258 -3032142,1630140247,2,9,2,2,1630051437,1,-9.0,-9.0,-9.0,6.0,-9.0,1216258 -3032143,1630140249,2,6,2,3,1630051437,2,-9.0,-9.0,-9.0,3.0,-9.0,1216258 -3032144,1630140251,2,3,2,4,1630051437,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216258 -3032145,1630140271,2,30,0,1,1630051438,2,1.0,25.0,4.0,-9.0,4.0,1216259 -3032146,1630140272,2,7,2,2,1630051438,1,-9.0,-9.0,-9.0,4.0,-9.0,1216259 -3032147,1630140273,2,2,2,3,1630051438,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216259 -3032148,1630140274,2,1,2,4,1630051438,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216259 -3032149,1630140463,2,38,0,1,1630051439,2,3.0,-9.0,-9.0,-9.0,4.0,1216260 -3032150,1630140465,2,18,2,2,1630051439,1,1.0,8.0,4.0,14.0,4.0,1216260 -3032151,1630140466,2,11,2,3,1630051439,2,-9.0,-9.0,-9.0,7.0,-9.0,1216260 -3032152,1630140464,2,64,6,4,1630051439,2,6.0,-9.0,-9.0,-9.0,4.0,1216260 -3032153,1630140611,2,29,0,1,1630051440,1,1.0,40.0,1.0,-9.0,4.0,1216261 -3032154,1630140393,2,42,0,1,1630051441,2,1.0,38.0,1.0,15.0,4.0,1216262 -3032155,1630140520,2,25,0,1,1630051442,2,1.0,40.0,1.0,-9.0,4.0,1216263 -3032156,1630140521,2,6,2,2,1630051442,2,-9.0,-9.0,-9.0,2.0,-9.0,1216263 -3032157,1630140522,2,2,2,3,1630051442,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216263 -3032158,1630140065,2,31,0,1,1630051443,2,1.0,30.0,1.0,15.0,4.0,1216264 -3032159,1630140067,2,7,2,2,1630051443,2,-9.0,-9.0,-9.0,4.0,-9.0,1216264 -3032160,1630140066,2,3,2,3,1630051443,1,-9.0,-9.0,-9.0,1.0,-9.0,1216264 -3032161,1630140068,2,25,0,1,1630051444,2,1.0,40.0,5.0,-9.0,4.0,1216265 -3032162,1630140069,2,1,2,2,1630051444,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216265 -3032163,1630140369,2,32,0,1,1630051445,1,1.0,40.0,1.0,-9.0,4.0,1216266 -3032164,1630140371,2,7,2,2,1630051445,2,-9.0,-9.0,-9.0,4.0,-9.0,1216266 -3032165,1630140373,2,6,2,3,1630051445,2,-9.0,-9.0,-9.0,3.0,-9.0,1216266 -3032166,1630140367,2,29,13,4,1630051445,2,1.0,25.0,1.0,-9.0,4.0,1216266 -3032167,1630140424,2,26,0,1,1630051446,2,1.0,15.0,1.0,-9.0,4.0,1216267 -3032168,1630140426,2,6,2,2,1630051446,1,-9.0,-9.0,-9.0,3.0,-9.0,1216267 -3032169,1630140430,2,2,2,3,1630051446,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216267 -3032170,1630140428,2,34,13,4,1630051446,1,1.0,25.0,1.0,-9.0,4.0,1216267 -3032171,1630140001,2,25,0,1,1630051447,2,1.0,40.0,1.0,15.0,4.0,1216268 -3032172,1630140002,2,9,2,2,1630051447,1,-9.0,-9.0,-9.0,5.0,-9.0,1216268 -3032173,1630140004,2,4,2,3,1630051447,2,-9.0,-9.0,-9.0,1.0,-9.0,1216268 -3032174,1630140003,2,29,13,4,1630051447,1,1.0,40.0,1.0,-9.0,2.0,1216268 -3032175,1630140425,2,26,0,1,1630051448,2,1.0,15.0,1.0,-9.0,4.0,1216269 -3032176,1630140427,2,6,2,2,1630051448,1,-9.0,-9.0,-9.0,3.0,-9.0,1216269 -3032177,1630140431,2,2,2,3,1630051448,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216269 -3032178,1630140429,2,34,13,4,1630051448,1,1.0,25.0,1.0,-9.0,4.0,1216269 -3032179,1630140216,2,31,0,1,1630051449,1,2.0,40.0,6.0,-9.0,4.0,1216270 -3032180,1630140217,2,2,2,2,1630051449,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216270 -3032181,1630140215,2,22,13,3,1630051449,2,1.0,25.0,1.0,15.0,4.0,1216270 -3032182,1630140047,2,60,0,1,1630051450,2,6.0,-9.0,-9.0,-9.0,4.0,1216271 -3032183,1630140551,2,56,0,1,1630051451,2,1.0,40.0,1.0,-9.0,4.0,1216272 -3032184,1630140461,2,59,0,1,1630051452,2,1.0,40.0,1.0,-9.0,4.0,1216273 -3032185,1630139912,2,50,0,1,1630051453,2,3.0,40.0,5.0,-9.0,4.0,1216274 -3032186,1630139916,2,50,13,2,1630051453,1,1.0,20.0,1.0,-9.0,4.0,1216274 -3032187,1630139920,2,48,15,3,1630051453,1,1.0,25.0,1.0,-9.0,4.0,1216274 -3032188,1630139908,1,47,15,4,1630051453,2,3.0,-9.0,-9.0,-9.0,4.0,1216274 -3032189,1630139913,2,50,0,1,1630051454,2,3.0,40.0,5.0,-9.0,4.0,1216275 -3032190,1630139917,2,50,13,2,1630051454,1,1.0,20.0,1.0,-9.0,4.0,1216275 -3032191,1630139921,2,48,15,3,1630051454,1,1.0,25.0,1.0,-9.0,4.0,1216275 -3032192,1630139909,1,47,15,4,1630051454,2,3.0,-9.0,-9.0,-9.0,4.0,1216275 -3032193,1630139914,2,50,0,1,1630051455,2,3.0,40.0,5.0,-9.0,4.0,1216276 -3032194,1630139918,2,50,13,2,1630051455,1,1.0,20.0,1.0,-9.0,4.0,1216276 -3032195,1630139922,2,48,15,3,1630051455,1,1.0,25.0,1.0,-9.0,4.0,1216276 -3032196,1630139910,1,47,15,4,1630051455,2,3.0,-9.0,-9.0,-9.0,4.0,1216276 -3032197,1630140603,4,47,0,1,1630051456,2,1.0,35.0,4.0,-9.0,4.0,1216277 -3032198,1630140601,2,24,2,2,1630051456,1,1.0,32.0,1.0,15.0,4.0,1216277 -3032199,1630140604,4,59,5,3,1630051456,2,6.0,-9.0,-9.0,-9.0,4.0,1216277 -3032200,1630140602,2,25,10,4,1630051456,1,3.0,-9.0,-9.0,-9.0,4.0,1216277 -3032201,1630140094,2,58,0,1,1630051457,2,1.0,40.0,1.0,-9.0,4.0,1216278 -3032202,1630140095,2,21,2,2,1630051457,1,1.0,32.0,2.0,-9.0,4.0,1216278 -3032203,1630140096,2,58,13,3,1630051457,1,6.0,-9.0,-9.0,-9.0,2.0,1216278 -3032204,1630140120,2,46,0,1,1630051458,2,1.0,37.0,1.0,16.0,4.0,1216279 -3032205,1630140121,2,30,2,2,1630051458,1,1.0,27.0,3.0,-9.0,4.0,1216279 -3032206,1630140378,2,62,0,1,1630051459,2,6.0,-9.0,-9.0,-9.0,4.0,1216280 -3032207,1630140380,2,42,2,2,1630051459,2,3.0,-9.0,-9.0,-9.0,4.0,1216280 -3032208,1630140382,2,11,7,3,1630051459,1,-9.0,-9.0,-9.0,8.0,-9.0,1216280 -3032209,1630140384,2,6,7,4,1630051459,2,-9.0,-9.0,-9.0,3.0,-9.0,1216280 -3032210,1630140366,2,60,0,1,1630051460,2,6.0,-9.0,-9.0,-9.0,4.0,1216281 -3032211,1630140141,2,58,0,1,1630051461,2,6.0,-9.0,-9.0,-9.0,4.0,1216282 -3032212,1630140050,2,61,0,1,1630051462,2,6.0,12.0,6.0,-9.0,4.0,1216283 -3032213,1630140623,2,62,0,1,1630051463,1,6.0,-9.0,-9.0,-9.0,2.0,1216284 -3032214,1630140597,2,50,0,1,1630051464,1,3.0,-9.0,-9.0,-9.0,4.0,1216285 -3032215,1630140535,2,51,0,1,1630051465,2,3.0,40.0,3.0,-9.0,2.0,1216286 -3032216,1630140401,2,57,0,1,1630051466,2,6.0,-9.0,-9.0,-9.0,4.0,1216287 -3032217,1630140409,2,62,0,1,1630051467,2,6.0,-9.0,-9.0,-9.0,4.0,1216288 -3032218,1630140584,2,58,0,1,1630051468,1,6.0,-9.0,-9.0,-9.0,4.0,1216289 -3032219,1630140042,2,51,0,1,1630051469,2,6.0,-9.0,-9.0,-9.0,4.0,1216290 -3032220,1630140605,2,62,0,1,1630051470,1,6.0,-9.0,-9.0,-9.0,2.0,1216291 -3032221,1630139980,2,61,0,1,1630051471,2,6.0,-9.0,-9.0,-9.0,4.0,1216292 -3032222,1630140402,2,57,0,1,1630051472,2,6.0,-9.0,-9.0,-9.0,4.0,1216293 -3032223,1630140612,2,53,0,1,1630051473,1,6.0,-9.0,-9.0,-9.0,4.0,1216294 -3032224,1630140624,2,62,0,1,1630051474,1,6.0,-9.0,-9.0,-9.0,2.0,1216295 -3032225,1630140591,2,49,0,1,1630051475,1,3.0,-9.0,-9.0,-9.0,4.0,1216296 -3032226,1630140285,2,52,0,1,1630051476,2,6.0,-9.0,-9.0,-9.0,4.0,1216297 -3032227,1630140613,2,64,0,1,1630051477,1,6.0,-9.0,-9.0,-9.0,4.0,1216298 -3032228,1630139957,2,47,0,1,1630051478,2,3.0,-9.0,-9.0,-9.0,4.0,1216299 -3032229,1630140596,2,55,0,1,1630051479,1,6.0,-9.0,-9.0,-9.0,4.0,1216300 -3032230,1630140552,2,58,0,1,1630051480,2,6.0,-9.0,-9.0,-9.0,4.0,1216301 -3032231,1630140553,2,58,0,1,1630051481,2,6.0,-9.0,-9.0,-9.0,4.0,1216302 -3032232,1630140478,2,46,0,1,1630051482,2,3.0,-9.0,-9.0,-9.0,4.0,1216303 -3032233,1630140609,2,51,0,1,1630051483,1,6.0,40.0,6.0,-9.0,4.0,1216304 -3032234,1630140346,2,63,0,1,1630051484,2,6.0,-9.0,-9.0,-9.0,4.0,1216305 -3032235,1630140093,2,53,0,1,1630051485,2,6.0,-9.0,-9.0,-9.0,4.0,1216306 -3032236,1630140318,2,47,0,1,1630051486,2,6.0,-9.0,-9.0,-9.0,4.0,1216307 -3032237,1630140080,2,47,0,1,1630051487,2,3.0,-9.0,-9.0,-9.0,4.0,1216308 -3032238,1630140082,2,20,2,2,1630051487,2,3.0,20.0,5.0,-9.0,4.0,1216308 -3032239,1630140084,2,19,2,3,1630051487,2,3.0,20.0,6.0,-9.0,4.0,1216308 -3032240,1630140468,2,59,0,1,1630051488,2,6.0,-9.0,-9.0,-9.0,4.0,1216309 -3032241,1630140469,2,53,13,2,1630051488,1,6.0,-9.0,-9.0,-9.0,4.0,1216309 -3032242,1630139845,2,51,0,1,1630051489,1,3.0,-9.0,-9.0,-9.0,4.0,1216310 -3032243,1630139844,2,71,6,2,1630051489,2,6.0,-9.0,-9.0,-9.0,4.0,1216310 -3032244,1630140070,2,46,0,1,1630051490,2,6.0,25.0,5.0,-9.0,4.0,1216311 -3032245,1630140071,2,20,2,2,1630051490,2,6.0,-9.0,-9.0,-9.0,4.0,1216311 -3032246,1630140258,2,63,0,1,1630051491,2,6.0,-9.0,-9.0,-9.0,4.0,1216312 -3032247,1630140259,2,47,2,2,1630051491,1,6.0,-9.0,-9.0,-9.0,4.0,1216312 -3032248,1630140022,2,59,0,1,1630051492,2,6.0,-9.0,-9.0,-9.0,4.0,1216313 -3032249,1630140023,2,22,2,2,1630051492,2,3.0,-9.0,-9.0,-9.0,4.0,1216313 -3032250,1630140606,2,54,0,1,1630051493,1,3.0,-9.0,-9.0,-9.0,2.0,1216314 -3032251,1630140607,2,15,2,2,1630051493,2,-9.0,-9.0,-9.0,12.0,-9.0,1216314 -3032252,1630140319,2,55,0,1,1630051494,2,1.0,40.0,1.0,-9.0,4.0,1216315 -3032253,1630140543,2,51,0,1,1630051495,2,1.0,20.0,6.0,-9.0,4.0,1216316 -3032254,1630140166,2,48,0,1,1630051496,2,1.0,20.0,1.0,-9.0,4.0,1216317 -3032255,1630140544,2,51,0,1,1630051497,2,1.0,20.0,6.0,-9.0,4.0,1216318 -3032256,1630139999,2,50,0,1,1630051498,2,1.0,40.0,1.0,-9.0,4.0,1216319 -3032257,1630140000,2,24,2,2,1630051498,2,3.0,-9.0,-9.0,-9.0,4.0,1216319 -3032258,1630140020,2,61,0,1,1630051499,2,1.0,25.0,1.0,-9.0,4.0,1216320 -3032259,1630140021,2,27,2,2,1630051499,1,1.0,2.0,1.0,-9.0,4.0,1216320 -3032260,1630139872,2,68,0,1,1630051500,2,6.0,-9.0,-9.0,-9.0,4.0,1216321 -3032261,1630139854,2,78,0,1,1630051501,2,6.0,-9.0,-9.0,-9.0,4.0,1216322 -3032262,1630139852,2,65,0,1,1630051502,2,6.0,-9.0,-9.0,-9.0,4.0,1216323 -3032263,1630140630,2,67,0,1,1630051503,1,6.0,-9.0,-9.0,-9.0,2.0,1216324 -3032264,1630139853,2,73,0,1,1630051504,2,6.0,-9.0,-9.0,-9.0,4.0,1216325 -3032265,1630139773,2,68,0,1,1630051505,2,6.0,-9.0,-9.0,-9.0,4.0,1216326 -3032266,1630139791,2,74,0,1,1630051506,2,6.0,-9.0,-9.0,-9.0,4.0,1216327 -3032267,1630139877,2,90,0,1,1630051507,2,6.0,-9.0,-9.0,-9.0,4.0,1216328 -3032268,1630139840,2,69,0,1,1630051508,2,6.0,-9.0,-9.0,-9.0,4.0,1216329 -3032269,1630139756,2,82,0,1,1630051509,2,6.0,-9.0,-9.0,-9.0,4.0,1216330 -3032270,1630139757,2,82,0,1,1630051510,2,6.0,-9.0,-9.0,-9.0,4.0,1216331 -3032271,1630139824,2,69,0,1,1630051511,2,6.0,-9.0,-9.0,-9.0,4.0,1216332 -3032272,1630139830,2,77,0,1,1630051512,2,6.0,-9.0,-9.0,-9.0,4.0,1216333 -3032273,1630139867,2,69,0,1,1630051513,2,6.0,-9.0,-9.0,-9.0,4.0,1216334 -3032274,1630139772,2,71,0,1,1630051514,2,6.0,-9.0,-9.0,-9.0,4.0,1216335 -3032275,1630140634,2,83,0,1,1630051515,1,6.0,-9.0,-9.0,-9.0,2.0,1216336 -3032276,1630139832,2,81,0,1,1630051516,2,6.0,-9.0,-9.0,-9.0,4.0,1216337 -3032277,1630139855,2,84,0,1,1630051517,2,3.0,-9.0,-9.0,-9.0,4.0,1216338 -3032278,1630140631,2,86,0,1,1630051518,1,6.0,-9.0,-9.0,-9.0,2.0,1216339 -3032279,1630139859,2,69,0,1,1630051519,2,6.0,-9.0,-9.0,-9.0,4.0,1216340 -3032280,1630139808,2,74,0,1,1630051520,2,6.0,-9.0,-9.0,-9.0,4.0,1216341 -3032281,1630139747,2,73,0,1,1630051521,2,6.0,-9.0,-9.0,-9.0,4.0,1216342 -3032282,1630139748,2,43,2,2,1630051521,2,6.0,-9.0,-9.0,-9.0,4.0,1216342 -3032283,1630139868,2,73,0,1,1630051522,2,6.0,-9.0,-9.0,-9.0,4.0,1216343 -3032284,1630139869,2,39,2,2,1630051522,2,6.0,-9.0,-9.0,-9.0,4.0,1216343 -3032285,1630140448,2,33,0,1,1630051523,2,3.0,-9.0,-9.0,-9.0,4.0,1216344 -3032286,1630140449,2,10,2,2,1630051523,1,-9.0,-9.0,-9.0,7.0,-9.0,1216344 -3032287,1630140451,2,5,2,3,1630051523,2,-9.0,-9.0,-9.0,2.0,-9.0,1216344 -3032288,1630140450,2,4,2,4,1630051523,1,-9.0,-9.0,-9.0,1.0,-9.0,1216344 -3032289,1630140280,2,42,0,1,1630051524,1,6.0,-9.0,-9.0,-9.0,4.0,1216345 -3032290,1630140278,2,38,1,2,1630051524,2,3.0,-9.0,-9.0,-9.0,4.0,1216345 -3032291,1630140279,2,19,4,3,1630051524,2,6.0,-9.0,-9.0,-9.0,4.0,1216345 -3032292,1630140281,2,18,4,4,1630051524,1,6.0,-9.0,-9.0,-9.0,4.0,1216345 -3032293,1630139884,2,94,0,1,1630051525,2,1.0,36.0,2.0,-9.0,4.0,1216346 -3032294,1630139887,2,13,7,2,1630051525,1,-9.0,-9.0,-9.0,11.0,-9.0,1216346 -3032295,1630139885,2,60,15,3,1630051525,2,6.0,-9.0,-9.0,-9.0,4.0,1216346 -3032296,1630139886,2,59,15,4,1630051525,2,1.0,40.0,1.0,-9.0,4.0,1216346 -3032297,1630140411,2,61,0,1,1630051526,2,6.0,-9.0,-9.0,-9.0,4.0,1216347 -3032298,1630140412,2,55,1,2,1630051526,1,6.0,-9.0,-9.0,-9.0,2.0,1216347 -3032299,1630140295,2,52,0,1,1630051527,1,1.0,40.0,1.0,-9.0,2.0,1216348 -3032300,1630140294,2,50,1,2,1630051527,2,1.0,30.0,1.0,-9.0,4.0,1216348 -3032301,1630140390,2,59,0,1,1630051528,2,1.0,31.0,4.0,-9.0,4.0,1216349 -3032302,1630140392,2,41,2,2,1630051528,1,3.0,-9.0,-9.0,-9.0,4.0,1216349 -3032303,1630140391,2,21,7,3,1630051528,2,1.0,38.0,5.0,-9.0,4.0,1216349 -3032304,1630140025,2,28,0,1,1630051529,2,3.0,-9.0,-9.0,-9.0,4.0,1216350 -3032305,1630140031,2,11,2,2,1630051529,2,-9.0,-9.0,-9.0,7.0,-9.0,1216350 -3032306,1630140029,2,9,2,3,1630051529,1,-9.0,-9.0,-9.0,6.0,-9.0,1216350 -3032307,1630140033,2,6,2,4,1630051529,2,-9.0,-9.0,-9.0,5.0,-9.0,1216350 -3032308,1630140035,2,5,2,5,1630051529,2,-9.0,-9.0,-9.0,3.0,-9.0,1216350 -3032309,1630140027,2,55,6,6,1630051529,2,6.0,-9.0,-9.0,-9.0,4.0,1216350 -3032310,1630139796,2,76,0,1,1630051530,2,6.0,-9.0,-9.0,-9.0,4.0,1216351 -3032311,1630139797,2,42,2,2,1630051530,1,3.0,-9.0,-9.0,-9.0,4.0,1216351 -3032312,1630140408,2,58,0,1,1630051531,2,6.0,-9.0,-9.0,-9.0,4.0,1216352 -3032313,1630140506,2,79,0,1,1630051532,1,6.0,-9.0,-9.0,-9.0,4.0,1216353 -3032314,1630140503,2,62,2,2,1630051532,2,6.0,-9.0,-9.0,-9.0,4.0,1216353 -3032315,1630140505,2,50,15,3,1630051532,1,6.0,-9.0,-9.0,-9.0,4.0,1216353 -3032316,1630140507,2,60,0,1,1630051533,2,6.0,-9.0,-9.0,-9.0,4.0,1216354 -3032317,1630140142,2,26,0,1,1630051534,2,6.0,-9.0,-9.0,-9.0,4.0,1216355 -3032318,1630140143,2,6,2,2,1630051534,1,-9.0,-9.0,-9.0,2.0,-9.0,1216355 -3032319,1630140170,2,29,0,1,1630051535,2,3.0,40.0,4.0,-9.0,4.0,1216356 -3032320,1630140176,2,8,2,2,1630051535,2,-9.0,-9.0,-9.0,4.0,-9.0,1216356 -3032321,1630140172,2,6,2,3,1630051535,1,-9.0,-9.0,-9.0,3.0,-9.0,1216356 -3032322,1630140174,2,4,2,4,1630051535,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216356 -3032323,1630140625,2,56,0,1,1630051536,1,6.0,-9.0,-9.0,-9.0,4.0,1216357 -3032324,1630140626,2,23,2,2,1630051536,1,6.0,-9.0,-9.0,-9.0,4.0,1216357 -3032325,1630140627,2,23,2,3,1630051536,1,6.0,-9.0,-9.0,-9.0,4.0,1216357 -3032326,1630140628,2,20,2,4,1630051536,1,6.0,-9.0,-9.0,-9.0,4.0,1216357 -3032327,1630140523,2,28,0,1,1630051537,2,3.0,-9.0,-9.0,-9.0,4.0,1216358 -3032328,1630140524,2,4,2,2,1630051537,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216358 -3032329,1630139760,2,82,0,1,1630051538,2,6.0,-9.0,-9.0,-9.0,4.0,1216359 -3032330,1630140413,2,32,0,1,1630051539,2,1.0,30.0,1.0,-9.0,4.0,1216360 -3032331,1630140417,2,15,2,2,1630051539,2,-9.0,-9.0,-9.0,12.0,-9.0,1216360 -3032332,1630140415,2,1,2,3,1630051539,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216360 -3032333,1630140414,2,27,5,4,1630051539,2,6.0,-9.0,-9.0,-9.0,4.0,1216360 -3032334,1630140418,2,10,10,5,1630051539,2,-9.0,-9.0,-9.0,7.0,-9.0,1216360 -3032335,1630140416,2,2,10,6,1630051539,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216360 -3032336,1630140598,2,54,0,1,1630051540,1,1.0,25.0,1.0,-9.0,4.0,1216361 -3032337,1630139903,2,70,0,1,1630051541,2,6.0,-9.0,-9.0,-9.0,4.0,1216362 -3032338,1630139905,2,40,2,2,1630051541,1,3.0,-9.0,-9.0,-9.0,4.0,1216362 -3032339,1630139904,2,16,7,3,1630051541,1,6.0,-9.0,-9.0,12.0,-9.0,1216362 -3032340,1630140101,2,32,0,1,1630051542,2,1.0,40.0,1.0,-9.0,4.0,1216363 -3032341,1630140102,2,16,2,2,1630051542,1,6.0,-9.0,-9.0,13.0,-9.0,1216363 -3032342,1630140103,2,6,2,3,1630051542,2,-9.0,-9.0,-9.0,3.0,-9.0,1216363 -3032343,1630140104,2,5,2,4,1630051542,2,-9.0,-9.0,-9.0,2.0,-9.0,1216363 -3032344,1630140405,2,63,0,1,1630051543,2,6.0,-9.0,-9.0,-9.0,4.0,1216364 -3032345,1630140406,2,15,10,2,1630051543,2,-9.0,-9.0,-9.0,12.0,-9.0,1216364 -3032346,1630140162,2,54,0,1,1630051544,2,3.0,-9.0,-9.0,-9.0,4.0,1216365 -3032347,1630140163,2,28,2,2,1630051544,1,6.0,-9.0,-9.0,-9.0,4.0,1216365 -3032348,1630140496,2,51,0,1,1630051545,2,6.0,40.0,3.0,-9.0,4.0,1216366 -3032349,1630140497,2,17,2,2,1630051545,1,6.0,-9.0,-9.0,14.0,4.0,1216366 -3032350,1630140498,2,14,2,3,1630051545,2,-9.0,-9.0,-9.0,11.0,-9.0,1216366 -3032351,1630139789,2,93,0,1,1630051546,2,6.0,-9.0,-9.0,-9.0,4.0,1216367 -3032352,1630139795,2,74,0,1,1630051547,1,6.0,40.0,6.0,-9.0,2.0,1216368 -3032353,1630139792,2,70,1,2,1630051547,2,6.0,-9.0,-9.0,-9.0,4.0,1216368 -3032354,1630139793,2,45,2,3,1630051547,2,1.0,40.0,1.0,-9.0,4.0,1216368 -3032355,1630139794,2,24,7,4,1630051547,2,3.0,25.0,6.0,15.0,4.0,1216368 -3032356,1630140006,2,47,0,1,1630051548,1,2.0,40.0,1.0,-9.0,2.0,1216369 -3032357,1630140005,2,52,1,2,1630051548,2,1.0,16.0,6.0,-9.0,4.0,1216369 -3032358,1630140331,2,24,0,1,1630051549,1,1.0,70.0,4.0,-9.0,4.0,1216370 -3032359,1630140332,2,1,2,2,1630051549,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216370 -3032360,1630140333,2,4,4,3,1630051549,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216370 -3032361,1630140330,2,21,13,4,1630051549,2,1.0,24.0,4.0,-9.0,4.0,1216370 -3032362,1630140086,2,36,0,1,1630051550,2,3.0,-9.0,-9.0,-9.0,4.0,1216371 -3032363,1630140087,2,14,2,2,1630051550,1,-9.0,-9.0,-9.0,10.0,-9.0,1216371 -3032364,1630140089,2,9,2,3,1630051550,2,-9.0,-9.0,-9.0,8.0,-9.0,1216371 -3032365,1630140088,2,44,5,4,1630051550,1,3.0,-9.0,-9.0,-9.0,4.0,1216371 -3032366,1630140008,2,64,0,1,1630051551,1,1.0,36.0,1.0,-9.0,2.0,1216372 -3032367,1630140007,2,53,1,2,1630051551,2,1.0,40.0,1.0,-9.0,4.0,1216372 -3032368,1630140370,2,32,0,1,1630051552,1,1.0,40.0,1.0,-9.0,4.0,1216373 -3032369,1630140372,2,7,2,2,1630051552,2,-9.0,-9.0,-9.0,4.0,-9.0,1216373 -3032370,1630140374,2,6,2,3,1630051552,2,-9.0,-9.0,-9.0,3.0,-9.0,1216373 -3032371,1630140368,2,29,13,4,1630051552,2,1.0,25.0,1.0,-9.0,4.0,1216373 -3032372,1630140265,2,59,0,1,1630051553,2,6.0,-9.0,-9.0,-9.0,4.0,1216374 -3032373,1630140266,2,35,2,2,1630051553,1,6.0,-9.0,-9.0,-9.0,4.0,1216374 -3032374,1630140599,2,43,0,1,1630051554,1,1.0,30.0,1.0,-9.0,2.0,1216375 -3032375,1630140600,2,36,11,2,1630051554,1,1.0,40.0,1.0,15.0,4.0,1216375 -3032376,1630139906,1,74,0,1,1630051555,2,6.0,-9.0,-9.0,-9.0,4.0,1216376 -3032377,1630140453,2,57,0,1,1630051556,1,1.0,40.0,1.0,-9.0,4.0,1216377 -3032378,1630140452,2,59,1,2,1630051556,2,3.0,-9.0,-9.0,-9.0,4.0,1216377 -3032379,1630140454,2,25,2,3,1630051556,1,1.0,40.0,3.0,-9.0,4.0,1216377 -3032380,1630139889,2,77,0,1,1630051557,2,1.0,35.0,1.0,-9.0,4.0,1216378 -3032381,1630139890,2,56,2,2,1630051557,2,1.0,30.0,1.0,-9.0,4.0,1216378 -3032382,1630140637,4,38,0,1,1630051558,1,3.0,30.0,6.0,15.0,3.0,1216379 -3032383,1630140542,2,40,0,1,1630051559,2,1.0,40.0,1.0,-9.0,4.0,1216380 -3032384,1630140144,2,54,0,1,1630051560,2,6.0,-9.0,-9.0,-9.0,4.0,1216381 -3032385,1630140145,2,17,2,2,1630051560,2,6.0,-9.0,-9.0,13.0,4.0,1216381 -3032386,1630139940,4,60,0,1,1630051561,1,1.0,32.0,1.0,-9.0,4.0,1216382 -3032387,1630139939,1,54,1,2,1630051561,2,6.0,-9.0,-9.0,-9.0,4.0,1216382 -3032388,1630139941,4,30,2,3,1630051561,2,1.0,40.0,5.0,-9.0,4.0,1216382 -3032389,1630140197,2,36,0,1,1630051562,2,6.0,-9.0,-9.0,15.0,4.0,1216383 -3032390,1630140203,2,17,2,2,1630051562,2,6.0,-9.0,-9.0,14.0,4.0,1216383 -3032391,1630140200,2,13,2,3,1630051562,1,-9.0,-9.0,-9.0,9.0,-9.0,1216383 -3032392,1630140206,2,11,2,4,1630051562,2,-9.0,-9.0,-9.0,7.0,-9.0,1216383 -3032393,1630140158,2,55,0,1,1630051563,2,1.0,26.0,1.0,-9.0,4.0,1216384 -3032394,1630140159,2,15,7,2,1630051563,2,-9.0,-9.0,-9.0,10.0,-9.0,1216384 -3032395,1630140160,2,14,7,3,1630051563,2,-9.0,-9.0,-9.0,10.0,-9.0,1216384 -3032396,1630140161,2,11,10,4,1630051563,2,-9.0,-9.0,-9.0,6.0,-9.0,1216384 -3032397,1630140558,2,54,0,1,1630051564,2,1.0,40.0,1.0,-9.0,4.0,1216385 -3032398,1630140559,2,56,1,2,1630051564,1,1.0,40.0,1.0,-9.0,2.0,1216385 -3032399,1630139924,1,26,0,1,1630051565,2,1.0,40.0,5.0,-9.0,4.0,1216386 -3032400,1630140133,2,57,0,1,1630051566,2,6.0,-9.0,-9.0,-9.0,4.0,1216387 -3032401,1630140164,2,42,0,1,1630051567,2,1.0,52.0,1.0,-9.0,2.0,1216388 -3032402,1630140165,2,46,13,2,1630051567,2,1.0,30.0,4.0,-9.0,4.0,1216388 -3032403,1630140487,2,42,0,1,1630051568,2,6.0,-9.0,-9.0,-9.0,4.0,1216389 -3032404,1630139982,2,50,0,1,1630051569,1,6.0,-9.0,-9.0,-9.0,4.0,1216390 -3032405,1630140090,2,22,0,1,1630051570,2,1.0,45.0,4.0,-9.0,4.0,1216391 -3032406,1630140091,2,2,2,2,1630051570,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216391 -3032407,1630140092,2,1,2,3,1630051570,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216391 -3032408,1630140578,2,34,0,1,1630051571,1,3.0,-9.0,-9.0,-9.0,4.0,1216392 -3032409,1630140579,2,18,10,2,1630051571,1,6.0,-9.0,-9.0,14.0,4.0,1216392 -3032410,1630140308,2,60,0,1,1630051572,1,6.0,-9.0,-9.0,-9.0,2.0,1216393 -3032411,1630140307,2,36,2,2,1630051572,2,1.0,40.0,1.0,-9.0,4.0,1216393 -3032412,1630140309,2,35,2,3,1630051572,1,1.0,40.0,1.0,15.0,4.0,1216393 -3032413,1630140310,2,11,7,4,1630051572,2,-9.0,-9.0,-9.0,8.0,-9.0,1216393 -3032414,1630139755,2,75,0,1,1630051573,1,6.0,-9.0,-9.0,-9.0,4.0,1216394 -3032415,1630139752,2,75,1,2,1630051573,2,6.0,-9.0,-9.0,-9.0,4.0,1216394 -3032416,1630139754,2,51,2,3,1630051573,1,3.0,-9.0,-9.0,-9.0,4.0,1216394 -3032417,1630139753,2,24,7,4,1630051573,2,1.0,32.0,6.0,-9.0,4.0,1216394 -3032418,1630140073,2,58,0,1,1630051574,1,3.0,40.0,4.0,-9.0,2.0,1216395 -3032419,1630140072,2,52,1,2,1630051574,2,1.0,40.0,1.0,-9.0,4.0,1216395 -3032420,1630140074,2,18,2,3,1630051574,1,1.0,20.0,4.0,14.0,4.0,1216395 -3032421,1630140167,2,56,0,1,1630051575,2,1.0,60.0,2.0,-9.0,4.0,1216396 -3032422,1630140168,2,58,5,2,1630051575,2,1.0,8.0,3.0,-9.0,4.0,1216396 -3032423,1630140224,2,32,0,1,1630051576,2,3.0,8.0,4.0,-9.0,4.0,1216397 -3032424,1630140226,2,8,2,2,1630051576,2,-9.0,-9.0,-9.0,4.0,-9.0,1216397 -3032425,1630140225,2,34,13,3,1630051576,1,1.0,45.0,2.0,-9.0,4.0,1216397 -3032426,1630139880,2,64,0,1,1630051577,2,1.0,80.0,1.0,-9.0,4.0,1216398 -3032427,1630139879,2,71,5,2,1630051577,2,6.0,-9.0,-9.0,-9.0,4.0,1216398 -3032428,1630139881,2,24,7,3,1630051577,2,1.0,40.0,1.0,-9.0,4.0,1216398 -3032429,1630139882,2,3,7,4,1630051577,2,-9.0,-9.0,-9.0,1.0,-9.0,1216398 -3032430,1630140562,2,47,0,1,1630051578,1,6.0,-9.0,-9.0,-9.0,4.0,1216399 -3032431,1630140560,2,17,2,2,1630051578,1,6.0,-9.0,-9.0,13.0,4.0,1216399 -3032432,1630140561,2,16,2,3,1630051578,1,6.0,-9.0,-9.0,12.0,-9.0,1216399 -3032433,1630140563,2,70,15,4,1630051578,1,6.0,-9.0,-9.0,-9.0,2.0,1216399 -3032434,1630140237,2,52,0,1,1630051579,1,1.0,60.0,1.0,-9.0,2.0,1216400 -3032435,1630140236,2,51,1,2,1630051579,2,6.0,10.0,6.0,-9.0,4.0,1216400 -3032436,1630140238,2,25,2,3,1630051579,1,1.0,70.0,1.0,15.0,2.0,1216400 -3032437,1630140239,2,23,2,4,1630051579,1,3.0,40.0,5.0,-9.0,4.0,1216400 -3032438,1630140587,2,42,0,1,1630051580,1,6.0,-9.0,-9.0,-9.0,4.0,1216401 -3032439,1630140588,2,30,10,2,1630051580,1,6.0,40.0,5.0,-9.0,4.0,1216401 -3032440,1630140526,2,36,0,1,1630051581,2,1.0,40.0,3.0,-9.0,4.0,1216402 -3032441,1630140530,2,43,15,2,1630051581,1,1.0,40.0,6.0,-9.0,4.0,1216402 -3032442,1630140528,2,4,15,3,1630051581,1,-9.0,-9.0,-9.0,2.0,-9.0,1216402 -3032443,1630140364,2,50,0,1,1630051582,1,3.0,40.0,5.0,-9.0,4.0,1216403 -3032444,1630140363,2,44,1,2,1630051582,2,3.0,50.0,5.0,-9.0,4.0,1216403 -3032445,1630140365,2,28,4,3,1630051582,1,3.0,-9.0,-9.0,-9.0,4.0,1216403 -3032446,1630139847,2,87,0,1,1630051583,1,6.0,-9.0,-9.0,-9.0,4.0,1216404 -3032447,1630139846,2,83,1,2,1630051583,2,6.0,-9.0,-9.0,-9.0,4.0,1216404 -3032448,1630140580,2,24,0,1,1630051584,1,1.0,35.0,1.0,-9.0,4.0,1216405 -3032449,1630140581,2,18,5,2,1630051584,1,1.0,16.0,3.0,15.0,4.0,1216405 -3032450,1630140582,2,61,11,3,1630051584,1,6.0,-9.0,-9.0,-9.0,4.0,1216405 -3032451,1630140583,2,66,12,4,1630051584,1,1.0,16.0,3.0,-9.0,4.0,1216405 -3032452,1630140049,2,26,0,1,1630051585,1,1.0,40.0,1.0,-9.0,4.0,1216406 -3032453,1630140048,2,25,13,2,1630051585,2,6.0,-9.0,-9.0,-9.0,4.0,1216406 -3032454,1630139841,2,82,0,1,1630051586,2,6.0,-9.0,-9.0,-9.0,4.0,1216407 -3032455,1630139842,2,49,2,2,1630051586,2,1.0,30.0,1.0,-9.0,4.0,1216407 -3032456,1630139843,2,21,7,3,1630051586,1,3.0,16.0,5.0,-9.0,4.0,1216407 -3032457,1630140576,2,44,0,1,1630051587,1,1.0,40.0,1.0,-9.0,4.0,1216408 -3032458,1630140577,2,25,10,2,1630051587,1,1.0,40.0,1.0,-9.0,4.0,1216408 -3032459,1630139974,2,48,0,1,1630051588,2,1.0,37.0,1.0,-9.0,4.0,1216409 -3032460,1630139975,2,49,1,2,1630051588,1,6.0,-9.0,-9.0,-9.0,4.0,1216409 -3032461,1630139976,2,11,2,3,1630051588,2,-9.0,-9.0,-9.0,7.0,-9.0,1216409 -3032462,1630140589,2,52,0,1,1630051589,1,1.0,40.0,1.0,15.0,4.0,1216410 -3032463,1630140590,2,52,15,2,1630051589,1,1.0,40.0,1.0,15.0,4.0,1216410 -3032464,1630140475,2,56,0,1,1630051590,2,1.0,40.0,1.0,-9.0,4.0,1216411 -3032465,1630140476,2,22,2,2,1630051590,1,1.0,40.0,1.0,-9.0,4.0,1216411 -3032466,1630140477,2,57,13,3,1630051590,1,6.0,-9.0,-9.0,-9.0,2.0,1216411 -3032467,1630140379,2,62,0,1,1630051591,2,6.0,-9.0,-9.0,-9.0,4.0,1216412 -3032468,1630140381,2,42,2,2,1630051591,2,3.0,-9.0,-9.0,-9.0,4.0,1216412 -3032469,1630140383,2,11,7,3,1630051591,1,-9.0,-9.0,-9.0,8.0,-9.0,1216412 -3032470,1630140385,2,6,7,4,1630051591,2,-9.0,-9.0,-9.0,3.0,-9.0,1216412 -3032471,1630140132,2,59,0,1,1630051592,2,1.0,40.0,1.0,-9.0,4.0,1216413 -3032472,1630139876,2,84,0,1,1630051593,1,6.0,-9.0,-9.0,-9.0,2.0,1216414 -3032473,1630139873,2,84,1,2,1630051593,2,6.0,-9.0,-9.0,-9.0,4.0,1216414 -3032474,1630139874,2,58,2,3,1630051593,2,1.0,40.0,3.0,-9.0,4.0,1216414 -3032475,1630139875,2,53,2,4,1630051593,2,1.0,6.0,5.0,-9.0,4.0,1216414 -3032476,1630140407,2,55,0,1,1630051594,2,1.0,37.0,1.0,-9.0,4.0,1216415 -3032477,1630139966,2,34,0,1,1630051595,2,3.0,-9.0,-9.0,15.0,4.0,1216416 -3032478,1630139967,2,15,2,2,1630051595,2,-9.0,-9.0,-9.0,12.0,-9.0,1216416 -3032479,1630139968,2,11,2,3,1630051595,2,-9.0,-9.0,-9.0,8.0,-9.0,1216416 -3032480,1630139969,2,9,2,4,1630051595,2,-9.0,-9.0,-9.0,6.0,-9.0,1216416 -3032481,1630139970,2,6,2,5,1630051595,2,-9.0,-9.0,-9.0,3.0,-9.0,1216416 -3032482,1630140016,2,74,0,1,1630051596,1,6.0,-9.0,-9.0,-9.0,4.0,1216417 -3032483,1630140015,2,64,15,2,1630051596,2,1.0,10.0,1.0,-9.0,4.0,1216417 -3032484,1630140575,2,40,0,1,1630051597,1,1.0,26.0,6.0,-9.0,4.0,1216418 -3032485,1630140130,2,51,0,1,1630051598,2,1.0,45.0,1.0,-9.0,4.0,1216419 -3032486,1630140131,2,20,2,2,1630051598,1,6.0,-9.0,-9.0,-9.0,4.0,1216419 -3032487,1630139820,2,71,0,1,1630051599,2,6.0,-9.0,-9.0,-9.0,4.0,1216420 -3032488,1630139822,2,54,10,2,1630051599,1,3.0,50.0,6.0,-9.0,4.0,1216420 -3032489,1630139823,2,39,10,3,1630051599,1,3.0,-9.0,-9.0,-9.0,4.0,1216420 -3032490,1630139821,2,17,10,4,1630051599,1,6.0,-9.0,-9.0,14.0,4.0,1216420 -3032491,1630140260,2,39,0,1,1630051600,2,3.0,-9.0,-9.0,-9.0,4.0,1216421 -3032492,1630140347,2,59,0,1,1630051601,2,2.0,38.0,1.0,-9.0,4.0,1216422 -3032493,1630140348,2,58,1,2,1630051601,1,1.0,40.0,1.0,-9.0,4.0,1216422 -3032494,1630140349,2,16,2,3,1630051601,2,6.0,-9.0,-9.0,13.0,-9.0,1216422 -3032495,1630140534,2,37,0,1,1630051602,2,1.0,35.0,2.0,-9.0,4.0,1216423 -3032496,1630139768,2,50,0,1,1630051603,1,3.0,-9.0,-9.0,-9.0,4.0,1216424 -3032497,1630139766,2,81,10,2,1630051603,2,6.0,-9.0,-9.0,-9.0,4.0,1216424 -3032498,1630139769,2,58,10,3,1630051603,1,1.0,40.0,1.0,-9.0,4.0,1216424 -3032499,1630139767,2,23,10,4,1630051603,2,1.0,16.0,1.0,15.0,4.0,1216424 -3032500,1630140403,2,57,0,1,1630051604,2,1.0,40.0,1.0,-9.0,4.0,1216425 -3032501,1630140404,2,48,5,2,1630051604,1,6.0,-9.0,-9.0,-9.0,4.0,1216425 -3032502,1630140508,2,61,0,1,1630051605,2,6.0,-9.0,-9.0,-9.0,4.0,1216426 -3032503,1630140509,2,61,12,2,1630051605,1,6.0,-9.0,-9.0,-9.0,4.0,1216426 -3032504,1630140351,2,31,0,1,1630051606,1,3.0,-9.0,-9.0,-9.0,4.0,1216427 -3032505,1630140352,2,9,2,2,1630051606,2,-9.0,-9.0,-9.0,7.0,-9.0,1216427 -3032506,1630140353,2,2,2,3,1630051606,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216427 -3032507,1630140350,3,27,13,4,1630051606,2,1.0,30.0,1.0,-9.0,4.0,1216427 -3032508,1630140455,2,55,0,1,1630051607,2,1.0,30.0,1.0,-9.0,4.0,1216428 -3032509,1630140456,2,57,5,2,1630051607,2,6.0,-9.0,-9.0,-9.0,4.0,1216428 -3032510,1630140531,2,40,0,1,1630051608,2,6.0,-9.0,-9.0,-9.0,4.0,1216429 -3032511,1630140532,2,14,2,2,1630051608,1,-9.0,-9.0,-9.0,10.0,-9.0,1216429 -3032512,1630140574,2,64,0,1,1630051609,1,1.0,20.0,4.0,-9.0,4.0,1216430 -3032513,1630140592,2,35,0,1,1630051610,1,1.0,30.0,5.0,-9.0,4.0,1216431 -3032514,1630140593,2,31,15,2,1630051610,1,1.0,40.0,1.0,-9.0,4.0,1216431 -3032515,1630140595,2,30,0,1,1630051611,1,3.0,36.0,5.0,-9.0,4.0,1216432 -3032516,1630140481,2,22,0,1,1630051612,1,1.0,40.0,1.0,-9.0,4.0,1216433 -3032517,1630140480,2,1,2,2,1630051612,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216433 -3032518,1630140479,2,22,13,3,1630051612,2,1.0,40.0,1.0,-9.0,4.0,1216433 -3032519,1630139790,2,66,0,1,1630051613,2,6.0,-9.0,-9.0,-9.0,4.0,1216434 -3032520,1630140110,2,64,0,1,1630051614,2,6.0,-9.0,-9.0,-9.0,4.0,1216435 -3032521,1630140111,2,30,2,2,1630051614,2,1.0,45.0,4.0,-9.0,4.0,1216435 -3032522,1630140076,2,43,0,1,1630051615,2,1.0,40.0,1.0,-9.0,4.0,1216436 -3032523,1630140077,2,43,1,2,1630051615,1,6.0,-9.0,-9.0,-9.0,4.0,1216436 -3032524,1630140078,2,14,2,3,1630051615,2,-9.0,-9.0,-9.0,11.0,-9.0,1216436 -3032525,1630140311,2,47,0,1,1630051616,2,6.0,-9.0,-9.0,-9.0,4.0,1216437 -3032526,1630140312,2,13,2,2,1630051616,1,-9.0,-9.0,-9.0,9.0,-9.0,1216437 -3032527,1630140313,2,13,2,3,1630051616,2,-9.0,-9.0,-9.0,9.0,-9.0,1216437 -3032528,1630140099,2,44,0,1,1630051617,1,6.0,-9.0,-9.0,-9.0,4.0,1216438 -3032529,1630140100,2,2,2,2,1630051617,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216438 -3032530,1630140098,2,40,13,3,1630051617,2,6.0,-9.0,-9.0,-9.0,4.0,1216438 -3032531,1630140635,2,76,0,1,1630051618,1,6.0,-9.0,-9.0,-9.0,2.0,1216439 -3032532,1630140639,4,36,0,1,1630051619,2,1.0,35.0,1.0,-9.0,4.0,1216440 -3032533,1630140640,4,13,2,2,1630051619,2,-9.0,-9.0,-9.0,9.0,-9.0,1216440 -3032534,1630140641,4,9,2,3,1630051619,2,-9.0,-9.0,-9.0,5.0,-9.0,1216440 -3032535,1630140642,4,4,2,4,1630051619,1,-9.0,-9.0,-9.0,1.0,-9.0,1216440 -3032536,1630140470,2,22,0,1,1630051620,2,6.0,-9.0,-9.0,-9.0,4.0,1216441 -3032537,1630140472,2,3,2,2,1630051620,2,-9.0,-9.0,-9.0,1.0,-9.0,1216441 -3032538,1630140473,2,2,2,3,1630051620,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216441 -3032539,1630140471,2,0,2,4,1630051620,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216441 -3032540,1630139771,2,65,0,1,1630051621,2,6.0,-9.0,-9.0,-9.0,4.0,1216442 -3032541,1630140457,2,38,0,1,1630051622,2,1.0,36.0,1.0,-9.0,4.0,1216443 -3032542,1630140458,2,4,2,2,1630051622,2,-9.0,-9.0,-9.0,1.0,-9.0,1216443 -3032543,1630139826,2,43,0,1,1630051623,2,1.0,40.0,3.0,-9.0,4.0,1216444 -3032544,1630139828,2,44,1,2,1630051623,1,6.0,-9.0,-9.0,-9.0,4.0,1216444 -3032545,1630139829,2,21,2,3,1630051623,1,3.0,30.0,6.0,-9.0,4.0,1216444 -3032546,1630139827,2,14,2,4,1630051623,1,-9.0,-9.0,-9.0,11.0,-9.0,1216444 -3032547,1630139825,2,65,10,5,1630051623,2,1.0,40.0,2.0,-9.0,4.0,1216444 -3032548,1630139800,2,73,0,1,1630051624,2,6.0,-9.0,-9.0,-9.0,4.0,1216445 -3032549,1630139803,2,41,2,2,1630051624,1,3.0,-9.0,-9.0,-9.0,4.0,1216445 -3032550,1630139804,2,33,7,3,1630051624,1,1.0,48.0,1.0,-9.0,4.0,1216445 -3032551,1630139801,2,22,7,4,1630051624,2,1.0,4.0,1.0,-9.0,4.0,1216445 -3032552,1630139802,2,10,7,5,1630051624,1,-9.0,-9.0,-9.0,7.0,-9.0,1216445 -3032553,1630139805,2,18,10,6,1630051624,1,3.0,20.0,6.0,15.0,4.0,1216445 -3032554,1630140060,2,54,0,1,1630051625,2,6.0,-9.0,-9.0,-9.0,4.0,1216446 -3032555,1630140061,2,25,2,2,1630051625,2,1.0,30.0,3.0,-9.0,4.0,1216446 -3032556,1630140063,2,2,7,3,1630051625,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216446 -3032557,1630140062,2,52,15,4,1630051625,1,6.0,-9.0,-9.0,-9.0,4.0,1216446 -3032558,1630140573,2,80,0,1,1630051626,1,6.0,-9.0,-9.0,-9.0,4.0,1216447 -3032559,1630140572,2,45,2,2,1630051626,1,6.0,-9.0,-9.0,-9.0,4.0,1216447 -3032560,1630140571,2,13,7,3,1630051626,1,-9.0,-9.0,-9.0,10.0,-9.0,1216447 -3032561,1630140356,2,54,0,1,1630051627,1,6.0,-9.0,-9.0,-9.0,3.0,1216448 -3032562,1630140354,2,52,1,2,1630051627,2,3.0,-9.0,-9.0,-9.0,4.0,1216448 -3032563,1630140355,2,21,2,3,1630051627,2,1.0,28.0,1.0,-9.0,4.0,1216448 -3032564,1630140357,2,19,2,4,1630051627,1,3.0,20.0,6.0,-9.0,4.0,1216448 -3032565,1630140358,2,14,2,5,1630051627,2,-9.0,-9.0,-9.0,11.0,-9.0,1216448 -3032566,1630140359,2,13,2,6,1630051627,2,-9.0,-9.0,-9.0,8.0,-9.0,1216448 -3032567,1630140051,2,61,0,1,1630051628,2,6.0,-9.0,-9.0,-9.0,4.0,1216449 -3032568,1630140052,2,45,2,2,1630051628,1,6.0,-9.0,-9.0,-9.0,4.0,1216449 -3032569,1630140053,2,69,5,3,1630051628,1,6.0,-9.0,-9.0,-9.0,4.0,1216449 -3032570,1630140012,2,49,0,1,1630051629,2,6.0,-9.0,-9.0,-9.0,4.0,1216450 -3032571,1630140013,2,20,2,2,1630051629,1,1.0,40.0,1.0,-9.0,4.0,1216450 -3032572,1630140014,2,10,7,3,1630051629,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216450 -3032573,1630140233,2,59,0,1,1630051630,2,6.0,-9.0,-9.0,15.0,4.0,1216451 -3032574,1630140235,2,75,1,2,1630051630,1,6.0,-9.0,-9.0,-9.0,4.0,1216451 -3032575,1630140234,2,39,2,3,1630051630,2,3.0,-9.0,-9.0,15.0,4.0,1216451 -3032576,1630140125,2,41,0,1,1630051631,2,6.0,-9.0,-9.0,-9.0,2.0,1216452 -3032577,1630140610,2,44,0,1,1630051632,1,3.0,-9.0,-9.0,15.0,3.0,1216453 -3032578,1630140585,2,35,0,1,1630051633,1,1.0,40.0,4.0,-9.0,4.0,1216454 -3032579,1630140643,4,60,0,1,1630051634,2,6.0,-9.0,-9.0,-9.0,4.0,1216455 -3032580,1630139942,1,26,0,1,1630051635,2,6.0,-9.0,-9.0,16.0,4.0,1216456 -3032581,1630140214,2,62,0,1,1630051636,2,1.0,40.0,1.0,-9.0,4.0,1216457 -3032582,1630140109,2,71,0,1,1630051637,1,6.0,-9.0,-9.0,-9.0,4.0,1216458 -3032583,1630140107,2,64,1,2,1630051637,2,6.0,-9.0,-9.0,-9.0,4.0,1216458 -3032584,1630140108,2,24,7,3,1630051637,2,1.0,40.0,4.0,-9.0,4.0,1216458 -3032585,1630139983,2,36,0,1,1630051638,2,6.0,-9.0,-9.0,-9.0,4.0,1216459 -3032586,1630139986,2,11,2,2,1630051638,2,-9.0,-9.0,-9.0,7.0,-9.0,1216459 -3032587,1630139985,2,6,2,3,1630051638,1,-9.0,-9.0,-9.0,2.0,-9.0,1216459 -3032588,1630139984,2,37,5,4,1630051638,2,2.0,35.0,1.0,-9.0,4.0,1216459 -3032589,1630139977,2,45,0,1,1630051639,2,1.0,13.0,5.0,-9.0,4.0,1216460 -3032590,1630139978,2,22,2,2,1630051639,2,6.0,-9.0,-9.0,15.0,4.0,1216460 -3032591,1630139979,2,22,2,3,1630051639,1,6.0,-9.0,-9.0,14.0,4.0,1216460 -3032592,1630140126,2,42,0,1,1630051640,2,1.0,45.0,1.0,-9.0,4.0,1216461 -3032593,1630140127,2,20,2,2,1630051640,2,1.0,72.0,1.0,-9.0,4.0,1216461 -3032594,1630140128,2,12,2,3,1630051640,1,-9.0,-9.0,-9.0,8.0,-9.0,1216461 -3032595,1630140129,2,9,2,4,1630051640,2,-9.0,-9.0,-9.0,4.0,-9.0,1216461 -3032596,1630140296,2,26,0,1,1630051641,2,1.0,40.0,1.0,-9.0,4.0,1216462 -3032597,1630140297,2,8,2,2,1630051641,1,-9.0,-9.0,-9.0,3.0,-9.0,1216462 -3032598,1630140301,2,6,3,3,1630051641,2,-9.0,-9.0,-9.0,3.0,-9.0,1216462 -3032599,1630140298,2,2,3,4,1630051641,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216462 -3032600,1630140299,2,19,5,5,1630051641,1,6.0,-9.0,-9.0,-9.0,4.0,1216462 -3032601,1630140300,2,26,13,6,1630051641,1,1.0,40.0,1.0,-9.0,4.0,1216462 -3032602,1630140304,2,46,0,1,1630051642,1,1.0,40.0,1.0,-9.0,4.0,1216463 -3032603,1630140302,2,40,1,2,1630051642,2,1.0,40.0,1.0,-9.0,4.0,1216463 -3032604,1630140305,2,18,2,3,1630051642,1,6.0,-9.0,-9.0,14.0,4.0,1216463 -3032605,1630140303,2,14,2,4,1630051642,1,-9.0,-9.0,-9.0,11.0,-9.0,1216463 -3032606,1630140306,2,10,2,5,1630051642,2,-9.0,-9.0,-9.0,8.0,-9.0,1216463 -3032607,1630139950,2,48,0,1,1630051643,2,6.0,-9.0,-9.0,-9.0,4.0,1216464 -3032608,1630139951,2,51,1,2,1630051643,1,1.0,40.0,1.0,-9.0,4.0,1216464 -3032609,1630139952,2,7,2,3,1630051643,2,-9.0,-9.0,-9.0,5.0,-9.0,1216464 -3032610,1630139783,2,69,0,1,1630051644,2,6.0,-9.0,-9.0,-9.0,4.0,1216465 -3032611,1630139784,2,35,2,2,1630051644,2,6.0,-9.0,-9.0,-9.0,4.0,1216465 -3032612,1630139785,2,17,7,3,1630051644,1,6.0,-9.0,-9.0,11.0,4.0,1216465 -3032613,1630139786,2,14,7,4,1630051644,1,-9.0,-9.0,-9.0,10.0,-9.0,1216465 -3032614,1630139787,2,10,7,5,1630051644,2,-9.0,-9.0,-9.0,6.0,-9.0,1216465 -3032615,1630139788,2,0,7,6,1630051644,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216465 -3032616,1630140536,2,46,0,1,1630051645,2,3.0,-9.0,-9.0,15.0,4.0,1216466 -3032617,1630140539,2,47,1,2,1630051645,1,1.0,40.0,6.0,-9.0,4.0,1216466 -3032618,1630140537,2,28,2,3,1630051645,2,6.0,-9.0,-9.0,-9.0,4.0,1216466 -3032619,1630140538,2,17,2,4,1630051645,1,6.0,-9.0,-9.0,13.0,4.0,1216466 -3032620,1630140540,2,15,2,5,1630051645,2,-9.0,-9.0,-9.0,12.0,-9.0,1216466 -3032621,1630140541,2,8,2,6,1630051645,2,-9.0,-9.0,-9.0,5.0,-9.0,1216466 -3032622,1630140638,4,37,0,1,1630051646,2,1.0,30.0,1.0,-9.0,4.0,1216467 -3032623,1630139833,2,87,0,1,1630051647,2,6.0,-9.0,-9.0,-9.0,4.0,1216468 -3032624,1630140548,2,44,0,1,1630051648,2,6.0,-9.0,-9.0,-9.0,4.0,1216469 -3032625,1630140549,2,5,3,2,1630051648,1,-9.0,-9.0,-9.0,2.0,-9.0,1216469 -3032626,1630140550,2,35,5,3,1630051648,1,6.0,-9.0,-9.0,-9.0,4.0,1216469 -3032627,1630139778,2,44,0,1,1630051649,2,3.0,40.0,4.0,-9.0,4.0,1216470 -3032628,1630139779,2,59,6,2,1630051649,1,6.0,-9.0,-9.0,-9.0,4.0,1216470 -3032629,1630139777,2,68,11,3,1630051649,2,6.0,-9.0,-9.0,-9.0,4.0,1216470 -3032630,1630139780,2,45,13,4,1630051649,1,6.0,-9.0,-9.0,-9.0,4.0,1216470 -3032631,1630139798,2,66,0,1,1630051650,2,6.0,-9.0,-9.0,-9.0,4.0,1216471 -3032632,1630139799,2,26,7,2,1630051650,2,1.0,20.0,1.0,-9.0,4.0,1216471 -3032633,1630140081,2,47,0,1,1630051651,2,3.0,-9.0,-9.0,-9.0,4.0,1216472 -3032634,1630140083,2,20,2,2,1630051651,2,3.0,20.0,5.0,-9.0,4.0,1216472 -3032635,1630140085,2,19,2,3,1630051651,2,3.0,20.0,6.0,-9.0,4.0,1216472 -3032636,1630140375,2,47,0,1,1630051652,2,1.0,35.0,1.0,-9.0,4.0,1216473 -3032637,1630140376,2,21,2,2,1630051652,2,1.0,36.0,1.0,15.0,4.0,1216473 -3032638,1630140377,2,17,2,3,1630051652,1,6.0,-9.0,-9.0,14.0,4.0,1216473 -3032639,1630139946,2,44,0,1,1630051653,2,1.0,29.0,1.0,-9.0,4.0,1216474 -3032640,1630139944,1,41,1,2,1630051653,1,3.0,-9.0,-9.0,-9.0,4.0,1216474 -3032641,1630139948,4,16,2,3,1630051653,2,6.0,-9.0,-9.0,13.0,-9.0,1216474 -3032642,1630140267,2,49,0,1,1630051654,2,3.0,-9.0,-9.0,-9.0,4.0,1216475 -3032643,1630140268,2,45,1,2,1630051654,1,1.0,40.0,1.0,-9.0,4.0,1216475 -3032644,1630140269,2,23,2,3,1630051654,1,1.0,45.0,6.0,-9.0,4.0,1216475 -3032645,1630140270,2,43,10,4,1630051654,1,6.0,-9.0,-9.0,-9.0,4.0,1216475 -3032646,1630139861,2,66,0,1,1630051655,2,6.0,-9.0,-9.0,-9.0,4.0,1216476 -3032647,1630140276,2,55,0,1,1630051656,1,1.0,40.0,1.0,-9.0,2.0,1216477 -3032648,1630140275,2,52,1,2,1630051656,2,1.0,37.0,1.0,-9.0,4.0,1216477 -3032649,1630140039,2,40,0,1,1630051657,1,2.0,25.0,1.0,15.0,4.0,1216478 -3032650,1630140037,2,40,1,2,1630051657,2,1.0,40.0,1.0,16.0,4.0,1216478 -3032651,1630140041,2,19,2,3,1630051657,1,6.0,25.0,5.0,15.0,4.0,1216478 -3032652,1630140320,2,49,0,1,1630051658,2,1.0,48.0,1.0,-9.0,4.0,1216479 -3032653,1630140321,2,26,2,2,1630051658,1,1.0,3.0,6.0,-9.0,4.0,1216479 -3032654,1630140495,2,30,0,1,1630051659,1,1.0,40.0,1.0,15.0,4.0,1216480 -3032655,1630140494,2,27,15,2,1630051659,2,1.0,40.0,1.0,15.0,4.0,1216480 -3032656,1630140533,2,41,0,1,1630051660,2,1.0,45.0,1.0,-9.0,4.0,1216481 -3032657,1630140432,2,24,0,1,1630051661,2,6.0,30.0,5.0,-9.0,4.0,1216482 -3032658,1630140435,2,5,2,2,1630051661,2,-9.0,-9.0,-9.0,2.0,-9.0,1216482 -3032659,1630140433,2,3,2,3,1630051661,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216482 -3032660,1630140434,2,1,2,4,1630051661,1,-9.0,-9.0,-9.0,-9.0,-9.0,1216482 -3032661,1630139953,1,55,0,1,1630051662,1,6.0,-9.0,-9.0,-9.0,4.0,1216483 -3032662,1630140182,2,29,0,1,1630051663,2,6.0,-9.0,-9.0,-9.0,4.0,1216484 -3032663,1630140184,2,9,2,2,1630051663,2,-9.0,-9.0,-9.0,6.0,-9.0,1216484 -3032664,1630140183,2,6,2,3,1630051663,1,-9.0,-9.0,-9.0,3.0,-9.0,1216484 -3032665,1630140185,2,3,2,4,1630051663,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216484 -3032666,1630140186,2,1,2,5,1630051663,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216484 -3032667,1630140339,2,50,0,1,1630051664,2,1.0,40.0,3.0,-9.0,3.0,1216485 -3032668,1630140341,2,19,2,2,1630051664,1,1.0,22.0,5.0,-9.0,4.0,1216485 -3032669,1630140343,2,16,7,3,1630051664,2,6.0,-9.0,-9.0,12.0,-9.0,1216485 -3032670,1630140345,2,12,7,4,1630051664,2,-9.0,-9.0,-9.0,9.0,-9.0,1216485 -3032671,1630139907,1,82,0,1,1630051665,2,6.0,-9.0,-9.0,-9.0,4.0,1216486 -3032672,1630140282,2,44,0,1,1630051666,2,3.0,10.0,6.0,-9.0,4.0,1216487 -3032673,1630140283,2,21,2,2,1630051666,1,6.0,-9.0,-9.0,-9.0,4.0,1216487 -3032674,1630140284,2,16,2,3,1630051666,2,6.0,-9.0,-9.0,12.0,-9.0,1216487 -3032675,1630139973,2,58,0,1,1630051667,1,1.0,40.0,1.0,-9.0,4.0,1216488 -3032676,1630139971,2,52,1,2,1630051667,2,3.0,-9.0,-9.0,-9.0,4.0,1216488 -3032677,1630139972,2,31,2,3,1630051667,2,1.0,40.0,1.0,-9.0,4.0,1216488 -3032678,1630139901,2,81,0,1,1630051668,2,6.0,-9.0,-9.0,-9.0,4.0,1216489 -3032679,1630139902,2,55,2,2,1630051668,2,6.0,-9.0,-9.0,-9.0,2.0,1216489 -3032680,1630140621,2,43,0,1,1630051669,1,6.0,40.0,1.0,-9.0,4.0,1216490 -3032681,1630139934,1,30,0,1,1630051670,1,1.0,60.0,1.0,16.0,4.0,1216491 -3032682,1630139933,1,29,1,2,1630051670,2,1.0,65.0,1.0,16.0,4.0,1216491 -3032683,1630140105,2,29,0,1,1630051671,2,6.0,-9.0,-9.0,-9.0,4.0,1216492 -3032684,1630140106,2,32,12,2,1630051671,1,2.0,40.0,4.0,-9.0,4.0,1216492 -3032685,1630139781,2,77,0,1,1630051672,2,6.0,-9.0,-9.0,-9.0,3.0,1216493 -3032686,1630139782,2,58,2,2,1630051672,1,3.0,-9.0,-9.0,-9.0,4.0,1216493 -3032687,1630139995,2,55,0,1,1630051673,1,6.0,-9.0,-9.0,-9.0,4.0,1216494 -3032688,1630139993,2,46,1,2,1630051673,2,6.0,-9.0,-9.0,-9.0,4.0,1216494 -3032689,1630139996,2,18,2,3,1630051673,1,6.0,-9.0,-9.0,14.0,4.0,1216494 -3032690,1630139994,2,17,2,4,1630051673,1,6.0,-9.0,-9.0,13.0,4.0,1216494 -3032691,1630139989,2,53,0,1,1630051674,1,3.0,25.0,6.0,-9.0,4.0,1216495 -3032692,1630139987,2,49,1,2,1630051674,2,6.0,-9.0,-9.0,-9.0,4.0,1216495 -3032693,1630139990,2,18,2,3,1630051674,1,6.0,-9.0,-9.0,15.0,4.0,1216495 -3032694,1630139988,2,27,4,4,1630051674,2,3.0,-9.0,-9.0,15.0,4.0,1216495 -3032695,1630139991,2,7,7,5,1630051674,2,-9.0,-9.0,-9.0,5.0,-9.0,1216495 -3032696,1630139992,2,4,7,6,1630051674,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216495 -3032697,1630140154,2,45,0,1,1630051675,2,1.0,24.0,6.0,-9.0,4.0,1216496 -3032698,1630140157,2,16,2,2,1630051675,2,6.0,-9.0,-9.0,13.0,-9.0,1216496 -3032699,1630140156,2,33,13,3,1630051675,1,6.0,-9.0,-9.0,-9.0,4.0,1216496 -3032700,1630140155,2,52,15,4,1630051675,2,6.0,-9.0,-9.0,-9.0,4.0,1216496 -3032701,1630139749,2,94,0,1,1630051676,2,6.0,-9.0,-9.0,-9.0,4.0,1216497 -3032702,1630139750,2,40,7,2,1630051676,1,1.0,45.0,1.0,-9.0,4.0,1216497 -3032703,1630140620,4,19,0,1,1630051677,2,1.0,40.0,5.0,-9.0,4.0,1216498 -3032704,1630140619,2,21,13,2,1630051677,1,1.0,50.0,1.0,-9.0,4.0,1216498 -3032705,1630139848,2,66,0,1,1630051678,2,6.0,-9.0,-9.0,-9.0,4.0,1216499 -3032706,1630139849,2,45,2,2,1630051678,2,2.0,24.0,4.0,-9.0,3.0,1216499 -3032707,1630139850,2,22,7,3,1630051678,1,1.0,20.0,4.0,-9.0,4.0,1216499 -3032708,1630139758,2,74,0,1,1630051679,2,6.0,-9.0,-9.0,-9.0,4.0,1216500 -3032709,1630139759,2,46,2,2,1630051679,1,6.0,-9.0,-9.0,-9.0,4.0,1216500 -3032710,1630139775,2,64,0,1,1630051680,2,6.0,-9.0,-9.0,-9.0,4.0,1216501 -3032711,1630139774,2,65,5,2,1630051680,2,6.0,-9.0,-9.0,-9.0,4.0,1216501 -3032712,1630139776,2,22,10,3,1630051680,2,1.0,10.0,1.0,-9.0,4.0,1216501 -3032713,1630140192,2,46,0,1,1630051681,2,1.0,40.0,5.0,-9.0,4.0,1216502 -3032714,1630140193,2,28,10,2,1630051681,1,6.0,-9.0,-9.0,-9.0,4.0,1216502 -3032715,1630140194,2,33,12,3,1630051681,1,6.0,-9.0,-9.0,-9.0,4.0,1216502 -3032716,1630139863,2,65,0,1,1630051682,2,6.0,-9.0,-9.0,-9.0,3.0,1216503 -3032717,1630139864,2,63,10,2,1630051682,2,6.0,-9.0,-9.0,-9.0,3.0,1216503 -3032718,1630139866,2,58,10,3,1630051682,1,6.0,-9.0,-9.0,-9.0,4.0,1216503 -3032719,1630139865,2,25,10,4,1630051682,2,6.0,-9.0,-9.0,-9.0,4.0,1216503 -3032720,1630139891,2,68,0,1,1630051683,2,6.0,-9.0,-9.0,-9.0,4.0,1216504 -3032721,1630139892,2,13,7,2,1630051683,1,-9.0,-9.0,-9.0,10.0,-9.0,1216504 -3032722,1630139893,2,13,7,3,1630051683,1,-9.0,-9.0,-9.0,10.0,-9.0,1216504 -3032723,1630139894,2,16,15,4,1630051683,1,6.0,-9.0,-9.0,13.0,-9.0,1216504 -3032724,1630139915,2,50,0,1,1630051684,2,3.0,40.0,5.0,-9.0,4.0,1216505 -3032725,1630139919,2,50,13,2,1630051684,1,1.0,20.0,1.0,-9.0,4.0,1216505 -3032726,1630139923,2,48,15,3,1630051684,1,1.0,25.0,1.0,-9.0,4.0,1216505 -3032727,1630139911,1,47,15,4,1630051684,2,3.0,-9.0,-9.0,-9.0,4.0,1216505 -3032728,1630139926,2,54,0,1,1630051685,2,6.0,-9.0,-9.0,-9.0,4.0,1216506 -3032729,1630139927,2,25,2,2,1630051685,2,6.0,-9.0,-9.0,-9.0,4.0,1216506 -3032730,1630139928,2,51,5,3,1630051685,2,6.0,-9.0,-9.0,-9.0,4.0,1216506 -3032731,1630139925,1,54,15,4,1630051685,2,6.0,-9.0,-9.0,-9.0,4.0,1216506 -3032732,1630139955,2,40,0,1,1630051686,2,1.0,40.0,1.0,-9.0,4.0,1216507 -3032733,1630139956,2,52,1,2,1630051686,1,1.0,40.0,1.0,-9.0,4.0,1216507 -3032734,1630140227,2,45,0,1,1630051687,2,1.0,40.0,1.0,-9.0,4.0,1216508 -3032735,1630140230,2,16,2,2,1630051687,2,6.0,-9.0,-9.0,12.0,-9.0,1216508 -3032736,1630140231,2,13,2,3,1630051687,2,-9.0,-9.0,-9.0,9.0,-9.0,1216508 -3032737,1630140228,2,12,2,4,1630051687,1,-9.0,-9.0,-9.0,8.0,-9.0,1216508 -3032738,1630140232,2,12,2,5,1630051687,2,-9.0,-9.0,-9.0,8.0,-9.0,1216508 -3032739,1630140229,2,8,2,6,1630051687,1,-9.0,-9.0,-9.0,4.0,-9.0,1216508 -3032740,1630139895,2,67,0,1,1630051688,2,6.0,35.0,1.0,-9.0,4.0,1216509 -3032741,1630139896,2,48,2,2,1630051688,2,1.0,25.0,5.0,-9.0,4.0,1216509 -3032742,1630139898,2,39,2,3,1630051688,1,2.0,40.0,1.0,-9.0,4.0,1216509 -3032743,1630139897,2,19,7,4,1630051688,2,1.0,40.0,1.0,15.0,4.0,1216509 -3032744,1630139899,2,27,10,5,1630051688,1,3.0,16.0,6.0,-9.0,4.0,1216509 -3032745,1630139900,2,40,15,6,1630051688,1,1.0,30.0,6.0,-9.0,4.0,1216509 -3032746,1630140484,2,30,0,1,1630051689,2,1.0,40.0,1.0,-9.0,4.0,1216510 -3032747,1630140485,2,3,2,2,1630051689,2,-9.0,-9.0,-9.0,-9.0,-9.0,1216510 -3032748,1630140716,2,40,0,1,1630051690,1,2.0,25.0,1.0,15.0,4.0,1216511 -3032749,1630140714,2,40,1,2,1630051690,2,1.0,40.0,1.0,16.0,4.0,1216511 -3032750,1630140718,2,19,2,3,1630051690,1,6.0,25.0,5.0,15.0,4.0,1216511 -3032751,1630140820,2,35,0,1,1630051691,1,1.0,30.0,5.0,-9.0,4.0,1216512 -3032752,1630140821,2,31,15,2,1630051691,1,1.0,40.0,1.0,-9.0,4.0,1216512 -3032753,1630140824,2,40,0,1,1630051692,1,3.0,-9.0,-9.0,-9.0,4.0,1216513 -3032754,1630140817,2,42,0,1,1630051693,1,6.0,-9.0,-9.0,-9.0,4.0,1216514 -3032755,1630140818,2,30,10,2,1630051693,1,6.0,40.0,5.0,-9.0,4.0,1216514 -3032756,1630140792,2,56,0,1,1630051694,2,6.0,-9.0,-9.0,-9.0,4.0,1216515 -3032757,1630140793,2,57,1,2,1630051694,1,6.0,-9.0,-9.0,-9.0,4.0,1216515 -3032758,1630140722,2,64,0,1,1630051695,1,6.0,40.0,3.0,-9.0,2.0,1216516 -3032759,1630140720,2,63,1,2,1630051695,2,6.0,-9.0,-9.0,-9.0,4.0,1216516 -3032760,1630140721,2,34,2,3,1630051695,2,2.0,40.0,4.0,-9.0,4.0,1216516 -3032761,1630140759,2,53,0,1,1630051696,2,1.0,37.0,1.0,-9.0,4.0,1216517 -3032762,1630140761,2,24,2,2,1630051696,2,6.0,6.0,6.0,15.0,4.0,1216517 -3032763,1630140765,2,21,2,3,1630051696,1,6.0,-9.0,-9.0,-9.0,4.0,1216517 -3032764,1630140756,2,52,0,1,1630051697,1,1.0,60.0,1.0,-9.0,2.0,1216518 -3032765,1630140755,2,51,1,2,1630051697,2,6.0,10.0,6.0,-9.0,4.0,1216518 -3032766,1630140757,2,25,2,3,1630051697,1,1.0,70.0,1.0,15.0,2.0,1216518 -3032767,1630140758,2,23,2,4,1630051697,1,3.0,40.0,5.0,-9.0,4.0,1216518 -3032768,1630140778,2,61,0,1,1630051698,1,1.0,40.0,3.0,-9.0,2.0,1216519 -3032769,1630140777,2,61,1,2,1630051698,2,1.0,35.0,1.0,-9.0,4.0,1216519 -3032770,1630140779,2,50,5,3,1630051698,1,6.0,-9.0,-9.0,-9.0,4.0,1216519 -3032771,1630140819,2,46,0,1,1630051699,1,6.0,-9.0,-9.0,-9.0,4.0,1216520 -3032772,1630140846,2,54,0,1,1630051700,1,6.0,-9.0,-9.0,15.0,4.0,1216521 -3032773,1630140781,2,50,0,1,1630051701,1,3.0,40.0,5.0,-9.0,4.0,1216522 -3032774,1630140780,2,44,1,2,1630051701,2,3.0,50.0,5.0,-9.0,4.0,1216522 -3032775,1630140782,2,28,4,3,1630051701,1,3.0,-9.0,-9.0,-9.0,4.0,1216522 -3032776,1630140834,2,47,0,1,1630051702,1,3.0,40.0,6.0,-9.0,4.0,1216523 -3032777,1630140837,2,28,10,2,1630051702,1,3.0,30.0,6.0,-9.0,4.0,1216523 -3032778,1630140750,2,60,0,1,1630051703,2,6.0,-9.0,-9.0,-9.0,4.0,1216524 -3032779,1630140751,2,69,1,2,1630051703,1,6.0,-9.0,-9.0,-9.0,2.0,1216524 -3032780,1630140835,2,47,0,1,1630051704,1,3.0,40.0,6.0,-9.0,4.0,1216525 -3032781,1630140838,2,28,10,2,1630051704,1,3.0,30.0,6.0,-9.0,4.0,1216525 -3032782,1630140836,2,47,0,1,1630051705,1,3.0,40.0,6.0,-9.0,4.0,1216526 -3032783,1630140839,2,28,10,2,1630051705,1,3.0,30.0,6.0,-9.0,4.0,1216526 -3032784,1630140663,1,53,0,1,1630051706,2,6.0,-9.0,-9.0,-9.0,4.0,1216527 -3032785,1630140665,1,26,2,2,1630051706,1,6.0,-9.0,-9.0,-9.0,4.0,1216527 -3032786,1630140740,2,51,0,1,1630051707,1,1.0,20.0,1.0,-9.0,4.0,1216528 -3032787,1630140738,2,51,13,2,1630051707,2,1.0,36.0,4.0,-9.0,4.0,1216528 -3032788,1630140742,2,21,15,3,1630051707,1,3.0,-9.0,-9.0,-9.0,4.0,1216528 -3032789,1630140744,2,20,15,4,1630051707,1,6.0,-9.0,-9.0,13.0,4.0,1216528 -3032790,1630140732,2,55,0,1,1630051708,1,6.0,-9.0,-9.0,-9.0,2.0,1216529 -3032791,1630140730,2,25,2,2,1630051708,2,1.0,40.0,6.0,15.0,4.0,1216529 -3032792,1630140734,2,22,2,3,1630051708,1,1.0,40.0,1.0,-9.0,4.0,1216529 -3032793,1630140736,2,19,2,4,1630051708,1,6.0,-9.0,-9.0,14.0,4.0,1216529 -3032794,1630140733,2,55,0,1,1630051709,1,6.0,-9.0,-9.0,-9.0,2.0,1216530 -3032795,1630140731,2,25,2,2,1630051709,2,1.0,40.0,6.0,15.0,4.0,1216530 -3032796,1630140735,2,22,2,3,1630051709,1,1.0,40.0,1.0,-9.0,4.0,1216530 -3032797,1630140737,2,19,2,4,1630051709,1,6.0,-9.0,-9.0,14.0,4.0,1216530 -3032798,1630140847,2,56,0,1,1630051710,1,6.0,-9.0,-9.0,-9.0,4.0,1216531 -3032799,1630140849,2,23,2,2,1630051710,1,6.0,-9.0,-9.0,-9.0,4.0,1216531 -3032800,1630140851,2,23,2,3,1630051710,1,6.0,-9.0,-9.0,-9.0,4.0,1216531 -3032801,1630140853,2,20,2,4,1630051710,1,6.0,-9.0,-9.0,-9.0,4.0,1216531 -3032802,1630140822,2,50,0,1,1630051711,1,3.0,-9.0,-9.0,-9.0,4.0,1216532 -3032803,1630140857,2,50,0,1,1630051712,1,6.0,-9.0,-9.0,-9.0,4.0,1216533 -3032804,1630140785,2,62,0,1,1630051713,2,6.0,-9.0,-9.0,-9.0,4.0,1216534 -3032805,1630140816,2,62,0,1,1630051714,1,3.0,-9.0,-9.0,-9.0,4.0,1216535 -3032806,1630140831,2,62,0,1,1630051715,1,6.0,-9.0,-9.0,-9.0,2.0,1216536 -3032807,1630140810,2,54,0,1,1630051716,1,6.0,-9.0,-9.0,-9.0,4.0,1216537 -3032808,1630140814,2,75,15,2,1630051716,1,3.0,-9.0,-9.0,-9.0,4.0,1216537 -3032809,1630140812,2,58,15,3,1630051716,1,3.0,-9.0,-9.0,-9.0,4.0,1216537 -3032810,1630140844,2,61,0,1,1630051717,1,6.0,-9.0,-9.0,15.0,4.0,1216538 -3032811,1630140845,2,59,5,2,1630051717,1,3.0,-9.0,-9.0,-9.0,4.0,1216538 -3032812,1630140712,2,59,0,1,1630051718,2,6.0,-9.0,-9.0,-9.0,4.0,1216539 -3032813,1630140713,2,22,2,2,1630051718,2,3.0,-9.0,-9.0,-9.0,4.0,1216539 -3032814,1630140775,2,56,0,1,1630051719,2,6.0,-9.0,-9.0,-9.0,4.0,1216540 -3032815,1630140776,2,21,2,2,1630051719,2,6.0,-9.0,-9.0,15.0,4.0,1216540 -3032816,1630140656,2,78,0,1,1630051720,2,6.0,-9.0,-9.0,-9.0,4.0,1216541 -3032817,1630140858,2,83,0,1,1630051721,1,6.0,-9.0,-9.0,-9.0,2.0,1216542 -3032818,1630140723,2,61,0,1,1630051722,2,6.0,-9.0,-9.0,-9.0,4.0,1216543 -3032819,1630140724,2,45,2,2,1630051722,1,6.0,-9.0,-9.0,-9.0,4.0,1216543 -3032820,1630140725,2,69,5,3,1630051722,1,6.0,-9.0,-9.0,-9.0,4.0,1216543 -3032821,1630140668,2,50,0,1,1630051723,2,3.0,40.0,5.0,-9.0,4.0,1216544 -3032822,1630140669,2,50,13,2,1630051723,1,1.0,20.0,1.0,-9.0,4.0,1216544 -3032823,1630140670,2,48,15,3,1630051723,1,1.0,25.0,1.0,-9.0,4.0,1216544 -3032824,1630140684,1,36,0,1,1630051724,1,6.0,-9.0,-9.0,16.0,4.0,1216545 -3032825,1630140687,1,33,0,1,1630051725,1,1.0,50.0,1.0,-9.0,4.0,1216546 -3032826,1630140688,2,33,12,2,1630051725,1,1.0,50.0,1.0,-9.0,4.0,1216546 -3032827,1630140848,2,56,0,1,1630051726,1,6.0,-9.0,-9.0,-9.0,4.0,1216547 -3032828,1630140850,2,23,2,2,1630051726,1,6.0,-9.0,-9.0,-9.0,4.0,1216547 -3032829,1630140852,2,23,2,3,1630051726,1,6.0,-9.0,-9.0,-9.0,4.0,1216547 -3032830,1630140854,2,20,2,4,1630051726,1,6.0,-9.0,-9.0,-9.0,4.0,1216547 -3032831,1630140741,2,51,0,1,1630051727,1,1.0,20.0,1.0,-9.0,4.0,1216548 -3032832,1630140739,2,51,13,2,1630051727,2,1.0,36.0,4.0,-9.0,4.0,1216548 -3032833,1630140743,2,21,15,3,1630051727,1,3.0,-9.0,-9.0,-9.0,4.0,1216548 -3032834,1630140745,2,20,15,4,1630051727,1,6.0,-9.0,-9.0,13.0,4.0,1216548 -3032835,1630140646,2,50,0,1,1630051728,1,3.0,-9.0,-9.0,-9.0,4.0,1216549 -3032836,1630140644,2,81,10,2,1630051728,2,6.0,-9.0,-9.0,-9.0,4.0,1216549 -3032837,1630140647,2,58,10,3,1630051728,1,1.0,40.0,1.0,-9.0,4.0,1216549 -3032838,1630140645,2,23,10,4,1630051728,2,1.0,16.0,1.0,15.0,4.0,1216549 -3032839,1630140806,2,57,0,1,1630051729,2,1.0,40.0,1.0,-9.0,4.0,1216550 -3032840,1630140808,2,35,2,2,1630051729,1,6.0,-9.0,-9.0,-9.0,4.0,1216550 -3032841,1630140807,2,33,2,3,1630051729,2,1.0,40.0,1.0,15.0,4.0,1216550 -3032842,1630140840,2,53,0,1,1630051730,1,6.0,-9.0,-9.0,-9.0,4.0,1216551 -3032843,1630140679,1,64,0,1,1630051731,2,6.0,-9.0,-9.0,-9.0,4.0,1216552 -3032844,1630140680,1,41,2,2,1630051731,1,6.0,-9.0,-9.0,-9.0,4.0,1216552 -3032845,1630140681,4,33,10,3,1630051731,1,6.0,-9.0,-9.0,-9.0,4.0,1216552 -3032846,1630140799,2,60,0,1,1630051732,2,6.0,-9.0,-9.0,-9.0,4.0,1216553 -3032847,1630140800,2,64,5,2,1630051732,1,6.0,-9.0,-9.0,-9.0,2.0,1216553 -3032848,1630140801,2,61,11,3,1630051732,1,6.0,-9.0,-9.0,-9.0,4.0,1216553 -3032849,1630140692,1,64,0,1,1630051733,1,6.0,-9.0,-9.0,-9.0,4.0,1216554 -3032850,1630140826,2,55,0,1,1630051734,1,1.0,48.0,1.0,-9.0,4.0,1216555 -3032851,1630140827,2,53,5,2,1630051734,1,3.0,-9.0,-9.0,-9.0,4.0,1216555 -3032852,1630140828,2,19,10,3,1630051734,1,6.0,-9.0,-9.0,14.0,4.0,1216555 -3032853,1630140676,2,54,0,1,1630051735,2,6.0,-9.0,-9.0,-9.0,4.0,1216556 -3032854,1630140677,2,25,2,2,1630051735,2,6.0,-9.0,-9.0,-9.0,4.0,1216556 -3032855,1630140678,2,51,5,3,1630051735,2,6.0,-9.0,-9.0,-9.0,4.0,1216556 -3032856,1630140675,1,54,15,4,1630051735,2,6.0,-9.0,-9.0,-9.0,4.0,1216556 -3032857,1630140860,2,80,0,1,1630051736,1,6.0,-9.0,-9.0,-9.0,2.0,1216557 -3032858,1630140682,1,38,0,1,1630051737,2,1.0,32.0,1.0,-9.0,4.0,1216558 -3032859,1630140683,1,36,5,2,1630051737,1,1.0,40.0,1.0,-9.0,4.0,1216558 -3032860,1630140717,2,40,0,1,1630051738,1,2.0,25.0,1.0,15.0,4.0,1216559 -3032861,1630140715,2,40,1,2,1630051738,2,1.0,40.0,1.0,16.0,4.0,1216559 -3032862,1630140719,2,19,2,3,1630051738,1,6.0,25.0,5.0,15.0,4.0,1216559 -3032863,1630140794,2,58,0,1,1630051739,2,6.0,-9.0,-9.0,-9.0,4.0,1216560 -3032864,1630140796,2,69,1,2,1630051739,1,6.0,-9.0,-9.0,-9.0,2.0,1216560 -3032865,1630140795,2,18,2,3,1630051739,2,6.0,25.0,6.0,15.0,4.0,1216560 -3032866,1630140700,2,58,0,1,1630051740,1,1.0,40.0,1.0,-9.0,4.0,1216561 -3032867,1630140698,2,52,1,2,1630051740,2,3.0,-9.0,-9.0,-9.0,4.0,1216561 -3032868,1630140699,2,31,2,3,1630051740,2,1.0,40.0,1.0,-9.0,4.0,1216561 -3032869,1630140659,2,65,0,1,1630051741,2,6.0,-9.0,-9.0,-9.0,3.0,1216562 -3032870,1630140660,2,63,10,2,1630051741,2,6.0,-9.0,-9.0,-9.0,3.0,1216562 -3032871,1630140662,2,58,10,3,1630051741,1,6.0,-9.0,-9.0,-9.0,4.0,1216562 -3032872,1630140661,2,25,10,4,1630051741,2,6.0,-9.0,-9.0,-9.0,4.0,1216562 -3032873,1630140672,2,55,0,1,1630051742,1,1.0,48.0,1.0,-9.0,2.0,1216563 -3032874,1630140671,1,52,1,2,1630051742,2,6.0,-9.0,-9.0,-9.0,4.0,1216563 -3032875,1630140674,4,20,2,3,1630051742,2,6.0,-9.0,-9.0,15.0,4.0,1216563 -3032876,1630140673,4,18,2,4,1630051742,1,6.0,-9.0,-9.0,15.0,4.0,1216563 -3032877,1630140823,2,62,0,1,1630051743,1,6.0,-9.0,-9.0,-9.0,4.0,1216564 -3032878,1630140653,2,51,0,1,1630051744,1,3.0,-9.0,-9.0,-9.0,4.0,1216565 -3032879,1630140652,2,71,6,2,1630051744,2,6.0,-9.0,-9.0,-9.0,4.0,1216565 -3032880,1630140842,2,45,0,1,1630051745,1,1.0,50.0,1.0,-9.0,2.0,1216566 -3032881,1630140843,2,19,2,2,1630051745,1,1.0,40.0,5.0,15.0,4.0,1216566 -3032882,1630140657,2,73,0,1,1630051746,2,6.0,-9.0,-9.0,-9.0,4.0,1216567 -3032883,1630140658,2,51,2,2,1630051746,1,6.0,-9.0,-9.0,-9.0,4.0,1216567 -3032884,1630140695,1,52,0,1,1630051747,1,1.0,40.0,1.0,-9.0,4.0,1216568 -3032885,1630140696,1,46,15,2,1630051747,1,1.0,40.0,1.0,-9.0,4.0,1216568 -3032886,1630140804,2,58,0,1,1630051748,2,1.0,30.0,1.0,15.0,4.0,1216569 -3032887,1630140805,2,34,2,2,1630051748,2,3.0,22.0,3.0,15.0,4.0,1216569 -3032888,1630140802,2,50,0,1,1630051749,2,3.0,-9.0,-9.0,-9.0,4.0,1216570 -3032889,1630140803,2,71,1,2,1630051749,1,6.0,-9.0,-9.0,-9.0,2.0,1216570 -3032890,1630140783,2,63,0,1,1630051750,2,6.0,-9.0,-9.0,-9.0,4.0,1216571 -3032891,1630140784,2,60,13,2,1630051750,1,6.0,-9.0,-9.0,-9.0,2.0,1216571 -3032892,1630140772,2,52,0,1,1630051751,1,1.0,40.0,1.0,-9.0,2.0,1216572 -3032893,1630140771,2,50,1,2,1630051751,2,1.0,30.0,1.0,-9.0,4.0,1216572 -3032894,1630140703,2,50,0,1,1630051752,1,1.0,50.0,1.0,-9.0,4.0,1216573 -3032895,1630140701,2,51,1,2,1630051752,2,3.0,-9.0,-9.0,-9.0,4.0,1216573 -3032896,1630140702,2,18,2,3,1630051752,2,3.0,-9.0,-9.0,14.0,4.0,1216573 -3032897,1630140704,2,21,4,4,1630051752,1,3.0,30.0,6.0,-9.0,4.0,1216573 -3032898,1630140855,2,61,0,1,1630051753,1,1.0,40.0,1.0,-9.0,4.0,1216574 -3032899,1630140655,2,70,0,1,1630051754,1,6.0,-9.0,-9.0,-9.0,2.0,1216575 -3032900,1630140697,1,30,0,1,1630051755,1,1.0,60.0,1.0,-9.0,4.0,1216576 -3032901,1630140752,2,59,0,1,1630051756,2,6.0,-9.0,-9.0,15.0,4.0,1216577 -3032902,1630140754,2,75,1,2,1630051756,1,6.0,-9.0,-9.0,-9.0,4.0,1216577 -3032903,1630140705,2,57,0,1,1630051757,2,1.0,15.0,6.0,-9.0,4.0,1216578 -3032904,1630140706,2,60,1,2,1630051757,1,6.0,-9.0,-9.0,-9.0,4.0,1216578 -3032905,1630140707,2,23,2,3,1630051757,1,1.0,15.0,5.0,15.0,4.0,1216578 -3032906,1630140856,2,50,0,1,1630051758,1,1.0,50.0,1.0,-9.0,4.0,1216579 -3032907,1630140686,1,64,0,1,1630051759,1,6.0,-9.0,-9.0,-9.0,2.0,1216580 -3032908,1630140797,2,61,0,1,1630051760,2,6.0,-9.0,-9.0,-9.0,4.0,1216581 -3032909,1630140798,2,23,2,2,1630051760,2,6.0,-9.0,-9.0,16.0,4.0,1216581 -3032910,1630140747,2,31,0,1,1630051761,1,1.0,40.0,1.0,-9.0,4.0,1216582 -3032911,1630140746,2,31,1,2,1630051761,2,1.0,40.0,6.0,-9.0,4.0,1216582 -3032912,1630140811,2,54,0,1,1630051762,1,6.0,-9.0,-9.0,-9.0,4.0,1216583 -3032913,1630140815,2,75,15,2,1630051762,1,3.0,-9.0,-9.0,-9.0,4.0,1216583 -3032914,1630140813,2,58,15,3,1630051762,1,3.0,-9.0,-9.0,-9.0,4.0,1216583 -3032915,1630140650,2,70,0,1,1630051763,2,6.0,-9.0,-9.0,-9.0,4.0,1216584 -3032916,1630140651,2,72,1,2,1630051763,1,6.0,-9.0,-9.0,-9.0,4.0,1216584 -3032917,1630140685,1,41,0,1,1630051764,1,1.0,40.0,1.0,-9.0,4.0,1216585 -3032918,1630140825,2,54,0,1,1630051765,1,1.0,40.0,1.0,-9.0,4.0,1216586 -3032919,1630140689,1,49,0,1,1630051766,1,1.0,52.0,1.0,-9.0,4.0,1216587 -3032920,1630140690,1,33,12,2,1630051766,1,6.0,-9.0,-9.0,-9.0,4.0,1216587 -3032921,1630140691,1,54,13,3,1630051766,1,1.0,48.0,1.0,-9.0,4.0,1216587 -3032922,1630140859,2,83,0,1,1630051767,1,6.0,-9.0,-9.0,-9.0,2.0,1216588 -3032923,1630140829,2,52,0,1,1630051768,1,6.0,-9.0,-9.0,-9.0,4.0,1216589 -3032924,1630140760,2,53,0,1,1630051769,2,1.0,37.0,1.0,-9.0,4.0,1216590 -3032925,1630140762,2,24,2,2,1630051769,2,6.0,6.0,6.0,15.0,4.0,1216590 -3032926,1630140764,2,23,2,3,1630051769,1,6.0,-9.0,-9.0,15.0,4.0,1216590 -3032927,1630140766,2,21,2,4,1630051769,1,6.0,-9.0,-9.0,-9.0,4.0,1216590 -3032928,1630140648,2,72,0,1,1630051770,2,6.0,-9.0,-9.0,-9.0,4.0,1216591 -3032929,1630140649,2,89,10,2,1630051770,1,6.0,-9.0,-9.0,-9.0,2.0,1216591 -3032930,1630140693,1,57,0,1,1630051771,1,3.0,20.0,6.0,-9.0,4.0,1216592 -3032931,1630140694,1,75,10,2,1630051771,1,6.0,-9.0,-9.0,-9.0,2.0,1216592 -3032932,1630140726,2,49,0,1,1630051772,2,1.0,40.0,1.0,-9.0,4.0,1216593 -3032933,1630140727,2,32,10,2,1630051772,2,1.0,35.0,1.0,-9.0,4.0,1216593 -3032934,1630140710,2,57,0,1,1630051773,1,6.0,-9.0,-9.0,-9.0,4.0,1216594 -3032935,1630140708,2,56,1,2,1630051773,2,6.0,-9.0,-9.0,-9.0,4.0,1216594 -3032936,1630140711,2,36,2,3,1630051773,1,1.0,27.0,1.0,-9.0,4.0,1216594 -3032937,1630140709,2,27,2,4,1630051773,2,1.0,20.0,1.0,-9.0,4.0,1216594 -3032938,1630140664,1,53,0,1,1630051774,2,6.0,-9.0,-9.0,-9.0,4.0,1216595 -3032939,1630140666,1,26,2,2,1630051774,1,6.0,-9.0,-9.0,-9.0,4.0,1216595 -3032940,1630140841,2,38,0,1,1630051775,1,1.0,40.0,1.0,-9.0,4.0,1216596 -3032941,1630140773,2,62,0,1,1630051776,2,6.0,-9.0,-9.0,-9.0,4.0,1216597 -3032942,1630140774,2,63,15,2,1630051776,1,6.0,-9.0,-9.0,-9.0,4.0,1216597 -3032943,1630140790,2,31,0,1,1630051777,2,3.0,40.0,3.0,-9.0,4.0,1216598 -3032944,1630140791,2,39,1,2,1630051777,1,1.0,40.0,1.0,-9.0,4.0,1216598 -3032945,1630140789,2,64,0,1,1630051778,1,1.0,32.0,1.0,-9.0,2.0,1216599 -3032946,1630140788,2,61,1,2,1630051778,2,6.0,-9.0,-9.0,-9.0,4.0,1216599 -3032947,1630140830,2,53,0,1,1630051779,1,1.0,40.0,1.0,-9.0,4.0,1216600 -3032948,1630140832,2,60,0,1,1630051780,1,6.0,-9.0,-9.0,-9.0,4.0,1216601 -3032949,1630140833,2,58,5,2,1630051780,1,1.0,40.0,1.0,-9.0,2.0,1216601 -3032950,1630140729,2,59,0,1,1630051781,1,2.0,72.0,1.0,-9.0,4.0,1216602 -3032951,1630140728,2,49,1,2,1630051781,2,1.0,40.0,1.0,-9.0,4.0,1216602 -3032952,1630140786,2,39,0,1,1630051782,2,1.0,40.0,1.0,-9.0,4.0,1216603 -3032953,1630140787,2,36,1,2,1630051782,1,3.0,40.0,6.0,-9.0,4.0,1216603 -3032954,1630140767,2,49,0,1,1630051783,2,3.0,-9.0,-9.0,-9.0,4.0,1216604 -3032955,1630140768,2,45,1,2,1630051783,1,1.0,40.0,1.0,-9.0,4.0,1216604 -3032956,1630140769,2,23,2,3,1630051783,1,1.0,45.0,6.0,-9.0,4.0,1216604 -3032957,1630140770,2,43,10,4,1630051783,1,6.0,-9.0,-9.0,-9.0,4.0,1216604 -3032958,1630140748,2,63,0,1,1630051784,2,6.0,-9.0,-9.0,-9.0,4.0,1216605 -3032959,1630140749,2,25,2,2,1630051784,2,1.0,40.0,2.0,-9.0,4.0,1216605 -3032960,1630140809,2,54,0,1,1630051785,1,6.0,-9.0,-9.0,-9.0,4.0,1216606 -3034510,1630142587,2,38,0,1,1630052394,2,1.0,40.0,1.0,16.0,4.0,1217215 -3034511,1630142595,2,14,2,2,1630052394,2,-9.0,-9.0,-9.0,11.0,-9.0,1217215 -3034512,1630142589,2,8,10,3,1630052394,1,-9.0,-9.0,-9.0,4.0,-9.0,1217215 -3034513,1630142591,2,7,10,4,1630052394,1,-9.0,-9.0,-9.0,4.0,-9.0,1217215 -3034514,1630142593,2,7,10,5,1630052394,1,-9.0,-9.0,-9.0,4.0,-9.0,1217215 -3034515,1630142597,2,5,10,6,1630052394,2,-9.0,-9.0,-9.0,2.0,-9.0,1217215 -3034516,1630142588,2,38,0,1,1630052395,2,1.0,40.0,1.0,16.0,4.0,1217216 -3034517,1630142596,2,14,2,2,1630052395,2,-9.0,-9.0,-9.0,11.0,-9.0,1217216 -3034518,1630142590,2,8,10,3,1630052395,1,-9.0,-9.0,-9.0,4.0,-9.0,1217216 -3034519,1630142592,2,7,10,4,1630052395,1,-9.0,-9.0,-9.0,4.0,-9.0,1217216 -3034520,1630142594,2,7,10,5,1630052395,1,-9.0,-9.0,-9.0,4.0,-9.0,1217216 -3034521,1630142598,2,5,10,6,1630052395,2,-9.0,-9.0,-9.0,2.0,-9.0,1217216 -3034522,1630142572,2,36,0,1,1630052396,2,6.0,-9.0,-9.0,15.0,4.0,1217217 -3034523,1630142574,2,17,2,2,1630052396,2,6.0,-9.0,-9.0,14.0,4.0,1217217 -3034524,1630142573,2,13,2,3,1630052396,1,-9.0,-9.0,-9.0,9.0,-9.0,1217217 -3034525,1630142575,2,11,2,4,1630052396,2,-9.0,-9.0,-9.0,7.0,-9.0,1217217 -3034526,1630142480,2,42,0,1,1630052397,2,1.0,40.0,1.0,-9.0,4.0,1217218 -3034527,1630142484,2,18,2,2,1630052397,1,6.0,-9.0,-9.0,14.0,4.0,1217218 -3034528,1630142490,2,7,2,3,1630052397,2,-9.0,-9.0,-9.0,4.0,-9.0,1217218 -3034529,1630142486,2,38,5,4,1630052397,1,6.0,-9.0,-9.0,-9.0,4.0,1217218 -3034530,1630142482,2,61,6,5,1630052397,2,6.0,-9.0,-9.0,-9.0,4.0,1217218 -3034531,1630142488,2,57,15,6,1630052397,1,6.0,-9.0,-9.0,-9.0,4.0,1217218 -3034532,1630142481,2,42,0,1,1630052398,2,1.0,40.0,1.0,-9.0,4.0,1217219 -3034533,1630142485,2,18,2,2,1630052398,1,6.0,-9.0,-9.0,14.0,4.0,1217219 -3034534,1630142491,2,7,2,3,1630052398,2,-9.0,-9.0,-9.0,4.0,-9.0,1217219 -3034535,1630142487,2,38,5,4,1630052398,1,6.0,-9.0,-9.0,-9.0,4.0,1217219 -3034536,1630142483,2,61,6,5,1630052398,2,6.0,-9.0,-9.0,-9.0,4.0,1217219 -3034537,1630142489,2,57,15,6,1630052398,1,6.0,-9.0,-9.0,-9.0,4.0,1217219 -3034538,1630142445,2,47,0,1,1630052399,1,3.0,-9.0,-9.0,-9.0,4.0,1217220 -3034539,1630142446,2,17,2,2,1630052399,2,6.0,-9.0,-9.0,13.0,2.0,1217220 -3034540,1630142444,2,11,2,3,1630052399,1,-9.0,-9.0,-9.0,7.0,-9.0,1217220 -3034541,1630142443,2,73,8,4,1630052399,2,6.0,-9.0,-9.0,-9.0,4.0,1217220 -3034542,1630142525,2,57,0,1,1630052400,1,6.0,-9.0,-9.0,-9.0,4.0,1217221 -3034543,1630142521,2,49,1,2,1630052400,2,6.0,-9.0,-9.0,-9.0,4.0,1217221 -3034544,1630142523,2,22,2,3,1630052400,2,6.0,40.0,6.0,-9.0,4.0,1217221 -3034545,1630142527,2,13,2,4,1630052400,2,-9.0,-9.0,-9.0,9.0,-9.0,1217221 -3034546,1630142476,2,60,0,1,1630052401,2,6.0,-9.0,-9.0,-9.0,4.0,1217222 -3034547,1630142721,2,62,0,1,1630052402,1,6.0,-9.0,-9.0,-9.0,4.0,1217223 -3034548,1630142467,2,55,0,1,1630052403,1,1.0,48.0,1.0,-9.0,2.0,1217224 -3034549,1630142465,1,52,1,2,1630052403,2,6.0,-9.0,-9.0,-9.0,4.0,1217224 -3034550,1630142471,4,20,2,3,1630052403,2,6.0,-9.0,-9.0,15.0,4.0,1217224 -3034551,1630142469,4,18,2,4,1630052403,1,6.0,-9.0,-9.0,15.0,4.0,1217224 -3034552,1630142529,2,54,0,1,1630052404,2,6.0,-9.0,-9.0,-9.0,4.0,1217225 -3034553,1630142530,2,25,2,2,1630052404,2,1.0,30.0,3.0,-9.0,4.0,1217225 -3034554,1630142532,2,2,7,3,1630052404,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217225 -3034555,1630142531,2,52,15,4,1630052404,1,6.0,-9.0,-9.0,-9.0,4.0,1217225 -3034556,1630142615,2,62,0,1,1630052405,2,1.0,40.0,1.0,-9.0,4.0,1217226 -3034557,1630142724,2,59,0,1,1630052406,1,1.0,40.0,1.0,-9.0,4.0,1217227 -3034558,1630142536,2,55,0,1,1630052407,2,6.0,-9.0,-9.0,-9.0,4.0,1217228 -3034559,1630142542,2,49,1,2,1630052407,1,1.0,40.0,1.0,-9.0,4.0,1217228 -3034560,1630142538,2,18,2,3,1630052407,2,6.0,-9.0,-9.0,15.0,4.0,1217228 -3034561,1630142544,2,16,2,4,1630052407,2,6.0,-9.0,-9.0,13.0,-9.0,1217228 -3034562,1630142546,2,14,2,5,1630052407,2,-9.0,-9.0,-9.0,11.0,-9.0,1217228 -3034563,1630142540,2,10,2,6,1630052407,1,-9.0,-9.0,-9.0,8.0,-9.0,1217228 -3034564,1630142636,2,54,0,1,1630052408,1,6.0,-9.0,-9.0,-9.0,3.0,1217229 -3034565,1630142634,2,52,1,2,1630052408,2,3.0,-9.0,-9.0,-9.0,4.0,1217229 -3034566,1630142635,2,21,2,3,1630052408,2,1.0,28.0,1.0,-9.0,4.0,1217229 -3034567,1630142637,2,19,2,4,1630052408,1,3.0,20.0,6.0,-9.0,4.0,1217229 -3034568,1630142638,2,14,2,5,1630052408,2,-9.0,-9.0,-9.0,11.0,-9.0,1217229 -3034569,1630142639,2,13,2,6,1630052408,2,-9.0,-9.0,-9.0,8.0,-9.0,1217229 -3034570,1630142613,2,61,0,1,1630052409,1,1.0,60.0,1.0,-9.0,4.0,1217230 -3034571,1630142609,2,60,1,2,1630052409,2,6.0,-9.0,-9.0,-9.0,4.0,1217230 -3034572,1630142611,2,51,10,3,1630052409,2,6.0,-9.0,-9.0,-9.0,4.0,1217230 -3034573,1630142660,2,55,0,1,1630052410,1,6.0,16.0,6.0,-9.0,4.0,1217231 -3034574,1630142659,2,51,1,2,1630052410,2,6.0,16.0,3.0,-9.0,4.0,1217231 -3034575,1630142661,2,26,2,3,1630052410,1,1.0,40.0,2.0,-9.0,4.0,1217231 -3034576,1630142614,2,61,0,1,1630052411,1,1.0,60.0,1.0,-9.0,4.0,1217232 -3034577,1630142610,2,60,1,2,1630052411,2,6.0,-9.0,-9.0,-9.0,4.0,1217232 -3034578,1630142612,2,51,10,3,1630052411,2,6.0,-9.0,-9.0,-9.0,4.0,1217232 -3034579,1630142419,2,50,0,1,1630052412,1,3.0,-9.0,-9.0,-9.0,4.0,1217233 -3034580,1630142415,2,81,10,2,1630052412,2,6.0,-9.0,-9.0,-9.0,4.0,1217233 -3034581,1630142421,2,58,10,3,1630052412,1,1.0,40.0,1.0,-9.0,4.0,1217233 -3034582,1630142417,2,23,10,4,1630052412,2,1.0,16.0,1.0,15.0,4.0,1217233 -3034583,1630142510,2,55,0,1,1630052413,1,6.0,-9.0,-9.0,-9.0,4.0,1217234 -3034584,1630142508,2,46,1,2,1630052413,2,6.0,-9.0,-9.0,-9.0,4.0,1217234 -3034585,1630142511,2,18,2,3,1630052413,1,6.0,-9.0,-9.0,14.0,4.0,1217234 -3034586,1630142509,2,17,2,4,1630052413,1,6.0,-9.0,-9.0,13.0,4.0,1217234 -3034587,1630142479,2,57,0,1,1630052414,2,6.0,-9.0,-9.0,15.0,4.0,1217235 -3034588,1630142478,2,62,0,1,1630052415,2,6.0,-9.0,-9.0,-9.0,4.0,1217236 -3034589,1630142741,2,53,0,1,1630052416,1,6.0,-9.0,-9.0,-9.0,2.0,1217237 -3034590,1630142516,2,57,0,1,1630052417,2,6.0,-9.0,-9.0,-9.0,4.0,1217238 -3034591,1630142688,2,61,0,1,1630052418,2,6.0,-9.0,-9.0,-9.0,4.0,1217239 -3034592,1630142477,2,58,0,1,1630052419,2,3.0,-9.0,-9.0,15.0,2.0,1217240 -3034593,1630142646,2,63,0,1,1630052420,2,6.0,-9.0,-9.0,-9.0,4.0,1217241 -3034594,1630142500,2,53,0,1,1630052421,1,3.0,25.0,6.0,-9.0,4.0,1217242 -3034595,1630142496,2,49,1,2,1630052421,2,6.0,-9.0,-9.0,-9.0,4.0,1217242 -3034596,1630142502,2,18,2,3,1630052421,1,6.0,-9.0,-9.0,15.0,4.0,1217242 -3034597,1630142498,2,27,4,4,1630052421,2,3.0,-9.0,-9.0,15.0,4.0,1217242 -3034598,1630142504,2,7,7,5,1630052421,2,-9.0,-9.0,-9.0,5.0,-9.0,1217242 -3034599,1630142506,2,4,7,6,1630052421,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217242 -3034600,1630142501,2,53,0,1,1630052422,1,3.0,25.0,6.0,-9.0,4.0,1217243 -3034601,1630142497,2,49,1,2,1630052422,2,6.0,-9.0,-9.0,-9.0,4.0,1217243 -3034602,1630142503,2,18,2,3,1630052422,1,6.0,-9.0,-9.0,15.0,4.0,1217243 -3034603,1630142499,2,27,4,4,1630052422,2,3.0,-9.0,-9.0,15.0,4.0,1217243 -3034604,1630142505,2,7,7,5,1630052422,2,-9.0,-9.0,-9.0,5.0,-9.0,1217243 -3034605,1630142507,2,4,7,6,1630052422,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217243 -3034606,1630142643,2,46,0,1,1630052423,2,6.0,-9.0,-9.0,-9.0,4.0,1217244 -3034607,1630142645,2,84,1,2,1630052423,1,6.0,-9.0,-9.0,-9.0,4.0,1217244 -3034608,1630142644,2,43,5,3,1630052423,1,6.0,-9.0,-9.0,-9.0,4.0,1217244 -3034609,1630142517,2,61,0,1,1630052424,2,6.0,-9.0,-9.0,-9.0,4.0,1217245 -3034610,1630142518,2,45,2,2,1630052424,1,6.0,-9.0,-9.0,-9.0,4.0,1217245 -3034611,1630142519,2,69,5,3,1630052424,1,6.0,-9.0,-9.0,-9.0,4.0,1217245 -3034612,1630142738,2,53,0,1,1630052425,1,1.0,15.0,6.0,-9.0,4.0,1217246 -3034613,1630142430,2,68,0,1,1630052426,1,6.0,-9.0,-9.0,-9.0,4.0,1217247 -3034614,1630142427,2,68,1,2,1630052426,2,6.0,-9.0,-9.0,-9.0,4.0,1217247 -3034615,1630142428,2,44,2,3,1630052426,2,1.0,20.0,1.0,-9.0,4.0,1217247 -3034616,1630142429,2,41,2,4,1630052426,2,6.0,-9.0,-9.0,-9.0,4.0,1217247 -3034617,1630142410,2,69,0,1,1630052427,2,6.0,-9.0,-9.0,-9.0,4.0,1217248 -3034618,1630142438,2,83,0,1,1630052428,2,6.0,-9.0,-9.0,-9.0,4.0,1217249 -3034619,1630142748,2,68,0,1,1630052429,1,3.0,-9.0,-9.0,-9.0,2.0,1217250 -3034620,1630142668,2,38,0,1,1630052430,2,3.0,34.0,5.0,-9.0,4.0,1217251 -3034621,1630142670,2,12,2,2,1630052430,2,-9.0,-9.0,-9.0,8.0,-9.0,1217251 -3034622,1630142669,2,8,2,3,1630052430,1,-9.0,-9.0,-9.0,5.0,-9.0,1217251 -3034623,1630142671,2,6,2,4,1630052430,2,-9.0,-9.0,-9.0,3.0,-9.0,1217251 -3034624,1630142722,2,44,0,1,1630052431,1,6.0,-9.0,-9.0,-9.0,4.0,1217252 -3034625,1630142729,2,28,0,1,1630052432,1,3.0,-9.0,-9.0,-9.0,4.0,1217253 -3034626,1630142629,2,26,0,1,1630052433,2,3.0,9.0,6.0,-9.0,4.0,1217254 -3034627,1630142630,2,8,2,2,1630052433,1,-9.0,-9.0,-9.0,4.0,-9.0,1217254 -3034628,1630142631,2,1,2,3,1630052433,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217254 -3034629,1630142723,2,54,0,1,1630052434,1,6.0,20.0,4.0,-9.0,4.0,1217255 -3034630,1630142736,2,59,0,1,1630052435,1,6.0,-9.0,-9.0,-9.0,2.0,1217256 -3034631,1630142520,2,58,0,1,1630052436,2,6.0,-9.0,-9.0,-9.0,4.0,1217257 -3034632,1630142571,2,51,0,1,1630052437,2,6.0,-9.0,-9.0,-9.0,4.0,1217258 -3034633,1630142731,2,59,0,1,1630052438,1,6.0,-9.0,-9.0,-9.0,2.0,1217259 -3034634,1630142683,2,53,0,1,1630052439,2,6.0,-9.0,-9.0,-9.0,4.0,1217260 -3034635,1630142728,2,54,0,1,1630052440,1,6.0,-9.0,-9.0,-9.0,4.0,1217261 -3034636,1630142626,2,57,0,1,1630052441,2,6.0,-9.0,-9.0,-9.0,4.0,1217262 -3034637,1630142627,2,38,2,2,1630052441,1,6.0,-9.0,-9.0,-9.0,4.0,1217262 -3034638,1630142628,2,20,2,3,1630052441,1,6.0,-9.0,-9.0,-9.0,4.0,1217262 -3034639,1630142739,2,48,0,1,1630052442,1,1.0,36.0,6.0,-9.0,4.0,1217263 -3034640,1630142733,2,55,0,1,1630052443,1,1.0,48.0,1.0,-9.0,4.0,1217264 -3034641,1630142734,2,53,5,2,1630052443,1,3.0,-9.0,-9.0,-9.0,4.0,1217264 -3034642,1630142735,2,19,10,3,1630052443,1,6.0,-9.0,-9.0,14.0,4.0,1217264 -3034643,1630142746,2,76,0,1,1630052444,1,6.0,-9.0,-9.0,-9.0,2.0,1217265 -3034644,1630142583,2,30,0,1,1630052445,2,1.0,20.0,6.0,-9.0,4.0,1217266 -3034645,1630142584,2,9,2,2,1630052445,1,-9.0,-9.0,-9.0,6.0,-9.0,1217266 -3034646,1630142585,2,6,2,3,1630052445,2,-9.0,-9.0,-9.0,3.0,-9.0,1217266 -3034647,1630142586,2,3,2,4,1630052445,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217266 -3034648,1630142623,2,58,0,1,1630052446,2,1.0,55.0,1.0,-9.0,4.0,1217267 -3034649,1630142624,2,59,1,2,1630052446,1,1.0,40.0,1.0,-9.0,4.0,1217267 -3034650,1630142625,2,47,15,3,1630052446,1,1.0,30.0,1.0,-9.0,4.0,1217267 -3034651,1630142695,2,38,0,1,1630052447,2,1.0,40.0,1.0,-9.0,4.0,1217268 -3034652,1630142697,2,38,1,2,1630052447,1,1.0,40.0,1.0,-9.0,4.0,1217268 -3034653,1630142696,2,6,2,3,1630052447,1,-9.0,-9.0,-9.0,3.0,-9.0,1217268 -3034654,1630142698,2,2,2,4,1630052447,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217268 -3034655,1630142454,2,82,0,1,1630052448,2,6.0,-9.0,-9.0,-9.0,4.0,1217269 -3034656,1630142455,2,49,2,2,1630052448,2,1.0,30.0,1.0,-9.0,4.0,1217269 -3034657,1630142456,2,21,7,3,1630052448,1,3.0,16.0,5.0,-9.0,4.0,1217269 -3034658,1630142684,2,61,0,1,1630052449,2,1.0,25.0,1.0,-9.0,4.0,1217270 -3034659,1630142474,2,32,0,1,1630052450,2,2.0,40.0,1.0,-9.0,4.0,1217271 -3034660,1630142473,1,35,1,2,1630052450,1,3.0,-9.0,-9.0,15.0,4.0,1217271 -3034661,1630142475,2,12,2,3,1630052450,2,-9.0,-9.0,-9.0,8.0,-9.0,1217271 -3034662,1630142705,2,62,0,1,1630052451,2,1.0,50.0,1.0,-9.0,4.0,1217272 -3034663,1630142747,2,65,0,1,1630052452,1,6.0,-9.0,-9.0,-9.0,2.0,1217273 -3034664,1630142742,2,35,0,1,1630052453,1,6.0,-9.0,-9.0,-9.0,4.0,1217274 -3034665,1630142492,2,36,0,1,1630052454,2,6.0,-9.0,-9.0,-9.0,4.0,1217275 -3034666,1630142495,2,11,2,2,1630052454,2,-9.0,-9.0,-9.0,7.0,-9.0,1217275 -3034667,1630142494,2,6,2,3,1630052454,1,-9.0,-9.0,-9.0,2.0,-9.0,1217275 -3034668,1630142493,2,37,5,4,1630052454,2,2.0,35.0,1.0,-9.0,4.0,1217275 -3034669,1630142558,2,56,0,1,1630052455,2,1.0,40.0,1.0,-9.0,4.0,1217276 -3034670,1630142559,2,43,10,2,1630052455,2,6.0,-9.0,-9.0,-9.0,4.0,1217276 -3034671,1630142560,2,63,13,3,1630052455,1,6.0,-9.0,-9.0,-9.0,4.0,1217276 -3034672,1630142685,2,58,0,1,1630052456,2,6.0,-9.0,-9.0,-9.0,4.0,1217277 -3034673,1630142687,2,69,1,2,1630052456,1,6.0,-9.0,-9.0,-9.0,2.0,1217277 -3034674,1630142686,2,18,2,3,1630052456,2,6.0,25.0,6.0,15.0,4.0,1217277 -3034675,1630142718,2,51,0,1,1630052457,1,1.0,45.0,1.0,16.0,3.0,1217278 -3034676,1630142719,2,19,2,2,1630052457,1,6.0,-9.0,-9.0,15.0,4.0,1217278 -3034677,1630142720,2,16,2,3,1630052457,2,6.0,16.0,6.0,13.0,-9.0,1217278 -3034678,1630142717,2,14,2,4,1630052457,1,-9.0,-9.0,-9.0,11.0,-9.0,1217278 -3034679,1630142745,2,35,0,1,1630052458,1,1.0,40.0,1.0,-9.0,4.0,1217279 -3034680,1630142561,2,57,0,1,1630052459,2,6.0,-9.0,-9.0,-9.0,4.0,1217280 -3034681,1630142548,2,43,0,1,1630052460,2,1.0,40.0,1.0,-9.0,4.0,1217281 -3034682,1630142549,2,43,1,2,1630052460,1,6.0,-9.0,-9.0,-9.0,4.0,1217281 -3034683,1630142550,2,14,2,3,1630052460,2,-9.0,-9.0,-9.0,11.0,-9.0,1217281 -3034684,1630142689,2,44,0,1,1630052461,2,1.0,15.0,1.0,-9.0,4.0,1217282 -3034685,1630142691,2,31,2,2,1630052461,1,3.0,-9.0,-9.0,-9.0,4.0,1217282 -3034686,1630142692,2,24,2,3,1630052461,1,6.0,-9.0,-9.0,12.0,4.0,1217282 -3034687,1630142690,2,18,2,4,1630052461,2,6.0,-9.0,-9.0,14.0,4.0,1217282 -3034688,1630142693,2,13,2,5,1630052461,2,-9.0,-9.0,-9.0,10.0,-9.0,1217282 -3034689,1630142694,2,9,2,6,1630052461,2,-9.0,-9.0,-9.0,6.0,-9.0,1217282 -3034690,1630142514,2,50,0,1,1630052462,1,1.0,50.0,1.0,-9.0,4.0,1217283 -3034691,1630142512,2,51,1,2,1630052462,2,3.0,-9.0,-9.0,-9.0,4.0,1217283 -3034692,1630142513,2,18,2,3,1630052462,2,3.0,-9.0,-9.0,14.0,4.0,1217283 -3034693,1630142515,2,21,4,4,1630052462,1,3.0,30.0,6.0,-9.0,4.0,1217283 -3034694,1630142570,2,50,0,1,1630052463,1,1.0,49.0,1.0,-9.0,4.0,1217284 -3034695,1630142567,2,49,1,2,1630052463,2,1.0,90.0,1.0,-9.0,4.0,1217284 -3034696,1630142568,2,18,2,3,1630052463,2,6.0,-9.0,-9.0,14.0,4.0,1217284 -3034697,1630142569,2,16,2,4,1630052463,1,6.0,-9.0,-9.0,12.0,-9.0,1217284 -3034698,1630142743,2,38,0,1,1630052464,1,1.0,40.0,1.0,-9.0,4.0,1217285 -3034699,1630142526,2,57,0,1,1630052465,1,6.0,-9.0,-9.0,-9.0,4.0,1217286 -3034700,1630142522,2,49,1,2,1630052465,2,6.0,-9.0,-9.0,-9.0,4.0,1217286 -3034701,1630142524,2,22,2,3,1630052465,2,6.0,40.0,6.0,-9.0,4.0,1217286 -3034702,1630142528,2,13,2,4,1630052465,2,-9.0,-9.0,-9.0,9.0,-9.0,1217286 -3034703,1630142414,2,84,0,1,1630052466,1,6.0,-9.0,-9.0,-9.0,2.0,1217287 -3034704,1630142411,2,77,1,2,1630052466,2,6.0,-9.0,-9.0,-9.0,4.0,1217287 -3034705,1630142413,2,45,2,3,1630052466,1,6.0,-9.0,-9.0,-9.0,4.0,1217287 -3034706,1630142457,2,80,0,1,1630052467,2,6.0,-9.0,-9.0,-9.0,4.0,1217288 -3034707,1630142460,2,25,7,2,1630052467,1,3.0,-9.0,-9.0,-9.0,4.0,1217288 -3034708,1630142458,2,57,10,3,1630052467,2,1.0,35.0,1.0,-9.0,4.0,1217288 -3034709,1630142606,2,44,0,1,1630052468,2,3.0,10.0,6.0,-9.0,4.0,1217289 -3034710,1630142607,2,21,2,2,1630052468,1,6.0,-9.0,-9.0,-9.0,4.0,1217289 -3034711,1630142608,2,16,2,3,1630052468,2,6.0,-9.0,-9.0,12.0,-9.0,1217289 -3034712,1630142622,2,47,0,1,1630052469,2,6.0,-9.0,-9.0,-9.0,4.0,1217290 -3034713,1630142448,2,87,0,1,1630052470,2,6.0,-9.0,-9.0,-9.0,4.0,1217291 -3034714,1630142449,2,60,2,2,1630052470,2,6.0,-9.0,-9.0,-9.0,4.0,1217291 -3034715,1630142450,2,56,2,3,1630052470,1,6.0,-9.0,-9.0,-9.0,4.0,1217291 -3034716,1630142707,2,41,0,1,1630052471,2,1.0,50.0,1.0,-9.0,4.0,1217292 -3034717,1630142710,2,41,1,2,1630052471,1,6.0,-9.0,-9.0,-9.0,4.0,1217292 -3034718,1630142708,2,14,2,3,1630052471,1,-9.0,-9.0,-9.0,12.0,-9.0,1217292 -3034719,1630142709,2,3,2,4,1630052471,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217292 -3034720,1630142727,2,63,0,1,1630052472,1,1.0,24.0,1.0,-9.0,2.0,1217293 -3034721,1630142447,2,68,0,1,1630052473,2,6.0,-9.0,-9.0,-9.0,4.0,1217294 -3034722,1630142673,2,36,0,1,1630052474,2,6.0,-9.0,-9.0,-9.0,4.0,1217295 -3034723,1630142676,2,35,1,2,1630052474,1,1.0,45.0,1.0,-9.0,4.0,1217295 -3034724,1630142674,2,18,2,3,1630052474,2,6.0,-9.0,-9.0,15.0,4.0,1217295 -3034725,1630142675,2,16,2,4,1630052474,1,1.0,25.0,6.0,11.0,-9.0,1217295 -3034726,1630142677,2,14,2,5,1630052474,2,-9.0,-9.0,-9.0,10.0,-9.0,1217295 -3034727,1630142678,2,9,2,6,1630052474,2,-9.0,-9.0,-9.0,5.0,-9.0,1217295 -3034728,1630142424,2,44,0,1,1630052475,2,3.0,40.0,4.0,-9.0,4.0,1217296 -3034729,1630142425,2,59,6,2,1630052475,1,6.0,-9.0,-9.0,-9.0,4.0,1217296 -3034730,1630142423,2,68,11,3,1630052475,2,6.0,-9.0,-9.0,-9.0,4.0,1217296 -3034731,1630142426,2,45,13,4,1630052475,1,6.0,-9.0,-9.0,-9.0,4.0,1217296 -3034732,1630142699,2,25,0,1,1630052476,2,3.0,-9.0,-9.0,-9.0,4.0,1217297 -3034733,1630142700,2,6,2,2,1630052476,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217297 -3034734,1630142703,2,5,2,3,1630052476,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217297 -3034735,1630142704,2,4,2,4,1630052476,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217297 -3034736,1630142701,2,3,2,5,1630052476,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217297 -3034737,1630142702,2,2,2,6,1630052476,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217297 -3034738,1630142744,2,28,0,1,1630052477,1,3.0,25.0,4.0,15.0,4.0,1217298 -3034739,1630142653,2,62,0,1,1630052478,2,6.0,-9.0,-9.0,-9.0,4.0,1217299 -3034740,1630142654,2,40,2,2,1630052478,2,1.0,20.0,1.0,-9.0,4.0,1217299 -3034741,1630142655,2,5,7,3,1630052478,2,-9.0,-9.0,-9.0,2.0,-9.0,1217299 -3034742,1630142439,2,80,0,1,1630052479,2,6.0,-9.0,-9.0,-9.0,4.0,1217300 -3034743,1630142442,2,80,1,2,1630052479,1,6.0,-9.0,-9.0,-9.0,4.0,1217300 -3034744,1630142440,2,45,2,3,1630052479,2,6.0,-9.0,-9.0,-9.0,4.0,1217300 -3034745,1630142441,2,14,7,4,1630052479,1,-9.0,-9.0,-9.0,9.0,-9.0,1217300 -3034746,1630142706,2,41,0,1,1630052480,2,1.0,40.0,1.0,-9.0,4.0,1217301 -3034747,1630142537,2,55,0,1,1630052481,2,6.0,-9.0,-9.0,-9.0,4.0,1217302 -3034748,1630142543,2,49,1,2,1630052481,1,1.0,40.0,1.0,-9.0,4.0,1217302 -3034749,1630142539,2,18,2,3,1630052481,2,6.0,-9.0,-9.0,15.0,4.0,1217302 -3034750,1630142545,2,16,2,4,1630052481,2,6.0,-9.0,-9.0,13.0,-9.0,1217302 -3034751,1630142547,2,14,2,5,1630052481,2,-9.0,-9.0,-9.0,11.0,-9.0,1217302 -3034752,1630142541,2,10,2,6,1630052481,1,-9.0,-9.0,-9.0,8.0,-9.0,1217302 -3034753,1630142749,2,87,0,1,1630052482,1,6.0,-9.0,-9.0,-9.0,2.0,1217303 -3034754,1630142711,2,46,0,1,1630052483,2,3.0,-9.0,-9.0,15.0,4.0,1217304 -3034755,1630142714,2,47,1,2,1630052483,1,1.0,40.0,6.0,-9.0,4.0,1217304 -3034756,1630142712,2,28,2,3,1630052483,2,6.0,-9.0,-9.0,-9.0,4.0,1217304 -3034757,1630142713,2,17,2,4,1630052483,1,6.0,-9.0,-9.0,13.0,4.0,1217304 -3034758,1630142715,2,15,2,5,1630052483,2,-9.0,-9.0,-9.0,12.0,-9.0,1217304 -3034759,1630142716,2,8,2,6,1630052483,2,-9.0,-9.0,-9.0,5.0,-9.0,1217304 -3034760,1630142633,2,44,0,1,1630052484,2,3.0,-9.0,-9.0,-9.0,4.0,1217305 -3034761,1630142730,2,28,0,1,1630052485,1,1.0,55.0,1.0,-9.0,4.0,1217306 -3034762,1630142650,2,40,0,1,1630052486,1,1.0,40.0,1.0,-9.0,4.0,1217307 -3034763,1630142647,2,38,1,2,1630052486,2,6.0,-9.0,-9.0,-9.0,4.0,1217307 -3034764,1630142648,2,18,2,3,1630052486,2,6.0,-9.0,-9.0,14.0,4.0,1217307 -3034765,1630142651,2,17,2,4,1630052486,2,6.0,-9.0,-9.0,-9.0,4.0,1217307 -3034766,1630142649,2,12,2,5,1630052486,1,-9.0,-9.0,-9.0,9.0,-9.0,1217307 -3034767,1630142652,2,3,2,6,1630052486,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217307 -3034768,1630142632,2,63,0,1,1630052487,2,6.0,-9.0,-9.0,-9.0,4.0,1217308 -3034769,1630142726,2,58,0,1,1630052488,1,6.0,-9.0,-9.0,-9.0,4.0,1217309 -3034770,1630142679,2,33,0,1,1630052489,2,3.0,-9.0,-9.0,-9.0,4.0,1217310 -3034771,1630142680,2,10,2,2,1630052489,1,-9.0,-9.0,-9.0,7.0,-9.0,1217310 -3034772,1630142682,2,5,2,3,1630052489,2,-9.0,-9.0,-9.0,2.0,-9.0,1217310 -3034773,1630142681,2,4,2,4,1630052489,1,-9.0,-9.0,-9.0,1.0,-9.0,1217310 -3034774,1630142420,2,50,0,1,1630052490,1,3.0,-9.0,-9.0,-9.0,4.0,1217311 -3034775,1630142416,2,81,10,2,1630052490,2,6.0,-9.0,-9.0,-9.0,4.0,1217311 -3034776,1630142422,2,58,10,3,1630052490,1,1.0,40.0,1.0,-9.0,4.0,1217311 -3034777,1630142418,2,23,10,4,1630052490,2,1.0,16.0,1.0,15.0,4.0,1217311 -3034778,1630142555,2,37,0,1,1630052491,2,1.0,40.0,1.0,-9.0,4.0,1217312 -3034779,1630142557,2,17,2,2,1630052491,2,3.0,-9.0,-9.0,14.0,4.0,1217312 -3034780,1630142556,2,15,2,3,1630052491,1,-9.0,-9.0,-9.0,13.0,-9.0,1217312 -3034781,1630142602,2,37,0,1,1630052492,2,3.0,-9.0,-9.0,-9.0,4.0,1217313 -3034782,1630142603,2,14,2,2,1630052492,1,-9.0,-9.0,-9.0,11.0,-9.0,1217313 -3034783,1630142605,2,5,2,3,1630052492,2,-9.0,-9.0,-9.0,2.0,-9.0,1217313 -3034784,1630142604,2,2,2,4,1630052492,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217313 -3034785,1630142579,2,60,0,1,1630052493,2,1.0,25.0,1.0,-9.0,4.0,1217314 -3034786,1630142580,2,27,2,2,1630052493,2,1.0,50.0,1.0,-9.0,4.0,1217314 -3034787,1630142582,2,5,7,3,1630052493,2,-9.0,-9.0,-9.0,2.0,-9.0,1217314 -3034788,1630142581,2,3,7,4,1630052493,1,-9.0,-9.0,-9.0,1.0,-9.0,1217314 -3034789,1630142431,2,93,0,1,1630052494,2,6.0,-9.0,-9.0,-9.0,4.0,1217315 -3034790,1630142432,2,76,5,2,1630052494,2,6.0,-9.0,-9.0,-9.0,4.0,1217315 -3034791,1630142433,2,47,10,3,1630052494,2,1.0,40.0,1.0,-9.0,4.0,1217315 -3034792,1630142740,2,47,0,1,1630052495,1,1.0,40.0,1.0,-9.0,4.0,1217316 -3034793,1630142662,2,39,0,1,1630052496,2,6.0,27.0,1.0,-9.0,4.0,1217317 -3034794,1630142664,2,21,2,2,1630052496,1,6.0,-9.0,-9.0,-9.0,4.0,1217317 -3034795,1630142663,2,26,10,3,1630052496,2,6.0,-9.0,-9.0,-9.0,4.0,1217317 -3034796,1630142562,2,41,0,1,1630052497,2,1.0,48.0,1.0,15.0,4.0,1217318 -3034797,1630142452,2,54,0,1,1630052498,2,3.0,35.0,5.0,-9.0,4.0,1217319 -3034798,1630142453,2,54,1,2,1630052498,1,1.0,40.0,2.0,-9.0,4.0,1217319 -3034799,1630142451,2,86,8,3,1630052498,2,6.0,-9.0,-9.0,-9.0,4.0,1217319 -3034800,1630142665,2,58,0,1,1630052499,2,6.0,-9.0,-9.0,-9.0,3.0,1217320 -3034801,1630142666,2,21,2,2,1630052499,2,1.0,30.0,3.0,15.0,4.0,1217320 -3034802,1630142667,2,24,15,3,1630052499,1,6.0,20.0,6.0,-9.0,4.0,1217320 -3034803,1630142672,2,60,0,1,1630052500,2,6.0,14.0,4.0,-9.0,4.0,1217321 -3034804,1630142576,2,32,0,1,1630052501,2,6.0,40.0,5.0,16.0,4.0,1217322 -3034805,1630142577,2,31,1,2,1630052501,2,6.0,40.0,5.0,-9.0,4.0,1217322 -3034806,1630142578,2,5,2,3,1630052501,2,-9.0,-9.0,-9.0,2.0,-9.0,1217322 -3034807,1630142437,2,74,0,1,1630052502,1,6.0,40.0,6.0,-9.0,2.0,1217323 -3034808,1630142434,2,70,1,2,1630052502,2,6.0,-9.0,-9.0,-9.0,4.0,1217323 -3034809,1630142435,2,45,2,3,1630052502,2,1.0,40.0,1.0,-9.0,4.0,1217323 -3034810,1630142436,2,24,7,4,1630052502,2,3.0,25.0,6.0,15.0,4.0,1217323 -3034811,1630142732,2,54,0,1,1630052503,1,1.0,40.0,1.0,-9.0,4.0,1217324 -3034812,1630142551,2,32,0,1,1630052504,2,1.0,40.0,1.0,-9.0,4.0,1217325 -3034813,1630142552,2,16,2,2,1630052504,1,6.0,-9.0,-9.0,13.0,-9.0,1217325 -3034814,1630142553,2,6,2,3,1630052504,2,-9.0,-9.0,-9.0,3.0,-9.0,1217325 -3034815,1630142554,2,5,2,4,1630052504,2,-9.0,-9.0,-9.0,2.0,-9.0,1217325 -3034816,1630142461,2,68,0,1,1630052505,2,6.0,-9.0,-9.0,-9.0,4.0,1217326 -3034817,1630142462,2,13,7,2,1630052505,1,-9.0,-9.0,-9.0,10.0,-9.0,1217326 -3034818,1630142463,2,13,7,3,1630052505,1,-9.0,-9.0,-9.0,10.0,-9.0,1217326 -3034819,1630142464,2,16,15,4,1630052505,1,6.0,-9.0,-9.0,13.0,-9.0,1217326 -3034820,1630142656,2,29,0,1,1630052506,2,3.0,40.0,5.0,-9.0,4.0,1217327 -3034821,1630142658,2,15,2,2,1630052506,2,-9.0,-9.0,-9.0,10.0,-9.0,1217327 -3034822,1630142657,3,6,2,3,1630052506,1,-9.0,-9.0,-9.0,2.0,-9.0,1217327 -3034823,1630142563,2,45,0,1,1630052507,2,1.0,24.0,6.0,-9.0,4.0,1217328 -3034824,1630142566,2,16,2,2,1630052507,2,6.0,-9.0,-9.0,13.0,-9.0,1217328 -3034825,1630142565,2,33,13,3,1630052507,1,6.0,-9.0,-9.0,-9.0,4.0,1217328 -3034826,1630142601,2,58,0,1,1630052508,1,1.0,40.0,1.0,-9.0,4.0,1217329 -3034827,1630142599,2,58,1,2,1630052508,2,1.0,40.0,1.0,-9.0,4.0,1217329 -3034828,1630142600,2,49,10,3,1630052508,2,6.0,-9.0,-9.0,-9.0,4.0,1217329 -3034829,1630142725,2,61,0,1,1630052509,1,1.0,40.0,1.0,-9.0,4.0,1217330 -3034830,1630142535,2,65,0,1,1630052510,1,6.0,-9.0,-9.0,-9.0,4.0,1217331 -3034831,1630142533,2,61,1,2,1630052510,2,6.0,-9.0,-9.0,-9.0,4.0,1217331 -3034832,1630142534,2,32,2,3,1630052510,1,6.0,-9.0,-9.0,-9.0,4.0,1217331 -3034833,1630142616,2,26,0,1,1630052511,2,1.0,40.0,1.0,-9.0,4.0,1217332 -3034834,1630142617,2,8,2,2,1630052511,1,-9.0,-9.0,-9.0,3.0,-9.0,1217332 -3034835,1630142621,2,6,3,3,1630052511,2,-9.0,-9.0,-9.0,3.0,-9.0,1217332 -3034836,1630142618,2,2,3,4,1630052511,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217332 -3034837,1630142620,2,26,13,5,1630052511,1,1.0,40.0,1.0,-9.0,4.0,1217332 -3034838,1630142468,2,55,0,1,1630052512,1,1.0,48.0,1.0,-9.0,2.0,1217333 -3034839,1630142466,1,52,1,2,1630052512,2,6.0,-9.0,-9.0,-9.0,4.0,1217333 -3034840,1630142472,4,20,2,3,1630052512,2,6.0,-9.0,-9.0,15.0,4.0,1217333 -3034841,1630142470,4,18,2,4,1630052512,1,6.0,-9.0,-9.0,15.0,4.0,1217333 -3034842,1630142641,2,50,0,1,1630052513,1,3.0,40.0,5.0,-9.0,4.0,1217334 -3034843,1630142642,2,28,4,2,1630052513,1,3.0,-9.0,-9.0,-9.0,4.0,1217334 -3034844,1630142737,2,42,0,1,1630052514,1,6.0,-9.0,-9.0,-9.0,4.0,1217335 -3034845,1630142932,2,58,0,1,1630052515,2,6.0,-9.0,-9.0,-9.0,4.0,1217336 -3034846,1630143069,2,60,0,1,1630052516,1,6.0,-9.0,-9.0,-9.0,2.0,1217337 -3034847,1630142960,2,55,0,1,1630052517,2,1.0,37.0,1.0,-9.0,4.0,1217338 -3034848,1630142892,2,54,0,1,1630052518,2,1.0,60.0,1.0,-9.0,4.0,1217339 -3034849,1630142942,2,59,0,1,1630052519,2,6.0,-9.0,-9.0,-9.0,4.0,1217340 -3034850,1630142952,2,36,2,2,1630052519,1,1.0,40.0,6.0,-9.0,4.0,1217340 -3034851,1630142954,2,13,3,3,1630052519,2,-9.0,-9.0,-9.0,9.0,-9.0,1217340 -3034852,1630142944,2,12,3,4,1630052519,1,-9.0,-9.0,-9.0,7.0,-9.0,1217340 -3034853,1630142946,2,11,3,5,1630052519,1,-9.0,-9.0,-9.0,7.0,-9.0,1217340 -3034854,1630142948,2,10,3,6,1630052519,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217340 -3034855,1630142950,2,8,7,7,1630052519,1,-9.0,-9.0,-9.0,5.0,-9.0,1217340 -3034856,1630142943,2,59,0,1,1630052520,2,6.0,-9.0,-9.0,-9.0,4.0,1217341 -3034857,1630142953,2,36,2,2,1630052520,1,1.0,40.0,6.0,-9.0,4.0,1217341 -3034858,1630142955,2,13,3,3,1630052520,2,-9.0,-9.0,-9.0,9.0,-9.0,1217341 -3034859,1630142945,2,12,3,4,1630052520,1,-9.0,-9.0,-9.0,7.0,-9.0,1217341 -3034860,1630142947,2,11,3,5,1630052520,1,-9.0,-9.0,-9.0,7.0,-9.0,1217341 -3034861,1630142949,2,10,3,6,1630052520,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217341 -3034862,1630142951,2,8,7,7,1630052520,1,-9.0,-9.0,-9.0,5.0,-9.0,1217341 -3034863,1630142756,2,80,0,1,1630052521,2,6.0,-9.0,-9.0,-9.0,4.0,1217342 -3034864,1630142799,2,90,0,1,1630052522,2,6.0,-9.0,-9.0,-9.0,4.0,1217343 -3034865,1630142800,2,73,0,1,1630052523,2,6.0,-9.0,-9.0,-9.0,4.0,1217344 -3034866,1630142798,2,87,0,1,1630052524,2,6.0,-9.0,-9.0,-9.0,4.0,1217345 -3034867,1630143098,2,89,0,1,1630052525,1,6.0,-9.0,-9.0,-9.0,2.0,1217346 -3034868,1630142754,2,87,0,1,1630052526,2,6.0,-9.0,-9.0,-9.0,4.0,1217347 -3034869,1630143102,2,88,0,1,1630052527,1,6.0,-9.0,-9.0,-9.0,4.0,1217348 -3034870,1630143103,2,88,0,1,1630052528,1,6.0,-9.0,-9.0,-9.0,4.0,1217349 -3034871,1630143096,2,74,0,1,1630052529,1,6.0,-9.0,-9.0,-9.0,4.0,1217350 -3034872,1630142829,2,36,0,1,1630052530,2,1.0,30.0,4.0,-9.0,4.0,1217351 -3034873,1630142835,2,19,2,2,1630052530,1,3.0,-9.0,-9.0,14.0,4.0,1217351 -3034874,1630142831,2,14,2,3,1630052530,1,-9.0,-9.0,-9.0,11.0,-9.0,1217351 -3034875,1630142839,2,14,2,4,1630052530,2,-9.0,-9.0,-9.0,11.0,-9.0,1217351 -3034876,1630142833,2,12,2,5,1630052530,1,-9.0,-9.0,-9.0,9.0,-9.0,1217351 -3034877,1630142841,2,12,2,6,1630052530,2,-9.0,-9.0,-9.0,9.0,-9.0,1217351 -3034878,1630142843,2,4,2,7,1630052530,2,-9.0,-9.0,-9.0,1.0,-9.0,1217351 -3034879,1630142837,2,45,15,8,1630052530,1,1.0,32.0,5.0,-9.0,4.0,1217351 -3034880,1630142830,2,36,0,1,1630052531,2,1.0,30.0,4.0,-9.0,4.0,1217352 -3034881,1630142836,2,19,2,2,1630052531,1,3.0,-9.0,-9.0,14.0,4.0,1217352 -3034882,1630142832,2,14,2,3,1630052531,1,-9.0,-9.0,-9.0,11.0,-9.0,1217352 -3034883,1630142840,2,14,2,4,1630052531,2,-9.0,-9.0,-9.0,11.0,-9.0,1217352 -3034884,1630142834,2,12,2,5,1630052531,1,-9.0,-9.0,-9.0,9.0,-9.0,1217352 -3034885,1630142842,2,12,2,6,1630052531,2,-9.0,-9.0,-9.0,9.0,-9.0,1217352 -3034886,1630142844,2,4,2,7,1630052531,2,-9.0,-9.0,-9.0,1.0,-9.0,1217352 -3034887,1630142838,2,45,15,8,1630052531,1,1.0,32.0,5.0,-9.0,4.0,1217352 -3034888,1630143004,2,30,0,1,1630052532,2,6.0,-9.0,-9.0,-9.0,4.0,1217353 -3034889,1630143028,2,44,0,1,1630052533,1,6.0,-9.0,-9.0,-9.0,4.0,1217354 -3034890,1630142896,2,44,0,1,1630052534,2,3.0,8.0,6.0,-9.0,4.0,1217355 -3034891,1630143093,2,42,0,1,1630052535,1,6.0,-9.0,-9.0,-9.0,4.0,1217356 -3034892,1630143049,2,34,0,1,1630052536,1,6.0,-9.0,-9.0,-9.0,4.0,1217357 -3034893,1630143082,2,39,0,1,1630052537,1,6.0,-9.0,-9.0,-9.0,4.0,1217358 -3034894,1630142893,2,41,0,1,1630052538,2,6.0,-9.0,-9.0,-9.0,4.0,1217359 -3034895,1630142862,2,40,0,1,1630052539,2,6.0,-9.0,-9.0,12.0,4.0,1217360 -3034896,1630142928,2,41,0,1,1630052540,2,3.0,-9.0,-9.0,-9.0,4.0,1217361 -3034897,1630143005,2,28,0,1,1630052541,2,6.0,-9.0,-9.0,15.0,4.0,1217362 -3034898,1630143078,2,29,0,1,1630052542,1,6.0,-9.0,-9.0,-9.0,4.0,1217363 -3034899,1630143058,2,43,0,1,1630052543,1,6.0,40.0,1.0,15.0,4.0,1217364 -3034900,1630142890,2,33,0,1,1630052544,2,3.0,-9.0,-9.0,-9.0,4.0,1217365 -3034901,1630142889,2,42,0,1,1630052545,2,6.0,-9.0,-9.0,-9.0,4.0,1217366 -3034902,1630142913,2,39,0,1,1630052546,2,3.0,-9.0,-9.0,-9.0,4.0,1217367 -3034903,1630143045,2,41,0,1,1630052547,1,3.0,-9.0,-9.0,-9.0,4.0,1217368 -3034904,1630142914,2,39,0,1,1630052548,2,3.0,-9.0,-9.0,-9.0,4.0,1217369 -3034905,1630142915,2,39,0,1,1630052549,2,3.0,-9.0,-9.0,-9.0,4.0,1217370 -3034906,1630142916,2,39,0,1,1630052550,2,3.0,-9.0,-9.0,-9.0,4.0,1217371 -3034907,1630142821,2,38,0,1,1630052551,2,6.0,-9.0,-9.0,-9.0,4.0,1217372 -3034908,1630142822,2,17,2,2,1630052551,1,6.0,-9.0,-9.0,13.0,4.0,1217372 -3034909,1630142826,2,14,2,3,1630052551,2,-9.0,-9.0,-9.0,11.0,-9.0,1217372 -3034910,1630142823,2,10,2,4,1630052551,1,-9.0,-9.0,-9.0,7.0,-9.0,1217372 -3034911,1630142827,2,8,2,5,1630052551,2,-9.0,-9.0,-9.0,4.0,-9.0,1217372 -3034912,1630142828,2,6,2,6,1630052551,2,-9.0,-9.0,-9.0,3.0,-9.0,1217372 -3034913,1630142824,2,4,2,7,1630052551,1,-9.0,-9.0,-9.0,1.0,-9.0,1217372 -3034914,1630142825,2,39,5,8,1630052551,1,3.0,-9.0,-9.0,-9.0,4.0,1217372 -3034915,1630142921,2,44,0,1,1630052552,2,3.0,32.0,4.0,-9.0,4.0,1217373 -3034916,1630142922,2,19,2,2,1630052552,2,1.0,20.0,6.0,15.0,4.0,1217373 -3034917,1630142923,2,15,2,3,1630052552,1,-9.0,-9.0,-9.0,12.0,-9.0,1217373 -3034918,1630142924,2,7,2,4,1630052552,2,-9.0,-9.0,-9.0,4.0,-9.0,1217373 -3034919,1630143022,2,37,0,1,1630052553,2,1.0,35.0,2.0,-9.0,4.0,1217374 -3034920,1630143039,2,37,0,1,1630052554,1,1.0,40.0,6.0,-9.0,4.0,1217375 -3034921,1630143034,2,40,0,1,1630052555,1,1.0,40.0,6.0,-9.0,4.0,1217376 -3034922,1630143035,2,40,0,1,1630052556,1,1.0,40.0,6.0,-9.0,4.0,1217377 -3034923,1630143041,2,41,0,1,1630052557,1,1.0,40.0,1.0,-9.0,4.0,1217378 -3034924,1630143015,2,27,0,1,1630052558,2,1.0,35.0,1.0,-9.0,4.0,1217379 -3034925,1630142810,1,26,0,1,1630052559,2,1.0,65.0,2.0,-9.0,4.0,1217380 -3034926,1630142940,2,32,0,1,1630052560,2,1.0,20.0,5.0,16.0,4.0,1217381 -3034927,1630142941,2,32,0,1,1630052561,2,1.0,20.0,5.0,16.0,4.0,1217382 -3034928,1630143001,2,27,0,1,1630052562,2,1.0,50.0,1.0,-9.0,4.0,1217383 -3034929,1630143006,2,44,0,1,1630052563,2,1.0,40.0,1.0,-9.0,4.0,1217384 -3034930,1630143083,2,44,0,1,1630052564,1,1.0,40.0,1.0,-9.0,4.0,1217385 -3034931,1630142958,2,42,0,1,1630052565,2,1.0,38.0,1.0,15.0,4.0,1217386 -3034932,1630143002,2,27,0,1,1630052566,2,1.0,50.0,1.0,-9.0,4.0,1217387 -3034933,1630142959,2,29,0,1,1630052567,2,1.0,40.0,2.0,-9.0,4.0,1217388 -3034934,1630143021,2,25,0,1,1630052568,2,1.0,40.0,1.0,-9.0,4.0,1217389 -3034935,1630143084,2,44,0,1,1630052569,1,1.0,40.0,1.0,-9.0,4.0,1217390 -3034936,1630142820,1,26,0,1,1630052570,1,1.0,60.0,4.0,-9.0,4.0,1217391 -3034937,1630142818,1,30,0,1,1630052571,1,1.0,40.0,1.0,-9.0,4.0,1217392 -3034938,1630142815,1,27,0,1,1630052572,1,1.0,40.0,1.0,-9.0,4.0,1217393 -3034939,1630142816,1,30,0,1,1630052573,1,1.0,50.0,1.0,-9.0,4.0,1217394 -3034940,1630142811,1,31,0,1,1630052574,2,1.0,20.0,1.0,-9.0,4.0,1217395 -3034941,1630142761,2,44,0,1,1630052575,2,3.0,-9.0,-9.0,-9.0,4.0,1217396 -3034942,1630142764,2,21,2,2,1630052575,2,3.0,-9.0,-9.0,14.0,4.0,1217396 -3034943,1630142767,2,20,2,3,1630052575,2,1.0,40.0,4.0,-9.0,4.0,1217396 -3034944,1630142770,2,19,2,4,1630052575,2,3.0,-9.0,-9.0,-9.0,4.0,1217396 -3034945,1630142779,2,15,2,5,1630052575,2,-9.0,-9.0,-9.0,11.0,-9.0,1217396 -3034946,1630142782,2,14,2,6,1630052575,2,-9.0,-9.0,-9.0,9.0,-9.0,1217396 -3034947,1630142776,2,13,2,7,1630052575,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217396 -3034948,1630142785,2,8,2,8,1630052575,2,-9.0,-9.0,-9.0,6.0,-9.0,1217396 -3034949,1630142773,2,54,5,9,1630052575,2,3.0,-9.0,-9.0,-9.0,4.0,1217396 -3034950,1630142758,2,69,6,10,1630052575,2,6.0,-9.0,-9.0,-9.0,4.0,1217396 -3034951,1630142788,2,2,7,11,1630052575,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217396 -3034952,1630142762,2,44,0,1,1630052576,2,3.0,-9.0,-9.0,-9.0,4.0,1217397 -3034953,1630142765,2,21,2,2,1630052576,2,3.0,-9.0,-9.0,14.0,4.0,1217397 -3034954,1630142768,2,20,2,3,1630052576,2,1.0,40.0,4.0,-9.0,4.0,1217397 -3034955,1630142771,2,19,2,4,1630052576,2,3.0,-9.0,-9.0,-9.0,4.0,1217397 -3034956,1630142780,2,15,2,5,1630052576,2,-9.0,-9.0,-9.0,11.0,-9.0,1217397 -3034957,1630142783,2,14,2,6,1630052576,2,-9.0,-9.0,-9.0,9.0,-9.0,1217397 -3034958,1630142777,2,13,2,7,1630052576,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217397 -3034959,1630142786,2,8,2,8,1630052576,2,-9.0,-9.0,-9.0,6.0,-9.0,1217397 -3034960,1630142774,2,54,5,9,1630052576,2,3.0,-9.0,-9.0,-9.0,4.0,1217397 -3034961,1630142759,2,69,6,10,1630052576,2,6.0,-9.0,-9.0,-9.0,4.0,1217397 -3034962,1630142789,2,2,7,11,1630052576,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217397 -3034963,1630142869,2,33,0,1,1630052577,2,1.0,20.0,6.0,-9.0,4.0,1217398 -3034964,1630142875,2,14,2,2,1630052577,2,-9.0,-9.0,-9.0,11.0,-9.0,1217398 -3034965,1630142877,2,8,2,3,1630052577,2,-9.0,-9.0,-9.0,5.0,-9.0,1217398 -3034966,1630142871,2,6,2,4,1630052577,1,-9.0,-9.0,-9.0,2.0,-9.0,1217398 -3034967,1630142879,2,2,2,5,1630052577,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217398 -3034968,1630142873,2,0,2,6,1630052577,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217398 -3034969,1630142881,2,0,3,7,1630052577,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217398 -3034970,1630142883,2,0,4,8,1630052577,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217398 -3034971,1630142870,2,33,0,1,1630052578,2,1.0,20.0,6.0,-9.0,4.0,1217399 -3034972,1630142876,2,14,2,2,1630052578,2,-9.0,-9.0,-9.0,11.0,-9.0,1217399 -3034973,1630142878,2,8,2,3,1630052578,2,-9.0,-9.0,-9.0,5.0,-9.0,1217399 -3034974,1630142872,2,6,2,4,1630052578,1,-9.0,-9.0,-9.0,2.0,-9.0,1217399 -3034975,1630142880,2,2,2,5,1630052578,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217399 -3034976,1630142874,2,0,2,6,1630052578,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217399 -3034977,1630142882,2,0,3,7,1630052578,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217399 -3034978,1630142884,2,0,4,8,1630052578,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217399 -3034979,1630142961,2,26,0,1,1630052579,2,1.0,15.0,1.0,-9.0,4.0,1217400 -3034980,1630142971,2,6,2,2,1630052579,1,-9.0,-9.0,-9.0,3.0,-9.0,1217400 -3034981,1630142991,2,2,2,3,1630052579,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217400 -3034982,1630142981,2,34,13,4,1630052579,1,1.0,25.0,1.0,-9.0,4.0,1217400 -3034983,1630142846,2,25,0,1,1630052580,2,1.0,40.0,1.0,15.0,4.0,1217401 -3034984,1630142850,2,9,2,2,1630052580,1,-9.0,-9.0,-9.0,5.0,-9.0,1217401 -3034985,1630142858,2,4,2,3,1630052580,2,-9.0,-9.0,-9.0,1.0,-9.0,1217401 -3034986,1630142854,2,29,13,4,1630052580,1,1.0,40.0,1.0,-9.0,2.0,1217401 -3034987,1630142962,2,26,0,1,1630052581,2,1.0,15.0,1.0,-9.0,4.0,1217402 -3034988,1630142972,2,6,2,2,1630052581,1,-9.0,-9.0,-9.0,3.0,-9.0,1217402 -3034989,1630142992,2,2,2,3,1630052581,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217402 -3034990,1630142982,2,34,13,4,1630052581,1,1.0,25.0,1.0,-9.0,4.0,1217402 -3034991,1630142963,2,26,0,1,1630052582,2,1.0,15.0,1.0,-9.0,4.0,1217403 -3034992,1630142973,2,6,2,2,1630052582,1,-9.0,-9.0,-9.0,3.0,-9.0,1217403 -3034993,1630142993,2,2,2,3,1630052582,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217403 -3034994,1630142983,2,34,13,4,1630052582,1,1.0,25.0,1.0,-9.0,4.0,1217403 -3034995,1630142964,2,26,0,1,1630052583,2,1.0,15.0,1.0,-9.0,4.0,1217404 -3034996,1630142974,2,6,2,2,1630052583,1,-9.0,-9.0,-9.0,3.0,-9.0,1217404 -3034997,1630142994,2,2,2,3,1630052583,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217404 -3034998,1630142984,2,34,13,4,1630052583,1,1.0,25.0,1.0,-9.0,4.0,1217404 -3034999,1630142847,2,25,0,1,1630052584,2,1.0,40.0,1.0,15.0,4.0,1217405 -3035000,1630142851,2,9,2,2,1630052584,1,-9.0,-9.0,-9.0,5.0,-9.0,1217405 -3035001,1630142859,2,4,2,3,1630052584,2,-9.0,-9.0,-9.0,1.0,-9.0,1217405 -3035002,1630142855,2,29,13,4,1630052584,1,1.0,40.0,1.0,-9.0,2.0,1217405 -3035003,1630142965,2,26,0,1,1630052585,2,1.0,15.0,1.0,-9.0,4.0,1217406 -3035004,1630142975,2,6,2,2,1630052585,1,-9.0,-9.0,-9.0,3.0,-9.0,1217406 -3035005,1630142995,2,2,2,3,1630052585,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217406 -3035006,1630142985,2,34,13,4,1630052585,1,1.0,25.0,1.0,-9.0,4.0,1217406 -3035007,1630142848,2,25,0,1,1630052586,2,1.0,40.0,1.0,15.0,4.0,1217407 -3035008,1630142852,2,9,2,2,1630052586,1,-9.0,-9.0,-9.0,5.0,-9.0,1217407 -3035009,1630142860,2,4,2,3,1630052586,2,-9.0,-9.0,-9.0,1.0,-9.0,1217407 -3035010,1630142856,2,29,13,4,1630052586,1,1.0,40.0,1.0,-9.0,2.0,1217407 -3035011,1630142966,2,26,0,1,1630052587,2,1.0,15.0,1.0,-9.0,4.0,1217408 -3035012,1630142976,2,6,2,2,1630052587,1,-9.0,-9.0,-9.0,3.0,-9.0,1217408 -3035013,1630142996,2,2,2,3,1630052587,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217408 -3035014,1630142986,2,34,13,4,1630052587,1,1.0,25.0,1.0,-9.0,4.0,1217408 -3035015,1630142967,2,26,0,1,1630052588,2,1.0,15.0,1.0,-9.0,4.0,1217409 -3035016,1630142977,2,6,2,2,1630052588,1,-9.0,-9.0,-9.0,3.0,-9.0,1217409 -3035017,1630142997,2,2,2,3,1630052588,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217409 -3035018,1630142987,2,34,13,4,1630052588,1,1.0,25.0,1.0,-9.0,4.0,1217409 -3035019,1630142849,2,25,0,1,1630052589,2,1.0,40.0,1.0,15.0,4.0,1217410 -3035020,1630142853,2,9,2,2,1630052589,1,-9.0,-9.0,-9.0,5.0,-9.0,1217410 -3035021,1630142861,2,4,2,3,1630052589,2,-9.0,-9.0,-9.0,1.0,-9.0,1217410 -3035022,1630142857,2,29,13,4,1630052589,1,1.0,40.0,1.0,-9.0,2.0,1217410 -3035023,1630142968,2,26,0,1,1630052590,2,1.0,15.0,1.0,-9.0,4.0,1217411 -3035024,1630142978,2,6,2,2,1630052590,1,-9.0,-9.0,-9.0,3.0,-9.0,1217411 -3035025,1630142998,2,2,2,3,1630052590,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217411 -3035026,1630142988,2,34,13,4,1630052590,1,1.0,25.0,1.0,-9.0,4.0,1217411 -3035027,1630142969,2,26,0,1,1630052591,2,1.0,15.0,1.0,-9.0,4.0,1217412 -3035028,1630142979,2,6,2,2,1630052591,1,-9.0,-9.0,-9.0,3.0,-9.0,1217412 -3035029,1630142999,2,2,2,3,1630052591,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217412 -3035030,1630142989,2,34,13,4,1630052591,1,1.0,25.0,1.0,-9.0,4.0,1217412 -3035031,1630142938,2,59,0,1,1630052592,2,6.0,-9.0,-9.0,-9.0,4.0,1217413 -3035032,1630143094,2,50,0,1,1630052593,1,6.0,-9.0,-9.0,-9.0,4.0,1217414 -3035033,1630143051,2,52,0,1,1630052594,1,6.0,-9.0,-9.0,-9.0,2.0,1217415 -3035034,1630143068,2,51,0,1,1630052595,1,3.0,-9.0,-9.0,-9.0,4.0,1217416 -3035035,1630143091,2,61,0,1,1630052596,1,3.0,-9.0,-9.0,15.0,4.0,1217417 -3035036,1630143029,2,53,0,1,1630052597,1,6.0,-9.0,-9.0,-9.0,4.0,1217418 -3035037,1630142920,2,61,0,1,1630052598,2,6.0,-9.0,-9.0,-9.0,4.0,1217419 -3035038,1630143038,2,60,0,1,1630052599,1,6.0,-9.0,-9.0,-9.0,4.0,1217420 -3035039,1630143030,2,53,0,1,1630052600,1,6.0,-9.0,-9.0,-9.0,4.0,1217421 -3035040,1630142957,2,62,0,1,1630052601,2,6.0,-9.0,-9.0,-9.0,4.0,1217422 -3035041,1630142845,2,57,0,1,1630052602,2,6.0,-9.0,-9.0,-9.0,4.0,1217423 -3035042,1630143046,2,58,0,1,1630052603,1,6.0,-9.0,-9.0,-9.0,4.0,1217424 -3035043,1630142910,2,58,0,1,1630052604,2,3.0,-9.0,-9.0,12.0,4.0,1217425 -3035044,1630142911,2,58,0,1,1630052605,2,3.0,-9.0,-9.0,12.0,4.0,1217426 -3035045,1630142939,2,59,0,1,1630052606,2,6.0,-9.0,-9.0,-9.0,4.0,1217427 -3035046,1630143023,2,50,0,1,1630052607,2,3.0,-9.0,-9.0,-9.0,4.0,1217428 -3035047,1630143047,2,58,0,1,1630052608,1,6.0,-9.0,-9.0,-9.0,4.0,1217429 -3035048,1630142925,2,48,0,1,1630052609,2,6.0,-9.0,-9.0,-9.0,4.0,1217430 -3035049,1630143055,2,56,0,1,1630052610,1,3.0,-9.0,-9.0,-9.0,2.0,1217431 -3035050,1630143092,2,61,0,1,1630052611,1,3.0,-9.0,-9.0,15.0,4.0,1217432 -3035051,1630142933,2,60,0,1,1630052612,2,6.0,-9.0,-9.0,-9.0,4.0,1217433 -3035052,1630143056,2,56,0,1,1630052613,1,3.0,-9.0,-9.0,-9.0,2.0,1217434 -3035053,1630142918,2,56,0,1,1630052614,2,6.0,-9.0,-9.0,-9.0,4.0,1217435 -3035054,1630142919,2,57,0,1,1630052615,2,6.0,-9.0,-9.0,-9.0,4.0,1217436 -3035055,1630143057,2,62,0,1,1630052616,1,6.0,-9.0,-9.0,-9.0,2.0,1217437 -3035056,1630143033,2,60,0,1,1630052617,1,6.0,-9.0,-9.0,-9.0,4.0,1217438 -3035057,1630143071,2,47,0,1,1630052618,1,6.0,-9.0,-9.0,-9.0,4.0,1217439 -3035058,1630143075,2,57,0,1,1630052619,1,6.0,-9.0,-9.0,-9.0,4.0,1217440 -3035059,1630143063,2,51,0,1,1630052620,1,6.0,40.0,6.0,-9.0,4.0,1217441 -3035060,1630143067,2,62,0,1,1630052621,1,6.0,-9.0,-9.0,-9.0,2.0,1217442 -3035061,1630143024,2,58,0,1,1630052622,2,6.0,-9.0,-9.0,-9.0,4.0,1217443 -3035062,1630143050,2,64,0,1,1630052623,1,6.0,-9.0,-9.0,-9.0,2.0,1217444 -3035063,1630142897,2,56,0,1,1630052624,2,6.0,-9.0,-9.0,-9.0,4.0,1217445 -3035064,1630143085,2,46,0,1,1630052625,1,3.0,-9.0,-9.0,-9.0,4.0,1217446 -3035065,1630143086,2,46,0,1,1630052626,1,3.0,-9.0,-9.0,-9.0,4.0,1217447 -3035066,1630143087,2,46,0,1,1630052627,1,3.0,-9.0,-9.0,-9.0,4.0,1217448 -3035067,1630143088,2,46,0,1,1630052628,1,3.0,-9.0,-9.0,-9.0,4.0,1217449 -3035068,1630142908,2,56,0,1,1630052629,2,1.0,99.0,1.0,-9.0,4.0,1217450 -3035069,1630143076,2,48,0,1,1630052630,1,1.0,36.0,6.0,-9.0,4.0,1217451 -3035070,1630142912,2,62,0,1,1630052631,2,1.0,40.0,1.0,-9.0,4.0,1217452 -3035071,1630143077,2,48,0,1,1630052632,1,1.0,36.0,6.0,-9.0,4.0,1217453 -3035072,1630142956,2,55,0,1,1630052633,2,1.0,40.0,1.0,-9.0,4.0,1217454 -3035073,1630143054,2,59,0,1,1630052634,1,1.0,40.0,1.0,-9.0,2.0,1217455 -3035074,1630142894,2,60,0,1,1630052635,2,1.0,50.0,2.0,-9.0,4.0,1217456 -3035075,1630142909,2,56,0,1,1630052636,2,1.0,99.0,1.0,-9.0,4.0,1217457 -3035076,1630143059,2,47,0,1,1630052637,1,1.0,32.0,1.0,-9.0,4.0,1217458 -3035077,1630143026,2,47,0,1,1630052638,2,1.0,40.0,1.0,-9.0,4.0,1217459 -3035078,1630142891,2,59,0,1,1630052639,2,1.0,40.0,1.0,-9.0,4.0,1217460 -3035079,1630143053,2,54,0,1,1630052640,1,1.0,25.0,1.0,-9.0,4.0,1217461 -3035080,1630143064,2,61,0,1,1630052641,1,1.0,30.0,1.0,-9.0,4.0,1217462 -3035081,1630143037,2,64,0,1,1630052642,1,1.0,40.0,1.0,-9.0,4.0,1217463 -3035082,1630143025,2,47,0,1,1630052643,2,1.0,40.0,1.0,-9.0,4.0,1217464 -3035083,1630143065,2,53,0,1,1630052644,1,1.0,40.0,1.0,-9.0,4.0,1217465 -3035084,1630142930,2,46,0,1,1630052645,2,1.0,30.0,3.0,15.0,4.0,1217466 -3035085,1630143040,2,54,0,1,1630052646,1,1.0,35.0,4.0,-9.0,2.0,1217467 -3035086,1630142917,2,62,0,1,1630052647,2,1.0,20.0,6.0,-9.0,4.0,1217468 -3035087,1630143080,2,60,0,1,1630052648,1,1.0,35.0,1.0,-9.0,4.0,1217469 -3035088,1630143081,2,60,0,1,1630052649,1,1.0,35.0,1.0,-9.0,4.0,1217470 -3035089,1630142895,2,53,0,1,1630052650,2,1.0,32.0,1.0,-9.0,4.0,1217471 -3035090,1630143066,2,53,0,1,1630052651,1,1.0,40.0,1.0,-9.0,4.0,1217472 -3035091,1630142926,2,58,0,1,1630052652,2,1.0,40.0,1.0,-9.0,4.0,1217473 -3035092,1630143060,2,62,0,1,1630052653,1,1.0,45.0,1.0,-9.0,4.0,1217474 -3035093,1630143042,2,51,0,1,1630052654,1,1.0,40.0,1.0,-9.0,4.0,1217475 -3035094,1630143043,2,51,0,1,1630052655,1,1.0,40.0,1.0,-9.0,4.0,1217476 -3035095,1630143072,2,59,0,1,1630052656,1,1.0,40.0,1.0,-9.0,2.0,1217477 -3035096,1630143044,2,51,0,1,1630052657,1,1.0,40.0,1.0,-9.0,4.0,1217478 -3035097,1630143073,2,59,0,1,1630052658,1,1.0,40.0,1.0,-9.0,2.0,1217479 -3035098,1630143074,2,59,0,1,1630052659,1,1.0,40.0,1.0,-9.0,2.0,1217480 -3035099,1630143061,2,62,0,1,1630052660,1,1.0,45.0,1.0,-9.0,4.0,1217481 -3035100,1630143062,2,62,0,1,1630052661,1,1.0,45.0,1.0,-9.0,4.0,1217482 -3035101,1630142817,1,57,0,1,1630052662,1,1.0,60.0,1.0,-9.0,4.0,1217483 -3035102,1630142755,2,87,0,1,1630052663,2,6.0,-9.0,-9.0,-9.0,4.0,1217484 -3035103,1630142791,2,68,0,1,1630052664,2,6.0,16.0,6.0,-9.0,3.0,1217485 -3035104,1630142793,2,69,0,1,1630052665,2,6.0,-9.0,-9.0,-9.0,4.0,1217486 -3035105,1630143106,2,76,0,1,1630052666,1,6.0,-9.0,-9.0,-9.0,4.0,1217487 -3035106,1630142757,2,69,0,1,1630052667,2,6.0,-9.0,-9.0,-9.0,4.0,1217488 -3035107,1630142750,2,82,0,1,1630052668,2,6.0,-9.0,-9.0,-9.0,4.0,1217489 -3035108,1630143105,2,82,0,1,1630052669,1,6.0,-9.0,-9.0,-9.0,2.0,1217490 -3035109,1630142795,2,78,0,1,1630052670,2,6.0,-9.0,-9.0,-9.0,4.0,1217491 -3035110,1630142796,2,80,0,1,1630052671,2,6.0,-9.0,-9.0,-9.0,4.0,1217492 -3035111,1630142752,2,85,0,1,1630052672,2,6.0,-9.0,-9.0,-9.0,4.0,1217493 -3035112,1630143104,2,65,0,1,1630052673,1,6.0,-9.0,-9.0,-9.0,2.0,1217494 -3035113,1630143101,2,83,0,1,1630052674,1,6.0,-9.0,-9.0,-9.0,2.0,1217495 -3035114,1630142797,2,78,0,1,1630052675,2,6.0,-9.0,-9.0,-9.0,4.0,1217496 -3035115,1630142794,2,65,0,1,1630052676,2,6.0,-9.0,-9.0,-9.0,4.0,1217497 -3035116,1630142803,1,53,0,1,1630052677,2,1.0,50.0,1.0,-9.0,4.0,1217498 -3035117,1630143095,4,73,0,1,1630052678,2,6.0,-9.0,-9.0,-9.0,4.0,1217499 -3035118,1630143031,2,59,0,1,1630052679,1,6.0,11.0,6.0,-9.0,4.0,1217500 -3035119,1630143020,2,41,0,1,1630052680,2,1.0,40.0,1.0,-9.0,4.0,1217501 -3035120,1630142753,2,84,0,1,1630052681,2,6.0,-9.0,-9.0,-9.0,4.0,1217502 -3035121,1630143108,4,25,0,1,1630052682,1,1.0,30.0,1.0,-9.0,4.0,1217503 -3035122,1630143107,4,61,0,1,1630052683,1,1.0,24.0,1.0,-9.0,4.0,1217504 -3035123,1630142970,2,26,0,1,1630052684,2,1.0,15.0,1.0,-9.0,4.0,1217505 -3035124,1630142980,2,6,2,2,1630052684,1,-9.0,-9.0,-9.0,3.0,-9.0,1217505 -3035125,1630143000,2,2,2,3,1630052684,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217505 -3035126,1630142990,2,34,13,4,1630052684,1,1.0,25.0,1.0,-9.0,4.0,1217505 -3035127,1630142935,2,32,0,1,1630052685,1,1.0,40.0,1.0,-9.0,4.0,1217506 -3035128,1630142936,2,7,2,2,1630052685,2,-9.0,-9.0,-9.0,4.0,-9.0,1217506 -3035129,1630142937,2,6,2,3,1630052685,2,-9.0,-9.0,-9.0,3.0,-9.0,1217506 -3035130,1630142934,2,29,13,4,1630052685,2,1.0,25.0,1.0,-9.0,4.0,1217506 -3035131,1630143111,4,46,0,1,1630052686,2,6.0,10.0,6.0,15.0,4.0,1217507 -3035132,1630142819,1,50,0,1,1630052687,1,3.0,-9.0,-9.0,-9.0,2.0,1217508 -3035133,1630142802,1,79,0,1,1630052688,2,1.0,15.0,1.0,-9.0,4.0,1217509 -3035134,1630142813,1,29,0,1,1630052689,1,6.0,-9.0,-9.0,15.0,4.0,1217510 -3035135,1630143036,2,36,0,1,1630052690,1,1.0,40.0,1.0,-9.0,4.0,1217511 -3035136,1630143109,4,38,0,1,1630052691,1,3.0,30.0,6.0,15.0,3.0,1217512 -3035137,1630143090,2,33,0,1,1630052692,1,1.0,40.0,1.0,-9.0,4.0,1217513 -3035138,1630143052,2,49,0,1,1630052693,1,1.0,36.0,1.0,-9.0,4.0,1217514 -3035139,1630142868,2,32,0,1,1630052694,2,6.0,-9.0,-9.0,16.0,4.0,1217515 -3035140,1630142927,2,47,0,1,1630052695,2,6.0,-9.0,-9.0,-9.0,4.0,1217516 -3035141,1630142901,2,47,0,1,1630052696,1,2.0,18.0,1.0,15.0,2.0,1217517 -3035142,1630142907,4,48,1,2,1630052696,2,6.0,-9.0,-9.0,-9.0,4.0,1217517 -3035143,1630142902,2,24,2,3,1630052696,1,6.0,5.0,6.0,-9.0,4.0,1217517 -3035144,1630142898,2,19,2,4,1630052696,2,6.0,-9.0,-9.0,14.0,4.0,1217517 -3035145,1630142899,2,19,2,5,1630052696,2,6.0,-9.0,-9.0,14.0,4.0,1217517 -3035146,1630142903,2,17,2,6,1630052696,2,6.0,-9.0,-9.0,12.0,4.0,1217517 -3035147,1630142904,2,14,2,7,1630052696,2,-9.0,-9.0,-9.0,11.0,-9.0,1217517 -3035148,1630142905,2,13,2,8,1630052696,2,-9.0,-9.0,-9.0,9.0,-9.0,1217517 -3035149,1630142906,2,12,2,9,1630052696,2,-9.0,-9.0,-9.0,10.0,-9.0,1217517 -3035150,1630142900,2,4,2,10,1630052696,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217517 -3035151,1630143003,2,61,0,1,1630052697,2,1.0,25.0,1.0,-9.0,4.0,1217518 -3035152,1630142809,1,44,0,1,1630052698,2,1.0,40.0,1.0,-9.0,4.0,1217519 -3035153,1630142814,1,40,0,1,1630052699,1,1.0,43.0,1.0,-9.0,4.0,1217520 -3035154,1630142806,2,59,0,1,1630052700,1,6.0,-9.0,-9.0,-9.0,4.0,1217521 -3035155,1630142805,1,55,1,2,1630052700,2,1.0,20.0,3.0,-9.0,4.0,1217521 -3035156,1630142807,4,22,2,3,1630052700,2,1.0,40.0,6.0,15.0,4.0,1217521 -3035157,1630142808,4,17,2,4,1630052700,1,6.0,-9.0,-9.0,12.0,4.0,1217521 -3035158,1630143016,2,38,0,1,1630052701,2,1.0,35.0,3.0,-9.0,4.0,1217522 -3035159,1630143017,2,14,2,2,1630052701,1,-9.0,-9.0,-9.0,10.0,-9.0,1217522 -3035160,1630143018,2,12,2,3,1630052701,1,-9.0,-9.0,-9.0,8.0,-9.0,1217522 -3035161,1630143019,2,10,2,4,1630052701,2,-9.0,-9.0,-9.0,6.0,-9.0,1217522 -3035162,1630142931,2,60,0,1,1630052702,2,1.0,40.0,1.0,-9.0,4.0,1217523 -3035163,1630142863,2,53,0,1,1630052703,2,6.0,-9.0,-9.0,-9.0,4.0,1217524 -3035164,1630142864,2,22,2,2,1630052703,2,1.0,6.0,1.0,15.0,4.0,1217524 -3035165,1630142865,2,13,2,3,1630052703,1,-9.0,-9.0,-9.0,11.0,-9.0,1217524 -3035166,1630142866,2,1,7,4,1630052703,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217524 -3035167,1630143089,2,53,0,1,1630052704,1,6.0,-9.0,-9.0,-9.0,4.0,1217525 -3035168,1630143097,2,66,0,1,1630052705,1,1.0,35.0,1.0,-9.0,4.0,1217526 -3035169,1630143032,2,42,0,1,1630052706,1,1.0,40.0,1.0,-9.0,4.0,1217527 -3035170,1630143100,2,72,0,1,1630052707,1,1.0,30.0,1.0,-9.0,4.0,1217528 -3035171,1630142867,2,46,0,1,1630052708,2,1.0,60.0,1.0,-9.0,4.0,1217529 -3035172,1630142751,2,77,0,1,1630052709,2,6.0,-9.0,-9.0,-9.0,4.0,1217530 -3035173,1630143110,4,58,0,1,1630052710,2,1.0,40.0,1.0,-9.0,4.0,1217531 -3035174,1630143048,2,52,0,1,1630052711,1,3.0,-9.0,-9.0,-9.0,2.0,1217532 -3035175,1630143007,2,42,0,1,1630052712,2,3.0,-9.0,-9.0,-9.0,4.0,1217533 -3035176,1630143008,2,23,2,2,1630052712,2,6.0,-9.0,-9.0,-9.0,4.0,1217533 -3035177,1630143009,2,21,2,3,1630052712,2,6.0,-9.0,-9.0,11.0,4.0,1217533 -3035178,1630143010,2,18,2,4,1630052712,2,6.0,-9.0,-9.0,15.0,4.0,1217533 -3035179,1630143012,2,15,2,5,1630052712,2,-9.0,-9.0,-9.0,11.0,-9.0,1217533 -3035180,1630143013,2,11,2,6,1630052712,2,-9.0,-9.0,-9.0,7.0,-9.0,1217533 -3035181,1630143014,2,10,2,7,1630052712,2,-9.0,-9.0,-9.0,6.0,-9.0,1217533 -3035182,1630143011,2,9,2,8,1630052712,1,-9.0,-9.0,-9.0,5.0,-9.0,1217533 -3035183,1630142885,2,36,0,1,1630052713,2,3.0,-9.0,-9.0,-9.0,4.0,1217534 -3035184,1630142886,2,14,2,2,1630052713,1,-9.0,-9.0,-9.0,10.0,-9.0,1217534 -3035185,1630142888,2,9,2,3,1630052713,2,-9.0,-9.0,-9.0,8.0,-9.0,1217534 -3035186,1630142887,2,44,5,4,1630052713,1,3.0,-9.0,-9.0,-9.0,4.0,1217534 -3035187,1630142792,2,66,0,1,1630052714,2,1.0,16.0,6.0,-9.0,4.0,1217535 -3035188,1630143070,2,36,0,1,1630052715,1,1.0,40.0,1.0,-9.0,4.0,1217536 -3035189,1630142929,2,50,0,1,1630052716,2,1.0,40.0,1.0,-9.0,4.0,1217537 -3035190,1630142804,1,26,0,1,1630052717,2,1.0,40.0,5.0,-9.0,4.0,1217538 -3035191,1630142812,1,37,0,1,1630052718,2,6.0,-9.0,-9.0,-9.0,4.0,1217539 -3035192,1630142801,1,89,0,1,1630052719,2,6.0,-9.0,-9.0,-9.0,4.0,1217540 -3035193,1630142763,2,44,0,1,1630052720,2,3.0,-9.0,-9.0,-9.0,4.0,1217541 -3035194,1630142766,2,21,2,2,1630052720,2,3.0,-9.0,-9.0,14.0,4.0,1217541 -3035195,1630142769,2,20,2,3,1630052720,2,1.0,40.0,4.0,-9.0,4.0,1217541 -3035196,1630142772,2,19,2,4,1630052720,2,3.0,-9.0,-9.0,-9.0,4.0,1217541 -3035197,1630142781,2,15,2,5,1630052720,2,-9.0,-9.0,-9.0,11.0,-9.0,1217541 -3035198,1630142784,2,14,2,6,1630052720,2,-9.0,-9.0,-9.0,9.0,-9.0,1217541 -3035199,1630142778,2,13,2,7,1630052720,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217541 -3035200,1630142787,2,8,2,8,1630052720,2,-9.0,-9.0,-9.0,6.0,-9.0,1217541 -3035201,1630142775,2,54,5,9,1630052720,2,3.0,-9.0,-9.0,-9.0,4.0,1217541 -3035202,1630142760,2,69,6,10,1630052720,2,6.0,-9.0,-9.0,-9.0,4.0,1217541 -3035203,1630142790,2,2,7,11,1630052720,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217541 -3035204,1630143027,2,48,0,1,1630052721,1,1.0,50.0,1.0,-9.0,4.0,1217542 -3035205,1630143099,2,77,0,1,1630052722,1,6.0,-9.0,-9.0,-9.0,4.0,1217543 -3035206,1630143079,2,56,0,1,1630052723,1,1.0,40.0,1.0,-9.0,4.0,1217544 -3035207,1630143391,2,61,0,1,1630052724,1,6.0,-9.0,-9.0,-9.0,4.0,1217545 -3035208,1630143301,2,48,0,1,1630052725,2,3.0,40.0,2.0,-9.0,4.0,1217546 -3035209,1630143302,2,60,13,2,1630052725,1,6.0,-9.0,-9.0,-9.0,4.0,1217546 -3035210,1630143230,2,55,0,1,1630052726,2,6.0,-9.0,-9.0,-9.0,4.0,1217547 -3035211,1630143248,2,49,1,2,1630052726,1,1.0,40.0,1.0,-9.0,4.0,1217547 -3035212,1630143236,2,18,2,3,1630052726,2,6.0,-9.0,-9.0,15.0,4.0,1217547 -3035213,1630143254,2,16,2,4,1630052726,2,6.0,-9.0,-9.0,13.0,-9.0,1217547 -3035214,1630143260,2,14,2,5,1630052726,2,-9.0,-9.0,-9.0,11.0,-9.0,1217547 -3035215,1630143242,2,10,2,6,1630052726,1,-9.0,-9.0,-9.0,8.0,-9.0,1217547 -3035216,1630143231,2,55,0,1,1630052727,2,6.0,-9.0,-9.0,-9.0,4.0,1217548 -3035217,1630143249,2,49,1,2,1630052727,1,1.0,40.0,1.0,-9.0,4.0,1217548 -3035218,1630143237,2,18,2,3,1630052727,2,6.0,-9.0,-9.0,15.0,4.0,1217548 -3035219,1630143255,2,16,2,4,1630052727,2,6.0,-9.0,-9.0,13.0,-9.0,1217548 -3035220,1630143261,2,14,2,5,1630052727,2,-9.0,-9.0,-9.0,11.0,-9.0,1217548 -3035221,1630143243,2,10,2,6,1630052727,1,-9.0,-9.0,-9.0,8.0,-9.0,1217548 -3035222,1630143232,2,55,0,1,1630052728,2,6.0,-9.0,-9.0,-9.0,4.0,1217549 -3035223,1630143250,2,49,1,2,1630052728,1,1.0,40.0,1.0,-9.0,4.0,1217549 -3035224,1630143238,2,18,2,3,1630052728,2,6.0,-9.0,-9.0,15.0,4.0,1217549 -3035225,1630143256,2,16,2,4,1630052728,2,6.0,-9.0,-9.0,13.0,-9.0,1217549 -3035226,1630143262,2,14,2,5,1630052728,2,-9.0,-9.0,-9.0,11.0,-9.0,1217549 -3035227,1630143244,2,10,2,6,1630052728,1,-9.0,-9.0,-9.0,8.0,-9.0,1217549 -3035228,1630143233,2,55,0,1,1630052729,2,6.0,-9.0,-9.0,-9.0,4.0,1217550 -3035229,1630143251,2,49,1,2,1630052729,1,1.0,40.0,1.0,-9.0,4.0,1217550 -3035230,1630143239,2,18,2,3,1630052729,2,6.0,-9.0,-9.0,15.0,4.0,1217550 -3035231,1630143257,2,16,2,4,1630052729,2,6.0,-9.0,-9.0,13.0,-9.0,1217550 -3035232,1630143263,2,14,2,5,1630052729,2,-9.0,-9.0,-9.0,11.0,-9.0,1217550 -3035233,1630143245,2,10,2,6,1630052729,1,-9.0,-9.0,-9.0,8.0,-9.0,1217550 -3035234,1630143234,2,55,0,1,1630052730,2,6.0,-9.0,-9.0,-9.0,4.0,1217551 -3035235,1630143252,2,49,1,2,1630052730,1,1.0,40.0,1.0,-9.0,4.0,1217551 -3035236,1630143240,2,18,2,3,1630052730,2,6.0,-9.0,-9.0,15.0,4.0,1217551 -3035237,1630143258,2,16,2,4,1630052730,2,6.0,-9.0,-9.0,13.0,-9.0,1217551 -3035238,1630143264,2,14,2,5,1630052730,2,-9.0,-9.0,-9.0,11.0,-9.0,1217551 -3035239,1630143246,2,10,2,6,1630052730,1,-9.0,-9.0,-9.0,8.0,-9.0,1217551 -3035240,1630143235,2,55,0,1,1630052731,2,6.0,-9.0,-9.0,-9.0,4.0,1217552 -3035241,1630143253,2,49,1,2,1630052731,1,1.0,40.0,1.0,-9.0,4.0,1217552 -3035242,1630143241,2,18,2,3,1630052731,2,6.0,-9.0,-9.0,15.0,4.0,1217552 -3035243,1630143259,2,16,2,4,1630052731,2,6.0,-9.0,-9.0,13.0,-9.0,1217552 -3035244,1630143265,2,14,2,5,1630052731,2,-9.0,-9.0,-9.0,11.0,-9.0,1217552 -3035245,1630143247,2,10,2,6,1630052731,1,-9.0,-9.0,-9.0,8.0,-9.0,1217552 -3035246,1630143284,2,57,0,1,1630052732,1,1.0,40.0,1.0,-9.0,4.0,1217553 -3035247,1630143283,2,54,1,2,1630052732,2,6.0,-9.0,-9.0,-9.0,4.0,1217553 -3035248,1630143206,2,53,0,1,1630052733,1,3.0,25.0,6.0,-9.0,4.0,1217554 -3035249,1630143200,2,49,1,2,1630052733,2,6.0,-9.0,-9.0,-9.0,4.0,1217554 -3035250,1630143209,2,18,2,3,1630052733,1,6.0,-9.0,-9.0,15.0,4.0,1217554 -3035251,1630143203,2,27,4,4,1630052733,2,3.0,-9.0,-9.0,15.0,4.0,1217554 -3035252,1630143212,2,7,7,5,1630052733,2,-9.0,-9.0,-9.0,5.0,-9.0,1217554 -3035253,1630143215,2,4,7,6,1630052733,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217554 -3035254,1630143207,2,53,0,1,1630052734,1,3.0,25.0,6.0,-9.0,4.0,1217555 -3035255,1630143201,2,49,1,2,1630052734,2,6.0,-9.0,-9.0,-9.0,4.0,1217555 -3035256,1630143210,2,18,2,3,1630052734,1,6.0,-9.0,-9.0,15.0,4.0,1217555 -3035257,1630143204,2,27,4,4,1630052734,2,3.0,-9.0,-9.0,15.0,4.0,1217555 -3035258,1630143213,2,7,7,5,1630052734,2,-9.0,-9.0,-9.0,5.0,-9.0,1217555 -3035259,1630143216,2,4,7,6,1630052734,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217555 -3035260,1630143280,2,60,0,1,1630052735,1,6.0,-9.0,-9.0,-9.0,4.0,1217556 -3035261,1630143279,2,56,1,2,1630052735,2,6.0,-9.0,-9.0,-9.0,4.0,1217556 -3035262,1630143518,2,47,0,1,1630052736,1,3.0,40.0,6.0,-9.0,4.0,1217557 -3035263,1630143520,2,28,10,2,1630052736,1,3.0,30.0,6.0,-9.0,4.0,1217557 -3035264,1630143278,4,80,0,1,1630052737,2,6.0,-9.0,-9.0,-9.0,4.0,1217558 -3035265,1630143274,2,61,2,2,1630052737,1,6.0,-9.0,-9.0,-9.0,4.0,1217558 -3035266,1630143272,2,57,2,3,1630052737,2,1.0,40.0,1.0,-9.0,4.0,1217558 -3035267,1630143275,2,54,2,4,1630052737,1,1.0,40.0,1.0,-9.0,4.0,1217558 -3035268,1630143276,2,52,2,5,1630052737,1,1.0,40.0,1.0,-9.0,4.0,1217558 -3035269,1630143273,2,48,2,6,1630052737,2,1.0,8.0,1.0,-9.0,4.0,1217558 -3035270,1630143277,2,28,7,7,1630052737,1,3.0,40.0,6.0,-9.0,4.0,1217558 -3035271,1630143527,2,67,0,1,1630052738,1,6.0,-9.0,-9.0,-9.0,4.0,1217559 -3035272,1630143525,2,40,10,2,1630052738,1,3.0,-9.0,-9.0,-9.0,4.0,1217559 -3035273,1630143491,2,66,0,1,1630052739,1,6.0,-9.0,-9.0,-9.0,4.0,1217560 -3035274,1630143490,2,58,5,2,1630052739,1,6.0,-9.0,-9.0,-9.0,4.0,1217560 -3035275,1630143528,2,67,0,1,1630052740,1,6.0,-9.0,-9.0,-9.0,4.0,1217561 -3035276,1630143526,2,40,10,2,1630052740,1,3.0,-9.0,-9.0,-9.0,4.0,1217561 -3035277,1630143116,2,74,0,1,1630052741,2,6.0,-9.0,-9.0,-9.0,4.0,1217562 -3035278,1630143117,2,49,2,2,1630052741,1,3.0,-9.0,-9.0,-9.0,4.0,1217562 -3035279,1630143173,2,73,0,1,1630052742,1,6.0,-9.0,-9.0,-9.0,4.0,1217563 -3035280,1630143172,2,68,1,2,1630052742,2,6.0,-9.0,-9.0,-9.0,4.0,1217563 -3035281,1630143121,2,68,0,1,1630052743,1,6.0,-9.0,-9.0,-9.0,4.0,1217564 -3035282,1630143120,2,66,1,2,1630052743,2,6.0,-9.0,-9.0,-9.0,4.0,1217564 -3035283,1630143182,3,77,0,1,1630052744,1,6.0,-9.0,-9.0,-9.0,2.0,1217565 -3035284,1630143162,2,88,0,1,1630052745,2,6.0,-9.0,-9.0,-9.0,4.0,1217566 -3035285,1630143163,2,24,10,2,1630052745,1,1.0,40.0,1.0,-9.0,3.0,1217566 -3035286,1630143144,2,85,0,1,1630052746,2,6.0,-9.0,-9.0,-9.0,4.0,1217567 -3035287,1630143146,2,53,2,2,1630052746,2,1.0,40.0,1.0,-9.0,4.0,1217567 -3035288,1630143148,2,31,7,3,1630052746,2,1.0,40.0,1.0,-9.0,4.0,1217567 -3035289,1630143150,2,19,7,4,1630052746,2,1.0,30.0,1.0,-9.0,4.0,1217567 -3035290,1630143154,2,15,7,5,1630052746,2,-9.0,-9.0,-9.0,12.0,-9.0,1217567 -3035291,1630143156,2,14,7,6,1630052746,2,-9.0,-9.0,-9.0,11.0,-9.0,1217567 -3035292,1630143158,2,14,7,7,1630052746,2,-9.0,-9.0,-9.0,11.0,-9.0,1217567 -3035293,1630143152,2,10,7,8,1630052746,1,-9.0,-9.0,-9.0,6.0,-9.0,1217567 -3035294,1630143176,2,90,0,1,1630052747,2,6.0,-9.0,-9.0,-9.0,4.0,1217568 -3035295,1630143177,2,41,10,2,1630052747,1,6.0,-9.0,-9.0,-9.0,4.0,1217568 -3035296,1630143285,2,37,0,1,1630052748,2,1.0,50.0,1.0,-9.0,4.0,1217569 -3035297,1630143287,2,17,2,2,1630052748,1,6.0,-9.0,-9.0,14.0,4.0,1217569 -3035298,1630143289,2,15,2,3,1630052748,1,-9.0,-9.0,-9.0,11.0,-9.0,1217569 -3035299,1630143291,2,12,2,4,1630052748,1,-9.0,-9.0,-9.0,9.0,-9.0,1217569 -3035300,1630143293,2,12,2,5,1630052748,1,-9.0,-9.0,-9.0,9.0,-9.0,1217569 -3035301,1630143297,2,10,2,6,1630052748,2,-9.0,-9.0,-9.0,7.0,-9.0,1217569 -3035302,1630143295,2,7,2,7,1630052748,1,-9.0,-9.0,-9.0,4.0,-9.0,1217569 -3035303,1630143428,2,44,0,1,1630052749,2,1.0,15.0,1.0,-9.0,4.0,1217570 -3035304,1630143434,2,31,2,2,1630052749,1,3.0,-9.0,-9.0,-9.0,4.0,1217570 -3035305,1630143431,2,18,2,3,1630052749,2,6.0,-9.0,-9.0,14.0,4.0,1217570 -3035306,1630143440,2,13,2,4,1630052749,2,-9.0,-9.0,-9.0,10.0,-9.0,1217570 -3035307,1630143443,2,9,2,5,1630052749,2,-9.0,-9.0,-9.0,6.0,-9.0,1217570 -3035308,1630143429,2,44,0,1,1630052750,2,1.0,15.0,1.0,-9.0,4.0,1217571 -3035309,1630143435,2,31,2,2,1630052750,1,3.0,-9.0,-9.0,-9.0,4.0,1217571 -3035310,1630143438,2,24,2,3,1630052750,1,6.0,-9.0,-9.0,12.0,4.0,1217571 -3035311,1630143432,2,18,2,4,1630052750,2,6.0,-9.0,-9.0,14.0,4.0,1217571 -3035312,1630143441,2,13,2,5,1630052750,2,-9.0,-9.0,-9.0,10.0,-9.0,1217571 -3035313,1630143444,2,9,2,6,1630052750,2,-9.0,-9.0,-9.0,6.0,-9.0,1217571 -3035314,1630143430,2,44,0,1,1630052751,2,1.0,15.0,1.0,-9.0,4.0,1217572 -3035315,1630143436,2,31,2,2,1630052751,1,3.0,-9.0,-9.0,-9.0,4.0,1217572 -3035316,1630143439,2,24,2,3,1630052751,1,6.0,-9.0,-9.0,12.0,4.0,1217572 -3035317,1630143433,2,18,2,4,1630052751,2,6.0,-9.0,-9.0,14.0,4.0,1217572 -3035318,1630143442,2,13,2,5,1630052751,2,-9.0,-9.0,-9.0,10.0,-9.0,1217572 -3035319,1630143445,2,9,2,6,1630052751,2,-9.0,-9.0,-9.0,6.0,-9.0,1217572 -3035320,1630143350,2,26,0,1,1630052752,2,1.0,40.0,1.0,-9.0,4.0,1217573 -3035321,1630143352,2,8,2,2,1630052752,1,-9.0,-9.0,-9.0,3.0,-9.0,1217573 -3035322,1630143360,2,6,3,3,1630052752,2,-9.0,-9.0,-9.0,3.0,-9.0,1217573 -3035323,1630143354,2,2,3,4,1630052752,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217573 -3035324,1630143356,2,19,5,5,1630052752,1,6.0,-9.0,-9.0,-9.0,4.0,1217573 -3035325,1630143358,2,26,13,6,1630052752,1,1.0,40.0,1.0,-9.0,4.0,1217573 -3035326,1630143305,2,39,0,1,1630052753,2,3.0,-9.0,-9.0,-9.0,4.0,1217574 -3035327,1630143309,2,13,2,2,1630052753,1,-9.0,-9.0,-9.0,9.0,-9.0,1217574 -3035328,1630143315,2,11,2,3,1630052753,2,-9.0,-9.0,-9.0,6.0,-9.0,1217574 -3035329,1630143311,2,15,10,4,1630052753,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217574 -3035330,1630143317,2,7,10,5,1630052753,2,-9.0,-9.0,-9.0,3.0,-9.0,1217574 -3035331,1630143313,2,35,13,6,1630052753,1,6.0,-9.0,-9.0,-9.0,4.0,1217574 -3035332,1630143307,2,30,15,7,1630052753,2,6.0,-9.0,-9.0,-9.0,4.0,1217574 -3035333,1630143454,2,25,0,1,1630052754,2,3.0,-9.0,-9.0,-9.0,4.0,1217575 -3035334,1630143456,2,6,2,2,1630052754,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217575 -3035335,1630143462,2,5,2,3,1630052754,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217575 -3035336,1630143464,2,4,2,4,1630052754,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217575 -3035337,1630143458,2,3,2,5,1630052754,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217575 -3035338,1630143460,2,2,2,6,1630052754,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217575 -3035339,1630143486,2,40,0,1,1630052755,1,6.0,-9.0,-9.0,-9.0,4.0,1217576 -3035340,1630143487,2,7,2,2,1630052755,2,-9.0,-9.0,-9.0,3.0,-9.0,1217576 -3035341,1630143327,2,34,0,1,1630052756,2,1.0,15.0,1.0,-9.0,4.0,1217577 -3035342,1630143329,2,16,2,2,1630052756,2,6.0,-9.0,-9.0,14.0,-9.0,1217577 -3035343,1630143330,2,15,2,3,1630052756,2,-9.0,-9.0,-9.0,12.0,-9.0,1217577 -3035344,1630143331,2,14,2,4,1630052756,2,-9.0,-9.0,-9.0,11.0,-9.0,1217577 -3035345,1630143332,2,14,2,5,1630052756,2,-9.0,-9.0,-9.0,11.0,-9.0,1217577 -3035346,1630143333,2,11,2,6,1630052756,2,-9.0,-9.0,-9.0,9.0,-9.0,1217577 -3035347,1630143328,2,11,2,7,1630052756,1,-9.0,-9.0,-9.0,9.0,-9.0,1217577 -3035348,1630143130,2,53,0,1,1630052757,2,6.0,-9.0,-9.0,-9.0,4.0,1217578 -3035349,1630143138,2,39,1,2,1630052757,1,6.0,-9.0,-9.0,-9.0,4.0,1217578 -3035350,1630143132,2,35,2,3,1630052757,2,1.0,16.0,6.0,-9.0,4.0,1217578 -3035351,1630143134,2,19,7,4,1630052757,2,6.0,40.0,4.0,-9.0,4.0,1217578 -3035352,1630143136,2,11,7,5,1630052757,1,-9.0,-9.0,-9.0,7.0,-9.0,1217578 -3035353,1630143140,2,10,7,6,1630052757,2,-9.0,-9.0,-9.0,6.0,-9.0,1217578 -3035354,1630143142,2,10,7,7,1630052757,2,-9.0,-9.0,-9.0,7.0,-9.0,1217578 -3035355,1630143218,2,55,0,1,1630052758,2,6.0,-9.0,-9.0,-9.0,4.0,1217579 -3035356,1630143219,2,37,2,2,1630052758,2,3.0,-9.0,-9.0,-9.0,4.0,1217579 -3035357,1630143220,2,35,2,3,1630052758,1,6.0,-9.0,-9.0,-9.0,4.0,1217579 -3035358,1630143221,2,25,2,4,1630052758,1,6.0,-9.0,-9.0,-9.0,4.0,1217579 -3035359,1630143222,2,21,7,5,1630052758,1,6.0,-9.0,-9.0,-9.0,4.0,1217579 -3035360,1630143223,2,46,12,6,1630052758,1,1.0,40.0,3.0,14.0,4.0,1217579 -3035361,1630143513,2,56,0,1,1630052759,1,3.0,-9.0,-9.0,-9.0,4.0,1217580 -3035362,1630143509,2,60,0,1,1630052760,1,6.0,-9.0,-9.0,-9.0,4.0,1217581 -3035363,1630143488,2,60,0,1,1630052761,1,6.0,-9.0,-9.0,-9.0,4.0,1217582 -3035364,1630143498,2,61,0,1,1630052762,1,6.0,-9.0,-9.0,-9.0,2.0,1217583 -3035365,1630143499,2,26,10,2,1630052762,1,3.0,-9.0,-9.0,-9.0,4.0,1217583 -3035366,1630143505,2,21,0,1,1630052763,1,1.0,48.0,1.0,-9.0,4.0,1217584 -3035367,1630143506,2,24,15,2,1630052763,1,6.0,-9.0,-9.0,-9.0,4.0,1217584 -3035368,1630143536,4,24,0,1,1630052764,2,1.0,45.0,1.0,-9.0,4.0,1217585 -3035369,1630143537,4,2,2,2,1630052764,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217585 -3035370,1630143196,2,24,0,1,1630052765,2,3.0,32.0,5.0,-9.0,4.0,1217586 -3035371,1630143198,2,8,2,2,1630052765,1,-9.0,-9.0,-9.0,4.0,-9.0,1217586 -3035372,1630143197,2,24,0,1,1630052766,2,3.0,32.0,5.0,-9.0,4.0,1217587 -3035373,1630143199,2,8,2,2,1630052766,1,-9.0,-9.0,-9.0,4.0,-9.0,1217587 -3035374,1630143299,2,23,0,1,1630052767,2,3.0,20.0,6.0,15.0,4.0,1217588 -3035375,1630143300,2,2,2,2,1630052767,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217588 -3035376,1630143448,2,32,0,1,1630052768,2,3.0,-9.0,-9.0,-9.0,4.0,1217589 -3035377,1630143452,2,50,1,2,1630052768,1,1.0,30.0,1.0,-9.0,4.0,1217589 -3035378,1630143450,2,9,2,3,1630052768,1,-9.0,-9.0,-9.0,6.0,-9.0,1217589 -3035379,1630143451,2,5,2,4,1630052768,1,-9.0,-9.0,-9.0,2.0,-9.0,1217589 -3035380,1630143453,2,1,2,5,1630052768,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217589 -3035381,1630143449,2,57,15,6,1630052768,2,3.0,-9.0,-9.0,-9.0,4.0,1217589 -3035382,1630143455,2,25,0,1,1630052769,2,3.0,-9.0,-9.0,-9.0,4.0,1217590 -3035383,1630143457,2,6,2,2,1630052769,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217590 -3035384,1630143463,2,5,2,3,1630052769,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217590 -3035385,1630143465,2,4,2,4,1630052769,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217590 -3035386,1630143459,2,3,2,5,1630052769,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217590 -3035387,1630143461,2,2,2,6,1630052769,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217590 -3035388,1630143470,2,46,0,1,1630052770,2,3.0,-9.0,-9.0,15.0,4.0,1217591 -3035389,1630143473,2,47,1,2,1630052770,1,1.0,40.0,6.0,-9.0,4.0,1217591 -3035390,1630143471,2,28,2,3,1630052770,2,6.0,-9.0,-9.0,-9.0,4.0,1217591 -3035391,1630143472,2,17,2,4,1630052770,1,6.0,-9.0,-9.0,13.0,4.0,1217591 -3035392,1630143474,2,15,2,5,1630052770,2,-9.0,-9.0,-9.0,12.0,-9.0,1217591 -3035393,1630143475,2,8,2,6,1630052770,2,-9.0,-9.0,-9.0,5.0,-9.0,1217591 -3035394,1630143175,2,89,0,1,1630052771,1,6.0,-9.0,-9.0,-9.0,2.0,1217592 -3035395,1630143174,2,84,1,2,1630052771,2,6.0,-9.0,-9.0,-9.0,4.0,1217592 -3035396,1630143485,2,53,0,1,1630052772,1,6.0,45.0,5.0,11.0,4.0,1217593 -3035397,1630143484,2,14,2,2,1630052772,1,-9.0,-9.0,-9.0,10.0,-9.0,1217593 -3035398,1630143112,2,94,0,1,1630052773,2,6.0,-9.0,-9.0,-9.0,4.0,1217594 -3035399,1630143113,2,40,7,2,1630052773,1,1.0,45.0,1.0,-9.0,4.0,1217594 -3035400,1630143468,2,22,0,1,1630052774,2,1.0,20.0,1.0,15.0,4.0,1217595 -3035401,1630143469,2,3,2,2,1630052774,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217595 -3035402,1630143507,2,29,0,1,1630052775,1,1.0,40.0,1.0,15.0,3.0,1217596 -3035403,1630143508,2,7,2,2,1630052775,2,-9.0,-9.0,-9.0,3.0,-9.0,1217596 -3035404,1630143533,4,52,0,1,1630052776,2,3.0,-9.0,-9.0,-9.0,4.0,1217597 -3035405,1630143532,2,66,1,2,1630052776,1,6.0,40.0,5.0,-9.0,4.0,1217597 -3035406,1630143114,2,76,0,1,1630052777,2,6.0,-9.0,-9.0,-9.0,4.0,1217598 -3035407,1630143115,2,19,7,2,1630052777,1,3.0,5.0,6.0,-9.0,4.0,1217598 -3035408,1630143208,2,53,0,1,1630052778,1,3.0,25.0,6.0,-9.0,4.0,1217599 -3035409,1630143202,2,49,1,2,1630052778,2,6.0,-9.0,-9.0,-9.0,4.0,1217599 -3035410,1630143211,2,18,2,3,1630052778,1,6.0,-9.0,-9.0,15.0,4.0,1217599 -3035411,1630143205,2,27,4,4,1630052778,2,3.0,-9.0,-9.0,15.0,4.0,1217599 -3035412,1630143214,2,7,7,5,1630052778,2,-9.0,-9.0,-9.0,5.0,-9.0,1217599 -3035413,1630143217,2,4,7,6,1630052778,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217599 -3035414,1630143466,2,63,0,1,1630052779,2,6.0,-9.0,-9.0,-9.0,4.0,1217600 -3035415,1630143467,2,63,1,2,1630052779,1,1.0,40.0,1.0,-9.0,2.0,1217600 -3035416,1630143418,2,57,0,1,1630052780,2,6.0,-9.0,-9.0,-9.0,4.0,1217601 -3035417,1630143419,2,59,1,2,1630052780,1,6.0,-9.0,-9.0,-9.0,4.0,1217601 -3035418,1630143351,2,26,0,1,1630052781,2,1.0,40.0,1.0,-9.0,4.0,1217602 -3035419,1630143353,2,8,2,2,1630052781,1,-9.0,-9.0,-9.0,3.0,-9.0,1217602 -3035420,1630143361,2,6,3,3,1630052781,2,-9.0,-9.0,-9.0,3.0,-9.0,1217602 -3035421,1630143355,2,2,3,4,1630052781,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217602 -3035422,1630143357,2,19,5,5,1630052781,1,6.0,-9.0,-9.0,-9.0,4.0,1217602 -3035423,1630143359,2,26,13,6,1630052781,1,1.0,40.0,1.0,-9.0,4.0,1217602 -3035424,1630143368,2,37,0,1,1630052782,2,1.0,40.0,1.0,-9.0,4.0,1217603 -3035425,1630143369,2,19,2,2,1630052782,2,3.0,-9.0,-9.0,-9.0,4.0,1217603 -3035426,1630143372,2,18,2,3,1630052782,1,6.0,-9.0,-9.0,-9.0,4.0,1217603 -3035427,1630143370,2,16,2,4,1630052782,1,6.0,-9.0,-9.0,13.0,-9.0,1217603 -3035428,1630143373,2,13,2,5,1630052782,2,-9.0,-9.0,-9.0,9.0,-9.0,1217603 -3035429,1630143374,2,1,2,6,1630052782,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217603 -3035430,1630143371,2,2,7,7,1630052782,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217603 -3035431,1630143375,2,0,7,8,1630052782,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217603 -3035432,1630143286,2,37,0,1,1630052783,2,1.0,50.0,1.0,-9.0,4.0,1217604 -3035433,1630143288,2,17,2,2,1630052783,1,6.0,-9.0,-9.0,14.0,4.0,1217604 -3035434,1630143290,2,15,2,3,1630052783,1,-9.0,-9.0,-9.0,11.0,-9.0,1217604 -3035435,1630143292,2,12,2,4,1630052783,1,-9.0,-9.0,-9.0,9.0,-9.0,1217604 -3035436,1630143294,2,12,2,5,1630052783,1,-9.0,-9.0,-9.0,9.0,-9.0,1217604 -3035437,1630143298,2,10,2,6,1630052783,2,-9.0,-9.0,-9.0,7.0,-9.0,1217604 -3035438,1630143296,2,7,2,7,1630052783,1,-9.0,-9.0,-9.0,4.0,-9.0,1217604 -3035439,1630143514,2,60,0,1,1630052784,1,6.0,-9.0,-9.0,-9.0,4.0,1217605 -3035440,1630143515,2,58,5,2,1630052784,1,1.0,40.0,1.0,-9.0,2.0,1217605 -3035441,1630143124,2,81,0,1,1630052785,2,6.0,-9.0,-9.0,-9.0,4.0,1217606 -3035442,1630143125,2,52,2,2,1630052785,1,1.0,40.0,1.0,-9.0,4.0,1217606 -3035443,1630143169,2,51,0,1,1630052786,1,3.0,-9.0,-9.0,-9.0,4.0,1217607 -3035444,1630143168,2,71,6,2,1630052786,2,6.0,-9.0,-9.0,-9.0,4.0,1217607 -3035445,1630143523,2,44,0,1,1630052787,1,6.0,-9.0,-9.0,14.0,4.0,1217608 -3035446,1630143524,2,50,5,2,1630052787,1,6.0,-9.0,-9.0,-9.0,4.0,1217608 -3035447,1630143383,2,48,0,1,1630052788,2,6.0,-9.0,-9.0,-9.0,4.0,1217609 -3035448,1630143384,2,24,2,2,1630052788,2,6.0,-9.0,-9.0,-9.0,4.0,1217609 -3035449,1630143385,2,21,2,3,1630052788,2,6.0,-9.0,-9.0,-9.0,4.0,1217609 -3035450,1630143388,2,4,7,4,1630052788,2,-9.0,-9.0,-9.0,2.0,-9.0,1217609 -3035451,1630143389,2,3,7,5,1630052788,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217609 -3035452,1630143386,2,1,7,6,1630052788,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217609 -3035453,1630143387,2,0,7,7,1630052788,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217609 -3035454,1630143229,2,72,0,1,1630052789,1,6.0,-9.0,-9.0,-9.0,2.0,1217610 -3035455,1630143228,2,62,1,2,1630052789,2,6.0,-9.0,-9.0,-9.0,4.0,1217610 -3035456,1630143496,2,31,0,1,1630052790,1,3.0,40.0,6.0,15.0,4.0,1217611 -3035457,1630143497,2,4,2,2,1630052790,2,-9.0,-9.0,-9.0,1.0,-9.0,1217611 -3035458,1630143530,2,71,0,1,1630052791,1,6.0,-9.0,-9.0,-9.0,2.0,1217612 -3035459,1630143179,4,74,0,1,1630052792,1,6.0,-9.0,-9.0,15.0,4.0,1217613 -3035460,1630143178,1,78,1,2,1630052792,2,6.0,-9.0,-9.0,-9.0,4.0,1217613 -3035461,1630143535,4,63,0,1,1630052793,2,6.0,-9.0,-9.0,-9.0,4.0,1217614 -3035462,1630143534,4,40,2,2,1630052793,1,1.0,40.0,1.0,15.0,2.0,1217614 -3035463,1630143123,2,64,0,1,1630052794,1,1.0,6.0,6.0,-9.0,4.0,1217615 -3035464,1630143122,2,66,1,2,1630052794,2,1.0,40.0,1.0,-9.0,4.0,1217615 -3035465,1630143500,2,46,0,1,1630052795,1,6.0,-9.0,-9.0,-9.0,4.0,1217616 -3035466,1630143127,2,61,0,1,1630052796,1,1.0,40.0,1.0,-9.0,4.0,1217617 -3035467,1630143126,2,73,15,2,1630052796,2,6.0,-9.0,-9.0,-9.0,4.0,1217617 -3035468,1630143396,2,56,0,1,1630052797,2,3.0,-9.0,-9.0,-9.0,4.0,1217618 -3035469,1630143397,2,35,2,2,1630052797,2,6.0,-9.0,-9.0,-9.0,4.0,1217618 -3035470,1630143400,2,24,2,3,1630052797,1,3.0,26.0,4.0,-9.0,4.0,1217618 -3035471,1630143398,2,21,2,4,1630052797,2,3.0,-9.0,-9.0,-9.0,4.0,1217618 -3035472,1630143401,2,17,2,5,1630052797,2,6.0,-9.0,-9.0,13.0,4.0,1217618 -3035473,1630143402,2,15,2,6,1630052797,2,-9.0,-9.0,-9.0,10.0,-9.0,1217618 -3035474,1630143399,2,13,2,7,1630052797,1,-9.0,-9.0,-9.0,10.0,-9.0,1217618 -3035475,1630143403,2,0,7,8,1630052797,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217618 -3035476,1630143306,2,39,0,1,1630052798,2,3.0,-9.0,-9.0,-9.0,4.0,1217619 -3035477,1630143310,2,13,2,2,1630052798,1,-9.0,-9.0,-9.0,9.0,-9.0,1217619 -3035478,1630143316,2,11,2,3,1630052798,2,-9.0,-9.0,-9.0,6.0,-9.0,1217619 -3035479,1630143312,2,15,10,4,1630052798,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217619 -3035480,1630143318,2,7,10,5,1630052798,2,-9.0,-9.0,-9.0,3.0,-9.0,1217619 -3035481,1630143314,2,35,13,6,1630052798,1,6.0,-9.0,-9.0,-9.0,4.0,1217619 -3035482,1630143308,2,30,15,7,1630052798,2,6.0,-9.0,-9.0,-9.0,4.0,1217619 -3035483,1630143145,2,85,0,1,1630052799,2,6.0,-9.0,-9.0,-9.0,4.0,1217620 -3035484,1630143147,2,53,2,2,1630052799,2,1.0,40.0,1.0,-9.0,4.0,1217620 -3035485,1630143149,2,31,7,3,1630052799,2,1.0,40.0,1.0,-9.0,4.0,1217620 -3035486,1630143151,2,19,7,4,1630052799,2,1.0,30.0,1.0,-9.0,4.0,1217620 -3035487,1630143155,2,15,7,5,1630052799,2,-9.0,-9.0,-9.0,12.0,-9.0,1217620 -3035488,1630143157,2,14,7,6,1630052799,2,-9.0,-9.0,-9.0,11.0,-9.0,1217620 -3035489,1630143159,2,14,7,7,1630052799,2,-9.0,-9.0,-9.0,11.0,-9.0,1217620 -3035490,1630143153,2,10,7,8,1630052799,1,-9.0,-9.0,-9.0,6.0,-9.0,1217620 -3035491,1630143167,2,61,0,1,1630052800,1,3.0,-9.0,-9.0,-9.0,4.0,1217621 -3035492,1630143166,2,67,1,2,1630052800,2,6.0,-9.0,-9.0,-9.0,4.0,1217621 -3035493,1630143529,2,68,0,1,1630052801,1,3.0,-9.0,-9.0,-9.0,2.0,1217622 -3035494,1630143303,2,22,0,1,1630052802,2,1.0,37.0,2.0,-9.0,4.0,1217623 -3035495,1630143304,2,2,2,2,1630052802,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217623 -3035496,1630143376,2,59,0,1,1630052803,2,6.0,-9.0,-9.0,-9.0,4.0,1217624 -3035497,1630143381,2,36,2,2,1630052803,1,1.0,40.0,6.0,-9.0,4.0,1217624 -3035498,1630143382,2,13,3,3,1630052803,2,-9.0,-9.0,-9.0,9.0,-9.0,1217624 -3035499,1630143377,2,12,3,4,1630052803,1,-9.0,-9.0,-9.0,7.0,-9.0,1217624 -3035500,1630143378,2,11,3,5,1630052803,1,-9.0,-9.0,-9.0,7.0,-9.0,1217624 -3035501,1630143379,2,10,3,6,1630052803,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217624 -3035502,1630143380,2,8,7,7,1630052803,1,-9.0,-9.0,-9.0,5.0,-9.0,1217624 -3035503,1630143510,2,62,0,1,1630052804,1,1.0,55.0,1.0,-9.0,4.0,1217625 -3035504,1630143511,2,22,2,2,1630052804,1,3.0,40.0,3.0,-9.0,4.0,1217625 -3035505,1630143504,2,85,0,1,1630052805,1,6.0,-9.0,-9.0,15.0,4.0,1217626 -3035506,1630143503,2,40,2,2,1630052805,1,3.0,-9.0,-9.0,-9.0,4.0,1217626 -3035507,1630143531,2,66,0,1,1630052806,1,6.0,-9.0,-9.0,-9.0,4.0,1217627 -3035508,1630143495,2,63,0,1,1630052807,1,1.0,40.0,1.0,-9.0,3.0,1217628 -3035509,1630143266,2,38,0,1,1630052808,2,1.0,70.0,1.0,-9.0,4.0,1217629 -3035510,1630143267,2,19,2,2,1630052808,2,1.0,24.0,3.0,15.0,4.0,1217629 -3035511,1630143268,2,14,2,3,1630052808,1,-9.0,-9.0,-9.0,11.0,-9.0,1217629 -3035512,1630143271,2,5,2,4,1630052808,2,-9.0,-9.0,-9.0,1.0,-9.0,1217629 -3035513,1630143269,2,18,5,5,1630052808,1,6.0,-9.0,-9.0,12.0,4.0,1217629 -3035514,1630143270,2,60,6,6,1630052808,1,6.0,-9.0,-9.0,-9.0,4.0,1217629 -3035515,1630143481,2,35,0,1,1630052809,1,6.0,-9.0,-9.0,-9.0,4.0,1217630 -3035516,1630143482,2,10,2,2,1630052809,2,-9.0,-9.0,-9.0,7.0,-9.0,1217630 -3035517,1630143478,2,6,2,3,1630052809,1,-9.0,-9.0,-9.0,4.0,-9.0,1217630 -3035518,1630143479,2,5,2,4,1630052809,1,-9.0,-9.0,-9.0,2.0,-9.0,1217630 -3035519,1630143483,2,3,2,5,1630052809,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217630 -3035520,1630143480,2,0,2,6,1630052809,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217630 -3035521,1630143476,2,54,10,7,1630052809,2,1.0,40.0,1.0,-9.0,4.0,1217630 -3035522,1630143477,2,29,13,8,1630052809,2,3.0,-9.0,-9.0,-9.0,4.0,1217630 -3035523,1630143118,2,71,0,1,1630052810,2,6.0,-9.0,-9.0,-9.0,4.0,1217631 -3035524,1630143119,2,57,2,2,1630052810,2,1.0,40.0,1.0,-9.0,4.0,1217631 -3035525,1630143186,2,48,0,1,1630052811,2,6.0,-9.0,-9.0,-9.0,4.0,1217632 -3035526,1630143187,2,60,5,2,1630052811,1,6.0,-9.0,-9.0,-9.0,4.0,1217632 -3035527,1630143492,2,61,0,1,1630052812,1,1.0,40.0,1.0,-9.0,4.0,1217633 -3035528,1630143493,2,51,10,2,1630052812,1,6.0,-9.0,-9.0,-9.0,4.0,1217633 -3035529,1630143392,2,32,0,1,1630052813,2,1.0,20.0,1.0,-9.0,4.0,1217634 -3035530,1630143393,2,10,2,2,1630052813,1,-9.0,-9.0,-9.0,7.0,-9.0,1217634 -3035531,1630143517,2,41,0,1,1630052814,1,3.0,40.0,5.0,-9.0,4.0,1217635 -3035532,1630143188,2,36,0,1,1630052815,2,1.0,30.0,4.0,-9.0,4.0,1217636 -3035533,1630143191,2,19,2,2,1630052815,1,3.0,-9.0,-9.0,14.0,4.0,1217636 -3035534,1630143189,2,14,2,3,1630052815,1,-9.0,-9.0,-9.0,11.0,-9.0,1217636 -3035535,1630143193,2,14,2,4,1630052815,2,-9.0,-9.0,-9.0,11.0,-9.0,1217636 -3035536,1630143190,2,12,2,5,1630052815,1,-9.0,-9.0,-9.0,9.0,-9.0,1217636 -3035537,1630143194,2,12,2,6,1630052815,2,-9.0,-9.0,-9.0,9.0,-9.0,1217636 -3035538,1630143195,2,4,2,7,1630052815,2,-9.0,-9.0,-9.0,1.0,-9.0,1217636 -3035539,1630143192,2,45,15,8,1630052815,1,1.0,32.0,5.0,-9.0,4.0,1217636 -3035540,1630143417,2,60,0,1,1630052816,1,1.0,48.0,1.0,-9.0,4.0,1217637 -3035541,1630143416,2,60,1,2,1630052816,2,6.0,-9.0,-9.0,-9.0,4.0,1217637 -3035542,1630143337,2,47,0,1,1630052817,1,2.0,18.0,1.0,15.0,2.0,1217638 -3035543,1630143343,4,48,1,2,1630052817,2,6.0,-9.0,-9.0,-9.0,4.0,1217638 -3035544,1630143338,2,24,2,3,1630052817,1,6.0,5.0,6.0,-9.0,4.0,1217638 -3035545,1630143334,2,19,2,4,1630052817,2,6.0,-9.0,-9.0,14.0,4.0,1217638 -3035546,1630143335,2,19,2,5,1630052817,2,6.0,-9.0,-9.0,14.0,4.0,1217638 -3035547,1630143339,2,17,2,6,1630052817,2,6.0,-9.0,-9.0,12.0,4.0,1217638 -3035548,1630143340,2,14,2,7,1630052817,2,-9.0,-9.0,-9.0,11.0,-9.0,1217638 -3035549,1630143341,2,13,2,8,1630052817,2,-9.0,-9.0,-9.0,9.0,-9.0,1217638 -3035550,1630143342,2,12,2,9,1630052817,2,-9.0,-9.0,-9.0,10.0,-9.0,1217638 -3035551,1630143336,2,4,2,10,1630052817,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217638 -3035552,1630143171,2,75,0,1,1630052818,1,1.0,27.0,4.0,-9.0,2.0,1217639 -3035553,1630143170,2,75,1,2,1630052818,2,6.0,-9.0,-9.0,-9.0,4.0,1217639 -3035554,1630143226,2,55,0,1,1630052819,2,1.0,20.0,4.0,-9.0,4.0,1217640 -3035555,1630143227,2,23,2,2,1630052819,1,6.0,-9.0,-9.0,-9.0,4.0,1217640 -3035556,1630143319,2,42,0,1,1630052820,2,6.0,-9.0,-9.0,-9.0,4.0,1217641 -3035557,1630143321,2,24,2,2,1630052820,1,1.0,20.0,4.0,-9.0,4.0,1217641 -3035558,1630143320,2,23,2,3,1630052820,2,1.0,30.0,1.0,-9.0,4.0,1217641 -3035559,1630143322,2,21,2,4,1630052820,1,6.0,-9.0,-9.0,-9.0,4.0,1217641 -3035560,1630143323,2,20,2,5,1630052820,1,3.0,-9.0,-9.0,-9.0,4.0,1217641 -3035561,1630143325,2,16,2,6,1630052820,2,3.0,-9.0,-9.0,13.0,-9.0,1217641 -3035562,1630143326,2,2,7,7,1630052820,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217641 -3035563,1630143324,2,30,12,8,1630052820,1,3.0,15.0,5.0,-9.0,4.0,1217641 -3035564,1630143185,3,52,0,1,1630052821,2,1.0,40.0,1.0,-9.0,4.0,1217642 -3035565,1630143184,1,55,1,2,1630052821,1,1.0,40.0,1.0,-9.0,4.0,1217642 -3035566,1630143516,2,60,0,1,1630052822,1,1.0,40.0,1.0,-9.0,4.0,1217643 -3035567,1630143282,2,24,0,1,1630052823,1,1.0,42.0,1.0,-9.0,4.0,1217644 -3035568,1630143281,2,24,1,2,1630052823,2,6.0,-9.0,-9.0,-9.0,4.0,1217644 -3035569,1630143501,2,32,0,1,1630052824,1,6.0,56.0,1.0,-9.0,4.0,1217645 -3035570,1630143502,2,29,12,2,1630052824,1,6.0,-9.0,-9.0,-9.0,4.0,1217645 -3035571,1630143160,2,75,0,1,1630052825,2,6.0,-9.0,-9.0,-9.0,4.0,1217646 -3035572,1630143161,2,43,2,2,1630052825,1,6.0,-9.0,-9.0,-9.0,4.0,1217646 -3035573,1630143364,2,52,0,1,1630052826,2,6.0,-9.0,-9.0,-9.0,4.0,1217647 -3035574,1630143365,2,22,2,2,1630052826,1,1.0,21.0,1.0,-9.0,4.0,1217647 -3035575,1630143446,2,61,0,1,1630052827,2,6.0,-9.0,-9.0,-9.0,4.0,1217648 -3035576,1630143519,2,47,0,1,1630052828,1,3.0,40.0,6.0,-9.0,4.0,1217649 -3035577,1630143521,2,28,10,2,1630052828,1,3.0,30.0,6.0,-9.0,4.0,1217649 -3035578,1630143367,2,63,0,1,1630052829,1,6.0,-9.0,-9.0,-9.0,4.0,1217650 -3035579,1630143366,2,64,1,2,1630052829,2,1.0,30.0,1.0,-9.0,4.0,1217650 -3035580,1630143183,3,77,0,1,1630052830,1,6.0,-9.0,-9.0,-9.0,2.0,1217651 -3035581,1630143181,1,77,1,2,1630052830,2,6.0,-9.0,-9.0,-9.0,4.0,1217651 -3035582,1630143522,2,58,0,1,1630052831,1,2.0,20.0,6.0,-9.0,2.0,1217652 -3035583,1630143131,2,53,0,1,1630052832,2,6.0,-9.0,-9.0,-9.0,4.0,1217653 -3035584,1630143139,2,39,1,2,1630052832,1,6.0,-9.0,-9.0,-9.0,4.0,1217653 -3035585,1630143133,2,35,2,3,1630052832,2,1.0,16.0,6.0,-9.0,4.0,1217653 -3035586,1630143129,2,81,6,4,1630052832,2,6.0,-9.0,-9.0,-9.0,4.0,1217653 -3035587,1630143135,2,19,7,5,1630052832,2,6.0,40.0,4.0,-9.0,4.0,1217653 -3035588,1630143137,2,11,7,6,1630052832,1,-9.0,-9.0,-9.0,7.0,-9.0,1217653 -3035589,1630143141,2,10,7,7,1630052832,2,-9.0,-9.0,-9.0,6.0,-9.0,1217653 -3035590,1630143143,2,10,7,8,1630052832,2,-9.0,-9.0,-9.0,7.0,-9.0,1217653 -3035591,1630143394,2,63,0,1,1630052833,2,6.0,-9.0,-9.0,-9.0,4.0,1217654 -3035592,1630143395,2,15,10,2,1630052833,2,-9.0,-9.0,-9.0,12.0,-9.0,1217654 -3035593,1630143224,2,60,0,1,1630052834,2,6.0,-9.0,-9.0,-9.0,4.0,1217655 -3035594,1630143225,2,13,10,2,1630052834,1,-9.0,-9.0,-9.0,8.0,-9.0,1217655 -3035595,1630143512,2,19,0,1,1630052835,1,3.0,-9.0,-9.0,-9.0,4.0,1217656 -3035596,1630143165,2,68,0,1,1630052836,1,6.0,-9.0,-9.0,-9.0,2.0,1217657 -3035597,1630143164,2,67,1,2,1630052836,2,6.0,-9.0,-9.0,-9.0,4.0,1217657 -3035598,1630143362,2,62,0,1,1630052837,2,6.0,-9.0,-9.0,-9.0,4.0,1217658 -3035599,1630143363,2,63,15,2,1630052837,1,6.0,-9.0,-9.0,-9.0,4.0,1217658 -3035600,1630143344,2,45,0,1,1630052838,2,1.0,40.0,1.0,-9.0,4.0,1217659 -3035601,1630143347,2,16,2,2,1630052838,2,6.0,-9.0,-9.0,12.0,-9.0,1217659 -3035602,1630143348,2,13,2,3,1630052838,2,-9.0,-9.0,-9.0,9.0,-9.0,1217659 -3035603,1630143345,2,12,2,4,1630052838,1,-9.0,-9.0,-9.0,8.0,-9.0,1217659 -3035604,1630143349,2,12,2,5,1630052838,2,-9.0,-9.0,-9.0,8.0,-9.0,1217659 -3035605,1630143346,2,8,2,6,1630052838,1,-9.0,-9.0,-9.0,4.0,-9.0,1217659 -3035606,1630143494,2,42,0,1,1630052839,1,1.0,40.0,1.0,-9.0,4.0,1217660 -3035607,1630143420,2,42,0,1,1630052840,2,3.0,-9.0,-9.0,-9.0,4.0,1217661 -3035608,1630143421,2,23,2,2,1630052840,2,6.0,-9.0,-9.0,-9.0,4.0,1217661 -3035609,1630143422,2,21,2,3,1630052840,2,6.0,-9.0,-9.0,11.0,4.0,1217661 -3035610,1630143423,2,18,2,4,1630052840,2,6.0,-9.0,-9.0,15.0,4.0,1217661 -3035611,1630143425,2,15,2,5,1630052840,2,-9.0,-9.0,-9.0,11.0,-9.0,1217661 -3035612,1630143426,2,11,2,6,1630052840,2,-9.0,-9.0,-9.0,7.0,-9.0,1217661 -3035613,1630143427,2,10,2,7,1630052840,2,-9.0,-9.0,-9.0,6.0,-9.0,1217661 -3035614,1630143424,2,9,2,8,1630052840,1,-9.0,-9.0,-9.0,5.0,-9.0,1217661 -3035615,1630143411,2,49,0,1,1630052841,1,1.0,40.0,1.0,-9.0,4.0,1217662 -3035616,1630143404,2,43,1,2,1630052841,2,6.0,-9.0,-9.0,-9.0,4.0,1217662 -3035617,1630143406,2,13,2,3,1630052841,1,-9.0,-9.0,-9.0,9.0,-9.0,1217662 -3035618,1630143407,2,12,2,4,1630052841,1,-9.0,-9.0,-9.0,10.0,-9.0,1217662 -3035619,1630143408,2,7,2,5,1630052841,1,-9.0,-9.0,-9.0,5.0,-9.0,1217662 -3035620,1630143412,2,6,2,6,1630052841,2,-9.0,-9.0,-9.0,3.0,-9.0,1217662 -3035621,1630143405,2,19,4,7,1630052841,2,1.0,40.0,5.0,-9.0,4.0,1217662 -3035622,1630143413,2,17,4,8,1630052841,2,1.0,20.0,5.0,14.0,4.0,1217662 -3035623,1630143409,2,15,4,9,1630052841,1,-9.0,-9.0,-9.0,12.0,-9.0,1217662 -3035624,1630143414,2,14,4,10,1630052841,2,-9.0,-9.0,-9.0,11.0,-9.0,1217662 -3035625,1630143410,2,14,4,11,1630052841,1,-9.0,-9.0,-9.0,10.0,-9.0,1217662 -3035626,1630143415,2,12,4,12,1630052841,2,-9.0,-9.0,-9.0,10.0,-9.0,1217662 -3035627,1630143829,2,63,0,1,1630052842,2,6.0,-9.0,-9.0,-9.0,4.0,1217663 -3035628,1630143830,2,40,2,2,1630052842,2,1.0,40.0,1.0,-9.0,4.0,1217663 -3035629,1630143831,2,36,2,3,1630052842,1,3.0,45.0,4.0,-9.0,4.0,1217663 -3035630,1630143832,2,12,7,4,1630052842,2,-9.0,-9.0,-9.0,9.0,-9.0,1217663 -3035631,1630143640,2,54,0,1,1630052843,2,3.0,35.0,5.0,-9.0,4.0,1217664 -3035632,1630143641,2,54,1,2,1630052843,1,1.0,40.0,2.0,-9.0,4.0,1217664 -3035633,1630143639,2,86,8,3,1630052843,2,6.0,-9.0,-9.0,-9.0,4.0,1217664 -3035634,1630143723,2,52,0,1,1630052844,1,1.0,40.0,1.0,-9.0,2.0,1217665 -3035635,1630143721,2,58,5,2,1630052844,2,1.0,35.0,1.0,-9.0,4.0,1217665 -3035636,1630143722,2,23,10,3,1630052844,2,1.0,12.0,3.0,15.0,4.0,1217665 -3035637,1630143680,2,50,0,1,1630052845,1,1.0,50.0,1.0,-9.0,4.0,1217666 -3035638,1630143676,2,51,1,2,1630052845,2,3.0,-9.0,-9.0,-9.0,4.0,1217666 -3035639,1630143678,2,18,2,3,1630052845,2,3.0,-9.0,-9.0,14.0,4.0,1217666 -3035640,1630143682,2,21,4,4,1630052845,1,3.0,30.0,6.0,-9.0,4.0,1217666 -3035641,1630143681,2,50,0,1,1630052846,1,1.0,50.0,1.0,-9.0,4.0,1217667 -3035642,1630143677,2,51,1,2,1630052846,2,3.0,-9.0,-9.0,-9.0,4.0,1217667 -3035643,1630143679,2,18,2,3,1630052846,2,3.0,-9.0,-9.0,14.0,4.0,1217667 -3035644,1630143683,2,21,4,4,1630052846,1,3.0,30.0,6.0,-9.0,4.0,1217667 -3035645,1630143752,2,59,0,1,1630052847,2,6.0,-9.0,-9.0,-9.0,2.0,1217668 -3035646,1630143756,2,29,4,2,1630052847,1,6.0,-9.0,-9.0,-9.0,4.0,1217668 -3035647,1630143754,2,57,13,3,1630052847,2,1.0,40.0,1.0,-9.0,2.0,1217668 -3035648,1630143566,2,84,0,1,1630052848,1,6.0,-9.0,-9.0,-9.0,2.0,1217669 -3035649,1630143542,2,77,1,2,1630052848,2,6.0,-9.0,-9.0,-9.0,4.0,1217669 -3035650,1630143550,2,57,2,3,1630052848,1,6.0,-9.0,-9.0,-9.0,4.0,1217669 -3035651,1630143558,2,45,2,4,1630052848,1,6.0,-9.0,-9.0,-9.0,4.0,1217669 -3035652,1630143617,2,65,0,1,1630052849,2,6.0,-9.0,-9.0,-9.0,4.0,1217670 -3035653,1630143623,2,66,1,2,1630052849,1,6.0,-9.0,-9.0,-9.0,2.0,1217670 -3035654,1630143626,2,67,5,3,1630052849,1,6.0,-9.0,-9.0,-9.0,2.0,1217670 -3035655,1630143620,2,57,5,4,1630052849,1,6.0,-9.0,-9.0,-9.0,4.0,1217670 -3035656,1630143567,2,84,0,1,1630052850,1,6.0,-9.0,-9.0,-9.0,2.0,1217671 -3035657,1630143543,2,77,1,2,1630052850,2,6.0,-9.0,-9.0,-9.0,4.0,1217671 -3035658,1630143551,2,57,2,3,1630052850,1,6.0,-9.0,-9.0,-9.0,4.0,1217671 -3035659,1630143559,2,45,2,4,1630052850,1,6.0,-9.0,-9.0,-9.0,4.0,1217671 -3035660,1630143618,2,65,0,1,1630052851,2,6.0,-9.0,-9.0,-9.0,4.0,1217672 -3035661,1630143627,2,67,5,2,1630052851,1,6.0,-9.0,-9.0,-9.0,2.0,1217672 -3035662,1630143621,2,57,5,3,1630052851,1,6.0,-9.0,-9.0,-9.0,4.0,1217672 -3035663,1630143568,2,84,0,1,1630052852,1,6.0,-9.0,-9.0,-9.0,2.0,1217673 -3035664,1630143544,2,77,1,2,1630052852,2,6.0,-9.0,-9.0,-9.0,4.0,1217673 -3035665,1630143552,2,57,2,3,1630052852,1,6.0,-9.0,-9.0,-9.0,4.0,1217673 -3035666,1630143560,2,45,2,4,1630052852,1,6.0,-9.0,-9.0,-9.0,4.0,1217673 -3035667,1630143569,2,84,0,1,1630052853,1,6.0,-9.0,-9.0,-9.0,2.0,1217674 -3035668,1630143545,2,77,1,2,1630052853,2,6.0,-9.0,-9.0,-9.0,4.0,1217674 -3035669,1630143553,2,57,2,3,1630052853,1,6.0,-9.0,-9.0,-9.0,4.0,1217674 -3035670,1630143561,2,45,2,4,1630052853,1,6.0,-9.0,-9.0,-9.0,4.0,1217674 -3035671,1630143570,2,84,0,1,1630052854,1,6.0,-9.0,-9.0,-9.0,2.0,1217675 -3035672,1630143546,2,77,1,2,1630052854,2,6.0,-9.0,-9.0,-9.0,4.0,1217675 -3035673,1630143554,2,57,2,3,1630052854,1,6.0,-9.0,-9.0,-9.0,4.0,1217675 -3035674,1630143562,2,45,2,4,1630052854,1,6.0,-9.0,-9.0,-9.0,4.0,1217675 -3035675,1630143571,2,84,0,1,1630052855,1,6.0,-9.0,-9.0,-9.0,2.0,1217676 -3035676,1630143547,2,77,1,2,1630052855,2,6.0,-9.0,-9.0,-9.0,4.0,1217676 -3035677,1630143555,2,57,2,3,1630052855,1,6.0,-9.0,-9.0,-9.0,4.0,1217676 -3035678,1630143563,2,45,2,4,1630052855,1,6.0,-9.0,-9.0,-9.0,4.0,1217676 -3035679,1630143572,2,84,0,1,1630052856,1,6.0,-9.0,-9.0,-9.0,2.0,1217677 -3035680,1630143548,2,77,1,2,1630052856,2,6.0,-9.0,-9.0,-9.0,4.0,1217677 -3035681,1630143556,2,57,2,3,1630052856,1,6.0,-9.0,-9.0,-9.0,4.0,1217677 -3035682,1630143564,2,45,2,4,1630052856,1,6.0,-9.0,-9.0,-9.0,4.0,1217677 -3035683,1630143573,2,84,0,1,1630052857,1,6.0,-9.0,-9.0,-9.0,2.0,1217678 -3035684,1630143549,2,77,1,2,1630052857,2,6.0,-9.0,-9.0,-9.0,4.0,1217678 -3035685,1630143557,2,57,2,3,1630052857,1,6.0,-9.0,-9.0,-9.0,4.0,1217678 -3035686,1630143565,2,45,2,4,1630052857,1,6.0,-9.0,-9.0,-9.0,4.0,1217678 -3035687,1630143613,2,75,0,1,1630052858,2,6.0,-9.0,-9.0,-9.0,4.0,1217679 -3035688,1630143615,2,43,2,2,1630052858,1,6.0,-9.0,-9.0,-9.0,4.0,1217679 -3035689,1630143642,2,76,0,1,1630052859,2,6.0,-9.0,-9.0,-9.0,4.0,1217680 -3035690,1630143648,2,60,2,2,1630052859,1,6.0,-9.0,-9.0,-9.0,4.0,1217680 -3035691,1630143644,2,48,2,3,1630052859,2,2.0,20.0,2.0,-9.0,4.0,1217680 -3035692,1630143646,2,59,9,4,1630052859,2,6.0,-9.0,-9.0,-9.0,4.0,1217680 -3035693,1630143643,2,76,0,1,1630052860,2,6.0,-9.0,-9.0,-9.0,4.0,1217681 -3035694,1630143649,2,60,2,2,1630052860,1,6.0,-9.0,-9.0,-9.0,4.0,1217681 -3035695,1630143645,2,48,2,3,1630052860,2,2.0,20.0,2.0,-9.0,4.0,1217681 -3035696,1630143647,2,59,9,4,1630052860,2,6.0,-9.0,-9.0,-9.0,4.0,1217681 -3035697,1630143578,2,87,0,1,1630052861,2,6.0,-9.0,-9.0,-9.0,4.0,1217682 -3035698,1630143580,2,50,2,2,1630052861,1,1.0,40.0,1.0,-9.0,4.0,1217682 -3035699,1630143582,2,27,7,3,1630052861,1,1.0,40.0,2.0,-9.0,4.0,1217682 -3035700,1630143633,2,87,0,1,1630052862,2,6.0,-9.0,-9.0,-9.0,4.0,1217683 -3035701,1630143635,2,60,2,2,1630052862,2,6.0,-9.0,-9.0,-9.0,4.0,1217683 -3035702,1630143637,2,56,2,3,1630052862,1,6.0,-9.0,-9.0,-9.0,4.0,1217683 -3035703,1630143658,2,65,0,1,1630052863,2,6.0,-9.0,-9.0,-9.0,3.0,1217684 -3035704,1630143659,2,63,10,2,1630052863,2,6.0,-9.0,-9.0,-9.0,3.0,1217684 -3035705,1630143661,2,58,10,3,1630052863,1,6.0,-9.0,-9.0,-9.0,4.0,1217684 -3035706,1630143660,2,25,10,4,1630052863,2,6.0,-9.0,-9.0,-9.0,4.0,1217684 -3035707,1630143601,2,85,0,1,1630052864,2,6.0,-9.0,-9.0,-9.0,4.0,1217685 -3035708,1630143607,2,75,11,2,1630052864,1,6.0,-9.0,-9.0,-9.0,2.0,1217685 -3035709,1630143610,2,67,11,3,1630052864,1,1.0,40.0,1.0,-9.0,4.0,1217685 -3035710,1630143604,2,58,11,4,1630052864,1,6.0,-9.0,-9.0,-9.0,2.0,1217685 -3035711,1630143602,2,85,0,1,1630052865,2,6.0,-9.0,-9.0,-9.0,4.0,1217686 -3035712,1630143608,2,75,11,2,1630052865,1,6.0,-9.0,-9.0,-9.0,2.0,1217686 -3035713,1630143611,2,67,11,3,1630052865,1,1.0,40.0,1.0,-9.0,4.0,1217686 -3035714,1630143605,2,58,11,4,1630052865,1,6.0,-9.0,-9.0,-9.0,2.0,1217686 -3035715,1630143770,2,38,0,1,1630052866,2,1.0,40.0,1.0,-9.0,4.0,1217687 -3035716,1630143773,2,4,2,2,1630052866,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217687 -3035717,1630143776,2,2,2,3,1630052866,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217687 -3035718,1630143771,2,38,0,1,1630052867,2,1.0,40.0,1.0,-9.0,4.0,1217688 -3035719,1630143774,2,4,2,2,1630052867,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217688 -3035720,1630143777,2,2,2,3,1630052867,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217688 -3035721,1630143780,2,40,13,4,1630052867,1,6.0,-9.0,-9.0,-9.0,4.0,1217688 -3035722,1630143699,2,38,0,1,1630052868,2,1.0,70.0,1.0,-9.0,4.0,1217689 -3035723,1630143701,2,19,2,2,1630052868,2,1.0,24.0,3.0,15.0,4.0,1217689 -3035724,1630143703,2,14,2,3,1630052868,1,-9.0,-9.0,-9.0,11.0,-9.0,1217689 -3035725,1630143709,2,5,2,4,1630052868,2,-9.0,-9.0,-9.0,1.0,-9.0,1217689 -3035726,1630143705,2,18,5,5,1630052868,1,6.0,-9.0,-9.0,12.0,4.0,1217689 -3035727,1630143707,2,60,6,6,1630052868,1,6.0,-9.0,-9.0,-9.0,4.0,1217689 -3035728,1630143806,2,39,0,1,1630052869,2,6.0,27.0,1.0,-9.0,4.0,1217690 -3035729,1630143814,2,21,2,2,1630052869,1,6.0,-9.0,-9.0,-9.0,4.0,1217690 -3035730,1630143810,2,26,10,3,1630052869,2,6.0,-9.0,-9.0,-9.0,4.0,1217690 -3035731,1630143807,2,39,0,1,1630052870,2,6.0,27.0,1.0,-9.0,4.0,1217691 -3035732,1630143815,2,21,2,2,1630052870,1,6.0,-9.0,-9.0,-9.0,4.0,1217691 -3035733,1630143811,2,26,10,3,1630052870,2,6.0,-9.0,-9.0,-9.0,4.0,1217691 -3035734,1630143808,2,39,0,1,1630052871,2,6.0,27.0,1.0,-9.0,4.0,1217692 -3035735,1630143816,2,21,2,2,1630052871,1,6.0,-9.0,-9.0,-9.0,4.0,1217692 -3035736,1630143812,2,26,10,3,1630052871,2,6.0,-9.0,-9.0,-9.0,4.0,1217692 -3035737,1630143809,2,39,0,1,1630052872,2,6.0,27.0,1.0,-9.0,4.0,1217693 -3035738,1630143817,2,21,2,2,1630052872,1,6.0,-9.0,-9.0,-9.0,4.0,1217693 -3035739,1630143813,2,26,10,3,1630052872,2,6.0,-9.0,-9.0,-9.0,4.0,1217693 -3035740,1630143836,2,44,0,1,1630052873,2,1.0,15.0,1.0,-9.0,4.0,1217694 -3035741,1630143844,2,31,2,2,1630052873,1,3.0,-9.0,-9.0,-9.0,4.0,1217694 -3035742,1630143848,2,24,2,3,1630052873,1,6.0,-9.0,-9.0,12.0,4.0,1217694 -3035743,1630143840,2,18,2,4,1630052873,2,6.0,-9.0,-9.0,14.0,4.0,1217694 -3035744,1630143852,2,13,2,5,1630052873,2,-9.0,-9.0,-9.0,10.0,-9.0,1217694 -3035745,1630143856,2,9,2,6,1630052873,2,-9.0,-9.0,-9.0,6.0,-9.0,1217694 -3035746,1630143837,2,44,0,1,1630052874,2,1.0,15.0,1.0,-9.0,4.0,1217695 -3035747,1630143845,2,31,2,2,1630052874,1,3.0,-9.0,-9.0,-9.0,4.0,1217695 -3035748,1630143849,2,24,2,3,1630052874,1,6.0,-9.0,-9.0,12.0,4.0,1217695 -3035749,1630143841,2,18,2,4,1630052874,2,6.0,-9.0,-9.0,14.0,4.0,1217695 -3035750,1630143853,2,13,2,5,1630052874,2,-9.0,-9.0,-9.0,10.0,-9.0,1217695 -3035751,1630143857,2,9,2,6,1630052874,2,-9.0,-9.0,-9.0,6.0,-9.0,1217695 -3035752,1630143838,2,44,0,1,1630052875,2,1.0,15.0,1.0,-9.0,4.0,1217696 -3035753,1630143846,2,31,2,2,1630052875,1,3.0,-9.0,-9.0,-9.0,4.0,1217696 -3035754,1630143850,2,24,2,3,1630052875,1,6.0,-9.0,-9.0,12.0,4.0,1217696 -3035755,1630143842,2,18,2,4,1630052875,2,6.0,-9.0,-9.0,14.0,4.0,1217696 -3035756,1630143854,2,13,2,5,1630052875,2,-9.0,-9.0,-9.0,10.0,-9.0,1217696 -3035757,1630143858,2,9,2,6,1630052875,2,-9.0,-9.0,-9.0,6.0,-9.0,1217696 -3035758,1630143746,2,40,0,1,1630052876,1,1.0,40.0,1.0,-9.0,4.0,1217697 -3035759,1630143742,2,2,2,2,1630052876,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217697 -3035760,1630143748,2,0,2,3,1630052876,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217697 -3035761,1630143740,2,37,13,4,1630052876,2,6.0,-9.0,-9.0,-9.0,4.0,1217697 -3035762,1630143744,2,15,15,5,1630052876,1,-9.0,-9.0,-9.0,12.0,-9.0,1217697 -3035763,1630143750,2,12,15,6,1630052876,2,-9.0,-9.0,-9.0,9.0,-9.0,1217697 -3035764,1630143747,2,40,0,1,1630052877,1,1.0,40.0,1.0,-9.0,4.0,1217698 -3035765,1630143743,2,2,2,2,1630052877,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217698 -3035766,1630143749,2,0,2,3,1630052877,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217698 -3035767,1630143741,2,37,13,4,1630052877,2,6.0,-9.0,-9.0,-9.0,4.0,1217698 -3035768,1630143745,2,15,15,5,1630052877,1,-9.0,-9.0,-9.0,12.0,-9.0,1217698 -3035769,1630143751,2,12,15,6,1630052877,2,-9.0,-9.0,-9.0,9.0,-9.0,1217698 -3035770,1630143728,2,35,0,1,1630052878,2,6.0,-9.0,-9.0,-9.0,4.0,1217699 -3035771,1630143730,2,13,2,2,1630052878,2,-9.0,-9.0,-9.0,11.0,-9.0,1217699 -3035772,1630143731,2,12,2,3,1630052878,2,-9.0,-9.0,-9.0,9.0,-9.0,1217699 -3035773,1630143729,2,11,2,4,1630052878,1,-9.0,-9.0,-9.0,7.0,-9.0,1217699 -3035774,1630143711,2,38,0,1,1630052879,2,6.0,-9.0,-9.0,-9.0,4.0,1217700 -3035775,1630143712,2,18,2,2,1630052879,2,6.0,-9.0,-9.0,14.0,4.0,1217700 -3035776,1630143713,2,16,2,3,1630052879,1,6.0,-9.0,-9.0,13.0,-9.0,1217700 -3035777,1630143714,2,14,2,4,1630052879,2,-9.0,-9.0,-9.0,11.0,-9.0,1217700 -3035778,1630143684,2,35,0,1,1630052880,2,3.0,18.0,4.0,-9.0,4.0,1217701 -3035779,1630143686,2,35,15,2,1630052880,1,3.0,24.0,6.0,-9.0,4.0,1217701 -3035780,1630143685,2,14,15,3,1630052880,1,-9.0,-9.0,-9.0,10.0,-9.0,1217701 -3035781,1630143718,2,39,0,1,1630052881,2,6.0,-9.0,-9.0,-9.0,4.0,1217702 -3035782,1630143719,2,17,2,2,1630052881,1,6.0,-9.0,-9.0,13.0,4.0,1217702 -3035783,1630143720,2,15,2,3,1630052881,1,-9.0,-9.0,-9.0,11.0,-9.0,1217702 -3035784,1630143794,2,80,0,1,1630052882,1,6.0,-9.0,-9.0,-9.0,4.0,1217703 -3035785,1630143790,2,62,2,2,1630052882,1,6.0,-9.0,-9.0,-9.0,4.0,1217703 -3035786,1630143798,2,69,11,3,1630052882,1,1.0,32.0,1.0,-9.0,2.0,1217703 -3035787,1630143802,2,67,11,4,1630052882,1,6.0,-9.0,-9.0,-9.0,2.0,1217703 -3035788,1630143782,2,58,11,5,1630052882,2,6.0,-9.0,-9.0,-9.0,4.0,1217703 -3035789,1630143795,2,80,0,1,1630052883,1,6.0,-9.0,-9.0,-9.0,4.0,1217704 -3035790,1630143791,2,62,2,2,1630052883,1,6.0,-9.0,-9.0,-9.0,4.0,1217704 -3035791,1630143799,2,69,11,3,1630052883,1,1.0,32.0,1.0,-9.0,2.0,1217704 -3035792,1630143803,2,67,11,4,1630052883,1,6.0,-9.0,-9.0,-9.0,2.0,1217704 -3035793,1630143783,2,58,11,5,1630052883,2,6.0,-9.0,-9.0,-9.0,4.0,1217704 -3035794,1630143787,2,51,13,6,1630052883,2,6.0,-9.0,-9.0,-9.0,4.0,1217704 -3035795,1630143796,2,80,0,1,1630052884,1,6.0,-9.0,-9.0,-9.0,4.0,1217705 -3035796,1630143792,2,62,2,2,1630052884,1,6.0,-9.0,-9.0,-9.0,4.0,1217705 -3035797,1630143800,2,69,11,3,1630052884,1,1.0,32.0,1.0,-9.0,2.0,1217705 -3035798,1630143804,2,67,11,4,1630052884,1,6.0,-9.0,-9.0,-9.0,2.0,1217705 -3035799,1630143784,2,58,11,5,1630052884,2,6.0,-9.0,-9.0,-9.0,4.0,1217705 -3035800,1630143788,2,51,13,6,1630052884,2,6.0,-9.0,-9.0,-9.0,4.0,1217705 -3035801,1630143797,2,80,0,1,1630052885,1,6.0,-9.0,-9.0,-9.0,4.0,1217706 -3035802,1630143793,2,62,2,2,1630052885,1,6.0,-9.0,-9.0,-9.0,4.0,1217706 -3035803,1630143801,2,69,11,3,1630052885,1,1.0,32.0,1.0,-9.0,2.0,1217706 -3035804,1630143805,2,67,11,4,1630052885,1,6.0,-9.0,-9.0,-9.0,2.0,1217706 -3035805,1630143785,2,58,11,5,1630052885,2,6.0,-9.0,-9.0,-9.0,4.0,1217706 -3035806,1630143789,2,51,13,6,1630052885,2,6.0,-9.0,-9.0,-9.0,4.0,1217706 -3035807,1630143575,2,44,0,1,1630052886,2,3.0,40.0,4.0,-9.0,4.0,1217707 -3035808,1630143576,2,59,6,2,1630052886,1,6.0,-9.0,-9.0,-9.0,4.0,1217707 -3035809,1630143574,2,68,11,3,1630052886,2,6.0,-9.0,-9.0,-9.0,4.0,1217707 -3035810,1630143577,2,45,13,4,1630052886,1,6.0,-9.0,-9.0,-9.0,4.0,1217707 -3035811,1630143700,2,38,0,1,1630052887,2,1.0,70.0,1.0,-9.0,4.0,1217708 -3035812,1630143702,2,19,2,2,1630052887,2,1.0,24.0,3.0,15.0,4.0,1217708 -3035813,1630143704,2,14,2,3,1630052887,1,-9.0,-9.0,-9.0,11.0,-9.0,1217708 -3035814,1630143710,2,5,2,4,1630052887,2,-9.0,-9.0,-9.0,1.0,-9.0,1217708 -3035815,1630143706,2,18,5,5,1630052887,1,6.0,-9.0,-9.0,12.0,4.0,1217708 -3035816,1630143708,2,60,6,6,1630052887,1,6.0,-9.0,-9.0,-9.0,4.0,1217708 -3035817,1630143692,2,69,0,1,1630052888,1,6.0,-9.0,-9.0,-9.0,2.0,1217709 -3035818,1630143691,2,63,1,2,1630052888,2,6.0,-9.0,-9.0,-9.0,4.0,1217709 -3035819,1630143860,2,25,0,1,1630052889,2,3.0,-9.0,-9.0,-9.0,4.0,1217710 -3035820,1630143861,2,6,2,2,1630052889,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217710 -3035821,1630143864,2,5,2,3,1630052889,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217710 -3035822,1630143865,2,4,2,4,1630052889,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217710 -3035823,1630143862,2,3,2,5,1630052889,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217710 -3035824,1630143863,2,2,2,6,1630052889,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217710 -3035825,1630143598,2,68,0,1,1630052890,2,6.0,40.0,2.0,-9.0,4.0,1217711 -3035826,1630143599,2,42,2,2,1630052890,1,6.0,-9.0,-9.0,-9.0,4.0,1217711 -3035827,1630143619,2,65,0,1,1630052891,2,6.0,-9.0,-9.0,-9.0,4.0,1217712 -3035828,1630143625,2,66,1,2,1630052891,1,6.0,-9.0,-9.0,-9.0,2.0,1217712 -3035829,1630143628,2,67,5,3,1630052891,1,6.0,-9.0,-9.0,-9.0,2.0,1217712 -3035830,1630143622,2,57,5,4,1630052891,1,6.0,-9.0,-9.0,-9.0,4.0,1217712 -3035831,1630143631,2,67,0,1,1630052892,2,6.0,-9.0,-9.0,-9.0,4.0,1217713 -3035832,1630143632,2,61,15,2,1630052892,1,6.0,-9.0,-9.0,-9.0,4.0,1217713 -3035833,1630143839,2,44,0,1,1630052893,2,1.0,15.0,1.0,-9.0,4.0,1217714 -3035834,1630143847,2,31,2,2,1630052893,1,3.0,-9.0,-9.0,-9.0,4.0,1217714 -3035835,1630143851,2,24,2,3,1630052893,1,6.0,-9.0,-9.0,12.0,4.0,1217714 -3035836,1630143843,2,18,2,4,1630052893,2,6.0,-9.0,-9.0,14.0,4.0,1217714 -3035837,1630143855,2,13,2,5,1630052893,2,-9.0,-9.0,-9.0,10.0,-9.0,1217714 -3035838,1630143859,2,9,2,6,1630052893,2,-9.0,-9.0,-9.0,6.0,-9.0,1217714 -3035839,1630143833,2,60,0,1,1630052894,2,6.0,-9.0,-9.0,-9.0,4.0,1217715 -3035840,1630143834,2,64,5,2,1630052894,1,6.0,-9.0,-9.0,-9.0,2.0,1217715 -3035841,1630143835,2,61,11,3,1630052894,1,6.0,-9.0,-9.0,-9.0,4.0,1217715 -3035842,1630143761,2,26,0,1,1630052895,2,1.0,40.0,1.0,-9.0,4.0,1217716 -3035843,1630143762,2,8,2,2,1630052895,1,-9.0,-9.0,-9.0,3.0,-9.0,1217716 -3035844,1630143766,2,6,3,3,1630052895,2,-9.0,-9.0,-9.0,3.0,-9.0,1217716 -3035845,1630143763,2,2,3,4,1630052895,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217716 -3035846,1630143764,2,19,5,5,1630052895,1,6.0,-9.0,-9.0,-9.0,4.0,1217716 -3035847,1630143765,2,26,13,6,1630052895,1,1.0,40.0,1.0,-9.0,4.0,1217716 -3035848,1630143653,2,76,0,1,1630052896,2,6.0,-9.0,-9.0,-9.0,4.0,1217717 -3035849,1630143654,2,54,2,2,1630052896,2,6.0,-9.0,-9.0,15.0,4.0,1217717 -3035850,1630143655,2,45,2,3,1630052896,2,1.0,40.0,1.0,-9.0,4.0,1217717 -3035851,1630143579,2,87,0,1,1630052897,2,6.0,-9.0,-9.0,-9.0,4.0,1217718 -3035852,1630143581,2,50,2,2,1630052897,1,1.0,40.0,1.0,-9.0,4.0,1217718 -3035853,1630143583,2,27,7,3,1630052897,1,1.0,40.0,2.0,-9.0,4.0,1217718 -3035854,1630143614,2,75,0,1,1630052898,2,6.0,-9.0,-9.0,-9.0,4.0,1217719 -3035855,1630143616,2,43,2,2,1630052898,1,6.0,-9.0,-9.0,-9.0,4.0,1217719 -3035856,1630143603,2,85,0,1,1630052899,2,6.0,-9.0,-9.0,-9.0,4.0,1217720 -3035857,1630143609,2,75,11,2,1630052899,1,6.0,-9.0,-9.0,-9.0,2.0,1217720 -3035858,1630143612,2,67,11,3,1630052899,1,1.0,40.0,1.0,-9.0,4.0,1217720 -3035859,1630143606,2,58,11,4,1630052899,1,6.0,-9.0,-9.0,-9.0,2.0,1217720 -3035860,1630143772,2,38,0,1,1630052900,2,1.0,40.0,1.0,-9.0,4.0,1217721 -3035861,1630143775,2,4,2,2,1630052900,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217721 -3035862,1630143778,2,2,2,3,1630052900,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217721 -3035863,1630143781,2,40,13,4,1630052900,1,6.0,-9.0,-9.0,-9.0,4.0,1217721 -3035864,1630143630,2,68,0,1,1630052901,1,6.0,-9.0,-9.0,-9.0,2.0,1217722 -3035865,1630143629,2,67,1,2,1630052901,2,6.0,-9.0,-9.0,-9.0,4.0,1217722 -3035866,1630143753,2,59,0,1,1630052902,2,6.0,-9.0,-9.0,-9.0,2.0,1217723 -3035867,1630143757,2,29,4,2,1630052902,1,6.0,-9.0,-9.0,-9.0,4.0,1217723 -3035868,1630143755,2,57,13,3,1630052902,2,1.0,40.0,1.0,-9.0,2.0,1217723 -3035869,1630143662,2,65,0,1,1630052903,2,6.0,-9.0,-9.0,-9.0,4.0,1217724 -3035870,1630143666,2,60,1,2,1630052903,1,6.0,-9.0,-9.0,-9.0,4.0,1217724 -3035871,1630143667,2,21,7,3,1630052903,1,6.0,-9.0,-9.0,15.0,4.0,1217724 -3035872,1630143663,2,17,7,4,1630052903,1,6.0,-9.0,-9.0,14.0,4.0,1217724 -3035873,1630143664,2,16,7,5,1630052903,1,6.0,-9.0,-9.0,13.0,-9.0,1217724 -3035874,1630143665,2,14,7,6,1630052903,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217724 -3035875,1630143687,2,30,0,1,1630052904,2,1.0,40.0,1.0,-9.0,4.0,1217725 -3035876,1630143689,2,12,2,2,1630052904,1,-9.0,-9.0,-9.0,7.0,-9.0,1217725 -3035877,1630143690,2,6,2,3,1630052904,1,-9.0,-9.0,-9.0,2.0,-9.0,1217725 -3035878,1630143688,2,54,6,4,1630052904,2,6.0,-9.0,-9.0,-9.0,4.0,1217725 -3035879,1630143584,2,93,0,1,1630052905,2,6.0,-9.0,-9.0,-9.0,4.0,1217726 -3035880,1630143585,2,76,5,2,1630052905,2,6.0,-9.0,-9.0,-9.0,4.0,1217726 -3035881,1630143586,2,47,10,3,1630052905,2,1.0,40.0,1.0,-9.0,4.0,1217726 -3035882,1630143867,2,51,0,1,1630052906,1,1.0,45.0,1.0,16.0,3.0,1217727 -3035883,1630143868,2,19,2,2,1630052906,1,6.0,-9.0,-9.0,15.0,4.0,1217727 -3035884,1630143869,2,16,2,3,1630052906,2,6.0,16.0,6.0,13.0,-9.0,1217727 -3035885,1630143866,2,14,2,4,1630052906,1,-9.0,-9.0,-9.0,11.0,-9.0,1217727 -3035886,1630143821,2,26,0,1,1630052907,2,3.0,-9.0,-9.0,-9.0,4.0,1217728 -3035887,1630143823,2,7,2,2,1630052907,2,-9.0,-9.0,-9.0,4.0,-9.0,1217728 -3035888,1630143824,2,11,5,3,1630052907,2,-9.0,-9.0,-9.0,6.0,-9.0,1217728 -3035889,1630143822,2,26,13,4,1630052907,1,1.0,40.0,1.0,-9.0,4.0,1217728 -3035890,1630143596,2,48,0,1,1630052908,2,1.0,35.0,4.0,16.0,4.0,1217729 -3035891,1630143595,2,72,6,2,1630052908,2,6.0,-9.0,-9.0,-9.0,4.0,1217729 -3035892,1630143597,2,23,10,3,1630052908,2,6.0,-9.0,-9.0,-9.0,4.0,1217729 -3035893,1630143634,2,87,0,1,1630052909,2,6.0,-9.0,-9.0,-9.0,4.0,1217730 -3035894,1630143636,2,60,2,2,1630052909,2,6.0,-9.0,-9.0,-9.0,4.0,1217730 -3035895,1630143638,2,56,2,3,1630052909,1,6.0,-9.0,-9.0,-9.0,4.0,1217730 -3035896,1630143668,2,48,0,1,1630052910,2,6.0,-9.0,-9.0,-9.0,4.0,1217731 -3035897,1630143669,2,60,5,2,1630052910,1,6.0,-9.0,-9.0,-9.0,4.0,1217731 -3035898,1630143738,2,56,0,1,1630052911,1,1.0,55.0,1.0,-9.0,4.0,1217732 -3035899,1630143736,2,51,1,2,1630052911,2,1.0,50.0,1.0,-9.0,4.0,1217732 -3035900,1630143737,2,19,2,3,1630052911,2,6.0,-9.0,-9.0,-9.0,4.0,1217732 -3035901,1630143739,2,7,2,4,1630052911,2,-9.0,-9.0,-9.0,4.0,-9.0,1217732 -3035902,1630143672,2,53,0,1,1630052912,1,3.0,25.0,6.0,-9.0,4.0,1217733 -3035903,1630143670,2,49,1,2,1630052912,2,6.0,-9.0,-9.0,-9.0,4.0,1217733 -3035904,1630143673,2,18,2,3,1630052912,1,6.0,-9.0,-9.0,15.0,4.0,1217733 -3035905,1630143671,2,27,4,4,1630052912,2,3.0,-9.0,-9.0,15.0,4.0,1217733 -3035906,1630143674,2,7,7,5,1630052912,2,-9.0,-9.0,-9.0,5.0,-9.0,1217733 -3035907,1630143675,2,4,7,6,1630052912,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217733 -3035908,1630143590,2,74,0,1,1630052913,1,6.0,40.0,6.0,-9.0,2.0,1217734 -3035909,1630143588,2,45,2,2,1630052913,2,1.0,40.0,1.0,-9.0,4.0,1217734 -3035910,1630143589,2,24,7,3,1630052913,2,3.0,25.0,6.0,15.0,4.0,1217734 -3035911,1630143758,2,31,0,1,1630052914,2,3.0,30.0,5.0,15.0,4.0,1217735 -3035912,1630143759,2,3,2,2,1630052914,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217735 -3035913,1630143760,2,1,2,3,1630052914,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217735 -3035914,1630143650,2,82,0,1,1630052915,2,6.0,-9.0,-9.0,-9.0,4.0,1217736 -3035915,1630143651,2,49,2,2,1630052915,2,1.0,30.0,1.0,-9.0,4.0,1217736 -3035916,1630143652,2,21,7,3,1630052915,1,3.0,16.0,5.0,-9.0,4.0,1217736 -3035917,1630143591,2,68,0,1,1630052916,2,6.0,-9.0,-9.0,-9.0,4.0,1217737 -3035918,1630143592,2,44,2,2,1630052916,2,1.0,40.0,1.0,-9.0,4.0,1217737 -3035919,1630143593,2,42,2,3,1630052916,1,2.0,40.0,1.0,-9.0,4.0,1217737 -3035920,1630143594,2,73,15,4,1630052916,1,6.0,-9.0,-9.0,-9.0,4.0,1217737 -3035921,1630143693,2,55,0,1,1630052917,2,6.0,-9.0,-9.0,-9.0,4.0,1217738 -3035922,1630143696,2,49,1,2,1630052917,1,1.0,40.0,1.0,-9.0,4.0,1217738 -3035923,1630143694,2,18,2,3,1630052917,2,6.0,-9.0,-9.0,15.0,4.0,1217738 -3035924,1630143697,2,16,2,4,1630052917,2,6.0,-9.0,-9.0,13.0,-9.0,1217738 -3035925,1630143698,2,14,2,5,1630052917,2,-9.0,-9.0,-9.0,11.0,-9.0,1217738 -3035926,1630143695,2,10,2,6,1630052917,1,-9.0,-9.0,-9.0,8.0,-9.0,1217738 -3035927,1630143767,2,46,0,1,1630052918,2,6.0,-9.0,-9.0,-9.0,4.0,1217739 -3035928,1630143769,2,84,1,2,1630052918,1,6.0,-9.0,-9.0,-9.0,4.0,1217739 -3035929,1630143724,2,53,0,1,1630052919,2,1.0,37.0,1.0,-9.0,4.0,1217740 -3035930,1630143725,2,24,2,2,1630052919,2,6.0,6.0,6.0,15.0,4.0,1217740 -3035931,1630143726,2,23,2,3,1630052919,1,6.0,-9.0,-9.0,15.0,4.0,1217740 -3035932,1630143727,2,21,2,4,1630052919,1,6.0,-9.0,-9.0,-9.0,4.0,1217740 -3035933,1630143732,2,37,0,1,1630052920,2,3.0,-9.0,-9.0,-9.0,4.0,1217741 -3035934,1630143733,2,14,2,2,1630052920,1,-9.0,-9.0,-9.0,11.0,-9.0,1217741 -3035935,1630143735,2,5,2,3,1630052920,2,-9.0,-9.0,-9.0,2.0,-9.0,1217741 -3035936,1630143734,2,2,2,4,1630052920,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217741 -3035937,1630143877,2,73,0,1,1630052921,1,6.0,-9.0,-9.0,-9.0,4.0,1217742 -3035938,1630143875,2,37,2,2,1630052921,1,1.0,40.0,1.0,-9.0,4.0,1217742 -3035939,1630143876,2,11,7,3,1630052921,2,-9.0,-9.0,-9.0,7.0,-9.0,1217742 -3035940,1630143825,2,38,0,1,1630052922,2,3.0,-9.0,-9.0,-9.0,4.0,1217743 -3035941,1630143827,2,18,2,2,1630052922,1,1.0,8.0,4.0,14.0,4.0,1217743 -3035942,1630143828,2,11,2,3,1630052922,2,-9.0,-9.0,-9.0,7.0,-9.0,1217743 -3035943,1630143826,2,64,6,4,1630052922,2,6.0,-9.0,-9.0,-9.0,4.0,1217743 -3035944,1630143818,2,39,0,1,1630052923,2,6.0,-9.0,-9.0,-9.0,4.0,1217744 -3035945,1630143819,2,22,2,2,1630052923,2,1.0,40.0,1.0,-9.0,4.0,1217744 -3035946,1630143820,2,9,2,3,1630052923,1,-9.0,-9.0,-9.0,4.0,-9.0,1217744 -3035947,1630143657,2,75,0,1,1630052924,1,1.0,27.0,4.0,-9.0,2.0,1217745 -3035948,1630143656,2,75,1,2,1630052924,2,6.0,-9.0,-9.0,-9.0,4.0,1217745 -3035949,1630143874,2,88,0,1,1630052925,1,6.0,-9.0,-9.0,-9.0,4.0,1217746 -3035950,1630143872,2,46,2,2,1630052925,1,1.0,40.0,1.0,-9.0,4.0,1217746 -3035951,1630143873,2,36,2,3,1630052925,1,3.0,-9.0,-9.0,-9.0,4.0,1217746 -3035952,1630143541,2,73,0,1,1630052926,1,6.0,-9.0,-9.0,-9.0,2.0,1217747 -3035953,1630143538,2,74,1,2,1630052926,2,6.0,-9.0,-9.0,-9.0,4.0,1217747 -3035954,1630143540,2,18,7,3,1630052926,1,6.0,-9.0,-9.0,15.0,4.0,1217747 -3035955,1630143539,2,12,7,4,1630052926,1,-9.0,-9.0,-9.0,7.0,-9.0,1217747 -3035956,1630143715,2,50,0,1,1630052927,2,1.0,55.0,1.0,-9.0,4.0,1217748 -3035957,1630143716,2,8,2,2,1630052927,1,-9.0,-9.0,-9.0,4.0,-9.0,1217748 -3035958,1630143717,2,60,15,3,1630052927,1,1.0,45.0,1.0,-9.0,4.0,1217748 -3035959,1630143870,2,32,0,1,1630052928,1,6.0,56.0,1.0,-9.0,4.0,1217749 -3035960,1630143871,2,29,12,2,1630052928,1,6.0,-9.0,-9.0,-9.0,4.0,1217749 -3035961,1630144240,2,43,0,1,1630052929,2,1.0,30.0,1.0,-9.0,4.0,1217750 -3035962,1630144241,2,50,1,2,1630052929,1,6.0,-9.0,-9.0,-9.0,4.0,1217750 -3035963,1630144243,2,16,2,3,1630052929,2,1.0,10.0,6.0,12.0,-9.0,1217750 -3035964,1630144242,2,31,4,4,1630052929,1,1.0,32.0,1.0,-9.0,4.0,1217750 -3035965,1630144441,2,37,0,1,1630052930,2,1.0,40.0,1.0,-9.0,4.0,1217751 -3035966,1630144443,2,42,1,2,1630052930,1,3.0,-9.0,-9.0,-9.0,4.0,1217751 -3035967,1630144444,2,18,2,3,1630052930,1,6.0,-9.0,-9.0,-9.0,4.0,1217751 -3035968,1630144445,2,12,2,4,1630052930,2,-9.0,-9.0,-9.0,10.0,-9.0,1217751 -3035969,1630144442,2,6,2,5,1630052930,1,-9.0,-9.0,-9.0,3.0,-9.0,1217751 -3035970,1630144085,2,36,0,1,1630052931,2,6.0,-9.0,-9.0,-9.0,4.0,1217752 -3035971,1630144091,2,11,2,2,1630052931,2,-9.0,-9.0,-9.0,7.0,-9.0,1217752 -3035972,1630144089,2,6,2,3,1630052931,1,-9.0,-9.0,-9.0,2.0,-9.0,1217752 -3035973,1630144087,2,37,5,4,1630052931,2,2.0,35.0,1.0,-9.0,4.0,1217752 -3035974,1630144086,2,36,0,1,1630052932,2,6.0,-9.0,-9.0,-9.0,4.0,1217753 -3035975,1630144092,2,11,2,2,1630052932,2,-9.0,-9.0,-9.0,7.0,-9.0,1217753 -3035976,1630144090,2,6,2,3,1630052932,1,-9.0,-9.0,-9.0,2.0,-9.0,1217753 -3035977,1630144088,2,37,5,4,1630052932,2,2.0,35.0,1.0,-9.0,4.0,1217753 -3035978,1630144360,2,40,0,1,1630052933,1,1.0,40.0,1.0,-9.0,4.0,1217754 -3035979,1630144354,2,38,1,2,1630052933,2,6.0,-9.0,-9.0,-9.0,4.0,1217754 -3035980,1630144356,2,18,2,3,1630052933,2,6.0,-9.0,-9.0,14.0,4.0,1217754 -3035981,1630144362,2,17,2,4,1630052933,2,6.0,-9.0,-9.0,-9.0,4.0,1217754 -3035982,1630144358,2,12,2,5,1630052933,1,-9.0,-9.0,-9.0,9.0,-9.0,1217754 -3035983,1630144364,2,3,2,6,1630052933,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217754 -3035984,1630144361,2,40,0,1,1630052934,1,1.0,40.0,1.0,-9.0,4.0,1217755 -3035985,1630144355,2,38,1,2,1630052934,2,6.0,-9.0,-9.0,-9.0,4.0,1217755 -3035986,1630144357,2,18,2,3,1630052934,2,6.0,-9.0,-9.0,14.0,4.0,1217755 -3035987,1630144363,2,17,2,4,1630052934,2,6.0,-9.0,-9.0,-9.0,4.0,1217755 -3035988,1630144359,2,12,2,5,1630052934,1,-9.0,-9.0,-9.0,9.0,-9.0,1217755 -3035989,1630144365,2,3,2,6,1630052934,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217755 -3035990,1630144204,2,38,0,1,1630052935,2,3.0,25.0,6.0,16.0,4.0,1217756 -3035991,1630144205,2,37,1,2,1630052935,1,1.0,50.0,1.0,15.0,4.0,1217756 -3035992,1630144206,2,0,2,3,1630052935,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217756 -3035993,1630144172,2,39,0,1,1630052936,1,1.0,40.0,1.0,-9.0,4.0,1217757 -3035994,1630144174,2,13,2,2,1630052936,2,-9.0,-9.0,-9.0,9.0,-9.0,1217757 -3035995,1630144166,2,19,4,3,1630052936,2,3.0,-9.0,-9.0,-9.0,4.0,1217757 -3035996,1630144170,2,15,4,4,1630052936,1,-9.0,-9.0,-9.0,13.0,-9.0,1217757 -3035997,1630144168,2,39,13,5,1630052936,2,1.0,21.0,1.0,-9.0,4.0,1217757 -3035998,1630144420,2,44,0,1,1630052937,1,6.0,40.0,2.0,-9.0,4.0,1217758 -3035999,1630144416,2,12,2,2,1630052937,1,-9.0,-9.0,-9.0,9.0,-9.0,1217758 -3036000,1630144418,2,9,2,3,1630052937,1,-9.0,-9.0,-9.0,6.0,-9.0,1217758 -3036001,1630144414,2,41,13,4,1630052937,2,1.0,40.0,1.0,-9.0,4.0,1217758 -3036002,1630144421,2,44,0,1,1630052938,1,6.0,40.0,2.0,-9.0,4.0,1217759 -3036003,1630144417,2,12,2,2,1630052938,1,-9.0,-9.0,-9.0,9.0,-9.0,1217759 -3036004,1630144419,2,9,2,3,1630052938,1,-9.0,-9.0,-9.0,6.0,-9.0,1217759 -3036005,1630144415,2,41,13,4,1630052938,2,1.0,40.0,1.0,-9.0,4.0,1217759 -3036006,1630144595,2,42,0,1,1630052939,1,1.0,70.0,1.0,-9.0,4.0,1217760 -3036007,1630144596,2,41,15,2,1630052939,1,6.0,-9.0,-9.0,-9.0,4.0,1217760 -3036008,1630144388,2,44,0,1,1630052940,2,1.0,43.0,1.0,-9.0,4.0,1217761 -3036009,1630144392,2,48,1,2,1630052940,1,1.0,30.0,4.0,-9.0,4.0,1217761 -3036010,1630144394,2,21,2,3,1630052940,1,6.0,-9.0,-9.0,-9.0,4.0,1217761 -3036011,1630144390,2,17,2,4,1630052940,1,6.0,-9.0,-9.0,14.0,4.0,1217761 -3036012,1630144500,2,35,0,1,1630052941,2,6.0,-9.0,-9.0,-9.0,4.0,1217762 -3036013,1630144502,2,12,2,2,1630052941,2,-9.0,-9.0,-9.0,8.0,-9.0,1217762 -3036014,1630144501,2,9,2,3,1630052941,1,-9.0,-9.0,-9.0,5.0,-9.0,1217762 -3036015,1630144503,2,5,2,4,1630052941,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217762 -3036016,1630144236,2,36,0,1,1630052942,2,6.0,-9.0,-9.0,15.0,4.0,1217763 -3036017,1630144238,2,17,2,2,1630052942,2,6.0,-9.0,-9.0,14.0,4.0,1217763 -3036018,1630144237,2,13,2,3,1630052942,1,-9.0,-9.0,-9.0,9.0,-9.0,1217763 -3036019,1630144239,2,11,2,4,1630052942,2,-9.0,-9.0,-9.0,7.0,-9.0,1217763 -3036020,1630144226,2,41,0,1,1630052943,2,1.0,40.0,1.0,-9.0,4.0,1217764 -3036021,1630144234,2,42,1,2,1630052943,1,3.0,-9.0,-9.0,-9.0,4.0,1217764 -3036022,1630144228,2,11,2,3,1630052943,1,-9.0,-9.0,-9.0,10.0,-9.0,1217764 -3036023,1630144230,2,10,2,4,1630052943,1,-9.0,-9.0,-9.0,7.0,-9.0,1217764 -3036024,1630144232,2,8,2,5,1630052943,1,-9.0,-9.0,-9.0,5.0,-9.0,1217764 -3036025,1630144067,2,42,0,1,1630052944,2,1.0,40.0,1.0,-9.0,4.0,1217765 -3036026,1630144073,2,18,2,2,1630052944,1,6.0,-9.0,-9.0,14.0,4.0,1217765 -3036027,1630144082,2,7,2,3,1630052944,2,-9.0,-9.0,-9.0,4.0,-9.0,1217765 -3036028,1630144076,2,38,5,4,1630052944,1,6.0,-9.0,-9.0,-9.0,4.0,1217765 -3036029,1630144070,2,61,6,5,1630052944,2,6.0,-9.0,-9.0,-9.0,4.0,1217765 -3036030,1630144079,2,57,15,6,1630052944,1,6.0,-9.0,-9.0,-9.0,4.0,1217765 -3036031,1630144068,2,42,0,1,1630052945,2,1.0,40.0,1.0,-9.0,4.0,1217766 -3036032,1630144074,2,18,2,2,1630052945,1,6.0,-9.0,-9.0,14.0,4.0,1217766 -3036033,1630144083,2,7,2,3,1630052945,2,-9.0,-9.0,-9.0,4.0,-9.0,1217766 -3036034,1630144077,2,38,5,4,1630052945,1,6.0,-9.0,-9.0,-9.0,4.0,1217766 -3036035,1630144071,2,61,6,5,1630052945,2,6.0,-9.0,-9.0,-9.0,4.0,1217766 -3036036,1630144080,2,57,15,6,1630052945,1,6.0,-9.0,-9.0,-9.0,4.0,1217766 -3036037,1630144031,2,44,0,1,1630052946,2,1.0,29.0,1.0,-9.0,4.0,1217767 -3036038,1630144030,1,41,1,2,1630052946,1,3.0,-9.0,-9.0,-9.0,4.0,1217767 -3036039,1630144032,4,16,2,3,1630052946,2,6.0,-9.0,-9.0,13.0,-9.0,1217767 -3036040,1630143887,2,73,0,1,1630052947,1,6.0,-9.0,-9.0,-9.0,2.0,1217768 -3036041,1630143881,2,74,1,2,1630052947,2,6.0,-9.0,-9.0,-9.0,4.0,1217768 -3036042,1630143885,2,18,7,3,1630052947,1,6.0,-9.0,-9.0,15.0,4.0,1217768 -3036043,1630143883,2,12,7,4,1630052947,1,-9.0,-9.0,-9.0,7.0,-9.0,1217768 -3036044,1630143944,2,76,0,1,1630052948,1,6.0,-9.0,-9.0,-9.0,2.0,1217769 -3036045,1630143943,2,73,1,2,1630052948,2,6.0,-9.0,-9.0,-9.0,4.0,1217769 -3036046,1630143986,2,80,0,1,1630052949,2,6.0,-9.0,-9.0,-9.0,4.0,1217770 -3036047,1630143988,2,27,7,2,1630052949,1,3.0,40.0,6.0,-9.0,4.0,1217770 -3036048,1630143989,2,25,7,3,1630052949,1,3.0,-9.0,-9.0,-9.0,4.0,1217770 -3036049,1630143987,2,57,10,4,1630052949,2,1.0,35.0,1.0,-9.0,4.0,1217770 -3036050,1630144262,2,66,0,1,1630052950,1,6.0,-9.0,-9.0,-9.0,4.0,1217771 -3036051,1630144259,2,46,2,2,1630052950,1,3.0,-9.0,-9.0,-9.0,4.0,1217771 -3036052,1630144253,2,20,7,3,1630052950,2,3.0,-9.0,-9.0,-9.0,4.0,1217771 -3036053,1630144256,2,19,7,4,1630052950,2,1.0,40.0,1.0,-9.0,4.0,1217771 -3036054,1630144263,2,66,0,1,1630052951,1,6.0,-9.0,-9.0,-9.0,4.0,1217772 -3036055,1630144260,2,46,2,2,1630052951,1,3.0,-9.0,-9.0,-9.0,4.0,1217772 -3036056,1630144254,2,20,7,3,1630052951,2,3.0,-9.0,-9.0,-9.0,4.0,1217772 -3036057,1630144257,2,19,7,4,1630052951,2,1.0,40.0,1.0,-9.0,4.0,1217772 -3036058,1630143926,2,88,0,1,1630052952,2,6.0,-9.0,-9.0,-9.0,4.0,1217773 -3036059,1630143928,2,24,10,2,1630052952,1,1.0,40.0,1.0,-9.0,3.0,1217773 -3036060,1630144615,2,77,0,1,1630052953,1,6.0,-9.0,-9.0,-9.0,4.0,1217774 -3036061,1630144627,2,83,0,1,1630052954,1,6.0,-9.0,-9.0,-9.0,4.0,1217775 -3036062,1630143979,2,75,0,1,1630052955,2,6.0,-9.0,-9.0,-9.0,4.0,1217776 -3036063,1630144619,2,80,0,1,1630052956,1,6.0,-9.0,-9.0,-9.0,2.0,1217777 -3036064,1630143980,2,90,0,1,1630052957,2,6.0,-9.0,-9.0,-9.0,4.0,1217778 -3036065,1630143981,2,41,10,2,1630052957,1,6.0,-9.0,-9.0,-9.0,4.0,1217778 -3036066,1630143908,2,76,0,1,1630052958,2,6.0,-9.0,-9.0,-9.0,4.0,1217779 -3036067,1630143909,2,42,2,2,1630052958,1,3.0,-9.0,-9.0,-9.0,4.0,1217779 -3036068,1630144430,2,29,0,1,1630052959,2,6.0,-9.0,-9.0,-9.0,4.0,1217780 -3036069,1630144431,2,14,2,2,1630052959,1,-9.0,-9.0,-9.0,9.0,-9.0,1217780 -3036070,1630144432,2,4,2,3,1630052959,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217780 -3036071,1630144433,2,2,2,4,1630052959,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217780 -3036072,1630144434,2,45,6,5,1630052959,1,3.0,-9.0,-9.0,-9.0,4.0,1217780 -3036073,1630144468,2,30,0,1,1630052960,2,3.0,-9.0,-9.0,-9.0,4.0,1217781 -3036074,1630144470,2,9,2,2,1630052960,2,-9.0,-9.0,-9.0,5.0,-9.0,1217781 -3036075,1630144471,2,8,2,3,1630052960,2,-9.0,-9.0,-9.0,5.0,-9.0,1217781 -3036076,1630144469,2,5,2,4,1630052960,1,-9.0,-9.0,-9.0,2.0,-9.0,1217781 -3036077,1630144269,2,37,0,1,1630052961,2,6.0,-9.0,-9.0,-9.0,4.0,1217782 -3036078,1630144272,2,40,1,2,1630052961,1,6.0,-9.0,-9.0,-9.0,4.0,1217782 -3036079,1630144270,2,8,2,3,1630052961,1,-9.0,-9.0,-9.0,3.0,-9.0,1217782 -3036080,1630144271,2,5,2,4,1630052961,1,-9.0,-9.0,-9.0,2.0,-9.0,1217782 -3036081,1630144605,2,39,0,1,1630052962,1,6.0,-9.0,-9.0,-9.0,4.0,1217783 -3036082,1630144338,2,27,0,1,1630052963,1,1.0,60.0,1.0,-9.0,4.0,1217784 -3036083,1630144332,2,1,2,2,1630052963,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217784 -3036084,1630144335,2,4,4,3,1630052963,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217784 -3036085,1630144329,2,20,13,4,1630052963,2,6.0,-9.0,-9.0,-9.0,4.0,1217784 -3036086,1630144339,2,27,0,1,1630052964,1,1.0,60.0,1.0,-9.0,4.0,1217785 -3036087,1630144333,2,1,2,2,1630052964,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217785 -3036088,1630144336,2,4,4,3,1630052964,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217785 -3036089,1630144330,2,20,13,4,1630052964,2,6.0,-9.0,-9.0,-9.0,4.0,1217785 -3036090,1630144340,2,27,0,1,1630052965,1,1.0,60.0,1.0,-9.0,4.0,1217786 -3036091,1630144334,2,1,2,2,1630052965,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217786 -3036092,1630144337,2,4,4,3,1630052965,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217786 -3036093,1630144331,2,20,13,4,1630052965,2,6.0,-9.0,-9.0,-9.0,4.0,1217786 -3036094,1630144483,2,50,0,1,1630052966,2,6.0,40.0,1.0,-9.0,4.0,1217787 -3036095,1630144487,2,53,1,2,1630052966,1,6.0,-9.0,-9.0,-9.0,4.0,1217787 -3036096,1630144489,2,26,2,3,1630052966,1,6.0,-9.0,-9.0,-9.0,4.0,1217787 -3036097,1630144485,2,20,2,4,1630052966,2,1.0,25.0,1.0,-9.0,4.0,1217787 -3036098,1630144554,2,47,0,1,1630052967,1,1.0,40.0,1.0,-9.0,4.0,1217788 -3036099,1630144581,2,60,0,1,1630052968,1,1.0,40.0,1.0,-9.0,4.0,1217789 -3036100,1630144597,2,48,0,1,1630052969,1,1.0,48.0,1.0,-9.0,4.0,1217790 -3036101,1630144190,2,51,0,1,1630052970,2,1.0,45.0,1.0,-9.0,4.0,1217791 -3036102,1630144191,2,20,2,2,1630052970,1,6.0,-9.0,-9.0,-9.0,4.0,1217791 -3036103,1630144438,2,60,0,1,1630052971,1,1.0,48.0,1.0,-9.0,4.0,1217792 -3036104,1630144437,2,60,1,2,1630052971,2,6.0,-9.0,-9.0,-9.0,4.0,1217792 -3036105,1630144011,2,50,0,1,1630052972,2,3.0,40.0,5.0,-9.0,4.0,1217793 -3036106,1630144012,2,50,13,2,1630052972,1,1.0,20.0,1.0,-9.0,4.0,1217793 -3036107,1630144013,2,48,15,3,1630052972,1,1.0,25.0,1.0,-9.0,4.0,1217793 -3036108,1630144010,1,47,15,4,1630052972,2,3.0,-9.0,-9.0,-9.0,4.0,1217793 -3036109,1630144020,2,54,0,1,1630052973,2,6.0,-9.0,-9.0,-9.0,4.0,1217794 -3036110,1630144022,2,25,2,2,1630052973,2,6.0,-9.0,-9.0,-9.0,4.0,1217794 -3036111,1630144024,2,51,5,3,1630052973,2,6.0,-9.0,-9.0,-9.0,4.0,1217794 -3036112,1630144018,1,54,15,4,1630052973,2,6.0,-9.0,-9.0,-9.0,4.0,1217794 -3036113,1630144523,2,47,0,1,1630052974,1,6.0,-9.0,-9.0,-9.0,4.0,1217795 -3036114,1630144517,2,17,2,2,1630052974,1,6.0,-9.0,-9.0,13.0,4.0,1217795 -3036115,1630144520,2,16,2,3,1630052974,1,6.0,-9.0,-9.0,12.0,-9.0,1217795 -3036116,1630144526,2,70,15,4,1630052974,1,6.0,-9.0,-9.0,-9.0,2.0,1217795 -3036117,1630144524,2,47,0,1,1630052975,1,6.0,-9.0,-9.0,-9.0,4.0,1217796 -3036118,1630144518,2,17,2,2,1630052975,1,6.0,-9.0,-9.0,13.0,4.0,1217796 -3036119,1630144521,2,16,2,3,1630052975,1,6.0,-9.0,-9.0,12.0,-9.0,1217796 -3036120,1630144527,2,70,15,4,1630052975,1,6.0,-9.0,-9.0,-9.0,2.0,1217796 -3036121,1630144406,2,47,0,1,1630052976,2,3.0,-9.0,-9.0,-9.0,4.0,1217797 -3036122,1630144410,2,27,2,2,1630052976,1,3.0,-9.0,-9.0,-9.0,4.0,1217797 -3036123,1630144408,2,16,2,3,1630052976,1,6.0,-9.0,-9.0,13.0,-9.0,1217797 -3036124,1630144412,2,38,15,4,1630052976,1,6.0,-9.0,-9.0,-9.0,4.0,1217797 -3036125,1630144561,2,62,0,1,1630052977,1,6.0,30.0,4.0,-9.0,4.0,1217798 -3036126,1630144580,2,64,0,1,1630052978,1,6.0,-9.0,-9.0,-9.0,2.0,1217799 -3036127,1630144553,2,49,0,1,1630052979,1,6.0,-9.0,-9.0,-9.0,4.0,1217800 -3036128,1630144562,2,56,0,1,1630052980,1,6.0,-9.0,-9.0,-9.0,4.0,1217801 -3036129,1630144594,2,59,0,1,1630052981,1,6.0,-9.0,-9.0,-9.0,4.0,1217802 -3036130,1630144566,2,53,0,1,1630052982,1,6.0,-9.0,-9.0,-9.0,4.0,1217803 -3036131,1630144155,2,53,0,1,1630052983,2,6.0,-9.0,-9.0,-9.0,4.0,1217804 -3036132,1630144558,2,58,0,1,1630052984,1,6.0,-9.0,-9.0,-9.0,4.0,1217805 -3036133,1630144538,2,64,0,1,1630052985,1,6.0,-9.0,-9.0,-9.0,2.0,1217806 -3036134,1630144567,2,53,0,1,1630052986,1,6.0,-9.0,-9.0,-9.0,4.0,1217807 -3036135,1630144585,2,64,0,1,1630052987,1,6.0,-9.0,-9.0,-9.0,2.0,1217808 -3036136,1630144535,2,53,0,1,1630052988,1,6.0,-9.0,-9.0,-9.0,4.0,1217809 -3036137,1630144547,2,54,0,1,1630052989,1,6.0,-9.0,-9.0,-9.0,4.0,1217810 -3036138,1630144555,2,57,0,1,1630052990,1,6.0,-9.0,-9.0,-9.0,2.0,1217811 -3036139,1630144550,2,51,0,1,1630052991,1,6.0,-9.0,-9.0,-9.0,2.0,1217812 -3036140,1630144582,2,61,0,1,1630052992,1,6.0,-9.0,-9.0,-9.0,4.0,1217813 -3036141,1630144546,2,58,0,1,1630052993,1,6.0,-9.0,-9.0,-9.0,4.0,1217814 -3036142,1630144557,2,60,0,1,1630052994,1,6.0,-9.0,-9.0,-9.0,4.0,1217815 -3036143,1630144583,2,61,0,1,1630052995,1,6.0,-9.0,-9.0,-9.0,4.0,1217816 -3036144,1630144574,2,51,0,1,1630052996,1,3.0,-9.0,-9.0,-9.0,4.0,1217817 -3036145,1630144576,2,62,0,1,1630052997,1,6.0,-9.0,-9.0,-9.0,4.0,1217818 -3036146,1630144563,2,56,0,1,1630052998,1,6.0,-9.0,-9.0,-9.0,2.0,1217819 -3036147,1630144587,2,54,0,1,1630052999,1,6.0,-9.0,-9.0,-9.0,4.0,1217820 -3036148,1630144165,2,53,0,1,1630053000,2,6.0,-9.0,-9.0,-9.0,4.0,1217821 -3036149,1630144552,2,53,0,1,1630053001,1,6.0,-9.0,-9.0,-9.0,4.0,1217822 -3036150,1630144604,2,52,0,1,1630053002,1,6.0,-9.0,-9.0,-9.0,4.0,1217823 -3036151,1630144052,2,57,0,1,1630053003,2,6.0,-9.0,-9.0,-9.0,4.0,1217824 -3036152,1630144056,2,23,2,2,1630053003,1,6.0,-9.0,-9.0,14.0,4.0,1217824 -3036153,1630144054,2,22,2,3,1630053003,2,6.0,20.0,6.0,-9.0,4.0,1217824 -3036154,1630144316,2,57,0,1,1630053004,2,6.0,-9.0,-9.0,-9.0,4.0,1217825 -3036155,1630144317,2,38,2,2,1630053004,1,6.0,-9.0,-9.0,-9.0,4.0,1217825 -3036156,1630144318,2,20,2,3,1630053004,1,6.0,-9.0,-9.0,-9.0,4.0,1217825 -3036157,1630144480,2,48,0,1,1630053005,2,6.0,-9.0,-9.0,-9.0,4.0,1217826 -3036158,1630144481,2,18,2,2,1630053005,2,3.0,-9.0,-9.0,13.0,4.0,1217826 -3036159,1630144482,2,10,2,3,1630053005,1,-9.0,-9.0,-9.0,5.0,-9.0,1217826 -3036160,1630144212,2,59,0,1,1630053006,2,6.0,-9.0,-9.0,-9.0,4.0,1217827 -3036161,1630144213,2,42,2,2,1630053006,1,3.0,-9.0,-9.0,-9.0,4.0,1217827 -3036162,1630144454,2,55,0,1,1630053007,2,6.0,-9.0,-9.0,-9.0,4.0,1217828 -3036163,1630144455,2,55,15,2,1630053007,1,6.0,-9.0,-9.0,-9.0,4.0,1217828 -3036164,1630144439,2,59,0,1,1630053008,2,6.0,-9.0,-9.0,-9.0,4.0,1217829 -3036165,1630144440,2,53,13,2,1630053008,1,6.0,-9.0,-9.0,-9.0,4.0,1217829 -3036166,1630144306,2,58,0,1,1630053009,2,6.0,-9.0,-9.0,-9.0,4.0,1217830 -3036167,1630144308,2,62,1,2,1630053009,1,6.0,-9.0,-9.0,-9.0,4.0,1217830 -3036168,1630144123,2,61,0,1,1630053010,1,3.0,-9.0,-9.0,-9.0,4.0,1217831 -3036169,1630144121,2,48,1,2,1630053010,2,3.0,15.0,6.0,-9.0,4.0,1217831 -3036170,1630144189,2,55,0,1,1630053011,1,6.0,-9.0,-9.0,-9.0,4.0,1217832 -3036171,1630144188,2,48,15,2,1630053011,2,6.0,-9.0,-9.0,-9.0,4.0,1217832 -3036172,1630144307,2,58,0,1,1630053012,2,6.0,-9.0,-9.0,-9.0,4.0,1217833 -3036173,1630144309,2,62,1,2,1630053012,1,6.0,-9.0,-9.0,-9.0,4.0,1217833 -3036174,1630144610,2,51,0,1,1630053013,1,6.0,16.0,5.0,-9.0,4.0,1217834 -3036175,1630144611,2,8,2,2,1630053013,2,-9.0,-9.0,-9.0,5.0,-9.0,1217834 -3036176,1630144530,2,53,0,1,1630053014,1,6.0,45.0,5.0,11.0,4.0,1217835 -3036177,1630144529,2,14,2,2,1630053014,1,-9.0,-9.0,-9.0,10.0,-9.0,1217835 -3036178,1630144311,2,55,0,1,1630053015,1,6.0,-9.0,-9.0,-9.0,3.0,1217836 -3036179,1630144310,2,55,1,2,1630053015,2,6.0,30.0,3.0,-9.0,4.0,1217836 -3036180,1630143941,2,61,0,1,1630053016,1,3.0,-9.0,-9.0,-9.0,4.0,1217837 -3036181,1630143940,2,67,1,2,1630053016,2,6.0,-9.0,-9.0,-9.0,4.0,1217837 -3036182,1630144446,2,53,0,1,1630053017,2,1.0,27.0,6.0,-9.0,4.0,1217838 -3036183,1630144452,2,13,2,2,1630053017,2,-9.0,-9.0,-9.0,10.0,-9.0,1217838 -3036184,1630144448,2,60,5,3,1630053017,1,6.0,-9.0,-9.0,-9.0,4.0,1217838 -3036185,1630144450,2,57,5,4,1630053017,1,6.0,-9.0,-9.0,-9.0,4.0,1217838 -3036186,1630144131,2,53,0,1,1630053018,2,6.0,-9.0,-9.0,-9.0,4.0,1217839 -3036187,1630144133,2,22,2,2,1630053018,2,1.0,6.0,1.0,15.0,4.0,1217839 -3036188,1630144135,2,13,2,3,1630053018,1,-9.0,-9.0,-9.0,11.0,-9.0,1217839 -3036189,1630144137,2,1,7,4,1630053018,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217839 -3036190,1630144545,2,64,0,1,1630053019,1,1.0,40.0,1.0,-9.0,4.0,1217840 -3036191,1630144559,2,47,0,1,1630053020,1,1.0,32.0,1.0,-9.0,4.0,1217841 -3036192,1630144541,2,63,0,1,1630053021,1,1.0,25.0,1.0,-9.0,4.0,1217842 -3036193,1630144578,2,48,0,1,1630053022,1,1.0,40.0,1.0,-9.0,4.0,1217843 -3036194,1630144579,2,48,0,1,1630053023,1,1.0,40.0,1.0,-9.0,4.0,1217844 -3036195,1630144556,2,55,0,1,1630053024,1,1.0,40.0,2.0,-9.0,4.0,1217845 -3036196,1630144577,2,59,0,1,1630053025,1,1.0,32.0,5.0,-9.0,4.0,1217846 -3036197,1630144609,2,58,0,1,1630053026,1,1.0,40.0,1.0,-9.0,4.0,1217847 -3036198,1630144048,2,55,0,1,1630053027,1,1.0,20.0,5.0,-9.0,4.0,1217848 -3036199,1630144050,2,19,2,2,1630053027,1,3.0,-9.0,-9.0,-9.0,4.0,1217848 -3036200,1630144046,2,51,10,3,1630053027,2,6.0,-9.0,-9.0,-9.0,4.0,1217848 -3036201,1630144209,2,46,0,1,1630053028,2,1.0,38.0,1.0,-9.0,4.0,1217849 -3036202,1630144210,2,21,2,2,1630053028,1,6.0,-9.0,-9.0,-9.0,4.0,1217849 -3036203,1630144139,2,55,0,1,1630053029,2,1.0,20.0,4.0,-9.0,4.0,1217850 -3036204,1630144140,2,23,2,2,1630053029,1,6.0,-9.0,-9.0,-9.0,4.0,1217850 -3036205,1630144065,2,55,0,1,1630053030,2,1.0,40.0,1.0,-9.0,4.0,1217851 -3036206,1630144066,2,25,2,2,1630053030,1,3.0,-9.0,-9.0,-9.0,4.0,1217851 -3036207,1630144060,2,53,0,1,1630053031,2,1.0,98.0,1.0,-9.0,4.0,1217852 -3036208,1630144061,2,58,1,2,1630053031,1,6.0,-9.0,-9.0,-9.0,4.0,1217852 -3036209,1630144617,2,70,0,1,1630053032,1,6.0,-9.0,-9.0,-9.0,4.0,1217853 -3036210,1630143942,2,72,0,1,1630053033,2,6.0,-9.0,-9.0,-9.0,4.0,1217854 -3036211,1630143901,2,87,0,1,1630053034,2,6.0,-9.0,-9.0,-9.0,4.0,1217855 -3036212,1630144624,2,70,0,1,1630053035,1,6.0,-9.0,-9.0,-9.0,3.0,1217856 -3036213,1630144613,2,69,0,1,1630053036,1,6.0,-9.0,-9.0,-9.0,4.0,1217857 -3036214,1630144626,2,76,0,1,1630053037,1,6.0,-9.0,-9.0,-9.0,4.0,1217858 -3036215,1630144623,2,76,0,1,1630053038,1,6.0,-9.0,-9.0,-9.0,2.0,1217859 -3036216,1630144622,2,79,0,1,1630053039,1,6.0,-9.0,-9.0,-9.0,4.0,1217860 -3036217,1630144621,2,67,0,1,1630053040,1,6.0,-9.0,-9.0,-9.0,4.0,1217861 -3036218,1630144616,2,79,0,1,1630053041,1,6.0,-9.0,-9.0,-9.0,2.0,1217862 -3036219,1630144618,2,69,0,1,1630053042,1,6.0,-9.0,-9.0,-9.0,2.0,1217863 -3036220,1630144625,2,70,0,1,1630053043,1,6.0,-9.0,-9.0,-9.0,3.0,1217864 -3036221,1630144614,2,83,0,1,1630053044,1,6.0,-9.0,-9.0,-9.0,4.0,1217865 -3036222,1630144612,2,77,0,1,1630053045,1,6.0,-9.0,-9.0,-9.0,4.0,1217866 -3036223,1630143880,2,67,0,1,1630053046,2,6.0,-9.0,-9.0,-9.0,4.0,1217867 -3036224,1630143967,2,65,0,1,1630053047,2,6.0,-9.0,-9.0,-9.0,4.0,1217868 -3036225,1630143975,2,60,1,2,1630053047,1,6.0,-9.0,-9.0,-9.0,4.0,1217868 -3036226,1630143977,2,21,7,3,1630053047,1,6.0,-9.0,-9.0,15.0,4.0,1217868 -3036227,1630143969,2,17,7,4,1630053047,1,6.0,-9.0,-9.0,14.0,4.0,1217868 -3036228,1630143971,2,16,7,5,1630053047,1,6.0,-9.0,-9.0,13.0,-9.0,1217868 -3036229,1630143973,2,14,7,6,1630053047,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217868 -3036230,1630143932,2,72,0,1,1630053048,2,6.0,-9.0,-9.0,-9.0,4.0,1217869 -3036231,1630143935,2,52,2,2,1630053048,1,6.0,-9.0,-9.0,-9.0,4.0,1217869 -3036232,1630143933,2,72,0,1,1630053049,2,6.0,-9.0,-9.0,-9.0,4.0,1217870 -3036233,1630143936,2,52,2,2,1630053049,1,6.0,-9.0,-9.0,-9.0,4.0,1217870 -3036234,1630143934,2,72,0,1,1630053050,2,6.0,-9.0,-9.0,-9.0,4.0,1217871 -3036235,1630143937,2,52,2,2,1630053050,1,6.0,-9.0,-9.0,-9.0,4.0,1217871 -3036236,1630143896,2,78,0,1,1630053051,2,6.0,-9.0,-9.0,-9.0,4.0,1217872 -3036237,1630143897,2,51,2,2,1630053051,2,1.0,30.0,1.0,-9.0,4.0,1217872 -3036238,1630143898,2,17,7,3,1630053051,2,6.0,-9.0,-9.0,12.0,4.0,1217872 -3036239,1630143899,2,17,7,4,1630053051,2,6.0,-9.0,-9.0,12.0,4.0,1217872 -3036240,1630143922,2,85,0,1,1630053052,2,6.0,-9.0,-9.0,-9.0,4.0,1217873 -3036241,1630143924,2,75,11,2,1630053052,1,6.0,-9.0,-9.0,-9.0,2.0,1217873 -3036242,1630143925,2,67,11,3,1630053052,1,1.0,40.0,1.0,-9.0,4.0,1217873 -3036243,1630143923,2,58,11,4,1630053052,1,6.0,-9.0,-9.0,-9.0,2.0,1217873 -3036244,1630143906,2,77,0,1,1630053053,2,6.0,-9.0,-9.0,-9.0,3.0,1217874 -3036245,1630143907,2,58,2,2,1630053053,1,3.0,-9.0,-9.0,-9.0,4.0,1217874 -3036246,1630144603,2,67,0,1,1630053054,1,6.0,-9.0,-9.0,-9.0,4.0,1217875 -3036247,1630144602,2,40,10,2,1630053054,1,3.0,-9.0,-9.0,-9.0,4.0,1217875 -3036248,1630144499,2,41,0,1,1630053055,1,1.0,40.0,1.0,-9.0,2.0,1217876 -3036249,1630144497,2,43,1,2,1630053055,2,1.0,30.0,1.0,-9.0,4.0,1217876 -3036250,1630144498,2,17,2,3,1630053055,1,6.0,-9.0,-9.0,14.0,4.0,1217876 -3036251,1630144629,4,56,0,1,1630053056,1,6.0,35.0,6.0,-9.0,4.0,1217877 -3036252,1630144630,4,50,1,2,1630053056,2,1.0,56.0,1.0,-9.0,4.0,1217877 -3036253,1630144631,4,25,2,3,1630053056,2,3.0,-9.0,-9.0,-9.0,4.0,1217877 -3036254,1630144632,4,17,2,4,1630053056,1,6.0,-9.0,-9.0,13.0,4.0,1217877 -3036255,1630144173,2,39,0,1,1630053057,1,1.0,40.0,1.0,-9.0,4.0,1217878 -3036256,1630144175,2,13,2,2,1630053057,2,-9.0,-9.0,-9.0,9.0,-9.0,1217878 -3036257,1630144167,2,19,4,3,1630053057,2,3.0,-9.0,-9.0,-9.0,4.0,1217878 -3036258,1630144171,2,15,4,4,1630053057,1,-9.0,-9.0,-9.0,13.0,-9.0,1217878 -3036259,1630144169,2,39,13,5,1630053057,2,1.0,21.0,1.0,-9.0,4.0,1217878 -3036260,1630144183,2,51,0,1,1630053058,2,1.0,30.0,6.0,-9.0,4.0,1217879 -3036261,1630144184,2,15,2,2,1630053058,1,-9.0,-9.0,-9.0,10.0,-9.0,1217879 -3036262,1630144187,2,12,2,3,1630053058,2,-9.0,-9.0,-9.0,9.0,-9.0,1217879 -3036263,1630144185,2,10,2,4,1630053058,1,-9.0,-9.0,-9.0,6.0,-9.0,1217879 -3036264,1630144186,2,8,2,5,1630053058,1,-9.0,-9.0,-9.0,5.0,-9.0,1217879 -3036265,1630144479,2,67,0,1,1630053059,1,1.0,32.0,1.0,-9.0,2.0,1217880 -3036266,1630144477,2,62,1,2,1630053059,2,6.0,-9.0,-9.0,-9.0,4.0,1217880 -3036267,1630144478,2,21,7,3,1630053059,2,6.0,15.0,6.0,15.0,4.0,1217880 -3036268,1630144247,2,45,0,1,1630053060,2,1.0,40.0,1.0,-9.0,4.0,1217881 -3036269,1630144250,2,16,2,2,1630053060,2,6.0,-9.0,-9.0,12.0,-9.0,1217881 -3036270,1630144251,2,13,2,3,1630053060,2,-9.0,-9.0,-9.0,9.0,-9.0,1217881 -3036271,1630144248,2,12,2,4,1630053060,1,-9.0,-9.0,-9.0,8.0,-9.0,1217881 -3036272,1630144252,2,12,2,5,1630053060,2,-9.0,-9.0,-9.0,8.0,-9.0,1217881 -3036273,1630144249,2,8,2,6,1630053060,1,-9.0,-9.0,-9.0,4.0,-9.0,1217881 -3036274,1630144396,2,52,0,1,1630053061,2,1.0,8.0,6.0,-9.0,4.0,1217882 -3036275,1630144397,2,60,15,2,1630053061,1,6.0,-9.0,-9.0,-9.0,4.0,1217882 -3036276,1630144465,2,79,0,1,1630053062,1,6.0,-9.0,-9.0,-9.0,4.0,1217883 -3036277,1630144462,2,62,2,2,1630053062,2,6.0,-9.0,-9.0,-9.0,4.0,1217883 -3036278,1630144463,2,49,10,3,1630053062,2,6.0,-9.0,-9.0,-9.0,4.0,1217883 -3036279,1630144289,2,35,0,1,1630053063,2,6.0,-9.0,-9.0,-9.0,4.0,1217884 -3036280,1630144291,2,13,2,2,1630053063,2,-9.0,-9.0,-9.0,11.0,-9.0,1217884 -3036281,1630144292,2,12,2,3,1630053063,2,-9.0,-9.0,-9.0,9.0,-9.0,1217884 -3036282,1630144290,2,11,2,4,1630053063,1,-9.0,-9.0,-9.0,7.0,-9.0,1217884 -3036283,1630144475,2,47,0,1,1630053064,2,6.0,-9.0,-9.0,-9.0,4.0,1217885 -3036284,1630144476,2,13,2,2,1630053064,1,-9.0,-9.0,-9.0,10.0,-9.0,1217885 -3036285,1630144491,2,41,0,1,1630053065,2,1.0,50.0,1.0,-9.0,4.0,1217886 -3036286,1630144494,2,41,1,2,1630053065,1,6.0,-9.0,-9.0,-9.0,4.0,1217886 -3036287,1630144492,2,14,2,3,1630053065,1,-9.0,-9.0,-9.0,12.0,-9.0,1217886 -3036288,1630144493,2,3,2,4,1630053065,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217886 -3036289,1630143994,2,68,0,1,1630053066,2,6.0,-9.0,-9.0,-9.0,4.0,1217887 -3036290,1630143995,2,13,7,2,1630053066,1,-9.0,-9.0,-9.0,10.0,-9.0,1217887 -3036291,1630143996,2,13,7,3,1630053066,1,-9.0,-9.0,-9.0,10.0,-9.0,1217887 -3036292,1630143997,2,16,15,4,1630053066,1,6.0,-9.0,-9.0,13.0,-9.0,1217887 -3036293,1630144447,2,53,0,1,1630053067,2,1.0,27.0,6.0,-9.0,4.0,1217888 -3036294,1630144453,2,13,2,2,1630053067,2,-9.0,-9.0,-9.0,10.0,-9.0,1217888 -3036295,1630144449,2,60,5,3,1630053067,1,6.0,-9.0,-9.0,-9.0,4.0,1217888 -3036296,1630144451,2,57,5,4,1630053067,1,6.0,-9.0,-9.0,-9.0,4.0,1217888 -3036297,1630144244,2,49,0,1,1630053068,2,1.0,40.0,2.0,-9.0,4.0,1217889 -3036298,1630144245,2,14,2,2,1630053068,1,-9.0,-9.0,-9.0,10.0,-9.0,1217889 -3036299,1630144246,2,9,2,3,1630053068,1,-9.0,-9.0,-9.0,5.0,-9.0,1217889 -3036300,1630143961,2,73,0,1,1630053069,2,6.0,-9.0,-9.0,-9.0,4.0,1217890 -3036301,1630143962,2,51,2,2,1630053069,1,6.0,-9.0,-9.0,-9.0,4.0,1217890 -3036302,1630144389,2,44,0,1,1630053070,2,1.0,43.0,1.0,-9.0,4.0,1217891 -3036303,1630144393,2,48,1,2,1630053070,1,1.0,30.0,4.0,-9.0,4.0,1217891 -3036304,1630144395,2,21,2,3,1630053070,1,6.0,-9.0,-9.0,-9.0,4.0,1217891 -3036305,1630144391,2,17,2,4,1630053070,1,6.0,-9.0,-9.0,14.0,4.0,1217891 -3036306,1630143968,2,65,0,1,1630053071,2,6.0,-9.0,-9.0,-9.0,4.0,1217892 -3036307,1630143976,2,60,1,2,1630053071,1,6.0,-9.0,-9.0,-9.0,4.0,1217892 -3036308,1630143978,2,21,7,3,1630053071,1,6.0,-9.0,-9.0,15.0,4.0,1217892 -3036309,1630143970,2,17,7,4,1630053071,1,6.0,-9.0,-9.0,14.0,4.0,1217892 -3036310,1630143972,2,16,7,5,1630053071,1,6.0,-9.0,-9.0,13.0,-9.0,1217892 -3036311,1630143974,2,14,7,6,1630053071,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217892 -3036312,1630144324,2,34,0,1,1630053072,2,1.0,40.0,1.0,-9.0,4.0,1217893 -3036313,1630144325,2,14,2,2,1630053072,1,-9.0,-9.0,-9.0,11.0,-9.0,1217893 -3036314,1630144327,2,4,2,3,1630053072,2,-9.0,-9.0,-9.0,1.0,-9.0,1217893 -3036315,1630144328,2,0,2,4,1630053072,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217893 -3036316,1630144326,2,36,13,5,1630053072,1,3.0,40.0,5.0,-9.0,4.0,1217893 -3036317,1630144101,2,55,0,1,1630053073,2,6.0,-9.0,-9.0,-9.0,4.0,1217894 -3036318,1630144102,2,37,2,2,1630053073,2,3.0,-9.0,-9.0,-9.0,4.0,1217894 -3036319,1630144103,2,35,2,3,1630053073,1,6.0,-9.0,-9.0,-9.0,4.0,1217894 -3036320,1630144104,2,25,2,4,1630053073,1,6.0,-9.0,-9.0,-9.0,4.0,1217894 -3036321,1630144105,2,21,7,5,1630053073,1,6.0,-9.0,-9.0,-9.0,4.0,1217894 -3036322,1630144106,2,46,12,6,1630053073,1,1.0,40.0,3.0,14.0,4.0,1217894 -3036323,1630144321,2,52,0,1,1630053074,2,1.0,50.0,1.0,-9.0,2.0,1217895 -3036324,1630144322,2,65,1,2,1630053074,1,6.0,-9.0,-9.0,-9.0,4.0,1217895 -3036325,1630144323,4,18,14,3,1630053074,1,6.0,-9.0,-9.0,14.0,4.0,1217895 -3036326,1630144598,2,56,0,1,1630053075,1,6.0,-9.0,-9.0,-9.0,4.0,1217896 -3036327,1630144599,2,23,2,2,1630053075,1,6.0,-9.0,-9.0,-9.0,4.0,1217896 -3036328,1630144600,2,23,2,3,1630053075,1,6.0,-9.0,-9.0,-9.0,4.0,1217896 -3036329,1630144601,2,20,2,4,1630053075,1,6.0,-9.0,-9.0,-9.0,4.0,1217896 -3036330,1630144038,4,29,0,1,1630053076,2,6.0,-9.0,-9.0,15.0,4.0,1217897 -3036331,1630144036,3,32,1,2,1630053076,1,6.0,-9.0,-9.0,-9.0,4.0,1217897 -3036332,1630144039,3,7,2,3,1630053076,1,-9.0,-9.0,-9.0,4.0,-9.0,1217897 -3036333,1630144040,3,6,2,4,1630053076,1,-9.0,-9.0,-9.0,3.0,-9.0,1217897 -3036334,1630144037,3,4,2,5,1630053076,2,-9.0,-9.0,-9.0,1.0,-9.0,1217897 -3036335,1630144532,2,45,0,1,1630053077,1,1.0,85.0,1.0,-9.0,4.0,1217898 -3036336,1630144533,2,14,2,2,1630053077,2,-9.0,-9.0,-9.0,9.0,-9.0,1217898 -3036337,1630144531,2,10,2,3,1630053077,1,-9.0,-9.0,-9.0,7.0,-9.0,1217898 -3036338,1630144534,2,8,2,4,1630053077,2,-9.0,-9.0,-9.0,4.0,-9.0,1217898 -3036339,1630144049,2,55,0,1,1630053078,1,1.0,20.0,5.0,-9.0,4.0,1217899 -3036340,1630144051,2,19,2,2,1630053078,1,3.0,-9.0,-9.0,-9.0,4.0,1217899 -3036341,1630144047,2,51,10,3,1630053078,2,6.0,-9.0,-9.0,-9.0,4.0,1217899 -3036342,1630143917,2,74,0,1,1630053079,2,6.0,-9.0,-9.0,-9.0,4.0,1217900 -3036343,1630144273,2,47,0,1,1630053080,2,2.0,40.0,1.0,-9.0,4.0,1217901 -3036344,1630144277,2,14,10,2,1630053080,2,-9.0,-9.0,-9.0,10.0,-9.0,1217901 -3036345,1630144274,2,12,10,3,1630053080,1,-9.0,-9.0,-9.0,8.0,-9.0,1217901 -3036346,1630144275,2,11,10,4,1630053080,1,-9.0,-9.0,-9.0,7.0,-9.0,1217901 -3036347,1630144276,2,59,15,5,1630053080,1,6.0,-9.0,-9.0,-9.0,4.0,1217901 -3036348,1630143916,2,75,0,1,1630053081,2,6.0,-9.0,-9.0,-9.0,4.0,1217902 -3036349,1630144146,2,54,0,1,1630053082,2,6.0,-9.0,-9.0,-9.0,4.0,1217903 -3036350,1630144147,2,25,2,2,1630053082,2,1.0,30.0,3.0,-9.0,4.0,1217903 -3036351,1630144149,2,2,7,3,1630053082,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217903 -3036352,1630144148,2,52,15,4,1630053082,1,6.0,-9.0,-9.0,-9.0,4.0,1217903 -3036353,1630144343,2,54,0,1,1630053083,1,6.0,-9.0,-9.0,-9.0,3.0,1217904 -3036354,1630144341,2,52,1,2,1630053083,2,3.0,-9.0,-9.0,-9.0,4.0,1217904 -3036355,1630144342,2,21,2,3,1630053083,2,1.0,28.0,1.0,-9.0,4.0,1217904 -3036356,1630144344,2,19,2,4,1630053083,1,3.0,20.0,6.0,-9.0,4.0,1217904 -3036357,1630144345,2,14,2,5,1630053083,2,-9.0,-9.0,-9.0,11.0,-9.0,1217904 -3036358,1630144346,2,13,2,6,1630053083,2,-9.0,-9.0,-9.0,8.0,-9.0,1217904 -3036359,1630144606,2,54,0,1,1630053084,1,6.0,-9.0,-9.0,-9.0,4.0,1217905 -3036360,1630144607,2,44,12,2,1630053084,1,6.0,-9.0,-9.0,-9.0,4.0,1217905 -3036361,1630144608,2,36,12,3,1630053084,1,1.0,40.0,1.0,-9.0,4.0,1217905 -3036362,1630144525,2,47,0,1,1630053085,1,6.0,-9.0,-9.0,-9.0,4.0,1217906 -3036363,1630144519,2,17,2,2,1630053085,1,6.0,-9.0,-9.0,13.0,4.0,1217906 -3036364,1630144522,2,16,2,3,1630053085,1,6.0,-9.0,-9.0,12.0,-9.0,1217906 -3036365,1630144528,2,70,15,4,1630053085,1,6.0,-9.0,-9.0,-9.0,2.0,1217906 -3036366,1630144383,2,37,0,1,1630053086,2,1.0,30.0,1.0,-9.0,4.0,1217907 -3036367,1630144385,2,16,2,2,1630053086,2,6.0,-9.0,-9.0,12.0,-9.0,1217907 -3036368,1630144386,2,10,2,3,1630053086,2,-9.0,-9.0,-9.0,5.0,-9.0,1217907 -3036369,1630144384,2,8,2,4,1630053086,1,-9.0,-9.0,-9.0,4.0,-9.0,1217907 -3036370,1630144387,2,5,2,5,1630053086,2,-9.0,-9.0,-9.0,2.0,-9.0,1217907 -3036371,1630144200,2,58,0,1,1630053087,1,6.0,-9.0,-9.0,-9.0,4.0,1217908 -3036372,1630144198,2,52,1,2,1630053087,2,1.0,32.0,4.0,-9.0,4.0,1217908 -3036373,1630144199,2,14,2,3,1630053087,1,-9.0,-9.0,-9.0,10.0,-9.0,1217908 -3036374,1630144588,2,53,0,1,1630053088,1,6.0,-9.0,-9.0,-9.0,4.0,1217909 -3036375,1630144373,2,58,0,1,1630053089,2,6.0,-9.0,-9.0,-9.0,4.0,1217910 -3036376,1630144377,2,39,2,2,1630053089,1,1.0,50.0,1.0,-9.0,4.0,1217910 -3036377,1630144374,2,19,7,3,1630053089,2,1.0,20.0,4.0,-9.0,4.0,1217910 -3036378,1630144376,2,14,7,4,1630053089,1,-9.0,-9.0,-9.0,12.0,-9.0,1217910 -3036379,1630144375,2,37,15,5,1630053089,2,3.0,-9.0,-9.0,-9.0,4.0,1217910 -3036380,1630144128,2,35,0,1,1630053090,2,3.0,18.0,4.0,-9.0,4.0,1217911 -3036381,1630144130,2,35,15,2,1630053090,1,3.0,24.0,6.0,-9.0,4.0,1217911 -3036382,1630144129,2,14,15,3,1630053090,1,-9.0,-9.0,-9.0,10.0,-9.0,1217911 -3036383,1630144264,2,66,0,1,1630053091,1,6.0,-9.0,-9.0,-9.0,4.0,1217912 -3036384,1630144261,2,46,2,2,1630053091,1,3.0,-9.0,-9.0,-9.0,4.0,1217912 -3036385,1630144255,2,20,7,3,1630053091,2,3.0,-9.0,-9.0,-9.0,4.0,1217912 -3036386,1630144258,2,19,7,4,1630053091,2,1.0,40.0,1.0,-9.0,4.0,1217912 -3036387,1630144278,2,34,0,1,1630053092,2,3.0,-9.0,-9.0,-9.0,4.0,1217913 -3036388,1630144281,2,15,2,2,1630053092,2,-9.0,-9.0,-9.0,12.0,-9.0,1217913 -3036389,1630144279,2,13,2,3,1630053092,1,-9.0,-9.0,-9.0,10.0,-9.0,1217913 -3036390,1630144280,2,11,2,4,1630053092,1,-9.0,-9.0,-9.0,8.0,-9.0,1217913 -3036391,1630144282,2,9,2,5,1630053092,2,-9.0,-9.0,-9.0,5.0,-9.0,1217913 -3036392,1630144319,2,41,0,1,1630053093,2,6.0,-9.0,-9.0,-9.0,4.0,1217914 -3036393,1630144320,2,8,2,2,1630053093,1,-9.0,-9.0,-9.0,4.0,-9.0,1217914 -3036394,1630144590,2,58,0,1,1630053094,1,2.0,20.0,6.0,-9.0,2.0,1217915 -3036395,1630144124,2,61,0,1,1630053095,1,3.0,-9.0,-9.0,-9.0,4.0,1217916 -3036396,1630144122,2,48,1,2,1630053095,2,3.0,15.0,6.0,-9.0,4.0,1217916 -3036397,1630144158,2,35,0,1,1630053096,1,1.0,48.0,1.0,-9.0,4.0,1217917 -3036398,1630144159,2,11,2,2,1630053096,2,-9.0,-9.0,-9.0,7.0,-9.0,1217917 -3036399,1630144157,2,3,2,3,1630053096,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217917 -3036400,1630144156,2,40,13,4,1630053096,2,3.0,-9.0,-9.0,-9.0,4.0,1217917 -3036401,1630144539,2,61,0,1,1630053097,1,1.0,40.0,1.0,-9.0,4.0,1217918 -3036402,1630144540,2,51,10,2,1630053097,1,6.0,-9.0,-9.0,-9.0,4.0,1217918 -3036403,1630144119,2,57,0,1,1630053098,1,6.0,-9.0,-9.0,-9.0,4.0,1217919 -3036404,1630144117,2,56,1,2,1630053098,2,6.0,-9.0,-9.0,-9.0,4.0,1217919 -3036405,1630144120,2,36,2,3,1630053098,1,1.0,27.0,1.0,-9.0,4.0,1217919 -3036406,1630144118,2,27,2,4,1630053098,2,1.0,20.0,1.0,-9.0,4.0,1217919 -3036407,1630143985,2,63,0,1,1630053099,1,6.0,-9.0,-9.0,-9.0,4.0,1217920 -3036408,1630143982,2,67,1,2,1630053099,2,6.0,-9.0,-9.0,-9.0,4.0,1217920 -3036409,1630143983,2,8,7,3,1630053099,1,-9.0,-9.0,-9.0,5.0,-9.0,1217920 -3036410,1630143984,2,7,7,4,1630053099,1,-9.0,-9.0,-9.0,4.0,-9.0,1217920 -3036411,1630144628,2,94,0,1,1630053100,1,6.0,-9.0,-9.0,-9.0,2.0,1217921 -3036412,1630144220,2,43,0,1,1630053101,2,3.0,-9.0,-9.0,-9.0,4.0,1217922 -3036413,1630144222,2,15,2,2,1630053101,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217922 -3036414,1630144221,2,20,3,3,1630053101,2,6.0,-9.0,-9.0,-9.0,4.0,1217922 -3036415,1630144223,2,13,3,4,1630053101,2,-9.0,-9.0,-9.0,8.0,-9.0,1217922 -3036416,1630144224,2,11,3,5,1630053101,2,-9.0,-9.0,-9.0,6.0,-9.0,1217922 -3036417,1630144225,2,10,3,6,1630053101,2,-9.0,-9.0,-9.0,6.0,-9.0,1217922 -3036418,1630144201,2,56,0,1,1630053102,2,1.0,40.0,1.0,-9.0,4.0,1217923 -3036419,1630144202,2,43,10,2,1630053102,2,6.0,-9.0,-9.0,-9.0,4.0,1217923 -3036420,1630144203,2,63,13,3,1630053102,1,6.0,-9.0,-9.0,-9.0,4.0,1217923 -3036421,1630144141,2,37,0,1,1630053103,2,3.0,40.0,1.0,-9.0,4.0,1217924 -3036422,1630144142,2,14,2,2,1630053103,1,-9.0,-9.0,-9.0,10.0,-9.0,1217924 -3036423,1630144143,2,10,2,3,1630053103,1,-9.0,-9.0,-9.0,6.0,-9.0,1217924 -3036424,1630144053,2,57,0,1,1630053104,2,6.0,-9.0,-9.0,-9.0,4.0,1217925 -3036425,1630144057,2,23,2,2,1630053104,1,6.0,-9.0,-9.0,14.0,4.0,1217925 -3036426,1630144055,2,22,2,3,1630053104,2,6.0,20.0,6.0,-9.0,4.0,1217925 -3036427,1630144163,2,46,0,1,1630053105,2,1.0,40.0,1.0,15.0,4.0,1217926 -3036428,1630144164,2,16,2,2,1630053105,2,6.0,4.0,6.0,13.0,-9.0,1217926 -3036429,1630143945,2,83,0,1,1630053106,2,6.0,-9.0,-9.0,-9.0,4.0,1217927 -3036430,1630143946,2,61,2,2,1630053106,1,6.0,-9.0,-9.0,-9.0,4.0,1217927 -3036431,1630144132,2,53,0,1,1630053107,2,6.0,-9.0,-9.0,-9.0,4.0,1217928 -3036432,1630144134,2,22,2,2,1630053107,2,1.0,6.0,1.0,15.0,4.0,1217928 -3036433,1630144136,2,13,2,3,1630053107,1,-9.0,-9.0,-9.0,11.0,-9.0,1217928 -3036434,1630144138,2,1,7,4,1630053107,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217928 -3036435,1630144560,2,45,0,1,1630053108,1,1.0,36.0,1.0,-9.0,3.0,1217929 -3036436,1630144370,2,38,0,1,1630053109,1,1.0,50.0,6.0,-9.0,4.0,1217930 -3036437,1630144368,2,29,1,2,1630053109,2,3.0,-9.0,-9.0,-9.0,4.0,1217930 -3036438,1630144369,2,0,2,3,1630053109,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217930 -3036439,1630144404,2,57,0,1,1630053110,2,1.0,40.0,1.0,-9.0,4.0,1217931 -3036440,1630144405,2,48,5,2,1630053110,1,6.0,-9.0,-9.0,-9.0,4.0,1217931 -3036441,1630144285,2,49,0,1,1630053111,2,3.0,-9.0,-9.0,-9.0,4.0,1217932 -3036442,1630144286,2,45,1,2,1630053111,1,1.0,40.0,1.0,-9.0,4.0,1217932 -3036443,1630144287,2,23,2,3,1630053111,1,1.0,45.0,6.0,-9.0,4.0,1217932 -3036444,1630144288,2,43,10,4,1630053111,1,6.0,-9.0,-9.0,-9.0,4.0,1217932 -3036445,1630144569,2,44,0,1,1630053112,1,1.0,50.0,1.0,-9.0,4.0,1217933 -3036446,1630144570,2,15,2,2,1630053112,2,-9.0,-9.0,-9.0,12.0,-9.0,1217933 -3036447,1630144571,2,9,2,3,1630053112,2,-9.0,-9.0,-9.0,7.0,-9.0,1217933 -3036448,1630144114,4,50,0,1,1630053113,1,4.0,40.0,1.0,-9.0,1.0,1217934 -3036449,1630144113,2,51,1,2,1630053113,2,6.0,-9.0,-9.0,15.0,4.0,1217934 -3036450,1630144115,4,11,2,3,1630053113,1,-9.0,-9.0,-9.0,8.0,-9.0,1217934 -3036451,1630144116,4,9,2,4,1630053113,1,-9.0,-9.0,-9.0,6.0,-9.0,1217934 -3036452,1630144182,2,39,0,1,1630053114,1,6.0,-9.0,-9.0,-9.0,4.0,1217935 -3036453,1630144181,2,32,10,2,1630053114,2,1.0,24.0,6.0,-9.0,4.0,1217935 -3036454,1630144058,2,40,0,1,1630053115,2,2.0,72.0,1.0,-9.0,4.0,1217936 -3036455,1630144059,2,13,2,2,1630053115,1,-9.0,-9.0,-9.0,8.0,-9.0,1217936 -3036456,1630144568,2,45,0,1,1630053116,1,1.0,40.0,1.0,-9.0,4.0,1217937 -3036457,1630144466,2,54,0,1,1630053117,2,6.0,-9.0,-9.0,-9.0,4.0,1217938 -3036458,1630144467,2,19,2,2,1630053117,1,6.0,-9.0,-9.0,-9.0,4.0,1217938 -3036459,1630144407,2,47,0,1,1630053118,2,3.0,-9.0,-9.0,-9.0,4.0,1217939 -3036460,1630144411,2,27,2,2,1630053118,1,3.0,-9.0,-9.0,-9.0,4.0,1217939 -3036461,1630144409,2,16,2,3,1630053118,1,6.0,-9.0,-9.0,13.0,-9.0,1217939 -3036462,1630144413,2,38,15,4,1630053118,1,6.0,-9.0,-9.0,-9.0,4.0,1217939 -3036463,1630144589,2,45,0,1,1630053119,1,1.0,48.0,1.0,-9.0,4.0,1217940 -3036464,1630144178,2,71,0,1,1630053120,1,6.0,-9.0,-9.0,-9.0,4.0,1217941 -3036465,1630144176,2,64,1,2,1630053120,2,6.0,-9.0,-9.0,-9.0,4.0,1217941 -3036466,1630144177,2,24,7,3,1630053120,2,1.0,40.0,4.0,-9.0,4.0,1217941 -3036467,1630144034,2,32,0,1,1630053121,2,2.0,40.0,1.0,-9.0,4.0,1217942 -3036468,1630144033,1,35,1,2,1630053121,1,3.0,-9.0,-9.0,15.0,4.0,1217942 -3036469,1630144035,2,12,2,3,1630053121,2,-9.0,-9.0,-9.0,8.0,-9.0,1217942 -3036470,1630143938,2,90,0,1,1630053122,2,6.0,-9.0,-9.0,-9.0,4.0,1217943 -3036471,1630143939,1,56,11,2,1630053122,1,6.0,-9.0,-9.0,-9.0,4.0,1217943 -3036472,1630144026,1,30,0,1,1630053123,2,6.0,8.0,6.0,-9.0,4.0,1217944 -3036473,1630144027,1,35,1,2,1630053123,1,1.0,60.0,1.0,-9.0,4.0,1217944 -3036474,1630144028,1,2,2,3,1630053123,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217944 -3036475,1630144029,1,0,2,4,1630053123,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217944 -3036476,1630144350,2,87,0,1,1630053124,1,6.0,-9.0,-9.0,-9.0,4.0,1217945 -3036477,1630144347,2,53,2,2,1630053124,2,6.0,-9.0,-9.0,-9.0,4.0,1217945 -3036478,1630144348,2,37,7,3,1630053124,2,2.0,32.0,1.0,-9.0,4.0,1217945 -3036479,1630144349,2,6,7,4,1630053124,2,-9.0,-9.0,-9.0,3.0,-9.0,1217945 -3036480,1630144297,2,44,0,1,1630053125,2,3.0,10.0,6.0,-9.0,4.0,1217946 -3036481,1630144298,2,21,2,2,1630053125,1,6.0,-9.0,-9.0,-9.0,4.0,1217946 -3036482,1630144299,2,16,2,3,1630053125,2,6.0,-9.0,-9.0,12.0,-9.0,1217946 -3036483,1630144508,2,89,0,1,1630053126,1,6.0,-9.0,-9.0,-9.0,2.0,1217947 -3036484,1630144504,2,29,7,2,1630053126,2,1.0,40.0,1.0,-9.0,4.0,1217947 -3036485,1630144505,2,8,7,3,1630053126,1,-9.0,-9.0,-9.0,5.0,-9.0,1217947 -3036486,1630144507,2,6,7,4,1630053126,2,-9.0,-9.0,-9.0,2.0,-9.0,1217947 -3036487,1630144506,2,4,7,5,1630053126,1,-9.0,-9.0,-9.0,1.0,-9.0,1217947 -3036488,1630144193,2,64,0,1,1630053127,1,6.0,-9.0,-9.0,-9.0,2.0,1217948 -3036489,1630144192,2,60,1,2,1630053127,2,1.0,4.0,4.0,-9.0,4.0,1217948 -3036490,1630144428,2,43,0,1,1630053128,2,1.0,40.0,1.0,-9.0,2.0,1217949 -3036491,1630144429,2,11,2,2,1630053128,1,-9.0,-9.0,-9.0,8.0,-9.0,1217949 -3036492,1630144265,2,42,0,1,1630053129,2,1.0,40.0,1.0,-9.0,4.0,1217950 -3036493,1630144266,2,20,2,2,1630053129,2,1.0,40.0,4.0,-9.0,4.0,1217950 -3036494,1630144268,2,17,2,3,1630053129,2,3.0,-9.0,-9.0,-9.0,4.0,1217950 -3036495,1630144267,2,10,2,4,1630053129,1,-9.0,-9.0,-9.0,5.0,-9.0,1217950 -3036496,1630144544,2,35,0,1,1630053130,1,1.0,40.0,4.0,-9.0,4.0,1217951 -3036497,1630144564,2,62,0,1,1630053131,1,1.0,45.0,1.0,-9.0,4.0,1217952 -3036498,1630144514,2,66,0,1,1630053132,1,6.0,-9.0,-9.0,-9.0,4.0,1217953 -3036499,1630144509,2,50,1,2,1630053132,2,1.0,40.0,1.0,-9.0,4.0,1217953 -3036500,1630144510,2,29,2,3,1630053132,2,6.0,-9.0,-9.0,-9.0,4.0,1217953 -3036501,1630144511,2,24,2,4,1630053132,2,6.0,-9.0,-9.0,12.0,4.0,1217953 -3036502,1630144512,2,12,7,5,1630053132,2,-9.0,-9.0,-9.0,8.0,-9.0,1217953 -3036503,1630144513,2,7,7,6,1630053132,2,-9.0,-9.0,-9.0,3.0,-9.0,1217953 -3036504,1630143918,2,71,0,1,1630053133,2,6.0,-9.0,-9.0,-9.0,4.0,1217954 -3036505,1630143920,2,54,10,2,1630053133,1,3.0,50.0,6.0,-9.0,4.0,1217954 -3036506,1630143921,2,39,10,3,1630053133,1,3.0,-9.0,-9.0,-9.0,4.0,1217954 -3036507,1630143919,2,17,10,4,1630053133,1,6.0,-9.0,-9.0,14.0,4.0,1217954 -3036508,1630144549,2,42,0,1,1630053134,1,1.0,45.0,1.0,-9.0,4.0,1217955 -3036509,1630144150,2,36,0,1,1630053135,2,1.0,40.0,4.0,-9.0,4.0,1217956 -3036510,1630144152,2,16,2,2,1630053135,2,6.0,-9.0,-9.0,13.0,-9.0,1217956 -3036511,1630144153,2,15,2,3,1630053135,2,-9.0,-9.0,-9.0,12.0,-9.0,1217956 -3036512,1630144151,2,14,2,4,1630053135,1,-9.0,-9.0,-9.0,11.0,-9.0,1217956 -3036513,1630144154,2,11,2,5,1630053135,2,-9.0,-9.0,-9.0,7.0,-9.0,1217956 -3036514,1630144378,2,36,0,1,1630053136,2,6.0,-9.0,-9.0,-9.0,4.0,1217957 -3036515,1630144381,2,18,2,2,1630053136,1,6.0,-9.0,-9.0,15.0,4.0,1217957 -3036516,1630144382,2,17,2,3,1630053136,2,6.0,-9.0,-9.0,14.0,4.0,1217957 -3036517,1630144380,2,16,2,4,1630053136,1,6.0,-9.0,-9.0,11.0,-9.0,1217957 -3036518,1630144379,2,55,6,5,1630053136,2,6.0,-9.0,-9.0,-9.0,4.0,1217957 -3036519,1630144196,2,60,0,1,1630053137,1,1.0,40.0,1.0,-9.0,4.0,1217958 -3036520,1630144194,2,57,1,2,1630053137,2,3.0,12.0,6.0,-9.0,4.0,1217958 -3036521,1630144197,2,21,2,3,1630053137,1,1.0,29.0,3.0,-9.0,4.0,1217958 -3036522,1630144195,2,17,2,4,1630053137,1,1.0,24.0,6.0,14.0,4.0,1217958 -3036523,1630144572,2,34,0,1,1630053138,1,6.0,-9.0,-9.0,-9.0,4.0,1217959 -3036524,1630144008,2,85,0,1,1630053139,1,6.0,-9.0,-9.0,-9.0,2.0,1217960 -3036525,1630144007,1,67,1,2,1630053139,2,1.0,40.0,1.0,-9.0,4.0,1217960 -3036526,1630144009,4,26,2,3,1630053139,2,6.0,12.0,6.0,-9.0,4.0,1217960 -3036527,1630143889,2,74,0,1,1630053140,2,6.0,-9.0,-9.0,-9.0,4.0,1217961 -3036528,1630143890,2,49,2,2,1630053140,1,3.0,-9.0,-9.0,-9.0,4.0,1217961 -3036529,1630144062,2,45,0,1,1630053141,2,1.0,13.0,5.0,-9.0,4.0,1217962 -3036530,1630144063,2,22,2,2,1630053141,2,6.0,-9.0,-9.0,15.0,4.0,1217962 -3036531,1630144064,2,22,2,3,1630053141,1,6.0,-9.0,-9.0,14.0,4.0,1217962 -3036532,1630144551,2,52,0,1,1630053142,1,3.0,-9.0,-9.0,-9.0,2.0,1217963 -3036533,1630144456,2,32,0,1,1630053143,2,3.0,-9.0,-9.0,-9.0,4.0,1217964 -3036534,1630144460,2,50,1,2,1630053143,1,1.0,30.0,1.0,-9.0,4.0,1217964 -3036535,1630144458,2,9,2,3,1630053143,1,-9.0,-9.0,-9.0,6.0,-9.0,1217964 -3036536,1630144459,2,5,2,4,1630053143,1,-9.0,-9.0,-9.0,2.0,-9.0,1217964 -3036537,1630144461,2,1,2,5,1630053143,2,-9.0,-9.0,-9.0,-9.0,-9.0,1217964 -3036538,1630144457,2,57,15,6,1630053143,2,3.0,-9.0,-9.0,-9.0,4.0,1217964 -3036539,1630143947,2,87,0,1,1630053144,2,6.0,-9.0,-9.0,-9.0,4.0,1217965 -3036540,1630143948,2,57,2,2,1630053144,2,6.0,-9.0,-9.0,-9.0,4.0,1217965 -3036541,1630143949,2,53,2,3,1630053144,1,6.0,-9.0,-9.0,-9.0,4.0,1217965 -3036542,1630144161,2,42,0,1,1630053145,2,1.0,42.0,1.0,-9.0,4.0,1217966 -3036543,1630144162,2,13,2,2,1630053145,2,-9.0,-9.0,-9.0,10.0,-9.0,1217966 -3036544,1630144179,2,46,0,1,1630053146,2,1.0,37.0,1.0,16.0,4.0,1217967 -3036545,1630144180,2,30,2,2,1630053146,1,1.0,27.0,3.0,-9.0,4.0,1217967 -3036546,1630144041,2,34,0,1,1630053147,2,3.0,-9.0,-9.0,15.0,4.0,1217968 -3036547,1630144042,2,15,2,2,1630053147,2,-9.0,-9.0,-9.0,12.0,-9.0,1217968 -3036548,1630144043,2,11,2,3,1630053147,2,-9.0,-9.0,-9.0,8.0,-9.0,1217968 -3036549,1630144044,2,9,2,4,1630053147,2,-9.0,-9.0,-9.0,6.0,-9.0,1217968 -3036550,1630144045,2,6,2,5,1630053147,2,-9.0,-9.0,-9.0,3.0,-9.0,1217968 -3036551,1630144312,2,44,0,1,1630053148,2,1.0,40.0,1.0,-9.0,4.0,1217969 -3036552,1630144313,2,25,2,2,1630053148,2,3.0,-9.0,-9.0,15.0,4.0,1217969 -3036553,1630144314,2,20,2,3,1630053148,2,1.0,20.0,6.0,15.0,4.0,1217969 -3036554,1630144315,2,16,2,4,1630053148,1,6.0,-9.0,-9.0,13.0,-9.0,1217969 -3036555,1630144284,2,27,0,1,1630053149,1,6.0,-9.0,-9.0,16.0,4.0,1217970 -3036556,1630144283,2,25,1,2,1630053149,2,1.0,40.0,1.0,-9.0,4.0,1217970 -3036557,1630144422,2,36,0,1,1630053150,2,6.0,-9.0,-9.0,-9.0,4.0,1217971 -3036558,1630144425,2,35,1,2,1630053150,1,1.0,45.0,1.0,-9.0,4.0,1217971 -3036559,1630144423,2,18,2,3,1630053150,2,6.0,-9.0,-9.0,15.0,4.0,1217971 -3036560,1630144424,2,16,2,4,1630053150,1,1.0,25.0,6.0,11.0,-9.0,1217971 -3036561,1630144426,2,14,2,5,1630053150,2,-9.0,-9.0,-9.0,10.0,-9.0,1217971 -3036562,1630144427,2,9,2,6,1630053150,2,-9.0,-9.0,-9.0,5.0,-9.0,1217971 -3036563,1630144542,2,31,0,1,1630053151,1,3.0,40.0,6.0,15.0,4.0,1217972 -3036564,1630144543,2,4,2,2,1630053151,2,-9.0,-9.0,-9.0,1.0,-9.0,1217972 -3036565,1630144367,2,43,0,1,1630053152,1,1.0,40.0,1.0,-9.0,3.0,1217973 -3036566,1630144366,2,61,6,2,1630053152,2,6.0,-9.0,-9.0,-9.0,4.0,1217973 -3036567,1630144575,2,51,0,1,1630053153,1,3.0,-9.0,-9.0,-9.0,4.0,1217974 -3036568,1630144160,2,34,0,1,1630053154,2,1.0,48.0,1.0,-9.0,4.0,1217975 -3036569,1630144371,2,54,0,1,1630053155,2,1.0,32.0,1.0,-9.0,4.0,1217976 -3036570,1630144372,2,51,1,2,1630053155,1,1.0,20.0,5.0,15.0,4.0,1217976 -3036571,1630143963,2,65,0,1,1630053156,2,6.0,-9.0,-9.0,-9.0,3.0,1217977 -3036572,1630143964,2,63,10,2,1630053156,2,6.0,-9.0,-9.0,-9.0,3.0,1217977 -3036573,1630143966,2,58,10,3,1630053156,1,6.0,-9.0,-9.0,-9.0,4.0,1217977 -3036574,1630143965,2,25,10,4,1630053156,2,6.0,-9.0,-9.0,-9.0,4.0,1217977 -3036575,1630144586,2,29,0,1,1630053157,1,6.0,-9.0,-9.0,16.0,3.0,1217978 -3036576,1630143878,2,94,0,1,1630053158,2,6.0,-9.0,-9.0,-9.0,4.0,1217979 -3036577,1630143879,2,40,7,2,1630053158,1,1.0,45.0,1.0,-9.0,4.0,1217979 -3036578,1630144144,2,53,0,1,1630053159,2,6.0,-9.0,-9.0,-9.0,4.0,1217980 -3036579,1630144145,2,4,7,2,1630053159,1,-9.0,-9.0,-9.0,1.0,-9.0,1217980 -3036580,1630144516,2,40,0,1,1630053160,1,3.0,60.0,6.0,-9.0,4.0,1217981 -3036581,1630144515,2,15,2,2,1630053160,1,-9.0,-9.0,-9.0,-9.0,-9.0,1217981 -3036582,1630143957,2,54,0,1,1630053161,2,1.0,32.0,1.0,-9.0,4.0,1217982 -3036583,1630143958,2,13,3,2,1630053161,1,-9.0,-9.0,-9.0,9.0,-9.0,1217982 -3036584,1630143959,2,9,3,3,1630053161,2,-9.0,-9.0,-9.0,5.0,-9.0,1217982 -3036585,1630143960,2,8,3,4,1630053161,2,-9.0,-9.0,-9.0,4.0,-9.0,1217982 -3036586,1630143956,2,70,6,5,1630053161,2,6.0,-9.0,-9.0,-9.0,4.0,1217982 -3036587,1630144214,2,45,0,1,1630053162,2,1.0,24.0,6.0,-9.0,4.0,1217983 -3036588,1630144217,2,16,2,2,1630053162,2,6.0,-9.0,-9.0,13.0,-9.0,1217983 -3036589,1630144216,2,33,13,3,1630053162,1,6.0,-9.0,-9.0,-9.0,4.0,1217983 -3036590,1630144215,2,52,15,4,1630053162,2,6.0,-9.0,-9.0,-9.0,4.0,1217983 -3036591,1630144565,2,44,0,1,1630053163,1,3.0,-9.0,-9.0,15.0,3.0,1217984 -3036592,1630144211,2,41,0,1,1630053164,2,1.0,48.0,1.0,15.0,4.0,1217985 -3036593,1630144097,2,40,0,1,1630053165,2,1.0,72.0,1.0,-9.0,4.0,1217986 -3036594,1630144100,2,19,2,2,1630053165,1,3.0,-9.0,-9.0,-9.0,4.0,1217986 -3036595,1630144098,2,18,2,3,1630053165,2,6.0,-9.0,-9.0,14.0,4.0,1217986 -3036596,1630144099,2,16,2,4,1630053165,1,6.0,-9.0,-9.0,13.0,-9.0,1217986 -3036597,1630144472,2,38,0,1,1630053166,2,6.0,-9.0,-9.0,-9.0,4.0,1217987 -3036598,1630144473,2,38,1,2,1630053166,1,3.0,-9.0,-9.0,-9.0,4.0,1217987 -3036599,1630144474,2,16,2,3,1630053166,2,6.0,-9.0,-9.0,13.0,-9.0,1217987 -3036600,1630144584,2,56,0,1,1630053167,1,1.0,40.0,1.0,-9.0,4.0,1217988 -3036601,1630144004,2,70,0,1,1630053168,2,6.0,-9.0,-9.0,-9.0,4.0,1217989 -3036602,1630144006,2,40,2,2,1630053168,1,3.0,-9.0,-9.0,-9.0,4.0,1217989 -3036603,1630144005,2,16,7,3,1630053168,1,6.0,-9.0,-9.0,12.0,-9.0,1217989 -3036604,1630144548,2,41,0,1,1630053169,1,1.0,40.0,1.0,-9.0,4.0,1217990 -3036605,1630144573,2,42,0,1,1630053170,1,6.0,-9.0,-9.0,-9.0,4.0,1217991 -3036606,1630143888,2,73,0,1,1630053171,1,6.0,-9.0,-9.0,-9.0,2.0,1217992 -3036607,1630143882,2,74,1,2,1630053171,2,6.0,-9.0,-9.0,-9.0,4.0,1217992 -3036608,1630143886,2,18,7,3,1630053171,1,6.0,-9.0,-9.0,15.0,4.0,1217992 -3036609,1630143884,2,12,7,4,1630053171,1,-9.0,-9.0,-9.0,7.0,-9.0,1217992 -3036610,1630144593,2,46,0,1,1630053172,1,3.0,-9.0,-9.0,-9.0,4.0,1217993 -3036611,1630144109,2,50,0,1,1630053173,1,1.0,50.0,1.0,-9.0,4.0,1217994 -3036612,1630144107,2,51,1,2,1630053173,2,3.0,-9.0,-9.0,-9.0,4.0,1217994 -3036613,1630144108,2,18,2,3,1630053173,2,3.0,-9.0,-9.0,14.0,4.0,1217994 -3036614,1630144110,2,21,4,4,1630053173,1,3.0,30.0,6.0,-9.0,4.0,1217994 -3036615,1630144620,2,69,0,1,1630053174,1,6.0,-9.0,-9.0,-9.0,2.0,1217995 -3036616,1630144069,2,42,0,1,1630053175,2,1.0,40.0,1.0,-9.0,4.0,1217996 -3036617,1630144075,2,18,2,2,1630053175,1,6.0,-9.0,-9.0,14.0,4.0,1217996 -3036618,1630144084,2,7,2,3,1630053175,2,-9.0,-9.0,-9.0,4.0,-9.0,1217996 -3036619,1630144078,2,38,5,4,1630053175,1,6.0,-9.0,-9.0,-9.0,4.0,1217996 -3036620,1630144072,2,61,6,5,1630053175,2,6.0,-9.0,-9.0,-9.0,4.0,1217996 -3036621,1630144081,2,57,15,6,1630053175,1,6.0,-9.0,-9.0,-9.0,4.0,1217996 -3036622,1630144495,2,36,0,1,1630053176,2,6.0,-9.0,-9.0,-9.0,4.0,1217997 -3036623,1630144496,2,34,13,2,1630053176,1,6.0,-9.0,-9.0,-9.0,4.0,1217997 -3036624,1630143930,2,67,0,1,1630053177,2,6.0,-9.0,-9.0,-9.0,4.0,1217998 -3036625,1630143931,2,27,2,2,1630053177,1,1.0,30.0,1.0,-9.0,4.0,1217998 -3036626,1630144536,2,60,0,1,1630053178,1,6.0,-9.0,-9.0,-9.0,4.0,1217999 -3036627,1630143900,2,77,0,1,1630053179,2,6.0,-9.0,-9.0,-9.0,4.0,1218000 -3036628,1630143891,2,78,0,1,1630053180,2,6.0,-9.0,-9.0,-9.0,4.0,1218001 -3036629,1630143892,2,76,5,2,1630053180,2,6.0,-9.0,-9.0,-9.0,4.0,1218001 -3036630,1630143893,2,39,7,3,1630053180,1,6.0,-9.0,-9.0,-9.0,4.0,1218001 -3036631,1630143894,2,11,7,4,1630053180,2,-9.0,-9.0,-9.0,7.0,-9.0,1218001 -3036632,1630143895,2,8,7,5,1630053180,2,-9.0,-9.0,-9.0,6.0,-9.0,1218001 -3036633,1630144351,2,57,0,1,1630053181,2,1.0,28.0,4.0,-9.0,4.0,1218002 -3036634,1630144353,2,28,2,2,1630053181,1,6.0,-9.0,-9.0,13.0,4.0,1218002 -3036635,1630144352,2,6,7,3,1630053181,1,-9.0,-9.0,-9.0,4.0,-9.0,1218002 -3036636,1630143998,2,67,0,1,1630053182,2,6.0,35.0,1.0,-9.0,4.0,1218003 -3036637,1630143999,2,48,2,2,1630053182,2,1.0,25.0,5.0,-9.0,4.0,1218003 -3036638,1630144001,2,39,2,3,1630053182,1,2.0,40.0,1.0,-9.0,4.0,1218003 -3036639,1630144000,2,19,7,4,1630053182,2,1.0,40.0,1.0,15.0,4.0,1218003 -3036640,1630144002,2,27,10,5,1630053182,1,3.0,16.0,6.0,-9.0,4.0,1218003 -3036641,1630144003,2,40,15,6,1630053182,1,1.0,30.0,6.0,-9.0,4.0,1218003 -3036642,1630144219,2,77,0,1,1630053183,1,6.0,-9.0,-9.0,-9.0,4.0,1218004 -3036643,1630144218,2,64,5,2,1630053183,2,6.0,-9.0,-9.0,-9.0,4.0,1218004 -3036644,1630144207,2,54,0,1,1630053184,2,6.0,30.0,6.0,15.0,4.0,1218005 -3036645,1630144208,2,54,1,2,1630053184,1,1.0,56.0,1.0,-9.0,4.0,1218005 -3036646,1630144537,2,52,0,1,1630053185,1,3.0,-9.0,-9.0,-9.0,4.0,1218006 -3036647,1630144021,2,54,0,1,1630053186,2,6.0,-9.0,-9.0,-9.0,4.0,1218007 -3036648,1630144023,2,25,2,2,1630053186,2,6.0,-9.0,-9.0,-9.0,4.0,1218007 -3036649,1630144025,2,51,5,3,1630053186,2,6.0,-9.0,-9.0,-9.0,4.0,1218007 -3036650,1630144019,1,54,15,4,1630053186,2,6.0,-9.0,-9.0,-9.0,4.0,1218007 -3036651,1630144633,4,49,0,1,1630053187,1,6.0,4.0,6.0,-9.0,2.0,1218008 -3036652,1630144484,2,50,0,1,1630053188,2,6.0,40.0,1.0,-9.0,4.0,1218009 -3036653,1630144488,2,53,1,2,1630053188,1,6.0,-9.0,-9.0,-9.0,4.0,1218009 -3036654,1630144490,2,26,2,3,1630053188,1,6.0,-9.0,-9.0,-9.0,4.0,1218009 -3036655,1630144486,2,20,2,4,1630053188,2,1.0,25.0,1.0,-9.0,4.0,1218009 -3036656,1630144436,2,75,0,1,1630053189,1,6.0,-9.0,-9.0,-9.0,2.0,1218010 -3036657,1630144435,2,26,10,2,1630053189,2,1.0,20.0,4.0,-9.0,4.0,1218010 -3036658,1630144125,2,62,0,1,1630053190,2,6.0,-9.0,-9.0,-9.0,4.0,1218011 -3036659,1630144127,2,62,1,2,1630053190,1,6.0,-9.0,-9.0,-9.0,2.0,1218011 -3036660,1630144126,2,14,3,3,1630053190,1,-9.0,-9.0,-9.0,11.0,-9.0,1218011 -3036661,1630143950,2,77,0,1,1630053191,2,6.0,-9.0,-9.0,-9.0,4.0,1218012 -3036662,1630143955,2,53,2,2,1630053191,1,6.0,30.0,1.0,-9.0,4.0,1218012 -3036663,1630143951,2,44,2,3,1630053191,2,1.0,40.0,1.0,-9.0,4.0,1218012 -3036664,1630143952,2,27,7,4,1630053191,2,1.0,36.0,6.0,-9.0,4.0,1218012 -3036665,1630143953,2,25,7,5,1630053191,2,6.0,25.0,4.0,-9.0,4.0,1218012 -3036666,1630143954,2,3,7,6,1630053191,1,-9.0,-9.0,-9.0,1.0,-9.0,1218012 -3036667,1630143927,2,88,0,1,1630053192,2,6.0,-9.0,-9.0,-9.0,4.0,1218013 -3036668,1630143929,2,24,10,2,1630053192,1,1.0,40.0,1.0,-9.0,3.0,1218013 -3036669,1630143993,2,84,0,1,1630053193,1,6.0,-9.0,-9.0,-9.0,2.0,1218014 -3036670,1630143990,2,84,1,2,1630053193,2,6.0,-9.0,-9.0,-9.0,4.0,1218014 -3036671,1630143991,2,58,2,3,1630053193,2,1.0,40.0,3.0,-9.0,4.0,1218014 -3036672,1630143992,2,53,2,4,1630053193,2,1.0,6.0,5.0,-9.0,4.0,1218014 -3036673,1630144303,2,40,0,1,1630053194,1,1.0,40.0,1.0,-9.0,4.0,1218015 -3036674,1630144301,2,2,2,2,1630053194,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218015 -3036675,1630144304,2,0,2,3,1630053194,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218015 -3036676,1630144300,2,37,13,4,1630053194,2,6.0,-9.0,-9.0,-9.0,4.0,1218015 -3036677,1630144302,2,15,15,5,1630053194,1,-9.0,-9.0,-9.0,12.0,-9.0,1218015 -3036678,1630144305,2,12,15,6,1630053194,2,-9.0,-9.0,-9.0,9.0,-9.0,1218015 -3036679,1630144401,2,80,0,1,1630053195,1,6.0,-9.0,-9.0,-9.0,4.0,1218016 -3036680,1630144400,2,62,2,2,1630053195,1,6.0,-9.0,-9.0,-9.0,4.0,1218016 -3036681,1630144402,2,69,11,3,1630053195,1,1.0,32.0,1.0,-9.0,2.0,1218016 -3036682,1630144403,2,67,11,4,1630053195,1,6.0,-9.0,-9.0,-9.0,2.0,1218016 -3036683,1630144398,2,58,11,5,1630053195,2,6.0,-9.0,-9.0,-9.0,4.0,1218016 -3036684,1630144399,2,51,13,6,1630053195,2,6.0,-9.0,-9.0,-9.0,4.0,1218016 -3036685,1630144015,2,55,0,1,1630053196,1,1.0,48.0,1.0,-9.0,2.0,1218017 -3036686,1630144014,1,52,1,2,1630053196,2,6.0,-9.0,-9.0,-9.0,4.0,1218017 -3036687,1630144017,4,20,2,3,1630053196,2,6.0,-9.0,-9.0,15.0,4.0,1218017 -3036688,1630144016,4,18,2,4,1630053196,1,6.0,-9.0,-9.0,15.0,4.0,1218017 -3036689,1630144227,2,41,0,1,1630053197,2,1.0,40.0,1.0,-9.0,4.0,1218018 -3036690,1630144235,2,42,1,2,1630053197,1,3.0,-9.0,-9.0,-9.0,4.0,1218018 -3036691,1630144229,2,11,2,3,1630053197,1,-9.0,-9.0,-9.0,10.0,-9.0,1218018 -3036692,1630144231,2,10,2,4,1630053197,1,-9.0,-9.0,-9.0,7.0,-9.0,1218018 -3036693,1630144233,2,8,2,5,1630053197,1,-9.0,-9.0,-9.0,5.0,-9.0,1218018 -3036694,1630144112,2,47,0,1,1630053198,1,2.0,40.0,1.0,-9.0,2.0,1218019 -3036695,1630144111,2,52,1,2,1630053198,2,1.0,16.0,6.0,-9.0,4.0,1218019 -3036696,1630144592,2,44,0,1,1630053199,1,1.0,40.0,1.0,-9.0,4.0,1218020 -3036697,1630143903,2,44,0,1,1630053200,2,3.0,40.0,4.0,-9.0,4.0,1218021 -3036698,1630143904,2,59,6,2,1630053200,1,6.0,-9.0,-9.0,-9.0,4.0,1218021 -3036699,1630143902,2,68,11,3,1630053200,2,6.0,-9.0,-9.0,-9.0,4.0,1218021 -3036700,1630143905,2,45,13,4,1630053200,1,6.0,-9.0,-9.0,-9.0,4.0,1218021 -3036701,1630144095,2,55,0,1,1630053201,1,6.0,-9.0,-9.0,-9.0,4.0,1218022 -3036702,1630144093,2,46,1,2,1630053201,2,6.0,-9.0,-9.0,-9.0,4.0,1218022 -3036703,1630144096,2,18,2,3,1630053201,1,6.0,-9.0,-9.0,14.0,4.0,1218022 -3036704,1630144094,2,17,2,4,1630053201,1,6.0,-9.0,-9.0,13.0,4.0,1218022 -3036705,1630144591,2,57,0,1,1630053202,1,6.0,-9.0,-9.0,-9.0,2.0,1218023 -3036706,1630143910,2,73,0,1,1630053203,2,6.0,-9.0,-9.0,-9.0,4.0,1218024 -3036707,1630143913,2,41,2,2,1630053203,1,3.0,-9.0,-9.0,-9.0,4.0,1218024 -3036708,1630143914,2,33,7,3,1630053203,1,1.0,48.0,1.0,-9.0,4.0,1218024 -3036709,1630143911,2,22,7,4,1630053203,2,1.0,4.0,1.0,-9.0,4.0,1218024 -3036710,1630143912,2,10,7,5,1630053203,1,-9.0,-9.0,-9.0,7.0,-9.0,1218024 -3036711,1630143915,2,18,10,6,1630053203,1,3.0,20.0,6.0,15.0,4.0,1218024 -3036712,1630144295,2,42,0,1,1630053204,1,6.0,-9.0,-9.0,-9.0,4.0,1218025 -3036713,1630144293,2,38,1,2,1630053204,2,3.0,-9.0,-9.0,-9.0,4.0,1218025 -3036714,1630144294,2,19,4,3,1630053204,2,6.0,-9.0,-9.0,-9.0,4.0,1218025 -3036715,1630144296,2,18,4,4,1630053204,1,6.0,-9.0,-9.0,-9.0,4.0,1218025 -3036716,1630145181,2,38,0,1,1630053205,2,1.0,40.0,1.0,-9.0,4.0,1218026 -3036717,1630145183,2,38,1,2,1630053205,1,1.0,40.0,1.0,-9.0,4.0,1218026 -3036718,1630145182,2,6,2,3,1630053205,1,-9.0,-9.0,-9.0,3.0,-9.0,1218026 -3036719,1630145184,2,2,2,4,1630053205,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218026 -3036720,1630144671,1,41,0,1,1630053206,2,1.0,40.0,1.0,-9.0,4.0,1218027 -3036721,1630144673,1,43,1,2,1630053206,1,1.0,40.0,1.0,-9.0,4.0,1218027 -3036722,1630144675,1,10,2,3,1630053206,2,-9.0,-9.0,-9.0,7.0,-9.0,1218027 -3036723,1630144677,1,7,2,4,1630053206,1,-9.0,-9.0,-9.0,4.0,-9.0,1218027 -3036724,1630144679,1,7,2,5,1630053206,1,-9.0,-9.0,-9.0,4.0,-9.0,1218027 -3036725,1630144669,1,70,6,6,1630053206,2,6.0,-9.0,-9.0,-9.0,4.0,1218027 -3036726,1630144706,1,37,0,1,1630053207,1,1.0,45.0,1.0,-9.0,4.0,1218028 -3036727,1630144705,1,25,13,2,1630053207,2,1.0,40.0,1.0,-9.0,4.0,1218028 -3036728,1630145346,2,30,0,1,1630053208,1,3.0,36.0,5.0,-9.0,4.0,1218029 -3036729,1630144745,1,45,0,1,1630053209,1,1.0,50.0,1.0,-9.0,4.0,1218030 -3036730,1630144905,2,48,0,1,1630053210,1,1.0,35.0,1.0,-9.0,2.0,1218031 -3036731,1630144899,2,48,1,2,1630053210,2,1.0,40.0,4.0,-9.0,4.0,1218031 -3036732,1630144901,2,16,4,3,1630053210,1,6.0,-9.0,-9.0,13.0,-9.0,1218031 -3036733,1630144903,2,16,4,4,1630053210,1,6.0,-9.0,-9.0,13.0,-9.0,1218031 -3036734,1630145126,2,60,0,1,1630053211,1,1.0,45.0,1.0,-9.0,4.0,1218032 -3036735,1630145125,2,56,1,2,1630053211,2,1.0,50.0,1.0,-9.0,4.0,1218032 -3036736,1630144758,1,48,0,1,1630053212,1,1.0,45.0,1.0,-9.0,4.0,1218033 -3036737,1630144759,1,43,13,2,1630053212,1,1.0,40.0,1.0,-9.0,4.0,1218033 -3036738,1630145213,2,60,0,1,1630053213,2,6.0,-9.0,-9.0,-9.0,4.0,1218034 -3036739,1630145268,2,64,0,1,1630053214,1,1.0,20.0,4.0,-9.0,4.0,1218035 -3036740,1630144858,2,54,0,1,1630053215,2,1.0,40.0,1.0,-9.0,4.0,1218036 -3036741,1630145370,2,54,0,1,1630053216,1,1.0,40.0,1.0,-9.0,4.0,1218037 -3036742,1630145072,2,58,0,1,1630053217,2,6.0,-9.0,-9.0,-9.0,4.0,1218038 -3036743,1630144840,2,63,0,1,1630053218,2,6.0,-9.0,-9.0,16.0,4.0,1218039 -3036744,1630145364,2,63,0,1,1630053219,1,6.0,-9.0,-9.0,-9.0,4.0,1218040 -3036745,1630145365,2,63,0,1,1630053220,1,6.0,-9.0,-9.0,-9.0,4.0,1218041 -3036746,1630145426,2,58,0,1,1630053221,1,3.0,-9.0,-9.0,-9.0,4.0,1218042 -3036747,1630145327,2,46,0,1,1630053222,1,6.0,-9.0,-9.0,-9.0,4.0,1218043 -3036748,1630145328,2,46,0,1,1630053223,1,6.0,-9.0,-9.0,-9.0,4.0,1218044 -3036749,1630145366,2,63,0,1,1630053224,1,6.0,-9.0,-9.0,-9.0,4.0,1218045 -3036750,1630145329,2,46,0,1,1630053225,1,6.0,-9.0,-9.0,-9.0,4.0,1218046 -3036751,1630145179,2,61,0,1,1630053226,2,6.0,-9.0,-9.0,-9.0,4.0,1218047 -3036752,1630144699,1,49,0,1,1630053227,2,6.0,-9.0,-9.0,-9.0,4.0,1218048 -3036753,1630145335,2,46,0,1,1630053228,1,6.0,-9.0,-9.0,-9.0,4.0,1218049 -3036754,1630145348,2,53,0,1,1630053229,1,6.0,40.0,1.0,-9.0,2.0,1218050 -3036755,1630145392,2,52,0,1,1630053230,1,6.0,-9.0,-9.0,-9.0,4.0,1218051 -3036756,1630145393,2,52,0,1,1630053231,1,6.0,-9.0,-9.0,-9.0,4.0,1218052 -3036757,1630144886,2,54,0,1,1630053232,2,3.0,30.0,5.0,15.0,4.0,1218053 -3036758,1630145336,2,46,0,1,1630053233,1,6.0,-9.0,-9.0,-9.0,4.0,1218054 -3036759,1630145131,2,60,0,1,1630053234,2,6.0,14.0,4.0,-9.0,4.0,1218055 -3036760,1630145419,2,62,0,1,1630053235,1,6.0,-9.0,-9.0,-9.0,4.0,1218056 -3036761,1630145362,2,58,0,1,1630053236,1,6.0,-9.0,-9.0,-9.0,4.0,1218057 -3036762,1630145394,2,52,0,1,1630053237,1,6.0,-9.0,-9.0,-9.0,4.0,1218058 -3036763,1630145363,2,58,0,1,1630053238,1,6.0,-9.0,-9.0,-9.0,4.0,1218059 -3036764,1630144747,1,64,0,1,1630053239,1,6.0,-9.0,-9.0,-9.0,4.0,1218060 -3036765,1630144746,1,59,0,1,1630053240,1,6.0,-9.0,-9.0,-9.0,4.0,1218061 -3036766,1630144806,2,53,0,1,1630053241,1,3.0,25.0,6.0,-9.0,4.0,1218062 -3036767,1630144802,2,49,1,2,1630053241,2,6.0,-9.0,-9.0,-9.0,4.0,1218062 -3036768,1630144808,2,18,2,3,1630053241,1,6.0,-9.0,-9.0,15.0,4.0,1218062 -3036769,1630144804,2,27,4,4,1630053241,2,3.0,-9.0,-9.0,15.0,4.0,1218062 -3036770,1630144810,2,7,7,5,1630053241,2,-9.0,-9.0,-9.0,5.0,-9.0,1218062 -3036771,1630144812,2,4,7,6,1630053241,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218062 -3036772,1630144980,2,55,0,1,1630053242,2,6.0,-9.0,-9.0,-9.0,4.0,1218063 -3036773,1630144981,2,56,1,2,1630053242,1,6.0,-9.0,-9.0,-9.0,4.0,1218063 -3036774,1630144854,2,45,0,1,1630053243,2,6.0,-9.0,-9.0,-9.0,2.0,1218064 -3036775,1630144856,2,7,2,2,1630053243,2,-9.0,-9.0,-9.0,3.0,-9.0,1218064 -3036776,1630145505,2,47,0,1,1630053244,1,1.0,40.0,1.0,-9.0,4.0,1218065 -3036777,1630145326,2,47,0,1,1630053245,1,1.0,6.0,1.0,-9.0,4.0,1218066 -3036778,1630145492,2,50,0,1,1630053246,1,1.0,40.0,1.0,-9.0,4.0,1218067 -3036779,1630145271,2,57,0,1,1630053247,1,1.0,15.0,5.0,-9.0,2.0,1218068 -3036780,1630144659,2,94,0,1,1630053248,2,6.0,-9.0,-9.0,-9.0,4.0,1218069 -3036781,1630145534,2,83,0,1,1630053249,1,6.0,-9.0,-9.0,-9.0,4.0,1218070 -3036782,1630145519,2,68,0,1,1630053250,1,3.0,-9.0,-9.0,-9.0,2.0,1218071 -3036783,1630145516,2,65,0,1,1630053251,1,6.0,-9.0,-9.0,-9.0,2.0,1218072 -3036784,1630145520,2,68,0,1,1630053252,1,6.0,-9.0,-9.0,-9.0,4.0,1218073 -3036785,1630144651,2,87,0,1,1630053253,2,6.0,-9.0,-9.0,-9.0,4.0,1218074 -3036786,1630144648,2,81,0,1,1630053254,2,6.0,-9.0,-9.0,-9.0,4.0,1218075 -3036787,1630144701,1,34,0,1,1630053255,2,1.0,24.0,1.0,-9.0,4.0,1218076 -3036788,1630144702,1,35,1,2,1630053255,1,1.0,50.0,1.0,-9.0,4.0,1218076 -3036789,1630144704,1,2,2,3,1630053255,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218076 -3036790,1630144703,2,3,3,4,1630053255,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218076 -3036791,1630144865,2,38,0,1,1630053256,2,1.0,70.0,1.0,-9.0,4.0,1218077 -3036792,1630144868,2,19,2,2,1630053256,2,1.0,24.0,3.0,15.0,4.0,1218077 -3036793,1630144871,2,14,2,3,1630053256,1,-9.0,-9.0,-9.0,11.0,-9.0,1218077 -3036794,1630144880,2,5,2,4,1630053256,2,-9.0,-9.0,-9.0,1.0,-9.0,1218077 -3036795,1630144874,2,18,5,5,1630053256,1,6.0,-9.0,-9.0,12.0,4.0,1218077 -3036796,1630144877,2,60,6,6,1630053256,1,6.0,-9.0,-9.0,-9.0,4.0,1218077 -3036797,1630144866,2,38,0,1,1630053257,2,1.0,70.0,1.0,-9.0,4.0,1218078 -3036798,1630144869,2,19,2,2,1630053257,2,1.0,24.0,3.0,15.0,4.0,1218078 -3036799,1630144872,2,14,2,3,1630053257,1,-9.0,-9.0,-9.0,11.0,-9.0,1218078 -3036800,1630144881,2,5,2,4,1630053257,2,-9.0,-9.0,-9.0,1.0,-9.0,1218078 -3036801,1630144875,2,18,5,5,1630053257,1,6.0,-9.0,-9.0,12.0,4.0,1218078 -3036802,1630144878,2,60,6,6,1630053257,1,6.0,-9.0,-9.0,-9.0,4.0,1218078 -3036803,1630144867,2,38,0,1,1630053258,2,1.0,70.0,1.0,-9.0,4.0,1218079 -3036804,1630144870,2,19,2,2,1630053258,2,1.0,24.0,3.0,15.0,4.0,1218079 -3036805,1630144873,2,14,2,3,1630053258,1,-9.0,-9.0,-9.0,11.0,-9.0,1218079 -3036806,1630144882,2,5,2,4,1630053258,2,-9.0,-9.0,-9.0,1.0,-9.0,1218079 -3036807,1630144876,2,18,5,5,1630053258,1,6.0,-9.0,-9.0,12.0,4.0,1218079 -3036808,1630144879,2,60,6,6,1630053258,1,6.0,-9.0,-9.0,-9.0,4.0,1218079 -3036809,1630144765,1,38,0,1,1630053259,1,1.0,40.0,1.0,-9.0,4.0,1218080 -3036810,1630144766,1,42,12,2,1630053259,1,1.0,40.0,1.0,-9.0,4.0,1218080 -3036811,1630144984,2,43,0,1,1630053260,2,1.0,50.0,1.0,-9.0,4.0,1218081 -3036812,1630144710,1,31,0,1,1630053261,2,1.0,50.0,1.0,16.0,4.0,1218082 -3036813,1630145425,2,34,0,1,1630053262,1,1.0,60.0,1.0,-9.0,4.0,1218083 -3036814,1630144737,1,27,0,1,1630053263,1,1.0,40.0,1.0,-9.0,4.0,1218084 -3036815,1630145140,2,29,0,1,1630053264,2,6.0,-9.0,-9.0,-9.0,4.0,1218085 -3036816,1630145142,2,14,2,2,1630053264,1,-9.0,-9.0,-9.0,9.0,-9.0,1218085 -3036817,1630145144,2,4,2,3,1630053264,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218085 -3036818,1630145146,2,2,2,4,1630053264,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218085 -3036819,1630145148,2,45,6,5,1630053264,1,3.0,-9.0,-9.0,-9.0,4.0,1218085 -3036820,1630145216,2,30,0,1,1630053265,2,3.0,-9.0,-9.0,-9.0,4.0,1218086 -3036821,1630145218,2,9,2,2,1630053265,2,-9.0,-9.0,-9.0,5.0,-9.0,1218086 -3036822,1630145219,2,8,2,3,1630053265,2,-9.0,-9.0,-9.0,5.0,-9.0,1218086 -3036823,1630145217,2,5,2,4,1630053265,1,-9.0,-9.0,-9.0,2.0,-9.0,1218086 -3036824,1630144998,2,37,0,1,1630053266,2,6.0,-9.0,-9.0,-9.0,4.0,1218087 -3036825,1630145000,2,8,2,2,1630053266,1,-9.0,-9.0,-9.0,3.0,-9.0,1218087 -3036826,1630145002,2,5,2,3,1630053266,1,-9.0,-9.0,-9.0,2.0,-9.0,1218087 -3036827,1630145415,2,36,0,1,1630053267,1,6.0,-9.0,-9.0,-9.0,4.0,1218088 -3036828,1630145383,2,28,0,1,1630053268,1,3.0,-9.0,-9.0,-9.0,4.0,1218089 -3036829,1630145287,2,44,0,1,1630053269,1,3.0,6.0,6.0,-9.0,2.0,1218090 -3036830,1630145416,2,36,0,1,1630053270,1,6.0,-9.0,-9.0,-9.0,4.0,1218091 -3036831,1630144818,2,40,0,1,1630053271,2,6.0,-9.0,-9.0,12.0,4.0,1218092 -3036832,1630145382,2,43,0,1,1630053272,1,6.0,-9.0,-9.0,-9.0,4.0,1218093 -3036833,1630145431,2,42,0,1,1630053273,1,3.0,-9.0,-9.0,-9.0,4.0,1218094 -3036834,1630145417,2,36,0,1,1630053274,1,6.0,-9.0,-9.0,-9.0,4.0,1218095 -3036835,1630145384,2,28,0,1,1630053275,1,3.0,-9.0,-9.0,-9.0,4.0,1218096 -3036836,1630145502,2,39,0,1,1630053276,1,6.0,-9.0,-9.0,-9.0,4.0,1218097 -3036837,1630144795,2,38,0,1,1630053277,2,6.0,-9.0,-9.0,-9.0,4.0,1218098 -3036838,1630145475,2,39,0,1,1630053278,1,6.0,-9.0,-9.0,-9.0,4.0,1218099 -3036839,1630145296,2,26,0,1,1630053279,1,6.0,-9.0,-9.0,-9.0,4.0,1218100 -3036840,1630145275,2,41,0,1,1630053280,1,3.0,24.0,5.0,-9.0,4.0,1218101 -3036841,1630145451,2,39,0,1,1630053281,1,6.0,-9.0,-9.0,-9.0,4.0,1218102 -3036842,1630144720,1,39,0,1,1630053282,1,6.0,8.0,6.0,16.0,4.0,1218103 -3036843,1630145452,2,29,0,1,1630053283,1,6.0,-9.0,-9.0,16.0,3.0,1218104 -3036844,1630145453,2,29,0,1,1630053284,1,6.0,-9.0,-9.0,16.0,3.0,1218105 -3036845,1630145379,2,43,0,1,1630053285,1,6.0,40.0,1.0,15.0,4.0,1218106 -3036846,1630145433,2,40,0,1,1630053286,1,6.0,-9.0,-9.0,-9.0,4.0,1218107 -3036847,1630145469,2,28,0,1,1630053287,1,3.0,25.0,4.0,15.0,4.0,1218108 -3036848,1630145478,2,42,0,1,1630053288,1,6.0,-9.0,-9.0,-9.0,4.0,1218109 -3036849,1630145338,2,35,0,1,1630053289,1,3.0,-9.0,-9.0,-9.0,4.0,1218110 -3036850,1630145339,2,35,0,1,1630053290,1,3.0,-9.0,-9.0,-9.0,4.0,1218111 -3036851,1630145454,2,29,0,1,1630053291,1,6.0,-9.0,-9.0,16.0,3.0,1218112 -3036852,1630145380,2,43,0,1,1630053292,1,6.0,40.0,1.0,15.0,4.0,1218113 -3036853,1630144729,1,31,0,1,1630053293,1,3.0,8.0,4.0,-9.0,4.0,1218114 -3036854,1630144730,1,31,0,1,1630053294,1,3.0,8.0,4.0,-9.0,4.0,1218115 -3036855,1630144996,2,39,0,1,1630053295,2,3.0,-9.0,-9.0,-9.0,4.0,1218116 -3036856,1630144770,2,38,0,1,1630053296,2,6.0,-9.0,-9.0,-9.0,4.0,1218117 -3036857,1630144772,2,17,2,2,1630053296,1,6.0,-9.0,-9.0,13.0,4.0,1218117 -3036858,1630144780,2,14,2,3,1630053296,2,-9.0,-9.0,-9.0,11.0,-9.0,1218117 -3036859,1630144774,2,10,2,4,1630053296,1,-9.0,-9.0,-9.0,7.0,-9.0,1218117 -3036860,1630144782,2,8,2,5,1630053296,2,-9.0,-9.0,-9.0,4.0,-9.0,1218117 -3036861,1630144784,2,6,2,6,1630053296,2,-9.0,-9.0,-9.0,3.0,-9.0,1218117 -3036862,1630144776,2,4,2,7,1630053296,1,-9.0,-9.0,-9.0,1.0,-9.0,1218117 -3036863,1630144778,2,39,5,8,1630053296,1,3.0,-9.0,-9.0,-9.0,4.0,1218117 -3036864,1630144821,2,28,0,1,1630053297,2,3.0,-9.0,-9.0,-9.0,4.0,1218118 -3036865,1630144827,2,11,2,2,1630053297,2,-9.0,-9.0,-9.0,7.0,-9.0,1218118 -3036866,1630144825,2,9,2,3,1630053297,1,-9.0,-9.0,-9.0,6.0,-9.0,1218118 -3036867,1630144829,2,6,2,4,1630053297,2,-9.0,-9.0,-9.0,5.0,-9.0,1218118 -3036868,1630144831,2,5,2,5,1630053297,2,-9.0,-9.0,-9.0,3.0,-9.0,1218118 -3036869,1630144823,2,55,6,6,1630053297,2,6.0,-9.0,-9.0,-9.0,4.0,1218118 -3036870,1630145199,2,25,0,1,1630053298,2,3.0,-9.0,-9.0,-9.0,4.0,1218119 -3036871,1630145201,2,6,2,2,1630053298,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218119 -3036872,1630145207,2,5,2,3,1630053298,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218119 -3036873,1630145209,2,4,2,4,1630053298,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218119 -3036874,1630145203,2,3,2,5,1630053298,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218119 -3036875,1630145205,2,2,2,6,1630053298,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218119 -3036876,1630145200,2,25,0,1,1630053299,2,3.0,-9.0,-9.0,-9.0,4.0,1218120 -3036877,1630145202,2,6,2,2,1630053299,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218120 -3036878,1630145208,2,5,2,3,1630053299,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218120 -3036879,1630145210,2,4,2,4,1630053299,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218120 -3036880,1630145204,2,3,2,5,1630053299,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218120 -3036881,1630145206,2,2,2,6,1630053299,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218120 -3036882,1630144822,2,28,0,1,1630053300,2,3.0,-9.0,-9.0,-9.0,4.0,1218121 -3036883,1630144828,2,11,2,2,1630053300,2,-9.0,-9.0,-9.0,7.0,-9.0,1218121 -3036884,1630144826,2,9,2,3,1630053300,1,-9.0,-9.0,-9.0,6.0,-9.0,1218121 -3036885,1630144830,2,6,2,4,1630053300,2,-9.0,-9.0,-9.0,5.0,-9.0,1218121 -3036886,1630144832,2,5,2,5,1630053300,2,-9.0,-9.0,-9.0,3.0,-9.0,1218121 -3036887,1630144824,2,55,6,6,1630053300,2,6.0,-9.0,-9.0,-9.0,4.0,1218121 -3036888,1630144887,2,25,0,1,1630053301,2,3.0,-9.0,-9.0,-9.0,4.0,1218122 -3036889,1630144890,2,4,2,2,1630053301,1,-9.0,-9.0,-9.0,1.0,-9.0,1218122 -3036890,1630145224,2,35,0,1,1630053302,2,6.0,-9.0,-9.0,-9.0,4.0,1218123 -3036891,1630145225,2,9,2,2,1630053302,1,-9.0,-9.0,-9.0,6.0,-9.0,1218123 -3036892,1630144888,2,25,0,1,1630053303,2,3.0,-9.0,-9.0,-9.0,4.0,1218124 -3036893,1630144891,2,4,2,2,1630053303,1,-9.0,-9.0,-9.0,1.0,-9.0,1218124 -3036894,1630144889,2,25,0,1,1630053304,2,3.0,-9.0,-9.0,-9.0,4.0,1218125 -3036895,1630144892,2,4,2,2,1630053304,1,-9.0,-9.0,-9.0,1.0,-9.0,1218125 -3036896,1630145226,2,33,0,1,1630053305,2,3.0,40.0,3.0,-9.0,4.0,1218126 -3036897,1630145229,2,9,2,2,1630053305,1,-9.0,-9.0,-9.0,6.0,-9.0,1218126 -3036898,1630145227,2,33,0,1,1630053306,2,3.0,40.0,3.0,-9.0,4.0,1218127 -3036899,1630145230,2,9,2,2,1630053306,1,-9.0,-9.0,-9.0,6.0,-9.0,1218127 -3036900,1630145228,2,33,0,1,1630053307,2,3.0,40.0,3.0,-9.0,4.0,1218128 -3036901,1630145231,2,9,2,2,1630053307,1,-9.0,-9.0,-9.0,6.0,-9.0,1218128 -3036902,1630145115,2,28,0,1,1630053308,2,6.0,-9.0,-9.0,15.0,4.0,1218129 -3036903,1630145117,2,3,2,2,1630053308,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218129 -3036904,1630145068,2,27,0,1,1630053309,1,1.0,60.0,1.0,-9.0,4.0,1218130 -3036905,1630145064,2,1,2,2,1630053309,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218130 -3036906,1630145066,2,4,4,3,1630053309,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218130 -3036907,1630145069,2,27,0,1,1630053310,1,1.0,60.0,1.0,-9.0,4.0,1218131 -3036908,1630145065,2,1,2,2,1630053310,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218131 -3036909,1630145067,2,4,4,3,1630053310,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218131 -3036910,1630145063,2,20,13,4,1630053310,2,6.0,-9.0,-9.0,-9.0,4.0,1218131 -3036911,1630145316,2,37,0,1,1630053311,1,1.0,40.0,6.0,-9.0,4.0,1218132 -3036912,1630145301,2,40,0,1,1630053312,1,1.0,40.0,6.0,-9.0,4.0,1218133 -3036913,1630145317,2,37,0,1,1630053313,1,1.0,40.0,6.0,-9.0,4.0,1218134 -3036914,1630144716,1,42,0,1,1630053314,1,1.0,40.0,1.0,-9.0,2.0,1218135 -3036915,1630145408,2,29,0,1,1630053315,1,1.0,40.0,1.0,-9.0,4.0,1218136 -3036916,1630145422,2,33,0,1,1630053316,1,1.0,10.0,6.0,-9.0,4.0,1218137 -3036917,1630145480,2,44,0,1,1630053317,1,1.0,40.0,1.0,-9.0,4.0,1218138 -3036918,1630145430,2,29,0,1,1630053318,1,1.0,40.0,1.0,-9.0,4.0,1218139 -3036919,1630144712,1,31,0,1,1630053319,1,1.0,35.0,1.0,-9.0,4.0,1218140 -3036920,1630144742,1,27,0,1,1630053320,1,1.0,40.0,1.0,-9.0,4.0,1218141 -3036921,1630144713,1,31,0,1,1630053321,1,1.0,35.0,1.0,-9.0,4.0,1218142 -3036922,1630144714,1,31,0,1,1630053322,1,1.0,35.0,1.0,-9.0,4.0,1218143 -3036923,1630144700,1,26,0,1,1630053323,2,1.0,40.0,5.0,-9.0,4.0,1218144 -3036924,1630144955,2,34,0,1,1630053324,2,1.0,15.0,1.0,-9.0,4.0,1218145 -3036925,1630144957,2,16,2,2,1630053324,2,6.0,-9.0,-9.0,14.0,-9.0,1218145 -3036926,1630144958,2,15,2,3,1630053324,2,-9.0,-9.0,-9.0,12.0,-9.0,1218145 -3036927,1630144959,2,14,2,4,1630053324,2,-9.0,-9.0,-9.0,11.0,-9.0,1218145 -3036928,1630144960,2,14,2,5,1630053324,2,-9.0,-9.0,-9.0,11.0,-9.0,1218145 -3036929,1630144961,2,11,2,6,1630053324,2,-9.0,-9.0,-9.0,9.0,-9.0,1218145 -3036930,1630144956,2,11,2,7,1630053324,1,-9.0,-9.0,-9.0,9.0,-9.0,1218145 -3036931,1630145248,2,35,0,1,1630053325,1,6.0,-9.0,-9.0,-9.0,4.0,1218146 -3036932,1630145249,2,10,2,2,1630053325,2,-9.0,-9.0,-9.0,7.0,-9.0,1218146 -3036933,1630145245,2,6,2,3,1630053325,1,-9.0,-9.0,-9.0,4.0,-9.0,1218146 -3036934,1630145246,2,5,2,4,1630053325,1,-9.0,-9.0,-9.0,2.0,-9.0,1218146 -3036935,1630145250,2,3,2,5,1630053325,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218146 -3036936,1630145247,2,0,2,6,1630053325,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218146 -3036937,1630145243,2,54,10,7,1630053325,2,1.0,40.0,1.0,-9.0,4.0,1218146 -3036938,1630145244,2,29,13,8,1630053325,2,3.0,-9.0,-9.0,-9.0,4.0,1218146 -3036939,1630145187,2,32,0,1,1630053326,2,3.0,-9.0,-9.0,-9.0,4.0,1218147 -3036940,1630145195,2,50,1,2,1630053326,1,1.0,30.0,1.0,-9.0,4.0,1218147 -3036941,1630145191,2,9,2,3,1630053326,1,-9.0,-9.0,-9.0,6.0,-9.0,1218147 -3036942,1630145193,2,5,2,4,1630053326,1,-9.0,-9.0,-9.0,2.0,-9.0,1218147 -3036943,1630145197,2,1,2,5,1630053326,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218147 -3036944,1630145189,2,57,15,6,1630053326,2,3.0,-9.0,-9.0,-9.0,4.0,1218147 -3036945,1630145010,2,28,0,1,1630053327,2,1.0,40.0,1.0,15.0,4.0,1218148 -3036946,1630145011,2,3,2,2,1630053327,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218148 -3036947,1630144938,2,29,0,1,1630053328,2,1.0,40.0,4.0,-9.0,4.0,1218149 -3036948,1630144939,2,9,2,2,1630053328,1,-9.0,-9.0,-9.0,5.0,-9.0,1218149 -3036949,1630145409,2,60,0,1,1630053329,1,1.0,40.0,1.0,-9.0,4.0,1218150 -3036950,1630144762,1,57,0,1,1630053330,1,1.0,45.0,2.0,-9.0,4.0,1218151 -3036951,1630145070,2,47,0,1,1630053331,2,1.0,40.0,1.0,-9.0,4.0,1218152 -3036952,1630145071,2,14,2,2,1630053331,2,-9.0,-9.0,-9.0,12.0,-9.0,1218152 -3036953,1630144913,2,64,0,1,1630053332,1,6.0,-9.0,-9.0,-9.0,4.0,1218153 -3036954,1630144907,2,64,1,2,1630053332,2,6.0,-9.0,-9.0,-9.0,4.0,1218153 -3036955,1630144915,2,41,2,3,1630053332,1,1.0,20.0,3.0,-9.0,4.0,1218153 -3036956,1630144909,2,32,2,4,1630053332,2,1.0,8.0,1.0,-9.0,4.0,1218153 -3036957,1630144917,2,18,3,5,1630053332,1,6.0,-9.0,-9.0,14.0,4.0,1218153 -3036958,1630144911,2,16,3,6,1630053332,1,6.0,-9.0,-9.0,11.0,-9.0,1218153 -3036959,1630144919,2,14,3,7,1630053332,2,-9.0,-9.0,-9.0,11.0,-9.0,1218153 -3036960,1630144921,2,13,3,8,1630053332,2,-9.0,-9.0,-9.0,8.0,-9.0,1218153 -3036961,1630144923,2,10,7,9,1630053332,2,-9.0,-9.0,-9.0,6.0,-9.0,1218153 -3036962,1630145309,2,64,0,1,1630053333,1,6.0,-9.0,-9.0,-9.0,2.0,1218154 -3036963,1630145441,2,47,0,1,1630053334,1,1.0,40.0,1.0,-9.0,4.0,1218155 -3036964,1630145413,2,56,0,1,1630053335,1,1.0,40.0,1.0,-9.0,4.0,1218156 -3036965,1630145251,2,50,0,1,1630053336,2,1.0,45.0,1.0,-9.0,4.0,1218157 -3036966,1630145432,2,60,0,1,1630053337,1,1.0,40.0,1.0,-9.0,4.0,1218158 -3036967,1630145359,2,62,0,1,1630053338,1,1.0,50.0,1.0,-9.0,2.0,1218159 -3036968,1630145406,2,58,0,1,1630053339,1,6.0,-9.0,-9.0,-9.0,4.0,1218160 -3036969,1630145489,2,59,0,1,1630053340,1,6.0,-9.0,-9.0,-9.0,4.0,1218161 -3036970,1630145158,2,51,0,1,1630053341,2,3.0,-9.0,-9.0,-9.0,4.0,1218162 -3036971,1630145389,2,51,0,1,1630053342,1,6.0,-9.0,-9.0,-9.0,2.0,1218163 -3036972,1630145289,2,64,0,1,1630053343,1,6.0,-9.0,-9.0,-9.0,2.0,1218164 -3036973,1630145298,2,60,0,1,1630053344,1,6.0,-9.0,-9.0,-9.0,4.0,1218165 -3036974,1630145375,2,56,0,1,1630053345,1,6.0,-9.0,-9.0,-9.0,4.0,1218166 -3036975,1630145496,2,62,0,1,1630053346,1,6.0,-9.0,-9.0,-9.0,2.0,1218167 -3036976,1630145376,2,56,0,1,1630053347,1,6.0,-9.0,-9.0,-9.0,4.0,1218168 -3036977,1630145465,2,47,0,1,1630053348,1,3.0,-9.0,-9.0,-9.0,4.0,1218169 -3036978,1630145449,2,56,0,1,1630053349,1,6.0,-9.0,-9.0,-9.0,4.0,1218170 -3036979,1630144794,2,61,0,1,1630053350,2,6.0,-9.0,-9.0,-9.0,4.0,1218171 -3036980,1630145371,2,62,0,1,1630053351,1,6.0,-9.0,-9.0,-9.0,2.0,1218172 -3036981,1630145381,2,58,0,1,1630053352,1,6.0,-9.0,-9.0,-9.0,4.0,1218173 -3036982,1630145342,2,49,0,1,1630053353,1,3.0,-9.0,-9.0,-9.0,4.0,1218174 -3036983,1630145330,2,58,0,1,1630053354,1,6.0,-9.0,-9.0,-9.0,4.0,1218175 -3036984,1630145397,2,54,0,1,1630053355,1,6.0,-9.0,-9.0,-9.0,4.0,1218176 -3036985,1630145481,2,57,0,1,1630053356,1,6.0,-9.0,-9.0,-9.0,2.0,1218177 -3036986,1630145304,2,58,0,1,1630053357,1,6.0,-9.0,-9.0,-9.0,3.0,1218178 -3036987,1630145241,2,52,0,1,1630053358,2,3.0,-9.0,-9.0,-9.0,4.0,1218179 -3036988,1630145385,2,59,0,1,1630053359,1,6.0,-9.0,-9.0,-9.0,2.0,1218180 -3036989,1630145311,2,60,0,1,1630053360,1,6.0,-9.0,-9.0,-9.0,4.0,1218181 -3036990,1630145322,2,54,0,1,1630053361,1,6.0,-9.0,-9.0,-9.0,4.0,1218182 -3036991,1630145290,2,64,0,1,1630053362,1,6.0,-9.0,-9.0,-9.0,2.0,1218183 -3036992,1630145266,2,53,0,1,1630053363,1,3.0,-9.0,-9.0,-9.0,4.0,1218184 -3036993,1630145355,2,57,0,1,1630053364,1,6.0,-9.0,-9.0,-9.0,2.0,1218185 -3036994,1630145314,2,60,0,1,1630053365,1,3.0,-9.0,-9.0,-9.0,4.0,1218186 -3036995,1630145466,2,47,0,1,1630053366,1,3.0,-9.0,-9.0,-9.0,4.0,1218187 -3036996,1630145390,2,62,0,1,1630053367,1,6.0,30.0,4.0,-9.0,4.0,1218188 -3036997,1630145312,2,60,0,1,1630053368,1,6.0,-9.0,-9.0,-9.0,4.0,1218189 -3036998,1630145460,2,49,0,1,1630053369,1,6.0,-9.0,-9.0,-9.0,4.0,1218190 -3036999,1630145305,2,58,0,1,1630053370,1,6.0,-9.0,-9.0,-9.0,3.0,1218191 -3037000,1630144833,2,46,0,1,1630053371,2,3.0,40.0,6.0,-9.0,4.0,1218192 -3037001,1630145220,2,59,0,1,1630053372,2,6.0,-9.0,-9.0,-9.0,4.0,1218193 -3037002,1630145242,2,50,0,1,1630053373,2,3.0,-9.0,-9.0,-9.0,4.0,1218194 -3037003,1630145445,2,62,0,1,1630053374,1,6.0,-9.0,-9.0,-9.0,2.0,1218195 -3037004,1630144935,2,63,0,1,1630053375,2,6.0,-9.0,-9.0,-9.0,4.0,1218196 -3037005,1630145277,2,54,0,1,1630053376,1,6.0,20.0,4.0,-9.0,4.0,1218197 -3037006,1630145461,2,49,0,1,1630053377,1,6.0,-9.0,-9.0,-9.0,4.0,1218198 -3037007,1630144954,2,51,0,1,1630053378,2,6.0,-9.0,-9.0,-9.0,4.0,1218199 -3037008,1630145119,2,57,0,1,1630053379,2,6.0,-9.0,-9.0,-9.0,4.0,1218200 -3037009,1630145286,2,59,0,1,1630053380,1,6.0,11.0,6.0,-9.0,4.0,1218201 -3037010,1630145306,2,55,0,1,1630053381,1,6.0,-9.0,-9.0,-9.0,4.0,1218202 -3037011,1630145377,2,56,0,1,1630053382,1,6.0,-9.0,-9.0,-9.0,4.0,1218203 -3037012,1630145331,2,51,0,1,1630053383,1,6.0,-9.0,-9.0,-9.0,2.0,1218204 -3037013,1630145401,2,56,0,1,1630053384,1,3.0,-9.0,-9.0,-9.0,4.0,1218205 -3037014,1630145120,2,57,0,1,1630053385,2,6.0,-9.0,-9.0,-9.0,4.0,1218206 -3037015,1630144952,2,58,0,1,1630053386,2,6.0,-9.0,-9.0,-9.0,4.0,1218207 -3037016,1630145493,2,61,0,1,1630053387,1,3.0,-9.0,-9.0,15.0,4.0,1218208 -3037017,1630145467,2,47,0,1,1630053388,1,3.0,-9.0,-9.0,-9.0,4.0,1218209 -3037018,1630145341,2,54,0,1,1630053389,1,6.0,-9.0,-9.0,-9.0,2.0,1218210 -3037019,1630145440,2,61,0,1,1630053390,1,6.0,-9.0,-9.0,-9.0,4.0,1218211 -3037020,1630145276,2,53,0,1,1630053391,1,6.0,-9.0,-9.0,-9.0,4.0,1218212 -3037021,1630145267,2,53,0,1,1630053392,1,3.0,-9.0,-9.0,-9.0,4.0,1218213 -3037022,1630145497,2,62,0,1,1630053393,1,6.0,-9.0,-9.0,-9.0,2.0,1218214 -3037023,1630145332,2,61,0,1,1630053394,1,6.0,-9.0,-9.0,-9.0,4.0,1218215 -3037024,1630145354,2,58,0,1,1630053395,1,6.0,-9.0,-9.0,-9.0,4.0,1218216 -3037025,1630145402,2,56,0,1,1630053396,1,3.0,-9.0,-9.0,-9.0,4.0,1218217 -3037026,1630145442,2,53,0,1,1630053397,1,6.0,-9.0,-9.0,-9.0,4.0,1218218 -3037027,1630145446,2,62,0,1,1630053398,1,6.0,-9.0,-9.0,-9.0,2.0,1218219 -3037028,1630145494,2,61,0,1,1630053399,1,3.0,-9.0,-9.0,15.0,4.0,1218220 -3037029,1630145264,2,53,0,1,1630053400,1,6.0,-9.0,-9.0,-9.0,4.0,1218221 -3037030,1630145349,2,59,0,1,1630053401,1,6.0,-9.0,-9.0,-9.0,2.0,1218222 -3037031,1630144842,2,61,0,1,1630053402,2,6.0,12.0,6.0,-9.0,4.0,1218223 -3037032,1630145482,2,57,0,1,1630053403,1,6.0,-9.0,-9.0,-9.0,2.0,1218224 -3037033,1630145356,2,61,0,1,1630053404,1,6.0,32.0,6.0,15.0,4.0,1218225 -3037034,1630145299,2,60,0,1,1630053405,1,6.0,-9.0,-9.0,-9.0,4.0,1218226 -3037035,1630145291,2,54,0,1,1630053406,1,3.0,-9.0,-9.0,-9.0,2.0,1218227 -3037036,1630145428,2,47,0,1,1630053407,1,6.0,-9.0,-9.0,-9.0,4.0,1218228 -3037037,1630145333,2,63,0,1,1630053408,1,6.0,-9.0,-9.0,-9.0,4.0,1218229 -3037038,1630145278,2,54,0,1,1630053409,1,6.0,20.0,4.0,-9.0,4.0,1218230 -3037039,1630145490,2,59,0,1,1630053410,1,6.0,-9.0,-9.0,-9.0,4.0,1218231 -3037040,1630145468,2,47,0,1,1630053411,1,3.0,-9.0,-9.0,-9.0,4.0,1218232 -3037041,1630145391,2,62,0,1,1630053412,1,6.0,30.0,4.0,-9.0,4.0,1218233 -3037042,1630145443,2,53,0,1,1630053413,1,6.0,-9.0,-9.0,-9.0,4.0,1218234 -3037043,1630145500,2,57,0,1,1630053414,1,6.0,-9.0,-9.0,-9.0,4.0,1218235 -3037044,1630145353,2,50,0,1,1630053415,1,3.0,-9.0,-9.0,-9.0,4.0,1218236 -3037045,1630145501,2,50,0,1,1630053416,1,6.0,-9.0,-9.0,-9.0,4.0,1218237 -3037046,1630145334,2,63,0,1,1630053417,1,6.0,-9.0,-9.0,-9.0,4.0,1218238 -3037047,1630145420,2,51,0,1,1630053418,1,3.0,-9.0,-9.0,-9.0,4.0,1218239 -3037048,1630145378,2,56,0,1,1630053419,1,6.0,-9.0,-9.0,-9.0,4.0,1218240 -3037049,1630145343,2,49,0,1,1630053420,1,6.0,-9.0,-9.0,-9.0,4.0,1218241 -3037050,1630145407,2,58,0,1,1630053421,1,6.0,-9.0,-9.0,-9.0,4.0,1218242 -3037051,1630145107,2,62,0,1,1630053422,2,6.0,-9.0,-9.0,-9.0,4.0,1218243 -3037052,1630145447,2,64,0,1,1630053423,1,6.0,-9.0,-9.0,-9.0,2.0,1218244 -3037053,1630145357,2,61,0,1,1630053424,1,6.0,32.0,6.0,15.0,4.0,1218245 -3037054,1630145444,2,56,0,1,1630053425,1,3.0,6.0,6.0,-9.0,4.0,1218246 -3037055,1630145078,2,59,0,1,1630053426,2,6.0,-9.0,-9.0,-9.0,4.0,1218247 -3037056,1630145395,2,56,0,1,1630053427,1,6.0,-9.0,-9.0,-9.0,2.0,1218248 -3037057,1630145403,2,56,0,1,1630053428,1,3.0,-9.0,-9.0,-9.0,4.0,1218249 -3037058,1630145448,2,64,0,1,1630053429,1,6.0,-9.0,-9.0,-9.0,2.0,1218250 -3037059,1630145462,2,54,0,1,1630053430,1,6.0,-9.0,-9.0,-9.0,4.0,1218251 -3037060,1630145300,2,60,0,1,1630053431,1,6.0,-9.0,-9.0,-9.0,4.0,1218252 -3037061,1630145303,2,58,0,1,1630053432,1,6.0,-9.0,-9.0,-9.0,4.0,1218253 -3037062,1630145265,2,55,0,1,1630053433,1,6.0,-9.0,-9.0,-9.0,4.0,1218254 -3037063,1630145509,2,50,0,1,1630053434,1,6.0,-9.0,-9.0,-9.0,4.0,1218255 -3037064,1630145367,2,60,0,1,1630053435,1,6.0,-9.0,-9.0,-9.0,4.0,1218256 -3037065,1630145350,2,59,0,1,1630053436,1,6.0,-9.0,-9.0,-9.0,2.0,1218257 -3037066,1630145307,2,55,0,1,1630053437,1,6.0,-9.0,-9.0,-9.0,4.0,1218258 -3037067,1630145386,2,59,0,1,1630053438,1,6.0,-9.0,-9.0,-9.0,2.0,1218259 -3037068,1630145313,2,55,0,1,1630053439,1,6.0,-9.0,-9.0,-9.0,2.0,1218260 -3037069,1630144841,2,57,0,1,1630053440,2,6.0,-9.0,-9.0,-9.0,4.0,1218261 -3037070,1630145491,2,59,0,1,1630053441,1,6.0,-9.0,-9.0,-9.0,4.0,1218262 -3037071,1630145293,2,58,0,1,1630053442,1,6.0,-9.0,-9.0,-9.0,4.0,1218263 -3037072,1630145495,2,61,0,1,1630053443,1,3.0,-9.0,-9.0,15.0,4.0,1218264 -3037073,1630145297,2,54,0,1,1630053444,1,3.0,-9.0,-9.0,-9.0,4.0,1218265 -3037074,1630145474,2,50,0,1,1630053445,1,6.0,-9.0,-9.0,-9.0,4.0,1218266 -3037075,1630144835,2,60,0,1,1630053446,2,6.0,32.0,6.0,-9.0,4.0,1218267 -3037076,1630145450,2,56,0,1,1630053447,1,6.0,-9.0,-9.0,-9.0,4.0,1218268 -3037077,1630145400,2,60,0,1,1630053448,1,6.0,-9.0,-9.0,-9.0,4.0,1218269 -3037078,1630145421,2,51,0,1,1630053449,1,3.0,-9.0,-9.0,-9.0,4.0,1218270 -3037079,1630145110,2,62,0,1,1630053450,2,6.0,-9.0,-9.0,-9.0,4.0,1218271 -3037080,1630145368,2,60,0,1,1630053451,1,6.0,-9.0,-9.0,-9.0,4.0,1218272 -3037081,1630145285,2,58,0,1,1630053452,1,6.0,-9.0,-9.0,-9.0,4.0,1218273 -3037082,1630145538,4,60,0,1,1630053453,2,6.0,-9.0,-9.0,-9.0,4.0,1218274 -3037083,1630144756,1,50,0,1,1630053454,1,3.0,-9.0,-9.0,-9.0,2.0,1218275 -3037084,1630144717,1,45,0,1,1630053455,1,6.0,-9.0,-9.0,-9.0,4.0,1218276 -3037085,1630144757,1,50,0,1,1630053456,1,3.0,-9.0,-9.0,-9.0,2.0,1218277 -3037086,1630144718,1,45,0,1,1630053457,1,6.0,-9.0,-9.0,-9.0,4.0,1218278 -3037087,1630144743,1,60,0,1,1630053458,1,6.0,-9.0,-9.0,15.0,4.0,1218279 -3037088,1630144724,1,64,0,1,1630053459,1,6.0,-9.0,-9.0,-9.0,2.0,1218280 -3037089,1630145435,2,62,0,1,1630053460,1,6.0,40.0,5.0,-9.0,4.0,1218281 -3037090,1630145337,2,57,0,1,1630053461,1,6.0,-9.0,-9.0,-9.0,4.0,1218282 -3037091,1630145436,2,62,0,1,1630053462,1,6.0,40.0,5.0,-9.0,4.0,1218283 -3037092,1630145351,2,61,0,1,1630053463,1,6.0,-9.0,-9.0,-9.0,2.0,1218284 -3037093,1630145279,2,52,0,1,1630053464,1,3.0,-9.0,-9.0,-9.0,4.0,1218285 -3037094,1630145457,2,53,0,1,1630053465,1,6.0,-9.0,-9.0,-9.0,2.0,1218286 -3037095,1630145292,2,45,0,1,1630053466,1,6.0,55.0,4.0,-9.0,4.0,1218287 -3037096,1630145414,2,63,0,1,1630053467,1,6.0,-9.0,-9.0,-9.0,2.0,1218288 -3037097,1630144885,2,63,0,1,1630053468,2,6.0,-9.0,-9.0,-9.0,4.0,1218289 -3037098,1630145498,2,52,0,1,1630053469,1,6.0,-9.0,-9.0,-9.0,4.0,1218290 -3037099,1630145411,2,64,0,1,1630053470,1,6.0,-9.0,-9.0,-9.0,4.0,1218291 -3037100,1630145347,2,55,0,1,1630053471,1,6.0,-9.0,-9.0,-9.0,4.0,1218292 -3037101,1630145437,2,64,0,1,1630053472,1,6.0,-9.0,-9.0,-9.0,2.0,1218293 -3037102,1630145476,2,58,0,1,1630053473,1,6.0,-9.0,-9.0,-9.0,4.0,1218294 -3037103,1630145180,2,46,0,1,1630053474,2,3.0,-9.0,-9.0,-9.0,4.0,1218295 -3037104,1630145280,2,52,0,1,1630053475,1,3.0,-9.0,-9.0,-9.0,4.0,1218296 -3037105,1630145412,2,64,0,1,1630053476,1,6.0,-9.0,-9.0,-9.0,4.0,1218297 -3037106,1630145281,2,52,0,1,1630053477,1,3.0,-9.0,-9.0,-9.0,4.0,1218298 -3037107,1630145352,2,61,0,1,1630053478,1,6.0,-9.0,-9.0,-9.0,2.0,1218299 -3037108,1630145477,2,58,0,1,1630053479,1,6.0,-9.0,-9.0,-9.0,4.0,1218300 -3037109,1630145438,2,64,0,1,1630053480,1,6.0,-9.0,-9.0,-9.0,2.0,1218301 -3037110,1630145499,2,52,0,1,1630053481,1,6.0,-9.0,-9.0,-9.0,4.0,1218302 -3037111,1630145321,2,58,0,1,1630053482,1,6.0,-9.0,-9.0,-9.0,4.0,1218303 -3037112,1630145282,2,52,0,1,1630053483,1,3.0,-9.0,-9.0,-9.0,4.0,1218304 -3037113,1630145344,2,64,0,1,1630053484,1,6.0,-9.0,-9.0,-9.0,2.0,1218305 -3037114,1630145345,2,64,0,1,1630053485,1,6.0,-9.0,-9.0,-9.0,2.0,1218306 -3037115,1630144738,1,64,0,1,1630053486,1,6.0,12.0,5.0,-9.0,4.0,1218307 -3037116,1630145483,2,46,0,1,1630053487,1,3.0,-9.0,-9.0,-9.0,4.0,1218308 -3037117,1630145374,2,63,0,1,1630053488,1,6.0,-9.0,-9.0,-9.0,2.0,1218309 -3037118,1630145150,2,56,0,1,1630053489,2,3.0,-9.0,-9.0,-9.0,4.0,1218310 -3037119,1630145151,2,35,2,2,1630053489,2,6.0,-9.0,-9.0,-9.0,4.0,1218310 -3037120,1630145154,2,24,2,3,1630053489,1,3.0,26.0,4.0,-9.0,4.0,1218310 -3037121,1630145152,2,21,2,4,1630053489,2,3.0,-9.0,-9.0,-9.0,4.0,1218310 -3037122,1630145155,2,17,2,5,1630053489,2,6.0,-9.0,-9.0,13.0,4.0,1218310 -3037123,1630145156,2,15,2,6,1630053489,2,-9.0,-9.0,-9.0,10.0,-9.0,1218310 -3037124,1630145153,2,13,2,7,1630053489,1,-9.0,-9.0,-9.0,10.0,-9.0,1218310 -3037125,1630145157,2,0,7,8,1630053489,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218310 -3037126,1630144683,1,61,0,1,1630053490,2,6.0,-9.0,-9.0,15.0,4.0,1218311 -3037127,1630144685,2,20,2,2,1630053490,2,6.0,-9.0,-9.0,-9.0,4.0,1218311 -3037128,1630144691,2,3,7,3,1630053490,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218311 -3037129,1630144693,2,2,7,4,1630053490,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218311 -3037130,1630144689,2,1,7,5,1630053490,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218311 -3037131,1630144687,2,58,15,6,1630053490,2,6.0,-9.0,-9.0,-9.0,4.0,1218311 -3037132,1630145185,2,55,0,1,1630053491,2,6.0,-9.0,-9.0,-9.0,4.0,1218312 -3037133,1630145186,2,55,15,2,1630053491,1,6.0,-9.0,-9.0,-9.0,4.0,1218312 -3037134,1630145174,2,63,0,1,1630053492,1,6.0,-9.0,-9.0,-9.0,2.0,1218313 -3037135,1630145173,2,41,13,2,1630053492,2,3.0,-9.0,-9.0,-9.0,4.0,1218313 -3037136,1630145472,2,61,0,1,1630053493,1,6.0,-9.0,-9.0,15.0,4.0,1218314 -3037137,1630145473,2,59,5,2,1630053493,1,3.0,-9.0,-9.0,-9.0,4.0,1218314 -3037138,1630145019,2,58,0,1,1630053494,2,6.0,-9.0,-9.0,-9.0,4.0,1218315 -3037139,1630145020,2,62,1,2,1630053494,1,6.0,-9.0,-9.0,-9.0,4.0,1218315 -3037140,1630144843,2,53,0,1,1630053495,2,6.0,-9.0,-9.0,-9.0,4.0,1218316 -3037141,1630144844,2,4,7,2,1630053495,1,-9.0,-9.0,-9.0,1.0,-9.0,1218316 -3037142,1630145259,2,53,0,1,1630053496,1,6.0,45.0,5.0,11.0,4.0,1218317 -3037143,1630145256,2,14,2,2,1630053496,1,-9.0,-9.0,-9.0,10.0,-9.0,1218317 -3037144,1630145260,2,53,0,1,1630053497,1,6.0,45.0,5.0,11.0,4.0,1218318 -3037145,1630145257,2,14,2,2,1630053497,1,-9.0,-9.0,-9.0,10.0,-9.0,1218318 -3037146,1630145261,2,53,0,1,1630053498,1,6.0,45.0,5.0,11.0,4.0,1218319 -3037147,1630145258,2,14,2,2,1630053498,1,-9.0,-9.0,-9.0,10.0,-9.0,1218319 -3037148,1630145211,2,50,0,1,1630053499,2,6.0,-9.0,-9.0,-9.0,4.0,1218320 -3037149,1630145212,2,16,2,2,1630053499,1,6.0,-9.0,-9.0,12.0,-9.0,1218320 -3037150,1630144983,2,51,0,1,1630053500,1,6.0,-9.0,-9.0,-9.0,4.0,1218321 -3037151,1630144982,2,52,1,2,1630053500,2,3.0,-9.0,-9.0,-9.0,4.0,1218321 -3037152,1630145022,2,55,0,1,1630053501,1,6.0,-9.0,-9.0,-9.0,3.0,1218322 -3037153,1630145021,2,55,1,2,1630053501,2,6.0,30.0,3.0,-9.0,4.0,1218322 -3037154,1630145221,2,47,0,1,1630053502,2,6.0,-9.0,-9.0,-9.0,4.0,1218323 -3037155,1630145222,2,13,2,2,1630053502,1,-9.0,-9.0,-9.0,10.0,-9.0,1218323 -3037156,1630144849,2,59,0,1,1630053503,2,6.0,-9.0,-9.0,-9.0,4.0,1218324 -3037157,1630144851,2,16,7,2,1630053503,1,6.0,-9.0,-9.0,13.0,-9.0,1218324 -3037158,1630145388,2,47,0,1,1630053504,1,1.0,32.0,1.0,-9.0,4.0,1218325 -3037159,1630145308,2,63,0,1,1630053505,1,1.0,25.0,1.0,-9.0,4.0,1218326 -3037160,1630145294,2,49,0,1,1630053506,1,1.0,25.0,1.0,-9.0,4.0,1218327 -3037161,1630144853,2,52,0,1,1630053507,2,1.0,40.0,1.0,-9.0,4.0,1218328 -3037162,1630144995,2,62,0,1,1630053508,2,1.0,40.0,1.0,-9.0,4.0,1218329 -3037163,1630145470,2,58,0,1,1630053509,1,2.0,20.0,6.0,-9.0,2.0,1218330 -3037164,1630145427,2,61,0,1,1630053510,1,1.0,3.0,6.0,-9.0,4.0,1218331 -3037165,1630145504,2,45,0,1,1630053511,1,1.0,12.0,5.0,-9.0,4.0,1218332 -3037166,1630145361,2,55,0,1,1630053512,1,1.0,40.0,2.0,-9.0,4.0,1218333 -3037167,1630145318,2,60,0,1,1630053513,1,1.0,40.0,1.0,-9.0,2.0,1218334 -3037168,1630145434,2,48,0,1,1630053514,1,1.0,36.0,6.0,-9.0,4.0,1218335 -3037169,1630145315,2,51,0,1,1630053515,1,1.0,20.0,1.0,-9.0,2.0,1218336 -3037170,1630145471,2,58,0,1,1630053516,1,2.0,20.0,6.0,-9.0,2.0,1218337 -3037171,1630145295,2,49,0,1,1630053517,1,1.0,25.0,1.0,-9.0,4.0,1218338 -3037172,1630145399,2,61,0,1,1630053518,1,1.0,30.0,1.0,-9.0,4.0,1218339 -3037173,1630145319,2,60,0,1,1630053519,1,1.0,40.0,1.0,-9.0,2.0,1218340 -3037174,1630145358,2,54,0,1,1630053520,1,1.0,25.0,1.0,-9.0,4.0,1218341 -3037175,1630145456,2,60,0,1,1630053521,1,1.0,35.0,1.0,-9.0,4.0,1218342 -3037176,1630145487,2,52,0,1,1630053522,1,1.0,32.0,6.0,-9.0,4.0,1218343 -3037177,1630145464,2,45,0,1,1630053523,1,1.0,48.0,1.0,-9.0,4.0,1218344 -3037178,1630144953,2,48,0,1,1630053524,2,1.0,20.0,1.0,-9.0,4.0,1218345 -3037179,1630145488,2,52,0,1,1630053525,1,1.0,32.0,6.0,-9.0,4.0,1218346 -3037180,1630145404,2,53,0,1,1630053526,1,1.0,40.0,1.0,-9.0,4.0,1218347 -3037181,1630145320,2,54,0,1,1630053527,1,1.0,35.0,4.0,-9.0,2.0,1218348 -3037182,1630145405,2,53,0,1,1630053528,1,1.0,40.0,1.0,-9.0,4.0,1218349 -3037183,1630145012,2,55,0,1,1630053529,2,1.0,38.0,1.0,-9.0,4.0,1218350 -3037184,1630145423,2,59,0,1,1630053530,1,1.0,32.0,5.0,-9.0,4.0,1218351 -3037185,1630144748,1,62,0,1,1630053531,1,1.0,31.0,1.0,-9.0,4.0,1218352 -3037186,1630144752,1,48,0,1,1630053532,1,2.0,40.0,3.0,-9.0,4.0,1218353 -3037187,1630145398,2,62,0,1,1630053533,1,1.0,45.0,1.0,-9.0,4.0,1218354 -3037188,1630144989,2,45,0,1,1630053534,2,1.0,40.0,1.0,-9.0,4.0,1218355 -3037189,1630144992,2,16,2,2,1630053534,2,6.0,-9.0,-9.0,12.0,-9.0,1218355 -3037190,1630144993,2,13,2,3,1630053534,2,-9.0,-9.0,-9.0,9.0,-9.0,1218355 -3037191,1630144990,2,12,2,4,1630053534,1,-9.0,-9.0,-9.0,8.0,-9.0,1218355 -3037192,1630144994,2,12,2,5,1630053534,2,-9.0,-9.0,-9.0,8.0,-9.0,1218355 -3037193,1630144991,2,8,2,6,1630053534,1,-9.0,-9.0,-9.0,4.0,-9.0,1218355 -3037194,1630145232,2,55,0,1,1630053535,2,1.0,40.0,1.0,-9.0,4.0,1218356 -3037195,1630145530,2,75,0,1,1630053536,1,6.0,-9.0,-9.0,-9.0,4.0,1218357 -3037196,1630145523,2,77,0,1,1630053537,1,6.0,-9.0,-9.0,-9.0,4.0,1218358 -3037197,1630145528,2,66,0,1,1630053538,1,6.0,-9.0,-9.0,-9.0,4.0,1218359 -3037198,1630145524,2,69,0,1,1630053539,1,6.0,-9.0,-9.0,-9.0,2.0,1218360 -3037199,1630145518,2,71,0,1,1630053540,1,6.0,-9.0,-9.0,-9.0,4.0,1218361 -3037200,1630144658,2,80,0,1,1630053541,2,6.0,-9.0,-9.0,-9.0,4.0,1218362 -3037201,1630145522,2,69,0,1,1630053542,1,6.0,-9.0,-9.0,-9.0,4.0,1218363 -3037202,1630144667,2,74,0,1,1630053543,2,6.0,-9.0,-9.0,-9.0,4.0,1218364 -3037203,1630144634,2,86,0,1,1630053544,2,6.0,-9.0,-9.0,-9.0,4.0,1218365 -3037204,1630145529,2,79,0,1,1630053545,1,6.0,-9.0,-9.0,-9.0,4.0,1218366 -3037205,1630144642,2,82,0,1,1630053546,2,6.0,-9.0,-9.0,-9.0,4.0,1218367 -3037206,1630145521,2,66,0,1,1630053547,1,6.0,-9.0,-9.0,-9.0,4.0,1218368 -3037207,1630145517,2,65,0,1,1630053548,1,6.0,-9.0,-9.0,-9.0,4.0,1218369 -3037208,1630145525,2,69,0,1,1630053549,1,6.0,-9.0,-9.0,-9.0,2.0,1218370 -3037209,1630145515,2,69,0,1,1630053550,1,6.0,-9.0,-9.0,-9.0,4.0,1218371 -3037210,1630145533,2,76,0,1,1630053551,1,6.0,-9.0,-9.0,-9.0,4.0,1218372 -3037211,1630144645,2,74,0,1,1630053552,2,6.0,-9.0,-9.0,-9.0,4.0,1218373 -3037212,1630145539,1,74,0,1,1630053553,1,6.0,-9.0,-9.0,-9.0,3.0,1218374 -3037213,1630145511,2,86,0,1,1630053554,1,6.0,-9.0,-9.0,-9.0,2.0,1218375 -3037214,1630145514,2,83,0,1,1630053555,1,6.0,-9.0,-9.0,-9.0,4.0,1218376 -3037215,1630144650,2,69,0,1,1630053556,2,6.0,-9.0,-9.0,-9.0,4.0,1218377 -3037216,1630145526,2,81,0,1,1630053557,1,6.0,-9.0,-9.0,-9.0,4.0,1218378 -3037217,1630144668,2,66,0,1,1630053558,2,6.0,-9.0,-9.0,-9.0,4.0,1218379 -3037218,1630145532,2,65,0,1,1630053559,1,6.0,-9.0,-9.0,-9.0,2.0,1218380 -3037219,1630145387,2,19,0,1,1630053560,1,3.0,-9.0,-9.0,-9.0,4.0,1218381 -3037220,1630144834,2,24,0,1,1630053561,2,6.0,10.0,6.0,15.0,4.0,1218382 -3037221,1630144733,1,24,0,1,1630053562,1,3.0,20.0,5.0,-9.0,4.0,1218383 -3037222,1630144726,1,22,0,1,1630053563,1,3.0,-9.0,-9.0,15.0,4.0,1218384 -3037223,1630144727,1,22,0,1,1630053564,1,3.0,-9.0,-9.0,15.0,4.0,1218385 -3037224,1630144732,1,24,0,1,1630053565,1,6.0,24.0,3.0,16.0,4.0,1218386 -3037225,1630145035,2,20,0,1,1630053566,2,6.0,-9.0,-9.0,-9.0,4.0,1218387 -3037226,1630145036,2,2,2,2,1630053566,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218387 -3037227,1630144940,2,23,0,1,1630053567,2,3.0,20.0,6.0,15.0,4.0,1218388 -3037228,1630144941,2,2,2,2,1630053567,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218388 -3037229,1630145503,2,22,0,1,1630053568,1,1.0,20.0,6.0,-9.0,4.0,1218389 -3037230,1630144741,1,23,0,1,1630053569,1,1.0,40.0,3.0,15.0,4.0,1218390 -3037231,1630144962,2,34,0,1,1630053570,2,1.0,40.0,1.0,-9.0,4.0,1218391 -3037232,1630144963,2,14,2,2,1630053570,2,-9.0,-9.0,-9.0,11.0,-9.0,1218391 -3037233,1630145540,1,70,0,1,1630053571,1,6.0,-9.0,-9.0,-9.0,2.0,1218392 -3037234,1630144906,2,48,0,1,1630053572,1,1.0,35.0,1.0,-9.0,2.0,1218393 -3037235,1630144900,2,48,1,2,1630053572,2,1.0,40.0,4.0,-9.0,4.0,1218393 -3037236,1630144902,2,16,4,3,1630053572,1,6.0,-9.0,-9.0,13.0,-9.0,1218393 -3037237,1630144904,2,16,4,4,1630053572,1,6.0,-9.0,-9.0,13.0,-9.0,1218393 -3037238,1630144760,1,50,0,1,1630053573,1,1.0,60.0,1.0,-9.0,4.0,1218394 -3037239,1630145171,2,36,0,1,1630053574,2,1.0,24.0,1.0,-9.0,4.0,1218395 -3037240,1630145172,2,14,2,2,1630053574,1,-9.0,-9.0,-9.0,10.0,-9.0,1218395 -3037241,1630144850,2,59,0,1,1630053575,2,6.0,-9.0,-9.0,-9.0,4.0,1218396 -3037242,1630144852,2,16,7,2,1630053575,1,6.0,-9.0,-9.0,13.0,-9.0,1218396 -3037243,1630145132,2,26,0,1,1630053576,2,1.0,15.0,1.0,-9.0,4.0,1218397 -3037244,1630145133,2,6,2,2,1630053576,1,-9.0,-9.0,-9.0,3.0,-9.0,1218397 -3037245,1630145135,2,2,2,3,1630053576,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218397 -3037246,1630145134,2,34,13,4,1630053576,1,1.0,25.0,1.0,-9.0,4.0,1218397 -3037247,1630145459,2,35,0,1,1630053577,1,1.0,40.0,1.0,-9.0,2.0,1218398 -3037248,1630145484,2,46,0,1,1630053578,1,3.0,-9.0,-9.0,-9.0,4.0,1218399 -3037249,1630145234,2,23,0,1,1630053579,2,3.0,35.0,6.0,-9.0,4.0,1218400 -3037250,1630145235,2,46,0,1,1630053580,2,3.0,-9.0,-9.0,15.0,4.0,1218401 -3037251,1630145238,2,47,1,2,1630053580,1,1.0,40.0,6.0,-9.0,4.0,1218401 -3037252,1630145236,2,28,2,3,1630053580,2,6.0,-9.0,-9.0,-9.0,4.0,1218401 -3037253,1630145237,2,17,2,4,1630053580,1,6.0,-9.0,-9.0,13.0,4.0,1218401 -3037254,1630145239,2,15,2,5,1630053580,2,-9.0,-9.0,-9.0,12.0,-9.0,1218401 -3037255,1630145240,2,8,2,6,1630053580,2,-9.0,-9.0,-9.0,5.0,-9.0,1218401 -3037256,1630145044,2,43,0,1,1630053581,2,6.0,-9.0,-9.0,-9.0,4.0,1218402 -3037257,1630145045,2,22,2,2,1630053581,2,3.0,-9.0,-9.0,-9.0,4.0,1218402 -3037258,1630145046,2,18,2,3,1630053581,2,6.0,30.0,6.0,-9.0,4.0,1218402 -3037259,1630145048,2,16,2,4,1630053581,2,6.0,25.0,6.0,12.0,-9.0,1218402 -3037260,1630145047,2,11,2,5,1630053581,1,-9.0,-9.0,-9.0,8.0,-9.0,1218402 -3037261,1630144734,1,42,0,1,1630053582,1,1.0,50.0,1.0,-9.0,4.0,1218403 -3037262,1630145418,2,42,0,1,1630053583,1,6.0,-9.0,-9.0,-9.0,4.0,1218404 -3037263,1630145077,2,22,0,1,1630053584,2,1.0,40.0,1.0,-9.0,4.0,1218405 -3037264,1630145507,2,23,0,1,1630053585,1,1.0,40.0,1.0,-9.0,4.0,1218406 -3037265,1630145325,2,51,0,1,1630053586,1,1.0,40.0,1.0,-9.0,4.0,1218407 -3037266,1630145458,2,62,0,1,1630053587,1,1.0,30.0,3.0,-9.0,4.0,1218408 -3037267,1630144925,2,64,0,1,1630053588,2,1.0,15.0,6.0,-9.0,4.0,1218409 -3037268,1630145254,2,47,0,1,1630053589,1,6.0,-9.0,-9.0,-9.0,4.0,1218410 -3037269,1630145252,2,17,2,2,1630053589,1,6.0,-9.0,-9.0,13.0,4.0,1218410 -3037270,1630145253,2,16,2,3,1630053589,1,6.0,-9.0,-9.0,12.0,-9.0,1218410 -3037271,1630145255,2,70,15,4,1630053589,1,6.0,-9.0,-9.0,-9.0,2.0,1218410 -3037272,1630145214,2,62,0,1,1630053590,2,1.0,40.0,1.0,-9.0,4.0,1218411 -3037273,1630145215,2,61,1,2,1630053590,1,1.0,60.0,1.0,-9.0,4.0,1218411 -3037274,1630145100,2,48,0,1,1630053591,2,6.0,-9.0,-9.0,-9.0,4.0,1218412 -3037275,1630145101,2,24,2,2,1630053591,2,6.0,-9.0,-9.0,-9.0,4.0,1218412 -3037276,1630145102,2,21,2,3,1630053591,2,6.0,-9.0,-9.0,-9.0,4.0,1218412 -3037277,1630145105,2,4,7,4,1630053591,2,-9.0,-9.0,-9.0,2.0,-9.0,1218412 -3037278,1630145106,2,3,7,5,1630053591,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218412 -3037279,1630145103,2,1,7,6,1630053591,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218412 -3037280,1630145104,2,0,7,7,1630053591,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218412 -3037281,1630144744,1,60,0,1,1630053592,1,6.0,-9.0,-9.0,15.0,4.0,1218413 -3037282,1630144933,2,60,0,1,1630053593,1,1.0,40.0,1.0,-9.0,4.0,1218414 -3037283,1630144931,2,57,1,2,1630053593,2,3.0,12.0,6.0,-9.0,4.0,1218414 -3037284,1630144934,2,21,2,3,1630053593,1,1.0,29.0,3.0,-9.0,4.0,1218414 -3037285,1630144932,2,17,2,4,1630053593,1,1.0,24.0,6.0,14.0,4.0,1218414 -3037286,1630145159,2,42,0,1,1630053594,2,3.0,-9.0,-9.0,-9.0,4.0,1218415 -3037287,1630145160,2,23,2,2,1630053594,2,6.0,-9.0,-9.0,-9.0,4.0,1218415 -3037288,1630145161,2,21,2,3,1630053594,2,6.0,-9.0,-9.0,11.0,4.0,1218415 -3037289,1630145162,2,18,2,4,1630053594,2,6.0,-9.0,-9.0,15.0,4.0,1218415 -3037290,1630145164,2,15,2,5,1630053594,2,-9.0,-9.0,-9.0,11.0,-9.0,1218415 -3037291,1630145165,2,11,2,6,1630053594,2,-9.0,-9.0,-9.0,7.0,-9.0,1218415 -3037292,1630145166,2,10,2,7,1630053594,2,-9.0,-9.0,-9.0,6.0,-9.0,1218415 -3037293,1630145163,2,9,2,8,1630053594,1,-9.0,-9.0,-9.0,5.0,-9.0,1218415 -3037294,1630145510,2,71,0,1,1630053595,1,6.0,-9.0,-9.0,-9.0,4.0,1218416 -3037295,1630145486,2,53,0,1,1630053596,1,6.0,-9.0,-9.0,-9.0,4.0,1218417 -3037296,1630145188,2,32,0,1,1630053597,2,3.0,-9.0,-9.0,-9.0,4.0,1218418 -3037297,1630145196,2,50,1,2,1630053597,1,1.0,30.0,1.0,-9.0,4.0,1218418 -3037298,1630145192,2,9,2,3,1630053597,1,-9.0,-9.0,-9.0,6.0,-9.0,1218418 -3037299,1630145194,2,5,2,4,1630053597,1,-9.0,-9.0,-9.0,2.0,-9.0,1218418 -3037300,1630145198,2,1,2,5,1630053597,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218418 -3037301,1630145190,2,57,15,6,1630053597,2,3.0,-9.0,-9.0,-9.0,4.0,1218418 -3037302,1630144771,2,38,0,1,1630053598,2,6.0,-9.0,-9.0,-9.0,4.0,1218419 -3037303,1630144773,2,17,2,2,1630053598,1,6.0,-9.0,-9.0,13.0,4.0,1218419 -3037304,1630144781,2,14,2,3,1630053598,2,-9.0,-9.0,-9.0,11.0,-9.0,1218419 -3037305,1630144775,2,10,2,4,1630053598,1,-9.0,-9.0,-9.0,7.0,-9.0,1218419 -3037306,1630144783,2,8,2,5,1630053598,2,-9.0,-9.0,-9.0,4.0,-9.0,1218419 -3037307,1630144785,2,6,2,6,1630053598,2,-9.0,-9.0,-9.0,3.0,-9.0,1218419 -3037308,1630144777,2,4,2,7,1630053598,1,-9.0,-9.0,-9.0,1.0,-9.0,1218419 -3037309,1630144779,2,39,5,8,1630053598,1,3.0,-9.0,-9.0,-9.0,4.0,1218419 -3037310,1630144647,2,80,0,1,1630053599,2,6.0,-9.0,-9.0,-9.0,4.0,1218420 -3037311,1630145369,2,62,0,1,1630053600,1,6.0,-9.0,-9.0,-9.0,4.0,1218421 -3037312,1630145283,2,34,0,1,1630053601,1,3.0,-9.0,-9.0,-9.0,4.0,1218422 -3037313,1630145284,2,18,10,2,1630053601,1,6.0,-9.0,-9.0,14.0,4.0,1218422 -3037314,1630145512,2,86,0,1,1630053602,1,6.0,-9.0,-9.0,-9.0,2.0,1218423 -3037315,1630144859,2,55,0,1,1630053603,2,6.0,-9.0,-9.0,-9.0,4.0,1218424 -3037316,1630144862,2,49,1,2,1630053603,1,1.0,40.0,1.0,-9.0,4.0,1218424 -3037317,1630144860,2,18,2,3,1630053603,2,6.0,-9.0,-9.0,15.0,4.0,1218424 -3037318,1630144863,2,16,2,4,1630053603,2,6.0,-9.0,-9.0,13.0,-9.0,1218424 -3037319,1630144864,2,14,2,5,1630053603,2,-9.0,-9.0,-9.0,11.0,-9.0,1218424 -3037320,1630144861,2,10,2,6,1630053603,1,-9.0,-9.0,-9.0,8.0,-9.0,1218424 -3037321,1630145081,2,59,0,1,1630053604,2,6.0,-9.0,-9.0,-9.0,4.0,1218425 -3037322,1630145086,2,36,2,2,1630053604,1,1.0,40.0,6.0,-9.0,4.0,1218425 -3037323,1630145087,2,13,3,3,1630053604,2,-9.0,-9.0,-9.0,9.0,-9.0,1218425 -3037324,1630145082,2,12,3,4,1630053604,1,-9.0,-9.0,-9.0,7.0,-9.0,1218425 -3037325,1630145083,2,11,3,5,1630053604,1,-9.0,-9.0,-9.0,7.0,-9.0,1218425 -3037326,1630145084,2,10,3,6,1630053604,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218425 -3037327,1630145085,2,8,7,7,1630053604,1,-9.0,-9.0,-9.0,5.0,-9.0,1218425 -3037328,1630145121,2,47,0,1,1630053605,2,3.0,-9.0,-9.0,-9.0,4.0,1218426 -3037329,1630145123,2,27,2,2,1630053605,1,3.0,-9.0,-9.0,-9.0,4.0,1218426 -3037330,1630145122,2,16,2,3,1630053605,1,6.0,-9.0,-9.0,13.0,-9.0,1218426 -3037331,1630145124,2,38,15,4,1630053605,1,6.0,-9.0,-9.0,-9.0,4.0,1218426 -3037332,1630145049,2,53,0,1,1630053606,2,1.0,40.0,1.0,-9.0,4.0,1218427 -3037333,1630145050,2,46,1,2,1630053606,1,1.0,40.0,1.0,-9.0,4.0,1218427 -3037334,1630144652,2,65,0,1,1630053607,2,6.0,-9.0,-9.0,-9.0,4.0,1218428 -3037335,1630144656,2,60,1,2,1630053607,1,6.0,-9.0,-9.0,-9.0,4.0,1218428 -3037336,1630144657,2,21,7,3,1630053607,1,6.0,-9.0,-9.0,15.0,4.0,1218428 -3037337,1630144653,2,17,7,4,1630053607,1,6.0,-9.0,-9.0,14.0,4.0,1218428 -3037338,1630144654,2,16,7,5,1630053607,1,6.0,-9.0,-9.0,13.0,-9.0,1218428 -3037339,1630144655,2,14,7,6,1630053607,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218428 -3037340,1630145016,2,40,0,1,1630053608,1,1.0,40.0,1.0,-9.0,4.0,1218429 -3037341,1630145014,2,2,2,2,1630053608,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218429 -3037342,1630145017,2,0,2,3,1630053608,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218429 -3037343,1630145013,2,37,13,4,1630053608,2,6.0,-9.0,-9.0,-9.0,4.0,1218429 -3037344,1630145015,2,15,15,5,1630053608,1,-9.0,-9.0,-9.0,12.0,-9.0,1218429 -3037345,1630145018,2,12,15,6,1630053608,2,-9.0,-9.0,-9.0,9.0,-9.0,1218429 -3037346,1630145410,2,60,0,1,1630053609,1,1.0,40.0,1.0,-9.0,4.0,1218430 -3037347,1630145141,2,29,0,1,1630053610,2,6.0,-9.0,-9.0,-9.0,4.0,1218431 -3037348,1630145143,2,14,2,2,1630053610,1,-9.0,-9.0,-9.0,9.0,-9.0,1218431 -3037349,1630145145,2,4,2,3,1630053610,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218431 -3037350,1630145147,2,2,2,4,1630053610,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218431 -3037351,1630145149,2,45,6,5,1630053610,1,3.0,-9.0,-9.0,-9.0,4.0,1218431 -3037352,1630144735,1,28,0,1,1630053611,1,1.0,70.0,1.0,-9.0,4.0,1218432 -3037353,1630144736,1,25,12,2,1630053611,1,1.0,45.0,1.0,-9.0,2.0,1218432 -3037354,1630144969,2,47,0,1,1630053612,1,2.0,18.0,1.0,15.0,2.0,1218433 -3037355,1630144975,4,48,1,2,1630053612,2,6.0,-9.0,-9.0,-9.0,4.0,1218433 -3037356,1630144970,2,24,2,3,1630053612,1,6.0,5.0,6.0,-9.0,4.0,1218433 -3037357,1630144966,2,19,2,4,1630053612,2,6.0,-9.0,-9.0,14.0,4.0,1218433 -3037358,1630144971,2,17,2,5,1630053612,2,6.0,-9.0,-9.0,12.0,4.0,1218433 -3037359,1630144972,2,14,2,6,1630053612,2,-9.0,-9.0,-9.0,11.0,-9.0,1218433 -3037360,1630144973,2,13,2,7,1630053612,2,-9.0,-9.0,-9.0,9.0,-9.0,1218433 -3037361,1630144974,2,12,2,8,1630053612,2,-9.0,-9.0,-9.0,10.0,-9.0,1218433 -3037362,1630144968,2,4,2,9,1630053612,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218433 -3037363,1630145088,2,42,0,1,1630053613,2,1.0,25.0,1.0,15.0,4.0,1218434 -3037364,1630145089,2,26,2,2,1630053613,2,6.0,-9.0,-9.0,-9.0,4.0,1218434 -3037365,1630145092,2,3,7,3,1630053613,2,-9.0,-9.0,-9.0,1.0,-9.0,1218434 -3037366,1630145090,2,1,7,4,1630053613,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218434 -3037367,1630145091,2,0,7,5,1630053613,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218434 -3037368,1630145108,2,54,0,1,1630053614,2,6.0,-9.0,-9.0,-9.0,4.0,1218435 -3037369,1630145109,2,64,11,2,1630053614,1,6.0,-9.0,-9.0,-9.0,4.0,1218435 -3037370,1630145513,2,80,0,1,1630053615,1,6.0,-9.0,-9.0,-9.0,4.0,1218436 -3037371,1630144740,1,56,0,1,1630053616,1,6.0,-9.0,-9.0,-9.0,2.0,1218437 -3037372,1630144926,2,46,0,1,1630053617,2,1.0,50.0,1.0,-9.0,4.0,1218438 -3037373,1630145273,2,53,0,1,1630053618,1,1.0,70.0,1.0,15.0,4.0,1218439 -3037374,1630145527,2,88,0,1,1630053619,1,6.0,-9.0,-9.0,-9.0,4.0,1218440 -3037375,1630145463,2,35,0,1,1630053620,1,6.0,-9.0,-9.0,-9.0,4.0,1218441 -3037376,1630144884,2,60,0,1,1630053621,1,1.0,1.0,6.0,-9.0,4.0,1218442 -3037377,1630144883,2,61,1,2,1630053621,2,1.0,7.0,1.0,-9.0,4.0,1218442 -3037378,1630145127,2,38,0,1,1630053622,2,3.0,34.0,5.0,-9.0,4.0,1218443 -3037379,1630145129,2,12,2,2,1630053622,2,-9.0,-9.0,-9.0,8.0,-9.0,1218443 -3037380,1630145128,2,8,2,3,1630053622,1,-9.0,-9.0,-9.0,5.0,-9.0,1218443 -3037381,1630145130,2,6,2,4,1630053622,2,-9.0,-9.0,-9.0,3.0,-9.0,1218443 -3037382,1630144719,1,57,0,1,1630053623,1,6.0,-9.0,-9.0,-9.0,4.0,1218444 -3037383,1630144722,1,40,0,1,1630053624,1,6.0,28.0,4.0,-9.0,4.0,1218445 -3037384,1630144684,1,61,0,1,1630053625,2,6.0,-9.0,-9.0,15.0,4.0,1218446 -3037385,1630144686,2,20,2,2,1630053625,2,6.0,-9.0,-9.0,-9.0,4.0,1218446 -3037386,1630144692,2,3,7,3,1630053625,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218446 -3037387,1630144694,2,2,7,4,1630053625,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218446 -3037388,1630144690,2,1,7,5,1630053625,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218446 -3037389,1630144688,2,58,15,6,1630053625,2,6.0,-9.0,-9.0,-9.0,4.0,1218446 -3037390,1630145223,2,26,0,1,1630053626,2,1.0,30.0,1.0,-9.0,4.0,1218447 -3037391,1630144731,1,62,0,1,1630053627,1,1.0,50.0,1.0,16.0,4.0,1218448 -3037392,1630145116,2,28,0,1,1630053628,2,6.0,-9.0,-9.0,15.0,4.0,1218449 -3037393,1630145118,2,3,2,2,1630053628,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218449 -3037394,1630144708,1,54,0,1,1630053629,1,1.0,65.0,1.0,-9.0,4.0,1218450 -3037395,1630144707,1,45,1,2,1630053629,2,1.0,40.0,1.0,-9.0,4.0,1218450 -3037396,1630145485,2,58,0,1,1630053630,1,6.0,-9.0,-9.0,-9.0,4.0,1218451 -3037397,1630145112,2,63,0,1,1630053631,2,1.0,40.0,1.0,-9.0,4.0,1218452 -3037398,1630144985,2,50,0,1,1630053632,2,1.0,40.0,1.0,-9.0,4.0,1218453 -3037399,1630144986,2,28,2,2,1630053632,2,1.0,35.0,1.0,-9.0,4.0,1218453 -3037400,1630145093,2,63,0,1,1630053633,2,6.0,-9.0,-9.0,-9.0,4.0,1218454 -3037401,1630145094,2,60,13,2,1630053633,1,6.0,-9.0,-9.0,-9.0,2.0,1218454 -3037402,1630144942,2,54,0,1,1630053634,2,3.0,-9.0,-9.0,-9.0,4.0,1218455 -3037403,1630144943,2,28,2,2,1630053634,1,6.0,-9.0,-9.0,-9.0,4.0,1218455 -3037404,1630145025,2,52,0,1,1630053635,1,1.0,40.0,1.0,-9.0,2.0,1218456 -3037405,1630145024,2,50,1,2,1630053635,2,1.0,30.0,1.0,-9.0,4.0,1218456 -3037406,1630145323,2,52,0,1,1630053636,1,1.0,40.0,1.0,15.0,4.0,1218457 -3037407,1630145324,2,52,15,2,1630053636,1,1.0,40.0,1.0,15.0,4.0,1218457 -3037408,1630145113,2,52,0,1,1630053637,2,1.0,8.0,6.0,-9.0,4.0,1218458 -3037409,1630145114,2,60,15,2,1630053637,1,6.0,-9.0,-9.0,-9.0,4.0,1218458 -3037410,1630144764,1,64,0,1,1630053638,1,1.0,53.0,1.0,-9.0,4.0,1218459 -3037411,1630145479,2,19,0,1,1630053639,1,1.0,50.0,1.0,-9.0,4.0,1218460 -3037412,1630144698,1,57,0,1,1630053640,2,1.0,50.0,1.0,-9.0,4.0,1218461 -3037413,1630145396,2,63,0,1,1630053641,1,6.0,-9.0,-9.0,-9.0,2.0,1218462 -3037414,1630144964,2,51,0,1,1630053642,2,1.0,13.0,4.0,-9.0,4.0,1218463 -3037415,1630144965,2,16,2,2,1630053642,1,6.0,-9.0,-9.0,13.0,-9.0,1218463 -3037416,1630144944,2,39,0,1,1630053643,2,1.0,40.0,1.0,-9.0,4.0,1218464 -3037417,1630144945,2,23,2,2,1630053643,1,6.0,-9.0,-9.0,-9.0,4.0,1218464 -3037418,1630144946,2,21,2,3,1630053643,1,6.0,-9.0,-9.0,15.0,4.0,1218464 -3037419,1630144947,2,19,2,4,1630053643,1,6.0,-9.0,-9.0,12.0,4.0,1218464 -3037420,1630144948,2,18,2,5,1630053643,1,6.0,-9.0,-9.0,-9.0,4.0,1218464 -3037421,1630144950,2,15,2,6,1630053643,2,-9.0,-9.0,-9.0,12.0,-9.0,1218464 -3037422,1630144951,2,13,2,7,1630053643,2,-9.0,-9.0,-9.0,9.0,-9.0,1218464 -3037423,1630144949,2,27,5,8,1630053643,1,6.0,-9.0,-9.0,-9.0,4.0,1218464 -3037424,1630145040,2,23,0,1,1630053644,2,6.0,-9.0,-9.0,-9.0,4.0,1218465 -3037425,1630145041,2,21,5,2,1630053644,2,6.0,-9.0,-9.0,-9.0,4.0,1218465 -3037426,1630145042,2,4,10,3,1630053644,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218465 -3037427,1630145043,2,1,10,4,1630053644,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218465 -3037428,1630144807,2,53,0,1,1630053645,1,3.0,25.0,6.0,-9.0,4.0,1218466 -3037429,1630144803,2,49,1,2,1630053645,2,6.0,-9.0,-9.0,-9.0,4.0,1218466 -3037430,1630144809,2,18,2,3,1630053645,1,6.0,-9.0,-9.0,15.0,4.0,1218466 -3037431,1630144805,2,27,4,4,1630053645,2,3.0,-9.0,-9.0,15.0,4.0,1218466 -3037432,1630144811,2,7,7,5,1630053645,2,-9.0,-9.0,-9.0,5.0,-9.0,1218466 -3037433,1630144813,2,4,7,6,1630053645,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218466 -3037434,1630144768,2,48,0,1,1630053646,2,6.0,-9.0,-9.0,-9.0,4.0,1218467 -3037435,1630144769,2,60,5,2,1630053646,1,6.0,-9.0,-9.0,-9.0,4.0,1218467 -3037436,1630144763,1,50,0,1,1630053647,1,1.0,40.0,1.0,-9.0,4.0,1218468 -3037437,1630145006,2,59,0,1,1630053648,2,6.0,-9.0,-9.0,-9.0,4.0,1218469 -3037438,1630145007,2,35,2,2,1630053648,1,6.0,-9.0,-9.0,-9.0,4.0,1218469 -3037439,1630145079,2,22,0,1,1630053649,2,1.0,40.0,6.0,-9.0,4.0,1218470 -3037440,1630145080,2,0,2,2,1630053649,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218470 -3037441,1630144796,2,42,0,1,1630053650,2,1.0,40.0,1.0,-9.0,4.0,1218471 -3037442,1630144798,2,18,2,2,1630053650,1,6.0,-9.0,-9.0,14.0,4.0,1218471 -3037443,1630144801,2,7,2,3,1630053650,2,-9.0,-9.0,-9.0,4.0,-9.0,1218471 -3037444,1630144799,2,38,5,4,1630053650,1,6.0,-9.0,-9.0,-9.0,4.0,1218471 -3037445,1630144797,2,61,6,5,1630053650,2,6.0,-9.0,-9.0,-9.0,4.0,1218471 -3037446,1630144800,2,57,15,6,1630053650,1,6.0,-9.0,-9.0,-9.0,4.0,1218471 -3037447,1630145310,2,35,0,1,1630053651,1,1.0,40.0,4.0,-9.0,4.0,1218472 -3037448,1630144936,2,30,0,1,1630053652,2,3.0,-9.0,-9.0,-9.0,4.0,1218473 -3037449,1630144937,2,25,10,2,1630053652,1,3.0,36.0,5.0,-9.0,4.0,1218473 -3037450,1630145439,2,64,0,1,1630053653,1,6.0,-9.0,-9.0,-9.0,2.0,1218474 -3037451,1630144755,1,32,0,1,1630053654,1,1.0,60.0,5.0,-9.0,4.0,1218475 -3037452,1630145340,2,57,0,1,1630053655,1,6.0,40.0,1.0,-9.0,4.0,1218476 -3037453,1630145372,2,62,0,1,1630053656,1,1.0,55.0,1.0,-9.0,4.0,1218477 -3037454,1630145373,2,22,2,2,1630053656,1,3.0,40.0,3.0,-9.0,4.0,1218477 -3037455,1630144761,1,22,0,1,1630053657,1,1.0,15.0,1.0,15.0,4.0,1218478 -3037456,1630145039,2,46,0,1,1630053658,2,1.0,40.0,1.0,-9.0,4.0,1218479 -3037457,1630144997,2,39,0,1,1630053659,2,3.0,-9.0,-9.0,-9.0,4.0,1218480 -3037458,1630145167,2,63,0,1,1630053660,2,6.0,-9.0,-9.0,-9.0,4.0,1218481 -3037459,1630145168,2,40,2,2,1630053660,2,1.0,40.0,1.0,-9.0,4.0,1218481 -3037460,1630145169,2,36,2,3,1630053660,1,3.0,45.0,4.0,-9.0,4.0,1218481 -3037461,1630145170,2,12,7,4,1630053660,2,-9.0,-9.0,-9.0,9.0,-9.0,1218481 -3037462,1630145023,2,26,0,1,1630053661,2,1.0,40.0,1.0,-9.0,4.0,1218482 -3037463,1630145288,2,23,0,1,1630053662,1,6.0,-9.0,-9.0,-9.0,4.0,1218483 -3037464,1630145038,2,63,0,1,1630053663,1,6.0,-9.0,-9.0,-9.0,4.0,1218484 -3037465,1630145037,2,64,1,2,1630053663,2,1.0,30.0,1.0,-9.0,4.0,1218484 -3037466,1630145424,2,59,0,1,1630053664,1,1.0,32.0,5.0,-9.0,4.0,1218485 -3037467,1630144643,2,71,0,1,1630053665,2,6.0,-9.0,-9.0,-9.0,4.0,1218486 -3037468,1630144644,2,74,1,2,1630053665,1,6.0,-9.0,-9.0,-9.0,4.0,1218486 -3037469,1630144751,1,57,0,1,1630053666,1,1.0,60.0,1.0,-9.0,4.0,1218487 -3037470,1630144749,1,28,0,1,1630053667,1,1.0,25.0,1.0,-9.0,4.0,1218488 -3037471,1630144750,1,28,12,2,1630053667,1,1.0,45.0,1.0,-9.0,4.0,1218488 -3037472,1630145138,2,38,0,1,1630053668,2,1.0,36.0,1.0,-9.0,4.0,1218489 -3037473,1630145139,2,4,2,2,1630053668,2,-9.0,-9.0,-9.0,1.0,-9.0,1218489 -3037474,1630145111,2,60,0,1,1630053669,2,1.0,50.0,6.0,-9.0,4.0,1218490 -3037475,1630144636,2,38,0,1,1630053670,2,3.0,20.0,4.0,-9.0,4.0,1218491 -3037476,1630144639,2,18,2,2,1630053670,1,3.0,20.0,6.0,15.0,4.0,1218491 -3037477,1630144640,2,12,2,3,1630053670,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218491 -3037478,1630144637,2,7,2,4,1630053670,1,-9.0,-9.0,-9.0,4.0,-9.0,1218491 -3037479,1630144638,2,7,2,5,1630053670,1,-9.0,-9.0,-9.0,3.0,-9.0,1218491 -3037480,1630144641,2,5,2,6,1630053670,2,-9.0,-9.0,-9.0,3.0,-9.0,1218491 -3037481,1630144635,2,74,6,7,1630053670,2,6.0,-9.0,-9.0,-9.0,4.0,1218491 -3037482,1630144715,1,36,0,1,1630053671,1,6.0,-9.0,-9.0,16.0,4.0,1218492 -3037483,1630145508,2,42,0,1,1630053672,1,2.0,60.0,1.0,-9.0,2.0,1218493 -3037484,1630144999,2,37,0,1,1630053673,2,6.0,-9.0,-9.0,-9.0,4.0,1218494 -3037485,1630145005,2,40,1,2,1630053673,1,6.0,-9.0,-9.0,-9.0,4.0,1218494 -3037486,1630145001,2,8,2,3,1630053673,1,-9.0,-9.0,-9.0,3.0,-9.0,1218494 -3037487,1630145003,2,5,2,4,1630053673,1,-9.0,-9.0,-9.0,2.0,-9.0,1218494 -3037488,1630145095,2,58,0,1,1630053674,2,6.0,-9.0,-9.0,-9.0,4.0,1218495 -3037489,1630145099,2,39,2,2,1630053674,1,1.0,50.0,1.0,-9.0,4.0,1218495 -3037490,1630145096,2,19,7,3,1630053674,2,1.0,20.0,4.0,-9.0,4.0,1218495 -3037491,1630145098,2,14,7,4,1630053674,1,-9.0,-9.0,-9.0,12.0,-9.0,1218495 -3037492,1630145097,2,37,15,5,1630053674,2,3.0,-9.0,-9.0,-9.0,4.0,1218495 -3037493,1630144927,2,54,0,1,1630053675,2,1.0,60.0,1.0,-9.0,4.0,1218496 -3037494,1630145061,2,54,0,1,1630053676,1,1.0,40.0,3.0,-9.0,2.0,1218497 -3037495,1630145060,2,49,1,2,1630053676,2,6.0,-9.0,-9.0,-9.0,4.0,1218497 -3037496,1630145506,2,47,0,1,1630053677,1,1.0,40.0,1.0,-9.0,4.0,1218498 -3037497,1630144695,1,57,0,1,1630053678,2,6.0,-9.0,-9.0,-9.0,4.0,1218499 -3037498,1630144661,2,47,0,1,1630053679,2,1.0,30.0,1.0,-9.0,4.0,1218500 -3037499,1630144665,2,62,1,2,1630053679,1,6.0,-9.0,-9.0,15.0,4.0,1218500 -3037500,1630144662,2,15,2,3,1630053679,1,-9.0,-9.0,-9.0,13.0,-9.0,1218500 -3037501,1630144663,2,12,2,4,1630053679,1,-9.0,-9.0,-9.0,9.0,-9.0,1218500 -3037502,1630144666,2,9,2,5,1630053679,2,-9.0,-9.0,-9.0,6.0,-9.0,1218500 -3037503,1630144664,2,5,2,6,1630053679,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218500 -3037504,1630144660,2,76,15,7,1630053679,2,1.0,40.0,1.0,-9.0,4.0,1218500 -3037505,1630145455,2,29,0,1,1630053680,1,6.0,-9.0,-9.0,16.0,3.0,1218501 -3037506,1630144914,2,64,0,1,1630053681,1,6.0,-9.0,-9.0,-9.0,4.0,1218502 -3037507,1630144908,2,64,1,2,1630053681,2,6.0,-9.0,-9.0,-9.0,4.0,1218502 -3037508,1630144916,2,41,2,3,1630053681,1,1.0,20.0,3.0,-9.0,4.0,1218502 -3037509,1630144910,2,32,2,4,1630053681,2,1.0,8.0,1.0,-9.0,4.0,1218502 -3037510,1630144918,2,18,3,5,1630053681,1,6.0,-9.0,-9.0,14.0,4.0,1218502 -3037511,1630144912,2,16,3,6,1630053681,1,6.0,-9.0,-9.0,11.0,-9.0,1218502 -3037512,1630144920,2,14,3,7,1630053681,2,-9.0,-9.0,-9.0,11.0,-9.0,1218502 -3037513,1630144922,2,13,3,8,1630053681,2,-9.0,-9.0,-9.0,8.0,-9.0,1218502 -3037514,1630144924,2,10,7,9,1630053681,2,-9.0,-9.0,-9.0,6.0,-9.0,1218502 -3037515,1630145175,2,53,0,1,1630053682,2,1.0,27.0,6.0,-9.0,4.0,1218503 -3037516,1630145178,2,13,2,2,1630053682,2,-9.0,-9.0,-9.0,10.0,-9.0,1218503 -3037517,1630145176,2,60,5,3,1630053682,1,6.0,-9.0,-9.0,-9.0,4.0,1218503 -3037518,1630145177,2,57,5,4,1630053682,1,6.0,-9.0,-9.0,-9.0,4.0,1218503 -3037519,1630145029,2,26,0,1,1630053683,2,1.0,40.0,1.0,-9.0,4.0,1218504 -3037520,1630145030,2,8,2,2,1630053683,1,-9.0,-9.0,-9.0,3.0,-9.0,1218504 -3037521,1630145034,2,6,3,3,1630053683,2,-9.0,-9.0,-9.0,3.0,-9.0,1218504 -3037522,1630145031,2,2,3,4,1630053683,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218504 -3037523,1630145032,2,19,5,5,1630053683,1,6.0,-9.0,-9.0,-9.0,4.0,1218504 -3037524,1630145033,2,26,13,6,1630053683,1,1.0,40.0,1.0,-9.0,4.0,1218504 -3037525,1630145269,2,64,0,1,1630053684,1,1.0,20.0,4.0,-9.0,4.0,1218505 -3037526,1630144723,1,59,0,1,1630053685,1,1.0,60.0,1.0,-9.0,4.0,1218506 -3037527,1630145536,4,54,0,1,1630053686,1,3.0,-9.0,-9.0,15.0,4.0,1218507 -3037528,1630144721,1,39,0,1,1630053687,1,6.0,8.0,6.0,16.0,4.0,1218508 -3037529,1630144728,1,39,0,1,1630053688,1,1.0,40.0,1.0,-9.0,4.0,1218509 -3037530,1630145531,2,66,0,1,1630053689,1,6.0,-9.0,-9.0,-9.0,4.0,1218510 -3037531,1630145076,2,47,0,1,1630053690,2,2.0,60.0,3.0,-9.0,4.0,1218511 -3037532,1630144672,1,41,0,1,1630053691,2,1.0,40.0,1.0,-9.0,4.0,1218512 -3037533,1630144674,1,43,1,2,1630053691,1,1.0,40.0,1.0,-9.0,4.0,1218512 -3037534,1630144676,1,10,2,3,1630053691,2,-9.0,-9.0,-9.0,7.0,-9.0,1218512 -3037535,1630144678,1,7,2,4,1630053691,1,-9.0,-9.0,-9.0,4.0,-9.0,1218512 -3037536,1630144680,1,7,2,5,1630053691,1,-9.0,-9.0,-9.0,4.0,-9.0,1218512 -3037537,1630144670,1,70,6,6,1630053691,2,6.0,-9.0,-9.0,-9.0,4.0,1218512 -3037538,1630145026,2,31,0,1,1630053692,2,3.0,30.0,5.0,15.0,4.0,1218513 -3037539,1630145027,2,3,2,2,1630053692,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218513 -3037540,1630145028,2,1,2,3,1630053692,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218513 -3037541,1630145302,2,54,0,1,1630053693,1,6.0,60.0,4.0,-9.0,2.0,1218514 -3037542,1630144893,2,36,0,1,1630053694,2,3.0,-9.0,-9.0,-9.0,4.0,1218515 -3037543,1630144894,2,14,2,2,1630053694,1,-9.0,-9.0,-9.0,10.0,-9.0,1218515 -3037544,1630144896,2,9,2,3,1630053694,2,-9.0,-9.0,-9.0,8.0,-9.0,1218515 -3037545,1630144895,2,44,5,4,1630053694,1,3.0,-9.0,-9.0,-9.0,4.0,1218515 -3037546,1630145073,2,42,0,1,1630053695,2,6.0,-9.0,-9.0,-9.0,4.0,1218516 -3037547,1630145075,2,21,2,2,1630053695,1,6.0,-9.0,-9.0,-9.0,4.0,1218516 -3037548,1630145074,2,16,2,3,1630053695,1,6.0,-9.0,-9.0,12.0,-9.0,1218516 -3037549,1630144711,1,56,0,1,1630053696,2,1.0,50.0,1.0,-9.0,4.0,1218517 -3037550,1630145360,2,62,0,1,1630053697,1,1.0,50.0,1.0,-9.0,2.0,1218518 -3037551,1630144753,1,52,0,1,1630053698,1,1.0,40.0,1.0,-9.0,4.0,1218519 -3037552,1630144754,1,46,15,2,1630053698,1,1.0,40.0,1.0,-9.0,4.0,1218519 -3037553,1630145537,4,38,0,1,1630053699,1,3.0,30.0,6.0,15.0,3.0,1218520 -3037554,1630144855,2,45,0,1,1630053700,2,6.0,-9.0,-9.0,-9.0,2.0,1218521 -3037555,1630144857,2,7,2,2,1630053700,2,-9.0,-9.0,-9.0,3.0,-9.0,1218521 -3037556,1630144987,2,45,0,1,1630053701,2,1.0,40.0,1.0,-9.0,4.0,1218522 -3037557,1630144988,2,14,2,2,1630053701,2,-9.0,-9.0,-9.0,10.0,-9.0,1218522 -3037558,1630145057,2,24,0,1,1630053702,1,1.0,70.0,4.0,-9.0,4.0,1218523 -3037559,1630145058,2,1,2,2,1630053702,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218523 -3037560,1630145059,2,4,4,3,1630053702,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218523 -3037561,1630145056,2,21,13,4,1630053702,2,1.0,24.0,4.0,-9.0,4.0,1218523 -3037562,1630144845,2,19,0,1,1630053703,2,3.0,22.0,1.0,-9.0,4.0,1218524 -3037563,1630144846,2,1,2,2,1630053703,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218524 -3037564,1630144681,1,60,0,1,1630053704,2,6.0,-9.0,-9.0,-9.0,4.0,1218525 -3037565,1630144682,1,15,2,2,1630053704,2,-9.0,-9.0,-9.0,11.0,-9.0,1218525 -3037566,1630144767,1,47,0,1,1630053705,1,6.0,24.0,5.0,-9.0,4.0,1218526 -3037567,1630144739,1,55,0,1,1630053706,1,1.0,50.0,1.0,-9.0,4.0,1218527 -3037568,1630145051,2,20,0,1,1630053707,2,3.0,40.0,3.0,-9.0,4.0,1218528 -3037569,1630145054,2,12,15,2,1630053707,2,-9.0,-9.0,-9.0,8.0,-9.0,1218528 -3037570,1630145053,2,12,15,3,1630053707,1,-9.0,-9.0,-9.0,8.0,-9.0,1218528 -3037571,1630145055,2,0,15,4,1630053707,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218528 -3037572,1630145008,2,43,0,1,1630053708,2,6.0,20.0,6.0,15.0,4.0,1218529 -3037573,1630145009,2,18,2,2,1630053708,1,2.0,20.0,4.0,14.0,4.0,1218529 -3037574,1630145429,2,47,0,1,1630053709,1,6.0,-9.0,-9.0,-9.0,4.0,1218530 -3037575,1630144709,1,33,0,1,1630053710,2,1.0,50.0,1.0,-9.0,4.0,1218531 -3037576,1630145272,2,57,0,1,1630053711,1,1.0,15.0,5.0,-9.0,2.0,1218532 -3037577,1630145270,2,40,0,1,1630053712,1,1.0,26.0,6.0,-9.0,4.0,1218533 -3037578,1630144819,2,61,0,1,1630053713,2,1.0,25.0,1.0,-9.0,4.0,1218534 -3037579,1630144820,2,27,2,2,1630053713,1,1.0,2.0,1.0,-9.0,4.0,1218534 -3037580,1630144649,2,65,0,1,1630053714,2,6.0,-9.0,-9.0,-9.0,4.0,1218535 -3037581,1630145263,2,47,0,1,1630053715,1,1.0,40.0,1.0,-9.0,4.0,1218536 -3037582,1630145262,2,10,2,2,1630053715,1,-9.0,-9.0,-9.0,6.0,-9.0,1218536 -3037583,1630144646,2,75,0,1,1630053716,2,6.0,-9.0,-9.0,-9.0,4.0,1218537 -3037584,1630144928,2,50,0,1,1630053717,2,1.0,55.0,1.0,-9.0,4.0,1218538 -3037585,1630144929,2,8,2,2,1630053717,1,-9.0,-9.0,-9.0,4.0,-9.0,1218538 -3037586,1630144930,2,60,15,3,1630053717,1,1.0,45.0,1.0,-9.0,4.0,1218538 -3037587,1630144786,2,36,0,1,1630053718,2,1.0,30.0,4.0,-9.0,4.0,1218539 -3037588,1630144789,2,19,2,2,1630053718,1,3.0,-9.0,-9.0,14.0,4.0,1218539 -3037589,1630144787,2,14,2,3,1630053718,1,-9.0,-9.0,-9.0,11.0,-9.0,1218539 -3037590,1630144791,2,14,2,4,1630053718,2,-9.0,-9.0,-9.0,11.0,-9.0,1218539 -3037591,1630144788,2,12,2,5,1630053718,1,-9.0,-9.0,-9.0,9.0,-9.0,1218539 -3037592,1630144792,2,12,2,6,1630053718,2,-9.0,-9.0,-9.0,9.0,-9.0,1218539 -3037593,1630144793,2,4,2,7,1630053718,2,-9.0,-9.0,-9.0,1.0,-9.0,1218539 -3037594,1630144790,2,45,15,8,1630053718,1,1.0,32.0,5.0,-9.0,4.0,1218539 -3037595,1630144696,1,53,0,1,1630053719,2,6.0,-9.0,-9.0,-9.0,4.0,1218540 -3037596,1630144697,1,26,2,2,1630053719,1,6.0,-9.0,-9.0,-9.0,4.0,1218540 -3037597,1630144725,1,29,0,1,1630053720,1,1.0,45.0,1.0,-9.0,4.0,1218541 -3037598,1630144897,2,36,0,1,1630053721,2,1.0,25.0,1.0,-9.0,4.0,1218542 -3037599,1630144898,2,18,2,2,1630053721,1,6.0,-9.0,-9.0,14.0,4.0,1218542 -3037600,1630144836,2,53,0,1,1630053722,2,6.0,-9.0,-9.0,-9.0,4.0,1218543 -3037601,1630144837,2,22,2,2,1630053722,2,1.0,6.0,1.0,15.0,4.0,1218543 -3037602,1630144838,2,13,2,3,1630053722,1,-9.0,-9.0,-9.0,11.0,-9.0,1218543 -3037603,1630144839,2,1,7,4,1630053722,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218543 -3037604,1630144847,2,55,0,1,1630053723,2,1.0,35.0,1.0,-9.0,4.0,1218544 -3037605,1630144848,2,23,2,2,1630053723,1,3.0,-9.0,-9.0,15.0,4.0,1218544 -3037606,1630145274,2,48,0,1,1630053724,1,1.0,50.0,1.0,-9.0,4.0,1218545 -3037607,1630144976,2,36,0,1,1630053725,2,6.0,-9.0,-9.0,15.0,4.0,1218546 -3037608,1630144978,2,17,2,2,1630053725,2,6.0,-9.0,-9.0,14.0,4.0,1218546 -3037609,1630144977,2,13,2,3,1630053725,1,-9.0,-9.0,-9.0,9.0,-9.0,1218546 -3037610,1630144979,2,11,2,4,1630053725,2,-9.0,-9.0,-9.0,7.0,-9.0,1218546 -3037611,1630145136,2,34,0,1,1630053726,2,1.0,40.0,1.0,16.0,4.0,1218547 -3037612,1630145137,2,34,1,2,1630053726,1,1.0,60.0,1.0,-9.0,4.0,1218547 -3037613,1630145535,4,61,0,1,1630053727,1,1.0,24.0,1.0,-9.0,4.0,1218548 -3037614,1630144816,2,55,0,1,1630053728,1,6.0,-9.0,-9.0,-9.0,4.0,1218549 -3037615,1630144817,2,18,2,2,1630053728,1,6.0,-9.0,-9.0,14.0,4.0,1218549 -3037616,1630144815,2,17,2,3,1630053728,1,6.0,-9.0,-9.0,13.0,4.0,1218549 -3037617,1630146120,2,63,0,1,1630053729,2,6.0,-9.0,-9.0,-9.0,4.0,1218550 -3037618,1630146121,2,40,2,2,1630053729,2,1.0,40.0,1.0,-9.0,4.0,1218550 -3037619,1630146122,2,36,2,3,1630053729,1,3.0,45.0,4.0,-9.0,4.0,1218550 -3037620,1630146123,2,12,7,4,1630053729,2,-9.0,-9.0,-9.0,9.0,-9.0,1218550 -3037621,1630145639,2,54,0,1,1630053730,2,3.0,35.0,5.0,-9.0,4.0,1218551 -3037622,1630145641,2,54,1,2,1630053730,1,1.0,40.0,2.0,-9.0,4.0,1218551 -3037623,1630145637,2,86,8,3,1630053730,2,6.0,-9.0,-9.0,-9.0,4.0,1218551 -3037624,1630145946,2,47,0,1,1630053731,1,1.0,40.0,1.0,-9.0,2.0,1218552 -3037625,1630145944,2,26,2,2,1630053731,2,1.0,36.0,1.0,-9.0,4.0,1218552 -3037626,1630145579,2,61,0,1,1630053732,1,1.0,50.0,1.0,-9.0,4.0,1218553 -3037627,1630145571,2,93,6,2,1630053732,2,6.0,-9.0,-9.0,-9.0,4.0,1218553 -3037628,1630145575,1,56,13,3,1630053732,2,1.0,40.0,1.0,-9.0,4.0,1218553 -3037629,1630145580,2,61,0,1,1630053733,1,1.0,50.0,1.0,-9.0,4.0,1218554 -3037630,1630145572,2,93,6,2,1630053733,2,6.0,-9.0,-9.0,-9.0,4.0,1218554 -3037631,1630145576,1,56,13,3,1630053733,2,1.0,40.0,1.0,-9.0,4.0,1218554 -3037632,1630145581,2,61,0,1,1630053734,1,1.0,50.0,1.0,-9.0,4.0,1218555 -3037633,1630145573,2,93,6,2,1630053734,2,6.0,-9.0,-9.0,-9.0,4.0,1218555 -3037634,1630145577,1,56,13,3,1630053734,2,1.0,40.0,1.0,-9.0,4.0,1218555 -3037635,1630145874,2,50,0,1,1630053735,2,1.0,55.0,1.0,-9.0,4.0,1218556 -3037636,1630145875,2,8,2,2,1630053735,1,-9.0,-9.0,-9.0,4.0,-9.0,1218556 -3037637,1630145876,2,60,15,3,1630053735,1,1.0,45.0,1.0,-9.0,4.0,1218556 -3037638,1630145978,2,50,0,1,1630053736,2,1.0,65.0,1.0,-9.0,4.0,1218557 -3037639,1630145979,2,54,1,2,1630053736,1,1.0,40.0,1.0,-9.0,4.0,1218557 -3037640,1630145980,2,16,2,3,1630053736,2,6.0,-9.0,-9.0,12.0,-9.0,1218557 -3037641,1630146226,2,55,0,1,1630053737,1,1.0,48.0,1.0,-9.0,4.0,1218558 -3037642,1630146227,2,53,5,2,1630053737,1,3.0,-9.0,-9.0,-9.0,4.0,1218558 -3037643,1630146228,2,19,10,3,1630053737,1,6.0,-9.0,-9.0,14.0,4.0,1218558 -3037644,1630145780,2,64,0,1,1630053738,1,6.0,40.0,3.0,-9.0,2.0,1218559 -3037645,1630145778,2,63,1,2,1630053738,2,6.0,-9.0,-9.0,-9.0,4.0,1218559 -3037646,1630145779,2,34,2,3,1630053738,2,2.0,40.0,4.0,-9.0,4.0,1218559 -3037647,1630145960,2,61,0,1,1630053739,1,1.0,60.0,1.0,-9.0,4.0,1218560 -3037648,1630145958,2,60,1,2,1630053739,2,6.0,-9.0,-9.0,-9.0,4.0,1218560 -3037649,1630145959,2,51,10,3,1630053739,2,6.0,-9.0,-9.0,-9.0,4.0,1218560 -3037650,1630145605,2,53,0,1,1630053740,2,6.0,-9.0,-9.0,-9.0,4.0,1218561 -3037651,1630145599,1,88,12,2,1630053740,2,6.0,-9.0,-9.0,-9.0,4.0,1218561 -3037652,1630145601,1,75,12,3,1630053740,2,6.0,-9.0,-9.0,-9.0,4.0,1218561 -3037653,1630145603,1,75,12,4,1630053740,2,6.0,-9.0,-9.0,-9.0,4.0,1218561 -3037654,1630145597,2,66,12,5,1630053740,2,6.0,-9.0,-9.0,-9.0,4.0,1218561 -3037655,1630145607,2,58,12,6,1630053740,2,6.0,-9.0,-9.0,-9.0,4.0,1218561 -3037656,1630145609,4,52,12,7,1630053740,2,6.0,-9.0,-9.0,-9.0,4.0,1218561 -3037657,1630145969,2,59,0,1,1630053741,2,6.0,-9.0,-9.0,-9.0,2.0,1218562 -3037658,1630145973,2,29,4,2,1630053741,1,6.0,-9.0,-9.0,-9.0,4.0,1218562 -3037659,1630145971,2,57,13,3,1630053741,2,1.0,40.0,1.0,-9.0,2.0,1218562 -3037660,1630146098,2,57,0,1,1630053742,1,1.0,40.0,1.0,-9.0,4.0,1218563 -3037661,1630146097,2,59,1,2,1630053742,2,3.0,-9.0,-9.0,-9.0,4.0,1218563 -3037662,1630146099,2,25,2,3,1630053742,1,1.0,40.0,3.0,-9.0,4.0,1218563 -3037663,1630146154,2,57,0,1,1630053743,2,6.0,-9.0,-9.0,-9.0,4.0,1218564 -3037664,1630146158,2,21,2,2,1630053743,1,3.0,-9.0,-9.0,-9.0,4.0,1218564 -3037665,1630146160,2,18,7,3,1630053743,1,3.0,-9.0,-9.0,-9.0,4.0,1218564 -3037666,1630146156,2,53,15,4,1630053743,2,3.0,-9.0,-9.0,-9.0,4.0,1218564 -3037667,1630146162,2,24,15,5,1630053743,1,6.0,-9.0,-9.0,-9.0,4.0,1218564 -3037668,1630145737,2,64,0,1,1630053744,2,6.0,-9.0,-9.0,-9.0,4.0,1218565 -3037669,1630145741,2,45,2,2,1630053744,1,6.0,-9.0,-9.0,-9.0,4.0,1218565 -3037670,1630145739,2,31,2,3,1630053744,2,6.0,-9.0,-9.0,-9.0,4.0,1218565 -3037671,1630145743,2,28,2,4,1630053744,1,6.0,-9.0,-9.0,15.0,4.0,1218565 -3037672,1630145745,2,11,7,5,1630053744,2,-9.0,-9.0,-9.0,7.0,-9.0,1218565 -3037673,1630145781,2,63,0,1,1630053745,2,6.0,-9.0,-9.0,16.0,4.0,1218566 -3037674,1630146030,2,58,0,1,1630053746,2,6.0,-9.0,-9.0,-9.0,4.0,1218567 -3037675,1630146231,2,53,0,1,1630053747,1,6.0,-9.0,-9.0,-9.0,4.0,1218568 -3037676,1630145935,2,56,0,1,1630053748,2,6.0,-9.0,-9.0,-9.0,4.0,1218569 -3037677,1630145777,2,57,0,1,1630053749,2,6.0,-9.0,-9.0,-9.0,4.0,1218570 -3037678,1630145885,2,57,0,1,1630053750,2,6.0,-9.0,-9.0,-9.0,4.0,1218571 -3037679,1630146222,2,53,0,1,1630053751,1,6.0,40.0,1.0,-9.0,2.0,1218572 -3037680,1630145841,2,51,0,1,1630053752,2,3.0,-9.0,-9.0,-9.0,4.0,1218573 -3037681,1630146039,2,63,0,1,1630053753,2,6.0,-9.0,-9.0,-9.0,4.0,1218574 -3037682,1630145808,2,60,0,1,1630053754,2,6.0,-9.0,-9.0,-9.0,4.0,1218575 -3037683,1630146055,2,48,0,1,1630053755,2,6.0,-9.0,-9.0,-9.0,4.0,1218576 -3037684,1630146057,2,24,2,2,1630053755,2,6.0,-9.0,-9.0,-9.0,4.0,1218576 -3037685,1630146059,2,21,2,3,1630053755,2,6.0,-9.0,-9.0,-9.0,4.0,1218576 -3037686,1630146065,2,4,7,4,1630053755,2,-9.0,-9.0,-9.0,2.0,-9.0,1218576 -3037687,1630146067,2,3,7,5,1630053755,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218576 -3037688,1630146061,2,1,7,6,1630053755,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218576 -3037689,1630146063,2,0,7,7,1630053755,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218576 -3037690,1630146015,2,46,0,1,1630053756,2,6.0,-9.0,-9.0,-9.0,4.0,1218577 -3037691,1630146025,2,84,1,2,1630053756,1,6.0,-9.0,-9.0,-9.0,4.0,1218577 -3037692,1630146020,2,43,5,3,1630053756,1,6.0,-9.0,-9.0,-9.0,4.0,1218577 -3037693,1630146016,2,46,0,1,1630053757,2,6.0,-9.0,-9.0,-9.0,4.0,1218578 -3037694,1630146026,2,84,1,2,1630053757,1,6.0,-9.0,-9.0,-9.0,4.0,1218578 -3037695,1630146021,2,43,5,3,1630053757,1,6.0,-9.0,-9.0,-9.0,4.0,1218578 -3037696,1630145787,2,61,0,1,1630053758,2,6.0,-9.0,-9.0,-9.0,4.0,1218579 -3037697,1630145794,2,45,2,2,1630053758,1,6.0,-9.0,-9.0,-9.0,4.0,1218579 -3037698,1630145801,2,69,5,3,1630053758,1,6.0,-9.0,-9.0,-9.0,4.0,1218579 -3037699,1630145788,2,61,0,1,1630053759,2,6.0,-9.0,-9.0,-9.0,4.0,1218580 -3037700,1630145795,2,45,2,2,1630053759,1,6.0,-9.0,-9.0,-9.0,4.0,1218580 -3037701,1630145802,2,69,5,3,1630053759,1,6.0,-9.0,-9.0,-9.0,4.0,1218580 -3037702,1630145789,2,61,0,1,1630053760,2,6.0,-9.0,-9.0,-9.0,4.0,1218581 -3037703,1630145796,2,45,2,2,1630053760,1,6.0,-9.0,-9.0,-9.0,4.0,1218581 -3037704,1630145803,2,69,5,3,1630053760,1,6.0,-9.0,-9.0,-9.0,4.0,1218581 -3037705,1630146017,2,46,0,1,1630053761,2,6.0,-9.0,-9.0,-9.0,4.0,1218582 -3037706,1630146022,2,43,5,2,1630053761,1,6.0,-9.0,-9.0,-9.0,4.0,1218582 -3037707,1630145790,2,61,0,1,1630053762,2,6.0,-9.0,-9.0,-9.0,4.0,1218583 -3037708,1630145797,2,45,2,2,1630053762,1,6.0,-9.0,-9.0,-9.0,4.0,1218583 -3037709,1630145804,2,69,5,3,1630053762,1,6.0,-9.0,-9.0,-9.0,4.0,1218583 -3037710,1630145791,2,61,0,1,1630053763,2,6.0,-9.0,-9.0,-9.0,4.0,1218584 -3037711,1630145798,2,45,2,2,1630053763,1,6.0,-9.0,-9.0,-9.0,4.0,1218584 -3037712,1630146018,2,46,0,1,1630053764,2,6.0,-9.0,-9.0,-9.0,4.0,1218585 -3037713,1630146028,2,84,1,2,1630053764,1,6.0,-9.0,-9.0,-9.0,4.0,1218585 -3037714,1630146023,2,43,5,3,1630053764,1,6.0,-9.0,-9.0,-9.0,4.0,1218585 -3037715,1630145792,2,61,0,1,1630053765,2,6.0,-9.0,-9.0,-9.0,4.0,1218586 -3037716,1630145799,2,45,2,2,1630053765,1,6.0,-9.0,-9.0,-9.0,4.0,1218586 -3037717,1630145806,2,69,5,3,1630053765,1,6.0,-9.0,-9.0,-9.0,4.0,1218586 -3037718,1630145793,2,61,0,1,1630053766,2,6.0,-9.0,-9.0,-9.0,4.0,1218587 -3037719,1630145800,2,45,2,2,1630053766,1,6.0,-9.0,-9.0,-9.0,4.0,1218587 -3037720,1630145807,2,69,5,3,1630053766,1,6.0,-9.0,-9.0,-9.0,4.0,1218587 -3037721,1630146007,2,50,0,1,1630053767,1,3.0,40.0,5.0,-9.0,4.0,1218588 -3037722,1630146003,2,44,1,2,1630053767,2,3.0,50.0,5.0,-9.0,4.0,1218588 -3037723,1630146011,2,28,4,3,1630053767,1,3.0,-9.0,-9.0,-9.0,4.0,1218588 -3037724,1630146008,2,50,0,1,1630053768,1,3.0,40.0,5.0,-9.0,4.0,1218589 -3037725,1630146004,2,44,1,2,1630053768,2,3.0,50.0,5.0,-9.0,4.0,1218589 -3037726,1630146012,2,28,4,3,1630053768,1,3.0,-9.0,-9.0,-9.0,4.0,1218589 -3037727,1630146009,2,50,0,1,1630053769,1,3.0,40.0,5.0,-9.0,4.0,1218590 -3037728,1630146005,2,44,1,2,1630053769,2,3.0,50.0,5.0,-9.0,4.0,1218590 -3037729,1630146013,2,28,4,3,1630053769,1,3.0,-9.0,-9.0,-9.0,4.0,1218590 -3037730,1630146053,2,63,0,1,1630053770,2,6.0,-9.0,-9.0,-9.0,4.0,1218591 -3037731,1630146054,2,60,13,2,1630053770,1,6.0,-9.0,-9.0,-9.0,2.0,1218591 -3037732,1630145848,2,60,0,1,1630053771,1,6.0,-9.0,-9.0,-9.0,4.0,1218592 -3037733,1630145929,2,55,0,1,1630053772,2,6.0,-9.0,-9.0,-9.0,4.0,1218593 -3037734,1630145931,2,56,1,2,1630053772,1,6.0,-9.0,-9.0,-9.0,4.0,1218593 -3037735,1630146152,2,54,0,1,1630053773,2,6.0,-9.0,-9.0,-9.0,4.0,1218594 -3037736,1630146153,2,19,2,2,1630053773,1,6.0,-9.0,-9.0,-9.0,4.0,1218594 -3037737,1630146092,2,58,0,1,1630053774,2,3.0,-9.0,-9.0,15.0,4.0,1218595 -3037738,1630146093,2,28,2,2,1630053774,1,6.0,-9.0,-9.0,16.0,4.0,1218595 -3037739,1630145930,2,55,0,1,1630053775,2,6.0,-9.0,-9.0,-9.0,4.0,1218596 -3037740,1630145932,2,56,1,2,1630053775,1,6.0,-9.0,-9.0,-9.0,4.0,1218596 -3037741,1630145877,2,46,0,1,1630053776,2,6.0,-9.0,-9.0,-9.0,4.0,1218597 -3037742,1630145878,2,16,2,2,1630053776,2,6.0,-9.0,-9.0,13.0,-9.0,1218597 -3037743,1630146233,2,50,0,1,1630053777,1,1.0,40.0,1.0,-9.0,4.0,1218598 -3037744,1630146144,2,49,0,1,1630053778,2,1.0,50.0,1.0,-9.0,4.0,1218599 -3037745,1630146148,2,50,1,2,1630053778,1,3.0,-9.0,-9.0,-9.0,4.0,1218599 -3037746,1630146146,2,18,2,3,1630053778,2,3.0,-9.0,-9.0,14.0,4.0,1218599 -3037747,1630145817,2,61,0,1,1630053779,2,1.0,40.0,1.0,-9.0,4.0,1218600 -3037748,1630145821,2,36,2,2,1630053779,1,6.0,40.0,5.0,-9.0,4.0,1218600 -3037749,1630145819,2,2,7,3,1630053779,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218600 -3037750,1630145818,2,61,0,1,1630053780,2,1.0,40.0,1.0,-9.0,4.0,1218601 -3037751,1630145822,2,36,2,2,1630053780,1,6.0,40.0,5.0,-9.0,4.0,1218601 -3037752,1630145820,2,2,7,3,1630053780,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218601 -3037753,1630145750,2,49,0,1,1630053781,2,6.0,-9.0,-9.0,-9.0,4.0,1218602 -3037754,1630145751,2,20,2,2,1630053781,1,1.0,40.0,1.0,-9.0,4.0,1218602 -3037755,1630145752,2,10,7,3,1630053781,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218602 -3037756,1630145568,2,87,0,1,1630053782,2,6.0,-9.0,-9.0,-9.0,4.0,1218603 -3037757,1630145569,2,50,2,2,1630053782,1,1.0,40.0,1.0,-9.0,4.0,1218603 -3037758,1630145570,2,27,7,3,1630053782,1,1.0,40.0,2.0,-9.0,4.0,1218603 -3037759,1630145656,2,86,0,1,1630053783,2,6.0,-9.0,-9.0,-9.0,4.0,1218604 -3037760,1630145655,2,94,0,1,1630053784,2,6.0,-9.0,-9.0,-9.0,4.0,1218605 -3037761,1630145633,2,68,0,1,1630053785,2,6.0,-9.0,-9.0,-9.0,4.0,1218606 -3037762,1630145657,2,75,0,1,1630053786,2,6.0,-9.0,-9.0,-9.0,4.0,1218607 -3037763,1630145541,2,71,0,1,1630053787,2,6.0,-9.0,-9.0,-9.0,4.0,1218608 -3037764,1630145652,2,84,0,1,1630053788,2,6.0,-9.0,-9.0,-9.0,4.0,1218609 -3037765,1630145813,2,65,0,1,1630053789,1,6.0,-9.0,-9.0,-9.0,4.0,1218610 -3037766,1630145809,2,61,1,2,1630053789,2,6.0,-9.0,-9.0,-9.0,4.0,1218610 -3037767,1630145811,2,32,2,3,1630053789,1,6.0,-9.0,-9.0,-9.0,4.0,1218610 -3037768,1630145814,2,65,0,1,1630053790,1,6.0,-9.0,-9.0,-9.0,4.0,1218611 -3037769,1630145810,2,61,1,2,1630053790,2,6.0,-9.0,-9.0,-9.0,4.0,1218611 -3037770,1630145812,2,32,2,3,1630053790,1,6.0,-9.0,-9.0,-9.0,4.0,1218611 -3037771,1630145611,2,89,0,1,1630053791,2,6.0,-9.0,-9.0,-9.0,4.0,1218612 -3037772,1630145614,2,63,2,2,1630053791,2,6.0,-9.0,-9.0,-9.0,4.0,1218612 -3037773,1630145617,2,61,2,3,1630053791,1,6.0,-9.0,-9.0,-9.0,4.0,1218612 -3037774,1630145612,2,89,0,1,1630053792,2,6.0,-9.0,-9.0,-9.0,4.0,1218613 -3037775,1630145615,2,63,2,2,1630053792,2,6.0,-9.0,-9.0,-9.0,4.0,1218613 -3037776,1630145618,2,61,2,3,1630053792,1,6.0,-9.0,-9.0,-9.0,4.0,1218613 -3037777,1630146207,2,80,0,1,1630053793,1,6.0,-9.0,-9.0,-9.0,4.0,1218614 -3037778,1630146206,2,45,2,2,1630053793,1,6.0,-9.0,-9.0,-9.0,4.0,1218614 -3037779,1630146205,2,13,7,3,1630053793,1,-9.0,-9.0,-9.0,10.0,-9.0,1218614 -3037780,1630145549,2,73,0,1,1630053794,2,6.0,-9.0,-9.0,-9.0,4.0,1218615 -3037781,1630145550,2,14,7,2,1630053794,1,-9.0,-9.0,-9.0,10.0,-9.0,1218615 -3037782,1630145650,2,83,0,1,1630053795,2,6.0,-9.0,-9.0,-9.0,4.0,1218616 -3037783,1630145651,2,61,2,2,1630053795,1,6.0,-9.0,-9.0,-9.0,4.0,1218616 -3037784,1630145653,2,80,0,1,1630053796,2,6.0,-9.0,-9.0,-9.0,4.0,1218617 -3037785,1630145654,2,51,2,2,1630053796,2,6.0,-9.0,-9.0,-9.0,4.0,1218617 -3037786,1630145591,2,76,0,1,1630053797,2,6.0,-9.0,-9.0,-9.0,4.0,1218618 -3037787,1630145593,2,42,2,2,1630053797,1,3.0,-9.0,-9.0,-9.0,4.0,1218618 -3037788,1630145854,2,43,0,1,1630053798,2,6.0,-9.0,-9.0,-9.0,4.0,1218619 -3037789,1630145857,2,20,2,2,1630053798,2,6.0,-9.0,-9.0,-9.0,4.0,1218619 -3037790,1630145863,2,20,2,3,1630053798,1,6.0,-9.0,-9.0,-9.0,4.0,1218619 -3037791,1630145860,2,19,2,4,1630053798,2,6.0,-9.0,-9.0,14.0,4.0,1218619 -3037792,1630145866,2,0,7,5,1630053798,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218619 -3037793,1630146104,2,29,0,1,1630053799,2,6.0,-9.0,-9.0,-9.0,4.0,1218620 -3037794,1630146105,2,14,2,2,1630053799,1,-9.0,-9.0,-9.0,9.0,-9.0,1218620 -3037795,1630146106,2,4,2,3,1630053799,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218620 -3037796,1630146107,2,2,2,4,1630053799,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218620 -3037797,1630146108,2,45,6,5,1630053799,1,3.0,-9.0,-9.0,-9.0,4.0,1218620 -3037798,1630145855,2,43,0,1,1630053800,2,6.0,-9.0,-9.0,-9.0,4.0,1218621 -3037799,1630145858,2,20,2,2,1630053800,2,6.0,-9.0,-9.0,-9.0,4.0,1218621 -3037800,1630145864,2,20,2,3,1630053800,1,6.0,-9.0,-9.0,-9.0,4.0,1218621 -3037801,1630145861,2,19,2,4,1630053800,2,6.0,-9.0,-9.0,14.0,4.0,1218621 -3037802,1630145867,2,0,7,5,1630053800,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218621 -3037803,1630145667,2,34,0,1,1630053801,2,3.0,-9.0,-9.0,15.0,4.0,1218622 -3037804,1630145668,2,15,2,2,1630053801,2,-9.0,-9.0,-9.0,12.0,-9.0,1218622 -3037805,1630145669,2,11,2,3,1630053801,2,-9.0,-9.0,-9.0,8.0,-9.0,1218622 -3037806,1630145670,2,9,2,4,1630053801,2,-9.0,-9.0,-9.0,6.0,-9.0,1218622 -3037807,1630145671,2,6,2,5,1630053801,2,-9.0,-9.0,-9.0,3.0,-9.0,1218622 -3037808,1630145728,2,38,0,1,1630053802,2,6.0,-9.0,-9.0,-9.0,4.0,1218623 -3037809,1630145693,2,38,0,1,1630053803,2,6.0,-9.0,-9.0,-9.0,4.0,1218624 -3037810,1630145694,2,17,2,2,1630053803,1,6.0,-9.0,-9.0,13.0,4.0,1218624 -3037811,1630145698,2,14,2,3,1630053803,2,-9.0,-9.0,-9.0,11.0,-9.0,1218624 -3037812,1630145695,2,10,2,4,1630053803,1,-9.0,-9.0,-9.0,7.0,-9.0,1218624 -3037813,1630145699,2,8,2,5,1630053803,2,-9.0,-9.0,-9.0,4.0,-9.0,1218624 -3037814,1630145700,2,6,2,6,1630053803,2,-9.0,-9.0,-9.0,3.0,-9.0,1218624 -3037815,1630145696,2,4,2,7,1630053803,1,-9.0,-9.0,-9.0,1.0,-9.0,1218624 -3037816,1630145697,2,39,5,8,1630053803,1,3.0,-9.0,-9.0,-9.0,4.0,1218624 -3037817,1630145762,2,35,0,1,1630053804,2,3.0,18.0,4.0,-9.0,4.0,1218625 -3037818,1630145772,2,35,15,2,1630053804,1,3.0,24.0,6.0,-9.0,4.0,1218625 -3037819,1630145767,2,14,15,3,1630053804,1,-9.0,-9.0,-9.0,10.0,-9.0,1218625 -3037820,1630146036,2,42,0,1,1630053805,2,6.0,-9.0,-9.0,-9.0,4.0,1218626 -3037821,1630146038,2,21,2,2,1630053805,1,6.0,-9.0,-9.0,-9.0,4.0,1218626 -3037822,1630146037,2,16,2,3,1630053805,1,6.0,-9.0,-9.0,12.0,-9.0,1218626 -3037823,1630145763,2,35,0,1,1630053806,2,3.0,18.0,4.0,-9.0,4.0,1218627 -3037824,1630145773,2,35,15,2,1630053806,1,3.0,24.0,6.0,-9.0,4.0,1218627 -3037825,1630145768,2,14,15,3,1630053806,1,-9.0,-9.0,-9.0,10.0,-9.0,1218627 -3037826,1630145764,2,35,0,1,1630053807,2,3.0,18.0,4.0,-9.0,4.0,1218628 -3037827,1630145774,2,35,15,2,1630053807,1,3.0,24.0,6.0,-9.0,4.0,1218628 -3037828,1630145769,2,14,15,3,1630053807,1,-9.0,-9.0,-9.0,10.0,-9.0,1218628 -3037829,1630145906,2,27,0,1,1630053808,2,6.0,-9.0,-9.0,-9.0,4.0,1218629 -3037830,1630145908,2,0,2,2,1630053808,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218629 -3037831,1630145765,2,35,0,1,1630053809,2,3.0,18.0,4.0,-9.0,4.0,1218630 -3037832,1630145775,2,35,15,2,1630053809,1,3.0,24.0,6.0,-9.0,4.0,1218630 -3037833,1630145770,2,14,15,3,1630053809,1,-9.0,-9.0,-9.0,10.0,-9.0,1218630 -3037834,1630146168,2,38,0,1,1630053810,2,6.0,-9.0,-9.0,-9.0,4.0,1218631 -3037835,1630146172,2,38,1,2,1630053810,1,3.0,-9.0,-9.0,-9.0,4.0,1218631 -3037836,1630146176,2,16,2,3,1630053810,2,6.0,-9.0,-9.0,13.0,-9.0,1218631 -3037837,1630146169,2,38,0,1,1630053811,2,6.0,-9.0,-9.0,-9.0,4.0,1218632 -3037838,1630146173,2,38,1,2,1630053811,1,3.0,-9.0,-9.0,-9.0,4.0,1218632 -3037839,1630146177,2,16,2,3,1630053811,2,6.0,-9.0,-9.0,13.0,-9.0,1218632 -3037840,1630146199,2,31,0,1,1630053812,1,6.0,-9.0,-9.0,-9.0,4.0,1218633 -3037841,1630146200,2,0,2,2,1630053812,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218633 -3037842,1630146198,2,38,13,3,1630053812,2,6.0,-9.0,-9.0,-9.0,4.0,1218633 -3037843,1630146170,2,38,0,1,1630053813,2,6.0,-9.0,-9.0,-9.0,4.0,1218634 -3037844,1630146174,2,38,1,2,1630053813,1,3.0,-9.0,-9.0,-9.0,4.0,1218634 -3037845,1630146178,2,16,2,3,1630053813,2,6.0,-9.0,-9.0,13.0,-9.0,1218634 -3037846,1630146182,2,42,0,1,1630053814,2,1.0,25.0,1.0,-9.0,4.0,1218635 -3037847,1630146184,2,19,2,2,1630053814,1,3.0,-9.0,-9.0,-9.0,4.0,1218635 -3037848,1630146186,2,14,2,3,1630053814,2,-9.0,-9.0,-9.0,11.0,-9.0,1218635 -3037849,1630146044,2,38,0,1,1630053815,1,1.0,50.0,6.0,-9.0,4.0,1218636 -3037850,1630146040,2,29,1,2,1630053815,2,3.0,-9.0,-9.0,-9.0,4.0,1218636 -3037851,1630146042,2,0,2,3,1630053815,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218636 -3037852,1630146045,2,38,0,1,1630053816,1,1.0,50.0,6.0,-9.0,4.0,1218637 -3037853,1630146041,2,29,1,2,1630053816,2,3.0,-9.0,-9.0,-9.0,4.0,1218637 -3037854,1630146043,2,0,2,3,1630053816,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218637 -3037855,1630146209,2,53,0,1,1630053817,1,6.0,-9.0,-9.0,-9.0,4.0,1218638 -3037856,1630146211,2,60,10,2,1630053817,1,6.0,-9.0,-9.0,-9.0,2.0,1218638 -3037857,1630146213,2,58,10,3,1630053817,1,6.0,-9.0,-9.0,-9.0,2.0,1218638 -3037858,1630146210,2,53,0,1,1630053818,1,6.0,-9.0,-9.0,-9.0,4.0,1218639 -3037859,1630146212,2,60,10,2,1630053818,1,6.0,-9.0,-9.0,-9.0,2.0,1218639 -3037860,1630146229,2,59,0,1,1630053819,1,6.0,-9.0,-9.0,-9.0,2.0,1218640 -3037861,1630146181,2,61,0,1,1630053820,2,6.0,-9.0,-9.0,-9.0,4.0,1218641 -3037862,1630146232,2,57,0,1,1630053821,1,6.0,-9.0,-9.0,-9.0,2.0,1218642 -3037863,1630146223,2,45,0,1,1630053822,1,6.0,-9.0,-9.0,-9.0,4.0,1218643 -3037864,1630146224,2,60,0,1,1630053823,1,6.0,-9.0,-9.0,-9.0,4.0,1218644 -3037865,1630145823,2,64,0,1,1630053824,2,6.0,15.0,5.0,-9.0,4.0,1218645 -3037866,1630146180,2,59,0,1,1630053825,2,6.0,-9.0,-9.0,-9.0,4.0,1218646 -3037867,1630145886,2,64,0,1,1630053826,2,6.0,-9.0,-9.0,-9.0,4.0,1218647 -3037868,1630146208,2,54,0,1,1630053827,1,6.0,-9.0,-9.0,-9.0,4.0,1218648 -3037869,1630146069,2,62,0,1,1630053828,2,6.0,-9.0,-9.0,-9.0,4.0,1218649 -3037870,1630146143,2,58,0,1,1630053829,2,6.0,-9.0,-9.0,-9.0,4.0,1218650 -3037871,1630146215,2,60,0,1,1630053830,1,3.0,-9.0,-9.0,-9.0,4.0,1218651 -3037872,1630145975,2,61,0,1,1630053831,2,6.0,-9.0,-9.0,-9.0,4.0,1218652 -3037873,1630146234,2,57,0,1,1630053832,1,6.0,-9.0,-9.0,-9.0,4.0,1218653 -3037874,1630145782,2,50,0,1,1630053833,2,6.0,-9.0,-9.0,-9.0,4.0,1218654 -3037875,1630145725,2,61,0,1,1630053834,2,6.0,-9.0,-9.0,-9.0,4.0,1218655 -3037876,1630146101,2,53,0,1,1630053835,2,6.0,-9.0,-9.0,-9.0,4.0,1218656 -3037877,1630145736,2,57,0,1,1630053836,2,6.0,-9.0,-9.0,-9.0,4.0,1218657 -3037878,1630146218,2,64,0,1,1630053837,1,6.0,-9.0,-9.0,-9.0,2.0,1218658 -3037879,1630146230,2,64,0,1,1630053838,1,6.0,-9.0,-9.0,-9.0,4.0,1218659 -3037880,1630146109,2,56,0,1,1630053839,2,3.0,-9.0,-9.0,-9.0,4.0,1218660 -3037881,1630146110,2,35,2,2,1630053839,2,6.0,-9.0,-9.0,-9.0,4.0,1218660 -3037882,1630146113,2,24,2,3,1630053839,1,3.0,26.0,4.0,-9.0,4.0,1218660 -3037883,1630146111,2,21,2,4,1630053839,2,3.0,-9.0,-9.0,-9.0,4.0,1218660 -3037884,1630146114,2,17,2,5,1630053839,2,6.0,-9.0,-9.0,13.0,4.0,1218660 -3037885,1630146115,2,15,2,6,1630053839,2,-9.0,-9.0,-9.0,10.0,-9.0,1218660 -3037886,1630146112,2,13,2,7,1630053839,1,-9.0,-9.0,-9.0,10.0,-9.0,1218660 -3037887,1630146116,2,0,7,8,1630053839,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218660 -3037888,1630145676,2,57,0,1,1630053840,2,6.0,-9.0,-9.0,-9.0,4.0,1218661 -3037889,1630145684,2,23,2,2,1630053840,1,6.0,-9.0,-9.0,14.0,4.0,1218661 -3037890,1630145680,2,22,2,3,1630053840,2,6.0,20.0,6.0,-9.0,4.0,1218661 -3037891,1630145677,2,57,0,1,1630053841,2,6.0,-9.0,-9.0,-9.0,4.0,1218662 -3037892,1630145685,2,23,2,2,1630053841,1,6.0,-9.0,-9.0,14.0,4.0,1218662 -3037893,1630145681,2,22,2,3,1630053841,2,6.0,20.0,6.0,-9.0,4.0,1218662 -3037894,1630145982,2,57,0,1,1630053842,2,6.0,-9.0,-9.0,-9.0,4.0,1218663 -3037895,1630145986,2,38,2,2,1630053842,1,6.0,-9.0,-9.0,-9.0,4.0,1218663 -3037896,1630145990,2,20,2,3,1630053842,1,6.0,-9.0,-9.0,-9.0,4.0,1218663 -3037897,1630146072,2,49,0,1,1630053843,2,6.0,-9.0,-9.0,-9.0,4.0,1218664 -3037898,1630146074,2,35,1,2,1630053843,1,6.0,-9.0,-9.0,-9.0,4.0,1218664 -3037899,1630146076,2,30,12,3,1630053843,1,6.0,-9.0,-9.0,-9.0,4.0,1218664 -3037900,1630146130,2,61,0,1,1630053844,1,3.0,-9.0,-9.0,15.0,4.0,1218665 -3037901,1630146127,2,48,13,2,1630053844,2,3.0,-9.0,-9.0,15.0,4.0,1218665 -3037902,1630146133,2,21,15,3,1630053844,1,6.0,-9.0,-9.0,15.0,4.0,1218665 -3037903,1630146131,2,61,0,1,1630053845,1,3.0,-9.0,-9.0,15.0,4.0,1218666 -3037904,1630146128,2,48,13,2,1630053845,2,3.0,-9.0,-9.0,15.0,4.0,1218666 -3037905,1630146134,2,21,15,3,1630053845,1,6.0,-9.0,-9.0,15.0,4.0,1218666 -3037906,1630145678,2,57,0,1,1630053846,2,6.0,-9.0,-9.0,-9.0,4.0,1218667 -3037907,1630145686,2,23,2,2,1630053846,1,6.0,-9.0,-9.0,14.0,4.0,1218667 -3037908,1630145682,2,22,2,3,1630053846,2,6.0,20.0,6.0,-9.0,4.0,1218667 -3037909,1630146073,2,49,0,1,1630053847,2,6.0,-9.0,-9.0,-9.0,4.0,1218668 -3037910,1630146075,2,35,1,2,1630053847,1,6.0,-9.0,-9.0,-9.0,4.0,1218668 -3037911,1630146077,2,30,12,3,1630053847,1,6.0,-9.0,-9.0,-9.0,4.0,1218668 -3037912,1630145983,2,57,0,1,1630053848,2,6.0,-9.0,-9.0,-9.0,4.0,1218669 -3037913,1630145987,2,38,2,2,1630053848,1,6.0,-9.0,-9.0,-9.0,4.0,1218669 -3037914,1630145991,2,20,2,3,1630053848,1,6.0,-9.0,-9.0,-9.0,4.0,1218669 -3037915,1630145984,2,57,0,1,1630053849,2,6.0,-9.0,-9.0,-9.0,4.0,1218670 -3037916,1630145988,2,38,2,2,1630053849,1,6.0,-9.0,-9.0,-9.0,4.0,1218670 -3037917,1630145992,2,20,2,3,1630053849,1,6.0,-9.0,-9.0,-9.0,4.0,1218670 -3037918,1630145985,2,57,0,1,1630053850,2,6.0,-9.0,-9.0,-9.0,4.0,1218671 -3037919,1630145989,2,38,2,2,1630053850,1,6.0,-9.0,-9.0,-9.0,4.0,1218671 -3037920,1630145993,2,20,2,3,1630053850,1,6.0,-9.0,-9.0,-9.0,4.0,1218671 -3037921,1630145679,2,57,0,1,1630053851,2,6.0,-9.0,-9.0,-9.0,4.0,1218672 -3037922,1630145687,2,23,2,2,1630053851,1,6.0,-9.0,-9.0,14.0,4.0,1218672 -3037923,1630145683,2,22,2,3,1630053851,2,6.0,20.0,6.0,-9.0,4.0,1218672 -3037924,1630145710,2,45,0,1,1630053852,2,6.0,-9.0,-9.0,-9.0,4.0,1218673 -3037925,1630145720,2,11,7,2,1630053852,2,-9.0,-9.0,-9.0,6.0,-9.0,1218673 -3037926,1630145715,2,45,13,3,1630053852,1,3.0,-9.0,-9.0,-9.0,4.0,1218673 -3037927,1630145711,2,45,0,1,1630053853,2,6.0,-9.0,-9.0,-9.0,4.0,1218674 -3037928,1630145721,2,11,7,2,1630053853,2,-9.0,-9.0,-9.0,6.0,-9.0,1218674 -3037929,1630145712,2,45,0,1,1630053854,2,6.0,-9.0,-9.0,-9.0,4.0,1218675 -3037930,1630145722,2,11,7,2,1630053854,2,-9.0,-9.0,-9.0,6.0,-9.0,1218675 -3037931,1630145717,2,45,13,3,1630053854,1,3.0,-9.0,-9.0,-9.0,4.0,1218675 -3037932,1630145713,2,45,0,1,1630053855,2,6.0,-9.0,-9.0,-9.0,4.0,1218676 -3037933,1630145723,2,11,7,2,1630053855,2,-9.0,-9.0,-9.0,6.0,-9.0,1218676 -3037934,1630145718,2,45,13,3,1630053855,1,3.0,-9.0,-9.0,-9.0,4.0,1218676 -3037935,1630145948,2,59,0,1,1630053856,2,6.0,-9.0,-9.0,15.0,4.0,1218677 -3037936,1630145950,2,75,1,2,1630053856,1,6.0,-9.0,-9.0,-9.0,4.0,1218677 -3037937,1630145949,2,39,2,3,1630053856,2,3.0,-9.0,-9.0,15.0,4.0,1218677 -3037938,1630145756,2,62,0,1,1630053857,2,6.0,-9.0,-9.0,-9.0,4.0,1218678 -3037939,1630145760,2,62,1,2,1630053857,1,6.0,-9.0,-9.0,-9.0,2.0,1218678 -3037940,1630145758,2,14,3,3,1630053857,1,-9.0,-9.0,-9.0,11.0,-9.0,1218678 -3037941,1630145692,2,57,0,1,1630053858,1,6.0,-9.0,-9.0,-9.0,2.0,1218679 -3037942,1630145691,2,45,13,2,1630053858,2,6.0,-9.0,-9.0,-9.0,4.0,1218679 -3037943,1630145755,2,61,0,1,1630053859,1,3.0,-9.0,-9.0,-9.0,4.0,1218680 -3037944,1630145754,2,48,1,2,1630053859,2,3.0,15.0,6.0,-9.0,4.0,1218680 -3037945,1630145961,2,53,0,1,1630053860,2,6.0,-9.0,-9.0,-9.0,4.0,1218681 -3037946,1630145962,2,52,1,2,1630053860,1,3.0,-9.0,-9.0,-9.0,4.0,1218681 -3037947,1630145891,2,57,0,1,1630053861,2,6.0,-9.0,-9.0,-9.0,4.0,1218682 -3037948,1630145892,2,30,2,2,1630053861,1,6.0,-9.0,-9.0,-9.0,4.0,1218682 -3037949,1630145727,2,50,0,1,1630053862,1,6.0,-9.0,-9.0,-9.0,4.0,1218683 -3037950,1630145726,2,35,2,2,1630053862,2,6.0,-9.0,-9.0,-9.0,4.0,1218683 -3037951,1630146150,2,50,0,1,1630053863,2,6.0,-9.0,-9.0,-9.0,4.0,1218684 -3037952,1630146151,2,16,2,2,1630053863,1,6.0,-9.0,-9.0,12.0,-9.0,1218684 -3037953,1630145934,2,51,0,1,1630053864,1,6.0,-9.0,-9.0,-9.0,4.0,1218685 -3037954,1630145933,2,52,1,2,1630053864,2,3.0,-9.0,-9.0,-9.0,4.0,1218685 -3037955,1630146216,2,51,0,1,1630053865,1,1.0,20.0,1.0,-9.0,2.0,1218686 -3037956,1630146197,2,47,0,1,1630053866,2,1.0,40.0,1.0,-9.0,4.0,1218687 -3037957,1630146188,2,48,0,1,1630053867,2,1.0,37.0,1.0,16.0,4.0,1218688 -3037958,1630145913,2,46,0,1,1630053868,2,1.0,40.0,5.0,-9.0,4.0,1218689 -3037959,1630145914,2,28,10,2,1630053868,1,6.0,-9.0,-9.0,-9.0,4.0,1218689 -3037960,1630145915,2,33,12,3,1630053868,1,6.0,-9.0,-9.0,-9.0,4.0,1218689 -3037961,1630146086,2,58,0,1,1630053869,2,6.0,-9.0,-9.0,-9.0,3.0,1218690 -3037962,1630146088,2,21,2,2,1630053869,2,1.0,30.0,3.0,15.0,4.0,1218690 -3037963,1630146090,2,24,15,3,1630053869,1,6.0,20.0,6.0,-9.0,4.0,1218690 -3037964,1630146087,2,58,0,1,1630053870,2,6.0,-9.0,-9.0,-9.0,3.0,1218691 -3037965,1630146089,2,21,2,2,1630053870,2,1.0,30.0,3.0,15.0,4.0,1218691 -3037966,1630146091,2,24,15,3,1630053870,1,6.0,20.0,6.0,-9.0,4.0,1218691 -3037967,1630145674,2,55,0,1,1630053871,1,1.0,20.0,5.0,-9.0,4.0,1218692 -3037968,1630145675,2,19,2,2,1630053871,1,3.0,-9.0,-9.0,-9.0,4.0,1218692 -3037969,1630145673,2,51,10,3,1630053871,2,6.0,-9.0,-9.0,-9.0,4.0,1218692 -3037970,1630145939,2,49,0,1,1630053872,2,1.0,40.0,2.0,-9.0,4.0,1218693 -3037971,1630145940,2,14,2,2,1630053872,1,-9.0,-9.0,-9.0,10.0,-9.0,1218693 -3037972,1630145941,2,9,2,3,1630053872,1,-9.0,-9.0,-9.0,5.0,-9.0,1218693 -3037973,1630145707,2,45,0,1,1630053873,2,1.0,13.0,5.0,-9.0,4.0,1218694 -3037974,1630145708,2,22,2,2,1630053873,2,6.0,-9.0,-9.0,15.0,4.0,1218694 -3037975,1630145709,2,22,2,3,1630053873,1,6.0,-9.0,-9.0,14.0,4.0,1218694 -3037976,1630145881,2,58,0,1,1630053874,1,6.0,-9.0,-9.0,-9.0,4.0,1218695 -3037977,1630145879,2,52,1,2,1630053874,2,1.0,32.0,4.0,-9.0,4.0,1218695 -3037978,1630145880,2,14,2,3,1630053874,1,-9.0,-9.0,-9.0,10.0,-9.0,1218695 -3037979,1630145839,2,25,0,1,1630053875,2,3.0,-9.0,-9.0,-9.0,4.0,1218696 -3037980,1630145840,2,4,2,2,1630053875,1,-9.0,-9.0,-9.0,1.0,-9.0,1218696 -3037981,1630145753,2,40,0,1,1630053876,2,6.0,-9.0,-9.0,12.0,4.0,1218697 -3037982,1630145548,2,84,0,1,1630053877,1,6.0,-9.0,-9.0,-9.0,2.0,1218698 -3037983,1630145545,2,77,1,2,1630053877,2,6.0,-9.0,-9.0,-9.0,4.0,1218698 -3037984,1630145547,2,45,2,3,1630053877,1,6.0,-9.0,-9.0,-9.0,4.0,1218698 -3037985,1630145606,2,53,0,1,1630053878,2,6.0,-9.0,-9.0,-9.0,4.0,1218699 -3037986,1630145600,1,88,12,2,1630053878,2,6.0,-9.0,-9.0,-9.0,4.0,1218699 -3037987,1630145602,1,75,12,3,1630053878,2,6.0,-9.0,-9.0,-9.0,4.0,1218699 -3037988,1630145604,1,75,12,4,1630053878,2,6.0,-9.0,-9.0,-9.0,4.0,1218699 -3037989,1630145598,2,66,12,5,1630053878,2,6.0,-9.0,-9.0,-9.0,4.0,1218699 -3037990,1630145608,2,58,12,6,1630053878,2,6.0,-9.0,-9.0,-9.0,4.0,1218699 -3037991,1630145829,2,30,0,1,1630053879,2,1.0,38.0,2.0,-9.0,4.0,1218700 -3037992,1630145830,2,6,2,2,1630053879,2,-9.0,-9.0,-9.0,2.0,-9.0,1218700 -3037993,1630145831,2,4,2,3,1630053879,2,-9.0,-9.0,-9.0,1.0,-9.0,1218700 -3037994,1630145832,2,54,0,1,1630053880,2,6.0,-9.0,-9.0,15.0,4.0,1218701 -3037995,1630145734,2,55,0,1,1630053881,1,6.0,-9.0,-9.0,-9.0,4.0,1218702 -3037996,1630145732,2,46,1,2,1630053881,2,6.0,-9.0,-9.0,-9.0,4.0,1218702 -3037997,1630145735,2,18,2,3,1630053881,1,6.0,-9.0,-9.0,14.0,4.0,1218702 -3037998,1630145733,2,17,2,4,1630053881,1,6.0,-9.0,-9.0,13.0,4.0,1218702 -3037999,1630146145,2,49,0,1,1630053882,2,1.0,50.0,1.0,-9.0,4.0,1218703 -3038000,1630146149,2,50,1,2,1630053882,1,3.0,-9.0,-9.0,-9.0,4.0,1218703 -3038001,1630146147,2,18,2,3,1630053882,2,3.0,-9.0,-9.0,14.0,4.0,1218703 -3038002,1630146164,2,30,0,1,1630053883,2,3.0,-9.0,-9.0,-9.0,4.0,1218704 -3038003,1630146166,2,9,2,2,1630053883,2,-9.0,-9.0,-9.0,5.0,-9.0,1218704 -3038004,1630146167,2,8,2,3,1630053883,2,-9.0,-9.0,-9.0,5.0,-9.0,1218704 -3038005,1630146165,2,5,2,4,1630053883,1,-9.0,-9.0,-9.0,2.0,-9.0,1218704 -3038006,1630145909,2,45,0,1,1630053884,2,1.0,20.0,1.0,-9.0,4.0,1218705 -3038007,1630145910,2,22,2,2,1630053884,1,3.0,40.0,6.0,-9.0,4.0,1218705 -3038008,1630145849,2,60,0,1,1630053885,1,6.0,-9.0,-9.0,-9.0,4.0,1218706 -3038009,1630145747,2,57,0,1,1630053886,2,1.0,15.0,6.0,-9.0,4.0,1218707 -3038010,1630145748,2,60,1,2,1630053886,1,6.0,-9.0,-9.0,-9.0,4.0,1218707 -3038011,1630145749,2,23,2,3,1630053886,1,1.0,15.0,5.0,15.0,4.0,1218707 -3038012,1630145834,2,38,0,1,1630053887,2,3.0,-9.0,-9.0,-9.0,4.0,1218708 -3038013,1630145836,2,41,1,2,1630053887,1,1.0,40.0,1.0,-9.0,4.0,1218708 -3038014,1630145837,2,17,2,3,1630053887,2,6.0,-9.0,-9.0,13.0,4.0,1218708 -3038015,1630145838,2,15,2,4,1630053887,2,-9.0,-9.0,-9.0,11.0,-9.0,1218708 -3038016,1630145835,2,13,2,5,1630053887,1,-9.0,-9.0,-9.0,10.0,-9.0,1218708 -3038017,1630146070,2,40,0,1,1630053888,2,3.0,-9.0,-9.0,16.0,4.0,1218709 -3038018,1630145981,2,48,0,1,1630053889,2,1.0,10.0,1.0,15.0,4.0,1218710 -3038019,1630145965,2,45,0,1,1630053890,2,1.0,40.0,1.0,-9.0,4.0,1218711 -3038020,1630145967,2,11,2,2,1630053890,2,-9.0,-9.0,-9.0,8.0,-9.0,1218711 -3038021,1630145966,2,11,2,3,1630053890,1,-9.0,-9.0,-9.0,8.0,-9.0,1218711 -3038022,1630145634,2,87,0,1,1630053891,2,6.0,-9.0,-9.0,-9.0,4.0,1218712 -3038023,1630145635,2,60,2,2,1630053891,2,6.0,-9.0,-9.0,-9.0,4.0,1218712 -3038024,1630145636,2,56,2,3,1630053891,1,6.0,-9.0,-9.0,-9.0,4.0,1218712 -3038025,1630146056,2,48,0,1,1630053892,2,6.0,-9.0,-9.0,-9.0,4.0,1218713 -3038026,1630146058,2,24,2,2,1630053892,2,6.0,-9.0,-9.0,-9.0,4.0,1218713 -3038027,1630146060,2,21,2,3,1630053892,2,6.0,-9.0,-9.0,-9.0,4.0,1218713 -3038028,1630146066,2,4,7,4,1630053892,2,-9.0,-9.0,-9.0,2.0,-9.0,1218713 -3038029,1630146068,2,3,7,5,1630053892,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218713 -3038030,1630146062,2,1,7,6,1630053892,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218713 -3038031,1630146064,2,0,7,7,1630053892,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218713 -3038032,1630145640,2,54,0,1,1630053893,2,3.0,35.0,5.0,-9.0,4.0,1218714 -3038033,1630145642,2,54,1,2,1630053893,1,1.0,40.0,2.0,-9.0,4.0,1218714 -3038034,1630145638,2,86,8,3,1630053893,2,6.0,-9.0,-9.0,-9.0,4.0,1218714 -3038035,1630145845,2,53,0,1,1630053894,2,6.0,-9.0,-9.0,-9.0,4.0,1218715 -3038036,1630145559,2,83,0,1,1630053895,2,6.0,-9.0,-9.0,-9.0,4.0,1218716 -3038037,1630145558,2,64,0,1,1630053896,1,6.0,-9.0,-9.0,-9.0,2.0,1218717 -3038038,1630145557,2,67,1,2,1630053896,2,3.0,40.0,2.0,-9.0,4.0,1218717 -3038039,1630146155,2,57,0,1,1630053897,2,6.0,-9.0,-9.0,-9.0,4.0,1218718 -3038040,1630146159,2,21,2,2,1630053897,1,3.0,-9.0,-9.0,-9.0,4.0,1218718 -3038041,1630146161,2,18,7,3,1630053897,1,3.0,-9.0,-9.0,-9.0,4.0,1218718 -3038042,1630146157,2,53,15,4,1630053897,2,3.0,-9.0,-9.0,-9.0,4.0,1218718 -3038043,1630146163,2,24,15,5,1630053897,1,6.0,-9.0,-9.0,-9.0,4.0,1218718 -3038044,1630146124,2,60,0,1,1630053898,2,6.0,-9.0,-9.0,-9.0,4.0,1218719 -3038045,1630146125,2,64,5,2,1630053898,1,6.0,-9.0,-9.0,-9.0,2.0,1218719 -3038046,1630146126,2,61,11,3,1630053898,1,6.0,-9.0,-9.0,-9.0,4.0,1218719 -3038047,1630145896,2,63,0,1,1630053899,1,6.0,20.0,6.0,-9.0,4.0,1218720 -3038048,1630145895,2,59,1,2,1630053899,2,6.0,-9.0,-9.0,-9.0,4.0,1218720 -3038049,1630145947,2,47,0,1,1630053900,1,1.0,40.0,1.0,-9.0,2.0,1218721 -3038050,1630145945,2,26,2,2,1630053900,2,1.0,36.0,1.0,-9.0,4.0,1218721 -3038051,1630145757,2,62,0,1,1630053901,2,6.0,-9.0,-9.0,-9.0,4.0,1218722 -3038052,1630145761,2,62,1,2,1630053901,1,6.0,-9.0,-9.0,-9.0,2.0,1218722 -3038053,1630145759,2,14,3,3,1630053901,1,-9.0,-9.0,-9.0,11.0,-9.0,1218722 -3038054,1630145968,2,62,0,1,1630053902,2,1.0,40.0,1.0,-9.0,4.0,1218723 -3038055,1630145833,2,54,0,1,1630053903,2,3.0,30.0,5.0,15.0,4.0,1218724 -3038056,1630145766,2,35,0,1,1630053904,2,3.0,18.0,4.0,-9.0,4.0,1218725 -3038057,1630145776,2,35,15,2,1630053904,1,3.0,24.0,6.0,-9.0,4.0,1218725 -3038058,1630145771,2,14,15,3,1630053904,1,-9.0,-9.0,-9.0,10.0,-9.0,1218725 -3038059,1630146140,2,55,0,1,1630053905,2,6.0,-9.0,-9.0,-9.0,4.0,1218726 -3038060,1630146141,2,26,2,2,1630053905,2,1.0,25.0,4.0,15.0,4.0,1218726 -3038061,1630146142,2,1,7,3,1630053905,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218726 -3038062,1630146096,2,57,0,1,1630053906,2,1.0,88.0,2.0,-9.0,4.0,1218727 -3038063,1630145998,2,31,0,1,1630053907,1,3.0,-9.0,-9.0,-9.0,4.0,1218728 -3038064,1630145999,2,9,2,2,1630053907,2,-9.0,-9.0,-9.0,7.0,-9.0,1218728 -3038065,1630146000,2,2,2,3,1630053907,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218728 -3038066,1630145997,3,27,13,4,1630053907,2,1.0,30.0,1.0,-9.0,4.0,1218728 -3038067,1630146078,2,50,0,1,1630053908,2,3.0,35.0,6.0,-9.0,4.0,1218729 -3038068,1630146082,2,54,1,2,1630053908,1,6.0,-9.0,-9.0,-9.0,2.0,1218729 -3038069,1630146079,2,18,2,3,1630053908,2,6.0,-9.0,-9.0,15.0,4.0,1218729 -3038070,1630146080,2,16,2,4,1630053908,1,6.0,-9.0,-9.0,13.0,-9.0,1218729 -3038071,1630146081,2,8,2,5,1630053908,1,-9.0,-9.0,-9.0,4.0,-9.0,1218729 -3038072,1630145970,2,59,0,1,1630053909,2,6.0,-9.0,-9.0,-9.0,2.0,1218730 -3038073,1630145974,2,29,4,2,1630053909,1,6.0,-9.0,-9.0,-9.0,4.0,1218730 -3038074,1630145972,2,57,13,3,1630053909,2,1.0,40.0,1.0,-9.0,2.0,1218730 -3038075,1630145856,2,43,0,1,1630053910,2,6.0,-9.0,-9.0,-9.0,4.0,1218731 -3038076,1630145859,2,20,2,2,1630053910,2,6.0,-9.0,-9.0,-9.0,4.0,1218731 -3038077,1630145865,2,20,2,3,1630053910,1,6.0,-9.0,-9.0,-9.0,4.0,1218731 -3038078,1630145862,2,19,2,4,1630053910,2,6.0,-9.0,-9.0,14.0,4.0,1218731 -3038079,1630145868,2,0,7,5,1630053910,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218731 -3038080,1630145842,2,45,0,1,1630053911,2,6.0,-9.0,-9.0,-9.0,4.0,1218732 -3038081,1630145843,2,27,2,2,1630053911,2,6.0,-9.0,-9.0,-9.0,4.0,1218732 -3038082,1630145844,2,35,12,3,1630053911,1,6.0,40.0,6.0,-9.0,4.0,1218732 -3038083,1630145852,2,59,0,1,1630053912,2,6.0,-9.0,-9.0,-9.0,4.0,1218733 -3038084,1630145665,2,44,0,1,1630053913,2,3.0,-9.0,-9.0,15.0,4.0,1218734 -3038085,1630145666,2,12,2,2,1630053913,1,-9.0,-9.0,-9.0,9.0,-9.0,1218734 -3038086,1630145621,2,44,0,1,1630053914,2,3.0,-9.0,-9.0,-9.0,4.0,1218735 -3038087,1630145622,2,21,2,2,1630053914,2,3.0,-9.0,-9.0,14.0,4.0,1218735 -3038088,1630145623,2,20,2,3,1630053914,2,1.0,40.0,4.0,-9.0,4.0,1218735 -3038089,1630145624,2,19,2,4,1630053914,2,3.0,-9.0,-9.0,-9.0,4.0,1218735 -3038090,1630145627,2,15,2,5,1630053914,2,-9.0,-9.0,-9.0,11.0,-9.0,1218735 -3038091,1630145628,2,14,2,6,1630053914,2,-9.0,-9.0,-9.0,9.0,-9.0,1218735 -3038092,1630145626,2,13,2,7,1630053914,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218735 -3038093,1630145629,2,8,2,8,1630053914,2,-9.0,-9.0,-9.0,6.0,-9.0,1218735 -3038094,1630145625,2,54,5,9,1630053914,2,3.0,-9.0,-9.0,-9.0,4.0,1218735 -3038095,1630145620,2,69,6,10,1630053914,2,6.0,-9.0,-9.0,-9.0,4.0,1218735 -3038096,1630145630,2,2,7,11,1630053914,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218735 -3038097,1630145783,2,38,0,1,1630053915,2,3.0,28.0,6.0,-9.0,4.0,1218736 -3038098,1630145784,2,18,2,2,1630053915,1,3.0,-9.0,-9.0,14.0,4.0,1218736 -3038099,1630145893,2,48,0,1,1630053916,2,1.0,40.0,1.0,-9.0,4.0,1218737 -3038100,1630145894,2,58,1,2,1630053916,1,6.0,-9.0,-9.0,-9.0,4.0,1218737 -3038101,1630145658,2,80,0,1,1630053917,2,6.0,-9.0,-9.0,-9.0,4.0,1218738 -3038102,1630145660,2,23,7,2,1630053917,1,3.0,-9.0,-9.0,15.0,4.0,1218738 -3038103,1630145659,2,30,10,3,1630053917,2,1.0,20.0,1.0,-9.0,4.0,1218738 -3038104,1630145729,2,61,0,1,1630053918,2,6.0,40.0,5.0,-9.0,4.0,1218739 -3038105,1630145730,2,38,2,2,1630053918,2,1.0,40.0,1.0,15.0,4.0,1218739 -3038106,1630145731,2,12,7,3,1630053918,1,-9.0,-9.0,-9.0,10.0,-9.0,1218739 -3038107,1630146183,2,42,0,1,1630053919,2,1.0,25.0,1.0,-9.0,4.0,1218740 -3038108,1630146185,2,19,2,2,1630053919,1,3.0,-9.0,-9.0,-9.0,4.0,1218740 -3038109,1630146187,2,14,2,3,1630053919,2,-9.0,-9.0,-9.0,11.0,-9.0,1218740 -3038110,1630146095,2,60,0,1,1630053920,1,1.0,45.0,1.0,-9.0,4.0,1218741 -3038111,1630146094,2,56,1,2,1630053920,2,1.0,50.0,1.0,-9.0,4.0,1218741 -3038112,1630145542,2,81,0,1,1630053921,2,6.0,-9.0,-9.0,-9.0,4.0,1218742 -3038113,1630145543,2,52,10,2,1630053921,1,6.0,-9.0,-9.0,-9.0,4.0,1218742 -3038114,1630146117,2,58,0,1,1630053922,2,6.0,-9.0,-9.0,-9.0,4.0,1218743 -3038115,1630146119,2,69,1,2,1630053922,1,6.0,-9.0,-9.0,-9.0,2.0,1218743 -3038116,1630146118,2,18,2,3,1630053922,2,6.0,25.0,6.0,15.0,4.0,1218743 -3038117,1630145976,2,52,0,1,1630053923,2,6.0,-9.0,-9.0,-9.0,4.0,1218744 -3038118,1630145977,2,22,2,2,1630053923,1,1.0,21.0,1.0,-9.0,4.0,1218744 -3038119,1630145994,2,46,0,1,1630053924,2,6.0,-9.0,-9.0,-9.0,4.0,1218745 -3038120,1630145996,2,48,1,2,1630053924,1,1.0,70.0,1.0,-9.0,4.0,1218745 -3038121,1630145995,2,8,2,3,1630053924,1,-9.0,-9.0,-9.0,5.0,-9.0,1218745 -3038122,1630145589,2,93,0,1,1630053925,2,6.0,-9.0,-9.0,-9.0,4.0,1218746 -3038123,1630145590,2,71,2,2,1630053925,2,6.0,-9.0,-9.0,-9.0,4.0,1218746 -3038124,1630145714,2,45,0,1,1630053926,2,6.0,-9.0,-9.0,-9.0,4.0,1218747 -3038125,1630145724,2,11,7,2,1630053926,2,-9.0,-9.0,-9.0,6.0,-9.0,1218747 -3038126,1630145719,2,45,13,3,1630053926,1,3.0,-9.0,-9.0,-9.0,4.0,1218747 -3038127,1630145964,2,55,0,1,1630053927,1,6.0,-9.0,-9.0,-9.0,3.0,1218748 -3038128,1630146136,2,61,0,1,1630053928,2,6.0,-9.0,-9.0,-9.0,4.0,1218749 -3038129,1630146137,2,62,12,2,1630053928,1,6.0,-9.0,-9.0,-9.0,2.0,1218749 -3038130,1630145824,2,36,0,1,1630053929,2,1.0,40.0,4.0,-9.0,4.0,1218750 -3038131,1630145826,2,16,2,2,1630053929,2,6.0,-9.0,-9.0,13.0,-9.0,1218750 -3038132,1630145827,2,15,2,3,1630053929,2,-9.0,-9.0,-9.0,12.0,-9.0,1218750 -3038133,1630145825,2,14,2,4,1630053929,1,-9.0,-9.0,-9.0,11.0,-9.0,1218750 -3038134,1630145828,2,11,2,5,1630053929,2,-9.0,-9.0,-9.0,7.0,-9.0,1218750 -3038135,1630145560,2,77,0,1,1630053930,2,6.0,-9.0,-9.0,-9.0,4.0,1218751 -3038136,1630145562,2,36,7,2,1630053930,1,3.0,-9.0,-9.0,-9.0,4.0,1218751 -3038137,1630145563,2,13,7,3,1630053930,2,-9.0,-9.0,-9.0,9.0,-9.0,1218751 -3038138,1630145564,2,11,7,4,1630053930,2,-9.0,-9.0,-9.0,7.0,-9.0,1218751 -3038139,1630145561,2,9,7,5,1630053930,1,-9.0,-9.0,-9.0,5.0,-9.0,1218751 -3038140,1630145583,2,65,0,1,1630053931,2,6.0,-9.0,-9.0,-9.0,4.0,1218752 -3038141,1630145585,2,45,2,2,1630053931,1,6.0,-9.0,-9.0,-9.0,4.0,1218752 -3038142,1630145584,2,22,7,3,1630053931,2,1.0,20.0,1.0,15.0,4.0,1218752 -3038143,1630146203,2,47,0,1,1630053932,1,6.0,-9.0,-9.0,-9.0,4.0,1218753 -3038144,1630146201,2,17,2,2,1630053932,1,6.0,-9.0,-9.0,13.0,4.0,1218753 -3038145,1630146202,2,16,2,3,1630053932,1,6.0,-9.0,-9.0,12.0,-9.0,1218753 -3038146,1630145738,2,64,0,1,1630053933,2,6.0,-9.0,-9.0,-9.0,4.0,1218754 -3038147,1630145742,2,45,2,2,1630053933,1,6.0,-9.0,-9.0,-9.0,4.0,1218754 -3038148,1630145740,2,31,2,3,1630053933,2,6.0,-9.0,-9.0,-9.0,4.0,1218754 -3038149,1630145744,2,28,2,4,1630053933,1,6.0,-9.0,-9.0,15.0,4.0,1218754 -3038150,1630145746,2,11,7,5,1630053933,2,-9.0,-9.0,-9.0,7.0,-9.0,1218754 -3038151,1630146225,2,59,0,1,1630053934,1,1.0,40.0,1.0,-9.0,2.0,1218755 -3038152,1630145566,2,64,0,1,1630053935,2,6.0,-9.0,-9.0,-9.0,4.0,1218756 -3038153,1630145567,2,22,10,2,1630053935,2,1.0,10.0,1.0,-9.0,4.0,1218756 -3038154,1630146132,2,61,0,1,1630053936,1,3.0,-9.0,-9.0,15.0,4.0,1218757 -3038155,1630146129,2,48,13,2,1630053936,2,3.0,-9.0,-9.0,15.0,4.0,1218757 -3038156,1630146135,2,21,15,3,1630053936,1,6.0,-9.0,-9.0,15.0,4.0,1218757 -3038157,1630145815,2,59,0,1,1630053937,2,6.0,-9.0,-9.0,-9.0,4.0,1218758 -3038158,1630145816,2,16,7,2,1630053937,1,6.0,-9.0,-9.0,13.0,-9.0,1218758 -3038159,1630145672,2,62,0,1,1630053938,2,6.0,-9.0,-9.0,-9.0,4.0,1218759 -3038160,1630145919,2,47,0,1,1630053939,1,2.0,18.0,1.0,15.0,2.0,1218760 -3038161,1630145925,4,48,1,2,1630053939,2,6.0,-9.0,-9.0,-9.0,4.0,1218760 -3038162,1630145920,2,24,2,3,1630053939,1,6.0,5.0,6.0,-9.0,4.0,1218760 -3038163,1630145916,2,19,2,4,1630053939,2,6.0,-9.0,-9.0,14.0,4.0,1218760 -3038164,1630145917,2,19,2,5,1630053939,2,6.0,-9.0,-9.0,14.0,4.0,1218760 -3038165,1630145921,2,17,2,6,1630053939,2,6.0,-9.0,-9.0,12.0,4.0,1218760 -3038166,1630145922,2,14,2,7,1630053939,2,-9.0,-9.0,-9.0,11.0,-9.0,1218760 -3038167,1630145923,2,13,2,8,1630053939,2,-9.0,-9.0,-9.0,9.0,-9.0,1218760 -3038168,1630145924,2,12,2,9,1630053939,2,-9.0,-9.0,-9.0,10.0,-9.0,1218760 -3038169,1630145918,2,4,2,10,1630053939,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218760 -3038170,1630146171,2,38,0,1,1630053940,2,6.0,-9.0,-9.0,-9.0,4.0,1218761 -3038171,1630146175,2,38,1,2,1630053940,1,3.0,-9.0,-9.0,-9.0,4.0,1218761 -3038172,1630146179,2,16,2,3,1630053940,2,6.0,-9.0,-9.0,13.0,-9.0,1218761 -3038173,1630145643,2,82,0,1,1630053941,2,6.0,-9.0,-9.0,-9.0,4.0,1218762 -3038174,1630145644,2,49,2,2,1630053941,2,1.0,30.0,1.0,-9.0,4.0,1218762 -3038175,1630145645,2,21,7,3,1630053941,1,3.0,16.0,5.0,-9.0,4.0,1218762 -3038176,1630145704,2,48,0,1,1630053942,2,1.0,37.0,1.0,-9.0,4.0,1218763 -3038177,1630145705,2,49,1,2,1630053942,1,6.0,-9.0,-9.0,-9.0,4.0,1218763 -3038178,1630145706,2,11,2,3,1630053942,2,-9.0,-9.0,-9.0,7.0,-9.0,1218763 -3038179,1630145889,2,54,0,1,1630053943,2,6.0,-9.0,-9.0,-9.0,4.0,1218764 -3038180,1630145890,2,17,2,2,1630053943,2,6.0,-9.0,-9.0,13.0,4.0,1218764 -3038181,1630145951,2,37,0,1,1630053944,2,6.0,-9.0,-9.0,-9.0,4.0,1218765 -3038182,1630145954,2,40,1,2,1630053944,1,6.0,-9.0,-9.0,-9.0,4.0,1218765 -3038183,1630145952,2,8,2,3,1630053944,1,-9.0,-9.0,-9.0,3.0,-9.0,1218765 -3038184,1630145953,2,5,2,4,1630053944,1,-9.0,-9.0,-9.0,2.0,-9.0,1218765 -3038185,1630145631,2,75,0,1,1630053945,2,6.0,-9.0,-9.0,-9.0,4.0,1218766 -3038186,1630145632,2,43,2,2,1630053945,1,6.0,-9.0,-9.0,-9.0,4.0,1218766 -3038187,1630145613,2,89,0,1,1630053946,2,6.0,-9.0,-9.0,-9.0,4.0,1218767 -3038188,1630145616,2,63,2,2,1630053946,2,6.0,-9.0,-9.0,-9.0,4.0,1218767 -3038189,1630145619,2,61,2,3,1630053946,1,6.0,-9.0,-9.0,-9.0,4.0,1218767 -3038190,1630146046,2,59,0,1,1630053947,2,6.0,-9.0,-9.0,-9.0,4.0,1218768 -3038191,1630146051,2,36,2,2,1630053947,1,1.0,40.0,6.0,-9.0,4.0,1218768 -3038192,1630146052,2,13,3,3,1630053947,2,-9.0,-9.0,-9.0,9.0,-9.0,1218768 -3038193,1630146047,2,12,3,4,1630053947,1,-9.0,-9.0,-9.0,7.0,-9.0,1218768 -3038194,1630146048,2,11,3,5,1630053947,1,-9.0,-9.0,-9.0,7.0,-9.0,1218768 -3038195,1630146049,2,10,3,6,1630053947,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218768 -3038196,1630146050,2,8,7,7,1630053947,1,-9.0,-9.0,-9.0,5.0,-9.0,1218768 -3038197,1630145586,2,93,0,1,1630053948,2,6.0,-9.0,-9.0,-9.0,4.0,1218769 -3038198,1630145587,2,76,5,2,1630053948,2,6.0,-9.0,-9.0,-9.0,4.0,1218769 -3038199,1630145588,2,47,10,3,1630053948,2,1.0,40.0,1.0,-9.0,4.0,1218769 -3038200,1630146100,2,61,0,1,1630053949,2,1.0,40.0,1.0,-9.0,2.0,1218770 -3038201,1630145582,2,61,0,1,1630053950,1,1.0,50.0,1.0,-9.0,4.0,1218771 -3038202,1630145578,1,56,13,2,1630053950,2,1.0,40.0,1.0,-9.0,4.0,1218771 -3038203,1630145850,2,51,0,1,1630053951,2,6.0,-9.0,-9.0,-9.0,4.0,1218772 -3038204,1630145851,2,62,1,2,1630053951,1,6.0,-9.0,-9.0,-9.0,2.0,1218772 -3038205,1630145785,2,56,0,1,1630053952,2,1.0,40.0,1.0,-9.0,4.0,1218773 -3038206,1630145786,2,56,1,2,1630053952,1,6.0,-9.0,-9.0,-9.0,2.0,1218773 -3038207,1630145544,2,82,0,1,1630053953,2,6.0,-9.0,-9.0,-9.0,4.0,1218774 -3038208,1630145869,2,51,0,1,1630053954,2,1.0,30.0,6.0,-9.0,4.0,1218775 -3038209,1630145870,2,15,2,2,1630053954,1,-9.0,-9.0,-9.0,10.0,-9.0,1218775 -3038210,1630145873,2,12,2,3,1630053954,2,-9.0,-9.0,-9.0,9.0,-9.0,1218775 -3038211,1630145871,2,10,2,4,1630053954,1,-9.0,-9.0,-9.0,6.0,-9.0,1218775 -3038212,1630145872,2,8,2,5,1630053954,1,-9.0,-9.0,-9.0,5.0,-9.0,1218775 -3038213,1630145703,2,58,0,1,1630053955,1,1.0,40.0,1.0,-9.0,4.0,1218776 -3038214,1630145701,2,52,1,2,1630053955,2,3.0,-9.0,-9.0,-9.0,4.0,1218776 -3038215,1630145702,2,31,2,3,1630053955,2,1.0,40.0,1.0,-9.0,4.0,1218776 -3038216,1630146031,2,57,0,1,1630053956,2,6.0,-9.0,-9.0,-9.0,4.0,1218777 -3038217,1630146032,2,32,2,2,1630053956,2,1.0,25.0,5.0,-9.0,4.0,1218777 -3038218,1630146034,2,29,2,3,1630053956,1,1.0,40.0,1.0,-9.0,4.0,1218777 -3038219,1630146033,2,22,2,4,1630053956,2,1.0,40.0,1.0,-9.0,4.0,1218777 -3038220,1630145887,2,54,0,1,1630053957,2,6.0,30.0,6.0,15.0,4.0,1218778 -3038221,1630145888,2,54,1,2,1630053957,1,1.0,56.0,1.0,-9.0,4.0,1218778 -3038222,1630145936,2,32,0,1,1630053958,2,3.0,8.0,4.0,-9.0,4.0,1218779 -3038223,1630145938,2,8,2,2,1630053958,2,-9.0,-9.0,-9.0,4.0,-9.0,1218779 -3038224,1630145937,2,34,13,3,1630053958,1,1.0,45.0,2.0,-9.0,4.0,1218779 -3038225,1630145664,2,60,0,1,1630053959,2,6.0,-9.0,-9.0,-9.0,4.0,1218780 -3038226,1630146083,2,39,0,1,1630053960,2,6.0,27.0,1.0,-9.0,4.0,1218781 -3038227,1630146085,2,21,2,2,1630053960,1,6.0,-9.0,-9.0,-9.0,4.0,1218781 -3038228,1630146084,2,26,10,3,1630053960,2,6.0,-9.0,-9.0,-9.0,4.0,1218781 -3038229,1630145647,2,50,0,1,1630053961,2,6.0,-9.0,-9.0,-9.0,4.0,1218782 -3038230,1630145648,2,53,1,2,1630053961,1,6.0,-9.0,-9.0,-9.0,4.0,1218782 -3038231,1630145646,2,67,6,3,1630053961,2,6.0,-9.0,-9.0,-9.0,4.0,1218782 -3038232,1630145649,2,5,7,4,1630053961,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218782 -3038233,1630145926,2,32,0,1,1630053962,2,6.0,40.0,5.0,16.0,4.0,1218783 -3038234,1630145927,2,31,1,2,1630053962,2,6.0,40.0,5.0,-9.0,4.0,1218783 -3038235,1630145928,2,5,2,3,1630053962,2,-9.0,-9.0,-9.0,2.0,-9.0,1218783 -3038236,1630145592,2,76,0,1,1630053963,2,6.0,-9.0,-9.0,-9.0,4.0,1218784 -3038237,1630145594,2,42,2,2,1630053963,1,3.0,-9.0,-9.0,-9.0,4.0,1218784 -3038238,1630146071,2,60,0,1,1630053964,2,1.0,50.0,6.0,-9.0,4.0,1218785 -3038239,1630146019,2,46,0,1,1630053965,2,6.0,-9.0,-9.0,-9.0,4.0,1218786 -3038240,1630146029,2,84,1,2,1630053965,1,6.0,-9.0,-9.0,-9.0,4.0,1218786 -3038241,1630146024,2,43,5,3,1630053965,1,6.0,-9.0,-9.0,-9.0,4.0,1218786 -3038242,1630145882,2,59,0,1,1630053966,2,1.0,10.0,1.0,-9.0,4.0,1218787 -3038243,1630145884,2,52,1,2,1630053966,1,1.0,5.0,1.0,15.0,4.0,1218787 -3038244,1630145883,2,21,2,3,1630053966,2,1.0,4.0,1.0,-9.0,4.0,1218787 -3038245,1630145900,2,50,0,1,1630053967,1,1.0,49.0,1.0,-9.0,4.0,1218788 -3038246,1630145897,2,49,1,2,1630053967,2,1.0,90.0,1.0,-9.0,4.0,1218788 -3038247,1630145898,2,18,2,3,1630053967,2,6.0,-9.0,-9.0,14.0,4.0,1218788 -3038248,1630145899,2,16,2,4,1630053967,1,6.0,-9.0,-9.0,12.0,-9.0,1218788 -3038249,1630146194,2,35,0,1,1630053968,1,6.0,-9.0,-9.0,-9.0,4.0,1218789 -3038250,1630146195,2,10,2,2,1630053968,2,-9.0,-9.0,-9.0,7.0,-9.0,1218789 -3038251,1630146191,2,6,2,3,1630053968,1,-9.0,-9.0,-9.0,4.0,-9.0,1218789 -3038252,1630146192,2,5,2,4,1630053968,1,-9.0,-9.0,-9.0,2.0,-9.0,1218789 -3038253,1630146196,2,3,2,5,1630053968,2,-9.0,-9.0,-9.0,-9.0,-9.0,1218789 -3038254,1630146193,2,0,2,6,1630053968,1,-9.0,-9.0,-9.0,-9.0,-9.0,1218789 -3038255,1630146189,2,54,10,7,1630053968,2,1.0,40.0,1.0,-9.0,4.0,1218789 -3038256,1630146190,2,29,13,8,1630053968,2,3.0,-9.0,-9.0,-9.0,4.0,1218789 -3038257,1630145911,2,51,0,1,1630053969,2,1.0,13.0,4.0,-9.0,4.0,1218790 -3038258,1630145912,2,16,2,2,1630053969,1,6.0,-9.0,-9.0,13.0,-9.0,1218790 -3038259,1630145688,2,55,0,1,1630053970,2,1.0,40.0,1.0,-9.0,4.0,1218791 -3038260,1630145689,2,26,2,2,1630053970,1,3.0,1.0,6.0,15.0,4.0,1218791 -3038261,1630145690,2,19,2,3,1630053970,1,6.0,-9.0,-9.0,15.0,4.0,1218791 -3038262,1630146102,2,56,0,1,1630053971,2,6.0,-9.0,-9.0,-9.0,4.0,1218792 -3038263,1630146103,2,57,1,2,1630053971,1,6.0,-9.0,-9.0,-9.0,4.0,1218792 -3038264,1630146001,2,32,0,1,1630053972,2,1.0,40.0,1.0,-9.0,4.0,1218793 -3038265,1630146002,2,6,2,2,1630053972,2,-9.0,-9.0,-9.0,3.0,-9.0,1218793 -3038266,1630145552,2,78,0,1,1630053973,2,6.0,-9.0,-9.0,-9.0,4.0,1218794 -3038267,1630145553,2,76,5,2,1630053973,2,6.0,-9.0,-9.0,-9.0,4.0,1218794 -3038268,1630145554,2,39,7,3,1630053973,1,6.0,-9.0,-9.0,-9.0,4.0,1218794 -3038269,1630145555,2,11,7,4,1630053973,2,-9.0,-9.0,-9.0,7.0,-9.0,1218794 -3038270,1630145556,2,8,7,5,1630053973,2,-9.0,-9.0,-9.0,6.0,-9.0,1218794 -3038271,1630145901,2,52,0,1,1630053974,2,6.0,-9.0,-9.0,-9.0,4.0,1218795 -3038272,1630145902,2,21,2,2,1630053974,2,3.0,-9.0,-9.0,15.0,4.0,1218795 -3038273,1630145903,2,18,2,3,1630053974,2,6.0,-9.0,-9.0,14.0,4.0,1218795 -3038274,1630145904,2,17,2,4,1630053974,1,6.0,-9.0,-9.0,13.0,4.0,1218795 -3038275,1630146217,2,37,0,1,1630053975,1,1.0,40.0,6.0,-9.0,4.0,1218796 -3038276,1630145662,2,44,0,1,1630053976,2,1.0,29.0,1.0,-9.0,4.0,1218797 -3038277,1630145661,1,41,1,2,1630053976,1,3.0,-9.0,-9.0,-9.0,4.0,1218797 -3038278,1630145663,4,16,2,3,1630053976,2,6.0,-9.0,-9.0,13.0,-9.0,1218797 -3038279,1630146138,2,59,0,1,1630053977,2,1.0,40.0,4.0,-9.0,4.0,1218798 -3038280,1630146139,2,39,10,2,1630053977,1,6.0,30.0,4.0,-9.0,4.0,1218798 -3038281,1630146221,2,88,0,1,1630053978,1,6.0,-9.0,-9.0,-9.0,4.0,1218799 -3038282,1630146219,2,46,2,2,1630053978,1,1.0,40.0,1.0,-9.0,4.0,1218799 -3038283,1630146220,2,36,2,3,1630053978,1,3.0,-9.0,-9.0,-9.0,4.0,1218799 -3038284,1630145595,2,73,0,1,1630053979,2,6.0,-9.0,-9.0,-9.0,4.0,1218800 -3038285,1630145596,2,51,2,2,1630053979,1,6.0,-9.0,-9.0,-9.0,4.0,1218800 -3038286,1630145955,2,44,0,1,1630053980,2,3.0,10.0,6.0,-9.0,4.0,1218801 -3038287,1630145956,2,21,2,2,1630053980,1,6.0,-9.0,-9.0,-9.0,4.0,1218801 -3038288,1630145957,2,16,2,3,1630053980,2,6.0,-9.0,-9.0,12.0,-9.0,1218801 -3038289,1630146010,2,50,0,1,1630053981,1,3.0,40.0,5.0,-9.0,4.0,1218802 -3038290,1630146006,2,44,1,2,1630053981,2,3.0,50.0,5.0,-9.0,4.0,1218802 -3038291,1630146014,2,28,4,3,1630053981,1,3.0,-9.0,-9.0,-9.0,4.0,1218802 -3094219,1630202667,1,33,0,1,1630081202,2,1.0,50.0,1.0,-9.0,4.0,1246023 -3094220,1630202668,1,33,0,1,1630081203,2,1.0,50.0,1.0,-9.0,4.0,1246024 -3094221,1630202669,1,33,0,1,1630081204,2,1.0,50.0,1.0,-9.0,4.0,1246025 -3094222,1630202670,1,33,0,1,1630081205,2,1.0,50.0,1.0,-9.0,4.0,1246026 -3094223,1630202671,1,33,0,1,1630081206,2,1.0,50.0,1.0,-9.0,4.0,1246027 -3094224,1630202672,1,33,0,1,1630081207,2,1.0,50.0,1.0,-9.0,4.0,1246028 -3094225,1630202611,1,27,0,1,1630081208,1,1.0,50.0,1.0,-9.0,4.0,1246029 -3094226,1630202612,1,27,0,1,1630081209,1,1.0,50.0,1.0,-9.0,4.0,1246030 -3094227,1630202607,3,28,1,2,1630081209,2,6.0,45.0,4.0,-9.0,4.0,1246030 -3094228,1630202613,1,27,0,1,1630081210,1,1.0,50.0,1.0,-9.0,4.0,1246031 -3094229,1630202608,3,28,1,2,1630081210,2,6.0,45.0,4.0,-9.0,4.0,1246031 -3094230,1630202614,1,27,0,1,1630081211,1,1.0,50.0,1.0,-9.0,4.0,1246032 -3094231,1630203217,4,30,0,1,1630081212,1,1.0,45.0,1.0,-9.0,4.0,1246033 -3094232,1630203214,4,27,1,2,1630081212,2,1.0,40.0,1.0,-9.0,4.0,1246033 -3094233,1630203218,4,30,0,1,1630081213,1,1.0,45.0,1.0,-9.0,4.0,1246034 -3094234,1630203215,4,27,1,2,1630081213,2,1.0,40.0,1.0,-9.0,4.0,1246034 -3094235,1630203219,4,30,0,1,1630081214,1,1.0,45.0,1.0,-9.0,4.0,1246035 -3094236,1630203216,4,27,1,2,1630081214,2,1.0,40.0,1.0,-9.0,4.0,1246035 -3094237,1630202732,1,27,0,1,1630081215,1,1.0,45.0,1.0,-9.0,4.0,1246036 -3094238,1630202729,1,28,1,2,1630081215,2,1.0,52.0,4.0,-9.0,4.0,1246036 -3094239,1630202733,1,27,0,1,1630081216,1,1.0,45.0,1.0,-9.0,4.0,1246037 -3094240,1630202730,1,28,1,2,1630081216,2,1.0,52.0,4.0,-9.0,4.0,1246037 -3094241,1630203099,4,33,0,1,1630081217,2,1.0,55.0,1.0,-9.0,4.0,1246038 -3094242,1630203096,2,34,13,2,1630081217,1,1.0,40.0,4.0,16.0,4.0,1246038 -3094243,1630203100,4,33,0,1,1630081218,2,1.0,55.0,1.0,-9.0,4.0,1246039 -3094244,1630203097,2,34,13,2,1630081218,1,1.0,40.0,4.0,16.0,4.0,1246039 -3094245,1630202957,2,26,0,1,1630081219,2,1.0,50.0,1.0,-9.0,4.0,1246040 -3094246,1630202958,2,27,13,2,1630081219,1,1.0,40.0,1.0,-9.0,4.0,1246040 -3094247,1630202846,1,38,0,1,1630081220,1,1.0,40.0,1.0,-9.0,4.0,1246041 -3094248,1630202851,1,42,12,2,1630081220,1,1.0,40.0,1.0,-9.0,4.0,1246041 -3094249,1630202604,1,25,0,1,1630081221,2,1.0,45.0,1.0,16.0,4.0,1246042 -3094250,1630202605,4,25,1,2,1630081221,1,1.0,40.0,1.0,16.0,4.0,1246042 -3094251,1630202594,1,31,0,1,1630081222,2,1.0,50.0,1.0,-9.0,4.0,1246043 -3094252,1630202597,1,34,13,2,1630081222,1,1.0,70.0,1.0,-9.0,4.0,1246043 -3094253,1630202847,1,38,0,1,1630081223,1,1.0,40.0,1.0,-9.0,4.0,1246044 -3094254,1630202852,1,42,12,2,1630081223,1,1.0,40.0,1.0,-9.0,4.0,1246044 -3094255,1630202646,1,37,0,1,1630081224,1,1.0,50.0,3.0,-9.0,4.0,1246045 -3094256,1630202645,1,39,13,2,1630081224,2,1.0,45.0,3.0,-9.0,4.0,1246045 -3094257,1630202595,1,31,0,1,1630081225,2,1.0,50.0,1.0,-9.0,4.0,1246046 -3094258,1630202598,1,34,13,2,1630081225,1,1.0,70.0,1.0,-9.0,4.0,1246046 -3094259,1630202579,1,27,0,1,1630081226,1,1.0,40.0,1.0,16.0,4.0,1246047 -3094260,1630202576,1,29,15,2,1630081226,2,1.0,50.0,1.0,-9.0,4.0,1246047 -3094261,1630202848,1,38,0,1,1630081227,1,1.0,40.0,1.0,-9.0,4.0,1246048 -3094262,1630202853,1,42,12,2,1630081227,1,1.0,40.0,1.0,-9.0,4.0,1246048 -3094263,1630202849,1,38,0,1,1630081228,1,1.0,40.0,1.0,-9.0,4.0,1246049 -3094264,1630202854,1,42,12,2,1630081228,1,1.0,40.0,1.0,-9.0,4.0,1246049 -3094265,1630202580,1,27,0,1,1630081229,1,1.0,40.0,1.0,16.0,4.0,1246050 -3094266,1630202577,1,29,15,2,1630081229,2,1.0,50.0,1.0,-9.0,4.0,1246050 -3094267,1630202850,1,38,0,1,1630081230,1,1.0,40.0,1.0,-9.0,4.0,1246051 -3094268,1630202855,1,42,12,2,1630081230,1,1.0,40.0,1.0,-9.0,4.0,1246051 -3094269,1630202596,1,31,0,1,1630081231,2,1.0,50.0,1.0,-9.0,4.0,1246052 -3094270,1630202599,1,34,13,2,1630081231,1,1.0,70.0,1.0,-9.0,4.0,1246052 -3094271,1630202773,3,27,0,1,1630081232,1,1.0,70.0,1.0,-9.0,4.0,1246053 -3094272,1630202776,3,27,12,2,1630081232,1,1.0,70.0,1.0,-9.0,4.0,1246053 -3094273,1630202774,3,27,0,1,1630081233,1,1.0,70.0,1.0,-9.0,4.0,1246054 -3094274,1630202777,3,27,12,2,1630081233,1,1.0,70.0,1.0,-9.0,4.0,1246054 -3094275,1630202775,3,27,0,1,1630081234,1,1.0,70.0,1.0,-9.0,4.0,1246055 -3094276,1630202778,3,27,12,2,1630081234,1,1.0,70.0,1.0,-9.0,4.0,1246055 -3094277,1630203049,2,39,0,1,1630081235,1,1.0,48.0,1.0,-9.0,4.0,1246056 -3094278,1630203059,2,29,0,1,1630081236,1,1.0,40.0,1.0,-9.0,4.0,1246057 -3094279,1630202945,2,26,0,1,1630081237,2,1.0,40.0,1.0,-9.0,4.0,1246058 -3094280,1630202946,2,26,0,1,1630081238,2,1.0,40.0,1.0,-9.0,4.0,1246059 -3094281,1630202856,1,29,0,1,1630081239,1,1.0,35.0,1.0,-9.0,4.0,1246060 -3094282,1630202806,1,30,0,1,1630081240,1,1.0,40.0,4.0,-9.0,4.0,1246061 -3094283,1630202807,1,30,0,1,1630081241,1,1.0,40.0,4.0,-9.0,4.0,1246062 -3094284,1630202857,1,29,0,1,1630081242,1,1.0,35.0,1.0,-9.0,4.0,1246063 -3094285,1630202754,1,29,0,1,1630081243,1,1.0,45.0,1.0,-9.0,4.0,1246064 -3094286,1630203249,4,30,0,1,1630081244,1,1.0,60.0,1.0,16.0,4.0,1246065 -3094287,1630203254,4,42,0,1,1630081245,1,1.0,40.0,3.0,-9.0,4.0,1246066 -3094288,1630203237,4,44,0,1,1630081246,1,1.0,55.0,1.0,-9.0,4.0,1246067 -3094289,1630203238,4,44,0,1,1630081247,1,1.0,55.0,1.0,-9.0,4.0,1246068 -3094290,1630203243,4,27,0,1,1630081248,1,1.0,40.0,1.0,-9.0,4.0,1246069 -3094291,1630203255,4,42,0,1,1630081249,1,1.0,40.0,3.0,-9.0,4.0,1246070 -3094292,1630203250,4,30,0,1,1630081250,1,1.0,60.0,1.0,16.0,4.0,1246071 -3094293,1630203244,4,27,0,1,1630081251,1,1.0,40.0,1.0,-9.0,4.0,1246072 -3094294,1630202912,2,25,0,1,1630081252,2,1.0,40.0,1.0,-9.0,4.0,1246073 -3094295,1630202949,2,32,0,1,1630081253,2,1.0,70.0,1.0,-9.0,4.0,1246074 -3094296,1630203067,2,42,0,1,1630081254,1,1.0,48.0,1.0,-9.0,4.0,1246075 -3094297,1630202913,2,25,0,1,1630081255,2,1.0,40.0,1.0,-9.0,4.0,1246076 -3094298,1630202950,2,32,0,1,1630081256,2,1.0,70.0,1.0,-9.0,4.0,1246077 -3094299,1630203004,2,28,0,1,1630081257,2,1.0,40.0,1.0,-9.0,4.0,1246078 -3094300,1630202862,2,26,0,1,1630081258,2,1.0,50.0,1.0,-9.0,4.0,1246079 -3094301,1630202863,2,26,0,1,1630081259,2,1.0,50.0,1.0,-9.0,4.0,1246080 -3094302,1630203010,2,38,0,1,1630081260,2,1.0,45.0,1.0,-9.0,4.0,1246081 -3094303,1630203132,2,35,0,1,1630081261,1,1.0,40.0,1.0,-9.0,2.0,1246082 -3094304,1630203005,2,28,0,1,1630081262,2,1.0,40.0,1.0,-9.0,4.0,1246083 -3094305,1630203011,2,38,0,1,1630081263,2,1.0,45.0,1.0,-9.0,4.0,1246084 -3094306,1630203006,2,28,0,1,1630081264,2,1.0,40.0,1.0,-9.0,4.0,1246085 -3094307,1630202977,2,29,0,1,1630081265,2,1.0,40.0,1.0,16.0,4.0,1246086 -3094308,1630203133,2,35,0,1,1630081266,1,1.0,40.0,1.0,-9.0,2.0,1246087 -3094309,1630203007,2,28,0,1,1630081267,2,1.0,40.0,1.0,-9.0,4.0,1246088 -3094310,1630202902,3,27,0,1,1630081268,2,1.0,65.0,1.0,-9.0,4.0,1246089 -3094311,1630203182,4,37,0,1,1630081269,2,1.0,30.0,1.0,-9.0,4.0,1246090 -3094312,1630203183,4,37,0,1,1630081270,2,1.0,30.0,1.0,-9.0,4.0,1246091 -3094313,1630203178,4,28,0,1,1630081271,1,1.0,80.0,1.0,-9.0,4.0,1246092 -3094314,1630203179,4,28,0,1,1630081272,1,1.0,80.0,1.0,-9.0,4.0,1246093 -3094315,1630203173,4,41,0,1,1630081273,1,1.0,37.0,1.0,16.0,4.0,1246094 -3094316,1630203193,3,34,0,1,1630081274,2,1.0,80.0,2.0,-9.0,4.0,1246095 -3094317,1630203194,3,34,0,1,1630081275,2,1.0,80.0,2.0,-9.0,4.0,1246096 -3094318,1630202766,1,29,0,1,1630081276,1,1.0,40.0,1.0,-9.0,2.0,1246097 -3094319,1630202771,1,34,0,1,1630081277,1,1.0,40.0,1.0,-9.0,4.0,1246098 -3094320,1630202677,1,26,0,1,1630081278,2,1.0,40.0,1.0,-9.0,4.0,1246099 -3094321,1630202767,1,29,0,1,1630081279,1,1.0,40.0,1.0,-9.0,2.0,1246100 -3094322,1630202740,1,42,0,1,1630081280,1,1.0,40.0,3.0,15.0,4.0,1246101 -3094323,1630202659,1,40,0,1,1630081281,2,1.0,60.0,1.0,-9.0,4.0,1246102 -3094324,1630202839,1,27,0,1,1630081282,1,1.0,40.0,1.0,-9.0,4.0,1246103 -3094325,1630202678,1,33,0,1,1630081283,2,1.0,60.0,1.0,15.0,4.0,1246104 -3094326,1630202741,1,42,0,1,1630081284,1,1.0,40.0,3.0,15.0,4.0,1246105 -3094327,1630202701,1,31,0,1,1630081285,2,1.0,50.0,1.0,16.0,4.0,1246106 -3094328,1630202768,1,29,0,1,1630081286,1,1.0,40.0,1.0,-9.0,2.0,1246107 -3094329,1630202702,1,31,0,1,1630081287,2,1.0,50.0,1.0,16.0,4.0,1246108 -3094330,1630202679,1,33,0,1,1630081288,2,1.0,60.0,1.0,15.0,4.0,1246109 -3094331,1630202680,1,33,0,1,1630081289,2,1.0,60.0,1.0,15.0,4.0,1246110 -3094332,1630202703,1,31,0,1,1630081290,2,1.0,50.0,1.0,16.0,4.0,1246111 -3094333,1630202654,1,26,0,1,1630081291,2,1.0,40.0,1.0,-9.0,4.0,1246112 -3094334,1630202755,3,29,0,1,1630081292,1,1.0,43.0,1.0,-9.0,4.0,1246113 -3094335,1630203121,2,36,0,1,1630081293,1,1.0,40.0,1.0,-9.0,4.0,1246114 -3094336,1630202779,1,40,0,1,1630081294,1,1.0,50.0,1.0,-9.0,4.0,1246115 -3094337,1630203040,2,43,0,1,1630081295,2,1.0,40.0,1.0,15.0,4.0,1246116 -3094338,1630203041,2,19,2,2,1630081295,1,3.0,36.0,6.0,15.0,4.0,1246116 -3094339,1630202588,1,25,0,1,1630081296,2,3.0,20.0,5.0,-9.0,4.0,1246117 -3094340,1630202589,1,23,12,2,1630081296,2,1.0,45.0,1.0,16.0,4.0,1246117 -3094341,1630202782,1,26,0,1,1630081297,1,3.0,40.0,2.0,-9.0,4.0,1246118 -3094342,1630202783,1,22,12,2,1630081297,1,1.0,40.0,5.0,-9.0,4.0,1246118 -3094343,1630202812,1,26,0,1,1630081298,1,1.0,45.0,1.0,-9.0,4.0,1246119 -3094344,1630202813,4,25,13,2,1630081298,2,1.0,35.0,1.0,-9.0,4.0,1246119 -3094345,1630202642,1,28,0,1,1630081299,1,1.0,40.0,1.0,16.0,4.0,1246120 -3094346,1630202640,1,27,12,2,1630081299,2,1.0,1.0,1.0,16.0,4.0,1246120 -3094347,1630202824,3,30,0,1,1630081300,1,1.0,45.0,1.0,-9.0,4.0,1246121 -3094348,1630202825,3,30,0,1,1630081301,1,1.0,45.0,1.0,-9.0,4.0,1246122 -3094349,1630202826,3,30,0,1,1630081302,1,1.0,45.0,1.0,-9.0,4.0,1246123 -3094350,1630202827,3,30,0,1,1630081303,1,1.0,45.0,1.0,-9.0,4.0,1246124 -3094351,1630203239,4,25,0,1,1630081304,1,1.0,70.0,5.0,-9.0,2.0,1246125 -3094352,1630203240,4,25,0,1,1630081305,1,1.0,70.0,5.0,-9.0,2.0,1246126 -3094353,1630203241,4,25,0,1,1630081306,1,1.0,70.0,5.0,-9.0,2.0,1246127 -3094354,1630202999,2,36,0,1,1630081307,2,1.0,40.0,1.0,-9.0,4.0,1246128 -3094355,1630203055,2,31,0,1,1630081308,1,1.0,40.0,1.0,-9.0,4.0,1246129 -3094356,1630203000,2,36,0,1,1630081309,2,1.0,40.0,1.0,-9.0,4.0,1246130 -3094357,1630203140,2,33,0,1,1630081310,1,1.0,40.0,1.0,-9.0,4.0,1246131 -3094358,1630203047,2,41,0,1,1630081311,2,1.0,40.0,1.0,-9.0,4.0,1246132 -3094359,1630203117,2,34,0,1,1630081312,1,1.0,60.0,1.0,-9.0,4.0,1246133 -3094360,1630203147,2,42,0,1,1630081313,1,2.0,60.0,1.0,-9.0,2.0,1246134 -3094361,1630203118,2,34,0,1,1630081314,1,1.0,60.0,1.0,-9.0,4.0,1246135 -3094362,1630203119,2,34,0,1,1630081315,1,1.0,60.0,1.0,-9.0,4.0,1246136 -3094363,1630203034,2,41,0,1,1630081316,2,1.0,45.0,1.0,-9.0,4.0,1246137 -3094364,1630203141,2,33,0,1,1630081317,1,1.0,40.0,1.0,-9.0,4.0,1246138 -3094365,1630203035,2,41,0,1,1630081318,2,1.0,45.0,1.0,-9.0,4.0,1246139 -3094366,1630203048,2,41,0,1,1630081319,2,1.0,40.0,1.0,-9.0,4.0,1246140 -3094367,1630203001,2,36,0,1,1630081320,2,1.0,40.0,1.0,-9.0,4.0,1246141 -3094368,1630202657,1,32,0,1,1630081321,2,1.0,50.0,1.0,-9.0,4.0,1246142 -3094369,1630202784,1,27,0,1,1630081322,1,1.0,48.0,1.0,-9.0,4.0,1246143 -3094370,1630202681,1,36,0,1,1630081323,2,1.0,80.0,1.0,-9.0,4.0,1246144 -3094371,1630202655,1,28,0,1,1630081324,2,1.0,40.0,1.0,-9.0,4.0,1246145 -3094372,1630202658,1,32,0,1,1630081325,2,1.0,50.0,1.0,-9.0,4.0,1246146 -3094373,1630202795,1,27,0,1,1630081326,1,1.0,40.0,1.0,-9.0,4.0,1246147 -3094374,1630202785,1,27,0,1,1630081327,1,1.0,48.0,1.0,-9.0,4.0,1246148 -3094375,1630202682,1,36,0,1,1630081328,2,1.0,80.0,1.0,-9.0,4.0,1246149 -3094376,1630202786,1,27,0,1,1630081329,1,1.0,48.0,1.0,-9.0,4.0,1246150 -3094377,1630202787,1,27,0,1,1630081330,1,1.0,48.0,1.0,-9.0,4.0,1246151 -3094378,1630202745,1,26,0,1,1630081331,1,1.0,40.0,3.0,-9.0,4.0,1246152 -3094379,1630202683,1,36,0,1,1630081332,2,1.0,80.0,1.0,-9.0,4.0,1246153 -3094380,1630202746,1,26,0,1,1630081333,1,1.0,40.0,3.0,-9.0,4.0,1246154 -3094381,1630202788,1,27,0,1,1630081334,1,1.0,48.0,1.0,-9.0,4.0,1246155 -3094382,1630202747,1,26,0,1,1630081335,1,1.0,40.0,3.0,-9.0,4.0,1246156 -3094383,1630202684,1,36,0,1,1630081336,2,1.0,80.0,1.0,-9.0,4.0,1246157 -3094384,1630202656,1,28,0,1,1630081337,2,1.0,40.0,1.0,-9.0,4.0,1246158 -3094385,1630202796,1,27,0,1,1630081338,1,1.0,40.0,1.0,-9.0,4.0,1246159 -3094386,1630202685,1,36,0,1,1630081339,2,1.0,80.0,1.0,-9.0,4.0,1246160 -3094387,1630203064,2,36,0,1,1630081340,1,1.0,40.0,1.0,-9.0,4.0,1246161 -3094388,1630202762,1,39,0,1,1630081341,1,1.0,40.0,1.0,-9.0,4.0,1246162 -3094389,1630202763,1,39,0,1,1630081342,1,1.0,40.0,1.0,-9.0,4.0,1246163 -3094390,1630202791,1,40,0,1,1630081343,1,1.0,43.0,1.0,-9.0,4.0,1246164 -3094391,1630202764,1,39,0,1,1630081344,1,1.0,40.0,1.0,-9.0,4.0,1246165 -3094392,1630202620,1,37,0,1,1630081345,1,1.0,33.0,1.0,-9.0,4.0,1246166 -3094393,1630202621,1,37,0,1,1630081346,1,1.0,33.0,1.0,-9.0,4.0,1246167 -3094394,1630202619,1,27,13,2,1630081346,2,6.0,40.0,5.0,-9.0,4.0,1246167 -3094395,1630202633,1,29,0,1,1630081347,2,1.0,45.0,1.0,-9.0,4.0,1246168 -3094396,1630202635,1,29,1,2,1630081347,1,6.0,45.0,6.0,16.0,4.0,1246168 -3094397,1630202976,2,26,0,1,1630081348,1,1.0,52.0,1.0,-9.0,4.0,1246169 -3094398,1630202975,2,22,1,2,1630081348,2,1.0,40.0,1.0,-9.0,4.0,1246169 -3094399,1630202691,1,25,0,1,1630081349,1,1.0,45.0,1.0,-9.0,4.0,1246170 -3094400,1630202689,1,24,13,2,1630081349,2,1.0,40.0,1.0,-9.0,4.0,1246170 -3094401,1630202692,1,25,0,1,1630081350,1,1.0,45.0,1.0,-9.0,4.0,1246171 -3094402,1630202690,1,24,13,2,1630081350,2,1.0,40.0,1.0,-9.0,4.0,1246171 -3094403,1630202738,1,34,0,1,1630081351,1,1.0,17.0,3.0,-9.0,4.0,1246172 -3094404,1630202739,2,39,1,2,1630081351,2,1.0,45.0,1.0,-9.0,4.0,1246172 -3094405,1630203210,4,30,0,1,1630081352,2,1.0,44.0,1.0,-9.0,4.0,1246173 -3094406,1630203211,4,34,1,2,1630081352,1,1.0,40.0,2.0,-9.0,4.0,1246173 -3094407,1630202858,2,40,0,1,1630081353,2,1.0,40.0,1.0,-9.0,4.0,1246174 -3094408,1630202859,2,52,1,2,1630081353,1,1.0,40.0,1.0,-9.0,4.0,1246174 -3094409,1630202710,1,26,0,1,1630081354,1,1.0,40.0,1.0,-9.0,4.0,1246175 -3094410,1630202708,1,25,13,2,1630081354,2,1.0,30.0,1.0,-9.0,4.0,1246175 -3094411,1630202673,1,28,0,1,1630081355,2,1.0,80.0,1.0,-9.0,2.0,1246176 -3094412,1630202674,1,26,13,2,1630081355,1,1.0,65.0,1.0,-9.0,4.0,1246176 -3094413,1630202584,1,34,0,1,1630081356,2,1.0,65.0,1.0,-9.0,4.0,1246177 -3094414,1630202585,1,42,13,2,1630081356,1,1.0,43.0,1.0,-9.0,4.0,1246177 -3094415,1630202815,1,38,0,1,1630081357,1,1.0,40.0,1.0,-9.0,4.0,1246178 -3094416,1630202816,4,38,1,2,1630081357,2,1.0,40.0,1.0,-9.0,4.0,1246178 -3094417,1630202728,1,31,0,1,1630081358,1,1.0,40.0,3.0,-9.0,4.0,1246179 -3094418,1630202727,1,26,1,2,1630081358,2,1.0,40.0,1.0,16.0,4.0,1246179 -3094419,1630202711,1,26,0,1,1630081359,1,1.0,40.0,1.0,-9.0,4.0,1246180 -3094420,1630202709,1,25,13,2,1630081359,2,1.0,30.0,1.0,-9.0,4.0,1246180 -3094421,1630203090,2,28,0,1,1630081360,1,3.0,-9.0,-9.0,-9.0,4.0,1246181 -3094422,1630203002,2,30,0,1,1630081361,2,6.0,-9.0,-9.0,-9.0,4.0,1246182 -3094423,1630203081,2,28,0,1,1630081362,1,3.0,-9.0,-9.0,-9.0,4.0,1246183 -3094424,1630202907,2,44,0,1,1630081363,2,3.0,8.0,6.0,-9.0,4.0,1246184 -3094425,1630202955,2,43,0,1,1630081364,2,6.0,-9.0,-9.0,-9.0,4.0,1246185 -3094426,1630202748,1,39,0,1,1630081365,1,6.0,8.0,6.0,16.0,4.0,1246186 -3094427,1630202927,2,44,0,1,1630081366,2,6.0,-9.0,-9.0,-9.0,4.0,1246187 -3094428,1630202896,2,33,0,1,1630081367,2,3.0,-9.0,-9.0,-9.0,4.0,1246188 -3094429,1630202911,2,42,0,1,1630081368,2,6.0,-9.0,-9.0,-9.0,4.0,1246189 -3094430,1630202752,1,40,0,1,1630081369,1,6.0,28.0,4.0,-9.0,4.0,1246190 -3094431,1630203076,2,41,0,1,1630081370,1,1.0,40.0,1.0,-9.0,4.0,1246191 -3094432,1630202876,2,34,0,1,1630081371,2,1.0,24.0,1.0,-9.0,4.0,1246192 -3094433,1630203074,2,39,0,1,1630081372,1,1.0,40.0,1.0,-9.0,4.0,1246193 -3094434,1630202903,2,42,0,1,1630081373,2,1.0,45.0,1.0,-9.0,4.0,1246194 -3094435,1630203075,2,39,0,1,1630081374,1,1.0,40.0,1.0,-9.0,4.0,1246195 -3094436,1630203026,2,41,0,1,1630081375,2,1.0,40.0,1.0,-9.0,4.0,1246196 -3094437,1630203070,2,37,0,1,1630081376,1,1.0,40.0,6.0,-9.0,4.0,1246197 -3094438,1630202877,2,34,0,1,1630081377,2,1.0,24.0,1.0,-9.0,4.0,1246198 -3094439,1630203168,4,25,0,1,1630081378,1,1.0,30.0,1.0,-9.0,4.0,1246199 -3094440,1630203185,3,27,0,1,1630081379,2,1.0,40.0,1.0,-9.0,4.0,1246200 -3094441,1630203186,3,27,0,1,1630081380,2,1.0,40.0,1.0,-9.0,4.0,1246201 -3094442,1630202817,1,32,0,1,1630081381,1,1.0,60.0,5.0,-9.0,4.0,1246202 -3094443,1630202712,1,26,0,1,1630081382,2,1.0,65.0,2.0,-9.0,4.0,1246203 -3094444,1630202662,1,44,0,1,1630081383,2,1.0,40.0,1.0,-9.0,4.0,1246204 -3094445,1630202713,1,26,0,1,1630081384,2,1.0,65.0,2.0,-9.0,4.0,1246205 -3094446,1630202663,1,44,0,1,1630081385,2,1.0,40.0,1.0,-9.0,4.0,1246206 -3094447,1630202714,1,26,0,1,1630081386,2,1.0,65.0,2.0,-9.0,4.0,1246207 -3094448,1630202818,1,32,0,1,1630081387,1,1.0,60.0,5.0,-9.0,4.0,1246208 -3094449,1630203220,4,30,0,1,1630081388,2,1.0,40.0,1.0,-9.0,4.0,1246209 -3094450,1630203221,4,30,0,1,1630081389,2,1.0,40.0,1.0,-9.0,4.0,1246210 -3094451,1630203222,4,30,0,1,1630081390,2,1.0,40.0,1.0,-9.0,4.0,1246211 -3094452,1630203223,4,30,0,1,1630081391,2,1.0,40.0,1.0,-9.0,4.0,1246212 -3094453,1630203224,4,30,0,1,1630081392,2,1.0,40.0,1.0,-9.0,4.0,1246213 -3094454,1630203248,4,31,0,1,1630081393,1,1.0,17.0,1.0,16.0,4.0,1246214 -3094455,1630203225,4,30,0,1,1630081394,2,1.0,40.0,1.0,-9.0,4.0,1246215 -3094456,1630203226,4,30,0,1,1630081395,2,1.0,40.0,1.0,-9.0,4.0,1246216 -3094457,1630203008,2,44,0,1,1630081396,2,1.0,40.0,1.0,-9.0,4.0,1246217 -3094458,1630203103,2,29,0,1,1630081397,1,1.0,40.0,1.0,-9.0,4.0,1246218 -3094459,1630202989,2,42,0,1,1630081398,2,1.0,38.0,1.0,15.0,4.0,1246219 -3094460,1630202944,2,29,0,1,1630081399,2,1.0,40.0,1.0,-9.0,4.0,1246220 -3094461,1630203030,2,26,0,1,1630081400,2,1.0,30.0,1.0,-9.0,4.0,1246221 -3094462,1630203009,2,44,0,1,1630081401,2,1.0,40.0,1.0,-9.0,4.0,1246222 -3094463,1630203122,2,29,0,1,1630081402,1,1.0,40.0,1.0,-9.0,4.0,1246223 -3094464,1630202990,2,42,0,1,1630081403,2,1.0,38.0,1.0,15.0,4.0,1246224 -3094465,1630203104,2,29,0,1,1630081404,1,1.0,40.0,1.0,-9.0,4.0,1246225 -3094466,1630203031,2,26,0,1,1630081405,2,1.0,30.0,1.0,-9.0,4.0,1246226 -3094467,1630203139,2,44,0,1,1630081406,1,1.0,40.0,1.0,-9.0,4.0,1246227 -3094468,1630202804,1,27,0,1,1630081407,1,1.0,40.0,1.0,-9.0,4.0,1246228 -3094469,1630202647,1,31,0,1,1630081408,2,1.0,50.0,1.0,-9.0,4.0,1246229 -3094470,1630202810,1,30,0,1,1630081409,1,1.0,50.0,1.0,-9.0,4.0,1246230 -3094471,1630202629,1,28,0,1,1630081410,2,1.0,50.0,1.0,16.0,4.0,1246231 -3094472,1630202717,1,31,0,1,1630081411,2,1.0,20.0,1.0,-9.0,4.0,1246232 -3094473,1630202718,1,31,0,1,1630081412,2,1.0,20.0,1.0,-9.0,4.0,1246233 -3094474,1630202719,1,31,0,1,1630081413,2,1.0,20.0,1.0,-9.0,4.0,1246234 -3094475,1630202720,1,31,0,1,1630081414,2,1.0,20.0,1.0,-9.0,4.0,1246235 -3094476,1630202686,1,26,0,1,1630081415,2,1.0,20.0,4.0,16.0,4.0,1246236 -3094477,1630202721,1,31,0,1,1630081416,2,1.0,20.0,1.0,-9.0,4.0,1246237 -3094478,1630202840,1,26,0,1,1630081417,1,1.0,60.0,4.0,-9.0,4.0,1246238 -3094479,1630202736,1,31,0,1,1630081418,1,1.0,35.0,1.0,-9.0,4.0,1246239 -3094480,1630202687,1,26,0,1,1630081419,2,1.0,20.0,4.0,16.0,4.0,1246240 -3094481,1630202694,1,31,0,1,1630081420,2,1.0,80.0,5.0,-9.0,4.0,1246241 -3094482,1630202822,1,26,0,1,1630081421,1,1.0,60.0,2.0,16.0,4.0,1246242 -3094483,1630202841,1,26,0,1,1630081422,1,1.0,60.0,4.0,-9.0,4.0,1246243 -3094484,1630202823,1,26,0,1,1630081423,1,1.0,60.0,2.0,16.0,4.0,1246244 -3094485,1630202695,1,31,0,1,1630081424,2,1.0,80.0,5.0,-9.0,4.0,1246245 -3094486,1630202722,1,31,0,1,1630081425,2,1.0,20.0,1.0,-9.0,4.0,1246246 -3094487,1630202805,1,27,0,1,1630081426,1,1.0,40.0,1.0,-9.0,4.0,1246247 -3094488,1630202842,1,26,0,1,1630081427,1,1.0,60.0,4.0,-9.0,4.0,1246248 -3094489,1630202737,1,31,0,1,1630081428,1,1.0,35.0,1.0,-9.0,4.0,1246249 -3094490,1630203208,4,26,0,1,1630081429,2,6.0,-9.0,-9.0,-9.0,4.0,1246250 -3094491,1630203209,4,26,1,2,1630081429,1,1.0,40.0,1.0,16.0,4.0,1246250 -3094492,1630203025,2,31,0,1,1630081430,1,6.0,-9.0,-9.0,-9.0,4.0,1246251 -3094493,1630203024,2,62,6,2,1630081430,2,1.0,37.0,1.0,-9.0,4.0,1246251 -3094494,1630202908,2,37,0,1,1630081431,2,2.0,25.0,1.0,-9.0,4.0,1246252 -3094495,1630202909,2,19,2,2,1630081431,1,3.0,-9.0,-9.0,-9.0,4.0,1246252 -3094496,1630202967,2,32,0,1,1630081432,2,3.0,-9.0,-9.0,-9.0,4.0,1246253 -3094497,1630202968,2,33,1,2,1630081432,1,1.0,45.0,4.0,-9.0,4.0,1246253 -3094498,1630202883,2,26,0,1,1630081433,1,1.0,40.0,1.0,-9.0,4.0,1246254 -3094499,1630202882,2,25,13,2,1630081433,2,6.0,-9.0,-9.0,-9.0,4.0,1246254 -3094500,1630202938,2,43,0,1,1630081434,2,6.0,20.0,6.0,15.0,4.0,1246255 -3094501,1630202940,2,18,2,2,1630081434,1,2.0,20.0,4.0,14.0,4.0,1246255 -3094502,1630202986,2,63,0,1,1630081435,2,1.0,40.0,1.0,-9.0,4.0,1246256 -3094503,1630202987,2,63,0,1,1630081436,2,1.0,40.0,1.0,-9.0,4.0,1246257 -3094504,1630203036,2,58,0,1,1630081437,2,1.0,23.0,2.0,-9.0,4.0,1246258 -3094505,1630203037,2,58,0,1,1630081438,2,1.0,23.0,2.0,-9.0,4.0,1246259 -3094506,1630203038,2,58,0,1,1630081439,2,1.0,23.0,2.0,-9.0,4.0,1246260 -3094507,1630203107,2,60,0,1,1630081440,1,1.0,40.0,1.0,-9.0,4.0,1246261 -3094508,1630203014,2,45,0,1,1630081441,2,1.0,40.0,1.0,-9.0,4.0,1246262 -3094509,1630203015,2,45,0,1,1630081442,2,1.0,40.0,1.0,-9.0,4.0,1246263 -3094510,1630203016,2,45,0,1,1630081443,2,1.0,40.0,1.0,-9.0,4.0,1246264 -3094511,1630202704,1,51,0,1,1630081444,2,1.0,40.0,1.0,16.0,4.0,1246265 -3094512,1630202832,1,57,0,1,1630081445,1,1.0,45.0,2.0,-9.0,4.0,1246266 -3094513,1630202833,1,57,0,1,1630081446,1,1.0,45.0,2.0,-9.0,4.0,1246267 -3094514,1630202834,1,57,0,1,1630081447,1,1.0,45.0,2.0,-9.0,4.0,1246268 -3094515,1630202843,1,59,0,1,1630081448,1,1.0,50.0,1.0,-9.0,4.0,1246269 -3094516,1630202705,1,51,0,1,1630081449,2,1.0,40.0,1.0,16.0,4.0,1246270 -3094517,1630202820,1,50,0,1,1630081450,1,1.0,60.0,1.0,-9.0,4.0,1246271 -3094518,1630202706,1,51,0,1,1630081451,2,1.0,40.0,1.0,16.0,4.0,1246272 -3094519,1630202835,1,57,0,1,1630081452,1,1.0,45.0,2.0,-9.0,4.0,1246273 -3094520,1630202844,1,59,0,1,1630081453,1,1.0,50.0,1.0,-9.0,4.0,1246274 -3094521,1630202836,1,57,0,1,1630081454,1,1.0,45.0,2.0,-9.0,4.0,1246275 -3094522,1630202707,1,51,0,1,1630081455,2,1.0,40.0,1.0,16.0,4.0,1246276 -3094523,1630202837,1,57,0,1,1630081456,1,1.0,45.0,2.0,-9.0,4.0,1246277 -3094524,1630202821,1,50,0,1,1630081457,1,1.0,60.0,1.0,-9.0,4.0,1246278 -3094525,1630203130,2,62,0,1,1630081458,1,1.0,30.0,3.0,-9.0,4.0,1246279 -3094526,1630203131,2,62,0,1,1630081459,1,1.0,30.0,3.0,-9.0,4.0,1246280 -3094527,1630202962,2,53,0,1,1630081460,2,1.0,40.0,1.0,-9.0,4.0,1246281 -3094528,1630202964,2,46,1,2,1630081460,1,1.0,40.0,1.0,-9.0,4.0,1246281 -3094529,1630202625,1,59,0,1,1630081461,1,1.0,48.0,1.0,-9.0,4.0,1246282 -3094530,1630202622,1,59,1,2,1630081461,2,1.0,45.0,1.0,-9.0,4.0,1246282 -3094531,1630202626,1,59,0,1,1630081462,1,1.0,48.0,1.0,-9.0,4.0,1246283 -3094532,1630202623,1,59,1,2,1630081462,2,1.0,45.0,1.0,-9.0,4.0,1246283 -3094533,1630202966,2,58,0,1,1630081463,2,1.0,40.0,1.0,-9.0,4.0,1246284 -3094534,1630202914,2,55,0,1,1630081464,2,1.0,40.0,1.0,-9.0,4.0,1246285 -3094535,1630203042,2,61,0,1,1630081465,2,1.0,40.0,1.0,-9.0,4.0,1246286 -3094536,1630203110,2,45,0,1,1630081466,1,1.0,40.0,1.0,-9.0,2.0,1246287 -3094537,1630202924,2,62,0,1,1630081467,2,1.0,40.0,1.0,-9.0,4.0,1246288 -3094538,1630203123,2,60,0,1,1630081468,1,1.0,40.0,1.0,-9.0,4.0,1246289 -3094539,1630203003,2,59,0,1,1630081469,2,1.0,40.0,1.0,-9.0,4.0,1246290 -3094540,1630203108,2,56,0,1,1630081470,1,1.0,40.0,1.0,-9.0,4.0,1246291 -3094541,1630203061,2,63,0,1,1630081471,1,1.0,24.0,1.0,-9.0,2.0,1246292 -3094542,1630202881,2,60,0,1,1630081472,2,1.0,40.0,1.0,-9.0,4.0,1246293 -3094543,1630202978,2,50,0,1,1630081473,2,1.0,40.0,1.0,-9.0,4.0,1246294 -3094544,1630203043,2,56,0,1,1630081474,2,1.0,40.0,1.0,-9.0,4.0,1246295 -3094545,1630203050,2,53,0,1,1630081475,1,1.0,70.0,1.0,15.0,4.0,1246296 -3094546,1630203056,2,59,0,1,1630081476,1,1.0,40.0,1.0,-9.0,4.0,1246297 -3094547,1630203044,2,50,0,1,1630081477,2,1.0,45.0,1.0,-9.0,4.0,1246298 -3094548,1630203051,2,53,0,1,1630081478,1,1.0,70.0,1.0,15.0,4.0,1246299 -3094549,1630203146,2,50,0,1,1630081479,1,1.0,50.0,1.0,-9.0,4.0,1246300 -3094550,1630203023,2,54,0,1,1630081480,2,1.0,40.0,1.0,-9.0,4.0,1246301 -3094551,1630202770,1,61,0,1,1630081481,1,1.0,50.0,3.0,-9.0,4.0,1246302 -3094552,1630202628,1,63,0,1,1630081482,2,1.0,40.0,1.0,-9.0,4.0,1246303 -3094553,1630202592,1,60,0,1,1630081483,2,1.0,48.0,1.0,-9.0,4.0,1246304 -3094554,1630202593,1,60,0,1,1630081484,2,1.0,48.0,1.0,-9.0,4.0,1246305 -3094555,1630202794,3,54,0,1,1630081485,1,1.0,40.0,1.0,-9.0,4.0,1246306 -3094556,1630202956,2,46,0,1,1630081486,2,1.0,40.0,1.0,-9.0,4.0,1246307 -3094557,1630202860,2,45,0,1,1630081487,2,1.0,40.0,1.0,-9.0,4.0,1246308 -3094558,1630202861,2,22,2,2,1630081487,1,3.0,-9.0,-9.0,-9.0,4.0,1246308 -3094559,1630203113,2,60,0,1,1630081488,1,6.0,-9.0,-9.0,-9.0,4.0,1246309 -3094560,1630203115,2,58,5,2,1630081488,1,1.0,40.0,1.0,-9.0,2.0,1246309 -3094561,1630202874,2,53,0,1,1630081489,2,1.0,35.0,1.0,-9.0,4.0,1246310 -3094562,1630202875,2,34,2,2,1630081489,2,6.0,-9.0,-9.0,-9.0,4.0,1246310 -3094563,1630203245,4,45,0,1,1630081490,1,1.0,36.0,1.0,-9.0,4.0,1246311 -3094564,1630203246,4,45,0,1,1630081491,1,1.0,36.0,1.0,-9.0,4.0,1246312 -3094565,1630202915,2,58,0,1,1630081492,2,1.0,75.0,1.0,-9.0,4.0,1246313 -3094566,1630202928,2,56,0,1,1630081493,2,1.0,40.0,1.0,-9.0,4.0,1246314 -3094567,1630203109,2,61,0,1,1630081494,1,1.0,28.0,1.0,-9.0,4.0,1246315 -3094568,1630202931,2,62,0,1,1630081495,2,1.0,40.0,1.0,-9.0,4.0,1246316 -3094569,1630202932,2,62,0,1,1630081496,2,1.0,40.0,1.0,-9.0,4.0,1246317 -3094570,1630203106,2,45,0,1,1630081497,1,1.0,40.0,1.0,-9.0,4.0,1246318 -3094571,1630202933,2,62,0,1,1630081498,2,1.0,40.0,1.0,-9.0,4.0,1246319 -3094572,1630202573,1,57,0,1,1630081499,2,1.0,50.0,1.0,-9.0,4.0,1246320 -3094573,1630202725,1,48,0,1,1630081500,2,1.0,50.0,1.0,-9.0,4.0,1246321 -3094574,1630202637,1,55,0,1,1630081501,2,1.0,50.0,1.0,-9.0,4.0,1246322 -3094575,1630202726,1,48,0,1,1630081502,2,1.0,50.0,1.0,-9.0,4.0,1246323 -3094576,1630202742,1,63,0,1,1630081503,1,1.0,92.0,1.0,-9.0,4.0,1246324 -3094577,1630202929,2,50,0,1,1630081504,2,1.0,40.0,1.0,-9.0,4.0,1246325 -3094578,1630202930,2,28,2,2,1630081504,2,1.0,35.0,1.0,-9.0,4.0,1246325 -3094579,1630203137,2,45,0,1,1630081505,1,1.0,50.0,1.0,-9.0,2.0,1246326 -3094580,1630203138,2,19,2,2,1630081505,1,1.0,40.0,5.0,15.0,4.0,1246326 -3094581,1630202893,2,61,0,1,1630081506,2,6.0,-9.0,-9.0,-9.0,4.0,1246327 -3094582,1630203027,2,61,0,1,1630081507,2,6.0,-9.0,-9.0,-9.0,4.0,1246328 -3094583,1630203083,2,46,0,1,1630081508,1,6.0,-9.0,-9.0,-9.0,4.0,1246329 -3094584,1630202871,2,61,0,1,1630081509,2,6.0,-9.0,-9.0,-9.0,4.0,1246330 -3094585,1630203080,2,58,0,1,1630081510,1,6.0,-9.0,-9.0,-9.0,4.0,1246331 -3094586,1630202973,2,55,0,1,1630081511,2,6.0,-9.0,-9.0,-9.0,4.0,1246332 -3094587,1630202961,2,53,0,1,1630081512,2,6.0,-9.0,-9.0,-9.0,4.0,1246333 -3094588,1630203142,2,57,0,1,1630081513,1,6.0,-9.0,-9.0,-9.0,4.0,1246334 -3094589,1630202992,2,52,0,1,1630081514,2,6.0,-9.0,-9.0,-9.0,4.0,1246335 -3094590,1630203086,2,52,0,1,1630081515,1,6.0,-9.0,-9.0,-9.0,2.0,1246336 -3094591,1630203091,2,59,0,1,1630081516,1,6.0,-9.0,-9.0,-9.0,2.0,1246337 -3094592,1630202898,2,47,0,1,1630081517,2,6.0,-9.0,-9.0,-9.0,4.0,1246338 -3094593,1630202906,2,64,0,1,1630081518,2,6.0,-9.0,-9.0,-9.0,4.0,1246339 -3094594,1630203134,2,54,0,1,1630081519,1,6.0,-9.0,-9.0,-9.0,4.0,1246340 -3094595,1630203069,2,60,0,1,1630081520,1,3.0,-9.0,-9.0,-9.0,4.0,1246341 -3094596,1630202947,2,48,0,1,1630081521,2,6.0,-9.0,-9.0,-9.0,4.0,1246342 -3094597,1630202901,2,55,0,1,1630081522,2,6.0,-9.0,-9.0,-9.0,4.0,1246343 -3094598,1630203073,2,54,0,1,1630081523,1,6.0,-9.0,-9.0,-9.0,4.0,1246344 -3094599,1630202997,2,51,0,1,1630081524,2,6.0,-9.0,-9.0,-9.0,4.0,1246345 -3094600,1630202998,2,51,0,1,1630081525,2,6.0,-9.0,-9.0,-9.0,4.0,1246346 -3094601,1630202572,1,51,0,1,1630081526,2,6.0,-9.0,-9.0,-9.0,2.0,1246347 -3094602,1630202845,1,53,0,1,1630081527,1,6.0,8.0,6.0,-9.0,4.0,1246348 -3094603,1630202910,2,56,0,1,1630081528,2,6.0,-9.0,-9.0,-9.0,4.0,1246349 -3094604,1630202969,2,63,0,1,1630081529,2,6.0,-9.0,-9.0,-9.0,4.0,1246350 -3094605,1630203066,2,62,0,1,1630081530,1,3.0,-9.0,-9.0,-9.0,4.0,1246351 -3094606,1630203084,2,53,0,1,1630081531,1,6.0,-9.0,-9.0,-9.0,4.0,1246352 -3094607,1630202916,2,57,0,1,1630081532,2,6.0,-9.0,-9.0,-9.0,4.0,1246353 -3094608,1630203017,2,51,0,1,1630081533,2,3.0,-9.0,-9.0,-9.0,3.0,1246354 -3094609,1630203018,2,57,13,2,1630081533,1,3.0,40.0,5.0,-9.0,4.0,1246354 -3094610,1630202982,2,58,0,1,1630081534,2,1.0,40.0,1.0,-9.0,4.0,1246355 -3094611,1630202983,2,58,0,1,1630081535,2,1.0,40.0,1.0,-9.0,4.0,1246356 -3094612,1630203068,2,64,0,1,1630081536,1,1.0,40.0,1.0,-9.0,4.0,1246357 -3094613,1630202934,2,56,0,1,1630081537,2,1.0,99.0,1.0,-9.0,4.0,1246358 -3094614,1630203062,2,63,0,1,1630081538,1,1.0,25.0,1.0,-9.0,4.0,1246359 -3094615,1630202894,2,49,0,1,1630081539,2,1.0,30.0,1.0,13.0,4.0,1246360 -3094616,1630203072,2,60,0,1,1630081540,1,1.0,40.0,1.0,-9.0,2.0,1246361 -3094617,1630203094,2,54,0,1,1630081541,1,1.0,42.0,1.0,-9.0,4.0,1246362 -3094618,1630202904,2,58,0,1,1630081542,2,1.0,37.0,4.0,-9.0,4.0,1246363 -3094619,1630202895,2,49,0,1,1630081543,2,1.0,30.0,1.0,13.0,4.0,1246364 -3094620,1630203087,2,54,0,1,1630081544,1,1.0,25.0,1.0,-9.0,4.0,1246365 -3094621,1630203093,2,47,0,1,1630081545,1,1.0,32.0,1.0,-9.0,4.0,1246366 -3094622,1630203045,2,47,0,1,1630081546,2,1.0,40.0,1.0,-9.0,4.0,1246367 -3094623,1630203046,2,47,0,1,1630081547,2,1.0,40.0,1.0,-9.0,4.0,1246368 -3094624,1630202905,2,58,0,1,1630081548,2,1.0,37.0,4.0,-9.0,4.0,1246369 -3094625,1630203095,2,54,0,1,1630081549,1,1.0,42.0,1.0,-9.0,4.0,1246370 -3094626,1630203124,2,48,0,1,1630081550,1,1.0,36.0,6.0,-9.0,4.0,1246371 -3094627,1630202890,2,59,0,1,1630081551,2,1.0,20.0,4.0,-9.0,4.0,1246372 -3094628,1630203060,2,49,0,1,1630081552,1,1.0,25.0,1.0,-9.0,4.0,1246373 -3094629,1630203145,2,45,0,1,1630081553,1,1.0,12.0,5.0,-9.0,4.0,1246374 -3094630,1630203235,4,51,0,1,1630081554,2,1.0,40.0,1.0,-9.0,4.0,1246375 -3094631,1630202943,2,62,0,1,1630081555,2,1.0,20.0,6.0,-9.0,4.0,1246376 -3094632,1630202948,2,58,0,1,1630081556,2,1.0,40.0,1.0,-9.0,4.0,1246377 -3094633,1630202991,2,51,0,1,1630081557,2,1.0,36.0,1.0,15.0,4.0,1246378 -3094634,1630203143,2,52,0,1,1630081558,1,1.0,32.0,6.0,-9.0,4.0,1246379 -3094635,1630202979,2,60,0,1,1630081559,2,1.0,40.0,1.0,-9.0,4.0,1246380 -3094636,1630203127,2,60,0,1,1630081560,1,1.0,35.0,1.0,-9.0,4.0,1246381 -3094637,1630202985,2,48,0,1,1630081561,2,1.0,40.0,1.0,15.0,4.0,1246382 -3094638,1630203128,2,60,0,1,1630081562,1,1.0,35.0,1.0,-9.0,4.0,1246383 -3094639,1630202920,2,48,0,1,1630081563,2,1.0,20.0,1.0,-9.0,4.0,1246384 -3094640,1630203129,2,60,0,1,1630081564,1,1.0,35.0,1.0,-9.0,4.0,1246385 -3094641,1630202921,2,48,0,1,1630081565,2,1.0,20.0,1.0,-9.0,4.0,1246386 -3094642,1630203188,4,50,0,1,1630081566,2,1.0,40.0,1.0,-9.0,4.0,1246387 -3094643,1630203180,3,51,0,1,1630081567,2,1.0,40.0,1.0,-9.0,4.0,1246388 -3094644,1630202743,1,56,0,1,1630081568,1,1.0,40.0,1.0,-9.0,2.0,1246389 -3094645,1630202744,1,56,0,1,1630081569,1,1.0,40.0,1.0,-9.0,2.0,1246390 -3094646,1630202811,1,55,0,1,1630081570,1,1.0,40.0,3.0,-9.0,4.0,1246391 -3094647,1630202819,1,46,0,1,1630081571,1,1.0,43.0,1.0,-9.0,4.0,1246392 -3094648,1630203077,2,51,0,1,1630081572,1,1.0,40.0,1.0,-9.0,4.0,1246393 -3094649,1630202951,2,52,0,1,1630081573,2,6.0,-9.0,-9.0,-9.0,4.0,1246394 -3094650,1630202953,2,22,2,2,1630081573,1,1.0,21.0,1.0,-9.0,4.0,1246394 -3094651,1630202952,2,52,0,1,1630081574,2,6.0,-9.0,-9.0,-9.0,4.0,1246395 -3094652,1630202954,2,22,2,2,1630081574,1,1.0,21.0,1.0,-9.0,4.0,1246395 -3094653,1630202959,2,60,0,1,1630081575,2,6.0,-9.0,-9.0,-9.0,4.0,1246396 -3094654,1630202960,2,42,2,2,1630081575,1,1.0,40.0,6.0,15.0,4.0,1246396 -3094655,1630203022,2,54,0,1,1630081576,1,6.0,-9.0,-9.0,-9.0,4.0,1246397 -3094656,1630203021,2,52,13,2,1630081576,2,1.0,24.0,1.0,-9.0,4.0,1246397 -3094657,1630202879,2,47,0,1,1630081577,2,1.0,91.0,1.0,-9.0,4.0,1246398 -3094658,1630202880,2,25,15,2,1630081577,2,6.0,-9.0,-9.0,-9.0,4.0,1246398 -3094659,1630202884,2,55,0,1,1630081578,2,1.0,20.0,4.0,-9.0,4.0,1246399 -3094660,1630202546,2,73,0,1,1630081579,2,6.0,-9.0,-9.0,-9.0,4.0,1246400 -3094661,1630202547,2,73,0,1,1630081580,2,6.0,-9.0,-9.0,-9.0,4.0,1246401 -3094662,1630203204,1,68,0,1,1630081581,1,1.0,60.0,1.0,-9.0,4.0,1246402 -3094663,1630203205,1,68,0,1,1630081582,1,1.0,60.0,1.0,-9.0,4.0,1246403 -3094664,1630203199,1,67,0,1,1630081583,1,1.0,40.0,1.0,-9.0,4.0,1246404 -3094665,1630203200,1,67,0,1,1630081584,1,1.0,40.0,1.0,-9.0,4.0,1246405 -3094666,1630203195,1,69,0,1,1630081585,1,1.0,60.0,1.0,-9.0,4.0,1246406 -3094667,1630203196,1,69,0,1,1630081586,1,1.0,60.0,1.0,-9.0,4.0,1246407 -3094668,1630203197,1,69,0,1,1630081587,1,1.0,60.0,1.0,-9.0,4.0,1246408 -3094669,1630203206,1,68,0,1,1630081588,1,1.0,60.0,1.0,-9.0,4.0,1246409 -3094670,1630203198,1,69,0,1,1630081589,1,1.0,60.0,1.0,-9.0,4.0,1246410 -3094671,1630203201,1,67,0,1,1630081590,1,1.0,40.0,1.0,-9.0,4.0,1246411 -3094672,1630203202,1,67,0,1,1630081591,1,1.0,40.0,1.0,-9.0,4.0,1246412 -3094673,1630203207,1,68,0,1,1630081592,1,1.0,60.0,1.0,-9.0,4.0,1246413 -3094674,1630202521,2,70,0,1,1630081593,1,6.0,-9.0,-9.0,-9.0,2.0,1246414 -3094675,1630202519,2,68,1,2,1630081593,2,1.0,60.0,3.0,-9.0,4.0,1246414 -3094676,1630202562,1,65,0,1,1630081594,2,6.0,-9.0,-9.0,-9.0,4.0,1246415 -3094677,1630202565,1,77,1,2,1630081594,1,1.0,50.0,1.0,-9.0,4.0,1246415 -3094678,1630202563,1,65,0,1,1630081595,2,6.0,-9.0,-9.0,-9.0,4.0,1246416 -3094679,1630202566,1,77,1,2,1630081595,1,1.0,50.0,1.0,-9.0,4.0,1246416 -3094680,1630203159,2,68,0,1,1630081596,1,1.0,45.0,1.0,-9.0,4.0,1246417 -3094681,1630203160,2,68,12,2,1630081596,1,1.0,32.0,1.0,-9.0,4.0,1246417 -3094682,1630202555,2,85,0,1,1630081597,2,6.0,-9.0,-9.0,-9.0,4.0,1246418 -3094683,1630202518,2,68,0,1,1630081598,2,6.0,-9.0,-9.0,-9.0,4.0,1246419 -3094684,1630203257,3,69,0,1,1630081599,1,1.0,40.0,1.0,-9.0,4.0,1246420 -3094685,1630202514,2,75,0,1,1630081600,2,1.0,52.0,1.0,-9.0,4.0,1246421 -3094686,1630203158,2,66,0,1,1630081601,1,1.0,30.0,1.0,-9.0,2.0,1246422 -3094687,1630203155,2,65,0,1,1630081602,1,1.0,25.0,3.0,-9.0,4.0,1246423 -3094688,1630202540,2,69,0,1,1630081603,2,1.0,37.0,1.0,-9.0,4.0,1246424 -3094689,1630202541,2,69,0,1,1630081604,2,1.0,37.0,1.0,-9.0,4.0,1246425 -3094690,1630203154,2,67,0,1,1630081605,1,1.0,50.0,1.0,-9.0,4.0,1246426 -3094691,1630202530,2,81,0,1,1630081606,2,6.0,-9.0,-9.0,-9.0,4.0,1246427 -3094692,1630202542,2,78,0,1,1630081607,2,6.0,-9.0,-9.0,-9.0,4.0,1246428 -3094693,1630202531,2,74,0,1,1630081608,2,6.0,-9.0,-9.0,-9.0,4.0,1246429 -3094694,1630202532,2,66,0,1,1630081609,2,6.0,-9.0,-9.0,-9.0,4.0,1246430 -3094695,1630203161,2,86,0,1,1630081610,1,6.0,-9.0,-9.0,-9.0,4.0,1246431 -3094696,1630202529,2,69,0,1,1630081611,2,6.0,-9.0,-9.0,-9.0,4.0,1246432 -3094697,1630202553,2,67,0,1,1630081612,2,6.0,8.0,6.0,-9.0,4.0,1246433 -3094698,1630202554,2,79,0,1,1630081613,2,6.0,-9.0,-9.0,-9.0,4.0,1246434 -3094699,1630202524,2,65,0,1,1630081614,2,6.0,-9.0,-9.0,-9.0,4.0,1246435 -3094700,1630203152,2,75,0,1,1630081615,1,6.0,-9.0,-9.0,-9.0,4.0,1246436 -3094701,1630202523,2,68,0,1,1630081616,2,6.0,-9.0,-9.0,-9.0,4.0,1246437 -3094702,1630202539,2,65,0,1,1630081617,2,6.0,-9.0,-9.0,-9.0,4.0,1246438 -3094703,1630202535,2,68,0,1,1630081618,2,6.0,16.0,6.0,-9.0,3.0,1246439 -3094704,1630202513,2,73,0,1,1630081619,2,6.0,-9.0,-9.0,-9.0,4.0,1246440 -3094705,1630203150,2,94,0,1,1630081620,1,6.0,-9.0,-9.0,-9.0,4.0,1246441 -3094706,1630202526,2,74,0,1,1630081621,2,6.0,-9.0,-9.0,-9.0,4.0,1246442 -3094707,1630202549,2,80,0,1,1630081622,2,6.0,-9.0,-9.0,-9.0,4.0,1246443 -3094708,1630203162,2,86,0,1,1630081623,1,6.0,-9.0,-9.0,-9.0,2.0,1246444 -3094709,1630202560,1,65,0,1,1630081624,2,6.0,-9.0,-9.0,-9.0,4.0,1246445 -3094710,1630202559,1,76,0,1,1630081625,2,6.0,-9.0,-9.0,-9.0,4.0,1246446 -3094711,1630202510,2,76,0,1,1630081626,2,6.0,-9.0,-9.0,-9.0,4.0,1246447 -3094712,1630202548,2,69,0,1,1630081627,2,6.0,-9.0,-9.0,-9.0,4.0,1246448 -3094713,1630202516,2,69,0,1,1630081628,2,6.0,-9.0,-9.0,-9.0,4.0,1246449 -3094714,1630202515,2,80,0,1,1630081629,2,6.0,-9.0,-9.0,-9.0,4.0,1246450 -3094715,1630202517,2,69,0,1,1630081630,2,6.0,-9.0,-9.0,-9.0,4.0,1246451 -3094716,1630202538,2,66,0,1,1630081631,2,6.0,-9.0,-9.0,-9.0,4.0,1246452 -3094717,1630202888,2,77,0,1,1630081632,1,6.0,-9.0,-9.0,-9.0,2.0,1246453 -3094718,1630202886,2,62,1,2,1630081632,2,6.0,-9.0,-9.0,-9.0,4.0,1246453 -3094719,1630203149,2,66,0,1,1630081633,1,1.0,35.0,1.0,-9.0,4.0,1246454 -3094720,1630202511,2,66,0,1,1630081634,2,1.0,6.0,1.0,15.0,4.0,1246455 -3094721,1630203252,4,23,0,1,1630081635,1,1.0,80.0,1.0,-9.0,4.0,1246456 -3094722,1630203102,2,20,0,1,1630081636,1,1.0,40.0,1.0,-9.0,4.0,1246457 -3094723,1630202792,1,23,0,1,1630081637,1,1.0,40.0,1.0,-9.0,4.0,1246458 -3094724,1630202793,1,23,0,1,1630081638,1,1.0,40.0,1.0,-9.0,4.0,1246459 -3094725,1630203053,2,23,0,1,1630081639,1,6.0,40.0,1.0,15.0,4.0,1246460 -3094726,1630203054,2,62,6,2,1630081639,1,1.0,40.0,1.0,-9.0,4.0,1246460 -3094727,1630202760,1,24,0,1,1630081640,1,1.0,55.0,1.0,-9.0,4.0,1246461 -3094728,1630202630,1,24,0,1,1630081641,2,1.0,50.0,1.0,-9.0,4.0,1246462 -3094729,1630202631,1,24,0,1,1630081642,2,1.0,50.0,1.0,-9.0,4.0,1246463 -3094730,1630202761,1,24,0,1,1630081643,1,1.0,55.0,1.0,-9.0,4.0,1246464 -3094731,1630202632,1,24,0,1,1630081644,2,1.0,50.0,1.0,-9.0,4.0,1246465 -3094732,1630202648,1,23,0,1,1630081645,2,1.0,45.0,1.0,-9.0,4.0,1246466 -3094733,1630202651,1,23,12,2,1630081645,2,1.0,24.0,1.0,-9.0,4.0,1246466 -3094734,1630202649,1,23,0,1,1630081646,2,1.0,45.0,1.0,-9.0,4.0,1246467 -3094735,1630202652,1,23,12,2,1630081646,2,1.0,24.0,1.0,-9.0,4.0,1246467 -3094736,1630203092,2,19,0,1,1630081647,1,3.0,-9.0,-9.0,-9.0,4.0,1246468 -3094737,1630202797,1,24,0,1,1630081648,1,3.0,50.0,5.0,-9.0,4.0,1246469 -3094738,1630202769,1,24,0,1,1630081649,1,6.0,24.0,3.0,16.0,4.0,1246470 -3094739,1630202995,2,24,0,1,1630081650,2,1.0,35.0,1.0,-9.0,4.0,1246471 -3094740,1630203144,2,22,0,1,1630081651,1,1.0,20.0,6.0,-9.0,4.0,1246472 -3094741,1630202996,2,24,0,1,1630081652,2,1.0,35.0,1.0,-9.0,4.0,1246473 -3094742,1630202942,2,20,0,1,1630081653,2,1.0,16.0,6.0,-9.0,4.0,1246474 -3094743,1630202829,1,22,0,1,1630081654,1,1.0,15.0,1.0,15.0,4.0,1246475 -3094744,1630202830,1,22,0,1,1630081655,1,1.0,15.0,1.0,15.0,4.0,1246476 -3094745,1630203228,4,22,0,1,1630081656,2,1.0,25.0,1.0,15.0,4.0,1246477 -3094746,1630202974,2,20,0,1,1630081657,2,1.0,40.0,1.0,-9.0,4.0,1246478 -3094747,1630203079,2,24,0,1,1630081658,1,1.0,40.0,1.0,-9.0,4.0,1246479 -3094748,1630203170,4,22,0,1,1630081659,1,2.0,20.0,4.0,16.0,4.0,1246480 -3094749,1630203189,3,23,0,1,1630081660,2,1.0,40.0,1.0,-9.0,4.0,1246481 -3094750,1630202801,1,23,0,1,1630081661,1,1.0,40.0,3.0,15.0,4.0,1246482 -3094751,1630202693,1,21,0,1,1630081662,2,1.0,25.0,1.0,-9.0,4.0,1246483 -3094752,1630202789,1,24,0,1,1630081663,1,2.0,10.0,1.0,15.0,4.0,1246484 -3094753,1630202802,1,23,0,1,1630081664,1,1.0,40.0,3.0,15.0,4.0,1246485 -3094754,1630202803,1,23,0,1,1630081665,1,1.0,40.0,3.0,15.0,4.0,1246486 -3094755,1630203039,2,23,0,1,1630081666,2,1.0,40.0,1.0,15.0,4.0,1246487 -3094756,1630202638,1,20,0,1,1630081667,2,1.0,30.0,3.0,15.0,4.0,1246488 -3094757,1630202639,1,21,12,2,1630081667,2,6.0,30.0,4.0,15.0,4.0,1246488 -3094758,1630203029,2,64,0,1,1630081668,1,6.0,-9.0,-9.0,-9.0,4.0,1246489 -3094759,1630203028,2,57,15,2,1630081668,2,6.0,-9.0,-9.0,-9.0,4.0,1246489 -3094760,1630203190,3,23,0,1,1630081669,2,1.0,40.0,1.0,-9.0,4.0,1246490 -3094761,1630202984,2,54,0,1,1630081670,2,1.0,40.0,5.0,-9.0,4.0,1246491 -3094762,1630203256,4,51,0,1,1630081671,1,1.0,70.0,1.0,16.0,4.0,1246492 -3094763,1630202616,1,22,0,1,1630081672,2,2.0,40.0,1.0,16.0,4.0,1246493 -3094764,1630202617,1,27,13,2,1630081672,1,1.0,60.0,1.0,-9.0,4.0,1246493 -3094765,1630203236,4,51,0,1,1630081673,2,1.0,40.0,1.0,-9.0,4.0,1246494 -3094766,1630202723,1,20,0,1,1630081674,2,6.0,15.0,6.0,15.0,4.0,1246495 -3094767,1630202724,1,19,12,2,1630081674,2,1.0,30.0,1.0,15.0,4.0,1246495 -3094768,1630202582,1,24,0,1,1630081675,2,1.0,40.0,1.0,-9.0,4.0,1246496 -3094769,1630202583,1,26,1,2,1630081675,1,6.0,40.0,6.0,16.0,4.0,1246496 -3094770,1630202716,1,37,0,1,1630081676,1,1.0,50.0,1.0,16.0,4.0,1246497 -3094771,1630202715,1,49,1,2,1630081676,2,1.0,30.0,1.0,-9.0,4.0,1246497 -3094772,1630202756,3,29,0,1,1630081677,1,1.0,43.0,1.0,-9.0,4.0,1246498 -3094773,1630202735,1,24,0,1,1630081678,2,6.0,-9.0,-9.0,16.0,4.0,1246499 -3094774,1630202586,1,27,0,1,1630081679,2,1.0,20.0,1.0,16.0,4.0,1246500 -3094775,1630202587,1,26,1,2,1630081679,1,3.0,-9.0,-9.0,16.0,4.0,1246500 -3094776,1630203181,4,58,0,1,1630081680,2,1.0,40.0,1.0,-9.0,4.0,1246501 -3094777,1630202897,2,33,0,1,1630081681,2,3.0,-9.0,-9.0,-9.0,4.0,1246502 -3094778,1630202869,2,53,0,1,1630081682,2,1.0,98.0,1.0,-9.0,4.0,1246503 -3094779,1630202870,2,58,1,2,1630081682,1,6.0,-9.0,-9.0,-9.0,4.0,1246503 -3094780,1630203052,2,48,0,1,1630081683,1,1.0,50.0,1.0,-9.0,4.0,1246504 -3094781,1630202828,3,30,0,1,1630081684,1,1.0,45.0,1.0,-9.0,4.0,1246505 -3094782,1630202590,1,24,0,1,1630081685,2,1.0,20.0,3.0,15.0,4.0,1246506 -3094783,1630202591,1,29,1,2,1630081685,1,1.0,31.0,3.0,15.0,4.0,1246506 -3094784,1630203101,4,33,0,1,1630081686,2,1.0,55.0,1.0,-9.0,4.0,1246507 -3094785,1630203098,2,34,13,2,1630081686,1,1.0,40.0,4.0,16.0,4.0,1246507 -3094786,1630203174,4,29,0,1,1630081687,1,1.0,45.0,1.0,-9.0,4.0,1246508 -3094787,1630203175,4,26,1,2,1630081687,2,6.0,30.0,6.0,-9.0,4.0,1246508 -3094788,1630202865,2,55,0,1,1630081688,1,1.0,20.0,5.0,-9.0,4.0,1246509 -3094789,1630202866,2,19,2,2,1630081688,1,3.0,-9.0,-9.0,-9.0,4.0,1246509 -3094790,1630202864,2,51,10,3,1630081688,2,6.0,-9.0,-9.0,-9.0,4.0,1246509 -3094791,1630203192,4,60,0,1,1630081689,2,6.0,-9.0,-9.0,-9.0,4.0,1246510 -3094792,1630202923,2,69,0,1,1630081690,1,6.0,12.0,6.0,-9.0,2.0,1246511 -3094793,1630202922,2,61,1,2,1630081690,2,1.0,45.0,1.0,-9.0,4.0,1246511 -3094794,1630203151,2,66,0,1,1630081691,1,1.0,30.0,1.0,-9.0,4.0,1246512 -3094795,1630202937,3,44,0,1,1630081692,2,1.0,40.0,1.0,-9.0,4.0,1246513 -3094796,1630202688,1,26,0,1,1630081693,2,1.0,20.0,4.0,16.0,4.0,1246514 -3094797,1630202800,1,55,0,1,1630081694,1,1.0,50.0,1.0,-9.0,4.0,1246515 -3094798,1630202602,1,58,0,1,1630081695,2,1.0,40.0,1.0,-9.0,4.0,1246516 -3094799,1630202581,1,27,0,1,1630081696,1,1.0,40.0,1.0,16.0,4.0,1246517 -3094800,1630202578,1,29,15,2,1630081696,2,1.0,50.0,1.0,-9.0,4.0,1246517 -3094801,1630202561,1,72,0,1,1630081697,2,1.0,15.0,3.0,-9.0,4.0,1246518 -3094802,1630202878,2,34,0,1,1630081698,2,3.0,-9.0,-9.0,15.0,4.0,1246519 -3094803,1630203111,2,35,0,1,1630081699,1,6.0,-9.0,-9.0,-9.0,4.0,1246520 -3094804,1630202660,1,43,0,1,1630081700,2,6.0,-9.0,-9.0,-9.0,4.0,1246521 -3094805,1630202661,1,52,13,2,1630081700,1,1.0,25.0,1.0,-9.0,4.0,1246521 -3094806,1630203057,2,61,0,1,1630081701,1,1.0,40.0,1.0,-9.0,4.0,1246522 -3094807,1630203058,2,51,10,2,1630081701,1,6.0,-9.0,-9.0,-9.0,4.0,1246522 -3094808,1630202749,1,20,0,1,1630081702,1,1.0,5.0,3.0,15.0,4.0,1246523 -3094809,1630202790,1,24,0,1,1630081703,1,2.0,10.0,1.0,15.0,4.0,1246524 -3094810,1630202753,1,29,0,1,1630081704,1,6.0,-9.0,-9.0,15.0,4.0,1246525 -3094811,1630203232,4,27,0,1,1630081705,1,1.0,80.0,1.0,-9.0,4.0,1246526 -3094812,1630203230,4,26,1,2,1630081705,2,1.0,80.0,3.0,-9.0,4.0,1246526 -3094813,1630202644,1,33,0,1,1630081706,2,1.0,65.0,1.0,-9.0,4.0,1246527 -3094814,1630202988,2,63,0,1,1630081707,2,1.0,40.0,1.0,-9.0,4.0,1246528 -3094815,1630202838,1,57,0,1,1630081708,1,1.0,45.0,2.0,-9.0,4.0,1246529 -3094816,1630202574,1,57,0,1,1630081709,2,1.0,50.0,1.0,-9.0,4.0,1246530 -3094817,1630202765,1,39,0,1,1630081710,1,1.0,40.0,1.0,-9.0,4.0,1246531 -3094818,1630203085,2,28,0,1,1630081711,1,1.0,55.0,1.0,-9.0,4.0,1246532 -3094819,1630202634,1,29,0,1,1630081712,2,1.0,45.0,1.0,-9.0,4.0,1246533 -3094820,1630202544,2,68,0,1,1630081713,2,3.0,40.0,3.0,-9.0,4.0,1246534 -3094821,1630202545,2,52,1,2,1630081713,1,1.0,40.0,1.0,-9.0,4.0,1246534 -3094822,1630203242,4,25,0,1,1630081714,1,1.0,70.0,5.0,-9.0,2.0,1246535 -3094823,1630203157,2,73,0,1,1630081715,1,6.0,-9.0,-9.0,-9.0,4.0,1246536 -3094824,1630202522,2,70,0,1,1630081716,1,6.0,-9.0,-9.0,-9.0,2.0,1246537 -3094825,1630202520,2,68,1,2,1630081716,2,1.0,60.0,3.0,-9.0,4.0,1246537 -3094826,1630202970,2,52,0,1,1630081717,2,1.0,50.0,1.0,-9.0,2.0,1246538 -3094827,1630202971,2,65,1,2,1630081717,1,6.0,-9.0,-9.0,-9.0,4.0,1246538 -3094828,1630202972,4,18,14,3,1630081717,1,6.0,-9.0,-9.0,14.0,4.0,1246538 -3094829,1630202615,1,27,0,1,1630081718,1,1.0,50.0,1.0,-9.0,4.0,1246539 -3094830,1630202610,3,28,1,2,1630081718,2,6.0,45.0,4.0,-9.0,4.0,1246539 -3094831,1630203135,2,57,0,1,1630081719,1,1.0,40.0,1.0,15.0,2.0,1246540 -3094832,1630203136,2,35,2,2,1630081719,1,1.0,40.0,1.0,-9.0,4.0,1246540 -3094833,1630202558,3,69,0,1,1630081720,2,6.0,-9.0,-9.0,-9.0,4.0,1246541 -3094834,1630202643,1,28,0,1,1630081721,1,1.0,40.0,1.0,16.0,4.0,1246542 -3094835,1630202641,1,27,12,2,1630081721,2,1.0,1.0,1.0,16.0,4.0,1246542 -3094836,1630203172,4,61,0,1,1630081722,2,6.0,-9.0,-9.0,-9.0,4.0,1246543 -3094837,1630203171,4,23,2,2,1630081722,1,1.0,50.0,6.0,14.0,4.0,1246543 -3094838,1630203191,3,60,0,1,1630081723,2,6.0,-9.0,-9.0,-9.0,4.0,1246544 -3094839,1630203063,2,64,0,1,1630081724,1,6.0,-9.0,-9.0,-9.0,2.0,1246545 -3094840,1630203105,2,29,0,1,1630081725,1,1.0,40.0,1.0,-9.0,4.0,1246546 -3094841,1630203234,4,27,0,1,1630081726,1,1.0,54.0,2.0,16.0,4.0,1246547 -3094842,1630203233,4,26,1,2,1630081726,2,1.0,15.0,6.0,16.0,4.0,1246547 -3094843,1630203213,4,30,0,1,1630081727,1,1.0,60.0,1.0,16.0,4.0,1246548 -3094844,1630203212,4,33,1,2,1630081727,2,1.0,60.0,1.0,16.0,4.0,1246548 -3094845,1630202868,2,49,0,1,1630081728,1,1.0,40.0,1.0,-9.0,4.0,1246549 -3094846,1630202867,2,49,1,2,1630081728,2,3.0,-9.0,-9.0,-9.0,3.0,1246549 -3094847,1630203177,4,38,0,1,1630081729,1,3.0,30.0,6.0,15.0,3.0,1246550 -3094848,1630202831,1,22,0,1,1630081730,1,1.0,15.0,1.0,15.0,4.0,1246551 -3094849,1630202556,2,81,0,1,1630081731,2,6.0,-9.0,-9.0,-9.0,4.0,1246552 -3094850,1630202557,2,55,2,2,1630081731,2,6.0,-9.0,-9.0,-9.0,2.0,1246552 -3094851,1630203088,2,43,0,1,1630081732,1,1.0,30.0,1.0,-9.0,2.0,1246553 -3094852,1630203089,2,36,11,2,1630081732,1,1.0,40.0,1.0,15.0,4.0,1246553 -3094853,1630202900,2,24,0,1,1630081733,1,1.0,42.0,1.0,-9.0,4.0,1246554 -3094854,1630203019,2,52,0,1,1630081734,2,2.0,40.0,3.0,-9.0,4.0,1246555 -3094855,1630203020,2,19,12,2,1630081734,2,1.0,40.0,1.0,15.0,4.0,1246555 -3094856,1630202564,1,65,0,1,1630081735,2,6.0,-9.0,-9.0,-9.0,4.0,1246556 -3094857,1630202567,1,77,1,2,1630081735,1,1.0,50.0,1.0,-9.0,4.0,1246556 -3094858,1630202525,2,65,0,1,1630081736,2,6.0,30.0,5.0,-9.0,4.0,1246557 -3094859,1630202814,1,57,0,1,1630081737,1,1.0,60.0,1.0,-9.0,4.0,1246558 -3094860,1630202772,1,57,0,1,1630081738,1,1.0,55.0,1.0,-9.0,4.0,1246559 -3094861,1630202512,2,66,0,1,1630081739,2,1.0,6.0,1.0,15.0,4.0,1246560 -3094862,1630202552,2,72,0,1,1630081740,2,1.0,40.0,1.0,-9.0,4.0,1246561 -3094863,1630203167,4,61,0,1,1630081741,1,1.0,24.0,1.0,-9.0,4.0,1246562 -3094864,1630202963,2,53,0,1,1630081742,2,1.0,40.0,1.0,-9.0,4.0,1246563 -3094865,1630202965,2,46,1,2,1630081742,1,1.0,40.0,1.0,-9.0,4.0,1246563 -3094866,1630202676,1,62,0,1,1630081743,1,1.0,20.0,6.0,-9.0,2.0,1246564 -3094867,1630202675,1,51,13,2,1630081743,2,6.0,-9.0,-9.0,-9.0,4.0,1246564 -3094868,1630203169,4,25,0,1,1630081744,1,1.0,30.0,1.0,-9.0,4.0,1246565 -3094869,1630203258,3,69,0,1,1630081745,1,1.0,40.0,1.0,-9.0,4.0,1246566 -3094870,1630202551,2,41,0,1,1630081746,2,1.0,40.0,1.0,-9.0,4.0,1246567 -3094871,1630202550,2,71,6,2,1630081746,2,6.0,-9.0,-9.0,-9.0,4.0,1246567 -3094872,1630203166,4,48,0,1,1630081747,2,6.0,20.0,6.0,-9.0,4.0,1246568 -3094873,1630203165,4,19,2,2,1630081747,1,1.0,18.0,6.0,-9.0,4.0,1246568 -3094874,1630203071,2,37,0,1,1630081748,1,1.0,40.0,6.0,-9.0,4.0,1246569 -3094875,1630203184,4,37,0,1,1630081749,2,1.0,30.0,1.0,-9.0,4.0,1246570 -3094876,1630203176,3,39,0,1,1630081750,1,6.0,-9.0,-9.0,-9.0,4.0,1246571 -3094877,1630203227,4,30,0,1,1630081751,2,1.0,40.0,1.0,-9.0,4.0,1246572 -3094878,1630202939,2,43,0,1,1630081752,2,6.0,20.0,6.0,15.0,4.0,1246573 -3094879,1630202941,2,18,2,2,1630081752,1,2.0,20.0,4.0,14.0,4.0,1246573 -3094880,1630202666,1,32,0,1,1630081753,1,1.0,40.0,3.0,16.0,4.0,1246574 -3094881,1630202664,1,40,12,2,1630081753,2,1.0,40.0,1.0,16.0,4.0,1246574 -3094882,1630202665,1,30,13,3,1630081753,2,2.0,40.0,3.0,16.0,4.0,1246574 -3094883,1630203032,2,40,0,1,1630081754,2,6.0,-9.0,-9.0,-9.0,4.0,1246575 -3094884,1630202925,2,43,0,1,1630081755,2,1.0,50.0,1.0,-9.0,4.0,1246576 -3094885,1630202543,2,70,0,1,1630081756,2,6.0,-9.0,-9.0,-9.0,4.0,1246577 -3094886,1630203229,4,22,0,1,1630081757,2,1.0,25.0,1.0,15.0,4.0,1246578 -3094887,1630203065,2,36,0,1,1630081758,1,1.0,40.0,1.0,-9.0,4.0,1246579 -3094888,1630202799,2,24,0,1,1630081759,1,1.0,20.0,1.0,15.0,4.0,1246580 -3094889,1630202798,1,19,12,2,1630081759,1,3.0,56.0,6.0,15.0,4.0,1246580 -3094890,1630203253,4,23,0,1,1630081760,1,1.0,80.0,1.0,-9.0,4.0,1246581 -3094891,1630202918,2,42,0,1,1630081761,2,1.0,52.0,1.0,-9.0,2.0,1246582 -3094892,1630202919,2,46,13,2,1630081761,2,1.0,30.0,4.0,-9.0,4.0,1246582 -3094893,1630202569,1,82,0,1,1630081762,1,1.0,48.0,1.0,-9.0,2.0,1246583 -3094894,1630202568,1,76,1,2,1630081762,2,1.0,48.0,1.0,-9.0,4.0,1246583 -3094895,1630202892,2,69,0,1,1630081763,1,6.0,-9.0,-9.0,-9.0,2.0,1246584 -3094896,1630202891,2,63,1,2,1630081763,2,6.0,-9.0,-9.0,-9.0,4.0,1246584 -3094897,1630203153,2,66,0,1,1630081764,1,1.0,45.0,1.0,-9.0,4.0,1246585 -3094898,1630203251,4,30,0,1,1630081765,1,1.0,60.0,1.0,16.0,4.0,1246586 -3094899,1630203082,2,29,0,1,1630081766,1,1.0,40.0,1.0,-9.0,4.0,1246587 -3094900,1630203203,1,67,0,1,1630081767,1,1.0,40.0,1.0,-9.0,4.0,1246588 -3094901,1630202650,1,23,0,1,1630081768,2,1.0,45.0,1.0,-9.0,4.0,1246589 -3094902,1630202653,1,23,12,2,1630081768,2,1.0,24.0,1.0,-9.0,4.0,1246589 -3094903,1630202575,1,60,0,1,1630081769,2,6.0,-9.0,-9.0,-9.0,4.0,1246590 -3094904,1630203120,2,23,0,1,1630081770,1,1.0,40.0,3.0,-9.0,4.0,1246591 -3094905,1630203163,4,52,0,1,1630081771,1,1.0,3.0,6.0,-9.0,4.0,1246592 -3094906,1630202696,1,26,0,1,1630081772,2,1.0,35.0,1.0,-9.0,4.0,1246593 -3094907,1630202698,1,26,12,2,1630081772,1,1.0,40.0,1.0,-9.0,4.0,1246593 -3094908,1630202697,1,21,12,3,1630081772,2,1.0,35.0,1.0,15.0,4.0,1246593 -3094909,1630203078,2,54,0,1,1630081773,1,6.0,45.0,5.0,-9.0,4.0,1246594 -3094910,1630203126,4,19,0,1,1630081774,2,1.0,40.0,5.0,-9.0,4.0,1246595 -3094911,1630203125,2,21,13,2,1630081774,1,1.0,50.0,1.0,-9.0,4.0,1246595 -3094912,1630202926,2,50,0,1,1630081775,2,1.0,40.0,1.0,-9.0,4.0,1246596 -3094913,1630202889,2,77,0,1,1630081776,1,6.0,-9.0,-9.0,-9.0,2.0,1246597 -3094914,1630202887,2,62,1,2,1630081776,2,6.0,-9.0,-9.0,-9.0,4.0,1246597 -3094915,1630203148,4,72,0,1,1630081777,2,6.0,-9.0,-9.0,-9.0,4.0,1246598 -3094916,1630202808,1,33,0,1,1630081778,1,1.0,25.0,1.0,16.0,4.0,1246599 -3094917,1630202809,4,30,1,2,1630081778,2,1.0,25.0,1.0,15.0,4.0,1246599 -3094918,1630203187,3,27,0,1,1630081779,2,1.0,40.0,1.0,-9.0,4.0,1246600 -3094919,1630202734,1,27,0,1,1630081780,1,1.0,45.0,1.0,-9.0,4.0,1246601 -3094920,1630202731,1,28,1,2,1630081780,2,1.0,52.0,4.0,-9.0,4.0,1246601 -3094921,1630203013,2,24,0,1,1630081781,1,1.0,20.0,1.0,16.0,4.0,1246602 -3094922,1630203012,2,24,13,2,1630081781,2,6.0,-9.0,-9.0,16.0,4.0,1246602 -3094923,1630202603,1,59,0,1,1630081782,2,1.0,50.0,1.0,-9.0,4.0,1246603 -3094924,1630202872,2,59,0,1,1630081783,2,1.0,30.0,6.0,-9.0,4.0,1246604 -3094925,1630202873,2,58,1,2,1630081783,1,1.0,48.0,1.0,-9.0,4.0,1246604 -3094926,1630202536,2,69,0,1,1630081784,2,6.0,-9.0,-9.0,-9.0,4.0,1246605 -3094927,1630202537,2,65,1,2,1630081784,1,6.0,-9.0,-9.0,-9.0,4.0,1246605 -3094928,1630203247,4,45,0,1,1630081785,1,1.0,36.0,1.0,-9.0,4.0,1246606 -3094929,1630202601,1,24,0,1,1630081786,1,1.0,35.0,1.0,-9.0,4.0,1246607 -3094930,1630202994,2,58,0,1,1630081787,1,1.0,40.0,4.0,-9.0,4.0,1246608 -3094931,1630202993,2,60,1,2,1630081787,2,1.0,40.0,1.0,-9.0,4.0,1246608 -3094932,1630202700,1,60,0,1,1630081788,1,1.0,70.0,5.0,-9.0,4.0,1246609 -3094933,1630202699,1,60,1,2,1630081788,2,6.0,-9.0,-9.0,-9.0,4.0,1246609 -3094934,1630202757,1,19,0,1,1630081789,1,6.0,-9.0,-9.0,15.0,4.0,1246610 -3094935,1630202758,1,19,12,2,1630081789,1,1.0,30.0,1.0,15.0,4.0,1246610 -3094936,1630202759,1,19,12,3,1630081789,1,6.0,-9.0,-9.0,15.0,4.0,1246610 -3094937,1630202627,1,59,0,1,1630081790,1,1.0,48.0,1.0,-9.0,4.0,1246611 -3094938,1630202624,1,59,1,2,1630081790,2,1.0,45.0,1.0,-9.0,4.0,1246611 -3094939,1630202571,1,49,0,1,1630081791,1,1.0,80.0,1.0,-9.0,4.0,1246612 -3094940,1630202570,1,40,1,2,1630081791,2,3.0,-9.0,-9.0,-9.0,4.0,1246612 -3094941,1630202527,2,71,0,1,1630081792,2,6.0,-9.0,-9.0,-9.0,4.0,1246613 -3094942,1630202528,2,52,15,2,1630081792,2,1.0,28.0,1.0,-9.0,4.0,1246613 -3094943,1630202533,2,85,0,1,1630081793,2,6.0,-9.0,-9.0,15.0,4.0,1246614 -3094944,1630202534,2,25,7,2,1630081793,2,1.0,45.0,1.0,-9.0,4.0,1246614 -3094945,1630203114,2,60,0,1,1630081794,1,6.0,-9.0,-9.0,-9.0,4.0,1246615 -3094946,1630203116,2,58,5,2,1630081794,1,1.0,40.0,1.0,-9.0,2.0,1246615 -3094947,1630202980,2,31,0,1,1630081795,2,1.0,40.0,1.0,-9.0,4.0,1246616 -3094948,1630202981,2,30,10,2,1630081795,1,6.0,-9.0,-9.0,-9.0,4.0,1246616 -3094949,1630202780,1,28,0,1,1630081796,1,1.0,70.0,1.0,-9.0,4.0,1246617 -3094950,1630202781,1,25,12,2,1630081796,1,1.0,45.0,1.0,-9.0,2.0,1246617 -3094951,1630203299,1,33,0,1,1630081797,2,1.0,50.0,1.0,-9.0,4.0,1246618 -3094952,1630203267,1,27,0,1,1630081798,1,1.0,50.0,1.0,-9.0,4.0,1246619 -3094953,1630203264,3,28,1,2,1630081798,2,6.0,45.0,4.0,-9.0,4.0,1246619 -3094954,1630203268,1,27,0,1,1630081799,1,1.0,50.0,1.0,-9.0,4.0,1246620 -3094955,1630203430,1,38,0,1,1630081800,1,1.0,40.0,1.0,-9.0,4.0,1246621 -3094956,1630203432,1,42,12,2,1630081800,1,1.0,40.0,1.0,-9.0,4.0,1246621 -3094957,1630203431,1,38,0,1,1630081801,1,1.0,40.0,1.0,-9.0,4.0,1246622 -3094958,1630203433,1,42,12,2,1630081801,1,1.0,40.0,1.0,-9.0,4.0,1246622 -3094959,1630203294,1,27,0,1,1630081802,2,6.0,37.0,5.0,16.0,4.0,1246623 -3094960,1630203295,1,27,0,1,1630081803,2,6.0,37.0,5.0,16.0,4.0,1246624 -3094961,1630203296,1,27,0,1,1630081804,2,6.0,37.0,5.0,16.0,4.0,1246625 -3094962,1630203297,1,27,0,1,1630081805,2,6.0,37.0,5.0,16.0,4.0,1246626 -3094963,1630203450,2,32,0,1,1630081806,1,6.0,56.0,1.0,-9.0,4.0,1246627 -3094964,1630203454,2,29,12,2,1630081806,1,6.0,-9.0,-9.0,-9.0,4.0,1246627 -3094965,1630203451,2,32,0,1,1630081807,1,6.0,56.0,1.0,-9.0,4.0,1246628 -3094966,1630203452,2,32,0,1,1630081808,1,6.0,56.0,1.0,-9.0,4.0,1246629 -3094967,1630203456,2,29,12,2,1630081808,1,6.0,-9.0,-9.0,-9.0,4.0,1246629 -3094968,1630203317,1,29,0,1,1630081809,1,6.0,40.0,3.0,16.0,4.0,1246630 -3094969,1630203320,1,27,12,2,1630081809,1,6.0,40.0,5.0,-9.0,4.0,1246630 -3094970,1630203318,1,29,0,1,1630081810,1,6.0,40.0,3.0,16.0,4.0,1246631 -3094971,1630203321,1,27,12,2,1630081810,1,6.0,40.0,5.0,-9.0,4.0,1246631 -3094972,1630203319,1,29,0,1,1630081811,1,6.0,40.0,3.0,16.0,4.0,1246632 -3094973,1630203322,1,27,12,2,1630081811,1,6.0,40.0,5.0,-9.0,4.0,1246632 -3094974,1630203448,2,29,0,1,1630081812,1,1.0,40.0,1.0,-9.0,4.0,1246633 -3094975,1630203444,2,39,0,1,1630081813,1,1.0,48.0,1.0,-9.0,4.0,1246634 -3094976,1630203332,1,29,0,1,1630081814,1,1.0,45.0,1.0,-9.0,4.0,1246635 -3094977,1630203434,1,29,0,1,1630081815,1,1.0,35.0,1.0,-9.0,4.0,1246636 -3094978,1630203333,1,29,0,1,1630081816,1,1.0,45.0,1.0,-9.0,4.0,1246637 -3094979,1630203435,1,29,0,1,1630081817,1,1.0,35.0,1.0,-9.0,4.0,1246638 -3094980,1630203401,1,30,0,1,1630081818,1,1.0,40.0,4.0,-9.0,4.0,1246639 -3094981,1630203436,1,29,0,1,1630081819,1,1.0,35.0,1.0,-9.0,4.0,1246640 -3094982,1630203334,1,29,0,1,1630081820,1,1.0,45.0,1.0,-9.0,4.0,1246641 -3094983,1630203437,1,29,0,1,1630081821,1,1.0,35.0,1.0,-9.0,4.0,1246642 -3094984,1630203402,1,30,0,1,1630081822,1,1.0,40.0,4.0,-9.0,4.0,1246643 -3094985,1630203438,1,29,0,1,1630081823,1,1.0,35.0,1.0,-9.0,4.0,1246644 -3094986,1630203335,1,29,0,1,1630081824,1,1.0,45.0,1.0,-9.0,4.0,1246645 -3094987,1630203403,1,30,0,1,1630081825,1,1.0,40.0,4.0,-9.0,4.0,1246646 -3094988,1630203404,1,30,0,1,1630081826,1,1.0,40.0,4.0,-9.0,4.0,1246647 -3094989,1630203439,1,29,0,1,1630081827,1,1.0,35.0,1.0,-9.0,4.0,1246648 -3094990,1630203336,1,29,0,1,1630081828,1,1.0,45.0,1.0,-9.0,4.0,1246649 -3094991,1630203440,1,29,0,1,1630081829,1,1.0,35.0,1.0,-9.0,4.0,1246650 -3094992,1630203441,1,29,0,1,1630081830,1,1.0,35.0,1.0,-9.0,4.0,1246651 -3094993,1630203337,1,29,0,1,1630081831,1,1.0,45.0,1.0,-9.0,4.0,1246652 -3094994,1630203338,1,29,0,1,1630081832,1,1.0,45.0,1.0,-9.0,4.0,1246653 -3094995,1630203405,1,30,0,1,1630081833,1,1.0,40.0,4.0,-9.0,4.0,1246654 -3094996,1630203406,1,30,0,1,1630081834,1,1.0,40.0,4.0,-9.0,4.0,1246655 -3094997,1630203442,1,29,0,1,1630081835,1,1.0,35.0,1.0,-9.0,4.0,1246656 -3094998,1630203443,1,29,0,1,1630081836,1,1.0,35.0,1.0,-9.0,4.0,1246657 -3094999,1630203483,4,27,0,1,1630081837,1,1.0,40.0,1.0,-9.0,4.0,1246658 -3095000,1630203488,4,30,0,1,1630081838,1,1.0,60.0,1.0,16.0,4.0,1246659 -3095001,1630203491,4,33,0,1,1630081839,1,2.0,12.0,1.0,-9.0,4.0,1246660 -3095002,1630203484,4,27,0,1,1630081840,1,1.0,40.0,1.0,-9.0,4.0,1246661 -3095003,1630203485,4,27,0,1,1630081841,1,1.0,40.0,1.0,-9.0,4.0,1246662 -3095004,1630203461,2,34,0,1,1630081842,1,1.0,40.0,1.0,-9.0,4.0,1246663 -3095005,1630203449,2,42,0,1,1630081843,1,1.0,48.0,1.0,-9.0,4.0,1246664 -3095006,1630203315,1,42,0,1,1630081844,1,1.0,40.0,3.0,15.0,4.0,1246665 -3095007,1630203347,1,29,0,1,1630081845,1,1.0,50.0,1.0,-9.0,4.0,1246666 -3095008,1630203348,1,29,0,1,1630081846,1,1.0,40.0,1.0,-9.0,2.0,1246667 -3095009,1630203356,1,34,0,1,1630081847,1,1.0,40.0,1.0,-9.0,4.0,1246668 -3095010,1630203427,1,27,0,1,1630081848,1,1.0,40.0,1.0,-9.0,4.0,1246669 -3095011,1630203421,1,26,0,1,1630081849,1,1.0,60.0,1.0,-9.0,4.0,1246670 -3095012,1630203407,1,31,0,1,1630081850,1,2.0,70.0,1.0,-9.0,4.0,1246671 -3095013,1630203419,1,26,0,1,1630081851,1,1.0,50.0,1.0,-9.0,4.0,1246672 -3095014,1630203316,1,42,0,1,1630081852,1,1.0,40.0,3.0,15.0,4.0,1246673 -3095015,1630203349,1,29,0,1,1630081853,1,1.0,40.0,1.0,-9.0,2.0,1246674 -3095016,1630203350,1,29,0,1,1630081854,1,1.0,40.0,1.0,-9.0,2.0,1246675 -3095017,1630203422,1,26,0,1,1630081855,1,1.0,60.0,1.0,-9.0,4.0,1246676 -3095018,1630203420,1,26,0,1,1630081856,1,1.0,50.0,1.0,-9.0,4.0,1246677 -3095019,1630203408,1,31,0,1,1630081857,1,2.0,70.0,1.0,-9.0,4.0,1246678 -3095020,1630203357,1,34,0,1,1630081858,1,1.0,40.0,1.0,-9.0,4.0,1246679 -3095021,1630203371,1,26,0,1,1630081859,1,3.0,40.0,2.0,-9.0,4.0,1246680 -3095022,1630203374,1,22,12,2,1630081859,1,1.0,40.0,5.0,-9.0,4.0,1246680 -3095023,1630203372,1,26,0,1,1630081860,1,3.0,40.0,2.0,-9.0,4.0,1246681 -3095024,1630203375,1,22,12,2,1630081860,1,1.0,40.0,5.0,-9.0,4.0,1246681 -3095025,1630203409,1,26,0,1,1630081861,1,1.0,45.0,1.0,-9.0,4.0,1246682 -3095026,1630203411,4,25,13,2,1630081861,2,1.0,35.0,1.0,-9.0,4.0,1246682 -3095027,1630203478,4,25,0,1,1630081862,1,1.0,70.0,5.0,-9.0,2.0,1246683 -3095028,1630203479,4,25,0,1,1630081863,1,1.0,70.0,5.0,-9.0,2.0,1246684 -3095029,1630203480,4,25,0,1,1630081864,1,1.0,70.0,5.0,-9.0,2.0,1246685 -3095030,1630203481,4,25,0,1,1630081865,1,1.0,70.0,5.0,-9.0,2.0,1246686 -3095031,1630203466,2,42,0,1,1630081866,1,2.0,60.0,1.0,-9.0,2.0,1246687 -3095032,1630203467,2,42,0,1,1630081867,1,2.0,60.0,1.0,-9.0,2.0,1246688 -3095033,1630203462,2,34,0,1,1630081868,1,1.0,60.0,1.0,-9.0,4.0,1246689 -3095034,1630203377,1,27,0,1,1630081869,1,1.0,48.0,1.0,-9.0,4.0,1246690 -3095035,1630203388,1,27,0,1,1630081870,1,1.0,40.0,1.0,-9.0,4.0,1246691 -3095036,1630203389,1,27,0,1,1630081871,1,1.0,40.0,1.0,-9.0,4.0,1246692 -3095037,1630203323,1,26,0,1,1630081872,1,1.0,40.0,3.0,-9.0,4.0,1246693 -3095038,1630203390,1,27,0,1,1630081873,1,1.0,40.0,1.0,-9.0,4.0,1246694 -3095039,1630203391,1,27,0,1,1630081874,1,1.0,40.0,1.0,-9.0,4.0,1246695 -3095040,1630203359,1,25,0,1,1630081875,1,1.0,40.0,1.0,-9.0,4.0,1246696 -3095041,1630203392,1,27,0,1,1630081876,1,1.0,40.0,1.0,-9.0,4.0,1246697 -3095042,1630203393,1,27,0,1,1630081877,1,1.0,40.0,1.0,-9.0,4.0,1246698 -3095043,1630203360,1,25,0,1,1630081878,1,1.0,40.0,1.0,-9.0,4.0,1246699 -3095044,1630203324,1,26,0,1,1630081879,1,1.0,40.0,3.0,-9.0,4.0,1246700 -3095045,1630203325,1,26,0,1,1630081880,1,1.0,40.0,3.0,-9.0,4.0,1246701 -3095046,1630203378,1,27,0,1,1630081881,1,1.0,48.0,1.0,-9.0,4.0,1246702 -3095047,1630203379,1,27,0,1,1630081882,1,1.0,48.0,1.0,-9.0,4.0,1246703 -3095048,1630203361,1,25,0,1,1630081883,1,1.0,40.0,1.0,-9.0,4.0,1246704 -3095049,1630203394,1,27,0,1,1630081884,1,1.0,40.0,1.0,-9.0,4.0,1246705 -3095050,1630203380,1,27,0,1,1630081885,1,1.0,48.0,1.0,-9.0,4.0,1246706 -3095051,1630203395,1,27,0,1,1630081886,1,1.0,40.0,1.0,-9.0,4.0,1246707 -3095052,1630203396,1,27,0,1,1630081887,1,1.0,40.0,1.0,-9.0,4.0,1246708 -3095053,1630203362,1,25,0,1,1630081888,1,1.0,40.0,1.0,-9.0,4.0,1246709 -3095054,1630203326,1,26,0,1,1630081889,1,1.0,40.0,3.0,-9.0,4.0,1246710 -3095055,1630203397,1,27,0,1,1630081890,1,1.0,40.0,1.0,-9.0,4.0,1246711 -3095056,1630203398,1,27,0,1,1630081891,1,1.0,40.0,1.0,-9.0,4.0,1246712 -3095057,1630203399,1,27,0,1,1630081892,1,1.0,40.0,1.0,-9.0,4.0,1246713 -3095058,1630203327,1,26,0,1,1630081893,1,1.0,40.0,3.0,-9.0,4.0,1246714 -3095059,1630203328,1,26,0,1,1630081894,1,1.0,40.0,3.0,-9.0,4.0,1246715 -3095060,1630203381,1,27,0,1,1630081895,1,1.0,48.0,1.0,-9.0,4.0,1246716 -3095061,1630203363,1,25,0,1,1630081896,1,1.0,40.0,1.0,-9.0,4.0,1246717 -3095062,1630203382,1,27,0,1,1630081897,1,1.0,48.0,1.0,-9.0,4.0,1246718 -3095063,1630203383,1,27,0,1,1630081898,1,1.0,48.0,1.0,-9.0,4.0,1246719 -3095064,1630203384,1,27,0,1,1630081899,1,1.0,48.0,1.0,-9.0,4.0,1246720 -3095065,1630203329,1,26,0,1,1630081900,1,1.0,40.0,3.0,-9.0,4.0,1246721 -3095066,1630203385,1,27,0,1,1630081901,1,1.0,48.0,1.0,-9.0,4.0,1246722 -3095067,1630203400,1,27,0,1,1630081902,1,1.0,40.0,1.0,-9.0,4.0,1246723 -3095068,1630203342,1,39,0,1,1630081903,1,1.0,40.0,1.0,-9.0,4.0,1246724 -3095069,1630203387,1,40,0,1,1630081904,1,1.0,43.0,1.0,-9.0,4.0,1246725 -3095070,1630203343,1,39,0,1,1630081905,1,1.0,40.0,1.0,-9.0,4.0,1246726 -3095071,1630203344,1,39,0,1,1630081906,1,1.0,40.0,1.0,-9.0,4.0,1246727 -3095072,1630203278,1,37,0,1,1630081907,1,1.0,33.0,1.0,-9.0,4.0,1246728 -3095073,1630203279,1,37,0,1,1630081908,1,1.0,33.0,1.0,-9.0,4.0,1246729 -3095074,1630203280,1,37,0,1,1630081909,1,1.0,33.0,1.0,-9.0,4.0,1246730 -3095075,1630203272,1,27,13,2,1630081909,2,6.0,40.0,5.0,-9.0,4.0,1246730 -3095076,1630203281,1,37,0,1,1630081910,1,1.0,33.0,1.0,-9.0,4.0,1246731 -3095077,1630203273,1,27,13,2,1630081910,2,6.0,40.0,5.0,-9.0,4.0,1246731 -3095078,1630203282,1,37,0,1,1630081911,1,1.0,33.0,1.0,-9.0,4.0,1246732 -3095079,1630203274,1,27,13,2,1630081911,2,6.0,40.0,5.0,-9.0,4.0,1246732 -3095080,1630203283,1,37,0,1,1630081912,1,1.0,33.0,1.0,-9.0,4.0,1246733 -3095081,1630203275,1,27,13,2,1630081912,2,6.0,40.0,5.0,-9.0,4.0,1246733 -3095082,1630203284,1,37,0,1,1630081913,1,1.0,33.0,1.0,-9.0,4.0,1246734 -3095083,1630203286,1,29,0,1,1630081914,2,1.0,45.0,1.0,-9.0,4.0,1246735 -3095084,1630203290,1,29,1,2,1630081914,1,6.0,45.0,6.0,16.0,4.0,1246735 -3095085,1630203287,1,29,0,1,1630081915,2,1.0,45.0,1.0,-9.0,4.0,1246736 -3095086,1630203291,1,29,1,2,1630081915,1,6.0,45.0,6.0,16.0,4.0,1246736 -3095087,1630203288,1,29,0,1,1630081916,2,1.0,45.0,1.0,-9.0,4.0,1246737 -3095088,1630203303,1,34,0,1,1630081917,1,1.0,17.0,3.0,-9.0,4.0,1246738 -3095089,1630203309,2,39,1,2,1630081917,2,1.0,45.0,1.0,-9.0,4.0,1246738 -3095090,1630203304,1,34,0,1,1630081918,1,1.0,17.0,3.0,-9.0,4.0,1246739 -3095091,1630203310,2,39,1,2,1630081918,2,1.0,45.0,1.0,-9.0,4.0,1246739 -3095092,1630203305,1,34,0,1,1630081919,1,1.0,17.0,3.0,-9.0,4.0,1246740 -3095093,1630203311,2,39,1,2,1630081919,2,1.0,45.0,1.0,-9.0,4.0,1246740 -3095094,1630203306,1,34,0,1,1630081920,1,1.0,17.0,3.0,-9.0,4.0,1246741 -3095095,1630203312,2,39,1,2,1630081920,2,1.0,45.0,1.0,-9.0,4.0,1246741 -3095096,1630203307,1,34,0,1,1630081921,1,1.0,17.0,3.0,-9.0,4.0,1246742 -3095097,1630203313,2,39,1,2,1630081921,2,1.0,45.0,1.0,-9.0,4.0,1246742 -3095098,1630203365,1,28,0,1,1630081922,1,1.0,70.0,1.0,-9.0,4.0,1246743 -3095099,1630203368,1,25,12,2,1630081922,1,1.0,45.0,1.0,-9.0,2.0,1246743 -3095100,1630203413,1,38,0,1,1630081923,1,1.0,40.0,1.0,-9.0,4.0,1246744 -3095101,1630203416,4,38,1,2,1630081923,2,1.0,40.0,1.0,-9.0,4.0,1246744 -3095102,1630203366,1,28,0,1,1630081924,1,1.0,70.0,1.0,-9.0,4.0,1246745 -3095103,1630203369,1,25,12,2,1630081924,1,1.0,45.0,1.0,-9.0,2.0,1246745 -3095104,1630203367,1,28,0,1,1630081925,1,1.0,70.0,1.0,-9.0,4.0,1246746 -3095105,1630203370,1,25,12,2,1630081925,1,1.0,45.0,1.0,-9.0,2.0,1246746 -3095106,1630203414,1,38,0,1,1630081926,1,1.0,40.0,1.0,-9.0,4.0,1246747 -3095107,1630203417,4,38,1,2,1630081926,2,1.0,40.0,1.0,-9.0,4.0,1246747 -3095108,1630203415,1,38,0,1,1630081927,1,1.0,40.0,1.0,-9.0,4.0,1246748 -3095109,1630203418,4,38,1,2,1630081927,2,1.0,40.0,1.0,-9.0,4.0,1246748 -3095110,1630203465,2,42,0,1,1630081928,1,6.0,-9.0,-9.0,-9.0,4.0,1246749 -3095111,1630203330,1,39,0,1,1630081929,1,6.0,8.0,6.0,16.0,4.0,1246750 -3095112,1630203331,1,39,0,1,1630081930,1,6.0,8.0,6.0,16.0,4.0,1246751 -3095113,1630203489,4,26,0,1,1630081931,1,6.0,36.0,5.0,-9.0,4.0,1246752 -3095114,1630203490,4,25,12,2,1630081931,1,6.0,-9.0,-9.0,-9.0,4.0,1246752 -3095115,1630203486,4,45,0,1,1630081932,1,1.0,36.0,1.0,-9.0,4.0,1246753 -3095116,1630203354,1,87,0,1,1630081933,1,6.0,-9.0,-9.0,-9.0,2.0,1246754 -3095117,1630203352,1,51,12,2,1630081933,1,6.0,-9.0,-9.0,-9.0,4.0,1246754 -3095118,1630203262,1,24,0,1,1630081934,2,1.0,40.0,1.0,-9.0,4.0,1246755 -3095119,1630203340,1,24,0,1,1630081935,1,1.0,55.0,1.0,-9.0,4.0,1246756 -3095120,1630203364,1,25,0,1,1630081936,1,1.0,40.0,1.0,-9.0,4.0,1246757 -3095121,1630203300,1,33,0,1,1630081937,2,1.0,50.0,1.0,-9.0,4.0,1246758 -3095122,1630203261,1,57,0,1,1630081938,2,1.0,50.0,1.0,-9.0,4.0,1246759 -3095123,1630203269,1,27,0,1,1630081939,1,1.0,50.0,1.0,-9.0,4.0,1246760 -3095124,1630203266,3,28,1,2,1630081939,2,6.0,45.0,4.0,-9.0,4.0,1246760 -3095125,1630203423,1,32,0,1,1630081940,1,1.0,60.0,5.0,-9.0,4.0,1246761 -3095126,1630203468,2,66,0,1,1630081941,1,6.0,-9.0,-9.0,-9.0,2.0,1246762 -3095127,1630203472,4,30,0,1,1630081942,2,1.0,44.0,1.0,-9.0,4.0,1246763 -3095128,1630203473,4,34,1,2,1630081942,1,1.0,40.0,2.0,-9.0,4.0,1246763 -3095129,1630203346,1,31,0,1,1630081943,1,3.0,8.0,4.0,-9.0,4.0,1246764 -3095130,1630203424,1,29,0,1,1630081944,1,1.0,50.0,1.0,16.0,4.0,1246765 -3095131,1630203425,1,34,12,2,1630081944,1,1.0,40.0,1.0,16.0,4.0,1246765 -3095132,1630203482,4,25,0,1,1630081945,1,1.0,70.0,5.0,-9.0,2.0,1246766 -3095133,1630203470,2,74,0,1,1630081946,1,6.0,-9.0,-9.0,-9.0,2.0,1246767 -3095134,1630203445,2,39,0,1,1630081947,1,1.0,48.0,1.0,-9.0,4.0,1246768 -3095135,1630203464,2,33,0,1,1630081948,1,1.0,40.0,1.0,-9.0,4.0,1246769 -3095136,1630203458,2,34,0,1,1630081949,1,6.0,-9.0,-9.0,-9.0,4.0,1246770 -3095137,1630203410,1,26,0,1,1630081950,1,1.0,45.0,1.0,-9.0,4.0,1246771 -3095138,1630203412,4,25,13,2,1630081950,2,1.0,35.0,1.0,-9.0,4.0,1246771 -3095139,1630203345,1,39,0,1,1630081951,1,1.0,40.0,1.0,-9.0,4.0,1246772 -3095140,1630203302,1,27,0,1,1630081952,1,1.0,45.0,1.0,-9.0,4.0,1246773 -3095141,1630203301,1,28,1,2,1630081952,2,1.0,52.0,4.0,-9.0,4.0,1246773 -3095142,1630203298,1,27,0,1,1630081953,2,6.0,37.0,5.0,16.0,4.0,1246774 -3095143,1630203477,4,30,0,1,1630081954,1,1.0,45.0,1.0,-9.0,4.0,1246775 -3095144,1630203476,4,27,1,2,1630081954,2,1.0,40.0,1.0,-9.0,4.0,1246775 -3095145,1630203492,4,33,0,1,1630081955,1,2.0,12.0,1.0,-9.0,4.0,1246776 -3095146,1630203339,1,29,0,1,1630081956,1,1.0,45.0,1.0,-9.0,4.0,1246777 -3095147,1630203460,2,60,0,1,1630081957,1,6.0,-9.0,-9.0,-9.0,4.0,1246778 -3095148,1630203308,1,34,0,1,1630081958,1,1.0,17.0,3.0,-9.0,4.0,1246779 -3095149,1630203314,2,39,1,2,1630081958,2,1.0,45.0,1.0,-9.0,4.0,1246779 -3095150,1630203351,1,25,0,1,1630081959,1,1.0,10.0,5.0,16.0,4.0,1246780 -3095151,1630203341,1,24,0,1,1630081960,1,3.0,47.0,3.0,15.0,4.0,1246781 -3095152,1630203386,1,62,0,1,1630081961,1,6.0,-9.0,-9.0,-9.0,2.0,1246782 -3095153,1630203358,1,40,0,1,1630081962,1,1.0,50.0,1.0,-9.0,4.0,1246783 -3095154,1630203289,1,29,0,1,1630081963,2,1.0,45.0,1.0,-9.0,4.0,1246784 -3095155,1630203355,1,87,0,1,1630081964,1,6.0,-9.0,-9.0,-9.0,2.0,1246785 -3095156,1630203353,1,51,12,2,1630081964,1,6.0,-9.0,-9.0,-9.0,4.0,1246785 -3095157,1630203487,4,45,0,1,1630081965,1,1.0,36.0,1.0,-9.0,4.0,1246786 -3095158,1630203373,1,26,0,1,1630081966,1,3.0,40.0,2.0,-9.0,4.0,1246787 -3095159,1630203376,1,22,12,2,1630081966,1,1.0,40.0,5.0,-9.0,4.0,1246787 -3095160,1630203446,2,34,0,1,1630081967,1,3.0,-9.0,-9.0,-9.0,4.0,1246788 -3095161,1630203447,2,18,10,2,1630081967,1,6.0,-9.0,-9.0,14.0,4.0,1246788 -3095162,1630203428,1,51,0,1,1630081968,1,6.0,-9.0,-9.0,-9.0,2.0,1246789 -3095163,1630203426,1,57,0,1,1630081969,1,1.0,45.0,2.0,-9.0,4.0,1246790 -3095164,1630203285,1,37,0,1,1630081970,1,1.0,33.0,1.0,-9.0,4.0,1246791 -3095165,1630203459,2,41,0,1,1630081971,1,3.0,50.0,4.0,-9.0,4.0,1246792 -3095166,1630203259,2,88,0,1,1630081972,2,6.0,-9.0,-9.0,-9.0,4.0,1246793 -3095167,1630203260,2,24,7,2,1630081972,1,6.0,-9.0,-9.0,-9.0,4.0,1246793 -3095168,1630203429,1,64,0,1,1630081973,1,1.0,53.0,1.0,-9.0,4.0,1246794 -3095169,1630203475,4,30,0,1,1630081974,1,1.0,60.0,1.0,16.0,4.0,1246795 -3095170,1630203474,4,33,1,2,1630081974,2,1.0,60.0,1.0,16.0,4.0,1246795 -3095171,1630203463,2,58,0,1,1630081975,1,6.0,-9.0,-9.0,-9.0,4.0,1246796 -3095172,1630203471,1,66,0,1,1630081976,1,6.0,-9.0,-9.0,-9.0,2.0,1246797 -3095173,1630203453,2,32,0,1,1630081977,1,6.0,56.0,1.0,-9.0,4.0,1246798 -3095174,1630203457,2,29,12,2,1630081977,1,6.0,-9.0,-9.0,-9.0,4.0,1246798 -3095175,1630203469,2,94,0,1,1630081978,1,6.0,-9.0,-9.0,-9.0,4.0,1246799 -3095176,1630203779,1,30,0,1,1630081979,1,1.0,55.0,1.0,-9.0,4.0,1246800 -3095177,1630203852,1,42,0,1,1630081980,1,1.0,50.0,1.0,-9.0,4.0,1246801 -3095178,1630203937,1,28,0,1,1630081981,1,1.0,55.0,1.0,-9.0,4.0,1246802 -3095179,1630203780,1,30,0,1,1630081982,1,1.0,55.0,1.0,-9.0,4.0,1246803 -3095180,1630203781,1,30,0,1,1630081983,1,1.0,55.0,1.0,-9.0,4.0,1246804 -3095181,1630203853,1,42,0,1,1630081984,1,1.0,50.0,1.0,-9.0,4.0,1246805 -3095182,1630203876,1,28,0,1,1630081985,1,1.0,60.0,1.0,16.0,4.0,1246806 -3095183,1630203782,1,30,0,1,1630081986,1,1.0,55.0,1.0,-9.0,4.0,1246807 -3095184,1630203938,1,28,0,1,1630081987,1,1.0,55.0,1.0,-9.0,4.0,1246808 -3095185,1630203854,1,42,0,1,1630081988,1,1.0,50.0,1.0,-9.0,4.0,1246809 -3095186,1630203877,1,28,0,1,1630081989,1,1.0,60.0,1.0,16.0,4.0,1246810 -3095187,1630203783,1,30,0,1,1630081990,1,1.0,55.0,1.0,-9.0,4.0,1246811 -3095188,1630203939,1,28,0,1,1630081991,1,1.0,55.0,1.0,-9.0,4.0,1246812 -3095189,1630203878,1,28,0,1,1630081992,1,1.0,60.0,1.0,16.0,4.0,1246813 -3095190,1630203784,1,30,0,1,1630081993,1,1.0,55.0,1.0,-9.0,4.0,1246814 -3095191,1630203855,1,42,0,1,1630081994,1,1.0,50.0,1.0,-9.0,4.0,1246815 -3095192,1630203856,1,42,0,1,1630081995,1,1.0,50.0,1.0,-9.0,4.0,1246816 -3095193,1630203857,1,42,0,1,1630081996,1,1.0,50.0,1.0,-9.0,4.0,1246817 -3095194,1630203858,1,42,0,1,1630081997,1,1.0,50.0,1.0,-9.0,4.0,1246818 -3095195,1630203940,1,28,0,1,1630081998,1,1.0,55.0,1.0,-9.0,4.0,1246819 -3095196,1630203859,1,42,0,1,1630081999,1,1.0,50.0,1.0,-9.0,4.0,1246820 -3095197,1630203785,1,30,0,1,1630082000,1,1.0,55.0,1.0,-9.0,4.0,1246821 -3095198,1630203786,1,30,0,1,1630082001,1,1.0,55.0,1.0,-9.0,4.0,1246822 -3095199,1630203941,1,28,0,1,1630082002,1,1.0,55.0,1.0,-9.0,4.0,1246823 -3095200,1630203879,1,28,0,1,1630082003,1,1.0,60.0,1.0,16.0,4.0,1246824 -3095201,1630203942,1,28,0,1,1630082004,1,1.0,55.0,1.0,-9.0,4.0,1246825 -3095202,1630203860,1,42,0,1,1630082005,1,1.0,50.0,1.0,-9.0,4.0,1246826 -3095203,1630203919,1,33,0,1,1630082006,1,1.0,44.0,1.0,-9.0,4.0,1246827 -3095204,1630203922,4,31,1,2,1630082006,2,3.0,10.0,4.0,-9.0,4.0,1246827 -3095205,1630203920,1,33,0,1,1630082007,1,1.0,44.0,1.0,-9.0,4.0,1246828 -3095206,1630203923,4,31,1,2,1630082007,2,3.0,10.0,4.0,-9.0,4.0,1246828 -3095207,1630203921,1,33,0,1,1630082008,1,1.0,44.0,1.0,-9.0,4.0,1246829 -3095208,1630203924,4,31,1,2,1630082008,2,3.0,10.0,4.0,-9.0,4.0,1246829 -3095209,1630203673,4,40,0,1,1630082009,1,1.0,60.0,1.0,-9.0,4.0,1246830 -3095210,1630203671,1,33,13,2,1630082009,2,1.0,40.0,1.0,-9.0,4.0,1246830 -3095211,1630203883,1,43,0,1,1630082010,1,1.0,40.0,1.0,-9.0,4.0,1246831 -3095212,1630203887,1,49,13,2,1630082010,1,1.0,35.0,4.0,-9.0,2.0,1246831 -3095213,1630203884,1,43,0,1,1630082011,1,1.0,40.0,1.0,-9.0,4.0,1246832 -3095214,1630203888,1,49,13,2,1630082011,1,1.0,35.0,4.0,-9.0,2.0,1246832 -3095215,1630203639,1,40,0,1,1630082012,1,1.0,40.0,1.0,-9.0,4.0,1246833 -3095216,1630203635,1,43,1,2,1630082012,2,1.0,26.0,1.0,-9.0,4.0,1246833 -3095217,1630203643,1,42,0,1,1630082013,2,1.0,55.0,1.0,-9.0,4.0,1246834 -3095218,1630203644,1,39,1,2,1630082013,1,1.0,55.0,1.0,-9.0,4.0,1246834 -3095219,1630203885,1,43,0,1,1630082014,1,1.0,40.0,1.0,-9.0,4.0,1246835 -3095220,1630203889,1,49,13,2,1630082014,1,1.0,35.0,4.0,-9.0,2.0,1246835 -3095221,1630203618,1,42,0,1,1630082015,1,1.0,40.0,1.0,-9.0,4.0,1246836 -3095222,1630203617,1,42,1,2,1630082015,2,1.0,40.0,1.0,-9.0,4.0,1246836 -3095223,1630203640,1,40,0,1,1630082016,1,1.0,40.0,1.0,-9.0,4.0,1246837 -3095224,1630203636,1,43,1,2,1630082016,2,1.0,26.0,1.0,-9.0,4.0,1246837 -3095225,1630203641,1,40,0,1,1630082017,1,1.0,40.0,1.0,-9.0,4.0,1246838 -3095226,1630203637,1,43,1,2,1630082017,2,1.0,26.0,1.0,-9.0,4.0,1246838 -3095227,1630203886,1,43,0,1,1630082018,1,1.0,40.0,1.0,-9.0,4.0,1246839 -3095228,1630203890,1,49,13,2,1630082018,1,1.0,35.0,4.0,-9.0,2.0,1246839 -3095229,1630203642,1,40,0,1,1630082019,1,1.0,40.0,1.0,-9.0,4.0,1246840 -3095230,1630203638,1,43,1,2,1630082019,2,1.0,26.0,1.0,-9.0,4.0,1246840 -3095231,1630204090,2,42,0,1,1630082020,1,1.0,45.0,1.0,-9.0,4.0,1246841 -3095232,1630203732,1,28,0,1,1630082021,2,1.0,40.0,1.0,16.0,4.0,1246842 -3095233,1630203756,1,35,0,1,1630082022,2,1.0,40.0,2.0,-9.0,4.0,1246843 -3095234,1630203728,1,31,0,1,1630082023,2,1.0,50.0,1.0,-9.0,4.0,1246844 -3095235,1630203918,1,30,0,1,1630082024,1,1.0,60.0,1.0,-9.0,4.0,1246845 -3095236,1630203729,1,31,0,1,1630082025,2,1.0,50.0,1.0,-9.0,4.0,1246846 -3095237,1630203730,1,31,0,1,1630082026,2,1.0,50.0,1.0,-9.0,4.0,1246847 -3095238,1630203757,1,35,0,1,1630082027,2,1.0,40.0,2.0,-9.0,4.0,1246848 -3095239,1630203771,3,37,0,1,1630082028,2,1.0,40.0,1.0,-9.0,4.0,1246849 -3095240,1630204003,2,31,0,1,1630082029,2,1.0,50.0,1.0,-9.0,4.0,1246850 -3095241,1630203977,2,35,0,1,1630082030,2,1.0,40.0,1.0,16.0,4.0,1246851 -3095242,1630204184,4,39,0,1,1630082031,1,1.0,40.0,1.0,-9.0,4.0,1246852 -3095243,1630204185,4,39,0,1,1630082032,1,1.0,40.0,1.0,-9.0,4.0,1246853 -3095244,1630203788,1,34,0,1,1630082033,1,1.0,55.0,1.0,-9.0,4.0,1246854 -3095245,1630203904,1,29,0,1,1630082034,1,1.0,40.0,1.0,16.0,4.0,1246855 -3095246,1630203905,1,29,0,1,1630082035,1,1.0,40.0,1.0,16.0,4.0,1246856 -3095247,1630203906,1,29,0,1,1630082036,1,1.0,40.0,1.0,16.0,4.0,1246857 -3095248,1630203789,1,34,0,1,1630082037,1,1.0,55.0,1.0,-9.0,4.0,1246858 -3095249,1630203790,1,34,0,1,1630082038,1,1.0,55.0,1.0,-9.0,4.0,1246859 -3095250,1630203791,1,34,0,1,1630082039,1,1.0,55.0,1.0,-9.0,4.0,1246860 -3095251,1630203792,1,34,0,1,1630082040,1,1.0,55.0,1.0,-9.0,4.0,1246861 -3095252,1630203907,1,29,0,1,1630082041,1,1.0,40.0,1.0,16.0,4.0,1246862 -3095253,1630203793,1,34,0,1,1630082042,1,1.0,55.0,1.0,-9.0,4.0,1246863 -3095254,1630203794,1,34,0,1,1630082043,1,1.0,55.0,1.0,-9.0,4.0,1246864 -3095255,1630203795,1,34,0,1,1630082044,1,1.0,55.0,1.0,-9.0,4.0,1246865 -3095256,1630203796,1,34,0,1,1630082045,1,1.0,55.0,1.0,-9.0,4.0,1246866 -3095257,1630203908,1,29,0,1,1630082046,1,1.0,40.0,1.0,16.0,4.0,1246867 -3095258,1630203804,4,29,0,1,1630082047,2,1.0,80.0,1.0,-9.0,4.0,1246868 -3095259,1630203802,1,26,13,2,1630082047,1,3.0,40.0,4.0,16.0,4.0,1246868 -3095260,1630203805,4,29,0,1,1630082048,2,1.0,80.0,1.0,-9.0,4.0,1246869 -3095261,1630203803,1,26,13,2,1630082048,1,3.0,40.0,4.0,16.0,4.0,1246869 -3095262,1630204145,2,42,0,1,1630082049,1,1.0,70.0,1.0,-9.0,4.0,1246870 -3095263,1630204146,2,41,15,2,1630082049,1,6.0,-9.0,-9.0,-9.0,4.0,1246870 -3095264,1630203943,1,28,0,1,1630082050,1,1.0,40.0,1.0,16.0,4.0,1246871 -3095265,1630203945,4,28,13,2,1630082050,2,1.0,35.0,3.0,-9.0,4.0,1246871 -3095266,1630203944,1,28,0,1,1630082051,1,1.0,40.0,1.0,16.0,4.0,1246872 -3095267,1630203946,4,28,13,2,1630082051,2,1.0,35.0,3.0,-9.0,4.0,1246872 -3095268,1630204132,2,35,0,1,1630082052,1,6.0,-9.0,-9.0,-9.0,4.0,1246873 -3095269,1630203597,1,30,0,1,1630082053,2,3.0,40.0,2.0,-9.0,4.0,1246874 -3095270,1630203598,1,30,0,1,1630082054,2,3.0,40.0,2.0,-9.0,4.0,1246875 -3095271,1630204092,2,30,0,1,1630082055,1,3.0,36.0,5.0,-9.0,4.0,1246876 -3095272,1630203775,1,36,0,1,1630082056,1,6.0,-9.0,-9.0,16.0,4.0,1246877 -3095273,1630203614,1,26,0,1,1630082057,2,3.0,14.0,3.0,-9.0,4.0,1246878 -3095274,1630203926,1,30,0,1,1630082058,1,1.0,30.0,1.0,-9.0,4.0,1246879 -3095275,1630203660,1,64,0,1,1630082059,2,6.0,-9.0,-9.0,-9.0,4.0,1246880 -3095276,1630203661,1,67,1,2,1630082059,1,6.0,5.0,4.0,-9.0,4.0,1246880 -3095277,1630204025,2,60,0,1,1630082060,2,1.0,50.0,6.0,-9.0,4.0,1246881 -3095278,1630203764,1,56,0,1,1630082061,2,1.0,50.0,1.0,-9.0,4.0,1246882 -3095279,1630203765,1,56,0,1,1630082062,2,1.0,50.0,1.0,-9.0,4.0,1246883 -3095280,1630203766,1,56,0,1,1630082063,2,1.0,50.0,1.0,-9.0,4.0,1246884 -3095281,1630203767,1,56,0,1,1630082064,2,1.0,50.0,1.0,-9.0,4.0,1246885 -3095282,1630203623,1,59,0,1,1630082065,2,1.0,50.0,1.0,-9.0,4.0,1246886 -3095283,1630203899,1,45,0,1,1630082066,1,1.0,50.0,1.0,-9.0,4.0,1246887 -3095284,1630203624,1,59,0,1,1630082067,2,1.0,50.0,1.0,-9.0,4.0,1246888 -3095285,1630203625,1,59,0,1,1630082068,2,1.0,50.0,1.0,-9.0,4.0,1246889 -3095286,1630203810,1,59,0,1,1630082069,1,1.0,55.0,1.0,-9.0,4.0,1246890 -3095287,1630203626,1,59,0,1,1630082070,2,1.0,50.0,1.0,-9.0,4.0,1246891 -3095288,1630203811,1,59,0,1,1630082071,1,1.0,55.0,1.0,-9.0,4.0,1246892 -3095289,1630203806,3,59,0,1,1630082072,1,1.0,40.0,1.0,-9.0,4.0,1246893 -3095290,1630203807,3,59,0,1,1630082073,1,1.0,40.0,1.0,-9.0,4.0,1246894 -3095291,1630203800,1,62,0,1,1630082074,1,1.0,40.0,1.0,16.0,4.0,1246895 -3095292,1630203801,1,38,12,2,1630082074,1,6.0,-9.0,-9.0,-9.0,4.0,1246895 -3095293,1630203735,1,64,0,1,1630082075,1,1.0,65.0,1.0,-9.0,4.0,1246896 -3095294,1630203733,1,61,1,2,1630082075,2,6.0,-9.0,-9.0,-9.0,4.0,1246896 -3095295,1630203736,1,64,0,1,1630082076,1,1.0,65.0,1.0,-9.0,4.0,1246897 -3095296,1630203734,1,61,1,2,1630082076,2,6.0,-9.0,-9.0,-9.0,4.0,1246897 -3095297,1630203708,1,63,0,1,1630082077,1,1.0,47.0,1.0,-9.0,4.0,1246898 -3095298,1630203707,1,59,1,2,1630082077,2,1.0,45.0,1.0,-9.0,4.0,1246898 -3095299,1630203848,1,59,0,1,1630082078,1,1.0,55.0,1.0,-9.0,4.0,1246899 -3095300,1630203849,1,39,2,2,1630082078,1,1.0,30.0,1.0,-9.0,4.0,1246899 -3095301,1630203947,1,47,0,1,1630082079,1,6.0,24.0,5.0,-9.0,4.0,1246900 -3095302,1630203722,1,58,0,1,1630082080,2,6.0,-9.0,-9.0,-9.0,4.0,1246901 -3095303,1630204082,2,63,0,1,1630082081,1,1.0,40.0,1.0,-9.0,3.0,1246902 -3095304,1630204011,2,62,0,1,1630082082,2,1.0,40.0,1.0,-9.0,4.0,1246903 -3095305,1630203916,1,58,0,1,1630082083,1,1.0,55.0,1.0,-9.0,4.0,1246904 -3095306,1630203657,3,49,0,1,1630082084,2,1.0,45.0,3.0,-9.0,4.0,1246905 -3095307,1630203658,3,49,0,1,1630082085,2,1.0,45.0,3.0,-9.0,4.0,1246906 -3095308,1630204098,2,54,0,1,1630082086,1,1.0,40.0,1.0,-9.0,4.0,1246907 -3095309,1630203986,2,64,0,1,1630082087,2,2.0,36.0,4.0,-9.0,4.0,1246908 -3095310,1630203987,2,64,0,1,1630082088,2,2.0,36.0,4.0,-9.0,4.0,1246909 -3095311,1630203992,2,59,0,1,1630082089,2,1.0,45.0,1.0,-9.0,4.0,1246910 -3095312,1630203841,1,62,0,1,1630082090,1,1.0,50.0,1.0,16.0,4.0,1246911 -3095313,1630203609,1,58,0,1,1630082091,2,1.0,55.0,1.0,-9.0,4.0,1246912 -3095314,1630203610,1,58,0,1,1630082092,2,1.0,55.0,1.0,-9.0,4.0,1246913 -3095315,1630203711,1,55,0,1,1630082093,2,1.0,42.0,1.0,-9.0,4.0,1246914 -3095316,1630203712,1,55,0,1,1630082094,2,1.0,42.0,1.0,-9.0,4.0,1246915 -3095317,1630203645,1,57,0,1,1630082095,2,1.0,30.0,1.0,-9.0,4.0,1246916 -3095318,1630203611,1,58,0,1,1630082096,2,1.0,55.0,1.0,-9.0,4.0,1246917 -3095319,1630203969,2,46,0,1,1630082097,2,1.0,60.0,1.0,-9.0,4.0,1246918 -3095320,1630203826,1,59,0,1,1630082098,1,1.0,60.0,1.0,-9.0,4.0,1246919 -3095321,1630203827,1,59,0,1,1630082099,1,1.0,60.0,1.0,-9.0,4.0,1246920 -3095322,1630203828,1,59,0,1,1630082100,1,1.0,60.0,1.0,-9.0,4.0,1246921 -3095323,1630203675,1,56,0,1,1630082101,2,1.0,35.0,1.0,-9.0,4.0,1246922 -3095324,1630203677,1,67,1,2,1630082101,1,6.0,-9.0,-9.0,-9.0,2.0,1246922 -3095325,1630203601,1,58,0,1,1630082102,1,2.0,40.0,1.0,-9.0,2.0,1246923 -3095326,1630203600,1,57,1,2,1630082102,2,2.0,16.0,1.0,-9.0,4.0,1246923 -3095327,1630204043,2,61,0,1,1630082103,2,6.0,-9.0,-9.0,-9.0,4.0,1246924 -3095328,1630204128,2,53,0,1,1630082104,1,6.0,-9.0,-9.0,-9.0,2.0,1246925 -3095329,1630204131,2,53,0,1,1630082105,1,6.0,-9.0,-9.0,-9.0,4.0,1246926 -3095330,1630203950,2,57,0,1,1630082106,2,6.0,-9.0,-9.0,15.0,4.0,1246927 -3095331,1630204190,4,50,0,1,1630082107,2,6.0,-9.0,-9.0,15.0,4.0,1246928 -3095332,1630203633,1,49,0,1,1630082108,2,6.0,-9.0,-9.0,-9.0,4.0,1246929 -3095333,1630203725,1,62,0,1,1630082109,2,6.0,-9.0,-9.0,-9.0,4.0,1246930 -3095334,1630204026,2,63,0,1,1630082110,2,6.0,-9.0,-9.0,-9.0,4.0,1246931 -3095335,1630204115,2,60,0,1,1630082111,1,6.0,-9.0,-9.0,-9.0,2.0,1246932 -3095336,1630203819,1,54,0,1,1630082112,1,3.0,30.0,6.0,-9.0,4.0,1246933 -3095337,1630203900,1,64,0,1,1630082113,1,6.0,-9.0,-9.0,-9.0,4.0,1246934 -3095338,1630204005,2,59,0,1,1630082114,2,1.0,30.0,1.0,-9.0,4.0,1246935 -3095339,1630204198,1,16,0,1,1630082115,1,6.0,-9.0,-9.0,-9.0,-9.0,1246936 -3095340,1630204199,1,16,0,1,1630082116,1,6.0,-9.0,-9.0,-9.0,-9.0,1246937 -3095341,1630204200,1,16,0,1,1630082117,1,6.0,-9.0,-9.0,-9.0,-9.0,1246938 -3095342,1630204219,4,23,0,1,1630082118,2,6.0,-9.0,-9.0,16.0,4.0,1246939 -3095343,1630204220,4,23,0,1,1630082119,2,6.0,-9.0,-9.0,16.0,4.0,1246940 -3095344,1630203816,1,24,0,1,1630082120,1,6.0,-9.0,-9.0,16.0,4.0,1246941 -3095345,1630203817,1,24,0,1,1630082121,1,6.0,-9.0,-9.0,16.0,4.0,1246942 -3095346,1630203720,1,24,0,1,1630082122,1,3.0,40.0,5.0,16.0,4.0,1246943 -3095347,1630203719,1,26,13,2,1630082122,2,3.0,25.0,4.0,-9.0,4.0,1246943 -3095348,1630204077,2,20,0,1,1630082123,1,1.0,15.0,6.0,15.0,4.0,1246944 -3095349,1630203669,1,23,0,1,1630082124,2,2.0,40.0,6.0,16.0,4.0,1246945 -3095350,1630203670,1,25,15,2,1630082124,2,6.0,36.0,6.0,16.0,4.0,1246945 -3095351,1630203714,1,33,0,1,1630082125,2,1.0,50.0,1.0,-9.0,4.0,1246946 -3095352,1630203715,1,33,0,1,1630082126,2,1.0,50.0,1.0,-9.0,4.0,1246947 -3095353,1630203650,1,27,0,1,1630082127,1,1.0,50.0,1.0,-9.0,4.0,1246948 -3095354,1630203649,3,28,1,2,1630082127,2,6.0,45.0,4.0,-9.0,4.0,1246948 -3095355,1630203687,1,37,0,1,1630082128,1,1.0,50.0,3.0,-9.0,4.0,1246949 -3095356,1630203686,1,39,13,2,1630082128,2,1.0,45.0,3.0,-9.0,4.0,1246949 -3095357,1630203627,1,25,0,1,1630082129,2,1.0,45.0,1.0,16.0,4.0,1246950 -3095358,1630203629,4,25,1,2,1630082129,1,1.0,40.0,1.0,16.0,4.0,1246950 -3095359,1630203628,1,25,0,1,1630082130,2,1.0,45.0,1.0,16.0,4.0,1246951 -3095360,1630203630,4,25,1,2,1630082130,1,1.0,40.0,1.0,16.0,4.0,1246951 -3095361,1630204122,2,38,0,1,1630082131,1,1.0,55.0,1.0,-9.0,4.0,1246952 -3095362,1630203832,1,29,0,1,1630082132,1,1.0,45.0,1.0,-9.0,4.0,1246953 -3095363,1630203679,1,33,0,1,1630082133,2,1.0,65.0,1.0,-9.0,4.0,1246954 -3095364,1630203898,1,30,0,1,1630082134,1,1.0,40.0,4.0,-9.0,4.0,1246955 -3095365,1630203680,1,33,0,1,1630082135,2,1.0,65.0,1.0,-9.0,4.0,1246956 -3095366,1630204230,4,27,0,1,1630082136,1,1.0,40.0,1.0,-9.0,4.0,1246957 -3095367,1630204226,4,44,0,1,1630082137,1,1.0,55.0,1.0,-9.0,4.0,1246958 -3095368,1630204231,4,27,0,1,1630082138,1,1.0,40.0,1.0,-9.0,4.0,1246959 -3095369,1630204037,2,38,0,1,1630082139,2,1.0,45.0,1.0,-9.0,4.0,1246960 -3095370,1630203988,2,32,0,1,1630082140,2,1.0,40.0,1.0,-9.0,4.0,1246961 -3095371,1630203956,2,26,0,1,1630082141,2,1.0,40.0,1.0,-9.0,4.0,1246962 -3095372,1630204191,4,37,0,1,1630082142,2,1.0,30.0,1.0,-9.0,4.0,1246963 -3095373,1630203839,1,29,0,1,1630082143,1,1.0,50.0,1.0,-9.0,4.0,1246964 -3095374,1630203850,1,34,0,1,1630082144,1,1.0,40.0,1.0,-9.0,4.0,1246965 -3095375,1630203721,1,33,0,1,1630082145,2,1.0,60.0,1.0,15.0,4.0,1246966 -3095376,1630203914,1,26,0,1,1630082146,1,1.0,50.0,1.0,-9.0,4.0,1246967 -3095377,1630203933,1,27,0,1,1630082147,1,1.0,40.0,1.0,-9.0,4.0,1246968 -3095378,1630203915,1,26,0,1,1630082148,1,1.0,50.0,1.0,-9.0,4.0,1246969 -3095379,1630203695,1,26,0,1,1630082149,2,1.0,40.0,1.0,-9.0,4.0,1246970 -3095380,1630203840,1,29,0,1,1630082150,1,1.0,40.0,1.0,-9.0,2.0,1246971 -3095381,1630203927,3,30,0,1,1630082151,1,1.0,45.0,1.0,-9.0,4.0,1246972 -3095382,1630203928,3,30,0,1,1630082152,1,1.0,45.0,1.0,-9.0,4.0,1246973 -3095383,1630204227,4,25,0,1,1630082153,1,1.0,70.0,5.0,-9.0,2.0,1246974 -3095384,1630204091,2,29,0,1,1630082154,1,1.0,40.0,1.0,-9.0,4.0,1246975 -3095385,1630204078,2,31,0,1,1630082155,1,1.0,40.0,1.0,-9.0,4.0,1246976 -3095386,1630204036,2,36,0,1,1630082156,2,1.0,40.0,1.0,-9.0,4.0,1246977 -3095387,1630203873,1,27,0,1,1630082157,1,1.0,48.0,1.0,-9.0,4.0,1246978 -3095388,1630203864,1,25,0,1,1630082158,1,1.0,40.0,1.0,-9.0,4.0,1246979 -3095389,1630203881,1,27,0,1,1630082159,1,1.0,40.0,1.0,-9.0,4.0,1246980 -3095390,1630203882,1,27,0,1,1630082160,1,1.0,40.0,1.0,-9.0,4.0,1246981 -3095391,1630203700,1,32,0,1,1630082161,2,1.0,50.0,1.0,-9.0,4.0,1246982 -3095392,1630203814,1,26,0,1,1630082162,1,1.0,40.0,3.0,-9.0,4.0,1246983 -3095393,1630203865,1,25,0,1,1630082163,1,1.0,40.0,1.0,-9.0,4.0,1246984 -3095394,1630203701,1,32,0,1,1630082164,2,1.0,50.0,1.0,-9.0,4.0,1246985 -3095395,1630203697,1,28,0,1,1630082165,2,1.0,40.0,1.0,-9.0,4.0,1246986 -3095396,1630203702,1,32,0,1,1630082166,2,1.0,50.0,1.0,-9.0,4.0,1246987 -3095397,1630203866,1,25,0,1,1630082167,1,1.0,40.0,1.0,-9.0,4.0,1246988 -3095398,1630203874,1,40,0,1,1630082168,1,1.0,43.0,1.0,-9.0,4.0,1246989 -3095399,1630203837,1,39,0,1,1630082169,1,1.0,40.0,1.0,-9.0,4.0,1246990 -3095400,1630203724,1,25,0,1,1630082170,1,1.0,45.0,1.0,-9.0,4.0,1246991 -3095401,1630203723,1,24,13,2,1630082170,2,1.0,40.0,1.0,-9.0,4.0,1246991 -3095402,1630203606,1,34,0,1,1630082171,2,1.0,65.0,1.0,-9.0,4.0,1246992 -3095403,1630203607,1,42,13,2,1630082171,1,1.0,43.0,1.0,-9.0,4.0,1246992 -3095404,1630203745,1,28,0,1,1630082172,2,1.0,55.0,1.0,-9.0,4.0,1246993 -3095405,1630203746,1,28,1,2,1630082172,1,1.0,40.0,1.0,-9.0,4.0,1246993 -3095406,1630204079,2,26,0,1,1630082173,1,6.0,-9.0,-9.0,-9.0,4.0,1246994 -3095407,1630204126,2,39,0,1,1630082174,1,6.0,-9.0,-9.0,-9.0,4.0,1246995 -3095408,1630204075,2,44,0,1,1630082175,1,6.0,-9.0,-9.0,-9.0,4.0,1246996 -3095409,1630204136,2,39,0,1,1630082176,1,6.0,-9.0,-9.0,-9.0,4.0,1246997 -3095410,1630204148,2,42,0,1,1630082177,1,6.0,-9.0,-9.0,-9.0,4.0,1246998 -3095411,1630203594,1,27,0,1,1630082178,2,3.0,-9.0,-9.0,-9.0,4.0,1246999 -3095412,1630203815,1,39,0,1,1630082179,1,6.0,8.0,6.0,16.0,4.0,1247000 -3095413,1630204127,2,29,0,1,1630082180,1,6.0,-9.0,-9.0,16.0,3.0,1247001 -3095414,1630204050,2,42,0,1,1630082181,2,6.0,-9.0,-9.0,-9.0,4.0,1247002 -3095415,1630203820,1,29,0,1,1630082182,1,6.0,-9.0,-9.0,15.0,4.0,1247003 -3095416,1630203821,1,29,0,1,1630082183,1,6.0,-9.0,-9.0,15.0,4.0,1247004 -3095417,1630204089,2,41,0,1,1630082184,1,1.0,40.0,1.0,-9.0,4.0,1247005 -3095418,1630203696,1,25,0,1,1630082185,2,1.0,30.0,3.0,-9.0,4.0,1247006 -3095419,1630203709,1,44,0,1,1630082186,2,1.0,40.0,1.0,-9.0,4.0,1247007 -3095420,1630203710,1,44,0,1,1630082187,2,1.0,40.0,1.0,-9.0,4.0,1247008 -3095421,1630203752,1,26,0,1,1630082188,2,1.0,65.0,2.0,-9.0,4.0,1247009 -3095422,1630204234,4,31,0,1,1630082189,1,1.0,17.0,1.0,16.0,4.0,1247010 -3095423,1630204225,4,29,0,1,1630082190,1,1.0,20.0,1.0,16.0,4.0,1247011 -3095424,1630204111,2,33,0,1,1630082191,1,1.0,10.0,6.0,-9.0,4.0,1247012 -3095425,1630203891,1,27,0,1,1630082192,1,1.0,40.0,1.0,-9.0,4.0,1247013 -3095426,1630203648,1,26,0,1,1630082193,2,1.0,40.0,5.0,-9.0,4.0,1247014 -3095427,1630203688,1,31,0,1,1630082194,2,1.0,50.0,1.0,-9.0,4.0,1247015 -3095428,1630203892,1,27,0,1,1630082195,1,1.0,40.0,1.0,-9.0,4.0,1247016 -3095429,1630203662,1,28,0,1,1630082196,2,1.0,50.0,1.0,16.0,4.0,1247017 -3095430,1630203738,1,25,0,1,1630082197,2,1.0,40.0,4.0,-9.0,4.0,1247018 -3095431,1630203893,1,27,0,1,1630082198,1,1.0,40.0,1.0,-9.0,4.0,1247019 -3095432,1630204106,2,60,0,1,1630082199,1,1.0,40.0,1.0,-9.0,4.0,1247020 -3095433,1630203925,1,50,0,1,1630082200,1,1.0,60.0,1.0,-9.0,4.0,1247021 -3095434,1630203931,1,57,0,1,1630082201,1,1.0,45.0,2.0,-9.0,4.0,1247022 -3095435,1630203935,1,59,0,1,1630082202,1,1.0,50.0,1.0,-9.0,4.0,1247023 -3095436,1630203936,1,59,0,1,1630082203,1,1.0,50.0,1.0,-9.0,4.0,1247024 -3095437,1630203747,1,51,0,1,1630082204,2,1.0,40.0,1.0,16.0,4.0,1247025 -3095438,1630203748,1,51,0,1,1630082205,2,1.0,40.0,1.0,16.0,4.0,1247026 -3095439,1630203932,1,57,0,1,1630082206,1,1.0,45.0,2.0,-9.0,4.0,1247027 -3095440,1630203632,1,59,0,1,1630082207,2,6.0,-9.0,-9.0,-9.0,4.0,1247028 -3095441,1630203974,2,56,0,1,1630082208,2,1.0,40.0,1.0,-9.0,4.0,1247029 -3095442,1630203958,2,55,0,1,1630082209,2,1.0,40.0,1.0,-9.0,4.0,1247030 -3095443,1630203962,2,60,0,1,1630082210,2,1.0,40.0,1.0,-9.0,4.0,1247031 -3095444,1630203959,2,55,0,1,1630082211,2,1.0,40.0,1.0,-9.0,4.0,1247032 -3095445,1630203934,1,64,0,1,1630082212,1,1.0,53.0,1.0,-9.0,4.0,1247033 -3095446,1630203835,1,52,0,1,1630082213,1,1.0,40.0,1.0,-9.0,4.0,1247034 -3095447,1630203846,1,61,0,1,1630082214,1,1.0,50.0,3.0,-9.0,4.0,1247035 -3095448,1630204232,4,45,0,1,1630082215,1,1.0,36.0,1.0,-9.0,4.0,1247036 -3095449,1630204233,4,45,0,1,1630082216,1,1.0,36.0,1.0,-9.0,4.0,1247037 -3095450,1630204096,2,62,0,1,1630082217,1,1.0,50.0,1.0,-9.0,2.0,1247038 -3095451,1630203761,1,48,0,1,1630082218,2,1.0,50.0,1.0,-9.0,4.0,1247039 -3095452,1630203602,1,57,0,1,1630082219,2,1.0,50.0,1.0,-9.0,4.0,1247040 -3095453,1630203667,1,55,0,1,1630082220,2,1.0,50.0,1.0,-9.0,4.0,1247041 -3095454,1630203777,1,63,0,1,1630082221,1,1.0,92.0,1.0,-9.0,4.0,1247042 -3095455,1630204020,2,62,0,1,1630082222,2,6.0,-9.0,-9.0,-9.0,4.0,1247043 -3095456,1630204041,2,63,0,1,1630082223,2,6.0,-9.0,-9.0,-9.0,4.0,1247044 -3095457,1630203951,2,57,0,1,1630082224,2,6.0,-9.0,-9.0,-9.0,4.0,1247045 -3095458,1630204065,2,63,0,1,1630082225,2,6.0,-9.0,-9.0,-9.0,4.0,1247046 -3095459,1630204012,2,61,0,1,1630082226,2,6.0,-9.0,-9.0,-9.0,4.0,1247047 -3095460,1630204042,2,63,0,1,1630082227,2,6.0,-9.0,-9.0,-9.0,4.0,1247048 -3095461,1630204080,2,54,0,1,1630082228,1,3.0,-9.0,-9.0,-9.0,4.0,1247049 -3095462,1630203963,2,57,0,1,1630082229,2,6.0,-9.0,-9.0,-9.0,4.0,1247050 -3095463,1630204107,2,63,0,1,1630082230,1,6.0,-9.0,-9.0,-9.0,4.0,1247051 -3095464,1630204109,2,51,0,1,1630082231,1,3.0,-9.0,-9.0,-9.0,4.0,1247052 -3095465,1630204094,2,52,0,1,1630082232,1,6.0,-9.0,-9.0,-9.0,2.0,1247053 -3095466,1630204021,2,60,0,1,1630082233,2,6.0,-9.0,-9.0,-9.0,4.0,1247054 -3095467,1630204060,2,50,0,1,1630082234,2,3.0,-9.0,-9.0,-9.0,4.0,1247055 -3095468,1630204004,2,59,0,1,1630082235,2,3.0,-9.0,-9.0,-9.0,4.0,1247056 -3095469,1630204051,2,58,0,1,1630082236,2,6.0,-9.0,-9.0,-9.0,4.0,1247057 -3095470,1630204144,2,59,0,1,1630082237,1,6.0,-9.0,-9.0,-9.0,4.0,1247058 -3095471,1630204088,2,47,0,1,1630082238,1,3.0,-9.0,-9.0,-9.0,2.0,1247059 -3095472,1630204110,2,62,0,1,1630082239,1,6.0,-9.0,-9.0,-9.0,4.0,1247060 -3095473,1630203973,2,53,0,1,1630082240,2,6.0,-9.0,-9.0,-9.0,4.0,1247061 -3095474,1630204071,2,53,0,1,1630082241,1,6.0,-9.0,-9.0,-9.0,4.0,1247062 -3095475,1630204147,2,57,0,1,1630082242,1,6.0,-9.0,-9.0,-9.0,4.0,1247063 -3095476,1630204095,2,58,0,1,1630082243,1,6.0,-9.0,-9.0,-9.0,4.0,1247064 -3095477,1630204140,2,57,0,1,1630082244,1,6.0,-9.0,-9.0,-9.0,4.0,1247065 -3095478,1630204072,2,55,0,1,1630082245,1,6.0,-9.0,-9.0,-9.0,4.0,1247066 -3095479,1630204083,2,58,0,1,1630082246,1,6.0,-9.0,-9.0,-9.0,4.0,1247067 -3095480,1630204010,2,57,0,1,1630082247,2,6.0,-9.0,-9.0,-9.0,4.0,1247068 -3095481,1630203999,2,59,0,1,1630082248,2,6.0,-9.0,-9.0,-9.0,4.0,1247069 -3095482,1630204193,4,46,0,1,1630082249,2,6.0,10.0,6.0,15.0,4.0,1247070 -3095483,1630203829,1,64,0,1,1630082250,1,6.0,-9.0,-9.0,-9.0,2.0,1247071 -3095484,1630203726,1,62,0,1,1630082251,2,6.0,-9.0,-9.0,-9.0,4.0,1247072 -3095485,1630203830,1,64,0,1,1630082252,1,6.0,-9.0,-9.0,-9.0,2.0,1247073 -3095486,1630203592,1,51,0,1,1630082253,2,6.0,-9.0,-9.0,-9.0,2.0,1247074 -3095487,1630203727,1,62,0,1,1630082254,2,6.0,-9.0,-9.0,-9.0,4.0,1247075 -3095488,1630203758,1,60,0,1,1630082255,2,6.0,-9.0,-9.0,-9.0,4.0,1247076 -3095489,1630203593,1,51,0,1,1630082256,2,6.0,-9.0,-9.0,-9.0,2.0,1247077 -3095490,1630203809,1,45,0,1,1630082257,1,6.0,-9.0,-9.0,-9.0,4.0,1247078 -3095491,1630204105,2,51,0,1,1630082258,1,6.0,40.0,6.0,-9.0,4.0,1247079 -3095492,1630203965,2,47,0,1,1630082259,2,6.0,-9.0,-9.0,15.0,4.0,1247080 -3095493,1630204016,2,63,0,1,1630082260,2,6.0,-9.0,-9.0,-9.0,4.0,1247081 -3095494,1630203603,1,60,0,1,1630082261,2,6.0,-9.0,-9.0,-9.0,4.0,1247082 -3095495,1630204086,2,61,0,1,1630082262,1,6.0,-9.0,-9.0,-9.0,2.0,1247083 -3095496,1630204087,2,26,10,2,1630082262,1,3.0,-9.0,-9.0,-9.0,4.0,1247083 -3095497,1630204073,2,60,0,1,1630082263,1,6.0,-9.0,-9.0,-9.0,4.0,1247084 -3095498,1630204074,2,45,15,2,1630082263,1,6.0,-9.0,-9.0,-9.0,4.0,1247084 -3095499,1630204014,2,55,0,1,1630082264,2,1.0,40.0,1.0,-9.0,4.0,1247085 -3095500,1630204119,2,48,0,1,1630082265,1,1.0,36.0,6.0,-9.0,4.0,1247086 -3095501,1630204084,2,63,0,1,1630082266,1,1.0,25.0,1.0,-9.0,4.0,1247087 -3095502,1630204101,2,47,0,1,1630082267,1,1.0,32.0,1.0,-9.0,4.0,1247088 -3095503,1630204055,2,61,0,1,1630082268,2,1.0,35.0,1.0,-9.0,4.0,1247089 -3095504,1630204133,2,45,0,1,1630082269,1,1.0,48.0,1.0,-9.0,4.0,1247090 -3095505,1630204027,2,54,0,1,1630082270,2,1.0,40.0,5.0,-9.0,4.0,1247091 -3095506,1630203787,1,56,0,1,1630082271,1,1.0,40.0,1.0,-9.0,2.0,1247092 -3095507,1630203616,1,53,0,1,1630082272,2,1.0,50.0,1.0,-9.0,4.0,1247093 -3095508,1630204173,2,77,0,1,1630082273,1,6.0,-9.0,-9.0,-9.0,2.0,1247094 -3095509,1630204153,2,80,0,1,1630082274,1,6.0,-9.0,-9.0,-9.0,4.0,1247095 -3095510,1630204154,2,80,0,1,1630082275,1,6.0,-9.0,-9.0,-9.0,4.0,1247096 -3095511,1630204214,1,68,0,1,1630082276,1,1.0,60.0,1.0,-9.0,4.0,1247097 -3095512,1630204205,1,69,0,1,1630082277,1,1.0,60.0,1.0,-9.0,4.0,1247098 -3095513,1630204208,1,67,0,1,1630082278,1,1.0,40.0,1.0,-9.0,4.0,1247099 -3095514,1630204209,1,67,0,1,1630082279,1,1.0,40.0,1.0,-9.0,4.0,1247100 -3095515,1630204210,1,67,0,1,1630082280,1,1.0,40.0,1.0,-9.0,4.0,1247101 -3095516,1630204211,1,67,0,1,1630082281,1,1.0,40.0,1.0,-9.0,4.0,1247102 -3095517,1630204215,1,68,0,1,1630082282,1,1.0,60.0,1.0,-9.0,4.0,1247103 -3095518,1630204212,1,67,0,1,1630082283,1,1.0,40.0,1.0,-9.0,4.0,1247104 -3095519,1630204216,1,68,0,1,1630082284,1,1.0,60.0,1.0,-9.0,4.0,1247105 -3095520,1630204206,1,69,0,1,1630082285,1,1.0,60.0,1.0,-9.0,4.0,1247106 -3095521,1630203572,1,65,0,1,1630082286,2,6.0,-9.0,-9.0,-9.0,4.0,1247107 -3095522,1630203574,1,77,1,2,1630082286,1,1.0,50.0,1.0,-9.0,4.0,1247107 -3095523,1630203517,2,75,0,1,1630082287,2,6.0,-9.0,-9.0,-9.0,4.0,1247108 -3095524,1630203546,2,90,0,1,1630082288,2,6.0,-9.0,-9.0,-9.0,4.0,1247109 -3095525,1630203518,2,75,0,1,1630082289,2,6.0,-9.0,-9.0,-9.0,4.0,1247110 -3095526,1630203552,2,85,0,1,1630082290,2,6.0,-9.0,-9.0,-9.0,4.0,1247111 -3095527,1630203502,2,68,0,1,1630082291,2,6.0,-9.0,-9.0,-9.0,4.0,1247112 -3095528,1630203542,2,76,0,1,1630082292,2,6.0,-9.0,-9.0,-9.0,4.0,1247113 -3095529,1630204204,1,66,0,1,1630082293,1,6.0,-9.0,-9.0,-9.0,4.0,1247114 -3095530,1630204213,1,66,0,1,1630082294,1,6.0,-9.0,-9.0,-9.0,2.0,1247115 -3095531,1630203845,1,87,0,1,1630082295,1,6.0,-9.0,-9.0,-9.0,2.0,1247116 -3095532,1630203844,1,51,12,2,1630082295,1,6.0,-9.0,-9.0,-9.0,4.0,1247116 -3095533,1630204170,2,74,0,1,1630082296,1,6.0,-9.0,-9.0,-9.0,2.0,1247117 -3095534,1630203514,2,65,0,1,1630082297,2,6.0,30.0,5.0,-9.0,4.0,1247118 -3095535,1630204168,2,66,0,1,1630082298,1,1.0,45.0,1.0,-9.0,4.0,1247119 -3095536,1630203543,2,67,0,1,1630082299,2,6.0,-9.0,-9.0,-9.0,4.0,1247120 -3095537,1630203494,2,73,0,1,1630082300,2,6.0,-9.0,-9.0,-9.0,4.0,1247121 -3095538,1630203503,2,86,0,1,1630082301,2,6.0,-9.0,-9.0,-9.0,4.0,1247122 -3095539,1630203501,2,70,0,1,1630082302,2,6.0,-9.0,-9.0,-9.0,4.0,1247123 -3095540,1630203521,2,69,0,1,1630082303,2,6.0,-9.0,-9.0,-9.0,4.0,1247124 -3095541,1630204157,2,71,0,1,1630082304,1,6.0,-9.0,-9.0,-9.0,4.0,1247125 -3095542,1630204163,2,79,0,1,1630082305,1,6.0,-9.0,-9.0,-9.0,2.0,1247126 -3095543,1630203528,2,66,0,1,1630082306,2,6.0,-9.0,-9.0,-9.0,4.0,1247127 -3095544,1630204164,2,94,0,1,1630082307,1,6.0,-9.0,-9.0,-9.0,4.0,1247128 -3095545,1630203526,2,74,0,1,1630082308,2,6.0,-9.0,-9.0,-9.0,4.0,1247129 -3095546,1630203548,2,70,0,1,1630082309,2,6.0,-9.0,-9.0,-9.0,4.0,1247130 -3095547,1630203534,2,83,0,1,1630082310,2,6.0,-9.0,-9.0,-9.0,4.0,1247131 -3095548,1630203544,2,69,0,1,1630082311,2,6.0,-9.0,-9.0,-9.0,4.0,1247132 -3095549,1630203510,2,85,0,1,1630082312,2,6.0,-9.0,-9.0,-9.0,4.0,1247133 -3095550,1630203523,2,67,0,1,1630082313,2,6.0,-9.0,-9.0,-9.0,4.0,1247134 -3095551,1630203524,2,67,0,1,1630082314,2,6.0,-9.0,-9.0,-9.0,4.0,1247135 -3095552,1630203527,2,74,0,1,1630082315,2,6.0,-9.0,-9.0,-9.0,4.0,1247136 -3095553,1630203506,2,71,0,1,1630082316,2,6.0,-9.0,-9.0,-9.0,4.0,1247137 -3095554,1630203496,2,70,0,1,1630082317,2,6.0,-9.0,-9.0,-9.0,4.0,1247138 -3095555,1630203508,2,70,0,1,1630082318,2,6.0,-9.0,-9.0,-9.0,4.0,1247139 -3095556,1630203536,2,78,0,1,1630082319,2,6.0,-9.0,-9.0,-9.0,4.0,1247140 -3095557,1630203516,2,85,0,1,1630082320,2,6.0,-9.0,-9.0,-9.0,4.0,1247141 -3095558,1630203531,2,68,0,1,1630082321,2,6.0,16.0,6.0,-9.0,3.0,1247142 -3095559,1630204161,2,66,0,1,1630082322,1,6.0,-9.0,-9.0,-9.0,4.0,1247143 -3095560,1630204165,2,72,0,1,1630082323,1,3.0,-9.0,-9.0,15.0,2.0,1247144 -3095561,1630203513,2,68,0,1,1630082324,2,6.0,-9.0,-9.0,-9.0,4.0,1247145 -3095562,1630203535,2,72,0,1,1630082325,2,6.0,-9.0,-9.0,-9.0,4.0,1247146 -3095563,1630204167,2,75,0,1,1630082326,1,6.0,-9.0,-9.0,-9.0,4.0,1247147 -3095564,1630204159,2,66,0,1,1630082327,1,6.0,-9.0,-9.0,-9.0,2.0,1247148 -3095565,1630204160,2,66,0,1,1630082328,1,6.0,-9.0,-9.0,-9.0,2.0,1247149 -3095566,1630203509,2,70,0,1,1630082329,2,6.0,-9.0,-9.0,-9.0,4.0,1247150 -3095567,1630203505,2,68,0,1,1630082330,2,6.0,-9.0,-9.0,-9.0,4.0,1247151 -3095568,1630203549,2,70,0,1,1630082331,2,6.0,-9.0,-9.0,-9.0,4.0,1247152 -3095569,1630203537,2,67,0,1,1630082332,2,6.0,-9.0,-9.0,-9.0,4.0,1247153 -3095570,1630204166,2,75,0,1,1630082333,1,6.0,-9.0,-9.0,-9.0,4.0,1247154 -3095571,1630204172,2,76,0,1,1630082334,1,6.0,-9.0,-9.0,-9.0,2.0,1247155 -3095572,1630203522,2,66,0,1,1630082335,2,6.0,-9.0,-9.0,-9.0,4.0,1247156 -3095573,1630203545,2,78,0,1,1630082336,2,6.0,-9.0,-9.0,-9.0,4.0,1247157 -3095574,1630203507,2,71,0,1,1630082337,2,6.0,-9.0,-9.0,-9.0,4.0,1247158 -3095575,1630203530,2,86,0,1,1630082338,2,6.0,-9.0,-9.0,-9.0,4.0,1247159 -3095576,1630204151,2,71,0,1,1630082339,1,6.0,-9.0,-9.0,-9.0,4.0,1247160 -3095577,1630204149,4,70,0,1,1630082340,2,6.0,-9.0,-9.0,-9.0,4.0,1247161 -3095578,1630203577,1,67,0,1,1630082341,2,6.0,-9.0,-9.0,-9.0,4.0,1247162 -3095579,1630204202,1,74,0,1,1630082342,1,6.0,-9.0,-9.0,-9.0,3.0,1247163 -3095580,1630203561,1,69,0,1,1630082343,2,6.0,-9.0,-9.0,-9.0,4.0,1247164 -3095581,1630203582,1,76,0,1,1630082344,2,6.0,-9.0,-9.0,-9.0,4.0,1247165 -3095582,1630203583,1,76,0,1,1630082345,2,6.0,-9.0,-9.0,-9.0,4.0,1247166 -3095583,1630203566,1,76,0,1,1630082346,2,6.0,-9.0,-9.0,-9.0,4.0,1247167 -3095584,1630203567,1,76,0,1,1630082347,2,6.0,-9.0,-9.0,-9.0,4.0,1247168 -3095585,1630203568,1,76,0,1,1630082348,2,6.0,-9.0,-9.0,-9.0,4.0,1247169 -3095586,1630203584,1,76,0,1,1630082349,2,6.0,-9.0,-9.0,-9.0,4.0,1247170 -3095587,1630203581,1,67,0,1,1630082350,2,6.0,-9.0,-9.0,-9.0,4.0,1247171 -3095588,1630203585,1,76,0,1,1630082351,2,6.0,-9.0,-9.0,-9.0,4.0,1247172 -3095589,1630203562,1,69,0,1,1630082352,2,6.0,-9.0,-9.0,-9.0,4.0,1247173 -3095590,1630203563,1,69,0,1,1630082353,2,6.0,-9.0,-9.0,-9.0,4.0,1247174 -3095591,1630203558,3,69,0,1,1630082354,2,6.0,-9.0,-9.0,-9.0,4.0,1247175 -3095592,1630204203,3,67,0,1,1630082355,1,6.0,-9.0,-9.0,-9.0,2.0,1247176 -3095593,1630204152,2,86,0,1,1630082356,1,6.0,-9.0,-9.0,-9.0,2.0,1247177 -3095594,1630203500,2,66,0,1,1630082357,2,6.0,-9.0,-9.0,-9.0,4.0,1247178 -3095595,1630203519,2,65,0,1,1630082358,2,6.0,-9.0,-9.0,-9.0,4.0,1247179 -3095596,1630203529,2,69,0,1,1630082359,2,6.0,-9.0,-9.0,-9.0,4.0,1247180 -3095597,1630203555,2,66,0,1,1630082360,2,6.0,-9.0,-9.0,-9.0,4.0,1247181 -3095598,1630203512,2,77,0,1,1630082361,2,6.0,-9.0,-9.0,-9.0,4.0,1247182 -3095599,1630204158,2,83,0,1,1630082362,1,6.0,-9.0,-9.0,-9.0,2.0,1247183 -3095600,1630203504,2,71,0,1,1630082363,2,6.0,-9.0,-9.0,-9.0,4.0,1247184 -3095601,1630204171,2,94,0,1,1630082364,1,6.0,-9.0,-9.0,-9.0,2.0,1247185 -3095602,1630203569,1,69,0,1,1630082365,2,6.0,-9.0,-9.0,-9.0,4.0,1247186 -3095603,1630203550,2,66,0,1,1630082366,2,6.0,-9.0,-9.0,-9.0,4.0,1247187 -3095604,1630203551,2,21,10,2,1630082366,1,3.0,-9.0,-9.0,-9.0,4.0,1247187 -3095605,1630203538,2,72,0,1,1630082367,2,6.0,-9.0,-9.0,-9.0,4.0,1247188 -3095606,1630203539,2,52,2,2,1630082367,1,6.0,-9.0,-9.0,-9.0,4.0,1247188 -3095607,1630203875,1,23,0,1,1630082368,1,1.0,40.0,1.0,-9.0,4.0,1247189 -3095608,1630203834,1,24,0,1,1630082369,1,1.0,55.0,1.0,-9.0,4.0,1247190 -3095609,1630203663,1,24,0,1,1630082370,2,1.0,50.0,1.0,-9.0,4.0,1247191 -3095610,1630203664,1,24,0,1,1630082371,2,1.0,50.0,1.0,-9.0,4.0,1247192 -3095611,1630203689,1,23,0,1,1630082372,2,1.0,45.0,1.0,-9.0,4.0,1247193 -3095612,1630203690,1,23,12,2,1630082372,2,1.0,24.0,1.0,-9.0,4.0,1247193 -3095613,1630204076,2,23,0,1,1630082373,1,6.0,-9.0,-9.0,-9.0,4.0,1247194 -3095614,1630203948,1,22,0,1,1630082374,1,6.0,28.0,4.0,16.0,4.0,1247195 -3095615,1630203843,1,24,0,1,1630082375,1,3.0,20.0,5.0,-9.0,4.0,1247196 -3095616,1630203778,1,24,0,1,1630082376,1,6.0,-9.0,-9.0,15.0,4.0,1247197 -3095617,1630203842,1,24,0,1,1630082377,1,6.0,24.0,3.0,16.0,4.0,1247198 -3095618,1630203917,1,20,0,1,1630082378,1,6.0,35.0,5.0,15.0,4.0,1247199 -3095619,1630203930,1,22,0,1,1630082379,1,1.0,15.0,1.0,15.0,4.0,1247200 -3095620,1630203737,1,21,0,1,1630082380,2,1.0,25.0,1.0,-9.0,4.0,1247201 -3095621,1630203808,1,22,0,1,1630082381,1,1.0,40.0,3.0,-9.0,4.0,1247202 -3095622,1630203634,1,49,0,1,1630082382,2,6.0,-9.0,-9.0,-9.0,4.0,1247203 -3095623,1630203622,1,58,0,1,1630082383,2,1.0,40.0,1.0,-9.0,4.0,1247204 -3095624,1630203978,2,64,0,1,1630082384,2,6.0,-9.0,-9.0,-9.0,4.0,1247205 -3095625,1630203694,1,37,0,1,1630082385,1,1.0,45.0,1.0,-9.0,4.0,1247206 -3095626,1630203693,1,25,13,2,1630082385,2,1.0,40.0,1.0,-9.0,4.0,1247206 -3095627,1630203763,1,26,0,1,1630082386,2,6.0,-9.0,-9.0,16.0,4.0,1247207 -3095628,1630203615,1,26,0,1,1630082387,2,3.0,14.0,3.0,-9.0,4.0,1247208 -3095629,1630203495,2,75,0,1,1630082388,2,1.0,52.0,1.0,-9.0,4.0,1247209 -3095630,1630203731,1,31,0,1,1630082389,2,1.0,50.0,1.0,-9.0,4.0,1247210 -3095631,1630203968,2,63,0,1,1630082390,2,6.0,30.0,5.0,-9.0,4.0,1247211 -3095632,1630203755,1,54,0,1,1630082391,2,1.0,40.0,1.0,-9.0,4.0,1247212 -3095633,1630203681,1,33,0,1,1630082392,2,1.0,65.0,1.0,-9.0,4.0,1247213 -3095634,1630203659,3,49,0,1,1630082393,2,1.0,45.0,3.0,-9.0,4.0,1247214 -3095635,1630203578,1,67,0,1,1630082394,2,6.0,-9.0,-9.0,-9.0,4.0,1247215 -3095636,1630204035,2,24,0,1,1630082395,2,1.0,35.0,1.0,-9.0,4.0,1247216 -3095637,1630203869,1,26,0,1,1630082396,1,3.0,40.0,2.0,-9.0,4.0,1247217 -3095638,1630203870,1,22,12,2,1630082396,1,1.0,40.0,5.0,-9.0,4.0,1247217 -3095639,1630203691,1,63,0,1,1630082397,2,6.0,-9.0,-9.0,-9.0,4.0,1247218 -3095640,1630203692,2,82,1,2,1630082397,1,6.0,-9.0,-9.0,-9.0,2.0,1247218 -3095641,1630204059,2,40,0,1,1630082398,2,1.0,40.0,1.0,-9.0,4.0,1247219 -3095642,1630204064,2,61,0,1,1630082399,2,1.0,40.0,1.0,-9.0,4.0,1247220 -3095643,1630204241,3,69,0,1,1630082400,1,1.0,40.0,1.0,-9.0,4.0,1247221 -3095644,1630203668,1,55,0,1,1630082401,2,1.0,50.0,1.0,-9.0,4.0,1247222 -3095645,1630203972,2,69,0,1,1630082402,1,6.0,-9.0,-9.0,-9.0,2.0,1247223 -3095646,1630203971,2,63,1,2,1630082402,2,6.0,-9.0,-9.0,-9.0,4.0,1247223 -3095647,1630203608,1,51,0,1,1630082403,2,1.0,40.0,1.0,-9.0,2.0,1247224 -3095648,1630204155,2,66,0,1,1630082404,1,1.0,35.0,1.0,-9.0,4.0,1247225 -3095649,1630203838,1,39,0,1,1630082405,1,1.0,40.0,1.0,-9.0,4.0,1247226 -3095650,1630203591,1,62,0,1,1630082406,1,6.0,-9.0,-9.0,-9.0,2.0,1247227 -3095651,1630203589,1,59,1,2,1630082406,2,6.0,-9.0,-9.0,-9.0,4.0,1247227 -3095652,1630203590,1,26,2,3,1630082406,2,1.0,30.0,1.0,-9.0,4.0,1247227 -3095653,1630204013,2,61,0,1,1630082407,2,6.0,-9.0,-9.0,-9.0,4.0,1247228 -3095654,1630204085,2,64,0,1,1630082408,1,6.0,-9.0,-9.0,-9.0,2.0,1247229 -3095655,1630204002,2,62,0,1,1630082409,2,1.0,40.0,1.0,-9.0,4.0,1247230 -3095656,1630204063,2,43,0,1,1630082410,2,1.0,40.0,1.0,-9.0,4.0,1247231 -3095657,1630203699,1,54,0,1,1630082411,1,1.0,65.0,1.0,-9.0,4.0,1247232 -3095658,1630203698,1,45,1,2,1630082411,2,1.0,40.0,1.0,-9.0,4.0,1247232 -3095659,1630204015,2,48,0,1,1630082412,2,1.0,10.0,1.0,15.0,4.0,1247233 -3095660,1630203895,1,27,0,1,1630082413,1,1.0,40.0,1.0,-9.0,4.0,1247234 -3095661,1630203872,4,41,0,1,1630082414,2,1.0,40.0,1.0,-9.0,4.0,1247235 -3095662,1630203871,1,41,1,2,1630082414,1,1.0,40.0,5.0,-9.0,4.0,1247235 -3095663,1630203595,1,61,0,1,1630082415,2,3.0,-9.0,-9.0,-9.0,4.0,1247236 -3095664,1630203596,1,63,5,2,1630082415,1,6.0,-9.0,-9.0,-9.0,2.0,1247236 -3095665,1630203750,1,22,0,1,1630082416,2,1.0,20.0,4.0,15.0,4.0,1247237 -3095666,1630203751,1,22,12,2,1630082416,2,1.0,30.0,1.0,16.0,4.0,1247237 -3095667,1630203656,1,37,0,1,1630082417,1,1.0,33.0,1.0,-9.0,4.0,1247238 -3095668,1630203655,1,27,13,2,1630082417,2,6.0,40.0,5.0,-9.0,4.0,1247238 -3095669,1630203985,2,60,0,1,1630082418,1,1.0,84.0,1.0,-9.0,4.0,1247239 -3095670,1630203984,2,51,5,2,1630082418,2,4.0,50.0,1.0,-9.0,1.0,1247239 -3095671,1630204028,2,63,0,1,1630082419,2,1.0,40.0,1.0,-9.0,4.0,1247240 -3095672,1630204102,2,45,0,1,1630082420,1,1.0,36.0,1.0,-9.0,3.0,1247241 -3095673,1630203511,2,65,0,1,1630082421,2,6.0,-9.0,-9.0,-9.0,4.0,1247242 -3095674,1630204137,2,63,0,1,1630082422,1,6.0,-9.0,-9.0,-9.0,4.0,1247243 -3095675,1630203586,1,36,0,1,1630082423,2,1.0,40.0,1.0,-9.0,4.0,1247244 -3095676,1630203587,1,44,1,2,1630082423,1,1.0,40.0,1.0,-9.0,4.0,1247244 -3095677,1630203588,1,2,2,3,1630082423,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247244 -3095678,1630203967,2,24,0,1,1630082424,1,1.0,40.0,1.0,-9.0,4.0,1247245 -3095679,1630203966,2,24,12,2,1630082424,2,3.0,20.0,6.0,-9.0,4.0,1247245 -3095680,1630204099,2,62,0,1,1630082425,1,1.0,55.0,1.0,-9.0,4.0,1247246 -3095681,1630204100,2,22,2,2,1630082425,1,3.0,40.0,3.0,-9.0,4.0,1247246 -3095682,1630204129,2,53,0,1,1630082426,1,6.0,-9.0,-9.0,-9.0,2.0,1247247 -3095683,1630203772,3,37,0,1,1630082427,2,1.0,40.0,1.0,-9.0,4.0,1247248 -3095684,1630204097,2,47,0,1,1630082428,1,1.0,40.0,1.0,-9.0,2.0,1247249 -3095685,1630204056,2,35,0,1,1630082429,2,6.0,-9.0,-9.0,-9.0,4.0,1247250 -3095686,1630204057,2,9,2,2,1630082429,1,-9.0,-9.0,-9.0,6.0,-9.0,1247250 -3095687,1630203540,2,90,0,1,1630082430,2,6.0,-9.0,-9.0,-9.0,4.0,1247251 -3095688,1630203541,1,56,11,2,1630082430,1,6.0,-9.0,-9.0,-9.0,4.0,1247251 -3095689,1630203762,1,37,0,1,1630082431,2,6.0,-9.0,-9.0,-9.0,4.0,1247252 -3095690,1630203599,1,30,0,1,1630082432,2,3.0,40.0,2.0,-9.0,4.0,1247253 -3095691,1630203713,1,27,0,1,1630082433,2,6.0,37.0,5.0,16.0,4.0,1247254 -3095692,1630203576,1,82,0,1,1630082434,2,6.0,-9.0,-9.0,-9.0,4.0,1247255 -3095693,1630204033,2,34,0,1,1630082435,2,1.0,40.0,1.0,16.0,4.0,1247256 -3095694,1630204034,2,34,1,2,1630082435,1,1.0,60.0,1.0,-9.0,4.0,1247256 -3095695,1630204169,2,67,0,1,1630082436,1,1.0,50.0,1.0,-9.0,4.0,1247257 -3095696,1630204187,3,58,0,1,1630082437,1,1.0,35.0,3.0,-9.0,4.0,1247258 -3095697,1630203911,2,43,0,1,1630082438,1,6.0,-9.0,-9.0,-9.0,2.0,1247259 -3095698,1630203910,1,64,1,2,1630082438,1,1.0,32.0,1.0,-9.0,4.0,1247259 -3095699,1630204040,2,27,0,1,1630082439,2,1.0,35.0,1.0,-9.0,4.0,1247260 -3095700,1630203970,2,59,0,1,1630082440,2,1.0,20.0,4.0,-9.0,4.0,1247261 -3095701,1630204174,2,77,0,1,1630082441,1,6.0,-9.0,-9.0,-9.0,2.0,1247262 -3095702,1630203665,1,29,0,1,1630082442,2,1.0,45.0,1.0,-9.0,4.0,1247263 -3095703,1630203666,1,29,1,2,1630082442,1,6.0,45.0,6.0,16.0,4.0,1247263 -3095704,1630203621,1,60,0,1,1630082443,2,2.0,40.0,2.0,-9.0,4.0,1247264 -3095705,1630203952,2,37,0,1,1630082444,2,1.0,50.0,1.0,-9.0,4.0,1247265 -3095706,1630203953,2,0,2,2,1630082444,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247265 -3095707,1630204124,2,47,0,1,1630082445,1,3.0,40.0,6.0,-9.0,4.0,1247266 -3095708,1630204125,2,28,10,2,1630082445,1,3.0,30.0,6.0,-9.0,4.0,1247266 -3095709,1630203749,1,24,0,1,1630082446,2,6.0,-9.0,-9.0,16.0,4.0,1247267 -3095710,1630203647,1,77,0,1,1630082447,1,6.0,-9.0,-9.0,-9.0,4.0,1247268 -3095711,1630203646,1,55,15,2,1630082447,2,6.0,-9.0,-9.0,-9.0,4.0,1247268 -3095712,1630203836,1,24,0,1,1630082448,1,3.0,47.0,3.0,15.0,4.0,1247269 -3095713,1630204196,3,51,0,1,1630082449,2,6.0,-9.0,-9.0,-9.0,4.0,1247270 -3095714,1630203705,1,29,0,1,1630082450,1,1.0,45.0,1.0,-9.0,4.0,1247271 -3095715,1630203703,1,29,1,2,1630082450,2,1.0,40.0,1.0,-9.0,4.0,1247271 -3095716,1630203706,1,0,2,3,1630082450,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247271 -3095717,1630203704,1,22,5,4,1630082450,2,1.0,40.0,1.0,-9.0,4.0,1247271 -3095718,1630203957,2,34,0,1,1630082451,2,3.0,-9.0,-9.0,15.0,4.0,1247272 -3095719,1630204143,2,54,0,1,1630082452,1,6.0,-9.0,-9.0,15.0,4.0,1247273 -3095720,1630203901,1,64,0,1,1630082453,1,6.0,-9.0,-9.0,-9.0,4.0,1247274 -3095721,1630203929,3,30,0,1,1630082454,1,1.0,45.0,1.0,-9.0,4.0,1247275 -3095722,1630203912,1,26,0,1,1630082455,1,1.0,45.0,1.0,-9.0,4.0,1247276 -3095723,1630203913,4,25,13,2,1630082455,2,1.0,35.0,1.0,-9.0,4.0,1247276 -3095724,1630204229,4,63,0,1,1630082456,1,1.0,40.0,1.0,-9.0,4.0,1247277 -3095725,1630203631,3,61,0,1,1630082457,2,6.0,-9.0,-9.0,-9.0,4.0,1247278 -3095726,1630203525,2,84,0,1,1630082458,2,6.0,-9.0,-9.0,-9.0,4.0,1247279 -3095727,1630204162,2,72,0,1,1630082459,1,6.0,-9.0,-9.0,-9.0,4.0,1247280 -3095728,1630203818,1,24,0,1,1630082460,1,6.0,-9.0,-9.0,16.0,4.0,1247281 -3095729,1630203571,1,72,0,1,1630082461,2,1.0,15.0,3.0,-9.0,4.0,1247282 -3095730,1630203894,1,55,0,1,1630082462,1,1.0,50.0,1.0,-9.0,4.0,1247283 -3095731,1630203560,1,69,0,1,1630082463,2,6.0,-9.0,-9.0,-9.0,4.0,1247284 -3095732,1630203797,3,40,0,1,1630082464,1,1.0,55.0,1.0,-9.0,4.0,1247285 -3095733,1630203798,2,41,11,2,1630082464,2,1.0,50.0,1.0,16.0,4.0,1247285 -3095734,1630203799,2,5,11,3,1630082464,2,-9.0,-9.0,-9.0,1.0,-9.0,1247285 -3095735,1630204052,2,62,0,1,1630082465,2,1.0,50.0,1.0,-9.0,4.0,1247286 -3095736,1630203774,1,59,0,1,1630082466,1,1.0,50.0,1.0,-9.0,4.0,1247287 -3095737,1630203773,1,58,1,2,1630082466,2,1.0,50.0,1.0,-9.0,4.0,1247287 -3095738,1630204032,2,64,0,1,1630082467,1,1.0,32.0,1.0,-9.0,2.0,1247288 -3095739,1630204031,2,61,1,2,1630082467,2,6.0,-9.0,-9.0,-9.0,4.0,1247288 -3095740,1630203553,2,81,0,1,1630082468,2,6.0,-9.0,-9.0,-9.0,4.0,1247289 -3095741,1630203554,2,55,2,2,1630082468,2,6.0,-9.0,-9.0,-9.0,2.0,1247289 -3095742,1630204108,2,42,0,1,1630082469,1,6.0,-9.0,-9.0,-9.0,4.0,1247290 -3095743,1630204024,2,40,0,1,1630082470,2,1.0,60.0,3.0,-9.0,4.0,1247291 -3095744,1630204116,2,52,0,1,1630082471,1,6.0,-9.0,-9.0,-9.0,4.0,1247292 -3095745,1630204117,2,4,2,2,1630082471,2,-9.0,-9.0,-9.0,1.0,-9.0,1247292 -3095746,1630203565,1,86,0,1,1630082472,2,6.0,-9.0,-9.0,-9.0,4.0,1247293 -3095747,1630203776,1,42,0,1,1630082473,1,1.0,40.0,3.0,15.0,4.0,1247294 -3095748,1630203620,1,32,0,1,1630082474,1,1.0,40.0,1.0,-9.0,4.0,1247295 -3095749,1630203619,1,42,1,2,1630082474,2,1.0,40.0,1.0,-9.0,4.0,1247295 -3095750,1630203742,1,46,0,1,1630082475,1,1.0,40.0,1.0,-9.0,4.0,1247296 -3095751,1630203741,1,36,1,2,1630082475,2,1.0,16.0,1.0,-9.0,4.0,1247296 -3095752,1630203996,2,63,0,1,1630082476,1,6.0,20.0,6.0,-9.0,4.0,1247297 -3095753,1630203995,2,59,1,2,1630082476,2,6.0,-9.0,-9.0,-9.0,4.0,1247297 -3095754,1630203564,1,72,0,1,1630082477,2,1.0,45.0,1.0,-9.0,4.0,1247298 -3095755,1630203493,2,69,0,1,1630082478,2,6.0,-9.0,-9.0,-9.0,4.0,1247299 -3095756,1630203833,3,29,0,1,1630082479,1,1.0,43.0,1.0,-9.0,4.0,1247300 -3095757,1630203768,1,56,0,1,1630082480,2,1.0,50.0,1.0,-9.0,4.0,1247301 -3095758,1630204235,4,23,0,1,1630082481,1,1.0,80.0,1.0,-9.0,4.0,1247302 -3095759,1630203896,1,26,0,1,1630082482,1,1.0,20.0,2.0,16.0,4.0,1247303 -3095760,1630203897,1,33,13,2,1630082482,1,6.0,-9.0,-9.0,-9.0,4.0,1247303 -3095761,1630203863,1,40,0,1,1630082483,1,1.0,50.0,1.0,-9.0,4.0,1247304 -3095762,1630203867,1,28,0,1,1630082484,1,1.0,70.0,1.0,-9.0,4.0,1247305 -3095763,1630203868,1,25,12,2,1630082484,1,1.0,45.0,1.0,-9.0,2.0,1247305 -3095764,1630204058,2,63,0,1,1630082485,2,1.0,40.0,1.0,-9.0,4.0,1247306 -3095765,1630204019,2,47,0,1,1630082486,2,2.0,60.0,3.0,-9.0,4.0,1247307 -3095766,1630203604,1,24,0,1,1630082487,2,1.0,40.0,1.0,-9.0,4.0,1247308 -3095767,1630203605,1,26,1,2,1630082487,1,6.0,40.0,6.0,16.0,4.0,1247308 -3095768,1630203770,1,27,0,1,1630082488,1,1.0,45.0,1.0,-9.0,4.0,1247309 -3095769,1630203769,1,28,1,2,1630082488,2,1.0,52.0,4.0,-9.0,4.0,1247309 -3095770,1630203676,1,56,0,1,1630082489,2,1.0,35.0,1.0,-9.0,4.0,1247310 -3095771,1630203678,1,67,1,2,1630082489,1,6.0,-9.0,-9.0,-9.0,2.0,1247310 -3095772,1630204029,2,39,0,1,1630082490,2,1.0,40.0,1.0,-9.0,4.0,1247311 -3095773,1630204030,2,36,1,2,1630082490,1,3.0,40.0,6.0,-9.0,4.0,1247311 -3095774,1630203949,1,22,0,1,1630082491,1,6.0,28.0,4.0,16.0,4.0,1247312 -3095775,1630203954,2,59,0,1,1630082492,2,6.0,-9.0,-9.0,-9.0,4.0,1247313 -3095776,1630203955,2,22,2,2,1630082492,2,3.0,-9.0,-9.0,-9.0,4.0,1247313 -3095777,1630204139,2,56,0,1,1630082493,1,1.0,40.0,1.0,-9.0,4.0,1247314 -3095778,1630203991,2,58,0,1,1630082494,2,1.0,75.0,1.0,-9.0,4.0,1247315 -3095779,1630204061,2,56,0,1,1630082495,2,1.0,40.0,1.0,-9.0,4.0,1247316 -3095780,1630204062,2,27,2,2,1630082495,1,3.0,24.0,6.0,-9.0,4.0,1247316 -3095781,1630204194,4,46,0,1,1630082496,2,6.0,10.0,6.0,15.0,4.0,1247317 -3095782,1630203573,1,65,0,1,1630082497,2,6.0,-9.0,-9.0,-9.0,4.0,1247318 -3095783,1630203575,1,77,1,2,1630082497,1,1.0,50.0,1.0,-9.0,4.0,1247318 -3095784,1630204223,4,30,0,1,1630082498,1,1.0,45.0,1.0,-9.0,4.0,1247319 -3095785,1630204222,4,27,1,2,1630082498,2,1.0,40.0,1.0,-9.0,4.0,1247319 -3095786,1630204186,4,39,0,1,1630082499,1,1.0,40.0,1.0,-9.0,4.0,1247320 -3095787,1630204134,2,44,0,1,1630082500,1,6.0,-9.0,-9.0,14.0,4.0,1247321 -3095788,1630204135,2,50,5,2,1630082500,1,6.0,-9.0,-9.0,-9.0,4.0,1247321 -3095789,1630204118,2,42,0,1,1630082501,1,1.0,40.0,1.0,-9.0,4.0,1247322 -3095790,1630204177,2,71,0,1,1630082502,1,6.0,-9.0,-9.0,-9.0,2.0,1247323 -3095791,1630204138,2,43,0,1,1630082503,1,6.0,40.0,1.0,-9.0,4.0,1247324 -3095792,1630204221,4,23,0,1,1630082504,2,6.0,-9.0,-9.0,16.0,4.0,1247325 -3095793,1630204228,4,25,0,1,1630082505,1,1.0,70.0,5.0,-9.0,2.0,1247326 -3095794,1630203981,2,46,0,1,1630082506,2,1.0,50.0,1.0,-9.0,4.0,1247327 -3095795,1630204178,4,40,0,1,1630082507,1,3.0,-9.0,-9.0,16.0,4.0,1247328 -3095796,1630203982,2,37,0,1,1630082508,2,6.0,-9.0,-9.0,-9.0,4.0,1247329 -3095797,1630203983,2,13,2,2,1630082508,2,-9.0,-9.0,-9.0,9.0,-9.0,1247329 -3095798,1630203831,1,20,0,1,1630082509,1,1.0,40.0,5.0,15.0,4.0,1247330 -3095799,1630203743,1,38,0,1,1630082510,2,1.0,32.0,1.0,-9.0,4.0,1247331 -3095800,1630203744,1,36,5,2,1630082510,1,1.0,40.0,1.0,-9.0,4.0,1247331 -3095801,1630204201,1,16,0,1,1630082511,1,6.0,-9.0,-9.0,-9.0,-9.0,1247332 -3095802,1630203960,2,47,0,1,1630082512,2,1.0,91.0,1.0,-9.0,4.0,1247333 -3095803,1630203961,2,25,15,2,1630082512,2,6.0,-9.0,-9.0,-9.0,4.0,1247333 -3095804,1630204239,4,51,0,1,1630082513,1,1.0,70.0,1.0,16.0,4.0,1247334 -3095805,1630204067,2,36,0,1,1630082514,1,1.0,48.0,1.0,-9.0,4.0,1247335 -3095806,1630204066,2,4,2,2,1630082514,1,-9.0,-9.0,-9.0,1.0,-9.0,1247335 -3095807,1630204044,2,38,0,1,1630082515,2,1.0,40.0,1.0,-9.0,4.0,1247336 -3095808,1630204046,2,38,1,2,1630082515,1,1.0,40.0,1.0,-9.0,4.0,1247336 -3095809,1630204045,2,6,2,3,1630082515,1,-9.0,-9.0,-9.0,3.0,-9.0,1247336 -3095810,1630204047,2,2,2,4,1630082515,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247336 -3095811,1630204104,4,33,0,1,1630082516,2,1.0,55.0,1.0,-9.0,4.0,1247337 -3095812,1630204103,2,34,13,2,1630082516,1,1.0,40.0,4.0,16.0,4.0,1247337 -3095813,1630203570,1,69,0,1,1630082517,2,6.0,-9.0,-9.0,-9.0,4.0,1247338 -3095814,1630203559,3,69,0,1,1630082518,2,6.0,-9.0,-9.0,-9.0,4.0,1247339 -3095815,1630203822,1,38,0,1,1630082519,1,1.0,40.0,1.0,-9.0,3.0,1247340 -3095816,1630203825,4,37,1,2,1630082519,2,1.0,25.0,1.0,-9.0,4.0,1247340 -3095817,1630203823,4,6,2,3,1630082519,1,-9.0,-9.0,-9.0,3.0,-9.0,1247340 -3095818,1630203824,4,4,2,4,1630082519,1,-9.0,-9.0,-9.0,1.0,-9.0,1247340 -3095819,1630203674,4,40,0,1,1630082520,1,1.0,60.0,1.0,-9.0,4.0,1247341 -3095820,1630203672,1,33,13,2,1630082520,2,1.0,40.0,1.0,-9.0,4.0,1247341 -3095821,1630203909,1,29,0,1,1630082521,1,1.0,40.0,1.0,16.0,4.0,1247342 -3095822,1630204156,2,73,0,1,1630082522,1,6.0,-9.0,-9.0,-9.0,4.0,1247343 -3095823,1630204053,2,61,0,1,1630082523,2,6.0,-9.0,-9.0,-9.0,4.0,1247344 -3095824,1630204054,2,61,12,2,1630082523,1,6.0,-9.0,-9.0,-9.0,4.0,1247344 -3095825,1630204069,2,33,0,1,1630082524,1,1.0,40.0,1.0,-9.0,4.0,1247345 -3095826,1630204068,2,11,2,2,1630082524,1,-9.0,-9.0,-9.0,8.0,-9.0,1247345 -3095827,1630204070,2,26,5,3,1630082524,1,1.0,55.0,1.0,15.0,4.0,1247345 -3095828,1630204120,2,59,0,1,1630082525,1,1.0,40.0,1.0,-9.0,4.0,1247346 -3095829,1630204121,4,22,2,2,1630082525,1,1.0,30.0,1.0,-9.0,4.0,1247346 -3095830,1630203813,1,57,0,1,1630082526,1,6.0,-9.0,-9.0,-9.0,4.0,1247347 -3095831,1630203880,3,54,0,1,1630082527,1,1.0,40.0,1.0,-9.0,4.0,1247348 -3095832,1630204000,2,50,0,1,1630082528,2,1.0,40.0,1.0,-9.0,4.0,1247349 -3095833,1630204001,2,28,2,2,1630082528,2,1.0,35.0,1.0,-9.0,4.0,1247349 -3095834,1630203851,1,57,0,1,1630082529,1,1.0,55.0,1.0,-9.0,4.0,1247350 -3095835,1630204150,4,72,0,1,1630082530,2,6.0,-9.0,-9.0,-9.0,4.0,1247351 -3095836,1630203532,2,69,0,1,1630082531,2,6.0,-9.0,-9.0,-9.0,4.0,1247352 -3095837,1630203533,2,65,1,2,1630082531,1,6.0,-9.0,-9.0,-9.0,4.0,1247352 -3095838,1630203499,2,67,0,1,1630082532,2,1.0,8.0,1.0,-9.0,4.0,1247353 -3095839,1630204236,4,26,0,1,1630082533,1,6.0,-9.0,-9.0,16.0,4.0,1247354 -3095840,1630203861,3,27,0,1,1630082534,1,1.0,70.0,1.0,-9.0,4.0,1247355 -3095841,1630203862,3,27,12,2,1630082534,1,1.0,70.0,1.0,-9.0,4.0,1247355 -3095842,1630204123,2,38,0,1,1630082535,1,1.0,55.0,1.0,-9.0,4.0,1247356 -3095843,1630203682,1,34,0,1,1630082536,2,1.0,24.0,1.0,-9.0,4.0,1247357 -3095844,1630203683,1,35,1,2,1630082536,1,1.0,50.0,1.0,-9.0,4.0,1247357 -3095845,1630203685,1,2,2,3,1630082536,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247357 -3095846,1630203684,2,3,3,4,1630082536,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247357 -3095847,1630204008,2,64,0,1,1630082537,2,6.0,-9.0,-9.0,-9.0,4.0,1247358 -3095848,1630204009,2,26,2,2,1630082537,2,1.0,40.0,1.0,-9.0,4.0,1247358 -3095849,1630203556,2,66,0,1,1630082538,2,6.0,-9.0,-9.0,-9.0,4.0,1247359 -3095850,1630203580,1,82,0,1,1630082539,1,1.0,48.0,1.0,-9.0,2.0,1247360 -3095851,1630203579,1,76,1,2,1630082539,2,1.0,48.0,1.0,-9.0,4.0,1247360 -3095852,1630203964,2,57,0,1,1630082540,2,6.0,-9.0,-9.0,-9.0,4.0,1247361 -3095853,1630204048,2,30,0,1,1630082541,2,1.0,40.0,1.0,-9.0,4.0,1247362 -3095854,1630204049,2,3,2,2,1630082541,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247362 -3095855,1630204207,1,77,0,1,1630082542,1,6.0,-9.0,-9.0,-9.0,2.0,1247363 -3095856,1630203515,2,65,0,1,1630082543,2,6.0,30.0,5.0,-9.0,4.0,1247364 -3095857,1630203847,1,64,0,1,1630082544,1,6.0,-9.0,-9.0,-9.0,2.0,1247365 -3095858,1630204112,2,33,0,1,1630082545,1,1.0,10.0,6.0,-9.0,4.0,1247366 -3095859,1630203997,2,20,0,1,1630082546,2,3.0,-9.0,-9.0,-9.0,4.0,1247367 -3095860,1630203998,2,1,2,2,1630082546,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247367 -3095861,1630203975,2,42,0,1,1630082547,2,1.0,42.0,1.0,-9.0,4.0,1247368 -3095862,1630203976,2,13,2,2,1630082547,2,-9.0,-9.0,-9.0,10.0,-9.0,1247368 -3095863,1630204113,2,60,0,1,1630082548,1,6.0,-9.0,-9.0,-9.0,4.0,1247369 -3095864,1630204114,2,58,5,2,1630082548,1,1.0,40.0,1.0,-9.0,2.0,1247369 -3095865,1630204007,2,27,0,1,1630082549,1,6.0,-9.0,-9.0,16.0,4.0,1247370 -3095866,1630204006,2,25,1,2,1630082549,2,1.0,40.0,1.0,-9.0,4.0,1247370 -3095867,1630203520,2,87,0,1,1630082550,2,6.0,-9.0,-9.0,-9.0,4.0,1247371 -3095868,1630204237,4,26,0,1,1630082551,1,6.0,36.0,5.0,-9.0,4.0,1247372 -3095869,1630204238,4,25,12,2,1630082551,1,6.0,-9.0,-9.0,-9.0,4.0,1247372 -3095870,1630203547,2,72,0,1,1630082552,2,1.0,40.0,1.0,-9.0,4.0,1247373 -3095871,1630203989,2,48,0,1,1630082553,2,3.0,40.0,2.0,-9.0,4.0,1247374 -3095872,1630203990,2,60,13,2,1630082553,1,6.0,-9.0,-9.0,-9.0,4.0,1247374 -3095873,1630203739,1,21,0,1,1630082554,2,6.0,10.0,5.0,16.0,4.0,1247375 -3095874,1630203740,1,20,12,2,1630082554,2,6.0,20.0,4.0,15.0,4.0,1247375 -3095875,1630204188,3,39,0,1,1630082555,1,6.0,-9.0,-9.0,-9.0,4.0,1247376 -3095876,1630204197,4,63,0,1,1630082556,2,6.0,-9.0,-9.0,-9.0,4.0,1247377 -3095877,1630204038,2,61,0,1,1630082557,2,6.0,-9.0,-9.0,-9.0,4.0,1247378 -3095878,1630204039,2,23,2,2,1630082557,2,6.0,-9.0,-9.0,16.0,4.0,1247378 -3095879,1630204183,4,25,0,1,1630082558,1,1.0,30.0,1.0,-9.0,4.0,1247379 -3095880,1630203557,1,69,0,1,1630082559,2,6.0,-9.0,-9.0,-9.0,4.0,1247380 -3095881,1630204081,2,54,0,1,1630082560,1,6.0,60.0,4.0,-9.0,2.0,1247381 -3095882,1630203753,1,22,0,1,1630082561,2,6.0,-9.0,-9.0,16.0,4.0,1247382 -3095883,1630203754,1,22,11,2,1630082561,2,6.0,-9.0,-9.0,16.0,4.0,1247382 -3095884,1630203979,2,34,0,1,1630082562,2,1.0,40.0,1.0,-9.0,4.0,1247383 -3095885,1630203980,2,33,1,2,1630082562,1,1.0,40.0,1.0,-9.0,4.0,1247383 -3095886,1630203812,1,59,0,1,1630082563,1,1.0,55.0,1.0,-9.0,4.0,1247384 -3095887,1630203993,2,41,0,1,1630082564,2,2.0,40.0,1.0,-9.0,4.0,1247385 -3095888,1630203994,2,17,2,2,1630082564,2,6.0,30.0,6.0,14.0,4.0,1247385 -3095889,1630204141,2,41,0,1,1630082565,1,1.0,40.0,1.0,-9.0,4.0,1247386 -3095890,1630204142,2,9,2,2,1630082565,2,-9.0,-9.0,-9.0,6.0,-9.0,1247386 -3095891,1630203497,2,74,0,1,1630082566,2,6.0,-9.0,-9.0,-9.0,4.0,1247387 -3095892,1630203498,2,46,2,2,1630082566,1,6.0,-9.0,-9.0,-9.0,4.0,1247387 -3095893,1630204093,2,30,0,1,1630082567,1,3.0,36.0,5.0,-9.0,4.0,1247388 -3095894,1630203716,1,33,0,1,1630082568,2,6.0,-9.0,-9.0,-9.0,4.0,1247389 -3095895,1630203717,1,42,1,2,1630082568,1,1.0,50.0,1.0,-9.0,4.0,1247389 -3095896,1630203718,1,1,2,3,1630082568,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247389 -3095897,1630204189,4,28,0,1,1630082569,1,1.0,80.0,1.0,-9.0,4.0,1247390 -3095898,1630203902,1,57,0,1,1630082570,1,3.0,20.0,6.0,-9.0,4.0,1247391 -3095899,1630203903,1,75,10,2,1630082570,1,6.0,-9.0,-9.0,-9.0,2.0,1247391 -3095900,1630204240,4,65,0,1,1630082571,1,6.0,-9.0,-9.0,-9.0,4.0,1247392 -3095901,1630204022,2,62,0,1,1630082572,2,3.0,40.0,6.0,-9.0,4.0,1247393 -3095902,1630204023,2,23,2,2,1630082572,2,1.0,23.0,5.0,-9.0,4.0,1247393 -3095903,1630204175,2,68,0,1,1630082573,1,1.0,45.0,1.0,-9.0,4.0,1247394 -3095904,1630204176,2,68,12,2,1630082573,1,1.0,32.0,1.0,-9.0,4.0,1247394 -3095905,1630204217,4,26,0,1,1630082574,2,6.0,-9.0,-9.0,-9.0,4.0,1247395 -3095906,1630204218,4,26,1,2,1630082574,1,1.0,40.0,1.0,16.0,4.0,1247395 -3095907,1630204224,4,22,0,1,1630082575,2,1.0,25.0,1.0,15.0,4.0,1247396 -3095908,1630203653,1,22,0,1,1630082576,2,2.0,40.0,1.0,16.0,4.0,1247397 -3095909,1630203654,1,27,13,2,1630082576,1,1.0,60.0,1.0,-9.0,4.0,1247397 -3095910,1630204130,2,62,0,1,1630082577,1,1.0,30.0,3.0,-9.0,4.0,1247398 -3095911,1630203651,1,48,0,1,1630082578,2,1.0,30.0,1.0,-9.0,4.0,1247399 -3095912,1630203652,1,10,2,2,1630082578,2,-9.0,-9.0,-9.0,7.0,-9.0,1247399 -3095913,1630203759,1,20,0,1,1630082579,2,6.0,15.0,6.0,15.0,4.0,1247400 -3095914,1630203760,1,19,12,2,1630082579,2,1.0,30.0,1.0,15.0,4.0,1247400 -3095915,1630204192,3,27,0,1,1630082580,2,1.0,40.0,1.0,-9.0,4.0,1247401 -3095916,1630204017,2,47,0,1,1630082581,2,1.0,40.0,1.0,-9.0,4.0,1247402 -3095917,1630204018,2,14,2,2,1630082581,2,-9.0,-9.0,-9.0,12.0,-9.0,1247402 -3095918,1630204195,4,60,0,1,1630082582,2,1.0,49.0,1.0,-9.0,4.0,1247403 -3095919,1630204180,4,54,0,1,1630082583,2,1.0,46.0,1.0,-9.0,4.0,1247404 -3095920,1630204179,4,18,2,2,1630082583,1,6.0,-9.0,-9.0,14.0,4.0,1247404 -3095921,1630204181,3,2,7,3,1630082583,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247404 -3095922,1630204182,4,0,7,4,1630082583,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247404 -3095923,1630203612,1,51,0,1,1630082584,2,6.0,-9.0,-9.0,-9.0,4.0,1247405 -3095924,1630203613,1,44,12,2,1630082584,1,3.0,15.0,6.0,-9.0,4.0,1247405 -3095925,1630204849,2,34,0,1,1630082585,1,3.0,40.0,4.0,-9.0,4.0,1247406 -3095926,1630204843,2,35,1,2,1630082585,2,1.0,40.0,1.0,15.0,4.0,1247406 -3095927,1630204851,2,16,4,3,1630082585,2,6.0,-9.0,-9.0,13.0,-9.0,1247406 -3095928,1630204845,2,14,4,4,1630082585,1,-9.0,-9.0,-9.0,12.0,-9.0,1247406 -3095929,1630204847,2,6,4,5,1630082585,1,-9.0,-9.0,-9.0,3.0,-9.0,1247406 -3095930,1630204850,2,34,0,1,1630082586,1,3.0,40.0,4.0,-9.0,4.0,1247407 -3095931,1630204844,2,35,1,2,1630082586,2,1.0,40.0,1.0,15.0,4.0,1247407 -3095932,1630204852,2,16,4,3,1630082586,2,6.0,-9.0,-9.0,13.0,-9.0,1247407 -3095933,1630204846,2,14,4,4,1630082586,1,-9.0,-9.0,-9.0,12.0,-9.0,1247407 -3095934,1630204848,2,6,4,5,1630082586,1,-9.0,-9.0,-9.0,3.0,-9.0,1247407 -3095935,1630204602,2,32,0,1,1630082587,2,1.0,40.0,1.0,-9.0,4.0,1247408 -3095936,1630204603,2,16,2,2,1630082587,1,6.0,-9.0,-9.0,13.0,-9.0,1247408 -3095937,1630204604,2,6,2,3,1630082587,2,-9.0,-9.0,-9.0,3.0,-9.0,1247408 -3095938,1630204605,2,5,2,4,1630082587,2,-9.0,-9.0,-9.0,2.0,-9.0,1247408 -3095939,1630205110,2,38,0,1,1630082588,2,1.0,45.0,1.0,-9.0,4.0,1247409 -3095940,1630205124,2,44,0,1,1630082589,2,1.0,15.0,1.0,-9.0,4.0,1247410 -3095941,1630205126,2,31,2,2,1630082589,1,3.0,-9.0,-9.0,-9.0,4.0,1247410 -3095942,1630205127,2,24,2,3,1630082589,1,6.0,-9.0,-9.0,12.0,4.0,1247410 -3095943,1630205125,2,18,2,4,1630082589,2,6.0,-9.0,-9.0,14.0,4.0,1247410 -3095944,1630205128,2,13,2,5,1630082589,2,-9.0,-9.0,-9.0,10.0,-9.0,1247410 -3095945,1630205129,2,9,2,6,1630082589,2,-9.0,-9.0,-9.0,6.0,-9.0,1247410 -3095946,1630204638,2,27,0,1,1630082590,2,1.0,27.0,1.0,15.0,4.0,1247411 -3095947,1630204642,2,1,2,2,1630082590,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247411 -3095948,1630204640,2,33,13,3,1630082590,1,3.0,40.0,1.0,15.0,4.0,1247411 -3095949,1630205042,2,38,0,1,1630082591,2,1.0,36.0,1.0,-9.0,4.0,1247412 -3095950,1630205044,2,4,2,2,1630082591,2,-9.0,-9.0,-9.0,1.0,-9.0,1247412 -3095951,1630205291,2,29,0,1,1630082592,1,1.0,40.0,1.0,15.0,3.0,1247413 -3095952,1630205292,2,7,2,2,1630082592,2,-9.0,-9.0,-9.0,3.0,-9.0,1247413 -3095953,1630204694,2,41,0,1,1630082593,2,2.0,40.0,1.0,-9.0,4.0,1247414 -3095954,1630204695,2,17,2,2,1630082593,2,6.0,30.0,6.0,14.0,4.0,1247414 -3095955,1630205012,2,31,0,1,1630082594,2,1.0,40.0,1.0,-9.0,4.0,1247415 -3095956,1630205013,2,5,2,2,1630082594,2,-9.0,-9.0,-9.0,1.0,-9.0,1247415 -3095957,1630205219,2,43,0,1,1630082595,2,1.0,40.0,1.0,15.0,4.0,1247416 -3095958,1630205220,2,19,2,2,1630082595,1,3.0,36.0,6.0,15.0,4.0,1247416 -3095959,1630205287,2,36,0,1,1630082596,1,1.0,46.0,1.0,-9.0,4.0,1247417 -3095960,1630205289,2,70,6,2,1630082596,1,6.0,-9.0,-9.0,-9.0,4.0,1247417 -3095961,1630204388,2,28,0,1,1630082597,1,1.0,36.0,1.0,-9.0,4.0,1247418 -3095962,1630204389,2,12,2,2,1630082597,2,-9.0,-9.0,-9.0,9.0,-9.0,1247418 -3095963,1630204390,2,5,2,3,1630082597,2,-9.0,-9.0,-9.0,2.0,-9.0,1247418 -3095964,1630204391,2,17,10,4,1630082597,2,6.0,-9.0,-9.0,14.0,4.0,1247418 -3095965,1630204387,2,32,15,5,1630082597,2,1.0,40.0,1.0,-9.0,4.0,1247418 -3095966,1630204438,2,36,0,1,1630082598,2,1.0,30.0,4.0,-9.0,4.0,1247419 -3095967,1630204444,2,19,2,2,1630082598,1,3.0,-9.0,-9.0,14.0,4.0,1247419 -3095968,1630204440,2,14,2,3,1630082598,1,-9.0,-9.0,-9.0,11.0,-9.0,1247419 -3095969,1630204448,2,14,2,4,1630082598,2,-9.0,-9.0,-9.0,11.0,-9.0,1247419 -3095970,1630204442,2,12,2,5,1630082598,1,-9.0,-9.0,-9.0,9.0,-9.0,1247419 -3095971,1630204450,2,12,2,6,1630082598,2,-9.0,-9.0,-9.0,9.0,-9.0,1247419 -3095972,1630204452,2,4,2,7,1630082598,2,-9.0,-9.0,-9.0,1.0,-9.0,1247419 -3095973,1630204446,2,45,15,8,1630082598,1,1.0,32.0,5.0,-9.0,4.0,1247419 -3095974,1630204811,2,26,0,1,1630082599,2,1.0,40.0,1.0,-9.0,4.0,1247420 -3095975,1630204812,2,8,2,2,1630082599,1,-9.0,-9.0,-9.0,3.0,-9.0,1247420 -3095976,1630204816,2,6,3,3,1630082599,2,-9.0,-9.0,-9.0,3.0,-9.0,1247420 -3095977,1630204813,2,2,3,4,1630082599,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247420 -3095978,1630204814,2,19,5,5,1630082599,1,6.0,-9.0,-9.0,-9.0,4.0,1247420 -3095979,1630204815,2,26,13,6,1630082599,1,1.0,40.0,1.0,-9.0,4.0,1247420 -3095980,1630204730,2,29,0,1,1630082600,1,1.0,20.0,5.0,-9.0,4.0,1247421 -3095981,1630204729,2,49,6,2,1630082600,2,1.0,35.0,1.0,15.0,4.0,1247421 -3095982,1630204692,2,42,0,1,1630082601,2,1.0,52.0,1.0,-9.0,2.0,1247422 -3095983,1630204693,2,46,13,2,1630082601,2,1.0,30.0,4.0,-9.0,4.0,1247422 -3095984,1630204759,2,28,0,1,1630082602,2,1.0,40.0,5.0,16.0,4.0,1247423 -3095985,1630204760,2,29,12,2,1630082602,2,1.0,40.0,1.0,-9.0,4.0,1247423 -3095986,1630204618,2,43,0,1,1630082603,2,6.0,-9.0,-9.0,-9.0,4.0,1247424 -3095987,1630204622,2,20,2,2,1630082603,2,6.0,-9.0,-9.0,-9.0,4.0,1247424 -3095988,1630204630,2,20,2,3,1630082603,1,6.0,-9.0,-9.0,-9.0,4.0,1247424 -3095989,1630204626,2,19,2,4,1630082603,2,6.0,-9.0,-9.0,14.0,4.0,1247424 -3095990,1630204634,2,0,7,5,1630082603,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247424 -3095991,1630205046,2,29,0,1,1630082604,2,6.0,-9.0,-9.0,-9.0,4.0,1247425 -3095992,1630205050,2,14,2,2,1630082604,1,-9.0,-9.0,-9.0,9.0,-9.0,1247425 -3095993,1630205054,2,4,2,3,1630082604,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247425 -3095994,1630205058,2,2,2,4,1630082604,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247425 -3095995,1630205062,2,45,6,5,1630082604,1,3.0,-9.0,-9.0,-9.0,4.0,1247425 -3095996,1630205047,2,29,0,1,1630082605,2,6.0,-9.0,-9.0,-9.0,4.0,1247426 -3095997,1630205051,2,14,2,2,1630082605,1,-9.0,-9.0,-9.0,9.0,-9.0,1247426 -3095998,1630205055,2,4,2,3,1630082605,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247426 -3095999,1630205059,2,2,2,4,1630082605,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247426 -3096000,1630205063,2,45,6,5,1630082605,1,3.0,-9.0,-9.0,-9.0,4.0,1247426 -3096001,1630204619,2,43,0,1,1630082606,2,6.0,-9.0,-9.0,-9.0,4.0,1247427 -3096002,1630204623,2,20,2,2,1630082606,2,6.0,-9.0,-9.0,-9.0,4.0,1247427 -3096003,1630204631,2,20,2,3,1630082606,1,6.0,-9.0,-9.0,-9.0,4.0,1247427 -3096004,1630204627,2,19,2,4,1630082606,2,6.0,-9.0,-9.0,14.0,4.0,1247427 -3096005,1630204635,2,0,7,5,1630082606,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247427 -3096006,1630204620,2,43,0,1,1630082607,2,6.0,-9.0,-9.0,-9.0,4.0,1247428 -3096007,1630204624,2,20,2,2,1630082607,2,6.0,-9.0,-9.0,-9.0,4.0,1247428 -3096008,1630204632,2,20,2,3,1630082607,1,6.0,-9.0,-9.0,-9.0,4.0,1247428 -3096009,1630204628,2,19,2,4,1630082607,2,6.0,-9.0,-9.0,14.0,4.0,1247428 -3096010,1630204636,2,0,7,5,1630082607,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247428 -3096011,1630204965,2,36,0,1,1630082608,2,6.0,-9.0,-9.0,-9.0,4.0,1247429 -3096012,1630204968,2,18,2,2,1630082608,1,6.0,-9.0,-9.0,15.0,4.0,1247429 -3096013,1630204969,2,17,2,3,1630082608,2,6.0,-9.0,-9.0,14.0,4.0,1247429 -3096014,1630204967,2,16,2,4,1630082608,1,6.0,-9.0,-9.0,11.0,-9.0,1247429 -3096015,1630204966,2,55,6,5,1630082608,2,6.0,-9.0,-9.0,-9.0,4.0,1247429 -3096016,1630204621,2,43,0,1,1630082609,2,6.0,-9.0,-9.0,-9.0,4.0,1247430 -3096017,1630204625,2,20,2,2,1630082609,2,6.0,-9.0,-9.0,-9.0,4.0,1247430 -3096018,1630204633,2,20,2,3,1630082609,1,6.0,-9.0,-9.0,-9.0,4.0,1247430 -3096019,1630204629,2,19,2,4,1630082609,2,6.0,-9.0,-9.0,14.0,4.0,1247430 -3096020,1630204637,2,0,7,5,1630082609,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247430 -3096021,1630205048,2,29,0,1,1630082610,2,6.0,-9.0,-9.0,-9.0,4.0,1247431 -3096022,1630205052,2,14,2,2,1630082610,1,-9.0,-9.0,-9.0,9.0,-9.0,1247431 -3096023,1630205056,2,4,2,3,1630082610,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247431 -3096024,1630205060,2,2,2,4,1630082610,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247431 -3096025,1630205064,2,45,6,5,1630082610,1,3.0,-9.0,-9.0,-9.0,4.0,1247431 -3096026,1630204394,2,34,0,1,1630082611,2,3.0,-9.0,-9.0,15.0,4.0,1247432 -3096027,1630204398,2,15,2,2,1630082611,2,-9.0,-9.0,-9.0,12.0,-9.0,1247432 -3096028,1630204402,2,11,2,3,1630082611,2,-9.0,-9.0,-9.0,8.0,-9.0,1247432 -3096029,1630204406,2,9,2,4,1630082611,2,-9.0,-9.0,-9.0,6.0,-9.0,1247432 -3096030,1630204410,2,6,2,5,1630082611,2,-9.0,-9.0,-9.0,3.0,-9.0,1247432 -3096031,1630204395,2,34,0,1,1630082612,2,3.0,-9.0,-9.0,15.0,4.0,1247433 -3096032,1630204399,2,15,2,2,1630082612,2,-9.0,-9.0,-9.0,12.0,-9.0,1247433 -3096033,1630204403,2,11,2,3,1630082612,2,-9.0,-9.0,-9.0,8.0,-9.0,1247433 -3096034,1630204407,2,9,2,4,1630082612,2,-9.0,-9.0,-9.0,6.0,-9.0,1247433 -3096035,1630204411,2,6,2,5,1630082612,2,-9.0,-9.0,-9.0,3.0,-9.0,1247433 -3096036,1630204396,2,34,0,1,1630082613,2,3.0,-9.0,-9.0,15.0,4.0,1247434 -3096037,1630204400,2,15,2,2,1630082613,2,-9.0,-9.0,-9.0,12.0,-9.0,1247434 -3096038,1630204404,2,11,2,3,1630082613,2,-9.0,-9.0,-9.0,8.0,-9.0,1247434 -3096039,1630204408,2,9,2,4,1630082613,2,-9.0,-9.0,-9.0,6.0,-9.0,1247434 -3096040,1630204412,2,6,2,5,1630082613,2,-9.0,-9.0,-9.0,3.0,-9.0,1247434 -3096041,1630204796,2,29,0,1,1630082614,2,3.0,-9.0,-9.0,-9.0,4.0,1247435 -3096042,1630204798,2,11,2,2,1630082614,2,-9.0,-9.0,-9.0,7.0,-9.0,1247435 -3096043,1630204799,2,6,2,3,1630082614,2,-9.0,-9.0,-9.0,3.0,-9.0,1247435 -3096044,1630204797,2,4,2,4,1630082614,1,-9.0,-9.0,-9.0,1.0,-9.0,1247435 -3096045,1630204800,2,3,2,5,1630082614,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247435 -3096046,1630204397,2,34,0,1,1630082615,2,3.0,-9.0,-9.0,15.0,4.0,1247436 -3096047,1630204401,2,15,2,2,1630082615,2,-9.0,-9.0,-9.0,12.0,-9.0,1247436 -3096048,1630204405,2,11,2,3,1630082615,2,-9.0,-9.0,-9.0,8.0,-9.0,1247436 -3096049,1630204409,2,9,2,4,1630082615,2,-9.0,-9.0,-9.0,6.0,-9.0,1247436 -3096050,1630204413,2,6,2,5,1630082615,2,-9.0,-9.0,-9.0,3.0,-9.0,1247436 -3096051,1630204953,2,33,0,1,1630082616,2,6.0,32.0,6.0,-9.0,4.0,1247437 -3096052,1630204957,2,12,2,2,1630082616,2,-9.0,-9.0,-9.0,9.0,-9.0,1247437 -3096053,1630204959,2,8,2,3,1630082616,2,-9.0,-9.0,-9.0,5.0,-9.0,1247437 -3096054,1630204961,2,6,2,4,1630082616,2,-9.0,-9.0,-9.0,3.0,-9.0,1247437 -3096055,1630204955,2,0,2,5,1630082616,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247437 -3096056,1630204954,2,33,0,1,1630082617,2,6.0,32.0,6.0,-9.0,4.0,1247438 -3096057,1630204958,2,12,2,2,1630082617,2,-9.0,-9.0,-9.0,9.0,-9.0,1247438 -3096058,1630204960,2,8,2,3,1630082617,2,-9.0,-9.0,-9.0,5.0,-9.0,1247438 -3096059,1630204962,2,6,2,4,1630082617,2,-9.0,-9.0,-9.0,3.0,-9.0,1247438 -3096060,1630204956,2,0,2,5,1630082617,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247438 -3096061,1630204801,2,35,0,1,1630082618,2,6.0,-9.0,-9.0,-9.0,4.0,1247439 -3096062,1630204803,2,13,2,2,1630082618,2,-9.0,-9.0,-9.0,11.0,-9.0,1247439 -3096063,1630204804,2,12,2,3,1630082618,2,-9.0,-9.0,-9.0,9.0,-9.0,1247439 -3096064,1630204802,2,11,2,4,1630082618,1,-9.0,-9.0,-9.0,7.0,-9.0,1247439 -3096065,1630205026,2,38,0,1,1630082619,2,3.0,34.0,5.0,-9.0,4.0,1247440 -3096066,1630205028,2,12,2,2,1630082619,2,-9.0,-9.0,-9.0,8.0,-9.0,1247440 -3096067,1630205027,2,8,2,3,1630082619,1,-9.0,-9.0,-9.0,5.0,-9.0,1247440 -3096068,1630205029,2,6,2,4,1630082619,2,-9.0,-9.0,-9.0,3.0,-9.0,1247440 -3096069,1630205169,2,40,0,1,1630082620,2,3.0,-9.0,-9.0,-9.0,4.0,1247441 -3096070,1630205172,2,19,2,2,1630082620,2,6.0,-9.0,-9.0,15.0,4.0,1247441 -3096071,1630205175,2,18,2,3,1630082620,1,6.0,-9.0,-9.0,14.0,4.0,1247441 -3096072,1630205178,2,3,7,4,1630082620,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247441 -3096073,1630205170,2,40,0,1,1630082621,2,3.0,-9.0,-9.0,-9.0,4.0,1247442 -3096074,1630205173,2,19,2,2,1630082621,2,6.0,-9.0,-9.0,15.0,4.0,1247442 -3096075,1630205176,2,18,2,3,1630082621,1,6.0,-9.0,-9.0,14.0,4.0,1247442 -3096076,1630205179,2,3,7,4,1630082621,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247442 -3096077,1630204589,2,36,0,1,1630082622,2,3.0,-9.0,-9.0,-9.0,4.0,1247443 -3096078,1630204590,2,14,2,2,1630082622,1,-9.0,-9.0,-9.0,10.0,-9.0,1247443 -3096079,1630204592,2,9,2,3,1630082622,2,-9.0,-9.0,-9.0,8.0,-9.0,1247443 -3096080,1630204591,2,44,5,4,1630082622,1,3.0,-9.0,-9.0,-9.0,4.0,1247443 -3096081,1630204826,2,43,0,1,1630082623,2,6.0,-9.0,-9.0,-9.0,4.0,1247444 -3096082,1630204468,2,38,0,1,1630082624,2,6.0,-9.0,-9.0,-9.0,4.0,1247445 -3096083,1630205303,2,30,0,1,1630082625,1,3.0,36.0,4.0,-9.0,4.0,1247446 -3096084,1630204430,2,38,0,1,1630082626,2,6.0,-9.0,-9.0,-9.0,4.0,1247447 -3096085,1630204431,2,17,2,2,1630082626,1,6.0,-9.0,-9.0,13.0,4.0,1247447 -3096086,1630204435,2,14,2,3,1630082626,2,-9.0,-9.0,-9.0,11.0,-9.0,1247447 -3096087,1630204432,2,10,2,4,1630082626,1,-9.0,-9.0,-9.0,7.0,-9.0,1247447 -3096088,1630204436,2,8,2,5,1630082626,2,-9.0,-9.0,-9.0,4.0,-9.0,1247447 -3096089,1630204437,2,6,2,6,1630082626,2,-9.0,-9.0,-9.0,3.0,-9.0,1247447 -3096090,1630204433,2,4,2,7,1630082626,1,-9.0,-9.0,-9.0,1.0,-9.0,1247447 -3096091,1630204434,2,39,5,8,1630082626,1,3.0,-9.0,-9.0,-9.0,4.0,1247447 -3096092,1630205163,2,25,0,1,1630082627,2,3.0,-9.0,-9.0,-9.0,4.0,1247448 -3096093,1630205164,2,6,2,2,1630082627,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247448 -3096094,1630205167,2,5,2,3,1630082627,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247448 -3096095,1630205168,2,4,2,4,1630082627,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247448 -3096096,1630205165,2,3,2,5,1630082627,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247448 -3096097,1630205166,2,2,2,6,1630082627,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247448 -3096098,1630204696,2,43,0,1,1630082628,2,3.0,-9.0,-9.0,-9.0,4.0,1247449 -3096099,1630204702,2,15,2,2,1630082628,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247449 -3096100,1630204699,2,20,3,3,1630082628,2,6.0,-9.0,-9.0,-9.0,4.0,1247449 -3096101,1630204705,2,13,3,4,1630082628,2,-9.0,-9.0,-9.0,8.0,-9.0,1247449 -3096102,1630204708,2,11,3,5,1630082628,2,-9.0,-9.0,-9.0,6.0,-9.0,1247449 -3096103,1630204711,2,10,3,6,1630082628,2,-9.0,-9.0,-9.0,6.0,-9.0,1247449 -3096104,1630204697,2,43,0,1,1630082629,2,3.0,-9.0,-9.0,-9.0,4.0,1247450 -3096105,1630204703,2,15,2,2,1630082629,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247450 -3096106,1630204700,2,20,3,3,1630082629,2,6.0,-9.0,-9.0,-9.0,4.0,1247450 -3096107,1630204706,2,13,3,4,1630082629,2,-9.0,-9.0,-9.0,8.0,-9.0,1247450 -3096108,1630204709,2,11,3,5,1630082629,2,-9.0,-9.0,-9.0,6.0,-9.0,1247450 -3096109,1630204712,2,10,3,6,1630082629,2,-9.0,-9.0,-9.0,6.0,-9.0,1247450 -3096110,1630204731,2,27,0,1,1630082630,2,6.0,-9.0,-9.0,-9.0,4.0,1247451 -3096111,1630204733,2,0,2,2,1630082630,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247451 -3096112,1630204732,2,35,13,3,1630082630,1,6.0,-9.0,-9.0,-9.0,4.0,1247451 -3096113,1630204907,2,42,0,1,1630082631,2,6.0,-9.0,-9.0,-9.0,4.0,1247452 -3096114,1630204909,2,21,2,2,1630082631,1,6.0,-9.0,-9.0,-9.0,4.0,1247452 -3096115,1630204908,2,16,2,3,1630082631,1,6.0,-9.0,-9.0,12.0,-9.0,1247452 -3096116,1630205260,2,31,0,1,1630082632,1,6.0,-9.0,-9.0,-9.0,4.0,1247453 -3096117,1630205261,2,0,2,2,1630082632,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247453 -3096118,1630205259,2,38,13,3,1630082632,2,6.0,-9.0,-9.0,-9.0,4.0,1247453 -3096119,1630205192,2,38,0,1,1630082633,2,6.0,-9.0,-9.0,-9.0,4.0,1247454 -3096120,1630205194,2,38,1,2,1630082633,1,3.0,-9.0,-9.0,-9.0,4.0,1247454 -3096121,1630205196,2,16,2,3,1630082633,2,6.0,-9.0,-9.0,13.0,-9.0,1247454 -3096122,1630204469,2,36,0,1,1630082634,2,6.0,-9.0,-9.0,-9.0,4.0,1247455 -3096123,1630204470,2,16,2,2,1630082634,2,6.0,-9.0,-9.0,13.0,-9.0,1247455 -3096124,1630204471,2,9,2,3,1630082634,2,-9.0,-9.0,-9.0,6.0,-9.0,1247455 -3096125,1630205280,2,34,0,1,1630082635,1,3.0,-9.0,-9.0,-9.0,4.0,1247456 -3096126,1630205281,2,18,10,2,1630082635,1,6.0,-9.0,-9.0,14.0,4.0,1247456 -3096127,1630205301,2,44,0,1,1630082636,1,6.0,-9.0,-9.0,14.0,4.0,1247457 -3096128,1630205302,2,50,5,2,1630082636,1,6.0,-9.0,-9.0,-9.0,4.0,1247457 -3096129,1630205230,2,36,0,1,1630082637,2,6.0,-9.0,-9.0,-9.0,4.0,1247458 -3096130,1630205231,2,34,13,2,1630082637,1,6.0,-9.0,-9.0,-9.0,4.0,1247458 -3096131,1630204593,2,33,0,1,1630082638,2,3.0,42.0,6.0,-9.0,4.0,1247459 -3096132,1630204594,2,14,2,2,1630082638,2,-9.0,-9.0,-9.0,11.0,-9.0,1247459 -3096133,1630204665,2,26,0,1,1630082639,2,6.0,-9.0,-9.0,-9.0,4.0,1247460 -3096134,1630204666,2,6,2,2,1630082639,1,-9.0,-9.0,-9.0,2.0,-9.0,1247460 -3096135,1630205274,2,40,0,1,1630082640,1,6.0,-9.0,-9.0,-9.0,4.0,1247461 -3096136,1630205276,2,7,2,2,1630082640,2,-9.0,-9.0,-9.0,3.0,-9.0,1247461 -3096137,1630205003,2,26,0,1,1630082641,2,3.0,-9.0,-9.0,15.0,4.0,1247462 -3096138,1630205004,2,6,2,2,1630082641,2,-9.0,-9.0,-9.0,3.0,-9.0,1247462 -3096139,1630205275,2,40,0,1,1630082642,1,6.0,-9.0,-9.0,-9.0,4.0,1247463 -3096140,1630205277,2,7,2,2,1630082642,2,-9.0,-9.0,-9.0,3.0,-9.0,1247463 -3096141,1630204587,2,25,0,1,1630082643,2,3.0,-9.0,-9.0,-9.0,4.0,1247464 -3096142,1630204588,2,4,2,2,1630082643,1,-9.0,-9.0,-9.0,1.0,-9.0,1247464 -3096143,1630204676,2,30,0,1,1630082644,2,3.0,-9.0,-9.0,-9.0,4.0,1247465 -3096144,1630204677,2,25,10,2,1630082644,1,3.0,36.0,5.0,-9.0,4.0,1247465 -3096145,1630204524,2,43,0,1,1630082645,2,6.0,40.0,1.0,-9.0,4.0,1247466 -3096146,1630204526,2,46,12,2,1630082645,1,3.0,20.0,5.0,-9.0,4.0,1247466 -3096147,1630205214,2,33,0,1,1630082646,2,3.0,40.0,3.0,-9.0,4.0,1247467 -3096148,1630205216,2,9,2,2,1630082646,1,-9.0,-9.0,-9.0,6.0,-9.0,1247467 -3096149,1630204817,2,34,0,1,1630082647,2,6.0,-9.0,-9.0,15.0,4.0,1247468 -3096150,1630204819,2,7,2,2,1630082647,2,-9.0,-9.0,-9.0,3.0,-9.0,1247468 -3096151,1630205208,2,28,0,1,1630082648,2,3.0,-9.0,-9.0,-9.0,4.0,1247469 -3096152,1630205209,2,4,2,2,1630082648,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247469 -3096153,1630205215,2,33,0,1,1630082649,2,3.0,40.0,3.0,-9.0,4.0,1247470 -3096154,1630205217,2,9,2,2,1630082649,1,-9.0,-9.0,-9.0,6.0,-9.0,1247470 -3096155,1630205181,2,42,0,1,1630082650,2,6.0,-9.0,-9.0,-9.0,4.0,1247471 -3096156,1630205182,2,3,2,2,1630082650,2,-9.0,-9.0,-9.0,1.0,-9.0,1247471 -3096157,1630204818,2,34,0,1,1630082651,2,6.0,-9.0,-9.0,15.0,4.0,1247472 -3096158,1630204820,2,7,2,2,1630082651,2,-9.0,-9.0,-9.0,3.0,-9.0,1247472 -3096159,1630204392,2,30,0,1,1630082652,2,3.0,-9.0,-9.0,-9.0,4.0,1247473 -3096160,1630204393,2,12,2,2,1630082652,2,-9.0,-9.0,-9.0,9.0,-9.0,1247473 -3096161,1630204997,2,28,0,1,1630082653,2,6.0,-9.0,-9.0,15.0,4.0,1247474 -3096162,1630204998,2,3,2,2,1630082653,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247474 -3096163,1630204923,2,30,0,1,1630082654,2,1.0,30.0,1.0,-9.0,4.0,1247475 -3096164,1630204927,2,12,2,2,1630082654,1,-9.0,-9.0,-9.0,8.0,-9.0,1247475 -3096165,1630204931,2,13,10,3,1630082654,2,-9.0,-9.0,-9.0,10.0,-9.0,1247475 -3096166,1630204935,2,7,10,4,1630082654,2,-9.0,-9.0,-9.0,4.0,-9.0,1247475 -3096167,1630204939,2,0,10,5,1630082654,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247475 -3096168,1630204924,2,30,0,1,1630082655,2,1.0,30.0,1.0,-9.0,4.0,1247476 -3096169,1630204928,2,12,2,2,1630082655,1,-9.0,-9.0,-9.0,8.0,-9.0,1247476 -3096170,1630204932,2,13,10,3,1630082655,2,-9.0,-9.0,-9.0,10.0,-9.0,1247476 -3096171,1630204936,2,7,10,4,1630082655,2,-9.0,-9.0,-9.0,4.0,-9.0,1247476 -3096172,1630204940,2,0,10,5,1630082655,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247476 -3096173,1630204925,2,30,0,1,1630082656,2,1.0,30.0,1.0,-9.0,4.0,1247477 -3096174,1630204929,2,12,2,2,1630082656,1,-9.0,-9.0,-9.0,8.0,-9.0,1247477 -3096175,1630204933,2,13,10,3,1630082656,2,-9.0,-9.0,-9.0,10.0,-9.0,1247477 -3096176,1630204937,2,7,10,4,1630082656,2,-9.0,-9.0,-9.0,4.0,-9.0,1247477 -3096177,1630204941,2,0,10,5,1630082656,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247477 -3096178,1630204926,2,30,0,1,1630082657,2,1.0,30.0,1.0,-9.0,4.0,1247478 -3096179,1630204930,2,12,2,2,1630082657,1,-9.0,-9.0,-9.0,8.0,-9.0,1247478 -3096180,1630204934,2,13,10,3,1630082657,2,-9.0,-9.0,-9.0,10.0,-9.0,1247478 -3096181,1630204938,2,7,10,4,1630082657,2,-9.0,-9.0,-9.0,4.0,-9.0,1247478 -3096182,1630204942,2,0,10,5,1630082657,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247478 -3096183,1630204557,2,38,0,1,1630082658,2,3.0,-9.0,-9.0,-9.0,4.0,1247479 -3096184,1630204569,2,41,1,2,1630082658,1,1.0,40.0,1.0,-9.0,4.0,1247479 -3096185,1630204575,2,17,2,3,1630082658,2,6.0,-9.0,-9.0,13.0,4.0,1247479 -3096186,1630204581,2,15,2,4,1630082658,2,-9.0,-9.0,-9.0,11.0,-9.0,1247479 -3096187,1630204563,2,13,2,5,1630082658,1,-9.0,-9.0,-9.0,10.0,-9.0,1247479 -3096188,1630204979,2,33,0,1,1630082659,2,1.0,28.0,5.0,-9.0,4.0,1247480 -3096189,1630204980,2,13,2,2,1630082659,1,-9.0,-9.0,-9.0,9.0,-9.0,1247480 -3096190,1630204981,2,11,2,3,1630082659,2,-9.0,-9.0,-9.0,7.0,-9.0,1247480 -3096191,1630204982,2,8,2,4,1630082659,2,-9.0,-9.0,-9.0,5.0,-9.0,1247480 -3096192,1630204983,2,3,2,5,1630082659,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247480 -3096193,1630204558,2,38,0,1,1630082660,2,3.0,-9.0,-9.0,-9.0,4.0,1247481 -3096194,1630204570,2,41,1,2,1630082660,1,1.0,40.0,1.0,-9.0,4.0,1247481 -3096195,1630204576,2,17,2,3,1630082660,2,6.0,-9.0,-9.0,13.0,4.0,1247481 -3096196,1630204582,2,15,2,4,1630082660,2,-9.0,-9.0,-9.0,11.0,-9.0,1247481 -3096197,1630204564,2,13,2,5,1630082660,1,-9.0,-9.0,-9.0,10.0,-9.0,1247481 -3096198,1630204559,2,38,0,1,1630082661,2,3.0,-9.0,-9.0,-9.0,4.0,1247482 -3096199,1630204571,2,41,1,2,1630082661,1,1.0,40.0,1.0,-9.0,4.0,1247482 -3096200,1630204577,2,17,2,3,1630082661,2,6.0,-9.0,-9.0,13.0,4.0,1247482 -3096201,1630204583,2,15,2,4,1630082661,2,-9.0,-9.0,-9.0,11.0,-9.0,1247482 -3096202,1630204565,2,13,2,5,1630082661,1,-9.0,-9.0,-9.0,10.0,-9.0,1247482 -3096203,1630204416,2,31,0,1,1630082662,2,1.0,40.0,4.0,-9.0,4.0,1247483 -3096204,1630204424,2,7,2,2,1630082662,2,-9.0,-9.0,-9.0,3.0,-9.0,1247483 -3096205,1630204418,2,4,2,3,1630082662,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247483 -3096206,1630204420,2,1,2,4,1630082662,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247483 -3096207,1630204422,2,1,2,5,1630082662,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247483 -3096208,1630204417,2,31,0,1,1630082663,2,1.0,40.0,4.0,-9.0,4.0,1247484 -3096209,1630204425,2,7,2,2,1630082663,2,-9.0,-9.0,-9.0,3.0,-9.0,1247484 -3096210,1630204419,2,4,2,3,1630082663,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247484 -3096211,1630204421,2,1,2,4,1630082663,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247484 -3096212,1630204423,2,1,2,5,1630082663,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247484 -3096213,1630204943,2,42,0,1,1630082664,2,1.0,25.0,1.0,15.0,4.0,1247485 -3096214,1630204945,2,26,2,2,1630082664,2,6.0,-9.0,-9.0,-9.0,4.0,1247485 -3096215,1630204951,2,3,7,3,1630082664,2,-9.0,-9.0,-9.0,1.0,-9.0,1247485 -3096216,1630204947,2,1,7,4,1630082664,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247485 -3096217,1630204949,2,0,7,5,1630082664,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247485 -3096218,1630204560,2,38,0,1,1630082665,2,3.0,-9.0,-9.0,-9.0,4.0,1247486 -3096219,1630204572,2,41,1,2,1630082665,1,1.0,40.0,1.0,-9.0,4.0,1247486 -3096220,1630204578,2,17,2,3,1630082665,2,6.0,-9.0,-9.0,13.0,4.0,1247486 -3096221,1630204584,2,15,2,4,1630082665,2,-9.0,-9.0,-9.0,11.0,-9.0,1247486 -3096222,1630204566,2,13,2,5,1630082665,1,-9.0,-9.0,-9.0,10.0,-9.0,1247486 -3096223,1630204561,2,38,0,1,1630082666,2,3.0,-9.0,-9.0,-9.0,4.0,1247487 -3096224,1630204573,2,41,1,2,1630082666,1,1.0,40.0,1.0,-9.0,4.0,1247487 -3096225,1630204579,2,17,2,3,1630082666,2,6.0,-9.0,-9.0,13.0,4.0,1247487 -3096226,1630204585,2,15,2,4,1630082666,2,-9.0,-9.0,-9.0,11.0,-9.0,1247487 -3096227,1630204567,2,13,2,5,1630082666,1,-9.0,-9.0,-9.0,10.0,-9.0,1247487 -3096228,1630204562,2,38,0,1,1630082667,2,3.0,-9.0,-9.0,-9.0,4.0,1247488 -3096229,1630204574,2,41,1,2,1630082667,1,1.0,40.0,1.0,-9.0,4.0,1247488 -3096230,1630204580,2,17,2,3,1630082667,2,6.0,-9.0,-9.0,13.0,4.0,1247488 -3096231,1630204586,2,15,2,4,1630082667,2,-9.0,-9.0,-9.0,11.0,-9.0,1247488 -3096232,1630204568,2,13,2,5,1630082667,1,-9.0,-9.0,-9.0,10.0,-9.0,1247488 -3096233,1630204944,2,42,0,1,1630082668,2,1.0,25.0,1.0,15.0,4.0,1247489 -3096234,1630204946,2,26,2,2,1630082668,2,6.0,-9.0,-9.0,-9.0,4.0,1247489 -3096235,1630204952,2,3,7,3,1630082668,2,-9.0,-9.0,-9.0,1.0,-9.0,1247489 -3096236,1630204948,2,1,7,4,1630082668,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247489 -3096237,1630204950,2,0,7,5,1630082668,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247489 -3096238,1630204889,2,27,0,1,1630082669,1,1.0,60.0,1.0,-9.0,4.0,1247490 -3096239,1630204885,2,1,2,2,1630082669,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247490 -3096240,1630204887,2,4,4,3,1630082669,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247490 -3096241,1630204883,2,20,13,4,1630082669,2,6.0,-9.0,-9.0,-9.0,4.0,1247490 -3096242,1630204865,2,31,0,1,1630082670,1,3.0,-9.0,-9.0,-9.0,4.0,1247491 -3096243,1630204871,2,9,2,2,1630082670,2,-9.0,-9.0,-9.0,7.0,-9.0,1247491 -3096244,1630204877,2,2,2,3,1630082670,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247491 -3096245,1630204859,3,27,13,4,1630082670,2,1.0,30.0,1.0,-9.0,4.0,1247491 -3096246,1630205074,2,38,0,1,1630082671,2,3.0,-9.0,-9.0,-9.0,4.0,1247492 -3096247,1630205080,2,18,2,2,1630082671,1,1.0,8.0,4.0,14.0,4.0,1247492 -3096248,1630205083,2,11,2,3,1630082671,2,-9.0,-9.0,-9.0,7.0,-9.0,1247492 -3096249,1630205077,2,64,6,4,1630082671,2,6.0,-9.0,-9.0,-9.0,4.0,1247492 -3096250,1630205018,2,32,0,1,1630082672,1,3.0,-9.0,-9.0,-9.0,4.0,1247493 -3096251,1630205019,2,6,2,2,1630082672,2,-9.0,-9.0,-9.0,3.0,-9.0,1247493 -3096252,1630205016,2,29,13,3,1630082672,2,1.0,80.0,1.0,15.0,4.0,1247493 -3096253,1630205017,2,11,15,4,1630082672,1,-9.0,-9.0,-9.0,8.0,-9.0,1247493 -3096254,1630205075,2,38,0,1,1630082673,2,3.0,-9.0,-9.0,-9.0,4.0,1247494 -3096255,1630205081,2,18,2,2,1630082673,1,1.0,8.0,4.0,14.0,4.0,1247494 -3096256,1630205084,2,11,2,3,1630082673,2,-9.0,-9.0,-9.0,7.0,-9.0,1247494 -3096257,1630205078,2,64,6,4,1630082673,2,6.0,-9.0,-9.0,-9.0,4.0,1247494 -3096258,1630204866,2,31,0,1,1630082674,1,3.0,-9.0,-9.0,-9.0,4.0,1247495 -3096259,1630204872,2,9,2,2,1630082674,2,-9.0,-9.0,-9.0,7.0,-9.0,1247495 -3096260,1630204878,2,2,2,3,1630082674,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247495 -3096261,1630204860,3,27,13,4,1630082674,2,1.0,30.0,1.0,-9.0,4.0,1247495 -3096262,1630204867,2,31,0,1,1630082675,1,3.0,-9.0,-9.0,-9.0,4.0,1247496 -3096263,1630204873,2,9,2,2,1630082675,2,-9.0,-9.0,-9.0,7.0,-9.0,1247496 -3096264,1630204879,2,2,2,3,1630082675,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247496 -3096265,1630204861,3,27,13,4,1630082675,2,1.0,30.0,1.0,-9.0,4.0,1247496 -3096266,1630204868,2,31,0,1,1630082676,1,3.0,-9.0,-9.0,-9.0,4.0,1247497 -3096267,1630204874,2,9,2,2,1630082676,2,-9.0,-9.0,-9.0,7.0,-9.0,1247497 -3096268,1630204880,2,2,2,3,1630082676,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247497 -3096269,1630204862,3,27,13,4,1630082676,2,1.0,30.0,1.0,-9.0,4.0,1247497 -3096270,1630204869,2,31,0,1,1630082677,1,3.0,-9.0,-9.0,-9.0,4.0,1247498 -3096271,1630204875,2,9,2,2,1630082677,2,-9.0,-9.0,-9.0,7.0,-9.0,1247498 -3096272,1630204881,2,2,2,3,1630082677,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247498 -3096273,1630204863,3,27,13,4,1630082677,2,1.0,30.0,1.0,-9.0,4.0,1247498 -3096274,1630204870,2,31,0,1,1630082678,1,3.0,-9.0,-9.0,-9.0,4.0,1247499 -3096275,1630204876,2,9,2,2,1630082678,2,-9.0,-9.0,-9.0,7.0,-9.0,1247499 -3096276,1630204882,2,2,2,3,1630082678,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247499 -3096277,1630204864,3,27,13,4,1630082678,2,1.0,30.0,1.0,-9.0,4.0,1247499 -3096278,1630204890,2,27,0,1,1630082679,1,1.0,60.0,1.0,-9.0,4.0,1247500 -3096279,1630204886,2,1,2,2,1630082679,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247500 -3096280,1630204888,2,4,4,3,1630082679,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247500 -3096281,1630204884,2,20,13,4,1630082679,2,6.0,-9.0,-9.0,-9.0,4.0,1247500 -3096282,1630205076,2,38,0,1,1630082680,2,3.0,-9.0,-9.0,-9.0,4.0,1247501 -3096283,1630205082,2,18,2,2,1630082680,1,1.0,8.0,4.0,14.0,4.0,1247501 -3096284,1630205085,2,11,2,3,1630082680,2,-9.0,-9.0,-9.0,7.0,-9.0,1247501 -3096285,1630205079,2,64,6,4,1630082680,2,6.0,-9.0,-9.0,-9.0,4.0,1247501 -3096286,1630204659,2,42,0,1,1630082681,2,1.0,45.0,1.0,-9.0,4.0,1247502 -3096287,1630205005,2,29,0,1,1630082682,2,1.0,40.0,2.0,-9.0,4.0,1247503 -3096288,1630205207,2,26,0,1,1630082683,2,1.0,30.0,1.0,-9.0,4.0,1247504 -3096289,1630204290,2,44,0,1,1630082684,2,3.0,-9.0,-9.0,-9.0,4.0,1247505 -3096290,1630204292,2,21,2,2,1630082684,2,3.0,-9.0,-9.0,14.0,4.0,1247505 -3096291,1630204294,2,20,2,3,1630082684,2,1.0,40.0,4.0,-9.0,4.0,1247505 -3096292,1630204296,2,19,2,4,1630082684,2,3.0,-9.0,-9.0,-9.0,4.0,1247505 -3096293,1630204302,2,15,2,5,1630082684,2,-9.0,-9.0,-9.0,11.0,-9.0,1247505 -3096294,1630204304,2,14,2,6,1630082684,2,-9.0,-9.0,-9.0,9.0,-9.0,1247505 -3096295,1630204300,2,13,2,7,1630082684,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247505 -3096296,1630204306,2,8,2,8,1630082684,2,-9.0,-9.0,-9.0,6.0,-9.0,1247505 -3096297,1630204298,2,54,5,9,1630082684,2,3.0,-9.0,-9.0,-9.0,4.0,1247505 -3096298,1630204288,2,69,6,10,1630082684,2,6.0,-9.0,-9.0,-9.0,4.0,1247505 -3096299,1630204308,2,2,7,11,1630082684,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247505 -3096300,1630204291,2,44,0,1,1630082685,2,3.0,-9.0,-9.0,-9.0,4.0,1247506 -3096301,1630204293,2,21,2,2,1630082685,2,3.0,-9.0,-9.0,14.0,4.0,1247506 -3096302,1630204295,2,20,2,3,1630082685,2,1.0,40.0,4.0,-9.0,4.0,1247506 -3096303,1630204297,2,19,2,4,1630082685,2,3.0,-9.0,-9.0,-9.0,4.0,1247506 -3096304,1630204303,2,15,2,5,1630082685,2,-9.0,-9.0,-9.0,11.0,-9.0,1247506 -3096305,1630204305,2,14,2,6,1630082685,2,-9.0,-9.0,-9.0,9.0,-9.0,1247506 -3096306,1630204301,2,13,2,7,1630082685,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247506 -3096307,1630204307,2,8,2,8,1630082685,2,-9.0,-9.0,-9.0,6.0,-9.0,1247506 -3096308,1630204299,2,54,5,9,1630082685,2,3.0,-9.0,-9.0,-9.0,4.0,1247506 -3096309,1630204289,2,69,6,10,1630082685,2,6.0,-9.0,-9.0,-9.0,4.0,1247506 -3096310,1630204309,2,2,7,11,1630082685,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247506 -3096311,1630204734,2,34,0,1,1630082686,2,1.0,15.0,1.0,-9.0,4.0,1247507 -3096312,1630204736,2,16,2,2,1630082686,2,6.0,-9.0,-9.0,14.0,-9.0,1247507 -3096313,1630204737,2,15,2,3,1630082686,2,-9.0,-9.0,-9.0,12.0,-9.0,1247507 -3096314,1630204738,2,14,2,4,1630082686,2,-9.0,-9.0,-9.0,11.0,-9.0,1247507 -3096315,1630204739,2,14,2,5,1630082686,2,-9.0,-9.0,-9.0,11.0,-9.0,1247507 -3096316,1630204740,2,11,2,6,1630082686,2,-9.0,-9.0,-9.0,9.0,-9.0,1247507 -3096317,1630204735,2,11,2,7,1630082686,1,-9.0,-9.0,-9.0,9.0,-9.0,1247507 -3096318,1630205250,2,35,0,1,1630082687,1,6.0,-9.0,-9.0,-9.0,4.0,1247508 -3096319,1630205253,2,10,2,2,1630082687,2,-9.0,-9.0,-9.0,7.0,-9.0,1247508 -3096320,1630205241,2,6,2,3,1630082687,1,-9.0,-9.0,-9.0,4.0,-9.0,1247508 -3096321,1630205244,2,5,2,4,1630082687,1,-9.0,-9.0,-9.0,2.0,-9.0,1247508 -3096322,1630205256,2,3,2,5,1630082687,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247508 -3096323,1630205247,2,0,2,6,1630082687,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247508 -3096324,1630205235,2,54,10,7,1630082687,2,1.0,40.0,1.0,-9.0,4.0,1247508 -3096325,1630205238,2,29,13,8,1630082687,2,3.0,-9.0,-9.0,-9.0,4.0,1247508 -3096326,1630205251,2,35,0,1,1630082688,1,6.0,-9.0,-9.0,-9.0,4.0,1247509 -3096327,1630205254,2,10,2,2,1630082688,2,-9.0,-9.0,-9.0,7.0,-9.0,1247509 -3096328,1630205242,2,6,2,3,1630082688,1,-9.0,-9.0,-9.0,4.0,-9.0,1247509 -3096329,1630205245,2,5,2,4,1630082688,1,-9.0,-9.0,-9.0,2.0,-9.0,1247509 -3096330,1630205257,2,3,2,5,1630082688,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247509 -3096331,1630205248,2,0,2,6,1630082688,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247509 -3096332,1630205236,2,54,10,7,1630082688,2,1.0,40.0,1.0,-9.0,4.0,1247509 -3096333,1630205239,2,29,13,8,1630082688,2,3.0,-9.0,-9.0,-9.0,4.0,1247509 -3096334,1630205252,2,35,0,1,1630082689,1,6.0,-9.0,-9.0,-9.0,4.0,1247510 -3096335,1630205255,2,10,2,2,1630082689,2,-9.0,-9.0,-9.0,7.0,-9.0,1247510 -3096336,1630205243,2,6,2,3,1630082689,1,-9.0,-9.0,-9.0,4.0,-9.0,1247510 -3096337,1630205246,2,5,2,4,1630082689,1,-9.0,-9.0,-9.0,2.0,-9.0,1247510 -3096338,1630205258,2,3,2,5,1630082689,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247510 -3096339,1630205249,2,0,2,6,1630082689,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247510 -3096340,1630205237,2,54,10,7,1630082689,2,1.0,40.0,1.0,-9.0,4.0,1247510 -3096341,1630205240,2,29,13,8,1630082689,2,3.0,-9.0,-9.0,-9.0,4.0,1247510 -3096342,1630205133,2,32,0,1,1630082690,2,3.0,-9.0,-9.0,-9.0,4.0,1247511 -3096343,1630205149,2,50,1,2,1630082690,1,1.0,30.0,1.0,-9.0,4.0,1247511 -3096344,1630205141,2,9,2,3,1630082690,1,-9.0,-9.0,-9.0,6.0,-9.0,1247511 -3096345,1630205145,2,5,2,4,1630082690,1,-9.0,-9.0,-9.0,2.0,-9.0,1247511 -3096346,1630205153,2,1,2,5,1630082690,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247511 -3096347,1630205137,2,57,15,6,1630082690,2,3.0,-9.0,-9.0,-9.0,4.0,1247511 -3096348,1630205134,2,32,0,1,1630082691,2,3.0,-9.0,-9.0,-9.0,4.0,1247512 -3096349,1630205150,2,50,1,2,1630082691,1,1.0,30.0,1.0,-9.0,4.0,1247512 -3096350,1630205142,2,9,2,3,1630082691,1,-9.0,-9.0,-9.0,6.0,-9.0,1247512 -3096351,1630205146,2,5,2,4,1630082691,1,-9.0,-9.0,-9.0,2.0,-9.0,1247512 -3096352,1630205154,2,1,2,5,1630082691,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247512 -3096353,1630205138,2,57,15,6,1630082691,2,3.0,-9.0,-9.0,-9.0,4.0,1247512 -3096354,1630205135,2,32,0,1,1630082692,2,3.0,-9.0,-9.0,-9.0,4.0,1247513 -3096355,1630205151,2,50,1,2,1630082692,1,1.0,30.0,1.0,-9.0,4.0,1247513 -3096356,1630205143,2,9,2,3,1630082692,1,-9.0,-9.0,-9.0,6.0,-9.0,1247513 -3096357,1630205147,2,5,2,4,1630082692,1,-9.0,-9.0,-9.0,2.0,-9.0,1247513 -3096358,1630205155,2,1,2,5,1630082692,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247513 -3096359,1630205139,2,57,15,6,1630082692,2,3.0,-9.0,-9.0,-9.0,4.0,1247513 -3096360,1630205020,2,32,0,1,1630082693,2,1.0,30.0,1.0,-9.0,4.0,1247514 -3096361,1630205024,2,15,2,2,1630082693,2,-9.0,-9.0,-9.0,12.0,-9.0,1247514 -3096362,1630205022,2,1,2,3,1630082693,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247514 -3096363,1630205021,2,27,5,4,1630082693,2,6.0,-9.0,-9.0,-9.0,4.0,1247514 -3096364,1630205025,2,10,10,5,1630082693,2,-9.0,-9.0,-9.0,7.0,-9.0,1247514 -3096365,1630205023,2,2,10,6,1630082693,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247514 -3096366,1630205223,2,42,0,1,1630082694,2,1.0,25.0,1.0,-9.0,4.0,1247515 -3096367,1630205225,2,19,2,2,1630082694,1,3.0,-9.0,-9.0,-9.0,4.0,1247515 -3096368,1630205227,2,14,2,3,1630082694,2,-9.0,-9.0,-9.0,11.0,-9.0,1247515 -3096369,1630205224,2,42,0,1,1630082695,2,1.0,25.0,1.0,-9.0,4.0,1247516 -3096370,1630205226,2,19,2,2,1630082695,1,3.0,-9.0,-9.0,-9.0,4.0,1247516 -3096371,1630205228,2,14,2,3,1630082695,2,-9.0,-9.0,-9.0,11.0,-9.0,1247516 -3096372,1630204764,2,38,0,1,1630082696,2,1.0,40.0,1.0,15.0,4.0,1247517 -3096373,1630204765,2,19,2,2,1630082696,2,6.0,-9.0,-9.0,15.0,4.0,1247517 -3096374,1630204766,2,8,2,3,1630082696,1,-9.0,-9.0,-9.0,4.0,-9.0,1247517 -3096375,1630205198,2,25,0,1,1630082697,2,1.0,40.0,1.0,-9.0,4.0,1247518 -3096376,1630205201,2,6,2,2,1630082697,2,-9.0,-9.0,-9.0,2.0,-9.0,1247518 -3096377,1630205204,2,2,2,3,1630082697,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247518 -3096378,1630205199,2,25,0,1,1630082698,2,1.0,40.0,1.0,-9.0,4.0,1247519 -3096379,1630205202,2,6,2,2,1630082698,2,-9.0,-9.0,-9.0,2.0,-9.0,1247519 -3096380,1630205205,2,2,2,3,1630082698,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247519 -3096381,1630204920,2,38,0,1,1630082699,1,1.0,50.0,6.0,-9.0,4.0,1247520 -3096382,1630204918,2,29,1,2,1630082699,2,3.0,-9.0,-9.0,-9.0,4.0,1247520 -3096383,1630204919,2,0,2,3,1630082699,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247520 -3096384,1630205200,2,25,0,1,1630082700,2,1.0,40.0,1.0,-9.0,4.0,1247521 -3096385,1630205203,2,6,2,2,1630082700,2,-9.0,-9.0,-9.0,2.0,-9.0,1247521 -3096386,1630205206,2,2,2,3,1630082700,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247521 -3096387,1630204454,2,25,0,1,1630082701,2,3.0,20.0,6.0,15.0,4.0,1247522 -3096388,1630204456,2,4,2,2,1630082701,1,-9.0,-9.0,-9.0,1.0,-9.0,1247522 -3096389,1630204455,2,27,12,3,1630082701,2,1.0,35.0,1.0,-9.0,4.0,1247522 -3096390,1630204767,2,32,0,1,1630082702,2,3.0,8.0,4.0,-9.0,4.0,1247523 -3096391,1630204775,2,8,2,2,1630082702,2,-9.0,-9.0,-9.0,4.0,-9.0,1247523 -3096392,1630204771,2,34,13,3,1630082702,1,1.0,45.0,2.0,-9.0,4.0,1247523 -3096393,1630204768,2,32,0,1,1630082703,2,3.0,8.0,4.0,-9.0,4.0,1247524 -3096394,1630204776,2,8,2,2,1630082703,2,-9.0,-9.0,-9.0,4.0,-9.0,1247524 -3096395,1630204772,2,34,13,3,1630082703,1,1.0,45.0,2.0,-9.0,4.0,1247524 -3096396,1630204769,2,32,0,1,1630082704,2,3.0,8.0,4.0,-9.0,4.0,1247525 -3096397,1630204777,2,8,2,2,1630082704,2,-9.0,-9.0,-9.0,4.0,-9.0,1247525 -3096398,1630204773,2,34,13,3,1630082704,1,1.0,45.0,2.0,-9.0,4.0,1247525 -3096399,1630204770,2,32,0,1,1630082705,2,3.0,8.0,4.0,-9.0,4.0,1247526 -3096400,1630204778,2,8,2,2,1630082705,2,-9.0,-9.0,-9.0,4.0,-9.0,1247526 -3096401,1630204774,2,34,13,3,1630082705,1,1.0,45.0,2.0,-9.0,4.0,1247526 -3096402,1630205188,2,31,0,1,1630082706,1,6.0,-9.0,-9.0,-9.0,4.0,1247527 -3096403,1630205185,2,62,6,2,1630082706,2,1.0,37.0,1.0,-9.0,4.0,1247527 -3096404,1630204674,2,37,0,1,1630082707,2,2.0,25.0,1.0,-9.0,4.0,1247528 -3096405,1630204675,2,19,2,2,1630082707,1,3.0,-9.0,-9.0,-9.0,4.0,1247528 -3096406,1630205189,2,31,0,1,1630082708,1,6.0,-9.0,-9.0,-9.0,4.0,1247529 -3096407,1630205186,2,62,6,2,1630082708,2,1.0,37.0,1.0,-9.0,4.0,1247529 -3096408,1630204741,2,34,0,1,1630082709,2,1.0,40.0,1.0,-9.0,4.0,1247530 -3096409,1630204743,2,14,2,2,1630082709,2,-9.0,-9.0,-9.0,11.0,-9.0,1247530 -3096410,1630205122,2,35,0,1,1630082710,2,1.0,40.0,1.0,-9.0,4.0,1247531 -3096411,1630205123,2,16,2,2,1630082710,2,6.0,-9.0,-9.0,12.0,-9.0,1247531 -3096412,1630204742,2,34,0,1,1630082711,2,1.0,40.0,1.0,-9.0,4.0,1247532 -3096413,1630204744,2,14,2,2,1630082711,2,-9.0,-9.0,-9.0,11.0,-9.0,1247532 -3096414,1630204831,2,35,0,1,1630082712,2,1.0,15.0,5.0,15.0,4.0,1247533 -3096415,1630204832,2,12,2,2,1630082712,2,-9.0,-9.0,-9.0,8.0,-9.0,1247533 -3096416,1630204520,2,26,0,1,1630082713,1,1.0,40.0,1.0,-9.0,4.0,1247534 -3096417,1630204518,2,25,13,2,1630082713,2,6.0,-9.0,-9.0,-9.0,4.0,1247534 -3096418,1630204521,2,26,0,1,1630082714,1,1.0,40.0,1.0,-9.0,4.0,1247535 -3096419,1630204519,2,25,13,2,1630082714,2,6.0,-9.0,-9.0,-9.0,4.0,1247535 -3096420,1630204963,2,31,0,1,1630082715,2,1.0,40.0,1.0,-9.0,4.0,1247536 -3096421,1630204964,2,30,10,2,1630082715,1,6.0,-9.0,-9.0,-9.0,4.0,1247536 -3096422,1630204598,2,36,0,1,1630082716,2,1.0,25.0,1.0,-9.0,4.0,1247537 -3096423,1630204600,2,18,2,2,1630082716,1,6.0,-9.0,-9.0,14.0,4.0,1247537 -3096424,1630204599,2,36,0,1,1630082717,2,1.0,25.0,1.0,-9.0,4.0,1247538 -3096425,1630204601,2,18,2,2,1630082717,1,6.0,-9.0,-9.0,14.0,4.0,1247538 -3096426,1630204678,2,29,0,1,1630082718,2,1.0,40.0,4.0,-9.0,4.0,1247539 -3096427,1630204679,2,9,2,2,1630082718,1,-9.0,-9.0,-9.0,5.0,-9.0,1247539 -3096428,1630204896,2,32,0,1,1630082719,2,1.0,40.0,1.0,-9.0,4.0,1247540 -3096429,1630204899,2,6,2,2,1630082719,2,-9.0,-9.0,-9.0,3.0,-9.0,1247540 -3096430,1630205157,2,30,0,1,1630082720,2,1.0,40.0,1.0,-9.0,4.0,1247541 -3096431,1630205159,2,3,2,2,1630082720,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247541 -3096432,1630204534,2,25,0,1,1630082721,2,1.0,40.0,5.0,-9.0,4.0,1247542 -3096433,1630204536,2,1,2,2,1630082721,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247542 -3096434,1630205158,2,30,0,1,1630082722,2,1.0,40.0,1.0,-9.0,4.0,1247543 -3096435,1630205160,2,3,2,2,1630082722,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247543 -3096436,1630204897,2,32,0,1,1630082723,2,1.0,40.0,1.0,-9.0,4.0,1247544 -3096437,1630204900,2,6,2,2,1630082723,2,-9.0,-9.0,-9.0,3.0,-9.0,1247544 -3096438,1630204984,2,32,0,1,1630082724,2,1.0,20.0,1.0,-9.0,4.0,1247545 -3096439,1630204988,2,10,2,2,1630082724,1,-9.0,-9.0,-9.0,7.0,-9.0,1247545 -3096440,1630204985,2,32,0,1,1630082725,2,1.0,20.0,1.0,-9.0,4.0,1247546 -3096441,1630204989,2,10,2,2,1630082725,1,-9.0,-9.0,-9.0,7.0,-9.0,1247546 -3096442,1630204986,2,32,0,1,1630082726,2,1.0,20.0,1.0,-9.0,4.0,1247547 -3096443,1630204990,2,10,2,2,1630082726,1,-9.0,-9.0,-9.0,7.0,-9.0,1247547 -3096444,1630204535,2,25,0,1,1630082727,2,1.0,40.0,5.0,-9.0,4.0,1247548 -3096445,1630204537,2,1,2,2,1630082727,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247548 -3096446,1630204809,2,26,0,1,1630082728,2,1.0,35.0,5.0,-9.0,4.0,1247549 -3096447,1630204810,2,3,2,2,1630082728,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247549 -3096448,1630204426,2,40,0,1,1630082729,2,2.0,72.0,1.0,-9.0,4.0,1247550 -3096449,1630204428,2,13,2,2,1630082729,1,-9.0,-9.0,-9.0,8.0,-9.0,1247550 -3096450,1630204427,2,40,0,1,1630082730,2,2.0,72.0,1.0,-9.0,4.0,1247551 -3096451,1630204429,2,13,2,2,1630082730,1,-9.0,-9.0,-9.0,8.0,-9.0,1247551 -3096452,1630204987,2,32,0,1,1630082731,2,1.0,20.0,1.0,-9.0,4.0,1247552 -3096453,1630204991,2,10,2,2,1630082731,1,-9.0,-9.0,-9.0,7.0,-9.0,1247552 -3096454,1630204891,2,42,0,1,1630082732,2,1.0,25.0,1.0,-9.0,4.0,1247553 -3096455,1630204893,2,18,2,2,1630082732,1,6.0,-9.0,-9.0,10.0,4.0,1247553 -3096456,1630204792,2,43,0,1,1630082733,2,6.0,20.0,6.0,15.0,4.0,1247554 -3096457,1630204794,2,18,2,2,1630082733,1,2.0,20.0,4.0,14.0,4.0,1247554 -3096458,1630204892,2,42,0,1,1630082734,2,1.0,25.0,1.0,-9.0,4.0,1247555 -3096459,1630204894,2,18,2,2,1630082734,1,6.0,-9.0,-9.0,10.0,4.0,1247555 -3096460,1630204606,2,29,0,1,1630082735,2,6.0,-9.0,-9.0,-9.0,4.0,1247556 -3096461,1630204609,2,32,12,2,1630082735,1,2.0,40.0,4.0,-9.0,4.0,1247556 -3096462,1630204793,2,43,0,1,1630082736,2,6.0,20.0,6.0,15.0,4.0,1247557 -3096463,1630204795,2,18,2,2,1630082736,1,2.0,20.0,4.0,14.0,4.0,1247557 -3096464,1630204607,2,29,0,1,1630082737,2,6.0,-9.0,-9.0,-9.0,4.0,1247558 -3096465,1630204610,2,32,12,2,1630082737,1,2.0,40.0,4.0,-9.0,4.0,1247558 -3096466,1630204682,2,44,0,1,1630082738,2,1.0,40.0,1.0,-9.0,4.0,1247559 -3096467,1630204684,2,18,2,2,1630082738,2,6.0,-9.0,-9.0,14.0,4.0,1247559 -3096468,1630204688,2,12,2,3,1630082738,1,-9.0,-9.0,-9.0,8.0,-9.0,1247559 -3096469,1630204690,2,10,2,4,1630082738,2,-9.0,-9.0,-9.0,7.0,-9.0,1247559 -3096470,1630204686,2,61,6,5,1630082738,2,1.0,37.0,1.0,-9.0,4.0,1247559 -3096471,1630204683,2,44,0,1,1630082739,2,1.0,40.0,1.0,-9.0,4.0,1247560 -3096472,1630204685,2,18,2,2,1630082739,2,6.0,-9.0,-9.0,14.0,4.0,1247560 -3096473,1630204689,2,12,2,3,1630082739,1,-9.0,-9.0,-9.0,8.0,-9.0,1247560 -3096474,1630204691,2,10,2,4,1630082739,2,-9.0,-9.0,-9.0,7.0,-9.0,1247560 -3096475,1630204687,2,61,6,5,1630082739,2,1.0,37.0,1.0,-9.0,4.0,1247560 -3096476,1630205030,2,26,0,1,1630082740,2,1.0,15.0,1.0,-9.0,4.0,1247561 -3096477,1630205031,2,6,2,2,1630082740,1,-9.0,-9.0,-9.0,3.0,-9.0,1247561 -3096478,1630205033,2,2,2,3,1630082740,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247561 -3096479,1630205032,2,34,13,4,1630082740,1,1.0,25.0,1.0,-9.0,4.0,1247561 -3096480,1630204484,2,25,0,1,1630082741,2,1.0,40.0,1.0,15.0,4.0,1247562 -3096481,1630204486,2,9,2,2,1630082741,1,-9.0,-9.0,-9.0,5.0,-9.0,1247562 -3096482,1630204490,2,4,2,3,1630082741,2,-9.0,-9.0,-9.0,1.0,-9.0,1247562 -3096483,1630204488,2,29,13,4,1630082741,1,1.0,40.0,1.0,-9.0,2.0,1247562 -3096484,1630204485,2,25,0,1,1630082742,2,1.0,40.0,1.0,15.0,4.0,1247563 -3096485,1630204487,2,9,2,2,1630082742,1,-9.0,-9.0,-9.0,5.0,-9.0,1247563 -3096486,1630204491,2,4,2,3,1630082742,2,-9.0,-9.0,-9.0,1.0,-9.0,1247563 -3096487,1630204489,2,29,13,4,1630082742,1,1.0,40.0,1.0,-9.0,2.0,1247563 -3096488,1630204977,2,26,0,1,1630082743,2,1.0,40.0,4.0,15.0,4.0,1247564 -3096489,1630204978,2,35,13,2,1630082743,1,1.0,20.0,1.0,-9.0,4.0,1247564 -3096490,1630205278,2,44,0,1,1630082744,1,1.0,40.0,1.0,-9.0,4.0,1247565 -3096491,1630205279,2,25,10,2,1630082744,1,1.0,40.0,1.0,-9.0,4.0,1247565 -3096492,1630204787,2,47,0,1,1630082745,2,2.0,40.0,1.0,-9.0,4.0,1247566 -3096493,1630204791,2,14,10,2,1630082745,2,-9.0,-9.0,-9.0,10.0,-9.0,1247566 -3096494,1630204788,2,12,10,3,1630082745,1,-9.0,-9.0,-9.0,8.0,-9.0,1247566 -3096495,1630204789,2,11,10,4,1630082745,1,-9.0,-9.0,-9.0,7.0,-9.0,1247566 -3096496,1630204790,2,59,15,5,1630082745,1,6.0,-9.0,-9.0,-9.0,4.0,1247566 -3096497,1630205273,2,46,0,1,1630082746,1,1.0,45.0,1.0,-9.0,4.0,1247567 -3096498,1630204414,2,45,0,1,1630082747,2,1.0,40.0,1.0,-9.0,4.0,1247568 -3096499,1630204415,2,22,2,2,1630082747,1,3.0,-9.0,-9.0,-9.0,4.0,1247568 -3096500,1630205296,2,60,0,1,1630082748,1,6.0,-9.0,-9.0,-9.0,4.0,1247569 -3096501,1630205297,2,58,5,2,1630082748,1,1.0,40.0,1.0,-9.0,2.0,1247569 -3096502,1630204337,2,45,0,1,1630082749,2,1.0,40.0,1.0,-9.0,4.0,1247570 -3096503,1630204335,2,68,6,2,1630082749,2,6.0,-9.0,-9.0,-9.0,4.0,1247570 -3096504,1630205101,2,60,0,1,1630082750,1,1.0,48.0,1.0,-9.0,4.0,1247571 -3096505,1630205100,2,60,1,2,1630082750,2,6.0,-9.0,-9.0,-9.0,4.0,1247571 -3096506,1630204755,2,63,0,1,1630082751,2,1.0,40.0,1.0,-9.0,4.0,1247572 -3096507,1630204757,2,17,7,2,1630082751,2,6.0,-9.0,-9.0,13.0,4.0,1247572 -3096508,1630204613,2,54,0,1,1630082752,1,1.0,30.0,1.0,-9.0,4.0,1247573 -3096509,1630204612,2,53,1,2,1630082752,2,1.0,40.0,1.0,15.0,4.0,1247573 -3096510,1630204512,2,57,0,1,1630082753,2,6.0,-9.0,-9.0,-9.0,4.0,1247574 -3096511,1630204556,2,54,0,1,1630082754,2,6.0,-9.0,-9.0,15.0,4.0,1247575 -3096512,1630204895,2,56,0,1,1630082755,2,3.0,-9.0,-9.0,-9.0,4.0,1247576 -3096513,1630204655,2,55,0,1,1630082756,2,6.0,-9.0,-9.0,-9.0,4.0,1247577 -3096514,1630205272,2,55,0,1,1630082757,1,6.0,-9.0,-9.0,-9.0,4.0,1247578 -3096515,1630205284,2,54,0,1,1630082758,1,6.0,-9.0,-9.0,-9.0,4.0,1247579 -3096516,1630205293,2,59,0,1,1630082759,1,6.0,-9.0,-9.0,-9.0,2.0,1247580 -3096517,1630205299,2,62,0,1,1630082760,1,6.0,40.0,5.0,-9.0,4.0,1247581 -3096518,1630205117,2,49,0,1,1630082761,2,6.0,20.0,5.0,-9.0,4.0,1247582 -3096519,1630204994,2,49,0,1,1630082762,2,6.0,-9.0,-9.0,-9.0,4.0,1247583 -3096520,1630204995,2,35,1,2,1630082762,1,6.0,-9.0,-9.0,-9.0,4.0,1247583 -3096521,1630204996,2,30,12,3,1630082762,1,6.0,-9.0,-9.0,-9.0,4.0,1247583 -3096522,1630205161,2,51,0,1,1630082763,2,3.0,-9.0,-9.0,-9.0,3.0,1247584 -3096523,1630205162,2,57,13,2,1630082763,1,3.0,40.0,5.0,-9.0,4.0,1247584 -3096524,1630204680,2,59,0,1,1630082764,2,6.0,-9.0,-9.0,-9.0,4.0,1247585 -3096525,1630204681,2,42,2,2,1630082764,1,3.0,-9.0,-9.0,-9.0,4.0,1247585 -3096526,1630205014,2,54,0,1,1630082765,2,6.0,-9.0,-9.0,-9.0,4.0,1247586 -3096527,1630205015,2,26,2,2,1630082765,1,3.0,-9.0,-9.0,15.0,4.0,1247586 -3096528,1630204477,2,62,0,1,1630082766,1,6.0,-9.0,-9.0,-9.0,4.0,1247587 -3096529,1630204476,2,48,1,2,1630082766,2,6.0,-9.0,-9.0,-9.0,4.0,1247587 -3096530,1630204857,2,57,0,1,1630082767,2,6.0,-9.0,-9.0,-9.0,4.0,1247588 -3096531,1630204858,2,71,1,2,1630082767,1,6.0,-9.0,-9.0,-9.0,4.0,1247588 -3096532,1630205116,2,63,0,1,1630082768,1,6.0,-9.0,-9.0,-9.0,2.0,1247589 -3096533,1630205115,2,41,13,2,1630082768,2,3.0,-9.0,-9.0,-9.0,4.0,1247589 -3096534,1630204614,2,51,0,1,1630082769,2,6.0,-9.0,-9.0,-9.0,4.0,1247590 -3096535,1630204615,2,62,1,2,1630082769,1,6.0,-9.0,-9.0,-9.0,2.0,1247590 -3096536,1630204465,2,50,0,1,1630082770,1,6.0,-9.0,-9.0,-9.0,4.0,1247591 -3096537,1630204464,2,35,2,2,1630082770,2,6.0,-9.0,-9.0,-9.0,4.0,1247591 -3096538,1630205304,2,51,0,1,1630082771,1,6.0,16.0,5.0,-9.0,4.0,1247592 -3096539,1630205305,2,8,2,2,1630082771,2,-9.0,-9.0,-9.0,5.0,-9.0,1247592 -3096540,1630205183,2,50,0,1,1630082772,2,6.0,-9.0,-9.0,-9.0,4.0,1247593 -3096541,1630205184,2,16,2,2,1630082772,1,6.0,-9.0,-9.0,12.0,-9.0,1247593 -3096542,1630205269,2,53,0,1,1630082773,1,6.0,45.0,5.0,11.0,4.0,1247594 -3096543,1630205268,2,14,2,2,1630082773,1,-9.0,-9.0,-9.0,10.0,-9.0,1247594 -3096544,1630204312,2,56,0,1,1630082774,1,6.0,-9.0,-9.0,-9.0,4.0,1247595 -3096545,1630204311,2,68,1,2,1630082774,2,6.0,-9.0,-9.0,-9.0,4.0,1247595 -3096546,1630204326,2,61,0,1,1630082775,1,3.0,-9.0,-9.0,-9.0,4.0,1247596 -3096547,1630204324,2,67,1,2,1630082775,2,6.0,-9.0,-9.0,-9.0,4.0,1247596 -3096548,1630204540,2,46,0,1,1630082776,2,6.0,25.0,5.0,-9.0,4.0,1247597 -3096549,1630204541,2,20,2,2,1630082776,2,6.0,-9.0,-9.0,-9.0,4.0,1247597 -3096550,1630204513,2,51,0,1,1630082777,2,6.0,-9.0,-9.0,-9.0,4.0,1247598 -3096551,1630204514,2,54,15,2,1630082777,1,6.0,-9.0,-9.0,-9.0,4.0,1247598 -3096552,1630205294,2,54,0,1,1630082778,1,3.0,-9.0,-9.0,-9.0,2.0,1247599 -3096553,1630205295,2,15,2,2,1630082778,2,-9.0,-9.0,-9.0,12.0,-9.0,1247599 -3096554,1630204538,2,59,0,1,1630082779,2,6.0,-9.0,-9.0,-9.0,4.0,1247600 -3096555,1630204539,2,16,7,2,1630082779,1,6.0,-9.0,-9.0,13.0,-9.0,1247600 -3096556,1630204644,2,51,0,1,1630082780,2,1.0,30.0,6.0,-9.0,4.0,1247601 -3096557,1630204645,2,15,2,2,1630082780,1,-9.0,-9.0,-9.0,10.0,-9.0,1247601 -3096558,1630204648,2,12,2,3,1630082780,2,-9.0,-9.0,-9.0,9.0,-9.0,1247601 -3096559,1630204646,2,10,2,4,1630082780,1,-9.0,-9.0,-9.0,6.0,-9.0,1247601 -3096560,1630204647,2,8,2,5,1630082780,1,-9.0,-9.0,-9.0,5.0,-9.0,1247601 -3096561,1630205118,2,53,0,1,1630082781,2,1.0,27.0,6.0,-9.0,4.0,1247602 -3096562,1630205121,2,13,2,2,1630082781,2,-9.0,-9.0,-9.0,10.0,-9.0,1247602 -3096563,1630205119,2,60,5,3,1630082781,1,6.0,-9.0,-9.0,-9.0,4.0,1247602 -3096564,1630205120,2,57,5,4,1630082781,1,6.0,-9.0,-9.0,-9.0,4.0,1247602 -3096565,1630204508,2,53,0,1,1630082782,2,6.0,-9.0,-9.0,-9.0,4.0,1247603 -3096566,1630204509,2,22,2,2,1630082782,2,1.0,6.0,1.0,15.0,4.0,1247603 -3096567,1630204510,2,13,2,3,1630082782,1,-9.0,-9.0,-9.0,11.0,-9.0,1247603 -3096568,1630204511,2,1,7,4,1630082782,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247603 -3096569,1630204970,2,58,0,1,1630082783,2,1.0,40.0,1.0,-9.0,4.0,1247604 -3096570,1630205283,2,49,0,1,1630082784,1,1.0,25.0,1.0,-9.0,4.0,1247605 -3096571,1630204971,2,58,0,1,1630082785,2,1.0,40.0,1.0,-9.0,4.0,1247606 -3096572,1630205300,2,60,0,1,1630082786,1,1.0,35.0,1.0,-9.0,4.0,1247607 -3096573,1630205229,2,51,0,1,1630082787,2,1.0,20.0,6.0,-9.0,4.0,1247608 -3096574,1630204781,2,45,0,1,1630082788,2,1.0,40.0,1.0,-9.0,4.0,1247609 -3096575,1630204784,2,16,2,2,1630082788,2,6.0,-9.0,-9.0,12.0,-9.0,1247609 -3096576,1630204785,2,13,2,3,1630082788,2,-9.0,-9.0,-9.0,9.0,-9.0,1247609 -3096577,1630204782,2,12,2,4,1630082788,1,-9.0,-9.0,-9.0,8.0,-9.0,1247609 -3096578,1630204786,2,12,2,5,1630082788,2,-9.0,-9.0,-9.0,8.0,-9.0,1247609 -3096579,1630204783,2,8,2,6,1630082788,1,-9.0,-9.0,-9.0,4.0,-9.0,1247609 -3096580,1630204505,2,49,0,1,1630082789,2,6.0,-9.0,-9.0,-9.0,4.0,1247610 -3096581,1630204507,2,49,1,2,1630082789,1,1.0,40.0,6.0,-9.0,2.0,1247610 -3096582,1630204506,2,20,2,3,1630082789,2,3.0,-9.0,-9.0,-9.0,4.0,1247610 -3096583,1630204658,2,58,0,1,1630082790,1,6.0,-9.0,-9.0,-9.0,4.0,1247611 -3096584,1630204656,2,52,1,2,1630082790,2,1.0,32.0,4.0,-9.0,4.0,1247611 -3096585,1630204657,2,14,2,3,1630082790,1,-9.0,-9.0,-9.0,10.0,-9.0,1247611 -3096586,1630204334,2,54,0,1,1630082791,2,1.0,50.0,4.0,-9.0,4.0,1247612 -3096587,1630204333,2,88,6,2,1630082791,2,6.0,-9.0,-9.0,-9.0,4.0,1247612 -3096588,1630204824,2,52,0,1,1630082792,2,6.0,-9.0,-9.0,-9.0,4.0,1247613 -3096589,1630204825,2,22,2,2,1630082792,1,1.0,21.0,1.0,-9.0,4.0,1247613 -3096590,1630204992,2,52,0,1,1630082793,2,1.0,8.0,6.0,-9.0,4.0,1247614 -3096591,1630204993,2,60,15,2,1630082793,1,6.0,-9.0,-9.0,-9.0,4.0,1247614 -3096592,1630204466,2,55,0,1,1630082794,2,1.0,40.0,1.0,-9.0,4.0,1247615 -3096593,1630204467,2,25,2,2,1630082794,1,3.0,-9.0,-9.0,-9.0,4.0,1247615 -3096594,1630204528,2,55,0,1,1630082795,2,1.0,35.0,1.0,-9.0,4.0,1247616 -3096595,1630204531,2,23,2,2,1630082795,1,3.0,-9.0,-9.0,15.0,4.0,1247616 -3096596,1630205111,2,50,0,1,1630082796,2,1.0,40.0,2.0,-9.0,4.0,1247617 -3096597,1630205113,2,31,2,2,1630082796,1,3.0,24.0,6.0,-9.0,4.0,1247617 -3096598,1630204529,2,55,0,1,1630082797,2,1.0,35.0,1.0,-9.0,4.0,1247618 -3096599,1630204532,2,23,2,2,1630082797,1,3.0,-9.0,-9.0,15.0,4.0,1247618 -3096600,1630204530,2,55,0,1,1630082798,2,1.0,35.0,1.0,-9.0,4.0,1247619 -3096601,1630204533,2,23,2,2,1630082798,1,3.0,-9.0,-9.0,15.0,4.0,1247619 -3096602,1630205006,2,57,0,1,1630082799,2,1.0,40.0,1.0,-9.0,4.0,1247620 -3096603,1630205007,2,48,5,2,1630082799,1,6.0,-9.0,-9.0,-9.0,4.0,1247620 -3096604,1630205112,2,50,0,1,1630082800,2,1.0,40.0,2.0,-9.0,4.0,1247621 -3096605,1630205114,2,31,2,2,1630082800,1,3.0,24.0,6.0,-9.0,4.0,1247621 -3096606,1630204522,2,55,0,1,1630082801,2,1.0,20.0,4.0,-9.0,4.0,1247622 -3096607,1630204523,2,23,2,2,1630082801,1,6.0,-9.0,-9.0,-9.0,4.0,1247622 -3096608,1630204855,2,54,0,1,1630082802,1,1.0,40.0,3.0,-9.0,2.0,1247623 -3096609,1630204853,2,49,1,2,1630082802,2,6.0,-9.0,-9.0,-9.0,4.0,1247623 -3096610,1630204457,2,53,0,1,1630082803,2,1.0,98.0,1.0,-9.0,4.0,1247624 -3096611,1630204459,2,58,1,2,1630082803,1,6.0,-9.0,-9.0,-9.0,4.0,1247624 -3096612,1630204458,2,53,0,1,1630082804,2,1.0,98.0,1.0,-9.0,4.0,1247625 -3096613,1630204460,2,58,1,2,1630082804,1,6.0,-9.0,-9.0,-9.0,4.0,1247625 -3096614,1630204921,2,54,0,1,1630082805,2,1.0,32.0,1.0,-9.0,4.0,1247626 -3096615,1630204922,2,51,1,2,1630082805,1,1.0,20.0,5.0,15.0,4.0,1247626 -3096616,1630204902,2,50,0,1,1630082806,2,1.0,30.0,1.0,-9.0,4.0,1247627 -3096617,1630204903,2,19,2,2,1630082806,2,1.0,20.0,3.0,-9.0,4.0,1247627 -3096618,1630204833,2,49,0,1,1630082807,2,1.0,48.0,1.0,-9.0,4.0,1247628 -3096619,1630204834,2,26,2,2,1630082807,1,1.0,3.0,6.0,-9.0,4.0,1247628 -3096620,1630205267,2,66,0,1,1630082808,1,6.0,-9.0,-9.0,-9.0,4.0,1247629 -3096621,1630205262,2,50,1,2,1630082808,2,1.0,40.0,1.0,-9.0,4.0,1247629 -3096622,1630205263,2,29,2,3,1630082808,2,6.0,-9.0,-9.0,-9.0,4.0,1247629 -3096623,1630205264,2,24,2,4,1630082808,2,6.0,-9.0,-9.0,12.0,4.0,1247629 -3096624,1630205265,2,12,7,5,1630082808,2,-9.0,-9.0,-9.0,8.0,-9.0,1247629 -3096625,1630205266,2,7,7,6,1630082808,2,-9.0,-9.0,-9.0,3.0,-9.0,1247629 -3096626,1630204347,2,73,0,1,1630082809,2,6.0,-9.0,-9.0,-9.0,4.0,1247630 -3096627,1630204348,2,66,5,2,1630082809,2,1.0,6.0,3.0,-9.0,4.0,1247630 -3096628,1630204378,2,73,0,1,1630082810,1,1.0,4.0,5.0,-9.0,4.0,1247631 -3096629,1630204377,2,80,1,2,1630082810,2,6.0,-9.0,-9.0,-9.0,4.0,1247631 -3096630,1630204310,2,86,0,1,1630082811,2,6.0,-9.0,-9.0,-9.0,4.0,1247632 -3096631,1630205311,2,86,0,1,1630082812,1,6.0,-9.0,-9.0,-9.0,4.0,1247633 -3096632,1630205312,2,76,0,1,1630082813,1,6.0,-9.0,-9.0,-9.0,4.0,1247634 -3096633,1630205309,2,76,0,1,1630082814,1,6.0,-9.0,-9.0,-9.0,2.0,1247635 -3096634,1630205306,2,79,0,1,1630082815,1,6.0,-9.0,-9.0,-9.0,2.0,1247636 -3096635,1630204251,2,94,0,1,1630082816,2,6.0,-9.0,-9.0,-9.0,4.0,1247637 -3096636,1630204269,2,74,0,1,1630082817,2,6.0,-9.0,-9.0,-9.0,4.0,1247638 -3096637,1630205308,2,72,0,1,1630082818,1,3.0,-9.0,-9.0,15.0,2.0,1247639 -3096638,1630204332,2,69,0,1,1630082819,2,6.0,-9.0,-9.0,-9.0,4.0,1247640 -3096639,1630205307,2,76,0,1,1630082820,1,3.0,-9.0,-9.0,-9.0,4.0,1247641 -3096640,1630205310,2,65,0,1,1630082821,1,6.0,12.0,6.0,15.0,2.0,1247642 -3096641,1630204262,2,65,0,1,1630082822,2,6.0,-9.0,-9.0,-9.0,4.0,1247643 -3096642,1630204374,2,65,0,1,1630082823,2,6.0,-9.0,-9.0,-9.0,4.0,1247644 -3096643,1630204358,2,65,0,1,1630082824,2,6.0,-9.0,-9.0,-9.0,4.0,1247645 -3096644,1630204366,2,60,1,2,1630082824,1,6.0,-9.0,-9.0,-9.0,4.0,1247645 -3096645,1630204368,2,21,7,3,1630082824,1,6.0,-9.0,-9.0,15.0,4.0,1247645 -3096646,1630204360,2,17,7,4,1630082824,1,6.0,-9.0,-9.0,14.0,4.0,1247645 -3096647,1630204362,2,16,7,5,1630082824,1,6.0,-9.0,-9.0,13.0,-9.0,1247645 -3096648,1630204364,2,14,7,6,1630082824,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247645 -3096649,1630204359,2,65,0,1,1630082825,2,6.0,-9.0,-9.0,-9.0,4.0,1247646 -3096650,1630204367,2,60,1,2,1630082825,1,6.0,-9.0,-9.0,-9.0,4.0,1247646 -3096651,1630204369,2,21,7,3,1630082825,1,6.0,-9.0,-9.0,15.0,4.0,1247646 -3096652,1630204361,2,17,7,4,1630082825,1,6.0,-9.0,-9.0,14.0,4.0,1247646 -3096653,1630204363,2,16,7,5,1630082825,1,6.0,-9.0,-9.0,13.0,-9.0,1247646 -3096654,1630204365,2,14,7,6,1630082825,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247646 -3096655,1630204256,2,71,0,1,1630082826,2,6.0,-9.0,-9.0,-9.0,4.0,1247647 -3096656,1630204258,2,74,1,2,1630082826,1,6.0,-9.0,-9.0,-9.0,4.0,1247647 -3096657,1630204916,2,69,0,1,1630082827,1,6.0,-9.0,-9.0,-9.0,2.0,1247648 -3096658,1630204914,2,61,12,2,1630082827,2,6.0,-9.0,-9.0,-9.0,4.0,1247648 -3096659,1630204257,2,71,0,1,1630082828,2,6.0,-9.0,-9.0,-9.0,4.0,1247649 -3096660,1630204259,2,74,1,2,1630082828,1,6.0,-9.0,-9.0,-9.0,4.0,1247649 -3096661,1630204261,2,76,0,1,1630082829,1,6.0,-9.0,-9.0,-9.0,2.0,1247650 -3096662,1630204260,2,68,1,2,1630082829,2,6.0,-9.0,-9.0,-9.0,4.0,1247650 -3096663,1630204380,2,90,0,1,1630082830,1,6.0,-9.0,-9.0,-9.0,2.0,1247651 -3096664,1630204379,2,85,1,2,1630082830,2,6.0,-9.0,-9.0,-9.0,4.0,1247651 -3096665,1630204316,2,72,0,1,1630082831,2,6.0,-9.0,-9.0,-9.0,4.0,1247652 -3096666,1630204317,2,52,2,2,1630082831,1,6.0,-9.0,-9.0,-9.0,4.0,1247652 -3096667,1630204917,2,69,0,1,1630082832,1,6.0,-9.0,-9.0,-9.0,2.0,1247653 -3096668,1630204915,2,61,12,2,1630082832,2,6.0,-9.0,-9.0,-9.0,4.0,1247653 -3096669,1630204375,2,66,0,1,1630082833,2,6.0,-9.0,-9.0,-9.0,4.0,1247654 -3096670,1630204376,2,21,10,2,1630082833,1,3.0,-9.0,-9.0,-9.0,4.0,1247654 -3096671,1630204349,2,68,0,1,1630082834,2,6.0,-9.0,-9.0,-9.0,4.0,1247655 -3096672,1630204350,2,55,1,2,1630082834,1,6.0,-9.0,-9.0,-9.0,2.0,1247655 -3096673,1630204381,2,81,0,1,1630082835,2,6.0,-9.0,-9.0,-9.0,4.0,1247656 -3096674,1630204382,2,55,2,2,1630082835,2,6.0,-9.0,-9.0,-9.0,2.0,1247656 -3096675,1630204270,2,84,0,1,1630082836,2,6.0,-9.0,-9.0,-9.0,4.0,1247657 -3096676,1630204272,2,49,2,2,1630082836,1,6.0,-9.0,-9.0,-9.0,4.0,1247657 -3096677,1630204271,2,84,0,1,1630082837,2,6.0,-9.0,-9.0,-9.0,4.0,1247658 -3096678,1630204273,2,49,2,2,1630082837,1,6.0,-9.0,-9.0,-9.0,4.0,1247658 -3096679,1630204351,2,66,0,1,1630082838,2,3.0,-9.0,-9.0,-9.0,4.0,1247659 -3096680,1630204352,2,8,7,2,1630082838,1,-9.0,-9.0,-9.0,5.0,-9.0,1247659 -3096681,1630204263,2,65,0,1,1630082839,2,6.0,-9.0,-9.0,-9.0,4.0,1247660 -3096682,1630204265,2,65,1,2,1630082839,1,6.0,-9.0,-9.0,-9.0,4.0,1247660 -3096683,1630204264,2,65,0,1,1630082840,2,6.0,-9.0,-9.0,-9.0,4.0,1247661 -3096684,1630204266,2,65,1,2,1630082840,1,6.0,-9.0,-9.0,-9.0,4.0,1247661 -3096685,1630204267,2,71,0,1,1630082841,2,6.0,-9.0,-9.0,-9.0,4.0,1247662 -3096686,1630204268,2,52,15,2,1630082841,2,1.0,28.0,1.0,-9.0,4.0,1247662 -3096687,1630204328,2,72,0,1,1630082842,2,6.0,-9.0,-9.0,-9.0,4.0,1247663 -3096688,1630204329,2,41,2,2,1630082842,1,1.0,40.0,1.0,-9.0,4.0,1247663 -3096689,1630205001,2,37,0,1,1630082843,1,1.0,40.0,1.0,-9.0,4.0,1247664 -3096690,1630204999,2,37,1,2,1630082843,2,1.0,15.0,1.0,-9.0,4.0,1247664 -3096691,1630205002,2,13,2,3,1630082843,2,-9.0,-9.0,-9.0,10.0,-9.0,1247664 -3096692,1630205000,2,10,2,4,1630082843,1,-9.0,-9.0,-9.0,6.0,-9.0,1247664 -3096693,1630204245,2,74,0,1,1630082844,2,6.0,-9.0,-9.0,-9.0,4.0,1247665 -3096694,1630204246,2,46,2,2,1630082844,1,6.0,-9.0,-9.0,-9.0,4.0,1247665 -3096695,1630204698,2,43,0,1,1630082845,2,3.0,-9.0,-9.0,-9.0,4.0,1247666 -3096696,1630204704,2,15,2,2,1630082845,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247666 -3096697,1630204701,2,20,3,3,1630082845,2,6.0,-9.0,-9.0,-9.0,4.0,1247666 -3096698,1630204707,2,13,3,4,1630082845,2,-9.0,-9.0,-9.0,8.0,-9.0,1247666 -3096699,1630204710,2,11,3,5,1630082845,2,-9.0,-9.0,-9.0,6.0,-9.0,1247666 -3096700,1630204713,2,10,3,6,1630082845,2,-9.0,-9.0,-9.0,6.0,-9.0,1247666 -3096701,1630204472,2,40,0,1,1630082846,2,1.0,72.0,1.0,-9.0,4.0,1247667 -3096702,1630204475,2,19,2,2,1630082846,1,3.0,-9.0,-9.0,-9.0,4.0,1247667 -3096703,1630204473,2,18,2,3,1630082846,2,6.0,-9.0,-9.0,14.0,4.0,1247667 -3096704,1630204474,2,16,2,4,1630082846,1,6.0,-9.0,-9.0,13.0,-9.0,1247667 -3096705,1630204972,2,37,0,1,1630082847,2,1.0,30.0,1.0,-9.0,4.0,1247668 -3096706,1630204974,2,16,2,2,1630082847,2,6.0,-9.0,-9.0,12.0,-9.0,1247668 -3096707,1630204975,2,10,2,3,1630082847,2,-9.0,-9.0,-9.0,5.0,-9.0,1247668 -3096708,1630204973,2,8,2,4,1630082847,1,-9.0,-9.0,-9.0,4.0,-9.0,1247668 -3096709,1630204976,2,5,2,5,1630082847,2,-9.0,-9.0,-9.0,2.0,-9.0,1247668 -3096710,1630204318,2,76,0,1,1630082848,2,6.0,-9.0,-9.0,-9.0,4.0,1247669 -3096711,1630204319,2,18,7,2,1630082848,2,6.0,-9.0,-9.0,13.0,4.0,1247669 -3096712,1630205049,2,29,0,1,1630082849,2,6.0,-9.0,-9.0,-9.0,4.0,1247670 -3096713,1630205053,2,14,2,2,1630082849,1,-9.0,-9.0,-9.0,9.0,-9.0,1247670 -3096714,1630205057,2,4,2,3,1630082849,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247670 -3096715,1630205061,2,2,2,4,1630082849,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247670 -3096716,1630205065,2,45,6,5,1630082849,1,3.0,-9.0,-9.0,-9.0,4.0,1247670 -3096717,1630205102,2,42,0,1,1630082850,2,3.0,-9.0,-9.0,-9.0,4.0,1247671 -3096718,1630205103,2,23,2,2,1630082850,2,6.0,-9.0,-9.0,-9.0,4.0,1247671 -3096719,1630205104,2,21,2,3,1630082850,2,6.0,-9.0,-9.0,11.0,4.0,1247671 -3096720,1630205105,2,18,2,4,1630082850,2,6.0,-9.0,-9.0,15.0,4.0,1247671 -3096721,1630205107,2,15,2,5,1630082850,2,-9.0,-9.0,-9.0,11.0,-9.0,1247671 -3096722,1630205108,2,11,2,6,1630082850,2,-9.0,-9.0,-9.0,7.0,-9.0,1247671 -3096723,1630205109,2,10,2,7,1630082850,2,-9.0,-9.0,-9.0,6.0,-9.0,1247671 -3096724,1630205106,2,9,2,8,1630082850,1,-9.0,-9.0,-9.0,5.0,-9.0,1247671 -3096725,1630204501,2,61,0,1,1630082851,1,3.0,-9.0,-9.0,-9.0,4.0,1247672 -3096726,1630204500,2,48,1,2,1630082851,2,3.0,15.0,6.0,-9.0,4.0,1247672 -3096727,1630204911,2,32,0,1,1630082852,1,1.0,40.0,1.0,-9.0,4.0,1247673 -3096728,1630204912,2,7,2,2,1630082852,2,-9.0,-9.0,-9.0,4.0,-9.0,1247673 -3096729,1630204913,2,6,2,3,1630082852,2,-9.0,-9.0,-9.0,3.0,-9.0,1247673 -3096730,1630204910,2,29,13,4,1630082852,2,1.0,25.0,1.0,-9.0,4.0,1247673 -3096731,1630204835,2,37,0,1,1630082853,2,1.0,40.0,1.0,-9.0,4.0,1247674 -3096732,1630204836,2,19,2,2,1630082853,2,3.0,-9.0,-9.0,-9.0,4.0,1247674 -3096733,1630204839,2,18,2,3,1630082853,1,6.0,-9.0,-9.0,-9.0,4.0,1247674 -3096734,1630204837,2,16,2,4,1630082853,1,6.0,-9.0,-9.0,13.0,-9.0,1247674 -3096735,1630204840,2,13,2,5,1630082853,2,-9.0,-9.0,-9.0,9.0,-9.0,1247674 -3096736,1630204841,2,1,2,6,1630082853,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247674 -3096737,1630204838,2,2,7,7,1630082853,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247674 -3096738,1630204842,2,0,7,8,1630082853,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247674 -3096739,1630204827,2,36,0,1,1630082854,2,1.0,40.0,1.0,-9.0,4.0,1247675 -3096740,1630204830,2,14,2,2,1630082854,2,-9.0,-9.0,-9.0,11.0,-9.0,1247675 -3096741,1630204829,2,36,13,3,1630082854,1,1.0,30.0,1.0,-9.0,4.0,1247675 -3096742,1630204828,2,18,15,4,1630082854,2,6.0,-9.0,-9.0,-9.0,4.0,1247675 -3096743,1630204807,2,42,0,1,1630082855,1,6.0,-9.0,-9.0,-9.0,4.0,1247676 -3096744,1630204805,2,38,1,2,1630082855,2,3.0,-9.0,-9.0,-9.0,4.0,1247676 -3096745,1630204806,2,19,4,3,1630082855,2,6.0,-9.0,-9.0,-9.0,4.0,1247676 -3096746,1630204808,2,18,4,4,1630082855,1,6.0,-9.0,-9.0,-9.0,4.0,1247676 -3096747,1630205171,2,40,0,1,1630082856,2,3.0,-9.0,-9.0,-9.0,4.0,1247677 -3096748,1630205174,2,19,2,2,1630082856,2,6.0,-9.0,-9.0,15.0,4.0,1247677 -3096749,1630205177,2,18,2,3,1630082856,1,6.0,-9.0,-9.0,14.0,4.0,1247677 -3096750,1630205180,2,3,7,4,1630082856,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247677 -3096751,1630204748,2,47,0,1,1630082857,1,2.0,18.0,1.0,15.0,2.0,1247678 -3096752,1630204754,4,48,1,2,1630082857,2,6.0,-9.0,-9.0,-9.0,4.0,1247678 -3096753,1630204749,2,24,2,3,1630082857,1,6.0,5.0,6.0,-9.0,4.0,1247678 -3096754,1630204745,2,19,2,4,1630082857,2,6.0,-9.0,-9.0,14.0,4.0,1247678 -3096755,1630204746,2,19,2,5,1630082857,2,6.0,-9.0,-9.0,14.0,4.0,1247678 -3096756,1630204750,2,17,2,6,1630082857,2,6.0,-9.0,-9.0,12.0,4.0,1247678 -3096757,1630204751,2,14,2,7,1630082857,2,-9.0,-9.0,-9.0,11.0,-9.0,1247678 -3096758,1630204752,2,13,2,8,1630082857,2,-9.0,-9.0,-9.0,9.0,-9.0,1247678 -3096759,1630204753,2,12,2,9,1630082857,2,-9.0,-9.0,-9.0,10.0,-9.0,1247678 -3096760,1630204747,2,4,2,10,1630082857,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247678 -3096761,1630204667,2,37,0,1,1630082858,2,1.0,50.0,1.0,-9.0,4.0,1247679 -3096762,1630204668,2,17,2,2,1630082858,1,6.0,-9.0,-9.0,14.0,4.0,1247679 -3096763,1630204669,2,15,2,3,1630082858,1,-9.0,-9.0,-9.0,11.0,-9.0,1247679 -3096764,1630204670,2,12,2,4,1630082858,1,-9.0,-9.0,-9.0,9.0,-9.0,1247679 -3096765,1630204671,2,12,2,5,1630082858,1,-9.0,-9.0,-9.0,9.0,-9.0,1247679 -3096766,1630204673,2,10,2,6,1630082858,2,-9.0,-9.0,-9.0,7.0,-9.0,1247679 -3096767,1630204672,2,7,2,7,1630082858,1,-9.0,-9.0,-9.0,4.0,-9.0,1247679 -3096768,1630204525,2,43,0,1,1630082859,2,6.0,40.0,1.0,-9.0,4.0,1247680 -3096769,1630204527,2,46,12,2,1630082859,1,3.0,20.0,5.0,-9.0,4.0,1247680 -3096770,1630204515,2,29,0,1,1630082860,2,3.0,25.0,5.0,-9.0,4.0,1247681 -3096771,1630204516,2,10,2,2,1630082860,1,-9.0,-9.0,-9.0,7.0,-9.0,1247681 -3096772,1630204517,2,6,2,3,1630082860,1,-9.0,-9.0,-9.0,3.0,-9.0,1247681 -3096773,1630204499,2,26,0,1,1630082861,2,6.0,-9.0,-9.0,-9.0,4.0,1247682 -3096774,1630204493,2,47,0,1,1630082862,1,2.0,40.0,1.0,-9.0,2.0,1247683 -3096775,1630204492,2,52,1,2,1630082862,2,1.0,16.0,6.0,-9.0,4.0,1247683 -3096776,1630204247,2,78,0,1,1630082863,2,6.0,-9.0,-9.0,-9.0,4.0,1247684 -3096777,1630204248,2,51,2,2,1630082863,2,1.0,30.0,1.0,-9.0,4.0,1247684 -3096778,1630204249,2,17,7,3,1630082863,2,6.0,-9.0,-9.0,12.0,4.0,1247684 -3096779,1630204250,2,17,7,4,1630082863,2,6.0,-9.0,-9.0,12.0,4.0,1247684 -3096780,1630204553,2,30,0,1,1630082864,2,1.0,38.0,2.0,-9.0,4.0,1247685 -3096781,1630204554,2,6,2,2,1630082864,2,-9.0,-9.0,-9.0,2.0,-9.0,1247685 -3096782,1630204555,2,4,2,3,1630082864,2,-9.0,-9.0,-9.0,1.0,-9.0,1247685 -3096783,1630205271,2,47,0,1,1630082865,1,1.0,40.0,1.0,-9.0,4.0,1247686 -3096784,1630205270,2,10,2,2,1630082865,1,-9.0,-9.0,-9.0,6.0,-9.0,1247686 -3096785,1630204721,2,42,0,1,1630082866,2,6.0,-9.0,-9.0,-9.0,4.0,1247687 -3096786,1630204723,2,24,2,2,1630082866,1,1.0,20.0,4.0,-9.0,4.0,1247687 -3096787,1630204722,2,23,2,3,1630082866,2,1.0,30.0,1.0,-9.0,4.0,1247687 -3096788,1630204724,2,21,2,4,1630082866,1,6.0,-9.0,-9.0,-9.0,4.0,1247687 -3096789,1630204725,2,20,2,5,1630082866,1,3.0,-9.0,-9.0,-9.0,4.0,1247687 -3096790,1630204727,2,16,2,6,1630082866,2,3.0,-9.0,-9.0,13.0,-9.0,1247687 -3096791,1630204728,2,2,7,7,1630082866,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247687 -3096792,1630204726,2,30,12,8,1630082866,1,3.0,15.0,5.0,-9.0,4.0,1247687 -3096793,1630205130,2,55,0,1,1630082867,2,6.0,-9.0,-9.0,-9.0,4.0,1247688 -3096794,1630205131,2,26,2,2,1630082867,2,1.0,25.0,4.0,15.0,4.0,1247688 -3096795,1630205132,2,1,7,3,1630082867,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247688 -3096796,1630205285,2,52,0,1,1630082868,1,1.0,40.0,1.0,15.0,4.0,1247689 -3096797,1630205286,2,52,15,2,1630082868,1,1.0,40.0,1.0,15.0,4.0,1247689 -3096798,1630205191,2,34,0,1,1630082869,2,2.0,40.0,1.0,-9.0,4.0,1247690 -3096799,1630204779,2,45,0,1,1630082870,2,1.0,40.0,1.0,-9.0,4.0,1247691 -3096800,1630204780,2,14,2,2,1630082870,2,-9.0,-9.0,-9.0,10.0,-9.0,1247691 -3096801,1630204330,2,75,0,1,1630082871,2,1.0,20.0,1.0,-9.0,4.0,1247692 -3096802,1630204331,2,62,13,2,1630082871,2,6.0,-9.0,-9.0,-9.0,4.0,1247692 -3096803,1630205232,2,44,0,1,1630082872,2,6.0,-9.0,-9.0,-9.0,4.0,1247693 -3096804,1630205233,2,5,3,2,1630082872,1,-9.0,-9.0,-9.0,2.0,-9.0,1247693 -3096805,1630205234,2,35,5,3,1630082872,1,6.0,-9.0,-9.0,-9.0,4.0,1247693 -3096806,1630205043,2,38,0,1,1630082873,2,1.0,36.0,1.0,-9.0,4.0,1247694 -3096807,1630205045,2,4,2,2,1630082873,2,-9.0,-9.0,-9.0,1.0,-9.0,1247694 -3096808,1630204714,2,39,0,1,1630082874,2,3.0,-9.0,-9.0,-9.0,4.0,1247695 -3096809,1630204716,2,13,2,2,1630082874,1,-9.0,-9.0,-9.0,9.0,-9.0,1247695 -3096810,1630204719,2,11,2,3,1630082874,2,-9.0,-9.0,-9.0,6.0,-9.0,1247695 -3096811,1630204717,2,15,10,4,1630082874,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247695 -3096812,1630204720,2,7,10,5,1630082874,2,-9.0,-9.0,-9.0,3.0,-9.0,1247695 -3096813,1630204718,2,35,13,6,1630082874,1,6.0,-9.0,-9.0,-9.0,4.0,1247695 -3096814,1630204715,2,30,15,7,1630082874,2,6.0,-9.0,-9.0,-9.0,4.0,1247695 -3096815,1630204546,2,32,0,1,1630082875,2,1.0,40.0,1.0,15.0,2.0,1247696 -3096816,1630204547,2,11,2,2,1630082875,1,-9.0,-9.0,-9.0,8.0,-9.0,1247696 -3096817,1630204904,2,57,0,1,1630082876,2,1.0,28.0,4.0,-9.0,4.0,1247697 -3096818,1630204906,2,28,2,2,1630082876,1,6.0,-9.0,-9.0,13.0,4.0,1247697 -3096819,1630204905,2,6,7,3,1630082876,1,-9.0,-9.0,-9.0,4.0,-9.0,1247697 -3096820,1630204496,2,29,0,1,1630082877,1,1.0,50.0,5.0,-9.0,4.0,1247698 -3096821,1630204495,2,2,2,2,1630082877,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247698 -3096822,1630204494,2,27,13,3,1630082877,2,1.0,45.0,1.0,-9.0,4.0,1247698 -3096823,1630204856,2,54,0,1,1630082878,1,1.0,40.0,3.0,-9.0,2.0,1247699 -3096824,1630204854,2,49,1,2,1630082878,2,6.0,-9.0,-9.0,-9.0,4.0,1247699 -3096825,1630204461,2,45,0,1,1630082879,2,1.0,13.0,5.0,-9.0,4.0,1247700 -3096826,1630204462,2,22,2,2,1630082879,2,6.0,-9.0,-9.0,15.0,4.0,1247700 -3096827,1630204463,2,22,2,3,1630082879,1,6.0,-9.0,-9.0,14.0,4.0,1247700 -3096828,1630204354,2,54,0,1,1630082880,2,1.0,32.0,1.0,-9.0,4.0,1247701 -3096829,1630204355,2,13,3,2,1630082880,1,-9.0,-9.0,-9.0,9.0,-9.0,1247701 -3096830,1630204356,2,9,3,3,1630082880,2,-9.0,-9.0,-9.0,5.0,-9.0,1247701 -3096831,1630204357,2,8,3,4,1630082880,2,-9.0,-9.0,-9.0,4.0,-9.0,1247701 -3096832,1630204353,2,70,6,5,1630082880,2,6.0,-9.0,-9.0,-9.0,4.0,1247701 -3096833,1630204649,2,62,0,1,1630082881,2,1.0,40.0,1.0,-9.0,4.0,1247702 -3096834,1630204650,2,63,1,2,1630082881,1,6.0,-9.0,-9.0,-9.0,4.0,1247702 -3096835,1630204327,2,61,0,1,1630082882,1,3.0,-9.0,-9.0,-9.0,4.0,1247703 -3096836,1630204325,2,67,1,2,1630082882,2,6.0,-9.0,-9.0,-9.0,4.0,1247703 -3096837,1630204321,2,47,0,1,1630082883,2,1.0,40.0,1.0,-9.0,4.0,1247704 -3096838,1630204323,2,54,5,2,1630082883,1,3.0,-9.0,-9.0,15.0,4.0,1247704 -3096839,1630204322,2,48,5,3,1630082883,2,1.0,7.0,1.0,-9.0,4.0,1247704 -3096840,1630204320,2,72,6,4,1630082883,2,6.0,-9.0,-9.0,-9.0,4.0,1247704 -3096841,1630204608,2,29,0,1,1630082884,2,6.0,-9.0,-9.0,-9.0,4.0,1247705 -3096842,1630204611,2,32,12,2,1630082884,1,2.0,40.0,4.0,-9.0,4.0,1247705 -3096843,1630205034,2,33,0,1,1630082885,2,3.0,-9.0,-9.0,-9.0,4.0,1247706 -3096844,1630205035,2,10,2,2,1630082885,1,-9.0,-9.0,-9.0,7.0,-9.0,1247706 -3096845,1630205037,2,5,2,3,1630082885,2,-9.0,-9.0,-9.0,2.0,-9.0,1247706 -3096846,1630205036,2,4,2,4,1630082885,1,-9.0,-9.0,-9.0,1.0,-9.0,1247706 -3096847,1630204338,2,45,0,1,1630082886,2,1.0,40.0,1.0,-9.0,4.0,1247707 -3096848,1630204336,2,68,6,2,1630082886,2,6.0,-9.0,-9.0,-9.0,4.0,1247707 -3096849,1630204662,2,54,0,1,1630082887,2,6.0,-9.0,-9.0,15.0,4.0,1247708 -3096850,1630204663,2,25,2,2,1630082887,2,1.0,65.0,1.0,-9.0,4.0,1247708 -3096851,1630204664,2,19,2,3,1630082887,2,3.0,3.0,6.0,-9.0,4.0,1247708 -3096852,1630204616,2,46,0,1,1630082888,2,6.0,-9.0,-9.0,-9.0,2.0,1247709 -3096853,1630204617,2,53,1,2,1630082888,1,6.0,-9.0,-9.0,-9.0,4.0,1247709 -3096854,1630205098,2,28,0,1,1630082889,2,6.0,40.0,1.0,15.0,4.0,1247710 -3096855,1630205099,2,23,5,2,1630082889,2,6.0,-9.0,-9.0,-9.0,4.0,1247710 -3096856,1630205136,2,32,0,1,1630082890,2,3.0,-9.0,-9.0,-9.0,4.0,1247711 -3096857,1630205152,2,50,1,2,1630082890,1,1.0,30.0,1.0,-9.0,4.0,1247711 -3096858,1630205144,2,9,2,3,1630082890,1,-9.0,-9.0,-9.0,6.0,-9.0,1247711 -3096859,1630205148,2,5,2,4,1630082890,1,-9.0,-9.0,-9.0,2.0,-9.0,1247711 -3096860,1630205156,2,1,2,5,1630082890,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247711 -3096861,1630205140,2,57,15,6,1630082890,2,3.0,-9.0,-9.0,-9.0,4.0,1247711 -3096862,1630204762,2,31,0,1,1630082891,1,2.0,40.0,6.0,-9.0,4.0,1247712 -3096863,1630204763,2,2,2,2,1630082891,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247712 -3096864,1630204761,2,22,13,3,1630082891,2,1.0,25.0,1.0,15.0,4.0,1247712 -3096865,1630204373,2,41,0,1,1630082892,2,1.0,40.0,1.0,-9.0,4.0,1247713 -3096866,1630204372,2,71,6,2,1630082892,2,6.0,-9.0,-9.0,-9.0,4.0,1247713 -3096867,1630204821,2,47,0,1,1630082893,2,6.0,-9.0,-9.0,-9.0,4.0,1247714 -3096868,1630204822,2,13,2,2,1630082893,1,-9.0,-9.0,-9.0,9.0,-9.0,1247714 -3096869,1630204823,2,13,2,3,1630082893,2,-9.0,-9.0,-9.0,9.0,-9.0,1247714 -3096870,1630204370,2,65,0,1,1630082894,2,6.0,-9.0,-9.0,-9.0,4.0,1247715 -3096871,1630204371,2,11,7,2,1630082894,2,-9.0,-9.0,-9.0,8.0,-9.0,1247715 -3096872,1630205038,2,26,0,1,1630082895,2,3.0,-9.0,-9.0,-9.0,4.0,1247716 -3096873,1630205040,2,7,2,2,1630082895,2,-9.0,-9.0,-9.0,4.0,-9.0,1247716 -3096874,1630205041,2,11,5,3,1630082895,2,-9.0,-9.0,-9.0,6.0,-9.0,1247716 -3096875,1630205039,2,26,13,4,1630082895,1,1.0,40.0,1.0,-9.0,4.0,1247716 -3096876,1630204244,2,56,0,1,1630082896,2,1.0,40.0,1.0,16.0,4.0,1247717 -3096877,1630204243,2,82,6,2,1630082896,2,6.0,-9.0,-9.0,-9.0,2.0,1247717 -3096878,1630205008,2,47,0,1,1630082897,2,3.0,-9.0,-9.0,-9.0,4.0,1247718 -3096879,1630205010,2,27,2,2,1630082897,1,3.0,-9.0,-9.0,-9.0,4.0,1247718 -3096880,1630205009,2,16,2,3,1630082897,1,6.0,-9.0,-9.0,13.0,-9.0,1247718 -3096881,1630205011,2,38,15,4,1630082897,1,6.0,-9.0,-9.0,-9.0,4.0,1247718 -3096882,1630204595,2,58,0,1,1630082898,2,1.0,40.0,1.0,-9.0,4.0,1247719 -3096883,1630204596,2,21,2,2,1630082898,1,1.0,32.0,2.0,-9.0,4.0,1247719 -3096884,1630204597,2,58,13,3,1630082898,1,6.0,-9.0,-9.0,-9.0,2.0,1247719 -3096885,1630204343,2,48,0,1,1630082899,2,1.0,40.0,1.0,-9.0,4.0,1247720 -3096886,1630204344,2,24,2,2,1630082899,2,1.0,40.0,1.0,-9.0,4.0,1247720 -3096887,1630204346,2,20,2,3,1630082899,1,3.0,32.0,5.0,-9.0,4.0,1247720 -3096888,1630204342,2,67,6,4,1630082899,2,6.0,-9.0,-9.0,-9.0,4.0,1247720 -3096889,1630204345,2,1,7,5,1630082899,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247720 -3096890,1630204478,2,55,0,1,1630082900,2,6.0,-9.0,-9.0,-9.0,4.0,1247721 -3096891,1630204479,2,37,2,2,1630082900,2,3.0,-9.0,-9.0,-9.0,4.0,1247721 -3096892,1630204480,2,35,2,3,1630082900,1,6.0,-9.0,-9.0,-9.0,4.0,1247721 -3096893,1630204481,2,25,2,4,1630082900,1,6.0,-9.0,-9.0,-9.0,4.0,1247721 -3096894,1630204482,2,21,7,5,1630082900,1,6.0,-9.0,-9.0,-9.0,4.0,1247721 -3096895,1630204483,2,46,12,6,1630082900,1,1.0,40.0,3.0,14.0,4.0,1247721 -3096896,1630204385,1,29,0,1,1630082901,1,1.0,50.0,1.0,16.0,4.0,1247722 -3096897,1630204386,1,34,12,2,1630082901,1,1.0,40.0,1.0,16.0,4.0,1247722 -3096898,1630204542,2,50,0,1,1630082902,2,6.0,-9.0,-9.0,-9.0,2.0,1247723 -3096899,1630204545,4,17,2,2,1630082902,2,6.0,-9.0,-9.0,13.0,4.0,1247723 -3096900,1630204543,2,15,2,3,1630082902,1,-9.0,-9.0,-9.0,11.0,-9.0,1247723 -3096901,1630204544,2,10,2,4,1630082902,1,-9.0,-9.0,-9.0,6.0,-9.0,1247723 -3096902,1630204339,2,87,0,1,1630082903,2,6.0,-9.0,-9.0,-9.0,4.0,1247724 -3096903,1630204340,2,57,2,2,1630082903,2,6.0,-9.0,-9.0,-9.0,4.0,1247724 -3096904,1630204341,2,53,2,3,1630082903,1,6.0,-9.0,-9.0,-9.0,4.0,1247724 -3096905,1630204898,2,32,0,1,1630082904,2,1.0,40.0,1.0,-9.0,4.0,1247725 -3096906,1630204901,2,6,2,2,1630082904,2,-9.0,-9.0,-9.0,3.0,-9.0,1247725 -3096907,1630204756,2,63,0,1,1630082905,2,1.0,40.0,1.0,-9.0,4.0,1247726 -3096908,1630204758,2,17,7,2,1630082905,2,6.0,-9.0,-9.0,13.0,4.0,1247726 -3096909,1630204313,2,94,0,1,1630082906,2,6.0,-9.0,-9.0,-9.0,4.0,1247727 -3096910,1630204314,2,65,2,2,1630082906,2,6.0,-9.0,-9.0,-9.0,4.0,1247727 -3096911,1630204315,2,44,7,3,1630082906,2,1.0,20.0,1.0,15.0,4.0,1247727 -3096912,1630205190,2,31,0,1,1630082907,1,6.0,-9.0,-9.0,-9.0,4.0,1247728 -3096913,1630205187,2,62,6,2,1630082907,2,1.0,37.0,1.0,-9.0,4.0,1247728 -3096914,1630204278,2,85,0,1,1630082908,2,6.0,-9.0,-9.0,15.0,4.0,1247729 -3096915,1630204279,2,25,7,2,1630082908,2,1.0,45.0,1.0,-9.0,4.0,1247729 -3096916,1630204548,2,36,0,1,1630082909,2,1.0,40.0,4.0,-9.0,4.0,1247730 -3096917,1630204550,2,16,2,2,1630082909,2,6.0,-9.0,-9.0,13.0,-9.0,1247730 -3096918,1630204551,2,15,2,3,1630082909,2,-9.0,-9.0,-9.0,12.0,-9.0,1247730 -3096919,1630204549,2,14,2,4,1630082909,1,-9.0,-9.0,-9.0,11.0,-9.0,1247730 -3096920,1630204552,2,11,2,5,1630082909,2,-9.0,-9.0,-9.0,7.0,-9.0,1247730 -3096921,1630204383,1,25,0,1,1630082910,2,3.0,20.0,5.0,-9.0,4.0,1247731 -3096922,1630204384,1,23,12,2,1630082910,2,1.0,45.0,1.0,16.0,4.0,1247731 -3096923,1630204274,2,71,0,1,1630082911,2,6.0,-9.0,-9.0,-9.0,4.0,1247732 -3096924,1630204276,2,54,10,2,1630082911,1,3.0,50.0,6.0,-9.0,4.0,1247732 -3096925,1630204277,2,39,10,3,1630082911,1,3.0,-9.0,-9.0,-9.0,4.0,1247732 -3096926,1630204275,2,17,10,4,1630082911,1,6.0,-9.0,-9.0,14.0,4.0,1247732 -3096927,1630205218,2,52,0,1,1630082912,2,3.0,-9.0,-9.0,-9.0,4.0,1247733 -3096928,1630205066,2,56,0,1,1630082913,2,3.0,-9.0,-9.0,-9.0,4.0,1247734 -3096929,1630205067,2,35,2,2,1630082913,2,6.0,-9.0,-9.0,-9.0,4.0,1247734 -3096930,1630205070,2,24,2,3,1630082913,1,3.0,26.0,4.0,-9.0,4.0,1247734 -3096931,1630205068,2,21,2,4,1630082913,2,3.0,-9.0,-9.0,-9.0,4.0,1247734 -3096932,1630205071,2,17,2,5,1630082913,2,6.0,-9.0,-9.0,13.0,4.0,1247734 -3096933,1630205072,2,15,2,6,1630082913,2,-9.0,-9.0,-9.0,10.0,-9.0,1247734 -3096934,1630205069,2,13,2,7,1630082913,1,-9.0,-9.0,-9.0,10.0,-9.0,1247734 -3096935,1630205073,2,0,7,8,1630082913,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247734 -3096936,1630205298,2,59,0,1,1630082914,1,1.0,40.0,1.0,-9.0,2.0,1247735 -3096937,1630204502,2,62,0,1,1630082915,2,6.0,-9.0,-9.0,-9.0,4.0,1247736 -3096938,1630204504,2,62,1,2,1630082915,1,6.0,-9.0,-9.0,-9.0,2.0,1247736 -3096939,1630204503,2,14,3,3,1630082915,1,-9.0,-9.0,-9.0,11.0,-9.0,1247736 -3096940,1630204639,2,27,0,1,1630082916,2,1.0,27.0,1.0,15.0,4.0,1247737 -3096941,1630204643,2,1,2,2,1630082916,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247737 -3096942,1630204641,2,33,13,3,1630082916,1,3.0,40.0,1.0,15.0,4.0,1247737 -3096943,1630204651,2,42,0,1,1630082917,2,1.0,45.0,1.0,-9.0,4.0,1247738 -3096944,1630204652,2,20,2,2,1630082917,2,1.0,72.0,1.0,-9.0,4.0,1247738 -3096945,1630204653,2,12,2,3,1630082917,1,-9.0,-9.0,-9.0,8.0,-9.0,1247738 -3096946,1630204654,2,9,2,4,1630082917,2,-9.0,-9.0,-9.0,4.0,-9.0,1247738 -3096947,1630205210,2,50,0,1,1630082918,2,6.0,40.0,1.0,-9.0,4.0,1247739 -3096948,1630205212,2,53,1,2,1630082918,1,6.0,-9.0,-9.0,-9.0,4.0,1247739 -3096949,1630205213,2,26,2,3,1630082918,1,6.0,-9.0,-9.0,-9.0,4.0,1247739 -3096950,1630205211,2,20,2,4,1630082918,2,1.0,25.0,1.0,-9.0,4.0,1247739 -3096951,1630204281,2,53,0,1,1630082919,2,6.0,-9.0,-9.0,-9.0,4.0,1247740 -3096952,1630204285,2,39,1,2,1630082919,1,6.0,-9.0,-9.0,-9.0,4.0,1247740 -3096953,1630204282,2,35,2,3,1630082919,2,1.0,16.0,6.0,-9.0,4.0,1247740 -3096954,1630204280,2,81,6,4,1630082919,2,6.0,-9.0,-9.0,-9.0,4.0,1247740 -3096955,1630204283,2,19,7,5,1630082919,2,6.0,40.0,4.0,-9.0,4.0,1247740 -3096956,1630204284,2,11,7,6,1630082919,1,-9.0,-9.0,-9.0,7.0,-9.0,1247740 -3096957,1630204286,2,10,7,7,1630082919,2,-9.0,-9.0,-9.0,6.0,-9.0,1247740 -3096958,1630204287,2,10,7,8,1630082919,2,-9.0,-9.0,-9.0,7.0,-9.0,1247740 -3096959,1630205282,2,59,0,1,1630082920,1,1.0,40.0,1.0,-9.0,4.0,1247741 -3096960,1630204253,2,44,0,1,1630082921,2,3.0,40.0,4.0,-9.0,4.0,1247742 -3096961,1630204254,2,59,6,2,1630082921,1,6.0,-9.0,-9.0,-9.0,4.0,1247742 -3096962,1630204252,2,68,11,3,1630082921,2,6.0,-9.0,-9.0,-9.0,4.0,1247742 -3096963,1630204255,2,45,13,4,1630082921,1,6.0,-9.0,-9.0,-9.0,4.0,1247742 -3096964,1630204497,2,61,0,1,1630082922,2,6.0,-9.0,-9.0,-9.0,4.0,1247743 -3096965,1630204498,2,17,7,2,1630082922,2,6.0,-9.0,-9.0,14.0,4.0,1247743 -3096966,1630205093,2,49,0,1,1630082923,1,1.0,40.0,1.0,-9.0,4.0,1247744 -3096967,1630205086,2,43,1,2,1630082923,2,6.0,-9.0,-9.0,-9.0,4.0,1247744 -3096968,1630205088,2,13,2,3,1630082923,1,-9.0,-9.0,-9.0,9.0,-9.0,1247744 -3096969,1630205089,2,12,2,4,1630082923,1,-9.0,-9.0,-9.0,10.0,-9.0,1247744 -3096970,1630205090,2,7,2,5,1630082923,1,-9.0,-9.0,-9.0,5.0,-9.0,1247744 -3096971,1630205094,2,6,2,6,1630082923,2,-9.0,-9.0,-9.0,3.0,-9.0,1247744 -3096972,1630205087,2,19,4,7,1630082923,2,1.0,40.0,5.0,-9.0,4.0,1247744 -3096973,1630205095,2,17,4,8,1630082923,2,1.0,20.0,5.0,14.0,4.0,1247744 -3096974,1630205091,2,15,4,9,1630082923,1,-9.0,-9.0,-9.0,12.0,-9.0,1247744 -3096975,1630205096,2,14,4,10,1630082923,2,-9.0,-9.0,-9.0,11.0,-9.0,1247744 -3096976,1630205092,2,14,4,11,1630082923,1,-9.0,-9.0,-9.0,10.0,-9.0,1247744 -3096977,1630205097,2,12,4,12,1630082923,2,-9.0,-9.0,-9.0,10.0,-9.0,1247744 -3096978,1630205221,2,25,0,1,1630082924,2,3.0,40.0,1.0,-9.0,4.0,1247745 -3096979,1630205222,2,5,2,2,1630082924,2,-9.0,-9.0,-9.0,2.0,-9.0,1247745 -3096980,1630204439,2,36,0,1,1630082925,2,1.0,30.0,4.0,-9.0,4.0,1247746 -3096981,1630204445,2,19,2,2,1630082925,1,3.0,-9.0,-9.0,14.0,4.0,1247746 -3096982,1630204441,2,14,2,3,1630082925,1,-9.0,-9.0,-9.0,11.0,-9.0,1247746 -3096983,1630204449,2,14,2,4,1630082925,2,-9.0,-9.0,-9.0,11.0,-9.0,1247746 -3096984,1630204443,2,12,2,5,1630082925,1,-9.0,-9.0,-9.0,9.0,-9.0,1247746 -3096985,1630204451,2,12,2,6,1630082925,2,-9.0,-9.0,-9.0,9.0,-9.0,1247746 -3096986,1630204453,2,4,2,7,1630082925,2,-9.0,-9.0,-9.0,1.0,-9.0,1247746 -3096987,1630204447,2,45,15,8,1630082925,1,1.0,32.0,5.0,-9.0,4.0,1247746 -3096988,1630204660,2,50,0,1,1630082926,2,1.0,40.0,1.0,-9.0,4.0,1247747 -3096989,1630204661,2,11,2,2,1630082926,2,-9.0,-9.0,-9.0,9.0,-9.0,1247747 -3096990,1630205288,2,36,0,1,1630082927,1,1.0,46.0,1.0,-9.0,4.0,1247748 -3096991,1630205290,2,70,6,2,1630082927,1,6.0,-9.0,-9.0,-9.0,4.0,1247748 -3096992,1630205193,2,38,0,1,1630082928,2,6.0,-9.0,-9.0,-9.0,4.0,1247749 -3096993,1630205195,2,38,1,2,1630082928,1,3.0,-9.0,-9.0,-9.0,4.0,1247749 -3096994,1630205197,2,16,2,3,1630082928,2,6.0,-9.0,-9.0,13.0,-9.0,1247749 -3096995,1630204242,2,66,0,1,1630082929,2,1.0,6.0,1.0,15.0,4.0,1247750 -3096996,1630206002,2,30,0,1,1630082930,1,3.0,36.0,5.0,-9.0,4.0,1247751 -3096997,1630205437,2,94,0,1,1630082931,2,6.0,-9.0,-9.0,-9.0,4.0,1247752 -3096998,1630205373,2,66,0,1,1630082932,2,6.0,-9.0,-9.0,-9.0,4.0,1247753 -3096999,1630205450,2,68,0,1,1630082933,2,6.0,-9.0,-9.0,-9.0,4.0,1247754 -3097000,1630206183,2,80,0,1,1630082934,1,6.0,-9.0,-9.0,-9.0,2.0,1247755 -3097001,1630205644,2,32,0,1,1630082935,2,1.0,40.0,1.0,-9.0,4.0,1247756 -3097002,1630205588,2,34,0,1,1630082936,2,1.0,48.0,1.0,-9.0,4.0,1247757 -3097003,1630205600,2,38,0,1,1630082937,2,6.0,-9.0,-9.0,-9.0,4.0,1247758 -3097004,1630205601,2,18,2,2,1630082937,2,6.0,-9.0,-9.0,14.0,4.0,1247758 -3097005,1630205602,2,16,2,3,1630082937,1,6.0,-9.0,-9.0,13.0,-9.0,1247758 -3097006,1630205603,2,14,2,4,1630082937,2,-9.0,-9.0,-9.0,11.0,-9.0,1247758 -3097007,1630205634,2,33,0,1,1630082938,2,6.0,25.0,5.0,-9.0,4.0,1247759 -3097008,1630205636,2,15,2,2,1630082938,2,-9.0,-9.0,-9.0,12.0,-9.0,1247759 -3097009,1630205635,2,14,2,3,1630082938,1,-9.0,-9.0,-9.0,10.0,-9.0,1247759 -3097010,1630205637,2,0,2,4,1630082938,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247759 -3097011,1630206063,2,42,0,1,1630082939,1,3.0,-9.0,-9.0,-9.0,4.0,1247760 -3097012,1630206126,2,39,0,1,1630082940,1,6.0,-9.0,-9.0,-9.0,4.0,1247761 -3097013,1630206080,2,39,0,1,1630082941,1,6.0,-9.0,-9.0,-9.0,4.0,1247762 -3097014,1630206128,2,42,0,1,1630082942,1,6.0,-9.0,-9.0,-9.0,4.0,1247763 -3097015,1630206025,2,28,0,1,1630082943,1,3.0,-9.0,-9.0,-9.0,4.0,1247764 -3097016,1630206096,2,28,0,1,1630082944,1,3.0,25.0,4.0,15.0,4.0,1247765 -3097017,1630205863,2,42,0,1,1630082945,2,6.0,-9.0,-9.0,-9.0,4.0,1247766 -3097018,1630206021,2,43,0,1,1630082946,1,6.0,40.0,1.0,15.0,4.0,1247767 -3097019,1630206110,2,30,0,1,1630082947,1,3.0,36.0,4.0,-9.0,4.0,1247768 -3097020,1630205768,2,42,0,1,1630082948,2,6.0,-9.0,-9.0,-9.0,4.0,1247769 -3097021,1630205770,2,21,2,2,1630082948,1,6.0,-9.0,-9.0,-9.0,4.0,1247769 -3097022,1630205769,2,16,2,3,1630082948,1,6.0,-9.0,-9.0,12.0,-9.0,1247769 -3097023,1630205704,2,31,0,1,1630082949,2,3.0,30.0,5.0,15.0,4.0,1247770 -3097024,1630205705,2,3,2,2,1630082949,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247770 -3097025,1630205706,2,1,2,3,1630082949,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247770 -3097026,1630205745,2,41,0,1,1630082950,2,6.0,-9.0,-9.0,-9.0,4.0,1247771 -3097027,1630205746,2,8,2,2,1630082950,1,-9.0,-9.0,-9.0,4.0,-9.0,1247771 -3097028,1630205958,2,31,0,1,1630082951,1,3.0,40.0,6.0,15.0,4.0,1247772 -3097029,1630205959,2,4,2,2,1630082951,2,-9.0,-9.0,-9.0,1.0,-9.0,1247772 -3097030,1630205757,2,27,0,1,1630082952,1,1.0,60.0,1.0,-9.0,4.0,1247773 -3097031,1630205753,2,1,2,2,1630082952,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247773 -3097032,1630205755,2,4,4,3,1630082952,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247773 -3097033,1630205751,2,20,13,4,1630082952,2,6.0,-9.0,-9.0,-9.0,4.0,1247773 -3097034,1630205748,2,31,0,1,1630082953,1,3.0,-9.0,-9.0,-9.0,4.0,1247774 -3097035,1630205749,2,9,2,2,1630082953,2,-9.0,-9.0,-9.0,7.0,-9.0,1247774 -3097036,1630205750,2,2,2,3,1630082953,2,-9.0,-9.0,-9.0,-9.0,-9.0,1247774 -3097037,1630205747,3,27,13,4,1630082953,2,1.0,30.0,1.0,-9.0,4.0,1247774 -3097038,1630205758,2,27,0,1,1630082954,1,1.0,60.0,1.0,-9.0,4.0,1247775 -3097039,1630205754,2,1,2,2,1630082954,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247775 -3097040,1630205756,2,4,4,3,1630082954,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247775 -3097041,1630205752,2,20,13,4,1630082954,2,6.0,-9.0,-9.0,-9.0,4.0,1247775 -3097042,1630205540,2,34,0,1,1630082955,2,1.0,24.0,1.0,-9.0,4.0,1247776 -3097043,1630205810,2,29,0,1,1630082956,2,1.0,40.0,2.0,-9.0,4.0,1247777 -3097044,1630206056,2,33,0,1,1630082957,1,1.0,10.0,6.0,-9.0,4.0,1247778 -3097045,1630205829,2,27,0,1,1630082958,2,1.0,50.0,1.0,-9.0,4.0,1247779 -3097046,1630205471,1,28,0,1,1630082959,2,1.0,50.0,1.0,16.0,4.0,1247780 -3097047,1630205510,2,25,0,1,1630082960,2,3.0,20.0,6.0,15.0,4.0,1247781 -3097048,1630205512,2,4,2,2,1630082960,1,-9.0,-9.0,-9.0,1.0,-9.0,1247781 -3097049,1630205511,2,27,12,3,1630082960,2,1.0,35.0,1.0,-9.0,4.0,1247781 -3097050,1630205686,2,28,0,1,1630082961,2,1.0,40.0,1.0,15.0,4.0,1247782 -3097051,1630205687,2,3,2,2,1630082961,1,-9.0,-9.0,-9.0,-9.0,-9.0,1247782 -3097052,1630205862,2,45,0,1,1630082962,2,1.0,40.0,1.0,-9.0,4.0,1247783 -3097053,1630206103,2,63,0,1,1630082963,1,6.0,-9.0,-9.0,-9.0,4.0,1247784 -3097054,1630205929,2,60,0,1,1630082964,1,6.0,-9.0,-9.0,-9.0,4.0,1247785 -3097055,1630205930,2,60,0,1,1630082965,1,6.0,-9.0,-9.0,-9.0,4.0,1247786 -3097056,1630206011,2,47,0,1,1630082966,1,1.0,40.0,1.0,-9.0,4.0,1247787 -3097057,1630206012,2,47,0,1,1630082967,1,1.0,40.0,1.0,-9.0,4.0,1247788 -3097058,1630205736,2,58,0,1,1630082968,2,1.0,40.0,1.0,-9.0,4.0,1247789 -3097059,1630205942,2,56,0,1,1630082969,1,1.0,40.0,1.0,-9.0,2.0,1247790 -3097060,1630206115,2,48,0,1,1630082970,1,1.0,48.0,1.0,-9.0,4.0,1247791 -3097061,1630205946,2,54,0,1,1630082971,1,1.0,40.0,3.0,-9.0,4.0,1247792 -3097062,1630205896,2,50,0,1,1630082972,2,1.0,45.0,1.0,-9.0,4.0,1247793 -3097063,1630205920,2,53,0,1,1630082973,1,1.0,70.0,1.0,15.0,4.0,1247794 -3097064,1630205595,2,55,0,1,1630082974,2,1.0,40.0,1.0,-9.0,4.0,1247795 -3097065,1630206104,2,58,0,1,1630082975,1,1.0,40.0,1.0,15.0,2.0,1247796 -3097066,1630205943,2,56,0,1,1630082976,1,1.0,40.0,1.0,-9.0,2.0,1247797 -3097067,1630205870,2,54,0,1,1630082977,2,1.0,40.0,1.0,-9.0,4.0,1247798 -3097068,1630206029,2,45,0,1,1630082978,1,1.0,36.0,1.0,-9.0,3.0,1247799 -3097069,1630206049,2,56,0,1,1630082979,1,1.0,40.0,1.0,-9.0,4.0,1247800 -3097070,1630206116,2,48,0,1,1630082980,1,1.0,48.0,1.0,-9.0,4.0,1247801 -3097071,1630206113,2,46,0,1,1630082981,1,1.0,40.0,1.0,-9.0,4.0,1247802 -3097072,1630205485,1,61,0,1,1630082982,1,1.0,50.0,3.0,-9.0,4.0,1247803 -3097073,1630205778,2,58,0,1,1630082983,2,1.0,40.0,1.0,-9.0,4.0,1247804 -3097074,1630205780,2,26,2,2,1630082983,1,3.0,-9.0,-9.0,-9.0,4.0,1247804 -3097075,1630205611,2,55,0,1,1630082984,1,6.0,-9.0,-9.0,-9.0,2.0,1247805 -3097076,1630205609,2,25,2,2,1630082984,2,1.0,40.0,6.0,15.0,4.0,1247805 -3097077,1630205613,2,22,2,3,1630082984,1,1.0,40.0,1.0,-9.0,4.0,1247805 -3097078,1630205615,2,19,2,4,1630082984,1,6.0,-9.0,-9.0,14.0,4.0,1247805 -3097079,1630205404,2,47,0,1,1630082985,2,1.0,40.0,1.0,-9.0,4.0,1247806 -3097080,1630205406,2,54,5,2,1630082985,1,3.0,-9.0,-9.0,15.0,4.0,1247806 -3097081,1630205405,2,48,5,3,1630082985,2,1.0,7.0,1.0,-9.0,4.0,1247806 -3097082,1630205403,2,72,6,4,1630082985,2,6.0,-9.0,-9.0,-9.0,4.0,1247806 -3097083,1630205518,2,59,0,1,1630082986,2,1.0,30.0,6.0,-9.0,4.0,1247807 -3097084,1630205519,2,58,1,2,1630082986,1,1.0,48.0,1.0,-9.0,4.0,1247807 -3097085,1630205674,2,62,0,1,1630082987,2,1.0,40.0,1.0,-9.0,4.0,1247808 -3097086,1630206099,2,45,0,1,1630082988,1,1.0,50.0,1.0,-9.0,2.0,1247809 -3097087,1630206100,2,19,2,2,1630082988,1,1.0,40.0,5.0,15.0,4.0,1247809 -3097088,1630205902,2,47,0,1,1630082989,1,6.0,-9.0,-9.0,-9.0,4.0,1247810 -3097089,1630205898,2,17,2,2,1630082989,1,6.0,-9.0,-9.0,13.0,4.0,1247810 -3097090,1630205900,2,16,2,3,1630082989,1,6.0,-9.0,-9.0,12.0,-9.0,1247810 -3097091,1630205904,2,70,15,4,1630082989,1,6.0,-9.0,-9.0,-9.0,2.0,1247810 -3097092,1630205811,2,47,0,1,1630082990,2,3.0,-9.0,-9.0,-9.0,4.0,1247811 -3097093,1630205815,2,27,2,2,1630082990,1,3.0,-9.0,-9.0,-9.0,4.0,1247811 -3097094,1630205813,2,16,2,3,1630082990,1,6.0,-9.0,-9.0,13.0,-9.0,1247811 -3097095,1630205817,2,38,15,4,1630082990,1,6.0,-9.0,-9.0,-9.0,4.0,1247811 -3097096,1630205559,2,58,0,1,1630082991,2,6.0,-9.0,-9.0,-9.0,4.0,1247812 -3097097,1630206090,2,54,0,1,1630082992,1,6.0,-9.0,-9.0,-9.0,4.0,1247813 -3097098,1630206016,2,56,0,1,1630082993,1,3.0,-9.0,-9.0,-9.0,2.0,1247814 -3097099,1630206041,2,56,0,1,1630082994,1,3.0,-9.0,-9.0,-9.0,4.0,1247815 -3097100,1630206030,2,51,0,1,1630082995,1,6.0,-9.0,-9.0,-9.0,2.0,1247816 -3097101,1630205762,2,50,0,1,1630082996,2,6.0,-9.0,-9.0,-9.0,4.0,1247817 -3097102,1630206003,2,52,0,1,1630082997,1,6.0,-9.0,-9.0,-9.0,2.0,1247818 -3097103,1630206072,2,56,0,1,1630082998,1,3.0,6.0,6.0,-9.0,4.0,1247819 -3097104,1630205985,2,51,0,1,1630082999,1,6.0,-9.0,-9.0,-9.0,2.0,1247820 -3097105,1630206123,2,63,0,1,1630083000,1,6.0,-9.0,-9.0,-9.0,4.0,1247821 -3097106,1630205981,2,58,0,1,1630083001,1,6.0,-9.0,-9.0,-9.0,4.0,1247822 -3097107,1630206052,2,45,0,1,1630083002,1,6.0,-9.0,-9.0,-9.0,4.0,1247823 -3097108,1630205608,2,63,0,1,1630083003,2,6.0,-9.0,-9.0,-9.0,4.0,1247824 -3097109,1630206062,2,47,0,1,1630083004,1,6.0,-9.0,-9.0,-9.0,4.0,1247825 -3097110,1630205720,2,64,0,1,1630083005,2,6.0,-9.0,-9.0,-9.0,4.0,1247826 -3097111,1630206088,2,49,0,1,1630083006,1,6.0,-9.0,-9.0,-9.0,4.0,1247827 -3097112,1630206035,2,56,0,1,1630083007,1,6.0,-9.0,-9.0,-9.0,2.0,1247828 -3097113,1630206018,2,62,0,1,1630083008,1,6.0,-9.0,-9.0,-9.0,2.0,1247829 -3097114,1630205617,2,47,0,1,1630083009,2,6.0,-9.0,-9.0,-9.0,4.0,1247830 -3097115,1630206054,2,51,0,1,1630083010,1,3.0,-9.0,-9.0,-9.0,4.0,1247831 -3097116,1630205645,2,63,0,1,1630083011,2,6.0,-9.0,-9.0,-9.0,4.0,1247832 -3097117,1630206073,2,62,0,1,1630083012,1,6.0,-9.0,-9.0,-9.0,2.0,1247833 -3097118,1630205951,2,55,0,1,1630083013,1,6.0,-9.0,-9.0,-9.0,4.0,1247834 -3097119,1630205668,2,59,0,1,1630083014,2,6.0,-9.0,-9.0,-9.0,4.0,1247835 -3097120,1630206045,2,53,0,1,1630083015,1,6.0,-9.0,-9.0,-9.0,4.0,1247836 -3097121,1630205776,2,59,0,1,1630083016,2,6.0,-9.0,-9.0,-9.0,4.0,1247837 -3097122,1630205697,2,52,0,1,1630083017,2,6.0,-9.0,-9.0,-9.0,4.0,1247838 -3097123,1630206069,2,61,0,1,1630083018,1,6.0,-9.0,-9.0,-9.0,4.0,1247839 -3097124,1630206006,2,59,0,1,1630083019,1,6.0,-9.0,-9.0,-9.0,2.0,1247840 -3097125,1630205923,2,53,0,1,1630083020,1,6.0,-9.0,-9.0,-9.0,4.0,1247841 -3097126,1630205684,2,50,0,1,1630083021,2,6.0,-9.0,-9.0,-9.0,4.0,1247842 -3097127,1630206077,2,56,0,1,1630083022,1,6.0,-9.0,-9.0,-9.0,4.0,1247843 -3097128,1630206124,2,57,0,1,1630083023,1,6.0,-9.0,-9.0,-9.0,4.0,1247844 -3097129,1630205876,2,45,0,1,1630083024,2,6.0,-9.0,-9.0,-9.0,4.0,1247845 -3097130,1630205963,2,60,0,1,1630083025,1,6.0,-9.0,-9.0,-9.0,4.0,1247846 -3097131,1630205950,2,60,0,1,1630083026,1,6.0,-9.0,-9.0,-9.0,4.0,1247847 -3097132,1630206022,2,58,0,1,1630083027,1,6.0,-9.0,-9.0,-9.0,4.0,1247848 -3097133,1630206046,2,53,0,1,1630083028,1,6.0,-9.0,-9.0,-9.0,4.0,1247849 -3097134,1630206008,2,50,0,1,1630083029,1,3.0,-9.0,-9.0,-9.0,4.0,1247850 -3097135,1630206125,2,50,0,1,1630083030,1,6.0,-9.0,-9.0,-9.0,4.0,1247851 -3097136,1630205924,2,54,0,1,1630083031,1,6.0,20.0,4.0,-9.0,4.0,1247852 -3097137,1630206091,2,54,0,1,1630083032,1,6.0,-9.0,-9.0,-9.0,4.0,1247853 -3097138,1630205877,2,45,0,1,1630083033,2,6.0,-9.0,-9.0,-9.0,4.0,1247854 -3097139,1630205890,2,52,0,1,1630083034,2,3.0,-9.0,-9.0,-9.0,4.0,1247855 -3097140,1630205947,2,58,0,1,1630083035,1,6.0,-9.0,-9.0,-9.0,4.0,1247856 -3097141,1630206024,2,58,0,1,1630083036,1,6.0,-9.0,-9.0,-9.0,4.0,1247857 -3097142,1630206004,2,52,0,1,1630083037,1,6.0,-9.0,-9.0,-9.0,2.0,1247858 -3097143,1630205988,2,61,0,1,1630083038,1,6.0,-9.0,-9.0,-9.0,4.0,1247859 -3097144,1630205560,2,62,0,1,1630083039,2,6.0,-9.0,-9.0,-9.0,4.0,1247860 -3097145,1630205759,2,56,0,1,1630083040,2,3.0,-9.0,-9.0,-9.0,4.0,1247861 -3097146,1630206031,2,56,0,1,1630083041,1,6.0,-9.0,-9.0,-9.0,4.0,1247862 -3097147,1630205763,2,50,0,1,1630083042,2,6.0,-9.0,-9.0,-9.0,4.0,1247863 -3097148,1630206089,2,49,0,1,1630083043,1,6.0,-9.0,-9.0,-9.0,4.0,1247864 -3097149,1630205925,2,54,0,1,1630083044,1,6.0,20.0,4.0,-9.0,4.0,1247865 -3097150,1630206078,2,56,0,1,1630083045,1,6.0,-9.0,-9.0,-9.0,4.0,1247866 -3097151,1630206010,2,61,0,1,1630083046,1,6.0,-9.0,-9.0,-9.0,4.0,1247867 -3097152,1630205975,2,54,0,1,1630083047,1,6.0,-9.0,-9.0,-9.0,4.0,1247868 -3097153,1630205721,2,64,0,1,1630083048,2,6.0,-9.0,-9.0,-9.0,4.0,1247869 -3097154,1630205696,2,62,0,1,1630083049,2,6.0,-9.0,-9.0,-9.0,4.0,1247870 -3097155,1630206023,2,58,0,1,1630083050,1,6.0,-9.0,-9.0,-9.0,4.0,1247871 -3097156,1630205993,2,54,0,1,1630083051,1,6.0,-9.0,-9.0,-9.0,2.0,1247872 -3097157,1630206053,2,45,0,1,1630083052,1,6.0,-9.0,-9.0,-9.0,4.0,1247873 -3097158,1630205624,2,55,0,1,1630083053,2,6.0,-9.0,-9.0,-9.0,4.0,1247874 -3097159,1630205994,2,54,0,1,1630083054,1,6.0,-9.0,-9.0,-9.0,2.0,1247875 -3097160,1630205522,2,57,0,1,1630083055,2,6.0,-9.0,-9.0,-9.0,4.0,1247876 -3097161,1630205926,2,54,0,1,1630083056,1,6.0,20.0,4.0,-9.0,4.0,1247877 -3097162,1630206020,2,56,0,1,1630083057,1,6.0,-9.0,-9.0,-9.0,4.0,1247878 -3097163,1630205662,2,51,0,1,1630083058,2,6.0,-9.0,-9.0,-9.0,4.0,1247879 -3097164,1630205952,2,55,0,1,1630083059,1,6.0,-9.0,-9.0,-9.0,4.0,1247880 -3097165,1630205964,2,58,0,1,1630083060,1,6.0,-9.0,-9.0,-9.0,4.0,1247881 -3097166,1630205552,2,57,0,1,1630083061,2,6.0,-9.0,-9.0,-9.0,4.0,1247882 -3097167,1630205625,2,55,0,1,1630083062,2,6.0,-9.0,-9.0,-9.0,4.0,1247883 -3097168,1630205830,2,53,0,1,1630083063,2,6.0,-9.0,-9.0,-9.0,4.0,1247884 -3097169,1630206037,2,54,0,1,1630083064,1,6.0,-9.0,-9.0,-9.0,4.0,1247885 -3097170,1630205927,2,54,0,1,1630083065,1,6.0,20.0,4.0,-9.0,4.0,1247886 -3097171,1630206109,2,57,0,1,1630083066,1,6.0,-9.0,-9.0,-9.0,4.0,1247887 -3097172,1630205995,2,54,0,1,1630083067,1,6.0,-9.0,-9.0,-9.0,2.0,1247888 -3097173,1630205673,2,45,0,1,1630083068,2,6.0,-9.0,-9.0,-9.0,4.0,1247889 -3097174,1630205935,2,64,0,1,1630083069,1,6.0,-9.0,-9.0,-9.0,2.0,1247890 -3097175,1630206070,2,53,0,1,1630083070,1,6.0,-9.0,-9.0,-9.0,4.0,1247891 -3097176,1630206017,2,56,0,1,1630083071,1,3.0,-9.0,-9.0,-9.0,2.0,1247892 -3097177,1630206114,2,62,0,1,1630083072,1,6.0,-9.0,-9.0,-9.0,2.0,1247893 -3097178,1630205569,2,58,0,1,1630083073,2,6.0,-9.0,-9.0,-9.0,2.0,1247894 -3097179,1630205933,2,58,0,1,1630083074,1,6.0,-9.0,-9.0,-9.0,4.0,1247895 -3097180,1630205730,2,53,0,1,1630083075,2,6.0,-9.0,-9.0,-9.0,4.0,1247896 -3097181,1630205580,2,64,0,1,1630083076,2,6.0,15.0,5.0,-9.0,4.0,1247897 -3097182,1630206032,2,56,0,1,1630083077,1,6.0,-9.0,-9.0,-9.0,4.0,1247898 -3097183,1630205627,2,55,0,1,1630083078,2,6.0,-9.0,-9.0,-9.0,4.0,1247899 -3097184,1630205986,2,51,0,1,1630083079,1,6.0,-9.0,-9.0,-9.0,2.0,1247900 -3097185,1630205916,2,53,0,1,1630083080,1,3.0,-9.0,-9.0,-9.0,4.0,1247901 -3097186,1630206009,2,50,0,1,1630083081,1,3.0,-9.0,-9.0,-9.0,4.0,1247902 -3097187,1630205987,2,51,0,1,1630083082,1,6.0,-9.0,-9.0,-9.0,2.0,1247903 -3097188,1630205685,2,59,0,1,1630083083,2,3.0,-9.0,-9.0,-9.0,4.0,1247904 -3097189,1630205953,2,55,0,1,1630083084,1,6.0,-9.0,-9.0,-9.0,4.0,1247905 -3097190,1630205965,2,58,0,1,1630083085,1,6.0,-9.0,-9.0,-9.0,4.0,1247906 -3097191,1630206055,2,62,0,1,1630083086,1,6.0,-9.0,-9.0,-9.0,4.0,1247907 -3097192,1630206074,2,64,0,1,1630083087,1,6.0,-9.0,-9.0,-9.0,2.0,1247908 -3097193,1630205997,2,49,0,1,1630083088,1,6.0,-9.0,-9.0,-9.0,4.0,1247909 -3097194,1630205996,2,49,0,1,1630083089,1,3.0,-9.0,-9.0,-9.0,4.0,1247910 -3097195,1630206079,2,56,0,1,1630083090,1,6.0,-9.0,-9.0,-9.0,4.0,1247911 -3097196,1630206092,2,54,0,1,1630083091,1,6.0,-9.0,-9.0,-9.0,4.0,1247912 -3097197,1630205777,2,59,0,1,1630083092,2,6.0,-9.0,-9.0,-9.0,4.0,1247913 -3097198,1630205517,2,61,0,1,1630083093,2,6.0,-9.0,-9.0,-9.0,4.0,1247914 -3097199,1630206042,2,56,0,1,1630083094,1,3.0,-9.0,-9.0,-9.0,4.0,1247915 -3097200,1630205917,2,54,0,1,1630083095,1,6.0,-9.0,-9.0,-9.0,4.0,1247916 -3097201,1630205928,2,54,0,1,1630083096,1,6.0,20.0,4.0,-9.0,4.0,1247917 -3097202,1630206071,2,53,0,1,1630083097,1,6.0,-9.0,-9.0,-9.0,4.0,1247918 -3097203,1630205936,2,64,0,1,1630083098,1,6.0,-9.0,-9.0,-9.0,2.0,1247919 -3097204,1630206036,2,56,0,1,1630083099,1,6.0,-9.0,-9.0,-9.0,2.0,1247920 -3097205,1630206047,2,53,0,1,1630083100,1,6.0,-9.0,-9.0,-9.0,4.0,1247921 -3097206,1630206005,2,52,0,1,1630083101,1,6.0,-9.0,-9.0,-9.0,2.0,1247922 -3097207,1630206033,2,56,0,1,1630083102,1,6.0,-9.0,-9.0,-9.0,4.0,1247923 -3097208,1630205626,2,55,0,1,1630083103,2,6.0,-9.0,-9.0,-9.0,4.0,1247924 -3097209,1630205831,2,53,0,1,1630083104,2,6.0,-9.0,-9.0,-9.0,4.0,1247925 -3097210,1630206093,2,54,0,1,1630083105,1,6.0,-9.0,-9.0,-9.0,4.0,1247926 -3097211,1630205918,2,54,0,1,1630083106,1,6.0,-9.0,-9.0,-9.0,4.0,1247927 -3097212,1630205487,1,64,0,1,1630083107,1,6.0,-9.0,-9.0,-9.0,4.0,1247928 -3097213,1630205499,1,51,0,1,1630083108,1,6.0,-9.0,-9.0,-9.0,2.0,1247929 -3097214,1630205488,1,64,0,1,1630083109,1,6.0,-9.0,-9.0,-9.0,4.0,1247930 -3097215,1630205976,2,54,0,1,1630083110,1,6.0,45.0,5.0,-9.0,4.0,1247931 -3097216,1630206001,2,64,0,1,1630083111,1,6.0,-9.0,-9.0,-9.0,2.0,1247932 -3097217,1630205960,2,62,0,1,1630083112,1,3.0,-9.0,-9.0,-9.0,4.0,1247933 -3097218,1630206051,2,63,0,1,1630083113,1,6.0,-9.0,-9.0,-9.0,2.0,1247934 -3097219,1630206083,2,53,0,1,1630083114,1,6.0,-9.0,-9.0,-9.0,2.0,1247935 -3097220,1630205977,2,54,0,1,1630083115,1,6.0,45.0,5.0,-9.0,4.0,1247936 -3097221,1630205982,2,60,0,1,1630083116,1,6.0,-9.0,-9.0,-9.0,4.0,1247937 -3097222,1630206059,2,54,0,1,1630083117,1,6.0,-9.0,-9.0,-9.0,2.0,1247938 -3097223,1630206084,2,53,0,1,1630083118,1,6.0,-9.0,-9.0,-9.0,2.0,1247939 -3097224,1630206121,2,52,0,1,1630083119,1,6.0,-9.0,-9.0,-9.0,4.0,1247940 -3097225,1630205596,2,53,0,1,1630083120,2,6.0,-9.0,-9.0,-9.0,4.0,1247941 -3097226,1630205983,2,60,0,1,1630083121,1,6.0,-9.0,-9.0,-9.0,4.0,1247942 -3097227,1630205984,2,60,0,1,1630083122,1,6.0,-9.0,-9.0,-9.0,4.0,1247943 -3097228,1630206067,2,62,0,1,1630083123,1,6.0,40.0,5.0,-9.0,4.0,1247944 -3097229,1630206057,2,63,0,1,1630083124,1,6.0,-9.0,-9.0,-9.0,4.0,1247945 -3097230,1630205978,2,54,0,1,1630083125,1,6.0,45.0,5.0,-9.0,4.0,1247946 -3097231,1630206086,2,53,0,1,1630083126,1,6.0,-9.0,-9.0,-9.0,4.0,1247947 -3097232,1630206122,2,52,0,1,1630083127,1,6.0,-9.0,-9.0,-9.0,4.0,1247948 -3097233,1630205989,2,57,0,1,1630083128,1,6.0,-9.0,-9.0,-9.0,4.0,1247949 -3097234,1630205990,2,57,0,1,1630083129,1,6.0,-9.0,-9.0,-9.0,4.0,1247950 -3097235,1630206058,2,63,0,1,1630083130,1,6.0,-9.0,-9.0,-9.0,4.0,1247951 -3097236,1630206038,2,51,0,1,1630083131,1,6.0,40.0,6.0,-9.0,4.0,1247952 -3097237,1630205991,2,53,0,1,1630083132,1,6.0,-9.0,-9.0,-9.0,4.0,1247953 -3097238,1630206039,2,51,0,1,1630083133,1,6.0,40.0,6.0,-9.0,4.0,1247954 -3097239,1630206085,2,53,0,1,1630083134,1,6.0,-9.0,-9.0,-9.0,2.0,1247955 -3097240,1630205832,2,50,0,1,1630083135,2,3.0,-9.0,-9.0,15.0,4.0,1247956 -3097241,1630205979,2,54,0,1,1630083136,1,6.0,45.0,5.0,-9.0,4.0,1247957 -3097242,1630206007,2,61,0,1,1630083137,1,6.0,-9.0,-9.0,-9.0,2.0,1247958 -3097243,1630206060,2,54,0,1,1630083138,1,6.0,-9.0,-9.0,-9.0,2.0,1247959 -3097244,1630205992,2,53,0,1,1630083139,1,6.0,-9.0,-9.0,-9.0,4.0,1247960 -3097245,1630205489,1,64,0,1,1630083140,1,6.0,12.0,5.0,-9.0,4.0,1247961 -3097246,1630206019,2,63,0,1,1630083141,1,6.0,-9.0,-9.0,-9.0,2.0,1247962 -3097247,1630205797,2,49,0,1,1630083142,2,6.0,-9.0,-9.0,-9.0,4.0,1247963 -3097248,1630205798,2,35,1,2,1630083142,1,6.0,-9.0,-9.0,-9.0,4.0,1247963 -3097249,1630205799,2,30,12,3,1630083142,1,6.0,-9.0,-9.0,-9.0,4.0,1247963 -3097250,1630205848,2,61,0,1,1630083143,1,3.0,-9.0,-9.0,15.0,4.0,1247964 -3097251,1630205847,2,48,13,2,1630083143,2,3.0,-9.0,-9.0,15.0,4.0,1247964 -3097252,1630205849,2,21,15,3,1630083143,1,6.0,-9.0,-9.0,15.0,4.0,1247964 -3097253,1630205881,2,48,0,1,1630083144,2,6.0,-9.0,-9.0,-9.0,4.0,1247965 -3097254,1630205882,2,18,2,2,1630083144,2,3.0,-9.0,-9.0,13.0,4.0,1247965 -3097255,1630205883,2,10,2,3,1630083144,1,-9.0,-9.0,-9.0,5.0,-9.0,1247965 -3097256,1630205545,2,62,0,1,1630083145,2,6.0,-9.0,-9.0,-9.0,4.0,1247966 -3097257,1630205547,2,62,1,2,1630083145,1,6.0,-9.0,-9.0,-9.0,2.0,1247966 -3097258,1630205546,2,14,3,3,1630083145,1,-9.0,-9.0,-9.0,11.0,-9.0,1247966 -3097259,1630205864,2,51,0,1,1630083146,2,3.0,-9.0,-9.0,-9.0,3.0,1247967 -3097260,1630205867,2,57,13,2,1630083146,1,3.0,40.0,5.0,-9.0,4.0,1247967 -3097261,1630205921,2,60,0,1,1630083147,1,6.0,-9.0,-9.0,-9.0,4.0,1247968 -3097262,1630205922,2,45,15,2,1630083147,1,6.0,-9.0,-9.0,-9.0,4.0,1247968 -3097263,1630205698,2,58,0,1,1630083148,2,6.0,-9.0,-9.0,-9.0,4.0,1247969 -3097264,1630205699,2,62,1,2,1630083148,1,6.0,-9.0,-9.0,-9.0,4.0,1247969 -3097265,1630205521,2,50,0,1,1630083149,1,6.0,-9.0,-9.0,-9.0,4.0,1247970 -3097266,1630205520,2,35,2,2,1630083149,2,6.0,-9.0,-9.0,-9.0,4.0,1247970 -3097267,1630205854,2,55,0,1,1630083150,2,6.0,-9.0,-9.0,-9.0,4.0,1247971 -3097268,1630205855,2,55,15,2,1630083150,1,6.0,-9.0,-9.0,-9.0,4.0,1247971 -3097269,1630205509,2,57,0,1,1630083151,1,6.0,-9.0,-9.0,-9.0,2.0,1247972 -3097270,1630205508,2,45,13,2,1630083151,2,6.0,-9.0,-9.0,-9.0,4.0,1247972 -3097271,1630205865,2,51,0,1,1630083152,2,3.0,-9.0,-9.0,-9.0,3.0,1247973 -3097272,1630205868,2,57,13,2,1630083152,1,3.0,40.0,5.0,-9.0,4.0,1247973 -3097273,1630205652,2,57,0,1,1630083153,2,6.0,-9.0,-9.0,-9.0,4.0,1247974 -3097274,1630205653,2,30,2,2,1630083153,1,6.0,-9.0,-9.0,-9.0,4.0,1247974 -3097275,1630206101,2,61,0,1,1630083154,1,6.0,-9.0,-9.0,15.0,4.0,1247975 -3097276,1630206102,2,59,5,2,1630083154,1,3.0,-9.0,-9.0,-9.0,4.0,1247975 -3097277,1630205866,2,51,0,1,1630083155,2,3.0,-9.0,-9.0,-9.0,3.0,1247976 -3097278,1630205869,2,57,13,2,1630083155,1,3.0,40.0,5.0,-9.0,4.0,1247976 -3097279,1630205642,2,54,0,1,1630083156,2,6.0,-9.0,-9.0,-9.0,4.0,1247977 -3097280,1630205643,2,17,2,2,1630083156,2,6.0,-9.0,-9.0,13.0,4.0,1247977 -3097281,1630205907,2,53,0,1,1630083157,1,6.0,45.0,5.0,11.0,4.0,1247978 -3097282,1630205906,2,14,2,2,1630083157,1,-9.0,-9.0,-9.0,10.0,-9.0,1247978 -3097283,1630205503,2,51,0,1,1630083158,2,6.0,-9.0,-9.0,-9.0,4.0,1247979 -3097284,1630205504,2,16,2,2,1630083158,1,6.0,-9.0,-9.0,10.0,-9.0,1247979 -3097285,1630205871,2,50,0,1,1630083159,2,6.0,-9.0,-9.0,-9.0,4.0,1247980 -3097286,1630205872,2,16,2,2,1630083159,1,6.0,-9.0,-9.0,12.0,-9.0,1247980 -3097287,1630205808,2,56,0,1,1630083160,2,3.0,10.0,4.0,-9.0,4.0,1247981 -3097288,1630205809,2,18,2,2,1630083160,1,3.0,-9.0,-9.0,15.0,4.0,1247981 -3097289,1630205682,2,63,0,1,1630083161,2,6.0,-9.0,-9.0,-9.0,4.0,1247982 -3097290,1630205683,2,47,2,2,1630083161,1,6.0,-9.0,-9.0,-9.0,4.0,1247982 -3097291,1630205541,2,59,0,1,1630083162,2,6.0,-9.0,-9.0,-9.0,4.0,1247983 -3097292,1630205542,2,22,2,2,1630083162,2,3.0,-9.0,-9.0,-9.0,4.0,1247983 -3097293,1630205553,2,51,0,1,1630083163,2,6.0,-9.0,-9.0,-9.0,4.0,1247984 -3097294,1630205554,2,54,15,2,1630083163,1,6.0,-9.0,-9.0,-9.0,4.0,1247984 -3097295,1630205409,2,61,0,1,1630083164,1,3.0,-9.0,-9.0,-9.0,4.0,1247985 -3097296,1630205408,2,67,1,2,1630083164,2,6.0,-9.0,-9.0,-9.0,4.0,1247985 -3097297,1630205570,2,59,0,1,1630083165,2,6.0,-9.0,-9.0,-9.0,4.0,1247986 -3097298,1630205573,2,16,7,2,1630083165,1,6.0,-9.0,-9.0,13.0,-9.0,1247986 -3097299,1630205571,2,59,0,1,1630083166,2,6.0,-9.0,-9.0,-9.0,4.0,1247987 -3097300,1630205574,2,16,7,2,1630083166,1,6.0,-9.0,-9.0,13.0,-9.0,1247987 -3097301,1630205648,2,55,0,1,1630083167,2,1.0,26.0,1.0,-9.0,4.0,1247988 -3097302,1630205649,2,15,7,2,1630083167,2,-9.0,-9.0,-9.0,10.0,-9.0,1247988 -3097303,1630205650,2,14,7,3,1630083167,2,-9.0,-9.0,-9.0,10.0,-9.0,1247988 -3097304,1630205651,2,11,10,4,1630083167,2,-9.0,-9.0,-9.0,6.0,-9.0,1247988 -3097305,1630205840,2,53,0,1,1630083168,2,1.0,27.0,6.0,-9.0,4.0,1247989 -3097306,1630205843,2,13,2,2,1630083168,2,-9.0,-9.0,-9.0,10.0,-9.0,1247989 -3097307,1630205841,2,60,5,3,1630083168,1,6.0,-9.0,-9.0,-9.0,4.0,1247989 -3097308,1630205842,2,57,5,4,1630083168,1,6.0,-9.0,-9.0,-9.0,4.0,1247989 -3097309,1630206026,2,47,0,1,1630083169,1,1.0,32.0,1.0,-9.0,4.0,1247990 -3097310,1630205875,2,61,0,1,1630083170,2,1.0,35.0,1.0,-9.0,4.0,1247991 -3097311,1630205954,2,63,0,1,1630083171,1,1.0,25.0,1.0,-9.0,4.0,1247992 -3097312,1630205955,2,63,0,1,1630083172,1,1.0,25.0,1.0,-9.0,4.0,1247993 -3097313,1630206015,2,59,0,1,1630083173,1,1.0,40.0,1.0,-9.0,2.0,1247994 -3097314,1630206027,2,47,0,1,1630083174,1,1.0,32.0,1.0,-9.0,4.0,1247995 -3097315,1630205622,2,60,0,1,1630083175,2,1.0,50.0,2.0,-9.0,4.0,1247996 -3097316,1630205956,2,63,0,1,1630083176,1,1.0,25.0,1.0,-9.0,4.0,1247997 -3097317,1630206014,2,54,0,1,1630083177,1,1.0,25.0,1.0,-9.0,4.0,1247998 -3097318,1630205948,2,49,0,1,1630083178,1,1.0,25.0,1.0,-9.0,4.0,1247999 -3097319,1630206028,2,47,0,1,1630083179,1,1.0,32.0,1.0,-9.0,4.0,1248000 -3097320,1630205715,2,55,0,1,1630083180,2,1.0,40.0,1.0,-9.0,4.0,1248001 -3097321,1630205678,2,56,0,1,1630083181,2,1.0,99.0,1.0,-9.0,4.0,1248002 -3097322,1630205966,2,51,0,1,1630083182,1,1.0,20.0,1.0,-9.0,2.0,1248003 -3097323,1630205949,2,49,0,1,1630083183,1,1.0,25.0,1.0,-9.0,4.0,1248004 -3097324,1630205957,2,63,0,1,1630083184,1,1.0,25.0,1.0,-9.0,4.0,1248005 -3097325,1630206129,2,45,0,1,1630083185,1,1.0,12.0,5.0,-9.0,4.0,1248006 -3097326,1630205961,2,64,0,1,1630083186,1,1.0,40.0,1.0,-9.0,4.0,1248007 -3097327,1630206066,2,48,0,1,1630083187,1,1.0,36.0,6.0,-9.0,4.0,1248008 -3097328,1630205968,2,60,0,1,1630083188,1,1.0,40.0,1.0,-9.0,2.0,1248009 -3097329,1630206034,2,54,0,1,1630083189,1,1.0,42.0,1.0,-9.0,4.0,1248010 -3097330,1630206097,2,58,0,1,1630083190,1,2.0,20.0,6.0,-9.0,2.0,1248011 -3097331,1630205967,2,51,0,1,1630083191,1,1.0,20.0,1.0,-9.0,2.0,1248012 -3097332,1630206098,2,58,0,1,1630083192,1,2.0,20.0,6.0,-9.0,2.0,1248013 -3097333,1630205962,2,64,0,1,1630083193,1,1.0,40.0,1.0,-9.0,4.0,1248014 -3097334,1630206130,2,45,0,1,1630083194,1,1.0,12.0,5.0,-9.0,4.0,1248015 -3097335,1630206040,2,61,0,1,1630083195,1,1.0,30.0,1.0,-9.0,4.0,1248016 -3097336,1630205604,2,59,0,1,1630083196,2,1.0,40.0,1.0,-9.0,4.0,1248017 -3097337,1630205790,2,58,0,1,1630083197,2,1.0,40.0,1.0,-9.0,4.0,1248018 -3097338,1630205789,2,55,0,1,1630083198,2,1.0,40.0,1.0,-9.0,4.0,1248019 -3097339,1630206048,2,54,0,1,1630083199,1,1.0,40.0,1.0,-9.0,4.0,1248020 -3097340,1630206075,2,47,0,1,1630083200,1,1.0,37.0,4.0,-9.0,4.0,1248021 -3097341,1630206094,2,45,0,1,1630083201,1,1.0,48.0,1.0,-9.0,4.0,1248022 -3097342,1630206111,2,52,0,1,1630083202,1,1.0,32.0,6.0,-9.0,4.0,1248023 -3097343,1630205661,2,48,0,1,1630083203,2,1.0,20.0,1.0,-9.0,4.0,1248024 -3097344,1630206081,2,60,0,1,1630083204,1,1.0,35.0,1.0,-9.0,4.0,1248025 -3097345,1630206082,2,60,0,1,1630083205,1,1.0,35.0,1.0,-9.0,4.0,1248026 -3097346,1630206044,2,53,0,1,1630083206,1,1.0,40.0,1.0,-9.0,4.0,1248027 -3097347,1630205891,2,48,0,1,1630083207,2,1.0,37.0,1.0,16.0,4.0,1248028 -3097348,1630205819,2,46,0,1,1630083208,2,1.0,38.0,1.0,-9.0,4.0,1248029 -3097349,1630206131,2,58,0,1,1630083209,1,1.0,40.0,1.0,-9.0,4.0,1248030 -3097350,1630206076,2,47,0,1,1630083210,1,1.0,37.0,4.0,-9.0,4.0,1248031 -3097351,1630206132,2,58,0,1,1630083211,1,1.0,40.0,1.0,-9.0,4.0,1248032 -3097352,1630206112,2,52,0,1,1630083212,1,1.0,32.0,6.0,-9.0,4.0,1248033 -3097353,1630205767,2,60,0,1,1630083213,2,1.0,40.0,1.0,-9.0,4.0,1248034 -3097354,1630206095,2,45,0,1,1630083214,1,1.0,48.0,1.0,-9.0,4.0,1248035 -3097355,1630205690,2,62,0,1,1630083215,2,1.0,20.0,6.0,-9.0,4.0,1248036 -3097356,1630205800,2,51,0,1,1630083216,2,1.0,36.0,1.0,15.0,4.0,1248037 -3097357,1630205623,2,53,0,1,1630083217,2,1.0,32.0,1.0,-9.0,4.0,1248038 -3097358,1630205820,2,46,0,1,1630083218,2,1.0,38.0,1.0,-9.0,4.0,1248039 -3097359,1630205494,1,48,0,1,1630083219,1,2.0,40.0,3.0,-9.0,4.0,1248040 -3097360,1630205465,1,53,0,1,1630083220,2,1.0,50.0,1.0,-9.0,4.0,1248041 -3097361,1630206064,2,59,0,1,1630083221,1,1.0,40.0,1.0,-9.0,2.0,1248042 -3097362,1630205506,2,55,0,1,1630083222,1,1.0,20.0,5.0,-9.0,4.0,1248043 -3097363,1630205507,2,19,2,2,1630083222,1,3.0,-9.0,-9.0,-9.0,4.0,1248043 -3097364,1630205505,2,51,10,3,1630083222,2,6.0,-9.0,-9.0,-9.0,4.0,1248043 -3097365,1630205859,2,55,0,1,1630083223,2,6.0,-9.0,-9.0,-9.0,4.0,1248044 -3097366,1630205860,2,26,2,2,1630083223,2,1.0,25.0,4.0,15.0,4.0,1248044 -3097367,1630205861,2,1,7,3,1630083223,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248044 -3097368,1630205632,2,58,0,1,1630083224,1,6.0,-9.0,-9.0,-9.0,4.0,1248045 -3097369,1630205628,2,52,1,2,1630083224,2,1.0,32.0,4.0,-9.0,4.0,1248045 -3097370,1630205630,2,14,2,3,1630083224,1,-9.0,-9.0,-9.0,10.0,-9.0,1248045 -3097371,1630205638,2,46,0,1,1630083225,2,1.0,38.0,1.0,-9.0,4.0,1248046 -3097372,1630205640,2,21,2,2,1630083225,1,6.0,-9.0,-9.0,-9.0,4.0,1248046 -3097373,1630205639,2,46,0,1,1630083226,2,1.0,38.0,1.0,-9.0,4.0,1248047 -3097374,1630205641,2,21,2,2,1630083226,1,6.0,-9.0,-9.0,-9.0,4.0,1248047 -3097375,1630205563,2,55,0,1,1630083227,2,1.0,35.0,1.0,-9.0,4.0,1248048 -3097376,1630205566,2,23,2,2,1630083227,1,3.0,-9.0,-9.0,15.0,4.0,1248048 -3097377,1630205564,2,55,0,1,1630083228,2,1.0,35.0,1.0,-9.0,4.0,1248049 -3097378,1630205567,2,23,2,2,1630083228,1,3.0,-9.0,-9.0,15.0,4.0,1248049 -3097379,1630205726,2,60,0,1,1630083229,2,6.0,-9.0,-9.0,-9.0,4.0,1248050 -3097380,1630205728,2,42,2,2,1630083229,1,1.0,40.0,6.0,15.0,4.0,1248050 -3097381,1630205727,2,60,0,1,1630083230,2,6.0,-9.0,-9.0,-9.0,4.0,1248051 -3097382,1630205729,2,42,2,2,1630083230,1,1.0,40.0,6.0,15.0,4.0,1248051 -3097383,1630205556,2,55,0,1,1630083231,2,1.0,20.0,4.0,-9.0,4.0,1248052 -3097384,1630205557,2,23,2,2,1630083231,1,6.0,-9.0,-9.0,-9.0,4.0,1248052 -3097385,1630205513,2,53,0,1,1630083232,2,1.0,98.0,1.0,-9.0,4.0,1248053 -3097386,1630205514,2,58,1,2,1630083232,1,6.0,-9.0,-9.0,-9.0,4.0,1248053 -3097387,1630205791,2,59,0,1,1630083233,2,1.0,31.0,4.0,-9.0,4.0,1248054 -3097388,1630205793,2,41,2,2,1630083233,1,3.0,-9.0,-9.0,-9.0,4.0,1248054 -3097389,1630205792,2,21,7,3,1630083233,2,1.0,38.0,5.0,-9.0,4.0,1248054 -3097390,1630205785,2,54,0,1,1630083234,2,1.0,32.0,1.0,-9.0,4.0,1248055 -3097391,1630205786,2,51,1,2,1630083234,1,1.0,20.0,5.0,15.0,4.0,1248055 -3097392,1630205970,2,52,0,1,1630083235,1,1.0,40.0,1.0,15.0,4.0,1248056 -3097393,1630205972,2,52,15,2,1630083235,1,1.0,40.0,1.0,15.0,4.0,1248056 -3097394,1630205971,2,52,0,1,1630083236,1,1.0,40.0,1.0,15.0,4.0,1248057 -3097395,1630205973,2,52,15,2,1630083236,1,1.0,40.0,1.0,15.0,4.0,1248057 -3097396,1630205536,2,61,0,1,1630083237,2,1.0,25.0,1.0,-9.0,4.0,1248058 -3097397,1630205538,2,27,2,2,1630083237,1,1.0,2.0,1.0,-9.0,4.0,1248058 -3097398,1630205537,2,61,0,1,1630083238,2,1.0,25.0,1.0,-9.0,4.0,1248059 -3097399,1630205539,2,27,2,2,1630083238,1,1.0,2.0,1.0,-9.0,4.0,1248059 -3097400,1630206142,2,80,0,1,1630083239,1,6.0,-9.0,-9.0,-9.0,4.0,1248060 -3097401,1630206211,2,71,0,1,1630083240,1,6.0,-9.0,-9.0,-9.0,2.0,1248061 -3097402,1630206212,2,71,0,1,1630083241,1,6.0,-9.0,-9.0,-9.0,2.0,1248062 -3097403,1630206133,2,66,0,1,1630083242,1,6.0,-9.0,-9.0,-9.0,2.0,1248063 -3097404,1630206210,2,66,0,1,1630083243,1,6.0,-9.0,-9.0,-9.0,4.0,1248064 -3097405,1630205349,2,74,0,1,1630083244,2,6.0,-9.0,-9.0,-9.0,4.0,1248065 -3097406,1630205364,2,87,0,1,1630083245,2,6.0,-9.0,-9.0,-9.0,4.0,1248066 -3097407,1630206200,2,66,0,1,1630083246,1,1.0,30.0,1.0,-9.0,2.0,1248067 -3097408,1630205389,2,80,0,1,1630083247,2,6.0,-9.0,-9.0,-9.0,4.0,1248068 -3097409,1630206196,2,79,0,1,1630083248,1,6.0,-9.0,-9.0,-9.0,4.0,1248069 -3097410,1630205366,2,81,0,1,1630083249,2,6.0,-9.0,-9.0,-9.0,4.0,1248070 -3097411,1630205318,2,86,0,1,1630083250,2,6.0,-9.0,-9.0,-9.0,4.0,1248071 -3097412,1630206167,2,79,0,1,1630083251,1,6.0,-9.0,-9.0,-9.0,2.0,1248072 -3097413,1630205425,2,72,0,1,1630083252,2,6.0,-9.0,-9.0,-9.0,4.0,1248073 -3097414,1630206194,2,66,0,1,1630083253,1,6.0,-9.0,-9.0,-9.0,4.0,1248074 -3097415,1630205394,2,86,0,1,1630083254,2,6.0,-9.0,-9.0,-9.0,4.0,1248075 -3097416,1630206195,2,66,0,1,1630083255,1,6.0,-9.0,-9.0,-9.0,4.0,1248076 -3097417,1630205455,2,82,0,1,1630083256,2,6.0,-9.0,-9.0,-9.0,4.0,1248077 -3097418,1630205320,2,73,0,1,1630083257,2,6.0,-9.0,-9.0,-9.0,4.0,1248078 -3097419,1630205382,2,68,0,1,1630083258,2,6.0,16.0,6.0,-9.0,3.0,1248079 -3097420,1630206214,2,66,0,1,1630083259,1,6.0,-9.0,-9.0,-9.0,2.0,1248080 -3097421,1630206179,2,69,0,1,1630083260,1,6.0,-9.0,-9.0,-9.0,2.0,1248081 -3097422,1630205416,2,73,0,1,1630083261,2,6.0,-9.0,-9.0,-9.0,4.0,1248082 -3097423,1630206199,2,76,0,1,1630083262,1,6.0,-9.0,-9.0,-9.0,2.0,1248083 -3097424,1630205313,2,69,0,1,1630083263,2,6.0,-9.0,-9.0,-9.0,4.0,1248084 -3097425,1630205371,2,74,0,1,1630083264,2,6.0,-9.0,-9.0,-9.0,4.0,1248085 -3097426,1630206182,2,75,0,1,1630083265,1,6.0,-9.0,-9.0,-9.0,2.0,1248086 -3097427,1630206151,2,94,0,1,1630083266,1,6.0,-9.0,-9.0,-9.0,4.0,1248087 -3097428,1630206189,2,66,0,1,1630083267,1,6.0,-9.0,-9.0,-9.0,4.0,1248088 -3097429,1630206184,2,75,0,1,1630083268,1,6.0,-9.0,-9.0,-9.0,4.0,1248089 -3097430,1630206152,2,94,0,1,1630083269,1,6.0,-9.0,-9.0,-9.0,4.0,1248090 -3097431,1630205358,2,66,0,1,1630083270,2,6.0,-9.0,-9.0,-9.0,4.0,1248091 -3097432,1630205383,2,68,0,1,1630083271,2,6.0,16.0,6.0,-9.0,3.0,1248092 -3097433,1630205417,2,69,0,1,1630083272,2,6.0,-9.0,-9.0,-9.0,4.0,1248093 -3097434,1630205326,2,82,0,1,1630083273,2,6.0,-9.0,-9.0,-9.0,4.0,1248094 -3097435,1630206190,2,67,0,1,1630083274,1,6.0,-9.0,-9.0,-9.0,4.0,1248095 -3097436,1630206149,2,69,0,1,1630083275,1,6.0,-9.0,-9.0,-9.0,2.0,1248096 -3097437,1630206201,2,75,0,1,1630083276,1,6.0,-9.0,-9.0,-9.0,4.0,1248097 -3097438,1630206197,2,79,0,1,1630083277,1,6.0,-9.0,-9.0,-9.0,4.0,1248098 -3097439,1630206174,2,77,0,1,1630083278,1,6.0,-9.0,-9.0,-9.0,4.0,1248099 -3097440,1630205438,2,80,0,1,1630083279,2,6.0,-9.0,-9.0,-9.0,4.0,1248100 -3097441,1630206158,2,66,0,1,1630083280,1,6.0,-9.0,-9.0,-9.0,2.0,1248101 -3097442,1630205337,2,65,0,1,1630083281,2,6.0,-9.0,-9.0,-9.0,4.0,1248102 -3097443,1630206208,2,82,0,1,1630083282,1,6.0,-9.0,-9.0,-9.0,2.0,1248103 -3097444,1630206165,2,69,0,1,1630083283,1,6.0,-9.0,-9.0,-9.0,4.0,1248104 -3097445,1630205359,2,66,0,1,1630083284,2,6.0,-9.0,-9.0,-9.0,4.0,1248105 -3097446,1630205442,2,70,0,1,1630083285,2,6.0,-9.0,-9.0,-9.0,4.0,1248106 -3097447,1630205347,2,85,0,1,1630083286,2,6.0,-9.0,-9.0,-9.0,4.0,1248107 -3097448,1630205452,2,74,0,1,1630083287,2,6.0,-9.0,-9.0,-9.0,4.0,1248108 -3097449,1630206135,2,71,0,1,1630083288,1,6.0,-9.0,-9.0,-9.0,4.0,1248109 -3097450,1630205426,2,72,0,1,1630083289,2,6.0,-9.0,-9.0,-9.0,4.0,1248110 -3097451,1630206178,2,75,0,1,1630083290,1,6.0,-9.0,-9.0,-9.0,4.0,1248111 -3097452,1630206159,2,66,0,1,1630083291,1,6.0,-9.0,-9.0,-9.0,2.0,1248112 -3097453,1630205370,2,66,0,1,1630083292,2,6.0,-9.0,-9.0,-9.0,4.0,1248113 -3097454,1630205415,2,65,0,1,1630083293,2,6.0,-9.0,-9.0,-9.0,4.0,1248114 -3097455,1630206153,2,65,0,1,1630083294,1,6.0,-9.0,-9.0,-9.0,4.0,1248115 -3097456,1630205372,2,74,0,1,1630083295,2,6.0,-9.0,-9.0,-9.0,4.0,1248116 -3097457,1630206191,2,67,0,1,1630083296,1,6.0,-9.0,-9.0,-9.0,4.0,1248117 -3097458,1630205453,2,74,0,1,1630083297,2,6.0,-9.0,-9.0,-9.0,4.0,1248118 -3097459,1630206206,2,70,0,1,1630083298,1,6.0,-9.0,-9.0,-9.0,3.0,1248119 -3097460,1630206169,2,70,0,1,1630083299,1,6.0,-9.0,-9.0,-9.0,4.0,1248120 -3097461,1630205392,2,65,0,1,1630083300,2,6.0,-9.0,-9.0,-9.0,4.0,1248121 -3097462,1630205325,2,70,0,1,1630083301,2,6.0,-9.0,-9.0,-9.0,4.0,1248122 -3097463,1630205360,2,66,0,1,1630083302,2,6.0,-9.0,-9.0,-9.0,4.0,1248123 -3097464,1630206138,2,67,0,1,1630083303,1,6.0,-9.0,-9.0,-9.0,2.0,1248124 -3097465,1630205393,2,65,0,1,1630083304,2,6.0,-9.0,-9.0,-9.0,4.0,1248125 -3097466,1630205340,2,72,0,1,1630083305,2,6.0,-9.0,-9.0,-9.0,3.0,1248126 -3097467,1630206180,2,69,0,1,1630083306,1,6.0,-9.0,-9.0,-9.0,2.0,1248127 -3097468,1630206188,2,70,0,1,1630083307,1,6.0,-9.0,-9.0,-9.0,2.0,1248128 -3097469,1630205357,2,87,0,1,1630083308,2,6.0,-9.0,-9.0,-9.0,4.0,1248129 -3097470,1630205345,2,68,0,1,1630083309,2,6.0,-9.0,-9.0,-9.0,4.0,1248130 -3097471,1630205336,2,70,0,1,1630083310,2,6.0,-9.0,-9.0,-9.0,4.0,1248131 -3097472,1630205354,2,71,0,1,1630083311,2,6.0,-9.0,-9.0,-9.0,4.0,1248132 -3097473,1630205319,2,86,0,1,1630083312,2,6.0,-9.0,-9.0,-9.0,4.0,1248133 -3097474,1630205456,2,82,0,1,1630083313,2,6.0,-9.0,-9.0,-9.0,4.0,1248134 -3097475,1630205344,2,70,0,1,1630083314,2,6.0,-9.0,-9.0,-9.0,4.0,1248135 -3097476,1630206170,2,70,0,1,1630083315,1,6.0,-9.0,-9.0,-9.0,4.0,1248136 -3097477,1630206161,2,66,0,1,1630083316,1,6.0,-9.0,-9.0,-9.0,4.0,1248137 -3097478,1630206207,2,70,0,1,1630083317,1,6.0,-9.0,-9.0,-9.0,3.0,1248138 -3097479,1630205400,2,69,0,1,1630083318,2,6.0,-9.0,-9.0,-9.0,4.0,1248139 -3097480,1630206176,2,72,0,1,1630083319,1,3.0,-9.0,-9.0,15.0,2.0,1248140 -3097481,1630206215,2,66,0,1,1630083320,1,6.0,-9.0,-9.0,-9.0,2.0,1248141 -3097482,1630205338,2,65,0,1,1630083321,2,6.0,-9.0,-9.0,-9.0,4.0,1248142 -3097483,1630205343,2,71,0,1,1630083322,2,6.0,-9.0,-9.0,-9.0,4.0,1248143 -3097484,1630206198,2,79,0,1,1630083323,1,6.0,-9.0,-9.0,-9.0,4.0,1248144 -3097485,1630205451,2,79,0,1,1630083324,2,6.0,-9.0,-9.0,-9.0,4.0,1248145 -3097486,1630205341,2,82,0,1,1630083325,2,6.0,-9.0,-9.0,-9.0,4.0,1248146 -3097487,1630206145,2,69,0,1,1630083326,1,6.0,-9.0,-9.0,-9.0,4.0,1248147 -3097488,1630205395,2,86,0,1,1630083327,2,6.0,-9.0,-9.0,-9.0,4.0,1248148 -3097489,1630206181,2,69,0,1,1630083328,1,6.0,-9.0,-9.0,-9.0,2.0,1248149 -3097490,1630205339,2,65,0,1,1630083329,2,6.0,-9.0,-9.0,-9.0,4.0,1248150 -3097491,1630205399,2,78,0,1,1630083330,2,6.0,-9.0,-9.0,-9.0,4.0,1248151 -3097492,1630205387,2,83,0,1,1630083331,2,6.0,-9.0,-9.0,-9.0,4.0,1248152 -3097493,1630206166,2,79,0,1,1630083332,1,6.0,-9.0,-9.0,-9.0,2.0,1248153 -3097494,1630205378,2,74,0,1,1630083333,2,6.0,-9.0,-9.0,-9.0,4.0,1248154 -3097495,1630206150,2,69,0,1,1630083334,1,6.0,-9.0,-9.0,-9.0,2.0,1248155 -3097496,1630205441,2,67,0,1,1630083335,2,6.0,8.0,6.0,-9.0,4.0,1248156 -3097497,1630205342,2,86,0,1,1630083336,2,6.0,-9.0,-9.0,-9.0,4.0,1248157 -3097498,1630205367,2,81,0,1,1630083337,2,6.0,-9.0,-9.0,-9.0,4.0,1248158 -3097499,1630206134,2,67,0,1,1630083338,1,6.0,-9.0,-9.0,-9.0,2.0,1248159 -3097500,1630205414,2,67,0,1,1630083339,2,6.0,-9.0,-9.0,-9.0,4.0,1248160 -3097501,1630206213,2,86,0,1,1630083340,1,6.0,-9.0,-9.0,-9.0,4.0,1248161 -3097502,1630206177,2,72,0,1,1630083341,1,3.0,-9.0,-9.0,15.0,2.0,1248162 -3097503,1630206160,2,66,0,1,1630083342,1,6.0,-9.0,-9.0,-9.0,2.0,1248163 -3097504,1630205365,2,69,0,1,1630083343,2,6.0,-9.0,-9.0,-9.0,4.0,1248164 -3097505,1630205459,1,76,0,1,1630083344,2,6.0,-9.0,-9.0,-9.0,4.0,1248165 -3097506,1630205461,1,67,0,1,1630083345,2,6.0,-9.0,-9.0,-9.0,4.0,1248166 -3097507,1630206216,1,74,0,1,1630083346,1,6.0,-9.0,-9.0,-9.0,3.0,1248167 -3097508,1630206162,2,70,0,1,1630083347,1,6.0,-9.0,-9.0,-9.0,4.0,1248168 -3097509,1630205435,2,69,0,1,1630083348,2,6.0,-9.0,-9.0,-9.0,4.0,1248169 -3097510,1630206193,2,94,0,1,1630083349,1,6.0,-9.0,-9.0,-9.0,2.0,1248170 -3097511,1630205353,2,69,0,1,1630083350,2,6.0,-9.0,-9.0,-9.0,4.0,1248171 -3097512,1630206209,2,65,0,1,1630083351,1,6.0,12.0,6.0,15.0,2.0,1248172 -3097513,1630206185,2,81,0,1,1630083352,1,6.0,-9.0,-9.0,-9.0,4.0,1248173 -3097514,1630206163,2,70,0,1,1630083353,1,6.0,-9.0,-9.0,-9.0,4.0,1248174 -3097515,1630205330,2,66,0,1,1630083354,2,6.0,-9.0,-9.0,-9.0,4.0,1248175 -3097516,1630206156,2,83,0,1,1630083355,1,6.0,-9.0,-9.0,-9.0,2.0,1248176 -3097517,1630206168,2,76,0,1,1630083356,1,3.0,-9.0,-9.0,-9.0,4.0,1248177 -3097518,1630205424,2,78,0,1,1630083357,2,6.0,-9.0,-9.0,-9.0,4.0,1248178 -3097519,1630206171,2,66,0,1,1630083358,1,6.0,-9.0,-9.0,-9.0,4.0,1248179 -3097520,1630206140,2,86,0,1,1630083359,1,6.0,-9.0,-9.0,-9.0,2.0,1248180 -3097521,1630206141,2,86,0,1,1630083360,1,6.0,-9.0,-9.0,-9.0,2.0,1248181 -3097522,1630205454,2,78,0,1,1630083361,2,6.0,-9.0,-9.0,-9.0,4.0,1248182 -3097523,1630206204,2,68,0,1,1630083362,1,6.0,-9.0,-9.0,-9.0,4.0,1248183 -3097524,1630206146,2,83,0,1,1630083363,1,6.0,-9.0,-9.0,-9.0,4.0,1248184 -3097525,1630206172,2,66,0,1,1630083364,1,6.0,-9.0,-9.0,-9.0,4.0,1248185 -3097526,1630206136,2,77,0,1,1630083365,1,6.0,-9.0,-9.0,-9.0,4.0,1248186 -3097527,1630205322,2,80,0,1,1630083366,2,6.0,-9.0,-9.0,-9.0,4.0,1248187 -3097528,1630206186,2,84,0,1,1630083367,1,6.0,-9.0,-9.0,-9.0,4.0,1248188 -3097529,1630206205,2,68,0,1,1630083368,1,6.0,-9.0,-9.0,-9.0,4.0,1248189 -3097530,1630206147,2,83,0,1,1630083369,1,6.0,-9.0,-9.0,-9.0,4.0,1248190 -3097531,1630205380,2,77,0,1,1630083370,2,6.0,-9.0,-9.0,-9.0,4.0,1248191 -3097532,1630205436,2,69,0,1,1630083371,2,6.0,-9.0,-9.0,-9.0,4.0,1248192 -3097533,1630206173,2,66,0,1,1630083372,1,6.0,-9.0,-9.0,-9.0,4.0,1248193 -3097534,1630205401,2,68,0,1,1630083373,2,6.0,-9.0,-9.0,-9.0,4.0,1248194 -3097535,1630206157,2,83,0,1,1630083374,1,6.0,-9.0,-9.0,-9.0,2.0,1248195 -3097536,1630206137,2,77,0,1,1630083375,1,6.0,-9.0,-9.0,-9.0,4.0,1248196 -3097537,1630205421,2,65,0,1,1630083376,2,6.0,-9.0,-9.0,-9.0,4.0,1248197 -3097538,1630205348,2,66,0,1,1630083377,2,6.0,-9.0,-9.0,-9.0,4.0,1248198 -3097539,1630205443,2,68,0,1,1630083378,2,6.0,-9.0,-9.0,-9.0,4.0,1248199 -3097540,1630205379,2,69,0,1,1630083379,2,6.0,-9.0,-9.0,-9.0,4.0,1248200 -3097541,1630205388,2,79,0,1,1630083380,2,6.0,-9.0,-9.0,-9.0,4.0,1248201 -3097542,1630205381,2,81,0,1,1630083381,2,6.0,-9.0,-9.0,-9.0,4.0,1248202 -3097543,1630205361,2,65,0,1,1630083382,2,6.0,-9.0,-9.0,-9.0,4.0,1248203 -3097544,1630205422,2,65,0,1,1630083383,2,6.0,-9.0,-9.0,-9.0,4.0,1248204 -3097545,1630206187,2,84,0,1,1630083384,1,6.0,-9.0,-9.0,-9.0,4.0,1248205 -3097546,1630205323,2,67,0,1,1630083385,2,6.0,-9.0,-9.0,-9.0,4.0,1248206 -3097547,1630205324,2,67,0,1,1630083386,2,6.0,-9.0,-9.0,-9.0,4.0,1248207 -3097548,1630205444,2,68,0,1,1630083387,2,6.0,-9.0,-9.0,-9.0,4.0,1248208 -3097549,1630205402,2,65,0,1,1630083388,2,6.0,-9.0,-9.0,-9.0,4.0,1248209 -3097550,1630205578,2,77,0,1,1630083389,1,6.0,-9.0,-9.0,-9.0,2.0,1248210 -3097551,1630205576,2,62,1,2,1630083389,2,6.0,-9.0,-9.0,-9.0,4.0,1248210 -3097552,1630205316,2,73,0,1,1630083390,2,6.0,-9.0,-9.0,-9.0,4.0,1248211 -3097553,1630205317,2,43,2,2,1630083390,2,6.0,-9.0,-9.0,-9.0,4.0,1248211 -3097554,1630205368,2,65,0,1,1630083391,2,6.0,-9.0,-9.0,-9.0,4.0,1248212 -3097555,1630205369,2,45,2,2,1630083391,1,3.0,15.0,6.0,-9.0,4.0,1248212 -3097556,1630205390,2,71,0,1,1630083392,2,6.0,-9.0,-9.0,-9.0,4.0,1248213 -3097557,1630205391,2,71,1,2,1630083392,1,6.0,-9.0,-9.0,-9.0,4.0,1248213 -3097558,1630205448,2,66,0,1,1630083393,2,6.0,-9.0,-9.0,-9.0,4.0,1248214 -3097559,1630205449,2,21,10,2,1630083393,1,3.0,-9.0,-9.0,-9.0,4.0,1248214 -3097560,1630205579,2,77,0,1,1630083394,1,6.0,-9.0,-9.0,-9.0,2.0,1248215 -3097561,1630205577,2,62,1,2,1630083394,2,6.0,-9.0,-9.0,-9.0,4.0,1248215 -3097562,1630205427,2,73,0,1,1630083395,2,6.0,-9.0,-9.0,-9.0,4.0,1248216 -3097563,1630205429,2,51,2,2,1630083395,1,6.0,-9.0,-9.0,-9.0,4.0,1248216 -3097564,1630205314,2,65,0,1,1630083396,2,6.0,-9.0,-9.0,-9.0,4.0,1248217 -3097565,1630205315,2,32,2,2,1630083396,2,6.0,-9.0,-9.0,-9.0,4.0,1248217 -3097566,1630205428,2,73,0,1,1630083397,2,6.0,-9.0,-9.0,-9.0,4.0,1248218 -3097567,1630205430,2,51,2,2,1630083397,1,6.0,-9.0,-9.0,-9.0,4.0,1248218 -3097568,1630205355,2,65,0,1,1630083398,2,6.0,-9.0,-9.0,-9.0,4.0,1248219 -3097569,1630205356,2,15,7,2,1630083398,1,-9.0,-9.0,-9.0,8.0,-9.0,1248219 -3097570,1630205331,2,78,0,1,1630083399,2,6.0,-9.0,-9.0,-9.0,4.0,1248220 -3097571,1630205332,2,51,2,2,1630083399,2,1.0,30.0,1.0,-9.0,4.0,1248220 -3097572,1630205333,2,17,7,3,1630083399,2,6.0,-9.0,-9.0,12.0,4.0,1248220 -3097573,1630205334,2,17,7,4,1630083399,2,6.0,-9.0,-9.0,12.0,4.0,1248220 -3097574,1630206164,2,68,0,1,1630083400,1,1.0,40.0,1.0,-9.0,2.0,1248221 -3097575,1630206143,2,66,0,1,1630083401,1,1.0,35.0,1.0,-9.0,4.0,1248222 -3097576,1630206154,2,72,0,1,1630083402,1,1.0,30.0,1.0,-9.0,4.0,1248223 -3097577,1630205329,2,67,0,1,1630083403,2,1.0,8.0,1.0,-9.0,4.0,1248224 -3097578,1630205824,2,24,0,1,1630083404,2,6.0,30.0,5.0,-9.0,4.0,1248225 -3097579,1630205827,2,5,2,2,1630083404,2,-9.0,-9.0,-9.0,2.0,-9.0,1248225 -3097580,1630205825,2,3,2,3,1630083404,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248225 -3097581,1630205826,2,1,2,4,1630083404,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248225 -3097582,1630205934,2,23,0,1,1630083405,1,6.0,-9.0,-9.0,-9.0,4.0,1248226 -3097583,1630205880,2,23,0,1,1630083406,2,6.0,15.0,4.0,15.0,4.0,1248227 -3097584,1630205558,2,22,0,1,1630083407,2,6.0,40.0,1.0,-9.0,4.0,1248228 -3097585,1630205897,2,23,0,1,1630083408,2,6.0,-9.0,-9.0,-9.0,4.0,1248229 -3097586,1630205480,1,24,0,1,1630083409,1,6.0,-9.0,-9.0,15.0,4.0,1248230 -3097587,1630205495,1,20,0,1,1630083410,1,6.0,35.0,5.0,15.0,4.0,1248231 -3097588,1630205515,2,24,0,1,1630083411,2,3.0,32.0,5.0,-9.0,4.0,1248232 -3097589,1630205516,2,8,2,2,1630083411,1,-9.0,-9.0,-9.0,4.0,-9.0,1248232 -3097590,1630205646,2,23,0,1,1630083412,2,3.0,20.0,6.0,15.0,4.0,1248233 -3097591,1630205647,2,2,2,2,1630083412,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248233 -3097592,1630206105,2,19,0,1,1630083413,1,1.0,50.0,1.0,-9.0,4.0,1248234 -3097593,1630206127,2,22,0,1,1630083414,1,1.0,20.0,6.0,-9.0,4.0,1248235 -3097594,1630206106,2,19,0,1,1630083415,1,1.0,50.0,1.0,-9.0,4.0,1248236 -3097595,1630205980,2,24,0,1,1630083416,1,1.0,40.0,1.0,-9.0,4.0,1248237 -3097596,1630205771,2,22,0,1,1630083417,2,1.0,40.0,1.0,-9.0,4.0,1248238 -3097597,1630205478,1,21,0,1,1630083418,2,1.0,25.0,1.0,-9.0,4.0,1248239 -3097598,1630205889,2,23,0,1,1630083419,2,1.0,40.0,1.0,15.0,4.0,1248240 -3097599,1630205605,2,24,0,1,1630083420,2,1.0,24.0,1.0,15.0,4.0,1248241 -3097600,1630205606,2,6,2,2,1630083420,2,-9.0,-9.0,-9.0,3.0,-9.0,1248241 -3097601,1630205607,2,4,2,3,1630083420,2,-9.0,-9.0,-9.0,1.0,-9.0,1248241 -3097602,1630205591,2,23,0,1,1630083421,1,1.0,8.0,1.0,15.0,4.0,1248242 -3097603,1630205593,2,4,2,2,1630083421,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248242 -3097604,1630205589,2,21,13,3,1630083421,2,6.0,-9.0,-9.0,-9.0,4.0,1248242 -3097605,1630205886,2,22,0,1,1630083422,2,1.0,20.0,1.0,15.0,4.0,1248243 -3097606,1630205887,2,3,2,2,1630083422,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248243 -3097607,1630205739,2,24,0,1,1630083423,1,1.0,70.0,4.0,-9.0,4.0,1248244 -3097608,1630205741,2,1,2,2,1630083423,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248244 -3097609,1630205743,2,4,4,3,1630083423,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248244 -3097610,1630205737,2,21,13,4,1630083423,2,1.0,24.0,4.0,-9.0,4.0,1248244 -3097611,1630205858,2,22,0,1,1630083424,1,1.0,40.0,1.0,-9.0,4.0,1248245 -3097612,1630205857,2,1,2,2,1630083424,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248245 -3097613,1630205856,2,22,13,3,1630083424,2,1.0,40.0,1.0,-9.0,4.0,1248245 -3097614,1630205888,2,37,0,1,1630083425,2,1.0,35.0,2.0,-9.0,4.0,1248246 -3097615,1630206000,2,60,0,1,1630083426,1,1.0,40.0,1.0,-9.0,4.0,1248247 -3097616,1630205712,2,22,0,1,1630083427,2,3.0,-9.0,-9.0,-9.0,4.0,1248248 -3097617,1630205713,2,2,2,2,1630083427,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248248 -3097618,1630205714,2,13,5,3,1630083427,1,-9.0,-9.0,-9.0,9.0,-9.0,1248248 -3097619,1630205407,2,76,0,1,1630083428,2,6.0,-9.0,-9.0,-9.0,4.0,1248249 -3097620,1630205692,2,49,0,1,1630083429,2,3.0,-9.0,-9.0,-9.0,4.0,1248250 -3097621,1630205693,2,45,1,2,1630083429,1,1.0,40.0,1.0,-9.0,4.0,1248250 -3097622,1630205694,2,23,2,3,1630083429,1,1.0,45.0,6.0,-9.0,4.0,1248250 -3097623,1630205695,2,43,10,4,1630083429,1,6.0,-9.0,-9.0,-9.0,4.0,1248250 -3097624,1630205612,2,55,0,1,1630083430,1,6.0,-9.0,-9.0,-9.0,2.0,1248251 -3097625,1630205610,2,25,2,2,1630083430,2,1.0,40.0,6.0,15.0,4.0,1248251 -3097626,1630205614,2,22,2,3,1630083430,1,1.0,40.0,1.0,-9.0,4.0,1248251 -3097627,1630205616,2,19,2,4,1630083430,1,6.0,-9.0,-9.0,14.0,4.0,1248251 -3097628,1630205374,2,71,0,1,1630083431,2,6.0,-9.0,-9.0,-9.0,4.0,1248252 -3097629,1630205376,2,54,10,2,1630083431,1,3.0,50.0,6.0,-9.0,4.0,1248252 -3097630,1630205377,2,39,10,3,1630083431,1,3.0,-9.0,-9.0,-9.0,4.0,1248252 -3097631,1630205375,2,17,10,4,1630083431,1,6.0,-9.0,-9.0,14.0,4.0,1248252 -3097632,1630205500,1,22,0,1,1630083432,1,6.0,28.0,4.0,16.0,4.0,1248253 -3097633,1630205463,1,24,0,1,1630083433,2,1.0,20.0,3.0,15.0,4.0,1248254 -3097634,1630205464,1,29,1,2,1630083433,1,1.0,31.0,3.0,15.0,4.0,1248254 -3097635,1630206050,2,56,0,1,1630083434,1,1.0,40.0,1.0,-9.0,4.0,1248255 -3097636,1630205321,2,75,0,1,1630083435,2,1.0,52.0,1.0,-9.0,4.0,1248256 -3097637,1630205386,2,46,0,1,1630083436,2,1.0,30.0,4.0,-9.0,4.0,1248257 -3097638,1630205384,2,78,6,2,1630083436,2,6.0,-9.0,-9.0,-9.0,4.0,1248257 -3097639,1630205385,2,87,10,3,1630083436,2,6.0,-9.0,-9.0,-9.0,4.0,1248257 -3097640,1630205572,2,59,0,1,1630083437,2,6.0,-9.0,-9.0,-9.0,4.0,1248258 -3097641,1630205575,2,16,7,2,1630083437,1,6.0,-9.0,-9.0,13.0,-9.0,1248258 -3097642,1630205779,2,58,0,1,1630083438,2,1.0,40.0,1.0,-9.0,4.0,1248259 -3097643,1630205781,2,26,2,2,1630083438,1,3.0,-9.0,-9.0,-9.0,4.0,1248259 -3097644,1630205733,2,57,0,1,1630083439,2,6.0,-9.0,-9.0,-9.0,4.0,1248260 -3097645,1630205734,2,38,2,2,1630083439,1,6.0,-9.0,-9.0,-9.0,4.0,1248260 -3097646,1630205735,2,20,2,3,1630083439,1,6.0,-9.0,-9.0,-9.0,4.0,1248260 -3097647,1630205479,1,31,0,1,1630083440,2,1.0,20.0,1.0,-9.0,4.0,1248261 -3097648,1630205335,2,75,0,1,1630083441,2,6.0,-9.0,-9.0,-9.0,4.0,1248262 -3097649,1630205523,2,25,0,1,1630083442,2,1.0,40.0,1.0,15.0,4.0,1248263 -3097650,1630205524,2,9,2,2,1630083442,1,-9.0,-9.0,-9.0,5.0,-9.0,1248263 -3097651,1630205526,2,4,2,3,1630083442,2,-9.0,-9.0,-9.0,1.0,-9.0,1248263 -3097652,1630205525,2,29,13,4,1630083442,1,1.0,40.0,1.0,-9.0,2.0,1248263 -3097653,1630205418,2,87,0,1,1630083443,2,6.0,-9.0,-9.0,-9.0,4.0,1248264 -3097654,1630205419,2,57,2,2,1630083443,2,6.0,-9.0,-9.0,-9.0,4.0,1248264 -3097655,1630205420,2,53,2,3,1630083443,1,6.0,-9.0,-9.0,-9.0,4.0,1248264 -3097656,1630205812,2,47,0,1,1630083444,2,3.0,-9.0,-9.0,-9.0,4.0,1248265 -3097657,1630205816,2,27,2,2,1630083444,1,3.0,-9.0,-9.0,-9.0,4.0,1248265 -3097658,1630205814,2,16,2,3,1630083444,1,6.0,-9.0,-9.0,13.0,-9.0,1248265 -3097659,1630205818,2,38,15,4,1630083444,1,6.0,-9.0,-9.0,-9.0,4.0,1248265 -3097660,1630205412,2,75,0,1,1630083445,2,1.0,20.0,1.0,-9.0,4.0,1248266 -3097661,1630205413,2,62,13,2,1630083445,2,6.0,-9.0,-9.0,-9.0,4.0,1248266 -3097662,1630206175,2,72,0,1,1630083446,1,6.0,-9.0,-9.0,-9.0,4.0,1248267 -3097663,1630206061,2,23,0,1,1630083447,1,1.0,40.0,3.0,-9.0,4.0,1248268 -3097664,1630205834,2,22,0,1,1630083448,2,6.0,-9.0,-9.0,-9.0,4.0,1248269 -3097665,1630205836,2,3,2,2,1630083448,2,-9.0,-9.0,-9.0,1.0,-9.0,1248269 -3097666,1630205837,2,2,2,3,1630083448,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248269 -3097667,1630205835,2,0,2,4,1630083448,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248269 -3097668,1630205565,2,55,0,1,1630083449,2,1.0,35.0,1.0,-9.0,4.0,1248270 -3097669,1630205568,2,23,2,2,1630083449,1,3.0,-9.0,-9.0,15.0,4.0,1248270 -3097670,1630205481,1,45,0,1,1630083450,1,6.0,-9.0,-9.0,-9.0,4.0,1248271 -3097671,1630205597,2,58,0,1,1630083451,2,1.0,40.0,1.0,-9.0,4.0,1248272 -3097672,1630205598,2,21,2,2,1630083451,1,1.0,32.0,2.0,-9.0,4.0,1248272 -3097673,1630205599,2,58,13,3,1630083451,1,6.0,-9.0,-9.0,-9.0,2.0,1248272 -3097674,1630205903,2,47,0,1,1630083452,1,6.0,-9.0,-9.0,-9.0,4.0,1248273 -3097675,1630205899,2,17,2,2,1630083452,1,6.0,-9.0,-9.0,13.0,4.0,1248273 -3097676,1630205901,2,16,2,3,1630083452,1,6.0,-9.0,-9.0,12.0,-9.0,1248273 -3097677,1630205905,2,70,15,4,1630083452,1,6.0,-9.0,-9.0,-9.0,2.0,1248273 -3097678,1630205850,2,38,0,1,1630083453,2,1.0,40.0,1.0,-9.0,4.0,1248274 -3097679,1630205852,2,38,1,2,1630083453,1,1.0,40.0,1.0,-9.0,4.0,1248274 -3097680,1630205851,2,6,2,3,1630083453,1,-9.0,-9.0,-9.0,3.0,-9.0,1248274 -3097681,1630205853,2,2,2,4,1630083453,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248274 -3097682,1630205663,2,46,0,1,1630083454,2,1.0,40.0,5.0,-9.0,4.0,1248275 -3097683,1630205664,2,28,10,2,1630083454,1,6.0,-9.0,-9.0,-9.0,4.0,1248275 -3097684,1630205665,2,33,12,3,1630083454,1,6.0,-9.0,-9.0,-9.0,4.0,1248275 -3097685,1630205633,2,58,0,1,1630083455,1,6.0,-9.0,-9.0,-9.0,4.0,1248276 -3097686,1630205629,2,52,1,2,1630083455,2,1.0,32.0,4.0,-9.0,4.0,1248276 -3097687,1630205631,2,14,2,3,1630083455,1,-9.0,-9.0,-9.0,10.0,-9.0,1248276 -3097688,1630205691,2,62,0,1,1630083456,2,1.0,20.0,6.0,-9.0,4.0,1248277 -3097689,1630205718,2,49,0,1,1630083457,2,1.0,48.0,1.0,-9.0,4.0,1248278 -3097690,1630205719,2,26,2,2,1630083457,1,1.0,3.0,6.0,-9.0,4.0,1248278 -3097691,1630205327,2,74,0,1,1630083458,2,6.0,-9.0,-9.0,-9.0,4.0,1248279 -3097692,1630205328,2,46,2,2,1630083458,1,6.0,-9.0,-9.0,-9.0,4.0,1248279 -3097693,1630205731,2,53,0,1,1630083459,2,1.0,40.0,1.0,-9.0,4.0,1248280 -3097694,1630205732,2,46,1,2,1630083459,1,1.0,40.0,1.0,-9.0,4.0,1248280 -3097695,1630205498,1,57,0,1,1630083460,1,1.0,45.0,2.0,-9.0,4.0,1248281 -3097696,1630205527,2,53,0,1,1630083461,2,1.0,35.0,1.0,-9.0,4.0,1248282 -3097697,1630205528,2,34,2,2,1630083461,2,6.0,-9.0,-9.0,-9.0,4.0,1248282 -3097698,1630205483,1,29,0,1,1630083462,1,1.0,40.0,1.0,-9.0,2.0,1248283 -3097699,1630205433,2,88,0,1,1630083463,2,6.0,-9.0,-9.0,-9.0,4.0,1248284 -3097700,1630205434,2,24,7,2,1630083463,1,6.0,-9.0,-9.0,-9.0,4.0,1248284 -3097701,1630205974,2,51,0,1,1630083464,1,1.0,40.0,1.0,-9.0,4.0,1248285 -3097702,1630205486,1,24,0,1,1630083465,1,2.0,10.0,1.0,15.0,4.0,1248286 -3097703,1630206218,1,68,0,1,1630083466,1,6.0,-9.0,-9.0,-9.0,2.0,1248287 -3097704,1630205760,2,32,0,1,1630083467,2,1.0,40.0,1.0,-9.0,4.0,1248288 -3097705,1630205761,2,6,2,2,1630083467,2,-9.0,-9.0,-9.0,3.0,-9.0,1248288 -3097706,1630206117,2,56,0,1,1630083468,1,6.0,-9.0,-9.0,-9.0,4.0,1248289 -3097707,1630206118,2,23,2,2,1630083468,1,6.0,-9.0,-9.0,-9.0,4.0,1248289 -3097708,1630206119,2,23,2,3,1630083468,1,6.0,-9.0,-9.0,-9.0,4.0,1248289 -3097709,1630206120,2,20,2,4,1630083468,1,6.0,-9.0,-9.0,-9.0,4.0,1248289 -3097710,1630205548,2,53,0,1,1630083469,2,6.0,-9.0,-9.0,-9.0,4.0,1248290 -3097711,1630205549,2,22,2,2,1630083469,2,1.0,6.0,1.0,15.0,4.0,1248290 -3097712,1630205550,2,13,2,3,1630083469,1,-9.0,-9.0,-9.0,11.0,-9.0,1248290 -3097713,1630205551,2,1,7,4,1630083469,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248290 -3097714,1630205796,2,21,0,1,1630083470,1,1.0,40.0,4.0,-9.0,4.0,1248291 -3097715,1630205795,2,21,15,2,1630083470,2,1.0,40.0,1.0,15.0,4.0,1248291 -3097716,1630205803,2,37,0,1,1630083471,1,1.0,40.0,1.0,-9.0,4.0,1248292 -3097717,1630205801,2,37,1,2,1630083471,2,1.0,15.0,1.0,-9.0,4.0,1248292 -3097718,1630205804,2,13,2,3,1630083471,2,-9.0,-9.0,-9.0,10.0,-9.0,1248292 -3097719,1630205802,2,10,2,4,1630083471,1,-9.0,-9.0,-9.0,6.0,-9.0,1248292 -3097720,1630205468,2,54,0,1,1630083472,2,6.0,-9.0,-9.0,-9.0,4.0,1248293 -3097721,1630205469,2,25,2,2,1630083472,2,6.0,-9.0,-9.0,-9.0,4.0,1248293 -3097722,1630205470,2,51,5,3,1630083472,2,6.0,-9.0,-9.0,-9.0,4.0,1248293 -3097723,1630205467,1,54,15,4,1630083472,2,6.0,-9.0,-9.0,-9.0,4.0,1248293 -3097724,1630205592,2,23,0,1,1630083473,1,1.0,8.0,1.0,15.0,4.0,1248294 -3097725,1630205594,2,4,2,2,1630083473,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248294 -3097726,1630205590,2,21,13,3,1630083473,2,6.0,-9.0,-9.0,-9.0,4.0,1248294 -3097727,1630205618,2,46,0,1,1630083474,2,1.0,37.0,1.0,16.0,4.0,1248295 -3097728,1630205619,2,30,2,2,1630083474,1,1.0,27.0,3.0,-9.0,4.0,1248295 -3097729,1630205497,1,22,0,1,1630083475,1,1.0,15.0,1.0,15.0,4.0,1248296 -3097730,1630206107,2,19,0,1,1630083476,1,1.0,50.0,1.0,-9.0,4.0,1248297 -3097731,1630206192,2,67,0,1,1630083477,1,1.0,50.0,1.0,-9.0,4.0,1248298 -3097732,1630205657,2,77,0,1,1630083478,1,6.0,-9.0,-9.0,-9.0,4.0,1248299 -3097733,1630205656,2,64,5,2,1630083478,2,6.0,-9.0,-9.0,-9.0,4.0,1248299 -3097734,1630206013,2,47,0,1,1630083479,1,1.0,40.0,1.0,-9.0,4.0,1248300 -3097735,1630205909,2,47,0,1,1630083480,1,1.0,40.0,1.0,-9.0,4.0,1248301 -3097736,1630205908,2,10,2,2,1630083480,1,-9.0,-9.0,-9.0,6.0,-9.0,1248301 -3097737,1630205722,2,23,0,1,1630083481,2,6.0,-9.0,-9.0,-9.0,4.0,1248302 -3097738,1630205723,2,21,5,2,1630083481,2,6.0,-9.0,-9.0,-9.0,4.0,1248302 -3097739,1630205724,2,4,10,3,1630083481,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248302 -3097740,1630205725,2,1,10,4,1630083481,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248302 -3097741,1630205873,2,50,0,1,1630083482,2,1.0,40.0,1.0,-9.0,4.0,1248303 -3097742,1630205874,2,17,14,2,1630083482,2,6.0,-9.0,-9.0,13.0,4.0,1248303 -3097743,1630205969,2,42,0,1,1630083483,1,1.0,45.0,1.0,-9.0,4.0,1248304 -3097744,1630205892,2,35,0,1,1630083484,2,6.0,-9.0,-9.0,-9.0,4.0,1248305 -3097745,1630205894,2,12,2,2,1630083484,2,-9.0,-9.0,-9.0,8.0,-9.0,1248305 -3097746,1630205893,2,9,2,3,1630083484,1,-9.0,-9.0,-9.0,5.0,-9.0,1248305 -3097747,1630205895,2,5,2,4,1630083484,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248305 -3097748,1630205938,2,24,0,1,1630083485,1,1.0,35.0,1.0,-9.0,4.0,1248306 -3097749,1630205939,2,18,5,2,1630083485,1,1.0,16.0,3.0,15.0,4.0,1248306 -3097750,1630205940,2,61,11,3,1630083485,1,6.0,-9.0,-9.0,-9.0,4.0,1248306 -3097751,1630205941,2,66,12,4,1630083485,1,1.0,16.0,3.0,-9.0,4.0,1248306 -3097752,1630205773,2,32,0,1,1630083486,1,1.0,40.0,1.0,-9.0,4.0,1248307 -3097753,1630205774,2,7,2,2,1630083486,2,-9.0,-9.0,-9.0,4.0,-9.0,1248307 -3097754,1630205775,2,6,2,3,1630083486,2,-9.0,-9.0,-9.0,3.0,-9.0,1248307 -3097755,1630205772,2,29,13,4,1630083486,2,1.0,25.0,1.0,-9.0,4.0,1248307 -3097756,1630206148,2,73,0,1,1630083487,1,6.0,-9.0,-9.0,-9.0,4.0,1248308 -3097757,1630205671,2,45,0,1,1630083488,2,1.0,40.0,1.0,-9.0,4.0,1248309 -3097758,1630205672,2,14,2,2,1630083488,2,-9.0,-9.0,-9.0,10.0,-9.0,1248309 -3097759,1630205878,2,53,0,1,1630083489,2,1.0,45.0,1.0,-9.0,4.0,1248310 -3097760,1630205879,2,32,2,2,1630083489,2,1.0,40.0,1.0,-9.0,4.0,1248310 -3097761,1630205709,2,47,0,1,1630083490,2,6.0,-9.0,-9.0,-9.0,4.0,1248311 -3097762,1630205710,2,13,2,2,1630083490,1,-9.0,-9.0,-9.0,9.0,-9.0,1248311 -3097763,1630205711,2,13,2,3,1630083490,2,-9.0,-9.0,-9.0,9.0,-9.0,1248311 -3097764,1630206068,2,38,0,1,1630083491,1,1.0,55.0,1.0,-9.0,4.0,1248312 -3097765,1630206108,2,46,0,1,1630083492,1,3.0,-9.0,-9.0,-9.0,4.0,1248313 -3097766,1630205679,2,32,0,1,1630083493,2,1.0,40.0,4.0,14.0,4.0,1248314 -3097767,1630205680,2,14,2,2,1630083493,1,-9.0,-9.0,-9.0,11.0,-9.0,1248314 -3097768,1630205681,2,10,2,3,1630083493,1,-9.0,-9.0,-9.0,7.0,-9.0,1248314 -3097769,1630205462,1,67,0,1,1630083494,2,6.0,-9.0,-9.0,-9.0,4.0,1248315 -3097770,1630206217,1,69,0,1,1630083495,1,1.0,60.0,1.0,-9.0,4.0,1248316 -3097771,1630205931,2,34,0,1,1630083496,1,3.0,-9.0,-9.0,-9.0,4.0,1248317 -3097772,1630205932,2,18,10,2,1630083496,1,6.0,-9.0,-9.0,14.0,4.0,1248317 -3097773,1630205431,2,65,0,1,1630083497,2,6.0,-9.0,-9.0,-9.0,4.0,1248318 -3097774,1630205432,2,11,7,2,1630083497,2,-9.0,-9.0,-9.0,8.0,-9.0,1248318 -3097775,1630205844,2,56,0,1,1630083498,2,1.0,40.0,1.0,-9.0,4.0,1248319 -3097776,1630205845,2,22,2,2,1630083498,1,1.0,40.0,1.0,-9.0,4.0,1248319 -3097777,1630205846,2,57,13,3,1630083498,1,6.0,-9.0,-9.0,-9.0,2.0,1248319 -3097778,1630206155,2,72,0,1,1630083499,1,1.0,30.0,1.0,-9.0,4.0,1248320 -3097779,1630205482,1,31,0,1,1630083500,1,3.0,8.0,4.0,-9.0,4.0,1248321 -3097780,1630205654,2,41,0,1,1630083501,2,2.0,40.0,1.0,-9.0,4.0,1248322 -3097781,1630205655,2,17,2,2,1630083501,2,6.0,30.0,6.0,14.0,4.0,1248322 -3097782,1630205501,2,44,0,1,1630083502,2,3.0,-9.0,-9.0,15.0,4.0,1248323 -3097783,1630205502,2,12,2,2,1630083502,1,-9.0,-9.0,-9.0,9.0,-9.0,1248323 -3097784,1630205445,2,79,0,1,1630083503,2,6.0,-9.0,-9.0,-9.0,4.0,1248324 -3097785,1630205446,2,60,2,2,1630083503,2,6.0,-9.0,-9.0,-9.0,4.0,1248324 -3097786,1630205447,2,15,7,3,1630083503,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248324 -3097787,1630205914,2,16,0,1,1630083504,1,6.0,-9.0,-9.0,14.0,-9.0,1248325 -3097788,1630205915,2,38,15,2,1630083504,1,1.0,40.0,1.0,-9.0,4.0,1248325 -3097789,1630205911,2,45,0,1,1630083505,1,1.0,85.0,1.0,-9.0,4.0,1248326 -3097790,1630205912,2,14,2,2,1630083505,2,-9.0,-9.0,-9.0,9.0,-9.0,1248326 -3097791,1630205910,2,10,2,3,1630083505,1,-9.0,-9.0,-9.0,7.0,-9.0,1248326 -3097792,1630205913,2,8,2,4,1630083505,2,-9.0,-9.0,-9.0,4.0,-9.0,1248326 -3097793,1630205423,2,73,0,1,1630083506,2,6.0,-9.0,-9.0,-9.0,4.0,1248327 -3097794,1630205919,2,40,0,1,1630083507,1,1.0,26.0,6.0,-9.0,4.0,1248328 -3097795,1630205484,1,24,0,1,1630083508,1,6.0,24.0,3.0,16.0,4.0,1248329 -3097796,1630205350,2,73,0,1,1630083509,2,6.0,-9.0,-9.0,-9.0,4.0,1248330 -3097797,1630205351,2,26,7,2,1630083509,1,6.0,-9.0,-9.0,-9.0,4.0,1248330 -3097798,1630205352,2,15,7,3,1630083509,2,-9.0,-9.0,-9.0,12.0,-9.0,1248330 -3097799,1630205555,2,60,0,1,1630083510,2,6.0,-9.0,-9.0,-9.0,4.0,1248331 -3097800,1630205707,2,20,0,1,1630083511,2,6.0,-9.0,-9.0,-9.0,4.0,1248332 -3097801,1630205708,2,2,2,2,1630083511,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248332 -3097802,1630206202,2,68,0,1,1630083512,1,1.0,45.0,1.0,-9.0,4.0,1248333 -3097803,1630206203,2,68,12,2,1630083512,1,1.0,32.0,1.0,-9.0,4.0,1248333 -3097804,1630205543,2,61,0,1,1630083513,2,6.0,-9.0,-9.0,-9.0,4.0,1248334 -3097805,1630205544,2,17,7,2,1630083513,2,6.0,-9.0,-9.0,14.0,4.0,1248334 -3097806,1630205828,2,51,0,1,1630083514,2,6.0,-9.0,-9.0,-9.0,4.0,1248335 -3097807,1630206139,2,76,0,1,1630083515,1,6.0,-9.0,-9.0,-9.0,2.0,1248336 -3097808,1630205782,2,47,0,1,1630083516,2,1.0,35.0,1.0,-9.0,4.0,1248337 -3097809,1630205783,2,21,2,2,1630083516,2,1.0,36.0,1.0,15.0,4.0,1248337 -3097810,1630205784,2,17,2,3,1630083516,1,6.0,-9.0,-9.0,14.0,4.0,1248337 -3097811,1630205944,2,61,0,1,1630083517,1,1.0,40.0,1.0,-9.0,4.0,1248338 -3097812,1630205945,2,51,10,2,1630083517,1,6.0,-9.0,-9.0,-9.0,4.0,1248338 -3097813,1630205833,2,50,0,1,1630083518,2,3.0,-9.0,-9.0,15.0,4.0,1248339 -3097814,1630205658,2,20,0,1,1630083519,2,3.0,48.0,6.0,15.0,4.0,1248340 -3097815,1630205660,2,0,2,2,1630083519,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248340 -3097816,1630205659,2,24,15,3,1630083519,1,1.0,30.0,1.0,-9.0,4.0,1248340 -3097817,1630205787,2,31,0,1,1630083520,2,1.0,40.0,1.0,-9.0,4.0,1248341 -3097818,1630205788,2,30,10,2,1630083520,1,6.0,-9.0,-9.0,-9.0,4.0,1248341 -3097819,1630206144,2,66,0,1,1630083521,1,1.0,35.0,1.0,-9.0,4.0,1248342 -3097820,1630205561,2,19,0,1,1630083522,2,3.0,22.0,1.0,-9.0,4.0,1248343 -3097821,1630205562,2,1,2,2,1630083522,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248343 -3097822,1630206087,2,35,0,1,1630083523,1,1.0,40.0,1.0,-9.0,2.0,1248344 -3097823,1630205496,1,32,0,1,1630083524,1,1.0,60.0,5.0,-9.0,4.0,1248345 -3097824,1630205716,2,35,0,1,1630083525,2,1.0,15.0,5.0,15.0,4.0,1248346 -3097825,1630205717,2,12,2,2,1630083525,2,-9.0,-9.0,-9.0,8.0,-9.0,1248346 -3097826,1630206043,2,44,0,1,1630083526,1,3.0,-9.0,-9.0,15.0,3.0,1248347 -3097827,1630205410,2,72,0,1,1630083527,2,6.0,-9.0,-9.0,-9.0,4.0,1248348 -3097828,1630205411,2,41,2,2,1630083527,1,1.0,40.0,1.0,-9.0,4.0,1248348 -3097829,1630205666,2,63,0,1,1630083528,2,1.0,40.0,1.0,-9.0,4.0,1248349 -3097830,1630205667,2,17,7,2,1630083528,2,6.0,-9.0,-9.0,13.0,4.0,1248349 -3097831,1630205362,2,71,0,1,1630083529,2,6.0,-9.0,-9.0,-9.0,4.0,1248350 -3097832,1630205363,2,52,15,2,1630083529,2,1.0,28.0,1.0,-9.0,4.0,1248350 -3097833,1630205439,2,94,0,1,1630083530,2,6.0,-9.0,-9.0,-9.0,4.0,1248351 -3097834,1630205998,2,21,0,1,1630083531,1,1.0,48.0,1.0,-9.0,4.0,1248352 -3097835,1630205999,2,24,15,2,1630083531,1,6.0,-9.0,-9.0,-9.0,4.0,1248352 -3097836,1630205884,2,40,0,1,1630083532,2,6.0,-9.0,-9.0,-9.0,4.0,1248353 -3097837,1630205885,2,21,2,2,1630083532,2,6.0,30.0,6.0,15.0,4.0,1248353 -3097838,1630205839,2,63,0,1,1630083533,1,6.0,-9.0,-9.0,-9.0,2.0,1248354 -3097839,1630205838,2,41,13,2,1630083533,2,3.0,-9.0,-9.0,-9.0,4.0,1248354 -3097840,1630205821,2,39,0,1,1630083534,2,6.0,-9.0,-9.0,-9.0,4.0,1248355 -3097841,1630205822,2,22,2,2,1630083534,2,1.0,40.0,1.0,-9.0,4.0,1248355 -3097842,1630205823,2,9,2,3,1630083534,1,-9.0,-9.0,-9.0,4.0,-9.0,1248355 -3097843,1630205396,2,94,0,1,1630083535,2,6.0,-9.0,-9.0,-9.0,4.0,1248356 -3097844,1630205397,2,65,2,2,1630083535,2,6.0,-9.0,-9.0,-9.0,4.0,1248356 -3097845,1630205398,2,44,7,3,1630083535,2,1.0,20.0,1.0,15.0,4.0,1248356 -3097846,1630205440,2,72,0,1,1630083536,2,1.0,40.0,1.0,-9.0,4.0,1248357 -3097847,1630205805,2,34,0,1,1630083537,2,1.0,40.0,1.0,-9.0,4.0,1248358 -3097848,1630205806,2,12,2,2,1630083537,2,-9.0,-9.0,-9.0,9.0,-9.0,1248358 -3097849,1630205807,2,7,2,3,1630083537,2,-9.0,-9.0,-9.0,4.0,-9.0,1248358 -3097850,1630205474,1,53,0,1,1630083538,2,3.0,-9.0,-9.0,-9.0,4.0,1248359 -3097851,1630205475,4,19,2,2,1630083538,1,1.0,20.0,6.0,-9.0,4.0,1248359 -3097852,1630205476,4,17,2,3,1630083538,1,6.0,-9.0,-9.0,13.0,4.0,1248359 -3097853,1630205477,4,14,2,4,1630083538,1,-9.0,-9.0,-9.0,10.0,-9.0,1248359 -3097854,1630205937,2,31,0,1,1630083539,1,1.0,40.0,1.0,-9.0,4.0,1248360 -3097855,1630205586,2,35,0,1,1630083540,1,1.0,48.0,1.0,-9.0,4.0,1248361 -3097856,1630205587,2,11,2,2,1630083540,2,-9.0,-9.0,-9.0,7.0,-9.0,1248361 -3097857,1630205585,2,3,2,3,1630083540,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248361 -3097858,1630205584,2,40,13,4,1630083540,2,3.0,-9.0,-9.0,-9.0,4.0,1248361 -3097859,1630205740,2,24,0,1,1630083541,1,1.0,70.0,4.0,-9.0,4.0,1248362 -3097860,1630205742,2,1,2,2,1630083541,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248362 -3097861,1630205744,2,4,4,3,1630083541,2,-9.0,-9.0,-9.0,-9.0,-9.0,1248362 -3097862,1630205738,2,21,13,4,1630083541,2,1.0,24.0,4.0,-9.0,4.0,1248362 -3097863,1630205534,2,57,0,1,1630083542,1,6.0,-9.0,-9.0,-9.0,4.0,1248363 -3097864,1630205532,2,56,1,2,1630083542,2,6.0,-9.0,-9.0,-9.0,4.0,1248363 -3097865,1630205535,2,36,2,3,1630083542,1,1.0,27.0,1.0,-9.0,4.0,1248363 -3097866,1630205533,2,27,2,4,1630083542,2,1.0,20.0,1.0,-9.0,4.0,1248363 -3097867,1630205491,2,24,0,1,1630083543,1,1.0,20.0,1.0,15.0,4.0,1248364 -3097868,1630205490,1,19,12,2,1630083543,1,3.0,56.0,6.0,15.0,4.0,1248364 -3097869,1630205700,2,44,0,1,1630083544,2,1.0,40.0,1.0,-9.0,4.0,1248365 -3097870,1630205701,2,25,2,2,1630083544,2,3.0,-9.0,-9.0,15.0,4.0,1248365 -3097871,1630205702,2,20,2,3,1630083544,2,1.0,20.0,6.0,15.0,4.0,1248365 -3097872,1630205703,2,16,2,4,1630083544,1,6.0,-9.0,-9.0,13.0,-9.0,1248365 -3097873,1630205621,2,24,0,1,1630083545,1,1.0,42.0,1.0,-9.0,4.0,1248366 -3097874,1630205620,2,24,1,2,1630083545,2,6.0,-9.0,-9.0,-9.0,4.0,1248366 -3097875,1630205473,1,37,0,1,1630083546,1,1.0,45.0,1.0,-9.0,4.0,1248367 -3097876,1630205472,1,25,13,2,1630083546,2,1.0,40.0,1.0,-9.0,4.0,1248367 -3097877,1630205675,2,59,0,1,1630083547,2,6.0,-9.0,-9.0,15.0,4.0,1248368 -3097878,1630205677,2,75,1,2,1630083547,1,6.0,-9.0,-9.0,-9.0,4.0,1248368 -3097879,1630205676,2,39,2,3,1630083547,2,3.0,-9.0,-9.0,15.0,4.0,1248368 -3097880,1630205764,2,57,0,1,1630083548,2,1.0,28.0,4.0,-9.0,4.0,1248369 -3097881,1630205766,2,28,2,2,1630083548,1,6.0,-9.0,-9.0,13.0,4.0,1248369 -3097882,1630205765,2,6,7,3,1630083548,1,-9.0,-9.0,-9.0,4.0,-9.0,1248369 -3097883,1630205458,1,69,0,1,1630083549,1,1.0,10.0,3.0,-9.0,4.0,1248370 -3097884,1630205457,1,68,12,2,1630083549,2,1.0,17.0,1.0,-9.0,4.0,1248370 -3097885,1630205669,2,37,0,1,1630083550,2,1.0,40.0,1.0,-9.0,4.0,1248371 -3097886,1630205670,2,22,2,2,1630083550,1,2.0,30.0,6.0,-9.0,4.0,1248371 -3097887,1630205492,1,57,0,1,1630083551,1,3.0,20.0,6.0,-9.0,4.0,1248372 -3097888,1630205493,1,75,10,2,1630083551,1,6.0,-9.0,-9.0,-9.0,2.0,1248372 -3097889,1630205531,2,29,0,1,1630083552,1,1.0,50.0,5.0,-9.0,4.0,1248373 -3097890,1630205530,2,2,2,2,1630083552,1,-9.0,-9.0,-9.0,-9.0,-9.0,1248373 -3097891,1630205529,2,27,13,3,1630083552,2,1.0,45.0,1.0,-9.0,4.0,1248373 -3097892,1630205581,2,24,0,1,1630083553,2,3.0,-9.0,-9.0,15.0,4.0,1248374 -3097893,1630205583,2,24,1,2,1630083553,1,6.0,-9.0,-9.0,15.0,4.0,1248374 -3097894,1630205582,2,59,6,3,1630083553,2,1.0,25.0,1.0,-9.0,4.0,1248374 -3097895,1630206219,1,66,0,1,1630083554,1,6.0,-9.0,-9.0,-9.0,2.0,1248375 -3097896,1630205794,2,63,0,1,1630083555,2,1.0,40.0,1.0,-9.0,4.0,1248376 -3097897,1630205460,1,72,0,1,1630083556,2,1.0,15.0,3.0,-9.0,4.0,1248377 -3097898,1630205689,2,57,0,1,1630083557,1,1.0,37.0,1.0,-9.0,2.0,1248378 -3097899,1630205688,2,56,1,2,1630083557,2,1.0,12.0,4.0,-9.0,4.0,1248378 -3097900,1630205466,1,59,0,1,1630083558,2,6.0,-9.0,-9.0,-9.0,4.0,1248379 -3097901,1630206065,2,42,0,1,1630083559,1,1.0,40.0,1.0,-9.0,4.0,1248380 -3097902,1630205346,2,65,0,1,1630083560,2,6.0,30.0,5.0,-9.0,4.0,1248381 -3097903,1630207372,4,30,0,1,1630083561,1,1.0,45.0,1.0,-9.0,4.0,1248382 -3097904,1630207371,4,27,1,2,1630083561,2,1.0,40.0,1.0,-9.0,4.0,1248382 -3097905,1630206672,1,38,0,1,1630083562,1,1.0,40.0,1.0,-9.0,4.0,1248383 -3097906,1630206674,1,42,12,2,1630083562,1,1.0,40.0,1.0,-9.0,4.0,1248383 -3097907,1630206494,1,27,0,1,1630083563,2,6.0,37.0,5.0,16.0,4.0,1248384 -3097908,1630206964,2,39,0,1,1630083564,2,6.0,27.0,1.0,-9.0,4.0,1248385 -3097909,1630206970,2,21,2,2,1630083564,1,6.0,-9.0,-9.0,-9.0,4.0,1248385 -3097910,1630206967,2,26,10,3,1630083564,2,6.0,-9.0,-9.0,-9.0,4.0,1248385 -3097911,1630206965,2,39,0,1,1630083565,2,6.0,27.0,1.0,-9.0,4.0,1248386 -3097912,1630206971,2,21,2,2,1630083565,1,6.0,-9.0,-9.0,-9.0,4.0,1248386 -3097913,1630206968,2,26,10,3,1630083565,2,6.0,-9.0,-9.0,-9.0,4.0,1248386 -3097914,1630207113,2,32,0,1,1630083566,1,6.0,56.0,1.0,-9.0,4.0,1248387 -3097915,1630207115,2,29,12,2,1630083566,1,6.0,-9.0,-9.0,-9.0,4.0,1248387 -3097916,1630207114,2,32,0,1,1630083567,1,6.0,56.0,1.0,-9.0,4.0,1248388 -3097917,1630207116,2,29,12,2,1630083567,1,6.0,-9.0,-9.0,-9.0,4.0,1248388 -3097918,1630206554,1,29,0,1,1630083568,1,6.0,40.0,3.0,16.0,4.0,1248389 -3097919,1630206555,1,27,12,2,1630083568,1,6.0,40.0,5.0,-9.0,4.0,1248389 -3097920,1630207057,2,39,0,1,1630083569,1,1.0,48.0,1.0,-9.0,4.0,1248390 -3097921,1630206891,2,26,0,1,1630083570,2,1.0,40.0,1.0,-9.0,4.0,1248391 -3097922,1630207058,2,39,0,1,1630083571,1,1.0,48.0,1.0,-9.0,4.0,1248392 -3097923,1630206632,1,30,0,1,1630083572,1,1.0,40.0,4.0,-9.0,4.0,1248393 -3097924,1630206689,1,29,0,1,1630083573,1,1.0,35.0,1.0,-9.0,4.0,1248394 -3097925,1630206633,1,30,0,1,1630083574,1,1.0,40.0,4.0,-9.0,4.0,1248395 -3097926,1630206575,1,29,0,1,1630083575,1,1.0,45.0,1.0,-9.0,4.0,1248396 -3097927,1630206576,1,29,0,1,1630083576,1,1.0,45.0,1.0,-9.0,4.0,1248397 -3097928,1630207418,4,42,0,1,1630083577,1,1.0,40.0,3.0,-9.0,4.0,1248398 -3097929,1630207447,4,33,0,1,1630083578,1,2.0,12.0,1.0,-9.0,4.0,1248399 -3097930,1630207419,4,42,0,1,1630083579,1,1.0,40.0,3.0,-9.0,4.0,1248400 -3097931,1630207404,4,44,0,1,1630083580,1,1.0,55.0,1.0,-9.0,4.0,1248401 -3097932,1630207415,4,30,0,1,1630083581,1,1.0,60.0,1.0,16.0,4.0,1248402 -3097933,1630207448,4,33,0,1,1630083582,1,2.0,12.0,1.0,-9.0,4.0,1248403 -3097934,1630207416,4,30,0,1,1630083583,1,1.0,60.0,1.0,16.0,4.0,1248404 -3097935,1630207449,4,33,0,1,1630083584,1,2.0,12.0,1.0,-9.0,4.0,1248405 -3097936,1630207420,4,42,0,1,1630083585,1,1.0,40.0,3.0,-9.0,4.0,1248406 -3097937,1630207421,4,42,0,1,1630083586,1,1.0,40.0,3.0,-9.0,4.0,1248407 -3097938,1630207247,2,35,0,1,1630083587,1,1.0,40.0,1.0,-9.0,4.0,1248408 -3097939,1630207025,2,34,0,1,1630083588,2,2.0,40.0,1.0,-9.0,4.0,1248409 -3097940,1630206997,2,38,0,1,1630083589,2,1.0,45.0,1.0,-9.0,4.0,1248410 -3097941,1630206920,2,29,0,1,1630083590,2,1.0,40.0,1.0,16.0,4.0,1248411 -3097942,1630207055,2,30,0,1,1630083591,1,1.0,40.0,1.0,-9.0,4.0,1248412 -3097943,1630207056,2,30,0,1,1630083592,1,1.0,40.0,1.0,-9.0,4.0,1248413 -3097944,1630207026,2,34,0,1,1630083593,2,2.0,40.0,1.0,-9.0,4.0,1248414 -3097945,1630206826,2,32,0,1,1630083594,2,1.0,40.0,1.0,-9.0,4.0,1248415 -3097946,1630207096,2,42,0,1,1630083595,1,1.0,48.0,1.0,-9.0,4.0,1248416 -3097947,1630207097,2,42,0,1,1630083596,1,1.0,48.0,1.0,-9.0,4.0,1248417 -3097948,1630207330,4,41,0,1,1630083597,1,1.0,37.0,1.0,16.0,4.0,1248418 -3097949,1630206502,1,26,0,1,1630083598,2,1.0,40.0,1.0,-9.0,4.0,1248419 -3097950,1630206483,1,40,0,1,1630083599,2,1.0,60.0,1.0,-9.0,4.0,1248420 -3097951,1630206524,1,31,0,1,1630083600,2,1.0,50.0,1.0,16.0,4.0,1248421 -3097952,1630206651,1,26,0,1,1630083601,1,1.0,60.0,1.0,-9.0,4.0,1248422 -3097953,1630206479,1,26,0,1,1630083602,2,1.0,40.0,1.0,-9.0,4.0,1248423 -3097954,1630206585,1,29,0,1,1630083603,1,1.0,40.0,1.0,-9.0,2.0,1248424 -3097955,1630206503,1,26,0,1,1630083604,2,1.0,40.0,1.0,-9.0,4.0,1248425 -3097956,1630206480,1,26,0,1,1630083605,2,1.0,40.0,1.0,-9.0,4.0,1248426 -3097957,1630206484,1,40,0,1,1630083606,2,1.0,60.0,1.0,-9.0,4.0,1248427 -3097958,1630206586,1,29,0,1,1630083607,1,1.0,40.0,1.0,-9.0,2.0,1248428 -3097959,1630206525,1,31,0,1,1630083608,2,1.0,50.0,1.0,16.0,4.0,1248429 -3097960,1630206548,1,42,0,1,1630083609,1,1.0,40.0,3.0,15.0,4.0,1248430 -3097961,1630206613,1,26,0,1,1630083610,1,3.0,40.0,2.0,-9.0,4.0,1248431 -3097962,1630206614,1,22,12,2,1630083610,1,1.0,40.0,5.0,-9.0,4.0,1248431 -3097963,1630206419,1,25,0,1,1630083611,2,3.0,20.0,5.0,-9.0,4.0,1248432 -3097964,1630206420,1,23,12,2,1630083611,2,1.0,45.0,1.0,16.0,4.0,1248432 -3097965,1630207368,4,30,0,1,1630083612,1,1.0,60.0,1.0,16.0,4.0,1248433 -3097966,1630207365,4,33,1,2,1630083612,2,1.0,60.0,1.0,16.0,4.0,1248433 -3097967,1630207369,4,30,0,1,1630083613,1,1.0,60.0,1.0,16.0,4.0,1248434 -3097968,1630207366,4,33,1,2,1630083613,2,1.0,60.0,1.0,16.0,4.0,1248434 -3097969,1630206842,2,29,0,1,1630083614,1,1.0,20.0,5.0,-9.0,4.0,1248435 -3097970,1630206841,2,49,6,2,1630083614,2,1.0,35.0,1.0,15.0,4.0,1248435 -3097971,1630206646,1,26,0,1,1630083615,1,1.0,45.0,1.0,-9.0,4.0,1248436 -3097972,1630206647,4,25,13,2,1630083615,2,1.0,35.0,1.0,-9.0,4.0,1248436 -3097973,1630206530,1,37,0,1,1630083616,1,1.0,50.0,1.0,16.0,4.0,1248437 -3097974,1630206527,1,49,1,2,1630083616,2,1.0,30.0,1.0,-9.0,4.0,1248437 -3097975,1630206531,1,37,0,1,1630083617,1,1.0,50.0,1.0,16.0,4.0,1248438 -3097976,1630206528,1,49,1,2,1630083617,2,1.0,30.0,1.0,-9.0,4.0,1248438 -3097977,1630206469,1,30,0,1,1630083618,1,1.0,60.0,1.0,16.0,4.0,1248439 -3097978,1630206468,1,29,1,2,1630083618,2,1.0,65.0,1.0,16.0,4.0,1248439 -3097979,1630206434,1,32,0,1,1630083619,1,1.0,40.0,1.0,-9.0,4.0,1248440 -3097980,1630206432,1,42,1,2,1630083619,2,1.0,40.0,1.0,-9.0,4.0,1248440 -3097981,1630206435,1,32,0,1,1630083620,1,1.0,40.0,1.0,-9.0,4.0,1248441 -3097982,1630206433,1,42,1,2,1630083620,2,1.0,40.0,1.0,-9.0,4.0,1248441 -3097983,1630207406,4,25,0,1,1630083621,1,1.0,70.0,5.0,-9.0,2.0,1248442 -3097984,1630207407,4,25,0,1,1630083622,1,1.0,70.0,5.0,-9.0,2.0,1248443 -3097985,1630207081,2,31,0,1,1630083623,1,1.0,40.0,1.0,-9.0,4.0,1248444 -3097986,1630207231,2,33,0,1,1630083624,1,1.0,40.0,1.0,-9.0,4.0,1248445 -3097987,1630207118,2,29,0,1,1630083625,1,1.0,40.0,1.0,-9.0,4.0,1248446 -3097988,1630207082,2,31,0,1,1630083626,1,1.0,40.0,1.0,-9.0,4.0,1248447 -3097989,1630206608,1,25,0,1,1630083627,1,1.0,40.0,1.0,-9.0,4.0,1248448 -3097990,1630206609,1,25,0,1,1630083628,1,1.0,40.0,1.0,-9.0,4.0,1248449 -3097991,1630206508,1,36,0,1,1630083629,2,1.0,80.0,1.0,-9.0,4.0,1248450 -3097992,1630206481,1,32,0,1,1630083630,2,1.0,50.0,1.0,-9.0,4.0,1248451 -3097993,1630206610,1,25,0,1,1630083631,1,1.0,40.0,1.0,-9.0,4.0,1248452 -3097994,1630206620,1,27,0,1,1630083632,1,1.0,40.0,1.0,-9.0,4.0,1248453 -3097995,1630206482,1,32,0,1,1630083633,2,1.0,50.0,1.0,-9.0,4.0,1248454 -3097996,1630206619,1,40,0,1,1630083634,1,1.0,43.0,1.0,-9.0,4.0,1248455 -3097997,1630206458,1,37,0,1,1630083635,1,1.0,33.0,1.0,-9.0,4.0,1248456 -3097998,1630206456,1,27,13,2,1630083635,2,6.0,40.0,5.0,-9.0,4.0,1248456 -3097999,1630207390,4,27,0,1,1630083636,1,1.0,80.0,1.0,-9.0,4.0,1248457 -3098000,1630207382,4,26,1,2,1630083636,2,1.0,80.0,3.0,-9.0,4.0,1248457 -3098001,1630207386,4,19,5,3,1630083636,2,6.0,-9.0,-9.0,15.0,4.0,1248457 -3098002,1630207391,4,27,0,1,1630083637,1,1.0,80.0,1.0,-9.0,4.0,1248458 -3098003,1630207383,4,26,1,2,1630083637,2,1.0,80.0,3.0,-9.0,4.0,1248458 -3098004,1630207387,4,19,5,3,1630083637,2,6.0,-9.0,-9.0,15.0,4.0,1248458 -3098005,1630207392,4,27,0,1,1630083638,1,1.0,80.0,1.0,-9.0,4.0,1248459 -3098006,1630207384,4,26,1,2,1630083638,2,1.0,80.0,3.0,-9.0,4.0,1248459 -3098007,1630207388,4,19,5,3,1630083638,2,6.0,-9.0,-9.0,15.0,4.0,1248459 -3098008,1630206492,1,32,0,1,1630083639,1,1.0,40.0,3.0,16.0,4.0,1248460 -3098009,1630206488,1,40,12,2,1630083639,2,1.0,40.0,1.0,16.0,4.0,1248460 -3098010,1630206490,1,30,13,3,1630083639,2,2.0,40.0,3.0,16.0,4.0,1248460 -3098011,1630206918,2,26,0,1,1630083640,1,1.0,52.0,1.0,-9.0,4.0,1248461 -3098012,1630206916,2,22,1,2,1630083640,2,1.0,40.0,1.0,-9.0,4.0,1248461 -3098013,1630206427,1,29,0,1,1630083641,1,1.0,40.0,1.0,16.0,4.0,1248462 -3098014,1630206425,1,24,12,2,1630083641,2,1.0,40.0,1.0,15.0,4.0,1248462 -3098015,1630206428,1,29,0,1,1630083642,1,1.0,40.0,1.0,16.0,4.0,1248463 -3098016,1630206426,1,24,12,2,1630083642,2,1.0,40.0,1.0,15.0,4.0,1248463 -3098017,1630206513,1,25,0,1,1630083643,1,1.0,45.0,1.0,-9.0,4.0,1248464 -3098018,1630206512,1,24,13,2,1630083643,2,1.0,40.0,1.0,-9.0,4.0,1248464 -3098019,1630206546,1,34,0,1,1630083644,1,1.0,17.0,3.0,-9.0,4.0,1248465 -3098020,1630206547,2,39,1,2,1630083644,2,1.0,45.0,1.0,-9.0,4.0,1248465 -3098021,1630207361,4,30,0,1,1630083645,2,1.0,44.0,1.0,-9.0,4.0,1248466 -3098022,1630207363,4,34,1,2,1630083645,1,1.0,40.0,2.0,-9.0,4.0,1248466 -3098023,1630206522,1,28,0,1,1630083646,2,1.0,55.0,1.0,-9.0,4.0,1248467 -3098024,1630206523,1,28,1,2,1630083646,1,1.0,40.0,1.0,-9.0,4.0,1248467 -3098025,1630206648,1,38,0,1,1630083647,1,1.0,40.0,1.0,-9.0,4.0,1248468 -3098026,1630206649,4,38,1,2,1630083647,2,1.0,40.0,1.0,-9.0,4.0,1248468 -3098027,1630206538,1,31,0,1,1630083648,1,1.0,40.0,3.0,-9.0,4.0,1248469 -3098028,1630206537,1,26,1,2,1630083648,2,1.0,40.0,1.0,16.0,4.0,1248469 -3098029,1630206497,1,28,0,1,1630083649,2,1.0,80.0,1.0,-9.0,2.0,1248470 -3098030,1630206498,1,26,13,2,1630083649,1,1.0,65.0,1.0,-9.0,4.0,1248470 -3098031,1630207148,2,43,0,1,1630083650,1,6.0,-9.0,-9.0,-9.0,4.0,1248471 -3098032,1630207070,2,44,0,1,1630083651,1,3.0,6.0,6.0,-9.0,2.0,1248472 -3098033,1630207168,2,36,0,1,1630083652,1,6.0,-9.0,-9.0,-9.0,4.0,1248473 -3098034,1630207223,2,39,0,1,1630083653,1,6.0,-9.0,-9.0,-9.0,4.0,1248474 -3098035,1630206730,2,34,0,1,1630083654,2,3.0,-9.0,-9.0,15.0,4.0,1248475 -3098036,1630207205,2,39,0,1,1630083655,1,6.0,-9.0,-9.0,-9.0,4.0,1248476 -3098037,1630207224,2,39,0,1,1630083656,1,6.0,-9.0,-9.0,-9.0,4.0,1248477 -3098038,1630207085,2,26,0,1,1630083657,1,6.0,-9.0,-9.0,-9.0,4.0,1248478 -3098039,1630207169,2,36,0,1,1630083658,1,6.0,-9.0,-9.0,-9.0,4.0,1248479 -3098040,1630207185,2,42,0,1,1630083659,1,3.0,-9.0,-9.0,-9.0,4.0,1248480 -3098041,1630206803,2,41,0,1,1630083660,2,6.0,-9.0,-9.0,-9.0,2.0,1248481 -3098042,1630207242,2,39,0,1,1630083661,1,6.0,-9.0,-9.0,-9.0,4.0,1248482 -3098043,1630207170,2,36,0,1,1630083662,1,6.0,-9.0,-9.0,-9.0,4.0,1248483 -3098044,1630206804,2,41,0,1,1630083663,2,6.0,-9.0,-9.0,-9.0,2.0,1248484 -3098045,1630206809,2,41,0,1,1630083664,2,6.0,-9.0,-9.0,-9.0,4.0,1248485 -3098046,1630207149,2,43,0,1,1630083665,1,6.0,-9.0,-9.0,-9.0,4.0,1248486 -3098047,1630207171,2,36,0,1,1630083666,1,6.0,-9.0,-9.0,-9.0,4.0,1248487 -3098048,1630207202,2,41,0,1,1630083667,1,3.0,40.0,5.0,-9.0,4.0,1248488 -3098049,1630206774,2,32,0,1,1630083668,2,6.0,-9.0,-9.0,16.0,4.0,1248489 -3098050,1630207186,2,42,0,1,1630083669,1,3.0,-9.0,-9.0,-9.0,4.0,1248490 -3098051,1630207063,2,44,0,1,1630083670,1,6.0,-9.0,-9.0,-9.0,4.0,1248491 -3098052,1630206810,2,41,0,1,1630083671,2,6.0,-9.0,-9.0,-9.0,4.0,1248492 -3098053,1630207243,2,39,0,1,1630083672,1,6.0,-9.0,-9.0,-9.0,4.0,1248493 -3098054,1630207071,2,44,0,1,1630083673,1,3.0,6.0,6.0,-9.0,2.0,1248494 -3098055,1630207187,2,42,0,1,1630083674,1,3.0,-9.0,-9.0,-9.0,4.0,1248495 -3098056,1630206987,2,30,0,1,1630083675,2,6.0,-9.0,-9.0,-9.0,4.0,1248496 -3098057,1630206988,2,30,0,1,1630083676,2,6.0,-9.0,-9.0,-9.0,4.0,1248497 -3098058,1630206805,2,41,0,1,1630083677,2,6.0,-9.0,-9.0,-9.0,2.0,1248498 -3098059,1630207065,2,41,0,1,1630083678,1,3.0,24.0,5.0,-9.0,4.0,1248499 -3098060,1630207150,2,43,0,1,1630083679,1,6.0,-9.0,-9.0,-9.0,4.0,1248500 -3098061,1630206714,2,38,0,1,1630083680,2,6.0,-9.0,-9.0,-9.0,4.0,1248501 -3098062,1630206806,2,41,0,1,1630083681,2,6.0,-9.0,-9.0,-9.0,2.0,1248502 -3098063,1630206811,2,41,0,1,1630083682,2,6.0,-9.0,-9.0,-9.0,4.0,1248503 -3098064,1630207244,2,39,0,1,1630083683,1,6.0,-9.0,-9.0,-9.0,4.0,1248504 -3098065,1630207192,2,33,0,1,1630083684,1,3.0,-9.0,-9.0,15.0,4.0,1248505 -3098066,1630207172,2,36,0,1,1630083685,1,6.0,-9.0,-9.0,-9.0,4.0,1248506 -3098067,1630206715,2,38,0,1,1630083686,2,6.0,-9.0,-9.0,-9.0,4.0,1248507 -3098068,1630206894,2,43,0,1,1630083687,2,6.0,-9.0,-9.0,-9.0,4.0,1248508 -3098069,1630207122,2,34,0,1,1630083688,1,6.0,-9.0,-9.0,-9.0,4.0,1248509 -3098070,1630206812,2,41,0,1,1630083689,2,6.0,-9.0,-9.0,-9.0,4.0,1248510 -3098071,1630206716,2,38,0,1,1630083690,2,6.0,-9.0,-9.0,-9.0,4.0,1248511 -3098072,1630207188,2,42,0,1,1630083691,1,3.0,-9.0,-9.0,-9.0,4.0,1248512 -3098073,1630207064,2,44,0,1,1630083692,1,6.0,-9.0,-9.0,-9.0,4.0,1248513 -3098074,1630207123,2,34,0,1,1630083693,1,6.0,-9.0,-9.0,-9.0,4.0,1248514 -3098075,1630206560,1,39,0,1,1630083694,1,6.0,8.0,6.0,16.0,4.0,1248515 -3098076,1630206407,1,27,0,1,1630083695,2,3.0,-9.0,-9.0,-9.0,4.0,1248516 -3098077,1630206535,1,37,0,1,1630083696,2,6.0,-9.0,-9.0,-9.0,4.0,1248517 -3098078,1630206408,1,27,0,1,1630083697,2,3.0,-9.0,-9.0,-9.0,4.0,1248518 -3098079,1630206409,1,27,0,1,1630083698,2,3.0,-9.0,-9.0,-9.0,4.0,1248519 -3098080,1630206561,1,39,0,1,1630083699,1,6.0,8.0,6.0,16.0,4.0,1248520 -3098081,1630206562,1,39,0,1,1630083700,1,6.0,8.0,6.0,16.0,4.0,1248521 -3098082,1630206563,1,39,0,1,1630083701,1,6.0,8.0,6.0,16.0,4.0,1248522 -3098083,1630206536,1,37,0,1,1630083702,2,6.0,-9.0,-9.0,-9.0,4.0,1248523 -3098084,1630207422,4,26,0,1,1630083703,1,6.0,-9.0,-9.0,16.0,4.0,1248524 -3098085,1630207423,4,26,0,1,1630083704,1,6.0,-9.0,-9.0,16.0,4.0,1248525 -3098086,1630207424,4,26,0,1,1630083705,1,6.0,-9.0,-9.0,16.0,4.0,1248526 -3098087,1630207425,4,26,0,1,1630083706,1,6.0,-9.0,-9.0,16.0,4.0,1248527 -3098088,1630207010,2,42,0,1,1630083707,2,6.0,-9.0,-9.0,-9.0,4.0,1248528 -3098089,1630207195,2,29,0,1,1630083708,1,6.0,-9.0,-9.0,-9.0,4.0,1248529 -3098090,1630206788,2,33,0,1,1630083709,2,3.0,-9.0,-9.0,-9.0,4.0,1248530 -3098091,1630207211,2,28,0,1,1630083710,1,3.0,25.0,4.0,15.0,4.0,1248531 -3098092,1630206784,2,42,0,1,1630083711,2,6.0,-9.0,-9.0,-9.0,4.0,1248532 -3098093,1630207206,2,29,0,1,1630083712,1,6.0,-9.0,-9.0,16.0,3.0,1248533 -3098094,1630207251,2,38,0,1,1630083713,1,6.0,-9.0,-9.0,-9.0,4.0,1248534 -3098095,1630207252,2,38,0,1,1630083714,1,6.0,-9.0,-9.0,-9.0,4.0,1248535 -3098096,1630207190,2,40,0,1,1630083715,1,6.0,-9.0,-9.0,-9.0,4.0,1248536 -3098097,1630206899,2,41,0,1,1630083716,2,3.0,-9.0,-9.0,-9.0,4.0,1248537 -3098098,1630207011,2,42,0,1,1630083717,2,6.0,-9.0,-9.0,-9.0,4.0,1248538 -3098099,1630207120,2,35,0,1,1630083718,1,3.0,-9.0,-9.0,-9.0,4.0,1248539 -3098100,1630207191,2,40,0,1,1630083719,1,6.0,-9.0,-9.0,-9.0,4.0,1248540 -3098101,1630206789,2,33,0,1,1630083720,2,3.0,-9.0,-9.0,-9.0,4.0,1248541 -3098102,1630207196,2,29,0,1,1630083721,1,6.0,-9.0,-9.0,-9.0,4.0,1248542 -3098103,1630207121,2,35,0,1,1630083722,1,3.0,-9.0,-9.0,-9.0,4.0,1248543 -3098104,1630206941,2,40,0,1,1630083723,2,3.0,-9.0,-9.0,16.0,4.0,1248544 -3098105,1630206790,2,33,0,1,1630083724,2,3.0,-9.0,-9.0,-9.0,4.0,1248545 -3098106,1630207012,2,42,0,1,1630083725,2,6.0,-9.0,-9.0,-9.0,4.0,1248546 -3098107,1630206726,2,26,0,1,1630083726,2,6.0,-9.0,-9.0,-9.0,4.0,1248547 -3098108,1630207226,2,42,0,1,1630083727,1,6.0,-9.0,-9.0,-9.0,4.0,1248548 -3098109,1630207147,2,43,0,1,1630083728,1,6.0,40.0,1.0,15.0,4.0,1248549 -3098110,1630206990,2,28,0,1,1630083729,2,6.0,-9.0,-9.0,15.0,4.0,1248550 -3098111,1630207327,4,40,0,1,1630083730,1,3.0,-9.0,-9.0,16.0,4.0,1248551 -3098112,1630206564,1,40,0,1,1630083731,1,6.0,28.0,4.0,-9.0,4.0,1248552 -3098113,1630206565,1,40,0,1,1630083732,1,6.0,28.0,4.0,-9.0,4.0,1248553 -3098114,1630206568,1,29,0,1,1630083733,1,6.0,-9.0,-9.0,15.0,4.0,1248554 -3098115,1630206569,1,29,0,1,1630083734,1,6.0,-9.0,-9.0,15.0,4.0,1248555 -3098116,1630206411,1,28,0,1,1630083735,2,6.0,-9.0,-9.0,-9.0,4.0,1248556 -3098117,1630206566,1,40,0,1,1630083736,1,6.0,28.0,4.0,-9.0,4.0,1248557 -3098118,1630206583,1,31,0,1,1630083737,1,3.0,8.0,4.0,-9.0,4.0,1248558 -3098119,1630206412,1,28,0,1,1630083738,2,6.0,-9.0,-9.0,-9.0,4.0,1248559 -3098120,1630206501,1,37,0,1,1630083739,2,6.0,-9.0,-9.0,16.0,4.0,1248560 -3098121,1630206570,1,29,0,1,1630083740,1,6.0,-9.0,-9.0,15.0,4.0,1248561 -3098122,1630206584,1,31,0,1,1630083741,1,3.0,8.0,4.0,-9.0,4.0,1248562 -3098123,1630206567,1,40,0,1,1630083742,1,6.0,28.0,4.0,-9.0,4.0,1248563 -3098124,1630206867,2,39,0,1,1630083743,2,3.0,-9.0,-9.0,-9.0,4.0,1248564 -3098125,1630206731,2,35,0,1,1630083744,2,3.0,18.0,4.0,-9.0,4.0,1248565 -3098126,1630206733,2,35,15,2,1630083744,1,3.0,24.0,6.0,-9.0,4.0,1248565 -3098127,1630206732,2,14,15,3,1630083744,1,-9.0,-9.0,-9.0,10.0,-9.0,1248565 -3098128,1630206922,2,42,0,1,1630083745,2,6.0,-9.0,-9.0,-9.0,4.0,1248566 -3098129,1630206924,2,21,2,2,1630083745,1,6.0,-9.0,-9.0,-9.0,4.0,1248566 -3098130,1630206923,2,16,2,3,1630083745,1,6.0,-9.0,-9.0,12.0,-9.0,1248566 -3098131,1630206947,2,29,0,1,1630083746,2,3.0,40.0,5.0,-9.0,4.0,1248567 -3098132,1630206949,2,15,2,2,1630083746,2,-9.0,-9.0,-9.0,10.0,-9.0,1248567 -3098133,1630206948,3,6,2,3,1630083746,1,-9.0,-9.0,-9.0,2.0,-9.0,1248567 -3098134,1630206603,4,28,0,1,1630083747,1,6.0,-9.0,-9.0,16.0,4.0,1248568 -3098135,1630206595,1,28,12,2,1630083747,1,6.0,-9.0,-9.0,16.0,4.0,1248568 -3098136,1630206599,1,25,12,3,1630083747,1,6.0,-9.0,-9.0,16.0,4.0,1248568 -3098137,1630206604,4,28,0,1,1630083748,1,6.0,-9.0,-9.0,16.0,4.0,1248569 -3098138,1630206596,1,28,12,2,1630083748,1,6.0,-9.0,-9.0,16.0,4.0,1248569 -3098139,1630206600,1,25,12,3,1630083748,1,6.0,-9.0,-9.0,16.0,4.0,1248569 -3098140,1630206605,4,28,0,1,1630083749,1,6.0,-9.0,-9.0,16.0,4.0,1248570 -3098141,1630206597,1,28,12,2,1630083749,1,6.0,-9.0,-9.0,16.0,4.0,1248570 -3098142,1630206601,1,25,12,3,1630083749,1,6.0,-9.0,-9.0,16.0,4.0,1248570 -3098143,1630206606,4,28,0,1,1630083750,1,6.0,-9.0,-9.0,16.0,4.0,1248571 -3098144,1630206598,1,28,12,2,1630083750,1,6.0,-9.0,-9.0,16.0,4.0,1248571 -3098145,1630206602,1,25,12,3,1630083750,1,6.0,-9.0,-9.0,16.0,4.0,1248571 -3098146,1630206470,1,27,0,1,1630083751,2,6.0,-9.0,-9.0,16.0,4.0,1248572 -3098147,1630206474,4,26,12,2,1630083751,2,6.0,-9.0,-9.0,16.0,4.0,1248572 -3098148,1630206472,1,25,12,3,1630083751,2,6.0,-9.0,-9.0,16.0,4.0,1248572 -3098149,1630207427,4,26,0,1,1630083752,1,6.0,36.0,5.0,-9.0,4.0,1248573 -3098150,1630207437,4,25,12,2,1630083752,1,6.0,-9.0,-9.0,-9.0,4.0,1248573 -3098151,1630207428,4,26,0,1,1630083753,1,6.0,36.0,5.0,-9.0,4.0,1248574 -3098152,1630207438,4,25,12,2,1630083753,1,6.0,-9.0,-9.0,-9.0,4.0,1248574 -3098153,1630207429,4,26,0,1,1630083754,1,6.0,36.0,5.0,-9.0,4.0,1248575 -3098154,1630207439,4,25,12,2,1630083754,1,6.0,-9.0,-9.0,-9.0,4.0,1248575 -3098155,1630207430,4,26,0,1,1630083755,1,6.0,36.0,5.0,-9.0,4.0,1248576 -3098156,1630207440,4,25,12,2,1630083755,1,6.0,-9.0,-9.0,-9.0,4.0,1248576 -3098157,1630207431,4,26,0,1,1630083756,1,6.0,36.0,5.0,-9.0,4.0,1248577 -3098158,1630207441,4,25,12,2,1630083756,1,6.0,-9.0,-9.0,-9.0,4.0,1248577 -3098159,1630207432,4,26,0,1,1630083757,1,6.0,36.0,5.0,-9.0,4.0,1248578 -3098160,1630207442,4,25,12,2,1630083757,1,6.0,-9.0,-9.0,-9.0,4.0,1248578 -3098161,1630207433,4,26,0,1,1630083758,1,6.0,36.0,5.0,-9.0,4.0,1248579 -3098162,1630207443,4,25,12,2,1630083758,1,6.0,-9.0,-9.0,-9.0,4.0,1248579 -3098163,1630207434,4,26,0,1,1630083759,1,6.0,36.0,5.0,-9.0,4.0,1248580 -3098164,1630207444,4,25,12,2,1630083759,1,6.0,-9.0,-9.0,-9.0,4.0,1248580 -3098165,1630207435,4,26,0,1,1630083760,1,6.0,36.0,5.0,-9.0,4.0,1248581 -3098166,1630207445,4,25,12,2,1630083760,1,6.0,-9.0,-9.0,-9.0,4.0,1248581 -3098167,1630207436,4,26,0,1,1630083761,1,6.0,36.0,5.0,-9.0,4.0,1248582 -3098168,1630207446,4,25,12,2,1630083761,1,6.0,-9.0,-9.0,-9.0,4.0,1248582 -3098169,1630206739,2,38,0,1,1630083762,2,3.0,28.0,6.0,-9.0,4.0,1248583 -3098170,1630206746,2,18,2,2,1630083762,1,3.0,-9.0,-9.0,14.0,4.0,1248583 -3098171,1630206740,2,38,0,1,1630083763,2,3.0,28.0,6.0,-9.0,4.0,1248584 -3098172,1630206747,2,18,2,2,1630083763,1,3.0,-9.0,-9.0,14.0,4.0,1248584 -3098173,1630206741,2,38,0,1,1630083764,2,3.0,28.0,6.0,-9.0,4.0,1248585 -3098174,1630206748,2,18,2,2,1630083764,1,3.0,-9.0,-9.0,14.0,4.0,1248585 -3098175,1630207175,2,35,0,1,1630083765,1,6.0,-9.0,-9.0,-9.0,4.0,1248586 -3098176,1630207178,2,30,5,2,1630083765,1,6.0,-9.0,-9.0,-9.0,4.0,1248586 -3098177,1630206742,2,38,0,1,1630083766,2,3.0,28.0,6.0,-9.0,4.0,1248587 -3098178,1630206749,2,18,2,2,1630083766,1,3.0,-9.0,-9.0,14.0,4.0,1248587 -3098179,1630206743,2,38,0,1,1630083767,2,3.0,28.0,6.0,-9.0,4.0,1248588 -3098180,1630206750,2,18,2,2,1630083767,1,3.0,-9.0,-9.0,14.0,4.0,1248588 -3098181,1630207047,2,36,0,1,1630083768,2,6.0,-9.0,-9.0,-9.0,4.0,1248589 -3098182,1630207048,2,34,13,2,1630083768,1,6.0,-9.0,-9.0,-9.0,4.0,1248589 -3098183,1630206744,2,38,0,1,1630083769,2,3.0,28.0,6.0,-9.0,4.0,1248590 -3098184,1630206751,2,18,2,2,1630083769,1,3.0,-9.0,-9.0,14.0,4.0,1248590 -3098185,1630207176,2,35,0,1,1630083770,1,6.0,-9.0,-9.0,-9.0,4.0,1248591 -3098186,1630207179,2,30,5,2,1630083770,1,6.0,-9.0,-9.0,-9.0,4.0,1248591 -3098187,1630207177,2,35,0,1,1630083771,1,6.0,-9.0,-9.0,-9.0,4.0,1248592 -3098188,1630207180,2,30,5,2,1630083771,1,6.0,-9.0,-9.0,-9.0,4.0,1248592 -3098189,1630207213,2,44,0,1,1630083772,1,6.0,-9.0,-9.0,14.0,4.0,1248593 -3098190,1630207214,2,50,5,2,1630083772,1,6.0,-9.0,-9.0,-9.0,4.0,1248593 -3098191,1630207067,2,34,0,1,1630083773,1,3.0,-9.0,-9.0,-9.0,4.0,1248594 -3098192,1630207068,2,18,10,2,1630083773,1,6.0,-9.0,-9.0,14.0,4.0,1248594 -3098193,1630206745,2,38,0,1,1630083774,2,3.0,28.0,6.0,-9.0,4.0,1248595 -3098194,1630206752,2,18,2,2,1630083774,1,3.0,-9.0,-9.0,14.0,4.0,1248595 -3098195,1630206907,2,41,0,1,1630083775,2,6.0,-9.0,-9.0,-9.0,4.0,1248596 -3098196,1630206908,2,8,2,2,1630083775,1,-9.0,-9.0,-9.0,4.0,-9.0,1248596 -3098197,1630206820,2,26,0,1,1630083776,2,6.0,-9.0,-9.0,-9.0,4.0,1248597 -3098198,1630206821,2,6,2,2,1630083776,1,-9.0,-9.0,-9.0,2.0,-9.0,1248597 -3098199,1630206754,2,43,0,1,1630083777,2,6.0,40.0,1.0,-9.0,4.0,1248598 -3098200,1630206756,2,46,12,2,1630083777,1,3.0,20.0,5.0,-9.0,4.0,1248598 -3098201,1630206864,2,33,0,1,1630083778,2,3.0,30.0,6.0,-9.0,4.0,1248599 -3098202,1630206865,2,18,2,2,1630083778,2,6.0,-9.0,-9.0,-9.0,4.0,1248599 -3098203,1630206829,2,30,0,1,1630083779,2,3.0,-9.0,-9.0,-9.0,4.0,1248600 -3098204,1630206831,2,25,10,2,1630083779,1,3.0,36.0,5.0,-9.0,4.0,1248600 -3098205,1630206830,2,30,0,1,1630083780,2,3.0,-9.0,-9.0,-9.0,4.0,1248601 -3098206,1630206832,2,25,10,2,1630083780,1,3.0,36.0,5.0,-9.0,4.0,1248601 -3098207,1630207033,2,40,0,1,1630083781,2,6.0,-9.0,-9.0,-9.0,4.0,1248602 -3098208,1630207035,2,21,2,2,1630083781,2,6.0,30.0,6.0,15.0,4.0,1248602 -3098209,1630207034,2,40,0,1,1630083782,2,6.0,-9.0,-9.0,-9.0,4.0,1248603 -3098210,1630207036,2,21,2,2,1630083782,2,6.0,30.0,6.0,15.0,4.0,1248603 -3098211,1630206755,2,43,0,1,1630083783,2,6.0,40.0,1.0,-9.0,4.0,1248604 -3098212,1630206757,2,46,12,2,1630083783,1,3.0,20.0,5.0,-9.0,4.0,1248604 -3098213,1630206678,1,40,0,1,1630083784,1,6.0,-9.0,-9.0,-9.0,2.0,1248605 -3098214,1630206681,4,23,15,2,1630083784,2,6.0,30.0,6.0,-9.0,4.0,1248605 -3098215,1630206679,1,40,0,1,1630083785,1,6.0,-9.0,-9.0,-9.0,2.0,1248606 -3098216,1630206682,4,23,15,2,1630083785,2,6.0,30.0,6.0,-9.0,4.0,1248606 -3098217,1630206680,1,40,0,1,1630083786,1,6.0,-9.0,-9.0,-9.0,2.0,1248607 -3098218,1630206683,4,23,15,2,1630083786,2,6.0,30.0,6.0,-9.0,4.0,1248607 -3098219,1630207038,2,33,0,1,1630083787,2,3.0,40.0,3.0,-9.0,4.0,1248608 -3098220,1630207039,2,9,2,2,1630083787,1,-9.0,-9.0,-9.0,6.0,-9.0,1248608 -3098221,1630206452,1,27,0,1,1630083788,1,6.0,-9.0,-9.0,16.0,4.0,1248609 -3098222,1630206450,1,24,1,2,1630083788,2,6.0,-9.0,-9.0,16.0,4.0,1248609 -3098223,1630207109,2,41,0,1,1630083789,1,1.0,40.0,1.0,-9.0,4.0,1248610 -3098224,1630207089,2,40,0,1,1630083790,1,1.0,40.0,6.0,-9.0,4.0,1248611 -3098225,1630207003,2,27,0,1,1630083791,2,1.0,35.0,1.0,-9.0,4.0,1248612 -3098226,1630207090,2,40,0,1,1630083792,1,1.0,40.0,6.0,-9.0,4.0,1248613 -3098227,1630207024,2,41,0,1,1630083793,2,1.0,40.0,1.0,-9.0,4.0,1248614 -3098228,1630207091,2,40,0,1,1630083794,1,1.0,40.0,6.0,-9.0,4.0,1248615 -3098229,1630206724,2,34,0,1,1630083795,2,1.0,24.0,1.0,-9.0,4.0,1248616 -3098230,1630207092,2,40,0,1,1630083796,1,1.0,40.0,6.0,-9.0,4.0,1248617 -3098231,1630206654,1,32,0,1,1630083797,1,1.0,60.0,5.0,-9.0,4.0,1248618 -3098232,1630206550,1,42,0,1,1630083798,1,1.0,40.0,1.0,-9.0,2.0,1248619 -3098233,1630206655,1,32,0,1,1630083799,1,1.0,60.0,5.0,-9.0,4.0,1248620 -3098234,1630206551,1,42,0,1,1630083800,1,1.0,40.0,1.0,-9.0,2.0,1248621 -3098235,1630206487,1,44,0,1,1630083801,2,1.0,40.0,1.0,-9.0,4.0,1248622 -3098236,1630206526,1,26,0,1,1630083802,2,1.0,65.0,2.0,-9.0,4.0,1248623 -3098237,1630206552,1,42,0,1,1630083803,1,1.0,40.0,1.0,-9.0,2.0,1248624 -3098238,1630206553,1,42,0,1,1630083804,1,1.0,40.0,1.0,-9.0,2.0,1248625 -3098239,1630207403,4,29,0,1,1630083805,1,1.0,20.0,1.0,16.0,4.0,1248626 -3098240,1630207376,4,30,0,1,1630083806,2,1.0,40.0,1.0,-9.0,4.0,1248627 -3098241,1630207401,4,32,0,1,1630083807,1,1.0,40.0,6.0,16.0,4.0,1248628 -3098242,1630207412,4,31,0,1,1630083808,1,1.0,17.0,1.0,16.0,4.0,1248629 -3098243,1630207377,4,30,0,1,1630083809,2,1.0,40.0,1.0,-9.0,4.0,1248630 -3098244,1630207378,4,30,0,1,1630083810,2,1.0,40.0,1.0,-9.0,4.0,1248631 -3098245,1630207379,4,30,0,1,1630083811,2,1.0,40.0,1.0,-9.0,4.0,1248632 -3098246,1630207413,4,31,0,1,1630083812,1,1.0,17.0,1.0,16.0,4.0,1248633 -3098247,1630207402,4,32,0,1,1630083813,1,1.0,40.0,6.0,16.0,4.0,1248634 -3098248,1630207410,4,26,0,1,1630083814,1,1.0,60.0,3.0,-9.0,4.0,1248635 -3098249,1630207414,4,31,0,1,1630083815,1,1.0,17.0,1.0,16.0,4.0,1248636 -3098250,1630207380,4,30,0,1,1630083816,2,1.0,40.0,1.0,-9.0,4.0,1248637 -3098251,1630207165,2,29,0,1,1630083817,1,1.0,40.0,1.0,-9.0,4.0,1248638 -3098252,1630206962,2,29,0,1,1630083818,2,1.0,40.0,2.0,-9.0,4.0,1248639 -3098253,1630206963,2,29,0,1,1630083819,2,1.0,40.0,2.0,-9.0,4.0,1248640 -3098254,1630207239,2,35,0,1,1630083820,1,1.0,40.0,4.0,-9.0,4.0,1248641 -3098255,1630207184,2,29,0,1,1630083821,1,1.0,40.0,1.0,-9.0,4.0,1248642 -3098256,1630206951,2,42,0,1,1630083822,2,1.0,38.0,1.0,15.0,4.0,1248643 -3098257,1630206884,2,29,0,1,1630083823,2,1.0,40.0,1.0,-9.0,4.0,1248644 -3098258,1630207240,2,35,0,1,1630083824,1,1.0,40.0,4.0,-9.0,4.0,1248645 -3098259,1630206623,1,27,0,1,1630083825,1,1.0,40.0,1.0,-9.0,4.0,1248646 -3098260,1630206664,1,26,0,1,1630083826,1,1.0,60.0,4.0,-9.0,4.0,1248647 -3098261,1630206628,1,33,0,1,1630083827,1,1.0,60.0,4.0,-9.0,4.0,1248648 -3098262,1630206510,1,26,0,1,1630083828,2,1.0,20.0,4.0,16.0,4.0,1248649 -3098263,1630206636,1,35,0,1,1630083829,1,1.0,22.0,1.0,16.0,4.0,1248650 -3098264,1630206629,1,33,0,1,1630083830,1,1.0,60.0,4.0,-9.0,4.0,1248651 -3098265,1630206638,1,30,0,1,1630083831,1,1.0,50.0,1.0,-9.0,4.0,1248652 -3098266,1630206637,1,35,0,1,1630083832,1,1.0,22.0,1.0,16.0,4.0,1248653 -3098267,1630206461,1,28,0,1,1630083833,2,1.0,50.0,1.0,16.0,4.0,1248654 -3098268,1630206665,1,26,0,1,1630083834,1,1.0,60.0,4.0,-9.0,4.0,1248655 -3098269,1630206514,1,25,0,1,1630083835,2,1.0,40.0,4.0,-9.0,4.0,1248656 -3098270,1630206462,1,28,0,1,1630083836,2,1.0,50.0,1.0,16.0,4.0,1248657 -3098271,1630206624,1,27,0,1,1630083837,1,1.0,40.0,1.0,-9.0,4.0,1248658 -3098272,1630206650,1,30,0,1,1630083838,1,1.0,40.0,1.0,-9.0,4.0,1248659 -3098273,1630206625,1,27,0,1,1630083839,1,1.0,40.0,1.0,-9.0,4.0,1248660 -3098274,1630206463,1,28,0,1,1630083840,2,1.0,50.0,1.0,16.0,4.0,1248661 -3098275,1630206639,1,30,0,1,1630083841,1,1.0,50.0,1.0,-9.0,4.0,1248662 -3098276,1630206640,1,30,0,1,1630083842,1,1.0,50.0,1.0,-9.0,4.0,1248663 -3098277,1630206666,1,26,0,1,1630083843,1,1.0,60.0,4.0,-9.0,4.0,1248664 -3098278,1630206511,1,26,0,1,1630083844,2,1.0,20.0,4.0,16.0,4.0,1248665 -3098279,1630206705,2,25,0,1,1630083845,2,3.0,20.0,6.0,15.0,4.0,1248666 -3098280,1630206707,2,4,2,2,1630083845,1,-9.0,-9.0,-9.0,1.0,-9.0,1248666 -3098281,1630206706,2,27,12,3,1630083845,2,1.0,35.0,1.0,-9.0,4.0,1248666 -3098282,1630207346,4,26,0,1,1630083846,2,6.0,-9.0,-9.0,-9.0,4.0,1248667 -3098283,1630207352,4,26,1,2,1630083846,1,1.0,40.0,1.0,16.0,4.0,1248667 -3098284,1630207347,4,26,0,1,1630083847,2,6.0,-9.0,-9.0,-9.0,4.0,1248668 -3098285,1630207353,4,26,1,2,1630083847,1,1.0,40.0,1.0,16.0,4.0,1248668 -3098286,1630207348,4,26,0,1,1630083848,2,6.0,-9.0,-9.0,-9.0,4.0,1248669 -3098287,1630207354,4,26,1,2,1630083848,1,1.0,40.0,1.0,16.0,4.0,1248669 -3098288,1630207349,4,26,0,1,1630083849,2,6.0,-9.0,-9.0,-9.0,4.0,1248670 -3098289,1630207355,4,26,1,2,1630083849,1,1.0,40.0,1.0,16.0,4.0,1248670 -3098290,1630207350,4,26,0,1,1630083850,2,6.0,-9.0,-9.0,-9.0,4.0,1248671 -3098291,1630207356,4,26,1,2,1630083850,1,1.0,40.0,1.0,16.0,4.0,1248671 -3098292,1630206895,2,30,0,1,1630083851,2,1.0,15.0,4.0,-9.0,4.0,1248672 -3098293,1630206897,2,30,1,2,1630083851,1,6.0,-9.0,-9.0,-9.0,4.0,1248672 -3098294,1630206824,2,37,0,1,1630083852,2,2.0,25.0,1.0,-9.0,4.0,1248673 -3098295,1630206825,2,19,2,2,1630083852,1,3.0,-9.0,-9.0,-9.0,4.0,1248673 -3098296,1630206896,2,30,0,1,1630083853,2,1.0,15.0,4.0,-9.0,4.0,1248674 -3098297,1630206898,2,30,1,2,1630083853,1,6.0,-9.0,-9.0,-9.0,4.0,1248674 -3098298,1630207023,2,31,0,1,1630083854,1,6.0,-9.0,-9.0,-9.0,4.0,1248675 -3098299,1630207022,2,62,6,2,1630083854,2,1.0,37.0,1.0,-9.0,4.0,1248675 -3098300,1630206932,2,31,0,1,1630083855,2,1.0,40.0,1.0,-9.0,4.0,1248676 -3098301,1630206936,2,30,10,2,1630083855,1,6.0,-9.0,-9.0,-9.0,4.0,1248676 -3098302,1630206933,2,31,0,1,1630083856,2,1.0,40.0,1.0,-9.0,4.0,1248677 -3098303,1630206937,2,30,10,2,1630083856,1,6.0,-9.0,-9.0,-9.0,4.0,1248677 -3098304,1630206934,2,31,0,1,1630083857,2,1.0,40.0,1.0,-9.0,4.0,1248678 -3098305,1630206938,2,30,10,2,1630083857,1,6.0,-9.0,-9.0,-9.0,4.0,1248678 -3098306,1630206415,1,27,0,1,1630083858,2,1.0,20.0,1.0,16.0,4.0,1248679 -3098307,1630206417,1,26,1,2,1630083858,1,3.0,-9.0,-9.0,16.0,4.0,1248679 -3098308,1630206868,2,43,0,1,1630083859,2,6.0,20.0,6.0,15.0,4.0,1248680 -3098309,1630206869,2,18,2,2,1630083859,1,2.0,20.0,4.0,14.0,4.0,1248680 -3098310,1630206945,2,26,0,1,1630083860,2,1.0,40.0,4.0,15.0,4.0,1248681 -3098311,1630206946,2,35,13,2,1630083860,1,1.0,20.0,1.0,-9.0,4.0,1248681 -3098312,1630207397,4,27,0,1,1630083861,1,1.0,54.0,2.0,16.0,4.0,1248682 -3098313,1630207394,4,26,1,2,1630083861,2,1.0,15.0,6.0,16.0,4.0,1248682 -3098314,1630207398,4,27,0,1,1630083862,1,1.0,54.0,2.0,16.0,4.0,1248683 -3098315,1630207395,4,26,1,2,1630083862,2,1.0,15.0,6.0,16.0,4.0,1248683 -3098316,1630207399,4,27,0,1,1630083863,1,1.0,54.0,2.0,16.0,4.0,1248684 -3098317,1630207396,4,26,1,2,1630083863,2,1.0,15.0,6.0,16.0,4.0,1248684 -3098318,1630206634,1,33,0,1,1630083864,1,1.0,25.0,1.0,16.0,4.0,1248685 -3098319,1630206635,4,30,1,2,1630083864,2,1.0,25.0,1.0,15.0,4.0,1248685 -3098320,1630207230,2,58,0,1,1630083865,1,6.0,-9.0,-9.0,-9.0,4.0,1248686 -3098321,1630207129,2,64,0,1,1630083866,1,6.0,-9.0,-9.0,-9.0,4.0,1248687 -3098322,1630206725,2,61,0,1,1630083867,2,6.0,-9.0,-9.0,-9.0,4.0,1248688 -3098323,1630206616,1,62,0,1,1630083868,1,6.0,-9.0,-9.0,-9.0,2.0,1248689 -3098324,1630207046,2,61,0,1,1630083869,2,1.0,40.0,1.0,-9.0,4.0,1248690 -3098325,1630206783,2,59,0,1,1630083870,2,1.0,40.0,4.0,-9.0,4.0,1248691 -3098326,1630207088,2,63,0,1,1630083871,1,1.0,24.0,1.0,-9.0,2.0,1248692 -3098327,1630206989,2,59,0,1,1630083872,2,1.0,40.0,1.0,-9.0,4.0,1248693 -3098328,1630207237,2,48,0,1,1630083873,1,1.0,48.0,1.0,-9.0,4.0,1248694 -3098329,1630207238,2,48,0,1,1630083874,1,1.0,48.0,1.0,-9.0,4.0,1248695 -3098330,1630207207,2,58,0,1,1630083875,1,1.0,45.0,1.0,-9.0,4.0,1248696 -3098331,1630207232,2,46,0,1,1630083876,1,1.0,40.0,1.0,-9.0,4.0,1248697 -3098332,1630206670,1,64,0,1,1630083877,1,1.0,53.0,1.0,-9.0,4.0,1248698 -3098333,1630206460,1,63,0,1,1630083878,2,1.0,40.0,1.0,-9.0,4.0,1248699 -3098334,1630207181,2,60,0,1,1630083879,1,6.0,-9.0,-9.0,-9.0,4.0,1248700 -3098335,1630207182,2,58,5,2,1630083879,1,1.0,40.0,1.0,-9.0,2.0,1248700 -3098336,1630206692,2,45,0,1,1630083880,2,1.0,40.0,1.0,-9.0,4.0,1248701 -3098337,1630206693,2,22,2,2,1630083880,1,3.0,-9.0,-9.0,-9.0,4.0,1248701 -3098338,1630207409,4,45,0,1,1630083881,1,1.0,36.0,1.0,-9.0,4.0,1248702 -3098339,1630206856,2,62,0,1,1630083882,2,1.0,40.0,1.0,-9.0,4.0,1248703 -3098340,1630206410,1,57,0,1,1630083883,2,1.0,50.0,1.0,-9.0,4.0,1248704 -3098341,1630206854,2,50,0,1,1630083884,2,1.0,40.0,1.0,-9.0,4.0,1248705 -3098342,1630206855,2,28,2,2,1630083884,2,1.0,35.0,1.0,-9.0,4.0,1248705 -3098343,1630207125,2,58,0,1,1630083885,1,6.0,-9.0,-9.0,-9.0,2.0,1248706 -3098344,1630206791,2,63,0,1,1630083886,2,6.0,-9.0,-9.0,-9.0,4.0,1248707 -3098345,1630207140,2,45,0,1,1630083887,1,6.0,-9.0,-9.0,-9.0,4.0,1248708 -3098346,1630207160,2,56,0,1,1630083888,1,6.0,-9.0,-9.0,-9.0,2.0,1248709 -3098347,1630206711,2,61,0,1,1630083889,2,6.0,-9.0,-9.0,-9.0,4.0,1248710 -3098348,1630207103,2,58,0,1,1630083890,1,6.0,-9.0,-9.0,-9.0,4.0,1248711 -3098349,1630207053,2,54,0,1,1630083891,1,6.0,-9.0,-9.0,-9.0,4.0,1248712 -3098350,1630206760,2,62,0,1,1630083892,2,6.0,-9.0,-9.0,-9.0,4.0,1248713 -3098351,1630207041,2,61,0,1,1630083893,2,6.0,-9.0,-9.0,-9.0,4.0,1248714 -3098352,1630207105,2,47,0,1,1630083894,1,3.0,-9.0,-9.0,-9.0,2.0,1248715 -3098353,1630207042,2,52,0,1,1630083895,2,3.0,-9.0,-9.0,-9.0,4.0,1248716 -3098354,1630206926,2,59,0,1,1630083896,2,6.0,-9.0,-9.0,-9.0,4.0,1248717 -3098355,1630207083,2,61,0,1,1630083897,1,6.0,-9.0,-9.0,-9.0,4.0,1248718 -3098356,1630207028,2,45,0,1,1630083898,2,6.0,-9.0,-9.0,-9.0,4.0,1248719 -3098357,1630206950,2,53,0,1,1630083899,2,6.0,-9.0,-9.0,-9.0,4.0,1248720 -3098358,1630207074,2,64,0,1,1630083900,1,6.0,-9.0,-9.0,-9.0,2.0,1248721 -3098359,1630207221,2,50,0,1,1630083901,1,6.0,-9.0,-9.0,-9.0,4.0,1248722 -3098360,1630207084,2,61,0,1,1630083902,1,6.0,-9.0,-9.0,-9.0,4.0,1248723 -3098361,1630207102,2,60,0,1,1630083903,1,6.0,-9.0,-9.0,-9.0,4.0,1248724 -3098362,1630207250,2,50,0,1,1630083904,1,6.0,-9.0,-9.0,-9.0,4.0,1248725 -3098363,1630206819,2,64,0,1,1630083905,2,6.0,-9.0,-9.0,-9.0,4.0,1248726 -3098364,1630206843,2,51,0,1,1630083906,2,6.0,-9.0,-9.0,-9.0,4.0,1248727 -3098365,1630207200,2,53,0,1,1630083907,1,6.0,-9.0,-9.0,-9.0,4.0,1248728 -3098366,1630207156,2,56,0,1,1630083908,1,6.0,-9.0,-9.0,-9.0,4.0,1248729 -3098367,1630207163,2,58,0,1,1630083909,1,6.0,-9.0,-9.0,-9.0,4.0,1248730 -3098368,1630206828,2,63,0,1,1630083910,2,6.0,-9.0,-9.0,-9.0,4.0,1248731 -3098369,1630206944,2,62,0,1,1630083911,2,6.0,-9.0,-9.0,-9.0,4.0,1248732 -3098370,1630206753,2,61,0,1,1630083912,2,6.0,12.0,6.0,-9.0,4.0,1248733 -3098371,1630207051,2,55,0,1,1630083913,1,6.0,-9.0,-9.0,-9.0,4.0,1248734 -3098372,1630207135,2,59,0,1,1630083914,1,6.0,-9.0,-9.0,-9.0,2.0,1248735 -3098373,1630207228,2,57,0,1,1630083915,1,6.0,-9.0,-9.0,-9.0,2.0,1248736 -3098374,1630207210,2,47,0,1,1630083916,1,3.0,-9.0,-9.0,-9.0,4.0,1248737 -3098375,1630206738,2,50,0,1,1630083917,2,6.0,-9.0,-9.0,-9.0,4.0,1248738 -3098376,1630207108,2,54,0,1,1630083918,1,6.0,-9.0,-9.0,-9.0,4.0,1248739 -3098377,1630207203,2,56,0,1,1630083919,1,3.0,6.0,6.0,-9.0,4.0,1248740 -3098378,1630206890,2,57,0,1,1630083920,2,6.0,-9.0,-9.0,-9.0,4.0,1248741 -3098379,1630207198,2,61,0,1,1630083921,1,6.0,-9.0,-9.0,-9.0,4.0,1248742 -3098380,1630206814,2,58,0,1,1630083922,2,6.0,-9.0,-9.0,-9.0,4.0,1248743 -3098381,1630207173,2,62,0,1,1630083923,1,6.0,-9.0,-9.0,-9.0,4.0,1248744 -3098382,1630206912,2,55,0,1,1630083924,2,6.0,-9.0,-9.0,-9.0,4.0,1248745 -3098383,1630207201,2,53,0,1,1630083925,1,6.0,-9.0,-9.0,-9.0,4.0,1248746 -3098384,1630206893,2,61,0,1,1630083926,2,6.0,-9.0,-9.0,-9.0,4.0,1248747 -3098385,1630206813,2,55,0,1,1630083927,2,6.0,-9.0,-9.0,-9.0,4.0,1248748 -3098386,1630207154,2,51,0,1,1630083928,1,6.0,-9.0,-9.0,-9.0,2.0,1248749 -3098387,1630206792,2,63,0,1,1630083929,2,6.0,-9.0,-9.0,-9.0,4.0,1248750 -3098388,1630207086,2,54,0,1,1630083930,1,3.0,-9.0,-9.0,-9.0,4.0,1248751 -3098389,1630207222,2,50,0,1,1630083931,1,6.0,-9.0,-9.0,-9.0,4.0,1248752 -3098390,1630206985,2,51,0,1,1630083932,2,6.0,-9.0,-9.0,-9.0,4.0,1248753 -3098391,1630207087,2,54,0,1,1630083933,1,3.0,-9.0,-9.0,-9.0,4.0,1248754 -3098392,1630207069,2,58,0,1,1630083934,1,6.0,-9.0,-9.0,-9.0,4.0,1248755 -3098393,1630207002,2,62,0,1,1630083935,2,6.0,-9.0,-9.0,-9.0,4.0,1248756 -3098394,1630207029,2,61,0,1,1630083936,2,6.0,-9.0,-9.0,-9.0,4.0,1248757 -3098395,1630207106,2,47,0,1,1630083937,1,3.0,-9.0,-9.0,-9.0,2.0,1248758 -3098396,1630207189,2,64,0,1,1630083938,1,6.0,-9.0,-9.0,-9.0,2.0,1248759 -3098397,1630206776,2,54,0,1,1630083939,2,6.0,-9.0,-9.0,15.0,4.0,1248760 -3098398,1630206759,2,58,0,1,1630083940,2,6.0,-9.0,-9.0,-9.0,4.0,1248761 -3098399,1630207050,2,53,0,1,1630083941,1,6.0,-9.0,-9.0,-9.0,4.0,1248762 -3098400,1630207079,2,54,0,1,1630083942,1,3.0,-9.0,-9.0,-9.0,2.0,1248763 -3098401,1630207199,2,61,0,1,1630083943,1,6.0,-9.0,-9.0,-9.0,4.0,1248764 -3098402,1630207021,2,54,0,1,1630083944,2,6.0,-9.0,-9.0,-9.0,4.0,1248765 -3098403,1630207151,2,59,0,1,1630083945,1,6.0,-9.0,-9.0,-9.0,2.0,1248766 -3098404,1630206885,2,56,0,1,1630083946,2,6.0,-9.0,-9.0,-9.0,4.0,1248767 -3098405,1630207138,2,50,0,1,1630083947,1,3.0,-9.0,-9.0,-9.0,4.0,1248768 -3098406,1630207080,2,54,0,1,1630083948,1,3.0,-9.0,-9.0,-9.0,2.0,1248769 -3098407,1630207167,2,63,0,1,1630083949,1,6.0,-9.0,-9.0,-9.0,4.0,1248770 -3098408,1630207204,2,64,0,1,1630083950,1,6.0,-9.0,-9.0,-9.0,2.0,1248771 -3098409,1630207075,2,64,0,1,1630083951,1,6.0,-9.0,-9.0,-9.0,2.0,1248772 -3098410,1630207043,2,52,0,1,1630083952,2,3.0,-9.0,-9.0,-9.0,4.0,1248773 -3098411,1630207236,2,62,0,1,1630083953,1,6.0,-9.0,-9.0,-9.0,2.0,1248774 -3098412,1630207139,2,50,0,1,1630083954,1,3.0,-9.0,-9.0,-9.0,4.0,1248775 -3098413,1630207209,2,49,0,1,1630083955,1,6.0,-9.0,-9.0,-9.0,4.0,1248776 -3098414,1630207233,2,61,0,1,1630083956,1,3.0,-9.0,-9.0,15.0,4.0,1248777 -3098415,1630206763,2,58,0,1,1630083957,2,6.0,-9.0,-9.0,-9.0,2.0,1248778 -3098416,1630207093,2,58,0,1,1630083958,1,6.0,-9.0,-9.0,-9.0,4.0,1248779 -3098417,1630207052,2,53,0,1,1630083959,1,3.0,-9.0,-9.0,-9.0,4.0,1248780 -3098418,1630207155,2,62,0,1,1630083960,1,6.0,30.0,4.0,-9.0,4.0,1248781 -3098419,1630207126,2,49,0,1,1630083961,1,3.0,-9.0,-9.0,-9.0,4.0,1248782 -3098420,1630207054,2,54,0,1,1630083962,1,6.0,-9.0,-9.0,-9.0,4.0,1248783 -3098421,1630207117,2,61,0,1,1630083963,1,6.0,-9.0,-9.0,-9.0,4.0,1248784 -3098422,1630207164,2,58,0,1,1630083964,1,6.0,-9.0,-9.0,-9.0,4.0,1248785 -3098423,1630206927,2,59,0,1,1630083965,2,6.0,-9.0,-9.0,-9.0,4.0,1248786 -3098424,1630206866,2,50,0,1,1630083966,2,6.0,-9.0,-9.0,-9.0,4.0,1248787 -3098425,1630207166,2,53,0,1,1630083967,1,6.0,-9.0,-9.0,-9.0,4.0,1248788 -3098426,1630207234,2,61,0,1,1630083968,1,3.0,-9.0,-9.0,15.0,4.0,1248789 -3098427,1630206994,2,51,0,1,1630083969,2,3.0,-9.0,-9.0,-9.0,4.0,1248790 -3098428,1630206925,2,62,0,1,1630083970,2,6.0,-9.0,-9.0,-9.0,4.0,1248791 -3098429,1630207136,2,59,0,1,1630083971,1,6.0,-9.0,-9.0,-9.0,2.0,1248792 -3098430,1630206874,2,62,0,1,1630083972,2,6.0,-9.0,-9.0,-9.0,4.0,1248793 -3098431,1630206979,2,62,0,1,1630083973,2,6.0,-9.0,-9.0,-9.0,4.0,1248794 -3098432,1630206980,2,62,0,1,1630083974,2,6.0,-9.0,-9.0,-9.0,4.0,1248795 -3098433,1630207146,2,56,0,1,1630083975,1,6.0,-9.0,-9.0,-9.0,4.0,1248796 -3098434,1630206986,2,53,0,1,1630083976,2,6.0,-9.0,-9.0,-9.0,4.0,1248797 -3098435,1630207235,2,61,0,1,1630083977,1,3.0,-9.0,-9.0,15.0,4.0,1248798 -3098436,1630206720,2,57,0,1,1630083978,2,6.0,-9.0,-9.0,-9.0,4.0,1248799 -3098437,1630207141,2,45,0,1,1630083979,1,6.0,-9.0,-9.0,-9.0,4.0,1248800 -3098438,1630206844,2,51,0,1,1630083980,2,6.0,-9.0,-9.0,-9.0,4.0,1248801 -3098439,1630207152,2,59,0,1,1630083981,1,6.0,-9.0,-9.0,-9.0,2.0,1248802 -3098440,1630206915,2,56,0,1,1630083982,2,3.0,-9.0,-9.0,-9.0,4.0,1248803 -3098441,1630207162,2,56,0,1,1630083983,1,3.0,-9.0,-9.0,-9.0,4.0,1248804 -3098442,1630207328,4,62,0,1,1630083984,1,6.0,-9.0,-9.0,-9.0,4.0,1248805 -3098443,1630206671,1,53,0,1,1630083985,1,6.0,8.0,6.0,-9.0,4.0,1248806 -3098444,1630206571,1,64,0,1,1630083986,1,6.0,-9.0,-9.0,-9.0,2.0,1248807 -3098445,1630206572,1,64,0,1,1630083987,1,6.0,-9.0,-9.0,-9.0,2.0,1248808 -3098446,1630206573,1,64,0,1,1630083988,1,6.0,-9.0,-9.0,-9.0,2.0,1248809 -3098447,1630206656,1,50,0,1,1630083989,1,3.0,-9.0,-9.0,-9.0,2.0,1248810 -3098448,1630206558,1,45,0,1,1630083990,1,6.0,-9.0,-9.0,-9.0,4.0,1248811 -3098449,1630206438,1,60,0,1,1630083991,2,6.0,-9.0,-9.0,-9.0,4.0,1248812 -3098450,1630206657,1,50,0,1,1630083992,1,3.0,-9.0,-9.0,-9.0,2.0,1248813 -3098451,1630206439,1,60,0,1,1630083993,2,6.0,-9.0,-9.0,-9.0,4.0,1248814 -3098452,1630206559,1,45,0,1,1630083994,1,6.0,-9.0,-9.0,-9.0,4.0,1248815 -3098453,1630206667,1,51,0,1,1630083995,1,6.0,-9.0,-9.0,-9.0,2.0,1248816 -3098454,1630206440,1,60,0,1,1630083996,2,6.0,-9.0,-9.0,-9.0,4.0,1248817 -3098455,1630207124,2,53,0,1,1630083997,1,6.0,-9.0,-9.0,-9.0,4.0,1248818 -3098456,1630207037,2,61,0,1,1630083998,2,6.0,40.0,6.0,-9.0,4.0,1248819 -3098457,1630206991,2,50,0,1,1630083999,2,3.0,-9.0,-9.0,15.0,4.0,1248820 -3098458,1630207066,2,52,0,1,1630084000,1,3.0,-9.0,-9.0,-9.0,4.0,1248821 -3098459,1630207130,2,64,0,1,1630084001,1,6.0,-9.0,-9.0,-9.0,2.0,1248822 -3098460,1630207161,2,51,0,1,1630084002,1,6.0,40.0,6.0,-9.0,4.0,1248823 -3098461,1630207197,2,64,0,1,1630084003,1,6.0,-9.0,-9.0,-9.0,2.0,1248824 -3098462,1630207133,2,55,0,1,1630084004,1,6.0,-9.0,-9.0,-9.0,4.0,1248825 -3098463,1630207095,2,62,0,1,1630084005,1,3.0,-9.0,-9.0,-9.0,4.0,1248826 -3098464,1630206827,2,56,0,1,1630084006,2,6.0,-9.0,-9.0,-9.0,4.0,1248827 -3098465,1630207208,2,53,0,1,1630084007,1,6.0,-9.0,-9.0,-9.0,2.0,1248828 -3098466,1630207111,2,60,0,1,1630084008,1,6.0,-9.0,-9.0,-9.0,4.0,1248829 -3098467,1630207137,2,61,0,1,1630084009,1,6.0,-9.0,-9.0,-9.0,2.0,1248830 -3098468,1630207193,2,62,0,1,1630084010,1,6.0,40.0,5.0,-9.0,4.0,1248831 -3098469,1630207119,2,57,0,1,1630084011,1,6.0,-9.0,-9.0,-9.0,4.0,1248832 -3098470,1630206911,2,63,0,1,1630084012,2,6.0,-9.0,-9.0,-9.0,4.0,1248833 -3098471,1630207112,2,60,0,1,1630084013,1,6.0,-9.0,-9.0,-9.0,4.0,1248834 -3098472,1630206631,1,56,0,1,1630084014,1,6.0,-9.0,-9.0,-9.0,2.0,1248835 -3098473,1630206621,1,64,0,1,1630084015,1,6.0,12.0,5.0,-9.0,4.0,1248836 -3098474,1630207076,2,54,0,1,1630084016,1,6.0,-9.0,-9.0,-9.0,4.0,1248837 -3098475,1630207078,2,75,15,2,1630084016,1,3.0,-9.0,-9.0,-9.0,4.0,1248837 -3098476,1630207077,2,58,15,3,1630084016,1,3.0,-9.0,-9.0,-9.0,4.0,1248837 -3098477,1630206777,2,47,0,1,1630084017,2,3.0,-9.0,-9.0,-9.0,4.0,1248838 -3098478,1630206779,2,20,2,2,1630084017,2,3.0,20.0,5.0,-9.0,4.0,1248838 -3098479,1630206781,2,19,2,3,1630084017,2,3.0,20.0,6.0,-9.0,4.0,1248838 -3098480,1630206952,2,49,0,1,1630084018,2,6.0,-9.0,-9.0,-9.0,4.0,1248839 -3098481,1630206954,2,35,1,2,1630084018,1,6.0,-9.0,-9.0,-9.0,4.0,1248839 -3098482,1630206956,2,30,12,3,1630084018,1,6.0,-9.0,-9.0,-9.0,4.0,1248839 -3098483,1630206902,2,57,0,1,1630084019,2,6.0,-9.0,-9.0,-9.0,4.0,1248840 -3098484,1630206903,2,38,2,2,1630084019,1,6.0,-9.0,-9.0,-9.0,4.0,1248840 -3098485,1630206904,2,20,2,3,1630084019,1,6.0,-9.0,-9.0,-9.0,4.0,1248840 -3098486,1630207006,2,61,0,1,1630084020,1,3.0,-9.0,-9.0,15.0,4.0,1248841 -3098487,1630207004,2,48,13,2,1630084020,2,3.0,-9.0,-9.0,15.0,4.0,1248841 -3098488,1630207008,2,21,15,3,1630084020,1,6.0,-9.0,-9.0,15.0,4.0,1248841 -3098489,1630206953,2,49,0,1,1630084021,2,6.0,-9.0,-9.0,-9.0,4.0,1248842 -3098490,1630206955,2,35,1,2,1630084021,1,6.0,-9.0,-9.0,-9.0,4.0,1248842 -3098491,1630206957,2,30,12,3,1630084021,1,6.0,-9.0,-9.0,-9.0,4.0,1248842 -3098492,1630207007,2,61,0,1,1630084022,1,3.0,-9.0,-9.0,15.0,4.0,1248843 -3098493,1630207005,2,48,13,2,1630084022,2,3.0,-9.0,-9.0,15.0,4.0,1248843 -3098494,1630207009,2,21,15,3,1630084022,1,6.0,-9.0,-9.0,15.0,4.0,1248843 -3098495,1630206778,2,47,0,1,1630084023,2,3.0,-9.0,-9.0,-9.0,4.0,1248844 -3098496,1630206780,2,20,2,2,1630084023,2,3.0,20.0,5.0,-9.0,4.0,1248844 -3098497,1630206782,2,19,2,3,1630084023,2,3.0,20.0,6.0,-9.0,4.0,1248844 -3098498,1630206835,2,57,0,1,1630084024,2,6.0,-9.0,-9.0,-9.0,4.0,1248845 -3098499,1630206837,2,30,2,2,1630084024,1,6.0,-9.0,-9.0,-9.0,4.0,1248845 -3098500,1630207013,2,51,0,1,1630084025,2,3.0,-9.0,-9.0,-9.0,3.0,1248846 -3098501,1630207015,2,57,13,2,1630084025,1,3.0,40.0,5.0,-9.0,4.0,1248846 -3098502,1630206734,2,53,0,1,1630084026,2,6.0,-9.0,-9.0,-9.0,4.0,1248847 -3098503,1630206736,2,19,2,2,1630084026,2,6.0,-9.0,-9.0,15.0,4.0,1248847 -3098504,1630207014,2,51,0,1,1630084027,2,3.0,-9.0,-9.0,-9.0,3.0,1248848 -3098505,1630207016,2,57,13,2,1630084027,1,3.0,40.0,5.0,-9.0,4.0,1248848 -3098506,1630206728,2,61,0,1,1630084028,1,3.0,-9.0,-9.0,-9.0,4.0,1248849 -3098507,1630206727,2,48,1,2,1630084028,2,3.0,15.0,6.0,-9.0,4.0,1248849 -3098508,1630206713,2,50,0,1,1630084029,1,6.0,-9.0,-9.0,-9.0,4.0,1248850 -3098509,1630206712,2,35,2,2,1630084029,2,6.0,-9.0,-9.0,-9.0,4.0,1248850 -3098510,1630206797,2,55,0,1,1630084030,1,6.0,-9.0,-9.0,-9.0,4.0,1248851 -3098511,1630206795,2,48,15,2,1630084030,2,6.0,-9.0,-9.0,-9.0,4.0,1248851 -3098512,1630206886,2,53,0,1,1630084031,2,6.0,-9.0,-9.0,-9.0,4.0,1248852 -3098513,1630206887,2,52,1,2,1630084031,1,3.0,-9.0,-9.0,-9.0,4.0,1248852 -3098514,1630206704,2,57,0,1,1630084032,1,6.0,-9.0,-9.0,-9.0,2.0,1248853 -3098515,1630206703,2,45,13,2,1630084032,2,6.0,-9.0,-9.0,-9.0,4.0,1248853 -3098516,1630206872,2,49,0,1,1630084033,2,6.0,-9.0,-9.0,-9.0,4.0,1248854 -3098517,1630206873,2,56,13,2,1630084033,1,6.0,-9.0,-9.0,-9.0,4.0,1248854 -3098518,1630206975,2,54,0,1,1630084034,2,6.0,-9.0,-9.0,-9.0,4.0,1248855 -3098519,1630206977,2,26,2,2,1630084034,1,3.0,-9.0,-9.0,15.0,4.0,1248855 -3098520,1630206995,2,59,0,1,1630084035,2,6.0,-9.0,-9.0,-9.0,4.0,1248856 -3098521,1630206996,2,53,13,2,1630084035,1,6.0,-9.0,-9.0,-9.0,4.0,1248856 -3098522,1630207098,2,61,0,1,1630084036,1,6.0,-9.0,-9.0,-9.0,2.0,1248857 -3098523,1630207099,2,26,10,2,1630084036,1,3.0,-9.0,-9.0,-9.0,4.0,1248857 -3098524,1630207000,2,63,0,1,1630084037,1,6.0,-9.0,-9.0,-9.0,2.0,1248858 -3098525,1630206998,2,41,13,2,1630084037,2,3.0,-9.0,-9.0,-9.0,4.0,1248858 -3098526,1630206798,2,55,0,1,1630084038,1,6.0,-9.0,-9.0,-9.0,4.0,1248859 -3098527,1630206796,2,48,15,2,1630084038,2,6.0,-9.0,-9.0,-9.0,4.0,1248859 -3098528,1630207217,2,61,0,1,1630084039,1,6.0,-9.0,-9.0,15.0,4.0,1248860 -3098529,1630207219,2,59,5,2,1630084039,1,3.0,-9.0,-9.0,-9.0,4.0,1248860 -3098530,1630206976,2,54,0,1,1630084040,2,6.0,-9.0,-9.0,-9.0,4.0,1248861 -3098531,1630206978,2,26,2,2,1630084040,1,3.0,-9.0,-9.0,15.0,4.0,1248861 -3098532,1630206836,2,57,0,1,1630084041,2,6.0,-9.0,-9.0,-9.0,4.0,1248862 -3098533,1630206838,2,30,2,2,1630084041,1,6.0,-9.0,-9.0,-9.0,4.0,1248862 -3098534,1630207001,2,63,0,1,1630084042,1,6.0,-9.0,-9.0,-9.0,2.0,1248863 -3098535,1630206999,2,41,13,2,1630084042,2,3.0,-9.0,-9.0,-9.0,4.0,1248863 -3098536,1630207218,2,61,0,1,1630084043,1,6.0,-9.0,-9.0,15.0,4.0,1248864 -3098537,1630207220,2,59,5,2,1630084043,1,3.0,-9.0,-9.0,-9.0,4.0,1248864 -3098538,1630207059,2,60,0,1,1630084044,1,6.0,-9.0,-9.0,-9.0,4.0,1248865 -3098539,1630207060,2,45,15,2,1630084044,1,6.0,-9.0,-9.0,-9.0,4.0,1248865 -3098540,1630206833,2,59,0,1,1630084045,2,6.0,-9.0,-9.0,-9.0,4.0,1248866 -3098541,1630206834,2,42,2,2,1630084045,1,3.0,-9.0,-9.0,-9.0,4.0,1248866 -3098542,1630206735,2,53,0,1,1630084046,2,6.0,-9.0,-9.0,-9.0,4.0,1248867 -3098543,1630206737,2,19,2,2,1630084046,2,6.0,-9.0,-9.0,15.0,4.0,1248867 -3098544,1630206421,1,51,0,1,1630084047,2,6.0,-9.0,-9.0,-9.0,4.0,1248868 -3098545,1630206423,1,44,12,2,1630084047,1,3.0,15.0,6.0,-9.0,4.0,1248868 -3098546,1630206909,2,56,0,1,1630084048,2,6.0,-9.0,-9.0,-9.0,4.0,1248869 -3098547,1630206910,2,21,2,2,1630084048,2,6.0,-9.0,-9.0,15.0,4.0,1248869 -3098548,1630206958,2,56,0,1,1630084049,2,3.0,10.0,4.0,-9.0,4.0,1248870 -3098549,1630206960,2,18,2,2,1630084049,1,3.0,-9.0,-9.0,15.0,4.0,1248870 -3098550,1630207031,2,64,0,1,1630084050,1,6.0,-9.0,-9.0,-9.0,4.0,1248871 -3098551,1630207030,2,57,15,2,1630084050,2,6.0,-9.0,-9.0,-9.0,4.0,1248871 -3098552,1630206943,2,58,0,1,1630084051,1,6.0,-9.0,-9.0,-9.0,2.0,1248872 -3098553,1630206942,2,56,12,2,1630084051,2,6.0,-9.0,-9.0,15.0,4.0,1248872 -3098554,1630206317,2,56,0,1,1630084052,1,6.0,-9.0,-9.0,-9.0,4.0,1248873 -3098555,1630206316,2,68,1,2,1630084052,2,6.0,-9.0,-9.0,-9.0,4.0,1248873 -3098556,1630206959,2,56,0,1,1630084053,2,3.0,10.0,4.0,-9.0,4.0,1248874 -3098557,1630206961,2,18,2,2,1630084053,1,3.0,-9.0,-9.0,15.0,4.0,1248874 -3098558,1630206853,2,51,0,1,1630084054,1,6.0,-9.0,-9.0,-9.0,4.0,1248875 -3098559,1630206852,2,52,1,2,1630084054,2,3.0,-9.0,-9.0,-9.0,4.0,1248875 -3098560,1630206642,1,57,0,1,1630084055,1,3.0,20.0,6.0,-9.0,4.0,1248876 -3098561,1630206644,1,75,10,2,1630084055,1,6.0,-9.0,-9.0,-9.0,2.0,1248876 -3098562,1630206643,1,57,0,1,1630084056,1,3.0,20.0,6.0,-9.0,4.0,1248877 -3098563,1630206645,1,75,10,2,1630084056,1,6.0,-9.0,-9.0,-9.0,2.0,1248877 -3098564,1630207094,2,63,0,1,1630084057,1,1.0,25.0,1.0,-9.0,4.0,1248878 -3098565,1630207027,2,61,0,1,1630084058,2,1.0,35.0,1.0,-9.0,4.0,1248879 -3098566,1630206721,2,61,0,1,1630084059,2,1.0,38.0,1.0,-9.0,4.0,1248880 -3098567,1630207100,2,64,0,1,1630084060,1,1.0,40.0,1.0,-9.0,4.0,1248881 -3098568,1630206768,2,59,0,1,1630084061,2,1.0,20.0,4.0,-9.0,4.0,1248882 -3098569,1630207212,2,58,0,1,1630084062,1,2.0,20.0,6.0,-9.0,2.0,1248883 -3098570,1630207143,2,55,0,1,1630084063,1,1.0,40.0,2.0,-9.0,4.0,1248884 -3098571,1630207229,2,46,0,1,1630084064,1,1.0,32.0,6.0,-9.0,4.0,1248885 -3098572,1630206940,2,58,0,1,1630084065,2,1.0,40.0,1.0,-9.0,4.0,1248886 -3098573,1630207101,2,64,0,1,1630084066,1,1.0,40.0,1.0,-9.0,4.0,1248887 -3098574,1630207157,2,54,0,1,1630084067,1,1.0,42.0,1.0,-9.0,4.0,1248888 -3098575,1630207144,2,59,0,1,1630084068,1,1.0,40.0,1.0,-9.0,2.0,1248889 -3098576,1630207400,4,51,0,1,1630084069,2,1.0,40.0,1.0,-9.0,4.0,1248890 -3098577,1630207104,2,54,0,1,1630084070,1,1.0,35.0,4.0,-9.0,2.0,1248891 -3098578,1630206905,2,56,0,1,1630084071,2,1.0,25.0,1.0,-9.0,4.0,1248892 -3098579,1630207248,2,58,0,1,1630084072,1,1.0,40.0,1.0,-9.0,4.0,1248893 -3098580,1630206921,2,46,0,1,1630084073,2,1.0,30.0,3.0,15.0,4.0,1248894 -3098581,1630206906,2,56,0,1,1630084074,2,1.0,25.0,1.0,-9.0,4.0,1248895 -3098582,1630206658,1,46,0,1,1630084075,1,1.0,43.0,1.0,-9.0,4.0,1248896 -3098583,1630206431,1,53,0,1,1630084076,2,1.0,50.0,1.0,-9.0,4.0,1248897 -3098584,1630206696,2,55,0,1,1630084077,1,1.0,20.0,5.0,-9.0,4.0,1248898 -3098585,1630206698,2,19,2,2,1630084077,1,3.0,-9.0,-9.0,-9.0,4.0,1248898 -3098586,1630206694,2,51,10,3,1630084077,2,6.0,-9.0,-9.0,-9.0,4.0,1248898 -3098587,1630206847,2,46,0,1,1630084078,2,1.0,40.0,5.0,-9.0,4.0,1248899 -3098588,1630206848,2,28,10,2,1630084078,1,6.0,-9.0,-9.0,-9.0,4.0,1248899 -3098589,1630206849,2,33,12,3,1630084078,1,6.0,-9.0,-9.0,-9.0,4.0,1248899 -3098590,1630206815,2,46,0,1,1630084079,2,1.0,38.0,1.0,-9.0,4.0,1248900 -3098591,1630206817,2,21,2,2,1630084079,1,6.0,-9.0,-9.0,-9.0,4.0,1248900 -3098592,1630206816,2,46,0,1,1630084080,2,1.0,38.0,1.0,-9.0,4.0,1248901 -3098593,1630206818,2,21,2,2,1630084080,1,6.0,-9.0,-9.0,-9.0,4.0,1248901 -3098594,1630206761,2,55,0,1,1630084081,2,1.0,35.0,1.0,-9.0,4.0,1248902 -3098595,1630206762,2,23,2,2,1630084081,1,3.0,-9.0,-9.0,15.0,4.0,1248902 -3098596,1630207017,2,58,0,1,1630084082,2,1.0,30.0,1.0,15.0,4.0,1248903 -3098597,1630207018,2,34,2,2,1630084082,2,3.0,22.0,3.0,15.0,4.0,1248903 -3098598,1630206845,2,45,0,1,1630084083,2,1.0,20.0,1.0,-9.0,4.0,1248904 -3098599,1630206846,2,22,2,2,1630084083,1,3.0,40.0,6.0,-9.0,4.0,1248904 -3098600,1630206900,2,60,0,1,1630084084,2,6.0,-9.0,-9.0,-9.0,4.0,1248905 -3098601,1630206901,2,42,2,2,1630084084,1,1.0,40.0,6.0,15.0,4.0,1248905 -3098602,1630207019,2,52,0,1,1630084085,2,2.0,40.0,3.0,-9.0,4.0,1248906 -3098603,1630207020,2,19,12,2,1630084085,2,1.0,40.0,1.0,15.0,4.0,1248906 -3098604,1630206354,2,66,0,1,1630084086,2,6.0,-9.0,-9.0,-9.0,4.0,1248907 -3098605,1630206379,2,85,0,1,1630084087,2,6.0,-9.0,-9.0,-9.0,4.0,1248908 -3098606,1630206347,2,90,0,1,1630084088,2,6.0,-9.0,-9.0,-9.0,4.0,1248909 -3098607,1630206380,2,85,0,1,1630084089,2,6.0,-9.0,-9.0,-9.0,4.0,1248910 -3098608,1630206235,2,87,0,1,1630084090,2,6.0,-9.0,-9.0,-9.0,4.0,1248911 -3098609,1630206355,2,66,0,1,1630084091,2,6.0,-9.0,-9.0,-9.0,4.0,1248912 -3098610,1630206237,2,68,0,1,1630084092,2,6.0,-9.0,-9.0,-9.0,4.0,1248913 -3098611,1630206238,2,68,0,1,1630084093,2,6.0,-9.0,-9.0,-9.0,4.0,1248914 -3098612,1630206332,2,76,0,1,1630084094,2,6.0,-9.0,-9.0,-9.0,4.0,1248915 -3098613,1630206239,2,68,0,1,1630084095,2,6.0,-9.0,-9.0,-9.0,4.0,1248916 -3098614,1630207343,1,66,0,1,1630084096,1,6.0,-9.0,-9.0,-9.0,2.0,1248917 -3098615,1630206286,2,68,0,1,1630084097,2,6.0,40.0,2.0,-9.0,4.0,1248918 -3098616,1630206287,2,42,2,2,1630084097,1,6.0,-9.0,-9.0,-9.0,4.0,1248918 -3098617,1630206288,2,21,7,3,1630084097,1,6.0,-9.0,-9.0,-9.0,4.0,1248918 -3098618,1630206326,2,76,0,1,1630084098,2,6.0,-9.0,-9.0,-9.0,4.0,1248919 -3098619,1630206328,2,18,7,2,1630084098,2,6.0,-9.0,-9.0,13.0,4.0,1248919 -3098620,1630206327,2,76,0,1,1630084099,2,6.0,-9.0,-9.0,-9.0,4.0,1248920 -3098621,1630206329,2,18,7,2,1630084099,2,6.0,-9.0,-9.0,13.0,4.0,1248920 -3098622,1630206321,2,90,0,1,1630084100,2,6.0,-9.0,-9.0,-9.0,4.0,1248921 -3098623,1630206322,1,56,11,2,1630084100,1,6.0,-9.0,-9.0,-9.0,4.0,1248921 -3098624,1630206593,1,87,0,1,1630084101,1,6.0,-9.0,-9.0,-9.0,2.0,1248922 -3098625,1630206591,1,51,12,2,1630084101,1,6.0,-9.0,-9.0,-9.0,4.0,1248922 -3098626,1630206303,2,81,0,1,1630084102,1,6.0,-9.0,-9.0,-9.0,3.0,1248923 -3098627,1630206302,2,79,1,2,1630084102,2,6.0,-9.0,-9.0,-9.0,4.0,1248923 -3098628,1630206227,2,74,0,1,1630084103,2,6.0,-9.0,-9.0,-9.0,4.0,1248924 -3098629,1630206228,2,46,2,2,1630084103,1,6.0,-9.0,-9.0,-9.0,4.0,1248924 -3098630,1630206259,2,65,0,1,1630084104,2,1.0,40.0,1.0,-9.0,4.0,1248925 -3098631,1630206351,2,73,0,1,1630084105,2,6.0,-9.0,-9.0,-9.0,4.0,1248926 -3098632,1630206352,2,66,5,2,1630084105,2,1.0,6.0,3.0,-9.0,4.0,1248926 -3098633,1630207306,2,74,0,1,1630084106,1,6.0,-9.0,-9.0,-9.0,2.0,1248927 -3098634,1630206343,2,78,0,1,1630084107,2,6.0,-9.0,-9.0,-9.0,4.0,1248928 -3098635,1630207266,2,80,0,1,1630084108,1,6.0,-9.0,-9.0,-9.0,2.0,1248929 -3098636,1630206226,2,82,0,1,1630084109,2,6.0,-9.0,-9.0,-9.0,4.0,1248930 -3098637,1630207320,2,65,0,1,1630084110,1,6.0,-9.0,-9.0,-9.0,2.0,1248931 -3098638,1630207272,2,71,0,1,1630084111,1,6.0,-9.0,-9.0,-9.0,4.0,1248932 -3098639,1630207295,2,75,0,1,1630084112,1,6.0,-9.0,-9.0,-9.0,2.0,1248933 -3098640,1630206272,2,66,0,1,1630084113,2,6.0,-9.0,-9.0,-9.0,4.0,1248934 -3098641,1630206273,2,66,0,1,1630084114,2,6.0,-9.0,-9.0,-9.0,4.0,1248935 -3098642,1630206243,2,82,0,1,1630084115,2,6.0,-9.0,-9.0,-9.0,4.0,1248936 -3098643,1630207321,2,86,0,1,1630084116,1,6.0,-9.0,-9.0,-9.0,2.0,1248937 -3098644,1630206370,2,80,0,1,1630084117,2,6.0,-9.0,-9.0,-9.0,4.0,1248938 -3098645,1630206335,2,67,0,1,1630084118,2,6.0,-9.0,-9.0,-9.0,4.0,1248939 -3098646,1630206297,2,66,0,1,1630084119,2,6.0,-9.0,-9.0,-9.0,4.0,1248940 -3098647,1630206342,2,65,0,1,1630084120,2,6.0,-9.0,-9.0,-9.0,4.0,1248941 -3098648,1630206257,2,71,0,1,1630084121,2,6.0,-9.0,-9.0,-9.0,4.0,1248942 -3098649,1630206245,2,68,0,1,1630084122,2,6.0,-9.0,-9.0,-9.0,4.0,1248943 -3098650,1630206381,2,78,0,1,1630084123,2,6.0,-9.0,-9.0,-9.0,4.0,1248944 -3098651,1630206249,2,65,0,1,1630084124,2,6.0,-9.0,-9.0,-9.0,4.0,1248945 -3098652,1630207304,2,66,0,1,1630084125,1,6.0,-9.0,-9.0,-9.0,4.0,1248946 -3098653,1630206330,2,69,0,1,1630084126,2,6.0,-9.0,-9.0,-9.0,4.0,1248947 -3098654,1630207270,2,69,0,1,1630084127,1,6.0,-9.0,-9.0,-9.0,2.0,1248948 -3098655,1630207326,2,66,0,1,1630084128,1,6.0,-9.0,-9.0,-9.0,2.0,1248949 -3098656,1630207260,2,71,0,1,1630084129,1,6.0,-9.0,-9.0,-9.0,4.0,1248950 -3098657,1630206306,2,68,0,1,1630084130,2,6.0,16.0,6.0,-9.0,3.0,1248951 -3098658,1630206232,2,70,0,1,1630084131,2,6.0,-9.0,-9.0,-9.0,4.0,1248952 -3098659,1630206240,2,70,0,1,1630084132,2,6.0,-9.0,-9.0,-9.0,4.0,1248953 -3098660,1630206225,2,70,0,1,1630084133,2,6.0,-9.0,-9.0,-9.0,4.0,1248954 -3098661,1630206278,2,74,0,1,1630084134,2,6.0,-9.0,-9.0,-9.0,4.0,1248955 -3098662,1630206331,2,69,0,1,1630084135,2,6.0,-9.0,-9.0,-9.0,4.0,1248956 -3098663,1630206371,2,80,0,1,1630084136,2,6.0,-9.0,-9.0,-9.0,4.0,1248957 -3098664,1630206253,2,65,0,1,1630084137,2,6.0,-9.0,-9.0,-9.0,4.0,1248958 -3098665,1630207293,2,75,0,1,1630084138,1,6.0,-9.0,-9.0,-9.0,4.0,1248959 -3098666,1630207310,2,75,0,1,1630084139,1,6.0,-9.0,-9.0,-9.0,4.0,1248960 -3098667,1630206309,2,80,0,1,1630084140,2,6.0,-9.0,-9.0,-9.0,4.0,1248961 -3098668,1630207322,2,86,0,1,1630084141,1,6.0,-9.0,-9.0,-9.0,2.0,1248962 -3098669,1630206280,2,81,0,1,1630084142,2,6.0,-9.0,-9.0,-9.0,4.0,1248963 -3098670,1630206244,2,87,0,1,1630084143,2,6.0,-9.0,-9.0,-9.0,4.0,1248964 -3098671,1630206279,2,74,0,1,1630084144,2,6.0,-9.0,-9.0,-9.0,4.0,1248965 -3098672,1630207268,2,69,0,1,1630084145,1,6.0,-9.0,-9.0,-9.0,4.0,1248966 -3098673,1630207283,2,79,0,1,1630084146,1,6.0,-9.0,-9.0,-9.0,2.0,1248967 -3098674,1630206359,2,80,0,1,1630084147,2,6.0,-9.0,-9.0,-9.0,4.0,1248968 -3098675,1630207305,2,67,0,1,1630084148,1,6.0,-9.0,-9.0,-9.0,4.0,1248969 -3098676,1630207278,2,83,0,1,1630084149,1,6.0,-9.0,-9.0,-9.0,2.0,1248970 -3098677,1630207257,2,67,0,1,1630084150,1,6.0,-9.0,-9.0,-9.0,2.0,1248971 -3098678,1630207292,2,72,0,1,1630084151,1,3.0,-9.0,-9.0,15.0,2.0,1248972 -3098679,1630207265,2,78,0,1,1630084152,1,6.0,-9.0,-9.0,-9.0,4.0,1248973 -3098680,1630206241,2,72,0,1,1630084153,2,6.0,-9.0,-9.0,-9.0,3.0,1248974 -3098681,1630207325,2,76,0,1,1630084154,1,6.0,-9.0,-9.0,-9.0,4.0,1248975 -3098682,1630206258,2,71,0,1,1630084155,2,6.0,-9.0,-9.0,-9.0,4.0,1248976 -3098683,1630207269,2,69,0,1,1630084156,1,6.0,-9.0,-9.0,-9.0,4.0,1248977 -3098684,1630207263,2,67,0,1,1630084157,1,6.0,-9.0,-9.0,-9.0,2.0,1248978 -3098685,1630206223,2,73,0,1,1630084158,2,6.0,-9.0,-9.0,-9.0,4.0,1248979 -3098686,1630206254,2,65,0,1,1630084159,2,6.0,-9.0,-9.0,-9.0,4.0,1248980 -3098687,1630207282,2,69,0,1,1630084160,1,6.0,-9.0,-9.0,-9.0,4.0,1248981 -3098688,1630206242,2,72,0,1,1630084161,2,6.0,-9.0,-9.0,-9.0,3.0,1248982 -3098689,1630206356,2,65,0,1,1630084162,2,6.0,-9.0,-9.0,-9.0,4.0,1248983 -3098690,1630207302,2,65,0,1,1630084163,1,6.0,-9.0,-9.0,-9.0,2.0,1248984 -3098691,1630207311,2,75,0,1,1630084164,1,6.0,-9.0,-9.0,-9.0,4.0,1248985 -3098692,1630206358,2,72,0,1,1630084165,2,6.0,-9.0,-9.0,-9.0,4.0,1248986 -3098693,1630207261,2,71,0,1,1630084166,1,6.0,-9.0,-9.0,-9.0,4.0,1248987 -3098694,1630206222,2,86,0,1,1630084167,2,6.0,-9.0,-9.0,-9.0,4.0,1248988 -3098695,1630207317,2,82,0,1,1630084168,1,6.0,-9.0,-9.0,-9.0,2.0,1248989 -3098696,1630207296,2,75,0,1,1630084169,1,6.0,-9.0,-9.0,-9.0,2.0,1248990 -3098697,1630206224,2,73,0,1,1630084170,2,6.0,-9.0,-9.0,-9.0,4.0,1248991 -3098698,1630206310,2,80,0,1,1630084171,2,6.0,-9.0,-9.0,-9.0,4.0,1248992 -3098699,1630207273,2,71,0,1,1630084172,1,6.0,-9.0,-9.0,-9.0,4.0,1248993 -3098700,1630207284,2,79,0,1,1630084173,1,6.0,-9.0,-9.0,-9.0,2.0,1248994 -3098701,1630206357,2,65,0,1,1630084174,2,6.0,-9.0,-9.0,-9.0,4.0,1248995 -3098702,1630207298,2,75,0,1,1630084175,1,6.0,-9.0,-9.0,-9.0,4.0,1248996 -3098703,1630207258,2,67,0,1,1630084176,1,6.0,-9.0,-9.0,-9.0,2.0,1248997 -3098704,1630206313,2,73,0,1,1630084177,2,6.0,-9.0,-9.0,-9.0,4.0,1248998 -3098705,1630207285,2,79,0,1,1630084178,1,6.0,-9.0,-9.0,-9.0,2.0,1248999 -3098706,1630206372,2,80,0,1,1630084179,2,6.0,-9.0,-9.0,-9.0,4.0,1249000 -3098707,1630207274,2,71,0,1,1630084180,1,6.0,-9.0,-9.0,-9.0,4.0,1249001 -3098708,1630207318,2,82,0,1,1630084181,1,6.0,-9.0,-9.0,-9.0,2.0,1249002 -3098709,1630207287,2,79,0,1,1630084182,1,6.0,-9.0,-9.0,-9.0,2.0,1249003 -3098710,1630206255,2,85,0,1,1630084183,2,6.0,-9.0,-9.0,-9.0,4.0,1249004 -3098711,1630206236,2,94,0,1,1630084184,2,6.0,-9.0,-9.0,-9.0,4.0,1249005 -3098712,1630206361,2,73,0,1,1630084185,2,6.0,-9.0,-9.0,-9.0,4.0,1249006 -3098713,1630207279,2,83,0,1,1630084186,1,6.0,-9.0,-9.0,-9.0,2.0,1249007 -3098714,1630206314,2,67,0,1,1630084187,2,6.0,-9.0,-9.0,-9.0,4.0,1249008 -3098715,1630206315,2,67,0,1,1630084188,2,6.0,-9.0,-9.0,-9.0,4.0,1249009 -3098716,1630206340,2,69,0,1,1630084189,2,6.0,-9.0,-9.0,-9.0,4.0,1249010 -3098717,1630206269,2,73,0,1,1630084190,2,6.0,-9.0,-9.0,-9.0,4.0,1249011 -3098718,1630206376,2,70,0,1,1630084191,2,6.0,-9.0,-9.0,-9.0,4.0,1249012 -3098719,1630206378,2,79,0,1,1630084192,2,6.0,-9.0,-9.0,-9.0,4.0,1249013 -3098720,1630206336,2,67,0,1,1630084193,2,6.0,-9.0,-9.0,-9.0,4.0,1249014 -3098721,1630206360,2,80,0,1,1630084194,2,6.0,-9.0,-9.0,-9.0,4.0,1249015 -3098722,1630207323,2,86,0,1,1630084195,1,6.0,-9.0,-9.0,-9.0,2.0,1249016 -3098723,1630207264,2,67,0,1,1630084196,1,6.0,-9.0,-9.0,-9.0,2.0,1249017 -3098724,1630206311,2,78,0,1,1630084197,2,6.0,-9.0,-9.0,-9.0,4.0,1249018 -3098725,1630206233,2,70,0,1,1630084198,2,6.0,-9.0,-9.0,-9.0,4.0,1249019 -3098726,1630206346,2,72,0,1,1630084199,2,6.0,-9.0,-9.0,-9.0,4.0,1249020 -3098727,1630206281,2,81,0,1,1630084200,2,6.0,-9.0,-9.0,-9.0,4.0,1249021 -3098728,1630207308,2,76,0,1,1630084201,1,6.0,-9.0,-9.0,-9.0,2.0,1249022 -3098729,1630206234,2,70,0,1,1630084202,2,6.0,-9.0,-9.0,-9.0,4.0,1249023 -3098730,1630207259,2,67,0,1,1630084203,1,6.0,-9.0,-9.0,-9.0,2.0,1249024 -3098731,1630207324,2,86,0,1,1630084204,1,6.0,-9.0,-9.0,-9.0,2.0,1249025 -3098732,1630207288,2,79,0,1,1630084205,1,6.0,-9.0,-9.0,-9.0,2.0,1249026 -3098733,1630206344,2,78,0,1,1630084206,2,6.0,-9.0,-9.0,-9.0,4.0,1249027 -3098734,1630207312,2,75,0,1,1630084207,1,6.0,-9.0,-9.0,-9.0,4.0,1249028 -3098735,1630207303,2,65,0,1,1630084208,1,6.0,-9.0,-9.0,-9.0,2.0,1249029 -3098736,1630206373,2,80,0,1,1630084209,2,6.0,-9.0,-9.0,-9.0,4.0,1249030 -3098737,1630206312,2,78,0,1,1630084210,2,6.0,-9.0,-9.0,-9.0,4.0,1249031 -3098738,1630207307,2,79,0,1,1630084211,1,6.0,-9.0,-9.0,-9.0,4.0,1249032 -3098739,1630207280,2,83,0,1,1630084212,1,6.0,-9.0,-9.0,-9.0,2.0,1249033 -3098740,1630207276,2,70,0,1,1630084213,1,6.0,-9.0,-9.0,-9.0,4.0,1249034 -3098741,1630207294,2,75,0,1,1630084214,1,6.0,-9.0,-9.0,-9.0,4.0,1249035 -3098742,1630206393,1,65,0,1,1630084215,2,6.0,-9.0,-9.0,-9.0,4.0,1249036 -3098743,1630207341,1,66,0,1,1630084216,1,6.0,-9.0,-9.0,-9.0,4.0,1249037 -3098744,1630206392,1,76,0,1,1630084217,2,6.0,-9.0,-9.0,-9.0,4.0,1249038 -3098745,1630206390,1,69,0,1,1630084218,2,6.0,-9.0,-9.0,-9.0,4.0,1249039 -3098746,1630206399,1,67,0,1,1630084219,2,6.0,-9.0,-9.0,-9.0,4.0,1249040 -3098747,1630206403,1,76,0,1,1630084220,2,6.0,-9.0,-9.0,-9.0,4.0,1249041 -3098748,1630206400,1,67,0,1,1630084221,2,6.0,-9.0,-9.0,-9.0,4.0,1249042 -3098749,1630206404,1,76,0,1,1630084222,2,6.0,-9.0,-9.0,-9.0,4.0,1249043 -3098750,1630207337,1,74,0,1,1630084223,1,6.0,-9.0,-9.0,-9.0,3.0,1249044 -3098751,1630207338,1,74,0,1,1630084224,1,6.0,-9.0,-9.0,-9.0,3.0,1249045 -3098752,1630206401,1,67,0,1,1630084225,2,6.0,-9.0,-9.0,-9.0,4.0,1249046 -3098753,1630206402,1,67,0,1,1630084226,2,6.0,-9.0,-9.0,-9.0,4.0,1249047 -3098754,1630207342,1,77,0,1,1630084227,1,6.0,-9.0,-9.0,-9.0,4.0,1249048 -3098755,1630206391,1,69,0,1,1630084228,2,6.0,-9.0,-9.0,-9.0,4.0,1249049 -3098756,1630206396,1,67,0,1,1630084229,2,6.0,-9.0,-9.0,-9.0,4.0,1249050 -3098757,1630207339,3,67,0,1,1630084230,1,6.0,-9.0,-9.0,-9.0,2.0,1249051 -3098758,1630207277,2,83,0,1,1630084231,1,6.0,-9.0,-9.0,-9.0,2.0,1249052 -3098759,1630207271,2,76,0,1,1630084232,1,6.0,-9.0,-9.0,-9.0,4.0,1249053 -3098760,1630207315,2,65,0,1,1630084233,1,6.0,-9.0,-9.0,-9.0,2.0,1249054 -3098761,1630206229,2,69,0,1,1630084234,2,6.0,-9.0,-9.0,-9.0,4.0,1249055 -3098762,1630206274,2,65,0,1,1630084235,2,6.0,-9.0,-9.0,-9.0,4.0,1249056 -3098763,1630207316,2,65,0,1,1630084236,1,6.0,-9.0,-9.0,-9.0,2.0,1249057 -3098764,1630207313,2,68,0,1,1630084237,1,6.0,-9.0,-9.0,-9.0,4.0,1249058 -3098765,1630206231,2,66,0,1,1630084238,2,6.0,-9.0,-9.0,-9.0,4.0,1249059 -3098766,1630207299,2,81,0,1,1630084239,1,6.0,-9.0,-9.0,-9.0,4.0,1249060 -3098767,1630206349,2,78,0,1,1630084240,2,6.0,-9.0,-9.0,-9.0,4.0,1249061 -3098768,1630206230,2,69,0,1,1630084241,2,6.0,-9.0,-9.0,-9.0,4.0,1249062 -3098769,1630207297,2,75,0,1,1630084242,1,6.0,-9.0,-9.0,-9.0,2.0,1249063 -3098770,1630207301,2,84,0,1,1630084243,1,6.0,-9.0,-9.0,-9.0,4.0,1249064 -3098771,1630207289,2,76,0,1,1630084244,1,3.0,-9.0,-9.0,-9.0,4.0,1249065 -3098772,1630206350,2,78,0,1,1630084245,2,6.0,-9.0,-9.0,-9.0,4.0,1249066 -3098773,1630207319,2,65,0,1,1630084246,1,6.0,12.0,6.0,15.0,2.0,1249067 -3098774,1630207300,2,81,0,1,1630084247,1,6.0,-9.0,-9.0,-9.0,4.0,1249068 -3098775,1630207262,2,77,0,1,1630084248,1,6.0,-9.0,-9.0,-9.0,4.0,1249069 -3098776,1630206247,2,77,0,1,1630084249,2,6.0,-9.0,-9.0,-9.0,4.0,1249070 -3098777,1630206353,2,69,0,1,1630084250,2,6.0,-9.0,-9.0,-9.0,4.0,1249071 -3098778,1630207291,2,66,0,1,1630084251,1,6.0,-9.0,-9.0,-9.0,4.0,1249072 -3098779,1630206246,2,84,0,1,1630084252,2,6.0,-9.0,-9.0,-9.0,4.0,1249073 -3098780,1630207290,2,76,0,1,1630084253,1,3.0,-9.0,-9.0,-9.0,4.0,1249074 -3098781,1630206256,2,66,0,1,1630084254,2,6.0,-9.0,-9.0,-9.0,4.0,1249075 -3098782,1630206298,2,69,0,1,1630084255,2,6.0,-9.0,-9.0,-9.0,4.0,1249076 -3098783,1630206301,2,77,0,1,1630084256,2,6.0,-9.0,-9.0,-9.0,4.0,1249077 -3098784,1630206345,2,84,0,1,1630084257,2,3.0,-9.0,-9.0,-9.0,4.0,1249078 -3098785,1630207314,2,68,0,1,1630084258,1,6.0,-9.0,-9.0,-9.0,4.0,1249079 -3098786,1630206268,2,75,0,1,1630084259,2,6.0,-9.0,-9.0,-9.0,4.0,1249080 -3098787,1630206308,2,66,0,1,1630084260,2,6.0,-9.0,-9.0,-9.0,4.0,1249081 -3098788,1630206377,2,79,0,1,1630084261,2,6.0,-9.0,-9.0,-9.0,4.0,1249082 -3098789,1630207340,1,68,0,1,1630084262,1,6.0,-9.0,-9.0,-9.0,2.0,1249083 -3098790,1630206394,1,69,0,1,1630084263,2,6.0,-9.0,-9.0,-9.0,4.0,1249084 -3098791,1630206881,2,67,0,1,1630084264,1,6.0,-9.0,-9.0,-9.0,4.0,1249085 -3098792,1630206875,2,61,1,2,1630084264,2,6.0,-9.0,-9.0,-9.0,4.0,1249085 -3098793,1630206878,2,20,2,3,1630084264,2,6.0,-9.0,-9.0,-9.0,4.0,1249085 -3098794,1630206882,2,67,0,1,1630084265,1,6.0,-9.0,-9.0,-9.0,4.0,1249086 -3098795,1630206876,2,61,1,2,1630084265,2,6.0,-9.0,-9.0,-9.0,4.0,1249086 -3098796,1630206879,2,20,2,3,1630084265,2,6.0,-9.0,-9.0,-9.0,4.0,1249086 -3098797,1630206883,2,67,0,1,1630084266,1,6.0,-9.0,-9.0,-9.0,4.0,1249087 -3098798,1630206877,2,61,1,2,1630084266,2,6.0,-9.0,-9.0,-9.0,4.0,1249087 -3098799,1630206880,2,20,2,3,1630084266,2,6.0,-9.0,-9.0,-9.0,4.0,1249087 -3098800,1630206260,2,70,0,1,1630084267,2,6.0,-9.0,-9.0,-9.0,4.0,1249088 -3098801,1630206262,2,72,1,2,1630084267,1,6.0,-9.0,-9.0,-9.0,4.0,1249088 -3098802,1630206362,2,72,0,1,1630084268,2,6.0,-9.0,-9.0,-9.0,4.0,1249089 -3098803,1630206365,2,71,12,2,1630084268,1,6.0,-9.0,-9.0,-9.0,4.0,1249089 -3098804,1630206220,2,73,0,1,1630084269,2,6.0,-9.0,-9.0,-9.0,4.0,1249090 -3098805,1630206221,2,43,2,2,1630084269,2,6.0,-9.0,-9.0,-9.0,4.0,1249090 -3098806,1630206289,2,65,0,1,1630084270,2,6.0,-9.0,-9.0,-9.0,4.0,1249091 -3098807,1630206293,2,45,2,2,1630084270,1,3.0,15.0,6.0,-9.0,4.0,1249091 -3098808,1630206304,2,81,0,1,1630084271,2,6.0,-9.0,-9.0,-9.0,4.0,1249092 -3098809,1630206305,2,57,2,2,1630084271,1,6.0,-9.0,-9.0,-9.0,4.0,1249092 -3098810,1630206261,2,70,0,1,1630084272,2,6.0,-9.0,-9.0,-9.0,4.0,1249093 -3098811,1630206263,2,72,1,2,1630084272,1,6.0,-9.0,-9.0,-9.0,4.0,1249093 -3098812,1630206766,2,77,0,1,1630084273,1,6.0,-9.0,-9.0,-9.0,2.0,1249094 -3098813,1630206764,2,62,1,2,1630084273,2,6.0,-9.0,-9.0,-9.0,4.0,1249094 -3098814,1630206384,2,90,0,1,1630084274,1,6.0,-9.0,-9.0,-9.0,2.0,1249095 -3098815,1630206382,2,85,1,2,1630084274,2,6.0,-9.0,-9.0,-9.0,4.0,1249095 -3098816,1630206266,2,76,0,1,1630084275,1,6.0,-9.0,-9.0,-9.0,2.0,1249096 -3098817,1630206264,2,68,1,2,1630084275,2,6.0,-9.0,-9.0,-9.0,4.0,1249096 -3098818,1630206363,2,72,0,1,1630084276,2,6.0,-9.0,-9.0,-9.0,4.0,1249097 -3098819,1630206366,2,71,12,2,1630084276,1,6.0,-9.0,-9.0,-9.0,4.0,1249097 -3098820,1630206767,2,77,0,1,1630084277,1,6.0,-9.0,-9.0,-9.0,2.0,1249098 -3098821,1630206765,2,62,1,2,1630084277,2,6.0,-9.0,-9.0,-9.0,4.0,1249098 -3098822,1630206385,2,90,0,1,1630084278,1,6.0,-9.0,-9.0,-9.0,2.0,1249099 -3098823,1630206383,2,85,1,2,1630084278,2,6.0,-9.0,-9.0,-9.0,4.0,1249099 -3098824,1630206929,2,69,0,1,1630084279,1,6.0,-9.0,-9.0,-9.0,2.0,1249100 -3098825,1630206928,2,61,12,2,1630084279,2,6.0,-9.0,-9.0,-9.0,4.0,1249100 -3098826,1630206290,2,65,0,1,1630084280,2,6.0,-9.0,-9.0,-9.0,4.0,1249101 -3098827,1630206294,2,45,2,2,1630084280,1,3.0,15.0,6.0,-9.0,4.0,1249101 -3098828,1630206291,2,65,0,1,1630084281,2,6.0,-9.0,-9.0,-9.0,4.0,1249102 -3098829,1630206295,2,45,2,2,1630084281,1,3.0,15.0,6.0,-9.0,4.0,1249102 -3098830,1630206267,2,76,0,1,1630084282,1,6.0,-9.0,-9.0,-9.0,2.0,1249103 -3098831,1630206265,2,68,1,2,1630084282,2,6.0,-9.0,-9.0,-9.0,4.0,1249103 -3098832,1630206292,2,65,0,1,1630084283,2,6.0,-9.0,-9.0,-9.0,4.0,1249104 -3098833,1630206296,2,45,2,2,1630084283,1,3.0,15.0,6.0,-9.0,4.0,1249104 -3098834,1630206364,2,72,0,1,1630084284,2,6.0,-9.0,-9.0,-9.0,4.0,1249105 -3098835,1630206367,2,71,12,2,1630084284,1,6.0,-9.0,-9.0,-9.0,4.0,1249105 -3098836,1630206443,1,77,0,1,1630084285,1,6.0,-9.0,-9.0,-9.0,4.0,1249106 -3098837,1630206441,1,55,15,2,1630084285,2,6.0,-9.0,-9.0,-9.0,4.0,1249106 -3098838,1630206444,1,77,0,1,1630084286,1,6.0,-9.0,-9.0,-9.0,4.0,1249107 -3098839,1630206442,1,55,15,2,1630084286,2,6.0,-9.0,-9.0,-9.0,4.0,1249107 -3098840,1630206386,2,81,0,1,1630084287,2,6.0,-9.0,-9.0,-9.0,4.0,1249108 -3098841,1630206388,2,55,2,2,1630084287,2,6.0,-9.0,-9.0,-9.0,2.0,1249108 -3098842,1630206974,2,66,0,1,1630084288,1,6.0,-9.0,-9.0,-9.0,2.0,1249109 -3098843,1630206973,2,63,1,2,1630084288,2,6.0,-9.0,-9.0,-9.0,4.0,1249109 -3098844,1630206368,2,73,0,1,1630084289,2,6.0,-9.0,-9.0,-9.0,4.0,1249110 -3098845,1630206369,2,39,2,2,1630084289,2,6.0,-9.0,-9.0,-9.0,4.0,1249110 -3098846,1630206387,2,81,0,1,1630084290,2,6.0,-9.0,-9.0,-9.0,4.0,1249111 -3098847,1630206389,2,55,2,2,1630084290,2,6.0,-9.0,-9.0,-9.0,2.0,1249111 -3098848,1630206282,2,84,0,1,1630084291,2,6.0,-9.0,-9.0,-9.0,4.0,1249112 -3098849,1630206284,2,49,2,2,1630084291,1,6.0,-9.0,-9.0,-9.0,4.0,1249112 -3098850,1630206283,2,84,0,1,1630084292,2,6.0,-9.0,-9.0,-9.0,4.0,1249113 -3098851,1630206285,2,49,2,2,1630084292,1,6.0,-9.0,-9.0,-9.0,4.0,1249113 -3098852,1630207281,2,68,0,1,1630084293,1,1.0,40.0,1.0,-9.0,2.0,1249114 -3098853,1630206758,2,22,0,1,1630084294,2,6.0,40.0,1.0,-9.0,4.0,1249115 -3098854,1630207153,2,19,0,1,1630084295,1,3.0,-9.0,-9.0,-9.0,4.0,1249116 -3098855,1630207072,2,23,0,1,1630084296,1,6.0,-9.0,-9.0,-9.0,4.0,1249117 -3098856,1630206684,1,22,0,1,1630084297,1,6.0,28.0,4.0,16.0,4.0,1249118 -3098857,1630206544,1,24,0,1,1630084298,2,6.0,-9.0,-9.0,16.0,4.0,1249119 -3098858,1630206590,1,24,0,1,1630084299,1,3.0,20.0,5.0,-9.0,4.0,1249120 -3098859,1630206685,1,22,0,1,1630084300,1,6.0,28.0,4.0,16.0,4.0,1249121 -3098860,1630207049,2,23,0,1,1630084301,2,6.0,-9.0,-9.0,-9.0,4.0,1249122 -3098861,1630206587,1,24,0,1,1630084302,1,6.0,24.0,3.0,16.0,4.0,1249123 -3098862,1630206652,1,20,0,1,1630084303,1,6.0,35.0,5.0,15.0,4.0,1249124 -3098863,1630206588,1,24,0,1,1630084304,1,6.0,24.0,3.0,16.0,4.0,1249125 -3098864,1630206496,1,24,0,1,1630084305,2,6.0,-9.0,-9.0,16.0,4.0,1249126 -3098865,1630206549,1,24,0,1,1630084306,1,6.0,-9.0,-9.0,15.0,4.0,1249127 -3098866,1630206589,1,24,0,1,1630084307,1,6.0,24.0,3.0,16.0,4.0,1249128 -3098867,1630206653,1,20,0,1,1630084308,1,6.0,35.0,5.0,15.0,4.0,1249129 -3098868,1630207333,4,23,0,1,1630084309,2,6.0,-9.0,-9.0,16.0,4.0,1249130 -3098869,1630207335,4,24,15,2,1630084309,2,6.0,-9.0,-9.0,16.0,4.0,1249130 -3098870,1630207331,4,24,15,3,1630084309,2,6.0,-9.0,-9.0,16.0,4.0,1249130 -3098871,1630206515,1,21,0,1,1630084310,2,6.0,10.0,5.0,16.0,4.0,1249131 -3098872,1630206517,1,20,12,2,1630084310,2,6.0,20.0,4.0,15.0,4.0,1249131 -3098873,1630206516,1,21,0,1,1630084311,2,6.0,10.0,5.0,16.0,4.0,1249132 -3098874,1630206518,1,20,12,2,1630084311,2,6.0,20.0,4.0,15.0,4.0,1249132 -3098875,1630206668,1,22,0,1,1630084312,1,6.0,-9.0,-9.0,15.0,4.0,1249133 -3098876,1630206669,1,24,11,2,1630084312,1,3.0,-9.0,-9.0,15.0,4.0,1249133 -3098877,1630206504,1,24,0,1,1630084313,2,6.0,8.0,6.0,16.0,4.0,1249134 -3098878,1630206506,4,24,12,2,1630084313,2,6.0,-9.0,-9.0,16.0,4.0,1249134 -3098879,1630207245,2,22,0,1,1630084314,1,1.0,20.0,6.0,-9.0,4.0,1249135 -3098880,1630207227,2,19,0,1,1630084315,1,1.0,50.0,1.0,-9.0,4.0,1249136 -3098881,1630206661,1,22,0,1,1630084316,1,1.0,15.0,1.0,15.0,4.0,1249137 -3098882,1630207381,4,22,0,1,1630084317,2,1.0,25.0,1.0,15.0,4.0,1249138 -3098883,1630206615,1,24,0,1,1630084318,1,2.0,10.0,1.0,15.0,4.0,1249139 -3098884,1630206556,1,22,0,1,1630084319,1,1.0,40.0,3.0,-9.0,4.0,1249140 -3098885,1630206533,1,20,0,1,1630084320,2,6.0,15.0,6.0,15.0,4.0,1249141 -3098886,1630206534,1,19,12,2,1630084320,2,1.0,30.0,1.0,15.0,4.0,1249141 -3098887,1630206405,1,22,0,1,1630084321,2,1.0,30.0,4.0,-9.0,4.0,1249142 -3098888,1630206406,1,27,13,2,1630084321,1,1.0,40.0,3.0,-9.0,4.0,1249142 -3098889,1630207134,2,41,0,1,1630084322,1,3.0,50.0,4.0,-9.0,4.0,1249143 -3098890,1630207417,4,23,0,1,1630084323,1,1.0,80.0,1.0,-9.0,4.0,1249144 -3098891,1630206581,1,24,0,1,1630084324,1,1.0,55.0,1.0,-9.0,4.0,1249145 -3098892,1630206888,2,26,0,1,1630084325,2,1.0,35.0,5.0,-9.0,4.0,1249146 -3098893,1630206889,2,3,2,2,1630084325,2,-9.0,-9.0,-9.0,-9.0,-9.0,1249146 -3098894,1630206862,2,63,0,1,1630084326,2,6.0,-9.0,-9.0,-9.0,4.0,1249147 -3098895,1630206863,2,47,2,2,1630084326,1,6.0,-9.0,-9.0,-9.0,4.0,1249147 -3098896,1630206785,2,45,0,1,1630084327,2,6.0,-9.0,-9.0,-9.0,4.0,1249148 -3098897,1630206786,2,27,2,2,1630084327,2,6.0,-9.0,-9.0,-9.0,4.0,1249148 -3098898,1630206787,2,35,12,3,1630084327,1,6.0,40.0,6.0,-9.0,4.0,1249148 -3098899,1630207174,2,33,0,1,1630084328,1,1.0,10.0,6.0,-9.0,4.0,1249149 -3098900,1630207334,4,23,0,1,1630084329,2,6.0,-9.0,-9.0,16.0,4.0,1249150 -3098901,1630207336,4,24,15,2,1630084329,2,6.0,-9.0,-9.0,16.0,4.0,1249150 -3098902,1630207332,4,24,15,3,1630084329,2,6.0,-9.0,-9.0,16.0,4.0,1249150 -3098903,1630206413,1,24,0,1,1630084330,2,1.0,40.0,1.0,-9.0,4.0,1249151 -3098904,1630206414,1,26,1,2,1630084330,1,6.0,40.0,6.0,16.0,4.0,1249151 -3098905,1630206477,1,23,0,1,1630084331,1,1.0,35.0,1.0,16.0,4.0,1249152 -3098906,1630206478,4,22,11,2,1630084331,2,1.0,35.0,1.0,-9.0,4.0,1249152 -3098907,1630206476,1,22,11,3,1630084331,2,1.0,25.0,4.0,15.0,4.0,1249152 -3098908,1630206892,2,26,0,1,1630084332,2,1.0,40.0,1.0,-9.0,4.0,1249153 -3098909,1630207275,2,72,0,1,1630084333,1,1.0,30.0,1.0,-9.0,4.0,1249154 -3098910,1630206617,1,24,0,1,1630084334,1,1.0,40.0,1.0,-9.0,4.0,1249155 -3098911,1630206618,1,24,12,2,1630084334,1,1.0,40.0,1.0,-9.0,4.0,1249155 -3098912,1630207040,2,55,0,1,1630084335,2,2.0,40.0,4.0,-9.0,4.0,1249156 -3098913,1630206686,1,21,0,1,1630084336,1,1.0,20.0,3.0,15.0,4.0,1249157 -3098914,1630206687,1,22,12,2,1630084336,1,6.0,-9.0,-9.0,15.0,4.0,1249157 -3098915,1630206688,1,21,12,3,1630084336,1,6.0,20.0,5.0,15.0,4.0,1249157 -3098916,1630207073,2,23,0,1,1630084337,1,6.0,-9.0,-9.0,-9.0,4.0,1249158 -3098917,1630206594,1,87,0,1,1630084338,1,6.0,-9.0,-9.0,-9.0,2.0,1249159 -3098918,1630206592,1,51,12,2,1630084338,1,6.0,-9.0,-9.0,-9.0,4.0,1249159 -3098919,1630206578,1,19,0,1,1630084339,1,6.0,-9.0,-9.0,15.0,4.0,1249160 -3098920,1630206579,1,19,12,2,1630084339,1,1.0,30.0,1.0,15.0,4.0,1249160 -3098921,1630206580,1,19,12,3,1630084339,1,6.0,-9.0,-9.0,15.0,4.0,1249160 -3098922,1630206500,1,62,0,1,1630084340,1,1.0,20.0,6.0,-9.0,2.0,1249161 -3098923,1630206499,1,51,13,2,1630084340,2,6.0,-9.0,-9.0,-9.0,4.0,1249161 -3098924,1630206348,2,73,0,1,1630084341,2,6.0,-9.0,-9.0,-9.0,4.0,1249162 -3098925,1630206341,2,69,0,1,1630084342,2,1.0,37.0,1.0,-9.0,4.0,1249163 -3098926,1630206270,2,65,0,1,1630084343,2,6.0,-9.0,-9.0,-9.0,4.0,1249164 -3098927,1630206271,2,65,1,2,1630084343,1,6.0,-9.0,-9.0,-9.0,4.0,1249164 -3098928,1630207249,2,42,0,1,1630084344,1,2.0,60.0,1.0,-9.0,2.0,1249165 -3098929,1630206250,2,65,0,1,1630084345,2,6.0,-9.0,-9.0,-9.0,4.0,1249166 -3098930,1630206252,2,68,1,2,1630084345,1,6.0,-9.0,-9.0,-9.0,4.0,1249166 -3098931,1630206251,2,23,4,3,1630084345,2,6.0,-9.0,-9.0,-9.0,4.0,1249166 -3098932,1630206471,1,27,0,1,1630084346,2,6.0,-9.0,-9.0,16.0,4.0,1249167 -3098933,1630206475,4,26,12,2,1630084346,2,6.0,-9.0,-9.0,16.0,4.0,1249167 -3098934,1630206473,1,25,12,3,1630084346,2,6.0,-9.0,-9.0,16.0,4.0,1249167 -3098935,1630207408,4,63,0,1,1630084347,1,1.0,40.0,1.0,-9.0,4.0,1249168 -3098936,1630206801,2,62,0,1,1630084348,2,1.0,40.0,1.0,-9.0,4.0,1249169 -3098937,1630206802,2,63,1,2,1630084348,1,6.0,-9.0,-9.0,-9.0,4.0,1249169 -3098938,1630206935,2,31,0,1,1630084349,2,1.0,40.0,1.0,-9.0,4.0,1249170 -3098939,1630206939,2,30,10,2,1630084349,1,6.0,-9.0,-9.0,-9.0,4.0,1249170 -3098940,1630207110,2,24,0,1,1630084350,1,1.0,40.0,1.0,-9.0,4.0,1249171 -3098941,1630206611,1,28,0,1,1630084351,1,1.0,70.0,1.0,-9.0,4.0,1249172 -3098942,1630206612,1,25,12,2,1630084351,1,1.0,45.0,1.0,-9.0,2.0,1249172 -3098943,1630206545,1,24,0,1,1630084352,1,1.0,45.0,1.0,-9.0,4.0,1249173 -3098944,1630206485,1,43,0,1,1630084353,2,6.0,-9.0,-9.0,-9.0,4.0,1249174 -3098945,1630206486,1,52,13,2,1630084353,1,1.0,25.0,1.0,-9.0,4.0,1249174 -3098946,1630207142,2,54,0,1,1630084354,1,1.0,25.0,1.0,-9.0,4.0,1249175 -3098947,1630206708,2,45,0,1,1630084355,2,1.0,13.0,5.0,-9.0,4.0,1249176 -3098948,1630206709,2,22,2,2,1630084355,2,6.0,-9.0,-9.0,15.0,4.0,1249176 -3098949,1630206710,2,22,2,3,1630084355,1,6.0,-9.0,-9.0,14.0,4.0,1249176 -3098950,1630206543,1,66,0,1,1630084356,1,1.0,50.0,6.0,-9.0,2.0,1249177 -3098951,1630206541,1,51,1,2,1630084356,2,6.0,-9.0,-9.0,-9.0,4.0,1249177 -3098952,1630206542,1,55,5,3,1630084356,1,6.0,-9.0,-9.0,-9.0,4.0,1249177 -3098953,1630207044,2,43,0,1,1630084357,2,1.0,40.0,1.0,15.0,4.0,1249178 -3098954,1630207045,2,19,2,2,1630084357,1,3.0,36.0,6.0,15.0,4.0,1249178 -3098955,1630206729,2,26,0,1,1630084358,2,1.0,40.0,1.0,-9.0,4.0,1249179 -3098956,1630206532,1,37,0,1,1630084359,1,1.0,50.0,1.0,16.0,4.0,1249180 -3098957,1630206529,1,49,1,2,1630084359,2,1.0,30.0,1.0,-9.0,4.0,1249180 -3098958,1630206464,1,29,0,1,1630084360,2,1.0,45.0,1.0,-9.0,4.0,1249181 -3098959,1630206465,1,29,1,2,1630084360,1,6.0,45.0,6.0,16.0,4.0,1249181 -3098960,1630206519,1,26,0,1,1630084361,2,1.0,35.0,1.0,-9.0,4.0,1249182 -3098961,1630206521,1,26,12,2,1630084361,1,1.0,40.0,1.0,-9.0,4.0,1249182 -3098962,1630206520,1,21,12,3,1630084361,2,1.0,35.0,1.0,15.0,4.0,1249182 -3098963,1630206375,2,41,0,1,1630084362,2,1.0,40.0,1.0,-9.0,4.0,1249183 -3098964,1630206374,2,71,6,2,1630084362,2,6.0,-9.0,-9.0,-9.0,4.0,1249183 -3098965,1630207061,2,44,0,1,1630084363,1,1.0,40.0,1.0,-9.0,4.0,1249184 -3098966,1630207062,2,25,10,2,1630084363,1,1.0,40.0,1.0,-9.0,4.0,1249184 -3098967,1630207254,4,70,0,1,1630084364,2,6.0,-9.0,-9.0,-9.0,4.0,1249185 -3098968,1630206799,2,37,0,1,1630084365,2,6.0,-9.0,-9.0,-9.0,4.0,1249186 -3098969,1630206800,2,13,2,2,1630084365,2,-9.0,-9.0,-9.0,9.0,-9.0,1249186 -3098970,1630207450,4,51,0,1,1630084366,1,1.0,70.0,1.0,16.0,4.0,1249187 -3098971,1630206582,1,24,0,1,1630084367,1,3.0,47.0,3.0,15.0,4.0,1249188 -3098972,1630206775,2,32,0,1,1630084368,2,6.0,-9.0,-9.0,16.0,4.0,1249189 -3098973,1630206690,2,40,0,1,1630084369,2,1.0,40.0,1.0,-9.0,4.0,1249190 -3098974,1630206691,2,52,1,2,1630084369,1,1.0,40.0,1.0,-9.0,4.0,1249190 -3098975,1630206466,1,20,0,1,1630084370,2,1.0,30.0,3.0,15.0,4.0,1249191 -3098976,1630206467,1,21,12,2,1630084370,2,6.0,30.0,4.0,15.0,4.0,1249191 -3098977,1630206857,2,59,0,1,1630084371,2,6.0,-9.0,-9.0,15.0,4.0,1249192 -3098978,1630206859,2,75,1,2,1630084371,1,6.0,-9.0,-9.0,-9.0,4.0,1249192 -3098979,1630206858,2,39,2,3,1630084371,2,3.0,-9.0,-9.0,15.0,4.0,1249192 -3098980,1630207405,4,44,0,1,1630084372,1,1.0,55.0,1.0,-9.0,4.0,1249193 -3098981,1630206822,2,54,0,1,1630084373,2,6.0,-9.0,-9.0,-9.0,4.0,1249194 -3098982,1630206823,2,17,2,2,1630084373,2,6.0,-9.0,-9.0,13.0,4.0,1249194 -3098983,1630207241,2,50,0,1,1630084374,1,6.0,-9.0,-9.0,-9.0,4.0,1249195 -3098984,1630206992,2,28,0,1,1630084375,2,6.0,40.0,1.0,15.0,4.0,1249196 -3098985,1630206993,2,23,5,2,1630084375,2,6.0,-9.0,-9.0,-9.0,4.0,1249196 -3098986,1630207194,3,44,0,1,1630084376,1,3.0,-9.0,-9.0,-9.0,4.0,1249197 -3098987,1630206676,3,48,0,1,1630084377,1,6.0,-9.0,-9.0,-9.0,4.0,1249198 -3098988,1630206677,3,47,5,2,1630084377,1,6.0,-9.0,-9.0,-9.0,4.0,1249198 -3098989,1630207127,2,21,0,1,1630084378,1,1.0,48.0,1.0,-9.0,4.0,1249199 -3098990,1630207128,2,24,15,2,1630084378,1,6.0,-9.0,-9.0,-9.0,4.0,1249199 -3098991,1630207411,4,26,0,1,1630084379,1,1.0,60.0,3.0,-9.0,4.0,1249200 -3098992,1630206495,1,27,0,1,1630084380,2,6.0,37.0,5.0,16.0,4.0,1249201 -3098993,1630207370,4,30,0,1,1630084381,1,1.0,60.0,1.0,16.0,4.0,1249202 -3098994,1630207367,4,33,1,2,1630084381,2,1.0,60.0,1.0,16.0,4.0,1249202 -3098995,1630207344,1,66,0,1,1630084382,1,6.0,-9.0,-9.0,-9.0,2.0,1249203 -3098996,1630207215,2,45,0,1,1630084383,1,1.0,50.0,1.0,-9.0,2.0,1249204 -3098997,1630207216,2,19,2,2,1630084383,1,1.0,40.0,5.0,15.0,4.0,1249204 -3098998,1630206717,2,36,0,1,1630084384,2,6.0,-9.0,-9.0,-9.0,4.0,1249205 -3098999,1630206718,2,16,2,2,1630084384,2,6.0,-9.0,-9.0,13.0,-9.0,1249205 -3099000,1630206719,2,9,2,3,1630084384,2,-9.0,-9.0,-9.0,6.0,-9.0,1249205 -3099001,1630206275,2,71,0,1,1630084385,2,6.0,-9.0,-9.0,-9.0,4.0,1249206 -3099002,1630206276,2,52,15,2,1630084385,2,1.0,28.0,1.0,-9.0,4.0,1249206 -3099003,1630206673,1,38,0,1,1630084386,1,1.0,40.0,1.0,-9.0,4.0,1249207 -3099004,1630206675,1,42,12,2,1630084386,1,1.0,40.0,1.0,-9.0,4.0,1249207 -3099005,1630206416,1,27,0,1,1630084387,2,1.0,20.0,1.0,16.0,4.0,1249208 -3099006,1630206418,1,26,1,2,1630084387,1,3.0,-9.0,-9.0,16.0,4.0,1249208 -3099007,1630206422,1,51,0,1,1630084388,2,6.0,-9.0,-9.0,-9.0,4.0,1249209 -3099008,1630206424,1,44,12,2,1630084388,1,3.0,15.0,6.0,-9.0,4.0,1249209 -3099009,1630206839,2,42,0,1,1630084389,2,1.0,52.0,1.0,-9.0,2.0,1249210 -3099010,1630206840,2,46,13,2,1630084389,2,1.0,30.0,4.0,-9.0,4.0,1249210 -3099011,1630206660,3,30,0,1,1630084390,1,1.0,45.0,1.0,-9.0,4.0,1249211 -3099012,1630207426,4,26,0,1,1630084391,1,6.0,-9.0,-9.0,16.0,4.0,1249212 -3099013,1630207393,4,27,0,1,1630084392,1,1.0,80.0,1.0,-9.0,4.0,1249213 -3099014,1630207385,4,26,1,2,1630084392,2,1.0,80.0,3.0,-9.0,4.0,1249213 -3099015,1630207389,4,19,5,3,1630084392,2,6.0,-9.0,-9.0,15.0,4.0,1249213 -3099016,1630207359,4,31,0,1,1630084393,1,6.0,-9.0,-9.0,-9.0,4.0,1249214 -3099017,1630207358,4,30,1,2,1630084393,2,1.0,20.0,1.0,16.0,4.0,1249214 -3099018,1630207360,4,2,2,3,1630084393,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249214 -3099019,1630207145,2,63,0,1,1630084394,1,6.0,-9.0,-9.0,-9.0,2.0,1249215 -3099020,1630206446,1,27,0,1,1630084395,1,1.0,50.0,1.0,-9.0,4.0,1249216 -3099021,1630206445,3,28,1,2,1630084395,2,6.0,45.0,4.0,-9.0,4.0,1249216 -3099022,1630207351,4,26,0,1,1630084396,2,6.0,-9.0,-9.0,-9.0,4.0,1249217 -3099023,1630207357,4,26,1,2,1630084396,1,1.0,40.0,1.0,16.0,4.0,1249217 -3099024,1630207345,1,68,0,1,1630084397,1,1.0,60.0,1.0,-9.0,4.0,1249218 -3099025,1630206659,1,50,0,1,1630084398,1,1.0,60.0,1.0,-9.0,4.0,1249219 -3099026,1630206808,2,24,0,1,1630084399,1,1.0,42.0,1.0,-9.0,4.0,1249220 -3099027,1630206807,2,24,1,2,1630084399,2,6.0,-9.0,-9.0,-9.0,4.0,1249220 -3099028,1630207159,4,33,0,1,1630084400,2,1.0,55.0,1.0,-9.0,4.0,1249221 -3099029,1630207158,2,34,13,2,1630084400,1,1.0,40.0,4.0,16.0,4.0,1249221 -3099030,1630206248,2,65,0,1,1630084401,2,6.0,30.0,5.0,-9.0,4.0,1249222 -3099031,1630206930,2,62,0,1,1630084402,2,3.0,40.0,6.0,-9.0,4.0,1249223 -3099032,1630206931,2,23,2,2,1630084402,2,1.0,23.0,5.0,-9.0,4.0,1249223 -3099033,1630206459,1,37,0,1,1630084403,1,1.0,33.0,1.0,-9.0,4.0,1249224 -3099034,1630206457,1,27,13,2,1630084403,2,6.0,40.0,5.0,-9.0,4.0,1249224 -3099035,1630206966,2,39,0,1,1630084404,2,6.0,27.0,1.0,-9.0,4.0,1249225 -3099036,1630206972,2,21,2,2,1630084404,1,6.0,-9.0,-9.0,-9.0,4.0,1249225 -3099037,1630206969,2,26,10,3,1630084404,2,6.0,-9.0,-9.0,-9.0,4.0,1249225 -3099038,1630206454,1,22,0,1,1630084405,2,2.0,40.0,1.0,16.0,4.0,1249226 -3099039,1630206455,1,27,13,2,1630084405,1,1.0,60.0,1.0,-9.0,4.0,1249226 -3099040,1630206493,1,32,0,1,1630084406,1,1.0,40.0,3.0,16.0,4.0,1249227 -3099041,1630206489,1,40,12,2,1630084406,2,1.0,40.0,1.0,16.0,4.0,1249227 -3099042,1630206491,1,30,13,3,1630084406,2,2.0,40.0,3.0,16.0,4.0,1249227 -3099043,1630207225,2,63,0,1,1630084407,1,6.0,-9.0,-9.0,-9.0,4.0,1249228 -3099044,1630206860,2,58,0,1,1630084408,2,3.0,-9.0,-9.0,-9.0,2.0,1249229 -3099045,1630206861,2,45,12,2,1630084408,2,1.0,40.0,1.0,-9.0,4.0,1249229 -3099046,1630207255,4,77,0,1,1630084409,2,6.0,-9.0,-9.0,-9.0,4.0,1249230 -3099047,1630207256,4,46,2,2,1630084409,2,6.0,-9.0,-9.0,-9.0,4.0,1249230 -3099048,1630206398,1,82,0,1,1630084410,1,1.0,48.0,1.0,-9.0,2.0,1249231 -3099049,1630206397,1,76,1,2,1630084410,2,1.0,48.0,1.0,-9.0,4.0,1249231 -3099050,1630206630,1,55,0,1,1630084411,1,1.0,50.0,1.0,-9.0,4.0,1249232 -3099051,1630206722,2,61,0,1,1630084412,2,1.0,25.0,1.0,-9.0,4.0,1249233 -3099052,1630206723,2,27,2,2,1630084412,1,1.0,2.0,1.0,-9.0,4.0,1249233 -3099053,1630206793,2,21,0,1,1630084413,2,3.0,-9.0,-9.0,-9.0,4.0,1249234 -3099054,1630206794,2,1,2,2,1630084413,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249234 -3099055,1630206299,2,85,0,1,1630084414,2,6.0,-9.0,-9.0,15.0,4.0,1249235 -3099056,1630206300,2,25,7,2,1630084414,2,1.0,45.0,1.0,-9.0,4.0,1249235 -3099057,1630207309,2,71,0,1,1630084415,1,6.0,-9.0,-9.0,-9.0,2.0,1249236 -3099058,1630206453,1,27,0,1,1630084416,1,6.0,-9.0,-9.0,16.0,4.0,1249237 -3099059,1630206451,1,24,1,2,1630084416,2,6.0,-9.0,-9.0,16.0,4.0,1249237 -3099060,1630207253,2,38,0,1,1630084417,1,6.0,-9.0,-9.0,-9.0,4.0,1249238 -3099061,1630207362,4,30,0,1,1630084418,2,1.0,44.0,1.0,-9.0,4.0,1249239 -3099062,1630207364,4,34,1,2,1630084418,1,1.0,40.0,2.0,-9.0,4.0,1249239 -3099063,1630206318,2,94,0,1,1630084419,2,6.0,-9.0,-9.0,-9.0,4.0,1249240 -3099064,1630206319,2,65,2,2,1630084419,2,6.0,-9.0,-9.0,-9.0,4.0,1249240 -3099065,1630206320,2,44,7,3,1630084419,2,1.0,20.0,1.0,15.0,4.0,1249240 -3099066,1630206557,1,22,0,1,1630084420,1,1.0,40.0,3.0,-9.0,4.0,1249241 -3099067,1630207286,2,72,0,1,1630084421,1,6.0,-9.0,-9.0,-9.0,4.0,1249242 -3099068,1630206870,2,57,0,1,1630084422,2,6.0,-9.0,-9.0,-9.0,4.0,1249243 -3099069,1630206871,2,60,5,2,1630084422,1,6.0,-9.0,-9.0,-9.0,4.0,1249243 -3099070,1630206919,2,26,0,1,1630084423,1,1.0,52.0,1.0,-9.0,4.0,1249244 -3099071,1630206917,2,22,1,2,1630084423,2,1.0,40.0,1.0,-9.0,4.0,1249244 -3099072,1630206395,1,72,0,1,1630084424,2,1.0,15.0,3.0,-9.0,4.0,1249245 -3099073,1630206540,1,27,0,1,1630084425,1,1.0,45.0,1.0,-9.0,4.0,1249246 -3099074,1630206539,1,28,1,2,1630084425,2,1.0,52.0,4.0,-9.0,4.0,1249246 -3099075,1630206622,1,24,0,1,1630084426,1,3.0,50.0,5.0,-9.0,4.0,1249247 -3099076,1630206577,1,29,0,1,1630084427,1,1.0,45.0,1.0,-9.0,4.0,1249248 -3099077,1630206984,2,35,0,1,1630084428,2,1.0,40.0,1.0,15.0,4.0,1249249 -3099078,1630206430,2,53,0,1,1630084429,1,1.0,40.0,1.0,-9.0,4.0,1249250 -3099079,1630206429,3,46,13,2,1630084429,2,6.0,-9.0,-9.0,-9.0,4.0,1249250 -3099080,1630206447,1,32,0,1,1630084430,2,3.0,-9.0,-9.0,-9.0,4.0,1249251 -3099081,1630206448,1,8,2,2,1630084430,1,-9.0,-9.0,-9.0,4.0,-9.0,1249251 -3099082,1630206449,1,6,2,3,1630084430,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249251 -3099083,1630206307,2,87,0,1,1630084431,2,6.0,-9.0,-9.0,-9.0,4.0,1249252 -3099084,1630206700,2,55,0,1,1630084432,2,1.0,40.0,1.0,-9.0,4.0,1249253 -3099085,1630206701,2,26,2,2,1630084432,1,3.0,1.0,6.0,15.0,4.0,1249253 -3099086,1630206702,2,19,2,3,1630084432,1,6.0,-9.0,-9.0,15.0,4.0,1249253 -3099087,1630206771,2,24,0,1,1630084433,2,3.0,-9.0,-9.0,15.0,4.0,1249254 -3099088,1630206773,2,24,1,2,1630084433,1,6.0,-9.0,-9.0,15.0,4.0,1249254 -3099089,1630206772,2,59,6,3,1630084433,2,1.0,25.0,1.0,-9.0,4.0,1249254 -3099090,1630206509,1,36,0,1,1630084434,2,1.0,80.0,1.0,-9.0,4.0,1249255 -3099091,1630207032,3,35,0,1,1630084435,2,3.0,30.0,5.0,-9.0,4.0,1249256 -3099092,1630206436,1,58,0,1,1630084436,2,1.0,40.0,1.0,-9.0,4.0,1249257 -3099093,1630206981,2,39,0,1,1630084437,2,6.0,-9.0,-9.0,-9.0,4.0,1249258 -3099094,1630206982,2,22,2,2,1630084437,2,1.0,40.0,1.0,-9.0,4.0,1249258 -3099095,1630206983,2,9,2,3,1630084437,1,-9.0,-9.0,-9.0,4.0,-9.0,1249258 -3099096,1630206770,2,69,0,1,1630084438,1,6.0,-9.0,-9.0,-9.0,2.0,1249259 -3099097,1630206769,2,63,1,2,1630084438,2,6.0,-9.0,-9.0,-9.0,4.0,1249259 -3099098,1630207107,2,58,0,1,1630084439,1,6.0,-9.0,-9.0,-9.0,4.0,1249260 -3099099,1630206697,2,55,0,1,1630084440,1,1.0,20.0,5.0,-9.0,4.0,1249261 -3099100,1630206699,2,19,2,2,1630084440,1,3.0,-9.0,-9.0,-9.0,4.0,1249261 -3099101,1630206695,2,51,10,3,1630084440,2,6.0,-9.0,-9.0,-9.0,4.0,1249261 -3099102,1630207246,2,27,0,1,1630084441,1,6.0,-9.0,-9.0,-9.0,2.0,1249262 -3099103,1630207267,2,73,0,1,1630084442,1,6.0,-9.0,-9.0,-9.0,4.0,1249263 -3099104,1630206641,1,62,0,1,1630084443,1,1.0,31.0,1.0,-9.0,4.0,1249264 -3099105,1630206574,1,20,0,1,1630084444,1,1.0,40.0,5.0,15.0,4.0,1249265 -3099106,1630207131,2,29,0,1,1630084445,1,1.0,40.0,1.0,15.0,3.0,1249266 -3099107,1630207132,2,7,2,2,1630084445,2,-9.0,-9.0,-9.0,3.0,-9.0,1249266 -3099108,1630206437,3,61,0,1,1630084446,2,6.0,-9.0,-9.0,-9.0,4.0,1249267 -3099109,1630207183,2,23,0,1,1630084447,1,1.0,40.0,3.0,-9.0,4.0,1249268 -3099110,1630206323,2,86,0,1,1630084448,2,6.0,-9.0,-9.0,-9.0,4.0,1249269 -3099111,1630206324,2,62,2,2,1630084448,2,1.0,15.0,3.0,-9.0,4.0,1249269 -3099112,1630206325,2,47,2,3,1630084448,1,3.0,8.0,1.0,-9.0,4.0,1249269 -3099113,1630206333,2,72,0,1,1630084449,2,6.0,-9.0,-9.0,-9.0,4.0,1249270 -3099114,1630206334,2,41,2,2,1630084449,1,1.0,40.0,1.0,-9.0,4.0,1249270 -3099115,1630206913,2,42,0,1,1630084450,2,1.0,25.0,1.0,-9.0,4.0,1249271 -3099116,1630206914,2,18,2,2,1630084450,1,6.0,-9.0,-9.0,10.0,4.0,1249271 -3099117,1630206607,1,40,0,1,1630084451,1,1.0,50.0,1.0,-9.0,4.0,1249272 -3099118,1630206277,2,87,0,1,1630084452,2,6.0,-9.0,-9.0,-9.0,4.0,1249273 -3099119,1630206851,2,69,0,1,1630084453,1,6.0,12.0,6.0,-9.0,2.0,1249274 -3099120,1630206850,2,61,1,2,1630084453,2,1.0,45.0,1.0,-9.0,4.0,1249274 -3099121,1630207374,4,28,0,1,1630084454,1,6.0,-9.0,-9.0,15.0,4.0,1249275 -3099122,1630207373,4,31,1,2,1630084454,2,1.0,40.0,1.0,16.0,4.0,1249275 -3099123,1630207375,4,1,2,3,1630084454,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249275 -3099124,1630206337,2,71,0,1,1630084455,2,6.0,-9.0,-9.0,-9.0,4.0,1249276 -3099125,1630206338,2,53,2,2,1630084455,1,1.0,60.0,1.0,-9.0,4.0,1249276 -3099126,1630206339,2,51,2,3,1630084455,1,1.0,40.0,1.0,-9.0,4.0,1249276 -3099127,1630206662,1,29,0,1,1630084456,1,1.0,50.0,1.0,16.0,4.0,1249277 -3099128,1630206663,1,34,12,2,1630084456,1,1.0,40.0,1.0,16.0,4.0,1249277 -3099129,1630206505,1,24,0,1,1630084457,2,6.0,8.0,6.0,16.0,4.0,1249278 -3099130,1630206507,4,24,12,2,1630084457,2,6.0,-9.0,-9.0,16.0,4.0,1249278 -3099131,1630206627,2,24,0,1,1630084458,1,1.0,20.0,1.0,15.0,4.0,1249279 -3099132,1630206626,1,19,12,2,1630084458,1,3.0,56.0,6.0,15.0,4.0,1249279 -3099133,1630207329,4,25,0,1,1630084459,1,1.0,30.0,1.0,-9.0,4.0,1249280 -3099134,1630207666,2,43,0,1,1630084460,2,1.0,40.0,1.0,-9.0,2.0,1249281 -3099135,1630207667,2,11,2,2,1630084460,1,-9.0,-9.0,-9.0,8.0,-9.0,1249281 -3099136,1630207802,4,27,0,1,1630084461,1,1.0,40.0,1.0,-9.0,4.0,1249282 -3099137,1630207672,2,28,0,1,1630084462,2,1.0,40.0,1.0,-9.0,4.0,1249283 -3099138,1630207574,2,34,0,1,1630084463,2,1.0,48.0,1.0,-9.0,4.0,1249284 -3099139,1630207632,2,42,0,1,1630084464,2,1.0,40.0,1.0,-9.0,4.0,1249285 -3099140,1630207633,2,7,2,2,1630084464,2,-9.0,-9.0,-9.0,4.0,-9.0,1249285 -3099141,1630207668,2,38,0,1,1630084465,2,1.0,36.0,1.0,-9.0,4.0,1249286 -3099142,1630207669,2,4,2,2,1630084465,2,-9.0,-9.0,-9.0,1.0,-9.0,1249286 -3099143,1630207709,2,44,0,1,1630084466,1,6.0,-9.0,-9.0,-9.0,4.0,1249287 -3099144,1630207581,2,33,0,1,1630084467,2,3.0,-9.0,-9.0,-9.0,4.0,1249288 -3099145,1630207638,2,41,0,1,1630084468,2,6.0,-9.0,-9.0,-9.0,4.0,1249289 -3099146,1630207640,2,8,2,2,1630084468,1,-9.0,-9.0,-9.0,4.0,-9.0,1249289 -3099147,1630207639,2,41,0,1,1630084469,2,6.0,-9.0,-9.0,-9.0,4.0,1249290 -3099148,1630207641,2,8,2,2,1630084469,1,-9.0,-9.0,-9.0,4.0,-9.0,1249290 -3099149,1630207550,2,37,0,1,1630084470,2,6.0,-9.0,-9.0,-9.0,4.0,1249291 -3099150,1630207551,2,4,2,2,1630084470,1,-9.0,-9.0,-9.0,1.0,-9.0,1249291 -3099151,1630207689,2,28,0,1,1630084471,2,3.0,-9.0,-9.0,-9.0,4.0,1249292 -3099152,1630207690,2,4,2,2,1630084471,2,-9.0,-9.0,-9.0,-9.0,-9.0,1249292 -3099153,1630207644,2,32,0,1,1630084472,2,1.0,40.0,1.0,-9.0,4.0,1249293 -3099154,1630207645,2,6,2,2,1630084472,2,-9.0,-9.0,-9.0,3.0,-9.0,1249293 -3099155,1630207765,2,58,0,1,1630084473,1,6.0,-9.0,-9.0,-9.0,4.0,1249294 -3099156,1630207564,2,60,0,1,1630084474,2,6.0,-9.0,-9.0,-9.0,4.0,1249295 -3099157,1630207567,2,64,0,1,1630084475,2,6.0,-9.0,-9.0,-9.0,4.0,1249296 -3099158,1630207576,2,59,0,1,1630084476,2,1.0,40.0,4.0,-9.0,4.0,1249297 -3099159,1630207726,2,47,0,1,1630084477,1,1.0,40.0,1.0,-9.0,4.0,1249298 -3099160,1630207636,2,58,0,1,1630084478,2,1.0,40.0,1.0,-9.0,4.0,1249299 -3099161,1630207804,4,51,0,1,1630084479,1,1.0,70.0,1.0,16.0,4.0,1249300 -3099162,1630207749,2,60,0,1,1630084480,1,1.0,40.0,1.0,-9.0,4.0,1249301 -3099163,1630207610,2,62,0,1,1630084481,2,1.0,40.0,1.0,-9.0,4.0,1249302 -3099164,1630207558,2,55,0,1,1630084482,2,1.0,40.0,1.0,-9.0,4.0,1249303 -3099165,1630207563,2,60,0,1,1630084483,2,1.0,40.0,1.0,-9.0,4.0,1249304 -3099166,1630207707,2,46,0,1,1630084484,1,1.0,45.0,1.0,-9.0,4.0,1249305 -3099167,1630207649,2,50,0,1,1630084485,2,1.0,40.0,1.0,-9.0,4.0,1249306 -3099168,1630207611,2,62,0,1,1630084486,2,1.0,40.0,1.0,-9.0,4.0,1249307 -3099169,1630207693,2,56,0,1,1630084487,2,1.0,40.0,1.0,-9.0,4.0,1249308 -3099170,1630207612,2,62,0,1,1630084488,2,1.0,40.0,1.0,-9.0,4.0,1249309 -3099171,1630207671,2,59,0,1,1630084489,2,1.0,40.0,1.0,-9.0,4.0,1249310 -3099172,1630207741,2,60,0,1,1630084490,1,6.0,-9.0,-9.0,-9.0,4.0,1249311 -3099173,1630207742,2,58,5,2,1630084490,1,1.0,40.0,1.0,-9.0,2.0,1249311 -3099174,1630207593,2,50,0,1,1630084491,2,1.0,40.0,1.0,-9.0,4.0,1249312 -3099175,1630207595,2,11,2,2,1630084491,2,-9.0,-9.0,-9.0,9.0,-9.0,1249312 -3099176,1630207608,2,63,0,1,1630084492,2,1.0,40.0,1.0,-9.0,4.0,1249313 -3099177,1630207609,2,17,7,2,1630084492,2,6.0,-9.0,-9.0,13.0,4.0,1249313 -3099178,1630207579,2,46,0,1,1630084493,2,1.0,40.0,1.0,15.0,4.0,1249314 -3099179,1630207580,2,16,2,2,1630084493,2,6.0,4.0,6.0,13.0,-9.0,1249314 -3099180,1630207541,2,59,0,1,1630084494,2,1.0,30.0,6.0,-9.0,4.0,1249315 -3099181,1630207542,2,58,1,2,1630084494,1,1.0,48.0,1.0,-9.0,4.0,1249315 -3099182,1630207803,4,45,0,1,1630084495,1,1.0,36.0,1.0,-9.0,4.0,1249316 -3099183,1630207727,2,62,0,1,1630084496,1,1.0,50.0,1.0,-9.0,2.0,1249317 -3099184,1630207758,2,45,0,1,1630084497,1,1.0,50.0,1.0,-9.0,2.0,1249318 -3099185,1630207759,2,19,2,2,1630084497,1,1.0,40.0,5.0,15.0,4.0,1249318 -3099186,1630207613,2,50,0,1,1630084498,2,1.0,40.0,1.0,-9.0,4.0,1249319 -3099187,1630207614,2,28,2,2,1630084498,2,1.0,35.0,1.0,-9.0,4.0,1249319 -3099188,1630207686,2,45,0,1,1630084499,2,6.0,-9.0,-9.0,-9.0,4.0,1249320 -3099189,1630207710,2,53,0,1,1630084500,1,6.0,-9.0,-9.0,-9.0,4.0,1249321 -3099190,1630207653,2,59,0,1,1630084501,2,6.0,-9.0,-9.0,-9.0,4.0,1249322 -3099191,1630207706,2,55,0,1,1630084502,1,6.0,-9.0,-9.0,-9.0,4.0,1249323 -3099192,1630207729,2,58,0,1,1630084503,1,6.0,-9.0,-9.0,-9.0,4.0,1249324 -3099193,1630207731,2,62,0,1,1630084504,1,6.0,30.0,4.0,-9.0,4.0,1249325 -3099194,1630207552,2,46,0,1,1630084505,2,3.0,40.0,6.0,-9.0,4.0,1249326 -3099195,1630207607,2,58,0,1,1630084506,2,6.0,-9.0,-9.0,-9.0,4.0,1249327 -3099196,1630207732,2,56,0,1,1630084507,1,6.0,-9.0,-9.0,-9.0,2.0,1249328 -3099197,1630207734,2,54,0,1,1630084508,1,6.0,-9.0,-9.0,-9.0,4.0,1249329 -3099198,1630207626,2,62,0,1,1630084509,2,6.0,-9.0,-9.0,-9.0,4.0,1249330 -3099199,1630207652,2,60,0,1,1630084510,2,6.0,-9.0,-9.0,-9.0,4.0,1249331 -3099200,1630207678,2,58,0,1,1630084511,2,6.0,-9.0,-9.0,-9.0,4.0,1249332 -3099201,1630207711,2,54,0,1,1630084512,1,6.0,20.0,4.0,-9.0,4.0,1249333 -3099202,1630207721,2,51,0,1,1630084513,1,6.0,-9.0,-9.0,-9.0,2.0,1249334 -3099203,1630207660,2,52,0,1,1630084514,2,6.0,-9.0,-9.0,-9.0,4.0,1249335 -3099204,1630207712,2,54,0,1,1630084515,1,6.0,20.0,4.0,-9.0,4.0,1249336 -3099205,1630207708,2,54,0,1,1630084516,1,6.0,-9.0,-9.0,-9.0,4.0,1249337 -3099206,1630207650,2,46,0,1,1630084517,2,6.0,-9.0,-9.0,-9.0,4.0,1249338 -3099207,1630207740,2,45,0,1,1630084518,1,6.0,-9.0,-9.0,-9.0,4.0,1249339 -3099208,1630207752,2,64,0,1,1630084519,1,6.0,-9.0,-9.0,-9.0,2.0,1249340 -3099209,1630207713,2,58,0,1,1630084520,1,6.0,-9.0,-9.0,-9.0,4.0,1249341 -3099210,1630207753,2,64,0,1,1630084521,1,6.0,-9.0,-9.0,-9.0,2.0,1249342 -3099211,1630207659,2,62,0,1,1630084522,2,6.0,-9.0,-9.0,-9.0,4.0,1249343 -3099212,1630207725,2,58,0,1,1630084523,1,6.0,-9.0,-9.0,-9.0,4.0,1249344 -3099213,1630207651,2,62,0,1,1630084524,2,6.0,-9.0,-9.0,-9.0,4.0,1249345 -3099214,1630207627,2,62,0,1,1630084525,2,6.0,-9.0,-9.0,-9.0,4.0,1249346 -3099215,1630207718,2,58,0,1,1630084526,1,6.0,-9.0,-9.0,-9.0,3.0,1249347 -3099216,1630207628,2,57,0,1,1630084527,2,6.0,-9.0,-9.0,-9.0,4.0,1249348 -3099217,1630207736,2,56,0,1,1630084528,1,3.0,-9.0,-9.0,-9.0,4.0,1249349 -3099218,1630207733,2,56,0,1,1630084529,1,6.0,-9.0,-9.0,-9.0,2.0,1249350 -3099219,1630207751,2,62,0,1,1630084530,1,6.0,-9.0,-9.0,-9.0,2.0,1249351 -3099220,1630207717,2,60,0,1,1630084531,1,6.0,-9.0,-9.0,-9.0,4.0,1249352 -3099221,1630207670,2,51,0,1,1630084532,2,6.0,-9.0,-9.0,-9.0,4.0,1249353 -3099222,1630207568,2,58,0,1,1630084533,2,6.0,-9.0,-9.0,-9.0,2.0,1249354 -3099223,1630207730,2,51,0,1,1630084534,1,6.0,-9.0,-9.0,-9.0,2.0,1249355 -3099224,1630207754,2,54,0,1,1630084535,1,6.0,-9.0,-9.0,-9.0,4.0,1249356 -3099225,1630207646,2,50,0,1,1630084536,2,6.0,-9.0,-9.0,-9.0,4.0,1249357 -3099226,1630207747,2,54,0,1,1630084537,1,6.0,-9.0,-9.0,-9.0,2.0,1249358 -3099227,1630207575,2,63,0,1,1630084538,2,6.0,-9.0,-9.0,-9.0,4.0,1249359 -3099228,1630207634,2,47,0,1,1630084539,2,6.0,-9.0,-9.0,-9.0,4.0,1249360 -3099229,1630207739,2,63,0,1,1630084540,1,6.0,-9.0,-9.0,-9.0,2.0,1249361 -3099230,1630207768,2,52,0,1,1630084541,1,6.0,-9.0,-9.0,-9.0,4.0,1249362 -3099231,1630207737,2,64,0,1,1630084542,1,6.0,-9.0,-9.0,-9.0,4.0,1249363 -3099232,1630207694,2,58,0,1,1630084543,2,6.0,-9.0,-9.0,-9.0,4.0,1249364 -3099233,1630207559,2,53,0,1,1630084544,2,6.0,-9.0,-9.0,-9.0,4.0,1249365 -3099234,1630207561,2,19,2,2,1630084544,2,6.0,-9.0,-9.0,15.0,4.0,1249365 -3099235,1630207560,2,53,0,1,1630084545,2,6.0,-9.0,-9.0,-9.0,4.0,1249366 -3099236,1630207562,2,19,2,2,1630084545,2,6.0,-9.0,-9.0,15.0,4.0,1249366 -3099237,1630207760,2,61,0,1,1630084546,1,6.0,-9.0,-9.0,15.0,4.0,1249367 -3099238,1630207761,2,59,5,2,1630084546,1,3.0,-9.0,-9.0,-9.0,4.0,1249367 -3099239,1630207600,2,54,0,1,1630084547,2,6.0,-9.0,-9.0,-9.0,4.0,1249368 -3099240,1630207602,2,17,2,2,1630084547,2,6.0,-9.0,-9.0,13.0,4.0,1249368 -3099241,1630207601,2,54,0,1,1630084548,2,6.0,-9.0,-9.0,-9.0,4.0,1249369 -3099242,1630207603,2,17,2,2,1630084548,2,6.0,-9.0,-9.0,13.0,4.0,1249369 -3099243,1630207553,2,61,0,1,1630084549,2,6.0,-9.0,-9.0,-9.0,4.0,1249370 -3099244,1630207555,2,17,7,2,1630084549,2,6.0,-9.0,-9.0,14.0,4.0,1249370 -3099245,1630207565,2,53,0,1,1630084550,2,6.0,-9.0,-9.0,-9.0,4.0,1249371 -3099246,1630207566,2,4,7,2,1630084550,1,-9.0,-9.0,-9.0,1.0,-9.0,1249371 -3099247,1630207698,2,53,0,1,1630084551,1,6.0,45.0,5.0,11.0,4.0,1249372 -3099248,1630207697,2,14,2,2,1630084551,1,-9.0,-9.0,-9.0,10.0,-9.0,1249372 -3099249,1630207743,2,52,0,1,1630084552,1,6.0,-9.0,-9.0,-9.0,4.0,1249373 -3099250,1630207745,2,4,2,2,1630084552,2,-9.0,-9.0,-9.0,1.0,-9.0,1249373 -3099251,1630207554,2,61,0,1,1630084553,2,6.0,-9.0,-9.0,-9.0,4.0,1249374 -3099252,1630207556,2,17,7,2,1630084553,2,6.0,-9.0,-9.0,14.0,4.0,1249374 -3099253,1630207744,2,52,0,1,1630084554,1,6.0,-9.0,-9.0,-9.0,4.0,1249375 -3099254,1630207746,2,4,2,2,1630084554,2,-9.0,-9.0,-9.0,1.0,-9.0,1249375 -3099255,1630207642,2,56,0,1,1630084555,2,6.0,-9.0,-9.0,-9.0,4.0,1249376 -3099256,1630207643,2,21,2,2,1630084555,2,6.0,-9.0,-9.0,15.0,4.0,1249376 -3099257,1630207587,2,47,0,1,1630084556,2,3.0,40.0,3.0,15.0,4.0,1249377 -3099258,1630207588,2,8,2,2,1630084556,2,-9.0,-9.0,-9.0,5.0,-9.0,1249377 -3099259,1630207582,2,46,0,1,1630084557,2,6.0,-9.0,-9.0,-9.0,4.0,1249378 -3099260,1630207584,2,16,2,2,1630084557,2,6.0,-9.0,-9.0,13.0,-9.0,1249378 -3099261,1630207569,2,59,0,1,1630084558,2,6.0,-9.0,-9.0,-9.0,4.0,1249379 -3099262,1630207570,2,16,7,2,1630084558,1,6.0,-9.0,-9.0,13.0,-9.0,1249379 -3099263,1630207571,2,52,0,1,1630084559,2,1.0,40.0,1.0,-9.0,4.0,1249380 -3099264,1630207748,2,61,0,1,1630084560,1,1.0,3.0,6.0,-9.0,4.0,1249381 -3099265,1630207685,2,61,0,1,1630084561,2,1.0,35.0,1.0,-9.0,4.0,1249382 -3099266,1630207617,2,56,0,1,1630084562,2,1.0,99.0,1.0,-9.0,4.0,1249383 -3099267,1630207735,2,61,0,1,1630084563,1,1.0,30.0,1.0,-9.0,4.0,1249384 -3099268,1630207750,2,48,0,1,1630084564,1,1.0,36.0,6.0,-9.0,4.0,1249385 -3099269,1630207586,2,59,0,1,1630084565,2,1.0,40.0,1.0,-9.0,4.0,1249386 -3099270,1630207800,4,51,0,1,1630084566,2,1.0,40.0,1.0,-9.0,4.0,1249387 -3099271,1630207738,2,54,0,1,1630084567,1,1.0,40.0,1.0,-9.0,4.0,1249388 -3099272,1630207589,2,53,0,1,1630084568,2,1.0,32.0,1.0,-9.0,4.0,1249389 -3099273,1630207663,2,46,0,1,1630084569,2,1.0,38.0,1.0,-9.0,4.0,1249390 -3099274,1630207770,2,66,0,1,1630084570,1,6.0,-9.0,-9.0,-9.0,2.0,1249391 -3099275,1630207471,2,75,0,1,1630084571,2,6.0,-9.0,-9.0,-9.0,4.0,1249392 -3099276,1630207472,2,75,0,1,1630084572,2,6.0,-9.0,-9.0,-9.0,4.0,1249393 -3099277,1630207771,2,66,0,1,1630084573,1,6.0,-9.0,-9.0,-9.0,2.0,1249394 -3099278,1630207515,2,66,0,1,1630084574,2,6.0,-9.0,-9.0,-9.0,4.0,1249395 -3099279,1630207456,2,87,0,1,1630084575,2,6.0,-9.0,-9.0,-9.0,4.0,1249396 -3099280,1630207530,2,85,0,1,1630084576,2,6.0,-9.0,-9.0,-9.0,4.0,1249397 -3099281,1630207457,2,68,0,1,1630084577,2,6.0,-9.0,-9.0,-9.0,4.0,1249398 -3099282,1630207792,2,66,0,1,1630084578,1,6.0,-9.0,-9.0,-9.0,4.0,1249399 -3099283,1630207793,2,66,0,1,1630084579,1,6.0,-9.0,-9.0,-9.0,4.0,1249400 -3099284,1630207787,2,69,0,1,1630084580,1,6.0,-9.0,-9.0,-9.0,2.0,1249401 -3099285,1630207467,2,74,0,1,1630084581,2,6.0,-9.0,-9.0,-9.0,4.0,1249402 -3099286,1630207520,2,88,0,1,1630084582,2,6.0,-9.0,-9.0,-9.0,4.0,1249403 -3099287,1630207521,2,24,7,2,1630084582,1,6.0,-9.0,-9.0,-9.0,4.0,1249403 -3099288,1630207529,2,84,0,1,1630084583,1,6.0,-9.0,-9.0,-9.0,2.0,1249404 -3099289,1630207528,2,76,1,2,1630084583,2,6.0,-9.0,-9.0,-9.0,4.0,1249404 -3099290,1630207469,2,65,0,1,1630084584,2,1.0,40.0,1.0,-9.0,4.0,1249405 -3099291,1630207790,2,74,0,1,1630084585,1,6.0,-9.0,-9.0,-9.0,2.0,1249406 -3099292,1630207498,2,72,0,1,1630084586,2,6.0,-9.0,-9.0,-9.0,4.0,1249407 -3099293,1630207526,2,70,0,1,1630084587,2,6.0,-9.0,-9.0,-9.0,4.0,1249408 -3099294,1630207496,2,67,0,1,1630084588,2,6.0,-9.0,-9.0,-9.0,4.0,1249409 -3099295,1630207773,2,67,0,1,1630084589,1,6.0,-9.0,-9.0,-9.0,2.0,1249410 -3099296,1630207489,2,73,0,1,1630084590,2,6.0,-9.0,-9.0,-9.0,4.0,1249411 -3099297,1630207788,2,66,0,1,1630084591,1,6.0,-9.0,-9.0,-9.0,4.0,1249412 -3099298,1630207795,2,66,0,1,1630084592,1,6.0,-9.0,-9.0,-9.0,2.0,1249413 -3099299,1630207451,2,69,0,1,1630084593,2,6.0,-9.0,-9.0,-9.0,4.0,1249414 -3099300,1630207501,2,65,0,1,1630084594,2,6.0,-9.0,-9.0,-9.0,4.0,1249415 -3099301,1630207458,2,65,0,1,1630084595,2,6.0,-9.0,-9.0,-9.0,4.0,1249416 -3099302,1630207776,2,69,0,1,1630084596,1,6.0,-9.0,-9.0,-9.0,2.0,1249417 -3099303,1630207504,2,65,0,1,1630084597,2,6.0,-9.0,-9.0,-9.0,4.0,1249418 -3099304,1630207499,2,72,0,1,1630084598,2,6.0,-9.0,-9.0,-9.0,4.0,1249419 -3099305,1630207490,2,78,0,1,1630084599,2,6.0,-9.0,-9.0,-9.0,4.0,1249420 -3099306,1630207786,2,75,0,1,1630084600,1,6.0,-9.0,-9.0,-9.0,4.0,1249421 -3099307,1630207505,2,88,0,1,1630084601,2,6.0,-9.0,-9.0,-9.0,4.0,1249422 -3099308,1630207525,2,67,0,1,1630084602,2,6.0,8.0,6.0,-9.0,4.0,1249423 -3099309,1630207477,2,87,0,1,1630084603,2,6.0,-9.0,-9.0,-9.0,4.0,1249424 -3099310,1630207459,2,72,0,1,1630084604,2,6.0,-9.0,-9.0,-9.0,3.0,1249425 -3099311,1630207487,2,80,0,1,1630084605,2,6.0,-9.0,-9.0,-9.0,4.0,1249426 -3099312,1630207483,2,69,0,1,1630084606,2,6.0,-9.0,-9.0,-9.0,4.0,1249427 -3099313,1630207491,2,69,0,1,1630084607,2,6.0,-9.0,-9.0,-9.0,4.0,1249428 -3099314,1630207482,2,74,0,1,1630084608,2,6.0,-9.0,-9.0,-9.0,4.0,1249429 -3099315,1630207480,2,66,0,1,1630084609,2,6.0,-9.0,-9.0,-9.0,4.0,1249430 -3099316,1630207777,2,69,0,1,1630084610,1,6.0,-9.0,-9.0,-9.0,2.0,1249431 -3099317,1630207779,2,65,0,1,1630084611,1,6.0,-9.0,-9.0,-9.0,4.0,1249432 -3099318,1630207781,2,83,0,1,1630084612,1,6.0,-9.0,-9.0,-9.0,2.0,1249433 -3099319,1630207460,2,70,0,1,1630084613,2,6.0,-9.0,-9.0,-9.0,4.0,1249434 -3099320,1630207778,2,69,0,1,1630084614,1,6.0,-9.0,-9.0,-9.0,2.0,1249435 -3099321,1630207465,2,68,0,1,1630084615,2,6.0,-9.0,-9.0,-9.0,4.0,1249436 -3099322,1630207783,2,94,0,1,1630084616,1,6.0,-9.0,-9.0,-9.0,4.0,1249437 -3099323,1630207466,2,65,0,1,1630084617,2,6.0,-9.0,-9.0,-9.0,4.0,1249438 -3099324,1630207502,2,73,0,1,1630084618,2,6.0,-9.0,-9.0,-9.0,4.0,1249439 -3099325,1630207452,2,81,0,1,1630084619,2,6.0,-9.0,-9.0,-9.0,4.0,1249440 -3099326,1630207461,2,85,0,1,1630084620,2,6.0,-9.0,-9.0,-9.0,4.0,1249441 -3099327,1630207484,2,66,0,1,1630084621,2,6.0,-9.0,-9.0,-9.0,4.0,1249442 -3099328,1630207497,2,67,0,1,1630084622,2,6.0,-9.0,-9.0,-9.0,4.0,1249443 -3099329,1630207780,2,70,0,1,1630084623,1,6.0,-9.0,-9.0,-9.0,4.0,1249444 -3099330,1630207468,2,86,0,1,1630084624,2,6.0,-9.0,-9.0,-9.0,4.0,1249445 -3099331,1630207500,2,72,0,1,1630084625,2,6.0,-9.0,-9.0,-9.0,4.0,1249446 -3099332,1630207485,2,66,0,1,1630084626,2,6.0,-9.0,-9.0,-9.0,4.0,1249447 -3099333,1630207464,2,65,0,1,1630084627,2,6.0,-9.0,-9.0,-9.0,4.0,1249448 -3099334,1630207523,2,80,0,1,1630084628,2,6.0,-9.0,-9.0,-9.0,4.0,1249449 -3099335,1630207463,2,65,0,1,1630084629,2,6.0,-9.0,-9.0,-9.0,4.0,1249450 -3099336,1630207537,1,76,0,1,1630084630,2,6.0,-9.0,-9.0,-9.0,4.0,1249451 -3099337,1630207481,2,65,0,1,1630084631,2,6.0,-9.0,-9.0,-9.0,4.0,1249452 -3099338,1630207486,2,85,0,1,1630084632,2,6.0,-9.0,-9.0,-9.0,4.0,1249453 -3099339,1630207453,2,80,0,1,1630084633,2,6.0,-9.0,-9.0,-9.0,4.0,1249454 -3099340,1630207791,2,73,0,1,1630084634,1,6.0,-9.0,-9.0,-9.0,4.0,1249455 -3099341,1630207454,2,80,0,1,1630084635,2,6.0,-9.0,-9.0,-9.0,4.0,1249456 -3099342,1630207462,2,84,0,1,1630084636,2,6.0,-9.0,-9.0,-9.0,4.0,1249457 -3099343,1630207533,2,66,0,1,1630084637,2,6.0,-9.0,-9.0,-9.0,4.0,1249458 -3099344,1630207494,2,68,0,1,1630084638,2,6.0,-9.0,-9.0,-9.0,4.0,1249459 -3099345,1630207534,2,66,0,1,1630084639,2,6.0,-9.0,-9.0,-9.0,4.0,1249460 -3099346,1630207522,2,69,0,1,1630084640,2,6.0,-9.0,-9.0,-9.0,4.0,1249461 -3099347,1630207503,2,69,0,1,1630084641,2,6.0,-9.0,-9.0,-9.0,4.0,1249462 -3099348,1630207774,2,86,0,1,1630084642,1,6.0,-9.0,-9.0,-9.0,2.0,1249463 -3099349,1630207785,2,72,0,1,1630084643,1,6.0,-9.0,-9.0,-9.0,4.0,1249464 -3099350,1630207527,2,79,0,1,1630084644,2,6.0,-9.0,-9.0,-9.0,4.0,1249465 -3099351,1630207478,2,73,0,1,1630084645,2,6.0,-9.0,-9.0,-9.0,4.0,1249466 -3099352,1630207479,2,72,15,2,1630084645,1,6.0,-9.0,-9.0,-9.0,4.0,1249466 -3099353,1630207532,2,90,0,1,1630084646,1,6.0,-9.0,-9.0,-9.0,2.0,1249467 -3099354,1630207531,2,85,1,2,1630084646,2,6.0,-9.0,-9.0,-9.0,4.0,1249467 -3099355,1630207516,2,65,0,1,1630084647,2,6.0,-9.0,-9.0,-9.0,4.0,1249468 -3099356,1630207518,2,11,7,2,1630084647,2,-9.0,-9.0,-9.0,8.0,-9.0,1249468 -3099357,1630207508,2,68,0,1,1630084648,2,6.0,-9.0,-9.0,-9.0,4.0,1249469 -3099358,1630207509,2,55,1,2,1630084648,1,6.0,-9.0,-9.0,-9.0,2.0,1249469 -3099359,1630207473,2,65,0,1,1630084649,2,6.0,-9.0,-9.0,-9.0,4.0,1249470 -3099360,1630207474,2,15,7,2,1630084649,1,-9.0,-9.0,-9.0,8.0,-9.0,1249470 -3099361,1630207510,2,66,0,1,1630084650,2,3.0,-9.0,-9.0,-9.0,4.0,1249471 -3099362,1630207511,2,8,7,2,1630084650,1,-9.0,-9.0,-9.0,5.0,-9.0,1249471 -3099363,1630207470,2,65,0,1,1630084651,2,1.0,40.0,1.0,-9.0,4.0,1249472 -3099364,1630207679,2,52,0,1,1630084652,2,2.0,40.0,3.0,-9.0,4.0,1249473 -3099365,1630207680,2,19,12,2,1630084652,2,1.0,40.0,1.0,15.0,4.0,1249473 -3099366,1630207545,2,50,0,1,1630084653,2,1.0,40.0,1.0,-9.0,4.0,1249474 -3099367,1630207546,2,24,2,2,1630084653,2,3.0,-9.0,-9.0,-9.0,4.0,1249474 -3099368,1630207801,4,44,0,1,1630084654,1,1.0,55.0,1.0,-9.0,4.0,1249475 -3099369,1630207557,2,34,0,1,1630084655,2,3.0,-9.0,-9.0,15.0,4.0,1249476 -3099370,1630207775,2,73,0,1,1630084656,1,6.0,-9.0,-9.0,-9.0,4.0,1249477 -3099371,1630207789,2,67,0,1,1630084657,1,1.0,50.0,1.0,-9.0,4.0,1249478 -3099372,1630207538,1,51,0,1,1630084658,2,6.0,-9.0,-9.0,-9.0,2.0,1249479 -3099373,1630207583,2,46,0,1,1630084659,2,6.0,-9.0,-9.0,-9.0,4.0,1249480 -3099374,1630207585,2,16,2,2,1630084659,2,6.0,-9.0,-9.0,13.0,-9.0,1249480 -3099375,1630207506,2,73,0,1,1630084660,2,6.0,-9.0,-9.0,-9.0,4.0,1249481 -3099376,1630207507,2,66,5,2,1630084660,2,1.0,6.0,3.0,-9.0,4.0,1249481 -3099377,1630207762,2,63,0,1,1630084661,1,6.0,-9.0,-9.0,-9.0,4.0,1249482 -3099378,1630207784,2,66,0,1,1630084662,1,1.0,30.0,1.0,-9.0,4.0,1249483 -3099379,1630207722,2,49,0,1,1630084663,1,3.0,-9.0,-9.0,-9.0,4.0,1249484 -3099380,1630207704,2,33,0,1,1630084664,1,1.0,40.0,1.0,-9.0,4.0,1249485 -3099381,1630207703,2,11,2,2,1630084664,1,-9.0,-9.0,-9.0,8.0,-9.0,1249485 -3099382,1630207705,2,26,5,3,1630084664,1,1.0,55.0,1.0,15.0,4.0,1249485 -3099383,1630207794,2,66,0,1,1630084665,1,6.0,-9.0,-9.0,-9.0,4.0,1249486 -3099384,1630207799,4,30,0,1,1630084666,2,1.0,40.0,1.0,-9.0,4.0,1249487 -3099385,1630207772,2,66,0,1,1630084667,1,6.0,-9.0,-9.0,-9.0,2.0,1249488 -3099386,1630207615,2,45,0,1,1630084668,2,1.0,40.0,1.0,-9.0,4.0,1249489 -3099387,1630207616,2,14,2,2,1630084668,2,-9.0,-9.0,-9.0,10.0,-9.0,1249489 -3099388,1630207476,2,76,0,1,1630084669,1,6.0,-9.0,-9.0,-9.0,2.0,1249490 -3099389,1630207475,2,68,1,2,1630084669,2,6.0,-9.0,-9.0,-9.0,4.0,1249490 -3099390,1630207673,2,36,0,1,1630084670,2,1.0,24.0,1.0,-9.0,4.0,1249491 -3099391,1630207674,2,14,2,2,1630084670,1,-9.0,-9.0,-9.0,10.0,-9.0,1249491 -3099392,1630207635,2,46,0,1,1630084671,2,1.0,40.0,1.0,-9.0,4.0,1249492 -3099393,1630207637,2,58,0,1,1630084672,2,1.0,40.0,1.0,-9.0,4.0,1249493 -3099394,1630207488,2,80,0,1,1630084673,2,6.0,-9.0,-9.0,-9.0,4.0,1249494 -3099395,1630207719,2,64,0,1,1630084674,1,6.0,-9.0,-9.0,-9.0,2.0,1249495 -3099396,1630207654,2,47,0,1,1630084675,2,1.0,35.0,1.0,-9.0,4.0,1249496 -3099397,1630207655,2,21,2,2,1630084675,2,1.0,36.0,1.0,15.0,4.0,1249496 -3099398,1630207656,2,17,2,3,1630084675,1,6.0,-9.0,-9.0,14.0,4.0,1249496 -3099399,1630207676,2,35,0,1,1630084676,2,1.0,40.0,1.0,-9.0,4.0,1249497 -3099400,1630207677,2,16,2,2,1630084676,2,6.0,-9.0,-9.0,12.0,-9.0,1249497 -3099401,1630207716,2,29,0,1,1630084677,1,1.0,40.0,1.0,-9.0,4.0,1249498 -3099402,1630207629,2,47,0,1,1630084678,2,6.0,-9.0,-9.0,-9.0,4.0,1249499 -3099403,1630207630,2,13,2,2,1630084678,1,-9.0,-9.0,-9.0,9.0,-9.0,1249499 -3099404,1630207631,2,13,2,3,1630084678,2,-9.0,-9.0,-9.0,9.0,-9.0,1249499 -3099405,1630207720,2,42,0,1,1630084679,1,1.0,45.0,1.0,-9.0,4.0,1249500 -3099406,1630207798,4,30,0,1,1630084680,1,1.0,60.0,1.0,16.0,4.0,1249501 -3099407,1630207797,4,33,1,2,1630084680,2,1.0,60.0,1.0,16.0,4.0,1249501 -3099408,1630207524,2,72,0,1,1630084681,2,1.0,40.0,1.0,-9.0,4.0,1249502 -3099409,1630207540,1,52,0,1,1630084682,1,1.0,40.0,1.0,-9.0,4.0,1249503 -3099410,1630207455,2,67,0,1,1630084683,2,1.0,8.0,1.0,-9.0,4.0,1249504 -3099411,1630207687,2,53,0,1,1630084684,2,1.0,45.0,1.0,-9.0,4.0,1249505 -3099412,1630207688,2,32,2,2,1630084684,2,1.0,40.0,1.0,-9.0,4.0,1249505 -3099413,1630207512,2,68,0,1,1630084685,2,6.0,-9.0,-9.0,-9.0,4.0,1249506 -3099414,1630207513,2,29,2,2,1630084685,1,3.0,-9.0,-9.0,-9.0,4.0,1249506 -3099415,1630207514,2,17,7,3,1630084685,2,6.0,-9.0,-9.0,14.0,4.0,1249506 -3099416,1630207728,2,30,0,1,1630084686,1,1.0,40.0,1.0,-9.0,4.0,1249507 -3099417,1630207700,2,47,0,1,1630084687,1,1.0,40.0,1.0,-9.0,4.0,1249508 -3099418,1630207699,2,10,2,2,1630084687,1,-9.0,-9.0,-9.0,6.0,-9.0,1249508 -3099419,1630207549,2,29,0,1,1630084688,1,1.0,50.0,5.0,-9.0,4.0,1249509 -3099420,1630207548,2,2,2,2,1630084688,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249509 -3099421,1630207547,2,27,13,3,1630084688,2,1.0,45.0,1.0,-9.0,4.0,1249509 -3099422,1630207605,2,46,0,1,1630084689,1,1.0,60.0,1.0,-9.0,4.0,1249510 -3099423,1630207604,2,45,1,2,1630084689,2,1.0,40.0,1.0,-9.0,4.0,1249510 -3099424,1630207606,2,2,2,3,1630084689,2,-9.0,-9.0,-9.0,-9.0,-9.0,1249510 -3099425,1630207723,2,35,0,1,1630084690,1,1.0,30.0,5.0,-9.0,4.0,1249511 -3099426,1630207724,2,31,15,2,1630084690,1,1.0,40.0,1.0,-9.0,4.0,1249511 -3099427,1630207661,2,31,0,1,1630084691,2,1.0,40.0,1.0,-9.0,4.0,1249512 -3099428,1630207662,2,5,2,2,1630084691,2,-9.0,-9.0,-9.0,1.0,-9.0,1249512 -3099429,1630207572,2,32,0,1,1630084692,2,1.0,40.0,1.0,15.0,2.0,1249513 -3099430,1630207573,2,11,2,2,1630084692,1,-9.0,-9.0,-9.0,8.0,-9.0,1249513 -3099431,1630207757,2,45,0,1,1630084693,1,1.0,48.0,1.0,-9.0,4.0,1249514 -3099432,1630207691,2,25,0,1,1630084694,2,3.0,40.0,1.0,-9.0,4.0,1249515 -3099433,1630207692,2,5,2,2,1630084694,2,-9.0,-9.0,-9.0,2.0,-9.0,1249515 -3099434,1630207618,2,58,0,1,1630084695,2,3.0,-9.0,-9.0,-9.0,2.0,1249516 -3099435,1630207619,2,45,12,2,1630084695,2,1.0,40.0,1.0,-9.0,4.0,1249516 -3099436,1630207657,2,62,0,1,1630084696,2,3.0,40.0,6.0,-9.0,4.0,1249517 -3099437,1630207658,2,23,2,2,1630084696,2,1.0,23.0,5.0,-9.0,4.0,1249517 -3099438,1630207714,2,61,0,1,1630084697,1,1.0,40.0,1.0,-9.0,4.0,1249518 -3099439,1630207715,2,51,10,2,1630084697,1,6.0,-9.0,-9.0,-9.0,4.0,1249518 -3099440,1630207684,2,41,0,1,1630084698,2,1.0,40.0,1.0,-9.0,4.0,1249519 -3099441,1630207755,2,57,0,1,1630084699,1,1.0,40.0,1.0,15.0,2.0,1249520 -3099442,1630207756,2,35,2,2,1630084699,1,1.0,40.0,1.0,-9.0,4.0,1249520 -3099443,1630207696,2,40,0,1,1630084700,1,3.0,60.0,6.0,-9.0,4.0,1249521 -3099444,1630207695,2,15,2,2,1630084700,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249521 -3099445,1630207647,2,50,0,1,1630084701,2,1.0,30.0,1.0,-9.0,4.0,1249522 -3099446,1630207648,2,19,2,2,1630084701,2,1.0,20.0,3.0,-9.0,4.0,1249522 -3099447,1630207769,2,42,0,1,1630084702,1,2.0,60.0,1.0,-9.0,2.0,1249523 -3099448,1630207597,2,39,0,1,1630084703,2,6.0,-9.0,-9.0,-9.0,4.0,1249524 -3099449,1630207598,2,17,2,2,1630084703,1,6.0,-9.0,-9.0,13.0,4.0,1249524 -3099450,1630207599,2,15,2,3,1630084703,1,-9.0,-9.0,-9.0,11.0,-9.0,1249524 -3099451,1630207665,2,58,0,1,1630084704,1,1.0,40.0,4.0,-9.0,4.0,1249525 -3099452,1630207664,2,60,1,2,1630084704,2,1.0,40.0,1.0,-9.0,4.0,1249525 -3099453,1630207763,2,58,0,1,1630084705,1,1.0,40.0,1.0,15.0,2.0,1249526 -3099454,1630207517,2,65,0,1,1630084706,2,6.0,-9.0,-9.0,-9.0,4.0,1249527 -3099455,1630207519,2,11,7,2,1630084706,2,-9.0,-9.0,-9.0,8.0,-9.0,1249527 -3099456,1630207577,2,33,0,1,1630084707,2,3.0,42.0,6.0,-9.0,4.0,1249528 -3099457,1630207578,2,14,2,2,1630084707,2,-9.0,-9.0,-9.0,11.0,-9.0,1249528 -3099458,1630207492,2,76,0,1,1630084708,2,6.0,-9.0,-9.0,-9.0,4.0,1249529 -3099459,1630207493,2,18,7,2,1630084708,2,6.0,-9.0,-9.0,13.0,4.0,1249529 -3099460,1630207594,2,50,0,1,1630084709,2,1.0,40.0,1.0,-9.0,4.0,1249530 -3099461,1630207596,2,11,2,2,1630084709,2,-9.0,-9.0,-9.0,9.0,-9.0,1249530 -3099462,1630207620,2,56,0,1,1630084710,2,1.0,40.0,1.0,-9.0,4.0,1249531 -3099463,1630207621,2,7,14,2,1630084710,2,-9.0,-9.0,-9.0,4.0,-9.0,1249531 -3099464,1630207622,2,6,14,3,1630084710,2,-9.0,-9.0,-9.0,3.0,-9.0,1249531 -3099465,1630207675,2,49,0,1,1630084711,2,6.0,20.0,5.0,-9.0,4.0,1249532 -3099466,1630207681,2,45,0,1,1630084712,2,3.0,-9.0,-9.0,-9.0,4.0,1249533 -3099467,1630207682,2,25,2,2,1630084712,1,3.0,-9.0,-9.0,-9.0,4.0,1249533 -3099468,1630207683,2,15,2,3,1630084712,2,-9.0,-9.0,-9.0,11.0,-9.0,1249533 -3099469,1630207539,1,31,0,1,1630084713,2,1.0,50.0,1.0,16.0,4.0,1249534 -3099470,1630207702,2,36,0,1,1630084714,1,1.0,48.0,1.0,-9.0,4.0,1249535 -3099471,1630207701,2,4,2,2,1630084714,1,-9.0,-9.0,-9.0,1.0,-9.0,1249535 -3099472,1630207623,2,27,0,1,1630084715,2,6.0,-9.0,-9.0,-9.0,4.0,1249536 -3099473,1630207625,2,3,2,2,1630084715,2,-9.0,-9.0,-9.0,-9.0,-9.0,1249536 -3099474,1630207624,2,1,2,3,1630084715,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249536 -3099475,1630207766,2,41,0,1,1630084716,1,1.0,40.0,1.0,-9.0,4.0,1249537 -3099476,1630207767,2,9,2,2,1630084716,2,-9.0,-9.0,-9.0,6.0,-9.0,1249537 -3099477,1630207764,2,46,0,1,1630084717,1,3.0,-9.0,-9.0,-9.0,4.0,1249538 -3099478,1630207796,1,66,0,1,1630084718,1,6.0,-9.0,-9.0,-9.0,2.0,1249539 -3099479,1630207590,2,47,0,1,1630084719,2,6.0,-9.0,-9.0,-9.0,2.0,1249540 -3099480,1630207592,2,15,2,2,1630084719,2,-9.0,-9.0,-9.0,11.0,-9.0,1249540 -3099481,1630207591,2,49,12,3,1630084719,1,1.0,40.0,1.0,-9.0,4.0,1249540 -3099482,1630207543,2,34,0,1,1630084720,2,1.0,40.0,1.0,-9.0,4.0,1249541 -3099483,1630207544,2,32,1,2,1630084720,1,1.0,30.0,3.0,-9.0,4.0,1249541 -3099484,1630207782,2,72,0,1,1630084721,1,6.0,-9.0,-9.0,-9.0,4.0,1249542 -3099485,1630207495,2,65,0,1,1630084722,2,6.0,-9.0,-9.0,-9.0,4.0,1249543 -3099486,1630207536,1,69,0,1,1630084723,1,1.0,10.0,3.0,-9.0,4.0,1249544 -3099487,1630207535,1,68,12,2,1630084723,2,1.0,17.0,1.0,-9.0,4.0,1249544 -3099488,1630207809,2,64,0,1,1630084724,1,6.0,-9.0,-9.0,-9.0,2.0,1249545 -3099489,1630207807,2,67,1,2,1630084724,2,3.0,40.0,2.0,-9.0,4.0,1249545 -3099490,1630208177,2,48,0,1,1630084725,2,6.0,-9.0,-9.0,-9.0,4.0,1249546 -3099491,1630208180,2,60,5,2,1630084725,1,6.0,-9.0,-9.0,-9.0,4.0,1249546 -3099492,1630208178,2,48,0,1,1630084726,2,6.0,-9.0,-9.0,-9.0,4.0,1249547 -3099493,1630208181,2,60,5,2,1630084726,1,6.0,-9.0,-9.0,-9.0,4.0,1249547 -3099494,1630208179,2,48,0,1,1630084727,2,6.0,-9.0,-9.0,-9.0,4.0,1249548 -3099495,1630208182,2,60,5,2,1630084727,1,6.0,-9.0,-9.0,-9.0,4.0,1249548 -3099496,1630207951,1,64,0,1,1630084728,2,6.0,-9.0,-9.0,-9.0,4.0,1249549 -3099497,1630207954,1,67,1,2,1630084728,1,6.0,5.0,4.0,-9.0,4.0,1249549 -3099498,1630207952,1,64,0,1,1630084729,2,6.0,-9.0,-9.0,-9.0,4.0,1249550 -3099499,1630207955,1,67,1,2,1630084729,1,6.0,5.0,4.0,-9.0,4.0,1249550 -3099500,1630207953,1,64,0,1,1630084730,2,6.0,-9.0,-9.0,-9.0,4.0,1249551 -3099501,1630207956,1,67,1,2,1630084730,1,6.0,5.0,4.0,-9.0,4.0,1249551 -3099502,1630208026,1,56,0,1,1630084731,2,1.0,50.0,1.0,-9.0,4.0,1249552 -3099503,1630208116,1,45,0,1,1630084732,1,1.0,50.0,1.0,-9.0,4.0,1249553 -3099504,1630207924,1,59,0,1,1630084733,2,1.0,50.0,1.0,-9.0,4.0,1249554 -3099505,1630208227,2,62,0,1,1630084734,2,6.0,-9.0,-9.0,-9.0,4.0,1249555 -3099506,1630208228,2,24,2,2,1630084734,2,1.0,40.0,3.0,-9.0,4.0,1249555 -3099507,1630208013,1,64,0,1,1630084735,1,1.0,65.0,1.0,-9.0,4.0,1249556 -3099508,1630208011,1,61,1,2,1630084735,2,6.0,-9.0,-9.0,-9.0,4.0,1249556 -3099509,1630208314,2,60,0,1,1630084736,1,1.0,45.0,1.0,-9.0,4.0,1249557 -3099510,1630208313,2,56,1,2,1630084736,2,1.0,50.0,1.0,-9.0,4.0,1249557 -3099511,1630208140,1,48,0,1,1630084737,1,1.0,45.0,1.0,-9.0,4.0,1249558 -3099512,1630208142,1,43,13,2,1630084737,1,1.0,40.0,1.0,-9.0,4.0,1249558 -3099513,1630208141,1,48,0,1,1630084738,1,1.0,45.0,1.0,-9.0,4.0,1249559 -3099514,1630208143,1,43,13,2,1630084738,1,1.0,40.0,1.0,-9.0,4.0,1249559 -3099515,1630208234,2,64,0,1,1630084739,2,6.0,-9.0,-9.0,-9.0,4.0,1249560 -3099516,1630208009,1,58,0,1,1630084740,2,6.0,-9.0,-9.0,-9.0,4.0,1249561 -3099517,1630208080,1,64,0,1,1630084741,1,6.0,-9.0,-9.0,-9.0,2.0,1249562 -3099518,1630208366,2,62,0,1,1630084742,1,6.0,-9.0,-9.0,-9.0,4.0,1249563 -3099519,1630208315,2,61,0,1,1630084743,2,6.0,-9.0,-9.0,-9.0,4.0,1249564 -3099520,1630208316,2,55,1,2,1630084743,1,6.0,-9.0,-9.0,-9.0,2.0,1249564 -3099521,1630208362,2,64,0,1,1630084744,1,1.0,20.0,4.0,-9.0,4.0,1249565 -3099522,1630208405,2,54,0,1,1630084745,1,1.0,40.0,1.0,-9.0,4.0,1249566 -3099523,1630208204,2,57,0,1,1630084746,2,6.0,-9.0,-9.0,-9.0,4.0,1249567 -3099524,1630208421,2,62,0,1,1630084747,1,6.0,-9.0,-9.0,-9.0,4.0,1249568 -3099525,1630207828,2,72,0,1,1630084748,2,6.0,-9.0,-9.0,-9.0,4.0,1249569 -3099526,1630207862,2,71,0,1,1630084749,2,6.0,-9.0,-9.0,-9.0,4.0,1249570 -3099527,1630207868,1,69,0,1,1630084750,2,6.0,-9.0,-9.0,-9.0,4.0,1249571 -3099528,1630208455,1,68,0,1,1630084751,1,6.0,-9.0,-9.0,-9.0,4.0,1249572 -3099529,1630208456,1,68,0,1,1630084752,1,6.0,-9.0,-9.0,-9.0,4.0,1249573 -3099530,1630207869,1,69,0,1,1630084753,2,6.0,-9.0,-9.0,-9.0,4.0,1249574 -3099531,1630207842,4,74,0,1,1630084754,1,6.0,-9.0,-9.0,-9.0,2.0,1249575 -3099532,1630207840,2,74,1,2,1630084754,2,6.0,-9.0,-9.0,-9.0,4.0,1249575 -3099533,1630207841,2,15,7,3,1630084754,2,-9.0,-9.0,-9.0,12.0,-9.0,1249575 -3099534,1630207832,2,75,0,1,1630084755,2,6.0,-9.0,-9.0,-9.0,4.0,1249576 -3099535,1630207834,2,43,2,2,1630084755,1,6.0,-9.0,-9.0,-9.0,4.0,1249576 -3099536,1630207814,2,93,0,1,1630084756,2,6.0,-9.0,-9.0,-9.0,4.0,1249577 -3099537,1630207816,2,71,2,2,1630084756,2,6.0,-9.0,-9.0,-9.0,4.0,1249577 -3099538,1630207815,2,93,0,1,1630084757,2,6.0,-9.0,-9.0,-9.0,4.0,1249578 -3099539,1630207817,2,71,2,2,1630084757,2,6.0,-9.0,-9.0,-9.0,4.0,1249578 -3099540,1630207848,2,78,0,1,1630084758,1,6.0,-9.0,-9.0,-9.0,4.0,1249579 -3099541,1630207847,2,67,1,2,1630084758,2,3.0,-9.0,-9.0,-9.0,4.0,1249579 -3099542,1630207881,1,68,0,1,1630084759,2,6.0,25.0,6.0,-9.0,4.0,1249580 -3099543,1630207883,1,72,1,2,1630084759,1,6.0,-9.0,-9.0,-9.0,4.0,1249580 -3099544,1630207882,1,68,0,1,1630084760,2,6.0,25.0,6.0,-9.0,4.0,1249581 -3099545,1630207884,1,72,1,2,1630084760,1,6.0,-9.0,-9.0,-9.0,4.0,1249581 -3099546,1630208004,1,66,0,1,1630084761,1,1.0,25.0,1.0,-9.0,4.0,1249582 -3099547,1630208003,1,56,1,2,1630084761,2,6.0,-9.0,-9.0,-9.0,4.0,1249582 -3099548,1630207856,2,94,0,1,1630084762,2,6.0,-9.0,-9.0,-9.0,4.0,1249583 -3099549,1630208449,2,66,0,1,1630084763,1,6.0,-9.0,-9.0,-9.0,4.0,1249584 -3099550,1630208446,2,80,0,1,1630084764,1,6.0,-9.0,-9.0,-9.0,2.0,1249585 -3099551,1630207853,2,85,0,1,1630084765,2,3.0,20.0,5.0,-9.0,4.0,1249586 -3099552,1630207892,1,77,0,1,1630084766,2,6.0,-9.0,-9.0,-9.0,4.0,1249587 -3099553,1630207893,1,77,0,1,1630084767,2,6.0,-9.0,-9.0,-9.0,4.0,1249588 -3099554,1630207889,1,82,0,1,1630084768,2,6.0,-9.0,-9.0,-9.0,4.0,1249589 -3099555,1630207891,1,72,0,1,1630084769,2,6.0,-9.0,-9.0,-9.0,4.0,1249590 -3099556,1630208001,2,79,0,1,1630084770,1,6.0,-9.0,-9.0,-9.0,4.0,1249591 -3099557,1630208000,3,60,15,2,1630084770,2,6.0,-9.0,-9.0,-9.0,4.0,1249591 -3099558,1630207826,2,88,0,1,1630084771,2,6.0,-9.0,-9.0,-9.0,4.0,1249592 -3099559,1630207827,2,71,9,2,1630084771,2,6.0,-9.0,-9.0,-9.0,4.0,1249592 -3099560,1630207873,1,85,0,1,1630084772,1,6.0,-9.0,-9.0,-9.0,2.0,1249593 -3099561,1630207872,1,88,5,2,1630084772,2,6.0,-9.0,-9.0,-9.0,4.0,1249593 -3099562,1630208217,2,69,0,1,1630084773,1,6.0,-9.0,-9.0,-9.0,2.0,1249594 -3099563,1630208216,2,55,1,2,1630084773,2,3.0,40.0,3.0,-9.0,3.0,1249594 -3099564,1630207849,2,71,0,1,1630084774,2,6.0,-9.0,-9.0,-9.0,4.0,1249595 -3099565,1630208458,1,73,0,1,1630084775,1,6.0,-9.0,-9.0,-9.0,4.0,1249596 -3099566,1630207823,2,80,0,1,1630084776,2,6.0,-9.0,-9.0,-9.0,4.0,1249597 -3099567,1630207852,2,84,0,1,1630084777,2,6.0,-9.0,-9.0,-9.0,4.0,1249598 -3099568,1630207863,2,75,0,1,1630084778,2,6.0,-9.0,-9.0,-9.0,4.0,1249599 -3099569,1630207996,1,33,0,1,1630084779,2,1.0,50.0,1.0,-9.0,4.0,1249600 -3099570,1630207997,1,33,0,1,1630084780,2,1.0,50.0,1.0,-9.0,4.0,1249601 -3099571,1630207998,1,33,0,1,1630084781,2,1.0,50.0,1.0,-9.0,4.0,1249602 -3099572,1630207999,1,33,0,1,1630084782,2,1.0,50.0,1.0,-9.0,4.0,1249603 -3099573,1630207937,1,27,0,1,1630084783,1,1.0,50.0,1.0,-9.0,4.0,1249604 -3099574,1630207933,3,28,1,2,1630084783,2,6.0,45.0,4.0,-9.0,4.0,1249604 -3099575,1630207938,1,27,0,1,1630084784,1,1.0,50.0,1.0,-9.0,4.0,1249605 -3099576,1630207934,3,28,1,2,1630084784,2,6.0,45.0,4.0,-9.0,4.0,1249605 -3099577,1630207939,1,27,0,1,1630084785,1,1.0,50.0,1.0,-9.0,4.0,1249606 -3099578,1630207935,3,28,1,2,1630084785,2,6.0,45.0,4.0,-9.0,4.0,1249606 -3099579,1630207914,1,43,0,1,1630084786,2,1.0,40.0,1.0,-9.0,4.0,1249607 -3099580,1630207915,4,43,1,2,1630084786,1,1.0,35.0,1.0,-9.0,2.0,1249607 -3099581,1630207916,4,13,2,3,1630084786,2,-9.0,-9.0,-9.0,10.0,-9.0,1249607 -3099582,1630207917,4,10,2,4,1630084786,2,-9.0,-9.0,-9.0,7.0,-9.0,1249607 -3099583,1630207992,1,32,0,1,1630084787,2,1.0,45.0,1.0,-9.0,4.0,1249608 -3099584,1630207994,3,7,2,2,1630084787,1,-9.0,-9.0,-9.0,3.0,-9.0,1249608 -3099585,1630207993,1,37,13,3,1630084787,2,1.0,50.0,1.0,-9.0,4.0,1249608 -3099586,1630208471,4,30,0,1,1630084788,1,1.0,45.0,1.0,-9.0,4.0,1249609 -3099587,1630208467,4,27,1,2,1630084788,2,1.0,40.0,1.0,-9.0,4.0,1249609 -3099588,1630208472,4,30,0,1,1630084789,1,1.0,45.0,1.0,-9.0,4.0,1249610 -3099589,1630208468,4,27,1,2,1630084789,2,1.0,40.0,1.0,-9.0,4.0,1249610 -3099590,1630208473,4,30,0,1,1630084790,1,1.0,45.0,1.0,-9.0,4.0,1249611 -3099591,1630208469,4,27,1,2,1630084790,2,1.0,40.0,1.0,-9.0,4.0,1249611 -3099592,1630208474,4,30,0,1,1630084791,1,1.0,45.0,1.0,-9.0,4.0,1249612 -3099593,1630208470,4,27,1,2,1630084791,2,1.0,40.0,1.0,-9.0,4.0,1249612 -3099594,1630208031,1,27,0,1,1630084792,1,1.0,45.0,1.0,-9.0,4.0,1249613 -3099595,1630208028,1,28,1,2,1630084792,2,1.0,52.0,4.0,-9.0,4.0,1249613 -3099596,1630208032,1,27,0,1,1630084793,1,1.0,45.0,1.0,-9.0,4.0,1249614 -3099597,1630208029,1,28,1,2,1630084793,2,1.0,52.0,4.0,-9.0,4.0,1249614 -3099598,1630208413,4,33,0,1,1630084794,2,1.0,55.0,1.0,-9.0,4.0,1249615 -3099599,1630208409,2,34,13,2,1630084794,1,1.0,40.0,4.0,16.0,4.0,1249615 -3099600,1630208414,4,33,0,1,1630084795,2,1.0,55.0,1.0,-9.0,4.0,1249616 -3099601,1630208410,2,34,13,2,1630084795,1,1.0,40.0,4.0,16.0,4.0,1249616 -3099602,1630208415,4,33,0,1,1630084796,2,1.0,55.0,1.0,-9.0,4.0,1249617 -3099603,1630208411,2,34,13,2,1630084796,1,1.0,40.0,4.0,16.0,4.0,1249617 -3099604,1630208416,4,33,0,1,1630084797,2,1.0,55.0,1.0,-9.0,4.0,1249618 -3099605,1630208412,2,34,13,2,1630084797,1,1.0,40.0,4.0,16.0,4.0,1249618 -3099606,1630208276,2,26,0,1,1630084798,2,1.0,50.0,1.0,-9.0,4.0,1249619 -3099607,1630208277,2,27,13,2,1630084798,1,1.0,40.0,1.0,-9.0,4.0,1249619 -3099608,1630207925,1,25,0,1,1630084799,2,1.0,45.0,1.0,16.0,4.0,1249620 -3099609,1630207928,4,25,1,2,1630084799,1,1.0,40.0,1.0,16.0,4.0,1249620 -3099610,1630208156,1,38,0,1,1630084800,1,1.0,40.0,1.0,-9.0,4.0,1249621 -3099611,1630208163,1,42,12,2,1630084800,1,1.0,40.0,1.0,-9.0,4.0,1249621 -3099612,1630208157,1,38,0,1,1630084801,1,1.0,40.0,1.0,-9.0,4.0,1249622 -3099613,1630208164,1,42,12,2,1630084801,1,1.0,40.0,1.0,-9.0,4.0,1249622 -3099614,1630208158,1,38,0,1,1630084802,1,1.0,40.0,1.0,-9.0,4.0,1249623 -3099615,1630208165,1,42,12,2,1630084802,1,1.0,40.0,1.0,-9.0,4.0,1249623 -3099616,1630208159,1,38,0,1,1630084803,1,1.0,40.0,1.0,-9.0,4.0,1249624 -3099617,1630208166,1,42,12,2,1630084803,1,1.0,40.0,1.0,-9.0,4.0,1249624 -3099618,1630208122,1,28,0,1,1630084804,1,1.0,25.0,1.0,-9.0,4.0,1249625 -3099619,1630208125,1,28,12,2,1630084804,1,1.0,45.0,1.0,-9.0,4.0,1249625 -3099620,1630207967,1,37,0,1,1630084805,1,1.0,50.0,3.0,-9.0,4.0,1249626 -3099621,1630207966,1,39,13,2,1630084805,2,1.0,45.0,3.0,-9.0,4.0,1249626 -3099622,1630207926,1,25,0,1,1630084806,2,1.0,45.0,1.0,16.0,4.0,1249627 -3099623,1630207929,4,25,1,2,1630084806,1,1.0,40.0,1.0,16.0,4.0,1249627 -3099624,1630207927,1,25,0,1,1630084807,2,1.0,45.0,1.0,16.0,4.0,1249628 -3099625,1630207930,4,25,1,2,1630084807,1,1.0,40.0,1.0,16.0,4.0,1249628 -3099626,1630208123,1,28,0,1,1630084808,1,1.0,25.0,1.0,-9.0,4.0,1249629 -3099627,1630208126,1,28,12,2,1630084808,1,1.0,45.0,1.0,-9.0,4.0,1249629 -3099628,1630208160,1,38,0,1,1630084809,1,1.0,40.0,1.0,-9.0,4.0,1249630 -3099629,1630208167,1,42,12,2,1630084809,1,1.0,40.0,1.0,-9.0,4.0,1249630 -3099630,1630208124,1,28,0,1,1630084810,1,1.0,25.0,1.0,-9.0,4.0,1249631 -3099631,1630208127,1,28,12,2,1630084810,1,1.0,45.0,1.0,-9.0,4.0,1249631 -3099632,1630208161,1,38,0,1,1630084811,1,1.0,40.0,1.0,-9.0,4.0,1249632 -3099633,1630208168,1,42,12,2,1630084811,1,1.0,40.0,1.0,-9.0,4.0,1249632 -3099634,1630207919,1,31,0,1,1630084812,2,1.0,50.0,1.0,-9.0,4.0,1249633 -3099635,1630207921,1,34,13,2,1630084812,1,1.0,70.0,1.0,-9.0,4.0,1249633 -3099636,1630207920,1,31,0,1,1630084813,2,1.0,50.0,1.0,-9.0,4.0,1249634 -3099637,1630207922,1,34,13,2,1630084813,1,1.0,70.0,1.0,-9.0,4.0,1249634 -3099638,1630208085,3,27,0,1,1630084814,1,1.0,70.0,1.0,-9.0,4.0,1249635 -3099639,1630208087,3,27,12,2,1630084814,1,1.0,70.0,1.0,-9.0,4.0,1249635 -3099640,1630208400,2,41,0,1,1630084815,1,3.0,50.0,4.0,-9.0,4.0,1249636 -3099641,1630207989,1,27,0,1,1630084816,2,6.0,37.0,5.0,16.0,4.0,1249637 -3099642,1630207990,1,27,0,1,1630084817,2,6.0,37.0,5.0,16.0,4.0,1249638 -3099643,1630207991,1,27,0,1,1630084818,2,6.0,37.0,5.0,16.0,4.0,1249639 -3099644,1630208440,2,27,0,1,1630084819,1,6.0,-9.0,-9.0,-9.0,2.0,1249640 -3099645,1630208308,2,39,0,1,1630084820,2,6.0,27.0,1.0,-9.0,4.0,1249641 -3099646,1630208310,2,21,2,2,1630084820,1,6.0,-9.0,-9.0,-9.0,4.0,1249641 -3099647,1630208309,2,26,10,3,1630084820,2,6.0,-9.0,-9.0,-9.0,4.0,1249641 -3099648,1630208389,2,32,0,1,1630084821,1,6.0,56.0,1.0,-9.0,4.0,1249642 -3099649,1630208391,2,29,12,2,1630084821,1,6.0,-9.0,-9.0,-9.0,4.0,1249642 -3099650,1630208390,2,32,0,1,1630084822,1,6.0,56.0,1.0,-9.0,4.0,1249643 -3099651,1630208392,2,29,12,2,1630084822,1,6.0,-9.0,-9.0,-9.0,4.0,1249643 -3099652,1630208330,2,28,0,1,1630084823,2,6.0,40.0,1.0,15.0,4.0,1249644 -3099653,1630208332,2,23,5,2,1630084823,2,6.0,-9.0,-9.0,-9.0,4.0,1249644 -3099654,1630208044,1,29,0,1,1630084824,1,6.0,40.0,3.0,16.0,4.0,1249645 -3099655,1630208047,1,27,12,2,1630084824,1,6.0,40.0,5.0,-9.0,4.0,1249645 -3099656,1630208045,1,29,0,1,1630084825,1,6.0,40.0,3.0,16.0,4.0,1249646 -3099657,1630208048,1,27,12,2,1630084825,1,6.0,40.0,5.0,-9.0,4.0,1249646 -3099658,1630208398,2,28,0,1,1630084826,1,1.0,55.0,1.0,-9.0,4.0,1249647 -3099659,1630208399,2,28,0,1,1630084827,1,1.0,55.0,1.0,-9.0,4.0,1249648 -3099660,1630208367,2,39,0,1,1630084828,1,1.0,48.0,1.0,-9.0,4.0,1249649 -3099661,1630208174,1,29,0,1,1630084829,1,1.0,35.0,1.0,-9.0,4.0,1249650 -3099662,1630208114,1,30,0,1,1630084830,1,1.0,40.0,4.0,-9.0,4.0,1249651 -3099663,1630208115,1,30,0,1,1630084831,1,1.0,40.0,4.0,-9.0,4.0,1249652 -3099664,1630208060,1,29,0,1,1630084832,1,1.0,45.0,1.0,-9.0,4.0,1249653 -3099665,1630207965,1,33,0,1,1630084833,2,1.0,65.0,1.0,-9.0,4.0,1249654 -3099666,1630208486,4,30,0,1,1630084834,1,1.0,60.0,1.0,16.0,4.0,1249655 -3099667,1630208491,4,42,0,1,1630084835,1,1.0,40.0,3.0,-9.0,4.0,1249656 -3099668,1630208482,4,27,0,1,1630084836,1,1.0,40.0,1.0,-9.0,4.0,1249657 -3099669,1630208492,4,42,0,1,1630084837,1,1.0,40.0,3.0,-9.0,4.0,1249658 -3099670,1630208483,4,27,0,1,1630084838,1,1.0,40.0,1.0,-9.0,4.0,1249659 -3099671,1630208487,4,30,0,1,1630084839,1,1.0,60.0,1.0,16.0,4.0,1249660 -3099672,1630208484,4,27,0,1,1630084840,1,1.0,40.0,1.0,-9.0,4.0,1249661 -3099673,1630208406,2,34,0,1,1630084841,1,1.0,40.0,1.0,-9.0,4.0,1249662 -3099674,1630208232,2,34,0,1,1630084842,2,1.0,48.0,1.0,-9.0,4.0,1249663 -3099675,1630208363,2,30,0,1,1630084843,1,1.0,40.0,1.0,-9.0,4.0,1249664 -3099676,1630208364,2,30,0,1,1630084844,1,1.0,40.0,1.0,-9.0,4.0,1249665 -3099677,1630208407,2,34,0,1,1630084845,1,1.0,40.0,1.0,-9.0,4.0,1249666 -3099678,1630208328,2,28,0,1,1630084846,2,1.0,40.0,1.0,-9.0,4.0,1249667 -3099679,1630208272,2,32,0,1,1630084847,2,1.0,70.0,1.0,-9.0,4.0,1249668 -3099680,1630208377,2,42,0,1,1630084848,1,1.0,40.0,1.0,-9.0,4.0,1249669 -3099681,1630208076,1,29,0,1,1630084849,1,1.0,40.0,1.0,-9.0,2.0,1249670 -3099682,1630208072,1,29,0,1,1630084850,1,1.0,50.0,1.0,-9.0,4.0,1249671 -3099683,1630207977,1,26,0,1,1630084851,2,1.0,40.0,1.0,-9.0,4.0,1249672 -3099684,1630208073,1,29,0,1,1630084852,1,1.0,50.0,1.0,-9.0,4.0,1249673 -3099685,1630208081,1,34,0,1,1630084853,1,1.0,40.0,1.0,-9.0,4.0,1249674 -3099686,1630208074,1,29,0,1,1630084854,1,1.0,50.0,1.0,-9.0,4.0,1249675 -3099687,1630208075,1,29,0,1,1630084855,1,1.0,50.0,1.0,-9.0,4.0,1249676 -3099688,1630208077,1,29,0,1,1630084856,1,1.0,40.0,1.0,-9.0,2.0,1249677 -3099689,1630208138,1,26,0,1,1630084857,1,1.0,50.0,1.0,-9.0,4.0,1249678 -3099690,1630208139,1,26,0,1,1630084858,1,1.0,60.0,1.0,-9.0,4.0,1249679 -3099691,1630208002,1,26,0,1,1630084859,2,1.0,40.0,1.0,-9.0,4.0,1249680 -3099692,1630208322,2,43,0,1,1630084860,2,1.0,70.0,1.0,-9.0,4.0,1249681 -3099693,1630208324,2,9,2,2,1630084860,2,-9.0,-9.0,-9.0,6.0,-9.0,1249681 -3099694,1630208093,1,26,0,1,1630084861,1,3.0,40.0,2.0,-9.0,4.0,1249682 -3099695,1630208095,1,22,12,2,1630084861,1,1.0,40.0,5.0,-9.0,4.0,1249682 -3099696,1630208094,1,26,0,1,1630084862,1,3.0,40.0,2.0,-9.0,4.0,1249683 -3099697,1630208096,1,22,12,2,1630084862,1,1.0,40.0,5.0,-9.0,4.0,1249683 -3099698,1630208118,1,26,0,1,1630084863,1,1.0,45.0,1.0,-9.0,4.0,1249684 -3099699,1630208120,4,25,13,2,1630084863,2,1.0,35.0,1.0,-9.0,4.0,1249684 -3099700,1630208119,1,26,0,1,1630084864,1,1.0,45.0,1.0,-9.0,4.0,1249685 -3099701,1630208121,4,25,13,2,1630084864,2,1.0,35.0,1.0,-9.0,4.0,1249685 -3099702,1630208145,1,29,0,1,1630084865,1,1.0,50.0,1.0,16.0,4.0,1249686 -3099703,1630208147,1,34,12,2,1630084865,1,1.0,40.0,1.0,16.0,4.0,1249686 -3099704,1630208146,1,29,0,1,1630084866,1,1.0,50.0,1.0,16.0,4.0,1249687 -3099705,1630208148,1,34,12,2,1630084866,1,1.0,40.0,1.0,16.0,4.0,1249687 -3099706,1630208480,4,25,0,1,1630084867,1,1.0,70.0,5.0,-9.0,2.0,1249688 -3099707,1630208393,2,29,0,1,1630084868,1,1.0,40.0,1.0,-9.0,4.0,1249689 -3099708,1630208358,2,41,0,1,1630084869,2,1.0,40.0,1.0,-9.0,4.0,1249690 -3099709,1630208359,2,41,0,1,1630084870,2,1.0,40.0,1.0,-9.0,4.0,1249691 -3099710,1630208326,2,36,0,1,1630084871,2,1.0,40.0,1.0,-9.0,4.0,1249692 -3099711,1630208090,1,25,0,1,1630084872,1,1.0,40.0,1.0,-9.0,4.0,1249693 -3099712,1630207979,1,28,0,1,1630084873,2,1.0,40.0,1.0,-9.0,4.0,1249694 -3099713,1630208108,1,27,0,1,1630084874,1,1.0,40.0,1.0,-9.0,4.0,1249695 -3099714,1630207980,1,32,0,1,1630084875,2,1.0,50.0,1.0,-9.0,4.0,1249696 -3099715,1630208091,1,25,0,1,1630084876,1,1.0,40.0,1.0,-9.0,4.0,1249697 -3099716,1630207981,1,32,0,1,1630084877,2,1.0,50.0,1.0,-9.0,4.0,1249698 -3099717,1630208092,1,25,0,1,1630084878,1,1.0,40.0,1.0,-9.0,4.0,1249699 -3099718,1630208104,1,40,0,1,1630084879,1,1.0,43.0,1.0,-9.0,4.0,1249700 -3099719,1630208105,1,40,0,1,1630084880,1,1.0,43.0,1.0,-9.0,4.0,1249701 -3099720,1630207946,1,37,0,1,1630084881,1,1.0,33.0,1.0,-9.0,4.0,1249702 -3099721,1630207945,1,27,13,2,1630084881,2,6.0,40.0,5.0,-9.0,4.0,1249702 -3099722,1630208038,1,34,0,1,1630084882,1,1.0,17.0,3.0,-9.0,4.0,1249703 -3099723,1630208040,2,39,1,2,1630084882,2,1.0,45.0,1.0,-9.0,4.0,1249703 -3099724,1630208039,1,34,0,1,1630084883,1,1.0,17.0,3.0,-9.0,4.0,1249704 -3099725,1630208041,2,39,1,2,1630084883,2,1.0,45.0,1.0,-9.0,4.0,1249704 -3099726,1630208463,4,30,0,1,1630084884,2,1.0,44.0,1.0,-9.0,4.0,1249705 -3099727,1630208464,4,34,1,2,1630084884,1,1.0,40.0,2.0,-9.0,4.0,1249705 -3099728,1630208128,1,38,0,1,1630084885,1,1.0,40.0,1.0,-9.0,4.0,1249706 -3099729,1630208133,4,38,1,2,1630084885,2,1.0,40.0,1.0,-9.0,4.0,1249706 -3099730,1630208129,1,38,0,1,1630084886,1,1.0,40.0,1.0,-9.0,4.0,1249707 -3099731,1630208134,4,38,1,2,1630084886,2,1.0,40.0,1.0,-9.0,4.0,1249707 -3099732,1630208130,1,38,0,1,1630084887,1,1.0,40.0,1.0,-9.0,4.0,1249708 -3099733,1630208135,4,38,1,2,1630084887,2,1.0,40.0,1.0,-9.0,4.0,1249708 -3099734,1630208131,1,38,0,1,1630084888,1,1.0,40.0,1.0,-9.0,4.0,1249709 -3099735,1630208136,4,38,1,2,1630084888,2,1.0,40.0,1.0,-9.0,4.0,1249709 -3099736,1630208425,2,42,0,1,1630084889,1,3.0,-9.0,-9.0,-9.0,4.0,1249710 -3099737,1630208433,2,39,0,1,1630084890,1,6.0,-9.0,-9.0,-9.0,4.0,1249711 -3099738,1630208439,2,42,0,1,1630084891,1,6.0,-9.0,-9.0,-9.0,4.0,1249712 -3099739,1630208427,2,41,0,1,1630084892,1,3.0,40.0,5.0,-9.0,4.0,1249713 -3099740,1630208189,2,38,0,1,1630084893,2,6.0,-9.0,-9.0,-9.0,4.0,1249714 -3099741,1630208434,2,39,0,1,1630084894,1,6.0,-9.0,-9.0,-9.0,4.0,1249715 -3099742,1630208435,2,39,0,1,1630084895,1,6.0,-9.0,-9.0,-9.0,4.0,1249716 -3099743,1630208426,2,33,0,1,1630084896,1,3.0,-9.0,-9.0,15.0,4.0,1249717 -3099744,1630208242,2,41,0,1,1630084897,2,6.0,-9.0,-9.0,-9.0,2.0,1249718 -3099745,1630208243,2,41,0,1,1630084898,2,6.0,-9.0,-9.0,-9.0,2.0,1249719 -3099746,1630207898,1,27,0,1,1630084899,2,3.0,-9.0,-9.0,-9.0,4.0,1249720 -3099747,1630208054,1,39,0,1,1630084900,1,6.0,8.0,6.0,16.0,4.0,1249721 -3099748,1630208196,2,26,0,1,1630084901,2,6.0,-9.0,-9.0,-9.0,4.0,1249722 -3099749,1630208329,2,28,0,1,1630084902,2,6.0,-9.0,-9.0,15.0,4.0,1249723 -3099750,1630208442,2,38,0,1,1630084903,1,6.0,-9.0,-9.0,-9.0,4.0,1249724 -3099751,1630208394,2,35,0,1,1630084904,1,3.0,-9.0,-9.0,-9.0,4.0,1249725 -3099752,1630208431,2,28,0,1,1630084905,1,3.0,25.0,4.0,15.0,4.0,1249726 -3099753,1630208025,1,26,0,1,1630084906,2,6.0,-9.0,-9.0,16.0,4.0,1249727 -3099754,1630207905,1,28,0,1,1630084907,2,6.0,-9.0,-9.0,-9.0,4.0,1249728 -3099755,1630207906,1,28,0,1,1630084908,2,6.0,-9.0,-9.0,-9.0,4.0,1249729 -3099756,1630208207,2,29,0,1,1630084909,2,3.0,25.0,5.0,-9.0,4.0,1249730 -3099757,1630208208,2,10,2,2,1630084909,1,-9.0,-9.0,-9.0,7.0,-9.0,1249730 -3099758,1630208209,2,6,2,3,1630084909,1,-9.0,-9.0,-9.0,3.0,-9.0,1249730 -3099759,1630208494,4,26,0,1,1630084910,1,6.0,36.0,5.0,-9.0,4.0,1249731 -3099760,1630208495,4,25,12,2,1630084910,1,6.0,-9.0,-9.0,-9.0,4.0,1249731 -3099761,1630208355,2,36,0,1,1630084911,2,6.0,-9.0,-9.0,-9.0,4.0,1249732 -3099762,1630208356,2,34,13,2,1630084911,1,6.0,-9.0,-9.0,-9.0,4.0,1249732 -3099763,1630208306,2,26,0,1,1630084912,2,3.0,-9.0,-9.0,15.0,4.0,1249733 -3099764,1630208307,2,6,2,2,1630084912,2,-9.0,-9.0,-9.0,3.0,-9.0,1249733 -3099765,1630208348,2,43,0,1,1630084913,2,6.0,-9.0,-9.0,-9.0,4.0,1249734 -3099766,1630208349,2,0,2,2,1630084913,2,-9.0,-9.0,-9.0,-9.0,-9.0,1249734 -3099767,1630208346,2,40,0,1,1630084914,2,6.0,-9.0,-9.0,-9.0,4.0,1249735 -3099768,1630208347,2,21,2,2,1630084914,2,6.0,30.0,6.0,15.0,4.0,1249735 -3099769,1630208175,2,44,0,1,1630084915,2,3.0,-9.0,-9.0,15.0,4.0,1249736 -3099770,1630208176,2,12,2,2,1630084915,1,-9.0,-9.0,-9.0,9.0,-9.0,1249736 -3099771,1630208385,2,37,0,1,1630084916,1,1.0,40.0,6.0,-9.0,4.0,1249737 -3099772,1630207983,1,44,0,1,1630084917,2,1.0,40.0,1.0,-9.0,4.0,1249738 -3099773,1630208475,4,30,0,1,1630084918,2,1.0,40.0,1.0,-9.0,4.0,1249739 -3099774,1630208424,2,29,0,1,1630084919,1,1.0,40.0,1.0,-9.0,4.0,1249740 -3099775,1630208117,1,35,0,1,1630084920,1,1.0,22.0,1.0,16.0,4.0,1249741 -3099776,1630208113,1,27,0,1,1630084921,1,1.0,40.0,1.0,-9.0,4.0,1249742 -3099777,1630208368,2,53,0,1,1630084922,1,6.0,-9.0,-9.0,-9.0,4.0,1249743 -3099778,1630208369,2,60,10,2,1630084922,1,6.0,-9.0,-9.0,-9.0,2.0,1249743 -3099779,1630208370,2,58,10,3,1630084922,1,6.0,-9.0,-9.0,-9.0,2.0,1249743 -3099780,1630208339,2,45,0,1,1630084923,2,1.0,40.0,1.0,-9.0,4.0,1249744 -3099781,1630208019,1,51,0,1,1630084924,2,1.0,40.0,1.0,16.0,4.0,1249745 -3099782,1630208149,1,57,0,1,1630084925,1,1.0,45.0,2.0,-9.0,4.0,1249746 -3099783,1630208154,1,59,0,1,1630084926,1,1.0,50.0,1.0,-9.0,4.0,1249747 -3099784,1630208155,1,59,0,1,1630084927,1,1.0,50.0,1.0,-9.0,4.0,1249748 -3099785,1630208020,1,51,0,1,1630084928,2,1.0,40.0,1.0,16.0,4.0,1249749 -3099786,1630207949,1,59,0,1,1630084929,1,1.0,48.0,1.0,-9.0,4.0,1249750 -3099787,1630207947,1,59,1,2,1630084929,2,1.0,45.0,1.0,-9.0,4.0,1249750 -3099788,1630208436,2,58,0,1,1630084930,1,6.0,-9.0,-9.0,-9.0,4.0,1249751 -3099789,1630208432,2,57,0,1,1630084931,1,6.0,-9.0,-9.0,-9.0,2.0,1249752 -3099790,1630208382,2,64,0,1,1630084932,1,6.0,-9.0,-9.0,-9.0,2.0,1249753 -3099791,1630208210,2,60,0,1,1630084933,2,6.0,-9.0,-9.0,-9.0,4.0,1249754 -3099792,1630208098,1,62,0,1,1630084934,1,6.0,-9.0,-9.0,-9.0,2.0,1249755 -3099793,1630208281,2,58,0,1,1630084935,2,1.0,40.0,1.0,-9.0,4.0,1249756 -3099794,1630208199,2,55,0,1,1630084936,2,1.0,40.0,1.0,-9.0,4.0,1249757 -3099795,1630208327,2,59,0,1,1630084937,2,1.0,40.0,1.0,-9.0,4.0,1249758 -3099796,1630208376,2,59,0,1,1630084938,1,1.0,40.0,1.0,-9.0,4.0,1249759 -3099797,1630208357,2,50,0,1,1630084939,2,1.0,45.0,1.0,-9.0,4.0,1249760 -3099798,1630207918,1,60,0,1,1630084940,2,1.0,48.0,1.0,-9.0,4.0,1249761 -3099799,1630208188,2,61,0,1,1630084941,2,1.0,40.0,1.0,-9.0,4.0,1249762 -3099800,1630208023,1,48,0,1,1630084942,2,1.0,50.0,1.0,-9.0,4.0,1249763 -3099801,1630208428,2,56,0,1,1630084943,1,6.0,-9.0,-9.0,-9.0,4.0,1249764 -3099802,1630208292,2,60,0,1,1630084944,2,6.0,-9.0,-9.0,-9.0,4.0,1249765 -3099803,1630208259,2,45,0,1,1630084945,2,6.0,-9.0,-9.0,-9.0,4.0,1249766 -3099804,1630208338,2,62,0,1,1630084946,2,6.0,-9.0,-9.0,-9.0,4.0,1249767 -3099805,1630208192,2,57,0,1,1630084947,2,6.0,-9.0,-9.0,-9.0,4.0,1249768 -3099806,1630208402,2,64,0,1,1630084948,1,6.0,-9.0,-9.0,-9.0,4.0,1249769 -3099807,1630208257,2,51,0,1,1630084949,2,6.0,-9.0,-9.0,-9.0,4.0,1249770 -3099808,1630208271,2,48,0,1,1630084950,2,6.0,-9.0,-9.0,-9.0,4.0,1249771 -3099809,1630208198,2,51,0,1,1630084951,2,6.0,-9.0,-9.0,-9.0,4.0,1249772 -3099810,1630208231,2,54,0,1,1630084952,2,6.0,-9.0,-9.0,15.0,4.0,1249773 -3099811,1630208258,2,51,0,1,1630084953,2,6.0,-9.0,-9.0,-9.0,4.0,1249774 -3099812,1630208408,2,59,0,1,1630084954,1,6.0,-9.0,-9.0,-9.0,2.0,1249775 -3099813,1630208265,2,59,0,1,1630084955,2,3.0,-9.0,-9.0,-9.0,4.0,1249776 -3099814,1630208268,2,61,0,1,1630084956,2,6.0,-9.0,-9.0,-9.0,4.0,1249777 -3099815,1630208360,2,55,0,1,1630084957,1,6.0,-9.0,-9.0,-9.0,4.0,1249778 -3099816,1630208361,2,55,0,1,1630084958,1,6.0,-9.0,-9.0,-9.0,4.0,1249779 -3099817,1630208375,2,54,0,1,1630084959,1,3.0,-9.0,-9.0,-9.0,2.0,1249780 -3099818,1630208396,2,58,0,1,1630084960,1,6.0,-9.0,-9.0,-9.0,2.0,1249781 -3099819,1630208205,2,57,0,1,1630084961,2,6.0,-9.0,-9.0,-9.0,4.0,1249782 -3099820,1630208206,2,57,0,1,1630084962,2,6.0,-9.0,-9.0,-9.0,4.0,1249783 -3099821,1630208099,1,64,0,1,1630084963,1,6.0,-9.0,-9.0,-9.0,4.0,1249784 -3099822,1630208058,1,64,0,1,1630084964,1,6.0,-9.0,-9.0,-9.0,2.0,1249785 -3099823,1630208384,2,62,0,1,1630084965,1,3.0,-9.0,-9.0,-9.0,4.0,1249786 -3099824,1630208388,2,60,0,1,1630084966,1,6.0,-9.0,-9.0,-9.0,4.0,1249787 -3099825,1630208386,2,54,0,1,1630084967,1,6.0,45.0,5.0,-9.0,4.0,1249788 -3099826,1630208200,2,53,0,1,1630084968,2,6.0,-9.0,-9.0,-9.0,4.0,1249789 -3099827,1630208202,2,19,2,2,1630084968,2,6.0,-9.0,-9.0,15.0,4.0,1249789 -3099828,1630208191,2,62,0,1,1630084969,1,6.0,-9.0,-9.0,-9.0,4.0,1249790 -3099829,1630208190,2,48,1,2,1630084969,2,6.0,-9.0,-9.0,-9.0,4.0,1249790 -3099830,1630208221,2,46,0,1,1630084970,2,6.0,25.0,5.0,-9.0,4.0,1249791 -3099831,1630208222,2,20,2,2,1630084970,2,6.0,-9.0,-9.0,-9.0,4.0,1249791 -3099832,1630208423,2,61,0,1,1630084971,1,1.0,3.0,6.0,-9.0,4.0,1249792 -3099833,1630208443,2,80,0,1,1630084972,1,6.0,-9.0,-9.0,-9.0,4.0,1249793 -3099834,1630208448,2,77,0,1,1630084973,1,6.0,-9.0,-9.0,-9.0,2.0,1249794 -3099835,1630208454,1,69,0,1,1630084974,1,1.0,60.0,1.0,-9.0,4.0,1249795 -3099836,1630207831,2,87,0,1,1630084975,2,6.0,-9.0,-9.0,-9.0,4.0,1249796 -3099837,1630207859,2,68,0,1,1630084976,2,6.0,-9.0,-9.0,-9.0,4.0,1249797 -3099838,1630207850,2,78,0,1,1630084977,2,6.0,-9.0,-9.0,-9.0,4.0,1249798 -3099839,1630207844,2,69,0,1,1630084978,2,6.0,-9.0,-9.0,-9.0,4.0,1249799 -3099840,1630207822,2,87,0,1,1630084979,2,6.0,-9.0,-9.0,-9.0,4.0,1249800 -3099841,1630207843,2,86,0,1,1630084980,2,6.0,-9.0,-9.0,-9.0,4.0,1249801 -3099842,1630207805,2,76,0,1,1630084981,2,6.0,-9.0,-9.0,-9.0,4.0,1249802 -3099843,1630208066,1,24,0,1,1630084982,1,3.0,47.0,3.0,15.0,4.0,1249803 -3099844,1630208067,1,24,0,1,1630084983,1,3.0,47.0,3.0,15.0,4.0,1249804 -3099845,1630208068,1,24,0,1,1630084984,1,3.0,47.0,3.0,15.0,4.0,1249805 -3099846,1630208069,1,24,0,1,1630084985,1,3.0,47.0,3.0,15.0,4.0,1249806 -3099847,1630208070,1,24,0,1,1630084986,1,3.0,47.0,3.0,15.0,4.0,1249807 -3099848,1630208488,4,23,0,1,1630084987,1,1.0,80.0,1.0,-9.0,4.0,1249808 -3099849,1630208489,4,23,0,1,1630084988,1,1.0,80.0,1.0,-9.0,4.0,1249809 -3099850,1630208417,2,20,0,1,1630084989,1,1.0,40.0,1.0,-9.0,4.0,1249810 -3099851,1630208106,1,23,0,1,1630084990,1,1.0,40.0,1.0,-9.0,4.0,1249811 -3099852,1630208107,1,23,0,1,1630084991,1,1.0,40.0,1.0,-9.0,4.0,1249812 -3099853,1630208037,1,24,0,1,1630084992,1,1.0,45.0,1.0,-9.0,4.0,1249813 -3099854,1630207907,1,24,0,1,1630084993,2,1.0,40.0,1.0,-9.0,4.0,1249814 -3099855,1630207909,1,26,1,2,1630084993,1,6.0,40.0,6.0,16.0,4.0,1249814 -3099856,1630207908,1,24,0,1,1630084994,2,1.0,40.0,1.0,-9.0,4.0,1249815 -3099857,1630207910,1,26,1,2,1630084994,1,6.0,40.0,6.0,16.0,4.0,1249815 -3099858,1630208371,2,23,0,1,1630084995,1,6.0,40.0,1.0,15.0,4.0,1249816 -3099859,1630208373,2,62,6,2,1630084995,1,1.0,40.0,1.0,-9.0,4.0,1249816 -3099860,1630208063,1,24,0,1,1630084996,1,1.0,55.0,1.0,-9.0,4.0,1249817 -3099861,1630207957,1,24,0,1,1630084997,2,1.0,50.0,1.0,-9.0,4.0,1249818 -3099862,1630208064,1,24,0,1,1630084998,1,1.0,55.0,1.0,-9.0,4.0,1249819 -3099863,1630207943,1,22,0,1,1630084999,2,2.0,40.0,1.0,16.0,4.0,1249820 -3099864,1630207944,1,27,13,2,1630084999,1,1.0,60.0,1.0,-9.0,4.0,1249820 -3099865,1630207968,1,23,0,1,1630085000,2,1.0,45.0,1.0,-9.0,4.0,1249821 -3099866,1630207970,1,23,12,2,1630085000,2,1.0,24.0,1.0,-9.0,4.0,1249821 -3099867,1630208100,1,24,0,1,1630085001,1,1.0,40.0,1.0,-9.0,4.0,1249822 -3099868,1630208102,1,24,12,2,1630085001,1,1.0,40.0,1.0,-9.0,4.0,1249822 -3099869,1630207969,1,23,0,1,1630085002,2,1.0,45.0,1.0,-9.0,4.0,1249823 -3099870,1630207971,1,23,12,2,1630085002,2,1.0,24.0,1.0,-9.0,4.0,1249823 -3099871,1630208343,2,23,0,1,1630085003,2,6.0,15.0,4.0,15.0,4.0,1249824 -3099872,1630208344,2,23,0,1,1630085004,2,6.0,15.0,4.0,15.0,4.0,1249825 -3099873,1630208345,2,23,0,1,1630085005,2,6.0,15.0,4.0,15.0,4.0,1249826 -3099874,1630208078,1,24,0,1,1630085006,1,3.0,20.0,5.0,-9.0,4.0,1249827 -3099875,1630208172,1,22,0,1,1630085007,1,6.0,28.0,4.0,16.0,4.0,1249828 -3099876,1630208034,1,24,0,1,1630085008,2,6.0,-9.0,-9.0,16.0,4.0,1249829 -3099877,1630208173,1,22,0,1,1630085009,1,6.0,28.0,4.0,16.0,4.0,1249830 -3099878,1630208350,2,23,0,1,1630085010,2,3.0,35.0,6.0,-9.0,4.0,1249831 -3099879,1630208109,1,24,0,1,1630085011,1,3.0,50.0,5.0,-9.0,4.0,1249832 -3099880,1630207984,1,24,0,1,1630085012,2,6.0,40.0,6.0,16.0,4.0,1249833 -3099881,1630208110,1,24,0,1,1630085013,1,3.0,50.0,5.0,-9.0,4.0,1249834 -3099882,1630207995,1,24,0,1,1630085014,2,6.0,-9.0,-9.0,16.0,4.0,1249835 -3099883,1630208111,1,24,0,1,1630085015,1,3.0,50.0,5.0,-9.0,4.0,1249836 -3099884,1630208042,1,24,0,1,1630085016,1,6.0,-9.0,-9.0,15.0,4.0,1249837 -3099885,1630208043,1,24,0,1,1630085017,1,6.0,-9.0,-9.0,15.0,4.0,1249838 -3099886,1630207985,1,24,0,1,1630085018,2,6.0,40.0,6.0,16.0,4.0,1249839 -3099887,1630208015,1,21,0,1,1630085019,2,6.0,10.0,5.0,16.0,4.0,1249840 -3099888,1630208017,1,20,12,2,1630085019,2,6.0,20.0,4.0,15.0,4.0,1249840 -3099889,1630208183,2,24,0,1,1630085020,2,3.0,32.0,5.0,-9.0,4.0,1249841 -3099890,1630208184,2,8,2,2,1630085020,1,-9.0,-9.0,-9.0,4.0,-9.0,1249841 -3099891,1630208237,2,21,0,1,1630085021,2,3.0,-9.0,-9.0,-9.0,4.0,1249842 -3099892,1630208238,2,1,2,2,1630085021,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249842 -3099893,1630208005,1,24,0,1,1630085022,2,6.0,8.0,6.0,16.0,4.0,1249843 -3099894,1630208007,4,24,12,2,1630085022,2,6.0,-9.0,-9.0,16.0,4.0,1249843 -3099895,1630208438,2,22,0,1,1630085023,1,1.0,20.0,6.0,-9.0,4.0,1249844 -3099896,1630208112,1,23,0,1,1630085024,1,1.0,40.0,3.0,15.0,4.0,1249845 -3099897,1630208284,2,69,0,1,1630085025,1,6.0,-9.0,-9.0,-9.0,4.0,1249846 -3099898,1630208283,2,64,1,2,1630085025,2,6.0,-9.0,-9.0,-9.0,4.0,1249846 -3099899,1630207931,1,59,0,1,1630085026,2,6.0,-9.0,-9.0,-9.0,4.0,1249847 -3099900,1630207911,1,58,0,1,1630085027,2,1.0,55.0,1.0,-9.0,4.0,1249848 -3099901,1630208418,2,60,0,1,1630085028,1,1.0,40.0,1.0,-9.0,4.0,1249849 -3099902,1630208151,1,26,0,1,1630085029,1,1.0,60.0,4.0,-9.0,4.0,1249850 -3099903,1630208152,1,22,0,1,1630085030,1,6.0,-9.0,-9.0,15.0,4.0,1249851 -3099904,1630208153,1,24,11,2,1630085030,1,3.0,-9.0,-9.0,15.0,4.0,1249851 -3099905,1630207940,1,27,0,1,1630085031,1,1.0,50.0,1.0,-9.0,4.0,1249852 -3099906,1630207936,3,28,1,2,1630085031,2,6.0,45.0,4.0,-9.0,4.0,1249852 -3099907,1630208365,2,30,0,1,1630085032,1,1.0,40.0,1.0,-9.0,4.0,1249853 -3099908,1630207959,1,29,0,1,1630085033,2,1.0,45.0,1.0,-9.0,4.0,1249854 -3099909,1630207960,1,29,1,2,1630085033,1,6.0,45.0,6.0,16.0,4.0,1249854 -3099910,1630208353,2,25,0,1,1630085034,2,3.0,40.0,1.0,-9.0,4.0,1249855 -3099911,1630208354,2,5,2,2,1630085034,2,-9.0,-9.0,-9.0,2.0,-9.0,1249855 -3099912,1630208305,2,63,0,1,1630085035,2,1.0,40.0,1.0,-9.0,4.0,1249856 -3099913,1630208211,2,60,0,1,1630085036,2,6.0,-9.0,-9.0,-9.0,4.0,1249857 -3099914,1630208144,3,30,0,1,1630085037,1,1.0,45.0,1.0,-9.0,4.0,1249858 -3099915,1630207958,1,24,0,1,1630085038,2,1.0,50.0,1.0,-9.0,4.0,1249859 -3099916,1630208053,1,59,0,1,1630085039,1,1.0,55.0,1.0,-9.0,4.0,1249860 -3099917,1630208212,2,38,0,1,1630085040,2,3.0,28.0,6.0,-9.0,4.0,1249861 -3099918,1630208213,2,18,2,2,1630085040,1,3.0,-9.0,-9.0,14.0,4.0,1249861 -3099919,1630207871,1,74,0,1,1630085041,2,6.0,-9.0,-9.0,-9.0,4.0,1249862 -3099920,1630208493,4,26,0,1,1630085042,1,6.0,-9.0,-9.0,16.0,4.0,1249863 -3099921,1630208293,2,58,0,1,1630085043,2,1.0,40.0,1.0,-9.0,4.0,1249864 -3099922,1630208294,2,26,2,2,1630085043,1,3.0,-9.0,-9.0,-9.0,4.0,1249864 -3099923,1630208050,1,62,0,1,1630085044,1,1.0,40.0,1.0,16.0,4.0,1249865 -3099924,1630208051,1,38,12,2,1630085044,1,6.0,-9.0,-9.0,-9.0,4.0,1249865 -3099925,1630208201,2,53,0,1,1630085045,2,6.0,-9.0,-9.0,-9.0,4.0,1249866 -3099926,1630208203,2,19,2,2,1630085045,2,6.0,-9.0,-9.0,15.0,4.0,1249866 -3099927,1630208466,4,30,0,1,1630085046,1,1.0,60.0,1.0,16.0,4.0,1249867 -3099928,1630208465,4,33,1,2,1630085046,2,1.0,60.0,1.0,16.0,4.0,1249867 -3099929,1630207932,1,60,0,1,1630085047,2,6.0,-9.0,-9.0,-9.0,4.0,1249868 -3099930,1630208226,2,71,0,1,1630085048,1,6.0,-9.0,-9.0,-9.0,4.0,1249869 -3099931,1630208225,2,63,1,2,1630085048,2,1.0,40.0,1.0,-9.0,4.0,1249869 -3099932,1630208006,1,24,0,1,1630085049,2,6.0,8.0,6.0,16.0,4.0,1249870 -3099933,1630208008,4,24,12,2,1630085049,2,6.0,-9.0,-9.0,16.0,4.0,1249870 -3099934,1630208230,2,69,0,1,1630085050,1,6.0,-9.0,-9.0,-9.0,2.0,1249871 -3099935,1630208229,2,63,1,2,1630085050,2,6.0,-9.0,-9.0,-9.0,4.0,1249871 -3099936,1630208059,1,20,0,1,1630085051,1,1.0,40.0,5.0,15.0,4.0,1249872 -3099937,1630208089,1,40,0,1,1630085052,1,1.0,50.0,1.0,-9.0,4.0,1249873 -3099938,1630207864,1,69,0,1,1630085053,2,6.0,-9.0,-9.0,-9.0,4.0,1249874 -3099939,1630208321,2,35,0,1,1630085054,2,1.0,40.0,1.0,15.0,4.0,1249875 -3099940,1630208220,2,63,0,1,1630085055,2,6.0,30.0,5.0,-9.0,4.0,1249876 -3099941,1630207973,1,23,0,1,1630085056,1,1.0,35.0,1.0,16.0,4.0,1249877 -3099942,1630207974,4,22,11,2,1630085056,2,1.0,35.0,1.0,-9.0,4.0,1249877 -3099943,1630207972,1,22,11,3,1630085056,2,1.0,25.0,4.0,15.0,4.0,1249877 -3099944,1630208451,4,23,0,1,1630085057,2,6.0,-9.0,-9.0,16.0,4.0,1249878 -3099945,1630208452,4,24,15,2,1630085057,2,6.0,-9.0,-9.0,16.0,4.0,1249878 -3099946,1630208450,4,24,15,3,1630085057,2,6.0,-9.0,-9.0,16.0,4.0,1249878 -3099947,1630207836,2,65,0,1,1630085058,2,6.0,-9.0,-9.0,-9.0,4.0,1249879 -3099948,1630207838,2,66,1,2,1630085058,1,6.0,-9.0,-9.0,-9.0,2.0,1249879 -3099949,1630207839,2,67,5,3,1630085058,1,6.0,-9.0,-9.0,-9.0,2.0,1249879 -3099950,1630207837,2,57,5,4,1630085058,1,6.0,-9.0,-9.0,-9.0,4.0,1249879 -3099951,1630208046,1,29,0,1,1630085059,1,6.0,40.0,3.0,16.0,4.0,1249880 -3099952,1630208049,1,27,12,2,1630085059,1,6.0,40.0,5.0,-9.0,4.0,1249880 -3099953,1630208288,2,47,0,1,1630085060,2,1.0,40.0,1.0,-9.0,4.0,1249881 -3099954,1630208289,2,14,2,2,1630085060,2,-9.0,-9.0,-9.0,12.0,-9.0,1249881 -3099955,1630207821,2,75,0,1,1630085061,2,6.0,-9.0,-9.0,-9.0,4.0,1249882 -3099956,1630207886,2,78,0,1,1630085062,1,1.0,30.0,2.0,-9.0,2.0,1249883 -3099957,1630207885,1,67,1,2,1630085062,2,1.0,25.0,3.0,-9.0,4.0,1249883 -3099958,1630208150,1,27,0,1,1630085063,1,1.0,40.0,1.0,-9.0,4.0,1249884 -3099959,1630208420,2,36,0,1,1630085064,1,6.0,-9.0,-9.0,-9.0,4.0,1249885 -3099960,1630208071,1,24,0,1,1630085065,1,3.0,47.0,3.0,15.0,4.0,1249886 -3099961,1630208233,2,55,0,1,1630085066,2,6.0,4.0,5.0,-9.0,4.0,1249887 -3099962,1630208193,2,49,0,1,1630085067,2,1.0,50.0,1.0,-9.0,4.0,1249888 -3099963,1630208194,2,43,1,2,1630085067,1,1.0,55.0,1.0,-9.0,4.0,1249888 -3099964,1630208351,2,43,0,1,1630085068,2,1.0,40.0,1.0,15.0,4.0,1249889 -3099965,1630208352,2,19,2,2,1630085068,1,3.0,36.0,6.0,15.0,4.0,1249889 -3099966,1630208379,2,79,0,1,1630085069,1,6.0,-9.0,-9.0,-9.0,4.0,1249890 -3099967,1630208378,2,56,15,2,1630085069,1,6.0,-9.0,-9.0,-9.0,4.0,1249890 -3099968,1630208185,2,26,0,1,1630085070,2,6.0,40.0,5.0,15.0,4.0,1249891 -3099969,1630208186,2,7,2,2,1630085070,1,-9.0,-9.0,-9.0,4.0,-9.0,1249891 -3099970,1630208187,2,2,2,3,1630085070,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249891 -3099971,1630208195,2,24,0,1,1630085071,2,6.0,10.0,6.0,15.0,4.0,1249892 -3099972,1630208485,4,45,0,1,1630085072,1,1.0,36.0,1.0,-9.0,4.0,1249893 -3099973,1630207975,1,63,0,1,1630085073,2,6.0,-9.0,-9.0,-9.0,4.0,1249894 -3099974,1630207976,2,82,1,2,1630085073,1,6.0,-9.0,-9.0,-9.0,2.0,1249894 -3099975,1630208336,2,61,0,1,1630085074,2,6.0,-9.0,-9.0,-9.0,4.0,1249895 -3099976,1630208337,2,23,2,2,1630085074,2,6.0,-9.0,-9.0,16.0,4.0,1249895 -3099977,1630208240,2,37,0,1,1630085075,2,6.0,-9.0,-9.0,-9.0,4.0,1249896 -3099978,1630208241,2,13,2,2,1630085075,2,-9.0,-9.0,-9.0,9.0,-9.0,1249896 -3099979,1630208245,2,60,0,1,1630085076,1,1.0,84.0,1.0,-9.0,4.0,1249897 -3099980,1630208244,2,51,5,2,1630085076,2,4.0,50.0,1.0,-9.0,1.0,1249897 -3099981,1630207870,1,69,0,1,1630085077,2,6.0,-9.0,-9.0,-9.0,4.0,1249898 -3099982,1630208014,1,64,0,1,1630085078,1,1.0,65.0,1.0,-9.0,4.0,1249899 -3099983,1630208012,1,61,1,2,1630085078,2,6.0,-9.0,-9.0,-9.0,4.0,1249899 -3099984,1630207880,1,65,0,1,1630085079,2,6.0,-9.0,-9.0,-9.0,4.0,1249900 -3099985,1630208197,2,26,0,1,1630085080,2,6.0,-9.0,-9.0,-9.0,4.0,1249901 -3099986,1630208342,2,60,0,1,1630085081,2,6.0,-9.0,-9.0,-9.0,4.0,1249902 -3099987,1630207818,2,73,0,1,1630085082,2,6.0,-9.0,-9.0,-9.0,4.0,1249903 -3099988,1630208481,4,25,0,1,1630085083,1,1.0,70.0,5.0,-9.0,2.0,1249904 -3099989,1630208065,1,52,0,1,1630085084,1,1.0,40.0,1.0,-9.0,4.0,1249905 -3099990,1630208301,2,60,0,1,1630085085,2,1.0,50.0,6.0,-9.0,4.0,1249906 -3099991,1630208033,1,27,0,1,1630085086,1,1.0,45.0,1.0,-9.0,4.0,1249907 -3099992,1630208030,1,28,1,2,1630085086,2,1.0,52.0,4.0,-9.0,4.0,1249907 -3099993,1630208311,2,58,0,1,1630085087,2,3.0,-9.0,-9.0,15.0,4.0,1249908 -3099994,1630208312,2,28,2,2,1630085087,1,6.0,-9.0,-9.0,16.0,4.0,1249908 -3099995,1630208287,2,26,0,1,1630085088,1,1.0,52.0,1.0,-9.0,4.0,1249909 -3099996,1630208286,2,22,1,2,1630085088,2,1.0,40.0,1.0,-9.0,4.0,1249909 -3099997,1630208055,1,54,0,1,1630085089,1,3.0,30.0,6.0,-9.0,4.0,1249910 -3099998,1630208256,2,52,0,1,1630085090,1,1.0,40.0,1.0,-9.0,2.0,1249911 -3099999,1630208254,2,58,5,2,1630085090,2,1.0,35.0,1.0,-9.0,4.0,1249911 -3100000,1630208255,2,23,10,3,1630085090,2,1.0,12.0,3.0,15.0,4.0,1249911 -3100001,1630207890,1,68,0,1,1630085091,2,1.0,40.0,1.0,-9.0,4.0,1249912 -3100002,1630208323,2,43,0,1,1630085092,2,1.0,70.0,1.0,-9.0,4.0,1249913 -3100003,1630208325,2,9,2,2,1630085092,2,-9.0,-9.0,-9.0,6.0,-9.0,1249913 -3100004,1630208235,2,41,0,1,1630085093,2,1.0,40.0,1.0,-9.0,4.0,1249914 -3100005,1630208236,2,53,1,2,1630085093,1,1.0,45.0,1.0,-9.0,4.0,1249914 -3100006,1630208437,2,52,0,1,1630085094,1,1.0,32.0,6.0,-9.0,4.0,1249915 -3100007,1630208246,2,54,0,1,1630085095,2,6.0,-9.0,-9.0,-9.0,4.0,1249916 -3100008,1630208247,2,17,2,2,1630085095,2,6.0,-9.0,-9.0,13.0,4.0,1249916 -3100009,1630208422,2,23,0,1,1630085096,1,1.0,40.0,3.0,-9.0,4.0,1249917 -3100010,1630208429,2,62,0,1,1630085097,1,1.0,30.0,3.0,-9.0,4.0,1249918 -3100011,1630208219,2,53,0,1,1630085098,1,1.0,40.0,1.0,-9.0,2.0,1249919 -3100012,1630208218,2,53,1,2,1630085098,2,2.0,40.0,1.0,-9.0,4.0,1249919 -3100013,1630208282,2,58,0,1,1630085099,2,1.0,40.0,1.0,-9.0,4.0,1249920 -3100014,1630208490,4,23,0,1,1630085100,1,1.0,80.0,1.0,-9.0,4.0,1249921 -3100015,1630208444,2,69,0,1,1630085101,1,6.0,-9.0,-9.0,-9.0,2.0,1249922 -3100016,1630208430,2,53,0,1,1630085102,1,6.0,-9.0,-9.0,-9.0,4.0,1249923 -3100017,1630207950,1,59,0,1,1630085103,1,1.0,48.0,1.0,-9.0,4.0,1249924 -3100018,1630207948,1,59,1,2,1630085103,2,1.0,45.0,1.0,-9.0,4.0,1249924 -3100019,1630208036,1,59,0,1,1630085104,1,1.0,50.0,1.0,-9.0,4.0,1249925 -3100020,1630208035,1,58,1,2,1630085104,2,1.0,50.0,1.0,-9.0,4.0,1249925 -3100021,1630207851,2,73,0,1,1630085105,2,6.0,-9.0,-9.0,-9.0,4.0,1249926 -3100022,1630208479,4,27,0,1,1630085106,1,1.0,80.0,1.0,-9.0,4.0,1249927 -3100023,1630208477,4,26,1,2,1630085106,2,1.0,80.0,3.0,-9.0,4.0,1249927 -3100024,1630208478,4,19,5,3,1630085106,2,6.0,-9.0,-9.0,15.0,4.0,1249927 -3100025,1630207829,2,69,0,1,1630085107,2,6.0,-9.0,-9.0,-9.0,4.0,1249928 -3100026,1630207830,2,65,1,2,1630085107,1,6.0,-9.0,-9.0,-9.0,4.0,1249928 -3100027,1630208079,1,24,0,1,1630085108,1,3.0,20.0,5.0,-9.0,4.0,1249929 -3100028,1630208303,2,61,0,1,1630085109,1,6.0,-9.0,-9.0,-9.0,4.0,1249930 -3100029,1630208302,2,60,1,2,1630085109,2,6.0,-9.0,-9.0,-9.0,4.0,1249930 -3100030,1630208419,2,63,0,1,1630085110,1,6.0,-9.0,-9.0,-9.0,2.0,1249931 -3100031,1630207902,1,48,0,1,1630085111,2,2.0,55.0,4.0,-9.0,4.0,1249932 -3100032,1630207903,3,29,12,2,1630085111,1,1.0,38.0,1.0,-9.0,4.0,1249932 -3100033,1630208052,3,59,0,1,1630085112,1,1.0,40.0,1.0,-9.0,4.0,1249933 -3100034,1630207833,2,75,0,1,1630085113,2,6.0,-9.0,-9.0,-9.0,4.0,1249934 -3100035,1630207835,2,43,2,2,1630085113,1,6.0,-9.0,-9.0,-9.0,4.0,1249934 -3100036,1630208010,1,62,0,1,1630085114,2,6.0,-9.0,-9.0,-9.0,4.0,1249935 -3100037,1630207810,2,64,0,1,1630085115,1,6.0,-9.0,-9.0,-9.0,2.0,1249936 -3100038,1630207808,2,67,1,2,1630085115,2,3.0,40.0,2.0,-9.0,4.0,1249936 -3100039,1630207867,1,66,0,1,1630085116,2,6.0,-9.0,-9.0,-9.0,4.0,1249937 -3100040,1630207982,1,32,0,1,1630085117,2,1.0,50.0,1.0,-9.0,4.0,1249938 -3100041,1630208086,3,27,0,1,1630085118,1,1.0,70.0,1.0,-9.0,4.0,1249939 -3100042,1630208088,3,27,12,2,1630085118,1,1.0,70.0,1.0,-9.0,4.0,1249939 -3100043,1630208401,2,41,0,1,1630085119,1,3.0,50.0,4.0,-9.0,4.0,1249940 -3100044,1630208101,1,24,0,1,1630085120,1,1.0,40.0,1.0,-9.0,4.0,1249941 -3100045,1630208103,1,24,12,2,1630085120,1,1.0,40.0,1.0,-9.0,4.0,1249941 -3100046,1630208445,2,67,0,1,1630085121,1,6.0,-9.0,-9.0,-9.0,4.0,1249942 -3100047,1630207899,1,22,0,1,1630085122,2,1.0,45.0,4.0,-9.0,4.0,1249943 -3100048,1630207900,1,24,12,2,1630085122,2,1.0,50.0,1.0,-9.0,4.0,1249943 -3100049,1630207901,1,21,12,3,1630085122,2,1.0,35.0,3.0,-9.0,4.0,1249943 -3100050,1630208403,2,43,0,1,1630085123,1,1.0,30.0,1.0,-9.0,2.0,1249944 -3100051,1630208404,2,36,11,2,1630085123,1,1.0,40.0,1.0,15.0,4.0,1249944 -3100052,1630208132,1,38,0,1,1630085124,1,1.0,40.0,1.0,-9.0,4.0,1249945 -3100053,1630208137,4,38,1,2,1630085124,2,1.0,40.0,1.0,-9.0,4.0,1249945 -3100054,1630208395,2,57,0,1,1630085125,1,6.0,40.0,1.0,-9.0,4.0,1249946 -3100055,1630208453,1,66,0,1,1630085126,1,6.0,-9.0,-9.0,-9.0,4.0,1249947 -3100056,1630207845,2,76,0,1,1630085127,2,6.0,-9.0,-9.0,-9.0,4.0,1249948 -3100057,1630207846,2,18,7,2,1630085127,2,6.0,-9.0,-9.0,13.0,4.0,1249948 -3100058,1630207895,1,77,0,1,1630085128,1,6.0,-9.0,-9.0,-9.0,2.0,1249949 -3100059,1630207894,1,77,1,2,1630085128,2,6.0,-9.0,-9.0,-9.0,4.0,1249949 -3100060,1630208061,3,29,0,1,1630085129,1,1.0,43.0,1.0,-9.0,4.0,1249950 -3100061,1630208296,2,66,0,1,1630085130,1,6.0,-9.0,-9.0,-9.0,3.0,1249951 -3100062,1630208295,2,58,1,2,1630085130,2,6.0,-9.0,-9.0,-9.0,4.0,1249951 -3100063,1630208264,2,39,0,1,1630085131,2,3.0,-9.0,-9.0,-9.0,4.0,1249952 -3100064,1630208340,2,63,0,1,1630085132,2,6.0,-9.0,-9.0,-9.0,4.0,1249953 -3100065,1630208341,2,63,1,2,1630085132,1,1.0,40.0,1.0,-9.0,2.0,1249953 -3100066,1630207904,1,60,0,1,1630085133,2,6.0,-9.0,-9.0,-9.0,4.0,1249954 -3100067,1630208381,2,63,0,1,1630085134,1,1.0,40.0,1.0,-9.0,3.0,1249955 -3100068,1630208250,2,42,0,1,1630085135,2,1.0,52.0,1.0,-9.0,2.0,1249956 -3100069,1630208251,2,46,13,2,1630085135,2,1.0,30.0,4.0,-9.0,4.0,1249956 -3100070,1630208170,1,40,0,1,1630085136,1,6.0,-9.0,-9.0,-9.0,2.0,1249957 -3100071,1630208171,4,23,15,2,1630085136,2,6.0,30.0,6.0,-9.0,4.0,1249957 -3100072,1630207961,1,20,0,1,1630085137,2,1.0,30.0,3.0,15.0,4.0,1249958 -3100073,1630207962,1,21,12,2,1630085137,2,6.0,30.0,4.0,15.0,4.0,1249958 -3100074,1630208270,2,68,0,1,1630085138,1,6.0,-9.0,-9.0,-9.0,2.0,1249959 -3100075,1630208269,2,63,1,2,1630085138,2,6.0,-9.0,-9.0,-9.0,4.0,1249959 -3100076,1630208273,2,22,0,1,1630085139,2,3.0,-9.0,-9.0,-9.0,4.0,1249960 -3100077,1630208274,2,2,2,2,1630085139,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249960 -3100078,1630208275,2,13,5,3,1630085139,1,-9.0,-9.0,-9.0,9.0,-9.0,1249960 -3100079,1630208372,2,23,0,1,1630085140,1,6.0,40.0,1.0,15.0,4.0,1249961 -3100080,1630208374,2,62,6,2,1630085140,1,1.0,40.0,1.0,-9.0,4.0,1249961 -3100081,1630208263,2,63,0,1,1630085141,1,6.0,-9.0,-9.0,-9.0,4.0,1249962 -3100082,1630208262,2,62,1,2,1630085141,2,6.0,-9.0,-9.0,-9.0,4.0,1249962 -3100083,1630208024,1,37,0,1,1630085142,2,6.0,-9.0,-9.0,-9.0,4.0,1249963 -3100084,1630208285,2,63,0,1,1630085143,2,6.0,-9.0,-9.0,-9.0,4.0,1249964 -3100085,1630207942,1,27,0,1,1630085144,1,6.0,-9.0,-9.0,16.0,4.0,1249965 -3100086,1630207941,1,24,1,2,1630085144,2,6.0,-9.0,-9.0,16.0,4.0,1249965 -3100087,1630208457,1,70,0,1,1630085145,1,1.0,42.0,1.0,-9.0,4.0,1249966 -3100088,1630208097,1,24,0,1,1630085146,1,2.0,10.0,1.0,15.0,4.0,1249967 -3100089,1630208383,2,36,0,1,1630085147,1,1.0,40.0,1.0,-9.0,4.0,1249968 -3100090,1630208441,2,27,0,1,1630085148,1,6.0,-9.0,-9.0,-9.0,2.0,1249969 -3100091,1630208248,2,29,0,1,1630085149,2,1.0,40.0,4.0,-9.0,4.0,1249970 -3100092,1630208249,2,9,2,2,1630085149,1,-9.0,-9.0,-9.0,5.0,-9.0,1249970 -3100093,1630208252,2,22,0,1,1630085150,2,1.0,37.0,2.0,-9.0,4.0,1249971 -3100094,1630208253,2,2,2,2,1630085150,2,-9.0,-9.0,-9.0,-9.0,-9.0,1249971 -3100095,1630208260,2,58,0,1,1630085151,2,3.0,-9.0,-9.0,-9.0,2.0,1249972 -3100096,1630208261,2,45,12,2,1630085151,2,1.0,40.0,1.0,-9.0,4.0,1249972 -3100097,1630208297,2,38,0,1,1630085152,2,1.0,40.0,1.0,-9.0,4.0,1249973 -3100098,1630208298,2,4,2,2,1630085152,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249973 -3100099,1630208299,2,2,2,3,1630085152,1,-9.0,-9.0,-9.0,-9.0,-9.0,1249973 -3100100,1630208300,2,40,13,4,1630085152,1,6.0,-9.0,-9.0,-9.0,4.0,1249973 -3100101,1630207819,2,71,0,1,1630085153,2,6.0,-9.0,-9.0,-9.0,4.0,1249974 -3100102,1630207820,2,39,2,2,1630085153,1,6.0,-9.0,-9.0,-9.0,4.0,1249974 -3100103,1630208447,2,80,0,1,1630085154,1,6.0,-9.0,-9.0,-9.0,2.0,1249975 -3100104,1630208317,2,38,0,1,1630085155,2,3.0,34.0,5.0,-9.0,4.0,1249976 -3100105,1630208319,2,12,2,2,1630085155,2,-9.0,-9.0,-9.0,8.0,-9.0,1249976 -3100106,1630208318,2,8,2,3,1630085155,1,-9.0,-9.0,-9.0,5.0,-9.0,1249976 -3100107,1630208320,2,6,2,4,1630085155,2,-9.0,-9.0,-9.0,3.0,-9.0,1249976 -3100108,1630208290,2,47,0,1,1630085156,2,2.0,60.0,3.0,-9.0,4.0,1249977 -3100109,1630208334,2,57,0,1,1630085157,2,6.0,-9.0,-9.0,-9.0,4.0,1249978 -3100110,1630208335,2,59,1,2,1630085157,1,6.0,-9.0,-9.0,-9.0,4.0,1249978 -3100111,1630208056,1,40,0,1,1630085158,1,6.0,28.0,4.0,-9.0,4.0,1249979 -3100112,1630208278,2,57,0,1,1630085159,2,6.0,-9.0,-9.0,-9.0,4.0,1249980 -3100113,1630208279,2,38,2,2,1630085159,1,6.0,-9.0,-9.0,-9.0,4.0,1249980 -3100114,1630208280,2,20,2,3,1630085159,1,6.0,-9.0,-9.0,-9.0,4.0,1249980 -3100115,1630208162,1,38,0,1,1630085160,1,1.0,40.0,1.0,-9.0,4.0,1249981 -3100116,1630208169,1,42,12,2,1630085160,1,1.0,40.0,1.0,-9.0,4.0,1249981 -3100117,1630208476,4,22,0,1,1630085161,2,1.0,25.0,1.0,15.0,4.0,1249982 -3100118,1630207813,2,65,0,1,1630085162,2,6.0,30.0,5.0,-9.0,4.0,1249983 -3100119,1630208062,1,22,0,1,1630085163,1,3.0,-9.0,-9.0,15.0,4.0,1249984 -3100120,1630207857,2,66,0,1,1630085164,2,6.0,-9.0,-9.0,-9.0,4.0,1249985 -3100121,1630207858,2,21,10,2,1630085164,1,3.0,-9.0,-9.0,-9.0,4.0,1249985 -3100122,1630207978,1,45,0,1,1630085165,2,1.0,40.0,1.0,-9.0,4.0,1249986 -3100123,1630208304,2,64,0,1,1630085166,2,6.0,40.0,6.0,-9.0,4.0,1249987 -3100124,1630208084,4,28,0,1,1630085167,1,6.0,-9.0,-9.0,16.0,4.0,1249988 -3100125,1630208082,1,28,12,2,1630085167,1,6.0,-9.0,-9.0,16.0,4.0,1249988 -3100126,1630208083,1,25,12,3,1630085167,1,6.0,-9.0,-9.0,16.0,4.0,1249988 -3100127,1630208239,2,46,0,1,1630085168,2,1.0,50.0,1.0,-9.0,4.0,1249989 -3100128,1630208266,2,57,0,1,1630085169,2,6.0,-9.0,-9.0,-9.0,4.0,1249990 -3100129,1630208267,2,60,5,2,1630085169,1,6.0,-9.0,-9.0,-9.0,4.0,1249990 -3100130,1630208496,4,51,0,1,1630085170,1,1.0,70.0,1.0,16.0,4.0,1249991 -3100131,1630208214,2,56,0,1,1630085171,2,1.0,40.0,1.0,-9.0,4.0,1249992 -3100132,1630208215,2,56,1,2,1630085171,1,6.0,-9.0,-9.0,-9.0,2.0,1249992 -3100133,1630207806,2,94,0,1,1630085172,2,6.0,-9.0,-9.0,-9.0,4.0,1249993 -3100134,1630207888,1,83,0,1,1630085173,1,6.0,-9.0,-9.0,-9.0,2.0,1249994 -3100135,1630207887,1,82,1,2,1630085173,2,6.0,-9.0,-9.0,-9.0,4.0,1249994 -3100136,1630208387,2,24,0,1,1630085174,1,1.0,40.0,1.0,-9.0,4.0,1249995 -3100137,1630207824,2,71,0,1,1630085175,2,1.0,25.0,1.0,15.0,4.0,1249996 -3100138,1630207825,4,83,1,2,1630085175,1,6.0,-9.0,-9.0,-9.0,4.0,1249996 -3100139,1630207963,1,56,0,1,1630085176,2,1.0,35.0,1.0,-9.0,4.0,1249997 -3100140,1630207964,1,67,1,2,1630085176,1,6.0,-9.0,-9.0,-9.0,2.0,1249997 -3100141,1630207812,2,56,0,1,1630085177,2,6.0,-9.0,-9.0,-9.0,2.0,1249998 -3100142,1630207811,2,74,6,2,1630085177,2,6.0,-9.0,-9.0,-9.0,4.0,1249998 -3100143,1630207912,1,25,0,1,1630085178,2,3.0,20.0,5.0,-9.0,4.0,1249999 -3100144,1630207913,1,23,12,2,1630085178,2,1.0,45.0,1.0,16.0,4.0,1249999 -3100145,1630208016,1,21,0,1,1630085179,2,6.0,10.0,5.0,16.0,4.0,1250000 -3100146,1630208018,1,20,12,2,1630085179,2,6.0,20.0,4.0,15.0,4.0,1250000 -3100147,1630207877,1,68,0,1,1630085180,1,1.0,40.0,3.0,-9.0,4.0,1250001 -3100148,1630207876,1,74,1,2,1630085180,2,1.0,12.0,4.0,-9.0,4.0,1250001 -3100149,1630208027,1,56,0,1,1630085181,2,1.0,50.0,1.0,-9.0,4.0,1250002 -3100150,1630207855,2,41,0,1,1630085182,2,1.0,40.0,1.0,-9.0,4.0,1250003 -3100151,1630207854,2,71,6,2,1630085182,2,6.0,-9.0,-9.0,-9.0,4.0,1250003 -3100152,1630207923,1,58,0,1,1630085183,2,1.0,40.0,1.0,-9.0,4.0,1250004 -3100153,1630208380,2,54,0,1,1630085184,1,6.0,60.0,4.0,-9.0,2.0,1250005 -3100154,1630208021,1,20,0,1,1630085185,2,6.0,15.0,6.0,15.0,4.0,1250006 -3100155,1630208022,1,19,12,2,1630085185,2,1.0,30.0,1.0,15.0,4.0,1250006 -3100156,1630207879,1,86,0,1,1630085186,1,6.0,-9.0,-9.0,-9.0,4.0,1250007 -3100157,1630207878,1,76,1,2,1630085186,2,6.0,-9.0,-9.0,-9.0,4.0,1250007 -3100158,1630208397,2,60,0,1,1630085187,1,1.0,40.0,1.0,-9.0,4.0,1250008 -3100159,1630207875,1,81,0,1,1630085188,1,6.0,-9.0,-9.0,-9.0,4.0,1250009 -3100160,1630207874,1,79,1,2,1630085188,2,1.0,2.0,1.0,-9.0,4.0,1250009 -3100161,1630208331,2,28,0,1,1630085189,2,6.0,40.0,1.0,15.0,4.0,1250010 -3100162,1630208333,2,23,5,2,1630085189,2,6.0,-9.0,-9.0,-9.0,4.0,1250010 -3100163,1630208057,1,58,0,1,1630085190,1,1.0,39.0,3.0,-9.0,4.0,1250011 -3100164,1630208223,2,32,0,1,1630085191,2,1.0,40.0,1.0,15.0,2.0,1250012 -3100165,1630208224,2,11,2,2,1630085191,1,-9.0,-9.0,-9.0,8.0,-9.0,1250012 -3100166,1630208461,4,31,0,1,1630085192,1,1.0,40.0,1.0,16.0,4.0,1250013 -3100167,1630208459,4,30,1,2,1630085192,2,6.0,-9.0,-9.0,-9.0,4.0,1250013 -3100168,1630208462,4,29,12,3,1630085192,1,1.0,40.0,1.0,-9.0,4.0,1250013 -3100169,1630208460,4,25,12,4,1630085192,2,6.0,-9.0,-9.0,15.0,4.0,1250013 -3100170,1630207861,2,84,0,1,1630085193,1,6.0,-9.0,-9.0,-9.0,2.0,1250014 -3100171,1630207860,2,76,1,2,1630085193,2,6.0,-9.0,-9.0,-9.0,4.0,1250014 -3100172,1630207988,1,32,0,1,1630085194,1,1.0,40.0,3.0,16.0,4.0,1250015 -3100173,1630207986,1,40,12,2,1630085194,2,1.0,40.0,1.0,16.0,4.0,1250015 -3100174,1630207987,1,30,13,3,1630085194,2,2.0,40.0,3.0,16.0,4.0,1250015 -3100175,1630207866,1,86,0,1,1630085195,1,6.0,-9.0,-9.0,-9.0,2.0,1250016 -3100176,1630207865,1,74,1,2,1630085195,2,1.0,24.0,3.0,-9.0,4.0,1250016 -3100177,1630208291,2,63,0,1,1630085196,2,6.0,-9.0,-9.0,-9.0,4.0,1250017 -3100178,1630207896,1,22,0,1,1630085197,2,1.0,30.0,4.0,-9.0,4.0,1250018 -3100179,1630207897,1,27,13,2,1630085197,1,1.0,40.0,3.0,-9.0,4.0,1250018 -3100180,1630208883,2,54,0,1,1630085198,2,3.0,30.0,5.0,15.0,4.0,1250019 -3100181,1630208679,1,33,0,1,1630085199,2,1.0,40.0,1.0,-9.0,4.0,1250020 -3100182,1630208681,1,28,15,2,1630085199,2,1.0,30.0,1.0,16.0,4.0,1250020 -3100183,1630208685,1,28,15,3,1630085199,1,1.0,65.0,1.0,-9.0,4.0,1250020 -3100184,1630208687,1,25,15,4,1630085199,1,1.0,50.0,1.0,-9.0,4.0,1250020 -3100185,1630208683,1,24,15,5,1630085199,2,1.0,15.0,4.0,16.0,4.0,1250020 -3100186,1630209187,2,26,0,1,1630085200,2,1.0,50.0,1.0,-9.0,4.0,1250021 -3100187,1630209190,2,27,13,2,1630085200,1,1.0,40.0,1.0,-9.0,4.0,1250021 -3100188,1630209188,2,26,0,1,1630085201,2,1.0,50.0,1.0,-9.0,4.0,1250022 -3100189,1630209191,2,27,13,2,1630085201,1,1.0,40.0,1.0,-9.0,4.0,1250022 -3100190,1630208660,1,37,0,1,1630085202,1,1.0,50.0,3.0,-9.0,4.0,1250023 -3100191,1630208659,1,39,13,2,1630085202,2,1.0,45.0,3.0,-9.0,4.0,1250023 -3100192,1630208652,1,31,0,1,1630085203,2,1.0,50.0,1.0,-9.0,4.0,1250024 -3100193,1630208653,1,34,13,2,1630085203,1,1.0,70.0,1.0,-9.0,4.0,1250024 -3100194,1630209681,2,27,0,1,1630085204,1,6.0,-9.0,-9.0,-9.0,2.0,1250025 -3100195,1630209423,2,28,0,1,1630085205,2,6.0,40.0,1.0,15.0,4.0,1250026 -3100196,1630209424,2,23,5,2,1630085205,2,6.0,-9.0,-9.0,-9.0,4.0,1250026 -3100197,1630209563,2,29,0,1,1630085206,1,1.0,40.0,1.0,-9.0,4.0,1250027 -3100198,1630209403,2,28,0,1,1630085207,2,1.0,40.0,1.0,-9.0,4.0,1250028 -3100199,1630208988,2,32,0,1,1630085208,2,1.0,40.0,1.0,-9.0,4.0,1250029 -3100200,1630209427,2,38,0,1,1630085209,2,1.0,45.0,1.0,-9.0,4.0,1250030 -3100201,1630208989,2,32,0,1,1630085210,2,1.0,40.0,1.0,-9.0,4.0,1250031 -3100202,1630209404,2,28,0,1,1630085211,2,1.0,40.0,1.0,-9.0,4.0,1250032 -3100203,1630209683,2,35,0,1,1630085212,1,1.0,40.0,1.0,-9.0,4.0,1250033 -3100204,1630209590,2,44,0,1,1630085213,1,1.0,40.0,1.0,-9.0,4.0,1250034 -3100205,1630209252,2,29,0,1,1630085214,2,1.0,40.0,1.0,16.0,4.0,1250035 -3100206,1630208990,2,32,0,1,1630085215,2,1.0,40.0,1.0,-9.0,4.0,1250036 -3100207,1630209004,2,25,0,1,1630085216,2,1.0,40.0,1.0,-9.0,4.0,1250037 -3100208,1630208769,2,26,0,1,1630085217,2,1.0,50.0,1.0,-9.0,4.0,1250038 -3100209,1630209167,2,32,0,1,1630085218,2,1.0,70.0,1.0,-9.0,4.0,1250039 -3100210,1630209405,2,28,0,1,1630085219,2,1.0,40.0,1.0,-9.0,4.0,1250040 -3100211,1630209753,4,37,0,1,1630085220,2,1.0,30.0,1.0,-9.0,4.0,1250041 -3100212,1630209754,4,37,0,1,1630085221,2,1.0,30.0,1.0,-9.0,4.0,1250042 -3100213,1630209755,4,37,0,1,1630085222,2,1.0,30.0,1.0,-9.0,4.0,1250043 -3100214,1630209768,3,34,0,1,1630085223,2,1.0,80.0,2.0,-9.0,4.0,1250044 -3100215,1630208714,1,31,0,1,1630085224,1,2.0,70.0,1.0,-9.0,4.0,1250045 -3100216,1630209367,2,35,0,1,1630085225,2,1.0,40.0,1.0,15.0,4.0,1250046 -3100217,1630209640,2,36,0,1,1630085226,1,1.0,40.0,1.0,-9.0,4.0,1250047 -3100218,1630209100,3,44,0,1,1630085227,2,1.0,40.0,1.0,-9.0,4.0,1250048 -3100219,1630209096,2,60,5,2,1630085227,2,6.0,-9.0,-9.0,-9.0,4.0,1250048 -3100220,1630209098,2,74,6,3,1630085227,1,6.0,-9.0,-9.0,-9.0,2.0,1250048 -3100221,1630208957,2,27,0,1,1630085228,2,1.0,27.0,1.0,15.0,4.0,1250049 -3100222,1630208959,2,1,2,2,1630085228,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250049 -3100223,1630208958,2,33,13,3,1630085228,1,3.0,40.0,1.0,15.0,4.0,1250049 -3100224,1630209511,2,43,0,1,1630085229,2,1.0,40.0,1.0,15.0,4.0,1250050 -3100225,1630209513,2,19,2,2,1630085229,1,3.0,36.0,6.0,15.0,4.0,1250050 -3100226,1630209512,2,43,0,1,1630085230,2,1.0,40.0,1.0,15.0,4.0,1250051 -3100227,1630209514,2,19,2,2,1630085230,1,3.0,36.0,6.0,15.0,4.0,1250051 -3100228,1630209743,4,29,0,1,1630085231,1,1.0,45.0,1.0,-9.0,4.0,1250052 -3100229,1630209745,4,26,1,2,1630085231,2,6.0,30.0,6.0,-9.0,4.0,1250052 -3100230,1630209027,2,29,0,1,1630085232,1,1.0,20.0,5.0,-9.0,4.0,1250053 -3100231,1630209025,2,49,6,2,1630085232,2,1.0,35.0,1.0,15.0,4.0,1250053 -3100232,1630209035,2,28,0,1,1630085233,2,1.0,40.0,5.0,16.0,4.0,1250054 -3100233,1630209036,2,29,12,2,1630085233,2,1.0,40.0,1.0,-9.0,4.0,1250054 -3100234,1630209005,2,42,0,1,1630085234,2,1.0,52.0,1.0,-9.0,2.0,1250055 -3100235,1630209008,2,46,13,2,1630085234,2,1.0,30.0,4.0,-9.0,4.0,1250055 -3100236,1630209006,2,42,0,1,1630085235,2,1.0,52.0,1.0,-9.0,2.0,1250056 -3100237,1630209009,2,46,13,2,1630085235,2,1.0,30.0,4.0,-9.0,4.0,1250056 -3100238,1630208678,1,26,0,1,1630085236,1,1.0,40.0,1.0,-9.0,4.0,1250057 -3100239,1630208677,1,36,13,2,1630085236,2,1.0,20.0,4.0,-9.0,4.0,1250057 -3100240,1630209639,2,34,0,1,1630085237,1,1.0,60.0,1.0,-9.0,4.0,1250058 -3100241,1630209591,2,29,0,1,1630085238,1,1.0,40.0,1.0,-9.0,4.0,1250059 -3100242,1630209503,2,41,0,1,1630085239,2,1.0,45.0,1.0,-9.0,4.0,1250060 -3100243,1630209528,2,41,0,1,1630085240,2,1.0,40.0,1.0,-9.0,4.0,1250061 -3100244,1630209592,2,29,0,1,1630085241,1,1.0,40.0,1.0,-9.0,4.0,1250062 -3100245,1630209696,2,42,0,1,1630085242,1,2.0,60.0,1.0,-9.0,2.0,1250063 -3100246,1630209381,2,36,0,1,1630085243,2,1.0,40.0,1.0,-9.0,4.0,1250064 -3100247,1630209571,2,36,0,1,1630085244,1,1.0,40.0,1.0,-9.0,4.0,1250065 -3100248,1630209572,2,36,0,1,1630085245,1,1.0,40.0,1.0,-9.0,4.0,1250066 -3100249,1630209137,2,42,0,1,1630085246,1,1.0,40.0,1.0,-9.0,4.0,1250067 -3100250,1630209131,2,37,1,2,1630085246,2,1.0,60.0,1.0,-9.0,4.0,1250067 -3100251,1630209143,2,16,2,3,1630085246,2,6.0,-9.0,-9.0,12.0,-9.0,1250067 -3100252,1630209134,2,7,2,4,1630085246,1,-9.0,-9.0,-9.0,3.0,-9.0,1250067 -3100253,1630209140,2,19,4,5,1630085246,1,6.0,-9.0,-9.0,15.0,4.0,1250067 -3100254,1630209138,2,42,0,1,1630085247,1,1.0,40.0,1.0,-9.0,4.0,1250068 -3100255,1630209132,2,37,1,2,1630085247,2,1.0,60.0,1.0,-9.0,4.0,1250068 -3100256,1630209144,2,16,2,3,1630085247,2,6.0,-9.0,-9.0,12.0,-9.0,1250068 -3100257,1630209135,2,7,2,4,1630085247,1,-9.0,-9.0,-9.0,3.0,-9.0,1250068 -3100258,1630209141,2,19,4,5,1630085247,1,6.0,-9.0,-9.0,15.0,4.0,1250068 -3100259,1630209044,2,38,0,1,1630085248,1,1.0,40.0,1.0,-9.0,4.0,1250069 -3100260,1630209040,2,32,1,2,1630085248,2,1.0,40.0,3.0,16.0,4.0,1250069 -3100261,1630209042,2,10,2,3,1630085248,1,-9.0,-9.0,-9.0,7.0,-9.0,1250069 -3100262,1630209245,2,26,0,1,1630085249,1,1.0,52.0,1.0,-9.0,4.0,1250070 -3100263,1630209243,2,22,1,2,1630085249,2,1.0,40.0,1.0,-9.0,4.0,1250070 -3100264,1630209246,2,26,0,1,1630085250,1,1.0,52.0,1.0,-9.0,4.0,1250071 -3100265,1630209244,2,22,1,2,1630085250,2,1.0,40.0,1.0,-9.0,4.0,1250071 -3100266,1630208950,2,41,0,1,1630085251,2,1.0,40.0,1.0,-9.0,4.0,1250072 -3100267,1630208952,2,53,1,2,1630085251,1,1.0,45.0,1.0,-9.0,4.0,1250072 -3100268,1630208730,2,40,0,1,1630085252,2,1.0,40.0,1.0,-9.0,4.0,1250073 -3100269,1630208734,2,52,1,2,1630085252,1,1.0,40.0,1.0,-9.0,4.0,1250073 -3100270,1630208731,2,40,0,1,1630085253,2,1.0,40.0,1.0,-9.0,4.0,1250074 -3100271,1630208735,2,52,1,2,1630085253,1,1.0,40.0,1.0,-9.0,4.0,1250074 -3100272,1630208951,2,41,0,1,1630085254,2,1.0,40.0,1.0,-9.0,4.0,1250075 -3100273,1630208953,2,53,1,2,1630085254,1,1.0,45.0,1.0,-9.0,4.0,1250075 -3100274,1630208732,2,40,0,1,1630085255,2,1.0,40.0,1.0,-9.0,4.0,1250076 -3100275,1630208736,2,52,1,2,1630085255,1,1.0,40.0,1.0,-9.0,4.0,1250076 -3100276,1630208636,1,34,0,1,1630085256,2,1.0,65.0,1.0,-9.0,4.0,1250077 -3100277,1630208637,1,42,13,2,1630085256,1,1.0,43.0,1.0,-9.0,4.0,1250077 -3100278,1630208716,1,38,0,1,1630085257,1,1.0,40.0,1.0,-9.0,4.0,1250078 -3100279,1630208717,4,38,1,2,1630085257,2,1.0,40.0,1.0,-9.0,4.0,1250078 -3100280,1630209391,2,29,0,1,1630085258,2,6.0,-9.0,-9.0,-9.0,4.0,1250079 -3100281,1630209393,2,14,2,2,1630085258,1,-9.0,-9.0,-9.0,9.0,-9.0,1250079 -3100282,1630209395,2,4,2,3,1630085258,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250079 -3100283,1630209397,2,2,2,4,1630085258,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250079 -3100284,1630209399,2,45,6,5,1630085258,1,3.0,-9.0,-9.0,-9.0,4.0,1250079 -3100285,1630208849,2,34,0,1,1630085259,2,3.0,40.0,1.0,-9.0,4.0,1250080 -3100286,1630208850,2,15,2,2,1630085259,1,-9.0,-9.0,-9.0,12.0,-9.0,1250080 -3100287,1630208853,2,14,2,3,1630085259,2,-9.0,-9.0,-9.0,10.0,-9.0,1250080 -3100288,1630208851,2,12,2,4,1630085259,1,-9.0,-9.0,-9.0,7.0,-9.0,1250080 -3100289,1630208852,2,8,2,5,1630085259,1,-9.0,-9.0,-9.0,5.0,-9.0,1250080 -3100290,1630209392,2,29,0,1,1630085260,2,6.0,-9.0,-9.0,-9.0,4.0,1250081 -3100291,1630209394,2,14,2,2,1630085260,1,-9.0,-9.0,-9.0,9.0,-9.0,1250081 -3100292,1630209396,2,4,2,3,1630085260,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250081 -3100293,1630209398,2,2,2,4,1630085260,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250081 -3100294,1630209400,2,45,6,5,1630085260,1,3.0,-9.0,-9.0,-9.0,4.0,1250081 -3100295,1630208749,2,34,0,1,1630085261,2,3.0,-9.0,-9.0,15.0,4.0,1250082 -3100296,1630208753,2,15,2,2,1630085261,2,-9.0,-9.0,-9.0,12.0,-9.0,1250082 -3100297,1630208757,2,11,2,3,1630085261,2,-9.0,-9.0,-9.0,8.0,-9.0,1250082 -3100298,1630208761,2,9,2,4,1630085261,2,-9.0,-9.0,-9.0,6.0,-9.0,1250082 -3100299,1630208765,2,6,2,5,1630085261,2,-9.0,-9.0,-9.0,3.0,-9.0,1250082 -3100300,1630208750,2,34,0,1,1630085262,2,3.0,-9.0,-9.0,15.0,4.0,1250083 -3100301,1630208754,2,15,2,2,1630085262,2,-9.0,-9.0,-9.0,12.0,-9.0,1250083 -3100302,1630208758,2,11,2,3,1630085262,2,-9.0,-9.0,-9.0,8.0,-9.0,1250083 -3100303,1630208762,2,9,2,4,1630085262,2,-9.0,-9.0,-9.0,6.0,-9.0,1250083 -3100304,1630208766,2,6,2,5,1630085262,2,-9.0,-9.0,-9.0,3.0,-9.0,1250083 -3100305,1630208751,2,34,0,1,1630085263,2,3.0,-9.0,-9.0,15.0,4.0,1250084 -3100306,1630208755,2,15,2,2,1630085263,2,-9.0,-9.0,-9.0,12.0,-9.0,1250084 -3100307,1630208759,2,11,2,3,1630085263,2,-9.0,-9.0,-9.0,8.0,-9.0,1250084 -3100308,1630208763,2,9,2,4,1630085263,2,-9.0,-9.0,-9.0,6.0,-9.0,1250084 -3100309,1630208767,2,6,2,5,1630085263,2,-9.0,-9.0,-9.0,3.0,-9.0,1250084 -3100310,1630208752,2,34,0,1,1630085264,2,3.0,-9.0,-9.0,15.0,4.0,1250085 -3100311,1630208756,2,15,2,2,1630085264,2,-9.0,-9.0,-9.0,12.0,-9.0,1250085 -3100312,1630208760,2,11,2,3,1630085264,2,-9.0,-9.0,-9.0,8.0,-9.0,1250085 -3100313,1630208764,2,9,2,4,1630085264,2,-9.0,-9.0,-9.0,6.0,-9.0,1250085 -3100314,1630208768,2,6,2,5,1630085264,2,-9.0,-9.0,-9.0,3.0,-9.0,1250085 -3100315,1630209286,2,33,0,1,1630085265,2,6.0,32.0,6.0,-9.0,4.0,1250086 -3100316,1630209290,2,12,2,2,1630085265,2,-9.0,-9.0,-9.0,9.0,-9.0,1250086 -3100317,1630209292,2,8,2,3,1630085265,2,-9.0,-9.0,-9.0,5.0,-9.0,1250086 -3100318,1630209294,2,6,2,4,1630085265,2,-9.0,-9.0,-9.0,3.0,-9.0,1250086 -3100319,1630209288,2,0,2,5,1630085265,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250086 -3100320,1630209287,2,33,0,1,1630085266,2,6.0,32.0,6.0,-9.0,4.0,1250087 -3100321,1630209291,2,12,2,2,1630085266,2,-9.0,-9.0,-9.0,9.0,-9.0,1250087 -3100322,1630209293,2,8,2,3,1630085266,2,-9.0,-9.0,-9.0,5.0,-9.0,1250087 -3100323,1630209295,2,6,2,4,1630085266,2,-9.0,-9.0,-9.0,3.0,-9.0,1250087 -3100324,1630209289,2,0,2,5,1630085266,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250087 -3100325,1630209083,2,37,0,1,1630085267,2,6.0,-9.0,-9.0,-9.0,4.0,1250088 -3100326,1630209089,2,40,1,2,1630085267,1,6.0,-9.0,-9.0,-9.0,4.0,1250088 -3100327,1630209085,2,8,2,3,1630085267,1,-9.0,-9.0,-9.0,3.0,-9.0,1250088 -3100328,1630209087,2,5,2,4,1630085267,1,-9.0,-9.0,-9.0,2.0,-9.0,1250088 -3100329,1630209121,2,42,0,1,1630085268,1,6.0,-9.0,-9.0,-9.0,4.0,1250089 -3100330,1630209115,2,38,1,2,1630085268,2,3.0,-9.0,-9.0,-9.0,4.0,1250089 -3100331,1630209118,2,19,4,3,1630085268,2,6.0,-9.0,-9.0,-9.0,4.0,1250089 -3100332,1630209124,2,18,4,4,1630085268,1,6.0,-9.0,-9.0,-9.0,4.0,1250089 -3100333,1630209122,2,42,0,1,1630085269,1,6.0,-9.0,-9.0,-9.0,4.0,1250090 -3100334,1630209116,2,38,1,2,1630085269,2,3.0,-9.0,-9.0,-9.0,4.0,1250090 -3100335,1630209119,2,19,4,3,1630085269,2,6.0,-9.0,-9.0,-9.0,4.0,1250090 -3100336,1630209125,2,18,4,4,1630085269,1,6.0,-9.0,-9.0,-9.0,4.0,1250090 -3100337,1630209123,2,42,0,1,1630085270,1,6.0,-9.0,-9.0,-9.0,4.0,1250091 -3100338,1630209117,2,38,1,2,1630085270,2,3.0,-9.0,-9.0,-9.0,4.0,1250091 -3100339,1630209120,2,19,4,3,1630085270,2,6.0,-9.0,-9.0,-9.0,4.0,1250091 -3100340,1630209126,2,18,4,4,1630085270,1,6.0,-9.0,-9.0,-9.0,4.0,1250091 -3100341,1630208872,2,32,0,1,1630085271,2,6.0,-9.0,-9.0,16.0,4.0,1250092 -3100342,1630209617,2,28,0,1,1630085272,1,3.0,-9.0,-9.0,-9.0,4.0,1250093 -3100343,1630208791,2,38,0,1,1630085273,2,6.0,-9.0,-9.0,-9.0,4.0,1250094 -3100344,1630209170,2,43,0,1,1630085274,2,6.0,-9.0,-9.0,-9.0,4.0,1250095 -3100345,1630209171,2,43,0,1,1630085275,2,6.0,-9.0,-9.0,-9.0,4.0,1250096 -3100346,1630208965,2,41,0,1,1630085276,2,6.0,-9.0,-9.0,-9.0,4.0,1250097 -3100347,1630209678,2,39,0,1,1630085277,1,6.0,-9.0,-9.0,-9.0,4.0,1250098 -3100348,1630209565,2,26,0,1,1630085278,1,6.0,-9.0,-9.0,-9.0,4.0,1250099 -3100349,1630208987,2,44,0,1,1630085279,2,3.0,8.0,6.0,-9.0,4.0,1250100 -3100350,1630209680,2,42,0,1,1630085280,1,6.0,-9.0,-9.0,-9.0,4.0,1250101 -3100351,1630209566,2,26,0,1,1630085281,1,6.0,-9.0,-9.0,-9.0,4.0,1250102 -3100352,1630209629,2,36,0,1,1630085282,1,6.0,-9.0,-9.0,-9.0,4.0,1250103 -3100353,1630208962,2,41,0,1,1630085283,2,6.0,-9.0,-9.0,-9.0,2.0,1250104 -3100354,1630208814,2,40,0,1,1630085284,2,6.0,-9.0,-9.0,12.0,4.0,1250105 -3100355,1630209378,2,27,0,1,1630085285,2,3.0,-9.0,-9.0,-9.0,4.0,1250106 -3100356,1630208873,2,32,0,1,1630085286,2,6.0,-9.0,-9.0,16.0,4.0,1250107 -3100357,1630209645,2,33,0,1,1630085287,1,3.0,-9.0,-9.0,15.0,4.0,1250108 -3100358,1630209747,3,39,0,1,1630085288,1,6.0,-9.0,-9.0,-9.0,4.0,1250109 -3100359,1630209450,2,42,0,1,1630085289,2,6.0,-9.0,-9.0,-9.0,4.0,1250110 -3100360,1630209659,2,28,0,1,1630085290,1,3.0,25.0,4.0,15.0,4.0,1250111 -3100361,1630208826,2,26,0,1,1630085291,2,6.0,-9.0,-9.0,-9.0,4.0,1250112 -3100362,1630209451,2,42,0,1,1630085292,2,6.0,-9.0,-9.0,-9.0,4.0,1250113 -3100363,1630208913,2,42,0,1,1630085293,2,6.0,-9.0,-9.0,-9.0,4.0,1250114 -3100364,1630209413,2,28,0,1,1630085294,2,6.0,-9.0,-9.0,15.0,4.0,1250115 -3100365,1630209644,2,40,0,1,1630085295,1,6.0,-9.0,-9.0,-9.0,4.0,1250116 -3100366,1630209193,2,41,0,1,1630085296,2,3.0,-9.0,-9.0,-9.0,4.0,1250117 -3100367,1630209669,2,42,0,1,1630085297,1,6.0,-9.0,-9.0,-9.0,4.0,1250118 -3100368,1630209194,2,41,0,1,1630085298,2,3.0,-9.0,-9.0,-9.0,4.0,1250119 -3100369,1630209313,2,40,0,1,1630085299,2,3.0,-9.0,-9.0,16.0,4.0,1250120 -3100370,1630208914,2,42,0,1,1630085300,2,6.0,-9.0,-9.0,-9.0,4.0,1250121 -3100371,1630209452,2,42,0,1,1630085301,2,6.0,-9.0,-9.0,-9.0,4.0,1250122 -3100372,1630209314,2,40,0,1,1630085302,2,3.0,-9.0,-9.0,16.0,4.0,1250123 -3100373,1630209453,2,42,0,1,1630085303,2,6.0,-9.0,-9.0,-9.0,4.0,1250124 -3100374,1630209059,2,44,0,1,1630085304,2,6.0,-9.0,-9.0,-9.0,4.0,1250125 -3100375,1630209647,2,29,0,1,1630085305,1,6.0,-9.0,-9.0,-9.0,4.0,1250126 -3100376,1630208915,2,42,0,1,1630085306,2,6.0,-9.0,-9.0,-9.0,4.0,1250127 -3100377,1630209575,2,37,0,1,1630085307,1,6.0,-9.0,-9.0,-9.0,4.0,1250128 -3100378,1630208916,2,42,0,1,1630085308,2,6.0,-9.0,-9.0,-9.0,4.0,1250129 -3100379,1630209670,2,42,0,1,1630085309,1,6.0,-9.0,-9.0,-9.0,4.0,1250130 -3100380,1630208827,2,26,0,1,1630085310,2,6.0,-9.0,-9.0,-9.0,4.0,1250131 -3100381,1630209673,2,30,0,1,1630085311,1,3.0,36.0,4.0,-9.0,4.0,1250132 -3100382,1630208931,2,33,0,1,1630085312,2,3.0,-9.0,-9.0,-9.0,4.0,1250133 -3100383,1630209454,2,42,0,1,1630085313,2,6.0,-9.0,-9.0,-9.0,4.0,1250134 -3100384,1630209060,2,44,0,1,1630085314,2,6.0,-9.0,-9.0,-9.0,4.0,1250135 -3100385,1630209455,2,42,0,1,1630085315,2,6.0,-9.0,-9.0,-9.0,4.0,1250136 -3100386,1630209414,2,28,0,1,1630085316,2,6.0,-9.0,-9.0,15.0,4.0,1250137 -3100387,1630209648,2,29,0,1,1630085317,1,6.0,-9.0,-9.0,-9.0,4.0,1250138 -3100388,1630208993,2,42,0,1,1630085318,2,6.0,-9.0,-9.0,-9.0,4.0,1250139 -3100389,1630209456,2,42,0,1,1630085319,2,6.0,-9.0,-9.0,-9.0,4.0,1250140 -3100390,1630209481,3,35,0,1,1630085320,2,3.0,30.0,5.0,-9.0,4.0,1250141 -3100391,1630209748,4,38,0,1,1630085321,1,3.0,30.0,6.0,15.0,3.0,1250142 -3100392,1630209729,4,40,0,1,1630085322,1,3.0,-9.0,-9.0,16.0,4.0,1250143 -3100393,1630209749,4,38,0,1,1630085323,1,3.0,30.0,6.0,15.0,3.0,1250144 -3100394,1630209730,4,40,0,1,1630085324,1,3.0,-9.0,-9.0,16.0,4.0,1250145 -3100395,1630208704,1,29,0,1,1630085325,1,6.0,-9.0,-9.0,15.0,4.0,1250146 -3100396,1630209077,2,39,0,1,1630085326,2,3.0,-9.0,-9.0,-9.0,4.0,1250147 -3100397,1630209078,2,39,0,1,1630085327,2,3.0,-9.0,-9.0,-9.0,4.0,1250148 -3100398,1630209586,2,41,0,1,1630085328,1,3.0,-9.0,-9.0,-9.0,4.0,1250149 -3100399,1630209079,2,39,0,1,1630085329,2,3.0,-9.0,-9.0,-9.0,4.0,1250150 -3100400,1630209080,2,39,0,1,1630085330,2,3.0,-9.0,-9.0,-9.0,4.0,1250151 -3100401,1630209081,2,39,0,1,1630085331,2,3.0,-9.0,-9.0,-9.0,4.0,1250152 -3100402,1630209082,2,39,0,1,1630085332,2,3.0,-9.0,-9.0,-9.0,4.0,1250153 -3100403,1630209258,2,42,0,1,1630085333,2,6.0,-9.0,-9.0,-9.0,4.0,1250154 -3100404,1630209260,2,21,2,2,1630085333,1,6.0,-9.0,-9.0,-9.0,4.0,1250154 -3100405,1630209259,2,16,2,3,1630085333,1,6.0,-9.0,-9.0,12.0,-9.0,1250154 -3100406,1630209183,2,26,0,1,1630085334,2,3.0,-9.0,-9.0,-9.0,4.0,1250155 -3100407,1630209184,2,8,2,2,1630085334,1,-9.0,-9.0,-9.0,4.0,-9.0,1250155 -3100408,1630209185,2,2,2,3,1630085334,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250155 -3100409,1630209156,2,31,0,1,1630085335,2,3.0,30.0,5.0,15.0,4.0,1250156 -3100410,1630209158,2,3,2,2,1630085335,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250156 -3100411,1630209160,2,1,2,3,1630085335,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250156 -3100412,1630209524,2,31,0,1,1630085336,1,6.0,-9.0,-9.0,-9.0,4.0,1250157 -3100413,1630209525,2,0,2,2,1630085336,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250157 -3100414,1630209523,2,38,13,3,1630085336,2,6.0,-9.0,-9.0,-9.0,4.0,1250157 -3100415,1630209157,2,31,0,1,1630085337,2,3.0,30.0,5.0,15.0,4.0,1250158 -3100416,1630209159,2,3,2,2,1630085337,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250158 -3100417,1630209161,2,1,2,3,1630085337,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250158 -3100418,1630209519,2,44,0,1,1630085338,2,6.0,-9.0,-9.0,-9.0,4.0,1250159 -3100419,1630209520,2,5,3,2,1630085338,1,-9.0,-9.0,-9.0,2.0,-9.0,1250159 -3100420,1630209521,2,35,5,3,1630085338,1,6.0,-9.0,-9.0,-9.0,4.0,1250159 -3100421,1630209660,2,44,0,1,1630085339,1,6.0,-9.0,-9.0,14.0,4.0,1250160 -3100422,1630209661,2,50,5,2,1630085339,1,6.0,-9.0,-9.0,-9.0,4.0,1250160 -3100423,1630209636,2,35,0,1,1630085340,1,6.0,-9.0,-9.0,-9.0,4.0,1250161 -3100424,1630209637,2,30,5,2,1630085340,1,6.0,-9.0,-9.0,-9.0,4.0,1250161 -3100425,1630209071,2,33,0,1,1630085341,2,3.0,30.0,6.0,-9.0,4.0,1250162 -3100426,1630209074,2,18,2,2,1630085341,2,6.0,-9.0,-9.0,-9.0,4.0,1250162 -3100427,1630209072,2,33,0,1,1630085342,2,3.0,30.0,6.0,-9.0,4.0,1250163 -3100428,1630209075,2,18,2,2,1630085342,2,6.0,-9.0,-9.0,-9.0,4.0,1250163 -3100429,1630209073,2,33,0,1,1630085343,2,3.0,30.0,6.0,-9.0,4.0,1250164 -3100430,1630209076,2,18,2,2,1630085343,2,6.0,-9.0,-9.0,-9.0,4.0,1250164 -3100431,1630209491,2,40,0,1,1630085344,2,6.0,-9.0,-9.0,-9.0,4.0,1250165 -3100432,1630209492,2,21,2,2,1630085344,2,6.0,30.0,6.0,15.0,4.0,1250165 -3100433,1630209500,2,33,0,1,1630085345,2,3.0,40.0,3.0,-9.0,4.0,1250166 -3100434,1630209501,2,9,2,2,1630085345,1,-9.0,-9.0,-9.0,6.0,-9.0,1250166 -3100435,1630208728,2,44,0,1,1630085346,2,3.0,-9.0,-9.0,15.0,4.0,1250167 -3100436,1630208729,2,12,2,2,1630085346,1,-9.0,-9.0,-9.0,9.0,-9.0,1250167 -3100437,1630208885,2,38,0,1,1630085347,2,3.0,-9.0,-9.0,-9.0,4.0,1250168 -3100438,1630208891,2,41,1,2,1630085347,1,1.0,40.0,1.0,-9.0,4.0,1250168 -3100439,1630208894,2,17,2,3,1630085347,2,6.0,-9.0,-9.0,13.0,4.0,1250168 -3100440,1630208897,2,15,2,4,1630085347,2,-9.0,-9.0,-9.0,11.0,-9.0,1250168 -3100441,1630208888,2,13,2,5,1630085347,1,-9.0,-9.0,-9.0,10.0,-9.0,1250168 -3100442,1630208886,2,38,0,1,1630085348,2,3.0,-9.0,-9.0,-9.0,4.0,1250169 -3100443,1630208892,2,41,1,2,1630085348,1,1.0,40.0,1.0,-9.0,4.0,1250169 -3100444,1630208895,2,17,2,3,1630085348,2,6.0,-9.0,-9.0,13.0,4.0,1250169 -3100445,1630208898,2,15,2,4,1630085348,2,-9.0,-9.0,-9.0,11.0,-9.0,1250169 -3100446,1630208889,2,13,2,5,1630085348,1,-9.0,-9.0,-9.0,10.0,-9.0,1250169 -3100447,1630208887,2,38,0,1,1630085349,2,3.0,-9.0,-9.0,-9.0,4.0,1250170 -3100448,1630208893,2,41,1,2,1630085349,1,1.0,40.0,1.0,-9.0,4.0,1250170 -3100449,1630208896,2,17,2,3,1630085349,2,6.0,-9.0,-9.0,13.0,4.0,1250170 -3100450,1630208899,2,15,2,4,1630085349,2,-9.0,-9.0,-9.0,11.0,-9.0,1250170 -3100451,1630208890,2,13,2,5,1630085349,1,-9.0,-9.0,-9.0,10.0,-9.0,1250170 -3100452,1630209323,2,33,0,1,1630085350,2,1.0,28.0,5.0,-9.0,4.0,1250171 -3100453,1630209324,2,13,2,2,1630085350,1,-9.0,-9.0,-9.0,9.0,-9.0,1250171 -3100454,1630209325,2,11,2,3,1630085350,2,-9.0,-9.0,-9.0,7.0,-9.0,1250171 -3100455,1630209326,2,8,2,4,1630085350,2,-9.0,-9.0,-9.0,5.0,-9.0,1250171 -3100456,1630209327,2,3,2,5,1630085350,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250171 -3100457,1630209315,2,37,0,1,1630085351,2,1.0,30.0,1.0,-9.0,4.0,1250172 -3100458,1630209317,2,16,2,2,1630085351,2,6.0,-9.0,-9.0,12.0,-9.0,1250172 -3100459,1630209318,2,10,2,3,1630085351,2,-9.0,-9.0,-9.0,5.0,-9.0,1250172 -3100460,1630209316,2,8,2,4,1630085351,1,-9.0,-9.0,-9.0,4.0,-9.0,1250172 -3100461,1630209319,2,5,2,5,1630085351,2,-9.0,-9.0,-9.0,2.0,-9.0,1250172 -3100462,1630209406,2,38,0,1,1630085352,2,3.0,-9.0,-9.0,-9.0,4.0,1250173 -3100463,1630209408,2,18,2,2,1630085352,1,1.0,8.0,4.0,14.0,4.0,1250173 -3100464,1630209409,2,11,2,3,1630085352,2,-9.0,-9.0,-9.0,7.0,-9.0,1250173 -3100465,1630209407,2,64,6,4,1630085352,2,6.0,-9.0,-9.0,-9.0,4.0,1250173 -3100466,1630209386,2,44,0,1,1630085353,2,1.0,32.0,6.0,-9.0,4.0,1250174 -3100467,1630209387,2,24,2,2,1630085353,2,6.0,32.0,6.0,-9.0,4.0,1250174 -3100468,1630209388,2,16,2,3,1630085353,1,6.0,-9.0,-9.0,13.0,-9.0,1250174 -3100469,1630209389,2,1,7,4,1630085353,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250174 -3100470,1630208745,2,30,0,1,1630085354,2,2.0,40.0,5.0,-9.0,4.0,1250175 -3100471,1630208747,2,10,2,2,1630085354,2,-9.0,-9.0,-9.0,7.0,-9.0,1250175 -3100472,1630208746,2,2,2,3,1630085354,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250175 -3100473,1630208748,2,0,2,4,1630085354,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250175 -3100474,1630209162,2,44,0,1,1630085355,2,3.0,32.0,4.0,-9.0,4.0,1250176 -3100475,1630209163,2,19,2,2,1630085355,2,1.0,20.0,6.0,15.0,4.0,1250176 -3100476,1630209164,2,15,2,3,1630085355,1,-9.0,-9.0,-9.0,12.0,-9.0,1250176 -3100477,1630209165,2,7,2,4,1630085355,2,-9.0,-9.0,-9.0,4.0,-9.0,1250176 -3100478,1630209583,2,41,0,1,1630085356,1,1.0,40.0,1.0,-9.0,4.0,1250177 -3100479,1630209580,2,39,0,1,1630085357,1,1.0,40.0,1.0,-9.0,4.0,1250178 -3100480,1630209581,2,39,0,1,1630085358,1,1.0,40.0,1.0,-9.0,4.0,1250179 -3100481,1630209584,2,41,0,1,1630085359,1,1.0,40.0,1.0,-9.0,4.0,1250180 -3100482,1630208820,2,34,0,1,1630085360,2,1.0,24.0,1.0,-9.0,4.0,1250181 -3100483,1630209756,3,27,0,1,1630085361,2,1.0,40.0,1.0,-9.0,4.0,1250182 -3100484,1630209635,2,33,0,1,1630085362,1,1.0,10.0,6.0,-9.0,4.0,1250183 -3100485,1630209280,2,32,0,1,1630085363,2,1.0,20.0,5.0,16.0,4.0,1250184 -3100486,1630209353,2,29,0,1,1630085364,2,1.0,40.0,2.0,-9.0,4.0,1250185 -3100487,1630209490,2,26,0,1,1630085365,2,1.0,30.0,1.0,-9.0,4.0,1250186 -3100488,1630209419,2,44,0,1,1630085366,2,1.0,40.0,1.0,-9.0,4.0,1250187 -3100489,1630209351,2,42,0,1,1630085367,2,1.0,38.0,1.0,15.0,4.0,1250188 -3100490,1630209627,2,29,0,1,1630085368,1,1.0,40.0,1.0,-9.0,4.0,1250189 -3100491,1630209354,2,29,0,1,1630085369,2,1.0,40.0,2.0,-9.0,4.0,1250190 -3100492,1630209607,2,30,0,1,1630085370,1,1.0,40.0,1.0,-9.0,4.0,1250191 -3100493,1630209608,2,30,0,1,1630085371,1,1.0,40.0,1.0,-9.0,4.0,1250192 -3100494,1630209420,2,44,0,1,1630085372,2,1.0,40.0,1.0,-9.0,4.0,1250193 -3100495,1630209609,2,30,0,1,1630085373,1,1.0,40.0,1.0,-9.0,4.0,1250194 -3100496,1630209355,2,29,0,1,1630085374,2,1.0,40.0,2.0,-9.0,4.0,1250195 -3100497,1630209281,2,32,0,1,1630085375,2,1.0,20.0,5.0,16.0,4.0,1250196 -3100498,1630209641,2,29,0,1,1630085376,1,1.0,40.0,1.0,-9.0,4.0,1250197 -3100499,1630209476,2,25,0,1,1630085377,2,1.0,40.0,1.0,-9.0,4.0,1250198 -3100500,1630209421,2,44,0,1,1630085378,2,1.0,40.0,1.0,-9.0,4.0,1250199 -3100501,1630209477,2,25,0,1,1630085379,2,1.0,40.0,1.0,-9.0,4.0,1250200 -3100502,1630209478,2,25,0,1,1630085380,2,1.0,40.0,1.0,-9.0,4.0,1250201 -3100503,1630209352,2,42,0,1,1630085381,2,1.0,38.0,1.0,15.0,4.0,1250202 -3100504,1630209422,2,44,0,1,1630085382,2,1.0,40.0,1.0,-9.0,4.0,1250203 -3100505,1630208698,1,31,0,1,1630085383,2,1.0,20.0,1.0,-9.0,4.0,1250204 -3100506,1630208713,1,35,0,1,1630085384,1,1.0,22.0,1.0,16.0,4.0,1250205 -3100507,1630208720,1,26,0,1,1630085385,1,1.0,60.0,2.0,16.0,4.0,1250206 -3100508,1630209483,2,25,0,1,1630085386,2,1.0,40.0,1.0,-9.0,4.0,1250207 -3100509,1630209485,2,6,2,2,1630085386,2,-9.0,-9.0,-9.0,2.0,-9.0,1250207 -3100510,1630209487,2,2,2,3,1630085386,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250207 -3100511,1630208863,2,30,0,1,1630085387,2,1.0,38.0,2.0,-9.0,4.0,1250208 -3100512,1630208864,2,6,2,2,1630085387,2,-9.0,-9.0,-9.0,2.0,-9.0,1250208 -3100513,1630208865,2,4,2,3,1630085387,2,-9.0,-9.0,-9.0,1.0,-9.0,1250208 -3100514,1630209484,2,25,0,1,1630085388,2,1.0,40.0,1.0,-9.0,4.0,1250209 -3100515,1630209486,2,6,2,2,1630085388,2,-9.0,-9.0,-9.0,2.0,-9.0,1250209 -3100516,1630209488,2,2,2,3,1630085388,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250209 -3100517,1630208775,2,25,0,1,1630085389,2,3.0,20.0,6.0,15.0,4.0,1250210 -3100518,1630208777,2,4,2,2,1630085389,1,-9.0,-9.0,-9.0,1.0,-9.0,1250210 -3100519,1630208776,2,27,12,3,1630085389,2,1.0,35.0,1.0,-9.0,4.0,1250210 -3100520,1630209050,2,32,0,1,1630085390,2,3.0,8.0,4.0,-9.0,4.0,1250211 -3100521,1630209056,2,8,2,2,1630085390,2,-9.0,-9.0,-9.0,4.0,-9.0,1250211 -3100522,1630209053,2,34,13,3,1630085390,1,1.0,45.0,2.0,-9.0,4.0,1250211 -3100523,1630209032,2,25,0,1,1630085391,2,1.0,20.0,1.0,-9.0,4.0,1250212 -3100524,1630209033,2,3,2,2,1630085391,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250212 -3100525,1630209034,2,2,2,3,1630085391,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250212 -3100526,1630209051,2,32,0,1,1630085392,2,3.0,8.0,4.0,-9.0,4.0,1250213 -3100527,1630209057,2,8,2,2,1630085392,2,-9.0,-9.0,-9.0,4.0,-9.0,1250213 -3100528,1630209054,2,34,13,3,1630085392,1,1.0,45.0,2.0,-9.0,4.0,1250213 -3100529,1630209181,2,30,0,1,1630085393,2,1.0,15.0,4.0,-9.0,4.0,1250214 -3100530,1630209182,2,30,1,2,1630085393,1,6.0,-9.0,-9.0,-9.0,4.0,1250214 -3100531,1630209216,2,32,0,1,1630085394,2,3.0,-9.0,-9.0,-9.0,4.0,1250215 -3100532,1630209217,2,33,1,2,1630085394,1,1.0,45.0,4.0,-9.0,4.0,1250215 -3100533,1630208842,2,26,0,1,1630085395,1,1.0,40.0,1.0,-9.0,4.0,1250216 -3100534,1630208840,2,25,13,2,1630085395,2,6.0,-9.0,-9.0,-9.0,4.0,1250216 -3100535,1630208843,2,26,0,1,1630085396,1,1.0,40.0,1.0,-9.0,4.0,1250217 -3100536,1630208841,2,25,13,2,1630085396,2,6.0,-9.0,-9.0,-9.0,4.0,1250217 -3100537,1630209311,2,31,0,1,1630085397,2,1.0,40.0,1.0,-9.0,4.0,1250218 -3100538,1630209312,2,30,10,2,1630085397,1,6.0,-9.0,-9.0,-9.0,4.0,1250218 -3100539,1630208991,2,29,0,1,1630085398,2,1.0,40.0,4.0,-9.0,4.0,1250219 -3100540,1630208992,2,9,2,2,1630085398,1,-9.0,-9.0,-9.0,5.0,-9.0,1250219 -3100541,1630209150,2,26,0,1,1630085399,2,1.0,35.0,5.0,-9.0,4.0,1250220 -3100542,1630209151,2,3,2,2,1630085399,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250220 -3100543,1630209236,2,42,0,1,1630085400,2,1.0,25.0,1.0,-9.0,4.0,1250221 -3100544,1630209237,2,18,2,2,1630085400,1,6.0,-9.0,-9.0,10.0,4.0,1250221 -3100545,1630208932,2,29,0,1,1630085401,2,6.0,-9.0,-9.0,-9.0,4.0,1250222 -3100546,1630208936,2,32,12,2,1630085401,1,2.0,40.0,4.0,-9.0,4.0,1250222 -3100547,1630209102,2,43,0,1,1630085402,2,6.0,20.0,6.0,15.0,4.0,1250223 -3100548,1630209104,2,18,2,2,1630085402,1,2.0,20.0,4.0,14.0,4.0,1250223 -3100549,1630208933,2,29,0,1,1630085403,2,6.0,-9.0,-9.0,-9.0,4.0,1250224 -3100550,1630208937,2,32,12,2,1630085403,1,2.0,40.0,4.0,-9.0,4.0,1250224 -3100551,1630208934,2,29,0,1,1630085404,2,6.0,-9.0,-9.0,-9.0,4.0,1250225 -3100552,1630208938,2,32,12,2,1630085404,1,2.0,40.0,4.0,-9.0,4.0,1250225 -3100553,1630208935,2,29,0,1,1630085405,2,6.0,-9.0,-9.0,-9.0,4.0,1250226 -3100554,1630208939,2,32,12,2,1630085405,1,2.0,40.0,4.0,-9.0,4.0,1250226 -3100555,1630209103,2,43,0,1,1630085406,2,6.0,20.0,6.0,15.0,4.0,1250227 -3100556,1630209105,2,18,2,2,1630085406,1,2.0,20.0,4.0,14.0,4.0,1250227 -3100557,1630208994,2,44,0,1,1630085407,2,1.0,40.0,1.0,-9.0,4.0,1250228 -3100558,1630208996,2,18,2,2,1630085407,2,6.0,-9.0,-9.0,14.0,4.0,1250228 -3100559,1630209000,2,12,2,3,1630085407,1,-9.0,-9.0,-9.0,8.0,-9.0,1250228 -3100560,1630209002,2,10,2,4,1630085407,2,-9.0,-9.0,-9.0,7.0,-9.0,1250228 -3100561,1630208998,2,61,6,5,1630085407,2,1.0,37.0,1.0,-9.0,4.0,1250228 -3100562,1630208798,2,25,0,1,1630085408,2,1.0,40.0,1.0,15.0,4.0,1250229 -3100563,1630208801,2,9,2,2,1630085408,1,-9.0,-9.0,-9.0,5.0,-9.0,1250229 -3100564,1630208807,2,4,2,3,1630085408,2,-9.0,-9.0,-9.0,1.0,-9.0,1250229 -3100565,1630208804,2,29,13,4,1630085408,1,1.0,40.0,1.0,-9.0,2.0,1250229 -3100566,1630208799,2,25,0,1,1630085409,2,1.0,40.0,1.0,15.0,4.0,1250230 -3100567,1630208802,2,9,2,2,1630085409,1,-9.0,-9.0,-9.0,5.0,-9.0,1250230 -3100568,1630208808,2,4,2,3,1630085409,2,-9.0,-9.0,-9.0,1.0,-9.0,1250230 -3100569,1630208805,2,29,13,4,1630085409,1,1.0,40.0,1.0,-9.0,2.0,1250230 -3100570,1630208800,2,25,0,1,1630085410,2,1.0,40.0,1.0,15.0,4.0,1250231 -3100571,1630208803,2,9,2,2,1630085410,1,-9.0,-9.0,-9.0,5.0,-9.0,1250231 -3100572,1630208809,2,4,2,3,1630085410,2,-9.0,-9.0,-9.0,1.0,-9.0,1250231 -3100573,1630208806,2,29,13,4,1630085410,1,1.0,40.0,1.0,-9.0,2.0,1250231 -3100574,1630209038,2,31,0,1,1630085411,1,2.0,40.0,6.0,-9.0,4.0,1250232 -3100575,1630209039,2,2,2,2,1630085411,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250232 -3100576,1630209037,2,22,13,3,1630085411,2,1.0,25.0,1.0,15.0,4.0,1250232 -3100577,1630209534,2,44,0,1,1630085412,1,1.0,40.0,1.0,-9.0,4.0,1250233 -3100578,1630209536,2,25,10,2,1630085412,1,1.0,40.0,1.0,-9.0,4.0,1250233 -3100579,1630209535,2,44,0,1,1630085413,1,1.0,40.0,1.0,-9.0,4.0,1250234 -3100580,1630209537,2,25,10,2,1630085413,1,1.0,40.0,1.0,-9.0,4.0,1250234 -3100581,1630209449,2,45,0,1,1630085414,2,1.0,40.0,1.0,-9.0,4.0,1250235 -3100582,1630209197,2,53,0,1,1630085415,2,1.0,40.0,1.0,-9.0,4.0,1250236 -3100583,1630209200,2,46,1,2,1630085415,1,1.0,40.0,1.0,-9.0,4.0,1250236 -3100584,1630209198,2,53,0,1,1630085416,2,1.0,40.0,1.0,-9.0,4.0,1250237 -3100585,1630209201,2,46,1,2,1630085416,1,1.0,40.0,1.0,-9.0,4.0,1250237 -3100586,1630209570,2,64,0,1,1630085417,1,6.0,-9.0,-9.0,-9.0,2.0,1250238 -3100587,1630209633,2,45,0,1,1630085418,1,1.0,40.0,1.0,-9.0,2.0,1250239 -3100588,1630209401,2,59,0,1,1630085419,2,1.0,40.0,1.0,-9.0,4.0,1250240 -3100589,1630209402,2,59,0,1,1630085420,2,1.0,40.0,1.0,-9.0,4.0,1250241 -3100590,1630208971,2,54,0,1,1630085421,2,1.0,40.0,1.0,-9.0,4.0,1250242 -3100591,1630208839,2,60,0,1,1630085422,2,1.0,40.0,1.0,-9.0,4.0,1250243 -3100592,1630209643,2,60,0,1,1630085423,1,1.0,40.0,1.0,-9.0,4.0,1250244 -3100593,1630209461,2,54,0,1,1630085424,2,1.0,40.0,1.0,-9.0,4.0,1250245 -3100594,1630209379,2,61,0,1,1630085425,2,1.0,40.0,1.0,-9.0,2.0,1250246 -3100595,1630208884,2,64,0,1,1630085426,2,1.0,40.0,1.0,-9.0,4.0,1250247 -3100596,1630209186,2,46,0,1,1630085427,2,1.0,40.0,1.0,-9.0,4.0,1250248 -3100597,1630208980,2,54,0,1,1630085428,2,6.0,-9.0,-9.0,15.0,4.0,1250249 -3100598,1630208982,2,25,2,2,1630085428,2,1.0,65.0,1.0,-9.0,4.0,1250249 -3100599,1630208984,2,19,2,3,1630085428,2,3.0,3.0,6.0,-9.0,4.0,1250249 -3100600,1630209275,2,58,0,1,1630085429,2,1.0,40.0,1.0,-9.0,4.0,1250250 -3100601,1630209276,2,26,2,2,1630085429,1,3.0,-9.0,-9.0,-9.0,4.0,1250250 -3100602,1630208585,2,45,0,1,1630085430,2,1.0,40.0,1.0,-9.0,4.0,1250251 -3100603,1630208584,2,68,6,2,1630085430,2,6.0,-9.0,-9.0,-9.0,4.0,1250251 -3100604,1630208630,2,50,0,1,1630085431,2,3.0,40.0,5.0,-9.0,4.0,1250252 -3100605,1630208632,2,50,13,2,1630085431,1,1.0,20.0,1.0,-9.0,4.0,1250252 -3100606,1630208634,2,48,15,3,1630085431,1,1.0,25.0,1.0,-9.0,4.0,1250252 -3100607,1630208628,1,47,15,4,1630085431,2,3.0,-9.0,-9.0,-9.0,4.0,1250252 -3100608,1630208922,2,58,0,1,1630085432,2,1.0,40.0,1.0,-9.0,4.0,1250253 -3100609,1630208925,2,21,2,2,1630085432,1,1.0,32.0,2.0,-9.0,4.0,1250253 -3100610,1630208928,2,58,13,3,1630085432,1,6.0,-9.0,-9.0,-9.0,2.0,1250253 -3100611,1630208833,2,54,0,1,1630085433,1,1.0,40.0,1.0,-9.0,2.0,1250254 -3100612,1630208831,2,21,2,2,1630085433,2,1.0,32.0,1.0,15.0,4.0,1250254 -3100613,1630208832,2,21,15,3,1630085433,2,6.0,-9.0,-9.0,15.0,4.0,1250254 -3100614,1630208923,2,58,0,1,1630085434,2,1.0,40.0,1.0,-9.0,4.0,1250255 -3100615,1630208926,2,21,2,2,1630085434,1,1.0,32.0,2.0,-9.0,4.0,1250255 -3100616,1630208929,2,58,13,3,1630085434,1,6.0,-9.0,-9.0,-9.0,2.0,1250255 -3100617,1630208812,2,47,0,1,1630085435,1,2.0,40.0,1.0,-9.0,2.0,1250256 -3100618,1630208810,2,52,1,2,1630085435,2,1.0,16.0,6.0,-9.0,4.0,1250256 -3100619,1630208813,2,47,0,1,1630085436,1,2.0,40.0,1.0,-9.0,2.0,1250257 -3100620,1630208811,2,52,1,2,1630085436,2,1.0,16.0,6.0,-9.0,4.0,1250257 -3100621,1630208786,2,61,0,1,1630085437,2,1.0,40.0,1.0,-9.0,4.0,1250258 -3100622,1630209061,2,56,0,1,1630085438,2,1.0,40.0,1.0,-9.0,4.0,1250259 -3100623,1630209227,2,52,0,1,1630085439,2,1.0,50.0,1.0,-9.0,2.0,1250260 -3100624,1630209230,2,65,1,2,1630085439,1,6.0,-9.0,-9.0,-9.0,4.0,1250260 -3100625,1630209233,4,18,14,3,1630085439,1,6.0,-9.0,-9.0,14.0,4.0,1250260 -3100626,1630209228,2,52,0,1,1630085440,2,1.0,50.0,1.0,-9.0,2.0,1250261 -3100627,1630209231,2,65,1,2,1630085440,1,6.0,-9.0,-9.0,-9.0,4.0,1250261 -3100628,1630209234,4,18,14,3,1630085440,1,6.0,-9.0,-9.0,14.0,4.0,1250261 -3100629,1630209296,2,58,0,1,1630085441,2,6.0,-9.0,-9.0,-9.0,4.0,1250262 -3100630,1630209308,2,39,2,2,1630085441,1,1.0,50.0,1.0,-9.0,4.0,1250262 -3100631,1630209299,2,19,7,3,1630085441,2,1.0,20.0,4.0,-9.0,4.0,1250262 -3100632,1630209305,2,14,7,4,1630085441,1,-9.0,-9.0,-9.0,12.0,-9.0,1250262 -3100633,1630209302,2,37,15,5,1630085441,2,3.0,-9.0,-9.0,-9.0,4.0,1250262 -3100634,1630209297,2,58,0,1,1630085442,2,6.0,-9.0,-9.0,-9.0,4.0,1250263 -3100635,1630209309,2,39,2,2,1630085442,1,1.0,50.0,1.0,-9.0,4.0,1250263 -3100636,1630209300,2,19,7,3,1630085442,2,1.0,20.0,4.0,-9.0,4.0,1250263 -3100637,1630209306,2,14,7,4,1630085442,1,-9.0,-9.0,-9.0,12.0,-9.0,1250263 -3100638,1630209303,2,37,15,5,1630085442,2,3.0,-9.0,-9.0,-9.0,4.0,1250263 -3100639,1630209684,2,58,0,1,1630085443,1,1.0,50.0,3.0,-9.0,4.0,1250264 -3100640,1630209687,2,28,2,2,1630085443,1,3.0,35.0,4.0,-9.0,4.0,1250264 -3100641,1630209690,2,32,11,3,1630085443,1,1.0,30.0,3.0,-9.0,4.0,1250264 -3100642,1630209685,2,58,0,1,1630085444,1,1.0,50.0,3.0,-9.0,4.0,1250265 -3100643,1630209688,2,28,2,2,1630085444,1,3.0,35.0,4.0,-9.0,4.0,1250265 -3100644,1630209691,2,32,11,3,1630085444,1,1.0,30.0,3.0,-9.0,4.0,1250265 -3100645,1630208955,2,46,0,1,1630085445,2,1.0,37.0,1.0,16.0,4.0,1250266 -3100646,1630208956,2,30,2,2,1630085445,1,1.0,27.0,3.0,-9.0,4.0,1250266 -3100647,1630209662,2,45,0,1,1630085446,1,1.0,50.0,1.0,-9.0,2.0,1250267 -3100648,1630209665,2,19,2,2,1630085446,1,1.0,40.0,5.0,15.0,4.0,1250267 -3100649,1630209663,2,45,0,1,1630085447,1,1.0,50.0,1.0,-9.0,2.0,1250268 -3100650,1630209666,2,19,2,2,1630085447,1,1.0,40.0,5.0,15.0,4.0,1250268 -3100651,1630209108,2,57,0,1,1630085448,1,1.0,37.0,1.0,-9.0,2.0,1250269 -3100652,1630209106,2,56,1,2,1630085448,2,1.0,12.0,4.0,-9.0,4.0,1250269 -3100653,1630209656,2,57,0,1,1630085449,1,1.0,40.0,1.0,15.0,2.0,1250270 -3100654,1630209657,2,35,2,2,1630085449,1,1.0,40.0,1.0,-9.0,4.0,1250270 -3100655,1630209515,2,50,0,1,1630085450,2,3.0,-9.0,-9.0,-9.0,4.0,1250271 -3100656,1630208792,2,57,0,1,1630085451,2,6.0,-9.0,-9.0,-9.0,4.0,1250272 -3100657,1630209593,2,46,0,1,1630085452,1,6.0,-9.0,-9.0,-9.0,4.0,1250273 -3100658,1630209475,2,61,0,1,1630085453,2,6.0,-9.0,-9.0,-9.0,4.0,1250274 -3100659,1630209382,2,53,0,1,1630085454,2,6.0,-9.0,-9.0,-9.0,4.0,1250275 -3100660,1630209544,2,58,0,1,1630085455,1,6.0,-9.0,-9.0,-9.0,4.0,1250276 -3100661,1630208847,2,58,0,1,1630085456,2,6.0,-9.0,-9.0,-9.0,4.0,1250277 -3100662,1630209471,2,45,0,1,1630085457,2,6.0,-9.0,-9.0,-9.0,4.0,1250278 -3100663,1630209671,2,57,0,1,1630085458,1,6.0,-9.0,-9.0,-9.0,2.0,1250279 -3100664,1630209267,2,59,0,1,1630085459,2,6.0,-9.0,-9.0,-9.0,4.0,1250280 -3100665,1630209329,2,53,0,1,1630085460,2,6.0,-9.0,-9.0,-9.0,4.0,1250281 -3100666,1630209632,2,51,0,1,1630085461,1,3.0,-9.0,-9.0,-9.0,4.0,1250282 -3100667,1630209625,2,56,0,1,1630085462,1,3.0,-9.0,-9.0,-9.0,4.0,1250283 -3100668,1630209152,2,57,0,1,1630085463,2,6.0,-9.0,-9.0,-9.0,4.0,1250284 -3100669,1630209600,2,52,0,1,1630085464,1,6.0,-9.0,-9.0,-9.0,2.0,1250285 -3100670,1630209579,2,54,0,1,1630085465,1,6.0,-9.0,-9.0,-9.0,4.0,1250286 -3100671,1630209330,2,53,0,1,1630085466,2,6.0,-9.0,-9.0,-9.0,4.0,1250287 -3100672,1630209069,2,58,0,1,1630085467,2,3.0,-9.0,-9.0,12.0,4.0,1250288 -3100673,1630209596,2,54,0,1,1630085468,1,6.0,-9.0,-9.0,-9.0,2.0,1250289 -3100674,1630208976,2,58,0,1,1630085469,2,6.0,-9.0,-9.0,-9.0,4.0,1250290 -3100675,1630208880,2,61,0,1,1630085470,2,6.0,-9.0,-9.0,-9.0,4.0,1250291 -3100676,1630209634,2,62,0,1,1630085471,1,6.0,-9.0,-9.0,-9.0,4.0,1250292 -3100677,1630209046,2,59,0,1,1630085472,2,6.0,-9.0,-9.0,-9.0,4.0,1250293 -3100678,1630209356,2,52,0,1,1630085473,2,6.0,-9.0,-9.0,-9.0,4.0,1250294 -3100679,1630209546,2,59,0,1,1630085474,1,6.0,11.0,6.0,-9.0,4.0,1250295 -3100680,1630209533,2,55,0,1,1630085475,1,6.0,-9.0,-9.0,-9.0,4.0,1250296 -3100681,1630208879,2,54,0,1,1630085476,2,6.0,-9.0,-9.0,15.0,4.0,1250297 -3100682,1630209567,2,58,0,1,1630085477,1,6.0,-9.0,-9.0,-9.0,3.0,1250298 -3100683,1630209474,2,59,0,1,1630085478,2,6.0,-9.0,-9.0,-9.0,4.0,1250299 -3100684,1630208830,2,51,0,1,1630085479,2,6.0,-9.0,-9.0,-9.0,4.0,1250300 -3100685,1630208793,2,57,0,1,1630085480,2,6.0,-9.0,-9.0,-9.0,4.0,1250301 -3100686,1630209383,2,53,0,1,1630085481,2,6.0,-9.0,-9.0,-9.0,4.0,1250302 -3100687,1630209331,2,53,0,1,1630085482,2,6.0,-9.0,-9.0,-9.0,4.0,1250303 -3100688,1630209377,2,51,0,1,1630085483,2,6.0,-9.0,-9.0,-9.0,4.0,1250304 -3100689,1630208954,2,54,0,1,1630085484,2,6.0,-9.0,-9.0,-9.0,4.0,1250305 -3100690,1630209384,2,53,0,1,1630085485,2,6.0,-9.0,-9.0,-9.0,4.0,1250306 -3100691,1630209545,2,58,0,1,1630085486,1,6.0,-9.0,-9.0,-9.0,4.0,1250307 -3100692,1630208848,2,58,0,1,1630085487,2,6.0,-9.0,-9.0,-9.0,4.0,1250308 -3100693,1630208986,2,64,0,1,1630085488,2,6.0,-9.0,-9.0,-9.0,4.0,1250309 -3100694,1630209547,2,59,0,1,1630085489,1,6.0,11.0,6.0,-9.0,4.0,1250310 -3100695,1630208846,2,64,0,1,1630085490,2,6.0,-9.0,-9.0,-9.0,4.0,1250311 -3100696,1630209604,2,61,0,1,1630085491,1,6.0,-9.0,-9.0,-9.0,4.0,1250312 -3100697,1630208854,2,58,0,1,1630085492,2,6.0,-9.0,-9.0,-9.0,2.0,1250313 -3100698,1630209385,2,53,0,1,1630085493,2,6.0,-9.0,-9.0,-9.0,4.0,1250314 -3100699,1630209542,2,54,0,1,1630085494,1,6.0,20.0,4.0,-9.0,4.0,1250315 -3100700,1630209568,2,55,0,1,1630085495,1,6.0,-9.0,-9.0,-9.0,4.0,1250316 -3100701,1630209603,2,45,0,1,1630085496,1,6.0,-9.0,-9.0,-9.0,4.0,1250317 -3100702,1630209757,4,46,0,1,1630085497,2,6.0,10.0,6.0,15.0,4.0,1250318 -3100703,1630209759,3,51,0,1,1630085498,2,6.0,-9.0,-9.0,-9.0,4.0,1250319 -3100704,1630209220,2,63,0,1,1630085499,2,6.0,-9.0,-9.0,-9.0,4.0,1250320 -3100705,1630209357,2,58,0,1,1630085500,2,6.0,-9.0,-9.0,-9.0,4.0,1250321 -3100706,1630209415,2,50,0,1,1630085501,2,3.0,-9.0,-9.0,15.0,4.0,1250322 -3100707,1630209630,2,62,0,1,1630085502,1,6.0,-9.0,-9.0,-9.0,2.0,1250323 -3100708,1630209578,2,58,0,1,1630085503,1,6.0,-9.0,-9.0,-9.0,4.0,1250324 -3100709,1630209594,2,53,0,1,1630085504,1,6.0,-9.0,-9.0,-9.0,4.0,1250325 -3100710,1630209638,2,63,0,1,1630085505,1,6.0,-9.0,-9.0,-9.0,4.0,1250326 -3100711,1630209358,2,58,0,1,1630085506,2,6.0,-9.0,-9.0,-9.0,4.0,1250327 -3100712,1630209459,2,62,0,1,1630085507,2,6.0,-9.0,-9.0,-9.0,4.0,1250328 -3100713,1630209493,2,61,0,1,1630085508,2,6.0,40.0,6.0,-9.0,4.0,1250329 -3100714,1630209668,2,58,0,1,1630085509,1,6.0,-9.0,-9.0,-9.0,4.0,1250330 -3100715,1630209416,2,50,0,1,1630085510,2,3.0,-9.0,-9.0,15.0,4.0,1250331 -3100716,1630209460,2,62,0,1,1630085511,2,6.0,-9.0,-9.0,-9.0,4.0,1250332 -3100717,1630209573,2,62,0,1,1630085512,1,3.0,-9.0,-9.0,-9.0,4.0,1250333 -3100718,1630209589,2,60,0,1,1630085513,1,6.0,-9.0,-9.0,-9.0,4.0,1250334 -3100719,1630209221,2,63,0,1,1630085514,2,6.0,-9.0,-9.0,-9.0,4.0,1250335 -3100720,1630209417,2,50,0,1,1630085515,2,3.0,-9.0,-9.0,15.0,4.0,1250336 -3100721,1630209623,2,51,0,1,1630085516,1,6.0,40.0,6.0,-9.0,4.0,1250337 -3100722,1630209587,2,54,0,1,1630085517,1,6.0,45.0,5.0,-9.0,4.0,1250338 -3100723,1630209522,2,58,0,1,1630085518,2,6.0,-9.0,-9.0,-9.0,4.0,1250339 -3100724,1630209176,2,47,0,1,1630085519,2,6.0,-9.0,-9.0,-9.0,4.0,1250340 -3100725,1630209130,2,61,0,1,1630085520,2,6.0,-9.0,-9.0,-9.0,4.0,1250341 -3100726,1630209574,2,62,0,1,1630085521,1,3.0,-9.0,-9.0,-9.0,4.0,1250342 -3100727,1630209359,2,58,0,1,1630085522,2,6.0,-9.0,-9.0,-9.0,4.0,1250343 -3100728,1630209418,2,50,0,1,1630085523,2,3.0,-9.0,-9.0,15.0,4.0,1250344 -3100729,1630209631,2,62,0,1,1630085524,1,6.0,-9.0,-9.0,-9.0,2.0,1250345 -3100730,1630209440,2,46,0,1,1630085525,2,3.0,-9.0,-9.0,-9.0,4.0,1250346 -3100731,1630209602,2,61,0,1,1630085526,1,6.0,-9.0,-9.0,-9.0,2.0,1250347 -3100732,1630209615,2,63,0,1,1630085527,1,6.0,-9.0,-9.0,-9.0,2.0,1250348 -3100733,1630209616,2,63,0,1,1630085528,1,6.0,-9.0,-9.0,-9.0,2.0,1250349 -3100734,1630209672,2,46,0,1,1630085529,1,3.0,-9.0,-9.0,-9.0,4.0,1250350 -3100735,1630208968,2,57,0,1,1630085530,2,6.0,-9.0,-9.0,-9.0,4.0,1250351 -3100736,1630208903,2,47,0,1,1630085531,2,3.0,-9.0,-9.0,-9.0,4.0,1250352 -3100737,1630208905,2,20,2,2,1630085531,2,3.0,20.0,5.0,-9.0,4.0,1250352 -3100738,1630208907,2,19,2,3,1630085531,2,3.0,20.0,6.0,-9.0,4.0,1250352 -3100739,1630208904,2,47,0,1,1630085532,2,3.0,-9.0,-9.0,-9.0,4.0,1250353 -3100740,1630208906,2,20,2,2,1630085532,2,3.0,20.0,5.0,-9.0,4.0,1250353 -3100741,1630208908,2,19,2,3,1630085532,2,3.0,20.0,6.0,-9.0,4.0,1250353 -3100742,1630208773,2,64,0,1,1630085533,2,6.0,-9.0,-9.0,-9.0,4.0,1250354 -3100743,1630208774,2,69,13,2,1630085533,1,6.0,-9.0,-9.0,-9.0,4.0,1250354 -3100744,1630209146,2,58,0,1,1630085534,2,6.0,-9.0,-9.0,-9.0,4.0,1250355 -3100745,1630209147,2,62,1,2,1630085534,1,6.0,-9.0,-9.0,-9.0,4.0,1250355 -3100746,1630209362,2,54,0,1,1630085535,2,6.0,-9.0,-9.0,-9.0,4.0,1250356 -3100747,1630209364,2,26,2,2,1630085535,1,3.0,-9.0,-9.0,15.0,4.0,1250356 -3100748,1630209363,2,54,0,1,1630085536,2,6.0,-9.0,-9.0,-9.0,4.0,1250357 -3100749,1630209365,2,26,2,2,1630085536,1,3.0,-9.0,-9.0,15.0,4.0,1250357 -3100750,1630208829,2,61,0,1,1630085537,1,3.0,-9.0,-9.0,-9.0,4.0,1250358 -3100751,1630208828,2,48,1,2,1630085537,2,3.0,15.0,6.0,-9.0,4.0,1250358 -3100752,1630209480,2,64,0,1,1630085538,1,6.0,-9.0,-9.0,-9.0,4.0,1250359 -3100753,1630209479,2,57,15,2,1630085538,2,6.0,-9.0,-9.0,-9.0,4.0,1250359 -3100754,1630209218,2,56,0,1,1630085539,2,6.0,-9.0,-9.0,-9.0,4.0,1250360 -3100755,1630209219,2,21,2,2,1630085539,2,6.0,-9.0,-9.0,15.0,4.0,1250360 -3100756,1630209149,2,55,0,1,1630085540,1,6.0,-9.0,-9.0,-9.0,3.0,1250361 -3100757,1630209148,2,55,1,2,1630085540,2,6.0,30.0,3.0,-9.0,4.0,1250361 -3100758,1630209067,2,63,0,1,1630085541,2,6.0,-9.0,-9.0,-9.0,4.0,1250362 -3100759,1630209068,2,47,2,2,1630085541,1,6.0,-9.0,-9.0,-9.0,4.0,1250362 -3100760,1630208821,2,59,0,1,1630085542,2,6.0,-9.0,-9.0,-9.0,4.0,1250363 -3100761,1630208823,2,22,2,2,1630085542,2,3.0,-9.0,-9.0,-9.0,4.0,1250363 -3100762,1630208945,2,46,0,1,1630085543,2,6.0,-9.0,-9.0,-9.0,2.0,1250364 -3100763,1630208946,2,53,1,2,1630085543,1,6.0,-9.0,-9.0,-9.0,4.0,1250364 -3100764,1630209470,2,61,0,1,1630085544,2,1.0,35.0,1.0,-9.0,4.0,1250365 -3100765,1630209614,2,56,0,1,1630085545,1,1.0,32.0,1.0,-9.0,2.0,1250366 -3100766,1630208975,2,58,0,1,1630085546,2,1.0,37.0,4.0,-9.0,4.0,1250367 -3100767,1630209023,2,57,0,1,1630085547,2,1.0,40.0,1.0,-9.0,4.0,1250368 -3100768,1630208857,2,52,0,1,1630085548,2,1.0,40.0,1.0,-9.0,4.0,1250369 -3100769,1630209569,2,63,0,1,1630085549,1,1.0,25.0,1.0,-9.0,4.0,1250370 -3100770,1630209624,2,61,0,1,1630085550,1,1.0,30.0,1.0,-9.0,4.0,1250371 -3100771,1630209251,2,64,0,1,1630085551,2,2.0,7.0,2.0,-9.0,4.0,1250372 -3100772,1630209606,2,55,0,1,1630085552,1,1.0,40.0,2.0,-9.0,4.0,1250373 -3100773,1630209576,2,60,0,1,1630085553,1,1.0,40.0,1.0,-9.0,2.0,1250374 -3100774,1630209070,2,62,0,1,1630085554,2,1.0,40.0,1.0,-9.0,4.0,1250375 -3100775,1630209257,2,60,0,1,1630085555,2,1.0,40.0,1.0,-9.0,4.0,1250376 -3100776,1630209658,2,45,0,1,1630085556,1,1.0,48.0,1.0,-9.0,4.0,1250377 -3100777,1630209256,2,46,0,1,1630085557,2,1.0,30.0,3.0,15.0,4.0,1250378 -3100778,1630209322,2,54,0,1,1630085558,2,1.0,40.0,5.0,-9.0,4.0,1250379 -3100779,1630209166,2,58,0,1,1630085559,2,1.0,40.0,1.0,-9.0,4.0,1250380 -3100780,1630209502,2,55,0,1,1630085560,2,2.0,40.0,4.0,-9.0,4.0,1250381 -3100781,1630209024,2,48,0,1,1630085561,2,1.0,20.0,1.0,-9.0,4.0,1250382 -3100782,1630209517,2,51,0,1,1630085562,2,1.0,20.0,6.0,-9.0,4.0,1250383 -3100783,1630209112,2,62,0,1,1630085563,2,1.0,20.0,6.0,-9.0,4.0,1250384 -3100784,1630209518,2,51,0,1,1630085564,2,1.0,20.0,6.0,-9.0,4.0,1250385 -3100785,1630209328,2,48,0,1,1630085565,2,1.0,40.0,1.0,15.0,4.0,1250386 -3100786,1630209516,2,48,0,1,1630085566,2,1.0,37.0,1.0,16.0,4.0,1250387 -3100787,1630209626,2,53,0,1,1630085567,1,1.0,40.0,1.0,-9.0,4.0,1250388 -3100788,1630209366,2,46,0,1,1630085568,2,1.0,38.0,1.0,-9.0,4.0,1250389 -3100789,1630209113,2,62,0,1,1630085569,2,1.0,20.0,6.0,-9.0,4.0,1250390 -3100790,1630209693,2,58,0,1,1630085570,1,1.0,40.0,1.0,-9.0,4.0,1250391 -3100791,1630209577,2,54,0,1,1630085571,1,1.0,35.0,4.0,-9.0,2.0,1250392 -3100792,1630209737,4,61,0,1,1630085572,1,1.0,24.0,1.0,-9.0,4.0,1250393 -3100793,1630209764,4,50,0,1,1630085573,2,1.0,40.0,1.0,-9.0,4.0,1250394 -3100794,1630209751,3,51,0,1,1630085574,2,1.0,40.0,1.0,-9.0,4.0,1250395 -3100795,1630209642,2,59,0,1,1630085575,1,1.0,40.0,1.0,-9.0,2.0,1250396 -3100796,1630209620,2,62,0,1,1630085576,1,1.0,45.0,1.0,-9.0,4.0,1250397 -3100797,1630209621,2,62,0,1,1630085577,1,1.0,45.0,1.0,-9.0,4.0,1250398 -3100798,1630209622,2,62,0,1,1630085578,1,1.0,45.0,1.0,-9.0,4.0,1250399 -3100799,1630208771,2,55,0,1,1630085579,1,1.0,20.0,5.0,-9.0,4.0,1250400 -3100800,1630208772,2,19,2,2,1630085579,1,3.0,-9.0,-9.0,-9.0,4.0,1250400 -3100801,1630208770,2,51,10,3,1630085579,2,6.0,-9.0,-9.0,-9.0,4.0,1250400 -3100802,1630208780,2,45,0,1,1630085580,2,1.0,13.0,5.0,-9.0,4.0,1250401 -3100803,1630208782,2,22,2,2,1630085580,2,6.0,-9.0,-9.0,15.0,4.0,1250401 -3100804,1630208784,2,22,2,3,1630085580,1,6.0,-9.0,-9.0,14.0,4.0,1250401 -3100805,1630209282,2,62,0,1,1630085581,2,3.0,40.0,6.0,-9.0,4.0,1250402 -3100806,1630209283,2,23,2,2,1630085581,2,1.0,23.0,5.0,-9.0,4.0,1250402 -3100807,1630208794,2,50,0,1,1630085582,2,1.0,40.0,1.0,-9.0,4.0,1250403 -3100808,1630208796,2,24,2,2,1630085582,2,3.0,-9.0,-9.0,-9.0,4.0,1250403 -3100809,1630208844,2,55,0,1,1630085583,2,1.0,20.0,4.0,-9.0,4.0,1250404 -3100810,1630208845,2,23,2,2,1630085583,1,6.0,-9.0,-9.0,-9.0,4.0,1250404 -3100811,1630208795,2,50,0,1,1630085584,2,1.0,40.0,1.0,-9.0,4.0,1250405 -3100812,1630208797,2,24,2,2,1630085584,2,3.0,-9.0,-9.0,-9.0,4.0,1250405 -3100813,1630208837,2,47,0,1,1630085585,2,1.0,91.0,1.0,-9.0,4.0,1250406 -3100814,1630208838,2,25,15,2,1630085585,2,6.0,-9.0,-9.0,-9.0,4.0,1250406 -3100815,1630208789,2,55,0,1,1630085586,2,1.0,40.0,1.0,-9.0,4.0,1250407 -3100816,1630208790,2,25,2,2,1630085586,1,3.0,-9.0,-9.0,-9.0,4.0,1250407 -3100817,1630208645,2,53,0,1,1630085587,1,1.0,40.0,1.0,-9.0,4.0,1250408 -3100818,1630208642,3,46,13,2,1630085587,2,6.0,-9.0,-9.0,-9.0,4.0,1250408 -3100819,1630208646,2,53,0,1,1630085588,1,1.0,40.0,1.0,-9.0,4.0,1250409 -3100820,1630208643,3,46,13,2,1630085588,2,6.0,-9.0,-9.0,-9.0,4.0,1250409 -3100821,1630208647,2,53,0,1,1630085589,1,1.0,40.0,1.0,-9.0,4.0,1250410 -3100822,1630208644,3,46,13,2,1630085589,2,6.0,-9.0,-9.0,-9.0,4.0,1250410 -3100823,1630209731,4,52,0,1,1630085590,1,1.0,3.0,6.0,-9.0,4.0,1250411 -3100824,1630209733,4,43,1,2,1630085590,2,6.0,-9.0,-9.0,-9.0,4.0,1250411 -3100825,1630209334,2,59,0,1,1630085591,2,1.0,31.0,4.0,-9.0,4.0,1250412 -3100826,1630209338,2,41,2,2,1630085591,1,3.0,-9.0,-9.0,-9.0,4.0,1250412 -3100827,1630209336,2,21,7,3,1630085591,2,1.0,38.0,5.0,-9.0,4.0,1250412 -3100828,1630209284,2,54,0,1,1630085592,2,1.0,32.0,1.0,-9.0,4.0,1250413 -3100829,1630209285,2,51,1,2,1630085592,1,1.0,20.0,5.0,15.0,4.0,1250413 -3100830,1630209247,2,50,0,1,1630085593,2,1.0,30.0,1.0,-9.0,4.0,1250414 -3100831,1630209249,2,19,2,2,1630085593,2,1.0,20.0,3.0,-9.0,4.0,1250414 -3100832,1630209177,2,49,0,1,1630085594,2,1.0,48.0,1.0,-9.0,4.0,1250415 -3100833,1630209179,2,26,2,2,1630085594,1,1.0,3.0,6.0,-9.0,4.0,1250415 -3100834,1630209178,2,49,0,1,1630085595,2,1.0,48.0,1.0,-9.0,4.0,1250416 -3100835,1630209180,2,26,2,2,1630085595,1,1.0,3.0,6.0,-9.0,4.0,1250416 -3100836,1630209725,2,77,0,1,1630085596,1,6.0,-9.0,-9.0,-9.0,2.0,1250417 -3100837,1630208596,2,66,0,1,1630085597,2,6.0,-9.0,-9.0,-9.0,4.0,1250418 -3100838,1630209715,2,65,0,1,1630085598,1,6.0,-9.0,-9.0,-9.0,2.0,1250419 -3100839,1630208611,2,68,0,1,1630085599,2,6.0,-9.0,-9.0,-9.0,4.0,1250420 -3100840,1630209712,2,66,0,1,1630085600,1,6.0,-9.0,-9.0,-9.0,4.0,1250421 -3100841,1630208505,2,75,0,1,1630085601,2,1.0,52.0,1.0,-9.0,4.0,1250422 -3100842,1630209717,2,66,0,1,1630085602,1,1.0,45.0,1.0,-9.0,4.0,1250423 -3100843,1630208577,2,71,0,1,1630085603,2,6.0,-9.0,-9.0,-9.0,4.0,1250424 -3100844,1630208578,2,53,2,2,1630085603,1,1.0,60.0,1.0,-9.0,4.0,1250424 -3100845,1630208579,2,51,2,3,1630085603,1,1.0,40.0,1.0,-9.0,4.0,1250424 -3100846,1630208515,2,72,0,1,1630085604,2,6.0,-9.0,-9.0,-9.0,3.0,1250425 -3100847,1630208580,2,73,0,1,1630085605,2,6.0,-9.0,-9.0,-9.0,4.0,1250426 -3100848,1630208558,2,94,0,1,1630085606,2,6.0,-9.0,-9.0,-9.0,4.0,1250427 -3100849,1630208516,2,72,0,1,1630085607,2,6.0,-9.0,-9.0,-9.0,3.0,1250428 -3100850,1630209707,2,74,0,1,1630085608,1,6.0,-9.0,-9.0,-9.0,4.0,1250429 -3100851,1630208599,2,80,0,1,1630085609,2,6.0,-9.0,-9.0,-9.0,4.0,1250430 -3100852,1630208555,2,86,0,1,1630085610,2,6.0,-9.0,-9.0,-9.0,4.0,1250431 -3100853,1630208533,2,68,0,1,1630085611,2,6.0,-9.0,-9.0,-9.0,4.0,1250432 -3100854,1630208556,2,86,0,1,1630085612,2,6.0,-9.0,-9.0,-9.0,4.0,1250433 -3100855,1630208504,2,81,0,1,1630085613,2,6.0,-9.0,-9.0,-9.0,4.0,1250434 -3100856,1630208544,2,73,0,1,1630085614,2,6.0,-9.0,-9.0,-9.0,4.0,1250435 -3100857,1630208613,2,74,0,1,1630085615,2,6.0,-9.0,-9.0,-9.0,4.0,1250436 -3100858,1630209701,2,69,0,1,1630085616,1,6.0,-9.0,-9.0,-9.0,4.0,1250437 -3100859,1630208548,2,73,0,1,1630085617,2,6.0,-9.0,-9.0,-9.0,4.0,1250438 -3100860,1630208606,2,67,0,1,1630085618,2,6.0,8.0,6.0,-9.0,4.0,1250439 -3100861,1630208567,2,78,0,1,1630085619,2,6.0,-9.0,-9.0,-9.0,4.0,1250440 -3100862,1630208547,2,74,0,1,1630085620,2,6.0,-9.0,-9.0,-9.0,4.0,1250441 -3100863,1630209705,2,71,0,1,1630085621,1,6.0,-9.0,-9.0,-9.0,4.0,1250442 -3100864,1630208520,2,70,0,1,1630085622,2,6.0,-9.0,-9.0,-9.0,4.0,1250443 -3100865,1630208545,2,73,0,1,1630085623,2,6.0,-9.0,-9.0,-9.0,4.0,1250444 -3100866,1630209704,2,65,0,1,1630085624,1,6.0,-9.0,-9.0,-9.0,4.0,1250445 -3100867,1630208498,2,69,0,1,1630085625,2,6.0,-9.0,-9.0,-9.0,4.0,1250446 -3100868,1630209698,2,71,0,1,1630085626,1,6.0,-9.0,-9.0,-9.0,4.0,1250447 -3100869,1630209713,2,75,0,1,1630085627,1,6.0,-9.0,-9.0,-9.0,4.0,1250448 -3100870,1630208529,2,65,0,1,1630085628,2,6.0,-9.0,-9.0,-9.0,4.0,1250449 -3100871,1630208614,2,78,0,1,1630085629,2,6.0,-9.0,-9.0,-9.0,4.0,1250450 -3100872,1630208552,2,74,0,1,1630085630,2,6.0,-9.0,-9.0,-9.0,4.0,1250451 -3100873,1630209709,2,94,0,1,1630085631,1,6.0,-9.0,-9.0,-9.0,4.0,1250452 -3100874,1630208600,2,73,0,1,1630085632,2,6.0,-9.0,-9.0,-9.0,4.0,1250453 -3100875,1630209721,2,66,0,1,1630085633,1,6.0,-9.0,-9.0,-9.0,4.0,1250454 -3100876,1630208530,2,65,0,1,1630085634,2,6.0,-9.0,-9.0,-9.0,4.0,1250455 -3100877,1630208514,2,70,0,1,1630085635,2,6.0,-9.0,-9.0,-9.0,4.0,1250456 -3100878,1630208603,2,80,0,1,1630085636,2,6.0,-9.0,-9.0,-9.0,4.0,1250457 -3100879,1630208559,2,94,0,1,1630085637,2,6.0,-9.0,-9.0,-9.0,4.0,1250458 -3100880,1630208581,2,69,0,1,1630085638,2,6.0,-9.0,-9.0,-9.0,4.0,1250459 -3100881,1630208503,2,73,0,1,1630085639,2,6.0,-9.0,-9.0,-9.0,4.0,1250460 -3100882,1630208557,2,68,0,1,1630085640,2,6.0,16.0,6.0,-9.0,3.0,1250461 -3100883,1630209728,2,70,0,1,1630085641,1,6.0,-9.0,-9.0,-9.0,3.0,1250462 -3100884,1630208519,2,68,0,1,1630085642,2,6.0,-9.0,-9.0,-9.0,4.0,1250463 -3100885,1630209714,2,75,0,1,1630085643,1,6.0,-9.0,-9.0,-9.0,4.0,1250464 -3100886,1630208561,2,86,0,1,1630085644,2,6.0,-9.0,-9.0,-9.0,4.0,1250465 -3100887,1630208542,2,65,0,1,1630085645,2,6.0,-9.0,-9.0,-9.0,4.0,1250466 -3100888,1630208506,2,80,0,1,1630085646,2,6.0,-9.0,-9.0,-9.0,4.0,1250467 -3100889,1630208525,2,84,0,1,1630085647,2,6.0,-9.0,-9.0,-9.0,4.0,1250468 -3100890,1630209716,2,75,0,1,1630085648,1,6.0,-9.0,-9.0,-9.0,2.0,1250469 -3100891,1630208553,2,77,0,1,1630085649,2,6.0,-9.0,-9.0,-9.0,4.0,1250470 -3100892,1630208508,2,67,0,1,1630085650,2,6.0,-9.0,-9.0,-9.0,4.0,1250471 -3100893,1630208571,2,68,0,1,1630085651,2,6.0,-9.0,-9.0,-9.0,4.0,1250472 -3100894,1630208512,2,69,0,1,1630085652,2,6.0,-9.0,-9.0,-9.0,4.0,1250473 -3100895,1630209700,2,86,0,1,1630085653,1,6.0,-9.0,-9.0,-9.0,2.0,1250474 -3100896,1630208513,2,66,0,1,1630085654,2,6.0,-9.0,-9.0,-9.0,4.0,1250475 -3100897,1630208538,2,66,0,1,1630085655,2,6.0,-9.0,-9.0,-9.0,4.0,1250476 -3100898,1630208592,2,78,0,1,1630085656,2,6.0,-9.0,-9.0,-9.0,4.0,1250477 -3100899,1630208526,2,84,0,1,1630085657,2,6.0,-9.0,-9.0,-9.0,4.0,1250478 -3100900,1630208543,2,65,0,1,1630085658,2,6.0,-9.0,-9.0,-9.0,4.0,1250479 -3100901,1630208560,2,66,0,1,1630085659,2,6.0,-9.0,-9.0,-9.0,4.0,1250480 -3100902,1630208593,2,78,0,1,1630085660,2,6.0,-9.0,-9.0,-9.0,4.0,1250481 -3100903,1630209699,2,77,0,1,1630085661,1,6.0,-9.0,-9.0,-9.0,4.0,1250482 -3100904,1630208527,2,84,0,1,1630085662,2,6.0,-9.0,-9.0,-9.0,4.0,1250483 -3100905,1630208612,2,67,0,1,1630085663,2,6.0,-9.0,-9.0,-9.0,4.0,1250484 -3100906,1630208539,2,66,0,1,1630085664,2,6.0,-9.0,-9.0,-9.0,4.0,1250485 -3100907,1630208528,2,84,0,1,1630085665,2,6.0,-9.0,-9.0,-9.0,4.0,1250486 -3100908,1630208507,2,80,0,1,1630085666,2,6.0,-9.0,-9.0,-9.0,4.0,1250487 -3100909,1630209726,2,68,0,1,1630085667,1,6.0,-9.0,-9.0,-9.0,4.0,1250488 -3100910,1630208554,2,77,0,1,1630085668,2,6.0,-9.0,-9.0,-9.0,4.0,1250489 -3100911,1630208549,2,85,0,1,1630085669,2,6.0,-9.0,-9.0,-9.0,4.0,1250490 -3100912,1630208550,2,85,0,1,1630085670,2,6.0,-9.0,-9.0,-9.0,4.0,1250491 -3100913,1630209703,2,76,0,1,1630085671,1,6.0,-9.0,-9.0,-9.0,4.0,1250492 -3100914,1630209722,2,73,0,1,1630085672,1,6.0,-9.0,-9.0,-9.0,4.0,1250493 -3100915,1630208608,2,68,0,1,1630085673,2,6.0,-9.0,-9.0,-9.0,4.0,1250494 -3100916,1630208609,2,68,0,1,1630085674,2,6.0,-9.0,-9.0,-9.0,4.0,1250495 -3100917,1630209727,2,65,0,1,1630085675,1,6.0,-9.0,-9.0,-9.0,2.0,1250496 -3100918,1630208583,2,84,0,1,1630085676,2,3.0,-9.0,-9.0,-9.0,4.0,1250497 -3100919,1630208540,2,69,0,1,1630085677,2,6.0,-9.0,-9.0,-9.0,4.0,1250498 -3100920,1630208617,2,66,0,1,1630085678,2,6.0,-9.0,-9.0,-9.0,4.0,1250499 -3100921,1630208589,2,65,0,1,1630085679,2,6.0,-9.0,-9.0,-9.0,4.0,1250500 -3100922,1630208610,2,68,0,1,1630085680,2,6.0,-9.0,-9.0,-9.0,4.0,1250501 -3100923,1630208607,2,65,0,1,1630085681,2,6.0,-9.0,-9.0,-9.0,4.0,1250502 -3100924,1630209711,2,66,0,1,1630085682,1,6.0,-9.0,-9.0,-9.0,4.0,1250503 -3100925,1630208509,2,67,0,1,1630085683,2,6.0,-9.0,-9.0,-9.0,4.0,1250504 -3100926,1630208551,2,85,0,1,1630085684,2,6.0,-9.0,-9.0,-9.0,4.0,1250505 -3100927,1630208541,2,69,0,1,1630085685,2,6.0,-9.0,-9.0,-9.0,4.0,1250506 -3100928,1630209769,4,65,0,1,1630085686,1,6.0,-9.0,-9.0,-9.0,4.0,1250507 -3100929,1630209770,3,67,0,1,1630085687,1,6.0,-9.0,-9.0,-9.0,2.0,1250508 -3100930,1630209723,2,71,0,1,1630085688,1,6.0,-9.0,-9.0,-9.0,2.0,1250509 -3100931,1630208572,2,65,0,1,1630085689,2,6.0,-9.0,-9.0,-9.0,4.0,1250510 -3100932,1630209724,2,71,0,1,1630085690,1,6.0,-9.0,-9.0,-9.0,2.0,1250511 -3100933,1630208565,2,72,0,1,1630085691,2,6.0,-9.0,-9.0,-9.0,4.0,1250512 -3100934,1630208566,2,52,2,2,1630085691,1,6.0,-9.0,-9.0,-9.0,4.0,1250512 -3100935,1630209269,2,69,0,1,1630085692,1,6.0,-9.0,-9.0,-9.0,2.0,1250513 -3100936,1630209268,2,61,12,2,1630085692,2,6.0,-9.0,-9.0,-9.0,4.0,1250513 -3100937,1630208501,2,73,0,1,1630085693,2,6.0,-9.0,-9.0,-9.0,4.0,1250514 -3100938,1630208502,2,43,2,2,1630085693,2,6.0,-9.0,-9.0,-9.0,4.0,1250514 -3100939,1630208594,2,68,0,1,1630085694,2,6.0,-9.0,-9.0,-9.0,4.0,1250515 -3100940,1630208595,2,55,1,2,1630085694,1,6.0,-9.0,-9.0,-9.0,2.0,1250515 -3100941,1630208601,2,73,0,1,1630085695,2,6.0,-9.0,-9.0,-9.0,4.0,1250516 -3100942,1630208602,2,39,2,2,1630085695,2,6.0,-9.0,-9.0,-9.0,4.0,1250516 -3100943,1630208499,2,65,0,1,1630085696,2,6.0,-9.0,-9.0,-9.0,4.0,1250517 -3100944,1630208500,2,32,2,2,1630085696,2,6.0,-9.0,-9.0,-9.0,4.0,1250517 -3100945,1630209014,2,77,0,1,1630085697,1,6.0,-9.0,-9.0,-9.0,4.0,1250518 -3100946,1630209011,2,64,5,2,1630085697,2,6.0,-9.0,-9.0,-9.0,4.0,1250518 -3100947,1630209015,2,77,0,1,1630085698,1,6.0,-9.0,-9.0,-9.0,4.0,1250519 -3100948,1630209012,2,64,5,2,1630085698,2,6.0,-9.0,-9.0,-9.0,4.0,1250519 -3100949,1630209706,2,72,0,1,1630085699,1,1.0,30.0,1.0,-9.0,4.0,1250520 -3100950,1630208497,2,66,0,1,1630085700,2,1.0,6.0,1.0,15.0,4.0,1250521 -3100951,1630208562,2,94,0,1,1630085701,2,6.0,-9.0,-9.0,-9.0,4.0,1250522 -3100952,1630208563,2,65,2,2,1630085701,2,6.0,-9.0,-9.0,-9.0,4.0,1250522 -3100953,1630208564,2,44,7,3,1630085701,2,1.0,20.0,1.0,15.0,4.0,1250522 -3100954,1630209619,2,20,0,1,1630085702,1,1.0,40.0,1.0,-9.0,4.0,1250523 -3100955,1630209551,2,24,0,1,1630085703,1,1.0,35.0,1.0,-9.0,4.0,1250524 -3100956,1630209554,2,18,5,2,1630085703,1,1.0,16.0,3.0,15.0,4.0,1250524 -3100957,1630209557,2,61,11,3,1630085703,1,6.0,-9.0,-9.0,-9.0,4.0,1250524 -3100958,1630209560,2,66,12,4,1630085703,1,1.0,16.0,3.0,-9.0,4.0,1250524 -3100959,1630209552,2,24,0,1,1630085704,1,1.0,35.0,1.0,-9.0,4.0,1250525 -3100960,1630209555,2,18,5,2,1630085704,1,1.0,16.0,3.0,15.0,4.0,1250525 -3100961,1630209558,2,61,11,3,1630085704,1,6.0,-9.0,-9.0,-9.0,4.0,1250525 -3100962,1630209561,2,66,12,4,1630085704,1,1.0,16.0,3.0,-9.0,4.0,1250525 -3100963,1630208661,1,24,0,1,1630085705,2,1.0,40.0,1.0,-9.0,4.0,1250526 -3100964,1630208663,1,24,12,2,1630085705,2,1.0,20.0,1.0,16.0,4.0,1250526 -3100965,1630208665,1,24,12,3,1630085705,2,1.0,40.0,1.0,15.0,4.0,1250526 -3100966,1630208667,1,22,12,4,1630085705,2,3.0,-9.0,-9.0,16.0,4.0,1250526 -3100967,1630208669,1,21,12,5,1630085705,2,1.0,40.0,1.0,15.0,4.0,1250526 -3100968,1630208702,1,24,0,1,1630085706,2,1.0,40.0,1.0,15.0,4.0,1250527 -3100969,1630208703,1,31,13,2,1630085706,1,1.0,20.0,1.0,16.0,4.0,1250527 -3100970,1630209203,2,20,0,1,1630085707,2,3.0,40.0,3.0,-9.0,4.0,1250528 -3100971,1630209204,2,33,13,2,1630085707,2,6.0,-9.0,-9.0,-9.0,4.0,1250528 -3100972,1630209206,2,12,15,3,1630085707,2,-9.0,-9.0,-9.0,8.0,-9.0,1250528 -3100973,1630209205,2,12,15,4,1630085707,1,-9.0,-9.0,-9.0,8.0,-9.0,1250528 -3100974,1630209207,2,0,15,5,1630085707,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250528 -3100975,1630209441,2,24,0,1,1630085708,2,6.0,-9.0,-9.0,-9.0,4.0,1250529 -3100976,1630209443,2,7,2,2,1630085708,2,-9.0,-9.0,-9.0,2.0,-9.0,1250529 -3100977,1630209444,2,5,2,3,1630085708,2,-9.0,-9.0,-9.0,1.0,-9.0,1250529 -3100978,1630209445,2,0,2,4,1630085708,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250529 -3100979,1630209442,2,25,5,5,1630085708,2,6.0,-9.0,-9.0,-9.0,4.0,1250529 -3100980,1630209548,2,23,0,1,1630085709,1,6.0,-9.0,-9.0,-9.0,4.0,1250530 -3100981,1630209489,2,23,0,1,1630085710,2,6.0,15.0,4.0,15.0,4.0,1250531 -3100982,1630209618,2,19,0,1,1630085711,1,3.0,-9.0,-9.0,-9.0,4.0,1250532 -3100983,1630209526,2,23,0,1,1630085712,2,6.0,-9.0,-9.0,-9.0,4.0,1250533 -3100984,1630209505,2,23,0,1,1630085713,2,3.0,35.0,6.0,-9.0,4.0,1250534 -3100985,1630209527,2,23,0,1,1630085714,2,6.0,-9.0,-9.0,-9.0,4.0,1250535 -3100986,1630208718,1,20,0,1,1630085715,1,6.0,35.0,5.0,15.0,4.0,1250536 -3100987,1630209110,2,20,0,1,1630085716,2,1.0,16.0,6.0,-9.0,4.0,1250537 -3100988,1630209372,2,24,0,1,1630085717,2,1.0,35.0,1.0,-9.0,4.0,1250538 -3100989,1630209679,2,22,0,1,1630085718,1,1.0,20.0,6.0,-9.0,4.0,1250539 -3100990,1630209588,2,24,0,1,1630085719,1,1.0,40.0,1.0,-9.0,4.0,1250540 -3100991,1630209241,2,20,0,1,1630085720,2,1.0,40.0,1.0,-9.0,4.0,1250541 -3100992,1630209261,2,22,0,1,1630085721,2,1.0,40.0,1.0,-9.0,4.0,1250542 -3100993,1630209242,2,20,0,1,1630085722,2,1.0,40.0,1.0,-9.0,4.0,1250543 -3100994,1630209739,4,22,0,1,1630085723,1,2.0,20.0,4.0,16.0,4.0,1250544 -3100995,1630209740,4,22,0,1,1630085724,1,2.0,20.0,4.0,16.0,4.0,1250545 -3100996,1630209765,3,23,0,1,1630085725,2,1.0,40.0,1.0,-9.0,4.0,1250546 -3100997,1630209766,3,23,0,1,1630085726,2,1.0,40.0,1.0,-9.0,4.0,1250547 -3100998,1630208674,1,24,0,1,1630085727,2,1.0,24.0,1.0,-9.0,4.0,1250548 -3100999,1630209694,2,23,0,1,1630085728,1,1.0,40.0,1.0,-9.0,4.0,1250549 -3101000,1630209506,2,23,0,1,1630085729,2,1.0,40.0,1.0,15.0,4.0,1250550 -3101001,1630209695,2,23,0,1,1630085730,1,1.0,40.0,1.0,-9.0,4.0,1250551 -3101002,1630209507,2,23,0,1,1630085731,2,1.0,40.0,1.0,15.0,4.0,1250552 -3101003,1630209508,2,23,0,1,1630085732,2,1.0,40.0,1.0,15.0,4.0,1250553 -3101004,1630209509,2,23,0,1,1630085733,2,1.0,40.0,1.0,15.0,4.0,1250554 -3101005,1630209510,2,23,0,1,1630085734,2,1.0,40.0,1.0,15.0,4.0,1250555 -3101006,1630208866,2,24,0,1,1630085735,2,3.0,-9.0,-9.0,15.0,4.0,1250556 -3101007,1630208870,2,24,1,2,1630085735,1,6.0,-9.0,-9.0,15.0,4.0,1250556 -3101008,1630208868,2,59,6,3,1630085735,2,1.0,25.0,1.0,-9.0,4.0,1250556 -3101009,1630208867,2,24,0,1,1630085736,2,3.0,-9.0,-9.0,15.0,4.0,1250557 -3101010,1630208871,2,24,1,2,1630085736,1,6.0,-9.0,-9.0,15.0,4.0,1250557 -3101011,1630208869,2,59,6,3,1630085736,2,1.0,25.0,1.0,-9.0,4.0,1250557 -3101012,1630208947,2,24,0,1,1630085737,2,1.0,24.0,1.0,15.0,4.0,1250558 -3101013,1630208948,2,6,2,2,1630085737,2,-9.0,-9.0,-9.0,3.0,-9.0,1250558 -3101014,1630208949,2,4,2,3,1630085737,2,-9.0,-9.0,-9.0,1.0,-9.0,1250558 -3101015,1630208901,2,23,0,1,1630085738,1,1.0,8.0,1.0,15.0,4.0,1250559 -3101016,1630208902,2,4,2,2,1630085738,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250559 -3101017,1630208900,2,21,13,3,1630085738,2,6.0,-9.0,-9.0,-9.0,4.0,1250559 -3101018,1630208725,1,21,0,1,1630085739,1,1.0,20.0,3.0,15.0,4.0,1250560 -3101019,1630208726,1,22,12,2,1630085739,1,6.0,-9.0,-9.0,15.0,4.0,1250560 -3101020,1630208727,1,21,12,3,1630085739,1,6.0,20.0,5.0,15.0,4.0,1250560 -3101021,1630208711,2,24,0,1,1630085740,1,1.0,20.0,1.0,15.0,4.0,1250561 -3101022,1630208710,1,19,12,2,1630085740,1,3.0,56.0,6.0,15.0,4.0,1250561 -3101023,1630209431,2,24,0,1,1630085741,1,1.0,20.0,1.0,16.0,4.0,1250562 -3101024,1630209428,2,24,13,2,1630085741,2,6.0,-9.0,-9.0,16.0,4.0,1250562 -3101025,1630209432,2,24,0,1,1630085742,1,1.0,20.0,1.0,16.0,4.0,1250563 -3101026,1630209429,2,24,13,2,1630085742,2,6.0,-9.0,-9.0,16.0,4.0,1250563 -3101027,1630209210,2,24,0,1,1630085743,1,1.0,70.0,4.0,-9.0,4.0,1250564 -3101028,1630209212,2,1,2,2,1630085743,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250564 -3101029,1630209214,2,4,4,3,1630085743,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250564 -3101030,1630209208,2,21,13,4,1630085743,2,1.0,24.0,4.0,-9.0,4.0,1250564 -3101031,1630209448,2,22,0,1,1630085744,1,1.0,40.0,1.0,-9.0,4.0,1250565 -3101032,1630209447,2,1,2,2,1630085744,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250565 -3101033,1630209446,2,22,13,3,1630085744,2,1.0,40.0,1.0,-9.0,4.0,1250565 -3101034,1630208699,1,22,0,1,1630085745,2,1.0,20.0,1.0,15.0,4.0,1250566 -3101035,1630208700,1,18,5,2,1630085745,2,1.0,40.0,6.0,15.0,4.0,1250566 -3101036,1630208701,1,23,12,3,1630085745,2,1.0,15.0,3.0,15.0,4.0,1250566 -3101037,1630209652,4,19,0,1,1630085746,2,1.0,40.0,5.0,-9.0,4.0,1250567 -3101038,1630209649,2,21,13,2,1630085746,1,1.0,50.0,1.0,-9.0,4.0,1250567 -3101039,1630209653,4,19,0,1,1630085747,2,1.0,40.0,5.0,-9.0,4.0,1250568 -3101040,1630209650,2,21,13,2,1630085747,1,1.0,50.0,1.0,-9.0,4.0,1250568 -3101041,1630209654,4,19,0,1,1630085748,2,1.0,40.0,5.0,-9.0,4.0,1250569 -3101042,1630209651,2,21,13,2,1630085748,1,1.0,50.0,1.0,-9.0,4.0,1250569 -3101043,1630209346,2,21,0,1,1630085749,1,1.0,40.0,4.0,-9.0,4.0,1250570 -3101044,1630209341,2,21,15,2,1630085749,2,1.0,40.0,1.0,15.0,4.0,1250570 -3101045,1630209347,2,21,0,1,1630085750,1,1.0,40.0,4.0,-9.0,4.0,1250571 -3101046,1630209342,2,21,15,2,1630085750,2,1.0,40.0,1.0,15.0,4.0,1250571 -3101047,1630209348,2,21,0,1,1630085751,1,1.0,40.0,4.0,-9.0,4.0,1250572 -3101048,1630209343,2,21,15,2,1630085751,2,1.0,40.0,1.0,15.0,4.0,1250572 -3101049,1630209349,2,21,0,1,1630085752,1,1.0,40.0,4.0,-9.0,4.0,1250573 -3101050,1630209344,2,21,15,2,1630085752,2,1.0,40.0,1.0,15.0,4.0,1250573 -3101051,1630209350,2,21,0,1,1630085753,1,1.0,40.0,4.0,-9.0,4.0,1250574 -3101052,1630209345,2,21,15,2,1630085753,2,1.0,40.0,1.0,15.0,4.0,1250574 -3101053,1630209595,2,57,0,1,1630085754,1,6.0,40.0,1.0,-9.0,4.0,1250575 -3101054,1630209007,2,42,0,1,1630085755,2,1.0,52.0,1.0,-9.0,2.0,1250576 -3101055,1630209010,2,46,13,2,1630085755,2,1.0,30.0,4.0,-9.0,4.0,1250576 -3101056,1630209597,2,60,0,1,1630085756,1,1.0,40.0,1.0,-9.0,4.0,1250577 -3101057,1630209655,2,62,0,1,1630085757,1,1.0,30.0,3.0,-9.0,4.0,1250578 -3101058,1630209541,2,48,0,1,1630085758,1,1.0,50.0,1.0,-9.0,4.0,1250579 -3101059,1630209710,2,66,0,1,1630085759,1,1.0,30.0,1.0,-9.0,4.0,1250580 -3101060,1630209370,2,57,0,1,1630085760,1,1.0,40.0,1.0,-9.0,4.0,1250581 -3101061,1630209369,2,59,1,2,1630085760,2,3.0,-9.0,-9.0,-9.0,4.0,1250581 -3101062,1630209371,2,25,2,3,1630085760,1,1.0,40.0,3.0,-9.0,4.0,1250581 -3101063,1630209062,2,59,0,1,1630085761,2,6.0,-9.0,-9.0,15.0,4.0,1250582 -3101064,1630209064,2,75,1,2,1630085761,1,6.0,-9.0,-9.0,-9.0,4.0,1250582 -3101065,1630209063,2,39,2,3,1630085761,2,3.0,-9.0,-9.0,15.0,4.0,1250582 -3101066,1630209697,4,72,0,1,1630085762,2,6.0,-9.0,-9.0,-9.0,4.0,1250583 -3101067,1630209738,4,25,0,1,1630085763,1,1.0,30.0,1.0,-9.0,4.0,1250584 -3101068,1630209189,2,26,0,1,1630085764,2,1.0,50.0,1.0,-9.0,4.0,1250585 -3101069,1630209192,2,27,13,2,1630085764,1,1.0,40.0,1.0,-9.0,4.0,1250585 -3101070,1630208995,2,44,0,1,1630085765,2,1.0,40.0,1.0,-9.0,4.0,1250586 -3101071,1630208997,2,18,2,2,1630085765,2,6.0,-9.0,-9.0,14.0,4.0,1250586 -3101072,1630209001,2,12,2,3,1630085765,1,-9.0,-9.0,-9.0,8.0,-9.0,1250586 -3101073,1630209003,2,10,2,4,1630085765,2,-9.0,-9.0,-9.0,7.0,-9.0,1250586 -3101074,1630208999,2,61,6,5,1630085765,2,1.0,37.0,1.0,-9.0,4.0,1250586 -3101075,1630209549,2,23,0,1,1630085766,1,6.0,40.0,1.0,15.0,4.0,1250587 -3101076,1630209550,2,62,6,2,1630085766,1,1.0,40.0,1.0,-9.0,4.0,1250587 -3101077,1630208822,2,59,0,1,1630085767,2,6.0,-9.0,-9.0,-9.0,4.0,1250588 -3101078,1630208824,2,22,2,2,1630085767,2,3.0,-9.0,-9.0,-9.0,4.0,1250588 -3101079,1630208546,2,87,0,1,1630085768,2,6.0,-9.0,-9.0,-9.0,4.0,1250589 -3101080,1630208582,2,70,0,1,1630085769,2,6.0,-9.0,-9.0,-9.0,4.0,1250590 -3101081,1630209225,2,34,0,1,1630085770,1,3.0,40.0,4.0,-9.0,4.0,1250591 -3101082,1630209222,2,35,1,2,1630085770,2,1.0,40.0,1.0,15.0,4.0,1250591 -3101083,1630209226,2,16,4,3,1630085770,2,6.0,-9.0,-9.0,13.0,-9.0,1250591 -3101084,1630209223,2,14,4,4,1630085770,1,-9.0,-9.0,-9.0,12.0,-9.0,1250591 -3101085,1630209224,2,6,4,5,1630085770,1,-9.0,-9.0,-9.0,3.0,-9.0,1250591 -3101086,1630209532,4,41,0,1,1630085771,2,6.0,40.0,4.0,15.0,4.0,1250592 -3101087,1630209530,4,38,1,2,1630085771,1,1.0,40.0,1.0,-9.0,4.0,1250592 -3101088,1630209529,2,11,4,3,1630085771,1,-9.0,-9.0,-9.0,8.0,-9.0,1250592 -3101089,1630209531,4,31,5,4,1630085771,1,1.0,40.0,1.0,-9.0,4.0,1250592 -3101090,1630208733,2,40,0,1,1630085772,2,1.0,40.0,1.0,-9.0,4.0,1250593 -3101091,1630208737,2,52,1,2,1630085772,1,1.0,40.0,1.0,-9.0,4.0,1250593 -3101092,1630208781,2,45,0,1,1630085773,2,1.0,13.0,5.0,-9.0,4.0,1250594 -3101093,1630208783,2,22,2,2,1630085773,2,6.0,-9.0,-9.0,15.0,4.0,1250594 -3101094,1630208785,2,22,2,3,1630085773,1,6.0,-9.0,-9.0,14.0,4.0,1250594 -3101095,1630209494,2,43,0,1,1630085774,2,6.0,-9.0,-9.0,-9.0,4.0,1250595 -3101096,1630209495,2,0,2,2,1630085774,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250595 -3101097,1630209262,2,22,0,1,1630085775,2,1.0,40.0,1.0,-9.0,4.0,1250596 -3101098,1630209582,2,39,0,1,1630085776,1,1.0,40.0,1.0,-9.0,4.0,1250597 -3101099,1630209368,2,35,0,1,1630085777,2,1.0,40.0,1.0,15.0,4.0,1250598 -3101100,1630209248,2,50,0,1,1630085778,2,1.0,30.0,1.0,-9.0,4.0,1250599 -3101101,1630209250,2,19,2,2,1630085778,2,1.0,20.0,3.0,-9.0,4.0,1250599 -3101102,1630208709,1,27,0,1,1630085779,1,1.0,40.0,1.0,-9.0,4.0,1250600 -3101103,1630208586,2,87,0,1,1630085780,2,6.0,-9.0,-9.0,-9.0,4.0,1250601 -3101104,1630208587,2,57,2,2,1630085780,2,6.0,-9.0,-9.0,-9.0,4.0,1250601 -3101105,1630208588,2,53,2,3,1630085780,1,6.0,-9.0,-9.0,-9.0,4.0,1250601 -3101106,1630209438,2,61,0,1,1630085781,1,3.0,-9.0,-9.0,15.0,4.0,1250602 -3101107,1630209437,2,48,13,2,1630085781,2,3.0,-9.0,-9.0,15.0,4.0,1250602 -3101108,1630209439,2,21,15,3,1630085781,1,6.0,-9.0,-9.0,15.0,4.0,1250602 -3101109,1630209320,2,26,0,1,1630085782,2,1.0,40.0,4.0,15.0,4.0,1250603 -3101110,1630209321,2,35,13,2,1630085782,1,1.0,20.0,1.0,-9.0,4.0,1250603 -3101111,1630209335,2,59,0,1,1630085783,2,1.0,31.0,4.0,-9.0,4.0,1250604 -3101112,1630209339,2,41,2,2,1630085783,1,3.0,-9.0,-9.0,-9.0,4.0,1250604 -3101113,1630209337,2,21,7,3,1630085783,2,1.0,38.0,5.0,-9.0,4.0,1250604 -3101114,1630209195,2,60,0,1,1630085784,2,6.0,-9.0,-9.0,-9.0,4.0,1250605 -3101115,1630209196,2,42,2,2,1630085784,1,1.0,40.0,6.0,15.0,4.0,1250605 -3101116,1630208817,2,29,0,1,1630085785,1,1.0,50.0,5.0,-9.0,4.0,1250606 -3101117,1630208816,2,2,2,2,1630085785,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250606 -3101118,1630208815,2,27,13,3,1630085785,2,1.0,45.0,1.0,-9.0,4.0,1250606 -3101119,1630209380,2,61,0,1,1630085786,2,1.0,40.0,1.0,-9.0,2.0,1250607 -3101120,1630208858,2,36,0,1,1630085787,2,1.0,40.0,4.0,-9.0,4.0,1250608 -3101121,1630208860,2,16,2,2,1630085787,2,6.0,-9.0,-9.0,13.0,-9.0,1250608 -3101122,1630208861,2,15,2,3,1630085787,2,-9.0,-9.0,-9.0,12.0,-9.0,1250608 -3101123,1630208859,2,14,2,4,1630085787,1,-9.0,-9.0,-9.0,11.0,-9.0,1250608 -3101124,1630208862,2,11,2,5,1630085787,2,-9.0,-9.0,-9.0,7.0,-9.0,1250608 -3101125,1630209426,2,60,0,1,1630085788,1,1.0,48.0,1.0,-9.0,4.0,1250609 -3101126,1630209425,2,60,1,2,1630085788,2,6.0,-9.0,-9.0,-9.0,4.0,1250609 -3101127,1630209742,4,31,0,1,1630085789,1,1.0,60.0,1.0,-9.0,4.0,1250610 -3101128,1630208739,2,28,0,1,1630085790,1,1.0,36.0,1.0,-9.0,4.0,1250611 -3101129,1630208740,2,12,2,2,1630085790,2,-9.0,-9.0,-9.0,9.0,-9.0,1250611 -3101130,1630208741,2,5,2,3,1630085790,2,-9.0,-9.0,-9.0,2.0,-9.0,1250611 -3101131,1630208742,2,17,10,4,1630085790,2,6.0,-9.0,-9.0,14.0,4.0,1250611 -3101132,1630208738,2,32,15,5,1630085790,2,1.0,40.0,1.0,-9.0,4.0,1250611 -3101133,1630209482,3,35,0,1,1630085791,2,3.0,30.0,5.0,-9.0,4.0,1250612 -3101134,1630208981,2,54,0,1,1630085792,2,6.0,-9.0,-9.0,15.0,4.0,1250613 -3101135,1630208983,2,25,2,2,1630085792,2,1.0,65.0,1.0,-9.0,4.0,1250613 -3101136,1630208985,2,19,2,3,1630085792,2,3.0,3.0,6.0,-9.0,4.0,1250613 -3101137,1630209153,2,23,0,1,1630085793,2,1.0,23.0,6.0,15.0,4.0,1250614 -3101138,1630209154,2,6,2,2,1630085793,1,-9.0,-9.0,-9.0,3.0,-9.0,1250614 -3101139,1630209155,2,2,2,3,1630085793,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250614 -3101140,1630208675,1,28,0,1,1630085794,2,1.0,80.0,1.0,-9.0,2.0,1250615 -3101141,1630208676,1,26,13,2,1630085794,1,1.0,65.0,1.0,-9.0,4.0,1250615 -3101142,1630209767,3,23,0,1,1630085795,2,1.0,40.0,1.0,-9.0,4.0,1250616 -3101143,1630208719,1,20,0,1,1630085796,1,6.0,35.0,5.0,15.0,4.0,1250617 -3101144,1630208597,2,73,0,1,1630085797,2,6.0,-9.0,-9.0,-9.0,4.0,1250618 -3101145,1630208598,2,51,2,2,1630085797,1,6.0,-9.0,-9.0,-9.0,4.0,1250618 -3101146,1630209543,2,60,0,1,1630085798,1,6.0,-9.0,-9.0,-9.0,4.0,1250619 -3101147,1630209434,2,56,0,1,1630085799,2,1.0,40.0,1.0,-9.0,4.0,1250620 -3101148,1630209435,2,22,2,2,1630085799,1,1.0,40.0,1.0,-9.0,4.0,1250620 -3101149,1630209436,2,57,13,3,1630085799,1,6.0,-9.0,-9.0,-9.0,2.0,1250620 -3101150,1630208691,1,26,0,1,1630085800,2,1.0,35.0,1.0,-9.0,4.0,1250621 -3101151,1630208693,1,26,12,2,1630085800,1,1.0,40.0,1.0,-9.0,4.0,1250621 -3101152,1630208692,1,21,12,3,1630085800,2,1.0,35.0,1.0,15.0,4.0,1250621 -3101153,1630209047,2,38,0,1,1630085801,2,1.0,40.0,1.0,15.0,4.0,1250622 -3101154,1630209048,2,19,2,2,1630085801,2,6.0,-9.0,-9.0,15.0,4.0,1250622 -3101155,1630209049,2,8,2,3,1630085801,1,-9.0,-9.0,-9.0,4.0,-9.0,1250622 -3101156,1630208909,2,36,0,1,1630085802,2,3.0,-9.0,-9.0,-9.0,4.0,1250623 -3101157,1630208910,2,14,2,2,1630085802,1,-9.0,-9.0,-9.0,10.0,-9.0,1250623 -3101158,1630208912,2,9,2,3,1630085802,2,-9.0,-9.0,-9.0,8.0,-9.0,1250623 -3101159,1630208911,2,44,5,4,1630085802,1,3.0,-9.0,-9.0,-9.0,4.0,1250623 -3101160,1630208969,2,57,0,1,1630085803,2,6.0,-9.0,-9.0,-9.0,4.0,1250624 -3101161,1630208712,1,33,0,1,1630085804,1,1.0,60.0,4.0,-9.0,4.0,1250625 -3101162,1630209022,2,52,0,1,1630085805,1,1.0,40.0,1.0,-9.0,2.0,1250626 -3101163,1630209020,2,58,5,2,1630085805,2,1.0,35.0,1.0,-9.0,4.0,1250626 -3101164,1630209021,2,23,10,3,1630085805,2,1.0,12.0,3.0,15.0,4.0,1250626 -3101165,1630209028,2,29,0,1,1630085806,1,1.0,20.0,5.0,-9.0,4.0,1250627 -3101166,1630209026,2,49,6,2,1630085806,2,1.0,35.0,1.0,15.0,4.0,1250627 -3101167,1630209758,4,46,0,1,1630085807,2,6.0,10.0,6.0,15.0,4.0,1250628 -3101168,1630209646,3,44,0,1,1630085808,1,3.0,-9.0,-9.0,-9.0,4.0,1250629 -3101169,1630209612,4,47,0,1,1630085809,2,1.0,35.0,4.0,-9.0,4.0,1250630 -3101170,1630209610,2,24,2,2,1630085809,1,1.0,32.0,1.0,15.0,4.0,1250630 -3101171,1630209613,4,59,5,3,1630085809,2,6.0,-9.0,-9.0,-9.0,4.0,1250630 -3101172,1630209611,2,25,10,4,1630085809,1,3.0,-9.0,-9.0,-9.0,4.0,1250630 -3101173,1630208970,3,27,0,1,1630085810,2,1.0,65.0,1.0,-9.0,4.0,1250631 -3101174,1630209084,2,37,0,1,1630085811,2,6.0,-9.0,-9.0,-9.0,4.0,1250632 -3101175,1630209090,2,40,1,2,1630085811,1,6.0,-9.0,-9.0,-9.0,4.0,1250632 -3101176,1630209086,2,8,2,3,1630085811,1,-9.0,-9.0,-9.0,3.0,-9.0,1250632 -3101177,1630209088,2,5,2,4,1630085811,1,-9.0,-9.0,-9.0,2.0,-9.0,1250632 -3101178,1630209139,2,42,0,1,1630085812,1,1.0,40.0,1.0,-9.0,4.0,1250633 -3101179,1630209133,2,37,1,2,1630085812,2,1.0,60.0,1.0,-9.0,4.0,1250633 -3101180,1630209145,2,16,2,3,1630085812,2,6.0,-9.0,-9.0,12.0,-9.0,1250633 -3101181,1630209136,2,7,2,4,1630085812,1,-9.0,-9.0,-9.0,3.0,-9.0,1250633 -3101182,1630209142,2,19,4,5,1630085812,1,6.0,-9.0,-9.0,15.0,4.0,1250633 -3101183,1630209504,2,41,0,1,1630085813,2,1.0,45.0,1.0,-9.0,4.0,1250634 -3101184,1630208518,2,70,0,1,1630085814,1,6.0,-9.0,-9.0,-9.0,2.0,1250635 -3101185,1630208517,2,68,1,2,1630085814,2,1.0,60.0,3.0,-9.0,4.0,1250635 -3101186,1630208590,2,68,0,1,1630085815,2,3.0,40.0,3.0,-9.0,4.0,1250636 -3101187,1630208591,2,52,1,2,1630085815,1,1.0,40.0,1.0,-9.0,4.0,1250636 -3101188,1630209462,2,30,0,1,1630085816,2,3.0,-9.0,-9.0,-9.0,4.0,1250637 -3101189,1630209464,2,9,2,2,1630085816,2,-9.0,-9.0,-9.0,5.0,-9.0,1250637 -3101190,1630209465,2,8,2,3,1630085816,2,-9.0,-9.0,-9.0,5.0,-9.0,1250637 -3101191,1630209463,2,5,2,4,1630085816,1,-9.0,-9.0,-9.0,2.0,-9.0,1250637 -3101192,1630208818,2,37,0,1,1630085817,2,6.0,-9.0,-9.0,-9.0,4.0,1250638 -3101193,1630208819,2,4,2,2,1630085817,1,-9.0,-9.0,-9.0,1.0,-9.0,1250638 -3101194,1630209585,2,51,0,1,1630085818,1,1.0,40.0,1.0,-9.0,4.0,1250639 -3101195,1630208974,2,58,0,1,1630085819,1,6.0,-9.0,-9.0,-9.0,4.0,1250640 -3101196,1630208972,2,52,1,2,1630085819,2,1.0,32.0,4.0,-9.0,4.0,1250640 -3101197,1630208973,2,14,2,3,1630085819,1,-9.0,-9.0,-9.0,10.0,-9.0,1250640 -3101198,1630209736,4,48,0,1,1630085820,2,6.0,20.0,6.0,-9.0,4.0,1250641 -3101199,1630209735,4,19,2,2,1630085820,1,1.0,18.0,6.0,-9.0,4.0,1250641 -3101200,1630209553,2,24,0,1,1630085821,1,1.0,35.0,1.0,-9.0,4.0,1250642 -3101201,1630209556,2,18,5,2,1630085821,1,1.0,16.0,3.0,15.0,4.0,1250642 -3101202,1630209559,2,61,11,3,1630085821,1,6.0,-9.0,-9.0,-9.0,4.0,1250642 -3101203,1630209562,2,66,12,4,1630085821,1,1.0,16.0,3.0,-9.0,4.0,1250642 -3101204,1630208787,2,59,0,1,1630085822,2,1.0,30.0,6.0,-9.0,4.0,1250643 -3101205,1630208788,2,58,1,2,1630085822,1,1.0,48.0,1.0,-9.0,4.0,1250643 -3101206,1630209229,2,52,0,1,1630085823,2,1.0,50.0,1.0,-9.0,2.0,1250644 -3101207,1630209232,2,65,1,2,1630085823,1,6.0,-9.0,-9.0,-9.0,4.0,1250644 -3101208,1630209235,4,18,14,3,1630085823,1,6.0,-9.0,-9.0,14.0,4.0,1250644 -3101209,1630208689,1,24,0,1,1630085824,2,6.0,8.0,6.0,16.0,4.0,1250645 -3101210,1630208690,4,24,12,2,1630085824,2,6.0,-9.0,-9.0,16.0,4.0,1250645 -3101211,1630209332,2,32,0,1,1630085825,2,1.0,20.0,1.0,-9.0,4.0,1250646 -3101212,1630209333,2,10,2,2,1630085825,1,-9.0,-9.0,-9.0,7.0,-9.0,1250646 -3101213,1630208655,1,24,0,1,1630085826,1,1.0,35.0,1.0,-9.0,4.0,1250647 -3101214,1630208654,1,23,13,2,1630085826,2,6.0,20.0,4.0,16.0,4.0,1250647 -3101215,1630209066,2,63,0,1,1630085827,1,6.0,-9.0,-9.0,-9.0,4.0,1250648 -3101216,1630209065,2,62,1,2,1630085827,2,6.0,-9.0,-9.0,-9.0,4.0,1250648 -3101217,1630209199,2,53,0,1,1630085828,2,1.0,40.0,1.0,-9.0,4.0,1250649 -3101218,1630209202,2,46,1,2,1630085828,1,1.0,40.0,1.0,-9.0,4.0,1250649 -3101219,1630209109,2,57,0,1,1630085829,1,1.0,37.0,1.0,-9.0,2.0,1250650 -3101220,1630209107,2,56,1,2,1630085829,2,1.0,12.0,4.0,-9.0,4.0,1250650 -3101221,1630208779,2,49,0,1,1630085830,1,1.0,40.0,1.0,-9.0,4.0,1250651 -3101222,1630208778,2,49,1,2,1630085830,2,3.0,-9.0,-9.0,-9.0,3.0,1250651 -3101223,1630209628,2,29,0,1,1630085831,1,1.0,40.0,1.0,-9.0,4.0,1250652 -3101224,1630208510,2,74,0,1,1630085832,2,6.0,-9.0,-9.0,-9.0,4.0,1250653 -3101225,1630208511,2,46,2,2,1630085832,1,6.0,-9.0,-9.0,-9.0,4.0,1250653 -3101226,1630209598,2,29,0,1,1630085833,1,1.0,40.0,1.0,15.0,3.0,1250654 -3101227,1630209599,2,7,2,2,1630085833,2,-9.0,-9.0,-9.0,3.0,-9.0,1250654 -3101228,1630208671,1,23,0,1,1630085834,2,1.0,60.0,4.0,16.0,4.0,1250655 -3101229,1630208672,1,22,12,2,1630085834,2,1.0,40.0,1.0,-9.0,4.0,1250655 -3101230,1630209264,2,32,0,1,1630085835,1,1.0,40.0,1.0,-9.0,4.0,1250656 -3101231,1630209265,2,7,2,2,1630085835,2,-9.0,-9.0,-9.0,4.0,-9.0,1250656 -3101232,1630209266,2,6,2,3,1630085835,2,-9.0,-9.0,-9.0,3.0,-9.0,1250656 -3101233,1630209263,2,29,13,4,1630085835,2,1.0,25.0,1.0,-9.0,4.0,1250656 -3101234,1630209410,2,26,0,1,1630085836,2,1.0,15.0,3.0,-9.0,4.0,1250657 -3101235,1630209411,2,10,2,2,1630085836,2,-9.0,-9.0,-9.0,7.0,-9.0,1250657 -3101236,1630209412,2,6,2,3,1630085836,2,-9.0,-9.0,-9.0,2.0,-9.0,1250657 -3101237,1630209719,2,65,0,1,1630085837,1,1.0,25.0,3.0,-9.0,4.0,1250658 -3101238,1630209720,4,56,1,2,1630085837,2,6.0,-9.0,-9.0,-9.0,4.0,1250658 -3101239,1630208576,2,67,0,1,1630085838,2,6.0,-9.0,-9.0,-9.0,4.0,1250659 -3101240,1630209340,2,64,0,1,1630085839,2,6.0,40.0,6.0,-9.0,4.0,1250660 -3101241,1630209601,2,41,0,1,1630085840,1,3.0,50.0,4.0,-9.0,4.0,1250661 -3101242,1630208656,1,27,0,1,1630085841,2,6.0,-9.0,-9.0,16.0,4.0,1250662 -3101243,1630208658,4,26,12,2,1630085841,2,6.0,-9.0,-9.0,16.0,4.0,1250662 -3101244,1630208657,1,25,12,3,1630085841,2,6.0,-9.0,-9.0,16.0,4.0,1250662 -3101245,1630209686,2,58,0,1,1630085842,1,1.0,50.0,3.0,-9.0,4.0,1250663 -3101246,1630209689,2,28,2,2,1630085842,1,3.0,35.0,4.0,-9.0,4.0,1250663 -3101247,1630209692,2,32,11,3,1630085842,1,1.0,30.0,3.0,-9.0,4.0,1250663 -3101248,1630209458,2,30,0,1,1630085843,1,1.0,40.0,1.0,15.0,4.0,1250664 -3101249,1630209457,2,27,15,2,1630085843,2,1.0,40.0,1.0,15.0,4.0,1250664 -3101250,1630209029,2,46,0,1,1630085844,2,1.0,40.0,5.0,-9.0,4.0,1250665 -3101251,1630209030,2,28,10,2,1630085844,1,6.0,-9.0,-9.0,-9.0,4.0,1250665 -3101252,1630209031,2,33,12,3,1630085844,1,6.0,-9.0,-9.0,-9.0,4.0,1250665 -3101253,1630209172,2,36,0,1,1630085845,2,1.0,40.0,1.0,-9.0,4.0,1250666 -3101254,1630209175,2,14,2,2,1630085845,2,-9.0,-9.0,-9.0,11.0,-9.0,1250666 -3101255,1630209174,2,36,13,3,1630085845,1,1.0,30.0,1.0,-9.0,4.0,1250666 -3101256,1630209173,2,18,15,4,1630085845,2,6.0,-9.0,-9.0,-9.0,4.0,1250666 -3101257,1630209605,2,62,0,1,1630085846,1,1.0,50.0,1.0,-9.0,2.0,1250667 -3101258,1630209674,2,56,0,1,1630085847,1,6.0,-9.0,-9.0,-9.0,4.0,1250668 -3101259,1630209675,2,23,2,2,1630085847,1,6.0,-9.0,-9.0,-9.0,4.0,1250668 -3101260,1630209676,2,23,2,3,1630085847,1,6.0,-9.0,-9.0,-9.0,4.0,1250668 -3101261,1630209677,2,20,2,4,1630085847,1,6.0,-9.0,-9.0,-9.0,4.0,1250668 -3101262,1630208855,2,59,0,1,1630085848,2,6.0,-9.0,-9.0,-9.0,4.0,1250669 -3101263,1630208856,2,16,7,2,1630085848,1,6.0,-9.0,-9.0,13.0,-9.0,1250669 -3101264,1630209732,4,52,0,1,1630085849,1,1.0,3.0,6.0,-9.0,4.0,1250670 -3101265,1630209734,4,43,1,2,1630085849,2,6.0,-9.0,-9.0,-9.0,4.0,1250670 -3101266,1630208960,2,21,0,1,1630085850,2,3.0,-9.0,-9.0,-9.0,4.0,1250671 -3101267,1630208961,2,1,2,2,1630085850,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250671 -3101268,1630209211,2,24,0,1,1630085851,1,1.0,70.0,4.0,-9.0,4.0,1250672 -3101269,1630209213,2,1,2,2,1630085851,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250672 -3101270,1630209215,2,4,4,3,1630085851,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250672 -3101271,1630209209,2,21,13,4,1630085851,2,1.0,24.0,4.0,-9.0,4.0,1250672 -3101272,1630209750,4,38,0,1,1630085852,1,3.0,30.0,6.0,15.0,3.0,1250673 -3101273,1630209538,2,53,0,1,1630085853,1,6.0,-9.0,-9.0,-9.0,4.0,1250674 -3101274,1630209539,2,60,10,2,1630085853,1,6.0,-9.0,-9.0,-9.0,2.0,1250674 -3101275,1630209540,2,58,10,3,1630085853,1,6.0,-9.0,-9.0,-9.0,2.0,1250674 -3101276,1630208638,1,24,0,1,1630085854,2,1.0,20.0,3.0,15.0,4.0,1250675 -3101277,1630208639,1,29,1,2,1630085854,1,1.0,31.0,3.0,15.0,4.0,1250675 -3101278,1630209664,2,45,0,1,1630085855,1,1.0,50.0,1.0,-9.0,2.0,1250676 -3101279,1630209667,2,19,2,2,1630085855,1,1.0,40.0,5.0,15.0,4.0,1250676 -3101280,1630208977,2,39,0,1,1630085856,2,6.0,-9.0,-9.0,-9.0,4.0,1250677 -3101281,1630208978,2,17,2,2,1630085856,1,6.0,-9.0,-9.0,13.0,4.0,1250677 -3101282,1630208979,2,15,2,3,1630085856,1,-9.0,-9.0,-9.0,11.0,-9.0,1250677 -3101283,1630208621,3,43,0,1,1630085857,1,1.0,60.0,1.0,-9.0,4.0,1250678 -3101284,1630208619,3,65,6,2,1630085857,2,6.0,-9.0,-9.0,-9.0,4.0,1250678 -3101285,1630208620,1,20,11,3,1630085857,2,1.0,25.0,4.0,-9.0,4.0,1250678 -3101286,1630208622,1,35,13,4,1630085857,1,1.0,25.0,1.0,-9.0,4.0,1250678 -3101287,1630208522,2,44,0,1,1630085858,2,3.0,40.0,4.0,-9.0,4.0,1250679 -3101288,1630208523,2,59,6,2,1630085858,1,6.0,-9.0,-9.0,-9.0,4.0,1250679 -3101289,1630208521,2,68,11,3,1630085858,2,6.0,-9.0,-9.0,-9.0,4.0,1250679 -3101290,1630208524,2,45,13,4,1630085858,1,6.0,-9.0,-9.0,-9.0,4.0,1250679 -3101291,1630209361,2,60,0,1,1630085859,1,1.0,45.0,1.0,-9.0,4.0,1250680 -3101292,1630209360,2,56,1,2,1630085859,2,1.0,50.0,1.0,-9.0,4.0,1250680 -3101293,1630209496,2,50,0,1,1630085860,2,6.0,40.0,1.0,-9.0,4.0,1250681 -3101294,1630209498,2,53,1,2,1630085860,1,6.0,-9.0,-9.0,-9.0,4.0,1250681 -3101295,1630209499,2,26,2,3,1630085860,1,6.0,-9.0,-9.0,-9.0,4.0,1250681 -3101296,1630209497,2,20,2,4,1630085860,2,1.0,25.0,1.0,-9.0,4.0,1250681 -3101297,1630208708,1,40,0,1,1630085861,1,1.0,43.0,1.0,-9.0,4.0,1250682 -3101298,1630208662,1,24,0,1,1630085862,2,1.0,40.0,1.0,-9.0,4.0,1250683 -3101299,1630208664,1,24,12,2,1630085862,2,1.0,20.0,1.0,16.0,4.0,1250683 -3101300,1630208666,1,24,12,3,1630085862,2,1.0,40.0,1.0,15.0,4.0,1250683 -3101301,1630208668,1,22,12,4,1630085862,2,3.0,-9.0,-9.0,16.0,4.0,1250683 -3101302,1630208670,1,21,12,5,1630085862,2,1.0,40.0,1.0,15.0,4.0,1250683 -3101303,1630209052,2,32,0,1,1630085863,2,3.0,8.0,4.0,-9.0,4.0,1250684 -3101304,1630209058,2,8,2,2,1630085863,2,-9.0,-9.0,-9.0,4.0,-9.0,1250684 -3101305,1630209055,2,34,13,3,1630085863,1,1.0,45.0,2.0,-9.0,4.0,1250684 -3101306,1630209114,2,62,0,1,1630085864,2,1.0,20.0,6.0,-9.0,4.0,1250685 -3101307,1630209466,2,40,0,1,1630085865,2,1.0,35.0,1.0,-9.0,4.0,1250686 -3101308,1630209468,2,46,1,2,1630085865,1,1.0,40.0,1.0,-9.0,4.0,1250686 -3101309,1630209467,2,11,2,3,1630085865,1,-9.0,-9.0,-9.0,8.0,-9.0,1250686 -3101310,1630209469,2,9,2,4,1630085865,2,-9.0,-9.0,-9.0,5.0,-9.0,1250686 -3101311,1630208715,1,48,0,1,1630085866,1,2.0,40.0,3.0,-9.0,4.0,1250687 -3101312,1630208924,2,58,0,1,1630085867,2,1.0,40.0,1.0,-9.0,4.0,1250688 -3101313,1630208927,2,21,2,2,1630085867,1,1.0,32.0,2.0,-9.0,4.0,1250688 -3101314,1630208930,2,58,13,3,1630085867,1,6.0,-9.0,-9.0,-9.0,2.0,1250688 -3101315,1630209433,2,24,0,1,1630085868,1,1.0,20.0,1.0,16.0,4.0,1250689 -3101316,1630209430,2,24,13,2,1630085868,2,6.0,-9.0,-9.0,16.0,4.0,1250689 -3101317,1630208623,1,22,0,1,1630085869,2,1.0,45.0,4.0,-9.0,4.0,1250690 -3101318,1630208624,1,24,12,2,1630085869,2,1.0,50.0,1.0,-9.0,4.0,1250690 -3101319,1630208625,1,21,12,3,1630085869,2,1.0,35.0,3.0,-9.0,4.0,1250690 -3101320,1630208940,2,49,0,1,1630085870,2,1.0,40.0,1.0,-9.0,4.0,1250691 -3101321,1630208941,2,26,2,2,1630085870,2,1.0,40.0,1.0,-9.0,4.0,1250691 -3101322,1630208942,2,14,2,3,1630085870,1,-9.0,-9.0,-9.0,11.0,-9.0,1250691 -3101323,1630208944,2,1,7,4,1630085870,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250691 -3101324,1630208943,2,48,13,5,1630085870,1,1.0,40.0,1.0,-9.0,2.0,1250691 -3101325,1630208631,2,50,0,1,1630085871,2,3.0,40.0,5.0,-9.0,4.0,1250692 -3101326,1630208633,2,50,13,2,1630085871,1,1.0,20.0,1.0,-9.0,4.0,1250692 -3101327,1630208635,2,48,15,3,1630085871,1,1.0,25.0,1.0,-9.0,4.0,1250692 -3101328,1630208629,1,47,15,4,1630085871,2,3.0,-9.0,-9.0,-9.0,4.0,1250692 -3101329,1630209253,2,57,0,1,1630085872,2,1.0,28.0,4.0,-9.0,4.0,1250693 -3101330,1630209255,2,28,2,2,1630085872,1,6.0,-9.0,-9.0,13.0,4.0,1250693 -3101331,1630209254,2,6,7,3,1630085872,1,-9.0,-9.0,-9.0,4.0,-9.0,1250693 -3101332,1630208641,1,29,0,1,1630085873,1,1.0,40.0,1.0,16.0,4.0,1250694 -3101333,1630208640,1,24,12,2,1630085873,2,1.0,40.0,1.0,15.0,4.0,1250694 -3101334,1630208574,2,72,0,1,1630085874,2,6.0,-9.0,-9.0,-9.0,4.0,1250695 -3101335,1630208575,2,41,2,2,1630085874,1,1.0,40.0,1.0,-9.0,4.0,1250695 -3101336,1630209101,3,44,0,1,1630085875,2,1.0,40.0,1.0,-9.0,4.0,1250696 -3101337,1630209097,2,60,5,2,1630085875,2,6.0,-9.0,-9.0,-9.0,4.0,1250696 -3101338,1630209099,2,74,6,3,1630085875,1,6.0,-9.0,-9.0,-9.0,2.0,1250696 -3101339,1630208825,2,24,0,1,1630085876,2,6.0,10.0,6.0,15.0,4.0,1250697 -3101340,1630209270,2,37,0,1,1630085877,2,1.0,40.0,4.0,-9.0,4.0,1250698 -3101341,1630209272,2,44,1,2,1630085877,1,1.0,40.0,1.0,-9.0,4.0,1250698 -3101342,1630209271,2,8,2,3,1630085877,1,-9.0,-9.0,-9.0,5.0,-9.0,1250698 -3101343,1630209273,2,4,2,4,1630085877,2,-9.0,-9.0,-9.0,1.0,-9.0,1250698 -3101344,1630209274,2,1,2,5,1630085877,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250698 -3101345,1630209390,2,61,0,1,1630085878,2,1.0,25.0,1.0,-9.0,4.0,1250699 -3101346,1630208648,1,25,0,1,1630085879,2,1.0,40.0,1.0,-9.0,4.0,1250700 -3101347,1630208649,1,26,12,2,1630085879,1,1.0,30.0,1.0,16.0,4.0,1250700 -3101348,1630208650,1,26,12,3,1630085879,1,1.0,55.0,1.0,-9.0,4.0,1250700 -3101349,1630208651,1,25,13,4,1630085879,1,1.0,35.0,4.0,-9.0,4.0,1250700 -3101350,1630209760,4,36,0,1,1630085880,2,1.0,35.0,1.0,-9.0,4.0,1250701 -3101351,1630209761,4,13,2,2,1630085880,2,-9.0,-9.0,-9.0,9.0,-9.0,1250701 -3101352,1630209762,4,9,2,3,1630085880,2,-9.0,-9.0,-9.0,5.0,-9.0,1250701 -3101353,1630209763,4,4,2,4,1630085880,1,-9.0,-9.0,-9.0,1.0,-9.0,1250701 -3101354,1630208616,2,73,0,1,1630085881,1,1.0,4.0,5.0,-9.0,4.0,1250702 -3101355,1630208615,2,80,1,2,1630085881,2,6.0,-9.0,-9.0,-9.0,4.0,1250702 -3101356,1630209298,2,58,0,1,1630085882,2,6.0,-9.0,-9.0,-9.0,4.0,1250703 -3101357,1630209310,2,39,2,2,1630085882,1,1.0,50.0,1.0,-9.0,4.0,1250703 -3101358,1630209301,2,19,7,3,1630085882,2,1.0,20.0,4.0,-9.0,4.0,1250703 -3101359,1630209307,2,14,7,4,1630085882,1,-9.0,-9.0,-9.0,12.0,-9.0,1250703 -3101360,1630209304,2,37,15,5,1630085882,2,3.0,-9.0,-9.0,-9.0,4.0,1250703 -3101361,1630209744,4,29,0,1,1630085883,1,1.0,45.0,1.0,-9.0,4.0,1250704 -3101362,1630209746,4,26,1,2,1630085883,2,6.0,30.0,6.0,-9.0,4.0,1250704 -3101363,1630209169,2,60,0,1,1630085884,1,1.0,70.0,1.0,-9.0,2.0,1250705 -3101364,1630209168,2,58,1,2,1630085884,2,1.0,43.0,1.0,-9.0,4.0,1250705 -3101365,1630208680,1,33,0,1,1630085885,2,1.0,40.0,1.0,-9.0,4.0,1250706 -3101366,1630208682,1,28,15,2,1630085885,2,1.0,30.0,1.0,16.0,4.0,1250706 -3101367,1630208686,1,28,15,3,1630085885,1,1.0,65.0,1.0,-9.0,4.0,1250706 -3101368,1630208688,1,25,15,4,1630085885,1,1.0,50.0,1.0,-9.0,4.0,1250706 -3101369,1630208684,1,24,15,5,1630085885,2,1.0,15.0,4.0,16.0,4.0,1250706 -3101370,1630208573,2,65,0,1,1630085886,2,6.0,-9.0,-9.0,-9.0,4.0,1250707 -3101371,1630208834,2,62,0,1,1630085887,2,6.0,-9.0,-9.0,-9.0,4.0,1250708 -3101372,1630208836,2,62,1,2,1630085887,1,6.0,-9.0,-9.0,-9.0,2.0,1250708 -3101373,1630208835,2,14,3,3,1630085887,1,-9.0,-9.0,-9.0,11.0,-9.0,1250708 -3101374,1630209111,2,20,0,1,1630085888,2,1.0,16.0,6.0,-9.0,4.0,1250709 -3101375,1630209708,2,72,0,1,1630085889,1,6.0,-9.0,-9.0,-9.0,4.0,1250710 -3101376,1630208964,2,24,0,1,1630085890,1,1.0,42.0,1.0,-9.0,4.0,1250711 -3101377,1630208963,2,24,1,2,1630085890,2,6.0,-9.0,-9.0,-9.0,4.0,1250711 -3101378,1630209017,2,20,0,1,1630085891,2,6.0,-9.0,-9.0,-9.0,4.0,1250712 -3101379,1630209019,2,1,2,2,1630085891,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250712 -3101380,1630209018,2,25,12,3,1630085891,1,3.0,-9.0,-9.0,-9.0,4.0,1250712 -3101381,1630208697,1,37,0,1,1630085892,1,1.0,50.0,1.0,16.0,4.0,1250713 -3101382,1630208696,1,49,1,2,1630085892,2,1.0,30.0,1.0,-9.0,4.0,1250713 -3101383,1630209682,2,27,0,1,1630085893,1,6.0,-9.0,-9.0,-9.0,2.0,1250714 -3101384,1630208882,2,60,0,1,1630085894,1,1.0,1.0,6.0,-9.0,4.0,1250715 -3101385,1630208881,2,61,1,2,1630085894,2,1.0,7.0,1.0,-9.0,4.0,1250715 -3101386,1630209702,2,73,0,1,1630085895,1,6.0,-9.0,-9.0,-9.0,4.0,1250716 -3101387,1630208532,2,56,0,1,1630085896,2,6.0,-9.0,-9.0,-9.0,2.0,1250717 -3101388,1630208531,2,74,6,2,1630085896,2,6.0,-9.0,-9.0,-9.0,4.0,1250717 -3101389,1630208705,3,27,0,1,1630085897,1,1.0,70.0,1.0,-9.0,4.0,1250718 -3101390,1630208706,3,27,12,2,1630085897,1,1.0,70.0,1.0,-9.0,4.0,1250718 -3101391,1630209045,2,38,0,1,1630085898,1,1.0,40.0,1.0,-9.0,4.0,1250719 -3101392,1630209041,2,32,1,2,1630085898,2,1.0,40.0,3.0,16.0,4.0,1250719 -3101393,1630209043,2,10,2,3,1630085898,1,-9.0,-9.0,-9.0,7.0,-9.0,1250719 -3101394,1630209564,2,45,0,1,1630085899,1,6.0,55.0,4.0,-9.0,4.0,1250720 -3101395,1630208917,2,23,0,1,1630085900,2,6.0,-9.0,-9.0,-9.0,4.0,1250721 -3101396,1630208920,2,4,2,2,1630085900,2,-9.0,-9.0,-9.0,1.0,-9.0,1250721 -3101397,1630208919,2,1,2,3,1630085900,1,-9.0,-9.0,-9.0,-9.0,-9.0,1250721 -3101398,1630208918,2,51,10,4,1630085900,2,6.0,-9.0,-9.0,-9.0,4.0,1250721 -3101399,1630208921,2,2,10,5,1630085900,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250721 -3101400,1630208605,2,41,0,1,1630085901,2,1.0,40.0,1.0,-9.0,4.0,1250722 -3101401,1630208604,2,71,6,2,1630085901,2,6.0,-9.0,-9.0,-9.0,4.0,1250722 -3101402,1630208874,2,24,0,1,1630085902,2,1.0,87.0,1.0,-9.0,4.0,1250723 -3101403,1630208875,2,7,2,2,1630085902,1,-9.0,-9.0,-9.0,4.0,-9.0,1250723 -3101404,1630208877,2,4,2,3,1630085902,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250723 -3101405,1630208878,2,0,2,4,1630085902,2,-9.0,-9.0,-9.0,-9.0,-9.0,1250723 -3101406,1630208876,2,26,12,5,1630085902,1,6.0,15.0,5.0,-9.0,4.0,1250723 -3101407,1630208707,1,64,0,1,1630085903,1,6.0,-9.0,-9.0,-9.0,4.0,1250724 -3101408,1630208535,2,65,0,1,1630085904,2,6.0,-9.0,-9.0,-9.0,4.0,1250725 -3101409,1630208537,2,68,1,2,1630085904,1,6.0,-9.0,-9.0,-9.0,4.0,1250725 -3101410,1630208536,2,23,4,3,1630085904,2,6.0,-9.0,-9.0,-9.0,4.0,1250725 -3101411,1630208618,1,69,0,1,1630085905,2,6.0,-9.0,-9.0,-9.0,4.0,1250726 -3101412,1630208721,1,24,0,1,1630085906,1,6.0,12.0,5.0,16.0,4.0,1250727 -3101413,1630208722,1,29,12,2,1630085906,1,6.0,-9.0,-9.0,16.0,4.0,1250727 -3101414,1630208723,1,25,12,3,1630085906,1,1.0,36.0,1.0,16.0,4.0,1250727 -3101415,1630208724,1,22,12,4,1630085906,1,6.0,20.0,6.0,15.0,4.0,1250727 -3101416,1630208673,1,25,0,1,1630085907,2,1.0,30.0,3.0,-9.0,4.0,1250728 -3101417,1630209277,2,47,0,1,1630085908,2,1.0,35.0,1.0,-9.0,4.0,1250729 -3101418,1630209278,2,21,2,2,1630085908,2,1.0,36.0,1.0,15.0,4.0,1250729 -3101419,1630209279,2,17,2,3,1630085908,1,6.0,-9.0,-9.0,14.0,4.0,1250729 -3101420,1630208966,2,51,0,1,1630085909,2,1.0,45.0,1.0,-9.0,4.0,1250730 -3101421,1630208967,2,20,2,2,1630085909,1,6.0,-9.0,-9.0,-9.0,4.0,1250730 -3101422,1630208568,2,86,0,1,1630085910,2,6.0,-9.0,-9.0,-9.0,4.0,1250731 -3101423,1630208569,2,62,2,2,1630085910,2,1.0,15.0,3.0,-9.0,4.0,1250731 -3101424,1630208570,2,47,2,3,1630085910,1,3.0,8.0,1.0,-9.0,4.0,1250731 -3101425,1630209718,2,66,0,1,1630085911,1,1.0,45.0,1.0,-9.0,4.0,1250732 -3101426,1630209752,4,58,0,1,1630085912,2,1.0,40.0,1.0,-9.0,4.0,1250733 -3101427,1630209373,2,26,0,1,1630085913,2,3.0,-9.0,-9.0,-9.0,4.0,1250734 -3101428,1630209375,2,7,2,2,1630085913,2,-9.0,-9.0,-9.0,4.0,-9.0,1250734 -3101429,1630209376,2,11,5,3,1630085913,2,-9.0,-9.0,-9.0,6.0,-9.0,1250734 -3101430,1630209374,2,26,13,4,1630085913,1,1.0,40.0,1.0,-9.0,4.0,1250734 -3101431,1630209016,2,77,0,1,1630085914,1,6.0,-9.0,-9.0,-9.0,4.0,1250735 -3101432,1630209013,2,64,5,2,1630085914,2,6.0,-9.0,-9.0,-9.0,4.0,1250735 -3101433,1630209091,2,47,0,1,1630085915,2,2.0,40.0,1.0,-9.0,4.0,1250736 -3101434,1630209095,2,14,10,2,1630085915,2,-9.0,-9.0,-9.0,10.0,-9.0,1250736 -3101435,1630209092,2,12,10,3,1630085915,1,-9.0,-9.0,-9.0,8.0,-9.0,1250736 -3101436,1630209093,2,11,10,4,1630085915,1,-9.0,-9.0,-9.0,7.0,-9.0,1250736 -3101437,1630209094,2,59,15,5,1630085915,1,6.0,-9.0,-9.0,-9.0,4.0,1250736 -3101438,1630208743,2,51,0,1,1630085916,2,6.0,-9.0,-9.0,-9.0,4.0,1250737 -3101439,1630208744,2,16,2,2,1630085916,1,6.0,-9.0,-9.0,10.0,-9.0,1250737 -3101440,1630208627,1,27,0,1,1630085917,1,1.0,40.0,1.0,16.0,4.0,1250738 -3101441,1630208626,1,29,15,2,1630085917,2,1.0,50.0,1.0,-9.0,4.0,1250738 -3101442,1630208695,1,25,0,1,1630085918,1,6.0,-9.0,-9.0,16.0,4.0,1250739 -3101443,1630208694,1,26,1,2,1630085918,2,1.0,50.0,1.0,-9.0,4.0,1250739 -3101444,1630209741,4,22,0,1,1630085919,1,2.0,20.0,4.0,16.0,4.0,1250740 -3101445,1630208534,2,65,0,1,1630085920,2,6.0,30.0,5.0,-9.0,4.0,1250741 -3101446,1630209239,2,52,0,1,1630085921,1,3.0,40.0,6.0,-9.0,2.0,1250742 -3101447,1630209238,2,60,1,2,1630085921,2,1.0,40.0,1.0,-9.0,4.0,1250742 -3101448,1630209240,2,21,2,3,1630085921,1,6.0,-9.0,-9.0,15.0,4.0,1250742 -3101449,1630209472,2,53,0,1,1630085922,2,1.0,45.0,1.0,-9.0,4.0,1250743 -3101450,1630209473,2,32,2,2,1630085922,2,1.0,40.0,1.0,-9.0,4.0,1250743 -3101451,1630209129,2,61,0,1,1630085923,1,1.0,60.0,1.0,-9.0,4.0,1250744 -3101452,1630209127,2,60,1,2,1630085923,2,6.0,-9.0,-9.0,-9.0,4.0,1250744 -3101453,1630209128,2,51,10,3,1630085923,2,6.0,-9.0,-9.0,-9.0,4.0,1250744 -3105439,1630214194,1,42,0,1,1630087733,1,1.0,50.0,1.0,-9.0,4.0,1252554 -3105440,1630214195,1,42,0,1,1630087734,1,1.0,50.0,1.0,-9.0,4.0,1252555 -3105441,1630214108,1,30,0,1,1630087735,1,1.0,55.0,1.0,-9.0,4.0,1252556 -3105442,1630213909,4,40,0,1,1630087736,1,1.0,60.0,1.0,-9.0,4.0,1252557 -3105443,1630213907,1,33,13,2,1630087736,2,1.0,40.0,1.0,-9.0,4.0,1252557 -3105444,1630213842,1,42,0,1,1630087737,1,1.0,40.0,1.0,-9.0,4.0,1252558 -3105445,1630213841,1,42,1,2,1630087737,2,1.0,40.0,1.0,-9.0,4.0,1252558 -3105446,1630214072,1,31,0,1,1630087738,1,1.0,40.0,1.0,-9.0,4.0,1252559 -3105447,1630214071,1,32,1,2,1630087738,2,1.0,55.0,1.0,-9.0,4.0,1252559 -3105448,1630213901,1,36,0,1,1630087739,2,1.0,42.0,1.0,-9.0,4.0,1252560 -3105449,1630213902,1,38,1,2,1630087739,1,1.0,45.0,1.0,-9.0,4.0,1252560 -3105450,1630214384,2,36,0,1,1630087740,2,1.0,45.0,1.0,16.0,4.0,1252561 -3105451,1630214239,1,30,0,1,1630087741,1,1.0,60.0,1.0,-9.0,4.0,1252562 -3105452,1630214002,1,31,0,1,1630087742,2,1.0,50.0,1.0,-9.0,4.0,1252563 -3105453,1630214003,1,31,0,1,1630087743,2,1.0,50.0,1.0,-9.0,4.0,1252564 -3105454,1630214061,1,35,0,1,1630087744,2,1.0,40.0,2.0,-9.0,4.0,1252565 -3105455,1630214004,1,31,0,1,1630087745,2,1.0,50.0,1.0,-9.0,4.0,1252566 -3105456,1630214062,1,35,0,1,1630087746,2,1.0,40.0,2.0,-9.0,4.0,1252567 -3105457,1630214404,2,27,0,1,1630087747,1,6.0,-9.0,-9.0,16.0,4.0,1252568 -3105458,1630214402,2,25,1,2,1630087747,2,1.0,40.0,1.0,-9.0,4.0,1252568 -3105459,1630214348,2,38,0,1,1630087748,2,1.0,40.0,1.0,-9.0,4.0,1252569 -3105460,1630214349,2,18,2,2,1630087748,1,3.0,-9.0,-9.0,-9.0,4.0,1252569 -3105461,1630214566,2,35,0,1,1630087749,1,1.0,30.0,5.0,-9.0,4.0,1252570 -3105462,1630214567,2,31,15,2,1630087749,1,1.0,40.0,1.0,-9.0,4.0,1252570 -3105463,1630214025,1,38,0,1,1630087750,2,1.0,32.0,1.0,-9.0,4.0,1252571 -3105464,1630214027,1,36,5,2,1630087750,1,1.0,40.0,1.0,-9.0,4.0,1252571 -3105465,1630214026,1,38,0,1,1630087751,2,1.0,32.0,1.0,-9.0,4.0,1252572 -3105466,1630214028,1,36,5,2,1630087751,1,1.0,40.0,1.0,-9.0,4.0,1252572 -3105467,1630214634,4,39,0,1,1630087752,1,1.0,40.0,1.0,-9.0,4.0,1252573 -3105468,1630214234,1,29,0,1,1630087753,1,1.0,40.0,1.0,16.0,4.0,1252574 -3105469,1630214235,1,29,0,1,1630087754,1,1.0,40.0,1.0,16.0,4.0,1252575 -3105470,1630214122,4,29,0,1,1630087755,2,1.0,80.0,1.0,-9.0,4.0,1252576 -3105471,1630214119,1,26,13,2,1630087755,1,3.0,40.0,4.0,16.0,4.0,1252576 -3105472,1630214123,4,29,0,1,1630087756,2,1.0,80.0,1.0,-9.0,4.0,1252577 -3105473,1630214120,1,26,13,2,1630087756,1,3.0,40.0,4.0,16.0,4.0,1252577 -3105474,1630213793,1,30,0,1,1630087757,2,3.0,40.0,2.0,-9.0,4.0,1252578 -3105475,1630214590,2,34,0,1,1630087758,1,6.0,-9.0,-9.0,-9.0,4.0,1252579 -3105476,1630214098,1,36,0,1,1630087759,1,6.0,-9.0,-9.0,16.0,4.0,1252580 -3105477,1630213829,1,26,0,1,1630087760,2,3.0,14.0,3.0,-9.0,4.0,1252581 -3105478,1630214559,2,42,0,1,1630087761,1,6.0,-9.0,-9.0,-9.0,4.0,1252582 -3105479,1630214560,2,30,10,2,1630087761,1,6.0,40.0,5.0,-9.0,4.0,1252582 -3105480,1630213862,1,27,0,1,1630087762,1,1.0,50.0,1.0,-9.0,4.0,1252583 -3105481,1630213859,3,28,1,2,1630087762,2,6.0,45.0,4.0,-9.0,4.0,1252583 -3105482,1630213863,1,27,0,1,1630087763,1,1.0,50.0,1.0,-9.0,4.0,1252584 -3105483,1630213860,3,28,1,2,1630087763,2,6.0,45.0,4.0,-9.0,4.0,1252584 -3105484,1630214732,4,30,0,1,1630087764,1,1.0,45.0,1.0,-9.0,4.0,1252585 -3105485,1630214727,4,27,1,2,1630087764,2,1.0,40.0,1.0,-9.0,4.0,1252585 -3105486,1630214733,4,30,0,1,1630087765,1,1.0,45.0,1.0,-9.0,4.0,1252586 -3105487,1630214728,4,27,1,2,1630087765,2,1.0,40.0,1.0,-9.0,4.0,1252586 -3105488,1630214734,4,30,0,1,1630087766,1,1.0,45.0,1.0,-9.0,4.0,1252587 -3105489,1630214729,4,27,1,2,1630087766,2,1.0,40.0,1.0,-9.0,4.0,1252587 -3105490,1630214735,4,30,0,1,1630087767,1,1.0,45.0,1.0,-9.0,4.0,1252588 -3105491,1630214730,4,27,1,2,1630087767,2,1.0,40.0,1.0,-9.0,4.0,1252588 -3105492,1630214094,1,27,0,1,1630087768,1,1.0,45.0,1.0,-9.0,4.0,1252589 -3105493,1630214092,1,28,1,2,1630087768,2,1.0,52.0,4.0,-9.0,4.0,1252589 -3105494,1630214585,4,33,0,1,1630087769,2,1.0,55.0,1.0,-9.0,4.0,1252590 -3105495,1630214583,2,34,13,2,1630087769,1,1.0,40.0,4.0,16.0,4.0,1252590 -3105496,1630213849,1,25,0,1,1630087770,2,1.0,45.0,1.0,16.0,4.0,1252591 -3105497,1630213852,4,25,1,2,1630087770,1,1.0,40.0,1.0,16.0,4.0,1252591 -3105498,1630213850,1,25,0,1,1630087771,2,1.0,45.0,1.0,16.0,4.0,1252592 -3105499,1630213853,4,25,1,2,1630087771,1,1.0,40.0,1.0,16.0,4.0,1252592 -3105500,1630213851,1,25,0,1,1630087772,2,1.0,45.0,1.0,16.0,4.0,1252593 -3105501,1630213854,4,25,1,2,1630087772,1,1.0,40.0,1.0,16.0,4.0,1252593 -3105502,1630213972,1,27,0,1,1630087773,2,6.0,37.0,5.0,16.0,4.0,1252594 -3105503,1630213973,1,27,0,1,1630087774,2,6.0,37.0,5.0,16.0,4.0,1252595 -3105504,1630214462,2,39,0,1,1630087775,2,6.0,27.0,1.0,-9.0,4.0,1252596 -3105505,1630214466,2,21,2,2,1630087775,1,6.0,-9.0,-9.0,-9.0,4.0,1252596 -3105506,1630214464,2,26,10,3,1630087775,2,6.0,-9.0,-9.0,-9.0,4.0,1252596 -3105507,1630214562,2,32,0,1,1630087776,1,6.0,56.0,1.0,-9.0,4.0,1252597 -3105508,1630214564,2,29,12,2,1630087776,1,6.0,-9.0,-9.0,-9.0,4.0,1252597 -3105509,1630214563,2,32,0,1,1630087777,1,6.0,56.0,1.0,-9.0,4.0,1252598 -3105510,1630214565,2,29,12,2,1630087777,1,6.0,-9.0,-9.0,-9.0,4.0,1252598 -3105511,1630214113,1,29,0,1,1630087778,1,6.0,40.0,3.0,16.0,4.0,1252599 -3105512,1630214116,1,27,12,2,1630087778,1,6.0,40.0,5.0,-9.0,4.0,1252599 -3105513,1630214114,1,29,0,1,1630087779,1,6.0,40.0,3.0,16.0,4.0,1252600 -3105514,1630214117,1,27,12,2,1630087779,1,6.0,40.0,5.0,-9.0,4.0,1252600 -3105515,1630213787,1,27,0,1,1630087780,1,1.0,55.0,1.0,-9.0,4.0,1252601 -3105516,1630213789,1,32,12,2,1630087780,1,3.0,25.0,6.0,-9.0,4.0,1252601 -3105517,1630213791,1,32,12,3,1630087780,1,6.0,-9.0,-9.0,-9.0,4.0,1252601 -3105518,1630213785,1,26,12,4,1630087780,2,3.0,40.0,6.0,-9.0,4.0,1252601 -3105519,1630213788,1,27,0,1,1630087781,1,1.0,55.0,1.0,-9.0,4.0,1252602 -3105520,1630213790,1,32,12,2,1630087781,1,3.0,25.0,6.0,-9.0,4.0,1252602 -3105521,1630213792,1,32,12,3,1630087781,1,6.0,-9.0,-9.0,-9.0,4.0,1252602 -3105522,1630213786,1,26,12,4,1630087781,2,3.0,40.0,6.0,-9.0,4.0,1252602 -3105523,1630214570,2,28,0,1,1630087782,1,1.0,55.0,1.0,-9.0,4.0,1252603 -3105524,1630214596,2,38,0,1,1630087783,1,1.0,55.0,1.0,-9.0,4.0,1252604 -3105525,1630213923,1,33,0,1,1630087784,2,1.0,65.0,1.0,-9.0,4.0,1252605 -3105526,1630214223,1,30,0,1,1630087785,1,1.0,40.0,4.0,-9.0,4.0,1252606 -3105527,1630214144,1,29,0,1,1630087786,1,1.0,45.0,1.0,-9.0,4.0,1252607 -3105528,1630213924,1,33,0,1,1630087787,2,1.0,65.0,1.0,-9.0,4.0,1252608 -3105529,1630214145,1,29,0,1,1630087788,1,1.0,45.0,1.0,-9.0,4.0,1252609 -3105530,1630214224,1,30,0,1,1630087789,1,1.0,40.0,4.0,-9.0,4.0,1252610 -3105531,1630214146,1,29,0,1,1630087790,1,1.0,45.0,1.0,-9.0,4.0,1252611 -3105532,1630214798,4,30,0,1,1630087791,1,1.0,60.0,1.0,16.0,4.0,1252612 -3105533,1630214790,4,27,0,1,1630087792,1,1.0,40.0,1.0,-9.0,4.0,1252613 -3105534,1630214781,4,44,0,1,1630087793,1,1.0,55.0,1.0,-9.0,4.0,1252614 -3105535,1630214813,4,42,0,1,1630087794,1,1.0,40.0,3.0,-9.0,4.0,1252615 -3105536,1630214791,4,27,0,1,1630087795,1,1.0,40.0,1.0,-9.0,4.0,1252616 -3105537,1630214799,4,30,0,1,1630087796,1,1.0,60.0,1.0,16.0,4.0,1252617 -3105538,1630214800,4,30,0,1,1630087797,1,1.0,60.0,1.0,16.0,4.0,1252618 -3105539,1630214801,4,30,0,1,1630087798,1,1.0,60.0,1.0,16.0,4.0,1252619 -3105540,1630214802,4,30,0,1,1630087799,1,1.0,60.0,1.0,16.0,4.0,1252620 -3105541,1630214782,4,44,0,1,1630087800,1,1.0,55.0,1.0,-9.0,4.0,1252621 -3105542,1630214792,4,27,0,1,1630087801,1,1.0,40.0,1.0,-9.0,4.0,1252622 -3105543,1630214814,4,42,0,1,1630087802,1,1.0,40.0,3.0,-9.0,4.0,1252623 -3105544,1630214783,4,44,0,1,1630087803,1,1.0,55.0,1.0,-9.0,4.0,1252624 -3105545,1630214815,4,42,0,1,1630087804,1,1.0,40.0,3.0,-9.0,4.0,1252625 -3105546,1630214851,4,33,0,1,1630087805,1,2.0,12.0,1.0,-9.0,4.0,1252626 -3105547,1630214784,4,44,0,1,1630087806,1,1.0,55.0,1.0,-9.0,4.0,1252627 -3105548,1630214793,4,27,0,1,1630087807,1,1.0,40.0,1.0,-9.0,4.0,1252628 -3105549,1630214794,4,27,0,1,1630087808,1,1.0,40.0,1.0,-9.0,4.0,1252629 -3105550,1630214785,4,44,0,1,1630087809,1,1.0,55.0,1.0,-9.0,4.0,1252630 -3105551,1630214795,4,27,0,1,1630087810,1,1.0,40.0,1.0,-9.0,4.0,1252631 -3105552,1630214852,4,33,0,1,1630087811,1,2.0,12.0,1.0,-9.0,4.0,1252632 -3105553,1630214796,4,27,0,1,1630087812,1,1.0,40.0,1.0,-9.0,4.0,1252633 -3105554,1630214853,4,33,0,1,1630087813,1,2.0,12.0,1.0,-9.0,4.0,1252634 -3105555,1630214786,4,44,0,1,1630087814,1,1.0,55.0,1.0,-9.0,4.0,1252635 -3105556,1630214797,4,27,0,1,1630087815,1,1.0,40.0,1.0,-9.0,4.0,1252636 -3105557,1630214609,2,35,0,1,1630087816,1,1.0,40.0,1.0,-9.0,2.0,1252637 -3105558,1630214561,2,44,0,1,1630087817,1,1.0,40.0,1.0,-9.0,4.0,1252638 -3105559,1630214499,2,38,0,1,1630087818,2,1.0,45.0,1.0,-9.0,4.0,1252639 -3105560,1630214379,2,32,0,1,1630087819,2,1.0,40.0,1.0,-9.0,4.0,1252640 -3105561,1630214500,2,38,0,1,1630087820,2,1.0,45.0,1.0,-9.0,4.0,1252641 -3105562,1630214412,2,32,0,1,1630087821,2,1.0,70.0,1.0,-9.0,4.0,1252642 -3105563,1630214346,2,34,0,1,1630087822,2,1.0,48.0,1.0,-9.0,4.0,1252643 -3105564,1630214381,2,25,0,1,1630087823,2,1.0,40.0,1.0,-9.0,4.0,1252644 -3105565,1630214347,2,34,0,1,1630087824,2,1.0,48.0,1.0,-9.0,4.0,1252645 -3105566,1630214644,4,28,0,1,1630087825,1,1.0,80.0,1.0,-9.0,4.0,1252646 -3105567,1630214635,4,31,0,1,1630087826,1,1.0,60.0,1.0,-9.0,4.0,1252647 -3105568,1630214645,4,28,0,1,1630087827,1,1.0,80.0,1.0,-9.0,4.0,1252648 -3105569,1630214647,4,37,0,1,1630087828,2,1.0,30.0,1.0,-9.0,4.0,1252649 -3105570,1630214636,4,31,0,1,1630087829,1,1.0,60.0,1.0,-9.0,4.0,1252650 -3105571,1630214637,4,41,0,1,1630087830,1,1.0,37.0,1.0,16.0,4.0,1252651 -3105572,1630214648,4,37,0,1,1630087831,2,1.0,30.0,1.0,-9.0,4.0,1252652 -3105573,1630214649,4,37,0,1,1630087832,2,1.0,30.0,1.0,-9.0,4.0,1252653 -3105574,1630213962,1,40,0,1,1630087833,2,1.0,60.0,1.0,-9.0,4.0,1252654 -3105575,1630213994,1,33,0,1,1630087834,2,1.0,60.0,1.0,15.0,4.0,1252655 -3105576,1630214173,1,29,0,1,1630087835,1,1.0,40.0,1.0,-9.0,2.0,1252656 -3105577,1630214230,1,31,0,1,1630087836,1,2.0,70.0,1.0,-9.0,4.0,1252657 -3105578,1630213995,1,33,0,1,1630087837,2,1.0,60.0,1.0,15.0,4.0,1252658 -3105579,1630214102,1,42,0,1,1630087838,1,1.0,40.0,3.0,15.0,4.0,1252659 -3105580,1630213996,1,33,0,1,1630087839,2,1.0,60.0,1.0,15.0,4.0,1252660 -3105581,1630214033,1,31,0,1,1630087840,2,1.0,50.0,1.0,16.0,4.0,1252661 -3105582,1630213997,1,33,0,1,1630087841,2,1.0,60.0,1.0,15.0,4.0,1252662 -3105583,1630214174,1,29,0,1,1630087842,1,1.0,40.0,1.0,-9.0,2.0,1252663 -3105584,1630214182,1,34,0,1,1630087843,1,1.0,40.0,1.0,-9.0,4.0,1252664 -3105585,1630214034,1,31,0,1,1630087844,2,1.0,50.0,1.0,16.0,4.0,1252665 -3105586,1630214231,1,31,0,1,1630087845,1,2.0,70.0,1.0,-9.0,4.0,1252666 -3105587,1630214183,1,34,0,1,1630087846,1,1.0,40.0,1.0,-9.0,4.0,1252667 -3105588,1630214172,1,29,0,1,1630087847,1,1.0,50.0,1.0,-9.0,4.0,1252668 -3105589,1630213954,1,26,0,1,1630087848,2,1.0,40.0,1.0,-9.0,4.0,1252669 -3105590,1630214245,1,27,0,1,1630087849,1,1.0,40.0,1.0,-9.0,4.0,1252670 -3105591,1630213988,1,26,0,1,1630087850,2,1.0,40.0,1.0,-9.0,4.0,1252671 -3105592,1630214103,1,42,0,1,1630087851,1,1.0,40.0,3.0,15.0,4.0,1252672 -3105593,1630214184,1,34,0,1,1630087852,1,1.0,40.0,1.0,-9.0,4.0,1252673 -3105594,1630213963,1,40,0,1,1630087853,2,1.0,60.0,1.0,-9.0,4.0,1252674 -3105595,1630213766,2,41,0,1,1630087854,2,1.0,40.0,1.0,-9.0,4.0,1252675 -3105596,1630213765,2,71,6,2,1630087854,2,6.0,-9.0,-9.0,-9.0,4.0,1252675 -3105597,1630214477,2,43,0,1,1630087855,2,1.0,70.0,1.0,-9.0,4.0,1252676 -3105598,1630214478,2,9,2,2,1630087855,2,-9.0,-9.0,-9.0,6.0,-9.0,1252676 -3105599,1630214638,4,29,0,1,1630087856,1,1.0,45.0,1.0,-9.0,4.0,1252677 -3105600,1630214640,4,26,1,2,1630087856,2,6.0,30.0,6.0,-9.0,4.0,1252677 -3105601,1630214639,4,29,0,1,1630087857,1,1.0,45.0,1.0,-9.0,4.0,1252678 -3105602,1630214641,4,26,1,2,1630087857,2,6.0,30.0,6.0,-9.0,4.0,1252678 -3105603,1630214037,1,25,0,1,1630087858,1,6.0,-9.0,-9.0,16.0,4.0,1252679 -3105604,1630214035,1,26,1,2,1630087858,2,1.0,50.0,1.0,-9.0,4.0,1252679 -3105605,1630213825,1,25,0,1,1630087859,2,3.0,20.0,5.0,-9.0,4.0,1252680 -3105606,1630213826,1,23,12,2,1630087859,2,1.0,45.0,1.0,16.0,4.0,1252680 -3105607,1630214198,1,26,0,1,1630087860,1,3.0,40.0,2.0,-9.0,4.0,1252681 -3105608,1630214200,1,22,12,2,1630087860,1,1.0,40.0,5.0,-9.0,4.0,1252681 -3105609,1630214038,1,25,0,1,1630087861,1,6.0,-9.0,-9.0,16.0,4.0,1252682 -3105610,1630214036,1,26,1,2,1630087861,2,1.0,50.0,1.0,-9.0,4.0,1252682 -3105611,1630214719,4,30,0,1,1630087862,1,1.0,60.0,1.0,16.0,4.0,1252683 -3105612,1630214711,4,33,1,2,1630087862,2,1.0,60.0,1.0,16.0,4.0,1252683 -3105613,1630214720,4,30,0,1,1630087863,1,1.0,60.0,1.0,16.0,4.0,1252684 -3105614,1630214712,4,33,1,2,1630087863,2,1.0,60.0,1.0,16.0,4.0,1252684 -3105615,1630214721,4,30,0,1,1630087864,1,1.0,60.0,1.0,16.0,4.0,1252685 -3105616,1630214713,4,33,1,2,1630087864,2,1.0,60.0,1.0,16.0,4.0,1252685 -3105617,1630214722,4,30,0,1,1630087865,1,1.0,60.0,1.0,16.0,4.0,1252686 -3105618,1630214714,4,33,1,2,1630087865,2,1.0,60.0,1.0,16.0,4.0,1252686 -3105619,1630214723,4,30,0,1,1630087866,1,1.0,60.0,1.0,16.0,4.0,1252687 -3105620,1630214715,4,33,1,2,1630087866,2,1.0,60.0,1.0,16.0,4.0,1252687 -3105621,1630214724,4,30,0,1,1630087867,1,1.0,60.0,1.0,16.0,4.0,1252688 -3105622,1630214716,4,33,1,2,1630087867,2,1.0,60.0,1.0,16.0,4.0,1252688 -3105623,1630214725,4,30,0,1,1630087868,1,1.0,60.0,1.0,16.0,4.0,1252689 -3105624,1630214717,4,33,1,2,1630087868,2,1.0,60.0,1.0,16.0,4.0,1252689 -3105625,1630214572,2,43,0,1,1630087869,1,1.0,30.0,1.0,-9.0,2.0,1252690 -3105626,1630214574,2,36,11,2,1630087869,1,1.0,40.0,1.0,15.0,4.0,1252690 -3105627,1630213917,1,30,0,1,1630087870,1,1.0,60.0,1.0,16.0,4.0,1252691 -3105628,1630213911,1,29,1,2,1630087870,2,1.0,65.0,1.0,16.0,4.0,1252691 -3105629,1630214066,1,37,0,1,1630087871,1,1.0,50.0,1.0,16.0,4.0,1252692 -3105630,1630214063,1,49,1,2,1630087871,2,1.0,30.0,1.0,-9.0,4.0,1252692 -3105631,1630213918,1,30,0,1,1630087872,1,1.0,60.0,1.0,16.0,4.0,1252693 -3105632,1630213912,1,29,1,2,1630087872,2,1.0,65.0,1.0,16.0,4.0,1252693 -3105633,1630213919,1,30,0,1,1630087873,1,1.0,60.0,1.0,16.0,4.0,1252694 -3105634,1630213913,1,29,1,2,1630087873,2,1.0,65.0,1.0,16.0,4.0,1252694 -3105635,1630214067,1,37,0,1,1630087874,1,1.0,50.0,1.0,16.0,4.0,1252695 -3105636,1630214064,1,49,1,2,1630087874,2,1.0,30.0,1.0,-9.0,4.0,1252695 -3105637,1630213920,1,30,0,1,1630087875,1,1.0,60.0,1.0,16.0,4.0,1252696 -3105638,1630213914,1,29,1,2,1630087875,2,1.0,65.0,1.0,16.0,4.0,1252696 -3105639,1630214068,1,37,0,1,1630087876,1,1.0,50.0,1.0,16.0,4.0,1252697 -3105640,1630214065,1,49,1,2,1630087876,2,1.0,30.0,1.0,-9.0,4.0,1252697 -3105641,1630213921,1,30,0,1,1630087877,1,1.0,60.0,1.0,16.0,4.0,1252698 -3105642,1630213915,1,29,1,2,1630087877,2,1.0,65.0,1.0,16.0,4.0,1252698 -3105643,1630213905,1,28,0,1,1630087878,2,1.0,50.0,1.0,-9.0,4.0,1252699 -3105644,1630213906,1,28,5,2,1630087878,2,1.0,25.0,3.0,16.0,4.0,1252699 -3105645,1630213922,1,30,0,1,1630087879,1,1.0,60.0,1.0,16.0,4.0,1252700 -3105646,1630213916,1,29,1,2,1630087879,2,1.0,65.0,1.0,16.0,4.0,1252700 -3105647,1630213985,1,26,0,1,1630087880,1,1.0,40.0,1.0,-9.0,4.0,1252701 -3105648,1630213984,1,36,13,2,1630087880,2,1.0,20.0,4.0,-9.0,4.0,1252701 -3105649,1630213845,1,32,0,1,1630087881,1,1.0,40.0,1.0,-9.0,4.0,1252702 -3105650,1630213843,1,42,1,2,1630087881,2,1.0,40.0,1.0,-9.0,4.0,1252702 -3105651,1630213846,1,32,0,1,1630087882,1,1.0,40.0,1.0,-9.0,4.0,1252703 -3105652,1630213844,1,42,1,2,1630087882,2,1.0,40.0,1.0,-9.0,4.0,1252703 -3105653,1630214787,4,25,0,1,1630087883,1,1.0,70.0,5.0,-9.0,2.0,1252704 -3105654,1630214788,4,25,0,1,1630087884,1,1.0,70.0,5.0,-9.0,2.0,1252705 -3105655,1630214480,2,36,0,1,1630087885,2,1.0,40.0,1.0,-9.0,4.0,1252706 -3105656,1630214532,2,41,0,1,1630087886,2,1.0,40.0,1.0,-9.0,4.0,1252707 -3105657,1630214197,1,25,0,1,1630087887,1,1.0,40.0,1.0,-9.0,4.0,1252708 -3105658,1630213958,1,32,0,1,1630087888,2,1.0,50.0,1.0,-9.0,4.0,1252709 -3105659,1630213959,1,32,0,1,1630087889,2,1.0,50.0,1.0,-9.0,4.0,1252710 -3105660,1630214211,1,27,0,1,1630087890,1,1.0,40.0,1.0,-9.0,4.0,1252711 -3105661,1630213960,1,32,0,1,1630087891,2,1.0,50.0,1.0,-9.0,4.0,1252712 -3105662,1630213961,1,32,0,1,1630087892,2,1.0,50.0,1.0,-9.0,4.0,1252713 -3105663,1630213881,1,37,0,1,1630087893,1,1.0,33.0,1.0,-9.0,4.0,1252714 -3105664,1630213878,1,27,13,2,1630087893,2,6.0,40.0,5.0,-9.0,4.0,1252714 -3105665,1630213882,1,37,0,1,1630087894,1,1.0,33.0,1.0,-9.0,4.0,1252715 -3105666,1630213879,1,27,13,2,1630087894,2,6.0,40.0,5.0,-9.0,4.0,1252715 -3105667,1630214703,4,31,0,1,1630087895,1,1.0,40.0,1.0,16.0,4.0,1252716 -3105668,1630214699,4,30,1,2,1630087895,2,6.0,-9.0,-9.0,-9.0,4.0,1252716 -3105669,1630214705,4,29,12,3,1630087895,1,1.0,40.0,1.0,-9.0,4.0,1252716 -3105670,1630214701,4,25,12,4,1630087895,2,6.0,-9.0,-9.0,15.0,4.0,1252716 -3105671,1630214704,4,31,0,1,1630087896,1,1.0,40.0,1.0,16.0,4.0,1252717 -3105672,1630214700,4,30,1,2,1630087896,2,6.0,-9.0,-9.0,-9.0,4.0,1252717 -3105673,1630214706,4,29,12,3,1630087896,1,1.0,40.0,1.0,-9.0,4.0,1252717 -3105674,1630214702,4,25,12,4,1630087896,2,6.0,-9.0,-9.0,15.0,4.0,1252717 -3105675,1630214767,4,27,0,1,1630087897,1,1.0,80.0,1.0,-9.0,4.0,1252718 -3105676,1630214761,4,26,1,2,1630087897,2,1.0,80.0,3.0,-9.0,4.0,1252718 -3105677,1630214764,4,19,5,3,1630087897,2,6.0,-9.0,-9.0,15.0,4.0,1252718 -3105678,1630214768,4,27,0,1,1630087898,1,1.0,80.0,1.0,-9.0,4.0,1252719 -3105679,1630214762,4,26,1,2,1630087898,2,1.0,80.0,3.0,-9.0,4.0,1252719 -3105680,1630214765,4,19,5,3,1630087898,2,6.0,-9.0,-9.0,15.0,4.0,1252719 -3105681,1630214769,4,27,0,1,1630087899,1,1.0,80.0,1.0,-9.0,4.0,1252720 -3105682,1630214763,4,26,1,2,1630087899,2,1.0,80.0,3.0,-9.0,4.0,1252720 -3105683,1630214766,4,19,5,3,1630087899,2,6.0,-9.0,-9.0,15.0,4.0,1252720 -3105684,1630213971,1,32,0,1,1630087900,1,1.0,40.0,3.0,16.0,4.0,1252721 -3105685,1630213969,1,40,12,2,1630087900,2,1.0,40.0,1.0,16.0,4.0,1252721 -3105686,1630213970,1,30,13,3,1630087900,2,2.0,40.0,3.0,16.0,4.0,1252721 -3105687,1630214000,1,25,0,1,1630087901,1,1.0,45.0,1.0,-9.0,4.0,1252722 -3105688,1630213998,1,24,13,2,1630087901,2,1.0,40.0,1.0,-9.0,4.0,1252722 -3105689,1630214001,1,25,0,1,1630087902,1,1.0,45.0,1.0,-9.0,4.0,1252723 -3105690,1630213999,1,24,13,2,1630087902,2,1.0,40.0,1.0,-9.0,4.0,1252723 -3105691,1630213835,1,29,0,1,1630087903,1,1.0,40.0,1.0,16.0,4.0,1252724 -3105692,1630213833,1,24,12,2,1630087903,2,1.0,40.0,1.0,15.0,4.0,1252724 -3105693,1630213836,1,29,0,1,1630087904,1,1.0,40.0,1.0,16.0,4.0,1252725 -3105694,1630213834,1,24,12,2,1630087904,2,1.0,40.0,1.0,15.0,4.0,1252725 -3105695,1630214707,4,30,0,1,1630087905,2,1.0,44.0,1.0,-9.0,4.0,1252726 -3105696,1630214709,4,34,1,2,1630087905,1,1.0,40.0,2.0,-9.0,4.0,1252726 -3105697,1630214029,1,28,0,1,1630087906,2,1.0,55.0,1.0,-9.0,4.0,1252727 -3105698,1630214031,1,28,1,2,1630087906,1,1.0,40.0,1.0,-9.0,4.0,1252727 -3105699,1630214088,1,31,0,1,1630087907,1,1.0,40.0,3.0,-9.0,4.0,1252728 -3105700,1630214087,1,26,1,2,1630087907,2,1.0,40.0,1.0,16.0,4.0,1252728 -3105701,1630214040,1,26,0,1,1630087908,1,1.0,40.0,1.0,-9.0,4.0,1252729 -3105702,1630214039,1,25,13,2,1630087908,2,1.0,30.0,1.0,-9.0,4.0,1252729 -3105703,1630214481,2,29,0,1,1630087909,2,6.0,-9.0,-9.0,-9.0,4.0,1252730 -3105704,1630214482,2,14,2,2,1630087909,1,-9.0,-9.0,-9.0,9.0,-9.0,1252730 -3105705,1630214483,2,4,2,3,1630087909,1,-9.0,-9.0,-9.0,-9.0,-9.0,1252730 -3105706,1630214484,2,2,2,4,1630087909,1,-9.0,-9.0,-9.0,-9.0,-9.0,1252730 -3105707,1630214485,2,45,6,5,1630087909,1,3.0,-9.0,-9.0,-9.0,4.0,1252730 -3105708,1630213758,2,44,0,1,1630087910,2,3.0,40.0,4.0,-9.0,4.0,1252731 -3105709,1630213760,2,59,6,2,1630087910,1,6.0,-9.0,-9.0,-9.0,4.0,1252731 -3105710,1630213756,2,68,11,3,1630087910,2,6.0,-9.0,-9.0,-9.0,4.0,1252731 -3105711,1630213762,2,45,13,4,1630087910,1,6.0,-9.0,-9.0,-9.0,4.0,1252731 -3105712,1630214468,2,33,0,1,1630087911,2,3.0,-9.0,-9.0,-9.0,4.0,1252732 -3105713,1630214469,2,10,2,2,1630087911,1,-9.0,-9.0,-9.0,7.0,-9.0,1252732 -3105714,1630214471,2,5,2,3,1630087911,2,-9.0,-9.0,-9.0,2.0,-9.0,1252732 -3105715,1630214470,2,4,2,4,1630087911,1,-9.0,-9.0,-9.0,1.0,-9.0,1252732 -3105716,1630214396,2,37,0,1,1630087912,2,6.0,-9.0,-9.0,-9.0,4.0,1252733 -3105717,1630214399,2,40,1,2,1630087912,1,6.0,-9.0,-9.0,-9.0,4.0,1252733 -3105718,1630214397,2,8,2,3,1630087912,1,-9.0,-9.0,-9.0,3.0,-9.0,1252733 -3105719,1630214398,2,5,2,4,1630087912,1,-9.0,-9.0,-9.0,2.0,-9.0,1252733 -3105720,1630214486,2,30,0,1,1630087913,2,6.0,-9.0,-9.0,-9.0,4.0,1252734 -3105721,1630214487,2,30,0,1,1630087914,2,6.0,-9.0,-9.0,-9.0,4.0,1252735 -3105722,1630214343,2,32,0,1,1630087915,2,6.0,-9.0,-9.0,16.0,4.0,1252736 -3105723,1630214344,2,32,0,1,1630087916,2,6.0,-9.0,-9.0,16.0,4.0,1252737 -3105724,1630214580,2,28,0,1,1630087917,1,3.0,-9.0,-9.0,-9.0,4.0,1252738 -3105725,1630214370,2,41,0,1,1630087918,2,6.0,-9.0,-9.0,-9.0,4.0,1252739 -3105726,1630214371,2,41,0,1,1630087919,2,6.0,-9.0,-9.0,-9.0,4.0,1252740 -3105727,1630214537,2,44,0,1,1630087920,1,6.0,-9.0,-9.0,-9.0,4.0,1252741 -3105728,1630214322,2,34,0,1,1630087921,2,3.0,-9.0,-9.0,15.0,4.0,1252742 -3105729,1630214323,2,34,0,1,1630087922,2,3.0,-9.0,-9.0,15.0,4.0,1252743 -3105730,1630214488,2,30,0,1,1630087923,2,6.0,-9.0,-9.0,-9.0,4.0,1252744 -3105731,1630214345,2,32,0,1,1630087924,2,6.0,-9.0,-9.0,16.0,4.0,1252745 -3105732,1630214085,1,37,0,1,1630087925,2,6.0,-9.0,-9.0,-9.0,4.0,1252746 -3105733,1630213781,1,27,0,1,1630087926,2,3.0,-9.0,-9.0,-9.0,4.0,1252747 -3105734,1630214129,1,39,0,1,1630087927,1,6.0,8.0,6.0,16.0,4.0,1252748 -3105735,1630214130,1,39,0,1,1630087928,1,6.0,8.0,6.0,16.0,4.0,1252749 -3105736,1630214086,1,37,0,1,1630087929,2,6.0,-9.0,-9.0,-9.0,4.0,1252750 -3105737,1630214816,4,26,0,1,1630087930,1,6.0,-9.0,-9.0,16.0,4.0,1252751 -3105738,1630214817,4,26,0,1,1630087931,1,6.0,-9.0,-9.0,16.0,4.0,1252752 -3105739,1630214818,4,26,0,1,1630087932,1,6.0,-9.0,-9.0,16.0,4.0,1252753 -3105740,1630214819,4,26,0,1,1630087933,1,6.0,-9.0,-9.0,16.0,4.0,1252754 -3105741,1630214610,2,28,0,1,1630087934,1,3.0,25.0,4.0,15.0,4.0,1252755 -3105742,1630214315,2,26,0,1,1630087935,2,6.0,-9.0,-9.0,-9.0,4.0,1252756 -3105743,1630214380,2,42,0,1,1630087936,2,6.0,-9.0,-9.0,-9.0,4.0,1252757 -3105744,1630214316,2,26,0,1,1630087937,2,6.0,-9.0,-9.0,-9.0,4.0,1252758 -3105745,1630214611,2,28,0,1,1630087938,1,3.0,25.0,4.0,15.0,4.0,1252759 -3105746,1630214595,2,40,0,1,1630087939,1,6.0,-9.0,-9.0,-9.0,4.0,1252760 -3105747,1630214317,2,26,0,1,1630087940,2,6.0,-9.0,-9.0,-9.0,4.0,1252761 -3105748,1630214354,2,42,0,1,1630087941,2,6.0,-9.0,-9.0,-9.0,4.0,1252762 -3105749,1630214622,4,40,0,1,1630087942,1,3.0,-9.0,-9.0,16.0,4.0,1252763 -3105750,1630214642,4,38,0,1,1630087943,1,3.0,30.0,6.0,15.0,3.0,1252764 -3105751,1630214623,4,40,0,1,1630087944,1,3.0,-9.0,-9.0,16.0,4.0,1252765 -3105752,1630213986,1,37,0,1,1630087945,2,6.0,-9.0,-9.0,16.0,4.0,1252766 -3105753,1630214138,1,29,0,1,1630087946,1,6.0,-9.0,-9.0,15.0,4.0,1252767 -3105754,1630213795,1,28,0,1,1630087947,2,6.0,-9.0,-9.0,-9.0,4.0,1252768 -3105755,1630214137,1,40,0,1,1630087948,1,6.0,28.0,4.0,-9.0,4.0,1252769 -3105756,1630213796,1,28,0,1,1630087949,2,6.0,-9.0,-9.0,-9.0,4.0,1252770 -3105757,1630213987,1,37,0,1,1630087950,2,6.0,-9.0,-9.0,16.0,4.0,1252771 -3105758,1630214170,1,31,0,1,1630087951,1,3.0,8.0,4.0,-9.0,4.0,1252772 -3105759,1630214139,1,29,0,1,1630087952,1,6.0,-9.0,-9.0,15.0,4.0,1252773 -3105760,1630214191,4,28,0,1,1630087953,1,6.0,-9.0,-9.0,16.0,4.0,1252774 -3105761,1630214185,1,28,12,2,1630087953,1,6.0,-9.0,-9.0,16.0,4.0,1252774 -3105762,1630214188,1,25,12,3,1630087953,1,6.0,-9.0,-9.0,16.0,4.0,1252774 -3105763,1630214192,4,28,0,1,1630087954,1,6.0,-9.0,-9.0,16.0,4.0,1252775 -3105764,1630214186,1,28,12,2,1630087954,1,6.0,-9.0,-9.0,16.0,4.0,1252775 -3105765,1630214189,1,25,12,3,1630087954,1,6.0,-9.0,-9.0,16.0,4.0,1252775 -3105766,1630214193,4,28,0,1,1630087955,1,6.0,-9.0,-9.0,16.0,4.0,1252776 -3105767,1630214187,1,28,12,2,1630087955,1,6.0,-9.0,-9.0,16.0,4.0,1252776 -3105768,1630214190,1,25,12,3,1630087955,1,6.0,-9.0,-9.0,16.0,4.0,1252776 -3105769,1630213925,1,27,0,1,1630087956,2,6.0,-9.0,-9.0,16.0,4.0,1252777 -3105770,1630213927,4,26,12,2,1630087956,2,6.0,-9.0,-9.0,16.0,4.0,1252777 -3105771,1630213926,1,25,12,3,1630087956,2,6.0,-9.0,-9.0,16.0,4.0,1252777 -3105772,1630214821,4,26,0,1,1630087957,1,6.0,36.0,5.0,-9.0,4.0,1252778 -3105773,1630214836,4,25,12,2,1630087957,1,6.0,-9.0,-9.0,-9.0,4.0,1252778 -3105774,1630214822,4,26,0,1,1630087958,1,6.0,36.0,5.0,-9.0,4.0,1252779 -3105775,1630214837,4,25,12,2,1630087958,1,6.0,-9.0,-9.0,-9.0,4.0,1252779 -3105776,1630214823,4,26,0,1,1630087959,1,6.0,36.0,5.0,-9.0,4.0,1252780 -3105777,1630214838,4,25,12,2,1630087959,1,6.0,-9.0,-9.0,-9.0,4.0,1252780 -3105778,1630214824,4,26,0,1,1630087960,1,6.0,36.0,5.0,-9.0,4.0,1252781 -3105779,1630214839,4,25,12,2,1630087960,1,6.0,-9.0,-9.0,-9.0,4.0,1252781 -3105780,1630214825,4,26,0,1,1630087961,1,6.0,36.0,5.0,-9.0,4.0,1252782 -3105781,1630214840,4,25,12,2,1630087961,1,6.0,-9.0,-9.0,-9.0,4.0,1252782 -3105782,1630214826,4,26,0,1,1630087962,1,6.0,36.0,5.0,-9.0,4.0,1252783 -3105783,1630214841,4,25,12,2,1630087962,1,6.0,-9.0,-9.0,-9.0,4.0,1252783 -3105784,1630214827,4,26,0,1,1630087963,1,6.0,36.0,5.0,-9.0,4.0,1252784 -3105785,1630214842,4,25,12,2,1630087963,1,6.0,-9.0,-9.0,-9.0,4.0,1252784 -3105786,1630214828,4,26,0,1,1630087964,1,6.0,36.0,5.0,-9.0,4.0,1252785 -3105787,1630214843,4,25,12,2,1630087964,1,6.0,-9.0,-9.0,-9.0,4.0,1252785 -3105788,1630214829,4,26,0,1,1630087965,1,6.0,36.0,5.0,-9.0,4.0,1252786 -3105789,1630214844,4,25,12,2,1630087965,1,6.0,-9.0,-9.0,-9.0,4.0,1252786 -3105790,1630214830,4,26,0,1,1630087966,1,6.0,36.0,5.0,-9.0,4.0,1252787 -3105791,1630214845,4,25,12,2,1630087966,1,6.0,-9.0,-9.0,-9.0,4.0,1252787 -3105792,1630214831,4,26,0,1,1630087967,1,6.0,36.0,5.0,-9.0,4.0,1252788 -3105793,1630214846,4,25,12,2,1630087967,1,6.0,-9.0,-9.0,-9.0,4.0,1252788 -3105794,1630214832,4,26,0,1,1630087968,1,6.0,36.0,5.0,-9.0,4.0,1252789 -3105795,1630214847,4,25,12,2,1630087968,1,6.0,-9.0,-9.0,-9.0,4.0,1252789 -3105796,1630214833,4,26,0,1,1630087969,1,6.0,36.0,5.0,-9.0,4.0,1252790 -3105797,1630214848,4,25,12,2,1630087969,1,6.0,-9.0,-9.0,-9.0,4.0,1252790 -3105798,1630214834,4,26,0,1,1630087970,1,6.0,36.0,5.0,-9.0,4.0,1252791 -3105799,1630214849,4,25,12,2,1630087970,1,6.0,-9.0,-9.0,-9.0,4.0,1252791 -3105800,1630214612,2,44,0,1,1630087971,1,6.0,-9.0,-9.0,14.0,4.0,1252792 -3105801,1630214614,2,50,5,2,1630087971,1,6.0,-9.0,-9.0,-9.0,4.0,1252792 -3105802,1630214539,2,34,0,1,1630087972,1,3.0,-9.0,-9.0,-9.0,4.0,1252793 -3105803,1630214543,2,18,10,2,1630087972,1,6.0,-9.0,-9.0,14.0,4.0,1252793 -3105804,1630214591,2,35,0,1,1630087973,1,6.0,-9.0,-9.0,-9.0,4.0,1252794 -3105805,1630214592,2,30,5,2,1630087973,1,6.0,-9.0,-9.0,-9.0,4.0,1252794 -3105806,1630214613,2,44,0,1,1630087974,1,6.0,-9.0,-9.0,14.0,4.0,1252795 -3105807,1630214615,2,50,5,2,1630087974,1,6.0,-9.0,-9.0,-9.0,4.0,1252795 -3105808,1630214540,2,34,0,1,1630087975,1,3.0,-9.0,-9.0,-9.0,4.0,1252796 -3105809,1630214544,2,18,10,2,1630087975,1,6.0,-9.0,-9.0,14.0,4.0,1252796 -3105810,1630214541,2,34,0,1,1630087976,1,3.0,-9.0,-9.0,-9.0,4.0,1252797 -3105811,1630214545,2,18,10,2,1630087976,1,6.0,-9.0,-9.0,14.0,4.0,1252797 -3105812,1630214355,2,33,0,1,1630087977,2,3.0,42.0,6.0,-9.0,4.0,1252798 -3105813,1630214356,2,14,2,2,1630087977,2,-9.0,-9.0,-9.0,11.0,-9.0,1252798 -3105814,1630214522,2,40,0,1,1630087978,2,6.0,-9.0,-9.0,-9.0,4.0,1252799 -3105815,1630214525,2,21,2,2,1630087978,2,6.0,30.0,6.0,15.0,4.0,1252799 -3105816,1630214391,2,33,0,1,1630087979,2,3.0,30.0,6.0,-9.0,4.0,1252800 -3105817,1630214393,2,18,2,2,1630087979,2,6.0,-9.0,-9.0,-9.0,4.0,1252800 -3105818,1630214523,2,40,0,1,1630087980,2,6.0,-9.0,-9.0,-9.0,4.0,1252801 -3105819,1630214526,2,21,2,2,1630087980,2,6.0,30.0,6.0,15.0,4.0,1252801 -3105820,1630214392,2,33,0,1,1630087981,2,3.0,30.0,6.0,-9.0,4.0,1252802 -3105821,1630214394,2,18,2,2,1630087981,2,6.0,-9.0,-9.0,-9.0,4.0,1252802 -3105822,1630214279,1,40,0,1,1630087982,1,6.0,-9.0,-9.0,-9.0,2.0,1252803 -3105823,1630214283,4,23,15,2,1630087982,2,6.0,30.0,6.0,-9.0,4.0,1252803 -3105824,1630214280,1,40,0,1,1630087983,1,6.0,-9.0,-9.0,-9.0,2.0,1252804 -3105825,1630214284,4,23,15,2,1630087983,2,6.0,30.0,6.0,-9.0,4.0,1252804 -3105826,1630214281,1,40,0,1,1630087984,1,6.0,-9.0,-9.0,-9.0,2.0,1252805 -3105827,1630214285,4,23,15,2,1630087984,2,6.0,30.0,6.0,-9.0,4.0,1252805 -3105828,1630214282,1,40,0,1,1630087985,1,6.0,-9.0,-9.0,-9.0,2.0,1252806 -3105829,1630214286,4,23,15,2,1630087985,2,6.0,30.0,6.0,-9.0,4.0,1252806 -3105830,1630214520,2,28,0,1,1630087986,2,3.0,-9.0,-9.0,-9.0,4.0,1252807 -3105831,1630214521,2,4,2,2,1630087986,2,-9.0,-9.0,-9.0,-9.0,-9.0,1252807 -3105832,1630213870,1,27,0,1,1630087987,1,6.0,-9.0,-9.0,16.0,4.0,1252808 -3105833,1630213868,1,24,1,2,1630087987,2,6.0,-9.0,-9.0,16.0,4.0,1252808 -3105834,1630214489,2,38,0,1,1630087988,2,3.0,-9.0,-9.0,-9.0,4.0,1252809 -3105835,1630214491,2,18,2,2,1630087988,1,1.0,8.0,4.0,14.0,4.0,1252809 -3105836,1630214492,2,11,2,3,1630087988,2,-9.0,-9.0,-9.0,7.0,-9.0,1252809 -3105837,1630214490,2,64,6,4,1630087988,2,6.0,-9.0,-9.0,-9.0,4.0,1252809 -3105838,1630214504,2,27,0,1,1630087989,2,1.0,35.0,1.0,-9.0,4.0,1252810 -3105839,1630214505,2,27,0,1,1630087990,2,1.0,35.0,1.0,-9.0,4.0,1252811 -3105840,1630214627,4,25,0,1,1630087991,1,1.0,30.0,1.0,-9.0,4.0,1252812 -3105841,1630214110,1,42,0,1,1630087992,1,1.0,40.0,1.0,-9.0,2.0,1252813 -3105842,1630214046,1,26,0,1,1630087993,2,1.0,65.0,2.0,-9.0,4.0,1252814 -3105843,1630214047,1,26,0,1,1630087994,2,1.0,65.0,2.0,-9.0,4.0,1252815 -3105844,1630214111,1,42,0,1,1630087995,1,1.0,40.0,1.0,-9.0,2.0,1252816 -3105845,1630213957,1,25,0,1,1630087996,2,1.0,30.0,3.0,-9.0,4.0,1252817 -3105846,1630214740,4,30,0,1,1630087997,2,1.0,40.0,1.0,-9.0,4.0,1252818 -3105847,1630214741,4,30,0,1,1630087998,2,1.0,40.0,1.0,-9.0,4.0,1252819 -3105848,1630214742,4,30,0,1,1630087999,2,1.0,40.0,1.0,-9.0,4.0,1252820 -3105849,1630214743,4,30,0,1,1630088000,2,1.0,40.0,1.0,-9.0,4.0,1252821 -3105850,1630214744,4,30,0,1,1630088001,2,1.0,40.0,1.0,-9.0,4.0,1252822 -3105851,1630214745,4,30,0,1,1630088002,2,1.0,40.0,1.0,-9.0,4.0,1252823 -3105852,1630214746,4,30,0,1,1630088003,2,1.0,40.0,1.0,-9.0,4.0,1252824 -3105853,1630214747,4,30,0,1,1630088004,2,1.0,40.0,1.0,-9.0,4.0,1252825 -3105854,1630214748,4,30,0,1,1630088005,2,1.0,40.0,1.0,-9.0,4.0,1252826 -3105855,1630214749,4,30,0,1,1630088006,2,1.0,40.0,1.0,-9.0,4.0,1252827 -3105856,1630214750,4,30,0,1,1630088007,2,1.0,40.0,1.0,-9.0,4.0,1252828 -3105857,1630214751,4,30,0,1,1630088008,2,1.0,40.0,1.0,-9.0,4.0,1252829 -3105858,1630214752,4,30,0,1,1630088009,2,1.0,40.0,1.0,-9.0,4.0,1252830 -3105859,1630214753,4,30,0,1,1630088010,2,1.0,40.0,1.0,-9.0,4.0,1252831 -3105860,1630214754,4,30,0,1,1630088011,2,1.0,40.0,1.0,-9.0,4.0,1252832 -3105861,1630214479,2,27,0,1,1630088012,2,1.0,50.0,1.0,-9.0,4.0,1252833 -3105862,1630214460,2,29,0,1,1630088013,2,1.0,40.0,2.0,-9.0,4.0,1252834 -3105863,1630214461,2,29,0,1,1630088014,2,1.0,40.0,2.0,-9.0,4.0,1252835 -3105864,1630214247,1,26,0,1,1630088015,1,1.0,60.0,4.0,-9.0,4.0,1252836 -3105865,1630214219,1,27,0,1,1630088016,1,1.0,40.0,1.0,-9.0,4.0,1252837 -3105866,1630214006,1,25,0,1,1630088017,2,1.0,40.0,4.0,-9.0,4.0,1252838 -3105867,1630213889,1,28,0,1,1630088018,2,1.0,50.0,1.0,16.0,4.0,1252839 -3105868,1630214175,1,25,0,1,1630088019,1,1.0,10.0,5.0,16.0,4.0,1252840 -3105869,1630213890,1,28,0,1,1630088020,2,1.0,50.0,1.0,16.0,4.0,1252841 -3105870,1630213891,1,28,0,1,1630088021,2,1.0,50.0,1.0,16.0,4.0,1252842 -3105871,1630214069,1,31,0,1,1630088022,2,1.0,20.0,1.0,-9.0,4.0,1252843 -3105872,1630214217,1,33,0,1,1630088023,1,1.0,60.0,4.0,-9.0,4.0,1252844 -3105873,1630214070,1,31,0,1,1630088024,2,1.0,20.0,1.0,-9.0,4.0,1252845 -3105874,1630214248,1,26,0,1,1630088025,1,1.0,60.0,4.0,-9.0,4.0,1252846 -3105875,1630214097,1,31,0,1,1630088026,1,1.0,35.0,1.0,-9.0,4.0,1252847 -3105876,1630214220,1,27,0,1,1630088027,1,1.0,40.0,1.0,-9.0,4.0,1252848 -3105877,1630213933,1,31,0,1,1630088028,2,1.0,50.0,1.0,-9.0,4.0,1252849 -3105878,1630213934,1,31,0,1,1630088029,2,1.0,50.0,1.0,-9.0,4.0,1252850 -3105879,1630213935,1,31,0,1,1630088030,2,1.0,50.0,1.0,-9.0,4.0,1252851 -3105880,1630213892,1,28,0,1,1630088031,2,1.0,50.0,1.0,16.0,4.0,1252852 -3105881,1630214676,4,26,0,1,1630088032,2,6.0,-9.0,-9.0,-9.0,4.0,1252853 -3105882,1630214686,4,26,1,2,1630088032,1,1.0,40.0,1.0,16.0,4.0,1252853 -3105883,1630214677,4,26,0,1,1630088033,2,6.0,-9.0,-9.0,-9.0,4.0,1252854 -3105884,1630214687,4,26,1,2,1630088033,1,1.0,40.0,1.0,16.0,4.0,1252854 -3105885,1630214678,4,26,0,1,1630088034,2,6.0,-9.0,-9.0,-9.0,4.0,1252855 -3105886,1630214688,4,26,1,2,1630088034,1,1.0,40.0,1.0,16.0,4.0,1252855 -3105887,1630214679,4,26,0,1,1630088035,2,6.0,-9.0,-9.0,-9.0,4.0,1252856 -3105888,1630214689,4,26,1,2,1630088035,1,1.0,40.0,1.0,16.0,4.0,1252856 -3105889,1630214680,4,26,0,1,1630088036,2,6.0,-9.0,-9.0,-9.0,4.0,1252857 -3105890,1630214690,4,26,1,2,1630088036,1,1.0,40.0,1.0,16.0,4.0,1252857 -3105891,1630214681,4,26,0,1,1630088037,2,6.0,-9.0,-9.0,-9.0,4.0,1252858 -3105892,1630214691,4,26,1,2,1630088037,1,1.0,40.0,1.0,16.0,4.0,1252858 -3105893,1630214682,4,26,0,1,1630088038,2,6.0,-9.0,-9.0,-9.0,4.0,1252859 -3105894,1630214692,4,26,1,2,1630088038,1,1.0,40.0,1.0,16.0,4.0,1252859 -3105895,1630214683,4,26,0,1,1630088039,2,6.0,-9.0,-9.0,-9.0,4.0,1252860 -3105896,1630214693,4,26,1,2,1630088039,1,1.0,40.0,1.0,16.0,4.0,1252860 -3105897,1630214684,4,26,0,1,1630088040,2,6.0,-9.0,-9.0,-9.0,4.0,1252861 -3105898,1630214694,4,26,1,2,1630088040,1,1.0,40.0,1.0,16.0,4.0,1252861 -3105899,1630214518,2,31,0,1,1630088041,1,6.0,-9.0,-9.0,-9.0,4.0,1252862 -3105900,1630214517,2,62,6,2,1630088041,2,1.0,37.0,1.0,-9.0,4.0,1252862 -3105901,1630214377,2,37,0,1,1630088042,2,2.0,25.0,1.0,-9.0,4.0,1252863 -3105902,1630214378,2,19,2,2,1630088042,1,3.0,-9.0,-9.0,-9.0,4.0,1252863 -3105903,1630214445,2,31,0,1,1630088043,2,1.0,40.0,1.0,-9.0,4.0,1252864 -3105904,1630214446,2,30,10,2,1630088043,1,6.0,-9.0,-9.0,-9.0,4.0,1252864 -3105905,1630214423,2,32,0,1,1630088044,2,3.0,-9.0,-9.0,-9.0,4.0,1252865 -3105906,1630214424,2,33,1,2,1630088044,1,1.0,45.0,4.0,-9.0,4.0,1252865 -3105907,1630214332,2,26,0,1,1630088045,1,1.0,40.0,1.0,-9.0,4.0,1252866 -3105908,1630214331,2,25,13,2,1630088045,2,6.0,-9.0,-9.0,-9.0,4.0,1252866 -3105909,1630213819,1,27,0,1,1630088046,2,1.0,20.0,1.0,16.0,4.0,1252867 -3105910,1630213822,1,26,1,2,1630088046,1,3.0,-9.0,-9.0,16.0,4.0,1252867 -3105911,1630213820,1,27,0,1,1630088047,2,1.0,20.0,1.0,16.0,4.0,1252868 -3105912,1630213823,1,26,1,2,1630088047,1,3.0,-9.0,-9.0,16.0,4.0,1252868 -3105913,1630214456,2,32,0,1,1630088048,2,1.0,20.0,1.0,-9.0,4.0,1252869 -3105914,1630214457,2,10,2,2,1630088048,1,-9.0,-9.0,-9.0,7.0,-9.0,1252869 -3105915,1630214775,4,27,0,1,1630088049,1,1.0,54.0,2.0,16.0,4.0,1252870 -3105916,1630214770,4,26,1,2,1630088049,2,1.0,15.0,6.0,16.0,4.0,1252870 -3105917,1630214776,4,27,0,1,1630088050,1,1.0,54.0,2.0,16.0,4.0,1252871 -3105918,1630214771,4,26,1,2,1630088050,2,1.0,15.0,6.0,16.0,4.0,1252871 -3105919,1630214777,4,27,0,1,1630088051,1,1.0,54.0,2.0,16.0,4.0,1252872 -3105920,1630214772,4,26,1,2,1630088051,2,1.0,15.0,6.0,16.0,4.0,1252872 -3105921,1630214778,4,27,0,1,1630088052,1,1.0,54.0,2.0,16.0,4.0,1252873 -3105922,1630214773,4,26,1,2,1630088052,2,1.0,15.0,6.0,16.0,4.0,1252873 -3105923,1630214225,1,33,0,1,1630088053,1,1.0,25.0,1.0,16.0,4.0,1252874 -3105924,1630214227,4,30,1,2,1630088053,2,1.0,25.0,1.0,15.0,4.0,1252874 -3105925,1630214582,2,45,0,1,1630088054,1,1.0,36.0,1.0,-9.0,3.0,1252875 -3105926,1630214265,1,64,0,1,1630088055,1,1.0,53.0,1.0,-9.0,4.0,1252876 -3105927,1630214593,2,60,0,1,1630088056,1,6.0,-9.0,-9.0,-9.0,4.0,1252877 -3105928,1630214594,2,58,5,2,1630088056,1,1.0,40.0,1.0,-9.0,2.0,1252877 -3105929,1630214390,2,58,0,1,1630088057,2,3.0,-9.0,-9.0,12.0,4.0,1252878 -3105930,1630214422,2,53,0,1,1630088058,2,6.0,-9.0,-9.0,-9.0,4.0,1252879 -3105931,1630214321,2,51,0,1,1630088059,2,6.0,-9.0,-9.0,-9.0,4.0,1252880 -3105932,1630214411,2,57,0,1,1630088060,2,6.0,-9.0,-9.0,-9.0,4.0,1252881 -3105933,1630214436,2,46,0,1,1630088061,2,6.0,-9.0,-9.0,-9.0,4.0,1252882 -3105934,1630214333,2,64,0,1,1630088062,2,6.0,-9.0,-9.0,-9.0,4.0,1252883 -3105935,1630214388,2,59,0,1,1630088063,2,6.0,-9.0,-9.0,-9.0,4.0,1252884 -3105936,1630214455,2,53,0,1,1630088064,2,6.0,-9.0,-9.0,-9.0,4.0,1252885 -3105937,1630213858,1,60,0,1,1630088065,2,6.0,-9.0,-9.0,-9.0,4.0,1252886 -3105938,1630214266,1,53,0,1,1630088066,1,6.0,8.0,6.0,-9.0,4.0,1252887 -3105939,1630214514,2,62,0,1,1630088067,2,6.0,-9.0,-9.0,-9.0,4.0,1252888 -3105940,1630214324,2,53,0,1,1630088068,2,6.0,-9.0,-9.0,-9.0,4.0,1252889 -3105941,1630214327,2,19,2,2,1630088068,2,6.0,-9.0,-9.0,15.0,4.0,1252889 -3105942,1630214533,2,60,0,1,1630088069,1,6.0,-9.0,-9.0,-9.0,4.0,1252890 -3105943,1630214534,2,45,15,2,1630088069,1,6.0,-9.0,-9.0,-9.0,4.0,1252890 -3105944,1630214325,2,53,0,1,1630088070,2,6.0,-9.0,-9.0,-9.0,4.0,1252891 -3105945,1630214328,2,19,2,2,1630088070,2,6.0,-9.0,-9.0,15.0,4.0,1252891 -3105946,1630214425,2,56,0,1,1630088071,2,6.0,-9.0,-9.0,-9.0,4.0,1252892 -3105947,1630214426,2,21,2,2,1630088071,2,6.0,-9.0,-9.0,15.0,4.0,1252892 -3105948,1630214389,2,56,0,1,1630088072,2,1.0,99.0,1.0,-9.0,4.0,1252893 -3105949,1630214512,2,58,0,1,1630088073,2,1.0,30.0,1.0,15.0,4.0,1252894 -3105950,1630214513,2,34,2,2,1630088073,2,3.0,22.0,3.0,15.0,4.0,1252894 -3105951,1630213764,2,69,0,1,1630088074,2,6.0,-9.0,-9.0,-9.0,4.0,1252895 -3105952,1630214164,1,24,0,1,1630088075,1,3.0,47.0,3.0,15.0,4.0,1252896 -3105953,1630214165,1,24,0,1,1630088076,1,3.0,47.0,3.0,15.0,4.0,1252897 -3105954,1630214166,1,24,0,1,1630088077,1,3.0,47.0,3.0,15.0,4.0,1252898 -3105955,1630214167,1,24,0,1,1630088078,1,3.0,47.0,3.0,15.0,4.0,1252899 -3105956,1630214168,1,24,0,1,1630088079,1,3.0,47.0,3.0,15.0,4.0,1252900 -3105957,1630214803,4,23,0,1,1630088080,1,1.0,80.0,1.0,-9.0,4.0,1252901 -3105958,1630214804,4,23,0,1,1630088081,1,1.0,80.0,1.0,-9.0,4.0,1252902 -3105959,1630214805,4,23,0,1,1630088082,1,1.0,80.0,1.0,-9.0,4.0,1252903 -3105960,1630214806,4,23,0,1,1630088083,1,1.0,80.0,1.0,-9.0,4.0,1252904 -3105961,1630214807,4,23,0,1,1630088084,1,1.0,80.0,1.0,-9.0,4.0,1252905 -3105962,1630214808,4,23,0,1,1630088085,1,1.0,80.0,1.0,-9.0,4.0,1252906 -3105963,1630214809,4,23,0,1,1630088086,1,1.0,80.0,1.0,-9.0,4.0,1252907 -3105964,1630214810,4,23,0,1,1630088087,1,1.0,80.0,1.0,-9.0,4.0,1252908 -3105965,1630214811,4,23,0,1,1630088088,1,1.0,80.0,1.0,-9.0,4.0,1252909 -3105966,1630214812,4,23,0,1,1630088089,1,1.0,80.0,1.0,-9.0,4.0,1252910 -3105967,1630214587,2,20,0,1,1630088090,1,1.0,40.0,1.0,-9.0,4.0,1252911 -3105968,1630214207,1,23,0,1,1630088091,1,1.0,40.0,1.0,-9.0,4.0,1252912 -3105969,1630214099,1,24,0,1,1630088092,1,1.0,45.0,1.0,-9.0,4.0,1252913 -3105970,1630214100,1,24,0,1,1630088093,1,1.0,45.0,1.0,-9.0,4.0,1252914 -3105971,1630214208,1,23,0,1,1630088094,1,1.0,40.0,1.0,-9.0,4.0,1252915 -3105972,1630214209,1,23,0,1,1630088095,1,1.0,40.0,1.0,-9.0,4.0,1252916 -3105973,1630214210,1,23,0,1,1630088096,1,1.0,40.0,1.0,-9.0,4.0,1252917 -3105974,1630213797,1,24,0,1,1630088097,2,1.0,40.0,1.0,-9.0,4.0,1252918 -3105975,1630213808,1,26,1,2,1630088097,1,6.0,40.0,6.0,16.0,4.0,1252918 -3105976,1630213798,1,24,0,1,1630088098,2,1.0,40.0,1.0,-9.0,4.0,1252919 -3105977,1630213809,1,26,1,2,1630088098,1,6.0,40.0,6.0,16.0,4.0,1252919 -3105978,1630213799,1,24,0,1,1630088099,2,1.0,40.0,1.0,-9.0,4.0,1252920 -3105979,1630213810,1,26,1,2,1630088099,1,6.0,40.0,6.0,16.0,4.0,1252920 -3105980,1630213800,1,24,0,1,1630088100,2,1.0,40.0,1.0,-9.0,4.0,1252921 -3105981,1630213811,1,26,1,2,1630088100,1,6.0,40.0,6.0,16.0,4.0,1252921 -3105982,1630213801,1,24,0,1,1630088101,2,1.0,40.0,1.0,-9.0,4.0,1252922 -3105983,1630213812,1,26,1,2,1630088101,1,6.0,40.0,6.0,16.0,4.0,1252922 -3105984,1630213802,1,24,0,1,1630088102,2,1.0,40.0,1.0,-9.0,4.0,1252923 -3105985,1630213813,1,26,1,2,1630088102,1,6.0,40.0,6.0,16.0,4.0,1252923 -3105986,1630213803,1,24,0,1,1630088103,2,1.0,40.0,1.0,-9.0,4.0,1252924 -3105987,1630213814,1,26,1,2,1630088103,1,6.0,40.0,6.0,16.0,4.0,1252924 -3105988,1630213804,1,24,0,1,1630088104,2,1.0,40.0,1.0,-9.0,4.0,1252925 -3105989,1630213815,1,26,1,2,1630088104,1,6.0,40.0,6.0,16.0,4.0,1252925 -3105990,1630213805,1,24,0,1,1630088105,2,1.0,40.0,1.0,-9.0,4.0,1252926 -3105991,1630213816,1,26,1,2,1630088105,1,6.0,40.0,6.0,16.0,4.0,1252926 -3105992,1630213806,1,24,0,1,1630088106,2,1.0,40.0,1.0,-9.0,4.0,1252927 -3105993,1630213817,1,26,1,2,1630088106,1,6.0,40.0,6.0,16.0,4.0,1252927 -3105994,1630214547,2,23,0,1,1630088107,1,6.0,40.0,1.0,15.0,4.0,1252928 -3105995,1630214551,2,62,6,2,1630088107,1,1.0,40.0,1.0,-9.0,4.0,1252928 -3105996,1630214548,2,23,0,1,1630088108,1,6.0,40.0,1.0,15.0,4.0,1252929 -3105997,1630214552,2,62,6,2,1630088108,1,1.0,40.0,1.0,-9.0,4.0,1252929 -3105998,1630214549,2,23,0,1,1630088109,1,6.0,40.0,1.0,15.0,4.0,1252930 -3105999,1630214553,2,62,6,2,1630088109,1,1.0,40.0,1.0,-9.0,4.0,1252930 -3106000,1630214568,2,21,0,1,1630088110,1,1.0,48.0,1.0,-9.0,4.0,1252931 -3106001,1630214569,2,24,15,2,1630088110,1,6.0,-9.0,-9.0,-9.0,4.0,1252931 -3106002,1630214550,2,23,0,1,1630088111,1,6.0,40.0,1.0,15.0,4.0,1252932 -3106003,1630214554,2,62,6,2,1630088111,1,1.0,40.0,1.0,-9.0,4.0,1252932 -3106004,1630214672,4,24,0,1,1630088112,2,1.0,45.0,1.0,-9.0,4.0,1252933 -3106005,1630214674,4,2,2,2,1630088112,1,-9.0,-9.0,-9.0,-9.0,-9.0,1252933 -3106006,1630213946,1,23,0,1,1630088113,1,1.0,35.0,1.0,16.0,4.0,1252934 -3106007,1630213950,4,22,11,2,1630088113,2,1.0,35.0,1.0,-9.0,4.0,1252934 -3106008,1630213942,1,22,11,3,1630088113,2,1.0,25.0,4.0,15.0,4.0,1252934 -3106009,1630213947,1,23,0,1,1630088114,1,1.0,35.0,1.0,16.0,4.0,1252935 -3106010,1630213951,4,22,11,2,1630088114,2,1.0,35.0,1.0,-9.0,4.0,1252935 -3106011,1630213943,1,22,11,3,1630088114,2,1.0,25.0,4.0,15.0,4.0,1252935 -3106012,1630213948,1,23,0,1,1630088115,1,1.0,35.0,1.0,16.0,4.0,1252936 -3106013,1630213952,4,22,11,2,1630088115,2,1.0,35.0,1.0,-9.0,4.0,1252936 -3106014,1630213944,1,22,11,3,1630088115,2,1.0,25.0,4.0,15.0,4.0,1252936 -3106015,1630213949,1,23,0,1,1630088116,1,1.0,35.0,1.0,16.0,4.0,1252937 -3106016,1630213953,4,22,11,2,1630088116,2,1.0,35.0,1.0,-9.0,4.0,1252937 -3106017,1630213945,1,22,11,3,1630088116,2,1.0,25.0,4.0,15.0,4.0,1252937 -3106018,1630213782,1,22,0,1,1630088117,2,1.0,45.0,4.0,-9.0,4.0,1252938 -3106019,1630213783,1,24,12,2,1630088117,2,1.0,50.0,1.0,-9.0,4.0,1252938 -3106020,1630213784,1,21,12,3,1630088117,2,1.0,35.0,3.0,-9.0,4.0,1252938 -3106021,1630214160,1,24,0,1,1630088118,1,1.0,55.0,1.0,-9.0,4.0,1252939 -3106022,1630214161,1,24,0,1,1630088119,1,1.0,55.0,1.0,-9.0,4.0,1252940 -3106023,1630214162,1,24,0,1,1630088120,1,1.0,55.0,1.0,-9.0,4.0,1252941 -3106024,1630213872,1,22,0,1,1630088121,2,2.0,40.0,1.0,16.0,4.0,1252942 -3106025,1630213875,1,27,13,2,1630088121,1,1.0,60.0,1.0,-9.0,4.0,1252942 -3106026,1630213873,1,22,0,1,1630088122,2,2.0,40.0,1.0,16.0,4.0,1252943 -3106027,1630213876,1,27,13,2,1630088122,1,1.0,60.0,1.0,-9.0,4.0,1252943 -3106028,1630213936,1,23,0,1,1630088123,2,1.0,45.0,1.0,-9.0,4.0,1252944 -3106029,1630213939,1,23,12,2,1630088123,2,1.0,24.0,1.0,-9.0,4.0,1252944 -3106030,1630213937,1,23,0,1,1630088124,2,1.0,45.0,1.0,-9.0,4.0,1252945 -3106031,1630213940,1,23,12,2,1630088124,2,1.0,24.0,1.0,-9.0,4.0,1252945 -3106032,1630213938,1,23,0,1,1630088125,2,1.0,45.0,1.0,-9.0,4.0,1252946 -3106033,1630213941,1,23,12,2,1630088125,2,1.0,24.0,1.0,-9.0,4.0,1252946 -3106034,1630214334,2,22,0,1,1630088126,2,6.0,40.0,1.0,-9.0,4.0,1252947 -3106035,1630214335,2,22,0,1,1630088127,2,6.0,40.0,1.0,-9.0,4.0,1252948 -3106036,1630214581,2,19,0,1,1630088128,1,3.0,-9.0,-9.0,-9.0,4.0,1252949 -3106037,1630214314,2,24,0,1,1630088129,2,6.0,10.0,6.0,15.0,4.0,1252950 -3106038,1630214096,1,24,0,1,1630088130,2,6.0,-9.0,-9.0,16.0,4.0,1252951 -3106039,1630214289,1,22,0,1,1630088131,1,6.0,28.0,4.0,16.0,4.0,1252952 -3106040,1630214290,1,22,0,1,1630088132,1,6.0,28.0,4.0,16.0,4.0,1252953 -3106041,1630214291,1,22,0,1,1630088133,1,6.0,28.0,4.0,16.0,4.0,1252954 -3106042,1630214292,1,22,0,1,1630088134,1,6.0,28.0,4.0,16.0,4.0,1252955 -3106043,1630214179,1,24,0,1,1630088135,1,3.0,20.0,5.0,-9.0,4.0,1252956 -3106044,1630214180,1,24,0,1,1630088136,1,3.0,20.0,5.0,-9.0,4.0,1252957 -3106045,1630214293,1,22,0,1,1630088137,1,6.0,28.0,4.0,16.0,4.0,1252958 -3106046,1630214181,1,24,0,1,1630088138,1,3.0,20.0,5.0,-9.0,4.0,1252959 -3106047,1630214528,2,23,0,1,1630088139,2,3.0,35.0,6.0,-9.0,4.0,1252960 -3106048,1630214041,1,24,0,1,1630088140,2,6.0,-9.0,-9.0,16.0,4.0,1252961 -3106049,1630213975,1,24,0,1,1630088141,2,6.0,-9.0,-9.0,16.0,4.0,1252962 -3106050,1630213966,1,24,0,1,1630088142,2,6.0,40.0,6.0,16.0,4.0,1252963 -3106051,1630214237,1,20,0,1,1630088143,1,6.0,35.0,5.0,15.0,4.0,1252964 -3106052,1630213976,1,24,0,1,1630088144,2,6.0,-9.0,-9.0,16.0,4.0,1252965 -3106053,1630214042,1,24,0,1,1630088145,2,6.0,-9.0,-9.0,16.0,4.0,1252966 -3106054,1630214104,1,24,0,1,1630088146,1,6.0,-9.0,-9.0,15.0,4.0,1252967 -3106055,1630214105,1,24,0,1,1630088147,1,6.0,-9.0,-9.0,15.0,4.0,1252968 -3106056,1630213977,1,24,0,1,1630088148,2,6.0,-9.0,-9.0,16.0,4.0,1252969 -3106057,1630214043,1,24,0,1,1630088149,2,6.0,-9.0,-9.0,16.0,4.0,1252970 -3106058,1630214106,1,24,0,1,1630088150,1,6.0,-9.0,-9.0,15.0,4.0,1252971 -3106059,1630214107,1,24,0,1,1630088151,1,6.0,-9.0,-9.0,15.0,4.0,1252972 -3106060,1630214044,1,24,0,1,1630088152,2,6.0,-9.0,-9.0,16.0,4.0,1252973 -3106061,1630214238,1,20,0,1,1630088153,1,6.0,35.0,5.0,15.0,4.0,1252974 -3106062,1630213978,1,24,0,1,1630088154,2,6.0,-9.0,-9.0,16.0,4.0,1252975 -3106063,1630214176,1,24,0,1,1630088155,1,6.0,24.0,3.0,16.0,4.0,1252976 -3106064,1630213979,1,24,0,1,1630088156,2,6.0,-9.0,-9.0,16.0,4.0,1252977 -3106065,1630213967,1,24,0,1,1630088157,2,6.0,40.0,6.0,16.0,4.0,1252978 -3106066,1630214177,1,24,0,1,1630088158,1,6.0,24.0,3.0,16.0,4.0,1252979 -3106067,1630214045,1,24,0,1,1630088159,2,6.0,-9.0,-9.0,16.0,4.0,1252980 -3106068,1630214178,1,24,0,1,1630088160,1,6.0,24.0,3.0,16.0,4.0,1252981 -3106069,1630213980,1,24,0,1,1630088161,2,6.0,-9.0,-9.0,16.0,4.0,1252982 -3106070,1630213968,1,24,0,1,1630088162,2,6.0,40.0,6.0,16.0,4.0,1252983 -3106071,1630214656,4,23,0,1,1630088163,2,6.0,-9.0,-9.0,16.0,4.0,1252984 -3106072,1630214662,4,24,15,2,1630088163,2,6.0,-9.0,-9.0,16.0,4.0,1252984 -3106073,1630214650,4,24,15,3,1630088163,2,6.0,-9.0,-9.0,16.0,4.0,1252984 -3106074,1630214657,4,23,0,1,1630088164,2,6.0,-9.0,-9.0,16.0,4.0,1252985 -3106075,1630214663,4,24,15,2,1630088164,2,6.0,-9.0,-9.0,16.0,4.0,1252985 -3106076,1630214651,4,24,15,3,1630088164,2,6.0,-9.0,-9.0,16.0,4.0,1252985 -3106077,1630214658,4,23,0,1,1630088165,2,6.0,-9.0,-9.0,16.0,4.0,1252986 -3106078,1630214664,4,24,15,2,1630088165,2,6.0,-9.0,-9.0,16.0,4.0,1252986 -3106079,1630214652,4,24,15,3,1630088165,2,6.0,-9.0,-9.0,16.0,4.0,1252986 -3106080,1630214659,4,23,0,1,1630088166,2,6.0,-9.0,-9.0,16.0,4.0,1252987 -3106081,1630214665,4,24,15,2,1630088166,2,6.0,-9.0,-9.0,16.0,4.0,1252987 -3106082,1630214653,4,24,15,3,1630088166,2,6.0,-9.0,-9.0,16.0,4.0,1252987 -3106083,1630214660,4,23,0,1,1630088167,2,6.0,-9.0,-9.0,16.0,4.0,1252988 -3106084,1630214666,4,24,15,2,1630088167,2,6.0,-9.0,-9.0,16.0,4.0,1252988 -3106085,1630214654,4,24,15,3,1630088167,2,6.0,-9.0,-9.0,16.0,4.0,1252988 -3106086,1630214661,4,23,0,1,1630088168,2,6.0,-9.0,-9.0,16.0,4.0,1252989 -3106087,1630214667,4,24,15,2,1630088168,2,6.0,-9.0,-9.0,16.0,4.0,1252989 -3106088,1630214655,4,24,15,3,1630088168,2,6.0,-9.0,-9.0,16.0,4.0,1252989 -3106089,1630214007,1,21,0,1,1630088169,2,6.0,10.0,5.0,16.0,4.0,1252990 -3106090,1630214016,1,20,12,2,1630088169,2,6.0,20.0,4.0,15.0,4.0,1252990 -3106091,1630214008,1,21,0,1,1630088170,2,6.0,10.0,5.0,16.0,4.0,1252991 -3106092,1630214017,1,20,12,2,1630088170,2,6.0,20.0,4.0,15.0,4.0,1252991 -3106093,1630214009,1,21,0,1,1630088171,2,6.0,10.0,5.0,16.0,4.0,1252992 -3106094,1630214018,1,20,12,2,1630088171,2,6.0,20.0,4.0,15.0,4.0,1252992 -3106095,1630214010,1,21,0,1,1630088172,2,6.0,10.0,5.0,16.0,4.0,1252993 -3106096,1630214019,1,20,12,2,1630088172,2,6.0,20.0,4.0,15.0,4.0,1252993 -3106097,1630214011,1,21,0,1,1630088173,2,6.0,10.0,5.0,16.0,4.0,1252994 -3106098,1630214020,1,20,12,2,1630088173,2,6.0,20.0,4.0,15.0,4.0,1252994 -3106099,1630214012,1,21,0,1,1630088174,2,6.0,10.0,5.0,16.0,4.0,1252995 -3106100,1630214021,1,20,12,2,1630088174,2,6.0,20.0,4.0,15.0,4.0,1252995 -3106101,1630214013,1,21,0,1,1630088175,2,6.0,10.0,5.0,16.0,4.0,1252996 -3106102,1630214022,1,20,12,2,1630088175,2,6.0,20.0,4.0,15.0,4.0,1252996 -3106103,1630214014,1,21,0,1,1630088176,2,6.0,10.0,5.0,16.0,4.0,1252997 -3106104,1630214023,1,20,12,2,1630088176,2,6.0,20.0,4.0,15.0,4.0,1252997 -3106105,1630214015,1,21,0,1,1630088177,2,6.0,10.0,5.0,16.0,4.0,1252998 -3106106,1630214024,1,20,12,2,1630088177,2,6.0,20.0,4.0,15.0,4.0,1252998 -3106107,1630214307,2,24,0,1,1630088178,2,3.0,32.0,5.0,-9.0,4.0,1252999 -3106108,1630214308,2,8,2,2,1630088178,1,-9.0,-9.0,-9.0,4.0,-9.0,1252999 -3106109,1630214249,1,22,0,1,1630088179,1,6.0,-9.0,-9.0,15.0,4.0,1253000 -3106110,1630214257,1,24,11,2,1630088179,1,3.0,-9.0,-9.0,15.0,4.0,1253000 -3106111,1630214250,1,22,0,1,1630088180,1,6.0,-9.0,-9.0,15.0,4.0,1253001 -3106112,1630214258,1,24,11,2,1630088180,1,3.0,-9.0,-9.0,15.0,4.0,1253001 -3106113,1630214251,1,22,0,1,1630088181,1,6.0,-9.0,-9.0,15.0,4.0,1253002 -3106114,1630214259,1,24,11,2,1630088181,1,3.0,-9.0,-9.0,15.0,4.0,1253002 -3106115,1630214252,1,22,0,1,1630088182,1,6.0,-9.0,-9.0,15.0,4.0,1253003 -3106116,1630214260,1,24,11,2,1630088182,1,3.0,-9.0,-9.0,15.0,4.0,1253003 -3106117,1630214253,1,22,0,1,1630088183,1,6.0,-9.0,-9.0,15.0,4.0,1253004 -3106118,1630214261,1,24,11,2,1630088183,1,3.0,-9.0,-9.0,15.0,4.0,1253004 -3106119,1630214254,1,22,0,1,1630088184,1,6.0,-9.0,-9.0,15.0,4.0,1253005 -3106120,1630214262,1,24,11,2,1630088184,1,3.0,-9.0,-9.0,15.0,4.0,1253005 -3106121,1630214255,1,22,0,1,1630088185,1,6.0,-9.0,-9.0,15.0,4.0,1253006 -3106122,1630214263,1,24,11,2,1630088185,1,3.0,-9.0,-9.0,15.0,4.0,1253006 -3106123,1630214256,1,22,0,1,1630088186,1,6.0,-9.0,-9.0,15.0,4.0,1253007 -3106124,1630214264,1,24,11,2,1630088186,1,3.0,-9.0,-9.0,15.0,4.0,1253007 -3106125,1630214049,1,22,0,1,1630088187,2,6.0,-9.0,-9.0,16.0,4.0,1253008 -3106126,1630214055,1,22,11,2,1630088187,2,6.0,-9.0,-9.0,16.0,4.0,1253008 -3106127,1630214050,1,22,0,1,1630088188,2,6.0,-9.0,-9.0,16.0,4.0,1253009 -3106128,1630214056,1,22,11,2,1630088188,2,6.0,-9.0,-9.0,16.0,4.0,1253009 -3106129,1630214051,1,22,0,1,1630088189,2,6.0,-9.0,-9.0,16.0,4.0,1253010 -3106130,1630214057,1,22,11,2,1630088189,2,6.0,-9.0,-9.0,16.0,4.0,1253010 -3106131,1630214052,1,22,0,1,1630088190,2,6.0,-9.0,-9.0,16.0,4.0,1253011 -3106132,1630214058,1,22,11,2,1630088190,2,6.0,-9.0,-9.0,16.0,4.0,1253011 -3106133,1630214053,1,22,0,1,1630088191,2,6.0,-9.0,-9.0,16.0,4.0,1253012 -3106134,1630214059,1,22,11,2,1630088191,2,6.0,-9.0,-9.0,16.0,4.0,1253012 -3106135,1630214267,1,24,0,1,1630088192,1,6.0,12.0,5.0,16.0,4.0,1253013 -3106136,1630214270,1,29,12,2,1630088192,1,6.0,-9.0,-9.0,16.0,4.0,1253013 -3106137,1630214273,1,25,12,3,1630088192,1,1.0,36.0,1.0,16.0,4.0,1253013 -3106138,1630214276,1,22,12,4,1630088192,1,6.0,20.0,6.0,15.0,4.0,1253013 -3106139,1630214268,1,24,0,1,1630088193,1,6.0,12.0,5.0,16.0,4.0,1253014 -3106140,1630214271,1,29,12,2,1630088193,1,6.0,-9.0,-9.0,16.0,4.0,1253014 -3106141,1630214274,1,25,12,3,1630088193,1,1.0,36.0,1.0,16.0,4.0,1253014 -3106142,1630214277,1,22,12,4,1630088193,1,6.0,20.0,6.0,15.0,4.0,1253014 -3106143,1630214472,2,24,0,1,1630088194,2,1.0,35.0,1.0,-9.0,4.0,1253015 -3106144,1630214619,2,22,0,1,1630088195,1,1.0,20.0,6.0,-9.0,4.0,1253016 -3106145,1630214620,2,22,0,1,1630088196,1,1.0,20.0,6.0,-9.0,4.0,1253017 -3106146,1630214243,1,22,0,1,1630088197,1,1.0,15.0,1.0,15.0,4.0,1253018 -3106147,1630214140,1,20,0,1,1630088198,1,1.0,40.0,5.0,15.0,4.0,1253019 -3106148,1630214141,1,20,0,1,1630088199,1,1.0,40.0,5.0,15.0,4.0,1253020 -3106149,1630214142,1,20,0,1,1630088200,1,1.0,40.0,5.0,15.0,4.0,1253021 -3106150,1630214755,4,22,0,1,1630088201,2,1.0,25.0,1.0,15.0,4.0,1253022 -3106151,1630214756,4,22,0,1,1630088202,2,1.0,25.0,1.0,15.0,4.0,1253023 -3106152,1630214757,4,22,0,1,1630088203,2,1.0,25.0,1.0,15.0,4.0,1253024 -3106153,1630214758,4,22,0,1,1630088204,2,1.0,25.0,1.0,15.0,4.0,1253025 -3106154,1630214759,4,22,0,1,1630088205,2,1.0,25.0,1.0,15.0,4.0,1253026 -3106155,1630214760,4,22,0,1,1630088206,2,1.0,25.0,1.0,15.0,4.0,1253027 -3106156,1630214437,2,22,0,1,1630088207,2,1.0,40.0,1.0,-9.0,4.0,1253028 -3106157,1630214629,4,22,0,1,1630088208,1,2.0,20.0,4.0,16.0,4.0,1253029 -3106158,1630214630,4,22,0,1,1630088209,1,2.0,20.0,4.0,16.0,4.0,1253030 -3106159,1630214204,1,24,0,1,1630088210,1,2.0,10.0,1.0,15.0,4.0,1253031 -3106160,1630214125,1,22,0,1,1630088211,1,1.0,40.0,3.0,-9.0,4.0,1253032 -3106161,1630214126,1,22,0,1,1630088212,1,1.0,40.0,3.0,-9.0,4.0,1253033 -3106162,1630214218,1,23,0,1,1630088213,1,1.0,40.0,3.0,15.0,4.0,1253034 -3106163,1630213982,1,24,0,1,1630088214,2,1.0,24.0,1.0,-9.0,4.0,1253035 -3106164,1630214205,1,24,0,1,1630088215,1,2.0,10.0,1.0,15.0,4.0,1253036 -3106165,1630214206,1,24,0,1,1630088216,1,2.0,10.0,1.0,15.0,4.0,1253037 -3106166,1630213983,1,24,0,1,1630088217,2,1.0,24.0,1.0,-9.0,4.0,1253038 -3106167,1630214005,1,21,0,1,1630088218,2,1.0,25.0,1.0,-9.0,4.0,1253039 -3106168,1630214340,2,24,0,1,1630088219,2,3.0,-9.0,-9.0,15.0,4.0,1253040 -3106169,1630214342,2,24,1,2,1630088219,1,6.0,-9.0,-9.0,15.0,4.0,1253040 -3106170,1630214341,2,59,6,3,1630088219,2,1.0,25.0,1.0,-9.0,4.0,1253040 -3106171,1630214148,1,19,0,1,1630088220,1,6.0,-9.0,-9.0,15.0,4.0,1253041 -3106172,1630214152,1,19,12,2,1630088220,1,1.0,30.0,1.0,15.0,4.0,1253041 -3106173,1630214156,1,19,12,3,1630088220,1,6.0,-9.0,-9.0,15.0,4.0,1253041 -3106174,1630214149,1,19,0,1,1630088221,1,6.0,-9.0,-9.0,15.0,4.0,1253042 -3106175,1630214153,1,19,12,2,1630088221,1,1.0,30.0,1.0,15.0,4.0,1253042 -3106176,1630214157,1,19,12,3,1630088221,1,6.0,-9.0,-9.0,15.0,4.0,1253042 -3106177,1630214150,1,19,0,1,1630088222,1,6.0,-9.0,-9.0,15.0,4.0,1253043 -3106178,1630214154,1,19,12,2,1630088222,1,1.0,30.0,1.0,15.0,4.0,1253043 -3106179,1630214158,1,19,12,3,1630088222,1,6.0,-9.0,-9.0,15.0,4.0,1253043 -3106180,1630214131,1,20,0,1,1630088223,1,1.0,5.0,3.0,15.0,4.0,1253044 -3106181,1630214133,1,23,12,2,1630088223,1,6.0,40.0,6.0,15.0,4.0,1253044 -3106182,1630214135,1,20,12,3,1630088223,1,6.0,40.0,6.0,15.0,4.0,1253044 -3106183,1630214295,1,21,0,1,1630088224,1,1.0,20.0,3.0,15.0,4.0,1253045 -3106184,1630214296,1,22,12,2,1630088224,1,6.0,-9.0,-9.0,15.0,4.0,1253045 -3106185,1630214297,1,21,12,3,1630088224,1,6.0,20.0,5.0,15.0,4.0,1253045 -3106186,1630214368,2,24,0,1,1630088225,1,1.0,42.0,1.0,-9.0,4.0,1253046 -3106187,1630214366,2,24,1,2,1630088225,2,6.0,-9.0,-9.0,-9.0,4.0,1253046 -3106188,1630214073,1,20,0,1,1630088226,2,6.0,15.0,6.0,15.0,4.0,1253047 -3106189,1630214079,1,19,12,2,1630088226,2,1.0,30.0,1.0,15.0,4.0,1253047 -3106190,1630214074,1,20,0,1,1630088227,2,6.0,15.0,6.0,15.0,4.0,1253048 -3106191,1630214080,1,19,12,2,1630088227,2,1.0,30.0,1.0,15.0,4.0,1253048 -3106192,1630214075,1,20,0,1,1630088228,2,6.0,15.0,6.0,15.0,4.0,1253049 -3106193,1630214081,1,19,12,2,1630088228,2,1.0,30.0,1.0,15.0,4.0,1253049 -3106194,1630214076,1,20,0,1,1630088229,2,6.0,15.0,6.0,15.0,4.0,1253050 -3106195,1630214082,1,19,12,2,1630088229,2,1.0,30.0,1.0,15.0,4.0,1253050 -3106196,1630214077,1,20,0,1,1630088230,2,6.0,15.0,6.0,15.0,4.0,1253051 -3106197,1630214083,1,19,12,2,1630088230,2,1.0,30.0,1.0,15.0,4.0,1253051 -3106198,1630214078,1,20,0,1,1630088231,2,6.0,15.0,6.0,15.0,4.0,1253052 -3106199,1630214084,1,19,12,2,1630088231,2,1.0,30.0,1.0,15.0,4.0,1253052 -3106200,1630214215,2,24,0,1,1630088232,1,1.0,20.0,1.0,15.0,4.0,1253053 -3106201,1630214213,1,19,12,2,1630088232,1,3.0,56.0,6.0,15.0,4.0,1253053 -3106202,1630213895,1,20,0,1,1630088233,2,1.0,30.0,3.0,15.0,4.0,1253054 -3106203,1630213898,1,21,12,2,1630088233,2,6.0,30.0,4.0,15.0,4.0,1253054 -3106204,1630213896,1,20,0,1,1630088234,2,1.0,30.0,3.0,15.0,4.0,1253055 -3106205,1630213899,1,21,12,2,1630088234,2,6.0,30.0,4.0,15.0,4.0,1253055 -3106206,1630213897,1,20,0,1,1630088235,2,1.0,30.0,3.0,15.0,4.0,1253056 -3106207,1630213900,1,21,12,2,1630088235,2,6.0,30.0,4.0,15.0,4.0,1253056 -3106208,1630214602,4,19,0,1,1630088236,2,1.0,40.0,5.0,-9.0,4.0,1253057 -3106209,1630214598,2,21,13,2,1630088236,1,1.0,50.0,1.0,-9.0,4.0,1253057 -3106210,1630214603,4,19,0,1,1630088237,2,1.0,40.0,5.0,-9.0,4.0,1253058 -3106211,1630214599,2,21,13,2,1630088237,1,1.0,50.0,1.0,-9.0,4.0,1253058 -3106212,1630214604,4,19,0,1,1630088238,2,1.0,40.0,5.0,-9.0,4.0,1253059 -3106213,1630214600,2,21,13,2,1630088238,1,1.0,50.0,1.0,-9.0,4.0,1253059 -3106214,1630213767,1,22,0,1,1630088239,2,1.0,30.0,4.0,-9.0,4.0,1253060 -3106215,1630213772,1,27,13,2,1630088239,1,1.0,40.0,3.0,-9.0,4.0,1253060 -3106216,1630213831,1,24,0,1,1630088240,2,1.0,20.0,3.0,15.0,4.0,1253061 -3106217,1630213832,1,29,1,2,1630088240,1,1.0,31.0,3.0,15.0,4.0,1253061 -3106218,1630213768,1,22,0,1,1630088241,2,1.0,30.0,4.0,-9.0,4.0,1253062 -3106219,1630213773,1,27,13,2,1630088241,1,1.0,40.0,3.0,-9.0,4.0,1253062 -3106220,1630213769,1,22,0,1,1630088242,2,1.0,30.0,4.0,-9.0,4.0,1253063 -3106221,1630213774,1,27,13,2,1630088242,1,1.0,40.0,3.0,-9.0,4.0,1253063 -3106222,1630213770,1,22,0,1,1630088243,2,1.0,30.0,4.0,-9.0,4.0,1253064 -3106223,1630213775,1,27,13,2,1630088243,1,1.0,40.0,3.0,-9.0,4.0,1253064 -3106224,1630213771,1,22,0,1,1630088244,2,1.0,30.0,4.0,-9.0,4.0,1253065 -3106225,1630213776,1,27,13,2,1630088244,1,1.0,40.0,3.0,-9.0,4.0,1253065 -3106226,1630213955,1,23,0,1,1630088245,2,1.0,60.0,4.0,16.0,4.0,1253066 -3106227,1630213956,1,22,12,2,1630088245,2,1.0,40.0,1.0,-9.0,4.0,1253066 -3106228,1630214626,4,49,0,1,1630088246,1,6.0,4.0,6.0,-9.0,2.0,1253067 -3106229,1630214726,4,30,0,1,1630088247,1,1.0,60.0,1.0,16.0,4.0,1253068 -3106230,1630214718,4,33,1,2,1630088247,2,1.0,60.0,1.0,16.0,4.0,1253068 -3106231,1630214294,1,22,0,1,1630088248,1,6.0,28.0,4.0,16.0,4.0,1253069 -3106232,1630213981,1,33,0,1,1630088249,2,1.0,50.0,1.0,-9.0,4.0,1253070 -3106233,1630213964,1,43,0,1,1630088250,2,6.0,-9.0,-9.0,-9.0,4.0,1253071 -3106234,1630213965,1,52,13,2,1630088250,1,1.0,25.0,1.0,-9.0,4.0,1253071 -3106235,1630214854,4,33,0,1,1630088251,1,2.0,12.0,1.0,-9.0,4.0,1253072 -3106236,1630214410,2,29,0,1,1630088252,2,1.0,40.0,1.0,-9.0,4.0,1253073 -3106237,1630214199,1,26,0,1,1630088253,1,3.0,40.0,2.0,-9.0,4.0,1253074 -3106238,1630214201,1,22,12,2,1630088253,1,1.0,40.0,5.0,-9.0,4.0,1253074 -3106239,1630214529,2,43,0,1,1630088254,2,1.0,40.0,1.0,15.0,4.0,1253075 -3106240,1630214530,2,19,2,2,1630088254,1,3.0,36.0,6.0,15.0,4.0,1253075 -3106241,1630214232,1,57,0,1,1630088255,1,3.0,20.0,6.0,-9.0,4.0,1253076 -3106242,1630214233,1,75,10,2,1630088255,1,6.0,-9.0,-9.0,-9.0,2.0,1253076 -3106243,1630213928,1,24,0,1,1630088256,2,1.0,40.0,1.0,-9.0,4.0,1253077 -3106244,1630213929,1,24,12,2,1630088256,2,1.0,20.0,1.0,16.0,4.0,1253077 -3106245,1630213930,1,24,12,3,1630088256,2,1.0,40.0,1.0,15.0,4.0,1253077 -3106246,1630213931,1,22,12,4,1630088256,2,3.0,-9.0,-9.0,16.0,4.0,1253077 -3106247,1630213932,1,21,12,5,1630088256,2,1.0,40.0,1.0,15.0,4.0,1253077 -3106248,1630214418,2,23,0,1,1630088257,2,6.0,-9.0,-9.0,-9.0,4.0,1253078 -3106249,1630214419,2,21,5,2,1630088257,2,6.0,-9.0,-9.0,-9.0,4.0,1253078 -3106250,1630214420,2,4,10,3,1630088257,1,-9.0,-9.0,-9.0,-9.0,-9.0,1253078 -3106251,1630214421,2,1,10,4,1630088257,1,-9.0,-9.0,-9.0,-9.0,-9.0,1253078 -3106252,1630214151,1,19,0,1,1630088258,1,6.0,-9.0,-9.0,15.0,4.0,1253079 -3106253,1630214155,1,19,12,2,1630088258,1,1.0,30.0,1.0,15.0,4.0,1253079 -3106254,1630214159,1,19,12,3,1630088258,1,6.0,-9.0,-9.0,15.0,4.0,1253079 -3106255,1630214538,2,52,0,1,1630088259,1,3.0,-9.0,-9.0,-9.0,4.0,1253080 -3106256,1630214287,1,28,0,1,1630088260,1,1.0,40.0,1.0,16.0,4.0,1253081 -3106257,1630214288,4,28,13,2,1630088260,2,1.0,35.0,3.0,-9.0,4.0,1253081 -3106258,1630214588,2,20,0,1,1630088261,1,1.0,40.0,1.0,-9.0,4.0,1253082 -3106259,1630214605,4,19,0,1,1630088262,2,1.0,40.0,5.0,-9.0,4.0,1253083 -3106260,1630214601,2,21,13,2,1630088262,1,1.0,50.0,1.0,-9.0,4.0,1253083 -3106261,1630213893,1,29,0,1,1630088263,2,1.0,45.0,1.0,-9.0,4.0,1253084 -3106262,1630213894,1,29,1,2,1630088263,1,6.0,45.0,6.0,16.0,4.0,1253084 -3106263,1630214242,1,30,0,1,1630088264,1,1.0,30.0,1.0,-9.0,4.0,1253085 -3106264,1630214246,1,27,0,1,1630088265,1,1.0,40.0,1.0,-9.0,4.0,1253086 -3106265,1630214171,1,31,0,1,1630088266,1,3.0,8.0,4.0,-9.0,4.0,1253087 -3106266,1630214240,1,33,0,1,1630088267,1,1.0,44.0,1.0,-9.0,4.0,1253088 -3106267,1630214241,4,31,1,2,1630088267,2,3.0,10.0,4.0,-9.0,4.0,1253088 -3106268,1630214221,1,26,0,1,1630088268,1,1.0,20.0,2.0,16.0,4.0,1253089 -3106269,1630214222,1,33,13,2,1630088268,1,6.0,-9.0,-9.0,-9.0,4.0,1253089 -3106270,1630214589,2,44,0,1,1630088269,1,3.0,-9.0,-9.0,15.0,3.0,1253090 -3106271,1630214789,4,25,0,1,1630088270,1,1.0,70.0,5.0,-9.0,2.0,1253091 -3106272,1630214697,4,31,0,1,1630088271,1,6.0,-9.0,-9.0,-9.0,4.0,1253092 -3106273,1630214696,4,30,1,2,1630088271,2,1.0,20.0,1.0,16.0,4.0,1253092 -3106274,1630214698,4,2,2,3,1630088271,1,-9.0,-9.0,-9.0,-9.0,-9.0,1253092 -3106275,1630214309,2,36,0,1,1630088272,2,6.0,-9.0,-9.0,-9.0,4.0,1253093 -3106276,1630214310,2,16,2,2,1630088272,2,6.0,-9.0,-9.0,13.0,-9.0,1253093 -3106277,1630214311,2,9,2,3,1630088272,2,-9.0,-9.0,-9.0,6.0,-9.0,1253093 -3106278,1630214373,2,42,0,1,1630088273,2,1.0,45.0,1.0,-9.0,4.0,1253094 -3106279,1630213874,1,22,0,1,1630088274,2,2.0,40.0,1.0,16.0,4.0,1253095 -3106280,1630213877,1,27,13,2,1630088274,1,1.0,60.0,1.0,-9.0,4.0,1253095 -3106281,1630214374,2,39,0,1,1630088275,2,6.0,-9.0,-9.0,-9.0,4.0,1253096 -3106282,1630214375,2,17,2,2,1630088275,1,6.0,-9.0,-9.0,13.0,4.0,1253096 -3106283,1630214376,2,15,2,3,1630088275,1,-9.0,-9.0,-9.0,11.0,-9.0,1253096 -3106284,1630214643,4,38,0,1,1630088276,1,3.0,30.0,6.0,15.0,3.0,1253097 -3106285,1630213759,2,44,0,1,1630088277,2,3.0,40.0,4.0,-9.0,4.0,1253098 -3106286,1630213761,2,59,6,2,1630088277,1,6.0,-9.0,-9.0,-9.0,4.0,1253098 -3106287,1630213757,2,68,11,3,1630088277,2,6.0,-9.0,-9.0,-9.0,4.0,1253098 -3106288,1630213763,2,45,13,4,1630088277,1,6.0,-9.0,-9.0,-9.0,4.0,1253098 -3106289,1630213848,1,24,0,1,1630088278,1,1.0,35.0,1.0,-9.0,4.0,1253099 -3106290,1630213847,1,23,13,2,1630088278,2,6.0,20.0,4.0,16.0,4.0,1253099 -3106291,1630214400,2,43,0,1,1630088279,2,6.0,20.0,6.0,15.0,4.0,1253100 -3106292,1630214401,2,18,2,2,1630088279,1,2.0,20.0,4.0,14.0,4.0,1253100 -3106293,1630214434,2,26,0,1,1630088280,1,1.0,52.0,1.0,-9.0,4.0,1253101 -3106294,1630214433,2,22,1,2,1630088280,2,1.0,40.0,1.0,-9.0,4.0,1253101 -3106295,1630214365,2,39,0,1,1630088281,1,6.0,-9.0,-9.0,-9.0,4.0,1253102 -3106296,1630214364,2,32,10,2,1630088281,2,1.0,24.0,6.0,-9.0,4.0,1253102 -3106297,1630214372,2,53,0,1,1630088282,2,1.0,32.0,1.0,-9.0,4.0,1253103 -3106298,1630214385,2,36,0,1,1630088283,2,1.0,45.0,1.0,16.0,4.0,1253104 -3106299,1630214127,1,22,0,1,1630088284,1,1.0,40.0,3.0,-9.0,4.0,1253105 -3106300,1630214519,2,23,0,1,1630088285,2,6.0,15.0,4.0,15.0,4.0,1253106 -3106301,1630214738,4,28,0,1,1630088286,1,6.0,-9.0,-9.0,15.0,4.0,1253107 -3106302,1630214737,4,31,1,2,1630088286,2,1.0,40.0,1.0,16.0,4.0,1253107 -3106303,1630214739,4,1,2,3,1630088286,1,-9.0,-9.0,-9.0,-9.0,-9.0,1253107 -3106304,1630214369,2,24,0,1,1630088287,1,1.0,42.0,1.0,-9.0,4.0,1253108 -3106305,1630214367,2,24,1,2,1630088287,2,6.0,-9.0,-9.0,-9.0,4.0,1253108 -3106306,1630214054,1,22,0,1,1630088288,2,6.0,-9.0,-9.0,16.0,4.0,1253109 -3106307,1630214060,1,22,11,2,1630088288,2,6.0,-9.0,-9.0,16.0,4.0,1253109 -3106308,1630214312,2,34,0,1,1630088289,2,1.0,40.0,1.0,-9.0,4.0,1253110 -3106309,1630214313,2,32,1,2,1630088289,1,1.0,30.0,3.0,-9.0,4.0,1253110 -3106310,1630214646,4,28,0,1,1630088290,1,1.0,80.0,1.0,-9.0,4.0,1253111 -3106311,1630214350,2,47,0,1,1630088291,2,3.0,-9.0,-9.0,-9.0,4.0,1253112 -3106312,1630214351,2,20,2,2,1630088291,2,3.0,20.0,5.0,-9.0,4.0,1253112 -3106313,1630214352,2,19,2,3,1630088291,2,3.0,20.0,6.0,-9.0,4.0,1253112 -3106314,1630214524,2,40,0,1,1630088292,2,6.0,-9.0,-9.0,-9.0,4.0,1253113 -3106315,1630214527,2,21,2,2,1630088292,2,6.0,30.0,6.0,15.0,4.0,1253113 -3106316,1630214089,1,22,0,1,1630088293,2,1.0,20.0,1.0,15.0,4.0,1253114 -3106317,1630214090,1,18,5,2,1630088293,2,1.0,40.0,6.0,15.0,4.0,1253114 -3106318,1630214091,1,23,12,3,1630088293,2,1.0,15.0,3.0,15.0,4.0,1253114 -3106319,1630213864,1,27,0,1,1630088294,1,1.0,50.0,1.0,-9.0,4.0,1253115 -3106320,1630213861,3,28,1,2,1630088294,2,6.0,45.0,4.0,-9.0,4.0,1253115 -3106321,1630214132,1,20,0,1,1630088295,1,1.0,5.0,3.0,15.0,4.0,1253116 -3106322,1630214134,1,23,12,2,1630088295,1,6.0,40.0,6.0,15.0,4.0,1253116 -3106323,1630214136,1,20,12,3,1630088295,1,6.0,40.0,6.0,15.0,4.0,1253116 -3106324,1630213821,1,27,0,1,1630088296,2,1.0,20.0,1.0,16.0,4.0,1253117 -3106325,1630213824,1,26,1,2,1630088296,1,3.0,-9.0,-9.0,16.0,4.0,1253117 -3106326,1630214571,2,41,0,1,1630088297,1,3.0,50.0,4.0,-9.0,4.0,1253118 -3106327,1630214597,2,38,0,1,1630088298,1,1.0,55.0,1.0,-9.0,4.0,1253119 -3106328,1630214363,2,43,0,1,1630088299,1,1.0,40.0,1.0,-9.0,4.0,1253120 -3106329,1630214362,2,18,2,2,1630088299,2,6.0,-9.0,-9.0,14.0,4.0,1253120 -3106330,1630213830,1,26,0,1,1630088300,2,3.0,14.0,3.0,-9.0,4.0,1253121 -3106331,1630214163,1,24,0,1,1630088301,1,1.0,55.0,1.0,-9.0,4.0,1253122 -3106332,1630214542,2,34,0,1,1630088302,1,3.0,-9.0,-9.0,-9.0,4.0,1253123 -3106333,1630214546,2,18,10,2,1630088302,1,6.0,-9.0,-9.0,14.0,4.0,1253123 -3106334,1630214357,2,24,0,1,1630088303,2,1.0,24.0,1.0,15.0,4.0,1253124 -3106335,1630214358,2,6,2,2,1630088303,2,-9.0,-9.0,-9.0,3.0,-9.0,1253124 -3106336,1630214359,2,4,2,3,1630088303,2,-9.0,-9.0,-9.0,1.0,-9.0,1253124 -3106337,1630214493,2,28,0,1,1630088304,2,6.0,40.0,1.0,15.0,4.0,1253125 -3106338,1630214494,2,23,5,2,1630088304,2,6.0,-9.0,-9.0,-9.0,4.0,1253125 -3106339,1630214555,2,24,0,1,1630088305,1,1.0,35.0,1.0,-9.0,4.0,1253126 -3106340,1630214556,2,18,5,2,1630088305,1,1.0,16.0,3.0,15.0,4.0,1253126 -3106341,1630214557,2,61,11,3,1630088305,1,6.0,-9.0,-9.0,-9.0,4.0,1253126 -3106342,1630214558,2,66,12,4,1630088305,1,1.0,16.0,3.0,-9.0,4.0,1253126 -3106343,1630214473,2,26,0,1,1630088306,2,3.0,-9.0,-9.0,-9.0,4.0,1253127 -3106344,1630214475,2,7,2,2,1630088306,2,-9.0,-9.0,-9.0,4.0,-9.0,1253127 -3106345,1630214476,2,11,5,3,1630088306,2,-9.0,-9.0,-9.0,6.0,-9.0,1253127 -3106346,1630214474,2,26,13,4,1630088306,1,1.0,40.0,1.0,-9.0,4.0,1253127 -3106347,1630214101,1,24,0,1,1630088307,1,1.0,45.0,1.0,-9.0,4.0,1253128 -3106348,1630214382,2,23,0,1,1630088308,2,3.0,20.0,6.0,15.0,4.0,1253129 -3106349,1630214383,2,2,2,2,1630088308,1,-9.0,-9.0,-9.0,-9.0,-9.0,1253129 -3106350,1630213777,1,19,0,1,1630088309,2,1.0,55.0,4.0,-9.0,4.0,1253130 -3106351,1630213778,1,0,2,2,1630088309,2,-9.0,-9.0,-9.0,-9.0,-9.0,1253130 -3106352,1630213837,1,25,0,1,1630088310,2,1.0,40.0,1.0,-9.0,4.0,1253131 -3106353,1630213838,1,26,12,2,1630088310,1,1.0,30.0,1.0,16.0,4.0,1253131 -3106354,1630213839,1,26,12,3,1630088310,1,1.0,55.0,1.0,-9.0,4.0,1253131 -3106355,1630213840,1,25,13,4,1630088310,1,1.0,35.0,4.0,-9.0,4.0,1253131 -3106356,1630214229,1,35,0,1,1630088311,1,1.0,22.0,1.0,16.0,4.0,1253132 -3106357,1630214531,2,23,0,1,1630088312,2,6.0,-9.0,-9.0,-9.0,4.0,1253133 -3106358,1630214458,2,39,0,1,1630088313,2,1.0,40.0,1.0,-9.0,4.0,1253134 -3106359,1630214459,2,36,1,2,1630088313,1,3.0,40.0,6.0,-9.0,4.0,1253134 -3106360,1630214780,4,51,0,1,1630088314,2,1.0,40.0,1.0,-9.0,4.0,1253135 -3106361,1630214432,2,20,0,1,1630088315,2,1.0,40.0,1.0,-9.0,4.0,1253136 -3106362,1630214416,2,30,0,1,1630088316,2,1.0,15.0,4.0,-9.0,4.0,1253137 -3106363,1630214417,2,30,1,2,1630088316,1,6.0,-9.0,-9.0,-9.0,4.0,1253137 -3106364,1630214616,2,43,0,1,1630088317,1,6.0,40.0,1.0,-9.0,4.0,1253138 -3106365,1630214236,1,48,0,1,1630088318,1,2.0,40.0,3.0,-9.0,4.0,1253139 -3106366,1630214736,4,30,0,1,1630088319,1,1.0,45.0,1.0,-9.0,4.0,1253140 -3106367,1630214731,4,27,1,2,1630088319,2,1.0,40.0,1.0,-9.0,4.0,1253140 -3106368,1630214501,2,38,0,1,1630088320,2,1.0,45.0,1.0,-9.0,4.0,1253141 -3106369,1630214779,4,27,0,1,1630088321,1,1.0,54.0,2.0,16.0,4.0,1253142 -3106370,1630214774,4,26,1,2,1630088321,2,1.0,15.0,6.0,16.0,4.0,1253142 -3106371,1630214326,2,53,0,1,1630088322,2,6.0,-9.0,-9.0,-9.0,4.0,1253143 -3106372,1630214329,2,19,2,2,1630088322,2,6.0,-9.0,-9.0,15.0,4.0,1253143 -3106373,1630214428,2,31,0,1,1630088323,1,3.0,-9.0,-9.0,-9.0,4.0,1253144 -3106374,1630214429,2,9,2,2,1630088323,2,-9.0,-9.0,-9.0,7.0,-9.0,1253144 -3106375,1630214430,2,2,2,3,1630088323,2,-9.0,-9.0,-9.0,-9.0,-9.0,1253144 -3106376,1630214427,3,27,13,4,1630088323,2,1.0,30.0,1.0,-9.0,4.0,1253144 -3106377,1630214463,2,39,0,1,1630088324,2,6.0,27.0,1.0,-9.0,4.0,1253145 -3106378,1630214467,2,21,2,2,1630088324,1,6.0,-9.0,-9.0,-9.0,4.0,1253145 -3106379,1630214465,2,26,10,3,1630088324,2,6.0,-9.0,-9.0,-9.0,4.0,1253145 -3106380,1630214169,1,39,0,1,1630088325,1,1.0,40.0,1.0,-9.0,4.0,1253146 -3106381,1630214304,2,25,0,1,1630088326,2,3.0,20.0,6.0,15.0,4.0,1253147 -3106382,1630214306,2,4,2,2,1630088326,1,-9.0,-9.0,-9.0,1.0,-9.0,1253147 -3106383,1630214305,2,27,12,3,1630088326,2,1.0,35.0,1.0,-9.0,4.0,1253147 -3106384,1630214435,2,50,0,1,1630088327,2,1.0,40.0,1.0,-9.0,4.0,1253148 -3106385,1630214269,1,24,0,1,1630088328,1,6.0,12.0,5.0,16.0,4.0,1253149 -3106386,1630214272,1,29,12,2,1630088328,1,6.0,-9.0,-9.0,16.0,4.0,1253149 -3106387,1630214275,1,25,12,3,1630088328,1,1.0,36.0,1.0,16.0,4.0,1253149 -3106388,1630214278,1,22,12,4,1630088328,1,6.0,20.0,6.0,15.0,4.0,1253149 -3106389,1630214203,4,41,0,1,1630088329,2,1.0,40.0,1.0,-9.0,4.0,1253150 -3106390,1630214202,1,41,1,2,1630088329,1,1.0,40.0,5.0,-9.0,4.0,1253150 -3106391,1630214586,4,33,0,1,1630088330,2,1.0,55.0,1.0,-9.0,4.0,1253151 -3106392,1630214584,2,34,13,2,1630088330,1,1.0,40.0,4.0,16.0,4.0,1253151 -3106393,1630213904,1,28,0,1,1630088331,1,1.0,40.0,1.0,16.0,4.0,1253152 -3106394,1630213903,1,27,12,2,1630088331,2,1.0,1.0,1.0,16.0,4.0,1253152 -3106395,1630214668,4,36,0,1,1630088332,2,1.0,35.0,1.0,-9.0,4.0,1253153 -3106396,1630214669,4,13,2,2,1630088332,2,-9.0,-9.0,-9.0,9.0,-9.0,1253153 -3106397,1630214670,4,9,2,3,1630088332,2,-9.0,-9.0,-9.0,5.0,-9.0,1253153 -3106398,1630214671,4,4,2,4,1630088332,1,-9.0,-9.0,-9.0,1.0,-9.0,1253153 -3106399,1630214336,2,46,0,1,1630088333,2,6.0,25.0,5.0,-9.0,4.0,1253154 -3106400,1630214337,2,20,2,2,1630088333,2,6.0,-9.0,-9.0,-9.0,4.0,1253154 -3106401,1630214109,1,30,0,1,1630088334,1,1.0,55.0,1.0,-9.0,4.0,1253155 -3106402,1630213883,1,37,0,1,1630088335,1,1.0,33.0,1.0,-9.0,4.0,1253156 -3106403,1630213880,1,27,13,2,1630088335,2,6.0,40.0,5.0,-9.0,4.0,1253156 -3106404,1630214298,1,29,0,1,1630088336,1,1.0,35.0,1.0,-9.0,4.0,1253157 -3106405,1630214124,4,29,0,1,1630088337,2,1.0,80.0,1.0,-9.0,4.0,1253158 -3106406,1630214121,1,26,13,2,1630088337,1,3.0,40.0,4.0,16.0,4.0,1253158 -3106407,1630214196,1,40,0,1,1630088338,1,1.0,50.0,1.0,-9.0,4.0,1253159 -3106408,1630214855,4,51,0,1,1630088339,1,1.0,70.0,1.0,16.0,4.0,1253160 -3106409,1630213807,1,24,0,1,1630088340,2,1.0,40.0,1.0,-9.0,4.0,1253161 -3106410,1630213818,1,26,1,2,1630088340,1,6.0,40.0,6.0,16.0,4.0,1253161 -3106411,1630214112,1,34,0,1,1630088341,1,1.0,55.0,1.0,-9.0,4.0,1253162 -3106412,1630214685,4,26,0,1,1630088342,2,6.0,-9.0,-9.0,-9.0,4.0,1253163 -3106413,1630214695,4,26,1,2,1630088342,1,1.0,40.0,1.0,16.0,4.0,1253163 -3106414,1630213855,1,59,0,1,1630088343,2,6.0,-9.0,-9.0,-9.0,4.0,1253164 -3106415,1630214147,1,22,0,1,1630088344,1,3.0,-9.0,-9.0,15.0,4.0,1253165 -3106416,1630214408,2,42,0,1,1630088345,1,6.0,-9.0,-9.0,-9.0,4.0,1253166 -3106417,1630214406,2,38,1,2,1630088345,2,3.0,-9.0,-9.0,-9.0,4.0,1253166 -3106418,1630214407,2,19,4,3,1630088345,2,6.0,-9.0,-9.0,-9.0,4.0,1253166 -3106419,1630214409,2,18,4,4,1630088345,1,6.0,-9.0,-9.0,-9.0,4.0,1253166 -3106420,1630214216,2,24,0,1,1630088346,1,1.0,20.0,1.0,15.0,4.0,1253167 -3106421,1630214214,1,19,12,2,1630088346,1,3.0,56.0,6.0,15.0,4.0,1253167 -3106422,1630214820,4,26,0,1,1630088347,1,6.0,-9.0,-9.0,16.0,4.0,1253168 -3106423,1630214299,2,34,0,1,1630088348,2,3.0,-9.0,-9.0,15.0,4.0,1253169 -3106424,1630214300,2,15,2,2,1630088348,2,-9.0,-9.0,-9.0,12.0,-9.0,1253169 -3106425,1630214301,2,11,2,3,1630088348,2,-9.0,-9.0,-9.0,8.0,-9.0,1253169 -3106426,1630214302,2,9,2,4,1630088348,2,-9.0,-9.0,-9.0,6.0,-9.0,1253169 -3106427,1630214303,2,6,2,5,1630088348,2,-9.0,-9.0,-9.0,3.0,-9.0,1253169 -3106428,1630214606,2,47,0,1,1630088349,1,3.0,40.0,6.0,-9.0,4.0,1253170 -3106429,1630214607,2,28,10,2,1630088349,1,3.0,30.0,6.0,-9.0,4.0,1253170 -3106430,1630213887,4,32,0,1,1630088350,1,3.0,-9.0,-9.0,16.0,4.0,1253171 -3106431,1630213884,1,29,12,2,1630088350,2,6.0,-9.0,-9.0,-9.0,4.0,1253171 -3106432,1630213885,1,27,12,3,1630088350,2,6.0,-9.0,-9.0,-9.0,4.0,1253171 -3106433,1630213888,4,26,12,4,1630088350,2,1.0,60.0,1.0,-9.0,4.0,1253171 -3106434,1630213886,3,26,12,5,1630088350,2,1.0,33.0,3.0,-9.0,4.0,1253171 -3106435,1630214431,2,44,0,1,1630088351,2,3.0,-9.0,-9.0,-9.0,4.0,1253172 -3106436,1630214506,2,24,0,1,1630088352,2,6.0,-9.0,-9.0,-9.0,4.0,1253173 -3106437,1630214508,2,7,2,2,1630088352,2,-9.0,-9.0,-9.0,2.0,-9.0,1253173 -3106438,1630214509,2,5,2,3,1630088352,2,-9.0,-9.0,-9.0,1.0,-9.0,1253173 -3106439,1630214510,2,0,2,4,1630088352,2,-9.0,-9.0,-9.0,-9.0,-9.0,1253173 -3106440,1630214507,2,25,5,5,1630088352,2,6.0,-9.0,-9.0,-9.0,4.0,1253173 -3106441,1630214708,4,30,0,1,1630088353,2,1.0,44.0,1.0,-9.0,4.0,1253174 -3106442,1630214710,4,34,1,2,1630088353,1,1.0,40.0,2.0,-9.0,4.0,1253174 -3106443,1630214048,1,26,0,1,1630088354,2,1.0,65.0,2.0,-9.0,4.0,1253175 -3106444,1630214503,2,24,0,1,1630088355,1,1.0,20.0,1.0,16.0,4.0,1253176 -3106445,1630214502,2,24,13,2,1630088355,2,6.0,-9.0,-9.0,16.0,4.0,1253176 -3106446,1630214673,4,24,0,1,1630088356,2,1.0,45.0,1.0,-9.0,4.0,1253177 -3106447,1630214675,4,2,2,2,1630088356,1,-9.0,-9.0,-9.0,-9.0,-9.0,1253177 -3106448,1630214631,4,22,0,1,1630088357,1,2.0,20.0,4.0,16.0,4.0,1253178 -3106449,1630214128,1,26,0,1,1630088358,1,1.0,40.0,3.0,-9.0,4.0,1253179 -3106450,1630213794,1,30,0,1,1630088359,2,3.0,40.0,2.0,-9.0,4.0,1253180 -3106451,1630213974,1,27,0,1,1630088360,2,6.0,37.0,5.0,16.0,4.0,1253181 -3106452,1630213779,1,53,0,1,1630088361,2,6.0,-9.0,-9.0,-9.0,4.0,1253182 -3106453,1630213780,1,26,2,2,1630088361,1,6.0,-9.0,-9.0,-9.0,4.0,1253182 -3106454,1630213827,1,51,0,1,1630088362,2,6.0,-9.0,-9.0,-9.0,4.0,1253183 -3106455,1630213828,1,44,12,2,1630088362,1,3.0,15.0,6.0,-9.0,4.0,1253183 -3106456,1630214578,4,47,0,1,1630088363,2,1.0,35.0,4.0,-9.0,4.0,1253184 -3106457,1630214576,2,24,2,2,1630088363,1,1.0,32.0,1.0,15.0,4.0,1253184 -3106458,1630214579,4,59,5,3,1630088363,2,6.0,-9.0,-9.0,-9.0,4.0,1253184 -3106459,1630214577,2,25,10,4,1630088363,1,3.0,-9.0,-9.0,-9.0,4.0,1253184 -3106460,1630214030,1,28,0,1,1630088364,2,1.0,55.0,1.0,-9.0,4.0,1253185 -3106461,1630214032,1,28,1,2,1630088364,1,1.0,40.0,1.0,-9.0,4.0,1253185 -3106462,1630214386,2,28,0,1,1630088365,2,1.0,40.0,5.0,16.0,4.0,1253186 -3106463,1630214387,2,29,12,2,1630088365,2,1.0,40.0,1.0,-9.0,4.0,1253186 -3106464,1630214447,2,40,0,1,1630088366,2,1.0,60.0,3.0,-9.0,4.0,1253187 -3106465,1630214095,1,27,0,1,1630088367,1,1.0,45.0,1.0,-9.0,4.0,1253188 -3106466,1630214093,1,28,1,2,1630088367,2,1.0,52.0,4.0,-9.0,4.0,1253188 -3106467,1630214226,1,33,0,1,1630088368,1,1.0,25.0,1.0,16.0,4.0,1253189 -3106468,1630214228,4,30,1,2,1630088368,2,1.0,25.0,1.0,15.0,4.0,1253189 -3106469,1630214515,2,42,0,1,1630088369,2,6.0,-9.0,-9.0,-9.0,4.0,1253190 -3106470,1630214516,2,3,2,2,1630088369,2,-9.0,-9.0,-9.0,1.0,-9.0,1253190 -3106471,1630214443,2,62,0,1,1630088370,2,3.0,40.0,6.0,-9.0,4.0,1253191 -3106472,1630214444,2,23,2,2,1630088370,2,1.0,23.0,5.0,-9.0,4.0,1253191 -3106473,1630214212,1,64,0,1,1630088371,1,6.0,12.0,5.0,-9.0,4.0,1253192 -3106474,1630213910,4,40,0,1,1630088372,1,1.0,60.0,1.0,-9.0,4.0,1253193 -3106475,1630213908,1,33,13,2,1630088372,2,1.0,40.0,1.0,-9.0,4.0,1253193 -3106476,1630214511,2,42,0,1,1630088373,2,6.0,-9.0,-9.0,-9.0,4.0,1253194 -3106477,1630214621,2,94,0,1,1630088374,1,6.0,-9.0,-9.0,-9.0,2.0,1253195 -3106478,1630214438,2,60,0,1,1630088375,2,6.0,-9.0,-9.0,-9.0,4.0,1253196 -3106479,1630213989,1,33,0,1,1630088376,2,1.0,40.0,1.0,-9.0,4.0,1253197 -3106480,1630213990,1,28,15,2,1630088376,2,1.0,30.0,1.0,16.0,4.0,1253197 -3106481,1630213992,1,28,15,3,1630088376,1,1.0,65.0,1.0,-9.0,4.0,1253197 -3106482,1630213993,1,25,15,4,1630088376,1,1.0,50.0,1.0,-9.0,4.0,1253197 -3106483,1630213991,1,24,15,5,1630088376,2,1.0,15.0,4.0,16.0,4.0,1253197 -3106484,1630214330,2,60,0,1,1630088377,2,6.0,-9.0,-9.0,-9.0,4.0,1253198 -3106485,1630214353,2,59,0,1,1630088378,2,1.0,40.0,4.0,-9.0,4.0,1253199 -3106486,1630214395,2,31,0,1,1630088379,2,1.0,50.0,1.0,-9.0,4.0,1253200 -3106487,1630214319,2,40,0,1,1630088380,1,2.0,25.0,1.0,15.0,4.0,1253201 -3106488,1630214318,2,40,1,2,1630088380,2,1.0,40.0,1.0,16.0,4.0,1253201 -3106489,1630214320,2,19,2,3,1630088380,1,6.0,25.0,5.0,15.0,4.0,1253201 -3106490,1630214448,2,26,0,1,1630088381,2,1.0,40.0,4.0,15.0,4.0,1253202 -3106491,1630214449,2,35,13,2,1630088381,1,1.0,20.0,1.0,-9.0,4.0,1253202 -3106492,1630214413,2,22,0,1,1630088382,2,3.0,-9.0,-9.0,-9.0,4.0,1253203 -3106493,1630214414,2,2,2,2,1630088382,1,-9.0,-9.0,-9.0,-9.0,-9.0,1253203 -3106494,1630214415,2,13,5,3,1630088382,1,-9.0,-9.0,-9.0,9.0,-9.0,1253203 -3106495,1630214573,2,43,0,1,1630088383,1,1.0,30.0,1.0,-9.0,2.0,1253204 -3106496,1630214575,2,36,11,2,1630088383,1,1.0,40.0,1.0,15.0,4.0,1253204 -3106497,1630214115,1,29,0,1,1630088384,1,6.0,40.0,3.0,16.0,4.0,1253205 -3106498,1630214118,1,27,12,2,1630088384,1,6.0,40.0,5.0,-9.0,4.0,1253205 -3106499,1630214617,2,42,0,1,1630088385,1,1.0,70.0,1.0,-9.0,4.0,1253206 -3106500,1630214618,2,41,15,2,1630088385,1,6.0,-9.0,-9.0,-9.0,4.0,1253206 -3106501,1630214608,2,39,0,1,1630088386,1,6.0,-9.0,-9.0,-9.0,4.0,1253207 -3106502,1630214450,2,33,0,1,1630088387,2,1.0,28.0,5.0,-9.0,4.0,1253208 -3106503,1630214451,2,13,2,2,1630088387,1,-9.0,-9.0,-9.0,9.0,-9.0,1253208 -3106504,1630214452,2,11,2,3,1630088387,2,-9.0,-9.0,-9.0,7.0,-9.0,1253208 -3106505,1630214453,2,8,2,4,1630088387,2,-9.0,-9.0,-9.0,5.0,-9.0,1253208 -3106506,1630214454,2,3,2,5,1630088387,2,-9.0,-9.0,-9.0,-9.0,-9.0,1253208 -3106507,1630214633,4,61,0,1,1630088388,2,6.0,-9.0,-9.0,-9.0,4.0,1253209 -3106508,1630214632,4,23,2,2,1630088388,1,1.0,50.0,6.0,14.0,4.0,1253209 -3106509,1630213871,1,27,0,1,1630088389,1,6.0,-9.0,-9.0,16.0,4.0,1253210 -3106510,1630213869,1,24,1,2,1630088389,2,6.0,-9.0,-9.0,16.0,4.0,1253210 -3106511,1630214441,2,22,0,1,1630088390,2,1.0,40.0,6.0,-9.0,4.0,1253211 -3106512,1630214442,2,0,2,2,1630088390,1,-9.0,-9.0,-9.0,-9.0,-9.0,1253211 -3106513,1630214244,1,57,0,1,1630088391,1,1.0,45.0,2.0,-9.0,4.0,1253212 -3106514,1630214628,4,25,0,1,1630088392,1,1.0,30.0,1.0,-9.0,4.0,1253213 -3106515,1630214835,4,26,0,1,1630088393,1,6.0,36.0,5.0,-9.0,4.0,1253214 -3106516,1630214850,4,25,12,2,1630088393,1,6.0,-9.0,-9.0,-9.0,4.0,1253214 -3106517,1630214440,2,43,0,1,1630088394,1,1.0,40.0,1.0,-9.0,3.0,1253215 -3106518,1630214439,2,61,6,2,1630088394,2,6.0,-9.0,-9.0,-9.0,4.0,1253215 -3106519,1630214535,2,44,0,1,1630088395,1,1.0,40.0,1.0,-9.0,4.0,1253216 -3106520,1630214536,2,25,10,2,1630088395,1,1.0,40.0,1.0,-9.0,4.0,1253216 -3106521,1630213865,1,32,0,1,1630088396,2,3.0,-9.0,-9.0,-9.0,4.0,1253217 -3106522,1630213866,1,8,2,2,1630088396,1,-9.0,-9.0,-9.0,4.0,-9.0,1253217 -3106523,1630213867,1,6,2,3,1630088396,1,-9.0,-9.0,-9.0,-9.0,-9.0,1253217 -3106524,1630214339,2,77,0,1,1630088397,1,6.0,-9.0,-9.0,-9.0,2.0,1253218 -3106525,1630214338,2,62,1,2,1630088397,2,6.0,-9.0,-9.0,-9.0,4.0,1253218 -3106526,1630214143,1,20,0,1,1630088398,1,1.0,40.0,5.0,15.0,4.0,1253219 -3106527,1630214495,2,22,0,1,1630088399,2,6.0,-9.0,-9.0,-9.0,4.0,1253220 -3106528,1630214497,2,3,2,2,1630088399,2,-9.0,-9.0,-9.0,1.0,-9.0,1253220 -3106529,1630214498,2,2,2,3,1630088399,2,-9.0,-9.0,-9.0,-9.0,-9.0,1253220 -3106530,1630214496,2,0,2,4,1630088399,1,-9.0,-9.0,-9.0,-9.0,-9.0,1253220 -3106531,1630213856,1,42,0,1,1630088400,2,1.0,55.0,1.0,-9.0,4.0,1253221 -3106532,1630213857,1,39,1,2,1630088400,1,1.0,55.0,1.0,-9.0,4.0,1253221 -3106533,1630214625,4,48,0,1,1630088401,2,6.0,20.0,6.0,-9.0,4.0,1253222 -3106534,1630214624,4,19,2,2,1630088401,1,1.0,18.0,6.0,-9.0,4.0,1253222 -3106535,1630214405,2,27,0,1,1630088402,1,6.0,-9.0,-9.0,16.0,4.0,1253223 -3106536,1630214403,2,25,1,2,1630088402,2,1.0,40.0,1.0,-9.0,4.0,1253223 -3106537,1630214360,2,34,0,1,1630088403,2,1.0,40.0,1.0,-9.0,4.0,1253224 -3106538,1630214361,2,33,1,2,1630088403,1,1.0,40.0,1.0,-9.0,4.0,1253224 -3106539,1630215459,4,30,0,1,1630088404,1,1.0,45.0,1.0,-9.0,4.0,1253225 -3106540,1630215456,4,27,1,2,1630088404,2,1.0,40.0,1.0,-9.0,4.0,1253225 -3106541,1630215460,4,30,0,1,1630088405,1,1.0,45.0,1.0,-9.0,4.0,1253226 -3106542,1630215457,4,27,1,2,1630088405,2,1.0,40.0,1.0,-9.0,4.0,1253226 -3106543,1630215461,4,30,0,1,1630088406,1,1.0,45.0,1.0,-9.0,4.0,1253227 -3106544,1630215458,4,27,1,2,1630088406,2,1.0,40.0,1.0,-9.0,4.0,1253227 -3106545,1630215384,4,33,0,1,1630088407,2,1.0,55.0,1.0,-9.0,4.0,1253228 -3106546,1630215380,2,34,13,2,1630088407,1,1.0,40.0,4.0,16.0,4.0,1253228 -3106547,1630215385,4,33,0,1,1630088408,2,1.0,55.0,1.0,-9.0,4.0,1253229 -3106548,1630215381,2,34,13,2,1630088408,1,1.0,40.0,4.0,16.0,4.0,1253229 -3106549,1630215386,4,33,0,1,1630088409,2,1.0,55.0,1.0,-9.0,4.0,1253230 -3106550,1630215382,2,34,13,2,1630088409,1,1.0,40.0,4.0,16.0,4.0,1253230 -3106551,1630214924,1,27,0,1,1630088410,1,1.0,40.0,1.0,16.0,4.0,1253231 -3106552,1630214921,1,29,15,2,1630088410,2,1.0,50.0,1.0,-9.0,4.0,1253231 -3106553,1630214976,1,37,0,1,1630088411,1,1.0,50.0,3.0,-9.0,4.0,1253232 -3106554,1630214975,1,39,13,2,1630088411,2,1.0,45.0,3.0,-9.0,4.0,1253232 -3106555,1630214925,1,27,0,1,1630088412,1,1.0,40.0,1.0,16.0,4.0,1253233 -3106556,1630214922,1,29,15,2,1630088412,2,1.0,50.0,1.0,-9.0,4.0,1253233 -3106557,1630215233,1,38,0,1,1630088413,1,1.0,40.0,1.0,-9.0,4.0,1253234 -3106558,1630215234,1,42,12,2,1630088413,1,1.0,40.0,1.0,-9.0,4.0,1253234 -3106559,1630214948,1,31,0,1,1630088414,2,1.0,50.0,1.0,-9.0,4.0,1253235 -3106560,1630214949,1,34,13,2,1630088414,1,1.0,70.0,1.0,-9.0,4.0,1253235 -3106561,1630215243,1,29,0,1,1630088415,1,1.0,35.0,1.0,-9.0,4.0,1253236 -3106562,1630215525,4,27,0,1,1630088416,1,1.0,40.0,1.0,-9.0,4.0,1253237 -3106563,1630215540,4,30,0,1,1630088417,1,1.0,60.0,1.0,16.0,4.0,1253238 -3106564,1630215553,4,42,0,1,1630088418,1,1.0,40.0,3.0,-9.0,4.0,1253239 -3106565,1630215541,4,30,0,1,1630088419,1,1.0,60.0,1.0,16.0,4.0,1253240 -3106566,1630215554,4,42,0,1,1630088420,1,1.0,40.0,3.0,-9.0,4.0,1253241 -3106567,1630215555,4,42,0,1,1630088421,1,1.0,40.0,3.0,-9.0,4.0,1253242 -3106568,1630215526,4,27,0,1,1630088422,1,1.0,40.0,1.0,-9.0,4.0,1253243 -3106569,1630215506,4,44,0,1,1630088423,1,1.0,55.0,1.0,-9.0,4.0,1253244 -3106570,1630215561,4,33,0,1,1630088424,1,2.0,12.0,1.0,-9.0,4.0,1253245 -3106571,1630215527,4,27,0,1,1630088425,1,1.0,40.0,1.0,-9.0,4.0,1253246 -3106572,1630215542,4,30,0,1,1630088426,1,1.0,60.0,1.0,16.0,4.0,1253247 -3106573,1630215285,2,32,0,1,1630088427,2,1.0,70.0,1.0,-9.0,4.0,1253248 -3106574,1630215286,2,32,0,1,1630088428,2,1.0,70.0,1.0,-9.0,4.0,1253249 -3106575,1630215176,1,31,0,1,1630088429,1,2.0,70.0,1.0,-9.0,4.0,1253250 -3106576,1630215068,1,42,0,1,1630088430,1,1.0,40.0,3.0,15.0,4.0,1253251 -3106577,1630215205,1,26,0,1,1630088431,1,1.0,60.0,1.0,-9.0,4.0,1253252 -3106578,1630215113,1,29,0,1,1630088432,1,1.0,50.0,1.0,-9.0,4.0,1253253 -3106579,1630214988,1,26,0,1,1630088433,2,1.0,40.0,1.0,-9.0,4.0,1253254 -3106580,1630215019,1,33,0,1,1630088434,2,1.0,60.0,1.0,15.0,4.0,1253255 -3106581,1630215114,1,29,0,1,1630088435,1,1.0,50.0,1.0,-9.0,4.0,1253256 -3106582,1630215453,4,30,0,1,1630088436,1,1.0,60.0,1.0,16.0,4.0,1253257 -3106583,1630215450,4,33,1,2,1630088436,2,1.0,60.0,1.0,16.0,4.0,1253257 -3106584,1630215454,4,30,0,1,1630088437,1,1.0,60.0,1.0,16.0,4.0,1253258 -3106585,1630215451,4,33,1,2,1630088437,2,1.0,60.0,1.0,16.0,4.0,1253258 -3106586,1630215185,1,26,0,1,1630088438,1,1.0,45.0,1.0,-9.0,4.0,1253259 -3106587,1630215188,4,25,13,2,1630088438,2,1.0,35.0,1.0,-9.0,4.0,1253259 -3106588,1630215186,1,26,0,1,1630088439,1,1.0,45.0,1.0,-9.0,4.0,1253260 -3106589,1630215189,4,25,13,2,1630088439,2,1.0,35.0,1.0,-9.0,4.0,1253260 -3106590,1630214951,1,32,0,1,1630088440,1,1.0,40.0,1.0,-9.0,4.0,1253261 -3106591,1630214950,1,42,1,2,1630088440,2,1.0,40.0,1.0,-9.0,4.0,1253261 -3106592,1630215223,1,29,0,1,1630088441,1,1.0,50.0,1.0,16.0,4.0,1253262 -3106593,1630215225,1,34,12,2,1630088441,1,1.0,40.0,1.0,16.0,4.0,1253262 -3106594,1630215224,1,29,0,1,1630088442,1,1.0,50.0,1.0,16.0,4.0,1253263 -3106595,1630215226,1,34,12,2,1630088442,1,1.0,40.0,1.0,16.0,4.0,1253263 -3106596,1630215130,1,25,0,1,1630088443,1,1.0,40.0,1.0,-9.0,4.0,1253264 -3106597,1630215196,1,38,0,1,1630088444,1,1.0,40.0,1.0,-9.0,4.0,1253265 -3106598,1630215198,4,38,1,2,1630088444,2,1.0,40.0,1.0,-9.0,4.0,1253265 -3106599,1630215347,2,44,0,1,1630088445,1,6.0,-9.0,-9.0,-9.0,4.0,1253266 -3106600,1630215268,2,44,0,1,1630088446,2,3.0,8.0,6.0,-9.0,4.0,1253267 -3106601,1630215083,1,39,0,1,1630088447,1,6.0,8.0,6.0,16.0,4.0,1253268 -3106602,1630215556,4,26,0,1,1630088448,1,6.0,-9.0,-9.0,16.0,4.0,1253269 -3106603,1630215557,4,26,0,1,1630088449,1,6.0,-9.0,-9.0,16.0,4.0,1253270 -3106604,1630215416,2,38,0,1,1630088450,1,6.0,-9.0,-9.0,-9.0,4.0,1253271 -3106605,1630215354,2,37,0,1,1630088451,1,6.0,-9.0,-9.0,-9.0,4.0,1253272 -3106606,1630215010,1,37,0,1,1630088452,2,6.0,-9.0,-9.0,16.0,4.0,1253273 -3106607,1630215090,1,29,0,1,1630088453,1,6.0,-9.0,-9.0,15.0,4.0,1253274 -3106608,1630215088,1,40,0,1,1630088454,1,6.0,28.0,4.0,-9.0,4.0,1253275 -3106609,1630215089,1,40,0,1,1630088455,1,6.0,28.0,4.0,-9.0,4.0,1253276 -3106610,1630215351,2,40,0,1,1630088456,1,1.0,40.0,6.0,-9.0,4.0,1253277 -3106611,1630215072,1,42,0,1,1630088457,1,1.0,40.0,1.0,-9.0,2.0,1253278 -3106612,1630215073,1,42,0,1,1630088458,1,1.0,40.0,1.0,-9.0,2.0,1253279 -3106613,1630215003,1,44,0,1,1630088459,2,1.0,40.0,1.0,-9.0,4.0,1253280 -3106614,1630215496,4,32,0,1,1630088460,1,1.0,40.0,6.0,16.0,4.0,1253281 -3106615,1630215497,4,32,0,1,1630088461,1,1.0,40.0,6.0,16.0,4.0,1253282 -3106616,1630215502,4,29,0,1,1630088462,1,1.0,20.0,1.0,16.0,4.0,1253283 -3106617,1630215536,4,31,0,1,1630088463,1,1.0,17.0,1.0,16.0,4.0,1253284 -3106618,1630215530,4,26,0,1,1630088464,1,1.0,60.0,3.0,-9.0,4.0,1253285 -3106619,1630215537,4,31,0,1,1630088465,1,1.0,17.0,1.0,16.0,4.0,1253286 -3106620,1630215531,4,26,0,1,1630088466,1,1.0,60.0,3.0,-9.0,4.0,1253287 -3106621,1630215498,4,32,0,1,1630088467,1,1.0,40.0,6.0,16.0,4.0,1253288 -3106622,1630215538,4,31,0,1,1630088468,1,1.0,17.0,1.0,16.0,4.0,1253289 -3106623,1630215503,4,29,0,1,1630088469,1,1.0,20.0,1.0,16.0,4.0,1253290 -3106624,1630215532,4,26,0,1,1630088470,1,1.0,60.0,3.0,-9.0,4.0,1253291 -3106625,1630215539,4,31,0,1,1630088471,1,1.0,17.0,1.0,16.0,4.0,1253292 -3106626,1630215462,4,30,0,1,1630088472,2,1.0,40.0,1.0,-9.0,4.0,1253293 -3106627,1630215533,4,26,0,1,1630088473,1,1.0,60.0,3.0,-9.0,4.0,1253294 -3106628,1630215534,4,26,0,1,1630088474,1,1.0,60.0,3.0,-9.0,4.0,1253295 -3106629,1630215535,4,26,0,1,1630088475,1,1.0,60.0,3.0,-9.0,4.0,1253296 -3106630,1630215499,4,32,0,1,1630088476,1,1.0,40.0,6.0,16.0,4.0,1253297 -3106631,1630215500,4,32,0,1,1630088477,1,1.0,40.0,6.0,16.0,4.0,1253298 -3106632,1630215501,4,32,0,1,1630088478,1,1.0,40.0,6.0,16.0,4.0,1253299 -3106633,1630215504,4,29,0,1,1630088479,1,1.0,20.0,1.0,16.0,4.0,1253300 -3106634,1630215326,2,44,0,1,1630088480,2,1.0,40.0,1.0,-9.0,4.0,1253301 -3106635,1630215412,2,35,0,1,1630088481,1,1.0,40.0,4.0,-9.0,4.0,1253302 -3106636,1630215060,1,31,0,1,1630088482,1,1.0,35.0,1.0,-9.0,4.0,1253303 -3106637,1630215061,1,31,0,1,1630088483,1,1.0,35.0,1.0,-9.0,4.0,1253304 -3106638,1630215218,1,26,0,1,1630088484,1,1.0,60.0,2.0,16.0,4.0,1253305 -3106639,1630214968,1,28,0,1,1630088485,2,1.0,50.0,1.0,16.0,4.0,1253306 -3106640,1630215219,1,26,0,1,1630088486,1,1.0,60.0,2.0,16.0,4.0,1253307 -3106641,1630215235,1,31,0,1,1630088487,1,1.0,40.0,6.0,16.0,2.0,1253308 -3106642,1630214969,1,28,0,1,1630088488,2,1.0,50.0,1.0,16.0,4.0,1253309 -3106643,1630215115,1,25,0,1,1630088489,1,1.0,10.0,5.0,16.0,4.0,1253310 -3106644,1630215160,1,33,0,1,1630088490,1,1.0,60.0,4.0,-9.0,4.0,1253311 -3106645,1630215116,1,25,0,1,1630088491,1,1.0,10.0,5.0,16.0,4.0,1253312 -3106646,1630215062,1,31,0,1,1630088492,1,1.0,35.0,1.0,-9.0,4.0,1253313 -3106647,1630215236,1,31,0,1,1630088493,1,1.0,40.0,6.0,16.0,2.0,1253314 -3106648,1630215117,1,25,0,1,1630088494,1,1.0,10.0,5.0,16.0,4.0,1253315 -3106649,1630215024,1,26,0,1,1630088495,2,1.0,20.0,4.0,16.0,4.0,1253316 -3106650,1630215039,1,31,0,1,1630088496,2,1.0,20.0,1.0,-9.0,4.0,1253317 -3106651,1630215175,1,35,0,1,1630088497,1,1.0,22.0,1.0,16.0,4.0,1253318 -3106652,1630215031,1,25,0,1,1630088498,2,1.0,40.0,4.0,-9.0,4.0,1253319 -3106653,1630215204,1,30,0,1,1630088499,1,1.0,40.0,1.0,-9.0,4.0,1253320 -3106654,1630215488,4,27,0,1,1630088500,1,1.0,54.0,2.0,16.0,4.0,1253321 -3106655,1630215483,4,26,1,2,1630088500,2,1.0,15.0,6.0,16.0,4.0,1253321 -3106656,1630215489,4,27,0,1,1630088501,1,1.0,54.0,2.0,16.0,4.0,1253322 -3106657,1630215484,4,26,1,2,1630088501,2,1.0,15.0,6.0,16.0,4.0,1253322 -3106658,1630215490,4,27,0,1,1630088502,1,1.0,54.0,2.0,16.0,4.0,1253323 -3106659,1630215485,4,26,1,2,1630088502,2,1.0,15.0,6.0,16.0,4.0,1253323 -3106660,1630215491,4,27,0,1,1630088503,1,1.0,54.0,2.0,16.0,4.0,1253324 -3106661,1630215486,4,26,1,2,1630088503,2,1.0,15.0,6.0,16.0,4.0,1253324 -3106662,1630215492,4,27,0,1,1630088504,1,1.0,54.0,2.0,16.0,4.0,1253325 -3106663,1630215487,4,26,1,2,1630088504,2,1.0,15.0,6.0,16.0,4.0,1253325 -3106664,1630215173,1,33,0,1,1630088505,1,1.0,25.0,1.0,16.0,4.0,1253326 -3106665,1630215174,4,30,1,2,1630088505,2,1.0,25.0,1.0,15.0,4.0,1253326 -3106666,1630215036,1,51,0,1,1630088506,2,1.0,40.0,1.0,16.0,4.0,1253327 -3106667,1630215215,1,50,0,1,1630088507,1,1.0,60.0,1.0,-9.0,4.0,1253328 -3106668,1630215230,1,59,0,1,1630088508,1,1.0,50.0,1.0,-9.0,4.0,1253329 -3106669,1630215216,1,50,0,1,1630088509,1,1.0,60.0,1.0,-9.0,4.0,1253330 -3106670,1630215217,1,50,0,1,1630088510,1,1.0,60.0,1.0,-9.0,4.0,1253331 -3106671,1630215231,1,59,0,1,1630088511,1,1.0,50.0,1.0,-9.0,4.0,1253332 -3106672,1630215002,1,54,0,1,1630088512,1,1.0,65.0,1.0,-9.0,4.0,1253333 -3106673,1630215001,1,45,1,2,1630088512,2,1.0,40.0,1.0,-9.0,4.0,1253333 -3106674,1630214962,1,59,0,1,1630088513,1,1.0,48.0,1.0,-9.0,4.0,1253334 -3106675,1630214958,1,59,1,2,1630088513,2,1.0,45.0,1.0,-9.0,4.0,1253334 -3106676,1630214963,1,59,0,1,1630088514,1,1.0,48.0,1.0,-9.0,4.0,1253335 -3106677,1630214959,1,59,1,2,1630088514,2,1.0,45.0,1.0,-9.0,4.0,1253335 -3106678,1630214964,1,59,0,1,1630088515,1,1.0,48.0,1.0,-9.0,4.0,1253336 -3106679,1630214960,1,59,1,2,1630088515,2,1.0,45.0,1.0,-9.0,4.0,1253336 -3106680,1630215353,2,64,0,1,1630088516,1,6.0,-9.0,-9.0,-9.0,2.0,1253337 -3106681,1630215139,1,62,0,1,1630088517,1,6.0,-9.0,-9.0,-9.0,2.0,1253338 -3106682,1630215373,2,47,0,1,1630088518,1,1.0,40.0,1.0,-9.0,4.0,1253339 -3106683,1630214954,1,58,0,1,1630088519,2,1.0,40.0,1.0,-9.0,4.0,1253340 -3106684,1630215562,4,51,0,1,1630088520,1,1.0,70.0,1.0,16.0,4.0,1253341 -3106685,1630215563,4,51,0,1,1630088521,1,1.0,70.0,1.0,16.0,4.0,1253342 -3106686,1630215564,4,51,0,1,1630088522,1,1.0,70.0,1.0,16.0,4.0,1253343 -3106687,1630215565,4,51,0,1,1630088523,1,1.0,70.0,1.0,16.0,4.0,1253344 -3106688,1630215566,4,51,0,1,1630088524,1,1.0,70.0,1.0,16.0,4.0,1253345 -3106689,1630215273,2,62,0,1,1630088525,2,1.0,40.0,1.0,-9.0,4.0,1253346 -3106690,1630215413,2,50,0,1,1630088526,1,1.0,50.0,1.0,-9.0,4.0,1253347 -3106691,1630215266,2,61,0,1,1630088527,2,1.0,20.0,1.0,-9.0,4.0,1253348 -3106692,1630215257,2,64,0,1,1630088528,2,1.0,40.0,1.0,-9.0,4.0,1253349 -3106693,1630215392,2,56,0,1,1630088529,1,1.0,40.0,1.0,-9.0,4.0,1253350 -3106694,1630215414,2,50,0,1,1630088530,1,1.0,50.0,1.0,-9.0,4.0,1253351 -3106695,1630215325,2,59,0,1,1630088531,2,1.0,40.0,1.0,-9.0,4.0,1253352 -3106696,1630215344,2,50,0,1,1630088532,2,1.0,45.0,1.0,-9.0,4.0,1253353 -3106697,1630215200,1,63,0,1,1630088533,1,1.0,40.0,1.0,-9.0,4.0,1253354 -3106698,1630215109,1,52,0,1,1630088534,1,1.0,40.0,1.0,-9.0,4.0,1253355 -3106699,1630214966,1,63,0,1,1630088535,2,1.0,40.0,1.0,-9.0,4.0,1253356 -3106700,1630215201,1,63,0,1,1630088536,1,1.0,40.0,1.0,-9.0,4.0,1253357 -3106701,1630215110,1,52,0,1,1630088537,1,1.0,40.0,1.0,-9.0,4.0,1253358 -3106702,1630214967,1,63,0,1,1630088538,2,1.0,40.0,1.0,-9.0,4.0,1253359 -3106703,1630215229,1,64,0,1,1630088539,1,1.0,53.0,1.0,-9.0,4.0,1253360 -3106704,1630215202,1,63,0,1,1630088540,1,1.0,40.0,1.0,-9.0,4.0,1253361 -3106705,1630215122,1,57,0,1,1630088541,1,1.0,55.0,1.0,-9.0,4.0,1253362 -3106706,1630215263,2,54,0,1,1630088542,1,1.0,30.0,1.0,-9.0,4.0,1253363 -3106707,1630215262,2,53,1,2,1630088542,2,1.0,40.0,1.0,15.0,4.0,1253363 -3106708,1630215529,4,45,0,1,1630088543,1,1.0,36.0,1.0,-9.0,4.0,1253364 -3106709,1630214920,1,57,0,1,1630088544,2,1.0,50.0,1.0,-9.0,4.0,1253365 -3106710,1630215402,2,62,0,1,1630088545,1,6.0,-9.0,-9.0,-9.0,2.0,1253366 -3106711,1630215406,2,47,0,1,1630088546,1,3.0,-9.0,-9.0,-9.0,4.0,1253367 -3106712,1630215348,2,54,0,1,1630088547,1,6.0,20.0,4.0,-9.0,4.0,1253368 -3106713,1630215283,2,56,0,1,1630088548,2,6.0,-9.0,-9.0,-9.0,4.0,1253369 -3106714,1630215334,2,59,0,1,1630088549,2,6.0,-9.0,-9.0,-9.0,4.0,1253370 -3106715,1630215349,2,54,0,1,1630088550,1,3.0,-9.0,-9.0,-9.0,2.0,1253371 -3106716,1630215252,2,58,0,1,1630088551,2,6.0,-9.0,-9.0,-9.0,4.0,1253372 -3106717,1630215395,2,45,0,1,1630088552,1,6.0,-9.0,-9.0,-9.0,4.0,1253373 -3106718,1630215306,2,62,0,1,1630088553,2,6.0,-9.0,-9.0,-9.0,4.0,1253374 -3106719,1630215281,2,52,0,1,1630088554,2,6.0,-9.0,-9.0,-9.0,4.0,1253375 -3106720,1630215367,2,52,0,1,1630088555,1,6.0,-9.0,-9.0,-9.0,2.0,1253376 -3106721,1630215403,2,61,0,1,1630088556,1,6.0,-9.0,-9.0,-9.0,4.0,1253377 -3106722,1630215362,2,46,0,1,1630088557,1,6.0,-9.0,-9.0,-9.0,4.0,1253378 -3106723,1630215379,2,51,0,1,1630088558,1,6.0,-9.0,-9.0,-9.0,2.0,1253379 -3106724,1630215256,2,53,0,1,1630088559,2,6.0,-9.0,-9.0,-9.0,4.0,1253380 -3106725,1630215368,2,52,0,1,1630088560,1,6.0,-9.0,-9.0,-9.0,2.0,1253381 -3106726,1630215335,2,59,0,1,1630088561,2,6.0,-9.0,-9.0,-9.0,4.0,1253382 -3106727,1630215358,2,54,0,1,1630088562,1,6.0,-9.0,-9.0,-9.0,4.0,1253383 -3106728,1630215346,2,54,0,1,1630088563,1,6.0,-9.0,-9.0,-9.0,4.0,1253384 -3106729,1630215369,2,59,0,1,1630088564,1,6.0,-9.0,-9.0,-9.0,2.0,1253385 -3106730,1630215396,2,62,0,1,1630088565,1,6.0,-9.0,-9.0,-9.0,4.0,1253386 -3106731,1630215407,2,47,0,1,1630088566,1,3.0,-9.0,-9.0,-9.0,4.0,1253387 -3106732,1630215253,2,58,0,1,1630088567,2,6.0,-9.0,-9.0,-9.0,2.0,1253388 -3106733,1630215372,2,45,0,1,1630088568,1,6.0,-9.0,-9.0,-9.0,4.0,1253389 -3106734,1630215411,2,57,0,1,1630088569,1,6.0,-9.0,-9.0,-9.0,4.0,1253390 -3106735,1630215321,2,52,0,1,1630088570,2,6.0,-9.0,-9.0,-9.0,4.0,1253391 -3106736,1630215352,2,58,0,1,1630088571,1,6.0,-9.0,-9.0,-9.0,3.0,1253392 -3106737,1630215248,2,57,0,1,1630088572,2,6.0,-9.0,-9.0,-9.0,4.0,1253393 -3106738,1630215329,2,62,0,1,1630088573,2,6.0,-9.0,-9.0,-9.0,4.0,1253394 -3106739,1630215376,2,59,0,1,1630088574,1,6.0,-9.0,-9.0,-9.0,2.0,1253395 -3106740,1630215370,2,59,0,1,1630088575,1,6.0,-9.0,-9.0,-9.0,2.0,1253396 -3106741,1630215278,2,50,0,1,1630088576,2,6.0,-9.0,-9.0,-9.0,4.0,1253397 -3106742,1630215371,2,59,0,1,1630088577,1,6.0,-9.0,-9.0,-9.0,2.0,1253398 -3106743,1630215265,2,55,0,1,1630088578,2,6.0,-9.0,-9.0,-9.0,4.0,1253399 -3106744,1630215305,2,59,0,1,1630088579,2,6.0,-9.0,-9.0,-9.0,4.0,1253400 -3106745,1630215399,2,64,0,1,1630088580,1,6.0,-9.0,-9.0,-9.0,2.0,1253401 -3106746,1630215405,2,49,0,1,1630088581,1,6.0,-9.0,-9.0,-9.0,4.0,1253402 -3106747,1630215289,2,64,0,1,1630088582,2,6.0,-9.0,-9.0,-9.0,4.0,1253403 -3106748,1630215255,2,64,0,1,1630088583,2,6.0,15.0,5.0,-9.0,4.0,1253404 -3106749,1630215079,1,45,0,1,1630088584,1,6.0,-9.0,-9.0,-9.0,4.0,1253405 -3106750,1630215091,1,64,0,1,1630088585,1,6.0,-9.0,-9.0,-9.0,2.0,1253406 -3106751,1630215092,1,64,0,1,1630088586,1,6.0,-9.0,-9.0,-9.0,2.0,1253407 -3106752,1630215093,1,64,0,1,1630088587,1,6.0,-9.0,-9.0,-9.0,2.0,1253408 -3106753,1630215080,1,45,0,1,1630088588,1,6.0,-9.0,-9.0,-9.0,4.0,1253409 -3106754,1630215094,1,64,0,1,1630088589,1,6.0,-9.0,-9.0,-9.0,2.0,1253410 -3106755,1630215211,1,50,0,1,1630088590,1,3.0,-9.0,-9.0,-9.0,2.0,1253411 -3106756,1630215141,1,64,0,1,1630088591,1,6.0,-9.0,-9.0,-9.0,4.0,1253412 -3106757,1630215081,1,45,0,1,1630088592,1,6.0,-9.0,-9.0,-9.0,4.0,1253413 -3106758,1630215038,1,60,0,1,1630088593,2,6.0,-9.0,-9.0,-9.0,4.0,1253414 -3106759,1630215095,1,64,0,1,1630088594,1,6.0,-9.0,-9.0,-9.0,2.0,1253415 -3106760,1630215142,1,64,0,1,1630088595,1,6.0,-9.0,-9.0,-9.0,4.0,1253416 -3106761,1630215082,1,45,0,1,1630088596,1,6.0,-9.0,-9.0,-9.0,4.0,1253417 -3106762,1630215096,1,64,0,1,1630088597,1,6.0,-9.0,-9.0,-9.0,2.0,1253418 -3106763,1630215363,2,53,0,1,1630088598,1,6.0,-9.0,-9.0,-9.0,4.0,1253419 -3106764,1630215394,2,62,0,1,1630088599,1,6.0,-9.0,-9.0,-9.0,2.0,1253420 -3106765,1630215338,2,61,0,1,1630088600,2,6.0,40.0,6.0,-9.0,4.0,1253421 -3106766,1630215366,2,55,0,1,1630088601,1,6.0,-9.0,-9.0,-9.0,4.0,1253422 -3106767,1630215393,2,63,0,1,1630088602,1,6.0,-9.0,-9.0,-9.0,2.0,1253423 -3106768,1630215404,2,53,0,1,1630088603,1,6.0,-9.0,-9.0,-9.0,2.0,1253424 -3106769,1630215360,2,57,0,1,1630088604,1,6.0,-9.0,-9.0,-9.0,4.0,1253425 -3106770,1630215364,2,53,0,1,1630088605,1,6.0,-9.0,-9.0,-9.0,4.0,1253426 -3106771,1630215390,2,51,0,1,1630088606,1,6.0,40.0,6.0,-9.0,4.0,1253427 -3106772,1630215330,2,46,0,1,1630088607,2,3.0,-9.0,-9.0,-9.0,4.0,1253428 -3106773,1630215409,2,58,0,1,1630088608,1,6.0,-9.0,-9.0,-9.0,4.0,1253429 -3106774,1630215400,2,57,0,1,1630088609,1,6.0,-9.0,-9.0,-9.0,4.0,1253430 -3106775,1630215361,2,57,0,1,1630088610,1,6.0,-9.0,-9.0,-9.0,4.0,1253431 -3106776,1630215163,1,56,0,1,1630088611,1,6.0,-9.0,-9.0,-9.0,2.0,1253432 -3106777,1630215151,1,64,0,1,1630088612,1,6.0,12.0,5.0,-9.0,4.0,1253433 -3106778,1630215164,1,56,0,1,1630088613,1,6.0,-9.0,-9.0,-9.0,2.0,1253434 -3106779,1630215165,1,56,0,1,1630088614,1,6.0,-9.0,-9.0,-9.0,2.0,1253435 -3106780,1630215152,1,64,0,1,1630088615,1,6.0,12.0,5.0,-9.0,4.0,1253436 -3106781,1630215375,2,63,0,1,1630088616,1,6.0,-9.0,-9.0,-9.0,2.0,1253437 -3106782,1630215322,2,54,0,1,1630088617,2,6.0,-9.0,-9.0,-9.0,4.0,1253438 -3106783,1630215323,2,26,2,2,1630088617,1,3.0,-9.0,-9.0,15.0,4.0,1253438 -3106784,1630215276,2,63,0,1,1630088618,2,6.0,-9.0,-9.0,-9.0,4.0,1253439 -3106785,1630215277,2,47,2,2,1630088618,1,6.0,-9.0,-9.0,-9.0,4.0,1253439 -3106786,1630215350,2,49,0,1,1630088619,1,1.0,25.0,1.0,-9.0,4.0,1253440 -3106787,1630215340,2,45,0,1,1630088620,2,2.0,40.0,1.0,-9.0,4.0,1253441 -3106788,1630215294,2,58,0,1,1630088621,2,1.0,12.0,1.0,-9.0,4.0,1253442 -3106789,1630215356,2,51,0,1,1630088622,1,1.0,20.0,1.0,-9.0,2.0,1253443 -3106790,1630215295,2,58,0,1,1630088623,2,1.0,12.0,1.0,-9.0,4.0,1253444 -3106791,1630215267,2,58,0,1,1630088624,2,1.0,37.0,4.0,-9.0,4.0,1253445 -3106792,1630215401,2,48,0,1,1630088625,1,1.0,36.0,6.0,-9.0,4.0,1253446 -3106793,1630215296,2,58,0,1,1630088626,2,1.0,12.0,1.0,-9.0,4.0,1253447 -3106794,1630215374,2,56,0,1,1630088627,1,1.0,32.0,1.0,-9.0,2.0,1253448 -3106795,1630215275,2,56,0,1,1630088628,2,1.0,99.0,1.0,-9.0,4.0,1253449 -3106796,1630215304,2,58,0,1,1630088629,2,1.0,40.0,1.0,-9.0,4.0,1253450 -3106797,1630215254,2,52,0,1,1630088630,2,1.0,40.0,1.0,-9.0,4.0,1253451 -3106798,1630215355,2,64,0,1,1630088631,1,1.0,40.0,1.0,-9.0,4.0,1253452 -3106799,1630215161,1,55,0,1,1630088632,1,1.0,50.0,1.0,-9.0,4.0,1253453 -3106800,1630215493,4,51,0,1,1630088633,2,1.0,40.0,1.0,-9.0,4.0,1253454 -3106801,1630215494,4,51,0,1,1630088634,2,1.0,40.0,1.0,-9.0,4.0,1253455 -3106802,1630215508,4,63,0,1,1630088635,1,1.0,40.0,1.0,-9.0,4.0,1253456 -3106803,1630215509,4,63,0,1,1630088636,1,1.0,40.0,1.0,-9.0,4.0,1253457 -3106804,1630215510,4,63,0,1,1630088637,1,1.0,40.0,1.0,-9.0,4.0,1253458 -3106805,1630215511,4,63,0,1,1630088638,1,1.0,40.0,1.0,-9.0,4.0,1253459 -3106806,1630215512,4,63,0,1,1630088639,1,1.0,40.0,1.0,-9.0,4.0,1253460 -3106807,1630215513,4,63,0,1,1630088640,1,1.0,40.0,1.0,-9.0,4.0,1253461 -3106808,1630215514,4,63,0,1,1630088641,1,1.0,40.0,1.0,-9.0,4.0,1253462 -3106809,1630215515,4,63,0,1,1630088642,1,1.0,40.0,1.0,-9.0,4.0,1253463 -3106810,1630215495,4,51,0,1,1630088643,2,1.0,40.0,1.0,-9.0,4.0,1253464 -3106811,1630215516,4,63,0,1,1630088644,1,1.0,40.0,1.0,-9.0,4.0,1253465 -3106812,1630215517,4,63,0,1,1630088645,1,1.0,40.0,1.0,-9.0,4.0,1253466 -3106813,1630215518,4,63,0,1,1630088646,1,1.0,40.0,1.0,-9.0,4.0,1253467 -3106814,1630215519,4,63,0,1,1630088647,1,1.0,40.0,1.0,-9.0,4.0,1253468 -3106815,1630215520,4,63,0,1,1630088648,1,1.0,40.0,1.0,-9.0,4.0,1253469 -3106816,1630215521,4,63,0,1,1630088649,1,1.0,40.0,1.0,-9.0,4.0,1253470 -3106817,1630215522,4,63,0,1,1630088650,1,1.0,40.0,1.0,-9.0,4.0,1253471 -3106818,1630215523,4,63,0,1,1630088651,1,1.0,40.0,1.0,-9.0,4.0,1253472 -3106819,1630215524,4,63,0,1,1630088652,1,1.0,40.0,1.0,-9.0,4.0,1253473 -3106820,1630215357,2,54,0,1,1630088653,1,1.0,35.0,4.0,-9.0,2.0,1253474 -3106821,1630215391,2,53,0,1,1630088654,1,1.0,40.0,1.0,-9.0,4.0,1253475 -3106822,1630215298,2,60,0,1,1630088655,2,1.0,40.0,1.0,-9.0,4.0,1253476 -3106823,1630215279,2,55,0,1,1630088656,2,1.0,38.0,1.0,-9.0,4.0,1253477 -3106824,1630215307,2,54,0,1,1630088657,2,1.0,40.0,5.0,-9.0,4.0,1253478 -3106825,1630215397,2,59,0,1,1630088658,1,1.0,32.0,5.0,-9.0,4.0,1253479 -3106826,1630215342,2,51,0,1,1630088659,2,1.0,20.0,6.0,-9.0,4.0,1253480 -3106827,1630215297,2,46,0,1,1630088660,2,1.0,30.0,3.0,15.0,4.0,1253481 -3106828,1630215343,2,51,0,1,1630088661,2,1.0,20.0,6.0,-9.0,4.0,1253482 -3106829,1630215339,2,55,0,1,1630088662,2,2.0,40.0,4.0,-9.0,4.0,1253483 -3106830,1630215308,2,49,0,1,1630088663,2,2.0,40.0,4.0,-9.0,4.0,1253484 -3106831,1630215194,1,48,0,1,1630088664,1,2.0,40.0,3.0,-9.0,4.0,1253485 -3106832,1630215075,1,56,0,1,1630088665,1,1.0,40.0,1.0,-9.0,2.0,1253486 -3106833,1630215184,1,62,0,1,1630088666,1,1.0,31.0,1.0,-9.0,4.0,1253487 -3106834,1630214947,1,53,0,1,1630088667,2,1.0,50.0,1.0,-9.0,4.0,1253488 -3106835,1630215177,1,55,0,1,1630088668,1,1.0,40.0,3.0,-9.0,4.0,1253489 -3106836,1630215178,1,55,0,1,1630088669,1,1.0,40.0,3.0,-9.0,4.0,1253490 -3106837,1630215179,1,55,0,1,1630088670,1,1.0,40.0,3.0,-9.0,4.0,1253491 -3106838,1630215180,1,55,0,1,1630088671,1,1.0,40.0,3.0,-9.0,4.0,1253492 -3106839,1630215212,1,46,0,1,1630088672,1,1.0,43.0,1.0,-9.0,4.0,1253493 -3106840,1630215181,1,55,0,1,1630088673,1,1.0,40.0,3.0,-9.0,4.0,1253494 -3106841,1630215213,1,46,0,1,1630088674,1,1.0,43.0,1.0,-9.0,4.0,1253495 -3106842,1630215182,1,55,0,1,1630088675,1,1.0,40.0,3.0,-9.0,4.0,1253496 -3106843,1630215214,1,46,0,1,1630088676,1,1.0,43.0,1.0,-9.0,4.0,1253497 -3106844,1630215183,1,55,0,1,1630088677,1,1.0,40.0,3.0,-9.0,4.0,1253498 -3106845,1630215195,1,48,0,1,1630088678,1,2.0,40.0,3.0,-9.0,4.0,1253499 -3106846,1630215388,2,62,0,1,1630088679,1,1.0,45.0,1.0,-9.0,4.0,1253500 -3106847,1630215191,1,57,0,1,1630088680,1,1.0,60.0,1.0,-9.0,4.0,1253501 -3106848,1630215192,1,57,0,1,1630088681,1,1.0,60.0,1.0,-9.0,4.0,1253502 -3106849,1630215327,2,50,0,1,1630088682,2,1.0,40.0,2.0,-9.0,4.0,1253503 -3106850,1630215328,2,31,2,2,1630088682,1,3.0,24.0,6.0,-9.0,4.0,1253503 -3106851,1630215302,2,54,0,1,1630088683,2,1.0,32.0,1.0,-9.0,4.0,1253504 -3106852,1630215303,2,51,1,2,1630088683,1,1.0,20.0,5.0,15.0,4.0,1253504 -3106853,1630215249,2,61,0,1,1630088684,2,1.0,25.0,1.0,-9.0,4.0,1253505 -3106854,1630215250,2,27,2,2,1630088684,1,1.0,2.0,1.0,-9.0,4.0,1253505 -3106855,1630215442,1,69,0,1,1630088685,1,1.0,60.0,1.0,-9.0,4.0,1253506 -3106856,1630215443,1,69,0,1,1630088686,1,1.0,60.0,1.0,-9.0,4.0,1253507 -3106857,1630215423,2,65,0,1,1630088687,1,6.0,-9.0,-9.0,-9.0,2.0,1253508 -3106858,1630215441,1,66,0,1,1630088688,1,6.0,-9.0,-9.0,-9.0,4.0,1253509 -3106859,1630214897,1,82,0,1,1630088689,1,1.0,48.0,1.0,-9.0,2.0,1253510 -3106860,1630214895,1,76,1,2,1630088689,2,1.0,48.0,1.0,-9.0,4.0,1253510 -3106861,1630214886,1,69,0,1,1630088690,1,1.0,10.0,3.0,-9.0,4.0,1253511 -3106862,1630214885,1,68,12,2,1630088690,2,1.0,17.0,1.0,-9.0,4.0,1253511 -3106863,1630215420,2,80,0,1,1630088691,1,6.0,-9.0,-9.0,-9.0,2.0,1253512 -3106864,1630214858,2,70,0,1,1630088692,2,6.0,-9.0,-9.0,-9.0,4.0,1253513 -3106865,1630215421,2,66,0,1,1630088693,1,6.0,-9.0,-9.0,-9.0,4.0,1253514 -3106866,1630214873,2,72,0,1,1630088694,2,6.0,-9.0,-9.0,-9.0,4.0,1253515 -3106867,1630214859,2,65,0,1,1630088695,2,6.0,-9.0,-9.0,-9.0,4.0,1253516 -3106868,1630215426,2,66,0,1,1630088696,1,6.0,-9.0,-9.0,-9.0,4.0,1253517 -3106869,1630214862,2,66,0,1,1630088697,2,6.0,-9.0,-9.0,-9.0,4.0,1253518 -3106870,1630214863,2,81,0,1,1630088698,2,6.0,-9.0,-9.0,-9.0,4.0,1253519 -3106871,1630215422,2,79,0,1,1630088699,1,6.0,-9.0,-9.0,-9.0,2.0,1253520 -3106872,1630214868,2,68,0,1,1630088700,2,6.0,16.0,6.0,-9.0,3.0,1253521 -3106873,1630214870,2,70,0,1,1630088701,2,6.0,-9.0,-9.0,-9.0,4.0,1253522 -3106874,1630214864,2,74,0,1,1630088702,2,6.0,-9.0,-9.0,-9.0,4.0,1253523 -3106875,1630214882,2,82,0,1,1630088703,2,6.0,-9.0,-9.0,-9.0,4.0,1253524 -3106876,1630214874,2,65,0,1,1630088704,2,6.0,-9.0,-9.0,-9.0,4.0,1253525 -3106877,1630214883,2,82,0,1,1630088705,2,6.0,-9.0,-9.0,-9.0,4.0,1253526 -3106878,1630215430,2,86,0,1,1630088706,1,6.0,-9.0,-9.0,-9.0,2.0,1253527 -3106879,1630214871,2,73,0,1,1630088707,2,6.0,-9.0,-9.0,-9.0,4.0,1253528 -3106880,1630215428,2,75,0,1,1630088708,1,6.0,-9.0,-9.0,-9.0,4.0,1253529 -3106881,1630214856,2,69,0,1,1630088709,2,6.0,-9.0,-9.0,-9.0,4.0,1253530 -3106882,1630214894,1,67,0,1,1630088710,2,6.0,-9.0,-9.0,-9.0,4.0,1253531 -3106883,1630214888,1,76,0,1,1630088711,2,6.0,-9.0,-9.0,-9.0,4.0,1253532 -3106884,1630214889,1,65,0,1,1630088712,2,6.0,-9.0,-9.0,-9.0,4.0,1253533 -3106885,1630214887,1,69,0,1,1630088713,2,6.0,-9.0,-9.0,-9.0,4.0,1253534 -3106886,1630215444,1,65,0,1,1630088714,1,6.0,-9.0,-9.0,-9.0,2.0,1253535 -3106887,1630215440,1,74,0,1,1630088715,1,6.0,-9.0,-9.0,-9.0,3.0,1253536 -3106888,1630214899,1,67,0,1,1630088716,2,6.0,-9.0,-9.0,-9.0,4.0,1253537 -3106889,1630214900,1,76,0,1,1630088717,2,6.0,-9.0,-9.0,-9.0,4.0,1253538 -3106890,1630214881,2,78,0,1,1630088718,2,6.0,-9.0,-9.0,-9.0,4.0,1253539 -3106891,1630214869,2,79,0,1,1630088719,2,6.0,-9.0,-9.0,-9.0,4.0,1253540 -3106892,1630214875,2,84,0,1,1630088720,2,3.0,-9.0,-9.0,-9.0,4.0,1253541 -3106893,1630214878,2,79,0,1,1630088721,2,6.0,-9.0,-9.0,-9.0,4.0,1253542 -3106894,1630214877,2,69,0,1,1630088722,2,6.0,-9.0,-9.0,-9.0,4.0,1253543 -3106895,1630214876,2,69,0,1,1630088723,2,6.0,-9.0,-9.0,-9.0,4.0,1253544 -3106896,1630215424,2,81,0,1,1630088724,1,6.0,-9.0,-9.0,-9.0,4.0,1253545 -3106897,1630215425,2,81,0,1,1630088725,1,6.0,-9.0,-9.0,-9.0,4.0,1253546 -3106898,1630215417,2,77,0,1,1630088726,1,6.0,-9.0,-9.0,-9.0,4.0,1253547 -3106899,1630214861,2,71,0,1,1630088727,2,6.0,-9.0,-9.0,-9.0,4.0,1253548 -3106900,1630214865,2,77,0,1,1630088728,2,6.0,-9.0,-9.0,-9.0,4.0,1253549 -3106901,1630214890,1,69,0,1,1630088729,2,6.0,-9.0,-9.0,-9.0,4.0,1253550 -3106902,1630214891,1,69,0,1,1630088730,2,6.0,-9.0,-9.0,-9.0,4.0,1253551 -3106903,1630214892,1,72,0,1,1630088731,2,1.0,15.0,3.0,-9.0,4.0,1253552 -3106904,1630215111,1,24,0,1,1630088732,1,3.0,47.0,3.0,15.0,4.0,1253553 -3106905,1630215543,4,23,0,1,1630088733,1,1.0,80.0,1.0,-9.0,4.0,1253554 -3106906,1630215544,4,23,0,1,1630088734,1,1.0,80.0,1.0,-9.0,4.0,1253555 -3106907,1630215545,4,23,0,1,1630088735,1,1.0,80.0,1.0,-9.0,4.0,1253556 -3106908,1630215546,4,23,0,1,1630088736,1,1.0,80.0,1.0,-9.0,4.0,1253557 -3106909,1630215547,4,23,0,1,1630088737,1,1.0,80.0,1.0,-9.0,4.0,1253558 -3106910,1630215548,4,23,0,1,1630088738,1,1.0,80.0,1.0,-9.0,4.0,1253559 -3106911,1630215549,4,23,0,1,1630088739,1,1.0,80.0,1.0,-9.0,4.0,1253560 -3106912,1630215550,4,23,0,1,1630088740,1,1.0,80.0,1.0,-9.0,4.0,1253561 -3106913,1630215551,4,23,0,1,1630088741,1,1.0,80.0,1.0,-9.0,4.0,1253562 -3106914,1630215063,1,24,0,1,1630088742,1,1.0,45.0,1.0,-9.0,4.0,1253563 -3106915,1630215064,1,24,0,1,1630088743,1,1.0,45.0,1.0,-9.0,4.0,1253564 -3106916,1630215065,1,24,0,1,1630088744,1,1.0,45.0,1.0,-9.0,4.0,1253565 -3106917,1630215066,1,24,0,1,1630088745,1,1.0,45.0,1.0,-9.0,4.0,1253566 -3106918,1630214984,1,23,0,1,1630088746,1,1.0,35.0,1.0,16.0,4.0,1253567 -3106919,1630214986,4,22,11,2,1630088746,2,1.0,35.0,1.0,-9.0,4.0,1253567 -3106920,1630214982,1,22,11,3,1630088746,2,1.0,25.0,4.0,15.0,4.0,1253567 -3106921,1630214985,1,23,0,1,1630088747,1,1.0,35.0,1.0,16.0,4.0,1253568 -3106922,1630214987,4,22,11,2,1630088747,2,1.0,35.0,1.0,-9.0,4.0,1253568 -3106923,1630214983,1,22,11,3,1630088747,2,1.0,25.0,4.0,15.0,4.0,1253568 -3106924,1630214911,1,22,0,1,1630088748,2,1.0,45.0,4.0,-9.0,4.0,1253569 -3106925,1630214914,1,24,12,2,1630088748,2,1.0,50.0,1.0,-9.0,4.0,1253569 -3106926,1630214917,1,21,12,3,1630088748,2,1.0,35.0,3.0,-9.0,4.0,1253569 -3106927,1630214912,1,22,0,1,1630088749,2,1.0,45.0,4.0,-9.0,4.0,1253570 -3106928,1630214915,1,24,12,2,1630088749,2,1.0,50.0,1.0,-9.0,4.0,1253570 -3106929,1630214918,1,21,12,3,1630088749,2,1.0,35.0,3.0,-9.0,4.0,1253570 -3106930,1630214913,1,22,0,1,1630088750,2,1.0,45.0,4.0,-9.0,4.0,1253571 -3106931,1630214916,1,24,12,2,1630088750,2,1.0,50.0,1.0,-9.0,4.0,1253571 -3106932,1630214919,1,21,12,3,1630088750,2,1.0,35.0,3.0,-9.0,4.0,1253571 -3106933,1630214970,1,24,0,1,1630088751,2,1.0,50.0,1.0,-9.0,4.0,1253572 -3106934,1630215143,1,24,0,1,1630088752,1,1.0,40.0,1.0,-9.0,4.0,1253573 -3106935,1630215146,1,24,12,2,1630088752,1,1.0,40.0,1.0,-9.0,4.0,1253573 -3106936,1630215144,1,24,0,1,1630088753,1,1.0,40.0,1.0,-9.0,4.0,1253574 -3106937,1630215147,1,24,12,2,1630088753,1,1.0,40.0,1.0,-9.0,4.0,1253574 -3106938,1630215336,2,23,0,1,1630088754,2,6.0,15.0,4.0,15.0,4.0,1253575 -3106939,1630215377,2,19,0,1,1630088755,1,3.0,-9.0,-9.0,-9.0,4.0,1253576 -3106940,1630215237,1,22,0,1,1630088756,1,6.0,28.0,4.0,16.0,4.0,1253577 -3106941,1630215238,1,22,0,1,1630088757,1,6.0,28.0,4.0,16.0,4.0,1253578 -3106942,1630215119,1,24,0,1,1630088758,1,3.0,20.0,5.0,-9.0,4.0,1253579 -3106943,1630215120,1,24,0,1,1630088759,1,3.0,20.0,5.0,-9.0,4.0,1253580 -3106944,1630215059,1,24,0,1,1630088760,2,6.0,-9.0,-9.0,16.0,4.0,1253581 -3106945,1630215121,1,24,0,1,1630088761,1,3.0,20.0,5.0,-9.0,4.0,1253582 -3106946,1630215345,2,23,0,1,1630088762,2,6.0,-9.0,-9.0,-9.0,4.0,1253583 -3106947,1630215100,1,22,0,1,1630088763,1,3.0,-9.0,-9.0,15.0,4.0,1253584 -3106948,1630215101,1,22,0,1,1630088764,1,3.0,-9.0,-9.0,15.0,4.0,1253585 -3106949,1630215102,1,22,0,1,1630088765,1,3.0,-9.0,-9.0,15.0,4.0,1253586 -3106950,1630215153,1,24,0,1,1630088766,1,3.0,50.0,5.0,-9.0,4.0,1253587 -3106951,1630215154,1,24,0,1,1630088767,1,3.0,50.0,5.0,-9.0,4.0,1253588 -3106952,1630215005,1,24,0,1,1630088768,2,6.0,-9.0,-9.0,16.0,4.0,1253589 -3106953,1630215070,1,24,0,1,1630088769,1,6.0,-9.0,-9.0,15.0,4.0,1253590 -3106954,1630215206,1,20,0,1,1630088770,1,6.0,35.0,5.0,15.0,4.0,1253591 -3106955,1630215103,1,22,0,1,1630088771,1,3.0,-9.0,-9.0,15.0,4.0,1253592 -3106956,1630215037,1,24,0,1,1630088772,2,6.0,-9.0,-9.0,16.0,4.0,1253593 -3106957,1630215207,1,20,0,1,1630088773,1,6.0,35.0,5.0,15.0,4.0,1253594 -3106958,1630215071,1,24,0,1,1630088774,1,6.0,-9.0,-9.0,15.0,4.0,1253595 -3106959,1630215208,1,20,0,1,1630088775,1,6.0,35.0,5.0,15.0,4.0,1253596 -3106960,1630215209,1,20,0,1,1630088776,1,6.0,35.0,5.0,15.0,4.0,1253597 -3106961,1630215155,1,24,0,1,1630088777,1,3.0,50.0,5.0,-9.0,4.0,1253598 -3106962,1630215118,1,24,0,1,1630088778,1,6.0,24.0,3.0,16.0,4.0,1253599 -3106963,1630215156,1,24,0,1,1630088779,1,3.0,50.0,5.0,-9.0,4.0,1253600 -3106964,1630215157,1,24,0,1,1630088780,1,3.0,50.0,5.0,-9.0,4.0,1253601 -3106965,1630215104,1,22,0,1,1630088781,1,3.0,-9.0,-9.0,15.0,4.0,1253602 -3106966,1630215158,1,24,0,1,1630088782,1,3.0,50.0,5.0,-9.0,4.0,1253603 -3106967,1630215105,1,22,0,1,1630088783,1,3.0,-9.0,-9.0,15.0,4.0,1253604 -3106968,1630215210,1,20,0,1,1630088784,1,6.0,35.0,5.0,15.0,4.0,1253605 -3106969,1630215434,4,23,0,1,1630088785,2,6.0,-9.0,-9.0,16.0,4.0,1253606 -3106970,1630215437,4,24,15,2,1630088785,2,6.0,-9.0,-9.0,16.0,4.0,1253606 -3106971,1630215431,4,24,15,3,1630088785,2,6.0,-9.0,-9.0,16.0,4.0,1253606 -3106972,1630215435,4,23,0,1,1630088786,2,6.0,-9.0,-9.0,16.0,4.0,1253607 -3106973,1630215438,4,24,15,2,1630088786,2,6.0,-9.0,-9.0,16.0,4.0,1253607 -3106974,1630215432,4,24,15,3,1630088786,2,6.0,-9.0,-9.0,16.0,4.0,1253607 -3106975,1630215436,4,23,0,1,1630088787,2,6.0,-9.0,-9.0,16.0,4.0,1253608 -3106976,1630215439,4,24,15,2,1630088787,2,6.0,-9.0,-9.0,16.0,4.0,1253608 -3106977,1630215433,4,24,15,3,1630088787,2,6.0,-9.0,-9.0,16.0,4.0,1253608 -3106978,1630215020,1,24,0,1,1630088788,2,6.0,8.0,6.0,16.0,4.0,1253609 -3106979,1630215022,4,24,12,2,1630088788,2,6.0,-9.0,-9.0,16.0,4.0,1253609 -3106980,1630215410,2,19,0,1,1630088789,1,1.0,50.0,1.0,-9.0,4.0,1253610 -3106981,1630215282,2,23,0,1,1630088790,2,1.0,32.0,1.0,-9.0,4.0,1253611 -3106982,1630215097,1,20,0,1,1630088791,1,1.0,40.0,5.0,15.0,4.0,1253612 -3106983,1630215098,1,20,0,1,1630088792,1,1.0,40.0,5.0,15.0,4.0,1253613 -3106984,1630215220,1,22,0,1,1630088793,1,1.0,15.0,1.0,15.0,4.0,1253614 -3106985,1630215099,1,20,0,1,1630088794,1,1.0,40.0,5.0,15.0,4.0,1253615 -3106986,1630215221,1,22,0,1,1630088795,1,1.0,15.0,1.0,15.0,4.0,1253616 -3106987,1630215222,1,22,0,1,1630088796,1,1.0,15.0,1.0,15.0,4.0,1253617 -3106988,1630215463,4,22,0,1,1630088797,2,1.0,25.0,1.0,15.0,4.0,1253618 -3106989,1630215464,4,22,0,1,1630088798,2,1.0,25.0,1.0,15.0,4.0,1253619 -3106990,1630215465,4,22,0,1,1630088799,2,1.0,25.0,1.0,15.0,4.0,1253620 -3106991,1630215466,4,22,0,1,1630088800,2,1.0,25.0,1.0,15.0,4.0,1253621 -3106992,1630215467,4,22,0,1,1630088801,2,1.0,25.0,1.0,15.0,4.0,1253622 -3106993,1630215468,4,22,0,1,1630088802,2,1.0,25.0,1.0,15.0,4.0,1253623 -3106994,1630215469,4,22,0,1,1630088803,2,1.0,25.0,1.0,15.0,4.0,1253624 -3106995,1630215470,4,22,0,1,1630088804,2,1.0,25.0,1.0,15.0,4.0,1253625 -3106996,1630215471,4,22,0,1,1630088805,2,1.0,25.0,1.0,15.0,4.0,1253626 -3106997,1630215472,4,22,0,1,1630088806,2,1.0,25.0,1.0,15.0,4.0,1253627 -3106998,1630215473,4,22,0,1,1630088807,2,1.0,25.0,1.0,15.0,4.0,1253628 -3106999,1630215474,4,22,0,1,1630088808,2,1.0,25.0,1.0,15.0,4.0,1253629 -3107000,1630215475,4,22,0,1,1630088809,2,1.0,25.0,1.0,15.0,4.0,1253630 -3107001,1630215476,4,22,0,1,1630088810,2,1.0,25.0,1.0,15.0,4.0,1253631 -3107002,1630215477,4,22,0,1,1630088811,2,1.0,25.0,1.0,15.0,4.0,1253632 -3107003,1630215478,4,22,0,1,1630088812,2,1.0,25.0,1.0,15.0,4.0,1253633 -3107004,1630215359,2,24,0,1,1630088813,1,1.0,40.0,1.0,-9.0,4.0,1253634 -3107005,1630215299,2,22,0,1,1630088814,2,1.0,40.0,1.0,-9.0,4.0,1253635 -3107006,1630215133,1,24,0,1,1630088815,1,2.0,10.0,1.0,15.0,4.0,1253636 -3107007,1630215166,1,23,0,1,1630088816,1,1.0,40.0,3.0,15.0,4.0,1253637 -3107008,1630215027,1,21,0,1,1630088817,2,1.0,25.0,1.0,-9.0,4.0,1253638 -3107009,1630215134,1,24,0,1,1630088818,1,2.0,10.0,1.0,15.0,4.0,1253639 -3107010,1630215167,1,23,0,1,1630088819,1,1.0,40.0,3.0,15.0,4.0,1253640 -3107011,1630215028,1,21,0,1,1630088820,2,1.0,25.0,1.0,-9.0,4.0,1253641 -3107012,1630215076,1,22,0,1,1630088821,1,1.0,40.0,3.0,-9.0,4.0,1253642 -3107013,1630215168,1,23,0,1,1630088822,1,1.0,40.0,3.0,15.0,4.0,1253643 -3107014,1630215135,1,24,0,1,1630088823,1,2.0,10.0,1.0,15.0,4.0,1253644 -3107015,1630215169,1,23,0,1,1630088824,1,1.0,40.0,3.0,15.0,4.0,1253645 -3107016,1630215136,1,24,0,1,1630088825,1,2.0,10.0,1.0,15.0,4.0,1253646 -3107017,1630215077,1,22,0,1,1630088826,1,1.0,40.0,3.0,-9.0,4.0,1253647 -3107018,1630215078,1,22,0,1,1630088827,1,1.0,40.0,3.0,-9.0,4.0,1253648 -3107019,1630215137,1,24,0,1,1630088828,1,2.0,10.0,1.0,15.0,4.0,1253649 -3107020,1630215007,1,24,0,1,1630088829,2,1.0,24.0,1.0,-9.0,4.0,1253650 -3107021,1630215170,1,23,0,1,1630088830,1,1.0,40.0,3.0,15.0,4.0,1253651 -3107022,1630215171,1,23,0,1,1630088831,1,1.0,40.0,3.0,15.0,4.0,1253652 -3107023,1630215172,1,23,0,1,1630088832,1,1.0,40.0,3.0,15.0,4.0,1253653 -3107024,1630215029,1,21,0,1,1630088833,2,1.0,25.0,1.0,-9.0,4.0,1253654 -3107025,1630215138,1,24,0,1,1630088834,1,2.0,10.0,1.0,15.0,4.0,1253655 -3107026,1630215341,2,23,0,1,1630088835,2,1.0,40.0,1.0,15.0,4.0,1253656 -3107027,1630215106,1,19,0,1,1630088836,1,6.0,-9.0,-9.0,15.0,4.0,1253657 -3107028,1630215107,1,19,12,2,1630088836,1,1.0,30.0,1.0,15.0,4.0,1253657 -3107029,1630215108,1,19,12,3,1630088836,1,6.0,-9.0,-9.0,15.0,4.0,1253657 -3107030,1630215085,1,20,0,1,1630088837,1,1.0,5.0,3.0,15.0,4.0,1253658 -3107031,1630215086,1,23,12,2,1630088837,1,6.0,40.0,6.0,15.0,4.0,1253658 -3107032,1630215087,1,20,12,3,1630088837,1,6.0,40.0,6.0,15.0,4.0,1253658 -3107033,1630215240,1,21,0,1,1630088838,1,1.0,20.0,3.0,15.0,4.0,1253659 -3107034,1630215241,1,22,12,2,1630088838,1,6.0,-9.0,-9.0,15.0,4.0,1253659 -3107035,1630215242,1,21,12,3,1630088838,1,6.0,20.0,5.0,15.0,4.0,1253659 -3107036,1630214971,1,20,0,1,1630088839,2,1.0,30.0,3.0,15.0,4.0,1253660 -3107037,1630214973,1,21,12,2,1630088839,2,6.0,30.0,4.0,15.0,4.0,1253660 -3107038,1630214953,1,24,0,1,1630088840,1,1.0,35.0,1.0,-9.0,4.0,1253661 -3107039,1630214952,1,23,13,2,1630088840,2,6.0,20.0,4.0,16.0,4.0,1253661 -3107040,1630215042,1,22,0,1,1630088841,2,1.0,20.0,1.0,15.0,4.0,1253662 -3107041,1630215047,1,18,5,2,1630088841,2,1.0,40.0,6.0,15.0,4.0,1253662 -3107042,1630215052,1,23,12,3,1630088841,2,1.0,15.0,3.0,15.0,4.0,1253662 -3107043,1630215043,1,22,0,1,1630088842,2,1.0,20.0,1.0,15.0,4.0,1253663 -3107044,1630215048,1,18,5,2,1630088842,2,1.0,40.0,6.0,15.0,4.0,1253663 -3107045,1630215053,1,23,12,3,1630088842,2,1.0,15.0,3.0,15.0,4.0,1253663 -3107046,1630215044,1,22,0,1,1630088843,2,1.0,20.0,1.0,15.0,4.0,1253664 -3107047,1630215049,1,18,5,2,1630088843,2,1.0,40.0,6.0,15.0,4.0,1253664 -3107048,1630215054,1,23,12,3,1630088843,2,1.0,15.0,3.0,15.0,4.0,1253664 -3107049,1630215045,1,22,0,1,1630088844,2,1.0,20.0,1.0,15.0,4.0,1253665 -3107050,1630215050,1,18,5,2,1630088844,2,1.0,40.0,6.0,15.0,4.0,1253665 -3107051,1630215055,1,23,12,3,1630088844,2,1.0,15.0,3.0,15.0,4.0,1253665 -3107052,1630215046,1,22,0,1,1630088845,2,1.0,20.0,1.0,15.0,4.0,1253666 -3107053,1630215051,1,18,5,2,1630088845,2,1.0,40.0,6.0,15.0,4.0,1253666 -3107054,1630215056,1,23,12,3,1630088845,2,1.0,15.0,3.0,15.0,4.0,1253666 -3107055,1630214931,1,24,0,1,1630088846,2,1.0,20.0,3.0,15.0,4.0,1253667 -3107056,1630214939,1,29,1,2,1630088846,1,1.0,31.0,3.0,15.0,4.0,1253667 -3107057,1630214932,1,24,0,1,1630088847,2,1.0,20.0,3.0,15.0,4.0,1253668 -3107058,1630214940,1,29,1,2,1630088847,1,1.0,31.0,3.0,15.0,4.0,1253668 -3107059,1630214901,1,22,0,1,1630088848,2,1.0,30.0,4.0,-9.0,4.0,1253669 -3107060,1630214904,1,27,13,2,1630088848,1,1.0,40.0,3.0,-9.0,4.0,1253669 -3107061,1630214933,1,24,0,1,1630088849,2,1.0,20.0,3.0,15.0,4.0,1253670 -3107062,1630214941,1,29,1,2,1630088849,1,1.0,31.0,3.0,15.0,4.0,1253670 -3107063,1630214934,1,24,0,1,1630088850,2,1.0,20.0,3.0,15.0,4.0,1253671 -3107064,1630214942,1,29,1,2,1630088850,1,1.0,31.0,3.0,15.0,4.0,1253671 -3107065,1630214935,1,24,0,1,1630088851,2,1.0,20.0,3.0,15.0,4.0,1253672 -3107066,1630214943,1,29,1,2,1630088851,1,1.0,31.0,3.0,15.0,4.0,1253672 -3107067,1630214936,1,24,0,1,1630088852,2,1.0,20.0,3.0,15.0,4.0,1253673 -3107068,1630214944,1,29,1,2,1630088852,1,1.0,31.0,3.0,15.0,4.0,1253673 -3107069,1630214937,1,24,0,1,1630088853,2,1.0,20.0,3.0,15.0,4.0,1253674 -3107070,1630214945,1,29,1,2,1630088853,1,1.0,31.0,3.0,15.0,4.0,1253674 -3107071,1630214902,1,22,0,1,1630088854,2,1.0,30.0,4.0,-9.0,4.0,1253675 -3107072,1630214905,1,27,13,2,1630088854,1,1.0,40.0,3.0,-9.0,4.0,1253675 -3107073,1630214938,1,24,0,1,1630088855,2,1.0,20.0,3.0,15.0,4.0,1253676 -3107074,1630214946,1,29,1,2,1630088855,1,1.0,31.0,3.0,15.0,4.0,1253676 -3107075,1630215313,2,21,0,1,1630088856,1,1.0,40.0,4.0,-9.0,4.0,1253677 -3107076,1630215312,2,21,15,2,1630088856,2,1.0,40.0,1.0,15.0,4.0,1253677 -3107077,1630214989,1,23,0,1,1630088857,2,1.0,60.0,4.0,16.0,4.0,1253678 -3107078,1630214995,1,22,12,2,1630088857,2,1.0,40.0,1.0,-9.0,4.0,1253678 -3107079,1630214990,1,23,0,1,1630088858,2,1.0,60.0,4.0,16.0,4.0,1253679 -3107080,1630214996,1,22,12,2,1630088858,2,1.0,40.0,1.0,-9.0,4.0,1253679 -3107081,1630214991,1,23,0,1,1630088859,2,1.0,60.0,4.0,16.0,4.0,1253680 -3107082,1630214997,1,22,12,2,1630088859,2,1.0,40.0,1.0,-9.0,4.0,1253680 -3107083,1630214992,1,23,0,1,1630088860,2,1.0,60.0,4.0,16.0,4.0,1253681 -3107084,1630214998,1,22,12,2,1630088860,2,1.0,40.0,1.0,-9.0,4.0,1253681 -3107085,1630214993,1,23,0,1,1630088861,2,1.0,60.0,4.0,16.0,4.0,1253682 -3107086,1630214999,1,22,12,2,1630088861,2,1.0,40.0,1.0,-9.0,4.0,1253682 -3107087,1630215280,2,55,0,1,1630088862,2,1.0,38.0,1.0,-9.0,4.0,1253683 -3107088,1630215140,1,62,0,1,1630088863,1,6.0,-9.0,-9.0,-9.0,2.0,1253684 -3107089,1630215448,4,30,0,1,1630088864,2,1.0,44.0,1.0,-9.0,4.0,1253685 -3107090,1630215449,4,34,1,2,1630088864,1,1.0,40.0,2.0,-9.0,4.0,1253685 -3107091,1630215017,1,55,0,1,1630088865,2,6.0,-9.0,-9.0,-9.0,4.0,1253686 -3107092,1630215018,2,63,13,2,1630088865,1,6.0,-9.0,-9.0,-9.0,4.0,1253686 -3107093,1630215324,2,24,0,1,1630088866,2,1.0,35.0,1.0,-9.0,4.0,1253687 -3107094,1630215455,4,30,0,1,1630088867,1,1.0,60.0,1.0,16.0,4.0,1253688 -3107095,1630215452,4,33,1,2,1630088867,2,1.0,60.0,1.0,16.0,4.0,1253688 -3107096,1630214860,2,65,0,1,1630088868,2,6.0,-9.0,-9.0,-9.0,4.0,1253689 -3107097,1630214994,1,23,0,1,1630088869,2,1.0,60.0,4.0,16.0,4.0,1253690 -3107098,1630215000,1,22,12,2,1630088869,2,1.0,40.0,1.0,-9.0,4.0,1253690 -3107099,1630215365,2,60,0,1,1630088870,1,1.0,40.0,1.0,-9.0,4.0,1253691 -3107100,1630214977,1,24,0,1,1630088871,2,1.0,40.0,1.0,-9.0,4.0,1253692 -3107101,1630214978,1,24,12,2,1630088871,2,1.0,20.0,1.0,16.0,4.0,1253692 -3107102,1630214979,1,24,12,3,1630088871,2,1.0,40.0,1.0,15.0,4.0,1253692 -3107103,1630214980,1,22,12,4,1630088871,2,3.0,-9.0,-9.0,16.0,4.0,1253692 -3107104,1630214981,1,21,12,5,1630088871,2,1.0,40.0,1.0,15.0,4.0,1253692 -3107105,1630215187,1,26,0,1,1630088872,1,1.0,45.0,1.0,-9.0,4.0,1253693 -3107106,1630215190,4,25,13,2,1630088872,2,1.0,35.0,1.0,-9.0,4.0,1253693 -3107107,1630215145,1,24,0,1,1630088873,1,1.0,40.0,1.0,-9.0,4.0,1253694 -3107108,1630215148,1,24,12,2,1630088873,1,1.0,40.0,1.0,-9.0,4.0,1253694 -3107109,1630214857,2,67,0,1,1630088874,2,1.0,8.0,1.0,-9.0,4.0,1253695 -3107110,1630215398,2,23,0,1,1630088875,1,1.0,40.0,3.0,-9.0,4.0,1253696 -3107111,1630215162,1,55,0,1,1630088876,1,1.0,50.0,1.0,-9.0,4.0,1253697 -3107112,1630215445,1,68,0,1,1630088877,1,1.0,60.0,1.0,-9.0,4.0,1253698 -3107113,1630215331,2,45,0,1,1630088878,2,1.0,40.0,1.0,-9.0,4.0,1253699 -3107114,1630214884,3,69,0,1,1630088879,2,6.0,-9.0,-9.0,-9.0,4.0,1253700 -3107115,1630215193,1,57,0,1,1630088880,1,1.0,60.0,1.0,-9.0,4.0,1253701 -3107116,1630215012,1,33,0,1,1630088881,2,1.0,40.0,1.0,-9.0,4.0,1253702 -3107117,1630215013,1,28,15,2,1630088881,2,1.0,30.0,1.0,16.0,4.0,1253702 -3107118,1630215015,1,28,15,3,1630088881,1,1.0,65.0,1.0,-9.0,4.0,1253702 -3107119,1630215016,1,25,15,4,1630088881,1,1.0,50.0,1.0,-9.0,4.0,1253702 -3107120,1630215014,1,24,15,5,1630088881,2,1.0,15.0,4.0,16.0,4.0,1253702 -3107121,1630215040,1,20,0,1,1630088882,2,6.0,15.0,6.0,15.0,4.0,1253703 -3107122,1630215041,1,19,12,2,1630088882,2,1.0,30.0,1.0,15.0,4.0,1253703 -3107123,1630215446,4,26,0,1,1630088883,2,6.0,-9.0,-9.0,-9.0,4.0,1253704 -3107124,1630215447,4,26,1,2,1630088883,1,1.0,40.0,1.0,16.0,4.0,1253704 -3107125,1630215290,2,53,0,1,1630088884,2,1.0,40.0,1.0,-9.0,4.0,1253705 -3107126,1630215291,2,46,1,2,1630088884,1,1.0,40.0,1.0,-9.0,4.0,1253705 -3107127,1630214956,1,22,0,1,1630088885,2,2.0,40.0,1.0,16.0,4.0,1253706 -3107128,1630214957,1,27,13,2,1630088885,1,1.0,60.0,1.0,-9.0,4.0,1253706 -3107129,1630215558,4,26,0,1,1630088886,1,6.0,-9.0,-9.0,16.0,4.0,1253707 -3107130,1630215074,1,42,0,1,1630088887,1,1.0,40.0,1.0,-9.0,2.0,1253708 -3107131,1630215429,2,71,0,1,1630088888,1,6.0,-9.0,-9.0,-9.0,2.0,1253709 -3107132,1630215021,1,24,0,1,1630088889,2,6.0,8.0,6.0,16.0,4.0,1253710 -3107133,1630215023,4,24,12,2,1630088889,2,6.0,-9.0,-9.0,16.0,4.0,1253710 -3107134,1630215126,4,28,0,1,1630088890,1,6.0,-9.0,-9.0,16.0,4.0,1253711 -3107135,1630215124,1,28,12,2,1630088890,1,6.0,-9.0,-9.0,16.0,4.0,1253711 -3107136,1630215125,1,25,12,3,1630088890,1,6.0,-9.0,-9.0,16.0,4.0,1253711 -3107137,1630215567,4,51,0,1,1630088891,1,1.0,70.0,1.0,16.0,4.0,1253712 -3107138,1630215035,1,60,0,1,1630088892,1,1.0,70.0,5.0,-9.0,4.0,1253713 -3107139,1630215034,1,60,1,2,1630088892,2,6.0,-9.0,-9.0,-9.0,4.0,1253713 -3107140,1630215415,2,23,0,1,1630088893,1,1.0,40.0,1.0,-9.0,4.0,1253714 -3107141,1630215227,1,22,0,1,1630088894,1,6.0,-9.0,-9.0,15.0,4.0,1253715 -3107142,1630215228,1,24,11,2,1630088894,1,3.0,-9.0,-9.0,15.0,4.0,1253715 -3107143,1630215058,1,27,0,1,1630088895,1,1.0,45.0,1.0,-9.0,4.0,1253716 -3107144,1630215057,1,28,1,2,1630088895,2,1.0,52.0,4.0,-9.0,4.0,1253716 -3107145,1630215159,1,24,0,1,1630088896,1,3.0,50.0,5.0,-9.0,4.0,1253717 -3107146,1630215150,3,54,0,1,1630088897,1,1.0,40.0,1.0,-9.0,4.0,1253718 -3107147,1630215482,4,27,0,1,1630088898,1,1.0,80.0,1.0,-9.0,4.0,1253719 -3107148,1630215480,4,26,1,2,1630088898,2,1.0,80.0,3.0,-9.0,4.0,1253719 -3107149,1630215481,4,19,5,3,1630088898,2,6.0,-9.0,-9.0,15.0,4.0,1253719 -3107150,1630215244,1,29,0,1,1630088899,1,1.0,35.0,1.0,-9.0,4.0,1253720 -3107151,1630215259,2,58,0,1,1630088900,2,1.0,40.0,1.0,-9.0,4.0,1253721 -3107152,1630215260,2,21,2,2,1630088900,1,1.0,32.0,2.0,-9.0,4.0,1253721 -3107153,1630215261,2,58,13,3,1630088900,1,6.0,-9.0,-9.0,-9.0,2.0,1253721 -3107154,1630215337,2,26,0,1,1630088901,2,1.0,30.0,1.0,-9.0,4.0,1253722 -3107155,1630215287,2,49,0,1,1630088902,2,1.0,48.0,1.0,-9.0,4.0,1253723 -3107156,1630215288,2,26,2,2,1630088902,1,1.0,3.0,6.0,-9.0,4.0,1253723 -3107157,1630214955,3,61,0,1,1630088903,2,6.0,-9.0,-9.0,-9.0,4.0,1253724 -3107158,1630215427,2,66,0,1,1630088904,1,1.0,30.0,1.0,-9.0,2.0,1253725 -3107159,1630215067,1,24,0,1,1630088905,1,1.0,45.0,1.0,-9.0,4.0,1253726 -3107160,1630215251,2,26,0,1,1630088906,2,6.0,-9.0,-9.0,-9.0,4.0,1253727 -3107161,1630215419,2,66,0,1,1630088907,1,1.0,35.0,1.0,-9.0,4.0,1253728 -3107162,1630215197,1,38,0,1,1630088908,1,1.0,40.0,1.0,-9.0,4.0,1253729 -3107163,1630215199,4,38,1,2,1630088908,2,1.0,40.0,1.0,-9.0,4.0,1253729 -3107164,1630215269,2,57,0,1,1630088909,2,6.0,-9.0,-9.0,-9.0,4.0,1253730 -3107165,1630215270,2,30,2,2,1630088909,1,6.0,-9.0,-9.0,-9.0,4.0,1253730 -3107166,1630215528,4,27,0,1,1630088910,1,1.0,40.0,1.0,-9.0,4.0,1253731 -3107167,1630215507,4,25,0,1,1630088911,1,1.0,70.0,5.0,-9.0,2.0,1253732 -3107168,1630215258,2,59,0,1,1630088912,2,1.0,40.0,4.0,-9.0,4.0,1253733 -3107169,1630215129,1,40,0,1,1630088913,1,1.0,50.0,1.0,-9.0,4.0,1253734 -3107170,1630215389,2,62,0,1,1630088914,1,1.0,45.0,1.0,-9.0,4.0,1253735 -3107171,1630215264,2,41,0,1,1630088915,2,6.0,-9.0,-9.0,-9.0,2.0,1253736 -3107172,1630215123,1,57,0,1,1630088916,1,1.0,55.0,1.0,-9.0,4.0,1253737 -3107173,1630215026,1,25,0,1,1630088917,1,1.0,45.0,1.0,-9.0,4.0,1253738 -3107174,1630215025,1,24,13,2,1630088917,2,1.0,40.0,1.0,-9.0,4.0,1253738 -3107175,1630215112,1,24,0,1,1630088918,1,3.0,47.0,3.0,15.0,4.0,1253739 -3107176,1630215387,4,33,0,1,1630088919,2,1.0,55.0,1.0,-9.0,4.0,1253740 -3107177,1630215383,2,34,13,2,1630088919,1,1.0,40.0,4.0,16.0,4.0,1253740 -3107178,1630215006,1,33,0,1,1630088920,2,1.0,50.0,1.0,-9.0,4.0,1253741 -3107179,1630214866,2,81,0,1,1630088921,2,6.0,-9.0,-9.0,-9.0,4.0,1253742 -3107180,1630214867,2,57,2,2,1630088921,1,6.0,-9.0,-9.0,-9.0,4.0,1253742 -3107181,1630214898,1,82,0,1,1630088922,1,1.0,48.0,1.0,-9.0,2.0,1253743 -3107182,1630214896,1,76,1,2,1630088922,2,1.0,48.0,1.0,-9.0,4.0,1253743 -3107183,1630215203,1,63,0,1,1630088923,1,1.0,40.0,1.0,-9.0,4.0,1253744 -3107184,1630215316,2,45,0,1,1630088924,2,1.0,45.0,1.0,15.0,4.0,1253745 -3107185,1630215317,2,18,2,2,1630088924,1,1.0,40.0,1.0,-9.0,4.0,1253745 -3107186,1630215271,2,45,0,1,1630088925,2,1.0,20.0,1.0,-9.0,4.0,1253746 -3107187,1630215272,2,22,2,2,1630088925,1,3.0,40.0,6.0,-9.0,4.0,1253746 -3107188,1630215032,1,21,0,1,1630088926,2,6.0,10.0,5.0,16.0,4.0,1253747 -3107189,1630215033,1,20,12,2,1630088926,2,6.0,20.0,4.0,15.0,4.0,1253747 -3107190,1630214972,1,20,0,1,1630088927,2,1.0,30.0,3.0,15.0,4.0,1253748 -3107191,1630214974,1,21,12,2,1630088927,2,6.0,30.0,4.0,15.0,4.0,1253748 -3107192,1630215559,4,26,0,1,1630088928,1,6.0,36.0,5.0,-9.0,4.0,1253749 -3107193,1630215560,4,25,12,2,1630088928,1,6.0,-9.0,-9.0,-9.0,4.0,1253749 -3107194,1630215084,1,39,0,1,1630088929,1,6.0,8.0,6.0,16.0,4.0,1253750 -3107195,1630214893,1,72,0,1,1630088930,2,1.0,15.0,3.0,-9.0,4.0,1253751 -3107196,1630215131,1,26,0,1,1630088931,1,3.0,40.0,2.0,-9.0,4.0,1253752 -3107197,1630215132,1,22,12,2,1630088931,1,1.0,40.0,5.0,-9.0,4.0,1253752 -3107198,1630215309,2,59,0,1,1630088932,2,1.0,31.0,4.0,-9.0,4.0,1253753 -3107199,1630215311,2,41,2,2,1630088932,1,3.0,-9.0,-9.0,-9.0,4.0,1253753 -3107200,1630215310,2,21,7,3,1630088932,2,1.0,38.0,5.0,-9.0,4.0,1253753 -3107201,1630215479,4,22,0,1,1630088933,2,1.0,25.0,1.0,15.0,4.0,1253754 -3107202,1630215300,2,58,0,1,1630088934,2,1.0,40.0,1.0,-9.0,4.0,1253755 -3107203,1630215301,2,26,2,2,1630088934,1,3.0,-9.0,-9.0,-9.0,4.0,1253755 -3107204,1630215009,1,62,0,1,1630088935,1,1.0,20.0,6.0,-9.0,2.0,1253756 -3107205,1630215008,1,51,13,2,1630088935,2,6.0,-9.0,-9.0,-9.0,4.0,1253756 -3107206,1630215011,1,26,0,1,1630088936,2,1.0,40.0,1.0,-9.0,4.0,1253757 -3107207,1630215418,2,80,0,1,1630088937,1,6.0,-9.0,-9.0,-9.0,4.0,1253758 -3107208,1630215232,1,53,0,1,1630088938,1,6.0,8.0,6.0,-9.0,4.0,1253759 -3107209,1630215314,2,52,0,1,1630088939,2,1.0,8.0,6.0,-9.0,4.0,1253760 -3107210,1630215315,2,60,15,2,1630088939,1,6.0,-9.0,-9.0,-9.0,4.0,1253760 -3107211,1630214927,1,24,0,1,1630088940,2,1.0,40.0,1.0,-9.0,4.0,1253761 -3107212,1630214928,1,26,1,2,1630088940,1,6.0,40.0,6.0,16.0,4.0,1253761 -3107213,1630215030,1,21,0,1,1630088941,2,1.0,25.0,1.0,-9.0,4.0,1253762 -3107214,1630214872,2,65,0,1,1630088942,2,6.0,-9.0,-9.0,-9.0,4.0,1253763 -3107215,1630215127,3,27,0,1,1630088943,1,1.0,70.0,1.0,-9.0,4.0,1253764 -3107216,1630215128,3,27,12,2,1630088943,1,1.0,70.0,1.0,-9.0,4.0,1253764 -3107217,1630215274,2,56,0,1,1630088944,2,1.0,40.0,1.0,-9.0,4.0,1253765 -3107218,1630215069,1,63,0,1,1630088945,1,1.0,92.0,1.0,-9.0,4.0,1253766 -3107219,1630215552,4,23,0,1,1630088946,1,1.0,80.0,1.0,-9.0,4.0,1253767 -3107220,1630215239,1,22,0,1,1630088947,1,6.0,28.0,4.0,16.0,4.0,1253768 -3107221,1630215293,2,54,0,1,1630088948,1,1.0,40.0,3.0,-9.0,2.0,1253769 -3107222,1630215292,2,49,1,2,1630088948,2,6.0,-9.0,-9.0,-9.0,4.0,1253769 -3107223,1630214908,1,49,0,1,1630088949,1,1.0,80.0,1.0,-9.0,4.0,1253770 -3107224,1630214907,1,40,1,2,1630088949,2,3.0,-9.0,-9.0,-9.0,4.0,1253770 -3107225,1630214965,1,59,0,1,1630088950,1,1.0,48.0,1.0,-9.0,4.0,1253771 -3107226,1630214961,1,59,1,2,1630088950,2,1.0,45.0,1.0,-9.0,4.0,1253771 -3107227,1630215245,2,57,0,1,1630088951,2,6.0,-9.0,-9.0,-9.0,4.0,1253772 -3107228,1630215247,2,23,2,2,1630088951,1,6.0,-9.0,-9.0,14.0,4.0,1253772 -3107229,1630215246,2,22,2,3,1630088951,2,6.0,20.0,6.0,-9.0,4.0,1253772 -3107230,1630215408,2,57,0,1,1630088952,1,6.0,-9.0,-9.0,-9.0,2.0,1253773 -3107231,1630215378,2,47,0,1,1630088953,1,1.0,32.0,1.0,-9.0,4.0,1253774 -3107232,1630215284,2,26,0,1,1630088954,2,1.0,40.0,1.0,-9.0,4.0,1253775 -3107233,1630214879,2,81,0,1,1630088955,2,6.0,-9.0,-9.0,-9.0,4.0,1253776 -3107234,1630214880,2,55,2,2,1630088955,2,6.0,-9.0,-9.0,-9.0,2.0,1253776 -3107235,1630215004,1,27,0,1,1630088956,2,6.0,37.0,5.0,16.0,4.0,1253777 -3107236,1630214903,1,22,0,1,1630088957,2,1.0,30.0,4.0,-9.0,4.0,1253778 -3107237,1630214906,1,27,13,2,1630088957,1,1.0,40.0,3.0,-9.0,4.0,1253778 -3107238,1630215505,4,29,0,1,1630088958,1,1.0,20.0,1.0,16.0,4.0,1253779 -3107239,1630215332,2,52,0,1,1630088959,2,2.0,40.0,3.0,-9.0,4.0,1253780 -3107240,1630215333,2,19,12,2,1630088959,2,1.0,40.0,1.0,15.0,4.0,1253780 -3107241,1630214926,1,27,0,1,1630088960,1,1.0,40.0,1.0,16.0,4.0,1253781 -3107242,1630214923,1,29,15,2,1630088960,2,1.0,50.0,1.0,-9.0,4.0,1253781 -3107243,1630215149,1,40,0,1,1630088961,1,1.0,43.0,1.0,-9.0,4.0,1253782 -3107244,1630214909,1,19,0,1,1630088962,2,1.0,55.0,4.0,-9.0,4.0,1253783 -3107245,1630214910,1,0,2,2,1630088962,2,-9.0,-9.0,-9.0,-9.0,-9.0,1253783 -3107246,1630214929,1,51,0,1,1630088963,2,6.0,-9.0,-9.0,-9.0,4.0,1253784 -3107247,1630214930,1,44,12,2,1630088963,1,3.0,15.0,6.0,-9.0,4.0,1253784 -3107248,1630215318,2,58,0,1,1630088964,2,6.0,-9.0,-9.0,-9.0,3.0,1253785 -3107249,1630215319,2,21,2,2,1630088964,2,1.0,30.0,3.0,15.0,4.0,1253785 -3107250,1630215320,2,24,15,3,1630088964,1,6.0,20.0,6.0,-9.0,4.0,1253785 -3107251,1630216322,1,42,0,1,1630088965,1,1.0,50.0,1.0,-9.0,4.0,1253786 -3107252,1630216345,1,28,0,1,1630088966,1,1.0,60.0,1.0,16.0,4.0,1253787 -3107253,1630216228,1,30,0,1,1630088967,1,1.0,55.0,1.0,-9.0,4.0,1253788 -3107254,1630216323,1,42,0,1,1630088968,1,1.0,50.0,1.0,-9.0,4.0,1253789 -3107255,1630215613,1,36,0,1,1630088969,2,1.0,40.0,1.0,-9.0,4.0,1253790 -3107256,1630215616,1,44,1,2,1630088969,1,1.0,40.0,1.0,-9.0,4.0,1253790 -3107257,1630215619,1,2,2,3,1630088969,2,-9.0,-9.0,-9.0,-9.0,-9.0,1253790 -3107258,1630215614,1,36,0,1,1630088970,2,1.0,40.0,1.0,-9.0,4.0,1253791 -3107259,1630215617,1,44,1,2,1630088970,1,1.0,40.0,1.0,-9.0,4.0,1253791 -3107260,1630215620,1,2,2,3,1630088970,2,-9.0,-9.0,-9.0,-9.0,-9.0,1253791 -3107261,1630215615,1,36,0,1,1630088971,2,1.0,40.0,1.0,-9.0,4.0,1253792 -3107262,1630215618,1,44,1,2,1630088971,1,1.0,40.0,1.0,-9.0,4.0,1253792 -3107263,1630215621,1,2,2,3,1630088971,2,-9.0,-9.0,-9.0,-9.0,-9.0,1253792 -3107264,1630216232,3,40,0,1,1630088972,1,1.0,55.0,1.0,-9.0,4.0,1253793 -3107265,1630216236,2,41,11,2,1630088972,2,1.0,50.0,1.0,16.0,4.0,1253793 -3107266,1630216240,2,5,11,3,1630088972,2,-9.0,-9.0,-9.0,1.0,-9.0,1253793 -3107267,1630216233,3,40,0,1,1630088973,1,1.0,55.0,1.0,-9.0,4.0,1253794 -3107268,1630216237,2,41,11,2,1630088973,2,1.0,50.0,1.0,16.0,4.0,1253794 -3107269,1630216241,2,5,11,3,1630088973,2,-9.0,-9.0,-9.0,1.0,-9.0,1253794 -3107270,1630216234,3,40,0,1,1630088974,1,1.0,55.0,1.0,-9.0,4.0,1253795 -3107271,1630216238,2,41,11,2,1630088974,2,1.0,50.0,1.0,16.0,4.0,1253795 -3107272,1630216242,2,5,11,3,1630088974,2,-9.0,-9.0,-9.0,1.0,-9.0,1253795 -3107273,1630215901,1,37,0,1,1630088975,1,1.0,45.0,1.0,-9.0,4.0,1253796 -3107274,1630215900,1,25,13,2,1630088975,2,1.0,40.0,1.0,-9.0,4.0,1253796 -3107275,1630215759,1,42,0,1,1630088976,2,1.0,55.0,1.0,-9.0,4.0,1253797 -3107276,1630215760,1,39,1,2,1630088976,1,1.0,55.0,1.0,-9.0,4.0,1253797 -3107277,1630215718,1,42,0,1,1630088977,1,1.0,40.0,1.0,-9.0,4.0,1253798 -3107278,1630215717,1,42,1,2,1630088977,2,1.0,40.0,1.0,-9.0,4.0,1253798 -3107279,1630216231,1,34,0,1,1630088978,1,1.0,55.0,1.0,-9.0,4.0,1253799 -3107280,1630215823,1,64,0,1,1630088979,2,6.0,-9.0,-9.0,-9.0,4.0,1253800 -3107281,1630215824,1,67,1,2,1630088979,1,6.0,5.0,4.0,-9.0,4.0,1253800 -3107282,1630216172,1,56,0,1,1630088980,2,1.0,50.0,1.0,-9.0,4.0,1253801 -3107283,1630215724,1,59,0,1,1630088981,2,1.0,50.0,1.0,-9.0,4.0,1253802 -3107284,1630216358,1,45,0,1,1630088982,1,1.0,50.0,1.0,-9.0,4.0,1253803 -3107285,1630216250,3,59,0,1,1630088983,1,1.0,40.0,1.0,-9.0,4.0,1253804 -3107286,1630216251,3,59,0,1,1630088984,1,1.0,40.0,1.0,-9.0,4.0,1253805 -3107287,1630215709,1,53,0,1,1630088985,1,1.0,45.0,1.0,-9.0,4.0,1253806 -3107288,1630215707,1,48,1,2,1630088985,2,1.0,45.0,1.0,-9.0,4.0,1253806 -3107289,1630215711,1,22,2,3,1630088985,1,1.0,40.0,1.0,15.0,4.0,1253806 -3107290,1630216098,4,46,0,1,1630088986,1,1.0,40.0,1.0,-9.0,2.0,1253807 -3107291,1630216096,1,53,1,2,1630088986,2,1.0,20.0,1.0,-9.0,4.0,1253807 -3107292,1630216100,4,17,2,3,1630088986,2,6.0,-9.0,-9.0,13.0,4.0,1253807 -3107293,1630216269,3,52,0,1,1630088987,2,1.0,40.0,1.0,-9.0,4.0,1253808 -3107294,1630216267,1,55,1,2,1630088987,1,1.0,40.0,1.0,-9.0,4.0,1253808 -3107295,1630215925,1,63,0,1,1630088988,1,1.0,47.0,1.0,-9.0,4.0,1253809 -3107296,1630215923,1,59,1,2,1630088988,2,1.0,45.0,1.0,-9.0,4.0,1253809 -3107297,1630216427,1,47,0,1,1630088989,1,6.0,24.0,5.0,-9.0,4.0,1253810 -3107298,1630216830,4,64,0,1,1630088990,1,6.0,-9.0,-9.0,-9.0,2.0,1253811 -3107299,1630216832,4,17,2,2,1630088990,1,6.0,-9.0,-9.0,-9.0,4.0,1253811 -3107300,1630216831,4,14,2,3,1630088990,2,-9.0,-9.0,-9.0,11.0,-9.0,1253811 -3107301,1630215821,3,49,0,1,1630088991,2,1.0,45.0,3.0,-9.0,4.0,1253812 -3107302,1630215947,1,55,0,1,1630088992,2,1.0,42.0,1.0,-9.0,4.0,1253813 -3107303,1630215626,1,62,0,1,1630088993,1,6.0,-9.0,-9.0,-9.0,2.0,1253814 -3107304,1630215622,1,59,1,2,1630088993,2,6.0,-9.0,-9.0,-9.0,4.0,1253814 -3107305,1630215624,1,26,2,3,1630088993,2,1.0,30.0,1.0,-9.0,4.0,1253814 -3107306,1630216611,2,56,0,1,1630088994,2,6.0,-9.0,-9.0,-9.0,4.0,1253815 -3107307,1630216869,4,50,0,1,1630088995,2,6.0,-9.0,-9.0,15.0,4.0,1253816 -3107308,1630215757,1,49,0,1,1630088996,2,6.0,-9.0,-9.0,-9.0,4.0,1253817 -3107309,1630216261,1,54,0,1,1630088997,1,3.0,30.0,6.0,-9.0,4.0,1253818 -3107310,1630215668,3,55,0,1,1630088998,2,6.0,40.0,6.0,-9.0,4.0,1253819 -3107311,1630215670,3,57,1,2,1630088998,1,6.0,-9.0,-9.0,-9.0,4.0,1253819 -3107312,1630215672,2,16,3,3,1630088998,1,6.0,-9.0,-9.0,13.0,-9.0,1253819 -3107313,1630215669,3,55,0,1,1630088999,2,6.0,40.0,6.0,-9.0,4.0,1253820 -3107314,1630215671,3,57,1,2,1630088999,1,6.0,-9.0,-9.0,-9.0,4.0,1253820 -3107315,1630215673,2,16,3,3,1630088999,1,6.0,-9.0,-9.0,13.0,-9.0,1253820 -3107316,1630215586,1,69,0,1,1630089000,2,6.0,-9.0,-9.0,-9.0,4.0,1253821 -3107317,1630215601,1,82,0,1,1630089001,2,6.0,-9.0,-9.0,-9.0,4.0,1253822 -3107318,1630216079,1,24,0,1,1630089002,1,1.0,40.0,1.0,-9.0,4.0,1253823 -3107319,1630216071,1,24,15,2,1630089002,2,1.0,45.0,1.0,-9.0,4.0,1253823 -3107320,1630216073,1,24,15,3,1630089002,2,1.0,10.0,4.0,15.0,4.0,1253823 -3107321,1630216075,1,22,15,4,1630089002,2,1.0,20.0,1.0,15.0,4.0,1253823 -3107322,1630216077,1,22,15,5,1630089002,2,1.0,20.0,1.0,15.0,4.0,1253823 -3107323,1630216080,1,24,0,1,1630089003,1,1.0,40.0,1.0,-9.0,4.0,1253824 -3107324,1630216072,1,24,15,2,1630089003,2,1.0,45.0,1.0,-9.0,4.0,1253824 -3107325,1630216074,1,24,15,3,1630089003,2,1.0,10.0,4.0,15.0,4.0,1253824 -3107326,1630216076,1,22,15,4,1630089003,2,1.0,20.0,1.0,15.0,4.0,1253824 -3107327,1630216078,1,22,15,5,1630089003,2,1.0,20.0,1.0,15.0,4.0,1253824 -3107328,1630216927,1,16,0,1,1630089004,1,6.0,-9.0,-9.0,-9.0,-9.0,1253825 -3107329,1630216928,1,16,0,1,1630089005,1,6.0,-9.0,-9.0,-9.0,-9.0,1253826 -3107330,1630216948,4,23,0,1,1630089006,2,6.0,-9.0,-9.0,16.0,4.0,1253827 -3107331,1630216259,1,24,0,1,1630089007,1,6.0,-9.0,-9.0,16.0,4.0,1253828 -3107332,1630216060,1,24,0,1,1630089008,1,3.0,40.0,5.0,16.0,4.0,1253829 -3107333,1630216058,1,26,13,2,1630089008,2,3.0,25.0,4.0,-9.0,4.0,1253829 -3107334,1630216022,1,33,0,1,1630089009,2,1.0,50.0,1.0,-9.0,4.0,1253830 -3107335,1630216023,1,33,0,1,1630089010,2,1.0,50.0,1.0,-9.0,4.0,1253831 -3107336,1630216024,1,33,0,1,1630089011,2,1.0,50.0,1.0,-9.0,4.0,1253832 -3107337,1630216025,1,33,0,1,1630089012,2,1.0,50.0,1.0,-9.0,4.0,1253833 -3107338,1630216026,1,33,0,1,1630089013,2,1.0,50.0,1.0,-9.0,4.0,1253834 -3107339,1630215769,1,27,0,1,1630089014,1,1.0,50.0,1.0,-9.0,4.0,1253835 -3107340,1630215764,3,28,1,2,1630089014,2,6.0,45.0,4.0,-9.0,4.0,1253835 -3107341,1630215770,1,27,0,1,1630089015,1,1.0,50.0,1.0,-9.0,4.0,1253836 -3107342,1630215765,3,28,1,2,1630089015,2,6.0,45.0,4.0,-9.0,4.0,1253836 -3107343,1630215771,1,27,0,1,1630089016,1,1.0,50.0,1.0,-9.0,4.0,1253837 -3107344,1630215766,3,28,1,2,1630089016,2,6.0,45.0,4.0,-9.0,4.0,1253837 -3107345,1630215772,1,27,0,1,1630089017,1,1.0,50.0,1.0,-9.0,4.0,1253838 -3107346,1630215767,3,28,1,2,1630089017,2,6.0,45.0,4.0,-9.0,4.0,1253838 -3107347,1630216038,1,33,0,1,1630089018,2,1.0,40.0,1.0,-9.0,4.0,1253839 -3107348,1630216041,1,28,15,2,1630089018,2,1.0,30.0,1.0,16.0,4.0,1253839 -3107349,1630216047,1,28,15,3,1630089018,1,1.0,65.0,1.0,-9.0,4.0,1253839 -3107350,1630216050,1,25,15,4,1630089018,1,1.0,50.0,1.0,-9.0,4.0,1253839 -3107351,1630216044,1,24,15,5,1630089018,2,1.0,15.0,4.0,16.0,4.0,1253839 -3107352,1630216039,1,33,0,1,1630089019,2,1.0,40.0,1.0,-9.0,4.0,1253840 -3107353,1630216042,1,28,15,2,1630089019,2,1.0,30.0,1.0,16.0,4.0,1253840 -3107354,1630216048,1,28,15,3,1630089019,1,1.0,65.0,1.0,-9.0,4.0,1253840 -3107355,1630216051,1,25,15,4,1630089019,1,1.0,50.0,1.0,-9.0,4.0,1253840 -3107356,1630216045,1,24,15,5,1630089019,2,1.0,15.0,4.0,16.0,4.0,1253840 -3107357,1630215698,1,43,0,1,1630089020,2,1.0,40.0,1.0,-9.0,4.0,1253841 -3107358,1630215700,4,43,1,2,1630089020,1,1.0,35.0,1.0,-9.0,2.0,1253841 -3107359,1630215702,4,13,2,3,1630089020,2,-9.0,-9.0,-9.0,10.0,-9.0,1253841 -3107360,1630215704,4,10,2,4,1630089020,2,-9.0,-9.0,-9.0,7.0,-9.0,1253841 -3107361,1630215974,1,32,0,1,1630089021,2,1.0,45.0,1.0,-9.0,4.0,1253842 -3107362,1630216002,3,7,2,2,1630089021,1,-9.0,-9.0,-9.0,3.0,-9.0,1253842 -3107363,1630215988,1,37,13,3,1630089021,2,1.0,50.0,1.0,-9.0,4.0,1253842 -3107364,1630215975,1,32,0,1,1630089022,2,1.0,45.0,1.0,-9.0,4.0,1253843 -3107365,1630216003,3,7,2,2,1630089022,1,-9.0,-9.0,-9.0,3.0,-9.0,1253843 -3107366,1630215989,1,37,13,3,1630089022,2,1.0,50.0,1.0,-9.0,4.0,1253843 -3107367,1630215976,1,32,0,1,1630089023,2,1.0,45.0,1.0,-9.0,4.0,1253844 -3107368,1630216004,3,7,2,2,1630089023,1,-9.0,-9.0,-9.0,3.0,-9.0,1253844 -3107369,1630215990,1,37,13,3,1630089023,2,1.0,50.0,1.0,-9.0,4.0,1253844 -3107370,1630215977,1,32,0,1,1630089024,2,1.0,45.0,1.0,-9.0,4.0,1253845 -3107371,1630216005,3,7,2,2,1630089024,1,-9.0,-9.0,-9.0,3.0,-9.0,1253845 -3107372,1630215991,1,37,13,3,1630089024,2,1.0,50.0,1.0,-9.0,4.0,1253845 -3107373,1630215978,1,32,0,1,1630089025,2,1.0,45.0,1.0,-9.0,4.0,1253846 -3107374,1630216006,3,7,2,2,1630089025,1,-9.0,-9.0,-9.0,3.0,-9.0,1253846 -3107375,1630215992,1,37,13,3,1630089025,2,1.0,50.0,1.0,-9.0,4.0,1253846 -3107376,1630215979,1,32,0,1,1630089026,2,1.0,45.0,1.0,-9.0,4.0,1253847 -3107377,1630216007,3,7,2,2,1630089026,1,-9.0,-9.0,-9.0,3.0,-9.0,1253847 -3107378,1630215993,1,37,13,3,1630089026,2,1.0,50.0,1.0,-9.0,4.0,1253847 -3107379,1630215980,1,32,0,1,1630089027,2,1.0,45.0,1.0,-9.0,4.0,1253848 -3107380,1630216008,3,7,2,2,1630089027,1,-9.0,-9.0,-9.0,3.0,-9.0,1253848 -3107381,1630215994,1,37,13,3,1630089027,2,1.0,50.0,1.0,-9.0,4.0,1253848 -3107382,1630215981,1,32,0,1,1630089028,2,1.0,45.0,1.0,-9.0,4.0,1253849 -3107383,1630216009,3,7,2,2,1630089028,1,-9.0,-9.0,-9.0,3.0,-9.0,1253849 -3107384,1630215995,1,37,13,3,1630089028,2,1.0,50.0,1.0,-9.0,4.0,1253849 -3107385,1630215982,1,32,0,1,1630089029,2,1.0,45.0,1.0,-9.0,4.0,1253850 -3107386,1630216010,3,7,2,2,1630089029,1,-9.0,-9.0,-9.0,3.0,-9.0,1253850 -3107387,1630215996,1,37,13,3,1630089029,2,1.0,50.0,1.0,-9.0,4.0,1253850 -3107388,1630215983,1,32,0,1,1630089030,2,1.0,45.0,1.0,-9.0,4.0,1253851 -3107389,1630216011,3,7,2,2,1630089030,1,-9.0,-9.0,-9.0,3.0,-9.0,1253851 -3107390,1630215997,1,37,13,3,1630089030,2,1.0,50.0,1.0,-9.0,4.0,1253851 -3107391,1630215984,1,32,0,1,1630089031,2,1.0,45.0,1.0,-9.0,4.0,1253852 -3107392,1630216012,3,7,2,2,1630089031,1,-9.0,-9.0,-9.0,3.0,-9.0,1253852 -3107393,1630215998,1,37,13,3,1630089031,2,1.0,50.0,1.0,-9.0,4.0,1253852 -3107394,1630215985,1,32,0,1,1630089032,2,1.0,45.0,1.0,-9.0,4.0,1253853 -3107395,1630216013,3,7,2,2,1630089032,1,-9.0,-9.0,-9.0,3.0,-9.0,1253853 -3107396,1630215999,1,37,13,3,1630089032,2,1.0,50.0,1.0,-9.0,4.0,1253853 -3107397,1630215986,1,32,0,1,1630089033,2,1.0,45.0,1.0,-9.0,4.0,1253854 -3107398,1630216014,3,7,2,2,1630089033,1,-9.0,-9.0,-9.0,3.0,-9.0,1253854 -3107399,1630216000,1,37,13,3,1630089033,2,1.0,50.0,1.0,-9.0,4.0,1253854 -3107400,1630215987,1,32,0,1,1630089034,2,1.0,45.0,1.0,-9.0,4.0,1253855 -3107401,1630216015,3,7,2,2,1630089034,1,-9.0,-9.0,-9.0,3.0,-9.0,1253855 -3107402,1630216001,1,37,13,3,1630089034,2,1.0,50.0,1.0,-9.0,4.0,1253855 -3107403,1630216958,4,30,0,1,1630089035,1,1.0,45.0,1.0,-9.0,4.0,1253856 -3107404,1630216954,4,27,1,2,1630089035,2,1.0,40.0,1.0,-9.0,4.0,1253856 -3107405,1630216959,4,30,0,1,1630089036,1,1.0,45.0,1.0,-9.0,4.0,1253857 -3107406,1630216955,4,27,1,2,1630089036,2,1.0,40.0,1.0,-9.0,4.0,1253857 -3107407,1630216960,4,30,0,1,1630089037,1,1.0,45.0,1.0,-9.0,4.0,1253858 -3107408,1630216956,4,27,1,2,1630089037,2,1.0,40.0,1.0,-9.0,4.0,1253858 -3107409,1630216961,4,30,0,1,1630089038,1,1.0,45.0,1.0,-9.0,4.0,1253859 -3107410,1630216957,4,27,1,2,1630089038,2,1.0,40.0,1.0,-9.0,4.0,1253859 -3107411,1630216185,1,27,0,1,1630089039,1,1.0,45.0,1.0,-9.0,4.0,1253860 -3107412,1630216180,1,28,1,2,1630089039,2,1.0,52.0,4.0,-9.0,4.0,1253860 -3107413,1630216186,1,27,0,1,1630089040,1,1.0,45.0,1.0,-9.0,4.0,1253861 -3107414,1630216181,1,28,1,2,1630089040,2,1.0,52.0,4.0,-9.0,4.0,1253861 -3107415,1630216187,1,27,0,1,1630089041,1,1.0,45.0,1.0,-9.0,4.0,1253862 -3107416,1630216182,1,28,1,2,1630089041,2,1.0,52.0,4.0,-9.0,4.0,1253862 -3107417,1630216188,1,27,0,1,1630089042,1,1.0,45.0,1.0,-9.0,4.0,1253863 -3107418,1630216183,1,28,1,2,1630089042,2,1.0,52.0,4.0,-9.0,4.0,1253863 -3107419,1630216806,4,33,0,1,1630089043,2,1.0,55.0,1.0,-9.0,4.0,1253864 -3107420,1630216804,2,34,13,2,1630089043,1,1.0,40.0,4.0,16.0,4.0,1253864 -3107421,1630215725,1,25,0,1,1630089044,2,1.0,45.0,1.0,16.0,4.0,1253865 -3107422,1630215739,4,25,1,2,1630089044,1,1.0,40.0,1.0,16.0,4.0,1253865 -3107423,1630215726,1,25,0,1,1630089045,2,1.0,45.0,1.0,16.0,4.0,1253866 -3107424,1630215740,4,25,1,2,1630089045,1,1.0,40.0,1.0,16.0,4.0,1253866 -3107425,1630215727,1,25,0,1,1630089046,2,1.0,45.0,1.0,16.0,4.0,1253867 -3107426,1630215741,4,25,1,2,1630089046,1,1.0,40.0,1.0,16.0,4.0,1253867 -3107427,1630215728,1,25,0,1,1630089047,2,1.0,45.0,1.0,16.0,4.0,1253868 -3107428,1630215742,4,25,1,2,1630089047,1,1.0,40.0,1.0,16.0,4.0,1253868 -3107429,1630215729,1,25,0,1,1630089048,2,1.0,45.0,1.0,16.0,4.0,1253869 -3107430,1630215743,4,25,1,2,1630089048,1,1.0,40.0,1.0,16.0,4.0,1253869 -3107431,1630215730,1,25,0,1,1630089049,2,1.0,45.0,1.0,16.0,4.0,1253870 -3107432,1630215744,4,25,1,2,1630089049,1,1.0,40.0,1.0,16.0,4.0,1253870 -3107433,1630215731,1,25,0,1,1630089050,2,1.0,45.0,1.0,16.0,4.0,1253871 -3107434,1630215745,4,25,1,2,1630089050,1,1.0,40.0,1.0,16.0,4.0,1253871 -3107435,1630215732,1,25,0,1,1630089051,2,1.0,45.0,1.0,16.0,4.0,1253872 -3107436,1630215746,4,25,1,2,1630089051,1,1.0,40.0,1.0,16.0,4.0,1253872 -3107437,1630215733,1,25,0,1,1630089052,2,1.0,45.0,1.0,16.0,4.0,1253873 -3107438,1630215747,4,25,1,2,1630089052,1,1.0,40.0,1.0,16.0,4.0,1253873 -3107439,1630215734,1,25,0,1,1630089053,2,1.0,45.0,1.0,16.0,4.0,1253874 -3107440,1630215748,4,25,1,2,1630089053,1,1.0,40.0,1.0,16.0,4.0,1253874 -3107441,1630215735,1,25,0,1,1630089054,2,1.0,45.0,1.0,16.0,4.0,1253875 -3107442,1630215749,4,25,1,2,1630089054,1,1.0,40.0,1.0,16.0,4.0,1253875 -3107443,1630215736,1,25,0,1,1630089055,2,1.0,45.0,1.0,16.0,4.0,1253876 -3107444,1630215750,4,25,1,2,1630089055,1,1.0,40.0,1.0,16.0,4.0,1253876 -3107445,1630215737,1,25,0,1,1630089056,2,1.0,45.0,1.0,16.0,4.0,1253877 -3107446,1630215751,4,25,1,2,1630089056,1,1.0,40.0,1.0,16.0,4.0,1253877 -3107447,1630216324,3,27,0,1,1630089057,1,1.0,70.0,1.0,-9.0,4.0,1253878 -3107448,1630216330,3,27,12,2,1630089057,1,1.0,70.0,1.0,-9.0,4.0,1253878 -3107449,1630216325,3,27,0,1,1630089058,1,1.0,70.0,1.0,-9.0,4.0,1253879 -3107450,1630216331,3,27,12,2,1630089058,1,1.0,70.0,1.0,-9.0,4.0,1253879 -3107451,1630216326,3,27,0,1,1630089059,1,1.0,70.0,1.0,-9.0,4.0,1253880 -3107452,1630216332,3,27,12,2,1630089059,1,1.0,70.0,1.0,-9.0,4.0,1253880 -3107453,1630216327,3,27,0,1,1630089060,1,1.0,70.0,1.0,-9.0,4.0,1253881 -3107454,1630216333,3,27,12,2,1630089060,1,1.0,70.0,1.0,-9.0,4.0,1253881 -3107455,1630216328,3,27,0,1,1630089061,1,1.0,70.0,1.0,-9.0,4.0,1253882 -3107456,1630216334,3,27,12,2,1630089061,1,1.0,70.0,1.0,-9.0,4.0,1253882 -3107457,1630215970,1,27,0,1,1630089062,2,6.0,37.0,5.0,16.0,4.0,1253883 -3107458,1630215971,1,27,0,1,1630089063,2,6.0,37.0,5.0,16.0,4.0,1253884 -3107459,1630215972,1,27,0,1,1630089064,2,6.0,37.0,5.0,16.0,4.0,1253885 -3107460,1630216716,2,39,0,1,1630089065,2,6.0,27.0,1.0,-9.0,4.0,1253886 -3107461,1630216720,2,21,2,2,1630089065,1,6.0,-9.0,-9.0,-9.0,4.0,1253886 -3107462,1630216718,2,26,10,3,1630089065,2,6.0,-9.0,-9.0,-9.0,4.0,1253886 -3107463,1630216717,2,39,0,1,1630089066,2,6.0,27.0,1.0,-9.0,4.0,1253887 -3107464,1630216721,2,21,2,2,1630089066,1,6.0,-9.0,-9.0,-9.0,4.0,1253887 -3107465,1630216719,2,26,10,3,1630089066,2,6.0,-9.0,-9.0,-9.0,4.0,1253887 -3107466,1630216244,1,29,0,1,1630089067,1,6.0,40.0,3.0,16.0,4.0,1253888 -3107467,1630216246,1,27,12,2,1630089067,1,6.0,40.0,5.0,-9.0,4.0,1253888 -3107468,1630216672,2,26,0,1,1630089068,2,1.0,40.0,1.0,-9.0,4.0,1253889 -3107469,1630216355,1,30,0,1,1630089069,1,1.0,40.0,4.0,-9.0,4.0,1253890 -3107470,1630216438,1,29,0,1,1630089070,1,1.0,35.0,1.0,-9.0,4.0,1253891 -3107471,1630215843,1,33,0,1,1630089071,2,1.0,65.0,1.0,-9.0,4.0,1253892 -3107472,1630215844,1,33,0,1,1630089072,2,1.0,65.0,1.0,-9.0,4.0,1253893 -3107473,1630216274,1,29,0,1,1630089073,1,1.0,45.0,1.0,-9.0,4.0,1253894 -3107474,1630216356,1,30,0,1,1630089074,1,1.0,40.0,4.0,-9.0,4.0,1253895 -3107475,1630216439,1,29,0,1,1630089075,1,1.0,35.0,1.0,-9.0,4.0,1253896 -3107476,1630216357,1,30,0,1,1630089076,1,1.0,40.0,4.0,-9.0,4.0,1253897 -3107477,1630216992,4,44,0,1,1630089077,1,1.0,55.0,1.0,-9.0,4.0,1253898 -3107478,1630216995,4,27,0,1,1630089078,1,1.0,40.0,1.0,-9.0,4.0,1253899 -3107479,1630217009,4,33,0,1,1630089079,1,2.0,12.0,1.0,-9.0,4.0,1253900 -3107480,1630217000,4,42,0,1,1630089080,1,1.0,40.0,3.0,-9.0,4.0,1253901 -3107481,1630216607,2,43,0,1,1630089081,2,1.0,50.0,1.0,-9.0,4.0,1253902 -3107482,1630216758,2,34,0,1,1630089082,2,2.0,40.0,1.0,-9.0,4.0,1253903 -3107483,1630216872,4,37,0,1,1630089083,2,1.0,30.0,1.0,-9.0,4.0,1253904 -3107484,1630216873,4,37,0,1,1630089084,2,1.0,30.0,1.0,-9.0,4.0,1253905 -3107485,1630216874,4,37,0,1,1630089085,2,1.0,30.0,1.0,-9.0,4.0,1253906 -3107486,1630216875,4,37,0,1,1630089086,2,1.0,30.0,1.0,-9.0,4.0,1253907 -3107487,1630216876,4,37,0,1,1630089087,2,1.0,30.0,1.0,-9.0,4.0,1253908 -3107488,1630216877,4,37,0,1,1630089088,2,1.0,30.0,1.0,-9.0,4.0,1253909 -3107489,1630216923,3,34,0,1,1630089089,2,1.0,80.0,2.0,-9.0,4.0,1253910 -3107490,1630216924,3,34,0,1,1630089090,2,1.0,80.0,2.0,-9.0,4.0,1253911 -3107491,1630216925,3,34,0,1,1630089091,2,1.0,80.0,2.0,-9.0,4.0,1253912 -3107492,1630216926,3,34,0,1,1630089092,2,1.0,80.0,2.0,-9.0,4.0,1253913 -3107493,1630216127,1,31,0,1,1630089093,2,1.0,50.0,1.0,16.0,4.0,1253914 -3107494,1630216312,1,34,0,1,1630089094,1,1.0,40.0,1.0,-9.0,4.0,1253915 -3107495,1630216062,1,33,0,1,1630089095,2,1.0,60.0,1.0,15.0,4.0,1253916 -3107496,1630216063,1,33,0,1,1630089096,2,1.0,60.0,1.0,15.0,4.0,1253917 -3107497,1630216364,1,31,0,1,1630089097,1,2.0,70.0,1.0,-9.0,4.0,1253918 -3107498,1630215918,1,40,0,1,1630089098,2,1.0,60.0,1.0,-9.0,4.0,1253919 -3107499,1630216037,1,26,0,1,1630089099,2,1.0,40.0,1.0,-9.0,4.0,1253920 -3107500,1630216386,1,26,0,1,1630089100,1,1.0,60.0,1.0,-9.0,4.0,1253921 -3107501,1630215919,1,40,0,1,1630089101,2,1.0,60.0,1.0,-9.0,4.0,1253922 -3107502,1630215902,1,26,0,1,1630089102,2,1.0,40.0,1.0,-9.0,4.0,1253923 -3107503,1630216064,1,33,0,1,1630089103,2,1.0,60.0,1.0,15.0,4.0,1253924 -3107504,1630216128,1,31,0,1,1630089104,2,1.0,50.0,1.0,16.0,4.0,1253925 -3107505,1630215920,1,40,0,1,1630089105,2,1.0,60.0,1.0,-9.0,4.0,1253926 -3107506,1630216065,1,33,0,1,1630089106,2,1.0,60.0,1.0,15.0,4.0,1253927 -3107507,1630216275,3,29,0,1,1630089107,1,1.0,43.0,1.0,-9.0,4.0,1253928 -3107508,1630216276,3,29,0,1,1630089108,1,1.0,43.0,1.0,-9.0,4.0,1253929 -3107509,1630216650,3,44,0,1,1630089109,2,1.0,40.0,1.0,-9.0,4.0,1253930 -3107510,1630216624,2,60,5,2,1630089109,2,6.0,-9.0,-9.0,-9.0,4.0,1253930 -3107511,1630216637,2,74,6,3,1630089109,1,6.0,-9.0,-9.0,-9.0,2.0,1253930 -3107512,1630216651,3,44,0,1,1630089110,2,1.0,40.0,1.0,-9.0,4.0,1253931 -3107513,1630216625,2,60,5,2,1630089110,2,6.0,-9.0,-9.0,-9.0,4.0,1253931 -3107514,1630216638,2,74,6,3,1630089110,1,6.0,-9.0,-9.0,-9.0,2.0,1253931 -3107515,1630216652,3,44,0,1,1630089111,2,1.0,40.0,1.0,-9.0,4.0,1253932 -3107516,1630216626,2,60,5,2,1630089111,2,6.0,-9.0,-9.0,-9.0,4.0,1253932 -3107517,1630216639,2,74,6,3,1630089111,1,6.0,-9.0,-9.0,-9.0,2.0,1253932 -3107518,1630216653,3,44,0,1,1630089112,2,1.0,40.0,1.0,-9.0,4.0,1253933 -3107519,1630216627,2,60,5,2,1630089112,2,6.0,-9.0,-9.0,-9.0,4.0,1253933 -3107520,1630216640,2,74,6,3,1630089112,1,6.0,-9.0,-9.0,-9.0,2.0,1253933 -3107521,1630216654,3,44,0,1,1630089113,2,1.0,40.0,1.0,-9.0,4.0,1253934 -3107522,1630216628,2,60,5,2,1630089113,2,6.0,-9.0,-9.0,-9.0,4.0,1253934 -3107523,1630216641,2,74,6,3,1630089113,1,6.0,-9.0,-9.0,-9.0,2.0,1253934 -3107524,1630216655,3,44,0,1,1630089114,2,1.0,40.0,1.0,-9.0,4.0,1253935 -3107525,1630216629,2,60,5,2,1630089114,2,6.0,-9.0,-9.0,-9.0,4.0,1253935 -3107526,1630216642,2,74,6,3,1630089114,1,6.0,-9.0,-9.0,-9.0,2.0,1253935 -3107527,1630216656,3,44,0,1,1630089115,2,1.0,40.0,1.0,-9.0,4.0,1253936 -3107528,1630216630,2,60,5,2,1630089115,2,6.0,-9.0,-9.0,-9.0,4.0,1253936 -3107529,1630216643,2,74,6,3,1630089115,1,6.0,-9.0,-9.0,-9.0,2.0,1253936 -3107530,1630216657,3,44,0,1,1630089116,2,1.0,40.0,1.0,-9.0,4.0,1253937 -3107531,1630216631,2,60,5,2,1630089116,2,6.0,-9.0,-9.0,-9.0,4.0,1253937 -3107532,1630216644,2,74,6,3,1630089116,1,6.0,-9.0,-9.0,-9.0,2.0,1253937 -3107533,1630216658,3,44,0,1,1630089117,2,1.0,40.0,1.0,-9.0,4.0,1253938 -3107534,1630216632,2,60,5,2,1630089117,2,6.0,-9.0,-9.0,-9.0,4.0,1253938 -3107535,1630216645,2,74,6,3,1630089117,1,6.0,-9.0,-9.0,-9.0,2.0,1253938 -3107536,1630216659,3,44,0,1,1630089118,2,1.0,40.0,1.0,-9.0,4.0,1253939 -3107537,1630216633,2,60,5,2,1630089118,2,6.0,-9.0,-9.0,-9.0,4.0,1253939 -3107538,1630216646,2,74,6,3,1630089118,1,6.0,-9.0,-9.0,-9.0,2.0,1253939 -3107539,1630216660,3,44,0,1,1630089119,2,1.0,40.0,1.0,-9.0,4.0,1253940 -3107540,1630216634,2,60,5,2,1630089119,2,6.0,-9.0,-9.0,-9.0,4.0,1253940 -3107541,1630216647,2,74,6,3,1630089119,1,6.0,-9.0,-9.0,-9.0,2.0,1253940 -3107542,1630216661,3,44,0,1,1630089120,2,1.0,40.0,1.0,-9.0,4.0,1253941 -3107543,1630216635,2,60,5,2,1630089120,2,6.0,-9.0,-9.0,-9.0,4.0,1253941 -3107544,1630216648,2,74,6,3,1630089120,1,6.0,-9.0,-9.0,-9.0,2.0,1253941 -3107545,1630216132,1,25,0,1,1630089121,1,6.0,-9.0,-9.0,16.0,4.0,1253942 -3107546,1630216130,1,26,1,2,1630089121,2,1.0,50.0,1.0,-9.0,4.0,1253942 -3107547,1630216366,1,26,0,1,1630089122,1,1.0,45.0,1.0,-9.0,4.0,1253943 -3107548,1630216370,4,25,13,2,1630089122,2,1.0,35.0,1.0,-9.0,4.0,1253943 -3107549,1630216367,1,26,0,1,1630089123,1,1.0,45.0,1.0,-9.0,4.0,1253944 -3107550,1630216371,4,25,13,2,1630089123,2,1.0,35.0,1.0,-9.0,4.0,1253944 -3107551,1630216368,1,26,0,1,1630089124,1,1.0,45.0,1.0,-9.0,4.0,1253945 -3107552,1630216372,4,25,13,2,1630089124,2,1.0,35.0,1.0,-9.0,4.0,1253945 -3107553,1630215720,1,32,0,1,1630089125,1,1.0,40.0,1.0,-9.0,4.0,1253946 -3107554,1630215719,1,42,1,2,1630089125,2,1.0,40.0,1.0,-9.0,4.0,1253946 -3107555,1630216392,3,30,0,1,1630089126,1,1.0,45.0,1.0,-9.0,4.0,1253947 -3107556,1630216393,3,30,0,1,1630089127,1,1.0,45.0,1.0,-9.0,4.0,1253948 -3107557,1630216394,3,30,0,1,1630089128,1,1.0,45.0,1.0,-9.0,4.0,1253949 -3107558,1630216395,3,30,0,1,1630089129,1,1.0,45.0,1.0,-9.0,4.0,1253950 -3107559,1630216396,3,30,0,1,1630089130,1,1.0,45.0,1.0,-9.0,4.0,1253951 -3107560,1630216397,3,30,0,1,1630089131,1,1.0,45.0,1.0,-9.0,4.0,1253952 -3107561,1630216398,3,30,0,1,1630089132,1,1.0,45.0,1.0,-9.0,4.0,1253953 -3107562,1630216399,3,30,0,1,1630089133,1,1.0,45.0,1.0,-9.0,4.0,1253954 -3107563,1630216400,3,30,0,1,1630089134,1,1.0,45.0,1.0,-9.0,4.0,1253955 -3107564,1630216993,4,25,0,1,1630089135,1,1.0,70.0,5.0,-9.0,2.0,1253956 -3107565,1630216731,2,36,0,1,1630089136,2,1.0,40.0,1.0,-9.0,4.0,1253957 -3107566,1630216347,1,27,0,1,1630089137,1,1.0,40.0,1.0,-9.0,4.0,1253958 -3107567,1630216340,1,27,0,1,1630089138,1,1.0,48.0,1.0,-9.0,4.0,1253959 -3107568,1630215916,1,32,0,1,1630089139,2,1.0,50.0,1.0,-9.0,4.0,1253960 -3107569,1630215917,1,32,0,1,1630089140,2,1.0,50.0,1.0,-9.0,4.0,1253961 -3107570,1630215910,1,28,0,1,1630089141,2,1.0,40.0,1.0,-9.0,4.0,1253962 -3107571,1630215911,1,28,0,1,1630089142,2,1.0,40.0,1.0,-9.0,4.0,1253963 -3107572,1630215912,1,28,0,1,1630089143,2,1.0,40.0,1.0,-9.0,4.0,1253964 -3107573,1630216337,1,25,0,1,1630089144,1,1.0,40.0,1.0,-9.0,4.0,1253965 -3107574,1630215913,1,28,0,1,1630089145,2,1.0,40.0,1.0,-9.0,4.0,1253966 -3107575,1630216087,1,36,0,1,1630089146,2,1.0,80.0,1.0,-9.0,4.0,1253967 -3107576,1630216348,1,27,0,1,1630089147,1,1.0,40.0,1.0,-9.0,4.0,1253968 -3107577,1630216341,1,27,0,1,1630089148,1,1.0,48.0,1.0,-9.0,4.0,1253969 -3107578,1630216088,1,36,0,1,1630089149,2,1.0,80.0,1.0,-9.0,4.0,1253970 -3107579,1630216349,1,27,0,1,1630089150,1,1.0,40.0,1.0,-9.0,4.0,1253971 -3107580,1630216257,1,26,0,1,1630089151,1,1.0,40.0,3.0,-9.0,4.0,1253972 -3107581,1630216299,1,39,0,1,1630089152,1,1.0,40.0,1.0,-9.0,4.0,1253973 -3107582,1630216300,1,39,0,1,1630089153,1,1.0,40.0,1.0,-9.0,4.0,1253974 -3107583,1630215819,1,37,0,1,1630089154,1,1.0,33.0,1.0,-9.0,4.0,1253975 -3107584,1630215817,1,27,13,2,1630089154,2,6.0,40.0,5.0,-9.0,4.0,1253975 -3107585,1630216984,4,27,0,1,1630089155,1,1.0,80.0,1.0,-9.0,4.0,1253976 -3107586,1630216972,4,26,1,2,1630089155,2,1.0,80.0,3.0,-9.0,4.0,1253976 -3107587,1630216978,4,19,5,3,1630089155,2,6.0,-9.0,-9.0,15.0,4.0,1253976 -3107588,1630216985,4,27,0,1,1630089156,1,1.0,80.0,1.0,-9.0,4.0,1253977 -3107589,1630216973,4,26,1,2,1630089156,2,1.0,80.0,3.0,-9.0,4.0,1253977 -3107590,1630216979,4,19,5,3,1630089156,2,6.0,-9.0,-9.0,15.0,4.0,1253977 -3107591,1630216986,4,27,0,1,1630089157,1,1.0,80.0,1.0,-9.0,4.0,1253978 -3107592,1630216974,4,26,1,2,1630089157,2,1.0,80.0,3.0,-9.0,4.0,1253978 -3107593,1630216980,4,19,5,3,1630089157,2,6.0,-9.0,-9.0,15.0,4.0,1253978 -3107594,1630216987,4,27,0,1,1630089158,1,1.0,80.0,1.0,-9.0,4.0,1253979 -3107595,1630216975,4,26,1,2,1630089158,2,1.0,80.0,3.0,-9.0,4.0,1253979 -3107596,1630216981,4,19,5,3,1630089158,2,6.0,-9.0,-9.0,15.0,4.0,1253979 -3107597,1630216988,4,27,0,1,1630089159,1,1.0,80.0,1.0,-9.0,4.0,1253980 -3107598,1630216976,4,26,1,2,1630089159,2,1.0,80.0,3.0,-9.0,4.0,1253980 -3107599,1630216982,4,19,5,3,1630089159,2,6.0,-9.0,-9.0,15.0,4.0,1253980 -3107600,1630215963,1,32,0,1,1630089160,1,1.0,40.0,3.0,16.0,4.0,1253981 -3107601,1630215949,1,40,12,2,1630089160,2,1.0,40.0,1.0,16.0,4.0,1253981 -3107602,1630215956,1,30,13,3,1630089160,2,2.0,40.0,3.0,16.0,4.0,1253981 -3107603,1630215964,1,32,0,1,1630089161,1,1.0,40.0,3.0,16.0,4.0,1253982 -3107604,1630215950,1,40,12,2,1630089161,2,1.0,40.0,1.0,16.0,4.0,1253982 -3107605,1630215957,1,30,13,3,1630089161,2,2.0,40.0,3.0,16.0,4.0,1253982 -3107606,1630215965,1,32,0,1,1630089162,1,1.0,40.0,3.0,16.0,4.0,1253983 -3107607,1630215951,1,40,12,2,1630089162,2,1.0,40.0,1.0,16.0,4.0,1253983 -3107608,1630215958,1,30,13,3,1630089162,2,2.0,40.0,3.0,16.0,4.0,1253983 -3107609,1630215966,1,32,0,1,1630089163,1,1.0,40.0,3.0,16.0,4.0,1253984 -3107610,1630215952,1,40,12,2,1630089163,2,1.0,40.0,1.0,16.0,4.0,1253984 -3107611,1630215959,1,30,13,3,1630089163,2,2.0,40.0,3.0,16.0,4.0,1253984 -3107612,1630215967,1,32,0,1,1630089164,1,1.0,40.0,3.0,16.0,4.0,1253985 -3107613,1630215953,1,40,12,2,1630089164,2,1.0,40.0,1.0,16.0,4.0,1253985 -3107614,1630215960,1,30,13,3,1630089164,2,2.0,40.0,3.0,16.0,4.0,1253985 -3107615,1630215968,1,32,0,1,1630089165,1,1.0,40.0,3.0,16.0,4.0,1253986 -3107616,1630215954,1,40,12,2,1630089165,2,1.0,40.0,1.0,16.0,4.0,1253986 -3107617,1630215961,1,30,13,3,1630089165,2,2.0,40.0,3.0,16.0,4.0,1253986 -3107618,1630216115,1,26,0,1,1630089166,2,1.0,35.0,1.0,-9.0,4.0,1253987 -3107619,1630216121,1,26,12,2,1630089166,1,1.0,40.0,1.0,-9.0,4.0,1253987 -3107620,1630216118,1,21,12,3,1630089166,2,1.0,35.0,1.0,15.0,4.0,1253987 -3107621,1630216116,1,26,0,1,1630089167,2,1.0,35.0,1.0,-9.0,4.0,1253988 -3107622,1630216122,1,26,12,2,1630089167,1,1.0,40.0,1.0,-9.0,4.0,1253988 -3107623,1630216119,1,21,12,3,1630089167,2,1.0,35.0,1.0,15.0,4.0,1253988 -3107624,1630216117,1,26,0,1,1630089168,2,1.0,35.0,1.0,-9.0,4.0,1253989 -3107625,1630216123,1,26,12,2,1630089168,1,1.0,40.0,1.0,-9.0,4.0,1253989 -3107626,1630216120,1,21,12,3,1630089168,2,1.0,35.0,1.0,15.0,4.0,1253989 -3107627,1630215930,1,42,0,1,1630089169,1,1.0,30.0,1.0,-9.0,4.0,1253990 -3107628,1630215927,1,30,1,2,1630089169,2,1.0,43.0,1.0,-9.0,4.0,1253990 -3107629,1630215933,1,0,2,3,1630089169,2,-9.0,-9.0,-9.0,-9.0,-9.0,1253990 -3107630,1630215931,1,42,0,1,1630089170,1,1.0,30.0,1.0,-9.0,4.0,1253991 -3107631,1630215928,1,30,1,2,1630089170,2,1.0,43.0,1.0,-9.0,4.0,1253991 -3107632,1630215934,1,0,2,3,1630089170,2,-9.0,-9.0,-9.0,-9.0,-9.0,1253991 -3107633,1630215697,1,29,0,1,1630089171,1,1.0,40.0,1.0,16.0,4.0,1253992 -3107634,1630215696,1,24,12,2,1630089171,2,1.0,40.0,1.0,15.0,4.0,1253992 -3107635,1630216218,1,34,0,1,1630089172,1,1.0,17.0,3.0,-9.0,4.0,1253993 -3107636,1630216223,2,39,1,2,1630089172,2,1.0,45.0,1.0,-9.0,4.0,1253993 -3107637,1630216219,1,34,0,1,1630089173,1,1.0,17.0,3.0,-9.0,4.0,1253994 -3107638,1630216224,2,39,1,2,1630089173,2,1.0,45.0,1.0,-9.0,4.0,1253994 -3107639,1630216220,1,34,0,1,1630089174,1,1.0,17.0,3.0,-9.0,4.0,1253995 -3107640,1630216225,2,39,1,2,1630089174,2,1.0,45.0,1.0,-9.0,4.0,1253995 -3107641,1630216221,1,34,0,1,1630089175,1,1.0,17.0,3.0,-9.0,4.0,1253996 -3107642,1630216226,2,39,1,2,1630089175,2,1.0,45.0,1.0,-9.0,4.0,1253996 -3107643,1630216374,1,38,0,1,1630089176,1,1.0,40.0,1.0,-9.0,4.0,1253997 -3107644,1630216380,4,38,1,2,1630089176,2,1.0,40.0,1.0,-9.0,4.0,1253997 -3107645,1630216375,1,38,0,1,1630089177,1,1.0,40.0,1.0,-9.0,4.0,1253998 -3107646,1630216381,4,38,1,2,1630089177,2,1.0,40.0,1.0,-9.0,4.0,1253998 -3107647,1630216376,1,38,0,1,1630089178,1,1.0,40.0,1.0,-9.0,4.0,1253999 -3107648,1630216382,4,38,1,2,1630089178,2,1.0,40.0,1.0,-9.0,4.0,1253999 -3107649,1630216377,1,38,0,1,1630089179,1,1.0,40.0,1.0,-9.0,4.0,1254000 -3107650,1630216383,4,38,1,2,1630089179,2,1.0,40.0,1.0,-9.0,4.0,1254000 -3107651,1630216378,1,38,0,1,1630089180,1,1.0,40.0,1.0,-9.0,4.0,1254001 -3107652,1630216384,4,38,1,2,1630089180,2,1.0,40.0,1.0,-9.0,4.0,1254001 -3107653,1630216379,1,38,0,1,1630089181,1,1.0,40.0,1.0,-9.0,4.0,1254002 -3107654,1630216385,4,38,1,2,1630089181,2,1.0,40.0,1.0,-9.0,4.0,1254002 -3107655,1630216533,2,43,0,1,1630089182,2,6.0,-9.0,-9.0,-9.0,4.0,1254003 -3107656,1630216536,2,20,2,2,1630089182,2,6.0,-9.0,-9.0,-9.0,4.0,1254003 -3107657,1630216542,2,20,2,3,1630089182,1,6.0,-9.0,-9.0,-9.0,4.0,1254003 -3107658,1630216539,2,19,2,4,1630089182,2,6.0,-9.0,-9.0,14.0,4.0,1254003 -3107659,1630216545,2,0,7,5,1630089182,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254003 -3107660,1630216534,2,43,0,1,1630089183,2,6.0,-9.0,-9.0,-9.0,4.0,1254004 -3107661,1630216537,2,20,2,2,1630089183,2,6.0,-9.0,-9.0,-9.0,4.0,1254004 -3107662,1630216543,2,20,2,3,1630089183,1,6.0,-9.0,-9.0,-9.0,4.0,1254004 -3107663,1630216540,2,19,2,4,1630089183,2,6.0,-9.0,-9.0,14.0,4.0,1254004 -3107664,1630216546,2,0,7,5,1630089183,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254004 -3107665,1630216551,2,41,0,1,1630089184,2,6.0,-9.0,-9.0,-9.0,4.0,1254005 -3107666,1630216675,2,43,0,1,1630089185,2,6.0,-9.0,-9.0,-9.0,4.0,1254006 -3107667,1630216496,2,32,0,1,1630089186,2,6.0,-9.0,-9.0,16.0,4.0,1254007 -3107668,1630216497,2,32,0,1,1630089187,2,6.0,-9.0,-9.0,16.0,4.0,1254008 -3107669,1630216458,2,40,0,1,1630089188,2,6.0,-9.0,-9.0,12.0,4.0,1254009 -3107670,1630216552,2,41,0,1,1630089189,2,6.0,-9.0,-9.0,-9.0,4.0,1254010 -3107671,1630216459,2,40,0,1,1630089190,2,6.0,-9.0,-9.0,12.0,4.0,1254011 -3107672,1630216457,2,38,0,1,1630089191,2,6.0,-9.0,-9.0,-9.0,4.0,1254012 -3107673,1630216553,2,41,0,1,1630089192,2,6.0,-9.0,-9.0,-9.0,4.0,1254013 -3107674,1630216498,2,32,0,1,1630089193,2,6.0,-9.0,-9.0,16.0,4.0,1254014 -3107675,1630216846,3,39,0,1,1630089194,1,6.0,-9.0,-9.0,-9.0,4.0,1254015 -3107676,1630216847,3,39,0,1,1630089195,1,6.0,-9.0,-9.0,-9.0,4.0,1254016 -3107677,1630216848,3,39,0,1,1630089196,1,6.0,-9.0,-9.0,-9.0,4.0,1254017 -3107678,1630216849,3,39,0,1,1630089197,1,6.0,-9.0,-9.0,-9.0,4.0,1254018 -3107679,1630216850,3,39,0,1,1630089198,1,6.0,-9.0,-9.0,-9.0,4.0,1254019 -3107680,1630216851,3,39,0,1,1630089199,1,6.0,-9.0,-9.0,-9.0,4.0,1254020 -3107681,1630216852,3,39,0,1,1630089200,1,6.0,-9.0,-9.0,-9.0,4.0,1254021 -3107682,1630216853,3,39,0,1,1630089201,1,6.0,-9.0,-9.0,-9.0,4.0,1254022 -3107683,1630216854,3,39,0,1,1630089202,1,6.0,-9.0,-9.0,-9.0,4.0,1254023 -3107684,1630216855,3,39,0,1,1630089203,1,6.0,-9.0,-9.0,-9.0,4.0,1254024 -3107685,1630216856,3,39,0,1,1630089204,1,6.0,-9.0,-9.0,-9.0,4.0,1254025 -3107686,1630216857,3,39,0,1,1630089205,1,6.0,-9.0,-9.0,-9.0,4.0,1254026 -3107687,1630216858,3,39,0,1,1630089206,1,6.0,-9.0,-9.0,-9.0,4.0,1254027 -3107688,1630216166,1,37,0,1,1630089207,2,6.0,-9.0,-9.0,-9.0,4.0,1254028 -3107689,1630215640,1,27,0,1,1630089208,2,3.0,-9.0,-9.0,-9.0,4.0,1254029 -3107690,1630215641,1,27,0,1,1630089209,2,3.0,-9.0,-9.0,-9.0,4.0,1254030 -3107691,1630215642,1,27,0,1,1630089210,2,3.0,-9.0,-9.0,-9.0,4.0,1254031 -3107692,1630215643,1,27,0,1,1630089211,2,3.0,-9.0,-9.0,-9.0,4.0,1254032 -3107693,1630215644,1,27,0,1,1630089212,2,3.0,-9.0,-9.0,-9.0,4.0,1254033 -3107694,1630216167,1,37,0,1,1630089213,2,6.0,-9.0,-9.0,-9.0,4.0,1254034 -3107695,1630216258,1,39,0,1,1630089214,1,6.0,8.0,6.0,16.0,4.0,1254035 -3107696,1630215645,1,27,0,1,1630089215,2,3.0,-9.0,-9.0,-9.0,4.0,1254036 -3107697,1630215646,1,27,0,1,1630089216,2,3.0,-9.0,-9.0,-9.0,4.0,1254037 -3107698,1630216168,1,37,0,1,1630089217,2,6.0,-9.0,-9.0,-9.0,4.0,1254038 -3107699,1630217001,4,26,0,1,1630089218,1,6.0,-9.0,-9.0,16.0,4.0,1254039 -3107700,1630216739,2,28,0,1,1630089219,2,6.0,-9.0,-9.0,15.0,4.0,1254040 -3107701,1630216686,2,41,0,1,1630089220,2,3.0,-9.0,-9.0,-9.0,4.0,1254041 -3107702,1630216563,2,42,0,1,1630089221,2,6.0,-9.0,-9.0,-9.0,4.0,1254042 -3107703,1630216740,2,28,0,1,1630089222,2,6.0,-9.0,-9.0,15.0,4.0,1254043 -3107704,1630216826,4,40,0,1,1630089223,1,3.0,-9.0,-9.0,16.0,4.0,1254044 -3107705,1630216827,4,40,0,1,1630089224,1,3.0,-9.0,-9.0,16.0,4.0,1254045 -3107706,1630216860,4,38,0,1,1630089225,1,3.0,30.0,6.0,15.0,3.0,1254046 -3107707,1630216861,4,38,0,1,1630089226,1,3.0,30.0,6.0,15.0,3.0,1254047 -3107708,1630216828,4,40,0,1,1630089227,1,3.0,-9.0,-9.0,16.0,4.0,1254048 -3107709,1630216862,4,38,0,1,1630089228,1,3.0,30.0,6.0,15.0,3.0,1254049 -3107710,1630216301,1,31,0,1,1630089229,1,3.0,8.0,4.0,-9.0,4.0,1254050 -3107711,1630216033,1,37,0,1,1630089230,2,6.0,-9.0,-9.0,16.0,4.0,1254051 -3107712,1630215674,1,28,0,1,1630089231,2,6.0,-9.0,-9.0,-9.0,4.0,1254052 -3107713,1630216302,1,31,0,1,1630089232,1,3.0,8.0,4.0,-9.0,4.0,1254053 -3107714,1630216034,1,37,0,1,1630089233,2,6.0,-9.0,-9.0,16.0,4.0,1254054 -3107715,1630216265,1,40,0,1,1630089234,1,6.0,28.0,4.0,-9.0,4.0,1254055 -3107716,1630215675,1,28,0,1,1630089235,2,6.0,-9.0,-9.0,-9.0,4.0,1254056 -3107717,1630216035,1,37,0,1,1630089236,2,6.0,-9.0,-9.0,16.0,4.0,1254057 -3107718,1630216303,1,31,0,1,1630089237,1,3.0,8.0,4.0,-9.0,4.0,1254058 -3107719,1630216036,1,37,0,1,1630089238,2,6.0,-9.0,-9.0,16.0,4.0,1254059 -3107720,1630216170,1,26,0,1,1630089239,2,6.0,-9.0,-9.0,16.0,4.0,1254060 -3107721,1630216266,1,29,0,1,1630089240,1,6.0,-9.0,-9.0,15.0,4.0,1254061 -3107722,1630216591,2,27,0,1,1630089241,2,6.0,-9.0,-9.0,-9.0,4.0,1254062 -3107723,1630216597,2,0,2,2,1630089241,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254062 -3107724,1630216594,2,35,13,3,1630089241,1,6.0,-9.0,-9.0,-9.0,4.0,1254062 -3107725,1630216592,2,27,0,1,1630089242,2,6.0,-9.0,-9.0,-9.0,4.0,1254063 -3107726,1630216598,2,0,2,2,1630089242,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254063 -3107727,1630216595,2,35,13,3,1630089242,1,6.0,-9.0,-9.0,-9.0,4.0,1254063 -3107728,1630216524,2,44,0,1,1630089243,1,6.0,-9.0,-9.0,-9.0,4.0,1254064 -3107729,1630216527,2,2,2,2,1630089243,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254064 -3107730,1630216521,2,40,13,3,1630089243,2,6.0,-9.0,-9.0,-9.0,4.0,1254064 -3107731,1630216525,2,44,0,1,1630089244,1,6.0,-9.0,-9.0,-9.0,4.0,1254065 -3107732,1630216528,2,2,2,2,1630089244,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254065 -3107733,1630216522,2,40,13,3,1630089244,2,6.0,-9.0,-9.0,-9.0,4.0,1254065 -3107734,1630216468,2,35,0,1,1630089245,2,3.0,18.0,4.0,-9.0,4.0,1254066 -3107735,1630216470,2,35,15,2,1630089245,1,3.0,24.0,6.0,-9.0,4.0,1254066 -3107736,1630216469,2,14,15,3,1630089245,1,-9.0,-9.0,-9.0,10.0,-9.0,1254066 -3107737,1630216593,2,27,0,1,1630089246,2,6.0,-9.0,-9.0,-9.0,4.0,1254067 -3107738,1630216599,2,0,2,2,1630089246,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254067 -3107739,1630216596,2,35,13,3,1630089246,1,6.0,-9.0,-9.0,-9.0,4.0,1254067 -3107740,1630216526,2,44,0,1,1630089247,1,6.0,-9.0,-9.0,-9.0,4.0,1254068 -3107741,1630216529,2,2,2,2,1630089247,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254068 -3107742,1630216523,2,40,13,3,1630089247,2,6.0,-9.0,-9.0,-9.0,4.0,1254068 -3107743,1630215774,1,32,0,1,1630089248,2,3.0,-9.0,-9.0,-9.0,4.0,1254069 -3107744,1630215784,1,8,2,2,1630089248,1,-9.0,-9.0,-9.0,4.0,-9.0,1254069 -3107745,1630215794,1,6,2,3,1630089248,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254069 -3107746,1630215775,1,32,0,1,1630089249,2,3.0,-9.0,-9.0,-9.0,4.0,1254070 -3107747,1630215785,1,8,2,2,1630089249,1,-9.0,-9.0,-9.0,4.0,-9.0,1254070 -3107748,1630215795,1,6,2,3,1630089249,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254070 -3107749,1630215776,1,32,0,1,1630089250,2,3.0,-9.0,-9.0,-9.0,4.0,1254071 -3107750,1630215786,1,8,2,2,1630089250,1,-9.0,-9.0,-9.0,4.0,-9.0,1254071 -3107751,1630215796,1,6,2,3,1630089250,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254071 -3107752,1630215777,1,32,0,1,1630089251,2,3.0,-9.0,-9.0,-9.0,4.0,1254072 -3107753,1630215787,1,8,2,2,1630089251,1,-9.0,-9.0,-9.0,4.0,-9.0,1254072 -3107754,1630215797,1,6,2,3,1630089251,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254072 -3107755,1630215778,1,32,0,1,1630089252,2,3.0,-9.0,-9.0,-9.0,4.0,1254073 -3107756,1630215788,1,8,2,2,1630089252,1,-9.0,-9.0,-9.0,4.0,-9.0,1254073 -3107757,1630215798,1,6,2,3,1630089252,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254073 -3107758,1630215779,1,32,0,1,1630089253,2,3.0,-9.0,-9.0,-9.0,4.0,1254074 -3107759,1630215789,1,8,2,2,1630089253,1,-9.0,-9.0,-9.0,4.0,-9.0,1254074 -3107760,1630215799,1,6,2,3,1630089253,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254074 -3107761,1630215780,1,32,0,1,1630089254,2,3.0,-9.0,-9.0,-9.0,4.0,1254075 -3107762,1630215790,1,8,2,2,1630089254,1,-9.0,-9.0,-9.0,4.0,-9.0,1254075 -3107763,1630215800,1,6,2,3,1630089254,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254075 -3107764,1630215781,1,32,0,1,1630089255,2,3.0,-9.0,-9.0,-9.0,4.0,1254076 -3107765,1630215791,1,8,2,2,1630089255,1,-9.0,-9.0,-9.0,4.0,-9.0,1254076 -3107766,1630215801,1,6,2,3,1630089255,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254076 -3107767,1630215782,1,32,0,1,1630089256,2,3.0,-9.0,-9.0,-9.0,4.0,1254077 -3107768,1630215792,1,8,2,2,1630089256,1,-9.0,-9.0,-9.0,4.0,-9.0,1254077 -3107769,1630215802,1,6,2,3,1630089256,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254077 -3107770,1630215783,1,32,0,1,1630089257,2,3.0,-9.0,-9.0,-9.0,4.0,1254078 -3107771,1630215793,1,8,2,2,1630089257,1,-9.0,-9.0,-9.0,4.0,-9.0,1254078 -3107772,1630215803,1,6,2,3,1630089257,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254078 -3107773,1630216784,2,31,0,1,1630089258,1,6.0,-9.0,-9.0,-9.0,4.0,1254079 -3107774,1630216787,2,0,2,2,1630089258,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254079 -3107775,1630216781,2,38,13,3,1630089258,2,6.0,-9.0,-9.0,-9.0,4.0,1254079 -3107776,1630216760,2,38,0,1,1630089259,2,6.0,-9.0,-9.0,-9.0,4.0,1254080 -3107777,1630216762,2,38,1,2,1630089259,1,3.0,-9.0,-9.0,-9.0,4.0,1254080 -3107778,1630216764,2,16,2,3,1630089259,2,6.0,-9.0,-9.0,13.0,-9.0,1254080 -3107779,1630216785,2,31,0,1,1630089260,1,6.0,-9.0,-9.0,-9.0,4.0,1254081 -3107780,1630216788,2,0,2,2,1630089260,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254081 -3107781,1630216782,2,38,13,3,1630089260,2,6.0,-9.0,-9.0,-9.0,4.0,1254081 -3107782,1630216761,2,38,0,1,1630089261,2,6.0,-9.0,-9.0,-9.0,4.0,1254082 -3107783,1630216763,2,38,1,2,1630089261,1,3.0,-9.0,-9.0,-9.0,4.0,1254082 -3107784,1630216765,2,16,2,3,1630089261,2,6.0,-9.0,-9.0,13.0,-9.0,1254082 -3107785,1630216319,4,28,0,1,1630089262,1,6.0,-9.0,-9.0,16.0,4.0,1254083 -3107786,1630216313,1,28,12,2,1630089262,1,6.0,-9.0,-9.0,16.0,4.0,1254083 -3107787,1630216316,1,25,12,3,1630089262,1,6.0,-9.0,-9.0,16.0,4.0,1254083 -3107788,1630216320,4,28,0,1,1630089263,1,6.0,-9.0,-9.0,16.0,4.0,1254084 -3107789,1630216314,1,28,12,2,1630089263,1,6.0,-9.0,-9.0,16.0,4.0,1254084 -3107790,1630216317,1,25,12,3,1630089263,1,6.0,-9.0,-9.0,16.0,4.0,1254084 -3107791,1630215845,1,27,0,1,1630089264,2,6.0,-9.0,-9.0,16.0,4.0,1254085 -3107792,1630215851,4,26,12,2,1630089264,2,6.0,-9.0,-9.0,16.0,4.0,1254085 -3107793,1630215848,1,25,12,3,1630089264,2,6.0,-9.0,-9.0,16.0,4.0,1254085 -3107794,1630215846,1,27,0,1,1630089265,2,6.0,-9.0,-9.0,16.0,4.0,1254086 -3107795,1630215852,4,26,12,2,1630089265,2,6.0,-9.0,-9.0,16.0,4.0,1254086 -3107796,1630215849,1,25,12,3,1630089265,2,6.0,-9.0,-9.0,16.0,4.0,1254086 -3107797,1630215847,1,27,0,1,1630089266,2,6.0,-9.0,-9.0,16.0,4.0,1254087 -3107798,1630215853,4,26,12,2,1630089266,2,6.0,-9.0,-9.0,16.0,4.0,1254087 -3107799,1630215850,1,25,12,3,1630089266,2,6.0,-9.0,-9.0,16.0,4.0,1254087 -3107800,1630217003,4,26,0,1,1630089267,1,6.0,36.0,5.0,-9.0,4.0,1254088 -3107801,1630217006,4,25,12,2,1630089267,1,6.0,-9.0,-9.0,-9.0,4.0,1254088 -3107802,1630217004,4,26,0,1,1630089268,1,6.0,36.0,5.0,-9.0,4.0,1254089 -3107803,1630217007,4,25,12,2,1630089268,1,6.0,-9.0,-9.0,-9.0,4.0,1254089 -3107804,1630216776,2,36,0,1,1630089269,2,6.0,-9.0,-9.0,-9.0,4.0,1254090 -3107805,1630216777,2,34,13,2,1630089269,1,6.0,-9.0,-9.0,-9.0,4.0,1254090 -3107806,1630216769,2,35,0,1,1630089270,2,6.0,-9.0,-9.0,-9.0,4.0,1254091 -3107807,1630216770,2,9,2,2,1630089270,1,-9.0,-9.0,-9.0,6.0,-9.0,1254091 -3107808,1630216694,2,41,0,1,1630089271,2,6.0,-9.0,-9.0,-9.0,4.0,1254092 -3107809,1630216695,2,8,2,2,1630089271,1,-9.0,-9.0,-9.0,4.0,-9.0,1254092 -3107810,1630216416,1,40,0,1,1630089272,1,6.0,-9.0,-9.0,-9.0,2.0,1254093 -3107811,1630216418,4,23,15,2,1630089272,2,6.0,30.0,6.0,-9.0,4.0,1254093 -3107812,1630216713,2,28,0,1,1630089273,2,6.0,-9.0,-9.0,15.0,4.0,1254094 -3107813,1630216714,2,3,2,2,1630089273,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254094 -3107814,1630215632,3,37,0,1,1630089274,2,6.0,42.0,4.0,-9.0,4.0,1254095 -3107815,1630215636,3,16,2,2,1630089274,1,6.0,-9.0,-9.0,12.0,-9.0,1254095 -3107816,1630215633,3,37,0,1,1630089275,2,6.0,42.0,4.0,-9.0,4.0,1254096 -3107817,1630215637,3,16,2,2,1630089275,1,6.0,-9.0,-9.0,12.0,-9.0,1254096 -3107818,1630215634,3,37,0,1,1630089276,2,6.0,42.0,4.0,-9.0,4.0,1254097 -3107819,1630215638,3,16,2,2,1630089276,1,6.0,-9.0,-9.0,12.0,-9.0,1254097 -3107820,1630215659,1,41,0,1,1630089277,2,3.0,40.0,4.0,-9.0,4.0,1254098 -3107821,1630215662,4,18,2,2,1630089277,2,1.0,16.0,5.0,-9.0,4.0,1254098 -3107822,1630215663,4,2,7,3,1630089277,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254098 -3107823,1630215660,2,36,13,4,1630089277,1,6.0,-9.0,-9.0,-9.0,4.0,1254098 -3107824,1630215661,2,19,15,5,1630089277,1,6.0,-9.0,-9.0,15.0,4.0,1254098 -3107825,1630216757,2,41,0,1,1630089278,2,1.0,40.0,1.0,-9.0,4.0,1254099 -3107826,1630216836,4,25,0,1,1630089279,1,1.0,30.0,1.0,-9.0,4.0,1254100 -3107827,1630216879,3,27,0,1,1630089280,2,1.0,40.0,1.0,-9.0,4.0,1254101 -3107828,1630216880,3,27,0,1,1630089281,2,1.0,40.0,1.0,-9.0,4.0,1254102 -3107829,1630216881,3,27,0,1,1630089282,2,1.0,40.0,1.0,-9.0,4.0,1254103 -3107830,1630216882,3,27,0,1,1630089283,2,1.0,40.0,1.0,-9.0,4.0,1254104 -3107831,1630215936,1,44,0,1,1630089284,2,1.0,40.0,1.0,-9.0,4.0,1254105 -3107832,1630215937,1,44,0,1,1630089285,2,1.0,40.0,1.0,-9.0,4.0,1254106 -3107833,1630216230,1,42,0,1,1630089286,1,1.0,40.0,1.0,-9.0,2.0,1254107 -3107834,1630216148,1,26,0,1,1630089287,2,1.0,65.0,2.0,-9.0,4.0,1254108 -3107835,1630216149,1,26,0,1,1630089288,2,1.0,65.0,2.0,-9.0,4.0,1254109 -3107836,1630216150,1,26,0,1,1630089289,2,1.0,65.0,2.0,-9.0,4.0,1254110 -3107837,1630216968,4,30,0,1,1630089290,2,1.0,40.0,1.0,-9.0,4.0,1254111 -3107838,1630216969,4,30,0,1,1630089291,2,1.0,40.0,1.0,-9.0,4.0,1254112 -3107839,1630216715,2,29,0,1,1630089292,2,1.0,40.0,2.0,-9.0,4.0,1254113 -3107840,1630216361,1,35,0,1,1630089293,1,1.0,22.0,1.0,16.0,4.0,1254114 -3107841,1630215864,1,31,0,1,1630089294,2,1.0,50.0,1.0,-9.0,4.0,1254115 -3107842,1630216153,1,31,0,1,1630089295,2,1.0,20.0,1.0,-9.0,4.0,1254116 -3107843,1630216114,1,31,0,1,1630089296,2,1.0,80.0,5.0,-9.0,4.0,1254117 -3107844,1630216154,1,31,0,1,1630089297,2,1.0,20.0,1.0,-9.0,4.0,1254118 -3107845,1630215831,1,28,0,1,1630089298,2,1.0,50.0,1.0,16.0,4.0,1254119 -3107846,1630216362,1,35,0,1,1630089299,1,1.0,22.0,1.0,16.0,4.0,1254120 -3107847,1630215832,1,28,0,1,1630089300,2,1.0,50.0,1.0,16.0,4.0,1254121 -3107848,1630216089,1,26,0,1,1630089301,2,1.0,20.0,4.0,16.0,4.0,1254122 -3107849,1630216094,1,25,0,1,1630089302,2,1.0,40.0,4.0,-9.0,4.0,1254123 -3107850,1630216095,1,25,0,1,1630089303,2,1.0,40.0,4.0,-9.0,4.0,1254124 -3107851,1630216155,1,31,0,1,1630089304,2,1.0,20.0,1.0,-9.0,4.0,1254125 -3107852,1630216938,4,31,0,1,1630089305,1,6.0,-9.0,-9.0,-9.0,4.0,1254126 -3107853,1630216935,4,30,1,2,1630089305,2,1.0,20.0,1.0,16.0,4.0,1254126 -3107854,1630216941,4,2,2,3,1630089305,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254126 -3107855,1630216939,4,31,0,1,1630089306,1,6.0,-9.0,-9.0,-9.0,4.0,1254127 -3107856,1630216936,4,30,1,2,1630089306,2,1.0,20.0,1.0,16.0,4.0,1254127 -3107857,1630216942,4,2,2,3,1630089306,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254127 -3107858,1630216736,2,26,0,1,1630089307,2,1.0,15.0,3.0,-9.0,4.0,1254128 -3107859,1630216737,2,10,2,2,1630089307,2,-9.0,-9.0,-9.0,7.0,-9.0,1254128 -3107860,1630216738,2,6,2,3,1630089307,2,-9.0,-9.0,-9.0,2.0,-9.0,1254128 -3107861,1630216964,4,28,0,1,1630089308,1,6.0,-9.0,-9.0,15.0,4.0,1254129 -3107862,1630216962,4,31,1,2,1630089308,2,1.0,40.0,1.0,16.0,4.0,1254129 -3107863,1630216966,4,1,2,3,1630089308,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254129 -3107864,1630216465,2,32,0,1,1630089309,2,1.0,34.0,1.0,-9.0,4.0,1254130 -3107865,1630216466,2,10,2,2,1630089309,1,-9.0,-9.0,-9.0,6.0,-9.0,1254130 -3107866,1630216467,2,7,2,3,1630089309,1,-9.0,-9.0,-9.0,4.0,-9.0,1254130 -3107867,1630216796,2,53,0,1,1630089310,1,6.0,-9.0,-9.0,-9.0,4.0,1254131 -3107868,1630216797,2,60,10,2,1630089310,1,6.0,-9.0,-9.0,-9.0,2.0,1254131 -3107869,1630216798,2,58,10,3,1630089310,1,6.0,-9.0,-9.0,-9.0,2.0,1254131 -3107870,1630216134,1,51,0,1,1630089311,2,1.0,40.0,1.0,16.0,4.0,1254132 -3107871,1630216404,1,57,0,1,1630089312,1,1.0,45.0,2.0,-9.0,4.0,1254133 -3107872,1630216135,1,51,0,1,1630089313,2,1.0,40.0,1.0,16.0,4.0,1254134 -3107873,1630216136,1,51,0,1,1630089314,2,1.0,40.0,1.0,16.0,4.0,1254135 -3107874,1630215755,1,59,0,1,1630089315,2,6.0,-9.0,-9.0,-9.0,4.0,1254136 -3107875,1630215830,1,63,0,1,1630089316,2,1.0,40.0,1.0,-9.0,4.0,1254137 -3107876,1630216165,1,48,0,1,1630089317,2,1.0,50.0,1.0,-9.0,4.0,1254138 -3107877,1630216590,2,51,0,1,1630089318,2,6.0,-9.0,-9.0,-9.0,4.0,1254139 -3107878,1630216484,2,58,0,1,1630089319,2,6.0,-9.0,-9.0,-9.0,4.0,1254140 -3107879,1630216578,2,58,0,1,1630089320,2,6.0,-9.0,-9.0,-9.0,4.0,1254141 -3107880,1630216759,2,45,0,1,1630089321,2,6.0,-9.0,-9.0,-9.0,4.0,1254142 -3107881,1630216532,2,63,0,1,1630089322,2,6.0,-9.0,-9.0,-9.0,4.0,1254143 -3107882,1630216579,2,58,0,1,1630089323,2,6.0,-9.0,-9.0,-9.0,4.0,1254144 -3107883,1630216464,2,51,0,1,1630089324,2,6.0,-9.0,-9.0,-9.0,4.0,1254145 -3107884,1630216499,2,54,0,1,1630089325,2,6.0,-9.0,-9.0,15.0,4.0,1254146 -3107885,1630216756,2,54,0,1,1630089326,2,6.0,-9.0,-9.0,-9.0,4.0,1254147 -3107886,1630216724,2,62,0,1,1630089327,2,6.0,-9.0,-9.0,-9.0,4.0,1254148 -3107887,1630216766,2,61,0,1,1630089328,2,6.0,-9.0,-9.0,-9.0,4.0,1254149 -3107888,1630216919,4,60,0,1,1630089329,2,6.0,-9.0,-9.0,-9.0,4.0,1254150 -3107889,1630216920,4,60,0,1,1630089330,2,6.0,-9.0,-9.0,-9.0,4.0,1254151 -3107890,1630216921,4,60,0,1,1630089331,2,6.0,-9.0,-9.0,-9.0,4.0,1254152 -3107891,1630216922,4,60,0,1,1630089332,2,6.0,-9.0,-9.0,-9.0,4.0,1254153 -3107892,1630216912,3,60,0,1,1630089333,2,6.0,-9.0,-9.0,-9.0,4.0,1254154 -3107893,1630216900,3,51,0,1,1630089334,2,6.0,-9.0,-9.0,-9.0,4.0,1254155 -3107894,1630216901,3,51,0,1,1630089335,2,6.0,-9.0,-9.0,-9.0,4.0,1254156 -3107895,1630216913,3,60,0,1,1630089336,2,6.0,-9.0,-9.0,-9.0,4.0,1254157 -3107896,1630216902,3,51,0,1,1630089337,2,6.0,-9.0,-9.0,-9.0,4.0,1254158 -3107897,1630216151,1,60,0,1,1630089338,2,6.0,-9.0,-9.0,-9.0,4.0,1254159 -3107898,1630216090,1,62,0,1,1630089339,2,6.0,-9.0,-9.0,-9.0,4.0,1254160 -3107899,1630215761,1,60,0,1,1630089340,2,6.0,-9.0,-9.0,-9.0,4.0,1254161 -3107900,1630216411,1,53,0,1,1630089341,1,6.0,8.0,6.0,-9.0,4.0,1254162 -3107901,1630216152,1,60,0,1,1630089342,2,6.0,-9.0,-9.0,-9.0,4.0,1254163 -3107902,1630215762,1,60,0,1,1630089343,2,6.0,-9.0,-9.0,-9.0,4.0,1254164 -3107903,1630216255,1,45,0,1,1630089344,1,6.0,-9.0,-9.0,-9.0,4.0,1254165 -3107904,1630215753,3,61,0,1,1630089345,2,6.0,-9.0,-9.0,-9.0,4.0,1254166 -3107905,1630216472,2,47,0,1,1630089346,2,6.0,-9.0,-9.0,15.0,4.0,1254167 -3107906,1630215667,1,60,0,1,1630089347,2,6.0,-9.0,-9.0,-9.0,4.0,1254168 -3107907,1630216587,2,50,0,1,1630089348,2,3.0,-9.0,-9.0,-9.0,4.0,1254169 -3107908,1630216589,2,21,2,2,1630089348,1,3.0,-9.0,-9.0,-9.0,4.0,1254169 -3107909,1630216588,2,19,2,3,1630089348,2,6.0,-9.0,-9.0,15.0,4.0,1254169 -3107910,1630216709,2,54,0,1,1630089349,2,6.0,-9.0,-9.0,-9.0,4.0,1254170 -3107911,1630216710,2,64,11,2,1630089349,1,6.0,-9.0,-9.0,-9.0,4.0,1254170 -3107912,1630216412,3,48,0,1,1630089350,1,6.0,-9.0,-9.0,-9.0,4.0,1254171 -3107913,1630216414,3,47,5,2,1630089350,1,6.0,-9.0,-9.0,-9.0,4.0,1254171 -3107914,1630215579,2,90,0,1,1630089351,2,6.0,-9.0,-9.0,-9.0,4.0,1254172 -3107915,1630215575,2,70,0,1,1630089352,2,6.0,-9.0,-9.0,-9.0,4.0,1254173 -3107916,1630215605,1,67,0,1,1630089353,2,6.0,-9.0,-9.0,-9.0,4.0,1254174 -3107917,1630215592,1,65,0,1,1630089354,2,6.0,-9.0,-9.0,-9.0,4.0,1254175 -3107918,1630215585,3,69,0,1,1630089355,2,6.0,-9.0,-9.0,-9.0,4.0,1254176 -3107919,1630216293,1,24,0,1,1630089356,1,3.0,47.0,3.0,15.0,4.0,1254177 -3107920,1630216294,1,24,0,1,1630089357,1,3.0,47.0,3.0,15.0,4.0,1254178 -3107921,1630216295,1,24,0,1,1630089358,1,3.0,47.0,3.0,15.0,4.0,1254179 -3107922,1630216296,1,24,0,1,1630089359,1,3.0,47.0,3.0,15.0,4.0,1254180 -3107923,1630216297,1,24,0,1,1630089360,1,3.0,47.0,3.0,15.0,4.0,1254181 -3107924,1630216998,4,23,0,1,1630089361,1,1.0,80.0,1.0,-9.0,4.0,1254182 -3107925,1630216342,1,23,0,1,1630089362,1,1.0,40.0,1.0,-9.0,4.0,1254183 -3107926,1630216343,1,23,0,1,1630089363,1,1.0,40.0,1.0,-9.0,4.0,1254184 -3107927,1630216217,1,24,0,1,1630089364,1,1.0,45.0,1.0,-9.0,4.0,1254185 -3107928,1630215681,1,24,0,1,1630089365,2,1.0,40.0,1.0,-9.0,4.0,1254186 -3107929,1630215684,1,26,1,2,1630089365,1,6.0,40.0,6.0,16.0,4.0,1254186 -3107930,1630215682,1,24,0,1,1630089366,2,1.0,40.0,1.0,-9.0,4.0,1254187 -3107931,1630215685,1,26,1,2,1630089366,1,6.0,40.0,6.0,16.0,4.0,1254187 -3107932,1630215683,1,24,0,1,1630089367,2,1.0,40.0,1.0,-9.0,4.0,1254188 -3107933,1630215686,1,26,1,2,1630089367,1,6.0,40.0,6.0,16.0,4.0,1254188 -3107934,1630216914,4,24,0,1,1630089368,2,1.0,45.0,1.0,-9.0,4.0,1254189 -3107935,1630216916,4,2,2,2,1630089368,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254189 -3107936,1630216915,4,24,0,1,1630089369,2,1.0,45.0,1.0,-9.0,4.0,1254190 -3107937,1630216917,4,2,2,2,1630089369,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254190 -3107938,1630215876,1,23,0,1,1630089370,1,1.0,35.0,1.0,16.0,4.0,1254191 -3107939,1630215887,4,22,11,2,1630089370,2,1.0,35.0,1.0,-9.0,4.0,1254191 -3107940,1630215865,1,22,11,3,1630089370,2,1.0,25.0,4.0,15.0,4.0,1254191 -3107941,1630215877,1,23,0,1,1630089371,1,1.0,35.0,1.0,16.0,4.0,1254192 -3107942,1630215888,4,22,11,2,1630089371,2,1.0,35.0,1.0,-9.0,4.0,1254192 -3107943,1630215866,1,22,11,3,1630089371,2,1.0,25.0,4.0,15.0,4.0,1254192 -3107944,1630215878,1,23,0,1,1630089372,1,1.0,35.0,1.0,16.0,4.0,1254193 -3107945,1630215889,4,22,11,2,1630089372,2,1.0,35.0,1.0,-9.0,4.0,1254193 -3107946,1630215867,1,22,11,3,1630089372,2,1.0,25.0,4.0,15.0,4.0,1254193 -3107947,1630215879,1,23,0,1,1630089373,1,1.0,35.0,1.0,16.0,4.0,1254194 -3107948,1630215890,4,22,11,2,1630089373,2,1.0,35.0,1.0,-9.0,4.0,1254194 -3107949,1630215868,1,22,11,3,1630089373,2,1.0,25.0,4.0,15.0,4.0,1254194 -3107950,1630215880,1,23,0,1,1630089374,1,1.0,35.0,1.0,16.0,4.0,1254195 -3107951,1630215891,4,22,11,2,1630089374,2,1.0,35.0,1.0,-9.0,4.0,1254195 -3107952,1630215869,1,22,11,3,1630089374,2,1.0,25.0,4.0,15.0,4.0,1254195 -3107953,1630215881,1,23,0,1,1630089375,1,1.0,35.0,1.0,16.0,4.0,1254196 -3107954,1630215892,4,22,11,2,1630089375,2,1.0,35.0,1.0,-9.0,4.0,1254196 -3107955,1630215870,1,22,11,3,1630089375,2,1.0,25.0,4.0,15.0,4.0,1254196 -3107956,1630215882,1,23,0,1,1630089376,1,1.0,35.0,1.0,16.0,4.0,1254197 -3107957,1630215893,4,22,11,2,1630089376,2,1.0,35.0,1.0,-9.0,4.0,1254197 -3107958,1630215871,1,22,11,3,1630089376,2,1.0,25.0,4.0,15.0,4.0,1254197 -3107959,1630215883,1,23,0,1,1630089377,1,1.0,35.0,1.0,16.0,4.0,1254198 -3107960,1630215894,4,22,11,2,1630089377,2,1.0,35.0,1.0,-9.0,4.0,1254198 -3107961,1630215872,1,22,11,3,1630089377,2,1.0,25.0,4.0,15.0,4.0,1254198 -3107962,1630215884,1,23,0,1,1630089378,1,1.0,35.0,1.0,16.0,4.0,1254199 -3107963,1630215895,4,22,11,2,1630089378,2,1.0,35.0,1.0,-9.0,4.0,1254199 -3107964,1630215873,1,22,11,3,1630089378,2,1.0,25.0,4.0,15.0,4.0,1254199 -3107965,1630215885,1,23,0,1,1630089379,1,1.0,35.0,1.0,16.0,4.0,1254200 -3107966,1630215896,4,22,11,2,1630089379,2,1.0,35.0,1.0,-9.0,4.0,1254200 -3107967,1630215874,1,22,11,3,1630089379,2,1.0,25.0,4.0,15.0,4.0,1254200 -3107968,1630215650,1,22,0,1,1630089380,2,1.0,45.0,4.0,-9.0,4.0,1254201 -3107969,1630215653,1,24,12,2,1630089380,2,1.0,50.0,1.0,-9.0,4.0,1254201 -3107970,1630215656,1,21,12,3,1630089380,2,1.0,35.0,3.0,-9.0,4.0,1254201 -3107971,1630215651,1,22,0,1,1630089381,2,1.0,45.0,4.0,-9.0,4.0,1254202 -3107972,1630215654,1,24,12,2,1630089381,2,1.0,50.0,1.0,-9.0,4.0,1254202 -3107973,1630215657,1,21,12,3,1630089381,2,1.0,35.0,3.0,-9.0,4.0,1254202 -3107974,1630216290,1,24,0,1,1630089382,1,1.0,55.0,1.0,-9.0,4.0,1254203 -3107975,1630216291,1,24,0,1,1630089383,1,1.0,55.0,1.0,-9.0,4.0,1254204 -3107976,1630215833,1,24,0,1,1630089384,2,1.0,50.0,1.0,-9.0,4.0,1254205 -3107977,1630215834,1,24,0,1,1630089385,2,1.0,50.0,1.0,-9.0,4.0,1254206 -3107978,1630215835,1,24,0,1,1630089386,2,1.0,50.0,1.0,-9.0,4.0,1254207 -3107979,1630216292,1,24,0,1,1630089387,1,1.0,55.0,1.0,-9.0,4.0,1254208 -3107980,1630215836,1,24,0,1,1630089388,2,1.0,50.0,1.0,-9.0,4.0,1254209 -3107981,1630215854,1,24,0,1,1630089389,2,1.0,40.0,1.0,-9.0,4.0,1254210 -3107982,1630215856,1,24,12,2,1630089389,2,1.0,20.0,1.0,16.0,4.0,1254210 -3107983,1630215858,1,24,12,3,1630089389,2,1.0,40.0,1.0,15.0,4.0,1254210 -3107984,1630215860,1,22,12,4,1630089389,2,3.0,-9.0,-9.0,16.0,4.0,1254210 -3107985,1630215862,1,21,12,5,1630089389,2,1.0,40.0,1.0,15.0,4.0,1254210 -3107986,1630215806,1,22,0,1,1630089390,2,2.0,40.0,1.0,16.0,4.0,1254211 -3107987,1630215809,1,27,13,2,1630089390,1,1.0,60.0,1.0,-9.0,4.0,1254211 -3107988,1630215807,1,22,0,1,1630089391,2,2.0,40.0,1.0,16.0,4.0,1254212 -3107989,1630215810,1,27,13,2,1630089391,1,1.0,60.0,1.0,-9.0,4.0,1254212 -3107990,1630215808,1,22,0,1,1630089392,2,2.0,40.0,1.0,16.0,4.0,1254213 -3107991,1630215811,1,27,13,2,1630089392,1,1.0,60.0,1.0,-9.0,4.0,1254213 -3107992,1630216190,1,24,0,1,1630089393,2,1.0,40.0,1.0,15.0,4.0,1254214 -3107993,1630216195,1,31,13,2,1630089393,1,1.0,20.0,1.0,16.0,4.0,1254214 -3107994,1630216191,1,24,0,1,1630089394,2,1.0,40.0,1.0,15.0,4.0,1254215 -3107995,1630216196,1,31,13,2,1630089394,1,1.0,20.0,1.0,16.0,4.0,1254215 -3107996,1630216192,1,24,0,1,1630089395,2,1.0,40.0,1.0,15.0,4.0,1254216 -3107997,1630216197,1,31,13,2,1630089395,1,1.0,20.0,1.0,16.0,4.0,1254216 -3107998,1630216193,1,24,0,1,1630089396,2,1.0,40.0,1.0,15.0,4.0,1254217 -3107999,1630216198,1,31,13,2,1630089396,1,1.0,20.0,1.0,16.0,4.0,1254217 -3108000,1630216462,2,24,0,1,1630089397,2,6.0,10.0,6.0,15.0,4.0,1254218 -3108001,1630216768,2,23,0,1,1630089398,2,6.0,15.0,4.0,15.0,4.0,1254219 -3108002,1630216483,2,22,0,1,1630089399,2,6.0,40.0,1.0,-9.0,4.0,1254220 -3108003,1630216304,1,24,0,1,1630089400,1,3.0,20.0,5.0,-9.0,4.0,1254221 -3108004,1630216200,1,24,0,1,1630089401,2,6.0,-9.0,-9.0,16.0,4.0,1254222 -3108005,1630216201,1,24,0,1,1630089402,2,6.0,-9.0,-9.0,16.0,4.0,1254223 -3108006,1630216202,1,24,0,1,1630089403,2,6.0,-9.0,-9.0,16.0,4.0,1254224 -3108007,1630216305,1,24,0,1,1630089404,1,3.0,20.0,5.0,-9.0,4.0,1254225 -3108008,1630216306,1,24,0,1,1630089405,1,3.0,20.0,5.0,-9.0,4.0,1254226 -3108009,1630216203,1,24,0,1,1630089406,2,6.0,-9.0,-9.0,16.0,4.0,1254227 -3108010,1630216428,1,22,0,1,1630089407,1,6.0,28.0,4.0,16.0,4.0,1254228 -3108011,1630216204,1,24,0,1,1630089408,2,6.0,-9.0,-9.0,16.0,4.0,1254229 -3108012,1630216307,1,24,0,1,1630089409,1,3.0,20.0,5.0,-9.0,4.0,1254230 -3108013,1630216205,1,24,0,1,1630089410,2,6.0,-9.0,-9.0,16.0,4.0,1254231 -3108014,1630216206,1,24,0,1,1630089411,2,6.0,-9.0,-9.0,16.0,4.0,1254232 -3108015,1630216207,1,24,0,1,1630089412,2,6.0,-9.0,-9.0,16.0,4.0,1254233 -3108016,1630216208,1,24,0,1,1630089413,2,6.0,-9.0,-9.0,16.0,4.0,1254234 -3108017,1630216209,1,24,0,1,1630089414,2,6.0,-9.0,-9.0,16.0,4.0,1254235 -3108018,1630216210,1,24,0,1,1630089415,2,6.0,-9.0,-9.0,16.0,4.0,1254236 -3108019,1630216211,1,24,0,1,1630089416,2,6.0,-9.0,-9.0,16.0,4.0,1254237 -3108020,1630216308,1,24,0,1,1630089417,1,3.0,20.0,5.0,-9.0,4.0,1254238 -3108021,1630216212,1,24,0,1,1630089418,2,6.0,-9.0,-9.0,16.0,4.0,1254239 -3108022,1630216137,1,24,0,1,1630089419,2,6.0,-9.0,-9.0,16.0,4.0,1254240 -3108023,1630216016,1,24,0,1,1630089420,2,6.0,-9.0,-9.0,16.0,4.0,1254241 -3108024,1630215938,1,24,0,1,1630089421,2,6.0,40.0,6.0,16.0,4.0,1254242 -3108025,1630215939,1,24,0,1,1630089422,2,6.0,40.0,6.0,16.0,4.0,1254243 -3108026,1630216387,1,20,0,1,1630089423,1,6.0,35.0,5.0,15.0,4.0,1254244 -3108027,1630215940,1,24,0,1,1630089424,2,6.0,40.0,6.0,16.0,4.0,1254245 -3108028,1630216138,1,24,0,1,1630089425,2,6.0,-9.0,-9.0,16.0,4.0,1254246 -3108029,1630215941,1,24,0,1,1630089426,2,6.0,40.0,6.0,16.0,4.0,1254247 -3108030,1630216017,1,24,0,1,1630089427,2,6.0,-9.0,-9.0,16.0,4.0,1254248 -3108031,1630216139,1,24,0,1,1630089428,2,6.0,-9.0,-9.0,16.0,4.0,1254249 -3108032,1630216388,1,20,0,1,1630089429,1,6.0,35.0,5.0,15.0,4.0,1254250 -3108033,1630216140,1,24,0,1,1630089430,2,6.0,-9.0,-9.0,16.0,4.0,1254251 -3108034,1630215942,1,24,0,1,1630089431,2,6.0,40.0,6.0,16.0,4.0,1254252 -3108035,1630216141,1,24,0,1,1630089432,2,6.0,-9.0,-9.0,16.0,4.0,1254253 -3108036,1630215943,1,24,0,1,1630089433,2,6.0,40.0,6.0,16.0,4.0,1254254 -3108037,1630216018,1,24,0,1,1630089434,2,6.0,-9.0,-9.0,16.0,4.0,1254255 -3108038,1630215944,1,24,0,1,1630089435,2,6.0,40.0,6.0,16.0,4.0,1254256 -3108039,1630215945,1,24,0,1,1630089436,2,6.0,40.0,6.0,16.0,4.0,1254257 -3108040,1630216019,1,24,0,1,1630089437,2,6.0,-9.0,-9.0,16.0,4.0,1254258 -3108041,1630216142,1,24,0,1,1630089438,2,6.0,-9.0,-9.0,16.0,4.0,1254259 -3108042,1630215946,1,24,0,1,1630089439,2,6.0,40.0,6.0,16.0,4.0,1254260 -3108043,1630216350,1,24,0,1,1630089440,1,3.0,50.0,5.0,-9.0,4.0,1254261 -3108044,1630216020,1,24,0,1,1630089441,2,6.0,-9.0,-9.0,16.0,4.0,1254262 -3108045,1630216143,1,24,0,1,1630089442,2,6.0,-9.0,-9.0,16.0,4.0,1254263 -3108046,1630216021,1,24,0,1,1630089443,2,6.0,-9.0,-9.0,16.0,4.0,1254264 -3108047,1630216144,1,24,0,1,1630089444,2,6.0,-9.0,-9.0,16.0,4.0,1254265 -3108048,1630216145,1,24,0,1,1630089445,2,6.0,-9.0,-9.0,16.0,4.0,1254266 -3108049,1630216566,2,20,0,1,1630089446,2,6.0,-9.0,-9.0,-9.0,4.0,1254267 -3108050,1630216574,2,1,2,2,1630089446,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254267 -3108051,1630216570,2,25,12,3,1630089446,1,3.0,-9.0,-9.0,-9.0,4.0,1254267 -3108052,1630216567,2,20,0,1,1630089447,2,6.0,-9.0,-9.0,-9.0,4.0,1254268 -3108053,1630216575,2,1,2,2,1630089447,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254268 -3108054,1630216571,2,25,12,3,1630089447,1,3.0,-9.0,-9.0,-9.0,4.0,1254268 -3108055,1630216568,2,20,0,1,1630089448,2,6.0,-9.0,-9.0,-9.0,4.0,1254269 -3108056,1630216576,2,1,2,2,1630089448,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254269 -3108057,1630216572,2,25,12,3,1630089448,1,3.0,-9.0,-9.0,-9.0,4.0,1254269 -3108058,1630216889,4,23,0,1,1630089449,2,6.0,-9.0,-9.0,16.0,4.0,1254270 -3108059,1630216894,4,24,15,2,1630089449,2,6.0,-9.0,-9.0,16.0,4.0,1254270 -3108060,1630216884,4,24,15,3,1630089449,2,6.0,-9.0,-9.0,16.0,4.0,1254270 -3108061,1630216890,4,23,0,1,1630089450,2,6.0,-9.0,-9.0,16.0,4.0,1254271 -3108062,1630216895,4,24,15,2,1630089450,2,6.0,-9.0,-9.0,16.0,4.0,1254271 -3108063,1630216885,4,24,15,3,1630089450,2,6.0,-9.0,-9.0,16.0,4.0,1254271 -3108064,1630216891,4,23,0,1,1630089451,2,6.0,-9.0,-9.0,16.0,4.0,1254272 -3108065,1630216896,4,24,15,2,1630089451,2,6.0,-9.0,-9.0,16.0,4.0,1254272 -3108066,1630216886,4,24,15,3,1630089451,2,6.0,-9.0,-9.0,16.0,4.0,1254272 -3108067,1630216892,4,23,0,1,1630089452,2,6.0,-9.0,-9.0,16.0,4.0,1254273 -3108068,1630216897,4,24,15,2,1630089452,2,6.0,-9.0,-9.0,16.0,4.0,1254273 -3108069,1630216887,4,24,15,3,1630089452,2,6.0,-9.0,-9.0,16.0,4.0,1254273 -3108070,1630216102,1,21,0,1,1630089453,2,6.0,10.0,5.0,16.0,4.0,1254274 -3108071,1630216108,1,20,12,2,1630089453,2,6.0,20.0,4.0,15.0,4.0,1254274 -3108072,1630216103,1,21,0,1,1630089454,2,6.0,10.0,5.0,16.0,4.0,1254275 -3108073,1630216109,1,20,12,2,1630089454,2,6.0,20.0,4.0,15.0,4.0,1254275 -3108074,1630216104,1,21,0,1,1630089455,2,6.0,10.0,5.0,16.0,4.0,1254276 -3108075,1630216110,1,20,12,2,1630089455,2,6.0,20.0,4.0,15.0,4.0,1254276 -3108076,1630216105,1,21,0,1,1630089456,2,6.0,10.0,5.0,16.0,4.0,1254277 -3108077,1630216111,1,20,12,2,1630089456,2,6.0,20.0,4.0,15.0,4.0,1254277 -3108078,1630216106,1,21,0,1,1630089457,2,6.0,10.0,5.0,16.0,4.0,1254278 -3108079,1630216112,1,20,12,2,1630089457,2,6.0,20.0,4.0,15.0,4.0,1254278 -3108080,1630216600,2,20,0,1,1630089458,2,3.0,-9.0,-9.0,-9.0,4.0,1254279 -3108081,1630216602,2,1,2,2,1630089458,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254279 -3108082,1630216601,2,20,0,1,1630089459,2,3.0,-9.0,-9.0,-9.0,4.0,1254280 -3108083,1630216603,2,1,2,2,1630089459,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254280 -3108084,1630216405,1,22,0,1,1630089460,1,6.0,-9.0,-9.0,15.0,4.0,1254281 -3108085,1630216408,1,24,11,2,1630089460,1,3.0,-9.0,-9.0,15.0,4.0,1254281 -3108086,1630216406,1,22,0,1,1630089461,1,6.0,-9.0,-9.0,15.0,4.0,1254282 -3108087,1630216409,1,24,11,2,1630089461,1,3.0,-9.0,-9.0,15.0,4.0,1254282 -3108088,1630216407,1,22,0,1,1630089462,1,6.0,-9.0,-9.0,15.0,4.0,1254283 -3108089,1630216410,1,24,11,2,1630089462,1,3.0,-9.0,-9.0,15.0,4.0,1254283 -3108090,1630216081,1,24,0,1,1630089463,2,6.0,8.0,6.0,16.0,4.0,1254284 -3108091,1630216084,4,24,12,2,1630089463,2,6.0,-9.0,-9.0,16.0,4.0,1254284 -3108092,1630216082,1,24,0,1,1630089464,2,6.0,8.0,6.0,16.0,4.0,1254285 -3108093,1630216085,4,24,12,2,1630089464,2,6.0,-9.0,-9.0,16.0,4.0,1254285 -3108094,1630216666,2,23,0,1,1630089465,2,1.0,32.0,1.0,-9.0,4.0,1254286 -3108095,1630216402,1,22,0,1,1630089466,1,1.0,15.0,1.0,15.0,4.0,1254287 -3108096,1630216271,1,20,0,1,1630089467,1,1.0,40.0,5.0,15.0,4.0,1254288 -3108097,1630216403,1,22,0,1,1630089468,1,1.0,15.0,1.0,15.0,4.0,1254289 -3108098,1630216272,1,20,0,1,1630089469,1,1.0,40.0,5.0,15.0,4.0,1254290 -3108099,1630216838,4,22,0,1,1630089470,1,2.0,20.0,4.0,16.0,4.0,1254291 -3108100,1630216908,3,23,0,1,1630089471,2,1.0,40.0,1.0,-9.0,4.0,1254292 -3108101,1630216909,3,23,0,1,1630089472,2,1.0,40.0,1.0,-9.0,4.0,1254293 -3108102,1630216910,3,23,0,1,1630089473,2,1.0,40.0,1.0,-9.0,4.0,1254294 -3108103,1630216911,3,23,0,1,1630089474,2,1.0,40.0,1.0,-9.0,4.0,1254295 -3108104,1630216028,1,24,0,1,1630089475,2,1.0,24.0,1.0,-9.0,4.0,1254296 -3108105,1630216252,1,22,0,1,1630089476,1,1.0,40.0,3.0,-9.0,4.0,1254297 -3108106,1630216351,1,23,0,1,1630089477,1,1.0,40.0,3.0,15.0,4.0,1254298 -3108107,1630216092,1,21,0,1,1630089478,2,1.0,25.0,1.0,-9.0,4.0,1254299 -3108108,1630216093,1,21,0,1,1630089479,2,1.0,25.0,1.0,-9.0,4.0,1254300 -3108109,1630216278,1,19,0,1,1630089480,1,6.0,-9.0,-9.0,15.0,4.0,1254301 -3108110,1630216282,1,19,12,2,1630089480,1,1.0,30.0,1.0,15.0,4.0,1254301 -3108111,1630216286,1,19,12,3,1630089480,1,6.0,-9.0,-9.0,15.0,4.0,1254301 -3108112,1630216279,1,19,0,1,1630089481,1,6.0,-9.0,-9.0,15.0,4.0,1254302 -3108113,1630216283,1,19,12,2,1630089481,1,1.0,30.0,1.0,15.0,4.0,1254302 -3108114,1630216287,1,19,12,3,1630089481,1,6.0,-9.0,-9.0,15.0,4.0,1254302 -3108115,1630216280,1,19,0,1,1630089482,1,6.0,-9.0,-9.0,15.0,4.0,1254303 -3108116,1630216284,1,19,12,2,1630089482,1,1.0,30.0,1.0,15.0,4.0,1254303 -3108117,1630216288,1,19,12,3,1630089482,1,6.0,-9.0,-9.0,15.0,4.0,1254303 -3108118,1630216507,2,23,0,1,1630089483,1,1.0,8.0,1.0,15.0,4.0,1254304 -3108119,1630216509,2,4,2,2,1630089483,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254304 -3108120,1630216505,2,21,13,3,1630089483,2,6.0,-9.0,-9.0,-9.0,4.0,1254304 -3108121,1630216429,1,21,0,1,1630089484,1,1.0,20.0,3.0,15.0,4.0,1254305 -3108122,1630216432,1,22,12,2,1630089484,1,6.0,-9.0,-9.0,15.0,4.0,1254305 -3108123,1630216435,1,21,12,3,1630089484,1,6.0,20.0,5.0,15.0,4.0,1254305 -3108124,1630216430,1,21,0,1,1630089485,1,1.0,20.0,3.0,15.0,4.0,1254306 -3108125,1630216433,1,22,12,2,1630089485,1,6.0,-9.0,-9.0,15.0,4.0,1254306 -3108126,1630216436,1,21,12,3,1630089485,1,6.0,20.0,5.0,15.0,4.0,1254306 -3108127,1630216262,1,20,0,1,1630089486,1,1.0,5.0,3.0,15.0,4.0,1254307 -3108128,1630216263,1,23,12,2,1630089486,1,6.0,40.0,6.0,15.0,4.0,1254307 -3108129,1630216264,1,20,12,3,1630089486,1,6.0,40.0,6.0,15.0,4.0,1254307 -3108130,1630216158,1,20,0,1,1630089487,2,6.0,15.0,6.0,15.0,4.0,1254308 -3108131,1630216160,1,19,12,2,1630089487,2,1.0,30.0,1.0,15.0,4.0,1254308 -3108132,1630216174,1,22,0,1,1630089488,2,1.0,20.0,1.0,15.0,4.0,1254309 -3108133,1630216176,1,18,5,2,1630089488,2,1.0,40.0,6.0,15.0,4.0,1254309 -3108134,1630216178,1,23,12,3,1630089488,2,1.0,15.0,3.0,15.0,4.0,1254309 -3108135,1630216812,4,19,0,1,1630089489,2,1.0,40.0,5.0,-9.0,4.0,1254310 -3108136,1630216810,2,21,13,2,1630089489,1,1.0,50.0,1.0,-9.0,4.0,1254310 -3108137,1630215694,1,24,0,1,1630089490,2,1.0,20.0,3.0,15.0,4.0,1254311 -3108138,1630215695,1,29,1,2,1630089490,1,1.0,31.0,3.0,15.0,4.0,1254311 -3108139,1630216091,1,28,0,1,1630089491,2,1.0,40.0,1.0,16.0,4.0,1254312 -3108140,1630216809,3,44,0,1,1630089492,1,3.0,-9.0,-9.0,-9.0,4.0,1254313 -3108141,1630216971,4,22,0,1,1630089493,2,1.0,25.0,1.0,15.0,4.0,1254314 -3108142,1630216389,1,20,0,1,1630089494,1,6.0,35.0,5.0,15.0,4.0,1254315 -3108143,1630216229,1,30,0,1,1630089495,1,1.0,55.0,1.0,-9.0,4.0,1254316 -3108144,1630215595,1,72,0,1,1630089496,2,6.0,-9.0,-9.0,-9.0,4.0,1254317 -3108145,1630215722,1,24,0,1,1630089497,1,1.0,35.0,1.0,-9.0,4.0,1254318 -3108146,1630215721,1,23,13,2,1630089497,2,6.0,20.0,4.0,16.0,4.0,1254318 -3108147,1630215611,1,22,0,1,1630089498,2,1.0,30.0,4.0,-9.0,4.0,1254319 -3108148,1630215612,1,27,13,2,1630089498,1,1.0,40.0,3.0,-9.0,4.0,1254319 -3108149,1630216933,4,26,0,1,1630089499,2,6.0,-9.0,-9.0,-9.0,4.0,1254320 -3108150,1630216934,4,26,1,2,1630089499,1,1.0,40.0,1.0,16.0,4.0,1254320 -3108151,1630215627,1,62,0,1,1630089500,1,6.0,-9.0,-9.0,-9.0,2.0,1254321 -3108152,1630215623,1,59,1,2,1630089500,2,6.0,-9.0,-9.0,-9.0,4.0,1254321 -3108153,1630215625,1,26,2,3,1630089500,2,1.0,30.0,1.0,-9.0,4.0,1254321 -3108154,1630215693,1,26,0,1,1630089501,2,3.0,14.0,3.0,-9.0,4.0,1254322 -3108155,1630216932,1,67,0,1,1630089502,1,1.0,40.0,1.0,-9.0,4.0,1254323 -3108156,1630216487,2,52,0,1,1630089503,2,1.0,40.0,1.0,-9.0,4.0,1254324 -3108157,1630216837,4,25,0,1,1630089504,1,1.0,30.0,1.0,-9.0,4.0,1254325 -3108158,1630216859,3,39,0,1,1630089505,1,6.0,-9.0,-9.0,-9.0,4.0,1254326 -3108159,1630216807,4,33,0,1,1630089506,2,1.0,55.0,1.0,-9.0,4.0,1254327 -3108160,1630216805,2,34,13,2,1630089506,1,1.0,40.0,4.0,16.0,4.0,1254327 -3108161,1630216558,2,44,0,1,1630089507,2,3.0,8.0,6.0,-9.0,4.0,1254328 -3108162,1630215580,2,79,0,1,1630089508,2,6.0,-9.0,-9.0,-9.0,4.0,1254329 -3108163,1630215837,1,29,0,1,1630089509,2,1.0,45.0,1.0,-9.0,4.0,1254330 -3108164,1630215838,1,29,1,2,1630089509,1,6.0,45.0,6.0,16.0,4.0,1254330 -3108165,1630215598,3,43,0,1,1630089510,1,1.0,60.0,1.0,-9.0,4.0,1254331 -3108166,1630215596,3,65,6,2,1630089510,2,6.0,-9.0,-9.0,-9.0,4.0,1254331 -3108167,1630215597,1,20,11,3,1630089510,2,1.0,25.0,4.0,-9.0,4.0,1254331 -3108168,1630215599,1,35,13,4,1630089510,1,1.0,25.0,1.0,-9.0,4.0,1254331 -3108169,1630216970,4,30,0,1,1630089511,2,1.0,40.0,1.0,-9.0,4.0,1254332 -3108170,1630216083,1,24,0,1,1630089512,2,6.0,8.0,6.0,16.0,4.0,1254333 -3108171,1630216086,4,24,12,2,1630089512,2,6.0,-9.0,-9.0,16.0,4.0,1254333 -3108172,1630215820,1,37,0,1,1630089513,1,1.0,33.0,1.0,-9.0,4.0,1254334 -3108173,1630215818,1,27,13,2,1630089513,2,6.0,40.0,5.0,-9.0,4.0,1254334 -3108174,1630215602,3,84,0,1,1630089514,2,6.0,-9.0,-9.0,-9.0,4.0,1254335 -3108175,1630215603,3,55,2,2,1630089514,2,1.0,40.0,1.0,16.0,4.0,1254335 -3108176,1630215604,3,52,2,3,1630089514,2,1.0,40.0,1.0,-9.0,4.0,1254335 -3108177,1630215664,1,30,0,1,1630089515,2,3.0,40.0,2.0,-9.0,4.0,1254336 -3108178,1630216791,2,41,0,1,1630089516,2,1.0,40.0,1.0,-9.0,4.0,1254337 -3108179,1630215805,1,27,0,1,1630089517,1,6.0,-9.0,-9.0,16.0,4.0,1254338 -3108180,1630215804,1,24,1,2,1630089517,2,6.0,-9.0,-9.0,16.0,4.0,1254338 -3108181,1630215773,1,27,0,1,1630089518,1,1.0,50.0,1.0,-9.0,4.0,1254339 -3108182,1630215768,3,28,1,2,1630089518,2,6.0,45.0,4.0,-9.0,4.0,1254339 -3108183,1630215687,1,55,0,1,1630089519,2,3.0,-9.0,-9.0,15.0,4.0,1254340 -3108184,1630215688,4,19,2,2,1630089519,2,6.0,-9.0,-9.0,15.0,4.0,1254340 -3108185,1630217005,4,26,0,1,1630089520,1,6.0,36.0,5.0,-9.0,4.0,1254341 -3108186,1630217008,4,25,12,2,1630089520,1,6.0,-9.0,-9.0,-9.0,4.0,1254341 -3108187,1630216159,1,20,0,1,1630089521,2,6.0,15.0,6.0,15.0,4.0,1254342 -3108188,1630216161,1,19,12,2,1630089521,2,1.0,30.0,1.0,15.0,4.0,1254342 -3108189,1630216298,1,24,0,1,1630089522,1,3.0,47.0,3.0,15.0,4.0,1254343 -3108190,1630215628,1,19,0,1,1630089523,2,1.0,55.0,4.0,-9.0,4.0,1254344 -3108191,1630215629,1,0,2,2,1630089523,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254344 -3108192,1630216369,1,26,0,1,1630089524,1,1.0,45.0,1.0,-9.0,4.0,1254345 -3108193,1630216373,4,25,13,2,1630089524,2,1.0,35.0,1.0,-9.0,4.0,1254345 -3108194,1630216870,4,50,0,1,1630089525,2,6.0,-9.0,-9.0,15.0,4.0,1254346 -3108195,1630216674,2,61,0,1,1630089526,2,6.0,-9.0,-9.0,-9.0,4.0,1254347 -3108196,1630216918,4,63,0,1,1630089527,2,6.0,-9.0,-9.0,-9.0,4.0,1254348 -3108197,1630215758,1,49,0,1,1630089528,2,6.0,-9.0,-9.0,-9.0,4.0,1254349 -3108198,1630216475,2,38,0,1,1630089529,2,3.0,28.0,6.0,-9.0,4.0,1254350 -3108199,1630216476,2,18,2,2,1630089529,1,3.0,-9.0,-9.0,14.0,4.0,1254350 -3108200,1630216878,4,37,0,1,1630089530,2,1.0,30.0,1.0,-9.0,4.0,1254351 -3108201,1630216994,4,25,0,1,1630089531,1,1.0,70.0,5.0,-9.0,2.0,1254352 -3108202,1630216953,4,30,0,1,1630089532,1,1.0,60.0,1.0,16.0,4.0,1254353 -3108203,1630216952,4,33,1,2,1630089532,2,1.0,60.0,1.0,16.0,4.0,1254353 -3108204,1630215915,1,54,0,1,1630089533,1,1.0,65.0,1.0,-9.0,4.0,1254354 -3108205,1630215914,1,45,1,2,1630089533,2,1.0,40.0,1.0,-9.0,4.0,1254354 -3108206,1630215574,4,74,0,1,1630089534,1,6.0,-9.0,-9.0,-9.0,2.0,1254355 -3108207,1630215572,2,74,1,2,1630089534,2,6.0,-9.0,-9.0,-9.0,4.0,1254355 -3108208,1630215573,2,15,7,3,1630089534,2,-9.0,-9.0,-9.0,12.0,-9.0,1254355 -3108209,1630215840,1,28,0,1,1630089535,1,1.0,40.0,1.0,16.0,4.0,1254356 -3108210,1630215839,1,27,12,2,1630089535,2,1.0,1.0,1.0,16.0,4.0,1254356 -3108211,1630215647,1,47,0,1,1630089536,2,1.0,32.0,1.0,15.0,4.0,1254357 -3108212,1630215648,1,53,1,2,1630089536,1,1.0,40.0,1.0,-9.0,4.0,1254357 -3108213,1630215649,1,10,2,3,1630089536,2,-9.0,-9.0,-9.0,7.0,-9.0,1254357 -3108214,1630216417,1,40,0,1,1630089537,1,6.0,-9.0,-9.0,-9.0,2.0,1254358 -3108215,1630216419,4,23,15,2,1630089537,2,6.0,30.0,6.0,-9.0,4.0,1254358 -3108216,1630216344,1,23,0,1,1630089538,1,1.0,40.0,1.0,-9.0,4.0,1254359 -3108217,1630216442,2,34,0,1,1630089539,2,3.0,-9.0,-9.0,15.0,4.0,1254360 -3108218,1630216443,2,15,2,2,1630089539,2,-9.0,-9.0,-9.0,12.0,-9.0,1254360 -3108219,1630216444,2,11,2,3,1630089539,2,-9.0,-9.0,-9.0,8.0,-9.0,1254360 -3108220,1630216445,2,9,2,4,1630089539,2,-9.0,-9.0,-9.0,6.0,-9.0,1254360 -3108221,1630216446,2,6,2,5,1630089539,2,-9.0,-9.0,-9.0,3.0,-9.0,1254360 -3108222,1630216996,4,27,0,1,1630089540,1,1.0,40.0,1.0,-9.0,4.0,1254361 -3108223,1630216559,2,30,0,1,1630089541,2,3.0,-9.0,-9.0,-9.0,4.0,1254362 -3108224,1630216560,2,25,10,2,1630089541,1,3.0,36.0,5.0,-9.0,4.0,1254362 -3108225,1630216940,4,31,0,1,1630089542,1,6.0,-9.0,-9.0,-9.0,4.0,1254363 -3108226,1630216937,4,30,1,2,1630089542,2,1.0,20.0,1.0,16.0,4.0,1254363 -3108227,1630216943,4,2,2,3,1630089542,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254363 -3108228,1630216815,4,44,0,1,1630089543,2,1.0,40.0,1.0,-9.0,4.0,1254364 -3108229,1630216814,2,56,1,2,1630089543,1,1.0,40.0,1.0,-9.0,4.0,1254364 -3108230,1630216818,4,8,2,3,1630089543,1,-9.0,-9.0,-9.0,5.0,-9.0,1254364 -3108231,1630216816,4,6,2,4,1630089543,2,-9.0,-9.0,-9.0,2.0,-9.0,1254364 -3108232,1630216817,4,6,2,5,1630089543,2,-9.0,-9.0,-9.0,2.0,-9.0,1254364 -3108233,1630216248,1,62,0,1,1630089544,1,1.0,40.0,1.0,16.0,4.0,1254365 -3108234,1630216249,1,38,12,2,1630089544,1,6.0,-9.0,-9.0,-9.0,4.0,1254365 -3108235,1630217002,4,26,0,1,1630089545,1,6.0,-9.0,-9.0,16.0,4.0,1254366 -3108236,1630216790,2,23,0,1,1630089546,2,6.0,-9.0,-9.0,-9.0,4.0,1254367 -3108237,1630215855,1,24,0,1,1630089547,2,1.0,40.0,1.0,-9.0,4.0,1254368 -3108238,1630215857,1,24,12,2,1630089547,2,1.0,20.0,1.0,16.0,4.0,1254368 -3108239,1630215859,1,24,12,3,1630089547,2,1.0,40.0,1.0,15.0,4.0,1254368 -3108240,1630215861,1,22,12,4,1630089547,2,3.0,-9.0,-9.0,16.0,4.0,1254368 -3108241,1630215863,1,21,12,5,1630089547,2,1.0,40.0,1.0,15.0,4.0,1254368 -3108242,1630216339,4,41,0,1,1630089548,2,1.0,40.0,1.0,-9.0,4.0,1254369 -3108243,1630216338,1,41,1,2,1630089548,1,1.0,40.0,5.0,-9.0,4.0,1254369 -3108244,1630216216,1,59,0,1,1630089549,1,1.0,50.0,1.0,-9.0,4.0,1254370 -3108245,1630216215,1,58,1,2,1630089549,2,1.0,50.0,1.0,-9.0,4.0,1254370 -3108246,1630216698,2,52,0,1,1630089550,2,6.0,-9.0,-9.0,-9.0,4.0,1254371 -3108247,1630215706,1,53,0,1,1630089551,2,1.0,50.0,1.0,-9.0,4.0,1254372 -3108248,1630216189,1,27,0,1,1630089552,1,1.0,45.0,1.0,-9.0,4.0,1254373 -3108249,1630216184,1,28,1,2,1630089552,2,1.0,52.0,4.0,-9.0,4.0,1254373 -3108250,1630216950,4,30,0,1,1630089553,2,1.0,44.0,1.0,-9.0,4.0,1254374 -3108251,1630216951,4,34,1,2,1630089553,1,1.0,40.0,2.0,-9.0,4.0,1254374 -3108252,1630215813,1,52,0,1,1630089554,1,1.0,84.0,1.0,-9.0,4.0,1254375 -3108253,1630215812,3,56,1,2,1630089554,2,6.0,-9.0,-9.0,-9.0,4.0,1254375 -3108254,1630216839,4,22,0,1,1630089555,1,2.0,20.0,4.0,16.0,4.0,1254376 -3108255,1630216842,4,39,0,1,1630089556,1,1.0,40.0,1.0,-9.0,4.0,1254377 -3108256,1630216608,2,38,0,1,1630089557,2,1.0,40.0,1.0,15.0,4.0,1254378 -3108257,1630216609,2,19,2,2,1630089557,2,6.0,-9.0,-9.0,15.0,4.0,1254378 -3108258,1630216610,2,8,2,3,1630089557,1,-9.0,-9.0,-9.0,4.0,-9.0,1254378 -3108259,1630216040,1,33,0,1,1630089558,2,1.0,40.0,1.0,-9.0,4.0,1254379 -3108260,1630216043,1,28,15,2,1630089558,2,1.0,30.0,1.0,16.0,4.0,1254379 -3108261,1630216049,1,28,15,3,1630089558,1,1.0,65.0,1.0,-9.0,4.0,1254379 -3108262,1630216052,1,25,15,4,1630089558,1,1.0,50.0,1.0,-9.0,4.0,1254379 -3108263,1630216046,1,24,15,5,1630089558,2,1.0,15.0,4.0,16.0,4.0,1254379 -3108264,1630215763,1,60,0,1,1630089559,2,6.0,-9.0,-9.0,-9.0,4.0,1254380 -3108265,1630216844,4,29,0,1,1630089560,1,1.0,45.0,1.0,-9.0,4.0,1254381 -3108266,1630216845,4,26,1,2,1630089560,2,6.0,30.0,6.0,-9.0,4.0,1254381 -3108267,1630215652,1,22,0,1,1630089561,2,1.0,45.0,4.0,-9.0,4.0,1254382 -3108268,1630215655,1,24,12,2,1630089561,2,1.0,50.0,1.0,-9.0,4.0,1254382 -3108269,1630215658,1,21,12,3,1630089561,2,1.0,35.0,3.0,-9.0,4.0,1254382 -3108270,1630216863,3,33,0,1,1630089562,1,1.0,40.0,1.0,-9.0,4.0,1254383 -3108271,1630216864,3,32,1,2,1630089562,2,1.0,25.0,4.0,-9.0,4.0,1254383 -3108272,1630216865,3,12,2,3,1630089562,2,-9.0,-9.0,-9.0,8.0,-9.0,1254383 -3108273,1630216866,3,10,2,4,1630089562,2,-9.0,-9.0,-9.0,6.0,-9.0,1254383 -3108274,1630216867,3,5,2,5,1630089562,1,-9.0,-9.0,-9.0,1.0,-9.0,1254383 -3108275,1630216129,1,31,0,1,1630089563,2,1.0,50.0,1.0,16.0,4.0,1254384 -3108276,1630216029,1,24,0,1,1630089564,2,1.0,24.0,1.0,-9.0,4.0,1254385 -3108277,1630216277,3,29,0,1,1630089565,1,1.0,43.0,1.0,-9.0,4.0,1254386 -3108278,1630216786,2,31,0,1,1630089566,1,6.0,-9.0,-9.0,-9.0,4.0,1254387 -3108279,1630216789,2,0,2,2,1630089566,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254387 -3108280,1630216783,2,38,13,3,1630089566,2,6.0,-9.0,-9.0,-9.0,4.0,1254387 -3108281,1630216746,2,24,0,1,1630089567,2,6.0,-9.0,-9.0,-9.0,4.0,1254388 -3108282,1630216748,2,7,2,2,1630089567,2,-9.0,-9.0,-9.0,2.0,-9.0,1254388 -3108283,1630216749,2,5,2,3,1630089567,2,-9.0,-9.0,-9.0,1.0,-9.0,1254388 -3108284,1630216750,2,0,2,4,1630089567,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254388 -3108285,1630216747,2,25,5,5,1630089567,2,6.0,-9.0,-9.0,-9.0,4.0,1254388 -3108286,1630215754,3,61,0,1,1630089568,2,6.0,-9.0,-9.0,-9.0,4.0,1254389 -3108287,1630216471,2,60,0,1,1630089569,2,1.0,40.0,1.0,-9.0,4.0,1254390 -3108288,1630216569,2,20,0,1,1630089570,2,6.0,-9.0,-9.0,-9.0,4.0,1254391 -3108289,1630216577,2,1,2,2,1630089570,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254391 -3108290,1630216573,2,25,12,3,1630089570,1,3.0,-9.0,-9.0,-9.0,4.0,1254391 -3108291,1630216725,2,33,0,1,1630089571,2,3.0,-9.0,-9.0,-9.0,4.0,1254392 -3108292,1630216726,2,10,2,2,1630089571,1,-9.0,-9.0,-9.0,7.0,-9.0,1254392 -3108293,1630216728,2,5,2,3,1630089571,2,-9.0,-9.0,-9.0,2.0,-9.0,1254392 -3108294,1630216727,2,4,2,4,1630089571,1,-9.0,-9.0,-9.0,1.0,-9.0,1254392 -3108295,1630216053,1,55,0,1,1630089572,2,6.0,-9.0,-9.0,-9.0,4.0,1254393 -3108296,1630216054,2,63,13,2,1630089572,1,6.0,-9.0,-9.0,-9.0,4.0,1254393 -3108297,1630215577,2,78,0,1,1630089573,2,6.0,-9.0,-9.0,-9.0,4.0,1254394 -3108298,1630216260,1,24,0,1,1630089574,1,6.0,-9.0,-9.0,16.0,4.0,1254395 -3108299,1630216107,1,21,0,1,1630089575,2,6.0,10.0,5.0,16.0,4.0,1254396 -3108300,1630216113,1,20,12,2,1630089575,2,6.0,20.0,4.0,15.0,4.0,1254396 -3108301,1630216754,2,42,0,1,1630089576,2,6.0,-9.0,-9.0,-9.0,4.0,1254397 -3108302,1630216755,2,3,2,2,1630089576,2,-9.0,-9.0,-9.0,1.0,-9.0,1254397 -3108303,1630215886,1,23,0,1,1630089577,1,1.0,35.0,1.0,16.0,4.0,1254398 -3108304,1630215897,4,22,11,2,1630089577,2,1.0,35.0,1.0,-9.0,4.0,1254398 -3108305,1630215875,1,22,11,3,1630089577,2,1.0,25.0,4.0,15.0,4.0,1254398 -3108306,1630216820,4,72,0,1,1630089578,2,6.0,-9.0,-9.0,-9.0,4.0,1254399 -3108307,1630216691,2,57,0,1,1630089579,2,6.0,-9.0,-9.0,-9.0,4.0,1254400 -3108308,1630216692,2,38,2,2,1630089579,1,6.0,-9.0,-9.0,-9.0,4.0,1254400 -3108309,1630216693,2,20,2,3,1630089579,1,6.0,-9.0,-9.0,-9.0,4.0,1254400 -3108310,1630216173,1,56,0,1,1630089580,2,1.0,50.0,1.0,-9.0,4.0,1254401 -3108311,1630216311,1,64,0,1,1630089581,1,6.0,-9.0,-9.0,-9.0,2.0,1254402 -3108312,1630216473,2,47,0,1,1630089582,2,6.0,-9.0,-9.0,15.0,4.0,1254403 -3108313,1630216363,1,64,0,1,1630089583,1,6.0,-9.0,-9.0,-9.0,4.0,1254404 -3108314,1630216516,2,23,0,1,1630089584,2,6.0,-9.0,-9.0,-9.0,4.0,1254405 -3108315,1630216519,2,4,2,2,1630089584,2,-9.0,-9.0,-9.0,1.0,-9.0,1254405 -3108316,1630216518,2,1,2,3,1630089584,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254405 -3108317,1630216517,2,51,10,4,1630089584,2,6.0,-9.0,-9.0,-9.0,4.0,1254405 -3108318,1630216520,2,2,10,5,1630089584,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254405 -3108319,1630216256,1,59,0,1,1630089585,1,1.0,55.0,1.0,-9.0,4.0,1254406 -3108320,1630215635,3,37,0,1,1630089586,2,6.0,42.0,4.0,-9.0,4.0,1254407 -3108321,1630215639,3,16,2,2,1630089586,1,6.0,-9.0,-9.0,12.0,-9.0,1254407 -3108322,1630216555,2,39,0,1,1630089587,2,6.0,-9.0,-9.0,-9.0,4.0,1254408 -3108323,1630216556,2,17,2,2,1630089587,1,6.0,-9.0,-9.0,13.0,4.0,1254408 -3108324,1630216557,2,15,2,3,1630089587,1,-9.0,-9.0,-9.0,11.0,-9.0,1254408 -3108325,1630216743,2,40,0,1,1630089588,2,1.0,30.0,1.0,-9.0,4.0,1254409 -3108326,1630216745,2,12,2,2,1630089588,2,-9.0,-9.0,-9.0,9.0,-9.0,1254409 -3108327,1630216744,2,49,13,3,1630089588,1,1.0,30.0,1.0,-9.0,4.0,1254409 -3108328,1630216169,1,37,0,1,1630089589,2,6.0,-9.0,-9.0,-9.0,4.0,1254410 -3108329,1630216175,1,22,0,1,1630089590,2,1.0,20.0,1.0,15.0,4.0,1254411 -3108330,1630216177,1,18,5,2,1630089590,2,1.0,40.0,6.0,15.0,4.0,1254411 -3108331,1630216179,1,23,12,3,1630089590,2,1.0,15.0,3.0,15.0,4.0,1254411 -3108332,1630215699,1,43,0,1,1630089591,2,1.0,40.0,1.0,-9.0,4.0,1254412 -3108333,1630215701,4,43,1,2,1630089591,1,1.0,35.0,1.0,-9.0,2.0,1254412 -3108334,1630215703,4,13,2,3,1630089591,2,-9.0,-9.0,-9.0,10.0,-9.0,1254412 -3108335,1630215705,4,10,2,4,1630089591,2,-9.0,-9.0,-9.0,7.0,-9.0,1254412 -3108336,1630216997,4,45,0,1,1630089592,1,1.0,36.0,1.0,-9.0,4.0,1254413 -3108337,1630216999,4,23,0,1,1630089593,1,1.0,80.0,1.0,-9.0,4.0,1254414 -3108338,1630215691,1,51,0,1,1630089594,2,6.0,-9.0,-9.0,-9.0,4.0,1254415 -3108339,1630215692,1,44,12,2,1630089594,1,3.0,15.0,6.0,-9.0,4.0,1254415 -3108340,1630216801,2,32,0,1,1630089595,1,6.0,56.0,1.0,-9.0,4.0,1254416 -3108341,1630216802,2,29,12,2,1630089595,1,6.0,-9.0,-9.0,-9.0,4.0,1254416 -3108342,1630216535,2,43,0,1,1630089596,2,6.0,-9.0,-9.0,-9.0,4.0,1254417 -3108343,1630216538,2,20,2,2,1630089596,2,6.0,-9.0,-9.0,-9.0,4.0,1254417 -3108344,1630216544,2,20,2,3,1630089596,1,6.0,-9.0,-9.0,-9.0,4.0,1254417 -3108345,1630216541,2,19,2,4,1630089596,2,6.0,-9.0,-9.0,14.0,4.0,1254417 -3108346,1630216547,2,0,7,5,1630089596,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254417 -3108347,1630216508,2,23,0,1,1630089597,1,1.0,8.0,1.0,15.0,4.0,1254418 -3108348,1630216510,2,4,2,2,1630089597,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254418 -3108349,1630216506,2,21,13,3,1630089597,2,6.0,-9.0,-9.0,-9.0,4.0,1254418 -3108350,1630216931,1,77,0,1,1630089598,1,6.0,-9.0,-9.0,-9.0,2.0,1254419 -3108351,1630216583,2,20,0,1,1630089599,2,3.0,48.0,6.0,15.0,4.0,1254420 -3108352,1630216585,2,0,2,2,1630089599,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254420 -3108353,1630216584,2,24,15,3,1630089599,1,1.0,30.0,1.0,-9.0,4.0,1254420 -3108354,1630216214,3,37,0,1,1630089600,2,1.0,40.0,1.0,-9.0,4.0,1254421 -3108355,1630216454,2,45,0,1,1630089601,2,6.0,-9.0,-9.0,-9.0,4.0,1254422 -3108356,1630216456,2,11,7,2,1630089601,2,-9.0,-9.0,-9.0,6.0,-9.0,1254422 -3108357,1630216455,2,45,13,3,1630089601,1,3.0,-9.0,-9.0,-9.0,4.0,1254422 -3108358,1630216027,1,33,0,1,1630089602,2,1.0,50.0,1.0,-9.0,4.0,1254423 -3108359,1630215689,1,27,0,1,1630089603,2,1.0,20.0,1.0,16.0,4.0,1254424 -3108360,1630215690,1,26,1,2,1630089603,1,3.0,-9.0,-9.0,16.0,4.0,1254424 -3108361,1630216099,4,46,0,1,1630089604,1,1.0,40.0,1.0,-9.0,2.0,1254425 -3108362,1630216097,1,53,1,2,1630089604,2,1.0,20.0,1.0,-9.0,4.0,1254425 -3108363,1630216101,4,17,2,3,1630089604,2,6.0,-9.0,-9.0,13.0,4.0,1254425 -3108364,1630216452,2,24,0,1,1630089605,2,3.0,32.0,5.0,-9.0,4.0,1254426 -3108365,1630216453,2,8,2,2,1630089605,1,-9.0,-9.0,-9.0,4.0,-9.0,1254426 -3108366,1630216667,2,53,0,1,1630089606,2,6.0,-9.0,-9.0,-9.0,4.0,1254427 -3108367,1630216668,2,52,1,2,1630089606,1,3.0,-9.0,-9.0,-9.0,4.0,1254427 -3108368,1630216359,1,33,0,1,1630089607,1,1.0,25.0,1.0,16.0,4.0,1254428 -3108369,1630216360,4,30,1,2,1630089607,2,1.0,25.0,1.0,15.0,4.0,1254428 -3108370,1630215932,1,42,0,1,1630089608,1,1.0,30.0,1.0,-9.0,4.0,1254429 -3108371,1630215929,1,30,1,2,1630089608,2,1.0,43.0,1.0,-9.0,4.0,1254429 -3108372,1630215935,1,0,2,3,1630089608,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254429 -3108373,1630216843,3,58,0,1,1630089609,1,1.0,35.0,3.0,-9.0,4.0,1254430 -3108374,1630215906,1,35,0,1,1630089610,2,6.0,30.0,3.0,-9.0,4.0,1254431 -3108375,1630215908,1,0,2,2,1630089610,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254431 -3108376,1630215907,1,38,13,3,1630089610,1,6.0,-9.0,-9.0,-9.0,4.0,1254431 -3108377,1630215587,1,69,0,1,1630089611,2,6.0,-9.0,-9.0,-9.0,4.0,1254432 -3108378,1630216321,4,28,0,1,1630089612,1,6.0,-9.0,-9.0,16.0,4.0,1254433 -3108379,1630216315,1,28,12,2,1630089612,1,6.0,-9.0,-9.0,16.0,4.0,1254433 -3108380,1630216318,1,25,12,3,1630089612,1,6.0,-9.0,-9.0,16.0,4.0,1254433 -3108381,1630215584,1,69,0,1,1630089613,2,6.0,-9.0,-9.0,-9.0,4.0,1254434 -3108382,1630216729,2,38,0,1,1630089614,2,1.0,36.0,1.0,-9.0,4.0,1254435 -3108383,1630216730,2,4,2,2,1630089614,2,-9.0,-9.0,-9.0,1.0,-9.0,1254435 -3108384,1630216582,2,52,0,1,1630089615,1,1.0,40.0,1.0,-9.0,2.0,1254436 -3108385,1630216580,2,58,5,2,1630089615,2,1.0,35.0,1.0,-9.0,4.0,1254436 -3108386,1630216581,2,23,10,3,1630089615,2,1.0,12.0,3.0,15.0,4.0,1254436 -3108387,1630215665,1,48,0,1,1630089616,2,2.0,55.0,4.0,-9.0,4.0,1254437 -3108388,1630215666,3,29,12,2,1630089616,1,1.0,38.0,1.0,-9.0,4.0,1254437 -3108389,1630216561,2,29,0,1,1630089617,2,1.0,40.0,4.0,-9.0,4.0,1254438 -3108390,1630216562,2,9,2,2,1630089617,1,-9.0,-9.0,-9.0,5.0,-9.0,1254438 -3108391,1630216767,3,35,0,1,1630089618,2,3.0,30.0,5.0,-9.0,4.0,1254439 -3108392,1630216336,1,40,0,1,1630089619,1,1.0,50.0,1.0,-9.0,4.0,1254440 -3108393,1630216213,1,24,0,1,1630089620,2,6.0,-9.0,-9.0,16.0,4.0,1254441 -3108394,1630216883,3,27,0,1,1630089621,2,1.0,40.0,1.0,-9.0,4.0,1254442 -3108395,1630216235,3,40,0,1,1630089622,1,1.0,55.0,1.0,-9.0,4.0,1254443 -3108396,1630216239,2,41,11,2,1630089622,2,1.0,50.0,1.0,16.0,4.0,1254443 -3108397,1630216243,2,5,11,3,1630089622,2,-9.0,-9.0,-9.0,1.0,-9.0,1254443 -3108398,1630216463,2,24,0,1,1630089623,2,6.0,10.0,6.0,15.0,4.0,1254444 -3108399,1630216067,1,36,0,1,1630089624,1,1.0,45.0,1.0,-9.0,4.0,1254445 -3108400,1630216066,1,30,1,2,1630089624,2,6.0,-9.0,-9.0,-9.0,4.0,1254445 -3108401,1630216069,1,6,2,3,1630089624,1,-9.0,-9.0,-9.0,2.0,-9.0,1254445 -3108402,1630216070,1,3,2,4,1630089624,1,-9.0,-9.0,-9.0,1.0,-9.0,1254445 -3108403,1630216068,1,0,2,5,1630089624,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254445 -3108404,1630216401,3,30,0,1,1630089625,1,1.0,45.0,1.0,-9.0,4.0,1254446 -3108405,1630216390,1,33,0,1,1630089626,1,1.0,44.0,1.0,-9.0,4.0,1254447 -3108406,1630216391,4,31,1,2,1630089626,2,3.0,10.0,4.0,-9.0,4.0,1254447 -3108407,1630216281,1,19,0,1,1630089627,1,6.0,-9.0,-9.0,15.0,4.0,1254448 -3108408,1630216285,1,19,12,2,1630089627,1,1.0,30.0,1.0,15.0,4.0,1254448 -3108409,1630216289,1,19,12,3,1630089627,1,6.0,-9.0,-9.0,15.0,4.0,1254448 -3108410,1630216615,2,44,0,1,1630089628,2,6.0,-9.0,-9.0,-9.0,4.0,1254449 -3108411,1630216965,4,28,0,1,1630089629,1,6.0,-9.0,-9.0,15.0,4.0,1254450 -3108412,1630216963,4,31,1,2,1630089629,2,1.0,40.0,1.0,16.0,4.0,1254450 -3108413,1630216967,4,1,2,3,1630089629,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254450 -3108414,1630215822,3,49,0,1,1630089630,2,1.0,45.0,3.0,-9.0,4.0,1254451 -3108415,1630216346,3,54,0,1,1630089631,1,1.0,40.0,1.0,-9.0,4.0,1254452 -3108416,1630216662,3,44,0,1,1630089632,2,1.0,40.0,1.0,-9.0,4.0,1254453 -3108417,1630216636,2,60,5,2,1630089632,2,6.0,-9.0,-9.0,-9.0,4.0,1254453 -3108418,1630216649,2,74,6,3,1630089632,1,6.0,-9.0,-9.0,-9.0,2.0,1254453 -3108419,1630216991,4,27,0,1,1630089633,1,1.0,54.0,2.0,16.0,4.0,1254454 -3108420,1630216990,4,26,1,2,1630089633,2,1.0,15.0,6.0,16.0,4.0,1254454 -3108421,1630216352,1,49,0,1,1630089634,1,1.0,52.0,1.0,-9.0,4.0,1254455 -3108422,1630216353,1,33,12,2,1630089634,1,6.0,-9.0,-9.0,-9.0,4.0,1254455 -3108423,1630216354,1,54,13,3,1630089634,1,1.0,48.0,1.0,-9.0,4.0,1254455 -3108424,1630216030,1,64,0,1,1630089635,2,6.0,-9.0,-9.0,-9.0,4.0,1254456 -3108425,1630216031,1,41,2,2,1630089635,1,6.0,-9.0,-9.0,-9.0,4.0,1254456 -3108426,1630216032,4,33,10,3,1630089635,1,6.0,-9.0,-9.0,-9.0,4.0,1254456 -3108427,1630215973,1,27,0,1,1630089636,2,6.0,37.0,5.0,16.0,4.0,1254457 -3108428,1630216171,1,26,0,1,1630089637,2,6.0,-9.0,-9.0,16.0,4.0,1254458 -3108429,1630216124,1,49,0,1,1630089638,2,1.0,40.0,1.0,-9.0,4.0,1254459 -3108430,1630216125,1,14,2,2,1630089638,2,-9.0,-9.0,-9.0,10.0,-9.0,1254459 -3108431,1630216126,1,9,2,3,1630089638,1,-9.0,-9.0,-9.0,5.0,-9.0,1254459 -3108432,1630216157,1,31,0,1,1630089639,1,1.0,40.0,1.0,-9.0,4.0,1254460 -3108433,1630216156,1,32,1,2,1630089639,2,1.0,55.0,1.0,-9.0,4.0,1254460 -3108434,1630215581,2,85,0,1,1630089640,2,6.0,-9.0,-9.0,-9.0,4.0,1254461 -3108435,1630215903,1,23,0,1,1630089641,2,1.0,60.0,4.0,16.0,4.0,1254462 -3108436,1630215904,1,22,12,2,1630089641,2,1.0,40.0,1.0,-9.0,4.0,1254462 -3108437,1630216514,2,33,0,1,1630089642,2,3.0,42.0,6.0,-9.0,4.0,1254463 -3108438,1630216515,2,14,2,2,1630089642,2,-9.0,-9.0,-9.0,11.0,-9.0,1254463 -3108439,1630216989,4,27,0,1,1630089643,1,1.0,80.0,1.0,-9.0,4.0,1254464 -3108440,1630216977,4,26,1,2,1630089643,2,1.0,80.0,3.0,-9.0,4.0,1254464 -3108441,1630216983,4,19,5,3,1630089643,2,6.0,-9.0,-9.0,15.0,4.0,1254464 -3108442,1630216813,4,19,0,1,1630089644,2,1.0,40.0,5.0,-9.0,4.0,1254465 -3108443,1630216811,2,21,13,2,1630089644,1,1.0,50.0,1.0,-9.0,4.0,1254465 -3108444,1630216222,1,34,0,1,1630089645,1,1.0,17.0,3.0,-9.0,4.0,1254466 -3108445,1630216227,2,39,1,2,1630089645,2,1.0,45.0,1.0,-9.0,4.0,1254466 -3108446,1630216413,3,48,0,1,1630089646,1,6.0,-9.0,-9.0,-9.0,4.0,1254467 -3108447,1630216415,3,47,5,2,1630089646,1,6.0,-9.0,-9.0,-9.0,4.0,1254467 -3108448,1630216702,2,29,0,1,1630089647,2,1.0,40.0,1.0,16.0,4.0,1254468 -3108449,1630215969,1,32,0,1,1630089648,1,1.0,40.0,3.0,16.0,4.0,1254469 -3108450,1630215955,1,40,12,2,1630089648,2,1.0,40.0,1.0,16.0,4.0,1254469 -3108451,1630215962,1,30,13,3,1630089648,2,2.0,40.0,3.0,16.0,4.0,1254469 -3108452,1630216460,2,61,0,1,1630089649,2,6.0,-9.0,-9.0,-9.0,4.0,1254470 -3108453,1630216461,2,17,7,2,1630089649,2,6.0,-9.0,-9.0,14.0,4.0,1254470 -3108454,1630216687,2,23,0,1,1630089650,2,6.0,-9.0,-9.0,-9.0,4.0,1254471 -3108455,1630216688,2,21,5,2,1630089650,2,6.0,-9.0,-9.0,-9.0,4.0,1254471 -3108456,1630216689,2,4,10,3,1630089650,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254471 -3108457,1630216690,2,1,10,4,1630089650,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254471 -3108458,1630216868,3,51,0,1,1630089651,2,1.0,40.0,1.0,-9.0,4.0,1254472 -3108459,1630216061,1,24,0,1,1630089652,1,3.0,40.0,5.0,16.0,4.0,1254473 -3108460,1630216059,1,26,13,2,1630089652,2,3.0,25.0,4.0,-9.0,4.0,1254473 -3108461,1630216821,4,86,0,1,1630089653,2,6.0,-9.0,-9.0,-9.0,4.0,1254474 -3108462,1630215676,1,53,0,1,1630089654,2,1.0,40.0,1.0,-9.0,4.0,1254475 -3108463,1630215677,1,23,5,2,1630089654,2,3.0,-9.0,-9.0,-9.0,4.0,1254475 -3108464,1630215678,1,40,10,3,1630089654,2,6.0,-9.0,-9.0,-9.0,4.0,1254475 -3108465,1630215679,1,18,10,4,1630089654,2,6.0,-9.0,-9.0,-9.0,4.0,1254475 -3108466,1630215680,1,21,15,5,1630089654,1,1.0,40.0,1.0,-9.0,4.0,1254475 -3108467,1630216712,2,58,0,1,1630089655,1,6.0,-9.0,-9.0,-9.0,2.0,1254476 -3108468,1630216711,2,56,12,2,1630089655,2,6.0,-9.0,-9.0,15.0,4.0,1254476 -3108469,1630216440,1,29,0,1,1630089656,1,1.0,35.0,1.0,-9.0,4.0,1254477 -3108470,1630215898,1,63,0,1,1630089657,2,6.0,-9.0,-9.0,-9.0,4.0,1254478 -3108471,1630215899,2,82,1,2,1630089657,1,6.0,-9.0,-9.0,-9.0,2.0,1254478 -3108472,1630216365,1,29,0,1,1630089658,1,1.0,40.0,1.0,16.0,4.0,1254479 -3108473,1630216245,1,29,0,1,1630089659,1,6.0,40.0,3.0,16.0,4.0,1254480 -3108474,1630216247,1,27,12,2,1630089659,1,6.0,40.0,5.0,-9.0,4.0,1254480 -3108475,1630215842,4,40,0,1,1630089660,1,1.0,60.0,1.0,-9.0,4.0,1254481 -3108476,1630215841,1,33,13,2,1630089660,2,1.0,40.0,1.0,-9.0,4.0,1254481 -3108477,1630215583,2,79,0,1,1630089661,2,6.0,-9.0,-9.0,-9.0,4.0,1254482 -3108478,1630215738,1,25,0,1,1630089662,2,1.0,45.0,1.0,16.0,4.0,1254483 -3108479,1630215752,4,25,1,2,1630089662,1,1.0,40.0,1.0,16.0,4.0,1254483 -3108480,1630217010,3,69,0,1,1630089663,1,1.0,40.0,1.0,-9.0,4.0,1254484 -3108481,1630216808,2,20,0,1,1630089664,1,1.0,40.0,1.0,-9.0,4.0,1254485 -3108482,1630215591,1,86,0,1,1630089665,1,6.0,-9.0,-9.0,-9.0,4.0,1254486 -3108483,1630215590,1,76,1,2,1630089665,2,6.0,-9.0,-9.0,-9.0,4.0,1254486 -3108484,1630216474,2,60,0,1,1630089666,2,6.0,-9.0,-9.0,-9.0,4.0,1254487 -3108485,1630217011,3,67,0,1,1630089667,1,6.0,-9.0,-9.0,-9.0,2.0,1254488 -3108486,1630215576,2,70,0,1,1630089668,2,6.0,-9.0,-9.0,-9.0,4.0,1254489 -3108487,1630216477,2,61,0,1,1630089669,2,6.0,-9.0,-9.0,-9.0,4.0,1254490 -3108488,1630216478,2,45,2,2,1630089669,1,6.0,-9.0,-9.0,-9.0,4.0,1254490 -3108489,1630216479,2,69,5,3,1630089669,1,6.0,-9.0,-9.0,-9.0,4.0,1254490 -3108490,1630215926,1,63,0,1,1630089670,1,1.0,47.0,1.0,-9.0,4.0,1254491 -3108491,1630215924,1,59,1,2,1630089670,2,1.0,45.0,1.0,-9.0,4.0,1254491 -3108492,1630216565,2,59,0,1,1630089671,2,1.0,45.0,1.0,-9.0,4.0,1254492 -3108493,1630216949,4,23,0,1,1630089672,2,6.0,-9.0,-9.0,16.0,4.0,1254493 -3108494,1630216697,2,26,0,1,1630089673,1,1.0,52.0,1.0,-9.0,4.0,1254494 -3108495,1630216696,2,22,1,2,1630089673,2,1.0,40.0,1.0,-9.0,4.0,1254494 -3108496,1630216511,2,45,0,1,1630089674,2,6.0,-9.0,-9.0,-9.0,4.0,1254495 -3108497,1630216512,2,27,2,2,1630089674,2,6.0,-9.0,-9.0,-9.0,4.0,1254495 -3108498,1630216513,2,35,12,3,1630089674,1,6.0,40.0,6.0,-9.0,4.0,1254495 -3108499,1630216133,1,25,0,1,1630089675,1,6.0,-9.0,-9.0,16.0,4.0,1254496 -3108500,1630216131,1,26,1,2,1630089675,2,1.0,50.0,1.0,-9.0,4.0,1254496 -3108501,1630216833,4,49,0,1,1630089676,1,3.0,50.0,6.0,-9.0,2.0,1254497 -3108502,1630216834,4,50,1,2,1630089676,2,1.0,40.0,1.0,-9.0,2.0,1254497 -3108503,1630216835,4,94,8,3,1630089676,1,6.0,-9.0,-9.0,-9.0,2.0,1254497 -3108504,1630215723,1,58,0,1,1630089677,2,1.0,40.0,1.0,-9.0,4.0,1254498 -3108505,1630216819,2,58,0,1,1630089678,1,6.0,-9.0,-9.0,-9.0,4.0,1254499 -3108506,1630216930,1,66,0,1,1630089679,1,6.0,-9.0,-9.0,-9.0,4.0,1254500 -3108507,1630216493,2,24,0,1,1630089680,2,3.0,-9.0,-9.0,15.0,4.0,1254501 -3108508,1630216495,2,24,1,2,1630089680,1,6.0,-9.0,-9.0,15.0,4.0,1254501 -3108509,1630216494,2,59,6,3,1630089680,2,1.0,25.0,1.0,-9.0,4.0,1254501 -3108510,1630216425,1,28,0,1,1630089681,1,1.0,40.0,1.0,16.0,4.0,1254502 -3108511,1630216426,4,28,13,2,1630089681,2,1.0,35.0,3.0,-9.0,4.0,1254502 -3108512,1630216163,4,60,0,1,1630089682,1,1.0,32.0,1.0,-9.0,4.0,1254503 -3108513,1630216162,1,54,1,2,1630089682,2,6.0,-9.0,-9.0,-9.0,4.0,1254503 -3108514,1630216164,4,30,2,3,1630089682,2,1.0,40.0,5.0,-9.0,4.0,1254503 -3108515,1630216803,2,41,0,1,1630089683,1,3.0,50.0,4.0,-9.0,4.0,1254504 -3108516,1630216704,2,37,0,1,1630089684,2,1.0,40.0,4.0,-9.0,4.0,1254505 -3108517,1630216706,2,44,1,2,1630089684,1,1.0,40.0,1.0,-9.0,4.0,1254505 -3108518,1630216705,2,8,2,3,1630089684,1,-9.0,-9.0,-9.0,5.0,-9.0,1254505 -3108519,1630216707,2,4,2,4,1630089684,2,-9.0,-9.0,-9.0,1.0,-9.0,1254505 -3108520,1630216708,2,1,2,5,1630089684,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254505 -3108521,1630216703,2,22,0,1,1630089685,2,1.0,40.0,1.0,-9.0,4.0,1254506 -3108522,1630216907,4,50,0,1,1630089686,2,1.0,40.0,1.0,-9.0,4.0,1254507 -3108523,1630215606,1,70,0,1,1630089687,2,6.0,-9.0,-9.0,-9.0,4.0,1254508 -3108524,1630215607,1,25,7,2,1630089687,2,3.0,-9.0,-9.0,-9.0,4.0,1254508 -3108525,1630215608,1,6,10,3,1630089687,1,-9.0,-9.0,-9.0,3.0,-9.0,1254508 -3108526,1630215713,1,25,0,1,1630089688,2,1.0,40.0,1.0,-9.0,4.0,1254509 -3108527,1630215714,1,26,12,2,1630089688,1,1.0,30.0,1.0,16.0,4.0,1254509 -3108528,1630215715,1,26,12,3,1630089688,1,1.0,55.0,1.0,-9.0,4.0,1254509 -3108529,1630215716,1,25,13,4,1630089688,1,1.0,35.0,4.0,-9.0,4.0,1254509 -3108530,1630215816,1,68,0,1,1630089689,1,6.0,-9.0,-9.0,-9.0,2.0,1254510 -3108531,1630215814,1,63,1,2,1630089689,2,1.0,32.0,1.0,-9.0,4.0,1254510 -3108532,1630215815,1,26,2,3,1630089689,1,1.0,30.0,1.0,15.0,4.0,1254510 -3108533,1630216146,1,22,0,1,1630089690,2,1.0,20.0,4.0,15.0,4.0,1254511 -3108534,1630216147,1,22,12,2,1630089690,2,1.0,30.0,1.0,16.0,4.0,1254511 -3108535,1630216799,2,23,0,1,1630089691,1,6.0,40.0,1.0,15.0,4.0,1254512 -3108536,1630216800,2,62,6,2,1630089691,1,1.0,40.0,1.0,-9.0,4.0,1254512 -3108537,1630216682,2,30,0,1,1630089692,2,1.0,15.0,4.0,-9.0,4.0,1254513 -3108538,1630216683,2,30,1,2,1630089692,1,6.0,-9.0,-9.0,-9.0,4.0,1254513 -3108539,1630216620,2,37,0,1,1630089693,2,6.0,-9.0,-9.0,-9.0,4.0,1254514 -3108540,1630216623,2,40,1,2,1630089693,1,6.0,-9.0,-9.0,-9.0,4.0,1254514 -3108541,1630216621,2,8,2,3,1630089693,1,-9.0,-9.0,-9.0,3.0,-9.0,1254514 -3108542,1630216622,2,5,2,4,1630089693,1,-9.0,-9.0,-9.0,2.0,-9.0,1254514 -3108543,1630215600,1,94,0,1,1630089694,2,6.0,-9.0,-9.0,16.0,4.0,1254515 -3108544,1630215828,4,32,0,1,1630089695,1,3.0,-9.0,-9.0,16.0,4.0,1254516 -3108545,1630215825,1,29,12,2,1630089695,2,6.0,-9.0,-9.0,-9.0,4.0,1254516 -3108546,1630215826,1,27,12,3,1630089695,2,6.0,-9.0,-9.0,-9.0,4.0,1254516 -3108547,1630215829,4,26,12,4,1630089695,2,1.0,60.0,1.0,-9.0,4.0,1254516 -3108548,1630215827,3,26,12,5,1630089695,2,1.0,33.0,3.0,-9.0,4.0,1254516 -3108549,1630215582,2,85,0,1,1630089696,2,6.0,-9.0,-9.0,-9.0,4.0,1254517 -3108550,1630216871,4,58,0,1,1630089697,2,1.0,40.0,1.0,-9.0,4.0,1254518 -3108551,1630215948,1,55,0,1,1630089698,2,1.0,42.0,1.0,-9.0,4.0,1254519 -3108552,1630216676,2,50,0,1,1630089699,2,1.0,65.0,1.0,-9.0,4.0,1254520 -3108553,1630216677,2,54,1,2,1630089699,1,1.0,40.0,1.0,-9.0,4.0,1254520 -3108554,1630216678,2,16,2,3,1630089699,2,6.0,-9.0,-9.0,12.0,-9.0,1254520 -3108555,1630216771,2,22,0,1,1630089700,2,1.0,20.0,1.0,15.0,4.0,1254521 -3108556,1630216772,2,3,2,2,1630089700,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254521 -3108557,1630216722,2,58,0,1,1630089701,2,3.0,-9.0,-9.0,15.0,4.0,1254522 -3108558,1630216723,2,28,2,2,1630089701,1,6.0,-9.0,-9.0,16.0,4.0,1254522 -3108559,1630216825,4,52,0,1,1630089702,2,3.0,-9.0,-9.0,-9.0,4.0,1254523 -3108560,1630216824,2,66,1,2,1630089702,1,6.0,40.0,5.0,-9.0,4.0,1254523 -3108561,1630216586,2,48,0,1,1630089703,2,1.0,20.0,1.0,-9.0,4.0,1254524 -3108562,1630216564,2,55,0,1,1630089704,2,1.0,40.0,1.0,-9.0,4.0,1254525 -3108563,1630216773,2,58,0,1,1630089705,2,1.0,23.0,2.0,-9.0,4.0,1254526 -3108564,1630216929,1,16,0,1,1630089706,1,6.0,-9.0,-9.0,-9.0,-9.0,1254527 -3108565,1630216500,2,38,0,1,1630089707,2,3.0,-9.0,-9.0,-9.0,4.0,1254528 -3108566,1630216502,2,41,1,2,1630089707,1,1.0,40.0,1.0,-9.0,4.0,1254528 -3108567,1630216503,2,17,2,3,1630089707,2,6.0,-9.0,-9.0,13.0,4.0,1254528 -3108568,1630216504,2,15,2,4,1630089707,2,-9.0,-9.0,-9.0,11.0,-9.0,1254528 -3108569,1630216501,2,13,2,5,1630089707,1,-9.0,-9.0,-9.0,10.0,-9.0,1254528 -3108570,1630216194,1,24,0,1,1630089708,2,1.0,40.0,1.0,15.0,4.0,1254529 -3108571,1630216199,1,31,13,2,1630089708,1,1.0,20.0,1.0,16.0,4.0,1254529 -3108572,1630216329,3,27,0,1,1630089709,1,1.0,70.0,1.0,-9.0,4.0,1254530 -3108573,1630216335,3,27,12,2,1630089709,1,1.0,70.0,1.0,-9.0,4.0,1254530 -3108574,1630216903,4,36,0,1,1630089710,2,1.0,35.0,1.0,-9.0,4.0,1254531 -3108575,1630216904,4,13,2,2,1630089710,2,-9.0,-9.0,-9.0,9.0,-9.0,1254531 -3108576,1630216905,4,9,2,3,1630089710,2,-9.0,-9.0,-9.0,5.0,-9.0,1254531 -3108577,1630216906,4,4,2,4,1630089710,1,-9.0,-9.0,-9.0,1.0,-9.0,1254531 -3108578,1630215593,1,68,0,1,1630089711,2,6.0,25.0,6.0,-9.0,4.0,1254532 -3108579,1630215594,1,72,1,2,1630089711,1,6.0,-9.0,-9.0,-9.0,4.0,1254532 -3108580,1630216679,2,40,0,1,1630089712,2,1.0,36.0,1.0,-9.0,4.0,1254533 -3108581,1630216680,2,10,2,2,1630089712,1,-9.0,-9.0,-9.0,6.0,-9.0,1254533 -3108582,1630216681,2,8,2,3,1630089712,1,-9.0,-9.0,-9.0,5.0,-9.0,1254533 -3108583,1630215905,1,45,0,1,1630089713,2,1.0,40.0,1.0,-9.0,4.0,1254534 -3108584,1630216753,2,22,0,1,1630089714,1,1.0,40.0,1.0,-9.0,4.0,1254535 -3108585,1630216752,2,1,2,2,1630089714,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254535 -3108586,1630216751,2,22,13,3,1630089714,2,1.0,40.0,1.0,-9.0,4.0,1254535 -3108587,1630216946,4,31,0,1,1630089715,1,1.0,40.0,1.0,16.0,4.0,1254536 -3108588,1630216944,4,30,1,2,1630089715,2,6.0,-9.0,-9.0,-9.0,4.0,1254536 -3108589,1630216947,4,29,12,3,1630089715,1,1.0,40.0,1.0,-9.0,4.0,1254536 -3108590,1630216945,4,25,12,4,1630089715,2,6.0,-9.0,-9.0,15.0,4.0,1254536 -3108591,1630216431,1,21,0,1,1630089716,1,1.0,20.0,3.0,15.0,4.0,1254537 -3108592,1630216434,1,22,12,2,1630089716,1,6.0,-9.0,-9.0,15.0,4.0,1254537 -3108593,1630216437,1,21,12,3,1630089716,1,6.0,20.0,5.0,15.0,4.0,1254537 -3108594,1630216055,1,33,0,1,1630089717,2,6.0,-9.0,-9.0,-9.0,4.0,1254538 -3108595,1630216056,1,42,1,2,1630089717,1,1.0,50.0,1.0,-9.0,4.0,1254538 -3108596,1630216057,1,1,2,3,1630089717,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254538 -3108597,1630216310,1,87,0,1,1630089718,1,6.0,-9.0,-9.0,-9.0,2.0,1254539 -3108598,1630216309,1,51,12,2,1630089718,1,6.0,-9.0,-9.0,-9.0,4.0,1254539 -3108599,1630215909,1,25,0,1,1630089719,2,1.0,30.0,3.0,-9.0,4.0,1254540 -3108600,1630216448,2,55,0,1,1630089720,1,1.0,20.0,5.0,-9.0,4.0,1254541 -3108601,1630216449,2,19,2,2,1630089720,1,3.0,-9.0,-9.0,-9.0,4.0,1254541 -3108602,1630216447,2,51,10,3,1630089720,2,6.0,-9.0,-9.0,-9.0,4.0,1254541 -3108603,1630216548,2,27,0,1,1630089721,2,1.0,27.0,1.0,15.0,4.0,1254542 -3108604,1630216550,2,1,2,2,1630089721,2,-9.0,-9.0,-9.0,-9.0,-9.0,1254542 -3108605,1630216549,2,33,13,3,1630089721,1,3.0,40.0,1.0,15.0,4.0,1254542 -3108606,1630216741,2,35,0,1,1630089722,2,1.0,40.0,1.0,-9.0,4.0,1254543 -3108607,1630216742,2,16,2,2,1630089722,2,6.0,-9.0,-9.0,12.0,-9.0,1254543 -3108608,1630216893,4,23,0,1,1630089723,2,6.0,-9.0,-9.0,16.0,4.0,1254544 -3108609,1630216898,4,24,15,2,1630089723,2,6.0,-9.0,-9.0,16.0,4.0,1254544 -3108610,1630216888,4,24,15,3,1630089723,2,6.0,-9.0,-9.0,16.0,4.0,1254544 -3108611,1630216841,4,61,0,1,1630089724,2,6.0,-9.0,-9.0,-9.0,4.0,1254545 -3108612,1630216840,4,23,2,2,1630089724,1,1.0,50.0,6.0,14.0,4.0,1254545 -3108613,1630216441,2,60,0,1,1630089725,2,6.0,-9.0,-9.0,-9.0,4.0,1254546 -3108614,1630215589,1,72,0,1,1630089726,2,1.0,45.0,1.0,-9.0,4.0,1254547 -3108615,1630216554,3,27,0,1,1630089727,2,1.0,65.0,1.0,-9.0,4.0,1254548 -3108616,1630216422,4,29,0,1,1630089728,2,6.0,-9.0,-9.0,15.0,4.0,1254549 -3108617,1630216420,3,32,1,2,1630089728,1,6.0,-9.0,-9.0,-9.0,4.0,1254549 -3108618,1630216423,3,7,2,3,1630089728,1,-9.0,-9.0,-9.0,4.0,-9.0,1254549 -3108619,1630216424,3,6,2,4,1630089728,1,-9.0,-9.0,-9.0,3.0,-9.0,1254549 -3108620,1630216421,3,4,2,5,1630089728,2,-9.0,-9.0,-9.0,1.0,-9.0,1254549 -3108621,1630216673,2,62,0,1,1630089729,2,1.0,40.0,1.0,-9.0,4.0,1254550 -3108622,1630216619,2,47,0,1,1630089730,1,1.0,40.0,1.0,-9.0,2.0,1254551 -3108623,1630216617,2,47,1,2,1630089730,2,3.0,-9.0,-9.0,-9.0,2.0,1254551 -3108624,1630216618,2,26,2,3,1630089730,2,1.0,36.0,1.0,-9.0,4.0,1254551 -3108625,1630215568,2,73,0,1,1630089731,2,6.0,-9.0,-9.0,-9.0,4.0,1254552 -3108626,1630215569,2,43,2,2,1630089731,2,6.0,-9.0,-9.0,-9.0,4.0,1254552 -3108627,1630216606,2,38,0,1,1630089732,1,1.0,40.0,1.0,-9.0,4.0,1254553 -3108628,1630216604,2,32,1,2,1630089732,2,1.0,40.0,3.0,16.0,4.0,1254553 -3108629,1630216605,2,10,2,3,1630089732,1,-9.0,-9.0,-9.0,7.0,-9.0,1254553 -3108630,1630215921,1,43,0,1,1630089733,2,6.0,-9.0,-9.0,-9.0,4.0,1254554 -3108631,1630215922,1,52,13,2,1630089733,1,1.0,25.0,1.0,-9.0,4.0,1254554 -3108632,1630216485,2,19,0,1,1630089734,2,3.0,22.0,1.0,-9.0,4.0,1254555 -3108633,1630216486,2,1,2,2,1630089734,1,-9.0,-9.0,-9.0,-9.0,-9.0,1254555 -3108634,1630216822,4,77,0,1,1630089735,2,6.0,-9.0,-9.0,-9.0,4.0,1254556 -3108635,1630216823,4,46,2,2,1630089735,2,6.0,-9.0,-9.0,-9.0,4.0,1254556 -3108636,1630216778,2,44,0,1,1630089736,2,6.0,-9.0,-9.0,-9.0,4.0,1254557 -3108637,1630216779,2,5,3,2,1630089736,1,-9.0,-9.0,-9.0,2.0,-9.0,1254557 -3108638,1630216780,2,35,5,3,1630089736,1,6.0,-9.0,-9.0,-9.0,4.0,1254557 -3108639,1630216732,2,38,0,1,1630089737,2,3.0,-9.0,-9.0,-9.0,4.0,1254558 -3108640,1630216734,2,18,2,2,1630089737,1,1.0,8.0,4.0,14.0,4.0,1254558 -3108641,1630216735,2,11,2,3,1630089737,2,-9.0,-9.0,-9.0,7.0,-9.0,1254558 -3108642,1630216733,2,64,6,4,1630089737,2,6.0,-9.0,-9.0,-9.0,4.0,1254558 -3108643,1630216774,2,25,0,1,1630089738,2,3.0,40.0,1.0,-9.0,4.0,1254559 -3108644,1630216775,2,5,2,2,1630089738,2,-9.0,-9.0,-9.0,2.0,-9.0,1254559 -3108645,1630216253,1,60,0,1,1630089739,1,1.0,50.0,1.0,-9.0,4.0,1254560 -3108646,1630216254,1,51,13,2,1630089739,1,3.0,-9.0,-9.0,-9.0,4.0,1254560 -3108647,1630216612,2,32,0,1,1630089740,2,3.0,8.0,4.0,-9.0,4.0,1254561 -3108648,1630216614,2,8,2,2,1630089740,2,-9.0,-9.0,-9.0,4.0,-9.0,1254561 -3108649,1630216613,2,34,13,3,1630089740,1,1.0,45.0,2.0,-9.0,4.0,1254561 -3108650,1630216899,4,60,0,1,1630089741,2,1.0,49.0,1.0,-9.0,4.0,1254562 -3108651,1630216829,4,40,0,1,1630089742,1,3.0,-9.0,-9.0,16.0,4.0,1254563 -3108652,1630215588,1,84,0,1,1630089743,2,6.0,-9.0,-9.0,-9.0,4.0,1254564 -3108653,1630215610,1,77,0,1,1630089744,1,6.0,-9.0,-9.0,-9.0,2.0,1254565 -3108654,1630215609,1,77,1,2,1630089744,2,6.0,-9.0,-9.0,-9.0,4.0,1254565 -3108655,1630216480,2,37,0,1,1630089745,2,3.0,40.0,1.0,-9.0,4.0,1254566 -3108656,1630216481,2,14,2,2,1630089745,1,-9.0,-9.0,-9.0,10.0,-9.0,1254566 -3108657,1630216482,2,10,2,3,1630089745,1,-9.0,-9.0,-9.0,6.0,-9.0,1254566 -3108658,1630216700,2,61,0,1,1630089746,1,1.0,40.0,3.0,-9.0,2.0,1254567 -3108659,1630216699,2,61,1,2,1630089746,2,1.0,35.0,1.0,-9.0,4.0,1254567 -3108660,1630216701,2,50,5,3,1630089746,1,6.0,-9.0,-9.0,-9.0,4.0,1254567 -3108661,1630215756,1,59,0,1,1630089747,2,6.0,-9.0,-9.0,-9.0,4.0,1254568 -3108662,1630216270,3,52,0,1,1630089748,2,1.0,40.0,1.0,-9.0,4.0,1254569 -3108663,1630216268,1,55,1,2,1630089748,1,1.0,40.0,1.0,-9.0,4.0,1254569 -3108664,1630216530,2,36,0,1,1630089749,2,1.0,25.0,1.0,-9.0,4.0,1254570 -3108665,1630216531,2,18,2,2,1630089749,1,6.0,-9.0,-9.0,14.0,4.0,1254570 -3108666,1630215571,2,64,0,1,1630089750,1,6.0,-9.0,-9.0,-9.0,2.0,1254571 -3108667,1630215570,2,67,1,2,1630089750,2,3.0,40.0,2.0,-9.0,4.0,1254571 -3108668,1630216616,2,56,0,1,1630089751,2,1.0,40.0,1.0,-9.0,4.0,1254572 -3108669,1630216795,4,41,0,1,1630089752,2,6.0,40.0,4.0,15.0,4.0,1254573 -3108670,1630216793,4,38,1,2,1630089752,1,1.0,40.0,1.0,-9.0,4.0,1254573 -3108671,1630216792,2,11,4,3,1630089752,1,-9.0,-9.0,-9.0,8.0,-9.0,1254573 -3108672,1630216794,4,31,5,4,1630089752,1,1.0,40.0,1.0,-9.0,4.0,1254573 -3108673,1630216670,2,42,0,1,1630089753,1,1.0,50.0,1.0,-9.0,4.0,1254574 -3108674,1630216669,2,44,1,2,1630089753,2,1.0,50.0,1.0,-9.0,4.0,1254574 -3108675,1630216671,2,15,2,3,1630089753,2,-9.0,-9.0,-9.0,12.0,-9.0,1254574 -3108676,1630216488,2,36,0,1,1630089754,2,1.0,40.0,4.0,-9.0,4.0,1254575 -3108677,1630216490,2,16,2,2,1630089754,2,6.0,-9.0,-9.0,13.0,-9.0,1254575 -3108678,1630216491,2,15,2,3,1630089754,2,-9.0,-9.0,-9.0,12.0,-9.0,1254575 -3108679,1630216489,2,14,2,4,1630089754,1,-9.0,-9.0,-9.0,11.0,-9.0,1254575 -3108680,1630216492,2,11,2,5,1630089754,2,-9.0,-9.0,-9.0,7.0,-9.0,1254575 -3108681,1630216684,2,26,0,1,1630089755,2,1.0,50.0,1.0,-9.0,4.0,1254576 -3108682,1630216685,2,27,13,2,1630089755,1,1.0,40.0,1.0,-9.0,4.0,1254576 -3108683,1630215710,1,53,0,1,1630089756,1,1.0,45.0,1.0,-9.0,4.0,1254577 -3108684,1630215708,1,48,1,2,1630089756,2,1.0,45.0,1.0,-9.0,4.0,1254577 -3108685,1630215712,1,22,2,3,1630089756,1,1.0,40.0,1.0,15.0,4.0,1254577 -3108686,1630216273,1,20,0,1,1630089757,1,1.0,40.0,5.0,15.0,4.0,1254578 -3108687,1630216663,2,44,0,1,1630089758,2,3.0,10.0,6.0,-9.0,4.0,1254579 -3108688,1630216664,2,21,2,2,1630089758,1,6.0,-9.0,-9.0,-9.0,4.0,1254579 -3108689,1630216665,2,16,2,3,1630089758,2,6.0,-9.0,-9.0,12.0,-9.0,1254579 -3108690,1630215578,2,85,0,1,1630089759,2,3.0,20.0,5.0,-9.0,4.0,1254580 -3108691,1630215630,1,60,0,1,1630089760,2,6.0,-9.0,-9.0,-9.0,4.0,1254581 -3108692,1630215631,1,15,2,2,1630089760,2,-9.0,-9.0,-9.0,11.0,-9.0,1254581 -3108693,1630216450,2,48,0,1,1630089761,2,6.0,-9.0,-9.0,-9.0,4.0,1254582 -3108694,1630216451,2,60,5,2,1630089761,1,6.0,-9.0,-9.0,-9.0,4.0,1254582 -3108695,1630217103,1,27,0,1,1630089762,2,6.0,37.0,5.0,16.0,4.0,1254583 -3108696,1630217365,2,28,0,1,1630089763,1,1.0,55.0,1.0,-9.0,4.0,1254584 -3108697,1630217251,1,29,0,1,1630089764,1,1.0,35.0,1.0,-9.0,4.0,1254585 -3108698,1630217157,1,29,0,1,1630089765,1,1.0,45.0,1.0,-9.0,4.0,1254586 -3108699,1630217600,4,44,0,1,1630089766,1,1.0,55.0,1.0,-9.0,4.0,1254587 -3108700,1630217623,4,42,0,1,1630089767,1,1.0,40.0,3.0,-9.0,4.0,1254588 -3108701,1630217601,4,44,0,1,1630089768,1,1.0,55.0,1.0,-9.0,4.0,1254589 -3108702,1630217619,4,30,0,1,1630089769,1,1.0,60.0,1.0,16.0,4.0,1254590 -3108703,1630217629,4,33,0,1,1630089770,1,2.0,12.0,1.0,-9.0,4.0,1254591 -3108704,1630217630,4,33,0,1,1630089771,1,2.0,12.0,1.0,-9.0,4.0,1254592 -3108705,1630217611,4,27,0,1,1630089772,1,1.0,40.0,1.0,-9.0,4.0,1254593 -3108706,1630217602,4,44,0,1,1630089773,1,1.0,55.0,1.0,-9.0,4.0,1254594 -3108707,1630217612,4,27,0,1,1630089774,1,1.0,40.0,1.0,-9.0,4.0,1254595 -3108708,1630217624,4,42,0,1,1630089775,1,1.0,40.0,3.0,-9.0,4.0,1254596 -3108709,1630217631,4,33,0,1,1630089776,1,2.0,12.0,1.0,-9.0,4.0,1254597 -3108710,1630217620,4,30,0,1,1630089777,1,1.0,60.0,1.0,16.0,4.0,1254598 -3108711,1630217446,2,35,0,1,1630089778,1,1.0,40.0,1.0,-9.0,4.0,1254599 -3108712,1630217447,2,35,0,1,1630089779,1,1.0,40.0,1.0,-9.0,4.0,1254600 -3108713,1630217322,2,40,0,1,1630089780,1,1.0,50.0,1.0,-9.0,4.0,1254601 -3108714,1630217310,2,38,0,1,1630089781,2,1.0,45.0,1.0,-9.0,4.0,1254602 -3108715,1630217296,2,29,0,1,1630089782,2,1.0,40.0,1.0,16.0,4.0,1254603 -3108716,1630217508,4,41,0,1,1630089783,1,1.0,37.0,1.0,16.0,4.0,1254604 -3108717,1630217517,4,28,0,1,1630089784,1,1.0,80.0,1.0,-9.0,4.0,1254605 -3108718,1630217518,4,28,0,1,1630089785,1,1.0,80.0,1.0,-9.0,4.0,1254606 -3108719,1630217507,4,31,0,1,1630089786,1,1.0,60.0,1.0,-9.0,4.0,1254607 -3108720,1630217519,4,28,0,1,1630089787,1,1.0,80.0,1.0,-9.0,4.0,1254608 -3108721,1630217509,4,41,0,1,1630089788,1,1.0,37.0,1.0,16.0,4.0,1254609 -3108722,1630217539,3,34,0,1,1630089789,2,1.0,80.0,2.0,-9.0,4.0,1254610 -3108723,1630217540,3,34,0,1,1630089790,2,1.0,80.0,2.0,-9.0,4.0,1254611 -3108724,1630217226,1,26,0,1,1630089791,1,1.0,60.0,1.0,-9.0,4.0,1254612 -3108725,1630217213,1,31,0,1,1630089792,1,2.0,70.0,1.0,-9.0,4.0,1254613 -3108726,1630217168,1,29,0,1,1630089793,1,1.0,50.0,1.0,-9.0,4.0,1254614 -3108727,1630217236,1,27,0,1,1630089794,1,1.0,40.0,1.0,-9.0,4.0,1254615 -3108728,1630217225,1,26,0,1,1630089795,1,1.0,50.0,1.0,-9.0,4.0,1254616 -3108729,1630217173,1,34,0,1,1630089796,1,1.0,40.0,1.0,-9.0,4.0,1254617 -3108730,1630217237,1,27,0,1,1630089797,1,1.0,40.0,1.0,-9.0,4.0,1254618 -3108731,1630217214,1,31,0,1,1630089798,1,2.0,70.0,1.0,-9.0,4.0,1254619 -3108732,1630217238,1,27,0,1,1630089799,1,1.0,40.0,1.0,-9.0,4.0,1254620 -3108733,1630217239,1,27,0,1,1630089800,1,1.0,40.0,1.0,-9.0,4.0,1254621 -3108734,1630217227,1,26,0,1,1630089801,1,1.0,60.0,1.0,-9.0,4.0,1254622 -3108735,1630217158,3,29,0,1,1630089802,1,1.0,43.0,1.0,-9.0,4.0,1254623 -3108736,1630217306,2,35,0,1,1630089803,2,1.0,40.0,1.0,15.0,4.0,1254624 -3108737,1630217177,1,40,0,1,1630089804,1,1.0,50.0,1.0,-9.0,4.0,1254625 -3108738,1630217178,1,40,0,1,1630089805,1,1.0,50.0,1.0,-9.0,4.0,1254626 -3108739,1630217570,4,30,0,1,1630089806,1,1.0,60.0,1.0,16.0,4.0,1254627 -3108740,1630217564,4,33,1,2,1630089806,2,1.0,60.0,1.0,16.0,4.0,1254627 -3108741,1630217571,4,30,0,1,1630089807,1,1.0,60.0,1.0,16.0,4.0,1254628 -3108742,1630217565,4,33,1,2,1630089807,2,1.0,60.0,1.0,16.0,4.0,1254628 -3108743,1630217572,4,30,0,1,1630089808,1,1.0,60.0,1.0,16.0,4.0,1254629 -3108744,1630217566,4,33,1,2,1630089808,2,1.0,60.0,1.0,16.0,4.0,1254629 -3108745,1630217573,4,30,0,1,1630089809,1,1.0,60.0,1.0,16.0,4.0,1254630 -3108746,1630217567,4,33,1,2,1630089809,2,1.0,60.0,1.0,16.0,4.0,1254630 -3108747,1630217574,4,30,0,1,1630089810,1,1.0,60.0,1.0,16.0,4.0,1254631 -3108748,1630217568,4,33,1,2,1630089810,2,1.0,60.0,1.0,16.0,4.0,1254631 -3108749,1630217575,4,30,0,1,1630089811,1,1.0,60.0,1.0,16.0,4.0,1254632 -3108750,1630217569,4,33,1,2,1630089811,2,1.0,60.0,1.0,16.0,4.0,1254632 -3108751,1630217377,2,43,0,1,1630089812,1,1.0,30.0,1.0,-9.0,2.0,1254633 -3108752,1630217378,2,36,11,2,1630089812,1,1.0,40.0,1.0,15.0,4.0,1254633 -3108753,1630217095,1,30,0,1,1630089813,1,1.0,60.0,1.0,16.0,4.0,1254634 -3108754,1630217089,1,29,1,2,1630089813,2,1.0,65.0,1.0,16.0,4.0,1254634 -3108755,1630217096,1,30,0,1,1630089814,1,1.0,60.0,1.0,16.0,4.0,1254635 -3108756,1630217090,1,29,1,2,1630089814,2,1.0,65.0,1.0,16.0,4.0,1254635 -3108757,1630217129,1,37,0,1,1630089815,1,1.0,50.0,1.0,16.0,4.0,1254636 -3108758,1630217126,1,49,1,2,1630089815,2,1.0,30.0,1.0,-9.0,4.0,1254636 -3108759,1630217097,1,30,0,1,1630089816,1,1.0,60.0,1.0,16.0,4.0,1254637 -3108760,1630217091,1,29,1,2,1630089816,2,1.0,65.0,1.0,16.0,4.0,1254637 -3108761,1630217130,1,37,0,1,1630089817,1,1.0,50.0,1.0,16.0,4.0,1254638 -3108762,1630217127,1,49,1,2,1630089817,2,1.0,30.0,1.0,-9.0,4.0,1254638 -3108763,1630217098,1,30,0,1,1630089818,1,1.0,60.0,1.0,16.0,4.0,1254639 -3108764,1630217092,1,29,1,2,1630089818,2,1.0,65.0,1.0,16.0,4.0,1254639 -3108765,1630217131,1,37,0,1,1630089819,1,1.0,50.0,1.0,16.0,4.0,1254640 -3108766,1630217128,1,49,1,2,1630089819,2,1.0,30.0,1.0,-9.0,4.0,1254640 -3108767,1630217099,1,30,0,1,1630089820,1,1.0,60.0,1.0,16.0,4.0,1254641 -3108768,1630217093,1,29,1,2,1630089820,2,1.0,65.0,1.0,16.0,4.0,1254641 -3108769,1630217277,2,42,0,1,1630089821,2,1.0,52.0,1.0,-9.0,2.0,1254642 -3108770,1630217280,2,46,13,2,1630089821,2,1.0,30.0,4.0,-9.0,4.0,1254642 -3108771,1630217278,2,42,0,1,1630089822,2,1.0,52.0,1.0,-9.0,2.0,1254643 -3108772,1630217281,2,46,13,2,1630089822,2,1.0,30.0,4.0,-9.0,4.0,1254643 -3108773,1630217079,1,28,0,1,1630089823,1,1.0,40.0,1.0,16.0,4.0,1254644 -3108774,1630217069,1,27,12,2,1630089823,2,1.0,1.0,1.0,16.0,4.0,1254644 -3108775,1630217112,1,26,0,1,1630089824,1,1.0,40.0,1.0,-9.0,4.0,1254645 -3108776,1630217106,1,36,13,2,1630089824,2,1.0,20.0,4.0,-9.0,4.0,1254645 -3108777,1630217234,1,29,0,1,1630089825,1,1.0,50.0,1.0,16.0,4.0,1254646 -3108778,1630217235,1,34,12,2,1630089825,1,1.0,40.0,1.0,16.0,4.0,1254646 -3108779,1630217080,1,28,0,1,1630089826,1,1.0,40.0,1.0,16.0,4.0,1254647 -3108780,1630217070,1,27,12,2,1630089826,2,1.0,1.0,1.0,16.0,4.0,1254647 -3108781,1630217113,1,26,0,1,1630089827,1,1.0,40.0,1.0,-9.0,4.0,1254648 -3108782,1630217107,1,36,13,2,1630089827,2,1.0,20.0,4.0,-9.0,4.0,1254648 -3108783,1630217114,1,26,0,1,1630089828,1,1.0,40.0,1.0,-9.0,4.0,1254649 -3108784,1630217108,1,36,13,2,1630089828,2,1.0,20.0,4.0,-9.0,4.0,1254649 -3108785,1630217115,1,26,0,1,1630089829,1,1.0,40.0,1.0,-9.0,4.0,1254650 -3108786,1630217109,1,36,13,2,1630089829,2,1.0,20.0,4.0,-9.0,4.0,1254650 -3108787,1630217081,1,28,0,1,1630089830,1,1.0,40.0,1.0,16.0,4.0,1254651 -3108788,1630217071,1,27,12,2,1630089830,2,1.0,1.0,1.0,16.0,4.0,1254651 -3108789,1630217116,1,26,0,1,1630089831,1,1.0,40.0,1.0,-9.0,4.0,1254652 -3108790,1630217110,1,36,13,2,1630089831,2,1.0,20.0,4.0,-9.0,4.0,1254652 -3108791,1630217117,1,26,0,1,1630089832,1,1.0,40.0,1.0,-9.0,4.0,1254653 -3108792,1630217111,1,36,13,2,1630089832,2,1.0,20.0,4.0,-9.0,4.0,1254653 -3108793,1630217082,1,28,0,1,1630089833,1,1.0,40.0,1.0,16.0,4.0,1254654 -3108794,1630217072,1,27,12,2,1630089833,2,1.0,1.0,1.0,16.0,4.0,1254654 -3108795,1630217063,1,32,0,1,1630089834,1,1.0,40.0,1.0,-9.0,4.0,1254655 -3108796,1630217060,1,42,1,2,1630089834,2,1.0,40.0,1.0,-9.0,4.0,1254655 -3108797,1630217083,1,28,0,1,1630089835,1,1.0,40.0,1.0,16.0,4.0,1254656 -3108798,1630217073,1,27,12,2,1630089835,2,1.0,1.0,1.0,16.0,4.0,1254656 -3108799,1630217064,1,32,0,1,1630089836,1,1.0,40.0,1.0,-9.0,4.0,1254657 -3108800,1630217061,1,42,1,2,1630089836,2,1.0,40.0,1.0,-9.0,4.0,1254657 -3108801,1630217084,1,28,0,1,1630089837,1,1.0,40.0,1.0,16.0,4.0,1254658 -3108802,1630217074,1,27,12,2,1630089837,2,1.0,1.0,1.0,16.0,4.0,1254658 -3108803,1630217085,1,28,0,1,1630089838,1,1.0,40.0,1.0,16.0,4.0,1254659 -3108804,1630217075,1,27,12,2,1630089838,2,1.0,1.0,1.0,16.0,4.0,1254659 -3108805,1630217086,1,28,0,1,1630089839,1,1.0,40.0,1.0,16.0,4.0,1254660 -3108806,1630217076,1,27,12,2,1630089839,2,1.0,1.0,1.0,16.0,4.0,1254660 -3108807,1630217065,1,32,0,1,1630089840,1,1.0,40.0,1.0,-9.0,4.0,1254661 -3108808,1630217062,1,42,1,2,1630089840,2,1.0,40.0,1.0,-9.0,4.0,1254661 -3108809,1630217087,1,28,0,1,1630089841,1,1.0,40.0,1.0,16.0,4.0,1254662 -3108810,1630217077,1,27,12,2,1630089841,2,1.0,1.0,1.0,16.0,4.0,1254662 -3108811,1630217147,1,26,0,1,1630089842,1,1.0,40.0,3.0,-9.0,4.0,1254663 -3108812,1630217059,1,29,0,1,1630089843,1,1.0,40.0,1.0,16.0,4.0,1254664 -3108813,1630217058,1,24,12,2,1630089843,2,1.0,40.0,1.0,15.0,4.0,1254664 -3108814,1630217558,4,30,0,1,1630089844,2,1.0,44.0,1.0,-9.0,4.0,1254665 -3108815,1630217561,4,34,1,2,1630089844,1,1.0,40.0,2.0,-9.0,4.0,1254665 -3108816,1630217559,4,30,0,1,1630089845,2,1.0,44.0,1.0,-9.0,4.0,1254666 -3108817,1630217562,4,34,1,2,1630089845,1,1.0,40.0,2.0,-9.0,4.0,1254666 -3108818,1630217125,1,26,0,1,1630089846,1,1.0,40.0,1.0,-9.0,4.0,1254667 -3108819,1630217124,1,25,13,2,1630089846,2,1.0,30.0,1.0,-9.0,4.0,1254667 -3108820,1630217179,1,28,0,1,1630089847,1,1.0,70.0,1.0,-9.0,4.0,1254668 -3108821,1630217181,1,25,12,2,1630089847,1,1.0,45.0,1.0,-9.0,2.0,1254668 -3108822,1630217120,1,28,0,1,1630089848,2,1.0,55.0,1.0,-9.0,4.0,1254669 -3108823,1630217122,1,28,1,2,1630089848,1,1.0,40.0,1.0,-9.0,4.0,1254669 -3108824,1630217180,1,28,0,1,1630089849,1,1.0,70.0,1.0,-9.0,4.0,1254670 -3108825,1630217182,1,25,12,2,1630089849,1,1.0,45.0,1.0,-9.0,2.0,1254670 -3108826,1630217104,1,28,0,1,1630089850,2,1.0,80.0,1.0,-9.0,2.0,1254671 -3108827,1630217105,1,26,13,2,1630089850,1,1.0,65.0,1.0,-9.0,4.0,1254671 -3108828,1630217133,1,31,0,1,1630089851,1,1.0,40.0,3.0,-9.0,4.0,1254672 -3108829,1630217132,1,26,1,2,1630089851,2,1.0,40.0,1.0,16.0,4.0,1254672 -3108830,1630217440,2,39,0,1,1630089852,1,6.0,-9.0,-9.0,-9.0,4.0,1254673 -3108831,1630217410,2,39,0,1,1630089853,1,6.0,-9.0,-9.0,-9.0,4.0,1254674 -3108832,1630217411,2,39,0,1,1630089854,1,6.0,-9.0,-9.0,-9.0,4.0,1254675 -3108833,1630217441,2,42,0,1,1630089855,1,6.0,-9.0,-9.0,-9.0,4.0,1254676 -3108834,1630217442,2,42,0,1,1630089856,1,6.0,-9.0,-9.0,-9.0,4.0,1254677 -3108835,1630217412,2,39,0,1,1630089857,1,6.0,-9.0,-9.0,-9.0,4.0,1254678 -3108836,1630217355,2,34,0,1,1630089858,1,6.0,-9.0,-9.0,-9.0,4.0,1254679 -3108837,1630217510,3,39,0,1,1630089859,1,6.0,-9.0,-9.0,-9.0,4.0,1254680 -3108838,1630217511,3,39,0,1,1630089860,1,6.0,-9.0,-9.0,-9.0,4.0,1254681 -3108839,1630217512,3,39,0,1,1630089861,1,6.0,-9.0,-9.0,-9.0,4.0,1254682 -3108840,1630217148,1,39,0,1,1630089862,1,6.0,8.0,6.0,16.0,4.0,1254683 -3108841,1630217149,1,39,0,1,1630089863,1,6.0,8.0,6.0,16.0,4.0,1254684 -3108842,1630217625,4,26,0,1,1630089864,1,6.0,-9.0,-9.0,16.0,4.0,1254685 -3108843,1630217626,4,26,0,1,1630089865,1,6.0,-9.0,-9.0,16.0,4.0,1254686 -3108844,1630217627,4,26,0,1,1630089866,1,6.0,-9.0,-9.0,16.0,4.0,1254687 -3108845,1630217426,2,42,0,1,1630089867,1,6.0,-9.0,-9.0,-9.0,4.0,1254688 -3108846,1630217413,2,29,0,1,1630089868,1,6.0,-9.0,-9.0,16.0,3.0,1254689 -3108847,1630217312,2,42,0,1,1630089869,2,6.0,-9.0,-9.0,-9.0,4.0,1254690 -3108848,1630217271,2,33,0,1,1630089870,2,3.0,-9.0,-9.0,-9.0,4.0,1254691 -3108849,1630217450,2,38,0,1,1630089871,1,6.0,-9.0,-9.0,-9.0,4.0,1254692 -3108850,1630217339,2,37,0,1,1630089872,1,6.0,-9.0,-9.0,-9.0,4.0,1254693 -3108851,1630217404,2,29,0,1,1630089873,1,6.0,-9.0,-9.0,-9.0,4.0,1254694 -3108852,1630217490,4,40,0,1,1630089874,1,3.0,-9.0,-9.0,16.0,4.0,1254695 -3108853,1630217513,4,38,0,1,1630089875,1,3.0,30.0,6.0,15.0,3.0,1254696 -3108854,1630217514,4,38,0,1,1630089876,1,3.0,30.0,6.0,15.0,3.0,1254697 -3108855,1630217515,4,38,0,1,1630089877,1,3.0,30.0,6.0,15.0,3.0,1254698 -3108856,1630217151,1,40,0,1,1630089878,1,6.0,28.0,4.0,-9.0,4.0,1254699 -3108857,1630217154,1,29,0,1,1630089879,1,6.0,-9.0,-9.0,15.0,4.0,1254700 -3108858,1630217164,1,31,0,1,1630089880,1,3.0,8.0,4.0,-9.0,4.0,1254701 -3108859,1630217165,1,31,0,1,1630089881,1,3.0,8.0,4.0,-9.0,4.0,1254702 -3108860,1630217166,1,31,0,1,1630089882,1,3.0,8.0,4.0,-9.0,4.0,1254703 -3108861,1630217152,1,40,0,1,1630089883,1,6.0,28.0,4.0,-9.0,4.0,1254704 -3108862,1630217153,1,40,0,1,1630089884,1,6.0,28.0,4.0,-9.0,4.0,1254705 -3108863,1630217349,2,41,0,1,1630089885,1,3.0,-9.0,-9.0,-9.0,4.0,1254706 -3108864,1630217343,2,39,0,1,1630089886,1,1.0,40.0,1.0,-9.0,4.0,1254707 -3108865,1630217504,4,25,0,1,1630089887,1,1.0,30.0,1.0,-9.0,4.0,1254708 -3108866,1630217527,3,27,0,1,1630089888,2,1.0,40.0,1.0,-9.0,4.0,1254709 -3108867,1630217528,3,27,0,1,1630089889,2,1.0,40.0,1.0,-9.0,4.0,1254710 -3108868,1630217229,1,32,0,1,1630089890,1,1.0,60.0,5.0,-9.0,4.0,1254711 -3108869,1630217230,1,32,0,1,1630089891,1,1.0,60.0,5.0,-9.0,4.0,1254712 -3108870,1630217139,1,42,0,1,1630089892,1,1.0,40.0,1.0,-9.0,2.0,1254713 -3108871,1630217595,4,29,0,1,1630089893,1,1.0,20.0,1.0,16.0,4.0,1254714 -3108872,1630217591,4,32,0,1,1630089894,1,1.0,40.0,6.0,16.0,4.0,1254715 -3108873,1630217618,4,31,0,1,1630089895,1,1.0,17.0,1.0,16.0,4.0,1254716 -3108874,1630217592,4,32,0,1,1630089896,1,1.0,40.0,6.0,16.0,4.0,1254717 -3108875,1630217614,4,26,0,1,1630089897,1,1.0,60.0,3.0,-9.0,4.0,1254718 -3108876,1630217596,4,29,0,1,1630089898,1,1.0,20.0,1.0,16.0,4.0,1254719 -3108877,1630217597,4,29,0,1,1630089899,1,1.0,20.0,1.0,16.0,4.0,1254720 -3108878,1630217598,4,29,0,1,1630089900,1,1.0,20.0,1.0,16.0,4.0,1254721 -3108879,1630217615,4,26,0,1,1630089901,1,1.0,60.0,3.0,-9.0,4.0,1254722 -3108880,1630217599,4,29,0,1,1630089902,1,1.0,20.0,1.0,16.0,4.0,1254723 -3108881,1630217593,4,32,0,1,1630089903,1,1.0,40.0,6.0,16.0,4.0,1254724 -3108882,1630217594,4,32,0,1,1630089904,1,1.0,40.0,6.0,16.0,4.0,1254725 -3108883,1630217616,4,26,0,1,1630089905,1,1.0,60.0,3.0,-9.0,4.0,1254726 -3108884,1630217307,2,27,0,1,1630089906,2,1.0,50.0,1.0,-9.0,4.0,1254727 -3108885,1630217398,2,33,0,1,1630089907,1,1.0,10.0,6.0,-9.0,4.0,1254728 -3108886,1630217309,2,44,0,1,1630089908,2,1.0,40.0,1.0,-9.0,4.0,1254729 -3108887,1630217211,1,35,0,1,1630089909,1,1.0,22.0,1.0,16.0,4.0,1254730 -3108888,1630217231,1,26,0,1,1630089910,1,1.0,60.0,2.0,16.0,4.0,1254731 -3108889,1630217232,1,26,0,1,1630089911,1,1.0,60.0,2.0,16.0,4.0,1254732 -3108890,1630217201,1,27,0,1,1630089912,1,1.0,40.0,1.0,-9.0,4.0,1254733 -3108891,1630217241,1,26,0,1,1630089913,1,1.0,60.0,4.0,-9.0,4.0,1254734 -3108892,1630217169,1,25,0,1,1630089914,1,1.0,10.0,5.0,16.0,4.0,1254735 -3108893,1630217194,1,27,0,1,1630089915,1,1.0,40.0,1.0,-9.0,4.0,1254736 -3108894,1630217202,1,27,0,1,1630089916,1,1.0,40.0,1.0,-9.0,4.0,1254737 -3108895,1630217224,1,30,0,1,1630089917,1,1.0,40.0,1.0,-9.0,4.0,1254738 -3108896,1630217203,1,27,0,1,1630089918,1,1.0,40.0,1.0,-9.0,4.0,1254739 -3108897,1630217212,1,35,0,1,1630089919,1,1.0,22.0,1.0,16.0,4.0,1254740 -3108898,1630217249,1,31,0,1,1630089920,1,1.0,40.0,6.0,16.0,2.0,1254741 -3108899,1630217136,1,31,0,1,1630089921,1,1.0,35.0,1.0,-9.0,4.0,1254742 -3108900,1630217250,1,31,0,1,1630089922,1,1.0,40.0,6.0,16.0,2.0,1254743 -3108901,1630217204,1,27,0,1,1630089923,1,1.0,40.0,1.0,-9.0,4.0,1254744 -3108902,1630217170,1,25,0,1,1630089924,1,1.0,10.0,5.0,16.0,4.0,1254745 -3108903,1630217242,1,26,0,1,1630089925,1,1.0,60.0,4.0,-9.0,4.0,1254746 -3108904,1630217584,4,27,0,1,1630089926,1,1.0,54.0,2.0,16.0,4.0,1254747 -3108905,1630217577,4,26,1,2,1630089926,2,1.0,15.0,6.0,16.0,4.0,1254747 -3108906,1630217585,4,27,0,1,1630089927,1,1.0,54.0,2.0,16.0,4.0,1254748 -3108907,1630217578,4,26,1,2,1630089927,2,1.0,15.0,6.0,16.0,4.0,1254748 -3108908,1630217586,4,27,0,1,1630089928,1,1.0,54.0,2.0,16.0,4.0,1254749 -3108909,1630217579,4,26,1,2,1630089928,2,1.0,15.0,6.0,16.0,4.0,1254749 -3108910,1630217587,4,27,0,1,1630089929,1,1.0,54.0,2.0,16.0,4.0,1254750 -3108911,1630217580,4,26,1,2,1630089929,2,1.0,15.0,6.0,16.0,4.0,1254750 -3108912,1630217588,4,27,0,1,1630089930,1,1.0,54.0,2.0,16.0,4.0,1254751 -3108913,1630217581,4,26,1,2,1630089930,2,1.0,15.0,6.0,16.0,4.0,1254751 -3108914,1630217589,4,27,0,1,1630089931,1,1.0,54.0,2.0,16.0,4.0,1254752 -3108915,1630217582,4,26,1,2,1630089931,2,1.0,15.0,6.0,16.0,4.0,1254752 -3108916,1630217207,1,33,0,1,1630089932,1,1.0,25.0,1.0,16.0,4.0,1254753 -3108917,1630217209,4,30,1,2,1630089932,2,1.0,25.0,1.0,15.0,4.0,1254753 -3108918,1630217208,1,33,0,1,1630089933,1,1.0,25.0,1.0,16.0,4.0,1254754 -3108919,1630217210,4,30,1,2,1630089933,2,1.0,25.0,1.0,15.0,4.0,1254754 -3108920,1630217338,2,64,0,1,1630089934,1,6.0,-9.0,-9.0,-9.0,2.0,1254755 -3108921,1630217265,2,61,0,1,1630089935,2,6.0,-9.0,-9.0,-9.0,4.0,1254756 -3108922,1630217184,1,62,0,1,1630089936,1,6.0,-9.0,-9.0,-9.0,2.0,1254757 -3108923,1630217185,1,62,0,1,1630089937,1,6.0,-9.0,-9.0,-9.0,2.0,1254758 -3108924,1630217371,2,47,0,1,1630089938,1,1.0,40.0,1.0,-9.0,4.0,1254759 -3108925,1630217320,2,61,0,1,1630089939,2,1.0,40.0,1.0,-9.0,4.0,1254760 -3108926,1630217632,4,51,0,1,1630089940,1,1.0,70.0,1.0,16.0,4.0,1254761 -3108927,1630217633,4,51,0,1,1630089941,1,1.0,70.0,1.0,16.0,4.0,1254762 -3108928,1630217634,4,51,0,1,1630089942,1,1.0,70.0,1.0,16.0,4.0,1254763 -3108929,1630217331,2,54,0,1,1630089943,1,1.0,40.0,3.0,-9.0,4.0,1254764 -3108930,1630217428,2,60,0,1,1630089944,1,1.0,45.0,1.0,-9.0,4.0,1254765 -3108931,1630217434,2,48,0,1,1630089945,1,1.0,48.0,1.0,-9.0,4.0,1254766 -3108932,1630217323,2,53,0,1,1630089946,1,1.0,70.0,1.0,15.0,4.0,1254767 -3108933,1630217267,2,60,0,1,1630089947,2,1.0,40.0,1.0,-9.0,4.0,1254768 -3108934,1630217276,2,54,0,1,1630089948,2,1.0,40.0,1.0,-9.0,4.0,1254769 -3108935,1630217432,2,46,0,1,1630089949,1,1.0,40.0,1.0,-9.0,4.0,1254770 -3108936,1630217270,2,64,0,1,1630089950,2,1.0,40.0,1.0,-9.0,4.0,1254771 -3108937,1630217414,2,58,0,1,1630089951,1,1.0,45.0,1.0,-9.0,4.0,1254772 -3108938,1630217160,1,52,0,1,1630089952,1,1.0,40.0,1.0,-9.0,4.0,1254773 -3108939,1630217245,1,64,0,1,1630089953,1,1.0,53.0,1.0,-9.0,4.0,1254774 -3108940,1630217161,1,52,0,1,1630089954,1,1.0,40.0,1.0,-9.0,4.0,1254775 -3108941,1630217162,1,52,0,1,1630089955,1,1.0,40.0,1.0,-9.0,4.0,1254776 -3108942,1630217222,1,63,0,1,1630089956,1,1.0,40.0,1.0,-9.0,4.0,1254777 -3108943,1630217172,1,61,0,1,1630089957,1,1.0,50.0,3.0,-9.0,4.0,1254778 -3108944,1630217191,3,54,0,1,1630089958,1,1.0,40.0,1.0,-9.0,4.0,1254779 -3108945,1630217363,2,60,0,1,1630089959,1,1.0,40.0,1.0,-9.0,4.0,1254780 -3108946,1630217364,2,60,0,1,1630089960,1,1.0,40.0,1.0,-9.0,4.0,1254781 -3108947,1630217174,1,57,0,1,1630089961,1,1.0,55.0,1.0,-9.0,4.0,1254782 -3108948,1630217175,1,57,0,1,1630089962,1,1.0,55.0,1.0,-9.0,4.0,1254783 -3108949,1630217262,2,47,0,1,1630089963,1,2.0,40.0,1.0,-9.0,2.0,1254784 -3108950,1630217260,2,52,1,2,1630089963,2,1.0,16.0,6.0,-9.0,4.0,1254784 -3108951,1630217263,2,47,0,1,1630089964,1,2.0,40.0,1.0,-9.0,2.0,1254785 -3108952,1630217261,2,52,1,2,1630089964,2,1.0,16.0,6.0,-9.0,4.0,1254785 -3108953,1630217254,2,59,0,1,1630089965,2,1.0,30.0,6.0,-9.0,4.0,1254786 -3108954,1630217257,2,58,1,2,1630089965,1,1.0,48.0,1.0,-9.0,4.0,1254786 -3108955,1630217255,2,59,0,1,1630089966,2,1.0,30.0,6.0,-9.0,4.0,1254787 -3108956,1630217258,2,58,1,2,1630089966,1,1.0,48.0,1.0,-9.0,4.0,1254787 -3108957,1630217256,2,59,0,1,1630089967,2,1.0,30.0,6.0,-9.0,4.0,1254788 -3108958,1630217259,2,58,1,2,1630089967,1,1.0,48.0,1.0,-9.0,4.0,1254788 -3108959,1630217305,2,57,0,1,1630089968,2,6.0,-9.0,-9.0,-9.0,4.0,1254789 -3108960,1630217437,2,57,0,1,1630089969,1,6.0,-9.0,-9.0,-9.0,4.0,1254790 -3108961,1630217425,2,50,0,1,1630089970,1,6.0,-9.0,-9.0,-9.0,4.0,1254791 -3108962,1630217359,2,58,0,1,1630089971,1,6.0,-9.0,-9.0,-9.0,2.0,1254792 -3108963,1630217383,2,56,0,1,1630089972,1,6.0,-9.0,-9.0,-9.0,4.0,1254793 -3108964,1630217384,2,56,0,1,1630089973,1,6.0,-9.0,-9.0,-9.0,4.0,1254794 -3108965,1630217336,2,55,0,1,1630089974,1,6.0,-9.0,-9.0,-9.0,4.0,1254795 -3108966,1630217266,2,60,0,1,1630089975,2,6.0,32.0,6.0,-9.0,4.0,1254796 -3108967,1630217416,2,49,0,1,1630089976,1,6.0,-9.0,-9.0,-9.0,4.0,1254797 -3108968,1630217272,2,54,0,1,1630089977,2,6.0,-9.0,-9.0,-9.0,4.0,1254798 -3108969,1630217360,2,49,0,1,1630089978,1,3.0,-9.0,-9.0,-9.0,4.0,1254799 -3108970,1630217321,2,63,0,1,1630089979,2,6.0,-9.0,-9.0,-9.0,4.0,1254800 -3108971,1630217327,2,54,0,1,1630089980,1,3.0,-9.0,-9.0,-9.0,2.0,1254801 -3108972,1630217407,2,61,0,1,1630089981,1,6.0,-9.0,-9.0,-9.0,4.0,1254802 -3108973,1630217370,2,61,0,1,1630089982,1,6.0,-9.0,-9.0,-9.0,4.0,1254803 -3108974,1630217313,2,45,0,1,1630089983,2,6.0,-9.0,-9.0,-9.0,4.0,1254804 -3108975,1630217357,2,54,0,1,1630089984,1,6.0,-9.0,-9.0,-9.0,2.0,1254805 -3108976,1630217269,2,58,0,1,1630089985,2,6.0,-9.0,-9.0,-9.0,2.0,1254806 -3108977,1630217420,2,47,0,1,1630089986,1,3.0,-9.0,-9.0,-9.0,4.0,1254807 -3108978,1630217433,2,59,0,1,1630089987,1,6.0,-9.0,-9.0,-9.0,4.0,1254808 -3108979,1630217400,2,47,0,1,1630089988,1,6.0,-9.0,-9.0,-9.0,4.0,1254809 -3108980,1630217367,2,52,0,1,1630089989,1,6.0,-9.0,-9.0,-9.0,2.0,1254810 -3108981,1630217409,2,56,0,1,1630089990,1,6.0,-9.0,-9.0,-9.0,4.0,1254811 -3108982,1630217283,2,45,0,1,1630089991,2,6.0,-9.0,-9.0,-9.0,4.0,1254812 -3108983,1630217362,2,49,0,1,1630089992,1,6.0,-9.0,-9.0,-9.0,4.0,1254813 -3108984,1630217353,2,61,0,1,1630089993,1,6.0,-9.0,-9.0,-9.0,4.0,1254814 -3108985,1630217381,2,62,0,1,1630089994,1,6.0,-9.0,-9.0,-9.0,2.0,1254815 -3108986,1630217358,2,54,0,1,1630089995,1,6.0,-9.0,-9.0,-9.0,2.0,1254816 -3108987,1630217373,2,61,0,1,1630089996,1,6.0,32.0,6.0,15.0,4.0,1254817 -3108988,1630217439,2,50,0,1,1630089997,1,6.0,-9.0,-9.0,-9.0,4.0,1254818 -3108989,1630217297,2,46,0,1,1630089998,2,6.0,-9.0,-9.0,-9.0,4.0,1254819 -3108990,1630217361,2,49,0,1,1630089999,1,3.0,-9.0,-9.0,-9.0,4.0,1254820 -3108991,1630217391,2,56,0,1,1630090000,1,6.0,-9.0,-9.0,-9.0,4.0,1254821 -3108992,1630217387,2,59,0,1,1630090001,1,6.0,-9.0,-9.0,-9.0,2.0,1254822 -3108993,1630217436,2,63,0,1,1630090002,1,6.0,-9.0,-9.0,-9.0,4.0,1254823 -3108994,1630217374,2,61,0,1,1630090003,1,6.0,32.0,6.0,15.0,4.0,1254824 -3108995,1630217354,2,63,0,1,1630090004,1,6.0,-9.0,-9.0,-9.0,4.0,1254825 -3108996,1630217438,2,57,0,1,1630090005,1,6.0,-9.0,-9.0,-9.0,4.0,1254826 -3108997,1630217326,2,59,0,1,1630090006,1,6.0,11.0,6.0,-9.0,4.0,1254827 -3108998,1630217351,2,58,0,1,1630090007,1,6.0,-9.0,-9.0,-9.0,4.0,1254828 -3108999,1630217335,2,60,0,1,1630090008,1,6.0,-9.0,-9.0,-9.0,4.0,1254829 -3109000,1630217390,2,62,0,1,1630090009,1,6.0,30.0,4.0,-9.0,4.0,1254830 -3109001,1630217372,2,57,0,1,1630090010,1,6.0,-9.0,-9.0,-9.0,2.0,1254831 -3109002,1630217394,2,53,0,1,1630090011,1,6.0,-9.0,-9.0,-9.0,4.0,1254832 -3109003,1630217392,2,56,0,1,1630090012,1,6.0,-9.0,-9.0,-9.0,2.0,1254833 -3109004,1630217379,2,56,0,1,1630090013,1,3.0,-9.0,-9.0,-9.0,2.0,1254834 -3109005,1630217299,2,62,0,1,1630090014,2,6.0,-9.0,-9.0,-9.0,4.0,1254835 -3109006,1630217397,2,62,0,1,1630090015,1,6.0,-9.0,-9.0,-9.0,4.0,1254836 -3109007,1630217368,2,52,0,1,1630090016,1,6.0,-9.0,-9.0,-9.0,2.0,1254837 -3109008,1630217316,2,59,0,1,1630090017,2,6.0,-9.0,-9.0,-9.0,4.0,1254838 -3109009,1630217385,2,56,0,1,1630090018,1,6.0,-9.0,-9.0,-9.0,4.0,1254839 -3109010,1630217388,2,59,0,1,1630090019,1,6.0,-9.0,-9.0,-9.0,2.0,1254840 -3109011,1630217264,2,46,0,1,1630090020,2,3.0,40.0,6.0,-9.0,4.0,1254841 -3109012,1630217332,2,61,0,1,1630090021,1,6.0,-9.0,-9.0,-9.0,4.0,1254842 -3109013,1630217499,4,49,0,1,1630090022,1,6.0,4.0,6.0,-9.0,2.0,1254843 -3109014,1630217491,4,62,0,1,1630090023,1,6.0,-9.0,-9.0,-9.0,4.0,1254844 -3109015,1630217500,4,49,0,1,1630090024,1,6.0,4.0,6.0,-9.0,2.0,1254845 -3109016,1630217492,4,62,0,1,1630090025,1,6.0,-9.0,-9.0,-9.0,4.0,1254846 -3109017,1630217501,4,49,0,1,1630090026,1,6.0,4.0,6.0,-9.0,2.0,1254847 -3109018,1630217502,4,49,0,1,1630090027,1,6.0,4.0,6.0,-9.0,2.0,1254848 -3109019,1630217493,4,62,0,1,1630090028,1,6.0,-9.0,-9.0,-9.0,4.0,1254849 -3109020,1630217494,4,62,0,1,1630090029,1,6.0,-9.0,-9.0,-9.0,4.0,1254850 -3109021,1630217537,3,60,0,1,1630090030,2,6.0,-9.0,-9.0,-9.0,4.0,1254851 -3109022,1630217538,3,60,0,1,1630090031,2,6.0,-9.0,-9.0,-9.0,4.0,1254852 -3109023,1630217530,3,51,0,1,1630090032,2,6.0,-9.0,-9.0,-9.0,4.0,1254853 -3109024,1630217531,3,51,0,1,1630090033,2,6.0,-9.0,-9.0,-9.0,4.0,1254854 -3109025,1630217532,3,51,0,1,1630090034,2,6.0,-9.0,-9.0,-9.0,4.0,1254855 -3109026,1630217533,3,51,0,1,1630090035,2,6.0,-9.0,-9.0,-9.0,4.0,1254856 -3109027,1630217534,3,51,0,1,1630090036,2,6.0,-9.0,-9.0,-9.0,4.0,1254857 -3109028,1630217187,1,64,0,1,1630090037,1,6.0,-9.0,-9.0,-9.0,4.0,1254858 -3109029,1630217243,1,51,0,1,1630090038,1,6.0,-9.0,-9.0,-9.0,2.0,1254859 -3109030,1630217206,1,60,0,1,1630090039,1,6.0,-9.0,-9.0,15.0,4.0,1254860 -3109031,1630217188,1,64,0,1,1630090040,1,6.0,-9.0,-9.0,-9.0,4.0,1254861 -3109032,1630217246,1,53,0,1,1630090041,1,6.0,8.0,6.0,-9.0,4.0,1254862 -3109033,1630217144,1,45,0,1,1630090042,1,6.0,-9.0,-9.0,-9.0,4.0,1254863 -3109034,1630217247,1,53,0,1,1630090043,1,6.0,8.0,6.0,-9.0,4.0,1254864 -3109035,1630217155,1,64,0,1,1630090044,1,6.0,-9.0,-9.0,-9.0,2.0,1254865 -3109036,1630217189,1,64,0,1,1630090045,1,6.0,-9.0,-9.0,-9.0,4.0,1254866 -3109037,1630217145,1,45,0,1,1630090046,1,6.0,-9.0,-9.0,-9.0,4.0,1254867 -3109038,1630217244,1,51,0,1,1630090047,1,6.0,-9.0,-9.0,-9.0,2.0,1254868 -3109039,1630217248,1,53,0,1,1630090048,1,6.0,8.0,6.0,-9.0,4.0,1254869 -3109040,1630217146,1,45,0,1,1630090049,1,6.0,-9.0,-9.0,-9.0,4.0,1254870 -3109041,1630217067,3,61,0,1,1630090050,2,6.0,-9.0,-9.0,-9.0,4.0,1254871 -3109042,1630217068,3,61,0,1,1630090051,2,6.0,-9.0,-9.0,-9.0,4.0,1254872 -3109043,1630217352,2,60,0,1,1630090052,1,6.0,-9.0,-9.0,-9.0,4.0,1254873 -3109044,1630217302,2,63,0,1,1630090053,2,6.0,-9.0,-9.0,-9.0,4.0,1254874 -3109045,1630217285,2,61,0,1,1630090054,2,6.0,-9.0,-9.0,-9.0,4.0,1254875 -3109046,1630217435,2,52,0,1,1630090055,1,6.0,-9.0,-9.0,-9.0,4.0,1254876 -3109047,1630217303,2,63,0,1,1630090056,2,6.0,-9.0,-9.0,-9.0,4.0,1254877 -3109048,1630217329,2,45,0,1,1630090057,1,6.0,55.0,4.0,-9.0,4.0,1254878 -3109049,1630217395,2,63,0,1,1630090058,1,6.0,-9.0,-9.0,-9.0,2.0,1254879 -3109050,1630217356,2,53,0,1,1630090059,1,6.0,-9.0,-9.0,-9.0,4.0,1254880 -3109051,1630217286,2,61,0,1,1630090060,2,6.0,-9.0,-9.0,-9.0,4.0,1254881 -3109052,1630217366,2,55,0,1,1630090061,1,6.0,-9.0,-9.0,-9.0,4.0,1254882 -3109053,1630217311,2,49,0,1,1630090062,2,6.0,20.0,5.0,-9.0,4.0,1254883 -3109054,1630217308,2,50,0,1,1630090063,2,3.0,-9.0,-9.0,15.0,4.0,1254884 -3109055,1630217402,2,62,0,1,1630090064,1,6.0,40.0,5.0,-9.0,4.0,1254885 -3109056,1630217342,2,58,0,1,1630090065,1,6.0,-9.0,-9.0,-9.0,4.0,1254886 -3109057,1630217415,2,53,0,1,1630090066,1,6.0,-9.0,-9.0,-9.0,2.0,1254887 -3109058,1630217330,2,45,0,1,1630090067,1,6.0,55.0,4.0,-9.0,4.0,1254888 -3109059,1630217396,2,62,0,1,1630090068,1,6.0,-9.0,-9.0,-9.0,2.0,1254889 -3109060,1630217193,1,64,0,1,1630090069,1,6.0,12.0,5.0,-9.0,4.0,1254890 -3109061,1630217196,1,56,0,1,1630090070,1,6.0,-9.0,-9.0,-9.0,2.0,1254891 -3109062,1630217197,1,56,0,1,1630090071,1,6.0,-9.0,-9.0,-9.0,2.0,1254892 -3109063,1630217198,1,56,0,1,1630090072,1,6.0,-9.0,-9.0,-9.0,2.0,1254893 -3109064,1630217382,2,63,0,1,1630090073,1,6.0,-9.0,-9.0,-9.0,2.0,1254894 -3109065,1630217274,2,57,0,1,1630090074,2,6.0,-9.0,-9.0,-9.0,4.0,1254895 -3109066,1630217443,2,45,0,1,1630090075,1,1.0,12.0,5.0,-9.0,4.0,1254896 -3109067,1630217334,2,49,0,1,1630090076,1,1.0,25.0,1.0,-9.0,4.0,1254897 -3109068,1630217375,2,54,0,1,1630090077,1,1.0,25.0,1.0,-9.0,4.0,1254898 -3109069,1630217444,2,45,0,1,1630090078,1,1.0,12.0,5.0,-9.0,4.0,1254899 -3109070,1630217399,2,61,0,1,1630090079,1,1.0,3.0,6.0,-9.0,4.0,1254900 -3109071,1630217298,2,55,0,1,1630090080,2,1.0,40.0,1.0,-9.0,4.0,1254901 -3109072,1630217341,2,60,0,1,1630090081,1,1.0,40.0,1.0,-9.0,2.0,1254902 -3109073,1630217389,2,47,0,1,1630090082,1,1.0,32.0,1.0,-9.0,4.0,1254903 -3109074,1630217337,2,63,0,1,1630090083,1,1.0,25.0,1.0,-9.0,4.0,1254904 -3109075,1630217525,4,58,0,1,1630090084,2,1.0,40.0,1.0,-9.0,4.0,1254905 -3109076,1630217604,4,63,0,1,1630090085,1,1.0,40.0,1.0,-9.0,4.0,1254906 -3109077,1630217605,4,63,0,1,1630090086,1,1.0,40.0,1.0,-9.0,4.0,1254907 -3109078,1630217606,4,63,0,1,1630090087,1,1.0,40.0,1.0,-9.0,4.0,1254908 -3109079,1630217607,4,63,0,1,1630090088,1,1.0,40.0,1.0,-9.0,4.0,1254909 -3109080,1630217608,4,63,0,1,1630090089,1,1.0,40.0,1.0,-9.0,4.0,1254910 -3109081,1630217609,4,63,0,1,1630090090,1,1.0,40.0,1.0,-9.0,4.0,1254911 -3109082,1630217284,2,62,0,1,1630090091,2,1.0,20.0,6.0,-9.0,4.0,1254912 -3109083,1630217408,2,47,0,1,1630090092,1,1.0,37.0,4.0,-9.0,4.0,1254913 -3109084,1630217273,2,53,0,1,1630090093,2,1.0,32.0,1.0,-9.0,4.0,1254914 -3109085,1630217319,2,51,0,1,1630090094,2,1.0,20.0,6.0,-9.0,4.0,1254915 -3109086,1630217448,2,58,0,1,1630090095,1,1.0,40.0,1.0,-9.0,4.0,1254916 -3109087,1630217318,2,55,0,1,1630090096,2,2.0,40.0,4.0,-9.0,4.0,1254917 -3109088,1630217430,2,52,0,1,1630090097,1,1.0,32.0,6.0,-9.0,4.0,1254918 -3109089,1630217431,2,52,0,1,1630090098,1,1.0,32.0,6.0,-9.0,4.0,1254919 -3109090,1630217495,4,61,0,1,1630090099,1,1.0,24.0,1.0,-9.0,4.0,1254920 -3109091,1630217496,4,61,0,1,1630090100,1,1.0,24.0,1.0,-9.0,4.0,1254921 -3109092,1630217497,4,61,0,1,1630090101,1,1.0,24.0,1.0,-9.0,4.0,1254922 -3109093,1630217498,4,61,0,1,1630090102,1,1.0,24.0,1.0,-9.0,4.0,1254923 -3109094,1630217521,3,51,0,1,1630090103,2,1.0,40.0,1.0,-9.0,4.0,1254924 -3109095,1630217522,3,51,0,1,1630090104,2,1.0,40.0,1.0,-9.0,4.0,1254925 -3109096,1630217523,3,51,0,1,1630090105,2,1.0,40.0,1.0,-9.0,4.0,1254926 -3109097,1630217215,1,55,0,1,1630090106,1,1.0,40.0,3.0,-9.0,4.0,1254927 -3109098,1630217216,1,55,0,1,1630090107,1,1.0,40.0,3.0,-9.0,4.0,1254928 -3109099,1630217141,1,56,0,1,1630090108,1,1.0,40.0,1.0,-9.0,2.0,1254929 -3109100,1630217221,1,48,0,1,1630090109,1,2.0,40.0,3.0,-9.0,4.0,1254930 -3109101,1630217142,1,56,0,1,1630090110,1,1.0,40.0,1.0,-9.0,2.0,1254931 -3109102,1630217143,1,56,0,1,1630090111,1,1.0,40.0,1.0,-9.0,2.0,1254932 -3109103,1630217348,2,51,0,1,1630090112,1,1.0,40.0,1.0,-9.0,4.0,1254933 -3109104,1630217401,2,59,0,1,1630090113,1,1.0,40.0,1.0,-9.0,2.0,1254934 -3109105,1630217218,1,57,0,1,1630090114,1,1.0,60.0,1.0,-9.0,4.0,1254935 -3109106,1630217219,1,57,0,1,1630090115,1,1.0,60.0,1.0,-9.0,4.0,1254936 -3109107,1630217344,2,52,0,1,1630090116,1,1.0,40.0,1.0,15.0,4.0,1254937 -3109108,1630217346,2,52,15,2,1630090116,1,1.0,40.0,1.0,15.0,4.0,1254937 -3109109,1630217292,2,50,0,1,1630090117,2,1.0,30.0,1.0,-9.0,4.0,1254938 -3109110,1630217294,2,19,2,2,1630090117,2,1.0,20.0,3.0,-9.0,4.0,1254938 -3109111,1630217288,2,49,0,1,1630090118,2,1.0,48.0,1.0,-9.0,4.0,1254939 -3109112,1630217290,2,26,2,2,1630090118,1,1.0,3.0,6.0,-9.0,4.0,1254939 -3109113,1630217024,2,87,0,1,1630090119,2,6.0,-9.0,-9.0,-9.0,4.0,1254940 -3109114,1630217035,2,85,0,1,1630090120,2,6.0,-9.0,-9.0,-9.0,4.0,1254941 -3109115,1630217475,2,69,0,1,1630090121,1,6.0,-9.0,-9.0,-9.0,2.0,1254942 -3109116,1630217476,2,69,0,1,1630090122,1,6.0,-9.0,-9.0,-9.0,2.0,1254943 -3109117,1630217546,1,66,0,1,1630090123,1,6.0,-9.0,-9.0,-9.0,4.0,1254944 -3109118,1630217459,2,73,0,1,1630090124,1,6.0,-9.0,-9.0,-9.0,4.0,1254945 -3109119,1630217637,3,69,0,1,1630090125,1,1.0,40.0,1.0,-9.0,4.0,1254946 -3109120,1630217049,1,82,0,1,1630090126,1,1.0,48.0,1.0,-9.0,2.0,1254947 -3109121,1630217043,1,76,1,2,1630090126,2,1.0,48.0,1.0,-9.0,4.0,1254947 -3109122,1630217050,1,82,0,1,1630090127,1,1.0,48.0,1.0,-9.0,2.0,1254948 -3109123,1630217044,1,76,1,2,1630090127,2,1.0,48.0,1.0,-9.0,4.0,1254948 -3109124,1630217051,1,82,0,1,1630090128,1,1.0,48.0,1.0,-9.0,2.0,1254949 -3109125,1630217045,1,76,1,2,1630090128,2,1.0,48.0,1.0,-9.0,4.0,1254949 -3109126,1630217052,1,82,0,1,1630090129,1,1.0,48.0,1.0,-9.0,2.0,1254950 -3109127,1630217046,1,76,1,2,1630090129,2,1.0,48.0,1.0,-9.0,4.0,1254950 -3109128,1630217039,1,69,0,1,1630090130,1,1.0,10.0,3.0,-9.0,4.0,1254951 -3109129,1630217036,1,68,12,2,1630090130,2,1.0,17.0,1.0,-9.0,4.0,1254951 -3109130,1630217053,1,82,0,1,1630090131,1,1.0,48.0,1.0,-9.0,2.0,1254952 -3109131,1630217047,1,76,1,2,1630090131,2,1.0,48.0,1.0,-9.0,4.0,1254952 -3109132,1630217054,1,82,0,1,1630090132,1,1.0,48.0,1.0,-9.0,2.0,1254953 -3109133,1630217048,1,76,1,2,1630090132,2,1.0,48.0,1.0,-9.0,4.0,1254953 -3109134,1630217040,1,69,0,1,1630090133,1,1.0,10.0,3.0,-9.0,4.0,1254954 -3109135,1630217037,1,68,12,2,1630090133,2,1.0,17.0,1.0,-9.0,4.0,1254954 -3109136,1630217023,2,69,0,1,1630090134,2,6.0,-9.0,-9.0,-9.0,4.0,1254955 -3109137,1630217464,2,83,0,1,1630090135,1,6.0,-9.0,-9.0,-9.0,2.0,1254956 -3109138,1630217025,2,72,0,1,1630090136,2,6.0,-9.0,-9.0,-9.0,4.0,1254957 -3109139,1630217486,2,86,0,1,1630090137,1,6.0,-9.0,-9.0,-9.0,2.0,1254958 -3109140,1630217462,2,71,0,1,1630090138,1,6.0,-9.0,-9.0,-9.0,4.0,1254959 -3109141,1630217487,2,86,0,1,1630090139,1,6.0,-9.0,-9.0,-9.0,2.0,1254960 -3109142,1630217027,2,67,0,1,1630090140,2,6.0,-9.0,-9.0,-9.0,4.0,1254961 -3109143,1630217485,2,65,0,1,1630090141,1,6.0,-9.0,-9.0,-9.0,2.0,1254962 -3109144,1630217033,2,80,0,1,1630090142,2,6.0,-9.0,-9.0,-9.0,4.0,1254963 -3109145,1630217470,2,72,0,1,1630090143,1,3.0,-9.0,-9.0,15.0,2.0,1254964 -3109146,1630217034,2,67,0,1,1630090144,2,6.0,8.0,6.0,-9.0,4.0,1254965 -3109147,1630217478,2,66,0,1,1630090145,1,6.0,-9.0,-9.0,-9.0,4.0,1254966 -3109148,1630217473,2,65,0,1,1630090146,1,6.0,-9.0,-9.0,-9.0,2.0,1254967 -3109149,1630217465,2,79,0,1,1630090147,1,6.0,-9.0,-9.0,-9.0,2.0,1254968 -3109150,1630217018,2,86,0,1,1630090148,2,6.0,-9.0,-9.0,-9.0,4.0,1254969 -3109151,1630217020,2,65,0,1,1630090149,2,6.0,-9.0,-9.0,-9.0,4.0,1254970 -3109152,1630217028,2,67,0,1,1630090150,2,6.0,-9.0,-9.0,-9.0,4.0,1254971 -3109153,1630217456,2,78,0,1,1630090151,1,6.0,-9.0,-9.0,-9.0,4.0,1254972 -3109154,1630217482,2,75,0,1,1630090152,1,6.0,-9.0,-9.0,-9.0,4.0,1254973 -3109155,1630217014,2,69,0,1,1630090153,2,6.0,-9.0,-9.0,-9.0,4.0,1254974 -3109156,1630217022,2,88,0,1,1630090154,2,6.0,-9.0,-9.0,-9.0,4.0,1254975 -3109157,1630217016,2,82,0,1,1630090155,2,6.0,-9.0,-9.0,-9.0,4.0,1254976 -3109158,1630217479,2,79,0,1,1630090156,1,6.0,-9.0,-9.0,-9.0,4.0,1254977 -3109159,1630217488,2,76,0,1,1630090157,1,6.0,-9.0,-9.0,-9.0,4.0,1254978 -3109160,1630217460,2,71,0,1,1630090158,1,6.0,-9.0,-9.0,-9.0,4.0,1254979 -3109161,1630217032,2,72,0,1,1630090159,2,6.0,-9.0,-9.0,-9.0,4.0,1254980 -3109162,1630217029,2,72,0,1,1630090160,2,6.0,-9.0,-9.0,-9.0,4.0,1254981 -3109163,1630217489,2,76,0,1,1630090161,1,6.0,-9.0,-9.0,-9.0,4.0,1254982 -3109164,1630217474,2,65,0,1,1630090162,1,6.0,-9.0,-9.0,-9.0,2.0,1254983 -3109165,1630217458,2,80,0,1,1630090163,1,6.0,-9.0,-9.0,-9.0,2.0,1254984 -3109166,1630217466,2,70,0,1,1630090164,1,6.0,-9.0,-9.0,-9.0,4.0,1254985 -3109167,1630217453,4,72,0,1,1630090165,2,6.0,-9.0,-9.0,-9.0,4.0,1254986 -3109168,1630217451,4,70,0,1,1630090166,2,6.0,-9.0,-9.0,-9.0,4.0,1254987 -3109169,1630217452,4,70,0,1,1630090167,2,6.0,-9.0,-9.0,-9.0,4.0,1254988 -3109170,1630217550,1,66,0,1,1630090168,1,6.0,-9.0,-9.0,-9.0,4.0,1254989 -3109171,1630217556,1,65,0,1,1630090169,1,6.0,-9.0,-9.0,-9.0,2.0,1254990 -3109172,1630217555,1,77,0,1,1630090170,1,6.0,-9.0,-9.0,-9.0,4.0,1254991 -3109173,1630217551,1,66,0,1,1630090171,1,6.0,-9.0,-9.0,-9.0,4.0,1254992 -3109174,1630217552,1,66,0,1,1630090172,1,6.0,-9.0,-9.0,-9.0,4.0,1254993 -3109175,1630217542,1,74,0,1,1630090173,1,6.0,-9.0,-9.0,-9.0,3.0,1254994 -3109176,1630217553,1,66,0,1,1630090174,1,6.0,-9.0,-9.0,-9.0,4.0,1254995 -3109177,1630217554,1,66,0,1,1630090175,1,6.0,-9.0,-9.0,-9.0,4.0,1254996 -3109178,1630217543,3,67,0,1,1630090176,1,6.0,-9.0,-9.0,-9.0,2.0,1254997 -3109179,1630217544,3,67,0,1,1630090177,1,6.0,-9.0,-9.0,-9.0,2.0,1254998 -3109180,1630217545,3,67,0,1,1630090178,1,6.0,-9.0,-9.0,-9.0,2.0,1254999 -3109181,1630217021,2,66,0,1,1630090179,2,6.0,-9.0,-9.0,-9.0,4.0,1255000 -3109182,1630217019,2,71,0,1,1630090180,2,6.0,-9.0,-9.0,-9.0,4.0,1255001 -3109183,1630217472,2,80,0,1,1630090181,1,6.0,-9.0,-9.0,-9.0,4.0,1255002 -3109184,1630217012,2,76,0,1,1630090182,2,6.0,-9.0,-9.0,-9.0,4.0,1255003 -3109185,1630217454,2,77,0,1,1630090183,1,6.0,-9.0,-9.0,-9.0,4.0,1255004 -3109186,1630217017,2,66,0,1,1630090184,2,6.0,-9.0,-9.0,-9.0,4.0,1255005 -3109187,1630217467,2,66,0,1,1630090185,1,6.0,-9.0,-9.0,-9.0,4.0,1255006 -3109188,1630217030,2,69,0,1,1630090186,2,6.0,-9.0,-9.0,-9.0,4.0,1255007 -3109189,1630217484,2,65,0,1,1630090187,1,6.0,12.0,6.0,15.0,2.0,1255008 -3109190,1630217455,2,77,0,1,1630090188,1,6.0,-9.0,-9.0,-9.0,4.0,1255009 -3109191,1630217015,2,67,0,1,1630090189,2,6.0,-9.0,-9.0,-9.0,4.0,1255010 -3109192,1630217461,2,87,0,1,1630090190,1,6.0,-9.0,-9.0,-9.0,2.0,1255011 -3109193,1630217483,2,65,0,1,1630090191,1,6.0,-9.0,-9.0,-9.0,2.0,1255012 -3109194,1630217463,2,83,0,1,1630090192,1,6.0,-9.0,-9.0,-9.0,2.0,1255013 -3109195,1630217031,2,69,0,1,1630090193,2,6.0,-9.0,-9.0,-9.0,4.0,1255014 -3109196,1630217468,2,66,0,1,1630090194,1,6.0,-9.0,-9.0,-9.0,4.0,1255015 -3109197,1630217635,4,65,0,1,1630090195,1,6.0,-9.0,-9.0,-9.0,4.0,1255016 -3109198,1630217639,3,67,0,1,1630090196,1,6.0,-9.0,-9.0,-9.0,2.0,1255017 -3109199,1630217640,3,67,0,1,1630090197,1,6.0,-9.0,-9.0,-9.0,2.0,1255018 -3109200,1630217641,3,67,0,1,1630090198,1,6.0,-9.0,-9.0,-9.0,2.0,1255019 -3109201,1630217548,1,68,0,1,1630090199,1,6.0,-9.0,-9.0,-9.0,2.0,1255020 -3109202,1630217549,1,68,0,1,1630090200,1,6.0,-9.0,-9.0,-9.0,2.0,1255021 -3109203,1630217026,2,65,0,1,1630090201,2,6.0,-9.0,-9.0,-9.0,4.0,1255022 -3109204,1630217138,1,24,0,1,1630090202,1,6.0,-9.0,-9.0,15.0,4.0,1255023 -3109205,1630217340,2,37,0,1,1630090203,1,1.0,40.0,6.0,-9.0,4.0,1255024 -3109206,1630217429,2,58,0,1,1630090204,1,6.0,-9.0,-9.0,-9.0,4.0,1255025 -3109207,1630217150,1,39,0,1,1630090205,1,6.0,8.0,6.0,16.0,4.0,1255026 -3109208,1630217547,1,66,0,1,1630090206,1,6.0,-9.0,-9.0,-9.0,4.0,1255027 -3109209,1630217638,3,69,0,1,1630090207,1,1.0,40.0,1.0,-9.0,4.0,1255028 -3109210,1630217380,2,56,0,1,1630090208,1,1.0,32.0,1.0,-9.0,2.0,1255029 -3109211,1630217427,2,46,0,1,1630090209,1,3.0,-9.0,-9.0,-9.0,4.0,1255030 -3109212,1630217195,1,55,0,1,1630090210,1,1.0,50.0,1.0,-9.0,4.0,1255031 -3109213,1630217304,2,64,0,1,1630090211,2,6.0,40.0,6.0,-9.0,4.0,1255032 -3109214,1630217345,2,52,0,1,1630090212,1,1.0,40.0,1.0,15.0,4.0,1255033 -3109215,1630217347,2,52,15,2,1630090212,1,1.0,40.0,1.0,15.0,4.0,1255033 -3109216,1630217192,3,54,0,1,1630090213,1,1.0,40.0,1.0,-9.0,4.0,1255034 -3109217,1630217121,1,28,0,1,1630090214,2,1.0,55.0,1.0,-9.0,4.0,1255035 -3109218,1630217123,1,28,1,2,1630090214,1,1.0,40.0,1.0,-9.0,4.0,1255035 -3109219,1630217421,2,45,0,1,1630090215,1,1.0,50.0,1.0,-9.0,2.0,1255036 -3109220,1630217422,2,19,2,2,1630090215,1,1.0,40.0,5.0,15.0,4.0,1255036 -3109221,1630217205,1,30,0,1,1630090216,1,1.0,40.0,4.0,-9.0,4.0,1255037 -3109222,1630217481,2,66,0,1,1630090217,1,1.0,30.0,1.0,-9.0,2.0,1255038 -3109223,1630217066,1,58,0,1,1630090218,2,1.0,40.0,1.0,-9.0,4.0,1255039 -3109224,1630217217,1,55,0,1,1630090219,1,1.0,40.0,3.0,-9.0,4.0,1255040 -3109225,1630217636,4,65,0,1,1630090220,1,6.0,-9.0,-9.0,-9.0,4.0,1255041 -3109226,1630217101,1,23,0,1,1630090221,2,1.0,60.0,4.0,16.0,4.0,1255042 -3109227,1630217102,1,22,12,2,1630090221,2,1.0,40.0,1.0,-9.0,4.0,1255042 -3109228,1630217140,1,42,0,1,1630090222,1,1.0,40.0,1.0,-9.0,2.0,1255043 -3109229,1630217560,4,30,0,1,1630090223,2,1.0,44.0,1.0,-9.0,4.0,1255044 -3109230,1630217563,4,34,1,2,1630090223,1,1.0,40.0,2.0,-9.0,4.0,1255044 -3109231,1630217163,1,39,0,1,1630090224,1,1.0,40.0,1.0,-9.0,4.0,1255045 -3109232,1630217287,2,29,0,1,1630090225,2,1.0,40.0,1.0,-9.0,4.0,1255046 -3109233,1630217042,1,72,0,1,1630090226,2,1.0,15.0,3.0,-9.0,4.0,1255047 -3109234,1630217289,2,49,0,1,1630090227,2,1.0,48.0,1.0,-9.0,4.0,1255048 -3109235,1630217291,2,26,2,2,1630090227,1,1.0,3.0,6.0,-9.0,4.0,1255048 -3109236,1630217279,2,42,0,1,1630090228,2,1.0,52.0,1.0,-9.0,2.0,1255049 -3109237,1630217282,2,46,13,2,1630090228,2,1.0,30.0,4.0,-9.0,4.0,1255049 -3109238,1630217541,3,34,0,1,1630090229,2,1.0,80.0,2.0,-9.0,4.0,1255050 -3109239,1630217200,1,23,0,1,1630090230,1,1.0,40.0,3.0,15.0,4.0,1255051 -3109240,1630217186,1,62,0,1,1630090231,1,6.0,-9.0,-9.0,-9.0,2.0,1255052 -3109241,1630217445,2,27,0,1,1630090232,1,6.0,-9.0,-9.0,-9.0,2.0,1255053 -3109242,1630217621,4,30,0,1,1630090233,1,1.0,60.0,1.0,16.0,4.0,1255054 -3109243,1630217314,2,53,0,1,1630090234,2,1.0,45.0,1.0,-9.0,4.0,1255055 -3109244,1630217315,2,32,2,2,1630090234,2,1.0,40.0,1.0,-9.0,4.0,1255055 -3109245,1630217056,1,24,0,1,1630090235,2,1.0,20.0,3.0,15.0,4.0,1255056 -3109246,1630217057,1,29,1,2,1630090235,1,1.0,31.0,3.0,15.0,4.0,1255056 -3109247,1630217013,2,66,0,1,1630090236,2,1.0,6.0,1.0,15.0,4.0,1255057 -3109248,1630217417,2,57,0,1,1630090237,1,1.0,40.0,1.0,15.0,2.0,1255058 -3109249,1630217418,2,35,2,2,1630090237,1,1.0,40.0,1.0,-9.0,4.0,1255058 -3109250,1630217055,1,57,0,1,1630090238,2,1.0,50.0,1.0,-9.0,4.0,1255059 -3109251,1630217324,2,44,0,1,1630090239,1,1.0,40.0,1.0,-9.0,4.0,1255060 -3109252,1630217325,2,25,10,2,1630090239,1,1.0,40.0,1.0,-9.0,4.0,1255060 -3109253,1630217406,4,19,0,1,1630090240,2,1.0,40.0,5.0,-9.0,4.0,1255061 -3109254,1630217405,2,21,13,2,1630090240,1,1.0,50.0,1.0,-9.0,4.0,1255061 -3109255,1630217526,4,58,0,1,1630090241,2,1.0,40.0,1.0,-9.0,4.0,1255062 -3109256,1630217317,3,35,0,1,1630090242,2,3.0,30.0,5.0,-9.0,4.0,1255063 -3109257,1630217220,1,57,0,1,1630090243,1,1.0,60.0,1.0,-9.0,4.0,1255064 -3109258,1630217350,2,41,0,1,1630090244,1,3.0,-9.0,-9.0,-9.0,4.0,1255065 -3109259,1630217333,3,53,0,1,1630090245,1,6.0,-9.0,-9.0,-9.0,4.0,1255066 -3109260,1630217524,3,51,0,1,1630090246,2,1.0,40.0,1.0,-9.0,4.0,1255067 -3109261,1630217228,1,20,0,1,1630090247,1,6.0,35.0,5.0,15.0,4.0,1255068 -3109262,1630217617,4,26,0,1,1630090248,1,1.0,60.0,3.0,-9.0,4.0,1255069 -3109263,1630217159,3,29,0,1,1630090249,1,1.0,43.0,1.0,-9.0,4.0,1255070 -3109264,1630217610,4,63,0,1,1630090250,1,1.0,40.0,1.0,-9.0,4.0,1255071 -3109265,1630217293,2,50,0,1,1630090251,2,1.0,30.0,1.0,-9.0,4.0,1255072 -3109266,1630217295,2,19,2,2,1630090251,2,1.0,20.0,3.0,-9.0,4.0,1255072 -3109267,1630217457,2,66,0,1,1630090252,1,1.0,35.0,1.0,-9.0,4.0,1255073 -3109268,1630217252,2,40,0,1,1630090253,2,1.0,40.0,1.0,-9.0,4.0,1255074 -3109269,1630217253,2,52,1,2,1630090253,1,1.0,40.0,1.0,-9.0,4.0,1255074 -3109270,1630217471,2,65,0,1,1630090254,1,6.0,-9.0,-9.0,-9.0,2.0,1255075 -3109271,1630217535,3,51,0,1,1630090255,2,6.0,-9.0,-9.0,-9.0,4.0,1255076 -3109272,1630217300,2,26,0,1,1630090256,2,1.0,40.0,4.0,15.0,4.0,1255077 -3109273,1630217301,2,35,13,2,1630090256,1,1.0,20.0,1.0,-9.0,4.0,1255077 -3109274,1630217240,1,27,0,1,1630090257,1,1.0,40.0,1.0,-9.0,4.0,1255078 -3109275,1630217603,4,25,0,1,1630090258,1,1.0,70.0,5.0,-9.0,2.0,1255079 -3109276,1630217403,3,44,0,1,1630090259,1,3.0,-9.0,-9.0,-9.0,4.0,1255080 -3109277,1630217613,4,45,0,1,1630090260,1,1.0,36.0,1.0,-9.0,4.0,1255081 -3109278,1630217628,4,26,0,1,1630090261,1,6.0,-9.0,-9.0,16.0,4.0,1255082 -3109279,1630217557,1,65,0,1,1630090262,1,6.0,-9.0,-9.0,-9.0,2.0,1255083 -3109280,1630217137,1,63,0,1,1630090263,1,1.0,92.0,1.0,-9.0,4.0,1255084 -3109281,1630217536,3,23,0,1,1630090264,2,1.0,40.0,1.0,-9.0,4.0,1255085 -3109282,1630217171,1,24,0,1,1630090265,1,3.0,20.0,5.0,-9.0,4.0,1255086 -3109283,1630217134,1,24,0,1,1630090266,2,1.0,40.0,1.0,15.0,4.0,1255087 -3109284,1630217135,1,31,13,2,1630090266,1,1.0,20.0,1.0,16.0,4.0,1255087 -3109285,1630217503,4,49,0,1,1630090267,1,6.0,4.0,6.0,-9.0,2.0,1255088 -3109286,1630217590,4,27,0,1,1630090268,1,1.0,54.0,2.0,16.0,4.0,1255089 -3109287,1630217583,4,26,1,2,1630090268,2,1.0,15.0,6.0,16.0,4.0,1255089 -3109288,1630217176,1,57,0,1,1630090269,1,1.0,55.0,1.0,-9.0,4.0,1255090 -3109289,1630217386,2,43,0,1,1630090270,1,6.0,-9.0,-9.0,-9.0,4.0,1255091 -3109290,1630217275,3,27,0,1,1630090271,2,1.0,65.0,1.0,-9.0,4.0,1255092 -3109291,1630217576,4,22,0,1,1630090272,2,1.0,25.0,1.0,15.0,4.0,1255093 -3109292,1630217477,3,65,0,1,1630090273,1,6.0,-9.0,-9.0,-9.0,4.0,1255094 -3109293,1630217100,1,30,0,1,1630090274,1,1.0,60.0,1.0,16.0,4.0,1255095 -3109294,1630217094,1,29,1,2,1630090274,2,1.0,65.0,1.0,16.0,4.0,1255095 -3109295,1630217223,1,63,0,1,1630090275,1,1.0,40.0,1.0,-9.0,4.0,1255096 -3109296,1630217199,1,56,0,1,1630090276,1,6.0,-9.0,-9.0,-9.0,2.0,1255097 -3109297,1630217449,2,42,0,1,1630090277,1,2.0,60.0,1.0,-9.0,2.0,1255098 -3109298,1630217529,3,27,0,1,1630090278,2,1.0,40.0,1.0,-9.0,4.0,1255099 -3109299,1630217622,4,23,0,1,1630090279,1,1.0,80.0,1.0,-9.0,4.0,1255100 -3109300,1630217268,2,64,0,1,1630090280,2,6.0,-9.0,-9.0,-9.0,4.0,1255101 -3109301,1630217480,2,71,0,1,1630090281,1,6.0,-9.0,-9.0,-9.0,2.0,1255102 -3109302,1630217376,2,62,0,1,1630090282,1,1.0,50.0,1.0,-9.0,2.0,1255103 -3109303,1630217088,1,28,0,1,1630090283,1,1.0,40.0,1.0,16.0,4.0,1255104 -3109304,1630217078,1,27,12,2,1630090283,2,1.0,1.0,1.0,16.0,4.0,1255104 -3109305,1630217505,4,25,0,1,1630090284,1,1.0,30.0,1.0,-9.0,4.0,1255105 -3109306,1630217369,2,41,0,1,1630090285,1,3.0,50.0,4.0,-9.0,4.0,1255106 -3109307,1630217167,1,31,0,1,1630090286,1,3.0,8.0,4.0,-9.0,4.0,1255107 -3109308,1630217328,2,59,0,1,1630090287,1,1.0,40.0,1.0,-9.0,4.0,1255108 -3109309,1630217516,4,38,0,1,1630090288,1,3.0,30.0,6.0,15.0,3.0,1255109 -3109310,1630217469,2,66,0,1,1630090289,1,6.0,-9.0,-9.0,-9.0,4.0,1255110 -3109311,1630217041,1,69,0,1,1630090290,1,1.0,10.0,3.0,-9.0,4.0,1255111 -3109312,1630217038,1,68,12,2,1630090290,2,1.0,17.0,1.0,-9.0,4.0,1255111 -3109313,1630217642,3,67,0,1,1630090291,1,6.0,-9.0,-9.0,-9.0,2.0,1255112 -3109314,1630217423,2,61,0,1,1630090292,1,6.0,-9.0,-9.0,15.0,4.0,1255113 -3109315,1630217424,2,59,5,2,1630090292,1,3.0,-9.0,-9.0,-9.0,4.0,1255113 -3109316,1630217119,1,25,0,1,1630090293,1,1.0,45.0,1.0,-9.0,4.0,1255114 -3109317,1630217118,1,24,13,2,1630090293,2,1.0,40.0,1.0,-9.0,4.0,1255114 -3109318,1630217190,1,23,0,1,1630090294,1,1.0,40.0,1.0,-9.0,4.0,1255115 -3109319,1630217393,2,62,0,1,1630090295,1,1.0,45.0,1.0,-9.0,4.0,1255116 -3109320,1630217506,4,22,0,1,1630090296,1,2.0,20.0,4.0,16.0,4.0,1255117 -3109321,1630217419,2,45,0,1,1630090297,1,1.0,48.0,1.0,-9.0,4.0,1255118 -3109322,1630217183,1,27,0,1,1630090298,1,1.0,48.0,1.0,-9.0,4.0,1255119 -3109323,1630217233,3,30,0,1,1630090299,1,1.0,45.0,1.0,-9.0,4.0,1255120 -3109324,1630217520,4,28,0,1,1630090300,1,1.0,80.0,1.0,-9.0,4.0,1255121 -3109325,1630217156,1,20,0,1,1630090301,1,1.0,40.0,5.0,15.0,4.0,1255122 -3109326,1630218281,1,28,0,1,1630090302,1,1.0,60.0,1.0,16.0,4.0,1255123 -3109327,1630218258,1,42,0,1,1630090303,1,1.0,50.0,1.0,-9.0,4.0,1255124 -3109328,1630218288,1,43,0,1,1630090304,1,1.0,40.0,1.0,-9.0,4.0,1255125 -3109329,1630218289,1,49,13,2,1630090304,1,1.0,35.0,4.0,-9.0,2.0,1255125 -3109330,1630217809,1,42,0,1,1630090305,1,1.0,40.0,1.0,-9.0,4.0,1255126 -3109331,1630217808,1,42,1,2,1630090305,2,1.0,40.0,1.0,-9.0,4.0,1255126 -3109332,1630218093,1,35,0,1,1630090306,2,1.0,40.0,2.0,-9.0,4.0,1255127 -3109333,1630218721,2,37,0,1,1630090307,2,1.0,40.0,1.0,-9.0,4.0,1255128 -3109334,1630218725,2,17,2,2,1630090307,2,3.0,-9.0,-9.0,14.0,4.0,1255128 -3109335,1630218723,2,15,2,3,1630090307,1,-9.0,-9.0,-9.0,13.0,-9.0,1255128 -3109336,1630217820,1,59,0,1,1630090308,2,1.0,50.0,1.0,-9.0,4.0,1255129 -3109337,1630219725,2,53,0,1,1630090309,1,1.0,40.0,1.0,-9.0,2.0,1255130 -3109338,1630217656,2,48,0,1,1630090310,2,1.0,35.0,4.0,16.0,4.0,1255131 -3109339,1630217655,2,72,6,2,1630090310,2,6.0,-9.0,-9.0,-9.0,4.0,1255131 -3109340,1630217657,2,23,10,3,1630090310,2,6.0,-9.0,-9.0,-9.0,4.0,1255131 -3109341,1630219785,2,53,0,1,1630090311,1,6.0,-9.0,-9.0,-9.0,4.0,1255132 -3109342,1630219786,2,53,0,1,1630090312,1,6.0,-9.0,-9.0,-9.0,4.0,1255133 -3109343,1630218031,1,62,0,1,1630090313,2,6.0,-9.0,-9.0,-9.0,4.0,1255134 -3109344,1630219808,2,54,0,1,1630090314,1,6.0,-9.0,-9.0,15.0,4.0,1255135 -3109345,1630219809,2,54,0,1,1630090315,1,6.0,-9.0,-9.0,15.0,4.0,1255136 -3109346,1630218168,1,54,0,1,1630090316,1,3.0,30.0,6.0,-9.0,4.0,1255137 -3109347,1630218903,2,55,0,1,1630090317,2,6.0,-9.0,-9.0,-9.0,4.0,1255138 -3109348,1630218904,2,56,1,2,1630090317,1,6.0,-9.0,-9.0,-9.0,4.0,1255138 -3109349,1630219574,2,57,0,1,1630090318,1,1.0,15.0,5.0,-9.0,2.0,1255139 -3109350,1630217688,2,75,0,1,1630090319,2,6.0,-9.0,-9.0,-9.0,4.0,1255140 -3109351,1630217988,1,33,0,1,1630090320,2,1.0,50.0,1.0,-9.0,4.0,1255141 -3109352,1630217989,1,33,0,1,1630090321,2,1.0,50.0,1.0,-9.0,4.0,1255142 -3109353,1630217831,1,27,0,1,1630090322,1,1.0,50.0,1.0,-9.0,4.0,1255143 -3109354,1630217828,3,28,1,2,1630090322,2,6.0,45.0,4.0,-9.0,4.0,1255143 -3109355,1630217832,1,27,0,1,1630090323,1,1.0,50.0,1.0,-9.0,4.0,1255144 -3109356,1630217829,3,28,1,2,1630090323,2,6.0,45.0,4.0,-9.0,4.0,1255144 -3109357,1630217833,1,27,0,1,1630090324,1,1.0,50.0,1.0,-9.0,4.0,1255145 -3109358,1630217830,3,28,1,2,1630090324,2,6.0,45.0,4.0,-9.0,4.0,1255145 -3109359,1630218008,1,33,0,1,1630090325,2,1.0,40.0,1.0,-9.0,4.0,1255146 -3109360,1630218010,1,28,15,2,1630090325,2,1.0,30.0,1.0,16.0,4.0,1255146 -3109361,1630218014,1,28,15,3,1630090325,1,1.0,65.0,1.0,-9.0,4.0,1255146 -3109362,1630218016,1,25,15,4,1630090325,1,1.0,50.0,1.0,-9.0,4.0,1255146 -3109363,1630218012,1,24,15,5,1630090325,2,1.0,15.0,4.0,16.0,4.0,1255146 -3109364,1630217909,1,34,0,1,1630090326,2,1.0,24.0,1.0,-9.0,4.0,1255147 -3109365,1630217911,1,35,1,2,1630090326,1,1.0,50.0,1.0,-9.0,4.0,1255147 -3109366,1630217915,1,2,2,3,1630090326,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255147 -3109367,1630217913,2,3,3,4,1630090326,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255147 -3109368,1630217980,1,32,0,1,1630090327,2,1.0,45.0,1.0,-9.0,4.0,1255148 -3109369,1630217984,3,7,2,2,1630090327,1,-9.0,-9.0,-9.0,3.0,-9.0,1255148 -3109370,1630217982,1,37,13,3,1630090327,2,1.0,50.0,1.0,-9.0,4.0,1255148 -3109371,1630217981,1,32,0,1,1630090328,2,1.0,45.0,1.0,-9.0,4.0,1255149 -3109372,1630217985,3,7,2,2,1630090328,1,-9.0,-9.0,-9.0,3.0,-9.0,1255149 -3109373,1630217983,1,37,13,3,1630090328,2,1.0,50.0,1.0,-9.0,4.0,1255149 -3109374,1630218130,1,27,0,1,1630090329,1,1.0,45.0,1.0,-9.0,4.0,1255150 -3109375,1630218128,1,28,1,2,1630090329,2,1.0,52.0,4.0,-9.0,4.0,1255150 -3109376,1630217919,1,37,0,1,1630090330,1,1.0,50.0,3.0,-9.0,4.0,1255151 -3109377,1630217917,1,39,13,2,1630090330,2,1.0,45.0,3.0,-9.0,4.0,1255151 -3109378,1630218384,1,38,0,1,1630090331,1,1.0,40.0,1.0,-9.0,4.0,1255152 -3109379,1630218387,1,42,12,2,1630090331,1,1.0,40.0,1.0,-9.0,4.0,1255152 -3109380,1630218324,1,28,0,1,1630090332,1,1.0,25.0,1.0,-9.0,4.0,1255153 -3109381,1630218326,1,28,12,2,1630090332,1,1.0,45.0,1.0,-9.0,4.0,1255153 -3109382,1630217773,1,27,0,1,1630090333,1,1.0,40.0,1.0,16.0,4.0,1255154 -3109383,1630217771,1,29,15,2,1630090333,2,1.0,50.0,1.0,-9.0,4.0,1255154 -3109384,1630217774,1,27,0,1,1630090334,1,1.0,40.0,1.0,16.0,4.0,1255155 -3109385,1630217772,1,29,15,2,1630090334,2,1.0,50.0,1.0,-9.0,4.0,1255155 -3109386,1630218385,1,38,0,1,1630090335,1,1.0,40.0,1.0,-9.0,4.0,1255156 -3109387,1630218388,1,42,12,2,1630090335,1,1.0,40.0,1.0,-9.0,4.0,1255156 -3109388,1630218325,1,28,0,1,1630090336,1,1.0,25.0,1.0,-9.0,4.0,1255157 -3109389,1630218327,1,28,12,2,1630090336,1,1.0,45.0,1.0,-9.0,4.0,1255157 -3109390,1630218386,1,38,0,1,1630090337,1,1.0,40.0,1.0,-9.0,4.0,1255158 -3109391,1630218389,1,42,12,2,1630090337,1,1.0,40.0,1.0,-9.0,4.0,1255158 -3109392,1630217978,1,27,0,1,1630090338,2,6.0,37.0,5.0,16.0,4.0,1255159 -3109393,1630219278,2,39,0,1,1630090339,2,6.0,27.0,1.0,-9.0,4.0,1255160 -3109394,1630219282,2,21,2,2,1630090339,1,6.0,-9.0,-9.0,-9.0,4.0,1255160 -3109395,1630219280,2,26,10,3,1630090339,2,6.0,-9.0,-9.0,-9.0,4.0,1255160 -3109396,1630219656,2,32,0,1,1630090340,1,6.0,56.0,1.0,-9.0,4.0,1255161 -3109397,1630219657,2,29,12,2,1630090340,1,6.0,-9.0,-9.0,-9.0,4.0,1255161 -3109398,1630218156,1,29,0,1,1630090341,1,6.0,40.0,3.0,16.0,4.0,1255162 -3109399,1630218158,1,27,12,2,1630090341,1,6.0,40.0,5.0,-9.0,4.0,1255162 -3109400,1630219110,2,34,0,1,1630090342,1,3.0,40.0,4.0,-9.0,4.0,1255163 -3109401,1630219107,2,35,1,2,1630090342,2,1.0,40.0,1.0,15.0,4.0,1255163 -3109402,1630219111,2,16,4,3,1630090342,2,6.0,-9.0,-9.0,13.0,-9.0,1255163 -3109403,1630219108,2,14,4,4,1630090342,1,-9.0,-9.0,-9.0,12.0,-9.0,1255163 -3109404,1630219109,2,6,4,5,1630090342,1,-9.0,-9.0,-9.0,3.0,-9.0,1255163 -3109405,1630219344,2,26,0,1,1630090343,2,3.0,-9.0,-9.0,-9.0,4.0,1255164 -3109406,1630219346,2,7,2,2,1630090343,2,-9.0,-9.0,-9.0,4.0,-9.0,1255164 -3109407,1630219347,2,11,5,3,1630090343,2,-9.0,-9.0,-9.0,6.0,-9.0,1255164 -3109408,1630219345,2,26,13,4,1630090343,1,1.0,40.0,1.0,-9.0,4.0,1255164 -3109409,1630217762,1,27,0,1,1630090344,1,1.0,55.0,1.0,-9.0,4.0,1255165 -3109410,1630217764,1,32,12,2,1630090344,1,3.0,25.0,6.0,-9.0,4.0,1255165 -3109411,1630217766,1,32,12,3,1630090344,1,6.0,-9.0,-9.0,-9.0,4.0,1255165 -3109412,1630217760,1,26,12,4,1630090344,2,3.0,40.0,6.0,-9.0,4.0,1255165 -3109413,1630219769,2,38,0,1,1630090345,1,1.0,55.0,1.0,-9.0,4.0,1255166 -3109414,1630219673,2,28,0,1,1630090346,1,1.0,55.0,1.0,-9.0,4.0,1255167 -3109415,1630219674,2,28,0,1,1630090347,1,1.0,55.0,1.0,-9.0,4.0,1255168 -3109416,1630219675,2,28,0,1,1630090348,1,1.0,55.0,1.0,-9.0,4.0,1255169 -3109417,1630219770,2,38,0,1,1630090349,1,1.0,55.0,1.0,-9.0,4.0,1255170 -3109418,1630219676,2,28,0,1,1630090350,1,1.0,55.0,1.0,-9.0,4.0,1255171 -3109419,1630218206,1,29,0,1,1630090351,1,1.0,45.0,1.0,-9.0,4.0,1255172 -3109420,1630218207,1,29,0,1,1630090352,1,1.0,45.0,1.0,-9.0,4.0,1255173 -3109421,1630217889,1,33,0,1,1630090353,2,1.0,65.0,1.0,-9.0,4.0,1255174 -3109422,1630217890,1,33,0,1,1630090354,2,1.0,65.0,1.0,-9.0,4.0,1255175 -3109423,1630218429,1,29,0,1,1630090355,1,1.0,35.0,1.0,-9.0,4.0,1255176 -3109424,1630217891,1,33,0,1,1630090356,2,1.0,65.0,1.0,-9.0,4.0,1255177 -3109425,1630218430,1,29,0,1,1630090357,1,1.0,35.0,1.0,-9.0,4.0,1255178 -3109426,1630217892,1,33,0,1,1630090358,2,1.0,65.0,1.0,-9.0,4.0,1255179 -3109427,1630218208,1,29,0,1,1630090359,1,1.0,45.0,1.0,-9.0,4.0,1255180 -3109428,1630218310,1,30,0,1,1630090360,1,1.0,40.0,4.0,-9.0,4.0,1255181 -3109429,1630219916,4,33,0,1,1630090361,1,2.0,12.0,1.0,-9.0,4.0,1255182 -3109430,1630219917,4,33,0,1,1630090362,1,2.0,12.0,1.0,-9.0,4.0,1255183 -3109431,1630219909,4,42,0,1,1630090363,1,1.0,40.0,3.0,-9.0,4.0,1255184 -3109432,1630219918,4,33,0,1,1630090364,1,2.0,12.0,1.0,-9.0,4.0,1255185 -3109433,1630218443,2,26,0,1,1630090365,2,1.0,50.0,1.0,-9.0,4.0,1255186 -3109434,1630219563,2,40,0,1,1630090366,1,1.0,50.0,1.0,-9.0,4.0,1255187 -3109435,1630219564,2,40,0,1,1630090367,1,1.0,50.0,1.0,-9.0,4.0,1255188 -3109436,1630219654,2,44,0,1,1630090368,1,1.0,40.0,1.0,-9.0,4.0,1255189 -3109437,1630219572,2,30,0,1,1630090369,1,1.0,40.0,1.0,-9.0,4.0,1255190 -3109438,1630219822,2,35,0,1,1630090370,1,1.0,40.0,1.0,-9.0,4.0,1255191 -3109439,1630219699,2,34,0,1,1630090371,1,1.0,40.0,1.0,-9.0,4.0,1255192 -3109440,1630219607,2,42,0,1,1630090372,1,1.0,40.0,1.0,-9.0,4.0,1255193 -3109441,1630219783,2,35,0,1,1630090373,1,1.0,40.0,1.0,-9.0,2.0,1255194 -3109442,1630219784,2,35,0,1,1630090374,1,1.0,40.0,1.0,-9.0,2.0,1255195 -3109443,1630219823,2,35,0,1,1630090375,1,1.0,40.0,1.0,-9.0,4.0,1255196 -3109444,1630219700,2,34,0,1,1630090376,1,1.0,40.0,1.0,-9.0,4.0,1255197 -3109445,1630219701,2,34,0,1,1630090377,1,1.0,40.0,1.0,-9.0,4.0,1255198 -3109446,1630219824,2,35,0,1,1630090378,1,1.0,40.0,1.0,-9.0,4.0,1255199 -3109447,1630219573,2,30,0,1,1630090379,1,1.0,40.0,1.0,-9.0,4.0,1255200 -3109448,1630218911,2,43,0,1,1630090380,2,1.0,50.0,1.0,-9.0,4.0,1255201 -3109449,1630219655,2,44,0,1,1630090381,1,1.0,40.0,1.0,-9.0,4.0,1255202 -3109450,1630219825,2,35,0,1,1630090382,1,1.0,40.0,1.0,-9.0,4.0,1255203 -3109451,1630219843,4,41,0,1,1630090383,1,1.0,37.0,1.0,16.0,4.0,1255204 -3109452,1630219849,4,28,0,1,1630090384,1,1.0,80.0,1.0,-9.0,4.0,1255205 -3109453,1630219844,4,41,0,1,1630090385,1,1.0,37.0,1.0,16.0,4.0,1255206 -3109454,1630218370,1,27,0,1,1630090386,1,1.0,40.0,1.0,-9.0,4.0,1255207 -3109455,1630218146,1,42,0,1,1630090387,1,1.0,40.0,3.0,15.0,4.0,1255208 -3109456,1630218320,1,31,0,1,1630090388,1,2.0,70.0,1.0,-9.0,4.0,1255209 -3109457,1630218147,1,42,0,1,1630090389,1,1.0,40.0,3.0,15.0,4.0,1255210 -3109458,1630218059,1,31,0,1,1630090390,2,1.0,50.0,1.0,16.0,4.0,1255211 -3109459,1630218239,1,29,0,1,1630090391,1,1.0,50.0,1.0,-9.0,4.0,1255212 -3109460,1630218240,1,29,0,1,1630090392,1,1.0,50.0,1.0,-9.0,4.0,1255213 -3109461,1630218337,1,26,0,1,1630090393,1,1.0,60.0,1.0,-9.0,4.0,1255214 -3109462,1630218006,1,26,0,1,1630090394,2,1.0,40.0,1.0,-9.0,4.0,1255215 -3109463,1630217958,1,40,0,1,1630090395,2,1.0,60.0,1.0,-9.0,4.0,1255216 -3109464,1630218241,1,29,0,1,1630090396,1,1.0,50.0,1.0,-9.0,4.0,1255217 -3109465,1630218007,1,26,0,1,1630090397,2,1.0,40.0,1.0,-9.0,4.0,1255218 -3109466,1630218336,1,26,0,1,1630090398,1,1.0,50.0,1.0,-9.0,4.0,1255219 -3109467,1630218021,1,33,0,1,1630090399,2,1.0,60.0,1.0,15.0,4.0,1255220 -3109468,1630218249,1,34,0,1,1630090400,1,1.0,40.0,1.0,-9.0,4.0,1255221 -3109469,1630218022,1,33,0,1,1630090401,2,1.0,60.0,1.0,15.0,4.0,1255222 -3109470,1630218321,1,31,0,1,1630090402,1,2.0,70.0,1.0,-9.0,4.0,1255223 -3109471,1630218250,1,34,0,1,1630090403,1,1.0,40.0,1.0,-9.0,4.0,1255224 -3109472,1630218242,1,29,0,1,1630090404,1,1.0,50.0,1.0,-9.0,4.0,1255225 -3109473,1630218023,1,33,0,1,1630090405,2,1.0,60.0,1.0,15.0,4.0,1255226 -3109474,1630217942,1,26,0,1,1630090406,2,1.0,40.0,1.0,-9.0,4.0,1255227 -3109475,1630217943,1,26,0,1,1630090407,2,1.0,40.0,1.0,-9.0,4.0,1255228 -3109476,1630217959,1,40,0,1,1630090408,2,1.0,60.0,1.0,-9.0,4.0,1255229 -3109477,1630218060,1,31,0,1,1630090409,2,1.0,50.0,1.0,16.0,4.0,1255230 -3109478,1630218338,1,26,0,1,1630090410,1,1.0,60.0,1.0,-9.0,4.0,1255231 -3109479,1630218243,1,29,0,1,1630090411,1,1.0,40.0,1.0,-9.0,2.0,1255232 -3109480,1630219754,2,36,0,1,1630090412,1,1.0,40.0,1.0,-9.0,4.0,1255233 -3109481,1630218261,1,40,0,1,1630090413,1,1.0,50.0,1.0,-9.0,4.0,1255234 -3109482,1630218262,1,40,0,1,1630090414,1,1.0,50.0,1.0,-9.0,4.0,1255235 -3109483,1630219404,2,44,0,1,1630090415,2,1.0,15.0,1.0,-9.0,4.0,1255236 -3109484,1630219406,2,31,2,2,1630090415,1,3.0,-9.0,-9.0,-9.0,4.0,1255236 -3109485,1630219407,2,24,2,3,1630090415,1,6.0,-9.0,-9.0,12.0,4.0,1255236 -3109486,1630219405,2,18,2,4,1630090415,2,6.0,-9.0,-9.0,14.0,4.0,1255236 -3109487,1630219408,2,13,2,5,1630090415,2,-9.0,-9.0,-9.0,10.0,-9.0,1255236 -3109488,1630219409,2,9,2,6,1630090415,2,-9.0,-9.0,-9.0,6.0,-9.0,1255236 -3109489,1630219044,2,40,0,1,1630090416,2,1.0,36.0,1.0,-9.0,4.0,1255237 -3109490,1630219046,2,10,2,2,1630090416,1,-9.0,-9.0,-9.0,6.0,-9.0,1255237 -3109491,1630219048,2,8,2,3,1630090416,1,-9.0,-9.0,-9.0,5.0,-9.0,1255237 -3109492,1630218530,2,44,0,1,1630090417,2,1.0,38.0,1.0,-9.0,4.0,1255238 -3109493,1630218533,2,14,2,2,1630090417,1,-9.0,-9.0,-9.0,11.0,-9.0,1255238 -3109494,1630218536,2,5,2,3,1630090417,2,-9.0,-9.0,-9.0,1.0,-9.0,1255238 -3109495,1630218531,2,44,0,1,1630090418,2,1.0,38.0,1.0,-9.0,4.0,1255239 -3109496,1630218534,2,14,2,2,1630090418,1,-9.0,-9.0,-9.0,11.0,-9.0,1255239 -3109497,1630218537,2,5,2,3,1630090418,2,-9.0,-9.0,-9.0,1.0,-9.0,1255239 -3109498,1630218532,2,44,0,1,1630090419,2,1.0,38.0,1.0,-9.0,4.0,1255240 -3109499,1630218535,2,14,2,2,1630090419,1,-9.0,-9.0,-9.0,11.0,-9.0,1255240 -3109500,1630218538,2,5,2,3,1630090419,2,-9.0,-9.0,-9.0,1.0,-9.0,1255240 -3109501,1630218601,2,32,0,1,1630090420,2,1.0,40.0,1.0,15.0,2.0,1255241 -3109502,1630218602,2,11,2,2,1630090420,1,-9.0,-9.0,-9.0,8.0,-9.0,1255241 -3109503,1630217687,2,41,0,1,1630090421,2,1.0,40.0,1.0,-9.0,4.0,1255242 -3109504,1630217686,2,71,6,2,1630090421,2,6.0,-9.0,-9.0,-9.0,4.0,1255242 -3109505,1630219670,2,29,0,1,1630090422,1,1.0,40.0,1.0,15.0,3.0,1255243 -3109506,1630219671,2,7,2,2,1630090422,2,-9.0,-9.0,-9.0,3.0,-9.0,1255243 -3109507,1630219287,2,31,0,1,1630090423,2,1.0,40.0,1.0,-9.0,4.0,1255244 -3109508,1630219290,2,5,2,2,1630090423,2,-9.0,-9.0,-9.0,1.0,-9.0,1255244 -3109509,1630219288,2,31,0,1,1630090424,2,1.0,40.0,1.0,-9.0,4.0,1255245 -3109510,1630219291,2,5,2,2,1630090424,2,-9.0,-9.0,-9.0,1.0,-9.0,1255245 -3109511,1630219350,2,38,0,1,1630090425,2,1.0,36.0,1.0,-9.0,4.0,1255246 -3109512,1630219352,2,4,2,2,1630090425,2,-9.0,-9.0,-9.0,1.0,-9.0,1255246 -3109513,1630219351,2,38,0,1,1630090426,2,1.0,36.0,1.0,-9.0,4.0,1255247 -3109514,1630219353,2,4,2,2,1630090426,2,-9.0,-9.0,-9.0,1.0,-9.0,1255247 -3109515,1630219666,2,36,0,1,1630090427,1,1.0,46.0,1.0,-9.0,4.0,1255248 -3109516,1630219667,2,70,6,2,1630090427,1,6.0,-9.0,-9.0,-9.0,4.0,1255248 -3109517,1630219518,2,43,0,1,1630090428,2,1.0,40.0,1.0,15.0,4.0,1255249 -3109518,1630219519,2,19,2,2,1630090428,1,3.0,36.0,6.0,15.0,4.0,1255249 -3109519,1630219845,4,29,0,1,1630090429,1,1.0,45.0,1.0,-9.0,4.0,1255250 -3109520,1630219846,4,26,1,2,1630090429,2,6.0,30.0,6.0,-9.0,4.0,1255250 -3109521,1630218065,1,25,0,1,1630090430,1,6.0,-9.0,-9.0,16.0,4.0,1255251 -3109522,1630218061,1,26,1,2,1630090430,2,1.0,50.0,1.0,-9.0,4.0,1255251 -3109523,1630217792,1,25,0,1,1630090431,2,3.0,20.0,5.0,-9.0,4.0,1255252 -3109524,1630217794,1,23,12,2,1630090431,2,1.0,45.0,1.0,16.0,4.0,1255252 -3109525,1630218066,1,25,0,1,1630090432,1,6.0,-9.0,-9.0,16.0,4.0,1255253 -3109526,1630218062,1,26,1,2,1630090432,2,1.0,50.0,1.0,-9.0,4.0,1255253 -3109527,1630218271,1,26,0,1,1630090433,1,3.0,40.0,2.0,-9.0,4.0,1255254 -3109528,1630218272,1,22,12,2,1630090433,1,1.0,40.0,5.0,-9.0,4.0,1255254 -3109529,1630218067,1,25,0,1,1630090434,1,6.0,-9.0,-9.0,16.0,4.0,1255255 -3109530,1630218063,1,26,1,2,1630090434,2,1.0,50.0,1.0,-9.0,4.0,1255255 -3109531,1630218068,1,25,0,1,1630090435,1,6.0,-9.0,-9.0,16.0,4.0,1255256 -3109532,1630218064,1,26,1,2,1630090435,2,1.0,50.0,1.0,-9.0,4.0,1255256 -3109533,1630217793,1,25,0,1,1630090436,2,3.0,20.0,5.0,-9.0,4.0,1255257 -3109534,1630217795,1,23,12,2,1630090436,2,1.0,45.0,1.0,16.0,4.0,1255257 -3109535,1630219395,2,40,0,1,1630090437,2,1.0,30.0,1.0,-9.0,4.0,1255258 -3109536,1630219399,2,12,2,2,1630090437,2,-9.0,-9.0,-9.0,9.0,-9.0,1255258 -3109537,1630219397,2,49,13,3,1630090437,1,1.0,30.0,1.0,-9.0,4.0,1255258 -3109538,1630217888,1,30,0,1,1630090438,1,1.0,60.0,1.0,16.0,4.0,1255259 -3109539,1630217887,1,29,1,2,1630090438,2,1.0,65.0,1.0,16.0,4.0,1255259 -3109540,1630217883,1,28,0,1,1630090439,2,1.0,50.0,1.0,-9.0,4.0,1255260 -3109541,1630217885,1,28,5,2,1630090439,2,1.0,25.0,3.0,16.0,4.0,1255260 -3109542,1630218095,1,37,0,1,1630090440,1,1.0,50.0,1.0,16.0,4.0,1255261 -3109543,1630218094,1,49,1,2,1630090440,2,1.0,30.0,1.0,-9.0,4.0,1255261 -3109544,1630217884,1,28,0,1,1630090441,2,1.0,50.0,1.0,-9.0,4.0,1255262 -3109545,1630217886,1,28,5,2,1630090441,2,1.0,25.0,3.0,16.0,4.0,1255262 -3109546,1630217813,1,32,0,1,1630090442,1,1.0,40.0,1.0,-9.0,4.0,1255263 -3109547,1630217811,1,42,1,2,1630090442,2,1.0,40.0,1.0,-9.0,4.0,1255263 -3109548,1630218366,1,29,0,1,1630090443,1,1.0,50.0,1.0,16.0,4.0,1255264 -3109549,1630218368,1,34,12,2,1630090443,1,1.0,40.0,1.0,16.0,4.0,1255264 -3109550,1630217814,1,32,0,1,1630090444,1,1.0,40.0,1.0,-9.0,4.0,1255265 -3109551,1630217812,1,42,1,2,1630090444,2,1.0,40.0,1.0,-9.0,4.0,1255265 -3109552,1630218367,1,29,0,1,1630090445,1,1.0,50.0,1.0,16.0,4.0,1255266 -3109553,1630218369,1,34,12,2,1630090445,1,1.0,40.0,1.0,16.0,4.0,1255266 -3109554,1630219599,2,31,0,1,1630090446,1,1.0,40.0,1.0,-9.0,4.0,1255267 -3109555,1630219600,2,31,0,1,1630090447,1,1.0,40.0,1.0,-9.0,4.0,1255268 -3109556,1630219830,2,42,0,1,1630090448,1,2.0,60.0,1.0,-9.0,2.0,1255269 -3109557,1630219806,2,33,0,1,1630090449,1,1.0,40.0,1.0,-9.0,4.0,1255270 -3109558,1630217955,1,28,0,1,1630090450,2,1.0,40.0,1.0,-9.0,4.0,1255271 -3109559,1630218263,1,25,0,1,1630090451,1,1.0,40.0,1.0,-9.0,4.0,1255272 -3109560,1630217956,1,32,0,1,1630090452,2,1.0,50.0,1.0,-9.0,4.0,1255273 -3109561,1630217957,1,32,0,1,1630090453,2,1.0,50.0,1.0,-9.0,4.0,1255274 -3109562,1630218282,1,27,0,1,1630090454,1,1.0,40.0,1.0,-9.0,4.0,1255275 -3109563,1630218283,1,27,0,1,1630090455,1,1.0,40.0,1.0,-9.0,4.0,1255276 -3109564,1630218030,1,36,0,1,1630090456,2,1.0,80.0,1.0,-9.0,4.0,1255277 -3109565,1630218264,1,25,0,1,1630090457,1,1.0,40.0,1.0,-9.0,4.0,1255278 -3109566,1630218238,1,39,0,1,1630090458,1,1.0,40.0,1.0,-9.0,4.0,1255279 -3109567,1630218278,1,40,0,1,1630090459,1,1.0,43.0,1.0,-9.0,4.0,1255280 -3109568,1630217861,1,37,0,1,1630090460,1,1.0,33.0,1.0,-9.0,4.0,1255281 -3109569,1630217859,1,27,13,2,1630090460,2,6.0,40.0,5.0,-9.0,4.0,1255281 -3109570,1630217867,1,29,0,1,1630090461,2,1.0,45.0,1.0,-9.0,4.0,1255282 -3109571,1630217869,1,29,1,2,1630090461,1,6.0,45.0,6.0,16.0,4.0,1255282 -3109572,1630217977,1,32,0,1,1630090462,1,1.0,40.0,3.0,16.0,4.0,1255283 -3109573,1630217975,1,40,12,2,1630090462,2,1.0,40.0,1.0,16.0,4.0,1255283 -3109574,1630217976,1,30,13,3,1630090462,2,2.0,40.0,3.0,16.0,4.0,1255283 -3109575,1630218049,1,26,0,1,1630090463,2,1.0,35.0,1.0,-9.0,4.0,1255284 -3109576,1630218051,1,26,12,2,1630090463,1,1.0,40.0,1.0,-9.0,4.0,1255284 -3109577,1630218050,1,21,12,3,1630090463,2,1.0,35.0,1.0,15.0,4.0,1255284 -3109578,1630218144,1,34,0,1,1630090464,1,1.0,17.0,3.0,-9.0,4.0,1255285 -3109579,1630218145,2,39,1,2,1630090464,2,1.0,45.0,1.0,-9.0,4.0,1255285 -3109580,1630218265,1,28,0,1,1630090465,1,1.0,70.0,1.0,-9.0,4.0,1255286 -3109581,1630218268,1,25,12,2,1630090465,1,1.0,45.0,1.0,-9.0,2.0,1255286 -3109582,1630218266,1,28,0,1,1630090466,1,1.0,70.0,1.0,-9.0,4.0,1255287 -3109583,1630218269,1,25,12,2,1630090466,1,1.0,45.0,1.0,-9.0,2.0,1255287 -3109584,1630218115,1,31,0,1,1630090467,1,1.0,40.0,3.0,-9.0,4.0,1255288 -3109585,1630218114,1,26,1,2,1630090467,2,1.0,40.0,1.0,16.0,4.0,1255288 -3109586,1630218267,1,28,0,1,1630090468,1,1.0,70.0,1.0,-9.0,4.0,1255289 -3109587,1630218270,1,25,12,2,1630090468,1,1.0,45.0,1.0,-9.0,2.0,1255289 -3109588,1630219140,2,28,0,1,1630090469,2,3.0,30.0,2.0,-9.0,4.0,1255290 -3109589,1630219143,2,6,2,2,1630090469,2,-9.0,-9.0,-9.0,3.0,-9.0,1255290 -3109590,1630219144,2,1,2,3,1630090469,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255290 -3109591,1630219141,2,34,5,4,1630090469,2,6.0,-9.0,-9.0,-9.0,4.0,1255290 -3109592,1630219142,2,16,10,5,1630090469,1,6.0,-9.0,-9.0,12.0,-9.0,1255290 -3109593,1630218551,2,34,0,1,1630090470,2,3.0,40.0,1.0,-9.0,4.0,1255291 -3109594,1630218553,2,15,2,2,1630090470,1,-9.0,-9.0,-9.0,12.0,-9.0,1255291 -3109595,1630218559,2,14,2,3,1630090470,2,-9.0,-9.0,-9.0,10.0,-9.0,1255291 -3109596,1630218555,2,12,2,4,1630090470,1,-9.0,-9.0,-9.0,7.0,-9.0,1255291 -3109597,1630218557,2,8,2,5,1630090470,1,-9.0,-9.0,-9.0,5.0,-9.0,1255291 -3109598,1630219202,2,36,0,1,1630090471,2,6.0,-9.0,-9.0,-9.0,4.0,1255292 -3109599,1630219211,2,18,2,2,1630090471,1,6.0,-9.0,-9.0,15.0,4.0,1255292 -3109600,1630219214,2,17,2,3,1630090471,2,6.0,-9.0,-9.0,14.0,4.0,1255292 -3109601,1630219208,2,16,2,4,1630090471,1,6.0,-9.0,-9.0,11.0,-9.0,1255292 -3109602,1630219205,2,55,6,5,1630090471,2,6.0,-9.0,-9.0,-9.0,4.0,1255292 -3109603,1630219203,2,36,0,1,1630090472,2,6.0,-9.0,-9.0,-9.0,4.0,1255293 -3109604,1630219212,2,18,2,2,1630090472,1,6.0,-9.0,-9.0,15.0,4.0,1255293 -3109605,1630219215,2,17,2,3,1630090472,2,6.0,-9.0,-9.0,14.0,4.0,1255293 -3109606,1630219209,2,16,2,4,1630090472,1,6.0,-9.0,-9.0,11.0,-9.0,1255293 -3109607,1630219206,2,55,6,5,1630090472,2,6.0,-9.0,-9.0,-9.0,4.0,1255293 -3109608,1630218552,2,34,0,1,1630090473,2,3.0,40.0,1.0,-9.0,4.0,1255294 -3109609,1630218554,2,15,2,2,1630090473,1,-9.0,-9.0,-9.0,12.0,-9.0,1255294 -3109610,1630218560,2,14,2,3,1630090473,2,-9.0,-9.0,-9.0,10.0,-9.0,1255294 -3109611,1630218556,2,12,2,4,1630090473,1,-9.0,-9.0,-9.0,7.0,-9.0,1255294 -3109612,1630218558,2,8,2,5,1630090473,1,-9.0,-9.0,-9.0,5.0,-9.0,1255294 -3109613,1630219204,2,36,0,1,1630090474,2,6.0,-9.0,-9.0,-9.0,4.0,1255295 -3109614,1630219213,2,18,2,2,1630090474,1,6.0,-9.0,-9.0,15.0,4.0,1255295 -3109615,1630219216,2,17,2,3,1630090474,2,6.0,-9.0,-9.0,14.0,4.0,1255295 -3109616,1630219210,2,16,2,4,1630090474,1,6.0,-9.0,-9.0,11.0,-9.0,1255295 -3109617,1630219207,2,55,6,5,1630090474,2,6.0,-9.0,-9.0,-9.0,4.0,1255295 -3109618,1630218860,2,29,0,1,1630090475,2,6.0,-9.0,-9.0,-9.0,4.0,1255296 -3109619,1630218866,2,9,2,2,1630090475,2,-9.0,-9.0,-9.0,6.0,-9.0,1255296 -3109620,1630218863,2,6,2,3,1630090475,1,-9.0,-9.0,-9.0,3.0,-9.0,1255296 -3109621,1630218869,2,3,2,4,1630090475,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255296 -3109622,1630218872,2,1,2,5,1630090475,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255296 -3109623,1630218703,2,30,0,1,1630090476,2,3.0,35.0,4.0,14.0,4.0,1255297 -3109624,1630218705,2,11,2,2,1630090476,1,-9.0,-9.0,-9.0,8.0,-9.0,1255297 -3109625,1630218709,2,9,2,3,1630090476,2,-9.0,-9.0,-9.0,6.0,-9.0,1255297 -3109626,1630218711,2,7,2,4,1630090476,2,-9.0,-9.0,-9.0,4.0,-9.0,1255297 -3109627,1630218707,2,4,2,5,1630090476,1,-9.0,-9.0,-9.0,1.0,-9.0,1255297 -3109628,1630218861,2,29,0,1,1630090477,2,6.0,-9.0,-9.0,-9.0,4.0,1255298 -3109629,1630218867,2,9,2,2,1630090477,2,-9.0,-9.0,-9.0,6.0,-9.0,1255298 -3109630,1630218864,2,6,2,3,1630090477,1,-9.0,-9.0,-9.0,3.0,-9.0,1255298 -3109631,1630218870,2,3,2,4,1630090477,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255298 -3109632,1630218873,2,1,2,5,1630090477,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255298 -3109633,1630218704,2,30,0,1,1630090478,2,3.0,35.0,4.0,14.0,4.0,1255299 -3109634,1630218706,2,11,2,2,1630090478,1,-9.0,-9.0,-9.0,8.0,-9.0,1255299 -3109635,1630218710,2,9,2,3,1630090478,2,-9.0,-9.0,-9.0,6.0,-9.0,1255299 -3109636,1630218712,2,7,2,4,1630090478,2,-9.0,-9.0,-9.0,4.0,-9.0,1255299 -3109637,1630218708,2,4,2,5,1630090478,1,-9.0,-9.0,-9.0,1.0,-9.0,1255299 -3109638,1630218862,2,29,0,1,1630090479,2,6.0,-9.0,-9.0,-9.0,4.0,1255300 -3109639,1630218868,2,9,2,2,1630090479,2,-9.0,-9.0,-9.0,6.0,-9.0,1255300 -3109640,1630218865,2,6,2,3,1630090479,1,-9.0,-9.0,-9.0,3.0,-9.0,1255300 -3109641,1630218871,2,3,2,4,1630090479,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255300 -3109642,1630218874,2,1,2,5,1630090479,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255300 -3109643,1630218438,2,34,0,1,1630090480,2,3.0,-9.0,-9.0,15.0,4.0,1255301 -3109644,1630218439,2,15,2,2,1630090480,2,-9.0,-9.0,-9.0,12.0,-9.0,1255301 -3109645,1630218440,2,11,2,3,1630090480,2,-9.0,-9.0,-9.0,8.0,-9.0,1255301 -3109646,1630218441,2,9,2,4,1630090480,2,-9.0,-9.0,-9.0,6.0,-9.0,1255301 -3109647,1630218442,2,6,2,5,1630090480,2,-9.0,-9.0,-9.0,3.0,-9.0,1255301 -3109648,1630219060,2,43,0,1,1630090481,2,3.0,20.0,1.0,-9.0,4.0,1255302 -3109649,1630219068,2,10,2,2,1630090481,2,-9.0,-9.0,-9.0,6.0,-9.0,1255302 -3109650,1630219064,2,6,2,3,1630090481,1,-9.0,-9.0,-9.0,3.0,-9.0,1255302 -3109651,1630219066,2,0,7,4,1630090481,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255302 -3109652,1630219062,2,20,12,5,1630090481,2,3.0,-9.0,-9.0,14.0,4.0,1255302 -3109653,1630218964,2,29,0,1,1630090482,2,3.0,-9.0,-9.0,-9.0,4.0,1255303 -3109654,1630218968,2,11,2,2,1630090482,2,-9.0,-9.0,-9.0,7.0,-9.0,1255303 -3109655,1630218970,2,6,2,3,1630090482,2,-9.0,-9.0,-9.0,3.0,-9.0,1255303 -3109656,1630218966,2,4,2,4,1630090482,1,-9.0,-9.0,-9.0,1.0,-9.0,1255303 -3109657,1630218972,2,3,2,5,1630090482,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255303 -3109658,1630219061,2,43,0,1,1630090483,2,3.0,20.0,1.0,-9.0,4.0,1255304 -3109659,1630219069,2,10,2,2,1630090483,2,-9.0,-9.0,-9.0,6.0,-9.0,1255304 -3109660,1630219065,2,6,2,3,1630090483,1,-9.0,-9.0,-9.0,3.0,-9.0,1255304 -3109661,1630219067,2,0,7,4,1630090483,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255304 -3109662,1630219063,2,20,12,5,1630090483,2,3.0,-9.0,-9.0,14.0,4.0,1255304 -3109663,1630219193,2,33,0,1,1630090484,2,6.0,32.0,6.0,-9.0,4.0,1255305 -3109664,1630219195,2,12,2,2,1630090484,2,-9.0,-9.0,-9.0,9.0,-9.0,1255305 -3109665,1630219196,2,8,2,3,1630090484,2,-9.0,-9.0,-9.0,5.0,-9.0,1255305 -3109666,1630219197,2,6,2,4,1630090484,2,-9.0,-9.0,-9.0,3.0,-9.0,1255305 -3109667,1630219194,2,0,2,5,1630090484,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255305 -3109668,1630219329,2,33,0,1,1630090485,2,3.0,-9.0,-9.0,-9.0,4.0,1255306 -3109669,1630219332,2,10,2,2,1630090485,1,-9.0,-9.0,-9.0,7.0,-9.0,1255306 -3109670,1630219338,2,5,2,3,1630090485,2,-9.0,-9.0,-9.0,2.0,-9.0,1255306 -3109671,1630219335,2,4,2,4,1630090485,1,-9.0,-9.0,-9.0,1.0,-9.0,1255306 -3109672,1630219465,2,30,0,1,1630090486,2,3.0,-9.0,-9.0,-9.0,4.0,1255307 -3109673,1630219467,2,9,2,2,1630090486,2,-9.0,-9.0,-9.0,5.0,-9.0,1255307 -3109674,1630219468,2,8,2,3,1630090486,2,-9.0,-9.0,-9.0,5.0,-9.0,1255307 -3109675,1630219466,2,5,2,4,1630090486,1,-9.0,-9.0,-9.0,2.0,-9.0,1255307 -3109676,1630219330,2,33,0,1,1630090487,2,3.0,-9.0,-9.0,-9.0,4.0,1255308 -3109677,1630219333,2,10,2,2,1630090487,1,-9.0,-9.0,-9.0,7.0,-9.0,1255308 -3109678,1630219339,2,5,2,3,1630090487,2,-9.0,-9.0,-9.0,2.0,-9.0,1255308 -3109679,1630219336,2,4,2,4,1630090487,1,-9.0,-9.0,-9.0,1.0,-9.0,1255308 -3109680,1630218747,2,33,0,1,1630090488,2,6.0,25.0,5.0,-9.0,4.0,1255309 -3109681,1630218749,2,15,2,2,1630090488,2,-9.0,-9.0,-9.0,12.0,-9.0,1255309 -3109682,1630218748,2,14,2,3,1630090488,1,-9.0,-9.0,-9.0,10.0,-9.0,1255309 -3109683,1630218750,2,0,2,4,1630090488,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255309 -3109684,1630219455,2,40,0,1,1630090489,2,3.0,-9.0,-9.0,-9.0,4.0,1255310 -3109685,1630219456,2,19,2,2,1630090489,2,6.0,-9.0,-9.0,15.0,4.0,1255310 -3109686,1630219457,2,18,2,3,1630090489,1,6.0,-9.0,-9.0,14.0,4.0,1255310 -3109687,1630219458,2,3,7,4,1630090489,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255310 -3109688,1630219661,2,34,0,1,1630090490,1,6.0,-9.0,-9.0,-9.0,4.0,1255311 -3109689,1630219702,2,28,0,1,1630090491,1,3.0,-9.0,-9.0,-9.0,4.0,1255312 -3109690,1630219697,2,43,0,1,1630090492,1,6.0,-9.0,-9.0,-9.0,4.0,1255313 -3109691,1630218505,2,40,0,1,1630090493,2,6.0,-9.0,-9.0,12.0,4.0,1255314 -3109692,1630219703,2,28,0,1,1630090494,1,3.0,-9.0,-9.0,-9.0,4.0,1255315 -3109693,1630219359,2,30,0,1,1630090495,2,6.0,-9.0,-9.0,-9.0,4.0,1255316 -3109694,1630219604,2,26,0,1,1630090496,1,6.0,-9.0,-9.0,-9.0,4.0,1255317 -3109695,1630218513,2,34,0,1,1630090497,2,3.0,-9.0,-9.0,15.0,4.0,1255318 -3109696,1630218506,2,40,0,1,1630090498,2,6.0,-9.0,-9.0,12.0,4.0,1255319 -3109697,1630219662,2,34,0,1,1630090499,1,6.0,-9.0,-9.0,-9.0,4.0,1255320 -3109698,1630219663,2,34,0,1,1630090500,1,6.0,-9.0,-9.0,-9.0,4.0,1255321 -3109699,1630219704,2,28,0,1,1630090501,1,3.0,-9.0,-9.0,-9.0,4.0,1255322 -3109700,1630219766,2,33,0,1,1630090502,1,3.0,-9.0,-9.0,15.0,4.0,1255323 -3109701,1630219815,2,39,0,1,1630090503,1,6.0,-9.0,-9.0,-9.0,4.0,1255324 -3109702,1630219354,2,27,0,1,1630090504,2,3.0,-9.0,-9.0,-9.0,4.0,1255325 -3109703,1630219587,2,44,0,1,1630090505,1,3.0,6.0,6.0,-9.0,2.0,1255326 -3109704,1630219664,2,34,0,1,1630090506,1,6.0,-9.0,-9.0,-9.0,4.0,1255327 -3109705,1630218492,2,38,0,1,1630090507,2,6.0,-9.0,-9.0,-9.0,4.0,1255328 -3109706,1630219581,2,44,0,1,1630090508,1,6.0,-9.0,-9.0,-9.0,4.0,1255329 -3109707,1630219705,2,28,0,1,1630090509,1,3.0,-9.0,-9.0,-9.0,4.0,1255330 -3109708,1630219698,2,43,0,1,1630090510,1,6.0,-9.0,-9.0,-9.0,4.0,1255331 -3109709,1630219043,2,43,0,1,1630090511,2,6.0,-9.0,-9.0,-9.0,4.0,1255332 -3109710,1630219605,2,26,0,1,1630090512,1,6.0,-9.0,-9.0,-9.0,4.0,1255333 -3109711,1630219767,2,33,0,1,1630090513,1,3.0,-9.0,-9.0,15.0,4.0,1255334 -3109712,1630219706,2,28,0,1,1630090514,1,3.0,-9.0,-9.0,-9.0,4.0,1255335 -3109713,1630218742,2,41,0,1,1630090515,2,6.0,-9.0,-9.0,-9.0,4.0,1255336 -3109714,1630219707,2,28,0,1,1630090516,1,3.0,-9.0,-9.0,-9.0,4.0,1255337 -3109715,1630219659,2,28,0,1,1630090517,1,3.0,-9.0,-9.0,-9.0,4.0,1255338 -3109716,1630219761,2,42,0,1,1630090518,1,3.0,-9.0,-9.0,-9.0,4.0,1255339 -3109717,1630219816,2,39,0,1,1630090519,1,6.0,-9.0,-9.0,-9.0,4.0,1255340 -3109718,1630219820,2,42,0,1,1630090520,1,6.0,-9.0,-9.0,-9.0,4.0,1255341 -3109719,1630219774,2,41,0,1,1630090521,1,3.0,40.0,5.0,-9.0,4.0,1255342 -3109720,1630219708,2,28,0,1,1630090522,1,3.0,-9.0,-9.0,-9.0,4.0,1255343 -3109721,1630219794,2,39,0,1,1630090523,1,6.0,-9.0,-9.0,-9.0,4.0,1255344 -3109722,1630217721,1,27,0,1,1630090524,2,3.0,-9.0,-9.0,-9.0,4.0,1255345 -3109723,1630217722,1,27,0,1,1630090525,2,3.0,-9.0,-9.0,-9.0,4.0,1255346 -3109724,1630217723,1,27,0,1,1630090526,2,3.0,-9.0,-9.0,-9.0,4.0,1255347 -3109725,1630217724,1,27,0,1,1630090527,2,3.0,-9.0,-9.0,-9.0,4.0,1255348 -3109726,1630218111,1,37,0,1,1630090528,2,6.0,-9.0,-9.0,-9.0,4.0,1255349 -3109727,1630218112,1,37,0,1,1630090529,2,6.0,-9.0,-9.0,-9.0,4.0,1255350 -3109728,1630217725,1,27,0,1,1630090530,2,3.0,-9.0,-9.0,-9.0,4.0,1255351 -3109729,1630218113,1,37,0,1,1630090531,2,6.0,-9.0,-9.0,-9.0,4.0,1255352 -3109730,1630219911,4,26,0,1,1630090532,1,6.0,-9.0,-9.0,16.0,4.0,1255353 -3109731,1630219696,2,43,0,1,1630090533,1,6.0,40.0,1.0,15.0,4.0,1255354 -3109732,1630219360,2,29,0,1,1630090534,2,3.0,40.0,5.0,-9.0,4.0,1255355 -3109733,1630219781,2,29,0,1,1630090535,1,6.0,-9.0,-9.0,16.0,3.0,1255356 -3109734,1630219797,2,42,0,1,1630090536,1,6.0,-9.0,-9.0,-9.0,4.0,1255357 -3109735,1630219764,2,40,0,1,1630090537,1,6.0,-9.0,-9.0,-9.0,4.0,1255358 -3109736,1630219622,2,37,0,1,1630090538,1,6.0,-9.0,-9.0,-9.0,4.0,1255359 -3109737,1630219623,2,37,0,1,1630090539,1,6.0,-9.0,-9.0,-9.0,4.0,1255360 -3109738,1630219831,2,38,0,1,1630090540,1,6.0,-9.0,-9.0,-9.0,4.0,1255361 -3109739,1630219624,2,37,0,1,1630090541,1,6.0,-9.0,-9.0,-9.0,4.0,1255362 -3109740,1630219787,2,28,0,1,1630090542,1,3.0,25.0,4.0,15.0,4.0,1255363 -3109741,1630219832,2,38,0,1,1630090543,1,6.0,-9.0,-9.0,-9.0,4.0,1255364 -3109742,1630218682,2,33,0,1,1630090544,2,3.0,-9.0,-9.0,-9.0,4.0,1255365 -3109743,1630219368,2,28,0,1,1630090545,2,6.0,-9.0,-9.0,15.0,4.0,1255366 -3109744,1630219625,2,37,0,1,1630090546,1,6.0,-9.0,-9.0,-9.0,4.0,1255367 -3109745,1630219626,2,37,0,1,1630090547,1,6.0,-9.0,-9.0,-9.0,4.0,1255368 -3109746,1630219217,2,40,0,1,1630090548,2,3.0,-9.0,-9.0,16.0,4.0,1255369 -3109747,1630218509,2,26,0,1,1630090549,2,6.0,-9.0,-9.0,-9.0,4.0,1255370 -3109748,1630219218,2,40,0,1,1630090550,2,3.0,-9.0,-9.0,16.0,4.0,1255371 -3109749,1630219660,2,35,0,1,1630090551,1,3.0,-9.0,-9.0,-9.0,4.0,1255372 -3109750,1630219369,2,28,0,1,1630090552,2,6.0,-9.0,-9.0,15.0,4.0,1255373 -3109751,1630219847,4,38,0,1,1630090553,1,3.0,30.0,6.0,15.0,3.0,1255374 -3109752,1630218193,1,40,0,1,1630090554,1,6.0,28.0,4.0,-9.0,4.0,1255375 -3109753,1630218197,1,29,0,1,1630090555,1,6.0,-9.0,-9.0,15.0,4.0,1255376 -3109754,1630218002,1,37,0,1,1630090556,2,6.0,-9.0,-9.0,16.0,4.0,1255377 -3109755,1630218003,1,37,0,1,1630090557,2,6.0,-9.0,-9.0,16.0,4.0,1255378 -3109756,1630218194,1,40,0,1,1630090558,1,6.0,28.0,4.0,-9.0,4.0,1255379 -3109757,1630218198,1,29,0,1,1630090559,1,6.0,-9.0,-9.0,15.0,4.0,1255380 -3109758,1630218195,1,40,0,1,1630090560,1,6.0,28.0,4.0,-9.0,4.0,1255381 -3109759,1630218116,1,26,0,1,1630090561,2,6.0,-9.0,-9.0,16.0,4.0,1255382 -3109760,1630217775,1,28,0,1,1630090562,2,6.0,-9.0,-9.0,-9.0,4.0,1255383 -3109761,1630218117,1,26,0,1,1630090563,2,6.0,-9.0,-9.0,16.0,4.0,1255384 -3109762,1630218004,1,37,0,1,1630090564,2,6.0,-9.0,-9.0,16.0,4.0,1255385 -3109763,1630218005,1,37,0,1,1630090565,2,6.0,-9.0,-9.0,16.0,4.0,1255386 -3109764,1630218196,1,40,0,1,1630090566,1,6.0,28.0,4.0,-9.0,4.0,1255387 -3109765,1630219648,2,41,0,1,1630090567,1,3.0,-9.0,-9.0,-9.0,4.0,1255388 -3109766,1630219442,2,25,0,1,1630090568,2,3.0,-9.0,-9.0,-9.0,4.0,1255389 -3109767,1630219443,2,6,2,2,1630090568,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255389 -3109768,1630219446,2,5,2,3,1630090568,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255389 -3109769,1630219447,2,4,2,4,1630090568,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255389 -3109770,1630219444,2,3,2,5,1630090568,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255389 -3109771,1630219445,2,2,2,6,1630090568,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255389 -3109772,1630218799,2,43,0,1,1630090569,2,3.0,-9.0,-9.0,-9.0,4.0,1255390 -3109773,1630218803,2,15,2,2,1630090569,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255390 -3109774,1630218801,2,20,3,3,1630090569,2,6.0,-9.0,-9.0,-9.0,4.0,1255390 -3109775,1630218805,2,13,3,4,1630090569,2,-9.0,-9.0,-9.0,8.0,-9.0,1255390 -3109776,1630218807,2,11,3,5,1630090569,2,-9.0,-9.0,-9.0,6.0,-9.0,1255390 -3109777,1630218809,2,10,3,6,1630090569,2,-9.0,-9.0,-9.0,6.0,-9.0,1255390 -3109778,1630218800,2,43,0,1,1630090570,2,3.0,-9.0,-9.0,-9.0,4.0,1255391 -3109779,1630218804,2,15,2,2,1630090570,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255391 -3109780,1630218802,2,20,3,3,1630090570,2,6.0,-9.0,-9.0,-9.0,4.0,1255391 -3109781,1630218806,2,13,3,4,1630090570,2,-9.0,-9.0,-9.0,8.0,-9.0,1255391 -3109782,1630218808,2,11,3,5,1630090570,2,-9.0,-9.0,-9.0,6.0,-9.0,1255391 -3109783,1630218810,2,10,3,6,1630090570,2,-9.0,-9.0,-9.0,6.0,-9.0,1255391 -3109784,1630219145,2,42,0,1,1630090571,2,6.0,-9.0,-9.0,-9.0,4.0,1255392 -3109785,1630219153,2,21,2,2,1630090571,1,6.0,-9.0,-9.0,-9.0,4.0,1255392 -3109786,1630219149,2,16,2,3,1630090571,1,6.0,-9.0,-9.0,12.0,-9.0,1255392 -3109787,1630218845,2,27,0,1,1630090572,2,6.0,-9.0,-9.0,-9.0,4.0,1255393 -3109788,1630218855,2,0,2,2,1630090572,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255393 -3109789,1630218850,2,35,13,3,1630090572,1,6.0,-9.0,-9.0,-9.0,4.0,1255393 -3109790,1630219094,2,26,0,1,1630090573,2,3.0,9.0,6.0,-9.0,4.0,1255394 -3109791,1630219098,2,8,2,2,1630090573,1,-9.0,-9.0,-9.0,4.0,-9.0,1255394 -3109792,1630219102,2,1,2,3,1630090573,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255394 -3109793,1630218525,2,29,0,1,1630090574,2,3.0,25.0,5.0,-9.0,4.0,1255395 -3109794,1630218526,2,10,2,2,1630090574,1,-9.0,-9.0,-9.0,7.0,-9.0,1255395 -3109795,1630218527,2,6,2,3,1630090574,1,-9.0,-9.0,-9.0,3.0,-9.0,1255395 -3109796,1630218846,2,27,0,1,1630090575,2,6.0,-9.0,-9.0,-9.0,4.0,1255396 -3109797,1630218856,2,0,2,2,1630090575,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255396 -3109798,1630218851,2,35,13,3,1630090575,1,6.0,-9.0,-9.0,-9.0,4.0,1255396 -3109799,1630219095,2,26,0,1,1630090576,2,3.0,9.0,6.0,-9.0,4.0,1255397 -3109800,1630219099,2,8,2,2,1630090576,1,-9.0,-9.0,-9.0,4.0,-9.0,1255397 -3109801,1630219103,2,1,2,3,1630090576,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255397 -3109802,1630219096,2,26,0,1,1630090577,2,3.0,9.0,6.0,-9.0,4.0,1255398 -3109803,1630219100,2,8,2,2,1630090577,1,-9.0,-9.0,-9.0,4.0,-9.0,1255398 -3109804,1630219104,2,1,2,3,1630090577,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255398 -3109805,1630218684,2,44,0,1,1630090578,1,6.0,-9.0,-9.0,-9.0,4.0,1255399 -3109806,1630218685,2,2,2,2,1630090578,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255399 -3109807,1630218683,2,40,13,3,1630090578,2,6.0,-9.0,-9.0,-9.0,4.0,1255399 -3109808,1630219097,2,26,0,1,1630090579,2,3.0,9.0,6.0,-9.0,4.0,1255400 -3109809,1630219101,2,8,2,2,1630090579,1,-9.0,-9.0,-9.0,4.0,-9.0,1255400 -3109810,1630219105,2,1,2,3,1630090579,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255400 -3109811,1630219146,2,42,0,1,1630090580,2,6.0,-9.0,-9.0,-9.0,4.0,1255401 -3109812,1630219154,2,21,2,2,1630090580,1,6.0,-9.0,-9.0,-9.0,4.0,1255401 -3109813,1630219150,2,16,2,3,1630090580,1,6.0,-9.0,-9.0,12.0,-9.0,1255401 -3109814,1630219147,2,42,0,1,1630090581,2,6.0,-9.0,-9.0,-9.0,4.0,1255402 -3109815,1630219155,2,21,2,2,1630090581,1,6.0,-9.0,-9.0,-9.0,4.0,1255402 -3109816,1630219151,2,16,2,3,1630090581,1,6.0,-9.0,-9.0,12.0,-9.0,1255402 -3109817,1630219148,2,42,0,1,1630090582,2,6.0,-9.0,-9.0,-9.0,4.0,1255403 -3109818,1630219156,2,21,2,2,1630090582,1,6.0,-9.0,-9.0,-9.0,4.0,1255403 -3109819,1630219152,2,16,2,3,1630090582,1,6.0,-9.0,-9.0,12.0,-9.0,1255403 -3109820,1630218847,2,27,0,1,1630090583,2,6.0,-9.0,-9.0,-9.0,4.0,1255404 -3109821,1630218857,2,0,2,2,1630090583,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255404 -3109822,1630218852,2,35,13,3,1630090583,1,6.0,-9.0,-9.0,-9.0,4.0,1255404 -3109823,1630218520,2,35,0,1,1630090584,2,3.0,18.0,4.0,-9.0,4.0,1255405 -3109824,1630218522,2,35,15,2,1630090584,1,3.0,24.0,6.0,-9.0,4.0,1255405 -3109825,1630218521,2,14,15,3,1630090584,1,-9.0,-9.0,-9.0,10.0,-9.0,1255405 -3109826,1630218761,2,39,0,1,1630090585,2,6.0,-9.0,-9.0,-9.0,4.0,1255406 -3109827,1630218762,2,17,2,2,1630090585,1,6.0,-9.0,-9.0,13.0,4.0,1255406 -3109828,1630218763,2,15,2,3,1630090585,1,-9.0,-9.0,-9.0,11.0,-9.0,1255406 -3109829,1630218848,2,27,0,1,1630090586,2,6.0,-9.0,-9.0,-9.0,4.0,1255407 -3109830,1630218858,2,0,2,2,1630090586,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255407 -3109831,1630218853,2,35,13,3,1630090586,1,6.0,-9.0,-9.0,-9.0,4.0,1255407 -3109832,1630217834,1,32,0,1,1630090587,2,3.0,-9.0,-9.0,-9.0,4.0,1255408 -3109833,1630217839,1,8,2,2,1630090587,1,-9.0,-9.0,-9.0,4.0,-9.0,1255408 -3109834,1630217844,1,6,2,3,1630090587,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255408 -3109835,1630217835,1,32,0,1,1630090588,2,3.0,-9.0,-9.0,-9.0,4.0,1255409 -3109836,1630217840,1,8,2,2,1630090588,1,-9.0,-9.0,-9.0,4.0,-9.0,1255409 -3109837,1630217845,1,6,2,3,1630090588,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255409 -3109838,1630217836,1,32,0,1,1630090589,2,3.0,-9.0,-9.0,-9.0,4.0,1255410 -3109839,1630217841,1,8,2,2,1630090589,1,-9.0,-9.0,-9.0,4.0,-9.0,1255410 -3109840,1630217846,1,6,2,3,1630090589,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255410 -3109841,1630217837,1,32,0,1,1630090590,2,3.0,-9.0,-9.0,-9.0,4.0,1255411 -3109842,1630217842,1,8,2,2,1630090590,1,-9.0,-9.0,-9.0,4.0,-9.0,1255411 -3109843,1630217847,1,6,2,3,1630090590,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255411 -3109844,1630217838,1,32,0,1,1630090591,2,3.0,-9.0,-9.0,-9.0,4.0,1255412 -3109845,1630217843,1,8,2,2,1630090591,1,-9.0,-9.0,-9.0,4.0,-9.0,1255412 -3109846,1630217848,1,6,2,3,1630090591,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255412 -3109847,1630219237,2,29,0,1,1630090592,2,3.0,40.0,5.0,-9.0,4.0,1255413 -3109848,1630219247,2,15,2,2,1630090592,2,-9.0,-9.0,-9.0,10.0,-9.0,1255413 -3109849,1630219242,3,6,2,3,1630090592,1,-9.0,-9.0,-9.0,2.0,-9.0,1255413 -3109850,1630219054,2,26,0,1,1630090593,2,3.0,-9.0,-9.0,-9.0,4.0,1255414 -3109851,1630219056,2,8,2,2,1630090593,1,-9.0,-9.0,-9.0,4.0,-9.0,1255414 -3109852,1630219058,2,2,2,3,1630090593,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255414 -3109853,1630219238,2,29,0,1,1630090594,2,3.0,40.0,5.0,-9.0,4.0,1255415 -3109854,1630219248,2,15,2,2,1630090594,2,-9.0,-9.0,-9.0,10.0,-9.0,1255415 -3109855,1630219243,3,6,2,3,1630090594,1,-9.0,-9.0,-9.0,2.0,-9.0,1255415 -3109856,1630219551,2,31,0,1,1630090595,1,6.0,-9.0,-9.0,-9.0,4.0,1255416 -3109857,1630219553,2,0,2,2,1630090595,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255416 -3109858,1630219549,2,38,13,3,1630090595,2,6.0,-9.0,-9.0,-9.0,4.0,1255416 -3109859,1630218493,2,36,0,1,1630090596,2,6.0,-9.0,-9.0,-9.0,4.0,1255417 -3109860,1630218495,2,16,2,2,1630090596,2,6.0,-9.0,-9.0,13.0,-9.0,1255417 -3109861,1630218497,2,9,2,3,1630090596,2,-9.0,-9.0,-9.0,6.0,-9.0,1255417 -3109862,1630219239,2,29,0,1,1630090597,2,3.0,40.0,5.0,-9.0,4.0,1255418 -3109863,1630219249,2,15,2,2,1630090597,2,-9.0,-9.0,-9.0,10.0,-9.0,1255418 -3109864,1630219244,3,6,2,3,1630090597,1,-9.0,-9.0,-9.0,2.0,-9.0,1255418 -3109865,1630219015,2,31,0,1,1630090598,2,3.0,30.0,5.0,15.0,4.0,1255419 -3109866,1630219016,2,3,2,2,1630090598,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255419 -3109867,1630219017,2,1,2,3,1630090598,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255419 -3109868,1630219552,2,31,0,1,1630090599,1,6.0,-9.0,-9.0,-9.0,4.0,1255420 -3109869,1630219554,2,0,2,2,1630090599,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255420 -3109870,1630219550,2,38,13,3,1630090599,2,6.0,-9.0,-9.0,-9.0,4.0,1255420 -3109871,1630218489,2,26,0,1,1630090600,2,6.0,40.0,5.0,15.0,4.0,1255421 -3109872,1630218490,2,7,2,2,1630090600,1,-9.0,-9.0,-9.0,4.0,-9.0,1255421 -3109873,1630218491,2,2,2,3,1630090600,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255421 -3109874,1630218978,2,27,0,1,1630090601,2,6.0,-9.0,-9.0,-9.0,4.0,1255422 -3109875,1630218980,2,3,2,2,1630090601,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255422 -3109876,1630218979,2,1,2,3,1630090601,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255422 -3109877,1630219240,2,29,0,1,1630090602,2,3.0,40.0,5.0,-9.0,4.0,1255423 -3109878,1630219250,2,15,2,2,1630090602,2,-9.0,-9.0,-9.0,10.0,-9.0,1255423 -3109879,1630219245,3,6,2,3,1630090602,1,-9.0,-9.0,-9.0,2.0,-9.0,1255423 -3109880,1630219241,2,29,0,1,1630090603,2,3.0,40.0,5.0,-9.0,4.0,1255424 -3109881,1630219251,2,15,2,2,1630090603,2,-9.0,-9.0,-9.0,10.0,-9.0,1255424 -3109882,1630219246,3,6,2,3,1630090603,1,-9.0,-9.0,-9.0,2.0,-9.0,1255424 -3109883,1630218494,2,36,0,1,1630090604,2,6.0,-9.0,-9.0,-9.0,4.0,1255425 -3109884,1630218496,2,16,2,2,1630090604,2,6.0,-9.0,-9.0,13.0,-9.0,1255425 -3109885,1630218498,2,9,2,3,1630090604,2,-9.0,-9.0,-9.0,6.0,-9.0,1255425 -3109886,1630219055,2,26,0,1,1630090605,2,3.0,-9.0,-9.0,-9.0,4.0,1255426 -3109887,1630219057,2,8,2,2,1630090605,1,-9.0,-9.0,-9.0,4.0,-9.0,1255426 -3109888,1630219059,2,2,2,3,1630090605,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255426 -3109889,1630218256,4,28,0,1,1630090606,1,6.0,-9.0,-9.0,16.0,4.0,1255427 -3109890,1630218252,1,28,12,2,1630090606,1,6.0,-9.0,-9.0,16.0,4.0,1255427 -3109891,1630218254,1,25,12,3,1630090606,1,6.0,-9.0,-9.0,16.0,4.0,1255427 -3109892,1630218257,4,28,0,1,1630090607,1,6.0,-9.0,-9.0,16.0,4.0,1255428 -3109893,1630218253,1,28,12,2,1630090607,1,6.0,-9.0,-9.0,16.0,4.0,1255428 -3109894,1630218255,1,25,12,3,1630090607,1,6.0,-9.0,-9.0,16.0,4.0,1255428 -3109895,1630217894,1,27,0,1,1630090608,2,6.0,-9.0,-9.0,16.0,4.0,1255429 -3109896,1630217904,4,26,12,2,1630090608,2,6.0,-9.0,-9.0,16.0,4.0,1255429 -3109897,1630217899,1,25,12,3,1630090608,2,6.0,-9.0,-9.0,16.0,4.0,1255429 -3109898,1630217895,1,27,0,1,1630090609,2,6.0,-9.0,-9.0,16.0,4.0,1255430 -3109899,1630217905,4,26,12,2,1630090609,2,6.0,-9.0,-9.0,16.0,4.0,1255430 -3109900,1630217900,1,25,12,3,1630090609,2,6.0,-9.0,-9.0,16.0,4.0,1255430 -3109901,1630217896,1,27,0,1,1630090610,2,6.0,-9.0,-9.0,16.0,4.0,1255431 -3109902,1630217906,4,26,12,2,1630090610,2,6.0,-9.0,-9.0,16.0,4.0,1255431 -3109903,1630217901,1,25,12,3,1630090610,2,6.0,-9.0,-9.0,16.0,4.0,1255431 -3109904,1630217897,1,27,0,1,1630090611,2,6.0,-9.0,-9.0,16.0,4.0,1255432 -3109905,1630217907,4,26,12,2,1630090611,2,6.0,-9.0,-9.0,16.0,4.0,1255432 -3109906,1630217902,1,25,12,3,1630090611,2,6.0,-9.0,-9.0,16.0,4.0,1255432 -3109907,1630219543,2,44,0,1,1630090612,2,6.0,-9.0,-9.0,-9.0,4.0,1255433 -3109908,1630219545,2,5,3,2,1630090612,1,-9.0,-9.0,-9.0,2.0,-9.0,1255433 -3109909,1630219547,2,35,5,3,1630090612,1,6.0,-9.0,-9.0,-9.0,4.0,1255433 -3109910,1630219912,4,26,0,1,1630090613,1,6.0,36.0,5.0,-9.0,4.0,1255434 -3109911,1630219914,4,25,12,2,1630090613,1,6.0,-9.0,-9.0,-9.0,4.0,1255434 -3109912,1630219541,2,36,0,1,1630090614,2,6.0,-9.0,-9.0,-9.0,4.0,1255435 -3109913,1630219542,2,34,13,2,1630090614,1,6.0,-9.0,-9.0,-9.0,4.0,1255435 -3109914,1630219582,2,34,0,1,1630090615,1,3.0,-9.0,-9.0,-9.0,4.0,1255436 -3109915,1630219584,2,18,10,2,1630090615,1,6.0,-9.0,-9.0,14.0,4.0,1255436 -3109916,1630219744,2,35,0,1,1630090616,1,6.0,-9.0,-9.0,-9.0,4.0,1255437 -3109917,1630219745,2,30,5,2,1630090616,1,6.0,-9.0,-9.0,-9.0,4.0,1255437 -3109918,1630219583,2,34,0,1,1630090617,1,3.0,-9.0,-9.0,-9.0,4.0,1255438 -3109919,1630219585,2,18,10,2,1630090617,1,6.0,-9.0,-9.0,14.0,4.0,1255438 -3109920,1630219788,2,44,0,1,1630090618,1,6.0,-9.0,-9.0,14.0,4.0,1255439 -3109921,1630219791,2,50,5,2,1630090618,1,6.0,-9.0,-9.0,-9.0,4.0,1255439 -3109922,1630218528,2,38,0,1,1630090619,2,3.0,28.0,6.0,-9.0,4.0,1255440 -3109923,1630218529,2,18,2,2,1630090619,1,3.0,-9.0,-9.0,14.0,4.0,1255440 -3109924,1630219789,2,44,0,1,1630090620,1,6.0,-9.0,-9.0,14.0,4.0,1255441 -3109925,1630219792,2,50,5,2,1630090620,1,6.0,-9.0,-9.0,-9.0,4.0,1255441 -3109926,1630219494,2,43,0,1,1630090621,2,6.0,-9.0,-9.0,-9.0,4.0,1255442 -3109927,1630219499,2,0,2,2,1630090621,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255442 -3109928,1630219495,2,43,0,1,1630090622,2,6.0,-9.0,-9.0,-9.0,4.0,1255443 -3109929,1630219500,2,0,2,2,1630090622,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255443 -3109930,1630218667,2,33,0,1,1630090623,2,3.0,42.0,6.0,-9.0,4.0,1255444 -3109931,1630218668,2,14,2,2,1630090623,2,-9.0,-9.0,-9.0,11.0,-9.0,1255444 -3109932,1630219496,2,43,0,1,1630090624,2,6.0,-9.0,-9.0,-9.0,4.0,1255445 -3109933,1630219501,2,0,2,2,1630090624,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255445 -3109934,1630219566,2,40,0,1,1630090625,1,6.0,-9.0,-9.0,-9.0,4.0,1255446 -3109935,1630219568,2,7,2,2,1630090625,2,-9.0,-9.0,-9.0,3.0,-9.0,1255446 -3109936,1630219088,2,41,0,1,1630090626,2,6.0,-9.0,-9.0,-9.0,4.0,1255447 -3109937,1630219090,2,8,2,2,1630090626,1,-9.0,-9.0,-9.0,4.0,-9.0,1255447 -3109938,1630219567,2,40,0,1,1630090627,1,6.0,-9.0,-9.0,-9.0,4.0,1255448 -3109939,1630219569,2,7,2,2,1630090627,2,-9.0,-9.0,-9.0,3.0,-9.0,1255448 -3109940,1630218645,2,25,0,1,1630090628,2,3.0,-9.0,-9.0,-9.0,4.0,1255449 -3109941,1630218646,2,4,2,2,1630090628,1,-9.0,-9.0,-9.0,1.0,-9.0,1255449 -3109942,1630219089,2,41,0,1,1630090629,2,6.0,-9.0,-9.0,-9.0,4.0,1255450 -3109943,1630219091,2,8,2,2,1630090629,1,-9.0,-9.0,-9.0,4.0,-9.0,1255450 -3109944,1630219497,2,43,0,1,1630090630,2,6.0,-9.0,-9.0,-9.0,4.0,1255451 -3109945,1630219502,2,0,2,2,1630090630,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255451 -3109946,1630218939,2,33,0,1,1630090631,2,3.0,30.0,6.0,-9.0,4.0,1255452 -3109947,1630218941,2,18,2,2,1630090631,2,6.0,-9.0,-9.0,-9.0,4.0,1255452 -3109948,1630219492,2,40,0,1,1630090632,2,6.0,-9.0,-9.0,-9.0,4.0,1255453 -3109949,1630219493,2,21,2,2,1630090632,2,6.0,30.0,6.0,15.0,4.0,1255453 -3109950,1630218542,2,43,0,1,1630090633,2,6.0,40.0,1.0,-9.0,4.0,1255454 -3109951,1630218544,2,46,12,2,1630090633,1,3.0,20.0,5.0,-9.0,4.0,1255454 -3109952,1630218940,2,33,0,1,1630090634,2,3.0,30.0,6.0,-9.0,4.0,1255455 -3109953,1630218942,2,18,2,2,1630090634,2,6.0,-9.0,-9.0,-9.0,4.0,1255455 -3109954,1630218404,1,40,0,1,1630090635,1,6.0,-9.0,-9.0,-9.0,2.0,1255456 -3109955,1630218407,4,23,15,2,1630090635,2,6.0,30.0,6.0,-9.0,4.0,1255456 -3109956,1630218405,1,40,0,1,1630090636,1,6.0,-9.0,-9.0,-9.0,2.0,1255457 -3109957,1630218408,4,23,15,2,1630090636,2,6.0,30.0,6.0,-9.0,4.0,1255457 -3109958,1630218736,2,37,0,1,1630090637,2,6.0,-9.0,-9.0,-9.0,4.0,1255458 -3109959,1630218737,2,13,2,2,1630090637,2,-9.0,-9.0,-9.0,9.0,-9.0,1255458 -3109960,1630218436,2,30,0,1,1630090638,2,3.0,-9.0,-9.0,-9.0,4.0,1255459 -3109961,1630218437,2,12,2,2,1630090638,2,-9.0,-9.0,-9.0,9.0,-9.0,1255459 -3109962,1630219614,2,31,0,1,1630090639,1,3.0,40.0,6.0,15.0,4.0,1255460 -3109963,1630219616,2,4,2,2,1630090639,2,-9.0,-9.0,-9.0,1.0,-9.0,1255460 -3109964,1630219026,2,34,0,1,1630090640,2,6.0,-9.0,-9.0,15.0,4.0,1255461 -3109965,1630219028,2,7,2,2,1630090640,2,-9.0,-9.0,-9.0,3.0,-9.0,1255461 -3109966,1630219615,2,31,0,1,1630090641,1,3.0,40.0,6.0,15.0,4.0,1255462 -3109967,1630219617,2,4,2,2,1630090641,2,-9.0,-9.0,-9.0,1.0,-9.0,1255462 -3109968,1630219490,2,28,0,1,1630090642,2,3.0,-9.0,-9.0,-9.0,4.0,1255463 -3109969,1630219491,2,4,2,2,1630090642,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255463 -3109970,1630219027,2,34,0,1,1630090643,2,6.0,-9.0,-9.0,15.0,4.0,1255464 -3109971,1630219029,2,7,2,2,1630090643,2,-9.0,-9.0,-9.0,3.0,-9.0,1255464 -3109972,1630219459,2,42,0,1,1630090644,2,6.0,-9.0,-9.0,-9.0,4.0,1255465 -3109973,1630219460,2,3,2,2,1630090644,2,-9.0,-9.0,-9.0,1.0,-9.0,1255465 -3109974,1630219259,2,28,0,1,1630090645,2,6.0,-9.0,-9.0,15.0,4.0,1255466 -3109975,1630219260,2,3,2,2,1630090645,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255466 -3109976,1630219504,2,33,0,1,1630090646,2,3.0,40.0,3.0,-9.0,4.0,1255467 -3109977,1630219505,2,9,2,2,1630090646,1,-9.0,-9.0,-9.0,6.0,-9.0,1255467 -3109978,1630217852,1,27,0,1,1630090647,1,6.0,-9.0,-9.0,16.0,4.0,1255468 -3109979,1630217849,1,24,1,2,1630090647,2,6.0,-9.0,-9.0,16.0,4.0,1255468 -3109980,1630217853,1,27,0,1,1630090648,1,6.0,-9.0,-9.0,16.0,4.0,1255469 -3109981,1630217850,1,24,1,2,1630090648,2,6.0,-9.0,-9.0,16.0,4.0,1255469 -3109982,1630218608,2,36,0,1,1630090649,2,1.0,40.0,4.0,-9.0,4.0,1255470 -3109983,1630218610,2,16,2,2,1630090649,2,6.0,-9.0,-9.0,13.0,-9.0,1255470 -3109984,1630218611,2,15,2,3,1630090649,2,-9.0,-9.0,-9.0,12.0,-9.0,1255470 -3109985,1630218609,2,14,2,4,1630090649,1,-9.0,-9.0,-9.0,11.0,-9.0,1255470 -3109986,1630218612,2,11,2,5,1630090649,2,-9.0,-9.0,-9.0,7.0,-9.0,1255470 -3109987,1630219168,2,30,0,1,1630090650,2,1.0,30.0,1.0,-9.0,4.0,1255471 -3109988,1630219171,2,12,2,2,1630090650,1,-9.0,-9.0,-9.0,8.0,-9.0,1255471 -3109989,1630219174,2,13,10,3,1630090650,2,-9.0,-9.0,-9.0,10.0,-9.0,1255471 -3109990,1630219177,2,7,10,4,1630090650,2,-9.0,-9.0,-9.0,4.0,-9.0,1255471 -3109991,1630219180,2,0,10,5,1630090650,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255471 -3109992,1630219169,2,30,0,1,1630090651,2,1.0,30.0,1.0,-9.0,4.0,1255472 -3109993,1630219172,2,12,2,2,1630090651,1,-9.0,-9.0,-9.0,8.0,-9.0,1255472 -3109994,1630219175,2,13,10,3,1630090651,2,-9.0,-9.0,-9.0,10.0,-9.0,1255472 -3109995,1630219178,2,7,10,4,1630090651,2,-9.0,-9.0,-9.0,4.0,-9.0,1255472 -3109996,1630219181,2,0,10,5,1630090651,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255472 -3109997,1630219170,2,30,0,1,1630090652,2,1.0,30.0,1.0,-9.0,4.0,1255473 -3109998,1630219173,2,12,2,2,1630090652,1,-9.0,-9.0,-9.0,8.0,-9.0,1255473 -3109999,1630219176,2,13,10,3,1630090652,2,-9.0,-9.0,-9.0,10.0,-9.0,1255473 -3110000,1630219179,2,7,10,4,1630090652,2,-9.0,-9.0,-9.0,4.0,-9.0,1255473 -3110001,1630219182,2,0,10,5,1630090652,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255473 -3110002,1630217735,1,41,0,1,1630090653,2,3.0,40.0,4.0,-9.0,4.0,1255474 -3110003,1630217750,4,18,2,2,1630090653,2,1.0,16.0,5.0,-9.0,4.0,1255474 -3110004,1630217755,4,2,7,3,1630090653,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255474 -3110005,1630217740,2,36,13,4,1630090653,1,6.0,-9.0,-9.0,-9.0,4.0,1255474 -3110006,1630217745,2,19,15,5,1630090653,1,6.0,-9.0,-9.0,15.0,4.0,1255474 -3110007,1630217736,1,41,0,1,1630090654,2,3.0,40.0,4.0,-9.0,4.0,1255475 -3110008,1630217751,4,18,2,2,1630090654,2,1.0,16.0,5.0,-9.0,4.0,1255475 -3110009,1630217756,4,2,7,3,1630090654,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255475 -3110010,1630217741,2,36,13,4,1630090654,1,6.0,-9.0,-9.0,-9.0,4.0,1255475 -3110011,1630217746,2,19,15,5,1630090654,1,6.0,-9.0,-9.0,15.0,4.0,1255475 -3110012,1630217737,1,41,0,1,1630090655,2,3.0,40.0,4.0,-9.0,4.0,1255476 -3110013,1630217752,4,18,2,2,1630090655,2,1.0,16.0,5.0,-9.0,4.0,1255476 -3110014,1630217757,4,2,7,3,1630090655,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255476 -3110015,1630217742,2,36,13,4,1630090655,1,6.0,-9.0,-9.0,-9.0,4.0,1255476 -3110016,1630217747,2,19,15,5,1630090655,1,6.0,-9.0,-9.0,15.0,4.0,1255476 -3110017,1630217738,1,41,0,1,1630090656,2,3.0,40.0,4.0,-9.0,4.0,1255477 -3110018,1630217753,4,18,2,2,1630090656,2,1.0,16.0,5.0,-9.0,4.0,1255477 -3110019,1630217758,4,2,7,3,1630090656,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255477 -3110020,1630217743,2,36,13,4,1630090656,1,6.0,-9.0,-9.0,-9.0,4.0,1255477 -3110021,1630217748,2,19,15,5,1630090656,1,6.0,-9.0,-9.0,15.0,4.0,1255477 -3110022,1630219227,2,33,0,1,1630090657,2,1.0,28.0,5.0,-9.0,4.0,1255478 -3110023,1630219229,2,13,2,2,1630090657,1,-9.0,-9.0,-9.0,9.0,-9.0,1255478 -3110024,1630219231,2,11,2,3,1630090657,2,-9.0,-9.0,-9.0,7.0,-9.0,1255478 -3110025,1630219233,2,8,2,4,1630090657,2,-9.0,-9.0,-9.0,5.0,-9.0,1255478 -3110026,1630219235,2,3,2,5,1630090657,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255478 -3110027,1630218444,2,31,0,1,1630090658,2,1.0,40.0,4.0,-9.0,4.0,1255479 -3110028,1630218456,2,7,2,2,1630090658,2,-9.0,-9.0,-9.0,3.0,-9.0,1255479 -3110029,1630218447,2,4,2,3,1630090658,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255479 -3110030,1630218450,2,1,2,4,1630090658,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255479 -3110031,1630218453,2,1,2,5,1630090658,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255479 -3110032,1630219183,2,42,0,1,1630090659,2,1.0,25.0,1.0,15.0,4.0,1255480 -3110033,1630219185,2,26,2,2,1630090659,2,6.0,-9.0,-9.0,-9.0,4.0,1255480 -3110034,1630219191,2,3,7,3,1630090659,2,-9.0,-9.0,-9.0,1.0,-9.0,1255480 -3110035,1630219187,2,1,7,4,1630090659,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255480 -3110036,1630219189,2,0,7,5,1630090659,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255480 -3110037,1630218445,2,31,0,1,1630090660,2,1.0,40.0,4.0,-9.0,4.0,1255481 -3110038,1630218457,2,7,2,2,1630090660,2,-9.0,-9.0,-9.0,3.0,-9.0,1255481 -3110039,1630218448,2,4,2,3,1630090660,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255481 -3110040,1630218451,2,1,2,4,1630090660,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255481 -3110041,1630218454,2,1,2,5,1630090660,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255481 -3110042,1630219184,2,42,0,1,1630090661,2,1.0,25.0,1.0,15.0,4.0,1255482 -3110043,1630219186,2,26,2,2,1630090661,2,6.0,-9.0,-9.0,-9.0,4.0,1255482 -3110044,1630219192,2,3,7,3,1630090661,2,-9.0,-9.0,-9.0,1.0,-9.0,1255482 -3110045,1630219188,2,1,7,4,1630090661,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255482 -3110046,1630219190,2,0,7,5,1630090661,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255482 -3110047,1630218446,2,31,0,1,1630090662,2,1.0,40.0,4.0,-9.0,4.0,1255483 -3110048,1630218458,2,7,2,2,1630090662,2,-9.0,-9.0,-9.0,3.0,-9.0,1255483 -3110049,1630218449,2,4,2,3,1630090662,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255483 -3110050,1630218452,2,1,2,4,1630090662,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255483 -3110051,1630218455,2,1,2,5,1630090662,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255483 -3110052,1630219228,2,33,0,1,1630090663,2,1.0,28.0,5.0,-9.0,4.0,1255484 -3110053,1630219230,2,13,2,2,1630090663,1,-9.0,-9.0,-9.0,9.0,-9.0,1255484 -3110054,1630219232,2,11,2,3,1630090663,2,-9.0,-9.0,-9.0,7.0,-9.0,1255484 -3110055,1630219234,2,8,2,4,1630090663,2,-9.0,-9.0,-9.0,5.0,-9.0,1255484 -3110056,1630219236,2,3,2,5,1630090663,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255484 -3110057,1630219219,2,37,0,1,1630090664,2,1.0,30.0,1.0,-9.0,4.0,1255485 -3110058,1630219221,2,16,2,2,1630090664,2,6.0,-9.0,-9.0,12.0,-9.0,1255485 -3110059,1630219222,2,10,2,3,1630090664,2,-9.0,-9.0,-9.0,5.0,-9.0,1255485 -3110060,1630219220,2,8,2,4,1630090664,1,-9.0,-9.0,-9.0,4.0,-9.0,1255485 -3110061,1630219223,2,5,2,5,1630090664,2,-9.0,-9.0,-9.0,2.0,-9.0,1255485 -3110062,1630218499,2,40,0,1,1630090665,2,1.0,72.0,1.0,-9.0,4.0,1255486 -3110063,1630218502,2,19,2,2,1630090665,1,3.0,-9.0,-9.0,-9.0,4.0,1255486 -3110064,1630218500,2,18,2,3,1630090665,2,6.0,-9.0,-9.0,14.0,4.0,1255486 -3110065,1630218501,2,16,2,4,1630090665,1,6.0,-9.0,-9.0,13.0,-9.0,1255486 -3110066,1630218927,2,30,0,1,1630090666,2,1.0,20.0,6.0,-9.0,4.0,1255487 -3110067,1630218930,2,9,2,2,1630090666,1,-9.0,-9.0,-9.0,6.0,-9.0,1255487 -3110068,1630218933,2,6,2,3,1630090666,2,-9.0,-9.0,-9.0,3.0,-9.0,1255487 -3110069,1630218936,2,3,2,4,1630090666,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255487 -3110070,1630219120,2,31,0,1,1630090667,1,3.0,-9.0,-9.0,-9.0,4.0,1255488 -3110071,1630219121,2,9,2,2,1630090667,2,-9.0,-9.0,-9.0,7.0,-9.0,1255488 -3110072,1630219122,2,2,2,3,1630090667,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255488 -3110073,1630219119,3,27,13,4,1630090667,2,1.0,30.0,1.0,-9.0,4.0,1255488 -3110074,1630218928,2,30,0,1,1630090668,2,1.0,20.0,6.0,-9.0,4.0,1255489 -3110075,1630218931,2,9,2,2,1630090668,1,-9.0,-9.0,-9.0,6.0,-9.0,1255489 -3110076,1630218934,2,6,2,3,1630090668,2,-9.0,-9.0,-9.0,3.0,-9.0,1255489 -3110077,1630218937,2,3,2,4,1630090668,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255489 -3110078,1630219355,2,44,0,1,1630090669,2,1.0,32.0,6.0,-9.0,4.0,1255490 -3110079,1630219356,2,24,2,2,1630090669,2,6.0,32.0,6.0,-9.0,4.0,1255490 -3110080,1630219357,2,16,2,3,1630090669,1,6.0,-9.0,-9.0,13.0,-9.0,1255490 -3110081,1630219358,2,1,7,4,1630090669,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255490 -3110082,1630218565,2,33,0,1,1630090670,2,1.0,36.0,1.0,-9.0,4.0,1255491 -3110083,1630218567,2,16,2,2,1630090670,1,6.0,-9.0,-9.0,13.0,-9.0,1255491 -3110084,1630218569,2,10,2,3,1630090670,1,-9.0,-9.0,-9.0,7.0,-9.0,1255491 -3110085,1630218571,2,8,2,4,1630090670,2,-9.0,-9.0,-9.0,5.0,-9.0,1255491 -3110086,1630219391,2,38,0,1,1630090671,2,1.0,35.0,3.0,-9.0,4.0,1255492 -3110087,1630219392,2,14,2,2,1630090671,1,-9.0,-9.0,-9.0,10.0,-9.0,1255492 -3110088,1630219393,2,12,2,3,1630090671,1,-9.0,-9.0,-9.0,8.0,-9.0,1255492 -3110089,1630219394,2,10,2,4,1630090671,2,-9.0,-9.0,-9.0,6.0,-9.0,1255492 -3110090,1630218947,2,34,0,1,1630090672,2,2.0,30.0,3.0,-9.0,4.0,1255493 -3110091,1630218948,2,7,2,2,1630090672,1,-9.0,-9.0,-9.0,3.0,-9.0,1255493 -3110092,1630218949,2,1,2,3,1630090672,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255493 -3110093,1630218950,2,0,2,4,1630090672,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255493 -3110094,1630219361,2,38,0,1,1630090673,2,3.0,-9.0,-9.0,-9.0,4.0,1255494 -3110095,1630219363,2,18,2,2,1630090673,1,1.0,8.0,4.0,14.0,4.0,1255494 -3110096,1630219364,2,11,2,3,1630090673,2,-9.0,-9.0,-9.0,7.0,-9.0,1255494 -3110097,1630219362,2,64,6,4,1630090673,2,6.0,-9.0,-9.0,-9.0,4.0,1255494 -3110098,1630218566,2,33,0,1,1630090674,2,1.0,36.0,1.0,-9.0,4.0,1255495 -3110099,1630218568,2,16,2,2,1630090674,1,6.0,-9.0,-9.0,13.0,-9.0,1255495 -3110100,1630218570,2,10,2,3,1630090674,1,-9.0,-9.0,-9.0,7.0,-9.0,1255495 -3110101,1630218572,2,8,2,4,1630090674,2,-9.0,-9.0,-9.0,5.0,-9.0,1255495 -3110102,1630219515,2,37,0,1,1630090675,2,1.0,35.0,2.0,-9.0,4.0,1255496 -3110103,1630219630,2,37,0,1,1630090676,1,1.0,40.0,6.0,-9.0,4.0,1255497 -3110104,1630219644,2,41,0,1,1630090677,1,1.0,40.0,1.0,-9.0,4.0,1255498 -3110105,1630219609,2,40,0,1,1630090678,1,1.0,40.0,6.0,-9.0,4.0,1255499 -3110106,1630219641,2,39,0,1,1630090679,1,1.0,40.0,1.0,-9.0,4.0,1255500 -3110107,1630219610,2,40,0,1,1630090680,1,1.0,40.0,6.0,-9.0,4.0,1255501 -3110108,1630219642,2,39,0,1,1630090681,1,1.0,40.0,1.0,-9.0,4.0,1255502 -3110109,1630218507,2,34,0,1,1630090682,2,1.0,24.0,1.0,-9.0,4.0,1255503 -3110110,1630219643,2,39,0,1,1630090683,1,1.0,40.0,1.0,-9.0,4.0,1255504 -3110111,1630219631,2,37,0,1,1630090684,1,1.0,40.0,6.0,-9.0,4.0,1255505 -3110112,1630219645,2,41,0,1,1630090685,1,1.0,40.0,1.0,-9.0,4.0,1255506 -3110113,1630218508,2,34,0,1,1630090686,2,1.0,24.0,1.0,-9.0,4.0,1255507 -3110114,1630219632,2,37,0,1,1630090687,1,1.0,40.0,6.0,-9.0,4.0,1255508 -3110115,1630219633,2,37,0,1,1630090688,1,1.0,40.0,6.0,-9.0,4.0,1255509 -3110116,1630219611,2,40,0,1,1630090689,1,1.0,40.0,6.0,-9.0,4.0,1255510 -3110117,1630219646,2,41,0,1,1630090690,1,1.0,40.0,1.0,-9.0,4.0,1255511 -3110118,1630219837,4,25,0,1,1630090691,1,1.0,30.0,1.0,-9.0,4.0,1255512 -3110119,1630218151,1,42,0,1,1630090692,1,1.0,40.0,1.0,-9.0,2.0,1255513 -3110120,1630218152,1,42,0,1,1630090693,1,1.0,40.0,1.0,-9.0,2.0,1255514 -3110121,1630218078,1,26,0,1,1630090694,2,1.0,65.0,2.0,-9.0,4.0,1255515 -3110122,1630218341,1,32,0,1,1630090695,1,1.0,60.0,5.0,-9.0,4.0,1255516 -3110123,1630218342,1,32,0,1,1630090696,1,1.0,60.0,5.0,-9.0,4.0,1255517 -3110124,1630217951,1,25,0,1,1630090697,2,1.0,30.0,3.0,-9.0,4.0,1255518 -3110125,1630217971,1,44,0,1,1630090698,2,1.0,40.0,1.0,-9.0,4.0,1255519 -3110126,1630217972,1,44,0,1,1630090699,2,1.0,40.0,1.0,-9.0,4.0,1255520 -3110127,1630218343,1,32,0,1,1630090700,1,1.0,60.0,5.0,-9.0,4.0,1255521 -3110128,1630217952,1,25,0,1,1630090701,2,1.0,30.0,3.0,-9.0,4.0,1255522 -3110129,1630218344,1,32,0,1,1630090702,1,1.0,60.0,5.0,-9.0,4.0,1255523 -3110130,1630217953,1,25,0,1,1630090703,2,1.0,30.0,3.0,-9.0,4.0,1255524 -3110131,1630217954,1,25,0,1,1630090704,2,1.0,30.0,3.0,-9.0,4.0,1255525 -3110132,1630218345,1,32,0,1,1630090705,1,1.0,60.0,5.0,-9.0,4.0,1255526 -3110133,1630218346,1,32,0,1,1630090706,1,1.0,60.0,5.0,-9.0,4.0,1255527 -3110134,1630218347,1,32,0,1,1630090707,1,1.0,60.0,5.0,-9.0,4.0,1255528 -3110135,1630217973,1,44,0,1,1630090708,2,1.0,40.0,1.0,-9.0,4.0,1255529 -3110136,1630218348,1,32,0,1,1630090709,1,1.0,60.0,5.0,-9.0,4.0,1255530 -3110137,1630218079,1,26,0,1,1630090710,2,1.0,65.0,2.0,-9.0,4.0,1255531 -3110138,1630219900,4,32,0,1,1630090711,1,1.0,40.0,6.0,16.0,4.0,1255532 -3110139,1630219906,4,31,0,1,1630090712,1,1.0,17.0,1.0,16.0,4.0,1255533 -3110140,1630219901,4,32,0,1,1630090713,1,1.0,40.0,6.0,16.0,4.0,1255534 -3110141,1630219902,4,32,0,1,1630090714,1,1.0,40.0,6.0,16.0,4.0,1255535 -3110142,1630219907,4,31,0,1,1630090715,1,1.0,17.0,1.0,16.0,4.0,1255536 -3110143,1630219892,4,30,0,1,1630090716,2,1.0,40.0,1.0,-9.0,4.0,1255537 -3110144,1630219903,4,29,0,1,1630090717,1,1.0,20.0,1.0,16.0,4.0,1255538 -3110145,1630219801,2,44,0,1,1630090718,1,1.0,40.0,1.0,-9.0,4.0,1255539 -3110146,1630219740,2,33,0,1,1630090719,1,1.0,10.0,6.0,-9.0,4.0,1255540 -3110147,1630219802,2,44,0,1,1630090720,1,1.0,40.0,1.0,-9.0,4.0,1255541 -3110148,1630219258,2,42,0,1,1630090721,2,1.0,38.0,1.0,15.0,4.0,1255542 -3110149,1630219812,2,35,0,1,1630090722,1,1.0,40.0,4.0,-9.0,4.0,1255543 -3110150,1630219803,2,44,0,1,1630090723,1,1.0,40.0,1.0,-9.0,4.0,1255544 -3110151,1630219741,2,33,0,1,1630090724,1,1.0,10.0,6.0,-9.0,4.0,1255545 -3110152,1630219742,2,33,0,1,1630090725,1,1.0,10.0,6.0,-9.0,4.0,1255546 -3110153,1630219759,2,29,0,1,1630090726,1,1.0,40.0,1.0,-9.0,4.0,1255547 -3110154,1630219804,2,44,0,1,1630090727,1,1.0,40.0,1.0,-9.0,4.0,1255548 -3110155,1630219760,2,29,0,1,1630090728,1,1.0,40.0,1.0,-9.0,4.0,1255549 -3110156,1630219743,2,33,0,1,1630090729,1,1.0,10.0,6.0,-9.0,4.0,1255550 -3110157,1630219805,2,44,0,1,1630090730,1,1.0,40.0,1.0,-9.0,4.0,1255551 -3110158,1630219687,2,30,0,1,1630090731,1,1.0,40.0,1.0,-9.0,4.0,1255552 -3110159,1630219370,2,44,0,1,1630090732,2,1.0,40.0,1.0,-9.0,4.0,1255553 -3110160,1630219475,2,25,0,1,1630090733,2,1.0,40.0,1.0,-9.0,4.0,1255554 -3110161,1630219489,2,26,0,1,1630090734,2,1.0,30.0,1.0,-9.0,4.0,1255555 -3110162,1630219813,2,35,0,1,1630090735,1,1.0,40.0,4.0,-9.0,4.0,1255556 -3110163,1630218096,1,31,0,1,1630090736,2,1.0,20.0,1.0,-9.0,4.0,1255557 -3110164,1630218135,1,31,0,1,1630090737,1,1.0,35.0,1.0,-9.0,4.0,1255558 -3110165,1630217826,1,26,0,1,1630090738,2,1.0,40.0,5.0,-9.0,4.0,1255559 -3110166,1630218398,1,31,0,1,1630090739,1,1.0,40.0,6.0,16.0,2.0,1255560 -3110167,1630218290,1,27,0,1,1630090740,1,1.0,40.0,1.0,-9.0,4.0,1255561 -3110168,1630218356,1,26,0,1,1630090741,1,1.0,60.0,2.0,16.0,4.0,1255562 -3110169,1630218371,1,26,0,1,1630090742,1,1.0,60.0,4.0,-9.0,4.0,1255563 -3110170,1630218136,1,31,0,1,1630090743,1,1.0,35.0,1.0,-9.0,4.0,1255564 -3110171,1630218357,1,26,0,1,1630090744,1,1.0,60.0,2.0,16.0,4.0,1255565 -3110172,1630218317,1,30,0,1,1630090745,1,1.0,50.0,1.0,-9.0,4.0,1255566 -3110173,1630218291,1,27,0,1,1630090746,1,1.0,40.0,1.0,-9.0,4.0,1255567 -3110174,1630217926,1,31,0,1,1630090747,2,1.0,50.0,1.0,-9.0,4.0,1255568 -3110175,1630218292,1,27,0,1,1630090748,1,1.0,40.0,1.0,-9.0,4.0,1255569 -3110176,1630218038,1,25,0,1,1630090749,2,1.0,40.0,4.0,-9.0,4.0,1255570 -3110177,1630218097,1,31,0,1,1630090750,2,1.0,20.0,1.0,-9.0,4.0,1255571 -3110178,1630217865,1,28,0,1,1630090751,2,1.0,50.0,1.0,16.0,4.0,1255572 -3110179,1630218137,1,31,0,1,1630090752,1,1.0,35.0,1.0,-9.0,4.0,1255573 -3110180,1630218358,1,26,0,1,1630090753,1,1.0,60.0,2.0,16.0,4.0,1255574 -3110181,1630218399,1,31,0,1,1630090754,1,1.0,40.0,6.0,16.0,2.0,1255575 -3110182,1630218318,1,30,0,1,1630090755,1,1.0,50.0,1.0,-9.0,4.0,1255576 -3110183,1630218333,1,30,0,1,1630090756,1,1.0,40.0,1.0,-9.0,4.0,1255577 -3110184,1630218400,1,31,0,1,1630090757,1,1.0,40.0,6.0,16.0,2.0,1255578 -3110185,1630218334,1,30,0,1,1630090758,1,1.0,40.0,1.0,-9.0,4.0,1255579 -3110186,1630218138,1,31,0,1,1630090759,1,1.0,35.0,1.0,-9.0,4.0,1255580 -3110187,1630218335,1,30,0,1,1630090760,1,1.0,40.0,1.0,-9.0,4.0,1255581 -3110188,1630218359,1,26,0,1,1630090761,1,1.0,60.0,2.0,16.0,4.0,1255582 -3110189,1630217927,1,31,0,1,1630090762,2,1.0,50.0,1.0,-9.0,4.0,1255583 -3110190,1630218319,1,30,0,1,1630090763,1,1.0,50.0,1.0,-9.0,4.0,1255584 -3110191,1630218039,1,25,0,1,1630090764,2,1.0,40.0,4.0,-9.0,4.0,1255585 -3110192,1630218305,1,27,0,1,1630090765,1,1.0,40.0,1.0,-9.0,4.0,1255586 -3110193,1630218298,1,33,0,1,1630090766,1,1.0,60.0,4.0,-9.0,4.0,1255587 -3110194,1630217928,1,31,0,1,1630090767,2,1.0,50.0,1.0,-9.0,4.0,1255588 -3110195,1630218098,1,31,0,1,1630090768,2,1.0,20.0,1.0,-9.0,4.0,1255589 -3110196,1630218306,1,27,0,1,1630090769,1,1.0,40.0,1.0,-9.0,4.0,1255590 -3110197,1630217929,1,31,0,1,1630090770,2,1.0,50.0,1.0,-9.0,4.0,1255591 -3110198,1630218099,1,31,0,1,1630090771,2,1.0,20.0,1.0,-9.0,4.0,1255592 -3110199,1630218360,1,26,0,1,1630090772,1,1.0,60.0,2.0,16.0,4.0,1255593 -3110200,1630218401,1,31,0,1,1630090773,1,1.0,40.0,6.0,16.0,2.0,1255594 -3110201,1630218100,1,31,0,1,1630090774,2,1.0,20.0,1.0,-9.0,4.0,1255595 -3110202,1630218361,1,26,0,1,1630090775,1,1.0,60.0,2.0,16.0,4.0,1255596 -3110203,1630217866,1,28,0,1,1630090776,2,1.0,50.0,1.0,16.0,4.0,1255597 -3110204,1630218316,1,35,0,1,1630090777,1,1.0,22.0,1.0,16.0,4.0,1255598 -3110205,1630218402,1,31,0,1,1630090778,1,1.0,40.0,6.0,16.0,2.0,1255599 -3110206,1630218307,1,27,0,1,1630090779,1,1.0,40.0,1.0,-9.0,4.0,1255600 -3110207,1630218244,1,25,0,1,1630090780,1,1.0,10.0,5.0,16.0,4.0,1255601 -3110208,1630218139,1,31,0,1,1630090781,1,1.0,35.0,1.0,-9.0,4.0,1255602 -3110209,1630218048,1,31,0,1,1630090782,2,1.0,80.0,5.0,-9.0,4.0,1255603 -3110210,1630218403,1,31,0,1,1630090783,1,1.0,40.0,6.0,16.0,2.0,1255604 -3110211,1630217827,1,26,0,1,1630090784,2,1.0,40.0,5.0,-9.0,4.0,1255605 -3110212,1630218140,1,31,0,1,1630090785,1,1.0,35.0,1.0,-9.0,4.0,1255606 -3110213,1630218293,1,27,0,1,1630090786,1,1.0,40.0,1.0,-9.0,4.0,1255607 -3110214,1630218141,1,31,0,1,1630090787,1,1.0,35.0,1.0,-9.0,4.0,1255608 -3110215,1630217930,1,31,0,1,1630090788,2,1.0,50.0,1.0,-9.0,4.0,1255609 -3110216,1630219304,2,32,0,1,1630090789,2,1.0,30.0,1.0,-9.0,4.0,1255610 -3110217,1630219312,2,15,2,2,1630090789,2,-9.0,-9.0,-9.0,12.0,-9.0,1255610 -3110218,1630219308,2,1,2,3,1630090789,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255610 -3110219,1630219306,2,27,5,4,1630090789,2,6.0,-9.0,-9.0,-9.0,4.0,1255610 -3110220,1630219314,2,10,10,5,1630090789,2,-9.0,-9.0,-9.0,7.0,-9.0,1255610 -3110221,1630219310,2,2,10,6,1630090789,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255610 -3110222,1630219305,2,32,0,1,1630090790,2,1.0,30.0,1.0,-9.0,4.0,1255611 -3110223,1630219313,2,15,2,2,1630090790,2,-9.0,-9.0,-9.0,12.0,-9.0,1255611 -3110224,1630219309,2,1,2,3,1630090790,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255611 -3110225,1630219307,2,27,5,4,1630090790,2,6.0,-9.0,-9.0,-9.0,4.0,1255611 -3110226,1630219315,2,10,10,5,1630090790,2,-9.0,-9.0,-9.0,7.0,-9.0,1255611 -3110227,1630219311,2,2,10,6,1630090790,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255611 -3110228,1630219873,4,31,0,1,1630090791,1,6.0,-9.0,-9.0,-9.0,4.0,1255612 -3110229,1630219870,4,30,1,2,1630090791,2,1.0,20.0,1.0,16.0,4.0,1255612 -3110230,1630219876,4,2,2,3,1630090791,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255612 -3110231,1630219874,4,31,0,1,1630090792,1,6.0,-9.0,-9.0,-9.0,4.0,1255613 -3110232,1630219871,4,30,1,2,1630090792,2,1.0,20.0,1.0,16.0,4.0,1255613 -3110233,1630219877,4,2,2,3,1630090792,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255613 -3110234,1630219875,4,31,0,1,1630090793,1,6.0,-9.0,-9.0,-9.0,4.0,1255614 -3110235,1630219872,4,30,1,2,1630090793,2,1.0,20.0,1.0,16.0,4.0,1255614 -3110236,1630219878,4,2,2,3,1630090793,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255614 -3110237,1630219522,2,42,0,1,1630090794,2,1.0,25.0,1.0,-9.0,4.0,1255615 -3110238,1630219528,2,19,2,2,1630090794,1,3.0,-9.0,-9.0,-9.0,4.0,1255615 -3110239,1630219534,2,14,2,3,1630090794,2,-9.0,-9.0,-9.0,11.0,-9.0,1255615 -3110240,1630219523,2,42,0,1,1630090795,2,1.0,25.0,1.0,-9.0,4.0,1255616 -3110241,1630219529,2,19,2,2,1630090795,1,3.0,-9.0,-9.0,-9.0,4.0,1255616 -3110242,1630219535,2,14,2,3,1630090795,2,-9.0,-9.0,-9.0,11.0,-9.0,1255616 -3110243,1630219524,2,42,0,1,1630090796,2,1.0,25.0,1.0,-9.0,4.0,1255617 -3110244,1630219530,2,19,2,2,1630090796,1,3.0,-9.0,-9.0,-9.0,4.0,1255617 -3110245,1630219536,2,14,2,3,1630090796,2,-9.0,-9.0,-9.0,11.0,-9.0,1255617 -3110246,1630219293,2,39,0,1,1630090797,2,6.0,-9.0,-9.0,-9.0,4.0,1255618 -3110247,1630219296,2,22,2,2,1630090797,2,1.0,40.0,1.0,-9.0,4.0,1255618 -3110248,1630219299,2,9,2,3,1630090797,1,-9.0,-9.0,-9.0,4.0,-9.0,1255618 -3110249,1630219525,2,42,0,1,1630090798,2,1.0,25.0,1.0,-9.0,4.0,1255619 -3110250,1630219531,2,19,2,2,1630090798,1,3.0,-9.0,-9.0,-9.0,4.0,1255619 -3110251,1630219537,2,14,2,3,1630090798,2,-9.0,-9.0,-9.0,11.0,-9.0,1255619 -3110252,1630219294,2,39,0,1,1630090799,2,6.0,-9.0,-9.0,-9.0,4.0,1255620 -3110253,1630219297,2,22,2,2,1630090799,2,1.0,40.0,1.0,-9.0,4.0,1255620 -3110254,1630219300,2,9,2,3,1630090799,1,-9.0,-9.0,-9.0,4.0,-9.0,1255620 -3110255,1630219526,2,42,0,1,1630090800,2,1.0,25.0,1.0,-9.0,4.0,1255621 -3110256,1630219532,2,19,2,2,1630090800,1,3.0,-9.0,-9.0,-9.0,4.0,1255621 -3110257,1630219538,2,14,2,3,1630090800,2,-9.0,-9.0,-9.0,11.0,-9.0,1255621 -3110258,1630219527,2,42,0,1,1630090801,2,1.0,25.0,1.0,-9.0,4.0,1255622 -3110259,1630219533,2,19,2,2,1630090801,1,3.0,-9.0,-9.0,-9.0,4.0,1255622 -3110260,1630219539,2,14,2,3,1630090801,2,-9.0,-9.0,-9.0,11.0,-9.0,1255622 -3110261,1630219365,2,26,0,1,1630090802,2,1.0,15.0,3.0,-9.0,4.0,1255623 -3110262,1630219366,2,10,2,2,1630090802,2,-9.0,-9.0,-9.0,7.0,-9.0,1255623 -3110263,1630219367,2,6,2,3,1630090802,2,-9.0,-9.0,-9.0,2.0,-9.0,1255623 -3110264,1630219886,4,28,0,1,1630090803,1,6.0,-9.0,-9.0,15.0,4.0,1255624 -3110265,1630219883,4,31,1,2,1630090803,2,1.0,40.0,1.0,16.0,4.0,1255624 -3110266,1630219889,4,1,2,3,1630090803,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255624 -3110267,1630219887,4,28,0,1,1630090804,1,6.0,-9.0,-9.0,15.0,4.0,1255625 -3110268,1630219884,4,31,1,2,1630090804,2,1.0,40.0,1.0,16.0,4.0,1255625 -3110269,1630219890,4,1,2,3,1630090804,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255625 -3110270,1630219261,2,34,0,1,1630090805,2,1.0,40.0,1.0,-9.0,4.0,1255626 -3110271,1630219265,2,12,2,2,1630090805,2,-9.0,-9.0,-9.0,9.0,-9.0,1255626 -3110272,1630219269,2,7,2,3,1630090805,2,-9.0,-9.0,-9.0,4.0,-9.0,1255626 -3110273,1630219162,2,38,0,1,1630090806,1,1.0,50.0,6.0,-9.0,4.0,1255627 -3110274,1630219158,2,29,1,2,1630090806,2,3.0,-9.0,-9.0,-9.0,4.0,1255627 -3110275,1630219160,2,0,2,3,1630090806,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255627 -3110276,1630218514,2,32,0,1,1630090807,2,1.0,34.0,1.0,-9.0,4.0,1255628 -3110277,1630218516,2,10,2,2,1630090807,1,-9.0,-9.0,-9.0,6.0,-9.0,1255628 -3110278,1630218518,2,7,2,3,1630090807,1,-9.0,-9.0,-9.0,4.0,-9.0,1255628 -3110279,1630218515,2,32,0,1,1630090808,2,1.0,34.0,1.0,-9.0,4.0,1255629 -3110280,1630218517,2,10,2,2,1630090808,1,-9.0,-9.0,-9.0,6.0,-9.0,1255629 -3110281,1630218519,2,7,2,3,1630090808,1,-9.0,-9.0,-9.0,4.0,-9.0,1255629 -3110282,1630218573,2,31,0,1,1630090809,2,1.0,30.0,1.0,15.0,4.0,1255630 -3110283,1630218585,2,7,2,2,1630090809,2,-9.0,-9.0,-9.0,4.0,-9.0,1255630 -3110284,1630218579,2,3,2,3,1630090809,1,-9.0,-9.0,-9.0,1.0,-9.0,1255630 -3110285,1630218574,2,31,0,1,1630090810,2,1.0,30.0,1.0,15.0,4.0,1255631 -3110286,1630218586,2,7,2,2,1630090810,2,-9.0,-9.0,-9.0,4.0,-9.0,1255631 -3110287,1630218580,2,3,2,3,1630090810,1,-9.0,-9.0,-9.0,1.0,-9.0,1255631 -3110288,1630218478,2,25,0,1,1630090811,2,3.0,20.0,6.0,15.0,4.0,1255632 -3110289,1630218482,2,4,2,2,1630090811,1,-9.0,-9.0,-9.0,1.0,-9.0,1255632 -3110290,1630218480,2,27,12,3,1630090811,2,1.0,35.0,1.0,-9.0,4.0,1255632 -3110291,1630218575,2,31,0,1,1630090812,2,1.0,30.0,1.0,15.0,4.0,1255633 -3110292,1630218587,2,7,2,2,1630090812,2,-9.0,-9.0,-9.0,4.0,-9.0,1255633 -3110293,1630218581,2,3,2,3,1630090812,1,-9.0,-9.0,-9.0,1.0,-9.0,1255633 -3110294,1630219262,2,34,0,1,1630090813,2,1.0,40.0,1.0,-9.0,4.0,1255634 -3110295,1630219266,2,12,2,2,1630090813,2,-9.0,-9.0,-9.0,9.0,-9.0,1255634 -3110296,1630219270,2,7,2,3,1630090813,2,-9.0,-9.0,-9.0,4.0,-9.0,1255634 -3110297,1630218576,2,31,0,1,1630090814,2,1.0,30.0,1.0,15.0,4.0,1255635 -3110298,1630218588,2,7,2,2,1630090814,2,-9.0,-9.0,-9.0,4.0,-9.0,1255635 -3110299,1630218582,2,3,2,3,1630090814,1,-9.0,-9.0,-9.0,1.0,-9.0,1255635 -3110300,1630218615,2,30,0,1,1630090815,2,1.0,38.0,2.0,-9.0,4.0,1255636 -3110301,1630218616,2,6,2,2,1630090815,2,-9.0,-9.0,-9.0,2.0,-9.0,1255636 -3110302,1630218617,2,4,2,3,1630090815,2,-9.0,-9.0,-9.0,1.0,-9.0,1255636 -3110303,1630218912,2,38,0,1,1630090816,2,1.0,40.0,1.0,15.0,4.0,1255637 -3110304,1630218914,2,19,2,2,1630090816,2,6.0,-9.0,-9.0,15.0,4.0,1255637 -3110305,1630218916,2,8,2,3,1630090816,1,-9.0,-9.0,-9.0,4.0,-9.0,1255637 -3110306,1630219401,2,40,0,1,1630090817,2,1.0,40.0,1.0,-9.0,4.0,1255638 -3110307,1630219403,2,17,2,2,1630090817,2,6.0,-9.0,-9.0,14.0,4.0,1255638 -3110308,1630219402,2,12,2,3,1630090817,1,-9.0,-9.0,-9.0,9.0,-9.0,1255638 -3110309,1630218577,2,31,0,1,1630090818,2,1.0,30.0,1.0,15.0,4.0,1255639 -3110310,1630218589,2,7,2,2,1630090818,2,-9.0,-9.0,-9.0,4.0,-9.0,1255639 -3110311,1630218583,2,3,2,3,1630090818,1,-9.0,-9.0,-9.0,1.0,-9.0,1255639 -3110312,1630218479,2,25,0,1,1630090819,2,3.0,20.0,6.0,15.0,4.0,1255640 -3110313,1630218483,2,4,2,2,1630090819,1,-9.0,-9.0,-9.0,1.0,-9.0,1255640 -3110314,1630218481,2,27,12,3,1630090819,2,1.0,35.0,1.0,-9.0,4.0,1255640 -3110315,1630219163,2,38,0,1,1630090820,1,1.0,50.0,6.0,-9.0,4.0,1255641 -3110316,1630219159,2,29,1,2,1630090820,2,3.0,-9.0,-9.0,-9.0,4.0,1255641 -3110317,1630219161,2,0,2,3,1630090820,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255641 -3110318,1630218578,2,31,0,1,1630090821,2,1.0,30.0,1.0,15.0,4.0,1255642 -3110319,1630218590,2,7,2,2,1630090821,2,-9.0,-9.0,-9.0,4.0,-9.0,1255642 -3110320,1630218584,2,3,2,3,1630090821,1,-9.0,-9.0,-9.0,1.0,-9.0,1255642 -3110321,1630218913,2,38,0,1,1630090822,2,1.0,40.0,1.0,15.0,4.0,1255643 -3110322,1630218915,2,19,2,2,1630090822,2,6.0,-9.0,-9.0,15.0,4.0,1255643 -3110323,1630218917,2,8,2,3,1630090822,1,-9.0,-9.0,-9.0,4.0,-9.0,1255643 -3110324,1630219476,2,25,0,1,1630090823,2,1.0,40.0,1.0,-9.0,4.0,1255644 -3110325,1630219478,2,6,2,2,1630090823,2,-9.0,-9.0,-9.0,2.0,-9.0,1255644 -3110326,1630219480,2,2,2,3,1630090823,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255644 -3110327,1630219263,2,34,0,1,1630090824,2,1.0,40.0,1.0,-9.0,4.0,1255645 -3110328,1630219267,2,12,2,2,1630090824,2,-9.0,-9.0,-9.0,9.0,-9.0,1255645 -3110329,1630219271,2,7,2,3,1630090824,2,-9.0,-9.0,-9.0,4.0,-9.0,1255645 -3110330,1630219477,2,25,0,1,1630090825,2,1.0,40.0,1.0,-9.0,4.0,1255646 -3110331,1630219479,2,6,2,2,1630090825,2,-9.0,-9.0,-9.0,2.0,-9.0,1255646 -3110332,1630219481,2,2,2,3,1630090825,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255646 -3110333,1630218751,2,28,0,1,1630090826,2,1.0,40.0,1.0,-9.0,4.0,1255647 -3110334,1630218754,2,9,2,2,1630090826,1,-9.0,-9.0,-9.0,5.0,-9.0,1255647 -3110335,1630218757,2,7,2,3,1630090826,2,-9.0,-9.0,-9.0,3.0,-9.0,1255647 -3110336,1630218884,2,25,0,1,1630090827,2,1.0,20.0,1.0,-9.0,4.0,1255648 -3110337,1630218888,2,3,2,2,1630090827,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255648 -3110338,1630218892,2,2,2,3,1630090827,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255648 -3110339,1630218885,2,25,0,1,1630090828,2,1.0,20.0,1.0,-9.0,4.0,1255649 -3110340,1630218889,2,3,2,2,1630090828,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255649 -3110341,1630218893,2,2,2,3,1630090828,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255649 -3110342,1630218752,2,28,0,1,1630090829,2,1.0,40.0,1.0,-9.0,4.0,1255650 -3110343,1630218755,2,9,2,2,1630090829,1,-9.0,-9.0,-9.0,5.0,-9.0,1255650 -3110344,1630218758,2,7,2,3,1630090829,2,-9.0,-9.0,-9.0,3.0,-9.0,1255650 -3110345,1630218753,2,28,0,1,1630090830,2,1.0,40.0,1.0,-9.0,4.0,1255651 -3110346,1630218756,2,9,2,2,1630090830,1,-9.0,-9.0,-9.0,5.0,-9.0,1255651 -3110347,1630218759,2,7,2,3,1630090830,2,-9.0,-9.0,-9.0,3.0,-9.0,1255651 -3110348,1630218886,2,25,0,1,1630090831,2,1.0,20.0,1.0,-9.0,4.0,1255652 -3110349,1630218890,2,3,2,2,1630090831,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255652 -3110350,1630218894,2,2,2,3,1630090831,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255652 -3110351,1630218887,2,25,0,1,1630090832,2,1.0,20.0,1.0,-9.0,4.0,1255653 -3110352,1630218891,2,3,2,2,1630090832,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255653 -3110353,1630218895,2,2,2,3,1630090832,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255653 -3110354,1630219866,4,26,0,1,1630090833,2,6.0,-9.0,-9.0,-9.0,4.0,1255654 -3110355,1630219868,4,26,1,2,1630090833,1,1.0,40.0,1.0,16.0,4.0,1255654 -3110356,1630219867,4,26,0,1,1630090834,2,6.0,-9.0,-9.0,-9.0,4.0,1255655 -3110357,1630219869,4,26,1,2,1630090834,1,1.0,40.0,1.0,16.0,4.0,1255655 -3110358,1630218772,2,37,0,1,1630090835,2,2.0,25.0,1.0,-9.0,4.0,1255656 -3110359,1630218775,2,19,2,2,1630090835,1,3.0,-9.0,-9.0,-9.0,4.0,1255656 -3110360,1630219050,2,30,0,1,1630090836,2,1.0,15.0,4.0,-9.0,4.0,1255657 -3110361,1630219052,2,30,1,2,1630090836,1,6.0,-9.0,-9.0,-9.0,4.0,1255657 -3110362,1630218773,2,37,0,1,1630090837,2,2.0,25.0,1.0,-9.0,4.0,1255658 -3110363,1630218776,2,19,2,2,1630090837,1,3.0,-9.0,-9.0,-9.0,4.0,1255658 -3110364,1630219051,2,30,0,1,1630090838,2,1.0,15.0,4.0,-9.0,4.0,1255659 -3110365,1630219053,2,30,1,2,1630090838,1,6.0,-9.0,-9.0,-9.0,4.0,1255659 -3110366,1630218774,2,37,0,1,1630090839,2,2.0,25.0,1.0,-9.0,4.0,1255660 -3110367,1630218777,2,19,2,2,1630090839,1,3.0,-9.0,-9.0,-9.0,4.0,1255660 -3110368,1630219464,2,31,0,1,1630090840,1,6.0,-9.0,-9.0,-9.0,4.0,1255661 -3110369,1630219463,2,62,6,2,1630090840,2,1.0,37.0,1.0,-9.0,4.0,1255661 -3110370,1630218875,2,34,0,1,1630090841,2,1.0,40.0,1.0,-9.0,4.0,1255662 -3110371,1630218878,2,14,2,2,1630090841,2,-9.0,-9.0,-9.0,11.0,-9.0,1255662 -3110372,1630218876,2,34,0,1,1630090842,2,1.0,40.0,1.0,-9.0,4.0,1255663 -3110373,1630218879,2,14,2,2,1630090842,2,-9.0,-9.0,-9.0,11.0,-9.0,1255663 -3110374,1630219387,2,35,0,1,1630090843,2,1.0,40.0,1.0,-9.0,4.0,1255664 -3110375,1630219389,2,16,2,2,1630090843,2,6.0,-9.0,-9.0,12.0,-9.0,1255664 -3110376,1630218877,2,34,0,1,1630090844,2,1.0,40.0,1.0,-9.0,4.0,1255665 -3110377,1630218880,2,14,2,2,1630090844,2,-9.0,-9.0,-9.0,11.0,-9.0,1255665 -3110378,1630219388,2,35,0,1,1630090845,2,1.0,40.0,1.0,-9.0,4.0,1255666 -3110379,1630219390,2,16,2,2,1630090845,2,6.0,-9.0,-9.0,12.0,-9.0,1255666 -3110380,1630218686,2,36,0,1,1630090846,2,1.0,25.0,1.0,-9.0,4.0,1255667 -3110381,1630218689,2,18,2,2,1630090846,1,6.0,-9.0,-9.0,14.0,4.0,1255667 -3110382,1630219082,2,32,0,1,1630090847,2,3.0,-9.0,-9.0,-9.0,4.0,1255668 -3110383,1630219085,2,33,1,2,1630090847,1,1.0,45.0,4.0,-9.0,4.0,1255668 -3110384,1630218687,2,36,0,1,1630090848,2,1.0,25.0,1.0,-9.0,4.0,1255669 -3110385,1630218690,2,18,2,2,1630090848,1,6.0,-9.0,-9.0,14.0,4.0,1255669 -3110386,1630219083,2,32,0,1,1630090849,2,3.0,-9.0,-9.0,-9.0,4.0,1255670 -3110387,1630219086,2,33,1,2,1630090849,1,1.0,45.0,4.0,-9.0,4.0,1255670 -3110388,1630219200,2,31,0,1,1630090850,2,1.0,40.0,1.0,-9.0,4.0,1255671 -3110389,1630219201,2,30,10,2,1630090850,1,6.0,-9.0,-9.0,-9.0,4.0,1255671 -3110390,1630218688,2,36,0,1,1630090851,2,1.0,25.0,1.0,-9.0,4.0,1255672 -3110391,1630218691,2,18,2,2,1630090851,1,6.0,-9.0,-9.0,14.0,4.0,1255672 -3110392,1630217783,1,27,0,1,1630090852,2,1.0,20.0,1.0,16.0,4.0,1255673 -3110393,1630217787,1,26,1,2,1630090852,1,3.0,-9.0,-9.0,16.0,4.0,1255673 -3110394,1630217784,1,27,0,1,1630090853,2,1.0,20.0,1.0,16.0,4.0,1255674 -3110395,1630217788,1,26,1,2,1630090853,1,3.0,-9.0,-9.0,16.0,4.0,1255674 -3110396,1630217785,1,27,0,1,1630090854,2,1.0,20.0,1.0,16.0,4.0,1255675 -3110397,1630217789,1,26,1,2,1630090854,1,3.0,-9.0,-9.0,16.0,4.0,1255675 -3110398,1630218778,2,29,0,1,1630090855,2,1.0,40.0,4.0,-9.0,4.0,1255676 -3110399,1630218779,2,9,2,2,1630090855,1,-9.0,-9.0,-9.0,5.0,-9.0,1255676 -3110400,1630219383,2,36,0,1,1630090856,2,1.0,24.0,1.0,-9.0,4.0,1255677 -3110401,1630219385,2,14,2,2,1630090856,1,-9.0,-9.0,-9.0,10.0,-9.0,1255677 -3110402,1630219253,2,32,0,1,1630090857,2,1.0,20.0,1.0,-9.0,4.0,1255678 -3110403,1630219254,2,10,2,2,1630090857,1,-9.0,-9.0,-9.0,7.0,-9.0,1255678 -3110404,1630218962,2,28,0,1,1630090858,2,1.0,40.0,1.0,15.0,4.0,1255679 -3110405,1630218963,2,3,2,2,1630090858,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255679 -3110406,1630219432,2,30,0,1,1630090859,2,1.0,40.0,1.0,-9.0,4.0,1255680 -3110407,1630219435,2,3,2,2,1630090859,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255680 -3110408,1630218591,2,25,0,1,1630090860,2,1.0,40.0,5.0,-9.0,4.0,1255681 -3110409,1630218594,2,1,2,2,1630090860,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255681 -3110410,1630219134,2,32,0,1,1630090861,2,1.0,40.0,1.0,-9.0,4.0,1255682 -3110411,1630219135,2,6,2,2,1630090861,2,-9.0,-9.0,-9.0,3.0,-9.0,1255682 -3110412,1630218471,2,40,0,1,1630090862,2,2.0,72.0,1.0,-9.0,4.0,1255683 -3110413,1630218472,2,13,2,2,1630090862,1,-9.0,-9.0,-9.0,8.0,-9.0,1255683 -3110414,1630219384,2,36,0,1,1630090863,2,1.0,24.0,1.0,-9.0,4.0,1255684 -3110415,1630219386,2,14,2,2,1630090863,1,-9.0,-9.0,-9.0,10.0,-9.0,1255684 -3110416,1630219433,2,30,0,1,1630090864,2,1.0,40.0,1.0,-9.0,4.0,1255685 -3110417,1630219436,2,3,2,2,1630090864,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255685 -3110418,1630219434,2,30,0,1,1630090865,2,1.0,40.0,1.0,-9.0,4.0,1255686 -3110419,1630219437,2,3,2,2,1630090865,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255686 -3110420,1630218592,2,25,0,1,1630090866,2,1.0,40.0,5.0,-9.0,4.0,1255687 -3110421,1630218595,2,1,2,2,1630090866,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255687 -3110422,1630218593,2,25,0,1,1630090867,2,1.0,40.0,5.0,-9.0,4.0,1255688 -3110423,1630218596,2,1,2,2,1630090867,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255688 -3110424,1630219125,2,42,0,1,1630090868,2,1.0,25.0,1.0,-9.0,4.0,1255689 -3110425,1630219126,2,18,2,2,1630090868,1,6.0,-9.0,-9.0,10.0,4.0,1255689 -3110426,1630218954,2,43,0,1,1630090869,2,6.0,20.0,6.0,15.0,4.0,1255690 -3110427,1630218957,2,18,2,2,1630090869,1,2.0,20.0,4.0,14.0,4.0,1255690 -3110428,1630218955,2,43,0,1,1630090870,2,6.0,20.0,6.0,15.0,4.0,1255691 -3110429,1630218958,2,18,2,2,1630090870,1,2.0,20.0,4.0,14.0,4.0,1255691 -3110430,1630218956,2,43,0,1,1630090871,2,6.0,20.0,6.0,15.0,4.0,1255692 -3110431,1630218959,2,18,2,2,1630090871,1,2.0,20.0,4.0,14.0,4.0,1255692 -3110432,1630217960,1,43,0,1,1630090872,2,6.0,-9.0,-9.0,-9.0,4.0,1255693 -3110433,1630217964,1,52,13,2,1630090872,1,1.0,25.0,1.0,-9.0,4.0,1255693 -3110434,1630217961,1,43,0,1,1630090873,2,6.0,-9.0,-9.0,-9.0,4.0,1255694 -3110435,1630217965,1,52,13,2,1630090873,1,1.0,25.0,1.0,-9.0,4.0,1255694 -3110436,1630217962,1,43,0,1,1630090874,2,6.0,-9.0,-9.0,-9.0,4.0,1255695 -3110437,1630217966,1,52,13,2,1630090874,1,1.0,25.0,1.0,-9.0,4.0,1255695 -3110438,1630218906,2,31,0,1,1630090875,1,2.0,40.0,6.0,-9.0,4.0,1255696 -3110439,1630218907,2,2,2,2,1630090875,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255696 -3110440,1630218905,2,22,13,3,1630090875,2,1.0,25.0,1.0,15.0,4.0,1255696 -3110441,1630218312,1,33,0,1,1630090876,1,1.0,25.0,1.0,16.0,4.0,1255697 -3110442,1630218314,4,30,1,2,1630090876,2,1.0,25.0,1.0,15.0,4.0,1255697 -3110443,1630218354,1,50,0,1,1630090877,1,1.0,60.0,1.0,-9.0,4.0,1255698 -3110444,1630218069,1,51,0,1,1630090878,2,1.0,40.0,1.0,16.0,4.0,1255699 -3110445,1630219618,2,64,0,1,1630090879,1,6.0,-9.0,-9.0,-9.0,2.0,1255700 -3110446,1630219679,2,47,0,1,1630090880,1,1.0,40.0,1.0,-9.0,4.0,1255701 -3110447,1630218659,2,59,0,1,1630090881,2,1.0,40.0,4.0,-9.0,4.0,1255702 -3110448,1630219733,2,56,0,1,1630090882,1,1.0,40.0,1.0,-9.0,4.0,1255703 -3110449,1630219782,2,58,0,1,1630090883,1,1.0,45.0,1.0,-9.0,4.0,1255704 -3110450,1630219811,2,48,0,1,1630090884,1,1.0,48.0,1.0,-9.0,4.0,1255705 -3110451,1630219763,2,60,0,1,1630090885,1,1.0,40.0,1.0,-9.0,4.0,1255706 -3110452,1630219565,2,46,0,1,1630090886,1,1.0,45.0,1.0,-9.0,4.0,1255707 -3110453,1630219715,2,45,0,1,1630090887,1,1.0,36.0,1.0,-9.0,3.0,1255708 -3110454,1630218524,2,60,0,1,1630090888,2,1.0,40.0,1.0,-9.0,4.0,1255709 -3110455,1630218332,1,63,0,1,1630090889,1,1.0,40.0,1.0,-9.0,4.0,1255710 -3110456,1630217810,1,60,0,1,1630090890,2,1.0,48.0,1.0,-9.0,4.0,1255711 -3110457,1630218382,1,64,0,1,1630090891,1,1.0,53.0,1.0,-9.0,4.0,1255712 -3110458,1630218943,2,55,0,1,1630090892,2,6.0,-9.0,-9.0,-9.0,4.0,1255713 -3110459,1630218945,2,66,1,2,1630090892,1,1.0,40.0,1.0,-9.0,4.0,1255713 -3110460,1630217682,2,45,0,1,1630090893,2,1.0,40.0,1.0,-9.0,4.0,1255714 -3110461,1630217681,2,68,6,2,1630090893,2,6.0,-9.0,-9.0,-9.0,4.0,1255714 -3110462,1630219665,2,58,0,1,1630090894,1,6.0,-9.0,-9.0,-9.0,2.0,1255715 -3110463,1630219716,2,51,0,1,1630090895,1,6.0,-9.0,-9.0,-9.0,2.0,1255716 -3110464,1630219728,2,58,0,1,1630090896,1,6.0,-9.0,-9.0,-9.0,4.0,1255717 -3110465,1630219474,2,61,0,1,1630090897,2,6.0,-9.0,-9.0,-9.0,4.0,1255718 -3110466,1630219756,2,47,0,1,1630090898,1,6.0,-9.0,-9.0,-9.0,4.0,1255719 -3110467,1630219653,2,51,0,1,1630090899,1,6.0,-9.0,-9.0,-9.0,2.0,1255720 -3110468,1630219123,2,55,0,1,1630090900,2,6.0,-9.0,-9.0,-9.0,4.0,1255721 -3110469,1630219757,2,47,0,1,1630090901,1,6.0,-9.0,-9.0,-9.0,4.0,1255722 -3110470,1630219596,2,54,0,1,1630090902,1,3.0,-9.0,-9.0,-9.0,2.0,1255723 -3110471,1630219603,2,61,0,1,1630090903,1,6.0,-9.0,-9.0,-9.0,4.0,1255724 -3110472,1630219606,2,54,0,1,1630090904,1,3.0,-9.0,-9.0,-9.0,4.0,1255725 -3110473,1630219724,2,60,0,1,1630090905,1,6.0,-9.0,-9.0,-9.0,4.0,1255726 -3110474,1630219726,2,56,0,1,1630090906,1,3.0,-9.0,-9.0,-9.0,4.0,1255727 -3110475,1630219814,2,57,0,1,1630090907,1,6.0,-9.0,-9.0,-9.0,4.0,1255728 -3110476,1630218488,2,61,0,1,1630090908,2,6.0,-9.0,-9.0,-9.0,4.0,1255729 -3110477,1630219678,2,61,0,1,1630090909,1,6.0,-9.0,-9.0,-9.0,4.0,1255730 -3110478,1630219639,2,47,0,1,1630090910,1,3.0,-9.0,-9.0,-9.0,2.0,1255731 -3110479,1630219681,2,64,0,1,1630090911,1,6.0,-9.0,-9.0,-9.0,4.0,1255732 -3110480,1630218600,2,64,0,1,1630090912,2,6.0,15.0,5.0,-9.0,4.0,1255733 -3110481,1630219627,2,60,0,1,1630090913,1,6.0,-9.0,-9.0,-9.0,4.0,1255734 -3110482,1630219252,2,53,0,1,1630090914,2,6.0,-9.0,-9.0,-9.0,4.0,1255735 -3110483,1630218512,2,60,0,1,1630090915,2,6.0,32.0,6.0,-9.0,4.0,1255736 -3110484,1630219030,2,61,0,1,1630090916,2,6.0,-9.0,-9.0,-9.0,4.0,1255737 -3110485,1630219640,2,47,0,1,1630090917,1,3.0,-9.0,-9.0,-9.0,2.0,1255738 -3110486,1630219762,2,64,0,1,1630090918,1,6.0,-9.0,-9.0,-9.0,2.0,1255739 -3110487,1630219688,2,56,0,1,1630090919,1,3.0,-9.0,-9.0,-9.0,2.0,1255740 -3110488,1630219000,2,57,0,1,1630090920,2,6.0,-9.0,-9.0,-9.0,4.0,1255741 -3110489,1630219776,2,61,0,1,1630090921,1,6.0,-9.0,-9.0,-9.0,4.0,1255742 -3110490,1630218960,2,59,0,1,1630090922,2,3.0,-9.0,-9.0,-9.0,4.0,1255743 -3110491,1630219001,2,57,0,1,1630090923,2,6.0,-9.0,-9.0,-9.0,4.0,1255744 -3110492,1630219597,2,54,0,1,1630090924,1,3.0,-9.0,-9.0,-9.0,2.0,1255745 -3110493,1630219738,2,51,0,1,1630090925,1,3.0,-9.0,-9.0,-9.0,4.0,1255746 -3110494,1630218923,2,45,0,1,1630090926,2,6.0,-9.0,-9.0,-9.0,4.0,1255747 -3110495,1630219612,2,58,0,1,1630090927,1,6.0,-9.0,-9.0,-9.0,4.0,1255748 -3110496,1630219658,2,61,0,1,1630090928,1,6.0,-9.0,-9.0,-9.0,4.0,1255749 -3110497,1630219608,2,60,0,1,1630090929,1,6.0,-9.0,-9.0,-9.0,4.0,1255750 -3110498,1630218523,2,57,0,1,1630090930,2,6.0,-9.0,-9.0,-9.0,4.0,1255751 -3110499,1630219739,2,51,0,1,1630090931,1,3.0,-9.0,-9.0,-9.0,4.0,1255752 -3110500,1630219719,2,56,0,1,1630090932,1,6.0,-9.0,-9.0,-9.0,2.0,1255753 -3110501,1630219773,2,53,0,1,1630090933,1,6.0,-9.0,-9.0,-9.0,4.0,1255754 -3110502,1630219586,2,59,0,1,1630090934,1,6.0,11.0,6.0,-9.0,4.0,1255755 -3110503,1630219124,2,55,0,1,1630090935,2,6.0,-9.0,-9.0,-9.0,4.0,1255756 -3110504,1630219628,2,60,0,1,1630090936,1,6.0,-9.0,-9.0,-9.0,4.0,1255757 -3110505,1630219517,2,52,0,1,1630090937,2,3.0,-9.0,-9.0,-9.0,4.0,1255758 -3110506,1630219374,2,51,0,1,1630090938,2,3.0,-9.0,-9.0,-9.0,4.0,1255759 -3110507,1630219651,2,58,0,1,1630090939,1,6.0,-9.0,-9.0,-9.0,4.0,1255760 -3110508,1630219629,2,60,0,1,1630090940,1,3.0,-9.0,-9.0,-9.0,4.0,1255761 -3110509,1630219598,2,54,0,1,1630090941,1,3.0,-9.0,-9.0,-9.0,2.0,1255762 -3110510,1630218961,2,59,0,1,1630090942,2,3.0,-9.0,-9.0,-9.0,4.0,1255763 -3110511,1630219758,2,47,0,1,1630090943,1,6.0,-9.0,-9.0,-9.0,4.0,1255764 -3110512,1630219777,2,61,0,1,1630090944,1,6.0,-9.0,-9.0,-9.0,4.0,1255765 -3110513,1630219562,2,53,0,1,1630090945,1,6.0,-9.0,-9.0,-9.0,4.0,1255766 -3110514,1630219835,4,62,0,1,1630090946,1,6.0,-9.0,-9.0,-9.0,4.0,1255767 -3110515,1630218200,1,64,0,1,1630090947,1,6.0,-9.0,-9.0,-9.0,2.0,1255768 -3110516,1630218383,1,53,0,1,1630090948,1,6.0,8.0,6.0,-9.0,4.0,1255769 -3110517,1630217825,1,60,0,1,1630090949,2,6.0,-9.0,-9.0,-9.0,4.0,1255770 -3110518,1630218167,1,45,0,1,1630090950,1,6.0,-9.0,-9.0,-9.0,4.0,1255771 -3110519,1630218311,1,60,0,1,1630090951,1,6.0,-9.0,-9.0,15.0,4.0,1255772 -3110520,1630218349,1,50,0,1,1630090952,1,3.0,-9.0,-9.0,-9.0,2.0,1255773 -3110521,1630218275,1,64,0,1,1630090953,1,6.0,-9.0,-9.0,-9.0,4.0,1255774 -3110522,1630218372,1,51,0,1,1630090954,1,6.0,-9.0,-9.0,-9.0,2.0,1255775 -3110523,1630219751,2,54,0,1,1630090955,1,6.0,-9.0,-9.0,-9.0,2.0,1255776 -3110524,1630219106,2,63,0,1,1630090956,2,6.0,-9.0,-9.0,-9.0,4.0,1255777 -3110525,1630219735,2,62,0,1,1630090957,1,6.0,-9.0,-9.0,-9.0,2.0,1255778 -3110526,1630219731,2,64,0,1,1630090958,1,6.0,-9.0,-9.0,-9.0,4.0,1255779 -3110527,1630219736,2,62,0,1,1630090959,1,6.0,-9.0,-9.0,-9.0,2.0,1255780 -3110528,1630219752,2,54,0,1,1630090960,1,6.0,-9.0,-9.0,-9.0,2.0,1255781 -3110529,1630219734,2,63,0,1,1630090961,1,6.0,-9.0,-9.0,-9.0,2.0,1255782 -3110530,1630219652,2,60,0,1,1630090962,1,6.0,-9.0,-9.0,-9.0,4.0,1255783 -3110531,1630219768,2,62,0,1,1630090963,1,6.0,40.0,5.0,-9.0,4.0,1255784 -3110532,1630219795,2,58,0,1,1630090964,1,6.0,-9.0,-9.0,-9.0,4.0,1255785 -3110533,1630218284,1,64,0,1,1630090965,1,6.0,12.0,5.0,-9.0,4.0,1255786 -3110534,1630219590,2,54,0,1,1630090966,1,6.0,-9.0,-9.0,-9.0,4.0,1255787 -3110535,1630219594,2,75,15,2,1630090966,1,3.0,-9.0,-9.0,-9.0,4.0,1255787 -3110536,1630219592,2,58,15,3,1630090966,1,3.0,-9.0,-9.0,-9.0,4.0,1255787 -3110537,1630219591,2,54,0,1,1630090967,1,6.0,-9.0,-9.0,-9.0,4.0,1255788 -3110538,1630219595,2,75,15,2,1630090967,1,3.0,-9.0,-9.0,-9.0,4.0,1255788 -3110539,1630219593,2,58,15,3,1630090967,1,3.0,-9.0,-9.0,-9.0,4.0,1255788 -3110540,1630218838,2,50,0,1,1630090968,2,3.0,-9.0,-9.0,-9.0,4.0,1255789 -3110541,1630218840,2,21,2,2,1630090968,1,3.0,-9.0,-9.0,-9.0,4.0,1255789 -3110542,1630218839,2,19,2,3,1630090968,2,6.0,-9.0,-9.0,15.0,4.0,1255789 -3110543,1630218465,2,57,0,1,1630090969,2,6.0,-9.0,-9.0,-9.0,4.0,1255790 -3110544,1630218467,2,23,2,2,1630090969,1,6.0,-9.0,-9.0,14.0,4.0,1255790 -3110545,1630218466,2,22,2,3,1630090969,2,6.0,20.0,6.0,-9.0,4.0,1255790 -3110546,1630219483,2,48,0,1,1630090970,2,6.0,-9.0,-9.0,-9.0,4.0,1255791 -3110547,1630219485,2,18,2,2,1630090970,2,3.0,-9.0,-9.0,13.0,4.0,1255791 -3110548,1630219487,2,10,2,3,1630090970,1,-9.0,-9.0,-9.0,5.0,-9.0,1255791 -3110549,1630217673,2,51,0,1,1630090971,1,3.0,-9.0,-9.0,-9.0,4.0,1255792 -3110550,1630217670,2,71,6,2,1630090971,2,6.0,-9.0,-9.0,-9.0,4.0,1255792 -3110551,1630218713,2,51,0,1,1630090972,2,6.0,-9.0,-9.0,-9.0,4.0,1255793 -3110552,1630218714,2,62,1,2,1630090972,1,6.0,-9.0,-9.0,-9.0,2.0,1255793 -3110553,1630218780,2,59,0,1,1630090973,2,6.0,-9.0,-9.0,-9.0,4.0,1255794 -3110554,1630218781,2,42,2,2,1630090973,1,3.0,-9.0,-9.0,-9.0,4.0,1255794 -3110555,1630219620,2,61,0,1,1630090974,1,6.0,-9.0,-9.0,-9.0,2.0,1255795 -3110556,1630219621,2,26,10,2,1630090974,1,3.0,-9.0,-9.0,-9.0,4.0,1255795 -3110557,1630219440,2,51,0,1,1630090975,2,3.0,-9.0,-9.0,-9.0,3.0,1255796 -3110558,1630219441,2,57,13,2,1630090975,1,3.0,40.0,5.0,-9.0,4.0,1255796 -3110559,1630219117,2,57,0,1,1630090976,2,6.0,-9.0,-9.0,-9.0,4.0,1255797 -3110560,1630219118,2,71,1,2,1630090976,1,6.0,-9.0,-9.0,-9.0,4.0,1255797 -3110561,1630217674,2,51,0,1,1630090977,1,3.0,-9.0,-9.0,-9.0,4.0,1255798 -3110562,1630217671,2,71,6,2,1630090977,2,6.0,-9.0,-9.0,-9.0,4.0,1255798 -3110563,1630218511,2,61,0,1,1630090978,1,3.0,-9.0,-9.0,-9.0,4.0,1255799 -3110564,1630218510,2,48,1,2,1630090978,2,3.0,15.0,6.0,-9.0,4.0,1255799 -3110565,1630218473,2,64,0,1,1630090979,2,6.0,-9.0,-9.0,-9.0,4.0,1255800 -3110566,1630218474,2,69,13,2,1630090979,1,6.0,-9.0,-9.0,-9.0,4.0,1255800 -3110567,1630219826,2,51,0,1,1630090980,1,6.0,16.0,5.0,-9.0,4.0,1255801 -3110568,1630219827,2,8,2,2,1630090980,2,-9.0,-9.0,-9.0,5.0,-9.0,1255801 -3110569,1630219747,2,52,0,1,1630090981,1,6.0,-9.0,-9.0,-9.0,4.0,1255802 -3110570,1630219749,2,4,2,2,1630090981,2,-9.0,-9.0,-9.0,1.0,-9.0,1255802 -3110571,1630218997,2,55,0,1,1630090982,1,6.0,-9.0,-9.0,-9.0,3.0,1255803 -3110572,1630218996,2,55,1,2,1630090982,2,6.0,30.0,3.0,-9.0,4.0,1255803 -3110573,1630217669,2,56,0,1,1630090983,1,6.0,-9.0,-9.0,-9.0,4.0,1255804 -3110574,1630217668,2,68,1,2,1630090983,2,6.0,-9.0,-9.0,-9.0,4.0,1255804 -3110575,1630219092,2,56,0,1,1630090984,2,6.0,-9.0,-9.0,-9.0,4.0,1255805 -3110576,1630219093,2,21,2,2,1630090984,2,6.0,-9.0,-9.0,15.0,4.0,1255805 -3110577,1630218322,1,57,0,1,1630090985,1,3.0,20.0,6.0,-9.0,4.0,1255806 -3110578,1630218323,1,75,10,2,1630090985,1,6.0,-9.0,-9.0,-9.0,2.0,1255806 -3110579,1630219709,2,54,0,1,1630090986,1,3.0,-9.0,-9.0,-9.0,2.0,1255807 -3110580,1630219710,2,15,2,2,1630090986,2,-9.0,-9.0,-9.0,12.0,-9.0,1255807 -3110581,1630219722,2,61,0,1,1630090987,1,1.0,30.0,1.0,-9.0,4.0,1255808 -3110582,1630219723,2,61,0,1,1630090988,1,1.0,30.0,1.0,-9.0,4.0,1255809 -3110583,1630219613,2,63,0,1,1630090989,1,1.0,25.0,1.0,-9.0,4.0,1255810 -3110584,1630219473,2,61,0,1,1630090990,2,1.0,35.0,1.0,-9.0,4.0,1255811 -3110585,1630219634,2,60,0,1,1630090991,1,1.0,40.0,1.0,-9.0,2.0,1255812 -3110586,1630219680,2,54,0,1,1630090992,1,1.0,25.0,1.0,-9.0,4.0,1255813 -3110587,1630219635,2,60,0,1,1630090993,1,1.0,40.0,1.0,-9.0,2.0,1255814 -3110588,1630219689,2,56,0,1,1630090994,1,1.0,32.0,1.0,-9.0,2.0,1255815 -3110589,1630219690,2,56,0,1,1630090995,1,1.0,32.0,1.0,-9.0,2.0,1255816 -3110590,1630219691,2,56,0,1,1630090996,1,1.0,32.0,1.0,-9.0,2.0,1255817 -3110591,1630219636,2,60,0,1,1630090997,1,1.0,40.0,1.0,-9.0,2.0,1255818 -3110592,1630219682,2,55,0,1,1630090998,1,1.0,40.0,2.0,-9.0,4.0,1255819 -3110593,1630219755,2,61,0,1,1630090999,1,1.0,3.0,6.0,-9.0,4.0,1255820 -3110594,1630219714,2,47,0,1,1630091000,1,1.0,32.0,1.0,-9.0,4.0,1255821 -3110595,1630219557,2,47,0,1,1630091001,2,1.0,40.0,1.0,-9.0,4.0,1255822 -3110596,1630219637,2,60,0,1,1630091002,1,1.0,40.0,1.0,-9.0,2.0,1255823 -3110597,1630218300,1,55,0,1,1630091003,1,1.0,50.0,1.0,-9.0,4.0,1255824 -3110598,1630219506,2,55,0,1,1630091004,2,2.0,40.0,4.0,-9.0,4.0,1255825 -3110599,1630219807,2,52,0,1,1630091005,1,1.0,32.0,6.0,-9.0,4.0,1255826 -3110600,1630219031,2,58,0,1,1630091006,2,1.0,40.0,1.0,-9.0,4.0,1255827 -3110601,1630219638,2,54,0,1,1630091007,1,1.0,35.0,4.0,-9.0,2.0,1255828 -3110602,1630219732,2,54,0,1,1630091008,1,1.0,40.0,1.0,-9.0,4.0,1255829 -3110603,1630219540,2,48,0,1,1630091009,2,1.0,37.0,1.0,16.0,4.0,1255830 -3110604,1630219780,2,47,0,1,1630091010,1,1.0,37.0,4.0,-9.0,4.0,1255831 -3110605,1630218974,2,55,0,1,1630091011,2,1.0,38.0,1.0,-9.0,4.0,1255832 -3110606,1630218154,1,56,0,1,1630091012,1,1.0,40.0,1.0,-9.0,2.0,1255833 -3110607,1630218329,1,48,0,1,1630091013,1,2.0,40.0,3.0,-9.0,4.0,1255834 -3110608,1630217807,1,53,0,1,1630091014,2,1.0,50.0,1.0,-9.0,4.0,1255835 -3110609,1630218330,1,48,0,1,1630091015,1,2.0,40.0,3.0,-9.0,4.0,1255836 -3110610,1630219721,2,62,0,1,1630091016,1,1.0,45.0,1.0,-9.0,4.0,1255837 -3110611,1630218461,2,55,0,1,1630091017,1,1.0,20.0,5.0,-9.0,4.0,1255838 -3110612,1630218463,2,19,2,2,1630091017,1,3.0,-9.0,-9.0,-9.0,4.0,1255838 -3110613,1630218459,2,51,10,3,1630091017,2,6.0,-9.0,-9.0,-9.0,4.0,1255838 -3110614,1630219284,2,58,0,1,1630091018,2,6.0,-9.0,-9.0,-9.0,3.0,1255839 -3110615,1630219285,2,21,2,2,1630091018,2,1.0,30.0,3.0,15.0,4.0,1255839 -3110616,1630219286,2,24,15,3,1630091018,1,6.0,20.0,6.0,-9.0,4.0,1255839 -3110617,1630218462,2,55,0,1,1630091019,1,1.0,20.0,5.0,-9.0,4.0,1255840 -3110618,1630218464,2,19,2,2,1630091019,1,3.0,-9.0,-9.0,-9.0,4.0,1255840 -3110619,1630218460,2,51,10,3,1630091019,2,6.0,-9.0,-9.0,-9.0,4.0,1255840 -3110620,1630218918,2,49,0,1,1630091020,2,1.0,40.0,2.0,-9.0,4.0,1255841 -3110621,1630218919,2,14,2,2,1630091020,1,-9.0,-9.0,-9.0,10.0,-9.0,1255841 -3110622,1630218920,2,9,2,3,1630091020,1,-9.0,-9.0,-9.0,5.0,-9.0,1255841 -3110623,1630217663,2,46,0,1,1630091021,2,1.0,30.0,4.0,-9.0,4.0,1255842 -3110624,1630217659,2,78,6,2,1630091021,2,6.0,-9.0,-9.0,-9.0,4.0,1255842 -3110625,1630217661,2,87,10,3,1630091021,2,6.0,-9.0,-9.0,-9.0,4.0,1255842 -3110626,1630218744,2,47,0,1,1630091022,2,6.0,-9.0,-9.0,-9.0,2.0,1255843 -3110627,1630218746,2,15,2,2,1630091022,2,-9.0,-9.0,-9.0,11.0,-9.0,1255843 -3110628,1630218745,2,49,12,3,1630091022,1,1.0,40.0,1.0,-9.0,4.0,1255843 -3110629,1630219032,2,52,0,1,1630091023,2,6.0,-9.0,-9.0,-9.0,4.0,1255844 -3110630,1630219033,2,22,2,2,1630091023,1,1.0,21.0,1.0,-9.0,4.0,1255844 -3110631,1630218770,2,46,0,1,1630091024,2,1.0,38.0,1.0,-9.0,4.0,1255845 -3110632,1630218771,2,21,2,2,1630091024,1,6.0,-9.0,-9.0,-9.0,4.0,1255845 -3110633,1630217998,1,62,0,1,1630091025,1,1.0,20.0,6.0,-9.0,2.0,1255846 -3110634,1630217997,1,51,13,2,1630091025,2,6.0,-9.0,-9.0,-9.0,4.0,1255846 -3110635,1630218561,2,55,0,1,1630091026,2,1.0,35.0,1.0,-9.0,4.0,1255847 -3110636,1630218563,2,23,2,2,1630091026,1,3.0,-9.0,-9.0,15.0,4.0,1255847 -3110637,1630218503,2,50,0,1,1630091027,2,1.0,40.0,1.0,-9.0,4.0,1255848 -3110638,1630218504,2,24,2,2,1630091027,2,3.0,-9.0,-9.0,-9.0,4.0,1255848 -3110639,1630218562,2,55,0,1,1630091028,2,1.0,35.0,1.0,-9.0,4.0,1255849 -3110640,1630218564,2,23,2,2,1630091028,1,3.0,-9.0,-9.0,15.0,4.0,1255849 -3110641,1630219451,2,58,0,1,1630091029,2,1.0,30.0,1.0,15.0,4.0,1255850 -3110642,1630219452,2,34,2,2,1630091029,2,3.0,22.0,3.0,15.0,4.0,1255850 -3110643,1630218484,2,53,0,1,1630091030,2,1.0,98.0,1.0,-9.0,4.0,1255851 -3110644,1630218485,2,58,1,2,1630091030,1,6.0,-9.0,-9.0,-9.0,4.0,1255851 -3110645,1630217667,2,67,0,1,1630091031,2,6.0,-9.0,-9.0,-9.0,4.0,1255852 -3110646,1630217677,2,65,0,1,1630091032,2,6.0,-9.0,-9.0,-9.0,4.0,1255853 -3110647,1630217690,2,82,0,1,1630091033,2,6.0,-9.0,-9.0,-9.0,4.0,1255854 -3110648,1630217658,2,86,0,1,1630091034,2,6.0,-9.0,-9.0,-9.0,4.0,1255855 -3110649,1630217676,2,67,0,1,1630091035,2,6.0,-9.0,-9.0,-9.0,4.0,1255856 -3110650,1630217678,2,78,0,1,1630091036,2,6.0,-9.0,-9.0,-9.0,4.0,1255857 -3110651,1630217665,2,83,0,1,1630091037,2,6.0,-9.0,-9.0,-9.0,4.0,1255858 -3110652,1630217683,2,80,0,1,1630091038,2,6.0,-9.0,-9.0,-9.0,4.0,1255859 -3110653,1630217694,1,76,0,1,1630091039,2,6.0,-9.0,-9.0,-9.0,4.0,1255860 -3110654,1630217689,2,79,0,1,1630091040,2,6.0,-9.0,-9.0,-9.0,4.0,1255861 -3110655,1630219834,2,72,0,1,1630091041,1,6.0,-9.0,-9.0,-9.0,4.0,1255862 -3110656,1630217654,2,76,0,1,1630091042,1,6.0,-9.0,-9.0,-9.0,2.0,1255863 -3110657,1630217653,2,68,1,2,1630091042,2,6.0,-9.0,-9.0,-9.0,4.0,1255863 -3110658,1630218234,1,24,0,1,1630091043,1,3.0,47.0,3.0,15.0,4.0,1255864 -3110659,1630219908,4,23,0,1,1630091044,1,1.0,80.0,1.0,-9.0,4.0,1255865 -3110660,1630219720,2,20,0,1,1630091045,1,1.0,40.0,1.0,-9.0,4.0,1255866 -3110661,1630218142,1,24,0,1,1630091046,1,1.0,45.0,1.0,-9.0,4.0,1255867 -3110662,1630218279,1,23,0,1,1630091047,1,1.0,40.0,1.0,-9.0,4.0,1255868 -3110663,1630218280,1,23,0,1,1630091048,1,1.0,40.0,1.0,-9.0,4.0,1255869 -3110664,1630218143,1,24,0,1,1630091049,1,1.0,45.0,1.0,-9.0,4.0,1255870 -3110665,1630217776,1,24,0,1,1630091050,2,1.0,40.0,1.0,-9.0,4.0,1255871 -3110666,1630217779,1,26,1,2,1630091050,1,6.0,40.0,6.0,16.0,4.0,1255871 -3110667,1630217777,1,24,0,1,1630091051,2,1.0,40.0,1.0,-9.0,4.0,1255872 -3110668,1630217780,1,26,1,2,1630091051,1,6.0,40.0,6.0,16.0,4.0,1255872 -3110669,1630217778,1,24,0,1,1630091052,2,1.0,40.0,1.0,-9.0,4.0,1255873 -3110670,1630217781,1,26,1,2,1630091052,1,6.0,40.0,6.0,16.0,4.0,1255873 -3110671,1630219668,2,21,0,1,1630091053,1,1.0,48.0,1.0,-9.0,4.0,1255874 -3110672,1630219669,2,24,15,2,1630091053,1,6.0,-9.0,-9.0,-9.0,4.0,1255874 -3110673,1630219588,2,23,0,1,1630091054,1,6.0,40.0,1.0,15.0,4.0,1255875 -3110674,1630219589,2,62,6,2,1630091054,1,1.0,40.0,1.0,-9.0,4.0,1255875 -3110675,1630217936,1,23,0,1,1630091055,1,1.0,35.0,1.0,16.0,4.0,1255876 -3110676,1630217939,4,22,11,2,1630091055,2,1.0,35.0,1.0,-9.0,4.0,1255876 -3110677,1630217933,1,22,11,3,1630091055,2,1.0,25.0,4.0,15.0,4.0,1255876 -3110678,1630217937,1,23,0,1,1630091056,1,1.0,35.0,1.0,16.0,4.0,1255877 -3110679,1630217940,4,22,11,2,1630091056,2,1.0,35.0,1.0,-9.0,4.0,1255877 -3110680,1630217934,1,22,11,3,1630091056,2,1.0,25.0,4.0,15.0,4.0,1255877 -3110681,1630217727,1,22,0,1,1630091057,2,1.0,45.0,4.0,-9.0,4.0,1255878 -3110682,1630217729,1,24,12,2,1630091057,2,1.0,50.0,1.0,-9.0,4.0,1255878 -3110683,1630217731,1,21,12,3,1630091057,2,1.0,35.0,3.0,-9.0,4.0,1255878 -3110684,1630218231,1,24,0,1,1630091058,1,1.0,55.0,1.0,-9.0,4.0,1255879 -3110685,1630218232,1,24,0,1,1630091059,1,1.0,55.0,1.0,-9.0,4.0,1255880 -3110686,1630217931,1,23,0,1,1630091060,2,1.0,45.0,1.0,-9.0,4.0,1255881 -3110687,1630217932,1,23,12,2,1630091060,2,1.0,24.0,1.0,-9.0,4.0,1255881 -3110688,1630218669,2,23,0,1,1630091061,2,6.0,-9.0,-9.0,-9.0,4.0,1255882 -3110689,1630218675,2,4,2,2,1630091061,2,-9.0,-9.0,-9.0,1.0,-9.0,1255882 -3110690,1630218673,2,1,2,3,1630091061,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255882 -3110691,1630218671,2,51,10,4,1630091061,2,6.0,-9.0,-9.0,-9.0,4.0,1255882 -3110692,1630218677,2,2,10,5,1630091061,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255882 -3110693,1630219077,2,20,0,1,1630091062,2,3.0,40.0,3.0,-9.0,4.0,1255883 -3110694,1630219078,2,33,13,2,1630091062,2,6.0,-9.0,-9.0,-9.0,4.0,1255883 -3110695,1630219080,2,12,15,3,1630091062,2,-9.0,-9.0,-9.0,8.0,-9.0,1255883 -3110696,1630219079,2,12,15,4,1630091062,1,-9.0,-9.0,-9.0,8.0,-9.0,1255883 -3110697,1630219081,2,0,15,5,1630091062,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255883 -3110698,1630219410,2,24,0,1,1630091063,2,6.0,-9.0,-9.0,-9.0,4.0,1255884 -3110699,1630219414,2,7,2,2,1630091063,2,-9.0,-9.0,-9.0,2.0,-9.0,1255884 -3110700,1630219416,2,5,2,3,1630091063,2,-9.0,-9.0,-9.0,1.0,-9.0,1255884 -3110701,1630219418,2,0,2,4,1630091063,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255884 -3110702,1630219412,2,25,5,5,1630091063,2,6.0,-9.0,-9.0,-9.0,4.0,1255884 -3110703,1630219321,2,24,0,1,1630091064,2,6.0,30.0,5.0,-9.0,4.0,1255885 -3110704,1630219327,2,5,2,2,1630091064,2,-9.0,-9.0,-9.0,2.0,-9.0,1255885 -3110705,1630219323,2,3,2,3,1630091064,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255885 -3110706,1630219325,2,1,2,4,1630091064,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255885 -3110707,1630219482,2,23,0,1,1630091065,2,6.0,15.0,4.0,15.0,4.0,1255886 -3110708,1630219711,2,19,0,1,1630091066,1,3.0,-9.0,-9.0,-9.0,4.0,1255887 -3110709,1630218546,2,22,0,1,1630091067,2,6.0,40.0,1.0,-9.0,4.0,1255888 -3110710,1630218547,2,22,0,1,1630091068,2,6.0,40.0,1.0,-9.0,4.0,1255889 -3110711,1630218548,2,22,0,1,1630091069,2,6.0,40.0,1.0,-9.0,4.0,1255890 -3110712,1630219712,2,19,0,1,1630091070,1,3.0,-9.0,-9.0,-9.0,4.0,1255891 -3110713,1630218132,1,24,0,1,1630091071,2,6.0,-9.0,-9.0,16.0,4.0,1255892 -3110714,1630218410,1,22,0,1,1630091072,1,6.0,28.0,4.0,16.0,4.0,1255893 -3110715,1630218133,1,24,0,1,1630091073,2,6.0,-9.0,-9.0,16.0,4.0,1255894 -3110716,1630218411,1,22,0,1,1630091074,1,6.0,28.0,4.0,16.0,4.0,1255895 -3110717,1630218247,1,24,0,1,1630091075,1,3.0,20.0,5.0,-9.0,4.0,1255896 -3110718,1630218412,1,22,0,1,1630091076,1,6.0,28.0,4.0,16.0,4.0,1255897 -3110719,1630218248,1,24,0,1,1630091077,1,3.0,20.0,5.0,-9.0,4.0,1255898 -3110720,1630218134,1,24,0,1,1630091078,2,6.0,-9.0,-9.0,16.0,4.0,1255899 -3110721,1630218413,1,22,0,1,1630091079,1,6.0,28.0,4.0,16.0,4.0,1255900 -3110722,1630219555,2,23,0,1,1630091080,2,6.0,-9.0,-9.0,-9.0,4.0,1255901 -3110723,1630219556,2,23,0,1,1630091081,2,6.0,-9.0,-9.0,-9.0,4.0,1255902 -3110724,1630217986,1,24,0,1,1630091082,2,6.0,-9.0,-9.0,16.0,4.0,1255903 -3110725,1630218339,1,20,0,1,1630091083,1,6.0,35.0,5.0,15.0,4.0,1255904 -3110726,1630218285,1,24,0,1,1630091084,1,3.0,50.0,5.0,-9.0,4.0,1255905 -3110727,1630218245,1,24,0,1,1630091085,1,6.0,24.0,3.0,16.0,4.0,1255906 -3110728,1630218071,1,24,0,1,1630091086,2,6.0,-9.0,-9.0,16.0,4.0,1255907 -3110729,1630218340,1,20,0,1,1630091087,1,6.0,35.0,5.0,15.0,4.0,1255908 -3110730,1630218072,1,24,0,1,1630091088,2,6.0,-9.0,-9.0,16.0,4.0,1255909 -3110731,1630217974,1,24,0,1,1630091089,2,6.0,40.0,6.0,16.0,4.0,1255910 -3110732,1630218073,1,24,0,1,1630091090,2,6.0,-9.0,-9.0,16.0,4.0,1255911 -3110733,1630218074,1,24,0,1,1630091091,2,6.0,-9.0,-9.0,16.0,4.0,1255912 -3110734,1630218149,1,24,0,1,1630091092,1,6.0,-9.0,-9.0,15.0,4.0,1255913 -3110735,1630218075,1,24,0,1,1630091093,2,6.0,-9.0,-9.0,16.0,4.0,1255914 -3110736,1630218246,1,24,0,1,1630091094,1,6.0,24.0,3.0,16.0,4.0,1255915 -3110737,1630218286,1,24,0,1,1630091095,1,3.0,50.0,5.0,-9.0,4.0,1255916 -3110738,1630218150,1,24,0,1,1630091096,1,6.0,-9.0,-9.0,15.0,4.0,1255917 -3110739,1630217987,1,24,0,1,1630091097,2,6.0,-9.0,-9.0,16.0,4.0,1255918 -3110740,1630218076,1,24,0,1,1630091098,2,6.0,-9.0,-9.0,16.0,4.0,1255919 -3110741,1630218287,1,24,0,1,1630091099,1,3.0,50.0,5.0,-9.0,4.0,1255920 -3110742,1630219034,2,22,0,1,1630091100,2,3.0,-9.0,-9.0,-9.0,4.0,1255921 -3110743,1630219037,2,2,2,2,1630091100,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255921 -3110744,1630219040,2,13,5,3,1630091100,1,-9.0,-9.0,-9.0,9.0,-9.0,1255921 -3110745,1630218811,2,20,0,1,1630091101,2,6.0,-9.0,-9.0,-9.0,4.0,1255922 -3110746,1630218815,2,1,2,2,1630091101,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255922 -3110747,1630218813,2,25,12,3,1630091101,1,3.0,-9.0,-9.0,-9.0,4.0,1255922 -3110748,1630218812,2,20,0,1,1630091102,2,6.0,-9.0,-9.0,-9.0,4.0,1255923 -3110749,1630218816,2,1,2,2,1630091102,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255923 -3110750,1630218814,2,25,12,3,1630091102,1,3.0,-9.0,-9.0,-9.0,4.0,1255923 -3110751,1630219035,2,22,0,1,1630091103,2,3.0,-9.0,-9.0,-9.0,4.0,1255924 -3110752,1630219038,2,2,2,2,1630091103,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255924 -3110753,1630219041,2,13,5,3,1630091103,1,-9.0,-9.0,-9.0,9.0,-9.0,1255924 -3110754,1630219854,4,23,0,1,1630091104,2,6.0,-9.0,-9.0,16.0,4.0,1255925 -3110755,1630219856,4,24,15,2,1630091104,2,6.0,-9.0,-9.0,16.0,4.0,1255925 -3110756,1630219852,4,24,15,3,1630091104,2,6.0,-9.0,-9.0,16.0,4.0,1255925 -3110757,1630219855,4,23,0,1,1630091105,2,6.0,-9.0,-9.0,16.0,4.0,1255926 -3110758,1630219857,4,24,15,2,1630091105,2,6.0,-9.0,-9.0,16.0,4.0,1255926 -3110759,1630219853,4,24,15,3,1630091105,2,6.0,-9.0,-9.0,16.0,4.0,1255926 -3110760,1630218040,1,21,0,1,1630091106,2,6.0,10.0,5.0,16.0,4.0,1255927 -3110761,1630218044,1,20,12,2,1630091106,2,6.0,20.0,4.0,15.0,4.0,1255927 -3110762,1630218041,1,21,0,1,1630091107,2,6.0,10.0,5.0,16.0,4.0,1255928 -3110763,1630218045,1,20,12,2,1630091107,2,6.0,20.0,4.0,15.0,4.0,1255928 -3110764,1630218042,1,21,0,1,1630091108,2,6.0,10.0,5.0,16.0,4.0,1255929 -3110765,1630218046,1,20,12,2,1630091108,2,6.0,20.0,4.0,15.0,4.0,1255929 -3110766,1630218486,2,24,0,1,1630091109,2,3.0,32.0,5.0,-9.0,4.0,1255930 -3110767,1630218487,2,8,2,2,1630091109,1,-9.0,-9.0,-9.0,4.0,-9.0,1255930 -3110768,1630218787,2,23,0,1,1630091110,2,3.0,20.0,6.0,15.0,4.0,1255931 -3110769,1630218791,2,2,2,2,1630091110,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255931 -3110770,1630218788,2,23,0,1,1630091111,2,3.0,20.0,6.0,15.0,4.0,1255932 -3110771,1630218792,2,2,2,2,1630091111,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255932 -3110772,1630218789,2,23,0,1,1630091112,2,3.0,20.0,6.0,15.0,4.0,1255933 -3110773,1630218793,2,2,2,2,1630091112,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255933 -3110774,1630219024,2,20,0,1,1630091113,2,6.0,-9.0,-9.0,-9.0,4.0,1255934 -3110775,1630219025,2,2,2,2,1630091113,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255934 -3110776,1630218901,2,20,0,1,1630091114,2,3.0,-9.0,-9.0,-9.0,4.0,1255935 -3110777,1630218902,2,1,2,2,1630091114,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255935 -3110778,1630218376,1,22,0,1,1630091115,1,6.0,-9.0,-9.0,15.0,4.0,1255936 -3110779,1630218379,1,24,11,2,1630091115,1,3.0,-9.0,-9.0,15.0,4.0,1255936 -3110780,1630218377,1,22,0,1,1630091116,1,6.0,-9.0,-9.0,15.0,4.0,1255937 -3110781,1630218380,1,24,11,2,1630091116,1,3.0,-9.0,-9.0,15.0,4.0,1255937 -3110782,1630218549,2,19,0,1,1630091117,2,3.0,22.0,1.0,-9.0,4.0,1255938 -3110783,1630218550,2,1,2,2,1630091117,1,-9.0,-9.0,-9.0,-9.0,-9.0,1255938 -3110784,1630218080,1,22,0,1,1630091118,2,6.0,-9.0,-9.0,16.0,4.0,1255939 -3110785,1630218086,1,22,11,2,1630091118,2,6.0,-9.0,-9.0,16.0,4.0,1255939 -3110786,1630218081,1,22,0,1,1630091119,2,6.0,-9.0,-9.0,16.0,4.0,1255940 -3110787,1630218087,1,22,11,2,1630091119,2,6.0,-9.0,-9.0,16.0,4.0,1255940 -3110788,1630218082,1,22,0,1,1630091120,2,6.0,-9.0,-9.0,16.0,4.0,1255941 -3110789,1630218088,1,22,11,2,1630091120,2,6.0,-9.0,-9.0,16.0,4.0,1255941 -3110790,1630218083,1,22,0,1,1630091121,2,6.0,-9.0,-9.0,16.0,4.0,1255942 -3110791,1630218089,1,22,11,2,1630091121,2,6.0,-9.0,-9.0,16.0,4.0,1255942 -3110792,1630218084,1,22,0,1,1630091122,2,6.0,-9.0,-9.0,16.0,4.0,1255943 -3110793,1630218090,1,22,11,2,1630091122,2,6.0,-9.0,-9.0,16.0,4.0,1255943 -3110794,1630218634,2,24,0,1,1630091123,2,1.0,87.0,1.0,-9.0,4.0,1255944 -3110795,1630218636,2,7,2,2,1630091123,1,-9.0,-9.0,-9.0,4.0,-9.0,1255944 -3110796,1630218640,2,4,2,3,1630091123,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255944 -3110797,1630218642,2,0,2,4,1630091123,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255944 -3110798,1630218638,2,26,12,5,1630091123,1,6.0,15.0,5.0,-9.0,4.0,1255944 -3110799,1630218635,2,24,0,1,1630091124,2,1.0,87.0,1.0,-9.0,4.0,1255945 -3110800,1630218637,2,7,2,2,1630091124,1,-9.0,-9.0,-9.0,4.0,-9.0,1255945 -3110801,1630218641,2,4,2,3,1630091124,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255945 -3110802,1630218643,2,0,2,4,1630091124,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255945 -3110803,1630218639,2,26,12,5,1630091124,1,6.0,15.0,5.0,-9.0,4.0,1255945 -3110804,1630218390,1,24,0,1,1630091125,1,6.0,12.0,5.0,16.0,4.0,1255946 -3110805,1630218392,1,29,12,2,1630091125,1,6.0,-9.0,-9.0,16.0,4.0,1255946 -3110806,1630218394,1,25,12,3,1630091125,1,1.0,36.0,1.0,16.0,4.0,1255946 -3110807,1630218396,1,22,12,4,1630091125,1,6.0,20.0,6.0,15.0,4.0,1255946 -3110808,1630218391,1,24,0,1,1630091126,1,6.0,12.0,5.0,16.0,4.0,1255947 -3110809,1630218393,1,29,12,2,1630091126,1,6.0,-9.0,-9.0,16.0,4.0,1255947 -3110810,1630218395,1,25,12,3,1630091126,1,1.0,36.0,1.0,16.0,4.0,1255947 -3110811,1630218397,1,22,12,4,1630091126,1,6.0,20.0,6.0,15.0,4.0,1255947 -3110812,1630219798,2,19,0,1,1630091127,1,1.0,50.0,1.0,-9.0,4.0,1255948 -3110813,1630219799,2,19,0,1,1630091128,1,1.0,50.0,1.0,-9.0,4.0,1255949 -3110814,1630219800,2,19,0,1,1630091129,1,1.0,50.0,1.0,-9.0,4.0,1255950 -3110815,1630219341,2,24,0,1,1630091130,2,1.0,35.0,1.0,-9.0,4.0,1255951 -3110816,1630219817,2,22,0,1,1630091131,1,1.0,20.0,6.0,-9.0,4.0,1255952 -3110817,1630219342,2,24,0,1,1630091132,2,1.0,35.0,1.0,-9.0,4.0,1255953 -3110818,1630219818,2,22,0,1,1630091133,1,1.0,20.0,6.0,-9.0,4.0,1255954 -3110819,1630219819,2,22,0,1,1630091134,1,1.0,20.0,6.0,-9.0,4.0,1255955 -3110820,1630219343,2,24,0,1,1630091135,2,1.0,35.0,1.0,-9.0,4.0,1255956 -3110821,1630218201,1,20,0,1,1630091136,1,1.0,40.0,5.0,15.0,4.0,1255957 -3110822,1630218202,1,20,0,1,1630091137,1,1.0,40.0,5.0,15.0,4.0,1255958 -3110823,1630218203,1,20,0,1,1630091138,1,1.0,40.0,5.0,15.0,4.0,1255959 -3110824,1630218363,1,22,0,1,1630091139,1,1.0,15.0,1.0,15.0,4.0,1255960 -3110825,1630218364,1,22,0,1,1630091140,1,1.0,15.0,1.0,15.0,4.0,1255961 -3110826,1630218365,1,22,0,1,1630091141,1,1.0,15.0,1.0,15.0,4.0,1255962 -3110827,1630218204,1,20,0,1,1630091142,1,1.0,40.0,5.0,15.0,4.0,1255963 -3110828,1630218205,1,20,0,1,1630091143,1,1.0,40.0,5.0,15.0,4.0,1255964 -3110829,1630219893,4,22,0,1,1630091144,2,1.0,25.0,1.0,15.0,4.0,1255965 -3110830,1630219130,2,20,0,1,1630091145,2,1.0,40.0,1.0,-9.0,4.0,1255966 -3110831,1630219157,2,22,0,1,1630091146,2,1.0,40.0,1.0,-9.0,4.0,1255967 -3110832,1630219650,2,24,0,1,1630091147,1,1.0,40.0,1.0,-9.0,4.0,1255968 -3110833,1630219131,2,20,0,1,1630091148,2,1.0,40.0,1.0,-9.0,4.0,1255969 -3110834,1630219839,4,22,0,1,1630091149,1,2.0,20.0,4.0,16.0,4.0,1255970 -3110835,1630218301,1,23,0,1,1630091150,1,1.0,40.0,3.0,15.0,4.0,1255971 -3110836,1630218162,1,22,0,1,1630091151,1,1.0,40.0,3.0,-9.0,4.0,1255972 -3110837,1630218273,1,24,0,1,1630091152,1,2.0,10.0,1.0,15.0,4.0,1255973 -3110838,1630218163,1,22,0,1,1630091153,1,1.0,40.0,3.0,-9.0,4.0,1255974 -3110839,1630217991,1,24,0,1,1630091154,2,1.0,24.0,1.0,-9.0,4.0,1255975 -3110840,1630218035,1,21,0,1,1630091155,2,1.0,25.0,1.0,-9.0,4.0,1255976 -3110841,1630218164,1,22,0,1,1630091156,1,1.0,40.0,3.0,-9.0,4.0,1255977 -3110842,1630218302,1,23,0,1,1630091157,1,1.0,40.0,3.0,15.0,4.0,1255978 -3110843,1630218036,1,21,0,1,1630091158,2,1.0,25.0,1.0,-9.0,4.0,1255979 -3110844,1630217992,1,24,0,1,1630091159,2,1.0,24.0,1.0,-9.0,4.0,1255980 -3110845,1630218037,1,21,0,1,1630091160,2,1.0,25.0,1.0,-9.0,4.0,1255981 -3110846,1630218165,1,22,0,1,1630091161,1,1.0,40.0,3.0,-9.0,4.0,1255982 -3110847,1630218303,1,23,0,1,1630091162,1,1.0,40.0,3.0,15.0,4.0,1255983 -3110848,1630218304,1,23,0,1,1630091163,1,1.0,40.0,3.0,15.0,4.0,1255984 -3110849,1630218166,1,22,0,1,1630091164,1,1.0,40.0,3.0,-9.0,4.0,1255985 -3110850,1630219828,2,23,0,1,1630091165,1,1.0,40.0,1.0,-9.0,4.0,1255986 -3110851,1630219516,2,23,0,1,1630091166,2,1.0,40.0,1.0,15.0,4.0,1255987 -3110852,1630218820,2,20,0,1,1630091167,2,3.0,48.0,6.0,15.0,4.0,1255988 -3110853,1630218826,2,0,2,2,1630091167,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255988 -3110854,1630218823,2,24,15,3,1630091167,1,1.0,30.0,1.0,-9.0,4.0,1255988 -3110855,1630218821,2,20,0,1,1630091168,2,3.0,48.0,6.0,15.0,4.0,1255989 -3110856,1630218827,2,0,2,2,1630091168,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255989 -3110857,1630218824,2,24,15,3,1630091168,1,1.0,30.0,1.0,-9.0,4.0,1255989 -3110858,1630218822,2,20,0,1,1630091169,2,3.0,48.0,6.0,15.0,4.0,1255990 -3110859,1630218828,2,0,2,2,1630091169,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255990 -3110860,1630218825,2,24,15,3,1630091169,1,1.0,30.0,1.0,-9.0,4.0,1255990 -3110861,1630218619,2,24,0,1,1630091170,2,3.0,-9.0,-9.0,15.0,4.0,1255991 -3110862,1630218625,2,24,1,2,1630091170,1,6.0,-9.0,-9.0,15.0,4.0,1255991 -3110863,1630218622,2,59,6,3,1630091170,2,1.0,25.0,1.0,-9.0,4.0,1255991 -3110864,1630218620,2,24,0,1,1630091171,2,3.0,-9.0,-9.0,15.0,4.0,1255992 -3110865,1630218626,2,24,1,2,1630091171,1,6.0,-9.0,-9.0,15.0,4.0,1255992 -3110866,1630218623,2,59,6,3,1630091171,2,1.0,25.0,1.0,-9.0,4.0,1255992 -3110867,1630218210,1,19,0,1,1630091172,1,6.0,-9.0,-9.0,15.0,4.0,1255993 -3110868,1630218217,1,19,12,2,1630091172,1,1.0,30.0,1.0,15.0,4.0,1255993 -3110869,1630218224,1,19,12,3,1630091172,1,6.0,-9.0,-9.0,15.0,4.0,1255993 -3110870,1630218211,1,19,0,1,1630091173,1,6.0,-9.0,-9.0,15.0,4.0,1255994 -3110871,1630218218,1,19,12,2,1630091173,1,1.0,30.0,1.0,15.0,4.0,1255994 -3110872,1630218225,1,19,12,3,1630091173,1,6.0,-9.0,-9.0,15.0,4.0,1255994 -3110873,1630218212,1,19,0,1,1630091174,1,6.0,-9.0,-9.0,15.0,4.0,1255995 -3110874,1630218219,1,19,12,2,1630091174,1,1.0,30.0,1.0,15.0,4.0,1255995 -3110875,1630218226,1,19,12,3,1630091174,1,6.0,-9.0,-9.0,15.0,4.0,1255995 -3110876,1630218213,1,19,0,1,1630091175,1,6.0,-9.0,-9.0,15.0,4.0,1255996 -3110877,1630218220,1,19,12,2,1630091175,1,1.0,30.0,1.0,15.0,4.0,1255996 -3110878,1630218227,1,19,12,3,1630091175,1,6.0,-9.0,-9.0,15.0,4.0,1255996 -3110879,1630218214,1,19,0,1,1630091176,1,6.0,-9.0,-9.0,15.0,4.0,1255997 -3110880,1630218221,1,19,12,2,1630091176,1,1.0,30.0,1.0,15.0,4.0,1255997 -3110881,1630218228,1,19,12,3,1630091176,1,6.0,-9.0,-9.0,15.0,4.0,1255997 -3110882,1630218215,1,19,0,1,1630091177,1,6.0,-9.0,-9.0,15.0,4.0,1255998 -3110883,1630218222,1,19,12,2,1630091177,1,1.0,30.0,1.0,15.0,4.0,1255998 -3110884,1630218229,1,19,12,3,1630091177,1,6.0,-9.0,-9.0,15.0,4.0,1255998 -3110885,1630218651,2,23,0,1,1630091178,1,1.0,8.0,1.0,15.0,4.0,1255999 -3110886,1630218655,2,4,2,2,1630091178,2,-9.0,-9.0,-9.0,-9.0,-9.0,1255999 -3110887,1630218647,2,21,13,3,1630091178,2,6.0,-9.0,-9.0,-9.0,4.0,1255999 -3110888,1630218652,2,23,0,1,1630091179,1,1.0,8.0,1.0,15.0,4.0,1256000 -3110889,1630218656,2,4,2,2,1630091179,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256000 -3110890,1630218648,2,21,13,3,1630091179,2,6.0,-9.0,-9.0,-9.0,4.0,1256000 -3110891,1630218829,2,23,0,1,1630091180,2,1.0,40.0,1.0,-9.0,4.0,1256001 -3110892,1630218832,2,6,2,2,1630091180,1,-9.0,-9.0,-9.0,3.0,-9.0,1256001 -3110893,1630218835,2,3,2,3,1630091180,2,-9.0,-9.0,-9.0,1.0,-9.0,1256001 -3110894,1630218653,2,23,0,1,1630091181,1,1.0,8.0,1.0,15.0,4.0,1256002 -3110895,1630218657,2,4,2,2,1630091181,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256002 -3110896,1630218649,2,21,13,3,1630091181,2,6.0,-9.0,-9.0,-9.0,4.0,1256002 -3110897,1630218654,2,23,0,1,1630091182,1,1.0,8.0,1.0,15.0,4.0,1256003 -3110898,1630218658,2,4,2,2,1630091182,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256003 -3110899,1630218650,2,21,13,3,1630091182,2,6.0,-9.0,-9.0,-9.0,4.0,1256003 -3110900,1630219003,2,23,0,1,1630091183,2,1.0,23.0,6.0,15.0,4.0,1256004 -3110901,1630219007,2,6,2,2,1630091183,1,-9.0,-9.0,-9.0,3.0,-9.0,1256004 -3110902,1630219011,2,2,2,3,1630091183,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256004 -3110903,1630219004,2,23,0,1,1630091184,2,1.0,23.0,6.0,15.0,4.0,1256005 -3110904,1630219008,2,6,2,2,1630091184,1,-9.0,-9.0,-9.0,3.0,-9.0,1256005 -3110905,1630219012,2,2,2,3,1630091184,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256005 -3110906,1630218830,2,23,0,1,1630091185,2,1.0,40.0,1.0,-9.0,4.0,1256006 -3110907,1630218833,2,6,2,2,1630091185,1,-9.0,-9.0,-9.0,3.0,-9.0,1256006 -3110908,1630218836,2,3,2,3,1630091185,2,-9.0,-9.0,-9.0,1.0,-9.0,1256006 -3110909,1630219005,2,23,0,1,1630091186,2,1.0,23.0,6.0,15.0,4.0,1256007 -3110910,1630219009,2,6,2,2,1630091186,1,-9.0,-9.0,-9.0,3.0,-9.0,1256007 -3110911,1630219013,2,2,2,3,1630091186,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256007 -3110912,1630218831,2,23,0,1,1630091187,2,1.0,40.0,1.0,-9.0,4.0,1256008 -3110913,1630218834,2,6,2,2,1630091187,1,-9.0,-9.0,-9.0,3.0,-9.0,1256008 -3110914,1630218837,2,3,2,3,1630091187,2,-9.0,-9.0,-9.0,1.0,-9.0,1256008 -3110915,1630218715,2,24,0,1,1630091188,2,1.0,24.0,1.0,15.0,4.0,1256009 -3110916,1630218717,2,6,2,2,1630091188,2,-9.0,-9.0,-9.0,3.0,-9.0,1256009 -3110917,1630218719,2,4,2,3,1630091188,2,-9.0,-9.0,-9.0,1.0,-9.0,1256009 -3110918,1630218716,2,24,0,1,1630091189,2,1.0,24.0,1.0,15.0,4.0,1256010 -3110919,1630218718,2,6,2,2,1630091189,2,-9.0,-9.0,-9.0,3.0,-9.0,1256010 -3110920,1630218720,2,4,2,3,1630091189,2,-9.0,-9.0,-9.0,1.0,-9.0,1256010 -3110921,1630218414,1,21,0,1,1630091190,1,1.0,20.0,3.0,15.0,4.0,1256011 -3110922,1630218419,1,22,12,2,1630091190,1,6.0,-9.0,-9.0,15.0,4.0,1256011 -3110923,1630218424,1,21,12,3,1630091190,1,6.0,20.0,5.0,15.0,4.0,1256011 -3110924,1630218169,1,20,0,1,1630091191,1,1.0,5.0,3.0,15.0,4.0,1256012 -3110925,1630218177,1,23,12,2,1630091191,1,6.0,40.0,6.0,15.0,4.0,1256012 -3110926,1630218185,1,20,12,3,1630091191,1,6.0,40.0,6.0,15.0,4.0,1256012 -3110927,1630218170,1,20,0,1,1630091192,1,1.0,5.0,3.0,15.0,4.0,1256013 -3110928,1630218178,1,23,12,2,1630091192,1,6.0,40.0,6.0,15.0,4.0,1256013 -3110929,1630218186,1,20,12,3,1630091192,1,6.0,40.0,6.0,15.0,4.0,1256013 -3110930,1630218171,1,20,0,1,1630091193,1,1.0,5.0,3.0,15.0,4.0,1256014 -3110931,1630218179,1,23,12,2,1630091193,1,6.0,40.0,6.0,15.0,4.0,1256014 -3110932,1630218187,1,20,12,3,1630091193,1,6.0,40.0,6.0,15.0,4.0,1256014 -3110933,1630218172,1,20,0,1,1630091194,1,1.0,5.0,3.0,15.0,4.0,1256015 -3110934,1630218180,1,23,12,2,1630091194,1,6.0,40.0,6.0,15.0,4.0,1256015 -3110935,1630218188,1,20,12,3,1630091194,1,6.0,40.0,6.0,15.0,4.0,1256015 -3110936,1630218173,1,20,0,1,1630091195,1,1.0,5.0,3.0,15.0,4.0,1256016 -3110937,1630218181,1,23,12,2,1630091195,1,6.0,40.0,6.0,15.0,4.0,1256016 -3110938,1630218189,1,20,12,3,1630091195,1,6.0,40.0,6.0,15.0,4.0,1256016 -3110939,1630218174,1,20,0,1,1630091196,1,1.0,5.0,3.0,15.0,4.0,1256017 -3110940,1630218182,1,23,12,2,1630091196,1,6.0,40.0,6.0,15.0,4.0,1256017 -3110941,1630218190,1,20,12,3,1630091196,1,6.0,40.0,6.0,15.0,4.0,1256017 -3110942,1630218415,1,21,0,1,1630091197,1,1.0,20.0,3.0,15.0,4.0,1256018 -3110943,1630218420,1,22,12,2,1630091197,1,6.0,-9.0,-9.0,15.0,4.0,1256018 -3110944,1630218425,1,21,12,3,1630091197,1,6.0,20.0,5.0,15.0,4.0,1256018 -3110945,1630218175,1,20,0,1,1630091198,1,1.0,5.0,3.0,15.0,4.0,1256019 -3110946,1630218183,1,23,12,2,1630091198,1,6.0,40.0,6.0,15.0,4.0,1256019 -3110947,1630218191,1,20,12,3,1630091198,1,6.0,40.0,6.0,15.0,4.0,1256019 -3110948,1630218416,1,21,0,1,1630091199,1,1.0,20.0,3.0,15.0,4.0,1256020 -3110949,1630218421,1,22,12,2,1630091199,1,6.0,-9.0,-9.0,15.0,4.0,1256020 -3110950,1630218426,1,21,12,3,1630091199,1,6.0,20.0,5.0,15.0,4.0,1256020 -3110951,1630218176,1,20,0,1,1630091200,1,1.0,5.0,3.0,15.0,4.0,1256021 -3110952,1630218184,1,23,12,2,1630091200,1,6.0,40.0,6.0,15.0,4.0,1256021 -3110953,1630218192,1,20,12,3,1630091200,1,6.0,40.0,6.0,15.0,4.0,1256021 -3110954,1630218417,1,21,0,1,1630091201,1,1.0,20.0,3.0,15.0,4.0,1256022 -3110955,1630218422,1,22,12,2,1630091201,1,6.0,-9.0,-9.0,15.0,4.0,1256022 -3110956,1630218427,1,21,12,3,1630091201,1,6.0,20.0,5.0,15.0,4.0,1256022 -3110957,1630218418,1,21,0,1,1630091202,1,1.0,20.0,3.0,15.0,4.0,1256023 -3110958,1630218423,1,22,12,2,1630091202,1,6.0,-9.0,-9.0,15.0,4.0,1256023 -3110959,1630218428,1,21,12,3,1630091202,1,6.0,20.0,5.0,15.0,4.0,1256023 -3110960,1630218740,2,24,0,1,1630091203,1,1.0,42.0,1.0,-9.0,4.0,1256024 -3110961,1630218738,2,24,1,2,1630091203,2,6.0,-9.0,-9.0,-9.0,4.0,1256024 -3110962,1630218741,2,24,0,1,1630091204,1,1.0,42.0,1.0,-9.0,4.0,1256025 -3110963,1630218739,2,24,1,2,1630091204,2,6.0,-9.0,-9.0,-9.0,4.0,1256025 -3110964,1630218101,1,20,0,1,1630091205,2,6.0,15.0,6.0,15.0,4.0,1256026 -3110965,1630218106,1,19,12,2,1630091205,2,1.0,30.0,1.0,15.0,4.0,1256026 -3110966,1630218102,1,20,0,1,1630091206,2,6.0,15.0,6.0,15.0,4.0,1256027 -3110967,1630218107,1,19,12,2,1630091206,2,1.0,30.0,1.0,15.0,4.0,1256027 -3110968,1630218103,1,20,0,1,1630091207,2,6.0,15.0,6.0,15.0,4.0,1256028 -3110969,1630218108,1,19,12,2,1630091207,2,1.0,30.0,1.0,15.0,4.0,1256028 -3110970,1630218104,1,20,0,1,1630091208,2,6.0,15.0,6.0,15.0,4.0,1256029 -3110971,1630218109,1,19,12,2,1630091208,2,1.0,30.0,1.0,15.0,4.0,1256029 -3110972,1630219507,2,22,0,1,1630091209,2,1.0,20.0,1.0,15.0,4.0,1256030 -3110973,1630219511,2,3,2,2,1630091209,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256030 -3110974,1630219508,2,22,0,1,1630091210,2,1.0,20.0,1.0,15.0,4.0,1256031 -3110975,1630219512,2,3,2,2,1630091210,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256031 -3110976,1630219509,2,22,0,1,1630091211,2,1.0,20.0,1.0,15.0,4.0,1256032 -3110977,1630219513,2,3,2,2,1630091211,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256032 -3110978,1630218296,2,24,0,1,1630091212,1,1.0,20.0,1.0,15.0,4.0,1256033 -3110979,1630218294,1,19,12,2,1630091212,1,3.0,56.0,6.0,15.0,4.0,1256033 -3110980,1630219558,2,16,0,1,1630091213,1,6.0,-9.0,-9.0,14.0,-9.0,1256034 -3110981,1630219560,2,38,15,2,1630091213,1,1.0,40.0,1.0,-9.0,4.0,1256034 -3110982,1630217707,1,19,0,1,1630091214,2,1.0,55.0,4.0,-9.0,4.0,1256035 -3110983,1630217710,1,0,2,2,1630091214,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256035 -3110984,1630217708,1,19,0,1,1630091215,2,1.0,55.0,4.0,-9.0,4.0,1256036 -3110985,1630217711,1,0,2,2,1630091215,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256036 -3110986,1630217709,1,19,0,1,1630091216,2,1.0,55.0,4.0,-9.0,4.0,1256037 -3110987,1630217712,1,0,2,2,1630091216,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256037 -3110988,1630219381,2,24,0,1,1630091217,1,1.0,20.0,1.0,16.0,4.0,1256038 -3110989,1630219379,2,24,13,2,1630091217,2,6.0,-9.0,-9.0,16.0,4.0,1256038 -3110990,1630217817,1,24,0,1,1630091218,1,1.0,35.0,1.0,-9.0,4.0,1256039 -3110991,1630217815,1,23,13,2,1630091218,2,6.0,20.0,4.0,16.0,4.0,1256039 -3110992,1630217871,1,20,0,1,1630091219,2,1.0,30.0,3.0,15.0,4.0,1256040 -3110993,1630217877,1,21,12,2,1630091219,2,6.0,30.0,4.0,15.0,4.0,1256040 -3110994,1630217872,1,20,0,1,1630091220,2,1.0,30.0,3.0,15.0,4.0,1256041 -3110995,1630217878,1,21,12,2,1630091220,2,6.0,30.0,4.0,15.0,4.0,1256041 -3110996,1630217873,1,20,0,1,1630091221,2,1.0,30.0,3.0,15.0,4.0,1256042 -3110997,1630217879,1,21,12,2,1630091221,2,6.0,30.0,4.0,15.0,4.0,1256042 -3110998,1630217874,1,20,0,1,1630091222,2,1.0,30.0,3.0,15.0,4.0,1256043 -3110999,1630217880,1,21,12,2,1630091222,2,6.0,30.0,4.0,15.0,4.0,1256043 -3111000,1630217818,1,24,0,1,1630091223,1,1.0,35.0,1.0,-9.0,4.0,1256044 -3111001,1630217816,1,23,13,2,1630091223,2,6.0,20.0,4.0,16.0,4.0,1256044 -3111002,1630217875,1,20,0,1,1630091224,2,1.0,30.0,3.0,15.0,4.0,1256045 -3111003,1630217881,1,21,12,2,1630091224,2,6.0,30.0,4.0,15.0,4.0,1256045 -3111004,1630219422,2,22,0,1,1630091225,1,1.0,40.0,1.0,-9.0,4.0,1256046 -3111005,1630219421,2,1,2,2,1630091225,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256046 -3111006,1630219420,2,22,13,3,1630091225,2,1.0,40.0,1.0,-9.0,4.0,1256046 -3111007,1630218119,1,22,0,1,1630091226,2,1.0,20.0,1.0,15.0,4.0,1256047 -3111008,1630218122,1,18,5,2,1630091226,2,1.0,40.0,6.0,15.0,4.0,1256047 -3111009,1630218125,1,23,12,3,1630091226,2,1.0,15.0,3.0,15.0,4.0,1256047 -3111010,1630218120,1,22,0,1,1630091227,2,1.0,20.0,1.0,15.0,4.0,1256048 -3111011,1630218123,1,18,5,2,1630091227,2,1.0,40.0,6.0,15.0,4.0,1256048 -3111012,1630218126,1,23,12,3,1630091227,2,1.0,15.0,3.0,15.0,4.0,1256048 -3111013,1630217695,1,22,0,1,1630091228,2,1.0,30.0,4.0,-9.0,4.0,1256049 -3111014,1630217697,1,27,13,2,1630091228,1,1.0,40.0,3.0,-9.0,4.0,1256049 -3111015,1630217696,1,22,0,1,1630091229,2,1.0,30.0,4.0,-9.0,4.0,1256050 -3111016,1630217698,1,27,13,2,1630091229,1,1.0,40.0,3.0,-9.0,4.0,1256050 -3111017,1630217799,1,24,0,1,1630091230,2,1.0,20.0,3.0,15.0,4.0,1256051 -3111018,1630217800,1,29,1,2,1630091230,1,1.0,31.0,3.0,15.0,4.0,1256051 -3111019,1630217944,1,23,0,1,1630091231,2,1.0,60.0,4.0,16.0,4.0,1256052 -3111020,1630217946,1,22,12,2,1630091231,2,1.0,40.0,1.0,-9.0,4.0,1256052 -3111021,1630217728,1,22,0,1,1630091232,2,1.0,45.0,4.0,-9.0,4.0,1256053 -3111022,1630217730,1,24,12,2,1630091232,2,1.0,50.0,1.0,-9.0,4.0,1256053 -3111023,1630217732,1,21,12,3,1630091232,2,1.0,35.0,3.0,-9.0,4.0,1256053 -3111024,1630218276,1,24,0,1,1630091233,1,1.0,40.0,1.0,-9.0,4.0,1256054 -3111025,1630218277,1,24,12,2,1630091233,1,1.0,40.0,1.0,-9.0,4.0,1256054 -3111026,1630219649,2,41,0,1,1630091234,1,3.0,-9.0,-9.0,-9.0,4.0,1256055 -3111027,1630217733,1,61,0,1,1630091235,2,3.0,-9.0,-9.0,-9.0,4.0,1256056 -3111028,1630217734,1,63,5,2,1630091235,1,6.0,-9.0,-9.0,-9.0,2.0,1256056 -3111029,1630218767,2,54,0,1,1630091236,2,6.0,-9.0,-9.0,15.0,4.0,1256057 -3111030,1630218768,2,25,2,2,1630091236,2,1.0,65.0,1.0,-9.0,4.0,1256057 -3111031,1630218769,2,19,2,3,1630091236,2,3.0,3.0,6.0,-9.0,4.0,1256057 -3111032,1630218621,2,24,0,1,1630091237,2,3.0,-9.0,-9.0,15.0,4.0,1256058 -3111033,1630218627,2,24,1,2,1630091237,1,6.0,-9.0,-9.0,15.0,4.0,1256058 -3111034,1630218624,2,59,6,3,1630091237,2,1.0,25.0,1.0,-9.0,4.0,1256058 -3111035,1630219074,2,57,0,1,1630091238,2,6.0,-9.0,-9.0,-9.0,4.0,1256059 -3111036,1630219075,2,38,2,2,1630091238,1,6.0,-9.0,-9.0,-9.0,4.0,1256059 -3111037,1630219076,2,20,2,3,1630091238,1,6.0,-9.0,-9.0,-9.0,4.0,1256059 -3111038,1630219683,2,43,0,1,1630091239,1,1.0,30.0,1.0,-9.0,2.0,1256060 -3111039,1630219684,2,36,11,2,1630091239,1,1.0,40.0,1.0,15.0,4.0,1256060 -3111040,1630218795,2,42,0,1,1630091240,2,1.0,52.0,1.0,-9.0,2.0,1256061 -3111041,1630218796,2,46,13,2,1630091240,2,1.0,30.0,4.0,-9.0,4.0,1256061 -3111042,1630218797,2,22,0,1,1630091241,2,1.0,37.0,2.0,-9.0,4.0,1256062 -3111043,1630218798,2,2,2,2,1630091241,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256062 -3111044,1630218790,2,23,0,1,1630091242,2,3.0,20.0,6.0,15.0,4.0,1256063 -3111045,1630218794,2,2,2,2,1630091242,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256063 -3111046,1630218944,2,55,0,1,1630091243,2,6.0,-9.0,-9.0,-9.0,4.0,1256064 -3111047,1630218946,2,66,1,2,1630091243,1,1.0,40.0,1.0,-9.0,4.0,1256064 -3111048,1630219730,2,60,0,1,1630091244,1,1.0,40.0,1.0,-9.0,4.0,1256065 -3111049,1630218841,2,29,0,1,1630091245,2,3.0,40.0,4.0,-9.0,4.0,1256066 -3111050,1630218844,2,8,2,2,1630091245,2,-9.0,-9.0,-9.0,4.0,-9.0,1256066 -3111051,1630218842,2,6,2,3,1630091245,1,-9.0,-9.0,-9.0,3.0,-9.0,1256066 -3111052,1630218843,2,4,2,4,1630091245,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256066 -3111053,1630219371,2,44,0,1,1630091246,2,1.0,40.0,1.0,-9.0,4.0,1256067 -3111054,1630217969,1,42,0,1,1630091247,1,1.0,30.0,1.0,-9.0,4.0,1256068 -3111055,1630217968,1,30,1,2,1630091247,2,1.0,43.0,1.0,-9.0,4.0,1256068 -3111056,1630217970,1,0,2,3,1630091247,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256068 -3111057,1630219225,2,26,0,1,1630091248,2,1.0,40.0,4.0,15.0,4.0,1256069 -3111058,1630219226,2,35,13,2,1630091248,1,1.0,20.0,1.0,-9.0,4.0,1256069 -3111059,1630219863,4,24,0,1,1630091249,2,1.0,45.0,1.0,-9.0,4.0,1256070 -3111060,1630219864,4,2,2,2,1630091249,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256070 -3111061,1630219848,4,38,0,1,1630091250,1,3.0,30.0,6.0,15.0,3.0,1256071 -3111062,1630219072,2,60,0,1,1630091251,2,6.0,-9.0,-9.0,-9.0,4.0,1256072 -3111063,1630219073,2,42,2,2,1630091251,1,1.0,40.0,6.0,15.0,4.0,1256072 -3111064,1630219036,2,22,0,1,1630091252,2,3.0,-9.0,-9.0,-9.0,4.0,1256073 -3111065,1630219039,2,2,2,2,1630091252,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256073 -3111066,1630219042,2,13,5,3,1630091252,1,-9.0,-9.0,-9.0,9.0,-9.0,1256073 -3111067,1630217798,1,26,0,1,1630091253,2,3.0,14.0,3.0,-9.0,4.0,1256074 -3111068,1630218618,2,59,0,1,1630091254,2,1.0,20.0,4.0,-9.0,4.0,1256075 -3111069,1630218121,1,22,0,1,1630091255,2,1.0,20.0,1.0,15.0,4.0,1256076 -3111070,1630218124,1,18,5,2,1630091255,2,1.0,40.0,6.0,15.0,4.0,1256076 -3111071,1630218127,1,23,12,3,1630091255,2,1.0,15.0,3.0,15.0,4.0,1256076 -3111072,1630219753,2,23,0,1,1630091256,1,1.0,40.0,3.0,-9.0,4.0,1256077 -3111073,1630219713,2,19,0,1,1630091257,1,3.0,-9.0,-9.0,-9.0,4.0,1256078 -3111074,1630217769,1,57,0,1,1630091258,2,1.0,50.0,1.0,-9.0,4.0,1256079 -3111075,1630217644,2,44,0,1,1630091259,2,3.0,40.0,4.0,-9.0,4.0,1256080 -3111076,1630217645,2,59,6,2,1630091259,1,6.0,-9.0,-9.0,-9.0,4.0,1256080 -3111077,1630217643,2,68,11,3,1630091259,2,6.0,-9.0,-9.0,-9.0,4.0,1256080 -3111078,1630217646,2,45,13,4,1630091259,1,6.0,-9.0,-9.0,-9.0,4.0,1256080 -3111079,1630218105,1,20,0,1,1630091260,2,6.0,15.0,6.0,15.0,4.0,1256081 -3111080,1630218110,1,19,12,2,1630091260,2,1.0,30.0,1.0,15.0,4.0,1256081 -3111081,1630219448,2,51,0,1,1630091261,2,6.0,40.0,3.0,-9.0,4.0,1256082 -3111082,1630219449,2,17,2,2,1630091261,1,6.0,-9.0,-9.0,14.0,4.0,1256082 -3111083,1630219450,2,14,2,3,1630091261,2,-9.0,-9.0,-9.0,11.0,-9.0,1256082 -3111084,1630217806,1,29,0,1,1630091262,1,1.0,40.0,1.0,16.0,4.0,1256083 -3111085,1630217805,1,24,12,2,1630091262,2,1.0,40.0,1.0,15.0,4.0,1256083 -3111086,1630218056,1,60,0,1,1630091263,1,1.0,70.0,5.0,-9.0,4.0,1256084 -3111087,1630218055,1,60,1,2,1630091263,2,6.0,-9.0,-9.0,-9.0,4.0,1256084 -3111088,1630219331,2,33,0,1,1630091264,2,3.0,-9.0,-9.0,-9.0,4.0,1256085 -3111089,1630219334,2,10,2,2,1630091264,1,-9.0,-9.0,-9.0,7.0,-9.0,1256085 -3111090,1630219340,2,5,2,3,1630091264,2,-9.0,-9.0,-9.0,2.0,-9.0,1256085 -3111091,1630219337,2,4,2,4,1630091264,1,-9.0,-9.0,-9.0,1.0,-9.0,1256085 -3111092,1630219746,2,53,0,1,1630091265,1,1.0,15.0,6.0,-9.0,4.0,1256086 -3111093,1630219279,2,39,0,1,1630091266,2,6.0,27.0,1.0,-9.0,4.0,1256087 -3111094,1630219283,2,21,2,2,1630091266,1,6.0,-9.0,-9.0,-9.0,4.0,1256087 -3111095,1630219281,2,26,10,3,1630091266,2,6.0,-9.0,-9.0,-9.0,4.0,1256087 -3111096,1630217796,1,51,0,1,1630091267,2,6.0,-9.0,-9.0,-9.0,4.0,1256088 -3111097,1630217797,1,44,12,2,1630091267,1,3.0,15.0,6.0,-9.0,4.0,1256088 -3111098,1630218475,2,48,0,1,1630091268,2,1.0,37.0,1.0,-9.0,4.0,1256089 -3111099,1630218476,2,49,1,2,1630091268,1,6.0,-9.0,-9.0,-9.0,4.0,1256089 -3111100,1630218477,2,11,2,3,1630091268,2,-9.0,-9.0,-9.0,7.0,-9.0,1256089 -3111101,1630218881,2,46,0,1,1630091269,2,1.0,40.0,5.0,-9.0,4.0,1256090 -3111102,1630218882,2,28,10,2,1630091269,1,6.0,-9.0,-9.0,-9.0,4.0,1256090 -3111103,1630218883,2,33,12,3,1630091269,1,6.0,-9.0,-9.0,-9.0,4.0,1256090 -3111104,1630219672,2,30,0,1,1630091270,1,3.0,36.0,5.0,-9.0,4.0,1256091 -3111105,1630218299,1,33,0,1,1630091271,1,1.0,60.0,4.0,-9.0,4.0,1256092 -3111106,1630219790,2,44,0,1,1630091272,1,6.0,-9.0,-9.0,14.0,4.0,1256093 -3111107,1630219793,2,50,5,2,1630091272,1,6.0,-9.0,-9.0,-9.0,4.0,1256093 -3111108,1630219729,2,45,0,1,1630091273,1,1.0,40.0,1.0,-9.0,4.0,1256094 -3111109,1630219320,2,35,0,1,1630091274,2,1.0,40.0,1.0,15.0,4.0,1256095 -3111110,1630217948,1,35,0,1,1630091275,2,6.0,30.0,3.0,-9.0,4.0,1256096 -3111111,1630217950,1,0,2,2,1630091275,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256096 -3111112,1630217949,1,38,13,3,1630091275,1,6.0,-9.0,-9.0,-9.0,4.0,1256096 -3111113,1630218965,2,29,0,1,1630091276,2,3.0,-9.0,-9.0,-9.0,4.0,1256097 -3111114,1630218969,2,11,2,2,1630091276,2,-9.0,-9.0,-9.0,7.0,-9.0,1256097 -3111115,1630218971,2,6,2,3,1630091276,2,-9.0,-9.0,-9.0,3.0,-9.0,1256097 -3111116,1630218967,2,4,2,4,1630091276,1,-9.0,-9.0,-9.0,1.0,-9.0,1256097 -3111117,1630218973,2,3,2,5,1630091276,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256097 -3111118,1630219829,2,23,0,1,1630091277,1,1.0,40.0,1.0,-9.0,4.0,1256098 -3111119,1630218070,1,51,0,1,1630091278,2,1.0,40.0,1.0,16.0,4.0,1256099 -3111120,1630219685,2,63,0,1,1630091279,1,6.0,-9.0,-9.0,-9.0,4.0,1256100 -3111121,1630219426,2,32,0,1,1630091280,2,3.0,-9.0,-9.0,-9.0,4.0,1256101 -3111122,1630219430,2,50,1,2,1630091280,1,1.0,30.0,1.0,-9.0,4.0,1256101 -3111123,1630219428,2,9,2,3,1630091280,1,-9.0,-9.0,-9.0,6.0,-9.0,1256101 -3111124,1630219429,2,5,2,4,1630091280,1,-9.0,-9.0,-9.0,2.0,-9.0,1256101 -3111125,1630219431,2,1,2,5,1630091280,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256101 -3111126,1630219427,2,57,15,6,1630091280,2,3.0,-9.0,-9.0,-9.0,4.0,1256101 -3111127,1630218698,2,64,0,1,1630091281,2,6.0,-9.0,-9.0,-9.0,4.0,1256102 -3111128,1630218699,2,30,2,2,1630091281,2,1.0,45.0,4.0,-9.0,4.0,1256102 -3111129,1630218034,1,64,0,1,1630091282,1,1.0,65.0,1.0,-9.0,4.0,1256103 -3111130,1630218033,1,61,1,2,1630091282,2,6.0,-9.0,-9.0,-9.0,4.0,1256103 -3111131,1630219484,2,48,0,1,1630091283,2,6.0,-9.0,-9.0,-9.0,4.0,1256104 -3111132,1630219486,2,18,2,2,1630091283,2,3.0,-9.0,-9.0,13.0,4.0,1256104 -3111133,1630219488,2,10,2,3,1630091283,1,-9.0,-9.0,-9.0,5.0,-9.0,1256104 -3111134,1630219348,2,55,0,1,1630091284,2,1.0,30.0,1.0,-9.0,4.0,1256105 -3111135,1630219349,2,57,5,2,1630091284,2,6.0,-9.0,-9.0,-9.0,4.0,1256105 -3111136,1630219372,2,28,0,1,1630091285,2,6.0,40.0,1.0,15.0,4.0,1256106 -3111137,1630219373,2,23,5,2,1630091285,2,6.0,-9.0,-9.0,-9.0,4.0,1256106 -3111138,1630218696,2,29,0,1,1630091286,2,6.0,-9.0,-9.0,-9.0,4.0,1256107 -3111139,1630218697,2,32,12,2,1630091286,1,2.0,40.0,4.0,-9.0,4.0,1256107 -3111140,1630217921,1,24,0,1,1630091287,2,1.0,40.0,1.0,-9.0,4.0,1256108 -3111141,1630217922,1,24,12,2,1630091287,2,1.0,20.0,1.0,16.0,4.0,1256108 -3111142,1630217923,1,24,12,3,1630091287,2,1.0,40.0,1.0,15.0,4.0,1256108 -3111143,1630217924,1,22,12,4,1630091287,2,3.0,-9.0,-9.0,16.0,4.0,1256108 -3111144,1630217925,1,21,12,5,1630091287,2,1.0,40.0,1.0,15.0,4.0,1256108 -3111145,1630219910,4,42,0,1,1630091288,1,1.0,40.0,3.0,-9.0,4.0,1256109 -3111146,1630219198,2,63,0,1,1630091289,2,6.0,-9.0,-9.0,-9.0,4.0,1256110 -3111147,1630219199,2,60,13,2,1630091289,1,6.0,-9.0,-9.0,-9.0,2.0,1256110 -3111148,1630219647,2,42,0,1,1630091290,1,1.0,45.0,1.0,-9.0,4.0,1256111 -3111149,1630217715,1,61,0,1,1630091291,2,6.0,-9.0,-9.0,15.0,4.0,1256112 -3111150,1630217716,2,20,2,2,1630091291,2,6.0,-9.0,-9.0,-9.0,4.0,1256112 -3111151,1630217719,2,3,7,3,1630091291,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256112 -3111152,1630217720,2,2,7,4,1630091291,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256112 -3111153,1630217718,2,1,7,5,1630091291,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256112 -3111154,1630217717,2,58,15,6,1630091291,2,6.0,-9.0,-9.0,-9.0,4.0,1256112 -3111155,1630218157,1,29,0,1,1630091292,1,6.0,40.0,3.0,16.0,4.0,1256113 -3111156,1630218159,1,27,12,2,1630091292,1,6.0,40.0,5.0,-9.0,4.0,1256113 -3111157,1630219858,4,36,0,1,1630091293,2,1.0,35.0,1.0,-9.0,4.0,1256114 -3111158,1630219859,4,13,2,2,1630091293,2,-9.0,-9.0,-9.0,9.0,-9.0,1256114 -3111159,1630219860,4,9,2,3,1630091293,2,-9.0,-9.0,-9.0,5.0,-9.0,1256114 -3111160,1630219861,4,4,2,4,1630091293,1,-9.0,-9.0,-9.0,1.0,-9.0,1256114 -3111161,1630219544,2,44,0,1,1630091294,2,6.0,-9.0,-9.0,-9.0,4.0,1256115 -3111162,1630219546,2,5,3,2,1630091294,1,-9.0,-9.0,-9.0,2.0,-9.0,1256115 -3111163,1630219548,2,35,5,3,1630091294,1,6.0,-9.0,-9.0,-9.0,4.0,1256115 -3111164,1630217666,2,79,0,1,1630091295,2,6.0,-9.0,-9.0,-9.0,4.0,1256116 -3111165,1630219510,2,22,0,1,1630091296,2,1.0,20.0,1.0,15.0,4.0,1256117 -3111166,1630219514,2,3,2,2,1630091296,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256117 -3111167,1630217824,1,59,0,1,1630091297,2,6.0,-9.0,-9.0,-9.0,4.0,1256118 -3111168,1630217739,1,41,0,1,1630091298,2,3.0,40.0,4.0,-9.0,4.0,1256119 -3111169,1630217754,4,18,2,2,1630091298,2,1.0,16.0,5.0,-9.0,4.0,1256119 -3111170,1630217759,4,2,7,3,1630091298,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256119 -3111171,1630217744,2,36,13,4,1630091298,1,6.0,-9.0,-9.0,-9.0,4.0,1256119 -3111172,1630217749,2,19,15,5,1630091298,1,6.0,-9.0,-9.0,15.0,4.0,1256119 -3111173,1630218018,1,33,0,1,1630091299,2,6.0,-9.0,-9.0,-9.0,4.0,1256120 -3111174,1630218019,1,42,1,2,1630091299,1,1.0,50.0,1.0,-9.0,4.0,1256120 -3111175,1630218020,1,1,2,3,1630091299,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256120 -3111176,1630219570,2,53,0,1,1630091300,1,3.0,-9.0,-9.0,-9.0,4.0,1256121 -3111177,1630219695,2,63,0,1,1630091301,1,6.0,-9.0,-9.0,-9.0,2.0,1256122 -3111178,1630218155,1,34,0,1,1630091302,1,1.0,55.0,1.0,-9.0,4.0,1256123 -3111179,1630218328,1,57,0,1,1630091303,1,1.0,60.0,1.0,-9.0,4.0,1256124 -3111180,1630217990,1,33,0,1,1630091304,2,1.0,50.0,1.0,-9.0,4.0,1256125 -3111181,1630218898,2,32,0,1,1630091305,2,6.0,40.0,5.0,16.0,4.0,1256126 -3111182,1630218899,2,31,1,2,1630091305,2,6.0,40.0,5.0,-9.0,4.0,1256126 -3111183,1630218900,2,5,2,3,1630091305,2,-9.0,-9.0,-9.0,2.0,-9.0,1256126 -3111184,1630217726,1,27,0,1,1630091306,2,3.0,-9.0,-9.0,-9.0,4.0,1256127 -3111185,1630218092,1,54,0,1,1630091307,2,1.0,40.0,1.0,-9.0,4.0,1256128 -3111186,1630218378,1,22,0,1,1630091308,1,6.0,-9.0,-9.0,15.0,4.0,1256129 -3111187,1630218381,1,24,11,2,1630091308,1,3.0,-9.0,-9.0,15.0,4.0,1256129 -3111188,1630218760,2,64,0,1,1630091309,2,2.0,36.0,4.0,-9.0,4.0,1256130 -3111189,1630218543,2,43,0,1,1630091310,2,6.0,40.0,1.0,-9.0,4.0,1256131 -3111190,1630218545,2,46,12,2,1630091310,1,3.0,20.0,5.0,-9.0,4.0,1256131 -3111191,1630218308,1,26,0,1,1630091311,1,1.0,20.0,2.0,16.0,4.0,1256132 -3111192,1630218309,1,33,13,2,1630091311,1,6.0,-9.0,-9.0,-9.0,4.0,1256132 -3111193,1630219257,2,21,0,1,1630091312,1,1.0,40.0,4.0,-9.0,4.0,1256133 -3111194,1630219256,2,21,15,2,1630091312,2,1.0,40.0,1.0,15.0,4.0,1256133 -3111195,1630217893,1,33,0,1,1630091313,2,1.0,65.0,1.0,-9.0,4.0,1256134 -3111196,1630218009,1,33,0,1,1630091314,2,1.0,40.0,1.0,-9.0,4.0,1256135 -3111197,1630218011,1,28,15,2,1630091314,2,1.0,30.0,1.0,16.0,4.0,1256135 -3111198,1630218015,1,28,15,3,1630091314,1,1.0,65.0,1.0,-9.0,4.0,1256135 -3111199,1630218017,1,25,15,4,1630091314,1,1.0,50.0,1.0,-9.0,4.0,1256135 -3111200,1630218013,1,24,15,5,1630091314,2,1.0,15.0,4.0,16.0,4.0,1256135 -3111201,1630219899,4,27,0,1,1630091315,1,1.0,54.0,2.0,16.0,4.0,1256136 -3111202,1630219898,4,26,1,2,1630091315,2,1.0,15.0,6.0,16.0,4.0,1256136 -3111203,1630217864,1,59,0,1,1630091316,1,1.0,48.0,1.0,-9.0,4.0,1256137 -3111204,1630217863,1,59,1,2,1630091316,2,1.0,45.0,1.0,-9.0,4.0,1256137 -3111205,1630218153,1,42,0,1,1630091317,1,1.0,40.0,1.0,-9.0,2.0,1256138 -3111206,1630217920,1,37,0,1,1630091318,1,1.0,50.0,3.0,-9.0,4.0,1256139 -3111207,1630217918,1,39,13,2,1630091318,2,1.0,45.0,3.0,-9.0,4.0,1256139 -3111208,1630219601,2,61,0,1,1630091319,1,1.0,40.0,1.0,-9.0,4.0,1256140 -3111209,1630219602,2,51,10,2,1630091319,1,6.0,-9.0,-9.0,-9.0,4.0,1256140 -3111210,1630219002,2,62,0,1,1630091320,2,1.0,40.0,1.0,-9.0,4.0,1256141 -3111211,1630219164,2,38,0,1,1630091321,2,1.0,40.0,1.0,-9.0,4.0,1256142 -3111212,1630219165,2,4,2,2,1630091321,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256142 -3111213,1630219166,2,2,2,3,1630091321,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256142 -3111214,1630219167,2,40,13,4,1630091321,1,6.0,-9.0,-9.0,-9.0,4.0,1256142 -3111215,1630219838,4,25,0,1,1630091322,1,1.0,30.0,1.0,-9.0,4.0,1256143 -3111216,1630218350,1,48,0,1,1630091323,1,1.0,45.0,1.0,-9.0,4.0,1256144 -3111217,1630218351,1,43,13,2,1630091323,1,1.0,40.0,1.0,-9.0,4.0,1256144 -3111218,1630219772,4,19,0,1,1630091324,2,1.0,40.0,5.0,-9.0,4.0,1256145 -3111219,1630219771,2,21,13,2,1630091324,1,1.0,50.0,1.0,-9.0,4.0,1256145 -3111220,1630218782,2,44,0,1,1630091325,2,1.0,40.0,1.0,-9.0,4.0,1256146 -3111221,1630218783,2,18,2,2,1630091325,2,6.0,-9.0,-9.0,14.0,4.0,1256146 -3111222,1630218785,2,12,2,3,1630091325,1,-9.0,-9.0,-9.0,8.0,-9.0,1256146 -3111223,1630218786,2,10,2,4,1630091325,2,-9.0,-9.0,-9.0,7.0,-9.0,1256146 -3111224,1630218784,2,61,6,5,1630091325,2,1.0,37.0,1.0,-9.0,4.0,1256146 -3111225,1630219453,2,52,0,1,1630091326,2,2.0,40.0,3.0,-9.0,4.0,1256147 -3111226,1630219454,2,19,12,2,1630091326,2,1.0,40.0,1.0,15.0,4.0,1256147 -3111227,1630218032,1,31,0,1,1630091327,2,1.0,50.0,1.0,-9.0,4.0,1256148 -3111228,1630219905,4,63,0,1,1630091328,1,1.0,40.0,1.0,-9.0,4.0,1256149 -3111229,1630219833,2,77,0,1,1630091329,1,6.0,-9.0,-9.0,-9.0,4.0,1256150 -3111230,1630219748,2,52,0,1,1630091330,1,6.0,-9.0,-9.0,-9.0,4.0,1256151 -3111231,1630219750,2,4,2,2,1630091330,2,-9.0,-9.0,-9.0,1.0,-9.0,1256151 -3111232,1630219576,2,44,0,1,1630091331,1,1.0,40.0,1.0,-9.0,4.0,1256152 -3111233,1630219577,2,25,10,2,1630091331,1,1.0,40.0,1.0,-9.0,4.0,1256152 -3111234,1630217680,2,54,0,1,1630091332,2,1.0,50.0,4.0,-9.0,4.0,1256153 -3111235,1630217679,2,88,6,2,1630091332,2,6.0,-9.0,-9.0,-9.0,4.0,1256153 -3111236,1630219264,2,34,0,1,1630091333,2,1.0,40.0,1.0,-9.0,4.0,1256154 -3111237,1630219268,2,12,2,2,1630091333,2,-9.0,-9.0,-9.0,9.0,-9.0,1256154 -3111238,1630219272,2,7,2,3,1630091333,2,-9.0,-9.0,-9.0,4.0,-9.0,1256154 -3111239,1630219316,2,26,0,1,1630091334,2,1.0,15.0,1.0,-9.0,4.0,1256155 -3111240,1630219317,2,6,2,2,1630091334,1,-9.0,-9.0,-9.0,3.0,-9.0,1256155 -3111241,1630219319,2,2,2,3,1630091334,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256155 -3111242,1630219318,2,34,13,4,1630091334,1,1.0,25.0,1.0,-9.0,4.0,1256155 -3111243,1630217691,2,82,0,1,1630091335,2,6.0,-9.0,-9.0,-9.0,4.0,1256156 -3111244,1630219775,2,56,0,1,1630091336,1,1.0,40.0,1.0,-9.0,4.0,1256157 -3111245,1630219810,2,50,0,1,1630091337,1,1.0,40.0,1.0,-9.0,4.0,1256158 -3111246,1630218025,1,36,0,1,1630091338,1,1.0,45.0,1.0,-9.0,4.0,1256159 -3111247,1630218024,1,30,1,2,1630091338,2,6.0,-9.0,-9.0,-9.0,4.0,1256159 -3111248,1630218027,1,6,2,3,1630091338,1,-9.0,-9.0,-9.0,2.0,-9.0,1256159 -3111249,1630218028,1,3,2,4,1630091338,1,-9.0,-9.0,-9.0,1.0,-9.0,1256159 -3111250,1630218026,1,0,2,5,1630091338,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256159 -3111251,1630218539,2,61,0,1,1630091339,2,6.0,-9.0,-9.0,-9.0,4.0,1256160 -3111252,1630218540,2,45,2,2,1630091339,1,6.0,-9.0,-9.0,-9.0,4.0,1256160 -3111253,1630218541,2,69,5,3,1630091339,1,6.0,-9.0,-9.0,-9.0,4.0,1256160 -3111254,1630217770,1,60,0,1,1630091340,2,6.0,-9.0,-9.0,-9.0,4.0,1256161 -3111255,1630218985,2,42,0,1,1630091341,1,6.0,-9.0,-9.0,-9.0,4.0,1256162 -3111256,1630218983,2,38,1,2,1630091341,2,3.0,-9.0,-9.0,-9.0,4.0,1256162 -3111257,1630218984,2,19,4,3,1630091341,2,6.0,-9.0,-9.0,-9.0,4.0,1256162 -3111258,1630218986,2,18,4,4,1630091341,1,6.0,-9.0,-9.0,-9.0,4.0,1256162 -3111259,1630218764,2,38,0,1,1630091342,2,3.0,25.0,6.0,16.0,4.0,1256163 -3111260,1630218765,2,37,1,2,1630091342,1,1.0,50.0,1.0,15.0,4.0,1256163 -3111261,1630218766,2,0,2,3,1630091342,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256163 -3111262,1630217713,3,37,0,1,1630091343,2,6.0,42.0,4.0,-9.0,4.0,1256164 -3111263,1630217714,3,16,2,2,1630091343,1,6.0,-9.0,-9.0,12.0,-9.0,1256164 -3111264,1630218352,1,33,0,1,1630091344,1,1.0,44.0,1.0,-9.0,4.0,1256165 -3111265,1630218353,4,31,1,2,1630091344,2,3.0,10.0,4.0,-9.0,4.0,1256165 -3111266,1630218274,1,24,0,1,1630091345,1,2.0,10.0,1.0,15.0,4.0,1256166 -3111267,1630219796,2,63,0,1,1630091346,1,6.0,-9.0,-9.0,-9.0,4.0,1256167 -3111268,1630219882,4,30,0,1,1630091347,1,1.0,45.0,1.0,-9.0,4.0,1256168 -3111269,1630219881,4,27,1,2,1630091347,2,1.0,40.0,1.0,-9.0,4.0,1256168 -3111270,1630217819,1,58,0,1,1630091348,2,1.0,40.0,1.0,-9.0,4.0,1256169 -3111271,1630218297,2,24,0,1,1630091349,1,1.0,20.0,1.0,15.0,4.0,1256170 -3111272,1630218295,1,19,12,2,1630091349,1,3.0,56.0,6.0,15.0,4.0,1256170 -3111273,1630219718,4,33,0,1,1630091350,2,1.0,55.0,1.0,-9.0,4.0,1256171 -3111274,1630219717,2,34,13,2,1630091350,1,1.0,40.0,4.0,16.0,4.0,1256171 -3111275,1630219520,2,25,0,1,1630091351,2,3.0,40.0,1.0,-9.0,4.0,1256172 -3111276,1630219521,2,5,2,2,1630091351,2,-9.0,-9.0,-9.0,2.0,-9.0,1256172 -3111277,1630219677,2,41,0,1,1630091352,1,3.0,50.0,4.0,-9.0,4.0,1256173 -3111278,1630219382,2,24,0,1,1630091353,1,1.0,20.0,1.0,16.0,4.0,1256174 -3111279,1630219380,2,24,13,2,1630091353,2,6.0,-9.0,-9.0,16.0,4.0,1256174 -3111280,1630219821,2,27,0,1,1630091354,1,6.0,-9.0,-9.0,-9.0,2.0,1256175 -3111281,1630219836,4,61,0,1,1630091355,1,1.0,24.0,1.0,-9.0,4.0,1256176 -3111282,1630218670,2,23,0,1,1630091356,2,6.0,-9.0,-9.0,-9.0,4.0,1256177 -3111283,1630218676,2,4,2,2,1630091356,2,-9.0,-9.0,-9.0,1.0,-9.0,1256177 -3111284,1630218674,2,1,2,3,1630091356,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256177 -3111285,1630218672,2,51,10,4,1630091356,2,6.0,-9.0,-9.0,-9.0,4.0,1256177 -3111286,1630218678,2,2,10,5,1630091356,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256177 -3111287,1630218743,2,53,0,1,1630091357,2,1.0,32.0,1.0,-9.0,4.0,1256178 -3111288,1630217821,1,50,0,1,1630091358,2,1.0,40.0,4.0,-9.0,4.0,1256179 -3111289,1630217822,1,14,2,2,1630091358,2,-9.0,-9.0,-9.0,11.0,-9.0,1256179 -3111290,1630217823,1,12,2,3,1630091358,2,-9.0,-9.0,-9.0,8.0,-9.0,1256179 -3111291,1630217857,1,22,0,1,1630091359,2,2.0,40.0,1.0,16.0,4.0,1256180 -3111292,1630217858,1,27,13,2,1630091359,1,1.0,60.0,1.0,-9.0,4.0,1256180 -3111293,1630219070,2,26,0,1,1630091360,2,1.0,50.0,1.0,-9.0,4.0,1256181 -3111294,1630219071,2,27,13,2,1630091360,1,1.0,40.0,1.0,-9.0,4.0,1256181 -3111295,1630217945,1,23,0,1,1630091361,2,1.0,60.0,4.0,16.0,4.0,1256182 -3111296,1630217947,1,22,12,2,1630091361,2,1.0,40.0,1.0,-9.0,4.0,1256182 -3111297,1630219006,2,23,0,1,1630091362,2,1.0,23.0,6.0,15.0,4.0,1256183 -3111298,1630219010,2,6,2,2,1630091362,1,-9.0,-9.0,-9.0,3.0,-9.0,1256183 -3111299,1630219014,2,2,2,3,1630091362,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256183 -3111300,1630218468,2,55,0,1,1630091363,2,1.0,40.0,1.0,-9.0,4.0,1256184 -3111301,1630218469,2,26,2,2,1630091363,1,3.0,1.0,6.0,15.0,4.0,1256184 -3111302,1630218470,2,19,2,3,1630091363,1,6.0,-9.0,-9.0,15.0,4.0,1256184 -3111303,1630219276,2,56,0,1,1630091364,2,3.0,10.0,4.0,-9.0,4.0,1256185 -3111304,1630219277,2,18,2,2,1630091364,1,3.0,-9.0,-9.0,15.0,4.0,1256185 -3111305,1630217938,1,23,0,1,1630091365,1,1.0,35.0,1.0,16.0,4.0,1256186 -3111306,1630217941,4,22,11,2,1630091365,2,1.0,35.0,1.0,-9.0,4.0,1256186 -3111307,1630217935,1,22,11,3,1630091365,2,1.0,25.0,4.0,15.0,4.0,1256186 -3111308,1630219224,2,63,0,1,1630091366,2,6.0,-9.0,-9.0,-9.0,4.0,1256187 -3111309,1630219778,2,47,0,1,1630091367,1,3.0,40.0,6.0,-9.0,4.0,1256188 -3111310,1630219779,2,28,10,2,1630091367,1,3.0,30.0,6.0,-9.0,4.0,1256188 -3111311,1630219461,2,50,0,1,1630091368,2,1.0,40.0,1.0,-9.0,4.0,1256189 -3111312,1630219462,2,17,14,2,1630091368,2,6.0,-9.0,-9.0,13.0,4.0,1256189 -3111313,1630219045,2,40,0,1,1630091369,2,1.0,36.0,1.0,-9.0,4.0,1256190 -3111314,1630219047,2,10,2,2,1630091369,1,-9.0,-9.0,-9.0,6.0,-9.0,1256190 -3111315,1630219049,2,8,2,3,1630091369,1,-9.0,-9.0,-9.0,5.0,-9.0,1256190 -3111316,1630219322,2,24,0,1,1630091370,2,6.0,30.0,5.0,-9.0,4.0,1256191 -3111317,1630219328,2,5,2,2,1630091370,2,-9.0,-9.0,-9.0,2.0,-9.0,1256191 -3111318,1630219324,2,3,2,3,1630091370,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256191 -3111319,1630219326,2,1,2,4,1630091370,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256191 -3111320,1630217675,2,51,0,1,1630091371,1,3.0,-9.0,-9.0,-9.0,4.0,1256192 -3111321,1630217672,2,71,6,2,1630091371,2,6.0,-9.0,-9.0,-9.0,4.0,1256192 -3111322,1630218355,1,30,0,1,1630091372,1,1.0,30.0,1.0,-9.0,4.0,1256193 -3111323,1630218692,2,32,0,1,1630091373,2,1.0,40.0,1.0,-9.0,4.0,1256194 -3111324,1630218693,2,16,2,2,1630091373,1,6.0,-9.0,-9.0,13.0,-9.0,1256194 -3111325,1630218694,2,6,2,3,1630091373,2,-9.0,-9.0,-9.0,3.0,-9.0,1256194 -3111326,1630218695,2,5,2,4,1630091373,2,-9.0,-9.0,-9.0,2.0,-9.0,1256194 -3111327,1630218043,1,21,0,1,1630091374,2,6.0,10.0,5.0,16.0,4.0,1256195 -3111328,1630218047,1,20,12,2,1630091374,2,6.0,20.0,4.0,15.0,4.0,1256195 -3111329,1630218209,3,29,0,1,1630091375,1,1.0,43.0,1.0,-9.0,4.0,1256196 -3111330,1630219423,2,55,0,1,1630091376,2,6.0,-9.0,-9.0,-9.0,4.0,1256197 -3111331,1630219424,2,26,2,2,1630091376,2,1.0,25.0,4.0,15.0,4.0,1256197 -3111332,1630219425,2,1,7,3,1630091376,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256197 -3111333,1630219913,4,26,0,1,1630091377,1,6.0,36.0,5.0,-9.0,4.0,1256198 -3111334,1630219915,4,25,12,2,1630091377,1,6.0,-9.0,-9.0,-9.0,4.0,1256198 -3111335,1630217898,1,27,0,1,1630091378,2,6.0,-9.0,-9.0,16.0,4.0,1256199 -3111336,1630217908,4,26,12,2,1630091378,2,6.0,-9.0,-9.0,16.0,4.0,1256199 -3111337,1630217903,1,25,12,3,1630091378,2,6.0,-9.0,-9.0,16.0,4.0,1256199 -3111338,1630219498,2,43,0,1,1630091379,2,6.0,-9.0,-9.0,-9.0,4.0,1256200 -3111339,1630219503,2,0,2,2,1630091379,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256200 -3111340,1630218406,1,40,0,1,1630091380,1,6.0,-9.0,-9.0,-9.0,2.0,1256201 -3111341,1630218409,4,23,15,2,1630091380,2,6.0,30.0,6.0,-9.0,4.0,1256201 -3111342,1630219375,2,22,0,1,1630091381,2,6.0,-9.0,-9.0,-9.0,4.0,1256202 -3111343,1630219377,2,3,2,2,1630091381,2,-9.0,-9.0,-9.0,1.0,-9.0,1256202 -3111344,1630219378,2,2,2,3,1630091381,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256202 -3111345,1630219376,2,0,2,4,1630091381,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256202 -3111346,1630217768,1,30,0,1,1630091382,2,3.0,40.0,2.0,-9.0,4.0,1256203 -3111347,1630217706,1,49,0,1,1630091383,1,1.0,80.0,1.0,-9.0,4.0,1256204 -3111348,1630217705,1,40,1,2,1630091383,2,3.0,-9.0,-9.0,-9.0,4.0,1256204 -3111349,1630218998,2,26,0,1,1630091384,2,1.0,35.0,5.0,-9.0,4.0,1256205 -3111350,1630218999,2,3,2,2,1630091384,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256205 -3111351,1630219137,2,57,0,1,1630091385,2,1.0,28.0,4.0,-9.0,4.0,1256206 -3111352,1630219139,2,28,2,2,1630091385,1,6.0,-9.0,-9.0,13.0,4.0,1256206 -3111353,1630219138,2,6,7,3,1630091385,1,-9.0,-9.0,-9.0,4.0,-9.0,1256206 -3111354,1630217854,1,27,0,1,1630091386,1,6.0,-9.0,-9.0,16.0,4.0,1256207 -3111355,1630217851,1,24,1,2,1630091386,2,6.0,-9.0,-9.0,16.0,4.0,1256207 -3111356,1630218597,2,61,0,1,1630091387,2,1.0,40.0,1.0,-9.0,4.0,1256208 -3111357,1630218599,2,36,2,2,1630091387,1,6.0,40.0,5.0,-9.0,4.0,1256208 -3111358,1630218598,2,2,7,3,1630091387,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256208 -3111359,1630217791,1,58,0,1,1630091388,2,1.0,55.0,1.0,-9.0,4.0,1256209 -3111360,1630218929,2,30,0,1,1630091389,2,1.0,20.0,6.0,-9.0,4.0,1256210 -3111361,1630218932,2,9,2,2,1630091389,1,-9.0,-9.0,-9.0,6.0,-9.0,1256210 -3111362,1630218935,2,6,2,3,1630091389,2,-9.0,-9.0,-9.0,3.0,-9.0,1256210 -3111363,1630218938,2,3,2,4,1630091389,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256210 -3111364,1630218216,1,19,0,1,1630091390,1,6.0,-9.0,-9.0,15.0,4.0,1256211 -3111365,1630218223,1,19,12,2,1630091390,1,1.0,30.0,1.0,15.0,4.0,1256211 -3111366,1630218230,1,19,12,3,1630091390,1,6.0,-9.0,-9.0,15.0,4.0,1256211 -3111367,1630217993,1,53,0,1,1630091391,2,3.0,-9.0,-9.0,-9.0,4.0,1256212 -3111368,1630217994,4,19,2,2,1630091391,1,1.0,20.0,6.0,-9.0,4.0,1256212 -3111369,1630217995,4,17,2,3,1630091391,1,6.0,-9.0,-9.0,13.0,4.0,1256212 -3111370,1630217996,4,14,2,4,1630091391,1,-9.0,-9.0,-9.0,10.0,-9.0,1256212 -3111371,1630218331,1,48,0,1,1630091392,1,2.0,40.0,3.0,-9.0,4.0,1256213 -3111372,1630218660,2,36,0,1,1630091393,2,3.0,-9.0,-9.0,-9.0,4.0,1256214 -3111373,1630218661,2,14,2,2,1630091393,1,-9.0,-9.0,-9.0,10.0,-9.0,1256214 -3111374,1630218663,2,9,2,3,1630091393,2,-9.0,-9.0,-9.0,8.0,-9.0,1256214 -3111375,1630218662,2,44,5,4,1630091393,1,3.0,-9.0,-9.0,-9.0,4.0,1256214 -3111376,1630217649,2,61,0,1,1630091394,1,1.0,50.0,1.0,-9.0,4.0,1256215 -3111377,1630217647,2,93,6,2,1630091394,2,6.0,-9.0,-9.0,-9.0,4.0,1256215 -3111378,1630217648,1,56,13,3,1630091394,2,1.0,40.0,1.0,-9.0,4.0,1256215 -3111379,1630218953,3,44,0,1,1630091395,2,1.0,40.0,1.0,-9.0,4.0,1256216 -3111380,1630218951,2,60,5,2,1630091395,2,6.0,-9.0,-9.0,-9.0,4.0,1256216 -3111381,1630218952,2,74,6,3,1630091395,1,6.0,-9.0,-9.0,-9.0,2.0,1256216 -3111382,1630218313,1,33,0,1,1630091396,1,1.0,25.0,1.0,16.0,4.0,1256217 -3111383,1630218315,4,30,1,2,1630091396,2,1.0,25.0,1.0,15.0,4.0,1256217 -3111384,1630218700,2,64,0,1,1630091397,2,6.0,-9.0,-9.0,-9.0,4.0,1256218 -3111385,1630218702,2,67,1,2,1630091397,1,6.0,-9.0,-9.0,-9.0,4.0,1256218 -3111386,1630218701,2,33,2,3,1630091397,1,1.0,8.0,6.0,15.0,4.0,1256218 -3111387,1630217999,1,64,0,1,1630091398,2,6.0,-9.0,-9.0,-9.0,4.0,1256219 -3111388,1630218000,1,41,2,2,1630091398,1,6.0,-9.0,-9.0,-9.0,4.0,1256219 -3111389,1630218001,4,33,10,3,1630091398,1,6.0,-9.0,-9.0,-9.0,4.0,1256219 -3111390,1630218628,2,38,0,1,1630091399,2,1.0,70.0,1.0,-9.0,4.0,1256220 -3111391,1630218629,2,19,2,2,1630091399,2,1.0,24.0,3.0,15.0,4.0,1256220 -3111392,1630218630,2,14,2,3,1630091399,1,-9.0,-9.0,-9.0,11.0,-9.0,1256220 -3111393,1630218633,2,5,2,4,1630091399,2,-9.0,-9.0,-9.0,1.0,-9.0,1256220 -3111394,1630218631,2,18,5,5,1630091399,1,6.0,-9.0,-9.0,12.0,4.0,1256220 -3111395,1630218632,2,60,6,6,1630091399,1,6.0,-9.0,-9.0,-9.0,4.0,1256220 -3111396,1630219842,4,31,0,1,1630091400,1,1.0,60.0,1.0,-9.0,4.0,1256221 -3111397,1630218235,1,24,0,1,1630091401,1,3.0,47.0,3.0,15.0,4.0,1256222 -3111398,1630219133,2,26,0,1,1630091402,1,1.0,52.0,1.0,-9.0,4.0,1256223 -3111399,1630219132,2,22,1,2,1630091402,2,1.0,40.0,1.0,-9.0,4.0,1256223 -3111400,1630219571,2,40,0,1,1630091403,1,1.0,26.0,6.0,-9.0,4.0,1256224 -3111401,1630218727,2,41,0,1,1630091404,2,1.0,40.0,1.0,-9.0,4.0,1256225 -3111402,1630218728,2,53,1,2,1630091404,1,1.0,45.0,1.0,-9.0,4.0,1256225 -3111403,1630219765,2,42,0,1,1630091405,1,1.0,40.0,1.0,-9.0,4.0,1256226 -3111404,1630218029,1,58,0,1,1630091406,2,6.0,-9.0,-9.0,-9.0,4.0,1256227 -3111405,1630219018,2,26,0,1,1630091407,2,1.0,40.0,1.0,-9.0,4.0,1256228 -3111406,1630219019,2,8,2,2,1630091407,1,-9.0,-9.0,-9.0,3.0,-9.0,1256228 -3111407,1630219023,2,6,3,3,1630091407,2,-9.0,-9.0,-9.0,3.0,-9.0,1256228 -3111408,1630219020,2,2,3,4,1630091407,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256228 -3111409,1630219021,2,19,5,5,1630091407,1,6.0,-9.0,-9.0,-9.0,4.0,1256228 -3111410,1630219022,2,26,13,6,1630091407,1,1.0,40.0,1.0,-9.0,4.0,1256228 -3111411,1630219904,4,25,0,1,1630091408,1,1.0,70.0,5.0,-9.0,2.0,1256229 -3111412,1630218993,2,40,0,1,1630091409,1,1.0,40.0,1.0,-9.0,4.0,1256230 -3111413,1630218991,2,2,2,2,1630091409,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256230 -3111414,1630218994,2,0,2,3,1630091409,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256230 -3111415,1630218990,2,37,13,4,1630091409,2,6.0,-9.0,-9.0,-9.0,4.0,1256230 -3111416,1630218992,2,15,15,5,1630091409,1,-9.0,-9.0,-9.0,12.0,-9.0,1256230 -3111417,1630218995,2,12,15,6,1630091409,2,-9.0,-9.0,-9.0,9.0,-9.0,1256230 -3111418,1630219727,2,44,0,1,1630091410,1,3.0,-9.0,-9.0,15.0,3.0,1256231 -3111419,1630219289,2,31,0,1,1630091411,2,1.0,40.0,1.0,-9.0,4.0,1256232 -3111420,1630219292,2,5,2,2,1630091411,2,-9.0,-9.0,-9.0,1.0,-9.0,1256232 -3111421,1630218613,2,62,0,1,1630091412,2,6.0,-9.0,-9.0,-9.0,4.0,1256233 -3111422,1630218614,2,24,2,2,1630091412,2,1.0,40.0,3.0,-9.0,4.0,1256233 -3111423,1630218975,2,56,0,1,1630091413,2,1.0,40.0,1.0,-9.0,4.0,1256234 -3111424,1630218976,2,7,14,2,1630091413,2,-9.0,-9.0,-9.0,4.0,-9.0,1256234 -3111425,1630218977,2,6,14,3,1630091413,2,-9.0,-9.0,-9.0,3.0,-9.0,1256234 -3111426,1630219295,2,39,0,1,1630091414,2,6.0,-9.0,-9.0,-9.0,4.0,1256235 -3111427,1630219298,2,22,2,2,1630091414,2,1.0,40.0,1.0,-9.0,4.0,1256235 -3111428,1630219301,2,9,2,3,1630091414,1,-9.0,-9.0,-9.0,4.0,-9.0,1256235 -3111429,1630218731,2,51,0,1,1630091415,2,1.0,30.0,6.0,-9.0,4.0,1256236 -3111430,1630218732,2,15,2,2,1630091415,1,-9.0,-9.0,-9.0,10.0,-9.0,1256236 -3111431,1630218735,2,12,2,3,1630091415,2,-9.0,-9.0,-9.0,9.0,-9.0,1256236 -3111432,1630218733,2,10,2,4,1630091415,1,-9.0,-9.0,-9.0,6.0,-9.0,1256236 -3111433,1630218734,2,8,2,5,1630091415,1,-9.0,-9.0,-9.0,5.0,-9.0,1256236 -3111434,1630218077,1,24,0,1,1630091416,2,6.0,-9.0,-9.0,16.0,4.0,1256237 -3111435,1630217786,1,27,0,1,1630091417,2,1.0,20.0,1.0,16.0,4.0,1256238 -3111436,1630217790,1,26,1,2,1630091417,1,3.0,-9.0,-9.0,16.0,4.0,1256238 -3111437,1630217692,1,86,0,1,1630091418,2,6.0,-9.0,-9.0,-9.0,4.0,1256239 -3111438,1630219619,2,36,0,1,1630091419,1,1.0,40.0,1.0,-9.0,4.0,1256240 -3111439,1630219851,3,27,0,1,1630091420,2,1.0,40.0,1.0,-9.0,4.0,1256241 -3111440,1630218924,2,59,0,1,1630091421,2,6.0,-9.0,-9.0,15.0,4.0,1256242 -3111441,1630218926,2,75,1,2,1630091421,1,6.0,-9.0,-9.0,-9.0,4.0,1256242 -3111442,1630218925,2,39,2,3,1630091421,2,3.0,-9.0,-9.0,15.0,4.0,1256242 -3111443,1630217963,1,43,0,1,1630091422,2,6.0,-9.0,-9.0,-9.0,4.0,1256243 -3111444,1630217967,1,52,13,2,1630091422,1,1.0,25.0,1.0,-9.0,4.0,1256243 -3111445,1630218722,2,37,0,1,1630091423,2,1.0,40.0,1.0,-9.0,4.0,1256244 -3111446,1630218726,2,17,2,2,1630091423,2,3.0,-9.0,-9.0,14.0,4.0,1256244 -3111447,1630218724,2,15,2,3,1630091423,1,-9.0,-9.0,-9.0,13.0,-9.0,1256244 -3111448,1630219411,2,24,0,1,1630091424,2,6.0,-9.0,-9.0,-9.0,4.0,1256245 -3111449,1630219415,2,7,2,2,1630091424,2,-9.0,-9.0,-9.0,2.0,-9.0,1256245 -3111450,1630219417,2,5,2,3,1630091424,2,-9.0,-9.0,-9.0,1.0,-9.0,1256245 -3111451,1630219419,2,0,2,4,1630091424,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256245 -3111452,1630219413,2,25,5,5,1630091424,2,6.0,-9.0,-9.0,-9.0,4.0,1256245 -3111453,1630219897,4,27,0,1,1630091425,1,1.0,80.0,1.0,-9.0,4.0,1256246 -3111454,1630219895,4,26,1,2,1630091425,2,1.0,80.0,3.0,-9.0,4.0,1256246 -3111455,1630219896,4,19,5,3,1630091425,2,6.0,-9.0,-9.0,15.0,4.0,1256246 -3111456,1630219841,4,61,0,1,1630091426,2,6.0,-9.0,-9.0,-9.0,4.0,1256247 -3111457,1630219840,4,23,2,2,1630091426,1,1.0,50.0,6.0,14.0,4.0,1256247 -3111458,1630217693,1,67,0,1,1630091427,2,6.0,-9.0,-9.0,-9.0,4.0,1256248 -3111459,1630218236,1,52,0,1,1630091428,1,1.0,40.0,1.0,-9.0,4.0,1256249 -3111460,1630218237,4,11,2,2,1630091428,1,-9.0,-9.0,-9.0,8.0,-9.0,1256249 -3111461,1630218233,1,24,0,1,1630091429,1,1.0,55.0,1.0,-9.0,4.0,1256250 -3111462,1630218251,1,57,0,1,1630091430,1,1.0,55.0,1.0,-9.0,4.0,1256251 -3111463,1630218199,1,58,0,1,1630091431,1,1.0,39.0,3.0,-9.0,4.0,1256252 -3111464,1630219888,4,28,0,1,1630091432,1,6.0,-9.0,-9.0,15.0,4.0,1256253 -3111465,1630219885,4,31,1,2,1630091432,2,1.0,40.0,1.0,16.0,4.0,1256253 -3111466,1630219891,4,1,2,3,1630091432,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256253 -3111467,1630219880,4,30,0,1,1630091433,1,1.0,60.0,1.0,16.0,4.0,1256254 -3111468,1630219879,4,33,1,2,1630091433,2,1.0,60.0,1.0,16.0,4.0,1256254 -3111469,1630219302,2,61,0,1,1630091434,2,6.0,-9.0,-9.0,-9.0,4.0,1256255 -3111470,1630219303,2,55,1,2,1630091434,1,6.0,-9.0,-9.0,-9.0,2.0,1256255 -3111471,1630217979,1,27,0,1,1630091435,2,6.0,37.0,5.0,16.0,4.0,1256256 -3111472,1630217855,1,48,0,1,1630091436,2,1.0,30.0,1.0,-9.0,4.0,1256257 -3111473,1630217856,1,10,2,2,1630091436,2,-9.0,-9.0,-9.0,7.0,-9.0,1256257 -3111474,1630218987,2,44,0,1,1630091437,2,3.0,10.0,6.0,-9.0,4.0,1256258 -3111475,1630218988,2,21,2,2,1630091437,1,6.0,-9.0,-9.0,-9.0,4.0,1256258 -3111476,1630218989,2,16,2,3,1630091437,2,6.0,-9.0,-9.0,12.0,-9.0,1256258 -3111477,1630217651,2,64,0,1,1630091438,1,1.0,6.0,6.0,-9.0,4.0,1256259 -3111478,1630217650,2,66,1,2,1630091438,2,1.0,40.0,1.0,-9.0,4.0,1256259 -3111479,1630219578,2,53,0,1,1630091439,1,6.0,-9.0,-9.0,-9.0,4.0,1256260 -3111480,1630219579,2,60,10,2,1630091439,1,6.0,-9.0,-9.0,-9.0,2.0,1256260 -3111481,1630219580,2,58,10,3,1630091439,1,6.0,-9.0,-9.0,-9.0,2.0,1256260 -3111482,1630217782,1,51,0,1,1630091440,2,1.0,40.0,1.0,-9.0,2.0,1256261 -3111483,1630218432,2,28,0,1,1630091441,1,1.0,36.0,1.0,-9.0,4.0,1256262 -3111484,1630218433,2,12,2,2,1630091441,2,-9.0,-9.0,-9.0,9.0,-9.0,1256262 -3111485,1630218434,2,5,2,3,1630091441,2,-9.0,-9.0,-9.0,2.0,-9.0,1256262 -3111486,1630218435,2,17,10,4,1630091441,2,6.0,-9.0,-9.0,14.0,4.0,1256262 -3111487,1630218431,2,32,15,5,1630091441,2,1.0,40.0,1.0,-9.0,4.0,1256262 -3111488,1630219128,2,52,0,1,1630091442,1,3.0,40.0,6.0,-9.0,2.0,1256263 -3111489,1630219127,2,60,1,2,1630091442,2,1.0,40.0,1.0,-9.0,4.0,1256263 -3111490,1630219129,2,21,2,3,1630091442,1,6.0,-9.0,-9.0,15.0,4.0,1256263 -3111491,1630218362,3,30,0,1,1630091443,1,1.0,45.0,1.0,-9.0,4.0,1256264 -3111492,1630218644,2,56,0,1,1630091444,2,1.0,40.0,1.0,-9.0,4.0,1256265 -3111493,1630219692,2,55,0,1,1630091445,1,1.0,48.0,1.0,-9.0,4.0,1256266 -3111494,1630219693,2,53,5,2,1630091445,1,3.0,-9.0,-9.0,-9.0,4.0,1256266 -3111495,1630219694,2,19,10,3,1630091445,1,6.0,-9.0,-9.0,14.0,4.0,1256266 -3111496,1630219469,2,40,0,1,1630091446,2,1.0,35.0,1.0,-9.0,4.0,1256267 -3111497,1630219471,2,46,1,2,1630091446,1,1.0,40.0,1.0,-9.0,4.0,1256267 -3111498,1630219470,2,11,2,3,1630091446,1,-9.0,-9.0,-9.0,8.0,-9.0,1256267 -3111499,1630219472,2,9,2,4,1630091446,2,-9.0,-9.0,-9.0,5.0,-9.0,1256267 -3111500,1630218664,2,45,0,1,1630091447,2,6.0,-9.0,-9.0,-9.0,4.0,1256268 -3111501,1630218665,2,27,2,2,1630091447,2,6.0,-9.0,-9.0,-9.0,4.0,1256268 -3111502,1630218666,2,35,12,3,1630091447,1,6.0,40.0,6.0,-9.0,4.0,1256268 -3111503,1630218085,1,22,0,1,1630091448,2,6.0,-9.0,-9.0,16.0,4.0,1256269 -3111504,1630218091,1,22,11,2,1630091448,2,6.0,-9.0,-9.0,16.0,4.0,1256269 -3111505,1630219894,4,22,0,1,1630091449,2,1.0,25.0,1.0,15.0,4.0,1256270 -3111506,1630218849,2,27,0,1,1630091450,2,6.0,-9.0,-9.0,-9.0,4.0,1256271 -3111507,1630218859,2,0,2,2,1630091450,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256271 -3111508,1630218854,2,35,13,3,1630091450,1,6.0,-9.0,-9.0,-9.0,4.0,1256271 -3111509,1630218896,2,63,0,1,1630091451,2,1.0,40.0,1.0,-9.0,4.0,1256272 -3111510,1630218897,2,17,7,2,1630091451,2,6.0,-9.0,-9.0,13.0,4.0,1256272 -3111511,1630219112,2,32,0,1,1630091452,2,1.0,40.0,1.0,-9.0,4.0,1256273 -3111512,1630219113,2,10,2,2,1630091452,1,-9.0,-9.0,-9.0,6.0,-9.0,1256273 -3111513,1630219114,2,8,2,3,1630091452,1,-9.0,-9.0,-9.0,5.0,-9.0,1256273 -3111514,1630219115,2,4,2,4,1630091452,2,-9.0,-9.0,-9.0,1.0,-9.0,1256273 -3111515,1630219116,2,1,2,5,1630091452,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256273 -3111516,1630219396,2,40,0,1,1630091453,2,1.0,30.0,1.0,-9.0,4.0,1256274 -3111517,1630219400,2,12,2,2,1630091453,2,-9.0,-9.0,-9.0,9.0,-9.0,1256274 -3111518,1630219398,2,49,13,3,1630091453,1,1.0,30.0,1.0,-9.0,4.0,1256274 -3111519,1630217699,1,36,0,1,1630091454,2,1.0,40.0,1.0,-9.0,4.0,1256275 -3111520,1630217700,1,44,1,2,1630091454,1,1.0,40.0,1.0,-9.0,4.0,1256275 -3111521,1630217701,1,2,2,3,1630091454,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256275 -3111522,1630218148,1,42,0,1,1630091455,1,1.0,40.0,3.0,15.0,4.0,1256276 -3111523,1630218131,1,27,0,1,1630091456,1,1.0,45.0,1.0,-9.0,4.0,1256277 -3111524,1630218129,1,28,1,2,1630091456,2,1.0,52.0,4.0,-9.0,4.0,1256277 -3111525,1630218921,2,45,0,1,1630091457,2,1.0,40.0,1.0,-9.0,4.0,1256278 -3111526,1630218922,2,14,2,2,1630091457,2,-9.0,-9.0,-9.0,10.0,-9.0,1256278 -3111527,1630218374,2,32,0,1,1630091458,2,2.0,40.0,1.0,-9.0,4.0,1256279 -3111528,1630218373,1,35,1,2,1630091458,1,3.0,-9.0,-9.0,15.0,4.0,1256279 -3111529,1630218375,2,12,2,3,1630091458,2,-9.0,-9.0,-9.0,8.0,-9.0,1256279 -3111530,1630217664,2,46,0,1,1630091459,2,1.0,30.0,4.0,-9.0,4.0,1256280 -3111531,1630217660,2,78,6,2,1630091459,2,6.0,-9.0,-9.0,-9.0,4.0,1256280 -3111532,1630217662,2,87,10,3,1630091459,2,6.0,-9.0,-9.0,-9.0,4.0,1256280 -3111533,1630218118,1,56,0,1,1630091460,2,1.0,50.0,1.0,-9.0,4.0,1256281 -3111534,1630219274,2,55,0,1,1630091461,1,6.0,16.0,6.0,-9.0,4.0,1256282 -3111535,1630219273,2,51,1,2,1630091461,2,6.0,16.0,3.0,-9.0,4.0,1256282 -3111536,1630219275,2,26,2,3,1630091461,1,1.0,40.0,2.0,-9.0,4.0,1256282 -3111537,1630218052,1,49,0,1,1630091462,2,1.0,40.0,1.0,-9.0,4.0,1256283 -3111538,1630218053,1,14,2,2,1630091462,2,-9.0,-9.0,-9.0,10.0,-9.0,1256283 -3111539,1630218054,1,9,2,3,1630091462,1,-9.0,-9.0,-9.0,5.0,-9.0,1256283 -3111540,1630218259,3,27,0,1,1630091463,1,1.0,70.0,1.0,-9.0,4.0,1256284 -3111541,1630218260,3,27,12,2,1630091463,1,1.0,70.0,1.0,-9.0,4.0,1256284 -3111542,1630217802,1,46,0,1,1630091464,1,1.0,33.0,1.0,15.0,4.0,1256285 -3111543,1630217801,1,35,1,2,1630091464,2,6.0,15.0,6.0,-9.0,4.0,1256285 -3111544,1630217803,1,5,2,3,1630091464,2,-9.0,-9.0,-9.0,1.0,-9.0,1256285 -3111545,1630217804,1,3,2,4,1630091464,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256285 -3111546,1630217910,1,34,0,1,1630091465,2,1.0,24.0,1.0,-9.0,4.0,1256286 -3111547,1630217912,1,35,1,2,1630091465,1,1.0,50.0,1.0,-9.0,4.0,1256286 -3111548,1630217916,1,2,2,3,1630091465,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256286 -3111549,1630217914,2,3,3,4,1630091465,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256286 -3111550,1630218730,2,39,0,1,1630091466,1,6.0,-9.0,-9.0,-9.0,4.0,1256287 -3111551,1630218729,2,32,10,2,1630091466,2,1.0,24.0,6.0,-9.0,4.0,1256287 -3111552,1630219438,2,50,0,1,1630091467,2,3.0,-9.0,-9.0,-9.0,4.0,1256288 -3111553,1630219439,2,71,1,2,1630091467,1,6.0,-9.0,-9.0,-9.0,2.0,1256288 -3111554,1630219850,4,58,0,1,1630091468,2,1.0,40.0,1.0,-9.0,4.0,1256289 -3111555,1630218981,2,58,0,1,1630091469,2,1.0,40.0,1.0,-9.0,4.0,1256290 -3111556,1630218982,2,58,12,2,1630091469,1,1.0,32.0,1.0,-9.0,4.0,1256290 -3111557,1630218679,2,58,0,1,1630091470,2,1.0,40.0,1.0,-9.0,4.0,1256291 -3111558,1630218680,2,21,2,2,1630091470,1,1.0,32.0,2.0,-9.0,4.0,1256291 -3111559,1630218681,2,58,13,3,1630091470,1,6.0,-9.0,-9.0,-9.0,2.0,1256291 -3111560,1630218057,1,28,0,1,1630091471,2,1.0,55.0,1.0,-9.0,4.0,1256292 -3111561,1630218058,1,28,1,2,1630091471,1,1.0,40.0,1.0,-9.0,4.0,1256292 -3111562,1630217684,2,68,0,1,1630091472,2,6.0,-9.0,-9.0,-9.0,4.0,1256293 -3111563,1630217685,2,55,1,2,1630091472,1,6.0,-9.0,-9.0,-9.0,2.0,1256293 -3111564,1630219865,1,69,0,1,1630091473,1,1.0,60.0,1.0,-9.0,4.0,1256294 -3111565,1630218910,2,38,0,1,1630091474,1,1.0,40.0,1.0,-9.0,4.0,1256295 -3111566,1630218908,2,32,1,2,1630091474,2,1.0,40.0,3.0,16.0,4.0,1256295 -3111567,1630218909,2,10,2,3,1630091474,1,-9.0,-9.0,-9.0,7.0,-9.0,1256295 -3111568,1630219862,3,23,0,1,1630091475,2,1.0,40.0,1.0,-9.0,4.0,1256296 -3111569,1630219084,2,32,0,1,1630091476,2,3.0,-9.0,-9.0,-9.0,4.0,1256297 -3111570,1630219087,2,33,1,2,1630091476,1,1.0,45.0,4.0,-9.0,4.0,1256297 -3111571,1630219686,2,62,0,1,1630091477,1,6.0,-9.0,-9.0,-9.0,4.0,1256298 -3111572,1630219559,2,16,0,1,1630091478,1,6.0,-9.0,-9.0,14.0,-9.0,1256299 -3111573,1630219561,2,38,15,2,1630091478,1,1.0,40.0,1.0,-9.0,4.0,1256299 -3111574,1630219136,2,29,0,1,1630091479,2,1.0,40.0,1.0,16.0,4.0,1256300 -3111575,1630219575,2,55,0,1,1630091480,1,6.0,-9.0,-9.0,-9.0,4.0,1256301 -3111576,1630217862,1,37,0,1,1630091481,1,1.0,33.0,1.0,-9.0,4.0,1256302 -3111577,1630217860,1,27,13,2,1630091481,2,6.0,40.0,5.0,-9.0,4.0,1256302 -3111578,1630217652,2,75,0,1,1630091482,2,6.0,-9.0,-9.0,-9.0,4.0,1256303 -3111579,1630219737,2,42,0,1,1630091483,1,6.0,-9.0,-9.0,-9.0,4.0,1256304 -3111580,1630219255,2,63,0,1,1630091484,2,1.0,40.0,1.0,-9.0,4.0,1256305 -3111581,1630217868,1,29,0,1,1630091485,2,1.0,45.0,1.0,-9.0,4.0,1256306 -3111582,1630217870,1,29,1,2,1630091485,1,6.0,45.0,6.0,16.0,4.0,1256306 -3111583,1630217704,1,62,0,1,1630091486,1,6.0,-9.0,-9.0,-9.0,2.0,1256307 -3111584,1630217702,1,59,1,2,1630091486,2,6.0,-9.0,-9.0,-9.0,4.0,1256307 -3111585,1630217703,1,26,2,3,1630091486,2,1.0,30.0,1.0,-9.0,4.0,1256307 -3111586,1630218603,2,33,0,1,1630091487,2,1.0,40.0,3.0,-9.0,4.0,1256308 -3111587,1630218605,2,31,1,2,1630091487,1,1.0,40.0,1.0,-9.0,4.0,1256308 -3111588,1630218604,2,15,2,3,1630091487,1,-9.0,-9.0,-9.0,11.0,-9.0,1256308 -3111589,1630218606,2,9,2,4,1630091487,2,-9.0,-9.0,-9.0,5.0,-9.0,1256308 -3111590,1630218607,2,2,2,5,1630091487,2,-9.0,-9.0,-9.0,-9.0,-9.0,1256308 -3111591,1630217876,1,20,0,1,1630091488,2,1.0,30.0,3.0,15.0,4.0,1256309 -3111592,1630217882,1,21,12,2,1630091488,2,6.0,30.0,4.0,15.0,4.0,1256309 -3111593,1630218818,2,60,0,1,1630091489,1,6.0,-9.0,-9.0,-9.0,4.0,1256310 -3111594,1630218817,2,56,1,2,1630091489,2,1.0,40.0,1.0,-9.0,4.0,1256310 -3111595,1630218819,2,6,10,3,1630091489,2,-9.0,-9.0,-9.0,2.0,-9.0,1256310 -3111596,1630217763,1,27,0,1,1630091490,1,1.0,55.0,1.0,-9.0,4.0,1256311 -3111597,1630217765,1,32,12,2,1630091490,1,3.0,25.0,6.0,-9.0,4.0,1256311 -3111598,1630217767,1,32,12,3,1630091490,1,6.0,-9.0,-9.0,-9.0,4.0,1256311 -3111599,1630217761,1,26,12,4,1630091490,2,3.0,40.0,6.0,-9.0,4.0,1256311 -3111600,1630218160,1,62,0,1,1630091491,1,1.0,40.0,1.0,16.0,4.0,1256312 -3111601,1630218161,1,38,12,2,1630091491,1,6.0,-9.0,-9.0,-9.0,4.0,1256312 -3111602,1630220150,1,56,0,1,1630091492,2,1.0,50.0,1.0,-9.0,4.0,1256313 -3111603,1630220111,1,64,0,1,1630091493,1,1.0,65.0,1.0,-9.0,4.0,1256314 -3111604,1630220110,1,61,1,2,1630091493,2,6.0,-9.0,-9.0,-9.0,4.0,1256314 -3111605,1630220311,1,48,0,1,1630091494,1,1.0,45.0,1.0,-9.0,4.0,1256315 -3111606,1630220312,1,43,13,2,1630091494,1,1.0,40.0,1.0,-9.0,4.0,1256315 -3111607,1630220629,2,51,0,1,1630091495,1,6.0,-9.0,-9.0,-9.0,4.0,1256316 -3111608,1630220099,1,33,0,1,1630091496,2,1.0,50.0,1.0,-9.0,4.0,1256317 -3111609,1630220100,1,33,0,1,1630091497,2,1.0,50.0,1.0,-9.0,4.0,1256318 -3111610,1630220101,1,33,0,1,1630091498,2,1.0,50.0,1.0,-9.0,4.0,1256319 -3111611,1630220044,1,27,0,1,1630091499,1,1.0,50.0,1.0,-9.0,4.0,1256320 -3111612,1630220039,3,28,1,2,1630091499,2,6.0,45.0,4.0,-9.0,4.0,1256320 -3111613,1630220045,1,27,0,1,1630091500,1,1.0,50.0,1.0,-9.0,4.0,1256321 -3111614,1630220040,3,28,1,2,1630091500,2,6.0,45.0,4.0,-9.0,4.0,1256321 -3111615,1630220046,1,27,0,1,1630091501,1,1.0,50.0,1.0,-9.0,4.0,1256322 -3111616,1630220041,3,28,1,2,1630091501,2,6.0,45.0,4.0,-9.0,4.0,1256322 -3111617,1630220047,1,27,0,1,1630091502,1,1.0,50.0,1.0,-9.0,4.0,1256323 -3111618,1630220042,3,28,1,2,1630091502,2,6.0,45.0,4.0,-9.0,4.0,1256323 -3111619,1630220153,1,27,0,1,1630091503,1,1.0,45.0,1.0,-9.0,4.0,1256324 -3111620,1630220151,1,28,1,2,1630091503,2,1.0,52.0,4.0,-9.0,4.0,1256324 -3111621,1630219997,1,27,0,1,1630091504,1,1.0,40.0,1.0,16.0,4.0,1256325 -3111622,1630219996,1,29,15,2,1630091504,2,1.0,50.0,1.0,-9.0,4.0,1256325 -3111623,1630220018,1,31,0,1,1630091505,2,1.0,50.0,1.0,-9.0,4.0,1256326 -3111624,1630220020,1,34,13,2,1630091505,1,1.0,70.0,1.0,-9.0,4.0,1256326 -3111625,1630220338,1,38,0,1,1630091506,1,1.0,40.0,1.0,-9.0,4.0,1256327 -3111626,1630220347,1,42,12,2,1630091506,1,1.0,40.0,1.0,-9.0,4.0,1256327 -3111627,1630220339,1,38,0,1,1630091507,1,1.0,40.0,1.0,-9.0,4.0,1256328 -3111628,1630220348,1,42,12,2,1630091507,1,1.0,40.0,1.0,-9.0,4.0,1256328 -3111629,1630220340,1,38,0,1,1630091508,1,1.0,40.0,1.0,-9.0,4.0,1256329 -3111630,1630220349,1,42,12,2,1630091508,1,1.0,40.0,1.0,-9.0,4.0,1256329 -3111631,1630220078,1,37,0,1,1630091509,1,1.0,50.0,3.0,-9.0,4.0,1256330 -3111632,1630220076,1,39,13,2,1630091509,2,1.0,45.0,3.0,-9.0,4.0,1256330 -3111633,1630220341,1,38,0,1,1630091510,1,1.0,40.0,1.0,-9.0,4.0,1256331 -3111634,1630220350,1,42,12,2,1630091510,1,1.0,40.0,1.0,-9.0,4.0,1256331 -3111635,1630220342,1,38,0,1,1630091511,1,1.0,40.0,1.0,-9.0,4.0,1256332 -3111636,1630220351,1,42,12,2,1630091511,1,1.0,40.0,1.0,-9.0,4.0,1256332 -3111637,1630220343,1,38,0,1,1630091512,1,1.0,40.0,1.0,-9.0,4.0,1256333 -3111638,1630220352,1,42,12,2,1630091512,1,1.0,40.0,1.0,-9.0,4.0,1256333 -3111639,1630220344,1,38,0,1,1630091513,1,1.0,40.0,1.0,-9.0,4.0,1256334 -3111640,1630220353,1,42,12,2,1630091513,1,1.0,40.0,1.0,-9.0,4.0,1256334 -3111641,1630220278,1,28,0,1,1630091514,1,1.0,25.0,1.0,-9.0,4.0,1256335 -3111642,1630220283,1,28,12,2,1630091514,1,1.0,45.0,1.0,-9.0,4.0,1256335 -3111643,1630220079,1,37,0,1,1630091515,1,1.0,50.0,3.0,-9.0,4.0,1256336 -3111644,1630220077,1,39,13,2,1630091515,2,1.0,45.0,3.0,-9.0,4.0,1256336 -3111645,1630220279,1,28,0,1,1630091516,1,1.0,25.0,1.0,-9.0,4.0,1256337 -3111646,1630220284,1,28,12,2,1630091516,1,1.0,45.0,1.0,-9.0,4.0,1256337 -3111647,1630220019,1,31,0,1,1630091517,2,1.0,50.0,1.0,-9.0,4.0,1256338 -3111648,1630220021,1,34,13,2,1630091517,1,1.0,70.0,1.0,-9.0,4.0,1256338 -3111649,1630220280,1,28,0,1,1630091518,1,1.0,25.0,1.0,-9.0,4.0,1256339 -3111650,1630220285,1,28,12,2,1630091518,1,1.0,45.0,1.0,-9.0,4.0,1256339 -3111651,1630220281,1,28,0,1,1630091519,1,1.0,25.0,1.0,-9.0,4.0,1256340 -3111652,1630220286,1,28,12,2,1630091519,1,1.0,45.0,1.0,-9.0,4.0,1256340 -3111653,1630220345,1,38,0,1,1630091520,1,1.0,40.0,1.0,-9.0,4.0,1256341 -3111654,1630220354,1,42,12,2,1630091520,1,1.0,40.0,1.0,-9.0,4.0,1256341 -3111655,1630220282,1,28,0,1,1630091521,1,1.0,25.0,1.0,-9.0,4.0,1256342 -3111656,1630220287,1,28,12,2,1630091521,1,1.0,45.0,1.0,-9.0,4.0,1256342 -3111657,1630220219,3,27,0,1,1630091522,1,1.0,70.0,1.0,-9.0,4.0,1256343 -3111658,1630220221,3,27,12,2,1630091522,1,1.0,70.0,1.0,-9.0,4.0,1256343 -3111659,1630220220,3,27,0,1,1630091523,1,1.0,70.0,1.0,-9.0,4.0,1256344 -3111660,1630220222,3,27,12,2,1630091523,1,1.0,70.0,1.0,-9.0,4.0,1256344 -3111661,1630220098,1,27,0,1,1630091524,2,6.0,37.0,5.0,16.0,4.0,1256345 -3111662,1630220665,2,32,0,1,1630091525,1,6.0,56.0,1.0,-9.0,4.0,1256346 -3111663,1630220666,2,32,0,1,1630091526,1,6.0,56.0,1.0,-9.0,4.0,1256347 -3111664,1630220668,2,29,12,2,1630091526,1,6.0,-9.0,-9.0,-9.0,4.0,1256347 -3111665,1630220563,2,28,0,1,1630091527,2,6.0,40.0,1.0,15.0,4.0,1256348 -3111666,1630220564,2,23,5,2,1630091527,2,6.0,-9.0,-9.0,-9.0,4.0,1256348 -3111667,1630220162,1,29,0,1,1630091528,1,6.0,40.0,3.0,16.0,4.0,1256349 -3111668,1630220163,1,29,0,1,1630091529,1,6.0,40.0,3.0,16.0,4.0,1256350 -3111669,1630220164,1,29,0,1,1630091530,1,6.0,40.0,3.0,16.0,4.0,1256351 -3111670,1630220167,1,27,12,2,1630091530,1,6.0,40.0,5.0,-9.0,4.0,1256351 -3111671,1630220681,2,28,0,1,1630091531,1,1.0,55.0,1.0,-9.0,4.0,1256352 -3111672,1630220614,2,39,0,1,1630091532,1,1.0,48.0,1.0,-9.0,4.0,1256353 -3111673,1630220743,2,38,0,1,1630091533,1,1.0,55.0,1.0,-9.0,4.0,1256354 -3111674,1630220744,2,38,0,1,1630091534,1,1.0,55.0,1.0,-9.0,4.0,1256355 -3111675,1630220634,2,29,0,1,1630091535,1,1.0,40.0,1.0,-9.0,4.0,1256356 -3111676,1630220615,2,39,0,1,1630091536,1,1.0,48.0,1.0,-9.0,4.0,1256357 -3111677,1630220682,2,28,0,1,1630091537,1,1.0,55.0,1.0,-9.0,4.0,1256358 -3111678,1630220192,1,29,0,1,1630091538,1,1.0,45.0,1.0,-9.0,4.0,1256359 -3111679,1630220367,1,29,0,1,1630091539,1,1.0,35.0,1.0,-9.0,4.0,1256360 -3111680,1630220368,1,29,0,1,1630091540,1,1.0,35.0,1.0,-9.0,4.0,1256361 -3111681,1630220369,1,29,0,1,1630091541,1,1.0,35.0,1.0,-9.0,4.0,1256362 -3111682,1630220370,1,29,0,1,1630091542,1,1.0,35.0,1.0,-9.0,4.0,1256363 -3111683,1630220262,1,30,0,1,1630091543,1,1.0,40.0,4.0,-9.0,4.0,1256364 -3111684,1630220263,1,30,0,1,1630091544,1,1.0,40.0,4.0,-9.0,4.0,1256365 -3111685,1630220193,1,29,0,1,1630091545,1,1.0,45.0,1.0,-9.0,4.0,1256366 -3111686,1630220371,1,29,0,1,1630091546,1,1.0,35.0,1.0,-9.0,4.0,1256367 -3111687,1630220264,1,30,0,1,1630091547,1,1.0,40.0,4.0,-9.0,4.0,1256368 -3111688,1630220372,1,29,0,1,1630091548,1,1.0,35.0,1.0,-9.0,4.0,1256369 -3111689,1630220265,1,30,0,1,1630091549,1,1.0,40.0,4.0,-9.0,4.0,1256370 -3111690,1630220266,1,30,0,1,1630091550,1,1.0,40.0,4.0,-9.0,4.0,1256371 -3111691,1630220267,1,30,0,1,1630091551,1,1.0,40.0,4.0,-9.0,4.0,1256372 -3111692,1630220074,1,33,0,1,1630091552,2,1.0,65.0,1.0,-9.0,4.0,1256373 -3111693,1630220268,1,30,0,1,1630091553,1,1.0,40.0,4.0,-9.0,4.0,1256374 -3111694,1630220373,1,29,0,1,1630091554,1,1.0,35.0,1.0,-9.0,4.0,1256375 -3111695,1630220075,1,33,0,1,1630091555,2,1.0,65.0,1.0,-9.0,4.0,1256376 -3111696,1630220637,2,42,0,1,1630091556,1,1.0,40.0,1.0,-9.0,4.0,1256377 -3111697,1630220604,2,40,0,1,1630091557,1,1.0,50.0,1.0,-9.0,4.0,1256378 -3111698,1630220613,2,30,0,1,1630091558,1,1.0,40.0,1.0,-9.0,4.0,1256379 -3111699,1630220640,2,42,0,1,1630091559,1,1.0,48.0,1.0,-9.0,4.0,1256380 -3111700,1630220439,2,34,0,1,1630091560,2,1.0,48.0,1.0,-9.0,4.0,1256381 -3111701,1630220753,2,35,0,1,1630091561,1,1.0,40.0,1.0,-9.0,2.0,1256382 -3111702,1630220412,2,26,0,1,1630091562,2,1.0,40.0,1.0,-9.0,4.0,1256383 -3111703,1630220829,4,31,0,1,1630091563,1,1.0,60.0,1.0,-9.0,4.0,1256384 -3111704,1630220107,1,33,0,1,1630091564,2,1.0,60.0,1.0,15.0,4.0,1256385 -3111705,1630220329,1,27,0,1,1630091565,1,1.0,40.0,1.0,-9.0,4.0,1256386 -3111706,1630220330,1,27,0,1,1630091566,1,1.0,40.0,1.0,-9.0,4.0,1256387 -3111707,1630220208,1,29,0,1,1630091567,1,1.0,40.0,1.0,-9.0,2.0,1256388 -3111708,1630220082,1,26,0,1,1630091568,2,1.0,40.0,1.0,-9.0,4.0,1256389 -3111709,1630220296,1,26,0,1,1630091569,1,1.0,60.0,1.0,-9.0,4.0,1256390 -3111710,1630220274,1,31,0,1,1630091570,1,2.0,70.0,1.0,-9.0,4.0,1256391 -3111711,1630220157,1,42,0,1,1630091571,1,1.0,40.0,3.0,15.0,4.0,1256392 -3111712,1630220295,1,26,0,1,1630091572,1,1.0,50.0,1.0,-9.0,4.0,1256393 -3111713,1630220123,1,31,0,1,1630091573,2,1.0,50.0,1.0,16.0,4.0,1256394 -3111714,1630220083,1,26,0,1,1630091574,2,1.0,40.0,1.0,-9.0,4.0,1256395 -3111715,1630220216,1,34,0,1,1630091575,1,1.0,40.0,1.0,-9.0,4.0,1256396 -3111716,1630220092,1,40,0,1,1630091576,2,1.0,60.0,1.0,-9.0,4.0,1256397 -3111717,1630220297,1,26,0,1,1630091577,1,1.0,60.0,1.0,-9.0,4.0,1256398 -3111718,1630220217,1,34,0,1,1630091578,1,1.0,40.0,1.0,-9.0,4.0,1256399 -3111719,1630220732,2,36,0,1,1630091579,1,1.0,40.0,1.0,-9.0,4.0,1256400 -3111720,1630220223,1,40,0,1,1630091580,1,1.0,50.0,1.0,-9.0,4.0,1256401 -3111721,1630220224,1,40,0,1,1630091581,1,1.0,50.0,1.0,-9.0,4.0,1256402 -3111722,1630220429,2,32,0,1,1630091582,2,1.0,40.0,1.0,15.0,2.0,1256403 -3111723,1630220430,2,11,2,2,1630091582,1,-9.0,-9.0,-9.0,8.0,-9.0,1256403 -3111724,1630220679,2,29,0,1,1630091583,1,1.0,40.0,1.0,15.0,3.0,1256404 -3111725,1630220680,2,7,2,2,1630091583,2,-9.0,-9.0,-9.0,3.0,-9.0,1256404 -3111726,1630220590,2,43,0,1,1630091584,2,1.0,40.0,1.0,15.0,4.0,1256405 -3111727,1630220591,2,19,2,2,1630091584,1,3.0,36.0,6.0,15.0,4.0,1256405 -3111728,1630220229,1,26,0,1,1630091585,1,3.0,40.0,2.0,-9.0,4.0,1256406 -3111729,1630220235,1,22,12,2,1630091585,1,1.0,40.0,5.0,-9.0,4.0,1256406 -3111730,1630220230,1,26,0,1,1630091586,1,3.0,40.0,2.0,-9.0,4.0,1256407 -3111731,1630220236,1,22,12,2,1630091586,1,1.0,40.0,5.0,-9.0,4.0,1256407 -3111732,1630220008,1,25,0,1,1630091587,2,3.0,20.0,5.0,-9.0,4.0,1256408 -3111733,1630220009,1,23,12,2,1630091587,2,1.0,45.0,1.0,16.0,4.0,1256408 -3111734,1630220231,1,26,0,1,1630091588,1,3.0,40.0,2.0,-9.0,4.0,1256409 -3111735,1630220237,1,22,12,2,1630091588,1,1.0,40.0,5.0,-9.0,4.0,1256409 -3111736,1630220232,1,26,0,1,1630091589,1,3.0,40.0,2.0,-9.0,4.0,1256410 -3111737,1630220238,1,22,12,2,1630091589,1,1.0,40.0,5.0,-9.0,4.0,1256410 -3111738,1630220233,1,26,0,1,1630091590,1,3.0,40.0,2.0,-9.0,4.0,1256411 -3111739,1630220239,1,22,12,2,1630091590,1,1.0,40.0,5.0,-9.0,4.0,1256411 -3111740,1630220126,1,25,0,1,1630091591,1,6.0,-9.0,-9.0,16.0,4.0,1256412 -3111741,1630220124,1,26,1,2,1630091591,2,1.0,50.0,1.0,-9.0,4.0,1256412 -3111742,1630220234,1,26,0,1,1630091592,1,3.0,40.0,2.0,-9.0,4.0,1256413 -3111743,1630220240,1,22,12,2,1630091592,1,1.0,40.0,5.0,-9.0,4.0,1256413 -3111744,1630220139,1,37,0,1,1630091593,1,1.0,50.0,1.0,16.0,4.0,1256414 -3111745,1630220137,1,49,1,2,1630091593,2,1.0,30.0,1.0,-9.0,4.0,1256414 -3111746,1630220140,1,37,0,1,1630091594,1,1.0,50.0,1.0,16.0,4.0,1256415 -3111747,1630220138,1,49,1,2,1630091594,2,1.0,30.0,1.0,-9.0,4.0,1256415 -3111748,1630220023,1,32,0,1,1630091595,1,1.0,40.0,1.0,-9.0,4.0,1256416 -3111749,1630220022,1,42,1,2,1630091595,2,1.0,40.0,1.0,-9.0,4.0,1256416 -3111750,1630220069,1,28,0,1,1630091596,1,1.0,40.0,1.0,16.0,4.0,1256417 -3111751,1630220068,1,27,12,2,1630091596,2,1.0,1.0,1.0,16.0,4.0,1256417 -3111752,1630220323,1,29,0,1,1630091597,1,1.0,50.0,1.0,16.0,4.0,1256418 -3111753,1630220325,1,34,12,2,1630091597,1,1.0,40.0,1.0,16.0,4.0,1256418 -3111754,1630220324,1,29,0,1,1630091598,1,1.0,50.0,1.0,16.0,4.0,1256419 -3111755,1630220326,1,34,12,2,1630091598,1,1.0,40.0,1.0,16.0,4.0,1256419 -3111756,1630220317,3,30,0,1,1630091599,1,1.0,45.0,1.0,-9.0,4.0,1256420 -3111757,1630220318,3,30,0,1,1630091600,1,1.0,45.0,1.0,-9.0,4.0,1256421 -3111758,1630220319,3,30,0,1,1630091601,1,1.0,45.0,1.0,-9.0,4.0,1256422 -3111759,1630220561,2,36,0,1,1630091602,2,1.0,40.0,1.0,-9.0,4.0,1256423 -3111760,1630220586,2,41,0,1,1630091603,2,1.0,45.0,1.0,-9.0,4.0,1256424 -3111761,1630220587,2,41,0,1,1630091604,2,1.0,45.0,1.0,-9.0,4.0,1256425 -3111762,1630220241,1,27,0,1,1630091605,1,1.0,48.0,1.0,-9.0,4.0,1256426 -3111763,1630220084,1,28,0,1,1630091606,2,1.0,40.0,1.0,-9.0,4.0,1256427 -3111764,1630220242,1,27,0,1,1630091607,1,1.0,48.0,1.0,-9.0,4.0,1256428 -3111765,1630220253,1,27,0,1,1630091608,1,1.0,40.0,1.0,-9.0,4.0,1256429 -3111766,1630220243,1,27,0,1,1630091609,1,1.0,48.0,1.0,-9.0,4.0,1256430 -3111767,1630220172,1,26,0,1,1630091610,1,1.0,40.0,3.0,-9.0,4.0,1256431 -3111768,1630220091,1,32,0,1,1630091611,2,1.0,50.0,1.0,-9.0,4.0,1256432 -3111769,1630220173,1,26,0,1,1630091612,1,1.0,40.0,3.0,-9.0,4.0,1256433 -3111770,1630220202,1,39,0,1,1630091613,1,1.0,40.0,1.0,-9.0,4.0,1256434 -3111771,1630220203,1,39,0,1,1630091614,1,1.0,40.0,1.0,-9.0,4.0,1256435 -3111772,1630220204,1,39,0,1,1630091615,1,1.0,40.0,1.0,-9.0,4.0,1256436 -3111773,1630220205,1,39,0,1,1630091616,1,1.0,40.0,1.0,-9.0,4.0,1256437 -3111774,1630220057,1,37,0,1,1630091617,1,1.0,33.0,1.0,-9.0,4.0,1256438 -3111775,1630220055,1,27,13,2,1630091617,2,6.0,40.0,5.0,-9.0,4.0,1256438 -3111776,1630220062,1,29,0,1,1630091618,2,1.0,45.0,1.0,-9.0,4.0,1256439 -3111777,1630220065,1,29,1,2,1630091618,1,6.0,45.0,6.0,16.0,4.0,1256439 -3111778,1630220063,1,29,0,1,1630091619,2,1.0,45.0,1.0,-9.0,4.0,1256440 -3111779,1630220066,1,29,1,2,1630091619,1,6.0,45.0,6.0,16.0,4.0,1256440 -3111780,1630220016,1,29,0,1,1630091620,1,1.0,40.0,1.0,16.0,4.0,1256441 -3111781,1630220014,1,24,12,2,1630091620,2,1.0,40.0,1.0,15.0,4.0,1256441 -3111782,1630220225,1,28,0,1,1630091621,1,1.0,70.0,1.0,-9.0,4.0,1256442 -3111783,1630220227,1,25,12,2,1630091621,1,1.0,45.0,1.0,-9.0,2.0,1256442 -3111784,1630220149,1,31,0,1,1630091622,1,1.0,40.0,3.0,-9.0,4.0,1256443 -3111785,1630220148,1,26,1,2,1630091622,2,1.0,40.0,1.0,16.0,4.0,1256443 -3111786,1630220226,1,28,0,1,1630091623,1,1.0,70.0,1.0,-9.0,4.0,1256444 -3111787,1630220228,1,25,12,2,1630091623,1,1.0,45.0,1.0,-9.0,2.0,1256444 -3111788,1630220290,1,38,0,1,1630091624,1,1.0,40.0,1.0,-9.0,4.0,1256445 -3111789,1630220291,4,38,1,2,1630091624,2,1.0,40.0,1.0,-9.0,4.0,1256445 -3111790,1630220004,1,34,0,1,1630091625,2,1.0,65.0,1.0,-9.0,4.0,1256446 -3111791,1630220005,1,42,13,2,1630091625,1,1.0,43.0,1.0,-9.0,4.0,1256446 -3111792,1630220129,1,26,0,1,1630091626,1,1.0,40.0,1.0,-9.0,4.0,1256447 -3111793,1630220128,1,25,13,2,1630091626,2,1.0,30.0,1.0,-9.0,4.0,1256447 -3111794,1630220119,1,28,0,1,1630091627,2,1.0,55.0,1.0,-9.0,4.0,1256448 -3111795,1630220121,1,28,1,2,1630091627,1,1.0,40.0,1.0,-9.0,4.0,1256448 -3111796,1630220413,2,34,0,1,1630091628,2,3.0,-9.0,-9.0,15.0,4.0,1256449 -3111797,1630220750,2,39,0,1,1630091629,1,6.0,-9.0,-9.0,-9.0,4.0,1256450 -3111798,1630220635,2,26,0,1,1630091630,1,6.0,-9.0,-9.0,-9.0,4.0,1256451 -3111799,1630220748,2,41,0,1,1630091631,1,3.0,40.0,5.0,-9.0,4.0,1256452 -3111800,1630220621,2,41,0,1,1630091632,1,3.0,24.0,5.0,-9.0,4.0,1256453 -3111801,1630220622,2,41,0,1,1630091633,1,3.0,24.0,5.0,-9.0,4.0,1256454 -3111802,1630220623,2,41,0,1,1630091634,1,3.0,24.0,5.0,-9.0,4.0,1256455 -3111803,1630220414,2,34,0,1,1630091635,2,3.0,-9.0,-9.0,15.0,4.0,1256456 -3111804,1630220781,2,39,0,1,1630091636,1,6.0,-9.0,-9.0,-9.0,4.0,1256457 -3111805,1630220764,2,39,0,1,1630091637,1,6.0,-9.0,-9.0,-9.0,4.0,1256458 -3111806,1630220765,2,39,0,1,1630091638,1,6.0,-9.0,-9.0,-9.0,4.0,1256459 -3111807,1630220699,2,28,0,1,1630091639,1,3.0,-9.0,-9.0,-9.0,4.0,1256460 -3111808,1630220438,2,32,0,1,1630091640,2,6.0,-9.0,-9.0,16.0,4.0,1256461 -3111809,1630220734,2,42,0,1,1630091641,1,3.0,-9.0,-9.0,-9.0,4.0,1256462 -3111810,1630220696,2,43,0,1,1630091642,1,6.0,-9.0,-9.0,-9.0,4.0,1256463 -3111811,1630220624,2,41,0,1,1630091643,1,3.0,24.0,5.0,-9.0,4.0,1256464 -3111812,1630220739,2,33,0,1,1630091644,1,3.0,-9.0,-9.0,15.0,4.0,1256465 -3111813,1630220735,2,42,0,1,1630091645,1,3.0,-9.0,-9.0,-9.0,4.0,1256466 -3111814,1630220697,2,43,0,1,1630091646,1,6.0,-9.0,-9.0,-9.0,4.0,1256467 -3111815,1630220455,2,41,0,1,1630091647,2,6.0,-9.0,-9.0,-9.0,2.0,1256468 -3111816,1630220618,2,44,0,1,1630091648,1,6.0,-9.0,-9.0,-9.0,4.0,1256469 -3111817,1630220619,2,44,0,1,1630091649,1,6.0,-9.0,-9.0,-9.0,4.0,1256470 -3111818,1630220406,2,40,0,1,1630091650,2,6.0,-9.0,-9.0,12.0,4.0,1256471 -3111819,1630220698,2,43,0,1,1630091651,1,6.0,-9.0,-9.0,-9.0,4.0,1256472 -3111820,1630220740,2,33,0,1,1630091652,1,3.0,-9.0,-9.0,15.0,4.0,1256473 -3111821,1630220636,2,26,0,1,1630091653,1,6.0,-9.0,-9.0,-9.0,4.0,1256474 -3111822,1630220700,2,28,0,1,1630091654,1,3.0,-9.0,-9.0,-9.0,4.0,1256475 -3111823,1630220174,1,39,0,1,1630091655,1,6.0,8.0,6.0,16.0,4.0,1256476 -3111824,1630220175,1,39,0,1,1630091656,1,6.0,8.0,6.0,16.0,4.0,1256477 -3111825,1630220147,1,37,0,1,1630091657,2,6.0,-9.0,-9.0,-9.0,4.0,1256478 -3111826,1630220176,1,39,0,1,1630091658,1,6.0,8.0,6.0,16.0,4.0,1256479 -3111827,1630220177,1,39,0,1,1630091659,1,6.0,8.0,6.0,16.0,4.0,1256480 -3111828,1630219994,1,27,0,1,1630091660,2,3.0,-9.0,-9.0,-9.0,4.0,1256481 -3111829,1630220178,1,39,0,1,1630091661,1,6.0,8.0,6.0,16.0,4.0,1256482 -3111830,1630220179,1,39,0,1,1630091662,1,6.0,8.0,6.0,16.0,4.0,1256483 -3111831,1630219995,1,27,0,1,1630091663,2,3.0,-9.0,-9.0,-9.0,4.0,1256484 -3111832,1630220180,1,39,0,1,1630091664,1,6.0,8.0,6.0,16.0,4.0,1256485 -3111833,1630220755,2,28,0,1,1630091665,1,3.0,25.0,4.0,15.0,4.0,1256486 -3111834,1630220786,2,38,0,1,1630091666,1,6.0,-9.0,-9.0,-9.0,4.0,1256487 -3111835,1630220562,2,28,0,1,1630091667,2,6.0,-9.0,-9.0,15.0,4.0,1256488 -3111836,1630220767,2,42,0,1,1630091668,1,6.0,-9.0,-9.0,-9.0,4.0,1256489 -3111837,1630220671,2,35,0,1,1630091669,1,3.0,-9.0,-9.0,-9.0,4.0,1256490 -3111838,1630220182,1,40,0,1,1630091670,1,6.0,28.0,4.0,-9.0,4.0,1256491 -3111839,1630220183,1,40,0,1,1630091671,1,6.0,28.0,4.0,-9.0,4.0,1256492 -3111840,1630220206,1,31,0,1,1630091672,1,3.0,8.0,4.0,-9.0,4.0,1256493 -3111841,1630220185,1,29,0,1,1630091673,1,6.0,-9.0,-9.0,15.0,4.0,1256494 -3111842,1630220184,1,40,0,1,1630091674,1,6.0,28.0,4.0,-9.0,4.0,1256495 -3111843,1630220593,2,36,0,1,1630091675,2,6.0,-9.0,-9.0,-9.0,4.0,1256496 -3111844,1630220596,2,34,13,2,1630091675,1,6.0,-9.0,-9.0,-9.0,4.0,1256496 -3111845,1630220415,2,38,0,1,1630091676,2,3.0,28.0,6.0,-9.0,4.0,1256497 -3111846,1630220417,2,18,2,2,1630091676,1,3.0,-9.0,-9.0,14.0,4.0,1256497 -3111847,1630220726,2,35,0,1,1630091677,1,6.0,-9.0,-9.0,-9.0,4.0,1256498 -3111848,1630220727,2,30,5,2,1630091677,1,6.0,-9.0,-9.0,-9.0,4.0,1256498 -3111849,1630220416,2,38,0,1,1630091678,2,3.0,28.0,6.0,-9.0,4.0,1256499 -3111850,1630220418,2,18,2,2,1630091678,1,3.0,-9.0,-9.0,14.0,4.0,1256499 -3111851,1630220594,2,36,0,1,1630091679,2,6.0,-9.0,-9.0,-9.0,4.0,1256500 -3111852,1630220595,2,36,0,1,1630091680,2,6.0,-9.0,-9.0,-9.0,4.0,1256501 -3111853,1630220598,2,34,13,2,1630091680,1,6.0,-9.0,-9.0,-9.0,4.0,1256501 -3111854,1630220759,2,44,0,1,1630091681,1,6.0,-9.0,-9.0,14.0,4.0,1256502 -3111855,1630220760,2,50,5,2,1630091681,1,6.0,-9.0,-9.0,-9.0,4.0,1256502 -3111856,1630220605,2,40,0,1,1630091682,1,6.0,-9.0,-9.0,-9.0,4.0,1256503 -3111857,1630220608,2,7,2,2,1630091682,2,-9.0,-9.0,-9.0,3.0,-9.0,1256503 -3111858,1630220606,2,40,0,1,1630091683,1,6.0,-9.0,-9.0,-9.0,4.0,1256504 -3111859,1630220609,2,7,2,2,1630091683,2,-9.0,-9.0,-9.0,3.0,-9.0,1256504 -3111860,1630220515,2,41,0,1,1630091684,2,6.0,-9.0,-9.0,-9.0,4.0,1256505 -3111861,1630220517,2,8,2,2,1630091684,1,-9.0,-9.0,-9.0,4.0,-9.0,1256505 -3111862,1630220516,2,41,0,1,1630091685,2,6.0,-9.0,-9.0,-9.0,4.0,1256506 -3111863,1630220518,2,8,2,2,1630091685,1,-9.0,-9.0,-9.0,4.0,-9.0,1256506 -3111864,1630220607,2,40,0,1,1630091686,1,6.0,-9.0,-9.0,-9.0,4.0,1256507 -3111865,1630220610,2,7,2,2,1630091686,2,-9.0,-9.0,-9.0,3.0,-9.0,1256507 -3111866,1630220460,2,26,0,1,1630091687,2,6.0,-9.0,-9.0,-9.0,4.0,1256508 -3111867,1630220461,2,6,2,2,1630091687,1,-9.0,-9.0,-9.0,2.0,-9.0,1256508 -3111868,1630220440,2,33,0,1,1630091688,2,3.0,42.0,6.0,-9.0,4.0,1256509 -3111869,1630220441,2,14,2,2,1630091688,2,-9.0,-9.0,-9.0,11.0,-9.0,1256509 -3111870,1630220483,2,33,0,1,1630091689,2,3.0,30.0,6.0,-9.0,4.0,1256510 -3111871,1630220484,2,18,2,2,1630091689,2,6.0,-9.0,-9.0,-9.0,4.0,1256510 -3111872,1630220362,1,40,0,1,1630091690,1,6.0,-9.0,-9.0,-9.0,2.0,1256511 -3111873,1630220363,4,23,15,2,1630091690,2,6.0,30.0,6.0,-9.0,4.0,1256511 -3111874,1630220582,2,33,0,1,1630091691,2,3.0,40.0,3.0,-9.0,4.0,1256512 -3111875,1630220583,2,9,2,2,1630091691,1,-9.0,-9.0,-9.0,6.0,-9.0,1256512 -3111876,1630220407,2,37,0,1,1630091692,2,6.0,-9.0,-9.0,-9.0,4.0,1256513 -3111877,1630220408,2,4,2,2,1630091692,1,-9.0,-9.0,-9.0,1.0,-9.0,1256513 -3111878,1630220051,1,27,0,1,1630091693,1,6.0,-9.0,-9.0,16.0,4.0,1256514 -3111879,1630220049,1,24,1,2,1630091693,2,6.0,-9.0,-9.0,16.0,4.0,1256514 -3111880,1630220052,1,27,0,1,1630091694,1,6.0,-9.0,-9.0,16.0,4.0,1256515 -3111881,1630220651,2,37,0,1,1630091695,1,1.0,40.0,6.0,-9.0,4.0,1256516 -3111882,1630220578,2,41,0,1,1630091696,2,1.0,40.0,1.0,-9.0,4.0,1256517 -3111883,1630220588,2,37,0,1,1630091697,2,1.0,35.0,2.0,-9.0,4.0,1256518 -3111884,1630220660,2,41,0,1,1630091698,1,1.0,40.0,1.0,-9.0,4.0,1256519 -3111885,1630220652,2,37,0,1,1630091699,1,1.0,40.0,6.0,-9.0,4.0,1256520 -3111886,1630220653,2,37,0,1,1630091700,1,1.0,40.0,6.0,-9.0,4.0,1256521 -3111887,1630220659,2,39,0,1,1630091701,1,1.0,40.0,1.0,-9.0,4.0,1256522 -3111888,1630220654,2,37,0,1,1630091702,1,1.0,40.0,6.0,-9.0,4.0,1256523 -3111889,1630220299,1,32,0,1,1630091703,1,1.0,60.0,5.0,-9.0,4.0,1256524 -3111890,1630220300,1,32,0,1,1630091704,1,1.0,60.0,5.0,-9.0,4.0,1256525 -3111891,1630220301,1,32,0,1,1630091705,1,1.0,60.0,5.0,-9.0,4.0,1256526 -3111892,1630220159,1,42,0,1,1630091706,1,1.0,40.0,1.0,-9.0,2.0,1256527 -3111893,1630220302,1,32,0,1,1630091707,1,1.0,60.0,5.0,-9.0,4.0,1256528 -3111894,1630220097,1,44,0,1,1630091708,2,1.0,40.0,1.0,-9.0,4.0,1256529 -3111895,1630220303,1,32,0,1,1630091709,1,1.0,60.0,5.0,-9.0,4.0,1256530 -3111896,1630220131,1,26,0,1,1630091710,2,1.0,65.0,2.0,-9.0,4.0,1256531 -3111897,1630220304,1,32,0,1,1630091711,1,1.0,60.0,5.0,-9.0,4.0,1256532 -3111898,1630220305,1,32,0,1,1630091712,1,1.0,60.0,5.0,-9.0,4.0,1256533 -3111899,1630220160,1,42,0,1,1630091713,1,1.0,40.0,1.0,-9.0,2.0,1256534 -3111900,1630220306,1,32,0,1,1630091714,1,1.0,60.0,5.0,-9.0,4.0,1256535 -3111901,1630220161,1,42,0,1,1630091715,1,1.0,40.0,1.0,-9.0,2.0,1256536 -3111902,1630220307,1,32,0,1,1630091716,1,1.0,60.0,5.0,-9.0,4.0,1256537 -3111903,1630220308,1,32,0,1,1630091717,1,1.0,60.0,5.0,-9.0,4.0,1256538 -3111904,1630220553,2,29,0,1,1630091718,2,1.0,40.0,2.0,-9.0,4.0,1256539 -3111905,1630220725,2,33,0,1,1630091719,1,1.0,10.0,6.0,-9.0,4.0,1256540 -3111906,1630220693,2,30,0,1,1630091720,1,1.0,40.0,1.0,-9.0,4.0,1256541 -3111907,1630220360,1,31,0,1,1630091721,1,1.0,40.0,6.0,16.0,2.0,1256542 -3111908,1630220155,1,31,0,1,1630091722,1,1.0,35.0,1.0,-9.0,4.0,1256543 -3111909,1630220116,1,31,0,1,1630091723,2,1.0,80.0,5.0,-9.0,4.0,1256544 -3111910,1630220292,1,30,0,1,1630091724,1,1.0,40.0,1.0,-9.0,4.0,1256545 -3111911,1630220258,1,33,0,1,1630091725,1,1.0,60.0,4.0,-9.0,4.0,1256546 -3111912,1630220271,1,35,0,1,1630091726,1,1.0,22.0,1.0,16.0,4.0,1256547 -3111913,1630220331,1,26,0,1,1630091727,1,1.0,60.0,4.0,-9.0,4.0,1256548 -3111914,1630220293,1,30,0,1,1630091728,1,1.0,40.0,1.0,-9.0,4.0,1256549 -3111915,1630220257,1,27,0,1,1630091729,1,1.0,40.0,1.0,-9.0,4.0,1256550 -3111916,1630220361,1,31,0,1,1630091730,1,1.0,40.0,6.0,16.0,2.0,1256551 -3111917,1630220272,1,35,0,1,1630091731,1,1.0,22.0,1.0,16.0,4.0,1256552 -3111918,1630220273,1,30,0,1,1630091732,1,1.0,50.0,1.0,-9.0,4.0,1256553 -3111919,1630220038,1,26,0,1,1630091733,2,1.0,40.0,5.0,-9.0,4.0,1256554 -3111920,1630220061,1,28,0,1,1630091734,2,1.0,50.0,1.0,16.0,4.0,1256555 -3111921,1630220576,2,31,0,1,1630091735,1,6.0,-9.0,-9.0,-9.0,4.0,1256556 -3111922,1630220574,2,62,6,2,1630091735,2,1.0,37.0,1.0,-9.0,4.0,1256556 -3111923,1630220505,2,30,0,1,1630091736,2,1.0,15.0,4.0,-9.0,4.0,1256557 -3111924,1630220507,2,30,1,2,1630091736,1,6.0,-9.0,-9.0,-9.0,4.0,1256557 -3111925,1630220577,2,31,0,1,1630091737,1,6.0,-9.0,-9.0,-9.0,4.0,1256558 -3111926,1630220575,2,62,6,2,1630091737,2,1.0,37.0,1.0,-9.0,4.0,1256558 -3111927,1630220501,2,35,0,1,1630091738,2,1.0,15.0,5.0,15.0,4.0,1256559 -3111928,1630220503,2,12,2,2,1630091738,2,-9.0,-9.0,-9.0,8.0,-9.0,1256559 -3111929,1630220473,2,34,0,1,1630091739,2,1.0,40.0,1.0,-9.0,4.0,1256560 -3111930,1630220474,2,14,2,2,1630091739,2,-9.0,-9.0,-9.0,11.0,-9.0,1256560 -3111931,1630220513,2,32,0,1,1630091740,2,3.0,-9.0,-9.0,-9.0,4.0,1256561 -3111932,1630220514,2,33,1,2,1630091740,1,1.0,45.0,4.0,-9.0,4.0,1256561 -3111933,1630220006,1,27,0,1,1630091741,2,1.0,20.0,1.0,16.0,4.0,1256562 -3111934,1630220007,1,26,1,2,1630091741,1,3.0,-9.0,-9.0,16.0,4.0,1256562 -3111935,1630220545,2,32,0,1,1630091742,2,1.0,20.0,1.0,-9.0,4.0,1256563 -3111936,1630220546,2,10,2,2,1630091742,1,-9.0,-9.0,-9.0,7.0,-9.0,1256563 -3111937,1630220526,2,29,0,1,1630091743,2,1.0,30.0,1.0,15.0,4.0,1256564 -3111938,1630220527,2,4,2,2,1630091743,2,-9.0,-9.0,-9.0,1.0,-9.0,1256564 -3111939,1630220486,2,43,0,1,1630091744,2,6.0,20.0,6.0,15.0,4.0,1256565 -3111940,1630220487,2,18,2,2,1630091744,1,2.0,20.0,4.0,14.0,4.0,1256565 -3111941,1630220093,1,43,0,1,1630091745,2,6.0,-9.0,-9.0,-9.0,4.0,1256566 -3111942,1630220095,1,52,13,2,1630091745,1,1.0,25.0,1.0,-9.0,4.0,1256566 -3111943,1630220547,2,63,0,1,1630091746,2,1.0,40.0,1.0,-9.0,4.0,1256567 -3111944,1630220548,2,63,0,1,1630091747,2,1.0,40.0,1.0,-9.0,4.0,1256568 -3111945,1630220589,2,58,0,1,1630091748,2,1.0,23.0,2.0,-9.0,4.0,1256569 -3111946,1630220313,1,50,0,1,1630091749,1,1.0,60.0,1.0,-9.0,4.0,1256570 -3111947,1630220327,1,57,0,1,1630091750,1,1.0,45.0,2.0,-9.0,4.0,1256571 -3111948,1630220314,1,50,0,1,1630091751,1,1.0,60.0,1.0,-9.0,4.0,1256572 -3111949,1630220315,1,50,0,1,1630091752,1,1.0,60.0,1.0,-9.0,4.0,1256573 -3111950,1630220336,1,59,0,1,1630091753,1,1.0,50.0,1.0,-9.0,4.0,1256574 -3111951,1630220316,1,50,0,1,1630091754,1,1.0,60.0,1.0,-9.0,4.0,1256575 -3111952,1630220088,1,54,0,1,1630091755,1,1.0,65.0,1.0,-9.0,4.0,1256576 -3111953,1630220085,1,45,1,2,1630091755,2,1.0,40.0,1.0,-9.0,4.0,1256576 -3111954,1630220089,1,54,0,1,1630091756,1,1.0,65.0,1.0,-9.0,4.0,1256577 -3111955,1630220086,1,45,1,2,1630091756,2,1.0,40.0,1.0,-9.0,4.0,1256577 -3111956,1630220090,1,54,0,1,1630091757,1,1.0,65.0,1.0,-9.0,4.0,1256578 -3111957,1630220087,1,45,1,2,1630091757,2,1.0,40.0,1.0,-9.0,4.0,1256578 -3111958,1630220763,2,57,0,1,1630091758,1,6.0,-9.0,-9.0,-9.0,2.0,1256579 -3111959,1630220766,2,63,0,1,1630091759,1,6.0,-9.0,-9.0,-9.0,4.0,1256580 -3111960,1630220638,2,64,0,1,1630091760,1,6.0,-9.0,-9.0,-9.0,2.0,1256581 -3111961,1630220245,1,62,0,1,1630091761,1,6.0,-9.0,-9.0,-9.0,2.0,1256582 -3111962,1630220685,2,47,0,1,1630091762,1,1.0,40.0,1.0,-9.0,4.0,1256583 -3111963,1630220745,2,47,0,1,1630091763,1,1.0,40.0,1.0,-9.0,4.0,1256584 -3111964,1630220746,2,47,0,1,1630091764,1,1.0,40.0,1.0,-9.0,4.0,1256585 -3111965,1630220747,2,47,0,1,1630091765,1,1.0,40.0,1.0,-9.0,4.0,1256586 -3111966,1630220465,2,55,0,1,1630091766,2,1.0,40.0,1.0,-9.0,4.0,1256587 -3111967,1630220028,1,58,0,1,1630091767,2,1.0,40.0,1.0,-9.0,4.0,1256588 -3111968,1630220029,1,58,0,1,1630091768,2,1.0,40.0,1.0,-9.0,4.0,1256589 -3111969,1630220716,2,56,0,1,1630091769,1,1.0,40.0,1.0,-9.0,4.0,1256590 -3111970,1630220773,2,60,0,1,1630091770,1,1.0,45.0,1.0,-9.0,4.0,1256591 -3111971,1630220717,2,56,0,1,1630091771,1,1.0,40.0,1.0,-9.0,4.0,1256592 -3111972,1630220703,2,45,0,1,1630091772,1,1.0,36.0,1.0,-9.0,3.0,1256593 -3111973,1630220774,2,60,0,1,1630091773,1,1.0,45.0,1.0,-9.0,4.0,1256594 -3111974,1630220335,1,64,0,1,1630091774,1,1.0,53.0,1.0,-9.0,4.0,1256595 -3111975,1630220215,1,61,0,1,1630091775,1,1.0,50.0,3.0,-9.0,4.0,1256596 -3111976,1630220197,1,52,0,1,1630091776,1,1.0,40.0,1.0,-9.0,4.0,1256597 -3111977,1630220218,1,57,0,1,1630091777,1,1.0,55.0,1.0,-9.0,4.0,1256598 -3111978,1630220451,2,62,0,1,1630091778,2,1.0,40.0,1.0,-9.0,4.0,1256599 -3111979,1630220453,2,63,1,2,1630091778,1,6.0,-9.0,-9.0,-9.0,4.0,1256599 -3111980,1630220499,2,53,0,1,1630091779,2,1.0,40.0,1.0,-9.0,4.0,1256600 -3111981,1630220500,2,54,1,2,1630091779,1,3.0,-9.0,-9.0,-9.0,4.0,1256600 -3111982,1630219963,2,45,0,1,1630091780,2,1.0,40.0,1.0,-9.0,4.0,1256601 -3111983,1630219962,2,68,6,2,1630091780,2,6.0,-9.0,-9.0,-9.0,4.0,1256601 -3111984,1630219991,1,49,0,1,1630091781,1,1.0,80.0,1.0,-9.0,4.0,1256602 -3111985,1630219990,1,40,1,2,1630091781,2,3.0,-9.0,-9.0,-9.0,4.0,1256602 -3111986,1630220715,2,45,0,1,1630091782,1,1.0,40.0,1.0,-9.0,4.0,1256603 -3111987,1630220145,1,48,0,1,1630091783,2,1.0,50.0,1.0,-9.0,4.0,1256604 -3111988,1630220158,1,63,0,1,1630091784,1,1.0,92.0,1.0,-9.0,4.0,1256605 -3111989,1630220411,2,51,0,1,1630091785,2,6.0,-9.0,-9.0,-9.0,4.0,1256606 -3111990,1630220592,2,50,0,1,1630091786,2,3.0,-9.0,-9.0,-9.0,4.0,1256607 -3111991,1630220769,2,57,0,1,1630091787,1,6.0,-9.0,-9.0,-9.0,2.0,1256608 -3111992,1630220749,2,56,0,1,1630091788,1,6.0,-9.0,-9.0,-9.0,4.0,1256609 -3111993,1630220579,2,45,0,1,1630091789,2,6.0,-9.0,-9.0,-9.0,4.0,1256610 -3111994,1630220704,2,51,0,1,1630091790,1,6.0,-9.0,-9.0,-9.0,2.0,1256611 -3111995,1630220776,2,61,0,1,1630091791,1,3.0,-9.0,-9.0,15.0,4.0,1256612 -3111996,1630220669,2,63,0,1,1630091792,1,6.0,-9.0,-9.0,-9.0,4.0,1256613 -3111997,1630220708,2,56,0,1,1630091793,1,6.0,-9.0,-9.0,-9.0,2.0,1256614 -3111998,1630220551,2,57,0,1,1630091794,2,6.0,-9.0,-9.0,-9.0,4.0,1256615 -3111999,1630220777,2,61,0,1,1630091795,1,3.0,-9.0,-9.0,15.0,4.0,1256616 -3112000,1630220552,2,57,0,1,1630091796,2,6.0,-9.0,-9.0,-9.0,4.0,1256617 -3112001,1630220447,2,47,0,1,1630091797,2,6.0,-9.0,-9.0,-9.0,4.0,1256618 -3112002,1630220779,2,63,0,1,1630091798,1,6.0,-9.0,-9.0,-9.0,4.0,1256619 -3112003,1630220687,2,64,0,1,1630091799,1,6.0,-9.0,-9.0,-9.0,4.0,1256620 -3112004,1630220580,2,45,0,1,1630091800,2,6.0,-9.0,-9.0,-9.0,4.0,1256621 -3112005,1630220492,2,62,0,1,1630091801,2,6.0,-9.0,-9.0,-9.0,4.0,1256622 -3112006,1630220396,2,61,0,1,1630091802,2,6.0,-9.0,-9.0,-9.0,4.0,1256623 -3112007,1630220485,2,50,0,1,1630091803,2,6.0,-9.0,-9.0,-9.0,4.0,1256624 -3112008,1630220655,2,47,0,1,1630091804,1,3.0,-9.0,-9.0,-9.0,2.0,1256625 -3112009,1630220710,2,60,0,1,1630091805,1,6.0,-9.0,-9.0,-9.0,4.0,1256626 -3112010,1630220662,2,54,0,1,1630091806,1,6.0,-9.0,-9.0,-9.0,4.0,1256627 -3112011,1630220458,2,55,0,1,1630091807,2,6.0,-9.0,-9.0,-9.0,4.0,1256628 -3112012,1630220690,2,60,0,1,1630091808,1,6.0,-9.0,-9.0,-9.0,4.0,1256629 -3112013,1630220625,2,53,0,1,1630091809,1,6.0,-9.0,-9.0,-9.0,4.0,1256630 -3112014,1630220719,2,63,0,1,1630091810,1,6.0,-9.0,-9.0,-9.0,4.0,1256631 -3112015,1630220403,2,57,0,1,1630091811,2,6.0,-9.0,-9.0,-9.0,4.0,1256632 -3112016,1630220477,2,59,0,1,1630091812,2,6.0,-9.0,-9.0,-9.0,4.0,1256633 -3112017,1630220672,2,54,0,1,1630091813,1,6.0,-9.0,-9.0,-9.0,2.0,1256634 -3112018,1630220785,2,50,0,1,1630091814,1,6.0,-9.0,-9.0,-9.0,4.0,1256635 -3112019,1630220554,2,52,0,1,1630091815,2,6.0,-9.0,-9.0,-9.0,4.0,1256636 -3112020,1630220409,2,46,0,1,1630091816,2,3.0,40.0,6.0,-9.0,4.0,1256637 -3112021,1630220572,2,58,0,1,1630091817,2,6.0,-9.0,-9.0,-9.0,4.0,1256638 -3112022,1630220688,2,64,0,1,1630091818,1,6.0,-9.0,-9.0,-9.0,4.0,1256639 -3112023,1630220709,2,54,0,1,1630091819,1,6.0,-9.0,-9.0,-9.0,4.0,1256640 -3112024,1630220670,2,46,0,1,1630091820,1,6.0,-9.0,-9.0,-9.0,4.0,1256641 -3112025,1630220446,2,63,0,1,1630091821,2,6.0,-9.0,-9.0,-9.0,4.0,1256642 -3112026,1630220770,2,57,0,1,1630091822,1,6.0,-9.0,-9.0,-9.0,2.0,1256643 -3112027,1630220459,2,58,0,1,1630091823,2,6.0,-9.0,-9.0,-9.0,4.0,1256644 -3112028,1630220422,2,64,0,1,1630091824,2,6.0,-9.0,-9.0,-9.0,4.0,1256645 -3112029,1630220611,2,54,0,1,1630091825,1,6.0,-9.0,-9.0,-9.0,4.0,1256646 -3112030,1630220557,2,62,0,1,1630091826,2,6.0,-9.0,-9.0,-9.0,4.0,1256647 -3112031,1630220684,2,50,0,1,1630091827,1,3.0,-9.0,-9.0,-9.0,4.0,1256648 -3112032,1630220691,2,60,0,1,1630091828,1,6.0,-9.0,-9.0,-9.0,4.0,1256649 -3112033,1630220736,2,64,0,1,1630091829,1,6.0,-9.0,-9.0,-9.0,2.0,1256650 -3112034,1630220541,2,62,0,1,1630091830,2,6.0,-9.0,-9.0,-9.0,4.0,1256651 -3112035,1630220683,2,52,0,1,1630091831,1,6.0,-9.0,-9.0,-9.0,2.0,1256652 -3112036,1630220673,2,54,0,1,1630091832,1,6.0,-9.0,-9.0,-9.0,2.0,1256653 -3112037,1630220462,2,63,0,1,1630091833,2,6.0,-9.0,-9.0,-9.0,4.0,1256654 -3112038,1630220599,2,63,0,1,1630091834,2,6.0,-9.0,-9.0,-9.0,4.0,1256655 -3112039,1630220626,2,53,0,1,1630091835,1,6.0,-9.0,-9.0,-9.0,4.0,1256656 -3112040,1630220705,2,51,0,1,1630091836,1,6.0,-9.0,-9.0,-9.0,2.0,1256657 -3112041,1630220721,2,45,0,1,1630091837,1,6.0,-9.0,-9.0,-9.0,4.0,1256658 -3112042,1630220657,2,54,0,1,1630091838,1,6.0,-9.0,-9.0,-9.0,4.0,1256659 -3112043,1630220714,2,64,0,1,1630091839,1,6.0,-9.0,-9.0,-9.0,2.0,1256660 -3112044,1630220646,2,60,0,1,1630091840,1,3.0,-9.0,-9.0,-9.0,4.0,1256661 -3112045,1630220778,2,62,0,1,1630091841,1,6.0,-9.0,-9.0,-9.0,2.0,1256662 -3112046,1630220581,2,59,0,1,1630091842,2,6.0,-9.0,-9.0,-9.0,4.0,1256663 -3112047,1630220627,2,53,0,1,1630091843,1,6.0,-9.0,-9.0,-9.0,4.0,1256664 -3112048,1630220419,2,61,0,1,1630091844,2,6.0,12.0,6.0,-9.0,4.0,1256665 -3112049,1630220722,2,51,0,1,1630091845,1,3.0,-9.0,-9.0,-9.0,4.0,1256666 -3112050,1630220538,2,62,0,1,1630091846,2,6.0,-9.0,-9.0,-9.0,4.0,1256667 -3112051,1630220694,2,56,0,1,1630091847,1,3.0,-9.0,-9.0,-9.0,2.0,1256668 -3112052,1630220711,2,60,0,1,1630091848,1,6.0,-9.0,-9.0,-9.0,4.0,1256669 -3112053,1630220645,2,55,0,1,1630091849,1,6.0,-9.0,-9.0,-9.0,2.0,1256670 -3112054,1630220628,2,54,0,1,1630091850,1,6.0,20.0,4.0,-9.0,4.0,1256671 -3112055,1630220724,2,62,0,1,1630091851,1,6.0,-9.0,-9.0,-9.0,4.0,1256672 -3112056,1630220647,2,60,0,1,1630091852,1,3.0,-9.0,-9.0,-9.0,4.0,1256673 -3112057,1630220630,2,59,0,1,1630091853,1,6.0,11.0,6.0,-9.0,4.0,1256674 -3112058,1630220706,2,51,0,1,1630091854,1,6.0,-9.0,-9.0,-9.0,2.0,1256675 -3112059,1630220658,2,54,0,1,1630091855,1,6.0,-9.0,-9.0,-9.0,4.0,1256676 -3112060,1630220737,2,64,0,1,1630091856,1,6.0,-9.0,-9.0,-9.0,2.0,1256677 -3112061,1630220713,2,58,0,1,1630091857,1,6.0,-9.0,-9.0,-9.0,4.0,1256678 -3112062,1630220712,2,56,0,1,1630091858,1,3.0,-9.0,-9.0,-9.0,4.0,1256679 -3112063,1630220602,2,55,0,1,1630091859,1,6.0,-9.0,-9.0,-9.0,4.0,1256680 -3112064,1630220648,2,58,0,1,1630091860,1,6.0,-9.0,-9.0,-9.0,4.0,1256681 -3112065,1630220603,2,55,0,1,1630091861,1,6.0,-9.0,-9.0,-9.0,4.0,1256682 -3112066,1630220720,2,63,0,1,1630091862,1,6.0,-9.0,-9.0,-9.0,4.0,1256683 -3112067,1630220523,2,56,0,1,1630091863,2,3.0,-9.0,-9.0,-9.0,4.0,1256684 -3112068,1630220733,2,47,0,1,1630091864,1,6.0,-9.0,-9.0,-9.0,4.0,1256685 -3112069,1630220674,2,49,0,1,1630091865,1,3.0,-9.0,-9.0,-9.0,4.0,1256686 -3112070,1630220707,2,56,0,1,1630091866,1,6.0,-9.0,-9.0,-9.0,4.0,1256687 -3112071,1630220834,4,46,0,1,1630091867,2,6.0,10.0,6.0,15.0,4.0,1256688 -3112072,1630220337,1,53,0,1,1630091868,1,6.0,8.0,6.0,-9.0,4.0,1256689 -3112073,1630220332,1,51,0,1,1630091869,1,6.0,-9.0,-9.0,-9.0,2.0,1256690 -3112074,1630220309,1,50,0,1,1630091870,1,3.0,-9.0,-9.0,-9.0,2.0,1256691 -3112075,1630220246,1,64,0,1,1630091871,1,6.0,-9.0,-9.0,-9.0,4.0,1256692 -3112076,1630220247,1,64,0,1,1630091872,1,6.0,-9.0,-9.0,-9.0,4.0,1256693 -3112077,1630220187,1,64,0,1,1630091873,1,6.0,-9.0,-9.0,-9.0,2.0,1256694 -3112078,1630220109,1,62,0,1,1630091874,2,6.0,-9.0,-9.0,-9.0,4.0,1256695 -3112079,1630220136,1,60,0,1,1630091875,2,6.0,-9.0,-9.0,-9.0,4.0,1256696 -3112080,1630220188,1,64,0,1,1630091876,1,6.0,-9.0,-9.0,-9.0,2.0,1256697 -3112081,1630220032,1,60,0,1,1630091877,2,6.0,-9.0,-9.0,-9.0,4.0,1256698 -3112082,1630220248,1,64,0,1,1630091878,1,6.0,-9.0,-9.0,-9.0,4.0,1256699 -3112083,1630220310,1,50,0,1,1630091879,1,3.0,-9.0,-9.0,-9.0,2.0,1256700 -3112084,1630220170,1,45,0,1,1630091880,1,6.0,-9.0,-9.0,-9.0,4.0,1256701 -3112085,1630220189,1,64,0,1,1630091881,1,6.0,-9.0,-9.0,-9.0,2.0,1256702 -3112086,1630220190,1,64,0,1,1630091882,1,6.0,-9.0,-9.0,-9.0,2.0,1256703 -3112087,1630220033,1,60,0,1,1630091883,2,6.0,-9.0,-9.0,-9.0,4.0,1256704 -3112088,1630220269,1,60,0,1,1630091884,1,6.0,-9.0,-9.0,15.0,4.0,1256705 -3112089,1630220249,1,64,0,1,1630091885,1,6.0,-9.0,-9.0,-9.0,4.0,1256706 -3112090,1630220030,3,61,0,1,1630091886,2,6.0,-9.0,-9.0,-9.0,4.0,1256707 -3112091,1630220663,2,54,0,1,1630091887,1,6.0,45.0,5.0,-9.0,4.0,1256708 -3112092,1630220718,2,63,0,1,1630091888,1,6.0,-9.0,-9.0,-9.0,2.0,1256709 -3112093,1630220678,2,64,0,1,1630091889,1,6.0,-9.0,-9.0,-9.0,2.0,1256710 -3112094,1630220656,2,58,0,1,1630091890,1,6.0,-9.0,-9.0,-9.0,4.0,1256711 -3112095,1630220741,2,62,0,1,1630091891,1,6.0,40.0,5.0,-9.0,4.0,1256712 -3112096,1630220255,1,64,0,1,1630091892,1,6.0,12.0,5.0,-9.0,4.0,1256713 -3112097,1630220467,2,57,0,1,1630091893,2,6.0,-9.0,-9.0,-9.0,4.0,1256714 -3112098,1630220469,2,30,2,2,1630091893,1,6.0,-9.0,-9.0,-9.0,4.0,1256714 -3112099,1630220387,2,57,0,1,1630091894,1,6.0,-9.0,-9.0,-9.0,2.0,1256715 -3112100,1630220384,2,45,13,2,1630091894,2,6.0,-9.0,-9.0,-9.0,4.0,1256715 -3112101,1630220569,2,55,0,1,1630091895,2,6.0,-9.0,-9.0,-9.0,4.0,1256716 -3112102,1630220570,2,55,15,2,1630091895,1,6.0,-9.0,-9.0,-9.0,4.0,1256716 -3112103,1630220450,2,55,0,1,1630091896,1,6.0,-9.0,-9.0,-9.0,4.0,1256717 -3112104,1630220401,2,50,0,1,1630091897,1,6.0,-9.0,-9.0,-9.0,4.0,1256718 -3112105,1630220399,2,35,2,2,1630091897,2,6.0,-9.0,-9.0,-9.0,4.0,1256718 -3112106,1630219960,2,51,0,1,1630091898,1,3.0,-9.0,-9.0,-9.0,4.0,1256719 -3112107,1630220488,2,49,0,1,1630091899,2,6.0,-9.0,-9.0,-9.0,4.0,1256720 -3112108,1630220490,2,56,13,2,1630091899,1,6.0,-9.0,-9.0,-9.0,4.0,1256720 -3112109,1630220641,2,61,0,1,1630091900,1,6.0,-9.0,-9.0,-9.0,2.0,1256721 -3112110,1630220643,2,26,10,2,1630091900,1,3.0,-9.0,-9.0,-9.0,4.0,1256721 -3112111,1630220642,2,61,0,1,1630091901,1,6.0,-9.0,-9.0,-9.0,2.0,1256722 -3112112,1630220644,2,26,10,2,1630091901,1,3.0,-9.0,-9.0,-9.0,4.0,1256722 -3112113,1630220388,2,57,0,1,1630091902,1,6.0,-9.0,-9.0,-9.0,2.0,1256723 -3112114,1630220385,2,45,13,2,1630091902,2,6.0,-9.0,-9.0,-9.0,4.0,1256723 -3112115,1630220489,2,49,0,1,1630091903,2,6.0,-9.0,-9.0,-9.0,4.0,1256724 -3112116,1630220491,2,56,13,2,1630091903,1,6.0,-9.0,-9.0,-9.0,4.0,1256724 -3112117,1630220389,2,57,0,1,1630091904,1,6.0,-9.0,-9.0,-9.0,2.0,1256725 -3112118,1630220386,2,45,13,2,1630091904,2,6.0,-9.0,-9.0,-9.0,4.0,1256725 -3112119,1630220616,2,60,0,1,1630091905,1,6.0,-9.0,-9.0,-9.0,4.0,1256726 -3112120,1630220402,2,50,0,1,1630091906,1,6.0,-9.0,-9.0,-9.0,4.0,1256727 -3112121,1630220539,2,54,0,1,1630091907,2,6.0,-9.0,-9.0,-9.0,4.0,1256728 -3112122,1630220540,2,64,11,2,1630091907,1,6.0,-9.0,-9.0,-9.0,4.0,1256728 -3112123,1630220468,2,57,0,1,1630091908,2,6.0,-9.0,-9.0,-9.0,4.0,1256729 -3112124,1630220470,2,30,2,2,1630091908,1,6.0,-9.0,-9.0,-9.0,4.0,1256729 -3112125,1630220567,2,59,0,1,1630091909,2,6.0,-9.0,-9.0,-9.0,4.0,1256730 -3112126,1630220568,2,53,13,2,1630091909,1,6.0,-9.0,-9.0,-9.0,4.0,1256730 -3112127,1630220010,1,51,0,1,1630091910,2,6.0,-9.0,-9.0,-9.0,4.0,1256731 -3112128,1630220012,1,44,12,2,1630091910,1,3.0,15.0,6.0,-9.0,4.0,1256731 -3112129,1630220011,1,51,0,1,1630091911,2,6.0,-9.0,-9.0,-9.0,4.0,1256732 -3112130,1630220013,1,44,12,2,1630091911,1,3.0,15.0,6.0,-9.0,4.0,1256732 -3112131,1630220356,3,48,0,1,1630091912,1,6.0,-9.0,-9.0,-9.0,4.0,1256733 -3112132,1630220358,3,47,5,2,1630091912,1,6.0,-9.0,-9.0,-9.0,4.0,1256733 -3112133,1630220423,2,53,0,1,1630091913,2,6.0,-9.0,-9.0,-9.0,4.0,1256734 -3112134,1630220424,2,4,7,2,1630091913,1,-9.0,-9.0,-9.0,1.0,-9.0,1256734 -3112135,1630220730,2,52,0,1,1630091914,1,6.0,-9.0,-9.0,-9.0,4.0,1256735 -3112136,1630220731,2,4,2,2,1630091914,2,-9.0,-9.0,-9.0,1.0,-9.0,1256735 -3112137,1630220378,2,51,0,1,1630091915,2,6.0,-9.0,-9.0,-9.0,4.0,1256736 -3112138,1630220379,2,16,2,2,1630091915,1,6.0,-9.0,-9.0,10.0,-9.0,1256736 -3112139,1630220481,2,63,0,1,1630091916,2,6.0,-9.0,-9.0,-9.0,4.0,1256737 -3112140,1630220482,2,47,2,2,1630091916,1,6.0,-9.0,-9.0,-9.0,4.0,1256737 -3112141,1630220519,2,56,0,1,1630091917,2,6.0,-9.0,-9.0,-9.0,4.0,1256738 -3112142,1630220520,2,21,2,2,1630091917,2,6.0,-9.0,-9.0,15.0,4.0,1256738 -3112143,1630220276,1,57,0,1,1630091918,1,3.0,20.0,6.0,-9.0,4.0,1256739 -3112144,1630220277,1,75,10,2,1630091918,1,6.0,-9.0,-9.0,-9.0,2.0,1256739 -3112145,1630220689,2,55,0,1,1630091919,1,1.0,40.0,2.0,-9.0,4.0,1256740 -3112146,1630220442,2,49,0,1,1630091920,2,1.0,30.0,1.0,13.0,4.0,1256741 -3112147,1630220649,2,51,0,1,1630091921,1,1.0,20.0,1.0,-9.0,2.0,1256742 -3112148,1630220433,2,59,0,1,1630091922,2,1.0,20.0,4.0,-9.0,4.0,1256743 -3112149,1630220692,2,59,0,1,1630091923,1,1.0,40.0,1.0,-9.0,2.0,1256744 -3112150,1630220756,2,58,0,1,1630091924,1,2.0,20.0,6.0,-9.0,2.0,1256745 -3112151,1630220771,2,46,0,1,1630091925,1,1.0,32.0,6.0,-9.0,4.0,1256746 -3112152,1630220728,2,48,0,1,1630091926,1,1.0,40.0,1.0,-9.0,4.0,1256747 -3112153,1630220478,2,56,0,1,1630091927,2,1.0,99.0,1.0,-9.0,4.0,1256748 -3112154,1630220445,2,59,0,1,1630091928,2,1.0,40.0,1.0,-9.0,4.0,1256749 -3112155,1630220695,2,56,0,1,1630091929,1,1.0,32.0,1.0,-9.0,2.0,1256750 -3112156,1630220783,2,45,0,1,1630091930,1,1.0,12.0,5.0,-9.0,4.0,1256751 -3112157,1630220757,2,58,0,1,1630091931,1,2.0,20.0,6.0,-9.0,2.0,1256752 -3112158,1630220758,2,58,0,1,1630091932,1,2.0,20.0,6.0,-9.0,2.0,1256753 -3112159,1630220729,2,48,0,1,1630091933,1,1.0,40.0,1.0,-9.0,4.0,1256754 -3112160,1630220686,2,54,0,1,1630091934,1,1.0,25.0,1.0,-9.0,4.0,1256755 -3112161,1630220650,2,51,0,1,1630091935,1,1.0,20.0,1.0,-9.0,2.0,1256756 -3112162,1630220259,1,55,0,1,1630091936,1,1.0,50.0,1.0,-9.0,4.0,1256757 -3112163,1630220751,2,60,0,1,1630091937,1,1.0,35.0,1.0,-9.0,4.0,1256758 -3112164,1630220754,2,45,0,1,1630091938,1,1.0,48.0,1.0,-9.0,4.0,1256759 -3112165,1630220558,2,46,0,1,1630091939,2,1.0,38.0,1.0,-9.0,4.0,1256760 -3112166,1630220275,1,55,0,1,1630091940,1,1.0,40.0,3.0,-9.0,4.0,1256761 -3112167,1630220289,1,48,0,1,1630091941,1,2.0,40.0,3.0,-9.0,4.0,1256762 -3112168,1630220532,2,62,0,1,1630091942,2,3.0,40.0,6.0,-9.0,4.0,1256763 -3112169,1630220533,2,23,2,2,1630091942,2,1.0,23.0,5.0,-9.0,4.0,1256763 -3112170,1630220549,2,52,0,1,1630091943,2,1.0,8.0,6.0,-9.0,4.0,1256764 -3112171,1630220550,2,60,15,2,1630091943,1,6.0,-9.0,-9.0,-9.0,4.0,1256764 -3112172,1630220497,2,52,0,1,1630091944,2,6.0,-9.0,-9.0,-9.0,4.0,1256765 -3112173,1630220498,2,22,2,2,1630091944,1,1.0,21.0,1.0,-9.0,4.0,1256765 -3112174,1630220105,1,62,0,1,1630091945,1,1.0,20.0,6.0,-9.0,2.0,1256766 -3112175,1630220103,1,51,13,2,1630091945,2,6.0,-9.0,-9.0,-9.0,4.0,1256766 -3112176,1630220106,1,62,0,1,1630091946,1,1.0,20.0,6.0,-9.0,2.0,1256767 -3112177,1630220104,1,51,13,2,1630091946,2,6.0,-9.0,-9.0,-9.0,4.0,1256767 -3112178,1630220404,2,50,0,1,1630091947,2,1.0,40.0,1.0,-9.0,4.0,1256768 -3112179,1630220405,2,24,2,2,1630091947,2,3.0,-9.0,-9.0,-9.0,4.0,1256768 -3112180,1630220420,2,55,0,1,1630091948,2,1.0,20.0,4.0,-9.0,4.0,1256769 -3112181,1630220421,2,23,2,2,1630091948,1,6.0,-9.0,-9.0,-9.0,4.0,1256769 -3112182,1630220793,2,80,0,1,1630091949,1,6.0,-9.0,-9.0,-9.0,4.0,1256770 -3112183,1630220436,2,69,0,1,1630091950,1,6.0,-9.0,-9.0,-9.0,2.0,1256771 -3112184,1630220838,1,69,0,1,1630091951,1,1.0,60.0,1.0,-9.0,4.0,1256772 -3112185,1630220839,1,69,0,1,1630091952,1,1.0,60.0,1.0,-9.0,4.0,1256773 -3112186,1630220840,1,67,0,1,1630091953,1,1.0,40.0,1.0,-9.0,4.0,1256774 -3112187,1630219981,1,65,0,1,1630091954,2,6.0,-9.0,-9.0,-9.0,4.0,1256775 -3112188,1630219984,1,77,1,2,1630091954,1,1.0,50.0,1.0,-9.0,4.0,1256775 -3112189,1630219982,1,65,0,1,1630091955,2,6.0,-9.0,-9.0,-9.0,4.0,1256776 -3112190,1630219985,1,77,1,2,1630091955,1,1.0,50.0,1.0,-9.0,4.0,1256776 -3112191,1630220788,2,66,0,1,1630091956,1,6.0,-9.0,-9.0,-9.0,2.0,1256777 -3112192,1630219964,2,66,0,1,1630091957,2,6.0,-9.0,-9.0,-9.0,4.0,1256778 -3112193,1630219923,2,87,0,1,1630091958,2,6.0,-9.0,-9.0,-9.0,4.0,1256779 -3112194,1630219970,2,85,0,1,1630091959,2,6.0,-9.0,-9.0,-9.0,4.0,1256780 -3112195,1630220807,2,69,0,1,1630091960,1,6.0,-9.0,-9.0,-9.0,2.0,1256781 -3112196,1630219954,2,90,0,1,1630091961,2,6.0,-9.0,-9.0,-9.0,4.0,1256782 -3112197,1630219956,1,56,11,2,1630091961,1,6.0,-9.0,-9.0,-9.0,4.0,1256782 -3112198,1630219955,2,90,0,1,1630091962,2,6.0,-9.0,-9.0,-9.0,4.0,1256783 -3112199,1630219957,1,56,11,2,1630091962,1,6.0,-9.0,-9.0,-9.0,4.0,1256783 -3112200,1630220213,1,87,0,1,1630091963,1,6.0,-9.0,-9.0,-9.0,2.0,1256784 -3112201,1630220211,1,51,12,2,1630091963,1,6.0,-9.0,-9.0,-9.0,4.0,1256784 -3112202,1630220214,1,87,0,1,1630091964,1,6.0,-9.0,-9.0,-9.0,2.0,1256785 -3112203,1630220212,1,51,12,2,1630091964,1,6.0,-9.0,-9.0,-9.0,4.0,1256785 -3112204,1630220811,2,74,0,1,1630091965,1,6.0,-9.0,-9.0,-9.0,2.0,1256786 -3112205,1630219920,2,70,0,1,1630091966,2,6.0,-9.0,-9.0,-9.0,4.0,1256787 -3112206,1630219925,2,72,0,1,1630091967,2,6.0,-9.0,-9.0,-9.0,3.0,1256788 -3112207,1630219943,2,66,0,1,1630091968,2,6.0,-9.0,-9.0,-9.0,4.0,1256789 -3112208,1630219936,2,65,0,1,1630091969,2,6.0,-9.0,-9.0,-9.0,4.0,1256790 -3112209,1630220790,2,71,0,1,1630091970,1,6.0,-9.0,-9.0,-9.0,4.0,1256791 -3112210,1630219919,2,81,0,1,1630091971,2,6.0,-9.0,-9.0,-9.0,4.0,1256792 -3112211,1630220824,2,66,0,1,1630091972,1,6.0,-9.0,-9.0,-9.0,2.0,1256793 -3112212,1630220820,2,70,0,1,1630091973,1,6.0,-9.0,-9.0,-9.0,3.0,1256794 -3112213,1630220795,2,69,0,1,1630091974,1,6.0,-9.0,-9.0,-9.0,4.0,1256795 -3112214,1630219953,2,67,0,1,1630091975,2,6.0,-9.0,-9.0,-9.0,4.0,1256796 -3112215,1630220803,2,72,0,1,1630091976,1,3.0,-9.0,-9.0,15.0,2.0,1256797 -3112216,1630219966,2,73,0,1,1630091977,2,6.0,-9.0,-9.0,-9.0,4.0,1256798 -3112217,1630219961,2,69,0,1,1630091978,2,6.0,-9.0,-9.0,-9.0,4.0,1256799 -3112218,1630220797,2,69,0,1,1630091979,1,6.0,-9.0,-9.0,-9.0,2.0,1256800 -3112219,1630219929,2,70,0,1,1630091980,2,6.0,-9.0,-9.0,-9.0,4.0,1256801 -3112220,1630219938,2,85,0,1,1630091981,2,6.0,-9.0,-9.0,-9.0,4.0,1256802 -3112221,1630220822,2,76,0,1,1630091982,1,6.0,-9.0,-9.0,-9.0,4.0,1256803 -3112222,1630219926,2,82,0,1,1630091983,2,6.0,-9.0,-9.0,-9.0,4.0,1256804 -3112223,1630220792,2,78,0,1,1630091984,1,6.0,-9.0,-9.0,-9.0,4.0,1256805 -3112224,1630219952,2,94,0,1,1630091985,2,6.0,-9.0,-9.0,-9.0,4.0,1256806 -3112225,1630219942,2,73,0,1,1630091986,2,6.0,-9.0,-9.0,-9.0,4.0,1256807 -3112226,1630219969,2,79,0,1,1630091987,2,6.0,-9.0,-9.0,-9.0,4.0,1256808 -3112227,1630220799,2,65,0,1,1630091988,1,6.0,-9.0,-9.0,-9.0,4.0,1256809 -3112228,1630220812,2,66,0,1,1630091989,1,6.0,-9.0,-9.0,-9.0,4.0,1256810 -3112229,1630220798,2,69,0,1,1630091990,1,6.0,-9.0,-9.0,-9.0,2.0,1256811 -3112230,1630220808,2,67,0,1,1630091991,1,6.0,-9.0,-9.0,-9.0,4.0,1256812 -3112231,1630220800,2,79,0,1,1630091992,1,6.0,-9.0,-9.0,-9.0,2.0,1256813 -3112232,1630220821,2,82,0,1,1630091993,1,6.0,-9.0,-9.0,-9.0,2.0,1256814 -3112233,1630220816,2,76,0,1,1630091994,1,6.0,-9.0,-9.0,-9.0,2.0,1256815 -3112234,1630219924,2,65,0,1,1630091995,2,6.0,-9.0,-9.0,-9.0,4.0,1256816 -3112235,1630220789,2,67,0,1,1630091996,1,6.0,-9.0,-9.0,-9.0,2.0,1256817 -3112236,1630220791,2,71,0,1,1630091997,1,6.0,-9.0,-9.0,-9.0,4.0,1256818 -3112237,1630220815,2,79,0,1,1630091998,1,6.0,-9.0,-9.0,-9.0,4.0,1256819 -3112238,1630220813,2,66,0,1,1630091999,1,6.0,-9.0,-9.0,-9.0,4.0,1256820 -3112239,1630219965,2,80,0,1,1630092000,2,6.0,-9.0,-9.0,-9.0,4.0,1256821 -3112240,1630220823,2,76,0,1,1630092001,1,6.0,-9.0,-9.0,-9.0,4.0,1256822 -3112241,1630220796,2,69,0,1,1630092002,1,6.0,-9.0,-9.0,-9.0,4.0,1256823 -3112242,1630219958,2,67,0,1,1630092003,2,6.0,-9.0,-9.0,-9.0,4.0,1256824 -3112243,1630219945,2,74,0,1,1630092004,2,6.0,-9.0,-9.0,-9.0,4.0,1256825 -3112244,1630220814,2,66,0,1,1630092005,1,6.0,-9.0,-9.0,-9.0,4.0,1256826 -3112245,1630219937,2,65,0,1,1630092006,2,6.0,-9.0,-9.0,-9.0,4.0,1256827 -3112246,1630219989,1,76,0,1,1630092007,2,6.0,-9.0,-9.0,-9.0,4.0,1256828 -3112247,1630219978,1,65,0,1,1630092008,2,6.0,-9.0,-9.0,-9.0,4.0,1256829 -3112248,1630219975,1,76,0,1,1630092009,2,6.0,-9.0,-9.0,-9.0,4.0,1256830 -3112249,1630220841,1,66,0,1,1630092010,1,6.0,-9.0,-9.0,-9.0,4.0,1256831 -3112250,1630219976,1,76,0,1,1630092011,2,6.0,-9.0,-9.0,-9.0,4.0,1256832 -3112251,1630220844,1,77,0,1,1630092012,1,6.0,-9.0,-9.0,-9.0,4.0,1256833 -3112252,1630220842,1,66,0,1,1630092013,1,6.0,-9.0,-9.0,-9.0,4.0,1256834 -3112253,1630219977,1,76,0,1,1630092014,2,6.0,-9.0,-9.0,-9.0,4.0,1256835 -3112254,1630220843,1,66,0,1,1630092015,1,6.0,-9.0,-9.0,-9.0,4.0,1256836 -3112255,1630220836,1,74,0,1,1630092016,1,6.0,-9.0,-9.0,-9.0,3.0,1256837 -3112256,1630219973,3,69,0,1,1630092017,2,6.0,-9.0,-9.0,-9.0,4.0,1256838 -3112257,1630220801,2,76,0,1,1630092018,1,3.0,-9.0,-9.0,-9.0,4.0,1256839 -3112258,1630220804,2,75,0,1,1630092019,1,6.0,-9.0,-9.0,-9.0,2.0,1256840 -3112259,1630220806,2,80,0,1,1630092020,1,6.0,-9.0,-9.0,-9.0,4.0,1256841 -3112260,1630220805,2,75,0,1,1630092021,1,6.0,-9.0,-9.0,-9.0,2.0,1256842 -3112261,1630219972,2,90,0,1,1630092022,1,6.0,-9.0,-9.0,-9.0,2.0,1256843 -3112262,1630220428,2,77,0,1,1630092023,1,6.0,-9.0,-9.0,-9.0,2.0,1256844 -3112263,1630220427,2,62,1,2,1630092023,2,6.0,-9.0,-9.0,-9.0,4.0,1256844 -3112264,1630219941,2,76,0,1,1630092024,1,6.0,-9.0,-9.0,-9.0,2.0,1256845 -3112265,1630219940,2,68,1,2,1630092024,2,6.0,-9.0,-9.0,-9.0,4.0,1256845 -3112266,1630219930,2,71,0,1,1630092025,2,6.0,-9.0,-9.0,-9.0,4.0,1256846 -3112267,1630219932,2,74,1,2,1630092025,1,6.0,-9.0,-9.0,-9.0,4.0,1256846 -3112268,1630220529,2,69,0,1,1630092026,1,6.0,-9.0,-9.0,-9.0,2.0,1256847 -3112269,1630220528,2,61,12,2,1630092026,2,6.0,-9.0,-9.0,-9.0,4.0,1256847 -3112270,1630219931,2,71,0,1,1630092027,2,6.0,-9.0,-9.0,-9.0,4.0,1256848 -3112271,1630219933,2,74,1,2,1630092027,1,6.0,-9.0,-9.0,-9.0,4.0,1256848 -3112272,1630220036,1,77,0,1,1630092028,1,6.0,-9.0,-9.0,-9.0,4.0,1256849 -3112273,1630220034,1,55,15,2,1630092028,2,6.0,-9.0,-9.0,-9.0,4.0,1256849 -3112274,1630220156,1,24,0,1,1630092029,1,1.0,45.0,1.0,-9.0,4.0,1256850 -3112275,1630219998,1,24,0,1,1630092030,2,1.0,40.0,1.0,-9.0,4.0,1256851 -3112276,1630220001,1,26,1,2,1630092030,1,6.0,40.0,6.0,16.0,4.0,1256851 -3112277,1630219999,1,24,0,1,1630092031,2,1.0,40.0,1.0,-9.0,4.0,1256852 -3112278,1630220002,1,26,1,2,1630092031,1,6.0,40.0,6.0,16.0,4.0,1256852 -3112279,1630220000,1,24,0,1,1630092032,2,1.0,40.0,1.0,-9.0,4.0,1256853 -3112280,1630220196,1,24,0,1,1630092033,1,1.0,55.0,1.0,-9.0,4.0,1256854 -3112281,1630220080,1,23,0,1,1630092034,2,1.0,45.0,1.0,-9.0,4.0,1256855 -3112282,1630220081,1,23,12,2,1630092034,2,1.0,24.0,1.0,-9.0,4.0,1256855 -3112283,1630220410,2,24,0,1,1630092035,2,6.0,10.0,6.0,15.0,4.0,1256856 -3112284,1630220701,2,19,0,1,1630092036,1,3.0,-9.0,-9.0,-9.0,4.0,1256857 -3112285,1630220364,1,22,0,1,1630092037,1,6.0,28.0,4.0,16.0,4.0,1256858 -3112286,1630220365,1,22,0,1,1630092038,1,6.0,28.0,4.0,16.0,4.0,1256859 -3112287,1630220209,1,24,0,1,1630092039,1,3.0,20.0,5.0,-9.0,4.0,1256860 -3112288,1630220210,1,24,0,1,1630092040,1,3.0,20.0,5.0,-9.0,4.0,1256861 -3112289,1630220298,1,20,0,1,1630092041,1,6.0,35.0,5.0,15.0,4.0,1256862 -3112290,1630220130,1,24,0,1,1630092042,2,6.0,-9.0,-9.0,16.0,4.0,1256863 -3112291,1630220256,1,24,0,1,1630092043,1,3.0,50.0,5.0,-9.0,4.0,1256864 -3112292,1630220112,1,21,0,1,1630092044,2,6.0,10.0,5.0,16.0,4.0,1256865 -3112293,1630220113,1,21,0,1,1630092045,2,6.0,10.0,5.0,16.0,4.0,1256866 -3112294,1630220115,1,20,12,2,1630092045,2,6.0,20.0,4.0,15.0,4.0,1256866 -3112295,1630220394,2,24,0,1,1630092046,2,3.0,32.0,5.0,-9.0,4.0,1256867 -3112296,1630220395,2,8,2,2,1630092046,1,-9.0,-9.0,-9.0,4.0,-9.0,1256867 -3112297,1630220495,2,20,0,1,1630092047,2,6.0,-9.0,-9.0,-9.0,4.0,1256868 -3112298,1630220496,2,2,2,2,1630092047,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256868 -3112299,1630220132,1,22,0,1,1630092048,2,6.0,-9.0,-9.0,16.0,4.0,1256869 -3112300,1630220134,1,22,11,2,1630092048,2,6.0,-9.0,-9.0,16.0,4.0,1256869 -3112301,1630220133,1,22,0,1,1630092049,2,6.0,-9.0,-9.0,16.0,4.0,1256870 -3112302,1630220135,1,22,11,2,1630092049,2,6.0,-9.0,-9.0,16.0,4.0,1256870 -3112303,1630220768,2,19,0,1,1630092050,1,1.0,50.0,1.0,-9.0,4.0,1256871 -3112304,1630220782,2,22,0,1,1630092051,1,1.0,20.0,6.0,-9.0,4.0,1256872 -3112305,1630220191,1,20,0,1,1630092052,1,1.0,40.0,5.0,15.0,4.0,1256873 -3112306,1630220321,1,22,0,1,1630092053,1,1.0,15.0,1.0,15.0,4.0,1256874 -3112307,1630220244,1,24,0,1,1630092054,1,2.0,10.0,1.0,15.0,4.0,1256875 -3112308,1630220141,1,20,0,1,1630092055,2,6.0,15.0,6.0,15.0,4.0,1256876 -3112309,1630220143,1,19,12,2,1630092055,2,1.0,30.0,1.0,15.0,4.0,1256876 -3112310,1630220142,1,20,0,1,1630092056,2,6.0,15.0,6.0,15.0,4.0,1256877 -3112311,1630220144,1,19,12,2,1630092056,2,1.0,30.0,1.0,15.0,4.0,1256877 -3112312,1630220026,1,24,0,1,1630092057,1,1.0,35.0,1.0,-9.0,4.0,1256878 -3112313,1630220024,1,23,13,2,1630092057,2,6.0,20.0,4.0,16.0,4.0,1256878 -3112314,1630220366,1,22,0,1,1630092058,1,6.0,28.0,4.0,16.0,4.0,1256879 -3112315,1630220661,2,41,0,1,1630092059,1,3.0,-9.0,-9.0,-9.0,4.0,1256880 -3112316,1630220509,2,26,0,1,1630092060,2,1.0,50.0,1.0,-9.0,4.0,1256881 -3112317,1630220510,2,27,13,2,1630092060,1,1.0,40.0,1.0,-9.0,4.0,1256881 -3112318,1630220437,2,69,0,1,1630092061,1,6.0,-9.0,-9.0,-9.0,2.0,1256882 -3112319,1630220064,1,29,0,1,1630092062,2,1.0,45.0,1.0,-9.0,4.0,1256883 -3112320,1630220067,1,29,1,2,1630092062,1,6.0,45.0,6.0,16.0,4.0,1256883 -3112321,1630220017,1,29,0,1,1630092063,1,1.0,40.0,1.0,16.0,4.0,1256884 -3112322,1630220015,1,24,12,2,1630092063,2,1.0,40.0,1.0,15.0,4.0,1256884 -3112323,1630220171,1,59,0,1,1630092064,1,1.0,55.0,1.0,-9.0,4.0,1256885 -3112324,1630220511,2,53,0,1,1630092065,2,1.0,40.0,1.0,-9.0,4.0,1256886 -3112325,1630220512,2,46,1,2,1630092065,1,1.0,40.0,1.0,-9.0,4.0,1256886 -3112326,1630220108,1,62,0,1,1630092066,2,6.0,-9.0,-9.0,-9.0,4.0,1256887 -3112327,1630220270,1,60,0,1,1630092067,1,6.0,-9.0,-9.0,15.0,4.0,1256888 -3112328,1630220677,2,60,0,1,1630092068,1,1.0,40.0,1.0,-9.0,4.0,1256889 -3112329,1630220118,1,60,0,1,1630092069,1,1.0,70.0,5.0,-9.0,4.0,1256890 -3112330,1630220117,1,60,1,2,1630092069,2,6.0,-9.0,-9.0,-9.0,4.0,1256890 -3112331,1630220555,2,31,0,1,1630092070,2,1.0,40.0,1.0,-9.0,4.0,1256891 -3112332,1630220556,2,5,2,2,1630092070,2,-9.0,-9.0,-9.0,1.0,-9.0,1256891 -3112333,1630220346,1,38,0,1,1630092071,1,1.0,40.0,1.0,-9.0,4.0,1256892 -3112334,1630220355,1,42,12,2,1630092071,1,1.0,40.0,1.0,-9.0,4.0,1256892 -3112335,1630220328,1,57,0,1,1630092072,1,1.0,45.0,2.0,-9.0,4.0,1256893 -3112336,1630220524,2,47,0,1,1630092073,2,1.0,40.0,1.0,-9.0,4.0,1256894 -3112337,1630220525,2,14,2,2,1630092073,2,-9.0,-9.0,-9.0,12.0,-9.0,1256894 -3112338,1630220452,2,62,0,1,1630092074,2,1.0,40.0,1.0,-9.0,4.0,1256895 -3112339,1630220454,2,63,1,2,1630092074,1,6.0,-9.0,-9.0,-9.0,4.0,1256895 -3112340,1630220261,1,23,0,1,1630092075,1,1.0,40.0,3.0,15.0,4.0,1256896 -3112341,1630220752,2,62,0,1,1630092076,1,1.0,30.0,3.0,-9.0,4.0,1256897 -3112342,1630220094,1,43,0,1,1630092077,2,6.0,-9.0,-9.0,-9.0,4.0,1256898 -3112343,1630220096,1,52,13,2,1630092077,1,1.0,25.0,1.0,-9.0,4.0,1256898 -3112344,1630220194,3,29,0,1,1630092078,1,1.0,43.0,1.0,-9.0,4.0,1256899 -3112345,1630220322,1,22,0,1,1630092079,1,1.0,15.0,1.0,15.0,4.0,1256900 -3112346,1630220200,1,52,0,1,1630092080,1,1.0,40.0,1.0,-9.0,4.0,1256901 -3112347,1630220201,4,11,2,2,1630092080,1,-9.0,-9.0,-9.0,8.0,-9.0,1256901 -3112348,1630220120,1,28,0,1,1630092081,2,1.0,55.0,1.0,-9.0,4.0,1256902 -3112349,1630220122,1,28,1,2,1630092081,1,1.0,40.0,1.0,-9.0,4.0,1256902 -3112350,1630220059,1,64,0,1,1630092082,2,6.0,-9.0,-9.0,-9.0,4.0,1256903 -3112351,1630220060,1,67,1,2,1630092082,1,6.0,5.0,4.0,-9.0,4.0,1256903 -3112352,1630220392,2,53,0,1,1630092083,2,1.0,98.0,1.0,-9.0,4.0,1256904 -3112353,1630220393,2,58,1,2,1630092083,1,6.0,-9.0,-9.0,-9.0,4.0,1256904 -3112354,1630220506,2,30,0,1,1630092084,2,1.0,15.0,4.0,-9.0,4.0,1256905 -3112355,1630220802,2,66,0,1,1630092085,1,1.0,30.0,1.0,-9.0,4.0,1256906 -3112356,1630220146,1,48,0,1,1630092086,2,1.0,50.0,1.0,-9.0,4.0,1256907 -3112357,1630220837,1,66,0,1,1630092087,1,6.0,-9.0,-9.0,-9.0,4.0,1256908 -3112358,1630220048,1,27,0,1,1630092088,1,1.0,50.0,1.0,-9.0,4.0,1256909 -3112359,1630220043,3,28,1,2,1630092088,2,6.0,45.0,4.0,-9.0,4.0,1256909 -3112360,1630220154,1,27,0,1,1630092089,1,1.0,45.0,1.0,-9.0,4.0,1256910 -3112361,1630220152,1,28,1,2,1630092089,2,1.0,52.0,4.0,-9.0,4.0,1256910 -3112362,1630219946,2,84,0,1,1630092090,2,6.0,-9.0,-9.0,-9.0,4.0,1256911 -3112363,1630219947,2,49,2,2,1630092090,1,6.0,-9.0,-9.0,-9.0,4.0,1256911 -3112364,1630220027,1,24,0,1,1630092091,1,1.0,35.0,1.0,-9.0,4.0,1256912 -3112365,1630220025,1,23,13,2,1630092091,2,6.0,20.0,4.0,16.0,4.0,1256912 -3112366,1630220620,2,44,0,1,1630092092,1,6.0,-9.0,-9.0,-9.0,4.0,1256913 -3112367,1630220742,3,44,0,1,1630092093,1,3.0,-9.0,-9.0,-9.0,4.0,1256914 -3112368,1630220357,3,48,0,1,1630092094,1,6.0,-9.0,-9.0,-9.0,4.0,1256915 -3112369,1630220359,3,47,5,2,1630092094,1,6.0,-9.0,-9.0,-9.0,4.0,1256915 -3112370,1630219928,2,70,0,1,1630092095,1,6.0,-9.0,-9.0,-9.0,2.0,1256916 -3112371,1630219927,2,68,1,2,1630092095,2,1.0,60.0,3.0,-9.0,4.0,1256916 -3112372,1630220530,2,58,0,1,1630092096,2,1.0,40.0,1.0,-9.0,4.0,1256917 -3112373,1630220531,2,26,2,2,1630092096,1,3.0,-9.0,-9.0,-9.0,4.0,1256917 -3112374,1630220584,2,22,0,1,1630092097,2,1.0,20.0,1.0,15.0,4.0,1256918 -3112375,1630220585,2,3,2,2,1630092097,1,-9.0,-9.0,-9.0,-9.0,-9.0,1256918 -3112376,1630220675,2,36,0,1,1630092098,1,1.0,46.0,1.0,-9.0,4.0,1256919 -3112377,1630220676,2,70,6,2,1630092098,1,6.0,-9.0,-9.0,-9.0,4.0,1256919 -3112378,1630220521,2,42,0,1,1630092099,2,1.0,25.0,1.0,-9.0,4.0,1256920 -3112379,1630220522,2,18,2,2,1630092099,1,6.0,-9.0,-9.0,10.0,4.0,1256920 -3112380,1630220254,1,27,0,1,1630092100,1,1.0,40.0,1.0,-9.0,4.0,1256921 -3112381,1630220566,2,60,0,1,1630092101,1,1.0,48.0,1.0,-9.0,4.0,1256922 -3112382,1630220565,2,60,1,2,1630092101,2,6.0,-9.0,-9.0,-9.0,4.0,1256922 -3112383,1630220207,1,29,0,1,1630092102,1,1.0,50.0,1.0,-9.0,4.0,1256923 -3112384,1630220784,2,27,0,1,1630092103,1,6.0,-9.0,-9.0,-9.0,2.0,1256924 -3112385,1630220534,2,54,0,1,1630092104,2,1.0,32.0,1.0,-9.0,4.0,1256925 -3112386,1630220535,2,51,1,2,1630092104,1,1.0,20.0,5.0,15.0,4.0,1256925 -3112387,1630220058,1,37,0,1,1630092105,1,1.0,33.0,1.0,-9.0,4.0,1256926 -3112388,1630220056,1,27,13,2,1630092105,2,6.0,40.0,5.0,-9.0,4.0,1256926 -3112389,1630220772,2,46,0,1,1630092106,1,3.0,-9.0,-9.0,-9.0,4.0,1256927 -3112390,1630220466,2,58,0,1,1630092107,2,1.0,75.0,1.0,-9.0,4.0,1256928 -3112391,1630220431,2,62,0,1,1630092108,2,6.0,-9.0,-9.0,-9.0,4.0,1256929 -3112392,1630220432,2,24,2,2,1630092108,2,1.0,40.0,3.0,-9.0,4.0,1256929 -3112393,1630220376,2,40,0,1,1630092109,2,1.0,40.0,1.0,-9.0,4.0,1256930 -3112394,1630220377,2,52,1,2,1630092109,1,1.0,40.0,1.0,-9.0,4.0,1256930 -3112395,1630220288,1,57,0,1,1630092110,1,1.0,60.0,1.0,-9.0,4.0,1256931 -3112396,1630220601,2,53,0,1,1630092111,1,6.0,45.0,5.0,11.0,4.0,1256932 -3112397,1630220600,2,14,2,2,1630092111,1,-9.0,-9.0,-9.0,10.0,-9.0,1256932 -3112398,1630220471,2,42,0,1,1630092112,2,1.0,52.0,1.0,-9.0,2.0,1256933 -3112399,1630220472,2,46,13,2,1630092112,2,1.0,30.0,4.0,-9.0,4.0,1256933 -3112400,1630219988,1,82,0,1,1630092113,1,1.0,48.0,1.0,-9.0,2.0,1256934 -3112401,1630219987,1,76,1,2,1630092113,2,1.0,48.0,1.0,-9.0,4.0,1256934 -3112402,1630220199,1,24,0,1,1630092114,1,3.0,47.0,3.0,15.0,4.0,1256935 -3112403,1630220664,2,46,0,1,1630092115,1,6.0,-9.0,-9.0,-9.0,4.0,1256936 -3112404,1630220639,2,36,0,1,1630092116,1,1.0,40.0,1.0,-9.0,4.0,1256937 -3112405,1630219979,1,65,0,1,1630092117,2,6.0,-9.0,-9.0,-9.0,4.0,1256938 -3112406,1630220775,2,30,0,1,1630092118,1,3.0,36.0,4.0,-9.0,4.0,1256939 -3112407,1630220818,2,68,0,1,1630092119,1,1.0,45.0,1.0,-9.0,4.0,1256940 -3112408,1630220819,2,68,12,2,1630092119,1,1.0,32.0,1.0,-9.0,4.0,1256940 -3112409,1630220826,4,25,0,1,1630092120,1,1.0,30.0,1.0,-9.0,4.0,1256941 -3112410,1630220738,2,59,0,1,1630092121,1,1.0,40.0,1.0,-9.0,2.0,1256942 -3112411,1630220127,1,25,0,1,1630092122,1,6.0,-9.0,-9.0,16.0,4.0,1256943 -3112412,1630220125,1,26,1,2,1630092122,2,1.0,50.0,1.0,-9.0,4.0,1256943 -3112413,1630220457,2,24,0,1,1630092123,1,1.0,42.0,1.0,-9.0,4.0,1256944 -3112414,1630220456,2,24,1,2,1630092123,2,6.0,-9.0,-9.0,-9.0,4.0,1256944 -3112415,1630220250,1,24,0,1,1630092124,1,1.0,40.0,1.0,-9.0,4.0,1256945 -3112416,1630220251,1,24,12,2,1630092124,1,1.0,40.0,1.0,-9.0,4.0,1256945 -3112417,1630220425,2,59,0,1,1630092125,2,6.0,-9.0,-9.0,-9.0,4.0,1256946 -3112418,1630220426,2,16,7,2,1630092125,1,6.0,-9.0,-9.0,13.0,-9.0,1256946 -3112419,1630220333,1,22,0,1,1630092126,1,6.0,-9.0,-9.0,15.0,4.0,1256947 -3112420,1630220334,1,24,11,2,1630092126,1,3.0,-9.0,-9.0,15.0,4.0,1256947 -3112421,1630219992,3,37,0,1,1630092127,2,6.0,42.0,4.0,-9.0,4.0,1256948 -3112422,1630219993,3,16,2,2,1630092127,1,6.0,-9.0,-9.0,12.0,-9.0,1256948 -3112423,1630220830,4,29,0,1,1630092128,1,1.0,45.0,1.0,-9.0,4.0,1256949 -3112424,1630220831,4,26,1,2,1630092128,2,6.0,30.0,6.0,-9.0,4.0,1256949 -3112425,1630219974,3,69,0,1,1630092129,2,6.0,-9.0,-9.0,-9.0,4.0,1256950 -3112426,1630220761,2,45,0,1,1630092130,1,1.0,50.0,1.0,-9.0,2.0,1256951 -3112427,1630220762,2,19,2,2,1630092130,1,1.0,40.0,5.0,15.0,4.0,1256951 -3112428,1630220571,2,45,0,1,1630092131,2,1.0,40.0,1.0,-9.0,4.0,1256952 -3112429,1630219948,2,85,0,1,1630092132,2,6.0,-9.0,-9.0,15.0,4.0,1256953 -3112430,1630219949,2,25,7,2,1630092132,2,1.0,45.0,1.0,-9.0,4.0,1256953 -3112431,1630220198,1,52,0,1,1630092133,1,1.0,40.0,1.0,-9.0,4.0,1256954 -3112432,1630220573,2,62,0,1,1630092134,2,6.0,-9.0,-9.0,-9.0,4.0,1256955 -3112433,1630219944,2,65,0,1,1630092135,2,6.0,-9.0,-9.0,-9.0,4.0,1256956 -3112434,1630219980,1,69,0,1,1630092136,2,6.0,-9.0,-9.0,-9.0,4.0,1256957 -3112435,1630220463,2,30,0,1,1630092137,2,3.0,-9.0,-9.0,-9.0,4.0,1256958 -3112436,1630220464,2,25,10,2,1630092137,1,3.0,36.0,5.0,-9.0,4.0,1256958 -3112437,1630220723,2,45,0,1,1630092138,1,1.0,40.0,1.0,-9.0,2.0,1256959 -3112438,1630220475,2,63,0,1,1630092139,2,1.0,40.0,1.0,-9.0,4.0,1256960 -3112439,1630220476,2,17,7,2,1630092139,2,6.0,-9.0,-9.0,13.0,4.0,1256960 -3112440,1630220702,2,19,0,1,1630092140,1,3.0,-9.0,-9.0,-9.0,4.0,1256961 -3112441,1630220320,3,30,0,1,1630092141,1,1.0,45.0,1.0,-9.0,4.0,1256962 -3112442,1630220832,3,39,0,1,1630092142,1,6.0,-9.0,-9.0,-9.0,4.0,1256963 -3112443,1630219983,1,65,0,1,1630092143,2,6.0,-9.0,-9.0,-9.0,4.0,1256964 -3112444,1630219986,1,77,1,2,1630092143,1,1.0,50.0,1.0,-9.0,4.0,1256964 -3112445,1630220542,2,63,0,1,1630092144,2,6.0,-9.0,-9.0,-9.0,4.0,1256965 -3112446,1630220070,1,56,0,1,1630092145,2,1.0,35.0,1.0,-9.0,4.0,1256966 -3112447,1630220071,1,67,1,2,1630092145,1,6.0,-9.0,-9.0,-9.0,2.0,1256966 -3112448,1630220835,3,51,0,1,1630092146,2,6.0,-9.0,-9.0,-9.0,4.0,1256967 -3112449,1630220536,2,63,0,1,1630092147,2,6.0,-9.0,-9.0,-9.0,4.0,1256968 -3112450,1630220537,2,60,13,2,1630092147,1,6.0,-9.0,-9.0,-9.0,2.0,1256968 -3112451,1630219921,2,74,0,1,1630092148,2,6.0,-9.0,-9.0,-9.0,4.0,1256969 -3112452,1630219922,2,46,2,2,1630092148,1,6.0,-9.0,-9.0,-9.0,4.0,1256969 -3112453,1630220073,1,30,0,1,1630092149,1,1.0,60.0,1.0,16.0,4.0,1256970 -3112454,1630220072,1,29,1,2,1630092149,2,1.0,65.0,1.0,16.0,4.0,1256970 -3112455,1630220382,2,48,0,1,1630092150,2,6.0,-9.0,-9.0,-9.0,4.0,1256971 -3112456,1630220383,2,60,5,2,1630092150,1,6.0,-9.0,-9.0,-9.0,4.0,1256971 -3112457,1630220381,2,60,0,1,1630092151,1,1.0,45.0,1.0,-9.0,4.0,1256972 -3112458,1630220380,2,60,1,2,1630092151,2,1.0,40.0,1.0,-9.0,4.0,1256972 -3112459,1630220186,1,29,0,1,1630092152,1,6.0,-9.0,-9.0,15.0,4.0,1256973 -3112460,1630219950,2,69,0,1,1630092153,2,6.0,-9.0,-9.0,-9.0,4.0,1256974 -3112461,1630219951,2,65,1,2,1630092153,1,6.0,-9.0,-9.0,-9.0,4.0,1256974 -3112462,1630220054,1,52,0,1,1630092154,1,1.0,84.0,1.0,-9.0,4.0,1256975 -3112463,1630220053,3,56,1,2,1630092154,2,6.0,-9.0,-9.0,-9.0,4.0,1256975 -3112464,1630220480,2,63,0,1,1630092155,1,6.0,-9.0,-9.0,-9.0,4.0,1256976 -3112465,1630220479,2,62,1,2,1630092155,2,6.0,-9.0,-9.0,-9.0,4.0,1256976 -3112466,1630219968,2,41,0,1,1630092156,2,1.0,40.0,1.0,-9.0,4.0,1256977 -3112467,1630220195,1,22,0,1,1630092157,1,3.0,-9.0,-9.0,15.0,4.0,1256978 -3112468,1630220612,2,64,0,1,1630092158,1,1.0,20.0,4.0,-9.0,4.0,1256979 -3112469,1630220633,2,59,0,1,1630092159,1,1.0,40.0,1.0,-9.0,4.0,1256980 -3112470,1630220817,2,77,0,1,1630092160,1,6.0,-9.0,-9.0,-9.0,2.0,1256981 -3112471,1630220102,1,33,0,1,1630092161,2,1.0,50.0,1.0,-9.0,4.0,1256982 -3112472,1630220493,2,58,0,1,1630092162,2,6.0,-9.0,-9.0,-9.0,4.0,1256983 -3112473,1630220494,2,62,1,2,1630092162,1,6.0,-9.0,-9.0,-9.0,4.0,1256983 -3112474,1630220260,1,55,0,1,1630092163,1,1.0,50.0,1.0,-9.0,4.0,1256984 -3112475,1630219935,2,56,0,1,1630092164,2,6.0,-9.0,-9.0,-9.0,2.0,1256985 -3112476,1630219934,2,74,6,2,1630092164,2,6.0,-9.0,-9.0,-9.0,4.0,1256985 -3112477,1630220397,2,59,0,1,1630092165,2,1.0,30.0,6.0,-9.0,4.0,1256986 -3112478,1630220398,2,58,1,2,1630092165,1,1.0,48.0,1.0,-9.0,4.0,1256986 -3112479,1630220543,2,26,0,1,1630092166,2,1.0,40.0,4.0,15.0,4.0,1256987 -3112480,1630220544,2,35,13,2,1630092166,1,1.0,20.0,1.0,-9.0,4.0,1256987 -3112481,1630220631,2,23,0,1,1630092167,1,6.0,40.0,1.0,15.0,4.0,1256988 -3112482,1630220632,2,62,6,2,1630092167,1,1.0,40.0,1.0,-9.0,4.0,1256988 -3112483,1630220443,2,64,0,1,1630092168,2,6.0,-9.0,-9.0,-9.0,4.0,1256989 -3112484,1630220444,2,30,2,2,1630092168,2,1.0,45.0,4.0,-9.0,4.0,1256989 -3112485,1630220294,1,30,0,1,1630092169,1,1.0,40.0,1.0,-9.0,4.0,1256990 -3112486,1630220833,3,27,0,1,1630092170,2,1.0,40.0,1.0,-9.0,4.0,1256991 -3112487,1630220037,1,77,0,1,1630092171,1,6.0,-9.0,-9.0,-9.0,4.0,1256992 -3112488,1630220035,1,55,15,2,1630092171,2,6.0,-9.0,-9.0,-9.0,4.0,1256992 -3112489,1630220809,2,65,0,1,1630092172,1,1.0,25.0,3.0,-9.0,4.0,1256993 -3112490,1630220810,4,56,1,2,1630092172,2,6.0,-9.0,-9.0,-9.0,4.0,1256993 -3112491,1630220559,2,61,0,1,1630092173,2,6.0,-9.0,-9.0,-9.0,4.0,1256994 -3112492,1630220560,2,55,1,2,1630092173,1,6.0,-9.0,-9.0,-9.0,2.0,1256994 -3112493,1630220181,1,39,0,1,1630092174,1,6.0,8.0,6.0,16.0,4.0,1256995 -3112494,1630220448,2,47,0,1,1630092175,2,6.0,-9.0,-9.0,-9.0,4.0,1256996 -3112495,1630220031,1,57,0,1,1630092176,2,1.0,30.0,1.0,-9.0,4.0,1256997 -3112496,1630220780,2,35,0,1,1630092177,1,1.0,40.0,4.0,-9.0,4.0,1256998 -3112497,1630220374,2,44,0,1,1630092178,2,3.0,-9.0,-9.0,15.0,4.0,1256999 -3112498,1630220375,2,12,2,2,1630092178,1,-9.0,-9.0,-9.0,9.0,-9.0,1256999 -3112499,1630219939,2,65,0,1,1630092179,2,1.0,40.0,1.0,-9.0,4.0,1257000 -3112500,1630220391,2,49,0,1,1630092180,1,1.0,40.0,1.0,-9.0,4.0,1257001 -3112501,1630220390,2,49,1,2,1630092180,2,3.0,-9.0,-9.0,-9.0,3.0,1257001 -3112502,1630220252,3,54,0,1,1630092181,1,1.0,40.0,1.0,-9.0,4.0,1257002 -3112503,1630220794,2,73,0,1,1630092182,1,6.0,-9.0,-9.0,-9.0,4.0,1257003 -3112504,1630220787,4,70,0,1,1630092183,2,6.0,-9.0,-9.0,-9.0,4.0,1257004 -3112505,1630220168,1,62,0,1,1630092184,1,1.0,40.0,1.0,16.0,4.0,1257005 -3112506,1630220169,1,38,12,2,1630092184,1,6.0,-9.0,-9.0,-9.0,4.0,1257005 -3112507,1630220825,4,62,0,1,1630092185,1,6.0,-9.0,-9.0,-9.0,4.0,1257006 -3112508,1630220502,2,35,0,1,1630092186,2,1.0,15.0,5.0,15.0,4.0,1257007 -3112509,1630220504,2,12,2,2,1630092186,2,-9.0,-9.0,-9.0,8.0,-9.0,1257007 -3112510,1630220828,4,61,0,1,1630092187,2,6.0,-9.0,-9.0,-9.0,4.0,1257008 -3112511,1630220827,4,23,2,2,1630092187,1,1.0,50.0,6.0,14.0,4.0,1257008 -3112512,1630221860,2,63,0,1,1630092188,2,1.0,40.0,1.0,-9.0,4.0,1257009 -3112513,1630221246,1,45,0,1,1630092189,2,1.0,40.0,1.0,-9.0,4.0,1257010 -3112514,1630221891,2,51,0,1,1630092190,1,6.0,-9.0,-9.0,-9.0,4.0,1257011 -3112515,1630221282,1,33,0,1,1630092191,2,1.0,50.0,1.0,-9.0,4.0,1257012 -3112516,1630221283,1,33,0,1,1630092192,2,1.0,50.0,1.0,-9.0,4.0,1257013 -3112517,1630221189,1,27,0,1,1630092193,1,1.0,50.0,1.0,-9.0,4.0,1257014 -3112518,1630221188,3,28,1,2,1630092193,2,6.0,45.0,4.0,-9.0,4.0,1257014 -3112519,1630222192,4,30,0,1,1630092194,1,1.0,45.0,1.0,-9.0,4.0,1257015 -3112520,1630222190,4,27,1,2,1630092194,2,1.0,40.0,1.0,-9.0,4.0,1257015 -3112521,1630221977,4,33,0,1,1630092195,2,1.0,55.0,1.0,-9.0,4.0,1257016 -3112522,1630221972,2,34,13,2,1630092195,1,1.0,40.0,4.0,16.0,4.0,1257016 -3112523,1630221978,4,33,0,1,1630092196,2,1.0,55.0,1.0,-9.0,4.0,1257017 -3112524,1630221973,2,34,13,2,1630092196,1,1.0,40.0,4.0,16.0,4.0,1257017 -3112525,1630221979,4,33,0,1,1630092197,2,1.0,55.0,1.0,-9.0,4.0,1257018 -3112526,1630221974,2,34,13,2,1630092197,1,1.0,40.0,4.0,16.0,4.0,1257018 -3112527,1630221980,4,33,0,1,1630092198,2,1.0,55.0,1.0,-9.0,4.0,1257019 -3112528,1630221975,2,34,13,2,1630092198,1,1.0,40.0,4.0,16.0,4.0,1257019 -3112529,1630221735,2,26,0,1,1630092199,2,1.0,50.0,1.0,-9.0,4.0,1257020 -3112530,1630221736,2,27,13,2,1630092199,1,1.0,40.0,1.0,-9.0,4.0,1257020 -3112531,1630221523,1,38,0,1,1630092200,1,1.0,40.0,1.0,-9.0,4.0,1257021 -3112532,1630221526,1,42,12,2,1630092200,1,1.0,40.0,1.0,-9.0,4.0,1257021 -3112533,1630221144,1,27,0,1,1630092201,1,1.0,40.0,1.0,16.0,4.0,1257022 -3112534,1630221141,1,29,15,2,1630092201,2,1.0,50.0,1.0,-9.0,4.0,1257022 -3112535,1630221145,1,27,0,1,1630092202,1,1.0,40.0,1.0,16.0,4.0,1257023 -3112536,1630221142,1,29,15,2,1630092202,2,1.0,50.0,1.0,-9.0,4.0,1257023 -3112537,1630221229,1,37,0,1,1630092203,1,1.0,50.0,3.0,-9.0,4.0,1257024 -3112538,1630221227,1,39,13,2,1630092203,2,1.0,45.0,3.0,-9.0,4.0,1257024 -3112539,1630221524,1,38,0,1,1630092204,1,1.0,40.0,1.0,-9.0,4.0,1257025 -3112540,1630221527,1,42,12,2,1630092204,1,1.0,40.0,1.0,-9.0,4.0,1257025 -3112541,1630221470,1,28,0,1,1630092205,1,1.0,25.0,1.0,-9.0,4.0,1257026 -3112542,1630221474,1,28,12,2,1630092205,1,1.0,45.0,1.0,-9.0,4.0,1257026 -3112543,1630221146,1,27,0,1,1630092206,1,1.0,40.0,1.0,16.0,4.0,1257027 -3112544,1630221143,1,29,15,2,1630092206,2,1.0,50.0,1.0,-9.0,4.0,1257027 -3112545,1630221525,1,38,0,1,1630092207,1,1.0,40.0,1.0,-9.0,4.0,1257028 -3112546,1630221528,1,42,12,2,1630092207,1,1.0,40.0,1.0,-9.0,4.0,1257028 -3112547,1630221178,1,25,0,1,1630092208,2,1.0,45.0,1.0,16.0,4.0,1257029 -3112548,1630221180,4,25,1,2,1630092208,1,1.0,40.0,1.0,16.0,4.0,1257029 -3112549,1630221471,1,28,0,1,1630092209,1,1.0,25.0,1.0,-9.0,4.0,1257030 -3112550,1630221475,1,28,12,2,1630092209,1,1.0,45.0,1.0,-9.0,4.0,1257030 -3112551,1630221179,1,25,0,1,1630092210,2,1.0,45.0,1.0,16.0,4.0,1257031 -3112552,1630221181,4,25,1,2,1630092210,1,1.0,40.0,1.0,16.0,4.0,1257031 -3112553,1630221165,1,31,0,1,1630092211,2,1.0,50.0,1.0,-9.0,4.0,1257032 -3112554,1630221166,1,34,13,2,1630092211,1,1.0,70.0,1.0,-9.0,4.0,1257032 -3112555,1630221230,1,37,0,1,1630092212,1,1.0,50.0,3.0,-9.0,4.0,1257033 -3112556,1630221228,1,39,13,2,1630092212,2,1.0,45.0,3.0,-9.0,4.0,1257033 -3112557,1630221472,1,28,0,1,1630092213,1,1.0,25.0,1.0,-9.0,4.0,1257034 -3112558,1630221476,1,28,12,2,1630092213,1,1.0,45.0,1.0,-9.0,4.0,1257034 -3112559,1630221432,3,27,0,1,1630092214,1,1.0,70.0,1.0,-9.0,4.0,1257035 -3112560,1630221435,3,27,12,2,1630092214,1,1.0,70.0,1.0,-9.0,4.0,1257035 -3112561,1630221433,3,27,0,1,1630092215,1,1.0,70.0,1.0,-9.0,4.0,1257036 -3112562,1630221436,3,27,12,2,1630092215,1,1.0,70.0,1.0,-9.0,4.0,1257036 -3112563,1630222035,2,27,0,1,1630092216,1,6.0,-9.0,-9.0,-9.0,2.0,1257037 -3112564,1630221383,1,29,0,1,1630092217,1,6.0,40.0,3.0,16.0,4.0,1257038 -3112565,1630221384,1,27,12,2,1630092217,1,6.0,40.0,5.0,-9.0,4.0,1257038 -3112566,1630221899,2,29,0,1,1630092218,1,1.0,40.0,1.0,-9.0,4.0,1257039 -3112567,1630221900,2,29,0,1,1630092219,1,1.0,40.0,1.0,-9.0,4.0,1257040 -3112568,1630221901,2,29,0,1,1630092220,1,1.0,40.0,1.0,-9.0,4.0,1257041 -3112569,1630221722,2,26,0,1,1630092221,2,1.0,40.0,1.0,-9.0,4.0,1257042 -3112570,1630221947,2,28,0,1,1630092222,1,1.0,55.0,1.0,-9.0,4.0,1257043 -3112571,1630222003,2,38,0,1,1630092223,1,1.0,55.0,1.0,-9.0,4.0,1257044 -3112572,1630222004,2,38,0,1,1630092224,1,1.0,55.0,1.0,-9.0,4.0,1257045 -3112573,1630221884,2,39,0,1,1630092225,1,1.0,48.0,1.0,-9.0,4.0,1257046 -3112574,1630221902,2,29,0,1,1630092226,1,1.0,40.0,1.0,-9.0,4.0,1257047 -3112575,1630221903,2,29,0,1,1630092227,1,1.0,40.0,1.0,-9.0,4.0,1257048 -3112576,1630222005,2,38,0,1,1630092228,1,1.0,55.0,1.0,-9.0,4.0,1257049 -3112577,1630221398,1,29,0,1,1630092229,1,1.0,45.0,1.0,-9.0,4.0,1257050 -3112578,1630221538,1,29,0,1,1630092230,1,1.0,35.0,1.0,-9.0,4.0,1257051 -3112579,1630221215,1,33,0,1,1630092231,2,1.0,65.0,1.0,-9.0,4.0,1257052 -3112580,1630221399,1,29,0,1,1630092232,1,1.0,45.0,1.0,-9.0,4.0,1257053 -3112581,1630221462,1,30,0,1,1630092233,1,1.0,40.0,4.0,-9.0,4.0,1257054 -3112582,1630221539,1,29,0,1,1630092234,1,1.0,35.0,1.0,-9.0,4.0,1257055 -3112583,1630221216,1,33,0,1,1630092235,2,1.0,65.0,1.0,-9.0,4.0,1257056 -3112584,1630221400,1,29,0,1,1630092236,1,1.0,45.0,1.0,-9.0,4.0,1257057 -3112585,1630221540,1,29,0,1,1630092237,1,1.0,35.0,1.0,-9.0,4.0,1257058 -3112586,1630221401,1,29,0,1,1630092238,1,1.0,45.0,1.0,-9.0,4.0,1257059 -3112587,1630221217,1,33,0,1,1630092239,2,1.0,65.0,1.0,-9.0,4.0,1257060 -3112588,1630221218,1,33,0,1,1630092240,2,1.0,65.0,1.0,-9.0,4.0,1257061 -3112589,1630221463,1,30,0,1,1630092241,1,1.0,40.0,4.0,-9.0,4.0,1257062 -3112590,1630221219,1,33,0,1,1630092242,2,1.0,65.0,1.0,-9.0,4.0,1257063 -3112591,1630221220,1,33,0,1,1630092243,2,1.0,65.0,1.0,-9.0,4.0,1257064 -3112592,1630221221,1,33,0,1,1630092244,2,1.0,65.0,1.0,-9.0,4.0,1257065 -3112593,1630221222,1,33,0,1,1630092245,2,1.0,65.0,1.0,-9.0,4.0,1257066 -3112594,1630221223,1,33,0,1,1630092246,2,1.0,65.0,1.0,-9.0,4.0,1257067 -3112595,1630222231,4,42,0,1,1630092247,1,1.0,40.0,3.0,-9.0,4.0,1257068 -3112596,1630222241,4,33,0,1,1630092248,1,2.0,12.0,1.0,-9.0,4.0,1257069 -3112597,1630222242,4,33,0,1,1630092249,1,2.0,12.0,1.0,-9.0,4.0,1257070 -3112598,1630222243,4,33,0,1,1630092250,1,2.0,12.0,1.0,-9.0,4.0,1257071 -3112599,1630222211,4,44,0,1,1630092251,1,1.0,55.0,1.0,-9.0,4.0,1257072 -3112600,1630222232,4,42,0,1,1630092252,1,1.0,40.0,3.0,-9.0,4.0,1257073 -3112601,1630222233,4,42,0,1,1630092253,1,1.0,40.0,3.0,-9.0,4.0,1257074 -3112602,1630222212,4,44,0,1,1630092254,1,1.0,55.0,1.0,-9.0,4.0,1257075 -3112603,1630222227,4,30,0,1,1630092255,1,1.0,60.0,1.0,16.0,4.0,1257076 -3112604,1630222217,4,27,0,1,1630092256,1,1.0,40.0,1.0,-9.0,4.0,1257077 -3112605,1630222234,4,42,0,1,1630092257,1,1.0,40.0,3.0,-9.0,4.0,1257078 -3112606,1630222235,4,42,0,1,1630092258,1,1.0,40.0,3.0,-9.0,4.0,1257079 -3112607,1630221708,2,27,0,1,1630092259,2,1.0,40.0,1.0,-9.0,4.0,1257080 -3112608,1630221843,2,34,0,1,1630092260,2,2.0,40.0,1.0,-9.0,4.0,1257081 -3112609,1630221812,2,38,0,1,1630092261,2,1.0,45.0,1.0,-9.0,4.0,1257082 -3112610,1630221930,2,44,0,1,1630092262,1,1.0,40.0,1.0,-9.0,4.0,1257083 -3112611,1630221569,2,26,0,1,1630092263,2,1.0,40.0,1.0,-9.0,4.0,1257084 -3112612,1630221805,2,28,0,1,1630092264,2,1.0,40.0,1.0,-9.0,4.0,1257085 -3112613,1630221677,2,25,0,1,1630092265,2,1.0,40.0,1.0,-9.0,4.0,1257086 -3112614,1630221883,2,30,0,1,1630092266,1,1.0,40.0,1.0,-9.0,4.0,1257087 -3112615,1630221931,2,44,0,1,1630092267,1,1.0,40.0,1.0,-9.0,4.0,1257088 -3112616,1630221911,2,42,0,1,1630092268,1,1.0,40.0,1.0,-9.0,4.0,1257089 -3112617,1630221806,2,28,0,1,1630092269,2,1.0,40.0,1.0,-9.0,4.0,1257090 -3112618,1630221709,2,27,0,1,1630092270,2,1.0,40.0,1.0,-9.0,4.0,1257091 -3112619,1630221544,2,26,0,1,1630092271,2,1.0,50.0,1.0,-9.0,4.0,1257092 -3112620,1630221413,1,29,0,1,1630092272,1,1.0,50.0,1.0,-9.0,4.0,1257093 -3112621,1630221261,1,40,0,1,1630092273,2,1.0,60.0,1.0,-9.0,4.0,1257094 -3112622,1630221319,1,31,0,1,1630092274,2,1.0,50.0,1.0,16.0,4.0,1257095 -3112623,1630221486,1,26,0,1,1630092275,1,1.0,60.0,1.0,-9.0,4.0,1257096 -3112624,1630221243,1,26,0,1,1630092276,2,1.0,40.0,1.0,-9.0,4.0,1257097 -3112625,1630221467,1,31,0,1,1630092277,1,2.0,70.0,1.0,-9.0,4.0,1257098 -3112626,1630221482,1,26,0,1,1630092278,1,1.0,50.0,1.0,-9.0,4.0,1257099 -3112627,1630221262,1,40,0,1,1630092279,2,1.0,60.0,1.0,-9.0,4.0,1257100 -3112628,1630221375,1,42,0,1,1630092280,1,1.0,40.0,3.0,15.0,4.0,1257101 -3112629,1630221516,1,27,0,1,1630092281,1,1.0,40.0,1.0,-9.0,4.0,1257102 -3112630,1630221263,1,40,0,1,1630092282,2,1.0,60.0,1.0,-9.0,4.0,1257103 -3112631,1630221517,1,27,0,1,1630092283,1,1.0,40.0,1.0,-9.0,4.0,1257104 -3112632,1630221423,1,34,0,1,1630092284,1,1.0,40.0,1.0,-9.0,4.0,1257105 -3112633,1630221376,1,42,0,1,1630092285,1,1.0,40.0,3.0,15.0,4.0,1257106 -3112634,1630221414,1,29,0,1,1630092286,1,1.0,50.0,1.0,-9.0,4.0,1257107 -3112635,1630221295,1,26,0,1,1630092287,2,1.0,40.0,1.0,-9.0,4.0,1257108 -3112636,1630221415,1,29,0,1,1630092288,1,1.0,40.0,1.0,-9.0,2.0,1257109 -3112637,1630221402,3,29,0,1,1630092289,1,1.0,43.0,1.0,-9.0,4.0,1257110 -3112638,1630221796,2,35,0,1,1630092290,2,1.0,40.0,1.0,15.0,4.0,1257111 -3112639,1630221797,2,35,0,1,1630092291,2,1.0,40.0,1.0,15.0,4.0,1257112 -3112640,1630221798,2,35,0,1,1630092292,2,1.0,40.0,1.0,15.0,4.0,1257113 -3112641,1630221995,2,36,0,1,1630092293,1,1.0,40.0,1.0,-9.0,4.0,1257114 -3112642,1630221438,1,40,0,1,1630092294,1,1.0,50.0,1.0,-9.0,4.0,1257115 -3112643,1630221439,1,40,0,1,1630092295,1,1.0,50.0,1.0,-9.0,4.0,1257116 -3112644,1630221440,1,40,0,1,1630092296,1,1.0,50.0,1.0,-9.0,4.0,1257117 -3112645,1630221441,1,40,0,1,1630092297,1,1.0,50.0,1.0,-9.0,4.0,1257118 -3112646,1630221864,2,43,0,1,1630092298,2,1.0,40.0,1.0,15.0,4.0,1257119 -3112647,1630221866,2,19,2,2,1630092298,1,3.0,36.0,6.0,15.0,4.0,1257119 -3112648,1630221323,1,25,0,1,1630092299,1,6.0,-9.0,-9.0,16.0,4.0,1257120 -3112649,1630221320,1,26,1,2,1630092299,2,1.0,50.0,1.0,-9.0,4.0,1257120 -3112650,1630221156,1,25,0,1,1630092300,2,3.0,20.0,5.0,-9.0,4.0,1257121 -3112651,1630221158,1,23,12,2,1630092300,2,1.0,45.0,1.0,16.0,4.0,1257121 -3112652,1630221324,1,25,0,1,1630092301,1,6.0,-9.0,-9.0,16.0,4.0,1257122 -3112653,1630221321,1,26,1,2,1630092301,2,1.0,50.0,1.0,-9.0,4.0,1257122 -3112654,1630221157,1,25,0,1,1630092302,2,3.0,20.0,5.0,-9.0,4.0,1257123 -3112655,1630221159,1,23,12,2,1630092302,2,1.0,45.0,1.0,16.0,4.0,1257123 -3112656,1630221209,1,28,0,1,1630092303,2,1.0,50.0,1.0,-9.0,4.0,1257124 -3112657,1630221211,1,28,5,2,1630092303,2,1.0,25.0,3.0,16.0,4.0,1257124 -3112658,1630221681,2,42,0,1,1630092304,2,1.0,52.0,1.0,-9.0,2.0,1257125 -3112659,1630221682,2,46,13,2,1630092304,2,1.0,30.0,4.0,-9.0,4.0,1257125 -3112660,1630221292,1,26,0,1,1630092305,1,1.0,40.0,1.0,-9.0,4.0,1257126 -3112661,1630221291,1,36,13,2,1630092305,2,1.0,20.0,4.0,-9.0,4.0,1257126 -3112662,1630221512,1,29,0,1,1630092306,1,1.0,50.0,1.0,16.0,4.0,1257127 -3112663,1630221513,1,34,12,2,1630092306,1,1.0,40.0,1.0,16.0,4.0,1257127 -3112664,1630221170,1,32,0,1,1630092307,1,1.0,40.0,1.0,-9.0,4.0,1257128 -3112665,1630221167,1,42,1,2,1630092307,2,1.0,40.0,1.0,-9.0,4.0,1257128 -3112666,1630221171,1,32,0,1,1630092308,1,1.0,40.0,1.0,-9.0,4.0,1257129 -3112667,1630221168,1,42,1,2,1630092308,2,1.0,40.0,1.0,-9.0,4.0,1257129 -3112668,1630221501,3,30,0,1,1630092309,1,1.0,45.0,1.0,-9.0,4.0,1257130 -3112669,1630221502,3,30,0,1,1630092310,1,1.0,45.0,1.0,-9.0,4.0,1257131 -3112670,1630221503,3,30,0,1,1630092311,1,1.0,45.0,1.0,-9.0,4.0,1257132 -3112671,1630221504,3,30,0,1,1630092312,1,1.0,45.0,1.0,-9.0,4.0,1257133 -3112672,1630221505,3,30,0,1,1630092313,1,1.0,45.0,1.0,-9.0,4.0,1257134 -3112673,1630221506,3,30,0,1,1630092314,1,1.0,45.0,1.0,-9.0,4.0,1257135 -3112674,1630221507,3,30,0,1,1630092315,1,1.0,45.0,1.0,-9.0,4.0,1257136 -3112675,1630222213,4,25,0,1,1630092316,1,1.0,70.0,5.0,-9.0,2.0,1257137 -3112676,1630222214,4,25,0,1,1630092317,1,1.0,70.0,5.0,-9.0,2.0,1257138 -3112677,1630222215,4,25,0,1,1630092318,1,1.0,70.0,5.0,-9.0,2.0,1257139 -3112678,1630221895,2,31,0,1,1630092319,1,1.0,40.0,1.0,-9.0,4.0,1257140 -3112679,1630222042,2,42,0,1,1630092320,1,2.0,60.0,1.0,-9.0,2.0,1257141 -3112680,1630221879,2,41,0,1,1630092321,2,1.0,40.0,1.0,-9.0,4.0,1257142 -3112681,1630221935,2,29,0,1,1630092322,1,1.0,40.0,1.0,-9.0,4.0,1257143 -3112682,1630221936,2,29,0,1,1630092323,1,1.0,40.0,1.0,-9.0,4.0,1257144 -3112683,1630222027,2,33,0,1,1630092324,1,1.0,40.0,1.0,-9.0,4.0,1257145 -3112684,1630221937,2,29,0,1,1630092325,1,1.0,40.0,1.0,-9.0,4.0,1257146 -3112685,1630222028,2,33,0,1,1630092326,1,1.0,40.0,1.0,-9.0,4.0,1257147 -3112686,1630221256,1,32,0,1,1630092327,2,1.0,50.0,1.0,-9.0,4.0,1257148 -3112687,1630221296,1,36,0,1,1630092328,2,1.0,80.0,1.0,-9.0,4.0,1257149 -3112688,1630221389,1,26,0,1,1630092329,1,1.0,40.0,3.0,-9.0,4.0,1257150 -3112689,1630221257,1,32,0,1,1630092330,2,1.0,50.0,1.0,-9.0,4.0,1257151 -3112690,1630221390,1,26,0,1,1630092331,1,1.0,40.0,3.0,-9.0,4.0,1257152 -3112691,1630221258,1,32,0,1,1630092332,2,1.0,50.0,1.0,-9.0,4.0,1257153 -3112692,1630221259,1,32,0,1,1630092333,2,1.0,50.0,1.0,-9.0,4.0,1257154 -3112693,1630221444,1,27,0,1,1630092334,1,1.0,48.0,1.0,-9.0,4.0,1257155 -3112694,1630221391,1,26,0,1,1630092335,1,1.0,40.0,3.0,-9.0,4.0,1257156 -3112695,1630221297,1,36,0,1,1630092336,2,1.0,80.0,1.0,-9.0,4.0,1257157 -3112696,1630221455,1,27,0,1,1630092337,1,1.0,40.0,1.0,-9.0,4.0,1257158 -3112697,1630221392,1,26,0,1,1630092338,1,1.0,40.0,3.0,-9.0,4.0,1257159 -3112698,1630221260,1,32,0,1,1630092339,2,1.0,50.0,1.0,-9.0,4.0,1257160 -3112699,1630221298,1,36,0,1,1630092340,2,1.0,80.0,1.0,-9.0,4.0,1257161 -3112700,1630221917,2,36,0,1,1630092341,1,1.0,40.0,1.0,-9.0,4.0,1257162 -3112701,1630221918,2,36,0,1,1630092342,1,1.0,40.0,1.0,-9.0,4.0,1257163 -3112702,1630221919,2,36,0,1,1630092343,1,1.0,40.0,1.0,-9.0,4.0,1257164 -3112703,1630221406,1,39,0,1,1630092344,1,1.0,40.0,1.0,-9.0,4.0,1257165 -3112704,1630221448,1,40,0,1,1630092345,1,1.0,43.0,1.0,-9.0,4.0,1257166 -3112705,1630221449,1,40,0,1,1630092346,1,1.0,43.0,1.0,-9.0,4.0,1257167 -3112706,1630221407,1,39,0,1,1630092347,1,1.0,40.0,1.0,-9.0,4.0,1257168 -3112707,1630221450,1,40,0,1,1630092348,1,1.0,43.0,1.0,-9.0,4.0,1257169 -3112708,1630221408,1,39,0,1,1630092349,1,1.0,40.0,1.0,-9.0,4.0,1257170 -3112709,1630221451,1,40,0,1,1630092350,1,1.0,43.0,1.0,-9.0,4.0,1257171 -3112710,1630221452,1,40,0,1,1630092351,1,1.0,43.0,1.0,-9.0,4.0,1257172 -3112711,1630221409,1,39,0,1,1630092352,1,1.0,40.0,1.0,-9.0,4.0,1257173 -3112712,1630221453,1,40,0,1,1630092353,1,1.0,43.0,1.0,-9.0,4.0,1257174 -3112713,1630221410,1,39,0,1,1630092354,1,1.0,40.0,1.0,-9.0,4.0,1257175 -3112714,1630221411,1,39,0,1,1630092355,1,1.0,40.0,1.0,-9.0,4.0,1257176 -3112715,1630221202,1,29,0,1,1630092356,2,1.0,45.0,1.0,-9.0,4.0,1257177 -3112716,1630221204,1,29,1,2,1630092356,1,6.0,45.0,6.0,16.0,4.0,1257177 -3112717,1630221203,1,29,0,1,1630092357,2,1.0,45.0,1.0,-9.0,4.0,1257178 -3112718,1630222206,4,27,0,1,1630092358,1,1.0,80.0,1.0,-9.0,4.0,1257179 -3112719,1630222204,4,26,1,2,1630092358,2,1.0,80.0,3.0,-9.0,4.0,1257179 -3112720,1630221309,1,26,0,1,1630092359,2,1.0,35.0,1.0,-9.0,4.0,1257180 -3112721,1630221313,1,26,12,2,1630092359,1,1.0,40.0,1.0,-9.0,4.0,1257180 -3112722,1630221311,1,21,12,3,1630092359,2,1.0,35.0,1.0,15.0,4.0,1257180 -3112723,1630221371,1,34,0,1,1630092360,1,1.0,17.0,3.0,-9.0,4.0,1257181 -3112724,1630221373,2,39,1,2,1630092360,2,1.0,45.0,1.0,-9.0,4.0,1257181 -3112725,1630222180,4,30,0,1,1630092361,2,1.0,44.0,1.0,-9.0,4.0,1257182 -3112726,1630222184,4,34,1,2,1630092361,1,1.0,40.0,2.0,-9.0,4.0,1257182 -3112727,1630222181,4,30,0,1,1630092362,2,1.0,44.0,1.0,-9.0,4.0,1257183 -3112728,1630222185,4,34,1,2,1630092362,1,1.0,40.0,2.0,-9.0,4.0,1257183 -3112729,1630222182,4,30,0,1,1630092363,2,1.0,44.0,1.0,-9.0,4.0,1257184 -3112730,1630222186,4,34,1,2,1630092363,1,1.0,40.0,2.0,-9.0,4.0,1257184 -3112731,1630221542,2,40,0,1,1630092364,2,1.0,40.0,1.0,-9.0,4.0,1257185 -3112732,1630221543,2,52,1,2,1630092364,1,1.0,40.0,1.0,-9.0,4.0,1257185 -3112733,1630221442,1,28,0,1,1630092365,1,1.0,70.0,1.0,-9.0,4.0,1257186 -3112734,1630221443,1,25,12,2,1630092365,1,1.0,45.0,1.0,-9.0,2.0,1257186 -3112735,1630221330,1,26,0,1,1630092366,1,1.0,40.0,1.0,-9.0,4.0,1257187 -3112736,1630221327,1,25,13,2,1630092366,2,1.0,30.0,1.0,-9.0,4.0,1257187 -3112737,1630221152,1,34,0,1,1630092367,2,1.0,65.0,1.0,-9.0,4.0,1257188 -3112738,1630221154,1,42,13,2,1630092367,1,1.0,43.0,1.0,-9.0,4.0,1257188 -3112739,1630221351,1,31,0,1,1630092368,1,1.0,40.0,3.0,-9.0,4.0,1257189 -3112740,1630221347,1,26,1,2,1630092368,2,1.0,40.0,1.0,16.0,4.0,1257189 -3112741,1630221153,1,34,0,1,1630092369,2,1.0,65.0,1.0,-9.0,4.0,1257190 -3112742,1630221155,1,42,13,2,1630092369,1,1.0,43.0,1.0,-9.0,4.0,1257190 -3112743,1630221352,1,31,0,1,1630092370,1,1.0,40.0,3.0,-9.0,4.0,1257191 -3112744,1630221348,1,26,1,2,1630092370,2,1.0,40.0,1.0,16.0,4.0,1257191 -3112745,1630221353,1,31,0,1,1630092371,1,1.0,40.0,3.0,-9.0,4.0,1257192 -3112746,1630221349,1,26,1,2,1630092371,2,1.0,40.0,1.0,16.0,4.0,1257192 -3112747,1630221285,1,28,0,1,1630092372,2,1.0,80.0,1.0,-9.0,2.0,1257193 -3112748,1630221287,1,26,13,2,1630092372,1,1.0,65.0,1.0,-9.0,4.0,1257193 -3112749,1630221317,1,28,0,1,1630092373,2,1.0,55.0,1.0,-9.0,4.0,1257194 -3112750,1630221318,1,28,1,2,1630092373,1,1.0,40.0,1.0,-9.0,4.0,1257194 -3112751,1630221331,1,26,0,1,1630092374,1,1.0,40.0,1.0,-9.0,4.0,1257195 -3112752,1630221328,1,25,13,2,1630092374,2,1.0,30.0,1.0,-9.0,4.0,1257195 -3112753,1630221354,1,31,0,1,1630092375,1,1.0,40.0,3.0,-9.0,4.0,1257196 -3112754,1630221350,1,26,1,2,1630092375,2,1.0,40.0,1.0,16.0,4.0,1257196 -3112755,1630221286,1,28,0,1,1630092376,2,1.0,80.0,1.0,-9.0,2.0,1257197 -3112756,1630221288,1,26,13,2,1630092376,1,1.0,65.0,1.0,-9.0,4.0,1257197 -3112757,1630221939,2,34,0,1,1630092377,1,6.0,-9.0,-9.0,-9.0,4.0,1257198 -3112758,1630221802,2,30,0,1,1630092378,2,6.0,-9.0,-9.0,-9.0,4.0,1257199 -3112759,1630221600,2,32,0,1,1630092379,2,6.0,-9.0,-9.0,16.0,4.0,1257200 -3112760,1630221965,2,43,0,1,1630092380,1,6.0,-9.0,-9.0,-9.0,4.0,1257201 -3112761,1630221728,2,43,0,1,1630092381,2,6.0,-9.0,-9.0,-9.0,4.0,1257202 -3112762,1630221987,2,36,0,1,1630092382,1,6.0,-9.0,-9.0,-9.0,4.0,1257203 -3112763,1630221552,2,38,0,1,1630092383,2,6.0,-9.0,-9.0,-9.0,4.0,1257204 -3112764,1630221641,2,41,0,1,1630092384,2,6.0,-9.0,-9.0,-9.0,4.0,1257205 -3112765,1630221803,2,30,0,1,1630092385,2,6.0,-9.0,-9.0,-9.0,4.0,1257206 -3112766,1630221561,2,40,0,1,1630092386,2,6.0,-9.0,-9.0,12.0,4.0,1257207 -3112767,1630221888,2,44,0,1,1630092387,1,6.0,-9.0,-9.0,-9.0,4.0,1257208 -3112768,1630221635,2,41,0,1,1630092388,2,6.0,-9.0,-9.0,-9.0,2.0,1257209 -3112769,1630221667,2,44,0,1,1630092389,2,3.0,8.0,6.0,-9.0,4.0,1257210 -3112770,1630221571,2,34,0,1,1630092390,2,3.0,-9.0,-9.0,15.0,4.0,1257211 -3112771,1630221601,2,32,0,1,1630092391,2,6.0,-9.0,-9.0,16.0,4.0,1257212 -3112772,1630221636,2,41,0,1,1630092392,2,6.0,-9.0,-9.0,-9.0,2.0,1257213 -3112773,1630221602,2,32,0,1,1630092393,2,6.0,-9.0,-9.0,16.0,4.0,1257214 -3112774,1630221572,2,34,0,1,1630092394,2,3.0,-9.0,-9.0,15.0,4.0,1257215 -3112775,1630221907,2,26,0,1,1630092395,1,6.0,-9.0,-9.0,-9.0,4.0,1257216 -3112776,1630221573,2,34,0,1,1630092396,2,3.0,-9.0,-9.0,15.0,4.0,1257217 -3112777,1630221988,2,36,0,1,1630092397,1,6.0,-9.0,-9.0,-9.0,4.0,1257218 -3112778,1630221908,2,26,0,1,1630092398,1,6.0,-9.0,-9.0,-9.0,4.0,1257219 -3112779,1630222000,2,33,0,1,1630092399,1,3.0,-9.0,-9.0,15.0,4.0,1257220 -3112780,1630221940,2,34,0,1,1630092400,1,6.0,-9.0,-9.0,-9.0,4.0,1257221 -3112781,1630222012,2,39,0,1,1630092401,1,6.0,-9.0,-9.0,-9.0,4.0,1257222 -3112782,1630221553,2,38,0,1,1630092402,2,6.0,-9.0,-9.0,-9.0,4.0,1257223 -3112783,1630222009,2,41,0,1,1630092403,1,3.0,40.0,5.0,-9.0,4.0,1257224 -3112784,1630221889,2,41,0,1,1630092404,1,3.0,24.0,5.0,-9.0,4.0,1257225 -3112785,1630221668,2,44,0,1,1630092405,2,3.0,8.0,6.0,-9.0,4.0,1257226 -3112786,1630221637,2,41,0,1,1630092406,2,6.0,-9.0,-9.0,-9.0,2.0,1257227 -3112787,1630222002,3,44,0,1,1630092407,1,3.0,-9.0,-9.0,-9.0,4.0,1257228 -3112788,1630221134,1,27,0,1,1630092408,2,3.0,-9.0,-9.0,-9.0,4.0,1257229 -3112789,1630221393,1,39,0,1,1630092409,1,6.0,8.0,6.0,16.0,4.0,1257230 -3112790,1630221135,1,27,0,1,1630092410,2,3.0,-9.0,-9.0,-9.0,4.0,1257231 -3112791,1630221344,1,37,0,1,1630092411,2,6.0,-9.0,-9.0,-9.0,4.0,1257232 -3112792,1630221345,1,37,0,1,1630092412,2,6.0,-9.0,-9.0,-9.0,4.0,1257233 -3112793,1630221394,1,39,0,1,1630092413,1,6.0,8.0,6.0,16.0,4.0,1257234 -3112794,1630221346,1,37,0,1,1630092414,2,6.0,-9.0,-9.0,-9.0,4.0,1257235 -3112795,1630222236,4,26,0,1,1630092415,1,6.0,-9.0,-9.0,16.0,4.0,1257236 -3112796,1630221676,2,42,0,1,1630092416,2,6.0,-9.0,-9.0,-9.0,4.0,1257237 -3112797,1630221567,2,26,0,1,1630092417,2,6.0,-9.0,-9.0,-9.0,4.0,1257238 -3112798,1630221616,2,33,0,1,1630092418,2,3.0,-9.0,-9.0,-9.0,4.0,1257239 -3112799,1630221695,2,44,0,1,1630092419,2,6.0,-9.0,-9.0,-9.0,4.0,1257240 -3112800,1630221920,2,37,0,1,1630092420,1,6.0,-9.0,-9.0,-9.0,4.0,1257241 -3112801,1630221804,2,29,0,1,1630092421,2,3.0,40.0,5.0,-9.0,4.0,1257242 -3112802,1630221147,1,28,0,1,1630092422,2,6.0,-9.0,-9.0,-9.0,4.0,1257243 -3112803,1630221293,1,37,0,1,1630092423,2,6.0,-9.0,-9.0,16.0,4.0,1257244 -3112804,1630221395,1,29,0,1,1630092424,1,6.0,-9.0,-9.0,15.0,4.0,1257245 -3112805,1630221294,1,37,0,1,1630092425,2,6.0,-9.0,-9.0,16.0,4.0,1257246 -3112806,1630221927,2,41,0,1,1630092426,1,3.0,-9.0,-9.0,-9.0,4.0,1257247 -3112807,1630221928,2,41,0,1,1630092427,1,3.0,-9.0,-9.0,-9.0,4.0,1257248 -3112808,1630221430,4,28,0,1,1630092428,1,6.0,-9.0,-9.0,16.0,4.0,1257249 -3112809,1630221426,1,28,12,2,1630092428,1,6.0,-9.0,-9.0,16.0,4.0,1257249 -3112810,1630221428,1,25,12,3,1630092428,1,6.0,-9.0,-9.0,16.0,4.0,1257249 -3112811,1630222237,4,26,0,1,1630092429,1,6.0,36.0,5.0,-9.0,4.0,1257250 -3112812,1630222239,4,25,12,2,1630092429,1,6.0,-9.0,-9.0,-9.0,4.0,1257250 -3112813,1630221872,2,36,0,1,1630092430,2,6.0,-9.0,-9.0,-9.0,4.0,1257251 -3112814,1630221873,2,36,0,1,1630092431,2,6.0,-9.0,-9.0,-9.0,4.0,1257252 -3112815,1630221562,2,34,0,1,1630092432,2,1.0,24.0,1.0,-9.0,4.0,1257253 -3112816,1630221838,2,41,0,1,1630092433,2,1.0,40.0,1.0,-9.0,4.0,1257254 -3112817,1630221926,2,39,0,1,1630092434,1,1.0,40.0,1.0,-9.0,4.0,1257255 -3112818,1630221654,2,42,0,1,1630092435,2,1.0,45.0,1.0,-9.0,4.0,1257256 -3112819,1630221839,2,41,0,1,1630092436,2,1.0,40.0,1.0,-9.0,4.0,1257257 -3112820,1630221822,2,27,0,1,1630092437,2,1.0,35.0,1.0,-9.0,4.0,1257258 -3112821,1630221840,2,41,0,1,1630092438,2,1.0,40.0,1.0,-9.0,4.0,1257259 -3112822,1630221823,2,27,0,1,1630092439,2,1.0,35.0,1.0,-9.0,4.0,1257260 -3112823,1630221854,2,37,0,1,1630092440,2,1.0,35.0,2.0,-9.0,4.0,1257261 -3112824,1630221563,2,34,0,1,1630092441,2,1.0,24.0,1.0,-9.0,4.0,1257262 -3112825,1630221855,2,37,0,1,1630092442,2,1.0,35.0,2.0,-9.0,4.0,1257263 -3112826,1630221912,2,40,0,1,1630092443,1,1.0,40.0,6.0,-9.0,4.0,1257264 -3112827,1630221655,2,42,0,1,1630092444,2,1.0,45.0,1.0,-9.0,4.0,1257265 -3112828,1630221824,2,27,0,1,1630092445,2,1.0,35.0,1.0,-9.0,4.0,1257266 -3112829,1630221825,2,27,0,1,1630092446,2,1.0,35.0,1.0,-9.0,4.0,1257267 -3112830,1630221334,1,26,0,1,1630092447,2,1.0,65.0,2.0,-9.0,4.0,1257268 -3112831,1630221488,1,32,0,1,1630092448,1,1.0,60.0,5.0,-9.0,4.0,1257269 -3112832,1630221269,1,44,0,1,1630092449,2,1.0,40.0,1.0,-9.0,4.0,1257270 -3112833,1630221247,1,25,0,1,1630092450,2,1.0,30.0,3.0,-9.0,4.0,1257271 -3112834,1630221489,1,32,0,1,1630092451,1,1.0,60.0,5.0,-9.0,4.0,1257272 -3112835,1630221270,1,44,0,1,1630092452,2,1.0,40.0,1.0,-9.0,4.0,1257273 -3112836,1630221271,1,44,0,1,1630092453,2,1.0,40.0,1.0,-9.0,4.0,1257274 -3112837,1630221382,1,42,0,1,1630092454,1,1.0,40.0,1.0,-9.0,2.0,1257275 -3112838,1630221490,1,32,0,1,1630092455,1,1.0,60.0,5.0,-9.0,4.0,1257276 -3112839,1630221491,1,32,0,1,1630092456,1,1.0,60.0,5.0,-9.0,4.0,1257277 -3112840,1630221335,1,26,0,1,1630092457,2,1.0,65.0,2.0,-9.0,4.0,1257278 -3112841,1630221248,1,25,0,1,1630092458,2,1.0,30.0,3.0,-9.0,4.0,1257279 -3112842,1630221492,1,32,0,1,1630092459,1,1.0,60.0,5.0,-9.0,4.0,1257280 -3112843,1630221249,1,25,0,1,1630092460,2,1.0,30.0,3.0,-9.0,4.0,1257281 -3112844,1630221272,1,44,0,1,1630092461,2,1.0,40.0,1.0,-9.0,4.0,1257282 -3112845,1630221273,1,44,0,1,1630092462,2,1.0,40.0,1.0,-9.0,4.0,1257283 -3112846,1630221274,1,44,0,1,1630092463,2,1.0,40.0,1.0,-9.0,4.0,1257284 -3112847,1630222225,4,31,0,1,1630092464,1,1.0,17.0,1.0,16.0,4.0,1257285 -3112848,1630222194,4,30,0,1,1630092465,2,1.0,40.0,1.0,-9.0,4.0,1257286 -3112849,1630222195,4,30,0,1,1630092466,2,1.0,40.0,1.0,-9.0,4.0,1257287 -3112850,1630222226,4,31,0,1,1630092467,1,1.0,17.0,1.0,16.0,4.0,1257288 -3112851,1630222196,4,30,0,1,1630092468,2,1.0,40.0,1.0,-9.0,4.0,1257289 -3112852,1630222197,4,30,0,1,1630092469,2,1.0,40.0,1.0,-9.0,4.0,1257290 -3112853,1630222198,4,30,0,1,1630092470,2,1.0,40.0,1.0,-9.0,4.0,1257291 -3112854,1630222199,4,30,0,1,1630092471,2,1.0,40.0,1.0,-9.0,4.0,1257292 -3112855,1630222200,4,30,0,1,1630092472,2,1.0,40.0,1.0,-9.0,4.0,1257293 -3112856,1630221807,2,44,0,1,1630092473,2,1.0,40.0,1.0,-9.0,4.0,1257294 -3112857,1630221787,2,29,0,1,1630092474,2,1.0,40.0,2.0,-9.0,4.0,1257295 -3112858,1630221846,2,25,0,1,1630092475,2,1.0,40.0,1.0,-9.0,4.0,1257296 -3112859,1630221782,2,42,0,1,1630092476,2,1.0,38.0,1.0,15.0,4.0,1257297 -3112860,1630222024,2,44,0,1,1630092477,1,1.0,40.0,1.0,-9.0,4.0,1257298 -3112861,1630221783,2,42,0,1,1630092478,2,1.0,38.0,1.0,15.0,4.0,1257299 -3112862,1630221996,2,29,0,1,1630092479,1,1.0,40.0,1.0,-9.0,4.0,1257300 -3112863,1630221299,1,26,0,1,1630092480,2,1.0,20.0,4.0,16.0,4.0,1257301 -3112864,1630221300,1,26,0,1,1630092481,2,1.0,20.0,4.0,16.0,4.0,1257302 -3112865,1630221466,1,30,0,1,1630092482,1,1.0,50.0,1.0,-9.0,4.0,1257303 -3112866,1630221231,1,31,0,1,1630092483,2,1.0,50.0,1.0,-9.0,4.0,1257304 -3112867,1630221416,1,25,0,1,1630092484,1,1.0,10.0,5.0,16.0,4.0,1257305 -3112868,1630221456,1,33,0,1,1630092485,1,1.0,60.0,4.0,-9.0,4.0,1257306 -3112869,1630221232,1,31,0,1,1630092486,2,1.0,50.0,1.0,-9.0,4.0,1257307 -3112870,1630221339,1,31,0,1,1630092487,2,1.0,20.0,1.0,-9.0,4.0,1257308 -3112871,1630221186,1,26,0,1,1630092488,2,1.0,40.0,5.0,-9.0,4.0,1257309 -3112872,1630221301,1,26,0,1,1630092489,2,1.0,20.0,4.0,16.0,4.0,1257310 -3112873,1630221233,1,31,0,1,1630092490,2,1.0,50.0,1.0,-9.0,4.0,1257311 -3112874,1630221308,1,31,0,1,1630092491,2,1.0,80.0,5.0,-9.0,4.0,1257312 -3112875,1630221457,1,33,0,1,1630092492,1,1.0,60.0,4.0,-9.0,4.0,1257313 -3112876,1630221500,1,26,0,1,1630092493,1,1.0,60.0,2.0,16.0,4.0,1257314 -3112877,1630221458,1,33,0,1,1630092494,1,1.0,60.0,4.0,-9.0,4.0,1257315 -3112878,1630221340,1,31,0,1,1630092495,2,1.0,20.0,1.0,-9.0,4.0,1257316 -3112879,1630221305,1,25,0,1,1630092496,2,1.0,40.0,4.0,-9.0,4.0,1257317 -3112880,1630221187,1,26,0,1,1630092497,2,1.0,40.0,5.0,-9.0,4.0,1257318 -3112881,1630222174,4,26,0,1,1630092498,2,6.0,-9.0,-9.0,-9.0,4.0,1257319 -3112882,1630222177,4,26,1,2,1630092498,1,1.0,40.0,1.0,16.0,4.0,1257319 -3112883,1630222175,4,26,0,1,1630092499,2,6.0,-9.0,-9.0,-9.0,4.0,1257320 -3112884,1630222178,4,26,1,2,1630092499,1,1.0,40.0,1.0,16.0,4.0,1257320 -3112885,1630221669,2,37,0,1,1630092500,2,2.0,25.0,1.0,-9.0,4.0,1257321 -3112886,1630221670,2,19,2,2,1630092500,1,3.0,-9.0,-9.0,-9.0,4.0,1257321 -3112887,1630221617,2,29,0,1,1630092501,2,6.0,-9.0,-9.0,-9.0,4.0,1257322 -3112888,1630221619,2,32,12,2,1630092501,1,2.0,40.0,4.0,-9.0,4.0,1257322 -3112889,1630221265,1,43,0,1,1630092502,2,6.0,-9.0,-9.0,-9.0,4.0,1257323 -3112890,1630221266,1,52,13,2,1630092502,1,1.0,25.0,1.0,-9.0,4.0,1257323 -3112891,1630221777,2,63,0,1,1630092503,2,1.0,40.0,1.0,-9.0,4.0,1257324 -3112892,1630221778,2,63,0,1,1630092504,2,1.0,40.0,1.0,-9.0,4.0,1257325 -3112893,1630221832,2,45,0,1,1630092505,2,1.0,40.0,1.0,-9.0,4.0,1257326 -3112894,1630221857,2,58,0,1,1630092506,2,1.0,23.0,2.0,-9.0,4.0,1257327 -3112895,1630221514,1,57,0,1,1630092507,1,1.0,45.0,2.0,-9.0,4.0,1257328 -3112896,1630221497,1,50,0,1,1630092508,1,1.0,60.0,1.0,-9.0,4.0,1257329 -3112897,1630221326,1,51,0,1,1630092509,2,1.0,40.0,1.0,16.0,4.0,1257330 -3112898,1630221498,1,50,0,1,1630092510,1,1.0,60.0,1.0,-9.0,4.0,1257331 -3112899,1630221515,1,57,0,1,1630092511,1,1.0,45.0,2.0,-9.0,4.0,1257332 -3112900,1630222014,2,62,0,1,1630092512,1,1.0,30.0,3.0,-9.0,4.0,1257333 -3112901,1630222015,2,62,0,1,1630092513,1,1.0,30.0,3.0,-9.0,4.0,1257334 -3112902,1630221557,2,49,0,1,1630092514,2,1.0,50.0,1.0,-9.0,4.0,1257335 -3112903,1630221558,2,43,1,2,1630092514,1,1.0,55.0,1.0,-9.0,4.0,1257335 -3112904,1630221253,1,54,0,1,1630092515,1,1.0,65.0,1.0,-9.0,4.0,1257336 -3112905,1630221250,1,45,1,2,1630092515,2,1.0,40.0,1.0,-9.0,4.0,1257336 -3112906,1630221254,1,54,0,1,1630092516,1,1.0,65.0,1.0,-9.0,4.0,1257337 -3112907,1630221251,1,45,1,2,1630092516,2,1.0,40.0,1.0,-9.0,4.0,1257337 -3112908,1630222021,2,63,0,1,1630092517,1,6.0,-9.0,-9.0,-9.0,4.0,1257338 -3112909,1630222019,2,57,0,1,1630092518,1,6.0,-9.0,-9.0,-9.0,2.0,1257339 -3112910,1630221588,2,64,0,1,1630092519,2,6.0,-9.0,-9.0,-9.0,4.0,1257340 -3112911,1630221183,1,59,0,1,1630092520,2,6.0,-9.0,-9.0,-9.0,4.0,1257341 -3112912,1630221678,2,55,0,1,1630092521,2,1.0,40.0,1.0,-9.0,4.0,1257342 -3112913,1630221951,2,47,0,1,1630092522,1,1.0,40.0,1.0,-9.0,4.0,1257343 -3112914,1630221607,2,56,0,1,1630092523,2,1.0,40.0,1.0,-9.0,4.0,1257344 -3112915,1630221990,2,45,0,1,1630092524,1,1.0,40.0,1.0,-9.0,2.0,1257345 -3112916,1630221991,2,45,0,1,1630092525,1,1.0,40.0,1.0,-9.0,2.0,1257346 -3112917,1630221992,2,45,0,1,1630092526,1,1.0,40.0,1.0,-9.0,2.0,1257347 -3112918,1630221870,2,61,0,1,1630092527,2,1.0,40.0,1.0,-9.0,4.0,1257348 -3112919,1630221609,2,59,0,1,1630092528,2,1.0,40.0,4.0,-9.0,4.0,1257349 -3112920,1630221993,2,45,0,1,1630092529,1,1.0,40.0,1.0,-9.0,2.0,1257350 -3112921,1630221871,2,61,0,1,1630092530,2,1.0,40.0,1.0,-9.0,4.0,1257351 -3112922,1630221175,1,58,0,1,1630092531,2,1.0,40.0,1.0,-9.0,4.0,1257352 -3112923,1630221176,1,58,0,1,1630092532,2,1.0,40.0,1.0,-9.0,4.0,1257353 -3112924,1630222244,4,51,0,1,1630092533,1,1.0,70.0,1.0,16.0,4.0,1257354 -3112925,1630221652,2,61,0,1,1630092534,2,1.0,20.0,1.0,-9.0,4.0,1257355 -3112926,1630222022,2,58,0,1,1630092535,1,1.0,40.0,1.0,15.0,2.0,1257356 -3112927,1630221608,2,64,0,1,1630092536,2,1.0,40.0,1.0,-9.0,4.0,1257357 -3112928,1630221968,2,45,0,1,1630092537,1,1.0,36.0,1.0,-9.0,3.0,1257358 -3112929,1630221653,2,61,0,1,1630092538,2,1.0,20.0,1.0,-9.0,4.0,1257359 -3112930,1630221650,2,47,0,1,1630092539,2,1.0,30.0,1.0,-9.0,4.0,1257360 -3112931,1630221885,2,53,0,1,1630092540,1,1.0,70.0,1.0,15.0,4.0,1257361 -3112932,1630221836,2,54,0,1,1630092541,2,1.0,40.0,1.0,-9.0,4.0,1257362 -3112933,1630221904,2,54,0,1,1630092542,1,1.0,40.0,3.0,-9.0,4.0,1257363 -3112934,1630221896,2,59,0,1,1630092543,1,1.0,40.0,1.0,-9.0,4.0,1257364 -3112935,1630221574,2,55,0,1,1630092544,2,1.0,40.0,1.0,-9.0,4.0,1257365 -3112936,1630221480,1,63,0,1,1630092545,1,1.0,40.0,1.0,-9.0,4.0,1257366 -3112937,1630221197,1,63,0,1,1630092546,2,1.0,40.0,1.0,-9.0,4.0,1257367 -3112938,1630221404,1,52,0,1,1630092547,1,1.0,40.0,1.0,-9.0,4.0,1257368 -3112939,1630221481,1,63,0,1,1630092548,1,1.0,40.0,1.0,-9.0,4.0,1257369 -3112940,1630221945,2,60,0,1,1630092549,1,1.0,40.0,1.0,-9.0,4.0,1257370 -3112941,1630221946,2,60,0,1,1630092550,1,1.0,40.0,1.0,-9.0,4.0,1257371 -3112942,1630222010,2,56,0,1,1630092551,1,1.0,40.0,1.0,-9.0,4.0,1257372 -3112943,1630221424,1,57,0,1,1630092552,1,1.0,55.0,1.0,-9.0,4.0,1257373 -3112944,1630221425,1,57,0,1,1630092553,1,1.0,55.0,1.0,-9.0,4.0,1257374 -3112945,1630221811,2,60,0,1,1630092554,1,1.0,48.0,1.0,-9.0,4.0,1257375 -3112946,1630221810,2,60,1,2,1630092554,2,6.0,-9.0,-9.0,-9.0,4.0,1257375 -3112947,1630221556,2,47,0,1,1630092555,1,2.0,40.0,1.0,-9.0,2.0,1257376 -3112948,1630221555,2,52,1,2,1630092555,2,1.0,16.0,6.0,-9.0,4.0,1257376 -3112949,1630221941,2,57,0,1,1630092556,1,6.0,40.0,1.0,-9.0,4.0,1257377 -3112950,1630222218,4,45,0,1,1630092557,1,1.0,36.0,1.0,-9.0,4.0,1257378 -3112951,1630222219,4,45,0,1,1630092558,1,1.0,36.0,1.0,-9.0,4.0,1257379 -3112952,1630222220,4,45,0,1,1630092559,1,1.0,36.0,1.0,-9.0,4.0,1257380 -3112953,1630222221,4,45,0,1,1630092560,1,1.0,36.0,1.0,-9.0,4.0,1257381 -3112954,1630222222,4,45,0,1,1630092561,1,1.0,36.0,1.0,-9.0,4.0,1257382 -3112955,1630222223,4,45,0,1,1630092562,1,1.0,36.0,1.0,-9.0,4.0,1257383 -3112956,1630222224,4,45,0,1,1630092563,1,1.0,36.0,1.0,-9.0,4.0,1257384 -3112957,1630221679,2,58,0,1,1630092564,2,1.0,75.0,1.0,-9.0,4.0,1257385 -3112958,1630221696,2,56,0,1,1630092565,2,1.0,40.0,1.0,-9.0,4.0,1257386 -3112959,1630221697,2,56,0,1,1630092566,2,1.0,40.0,1.0,-9.0,4.0,1257387 -3112960,1630221699,2,62,0,1,1630092567,2,1.0,40.0,1.0,-9.0,4.0,1257388 -3112961,1630221206,1,55,0,1,1630092568,2,1.0,50.0,1.0,-9.0,4.0,1257389 -3112962,1630221139,1,57,0,1,1630092569,2,1.0,50.0,1.0,-9.0,4.0,1257390 -3112963,1630221343,1,48,0,1,1630092570,2,1.0,50.0,1.0,-9.0,4.0,1257391 -3112964,1630221886,2,48,0,1,1630092571,1,1.0,50.0,1.0,-9.0,4.0,1257392 -3112965,1630221377,1,63,0,1,1630092572,1,1.0,92.0,1.0,-9.0,4.0,1257393 -3112966,1630221378,1,63,0,1,1630092573,1,1.0,92.0,1.0,-9.0,4.0,1257394 -3112967,1630221379,1,63,0,1,1630092574,1,1.0,92.0,1.0,-9.0,4.0,1257395 -3112968,1630221623,2,64,0,1,1630092575,2,6.0,-9.0,-9.0,-9.0,4.0,1257396 -3112969,1630221625,2,67,1,2,1630092575,1,6.0,-9.0,-9.0,-9.0,4.0,1257396 -3112970,1630221624,2,33,2,3,1630092575,1,1.0,8.0,6.0,15.0,4.0,1257396 -3112971,1630222016,2,57,0,1,1630092576,1,1.0,40.0,1.0,15.0,2.0,1257397 -3112972,1630222017,2,35,2,2,1630092576,1,1.0,40.0,1.0,-9.0,4.0,1257397 -3112973,1630221914,2,58,0,1,1630092577,1,6.0,-9.0,-9.0,-9.0,4.0,1257398 -3112974,1630221766,2,62,0,1,1630092578,2,6.0,-9.0,-9.0,-9.0,4.0,1257399 -3112975,1630221746,2,56,0,1,1630092579,2,3.0,-9.0,-9.0,-9.0,4.0,1257400 -3112976,1630221915,2,58,0,1,1630092580,1,6.0,-9.0,-9.0,-9.0,4.0,1257401 -3112977,1630221647,2,55,0,1,1630092581,2,6.0,-9.0,-9.0,-9.0,4.0,1257402 -3112978,1630221801,2,53,0,1,1630092582,2,6.0,-9.0,-9.0,-9.0,4.0,1257403 -3112979,1630221984,2,53,0,1,1630092583,1,6.0,-9.0,-9.0,-9.0,4.0,1257404 -3112980,1630221861,2,61,0,1,1630092584,2,6.0,-9.0,-9.0,-9.0,4.0,1257405 -3112981,1630221934,2,63,0,1,1630092585,1,6.0,-9.0,-9.0,-9.0,4.0,1257406 -3112982,1630221964,2,58,0,1,1630092586,1,6.0,-9.0,-9.0,-9.0,4.0,1257407 -3112983,1630221718,2,62,0,1,1630092587,2,6.0,-9.0,-9.0,-9.0,4.0,1257408 -3112984,1630221603,2,53,0,1,1630092588,2,6.0,-9.0,-9.0,-9.0,4.0,1257409 -3112985,1630221605,2,61,0,1,1630092589,2,6.0,-9.0,-9.0,-9.0,4.0,1257410 -3112986,1630221743,2,55,0,1,1630092590,2,6.0,-9.0,-9.0,-9.0,4.0,1257411 -3112987,1630221595,2,52,0,1,1630092591,2,6.0,-9.0,-9.0,-9.0,4.0,1257412 -3112988,1630221970,2,56,0,1,1630092592,1,6.0,-9.0,-9.0,-9.0,4.0,1257413 -3112989,1630221771,2,62,0,1,1630092593,2,6.0,-9.0,-9.0,-9.0,4.0,1257414 -3112990,1630221583,2,64,0,1,1630092594,2,6.0,-9.0,-9.0,-9.0,4.0,1257415 -3112991,1630221726,2,48,0,1,1630092595,2,6.0,-9.0,-9.0,-9.0,4.0,1257416 -3112992,1630222030,2,57,0,1,1630092596,1,6.0,-9.0,-9.0,-9.0,4.0,1257417 -3112993,1630221819,2,62,0,1,1630092597,2,6.0,-9.0,-9.0,-9.0,4.0,1257418 -3112994,1630221626,2,63,0,1,1630092598,2,6.0,-9.0,-9.0,-9.0,4.0,1257419 -3112995,1630221989,2,51,0,1,1630092599,1,3.0,-9.0,-9.0,-9.0,4.0,1257420 -3112996,1630221744,2,55,0,1,1630092600,2,6.0,-9.0,-9.0,-9.0,4.0,1257421 -3112997,1630221579,2,57,0,1,1630092601,2,6.0,-9.0,-9.0,-9.0,4.0,1257422 -3112998,1630221648,2,55,0,1,1630092602,2,6.0,-9.0,-9.0,-9.0,4.0,1257423 -3112999,1630221582,2,50,0,1,1630092603,2,6.0,-9.0,-9.0,-9.0,4.0,1257424 -3113000,1630221745,2,55,0,1,1630092604,2,6.0,-9.0,-9.0,-9.0,4.0,1257425 -3113001,1630221757,2,60,0,1,1630092605,2,6.0,-9.0,-9.0,-9.0,4.0,1257426 -3113002,1630221698,2,45,0,1,1630092606,2,6.0,-9.0,-9.0,-9.0,4.0,1257427 -3113003,1630221820,2,62,0,1,1630092607,2,6.0,-9.0,-9.0,-9.0,4.0,1257428 -3113004,1630221863,2,52,0,1,1630092608,2,3.0,-9.0,-9.0,-9.0,4.0,1257429 -3113005,1630221792,2,62,0,1,1630092609,2,6.0,-9.0,-9.0,-9.0,4.0,1257430 -3113006,1630221590,2,58,0,1,1630092610,2,6.0,-9.0,-9.0,-9.0,2.0,1257431 -3113007,1630221952,2,57,0,1,1630092611,1,6.0,-9.0,-9.0,-9.0,2.0,1257432 -3113008,1630221568,2,51,0,1,1630092612,2,6.0,-9.0,-9.0,-9.0,4.0,1257433 -3113009,1630221570,2,60,0,1,1630092613,2,6.0,32.0,6.0,-9.0,4.0,1257434 -3113010,1630221767,2,59,0,1,1630092614,2,6.0,-9.0,-9.0,-9.0,4.0,1257435 -3113011,1630221997,2,64,0,1,1630092615,1,6.0,-9.0,-9.0,-9.0,2.0,1257436 -3113012,1630221986,2,63,0,1,1630092616,1,6.0,-9.0,-9.0,-9.0,4.0,1257437 -3113013,1630221791,2,52,0,1,1630092617,2,6.0,-9.0,-9.0,-9.0,4.0,1257438 -3113014,1630221909,2,54,0,1,1630092618,1,3.0,-9.0,-9.0,-9.0,4.0,1257439 -3113015,1630221649,2,55,0,1,1630092619,2,6.0,-9.0,-9.0,-9.0,4.0,1257440 -3113016,1630221768,2,59,0,1,1630092620,2,6.0,-9.0,-9.0,-9.0,4.0,1257441 -3113017,1630221953,2,61,0,1,1630092621,1,6.0,32.0,6.0,15.0,4.0,1257442 -3113018,1630221845,2,61,0,1,1630092622,2,6.0,-9.0,-9.0,-9.0,4.0,1257443 -3113019,1630221881,2,53,0,1,1630092623,1,3.0,-9.0,-9.0,-9.0,4.0,1257444 -3113020,1630221880,2,53,0,1,1630092624,1,6.0,-9.0,-9.0,-9.0,4.0,1257445 -3113021,1630221921,2,58,0,1,1630092625,1,6.0,-9.0,-9.0,-9.0,4.0,1257446 -3113022,1630221758,2,60,0,1,1630092626,2,6.0,-9.0,-9.0,-9.0,4.0,1257447 -3113023,1630221629,2,47,0,1,1630092627,2,6.0,-9.0,-9.0,-9.0,4.0,1257448 -3113024,1630221844,2,45,0,1,1630092628,2,6.0,-9.0,-9.0,-9.0,4.0,1257449 -3113025,1630221550,2,61,0,1,1630092629,2,6.0,-9.0,-9.0,-9.0,4.0,1257450 -3113026,1630221591,2,58,0,1,1630092630,2,6.0,-9.0,-9.0,-9.0,2.0,1257451 -3113027,1630221627,2,63,0,1,1630092631,2,6.0,-9.0,-9.0,-9.0,4.0,1257452 -3113028,1630221711,2,59,0,1,1630092632,2,3.0,-9.0,-9.0,-9.0,4.0,1257453 -3113029,1630221551,2,61,0,1,1630092633,2,6.0,-9.0,-9.0,-9.0,4.0,1257454 -3113030,1630222031,2,50,0,1,1630092634,1,6.0,-9.0,-9.0,-9.0,4.0,1257455 -3113031,1630221971,2,56,0,1,1630092635,1,6.0,-9.0,-9.0,-9.0,4.0,1257456 -3113032,1630221671,2,63,0,1,1630092636,2,6.0,-9.0,-9.0,-9.0,4.0,1257457 -3113033,1630221862,2,61,0,1,1630092637,2,6.0,-9.0,-9.0,-9.0,4.0,1257458 -3113034,1630221661,2,58,0,1,1630092638,2,6.0,-9.0,-9.0,-9.0,4.0,1257459 -3113035,1630221592,2,58,0,1,1630092639,2,6.0,-9.0,-9.0,-9.0,2.0,1257460 -3113036,1630222011,2,64,0,1,1630092640,1,6.0,-9.0,-9.0,-9.0,2.0,1257461 -3113037,1630221685,2,51,0,1,1630092641,2,6.0,-9.0,-9.0,-9.0,4.0,1257462 -3113038,1630221554,2,57,0,1,1630092642,2,6.0,-9.0,-9.0,-9.0,4.0,1257463 -3113039,1630221632,2,54,0,1,1630092643,2,6.0,-9.0,-9.0,-9.0,4.0,1257464 -3113040,1630221703,2,58,0,1,1630092644,2,3.0,-9.0,-9.0,12.0,4.0,1257465 -3113041,1630221706,2,50,0,1,1630092645,2,6.0,-9.0,-9.0,-9.0,4.0,1257466 -3113042,1630221910,2,54,0,1,1630092646,1,3.0,-9.0,-9.0,-9.0,4.0,1257467 -3113043,1630221628,2,63,0,1,1630092647,2,6.0,-9.0,-9.0,-9.0,4.0,1257468 -3113044,1630221868,2,50,0,1,1630092648,2,3.0,-9.0,-9.0,-9.0,4.0,1257469 -3113045,1630221606,2,61,0,1,1630092649,2,6.0,-9.0,-9.0,-9.0,4.0,1257470 -3113046,1630221719,2,62,0,1,1630092650,2,6.0,-9.0,-9.0,-9.0,4.0,1257471 -3113047,1630221672,2,63,0,1,1630092651,2,6.0,-9.0,-9.0,-9.0,4.0,1257472 -3113048,1630221821,2,62,0,1,1630092652,2,6.0,-9.0,-9.0,-9.0,4.0,1257473 -3113049,1630221756,2,62,0,1,1630092653,2,6.0,-9.0,-9.0,-9.0,4.0,1257474 -3113050,1630221673,2,63,0,1,1630092654,2,6.0,-9.0,-9.0,-9.0,4.0,1257475 -3113051,1630221922,2,58,0,1,1630092655,1,6.0,-9.0,-9.0,-9.0,4.0,1257476 -3113052,1630221969,2,62,0,1,1630092656,1,6.0,30.0,4.0,-9.0,4.0,1257477 -3113053,1630222006,2,61,0,1,1630092657,1,6.0,-9.0,-9.0,-9.0,4.0,1257478 -3113054,1630222007,2,61,0,1,1630092658,1,6.0,-9.0,-9.0,-9.0,4.0,1257479 -3113055,1630221905,2,61,0,1,1630092659,1,6.0,-9.0,-9.0,-9.0,4.0,1257480 -3113056,1630221960,2,62,0,1,1630092660,1,6.0,-9.0,-9.0,-9.0,2.0,1257481 -3113057,1630221878,2,63,0,1,1630092661,2,6.0,-9.0,-9.0,-9.0,4.0,1257482 -3113058,1630222032,2,50,0,1,1630092662,1,6.0,-9.0,-9.0,-9.0,4.0,1257483 -3113059,1630221707,2,50,0,1,1630092663,2,6.0,-9.0,-9.0,-9.0,4.0,1257484 -3113060,1630221604,2,53,0,1,1630092664,2,6.0,-9.0,-9.0,-9.0,4.0,1257485 -3113061,1630221580,2,57,0,1,1630092665,2,6.0,-9.0,-9.0,-9.0,4.0,1257486 -3113062,1630221712,2,59,0,1,1630092666,2,3.0,-9.0,-9.0,-9.0,4.0,1257487 -3113063,1630221564,2,46,0,1,1630092667,2,3.0,40.0,6.0,-9.0,4.0,1257488 -3113064,1630221942,2,54,0,1,1630092668,1,6.0,-9.0,-9.0,-9.0,2.0,1257489 -3113065,1630221665,2,64,0,1,1630092669,2,6.0,-9.0,-9.0,-9.0,4.0,1257490 -3113066,1630221727,2,48,0,1,1630092670,2,6.0,-9.0,-9.0,-9.0,4.0,1257491 -3113067,1630221894,2,54,0,1,1630092671,1,3.0,-9.0,-9.0,-9.0,2.0,1257492 -3113068,1630222029,2,57,0,1,1630092672,1,6.0,-9.0,-9.0,-9.0,4.0,1257493 -3113069,1630221633,2,54,0,1,1630092673,2,6.0,-9.0,-9.0,-9.0,4.0,1257494 -3113070,1630221882,2,54,0,1,1630092674,1,6.0,-9.0,-9.0,-9.0,4.0,1257495 -3113071,1630221666,2,64,0,1,1630092675,2,6.0,-9.0,-9.0,-9.0,4.0,1257496 -3113072,1630221587,2,62,0,1,1630092676,2,6.0,-9.0,-9.0,-9.0,4.0,1257497 -3113073,1630221793,2,62,0,1,1630092677,2,6.0,-9.0,-9.0,-9.0,4.0,1257498 -3113074,1630221949,2,58,0,1,1630092678,1,6.0,-9.0,-9.0,-9.0,4.0,1257499 -3113075,1630221493,1,50,0,1,1630092679,1,3.0,-9.0,-9.0,-9.0,2.0,1257500 -3113076,1630221521,1,53,0,1,1630092680,1,6.0,8.0,6.0,-9.0,4.0,1257501 -3113077,1630221518,1,51,0,1,1630092681,1,6.0,-9.0,-9.0,-9.0,2.0,1257502 -3113078,1630221464,1,60,0,1,1630092682,1,6.0,-9.0,-9.0,15.0,4.0,1257503 -3113079,1630221387,1,45,0,1,1630092683,1,6.0,-9.0,-9.0,-9.0,4.0,1257504 -3113080,1630221388,1,45,0,1,1630092684,1,6.0,-9.0,-9.0,-9.0,4.0,1257505 -3113081,1630221494,1,50,0,1,1630092685,1,3.0,-9.0,-9.0,-9.0,2.0,1257506 -3113082,1630221445,1,64,0,1,1630092686,1,6.0,-9.0,-9.0,-9.0,4.0,1257507 -3113083,1630221338,1,60,0,1,1630092687,2,6.0,-9.0,-9.0,-9.0,4.0,1257508 -3113084,1630221495,1,50,0,1,1630092688,1,3.0,-9.0,-9.0,-9.0,2.0,1257509 -3113085,1630221522,1,53,0,1,1630092689,1,6.0,8.0,6.0,-9.0,4.0,1257510 -3113086,1630221519,1,51,0,1,1630092690,1,6.0,-9.0,-9.0,-9.0,2.0,1257511 -3113087,1630221132,1,51,0,1,1630092691,2,6.0,-9.0,-9.0,-9.0,2.0,1257512 -3113088,1630221520,1,51,0,1,1630092692,1,6.0,-9.0,-9.0,-9.0,2.0,1257513 -3113089,1630221182,3,61,0,1,1630092693,2,6.0,-9.0,-9.0,-9.0,4.0,1257514 -3113090,1630221938,2,57,0,1,1630092694,1,6.0,-9.0,-9.0,-9.0,4.0,1257515 -3113091,1630221829,2,46,0,1,1630092695,2,3.0,-9.0,-9.0,-9.0,4.0,1257516 -3113092,1630221581,2,47,0,1,1630092696,2,6.0,-9.0,-9.0,15.0,4.0,1257517 -3113093,1630222013,2,53,0,1,1630092697,1,6.0,-9.0,-9.0,-9.0,4.0,1257518 -3113094,1630221985,2,63,0,1,1630092698,1,6.0,-9.0,-9.0,-9.0,2.0,1257519 -3113095,1630221929,2,60,0,1,1630092699,1,6.0,-9.0,-9.0,-9.0,4.0,1257520 -3113096,1630221851,2,61,0,1,1630092700,2,6.0,40.0,6.0,-9.0,4.0,1257521 -3113097,1630221140,1,60,0,1,1630092701,2,6.0,-9.0,-9.0,-9.0,4.0,1257522 -3113098,1630222026,2,46,0,1,1630092702,1,3.0,-9.0,-9.0,-9.0,4.0,1257523 -3113099,1630221784,2,49,0,1,1630092703,2,6.0,-9.0,-9.0,-9.0,4.0,1257524 -3113100,1630221785,2,35,1,2,1630092703,1,6.0,-9.0,-9.0,-9.0,4.0,1257524 -3113101,1630221786,2,30,12,3,1630092703,1,6.0,-9.0,-9.0,-9.0,4.0,1257524 -3113102,1630221830,2,55,0,1,1630092704,2,6.0,-9.0,-9.0,-9.0,4.0,1257525 -3113103,1630221831,2,55,15,2,1630092704,1,6.0,-9.0,-9.0,-9.0,4.0,1257525 -3113104,1630221817,2,63,0,1,1630092705,1,6.0,-9.0,-9.0,-9.0,2.0,1257526 -3113105,1630221815,2,41,13,2,1630092705,2,3.0,-9.0,-9.0,-9.0,4.0,1257526 -3113106,1630221769,2,54,0,1,1630092706,2,6.0,-9.0,-9.0,-9.0,4.0,1257527 -3113107,1630221770,2,64,11,2,1630092706,1,6.0,-9.0,-9.0,-9.0,4.0,1257527 -3113108,1630221818,2,63,0,1,1630092707,1,6.0,-9.0,-9.0,-9.0,2.0,1257528 -3113109,1630221816,2,41,13,2,1630092707,2,3.0,-9.0,-9.0,-9.0,4.0,1257528 -3113110,1630221577,2,53,0,1,1630092708,2,6.0,-9.0,-9.0,-9.0,4.0,1257529 -3113111,1630221954,2,54,0,1,1630092709,1,1.0,25.0,1.0,-9.0,4.0,1257530 -3113112,1630221704,2,62,0,1,1630092710,2,1.0,40.0,1.0,-9.0,4.0,1257531 -3113113,1630221957,2,59,0,1,1630092711,1,1.0,40.0,1.0,-9.0,2.0,1257532 -3113114,1630221924,2,60,0,1,1630092712,1,1.0,40.0,1.0,-9.0,2.0,1257533 -3113115,1630221611,2,49,0,1,1630092713,2,1.0,30.0,1.0,13.0,4.0,1257534 -3113116,1630221763,2,55,0,1,1630092714,2,1.0,40.0,1.0,-9.0,4.0,1257535 -3113117,1630221764,2,55,0,1,1630092715,2,1.0,40.0,1.0,-9.0,4.0,1257536 -3113118,1630221642,2,60,0,1,1630092716,2,1.0,50.0,2.0,-9.0,4.0,1257537 -3113119,1630221955,2,54,0,1,1630092717,1,1.0,25.0,1.0,-9.0,4.0,1257538 -3113120,1630221956,2,55,0,1,1630092718,1,1.0,40.0,2.0,-9.0,4.0,1257539 -3113121,1630221858,2,45,0,1,1630092719,2,2.0,40.0,1.0,-9.0,4.0,1257540 -3113122,1630221559,2,61,0,1,1630092720,2,1.0,38.0,1.0,-9.0,4.0,1257541 -3113123,1630221729,2,55,0,1,1630092721,2,1.0,40.0,1.0,-9.0,4.0,1257542 -3113124,1630221765,2,58,0,1,1630092722,2,1.0,40.0,1.0,-9.0,4.0,1257543 -3113125,1630221966,2,47,0,1,1630092723,1,1.0,32.0,1.0,-9.0,4.0,1257544 -3113126,1630222001,2,48,0,1,1630092724,1,1.0,36.0,6.0,-9.0,4.0,1257545 -3113127,1630221876,2,47,0,1,1630092725,2,1.0,40.0,1.0,-9.0,4.0,1257546 -3113128,1630221612,2,49,0,1,1630092726,2,1.0,30.0,1.0,13.0,4.0,1257547 -3113129,1630221730,2,55,0,1,1630092727,2,1.0,40.0,1.0,-9.0,4.0,1257548 -3113130,1630221659,2,58,0,1,1630092728,2,1.0,37.0,4.0,-9.0,4.0,1257549 -3113131,1630221877,2,47,0,1,1630092729,2,1.0,40.0,1.0,-9.0,4.0,1257550 -3113132,1630221731,2,55,0,1,1630092730,2,1.0,40.0,1.0,-9.0,4.0,1257551 -3113133,1630221958,2,59,0,1,1630092731,1,1.0,40.0,1.0,-9.0,2.0,1257552 -3113134,1630221749,2,64,0,1,1630092732,2,2.0,7.0,2.0,-9.0,4.0,1257553 -3113135,1630221916,2,63,0,1,1630092733,1,1.0,25.0,1.0,-9.0,4.0,1257554 -3113136,1630221705,2,62,0,1,1630092734,2,1.0,40.0,1.0,-9.0,4.0,1257555 -3113137,1630221560,2,61,0,1,1630092735,2,1.0,38.0,1.0,-9.0,4.0,1257556 -3113138,1630221959,2,59,0,1,1630092736,1,1.0,40.0,1.0,-9.0,2.0,1257557 -3113139,1630221660,2,58,0,1,1630092737,2,1.0,37.0,4.0,-9.0,4.0,1257558 -3113140,1630221643,2,60,0,1,1630092738,2,1.0,50.0,2.0,-9.0,4.0,1257559 -3113141,1630221923,2,51,0,1,1630092739,1,1.0,20.0,1.0,-9.0,2.0,1257560 -3113142,1630222025,2,46,0,1,1630092740,1,1.0,32.0,6.0,-9.0,4.0,1257561 -3113143,1630221644,2,60,0,1,1630092741,2,1.0,50.0,2.0,-9.0,4.0,1257562 -3113144,1630221967,2,47,0,1,1630092742,1,1.0,32.0,1.0,-9.0,4.0,1257563 -3113145,1630221700,2,56,0,1,1630092743,2,1.0,99.0,1.0,-9.0,4.0,1257564 -3113146,1630221459,1,55,0,1,1630092744,1,1.0,50.0,1.0,-9.0,4.0,1257565 -3113147,1630222209,4,51,0,1,1630092745,2,1.0,40.0,1.0,-9.0,4.0,1257566 -3113148,1630222210,4,51,0,1,1630092746,2,1.0,40.0,1.0,-9.0,4.0,1257567 -3113149,1630221775,2,54,0,1,1630092747,2,1.0,40.0,5.0,-9.0,4.0,1257568 -3113150,1630221925,2,54,0,1,1630092748,1,1.0,35.0,4.0,-9.0,2.0,1257569 -3113151,1630221714,2,62,0,1,1630092749,2,1.0,20.0,6.0,-9.0,4.0,1257570 -3113152,1630221994,2,59,0,1,1630092750,1,1.0,32.0,5.0,-9.0,4.0,1257571 -3113153,1630222039,2,58,0,1,1630092751,1,1.0,40.0,1.0,-9.0,4.0,1257572 -3113154,1630221869,2,48,0,1,1630092752,2,1.0,37.0,1.0,16.0,4.0,1257573 -3113155,1630221468,1,62,0,1,1630092753,1,1.0,31.0,1.0,-9.0,4.0,1257574 -3113156,1630221496,1,46,0,1,1630092754,1,1.0,43.0,1.0,-9.0,4.0,1257575 -3113157,1630221469,1,62,0,1,1630092755,1,1.0,31.0,1.0,-9.0,4.0,1257576 -3113158,1630221998,2,59,0,1,1630092756,1,1.0,40.0,1.0,-9.0,2.0,1257577 -3113159,1630221983,2,62,0,1,1630092757,1,1.0,45.0,1.0,-9.0,4.0,1257578 -3113160,1630221478,1,57,0,1,1630092758,1,1.0,60.0,1.0,-9.0,4.0,1257579 -3113161,1630221686,2,46,0,1,1630092759,2,1.0,40.0,5.0,-9.0,4.0,1257580 -3113162,1630221780,2,52,0,1,1630092760,2,1.0,8.0,6.0,-9.0,4.0,1257581 -3113163,1630221781,2,60,15,2,1630092760,1,6.0,-9.0,-9.0,-9.0,4.0,1257581 -3113164,1630221575,2,47,0,1,1630092761,2,1.0,91.0,1.0,-9.0,4.0,1257582 -3113165,1630221576,2,25,15,2,1630092761,2,6.0,-9.0,-9.0,-9.0,4.0,1257582 -3113166,1630222125,2,77,0,1,1630092762,1,6.0,-9.0,-9.0,-9.0,2.0,1257583 -3113167,1630222054,2,80,0,1,1630092763,1,6.0,-9.0,-9.0,-9.0,4.0,1257584 -3113168,1630222126,2,77,0,1,1630092764,1,6.0,-9.0,-9.0,-9.0,2.0,1257585 -3113169,1630222127,2,77,0,1,1630092765,1,6.0,-9.0,-9.0,-9.0,2.0,1257586 -3113170,1630221598,2,69,0,1,1630092766,1,6.0,-9.0,-9.0,-9.0,2.0,1257587 -3113171,1630221596,2,63,1,2,1630092766,2,6.0,-9.0,-9.0,-9.0,4.0,1257587 -3113172,1630222172,1,68,0,1,1630092767,1,1.0,60.0,1.0,-9.0,4.0,1257588 -3113173,1630222156,1,69,0,1,1630092768,1,1.0,60.0,1.0,-9.0,4.0,1257589 -3113174,1630222158,1,67,0,1,1630092769,1,1.0,40.0,1.0,-9.0,4.0,1257590 -3113175,1630222159,1,67,0,1,1630092770,1,1.0,40.0,1.0,-9.0,4.0,1257591 -3113176,1630222160,1,67,0,1,1630092771,1,1.0,40.0,1.0,-9.0,4.0,1257592 -3113177,1630222161,1,67,0,1,1630092772,1,1.0,40.0,1.0,-9.0,4.0,1257593 -3113178,1630222162,1,67,0,1,1630092773,1,1.0,40.0,1.0,-9.0,4.0,1257594 -3113179,1630222163,1,67,0,1,1630092774,1,1.0,40.0,1.0,-9.0,4.0,1257595 -3113180,1630222157,1,69,0,1,1630092775,1,1.0,60.0,1.0,-9.0,4.0,1257596 -3113181,1630222173,1,68,0,1,1630092776,1,1.0,60.0,1.0,-9.0,4.0,1257597 -3113182,1630220889,2,70,0,1,1630092777,1,6.0,-9.0,-9.0,-9.0,2.0,1257598 -3113183,1630220887,2,68,1,2,1630092777,2,1.0,60.0,3.0,-9.0,4.0,1257598 -3113184,1630220890,2,70,0,1,1630092778,1,6.0,-9.0,-9.0,-9.0,2.0,1257599 -3113185,1630220888,2,68,1,2,1630092778,2,1.0,60.0,3.0,-9.0,4.0,1257599 -3113186,1630221110,1,65,0,1,1630092779,2,6.0,-9.0,-9.0,-9.0,4.0,1257600 -3113187,1630221114,1,77,1,2,1630092779,1,1.0,50.0,1.0,-9.0,4.0,1257600 -3113188,1630221111,1,65,0,1,1630092780,2,6.0,-9.0,-9.0,-9.0,4.0,1257601 -3113189,1630221115,1,77,1,2,1630092780,1,1.0,50.0,1.0,-9.0,4.0,1257601 -3113190,1630221112,1,65,0,1,1630092781,2,6.0,-9.0,-9.0,-9.0,4.0,1257602 -3113191,1630221116,1,77,1,2,1630092781,1,1.0,50.0,1.0,-9.0,4.0,1257602 -3113192,1630221113,1,65,0,1,1630092782,2,6.0,-9.0,-9.0,-9.0,4.0,1257603 -3113193,1630221117,1,77,1,2,1630092782,1,1.0,50.0,1.0,-9.0,4.0,1257603 -3113194,1630222130,2,68,0,1,1630092783,1,1.0,45.0,1.0,-9.0,4.0,1257604 -3113195,1630222132,2,68,12,2,1630092783,1,1.0,32.0,1.0,-9.0,4.0,1257604 -3113196,1630220870,2,87,0,1,1630092784,2,6.0,-9.0,-9.0,-9.0,4.0,1257605 -3113197,1630221031,2,90,0,1,1630092785,2,6.0,-9.0,-9.0,-9.0,4.0,1257606 -3113198,1630222140,2,71,0,1,1630092786,1,6.0,-9.0,-9.0,-9.0,2.0,1257607 -3113199,1630221035,2,66,0,1,1630092787,2,6.0,-9.0,-9.0,-9.0,4.0,1257608 -3113200,1630221032,2,90,0,1,1630092788,2,6.0,-9.0,-9.0,-9.0,4.0,1257609 -3113201,1630221065,2,85,0,1,1630092789,2,6.0,-9.0,-9.0,-9.0,4.0,1257610 -3113202,1630221036,2,66,0,1,1630092790,2,6.0,-9.0,-9.0,-9.0,4.0,1257611 -3113203,1630221066,2,85,0,1,1630092791,2,6.0,-9.0,-9.0,-9.0,4.0,1257612 -3113204,1630222141,2,71,0,1,1630092792,1,6.0,-9.0,-9.0,-9.0,2.0,1257613 -3113205,1630220871,2,87,0,1,1630092793,2,6.0,-9.0,-9.0,-9.0,4.0,1257614 -3113206,1630221037,2,66,0,1,1630092794,2,6.0,-9.0,-9.0,-9.0,4.0,1257615 -3113207,1630220972,2,87,0,1,1630092795,2,6.0,-9.0,-9.0,-9.0,4.0,1257616 -3113208,1630220872,2,87,0,1,1630092796,2,6.0,-9.0,-9.0,-9.0,4.0,1257617 -3113209,1630221033,2,90,0,1,1630092797,2,6.0,-9.0,-9.0,-9.0,4.0,1257618 -3113210,1630220873,2,87,0,1,1630092798,2,6.0,-9.0,-9.0,-9.0,4.0,1257619 -3113211,1630220922,2,75,0,1,1630092799,2,6.0,-9.0,-9.0,-9.0,4.0,1257620 -3113212,1630221034,2,90,0,1,1630092800,2,6.0,-9.0,-9.0,-9.0,4.0,1257621 -3113213,1630220874,2,87,0,1,1630092801,2,6.0,-9.0,-9.0,-9.0,4.0,1257622 -3113214,1630220877,2,75,0,1,1630092802,2,6.0,-9.0,-9.0,-9.0,4.0,1257623 -3113215,1630220937,2,87,0,1,1630092803,2,6.0,-9.0,-9.0,-9.0,4.0,1257624 -3113216,1630222098,2,65,0,1,1630092804,1,6.0,-9.0,-9.0,-9.0,2.0,1257625 -3113217,1630222139,2,66,0,1,1630092805,1,6.0,-9.0,-9.0,-9.0,4.0,1257626 -3113218,1630222099,2,65,0,1,1630092806,1,6.0,-9.0,-9.0,-9.0,2.0,1257627 -3113219,1630222100,2,65,0,1,1630092807,1,6.0,-9.0,-9.0,-9.0,2.0,1257628 -3113220,1630222154,1,66,0,1,1630092808,1,6.0,-9.0,-9.0,-9.0,4.0,1257629 -3113221,1630222155,1,66,0,1,1630092809,1,6.0,-9.0,-9.0,-9.0,4.0,1257630 -3113222,1630222062,2,73,0,1,1630092810,1,6.0,-9.0,-9.0,-9.0,4.0,1257631 -3113223,1630222089,2,66,0,1,1630092811,1,6.0,-9.0,-9.0,-9.0,4.0,1257632 -3113224,1630222063,2,73,0,1,1630092812,1,6.0,-9.0,-9.0,-9.0,4.0,1257633 -3113225,1630220992,2,76,0,1,1630092813,2,6.0,-9.0,-9.0,-9.0,4.0,1257634 -3113226,1630220994,2,18,7,2,1630092813,2,6.0,-9.0,-9.0,13.0,4.0,1257634 -3113227,1630220993,2,76,0,1,1630092814,2,6.0,-9.0,-9.0,-9.0,4.0,1257635 -3113228,1630220995,2,18,7,2,1630092814,2,6.0,-9.0,-9.0,13.0,4.0,1257635 -3113229,1630221421,1,87,0,1,1630092815,1,6.0,-9.0,-9.0,-9.0,2.0,1257636 -3113230,1630221419,1,51,12,2,1630092815,1,6.0,-9.0,-9.0,-9.0,4.0,1257636 -3113231,1630221045,2,72,0,1,1630092816,2,1.0,40.0,1.0,-9.0,4.0,1257637 -3113232,1630221046,2,72,0,1,1630092817,2,1.0,40.0,1.0,-9.0,4.0,1257638 -3113233,1630221047,2,72,0,1,1630092818,2,1.0,40.0,1.0,-9.0,4.0,1257639 -3113234,1630220857,2,75,0,1,1630092819,2,1.0,52.0,1.0,-9.0,4.0,1257640 -3113235,1630220858,2,75,0,1,1630092820,2,1.0,52.0,1.0,-9.0,4.0,1257641 -3113236,1630222124,2,66,0,1,1630092821,1,1.0,30.0,1.0,-9.0,2.0,1257642 -3113237,1630220963,2,85,0,1,1630092822,2,6.0,-9.0,-9.0,15.0,4.0,1257643 -3113238,1630220964,2,25,7,2,1630092822,2,1.0,45.0,1.0,-9.0,4.0,1257643 -3113239,1630221005,2,75,0,1,1630092823,2,1.0,20.0,1.0,-9.0,4.0,1257644 -3113240,1630221006,2,62,13,2,1630092823,2,6.0,-9.0,-9.0,-9.0,4.0,1257644 -3113241,1630221075,2,73,0,1,1630092824,1,1.0,4.0,5.0,-9.0,4.0,1257645 -3113242,1630221122,1,82,0,1,1630092825,1,1.0,48.0,1.0,-9.0,2.0,1257646 -3113243,1630221120,1,76,1,2,1630092825,2,1.0,48.0,1.0,-9.0,4.0,1257646 -3113244,1630221089,1,69,0,1,1630092826,1,1.0,10.0,3.0,-9.0,4.0,1257647 -3113245,1630221088,1,68,12,2,1630092826,2,1.0,17.0,1.0,-9.0,4.0,1257647 -3113246,1630221123,1,82,0,1,1630092827,1,1.0,48.0,1.0,-9.0,2.0,1257648 -3113247,1630221121,1,76,1,2,1630092827,2,1.0,48.0,1.0,-9.0,4.0,1257648 -3113248,1630222112,2,74,0,1,1630092828,1,6.0,-9.0,-9.0,-9.0,2.0,1257649 -3113249,1630222113,2,74,0,1,1630092829,1,6.0,-9.0,-9.0,-9.0,2.0,1257650 -3113250,1630220907,2,65,0,1,1630092830,2,6.0,30.0,5.0,-9.0,4.0,1257651 -3113251,1630222114,2,74,0,1,1630092831,1,6.0,-9.0,-9.0,-9.0,2.0,1257652 -3113252,1630220908,2,65,0,1,1630092832,2,6.0,30.0,5.0,-9.0,4.0,1257653 -3113253,1630220909,2,65,0,1,1630092833,2,6.0,30.0,5.0,-9.0,4.0,1257654 -3113254,1630222108,2,66,0,1,1630092834,1,1.0,45.0,1.0,-9.0,4.0,1257655 -3113255,1630222109,2,67,0,1,1630092835,1,1.0,50.0,1.0,-9.0,4.0,1257656 -3113256,1630222110,2,67,0,1,1630092836,1,1.0,50.0,1.0,-9.0,4.0,1257657 -3113257,1630222111,2,67,0,1,1630092837,1,1.0,50.0,1.0,-9.0,4.0,1257658 -3113258,1630221027,2,68,0,1,1630092838,2,3.0,40.0,3.0,-9.0,4.0,1257659 -3113259,1630221029,2,52,1,2,1630092838,1,1.0,40.0,1.0,-9.0,4.0,1257659 -3113260,1630221041,2,73,0,1,1630092839,2,6.0,-9.0,-9.0,-9.0,4.0,1257660 -3113261,1630222117,2,66,0,1,1630092840,1,6.0,-9.0,-9.0,-9.0,4.0,1257661 -3113262,1630222077,2,83,0,1,1630092841,1,6.0,-9.0,-9.0,-9.0,2.0,1257662 -3113263,1630222068,2,71,0,1,1630092842,1,6.0,-9.0,-9.0,-9.0,4.0,1257663 -3113264,1630222146,2,76,0,1,1630092843,1,6.0,-9.0,-9.0,-9.0,4.0,1257664 -3113265,1630222070,2,70,0,1,1630092844,1,6.0,-9.0,-9.0,-9.0,4.0,1257665 -3113266,1630220923,2,65,0,1,1630092845,2,6.0,-9.0,-9.0,-9.0,4.0,1257666 -3113267,1630220938,2,74,0,1,1630092846,2,6.0,-9.0,-9.0,-9.0,4.0,1257667 -3113268,1630222073,2,66,0,1,1630092847,1,6.0,-9.0,-9.0,-9.0,2.0,1257668 -3113269,1630220957,2,67,0,1,1630092848,2,6.0,-9.0,-9.0,-9.0,4.0,1257669 -3113270,1630220944,2,73,0,1,1630092849,2,6.0,-9.0,-9.0,-9.0,4.0,1257670 -3113271,1630220912,2,85,0,1,1630092850,2,6.0,-9.0,-9.0,-9.0,4.0,1257671 -3113272,1630221000,2,67,0,1,1630092851,2,6.0,-9.0,-9.0,-9.0,4.0,1257672 -3113273,1630220904,2,68,0,1,1630092852,2,6.0,-9.0,-9.0,-9.0,4.0,1257673 -3113274,1630221038,2,65,0,1,1630092853,2,6.0,-9.0,-9.0,-9.0,4.0,1257674 -3113275,1630220984,2,67,0,1,1630092854,2,6.0,-9.0,-9.0,-9.0,4.0,1257675 -3113276,1630220882,2,82,0,1,1630092855,2,6.0,-9.0,-9.0,-9.0,4.0,1257676 -3113277,1630221077,2,82,0,1,1630092856,2,6.0,-9.0,-9.0,-9.0,4.0,1257677 -3113278,1630220884,2,86,0,1,1630092857,2,6.0,-9.0,-9.0,-9.0,4.0,1257678 -3113279,1630220860,2,70,0,1,1630092858,2,6.0,-9.0,-9.0,-9.0,4.0,1257679 -3113280,1630222059,2,80,0,1,1630092859,1,6.0,-9.0,-9.0,-9.0,2.0,1257680 -3113281,1630222105,2,70,0,1,1630092860,1,6.0,-9.0,-9.0,-9.0,2.0,1257681 -3113282,1630220903,2,65,0,1,1630092861,2,6.0,-9.0,-9.0,-9.0,4.0,1257682 -3113283,1630222134,2,70,0,1,1630092862,1,6.0,-9.0,-9.0,-9.0,3.0,1257683 -3113284,1630221001,2,67,0,1,1630092863,2,6.0,-9.0,-9.0,-9.0,4.0,1257684 -3113285,1630220880,2,72,0,1,1630092864,2,6.0,-9.0,-9.0,-9.0,3.0,1257685 -3113286,1630221042,2,73,0,1,1630092865,2,6.0,-9.0,-9.0,-9.0,4.0,1257686 -3113287,1630222090,2,77,0,1,1630092866,1,6.0,-9.0,-9.0,-9.0,4.0,1257687 -3113288,1630221039,2,65,0,1,1630092867,2,6.0,-9.0,-9.0,-9.0,4.0,1257688 -3113289,1630220915,2,74,0,1,1630092868,2,6.0,-9.0,-9.0,-9.0,4.0,1257689 -3113290,1630221021,2,65,0,1,1630092869,2,6.0,-9.0,-9.0,-9.0,4.0,1257690 -3113291,1630222119,2,79,0,1,1630092870,1,6.0,-9.0,-9.0,-9.0,4.0,1257691 -3113292,1630221010,2,73,0,1,1630092871,2,6.0,-9.0,-9.0,-9.0,4.0,1257692 -3113293,1630220885,2,87,0,1,1630092872,2,6.0,-9.0,-9.0,-9.0,4.0,1257693 -3113294,1630220933,2,66,0,1,1630092873,2,6.0,-9.0,-9.0,-9.0,4.0,1257694 -3113295,1630222120,2,79,0,1,1630092874,1,6.0,-9.0,-9.0,-9.0,4.0,1257695 -3113296,1630220878,2,65,0,1,1630092875,2,6.0,-9.0,-9.0,-9.0,4.0,1257696 -3113297,1630221002,2,67,0,1,1630092876,2,6.0,-9.0,-9.0,-9.0,4.0,1257697 -3113298,1630221048,2,67,0,1,1630092877,2,6.0,8.0,6.0,-9.0,4.0,1257698 -3113299,1630220945,2,73,0,1,1630092878,2,6.0,-9.0,-9.0,-9.0,4.0,1257699 -3113300,1630221061,2,90,0,1,1630092879,2,6.0,-9.0,-9.0,-9.0,4.0,1257700 -3113301,1630220898,2,85,0,1,1630092880,2,6.0,-9.0,-9.0,-9.0,4.0,1257701 -3113302,1630220983,2,86,0,1,1630092881,2,6.0,-9.0,-9.0,-9.0,4.0,1257702 -3113303,1630220910,2,65,0,1,1630092882,2,6.0,-9.0,-9.0,-9.0,4.0,1257703 -3113304,1630222104,2,75,0,1,1630092883,1,6.0,-9.0,-9.0,-9.0,4.0,1257704 -3113305,1630221007,2,67,0,1,1630092884,2,6.0,-9.0,-9.0,-9.0,4.0,1257705 -3113306,1630220916,2,74,0,1,1630092885,2,6.0,-9.0,-9.0,-9.0,4.0,1257706 -3113307,1630220917,2,88,0,1,1630092886,2,6.0,-9.0,-9.0,-9.0,4.0,1257707 -3113308,1630220852,2,86,0,1,1630092887,2,6.0,-9.0,-9.0,-9.0,4.0,1257708 -3113309,1630220985,2,67,0,1,1630092888,2,6.0,-9.0,-9.0,-9.0,4.0,1257709 -3113310,1630222051,2,78,0,1,1630092889,1,6.0,-9.0,-9.0,-9.0,4.0,1257710 -3113311,1630220879,2,72,0,1,1630092890,2,6.0,-9.0,-9.0,-9.0,3.0,1257711 -3113312,1630220973,2,94,0,1,1630092891,2,6.0,-9.0,-9.0,-9.0,4.0,1257712 -3113313,1630220986,2,67,0,1,1630092892,2,6.0,-9.0,-9.0,-9.0,4.0,1257713 -3113314,1630222129,2,75,0,1,1630092893,1,6.0,-9.0,-9.0,-9.0,4.0,1257714 -3113315,1630222083,2,94,0,1,1630092894,1,6.0,-9.0,-9.0,-9.0,4.0,1257715 -3113316,1630220854,2,73,0,1,1630092895,2,6.0,-9.0,-9.0,-9.0,4.0,1257716 -3113317,1630220926,2,87,0,1,1630092896,2,6.0,-9.0,-9.0,-9.0,4.0,1257717 -3113318,1630222074,2,66,0,1,1630092897,1,6.0,-9.0,-9.0,-9.0,2.0,1257718 -3113319,1630222091,2,72,0,1,1630092898,1,3.0,-9.0,-9.0,15.0,2.0,1257719 -3113320,1630220960,2,66,0,1,1630092899,2,6.0,-9.0,-9.0,-9.0,4.0,1257720 -3113321,1630220905,2,68,0,1,1630092900,2,6.0,-9.0,-9.0,-9.0,4.0,1257721 -3113322,1630220927,2,87,0,1,1630092901,2,6.0,-9.0,-9.0,-9.0,4.0,1257722 -3113323,1630220987,2,67,0,1,1630092902,2,6.0,-9.0,-9.0,-9.0,4.0,1257723 -3113324,1630220913,2,85,0,1,1630092903,2,6.0,-9.0,-9.0,-9.0,4.0,1257724 -3113325,1630220919,2,71,0,1,1630092904,2,6.0,-9.0,-9.0,-9.0,4.0,1257725 -3113326,1630221068,2,78,0,1,1630092905,2,6.0,-9.0,-9.0,-9.0,4.0,1257726 -3113327,1630222147,2,76,0,1,1630092906,1,6.0,-9.0,-9.0,-9.0,4.0,1257727 -3113328,1630220931,2,73,0,1,1630092907,2,6.0,-9.0,-9.0,-9.0,4.0,1257728 -3113329,1630220855,2,81,0,1,1630092908,2,6.0,-9.0,-9.0,-9.0,4.0,1257729 -3113330,1630222047,2,67,0,1,1630092909,1,6.0,-9.0,-9.0,-9.0,2.0,1257730 -3113331,1630221064,2,79,0,1,1630092910,2,6.0,-9.0,-9.0,-9.0,4.0,1257731 -3113332,1630220875,2,94,0,1,1630092911,2,6.0,-9.0,-9.0,-9.0,4.0,1257732 -3113333,1630220845,2,69,0,1,1630092912,2,6.0,-9.0,-9.0,-9.0,4.0,1257733 -3113334,1630220990,2,78,0,1,1630092913,2,6.0,-9.0,-9.0,-9.0,4.0,1257734 -3113335,1630222048,2,67,0,1,1630092914,1,6.0,-9.0,-9.0,-9.0,2.0,1257735 -3113336,1630221013,2,65,0,1,1630092915,2,6.0,-9.0,-9.0,-9.0,4.0,1257736 -3113337,1630221016,2,78,0,1,1630092916,2,6.0,-9.0,-9.0,-9.0,4.0,1257737 -3113338,1630221069,2,78,0,1,1630092917,2,6.0,-9.0,-9.0,-9.0,4.0,1257738 -3113339,1630221070,2,78,0,1,1630092918,2,6.0,-9.0,-9.0,-9.0,4.0,1257739 -3113340,1630222092,2,72,0,1,1630092919,1,3.0,-9.0,-9.0,15.0,2.0,1257740 -3113341,1630222137,2,82,0,1,1630092920,1,6.0,-9.0,-9.0,-9.0,2.0,1257741 -3113342,1630220883,2,82,0,1,1630092921,2,6.0,-9.0,-9.0,-9.0,4.0,1257742 -3113343,1630220939,2,74,0,1,1630092922,2,6.0,-9.0,-9.0,-9.0,4.0,1257743 -3113344,1630221049,2,67,0,1,1630092923,2,6.0,8.0,6.0,-9.0,4.0,1257744 -3113345,1630220928,2,87,0,1,1630092924,2,6.0,-9.0,-9.0,-9.0,4.0,1257745 -3113346,1630222079,2,79,0,1,1630092925,1,6.0,-9.0,-9.0,-9.0,2.0,1257746 -3113347,1630221022,2,65,0,1,1630092926,2,6.0,-9.0,-9.0,-9.0,4.0,1257747 -3113348,1630220980,2,78,0,1,1630092927,2,6.0,-9.0,-9.0,-9.0,4.0,1257748 -3113349,1630220969,2,68,0,1,1630092928,2,6.0,16.0,6.0,-9.0,3.0,1257749 -3113350,1630222143,2,86,0,1,1630092929,1,6.0,-9.0,-9.0,-9.0,2.0,1257750 -3113351,1630222045,2,71,0,1,1630092930,1,6.0,-9.0,-9.0,-9.0,4.0,1257751 -3113352,1630220921,2,86,0,1,1630092931,2,6.0,-9.0,-9.0,-9.0,4.0,1257752 -3113353,1630222075,2,66,0,1,1630092932,1,6.0,-9.0,-9.0,-9.0,2.0,1257753 -3113354,1630220979,2,70,0,1,1630092933,2,6.0,-9.0,-9.0,-9.0,4.0,1257754 -3113355,1630221009,2,65,0,1,1630092934,2,6.0,-9.0,-9.0,-9.0,4.0,1257755 -3113356,1630221062,2,90,0,1,1630092935,2,6.0,-9.0,-9.0,-9.0,4.0,1257756 -3113357,1630222094,2,75,0,1,1630092936,1,6.0,-9.0,-9.0,-9.0,4.0,1257757 -3113358,1630222046,2,71,0,1,1630092937,1,6.0,-9.0,-9.0,-9.0,4.0,1257758 -3113359,1630220876,2,94,0,1,1630092938,2,6.0,-9.0,-9.0,-9.0,4.0,1257759 -3113360,1630222067,2,65,0,1,1630092939,1,6.0,-9.0,-9.0,-9.0,4.0,1257760 -3113361,1630221011,2,69,0,1,1630092940,2,6.0,-9.0,-9.0,-9.0,4.0,1257761 -3113362,1630221078,2,82,0,1,1630092941,2,6.0,-9.0,-9.0,-9.0,4.0,1257762 -3113363,1630221012,2,69,0,1,1630092942,2,6.0,-9.0,-9.0,-9.0,4.0,1257763 -3113364,1630222076,2,66,0,1,1630092943,1,6.0,-9.0,-9.0,-9.0,4.0,1257764 -3113365,1630220861,2,70,0,1,1630092944,2,6.0,-9.0,-9.0,-9.0,4.0,1257765 -3113366,1630221063,2,90,0,1,1630092945,2,6.0,-9.0,-9.0,-9.0,4.0,1257766 -3113367,1630222135,2,70,0,1,1630092946,1,6.0,-9.0,-9.0,-9.0,3.0,1257767 -3113368,1630220893,2,70,0,1,1630092947,2,6.0,-9.0,-9.0,-9.0,4.0,1257768 -3113369,1630221023,2,65,0,1,1630092948,2,6.0,-9.0,-9.0,-9.0,4.0,1257769 -3113370,1630220891,2,71,0,1,1630092949,2,6.0,-9.0,-9.0,-9.0,4.0,1257770 -3113371,1630221079,2,82,0,1,1630092950,2,6.0,-9.0,-9.0,-9.0,4.0,1257771 -3113372,1630220920,2,71,0,1,1630092951,2,6.0,-9.0,-9.0,-9.0,4.0,1257772 -3113373,1630222096,2,69,0,1,1630092952,1,6.0,-9.0,-9.0,-9.0,2.0,1257773 -3113374,1630222043,2,67,0,1,1630092953,1,6.0,-9.0,-9.0,-9.0,2.0,1257774 -3113375,1630222044,2,67,0,1,1630092954,1,6.0,-9.0,-9.0,-9.0,2.0,1257775 -3113376,1630222106,2,65,0,1,1630092955,1,6.0,-9.0,-9.0,-9.0,2.0,1257776 -3113377,1630222121,2,76,0,1,1630092956,1,6.0,-9.0,-9.0,-9.0,2.0,1257777 -3113378,1630220868,2,70,0,1,1630092957,2,6.0,-9.0,-9.0,-9.0,4.0,1257778 -3113379,1630220961,2,66,0,1,1630092958,2,6.0,-9.0,-9.0,-9.0,4.0,1257779 -3113380,1630220901,2,65,0,1,1630092959,2,6.0,-9.0,-9.0,-9.0,4.0,1257780 -3113381,1630222049,2,67,0,1,1630092960,1,6.0,-9.0,-9.0,-9.0,2.0,1257781 -3113382,1630222072,2,74,0,1,1630092961,1,6.0,-9.0,-9.0,-9.0,4.0,1257782 -3113383,1630221080,2,82,0,1,1630092962,2,6.0,-9.0,-9.0,-9.0,4.0,1257783 -3113384,1630220965,2,86,0,1,1630092963,2,6.0,-9.0,-9.0,-9.0,4.0,1257784 -3113385,1630220997,2,69,0,1,1630092964,2,6.0,-9.0,-9.0,-9.0,4.0,1257785 -3113386,1630220946,2,73,0,1,1630092965,2,6.0,-9.0,-9.0,-9.0,4.0,1257786 -3113387,1630220881,2,72,0,1,1630092966,2,6.0,-9.0,-9.0,-9.0,3.0,1257787 -3113388,1630220947,2,81,0,1,1630092967,2,6.0,-9.0,-9.0,-9.0,4.0,1257788 -3113389,1630220863,2,82,0,1,1630092968,2,6.0,-9.0,-9.0,-9.0,4.0,1257789 -3113390,1630220943,2,69,0,1,1630092969,2,6.0,-9.0,-9.0,-9.0,4.0,1257790 -3113391,1630220998,2,69,0,1,1630092970,2,6.0,-9.0,-9.0,-9.0,4.0,1257791 -3113392,1630220911,2,65,0,1,1630092971,2,6.0,-9.0,-9.0,-9.0,4.0,1257792 -3113393,1630220929,2,87,0,1,1630092972,2,6.0,-9.0,-9.0,-9.0,4.0,1257793 -3113394,1630220991,2,69,0,1,1630092973,2,6.0,-9.0,-9.0,-9.0,4.0,1257794 -3113395,1630222138,2,82,0,1,1630092974,1,6.0,-9.0,-9.0,-9.0,2.0,1257795 -3113396,1630220978,2,80,0,1,1630092975,2,6.0,-9.0,-9.0,-9.0,4.0,1257796 -3113397,1630220932,2,73,0,1,1630092976,2,6.0,-9.0,-9.0,-9.0,4.0,1257797 -3113398,1630220894,2,70,0,1,1630092977,2,6.0,-9.0,-9.0,-9.0,4.0,1257798 -3113399,1630220966,2,86,0,1,1630092978,2,6.0,-9.0,-9.0,-9.0,4.0,1257799 -3113400,1630221067,2,74,0,1,1630092979,2,6.0,-9.0,-9.0,-9.0,4.0,1257800 -3113401,1630220846,2,69,0,1,1630092980,2,6.0,-9.0,-9.0,-9.0,4.0,1257801 -3113402,1630221008,2,67,0,1,1630092981,2,6.0,-9.0,-9.0,-9.0,4.0,1257802 -3113403,1630220940,2,74,0,1,1630092982,2,6.0,-9.0,-9.0,-9.0,4.0,1257803 -3113404,1630221050,2,67,0,1,1630092983,2,6.0,8.0,6.0,-9.0,4.0,1257804 -3113405,1630221014,2,78,0,1,1630092984,2,6.0,-9.0,-9.0,-9.0,4.0,1257805 -3113406,1630220892,2,71,0,1,1630092985,2,6.0,-9.0,-9.0,-9.0,4.0,1257806 -3113407,1630222052,2,78,0,1,1630092986,1,6.0,-9.0,-9.0,-9.0,4.0,1257807 -3113408,1630220853,2,86,0,1,1630092987,2,6.0,-9.0,-9.0,-9.0,4.0,1257808 -3113409,1630220941,2,74,0,1,1630092988,2,6.0,-9.0,-9.0,-9.0,4.0,1257809 -3113410,1630220956,2,66,0,1,1630092989,2,6.0,-9.0,-9.0,-9.0,4.0,1257810 -3113411,1630221040,2,65,0,1,1630092990,2,6.0,-9.0,-9.0,-9.0,4.0,1257811 -3113412,1630220918,2,88,0,1,1630092991,2,6.0,-9.0,-9.0,-9.0,4.0,1257812 -3113413,1630221004,2,72,0,1,1630092992,2,6.0,-9.0,-9.0,-9.0,4.0,1257813 -3113414,1630220906,2,68,0,1,1630092993,2,6.0,-9.0,-9.0,-9.0,4.0,1257814 -3113415,1630220895,2,70,0,1,1630092994,2,6.0,-9.0,-9.0,-9.0,4.0,1257815 -3113416,1630220856,2,81,0,1,1630092995,2,6.0,-9.0,-9.0,-9.0,4.0,1257816 -3113417,1630222144,2,86,0,1,1630092996,1,6.0,-9.0,-9.0,-9.0,2.0,1257817 -3113418,1630220948,2,81,0,1,1630092997,2,6.0,-9.0,-9.0,-9.0,4.0,1257818 -3113419,1630221025,2,88,0,1,1630092998,2,6.0,-9.0,-9.0,-9.0,4.0,1257819 -3113420,1630220959,2,74,0,1,1630092999,2,6.0,-9.0,-9.0,-9.0,4.0,1257820 -3113421,1630221026,2,72,0,1,1630093000,2,6.0,-9.0,-9.0,-9.0,4.0,1257821 -3113422,1630220869,2,70,0,1,1630093001,2,6.0,-9.0,-9.0,-9.0,4.0,1257822 -3113423,1630220981,2,78,0,1,1630093002,2,6.0,-9.0,-9.0,-9.0,4.0,1257823 -3113424,1630221017,2,78,0,1,1630093003,2,6.0,-9.0,-9.0,-9.0,4.0,1257824 -3113425,1630221024,2,65,0,1,1630093004,2,6.0,-9.0,-9.0,-9.0,4.0,1257825 -3113426,1630221081,2,82,0,1,1630093005,2,6.0,-9.0,-9.0,-9.0,4.0,1257826 -3113427,1630222107,2,66,0,1,1630093006,1,6.0,-9.0,-9.0,-9.0,4.0,1257827 -3113428,1630221003,2,67,0,1,1630093007,2,6.0,-9.0,-9.0,-9.0,4.0,1257828 -3113429,1630222093,2,72,0,1,1630093008,1,3.0,-9.0,-9.0,15.0,2.0,1257829 -3113430,1630222136,2,70,0,1,1630093009,1,6.0,-9.0,-9.0,-9.0,3.0,1257830 -3113431,1630220974,2,94,0,1,1630093010,2,6.0,-9.0,-9.0,-9.0,4.0,1257831 -3113432,1630221071,2,78,0,1,1630093011,2,6.0,-9.0,-9.0,-9.0,4.0,1257832 -3113433,1630222071,2,70,0,1,1630093012,1,6.0,-9.0,-9.0,-9.0,4.0,1257833 -3113434,1630220982,2,78,0,1,1630093013,2,6.0,-9.0,-9.0,-9.0,4.0,1257834 -3113435,1630221015,2,78,0,1,1630093014,2,6.0,-9.0,-9.0,-9.0,4.0,1257835 -3113436,1630220976,2,72,0,1,1630093015,2,6.0,-9.0,-9.0,-9.0,4.0,1257836 -3113437,1630220886,2,87,0,1,1630093016,2,6.0,-9.0,-9.0,-9.0,4.0,1257837 -3113438,1630222081,2,79,0,1,1630093017,1,6.0,-9.0,-9.0,-9.0,2.0,1257838 -3113439,1630220862,2,70,0,1,1630093018,2,6.0,-9.0,-9.0,-9.0,4.0,1257839 -3113440,1630222058,2,69,0,1,1630093019,1,6.0,-9.0,-9.0,-9.0,4.0,1257840 -3113441,1630221072,2,78,0,1,1630093020,2,6.0,-9.0,-9.0,-9.0,4.0,1257841 -3113442,1630222142,2,86,0,1,1630093021,1,6.0,-9.0,-9.0,-9.0,4.0,1257842 -3113443,1630220914,2,85,0,1,1630093022,2,6.0,-9.0,-9.0,-9.0,4.0,1257843 -3113444,1630220930,2,87,0,1,1630093023,2,6.0,-9.0,-9.0,-9.0,4.0,1257844 -3113445,1630220924,2,65,0,1,1630093024,2,6.0,-9.0,-9.0,-9.0,4.0,1257845 -3113446,1630220847,2,69,0,1,1630093025,2,6.0,-9.0,-9.0,-9.0,4.0,1257846 -3113447,1630222145,2,86,0,1,1630093026,1,6.0,-9.0,-9.0,-9.0,2.0,1257847 -3113448,1630222084,2,94,0,1,1630093027,1,6.0,-9.0,-9.0,-9.0,4.0,1257848 -3113449,1630222066,2,69,0,1,1630093028,1,6.0,-9.0,-9.0,-9.0,2.0,1257849 -3113450,1630221073,2,78,0,1,1630093029,2,6.0,-9.0,-9.0,-9.0,4.0,1257850 -3113451,1630222148,2,66,0,1,1630093030,1,6.0,-9.0,-9.0,-9.0,2.0,1257851 -3113452,1630222065,2,69,0,1,1630093031,1,6.0,-9.0,-9.0,-9.0,4.0,1257852 -3113453,1630220942,2,74,0,1,1630093032,2,6.0,-9.0,-9.0,-9.0,4.0,1257853 -3113454,1630220958,2,67,0,1,1630093033,2,6.0,-9.0,-9.0,-9.0,4.0,1257854 -3113455,1630222088,2,70,0,1,1630093034,1,6.0,-9.0,-9.0,-9.0,4.0,1257855 -3113456,1630222060,2,80,0,1,1630093035,1,6.0,-9.0,-9.0,-9.0,2.0,1257856 -3113457,1630222053,2,78,0,1,1630093036,1,6.0,-9.0,-9.0,-9.0,4.0,1257857 -3113458,1630220977,2,72,0,1,1630093037,2,6.0,-9.0,-9.0,-9.0,4.0,1257858 -3113459,1630222095,2,75,0,1,1630093038,1,6.0,-9.0,-9.0,-9.0,4.0,1257859 -3113460,1630222115,3,65,0,1,1630093039,1,6.0,-9.0,-9.0,-9.0,4.0,1257860 -3113461,1630221090,1,69,0,1,1630093040,2,6.0,-9.0,-9.0,-9.0,4.0,1257861 -3113462,1630221099,1,76,0,1,1630093041,2,6.0,-9.0,-9.0,-9.0,4.0,1257862 -3113463,1630221091,1,69,0,1,1630093042,2,6.0,-9.0,-9.0,-9.0,4.0,1257863 -3113464,1630221092,1,69,0,1,1630093043,2,6.0,-9.0,-9.0,-9.0,4.0,1257864 -3113465,1630221126,1,76,0,1,1630093044,2,6.0,-9.0,-9.0,-9.0,4.0,1257865 -3113466,1630221100,1,76,0,1,1630093045,2,6.0,-9.0,-9.0,-9.0,4.0,1257866 -3113467,1630221093,1,69,0,1,1630093046,2,6.0,-9.0,-9.0,-9.0,4.0,1257867 -3113468,1630221102,1,65,0,1,1630093047,2,6.0,-9.0,-9.0,-9.0,4.0,1257868 -3113469,1630221094,1,69,0,1,1630093048,2,6.0,-9.0,-9.0,-9.0,4.0,1257869 -3113470,1630221103,1,65,0,1,1630093049,2,6.0,-9.0,-9.0,-9.0,4.0,1257870 -3113471,1630221104,1,65,0,1,1630093050,2,6.0,-9.0,-9.0,-9.0,4.0,1257871 -3113472,1630221095,1,69,0,1,1630093051,2,6.0,-9.0,-9.0,-9.0,4.0,1257872 -3113473,1630222169,1,65,0,1,1630093052,1,6.0,-9.0,-9.0,-9.0,2.0,1257873 -3113474,1630221105,1,65,0,1,1630093053,2,6.0,-9.0,-9.0,-9.0,4.0,1257874 -3113475,1630221096,1,69,0,1,1630093054,2,6.0,-9.0,-9.0,-9.0,4.0,1257875 -3113476,1630221127,1,76,0,1,1630093055,2,6.0,-9.0,-9.0,-9.0,4.0,1257876 -3113477,1630221128,1,76,0,1,1630093056,2,6.0,-9.0,-9.0,-9.0,4.0,1257877 -3113478,1630221118,1,67,0,1,1630093057,2,6.0,-9.0,-9.0,-9.0,4.0,1257878 -3113479,1630222167,1,77,0,1,1630093058,1,6.0,-9.0,-9.0,-9.0,4.0,1257879 -3113480,1630221106,1,65,0,1,1630093059,2,6.0,-9.0,-9.0,-9.0,4.0,1257880 -3113481,1630222166,1,66,0,1,1630093060,1,6.0,-9.0,-9.0,-9.0,4.0,1257881 -3113482,1630221097,1,69,0,1,1630093061,2,6.0,-9.0,-9.0,-9.0,4.0,1257882 -3113483,1630221101,1,76,0,1,1630093062,2,6.0,-9.0,-9.0,-9.0,4.0,1257883 -3113484,1630222152,1,74,0,1,1630093063,1,6.0,-9.0,-9.0,-9.0,3.0,1257884 -3113485,1630222170,1,65,0,1,1630093064,1,6.0,-9.0,-9.0,-9.0,2.0,1257885 -3113486,1630221124,1,67,0,1,1630093065,2,6.0,-9.0,-9.0,-9.0,4.0,1257886 -3113487,1630222171,1,65,0,1,1630093066,1,6.0,-9.0,-9.0,-9.0,2.0,1257887 -3113488,1630221129,1,76,0,1,1630093067,2,6.0,-9.0,-9.0,-9.0,4.0,1257888 -3113489,1630221098,1,69,0,1,1630093068,2,6.0,-9.0,-9.0,-9.0,4.0,1257889 -3113490,1630221125,1,67,0,1,1630093069,2,6.0,-9.0,-9.0,-9.0,4.0,1257890 -3113491,1630221119,1,67,0,1,1630093070,2,6.0,-9.0,-9.0,-9.0,4.0,1257891 -3113492,1630221082,3,69,0,1,1630093071,2,6.0,-9.0,-9.0,-9.0,4.0,1257892 -3113493,1630221083,3,69,0,1,1630093072,2,6.0,-9.0,-9.0,-9.0,4.0,1257893 -3113494,1630221084,3,69,0,1,1630093073,2,6.0,-9.0,-9.0,-9.0,4.0,1257894 -3113495,1630221085,3,69,0,1,1630093074,2,6.0,-9.0,-9.0,-9.0,4.0,1257895 -3113496,1630221086,3,69,0,1,1630093075,2,6.0,-9.0,-9.0,-9.0,4.0,1257896 -3113497,1630222153,3,67,0,1,1630093076,1,6.0,-9.0,-9.0,-9.0,2.0,1257897 -3113498,1630220866,2,69,0,1,1630093077,2,6.0,-9.0,-9.0,-9.0,4.0,1257898 -3113499,1630220975,2,79,0,1,1630093078,2,6.0,-9.0,-9.0,-9.0,4.0,1257899 -3113500,1630222082,2,76,0,1,1630093079,1,3.0,-9.0,-9.0,-9.0,4.0,1257900 -3113501,1630222050,2,86,0,1,1630093080,1,6.0,-9.0,-9.0,-9.0,2.0,1257901 -3113502,1630222102,2,75,0,1,1630093081,1,6.0,-9.0,-9.0,-9.0,2.0,1257902 -3113503,1630220925,2,75,0,1,1630093082,2,6.0,-9.0,-9.0,-9.0,4.0,1257903 -3113504,1630220899,2,84,0,1,1630093083,2,6.0,-9.0,-9.0,-9.0,4.0,1257904 -3113505,1630221059,2,79,0,1,1630093084,2,6.0,-9.0,-9.0,-9.0,4.0,1257905 -3113506,1630221052,2,68,0,1,1630093085,2,6.0,-9.0,-9.0,-9.0,4.0,1257906 -3113507,1630221060,2,79,0,1,1630093086,2,6.0,-9.0,-9.0,-9.0,4.0,1257907 -3113508,1630221043,2,69,0,1,1630093087,2,6.0,-9.0,-9.0,-9.0,4.0,1257908 -3113509,1630222118,2,73,0,1,1630093088,1,6.0,-9.0,-9.0,-9.0,4.0,1257909 -3113510,1630220900,2,84,0,1,1630093089,2,6.0,-9.0,-9.0,-9.0,4.0,1257910 -3113511,1630221044,2,69,0,1,1630093090,2,6.0,-9.0,-9.0,-9.0,4.0,1257911 -3113512,1630222061,2,83,0,1,1630093091,1,6.0,-9.0,-9.0,-9.0,4.0,1257912 -3113513,1630220902,2,77,0,1,1630093092,2,6.0,-9.0,-9.0,-9.0,4.0,1257913 -3113514,1630220859,2,67,0,1,1630093093,2,6.0,-9.0,-9.0,-9.0,4.0,1257914 -3113515,1630222103,2,75,0,1,1630093094,1,6.0,-9.0,-9.0,-9.0,2.0,1257915 -3113516,1630221076,2,78,0,1,1630093095,2,6.0,-9.0,-9.0,-9.0,4.0,1257916 -3113517,1630221053,2,68,0,1,1630093096,2,6.0,-9.0,-9.0,-9.0,4.0,1257917 -3113518,1630220962,2,69,0,1,1630093097,2,6.0,-9.0,-9.0,-9.0,4.0,1257918 -3113519,1630220934,2,65,0,1,1630093098,2,6.0,-9.0,-9.0,-9.0,4.0,1257919 -3113520,1630220996,2,68,0,1,1630093099,2,6.0,-9.0,-9.0,-9.0,4.0,1257920 -3113521,1630221054,2,68,0,1,1630093100,2,6.0,-9.0,-9.0,-9.0,4.0,1257921 -3113522,1630222165,1,68,0,1,1630093101,1,6.0,-9.0,-9.0,-9.0,2.0,1257922 -3113523,1630222122,2,71,0,1,1630093102,1,6.0,-9.0,-9.0,-9.0,2.0,1257923 -3113524,1630220999,2,65,0,1,1630093103,2,6.0,-9.0,-9.0,-9.0,4.0,1257924 -3113525,1630221018,2,87,0,1,1630093104,2,6.0,-9.0,-9.0,-9.0,4.0,1257925 -3113526,1630221020,2,53,2,2,1630093104,1,6.0,-9.0,-9.0,-9.0,4.0,1257925 -3113527,1630220896,2,71,0,1,1630093105,2,6.0,-9.0,-9.0,-9.0,4.0,1257926 -3113528,1630220848,2,73,0,1,1630093106,2,6.0,-9.0,-9.0,-9.0,4.0,1257927 -3113529,1630220850,2,43,2,2,1630093106,2,6.0,-9.0,-9.0,-9.0,4.0,1257927 -3113530,1630221055,2,66,0,1,1630093107,2,6.0,-9.0,-9.0,-9.0,4.0,1257928 -3113531,1630221057,2,21,10,2,1630093107,1,3.0,-9.0,-9.0,-9.0,4.0,1257928 -3113532,1630220988,2,72,0,1,1630093108,2,6.0,-9.0,-9.0,-9.0,4.0,1257929 -3113533,1630220849,2,73,0,1,1630093109,2,6.0,-9.0,-9.0,-9.0,4.0,1257930 -3113534,1630220954,2,65,0,1,1630093110,2,6.0,-9.0,-9.0,-9.0,4.0,1257931 -3113535,1630220955,2,45,2,2,1630093110,1,3.0,15.0,6.0,-9.0,4.0,1257931 -3113536,1630220967,2,81,0,1,1630093111,2,6.0,-9.0,-9.0,-9.0,4.0,1257932 -3113537,1630220968,2,57,2,2,1630093111,1,6.0,-9.0,-9.0,-9.0,4.0,1257932 -3113538,1630221056,2,66,0,1,1630093112,2,6.0,-9.0,-9.0,-9.0,4.0,1257933 -3113539,1630221058,2,21,10,2,1630093112,1,3.0,-9.0,-9.0,-9.0,4.0,1257933 -3113540,1630221185,1,77,0,1,1630093113,1,6.0,-9.0,-9.0,-9.0,4.0,1257934 -3113541,1630220949,2,84,0,1,1630093114,2,6.0,-9.0,-9.0,-9.0,4.0,1257935 -3113542,1630220950,2,49,2,2,1630093114,1,6.0,-9.0,-9.0,-9.0,4.0,1257935 -3113543,1630221684,2,77,0,1,1630093115,1,6.0,-9.0,-9.0,-9.0,4.0,1257936 -3113544,1630221683,2,64,5,2,1630093115,2,6.0,-9.0,-9.0,-9.0,4.0,1257936 -3113545,1630222055,2,66,0,1,1630093116,1,1.0,35.0,1.0,-9.0,4.0,1257937 -3113546,1630222085,2,66,0,1,1630093117,1,1.0,30.0,1.0,-9.0,4.0,1257938 -3113547,1630222086,2,66,0,1,1630093118,1,1.0,30.0,1.0,-9.0,4.0,1257939 -3113548,1630222087,2,66,0,1,1630093119,1,1.0,30.0,1.0,-9.0,4.0,1257940 -3113549,1630222056,2,66,0,1,1630093120,1,1.0,35.0,1.0,-9.0,4.0,1257941 -3113550,1630222078,2,68,0,1,1630093121,1,1.0,40.0,1.0,-9.0,2.0,1257942 -3113551,1630222057,2,66,0,1,1630093122,1,1.0,35.0,1.0,-9.0,4.0,1257943 -3113552,1630222069,2,72,0,1,1630093123,1,1.0,30.0,1.0,-9.0,4.0,1257944 -3113553,1630220867,2,67,0,1,1630093124,2,1.0,8.0,1.0,-9.0,4.0,1257945 -3113554,1630221109,1,72,0,1,1630093125,2,1.0,15.0,3.0,-9.0,4.0,1257946 -3113555,1630222229,4,23,0,1,1630093126,1,1.0,80.0,1.0,-9.0,4.0,1257947 -3113556,1630222230,4,23,0,1,1630093127,1,1.0,80.0,1.0,-9.0,4.0,1257948 -3113557,1630221982,2,20,0,1,1630093128,1,1.0,40.0,1.0,-9.0,4.0,1257949 -3113558,1630221369,1,24,0,1,1630093129,1,1.0,45.0,1.0,-9.0,4.0,1257950 -3113559,1630221370,1,24,0,1,1630093130,1,1.0,45.0,1.0,-9.0,4.0,1257951 -3113560,1630221148,1,24,0,1,1630093131,2,1.0,40.0,1.0,-9.0,4.0,1257952 -3113561,1630221150,1,26,1,2,1630093131,1,6.0,40.0,6.0,16.0,4.0,1257952 -3113562,1630221241,1,23,0,1,1630093132,1,1.0,35.0,1.0,16.0,4.0,1257953 -3113563,1630221242,4,22,11,2,1630093132,2,1.0,35.0,1.0,-9.0,4.0,1257953 -3113564,1630221240,1,22,11,3,1630093132,2,1.0,25.0,4.0,15.0,4.0,1257953 -3113565,1630221136,1,22,0,1,1630093133,2,1.0,45.0,4.0,-9.0,4.0,1257954 -3113566,1630221137,1,24,12,2,1630093133,2,1.0,50.0,1.0,-9.0,4.0,1257954 -3113567,1630221138,1,21,12,3,1630093133,2,1.0,35.0,3.0,-9.0,4.0,1257954 -3113568,1630221198,1,24,0,1,1630093134,2,1.0,50.0,1.0,-9.0,4.0,1257955 -3113569,1630221199,1,24,0,1,1630093135,2,1.0,50.0,1.0,-9.0,4.0,1257956 -3113570,1630221200,1,24,0,1,1630093136,2,1.0,50.0,1.0,-9.0,4.0,1257957 -3113571,1630221234,1,23,0,1,1630093137,2,1.0,45.0,1.0,-9.0,4.0,1257958 -3113572,1630221237,1,23,12,2,1630093137,2,1.0,24.0,1.0,-9.0,4.0,1257958 -3113573,1630221235,1,23,0,1,1630093138,2,1.0,45.0,1.0,-9.0,4.0,1257959 -3113574,1630221238,1,23,12,2,1630093138,2,1.0,24.0,1.0,-9.0,4.0,1257959 -3113575,1630221446,1,24,0,1,1630093139,1,1.0,40.0,1.0,-9.0,4.0,1257960 -3113576,1630221447,1,24,12,2,1630093139,1,1.0,40.0,1.0,-9.0,4.0,1257960 -3113577,1630221236,1,23,0,1,1630093140,2,1.0,45.0,1.0,-9.0,4.0,1257961 -3113578,1630221239,1,23,12,2,1630093140,2,1.0,24.0,1.0,-9.0,4.0,1257961 -3113579,1630221586,2,22,0,1,1630093141,2,6.0,40.0,1.0,-9.0,4.0,1257962 -3113580,1630221847,2,23,0,1,1630093142,2,6.0,15.0,4.0,15.0,4.0,1257963 -3113581,1630221565,2,24,0,1,1630093143,2,6.0,10.0,6.0,15.0,4.0,1257964 -3113582,1630221566,2,24,0,1,1630093144,2,6.0,10.0,6.0,15.0,4.0,1257965 -3113583,1630221892,2,23,0,1,1630093145,1,6.0,-9.0,-9.0,-9.0,4.0,1257966 -3113584,1630221366,1,24,0,1,1630093146,2,6.0,-9.0,-9.0,16.0,4.0,1257967 -3113585,1630221531,1,22,0,1,1630093147,1,6.0,28.0,4.0,16.0,4.0,1257968 -3113586,1630221367,1,24,0,1,1630093148,2,6.0,-9.0,-9.0,16.0,4.0,1257969 -3113587,1630221417,1,24,0,1,1630093149,1,3.0,20.0,5.0,-9.0,4.0,1257970 -3113588,1630221368,1,24,0,1,1630093150,2,6.0,-9.0,-9.0,16.0,4.0,1257971 -3113589,1630221418,1,24,0,1,1630093151,1,3.0,20.0,5.0,-9.0,4.0,1257972 -3113590,1630221487,1,20,0,1,1630093152,1,6.0,35.0,5.0,15.0,4.0,1257973 -3113591,1630221333,1,24,0,1,1630093153,2,6.0,-9.0,-9.0,16.0,4.0,1257974 -3113592,1630221281,1,24,0,1,1630093154,2,6.0,-9.0,-9.0,16.0,4.0,1257975 -3113593,1630221275,1,24,0,1,1630093155,2,6.0,40.0,6.0,16.0,4.0,1257976 -3113594,1630222150,4,23,0,1,1630093156,2,6.0,-9.0,-9.0,16.0,4.0,1257977 -3113595,1630222151,4,24,15,2,1630093156,2,6.0,-9.0,-9.0,16.0,4.0,1257977 -3113596,1630222149,4,24,15,3,1630093156,2,6.0,-9.0,-9.0,16.0,4.0,1257977 -3113597,1630221336,1,22,0,1,1630093157,2,6.0,-9.0,-9.0,16.0,4.0,1257978 -3113598,1630221337,1,22,11,2,1630093157,2,6.0,-9.0,-9.0,16.0,4.0,1257978 -3113599,1630222033,2,22,0,1,1630093158,1,1.0,20.0,6.0,-9.0,4.0,1257979 -3113600,1630221720,2,23,0,1,1630093159,2,1.0,32.0,1.0,-9.0,4.0,1257980 -3113601,1630222023,2,19,0,1,1630093160,1,1.0,50.0,1.0,-9.0,4.0,1257981 -3113602,1630221721,2,23,0,1,1630093161,2,1.0,32.0,1.0,-9.0,4.0,1257982 -3113603,1630221713,2,20,0,1,1630093162,2,1.0,16.0,6.0,-9.0,4.0,1257983 -3113604,1630222034,2,22,0,1,1630093163,1,1.0,20.0,6.0,-9.0,4.0,1257984 -3113605,1630221799,2,24,0,1,1630093164,2,1.0,35.0,1.0,-9.0,4.0,1257985 -3113606,1630221396,1,20,0,1,1630093165,1,1.0,40.0,5.0,15.0,4.0,1257986 -3113607,1630221508,1,22,0,1,1630093166,1,1.0,15.0,1.0,15.0,4.0,1257987 -3113608,1630221509,1,22,0,1,1630093167,1,1.0,15.0,1.0,15.0,4.0,1257988 -3113609,1630221397,1,20,0,1,1630093168,1,1.0,40.0,5.0,15.0,4.0,1257989 -3113610,1630221510,1,22,0,1,1630093169,1,1.0,15.0,1.0,15.0,4.0,1257990 -3113611,1630221511,1,22,0,1,1630093170,1,1.0,15.0,1.0,15.0,4.0,1257991 -3113612,1630222202,4,22,0,1,1630093171,2,1.0,25.0,1.0,15.0,4.0,1257992 -3113613,1630221755,2,22,0,1,1630093172,2,1.0,40.0,1.0,-9.0,4.0,1257993 -3113614,1630221461,1,23,0,1,1630093173,1,1.0,40.0,3.0,15.0,4.0,1257994 -3113615,1630221304,1,21,0,1,1630093174,2,1.0,25.0,1.0,-9.0,4.0,1257995 -3113616,1630221385,1,22,0,1,1630093175,1,1.0,40.0,3.0,-9.0,4.0,1257996 -3113617,1630221386,1,22,0,1,1630093176,1,1.0,40.0,3.0,-9.0,4.0,1257997 -3113618,1630221859,2,23,0,1,1630093177,2,1.0,40.0,1.0,15.0,4.0,1257998 -3113619,1630222040,2,23,0,1,1630093178,1,1.0,40.0,1.0,-9.0,4.0,1257999 -3113620,1630221532,1,21,0,1,1630093179,1,1.0,20.0,3.0,15.0,4.0,1258000 -3113621,1630221534,1,22,12,2,1630093179,1,6.0,-9.0,-9.0,15.0,4.0,1258000 -3113622,1630221536,1,21,12,3,1630093179,1,6.0,20.0,5.0,15.0,4.0,1258000 -3113623,1630221533,1,21,0,1,1630093180,1,1.0,20.0,3.0,15.0,4.0,1258001 -3113624,1630221537,1,21,12,2,1630093180,1,6.0,20.0,5.0,15.0,4.0,1258001 -3113625,1630221341,1,20,0,1,1630093181,2,6.0,15.0,6.0,15.0,4.0,1258002 -3113626,1630221342,1,19,12,2,1630093181,2,1.0,30.0,1.0,15.0,4.0,1258002 -3113627,1630221174,1,24,0,1,1630093182,1,1.0,35.0,1.0,-9.0,4.0,1258003 -3113628,1630221173,1,23,13,2,1630093182,2,6.0,20.0,4.0,16.0,4.0,1258003 -3113629,1630221207,1,20,0,1,1630093183,2,1.0,30.0,3.0,15.0,4.0,1258004 -3113630,1630221208,1,21,12,2,1630093183,2,6.0,30.0,4.0,15.0,4.0,1258004 -3113631,1630221585,2,53,0,1,1630093184,1,1.0,40.0,1.0,-9.0,2.0,1258005 -3113632,1630221584,2,53,1,2,1630093184,2,2.0,40.0,1.0,-9.0,4.0,1258005 -3113633,1630221645,2,51,0,1,1630093185,2,1.0,45.0,1.0,-9.0,4.0,1258006 -3113634,1630221646,2,20,2,2,1630093185,1,6.0,-9.0,-9.0,-9.0,4.0,1258006 -3113635,1630221717,2,55,0,1,1630093186,2,1.0,50.0,1.0,-9.0,4.0,1258007 -3113636,1630221750,2,60,0,1,1630093187,2,1.0,40.0,1.0,-9.0,4.0,1258008 -3113637,1630221897,2,61,0,1,1630093188,1,1.0,40.0,1.0,-9.0,4.0,1258009 -3113638,1630221898,2,51,10,2,1630093188,1,6.0,-9.0,-9.0,-9.0,4.0,1258009 -3113639,1630221742,2,54,0,1,1630093189,1,1.0,40.0,3.0,-9.0,2.0,1258010 -3113640,1630221741,2,49,1,2,1630093189,2,6.0,-9.0,-9.0,-9.0,4.0,1258010 -3113641,1630221499,1,50,0,1,1630093190,1,1.0,60.0,1.0,-9.0,4.0,1258011 -3113642,1630221172,1,32,0,1,1630093191,1,1.0,40.0,1.0,-9.0,4.0,1258012 -3113643,1630221169,1,42,1,2,1630093191,2,1.0,40.0,1.0,-9.0,4.0,1258012 -3113644,1630221051,2,67,0,1,1630093192,2,6.0,8.0,6.0,-9.0,4.0,1258013 -3113645,1630221732,2,30,0,1,1630093193,2,1.0,15.0,4.0,-9.0,4.0,1258014 -3113646,1630221733,2,30,1,2,1630093193,1,6.0,-9.0,-9.0,-9.0,4.0,1258014 -3113647,1630221268,1,63,0,1,1630093194,1,1.0,47.0,1.0,-9.0,4.0,1258015 -3113648,1630221267,1,59,1,2,1630093194,2,1.0,45.0,1.0,-9.0,4.0,1258015 -3113649,1630221680,2,58,0,1,1630093195,2,1.0,75.0,1.0,-9.0,4.0,1258016 -3113650,1630221460,1,55,0,1,1630093196,1,1.0,50.0,1.0,-9.0,4.0,1258017 -3113651,1630221634,2,56,0,1,1630093197,2,3.0,-9.0,-9.0,-9.0,4.0,1258018 -3113652,1630222080,2,72,0,1,1630093198,1,6.0,-9.0,-9.0,-9.0,4.0,1258019 -3113653,1630221280,1,27,0,1,1630093199,2,6.0,37.0,5.0,16.0,4.0,1258020 -3113654,1630222128,2,77,0,1,1630093200,1,6.0,-9.0,-9.0,-9.0,2.0,1258021 -3113655,1630221107,1,65,0,1,1630093201,2,6.0,-9.0,-9.0,-9.0,4.0,1258022 -3113656,1630222164,1,67,0,1,1630093202,1,1.0,40.0,1.0,-9.0,4.0,1258023 -3113657,1630221589,2,46,0,1,1630093203,2,1.0,60.0,1.0,-9.0,4.0,1258024 -3113658,1630221662,2,54,0,1,1630093204,2,6.0,-9.0,-9.0,15.0,4.0,1258025 -3113659,1630221663,2,25,2,2,1630093204,2,1.0,65.0,1.0,-9.0,4.0,1258025 -3113660,1630221664,2,19,2,3,1630093204,2,3.0,3.0,6.0,-9.0,4.0,1258025 -3113661,1630221355,1,56,0,1,1630093205,2,1.0,50.0,1.0,-9.0,4.0,1258026 -3113662,1630222228,4,30,0,1,1630093206,1,1.0,60.0,1.0,16.0,4.0,1258027 -3113663,1630221310,1,26,0,1,1630093207,2,1.0,35.0,1.0,-9.0,4.0,1258028 -3113664,1630221314,1,26,12,2,1630093207,1,1.0,40.0,1.0,-9.0,4.0,1258028 -3113665,1630221312,1,21,12,3,1630093207,2,1.0,35.0,1.0,15.0,4.0,1258028 -3113666,1630220935,2,71,0,1,1630093208,2,6.0,-9.0,-9.0,-9.0,4.0,1258029 -3113667,1630220936,2,52,15,2,1630093208,2,1.0,28.0,1.0,-9.0,4.0,1258029 -3113668,1630221131,1,49,0,1,1630093209,1,1.0,80.0,1.0,-9.0,4.0,1258030 -3113669,1630221130,1,40,1,2,1630093209,2,3.0,-9.0,-9.0,-9.0,4.0,1258030 -3113670,1630221332,1,26,0,1,1630093210,1,1.0,40.0,1.0,-9.0,4.0,1258031 -3113671,1630221329,1,25,13,2,1630093210,2,1.0,30.0,1.0,-9.0,4.0,1258031 -3113672,1630222064,2,73,0,1,1630093211,1,6.0,-9.0,-9.0,-9.0,4.0,1258032 -3113673,1630221715,2,49,0,1,1630093212,2,6.0,-9.0,-9.0,-9.0,4.0,1258033 -3113674,1630221716,2,56,13,2,1630093212,1,6.0,-9.0,-9.0,-9.0,4.0,1258033 -3113675,1630222123,2,71,0,1,1630093213,1,6.0,-9.0,-9.0,-9.0,2.0,1258034 -3113676,1630221834,2,52,0,1,1630093214,2,2.0,40.0,3.0,-9.0,4.0,1258035 -3113677,1630221835,2,19,12,2,1630093214,2,1.0,40.0,1.0,15.0,4.0,1258035 -3113678,1630222131,2,68,0,1,1630093215,1,1.0,45.0,1.0,-9.0,4.0,1258036 -3113679,1630222133,2,68,12,2,1630093215,1,1.0,32.0,1.0,-9.0,4.0,1258036 -3113680,1630221593,2,46,0,1,1630093216,2,6.0,25.0,5.0,-9.0,4.0,1258037 -3113681,1630221594,2,20,2,2,1630093216,2,6.0,-9.0,-9.0,-9.0,4.0,1258037 -3113682,1630221108,1,69,0,1,1630093217,2,6.0,-9.0,-9.0,-9.0,4.0,1258038 -3113683,1630221630,2,41,0,1,1630093218,2,1.0,40.0,1.0,-9.0,4.0,1258039 -3113684,1630221631,2,53,1,2,1630093218,1,1.0,45.0,1.0,-9.0,4.0,1258039 -3113685,1630221541,1,29,0,1,1630093219,1,1.0,35.0,1.0,-9.0,4.0,1258040 -3113686,1630220951,2,68,0,1,1630093220,2,6.0,40.0,2.0,-9.0,4.0,1258041 -3113687,1630220953,2,21,7,2,1630093220,1,6.0,-9.0,-9.0,-9.0,4.0,1258041 -3113688,1630221356,1,22,0,1,1630093221,2,1.0,20.0,1.0,15.0,4.0,1258042 -3113689,1630221357,1,18,5,2,1630093221,2,1.0,40.0,6.0,15.0,4.0,1258042 -3113690,1630221358,1,23,12,3,1630093221,2,1.0,15.0,3.0,15.0,4.0,1258042 -3113691,1630222216,4,25,0,1,1630093222,1,1.0,70.0,5.0,-9.0,2.0,1258043 -3113692,1630221364,1,24,0,1,1630093223,2,1.0,40.0,1.0,15.0,4.0,1258044 -3113693,1630221365,1,31,13,2,1630093223,1,1.0,20.0,1.0,16.0,4.0,1258044 -3113694,1630221483,1,58,0,1,1630093224,1,1.0,55.0,1.0,-9.0,4.0,1258045 -3113695,1630221224,1,27,0,1,1630093225,2,6.0,-9.0,-9.0,16.0,4.0,1258046 -3113696,1630221226,4,26,12,2,1630093225,2,6.0,-9.0,-9.0,16.0,4.0,1258046 -3113697,1630221225,1,25,12,3,1630093225,2,6.0,-9.0,-9.0,16.0,4.0,1258046 -3113698,1630221759,2,62,0,1,1630093226,2,3.0,40.0,6.0,-9.0,4.0,1258047 -3113699,1630221760,2,23,2,2,1630093226,2,1.0,23.0,5.0,-9.0,4.0,1258047 -3113700,1630221405,1,24,0,1,1630093227,1,3.0,47.0,3.0,15.0,4.0,1258048 -3113701,1630221454,3,54,0,1,1630093228,1,1.0,40.0,1.0,-9.0,4.0,1258049 -3113702,1630221244,1,23,0,1,1630093229,2,1.0,60.0,4.0,16.0,4.0,1258050 -3113703,1630221245,1,22,12,2,1630093229,2,1.0,40.0,1.0,-9.0,4.0,1258050 -3113704,1630221776,2,64,0,1,1630093230,2,6.0,40.0,6.0,-9.0,4.0,1258051 -3113705,1630221610,2,42,0,1,1630093231,2,6.0,-9.0,-9.0,-9.0,4.0,1258052 -3113706,1630222018,2,58,0,1,1630093232,1,2.0,20.0,6.0,-9.0,2.0,1258053 -3113707,1630221360,1,27,0,1,1630093233,1,1.0,45.0,1.0,-9.0,4.0,1258054 -3113708,1630221359,1,28,1,2,1630093233,2,1.0,52.0,4.0,-9.0,4.0,1258054 -3113709,1630221191,1,27,0,1,1630093234,1,6.0,-9.0,-9.0,16.0,4.0,1258055 -3113710,1630221190,1,24,1,2,1630093234,2,6.0,-9.0,-9.0,16.0,4.0,1258055 -3113711,1630221372,1,34,0,1,1630093235,1,1.0,17.0,3.0,-9.0,4.0,1258056 -3113712,1630221374,2,39,1,2,1630093235,2,1.0,45.0,1.0,-9.0,4.0,1258056 -3113713,1630221276,1,55,0,1,1630093236,2,1.0,42.0,1.0,-9.0,4.0,1258057 -3113714,1630221465,1,45,0,1,1630093237,1,1.0,50.0,1.0,-9.0,4.0,1258058 -3113715,1630221087,3,69,0,1,1630093238,2,6.0,-9.0,-9.0,-9.0,4.0,1258059 -3113716,1630221306,1,21,0,1,1630093239,2,6.0,10.0,5.0,16.0,4.0,1258060 -3113717,1630221963,2,63,0,1,1630093240,1,6.0,-9.0,-9.0,-9.0,2.0,1258061 -3113718,1630221723,2,26,0,1,1630093241,2,1.0,40.0,1.0,-9.0,4.0,1258062 -3113719,1630222189,4,30,0,1,1630093242,1,1.0,60.0,1.0,16.0,4.0,1258063 -3113720,1630222188,4,33,1,2,1630093242,2,1.0,60.0,1.0,16.0,4.0,1258063 -3113721,1630221827,2,61,0,1,1630093243,1,3.0,-9.0,-9.0,15.0,4.0,1258064 -3113722,1630221826,2,48,13,2,1630093243,2,3.0,-9.0,-9.0,15.0,4.0,1258064 -3113723,1630221828,2,21,15,3,1630093243,1,6.0,-9.0,-9.0,15.0,4.0,1258064 -3113724,1630221701,2,58,0,1,1630093244,2,3.0,-9.0,-9.0,-9.0,2.0,1258065 -3113725,1630221702,2,45,12,2,1630093244,2,1.0,40.0,1.0,-9.0,4.0,1258065 -3113726,1630221195,1,37,0,1,1630093245,1,1.0,33.0,1.0,-9.0,4.0,1258066 -3113727,1630221194,1,27,13,2,1630093245,2,6.0,40.0,5.0,-9.0,4.0,1258066 -3113728,1630221381,1,24,0,1,1630093246,1,6.0,-9.0,-9.0,15.0,4.0,1258067 -3113729,1630221761,2,31,0,1,1630093247,2,1.0,40.0,1.0,-9.0,4.0,1258068 -3113730,1630221762,2,30,10,2,1630093247,1,6.0,-9.0,-9.0,-9.0,4.0,1258068 -3113731,1630221618,2,29,0,1,1630093248,2,6.0,-9.0,-9.0,-9.0,4.0,1258069 -3113732,1630221620,2,32,12,2,1630093248,1,2.0,40.0,4.0,-9.0,4.0,1258069 -3113733,1630221887,2,48,0,1,1630093249,1,1.0,50.0,1.0,-9.0,4.0,1258070 -3113734,1630221479,1,57,0,1,1630093250,1,1.0,60.0,1.0,-9.0,4.0,1258071 -3113735,1630221255,1,54,0,1,1630093251,1,1.0,65.0,1.0,-9.0,4.0,1258072 -3113736,1630221252,1,45,1,2,1630093251,2,1.0,40.0,1.0,-9.0,4.0,1258072 -3113737,1630221325,1,25,0,1,1630093252,1,6.0,-9.0,-9.0,16.0,4.0,1258073 -3113738,1630221322,1,26,1,2,1630093252,2,1.0,50.0,1.0,-9.0,4.0,1258073 -3113739,1630222041,2,23,0,1,1630093253,1,1.0,40.0,1.0,-9.0,4.0,1258074 -3113740,1630221290,1,62,0,1,1630093254,1,1.0,20.0,6.0,-9.0,2.0,1258075 -3113741,1630221289,1,51,13,2,1630093254,2,6.0,-9.0,-9.0,-9.0,4.0,1258075 -3113742,1630221651,3,27,0,1,1630093255,2,1.0,65.0,1.0,-9.0,4.0,1258076 -3113743,1630221196,3,49,0,1,1630093256,2,1.0,45.0,3.0,-9.0,4.0,1258077 -3113744,1630221613,2,58,0,1,1630093257,2,1.0,40.0,1.0,-9.0,4.0,1258078 -3113745,1630221614,2,21,2,2,1630093257,1,1.0,32.0,2.0,-9.0,4.0,1258078 -3113746,1630221615,2,58,13,3,1630093257,1,6.0,-9.0,-9.0,-9.0,2.0,1258078 -3113747,1630221484,1,52,0,1,1630093258,1,1.0,40.0,1.0,-9.0,4.0,1258079 -3113748,1630221485,1,46,15,2,1630093258,1,1.0,40.0,1.0,-9.0,4.0,1258079 -3113749,1630221841,2,62,0,1,1630093259,2,1.0,40.0,1.0,-9.0,4.0,1258080 -3113750,1630221842,2,61,1,2,1630093259,1,1.0,60.0,1.0,-9.0,4.0,1258080 -3113751,1630221473,1,28,0,1,1630093260,1,1.0,25.0,1.0,-9.0,4.0,1258081 -3113752,1630221477,1,28,12,2,1630093260,1,1.0,45.0,1.0,-9.0,4.0,1258081 -3113753,1630221363,1,66,0,1,1630093261,1,1.0,50.0,6.0,-9.0,2.0,1258082 -3113754,1630221361,1,51,1,2,1630093261,2,6.0,-9.0,-9.0,-9.0,4.0,1258082 -3113755,1630220864,2,74,0,1,1630093262,2,6.0,-9.0,-9.0,-9.0,4.0,1258083 -3113756,1630220865,2,46,2,2,1630093262,1,6.0,-9.0,-9.0,-9.0,4.0,1258083 -3113757,1630221906,3,53,0,1,1630093263,1,6.0,-9.0,-9.0,-9.0,4.0,1258084 -3113758,1630222116,3,65,0,1,1630093264,1,6.0,-9.0,-9.0,-9.0,4.0,1258085 -3113759,1630221837,2,60,0,1,1630093265,2,6.0,-9.0,-9.0,-9.0,4.0,1258086 -3113760,1630221754,2,63,0,1,1630093266,2,6.0,-9.0,-9.0,-9.0,4.0,1258087 -3113761,1630221284,1,33,0,1,1630093267,2,1.0,50.0,1.0,-9.0,4.0,1258088 -3113762,1630222097,2,66,0,1,1630093268,1,1.0,40.0,1.0,-9.0,4.0,1258089 -3113763,1630221133,1,57,0,1,1630093269,2,6.0,-9.0,-9.0,-9.0,4.0,1258090 -3113764,1630221950,2,49,0,1,1630093270,1,1.0,36.0,1.0,-9.0,4.0,1258091 -3113765,1630222238,4,26,0,1,1630093271,1,6.0,36.0,5.0,-9.0,4.0,1258092 -3113766,1630221264,1,40,0,1,1630093272,2,1.0,60.0,1.0,-9.0,4.0,1258093 -3113767,1630222203,4,22,0,1,1630093273,2,1.0,25.0,1.0,15.0,4.0,1258094 -3113768,1630222020,2,57,0,1,1630093274,1,6.0,-9.0,-9.0,-9.0,2.0,1258095 -3113769,1630221981,4,33,0,1,1630093275,2,1.0,55.0,1.0,-9.0,4.0,1258096 -3113770,1630221976,2,34,13,2,1630093275,1,1.0,40.0,4.0,16.0,4.0,1258096 -3113771,1630221549,2,49,0,1,1630093276,1,1.0,40.0,1.0,-9.0,4.0,1258097 -3113772,1630221548,2,49,1,2,1630093276,2,3.0,-9.0,-9.0,-9.0,3.0,1258097 -3113773,1630221316,1,60,0,1,1630093277,1,1.0,70.0,5.0,-9.0,4.0,1258098 -3113774,1630221315,1,60,1,2,1630093277,2,6.0,-9.0,-9.0,-9.0,4.0,1258098 -3113775,1630221913,2,40,0,1,1630093278,1,1.0,40.0,6.0,-9.0,4.0,1258099 -3113776,1630221177,1,58,0,1,1630093279,2,1.0,40.0,1.0,-9.0,4.0,1258100 -3113777,1630221422,1,87,0,1,1630093280,1,6.0,-9.0,-9.0,-9.0,2.0,1258101 -3113778,1630221420,1,51,12,2,1630093280,1,6.0,-9.0,-9.0,-9.0,4.0,1258101 -3113779,1630221788,2,39,0,1,1630093281,2,6.0,27.0,1.0,-9.0,4.0,1258102 -3113780,1630221790,2,21,2,2,1630093281,1,6.0,-9.0,-9.0,-9.0,4.0,1258102 -3113781,1630221789,2,26,10,3,1630093281,2,6.0,-9.0,-9.0,-9.0,4.0,1258102 -3113782,1630221279,1,32,0,1,1630093282,1,1.0,40.0,3.0,16.0,4.0,1258103 -3113783,1630221277,1,40,12,2,1630093282,2,1.0,40.0,1.0,16.0,4.0,1258103 -3113784,1630221278,1,30,13,3,1630093282,2,2.0,40.0,3.0,16.0,4.0,1258103 -3113785,1630222101,2,65,0,1,1630093283,1,6.0,-9.0,-9.0,-9.0,2.0,1258104 -3113786,1630221999,2,59,0,1,1630093284,1,1.0,40.0,1.0,-9.0,2.0,1258105 -3113787,1630221638,2,41,0,1,1630093285,2,6.0,-9.0,-9.0,-9.0,2.0,1258106 -3113788,1630221434,3,27,0,1,1630093286,1,1.0,70.0,1.0,-9.0,4.0,1258107 -3113789,1630221437,3,27,12,2,1630093286,1,1.0,70.0,1.0,-9.0,4.0,1258107 -3113790,1630221303,1,64,0,1,1630093287,1,1.0,65.0,1.0,-9.0,4.0,1258108 -3113791,1630221302,1,61,1,2,1630093287,2,6.0,-9.0,-9.0,-9.0,4.0,1258108 -3113792,1630221210,1,28,0,1,1630093288,2,1.0,50.0,1.0,-9.0,4.0,1258109 -3113793,1630221212,1,28,5,2,1630093288,2,1.0,25.0,3.0,16.0,4.0,1258109 -3113794,1630221932,2,32,0,1,1630093289,1,6.0,56.0,1.0,-9.0,4.0,1258110 -3113795,1630221933,2,29,12,2,1630093289,1,6.0,-9.0,-9.0,-9.0,4.0,1258110 -3113796,1630221856,2,23,0,1,1630093290,2,3.0,35.0,6.0,-9.0,4.0,1258111 -3113797,1630221800,2,24,0,1,1630093291,2,1.0,35.0,1.0,-9.0,4.0,1258112 -3113798,1630221748,2,26,0,1,1630093292,1,1.0,52.0,1.0,-9.0,4.0,1258113 -3113799,1630221747,2,22,1,2,1630093292,2,1.0,40.0,1.0,-9.0,4.0,1258113 -3113800,1630221599,2,69,0,1,1630093293,1,6.0,-9.0,-9.0,-9.0,2.0,1258114 -3113801,1630221597,2,63,1,2,1630093293,2,6.0,-9.0,-9.0,-9.0,4.0,1258114 -3113802,1630221779,2,63,0,1,1630093294,2,1.0,40.0,1.0,-9.0,4.0,1258115 -3113803,1630221710,2,27,0,1,1630093295,2,1.0,40.0,1.0,-9.0,4.0,1258116 -3113804,1630221028,2,68,0,1,1630093296,2,3.0,40.0,3.0,-9.0,4.0,1258117 -3113805,1630221030,2,52,1,2,1630093296,1,1.0,40.0,1.0,-9.0,4.0,1258117 -3113806,1630221893,2,20,0,1,1630093297,1,1.0,15.0,6.0,15.0,4.0,1258118 -3113807,1630221865,2,43,0,1,1630093298,2,1.0,40.0,1.0,15.0,4.0,1258119 -3113808,1630221867,2,19,2,2,1630093298,1,3.0,36.0,6.0,15.0,4.0,1258119 -3113809,1630221795,2,58,0,1,1630093299,1,1.0,40.0,4.0,-9.0,4.0,1258120 -3113810,1630221794,2,60,1,2,1630093299,2,1.0,40.0,1.0,-9.0,4.0,1258120 -3113811,1630221640,2,24,0,1,1630093300,1,1.0,42.0,1.0,-9.0,4.0,1258121 -3113812,1630221639,2,24,1,2,1630093300,2,6.0,-9.0,-9.0,-9.0,4.0,1258121 -3113813,1630221740,2,63,0,1,1630093301,2,6.0,-9.0,-9.0,-9.0,4.0,1258122 -3113814,1630222208,4,27,0,1,1630093302,1,1.0,54.0,2.0,16.0,4.0,1258123 -3113815,1630222207,4,26,1,2,1630093302,2,1.0,15.0,6.0,16.0,4.0,1258123 -3113816,1630221431,4,28,0,1,1630093303,1,6.0,-9.0,-9.0,16.0,4.0,1258124 -3113817,1630221427,1,28,12,2,1630093303,1,6.0,-9.0,-9.0,16.0,4.0,1258124 -3113818,1630221429,1,25,12,3,1630093303,1,6.0,-9.0,-9.0,16.0,4.0,1258124 -3113819,1630221164,1,60,0,1,1630093304,2,1.0,48.0,1.0,-9.0,4.0,1258125 -3113820,1630221890,2,60,0,1,1630093305,1,6.0,-9.0,-9.0,-9.0,4.0,1258126 -3113821,1630221149,1,24,0,1,1630093306,2,1.0,40.0,1.0,-9.0,4.0,1258127 -3113822,1630221151,1,26,1,2,1630093306,1,6.0,40.0,6.0,16.0,4.0,1258127 -3113823,1630221808,2,28,0,1,1630093307,2,6.0,40.0,1.0,15.0,4.0,1258128 -3113824,1630221809,2,23,5,2,1630093307,2,6.0,-9.0,-9.0,-9.0,4.0,1258128 -3113825,1630222201,4,30,0,1,1630093308,2,1.0,40.0,1.0,-9.0,4.0,1258129 -3113826,1630222036,2,58,0,1,1630093309,1,1.0,50.0,3.0,-9.0,4.0,1258130 -3113827,1630222038,2,32,11,2,1630093309,1,1.0,30.0,3.0,-9.0,4.0,1258130 -3113828,1630221734,2,46,0,1,1630093310,2,1.0,40.0,1.0,-9.0,4.0,1258131 -3113829,1630221529,3,48,0,1,1630093311,1,6.0,-9.0,-9.0,-9.0,4.0,1258132 -3113830,1630221530,3,47,5,2,1630093311,1,6.0,-9.0,-9.0,-9.0,4.0,1258132 -3113831,1630221192,1,22,0,1,1630093312,2,2.0,40.0,1.0,16.0,4.0,1258133 -3113832,1630221193,1,27,13,2,1630093312,1,1.0,60.0,1.0,-9.0,4.0,1258133 -3113833,1630221201,1,24,0,1,1630093313,2,1.0,50.0,1.0,-9.0,4.0,1258134 -3113834,1630221162,1,24,0,1,1630093314,2,1.0,20.0,3.0,15.0,4.0,1258135 -3113835,1630221163,1,29,1,2,1630093314,1,1.0,31.0,3.0,15.0,4.0,1258135 -3113836,1630221773,2,26,0,1,1630093315,2,1.0,40.0,4.0,15.0,4.0,1258136 -3113837,1630221774,2,35,13,2,1630093315,1,1.0,20.0,1.0,-9.0,4.0,1258136 -3113838,1630221693,2,69,0,1,1630093316,1,6.0,12.0,6.0,-9.0,2.0,1258137 -3113839,1630221692,2,61,1,2,1630093316,2,1.0,45.0,1.0,-9.0,4.0,1258137 -3113840,1630221814,2,24,0,1,1630093317,1,1.0,20.0,1.0,16.0,4.0,1258138 -3113841,1630221813,2,24,13,2,1630093317,2,6.0,-9.0,-9.0,16.0,4.0,1258138 -3113842,1630221412,1,39,0,1,1630093318,1,1.0,40.0,1.0,-9.0,4.0,1258139 -3113843,1630221674,2,30,0,1,1630093319,2,3.0,-9.0,-9.0,-9.0,4.0,1258140 -3113844,1630221675,2,25,10,2,1630093319,1,3.0,36.0,5.0,-9.0,4.0,1258140 -3113845,1630221545,2,55,0,1,1630093320,2,1.0,40.0,1.0,-9.0,4.0,1258141 -3113846,1630221546,2,26,2,2,1630093320,1,3.0,1.0,6.0,15.0,4.0,1258141 -3113847,1630222193,4,30,0,1,1630093321,1,1.0,45.0,1.0,-9.0,4.0,1258142 -3113848,1630222191,4,27,1,2,1630093321,2,1.0,40.0,1.0,-9.0,4.0,1258142 -3113849,1630222168,1,66,0,1,1630093322,1,6.0,-9.0,-9.0,-9.0,2.0,1258143 -3113850,1630221852,2,35,0,1,1630093323,2,6.0,-9.0,-9.0,-9.0,4.0,1258144 -3113851,1630221853,2,9,2,2,1630093323,1,-9.0,-9.0,-9.0,6.0,-9.0,1258144 -3113852,1630222183,4,30,0,1,1630093324,2,1.0,44.0,1.0,-9.0,4.0,1258145 -3113853,1630222187,4,34,1,2,1630093324,1,1.0,40.0,2.0,-9.0,4.0,1258145 -3113854,1630221160,1,51,0,1,1630093325,2,6.0,-9.0,-9.0,-9.0,4.0,1258146 -3113855,1630221161,1,44,12,2,1630093325,1,3.0,15.0,6.0,-9.0,4.0,1258146 -3113856,1630221737,2,58,0,1,1630093326,2,1.0,55.0,1.0,-9.0,4.0,1258147 -3113857,1630221738,2,59,1,2,1630093326,1,1.0,40.0,1.0,-9.0,4.0,1258147 -3113858,1630221739,2,47,15,3,1630093326,1,1.0,30.0,1.0,-9.0,4.0,1258147 -3113859,1630221687,2,46,0,1,1630093327,2,1.0,40.0,5.0,-9.0,4.0,1258148 -3113860,1630221689,2,28,10,2,1630093327,1,6.0,-9.0,-9.0,-9.0,4.0,1258148 -3113861,1630221691,2,33,12,3,1630093327,1,6.0,-9.0,-9.0,-9.0,4.0,1258148 -3113862,1630221694,2,50,0,1,1630093328,2,1.0,40.0,1.0,-9.0,4.0,1258149 -3113863,1630221380,1,63,0,1,1630093329,1,1.0,92.0,1.0,-9.0,4.0,1258150 -3113864,1630222008,2,47,0,1,1630093330,1,1.0,40.0,1.0,-9.0,4.0,1258151 -3113865,1630221656,2,56,0,1,1630093331,2,1.0,40.0,1.0,-9.0,4.0,1258152 -3113866,1630221658,2,63,13,2,1630093331,1,6.0,-9.0,-9.0,-9.0,4.0,1258152 -3113867,1630222176,4,26,0,1,1630093332,2,6.0,-9.0,-9.0,-9.0,4.0,1258153 -3113868,1630222179,4,26,1,2,1630093332,1,1.0,40.0,1.0,16.0,4.0,1258153 -3113869,1630221948,2,41,0,1,1630093333,1,3.0,50.0,4.0,-9.0,4.0,1258154 -3113870,1630220970,2,69,0,1,1630093334,2,6.0,-9.0,-9.0,-9.0,4.0,1258155 -3113871,1630220971,2,65,1,2,1630093334,1,6.0,-9.0,-9.0,-9.0,4.0,1258155 -3113872,1630221621,2,64,0,1,1630093335,2,6.0,-9.0,-9.0,-9.0,4.0,1258156 -3113873,1630221622,2,30,2,2,1630093335,2,1.0,45.0,4.0,-9.0,4.0,1258156 -3113874,1630221848,2,57,0,1,1630093336,2,1.0,40.0,1.0,-9.0,4.0,1258157 -3113875,1630221849,2,33,2,2,1630093336,2,1.0,40.0,1.0,15.0,4.0,1258157 -3113876,1630221833,2,62,0,1,1630093337,2,1.0,50.0,1.0,-9.0,4.0,1258158 -3113877,1630221213,1,56,0,1,1630093338,2,1.0,35.0,1.0,-9.0,4.0,1258159 -3113878,1630221961,2,62,0,1,1630093339,1,1.0,55.0,1.0,-9.0,4.0,1258160 -3113879,1630221962,2,22,2,2,1630093339,1,3.0,40.0,3.0,-9.0,4.0,1258160 -3113880,1630221772,2,60,0,1,1630093340,2,1.0,50.0,6.0,-9.0,4.0,1258161 -3113881,1630221943,2,21,0,1,1630093341,1,1.0,48.0,1.0,-9.0,4.0,1258162 -3113882,1630221944,2,24,15,2,1630093341,1,6.0,-9.0,-9.0,-9.0,4.0,1258162 -3113883,1630221725,2,52,0,1,1630093342,1,1.0,40.0,1.0,-9.0,2.0,1258163 -3113884,1630221724,2,50,1,2,1630093342,2,1.0,30.0,1.0,-9.0,4.0,1258163 -3113885,1630221751,2,42,0,1,1630093343,2,6.0,-9.0,-9.0,-9.0,4.0,1258164 -3113886,1630221753,2,21,2,2,1630093343,1,6.0,-9.0,-9.0,-9.0,4.0,1258164 -3113887,1630221752,2,16,2,3,1630093343,1,6.0,-9.0,-9.0,12.0,-9.0,1258164 -3113888,1630221403,3,29,0,1,1630093344,1,1.0,43.0,1.0,-9.0,4.0,1258165 -3113889,1630222555,1,30,0,1,1630093345,1,1.0,55.0,1.0,-9.0,4.0,1258166 -3113890,1630222556,1,30,0,1,1630093346,1,1.0,55.0,1.0,-9.0,4.0,1258167 -3113891,1630222734,1,28,0,1,1630093347,1,1.0,55.0,1.0,-9.0,4.0,1258168 -3113892,1630222735,1,28,0,1,1630093348,1,1.0,55.0,1.0,-9.0,4.0,1258169 -3113893,1630222557,1,30,0,1,1630093349,1,1.0,55.0,1.0,-9.0,4.0,1258170 -3113894,1630222558,1,30,0,1,1630093350,1,1.0,55.0,1.0,-9.0,4.0,1258171 -3113895,1630222627,1,42,0,1,1630093351,1,1.0,50.0,1.0,-9.0,4.0,1258172 -3113896,1630222736,1,28,0,1,1630093352,1,1.0,55.0,1.0,-9.0,4.0,1258173 -3113897,1630222559,1,30,0,1,1630093353,1,1.0,55.0,1.0,-9.0,4.0,1258174 -3113898,1630222658,1,28,0,1,1630093354,1,1.0,60.0,1.0,16.0,4.0,1258175 -3113899,1630222628,1,42,0,1,1630093355,1,1.0,50.0,1.0,-9.0,4.0,1258176 -3113900,1630222560,1,30,0,1,1630093356,1,1.0,55.0,1.0,-9.0,4.0,1258177 -3113901,1630222690,2,43,0,1,1630093357,1,6.0,-9.0,-9.0,-9.0,2.0,1258178 -3113902,1630222689,1,64,1,2,1630093357,1,1.0,32.0,1.0,-9.0,4.0,1258178 -3113903,1630222715,1,33,0,1,1630093358,1,1.0,44.0,1.0,-9.0,4.0,1258179 -3113904,1630222717,4,31,1,2,1630093358,2,3.0,10.0,4.0,-9.0,4.0,1258179 -3113905,1630222462,4,40,0,1,1630093359,1,1.0,60.0,1.0,-9.0,4.0,1258180 -3113906,1630222458,1,33,13,2,1630093359,2,1.0,40.0,1.0,-9.0,4.0,1258180 -3113907,1630222463,4,40,0,1,1630093360,1,1.0,60.0,1.0,-9.0,4.0,1258181 -3113908,1630222459,1,33,13,2,1630093360,2,1.0,40.0,1.0,-9.0,4.0,1258181 -3113909,1630222464,4,40,0,1,1630093361,1,1.0,60.0,1.0,-9.0,4.0,1258182 -3113910,1630222460,1,33,13,2,1630093361,2,1.0,40.0,1.0,-9.0,4.0,1258182 -3113911,1630222952,2,34,0,1,1630093362,2,1.0,40.0,1.0,16.0,4.0,1258183 -3113912,1630222953,2,34,1,2,1630093362,1,1.0,60.0,1.0,-9.0,4.0,1258183 -3113913,1630222641,4,41,0,1,1630093363,2,1.0,40.0,1.0,-9.0,4.0,1258184 -3113914,1630222639,1,41,1,2,1630093363,1,1.0,40.0,5.0,-9.0,4.0,1258184 -3113915,1630222667,1,43,0,1,1630093364,1,1.0,40.0,1.0,-9.0,4.0,1258185 -3113916,1630222673,1,49,13,2,1630093364,1,1.0,35.0,4.0,-9.0,2.0,1258185 -3113917,1630222668,1,43,0,1,1630093365,1,1.0,40.0,1.0,-9.0,4.0,1258186 -3113918,1630222674,1,49,13,2,1630093365,1,1.0,35.0,4.0,-9.0,2.0,1258186 -3113919,1630222669,1,43,0,1,1630093366,1,1.0,40.0,1.0,-9.0,4.0,1258187 -3113920,1630222675,1,49,13,2,1630093366,1,1.0,35.0,4.0,-9.0,2.0,1258187 -3113921,1630222670,1,43,0,1,1630093367,1,1.0,40.0,1.0,-9.0,4.0,1258188 -3113922,1630222676,1,49,13,2,1630093367,1,1.0,35.0,4.0,-9.0,2.0,1258188 -3113923,1630222456,1,36,0,1,1630093368,2,1.0,42.0,1.0,-9.0,4.0,1258189 -3113924,1630222457,1,38,1,2,1630093368,1,1.0,45.0,1.0,-9.0,4.0,1258189 -3113925,1630222671,1,43,0,1,1630093369,1,1.0,40.0,1.0,-9.0,4.0,1258190 -3113926,1630222677,1,49,13,2,1630093369,1,1.0,35.0,4.0,-9.0,2.0,1258190 -3113927,1630223122,2,43,0,1,1630093370,1,6.0,40.0,1.0,-9.0,4.0,1258191 -3113928,1630222993,2,40,0,1,1630093371,2,1.0,40.0,1.0,-9.0,4.0,1258192 -3113929,1630222994,2,40,0,1,1630093372,2,1.0,40.0,1.0,-9.0,4.0,1258193 -3113930,1630223120,2,38,0,1,1630093373,1,1.0,40.0,1.0,-9.0,4.0,1258194 -3113931,1630222712,1,30,0,1,1630093374,1,1.0,60.0,1.0,-9.0,4.0,1258195 -3113932,1630222519,1,31,0,1,1630093375,2,1.0,50.0,1.0,-9.0,4.0,1258196 -3113933,1630222533,1,35,0,1,1630093376,2,1.0,40.0,2.0,-9.0,4.0,1258197 -3113934,1630222520,1,31,0,1,1630093377,2,1.0,50.0,1.0,-9.0,4.0,1258198 -3113935,1630222542,3,37,0,1,1630093378,2,1.0,40.0,1.0,-9.0,4.0,1258199 -3113936,1630222543,3,37,0,1,1630093379,2,1.0,40.0,1.0,-9.0,4.0,1258200 -3113937,1630222835,2,41,0,1,1630093380,2,1.0,48.0,1.0,15.0,4.0,1258201 -3113938,1630222836,2,41,0,1,1630093381,2,1.0,48.0,1.0,15.0,4.0,1258202 -3113939,1630222872,2,31,0,1,1630093382,2,1.0,50.0,1.0,-9.0,4.0,1258203 -3113940,1630222808,2,35,0,1,1630093383,2,1.0,40.0,1.0,16.0,4.0,1258204 -3113941,1630222809,2,35,0,1,1630093384,2,1.0,40.0,1.0,16.0,4.0,1258205 -3113942,1630223205,4,39,0,1,1630093385,1,1.0,40.0,1.0,-9.0,4.0,1258206 -3113943,1630223206,4,39,0,1,1630093386,1,1.0,40.0,1.0,-9.0,4.0,1258207 -3113944,1630223207,4,39,0,1,1630093387,1,1.0,40.0,1.0,-9.0,4.0,1258208 -3113945,1630223208,4,39,0,1,1630093388,1,1.0,40.0,1.0,-9.0,4.0,1258209 -3113946,1630222595,1,41,0,1,1630093389,1,1.0,40.0,1.0,-9.0,4.0,1258210 -3113947,1630222688,1,29,0,1,1630093390,1,1.0,40.0,1.0,16.0,4.0,1258211 -3113948,1630222596,1,41,0,1,1630093391,1,1.0,40.0,1.0,-9.0,4.0,1258212 -3113949,1630222561,1,34,0,1,1630093392,1,1.0,55.0,1.0,-9.0,4.0,1258213 -3113950,1630222597,1,41,0,1,1630093393,1,1.0,40.0,1.0,-9.0,4.0,1258214 -3113951,1630222598,1,41,0,1,1630093394,1,1.0,40.0,1.0,-9.0,4.0,1258215 -3113952,1630222599,1,41,0,1,1630093395,1,1.0,40.0,1.0,-9.0,4.0,1258216 -3113953,1630222575,4,29,0,1,1630093396,2,1.0,80.0,1.0,-9.0,4.0,1258217 -3113954,1630222569,1,26,13,2,1630093396,1,3.0,40.0,4.0,16.0,4.0,1258217 -3113955,1630222576,4,29,0,1,1630093397,2,1.0,80.0,1.0,-9.0,4.0,1258218 -3113956,1630222570,1,26,13,2,1630093397,1,3.0,40.0,4.0,16.0,4.0,1258218 -3113957,1630222577,4,29,0,1,1630093398,2,1.0,80.0,1.0,-9.0,4.0,1258219 -3113958,1630222571,1,26,13,2,1630093398,1,3.0,40.0,4.0,16.0,4.0,1258219 -3113959,1630222578,4,29,0,1,1630093399,2,1.0,80.0,1.0,-9.0,4.0,1258220 -3113960,1630222572,1,26,13,2,1630093399,1,3.0,40.0,4.0,16.0,4.0,1258220 -3113961,1630222579,4,29,0,1,1630093400,2,1.0,80.0,1.0,-9.0,4.0,1258221 -3113962,1630222573,1,26,13,2,1630093400,1,3.0,40.0,4.0,16.0,4.0,1258221 -3113963,1630222942,2,31,0,1,1630093401,2,3.0,40.0,3.0,-9.0,4.0,1258222 -3113964,1630222944,2,39,1,2,1630093401,1,1.0,40.0,1.0,-9.0,4.0,1258222 -3113965,1630222737,1,28,0,1,1630093402,1,1.0,40.0,1.0,16.0,4.0,1258223 -3113966,1630222739,4,28,13,2,1630093402,2,1.0,35.0,3.0,-9.0,4.0,1258223 -3113967,1630223057,2,30,0,1,1630093403,1,3.0,36.0,5.0,-9.0,4.0,1258224 -3113968,1630222412,1,26,0,1,1630093404,2,3.0,14.0,3.0,-9.0,4.0,1258225 -3113969,1630223092,2,42,0,1,1630093405,1,6.0,-9.0,-9.0,-9.0,4.0,1258226 -3113970,1630222683,1,45,0,1,1630093406,1,1.0,50.0,1.0,-9.0,4.0,1258227 -3113971,1630222585,1,59,0,1,1630093407,1,1.0,55.0,1.0,-9.0,4.0,1258228 -3113972,1630222581,3,59,0,1,1630093408,1,1.0,40.0,1.0,-9.0,4.0,1258229 -3113973,1630222846,2,48,0,1,1630093409,2,1.0,40.0,1.0,-9.0,4.0,1258230 -3113974,1630222847,2,58,1,2,1630093409,1,6.0,-9.0,-9.0,-9.0,4.0,1258230 -3113975,1630222829,2,60,0,1,1630093410,1,1.0,84.0,1.0,-9.0,4.0,1258231 -3113976,1630222828,2,51,5,2,1630093410,2,4.0,50.0,1.0,-9.0,1.0,1258231 -3113977,1630222592,3,52,0,1,1630093411,2,1.0,40.0,1.0,-9.0,4.0,1258232 -3113978,1630222591,1,55,1,2,1630093411,1,1.0,40.0,1.0,-9.0,4.0,1258232 -3113979,1630222713,1,48,0,1,1630093412,1,1.0,45.0,1.0,-9.0,4.0,1258233 -3113980,1630222714,1,43,13,2,1630093412,1,1.0,40.0,1.0,-9.0,4.0,1258233 -3113981,1630223065,2,62,0,1,1630093413,1,6.0,-9.0,-9.0,-9.0,4.0,1258234 -3113982,1630222621,1,64,0,1,1630093414,1,6.0,-9.0,-9.0,-9.0,2.0,1258235 -3113983,1630223041,2,58,0,1,1630093415,1,6.0,40.0,4.0,-9.0,4.0,1258236 -3113984,1630223042,2,58,0,1,1630093416,1,6.0,40.0,4.0,-9.0,4.0,1258237 -3113985,1630223030,2,63,0,1,1630093417,1,1.0,40.0,1.0,-9.0,3.0,1258238 -3113986,1630222810,2,61,0,1,1630093418,2,1.0,40.0,1.0,-9.0,4.0,1258239 -3113987,1630222811,2,61,0,1,1630093419,2,1.0,40.0,1.0,-9.0,4.0,1258240 -3113988,1630223081,2,63,0,1,1630093420,1,6.0,-9.0,-9.0,-9.0,2.0,1258241 -3113989,1630222859,2,50,0,1,1630093421,2,1.0,40.0,1.0,-9.0,4.0,1258242 -3113990,1630222860,2,50,0,1,1630093422,2,1.0,40.0,1.0,-9.0,4.0,1258243 -3113991,1630222946,2,57,0,1,1630093423,2,1.0,88.0,2.0,-9.0,4.0,1258244 -3113992,1630222992,2,63,0,1,1630093424,2,1.0,40.0,1.0,-9.0,4.0,1258245 -3113993,1630222843,2,59,0,1,1630093425,2,1.0,45.0,1.0,-9.0,4.0,1258246 -3113994,1630222426,1,57,0,1,1630093426,2,1.0,30.0,1.0,-9.0,4.0,1258247 -3113995,1630222408,1,58,0,1,1630093427,2,1.0,55.0,1.0,-9.0,4.0,1258248 -3113996,1630222830,2,55,0,1,1630093428,2,1.0,55.0,1.0,-9.0,4.0,1258249 -3113997,1630222786,2,46,0,1,1630093429,2,1.0,60.0,1.0,-9.0,4.0,1258250 -3113998,1630223220,3,58,0,1,1630093430,1,1.0,35.0,3.0,-9.0,4.0,1258251 -3113999,1630223221,3,58,0,1,1630093431,1,1.0,35.0,3.0,-9.0,4.0,1258252 -3114000,1630223222,3,58,0,1,1630093432,1,1.0,35.0,3.0,-9.0,4.0,1258253 -3114001,1630222593,1,59,0,1,1630093433,1,1.0,60.0,1.0,-9.0,4.0,1258254 -3114002,1630222947,2,60,0,1,1630093434,2,6.0,14.0,4.0,-9.0,4.0,1258255 -3114003,1630223044,2,52,0,1,1630093435,1,3.0,-9.0,-9.0,-9.0,2.0,1258256 -3114004,1630222371,1,69,0,1,1630093436,2,6.0,-9.0,-9.0,-9.0,4.0,1258257 -3114005,1630222350,2,76,0,1,1630093437,2,6.0,-9.0,-9.0,-9.0,4.0,1258258 -3114006,1630222304,2,65,0,1,1630093438,2,6.0,-9.0,-9.0,16.0,4.0,1258259 -3114007,1630222374,1,84,0,1,1630093439,2,6.0,-9.0,-9.0,-9.0,4.0,1258260 -3114008,1630222327,2,71,0,1,1630093440,2,6.0,-9.0,-9.0,-9.0,4.0,1258261 -3114009,1630223258,1,77,0,1,1630093441,1,6.0,-9.0,-9.0,-9.0,2.0,1258262 -3114010,1630222391,1,72,0,1,1630093442,2,1.0,40.0,1.0,-9.0,4.0,1258263 -3114011,1630222321,2,72,0,1,1630093443,2,6.0,-9.0,-9.0,-9.0,4.0,1258264 -3114012,1630222246,2,70,0,1,1630093444,2,6.0,-9.0,-9.0,-9.0,4.0,1258265 -3114013,1630223252,1,16,0,1,1630093445,1,6.0,-9.0,-9.0,-9.0,-9.0,1258266 -3114014,1630223275,4,23,0,1,1630093446,2,6.0,-9.0,-9.0,16.0,4.0,1258267 -3114015,1630223276,4,23,0,1,1630093447,2,6.0,-9.0,-9.0,16.0,4.0,1258268 -3114016,1630222494,1,33,0,1,1630093448,2,1.0,50.0,1.0,-9.0,4.0,1258269 -3114017,1630222495,1,33,0,1,1630093449,2,1.0,50.0,1.0,-9.0,4.0,1258270 -3114018,1630222496,1,33,0,1,1630093450,2,1.0,50.0,1.0,-9.0,4.0,1258271 -3114019,1630222428,1,27,0,1,1630093451,1,1.0,50.0,1.0,-9.0,4.0,1258272 -3114020,1630222427,3,28,1,2,1630093451,2,6.0,45.0,4.0,-9.0,4.0,1258272 -3114021,1630223288,4,30,0,1,1630093452,1,1.0,45.0,1.0,-9.0,4.0,1258273 -3114022,1630223285,4,27,1,2,1630093452,2,1.0,40.0,1.0,-9.0,4.0,1258273 -3114023,1630223289,4,30,0,1,1630093453,1,1.0,45.0,1.0,-9.0,4.0,1258274 -3114024,1630223286,4,27,1,2,1630093453,2,1.0,40.0,1.0,-9.0,4.0,1258274 -3114025,1630223290,4,30,0,1,1630093454,1,1.0,45.0,1.0,-9.0,4.0,1258275 -3114026,1630223287,4,27,1,2,1630093454,2,1.0,40.0,1.0,-9.0,4.0,1258275 -3114027,1630223076,4,33,0,1,1630093455,2,1.0,55.0,1.0,-9.0,4.0,1258276 -3114028,1630223072,2,34,13,2,1630093455,1,1.0,40.0,4.0,16.0,4.0,1258276 -3114029,1630223077,4,33,0,1,1630093456,2,1.0,55.0,1.0,-9.0,4.0,1258277 -3114030,1630223073,2,34,13,2,1630093456,1,1.0,40.0,4.0,16.0,4.0,1258277 -3114031,1630223078,4,33,0,1,1630093457,2,1.0,55.0,1.0,-9.0,4.0,1258278 -3114032,1630223074,2,34,13,2,1630093457,1,1.0,40.0,4.0,16.0,4.0,1258278 -3114033,1630223079,4,33,0,1,1630093458,2,1.0,55.0,1.0,-9.0,4.0,1258279 -3114034,1630223075,2,34,13,2,1630093458,1,1.0,40.0,4.0,16.0,4.0,1258279 -3114035,1630222416,1,25,0,1,1630093459,2,1.0,45.0,1.0,16.0,4.0,1258280 -3114036,1630222421,4,25,1,2,1630093459,1,1.0,40.0,1.0,16.0,4.0,1258280 -3114037,1630222417,1,25,0,1,1630093460,2,1.0,45.0,1.0,16.0,4.0,1258281 -3114038,1630222422,4,25,1,2,1630093460,1,1.0,40.0,1.0,16.0,4.0,1258281 -3114039,1630222693,1,28,0,1,1630093461,1,1.0,25.0,1.0,-9.0,4.0,1258282 -3114040,1630222694,1,28,12,2,1630093461,1,1.0,45.0,1.0,-9.0,4.0,1258282 -3114041,1630222418,1,25,0,1,1630093462,2,1.0,45.0,1.0,16.0,4.0,1258283 -3114042,1630222423,4,25,1,2,1630093462,1,1.0,40.0,1.0,16.0,4.0,1258283 -3114043,1630222419,1,25,0,1,1630093463,2,1.0,45.0,1.0,16.0,4.0,1258284 -3114044,1630222424,4,25,1,2,1630093463,1,1.0,40.0,1.0,16.0,4.0,1258284 -3114045,1630222629,3,27,0,1,1630093464,1,1.0,70.0,1.0,-9.0,4.0,1258285 -3114046,1630222631,3,27,12,2,1630093464,1,1.0,70.0,1.0,-9.0,4.0,1258285 -3114047,1630222630,3,27,0,1,1630093465,1,1.0,70.0,1.0,-9.0,4.0,1258286 -3114048,1630222632,3,27,12,2,1630093465,1,1.0,70.0,1.0,-9.0,4.0,1258286 -3114049,1630223060,2,41,0,1,1630093466,1,3.0,50.0,4.0,-9.0,4.0,1258287 -3114050,1630222492,1,27,0,1,1630093467,2,6.0,37.0,5.0,16.0,4.0,1258288 -3114051,1630223133,2,27,0,1,1630093468,1,6.0,-9.0,-9.0,-9.0,2.0,1258289 -3114052,1630223316,4,44,0,1,1630093469,1,1.0,55.0,1.0,-9.0,4.0,1258290 -3114053,1630223317,4,44,0,1,1630093470,1,1.0,55.0,1.0,-9.0,4.0,1258291 -3114054,1630223318,4,44,0,1,1630093471,1,1.0,55.0,1.0,-9.0,4.0,1258292 -3114055,1630223319,4,44,0,1,1630093472,1,1.0,55.0,1.0,-9.0,4.0,1258293 -3114056,1630223364,4,33,0,1,1630093473,1,2.0,12.0,1.0,-9.0,4.0,1258294 -3114057,1630223320,4,44,0,1,1630093474,1,1.0,55.0,1.0,-9.0,4.0,1258295 -3114058,1630223365,4,33,0,1,1630093475,1,2.0,12.0,1.0,-9.0,4.0,1258296 -3114059,1630223338,4,27,0,1,1630093476,1,1.0,40.0,1.0,-9.0,4.0,1258297 -3114060,1630223321,4,44,0,1,1630093477,1,1.0,55.0,1.0,-9.0,4.0,1258298 -3114061,1630223339,4,27,0,1,1630093478,1,1.0,40.0,1.0,-9.0,4.0,1258299 -3114062,1630223322,4,44,0,1,1630093479,1,1.0,55.0,1.0,-9.0,4.0,1258300 -3114063,1630223323,4,44,0,1,1630093480,1,1.0,55.0,1.0,-9.0,4.0,1258301 -3114064,1630223324,4,44,0,1,1630093481,1,1.0,55.0,1.0,-9.0,4.0,1258302 -3114065,1630223340,4,27,0,1,1630093482,1,1.0,40.0,1.0,-9.0,4.0,1258303 -3114066,1630223344,4,30,0,1,1630093483,1,1.0,60.0,1.0,16.0,4.0,1258304 -3114067,1630223341,4,27,0,1,1630093484,1,1.0,40.0,1.0,-9.0,4.0,1258305 -3114068,1630223359,4,42,0,1,1630093485,1,1.0,40.0,3.0,-9.0,4.0,1258306 -3114069,1630223345,4,30,0,1,1630093486,1,1.0,60.0,1.0,16.0,4.0,1258307 -3114070,1630223366,4,33,0,1,1630093487,1,2.0,12.0,1.0,-9.0,4.0,1258308 -3114071,1630223346,4,30,0,1,1630093488,1,1.0,60.0,1.0,16.0,4.0,1258309 -3114072,1630223360,4,42,0,1,1630093489,1,1.0,40.0,3.0,-9.0,4.0,1258310 -3114073,1630223342,4,27,0,1,1630093490,1,1.0,40.0,1.0,-9.0,4.0,1258311 -3114074,1630223347,4,30,0,1,1630093491,1,1.0,60.0,1.0,16.0,4.0,1258312 -3114075,1630223325,4,44,0,1,1630093492,1,1.0,55.0,1.0,-9.0,4.0,1258313 -3114076,1630223367,4,33,0,1,1630093493,1,2.0,12.0,1.0,-9.0,4.0,1258314 -3114077,1630223117,2,35,0,1,1630093494,1,1.0,40.0,1.0,-9.0,2.0,1258315 -3114078,1630222770,2,26,0,1,1630093495,2,1.0,40.0,1.0,-9.0,4.0,1258316 -3114079,1630222964,2,28,0,1,1630093496,2,1.0,40.0,1.0,-9.0,4.0,1258317 -3114080,1630222794,2,34,0,1,1630093497,2,1.0,48.0,1.0,-9.0,4.0,1258318 -3114081,1630222746,2,26,0,1,1630093498,2,1.0,50.0,1.0,-9.0,4.0,1258319 -3114082,1630222838,2,25,0,1,1630093499,2,1.0,40.0,1.0,-9.0,4.0,1258320 -3114083,1630223011,2,30,0,1,1630093500,1,1.0,40.0,1.0,-9.0,4.0,1258321 -3114084,1630222981,2,34,0,1,1630093501,2,2.0,40.0,1.0,-9.0,4.0,1258322 -3114085,1630223043,2,44,0,1,1630093502,1,1.0,40.0,1.0,-9.0,4.0,1258323 -3114086,1630222878,2,27,0,1,1630093503,2,1.0,40.0,1.0,-9.0,4.0,1258324 -3114087,1630222771,2,26,0,1,1630093504,2,1.0,40.0,1.0,-9.0,4.0,1258325 -3114088,1630223012,2,30,0,1,1630093505,1,1.0,40.0,1.0,-9.0,4.0,1258326 -3114089,1630223070,2,34,0,1,1630093506,1,1.0,40.0,1.0,-9.0,4.0,1258327 -3114090,1630223026,2,42,0,1,1630093507,1,1.0,40.0,1.0,-9.0,4.0,1258328 -3114091,1630222912,2,29,0,1,1630093508,2,1.0,40.0,1.0,16.0,4.0,1258329 -3114092,1630222879,2,27,0,1,1630093509,2,1.0,40.0,1.0,-9.0,4.0,1258330 -3114093,1630222895,2,32,0,1,1630093510,2,1.0,70.0,1.0,-9.0,4.0,1258331 -3114094,1630222823,3,27,0,1,1630093511,2,1.0,65.0,1.0,-9.0,4.0,1258332 -3114095,1630223210,4,31,0,1,1630093512,1,1.0,60.0,1.0,-9.0,4.0,1258333 -3114096,1630223211,4,31,0,1,1630093513,1,1.0,60.0,1.0,-9.0,4.0,1258334 -3114097,1630223217,4,41,0,1,1630093514,1,1.0,37.0,1.0,16.0,4.0,1258335 -3114098,1630223218,4,41,0,1,1630093515,1,1.0,37.0,1.0,16.0,4.0,1258336 -3114099,1630223219,4,41,0,1,1630093516,1,1.0,37.0,1.0,16.0,4.0,1258337 -3114100,1630223212,4,31,0,1,1630093517,1,1.0,60.0,1.0,-9.0,4.0,1258338 -3114101,1630223213,4,31,0,1,1630093518,1,1.0,60.0,1.0,-9.0,4.0,1258339 -3114102,1630223214,4,31,0,1,1630093519,1,1.0,60.0,1.0,-9.0,4.0,1258340 -3114103,1630223215,4,31,0,1,1630093520,1,1.0,60.0,1.0,-9.0,4.0,1258341 -3114104,1630223247,3,34,0,1,1630093521,2,1.0,80.0,2.0,-9.0,4.0,1258342 -3114105,1630223248,3,34,0,1,1630093522,2,1.0,80.0,2.0,-9.0,4.0,1258343 -3114106,1630223249,3,34,0,1,1630093523,2,1.0,80.0,2.0,-9.0,4.0,1258344 -3114107,1630223250,3,34,0,1,1630093524,2,1.0,80.0,2.0,-9.0,4.0,1258345 -3114108,1630222476,1,26,0,1,1630093525,2,1.0,40.0,1.0,-9.0,4.0,1258346 -3114109,1630222707,1,26,0,1,1630093526,1,1.0,50.0,1.0,-9.0,4.0,1258347 -3114110,1630222619,1,29,0,1,1630093527,1,1.0,40.0,1.0,-9.0,2.0,1258348 -3114111,1630222622,1,34,0,1,1630093528,1,1.0,40.0,1.0,-9.0,4.0,1258349 -3114112,1630222505,1,33,0,1,1630093529,2,1.0,60.0,1.0,15.0,4.0,1258350 -3114113,1630222477,1,26,0,1,1630093530,2,1.0,40.0,1.0,-9.0,4.0,1258351 -3114114,1630222506,1,33,0,1,1630093531,2,1.0,60.0,1.0,15.0,4.0,1258352 -3114115,1630222524,1,31,0,1,1630093532,2,1.0,50.0,1.0,16.0,4.0,1258353 -3114116,1630222502,1,26,0,1,1630093533,2,1.0,40.0,1.0,-9.0,4.0,1258354 -3114117,1630222486,1,40,0,1,1630093534,2,1.0,60.0,1.0,-9.0,4.0,1258355 -3114118,1630222487,1,40,0,1,1630093535,2,1.0,60.0,1.0,-9.0,4.0,1258356 -3114119,1630222507,1,33,0,1,1630093536,2,1.0,60.0,1.0,15.0,4.0,1258357 -3114120,1630222525,1,31,0,1,1630093537,2,1.0,50.0,1.0,16.0,4.0,1258358 -3114121,1630222508,1,33,0,1,1630093538,2,1.0,60.0,1.0,15.0,4.0,1258359 -3114122,1630222509,1,33,0,1,1630093539,2,1.0,60.0,1.0,15.0,4.0,1258360 -3114123,1630222600,3,29,0,1,1630093540,1,1.0,43.0,1.0,-9.0,4.0,1258361 -3114124,1630222601,3,29,0,1,1630093541,1,1.0,43.0,1.0,-9.0,4.0,1258362 -3114125,1630222948,2,35,0,1,1630093542,2,1.0,40.0,1.0,15.0,4.0,1258363 -3114126,1630222949,2,35,0,1,1630093543,2,1.0,40.0,1.0,15.0,4.0,1258364 -3114127,1630222633,1,40,0,1,1630093544,1,1.0,50.0,1.0,-9.0,4.0,1258365 -3114128,1630222877,3,44,0,1,1630093545,2,1.0,40.0,1.0,-9.0,4.0,1258366 -3114129,1630222876,2,74,6,2,1630093545,1,6.0,-9.0,-9.0,-9.0,2.0,1258366 -3114130,1630222940,2,31,0,1,1630093546,2,1.0,40.0,1.0,-9.0,4.0,1258367 -3114131,1630222941,2,5,2,2,1630093546,2,-9.0,-9.0,-9.0,1.0,-9.0,1258367 -3114132,1630223224,4,29,0,1,1630093547,1,1.0,45.0,1.0,-9.0,4.0,1258368 -3114133,1630223225,4,26,1,2,1630093547,2,6.0,30.0,6.0,-9.0,4.0,1258368 -3114134,1630222637,1,26,0,1,1630093548,1,3.0,40.0,2.0,-9.0,4.0,1258369 -3114135,1630222638,1,22,12,2,1630093548,1,1.0,40.0,5.0,-9.0,4.0,1258369 -3114136,1630223284,4,30,0,1,1630093549,1,1.0,60.0,1.0,16.0,4.0,1258370 -3114137,1630223283,4,33,1,2,1630093549,2,1.0,60.0,1.0,16.0,4.0,1258370 -3114138,1630222691,1,26,0,1,1630093550,1,1.0,45.0,1.0,-9.0,4.0,1258371 -3114139,1630222692,4,25,13,2,1630093550,2,1.0,35.0,1.0,-9.0,4.0,1258371 -3114140,1630222722,1,29,0,1,1630093551,1,1.0,50.0,1.0,16.0,4.0,1258372 -3114141,1630222724,1,34,12,2,1630093551,1,1.0,40.0,1.0,16.0,4.0,1258372 -3114142,1630223326,4,25,0,1,1630093552,1,1.0,70.0,5.0,-9.0,2.0,1258373 -3114143,1630223327,4,25,0,1,1630093553,1,1.0,70.0,5.0,-9.0,2.0,1258374 -3114144,1630223328,4,25,0,1,1630093554,1,1.0,70.0,5.0,-9.0,2.0,1258375 -3114145,1630223329,4,25,0,1,1630093555,1,1.0,70.0,5.0,-9.0,2.0,1258376 -3114146,1630223330,4,25,0,1,1630093556,1,1.0,70.0,5.0,-9.0,2.0,1258377 -3114147,1630223331,4,25,0,1,1630093557,1,1.0,70.0,5.0,-9.0,2.0,1258378 -3114148,1630223332,4,25,0,1,1630093558,1,1.0,70.0,5.0,-9.0,2.0,1258379 -3114149,1630223333,4,25,0,1,1630093559,1,1.0,70.0,5.0,-9.0,2.0,1258380 -3114150,1630223334,4,25,0,1,1630093560,1,1.0,70.0,5.0,-9.0,2.0,1258381 -3114151,1630223335,4,25,0,1,1630093561,1,1.0,70.0,5.0,-9.0,2.0,1258382 -3114152,1630223336,4,25,0,1,1630093562,1,1.0,70.0,5.0,-9.0,2.0,1258383 -3114153,1630223138,2,42,0,1,1630093563,1,2.0,60.0,1.0,-9.0,2.0,1258384 -3114154,1630222960,2,36,0,1,1630093564,2,1.0,40.0,1.0,-9.0,4.0,1258385 -3114155,1630222961,2,36,0,1,1630093565,2,1.0,40.0,1.0,-9.0,4.0,1258386 -3114156,1630223139,2,42,0,1,1630093566,1,2.0,60.0,1.0,-9.0,2.0,1258387 -3114157,1630223022,2,31,0,1,1630093567,1,1.0,40.0,1.0,-9.0,4.0,1258388 -3114158,1630223095,2,34,0,1,1630093568,1,1.0,60.0,1.0,-9.0,4.0,1258389 -3114159,1630223140,2,42,0,1,1630093569,1,2.0,60.0,1.0,-9.0,2.0,1258390 -3114160,1630223096,2,34,0,1,1630093570,1,1.0,60.0,1.0,-9.0,4.0,1258391 -3114161,1630223097,2,34,0,1,1630093571,1,1.0,60.0,1.0,-9.0,4.0,1258392 -3114162,1630223045,2,29,0,1,1630093572,1,1.0,40.0,1.0,-9.0,4.0,1258393 -3114163,1630223023,2,31,0,1,1630093573,1,1.0,40.0,1.0,-9.0,4.0,1258394 -3114164,1630223098,2,34,0,1,1630093574,1,1.0,60.0,1.0,-9.0,4.0,1258395 -3114165,1630222985,2,41,0,1,1630093575,2,1.0,45.0,1.0,-9.0,4.0,1258396 -3114166,1630222986,2,41,0,1,1630093576,2,1.0,45.0,1.0,-9.0,4.0,1258397 -3114167,1630222962,2,36,0,1,1630093577,2,1.0,40.0,1.0,-9.0,4.0,1258398 -3114168,1630222586,1,26,0,1,1630093578,1,1.0,40.0,3.0,-9.0,4.0,1258399 -3114169,1630222635,1,25,0,1,1630093579,1,1.0,40.0,1.0,-9.0,4.0,1258400 -3114170,1630222662,1,27,0,1,1630093580,1,1.0,40.0,1.0,-9.0,4.0,1258401 -3114171,1630222512,1,36,0,1,1630093581,2,1.0,80.0,1.0,-9.0,4.0,1258402 -3114172,1630222513,1,36,0,1,1630093582,2,1.0,80.0,1.0,-9.0,4.0,1258403 -3114173,1630222514,1,36,0,1,1630093583,2,1.0,80.0,1.0,-9.0,4.0,1258404 -3114174,1630222515,1,36,0,1,1630093584,2,1.0,80.0,1.0,-9.0,4.0,1258405 -3114175,1630222482,1,32,0,1,1630093585,2,1.0,50.0,1.0,-9.0,4.0,1258406 -3114176,1630222587,1,26,0,1,1630093586,1,1.0,40.0,3.0,-9.0,4.0,1258407 -3114177,1630222483,1,32,0,1,1630093587,2,1.0,50.0,1.0,-9.0,4.0,1258408 -3114178,1630222663,1,27,0,1,1630093588,1,1.0,40.0,1.0,-9.0,4.0,1258409 -3114179,1630222484,1,32,0,1,1630093589,2,1.0,50.0,1.0,-9.0,4.0,1258410 -3114180,1630222643,1,27,0,1,1630093590,1,1.0,48.0,1.0,-9.0,4.0,1258411 -3114181,1630222485,1,32,0,1,1630093591,2,1.0,50.0,1.0,-9.0,4.0,1258412 -3114182,1630222516,1,36,0,1,1630093592,2,1.0,80.0,1.0,-9.0,4.0,1258413 -3114183,1630222644,1,27,0,1,1630093593,1,1.0,48.0,1.0,-9.0,4.0,1258414 -3114184,1630222636,1,25,0,1,1630093594,1,1.0,40.0,1.0,-9.0,4.0,1258415 -3114185,1630222517,1,36,0,1,1630093595,2,1.0,80.0,1.0,-9.0,4.0,1258416 -3114186,1630223032,2,36,0,1,1630093596,1,1.0,40.0,1.0,-9.0,4.0,1258417 -3114187,1630223033,2,36,0,1,1630093597,1,1.0,40.0,1.0,-9.0,4.0,1258418 -3114188,1630222616,1,39,0,1,1630093598,1,1.0,40.0,1.0,-9.0,4.0,1258419 -3114189,1630222652,1,40,0,1,1630093599,1,1.0,43.0,1.0,-9.0,4.0,1258420 -3114190,1630222617,1,39,0,1,1630093600,1,1.0,40.0,1.0,-9.0,4.0,1258421 -3114191,1630222653,1,40,0,1,1630093601,1,1.0,43.0,1.0,-9.0,4.0,1258422 -3114192,1630222654,1,40,0,1,1630093602,1,1.0,43.0,1.0,-9.0,4.0,1258423 -3114193,1630222618,1,39,0,1,1630093603,1,1.0,40.0,1.0,-9.0,4.0,1258424 -3114194,1630222434,1,37,0,1,1630093604,1,1.0,33.0,1.0,-9.0,4.0,1258425 -3114195,1630222433,1,27,13,2,1630093604,2,6.0,40.0,5.0,-9.0,4.0,1258425 -3114196,1630222447,1,29,0,1,1630093605,2,1.0,45.0,1.0,-9.0,4.0,1258426 -3114197,1630222449,1,29,1,2,1630093605,1,6.0,45.0,6.0,16.0,4.0,1258426 -3114198,1630223309,4,27,0,1,1630093606,1,1.0,80.0,1.0,-9.0,4.0,1258427 -3114199,1630223307,4,26,1,2,1630093606,2,1.0,80.0,3.0,-9.0,4.0,1258427 -3114200,1630222547,1,34,0,1,1630093607,1,1.0,17.0,3.0,-9.0,4.0,1258428 -3114201,1630222549,2,39,1,2,1630093607,2,1.0,45.0,1.0,-9.0,4.0,1258428 -3114202,1630223277,4,30,0,1,1630093608,2,1.0,44.0,1.0,-9.0,4.0,1258429 -3114203,1630223280,4,34,1,2,1630093608,1,1.0,40.0,2.0,-9.0,4.0,1258429 -3114204,1630223278,4,30,0,1,1630093609,2,1.0,44.0,1.0,-9.0,4.0,1258430 -3114205,1630223281,4,34,1,2,1630093609,1,1.0,40.0,2.0,-9.0,4.0,1258430 -3114206,1630223279,4,30,0,1,1630093610,2,1.0,44.0,1.0,-9.0,4.0,1258431 -3114207,1630223282,4,34,1,2,1630093610,1,1.0,40.0,2.0,-9.0,4.0,1258431 -3114208,1630222744,2,40,0,1,1630093611,2,1.0,40.0,1.0,-9.0,4.0,1258432 -3114209,1630222745,2,52,1,2,1630093611,1,1.0,40.0,1.0,-9.0,4.0,1258432 -3114210,1630222697,1,38,0,1,1630093612,1,1.0,40.0,1.0,-9.0,4.0,1258433 -3114211,1630222702,4,38,1,2,1630093612,2,1.0,40.0,1.0,-9.0,4.0,1258433 -3114212,1630222698,1,38,0,1,1630093613,1,1.0,40.0,1.0,-9.0,4.0,1258434 -3114213,1630222703,4,38,1,2,1630093613,2,1.0,40.0,1.0,-9.0,4.0,1258434 -3114214,1630222699,1,38,0,1,1630093614,1,1.0,40.0,1.0,-9.0,4.0,1258435 -3114215,1630222704,4,38,1,2,1630093614,2,1.0,40.0,1.0,-9.0,4.0,1258435 -3114216,1630222700,1,38,0,1,1630093615,1,1.0,40.0,1.0,-9.0,4.0,1258436 -3114217,1630222705,4,38,1,2,1630093615,2,1.0,40.0,1.0,-9.0,4.0,1258436 -3114218,1630222701,1,38,0,1,1630093616,1,1.0,40.0,1.0,-9.0,4.0,1258437 -3114219,1630222706,4,38,1,2,1630093616,2,1.0,40.0,1.0,-9.0,4.0,1258437 -3114220,1630223104,2,33,0,1,1630093617,1,3.0,-9.0,-9.0,15.0,4.0,1258438 -3114221,1630223361,4,26,0,1,1630093618,1,6.0,-9.0,-9.0,16.0,4.0,1258439 -3114222,1630223362,4,26,0,1,1630093619,1,6.0,-9.0,-9.0,16.0,4.0,1258440 -3114223,1630223035,2,37,0,1,1630093620,1,6.0,-9.0,-9.0,-9.0,4.0,1258441 -3114224,1630222861,2,44,0,1,1630093621,2,6.0,-9.0,-9.0,-9.0,4.0,1258442 -3114225,1630223111,2,29,0,1,1630093622,1,6.0,-9.0,-9.0,16.0,3.0,1258443 -3114226,1630223069,2,43,0,1,1630093623,1,6.0,40.0,1.0,15.0,4.0,1258444 -3114227,1630223141,2,38,0,1,1630093624,1,6.0,-9.0,-9.0,-9.0,4.0,1258445 -3114228,1630223046,2,35,0,1,1630093625,1,3.0,-9.0,-9.0,-9.0,4.0,1258446 -3114229,1630222902,2,41,0,1,1630093626,2,3.0,-9.0,-9.0,-9.0,4.0,1258447 -3114230,1630222769,2,26,0,1,1630093627,2,6.0,-9.0,-9.0,-9.0,4.0,1258448 -3114231,1630222837,2,42,0,1,1630093628,2,6.0,-9.0,-9.0,-9.0,4.0,1258449 -3114232,1630223197,4,40,0,1,1630093629,1,3.0,-9.0,-9.0,16.0,4.0,1258450 -3114233,1630223198,4,40,0,1,1630093630,1,3.0,-9.0,-9.0,16.0,4.0,1258451 -3114234,1630222590,1,29,0,1,1630093631,1,6.0,-9.0,-9.0,15.0,4.0,1258452 -3114235,1630222407,1,28,0,1,1630093632,2,6.0,-9.0,-9.0,-9.0,4.0,1258453 -3114236,1630222500,1,37,0,1,1630093633,2,6.0,-9.0,-9.0,16.0,4.0,1258454 -3114237,1630222874,2,39,0,1,1630093634,2,3.0,-9.0,-9.0,-9.0,4.0,1258455 -3114238,1630222926,2,28,0,1,1630093635,2,6.0,-9.0,-9.0,15.0,4.0,1258456 -3114239,1630222928,2,3,2,2,1630093635,1,-9.0,-9.0,-9.0,-9.0,-9.0,1258456 -3114240,1630223294,4,30,0,1,1630093636,2,1.0,40.0,1.0,-9.0,4.0,1258457 -3114241,1630223295,4,30,0,1,1630093637,2,1.0,40.0,1.0,-9.0,4.0,1258458 -3114242,1630223315,4,29,0,1,1630093638,1,1.0,20.0,1.0,16.0,4.0,1258459 -3114243,1630223296,4,30,0,1,1630093639,2,1.0,40.0,1.0,-9.0,4.0,1258460 -3114244,1630223297,4,30,0,1,1630093640,2,1.0,40.0,1.0,-9.0,4.0,1258461 -3114245,1630223298,4,30,0,1,1630093641,2,1.0,40.0,1.0,-9.0,4.0,1258462 -3114246,1630223299,4,30,0,1,1630093642,2,1.0,40.0,1.0,-9.0,4.0,1258463 -3114247,1630223300,4,30,0,1,1630093643,2,1.0,40.0,1.0,-9.0,4.0,1258464 -3114248,1630223301,4,30,0,1,1630093644,2,1.0,40.0,1.0,-9.0,4.0,1258465 -3114249,1630223094,2,33,0,1,1630093645,1,1.0,10.0,6.0,-9.0,4.0,1258466 -3114250,1630222935,2,29,0,1,1630093646,2,1.0,40.0,2.0,-9.0,4.0,1258467 -3114251,1630222957,2,27,0,1,1630093647,2,1.0,50.0,1.0,-9.0,4.0,1258468 -3114252,1630223082,2,29,0,1,1630093648,1,1.0,40.0,1.0,-9.0,4.0,1258469 -3114253,1630222679,1,33,0,1,1630093649,1,1.0,60.0,4.0,-9.0,4.0,1258470 -3114254,1630222684,1,35,0,1,1630093650,1,1.0,22.0,1.0,16.0,4.0,1258471 -3114255,1630222680,1,33,0,1,1630093651,1,1.0,60.0,4.0,-9.0,4.0,1258472 -3114256,1630222686,1,30,0,1,1630093652,1,1.0,50.0,1.0,-9.0,4.0,1258473 -3114257,1630222728,1,26,0,1,1630093653,1,1.0,60.0,4.0,-9.0,4.0,1258474 -3114258,1630222685,1,35,0,1,1630093654,1,1.0,22.0,1.0,16.0,4.0,1258475 -3114259,1630222518,1,26,0,1,1630093655,2,1.0,20.0,4.0,16.0,4.0,1258476 -3114260,1630222439,1,28,0,1,1630093656,2,1.0,50.0,1.0,16.0,4.0,1258477 -3114261,1630222971,2,36,0,1,1630093657,2,1.0,24.0,1.0,-9.0,4.0,1258478 -3114262,1630222972,2,14,2,2,1630093657,1,-9.0,-9.0,-9.0,10.0,-9.0,1258478 -3114263,1630222988,2,58,0,1,1630093658,2,1.0,23.0,2.0,-9.0,4.0,1258479 -3114264,1630222973,2,45,0,1,1630093659,2,1.0,40.0,1.0,-9.0,4.0,1258480 -3114265,1630222974,2,45,0,1,1630093660,2,1.0,40.0,1.0,-9.0,4.0,1258481 -3114266,1630222989,2,58,0,1,1630093661,2,1.0,23.0,2.0,-9.0,4.0,1258482 -3114267,1630222975,2,45,0,1,1630093662,2,1.0,40.0,1.0,-9.0,4.0,1258483 -3114268,1630223087,2,60,0,1,1630093663,1,1.0,40.0,1.0,-9.0,4.0,1258484 -3114269,1630222526,1,51,0,1,1630093664,2,1.0,40.0,1.0,16.0,4.0,1258485 -3114270,1630222732,1,59,0,1,1630093665,1,1.0,50.0,1.0,-9.0,4.0,1258486 -3114271,1630222527,1,51,0,1,1630093666,2,1.0,40.0,1.0,16.0,4.0,1258487 -3114272,1630222528,1,51,0,1,1630093667,2,1.0,40.0,1.0,16.0,4.0,1258488 -3114273,1630222529,1,51,0,1,1630093668,2,1.0,40.0,1.0,16.0,4.0,1258489 -3114274,1630222530,1,51,0,1,1630093669,2,1.0,40.0,1.0,16.0,4.0,1258490 -3114275,1630222726,1,57,0,1,1630093670,1,1.0,45.0,2.0,-9.0,4.0,1258491 -3114276,1630222733,1,59,0,1,1630093671,1,1.0,50.0,1.0,-9.0,4.0,1258492 -3114277,1630222531,1,51,0,1,1630093672,2,1.0,40.0,1.0,16.0,4.0,1258493 -3114278,1630222727,1,57,0,1,1630093673,1,1.0,45.0,2.0,-9.0,4.0,1258494 -3114279,1630222719,1,50,0,1,1630093674,1,1.0,60.0,1.0,-9.0,4.0,1258495 -3114280,1630223114,2,62,0,1,1630093675,1,1.0,30.0,3.0,-9.0,4.0,1258496 -3114281,1630223115,2,62,0,1,1630093676,1,1.0,30.0,3.0,-9.0,4.0,1258497 -3114282,1630222909,2,47,0,1,1630093677,2,1.0,40.0,1.0,-9.0,4.0,1258498 -3114283,1630222910,2,14,2,2,1630093677,2,-9.0,-9.0,-9.0,12.0,-9.0,1258498 -3114284,1630222759,2,49,0,1,1630093678,2,1.0,50.0,1.0,-9.0,4.0,1258499 -3114285,1630222760,2,43,1,2,1630093678,1,1.0,55.0,1.0,-9.0,4.0,1258499 -3114286,1630222480,1,54,0,1,1630093679,1,1.0,65.0,1.0,-9.0,4.0,1258500 -3114287,1630222478,1,45,1,2,1630093679,2,1.0,40.0,1.0,-9.0,4.0,1258500 -3114288,1630223031,2,64,0,1,1630093680,1,6.0,-9.0,-9.0,-9.0,2.0,1258501 -3114289,1630222765,2,61,0,1,1630093681,2,6.0,-9.0,-9.0,-9.0,4.0,1258502 -3114290,1630222766,2,61,0,1,1630093682,2,6.0,-9.0,-9.0,-9.0,4.0,1258503 -3114291,1630223054,2,64,0,1,1630093683,1,6.0,-9.0,-9.0,-9.0,4.0,1258504 -3114292,1630223020,2,60,0,1,1630093684,1,6.0,-9.0,-9.0,-9.0,4.0,1258505 -3114293,1630222767,2,61,0,1,1630093685,2,6.0,-9.0,-9.0,-9.0,4.0,1258506 -3114294,1630222645,1,62,0,1,1630093686,1,6.0,-9.0,-9.0,-9.0,2.0,1258507 -3114295,1630222646,1,62,0,1,1630093687,1,6.0,-9.0,-9.0,-9.0,2.0,1258508 -3114296,1630222923,2,64,0,1,1630093688,2,6.0,40.0,6.0,-9.0,4.0,1258509 -3114297,1630223369,4,51,0,1,1630093689,1,1.0,70.0,1.0,16.0,4.0,1258510 -3114298,1630223370,4,51,0,1,1630093690,1,1.0,70.0,1.0,16.0,4.0,1258511 -3114299,1630223371,4,51,0,1,1630093691,1,1.0,70.0,1.0,16.0,4.0,1258512 -3114300,1630223372,4,51,0,1,1630093692,1,1.0,70.0,1.0,16.0,4.0,1258513 -3114301,1630222958,2,61,0,1,1630093693,2,1.0,40.0,1.0,-9.0,2.0,1258514 -3114302,1630223024,2,59,0,1,1630093694,1,1.0,40.0,1.0,-9.0,4.0,1258515 -3114303,1630223004,2,50,0,1,1630093695,2,1.0,45.0,1.0,-9.0,4.0,1258516 -3114304,1630223013,2,53,0,1,1630093696,1,1.0,70.0,1.0,15.0,4.0,1258517 -3114305,1630222773,2,60,0,1,1630093697,2,1.0,40.0,1.0,-9.0,4.0,1258518 -3114306,1630223014,2,53,0,1,1630093698,1,1.0,70.0,1.0,15.0,4.0,1258519 -3114307,1630222772,2,55,0,1,1630093699,2,1.0,40.0,1.0,-9.0,4.0,1258520 -3114308,1630222959,2,61,0,1,1630093700,2,1.0,40.0,1.0,-9.0,2.0,1258521 -3114309,1630223127,2,46,0,1,1630093701,1,1.0,40.0,1.0,-9.0,4.0,1258522 -3114310,1630223102,2,60,0,1,1630093702,1,1.0,40.0,1.0,-9.0,4.0,1258523 -3114311,1630223123,2,60,0,1,1630093703,1,1.0,45.0,1.0,-9.0,4.0,1258524 -3114312,1630222795,2,64,0,1,1630093704,2,1.0,40.0,1.0,-9.0,4.0,1258525 -3114313,1630222825,2,54,0,1,1630093705,2,1.0,40.0,1.0,-9.0,4.0,1258526 -3114314,1630223027,2,63,0,1,1630093706,1,1.0,24.0,1.0,-9.0,2.0,1258527 -3114315,1630222796,2,64,0,1,1630093707,2,1.0,40.0,1.0,-9.0,4.0,1258528 -3114316,1630223010,2,46,0,1,1630093708,1,1.0,45.0,1.0,-9.0,4.0,1258529 -3114317,1630222821,2,47,0,1,1630093709,2,1.0,30.0,1.0,-9.0,4.0,1258530 -3114318,1630223090,2,56,0,1,1630093710,1,1.0,40.0,1.0,-9.0,4.0,1258531 -3114319,1630222978,2,54,0,1,1630093711,2,1.0,40.0,1.0,-9.0,4.0,1258532 -3114320,1630222826,2,61,0,1,1630093712,2,1.0,20.0,1.0,-9.0,4.0,1258533 -3114321,1630223028,2,63,0,1,1630093713,1,1.0,24.0,1.0,-9.0,2.0,1258534 -3114322,1630222437,1,63,0,1,1630093714,2,1.0,40.0,1.0,-9.0,4.0,1258535 -3114323,1630222413,1,60,0,1,1630093715,2,1.0,48.0,1.0,-9.0,4.0,1258536 -3114324,1630222438,1,63,0,1,1630093716,2,1.0,40.0,1.0,-9.0,4.0,1258537 -3114325,1630222610,1,52,0,1,1630093717,1,1.0,40.0,1.0,-9.0,4.0,1258538 -3114326,1630222731,1,64,0,1,1630093718,1,1.0,53.0,1.0,-9.0,4.0,1258539 -3114327,1630222660,3,54,0,1,1630093719,1,1.0,40.0,1.0,-9.0,4.0,1258540 -3114328,1630222661,3,54,0,1,1630093720,1,1.0,40.0,1.0,-9.0,4.0,1258541 -3114329,1630222899,2,46,0,1,1630093721,2,1.0,40.0,1.0,-9.0,4.0,1258542 -3114330,1630223055,2,60,0,1,1630093722,1,1.0,40.0,1.0,-9.0,4.0,1258543 -3114331,1630222623,1,57,0,1,1630093723,1,1.0,55.0,1.0,-9.0,4.0,1258544 -3114332,1630222817,2,51,0,1,1630093724,2,1.0,45.0,1.0,-9.0,4.0,1258545 -3114333,1630222819,2,20,2,2,1630093724,1,6.0,-9.0,-9.0,-9.0,4.0,1258545 -3114334,1630222818,2,51,0,1,1630093725,2,1.0,45.0,1.0,-9.0,4.0,1258546 -3114335,1630222968,2,60,0,1,1630093726,1,1.0,48.0,1.0,-9.0,4.0,1258547 -3114336,1630222967,2,60,1,2,1630093726,2,6.0,-9.0,-9.0,-9.0,4.0,1258547 -3114337,1630223047,2,57,0,1,1630093727,1,6.0,40.0,1.0,-9.0,4.0,1258548 -3114338,1630223048,2,57,0,1,1630093728,1,6.0,40.0,1.0,-9.0,4.0,1258549 -3114339,1630223049,2,57,0,1,1630093729,1,6.0,40.0,1.0,-9.0,4.0,1258550 -3114340,1630222869,2,63,0,1,1630093730,1,6.0,-9.0,-9.0,-9.0,4.0,1258551 -3114341,1630222868,2,62,1,2,1630093730,2,6.0,-9.0,-9.0,-9.0,4.0,1258551 -3114342,1630223343,4,45,0,1,1630093731,1,1.0,36.0,1.0,-9.0,4.0,1258552 -3114343,1630222862,2,56,0,1,1630093732,2,1.0,40.0,1.0,-9.0,4.0,1258553 -3114344,1630222864,2,62,0,1,1630093733,2,1.0,40.0,1.0,-9.0,4.0,1258554 -3114345,1630222865,2,62,0,1,1630093734,2,1.0,40.0,1.0,-9.0,4.0,1258555 -3114346,1630222866,2,62,0,1,1630093735,2,1.0,40.0,1.0,-9.0,4.0,1258556 -3114347,1630222867,2,62,0,1,1630093736,2,1.0,40.0,1.0,-9.0,4.0,1258557 -3114348,1630223093,2,61,0,1,1630093737,1,1.0,28.0,1.0,-9.0,4.0,1258558 -3114349,1630222751,2,61,0,1,1630093738,2,1.0,40.0,1.0,-9.0,4.0,1258559 -3114350,1630222863,2,56,0,1,1630093739,2,1.0,40.0,1.0,-9.0,4.0,1258560 -3114351,1630223063,2,62,0,1,1630093740,1,1.0,50.0,1.0,-9.0,2.0,1258561 -3114352,1630222405,1,57,0,1,1630093741,2,1.0,50.0,1.0,-9.0,4.0,1258562 -3114353,1630222451,1,55,0,1,1630093742,2,1.0,50.0,1.0,-9.0,4.0,1258563 -3114354,1630222534,1,48,0,1,1630093743,2,1.0,50.0,1.0,-9.0,4.0,1258564 -3114355,1630222452,1,55,0,1,1630093744,2,1.0,50.0,1.0,-9.0,4.0,1258565 -3114356,1630222535,1,48,0,1,1630093745,2,1.0,50.0,1.0,-9.0,4.0,1258566 -3114357,1630222536,1,48,0,1,1630093746,2,1.0,50.0,1.0,-9.0,4.0,1258567 -3114358,1630223018,2,48,0,1,1630093747,1,1.0,50.0,1.0,-9.0,4.0,1258568 -3114359,1630223019,2,48,0,1,1630093748,1,1.0,50.0,1.0,-9.0,4.0,1258569 -3114360,1630222551,1,63,0,1,1630093749,1,1.0,92.0,1.0,-9.0,4.0,1258570 -3114361,1630222552,1,63,0,1,1630093750,1,1.0,92.0,1.0,-9.0,4.0,1258571 -3114362,1630222924,2,45,0,1,1630093751,2,1.0,45.0,1.0,15.0,4.0,1258572 -3114363,1630222925,2,18,2,2,1630093751,1,1.0,40.0,1.0,-9.0,4.0,1258572 -3114364,1630222784,2,53,0,1,1630093752,1,1.0,40.0,1.0,-9.0,2.0,1258573 -3114365,1630222783,2,53,1,2,1630093752,2,2.0,40.0,1.0,-9.0,4.0,1258573 -3114366,1630223062,2,50,0,1,1630093753,1,3.0,-9.0,-9.0,-9.0,4.0,1258574 -3114367,1630223036,2,60,0,1,1630093754,1,3.0,-9.0,-9.0,-9.0,4.0,1258575 -3114368,1630223091,2,63,0,1,1630093755,1,6.0,-9.0,-9.0,-9.0,4.0,1258576 -3114369,1630223009,2,55,0,1,1630093756,1,6.0,-9.0,-9.0,-9.0,4.0,1258577 -3114370,1630223071,2,56,0,1,1630093757,1,6.0,-9.0,-9.0,-9.0,4.0,1258578 -3114371,1630222911,2,50,0,1,1630093758,2,6.0,-9.0,-9.0,-9.0,4.0,1258579 -3114372,1630223064,2,60,0,1,1630093759,1,6.0,-9.0,-9.0,-9.0,4.0,1258580 -3114373,1630223131,2,52,0,1,1630093760,1,6.0,-9.0,-9.0,-9.0,4.0,1258581 -3114374,1630223025,2,45,0,1,1630093761,1,6.0,55.0,4.0,-9.0,4.0,1258582 -3114375,1630222832,2,56,0,1,1630093762,2,6.0,-9.0,-9.0,-9.0,4.0,1258583 -3114376,1630223112,2,53,0,1,1630093763,1,6.0,-9.0,-9.0,-9.0,4.0,1258584 -3114377,1630222774,2,47,0,1,1630093764,2,6.0,-9.0,-9.0,15.0,4.0,1258585 -3114378,1630223132,2,52,0,1,1630093765,1,6.0,-9.0,-9.0,-9.0,4.0,1258586 -3114379,1630222805,2,53,0,1,1630093766,2,6.0,-9.0,-9.0,-9.0,4.0,1258587 -3114380,1630222775,2,47,0,1,1630093767,2,6.0,-9.0,-9.0,15.0,4.0,1258588 -3114381,1630223059,2,55,0,1,1630093768,1,6.0,-9.0,-9.0,-9.0,4.0,1258589 -3114382,1630223061,2,61,0,1,1630093769,1,6.0,-9.0,-9.0,-9.0,2.0,1258590 -3114383,1630223038,2,54,0,1,1630093770,1,6.0,45.0,5.0,-9.0,4.0,1258591 -3114384,1630223121,2,58,0,1,1630093771,1,6.0,-9.0,-9.0,-9.0,4.0,1258592 -3114385,1630223113,2,53,0,1,1630093772,1,6.0,-9.0,-9.0,-9.0,4.0,1258593 -3114386,1630223021,2,52,0,1,1630093773,1,3.0,-9.0,-9.0,-9.0,4.0,1258594 -3114387,1630222888,2,61,0,1,1630093774,2,6.0,-9.0,-9.0,-9.0,4.0,1258595 -3114388,1630222664,1,64,0,1,1630093775,1,6.0,12.0,5.0,-9.0,4.0,1258596 -3114389,1630223068,2,63,0,1,1630093776,1,6.0,-9.0,-9.0,-9.0,2.0,1258597 -3114390,1630222870,2,63,0,1,1630093777,2,6.0,-9.0,-9.0,-9.0,4.0,1258598 -3114391,1630222871,2,47,2,2,1630093777,1,6.0,-9.0,-9.0,-9.0,4.0,1258598 -3114392,1630223005,2,47,0,1,1630093778,2,1.0,40.0,1.0,-9.0,4.0,1258599 -3114393,1630223312,4,51,0,1,1630093779,2,1.0,40.0,1.0,-9.0,4.0,1258600 -3114394,1630223313,4,51,0,1,1630093780,2,1.0,40.0,1.0,-9.0,4.0,1258601 -3114395,1630223314,4,51,0,1,1630093781,2,1.0,40.0,1.0,-9.0,4.0,1258602 -3114396,1630222921,2,54,0,1,1630093782,2,1.0,40.0,5.0,-9.0,4.0,1258603 -3114397,1630223089,2,54,0,1,1630093783,1,1.0,40.0,1.0,-9.0,4.0,1258604 -3114398,1630222914,2,60,0,1,1630093784,2,1.0,40.0,1.0,-9.0,4.0,1258605 -3114399,1630222915,2,60,0,1,1630093785,2,1.0,40.0,1.0,-9.0,4.0,1258606 -3114400,1630222913,2,46,0,1,1630093786,2,1.0,30.0,3.0,15.0,4.0,1258607 -3114401,1630222880,2,55,0,1,1630093787,2,1.0,38.0,1.0,-9.0,4.0,1258608 -3114402,1630223236,4,50,0,1,1630093788,2,1.0,40.0,1.0,-9.0,4.0,1258609 -3114403,1630223226,3,51,0,1,1630093789,2,1.0,40.0,1.0,-9.0,4.0,1258610 -3114404,1630222687,1,55,0,1,1630093790,1,1.0,40.0,3.0,-9.0,4.0,1258611 -3114405,1630222696,1,48,0,1,1630093791,1,2.0,40.0,3.0,-9.0,4.0,1258612 -3114406,1630223037,2,51,0,1,1630093792,1,1.0,40.0,1.0,-9.0,4.0,1258613 -3114407,1630222936,2,57,0,1,1630093793,2,1.0,40.0,1.0,-9.0,4.0,1258614 -3114408,1630222937,2,48,5,2,1630093793,1,6.0,-9.0,-9.0,-9.0,4.0,1258614 -3114409,1630222333,2,70,0,1,1630093794,2,6.0,-9.0,-9.0,-9.0,4.0,1258615 -3114410,1630222347,2,73,0,1,1630093795,2,6.0,-9.0,-9.0,-9.0,4.0,1258616 -3114411,1630222334,2,70,0,1,1630093796,2,6.0,-9.0,-9.0,-9.0,4.0,1258617 -3114412,1630223187,2,77,0,1,1630093797,1,6.0,-9.0,-9.0,-9.0,2.0,1258618 -3114413,1630222335,2,70,0,1,1630093798,2,6.0,-9.0,-9.0,-9.0,4.0,1258619 -3114414,1630223188,2,77,0,1,1630093799,1,6.0,-9.0,-9.0,-9.0,2.0,1258620 -3114415,1630222336,2,70,0,1,1630093800,2,6.0,-9.0,-9.0,-9.0,4.0,1258621 -3114416,1630222348,2,73,0,1,1630093801,2,6.0,-9.0,-9.0,-9.0,4.0,1258622 -3114417,1630222337,2,70,0,1,1630093802,2,6.0,-9.0,-9.0,-9.0,4.0,1258623 -3114418,1630223148,2,80,0,1,1630093803,1,6.0,-9.0,-9.0,-9.0,4.0,1258624 -3114419,1630223189,2,77,0,1,1630093804,1,6.0,-9.0,-9.0,-9.0,2.0,1258625 -3114420,1630222338,2,70,0,1,1630093805,2,6.0,-9.0,-9.0,-9.0,4.0,1258626 -3114421,1630223190,2,77,0,1,1630093806,1,6.0,-9.0,-9.0,-9.0,2.0,1258627 -3114422,1630222339,2,70,0,1,1630093807,2,6.0,-9.0,-9.0,-9.0,4.0,1258628 -3114423,1630223191,2,77,0,1,1630093808,1,6.0,-9.0,-9.0,-9.0,2.0,1258629 -3114424,1630223149,2,80,0,1,1630093809,1,6.0,-9.0,-9.0,-9.0,4.0,1258630 -3114425,1630222349,2,73,0,1,1630093810,2,6.0,-9.0,-9.0,-9.0,4.0,1258631 -3114426,1630222340,2,70,0,1,1630093811,2,6.0,-9.0,-9.0,-9.0,4.0,1258632 -3114427,1630222341,2,70,0,1,1630093812,2,6.0,-9.0,-9.0,-9.0,4.0,1258633 -3114428,1630223150,2,80,0,1,1630093813,1,6.0,-9.0,-9.0,-9.0,4.0,1258634 -3114429,1630223151,2,80,0,1,1630093814,1,6.0,-9.0,-9.0,-9.0,4.0,1258635 -3114430,1630222308,2,69,0,1,1630093815,2,6.0,-9.0,-9.0,-9.0,4.0,1258636 -3114431,1630222310,2,65,1,2,1630093815,1,6.0,-9.0,-9.0,-9.0,4.0,1258636 -3114432,1630222309,2,69,0,1,1630093816,2,6.0,-9.0,-9.0,-9.0,4.0,1258637 -3114433,1630222311,2,65,1,2,1630093816,1,6.0,-9.0,-9.0,-9.0,4.0,1258637 -3114434,1630223254,1,69,0,1,1630093817,1,1.0,60.0,1.0,-9.0,4.0,1258638 -3114435,1630223255,1,69,0,1,1630093818,1,1.0,60.0,1.0,-9.0,4.0,1258639 -3114436,1630223259,1,67,0,1,1630093819,1,1.0,40.0,1.0,-9.0,4.0,1258640 -3114437,1630223260,1,67,0,1,1630093820,1,1.0,40.0,1.0,-9.0,4.0,1258641 -3114438,1630223270,1,68,0,1,1630093821,1,1.0,60.0,1.0,-9.0,4.0,1258642 -3114439,1630223271,1,68,0,1,1630093822,1,1.0,60.0,1.0,-9.0,4.0,1258643 -3114440,1630223261,1,67,0,1,1630093823,1,1.0,40.0,1.0,-9.0,4.0,1258644 -3114441,1630223272,1,68,0,1,1630093824,1,1.0,60.0,1.0,-9.0,4.0,1258645 -3114442,1630223256,1,69,0,1,1630093825,1,1.0,60.0,1.0,-9.0,4.0,1258646 -3114443,1630223262,1,67,0,1,1630093826,1,1.0,40.0,1.0,-9.0,4.0,1258647 -3114444,1630223263,1,67,0,1,1630093827,1,1.0,40.0,1.0,-9.0,4.0,1258648 -3114445,1630223257,1,69,0,1,1630093828,1,1.0,60.0,1.0,-9.0,4.0,1258649 -3114446,1630223273,1,68,0,1,1630093829,1,1.0,60.0,1.0,-9.0,4.0,1258650 -3114447,1630223274,1,68,0,1,1630093830,1,1.0,60.0,1.0,-9.0,4.0,1258651 -3114448,1630223264,1,67,0,1,1630093831,1,1.0,40.0,1.0,-9.0,4.0,1258652 -3114449,1630222261,2,70,0,1,1630093832,1,6.0,-9.0,-9.0,-9.0,2.0,1258653 -3114450,1630222259,2,68,1,2,1630093832,2,1.0,60.0,3.0,-9.0,4.0,1258653 -3114451,1630222262,2,70,0,1,1630093833,1,6.0,-9.0,-9.0,-9.0,2.0,1258654 -3114452,1630222260,2,68,1,2,1630093833,2,1.0,60.0,3.0,-9.0,4.0,1258654 -3114453,1630222384,1,65,0,1,1630093834,2,6.0,-9.0,-9.0,-9.0,4.0,1258655 -3114454,1630222387,1,77,1,2,1630093834,1,1.0,50.0,1.0,-9.0,4.0,1258655 -3114455,1630222385,1,65,0,1,1630093835,2,6.0,-9.0,-9.0,-9.0,4.0,1258656 -3114456,1630222388,1,77,1,2,1630093835,1,1.0,50.0,1.0,-9.0,4.0,1258656 -3114457,1630222257,2,87,0,1,1630093836,2,6.0,-9.0,-9.0,-9.0,4.0,1258657 -3114458,1630223170,2,65,0,1,1630093837,1,6.0,-9.0,-9.0,-9.0,2.0,1258658 -3114459,1630222278,2,74,0,1,1630093838,2,6.0,-9.0,-9.0,-9.0,4.0,1258659 -3114460,1630222279,2,74,0,1,1630093839,2,6.0,-9.0,-9.0,-9.0,4.0,1258660 -3114461,1630222359,2,68,0,1,1630093840,2,6.0,-9.0,-9.0,-9.0,4.0,1258661 -3114462,1630223196,2,66,0,1,1630093841,1,6.0,-9.0,-9.0,-9.0,4.0,1258662 -3114463,1630223165,2,66,0,1,1630093842,1,3.0,-9.0,-9.0,-9.0,4.0,1258663 -3114464,1630223166,2,66,0,1,1630093843,1,3.0,-9.0,-9.0,-9.0,4.0,1258664 -3114465,1630222280,2,74,0,1,1630093844,2,6.0,-9.0,-9.0,-9.0,4.0,1258665 -3114466,1630222281,2,74,0,1,1630093845,2,6.0,-9.0,-9.0,-9.0,4.0,1258666 -3114467,1630222297,2,87,0,1,1630093846,2,6.0,-9.0,-9.0,-9.0,4.0,1258667 -3114468,1630222324,2,76,0,1,1630093847,2,6.0,-9.0,-9.0,-9.0,4.0,1258668 -3114469,1630223173,2,69,0,1,1630093848,1,6.0,-9.0,-9.0,-9.0,2.0,1258669 -3114470,1630222298,2,87,0,1,1630093849,2,6.0,-9.0,-9.0,-9.0,4.0,1258670 -3114471,1630222282,2,74,0,1,1630093850,2,6.0,-9.0,-9.0,-9.0,4.0,1258671 -3114472,1630222360,2,68,0,1,1630093851,2,6.0,-9.0,-9.0,-9.0,4.0,1258672 -3114473,1630222283,2,74,0,1,1630093852,2,6.0,-9.0,-9.0,-9.0,4.0,1258673 -3114474,1630223253,1,66,0,1,1630093853,1,6.0,-9.0,-9.0,-9.0,4.0,1258674 -3114475,1630223266,1,66,0,1,1630093854,1,6.0,-9.0,-9.0,-9.0,2.0,1258675 -3114476,1630223267,1,66,0,1,1630093855,1,6.0,-9.0,-9.0,-9.0,2.0,1258676 -3114477,1630223268,1,66,0,1,1630093856,1,6.0,-9.0,-9.0,-9.0,2.0,1258677 -3114478,1630223167,2,66,0,1,1630093857,1,6.0,-9.0,-9.0,-9.0,4.0,1258678 -3114479,1630223154,2,73,0,1,1630093858,1,6.0,-9.0,-9.0,-9.0,4.0,1258679 -3114480,1630223168,2,66,0,1,1630093859,1,6.0,-9.0,-9.0,-9.0,4.0,1258680 -3114481,1630223155,2,73,0,1,1630093860,1,6.0,-9.0,-9.0,-9.0,4.0,1258681 -3114482,1630222250,2,74,0,1,1630093861,2,6.0,-9.0,-9.0,-9.0,4.0,1258682 -3114483,1630222251,2,74,0,1,1630093862,2,6.0,-9.0,-9.0,-9.0,4.0,1258683 -3114484,1630222253,2,46,2,2,1630093862,1,6.0,-9.0,-9.0,-9.0,4.0,1258683 -3114485,1630222287,2,65,0,1,1630093863,2,1.0,40.0,1.0,-9.0,4.0,1258684 -3114486,1630223184,2,66,0,1,1630093864,1,1.0,30.0,1.0,-9.0,2.0,1258685 -3114487,1630223185,2,66,0,1,1630093865,1,1.0,30.0,1.0,-9.0,2.0,1258686 -3114488,1630223186,2,66,0,1,1630093866,1,1.0,30.0,1.0,-9.0,2.0,1258687 -3114489,1630222247,2,75,0,1,1630093867,2,1.0,52.0,1.0,-9.0,4.0,1258688 -3114490,1630222325,2,75,0,1,1630093868,2,1.0,20.0,1.0,-9.0,4.0,1258689 -3114491,1630222326,2,62,13,2,1630093868,2,6.0,-9.0,-9.0,-9.0,4.0,1258689 -3114492,1630222369,1,69,0,1,1630093869,1,1.0,10.0,3.0,-9.0,4.0,1258690 -3114493,1630222368,1,68,12,2,1630093869,2,1.0,17.0,1.0,-9.0,4.0,1258690 -3114494,1630223160,2,72,0,1,1630093870,1,6.0,-9.0,-9.0,-9.0,4.0,1258691 -3114495,1630223161,2,72,0,1,1630093871,1,6.0,-9.0,-9.0,-9.0,4.0,1258692 -3114496,1630223162,2,72,0,1,1630093872,1,6.0,-9.0,-9.0,-9.0,4.0,1258693 -3114497,1630223163,2,72,0,1,1630093873,1,6.0,-9.0,-9.0,-9.0,4.0,1258694 -3114498,1630223174,2,66,0,1,1630093874,1,1.0,45.0,1.0,-9.0,4.0,1258695 -3114499,1630223175,2,66,0,1,1630093875,1,1.0,45.0,1.0,-9.0,4.0,1258696 -3114500,1630223178,2,67,0,1,1630093876,1,1.0,50.0,1.0,-9.0,4.0,1258697 -3114501,1630222329,2,69,0,1,1630093877,2,1.0,37.0,1.0,-9.0,4.0,1258698 -3114502,1630222330,2,69,0,1,1630093878,2,1.0,37.0,1.0,-9.0,4.0,1258699 -3114503,1630222331,2,69,0,1,1630093879,2,1.0,37.0,1.0,-9.0,4.0,1258700 -3114504,1630223179,2,67,0,1,1630093880,1,1.0,50.0,1.0,-9.0,4.0,1258701 -3114505,1630223176,2,66,0,1,1630093881,1,1.0,45.0,1.0,-9.0,4.0,1258702 -3114506,1630222856,2,69,0,1,1630093882,1,6.0,12.0,6.0,-9.0,2.0,1258703 -3114507,1630222855,2,61,1,2,1630093882,2,1.0,45.0,1.0,-9.0,4.0,1258703 -3114508,1630222343,2,68,0,1,1630093883,2,3.0,40.0,3.0,-9.0,4.0,1258704 -3114509,1630222345,2,52,1,2,1630093883,1,1.0,40.0,1.0,-9.0,4.0,1258704 -3114510,1630222312,2,83,0,1,1630093884,2,6.0,-9.0,-9.0,-9.0,4.0,1258705 -3114511,1630222292,2,65,0,1,1630093885,2,6.0,-9.0,-9.0,-9.0,4.0,1258706 -3114512,1630222299,2,74,0,1,1630093886,2,6.0,-9.0,-9.0,-9.0,4.0,1258707 -3114513,1630222307,2,68,0,1,1630093887,2,6.0,16.0,6.0,-9.0,3.0,1258708 -3114514,1630222315,2,72,0,1,1630093888,2,6.0,-9.0,-9.0,-9.0,4.0,1258709 -3114515,1630222300,2,74,0,1,1630093889,2,6.0,-9.0,-9.0,-9.0,4.0,1258710 -3114516,1630222362,2,79,0,1,1630093890,2,6.0,-9.0,-9.0,-9.0,4.0,1258711 -3114517,1630223152,2,69,0,1,1630093891,1,6.0,-9.0,-9.0,-9.0,4.0,1258712 -3114518,1630222284,2,88,0,1,1630093892,2,6.0,-9.0,-9.0,-9.0,4.0,1258713 -3114519,1630222342,2,72,0,1,1630093893,2,6.0,-9.0,-9.0,-9.0,4.0,1258714 -3114520,1630222392,1,76,0,1,1630093894,2,6.0,-9.0,-9.0,-9.0,4.0,1258715 -3114521,1630222322,2,68,0,1,1630093895,2,6.0,-9.0,-9.0,-9.0,4.0,1258716 -3114522,1630223153,2,83,0,1,1630093896,1,6.0,-9.0,-9.0,-9.0,4.0,1258717 -3114523,1630222293,2,75,0,1,1630093897,2,6.0,-9.0,-9.0,-9.0,4.0,1258718 -3114524,1630223144,2,86,0,1,1630093898,1,6.0,-9.0,-9.0,-9.0,2.0,1258719 -3114525,1630222351,2,69,0,1,1630093899,2,6.0,-9.0,-9.0,-9.0,4.0,1258720 -3114526,1630222254,2,69,0,1,1630093900,2,6.0,-9.0,-9.0,-9.0,4.0,1258721 -3114527,1630222263,2,71,0,1,1630093901,2,6.0,-9.0,-9.0,-9.0,4.0,1258722 -3114528,1630223192,2,65,0,1,1630093902,1,6.0,-9.0,-9.0,-9.0,2.0,1258723 -3114529,1630223193,2,65,0,1,1630093903,1,6.0,-9.0,-9.0,-9.0,2.0,1258724 -3114530,1630222365,2,78,0,1,1630093904,2,6.0,-9.0,-9.0,-9.0,4.0,1258725 -3114531,1630222366,2,66,0,1,1630093905,2,6.0,-9.0,-9.0,-9.0,4.0,1258726 -3114532,1630222294,2,65,0,1,1630093906,2,6.0,-9.0,-9.0,-9.0,4.0,1258727 -3114533,1630222352,2,69,0,1,1630093907,2,6.0,-9.0,-9.0,-9.0,4.0,1258728 -3114534,1630222285,2,69,0,1,1630093908,2,6.0,-9.0,-9.0,-9.0,4.0,1258729 -3114535,1630222286,2,69,0,1,1630093909,2,6.0,-9.0,-9.0,-9.0,4.0,1258730 -3114536,1630222353,2,69,0,1,1630093910,2,6.0,-9.0,-9.0,-9.0,4.0,1258731 -3114537,1630223171,2,75,0,1,1630093911,1,6.0,-9.0,-9.0,-9.0,2.0,1258732 -3114538,1630223145,2,86,0,1,1630093912,1,6.0,-9.0,-9.0,-9.0,2.0,1258733 -3114539,1630222313,2,79,0,1,1630093913,2,6.0,-9.0,-9.0,-9.0,4.0,1258734 -3114540,1630223146,2,86,0,1,1630093914,1,6.0,-9.0,-9.0,-9.0,2.0,1258735 -3114541,1630222305,2,77,0,1,1630093915,2,6.0,-9.0,-9.0,-9.0,4.0,1258736 -3114542,1630222248,2,67,0,1,1630093916,2,6.0,-9.0,-9.0,-9.0,4.0,1258737 -3114543,1630223172,2,75,0,1,1630093917,1,6.0,-9.0,-9.0,-9.0,2.0,1258738 -3114544,1630223147,2,86,0,1,1630093918,1,6.0,-9.0,-9.0,-9.0,2.0,1258739 -3114545,1630222295,2,65,0,1,1630093919,2,6.0,-9.0,-9.0,-9.0,4.0,1258740 -3114546,1630223164,2,76,0,1,1630093920,1,3.0,-9.0,-9.0,-9.0,4.0,1258741 -3114547,1630222314,2,66,0,1,1630093921,2,6.0,-9.0,-9.0,-9.0,4.0,1258742 -3114548,1630222249,2,67,0,1,1630093922,2,6.0,-9.0,-9.0,-9.0,4.0,1258743 -3114549,1630222332,2,69,0,1,1630093923,2,6.0,-9.0,-9.0,-9.0,4.0,1258744 -3114550,1630222266,2,84,0,1,1630093924,2,6.0,-9.0,-9.0,-9.0,4.0,1258745 -3114551,1630223182,2,94,0,1,1630093925,1,6.0,-9.0,-9.0,-9.0,2.0,1258746 -3114552,1630222256,2,66,0,1,1630093926,2,6.0,-9.0,-9.0,-9.0,4.0,1258747 -3114553,1630223157,2,87,0,1,1630093927,1,6.0,-9.0,-9.0,-9.0,2.0,1258748 -3114554,1630222303,2,69,0,1,1630093928,2,6.0,-9.0,-9.0,-9.0,4.0,1258749 -3114555,1630223159,2,83,0,1,1630093929,1,6.0,-9.0,-9.0,-9.0,2.0,1258750 -3114556,1630222306,2,81,0,1,1630093930,2,6.0,-9.0,-9.0,-9.0,4.0,1258751 -3114557,1630223373,4,65,0,1,1630093931,1,6.0,-9.0,-9.0,-9.0,4.0,1258752 -3114558,1630223376,3,67,0,1,1630093932,1,6.0,-9.0,-9.0,-9.0,2.0,1258753 -3114559,1630223377,3,67,0,1,1630093933,1,6.0,-9.0,-9.0,-9.0,2.0,1258754 -3114560,1630223378,3,67,0,1,1630093934,1,6.0,-9.0,-9.0,-9.0,2.0,1258755 -3114561,1630222377,1,69,0,1,1630093935,2,6.0,-9.0,-9.0,-9.0,4.0,1258756 -3114562,1630223183,2,71,0,1,1630093936,1,6.0,-9.0,-9.0,-9.0,2.0,1258757 -3114563,1630222354,2,68,0,1,1630093937,2,6.0,-9.0,-9.0,-9.0,4.0,1258758 -3114564,1630222355,2,55,1,2,1630093937,1,6.0,-9.0,-9.0,-9.0,2.0,1258758 -3114565,1630222255,2,67,0,1,1630093938,2,1.0,8.0,1.0,-9.0,4.0,1258759 -3114566,1630222611,1,24,0,1,1630093939,1,3.0,47.0,3.0,15.0,4.0,1258760 -3114567,1630222612,1,24,0,1,1630093940,1,3.0,47.0,3.0,15.0,4.0,1258761 -3114568,1630222613,1,24,0,1,1630093941,1,3.0,47.0,3.0,15.0,4.0,1258762 -3114569,1630223348,4,23,0,1,1630093942,1,1.0,80.0,1.0,-9.0,4.0,1258763 -3114570,1630223349,4,23,0,1,1630093943,1,1.0,80.0,1.0,-9.0,4.0,1258764 -3114571,1630223350,4,23,0,1,1630093944,1,1.0,80.0,1.0,-9.0,4.0,1258765 -3114572,1630223351,4,23,0,1,1630093945,1,1.0,80.0,1.0,-9.0,4.0,1258766 -3114573,1630223352,4,23,0,1,1630093946,1,1.0,80.0,1.0,-9.0,4.0,1258767 -3114574,1630223353,4,23,0,1,1630093947,1,1.0,80.0,1.0,-9.0,4.0,1258768 -3114575,1630223354,4,23,0,1,1630093948,1,1.0,80.0,1.0,-9.0,4.0,1258769 -3114576,1630223355,4,23,0,1,1630093949,1,1.0,80.0,1.0,-9.0,4.0,1258770 -3114577,1630223356,4,23,0,1,1630093950,1,1.0,80.0,1.0,-9.0,4.0,1258771 -3114578,1630223357,4,23,0,1,1630093951,1,1.0,80.0,1.0,-9.0,4.0,1258772 -3114579,1630223080,2,20,0,1,1630093952,1,1.0,40.0,1.0,-9.0,4.0,1258773 -3114580,1630223099,2,23,0,1,1630093953,1,1.0,40.0,3.0,-9.0,4.0,1258774 -3114581,1630223100,2,23,0,1,1630093954,1,1.0,40.0,3.0,-9.0,4.0,1258775 -3114582,1630222656,1,23,0,1,1630093955,1,1.0,40.0,1.0,-9.0,4.0,1258776 -3114583,1630222657,1,23,0,1,1630093956,1,1.0,40.0,1.0,-9.0,4.0,1258777 -3114584,1630222544,1,24,0,1,1630093957,1,1.0,45.0,1.0,-9.0,4.0,1258778 -3114585,1630222545,1,24,0,1,1630093958,1,1.0,45.0,1.0,-9.0,4.0,1258779 -3114586,1630223050,2,21,0,1,1630093959,1,1.0,48.0,1.0,-9.0,4.0,1258780 -3114587,1630223052,2,24,15,2,1630093959,1,6.0,-9.0,-9.0,-9.0,4.0,1258780 -3114588,1630223242,4,24,0,1,1630093960,2,1.0,45.0,1.0,-9.0,4.0,1258781 -3114589,1630223244,4,2,2,2,1630093960,1,-9.0,-9.0,-9.0,-9.0,-9.0,1258781 -3114590,1630222440,1,24,0,1,1630093961,2,1.0,50.0,1.0,-9.0,4.0,1258782 -3114591,1630222606,1,24,0,1,1630093962,1,1.0,55.0,1.0,-9.0,4.0,1258783 -3114592,1630222607,1,24,0,1,1630093963,1,1.0,55.0,1.0,-9.0,4.0,1258784 -3114593,1630222441,1,24,0,1,1630093964,2,1.0,50.0,1.0,-9.0,4.0,1258785 -3114594,1630222442,1,24,0,1,1630093965,2,1.0,50.0,1.0,-9.0,4.0,1258786 -3114595,1630222608,1,24,0,1,1630093966,1,1.0,55.0,1.0,-9.0,4.0,1258787 -3114596,1630222443,1,24,0,1,1630093967,2,1.0,50.0,1.0,-9.0,4.0,1258788 -3114597,1630222444,1,24,0,1,1630093968,2,1.0,50.0,1.0,-9.0,4.0,1258789 -3114598,1630222445,1,24,0,1,1630093969,2,1.0,50.0,1.0,-9.0,4.0,1258790 -3114599,1630222446,1,24,0,1,1630093970,2,1.0,50.0,1.0,-9.0,4.0,1258791 -3114600,1630222429,1,22,0,1,1630093971,2,2.0,40.0,1.0,16.0,4.0,1258792 -3114601,1630222430,1,27,13,2,1630093971,1,1.0,60.0,1.0,-9.0,4.0,1258792 -3114602,1630222648,1,24,0,1,1630093972,1,1.0,40.0,1.0,-9.0,4.0,1258793 -3114603,1630222650,1,24,12,2,1630093972,1,1.0,40.0,1.0,-9.0,4.0,1258793 -3114604,1630222649,1,24,0,1,1630093973,1,1.0,40.0,1.0,-9.0,4.0,1258794 -3114605,1630222651,1,24,12,2,1630093973,1,1.0,40.0,1.0,-9.0,4.0,1258794 -3114606,1630222468,1,23,0,1,1630093974,2,1.0,45.0,1.0,-9.0,4.0,1258795 -3114607,1630222471,1,23,12,2,1630093974,2,1.0,24.0,1.0,-9.0,4.0,1258795 -3114608,1630222469,1,23,0,1,1630093975,2,1.0,45.0,1.0,-9.0,4.0,1258796 -3114609,1630222472,1,23,12,2,1630093975,2,1.0,24.0,1.0,-9.0,4.0,1258796 -3114610,1630223006,2,23,0,1,1630093976,2,6.0,-9.0,-9.0,-9.0,4.0,1258797 -3114611,1630222603,1,22,0,1,1630093977,1,3.0,-9.0,-9.0,15.0,4.0,1258798 -3114612,1630222554,1,24,0,1,1630093978,1,6.0,-9.0,-9.0,15.0,4.0,1258799 -3114613,1630222604,1,22,0,1,1630093979,1,3.0,-9.0,-9.0,15.0,4.0,1258800 -3114614,1630222665,1,24,0,1,1630093980,1,3.0,50.0,5.0,-9.0,4.0,1258801 -3114615,1630222709,1,20,0,1,1630093981,1,6.0,35.0,5.0,15.0,4.0,1258802 -3114616,1630222605,1,22,0,1,1630093982,1,3.0,-9.0,-9.0,15.0,4.0,1258803 -3114617,1630222666,1,24,0,1,1630093983,1,3.0,50.0,5.0,-9.0,4.0,1258804 -3114618,1630222710,1,20,0,1,1630093984,1,6.0,35.0,5.0,15.0,4.0,1258805 -3114619,1630222491,1,24,0,1,1630093985,2,6.0,40.0,6.0,16.0,4.0,1258806 -3114620,1630222711,1,20,0,1,1630093986,1,6.0,35.0,5.0,15.0,4.0,1258807 -3114621,1630223230,4,23,0,1,1630093987,2,6.0,-9.0,-9.0,16.0,4.0,1258808 -3114622,1630223232,4,24,15,2,1630093987,2,6.0,-9.0,-9.0,16.0,4.0,1258808 -3114623,1630223228,4,24,15,3,1630093987,2,6.0,-9.0,-9.0,16.0,4.0,1258808 -3114624,1630222510,1,24,0,1,1630093988,2,6.0,8.0,6.0,16.0,4.0,1258809 -3114625,1630223303,4,22,0,1,1630093989,2,1.0,25.0,1.0,15.0,4.0,1258810 -3114626,1630223304,4,22,0,1,1630093990,2,1.0,25.0,1.0,15.0,4.0,1258811 -3114627,1630223305,4,22,0,1,1630093991,2,1.0,25.0,1.0,15.0,4.0,1258812 -3114628,1630223306,4,22,0,1,1630093992,2,1.0,25.0,1.0,15.0,4.0,1258813 -3114629,1630223039,2,24,0,1,1630093993,1,1.0,40.0,1.0,-9.0,4.0,1258814 -3114630,1630223040,2,24,0,1,1630093994,1,1.0,40.0,1.0,-9.0,4.0,1258815 -3114631,1630223203,4,22,0,1,1630093995,1,2.0,20.0,4.0,16.0,4.0,1258816 -3114632,1630223238,3,23,0,1,1630093996,2,1.0,40.0,1.0,-9.0,4.0,1258817 -3114633,1630223239,3,23,0,1,1630093997,2,1.0,40.0,1.0,-9.0,4.0,1258818 -3114634,1630223240,3,23,0,1,1630093998,2,1.0,40.0,1.0,-9.0,4.0,1258819 -3114635,1630222498,1,24,0,1,1630093999,2,1.0,24.0,1.0,-9.0,4.0,1258820 -3114636,1630222583,1,22,0,1,1630094000,1,1.0,40.0,3.0,-9.0,4.0,1258821 -3114637,1630222584,1,22,0,1,1630094001,1,1.0,40.0,3.0,-9.0,4.0,1258822 -3114638,1630222681,1,23,0,1,1630094002,1,1.0,40.0,3.0,15.0,4.0,1258823 -3114639,1630222990,2,23,0,1,1630094003,2,1.0,40.0,1.0,15.0,4.0,1258824 -3114640,1630222465,4,40,0,1,1630094004,1,1.0,60.0,1.0,-9.0,4.0,1258825 -3114641,1630222461,1,33,13,2,1630094004,2,1.0,40.0,1.0,-9.0,4.0,1258825 -3114642,1630222245,2,70,0,1,1630094005,2,6.0,-9.0,-9.0,-9.0,2.0,1258826 -3114643,1630222269,2,65,0,1,1630094006,2,6.0,30.0,5.0,-9.0,4.0,1258827 -3114644,1630222922,2,48,0,1,1630094007,2,1.0,40.0,1.0,15.0,4.0,1258828 -3114645,1630223003,2,41,0,1,1630094008,1,1.0,40.0,1.0,-9.0,2.0,1258829 -3114646,1630223001,2,43,1,2,1630094008,2,1.0,30.0,1.0,-9.0,4.0,1258829 -3114647,1630223002,2,17,2,3,1630094008,1,6.0,-9.0,-9.0,14.0,4.0,1258829 -3114648,1630222258,2,75,0,1,1630094009,2,6.0,-9.0,-9.0,-9.0,4.0,1258830 -3114649,1630222454,1,20,0,1,1630094010,2,1.0,30.0,3.0,15.0,4.0,1258831 -3114650,1630222455,1,21,12,2,1630094010,2,6.0,30.0,4.0,15.0,4.0,1258831 -3114651,1630222655,1,40,0,1,1630094011,1,1.0,43.0,1.0,-9.0,4.0,1258832 -3114652,1630222849,2,63,0,1,1630094012,1,6.0,20.0,6.0,-9.0,4.0,1258833 -3114653,1630222848,2,59,1,2,1630094012,2,6.0,-9.0,-9.0,-9.0,4.0,1258833 -3114654,1630223379,3,67,0,1,1630094013,1,6.0,-9.0,-9.0,-9.0,2.0,1258834 -3114655,1630222361,2,71,0,1,1630094014,2,6.0,-9.0,-9.0,-9.0,4.0,1258835 -3114656,1630222432,1,52,0,1,1630094015,1,1.0,84.0,1.0,-9.0,4.0,1258836 -3114657,1630222431,3,56,1,2,1630094015,2,6.0,-9.0,-9.0,-9.0,4.0,1258836 -3114658,1630222420,1,25,0,1,1630094016,2,1.0,45.0,1.0,16.0,4.0,1258837 -3114659,1630222425,4,25,1,2,1630094016,1,1.0,40.0,1.0,16.0,4.0,1258837 -3114660,1630222553,1,63,0,1,1630094017,1,1.0,92.0,1.0,-9.0,4.0,1258838 -3114661,1630222984,3,35,0,1,1630094018,2,3.0,30.0,5.0,-9.0,4.0,1258839 -3114662,1630223118,2,57,0,1,1630094019,1,1.0,40.0,1.0,15.0,2.0,1258840 -3114663,1630223119,2,35,2,2,1630094019,1,1.0,40.0,1.0,-9.0,4.0,1258840 -3114664,1630223029,2,54,0,1,1630094020,1,6.0,60.0,4.0,-9.0,2.0,1258841 -3114665,1630222414,1,60,0,1,1630094021,2,1.0,48.0,1.0,-9.0,4.0,1258842 -3114666,1630223269,1,66,0,1,1630094022,1,6.0,-9.0,-9.0,-9.0,2.0,1258843 -3114667,1630222357,2,73,0,1,1630094023,2,6.0,-9.0,-9.0,-9.0,4.0,1258844 -3114668,1630223374,4,65,0,1,1630094024,1,6.0,-9.0,-9.0,-9.0,4.0,1258845 -3114669,1630223251,3,34,0,1,1630094025,2,1.0,80.0,2.0,-9.0,4.0,1258846 -3114670,1630223107,2,56,0,1,1630094026,1,1.0,40.0,1.0,-9.0,4.0,1258847 -3114671,1630223375,3,69,0,1,1630094027,1,1.0,40.0,1.0,-9.0,4.0,1258848 -3114672,1630222995,2,43,0,1,1630094028,2,1.0,40.0,1.0,15.0,4.0,1258849 -3114673,1630222996,2,19,2,2,1630094028,1,3.0,36.0,6.0,15.0,4.0,1258849 -3114674,1630222562,3,40,0,1,1630094029,1,1.0,55.0,1.0,-9.0,4.0,1258850 -3114675,1630222563,2,41,11,2,1630094029,2,1.0,50.0,1.0,16.0,4.0,1258850 -3114676,1630222564,2,5,11,3,1630094029,2,-9.0,-9.0,-9.0,1.0,-9.0,1258850 -3114677,1630223223,3,58,0,1,1630094030,1,1.0,35.0,3.0,-9.0,4.0,1258851 -3114678,1630222903,2,52,0,1,1630094031,2,1.0,50.0,1.0,-9.0,2.0,1258852 -3114679,1630222905,4,18,14,2,1630094031,1,6.0,-9.0,-9.0,14.0,4.0,1258852 -3114680,1630223241,3,23,0,1,1630094032,2,1.0,40.0,1.0,-9.0,4.0,1258853 -3114681,1630222378,1,69,0,1,1630094033,2,6.0,-9.0,-9.0,-9.0,4.0,1258854 -3114682,1630222814,2,46,0,1,1630094034,2,1.0,50.0,1.0,-9.0,4.0,1258855 -3114683,1630222987,2,23,0,1,1630094035,2,3.0,35.0,6.0,-9.0,4.0,1258856 -3114684,1630222582,3,59,0,1,1630094036,1,1.0,40.0,1.0,-9.0,4.0,1258857 -3114685,1630223204,4,22,0,1,1630094037,1,2.0,20.0,4.0,16.0,4.0,1258858 -3114686,1630223128,2,50,0,1,1630094038,1,1.0,40.0,1.0,-9.0,4.0,1258859 -3114687,1630223246,4,63,0,1,1630094039,2,6.0,-9.0,-9.0,-9.0,4.0,1258860 -3114688,1630223209,4,39,0,1,1630094040,1,1.0,40.0,1.0,-9.0,4.0,1258861 -3114689,1630222943,2,31,0,1,1630094041,2,3.0,40.0,3.0,-9.0,4.0,1258862 -3114690,1630222945,2,39,1,2,1630094041,1,1.0,40.0,1.0,-9.0,4.0,1258862 -3114691,1630222376,1,73,0,1,1630094042,2,6.0,-9.0,-9.0,-9.0,4.0,1258863 -3114692,1630222594,1,59,0,1,1630094043,1,1.0,60.0,1.0,-9.0,4.0,1258864 -3114693,1630222748,2,49,0,1,1630094044,1,1.0,40.0,1.0,-9.0,4.0,1258865 -3114694,1630222747,2,49,1,2,1630094044,2,3.0,-9.0,-9.0,-9.0,3.0,1258865 -3114695,1630222323,2,65,0,1,1630094045,2,6.0,-9.0,-9.0,-9.0,4.0,1258866 -3114696,1630222565,1,29,0,1,1630094046,1,6.0,40.0,3.0,16.0,4.0,1258867 -3114697,1630222410,1,25,0,1,1630094047,2,3.0,20.0,5.0,-9.0,4.0,1258868 -3114698,1630222411,1,23,12,2,1630094047,2,1.0,45.0,1.0,16.0,4.0,1258868 -3114699,1630222642,4,41,0,1,1630094048,2,1.0,40.0,1.0,-9.0,4.0,1258869 -3114700,1630222640,1,41,1,2,1630094048,1,1.0,40.0,5.0,-9.0,4.0,1258869 -3114701,1630222296,2,65,0,1,1630094049,2,6.0,-9.0,-9.0,-9.0,4.0,1258870 -3114702,1630222301,2,65,0,1,1630094050,2,6.0,-9.0,-9.0,-9.0,4.0,1258871 -3114703,1630222955,2,38,0,1,1630094051,2,1.0,36.0,1.0,-9.0,4.0,1258872 -3114704,1630222956,2,4,2,2,1630094051,2,-9.0,-9.0,-9.0,1.0,-9.0,1258872 -3114705,1630222801,2,42,0,1,1630094052,2,1.0,42.0,1.0,-9.0,4.0,1258873 -3114706,1630222802,2,13,2,2,1630094052,2,-9.0,-9.0,-9.0,10.0,-9.0,1258873 -3114707,1630222546,1,24,0,1,1630094053,1,1.0,45.0,1.0,-9.0,4.0,1258874 -3114708,1630223156,2,73,0,1,1630094054,1,6.0,-9.0,-9.0,-9.0,4.0,1258875 -3114709,1630223124,2,60,0,1,1630094055,1,1.0,45.0,1.0,-9.0,4.0,1258876 -3114710,1630222977,2,30,0,1,1630094056,1,1.0,40.0,1.0,15.0,4.0,1258877 -3114711,1630222976,2,27,15,2,1630094056,2,1.0,40.0,1.0,15.0,4.0,1258877 -3114712,1630222839,2,48,0,1,1630094057,2,3.0,40.0,2.0,-9.0,4.0,1258878 -3114713,1630222840,2,60,13,2,1630094057,1,6.0,-9.0,-9.0,-9.0,4.0,1258878 -3114714,1630223116,2,62,0,1,1630094058,1,1.0,30.0,3.0,-9.0,4.0,1258879 -3114715,1630222708,1,58,0,1,1630094059,1,1.0,55.0,1.0,-9.0,4.0,1258880 -3114716,1630222983,2,64,0,1,1630094060,1,6.0,-9.0,-9.0,-9.0,4.0,1258881 -3114717,1630222589,1,54,0,1,1630094061,1,3.0,30.0,6.0,-9.0,4.0,1258882 -3114718,1630222763,2,37,0,1,1630094062,2,1.0,50.0,1.0,-9.0,4.0,1258883 -3114719,1630222764,2,0,2,2,1630094062,1,-9.0,-9.0,-9.0,-9.0,-9.0,1258883 -3114720,1630222991,2,23,0,1,1630094063,2,1.0,40.0,1.0,15.0,4.0,1258884 -3114721,1630223103,2,42,0,1,1630094064,1,1.0,40.0,1.0,-9.0,4.0,1258885 -3114722,1630222403,1,48,0,1,1630094065,2,2.0,55.0,4.0,-9.0,4.0,1258886 -3114723,1630222404,3,29,12,2,1630094065,1,1.0,38.0,1.0,-9.0,4.0,1258886 -3114724,1630222997,2,56,0,1,1630094066,2,1.0,40.0,1.0,-9.0,4.0,1258887 -3114725,1630222998,2,27,2,2,1630094066,1,3.0,24.0,6.0,-9.0,4.0,1258887 -3114726,1630222609,1,24,0,1,1630094067,1,1.0,55.0,1.0,-9.0,4.0,1258888 -3114727,1630223302,4,30,0,1,1630094068,2,1.0,40.0,1.0,-9.0,4.0,1258889 -3114728,1630222375,1,84,0,1,1630094069,2,6.0,-9.0,-9.0,-9.0,4.0,1258890 -3114729,1630222409,1,58,0,1,1630094070,2,1.0,55.0,1.0,-9.0,4.0,1258891 -3114730,1630222824,3,27,0,1,1630094071,2,1.0,65.0,1.0,-9.0,4.0,1258892 -3114731,1630222782,2,69,0,1,1630094072,1,6.0,-9.0,-9.0,-9.0,2.0,1258893 -3114732,1630222781,2,55,1,2,1630094072,2,3.0,40.0,3.0,-9.0,3.0,1258893 -3114733,1630223177,2,66,0,1,1630094073,1,1.0,45.0,1.0,-9.0,4.0,1258894 -3114734,1630223243,4,24,0,1,1630094074,2,1.0,45.0,1.0,-9.0,4.0,1258895 -3114735,1630223245,4,2,2,2,1630094074,1,-9.0,-9.0,-9.0,-9.0,-9.0,1258895 -3114736,1630222626,4,28,0,1,1630094075,1,6.0,-9.0,-9.0,16.0,4.0,1258896 -3114737,1630222625,1,25,12,2,1630094075,1,6.0,-9.0,-9.0,16.0,4.0,1258896 -3114738,1630222752,2,61,0,1,1630094076,2,1.0,40.0,1.0,-9.0,4.0,1258897 -3114739,1630222793,2,57,0,1,1630094077,1,6.0,32.0,5.0,-9.0,4.0,1258898 -3114740,1630222792,2,55,1,2,1630094077,2,6.0,-9.0,-9.0,-9.0,4.0,1258898 -3114741,1630222892,2,52,0,1,1630094078,1,1.0,40.0,1.0,-9.0,2.0,1258899 -3114742,1630222891,2,50,1,2,1630094078,2,1.0,30.0,1.0,-9.0,4.0,1258899 -3114743,1630222538,1,27,0,1,1630094079,1,1.0,45.0,1.0,-9.0,4.0,1258900 -3114744,1630222537,1,28,1,2,1630094079,2,1.0,52.0,4.0,-9.0,4.0,1258900 -3114745,1630222647,1,62,0,1,1630094080,1,6.0,-9.0,-9.0,-9.0,2.0,1258901 -3114746,1630222386,1,65,0,1,1630094081,2,6.0,-9.0,-9.0,-9.0,4.0,1258902 -3114747,1630222389,1,77,1,2,1630094081,1,1.0,50.0,1.0,-9.0,4.0,1258902 -3114748,1630222466,1,56,0,1,1630094082,2,1.0,35.0,1.0,-9.0,4.0,1258903 -3114749,1630222467,1,67,1,2,1630094082,1,6.0,-9.0,-9.0,-9.0,2.0,1258903 -3114750,1630222845,2,77,0,1,1630094083,1,6.0,-9.0,-9.0,-9.0,4.0,1258904 -3114751,1630222844,2,64,5,2,1630094083,2,6.0,-9.0,-9.0,-9.0,4.0,1258904 -3114752,1630222501,1,37,0,1,1630094084,2,6.0,-9.0,-9.0,16.0,4.0,1258905 -3114753,1630222900,2,26,0,1,1630094085,2,1.0,50.0,1.0,-9.0,4.0,1258906 -3114754,1630222901,2,27,13,2,1630094085,1,1.0,40.0,1.0,-9.0,4.0,1258906 -3114755,1630222415,1,59,0,1,1630094086,2,1.0,50.0,1.0,-9.0,4.0,1258907 -3114756,1630222816,2,57,0,1,1630094087,1,1.0,40.0,1.0,-9.0,4.0,1258908 -3114757,1630222815,2,54,1,2,1630094087,2,6.0,-9.0,-9.0,-9.0,4.0,1258908 -3114758,1630222833,2,30,0,1,1630094088,2,3.0,-9.0,-9.0,-9.0,4.0,1258909 -3114759,1630222834,2,25,10,2,1630094088,1,3.0,36.0,5.0,-9.0,4.0,1258909 -3114760,1630222318,4,74,0,1,1630094089,1,6.0,-9.0,-9.0,-9.0,2.0,1258910 -3114761,1630222316,2,74,1,2,1630094089,2,6.0,-9.0,-9.0,-9.0,4.0,1258910 -3114762,1630222317,2,15,7,3,1630094089,2,-9.0,-9.0,-9.0,12.0,-9.0,1258910 -3114763,1630223110,2,73,0,1,1630094090,1,6.0,-9.0,-9.0,-9.0,4.0,1258911 -3114764,1630223108,2,37,2,2,1630094090,1,1.0,40.0,1.0,-9.0,4.0,1258911 -3114765,1630223109,2,11,7,3,1630094090,2,-9.0,-9.0,-9.0,7.0,-9.0,1258911 -3114766,1630222470,1,23,0,1,1630094091,2,1.0,45.0,1.0,-9.0,4.0,1258912 -3114767,1630222473,1,23,12,2,1630094091,2,1.0,24.0,1.0,-9.0,4.0,1258912 -3114768,1630223363,4,26,0,1,1630094092,1,6.0,-9.0,-9.0,16.0,4.0,1258913 -3114769,1630222548,1,34,0,1,1630094093,1,1.0,17.0,3.0,-9.0,4.0,1258914 -3114770,1630222550,2,39,1,2,1630094093,2,1.0,45.0,1.0,-9.0,4.0,1258914 -3114771,1630222800,2,59,0,1,1630094094,2,1.0,40.0,4.0,-9.0,4.0,1258915 -3114772,1630222397,1,51,0,1,1630094095,2,6.0,-9.0,-9.0,-9.0,2.0,1258916 -3114773,1630222933,2,39,0,1,1630094096,2,1.0,40.0,1.0,-9.0,4.0,1258917 -3114774,1630222934,2,36,1,2,1630094096,1,3.0,40.0,6.0,-9.0,4.0,1258917 -3114775,1630222803,2,46,0,1,1630094097,2,1.0,40.0,1.0,15.0,4.0,1258918 -3114776,1630222804,2,16,2,2,1630094097,2,6.0,4.0,6.0,13.0,-9.0,1258918 -3114777,1630222790,2,59,0,1,1630094098,2,6.0,-9.0,-9.0,-9.0,4.0,1258919 -3114778,1630222791,2,16,7,2,1630094098,1,6.0,-9.0,-9.0,13.0,-9.0,1258919 -3114779,1630222364,2,73,0,1,1630094099,1,1.0,4.0,5.0,-9.0,4.0,1258920 -3114780,1630222896,2,26,0,1,1630094100,2,3.0,-9.0,-9.0,-9.0,4.0,1258921 -3114781,1630222897,2,8,2,2,1630094100,1,-9.0,-9.0,-9.0,4.0,-9.0,1258921 -3114782,1630222898,2,2,2,3,1630094100,2,-9.0,-9.0,-9.0,-9.0,-9.0,1258921 -3114783,1630222379,1,72,0,1,1630094101,2,1.0,15.0,3.0,-9.0,4.0,1258922 -3114784,1630222481,1,54,0,1,1630094102,1,1.0,65.0,1.0,-9.0,4.0,1258923 -3114785,1630222479,1,45,1,2,1630094102,2,1.0,40.0,1.0,-9.0,4.0,1258923 -3114786,1630223058,2,30,0,1,1630094103,1,3.0,36.0,5.0,-9.0,4.0,1258924 -3114787,1630222370,1,66,0,1,1630094104,2,6.0,-9.0,-9.0,-9.0,4.0,1258925 -3114788,1630222916,2,47,0,1,1630094105,2,2.0,60.0,3.0,-9.0,4.0,1258926 -3114789,1630222435,1,64,0,1,1630094106,2,6.0,-9.0,-9.0,-9.0,4.0,1258927 -3114790,1630222275,2,73,0,1,1630094107,2,6.0,-9.0,-9.0,-9.0,4.0,1258928 -3114791,1630222721,3,30,0,1,1630094108,1,1.0,45.0,1.0,-9.0,4.0,1258929 -3114792,1630222716,1,33,0,1,1630094109,1,1.0,44.0,1.0,-9.0,4.0,1258930 -3114793,1630222276,2,74,0,1,1630094110,2,6.0,-9.0,-9.0,-9.0,4.0,1258931 -3114794,1630222277,2,93,6,2,1630094110,2,6.0,-9.0,-9.0,-9.0,4.0,1258931 -3114795,1630222499,1,24,0,1,1630094111,2,1.0,24.0,1.0,-9.0,4.0,1258932 -3114796,1630222850,2,23,0,1,1630094112,2,1.0,40.0,1.0,-9.0,4.0,1258933 -3114797,1630222851,2,6,2,2,1630094112,1,-9.0,-9.0,-9.0,3.0,-9.0,1258933 -3114798,1630222852,2,3,2,3,1630094112,2,-9.0,-9.0,-9.0,1.0,-9.0,1258933 -3114799,1630222356,2,65,0,1,1630094113,2,6.0,-9.0,-9.0,-9.0,4.0,1258934 -3114800,1630222841,2,22,0,1,1630094114,2,1.0,37.0,2.0,-9.0,4.0,1258935 -3114801,1630222842,2,2,2,2,1630094114,2,-9.0,-9.0,-9.0,-9.0,-9.0,1258935 -3114802,1630222927,2,28,0,1,1630094115,2,6.0,-9.0,-9.0,15.0,4.0,1258936 -3114803,1630222929,2,3,2,2,1630094115,1,-9.0,-9.0,-9.0,-9.0,-9.0,1258936 -3114804,1630222758,2,47,0,1,1630094116,1,2.0,40.0,1.0,-9.0,2.0,1258937 -3114805,1630222757,2,52,1,2,1630094116,2,1.0,16.0,6.0,-9.0,4.0,1258937 -3114806,1630222453,1,55,0,1,1630094117,2,1.0,50.0,1.0,-9.0,4.0,1258938 -3114807,1630223008,2,36,0,1,1630094118,1,1.0,48.0,1.0,-9.0,4.0,1258939 -3114808,1630223007,2,4,2,2,1630094118,1,-9.0,-9.0,-9.0,1.0,-9.0,1258939 -3114809,1630222390,1,68,0,1,1630094119,2,1.0,40.0,1.0,-9.0,4.0,1258940 -3114810,1630223234,4,60,0,1,1630094120,2,1.0,49.0,1.0,-9.0,4.0,1258941 -3114811,1630222965,2,28,0,1,1630094121,2,6.0,40.0,1.0,15.0,4.0,1258942 -3114812,1630222966,2,23,5,2,1630094121,2,6.0,-9.0,-9.0,-9.0,4.0,1258942 -3114813,1630223067,2,54,0,1,1630094122,1,1.0,40.0,1.0,-9.0,4.0,1258943 -3114814,1630223083,2,29,0,1,1630094123,1,1.0,40.0,1.0,-9.0,4.0,1258944 -3114815,1630222493,1,27,0,1,1630094124,2,6.0,37.0,5.0,16.0,4.0,1258945 -3114816,1630222889,2,59,0,1,1630094125,2,1.0,40.0,1.0,-9.0,4.0,1258946 -3114817,1630223015,2,53,0,1,1630094126,1,6.0,-9.0,-9.0,-9.0,4.0,1258947 -3114818,1630222920,2,40,0,1,1630094127,2,1.0,60.0,3.0,-9.0,4.0,1258948 -3114819,1630222939,2,64,0,1,1630094128,1,1.0,32.0,1.0,-9.0,2.0,1258949 -3114820,1630222938,2,61,1,2,1630094128,2,6.0,-9.0,-9.0,-9.0,4.0,1258949 -3114821,1630223227,3,51,0,1,1630094129,2,1.0,40.0,1.0,-9.0,4.0,1258950 -3114822,1630223134,2,27,0,1,1630094130,1,6.0,-9.0,-9.0,-9.0,2.0,1258951 -3114823,1630223265,1,67,0,1,1630094131,1,1.0,40.0,1.0,-9.0,4.0,1258952 -3114824,1630223066,2,62,0,1,1630094132,1,6.0,-9.0,-9.0,-9.0,4.0,1258953 -3114825,1630222406,1,60,0,1,1630094133,2,6.0,-9.0,-9.0,-9.0,4.0,1258954 -3114826,1630222768,2,24,0,1,1630094134,2,6.0,10.0,6.0,15.0,4.0,1258955 -3114827,1630223358,4,23,0,1,1630094135,1,1.0,80.0,1.0,-9.0,4.0,1258956 -3114828,1630222682,1,30,0,1,1630094136,1,1.0,40.0,4.0,-9.0,4.0,1258957 -3114829,1630222950,2,43,0,1,1630094137,2,1.0,40.0,1.0,-9.0,2.0,1258958 -3114830,1630222951,2,11,2,2,1630094137,1,-9.0,-9.0,-9.0,8.0,-9.0,1258958 -3114831,1630223034,2,36,0,1,1630094138,1,1.0,40.0,1.0,-9.0,4.0,1258959 -3114832,1630222634,1,40,0,1,1630094139,1,1.0,50.0,1.0,-9.0,4.0,1258960 -3114833,1630222787,2,31,0,1,1630094140,2,1.0,30.0,1.0,15.0,4.0,1258961 -3114834,1630222789,2,7,2,2,1630094140,2,-9.0,-9.0,-9.0,4.0,-9.0,1258961 -3114835,1630222788,2,3,2,3,1630094140,1,-9.0,-9.0,-9.0,1.0,-9.0,1258961 -3114836,1630223101,2,23,0,1,1630094141,1,1.0,40.0,3.0,-9.0,4.0,1258962 -3114837,1630223368,4,33,0,1,1630094142,1,2.0,12.0,1.0,-9.0,4.0,1258963 -3114838,1630223231,4,23,0,1,1630094143,2,6.0,-9.0,-9.0,16.0,4.0,1258964 -3114839,1630223233,4,24,15,2,1630094143,2,6.0,-9.0,-9.0,16.0,4.0,1258964 -3114840,1630223229,4,24,15,3,1630094143,2,6.0,-9.0,-9.0,16.0,4.0,1258964 -3114841,1630222659,1,28,0,1,1630094144,1,1.0,60.0,1.0,16.0,4.0,1258965 -3114842,1630223126,2,54,0,1,1630094145,1,6.0,-9.0,-9.0,15.0,4.0,1258966 -3114843,1630222532,1,51,0,1,1630094146,2,1.0,40.0,1.0,16.0,4.0,1258967 -3114844,1630223180,2,65,0,1,1630094147,1,1.0,25.0,3.0,-9.0,4.0,1258968 -3114845,1630223181,4,56,1,2,1630094147,2,6.0,-9.0,-9.0,-9.0,4.0,1258968 -3114846,1630222884,2,69,0,1,1630094148,1,6.0,-9.0,-9.0,-9.0,4.0,1258969 -3114847,1630222883,2,52,1,2,1630094148,2,1.0,35.0,1.0,-9.0,4.0,1258969 -3114848,1630222822,2,57,0,1,1630094149,2,6.0,-9.0,-9.0,-9.0,4.0,1258970 -3114849,1630222344,2,68,0,1,1630094150,2,3.0,40.0,3.0,-9.0,4.0,1258971 -3114850,1630222346,2,52,1,2,1630094150,1,1.0,40.0,1.0,-9.0,4.0,1258971 -3114851,1630223237,4,50,0,1,1630094151,2,1.0,40.0,1.0,-9.0,4.0,1258972 -3114852,1630223235,3,51,0,1,1630094152,2,6.0,-9.0,-9.0,-9.0,4.0,1258973 -3114853,1630222761,2,53,0,1,1630094153,2,1.0,35.0,1.0,-9.0,4.0,1258974 -3114854,1630222302,2,67,0,1,1630094154,2,1.0,40.0,1.0,-9.0,4.0,1258975 -3114855,1630222580,4,29,0,1,1630094155,2,1.0,80.0,1.0,-9.0,4.0,1258976 -3114856,1630222574,1,26,13,2,1630094155,1,3.0,40.0,4.0,16.0,4.0,1258976 -3114857,1630222873,2,31,0,1,1630094156,2,1.0,50.0,1.0,-9.0,4.0,1258977 -3114858,1630222268,2,56,0,1,1630094157,2,6.0,-9.0,-9.0,-9.0,2.0,1258978 -3114859,1630222267,2,74,6,2,1630094157,2,6.0,-9.0,-9.0,-9.0,4.0,1258978 -3114860,1630222755,2,54,0,1,1630094158,2,6.0,-9.0,-9.0,-9.0,4.0,1258979 -3114861,1630222756,2,34,2,2,1630094158,1,3.0,-9.0,-9.0,-9.0,4.0,1258979 -3114862,1630223143,4,75,0,1,1630094159,2,6.0,-9.0,-9.0,-9.0,4.0,1258980 -3114863,1630222396,1,49,0,1,1630094160,1,1.0,80.0,1.0,-9.0,4.0,1258981 -3114864,1630222395,1,40,1,2,1630094160,2,3.0,-9.0,-9.0,-9.0,4.0,1258981 -3114865,1630222890,2,26,0,1,1630094161,2,1.0,40.0,1.0,-9.0,4.0,1258982 -3114866,1630222806,2,29,0,1,1630094162,2,6.0,-9.0,-9.0,-9.0,4.0,1258983 -3114867,1630222807,2,32,12,2,1630094162,1,2.0,40.0,4.0,-9.0,4.0,1258983 -3114868,1630222777,2,26,0,1,1630094163,1,1.0,40.0,1.0,-9.0,4.0,1258984 -3114869,1630222776,2,25,13,2,1630094163,2,6.0,-9.0,-9.0,-9.0,4.0,1258984 -3114870,1630222979,2,50,0,1,1630094164,2,1.0,40.0,1.0,-9.0,4.0,1258985 -3114871,1630222980,2,17,14,2,1630094164,2,6.0,-9.0,-9.0,13.0,4.0,1258985 -3114872,1630223199,4,40,0,1,1630094165,1,3.0,-9.0,-9.0,16.0,4.0,1258986 -3114873,1630223200,4,62,0,1,1630094166,1,6.0,-9.0,-9.0,-9.0,4.0,1258987 -3114874,1630222741,1,21,0,1,1630094167,1,1.0,20.0,3.0,15.0,4.0,1258988 -3114875,1630222742,1,22,12,2,1630094167,1,6.0,-9.0,-9.0,15.0,4.0,1258988 -3114876,1630222743,1,21,12,3,1630094167,1,6.0,20.0,5.0,15.0,4.0,1258988 -3114877,1630222474,1,63,0,1,1630094168,2,6.0,-9.0,-9.0,-9.0,4.0,1258989 -3114878,1630222729,1,22,0,1,1630094169,1,6.0,-9.0,-9.0,15.0,4.0,1258990 -3114879,1630222730,1,24,11,2,1630094169,1,3.0,-9.0,-9.0,15.0,4.0,1258990 -3114880,1630222695,1,57,0,1,1630094170,1,1.0,60.0,1.0,-9.0,4.0,1258991 -3114881,1630223158,2,72,0,1,1630094171,1,1.0,30.0,1.0,-9.0,4.0,1258992 -3114882,1630222812,2,34,0,1,1630094172,2,1.0,40.0,1.0,-9.0,4.0,1258993 -3114883,1630222813,2,33,1,2,1630094172,1,1.0,40.0,1.0,-9.0,4.0,1258993 -3114884,1630222857,2,28,0,1,1630094173,2,1.0,40.0,5.0,16.0,4.0,1258994 -3114885,1630222858,2,29,12,2,1630094173,2,1.0,40.0,1.0,-9.0,4.0,1258994 -3114886,1630222372,1,65,0,1,1630094174,2,6.0,-9.0,-9.0,-9.0,4.0,1258995 -3114887,1630222373,1,62,1,2,1630094174,2,1.0,25.0,4.0,-9.0,4.0,1258995 -3114888,1630222290,2,65,0,1,1630094175,2,6.0,-9.0,-9.0,-9.0,4.0,1258996 -3114889,1630222291,2,15,7,2,1630094175,1,-9.0,-9.0,-9.0,8.0,-9.0,1258996 -3114890,1630222383,3,77,0,1,1630094176,1,6.0,-9.0,-9.0,-9.0,2.0,1258997 -3114891,1630222382,1,77,1,2,1630094176,2,6.0,-9.0,-9.0,-9.0,4.0,1258997 -3114892,1630223216,4,31,0,1,1630094177,1,1.0,60.0,1.0,-9.0,4.0,1258998 -3114893,1630222367,3,69,0,1,1630094178,2,6.0,-9.0,-9.0,-9.0,4.0,1258999 -3114894,1630222614,1,52,0,1,1630094179,1,1.0,40.0,1.0,-9.0,4.0,1259000 -3114895,1630222615,4,11,2,2,1630094179,1,-9.0,-9.0,-9.0,8.0,-9.0,1259000 -3114896,1630222328,2,71,0,1,1630094180,2,6.0,-9.0,-9.0,-9.0,4.0,1259001 -3114897,1630222588,1,24,0,1,1630094181,1,6.0,-9.0,-9.0,16.0,4.0,1259002 -3114898,1630222620,1,24,0,1,1630094182,1,3.0,20.0,5.0,-9.0,4.0,1259003 -3114899,1630222319,2,72,0,1,1630094183,2,6.0,-9.0,-9.0,-9.0,4.0,1259004 -3114900,1630223142,4,70,0,1,1630094184,2,6.0,-9.0,-9.0,-9.0,4.0,1259005 -3114901,1630223169,2,67,0,1,1630094185,1,1.0,40.0,4.0,-9.0,4.0,1259006 -3114902,1630223056,2,64,0,1,1630094186,1,6.0,-9.0,-9.0,-9.0,2.0,1259007 -3114903,1630222398,3,37,0,1,1630094187,2,6.0,42.0,4.0,-9.0,4.0,1259008 -3114904,1630222399,3,16,2,2,1630094187,1,6.0,-9.0,-9.0,12.0,-9.0,1259008 -3114905,1630223195,4,52,0,1,1630094188,2,3.0,-9.0,-9.0,-9.0,4.0,1259009 -3114906,1630222754,2,50,0,1,1630094189,1,6.0,-9.0,-9.0,-9.0,4.0,1259010 -3114907,1630222753,2,35,2,2,1630094189,2,6.0,-9.0,-9.0,-9.0,4.0,1259010 -3114908,1630223084,2,44,0,1,1630094190,1,1.0,50.0,1.0,-9.0,4.0,1259011 -3114909,1630223085,2,15,2,2,1630094190,2,-9.0,-9.0,-9.0,12.0,-9.0,1259011 -3114910,1630223086,2,9,2,3,1630094190,2,-9.0,-9.0,-9.0,7.0,-9.0,1259011 -3114911,1630222831,2,44,0,1,1630094191,2,3.0,8.0,6.0,-9.0,4.0,1259012 -3114912,1630222749,2,53,0,1,1630094192,2,1.0,98.0,1.0,-9.0,4.0,1259013 -3114913,1630222750,2,58,1,2,1630094192,1,6.0,-9.0,-9.0,-9.0,4.0,1259013 -3114914,1630222288,2,81,0,1,1630094193,2,6.0,-9.0,-9.0,-9.0,4.0,1259014 -3114915,1630222289,2,52,2,2,1630094193,1,1.0,40.0,1.0,-9.0,4.0,1259014 -3114916,1630222919,2,63,0,1,1630094194,2,1.0,50.0,1.0,-9.0,4.0,1259015 -3114917,1630222778,2,44,0,1,1630094195,2,1.0,38.0,1.0,-9.0,4.0,1259016 -3114918,1630222779,2,14,2,2,1630094195,1,-9.0,-9.0,-9.0,11.0,-9.0,1259016 -3114919,1630222780,2,5,2,3,1630094195,2,-9.0,-9.0,-9.0,1.0,-9.0,1259016 -3114920,1630223311,4,27,0,1,1630094196,1,1.0,54.0,2.0,16.0,4.0,1259017 -3114921,1630223310,4,26,1,2,1630094196,2,1.0,15.0,6.0,16.0,4.0,1259017 -3114922,1630222602,3,29,0,1,1630094197,1,1.0,43.0,1.0,-9.0,4.0,1259018 -3114923,1630222999,2,25,0,1,1630094198,2,3.0,40.0,1.0,-9.0,4.0,1259019 -3114924,1630223000,2,5,2,2,1630094198,2,-9.0,-9.0,-9.0,2.0,-9.0,1259019 -3114925,1630222918,2,43,0,1,1630094199,1,1.0,40.0,1.0,-9.0,3.0,1259020 -3114926,1630222917,2,61,6,2,1630094199,2,6.0,-9.0,-9.0,-9.0,4.0,1259020 -3114927,1630222785,2,63,0,1,1630094200,2,6.0,30.0,5.0,-9.0,4.0,1259021 -3114928,1630222503,1,55,0,1,1630094201,2,6.0,-9.0,-9.0,-9.0,4.0,1259022 -3114929,1630222504,2,63,13,2,1630094201,1,6.0,-9.0,-9.0,-9.0,4.0,1259022 -3114930,1630222954,2,24,0,1,1630094202,2,1.0,35.0,1.0,-9.0,4.0,1259023 -3114931,1630222497,1,33,0,1,1630094203,2,1.0,50.0,1.0,-9.0,4.0,1259024 -3114932,1630222720,1,30,0,1,1630094204,1,1.0,30.0,1.0,-9.0,4.0,1259025 -3114933,1630223106,4,19,0,1,1630094205,2,1.0,40.0,5.0,-9.0,4.0,1259026 -3114934,1630223105,2,21,13,2,1630094205,1,1.0,50.0,1.0,-9.0,4.0,1259026 -3114935,1630223337,4,25,0,1,1630094206,1,1.0,70.0,5.0,-9.0,2.0,1259027 -3114936,1630222930,2,50,0,1,1630094207,2,1.0,48.0,1.0,-9.0,4.0,1259028 -3114937,1630222932,2,50,1,2,1630094207,1,1.0,64.0,1.0,-9.0,4.0,1259028 -3114938,1630222931,2,20,2,3,1630094207,2,1.0,32.0,1.0,-9.0,4.0,1259028 -3114939,1630223201,4,52,0,1,1630094208,1,1.0,3.0,6.0,-9.0,4.0,1259029 -3114940,1630223202,4,43,1,2,1630094208,2,6.0,-9.0,-9.0,-9.0,4.0,1259029 -3114941,1630223051,2,21,0,1,1630094209,1,1.0,48.0,1.0,-9.0,4.0,1259030 -3114942,1630223053,2,24,15,2,1630094209,1,6.0,-9.0,-9.0,-9.0,4.0,1259030 -3114943,1630222393,1,22,0,1,1630094210,2,1.0,30.0,4.0,-9.0,4.0,1259031 -3114944,1630222394,1,27,13,2,1630094210,1,1.0,40.0,3.0,-9.0,4.0,1259031 -3114945,1630222381,2,78,0,1,1630094211,1,1.0,30.0,2.0,-9.0,2.0,1259032 -3114946,1630222380,1,67,1,2,1630094211,2,1.0,25.0,3.0,-9.0,4.0,1259032 -3114947,1630223135,2,54,0,1,1630094212,1,6.0,-9.0,-9.0,-9.0,4.0,1259033 -3114948,1630223137,2,36,12,2,1630094212,1,1.0,40.0,1.0,-9.0,4.0,1259033 -3114949,1630222521,1,26,0,1,1630094213,2,1.0,35.0,1.0,-9.0,4.0,1259034 -3114950,1630222523,1,26,12,2,1630094213,1,1.0,40.0,1.0,-9.0,4.0,1259034 -3114951,1630222522,1,21,12,3,1630094213,2,1.0,35.0,1.0,15.0,4.0,1259034 -3114952,1630222738,1,28,0,1,1630094214,1,1.0,40.0,1.0,16.0,4.0,1259035 -3114953,1630222740,4,28,13,2,1630094214,2,1.0,35.0,3.0,-9.0,4.0,1259035 -3114954,1630222797,2,43,0,1,1630094215,2,1.0,40.0,1.0,-9.0,4.0,1259036 -3114955,1630222799,2,14,2,2,1630094215,2,-9.0,-9.0,-9.0,11.0,-9.0,1259036 -3114956,1630222881,2,57,0,1,1630094216,2,6.0,-9.0,-9.0,-9.0,4.0,1259037 -3114957,1630222672,1,43,0,1,1630094217,1,1.0,40.0,1.0,-9.0,4.0,1259038 -3114958,1630222678,1,49,13,2,1630094217,1,1.0,35.0,4.0,-9.0,2.0,1259038 -3114959,1630222907,2,61,0,1,1630094218,1,1.0,40.0,3.0,-9.0,2.0,1259039 -3114960,1630222906,2,61,1,2,1630094218,2,1.0,35.0,1.0,-9.0,4.0,1259039 -3114961,1630222894,2,68,0,1,1630094219,1,6.0,-9.0,-9.0,-9.0,2.0,1259040 -3114962,1630223130,4,83,0,1,1630094220,1,1.0,30.0,4.0,-9.0,4.0,1259041 -3114963,1630223129,2,26,10,2,1630094220,1,3.0,-9.0,-9.0,14.0,4.0,1259041 -3114964,1630222887,2,61,0,1,1630094221,1,1.0,60.0,1.0,-9.0,4.0,1259042 -3114965,1630222885,2,60,1,2,1630094221,2,6.0,-9.0,-9.0,-9.0,4.0,1259042 -3114966,1630222270,2,93,0,1,1630094222,2,6.0,-9.0,-9.0,-9.0,4.0,1259043 -3114967,1630222448,1,29,0,1,1630094223,2,1.0,45.0,1.0,-9.0,4.0,1259044 -3114968,1630222272,2,65,0,1,1630094224,2,6.0,-9.0,-9.0,-9.0,4.0,1259045 -3114969,1630222273,2,23,4,2,1630094224,2,6.0,-9.0,-9.0,-9.0,4.0,1259045 -3114970,1630222854,2,29,0,1,1630094225,1,1.0,20.0,5.0,-9.0,4.0,1259046 -3114971,1630222853,2,49,6,2,1630094225,2,1.0,35.0,1.0,15.0,4.0,1259046 -3114972,1630222400,1,22,0,1,1630094226,2,1.0,45.0,4.0,-9.0,4.0,1259047 -3114973,1630222401,1,24,12,2,1630094226,2,1.0,50.0,1.0,-9.0,4.0,1259047 -3114974,1630222402,1,21,12,3,1630094226,2,1.0,35.0,3.0,-9.0,4.0,1259047 -3114975,1630222541,1,66,0,1,1630094227,1,1.0,50.0,6.0,-9.0,2.0,1259048 -3114976,1630222539,1,51,1,2,1630094227,2,6.0,-9.0,-9.0,-9.0,4.0,1259048 -3114977,1630222540,1,55,5,3,1630094227,1,6.0,-9.0,-9.0,-9.0,4.0,1259048 -3114978,1630223292,4,28,0,1,1630094228,1,6.0,-9.0,-9.0,15.0,4.0,1259049 -3114979,1630223291,4,31,1,2,1630094228,2,1.0,40.0,1.0,16.0,4.0,1259049 -3114980,1630223293,4,1,2,3,1630094228,1,-9.0,-9.0,-9.0,-9.0,-9.0,1259049 -3114981,1630223088,2,60,0,1,1630094229,1,1.0,40.0,1.0,-9.0,4.0,1259050 -3114982,1630223125,2,58,0,1,1630094230,1,6.0,-9.0,-9.0,-9.0,4.0,1259051 -3114983,1630222265,2,64,0,1,1630094231,1,6.0,-9.0,-9.0,-9.0,2.0,1259052 -3114984,1630222489,1,42,0,1,1630094232,1,1.0,30.0,1.0,-9.0,4.0,1259053 -3114985,1630222488,1,30,1,2,1630094232,2,1.0,43.0,1.0,-9.0,4.0,1259053 -3114986,1630222490,1,0,2,3,1630094232,2,-9.0,-9.0,-9.0,-9.0,-9.0,1259053 -3114987,1630222723,1,29,0,1,1630094233,1,1.0,50.0,1.0,16.0,4.0,1259054 -3114988,1630222725,1,34,12,2,1630094233,1,1.0,40.0,1.0,16.0,4.0,1259054 -3114989,1630222827,2,42,0,1,1630094234,2,1.0,45.0,1.0,-9.0,4.0,1259055 -3114990,1630222963,2,36,0,1,1630094235,2,1.0,40.0,1.0,-9.0,4.0,1259056 -3114991,1630222970,2,24,0,1,1630094236,1,1.0,20.0,1.0,16.0,4.0,1259057 -3114992,1630222969,2,24,13,2,1630094236,2,6.0,-9.0,-9.0,16.0,4.0,1259057 -3114993,1630222567,1,62,0,1,1630094237,1,1.0,40.0,1.0,16.0,4.0,1259058 -3114994,1630222568,1,38,12,2,1630094237,1,6.0,-9.0,-9.0,-9.0,4.0,1259058 -3130835,1630239362,2,63,0,1,1630101734,2,6.0,-9.0,-9.0,16.0,4.0,1266535 -3130836,1630239438,2,46,0,1,1630101735,2,6.0,-9.0,-9.0,-9.0,4.0,1266536 -3130837,1630239439,2,16,2,2,1630101735,2,6.0,-9.0,-9.0,13.0,-9.0,1266536 -3130838,1630239264,1,60,0,1,1630101736,2,6.0,-9.0,-9.0,-9.0,4.0,1266537 -3130839,1630239266,1,15,2,2,1630101736,2,-9.0,-9.0,-9.0,11.0,-9.0,1266537 -3130840,1630239301,1,48,0,1,1630101737,2,1.0,30.0,1.0,-9.0,4.0,1266538 -3130841,1630239303,1,10,2,2,1630101737,2,-9.0,-9.0,-9.0,7.0,-9.0,1266538 -3130842,1630239466,2,41,0,1,1630101738,2,2.0,40.0,1.0,-9.0,4.0,1266539 -3130843,1630239468,2,17,2,2,1630101738,2,6.0,30.0,6.0,14.0,4.0,1266539 -3130844,1630239307,1,32,0,1,1630101739,2,1.0,50.0,1.0,-9.0,4.0,1266540 -3130845,1630239317,1,26,0,1,1630101740,1,1.0,40.0,1.0,-9.0,4.0,1266541 -3130846,1630239316,1,25,13,2,1630101740,2,1.0,30.0,1.0,-9.0,4.0,1266541 -3130847,1630239436,2,41,0,1,1630101741,2,6.0,-9.0,-9.0,-9.0,4.0,1266542 -3130848,1630239381,2,32,0,1,1630101742,2,6.0,-9.0,-9.0,16.0,4.0,1266543 -3130849,1630239339,2,40,0,1,1630101743,2,6.0,-9.0,-9.0,12.0,4.0,1266544 -3130850,1630239650,2,33,0,1,1630101744,1,3.0,-9.0,-9.0,15.0,4.0,1266545 -3130851,1630239635,2,41,0,1,1630101745,1,3.0,24.0,5.0,-9.0,4.0,1266546 -3130852,1630239319,1,37,0,1,1630101746,2,6.0,-9.0,-9.0,-9.0,4.0,1266547 -3130853,1630239270,1,27,0,1,1630101747,2,3.0,-9.0,-9.0,-9.0,4.0,1266548 -3130854,1630239653,2,42,0,1,1630101748,1,6.0,-9.0,-9.0,-9.0,4.0,1266549 -3130855,1630239320,1,26,0,1,1630101749,2,6.0,-9.0,-9.0,16.0,4.0,1266550 -3130856,1630239413,2,44,0,1,1630101750,1,6.0,-9.0,-9.0,-9.0,4.0,1266551 -3130857,1630239418,2,2,2,2,1630101750,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266551 -3130858,1630239408,2,40,13,3,1630101750,2,6.0,-9.0,-9.0,-9.0,4.0,1266551 -3130859,1630239356,2,35,0,1,1630101751,2,3.0,18.0,4.0,-9.0,4.0,1266552 -3130860,1630239360,2,35,15,2,1630101751,1,3.0,24.0,6.0,-9.0,4.0,1266552 -3130861,1630239358,2,14,15,3,1630101751,1,-9.0,-9.0,-9.0,10.0,-9.0,1266552 -3130862,1630239470,2,27,0,1,1630101752,2,6.0,-9.0,-9.0,-9.0,4.0,1266553 -3130863,1630239474,2,0,2,2,1630101752,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266553 -3130864,1630239472,2,35,13,3,1630101752,1,6.0,-9.0,-9.0,-9.0,4.0,1266553 -3130865,1630239414,2,44,0,1,1630101753,1,6.0,-9.0,-9.0,-9.0,4.0,1266554 -3130866,1630239419,2,2,2,2,1630101753,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266554 -3130867,1630239409,2,40,13,3,1630101753,2,6.0,-9.0,-9.0,-9.0,4.0,1266554 -3130868,1630239363,2,29,0,1,1630101754,2,3.0,25.0,5.0,-9.0,4.0,1266555 -3130869,1630239366,2,10,2,2,1630101754,1,-9.0,-9.0,-9.0,7.0,-9.0,1266555 -3130870,1630239369,2,6,2,3,1630101754,1,-9.0,-9.0,-9.0,3.0,-9.0,1266555 -3130871,1630239415,2,44,0,1,1630101755,1,6.0,-9.0,-9.0,-9.0,4.0,1266556 -3130872,1630239420,2,2,2,2,1630101755,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266556 -3130873,1630239410,2,40,13,3,1630101755,2,6.0,-9.0,-9.0,-9.0,4.0,1266556 -3130874,1630239443,2,39,0,1,1630101756,2,6.0,-9.0,-9.0,-9.0,4.0,1266557 -3130875,1630239445,2,17,2,2,1630101756,1,6.0,-9.0,-9.0,13.0,4.0,1266557 -3130876,1630239447,2,15,2,3,1630101756,1,-9.0,-9.0,-9.0,11.0,-9.0,1266557 -3130877,1630239364,2,29,0,1,1630101757,2,3.0,25.0,5.0,-9.0,4.0,1266558 -3130878,1630239367,2,10,2,2,1630101757,1,-9.0,-9.0,-9.0,7.0,-9.0,1266558 -3130879,1630239370,2,6,2,3,1630101757,1,-9.0,-9.0,-9.0,3.0,-9.0,1266558 -3130880,1630239497,2,26,0,1,1630101758,2,3.0,9.0,6.0,-9.0,4.0,1266559 -3130881,1630239499,2,8,2,2,1630101758,1,-9.0,-9.0,-9.0,4.0,-9.0,1266559 -3130882,1630239501,2,1,2,3,1630101758,1,-9.0,-9.0,-9.0,-9.0,-9.0,1266559 -3130883,1630239507,2,42,0,1,1630101759,2,6.0,-9.0,-9.0,-9.0,4.0,1266560 -3130884,1630239509,2,21,2,2,1630101759,1,6.0,-9.0,-9.0,-9.0,4.0,1266560 -3130885,1630239508,2,16,2,3,1630101759,1,6.0,-9.0,-9.0,12.0,-9.0,1266560 -3130886,1630239416,2,44,0,1,1630101760,1,6.0,-9.0,-9.0,-9.0,4.0,1266561 -3130887,1630239421,2,2,2,2,1630101760,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266561 -3130888,1630239411,2,40,13,3,1630101760,2,6.0,-9.0,-9.0,-9.0,4.0,1266561 -3130889,1630239357,2,35,0,1,1630101761,2,3.0,18.0,4.0,-9.0,4.0,1266562 -3130890,1630239361,2,35,15,2,1630101761,1,3.0,24.0,6.0,-9.0,4.0,1266562 -3130891,1630239359,2,14,15,3,1630101761,1,-9.0,-9.0,-9.0,10.0,-9.0,1266562 -3130892,1630239365,2,29,0,1,1630101762,2,3.0,25.0,5.0,-9.0,4.0,1266563 -3130893,1630239368,2,10,2,2,1630101762,1,-9.0,-9.0,-9.0,7.0,-9.0,1266563 -3130894,1630239371,2,6,2,3,1630101762,1,-9.0,-9.0,-9.0,3.0,-9.0,1266563 -3130895,1630239471,2,27,0,1,1630101763,2,6.0,-9.0,-9.0,-9.0,4.0,1266564 -3130896,1630239475,2,0,2,2,1630101763,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266564 -3130897,1630239473,2,35,13,3,1630101763,1,6.0,-9.0,-9.0,-9.0,4.0,1266564 -3130898,1630239417,2,44,0,1,1630101764,1,6.0,-9.0,-9.0,-9.0,4.0,1266565 -3130899,1630239422,2,2,2,2,1630101764,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266565 -3130900,1630239412,2,40,13,3,1630101764,2,6.0,-9.0,-9.0,-9.0,4.0,1266565 -3130901,1630239444,2,39,0,1,1630101765,2,6.0,-9.0,-9.0,-9.0,4.0,1266566 -3130902,1630239446,2,17,2,2,1630101765,1,6.0,-9.0,-9.0,13.0,4.0,1266566 -3130903,1630239448,2,15,2,3,1630101765,1,-9.0,-9.0,-9.0,11.0,-9.0,1266566 -3130904,1630239498,2,26,0,1,1630101766,2,3.0,9.0,6.0,-9.0,4.0,1266567 -3130905,1630239500,2,8,2,2,1630101766,1,-9.0,-9.0,-9.0,4.0,-9.0,1266567 -3130906,1630239502,2,1,2,3,1630101766,1,-9.0,-9.0,-9.0,-9.0,-9.0,1266567 -3130907,1630239280,1,32,0,1,1630101767,2,3.0,-9.0,-9.0,-9.0,4.0,1266568 -3130908,1630239287,1,8,2,2,1630101767,1,-9.0,-9.0,-9.0,4.0,-9.0,1266568 -3130909,1630239294,1,6,2,3,1630101767,1,-9.0,-9.0,-9.0,-9.0,-9.0,1266568 -3130910,1630239281,1,32,0,1,1630101768,2,3.0,-9.0,-9.0,-9.0,4.0,1266569 -3130911,1630239288,1,8,2,2,1630101768,1,-9.0,-9.0,-9.0,4.0,-9.0,1266569 -3130912,1630239295,1,6,2,3,1630101768,1,-9.0,-9.0,-9.0,-9.0,-9.0,1266569 -3130913,1630239282,1,32,0,1,1630101769,2,3.0,-9.0,-9.0,-9.0,4.0,1266570 -3130914,1630239289,1,8,2,2,1630101769,1,-9.0,-9.0,-9.0,4.0,-9.0,1266570 -3130915,1630239296,1,6,2,3,1630101769,1,-9.0,-9.0,-9.0,-9.0,-9.0,1266570 -3130916,1630239283,1,32,0,1,1630101770,2,3.0,-9.0,-9.0,-9.0,4.0,1266571 -3130917,1630239290,1,8,2,2,1630101770,1,-9.0,-9.0,-9.0,4.0,-9.0,1266571 -3130918,1630239297,1,6,2,3,1630101770,1,-9.0,-9.0,-9.0,-9.0,-9.0,1266571 -3130919,1630239284,1,32,0,1,1630101771,2,3.0,-9.0,-9.0,-9.0,4.0,1266572 -3130920,1630239291,1,8,2,2,1630101771,1,-9.0,-9.0,-9.0,4.0,-9.0,1266572 -3130921,1630239298,1,6,2,3,1630101771,1,-9.0,-9.0,-9.0,-9.0,-9.0,1266572 -3130922,1630239285,1,32,0,1,1630101772,2,3.0,-9.0,-9.0,-9.0,4.0,1266573 -3130923,1630239292,1,8,2,2,1630101772,1,-9.0,-9.0,-9.0,4.0,-9.0,1266573 -3130924,1630239299,1,6,2,3,1630101772,1,-9.0,-9.0,-9.0,-9.0,-9.0,1266573 -3130925,1630239286,1,32,0,1,1630101773,2,3.0,-9.0,-9.0,-9.0,4.0,1266574 -3130926,1630239293,1,8,2,2,1630101773,1,-9.0,-9.0,-9.0,4.0,-9.0,1266574 -3130927,1630239300,1,6,2,3,1630101773,1,-9.0,-9.0,-9.0,-9.0,-9.0,1266574 -3130928,1630239327,2,26,0,1,1630101774,2,6.0,40.0,5.0,15.0,4.0,1266575 -3130929,1630239328,2,7,2,2,1630101774,1,-9.0,-9.0,-9.0,4.0,-9.0,1266575 -3130930,1630239329,2,2,2,3,1630101774,1,-9.0,-9.0,-9.0,-9.0,-9.0,1266575 -3130931,1630239565,2,38,0,1,1630101775,2,6.0,-9.0,-9.0,-9.0,4.0,1266576 -3130932,1630239567,2,38,1,2,1630101775,1,3.0,-9.0,-9.0,-9.0,4.0,1266576 -3130933,1630239569,2,16,2,3,1630101775,2,6.0,-9.0,-9.0,13.0,-9.0,1266576 -3130934,1630239330,2,36,0,1,1630101776,2,6.0,-9.0,-9.0,-9.0,4.0,1266577 -3130935,1630239333,2,16,2,2,1630101776,2,6.0,-9.0,-9.0,13.0,-9.0,1266577 -3130936,1630239336,2,9,2,3,1630101776,2,-9.0,-9.0,-9.0,6.0,-9.0,1266577 -3130937,1630239566,2,38,0,1,1630101777,2,6.0,-9.0,-9.0,-9.0,4.0,1266578 -3130938,1630239568,2,38,1,2,1630101777,1,3.0,-9.0,-9.0,-9.0,4.0,1266578 -3130939,1630239570,2,16,2,3,1630101777,2,6.0,-9.0,-9.0,13.0,-9.0,1266578 -3130940,1630239623,2,31,0,1,1630101778,1,6.0,-9.0,-9.0,-9.0,4.0,1266579 -3130941,1630239625,2,0,2,2,1630101778,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266579 -3130942,1630239621,2,38,13,3,1630101778,2,6.0,-9.0,-9.0,-9.0,4.0,1266579 -3130943,1630239331,2,36,0,1,1630101779,2,6.0,-9.0,-9.0,-9.0,4.0,1266580 -3130944,1630239334,2,16,2,2,1630101779,2,6.0,-9.0,-9.0,13.0,-9.0,1266580 -3130945,1630239337,2,9,2,3,1630101779,2,-9.0,-9.0,-9.0,6.0,-9.0,1266580 -3130946,1630239332,2,36,0,1,1630101780,2,6.0,-9.0,-9.0,-9.0,4.0,1266581 -3130947,1630239335,2,16,2,2,1630101780,2,6.0,-9.0,-9.0,13.0,-9.0,1266581 -3130948,1630239338,2,9,2,3,1630101780,2,-9.0,-9.0,-9.0,6.0,-9.0,1266581 -3130949,1630239636,2,34,0,1,1630101781,1,3.0,-9.0,-9.0,-9.0,4.0,1266582 -3130950,1630239637,2,18,10,2,1630101781,1,6.0,-9.0,-9.0,14.0,4.0,1266582 -3130951,1630239651,2,44,0,1,1630101782,1,6.0,-9.0,-9.0,14.0,4.0,1266583 -3130952,1630239652,2,50,5,2,1630101782,1,6.0,-9.0,-9.0,-9.0,4.0,1266583 -3130953,1630239593,2,43,0,1,1630101783,2,6.0,-9.0,-9.0,-9.0,4.0,1266584 -3130954,1630239601,2,0,2,2,1630101783,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266584 -3130955,1630239594,2,43,0,1,1630101784,2,6.0,-9.0,-9.0,-9.0,4.0,1266585 -3130956,1630239602,2,0,2,2,1630101784,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266585 -3130957,1630239595,2,43,0,1,1630101785,2,6.0,-9.0,-9.0,-9.0,4.0,1266586 -3130958,1630239603,2,0,2,2,1630101785,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266586 -3130959,1630239511,2,26,0,1,1630101786,2,3.0,-9.0,-9.0,15.0,4.0,1266587 -3130960,1630239518,2,6,2,2,1630101786,2,-9.0,-9.0,-9.0,3.0,-9.0,1266587 -3130961,1630239596,2,43,0,1,1630101787,2,6.0,-9.0,-9.0,-9.0,4.0,1266588 -3130962,1630239604,2,0,2,2,1630101787,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266588 -3130963,1630239597,2,43,0,1,1630101788,2,6.0,-9.0,-9.0,-9.0,4.0,1266589 -3130964,1630239605,2,0,2,2,1630101788,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266589 -3130965,1630239449,2,26,0,1,1630101789,2,6.0,-9.0,-9.0,-9.0,4.0,1266590 -3130966,1630239453,2,6,2,2,1630101789,1,-9.0,-9.0,-9.0,2.0,-9.0,1266590 -3130967,1630239386,2,25,0,1,1630101790,2,3.0,-9.0,-9.0,-9.0,4.0,1266591 -3130968,1630239388,2,4,2,2,1630101790,1,-9.0,-9.0,-9.0,1.0,-9.0,1266591 -3130969,1630239390,2,33,0,1,1630101791,2,3.0,42.0,6.0,-9.0,4.0,1266592 -3130970,1630239399,2,14,2,2,1630101791,2,-9.0,-9.0,-9.0,11.0,-9.0,1266592 -3130971,1630239512,2,26,0,1,1630101792,2,3.0,-9.0,-9.0,15.0,4.0,1266593 -3130972,1630239519,2,6,2,2,1630101792,2,-9.0,-9.0,-9.0,3.0,-9.0,1266593 -3130973,1630239513,2,26,0,1,1630101793,2,3.0,-9.0,-9.0,15.0,4.0,1266594 -3130974,1630239520,2,6,2,2,1630101793,2,-9.0,-9.0,-9.0,3.0,-9.0,1266594 -3130975,1630239387,2,25,0,1,1630101794,2,3.0,-9.0,-9.0,-9.0,4.0,1266595 -3130976,1630239389,2,4,2,2,1630101794,1,-9.0,-9.0,-9.0,1.0,-9.0,1266595 -3130977,1630239514,2,26,0,1,1630101795,2,3.0,-9.0,-9.0,15.0,4.0,1266596 -3130978,1630239521,2,6,2,2,1630101795,2,-9.0,-9.0,-9.0,3.0,-9.0,1266596 -3130979,1630239391,2,33,0,1,1630101796,2,3.0,42.0,6.0,-9.0,4.0,1266597 -3130980,1630239400,2,14,2,2,1630101796,2,-9.0,-9.0,-9.0,11.0,-9.0,1266597 -3130981,1630239392,2,33,0,1,1630101797,2,3.0,42.0,6.0,-9.0,4.0,1266598 -3130982,1630239401,2,14,2,2,1630101797,2,-9.0,-9.0,-9.0,11.0,-9.0,1266598 -3130983,1630239515,2,26,0,1,1630101798,2,3.0,-9.0,-9.0,15.0,4.0,1266599 -3130984,1630239522,2,6,2,2,1630101798,2,-9.0,-9.0,-9.0,3.0,-9.0,1266599 -3130985,1630239393,2,33,0,1,1630101799,2,3.0,42.0,6.0,-9.0,4.0,1266600 -3130986,1630239402,2,14,2,2,1630101799,2,-9.0,-9.0,-9.0,11.0,-9.0,1266600 -3130987,1630239450,2,26,0,1,1630101800,2,6.0,-9.0,-9.0,-9.0,4.0,1266601 -3130988,1630239454,2,6,2,2,1630101800,1,-9.0,-9.0,-9.0,2.0,-9.0,1266601 -3130989,1630239451,2,26,0,1,1630101801,2,6.0,-9.0,-9.0,-9.0,4.0,1266602 -3130990,1630239455,2,6,2,2,1630101801,1,-9.0,-9.0,-9.0,2.0,-9.0,1266602 -3130991,1630239394,2,33,0,1,1630101802,2,3.0,42.0,6.0,-9.0,4.0,1266603 -3130992,1630239403,2,14,2,2,1630101802,2,-9.0,-9.0,-9.0,11.0,-9.0,1266603 -3130993,1630239516,2,26,0,1,1630101803,2,3.0,-9.0,-9.0,15.0,4.0,1266604 -3130994,1630239523,2,6,2,2,1630101803,2,-9.0,-9.0,-9.0,3.0,-9.0,1266604 -3130995,1630239395,2,33,0,1,1630101804,2,3.0,42.0,6.0,-9.0,4.0,1266605 -3130996,1630239404,2,14,2,2,1630101804,2,-9.0,-9.0,-9.0,11.0,-9.0,1266605 -3130997,1630239517,2,26,0,1,1630101805,2,3.0,-9.0,-9.0,15.0,4.0,1266606 -3130998,1630239524,2,6,2,2,1630101805,2,-9.0,-9.0,-9.0,3.0,-9.0,1266606 -3130999,1630239396,2,33,0,1,1630101806,2,3.0,42.0,6.0,-9.0,4.0,1266607 -3131000,1630239405,2,14,2,2,1630101806,2,-9.0,-9.0,-9.0,11.0,-9.0,1266607 -3131001,1630239609,2,35,0,1,1630101807,2,6.0,-9.0,-9.0,-9.0,4.0,1266608 -3131002,1630239610,2,9,2,2,1630101807,1,-9.0,-9.0,-9.0,6.0,-9.0,1266608 -3131003,1630239397,2,33,0,1,1630101808,2,3.0,42.0,6.0,-9.0,4.0,1266609 -3131004,1630239406,2,14,2,2,1630101808,2,-9.0,-9.0,-9.0,11.0,-9.0,1266609 -3131005,1630239452,2,26,0,1,1630101809,2,6.0,-9.0,-9.0,-9.0,4.0,1266610 -3131006,1630239456,2,6,2,2,1630101809,1,-9.0,-9.0,-9.0,2.0,-9.0,1266610 -3131007,1630239627,2,40,0,1,1630101810,1,6.0,-9.0,-9.0,-9.0,4.0,1266611 -3131008,1630239631,2,7,2,2,1630101810,2,-9.0,-9.0,-9.0,3.0,-9.0,1266611 -3131009,1630239398,2,33,0,1,1630101811,2,3.0,42.0,6.0,-9.0,4.0,1266612 -3131010,1630239407,2,14,2,2,1630101811,2,-9.0,-9.0,-9.0,11.0,-9.0,1266612 -3131011,1630239598,2,43,0,1,1630101812,2,6.0,-9.0,-9.0,-9.0,4.0,1266613 -3131012,1630239606,2,0,2,2,1630101812,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266613 -3131013,1630239628,2,40,0,1,1630101813,1,6.0,-9.0,-9.0,-9.0,4.0,1266614 -3131014,1630239632,2,7,2,2,1630101813,2,-9.0,-9.0,-9.0,3.0,-9.0,1266614 -3131015,1630239629,2,40,0,1,1630101814,1,6.0,-9.0,-9.0,-9.0,4.0,1266615 -3131016,1630239633,2,7,2,2,1630101814,2,-9.0,-9.0,-9.0,3.0,-9.0,1266615 -3131017,1630239630,2,40,0,1,1630101815,1,6.0,-9.0,-9.0,-9.0,4.0,1266616 -3131018,1630239634,2,7,2,2,1630101815,2,-9.0,-9.0,-9.0,3.0,-9.0,1266616 -3131019,1630239599,2,43,0,1,1630101816,2,6.0,-9.0,-9.0,-9.0,4.0,1266617 -3131020,1630239607,2,0,2,2,1630101816,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266617 -3131021,1630239487,2,34,0,1,1630101817,2,6.0,-9.0,-9.0,15.0,4.0,1266618 -3131022,1630239489,2,7,2,2,1630101817,2,-9.0,-9.0,-9.0,3.0,-9.0,1266618 -3131023,1630239611,2,33,0,1,1630101818,2,3.0,40.0,3.0,-9.0,4.0,1266619 -3131024,1630239613,2,9,2,2,1630101818,1,-9.0,-9.0,-9.0,6.0,-9.0,1266619 -3131025,1630239553,2,42,0,1,1630101819,2,6.0,-9.0,-9.0,-9.0,4.0,1266620 -3131026,1630239557,2,3,2,2,1630101819,2,-9.0,-9.0,-9.0,1.0,-9.0,1266620 -3131027,1630239583,2,28,0,1,1630101820,2,3.0,-9.0,-9.0,-9.0,4.0,1266621 -3131028,1630239587,2,4,2,2,1630101820,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266621 -3131029,1630239612,2,33,0,1,1630101821,2,3.0,40.0,3.0,-9.0,4.0,1266622 -3131030,1630239614,2,9,2,2,1630101821,1,-9.0,-9.0,-9.0,6.0,-9.0,1266622 -3131031,1630239584,2,28,0,1,1630101822,2,3.0,-9.0,-9.0,-9.0,4.0,1266623 -3131032,1630239588,2,4,2,2,1630101822,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266623 -3131033,1630239340,2,37,0,1,1630101823,2,6.0,-9.0,-9.0,-9.0,4.0,1266624 -3131034,1630239341,2,4,2,2,1630101823,1,-9.0,-9.0,-9.0,1.0,-9.0,1266624 -3131035,1630239643,2,31,0,1,1630101824,1,3.0,40.0,6.0,15.0,4.0,1266625 -3131036,1630239644,2,4,2,2,1630101824,2,-9.0,-9.0,-9.0,1.0,-9.0,1266625 -3131037,1630239430,2,37,0,1,1630101825,2,6.0,-9.0,-9.0,-9.0,4.0,1266626 -3131038,1630239433,2,13,2,2,1630101825,2,-9.0,-9.0,-9.0,9.0,-9.0,1266626 -3131039,1630239554,2,42,0,1,1630101826,2,6.0,-9.0,-9.0,-9.0,4.0,1266627 -3131040,1630239558,2,3,2,2,1630101826,2,-9.0,-9.0,-9.0,1.0,-9.0,1266627 -3131041,1630239585,2,28,0,1,1630101827,2,3.0,-9.0,-9.0,-9.0,4.0,1266628 -3131042,1630239589,2,4,2,2,1630101827,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266628 -3131043,1630239555,2,42,0,1,1630101828,2,6.0,-9.0,-9.0,-9.0,4.0,1266629 -3131044,1630239559,2,3,2,2,1630101828,2,-9.0,-9.0,-9.0,1.0,-9.0,1266629 -3131045,1630239556,2,42,0,1,1630101829,2,6.0,-9.0,-9.0,-9.0,4.0,1266630 -3131046,1630239560,2,3,2,2,1630101829,2,-9.0,-9.0,-9.0,1.0,-9.0,1266630 -3131047,1630239488,2,34,0,1,1630101830,2,6.0,-9.0,-9.0,15.0,4.0,1266631 -3131048,1630239490,2,7,2,2,1630101830,2,-9.0,-9.0,-9.0,3.0,-9.0,1266631 -3131049,1630239431,2,37,0,1,1630101831,2,6.0,-9.0,-9.0,-9.0,4.0,1266632 -3131050,1630239434,2,13,2,2,1630101831,2,-9.0,-9.0,-9.0,9.0,-9.0,1266632 -3131051,1630239432,2,37,0,1,1630101832,2,6.0,-9.0,-9.0,-9.0,4.0,1266633 -3131052,1630239435,2,13,2,2,1630101832,2,-9.0,-9.0,-9.0,9.0,-9.0,1266633 -3131053,1630239305,1,25,0,1,1630101833,2,1.0,30.0,3.0,-9.0,4.0,1266634 -3131054,1630239279,1,26,0,1,1630101834,2,1.0,40.0,5.0,-9.0,4.0,1266635 -3131055,1630239315,1,31,0,1,1630101835,2,1.0,80.0,5.0,-9.0,4.0,1266636 -3131056,1630239529,2,26,0,1,1630101836,2,1.0,15.0,3.0,-9.0,4.0,1266637 -3131057,1630239532,2,10,2,2,1630101836,2,-9.0,-9.0,-9.0,7.0,-9.0,1266637 -3131058,1630239535,2,6,2,3,1630101836,2,-9.0,-9.0,-9.0,2.0,-9.0,1266637 -3131059,1630239530,2,26,0,1,1630101837,2,1.0,15.0,3.0,-9.0,4.0,1266638 -3131060,1630239533,2,10,2,2,1630101837,2,-9.0,-9.0,-9.0,7.0,-9.0,1266638 -3131061,1630239536,2,6,2,3,1630101837,2,-9.0,-9.0,-9.0,2.0,-9.0,1266638 -3131062,1630239531,2,26,0,1,1630101838,2,1.0,15.0,3.0,-9.0,4.0,1266639 -3131063,1630239534,2,10,2,2,1630101838,2,-9.0,-9.0,-9.0,7.0,-9.0,1266639 -3131064,1630239537,2,6,2,3,1630101838,2,-9.0,-9.0,-9.0,2.0,-9.0,1266639 -3131065,1630239323,2,25,0,1,1630101839,2,3.0,20.0,6.0,15.0,4.0,1266640 -3131066,1630239325,2,4,2,2,1630101839,1,-9.0,-9.0,-9.0,1.0,-9.0,1266640 -3131067,1630239324,2,27,12,3,1630101839,2,1.0,35.0,1.0,-9.0,4.0,1266640 -3131068,1630239571,2,25,0,1,1630101840,2,1.0,40.0,1.0,-9.0,4.0,1266641 -3131069,1630239573,2,6,2,2,1630101840,2,-9.0,-9.0,-9.0,2.0,-9.0,1266641 -3131070,1630239575,2,2,2,3,1630101840,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266641 -3131071,1630239378,2,30,0,1,1630101841,2,1.0,38.0,2.0,-9.0,4.0,1266642 -3131072,1630239379,2,6,2,2,1630101841,2,-9.0,-9.0,-9.0,2.0,-9.0,1266642 -3131073,1630239380,2,4,2,3,1630101841,2,-9.0,-9.0,-9.0,1.0,-9.0,1266642 -3131074,1630239538,2,35,0,1,1630101842,2,1.0,40.0,1.0,-9.0,4.0,1266643 -3131075,1630239541,2,16,2,2,1630101842,2,6.0,-9.0,-9.0,12.0,-9.0,1266643 -3131076,1630239492,2,35,0,1,1630101843,2,1.0,15.0,5.0,15.0,4.0,1266644 -3131077,1630239494,2,12,2,2,1630101843,2,-9.0,-9.0,-9.0,8.0,-9.0,1266644 -3131078,1630239476,2,34,0,1,1630101844,2,1.0,40.0,1.0,-9.0,4.0,1266645 -3131079,1630239477,2,14,2,2,1630101844,2,-9.0,-9.0,-9.0,11.0,-9.0,1266645 -3131080,1630239539,2,35,0,1,1630101845,2,1.0,40.0,1.0,-9.0,4.0,1266646 -3131081,1630239542,2,16,2,2,1630101845,2,6.0,-9.0,-9.0,12.0,-9.0,1266646 -3131082,1630239540,2,35,0,1,1630101846,2,1.0,40.0,1.0,-9.0,4.0,1266647 -3131083,1630239543,2,16,2,2,1630101846,2,6.0,-9.0,-9.0,12.0,-9.0,1266647 -3131084,1630239374,2,25,0,1,1630101847,2,1.0,40.0,5.0,-9.0,4.0,1266648 -3131085,1630239375,2,1,2,2,1630101847,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266648 -3131086,1630239464,2,29,0,1,1630101848,2,1.0,40.0,4.0,-9.0,4.0,1266649 -3131087,1630239465,2,9,2,2,1630101848,1,-9.0,-9.0,-9.0,5.0,-9.0,1266649 -3131088,1630239547,2,30,0,1,1630101849,2,1.0,40.0,1.0,-9.0,4.0,1266650 -3131089,1630239550,2,3,2,2,1630101849,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266650 -3131090,1630239503,2,29,0,1,1630101850,2,1.0,30.0,1.0,15.0,4.0,1266651 -3131091,1630239505,2,4,2,2,1630101850,2,-9.0,-9.0,-9.0,1.0,-9.0,1266651 -3131092,1630239548,2,30,0,1,1630101851,2,1.0,40.0,1.0,-9.0,4.0,1266652 -3131093,1630239551,2,3,2,2,1630101851,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266652 -3131094,1630239504,2,29,0,1,1630101852,2,1.0,30.0,1.0,15.0,4.0,1266653 -3131095,1630239506,2,4,2,2,1630101852,2,-9.0,-9.0,-9.0,1.0,-9.0,1266653 -3131096,1630239549,2,30,0,1,1630101853,2,1.0,40.0,1.0,-9.0,4.0,1266654 -3131097,1630239552,2,3,2,2,1630101853,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266654 -3131098,1630239496,2,64,0,1,1630101854,2,6.0,-9.0,-9.0,-9.0,4.0,1266655 -3131099,1630239645,2,59,0,1,1630101855,1,6.0,-9.0,-9.0,-9.0,2.0,1266656 -3131100,1630239382,2,54,0,1,1630101856,2,6.0,-9.0,-9.0,15.0,4.0,1266657 -3131101,1630239510,2,59,0,1,1630101857,2,6.0,-9.0,-9.0,-9.0,4.0,1266658 -3131102,1630239484,2,59,0,1,1630101858,2,3.0,-9.0,-9.0,-9.0,4.0,1266659 -3131103,1630239437,2,55,0,1,1630101859,2,6.0,-9.0,-9.0,-9.0,4.0,1266660 -3131104,1630239373,2,62,0,1,1630101860,2,6.0,-9.0,-9.0,-9.0,4.0,1266661 -3131105,1630239372,2,64,0,1,1630101861,2,6.0,-9.0,-9.0,-9.0,4.0,1266662 -3131106,1630239615,2,51,0,1,1630101862,2,3.0,40.0,3.0,-9.0,2.0,1266663 -3131107,1630239326,2,61,0,1,1630101863,2,6.0,-9.0,-9.0,-9.0,4.0,1266664 -3131108,1630239429,2,47,0,1,1630101864,2,6.0,-9.0,-9.0,-9.0,4.0,1266665 -3131109,1630239314,1,62,0,1,1630101865,2,6.0,-9.0,-9.0,-9.0,4.0,1266666 -3131110,1630239318,1,60,0,1,1630101866,2,6.0,-9.0,-9.0,-9.0,4.0,1266667 -3131111,1630239383,2,63,0,1,1630101867,2,6.0,-9.0,-9.0,-9.0,4.0,1266668 -3131112,1630239577,2,48,0,1,1630101868,2,6.0,-9.0,-9.0,-9.0,4.0,1266669 -3131113,1630239579,2,18,2,2,1630101868,2,3.0,-9.0,-9.0,13.0,4.0,1266669 -3131114,1630239581,2,10,2,3,1630101868,1,-9.0,-9.0,-9.0,5.0,-9.0,1266669 -3131115,1630239578,2,48,0,1,1630101869,2,6.0,-9.0,-9.0,-9.0,4.0,1266670 -3131116,1630239580,2,18,2,2,1630101869,2,3.0,-9.0,-9.0,13.0,4.0,1266670 -3131117,1630239582,2,10,2,3,1630101869,1,-9.0,-9.0,-9.0,5.0,-9.0,1266670 -3131118,1630239254,2,51,0,1,1630101870,1,3.0,-9.0,-9.0,-9.0,4.0,1266671 -3131119,1630239250,2,71,6,2,1630101870,2,6.0,-9.0,-9.0,-9.0,4.0,1266671 -3131120,1630239255,2,51,0,1,1630101871,1,3.0,-9.0,-9.0,-9.0,4.0,1266672 -3131121,1630239251,2,71,6,2,1630101871,2,6.0,-9.0,-9.0,-9.0,4.0,1266672 -3131122,1630239256,2,51,0,1,1630101872,1,3.0,-9.0,-9.0,-9.0,4.0,1266673 -3131123,1630239252,2,71,6,2,1630101872,2,6.0,-9.0,-9.0,-9.0,4.0,1266673 -3131124,1630239343,2,61,0,1,1630101873,2,6.0,-9.0,-9.0,-9.0,4.0,1266674 -3131125,1630239348,2,17,7,2,1630101873,2,6.0,-9.0,-9.0,14.0,4.0,1266674 -3131126,1630239655,2,51,0,1,1630101874,1,6.0,16.0,5.0,-9.0,4.0,1266675 -3131127,1630239656,2,8,2,2,1630101874,2,-9.0,-9.0,-9.0,5.0,-9.0,1266675 -3131128,1630239648,2,52,0,1,1630101875,1,6.0,-9.0,-9.0,-9.0,4.0,1266676 -3131129,1630239649,2,4,2,2,1630101875,2,-9.0,-9.0,-9.0,1.0,-9.0,1266676 -3131130,1630239457,2,54,0,1,1630101876,2,6.0,-9.0,-9.0,-9.0,4.0,1266677 -3131131,1630239460,2,17,2,2,1630101876,2,6.0,-9.0,-9.0,13.0,4.0,1266677 -3131132,1630239344,2,61,0,1,1630101877,2,6.0,-9.0,-9.0,-9.0,4.0,1266678 -3131133,1630239349,2,17,7,2,1630101877,2,6.0,-9.0,-9.0,14.0,4.0,1266678 -3131134,1630239458,2,54,0,1,1630101878,2,6.0,-9.0,-9.0,-9.0,4.0,1266679 -3131135,1630239461,2,17,2,2,1630101878,2,6.0,-9.0,-9.0,13.0,4.0,1266679 -3131136,1630239561,2,50,0,1,1630101879,2,6.0,-9.0,-9.0,-9.0,4.0,1266680 -3131137,1630239562,2,16,2,2,1630101879,1,6.0,-9.0,-9.0,12.0,-9.0,1266680 -3131138,1630239345,2,61,0,1,1630101880,2,6.0,-9.0,-9.0,-9.0,4.0,1266681 -3131139,1630239350,2,17,7,2,1630101880,2,6.0,-9.0,-9.0,14.0,4.0,1266681 -3131140,1630239346,2,61,0,1,1630101881,2,6.0,-9.0,-9.0,-9.0,4.0,1266682 -3131141,1630239351,2,17,7,2,1630101881,2,6.0,-9.0,-9.0,14.0,4.0,1266682 -3131142,1630239459,2,54,0,1,1630101882,2,6.0,-9.0,-9.0,-9.0,4.0,1266683 -3131143,1630239462,2,17,2,2,1630101882,2,6.0,-9.0,-9.0,13.0,4.0,1266683 -3131144,1630239423,2,46,0,1,1630101883,2,6.0,-9.0,-9.0,-9.0,4.0,1266684 -3131145,1630239426,2,16,2,2,1630101883,2,6.0,-9.0,-9.0,13.0,-9.0,1266684 -3131146,1630239424,2,46,0,1,1630101884,2,6.0,-9.0,-9.0,-9.0,4.0,1266685 -3131147,1630239427,2,16,2,2,1630101884,2,6.0,-9.0,-9.0,13.0,-9.0,1266685 -3131148,1630239491,2,55,0,1,1630101885,2,1.0,40.0,1.0,-9.0,4.0,1266686 -3131149,1630239258,2,78,0,1,1630101886,2,6.0,-9.0,-9.0,-9.0,4.0,1266687 -3131150,1630239246,2,66,0,1,1630101887,2,6.0,-9.0,-9.0,-9.0,4.0,1266688 -3131151,1630239241,2,65,0,1,1630101888,2,6.0,-9.0,-9.0,-9.0,4.0,1266689 -3131152,1630239347,2,61,0,1,1630101889,2,6.0,-9.0,-9.0,-9.0,4.0,1266690 -3131153,1630239352,2,17,7,2,1630101889,2,6.0,-9.0,-9.0,14.0,4.0,1266690 -3131154,1630239586,2,28,0,1,1630101890,2,3.0,-9.0,-9.0,-9.0,4.0,1266691 -3131155,1630239590,2,4,2,2,1630101890,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266691 -3131156,1630239463,2,44,0,1,1630101891,2,3.0,8.0,6.0,-9.0,4.0,1266692 -3131157,1630239342,2,34,0,1,1630101892,2,1.0,24.0,1.0,-9.0,4.0,1266693 -3131158,1630239478,2,32,0,1,1630101893,2,3.0,8.0,4.0,-9.0,4.0,1266694 -3131159,1630239480,2,8,2,2,1630101893,2,-9.0,-9.0,-9.0,4.0,-9.0,1266694 -3131160,1630239479,2,34,13,3,1630101893,1,1.0,45.0,2.0,-9.0,4.0,1266694 -3131161,1630239572,2,25,0,1,1630101894,2,1.0,40.0,1.0,-9.0,4.0,1266695 -3131162,1630239574,2,6,2,2,1630101894,2,-9.0,-9.0,-9.0,2.0,-9.0,1266695 -3131163,1630239576,2,2,2,3,1630101894,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266695 -3131164,1630239263,1,76,0,1,1630101895,2,6.0,-9.0,-9.0,-9.0,4.0,1266696 -3131165,1630239309,1,42,0,1,1630101896,1,1.0,30.0,1.0,-9.0,4.0,1266697 -3131166,1630239308,1,30,1,2,1630101896,2,1.0,43.0,1.0,-9.0,4.0,1266697 -3131167,1630239310,1,0,2,3,1630101896,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266697 -3131168,1630239481,2,44,0,1,1630101897,2,6.0,-9.0,-9.0,-9.0,4.0,1266698 -3131169,1630239493,2,35,0,1,1630101898,2,1.0,15.0,5.0,15.0,4.0,1266699 -3131170,1630239495,2,12,2,2,1630101898,2,-9.0,-9.0,-9.0,8.0,-9.0,1266699 -3131171,1630239262,2,90,0,1,1630101899,1,6.0,-9.0,-9.0,-9.0,2.0,1266700 -3131172,1630239261,2,85,1,2,1630101899,2,6.0,-9.0,-9.0,-9.0,4.0,1266700 -3131173,1630239302,1,48,0,1,1630101900,2,1.0,30.0,1.0,-9.0,4.0,1266701 -3131174,1630239304,1,10,2,2,1630101900,2,-9.0,-9.0,-9.0,7.0,-9.0,1266701 -3131175,1630239591,2,40,0,1,1630101901,2,6.0,-9.0,-9.0,-9.0,4.0,1266702 -3131176,1630239592,2,21,2,2,1630101901,2,6.0,30.0,6.0,15.0,4.0,1266702 -3131177,1630239544,2,55,0,1,1630101902,2,6.0,-9.0,-9.0,-9.0,4.0,1266703 -3131178,1630239545,2,26,2,2,1630101902,2,1.0,25.0,4.0,15.0,4.0,1266703 -3131179,1630239546,2,1,7,3,1630101902,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266703 -3131180,1630239425,2,46,0,1,1630101903,2,6.0,-9.0,-9.0,-9.0,4.0,1266704 -3131181,1630239428,2,16,2,2,1630101903,2,6.0,-9.0,-9.0,13.0,-9.0,1266704 -3131182,1630239624,2,31,0,1,1630101904,1,6.0,-9.0,-9.0,-9.0,4.0,1266705 -3131183,1630239626,2,0,2,2,1630101904,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266705 -3131184,1630239622,2,38,13,3,1630101904,2,6.0,-9.0,-9.0,-9.0,4.0,1266705 -3131185,1630239249,2,61,0,1,1630101905,1,3.0,-9.0,-9.0,-9.0,4.0,1266706 -3131186,1630239248,2,67,1,2,1630101905,2,6.0,-9.0,-9.0,-9.0,4.0,1266706 -3131187,1630239600,2,43,0,1,1630101906,2,6.0,-9.0,-9.0,-9.0,4.0,1266707 -3131188,1630239608,2,0,2,2,1630101906,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266707 -3131189,1630239618,2,44,0,1,1630101907,2,6.0,-9.0,-9.0,-9.0,4.0,1266708 -3131190,1630239619,2,5,3,2,1630101907,1,-9.0,-9.0,-9.0,2.0,-9.0,1266708 -3131191,1630239620,2,35,5,3,1630101907,1,6.0,-9.0,-9.0,-9.0,4.0,1266708 -3131192,1630239313,1,25,0,1,1630101908,1,1.0,45.0,1.0,-9.0,4.0,1266709 -3131193,1630239312,1,24,13,2,1630101908,2,1.0,40.0,1.0,-9.0,4.0,1266709 -3131194,1630239278,1,49,0,1,1630101909,2,6.0,-9.0,-9.0,-9.0,4.0,1266710 -3131195,1630239482,2,45,0,1,1630101910,2,1.0,40.0,1.0,-9.0,4.0,1266711 -3131196,1630239483,2,14,2,2,1630101910,2,-9.0,-9.0,-9.0,10.0,-9.0,1266711 -3131197,1630239353,2,62,0,1,1630101911,2,6.0,-9.0,-9.0,-9.0,4.0,1266712 -3131198,1630239355,2,62,1,2,1630101911,1,6.0,-9.0,-9.0,-9.0,2.0,1266712 -3131199,1630239354,2,14,3,3,1630101911,1,-9.0,-9.0,-9.0,11.0,-9.0,1266712 -3131200,1630239564,2,31,0,1,1630101912,1,6.0,-9.0,-9.0,-9.0,4.0,1266713 -3131201,1630239563,2,62,6,2,1630101912,2,1.0,37.0,1.0,-9.0,4.0,1266713 -3131202,1630239245,2,60,0,1,1630101913,2,6.0,-9.0,-9.0,-9.0,4.0,1266714 -3131203,1630239244,2,86,6,2,1630101913,2,6.0,-9.0,-9.0,-9.0,4.0,1266714 -3131204,1630239376,2,32,0,1,1630101914,2,1.0,40.0,1.0,15.0,2.0,1266715 -3131205,1630239377,2,11,2,2,1630101914,1,-9.0,-9.0,-9.0,8.0,-9.0,1266715 -3131206,1630239641,2,55,0,1,1630101915,1,1.0,40.0,1.0,-9.0,4.0,1266716 -3131207,1630239642,2,17,2,2,1630101915,2,3.0,-9.0,-9.0,13.0,4.0,1266716 -3131208,1630239527,2,59,0,1,1630101916,2,3.0,-9.0,-9.0,-9.0,4.0,1266717 -3131209,1630239274,1,28,0,1,1630101917,2,6.0,-9.0,-9.0,-9.0,4.0,1266718 -3131210,1630239247,2,79,0,1,1630101918,2,6.0,-9.0,-9.0,-9.0,4.0,1266719 -3131211,1630239638,2,54,0,1,1630101919,1,6.0,-9.0,-9.0,-9.0,4.0,1266720 -3131212,1630239640,2,75,15,2,1630101919,1,3.0,-9.0,-9.0,-9.0,4.0,1266720 -3131213,1630239639,2,58,15,3,1630101919,1,3.0,-9.0,-9.0,-9.0,4.0,1266720 -3131214,1630239525,2,63,0,1,1630101920,2,6.0,-9.0,-9.0,-9.0,4.0,1266721 -3131215,1630239526,2,15,10,2,1630101920,2,-9.0,-9.0,-9.0,12.0,-9.0,1266721 -3131216,1630239528,2,27,0,1,1630101921,2,1.0,50.0,1.0,-9.0,4.0,1266722 -3131217,1630239385,2,58,0,1,1630101922,1,6.0,-9.0,-9.0,-9.0,4.0,1266723 -3131218,1630239384,2,52,15,2,1630101922,2,3.0,-9.0,-9.0,-9.0,4.0,1266723 -3131219,1630239265,1,60,0,1,1630101923,2,6.0,-9.0,-9.0,-9.0,4.0,1266724 -3131220,1630239267,1,15,2,2,1630101923,2,-9.0,-9.0,-9.0,11.0,-9.0,1266724 -3131221,1630239616,2,25,0,1,1630101924,2,3.0,40.0,1.0,-9.0,4.0,1266725 -3131222,1630239617,2,5,2,2,1630101924,2,-9.0,-9.0,-9.0,2.0,-9.0,1266725 -3131223,1630239259,2,65,0,1,1630101925,2,6.0,-9.0,-9.0,-9.0,4.0,1266726 -3131224,1630239260,2,11,7,2,1630101925,2,-9.0,-9.0,-9.0,8.0,-9.0,1266726 -3131225,1630239321,1,40,0,1,1630101926,1,6.0,-9.0,-9.0,-9.0,2.0,1266727 -3131226,1630239322,4,23,15,2,1630101926,2,6.0,30.0,6.0,-9.0,4.0,1266727 -3131227,1630239485,2,26,0,1,1630101927,2,1.0,35.0,5.0,-9.0,4.0,1266728 -3131228,1630239486,2,3,2,2,1630101927,2,-9.0,-9.0,-9.0,-9.0,-9.0,1266728 -3131229,1630239271,1,47,0,1,1630101928,2,1.0,32.0,1.0,15.0,4.0,1266729 -3131230,1630239272,1,53,1,2,1630101928,1,1.0,40.0,1.0,-9.0,4.0,1266729 -3131231,1630239273,1,10,2,3,1630101928,2,-9.0,-9.0,-9.0,7.0,-9.0,1266729 -3131232,1630239306,1,25,0,1,1630101929,2,1.0,30.0,3.0,-9.0,4.0,1266730 -3131233,1630239268,1,53,0,1,1630101930,2,6.0,-9.0,-9.0,-9.0,4.0,1266731 -3131234,1630239269,1,26,2,2,1630101930,1,6.0,-9.0,-9.0,-9.0,4.0,1266731 -3131235,1630239311,1,26,0,1,1630101931,2,1.0,40.0,1.0,-9.0,4.0,1266732 -3131236,1630239646,2,56,0,1,1630101932,1,1.0,10.0,1.0,-9.0,4.0,1266733 -3131237,1630239647,2,14,2,2,1630101932,2,-9.0,-9.0,-9.0,11.0,-9.0,1266733 -3131238,1630239276,1,51,0,1,1630101933,2,6.0,-9.0,-9.0,-9.0,4.0,1266734 -3131239,1630239277,1,44,12,2,1630101933,1,3.0,15.0,6.0,-9.0,4.0,1266734 -3131240,1630239654,2,33,0,1,1630101934,1,1.0,40.0,1.0,-9.0,4.0,1266735 -3131241,1630239240,2,65,0,1,1630101935,2,6.0,-9.0,-9.0,-9.0,4.0,1266736 -3131242,1630239242,2,65,0,1,1630101936,2,6.0,-9.0,-9.0,-9.0,4.0,1266737 -3131243,1630239243,2,15,7,2,1630101936,1,-9.0,-9.0,-9.0,8.0,-9.0,1266737 -3131244,1630239440,2,47,0,1,1630101937,2,6.0,-9.0,-9.0,-9.0,2.0,1266738 -3131245,1630239442,2,15,2,2,1630101937,2,-9.0,-9.0,-9.0,11.0,-9.0,1266738 -3131246,1630239441,2,49,12,3,1630101937,1,1.0,40.0,1.0,-9.0,4.0,1266738 -3131247,1630239275,1,51,0,1,1630101938,2,3.0,10.0,6.0,16.0,4.0,1266739 -3131248,1630239257,2,51,0,1,1630101939,1,3.0,-9.0,-9.0,-9.0,4.0,1266740 -3131249,1630239253,2,71,6,2,1630101939,2,6.0,-9.0,-9.0,-9.0,4.0,1266740 -3131250,1630239467,2,41,0,1,1630101940,2,2.0,40.0,1.0,-9.0,4.0,1266741 -3131251,1630239469,2,17,2,2,1630101940,2,6.0,30.0,6.0,14.0,4.0,1266741 -3131252,1630239864,1,28,0,1,1630101941,1,1.0,55.0,1.0,-9.0,4.0,1266742 -3131253,1630239827,1,28,0,1,1630101942,1,1.0,60.0,1.0,16.0,4.0,1266743 -3131254,1630239823,1,42,0,1,1630101943,1,1.0,50.0,1.0,-9.0,4.0,1266744 -3131255,1630239773,1,42,0,1,1630101944,2,1.0,55.0,1.0,-9.0,4.0,1266745 -3131256,1630239774,1,39,1,2,1630101944,1,1.0,55.0,1.0,-9.0,4.0,1266745 -3131257,1630239787,1,37,0,1,1630101945,1,1.0,45.0,1.0,-9.0,4.0,1266746 -3131258,1630239786,1,25,13,2,1630101945,2,1.0,40.0,1.0,-9.0,4.0,1266746 -3131259,1630240376,2,44,0,1,1630101946,1,3.0,-9.0,-9.0,15.0,3.0,1266747 -3131260,1630240341,2,40,0,1,1630101947,1,3.0,-9.0,-9.0,-9.0,4.0,1266748 -3131261,1630240059,2,44,0,1,1630101948,2,3.0,-9.0,-9.0,-9.0,4.0,1266749 -3131262,1630239807,1,36,0,1,1630101949,1,6.0,-9.0,-9.0,16.0,4.0,1266750 -3131263,1630240147,2,31,0,1,1630101950,2,6.0,-9.0,-9.0,-9.0,4.0,1266751 -3131264,1630239684,2,69,0,1,1630101951,2,6.0,-9.0,-9.0,-9.0,4.0,1266752 -3131265,1630239669,2,93,0,1,1630101952,2,6.0,-9.0,-9.0,-9.0,4.0,1266753 -3131266,1630239727,2,84,0,1,1630101953,2,6.0,-9.0,-9.0,-9.0,4.0,1266754 -3131267,1630240545,2,80,0,1,1630101954,1,6.0,-9.0,-9.0,-9.0,2.0,1266755 -3131268,1630239705,2,89,0,1,1630101955,2,6.0,-9.0,-9.0,-9.0,4.0,1266756 -3131269,1630239792,1,33,0,1,1630101956,2,1.0,50.0,1.0,-9.0,4.0,1266757 -3131270,1630239765,1,25,0,1,1630101957,2,1.0,45.0,1.0,16.0,4.0,1266758 -3131271,1630239768,4,25,1,2,1630101957,1,1.0,40.0,1.0,16.0,4.0,1266758 -3131272,1630239766,1,25,0,1,1630101958,2,1.0,45.0,1.0,16.0,4.0,1266759 -3131273,1630239769,4,25,1,2,1630101958,1,1.0,40.0,1.0,16.0,4.0,1266759 -3131274,1630239767,1,25,0,1,1630101959,2,1.0,45.0,1.0,16.0,4.0,1266760 -3131275,1630239770,4,25,1,2,1630101959,1,1.0,40.0,1.0,16.0,4.0,1266760 -3131276,1630239991,2,32,0,1,1630101960,2,1.0,40.0,1.0,-9.0,4.0,1266761 -3131277,1630240143,2,38,0,1,1630101961,2,1.0,45.0,1.0,-9.0,4.0,1266762 -3131278,1630240001,2,25,0,1,1630101962,2,1.0,40.0,1.0,-9.0,4.0,1266763 -3131279,1630239838,1,31,0,1,1630101963,1,2.0,70.0,1.0,-9.0,4.0,1266764 -3131280,1630240444,2,39,0,1,1630101964,1,6.0,-9.0,-9.0,-9.0,4.0,1266765 -3131281,1630240505,2,39,0,1,1630101965,1,6.0,-9.0,-9.0,-9.0,4.0,1266766 -3131282,1630239967,2,41,0,1,1630101966,2,6.0,-9.0,-9.0,-9.0,2.0,1266767 -3131283,1630239968,2,41,0,1,1630101967,2,6.0,-9.0,-9.0,-9.0,2.0,1266768 -3131284,1630240303,2,34,0,1,1630101968,1,6.0,-9.0,-9.0,-9.0,4.0,1266769 -3131285,1630240420,2,33,0,1,1630101969,1,3.0,-9.0,-9.0,15.0,4.0,1266770 -3131286,1630240226,2,41,0,1,1630101970,1,3.0,24.0,5.0,-9.0,4.0,1266771 -3131287,1630240412,2,42,0,1,1630101971,1,3.0,-9.0,-9.0,-9.0,4.0,1266772 -3131288,1630240506,2,39,0,1,1630101972,1,6.0,-9.0,-9.0,-9.0,4.0,1266773 -3131289,1630240509,2,42,0,1,1630101973,1,6.0,-9.0,-9.0,-9.0,4.0,1266774 -3131290,1630240474,2,39,0,1,1630101974,1,6.0,-9.0,-9.0,-9.0,4.0,1266775 -3131291,1630239883,2,38,0,1,1630101975,2,6.0,-9.0,-9.0,-9.0,4.0,1266776 -3131292,1630240507,2,39,0,1,1630101976,1,6.0,-9.0,-9.0,-9.0,4.0,1266777 -3131293,1630240225,2,44,0,1,1630101977,1,6.0,-9.0,-9.0,-9.0,4.0,1266778 -3131294,1630240421,2,33,0,1,1630101978,1,3.0,-9.0,-9.0,15.0,4.0,1266779 -3131295,1630240413,2,42,0,1,1630101979,1,3.0,-9.0,-9.0,-9.0,4.0,1266780 -3131296,1630240239,2,44,0,1,1630101980,1,3.0,6.0,6.0,-9.0,2.0,1266781 -3131297,1630239937,2,32,0,1,1630101981,2,6.0,-9.0,-9.0,16.0,4.0,1266782 -3131298,1630239887,2,40,0,1,1630101982,2,6.0,-9.0,-9.0,12.0,4.0,1266783 -3131299,1630240433,2,41,0,1,1630101983,1,3.0,40.0,5.0,-9.0,4.0,1266784 -3131300,1630240127,2,27,0,1,1630101984,2,3.0,-9.0,-9.0,-9.0,4.0,1266785 -3131301,1630239899,2,34,0,1,1630101985,2,3.0,-9.0,-9.0,15.0,4.0,1266786 -3131302,1630239888,2,40,0,1,1630101986,2,6.0,-9.0,-9.0,12.0,4.0,1266787 -3131303,1630239938,2,32,0,1,1630101987,2,6.0,-9.0,-9.0,16.0,4.0,1266788 -3131304,1630240133,2,30,0,1,1630101988,2,6.0,-9.0,-9.0,-9.0,4.0,1266789 -3131305,1630240128,2,27,0,1,1630101989,2,3.0,-9.0,-9.0,-9.0,4.0,1266790 -3131306,1630240304,2,34,0,1,1630101990,1,6.0,-9.0,-9.0,-9.0,4.0,1266791 -3131307,1630240037,2,43,0,1,1630101991,2,6.0,-9.0,-9.0,-9.0,4.0,1266792 -3131308,1630239889,2,40,0,1,1630101992,2,6.0,-9.0,-9.0,12.0,4.0,1266793 -3131309,1630240129,2,27,0,1,1630101993,2,3.0,-9.0,-9.0,-9.0,4.0,1266794 -3131310,1630240353,2,43,0,1,1630101994,1,6.0,-9.0,-9.0,-9.0,4.0,1266795 -3131311,1630240305,2,34,0,1,1630101995,1,6.0,-9.0,-9.0,-9.0,4.0,1266796 -3131312,1630239939,2,32,0,1,1630101996,2,6.0,-9.0,-9.0,16.0,4.0,1266797 -3131313,1630240246,2,26,0,1,1630101997,1,6.0,-9.0,-9.0,-9.0,4.0,1266798 -3131314,1630240134,2,30,0,1,1630101998,2,6.0,-9.0,-9.0,-9.0,4.0,1266799 -3131315,1630239900,2,34,0,1,1630101999,2,3.0,-9.0,-9.0,15.0,4.0,1266800 -3131316,1630240422,2,33,0,1,1630102000,1,3.0,-9.0,-9.0,15.0,4.0,1266801 -3131317,1630240445,2,39,0,1,1630102001,1,6.0,-9.0,-9.0,-9.0,4.0,1266802 -3131318,1630240354,2,28,0,1,1630102002,1,3.0,-9.0,-9.0,-9.0,4.0,1266803 -3131319,1630239813,1,39,0,1,1630102003,1,6.0,8.0,6.0,16.0,4.0,1266804 -3131320,1630239814,1,39,0,1,1630102004,1,6.0,8.0,6.0,16.0,4.0,1266805 -3131321,1630239753,1,27,0,1,1630102005,2,3.0,-9.0,-9.0,-9.0,4.0,1266806 -3131322,1630239815,1,39,0,1,1630102006,1,6.0,8.0,6.0,16.0,4.0,1266807 -3131323,1630240461,2,28,0,1,1630102007,1,3.0,25.0,4.0,15.0,4.0,1266808 -3131324,1630240424,2,29,0,1,1630102008,1,6.0,-9.0,-9.0,-9.0,4.0,1266809 -3131325,1630240462,2,28,0,1,1630102009,1,3.0,25.0,4.0,15.0,4.0,1266810 -3131326,1630240514,2,38,0,1,1630102010,1,6.0,-9.0,-9.0,-9.0,4.0,1266811 -3131327,1630240463,2,28,0,1,1630102011,1,3.0,25.0,4.0,15.0,4.0,1266812 -3131328,1630239894,2,26,0,1,1630102012,2,6.0,-9.0,-9.0,-9.0,4.0,1266813 -3131329,1630239950,2,33,0,1,1630102013,2,3.0,-9.0,-9.0,-9.0,4.0,1266814 -3131330,1630240300,2,35,0,1,1630102014,1,3.0,-9.0,-9.0,-9.0,4.0,1266815 -3131331,1630240346,2,43,0,1,1630102015,1,6.0,40.0,1.0,15.0,4.0,1266816 -3131332,1630239998,2,42,0,1,1630102016,2,6.0,-9.0,-9.0,-9.0,4.0,1266817 -3131333,1630240347,2,43,0,1,1630102017,1,6.0,40.0,1.0,15.0,4.0,1266818 -3131334,1630240416,2,40,0,1,1630102018,1,6.0,-9.0,-9.0,-9.0,4.0,1266819 -3131335,1630240268,2,37,0,1,1630102019,1,6.0,-9.0,-9.0,-9.0,4.0,1266820 -3131336,1630240446,2,29,0,1,1630102020,1,6.0,-9.0,-9.0,16.0,3.0,1266821 -3131337,1630239999,2,42,0,1,1630102021,2,6.0,-9.0,-9.0,-9.0,4.0,1266822 -3131338,1630239949,2,42,0,1,1630102022,2,6.0,-9.0,-9.0,-9.0,4.0,1266823 -3131339,1630240464,2,28,0,1,1630102023,1,3.0,25.0,4.0,15.0,4.0,1266824 -3131340,1630240301,2,35,0,1,1630102024,1,3.0,-9.0,-9.0,-9.0,4.0,1266825 -3131341,1630240425,2,29,0,1,1630102025,1,6.0,-9.0,-9.0,-9.0,4.0,1266826 -3131342,1630240302,2,35,0,1,1630102026,1,3.0,-9.0,-9.0,-9.0,4.0,1266827 -3131343,1630240447,2,29,0,1,1630102027,1,6.0,-9.0,-9.0,16.0,3.0,1266828 -3131344,1630240448,2,29,0,1,1630102028,1,6.0,-9.0,-9.0,16.0,3.0,1266829 -3131345,1630240000,2,42,0,1,1630102029,2,6.0,-9.0,-9.0,-9.0,4.0,1266830 -3131346,1630240417,2,40,0,1,1630102030,1,6.0,-9.0,-9.0,-9.0,4.0,1266831 -3131347,1630240085,2,40,0,1,1630102031,2,3.0,-9.0,-9.0,16.0,4.0,1266832 -3131348,1630239819,1,31,0,1,1630102032,1,3.0,8.0,4.0,-9.0,4.0,1266833 -3131349,1630239795,1,37,0,1,1630102033,2,6.0,-9.0,-9.0,16.0,4.0,1266834 -3131350,1630239816,1,40,0,1,1630102034,1,6.0,28.0,4.0,-9.0,4.0,1266835 -3131351,1630239803,1,26,0,1,1630102035,2,6.0,-9.0,-9.0,16.0,4.0,1266836 -3131352,1630239820,1,31,0,1,1630102036,1,3.0,8.0,4.0,-9.0,4.0,1266837 -3131353,1630239817,1,40,0,1,1630102037,1,6.0,28.0,4.0,-9.0,4.0,1266838 -3131354,1630239821,1,31,0,1,1630102038,1,3.0,8.0,4.0,-9.0,4.0,1266839 -3131355,1630240020,2,39,0,1,1630102039,2,3.0,-9.0,-9.0,-9.0,4.0,1266840 -3131356,1630240399,2,35,0,1,1630102040,1,6.0,-9.0,-9.0,-9.0,4.0,1266841 -3131357,1630240400,2,30,5,2,1630102040,1,6.0,-9.0,-9.0,-9.0,4.0,1266841 -3131358,1630240230,2,34,0,1,1630102041,1,3.0,-9.0,-9.0,-9.0,4.0,1266842 -3131359,1630240233,2,18,10,2,1630102041,1,6.0,-9.0,-9.0,14.0,4.0,1266842 -3131360,1630240465,2,44,0,1,1630102042,1,6.0,-9.0,-9.0,14.0,4.0,1266843 -3131361,1630240466,2,50,5,2,1630102042,1,6.0,-9.0,-9.0,-9.0,4.0,1266843 -3131362,1630240231,2,34,0,1,1630102043,1,3.0,-9.0,-9.0,-9.0,4.0,1266844 -3131363,1630240234,2,18,10,2,1630102043,1,6.0,-9.0,-9.0,14.0,4.0,1266844 -3131364,1630240232,2,34,0,1,1630102044,1,3.0,-9.0,-9.0,-9.0,4.0,1266845 -3131365,1630240235,2,18,10,2,1630102044,1,6.0,-9.0,-9.0,14.0,4.0,1266845 -3131366,1630240209,2,40,0,1,1630102045,1,6.0,-9.0,-9.0,-9.0,4.0,1266846 -3131367,1630240210,2,7,2,2,1630102045,2,-9.0,-9.0,-9.0,3.0,-9.0,1266846 -3131368,1630240178,2,40,0,1,1630102046,2,6.0,-9.0,-9.0,-9.0,4.0,1266847 -3131369,1630240180,2,21,2,2,1630102046,2,6.0,30.0,6.0,15.0,4.0,1266847 -3131370,1630239996,2,30,0,1,1630102047,2,3.0,-9.0,-9.0,-9.0,4.0,1266848 -3131371,1630239997,2,25,10,2,1630102047,1,3.0,36.0,5.0,-9.0,4.0,1266848 -3131372,1630240179,2,40,0,1,1630102048,2,6.0,-9.0,-9.0,-9.0,4.0,1266849 -3131373,1630240181,2,21,2,2,1630102048,2,6.0,30.0,6.0,15.0,4.0,1266849 -3131374,1630239965,2,37,0,1,1630102049,2,6.0,-9.0,-9.0,-9.0,4.0,1266850 -3131375,1630239966,2,13,2,2,1630102049,2,-9.0,-9.0,-9.0,9.0,-9.0,1266850 -3131376,1630240146,2,27,0,1,1630102050,2,1.0,35.0,1.0,-9.0,4.0,1266851 -3131377,1630239977,2,42,0,1,1630102051,2,1.0,45.0,1.0,-9.0,4.0,1266852 -3131378,1630240183,2,37,0,1,1630102052,2,1.0,35.0,2.0,-9.0,4.0,1266853 -3131379,1630240278,2,37,0,1,1630102053,1,1.0,40.0,6.0,-9.0,4.0,1266854 -3131380,1630240253,2,40,0,1,1630102054,1,1.0,40.0,6.0,-9.0,4.0,1266855 -3131381,1630240254,2,40,0,1,1630102055,1,1.0,40.0,6.0,-9.0,4.0,1266856 -3131382,1630240287,2,41,0,1,1630102056,1,1.0,40.0,1.0,-9.0,4.0,1266857 -3131383,1630240255,2,40,0,1,1630102057,1,1.0,40.0,6.0,-9.0,4.0,1266858 -3131384,1630240256,2,40,0,1,1630102058,1,1.0,40.0,6.0,-9.0,4.0,1266859 -3131385,1630239788,1,25,0,1,1630102059,2,1.0,30.0,3.0,-9.0,4.0,1266860 -3131386,1630239789,1,44,0,1,1630102060,2,1.0,40.0,1.0,-9.0,4.0,1266861 -3131387,1630239809,1,42,0,1,1630102061,1,1.0,40.0,1.0,-9.0,2.0,1266862 -3131388,1630239850,1,32,0,1,1630102062,1,1.0,60.0,5.0,-9.0,4.0,1266863 -3131389,1630240398,2,33,0,1,1630102063,1,1.0,10.0,6.0,-9.0,4.0,1266864 -3131390,1630240031,2,29,0,1,1630102064,2,1.0,40.0,1.0,-9.0,4.0,1266865 -3131391,1630240500,2,35,0,1,1630102065,1,1.0,40.0,4.0,-9.0,4.0,1266866 -3131392,1630240110,2,29,0,1,1630102066,2,1.0,40.0,2.0,-9.0,4.0,1266867 -3131393,1630240501,2,35,0,1,1630102067,1,1.0,40.0,4.0,-9.0,4.0,1266868 -3131394,1630240478,2,44,0,1,1630102068,1,1.0,40.0,1.0,-9.0,4.0,1266869 -3131395,1630240339,2,30,0,1,1630102069,1,1.0,40.0,1.0,-9.0,4.0,1266870 -3131396,1630240411,2,29,0,1,1630102070,1,1.0,40.0,1.0,-9.0,4.0,1266871 -3131397,1630240502,2,35,0,1,1630102071,1,1.0,40.0,4.0,-9.0,4.0,1266872 -3131398,1630240032,2,29,0,1,1630102072,2,1.0,40.0,1.0,-9.0,4.0,1266873 -3131399,1630240111,2,29,0,1,1630102073,2,1.0,40.0,2.0,-9.0,4.0,1266874 -3131400,1630239869,1,31,0,1,1630102074,1,1.0,40.0,6.0,16.0,2.0,1266875 -3131401,1630239857,1,26,0,1,1630102075,1,1.0,60.0,2.0,16.0,4.0,1266876 -3131402,1630239836,1,35,0,1,1630102076,1,1.0,22.0,1.0,16.0,4.0,1266877 -3131403,1630239806,1,31,0,1,1630102077,1,1.0,35.0,1.0,-9.0,4.0,1266878 -3131404,1630239796,1,26,0,1,1630102078,2,1.0,20.0,4.0,16.0,4.0,1266879 -3131405,1630239799,1,31,0,1,1630102079,2,1.0,20.0,1.0,-9.0,4.0,1266880 -3131406,1630239800,1,31,0,1,1630102080,2,1.0,20.0,1.0,-9.0,4.0,1266881 -3131407,1630239822,1,25,0,1,1630102081,1,1.0,10.0,5.0,16.0,4.0,1266882 -3131408,1630239837,1,35,0,1,1630102082,1,1.0,22.0,1.0,16.0,4.0,1266883 -3131409,1630239828,1,27,0,1,1630102083,1,1.0,40.0,1.0,-9.0,4.0,1266884 -3131410,1630239801,1,31,0,1,1630102084,2,1.0,20.0,1.0,-9.0,4.0,1266885 -3131411,1630239776,1,26,0,1,1630102085,2,1.0,40.0,5.0,-9.0,4.0,1266886 -3131412,1630239829,1,27,0,1,1630102086,1,1.0,40.0,1.0,-9.0,4.0,1266887 -3131413,1630239802,1,31,0,1,1630102087,2,1.0,20.0,1.0,-9.0,4.0,1266888 -3131414,1630240171,2,31,0,1,1630102088,1,6.0,-9.0,-9.0,-9.0,4.0,1266889 -3131415,1630240170,2,62,6,2,1630102088,2,1.0,37.0,1.0,-9.0,4.0,1266889 -3131416,1630239989,2,37,0,1,1630102089,2,2.0,25.0,1.0,-9.0,4.0,1266890 -3131417,1630239990,2,19,2,2,1630102089,1,3.0,-9.0,-9.0,-9.0,4.0,1266890 -3131418,1630239951,2,36,0,1,1630102090,2,1.0,25.0,1.0,-9.0,4.0,1266891 -3131419,1630239953,2,18,2,2,1630102090,1,6.0,-9.0,-9.0,14.0,4.0,1266891 -3131420,1630239952,2,36,0,1,1630102091,2,1.0,25.0,1.0,-9.0,4.0,1266892 -3131421,1630239954,2,18,2,2,1630102091,1,6.0,-9.0,-9.0,14.0,4.0,1266892 -3131422,1630240021,2,43,0,1,1630102092,2,6.0,20.0,6.0,15.0,4.0,1266893 -3131423,1630240022,2,18,2,2,1630102092,1,2.0,20.0,4.0,14.0,4.0,1266893 -3131424,1630240102,2,63,0,1,1630102093,2,1.0,40.0,1.0,-9.0,4.0,1266894 -3131425,1630240385,2,60,0,1,1630102094,1,1.0,40.0,1.0,-9.0,4.0,1266895 -3131426,1630240386,2,60,0,1,1630102095,1,1.0,40.0,1.0,-9.0,4.0,1266896 -3131427,1630240189,2,58,0,1,1630102096,2,1.0,23.0,2.0,-9.0,4.0,1266897 -3131428,1630240155,2,45,0,1,1630102097,2,1.0,40.0,1.0,-9.0,4.0,1266898 -3131429,1630239798,1,51,0,1,1630102098,2,1.0,40.0,1.0,16.0,4.0,1266899 -3131430,1630239858,1,57,0,1,1630102099,1,1.0,45.0,2.0,-9.0,4.0,1266900 -3131431,1630239854,1,50,0,1,1630102100,1,1.0,60.0,1.0,-9.0,4.0,1266901 -3131432,1630239859,1,57,0,1,1630102101,1,1.0,45.0,2.0,-9.0,4.0,1266902 -3131433,1630239855,1,50,0,1,1630102102,1,1.0,60.0,1.0,-9.0,4.0,1266903 -3131434,1630240047,2,53,0,1,1630102103,2,1.0,40.0,1.0,-9.0,4.0,1266904 -3131435,1630240049,2,46,1,2,1630102103,1,1.0,40.0,1.0,-9.0,4.0,1266904 -3131436,1630239782,1,59,0,1,1630102104,1,1.0,48.0,1.0,-9.0,4.0,1266905 -3131437,1630239781,1,59,1,2,1630102104,2,1.0,45.0,1.0,-9.0,4.0,1266905 -3131438,1630240228,2,60,0,1,1630102105,1,6.0,-9.0,-9.0,-9.0,4.0,1266906 -3131439,1630240054,2,58,0,1,1630102106,2,1.0,40.0,1.0,-9.0,4.0,1266907 -3131440,1630240068,2,50,0,1,1630102107,2,1.0,40.0,1.0,-9.0,4.0,1266908 -3131441,1630240510,2,50,0,1,1630102108,1,1.0,50.0,1.0,-9.0,4.0,1266909 -3131442,1630240197,2,50,0,1,1630102109,2,1.0,45.0,1.0,-9.0,4.0,1266910 -3131443,1630240387,2,56,0,1,1630102110,1,1.0,40.0,1.0,-9.0,4.0,1266911 -3131444,1630239922,2,58,0,1,1630102111,2,6.0,-9.0,-9.0,-9.0,2.0,1266912 -3131445,1630239916,2,50,0,1,1630102112,2,6.0,-9.0,-9.0,-9.0,4.0,1266913 -3131446,1630240070,2,46,0,1,1630102113,2,6.0,-9.0,-9.0,-9.0,4.0,1266914 -3131447,1630239981,2,58,0,1,1630102114,2,6.0,-9.0,-9.0,-9.0,4.0,1266915 -3131448,1630240156,2,58,0,1,1630102115,2,6.0,-9.0,-9.0,-9.0,4.0,1266916 -3131449,1630240192,2,61,0,1,1630102116,2,6.0,-9.0,-9.0,-9.0,4.0,1266917 -3131450,1630240394,2,51,0,1,1630102117,1,3.0,-9.0,-9.0,-9.0,4.0,1266918 -3131451,1630240017,2,50,0,1,1630102118,2,6.0,-9.0,-9.0,-9.0,4.0,1266919 -3131452,1630240289,2,54,0,1,1630102119,1,6.0,-9.0,-9.0,-9.0,4.0,1266920 -3131453,1630240503,2,50,0,1,1630102120,1,6.0,-9.0,-9.0,-9.0,4.0,1266921 -3131454,1630240342,2,62,0,1,1630102121,1,6.0,-9.0,-9.0,-9.0,2.0,1266922 -3131455,1630240172,2,45,0,1,1630102122,2,6.0,-9.0,-9.0,-9.0,4.0,1266923 -3131456,1630240186,2,51,0,1,1630102123,2,3.0,40.0,3.0,-9.0,2.0,1266924 -3131457,1630239940,2,53,0,1,1630102124,2,6.0,-9.0,-9.0,-9.0,4.0,1266925 -3131458,1630240193,2,61,0,1,1630102125,2,6.0,-9.0,-9.0,-9.0,4.0,1266926 -3131459,1630239973,2,55,0,1,1630102126,2,6.0,-9.0,-9.0,-9.0,4.0,1266927 -3131460,1630240334,2,60,0,1,1630102127,1,6.0,-9.0,-9.0,-9.0,4.0,1266928 -3131461,1630240018,2,50,0,1,1630102128,2,6.0,-9.0,-9.0,-9.0,4.0,1266929 -3131462,1630239917,2,50,0,1,1630102129,2,6.0,-9.0,-9.0,-9.0,4.0,1266930 -3131463,1630239971,2,55,0,1,1630102130,2,6.0,-9.0,-9.0,-9.0,4.0,1266931 -3131464,1630240458,2,54,0,1,1630102131,1,6.0,-9.0,-9.0,-9.0,4.0,1266932 -3131465,1630240005,2,58,0,1,1630102132,2,6.0,-9.0,-9.0,-9.0,4.0,1266933 -3131466,1630239933,2,52,0,1,1630102133,2,6.0,-9.0,-9.0,-9.0,4.0,1266934 -3131467,1630240168,2,54,0,1,1630102134,2,6.0,-9.0,-9.0,-9.0,4.0,1266935 -3131468,1630240245,2,61,0,1,1630102135,1,6.0,-9.0,-9.0,-9.0,4.0,1266936 -3131469,1630240251,2,60,0,1,1630102136,1,6.0,-9.0,-9.0,-9.0,4.0,1266937 -3131470,1630240307,2,54,0,1,1630102137,1,6.0,-9.0,-9.0,-9.0,2.0,1266938 -3131471,1630240023,2,59,0,1,1630102138,2,3.0,-9.0,-9.0,-9.0,4.0,1266939 -3131472,1630240173,2,45,0,1,1630102139,2,6.0,-9.0,-9.0,-9.0,4.0,1266940 -3131473,1630240427,2,61,0,1,1630102140,1,6.0,-9.0,-9.0,-9.0,4.0,1266941 -3131474,1630240006,2,58,0,1,1630102141,2,6.0,-9.0,-9.0,-9.0,4.0,1266942 -3131475,1630239943,2,61,0,1,1630102142,2,6.0,-9.0,-9.0,-9.0,4.0,1266943 -3131476,1630240095,2,53,0,1,1630102143,2,6.0,-9.0,-9.0,-9.0,4.0,1266944 -3131477,1630240187,2,51,0,1,1630102144,2,3.0,40.0,3.0,-9.0,2.0,1266945 -3131478,1630240131,2,53,0,1,1630102145,2,6.0,-9.0,-9.0,-9.0,4.0,1266946 -3131479,1630240312,2,59,0,1,1630102146,1,6.0,-9.0,-9.0,-9.0,2.0,1266947 -3131480,1630240361,2,56,0,1,1630102147,1,6.0,-9.0,-9.0,-9.0,2.0,1266948 -3131481,1630240348,2,58,0,1,1630102148,1,6.0,-9.0,-9.0,-9.0,4.0,1266949 -3131482,1630239923,2,58,0,1,1630102149,2,6.0,-9.0,-9.0,-9.0,2.0,1266950 -3131483,1630240324,2,61,0,1,1630102150,1,6.0,32.0,6.0,15.0,4.0,1266951 -3131484,1630240365,2,54,0,1,1630102151,1,6.0,-9.0,-9.0,-9.0,4.0,1266952 -3131485,1630240311,2,52,0,1,1630102152,1,6.0,-9.0,-9.0,-9.0,2.0,1266953 -3131486,1630239982,2,58,0,1,1630102153,2,6.0,-9.0,-9.0,-9.0,4.0,1266954 -3131487,1630240390,2,45,0,1,1630102154,1,6.0,-9.0,-9.0,-9.0,4.0,1266955 -3131488,1630240009,2,51,0,1,1630102155,2,6.0,-9.0,-9.0,-9.0,4.0,1266956 -3131489,1630240294,2,51,0,1,1630102156,1,6.0,-9.0,-9.0,-9.0,2.0,1266957 -3131490,1630240438,2,61,0,1,1630102157,1,6.0,-9.0,-9.0,-9.0,4.0,1266958 -3131491,1630240258,2,58,0,1,1630102158,1,6.0,-9.0,-9.0,-9.0,3.0,1266959 -3131492,1630240331,2,64,0,1,1630102159,1,6.0,-9.0,-9.0,-9.0,4.0,1266960 -3131493,1630240240,2,54,0,1,1630102160,1,3.0,-9.0,-9.0,-9.0,2.0,1266961 -3131494,1630239944,2,61,0,1,1630102161,2,6.0,-9.0,-9.0,-9.0,4.0,1266962 -3131495,1630239962,2,54,0,1,1630102162,2,6.0,-9.0,-9.0,-9.0,4.0,1266963 -3131496,1630240408,2,47,0,1,1630102163,1,6.0,-9.0,-9.0,-9.0,4.0,1266964 -3131497,1630240512,2,50,0,1,1630102164,1,6.0,-9.0,-9.0,-9.0,4.0,1266965 -3131498,1630240332,2,64,0,1,1630102165,1,6.0,-9.0,-9.0,-9.0,4.0,1266966 -3131499,1630240083,2,62,0,1,1630102166,2,6.0,-9.0,-9.0,-9.0,4.0,1266967 -3131500,1630239886,2,57,0,1,1630102167,2,6.0,-9.0,-9.0,-9.0,4.0,1266968 -3131501,1630240308,2,58,0,1,1630102168,1,6.0,-9.0,-9.0,-9.0,2.0,1266969 -3131502,1630240271,2,60,0,1,1630102169,1,3.0,-9.0,-9.0,-9.0,4.0,1266970 -3131503,1630240345,2,56,0,1,1630102170,1,6.0,-9.0,-9.0,-9.0,4.0,1266971 -3131504,1630239919,2,58,0,1,1630102171,2,6.0,-9.0,-9.0,-9.0,4.0,1266972 -3131505,1630240297,2,46,0,1,1630102172,1,6.0,-9.0,-9.0,-9.0,4.0,1266973 -3131506,1630240355,2,59,0,1,1630102173,1,6.0,-9.0,-9.0,-9.0,2.0,1266974 -3131507,1630240343,2,62,0,1,1630102174,1,6.0,-9.0,-9.0,-9.0,2.0,1266975 -3131508,1630240313,2,59,0,1,1630102175,1,6.0,-9.0,-9.0,-9.0,2.0,1266976 -3131509,1630239941,2,54,0,1,1630102176,2,6.0,-9.0,-9.0,15.0,4.0,1266977 -3131510,1630240046,2,53,0,1,1630102177,2,6.0,-9.0,-9.0,-9.0,4.0,1266978 -3131511,1630240126,2,51,0,1,1630102178,2,6.0,-9.0,-9.0,-9.0,4.0,1266979 -3131512,1630240428,2,61,0,1,1630102179,1,6.0,-9.0,-9.0,-9.0,4.0,1266980 -3131513,1630239934,2,52,0,1,1630102180,2,6.0,-9.0,-9.0,-9.0,4.0,1266981 -3131514,1630240340,2,56,0,1,1630102181,1,3.0,-9.0,-9.0,-9.0,2.0,1266982 -3131515,1630240487,2,59,0,1,1630102182,1,6.0,-9.0,-9.0,-9.0,4.0,1266983 -3131516,1630240379,2,53,0,1,1630102183,1,6.0,-9.0,-9.0,-9.0,4.0,1266984 -3131517,1630240429,2,61,0,1,1630102184,1,6.0,-9.0,-9.0,-9.0,4.0,1266985 -3131518,1630240034,2,61,0,1,1630102185,2,6.0,-9.0,-9.0,-9.0,4.0,1266986 -3131519,1630240260,2,55,0,1,1630102186,1,6.0,-9.0,-9.0,-9.0,4.0,1266987 -3131520,1630240481,2,57,0,1,1630102187,1,6.0,-9.0,-9.0,-9.0,4.0,1266988 -3131521,1630240073,2,59,0,1,1630102188,2,6.0,-9.0,-9.0,-9.0,4.0,1266989 -3131522,1630240211,2,53,0,1,1630102189,1,3.0,-9.0,-9.0,-9.0,4.0,1266990 -3131523,1630240132,2,53,0,1,1630102190,2,6.0,-9.0,-9.0,-9.0,4.0,1266991 -3131524,1630240252,2,60,0,1,1630102191,1,6.0,-9.0,-9.0,-9.0,4.0,1266992 -3131525,1630240236,2,58,0,1,1630102192,1,6.0,-9.0,-9.0,-9.0,4.0,1266993 -3131526,1630240322,2,57,0,1,1630102193,1,6.0,-9.0,-9.0,-9.0,2.0,1266994 -3131527,1630240431,2,53,0,1,1630102194,1,6.0,-9.0,-9.0,-9.0,4.0,1266995 -3131528,1630240244,2,58,0,1,1630102195,1,6.0,-9.0,-9.0,-9.0,4.0,1266996 -3131529,1630240175,2,59,0,1,1630102196,2,6.0,-9.0,-9.0,-9.0,4.0,1266997 -3131530,1630240488,2,61,0,1,1630102197,1,3.0,-9.0,-9.0,15.0,4.0,1266998 -3131531,1630240372,2,60,0,1,1630102198,1,6.0,-9.0,-9.0,-9.0,4.0,1266999 -3131532,1630240380,2,53,0,1,1630102199,1,6.0,-9.0,-9.0,-9.0,4.0,1267000 -3131533,1630240011,2,45,0,1,1630102200,2,6.0,-9.0,-9.0,-9.0,4.0,1267001 -3131534,1630240241,2,54,0,1,1630102201,1,3.0,-9.0,-9.0,-9.0,2.0,1267002 -3131535,1630240381,2,53,0,1,1630102202,1,6.0,-9.0,-9.0,-9.0,4.0,1267003 -3131536,1630240237,2,58,0,1,1630102203,1,6.0,-9.0,-9.0,-9.0,4.0,1267004 -3131537,1630240409,2,47,0,1,1630102204,1,6.0,-9.0,-9.0,-9.0,4.0,1267005 -3131538,1630240325,2,61,0,1,1630102205,1,6.0,32.0,6.0,15.0,4.0,1267006 -3131539,1630240215,2,54,0,1,1630102206,1,6.0,-9.0,-9.0,-9.0,4.0,1267007 -3131540,1630240088,2,62,0,1,1630102207,2,6.0,-9.0,-9.0,-9.0,4.0,1267008 -3131541,1630240072,2,62,0,1,1630102208,2,6.0,-9.0,-9.0,-9.0,4.0,1267009 -3131542,1630240298,2,46,0,1,1630102209,1,6.0,-9.0,-9.0,-9.0,4.0,1267010 -3131543,1630240019,2,50,0,1,1630102210,2,6.0,-9.0,-9.0,-9.0,4.0,1267011 -3131544,1630240029,2,52,0,1,1630102211,2,6.0,-9.0,-9.0,-9.0,4.0,1267012 -3131545,1630240136,2,51,0,1,1630102212,2,3.0,-9.0,-9.0,-9.0,4.0,1267013 -3131546,1630240335,2,60,0,1,1630102213,1,6.0,-9.0,-9.0,-9.0,4.0,1267014 -3131547,1630240035,2,61,0,1,1630102214,2,6.0,-9.0,-9.0,-9.0,4.0,1267015 -3131548,1630240259,2,58,0,1,1630102215,1,6.0,-9.0,-9.0,-9.0,3.0,1267016 -3131549,1630240071,2,46,0,1,1630102216,2,6.0,-9.0,-9.0,-9.0,4.0,1267017 -3131550,1630240116,2,52,0,1,1630102217,2,6.0,-9.0,-9.0,-9.0,4.0,1267018 -3131551,1630239945,2,61,0,1,1630102218,2,6.0,-9.0,-9.0,-9.0,4.0,1267019 -3131552,1630239974,2,55,0,1,1630102219,2,6.0,-9.0,-9.0,-9.0,4.0,1267020 -3131553,1630240489,2,61,0,1,1630102220,1,3.0,-9.0,-9.0,15.0,4.0,1267021 -3131554,1630240257,2,58,0,1,1630102221,1,6.0,-9.0,-9.0,-9.0,4.0,1267022 -3131555,1630240025,2,62,0,1,1630102222,2,6.0,-9.0,-9.0,-9.0,4.0,1267023 -3131556,1630240318,2,50,0,1,1630102223,1,3.0,-9.0,-9.0,-9.0,4.0,1267024 -3131557,1630240382,2,53,0,1,1630102224,1,6.0,-9.0,-9.0,-9.0,4.0,1267025 -3131558,1630240206,2,53,0,1,1630102225,1,6.0,-9.0,-9.0,-9.0,4.0,1267026 -3131559,1630240204,2,63,0,1,1630102226,2,6.0,-9.0,-9.0,-9.0,4.0,1267027 -3131560,1630240269,2,55,0,1,1630102227,1,6.0,-9.0,-9.0,-9.0,2.0,1267028 -3131561,1630240504,2,50,0,1,1630102228,1,6.0,-9.0,-9.0,-9.0,4.0,1267029 -3131562,1630240272,2,60,0,1,1630102229,1,3.0,-9.0,-9.0,-9.0,4.0,1267030 -3131563,1630240460,2,47,0,1,1630102230,1,3.0,-9.0,-9.0,-9.0,4.0,1267031 -3131564,1630239995,2,63,0,1,1630102231,2,6.0,-9.0,-9.0,-9.0,4.0,1267032 -3131565,1630240096,2,53,0,1,1630102232,2,6.0,-9.0,-9.0,-9.0,4.0,1267033 -3131566,1630239978,2,64,0,1,1630102233,2,6.0,-9.0,-9.0,-9.0,4.0,1267034 -3131567,1630240373,2,60,0,1,1630102234,1,6.0,-9.0,-9.0,-9.0,4.0,1267035 -3131568,1630240319,2,45,0,1,1630102235,1,6.0,-9.0,-9.0,-9.0,4.0,1267036 -3131569,1630240214,2,54,0,1,1630102236,1,6.0,-9.0,-9.0,-9.0,4.0,1267037 -3131570,1630240437,2,64,0,1,1630102237,1,6.0,-9.0,-9.0,-9.0,2.0,1267038 -3131571,1630240391,2,45,0,1,1630102238,1,6.0,-9.0,-9.0,-9.0,4.0,1267039 -3131572,1630240295,2,61,0,1,1630102239,1,6.0,-9.0,-9.0,-9.0,4.0,1267040 -3131573,1630240292,2,58,0,1,1630102240,1,6.0,-9.0,-9.0,-9.0,4.0,1267041 -3131574,1630239983,2,58,0,1,1630102241,2,6.0,-9.0,-9.0,-9.0,4.0,1267042 -3131575,1630240395,2,51,0,1,1630102242,1,3.0,-9.0,-9.0,-9.0,4.0,1267043 -3131576,1630240247,2,54,0,1,1630102243,1,3.0,-9.0,-9.0,-9.0,4.0,1267044 -3131577,1630240207,2,53,0,1,1630102244,1,6.0,-9.0,-9.0,-9.0,4.0,1267045 -3131578,1630239914,2,57,0,1,1630102245,2,6.0,-9.0,-9.0,-9.0,4.0,1267046 -3131579,1630239979,2,64,0,1,1630102246,2,6.0,-9.0,-9.0,-9.0,4.0,1267047 -3131580,1630240309,2,49,0,1,1630102247,1,3.0,-9.0,-9.0,-9.0,4.0,1267048 -3131581,1630239972,2,55,0,1,1630102248,2,6.0,-9.0,-9.0,-9.0,4.0,1267049 -3131582,1630240208,2,53,0,1,1630102249,1,6.0,-9.0,-9.0,-9.0,4.0,1267050 -3131583,1630239924,2,58,0,1,1630102250,2,6.0,-9.0,-9.0,-9.0,2.0,1267051 -3131584,1630240383,2,53,0,1,1630102251,1,6.0,-9.0,-9.0,-9.0,4.0,1267052 -3131585,1630240351,2,58,0,1,1630102252,1,6.0,-9.0,-9.0,-9.0,4.0,1267053 -3131586,1630240442,2,56,0,1,1630102253,1,6.0,-9.0,-9.0,-9.0,4.0,1267054 -3131587,1630240384,2,64,0,1,1630102254,1,6.0,-9.0,-9.0,-9.0,2.0,1267055 -3131588,1630240212,2,53,0,1,1630102255,1,3.0,-9.0,-9.0,-9.0,4.0,1267056 -3131589,1630239986,2,64,0,1,1630102256,2,6.0,-9.0,-9.0,-9.0,4.0,1267057 -3131590,1630240144,2,62,0,1,1630102257,2,6.0,-9.0,-9.0,-9.0,4.0,1267058 -3131591,1630240362,2,56,0,1,1630102258,1,6.0,-9.0,-9.0,-9.0,2.0,1267059 -3131592,1630239925,2,58,0,1,1630102259,2,6.0,-9.0,-9.0,-9.0,2.0,1267060 -3131593,1630240430,2,61,0,1,1630102260,1,6.0,-9.0,-9.0,-9.0,4.0,1267061 -3131594,1630240238,2,58,0,1,1630102261,1,6.0,-9.0,-9.0,-9.0,4.0,1267062 -3131595,1630240026,2,62,0,1,1630102262,2,6.0,-9.0,-9.0,-9.0,4.0,1267063 -3131596,1630240457,2,49,0,1,1630102263,1,6.0,-9.0,-9.0,-9.0,4.0,1267064 -3131597,1630240392,2,45,0,1,1630102264,1,6.0,-9.0,-9.0,-9.0,4.0,1267065 -3131598,1630240359,2,51,0,1,1630102265,1,6.0,-9.0,-9.0,-9.0,2.0,1267066 -3131599,1630240089,2,62,0,1,1630102266,2,6.0,-9.0,-9.0,-9.0,4.0,1267067 -3131600,1630240293,2,58,0,1,1630102267,1,6.0,-9.0,-9.0,-9.0,4.0,1267068 -3131601,1630240434,2,56,0,1,1630102268,1,3.0,6.0,6.0,-9.0,4.0,1267069 -3131602,1630240273,2,60,0,1,1630102269,1,3.0,-9.0,-9.0,-9.0,4.0,1267070 -3131603,1630240374,2,56,0,1,1630102270,1,3.0,-9.0,-9.0,-9.0,4.0,1267071 -3131604,1630240169,2,54,0,1,1630102271,2,6.0,-9.0,-9.0,-9.0,4.0,1267072 -3131605,1630239942,2,54,0,1,1630102272,2,6.0,-9.0,-9.0,15.0,4.0,1267073 -3131606,1630240036,2,48,0,1,1630102273,2,6.0,-9.0,-9.0,-9.0,4.0,1267074 -3131607,1630240349,2,58,0,1,1630102274,1,6.0,-9.0,-9.0,-9.0,4.0,1267075 -3131608,1630239921,2,62,0,1,1630102275,2,6.0,-9.0,-9.0,-9.0,4.0,1267076 -3131609,1630240270,2,55,0,1,1630102276,1,6.0,-9.0,-9.0,-9.0,2.0,1267077 -3131610,1630240117,2,52,0,1,1630102277,2,6.0,-9.0,-9.0,-9.0,4.0,1267078 -3131611,1630240435,2,56,0,1,1630102278,1,3.0,6.0,6.0,-9.0,4.0,1267079 -3131612,1630240242,2,54,0,1,1630102279,1,3.0,-9.0,-9.0,-9.0,2.0,1267080 -3131613,1630240024,2,59,0,1,1630102280,2,3.0,-9.0,-9.0,-9.0,4.0,1267081 -3131614,1630240314,2,59,0,1,1630102281,1,6.0,-9.0,-9.0,-9.0,2.0,1267082 -3131615,1630240284,2,54,0,1,1630102282,1,6.0,-9.0,-9.0,-9.0,4.0,1267083 -3131616,1630240177,2,61,0,1,1630102283,2,6.0,-9.0,-9.0,-9.0,4.0,1267084 -3131617,1630240397,2,62,0,1,1630102284,1,6.0,-9.0,-9.0,-9.0,4.0,1267085 -3131618,1630240352,2,58,0,1,1630102285,1,6.0,-9.0,-9.0,-9.0,4.0,1267086 -3131619,1630240432,2,53,0,1,1630102286,1,6.0,-9.0,-9.0,-9.0,4.0,1267087 -3131620,1630240396,2,51,0,1,1630102287,1,3.0,-9.0,-9.0,-9.0,4.0,1267088 -3131621,1630240490,2,61,0,1,1630102288,1,3.0,-9.0,-9.0,15.0,4.0,1267089 -3131622,1630240064,2,50,0,1,1630102289,2,6.0,-9.0,-9.0,-9.0,4.0,1267090 -3131623,1630240061,2,56,0,1,1630102290,2,3.0,-9.0,-9.0,-9.0,4.0,1267091 -3131624,1630240285,2,54,0,1,1630102291,1,6.0,-9.0,-9.0,-9.0,4.0,1267092 -3131625,1630240010,2,59,0,1,1630102292,2,6.0,-9.0,-9.0,-9.0,4.0,1267093 -3131626,1630240276,2,58,0,1,1630102293,1,6.0,-9.0,-9.0,-9.0,4.0,1267094 -3131627,1630240363,2,56,0,1,1630102294,1,6.0,-9.0,-9.0,-9.0,2.0,1267095 -3131628,1630240491,2,61,0,1,1630102295,1,3.0,-9.0,-9.0,15.0,4.0,1267096 -3131629,1630240375,2,56,0,1,1630102296,1,3.0,-9.0,-9.0,-9.0,4.0,1267097 -3131630,1630240227,2,53,0,1,1630102297,1,6.0,-9.0,-9.0,-9.0,4.0,1267098 -3131631,1630240498,2,63,0,1,1630102298,1,6.0,-9.0,-9.0,-9.0,4.0,1267099 -3131632,1630240286,2,54,0,1,1630102299,1,6.0,-9.0,-9.0,-9.0,4.0,1267100 -3131633,1630240479,2,57,0,1,1630102300,1,6.0,-9.0,-9.0,-9.0,2.0,1267101 -3131634,1630240097,2,53,0,1,1630102301,2,6.0,-9.0,-9.0,-9.0,4.0,1267102 -3131635,1630240414,2,64,0,1,1630102302,1,6.0,-9.0,-9.0,-9.0,2.0,1267103 -3131636,1630240513,2,50,0,1,1630102303,1,6.0,-9.0,-9.0,-9.0,4.0,1267104 -3131637,1630240326,2,61,0,1,1630102304,1,6.0,32.0,6.0,15.0,4.0,1267105 -3131638,1630240205,2,63,0,1,1630102305,2,6.0,-9.0,-9.0,-9.0,4.0,1267106 -3131639,1630240350,2,58,0,1,1630102306,1,6.0,-9.0,-9.0,-9.0,4.0,1267107 -3131640,1630240098,2,53,0,1,1630102307,2,6.0,-9.0,-9.0,-9.0,4.0,1267108 -3131641,1630240439,2,61,0,1,1630102308,1,6.0,-9.0,-9.0,-9.0,4.0,1267109 -3131642,1630240499,2,63,0,1,1630102309,1,6.0,-9.0,-9.0,-9.0,4.0,1267110 -3131643,1630240364,2,56,0,1,1630102310,1,6.0,-9.0,-9.0,-9.0,2.0,1267111 -3131644,1630239946,2,61,0,1,1630102311,2,6.0,-9.0,-9.0,-9.0,4.0,1267112 -3131645,1630240315,2,59,0,1,1630102312,1,6.0,-9.0,-9.0,-9.0,2.0,1267113 -3131646,1630240344,2,62,0,1,1630102313,1,6.0,-9.0,-9.0,-9.0,2.0,1267114 -3131647,1630240410,2,47,0,1,1630102314,1,6.0,-9.0,-9.0,-9.0,4.0,1267115 -3131648,1630240030,2,52,0,1,1630102315,2,6.0,-9.0,-9.0,-9.0,4.0,1267116 -3131649,1630239959,2,63,0,1,1630102316,2,6.0,-9.0,-9.0,-9.0,4.0,1267117 -3131650,1630240084,2,62,0,1,1630102317,2,6.0,-9.0,-9.0,-9.0,4.0,1267118 -3131651,1630240188,2,51,0,1,1630102318,2,3.0,40.0,3.0,-9.0,2.0,1267119 -3131652,1630240360,2,51,0,1,1630102319,1,6.0,-9.0,-9.0,-9.0,2.0,1267120 -3131653,1630240013,2,58,0,1,1630102320,2,3.0,-9.0,-9.0,12.0,4.0,1267121 -3131654,1630240323,2,57,0,1,1630102321,1,6.0,-9.0,-9.0,-9.0,2.0,1267122 -3131655,1630240194,2,61,0,1,1630102322,2,6.0,-9.0,-9.0,-9.0,4.0,1267123 -3131656,1630240310,2,49,0,1,1630102323,1,3.0,-9.0,-9.0,-9.0,4.0,1267124 -3131657,1630239926,2,58,0,1,1630102324,2,6.0,-9.0,-9.0,-9.0,2.0,1267125 -3131658,1630240213,2,53,0,1,1630102325,1,3.0,-9.0,-9.0,-9.0,4.0,1267126 -3131659,1630240336,2,60,0,1,1630102326,1,6.0,-9.0,-9.0,-9.0,4.0,1267127 -3131660,1630240248,2,54,0,1,1630102327,1,3.0,-9.0,-9.0,-9.0,4.0,1267128 -3131661,1630240299,2,46,0,1,1630102328,1,6.0,-9.0,-9.0,-9.0,4.0,1267129 -3131662,1630240320,2,45,0,1,1630102329,1,6.0,-9.0,-9.0,-9.0,4.0,1267130 -3131663,1630240321,2,58,0,1,1630102330,1,6.0,-9.0,-9.0,-9.0,4.0,1267131 -3131664,1630240176,2,59,0,1,1630102331,2,6.0,-9.0,-9.0,-9.0,4.0,1267132 -3131665,1630239920,2,58,0,1,1630102332,2,6.0,-9.0,-9.0,-9.0,4.0,1267133 -3131666,1630240296,2,61,0,1,1630102333,1,6.0,-9.0,-9.0,-9.0,4.0,1267134 -3131667,1630240436,2,56,0,1,1630102334,1,3.0,6.0,6.0,-9.0,4.0,1267135 -3131668,1630240443,2,56,0,1,1630102335,1,6.0,-9.0,-9.0,-9.0,4.0,1267136 -3131669,1630240090,2,62,0,1,1630102336,2,6.0,-9.0,-9.0,-9.0,4.0,1267137 -3131670,1630240062,2,56,0,1,1630102337,2,3.0,-9.0,-9.0,-9.0,4.0,1267138 -3131671,1630240027,2,62,0,1,1630102338,2,6.0,-9.0,-9.0,-9.0,4.0,1267139 -3131672,1630240333,2,64,0,1,1630102339,1,6.0,-9.0,-9.0,-9.0,4.0,1267140 -3131673,1630240174,2,45,0,1,1630102340,2,6.0,-9.0,-9.0,-9.0,4.0,1267141 -3131674,1630240393,2,45,0,1,1630102341,1,6.0,-9.0,-9.0,-9.0,4.0,1267142 -3131675,1630240415,2,64,0,1,1630102342,1,6.0,-9.0,-9.0,-9.0,2.0,1267143 -3131676,1630240249,2,54,0,1,1630102343,1,3.0,-9.0,-9.0,-9.0,4.0,1267144 -3131677,1630240028,2,62,0,1,1630102344,2,6.0,-9.0,-9.0,-9.0,4.0,1267145 -3131678,1630240099,2,53,0,1,1630102345,2,6.0,-9.0,-9.0,-9.0,4.0,1267146 -3131679,1630240250,2,54,0,1,1630102346,1,3.0,-9.0,-9.0,-9.0,4.0,1267147 -3131680,1630239825,1,64,0,1,1630102347,1,6.0,-9.0,-9.0,-9.0,4.0,1267148 -3131681,1630239861,1,51,0,1,1630102348,1,6.0,-9.0,-9.0,-9.0,2.0,1267149 -3131682,1630239826,1,64,0,1,1630102349,1,6.0,-9.0,-9.0,-9.0,4.0,1267150 -3131683,1630239818,1,64,0,1,1630102350,1,6.0,-9.0,-9.0,-9.0,2.0,1267151 -3131684,1630239865,1,53,0,1,1630102351,1,6.0,8.0,6.0,-9.0,4.0,1267152 -3131685,1630239811,1,45,0,1,1630102352,1,6.0,-9.0,-9.0,-9.0,4.0,1267153 -3131686,1630239862,1,51,0,1,1630102353,1,6.0,-9.0,-9.0,-9.0,2.0,1267154 -3131687,1630239775,1,60,0,1,1630102354,2,6.0,-9.0,-9.0,-9.0,4.0,1267155 -3131688,1630239866,1,53,0,1,1630102355,1,6.0,8.0,6.0,-9.0,4.0,1267156 -3131689,1630239812,1,45,0,1,1630102356,1,6.0,-9.0,-9.0,-9.0,4.0,1267157 -3131690,1630239851,1,50,0,1,1630102357,1,3.0,-9.0,-9.0,-9.0,2.0,1267158 -3131691,1630239867,1,53,0,1,1630102358,1,6.0,8.0,6.0,-9.0,4.0,1267159 -3131692,1630239863,1,51,0,1,1630102359,1,6.0,-9.0,-9.0,-9.0,2.0,1267160 -3131693,1630239852,1,50,0,1,1630102360,1,3.0,-9.0,-9.0,-9.0,2.0,1267161 -3131694,1630239868,1,53,0,1,1630102361,1,6.0,8.0,6.0,-9.0,4.0,1267162 -3131695,1630240419,2,57,0,1,1630102362,1,6.0,-9.0,-9.0,-9.0,4.0,1267163 -3131696,1630240280,2,58,0,1,1630102363,1,6.0,-9.0,-9.0,-9.0,4.0,1267164 -3131697,1630239992,2,56,0,1,1630102364,2,6.0,-9.0,-9.0,-9.0,4.0,1267165 -3131698,1630240450,2,53,0,1,1630102365,1,6.0,-9.0,-9.0,-9.0,4.0,1267166 -3131699,1630240451,2,53,0,1,1630102366,1,6.0,-9.0,-9.0,-9.0,4.0,1267167 -3131700,1630240492,2,52,0,1,1630102367,1,6.0,-9.0,-9.0,-9.0,4.0,1267168 -3131701,1630240135,2,50,0,1,1630102368,2,3.0,-9.0,-9.0,15.0,4.0,1267169 -3131702,1630240118,2,58,0,1,1630102369,2,6.0,-9.0,-9.0,-9.0,4.0,1267170 -3131703,1630239873,2,47,0,1,1630102370,2,3.0,-9.0,-9.0,-9.0,4.0,1267171 -3131704,1630240475,2,58,0,1,1630102371,1,6.0,-9.0,-9.0,-9.0,4.0,1267172 -3131705,1630240388,2,63,0,1,1630102372,1,6.0,-9.0,-9.0,-9.0,2.0,1267173 -3131706,1630240038,2,47,0,1,1630102373,2,6.0,-9.0,-9.0,-9.0,4.0,1267174 -3131707,1630240281,2,58,0,1,1630102374,1,6.0,-9.0,-9.0,-9.0,4.0,1267175 -3131708,1630240476,2,58,0,1,1630102375,1,6.0,-9.0,-9.0,-9.0,4.0,1267176 -3131709,1630240423,2,62,0,1,1630102376,1,6.0,40.0,5.0,-9.0,4.0,1267177 -3131710,1630240452,2,53,0,1,1630102377,1,6.0,-9.0,-9.0,-9.0,4.0,1267178 -3131711,1630240290,2,54,0,1,1630102378,1,6.0,45.0,5.0,-9.0,4.0,1267179 -3131712,1630240493,2,52,0,1,1630102379,1,6.0,-9.0,-9.0,-9.0,4.0,1267180 -3131713,1630240229,2,52,0,1,1630102380,1,3.0,-9.0,-9.0,-9.0,4.0,1267181 -3131714,1630240263,2,62,0,1,1630102381,1,3.0,-9.0,-9.0,-9.0,4.0,1267182 -3131715,1630239993,2,56,0,1,1630102382,2,6.0,-9.0,-9.0,-9.0,4.0,1267183 -3131716,1630240401,2,63,0,1,1630102383,1,6.0,-9.0,-9.0,-9.0,4.0,1267184 -3131717,1630239947,2,63,0,1,1630102384,2,6.0,-9.0,-9.0,-9.0,4.0,1267185 -3131718,1630240243,2,45,0,1,1630102385,1,6.0,55.0,4.0,-9.0,4.0,1267186 -3131719,1630240282,2,58,0,1,1630102386,1,6.0,-9.0,-9.0,-9.0,4.0,1267187 -3131720,1630239874,2,47,0,1,1630102387,2,3.0,-9.0,-9.0,-9.0,4.0,1267188 -3131721,1630240453,2,53,0,1,1630102388,1,6.0,-9.0,-9.0,-9.0,4.0,1267189 -3131722,1630240196,2,58,0,1,1630102389,2,6.0,-9.0,-9.0,-9.0,4.0,1267190 -3131723,1630240389,2,63,0,1,1630102390,1,6.0,-9.0,-9.0,-9.0,2.0,1267191 -3131724,1630240494,2,52,0,1,1630102391,1,6.0,-9.0,-9.0,-9.0,4.0,1267192 -3131725,1630240145,2,49,0,1,1630102392,2,6.0,20.0,5.0,-9.0,4.0,1267193 -3131726,1630240316,2,61,0,1,1630102393,1,6.0,-9.0,-9.0,-9.0,2.0,1267194 -3131727,1630240495,2,52,0,1,1630102394,1,6.0,-9.0,-9.0,-9.0,4.0,1267195 -3131728,1630240306,2,53,0,1,1630102395,1,6.0,-9.0,-9.0,-9.0,4.0,1267196 -3131729,1630240368,2,51,0,1,1630102396,1,6.0,40.0,6.0,-9.0,4.0,1267197 -3131730,1630240058,2,63,0,1,1630102397,2,6.0,-9.0,-9.0,-9.0,4.0,1267198 -3131731,1630240477,2,58,0,1,1630102398,1,6.0,-9.0,-9.0,-9.0,4.0,1267199 -3131732,1630240161,2,62,0,1,1630102399,2,6.0,-9.0,-9.0,-9.0,4.0,1267200 -3131733,1630240317,2,61,0,1,1630102400,1,6.0,-9.0,-9.0,-9.0,2.0,1267201 -3131734,1630240154,2,46,0,1,1630102401,2,3.0,-9.0,-9.0,-9.0,4.0,1267202 -3131735,1630240093,2,63,0,1,1630102402,2,6.0,-9.0,-9.0,-9.0,4.0,1267203 -3131736,1630240402,2,63,0,1,1630102403,1,6.0,-9.0,-9.0,-9.0,4.0,1267204 -3131737,1630240496,2,52,0,1,1630102404,1,6.0,-9.0,-9.0,-9.0,4.0,1267205 -3131738,1630239994,2,56,0,1,1630102405,2,6.0,-9.0,-9.0,-9.0,4.0,1267206 -3131739,1630240454,2,53,0,1,1630102406,1,6.0,-9.0,-9.0,-9.0,4.0,1267207 -3131740,1630240497,2,52,0,1,1630102407,1,6.0,-9.0,-9.0,-9.0,4.0,1267208 -3131741,1630239948,2,63,0,1,1630102408,2,6.0,-9.0,-9.0,-9.0,4.0,1267209 -3131742,1630240291,2,54,0,1,1630102409,1,6.0,45.0,5.0,-9.0,4.0,1267210 -3131743,1630240283,2,58,0,1,1630102410,1,6.0,-9.0,-9.0,-9.0,4.0,1267211 -3131744,1630240449,2,53,0,1,1630102411,1,6.0,-9.0,-9.0,-9.0,2.0,1267212 -3131745,1630239831,1,56,0,1,1630102412,1,6.0,-9.0,-9.0,-9.0,2.0,1267213 -3131746,1630239832,1,56,0,1,1630102413,1,6.0,-9.0,-9.0,-9.0,2.0,1267214 -3131747,1630239833,1,56,0,1,1630102414,1,6.0,-9.0,-9.0,-9.0,2.0,1267215 -3131748,1630239975,2,57,0,1,1630102415,2,6.0,-9.0,-9.0,-9.0,4.0,1267216 -3131749,1630240480,2,46,0,1,1630102416,1,3.0,-9.0,-9.0,-9.0,4.0,1267217 -3131750,1630240051,2,57,0,1,1630102417,2,6.0,-9.0,-9.0,-9.0,4.0,1267218 -3131751,1630240052,2,38,2,2,1630102417,1,6.0,-9.0,-9.0,-9.0,4.0,1267218 -3131752,1630240053,2,20,2,3,1630102417,1,6.0,-9.0,-9.0,-9.0,4.0,1267218 -3131753,1630240150,2,61,0,1,1630102418,1,3.0,-9.0,-9.0,15.0,4.0,1267219 -3131754,1630240148,2,48,13,2,1630102418,2,3.0,-9.0,-9.0,15.0,4.0,1267219 -3131755,1630240152,2,21,15,3,1630102418,1,6.0,-9.0,-9.0,15.0,4.0,1267219 -3131756,1630240468,2,61,0,1,1630102419,1,6.0,-9.0,-9.0,15.0,4.0,1267220 -3131757,1630240471,2,59,5,2,1630102419,1,3.0,-9.0,-9.0,-9.0,4.0,1267220 -3131758,1630239885,2,62,0,1,1630102420,1,6.0,-9.0,-9.0,-9.0,4.0,1267221 -3131759,1630239884,2,48,1,2,1630102420,2,6.0,-9.0,-9.0,-9.0,4.0,1267221 -3131760,1630240086,2,54,0,1,1630102421,2,6.0,-9.0,-9.0,-9.0,4.0,1267222 -3131761,1630240087,2,64,11,2,1630102421,1,6.0,-9.0,-9.0,-9.0,4.0,1267222 -3131762,1630240264,2,61,0,1,1630102422,1,6.0,-9.0,-9.0,-9.0,2.0,1267223 -3131763,1630240266,2,26,10,2,1630102422,1,3.0,-9.0,-9.0,-9.0,4.0,1267223 -3131764,1630240216,2,60,0,1,1630102423,1,6.0,-9.0,-9.0,-9.0,4.0,1267224 -3131765,1630240218,2,45,15,2,1630102423,1,6.0,-9.0,-9.0,-9.0,4.0,1267224 -3131766,1630239877,2,64,0,1,1630102424,2,6.0,-9.0,-9.0,-9.0,4.0,1267225 -3131767,1630239879,2,69,13,2,1630102424,1,6.0,-9.0,-9.0,-9.0,4.0,1267225 -3131768,1630239904,2,53,0,1,1630102425,2,6.0,-9.0,-9.0,-9.0,4.0,1267226 -3131769,1630239909,2,19,2,2,1630102425,2,6.0,-9.0,-9.0,15.0,4.0,1267226 -3131770,1630239905,2,53,0,1,1630102426,2,6.0,-9.0,-9.0,-9.0,4.0,1267227 -3131771,1630239910,2,19,2,2,1630102426,2,6.0,-9.0,-9.0,15.0,4.0,1267227 -3131772,1630239897,2,61,0,1,1630102427,1,3.0,-9.0,-9.0,-9.0,4.0,1267228 -3131773,1630239895,2,48,1,2,1630102427,2,3.0,15.0,6.0,-9.0,4.0,1267228 -3131774,1630240217,2,60,0,1,1630102428,1,6.0,-9.0,-9.0,-9.0,4.0,1267229 -3131775,1630240219,2,45,15,2,1630102428,1,6.0,-9.0,-9.0,-9.0,4.0,1267229 -3131776,1630240469,2,61,0,1,1630102429,1,6.0,-9.0,-9.0,15.0,4.0,1267230 -3131777,1630240472,2,59,5,2,1630102429,1,3.0,-9.0,-9.0,-9.0,4.0,1267230 -3131778,1630239711,2,51,0,1,1630102430,1,3.0,-9.0,-9.0,-9.0,4.0,1267231 -3131779,1630239709,2,71,6,2,1630102430,2,6.0,-9.0,-9.0,-9.0,4.0,1267231 -3131780,1630240137,2,59,0,1,1630102431,2,6.0,-9.0,-9.0,-9.0,4.0,1267232 -3131781,1630240140,2,53,13,2,1630102431,1,6.0,-9.0,-9.0,-9.0,4.0,1267232 -3131782,1630239712,2,51,0,1,1630102432,1,3.0,-9.0,-9.0,-9.0,4.0,1267233 -3131783,1630239710,2,71,6,2,1630102432,2,6.0,-9.0,-9.0,-9.0,4.0,1267233 -3131784,1630240119,2,54,0,1,1630102433,2,6.0,-9.0,-9.0,-9.0,4.0,1267234 -3131785,1630240120,2,26,2,2,1630102433,1,3.0,-9.0,-9.0,15.0,4.0,1267234 -3131786,1630239906,2,53,0,1,1630102434,2,6.0,-9.0,-9.0,-9.0,4.0,1267235 -3131787,1630239911,2,19,2,2,1630102434,2,6.0,-9.0,-9.0,15.0,4.0,1267235 -3131788,1630240470,2,61,0,1,1630102435,1,6.0,-9.0,-9.0,15.0,4.0,1267236 -3131789,1630240473,2,59,5,2,1630102435,1,3.0,-9.0,-9.0,-9.0,4.0,1267236 -3131790,1630239876,2,57,0,1,1630102436,1,6.0,-9.0,-9.0,-9.0,2.0,1267237 -3131791,1630239875,2,45,13,2,1630102436,2,6.0,-9.0,-9.0,-9.0,4.0,1267237 -3131792,1630240138,2,59,0,1,1630102437,2,6.0,-9.0,-9.0,-9.0,4.0,1267238 -3131793,1630240141,2,53,13,2,1630102437,1,6.0,-9.0,-9.0,-9.0,4.0,1267238 -3131794,1630239907,2,53,0,1,1630102438,2,6.0,-9.0,-9.0,-9.0,4.0,1267239 -3131795,1630239912,2,19,2,2,1630102438,2,6.0,-9.0,-9.0,15.0,4.0,1267239 -3131796,1630239908,2,53,0,1,1630102439,2,6.0,-9.0,-9.0,-9.0,4.0,1267240 -3131797,1630239913,2,19,2,2,1630102439,2,6.0,-9.0,-9.0,15.0,4.0,1267240 -3131798,1630240265,2,61,0,1,1630102440,1,6.0,-9.0,-9.0,-9.0,2.0,1267241 -3131799,1630240267,2,26,10,2,1630102440,1,3.0,-9.0,-9.0,-9.0,4.0,1267241 -3131800,1630239898,2,61,0,1,1630102441,1,3.0,-9.0,-9.0,-9.0,4.0,1267242 -3131801,1630239896,2,48,1,2,1630102441,2,3.0,15.0,6.0,-9.0,4.0,1267242 -3131802,1630239878,2,64,0,1,1630102442,2,6.0,-9.0,-9.0,-9.0,4.0,1267243 -3131803,1630239880,2,69,13,2,1630102442,1,6.0,-9.0,-9.0,-9.0,4.0,1267243 -3131804,1630240139,2,59,0,1,1630102443,2,6.0,-9.0,-9.0,-9.0,4.0,1267244 -3131805,1630240142,2,53,13,2,1630102443,1,6.0,-9.0,-9.0,-9.0,4.0,1267244 -3131806,1630239987,2,54,0,1,1630102444,2,6.0,-9.0,-9.0,-9.0,4.0,1267245 -3131807,1630239988,2,17,2,2,1630102444,2,6.0,-9.0,-9.0,13.0,4.0,1267245 -3131808,1630240104,2,56,0,1,1630102445,2,3.0,10.0,4.0,-9.0,4.0,1267246 -3131809,1630240107,2,18,2,2,1630102445,1,3.0,-9.0,-9.0,15.0,4.0,1267246 -3131810,1630239890,2,59,0,1,1630102446,2,6.0,-9.0,-9.0,-9.0,4.0,1267247 -3131811,1630239892,2,22,2,2,1630102446,2,3.0,-9.0,-9.0,-9.0,4.0,1267247 -3131812,1630239927,2,46,0,1,1630102447,2,6.0,25.0,5.0,-9.0,4.0,1267248 -3131813,1630239930,2,20,2,2,1630102447,2,6.0,-9.0,-9.0,-9.0,4.0,1267248 -3131814,1630240105,2,56,0,1,1630102448,2,3.0,10.0,4.0,-9.0,4.0,1267249 -3131815,1630240108,2,18,2,2,1630102448,1,3.0,-9.0,-9.0,15.0,4.0,1267249 -3131816,1630239891,2,59,0,1,1630102449,2,6.0,-9.0,-9.0,-9.0,4.0,1267250 -3131817,1630239893,2,22,2,2,1630102449,2,3.0,-9.0,-9.0,-9.0,4.0,1267250 -3131818,1630239708,2,61,0,1,1630102450,1,3.0,-9.0,-9.0,-9.0,4.0,1267251 -3131819,1630239707,2,67,1,2,1630102450,2,6.0,-9.0,-9.0,-9.0,4.0,1267251 -3131820,1630240056,2,56,0,1,1630102451,2,6.0,-9.0,-9.0,-9.0,4.0,1267252 -3131821,1630240057,2,21,2,2,1630102451,2,6.0,-9.0,-9.0,15.0,4.0,1267252 -3131822,1630239703,2,56,0,1,1630102452,1,6.0,-9.0,-9.0,-9.0,4.0,1267253 -3131823,1630239702,2,68,1,2,1630102452,2,6.0,-9.0,-9.0,-9.0,4.0,1267253 -3131824,1630240106,2,56,0,1,1630102453,2,3.0,10.0,4.0,-9.0,4.0,1267254 -3131825,1630240109,2,18,2,2,1630102453,1,3.0,-9.0,-9.0,15.0,4.0,1267254 -3131826,1630239928,2,46,0,1,1630102454,2,6.0,25.0,5.0,-9.0,4.0,1267255 -3131827,1630239931,2,20,2,2,1630102454,2,6.0,-9.0,-9.0,-9.0,4.0,1267255 -3131828,1630239841,1,57,0,1,1630102455,1,3.0,20.0,6.0,-9.0,4.0,1267256 -3131829,1630239843,1,75,10,2,1630102455,1,6.0,-9.0,-9.0,-9.0,2.0,1267256 -3131830,1630240198,2,47,0,1,1630102456,2,1.0,40.0,1.0,-9.0,4.0,1267257 -3131831,1630240007,2,57,0,1,1630102457,2,1.0,40.0,1.0,-9.0,4.0,1267258 -3131832,1630240067,2,64,0,1,1630102458,2,2.0,7.0,2.0,-9.0,4.0,1267259 -3131833,1630240012,2,56,0,1,1630102459,2,1.0,99.0,1.0,-9.0,4.0,1267260 -3131834,1630240199,2,47,0,1,1630102460,2,1.0,40.0,1.0,-9.0,4.0,1267261 -3131835,1630240079,2,55,0,1,1630102461,2,1.0,40.0,1.0,-9.0,4.0,1267262 -3131836,1630240356,2,47,0,1,1630102462,1,1.0,32.0,1.0,-9.0,4.0,1267263 -3131837,1630240200,2,47,0,1,1630102463,2,1.0,40.0,1.0,-9.0,4.0,1267264 -3131838,1630240008,2,57,0,1,1630102464,2,1.0,40.0,1.0,-9.0,4.0,1267265 -3131839,1630240277,2,51,0,1,1630102465,1,1.0,20.0,1.0,-9.0,2.0,1267266 -3131840,1630240337,2,59,0,1,1630102466,1,1.0,40.0,1.0,-9.0,2.0,1267267 -3131841,1630240404,2,48,0,1,1630102467,1,1.0,40.0,1.0,-9.0,4.0,1267268 -3131842,1630240369,2,61,0,1,1630102468,1,1.0,30.0,1.0,-9.0,4.0,1267269 -3131843,1630240201,2,47,0,1,1630102469,2,1.0,40.0,1.0,-9.0,4.0,1267270 -3131844,1630240405,2,48,0,1,1630102470,1,1.0,40.0,1.0,-9.0,4.0,1267271 -3131845,1630240080,2,55,0,1,1630102471,2,1.0,40.0,1.0,-9.0,4.0,1267272 -3131846,1630239969,2,60,0,1,1630102472,2,1.0,50.0,2.0,-9.0,4.0,1267273 -3131847,1630240081,2,58,0,1,1630102473,2,1.0,40.0,1.0,-9.0,4.0,1267274 -3131848,1630240327,2,54,0,1,1630102474,1,1.0,25.0,1.0,-9.0,4.0,1267275 -3131849,1630240014,2,62,0,1,1630102475,2,1.0,40.0,1.0,-9.0,4.0,1267276 -3131850,1630240328,2,54,0,1,1630102476,1,1.0,25.0,1.0,-9.0,4.0,1267277 -3131851,1630240357,2,47,0,1,1630102477,1,1.0,32.0,1.0,-9.0,4.0,1267278 -3131852,1630240190,2,45,0,1,1630102478,2,2.0,40.0,1.0,-9.0,4.0,1267279 -3131853,1630240191,2,45,0,1,1630102479,2,2.0,40.0,1.0,-9.0,4.0,1267280 -3131854,1630240370,2,61,0,1,1630102480,1,1.0,30.0,1.0,-9.0,4.0,1267281 -3131855,1630240202,2,47,0,1,1630102481,2,1.0,40.0,1.0,-9.0,4.0,1267282 -3131856,1630240407,2,61,0,1,1630102482,1,1.0,3.0,6.0,-9.0,4.0,1267283 -3131857,1630240358,2,47,0,1,1630102483,1,1.0,32.0,1.0,-9.0,4.0,1267284 -3131858,1630239980,2,58,0,1,1630102484,2,1.0,37.0,4.0,-9.0,4.0,1267285 -3131859,1630240261,2,63,0,1,1630102485,1,1.0,25.0,1.0,-9.0,4.0,1267286 -3131860,1630240262,2,63,0,1,1630102486,1,1.0,25.0,1.0,-9.0,4.0,1267287 -3131861,1630240082,2,58,0,1,1630102487,2,1.0,40.0,1.0,-9.0,4.0,1267288 -3131862,1630240329,2,54,0,1,1630102488,1,1.0,25.0,1.0,-9.0,4.0,1267289 -3131863,1630240330,2,54,0,1,1630102489,1,1.0,25.0,1.0,-9.0,4.0,1267290 -3131864,1630240371,2,61,0,1,1630102490,1,1.0,30.0,1.0,-9.0,4.0,1267291 -3131865,1630240406,2,48,0,1,1630102491,1,1.0,40.0,1.0,-9.0,4.0,1267292 -3131866,1630240338,2,59,0,1,1630102492,1,1.0,40.0,1.0,-9.0,2.0,1267293 -3131867,1630240121,2,46,0,1,1630102493,2,1.0,38.0,1.0,-9.0,4.0,1267294 -3131868,1630240459,2,45,0,1,1630102494,1,1.0,48.0,1.0,-9.0,4.0,1267295 -3131869,1630240482,2,52,0,1,1630102495,1,1.0,32.0,6.0,-9.0,4.0,1267296 -3131870,1630240440,2,47,0,1,1630102496,1,1.0,37.0,4.0,-9.0,4.0,1267297 -3131871,1630240483,2,52,0,1,1630102497,1,1.0,32.0,6.0,-9.0,4.0,1267298 -3131872,1630240484,2,52,0,1,1630102498,1,1.0,32.0,6.0,-9.0,4.0,1267299 -3131873,1630240279,2,54,0,1,1630102499,1,1.0,35.0,4.0,-9.0,2.0,1267300 -3131874,1630240441,2,47,0,1,1630102500,1,1.0,37.0,4.0,-9.0,4.0,1267301 -3131875,1630240378,2,53,0,1,1630102501,1,1.0,40.0,1.0,-9.0,4.0,1267302 -3131876,1630240403,2,59,0,1,1630102502,1,1.0,32.0,5.0,-9.0,4.0,1267303 -3131877,1630240094,2,48,0,1,1630102503,2,1.0,40.0,1.0,15.0,4.0,1267304 -3131878,1630240511,2,58,0,1,1630102504,1,1.0,40.0,1.0,-9.0,4.0,1267305 -3131879,1630240195,2,48,0,1,1630102505,2,1.0,37.0,1.0,16.0,4.0,1267306 -3131880,1630240485,2,52,0,1,1630102506,1,1.0,32.0,6.0,-9.0,4.0,1267307 -3131881,1630240122,2,46,0,1,1630102507,2,1.0,38.0,1.0,-9.0,4.0,1267308 -3131882,1630240069,2,60,0,1,1630102508,2,1.0,40.0,1.0,-9.0,4.0,1267309 -3131883,1630240182,2,55,0,1,1630102509,2,2.0,40.0,4.0,-9.0,4.0,1267310 -3131884,1630240486,2,52,0,1,1630102510,1,1.0,32.0,6.0,-9.0,4.0,1267311 -3131885,1630240123,2,46,0,1,1630102511,2,1.0,38.0,1.0,-9.0,4.0,1267312 -3131886,1630240055,2,56,0,1,1630102512,2,1.0,25.0,1.0,-9.0,4.0,1267313 -3131887,1630239970,2,53,0,1,1630102513,2,1.0,32.0,1.0,-9.0,4.0,1267314 -3131888,1630239839,1,55,0,1,1630102514,1,1.0,40.0,3.0,-9.0,4.0,1267315 -3131889,1630239848,1,48,0,1,1630102515,1,2.0,40.0,3.0,-9.0,4.0,1267316 -3131890,1630239810,1,56,0,1,1630102516,1,1.0,40.0,1.0,-9.0,2.0,1267317 -3131891,1630239853,1,46,0,1,1630102517,1,1.0,43.0,1.0,-9.0,4.0,1267318 -3131892,1630240366,2,62,0,1,1630102518,1,1.0,45.0,1.0,-9.0,4.0,1267319 -3131893,1630239719,2,54,0,1,1630102519,2,1.0,50.0,4.0,-9.0,4.0,1267320 -3131894,1630239716,2,88,6,2,1630102519,2,6.0,-9.0,-9.0,-9.0,4.0,1267320 -3131895,1630239720,2,54,0,1,1630102520,2,1.0,50.0,4.0,-9.0,4.0,1267321 -3131896,1630239717,2,88,6,2,1630102520,2,6.0,-9.0,-9.0,-9.0,4.0,1267321 -3131897,1630239721,2,54,0,1,1630102521,2,1.0,50.0,4.0,-9.0,4.0,1267322 -3131898,1630239718,2,88,6,2,1630102521,2,6.0,-9.0,-9.0,-9.0,4.0,1267322 -3131899,1630240157,2,58,0,1,1630102522,2,1.0,30.0,1.0,15.0,4.0,1267323 -3131900,1630240159,2,34,2,2,1630102522,2,3.0,22.0,3.0,15.0,4.0,1267323 -3131901,1630240044,2,60,0,1,1630102523,2,6.0,-9.0,-9.0,-9.0,4.0,1267324 -3131902,1630240045,2,42,2,2,1630102523,1,1.0,40.0,6.0,15.0,4.0,1267324 -3131903,1630239881,2,55,0,1,1630102524,2,1.0,40.0,1.0,-9.0,4.0,1267325 -3131904,1630239882,2,25,2,2,1630102524,1,3.0,-9.0,-9.0,-9.0,4.0,1267325 -3131905,1630240158,2,58,0,1,1630102525,2,1.0,30.0,1.0,15.0,4.0,1267326 -3131906,1630240160,2,34,2,2,1630102525,2,3.0,22.0,3.0,15.0,4.0,1267326 -3131907,1630240184,2,55,0,1,1630102526,2,1.0,40.0,1.0,-9.0,4.0,1267327 -3131908,1630240185,2,22,2,2,1630102526,1,6.0,-9.0,-9.0,-9.0,4.0,1267327 -3131909,1630240112,2,57,0,1,1630102527,2,1.0,40.0,1.0,-9.0,4.0,1267328 -3131910,1630240113,2,48,5,2,1630102527,1,6.0,-9.0,-9.0,-9.0,4.0,1267328 -3131911,1630240167,2,54,0,1,1630102528,1,6.0,-9.0,-9.0,-9.0,4.0,1267329 -3131912,1630240166,2,52,13,2,1630102528,2,1.0,24.0,1.0,-9.0,4.0,1267329 -3131913,1630239763,2,53,0,1,1630102529,1,1.0,40.0,1.0,-9.0,4.0,1267330 -3131914,1630239762,3,46,13,2,1630102529,2,6.0,-9.0,-9.0,-9.0,4.0,1267330 -3131915,1630240162,2,52,0,1,1630102530,2,2.0,40.0,3.0,-9.0,4.0,1267331 -3131916,1630240164,2,19,12,2,1630102530,2,1.0,40.0,1.0,15.0,4.0,1267331 -3131917,1630240163,2,52,0,1,1630102531,2,2.0,40.0,3.0,-9.0,4.0,1267332 -3131918,1630240165,2,19,12,2,1630102531,2,1.0,40.0,1.0,15.0,4.0,1267332 -3131919,1630240065,2,50,0,1,1630102532,2,1.0,30.0,1.0,-9.0,4.0,1267333 -3131920,1630240066,2,19,2,2,1630102532,2,1.0,20.0,3.0,-9.0,4.0,1267333 -3131921,1630239715,2,70,0,1,1630102533,2,6.0,-9.0,-9.0,-9.0,4.0,1267334 -3131922,1630240554,2,77,0,1,1630102534,1,6.0,-9.0,-9.0,-9.0,2.0,1267335 -3131923,1630240523,2,80,0,1,1630102535,1,6.0,-9.0,-9.0,-9.0,4.0,1267336 -3131924,1630240570,1,68,0,1,1630102536,1,1.0,60.0,1.0,-9.0,4.0,1267337 -3131925,1630239675,2,86,0,1,1630102537,2,6.0,-9.0,-9.0,-9.0,4.0,1267338 -3131926,1630240541,2,72,0,1,1630102538,1,3.0,-9.0,-9.0,15.0,2.0,1267339 -3131927,1630239670,2,74,0,1,1630102539,2,6.0,-9.0,-9.0,-9.0,4.0,1267340 -3131928,1630240564,2,86,0,1,1630102540,1,6.0,-9.0,-9.0,-9.0,2.0,1267341 -3131929,1630240525,2,80,0,1,1630102541,1,6.0,-9.0,-9.0,-9.0,2.0,1267342 -3131930,1630239729,2,73,0,1,1630102542,2,6.0,-9.0,-9.0,-9.0,4.0,1267343 -3131931,1630240548,2,65,0,1,1630102543,1,6.0,-9.0,-9.0,-9.0,2.0,1267344 -3131932,1630240549,2,65,0,1,1630102544,1,6.0,-9.0,-9.0,-9.0,2.0,1267345 -3131933,1630240542,2,75,0,1,1630102545,1,6.0,-9.0,-9.0,-9.0,4.0,1267346 -3131934,1630239679,2,87,0,1,1630102546,2,6.0,-9.0,-9.0,-9.0,4.0,1267347 -3131935,1630240555,2,75,0,1,1630102547,1,6.0,-9.0,-9.0,-9.0,4.0,1267348 -3131936,1630239676,2,86,0,1,1630102548,2,6.0,-9.0,-9.0,-9.0,4.0,1267349 -3131937,1630240534,2,83,0,1,1630102549,1,6.0,-9.0,-9.0,-9.0,2.0,1267350 -3131938,1630239671,2,88,0,1,1630102550,2,6.0,-9.0,-9.0,-9.0,4.0,1267351 -3131939,1630240526,2,80,0,1,1630102551,1,6.0,-9.0,-9.0,-9.0,2.0,1267352 -3131940,1630240560,2,82,0,1,1630102552,1,6.0,-9.0,-9.0,-9.0,2.0,1267353 -3131941,1630239697,2,80,0,1,1630102553,2,6.0,-9.0,-9.0,-9.0,4.0,1267354 -3131942,1630239677,2,86,0,1,1630102554,2,6.0,-9.0,-9.0,-9.0,4.0,1267355 -3131943,1630239686,2,66,0,1,1630102555,2,6.0,-9.0,-9.0,-9.0,4.0,1267356 -3131944,1630240538,2,79,0,1,1630102556,1,6.0,-9.0,-9.0,-9.0,2.0,1267357 -3131945,1630239668,2,65,0,1,1630102557,2,6.0,-9.0,-9.0,-9.0,4.0,1267358 -3131946,1630240535,2,83,0,1,1630102558,1,6.0,-9.0,-9.0,-9.0,2.0,1267359 -3131947,1630240519,2,67,0,1,1630102559,1,6.0,-9.0,-9.0,-9.0,2.0,1267360 -3131948,1630239663,2,71,0,1,1630102560,2,6.0,-9.0,-9.0,-9.0,4.0,1267361 -3131949,1630240565,2,76,0,1,1630102561,1,6.0,-9.0,-9.0,-9.0,4.0,1267362 -3131950,1630239742,2,79,0,1,1630102562,2,6.0,-9.0,-9.0,-9.0,4.0,1267363 -3131951,1630240530,2,71,0,1,1630102563,1,6.0,-9.0,-9.0,-9.0,4.0,1267364 -3131952,1630239685,2,81,0,1,1630102564,2,6.0,-9.0,-9.0,-9.0,4.0,1267365 -3131953,1630240528,2,69,0,1,1630102565,1,6.0,-9.0,-9.0,-9.0,2.0,1267366 -3131954,1630239699,2,78,0,1,1630102566,2,6.0,-9.0,-9.0,-9.0,4.0,1267367 -3131955,1630240566,2,76,0,1,1630102567,1,6.0,-9.0,-9.0,-9.0,4.0,1267368 -3131956,1630239673,2,71,0,1,1630102568,2,6.0,-9.0,-9.0,-9.0,4.0,1267369 -3131957,1630239722,2,65,0,1,1630102569,2,6.0,-9.0,-9.0,-9.0,4.0,1267370 -3131958,1630239701,2,67,0,1,1630102570,2,6.0,-9.0,-9.0,-9.0,4.0,1267371 -3131959,1630240556,2,75,0,1,1630102571,1,6.0,-9.0,-9.0,-9.0,4.0,1267372 -3131960,1630239674,2,71,0,1,1630102572,2,6.0,-9.0,-9.0,-9.0,4.0,1267373 -3131961,1630239733,2,67,0,1,1630102573,2,6.0,8.0,6.0,-9.0,4.0,1267374 -3131962,1630240543,2,75,0,1,1630102574,1,6.0,-9.0,-9.0,-9.0,4.0,1267375 -3131963,1630240540,2,77,0,1,1630102575,1,6.0,-9.0,-9.0,-9.0,4.0,1267376 -3131964,1630239741,2,90,0,1,1630102576,2,6.0,-9.0,-9.0,-9.0,4.0,1267377 -3131965,1630239682,2,69,0,1,1630102577,2,6.0,-9.0,-9.0,-9.0,4.0,1267378 -3131966,1630240536,2,79,0,1,1630102578,1,6.0,-9.0,-9.0,-9.0,2.0,1267379 -3131967,1630240550,2,66,0,1,1630102579,1,6.0,-9.0,-9.0,-9.0,4.0,1267380 -3131968,1630240515,2,71,0,1,1630102580,1,6.0,-9.0,-9.0,-9.0,4.0,1267381 -3131969,1630239730,2,73,0,1,1630102581,2,6.0,-9.0,-9.0,-9.0,4.0,1267382 -3131970,1630239687,2,66,0,1,1630102582,2,6.0,-9.0,-9.0,-9.0,4.0,1267383 -3131971,1630240562,2,65,0,1,1630102583,1,6.0,-9.0,-9.0,-9.0,2.0,1267384 -3131972,1630240532,2,74,0,1,1630102584,1,6.0,-9.0,-9.0,-9.0,4.0,1267385 -3131973,1630239704,2,78,0,1,1630102585,2,6.0,-9.0,-9.0,-9.0,4.0,1267386 -3131974,1630239734,2,70,0,1,1630102586,2,6.0,-9.0,-9.0,-9.0,4.0,1267387 -3131975,1630240516,2,71,0,1,1630102587,1,6.0,-9.0,-9.0,-9.0,4.0,1267388 -3131976,1630239700,2,73,0,1,1630102588,2,6.0,-9.0,-9.0,-9.0,4.0,1267389 -3131977,1630239680,2,66,0,1,1630102589,2,6.0,-9.0,-9.0,-9.0,4.0,1267390 -3131978,1630239683,2,69,0,1,1630102590,2,6.0,-9.0,-9.0,-9.0,4.0,1267391 -3131979,1630240537,2,79,0,1,1630102591,1,6.0,-9.0,-9.0,-9.0,2.0,1267392 -3131980,1630239714,2,65,0,1,1630102592,2,6.0,-9.0,-9.0,-9.0,4.0,1267393 -3131981,1630239698,2,70,0,1,1630102593,2,6.0,-9.0,-9.0,-9.0,4.0,1267394 -3131982,1630239728,2,65,0,1,1630102594,2,6.0,-9.0,-9.0,-9.0,4.0,1267395 -3131983,1630239731,2,73,0,1,1630102595,2,6.0,-9.0,-9.0,-9.0,4.0,1267396 -3131984,1630239723,2,65,0,1,1630102596,2,6.0,-9.0,-9.0,-9.0,4.0,1267397 -3131985,1630239664,2,71,0,1,1630102597,2,6.0,-9.0,-9.0,-9.0,4.0,1267398 -3131986,1630239713,2,69,0,1,1630102598,2,6.0,-9.0,-9.0,-9.0,4.0,1267399 -3131987,1630240563,2,86,0,1,1630102599,1,6.0,-9.0,-9.0,-9.0,4.0,1267400 -3131988,1630240517,2,71,0,1,1630102600,1,6.0,-9.0,-9.0,-9.0,4.0,1267401 -3131989,1630240529,2,71,0,1,1630102601,1,6.0,-9.0,-9.0,-9.0,4.0,1267402 -3131990,1630240551,2,67,0,1,1630102602,1,6.0,-9.0,-9.0,-9.0,4.0,1267403 -3131991,1630239725,2,72,0,1,1630102603,2,6.0,-9.0,-9.0,-9.0,4.0,1267404 -3131992,1630239672,2,88,0,1,1630102604,2,6.0,-9.0,-9.0,-9.0,4.0,1267405 -3131993,1630240533,2,66,0,1,1630102605,1,6.0,-9.0,-9.0,-9.0,4.0,1267406 -3131994,1630239657,2,81,0,1,1630102606,2,6.0,-9.0,-9.0,-9.0,4.0,1267407 -3131995,1630239752,1,67,0,1,1630102607,2,6.0,-9.0,-9.0,-9.0,4.0,1267408 -3131996,1630239750,1,67,0,1,1630102608,2,6.0,-9.0,-9.0,-9.0,4.0,1267409 -3131997,1630239751,1,67,0,1,1630102609,2,6.0,-9.0,-9.0,-9.0,4.0,1267410 -3131998,1630239748,1,76,0,1,1630102610,2,6.0,-9.0,-9.0,-9.0,4.0,1267411 -3131999,1630240568,1,77,0,1,1630102611,1,6.0,-9.0,-9.0,-9.0,4.0,1267412 -3132000,1630239681,2,65,0,1,1630102612,2,6.0,-9.0,-9.0,-9.0,4.0,1267413 -3132001,1630240527,2,83,0,1,1630102613,1,6.0,-9.0,-9.0,-9.0,4.0,1267414 -3132002,1630240520,2,86,0,1,1630102614,1,6.0,-9.0,-9.0,-9.0,2.0,1267415 -3132003,1630239746,2,78,0,1,1630102615,2,6.0,-9.0,-9.0,-9.0,4.0,1267416 -3132004,1630240546,2,81,0,1,1630102616,1,6.0,-9.0,-9.0,-9.0,4.0,1267417 -3132005,1630240559,2,68,0,1,1630102617,1,6.0,-9.0,-9.0,-9.0,4.0,1267418 -3132006,1630240561,2,65,0,1,1630102618,1,6.0,12.0,6.0,15.0,2.0,1267419 -3132007,1630239747,2,78,0,1,1630102619,2,6.0,-9.0,-9.0,-9.0,4.0,1267420 -3132008,1630239696,2,66,0,1,1630102620,2,6.0,-9.0,-9.0,-9.0,4.0,1267421 -3132009,1630239667,2,84,0,1,1630102621,2,6.0,-9.0,-9.0,-9.0,4.0,1267422 -3132010,1630240547,2,84,0,1,1630102622,1,6.0,-9.0,-9.0,-9.0,4.0,1267423 -3132011,1630240521,2,86,0,1,1630102623,1,6.0,-9.0,-9.0,-9.0,2.0,1267424 -3132012,1630239732,2,69,0,1,1630102624,2,6.0,-9.0,-9.0,-9.0,4.0,1267425 -3132013,1630239724,2,65,0,1,1630102625,2,6.0,-9.0,-9.0,-9.0,4.0,1267426 -3132014,1630240544,2,75,0,1,1630102626,1,6.0,-9.0,-9.0,-9.0,2.0,1267427 -3132015,1630240522,2,86,0,1,1630102627,1,6.0,-9.0,-9.0,-9.0,2.0,1267428 -3132016,1630239726,2,78,0,1,1630102628,2,6.0,-9.0,-9.0,-9.0,4.0,1267429 -3132017,1630239678,2,74,0,1,1630102629,2,6.0,-9.0,-9.0,-9.0,4.0,1267430 -3132018,1630239735,2,68,0,1,1630102630,2,6.0,-9.0,-9.0,-9.0,4.0,1267431 -3132019,1630240518,2,77,0,1,1630102631,1,6.0,-9.0,-9.0,-9.0,4.0,1267432 -3132020,1630240552,2,73,0,1,1630102632,1,6.0,-9.0,-9.0,-9.0,4.0,1267433 -3132021,1630240539,2,76,0,1,1630102633,1,3.0,-9.0,-9.0,-9.0,4.0,1267434 -3132022,1630239740,2,79,0,1,1630102634,2,6.0,-9.0,-9.0,-9.0,4.0,1267435 -3132023,1630239659,2,69,0,1,1630102635,2,6.0,-9.0,-9.0,-9.0,4.0,1267436 -3132024,1630240075,2,69,0,1,1630102636,1,6.0,-9.0,-9.0,-9.0,2.0,1267437 -3132025,1630240074,2,61,12,2,1630102636,2,6.0,-9.0,-9.0,-9.0,4.0,1267437 -3132026,1630239688,2,81,0,1,1630102637,2,6.0,-9.0,-9.0,-9.0,4.0,1267438 -3132027,1630239691,2,57,2,2,1630102637,1,6.0,-9.0,-9.0,-9.0,4.0,1267438 -3132028,1630239736,2,66,0,1,1630102638,2,6.0,-9.0,-9.0,-9.0,4.0,1267439 -3132029,1630239738,2,21,10,2,1630102638,1,3.0,-9.0,-9.0,-9.0,4.0,1267439 -3132030,1630239737,2,66,0,1,1630102639,2,6.0,-9.0,-9.0,-9.0,4.0,1267440 -3132031,1630239739,2,21,10,2,1630102639,1,3.0,-9.0,-9.0,-9.0,4.0,1267440 -3132032,1630239689,2,81,0,1,1630102640,2,6.0,-9.0,-9.0,-9.0,4.0,1267441 -3132033,1630239692,2,57,2,2,1630102640,1,6.0,-9.0,-9.0,-9.0,4.0,1267441 -3132034,1630239744,2,81,0,1,1630102641,2,6.0,-9.0,-9.0,-9.0,4.0,1267442 -3132035,1630239745,2,55,2,2,1630102641,2,6.0,-9.0,-9.0,-9.0,2.0,1267442 -3132036,1630240115,2,66,0,1,1630102642,1,6.0,-9.0,-9.0,-9.0,2.0,1267443 -3132037,1630240114,2,63,1,2,1630102642,2,6.0,-9.0,-9.0,-9.0,4.0,1267443 -3132038,1630240524,2,66,0,1,1630102643,1,1.0,35.0,1.0,-9.0,4.0,1267444 -3132039,1630239918,2,22,0,1,1630102644,2,6.0,40.0,1.0,-9.0,4.0,1267445 -3132040,1630239791,1,24,0,1,1630102645,2,6.0,-9.0,-9.0,16.0,4.0,1267446 -3132041,1630240078,2,40,0,1,1630102646,2,1.0,60.0,3.0,-9.0,4.0,1267447 -3132042,1630240060,2,44,0,1,1630102647,2,3.0,-9.0,-9.0,-9.0,4.0,1267448 -3132043,1630240456,2,62,0,1,1630102648,1,1.0,30.0,3.0,-9.0,4.0,1267449 -3132044,1630239805,1,27,0,1,1630102649,1,1.0,45.0,1.0,-9.0,4.0,1267450 -3132045,1630239804,1,28,1,2,1630102649,2,1.0,52.0,4.0,-9.0,4.0,1267450 -3132046,1630239757,1,27,0,1,1630102650,1,1.0,40.0,1.0,16.0,4.0,1267451 -3132047,1630239756,1,29,15,2,1630102650,2,1.0,50.0,1.0,-9.0,4.0,1267451 -3132048,1630239760,1,51,0,1,1630102651,2,6.0,-9.0,-9.0,-9.0,4.0,1267452 -3132049,1630239761,1,44,12,2,1630102651,1,3.0,15.0,6.0,-9.0,4.0,1267452 -3132050,1630239778,1,27,0,1,1630102652,1,1.0,50.0,1.0,-9.0,4.0,1267453 -3132051,1630239777,3,28,1,2,1630102652,2,6.0,45.0,4.0,-9.0,4.0,1267453 -3132052,1630239901,2,49,0,1,1630102653,2,6.0,-9.0,-9.0,-9.0,4.0,1267454 -3132053,1630239903,2,49,1,2,1630102653,1,1.0,40.0,6.0,-9.0,2.0,1267454 -3132054,1630239902,2,20,2,3,1630102653,2,3.0,-9.0,-9.0,-9.0,4.0,1267454 -3132055,1630240033,2,29,0,1,1630102654,2,1.0,40.0,1.0,-9.0,4.0,1267455 -3132056,1630240531,2,72,0,1,1630102655,1,1.0,30.0,1.0,-9.0,4.0,1267456 -3132057,1630239830,1,55,0,1,1630102656,1,1.0,50.0,1.0,-9.0,4.0,1267457 -3132058,1630240426,2,38,0,1,1630102657,1,1.0,55.0,1.0,-9.0,4.0,1267458 -3132059,1630239743,2,85,0,1,1630102658,2,6.0,-9.0,-9.0,-9.0,4.0,1267459 -3132060,1630240130,2,27,0,1,1630102659,2,3.0,-9.0,-9.0,-9.0,4.0,1267460 -3132061,1630239749,1,69,0,1,1630102660,2,6.0,-9.0,-9.0,-9.0,4.0,1267461 -3132062,1630240124,2,34,0,1,1630102661,2,1.0,40.0,1.0,16.0,4.0,1267462 -3132063,1630240125,2,34,1,2,1630102661,1,1.0,60.0,1.0,-9.0,4.0,1267462 -3132064,1630239870,1,40,0,1,1630102662,1,6.0,-9.0,-9.0,-9.0,2.0,1267463 -3132065,1630239871,4,23,15,2,1630102662,2,6.0,30.0,6.0,-9.0,4.0,1267463 -3132066,1630239764,1,60,0,1,1630102663,2,1.0,48.0,1.0,-9.0,4.0,1267464 -3132067,1630239754,1,30,0,1,1630102664,2,3.0,40.0,2.0,-9.0,4.0,1267465 -3132068,1630240455,2,53,0,1,1630102665,1,6.0,-9.0,-9.0,-9.0,4.0,1267466 -3132069,1630239849,1,26,0,1,1630102666,1,1.0,60.0,1.0,-9.0,4.0,1267467 -3132070,1630240467,2,57,0,1,1630102667,1,6.0,-9.0,-9.0,-9.0,2.0,1267468 -3132071,1630240508,2,22,0,1,1630102668,1,1.0,20.0,6.0,-9.0,4.0,1267469 -3132072,1630240377,2,44,0,1,1630102669,1,3.0,-9.0,-9.0,15.0,3.0,1267470 -3132073,1630239660,2,69,0,1,1630102670,2,6.0,-9.0,-9.0,-9.0,4.0,1267471 -3132074,1630240100,2,32,0,1,1630102671,2,1.0,20.0,1.0,-9.0,4.0,1267472 -3132075,1630240101,2,10,2,2,1630102671,1,-9.0,-9.0,-9.0,7.0,-9.0,1267472 -3132076,1630240043,2,41,0,1,1630102672,2,3.0,-9.0,-9.0,-9.0,4.0,1267473 -3132077,1630239706,2,76,0,1,1630102673,2,6.0,-9.0,-9.0,-9.0,4.0,1267474 -3132078,1630240103,2,63,0,1,1630102674,2,1.0,40.0,1.0,-9.0,4.0,1267475 -3132079,1630240569,1,69,0,1,1630102675,1,6.0,-9.0,-9.0,-9.0,4.0,1267476 -3132080,1630240288,2,41,0,1,1630102676,1,3.0,-9.0,-9.0,-9.0,4.0,1267477 -3132081,1630240091,2,26,0,1,1630102677,2,1.0,40.0,4.0,15.0,4.0,1267478 -3132082,1630240092,2,35,13,2,1630102677,1,1.0,20.0,1.0,-9.0,4.0,1267478 -3132083,1630240076,2,58,0,1,1630102678,2,1.0,40.0,1.0,-9.0,4.0,1267479 -3132084,1630240077,2,26,2,2,1630102678,1,3.0,-9.0,-9.0,-9.0,4.0,1267479 -3132085,1630240041,2,26,0,1,1630102679,2,1.0,50.0,1.0,-9.0,4.0,1267480 -3132086,1630240042,2,27,13,2,1630102679,1,1.0,40.0,1.0,-9.0,4.0,1267480 -3132087,1630240367,2,62,0,1,1630102680,1,1.0,45.0,1.0,-9.0,4.0,1267481 -3132088,1630239772,1,40,0,1,1630102681,1,1.0,40.0,1.0,-9.0,4.0,1267482 -3132089,1630239771,1,43,1,2,1630102681,2,1.0,26.0,1.0,-9.0,4.0,1267482 -3132090,1630239790,1,44,0,1,1630102682,2,1.0,40.0,1.0,-9.0,4.0,1267483 -3132091,1630239936,2,69,0,1,1630102683,1,6.0,-9.0,-9.0,-9.0,2.0,1267484 -3132092,1630239935,2,63,1,2,1630102683,2,6.0,-9.0,-9.0,-9.0,4.0,1267484 -3132093,1630239872,1,22,0,1,1630102684,1,6.0,28.0,4.0,16.0,4.0,1267485 -3132094,1630240418,2,42,0,1,1630102685,1,1.0,40.0,1.0,-9.0,4.0,1267486 -3132095,1630239840,1,55,0,1,1630102686,1,1.0,40.0,3.0,-9.0,4.0,1267487 -3132096,1630239785,1,33,0,1,1630102687,2,1.0,65.0,1.0,-9.0,4.0,1267488 -3132097,1630239794,1,62,0,1,1630102688,1,1.0,20.0,6.0,-9.0,2.0,1267489 -3132098,1630239793,1,51,13,2,1630102688,2,6.0,-9.0,-9.0,-9.0,4.0,1267489 -3132099,1630239842,1,57,0,1,1630102689,1,3.0,20.0,6.0,-9.0,4.0,1267490 -3132100,1630239844,1,75,10,2,1630102689,1,6.0,-9.0,-9.0,-9.0,2.0,1267490 -3132101,1630240553,2,71,0,1,1630102690,1,6.0,-9.0,-9.0,-9.0,2.0,1267491 -3132102,1630239797,1,21,0,1,1630102691,2,1.0,25.0,1.0,-9.0,4.0,1267492 -3132103,1630239960,2,34,0,1,1630102692,2,1.0,40.0,1.0,-9.0,4.0,1267493 -3132104,1630239961,2,33,1,2,1630102692,1,1.0,40.0,1.0,-9.0,4.0,1267493 -3132105,1630240220,2,44,0,1,1630102693,1,1.0,40.0,1.0,-9.0,4.0,1267494 -3132106,1630240221,2,25,10,2,1630102693,1,1.0,40.0,1.0,-9.0,4.0,1267494 -3132107,1630239929,2,46,0,1,1630102694,2,6.0,25.0,5.0,-9.0,4.0,1267495 -3132108,1630239932,2,20,2,2,1630102694,2,6.0,-9.0,-9.0,-9.0,4.0,1267495 -3132109,1630239957,2,46,0,1,1630102695,2,6.0,-9.0,-9.0,-9.0,2.0,1267496 -3132110,1630239958,2,53,1,2,1630102695,1,6.0,-9.0,-9.0,-9.0,4.0,1267496 -3132111,1630240015,2,33,0,1,1630102696,2,3.0,30.0,6.0,-9.0,4.0,1267497 -3132112,1630240016,2,18,2,2,1630102696,2,6.0,-9.0,-9.0,-9.0,4.0,1267497 -3132113,1630239658,2,71,0,1,1630102697,2,6.0,-9.0,-9.0,-9.0,4.0,1267498 -3132114,1630239976,2,57,0,1,1630102698,2,6.0,-9.0,-9.0,-9.0,4.0,1267499 -3132115,1630239834,1,33,0,1,1630102699,1,1.0,25.0,1.0,16.0,4.0,1267500 -3132116,1630239835,4,30,1,2,1630102699,2,1.0,25.0,1.0,15.0,4.0,1267500 -3132117,1630239694,2,69,0,1,1630102700,2,6.0,-9.0,-9.0,-9.0,4.0,1267501 -3132118,1630239695,2,65,1,2,1630102700,1,6.0,-9.0,-9.0,-9.0,4.0,1267501 -3132119,1630239955,2,46,0,1,1630102701,2,6.0,-9.0,-9.0,-9.0,4.0,1267502 -3132120,1630239956,2,16,2,2,1630102701,2,6.0,-9.0,-9.0,13.0,-9.0,1267502 -3132121,1630239780,1,27,0,1,1630102702,1,6.0,-9.0,-9.0,16.0,4.0,1267503 -3132122,1630239779,1,24,1,2,1630102702,2,6.0,-9.0,-9.0,16.0,4.0,1267503 -3132123,1630239758,1,27,0,1,1630102703,2,1.0,20.0,1.0,16.0,4.0,1267504 -3132124,1630239759,1,26,1,2,1630102703,1,3.0,-9.0,-9.0,16.0,4.0,1267504 -3132125,1630239665,2,65,0,1,1630102704,2,6.0,-9.0,-9.0,-9.0,4.0,1267505 -3132126,1630239666,2,54,1,2,1630102704,1,6.0,-9.0,-9.0,-9.0,4.0,1267505 -3132127,1630239755,1,60,0,1,1630102705,2,6.0,-9.0,-9.0,-9.0,4.0,1267506 -3132128,1630239847,1,57,0,1,1630102706,1,1.0,60.0,1.0,-9.0,4.0,1267507 -3132129,1630240274,2,42,0,1,1630102707,1,6.0,-9.0,-9.0,-9.0,4.0,1267508 -3132130,1630240275,2,30,10,2,1630102707,1,6.0,40.0,5.0,-9.0,4.0,1267508 -3132131,1630240222,2,53,0,1,1630102708,1,6.0,-9.0,-9.0,-9.0,4.0,1267509 -3132132,1630240223,2,60,10,2,1630102708,1,6.0,-9.0,-9.0,-9.0,2.0,1267509 -3132133,1630240224,2,58,10,3,1630102708,1,6.0,-9.0,-9.0,-9.0,2.0,1267509 -3132134,1630239808,1,24,0,1,1630102709,1,6.0,-9.0,-9.0,15.0,4.0,1267510 -3132135,1630239661,2,72,0,1,1630102710,2,6.0,-9.0,-9.0,-9.0,4.0,1267511 -3132136,1630239662,2,89,10,2,1630102710,1,6.0,-9.0,-9.0,-9.0,2.0,1267511 -3132137,1630240567,1,69,0,1,1630102711,1,1.0,60.0,1.0,-9.0,4.0,1267512 -3132138,1630239984,2,46,0,1,1630102712,2,1.0,38.0,1.0,-9.0,4.0,1267513 -3132139,1630239985,2,21,2,2,1630102712,1,6.0,-9.0,-9.0,-9.0,4.0,1267513 -3132140,1630240151,2,61,0,1,1630102713,1,3.0,-9.0,-9.0,15.0,4.0,1267514 -3132141,1630240149,2,48,13,2,1630102713,2,3.0,-9.0,-9.0,15.0,4.0,1267514 -3132142,1630240153,2,21,15,3,1630102713,1,6.0,-9.0,-9.0,15.0,4.0,1267514 -3132143,1630239915,2,60,0,1,1630102714,2,1.0,40.0,1.0,-9.0,4.0,1267515 -3132144,1630240557,2,68,0,1,1630102715,1,1.0,45.0,1.0,-9.0,4.0,1267516 -3132145,1630240558,2,68,12,2,1630102715,1,1.0,32.0,1.0,-9.0,4.0,1267516 -3132146,1630239856,1,30,0,1,1630102716,1,1.0,30.0,1.0,-9.0,4.0,1267517 -3132147,1630240004,2,77,0,1,1630102717,1,6.0,-9.0,-9.0,-9.0,4.0,1267518 -3132148,1630240003,2,64,5,2,1630102717,2,6.0,-9.0,-9.0,-9.0,4.0,1267518 -3132149,1630239690,2,81,0,1,1630102718,2,6.0,-9.0,-9.0,-9.0,4.0,1267519 -3132150,1630239693,2,57,2,2,1630102718,1,6.0,-9.0,-9.0,-9.0,4.0,1267519 -3132151,1630240002,2,55,0,1,1630102719,2,1.0,40.0,1.0,-9.0,4.0,1267520 -3132152,1630239824,1,62,0,1,1630102720,1,6.0,-9.0,-9.0,-9.0,2.0,1267521 -3132153,1630240048,2,53,0,1,1630102721,2,1.0,40.0,1.0,-9.0,4.0,1267522 -3132154,1630240050,2,46,1,2,1630102721,1,1.0,40.0,1.0,-9.0,4.0,1267522 -3132155,1630239964,2,39,0,1,1630102722,1,6.0,-9.0,-9.0,-9.0,4.0,1267523 -3132156,1630239963,2,32,10,2,1630102722,2,1.0,24.0,6.0,-9.0,4.0,1267523 -3132157,1630239860,1,57,0,1,1630102723,1,1.0,45.0,2.0,-9.0,4.0,1267524 -3132158,1630240203,2,23,0,1,1630102724,2,6.0,-9.0,-9.0,-9.0,4.0,1267525 -3132159,1630240039,2,49,0,1,1630102725,2,1.0,48.0,1.0,-9.0,4.0,1267526 -3132160,1630240040,2,26,2,2,1630102725,1,1.0,3.0,6.0,-9.0,4.0,1267526 -3132161,1630240063,2,20,0,1,1630102726,2,1.0,40.0,1.0,-9.0,4.0,1267527 -3132162,1630239846,2,43,0,1,1630102727,1,6.0,-9.0,-9.0,-9.0,2.0,1267528 -3132163,1630239845,1,64,1,2,1630102727,1,1.0,32.0,1.0,-9.0,4.0,1267528 -3132164,1630239784,1,30,0,1,1630102728,1,1.0,60.0,1.0,16.0,4.0,1267529 -3132165,1630239783,1,29,1,2,1630102728,2,1.0,65.0,1.0,16.0,4.0,1267529 -3132166,1630240837,2,41,0,1,1630102729,1,3.0,50.0,4.0,-9.0,4.0,1267530 -3132167,1630240605,1,27,0,1,1630102730,2,6.0,37.0,5.0,16.0,4.0,1267531 -3132168,1630240606,1,27,0,1,1630102731,2,6.0,37.0,5.0,16.0,4.0,1267532 -3132169,1630240811,2,32,0,1,1630102732,1,6.0,56.0,1.0,-9.0,4.0,1267533 -3132170,1630240814,2,29,12,2,1630102732,1,6.0,-9.0,-9.0,-9.0,4.0,1267533 -3132171,1630240812,2,32,0,1,1630102733,1,6.0,56.0,1.0,-9.0,4.0,1267534 -3132172,1630240815,2,29,12,2,1630102733,1,6.0,-9.0,-9.0,-9.0,4.0,1267534 -3132173,1630240632,1,29,0,1,1630102734,1,6.0,40.0,3.0,16.0,4.0,1267535 -3132174,1630240633,1,27,12,2,1630102734,1,6.0,40.0,5.0,-9.0,4.0,1267535 -3132175,1630240834,2,28,0,1,1630102735,1,1.0,55.0,1.0,-9.0,4.0,1267536 -3132176,1630240877,2,38,0,1,1630102736,1,1.0,55.0,1.0,-9.0,4.0,1267537 -3132177,1630240684,1,30,0,1,1630102737,1,1.0,40.0,4.0,-9.0,4.0,1267538 -3132178,1630240720,1,29,0,1,1630102738,1,1.0,35.0,1.0,-9.0,4.0,1267539 -3132179,1630240655,1,29,0,1,1630102739,1,1.0,45.0,1.0,-9.0,4.0,1267540 -3132180,1630240721,1,29,0,1,1630102740,1,1.0,35.0,1.0,-9.0,4.0,1267541 -3132181,1630240656,1,29,0,1,1630102741,1,1.0,45.0,1.0,-9.0,4.0,1267542 -3132182,1630240685,1,30,0,1,1630102742,1,1.0,40.0,4.0,-9.0,4.0,1267543 -3132183,1630240810,2,44,0,1,1630102743,1,1.0,40.0,1.0,-9.0,4.0,1267544 -3132184,1630240741,2,25,0,1,1630102744,2,1.0,40.0,1.0,-9.0,4.0,1267545 -3132185,1630240797,2,42,0,1,1630102745,1,1.0,40.0,1.0,-9.0,4.0,1267546 -3132186,1630240882,2,35,0,1,1630102746,1,1.0,40.0,1.0,-9.0,2.0,1267547 -3132187,1630240779,2,40,0,1,1630102747,1,1.0,50.0,1.0,-9.0,4.0,1267548 -3132188,1630240951,4,31,0,1,1630102748,1,1.0,60.0,1.0,-9.0,4.0,1267549 -3132189,1630240664,1,29,0,1,1630102749,1,1.0,40.0,1.0,-9.0,2.0,1267550 -3132190,1630240688,1,31,0,1,1630102750,1,2.0,70.0,1.0,-9.0,4.0,1267551 -3132191,1630240665,1,29,0,1,1630102751,1,1.0,40.0,1.0,-9.0,2.0,1267552 -3132192,1630240695,1,26,0,1,1630102752,1,1.0,50.0,1.0,-9.0,4.0,1267553 -3132193,1630240663,1,29,0,1,1630102753,1,1.0,50.0,1.0,-9.0,4.0,1267554 -3132194,1630240666,1,29,0,1,1630102754,1,1.0,40.0,1.0,-9.0,2.0,1267555 -3132195,1630240689,1,31,0,1,1630102755,1,2.0,70.0,1.0,-9.0,4.0,1267556 -3132196,1630240696,1,26,0,1,1630102756,1,1.0,60.0,1.0,-9.0,4.0,1267557 -3132197,1630240692,1,26,0,1,1630102757,1,1.0,45.0,1.0,-9.0,4.0,1267558 -3132198,1630240693,4,25,13,2,1630102757,2,1.0,35.0,1.0,-9.0,4.0,1267558 -3132199,1630240619,1,37,0,1,1630102758,1,1.0,50.0,1.0,16.0,4.0,1267559 -3132200,1630240618,1,49,1,2,1630102758,2,1.0,30.0,1.0,-9.0,4.0,1267559 -3132201,1630240703,3,30,0,1,1630102759,1,1.0,45.0,1.0,-9.0,4.0,1267560 -3132202,1630240822,2,29,0,1,1630102760,1,1.0,40.0,1.0,-9.0,4.0,1267561 -3132203,1630240914,2,42,0,1,1630102761,1,2.0,60.0,1.0,-9.0,2.0,1267562 -3132204,1630240634,1,26,0,1,1630102762,1,1.0,40.0,3.0,-9.0,4.0,1267563 -3132205,1630240672,1,25,0,1,1630102763,1,1.0,40.0,1.0,-9.0,4.0,1267564 -3132206,1630240679,1,27,0,1,1630102764,1,1.0,40.0,1.0,-9.0,4.0,1267565 -3132207,1630240635,1,26,0,1,1630102765,1,1.0,40.0,3.0,-9.0,4.0,1267566 -3132208,1630240636,1,26,0,1,1630102766,1,1.0,40.0,3.0,-9.0,4.0,1267567 -3132209,1630240624,1,34,0,1,1630102767,1,1.0,17.0,3.0,-9.0,4.0,1267568 -3132210,1630240626,2,39,1,2,1630102767,2,1.0,45.0,1.0,-9.0,4.0,1267568 -3132211,1630240625,1,34,0,1,1630102768,1,1.0,17.0,3.0,-9.0,4.0,1267569 -3132212,1630240627,2,39,1,2,1630102768,2,1.0,45.0,1.0,-9.0,4.0,1267569 -3132213,1630240609,1,28,0,1,1630102769,2,1.0,80.0,1.0,-9.0,2.0,1267570 -3132214,1630240611,1,26,13,2,1630102769,1,1.0,65.0,1.0,-9.0,4.0,1267570 -3132215,1630240610,1,28,0,1,1630102770,2,1.0,80.0,1.0,-9.0,2.0,1267571 -3132216,1630240612,1,26,13,2,1630102770,1,1.0,65.0,1.0,-9.0,4.0,1267571 -3132217,1630240897,2,39,0,1,1630102771,1,6.0,-9.0,-9.0,-9.0,4.0,1267572 -3132218,1630240912,2,39,0,1,1630102772,1,6.0,-9.0,-9.0,-9.0,4.0,1267573 -3132219,1630240780,2,44,0,1,1630102773,1,6.0,-9.0,-9.0,-9.0,4.0,1267574 -3132220,1630240843,2,43,0,1,1630102774,1,6.0,-9.0,-9.0,-9.0,4.0,1267575 -3132221,1630240781,2,44,0,1,1630102775,1,6.0,-9.0,-9.0,-9.0,4.0,1267576 -3132222,1630240898,2,39,0,1,1630102776,1,6.0,-9.0,-9.0,-9.0,4.0,1267577 -3132223,1630240866,2,42,0,1,1630102777,1,3.0,-9.0,-9.0,-9.0,4.0,1267578 -3132224,1630240824,2,34,0,1,1630102778,1,6.0,-9.0,-9.0,-9.0,4.0,1267579 -3132225,1630240724,2,38,0,1,1630102779,2,6.0,-9.0,-9.0,-9.0,4.0,1267580 -3132226,1630240794,2,26,0,1,1630102780,1,6.0,-9.0,-9.0,-9.0,4.0,1267581 -3132227,1630240785,2,41,0,1,1630102781,1,3.0,24.0,5.0,-9.0,4.0,1267582 -3132228,1630240825,2,34,0,1,1630102782,1,6.0,-9.0,-9.0,-9.0,4.0,1267583 -3132229,1630240727,2,34,0,1,1630102783,2,3.0,-9.0,-9.0,15.0,4.0,1267584 -3132230,1630240899,2,39,0,1,1630102784,1,6.0,-9.0,-9.0,-9.0,4.0,1267585 -3132231,1630240844,2,43,0,1,1630102785,1,6.0,-9.0,-9.0,-9.0,4.0,1267586 -3132232,1630240869,2,33,0,1,1630102786,1,3.0,-9.0,-9.0,15.0,4.0,1267587 -3132233,1630240870,2,33,0,1,1630102787,1,3.0,-9.0,-9.0,15.0,4.0,1267588 -3132234,1630240786,2,41,0,1,1630102788,1,3.0,24.0,5.0,-9.0,4.0,1267589 -3132235,1630240878,2,41,0,1,1630102789,1,3.0,40.0,5.0,-9.0,4.0,1267590 -3132236,1630240795,2,26,0,1,1630102790,1,6.0,-9.0,-9.0,-9.0,4.0,1267591 -3132237,1630240867,2,42,0,1,1630102791,1,3.0,-9.0,-9.0,-9.0,4.0,1267592 -3132238,1630240854,2,36,0,1,1630102792,1,6.0,-9.0,-9.0,-9.0,4.0,1267593 -3132239,1630240818,2,28,0,1,1630102793,1,3.0,-9.0,-9.0,-9.0,4.0,1267594 -3132240,1630240751,2,43,0,1,1630102794,2,6.0,-9.0,-9.0,-9.0,4.0,1267595 -3132241,1630240819,2,28,0,1,1630102795,1,3.0,-9.0,-9.0,-9.0,4.0,1267596 -3132242,1630240826,2,34,0,1,1630102796,1,6.0,-9.0,-9.0,-9.0,4.0,1267597 -3132243,1630240782,2,44,0,1,1630102797,1,6.0,-9.0,-9.0,-9.0,4.0,1267598 -3132244,1630240871,2,33,0,1,1630102798,1,3.0,-9.0,-9.0,15.0,4.0,1267599 -3132245,1630240820,2,28,0,1,1630102799,1,3.0,-9.0,-9.0,-9.0,4.0,1267600 -3132246,1630240900,2,39,0,1,1630102800,1,6.0,-9.0,-9.0,-9.0,4.0,1267601 -3132247,1630240872,2,33,0,1,1630102801,1,3.0,-9.0,-9.0,15.0,4.0,1267602 -3132248,1630240879,2,41,0,1,1630102802,1,3.0,40.0,5.0,-9.0,4.0,1267603 -3132249,1630240783,2,44,0,1,1630102803,1,6.0,-9.0,-9.0,-9.0,4.0,1267604 -3132250,1630240725,2,38,0,1,1630102804,2,6.0,-9.0,-9.0,-9.0,4.0,1267605 -3132251,1630240821,2,28,0,1,1630102805,1,3.0,-9.0,-9.0,-9.0,4.0,1267606 -3132252,1630240784,2,44,0,1,1630102806,1,6.0,-9.0,-9.0,-9.0,4.0,1267607 -3132253,1630240796,2,26,0,1,1630102807,1,6.0,-9.0,-9.0,-9.0,4.0,1267608 -3132254,1630240845,2,28,0,1,1630102808,1,3.0,-9.0,-9.0,-9.0,4.0,1267609 -3132255,1630240873,3,44,0,1,1630102809,1,3.0,-9.0,-9.0,-9.0,4.0,1267610 -3132256,1630240953,3,39,0,1,1630102810,1,6.0,-9.0,-9.0,-9.0,4.0,1267611 -3132257,1630240620,1,37,0,1,1630102811,2,6.0,-9.0,-9.0,-9.0,4.0,1267612 -3132258,1630240637,1,39,0,1,1630102812,1,6.0,8.0,6.0,16.0,4.0,1267613 -3132259,1630240638,1,39,0,1,1630102813,1,6.0,8.0,6.0,16.0,4.0,1267614 -3132260,1630240639,1,39,0,1,1630102814,1,6.0,8.0,6.0,16.0,4.0,1267615 -3132261,1630240640,1,39,0,1,1630102815,1,6.0,8.0,6.0,16.0,4.0,1267616 -3132262,1630240641,1,39,0,1,1630102816,1,6.0,8.0,6.0,16.0,4.0,1267617 -3132263,1630240642,1,39,0,1,1630102817,1,6.0,8.0,6.0,16.0,4.0,1267618 -3132264,1630240643,1,39,0,1,1630102818,1,6.0,8.0,6.0,16.0,4.0,1267619 -3132265,1630240621,1,37,0,1,1630102819,2,6.0,-9.0,-9.0,-9.0,4.0,1267620 -3132266,1630240644,1,39,0,1,1630102820,1,6.0,8.0,6.0,16.0,4.0,1267621 -3132267,1630240645,1,39,0,1,1630102821,1,6.0,8.0,6.0,16.0,4.0,1267622 -3132268,1630240884,2,28,0,1,1630102822,1,3.0,25.0,4.0,15.0,4.0,1267623 -3132269,1630240915,2,38,0,1,1630102823,1,6.0,-9.0,-9.0,-9.0,4.0,1267624 -3132270,1630240874,2,29,0,1,1630102824,1,6.0,-9.0,-9.0,-9.0,4.0,1267625 -3132271,1630240875,2,29,0,1,1630102825,1,6.0,-9.0,-9.0,-9.0,4.0,1267626 -3132272,1630240868,2,40,0,1,1630102826,1,6.0,-9.0,-9.0,-9.0,4.0,1267627 -3132273,1630240881,2,29,0,1,1630102827,1,6.0,-9.0,-9.0,16.0,3.0,1267628 -3132274,1630240823,2,35,0,1,1630102828,1,3.0,-9.0,-9.0,-9.0,4.0,1267629 -3132275,1630240876,2,29,0,1,1630102829,1,6.0,-9.0,-9.0,-9.0,4.0,1267630 -3132276,1630240752,2,41,0,1,1630102830,2,3.0,-9.0,-9.0,-9.0,4.0,1267631 -3132277,1630240903,2,42,0,1,1630102831,1,6.0,-9.0,-9.0,-9.0,4.0,1267632 -3132278,1630240758,2,40,0,1,1630102832,2,3.0,-9.0,-9.0,16.0,4.0,1267633 -3132279,1630240916,2,38,0,1,1630102833,1,6.0,-9.0,-9.0,-9.0,4.0,1267634 -3132280,1630240955,4,38,0,1,1630102834,1,3.0,30.0,6.0,15.0,3.0,1267635 -3132281,1630240653,1,29,0,1,1630102835,1,6.0,-9.0,-9.0,15.0,4.0,1267636 -3132282,1630240660,1,31,0,1,1630102836,1,3.0,8.0,4.0,-9.0,4.0,1267637 -3132283,1630240647,1,40,0,1,1630102837,1,6.0,28.0,4.0,-9.0,4.0,1267638 -3132284,1630240661,1,31,0,1,1630102838,1,3.0,8.0,4.0,-9.0,4.0,1267639 -3132285,1630240648,1,40,0,1,1630102839,1,6.0,28.0,4.0,-9.0,4.0,1267640 -3132286,1630240649,1,40,0,1,1630102840,1,6.0,28.0,4.0,-9.0,4.0,1267641 -3132287,1630240650,1,40,0,1,1630102841,1,6.0,28.0,4.0,-9.0,4.0,1267642 -3132288,1630240651,1,40,0,1,1630102842,1,6.0,28.0,4.0,-9.0,4.0,1267643 -3132289,1630240662,1,31,0,1,1630102843,1,3.0,8.0,4.0,-9.0,4.0,1267644 -3132290,1630240652,1,40,0,1,1630102844,1,6.0,28.0,4.0,-9.0,4.0,1267645 -3132291,1630240858,2,35,0,1,1630102845,1,6.0,-9.0,-9.0,-9.0,4.0,1267646 -3132292,1630240861,2,30,5,2,1630102845,1,6.0,-9.0,-9.0,-9.0,4.0,1267646 -3132293,1630240859,2,35,0,1,1630102846,1,6.0,-9.0,-9.0,-9.0,4.0,1267647 -3132294,1630240862,2,30,5,2,1630102846,1,6.0,-9.0,-9.0,-9.0,4.0,1267647 -3132295,1630240885,2,44,0,1,1630102847,1,6.0,-9.0,-9.0,14.0,4.0,1267648 -3132296,1630240889,2,50,5,2,1630102847,1,6.0,-9.0,-9.0,-9.0,4.0,1267648 -3132297,1630240886,2,44,0,1,1630102848,1,6.0,-9.0,-9.0,14.0,4.0,1267649 -3132298,1630240890,2,50,5,2,1630102848,1,6.0,-9.0,-9.0,-9.0,4.0,1267649 -3132299,1630240887,2,44,0,1,1630102849,1,6.0,-9.0,-9.0,14.0,4.0,1267650 -3132300,1630240891,2,50,5,2,1630102849,1,6.0,-9.0,-9.0,-9.0,4.0,1267650 -3132301,1630240888,2,44,0,1,1630102850,1,6.0,-9.0,-9.0,14.0,4.0,1267651 -3132302,1630240892,2,50,5,2,1630102850,1,6.0,-9.0,-9.0,-9.0,4.0,1267651 -3132303,1630240860,2,35,0,1,1630102851,1,6.0,-9.0,-9.0,-9.0,4.0,1267652 -3132304,1630240863,2,30,5,2,1630102851,1,6.0,-9.0,-9.0,-9.0,4.0,1267652 -3132305,1630240775,2,40,0,1,1630102852,2,6.0,-9.0,-9.0,-9.0,4.0,1267653 -3132306,1630240776,2,21,2,2,1630102852,2,6.0,30.0,6.0,15.0,4.0,1267653 -3132307,1630240743,2,33,0,1,1630102853,2,3.0,30.0,6.0,-9.0,4.0,1267654 -3132308,1630240744,2,18,2,2,1630102853,2,6.0,-9.0,-9.0,-9.0,4.0,1267654 -3132309,1630240713,1,40,0,1,1630102854,1,6.0,-9.0,-9.0,-9.0,2.0,1267655 -3132310,1630240715,4,23,15,2,1630102854,2,6.0,30.0,6.0,-9.0,4.0,1267655 -3132311,1630240799,2,40,0,1,1630102855,1,1.0,40.0,6.0,-9.0,4.0,1267656 -3132312,1630240773,2,27,0,1,1630102856,2,1.0,35.0,1.0,-9.0,4.0,1267657 -3132313,1630240699,1,32,0,1,1630102857,1,1.0,60.0,5.0,-9.0,4.0,1267658 -3132314,1630240700,1,32,0,1,1630102858,1,1.0,60.0,5.0,-9.0,4.0,1267659 -3132315,1630240629,1,42,0,1,1630102859,1,1.0,40.0,1.0,-9.0,2.0,1267660 -3132316,1630240630,1,42,0,1,1630102860,1,1.0,40.0,1.0,-9.0,2.0,1267661 -3132317,1630240838,2,30,0,1,1630102861,1,1.0,40.0,1.0,-9.0,4.0,1267662 -3132318,1630240911,2,35,0,1,1630102862,1,1.0,40.0,4.0,-9.0,4.0,1267663 -3132319,1630240681,1,27,0,1,1630102863,1,1.0,40.0,1.0,-9.0,4.0,1267664 -3132320,1630240622,1,31,0,1,1630102864,1,1.0,35.0,1.0,-9.0,4.0,1267665 -3132321,1630240623,1,31,0,1,1630102865,1,1.0,35.0,1.0,-9.0,4.0,1267666 -3132322,1630240712,1,31,0,1,1630102866,1,1.0,40.0,6.0,16.0,2.0,1267667 -3132323,1630240694,1,30,0,1,1630102867,1,1.0,40.0,1.0,-9.0,4.0,1267668 -3132324,1630240667,1,25,0,1,1630102868,1,1.0,10.0,5.0,16.0,4.0,1267669 -3132325,1630240905,2,58,0,1,1630102869,1,6.0,-9.0,-9.0,-9.0,4.0,1267670 -3132326,1630240833,2,64,0,1,1630102870,1,6.0,-9.0,-9.0,-9.0,4.0,1267671 -3132327,1630240596,1,59,0,1,1630102871,2,6.0,-9.0,-9.0,-9.0,4.0,1267672 -3132328,1630240904,2,60,0,1,1630102872,1,1.0,45.0,1.0,-9.0,4.0,1267673 -3132329,1630240801,2,55,0,1,1630102873,1,6.0,-9.0,-9.0,-9.0,4.0,1267674 -3132330,1630240908,2,62,0,1,1630102874,1,6.0,-9.0,-9.0,-9.0,2.0,1267675 -3132331,1630240778,2,53,0,1,1630102875,1,6.0,-9.0,-9.0,-9.0,4.0,1267676 -3132332,1630240728,2,57,0,1,1630102876,2,6.0,-9.0,-9.0,-9.0,4.0,1267677 -3132333,1630240847,2,62,0,1,1630102877,1,6.0,30.0,4.0,-9.0,4.0,1267678 -3132334,1630240827,2,54,0,1,1630102878,1,6.0,-9.0,-9.0,-9.0,2.0,1267679 -3132335,1630240757,2,62,0,1,1630102879,2,6.0,-9.0,-9.0,-9.0,4.0,1267680 -3132336,1630240846,2,59,0,1,1630102880,1,6.0,-9.0,-9.0,-9.0,2.0,1267681 -3132337,1630240851,2,64,0,1,1630102881,1,6.0,-9.0,-9.0,-9.0,2.0,1267682 -3132338,1630240909,2,62,0,1,1630102882,1,6.0,-9.0,-9.0,-9.0,2.0,1267683 -3132339,1630240842,2,58,0,1,1630102883,1,6.0,-9.0,-9.0,-9.0,4.0,1267684 -3132340,1630240777,2,61,0,1,1630102884,2,6.0,-9.0,-9.0,-9.0,4.0,1267685 -3132341,1630240832,2,49,0,1,1630102885,1,3.0,-9.0,-9.0,-9.0,4.0,1267686 -3132342,1630240804,2,60,0,1,1630102886,1,6.0,-9.0,-9.0,-9.0,4.0,1267687 -3132343,1630240787,2,54,0,1,1630102887,1,6.0,20.0,4.0,-9.0,4.0,1267688 -3132344,1630240788,2,59,0,1,1630102888,1,6.0,11.0,6.0,-9.0,4.0,1267689 -3132345,1630240880,2,64,0,1,1630102889,1,6.0,-9.0,-9.0,-9.0,2.0,1267690 -3132346,1630240907,2,57,0,1,1630102890,1,6.0,-9.0,-9.0,-9.0,4.0,1267691 -3132347,1630240726,2,60,0,1,1630102891,2,6.0,32.0,6.0,-9.0,4.0,1267692 -3132348,1630240734,2,64,0,1,1630102892,2,6.0,15.0,5.0,-9.0,4.0,1267693 -3132349,1630240840,2,62,0,1,1630102893,1,6.0,-9.0,-9.0,-9.0,2.0,1267694 -3132350,1630240848,2,60,0,1,1630102894,1,6.0,-9.0,-9.0,-9.0,4.0,1267695 -3132351,1630240806,2,54,0,1,1630102895,1,6.0,-9.0,-9.0,-9.0,4.0,1267696 -3132352,1630240798,2,60,0,1,1630102896,1,6.0,-9.0,-9.0,-9.0,4.0,1267697 -3132353,1630240839,2,56,0,1,1630102897,1,3.0,-9.0,-9.0,-9.0,2.0,1267698 -3132354,1630240791,2,61,0,1,1630102898,1,6.0,-9.0,-9.0,-9.0,4.0,1267699 -3132355,1630240828,2,54,0,1,1630102899,1,6.0,-9.0,-9.0,-9.0,2.0,1267700 -3132356,1630240807,2,54,0,1,1630102900,1,6.0,-9.0,-9.0,-9.0,4.0,1267701 -3132357,1630240855,2,45,0,1,1630102901,1,6.0,-9.0,-9.0,-9.0,4.0,1267702 -3132358,1630240910,2,62,0,1,1630102902,1,6.0,-9.0,-9.0,-9.0,2.0,1267703 -3132359,1630240792,2,61,0,1,1630102903,1,6.0,-9.0,-9.0,-9.0,4.0,1267704 -3132360,1630240841,2,58,0,1,1630102904,1,6.0,-9.0,-9.0,-9.0,4.0,1267705 -3132361,1630240849,2,58,0,1,1630102905,1,6.0,-9.0,-9.0,-9.0,4.0,1267706 -3132362,1630240800,2,58,0,1,1630102906,1,6.0,-9.0,-9.0,-9.0,4.0,1267707 -3132363,1630240805,2,60,0,1,1630102907,1,6.0,-9.0,-9.0,-9.0,4.0,1267708 -3132364,1630240742,2,59,0,1,1630102908,2,6.0,-9.0,-9.0,-9.0,4.0,1267709 -3132365,1630240809,2,51,0,1,1630102909,1,6.0,-9.0,-9.0,-9.0,2.0,1267710 -3132366,1630240829,2,54,0,1,1630102910,1,6.0,-9.0,-9.0,-9.0,2.0,1267711 -3132367,1630240830,2,54,0,1,1630102911,1,6.0,-9.0,-9.0,-9.0,2.0,1267712 -3132368,1630240808,2,54,0,1,1630102912,1,6.0,-9.0,-9.0,-9.0,4.0,1267713 -3132369,1630240883,2,49,0,1,1630102913,1,6.0,-9.0,-9.0,-9.0,4.0,1267714 -3132370,1630240831,2,58,0,1,1630102914,1,6.0,-9.0,-9.0,-9.0,2.0,1267715 -3132371,1630240896,2,50,0,1,1630102915,1,6.0,-9.0,-9.0,-9.0,4.0,1267716 -3132372,1630240817,2,63,0,1,1630102916,1,6.0,-9.0,-9.0,-9.0,4.0,1267717 -3132373,1630240850,2,58,0,1,1630102917,1,6.0,-9.0,-9.0,-9.0,4.0,1267718 -3132374,1630240737,2,47,0,1,1630102918,2,6.0,-9.0,-9.0,-9.0,4.0,1267719 -3132375,1630240948,4,62,0,1,1630102919,1,6.0,-9.0,-9.0,-9.0,4.0,1267720 -3132376,1630240686,1,60,0,1,1630102920,1,6.0,-9.0,-9.0,15.0,4.0,1267721 -3132377,1630240701,1,50,0,1,1630102921,1,3.0,-9.0,-9.0,-9.0,2.0,1267722 -3132378,1630240706,1,51,0,1,1630102922,1,6.0,-9.0,-9.0,-9.0,2.0,1267723 -3132379,1630240597,1,60,0,1,1630102923,2,6.0,-9.0,-9.0,-9.0,4.0,1267724 -3132380,1630240702,1,50,0,1,1630102924,1,3.0,-9.0,-9.0,-9.0,2.0,1267725 -3132381,1630240676,1,64,0,1,1630102925,1,6.0,-9.0,-9.0,-9.0,4.0,1267726 -3132382,1630240687,1,60,0,1,1630102926,1,6.0,-9.0,-9.0,15.0,4.0,1267727 -3132383,1630240654,1,64,0,1,1630102927,1,6.0,-9.0,-9.0,-9.0,2.0,1267728 -3132384,1630240836,2,55,0,1,1630102928,1,6.0,-9.0,-9.0,-9.0,4.0,1267729 -3132385,1630240852,2,64,0,1,1630102929,1,6.0,-9.0,-9.0,-9.0,4.0,1267730 -3132386,1630240790,2,45,0,1,1630102930,1,6.0,55.0,4.0,-9.0,4.0,1267731 -3132387,1630240901,2,58,0,1,1630102931,1,6.0,-9.0,-9.0,-9.0,4.0,1267732 -3132388,1630240802,2,62,0,1,1630102932,1,3.0,-9.0,-9.0,-9.0,4.0,1267733 -3132389,1630240682,1,56,0,1,1630102933,1,6.0,-9.0,-9.0,-9.0,2.0,1267734 -3132390,1630240759,2,54,0,1,1630102934,2,6.0,-9.0,-9.0,-9.0,4.0,1267735 -3132391,1630240761,2,64,11,2,1630102934,1,6.0,-9.0,-9.0,-9.0,4.0,1267735 -3132392,1630240747,2,49,0,1,1630102935,2,6.0,-9.0,-9.0,-9.0,4.0,1267736 -3132393,1630240748,2,56,13,2,1630102935,1,6.0,-9.0,-9.0,-9.0,4.0,1267736 -3132394,1630240894,2,61,0,1,1630102936,1,6.0,-9.0,-9.0,15.0,4.0,1267737 -3132395,1630240895,2,59,5,2,1630102936,1,3.0,-9.0,-9.0,-9.0,4.0,1267737 -3132396,1630240722,2,64,0,1,1630102937,2,6.0,-9.0,-9.0,-9.0,4.0,1267738 -3132397,1630240723,2,69,13,2,1630102937,1,6.0,-9.0,-9.0,-9.0,4.0,1267738 -3132398,1630240769,2,59,0,1,1630102938,2,6.0,-9.0,-9.0,-9.0,4.0,1267739 -3132399,1630240770,2,53,13,2,1630102938,1,6.0,-9.0,-9.0,-9.0,4.0,1267739 -3132400,1630240760,2,54,0,1,1630102939,2,6.0,-9.0,-9.0,-9.0,4.0,1267740 -3132401,1630240762,2,64,11,2,1630102939,1,6.0,-9.0,-9.0,-9.0,4.0,1267740 -3132402,1630240772,2,63,0,1,1630102940,1,6.0,-9.0,-9.0,-9.0,2.0,1267741 -3132403,1630240771,2,41,13,2,1630102940,2,3.0,-9.0,-9.0,-9.0,4.0,1267741 -3132404,1630240764,2,58,0,1,1630102941,1,6.0,-9.0,-9.0,-9.0,2.0,1267742 -3132405,1630240763,2,56,12,2,1630102941,2,6.0,-9.0,-9.0,15.0,4.0,1267742 -3132406,1630240793,2,49,0,1,1630102942,1,1.0,25.0,1.0,-9.0,4.0,1267743 -3132407,1630240865,2,61,0,1,1630102943,1,1.0,3.0,6.0,-9.0,4.0,1267744 -3132408,1630240946,2,71,0,1,1630102944,1,6.0,-9.0,-9.0,-9.0,2.0,1267745 -3132409,1630240582,2,66,0,1,1630102945,2,6.0,-9.0,-9.0,-9.0,4.0,1267746 -3132410,1630240581,2,90,0,1,1630102946,2,6.0,-9.0,-9.0,-9.0,4.0,1267747 -3132411,1630240945,2,66,0,1,1630102947,1,6.0,-9.0,-9.0,-9.0,4.0,1267748 -3132412,1630240583,2,88,0,1,1630102948,2,6.0,-9.0,-9.0,-9.0,4.0,1267749 -3132413,1630240584,2,24,7,2,1630102948,1,6.0,-9.0,-9.0,-9.0,4.0,1267749 -3132414,1630240670,1,87,0,1,1630102949,1,6.0,-9.0,-9.0,-9.0,2.0,1267750 -3132415,1630240669,1,51,12,2,1630102949,1,6.0,-9.0,-9.0,-9.0,4.0,1267750 -3132416,1630240940,2,74,0,1,1630102950,1,6.0,-9.0,-9.0,-9.0,2.0,1267751 -3132417,1630240938,2,65,0,1,1630102951,1,6.0,-9.0,-9.0,-9.0,2.0,1267752 -3132418,1630240926,2,79,0,1,1630102952,1,6.0,-9.0,-9.0,-9.0,2.0,1267753 -3132419,1630240573,2,86,0,1,1630102953,2,6.0,-9.0,-9.0,-9.0,4.0,1267754 -3132420,1630240935,2,75,0,1,1630102954,1,6.0,-9.0,-9.0,-9.0,4.0,1267755 -3132421,1630240936,2,70,0,1,1630102955,1,6.0,-9.0,-9.0,-9.0,2.0,1267756 -3132422,1630240579,2,86,0,1,1630102956,2,6.0,-9.0,-9.0,-9.0,4.0,1267757 -3132423,1630240925,2,83,0,1,1630102957,1,6.0,-9.0,-9.0,-9.0,2.0,1267758 -3132424,1630240572,2,85,0,1,1630102958,2,6.0,-9.0,-9.0,-9.0,4.0,1267759 -3132425,1630240580,2,86,0,1,1630102959,2,6.0,-9.0,-9.0,-9.0,4.0,1267760 -3132426,1630240939,2,65,0,1,1630102960,1,6.0,-9.0,-9.0,-9.0,2.0,1267761 -3132427,1630240930,2,94,0,1,1630102961,1,6.0,-9.0,-9.0,-9.0,4.0,1267762 -3132428,1630240931,2,75,0,1,1630102962,1,6.0,-9.0,-9.0,-9.0,4.0,1267763 -3132429,1630240578,2,68,0,1,1630102963,2,6.0,16.0,6.0,-9.0,3.0,1267764 -3132430,1630240918,2,80,0,1,1630102964,1,6.0,-9.0,-9.0,-9.0,2.0,1267765 -3132431,1630240927,2,79,0,1,1630102965,1,6.0,-9.0,-9.0,-9.0,2.0,1267766 -3132432,1630240571,2,85,0,1,1630102966,2,6.0,-9.0,-9.0,-9.0,4.0,1267767 -3132433,1630240932,2,75,0,1,1630102967,1,6.0,-9.0,-9.0,-9.0,2.0,1267768 -3132434,1630240919,2,80,0,1,1630102968,1,6.0,-9.0,-9.0,-9.0,2.0,1267769 -3132435,1630240921,2,69,0,1,1630102969,1,6.0,-9.0,-9.0,-9.0,4.0,1267770 -3132436,1630240922,2,71,0,1,1630102970,1,6.0,-9.0,-9.0,-9.0,4.0,1267771 -3132437,1630240941,2,75,0,1,1630102971,1,6.0,-9.0,-9.0,-9.0,4.0,1267772 -3132438,1630240942,2,82,0,1,1630102972,1,6.0,-9.0,-9.0,-9.0,2.0,1267773 -3132439,1630240933,2,75,0,1,1630102973,1,6.0,-9.0,-9.0,-9.0,2.0,1267774 -3132440,1630240934,2,75,0,1,1630102974,1,6.0,-9.0,-9.0,-9.0,2.0,1267775 -3132441,1630240937,2,70,0,1,1630102975,1,6.0,-9.0,-9.0,-9.0,2.0,1267776 -3132442,1630240574,2,73,0,1,1630102976,2,6.0,-9.0,-9.0,-9.0,4.0,1267777 -3132443,1630240924,2,94,0,1,1630102977,1,6.0,-9.0,-9.0,-9.0,4.0,1267778 -3132444,1630240587,2,79,0,1,1630102978,2,6.0,-9.0,-9.0,-9.0,4.0,1267779 -3132445,1630240920,2,80,0,1,1630102979,1,6.0,-9.0,-9.0,-9.0,2.0,1267780 -3132446,1630240965,1,65,0,1,1630102980,1,6.0,-9.0,-9.0,-9.0,2.0,1267781 -3132447,1630240588,1,67,0,1,1630102981,2,6.0,-9.0,-9.0,-9.0,4.0,1267782 -3132448,1630240962,1,66,0,1,1630102982,1,6.0,-9.0,-9.0,-9.0,4.0,1267783 -3132449,1630240958,1,74,0,1,1630102983,1,6.0,-9.0,-9.0,-9.0,3.0,1267784 -3132450,1630240959,1,74,0,1,1630102984,1,6.0,-9.0,-9.0,-9.0,3.0,1267785 -3132451,1630240963,1,77,0,1,1630102985,1,6.0,-9.0,-9.0,-9.0,4.0,1267786 -3132452,1630240960,3,67,0,1,1630102986,1,6.0,-9.0,-9.0,-9.0,2.0,1267787 -3132453,1630240943,2,65,0,1,1630102987,1,6.0,12.0,6.0,15.0,2.0,1267788 -3132454,1630240944,2,65,0,1,1630102988,1,6.0,12.0,6.0,15.0,2.0,1267789 -3132455,1630240928,2,76,0,1,1630102989,1,3.0,-9.0,-9.0,-9.0,4.0,1267790 -3132456,1630240923,2,76,0,1,1630102990,1,6.0,-9.0,-9.0,-9.0,4.0,1267791 -3132457,1630240577,2,81,0,1,1630102991,2,6.0,-9.0,-9.0,-9.0,4.0,1267792 -3132458,1630240585,2,66,0,1,1630102992,2,6.0,-9.0,-9.0,-9.0,4.0,1267793 -3132459,1630240586,2,21,10,2,1630102992,1,3.0,-9.0,-9.0,-9.0,4.0,1267793 -3132460,1630240733,2,77,0,1,1630102993,1,6.0,-9.0,-9.0,-9.0,2.0,1267794 -3132461,1630240732,2,62,1,2,1630102993,2,6.0,-9.0,-9.0,-9.0,4.0,1267794 -3132462,1630240756,2,69,0,1,1630102994,1,6.0,-9.0,-9.0,-9.0,2.0,1267795 -3132463,1630240755,2,61,12,2,1630102994,2,6.0,-9.0,-9.0,-9.0,4.0,1267795 -3132464,1630240731,2,22,0,1,1630102995,2,6.0,40.0,1.0,-9.0,4.0,1267796 -3132465,1630240789,2,23,0,1,1630102996,1,6.0,-9.0,-9.0,-9.0,4.0,1267797 -3132466,1630240668,1,24,0,1,1630102997,1,3.0,20.0,5.0,-9.0,4.0,1267798 -3132467,1630240717,1,22,0,1,1630102998,1,6.0,28.0,4.0,16.0,4.0,1267799 -3132468,1630240718,1,22,0,1,1630102999,1,6.0,28.0,4.0,16.0,4.0,1267800 -3132469,1630240698,1,20,0,1,1630103000,1,6.0,35.0,5.0,15.0,4.0,1267801 -3132470,1630240608,1,24,0,1,1630103001,2,6.0,-9.0,-9.0,16.0,4.0,1267802 -3132471,1630240680,1,24,0,1,1630103002,1,3.0,50.0,5.0,-9.0,4.0,1267803 -3132472,1630240628,1,24,0,1,1630103003,1,6.0,-9.0,-9.0,15.0,4.0,1267804 -3132473,1630240616,1,21,0,1,1630103004,2,6.0,10.0,5.0,16.0,4.0,1267805 -3132474,1630240617,1,20,12,2,1630103004,2,6.0,20.0,4.0,15.0,4.0,1267805 -3132475,1630240594,1,32,0,1,1630103005,1,1.0,40.0,1.0,-9.0,4.0,1267806 -3132476,1630240593,1,42,1,2,1630103005,2,1.0,40.0,1.0,-9.0,4.0,1267806 -3132477,1630240607,1,27,0,1,1630103006,2,6.0,37.0,5.0,16.0,4.0,1267807 -3132478,1630240673,1,25,0,1,1630103007,1,1.0,40.0,1.0,-9.0,4.0,1267808 -3132479,1630240739,2,37,0,1,1630103008,2,2.0,25.0,1.0,-9.0,4.0,1267809 -3132480,1630240740,2,19,2,2,1630103008,1,3.0,-9.0,-9.0,-9.0,4.0,1267809 -3132481,1630240738,2,42,0,1,1630103009,2,1.0,45.0,1.0,-9.0,4.0,1267810 -3132482,1630240964,1,66,0,1,1630103010,1,6.0,-9.0,-9.0,-9.0,2.0,1267811 -3132483,1630240857,2,45,0,1,1630103011,1,1.0,40.0,1.0,-9.0,2.0,1267812 -3132484,1630240659,1,24,0,1,1630103012,1,3.0,47.0,3.0,15.0,4.0,1267813 -3132485,1630240674,1,26,0,1,1630103013,1,3.0,40.0,2.0,-9.0,4.0,1267814 -3132486,1630240675,1,22,12,2,1630103013,1,1.0,40.0,5.0,-9.0,4.0,1267814 -3132487,1630240615,1,26,0,1,1630103014,2,1.0,20.0,4.0,16.0,4.0,1267815 -3132488,1630240803,2,37,0,1,1630103015,1,6.0,-9.0,-9.0,-9.0,4.0,1267816 -3132489,1630240956,4,38,0,1,1630103016,1,3.0,30.0,6.0,15.0,3.0,1267817 -3132490,1630240835,2,28,0,1,1630103017,1,1.0,55.0,1.0,-9.0,4.0,1267818 -3132491,1630240603,1,37,0,1,1630103018,1,1.0,33.0,1.0,-9.0,4.0,1267819 -3132492,1630240602,1,27,13,2,1630103018,2,6.0,40.0,5.0,-9.0,4.0,1267819 -3132493,1630240671,1,61,0,1,1630103019,1,1.0,50.0,3.0,-9.0,4.0,1267820 -3132494,1630240677,1,40,0,1,1630103020,1,1.0,43.0,1.0,-9.0,4.0,1267821 -3132495,1630240856,2,51,0,1,1630103021,1,3.0,-9.0,-9.0,-9.0,4.0,1267822 -3132496,1630240954,3,39,0,1,1630103022,1,6.0,-9.0,-9.0,-9.0,4.0,1267823 -3132497,1630240601,1,27,0,1,1630103023,1,6.0,-9.0,-9.0,16.0,4.0,1267824 -3132498,1630240600,1,24,1,2,1630103023,2,6.0,-9.0,-9.0,16.0,4.0,1267824 -3132499,1630240591,1,51,0,1,1630103024,2,6.0,-9.0,-9.0,-9.0,4.0,1267825 -3132500,1630240592,1,44,12,2,1630103024,1,3.0,15.0,6.0,-9.0,4.0,1267825 -3132501,1630240707,1,51,0,1,1630103025,1,6.0,-9.0,-9.0,-9.0,2.0,1267826 -3132502,1630240957,3,60,0,1,1630103026,2,6.0,-9.0,-9.0,-9.0,4.0,1267827 -3132503,1630240853,2,54,0,1,1630103027,1,1.0,40.0,1.0,-9.0,4.0,1267828 -3132504,1630240949,4,49,0,1,1630103028,1,6.0,4.0,6.0,-9.0,2.0,1267829 -3132505,1630240697,1,26,0,1,1630103029,1,1.0,60.0,1.0,-9.0,4.0,1267830 -3132506,1630240766,2,66,0,1,1630103030,1,6.0,-9.0,-9.0,-9.0,2.0,1267831 -3132507,1630240765,2,63,1,2,1630103030,2,6.0,-9.0,-9.0,-9.0,4.0,1267831 -3132508,1630240690,1,57,0,1,1630103031,1,3.0,20.0,6.0,-9.0,4.0,1267832 -3132509,1630240691,1,75,10,2,1630103031,1,6.0,-9.0,-9.0,-9.0,2.0,1267832 -3132510,1630240595,3,61,0,1,1630103032,2,6.0,-9.0,-9.0,-9.0,4.0,1267833 -3132511,1630240714,1,40,0,1,1630103033,1,6.0,-9.0,-9.0,-9.0,2.0,1267834 -3132512,1630240716,4,23,15,2,1630103033,2,6.0,30.0,6.0,-9.0,4.0,1267834 -3132513,1630240646,1,39,0,1,1630103034,1,6.0,8.0,6.0,16.0,4.0,1267835 -3132514,1630240917,4,72,0,1,1630103035,2,6.0,-9.0,-9.0,-9.0,4.0,1267836 -3132515,1630240710,3,48,0,1,1630103036,1,6.0,-9.0,-9.0,-9.0,4.0,1267837 -3132516,1630240711,3,47,5,2,1630103036,1,6.0,-9.0,-9.0,-9.0,4.0,1267837 -3132517,1630240719,1,22,0,1,1630103037,1,6.0,28.0,4.0,16.0,4.0,1267838 -3132518,1630240704,3,30,0,1,1630103038,1,1.0,45.0,1.0,-9.0,4.0,1267839 -3132519,1630240947,2,71,0,1,1630103039,1,6.0,-9.0,-9.0,-9.0,2.0,1267840 -3132520,1630240745,2,39,0,1,1630103040,2,3.0,-9.0,-9.0,-9.0,4.0,1267841 -3132521,1630240599,1,77,0,1,1630103041,1,6.0,-9.0,-9.0,-9.0,4.0,1267842 -3132522,1630240598,1,55,15,2,1630103041,2,6.0,-9.0,-9.0,-9.0,4.0,1267842 -3132523,1630240683,1,23,0,1,1630103042,1,1.0,40.0,3.0,15.0,4.0,1267843 -3132524,1630240929,2,66,0,1,1630103043,1,3.0,-9.0,-9.0,-9.0,4.0,1267844 -3132525,1630240893,2,57,0,1,1630103044,1,6.0,-9.0,-9.0,-9.0,2.0,1267845 -3132526,1630240657,3,29,0,1,1630103045,1,1.0,43.0,1.0,-9.0,4.0,1267846 -3132527,1630240906,2,33,0,1,1630103046,1,1.0,40.0,1.0,-9.0,4.0,1267847 -3132528,1630240735,2,36,0,1,1630103047,2,1.0,25.0,1.0,-9.0,4.0,1267848 -3132529,1630240736,2,18,2,2,1630103047,1,6.0,-9.0,-9.0,14.0,4.0,1267848 -3132530,1630240750,2,55,0,1,1630103048,1,6.0,-9.0,-9.0,-9.0,3.0,1267849 -3132531,1630240749,2,55,1,2,1630103048,2,6.0,30.0,3.0,-9.0,4.0,1267849 -3132532,1630240902,2,58,0,1,1630103049,1,1.0,40.0,1.0,15.0,2.0,1267850 -3132533,1630240774,3,35,0,1,1630103050,2,3.0,30.0,5.0,-9.0,4.0,1267851 -3132534,1630240705,1,22,0,1,1630103051,1,1.0,15.0,1.0,15.0,4.0,1267852 -3132535,1630240961,1,68,0,1,1630103052,1,6.0,-9.0,-9.0,-9.0,2.0,1267853 -3132536,1630240658,1,24,0,1,1630103053,1,1.0,55.0,1.0,-9.0,4.0,1267854 -3132537,1630240913,2,27,0,1,1630103054,1,6.0,-9.0,-9.0,-9.0,2.0,1267855 -3132538,1630240729,2,43,0,1,1630103055,2,6.0,40.0,1.0,-9.0,4.0,1267856 -3132539,1630240730,2,46,12,2,1630103055,1,3.0,20.0,5.0,-9.0,4.0,1267856 -3132540,1630240708,1,22,0,1,1630103056,1,6.0,-9.0,-9.0,15.0,4.0,1267857 -3132541,1630240709,1,24,11,2,1630103056,1,3.0,-9.0,-9.0,15.0,4.0,1267857 -3132542,1630240604,1,55,0,1,1630103057,2,1.0,50.0,1.0,-9.0,4.0,1267858 -3132543,1630240767,2,28,0,1,1630103058,2,6.0,40.0,1.0,15.0,4.0,1267859 -3132544,1630240768,2,23,5,2,1630103058,2,6.0,-9.0,-9.0,-9.0,4.0,1267859 -3132545,1630240576,2,81,0,1,1630103059,1,6.0,-9.0,-9.0,-9.0,3.0,1267860 -3132546,1630240575,2,79,1,2,1630103059,2,6.0,-9.0,-9.0,-9.0,4.0,1267860 -3132547,1630240746,2,20,0,1,1630103060,2,1.0,16.0,6.0,-9.0,4.0,1267861 -3132548,1630240813,2,32,0,1,1630103061,1,6.0,56.0,1.0,-9.0,4.0,1267862 -3132549,1630240816,2,29,12,2,1630103061,1,6.0,-9.0,-9.0,-9.0,4.0,1267862 -3132550,1630240754,2,26,0,1,1630103062,1,1.0,52.0,1.0,-9.0,4.0,1267863 -3132551,1630240753,2,22,1,2,1630103062,2,1.0,40.0,1.0,-9.0,4.0,1267863 -3132552,1630240613,1,24,0,1,1630103063,2,6.0,8.0,6.0,16.0,4.0,1267864 -3132553,1630240614,4,24,12,2,1630103063,2,6.0,-9.0,-9.0,16.0,4.0,1267864 -3132554,1630240864,2,48,0,1,1630103064,1,1.0,40.0,1.0,-9.0,4.0,1267865 -3132555,1630240950,4,25,0,1,1630103065,1,1.0,30.0,1.0,-9.0,4.0,1267866 -3132556,1630240631,1,56,0,1,1630103066,1,1.0,40.0,1.0,-9.0,2.0,1267867 -3132557,1630240589,1,24,0,1,1630103067,2,1.0,40.0,1.0,-9.0,4.0,1267868 -3132558,1630240590,1,26,1,2,1630103067,1,6.0,40.0,6.0,16.0,4.0,1267868 -3132559,1630240952,4,31,0,1,1630103068,1,1.0,60.0,1.0,-9.0,4.0,1267869 -3132560,1630240678,1,23,0,1,1630103069,1,1.0,40.0,1.0,-9.0,4.0,1267870 -3231963,1630341128,2,35,0,1,1630137692,2,6.0,-9.0,-9.0,-9.0,4.0,1302493 -3231964,1630341130,2,12,2,2,1630137692,2,-9.0,-9.0,-9.0,8.0,-9.0,1302493 -3231965,1630341129,2,9,2,3,1630137692,1,-9.0,-9.0,-9.0,5.0,-9.0,1302493 -3231966,1630341131,2,5,2,4,1630137692,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302493 -3231967,1630341170,2,34,0,1,1630137693,1,6.0,-9.0,-9.0,-9.0,4.0,1302494 -3231968,1630341171,2,34,0,1,1630137694,1,6.0,-9.0,-9.0,-9.0,4.0,1302495 -3231969,1630341180,2,42,0,1,1630137695,1,6.0,-9.0,-9.0,-9.0,4.0,1302496 -3231970,1630340883,2,37,0,1,1630137696,2,3.0,40.0,1.0,-9.0,4.0,1302497 -3231971,1630340884,2,14,2,2,1630137696,1,-9.0,-9.0,-9.0,10.0,-9.0,1302497 -3231972,1630340885,2,10,2,3,1630137696,1,-9.0,-9.0,-9.0,6.0,-9.0,1302497 -3231973,1630341133,2,40,0,1,1630137697,1,1.0,26.0,6.0,-9.0,4.0,1302498 -3231974,1630341189,2,42,0,1,1630137698,1,1.0,40.0,1.0,-9.0,4.0,1302499 -3231975,1630341145,2,35,0,1,1630137699,1,1.0,40.0,4.0,-9.0,4.0,1302500 -3231976,1630340962,2,32,0,1,1630137700,2,1.0,40.0,4.0,14.0,4.0,1302501 -3231977,1630340964,2,14,2,2,1630137700,1,-9.0,-9.0,-9.0,11.0,-9.0,1302501 -3231978,1630340966,2,10,2,3,1630137700,1,-9.0,-9.0,-9.0,7.0,-9.0,1302501 -3231979,1630340963,2,32,0,1,1630137701,2,1.0,40.0,4.0,14.0,4.0,1302502 -3231980,1630340965,2,14,2,2,1630137701,1,-9.0,-9.0,-9.0,11.0,-9.0,1302502 -3231981,1630340967,2,10,2,3,1630137701,1,-9.0,-9.0,-9.0,7.0,-9.0,1302502 -3231982,1630341106,2,36,0,1,1630137702,2,1.0,40.0,3.0,-9.0,4.0,1302503 -3231983,1630341112,2,43,15,2,1630137702,1,1.0,40.0,6.0,-9.0,4.0,1302503 -3231984,1630341109,2,4,15,3,1630137702,1,-9.0,-9.0,-9.0,2.0,-9.0,1302503 -3231985,1630341107,2,36,0,1,1630137703,2,1.0,40.0,3.0,-9.0,4.0,1302504 -3231986,1630341113,2,43,15,2,1630137703,1,1.0,40.0,6.0,-9.0,4.0,1302504 -3231987,1630341110,2,4,15,3,1630137703,1,-9.0,-9.0,-9.0,2.0,-9.0,1302504 -3231988,1630340904,2,31,0,1,1630137704,1,1.0,40.0,1.0,-9.0,4.0,1302505 -3231989,1630340902,2,31,1,2,1630137704,2,1.0,40.0,6.0,-9.0,4.0,1302505 -3231990,1630340875,2,36,0,1,1630137705,1,2.0,25.0,1.0,-9.0,4.0,1302506 -3231991,1630340873,2,34,1,2,1630137705,2,1.0,16.0,1.0,15.0,4.0,1302506 -3231992,1630340876,2,36,0,1,1630137706,1,2.0,25.0,1.0,-9.0,4.0,1302507 -3231993,1630340874,2,34,1,2,1630137706,2,1.0,16.0,1.0,15.0,4.0,1302507 -3231994,1630340949,2,56,0,1,1630137707,2,6.0,-9.0,-9.0,-9.0,4.0,1302508 -3231995,1630341182,2,62,0,1,1630137708,1,6.0,-9.0,-9.0,-9.0,4.0,1302509 -3231996,1630341186,2,60,0,1,1630137709,1,6.0,-9.0,-9.0,-9.0,2.0,1302510 -3231997,1630341187,2,60,0,1,1630137710,1,6.0,-9.0,-9.0,-9.0,2.0,1302511 -3231998,1630341188,2,60,0,1,1630137711,1,6.0,-9.0,-9.0,-9.0,2.0,1302512 -3231999,1630341155,2,52,0,1,1630137712,1,3.0,-9.0,-9.0,-9.0,2.0,1302513 -3232000,1630340841,2,60,0,1,1630137713,2,6.0,-9.0,-9.0,-9.0,4.0,1302514 -3232001,1630340839,2,86,6,2,1630137713,2,6.0,-9.0,-9.0,-9.0,4.0,1302514 -3232002,1630340842,2,60,0,1,1630137714,2,6.0,-9.0,-9.0,-9.0,4.0,1302515 -3232003,1630340840,2,86,6,2,1630137714,2,6.0,-9.0,-9.0,-9.0,4.0,1302515 -3232004,1630341161,2,57,0,1,1630137715,1,2.0,72.0,1.0,-9.0,4.0,1302516 -3232005,1630340979,2,59,0,1,1630137716,2,1.0,30.0,1.0,-9.0,4.0,1302517 -3232006,1630340980,2,59,0,1,1630137717,2,1.0,30.0,1.0,-9.0,4.0,1302518 -3232007,1630340936,2,63,0,1,1630137718,2,3.0,-9.0,-9.0,-9.0,4.0,1302519 -3232008,1630340938,2,25,2,2,1630137718,2,1.0,30.0,1.0,15.0,4.0,1302519 -3232009,1630341174,2,48,0,1,1630137719,1,1.0,12.0,4.0,15.0,2.0,1302520 -3232010,1630341177,2,48,12,2,1630137719,1,1.0,34.0,5.0,-9.0,2.0,1302520 -3232011,1630341175,2,48,0,1,1630137720,1,1.0,12.0,4.0,15.0,2.0,1302521 -3232012,1630341178,2,48,12,2,1630137720,1,1.0,34.0,5.0,-9.0,2.0,1302521 -3232013,1630340837,2,90,0,1,1630137721,2,6.0,-9.0,-9.0,-9.0,4.0,1302522 -3232014,1630340847,2,94,0,1,1630137722,2,6.0,-9.0,-9.0,-9.0,4.0,1302523 -3232015,1630340855,2,75,0,1,1630137723,2,6.0,-9.0,-9.0,-9.0,4.0,1302524 -3232016,1630341085,2,38,0,1,1630137724,2,1.0,45.0,1.0,-9.0,4.0,1302525 -3232017,1630341092,2,40,0,1,1630137725,2,3.0,-9.0,-9.0,-9.0,4.0,1302526 -3232018,1630341093,2,19,2,2,1630137725,2,6.0,-9.0,-9.0,15.0,4.0,1302526 -3232019,1630341094,2,18,2,3,1630137725,1,6.0,-9.0,-9.0,14.0,4.0,1302526 -3232020,1630341095,2,3,7,4,1630137725,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302526 -3232021,1630341136,2,41,0,1,1630137726,1,3.0,24.0,5.0,-9.0,4.0,1302527 -3232022,1630341193,2,41,0,1,1630137727,1,3.0,40.0,5.0,-9.0,4.0,1302528 -3232023,1630341194,2,41,0,1,1630137728,1,3.0,40.0,5.0,-9.0,4.0,1302529 -3232024,1630341083,2,28,0,1,1630137729,2,6.0,-9.0,-9.0,15.0,4.0,1302530 -3232025,1630341205,2,30,0,1,1630137730,1,3.0,36.0,4.0,-9.0,4.0,1302531 -3232026,1630341084,2,28,0,1,1630137731,2,6.0,-9.0,-9.0,15.0,4.0,1302532 -3232027,1630341206,2,30,0,1,1630137732,1,3.0,36.0,4.0,-9.0,4.0,1302533 -3232028,1630341198,2,29,0,1,1630137733,1,6.0,-9.0,-9.0,16.0,3.0,1302534 -3232029,1630341210,2,38,0,1,1630137734,1,6.0,-9.0,-9.0,-9.0,4.0,1302535 -3232030,1630340924,2,43,0,1,1630137735,2,3.0,-9.0,-9.0,-9.0,4.0,1302536 -3232031,1630340928,2,15,2,2,1630137735,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302536 -3232032,1630340926,2,20,3,3,1630137735,2,6.0,-9.0,-9.0,-9.0,4.0,1302536 -3232033,1630340930,2,13,3,4,1630137735,2,-9.0,-9.0,-9.0,8.0,-9.0,1302536 -3232034,1630340932,2,11,3,5,1630137735,2,-9.0,-9.0,-9.0,6.0,-9.0,1302536 -3232035,1630340934,2,10,3,6,1630137735,2,-9.0,-9.0,-9.0,6.0,-9.0,1302536 -3232036,1630340993,2,31,0,1,1630137736,2,3.0,30.0,5.0,15.0,4.0,1302537 -3232037,1630340994,2,3,2,2,1630137736,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302537 -3232038,1630340995,2,1,2,3,1630137736,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302537 -3232039,1630340870,2,36,0,1,1630137737,2,6.0,-9.0,-9.0,-9.0,4.0,1302538 -3232040,1630340871,2,16,2,2,1630137737,2,6.0,-9.0,-9.0,13.0,-9.0,1302538 -3232041,1630340872,2,9,2,3,1630137737,2,-9.0,-9.0,-9.0,6.0,-9.0,1302538 -3232042,1630341104,2,28,0,1,1630137738,2,3.0,-9.0,-9.0,-9.0,4.0,1302539 -3232043,1630341105,2,4,2,2,1630137738,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302539 -3232044,1630341035,2,28,0,1,1630137739,2,6.0,-9.0,-9.0,15.0,4.0,1302540 -3232045,1630341036,2,3,2,2,1630137739,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302540 -3232046,1630341008,2,31,0,1,1630137740,1,3.0,-9.0,-9.0,-9.0,4.0,1302541 -3232047,1630341009,2,9,2,2,1630137740,2,-9.0,-9.0,-9.0,7.0,-9.0,1302541 -3232048,1630341010,2,2,2,3,1630137740,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302541 -3232049,1630341007,3,27,13,4,1630137740,2,1.0,30.0,1.0,-9.0,4.0,1302541 -3232050,1630341079,2,38,0,1,1630137741,2,3.0,-9.0,-9.0,-9.0,4.0,1302542 -3232051,1630341081,2,18,2,2,1630137741,1,1.0,8.0,4.0,14.0,4.0,1302542 -3232052,1630341082,2,11,2,3,1630137741,2,-9.0,-9.0,-9.0,7.0,-9.0,1302542 -3232053,1630341080,2,64,6,4,1630137741,2,6.0,-9.0,-9.0,-9.0,4.0,1302542 -3232054,1630341017,2,27,0,1,1630137742,1,1.0,60.0,1.0,-9.0,4.0,1302543 -3232055,1630341013,2,1,2,2,1630137742,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302543 -3232056,1630341015,2,4,4,3,1630137742,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302543 -3232057,1630341018,2,27,0,1,1630137743,1,1.0,60.0,1.0,-9.0,4.0,1302544 -3232058,1630341014,2,1,2,2,1630137743,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302544 -3232059,1630341016,2,4,4,3,1630137743,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302544 -3232060,1630341012,2,20,13,4,1630137743,2,6.0,-9.0,-9.0,-9.0,4.0,1302544 -3232061,1630340981,2,30,0,1,1630137744,2,1.0,25.0,4.0,-9.0,4.0,1302545 -3232062,1630340982,2,7,2,2,1630137744,1,-9.0,-9.0,-9.0,4.0,-9.0,1302545 -3232063,1630340983,2,2,2,3,1630137744,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302545 -3232064,1630340984,2,1,2,4,1630137744,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302545 -3232065,1630340882,2,34,0,1,1630137745,2,1.0,24.0,1.0,-9.0,4.0,1302546 -3232066,1630341077,2,27,0,1,1630137746,2,1.0,50.0,1.0,-9.0,4.0,1302547 -3232067,1630341207,2,35,0,1,1630137747,1,1.0,40.0,4.0,-9.0,4.0,1302548 -3232068,1630341037,2,29,0,1,1630137748,2,1.0,40.0,2.0,-9.0,4.0,1302549 -3232069,1630341203,2,44,0,1,1630137749,1,1.0,40.0,1.0,-9.0,4.0,1302550 -3232070,1630341166,2,30,0,1,1630137750,1,1.0,40.0,1.0,-9.0,4.0,1302551 -3232071,1630341047,2,32,0,1,1630137751,2,1.0,30.0,1.0,-9.0,4.0,1302552 -3232072,1630341055,2,15,2,2,1630137751,2,-9.0,-9.0,-9.0,12.0,-9.0,1302552 -3232073,1630341051,2,1,2,3,1630137751,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302552 -3232074,1630341049,2,27,5,4,1630137751,2,6.0,-9.0,-9.0,-9.0,4.0,1302552 -3232075,1630341057,2,10,10,5,1630137751,2,-9.0,-9.0,-9.0,7.0,-9.0,1302552 -3232076,1630341053,2,2,10,6,1630137751,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302552 -3232077,1630340943,2,38,0,1,1630137752,2,1.0,40.0,1.0,15.0,4.0,1302553 -3232078,1630340945,2,19,2,2,1630137752,2,6.0,-9.0,-9.0,15.0,4.0,1302553 -3232079,1630340947,2,8,2,3,1630137752,1,-9.0,-9.0,-9.0,4.0,-9.0,1302553 -3232080,1630340944,2,38,0,1,1630137753,2,1.0,40.0,1.0,15.0,4.0,1302554 -3232081,1630340948,2,8,2,2,1630137753,1,-9.0,-9.0,-9.0,4.0,-9.0,1302554 -3232082,1630341098,2,25,0,1,1630137754,2,1.0,40.0,1.0,-9.0,4.0,1302555 -3232083,1630341100,2,6,2,2,1630137754,2,-9.0,-9.0,-9.0,2.0,-9.0,1302555 -3232084,1630341102,2,2,2,3,1630137754,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302555 -3232085,1630340950,2,32,0,1,1630137755,2,3.0,8.0,4.0,-9.0,4.0,1302556 -3232086,1630340954,2,8,2,2,1630137755,2,-9.0,-9.0,-9.0,4.0,-9.0,1302556 -3232087,1630340952,2,34,13,3,1630137755,1,1.0,45.0,2.0,-9.0,4.0,1302556 -3232088,1630341027,2,31,0,1,1630137756,2,1.0,40.0,1.0,-9.0,4.0,1302557 -3232089,1630341028,2,30,10,2,1630137756,1,6.0,-9.0,-9.0,-9.0,4.0,1302557 -3232090,1630341030,2,32,0,1,1630137757,2,1.0,20.0,1.0,-9.0,4.0,1302558 -3232091,1630341031,2,10,2,2,1630137757,1,-9.0,-9.0,-9.0,7.0,-9.0,1302558 -3232092,1630340862,2,40,0,1,1630137758,2,2.0,72.0,1.0,-9.0,4.0,1302559 -3232093,1630340863,2,13,2,2,1630137758,1,-9.0,-9.0,-9.0,8.0,-9.0,1302559 -3232094,1630340914,2,29,0,1,1630137759,2,1.0,40.0,4.0,-9.0,4.0,1302560 -3232095,1630340915,2,9,2,2,1630137759,1,-9.0,-9.0,-9.0,5.0,-9.0,1302560 -3232096,1630341019,2,42,0,1,1630137760,2,1.0,25.0,1.0,-9.0,4.0,1302561 -3232097,1630341020,2,18,2,2,1630137760,1,6.0,-9.0,-9.0,10.0,4.0,1302561 -3232098,1630341059,2,26,0,1,1630137761,2,1.0,15.0,1.0,-9.0,4.0,1302562 -3232099,1630341062,2,6,2,2,1630137761,1,-9.0,-9.0,-9.0,3.0,-9.0,1302562 -3232100,1630341068,2,2,2,3,1630137761,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302562 -3232101,1630341065,2,34,13,4,1630137761,1,1.0,25.0,1.0,-9.0,4.0,1302562 -3232102,1630341060,2,26,0,1,1630137762,2,1.0,15.0,1.0,-9.0,4.0,1302563 -3232103,1630341063,2,6,2,2,1630137762,1,-9.0,-9.0,-9.0,3.0,-9.0,1302563 -3232104,1630341069,2,2,2,3,1630137762,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302563 -3232105,1630341066,2,34,13,4,1630137762,1,1.0,25.0,1.0,-9.0,4.0,1302563 -3232106,1630341141,2,59,0,1,1630137763,1,1.0,40.0,1.0,-9.0,4.0,1302564 -3232107,1630340889,2,53,0,1,1630137764,2,6.0,-9.0,-9.0,-9.0,4.0,1302565 -3232108,1630341201,2,47,0,1,1630137765,1,3.0,-9.0,-9.0,-9.0,4.0,1302566 -3232109,1630341137,2,64,0,1,1630137766,1,6.0,-9.0,-9.0,-9.0,2.0,1302567 -3232110,1630341078,2,53,0,1,1630137767,2,6.0,-9.0,-9.0,-9.0,4.0,1302568 -3232111,1630341156,2,58,0,1,1630137768,1,6.0,-9.0,-9.0,-9.0,2.0,1302569 -3232112,1630341159,2,49,0,1,1630137769,1,6.0,-9.0,-9.0,-9.0,4.0,1302570 -3232113,1630341144,2,60,0,1,1630137770,1,6.0,-9.0,-9.0,-9.0,4.0,1302571 -3232114,1630341160,2,49,0,1,1630137771,1,6.0,-9.0,-9.0,-9.0,4.0,1302572 -3232115,1630341202,2,50,0,1,1630137772,1,6.0,-9.0,-9.0,-9.0,4.0,1302573 -3232116,1630341192,2,53,0,1,1630137773,1,6.0,-9.0,-9.0,-9.0,4.0,1302574 -3232117,1630341132,2,53,0,1,1630137774,1,3.0,-9.0,-9.0,-9.0,4.0,1302575 -3232118,1630341004,2,63,0,1,1630137775,2,6.0,-9.0,-9.0,-9.0,4.0,1302576 -3232119,1630341162,2,55,0,1,1630137776,1,6.0,-9.0,-9.0,-9.0,4.0,1302577 -3232120,1630341142,2,45,0,1,1630137777,1,6.0,55.0,4.0,-9.0,4.0,1302578 -3232121,1630341190,2,64,0,1,1630137778,1,6.0,-9.0,-9.0,-9.0,2.0,1302579 -3232122,1630340890,2,63,0,1,1630137779,2,6.0,-9.0,-9.0,-9.0,4.0,1302580 -3232123,1630341173,2,63,0,1,1630137780,1,6.0,-9.0,-9.0,-9.0,2.0,1302581 -3232124,1630341146,2,62,0,1,1630137781,1,3.0,-9.0,-9.0,-9.0,4.0,1302582 -3232125,1630341005,2,57,0,1,1630137782,2,6.0,-9.0,-9.0,-9.0,4.0,1302583 -3232126,1630341006,2,71,1,2,1630137782,1,6.0,-9.0,-9.0,-9.0,4.0,1302583 -3232127,1630340849,2,56,0,1,1630137783,1,6.0,-9.0,-9.0,-9.0,4.0,1302584 -3232128,1630340848,2,68,1,2,1630137783,2,6.0,-9.0,-9.0,-9.0,4.0,1302584 -3232129,1630341165,2,59,0,1,1630137784,1,1.0,40.0,1.0,-9.0,2.0,1302585 -3232130,1630341143,2,49,0,1,1630137785,1,1.0,25.0,1.0,-9.0,4.0,1302586 -3232131,1630340974,2,62,0,1,1630137786,2,1.0,40.0,1.0,-9.0,4.0,1302587 -3232132,1630341195,2,47,0,1,1630137787,1,1.0,37.0,4.0,-9.0,4.0,1302588 -3232133,1630341196,2,47,0,1,1630137788,1,1.0,37.0,4.0,-9.0,4.0,1302589 -3232134,1630341197,2,47,0,1,1630137789,1,1.0,37.0,4.0,-9.0,4.0,1302590 -3232135,1630341185,2,59,0,1,1630137790,1,1.0,32.0,5.0,-9.0,4.0,1302591 -3232136,1630341150,2,54,0,1,1630137791,1,1.0,35.0,4.0,-9.0,2.0,1302592 -3232137,1630341169,2,53,0,1,1630137792,1,1.0,40.0,1.0,-9.0,4.0,1302593 -3232138,1630341153,2,51,0,1,1630137793,1,1.0,40.0,1.0,-9.0,4.0,1302594 -3232139,1630341088,2,58,0,1,1630137794,2,1.0,30.0,1.0,15.0,4.0,1302595 -3232140,1630341090,2,34,2,2,1630137794,2,3.0,22.0,3.0,15.0,4.0,1302595 -3232141,1630341089,2,58,0,1,1630137795,2,1.0,30.0,1.0,15.0,4.0,1302596 -3232142,1630341091,2,34,2,2,1630137795,2,3.0,22.0,3.0,15.0,4.0,1302596 -3232143,1630341212,2,69,0,1,1630137796,1,6.0,-9.0,-9.0,-9.0,4.0,1302597 -3232144,1630341213,2,94,0,1,1630137797,1,6.0,-9.0,-9.0,-9.0,4.0,1302598 -3232145,1630341215,2,66,0,1,1630137798,1,6.0,-9.0,-9.0,-9.0,4.0,1302599 -3232146,1630340852,2,78,0,1,1630137799,2,6.0,-9.0,-9.0,-9.0,4.0,1302600 -3232147,1630340843,2,85,0,1,1630137800,2,6.0,-9.0,-9.0,-9.0,4.0,1302601 -3232148,1630340838,2,66,0,1,1630137801,2,6.0,-9.0,-9.0,-9.0,4.0,1302602 -3232149,1630341211,2,83,0,1,1630137802,1,6.0,-9.0,-9.0,-9.0,4.0,1302603 -3232150,1630340836,2,80,0,1,1630137803,2,6.0,-9.0,-9.0,-9.0,4.0,1302604 -3232151,1630341024,2,32,0,1,1630137804,1,1.0,40.0,1.0,-9.0,4.0,1302605 -3232152,1630341025,2,7,2,2,1630137804,2,-9.0,-9.0,-9.0,4.0,-9.0,1302605 -3232153,1630341026,2,6,2,3,1630137804,2,-9.0,-9.0,-9.0,3.0,-9.0,1302605 -3232154,1630341023,2,29,13,4,1630137804,2,1.0,25.0,1.0,-9.0,4.0,1302605 -3232155,1630341115,2,40,0,1,1630137805,2,6.0,-9.0,-9.0,-9.0,4.0,1302606 -3232156,1630341116,2,21,2,2,1630137805,2,6.0,30.0,6.0,15.0,4.0,1302606 -3232157,1630341214,2,81,0,1,1630137806,1,6.0,-9.0,-9.0,-9.0,4.0,1302607 -3232158,1630340909,2,59,0,1,1630137807,2,1.0,10.0,1.0,-9.0,4.0,1302608 -3232159,1630340911,2,52,1,2,1630137807,1,1.0,5.0,1.0,15.0,4.0,1302608 -3232160,1630340910,2,21,2,3,1630137807,2,1.0,4.0,1.0,-9.0,4.0,1302608 -3232161,1630341154,2,41,0,1,1630137808,1,3.0,-9.0,-9.0,-9.0,4.0,1302609 -3232162,1630340941,2,31,0,1,1630137809,1,2.0,40.0,6.0,-9.0,4.0,1302610 -3232163,1630340942,2,2,2,2,1630137809,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302610 -3232164,1630340940,2,22,13,3,1630137809,2,1.0,25.0,1.0,15.0,4.0,1302610 -3232165,1630341021,2,50,0,1,1630137810,2,1.0,30.0,1.0,-9.0,4.0,1302611 -3232166,1630341022,2,19,2,2,1630137810,2,1.0,20.0,3.0,-9.0,4.0,1302611 -3232167,1630341061,2,26,0,1,1630137811,2,1.0,15.0,1.0,-9.0,4.0,1302612 -3232168,1630341064,2,6,2,2,1630137811,1,-9.0,-9.0,-9.0,3.0,-9.0,1302612 -3232169,1630341070,2,2,2,3,1630137811,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302612 -3232170,1630341067,2,34,13,4,1630137811,1,1.0,25.0,1.0,-9.0,4.0,1302612 -3232171,1630341167,2,63,0,1,1630137812,1,6.0,-9.0,-9.0,-9.0,2.0,1302613 -3232172,1630341181,2,42,0,1,1630137813,1,6.0,-9.0,-9.0,-9.0,4.0,1302614 -3232173,1630340859,2,53,0,1,1630137814,1,1.0,40.0,1.0,-9.0,4.0,1302615 -3232174,1630340858,3,46,13,2,1630137814,2,6.0,-9.0,-9.0,-9.0,4.0,1302615 -3232175,1630341086,2,50,0,1,1630137815,2,3.0,-9.0,-9.0,-9.0,4.0,1302616 -3232176,1630341087,2,71,1,2,1630137815,1,6.0,-9.0,-9.0,-9.0,2.0,1302616 -3232177,1630341096,2,47,0,1,1630137816,2,6.0,-9.0,-9.0,-9.0,4.0,1302617 -3232178,1630341097,2,13,2,2,1630137816,1,-9.0,-9.0,-9.0,10.0,-9.0,1302617 -3232179,1630340912,2,26,0,1,1630137817,2,6.0,-9.0,-9.0,-9.0,4.0,1302618 -3232180,1630340913,2,6,2,2,1630137817,1,-9.0,-9.0,-9.0,2.0,-9.0,1302618 -3232181,1630341209,2,61,0,1,1630137818,1,1.0,40.0,1.0,-9.0,4.0,1302619 -3232182,1630341001,2,26,0,1,1630137819,2,3.0,9.0,6.0,-9.0,4.0,1302620 -3232183,1630341002,2,8,2,2,1630137819,1,-9.0,-9.0,-9.0,4.0,-9.0,1302620 -3232184,1630341003,2,1,2,3,1630137819,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302620 -3232185,1630341204,2,44,0,1,1630137820,1,1.0,40.0,1.0,-9.0,4.0,1302621 -3232186,1630340851,2,61,0,1,1630137821,1,3.0,-9.0,-9.0,-9.0,4.0,1302622 -3232187,1630340850,2,67,1,2,1630137821,2,6.0,-9.0,-9.0,-9.0,4.0,1302622 -3232188,1630341134,2,44,0,1,1630137822,1,1.0,40.0,1.0,-9.0,4.0,1302623 -3232189,1630341135,2,25,10,2,1630137822,1,1.0,40.0,1.0,-9.0,4.0,1302623 -3232190,1630340898,2,51,0,1,1630137823,1,1.0,20.0,1.0,-9.0,4.0,1302624 -3232191,1630340897,2,51,13,2,1630137823,2,1.0,36.0,4.0,-9.0,4.0,1302624 -3232192,1630340899,2,21,15,3,1630137823,1,3.0,-9.0,-9.0,-9.0,4.0,1302624 -3232193,1630340900,2,20,15,4,1630137823,1,6.0,-9.0,-9.0,13.0,4.0,1302624 -3232194,1630340908,2,58,0,1,1630137824,1,6.0,-9.0,-9.0,-9.0,4.0,1302625 -3232195,1630340906,2,52,1,2,1630137824,2,1.0,32.0,4.0,-9.0,4.0,1302625 -3232196,1630340907,2,14,2,3,1630137824,1,-9.0,-9.0,-9.0,10.0,-9.0,1302625 -3232197,1630340951,2,32,0,1,1630137825,2,3.0,8.0,4.0,-9.0,4.0,1302626 -3232198,1630340955,2,8,2,2,1630137825,2,-9.0,-9.0,-9.0,4.0,-9.0,1302626 -3232199,1630340953,2,34,13,3,1630137825,1,1.0,45.0,2.0,-9.0,4.0,1302626 -3232200,1630341029,2,40,0,1,1630137826,2,1.0,60.0,3.0,-9.0,4.0,1302627 -3232201,1630340877,2,57,0,1,1630137827,2,1.0,15.0,6.0,-9.0,4.0,1302628 -3232202,1630340878,2,60,1,2,1630137827,1,6.0,-9.0,-9.0,-9.0,4.0,1302628 -3232203,1630340879,2,23,2,3,1630137827,1,1.0,15.0,5.0,15.0,4.0,1302628 -3232204,1630340996,2,49,0,1,1630137828,2,1.0,48.0,1.0,-9.0,4.0,1302629 -3232205,1630340997,2,26,2,2,1630137828,1,1.0,3.0,6.0,-9.0,4.0,1302629 -3232206,1630341191,2,64,0,1,1630137829,1,6.0,-9.0,-9.0,-9.0,2.0,1302630 -3232207,1630340975,2,37,0,1,1630137830,2,6.0,-9.0,-9.0,-9.0,4.0,1302631 -3232208,1630340978,2,40,1,2,1630137830,1,6.0,-9.0,-9.0,-9.0,4.0,1302631 -3232209,1630340976,2,8,2,3,1630137830,1,-9.0,-9.0,-9.0,3.0,-9.0,1302631 -3232210,1630340977,2,5,2,4,1630137830,1,-9.0,-9.0,-9.0,2.0,-9.0,1302631 -3232211,1630340896,2,43,0,1,1630137831,1,1.0,40.0,1.0,-9.0,4.0,1302632 -3232212,1630340895,2,18,2,2,1630137831,2,6.0,-9.0,-9.0,14.0,4.0,1302632 -3232213,1630341038,2,63,0,1,1630137832,2,6.0,-9.0,-9.0,-9.0,4.0,1302633 -3232214,1630341039,2,15,10,2,1630137832,2,-9.0,-9.0,-9.0,12.0,-9.0,1302633 -3232215,1630340886,2,61,0,1,1630137833,2,1.0,40.0,1.0,-9.0,4.0,1302634 -3232216,1630340887,2,2,7,2,1630137833,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302634 -3232217,1630340985,2,35,0,1,1630137834,2,6.0,-9.0,-9.0,-9.0,4.0,1302635 -3232218,1630340987,2,13,2,2,1630137834,2,-9.0,-9.0,-9.0,11.0,-9.0,1302635 -3232219,1630340988,2,12,2,3,1630137834,2,-9.0,-9.0,-9.0,9.0,-9.0,1302635 -3232220,1630340986,2,11,2,4,1630137834,1,-9.0,-9.0,-9.0,7.0,-9.0,1302635 -3232221,1630340925,2,43,0,1,1630137835,2,3.0,-9.0,-9.0,-9.0,4.0,1302636 -3232222,1630340929,2,15,2,2,1630137835,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302636 -3232223,1630340927,2,20,3,3,1630137835,2,6.0,-9.0,-9.0,-9.0,4.0,1302636 -3232224,1630340931,2,13,3,4,1630137835,2,-9.0,-9.0,-9.0,8.0,-9.0,1302636 -3232225,1630340933,2,11,3,5,1630137835,2,-9.0,-9.0,-9.0,6.0,-9.0,1302636 -3232226,1630340935,2,10,3,6,1630137835,2,-9.0,-9.0,-9.0,6.0,-9.0,1302636 -3232227,1630341108,2,36,0,1,1630137836,2,1.0,40.0,3.0,-9.0,4.0,1302637 -3232228,1630341114,2,43,15,2,1630137836,1,1.0,40.0,6.0,-9.0,4.0,1302637 -3232229,1630341111,2,4,15,3,1630137836,1,-9.0,-9.0,-9.0,2.0,-9.0,1302637 -3232230,1630340880,2,37,0,1,1630137837,2,6.0,-9.0,-9.0,-9.0,4.0,1302638 -3232231,1630340881,2,4,2,2,1630137837,1,-9.0,-9.0,-9.0,1.0,-9.0,1302638 -3232232,1630340835,2,69,0,1,1630137838,2,6.0,-9.0,-9.0,-9.0,4.0,1302639 -3232233,1630341199,2,53,0,1,1630137839,1,6.0,-9.0,-9.0,-9.0,4.0,1302640 -3232234,1630341119,2,46,0,1,1630137840,2,3.0,-9.0,-9.0,15.0,4.0,1302641 -3232235,1630341122,2,47,1,2,1630137840,1,1.0,40.0,6.0,-9.0,4.0,1302641 -3232236,1630341120,2,28,2,3,1630137840,2,6.0,-9.0,-9.0,-9.0,4.0,1302641 -3232237,1630341121,2,17,2,4,1630137840,1,6.0,-9.0,-9.0,13.0,4.0,1302641 -3232238,1630341123,2,15,2,5,1630137840,2,-9.0,-9.0,-9.0,12.0,-9.0,1302641 -3232239,1630341124,2,8,2,6,1630137840,2,-9.0,-9.0,-9.0,5.0,-9.0,1302641 -3232240,1630341163,2,56,0,1,1630137841,1,1.0,10.0,1.0,-9.0,4.0,1302642 -3232241,1630341164,2,14,2,2,1630137841,2,-9.0,-9.0,-9.0,11.0,-9.0,1302642 -3232242,1630341200,2,38,0,1,1630137842,1,1.0,40.0,1.0,-9.0,4.0,1302643 -3232243,1630340920,2,55,0,1,1630137843,2,1.0,26.0,1.0,-9.0,4.0,1302644 -3232244,1630340921,2,15,7,2,1630137843,2,-9.0,-9.0,-9.0,10.0,-9.0,1302644 -3232245,1630340922,2,14,7,3,1630137843,2,-9.0,-9.0,-9.0,10.0,-9.0,1302644 -3232246,1630340923,2,11,10,4,1630137843,2,-9.0,-9.0,-9.0,6.0,-9.0,1302644 -3232247,1630340864,2,42,0,1,1630137844,2,1.0,40.0,1.0,-9.0,4.0,1302645 -3232248,1630340866,2,18,2,2,1630137844,1,6.0,-9.0,-9.0,14.0,4.0,1302645 -3232249,1630340869,2,7,2,3,1630137844,2,-9.0,-9.0,-9.0,4.0,-9.0,1302645 -3232250,1630340867,2,38,5,4,1630137844,1,6.0,-9.0,-9.0,-9.0,4.0,1302645 -3232251,1630340865,2,61,6,5,1630137844,2,6.0,-9.0,-9.0,-9.0,4.0,1302645 -3232252,1630340868,2,57,15,6,1630137844,1,6.0,-9.0,-9.0,-9.0,4.0,1302645 -3232253,1630341117,2,40,0,1,1630137845,2,6.0,-9.0,-9.0,-9.0,4.0,1302646 -3232254,1630341118,2,14,2,2,1630137845,1,-9.0,-9.0,-9.0,10.0,-9.0,1302646 -3232255,1630341071,2,36,0,1,1630137846,2,6.0,-9.0,-9.0,-9.0,4.0,1302647 -3232256,1630341074,2,35,1,2,1630137846,1,1.0,45.0,1.0,-9.0,4.0,1302647 -3232257,1630341072,2,18,2,3,1630137846,2,6.0,-9.0,-9.0,15.0,4.0,1302647 -3232258,1630341073,2,16,2,4,1630137846,1,1.0,25.0,6.0,11.0,-9.0,1302647 -3232259,1630341075,2,14,2,5,1630137846,2,-9.0,-9.0,-9.0,10.0,-9.0,1302647 -3232260,1630341076,2,9,2,6,1630137846,2,-9.0,-9.0,-9.0,5.0,-9.0,1302647 -3232261,1630341172,2,34,0,1,1630137847,1,6.0,-9.0,-9.0,-9.0,4.0,1302648 -3232262,1630341032,2,59,0,1,1630137848,2,1.0,31.0,4.0,-9.0,4.0,1302649 -3232263,1630341034,2,41,2,2,1630137848,1,3.0,-9.0,-9.0,-9.0,4.0,1302649 -3232264,1630341033,2,21,7,3,1630137848,2,1.0,38.0,5.0,-9.0,4.0,1302649 -3232265,1630340853,2,73,0,1,1630137849,2,6.0,-9.0,-9.0,-9.0,4.0,1302650 -3232266,1630340854,2,51,2,2,1630137849,1,6.0,-9.0,-9.0,-9.0,4.0,1302650 -3232267,1630341151,2,52,0,1,1630137850,1,1.0,40.0,1.0,15.0,4.0,1302651 -3232268,1630341152,2,52,15,2,1630137850,1,1.0,40.0,1.0,15.0,4.0,1302651 -3232269,1630340916,2,45,0,1,1630137851,2,1.0,24.0,6.0,-9.0,4.0,1302652 -3232270,1630340919,2,16,2,2,1630137851,2,6.0,-9.0,-9.0,13.0,-9.0,1302652 -3232271,1630340918,2,33,13,3,1630137851,1,6.0,-9.0,-9.0,-9.0,4.0,1302652 -3232272,1630340917,2,52,15,4,1630137851,2,6.0,-9.0,-9.0,-9.0,4.0,1302652 -3232273,1630341208,2,47,0,1,1630137852,1,1.0,40.0,1.0,-9.0,4.0,1302653 -3232274,1630341148,2,42,0,1,1630137853,1,6.0,-9.0,-9.0,-9.0,4.0,1302654 -3232275,1630341149,2,30,10,2,1630137853,1,6.0,40.0,5.0,-9.0,4.0,1302654 -3232276,1630340891,2,36,0,1,1630137854,2,3.0,-9.0,-9.0,-9.0,4.0,1302655 -3232277,1630340892,2,14,2,2,1630137854,1,-9.0,-9.0,-9.0,10.0,-9.0,1302655 -3232278,1630340894,2,9,2,3,1630137854,2,-9.0,-9.0,-9.0,8.0,-9.0,1302655 -3232279,1630340893,2,44,5,4,1630137854,1,3.0,-9.0,-9.0,-9.0,4.0,1302655 -3232280,1630340901,2,54,0,1,1630137855,2,1.0,60.0,1.0,-9.0,4.0,1302656 -3232281,1630340860,2,51,0,1,1630137856,2,6.0,-9.0,-9.0,-9.0,4.0,1302657 -3232282,1630340861,2,16,2,2,1630137856,1,6.0,-9.0,-9.0,10.0,-9.0,1302657 -3232283,1630341168,2,44,0,1,1630137857,1,3.0,-9.0,-9.0,15.0,3.0,1302658 -3232284,1630340857,2,89,0,1,1630137858,1,6.0,-9.0,-9.0,-9.0,2.0,1302659 -3232285,1630340856,2,84,1,2,1630137858,2,6.0,-9.0,-9.0,-9.0,4.0,1302659 -3232286,1630341157,2,35,0,1,1630137859,1,1.0,30.0,5.0,-9.0,4.0,1302660 -3232287,1630341158,2,31,15,2,1630137859,1,1.0,40.0,1.0,-9.0,4.0,1302660 -3232288,1630341176,2,48,0,1,1630137860,1,1.0,12.0,4.0,15.0,2.0,1302661 -3232289,1630341179,2,48,12,2,1630137860,1,1.0,34.0,5.0,-9.0,2.0,1302661 -3232290,1630341099,2,25,0,1,1630137861,2,1.0,40.0,1.0,-9.0,4.0,1302662 -3232291,1630341101,2,6,2,2,1630137861,2,-9.0,-9.0,-9.0,2.0,-9.0,1302662 -3232292,1630341103,2,2,2,3,1630137861,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302662 -3232293,1630340968,2,38,0,1,1630137862,2,1.0,40.0,1.0,16.0,4.0,1302663 -3232294,1630340972,2,14,2,2,1630137862,2,-9.0,-9.0,-9.0,11.0,-9.0,1302663 -3232295,1630340969,2,8,10,3,1630137862,1,-9.0,-9.0,-9.0,4.0,-9.0,1302663 -3232296,1630340970,2,7,10,4,1630137862,1,-9.0,-9.0,-9.0,4.0,-9.0,1302663 -3232297,1630340971,2,7,10,5,1630137862,1,-9.0,-9.0,-9.0,4.0,-9.0,1302663 -3232298,1630340973,2,5,10,6,1630137862,2,-9.0,-9.0,-9.0,2.0,-9.0,1302663 -3232299,1630341183,2,35,0,1,1630137863,1,6.0,-9.0,-9.0,-9.0,4.0,1302664 -3232300,1630341184,2,30,5,2,1630137863,1,6.0,-9.0,-9.0,-9.0,4.0,1302664 -3232301,1630341147,2,64,0,1,1630137864,1,1.0,40.0,1.0,-9.0,4.0,1302665 -3232302,1630340905,2,31,0,1,1630137865,1,1.0,40.0,1.0,-9.0,4.0,1302666 -3232303,1630340903,2,31,1,2,1630137865,2,1.0,40.0,6.0,-9.0,4.0,1302666 -3232304,1630340991,2,42,0,1,1630137866,1,6.0,-9.0,-9.0,-9.0,4.0,1302667 -3232305,1630340989,2,38,1,2,1630137866,2,3.0,-9.0,-9.0,-9.0,4.0,1302667 -3232306,1630340990,2,19,4,3,1630137866,2,6.0,-9.0,-9.0,-9.0,4.0,1302667 -3232307,1630340992,2,18,4,4,1630137866,1,6.0,-9.0,-9.0,-9.0,4.0,1302667 -3232308,1630341044,2,39,0,1,1630137867,2,6.0,-9.0,-9.0,-9.0,4.0,1302668 -3232309,1630341045,2,22,2,2,1630137867,2,1.0,40.0,1.0,-9.0,4.0,1302668 -3232310,1630341046,2,9,2,3,1630137867,1,-9.0,-9.0,-9.0,4.0,-9.0,1302668 -3232311,1630340846,2,46,0,1,1630137868,2,1.0,30.0,4.0,-9.0,4.0,1302669 -3232312,1630340844,2,78,6,2,1630137868,2,6.0,-9.0,-9.0,-9.0,4.0,1302669 -3232313,1630340845,2,87,10,3,1630137868,2,6.0,-9.0,-9.0,-9.0,4.0,1302669 -3232314,1630341125,2,44,0,1,1630137869,2,6.0,-9.0,-9.0,-9.0,4.0,1302670 -3232315,1630341126,2,5,3,2,1630137869,1,-9.0,-9.0,-9.0,2.0,-9.0,1302670 -3232316,1630340956,2,45,0,1,1630137870,2,1.0,40.0,1.0,-9.0,4.0,1302671 -3232317,1630340959,2,16,2,2,1630137870,2,6.0,-9.0,-9.0,12.0,-9.0,1302671 -3232318,1630340960,2,13,2,3,1630137870,2,-9.0,-9.0,-9.0,9.0,-9.0,1302671 -3232319,1630340957,2,12,2,4,1630137870,1,-9.0,-9.0,-9.0,8.0,-9.0,1302671 -3232320,1630340961,2,12,2,5,1630137870,2,-9.0,-9.0,-9.0,8.0,-9.0,1302671 -3232321,1630340958,2,8,2,6,1630137870,1,-9.0,-9.0,-9.0,4.0,-9.0,1302671 -3232322,1630341138,2,54,0,1,1630137871,1,6.0,-9.0,-9.0,-9.0,4.0,1302672 -3232323,1630341140,2,75,15,2,1630137871,1,3.0,-9.0,-9.0,-9.0,4.0,1302672 -3232324,1630341139,2,58,15,3,1630137871,1,3.0,-9.0,-9.0,-9.0,4.0,1302672 -3232325,1630340998,2,44,0,1,1630137872,2,1.0,20.0,1.0,15.0,4.0,1302673 -3232326,1630341000,2,50,1,2,1630137872,1,1.0,60.0,1.0,-9.0,4.0,1302673 -3232327,1630340999,2,14,2,3,1630137872,1,-9.0,-9.0,-9.0,11.0,-9.0,1302673 -3232328,1630340937,2,63,0,1,1630137873,2,3.0,-9.0,-9.0,-9.0,4.0,1302674 -3232329,1630340939,2,25,2,2,1630137873,2,1.0,30.0,1.0,15.0,4.0,1302674 -3232330,1630341216,2,88,0,1,1630137874,1,6.0,-9.0,-9.0,-9.0,4.0,1302675 -3232331,1630341040,2,47,0,1,1630137875,2,3.0,-9.0,-9.0,-9.0,4.0,1302676 -3232332,1630341042,2,27,2,2,1630137875,1,3.0,-9.0,-9.0,-9.0,4.0,1302676 -3232333,1630341041,2,16,2,3,1630137875,1,6.0,-9.0,-9.0,13.0,-9.0,1302676 -3232334,1630341043,2,38,15,4,1630137875,1,6.0,-9.0,-9.0,-9.0,4.0,1302676 -3232335,1630341048,2,32,0,1,1630137876,2,1.0,30.0,1.0,-9.0,4.0,1302677 -3232336,1630341056,2,15,2,2,1630137876,2,-9.0,-9.0,-9.0,12.0,-9.0,1302677 -3232337,1630341052,2,1,2,3,1630137876,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302677 -3232338,1630341050,2,27,5,4,1630137876,2,6.0,-9.0,-9.0,-9.0,4.0,1302677 -3232339,1630341058,2,10,10,5,1630137876,2,-9.0,-9.0,-9.0,7.0,-9.0,1302677 -3232340,1630341054,2,2,10,6,1630137876,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302677 -3232341,1630341879,2,41,0,1,1630137877,2,1.0,50.0,1.0,-9.0,4.0,1302678 -3232342,1630341882,2,41,1,2,1630137877,1,6.0,-9.0,-9.0,-9.0,4.0,1302678 -3232343,1630341880,2,14,2,3,1630137877,1,-9.0,-9.0,-9.0,12.0,-9.0,1302678 -3232344,1630341881,2,3,2,4,1630137877,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302678 -3232345,1630341372,1,28,0,1,1630137878,1,1.0,60.0,1.0,16.0,4.0,1302679 -3232346,1630341857,2,38,0,1,1630137879,2,1.0,40.0,1.0,-9.0,4.0,1302680 -3232347,1630341859,2,38,1,2,1630137879,1,1.0,40.0,1.0,-9.0,4.0,1302680 -3232348,1630341858,2,6,2,3,1630137879,1,-9.0,-9.0,-9.0,3.0,-9.0,1302680 -3232349,1630341860,2,2,2,4,1630137879,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302680 -3232350,1630341617,2,43,0,1,1630137880,2,1.0,30.0,1.0,-9.0,4.0,1302681 -3232351,1630341618,2,50,1,2,1630137880,1,6.0,-9.0,-9.0,-9.0,4.0,1302681 -3232352,1630341620,2,16,2,3,1630137880,2,1.0,10.0,6.0,12.0,-9.0,1302681 -3232353,1630341619,2,31,4,4,1630137880,1,1.0,32.0,1.0,-9.0,4.0,1302681 -3232354,1630341967,2,38,0,1,1630137881,1,1.0,40.0,1.0,-9.0,4.0,1302682 -3232355,1630341884,2,40,0,1,1630137882,2,1.0,40.0,1.0,-9.0,4.0,1302683 -3232356,1630341896,2,35,0,1,1630137883,2,6.0,-9.0,-9.0,-9.0,4.0,1302684 -3232357,1630341898,2,12,2,2,1630137883,2,-9.0,-9.0,-9.0,8.0,-9.0,1302684 -3232358,1630341897,2,9,2,3,1630137883,1,-9.0,-9.0,-9.0,5.0,-9.0,1302684 -3232359,1630341899,2,5,2,4,1630137883,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302684 -3232360,1630341609,2,36,0,1,1630137884,2,6.0,-9.0,-9.0,15.0,4.0,1302685 -3232361,1630341611,2,17,2,2,1630137884,2,6.0,-9.0,-9.0,14.0,4.0,1302685 -3232362,1630341610,2,13,2,3,1630137884,1,-9.0,-9.0,-9.0,9.0,-9.0,1302685 -3232363,1630341612,2,11,2,4,1630137884,2,-9.0,-9.0,-9.0,7.0,-9.0,1302685 -3232364,1630341950,2,40,0,1,1630137885,1,3.0,-9.0,-9.0,-9.0,4.0,1302686 -3232365,1630341951,2,40,0,1,1630137886,1,3.0,-9.0,-9.0,-9.0,4.0,1302687 -3232366,1630341577,2,39,0,1,1630137887,2,1.0,40.0,1.0,-9.0,4.0,1302688 -3232367,1630341579,2,23,2,2,1630137887,1,6.0,-9.0,-9.0,-9.0,4.0,1302688 -3232368,1630341581,2,21,2,3,1630137887,1,6.0,-9.0,-9.0,15.0,4.0,1302688 -3232369,1630341583,2,19,2,4,1630137887,1,6.0,-9.0,-9.0,12.0,4.0,1302688 -3232370,1630341585,2,18,2,5,1630137887,1,6.0,-9.0,-9.0,-9.0,4.0,1302688 -3232371,1630341589,2,15,2,6,1630137887,2,-9.0,-9.0,-9.0,12.0,-9.0,1302688 -3232372,1630341591,2,13,2,7,1630137887,2,-9.0,-9.0,-9.0,9.0,-9.0,1302688 -3232373,1630341587,2,27,5,8,1630137887,1,6.0,-9.0,-9.0,-9.0,4.0,1302688 -3232374,1630341626,2,32,0,1,1630137888,2,1.0,40.0,4.0,14.0,4.0,1302689 -3232375,1630341627,2,14,2,2,1630137888,1,-9.0,-9.0,-9.0,11.0,-9.0,1302689 -3232376,1630341628,2,10,2,3,1630137888,1,-9.0,-9.0,-9.0,7.0,-9.0,1302689 -3232377,1630341247,2,64,0,1,1630137889,1,6.0,-9.0,-9.0,-9.0,2.0,1302690 -3232378,1630341245,2,67,1,2,1630137889,2,3.0,40.0,2.0,-9.0,4.0,1302690 -3232379,1630341390,2,48,0,1,1630137890,2,6.0,-9.0,-9.0,-9.0,4.0,1302691 -3232380,1630341391,2,60,5,2,1630137890,1,6.0,-9.0,-9.0,-9.0,4.0,1302691 -3232381,1630341824,2,63,0,1,1630137891,2,6.0,-9.0,-9.0,-9.0,4.0,1302692 -3232382,1630341828,2,40,2,2,1630137891,2,1.0,40.0,1.0,-9.0,4.0,1302692 -3232383,1630341832,2,36,2,3,1630137891,1,3.0,45.0,4.0,-9.0,4.0,1302692 -3232384,1630341836,2,12,7,4,1630137891,2,-9.0,-9.0,-9.0,9.0,-9.0,1302692 -3232385,1630341908,2,51,0,1,1630137892,1,1.0,45.0,1.0,16.0,3.0,1302693 -3232386,1630341909,2,19,2,2,1630137892,1,6.0,-9.0,-9.0,15.0,4.0,1302693 -3232387,1630341910,2,16,2,3,1630137892,2,6.0,16.0,6.0,13.0,-9.0,1302693 -3232388,1630341907,2,14,2,4,1630137892,1,-9.0,-9.0,-9.0,11.0,-9.0,1302693 -3232389,1630341825,2,63,0,1,1630137893,2,6.0,-9.0,-9.0,-9.0,4.0,1302694 -3232390,1630341829,2,40,2,2,1630137893,2,1.0,40.0,1.0,-9.0,4.0,1302694 -3232391,1630341833,2,36,2,3,1630137893,1,3.0,45.0,4.0,-9.0,4.0,1302694 -3232392,1630341837,2,12,7,4,1630137893,2,-9.0,-9.0,-9.0,9.0,-9.0,1302694 -3232393,1630341826,2,63,0,1,1630137894,2,6.0,-9.0,-9.0,-9.0,4.0,1302695 -3232394,1630341830,2,40,2,2,1630137894,2,1.0,40.0,1.0,-9.0,4.0,1302695 -3232395,1630341834,2,36,2,3,1630137894,1,3.0,45.0,4.0,-9.0,4.0,1302695 -3232396,1630341838,2,12,7,4,1630137894,2,-9.0,-9.0,-9.0,9.0,-9.0,1302695 -3232397,1630341729,2,47,0,1,1630137895,2,2.0,60.0,3.0,-9.0,4.0,1302696 -3232398,1630341373,1,45,0,1,1630137896,1,1.0,50.0,1.0,-9.0,4.0,1302697 -3232399,1630341457,2,56,0,1,1630137897,2,1.0,40.0,1.0,-9.0,4.0,1302698 -3232400,1630341458,2,56,1,2,1630137897,1,6.0,-9.0,-9.0,-9.0,2.0,1302698 -3232401,1630341472,2,62,0,1,1630137898,2,6.0,-9.0,-9.0,-9.0,4.0,1302699 -3232402,1630341474,2,24,2,2,1630137898,2,1.0,40.0,3.0,-9.0,4.0,1302699 -3232403,1630341510,2,48,0,1,1630137899,1,1.0,35.0,1.0,-9.0,2.0,1302700 -3232404,1630341504,2,48,1,2,1630137899,2,1.0,40.0,4.0,-9.0,4.0,1302700 -3232405,1630341506,2,16,4,3,1630137899,1,6.0,-9.0,-9.0,13.0,-9.0,1302700 -3232406,1630341508,2,16,4,4,1630137899,1,6.0,-9.0,-9.0,13.0,-9.0,1302700 -3232407,1630341511,2,48,0,1,1630137900,1,1.0,35.0,1.0,-9.0,2.0,1302701 -3232408,1630341505,2,48,1,2,1630137900,2,1.0,40.0,4.0,-9.0,4.0,1302701 -3232409,1630341507,2,16,4,3,1630137900,1,6.0,-9.0,-9.0,13.0,-9.0,1302701 -3232410,1630341509,2,16,4,4,1630137900,1,6.0,-9.0,-9.0,13.0,-9.0,1302701 -3232411,1630341625,2,47,0,1,1630137901,1,1.0,40.0,1.0,-9.0,2.0,1302702 -3232412,1630341623,2,47,1,2,1630137901,2,3.0,-9.0,-9.0,-9.0,2.0,1302702 -3232413,1630341624,2,26,2,3,1630137901,2,1.0,36.0,1.0,-9.0,4.0,1302702 -3232414,1630341261,2,61,0,1,1630137902,1,1.0,50.0,1.0,-9.0,4.0,1302703 -3232415,1630341257,2,93,6,2,1630137902,2,6.0,-9.0,-9.0,-9.0,4.0,1302703 -3232416,1630341259,1,56,13,3,1630137902,2,1.0,40.0,1.0,-9.0,4.0,1302703 -3232417,1630341262,2,61,0,1,1630137903,1,1.0,50.0,1.0,-9.0,4.0,1302704 -3232418,1630341258,2,93,6,2,1630137903,2,6.0,-9.0,-9.0,-9.0,4.0,1302704 -3232419,1630341260,1,56,13,3,1630137903,2,1.0,40.0,1.0,-9.0,4.0,1302704 -3232420,1630341554,2,50,0,1,1630137904,2,1.0,55.0,1.0,-9.0,4.0,1302705 -3232421,1630341555,2,8,2,2,1630137904,1,-9.0,-9.0,-9.0,4.0,-9.0,1302705 -3232422,1630341556,2,60,15,3,1630137904,1,1.0,45.0,1.0,-9.0,4.0,1302705 -3232423,1630341875,2,62,0,1,1630137905,2,1.0,40.0,1.0,-9.0,4.0,1302706 -3232424,1630341876,2,61,1,2,1630137905,1,1.0,60.0,1.0,-9.0,4.0,1302706 -3232425,1630341389,2,60,0,1,1630137906,1,1.0,45.0,1.0,-9.0,4.0,1302707 -3232426,1630341388,2,60,1,2,1630137906,2,1.0,40.0,1.0,-9.0,4.0,1302707 -3232427,1630341312,2,50,0,1,1630137907,2,6.0,-9.0,-9.0,-9.0,4.0,1302708 -3232428,1630341315,2,53,1,2,1630137907,1,6.0,-9.0,-9.0,-9.0,4.0,1302708 -3232429,1630341309,2,67,6,3,1630137907,2,6.0,-9.0,-9.0,-9.0,4.0,1302708 -3232430,1630341318,2,5,7,4,1630137907,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302708 -3232431,1630341313,2,50,0,1,1630137908,2,6.0,-9.0,-9.0,-9.0,4.0,1302709 -3232432,1630341316,2,53,1,2,1630137908,1,6.0,-9.0,-9.0,-9.0,4.0,1302709 -3232433,1630341310,2,67,6,3,1630137908,2,6.0,-9.0,-9.0,-9.0,4.0,1302709 -3232434,1630341319,2,5,7,4,1630137908,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302709 -3232435,1630341314,2,50,0,1,1630137909,2,6.0,-9.0,-9.0,-9.0,4.0,1302710 -3232436,1630341317,2,53,1,2,1630137909,1,6.0,-9.0,-9.0,-9.0,4.0,1302710 -3232437,1630341311,2,67,6,3,1630137909,2,6.0,-9.0,-9.0,-9.0,4.0,1302710 -3232438,1630341320,2,5,7,4,1630137909,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302710 -3232439,1630341332,2,63,0,1,1630137910,1,6.0,-9.0,-9.0,-9.0,4.0,1302711 -3232440,1630341329,2,67,1,2,1630137910,2,6.0,-9.0,-9.0,-9.0,4.0,1302711 -3232441,1630341330,2,8,7,3,1630137910,1,-9.0,-9.0,-9.0,5.0,-9.0,1302711 -3232442,1630341331,2,7,7,4,1630137910,1,-9.0,-9.0,-9.0,4.0,-9.0,1302711 -3232443,1630341514,2,64,0,1,1630137911,2,6.0,-9.0,-9.0,-9.0,4.0,1302712 -3232444,1630341515,2,64,0,1,1630137912,2,6.0,-9.0,-9.0,-9.0,4.0,1302713 -3232445,1630341597,2,62,0,1,1630137913,2,6.0,-9.0,-9.0,-9.0,4.0,1302714 -3232446,1630341491,2,55,0,1,1630137914,2,6.0,4.0,5.0,-9.0,4.0,1302715 -3232447,1630341918,2,62,0,1,1630137915,1,6.0,-9.0,-9.0,-9.0,4.0,1302716 -3232448,1630341919,2,62,0,1,1630137916,1,6.0,-9.0,-9.0,-9.0,4.0,1302717 -3232449,1630341806,2,56,0,1,1630137917,2,6.0,-9.0,-9.0,-9.0,4.0,1302718 -3232450,1630341807,2,57,1,2,1630137917,1,6.0,-9.0,-9.0,-9.0,4.0,1302718 -3232451,1630341786,2,61,0,1,1630137918,2,6.0,-9.0,-9.0,-9.0,4.0,1302719 -3232452,1630341787,2,55,1,2,1630137918,1,6.0,-9.0,-9.0,-9.0,2.0,1302719 -3232453,1630341671,2,46,0,1,1630137919,2,1.0,40.0,5.0,-9.0,4.0,1302720 -3232454,1630341673,2,29,2,2,1630137919,2,6.0,-9.0,-9.0,-9.0,4.0,1302720 -3232455,1630341675,2,9,2,3,1630137919,1,-9.0,-9.0,-9.0,6.0,-9.0,1302720 -3232456,1630341677,2,6,2,4,1630137919,1,-9.0,-9.0,-9.0,3.0,-9.0,1302720 -3232457,1630341969,2,56,0,1,1630137920,1,1.0,40.0,1.0,-9.0,4.0,1302721 -3232458,1630341649,2,55,0,1,1630137921,2,1.0,50.0,1.0,-9.0,4.0,1302722 -3232459,1630341650,2,55,0,1,1630137922,2,1.0,50.0,1.0,-9.0,4.0,1302723 -3232460,1630341728,2,56,0,1,1630137923,2,1.0,40.0,1.0,-9.0,4.0,1302724 -3232461,1630341770,2,54,0,1,1630137924,2,1.0,35.0,1.0,-9.0,4.0,1302725 -3232462,1630341970,2,56,0,1,1630137925,1,1.0,40.0,1.0,-9.0,4.0,1302726 -3232463,1630341651,2,55,0,1,1630137926,2,1.0,50.0,1.0,-9.0,4.0,1302727 -3232464,1630341771,2,54,0,1,1630137927,2,1.0,35.0,1.0,-9.0,4.0,1302728 -3232465,1630341512,2,61,0,1,1630137928,2,1.0,40.0,1.0,-9.0,4.0,1302729 -3232466,1630341513,2,61,0,1,1630137929,2,1.0,40.0,1.0,-9.0,4.0,1302730 -3232467,1630341252,2,64,0,1,1630137930,2,6.0,-9.0,-9.0,-9.0,4.0,1302731 -3232468,1630341253,2,22,10,2,1630137930,2,1.0,10.0,1.0,-9.0,4.0,1302731 -3232469,1630341455,2,64,0,1,1630137931,1,6.0,40.0,3.0,-9.0,2.0,1302732 -3232470,1630341453,2,63,1,2,1630137931,2,6.0,-9.0,-9.0,-9.0,4.0,1302732 -3232471,1630341454,2,34,2,3,1630137931,2,2.0,40.0,4.0,-9.0,4.0,1302732 -3232472,1630341773,2,55,0,1,1630137932,1,6.0,16.0,6.0,-9.0,4.0,1302733 -3232473,1630341772,2,51,1,2,1630137932,2,6.0,16.0,3.0,-9.0,4.0,1302733 -3232474,1630341774,2,26,2,3,1630137932,1,1.0,40.0,2.0,-9.0,4.0,1302733 -3232475,1630341552,2,57,0,1,1630137933,1,1.0,40.0,1.0,-9.0,4.0,1302734 -3232476,1630341551,2,54,1,2,1630137933,2,6.0,-9.0,-9.0,-9.0,4.0,1302734 -3232477,1630341561,2,63,0,1,1630137934,2,6.0,-9.0,-9.0,-9.0,4.0,1302735 -3232478,1630341562,2,25,2,2,1630137934,2,1.0,40.0,2.0,-9.0,4.0,1302735 -3232479,1630341695,2,50,0,1,1630137935,2,1.0,40.0,3.0,-9.0,3.0,1302736 -3232480,1630341697,2,19,2,2,1630137935,1,1.0,22.0,5.0,-9.0,4.0,1302736 -3232481,1630341699,2,16,7,3,1630137935,2,6.0,-9.0,-9.0,12.0,-9.0,1302736 -3232482,1630341701,2,12,7,4,1630137935,2,-9.0,-9.0,-9.0,9.0,-9.0,1302736 -3232483,1630341696,2,50,0,1,1630137936,2,1.0,40.0,3.0,-9.0,3.0,1302737 -3232484,1630341698,2,19,2,2,1630137936,1,1.0,22.0,5.0,-9.0,4.0,1302737 -3232485,1630341700,2,16,7,3,1630137936,2,6.0,-9.0,-9.0,12.0,-9.0,1302737 -3232486,1630341702,2,12,7,4,1630137936,2,-9.0,-9.0,-9.0,9.0,-9.0,1302737 -3232487,1630341533,2,59,0,1,1630137937,1,2.0,72.0,1.0,-9.0,4.0,1302738 -3232488,1630341532,2,49,1,2,1630137937,2,1.0,40.0,1.0,-9.0,4.0,1302738 -3232489,1630341934,2,54,0,1,1630137938,1,1.0,65.0,1.0,-9.0,4.0,1302739 -3232490,1630341560,2,57,0,1,1630137939,2,6.0,-9.0,-9.0,-9.0,4.0,1302740 -3232491,1630341850,2,61,0,1,1630137940,2,6.0,-9.0,-9.0,-9.0,4.0,1302741 -3232492,1630341802,2,50,0,1,1630137941,2,6.0,-9.0,-9.0,-9.0,4.0,1302742 -3232493,1630341962,2,58,0,1,1630137942,1,3.0,-9.0,-9.0,-9.0,4.0,1302743 -3232494,1630341963,2,58,0,1,1630137943,1,3.0,-9.0,-9.0,-9.0,4.0,1302744 -3232495,1630341452,2,57,0,1,1630137944,2,6.0,-9.0,-9.0,-9.0,4.0,1302745 -3232496,1630341948,2,58,0,1,1630137945,1,6.0,-9.0,-9.0,-9.0,4.0,1302746 -3232497,1630341941,2,46,0,1,1630137946,1,6.0,-9.0,-9.0,-9.0,4.0,1302747 -3232498,1630341730,2,63,0,1,1630137947,2,6.0,-9.0,-9.0,-9.0,4.0,1302748 -3232499,1630341464,2,60,0,1,1630137948,2,6.0,-9.0,-9.0,-9.0,4.0,1302749 -3232500,1630341495,2,58,0,1,1630137949,2,6.0,-9.0,-9.0,15.0,4.0,1302750 -3232501,1630341731,2,63,0,1,1630137950,2,6.0,-9.0,-9.0,-9.0,4.0,1302751 -3232502,1630341486,2,51,0,1,1630137951,2,3.0,-9.0,-9.0,-9.0,4.0,1302752 -3232503,1630341961,2,60,0,1,1630137952,1,6.0,-9.0,-9.0,-9.0,2.0,1302753 -3232504,1630341496,2,58,0,1,1630137953,2,6.0,-9.0,-9.0,15.0,4.0,1302754 -3232505,1630341959,2,62,0,1,1630137954,1,6.0,-9.0,-9.0,-9.0,4.0,1302755 -3232506,1630341946,2,53,0,1,1630137955,1,6.0,40.0,1.0,-9.0,2.0,1302756 -3232507,1630341465,2,60,0,1,1630137956,2,6.0,-9.0,-9.0,-9.0,4.0,1302757 -3232508,1630341753,2,48,0,1,1630137957,2,6.0,-9.0,-9.0,-9.0,4.0,1302758 -3232509,1630341754,2,24,2,2,1630137957,2,6.0,-9.0,-9.0,-9.0,4.0,1302758 -3232510,1630341755,2,21,2,3,1630137957,2,6.0,-9.0,-9.0,-9.0,4.0,1302758 -3232511,1630341758,2,4,7,4,1630137957,2,-9.0,-9.0,-9.0,2.0,-9.0,1302758 -3232512,1630341759,2,3,7,5,1630137957,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302758 -3232513,1630341756,2,1,7,6,1630137957,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302758 -3232514,1630341757,2,0,7,7,1630137957,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302758 -3232515,1630341479,2,58,0,1,1630137958,1,6.0,-9.0,-9.0,-9.0,4.0,1302759 -3232516,1630341478,2,52,15,2,1630137958,2,3.0,-9.0,-9.0,-9.0,4.0,1302759 -3232517,1630341536,2,59,0,1,1630137959,2,6.0,-9.0,-9.0,-9.0,4.0,1302760 -3232518,1630341539,2,58,1,2,1630137959,1,6.0,-9.0,-9.0,-9.0,4.0,1302760 -3232519,1630341693,2,48,0,1,1630137960,2,6.0,20.0,1.0,15.0,4.0,1302761 -3232520,1630341694,2,21,2,2,1630137960,1,6.0,-9.0,-9.0,15.0,4.0,1302761 -3232521,1630341868,2,54,0,1,1630137961,2,6.0,-9.0,-9.0,-9.0,4.0,1302762 -3232522,1630341870,2,19,2,2,1630137961,1,6.0,-9.0,-9.0,-9.0,4.0,1302762 -3232523,1630341784,2,58,0,1,1630137962,2,3.0,-9.0,-9.0,15.0,4.0,1302763 -3232524,1630341785,2,28,2,2,1630137962,1,6.0,-9.0,-9.0,16.0,4.0,1302763 -3232525,1630341869,2,54,0,1,1630137963,2,6.0,-9.0,-9.0,-9.0,4.0,1302764 -3232526,1630341871,2,19,2,2,1630137963,1,6.0,-9.0,-9.0,-9.0,4.0,1302764 -3232527,1630341537,2,59,0,1,1630137964,2,6.0,-9.0,-9.0,-9.0,4.0,1302765 -3232528,1630341540,2,58,1,2,1630137964,1,6.0,-9.0,-9.0,-9.0,4.0,1302765 -3232529,1630341468,2,45,0,1,1630137965,2,6.0,-9.0,-9.0,-9.0,2.0,1302766 -3232530,1630341469,2,7,2,2,1630137965,2,-9.0,-9.0,-9.0,3.0,-9.0,1302766 -3232531,1630341978,2,47,0,1,1630137966,1,1.0,40.0,1.0,-9.0,4.0,1302767 -3232532,1630341616,2,50,0,1,1630137967,2,1.0,40.0,1.0,-9.0,4.0,1302768 -3232533,1630341781,2,55,0,1,1630137968,2,1.0,37.0,1.0,-9.0,4.0,1302769 -3232534,1630341782,2,55,0,1,1630137969,2,1.0,37.0,1.0,-9.0,4.0,1302770 -3232535,1630341804,2,61,0,1,1630137970,2,1.0,25.0,1.0,-9.0,4.0,1302771 -3232536,1630341286,2,65,0,1,1630137971,2,6.0,-9.0,-9.0,-9.0,4.0,1302772 -3232537,1630341290,2,66,1,2,1630137971,1,6.0,-9.0,-9.0,-9.0,2.0,1302772 -3232538,1630341292,2,67,5,3,1630137971,1,6.0,-9.0,-9.0,-9.0,2.0,1302772 -3232539,1630341288,2,57,5,4,1630137971,1,6.0,-9.0,-9.0,-9.0,4.0,1302772 -3232540,1630341287,2,65,0,1,1630137972,2,6.0,-9.0,-9.0,-9.0,4.0,1302773 -3232541,1630341291,2,66,1,2,1630137972,1,6.0,-9.0,-9.0,-9.0,2.0,1302773 -3232542,1630341293,2,67,5,3,1630137972,1,6.0,-9.0,-9.0,-9.0,2.0,1302773 -3232543,1630341289,2,57,5,4,1630137972,1,6.0,-9.0,-9.0,-9.0,4.0,1302773 -3232544,1630341980,2,76,0,1,1630137973,1,6.0,-9.0,-9.0,-9.0,2.0,1302774 -3232545,1630341323,2,70,0,1,1630137974,2,6.0,-9.0,-9.0,-9.0,4.0,1302775 -3232546,1630341984,2,65,0,1,1630137975,1,6.0,-9.0,-9.0,-9.0,4.0,1302776 -3232547,1630341358,2,79,0,1,1630137976,1,6.0,-9.0,-9.0,-9.0,4.0,1302777 -3232548,1630341355,3,60,15,2,1630137976,2,6.0,-9.0,-9.0,-9.0,4.0,1302777 -3232549,1630341359,2,79,0,1,1630137977,1,6.0,-9.0,-9.0,-9.0,4.0,1302778 -3232550,1630341356,3,60,15,2,1630137977,2,6.0,-9.0,-9.0,-9.0,4.0,1302778 -3232551,1630341219,2,75,0,1,1630137978,1,6.0,-9.0,-9.0,-9.0,4.0,1302779 -3232552,1630341218,2,71,1,2,1630137978,2,6.0,-9.0,-9.0,-9.0,4.0,1302779 -3232553,1630341333,2,80,0,1,1630137979,2,6.0,-9.0,-9.0,-9.0,4.0,1302780 -3232554,1630341335,2,27,7,2,1630137979,1,3.0,40.0,6.0,-9.0,4.0,1302780 -3232555,1630341336,2,25,7,3,1630137979,1,3.0,-9.0,-9.0,-9.0,4.0,1302780 -3232556,1630341334,2,57,10,4,1630137979,2,1.0,35.0,1.0,-9.0,4.0,1302780 -3232557,1630341268,2,93,0,1,1630137980,2,6.0,-9.0,-9.0,-9.0,4.0,1302781 -3232558,1630341339,2,79,0,1,1630137981,2,6.0,-9.0,-9.0,-9.0,4.0,1302782 -3232559,1630341322,2,65,0,1,1630137982,2,6.0,-9.0,-9.0,-9.0,4.0,1302783 -3232560,1630341278,2,87,0,1,1630137983,2,6.0,-9.0,-9.0,-9.0,4.0,1302784 -3232561,1630341983,2,80,0,1,1630137984,1,6.0,-9.0,-9.0,-9.0,2.0,1302785 -3232562,1630341244,2,77,0,1,1630137985,2,6.0,-9.0,-9.0,-9.0,4.0,1302786 -3232563,1630341338,2,87,0,1,1630137986,2,6.0,-9.0,-9.0,-9.0,4.0,1302787 -3232564,1630341285,2,66,0,1,1630137987,2,6.0,-9.0,-9.0,-9.0,4.0,1302788 -3232565,1630341301,2,82,0,1,1630137988,2,6.0,-9.0,-9.0,-9.0,4.0,1302789 -3232566,1630341987,2,81,0,1,1630137989,1,6.0,-9.0,-9.0,-9.0,4.0,1302790 -3232567,1630341295,2,87,0,1,1630137990,2,6.0,-9.0,-9.0,-9.0,4.0,1302791 -3232568,1630341296,2,89,1,2,1630137990,1,6.0,-9.0,-9.0,-9.0,3.0,1302791 -3232569,1630341796,2,26,0,1,1630137991,2,3.0,-9.0,-9.0,-9.0,4.0,1302792 -3232570,1630341798,2,7,2,2,1630137991,2,-9.0,-9.0,-9.0,4.0,-9.0,1302792 -3232571,1630341799,2,11,5,3,1630137991,2,-9.0,-9.0,-9.0,6.0,-9.0,1302792 -3232572,1630341797,2,26,13,4,1630137991,1,1.0,40.0,1.0,-9.0,4.0,1302792 -3232573,1630341917,2,30,0,1,1630137992,1,1.0,40.0,1.0,-9.0,4.0,1302793 -3232574,1630341566,2,32,0,1,1630137993,2,1.0,40.0,1.0,-9.0,4.0,1302794 -3232575,1630341445,2,26,0,1,1630137994,2,1.0,40.0,1.0,-9.0,4.0,1302795 -3232576,1630341713,2,29,0,1,1630137995,2,1.0,40.0,1.0,16.0,4.0,1302796 -3232577,1630341800,2,43,0,1,1630137996,2,1.0,70.0,1.0,-9.0,4.0,1302797 -3232578,1630341801,2,9,2,2,1630137996,2,-9.0,-9.0,-9.0,6.0,-9.0,1302797 -3232579,1630341788,2,38,0,1,1630137997,2,3.0,34.0,5.0,-9.0,4.0,1302798 -3232580,1630341790,2,12,2,2,1630137997,2,-9.0,-9.0,-9.0,8.0,-9.0,1302798 -3232581,1630341789,2,8,2,3,1630137997,1,-9.0,-9.0,-9.0,5.0,-9.0,1302798 -3232582,1630341791,2,6,2,4,1630137997,2,-9.0,-9.0,-9.0,3.0,-9.0,1302798 -3232583,1630341633,2,37,0,1,1630137998,2,6.0,-9.0,-9.0,-9.0,4.0,1302799 -3232584,1630341636,2,40,1,2,1630137998,1,6.0,-9.0,-9.0,-9.0,4.0,1302799 -3232585,1630341634,2,8,2,3,1630137998,1,-9.0,-9.0,-9.0,3.0,-9.0,1302799 -3232586,1630341635,2,5,2,4,1630137998,1,-9.0,-9.0,-9.0,2.0,-9.0,1302799 -3232587,1630341955,2,28,0,1,1630137999,1,3.0,-9.0,-9.0,-9.0,4.0,1302800 -3232588,1630341942,2,34,0,1,1630138000,1,6.0,-9.0,-9.0,-9.0,4.0,1302801 -3232589,1630341965,2,29,0,1,1630138001,1,6.0,-9.0,-9.0,-9.0,4.0,1302802 -3232590,1630341440,2,26,0,1,1630138002,2,6.0,-9.0,-9.0,-9.0,4.0,1302803 -3232591,1630341441,2,26,0,1,1630138003,2,6.0,-9.0,-9.0,-9.0,4.0,1302804 -3232592,1630341400,2,26,0,1,1630138004,2,6.0,40.0,5.0,15.0,4.0,1302805 -3232593,1630341401,2,7,2,2,1630138004,1,-9.0,-9.0,-9.0,4.0,-9.0,1302805 -3232594,1630341402,2,2,2,3,1630138004,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302805 -3232595,1630341935,2,31,0,1,1630138005,1,3.0,40.0,6.0,15.0,4.0,1302806 -3232596,1630341936,2,4,2,2,1630138005,2,-9.0,-9.0,-9.0,1.0,-9.0,1302806 -3232597,1630341637,2,34,0,1,1630138006,2,2.0,30.0,3.0,-9.0,4.0,1302807 -3232598,1630341638,2,7,2,2,1630138006,1,-9.0,-9.0,-9.0,3.0,-9.0,1302807 -3232599,1630341639,2,1,2,3,1630138006,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302807 -3232600,1630341640,2,0,2,4,1630138006,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302807 -3232601,1630341645,2,30,0,1,1630138007,2,1.0,25.0,4.0,-9.0,4.0,1302808 -3232602,1630341646,2,7,2,2,1630138007,1,-9.0,-9.0,-9.0,4.0,-9.0,1302808 -3232603,1630341647,2,2,2,3,1630138007,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302808 -3232604,1630341648,2,1,2,4,1630138007,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302808 -3232605,1630341664,2,44,0,1,1630138008,2,3.0,32.0,4.0,-9.0,4.0,1302809 -3232606,1630341665,2,19,2,2,1630138008,2,1.0,20.0,6.0,15.0,4.0,1302809 -3232607,1630341666,2,15,2,3,1630138008,1,-9.0,-9.0,-9.0,12.0,-9.0,1302809 -3232608,1630341667,2,7,2,4,1630138008,2,-9.0,-9.0,-9.0,4.0,-9.0,1302809 -3232609,1630341949,2,30,0,1,1630138009,1,1.0,40.0,1.0,-9.0,4.0,1302810 -3232610,1630341803,2,27,0,1,1630138010,2,1.0,50.0,1.0,-9.0,4.0,1302811 -3232611,1630341738,2,38,0,1,1630138011,1,1.0,50.0,6.0,-9.0,4.0,1302812 -3232612,1630341736,2,29,1,2,1630138011,2,3.0,-9.0,-9.0,-9.0,4.0,1302812 -3232613,1630341737,2,0,2,3,1630138011,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302812 -3232614,1630341466,2,25,0,1,1630138012,2,1.0,40.0,5.0,-9.0,4.0,1302813 -3232615,1630341467,2,1,2,2,1630138012,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302813 -3232616,1630341945,2,64,0,1,1630138013,1,6.0,-9.0,-9.0,-9.0,4.0,1302814 -3232617,1630341930,2,59,0,1,1630138014,1,1.0,40.0,1.0,-9.0,4.0,1302815 -3232618,1630341931,2,54,0,1,1630138015,1,1.0,40.0,3.0,-9.0,4.0,1302816 -3232619,1630341972,2,48,0,1,1630138016,1,1.0,48.0,1.0,-9.0,4.0,1302817 -3232620,1630341915,2,46,0,1,1630138017,1,1.0,45.0,1.0,-9.0,4.0,1302818 -3232621,1630341979,2,50,0,1,1630138018,1,1.0,50.0,1.0,-9.0,4.0,1302819 -3232622,1630341734,2,58,0,1,1630138019,2,1.0,40.0,1.0,-9.0,4.0,1302820 -3232623,1630341735,2,26,2,2,1630138019,1,3.0,-9.0,-9.0,-9.0,4.0,1302820 -3232624,1630341345,2,50,0,1,1630138020,2,3.0,40.0,5.0,-9.0,4.0,1302821 -3232625,1630341346,2,50,13,2,1630138020,1,1.0,20.0,1.0,-9.0,4.0,1302821 -3232626,1630341347,2,48,15,3,1630138020,1,1.0,25.0,1.0,-9.0,4.0,1302821 -3232627,1630341344,1,47,15,4,1630138020,2,3.0,-9.0,-9.0,-9.0,4.0,1302821 -3232628,1630341668,2,48,0,1,1630138021,2,6.0,-9.0,-9.0,-9.0,4.0,1302822 -3232629,1630341783,2,52,0,1,1630138022,2,6.0,-9.0,-9.0,-9.0,4.0,1302823 -3232630,1630341437,2,46,0,1,1630138023,2,3.0,40.0,6.0,-9.0,4.0,1302824 -3232631,1630341652,2,56,0,1,1630138024,2,6.0,-9.0,-9.0,-9.0,4.0,1302825 -3232632,1630341732,2,60,0,1,1630138025,2,6.0,-9.0,-9.0,-9.0,4.0,1302826 -3232633,1630341733,2,59,0,1,1630138026,2,6.0,-9.0,-9.0,-9.0,4.0,1302827 -3232634,1630341726,2,46,0,1,1630138027,2,6.0,-9.0,-9.0,-9.0,4.0,1302828 -3232635,1630341563,2,64,0,1,1630138028,2,6.0,-9.0,-9.0,-9.0,4.0,1302829 -3232636,1630341446,2,60,0,1,1630138029,2,6.0,32.0,6.0,-9.0,4.0,1302830 -3232637,1630341456,2,50,0,1,1630138030,2,6.0,-9.0,-9.0,-9.0,4.0,1302831 -3232638,1630341929,2,54,0,1,1630138031,1,3.0,-9.0,-9.0,-9.0,2.0,1302832 -3232639,1630341932,2,58,0,1,1630138032,1,6.0,-9.0,-9.0,-9.0,4.0,1302833 -3232640,1630341727,2,46,0,1,1630138033,2,6.0,-9.0,-9.0,-9.0,4.0,1302834 -3232641,1630341943,2,49,0,1,1630138034,1,3.0,-9.0,-9.0,-9.0,4.0,1302835 -3232642,1630341926,2,58,0,1,1630138035,1,6.0,-9.0,-9.0,-9.0,4.0,1302836 -3232643,1630341944,2,49,0,1,1630138036,1,3.0,-9.0,-9.0,-9.0,4.0,1302837 -3232644,1630341966,2,53,0,1,1630138037,1,6.0,-9.0,-9.0,-9.0,2.0,1302838 -3232645,1630341808,2,50,0,1,1630138038,2,3.0,-9.0,-9.0,15.0,4.0,1302839 -3232646,1630341763,2,63,0,1,1630138039,2,6.0,-9.0,-9.0,-9.0,4.0,1302840 -3232647,1630341477,2,63,0,1,1630138040,2,6.0,-9.0,-9.0,-9.0,4.0,1302841 -3232648,1630341856,2,46,0,1,1630138041,2,3.0,-9.0,-9.0,-9.0,4.0,1302842 -3232649,1630341867,2,62,0,1,1630138042,2,6.0,-9.0,-9.0,-9.0,4.0,1302843 -3232650,1630341547,2,55,0,1,1630138043,1,6.0,-9.0,-9.0,-9.0,4.0,1302844 -3232651,1630341546,2,48,15,2,1630138043,2,6.0,-9.0,-9.0,-9.0,4.0,1302844 -3232652,1630341654,2,58,0,1,1630138044,2,6.0,-9.0,-9.0,-9.0,4.0,1302845 -3232653,1630341655,2,62,1,2,1630138044,1,6.0,-9.0,-9.0,-9.0,4.0,1302845 -3232654,1630341657,2,55,0,1,1630138045,1,6.0,-9.0,-9.0,-9.0,3.0,1302846 -3232655,1630341656,2,55,1,2,1630138045,2,6.0,30.0,3.0,-9.0,4.0,1302846 -3232656,1630341761,2,58,0,1,1630138046,1,6.0,-9.0,-9.0,-9.0,2.0,1302847 -3232657,1630341760,2,56,12,2,1630138046,2,6.0,-9.0,-9.0,15.0,4.0,1302847 -3232658,1630341964,2,48,0,1,1630138047,1,1.0,36.0,6.0,-9.0,4.0,1302848 -3232659,1630341494,2,49,0,1,1630138048,2,1.0,30.0,1.0,13.0,4.0,1302849 -3232660,1630341712,2,64,0,1,1630138049,2,2.0,7.0,2.0,-9.0,4.0,1302850 -3232661,1630341553,2,53,0,1,1630138050,2,1.0,32.0,1.0,-9.0,4.0,1302851 -3232662,1630341722,2,46,0,1,1630138051,2,1.0,30.0,3.0,15.0,4.0,1302852 -3232663,1630341960,2,59,0,1,1630138052,1,1.0,32.0,5.0,-9.0,4.0,1302853 -3232664,1630341822,2,50,0,1,1630138053,2,1.0,40.0,2.0,-9.0,4.0,1302854 -3232665,1630341823,2,31,2,2,1630138053,1,3.0,24.0,6.0,-9.0,4.0,1302854 -3232666,1630341256,2,85,0,1,1630138054,2,6.0,-9.0,-9.0,-9.0,4.0,1302855 -3232667,1630341217,2,86,0,1,1630138055,2,6.0,-9.0,-9.0,-9.0,4.0,1302856 -3232668,1630341981,2,76,0,1,1630138056,1,3.0,-9.0,-9.0,-9.0,4.0,1302857 -3232669,1630341573,2,63,0,1,1630138057,2,3.0,-9.0,-9.0,-9.0,4.0,1302858 -3232670,1630341574,2,25,2,2,1630138057,2,1.0,30.0,1.0,15.0,4.0,1302858 -3232671,1630341476,2,32,0,1,1630138058,2,6.0,-9.0,-9.0,16.0,4.0,1302859 -3232672,1630341369,2,48,0,1,1630138059,2,6.0,-9.0,-9.0,-9.0,4.0,1302860 -3232673,1630341370,2,51,1,2,1630138059,1,1.0,40.0,1.0,-9.0,4.0,1302860 -3232674,1630341371,2,7,2,3,1630138059,2,-9.0,-9.0,-9.0,5.0,-9.0,1302860 -3232675,1630341368,1,61,15,4,1630138059,1,3.0,-9.0,-9.0,-9.0,4.0,1302860 -3232676,1630341613,2,32,0,1,1630138060,2,6.0,40.0,5.0,16.0,4.0,1302861 -3232677,1630341614,2,31,1,2,1630138060,2,6.0,40.0,5.0,-9.0,4.0,1302861 -3232678,1630341615,2,5,2,3,1630138060,2,-9.0,-9.0,-9.0,2.0,-9.0,1302861 -3232679,1630341543,2,51,0,1,1630138061,1,1.0,20.0,1.0,-9.0,4.0,1302862 -3232680,1630341542,2,51,13,2,1630138061,2,1.0,36.0,4.0,-9.0,4.0,1302862 -3232681,1630341544,2,21,15,3,1630138061,1,3.0,-9.0,-9.0,-9.0,4.0,1302862 -3232682,1630341545,2,20,15,4,1630138061,1,6.0,-9.0,-9.0,13.0,4.0,1302862 -3232683,1630341792,2,43,0,1,1630138062,2,1.0,40.0,1.0,-9.0,2.0,1302863 -3232684,1630341793,2,11,2,2,1630138062,1,-9.0,-9.0,-9.0,8.0,-9.0,1302863 -3232685,1630341947,2,47,0,1,1630138063,1,1.0,40.0,1.0,-9.0,4.0,1302864 -3232686,1630341249,2,65,0,1,1630138064,2,6.0,-9.0,-9.0,-9.0,4.0,1302865 -3232687,1630341621,2,37,0,1,1630138065,2,1.0,40.0,1.0,-9.0,4.0,1302866 -3232688,1630341622,2,22,2,2,1630138065,1,2.0,30.0,6.0,-9.0,4.0,1302866 -3232689,1630341538,2,59,0,1,1630138066,2,6.0,-9.0,-9.0,-9.0,4.0,1302867 -3232690,1630341541,2,58,1,2,1630138066,1,6.0,-9.0,-9.0,-9.0,4.0,1302867 -3232691,1630341883,2,58,0,1,1630138067,2,1.0,23.0,2.0,-9.0,4.0,1302868 -3232692,1630341658,2,44,0,1,1630138068,2,1.0,40.0,1.0,-9.0,4.0,1302869 -3232693,1630341659,2,25,2,2,1630138068,2,3.0,-9.0,-9.0,15.0,4.0,1302869 -3232694,1630341660,2,20,2,3,1630138068,2,1.0,20.0,6.0,15.0,4.0,1302869 -3232695,1630341661,2,16,2,4,1630138068,1,6.0,-9.0,-9.0,13.0,-9.0,1302869 -3232696,1630341861,2,61,0,1,1630138069,2,6.0,-9.0,-9.0,-9.0,4.0,1302870 -3232697,1630341862,2,62,12,2,1630138069,1,6.0,-9.0,-9.0,-9.0,2.0,1302870 -3232698,1630341349,2,55,0,1,1630138070,1,1.0,48.0,1.0,-9.0,2.0,1302871 -3232699,1630341348,1,52,1,2,1630138070,2,6.0,-9.0,-9.0,-9.0,4.0,1302871 -3232700,1630341351,4,20,2,3,1630138070,2,6.0,-9.0,-9.0,15.0,4.0,1302871 -3232701,1630341350,4,18,2,4,1630138070,1,6.0,-9.0,-9.0,15.0,4.0,1302871 -3232702,1630341669,2,62,0,1,1630138071,2,6.0,-9.0,-9.0,-9.0,4.0,1302872 -3232703,1630341670,2,63,15,2,1630138071,1,6.0,-9.0,-9.0,-9.0,4.0,1302872 -3232704,1630341723,2,46,0,1,1630138072,2,6.0,-9.0,-9.0,-9.0,4.0,1302873 -3232705,1630341725,2,84,1,2,1630138072,1,6.0,-9.0,-9.0,-9.0,4.0,1302873 -3232706,1630341724,2,43,5,3,1630138072,1,6.0,-9.0,-9.0,-9.0,4.0,1302873 -3232707,1630341266,2,93,0,1,1630138073,2,6.0,-9.0,-9.0,-9.0,4.0,1302874 -3232708,1630341267,2,71,2,2,1630138073,2,6.0,-9.0,-9.0,-9.0,4.0,1302874 -3232709,1630341374,1,59,0,1,1630138074,1,6.0,-9.0,-9.0,-9.0,4.0,1302875 -3232710,1630341220,2,79,0,1,1630138075,2,6.0,-9.0,-9.0,-9.0,4.0,1302876 -3232711,1630341221,2,45,2,2,1630138075,2,1.0,32.0,2.0,-9.0,4.0,1302876 -3232712,1630341487,2,47,0,1,1630138076,2,3.0,-9.0,-9.0,-9.0,4.0,1302877 -3232713,1630341488,2,20,2,2,1630138076,2,3.0,20.0,5.0,-9.0,4.0,1302877 -3232714,1630341489,2,19,2,3,1630138076,2,3.0,20.0,6.0,-9.0,4.0,1302877 -3232715,1630341703,2,64,0,1,1630138077,2,1.0,40.0,1.0,-9.0,4.0,1302878 -3232716,1630341704,2,21,7,2,1630138077,1,1.0,35.0,3.0,-9.0,4.0,1302878 -3232717,1630341600,2,29,0,1,1630138078,2,3.0,40.0,4.0,-9.0,4.0,1302879 -3232718,1630341603,2,8,2,2,1630138078,2,-9.0,-9.0,-9.0,4.0,-9.0,1302879 -3232719,1630341601,2,6,2,3,1630138078,1,-9.0,-9.0,-9.0,3.0,-9.0,1302879 -3232720,1630341602,2,4,2,4,1630138078,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302879 -3232721,1630341242,2,50,0,1,1630138079,1,3.0,-9.0,-9.0,-9.0,4.0,1302880 -3232722,1630341243,2,58,10,2,1630138079,1,1.0,40.0,1.0,-9.0,4.0,1302880 -3232723,1630341241,2,23,10,3,1630138079,2,1.0,16.0,1.0,15.0,4.0,1302880 -3232724,1630341432,2,49,0,1,1630138080,2,6.0,-9.0,-9.0,-9.0,4.0,1302881 -3232725,1630341433,2,20,2,2,1630138080,1,1.0,40.0,1.0,-9.0,4.0,1302881 -3232726,1630341434,2,10,7,3,1630138080,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302881 -3232727,1630341714,2,41,0,1,1630138081,2,1.0,30.0,4.0,15.0,4.0,1302882 -3232728,1630341719,2,46,1,2,1630138081,1,3.0,40.0,3.0,-9.0,4.0,1302882 -3232729,1630341715,2,19,2,3,1630138081,2,1.0,40.0,6.0,-9.0,4.0,1302882 -3232730,1630341716,2,15,2,4,1630138081,1,-9.0,-9.0,-9.0,11.0,-9.0,1302882 -3232731,1630341720,2,11,2,5,1630138081,2,-9.0,-9.0,-9.0,9.0,-9.0,1302882 -3232732,1630341717,2,11,2,6,1630138081,1,-9.0,-9.0,-9.0,8.0,-9.0,1302882 -3232733,1630341718,2,6,3,7,1630138081,1,-9.0,-9.0,-9.0,4.0,-9.0,1302882 -3232734,1630341721,2,0,7,8,1630138081,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302882 -3232735,1630341337,2,71,0,1,1630138082,2,6.0,-9.0,-9.0,-9.0,4.0,1302883 -3232736,1630341863,2,62,0,1,1630138083,2,1.0,50.0,1.0,-9.0,4.0,1302884 -3232737,1630341632,2,66,0,1,1630138084,1,6.0,-9.0,-9.0,-9.0,4.0,1302885 -3232738,1630341631,2,46,2,2,1630138084,1,3.0,-9.0,-9.0,-9.0,4.0,1302885 -3232739,1630341629,2,20,7,3,1630138084,2,3.0,-9.0,-9.0,-9.0,4.0,1302885 -3232740,1630341630,2,19,7,4,1630138084,2,1.0,40.0,1.0,-9.0,4.0,1302885 -3232741,1630341916,2,40,0,1,1630138085,1,1.0,26.0,6.0,-9.0,4.0,1302886 -3232742,1630341360,2,79,0,1,1630138086,1,6.0,-9.0,-9.0,-9.0,4.0,1302887 -3232743,1630341357,3,60,15,2,1630138086,2,6.0,-9.0,-9.0,-9.0,4.0,1302887 -3232744,1630341361,1,26,0,1,1630138087,2,1.0,40.0,1.0,-9.0,4.0,1302888 -3232745,1630341480,2,64,0,1,1630138088,2,1.0,40.0,1.0,-9.0,4.0,1302889 -3232746,1630341874,2,41,0,1,1630138089,2,1.0,40.0,1.0,-9.0,4.0,1302890 -3232747,1630341364,1,31,0,1,1630138090,1,1.0,40.0,1.0,-9.0,4.0,1302891 -3232748,1630341363,1,32,1,2,1630138090,2,1.0,55.0,1.0,-9.0,4.0,1302891 -3232749,1630341462,2,57,0,1,1630138091,1,6.0,-9.0,-9.0,-9.0,4.0,1302892 -3232750,1630341460,2,49,1,2,1630138091,2,6.0,-9.0,-9.0,-9.0,4.0,1302892 -3232751,1630341461,2,22,2,3,1630138091,2,6.0,40.0,6.0,-9.0,4.0,1302892 -3232752,1630341463,2,13,2,4,1630138091,2,-9.0,-9.0,-9.0,9.0,-9.0,1302892 -3232753,1630341384,1,47,0,1,1630138092,1,6.0,24.0,5.0,-9.0,4.0,1302893 -3232754,1630341435,2,37,0,1,1630138093,2,1.0,50.0,1.0,-9.0,4.0,1302894 -3232755,1630341436,2,0,2,2,1630138093,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302894 -3232756,1630341354,1,26,0,1,1630138094,2,1.0,40.0,5.0,-9.0,4.0,1302895 -3232757,1630341530,2,34,0,1,1630138095,2,1.0,40.0,1.0,-9.0,4.0,1302896 -3232758,1630341531,2,33,1,2,1630138095,1,1.0,40.0,1.0,-9.0,4.0,1302896 -3232759,1630341642,2,69,0,1,1630138096,1,6.0,-9.0,-9.0,-9.0,4.0,1302897 -3232760,1630341641,2,29,2,2,1630138096,2,1.0,40.0,1.0,-9.0,4.0,1302897 -3232761,1630341985,2,65,0,1,1630138097,1,6.0,-9.0,-9.0,-9.0,4.0,1302898 -3232762,1630341518,2,24,0,1,1630138098,2,1.0,24.0,1.0,15.0,4.0,1302899 -3232763,1630341519,2,6,2,2,1630138098,2,-9.0,-9.0,-9.0,3.0,-9.0,1302899 -3232764,1630341520,2,4,2,3,1630138098,2,-9.0,-9.0,-9.0,1.0,-9.0,1302899 -3232765,1630341794,2,34,0,1,1630138099,2,1.0,40.0,1.0,16.0,4.0,1302900 -3232766,1630341795,2,34,1,2,1630138099,1,1.0,60.0,1.0,-9.0,4.0,1302900 -3232767,1630341567,2,30,0,1,1630138100,2,3.0,-9.0,-9.0,-9.0,4.0,1302901 -3232768,1630341568,2,25,10,2,1630138100,1,3.0,36.0,5.0,-9.0,4.0,1302901 -3232769,1630341968,2,43,0,1,1630138101,1,6.0,40.0,1.0,-9.0,4.0,1302902 -3232770,1630341427,2,55,0,1,1630138102,1,6.0,-9.0,-9.0,-9.0,4.0,1302903 -3232771,1630341425,2,46,1,2,1630138102,2,6.0,-9.0,-9.0,-9.0,4.0,1302903 -3232772,1630341428,2,18,2,3,1630138102,1,6.0,-9.0,-9.0,14.0,4.0,1302903 -3232773,1630341426,2,17,2,4,1630138102,1,6.0,-9.0,-9.0,13.0,4.0,1302903 -3232774,1630341805,2,61,0,1,1630138103,2,1.0,25.0,1.0,-9.0,4.0,1302904 -3232775,1630341473,2,62,0,1,1630138104,2,6.0,-9.0,-9.0,-9.0,4.0,1302905 -3232776,1630341475,2,24,2,2,1630138104,2,1.0,40.0,3.0,-9.0,4.0,1302905 -3232777,1630341604,2,51,0,1,1630138105,2,1.0,13.0,4.0,-9.0,4.0,1302906 -3232778,1630341605,2,16,2,2,1630138105,1,6.0,-9.0,-9.0,13.0,-9.0,1302906 -3232779,1630341276,2,69,0,1,1630138106,2,6.0,-9.0,-9.0,-9.0,4.0,1302907 -3232780,1630341277,2,40,2,2,1630138106,2,3.0,10.0,5.0,-9.0,4.0,1302907 -3232781,1630341447,2,35,0,1,1630138107,2,3.0,18.0,4.0,-9.0,4.0,1302908 -3232782,1630341449,2,35,15,2,1630138107,1,3.0,24.0,6.0,-9.0,4.0,1302908 -3232783,1630341448,2,14,15,3,1630138107,1,-9.0,-9.0,-9.0,10.0,-9.0,1302908 -3232784,1630341710,2,50,0,1,1630138108,1,3.0,40.0,5.0,-9.0,4.0,1302909 -3232785,1630341709,2,44,1,2,1630138108,2,3.0,50.0,5.0,-9.0,4.0,1302909 -3232786,1630341711,2,28,4,3,1630138108,1,3.0,-9.0,-9.0,-9.0,4.0,1302909 -3232787,1630341362,1,31,0,1,1630138109,2,1.0,50.0,1.0,-9.0,4.0,1302910 -3232788,1630341270,2,64,0,1,1630138110,1,6.0,-9.0,-9.0,-9.0,2.0,1302911 -3232789,1630341269,2,66,5,2,1630138110,2,1.0,37.0,1.0,-9.0,4.0,1302911 -3232790,1630341492,2,33,0,1,1630138111,2,3.0,42.0,6.0,-9.0,4.0,1302912 -3232791,1630341493,2,14,2,2,1630138111,2,-9.0,-9.0,-9.0,11.0,-9.0,1302912 -3232792,1630341746,2,38,0,1,1630138112,2,1.0,40.0,1.0,-9.0,4.0,1302913 -3232793,1630341747,2,4,2,2,1630138112,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302913 -3232794,1630341748,2,2,2,3,1630138112,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302913 -3232795,1630341749,2,40,13,4,1630138112,1,6.0,-9.0,-9.0,-9.0,4.0,1302913 -3232796,1630341272,2,68,0,1,1630138113,2,6.0,-9.0,-9.0,-9.0,4.0,1302914 -3232797,1630341273,2,44,2,2,1630138113,2,1.0,40.0,1.0,-9.0,4.0,1302914 -3232798,1630341274,2,42,2,3,1630138113,1,2.0,40.0,1.0,-9.0,4.0,1302914 -3232799,1630341275,2,73,15,4,1630138113,1,6.0,-9.0,-9.0,-9.0,4.0,1302914 -3232800,1630341845,2,49,0,1,1630138114,2,6.0,20.0,5.0,-9.0,4.0,1302915 -3232801,1630341762,2,60,0,1,1630138115,2,1.0,50.0,6.0,-9.0,4.0,1302916 -3232802,1630341952,2,55,0,1,1630138116,1,1.0,48.0,1.0,-9.0,4.0,1302917 -3232803,1630341953,2,53,5,2,1630138116,1,3.0,-9.0,-9.0,-9.0,4.0,1302917 -3232804,1630341954,2,19,10,3,1630138116,1,6.0,-9.0,-9.0,14.0,4.0,1302917 -3232805,1630341438,2,60,0,1,1630138117,2,6.0,-9.0,-9.0,-9.0,4.0,1302918 -3232806,1630341439,2,13,10,2,1630138117,1,-9.0,-9.0,-9.0,8.0,-9.0,1302918 -3232807,1630341653,2,59,0,1,1630138118,2,1.0,40.0,1.0,-9.0,4.0,1302919 -3232808,1630341777,2,47,0,1,1630138119,2,3.0,-9.0,-9.0,-9.0,4.0,1302920 -3232809,1630341778,2,16,2,2,1630138119,1,6.0,-9.0,-9.0,13.0,-9.0,1302920 -3232810,1630341780,2,38,15,3,1630138119,1,6.0,-9.0,-9.0,-9.0,4.0,1302920 -3232811,1630341298,2,54,0,1,1630138120,2,3.0,35.0,5.0,-9.0,4.0,1302921 -3232812,1630341299,2,54,1,2,1630138120,1,1.0,40.0,2.0,-9.0,4.0,1302921 -3232813,1630341297,2,86,8,3,1630138120,2,6.0,-9.0,-9.0,-9.0,4.0,1302921 -3232814,1630341490,2,42,0,1,1630138121,2,6.0,-9.0,-9.0,-9.0,4.0,1302922 -3232815,1630341450,2,47,0,1,1630138122,2,1.0,91.0,1.0,-9.0,4.0,1302923 -3232816,1630341451,2,25,15,2,1630138122,2,6.0,-9.0,-9.0,-9.0,4.0,1302923 -3232817,1630341920,2,39,0,1,1630138123,1,1.0,48.0,1.0,-9.0,4.0,1302924 -3232818,1630341459,2,22,0,1,1630138124,2,6.0,40.0,1.0,-9.0,4.0,1302925 -3232819,1630341516,2,46,0,1,1630138125,2,6.0,-9.0,-9.0,-9.0,4.0,1302926 -3232820,1630341517,2,16,2,2,1630138125,2,6.0,-9.0,-9.0,13.0,-9.0,1302926 -3232821,1630341564,2,54,0,1,1630138126,2,6.0,-9.0,-9.0,-9.0,4.0,1302927 -3232822,1630341565,2,17,2,2,1630138126,2,6.0,-9.0,-9.0,13.0,4.0,1302927 -3232823,1630341958,2,44,0,1,1630138127,1,3.0,-9.0,-9.0,15.0,3.0,1302928 -3232824,1630341768,2,37,0,1,1630138128,1,1.0,40.0,1.0,-9.0,4.0,1302929 -3232825,1630341766,2,37,1,2,1630138128,2,1.0,15.0,1.0,-9.0,4.0,1302929 -3232826,1630341769,2,13,2,3,1630138128,2,-9.0,-9.0,-9.0,10.0,-9.0,1302929 -3232827,1630341767,2,10,2,4,1630138128,1,-9.0,-9.0,-9.0,6.0,-9.0,1302929 -3232828,1630341403,2,45,0,1,1630138129,2,1.0,55.0,1.0,-9.0,4.0,1302930 -3232829,1630341404,2,55,1,2,1630138129,1,1.0,80.0,1.0,-9.0,4.0,1302930 -3232830,1630341340,1,82,0,1,1630138130,2,6.0,-9.0,-9.0,-9.0,4.0,1302931 -3232831,1630341407,2,61,0,1,1630138131,2,6.0,40.0,5.0,-9.0,4.0,1302932 -3232832,1630341408,2,38,2,2,1630138131,2,1.0,40.0,1.0,15.0,4.0,1302932 -3232833,1630341409,2,12,7,3,1630138131,1,-9.0,-9.0,-9.0,10.0,-9.0,1302932 -3232834,1630341481,2,38,0,1,1630138132,2,1.0,40.0,1.0,-9.0,4.0,1302933 -3232835,1630341482,2,18,2,2,1630138132,1,3.0,-9.0,-9.0,-9.0,4.0,1302933 -3232836,1630341956,2,52,0,1,1630138133,1,6.0,-9.0,-9.0,-9.0,4.0,1302934 -3232837,1630341750,2,62,0,1,1630138134,2,6.0,-9.0,-9.0,-9.0,4.0,1302935 -3232838,1630341751,2,40,2,2,1630138134,2,1.0,20.0,1.0,-9.0,4.0,1302935 -3232839,1630341752,2,5,7,3,1630138134,2,-9.0,-9.0,-9.0,2.0,-9.0,1302935 -3232840,1630341406,2,50,0,1,1630138135,1,6.0,-9.0,-9.0,-9.0,4.0,1302936 -3232841,1630341405,2,35,2,2,1630138135,2,6.0,-9.0,-9.0,-9.0,4.0,1302936 -3232842,1630341827,2,63,0,1,1630138136,2,6.0,-9.0,-9.0,-9.0,4.0,1302937 -3232843,1630341831,2,40,2,2,1630138136,2,1.0,40.0,1.0,-9.0,4.0,1302937 -3232844,1630341835,2,36,2,3,1630138136,1,3.0,45.0,4.0,-9.0,4.0,1302937 -3232845,1630341839,2,12,7,4,1630138136,2,-9.0,-9.0,-9.0,9.0,-9.0,1302937 -3232846,1630341234,2,38,0,1,1630138137,2,3.0,20.0,4.0,-9.0,4.0,1302938 -3232847,1630341237,2,18,2,2,1630138137,1,3.0,20.0,6.0,15.0,4.0,1302938 -3232848,1630341238,2,12,2,3,1630138137,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302938 -3232849,1630341235,2,7,2,4,1630138137,1,-9.0,-9.0,-9.0,4.0,-9.0,1302938 -3232850,1630341236,2,7,2,5,1630138137,1,-9.0,-9.0,-9.0,3.0,-9.0,1302938 -3232851,1630341239,2,5,2,6,1630138137,2,-9.0,-9.0,-9.0,3.0,-9.0,1302938 -3232852,1630341233,2,74,6,7,1630138137,2,6.0,-9.0,-9.0,-9.0,4.0,1302938 -3232853,1630341410,2,36,0,1,1630138138,2,6.0,-9.0,-9.0,-9.0,4.0,1302939 -3232854,1630341413,2,11,2,2,1630138138,2,-9.0,-9.0,-9.0,7.0,-9.0,1302939 -3232855,1630341412,2,6,2,3,1630138138,1,-9.0,-9.0,-9.0,2.0,-9.0,1302939 -3232856,1630341411,2,37,5,4,1630138138,2,2.0,35.0,1.0,-9.0,4.0,1302939 -3232857,1630341324,2,78,0,1,1630138139,2,6.0,-9.0,-9.0,-9.0,4.0,1302940 -3232858,1630341691,2,32,0,1,1630138140,2,3.0,-9.0,-9.0,-9.0,4.0,1302941 -3232859,1630341692,2,33,1,2,1630138140,1,1.0,45.0,4.0,-9.0,4.0,1302941 -3232860,1630341885,2,43,0,1,1630138141,2,1.0,40.0,1.0,-9.0,4.0,1302942 -3232861,1630341283,2,47,0,1,1630138142,1,3.0,-9.0,-9.0,-9.0,4.0,1302943 -3232862,1630341284,2,17,2,2,1630138142,2,6.0,-9.0,-9.0,13.0,2.0,1302943 -3232863,1630341282,2,11,2,3,1630138142,1,-9.0,-9.0,-9.0,7.0,-9.0,1302943 -3232864,1630341281,2,73,8,4,1630138142,2,6.0,-9.0,-9.0,-9.0,4.0,1302943 -3232865,1630341886,2,36,0,1,1630138143,2,6.0,-9.0,-9.0,-9.0,4.0,1302944 -3232866,1630341887,2,34,13,2,1630138143,1,6.0,-9.0,-9.0,-9.0,4.0,1302944 -3232867,1630341578,2,39,0,1,1630138144,2,1.0,40.0,1.0,-9.0,4.0,1302945 -3232868,1630341580,2,23,2,2,1630138144,1,6.0,-9.0,-9.0,-9.0,4.0,1302945 -3232869,1630341582,2,21,2,3,1630138144,1,6.0,-9.0,-9.0,15.0,4.0,1302945 -3232870,1630341584,2,19,2,4,1630138144,1,6.0,-9.0,-9.0,12.0,4.0,1302945 -3232871,1630341586,2,18,2,5,1630138144,1,6.0,-9.0,-9.0,-9.0,4.0,1302945 -3232872,1630341590,2,15,2,6,1630138144,2,-9.0,-9.0,-9.0,12.0,-9.0,1302945 -3232873,1630341592,2,13,2,7,1630138144,2,-9.0,-9.0,-9.0,9.0,-9.0,1302945 -3232874,1630341588,2,27,5,8,1630138144,1,6.0,-9.0,-9.0,-9.0,4.0,1302945 -3232875,1630341851,2,38,0,1,1630138145,2,1.0,35.0,3.0,-9.0,4.0,1302946 -3232876,1630341852,2,14,2,2,1630138145,1,-9.0,-9.0,-9.0,10.0,-9.0,1302946 -3232877,1630341853,2,12,2,3,1630138145,1,-9.0,-9.0,-9.0,8.0,-9.0,1302946 -3232878,1630341854,2,10,2,4,1630138145,2,-9.0,-9.0,-9.0,6.0,-9.0,1302946 -3232879,1630341596,2,50,0,1,1630138146,1,1.0,49.0,1.0,-9.0,4.0,1302947 -3232880,1630341593,2,49,1,2,1630138146,2,1.0,90.0,1.0,-9.0,4.0,1302947 -3232881,1630341594,2,18,2,3,1630138146,2,6.0,-9.0,-9.0,14.0,4.0,1302947 -3232882,1630341595,2,16,2,4,1630138146,1,6.0,-9.0,-9.0,12.0,-9.0,1302947 -3232883,1630341995,4,63,0,1,1630138147,2,6.0,-9.0,-9.0,-9.0,4.0,1302948 -3232884,1630341864,2,49,0,1,1630138148,2,1.0,50.0,1.0,-9.0,4.0,1302949 -3232885,1630341865,2,18,2,2,1630138148,2,3.0,-9.0,-9.0,14.0,4.0,1302949 -3232886,1630341381,4,52,0,1,1630138149,2,1.0,40.0,1.0,-9.0,4.0,1302950 -3232887,1630341379,1,55,1,2,1630138149,1,1.0,45.0,1.0,-9.0,4.0,1302950 -3232888,1630341380,4,23,2,3,1630138149,1,1.0,40.0,1.0,-9.0,4.0,1302950 -3232889,1630341382,4,17,2,4,1630138149,1,6.0,25.0,6.0,13.0,4.0,1302950 -3232890,1630341872,2,61,0,1,1630138150,2,6.0,-9.0,-9.0,-9.0,4.0,1302951 -3232891,1630341873,2,61,12,2,1630138150,1,6.0,-9.0,-9.0,-9.0,4.0,1302951 -3232892,1630341816,2,57,0,1,1630138151,2,6.0,-9.0,-9.0,-9.0,4.0,1302952 -3232893,1630341817,2,59,1,2,1630138151,1,6.0,-9.0,-9.0,-9.0,4.0,1302952 -3232894,1630341992,4,41,0,1,1630138152,1,1.0,37.0,1.0,16.0,4.0,1302953 -3232895,1630341342,1,61,0,1,1630138153,2,3.0,-9.0,-9.0,-9.0,4.0,1302954 -3232896,1630341343,1,63,5,2,1630138153,1,6.0,-9.0,-9.0,-9.0,2.0,1302954 -3232897,1630341483,2,43,0,1,1630138154,2,1.0,40.0,1.0,-9.0,4.0,1302955 -3232898,1630341484,2,43,1,2,1630138154,1,6.0,-9.0,-9.0,-9.0,4.0,1302955 -3232899,1630341485,2,14,2,3,1630138154,2,-9.0,-9.0,-9.0,11.0,-9.0,1302955 -3232900,1630341443,2,40,0,1,1630138155,1,2.0,25.0,1.0,15.0,4.0,1302956 -3232901,1630341442,2,40,1,2,1630138155,2,1.0,40.0,1.0,16.0,4.0,1302956 -3232902,1630341444,2,19,2,3,1630138155,1,6.0,25.0,5.0,15.0,4.0,1302956 -3232903,1630341548,2,46,0,1,1630138156,2,1.0,50.0,1.0,-9.0,4.0,1302957 -3232904,1630341598,2,56,0,1,1630138157,2,1.0,60.0,2.0,-9.0,4.0,1302958 -3232905,1630341599,2,58,5,2,1630138157,2,1.0,8.0,3.0,-9.0,4.0,1302958 -3232906,1630341893,2,35,0,1,1630138158,1,6.0,-9.0,-9.0,-9.0,4.0,1302959 -3232907,1630341894,2,10,2,2,1630138158,2,-9.0,-9.0,-9.0,7.0,-9.0,1302959 -3232908,1630341890,2,6,2,3,1630138158,1,-9.0,-9.0,-9.0,4.0,-9.0,1302959 -3232909,1630341891,2,5,2,4,1630138158,1,-9.0,-9.0,-9.0,2.0,-9.0,1302959 -3232910,1630341895,2,3,2,5,1630138158,2,-9.0,-9.0,-9.0,-9.0,-9.0,1302959 -3232911,1630341892,2,0,2,6,1630138158,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302959 -3232912,1630341888,2,54,10,7,1630138158,2,1.0,40.0,1.0,-9.0,4.0,1302959 -3232913,1630341889,2,29,13,8,1630138158,2,3.0,-9.0,-9.0,-9.0,4.0,1302959 -3232914,1630341938,2,42,0,1,1630138159,1,6.0,-9.0,-9.0,-9.0,4.0,1302960 -3232915,1630341939,2,30,10,2,1630138159,1,6.0,40.0,5.0,-9.0,4.0,1302960 -3232916,1630341341,1,78,0,1,1630138160,2,6.0,-9.0,-9.0,-9.0,4.0,1302961 -3232917,1630341225,2,73,0,1,1630138161,1,6.0,-9.0,-9.0,-9.0,2.0,1302962 -3232918,1630341222,2,74,1,2,1630138161,2,6.0,-9.0,-9.0,-9.0,4.0,1302962 -3232919,1630341224,2,18,7,3,1630138161,1,6.0,-9.0,-9.0,15.0,4.0,1302962 -3232920,1630341223,2,12,7,4,1630138161,1,-9.0,-9.0,-9.0,7.0,-9.0,1302962 -3232921,1630341705,2,63,0,1,1630138162,2,6.0,-9.0,-9.0,-9.0,4.0,1302963 -3232922,1630341497,2,42,0,1,1630138163,2,1.0,39.0,1.0,-9.0,4.0,1302964 -3232923,1630341498,2,22,2,2,1630138163,2,1.0,30.0,1.0,-9.0,4.0,1302964 -3232924,1630341499,2,19,2,3,1630138163,1,1.0,39.0,1.0,-9.0,4.0,1302964 -3232925,1630341500,2,17,2,4,1630138163,2,3.0,-9.0,-9.0,14.0,4.0,1302964 -3232926,1630341502,4,4,7,5,1630138163,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302964 -3232927,1630341501,4,3,7,6,1630138163,2,-9.0,-9.0,-9.0,1.0,-9.0,1302964 -3232928,1630341503,4,22,9,7,1630138163,1,1.0,35.0,4.0,14.0,4.0,1302964 -3232929,1630341679,2,23,0,1,1630138164,2,6.0,-9.0,-9.0,-9.0,4.0,1302965 -3232930,1630341680,2,21,5,2,1630138164,2,6.0,-9.0,-9.0,-9.0,4.0,1302965 -3232931,1630341681,2,4,10,3,1630138164,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302965 -3232932,1630341682,2,1,10,4,1630138164,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302965 -3232933,1630341901,2,54,0,1,1630138165,2,1.0,40.0,1.0,-9.0,4.0,1302966 -3232934,1630341902,2,56,1,2,1630138165,1,1.0,40.0,1.0,-9.0,2.0,1302966 -3232935,1630341846,2,53,0,1,1630138166,2,1.0,27.0,6.0,-9.0,4.0,1302967 -3232936,1630341849,2,13,2,2,1630138166,2,-9.0,-9.0,-9.0,10.0,-9.0,1302967 -3232937,1630341847,2,60,5,3,1630138166,1,6.0,-9.0,-9.0,-9.0,4.0,1302967 -3232938,1630341848,2,57,5,4,1630138166,1,6.0,-9.0,-9.0,-9.0,4.0,1302967 -3232939,1630341376,2,65,0,1,1630138167,1,1.0,37.0,3.0,-9.0,4.0,1302968 -3232940,1630341375,1,63,12,2,1630138167,1,1.0,40.0,1.0,-9.0,4.0,1302968 -3232941,1630341471,2,71,0,1,1630138168,1,6.0,-9.0,-9.0,-9.0,4.0,1302969 -3232942,1630341470,2,63,1,2,1630138168,2,1.0,40.0,1.0,-9.0,4.0,1302969 -3232943,1630341327,2,53,0,1,1630138169,2,1.0,40.0,2.0,-9.0,4.0,1302970 -3232944,1630341326,2,70,6,2,1630138169,2,6.0,-9.0,-9.0,-9.0,4.0,1302970 -3232945,1630341328,2,54,13,3,1630138169,1,3.0,-9.0,-9.0,-9.0,4.0,1302970 -3232946,1630341294,2,94,0,1,1630138170,2,6.0,-9.0,-9.0,-9.0,4.0,1302971 -3232947,1630341811,2,58,0,1,1630138171,2,6.0,-9.0,-9.0,-9.0,4.0,1302972 -3232948,1630341813,2,69,1,2,1630138171,1,6.0,-9.0,-9.0,-9.0,2.0,1302972 -3232949,1630341812,2,18,2,3,1630138171,2,6.0,25.0,6.0,15.0,4.0,1302972 -3232950,1630341353,1,59,0,1,1630138172,1,1.0,40.0,1.0,-9.0,4.0,1302973 -3232951,1630341352,1,44,1,2,1630138172,2,1.0,50.0,1.0,-9.0,4.0,1302973 -3232952,1630341662,2,20,0,1,1630138173,2,6.0,-9.0,-9.0,-9.0,4.0,1302974 -3232953,1630341663,2,2,2,2,1630138173,1,-9.0,-9.0,-9.0,-9.0,-9.0,1302974 -3232954,1630341977,2,22,0,1,1630138174,1,1.0,20.0,6.0,-9.0,4.0,1302975 -3232955,1630341855,2,31,0,1,1630138175,2,6.0,-9.0,-9.0,-9.0,4.0,1302976 -3232956,1630341263,2,65,0,1,1630138176,2,6.0,-9.0,-9.0,-9.0,4.0,1302977 -3232957,1630341265,2,45,2,2,1630138176,1,6.0,-9.0,-9.0,-9.0,4.0,1302977 -3232958,1630341264,2,22,7,3,1630138176,2,1.0,20.0,1.0,15.0,4.0,1302977 -3232959,1630341306,2,82,0,1,1630138177,2,6.0,-9.0,-9.0,-9.0,4.0,1302978 -3232960,1630341307,2,49,2,2,1630138177,2,1.0,30.0,1.0,-9.0,4.0,1302978 -3232961,1630341308,2,21,7,3,1630138177,1,3.0,16.0,5.0,-9.0,4.0,1302978 -3232962,1630341927,2,23,0,1,1630138178,1,6.0,40.0,1.0,15.0,4.0,1302979 -3232963,1630341928,2,62,6,2,1630138178,1,1.0,40.0,1.0,-9.0,4.0,1302979 -3232964,1630341378,2,43,0,1,1630138179,1,6.0,-9.0,-9.0,-9.0,2.0,1302980 -3232965,1630341377,1,64,1,2,1630138179,1,1.0,32.0,1.0,-9.0,4.0,1302980 -3232966,1630341367,1,22,0,1,1630138180,1,3.0,-9.0,-9.0,15.0,4.0,1302981 -3232967,1630341706,2,20,0,1,1630138181,2,1.0,40.0,1.0,-9.0,4.0,1302982 -3232968,1630341325,2,94,0,1,1630138182,2,6.0,-9.0,-9.0,-9.0,4.0,1302983 -3232969,1630341993,4,50,0,1,1630138183,2,6.0,-9.0,-9.0,15.0,4.0,1302984 -3232970,1630341707,2,47,0,1,1630138184,2,1.0,40.0,1.0,-9.0,4.0,1302985 -3232971,1630341708,2,14,2,2,1630138184,2,-9.0,-9.0,-9.0,12.0,-9.0,1302985 -3232972,1630341248,2,64,0,1,1630138185,1,6.0,-9.0,-9.0,-9.0,2.0,1302986 -3232973,1630341246,2,67,1,2,1630138185,2,3.0,40.0,2.0,-9.0,4.0,1302986 -3232974,1630341957,2,20,0,1,1630138186,1,1.0,40.0,1.0,-9.0,4.0,1302987 -3232975,1630341576,2,63,0,1,1630138187,1,6.0,20.0,6.0,-9.0,4.0,1302988 -3232976,1630341575,2,59,1,2,1630138187,2,6.0,-9.0,-9.0,-9.0,4.0,1302988 -3232977,1630341569,2,45,0,1,1630138188,2,1.0,24.0,6.0,-9.0,4.0,1302989 -3232978,1630341572,2,16,2,2,1630138188,2,6.0,-9.0,-9.0,13.0,-9.0,1302989 -3232979,1630341571,2,33,13,3,1630138188,1,6.0,-9.0,-9.0,-9.0,4.0,1302989 -3232980,1630341921,2,53,0,1,1630138189,1,6.0,-9.0,-9.0,-9.0,4.0,1302990 -3232981,1630341922,2,60,10,2,1630138189,1,6.0,-9.0,-9.0,-9.0,2.0,1302990 -3232982,1630341923,2,58,10,3,1630138189,1,6.0,-9.0,-9.0,-9.0,2.0,1302990 -3232983,1630341254,2,77,0,1,1630138190,2,6.0,-9.0,-9.0,-9.0,3.0,1302991 -3232984,1630341255,2,58,2,2,1630138190,1,3.0,-9.0,-9.0,-9.0,4.0,1302991 -3232985,1630341990,4,52,0,1,1630138191,2,1.0,25.0,1.0,-9.0,4.0,1302992 -3232986,1630341988,4,63,1,2,1630138191,1,6.0,10.0,6.0,-9.0,4.0,1302992 -3232987,1630341989,4,22,2,3,1630138191,1,3.0,24.0,3.0,-9.0,4.0,1302992 -3232988,1630341991,4,16,2,4,1630138191,2,6.0,-9.0,-9.0,13.0,-9.0,1302992 -3232989,1630341924,2,60,0,1,1630138192,1,6.0,-9.0,-9.0,-9.0,4.0,1302993 -3232990,1630341302,2,76,0,1,1630138193,2,6.0,-9.0,-9.0,-9.0,4.0,1302994 -3232991,1630341305,2,60,2,2,1630138193,1,6.0,-9.0,-9.0,-9.0,4.0,1302994 -3232992,1630341303,2,48,2,3,1630138193,2,2.0,20.0,2.0,-9.0,4.0,1302994 -3232993,1630341304,2,59,9,4,1630138193,2,6.0,-9.0,-9.0,-9.0,4.0,1302994 -3232994,1630341994,4,60,0,1,1630138194,2,1.0,49.0,1.0,-9.0,4.0,1302995 -3232995,1630341810,2,75,0,1,1630138195,1,6.0,-9.0,-9.0,-9.0,2.0,1302996 -3232996,1630341809,2,26,10,2,1630138195,2,1.0,20.0,4.0,-9.0,4.0,1302996 -3232997,1630341549,2,37,0,1,1630138196,2,6.0,-9.0,-9.0,-9.0,4.0,1302997 -3232998,1630341550,2,13,2,2,1630138196,2,-9.0,-9.0,-9.0,9.0,-9.0,1302997 -3232999,1630341971,2,58,0,1,1630138197,1,6.0,-9.0,-9.0,-9.0,4.0,1302998 -3233000,1630341280,2,61,0,1,1630138198,1,1.0,40.0,1.0,-9.0,4.0,1302999 -3233001,1630341279,2,73,15,2,1630138198,2,6.0,-9.0,-9.0,-9.0,4.0,1302999 -3233002,1630341973,2,56,0,1,1630138199,1,6.0,-9.0,-9.0,-9.0,4.0,1303000 -3233003,1630341974,2,23,2,2,1630138199,1,6.0,-9.0,-9.0,-9.0,4.0,1303000 -3233004,1630341975,2,23,2,3,1630138199,1,6.0,-9.0,-9.0,-9.0,4.0,1303000 -3233005,1630341739,2,59,0,1,1630138200,2,6.0,-9.0,-9.0,-9.0,4.0,1303001 -3233006,1630341744,2,36,2,2,1630138200,1,1.0,40.0,6.0,-9.0,4.0,1303001 -3233007,1630341745,2,13,3,3,1630138200,2,-9.0,-9.0,-9.0,9.0,-9.0,1303001 -3233008,1630341740,2,12,3,4,1630138200,1,-9.0,-9.0,-9.0,7.0,-9.0,1303001 -3233009,1630341741,2,11,3,5,1630138200,1,-9.0,-9.0,-9.0,7.0,-9.0,1303001 -3233010,1630341742,2,10,3,6,1630138200,1,-9.0,-9.0,-9.0,-9.0,-9.0,1303001 -3233011,1630341743,2,8,7,7,1630138200,1,-9.0,-9.0,-9.0,5.0,-9.0,1303001 -3233012,1630341226,2,65,0,1,1630138201,2,6.0,-9.0,-9.0,-9.0,4.0,1303002 -3233013,1630341227,2,64,5,2,1630138201,1,6.0,-9.0,-9.0,-9.0,2.0,1303002 -3233014,1630341228,2,65,11,3,1630138201,1,6.0,-9.0,-9.0,-9.0,4.0,1303002 -3233015,1630341524,2,64,0,1,1630138202,1,6.0,-9.0,-9.0,-9.0,4.0,1303003 -3233016,1630341521,2,64,1,2,1630138202,2,6.0,-9.0,-9.0,-9.0,4.0,1303003 -3233017,1630341525,2,41,2,3,1630138202,1,1.0,20.0,3.0,-9.0,4.0,1303003 -3233018,1630341522,2,32,2,4,1630138202,2,1.0,8.0,1.0,-9.0,4.0,1303003 -3233019,1630341526,2,18,3,5,1630138202,1,6.0,-9.0,-9.0,14.0,4.0,1303003 -3233020,1630341523,2,16,3,6,1630138202,1,6.0,-9.0,-9.0,11.0,-9.0,1303003 -3233021,1630341527,2,14,3,7,1630138202,2,-9.0,-9.0,-9.0,11.0,-9.0,1303003 -3233022,1630341528,2,13,3,8,1630138202,2,-9.0,-9.0,-9.0,8.0,-9.0,1303003 -3233023,1630341529,2,10,7,9,1630138202,2,-9.0,-9.0,-9.0,6.0,-9.0,1303003 -3233024,1630341933,2,63,0,1,1630138203,1,1.0,40.0,1.0,-9.0,3.0,1303004 -3233025,1630341940,2,42,0,1,1630138204,1,1.0,45.0,1.0,-9.0,4.0,1303005 -3233026,1630341392,2,38,0,1,1630138205,2,6.0,-9.0,-9.0,-9.0,4.0,1303006 -3233027,1630341393,2,17,2,2,1630138205,1,6.0,-9.0,-9.0,13.0,4.0,1303006 -3233028,1630341397,2,14,2,3,1630138205,2,-9.0,-9.0,-9.0,11.0,-9.0,1303006 -3233029,1630341394,2,10,2,4,1630138205,1,-9.0,-9.0,-9.0,7.0,-9.0,1303006 -3233030,1630341398,2,8,2,5,1630138205,2,-9.0,-9.0,-9.0,4.0,-9.0,1303006 -3233031,1630341399,2,6,2,6,1630138205,2,-9.0,-9.0,-9.0,3.0,-9.0,1303006 -3233032,1630341395,2,4,2,7,1630138205,1,-9.0,-9.0,-9.0,1.0,-9.0,1303006 -3233033,1630341396,2,39,5,8,1630138205,1,3.0,-9.0,-9.0,-9.0,4.0,1303006 -3233034,1630341535,2,43,0,1,1630138206,1,1.0,40.0,1.0,-9.0,4.0,1303007 -3233035,1630341534,2,18,2,2,1630138206,2,6.0,-9.0,-9.0,14.0,4.0,1303007 -3233036,1630341429,2,57,0,1,1630138207,2,1.0,15.0,6.0,-9.0,4.0,1303008 -3233037,1630341430,2,60,1,2,1630138207,1,6.0,-9.0,-9.0,-9.0,4.0,1303008 -3233038,1630341431,2,23,2,3,1630138207,1,1.0,15.0,5.0,15.0,4.0,1303008 -3233039,1630341818,2,22,0,1,1630138208,2,6.0,-9.0,-9.0,-9.0,4.0,1303009 -3233040,1630341820,2,3,2,2,1630138208,2,-9.0,-9.0,-9.0,1.0,-9.0,1303009 -3233041,1630341821,2,2,2,3,1630138208,2,-9.0,-9.0,-9.0,-9.0,-9.0,1303009 -3233042,1630341819,2,0,2,4,1630138208,1,-9.0,-9.0,-9.0,-9.0,-9.0,1303009 -3233043,1630341418,2,39,0,1,1630138209,1,1.0,35.0,6.0,-9.0,4.0,1303010 -3233044,1630341414,2,37,1,2,1630138209,2,1.0,40.0,1.0,-9.0,4.0,1303010 -3233045,1630341415,2,13,2,3,1630138209,1,-9.0,-9.0,-9.0,10.0,-9.0,1303010 -3233046,1630341416,2,11,2,4,1630138209,1,-9.0,-9.0,-9.0,7.0,-9.0,1303010 -3233047,1630341417,2,9,2,5,1630138209,1,-9.0,-9.0,-9.0,5.0,-9.0,1303010 -3233048,1630341421,2,6,2,6,1630138209,2,-9.0,-9.0,-9.0,2.0,-9.0,1303010 -3233049,1630341419,2,20,4,7,1630138209,1,3.0,-9.0,-9.0,-9.0,4.0,1303010 -3233050,1630341420,2,18,4,8,1630138209,1,3.0,20.0,5.0,15.0,4.0,1303010 -3233051,1630341764,2,52,0,1,1630138210,2,1.0,8.0,6.0,-9.0,4.0,1303011 -3233052,1630341765,2,60,15,2,1630138210,1,6.0,-9.0,-9.0,-9.0,4.0,1303011 -3233053,1630341775,2,63,0,1,1630138211,2,6.0,-9.0,-9.0,-9.0,4.0,1303012 -3233054,1630341776,2,15,10,2,1630138211,2,-9.0,-9.0,-9.0,12.0,-9.0,1303012 -3233055,1630341905,2,47,0,1,1630138212,1,6.0,-9.0,-9.0,-9.0,4.0,1303013 -3233056,1630341903,2,17,2,2,1630138212,1,6.0,-9.0,-9.0,13.0,4.0,1303013 -3233057,1630341904,2,16,2,3,1630138212,1,6.0,-9.0,-9.0,12.0,-9.0,1303013 -3233058,1630341906,2,70,15,4,1630138212,1,6.0,-9.0,-9.0,-9.0,2.0,1303013 -3233059,1630341271,2,78,0,1,1630138213,2,1.0,42.0,1.0,-9.0,4.0,1303014 -3233060,1630341900,2,23,0,1,1630138214,2,6.0,-9.0,-9.0,-9.0,4.0,1303015 -3233061,1630341386,2,45,0,1,1630138215,2,1.0,40.0,1.0,-9.0,4.0,1303016 -3233062,1630341387,2,22,2,2,1630138215,1,3.0,-9.0,-9.0,-9.0,4.0,1303016 -3233063,1630341672,2,46,0,1,1630138216,2,1.0,40.0,5.0,-9.0,4.0,1303017 -3233064,1630341674,2,29,2,2,1630138216,2,6.0,-9.0,-9.0,-9.0,4.0,1303017 -3233065,1630341676,2,9,2,3,1630138216,1,-9.0,-9.0,-9.0,6.0,-9.0,1303017 -3233066,1630341678,2,6,2,4,1630138216,1,-9.0,-9.0,-9.0,3.0,-9.0,1303017 -3233067,1630341877,2,40,0,1,1630138217,2,6.0,-9.0,-9.0,-9.0,4.0,1303018 -3233068,1630341878,2,14,2,2,1630138217,1,-9.0,-9.0,-9.0,10.0,-9.0,1303018 -3233069,1630341937,2,35,0,1,1630138218,1,1.0,40.0,4.0,-9.0,4.0,1303019 -3233070,1630341683,2,37,0,1,1630138219,2,1.0,40.0,1.0,-9.0,4.0,1303020 -3233071,1630341684,2,19,2,2,1630138219,2,3.0,-9.0,-9.0,-9.0,4.0,1303020 -3233072,1630341687,2,18,2,3,1630138219,1,6.0,-9.0,-9.0,-9.0,4.0,1303020 -3233073,1630341685,2,16,2,4,1630138219,1,6.0,-9.0,-9.0,13.0,-9.0,1303020 -3233074,1630341688,2,13,2,5,1630138219,2,-9.0,-9.0,-9.0,9.0,-9.0,1303020 -3233075,1630341689,2,1,2,6,1630138219,2,-9.0,-9.0,-9.0,-9.0,-9.0,1303020 -3233076,1630341686,2,2,7,7,1630138219,1,-9.0,-9.0,-9.0,-9.0,-9.0,1303020 -3233077,1630341690,2,0,7,8,1630138219,2,-9.0,-9.0,-9.0,-9.0,-9.0,1303020 -3233078,1630341606,2,46,0,1,1630138220,2,1.0,40.0,5.0,-9.0,4.0,1303021 -3233079,1630341607,2,28,10,2,1630138220,1,6.0,-9.0,-9.0,-9.0,4.0,1303021 -3233080,1630341608,2,33,12,3,1630138220,1,6.0,-9.0,-9.0,-9.0,4.0,1303021 -3233081,1630341815,2,60,0,1,1630138221,1,1.0,48.0,1.0,-9.0,4.0,1303022 -3233082,1630341814,2,60,1,2,1630138221,2,6.0,-9.0,-9.0,-9.0,4.0,1303022 -3233083,1630341986,2,67,0,1,1630138222,1,6.0,-9.0,-9.0,-9.0,2.0,1303023 -3233084,1630341644,2,27,0,1,1630138223,1,6.0,-9.0,-9.0,16.0,4.0,1303024 -3233085,1630341643,2,25,1,2,1630138223,2,1.0,40.0,1.0,-9.0,4.0,1303024 -3233086,1630341982,2,65,0,1,1630138224,1,6.0,-9.0,-9.0,-9.0,2.0,1303025 -3233087,1630341385,2,60,0,1,1630138225,2,6.0,-9.0,-9.0,-9.0,4.0,1303026 -3233088,1630341912,2,45,0,1,1630138226,1,1.0,85.0,1.0,-9.0,4.0,1303027 -3233089,1630341913,2,14,2,2,1630138226,2,-9.0,-9.0,-9.0,9.0,-9.0,1303027 -3233090,1630341911,2,10,2,3,1630138226,1,-9.0,-9.0,-9.0,7.0,-9.0,1303027 -3233091,1630341914,2,8,2,4,1630138226,2,-9.0,-9.0,-9.0,4.0,-9.0,1303027 -3233092,1630341321,2,78,0,1,1630138227,2,6.0,-9.0,-9.0,-9.0,4.0,1303028 -3233093,1630341925,2,51,0,1,1630138228,1,6.0,-9.0,-9.0,-9.0,4.0,1303029 -3233094,1630341232,2,84,0,1,1630138229,1,6.0,-9.0,-9.0,-9.0,2.0,1303030 -3233095,1630341229,2,77,1,2,1630138229,2,6.0,-9.0,-9.0,-9.0,4.0,1303030 -3233096,1630341230,2,57,2,3,1630138229,1,6.0,-9.0,-9.0,-9.0,4.0,1303030 -3233097,1630341231,2,45,2,4,1630138229,1,6.0,-9.0,-9.0,-9.0,4.0,1303030 -3233098,1630341383,1,50,0,1,1630138230,1,1.0,60.0,1.0,-9.0,4.0,1303031 -3233099,1630341996,4,77,0,1,1630138231,1,6.0,-9.0,-9.0,-9.0,4.0,1303032 -3233100,1630341557,2,47,0,1,1630138232,2,6.0,-9.0,-9.0,-9.0,2.0,1303033 -3233101,1630341559,2,15,2,2,1630138232,2,-9.0,-9.0,-9.0,11.0,-9.0,1303033 -3233102,1630341558,2,49,12,3,1630138232,1,1.0,40.0,1.0,-9.0,4.0,1303033 -3233103,1630341300,2,73,0,1,1630138233,2,6.0,-9.0,-9.0,-9.0,4.0,1303034 -3233104,1630341840,2,37,0,1,1630138234,2,1.0,40.0,1.0,-9.0,4.0,1303035 -3233105,1630341842,2,42,1,2,1630138234,1,3.0,-9.0,-9.0,-9.0,4.0,1303035 -3233106,1630341843,2,18,2,3,1630138234,1,6.0,-9.0,-9.0,-9.0,4.0,1303035 -3233107,1630341844,2,12,2,4,1630138234,2,-9.0,-9.0,-9.0,10.0,-9.0,1303035 -3233108,1630341841,2,6,2,5,1630138234,1,-9.0,-9.0,-9.0,3.0,-9.0,1303035 -3233109,1630341422,2,36,0,1,1630138235,2,6.0,-9.0,-9.0,-9.0,4.0,1303036 -3233110,1630341423,2,16,2,2,1630138235,2,6.0,-9.0,-9.0,13.0,-9.0,1303036 -3233111,1630341424,2,9,2,3,1630138235,2,-9.0,-9.0,-9.0,6.0,-9.0,1303036 -3233112,1630341365,1,62,0,1,1630138236,1,1.0,40.0,1.0,16.0,4.0,1303037 -3233113,1630341366,1,38,12,2,1630138236,1,6.0,-9.0,-9.0,-9.0,4.0,1303037 -3233114,1630342420,1,36,0,1,1630138237,1,1.0,45.0,1.0,-9.0,4.0,1303038 -3233115,1630342419,1,30,1,2,1630138237,2,6.0,-9.0,-9.0,-9.0,4.0,1303038 -3233116,1630342422,1,6,2,3,1630138237,1,-9.0,-9.0,-9.0,2.0,-9.0,1303038 -3233117,1630342423,1,3,2,4,1630138237,1,-9.0,-9.0,-9.0,1.0,-9.0,1303038 -3233118,1630342421,1,0,2,5,1630138237,2,-9.0,-9.0,-9.0,-9.0,-9.0,1303038 -3233133,1630342668,2,43,0,1,1630138243,2,1.0,30.0,1.0,-9.0,4.0,1303044 -3233134,1630342669,2,50,1,2,1630138243,1,6.0,-9.0,-9.0,-9.0,4.0,1303044 -3233135,1630342671,2,16,2,3,1630138243,2,1.0,10.0,6.0,12.0,-9.0,1303044 -3233136,1630342670,2,31,4,4,1630138243,1,1.0,32.0,1.0,-9.0,4.0,1303044 -3233137,1630342869,2,38,0,1,1630138244,2,1.0,40.0,1.0,-9.0,4.0,1303045 -3233138,1630342873,2,38,1,2,1630138244,1,1.0,40.0,1.0,-9.0,4.0,1303045 -3233139,1630342871,2,6,2,3,1630138244,1,-9.0,-9.0,-9.0,3.0,-9.0,1303045 -3233140,1630342875,2,2,2,4,1630138244,2,-9.0,-9.0,-9.0,-9.0,-9.0,1303045 -3233145,1630342777,2,43,0,1,1630138246,2,1.0,40.0,1.0,-9.0,4.0,1303047 -3233146,1630342780,2,47,1,2,1630138246,1,1.0,40.0,1.0,-9.0,4.0,1303047 -3233147,1630342783,2,15,2,3,1630138246,2,-9.0,-9.0,-9.0,12.0,-9.0,1303047 -3233148,1630342786,2,9,2,4,1630138246,2,-9.0,-9.0,-9.0,5.0,-9.0,1303047 -3233153,1630342390,1,29,0,1,1630138248,1,1.0,45.0,1.0,-9.0,4.0,1303049 -3233154,1630342384,1,29,1,2,1630138248,2,1.0,40.0,1.0,-9.0,4.0,1303049 -3233155,1630342393,1,0,2,3,1630138248,1,-9.0,-9.0,-9.0,-9.0,-9.0,1303049 -3233156,1630342387,1,22,5,4,1630138248,2,1.0,40.0,1.0,-9.0,4.0,1303049 -3233157,1630342391,1,29,0,1,1630138249,1,1.0,45.0,1.0,-9.0,4.0,1303050 -3233158,1630342385,1,29,1,2,1630138249,2,1.0,40.0,1.0,-9.0,4.0,1303050 -3233159,1630342394,1,0,2,3,1630138249,1,-9.0,-9.0,-9.0,-9.0,-9.0,1303050 -3233160,1630342388,1,22,5,4,1630138249,2,1.0,40.0,1.0,-9.0,4.0,1303050 -3233187,1630342462,1,43,0,1,1630138262,1,1.0,40.0,1.0,-9.0,4.0,1303063 -3233188,1630342471,1,49,13,2,1630138262,1,1.0,35.0,4.0,-9.0,2.0,1303063 -3233191,1630342544,2,31,0,1,1630138264,1,1.0,40.0,1.0,-9.0,4.0,1303065 -3233192,1630342542,2,30,1,2,1630138264,2,1.0,40.0,1.0,-9.0,4.0,1303065 -3233193,1630342545,2,11,2,3,1630138264,2,-9.0,-9.0,-9.0,8.0,-9.0,1303065 -3233194,1630342546,2,7,2,4,1630138264,2,-9.0,-9.0,-9.0,4.0,-9.0,1303065 -3233195,1630342543,2,4,2,5,1630138264,1,-9.0,-9.0,-9.0,1.0,-9.0,1303065 -3233196,1630342598,2,39,0,1,1630138265,1,1.0,40.0,1.0,-9.0,4.0,1303066 -3233197,1630342599,2,13,2,2,1630138265,2,-9.0,-9.0,-9.0,9.0,-9.0,1303066 -3233198,1630342595,2,19,4,3,1630138265,2,3.0,-9.0,-9.0,-9.0,4.0,1303066 -3233199,1630342597,2,15,4,4,1630138265,1,-9.0,-9.0,-9.0,13.0,-9.0,1303066 -3233200,1630342596,2,39,13,5,1630138265,2,1.0,21.0,1.0,-9.0,4.0,1303066 -3233228,1630342445,1,38,0,1,1630138273,1,1.0,40.0,1.0,-9.0,3.0,1303074 -3233229,1630342451,4,37,1,2,1630138273,2,1.0,25.0,1.0,-9.0,4.0,1303074 -3233230,1630342447,4,6,2,3,1630138273,1,-9.0,-9.0,-9.0,3.0,-9.0,1303074 -3233231,1630342449,4,4,2,4,1630138273,1,-9.0,-9.0,-9.0,1.0,-9.0,1303074 -3233235,1630342735,2,42,0,1,1630138275,1,1.0,50.0,1.0,-9.0,4.0,1303076 -3233236,1630342732,2,44,1,2,1630138275,2,1.0,50.0,1.0,-9.0,4.0,1303076 -3233237,1630342738,2,15,2,3,1630138275,2,-9.0,-9.0,-9.0,12.0,-9.0,1303076 -3233245,1630342922,2,40,0,1,1630138279,1,3.0,-9.0,-9.0,-9.0,4.0,1303080 -3233246,1630342867,2,31,0,1,1630138280,2,6.0,-9.0,-9.0,-9.0,4.0,1303081 -3233281,1630342605,2,48,0,1,1630138290,1,1.0,35.0,1.0,-9.0,2.0,1303091 -3233282,1630342602,2,48,1,2,1630138290,2,1.0,40.0,4.0,-9.0,4.0,1303091 -3233283,1630342603,2,16,4,3,1630138290,1,6.0,-9.0,-9.0,13.0,-9.0,1303091 -3233284,1630342604,2,16,4,4,1630138290,1,6.0,-9.0,-9.0,13.0,-9.0,1303091 -3233318,1630342512,2,60,0,1,1630138302,1,1.0,45.0,1.0,-9.0,4.0,1303103 -3233319,1630342511,2,60,1,2,1630138302,2,1.0,40.0,1.0,-9.0,4.0,1303103 -3233343,1630342863,2,60,0,1,1630138315,2,6.0,-9.0,-9.0,-9.0,4.0,1303116 -3233344,1630342864,2,64,5,2,1630138315,1,6.0,-9.0,-9.0,-9.0,2.0,1303116 -3233345,1630342865,2,61,11,3,1630138315,1,6.0,-9.0,-9.0,-9.0,4.0,1303116 -3233346,1630342857,2,61,0,1,1630138316,2,6.0,-9.0,-9.0,-9.0,4.0,1303117 -3233347,1630342858,2,23,2,2,1630138316,2,6.0,-9.0,-9.0,16.0,4.0,1303117 -3233368,1630342799,2,45,0,1,1630138323,2,1.0,60.0,1.0,16.0,4.0,1303124 -3233369,1630342803,2,24,2,2,1630138323,1,6.0,-9.0,-9.0,-9.0,4.0,1303124 -3233370,1630342801,2,19,2,3,1630138323,2,1.0,40.0,1.0,15.0,4.0,1303124 -3233377,1630342800,2,45,0,1,1630138326,2,1.0,60.0,1.0,16.0,4.0,1303127 -3233378,1630342804,2,24,2,2,1630138326,1,6.0,-9.0,-9.0,-9.0,4.0,1303127 -3233379,1630342802,2,19,2,3,1630138326,2,1.0,40.0,1.0,15.0,4.0,1303127 -3233386,1630342621,2,50,0,1,1630138329,2,1.0,36.0,1.0,-9.0,4.0,1303130 -3233387,1630342622,2,54,1,2,1630138329,1,1.0,40.0,1.0,-9.0,4.0,1303130 -3233390,1630342286,1,48,0,1,1630138331,2,2.0,55.0,4.0,-9.0,4.0,1303132 -3233391,1630342289,3,29,12,2,1630138331,1,1.0,38.0,1.0,-9.0,4.0,1303132 -3233392,1630342287,1,48,0,1,1630138332,2,2.0,55.0,4.0,-9.0,4.0,1303133 -3233393,1630342290,3,29,12,2,1630138332,1,1.0,38.0,1.0,-9.0,4.0,1303133 -3233395,1630342845,2,49,0,1,1630138334,2,6.0,-9.0,-9.0,-9.0,4.0,1303135 -3233398,1630342100,2,65,0,1,1630138337,2,6.0,-9.0,-9.0,-9.0,4.0,1303138 -3233399,1630342102,2,66,1,2,1630138337,1,6.0,-9.0,-9.0,-9.0,2.0,1303138 -3233400,1630342103,2,67,5,3,1630138337,1,6.0,-9.0,-9.0,-9.0,2.0,1303138 -3233401,1630342101,2,57,5,4,1630138337,1,6.0,-9.0,-9.0,-9.0,4.0,1303138 -3233415,1630342242,1,69,0,1,1630138342,2,6.0,-9.0,-9.0,-9.0,4.0,1303143 -3233420,1630342250,1,68,0,1,1630138345,2,6.0,25.0,6.0,-9.0,4.0,1303146 -3233427,1630342425,1,66,0,1,1630138348,1,1.0,25.0,1.0,-9.0,4.0,1303149 -3233428,1630342424,1,56,1,2,1630138348,2,6.0,-9.0,-9.0,-9.0,4.0,1303149 -3233434,1630342113,2,70,0,1,1630138350,1,1.0,40.0,1.0,-9.0,4.0,1303151 -3233435,1630342105,2,68,1,2,1630138350,2,6.0,-9.0,-9.0,-9.0,4.0,1303151 -3233436,1630342107,2,44,2,3,1630138350,2,1.0,40.0,1.0,-9.0,4.0,1303151 -3233437,1630342109,2,39,2,4,1630138350,2,6.0,-9.0,-9.0,-9.0,4.0,1303151 -3233438,1630342111,2,36,2,5,1630138350,2,6.0,-9.0,-9.0,-9.0,4.0,1303151 -3233447,1630342124,2,70,0,1,1630138353,1,1.0,5.0,4.0,-9.0,4.0,1303154 -3233448,1630342120,2,71,1,2,1630138353,2,6.0,30.0,6.0,-9.0,4.0,1303154 -3233449,1630342122,2,36,2,3,1630138353,1,1.0,40.0,5.0,15.0,4.0,1303154 -3233466,1630342163,2,68,0,1,1630138360,2,2.0,25.0,1.0,-9.0,4.0,1303161 -3233467,1630342166,2,47,2,2,1630138360,2,1.0,60.0,1.0,-9.0,4.0,1303161 -3233477,1630342267,1,82,0,1,1630138367,2,6.0,-9.0,-9.0,-9.0,4.0,1303168 -3233479,1630342046,2,74,0,1,1630138369,2,6.0,-9.0,-9.0,-9.0,4.0,1303170 -3233480,1630342047,2,93,6,2,1630138369,2,6.0,-9.0,-9.0,-9.0,4.0,1303170 -3233491,1630342140,2,82,0,1,1630138374,2,6.0,-9.0,-9.0,-9.0,4.0,1303175 -3233492,1630342142,2,49,2,2,1630138374,2,1.0,30.0,1.0,-9.0,4.0,1303175 -3233493,1630342144,2,21,7,3,1630138374,1,3.0,16.0,5.0,-9.0,4.0,1303175 -3233496,1630342117,2,70,0,1,1630138376,2,1.0,45.0,1.0,-9.0,4.0,1303177 -3233497,1630342118,2,25,7,2,1630138376,1,1.0,4.0,4.0,-9.0,4.0,1303177 -3233498,1630342119,2,22,7,3,1630138376,1,1.0,24.0,6.0,-9.0,4.0,1303177 -3233505,1630342957,1,73,0,1,1630138380,1,6.0,-9.0,-9.0,-9.0,4.0,1303181 -3233506,1630342949,2,67,0,1,1630138381,1,6.0,-9.0,-9.0,-9.0,4.0,1303182 -3233512,1630342028,2,88,0,1,1630138385,1,6.0,-9.0,-9.0,-9.0,4.0,1303186 -3233513,1630342027,2,81,1,2,1630138385,2,6.0,-9.0,-9.0,-9.0,4.0,1303186 -3233517,1630342285,1,65,0,1,1630138387,1,6.0,-9.0,-9.0,-9.0,4.0,1303188 -3233518,1630342283,1,63,1,2,1630138387,2,6.0,-9.0,-9.0,-9.0,4.0,1303188 -3233519,1630342284,1,29,2,3,1630138387,1,1.0,24.0,1.0,16.0,4.0,1303188 -3233537,1630342199,2,94,0,1,1630138393,2,6.0,-9.0,-9.0,-9.0,4.0,1303194 -3233538,1630342194,2,90,0,1,1630138394,2,6.0,-9.0,-9.0,-9.0,4.0,1303195 -3233541,1630342179,2,84,0,1,1630138397,2,6.0,-9.0,-9.0,-9.0,4.0,1303198 -3233548,1630342239,1,89,0,1,1630138404,2,6.0,-9.0,-9.0,-9.0,4.0,1303205 -3233550,1630342129,2,73,0,1,1630138406,2,6.0,-9.0,-9.0,-9.0,4.0,1303207 -3233558,1630342498,1,50,0,1,1630138410,1,1.0,60.0,1.0,-9.0,4.0,1303211 -3233561,1630342349,1,59,0,1,1630138412,1,1.0,48.0,1.0,-9.0,4.0,1303213 -3233562,1630342347,1,59,1,2,1630138412,2,1.0,45.0,1.0,-9.0,4.0,1303213 -3233563,1630342350,1,59,0,1,1630138413,1,1.0,48.0,1.0,-9.0,4.0,1303214 -3233564,1630342348,1,59,1,2,1630138413,2,1.0,45.0,1.0,-9.0,4.0,1303214 -3233565,1630342541,2,60,0,1,1630138414,2,6.0,-9.0,-9.0,-9.0,4.0,1303215 -3233566,1630342539,2,60,0,1,1630138415,2,1.0,40.0,1.0,-9.0,4.0,1303216 -3233567,1630342908,2,54,0,1,1630138416,1,1.0,40.0,3.0,-9.0,4.0,1303217 -3233576,1630342773,2,52,0,1,1630138421,2,1.0,50.0,1.0,-9.0,2.0,1303222 -3233577,1630342774,2,65,1,2,1630138421,1,6.0,-9.0,-9.0,-9.0,4.0,1303222 -3233578,1630342775,4,18,14,3,1630138421,1,6.0,-9.0,-9.0,14.0,4.0,1303222 -3233587,1630342549,2,53,0,1,1630138424,1,1.0,40.0,1.0,-9.0,2.0,1303225 -3233588,1630342548,2,53,1,2,1630138424,2,2.0,40.0,1.0,-9.0,4.0,1303225 -3233590,1630342522,2,57,0,1,1630138426,2,6.0,-9.0,-9.0,-9.0,4.0,1303227 -3233594,1630342744,2,57,0,1,1630138430,2,6.0,-9.0,-9.0,-9.0,4.0,1303231 -3233597,1630342907,2,54,0,1,1630138433,1,6.0,20.0,4.0,-9.0,4.0,1303234 -3233601,1630342914,2,47,0,1,1630138437,1,3.0,-9.0,-9.0,-9.0,2.0,1303238 -3233602,1630342909,2,60,0,1,1630138438,1,6.0,-9.0,-9.0,-9.0,4.0,1303239 -3233603,1630342550,2,58,0,1,1630138439,2,6.0,-9.0,-9.0,-9.0,4.0,1303240 -3233604,1630342815,2,62,0,1,1630138440,2,6.0,-9.0,-9.0,-9.0,4.0,1303241 -3233606,1630342627,2,63,0,1,1630138442,2,6.0,-9.0,-9.0,-9.0,4.0,1303243 -3233608,1630342431,1,60,0,1,1630138444,2,6.0,-9.0,-9.0,-9.0,4.0,1303245 -3233609,1630342479,1,60,0,1,1630138445,1,6.0,-9.0,-9.0,15.0,4.0,1303246 -3233610,1630342917,2,54,0,1,1630138446,1,6.0,45.0,5.0,-9.0,4.0,1303247 -3233615,1630342593,2,53,0,1,1630138451,2,6.0,-9.0,-9.0,-9.0,4.0,1303252 -3233619,1630342876,2,51,0,1,1630138453,2,3.0,-9.0,-9.0,-9.0,3.0,1303254 -3233620,1630342877,2,57,13,2,1630138453,1,3.0,40.0,5.0,-9.0,4.0,1303254 -3233624,1630342846,2,46,0,1,1630138456,2,1.0,38.0,1.0,-9.0,4.0,1303257 -3233626,1630342180,2,65,0,1,1630138458,2,6.0,-9.0,-9.0,-9.0,4.0,1303259 -3233627,1630342006,2,70,0,1,1630138459,2,6.0,-9.0,-9.0,-9.0,4.0,1303260 -3233629,1630342195,2,73,0,1,1630138461,2,6.0,-9.0,-9.0,-9.0,4.0,1303262 -3233632,1630342024,2,66,0,1,1630138464,2,6.0,-9.0,-9.0,-9.0,4.0,1303265 -3233638,1630342003,2,66,0,1,1630138469,2,6.0,-9.0,-9.0,-9.0,4.0,1303270 -3233639,1630342004,2,54,11,2,1630138469,2,6.0,-9.0,-9.0,-9.0,4.0,1303270 -3233640,1630342005,2,22,11,3,1630138469,1,6.0,-9.0,-9.0,-9.0,4.0,1303270 -3233642,1630342452,1,59,0,1,1630138471,1,1.0,60.0,1.0,-9.0,4.0,1303272 -3233643,1630342010,2,82,0,1,1630138472,2,6.0,-9.0,-9.0,-9.0,4.0,1303273 -3233660,1630342485,1,63,0,1,1630138483,1,1.0,40.0,1.0,-9.0,4.0,1303284 -3233661,1630342659,2,45,0,1,1630138484,2,1.0,44.0,1.0,15.0,4.0,1303285 -3233662,1630342660,2,26,2,2,1630138484,2,6.0,-9.0,-9.0,-9.0,4.0,1303285 -3233663,1630342662,2,23,2,3,1630138484,1,1.0,40.0,4.0,-9.0,4.0,1303285 -3233664,1630342663,2,6,7,4,1630138484,2,-9.0,-9.0,-9.0,2.0,-9.0,1303285 -3233665,1630342661,2,1,7,5,1630138484,1,-9.0,-9.0,-9.0,-9.0,-9.0,1303285 -3233671,1630342268,1,68,0,1,1630138488,2,1.0,40.0,1.0,-9.0,4.0,1303289 -3233672,1630342681,2,52,0,1,1630138489,1,1.0,60.0,1.0,-9.0,2.0,1303290 -3233673,1630342679,2,51,1,2,1630138489,2,6.0,10.0,6.0,-9.0,4.0,1303290 -3233674,1630342683,2,25,2,3,1630138489,1,1.0,70.0,1.0,15.0,2.0,1303290 -3233675,1630342685,2,23,2,4,1630138489,1,3.0,40.0,5.0,-9.0,4.0,1303290 -3233676,1630342521,2,62,0,1,1630138490,1,6.0,-9.0,-9.0,-9.0,4.0,1303291 -3233677,1630342434,1,48,0,1,1630138491,2,1.0,50.0,1.0,-9.0,4.0,1303292 -3233678,1630342527,2,57,0,1,1630138492,1,6.0,-9.0,-9.0,-9.0,4.0,1303293 -3233679,1630342525,2,56,1,2,1630138492,2,6.0,-9.0,-9.0,-9.0,4.0,1303293 -3233680,1630342528,2,36,2,3,1630138492,1,1.0,27.0,1.0,-9.0,4.0,1303293 -3233681,1630342526,2,27,2,4,1630138492,2,1.0,20.0,1.0,-9.0,4.0,1303293 -3233682,1630342331,1,25,0,1,1630138493,2,1.0,45.0,1.0,16.0,4.0,1303294 -3233683,1630342332,4,25,1,2,1630138493,1,1.0,40.0,1.0,16.0,4.0,1303294 -3233684,1630342335,1,40,0,1,1630138494,1,1.0,40.0,1.0,-9.0,4.0,1303295 -3233685,1630342334,1,43,1,2,1630138494,2,1.0,26.0,1.0,-9.0,4.0,1303295 -3233686,1630342337,1,52,0,1,1630138495,1,1.0,84.0,1.0,-9.0,4.0,1303296 -3233687,1630342336,3,56,1,2,1630138495,2,6.0,-9.0,-9.0,-9.0,4.0,1303296 -3233688,1630342383,1,55,0,1,1630138496,1,1.0,40.0,1.0,-9.0,4.0,1303297 -3233689,1630342371,1,55,1,2,1630138496,2,1.0,40.0,1.0,-9.0,4.0,1303297 -3233690,1630342375,1,29,2,3,1630138496,2,1.0,40.0,1.0,-9.0,4.0,1303297 -3233691,1630342379,1,25,2,4,1630138496,2,1.0,20.0,3.0,-9.0,4.0,1303297 -3233694,1630342594,2,49,0,1,1630138498,2,1.0,30.0,1.0,13.0,4.0,1303299 -3233697,1630342912,2,54,0,1,1630138500,1,6.0,60.0,4.0,-9.0,2.0,1303301 -3233698,1630342601,2,54,0,1,1630138501,1,1.0,30.0,1.0,-9.0,4.0,1303302 -3233699,1630342600,2,53,1,2,1630138501,2,1.0,40.0,1.0,15.0,4.0,1303302 -3233701,1630342094,2,70,0,1,1630138503,2,6.0,-9.0,-9.0,-9.0,4.0,1303304 -3233702,1630342095,2,72,1,2,1630138503,1,6.0,-9.0,-9.0,-9.0,2.0,1303304 -3233707,1630342613,2,55,0,1,1630138506,1,6.0,-9.0,-9.0,-9.0,2.0,1303307 -3233708,1630342611,2,25,2,2,1630138506,2,1.0,40.0,6.0,15.0,4.0,1303307 -3233709,1630342615,2,22,2,3,1630138506,1,1.0,40.0,1.0,-9.0,4.0,1303307 -3233710,1630342617,2,19,2,4,1630138506,1,6.0,-9.0,-9.0,14.0,4.0,1303307 -3233729,1630342152,2,66,0,1,1630138515,2,6.0,-9.0,-9.0,-9.0,4.0,1303316 -3233730,1630342153,2,45,2,2,1630138515,2,2.0,24.0,4.0,-9.0,3.0,1303316 -3233731,1630342154,2,22,7,3,1630138515,1,1.0,20.0,4.0,-9.0,4.0,1303316 -3233733,1630342619,2,56,0,1,1630138517,2,3.0,-9.0,-9.0,-9.0,4.0,1303318 -3233744,1630342292,1,60,0,1,1630138522,2,6.0,-9.0,-9.0,-9.0,4.0,1303323 -3233759,1630342483,1,38,0,1,1630138528,1,1.0,40.0,1.0,-9.0,4.0,1303329 -3233760,1630342484,4,38,1,2,1630138528,2,1.0,40.0,1.0,-9.0,4.0,1303329 -3233770,1630342223,2,85,0,1,1630138532,2,6.0,-9.0,-9.0,-9.0,4.0,1303333 -3233773,1630342654,2,52,0,1,1630138534,2,6.0,-9.0,-9.0,-9.0,4.0,1303335 -3233774,1630342658,2,57,1,2,1630138534,1,6.0,-9.0,-9.0,-9.0,4.0,1303335 -3233775,1630342655,2,21,2,3,1630138534,2,3.0,-9.0,-9.0,15.0,4.0,1303335 -3233776,1630342656,2,18,2,4,1630138534,2,6.0,-9.0,-9.0,14.0,4.0,1303335 -3233777,1630342657,2,17,2,5,1630138534,1,6.0,-9.0,-9.0,13.0,4.0,1303335 -3233782,1630342494,1,54,0,1,1630138536,1,1.0,40.0,1.0,-9.0,4.0,1303337 -3233783,1630342495,3,62,13,2,1630138536,2,1.0,24.0,6.0,-9.0,4.0,1303337 -3233786,1630342252,1,72,0,1,1630138538,2,6.0,-9.0,-9.0,-9.0,4.0,1303339 -3233787,1630342253,1,57,10,2,1630138538,1,1.0,40.0,1.0,-9.0,4.0,1303339 -3233790,1630342941,2,52,0,1,1630138540,1,1.0,32.0,6.0,-9.0,4.0,1303341 -3233811,1630342067,2,75,0,1,1630138548,2,6.0,-9.0,-9.0,-9.0,4.0,1303349 -3233813,1630342241,1,66,0,1,1630138550,2,6.0,-9.0,-9.0,-9.0,4.0,1303351 -3233814,1630342921,2,60,0,1,1630138551,1,1.0,40.0,1.0,-9.0,4.0,1303352 -3233815,1630342439,1,60,0,1,1630138552,1,1.0,50.0,1.0,-9.0,4.0,1303353 -3233816,1630342440,1,51,13,2,1630138552,1,3.0,-9.0,-9.0,-9.0,4.0,1303353 -3233820,1630342898,2,56,0,1,1630138554,2,1.0,40.0,1.0,-9.0,4.0,1303355 -3233821,1630342899,2,27,2,2,1630138554,1,3.0,24.0,6.0,-9.0,4.0,1303355 -3233825,1630342231,2,94,0,1,1630138557,2,1.0,36.0,2.0,-9.0,4.0,1303358 -3233826,1630342234,2,13,7,2,1630138557,1,-9.0,-9.0,-9.0,11.0,-9.0,1303358 -3233827,1630342232,2,60,15,3,1630138557,2,6.0,-9.0,-9.0,-9.0,4.0,1303358 -3233828,1630342233,2,59,15,4,1630138557,2,1.0,40.0,1.0,-9.0,4.0,1303358 -3233836,1630342141,2,82,0,1,1630138563,2,6.0,-9.0,-9.0,-9.0,4.0,1303364 -3233837,1630342143,2,49,2,2,1630138563,2,1.0,30.0,1.0,-9.0,4.0,1303364 -3233838,1630342145,2,21,7,3,1630138563,1,3.0,16.0,5.0,-9.0,4.0,1303364 -3233839,1630342235,2,70,0,1,1630138564,2,6.0,-9.0,-9.0,-9.0,4.0,1303365 -3233840,1630342237,2,40,2,2,1630138564,1,3.0,-9.0,-9.0,-9.0,4.0,1303365 -3233841,1630342236,2,16,7,3,1630138564,1,6.0,-9.0,-9.0,12.0,-9.0,1303365 -3233853,1630342437,1,63,0,1,1630138569,1,1.0,92.0,1.0,-9.0,4.0,1303370 -3233858,1630342280,1,47,0,1,1630138572,2,1.0,32.0,1.0,15.0,4.0,1303373 -3233859,1630342281,1,53,1,2,1630138572,1,1.0,40.0,1.0,-9.0,4.0,1303373 -3233860,1630342282,1,10,2,3,1630138572,2,-9.0,-9.0,-9.0,7.0,-9.0,1303373 -3233868,1630342313,1,43,0,1,1630138575,2,1.0,40.0,1.0,-9.0,4.0,1303376 -3233869,1630342314,4,43,1,2,1630138575,1,1.0,35.0,1.0,-9.0,2.0,1303376 -3233870,1630342315,4,13,2,3,1630138575,2,-9.0,-9.0,-9.0,10.0,-9.0,1303376 -3233871,1630342316,4,10,2,4,1630138575,2,-9.0,-9.0,-9.0,7.0,-9.0,1303376 -3233909,1630342288,1,48,0,1,1630138590,2,2.0,55.0,4.0,-9.0,4.0,1303391 -3233910,1630342291,3,29,12,2,1630138590,1,1.0,38.0,1.0,-9.0,4.0,1303391 -3233914,1630342933,2,62,0,1,1630138592,1,1.0,30.0,3.0,-9.0,4.0,1303393 -3233926,1630342187,2,65,0,1,1630138599,2,6.0,-9.0,-9.0,-9.0,3.0,1303400 -3233927,1630342189,2,63,10,2,1630138599,2,6.0,-9.0,-9.0,-9.0,3.0,1303400 -3233928,1630342193,2,58,10,3,1630138599,1,6.0,-9.0,-9.0,-9.0,4.0,1303400 -3233929,1630342191,2,25,10,4,1630138599,2,6.0,-9.0,-9.0,-9.0,4.0,1303400 -3233937,1630342482,2,43,0,1,1630138603,1,6.0,-9.0,-9.0,-9.0,2.0,1303404 -3233938,1630342481,1,64,1,2,1630138603,1,1.0,32.0,1.0,-9.0,4.0,1303404 -3233939,1630342220,2,84,0,1,1630138604,1,6.0,-9.0,-9.0,-9.0,2.0,1303405 -3233940,1630342211,2,84,1,2,1630138604,2,6.0,-9.0,-9.0,-9.0,4.0,1303405 -3233941,1630342214,2,58,2,3,1630138604,2,1.0,40.0,3.0,-9.0,4.0,1303405 -3233942,1630342217,2,53,2,4,1630138604,2,1.0,6.0,5.0,-9.0,4.0,1303405 -3233943,1630342827,2,49,0,1,1630138605,2,6.0,-9.0,-9.0,-9.0,4.0,1303406 -3233944,1630342828,2,35,1,2,1630138605,1,6.0,-9.0,-9.0,-9.0,4.0,1303406 -3233945,1630342829,2,30,12,3,1630138605,1,6.0,-9.0,-9.0,-9.0,4.0,1303406 -3233955,1630342955,1,69,0,1,1630138609,1,1.0,60.0,1.0,-9.0,4.0,1303410 -3233959,1630342130,2,73,0,1,1630138611,2,6.0,-9.0,-9.0,-9.0,4.0,1303412 -3233960,1630342942,2,56,0,1,1630138612,1,6.0,-9.0,-9.0,-9.0,4.0,1303413 -3233961,1630342943,2,23,2,2,1630138612,1,6.0,-9.0,-9.0,-9.0,4.0,1303413 -3233962,1630342944,2,23,2,3,1630138612,1,6.0,-9.0,-9.0,-9.0,4.0,1303413 -3233963,1630342945,2,20,2,4,1630138612,1,6.0,-9.0,-9.0,-9.0,4.0,1303413 -3233983,1630342702,2,53,0,1,1630138619,2,1.0,37.0,1.0,-9.0,4.0,1303420 -3233984,1630342703,2,24,2,2,1630138619,2,6.0,6.0,6.0,15.0,4.0,1303420 -3233985,1630342704,2,23,2,3,1630138619,1,6.0,-9.0,-9.0,15.0,4.0,1303420 -3233986,1630342705,2,21,2,4,1630138619,1,6.0,-9.0,-9.0,-9.0,4.0,1303420 -3233996,1630342805,2,58,0,1,1630138623,2,1.0,40.0,1.0,-9.0,4.0,1303424 -3233997,1630342806,2,26,2,2,1630138623,1,3.0,-9.0,-9.0,-9.0,4.0,1303424 -3233998,1630342940,2,30,0,1,1630138624,1,3.0,36.0,4.0,-9.0,4.0,1303425 -3234005,1630342726,2,56,0,1,1630138627,1,1.0,55.0,1.0,-9.0,4.0,1303428 -3234006,1630342722,2,51,1,2,1630138627,2,1.0,50.0,1.0,-9.0,4.0,1303428 -3234007,1630342728,2,7,2,3,1630138627,2,-9.0,-9.0,-9.0,4.0,-9.0,1303428 -3234014,1630342652,2,56,0,1,1630138631,2,1.0,60.0,2.0,-9.0,4.0,1303432 -3234015,1630342653,2,58,5,2,1630138631,2,1.0,8.0,3.0,-9.0,4.0,1303432 -3234017,1630342007,2,70,0,1,1630138633,2,6.0,-9.0,-9.0,-9.0,4.0,1303434 -3234021,1630342950,2,66,0,1,1630138636,1,6.0,-9.0,-9.0,-9.0,4.0,1303437 -3234030,1630342954,1,71,0,1,1630138639,1,6.0,-9.0,-9.0,-9.0,4.0,1303440 -3234053,1630342913,2,35,0,1,1630138648,1,1.0,40.0,4.0,-9.0,4.0,1303449 -3234065,1630342915,2,51,0,1,1630138652,1,1.0,40.0,1.0,-9.0,4.0,1303453 -3251852,1630361975,2,38,0,1,1630146018,1,1.0,40.0,1.0,-9.0,4.0,1310819 -3251853,1630361844,2,42,0,1,1630146019,1,1.0,45.0,1.0,-9.0,4.0,1310820 -3251854,1630361845,2,42,0,1,1630146020,1,1.0,45.0,1.0,-9.0,4.0,1310821 -3251855,1630361766,2,43,0,1,1630146021,2,1.0,40.0,1.0,-9.0,4.0,1310822 -3251856,1630361292,2,38,0,1,1630146022,2,3.0,25.0,6.0,16.0,4.0,1310823 -3251857,1630361293,2,37,1,2,1630146022,1,1.0,50.0,1.0,15.0,4.0,1310823 -3251858,1630361294,2,0,2,3,1630146022,2,-9.0,-9.0,-9.0,-9.0,-9.0,1310823 -3251859,1630361439,2,27,0,1,1630146023,1,6.0,-9.0,-9.0,16.0,4.0,1310824 -3251860,1630361438,2,25,1,2,1630146023,2,1.0,40.0,1.0,-9.0,4.0,1310824 -3251861,1630361168,2,38,0,1,1630146024,2,1.0,40.0,1.0,-9.0,4.0,1310825 -3251862,1630361169,2,18,2,2,1630146024,1,3.0,-9.0,-9.0,-9.0,4.0,1310825 -3251863,1630361558,2,43,0,1,1630146025,1,1.0,40.0,1.0,-9.0,3.0,1310826 -3251864,1630361557,2,61,6,2,1630146025,2,6.0,-9.0,-9.0,-9.0,4.0,1310826 -3251865,1630361864,2,35,0,1,1630146026,1,1.0,30.0,5.0,-9.0,4.0,1310827 -3251866,1630361865,2,31,15,2,1630146026,1,1.0,40.0,1.0,-9.0,4.0,1310827 -3251867,1630361408,2,31,0,1,1630146027,2,1.0,50.0,1.0,-9.0,4.0,1310828 -3251868,1630361200,2,35,0,1,1630146028,2,1.0,40.0,1.0,16.0,4.0,1310829 -3251869,1630361201,2,35,0,1,1630146029,2,1.0,40.0,1.0,16.0,4.0,1310830 -3251870,1630361202,2,35,0,1,1630146030,2,1.0,40.0,1.0,16.0,4.0,1310831 -3251871,1630362087,4,39,0,1,1630146031,1,1.0,40.0,1.0,-9.0,4.0,1310832 -3251872,1630362088,4,39,0,1,1630146032,1,1.0,40.0,1.0,-9.0,4.0,1310833 -3251873,1630362089,4,39,0,1,1630146033,1,1.0,40.0,1.0,-9.0,4.0,1310834 -3251874,1630362090,4,39,0,1,1630146034,1,1.0,40.0,1.0,-9.0,4.0,1310835 -3251875,1630362091,4,39,0,1,1630146035,1,1.0,40.0,1.0,-9.0,4.0,1310836 -3251876,1630362092,4,39,0,1,1630146036,1,1.0,40.0,1.0,-9.0,4.0,1310837 -3251877,1630360987,1,29,0,1,1630146037,1,1.0,40.0,1.0,16.0,4.0,1310838 -3251878,1630361580,2,44,0,1,1630146038,2,1.0,40.0,1.0,-9.0,4.0,1310839 -3251879,1630361584,2,15,2,2,1630146038,2,-9.0,-9.0,-9.0,12.0,-9.0,1310839 -3251880,1630361582,2,1,2,3,1630146038,1,-9.0,-9.0,-9.0,-9.0,-9.0,1310839 -3251881,1630361918,2,44,0,1,1630146039,1,1.0,50.0,1.0,-9.0,4.0,1310840 -3251882,1630361920,2,15,2,2,1630146039,2,-9.0,-9.0,-9.0,12.0,-9.0,1310840 -3251883,1630361922,2,9,2,3,1630146039,2,-9.0,-9.0,-9.0,7.0,-9.0,1310840 -3251884,1630361619,2,39,0,1,1630146040,2,1.0,40.0,1.0,-9.0,4.0,1310841 -3251885,1630361622,2,36,1,2,1630146040,1,3.0,40.0,6.0,-9.0,4.0,1310841 -3251886,1630361620,2,39,0,1,1630146041,2,1.0,40.0,1.0,-9.0,4.0,1310842 -3251887,1630361623,2,36,1,2,1630146041,1,3.0,40.0,6.0,-9.0,4.0,1310842 -3251888,1630361621,2,39,0,1,1630146042,2,1.0,40.0,1.0,-9.0,4.0,1310843 -3251889,1630361624,2,36,1,2,1630146042,1,3.0,40.0,6.0,-9.0,4.0,1310843 -3251890,1630361780,2,36,0,1,1630146043,1,1.0,48.0,1.0,-9.0,4.0,1310844 -3251891,1630361779,2,4,2,2,1630146043,1,-9.0,-9.0,-9.0,1.0,-9.0,1310844 -3251892,1630361991,2,42,0,1,1630146044,1,1.0,70.0,1.0,-9.0,4.0,1310845 -3251893,1630361994,2,41,15,2,1630146044,1,6.0,-9.0,-9.0,-9.0,4.0,1310845 -3251894,1630361642,2,31,0,1,1630146045,2,3.0,40.0,3.0,-9.0,4.0,1310846 -3251895,1630361646,2,39,1,2,1630146045,1,1.0,40.0,1.0,-9.0,4.0,1310846 -3251896,1630361992,2,42,0,1,1630146046,1,1.0,70.0,1.0,-9.0,4.0,1310847 -3251897,1630361995,2,41,15,2,1630146046,1,6.0,-9.0,-9.0,-9.0,4.0,1310847 -3251898,1630361643,2,31,0,1,1630146047,2,3.0,40.0,3.0,-9.0,4.0,1310848 -3251899,1630361647,2,39,1,2,1630146047,1,1.0,40.0,1.0,-9.0,4.0,1310848 -3251900,1630361993,2,42,0,1,1630146048,1,1.0,70.0,1.0,-9.0,4.0,1310849 -3251901,1630361996,2,41,15,2,1630146048,1,6.0,-9.0,-9.0,-9.0,4.0,1310849 -3251902,1630361644,2,31,0,1,1630146049,2,3.0,40.0,3.0,-9.0,4.0,1310850 -3251903,1630361648,2,39,1,2,1630146049,1,1.0,40.0,1.0,-9.0,4.0,1310850 -3251904,1630361175,2,42,0,1,1630146050,2,1.0,42.0,1.0,-9.0,4.0,1310851 -3251905,1630361176,2,13,2,2,1630146050,2,-9.0,-9.0,-9.0,10.0,-9.0,1310851 -3251906,1630361771,2,41,0,1,1630146051,1,1.0,40.0,1.0,-9.0,2.0,1310852 -3251907,1630361769,2,43,1,2,1630146051,2,1.0,30.0,1.0,-9.0,4.0,1310852 -3251908,1630361770,2,17,2,3,1630146051,1,6.0,-9.0,-9.0,14.0,4.0,1310852 -3251909,1630361132,2,31,0,1,1630146052,2,1.0,40.0,1.0,-9.0,4.0,1310853 -3251910,1630361134,2,11,2,2,1630146052,1,-9.0,-9.0,-9.0,7.0,-9.0,1310853 -3251911,1630361136,2,33,12,3,1630146052,1,1.0,50.0,1.0,-9.0,4.0,1310853 -3251912,1630361459,2,42,0,1,1630146053,1,1.0,50.0,1.0,-9.0,4.0,1310854 -3251913,1630361458,2,44,1,2,1630146053,2,1.0,50.0,1.0,-9.0,4.0,1310854 -3251914,1630361460,2,15,2,3,1630146053,2,-9.0,-9.0,-9.0,12.0,-9.0,1310854 -3251915,1630361782,2,33,0,1,1630146054,1,1.0,40.0,1.0,-9.0,4.0,1310855 -3251916,1630361781,2,11,2,2,1630146054,1,-9.0,-9.0,-9.0,8.0,-9.0,1310855 -3251917,1630361783,2,26,5,3,1630146054,1,1.0,55.0,1.0,15.0,4.0,1310855 -3251918,1630361913,2,44,0,1,1630146055,1,3.0,-9.0,-9.0,15.0,3.0,1310856 -3251919,1630361895,2,40,0,1,1630146056,1,3.0,-9.0,-9.0,-9.0,4.0,1310857 -3251920,1630361791,2,40,0,1,1630146057,1,1.0,26.0,6.0,-9.0,4.0,1310858 -3251921,1630361829,2,35,0,1,1630146058,1,1.0,40.0,4.0,-9.0,4.0,1310859 -3251922,1630360951,2,44,0,1,1630146059,2,1.0,29.0,1.0,-9.0,4.0,1310860 -3251923,1630360949,1,41,1,2,1630146059,1,3.0,-9.0,-9.0,-9.0,4.0,1310860 -3251924,1630360953,4,16,2,3,1630146059,2,6.0,-9.0,-9.0,13.0,-9.0,1310860 -3251925,1630361249,2,39,0,1,1630146060,1,6.0,-9.0,-9.0,-9.0,4.0,1310861 -3251926,1630361248,2,32,10,2,1630146060,2,1.0,24.0,6.0,-9.0,4.0,1310861 -3251927,1630361310,2,48,0,1,1630146061,2,3.0,40.0,2.0,-9.0,4.0,1310862 -3251928,1630361311,2,60,13,2,1630146061,1,6.0,-9.0,-9.0,-9.0,4.0,1310862 -3251929,1630361442,2,55,0,1,1630146062,2,1.0,50.0,1.0,-9.0,4.0,1310863 -3251930,1630361987,2,56,0,1,1630146063,1,1.0,40.0,1.0,-9.0,4.0,1310864 -3251931,1630361610,2,54,0,1,1630146064,2,1.0,35.0,1.0,-9.0,4.0,1310865 -3251932,1630360794,2,48,0,1,1630146065,2,1.0,35.0,4.0,16.0,4.0,1310866 -3251933,1630360793,2,72,6,2,1630146065,2,6.0,-9.0,-9.0,-9.0,4.0,1310866 -3251934,1630360795,2,23,10,3,1630146065,2,6.0,-9.0,-9.0,-9.0,4.0,1310866 -3251935,1630361613,2,55,0,1,1630146066,1,6.0,16.0,6.0,-9.0,4.0,1310867 -3251936,1630361611,2,51,1,2,1630146066,2,6.0,16.0,3.0,-9.0,4.0,1310867 -3251937,1630361615,2,26,2,3,1630146066,1,1.0,40.0,2.0,-9.0,4.0,1310867 -3251938,1630362053,4,49,0,1,1630146067,1,3.0,50.0,6.0,-9.0,2.0,1310868 -3251939,1630362054,4,50,1,2,1630146067,2,1.0,40.0,1.0,-9.0,2.0,1310868 -3251940,1630362055,4,94,8,3,1630146067,1,6.0,-9.0,-9.0,-9.0,2.0,1310868 -3251941,1630361287,2,63,0,1,1630146068,2,6.0,-9.0,-9.0,-9.0,4.0,1310869 -3251942,1630361288,2,25,2,2,1630146068,2,1.0,40.0,2.0,-9.0,4.0,1310869 -3251943,1630361205,2,64,0,1,1630146069,2,6.0,-9.0,-9.0,-9.0,4.0,1310870 -3251944,1630361206,2,30,2,2,1630146069,2,1.0,45.0,4.0,-9.0,4.0,1310870 -3251945,1630361139,2,57,0,1,1630146070,1,6.0,32.0,5.0,-9.0,4.0,1310871 -3251946,1630361138,2,55,1,2,1630146070,2,6.0,-9.0,-9.0,-9.0,4.0,1310871 -3251947,1630361131,2,54,0,1,1630146071,2,1.0,40.0,1.0,-9.0,4.0,1310872 -3251948,1630361290,2,64,0,1,1630146072,2,2.0,36.0,4.0,-9.0,4.0,1310873 -3251949,1630361778,2,64,0,1,1630146073,2,1.0,40.0,1.0,-9.0,4.0,1310874 -3251950,1630361291,2,64,0,1,1630146074,2,2.0,36.0,4.0,-9.0,4.0,1310875 -3251951,1630361378,2,50,0,1,1630146075,2,1.0,40.0,1.0,-9.0,4.0,1310876 -3251952,1630361379,2,50,0,1,1630146076,2,1.0,40.0,1.0,-9.0,4.0,1310877 -3251953,1630361278,2,59,0,1,1630146077,2,1.0,40.0,1.0,-9.0,4.0,1310878 -3251954,1630361380,2,50,0,1,1630146078,2,1.0,40.0,1.0,-9.0,4.0,1310879 -3251955,1630361121,2,46,0,1,1630146079,2,1.0,60.0,1.0,-9.0,4.0,1310880 -3251956,1630361289,2,55,0,1,1630146080,2,1.0,55.0,1.0,-9.0,4.0,1310881 -3251957,1630361470,2,59,0,1,1630146081,2,6.0,-9.0,-9.0,-9.0,2.0,1310882 -3251958,1630361474,2,29,4,2,1630146081,1,6.0,-9.0,-9.0,-9.0,4.0,1310882 -3251959,1630361472,2,57,13,3,1630146081,2,1.0,40.0,1.0,-9.0,2.0,1310882 -3251960,1630361639,2,64,0,1,1630146082,1,1.0,32.0,1.0,-9.0,2.0,1310883 -3251961,1630361636,2,61,1,2,1630146082,2,6.0,-9.0,-9.0,-9.0,4.0,1310883 -3251962,1630361640,2,64,0,1,1630146083,1,1.0,32.0,1.0,-9.0,2.0,1310884 -3251963,1630361637,2,61,1,2,1630146083,2,6.0,-9.0,-9.0,-9.0,4.0,1310884 -3251964,1630360826,2,64,0,1,1630146084,1,1.0,23.0,6.0,-9.0,4.0,1310885 -3251965,1630360824,2,65,1,2,1630146084,2,6.0,16.0,6.0,-9.0,4.0,1310885 -3251966,1630361037,2,58,0,1,1630146085,2,1.0,35.0,1.0,-9.0,4.0,1310886 -3251967,1630361038,2,61,10,2,1630146085,1,6.0,-9.0,-9.0,-9.0,4.0,1310886 -3251968,1630360827,2,64,0,1,1630146086,1,1.0,23.0,6.0,-9.0,4.0,1310887 -3251969,1630360825,2,65,1,2,1630146086,2,6.0,16.0,6.0,-9.0,4.0,1310887 -3251970,1630361739,2,57,0,1,1630146087,2,1.0,40.0,1.0,-9.0,4.0,1310888 -3251971,1630361745,2,35,2,2,1630146087,1,6.0,-9.0,-9.0,-9.0,4.0,1310888 -3251972,1630361742,2,33,2,3,1630146087,2,1.0,40.0,1.0,15.0,4.0,1310888 -3251973,1630361658,2,57,0,1,1630146088,1,1.0,40.0,1.0,-9.0,4.0,1310889 -3251974,1630361657,2,59,1,2,1630146088,2,3.0,-9.0,-9.0,-9.0,4.0,1310889 -3251975,1630361659,2,25,2,3,1630146088,1,1.0,40.0,3.0,-9.0,4.0,1310889 -3251976,1630361412,2,58,0,1,1630146089,1,1.0,40.0,1.0,-9.0,4.0,1310890 -3251977,1630361410,2,58,1,2,1630146089,2,1.0,40.0,1.0,-9.0,4.0,1310890 -3251978,1630361411,2,49,10,3,1630146089,2,6.0,-9.0,-9.0,-9.0,4.0,1310890 -3251979,1630361740,2,57,0,1,1630146090,2,1.0,40.0,1.0,-9.0,4.0,1310891 -3251980,1630361746,2,35,2,2,1630146090,1,6.0,-9.0,-9.0,-9.0,4.0,1310891 -3251981,1630361743,2,33,2,3,1630146090,2,1.0,40.0,1.0,15.0,4.0,1310891 -3251982,1630361441,2,55,0,1,1630146091,1,1.0,40.0,1.0,-9.0,2.0,1310892 -3251983,1630361440,2,52,1,2,1630146091,2,1.0,37.0,1.0,-9.0,4.0,1310892 -3251984,1630361270,2,50,0,1,1630146092,2,1.0,36.0,1.0,-9.0,4.0,1310893 -3251985,1630361271,2,54,1,2,1630146092,1,1.0,40.0,1.0,-9.0,4.0,1310893 -3251986,1630361489,2,60,0,1,1630146093,1,1.0,70.0,1.0,-9.0,2.0,1310894 -3251987,1630361488,2,58,1,2,1630146093,2,1.0,43.0,1.0,-9.0,4.0,1310894 -3251988,1630361571,2,57,0,1,1630146094,1,1.0,40.0,1.0,-9.0,4.0,1310895 -3251989,1630361569,2,42,11,2,1630146094,2,1.0,40.0,1.0,-9.0,4.0,1310895 -3251990,1630361972,2,53,0,1,1630146095,1,6.0,-9.0,-9.0,-9.0,4.0,1310896 -3251991,1630361381,2,56,0,1,1630146096,2,6.0,-9.0,-9.0,-9.0,4.0,1310897 -3251992,1630361170,2,51,0,1,1630146097,2,3.0,-9.0,-9.0,-9.0,4.0,1310898 -3251993,1630361650,2,49,0,1,1630146098,2,6.0,-9.0,-9.0,-9.0,4.0,1310899 -3251994,1630361395,2,60,0,1,1630146099,2,6.0,-9.0,-9.0,-9.0,4.0,1310900 -3251995,1630361396,2,69,1,2,1630146099,1,6.0,-9.0,-9.0,-9.0,2.0,1310900 -3251996,1630361933,2,53,0,1,1630146100,1,1.0,15.0,6.0,-9.0,4.0,1310901 -3251997,1630361425,2,59,0,1,1630146101,2,1.0,30.0,1.0,-9.0,4.0,1310902 -3251998,1630361944,2,50,0,1,1630146102,1,1.0,9.0,1.0,-9.0,4.0,1310903 -3251999,1630361321,2,63,0,1,1630146103,2,3.0,-9.0,-9.0,-9.0,4.0,1310904 -3252000,1630361322,2,25,2,2,1630146103,2,1.0,30.0,1.0,15.0,4.0,1310904 -3252001,1630362041,2,80,0,1,1630146104,1,6.0,-9.0,-9.0,-9.0,2.0,1310905 -3252002,1630361830,2,42,0,1,1630146105,1,1.0,48.0,1.0,-9.0,4.0,1310906 -3252003,1630361971,2,35,0,1,1630146106,1,1.0,40.0,1.0,-9.0,2.0,1310907 -3252004,1630362093,4,31,0,1,1630146107,1,1.0,60.0,1.0,-9.0,4.0,1310908 -3252005,1630361858,2,29,0,1,1630146108,1,1.0,40.0,1.0,-9.0,4.0,1310909 -3252006,1630361859,2,29,0,1,1630146109,1,1.0,40.0,1.0,-9.0,4.0,1310910 -3252007,1630361942,2,42,0,1,1630146110,1,3.0,-9.0,-9.0,-9.0,4.0,1310911 -3252008,1630361080,2,26,0,1,1630146111,2,6.0,-9.0,-9.0,-9.0,4.0,1310912 -3252009,1630361929,2,33,0,1,1630146112,1,1.0,10.0,6.0,-9.0,4.0,1310913 -3252010,1630361988,2,58,0,1,1630146113,1,6.0,-9.0,-9.0,-9.0,4.0,1310914 -3252011,1630361100,2,60,0,1,1630146114,2,6.0,-9.0,-9.0,-9.0,4.0,1310915 -3252012,1630361072,2,61,0,1,1630146115,2,6.0,-9.0,-9.0,-9.0,4.0,1310916 -3252013,1630361768,2,61,0,1,1630146116,2,1.0,40.0,1.0,-9.0,4.0,1310917 -3252014,1630361965,2,47,0,1,1630146117,1,1.0,40.0,1.0,-9.0,4.0,1310918 -3252015,1630361163,2,56,0,1,1630146118,2,1.0,40.0,1.0,-9.0,4.0,1310919 -3252016,1630361928,2,45,0,1,1630146119,1,1.0,40.0,1.0,-9.0,2.0,1310920 -3252017,1630361966,2,47,0,1,1630146120,1,1.0,40.0,1.0,-9.0,4.0,1310921 -3252018,1630361884,2,47,0,1,1630146121,1,1.0,40.0,1.0,-9.0,4.0,1310922 -3252019,1630361512,2,58,0,1,1630146122,2,1.0,40.0,1.0,-9.0,4.0,1310923 -3252020,1630362009,2,50,0,1,1630146123,1,1.0,50.0,1.0,-9.0,4.0,1310924 -3252021,1630361823,2,54,0,1,1630146124,1,1.0,40.0,3.0,-9.0,4.0,1310925 -3252022,1630361793,2,53,0,1,1630146125,1,1.0,70.0,1.0,15.0,4.0,1310926 -3252023,1630361981,2,58,0,1,1630146126,1,1.0,40.0,1.0,15.0,2.0,1310927 -3252024,1630361668,2,61,0,1,1630146127,2,1.0,40.0,1.0,-9.0,2.0,1310928 -3252025,1630361374,2,62,0,1,1630146128,2,1.0,40.0,1.0,-9.0,4.0,1310929 -3252026,1630361669,2,61,0,1,1630146129,2,1.0,40.0,1.0,-9.0,2.0,1310930 -3252027,1630361283,2,54,0,1,1630146130,2,1.0,40.0,1.0,-9.0,4.0,1310931 -3252028,1630361094,2,60,0,1,1630146131,2,1.0,40.0,1.0,-9.0,4.0,1310932 -3252029,1630361095,2,60,0,1,1630146132,2,1.0,40.0,1.0,-9.0,4.0,1310933 -3252030,1630361772,2,56,0,1,1630146133,2,1.0,40.0,1.0,-9.0,4.0,1310934 -3252031,1630361279,2,47,0,1,1630146134,2,1.0,30.0,1.0,-9.0,4.0,1310935 -3252032,1630361088,2,55,0,1,1630146135,2,1.0,40.0,1.0,-9.0,4.0,1310936 -3252033,1630361280,2,47,0,1,1630146136,2,1.0,30.0,1.0,-9.0,4.0,1310937 -3252034,1630361167,2,64,0,1,1630146137,2,1.0,40.0,1.0,-9.0,4.0,1310938 -3252035,1630361174,2,55,0,1,1630146138,2,1.0,40.0,1.0,-9.0,4.0,1310939 -3252036,1630361825,2,63,0,1,1630146139,1,1.0,24.0,1.0,-9.0,2.0,1310940 -3252037,1630361089,2,55,0,1,1630146140,2,1.0,40.0,1.0,-9.0,4.0,1310941 -3252038,1630361281,2,47,0,1,1630146141,2,1.0,30.0,1.0,-9.0,4.0,1310942 -3252039,1630361536,2,50,0,1,1630146142,2,1.0,40.0,1.0,-9.0,4.0,1310943 -3252040,1630361943,2,60,0,1,1630146143,1,1.0,40.0,1.0,-9.0,4.0,1310944 -3252041,1630362010,2,50,0,1,1630146144,1,1.0,50.0,1.0,-9.0,4.0,1310945 -3252042,1630361096,2,60,0,1,1630146145,2,1.0,40.0,1.0,-9.0,4.0,1310946 -3252043,1630361875,2,60,0,1,1630146146,1,1.0,40.0,1.0,-9.0,4.0,1310947 -3252044,1630361501,2,46,0,1,1630146147,2,1.0,40.0,1.0,-9.0,4.0,1310948 -3252045,1630361014,2,55,0,1,1630146148,2,1.0,40.0,1.0,-9.0,4.0,1310949 -3252046,1630361016,2,26,2,2,1630146148,1,3.0,1.0,6.0,15.0,4.0,1310949 -3252047,1630361018,2,19,2,3,1630146148,1,6.0,-9.0,-9.0,15.0,4.0,1310949 -3252048,1630361528,2,52,0,1,1630146149,1,3.0,40.0,6.0,-9.0,2.0,1310950 -3252049,1630361527,2,60,1,2,1630146149,2,1.0,40.0,1.0,-9.0,4.0,1310950 -3252050,1630361529,2,21,2,3,1630146149,1,6.0,-9.0,-9.0,15.0,4.0,1310950 -3252051,1630362006,2,54,0,1,1630146150,1,6.0,-9.0,-9.0,-9.0,4.0,1310951 -3252052,1630362008,2,36,12,2,1630146150,1,1.0,40.0,1.0,-9.0,4.0,1310951 -3252053,1630361295,2,54,0,1,1630146151,2,6.0,-9.0,-9.0,15.0,4.0,1310952 -3252054,1630361297,2,25,2,2,1630146151,2,1.0,65.0,1.0,-9.0,4.0,1310952 -3252055,1630361299,2,19,2,3,1630146151,2,3.0,3.0,6.0,-9.0,4.0,1310952 -3252056,1630361819,2,61,0,1,1630146152,1,1.0,40.0,1.0,-9.0,4.0,1310953 -3252057,1630361820,2,51,10,2,1630146152,1,6.0,-9.0,-9.0,-9.0,4.0,1310953 -3252058,1630361254,2,62,0,1,1630146153,2,1.0,40.0,1.0,-9.0,4.0,1310954 -3252059,1630361255,2,63,1,2,1630146153,1,6.0,-9.0,-9.0,-9.0,4.0,1310954 -3252060,1630361551,2,58,0,1,1630146154,2,1.0,40.0,1.0,-9.0,4.0,1310955 -3252061,1630361554,2,26,2,2,1630146154,1,3.0,-9.0,-9.0,-9.0,4.0,1310955 -3252062,1630361552,2,58,0,1,1630146155,2,1.0,40.0,1.0,-9.0,4.0,1310956 -3252063,1630361555,2,26,2,2,1630146155,1,3.0,-9.0,-9.0,-9.0,4.0,1310956 -3252064,1630361553,2,58,0,1,1630146156,2,1.0,40.0,1.0,-9.0,4.0,1310957 -3252065,1630361556,2,26,2,2,1630146156,1,3.0,-9.0,-9.0,-9.0,4.0,1310957 -3252066,1630361275,2,51,0,1,1630146157,2,1.0,45.0,1.0,-9.0,4.0,1310958 -3252067,1630361276,2,20,2,2,1630146157,1,6.0,-9.0,-9.0,-9.0,4.0,1310958 -3252068,1630361930,2,60,0,1,1630146158,1,6.0,-9.0,-9.0,-9.0,4.0,1310959 -3252069,1630361931,2,58,5,2,1630146158,1,1.0,40.0,1.0,-9.0,2.0,1310959 -3252070,1630361413,2,55,0,1,1630146159,2,6.0,-9.0,-9.0,-9.0,4.0,1310960 -3252071,1630361414,2,66,1,2,1630146159,1,1.0,40.0,1.0,-9.0,4.0,1310960 -3252072,1630361674,2,60,0,1,1630146160,1,1.0,48.0,1.0,-9.0,4.0,1310961 -3252073,1630361671,2,60,1,2,1630146160,2,6.0,-9.0,-9.0,-9.0,4.0,1310961 -3252074,1630361064,2,53,0,1,1630146161,2,1.0,35.0,1.0,-9.0,4.0,1310962 -3252075,1630361065,2,34,2,2,1630146161,2,6.0,-9.0,-9.0,-9.0,4.0,1310962 -3252076,1630361675,2,60,0,1,1630146162,1,1.0,48.0,1.0,-9.0,4.0,1310963 -3252077,1630361672,2,60,1,2,1630146162,2,6.0,-9.0,-9.0,-9.0,4.0,1310963 -3252078,1630360845,2,45,0,1,1630146163,2,1.0,40.0,1.0,-9.0,4.0,1310964 -3252079,1630360844,2,68,6,2,1630146163,2,6.0,-9.0,-9.0,-9.0,4.0,1310964 -3252080,1630361086,2,54,0,1,1630146164,1,1.0,40.0,1.0,-9.0,2.0,1310965 -3252081,1630361084,2,21,2,2,1630146164,2,1.0,32.0,1.0,15.0,4.0,1310965 -3252082,1630361085,2,21,15,3,1630146164,2,6.0,-9.0,-9.0,15.0,4.0,1310965 -3252083,1630361050,2,59,0,1,1630146165,2,1.0,30.0,6.0,-9.0,4.0,1310966 -3252084,1630361051,2,58,1,2,1630146165,1,1.0,48.0,1.0,-9.0,4.0,1310966 -3252085,1630361204,2,54,0,1,1630146166,1,1.0,30.0,1.0,-9.0,4.0,1310967 -3252086,1630361203,2,53,1,2,1630146166,2,1.0,40.0,1.0,15.0,4.0,1310967 -3252087,1630361860,2,57,0,1,1630146167,1,6.0,40.0,1.0,-9.0,4.0,1310968 -3252088,1630361404,2,63,0,1,1630146168,1,6.0,-9.0,-9.0,-9.0,4.0,1310969 -3252089,1630361402,2,62,1,2,1630146168,2,6.0,-9.0,-9.0,-9.0,4.0,1310969 -3252090,1630361312,2,58,0,1,1630146169,2,1.0,75.0,1.0,-9.0,4.0,1310970 -3252091,1630361313,2,58,0,1,1630146170,2,1.0,75.0,1.0,-9.0,4.0,1310971 -3252092,1630361888,2,62,0,1,1630146171,1,1.0,50.0,1.0,-9.0,2.0,1310972 -3252093,1630361889,2,62,0,1,1630146172,1,1.0,50.0,1.0,-9.0,2.0,1310973 -3252094,1630361915,2,45,0,1,1630146173,1,1.0,40.0,1.0,-9.0,4.0,1310974 -3252095,1630361392,2,62,0,1,1630146174,2,1.0,40.0,1.0,-9.0,4.0,1310975 -3252096,1630361045,2,61,0,1,1630146175,2,1.0,40.0,1.0,-9.0,4.0,1310976 -3252097,1630361393,2,62,0,1,1630146176,2,1.0,40.0,1.0,-9.0,4.0,1310977 -3252098,1630361926,2,61,0,1,1630146177,1,1.0,28.0,1.0,-9.0,4.0,1310978 -3252099,1630361394,2,62,0,1,1630146178,2,1.0,40.0,1.0,-9.0,4.0,1310979 -3252100,1630361916,2,45,0,1,1630146179,1,1.0,40.0,1.0,-9.0,4.0,1310980 -3252101,1630361382,2,56,0,1,1630146180,2,1.0,40.0,1.0,-9.0,4.0,1310981 -3252102,1630361917,2,45,0,1,1630146181,1,1.0,40.0,1.0,-9.0,4.0,1310982 -3252103,1630361890,2,62,0,1,1630146182,1,1.0,50.0,1.0,-9.0,2.0,1310983 -3252104,1630361046,2,61,0,1,1630146183,2,1.0,40.0,1.0,-9.0,4.0,1310984 -3252105,1630360901,1,55,0,1,1630146184,2,1.0,50.0,1.0,-9.0,4.0,1310985 -3252106,1630361796,2,48,0,1,1630146185,1,1.0,50.0,1.0,-9.0,4.0,1310986 -3252107,1630361797,2,48,0,1,1630146186,1,1.0,50.0,1.0,-9.0,4.0,1310987 -3252108,1630361207,2,64,0,1,1630146187,2,6.0,-9.0,-9.0,-9.0,4.0,1310988 -3252109,1630361221,2,67,1,2,1630146187,1,6.0,-9.0,-9.0,-9.0,4.0,1310988 -3252110,1630361214,2,33,2,3,1630146187,1,1.0,8.0,6.0,15.0,4.0,1310988 -3252111,1630361208,2,64,0,1,1630146188,2,6.0,-9.0,-9.0,-9.0,4.0,1310989 -3252112,1630361222,2,67,1,2,1630146188,1,6.0,-9.0,-9.0,-9.0,4.0,1310989 -3252113,1630361215,2,33,2,3,1630146188,1,1.0,8.0,6.0,15.0,4.0,1310989 -3252114,1630361209,2,64,0,1,1630146189,2,6.0,-9.0,-9.0,-9.0,4.0,1310990 -3252115,1630361223,2,67,1,2,1630146189,1,6.0,-9.0,-9.0,-9.0,4.0,1310990 -3252116,1630361216,2,33,2,3,1630146189,1,1.0,8.0,6.0,15.0,4.0,1310990 -3252117,1630361210,2,64,0,1,1630146190,2,6.0,-9.0,-9.0,-9.0,4.0,1310991 -3252118,1630361224,2,67,1,2,1630146190,1,6.0,-9.0,-9.0,-9.0,4.0,1310991 -3252119,1630361217,2,33,2,3,1630146190,1,1.0,8.0,6.0,15.0,4.0,1310991 -3252120,1630361211,2,64,0,1,1630146191,2,6.0,-9.0,-9.0,-9.0,4.0,1310992 -3252121,1630361225,2,67,1,2,1630146191,1,6.0,-9.0,-9.0,-9.0,4.0,1310992 -3252122,1630361218,2,33,2,3,1630146191,1,1.0,8.0,6.0,15.0,4.0,1310992 -3252123,1630361516,2,52,0,1,1630146192,2,1.0,50.0,1.0,-9.0,2.0,1310993 -3252124,1630361518,2,65,1,2,1630146192,1,6.0,-9.0,-9.0,-9.0,4.0,1310993 -3252125,1630361520,4,18,14,3,1630146192,1,6.0,-9.0,-9.0,14.0,4.0,1310993 -3252126,1630361517,2,52,0,1,1630146193,2,1.0,50.0,1.0,-9.0,2.0,1310994 -3252127,1630361519,2,65,1,2,1630146193,1,6.0,-9.0,-9.0,-9.0,4.0,1310994 -3252128,1630361521,4,18,14,3,1630146193,1,6.0,-9.0,-9.0,14.0,4.0,1310994 -3252129,1630361212,2,64,0,1,1630146194,2,6.0,-9.0,-9.0,-9.0,4.0,1310995 -3252130,1630361226,2,67,1,2,1630146194,1,6.0,-9.0,-9.0,-9.0,4.0,1310995 -3252131,1630361219,2,33,2,3,1630146194,1,1.0,8.0,6.0,15.0,4.0,1310995 -3252132,1630361031,2,49,0,1,1630146195,1,1.0,40.0,1.0,-9.0,4.0,1310996 -3252133,1630361028,2,49,1,2,1630146195,2,3.0,-9.0,-9.0,-9.0,3.0,1310996 -3252134,1630361032,2,49,0,1,1630146196,1,1.0,40.0,1.0,-9.0,4.0,1310997 -3252135,1630361029,2,49,1,2,1630146196,2,3.0,-9.0,-9.0,-9.0,3.0,1310997 -3252136,1630361033,2,49,0,1,1630146197,1,1.0,40.0,1.0,-9.0,4.0,1310998 -3252137,1630361030,2,49,1,2,1630146197,2,3.0,-9.0,-9.0,-9.0,3.0,1310998 -3252138,1630362011,2,58,0,1,1630146198,1,1.0,50.0,3.0,-9.0,4.0,1310999 -3252139,1630362014,2,28,2,2,1630146198,1,3.0,35.0,4.0,-9.0,4.0,1310999 -3252140,1630362017,2,32,11,3,1630146198,1,1.0,30.0,3.0,-9.0,4.0,1310999 -3252141,1630362012,2,58,0,1,1630146199,1,1.0,50.0,3.0,-9.0,4.0,1311000 -3252142,1630362015,2,28,2,2,1630146199,1,3.0,35.0,4.0,-9.0,4.0,1311000 -3252143,1630362018,2,32,11,3,1630146199,1,1.0,30.0,3.0,-9.0,4.0,1311000 -3252144,1630361653,2,58,0,1,1630146200,1,1.0,40.0,4.0,-9.0,4.0,1311001 -3252145,1630361651,2,60,1,2,1630146200,2,1.0,40.0,1.0,-9.0,4.0,1311001 -3252146,1630361654,2,58,0,1,1630146201,1,1.0,40.0,4.0,-9.0,4.0,1311002 -3252147,1630361652,2,60,1,2,1630146201,2,1.0,40.0,1.0,-9.0,4.0,1311002 -3252148,1630361113,2,53,0,1,1630146202,1,1.0,40.0,1.0,-9.0,2.0,1311003 -3252149,1630361111,2,53,1,2,1630146202,2,2.0,40.0,1.0,-9.0,4.0,1311003 -3252150,1630361443,2,58,0,1,1630146203,2,1.0,40.0,1.0,-9.0,4.0,1311004 -3252151,1630361446,2,58,12,2,1630146203,1,1.0,32.0,1.0,-9.0,4.0,1311004 -3252152,1630361244,2,46,0,1,1630146204,2,1.0,37.0,1.0,16.0,4.0,1311005 -3252153,1630361246,2,30,2,2,1630146204,1,1.0,27.0,3.0,-9.0,4.0,1311005 -3252154,1630361444,2,58,0,1,1630146205,2,1.0,40.0,1.0,-9.0,4.0,1311006 -3252155,1630361447,2,58,12,2,1630146205,1,1.0,32.0,1.0,-9.0,4.0,1311006 -3252156,1630361978,2,45,0,1,1630146206,1,1.0,50.0,1.0,-9.0,2.0,1311007 -3252157,1630361979,2,19,2,2,1630146206,1,1.0,40.0,5.0,15.0,4.0,1311007 -3252158,1630361597,2,45,0,1,1630146207,2,1.0,45.0,1.0,15.0,4.0,1311008 -3252159,1630361599,2,18,2,2,1630146207,1,1.0,40.0,1.0,-9.0,4.0,1311008 -3252160,1630361445,2,58,0,1,1630146208,2,1.0,40.0,1.0,-9.0,4.0,1311009 -3252161,1630361448,2,58,12,2,1630146208,1,1.0,32.0,1.0,-9.0,4.0,1311009 -3252162,1630361245,2,46,0,1,1630146209,2,1.0,37.0,1.0,16.0,4.0,1311010 -3252163,1630361247,2,30,2,2,1630146209,1,1.0,27.0,3.0,-9.0,4.0,1311010 -3252164,1630361598,2,45,0,1,1630146210,2,1.0,45.0,1.0,15.0,4.0,1311011 -3252165,1630361600,2,18,2,2,1630146210,1,1.0,40.0,1.0,-9.0,4.0,1311011 -3252166,1630361114,2,53,0,1,1630146211,1,1.0,40.0,1.0,-9.0,2.0,1311012 -3252167,1630361112,2,53,1,2,1630146211,2,2.0,40.0,1.0,-9.0,4.0,1311012 -3252168,1630361383,2,50,0,1,1630146212,2,1.0,40.0,1.0,-9.0,4.0,1311013 -3252169,1630361384,2,28,2,2,1630146212,2,1.0,35.0,1.0,-9.0,4.0,1311013 -3252170,1630361422,2,57,0,1,1630146213,1,1.0,37.0,1.0,-9.0,2.0,1311014 -3252171,1630361419,2,56,1,2,1630146213,2,1.0,12.0,4.0,-9.0,4.0,1311014 -3252172,1630361973,2,57,0,1,1630146214,1,1.0,40.0,1.0,15.0,2.0,1311015 -3252173,1630361974,2,35,2,2,1630146214,1,1.0,40.0,1.0,-9.0,4.0,1311015 -3252174,1630361423,2,57,0,1,1630146215,1,1.0,37.0,1.0,-9.0,2.0,1311016 -3252175,1630361420,2,56,1,2,1630146215,2,1.0,12.0,4.0,-9.0,4.0,1311016 -3252176,1630361424,2,57,0,1,1630146216,1,1.0,37.0,1.0,-9.0,2.0,1311017 -3252177,1630361421,2,56,1,2,1630146216,2,1.0,12.0,4.0,-9.0,4.0,1311017 -3252178,1630361738,2,59,0,1,1630146217,2,6.0,-9.0,-9.0,-9.0,4.0,1311018 -3252179,1630361835,2,55,0,1,1630146218,1,6.0,-9.0,-9.0,-9.0,2.0,1311019 -3252180,1630361857,2,63,0,1,1630146219,1,6.0,-9.0,-9.0,-9.0,4.0,1311020 -3252181,1630362000,2,50,0,1,1630146220,1,6.0,-9.0,-9.0,-9.0,4.0,1311021 -3252182,1630361836,2,55,0,1,1630146221,1,6.0,-9.0,-9.0,-9.0,2.0,1311022 -3252183,1630361790,2,54,0,1,1630146222,1,6.0,-9.0,-9.0,-9.0,4.0,1311023 -3252184,1630361532,2,50,0,1,1630146223,2,6.0,-9.0,-9.0,-9.0,4.0,1311024 -3252185,1630361905,2,56,0,1,1630146224,1,6.0,-9.0,-9.0,-9.0,4.0,1311025 -3252186,1630361332,2,58,0,1,1630146225,2,6.0,-9.0,-9.0,-9.0,4.0,1311026 -3252187,1630361848,2,54,0,1,1630146226,1,6.0,-9.0,-9.0,-9.0,4.0,1311027 -3252188,1630361969,2,56,0,1,1630146227,1,6.0,-9.0,-9.0,-9.0,4.0,1311028 -3252189,1630361107,2,64,0,1,1630146228,2,6.0,-9.0,-9.0,-9.0,4.0,1311029 -3252190,1630361765,2,50,0,1,1630146229,2,3.0,-9.0,-9.0,-9.0,4.0,1311030 -3252191,1630361855,2,51,0,1,1630146230,1,6.0,-9.0,-9.0,-9.0,2.0,1311031 -3252192,1630361548,2,60,0,1,1630146231,2,6.0,-9.0,-9.0,-9.0,4.0,1311032 -3252193,1630361277,2,55,0,1,1630146232,2,6.0,-9.0,-9.0,-9.0,4.0,1311033 -3252194,1630361856,2,51,0,1,1630146233,1,6.0,-9.0,-9.0,-9.0,2.0,1311034 -3252195,1630361415,2,59,0,1,1630146234,2,3.0,-9.0,-9.0,-9.0,4.0,1311035 -3252196,1630361764,2,52,0,1,1630146235,2,3.0,-9.0,-9.0,-9.0,4.0,1311036 -3252197,1630361800,2,59,0,1,1630146236,1,6.0,11.0,6.0,-9.0,4.0,1311037 -3252198,1630361863,2,58,0,1,1630146237,1,6.0,-9.0,-9.0,-9.0,2.0,1311038 -3252199,1630361896,2,62,0,1,1630146238,1,6.0,-9.0,-9.0,-9.0,2.0,1311039 -3252200,1630361878,2,59,0,1,1630146239,1,6.0,-9.0,-9.0,-9.0,2.0,1311040 -3252201,1630361666,2,51,0,1,1630146240,2,6.0,-9.0,-9.0,-9.0,4.0,1311041 -3252202,1630361449,2,62,0,1,1630146241,2,6.0,-9.0,-9.0,-9.0,4.0,1311042 -3252203,1630361899,2,58,0,1,1630146242,1,6.0,-9.0,-9.0,-9.0,4.0,1311043 -3252204,1630361274,2,55,0,1,1630146243,2,6.0,-9.0,-9.0,-9.0,4.0,1311044 -3252205,1630361911,2,60,0,1,1630146244,1,6.0,-9.0,-9.0,-9.0,4.0,1311045 -3252206,1630361546,2,62,0,1,1630146245,2,6.0,-9.0,-9.0,-9.0,4.0,1311046 -3252207,1630361843,2,54,0,1,1630146246,1,6.0,-9.0,-9.0,-9.0,4.0,1311047 -3252208,1630361881,2,45,0,1,1630146247,1,6.0,-9.0,-9.0,-9.0,4.0,1311048 -3252209,1630361162,2,54,0,1,1630146248,2,6.0,-9.0,-9.0,15.0,4.0,1311049 -3252210,1630361625,2,57,0,1,1630146249,2,6.0,-9.0,-9.0,-9.0,4.0,1311050 -3252211,1630361097,2,57,0,1,1630146250,2,6.0,-9.0,-9.0,-9.0,4.0,1311051 -3252212,1630361123,2,58,0,1,1630146251,2,6.0,-9.0,-9.0,-9.0,2.0,1311052 -3252213,1630361390,2,45,0,1,1630146252,2,6.0,-9.0,-9.0,-9.0,4.0,1311053 -3252214,1630361718,2,58,0,1,1630146253,2,6.0,-9.0,-9.0,-9.0,4.0,1311054 -3252215,1630361885,2,61,0,1,1630146254,1,6.0,32.0,6.0,15.0,4.0,1311055 -3252216,1630361391,2,45,0,1,1630146255,2,6.0,-9.0,-9.0,-9.0,4.0,1311056 -3252217,1630361719,2,58,0,1,1630146256,2,6.0,-9.0,-9.0,-9.0,4.0,1311057 -3252218,1630361849,2,54,0,1,1630146257,1,6.0,-9.0,-9.0,-9.0,4.0,1311058 -3252219,1630361416,2,59,0,1,1630146258,2,3.0,-9.0,-9.0,-9.0,4.0,1311059 -3252220,1630361912,2,60,0,1,1630146259,1,6.0,-9.0,-9.0,-9.0,4.0,1311060 -3252221,1630361883,2,61,0,1,1630146260,1,6.0,-9.0,-9.0,-9.0,4.0,1311061 -3252222,1630361735,2,45,0,1,1630146261,2,6.0,-9.0,-9.0,-9.0,4.0,1311062 -3252223,1630361827,2,55,0,1,1630146262,1,6.0,-9.0,-9.0,-9.0,4.0,1311063 -3252224,1630361697,2,63,0,1,1630146263,2,6.0,-9.0,-9.0,-9.0,4.0,1311064 -3252225,1630361927,2,51,0,1,1630146264,1,3.0,-9.0,-9.0,-9.0,4.0,1311065 -3252226,1630361087,2,60,0,1,1630146265,2,6.0,32.0,6.0,-9.0,4.0,1311066 -3252227,1630361788,2,55,0,1,1630146266,1,6.0,-9.0,-9.0,-9.0,4.0,1311067 -3252228,1630361967,2,64,0,1,1630146267,1,6.0,-9.0,-9.0,-9.0,2.0,1311068 -3252229,1630361834,2,60,0,1,1630146268,1,6.0,-9.0,-9.0,-9.0,4.0,1311069 -3252230,1630361129,2,52,0,1,1630146269,2,6.0,-9.0,-9.0,-9.0,4.0,1311070 -3252231,1630361985,2,57,0,1,1630146270,1,6.0,-9.0,-9.0,-9.0,2.0,1311071 -3252232,1630361799,2,54,0,1,1630146271,1,6.0,20.0,4.0,-9.0,4.0,1311072 -3252233,1630361904,2,62,0,1,1630146272,1,6.0,30.0,4.0,-9.0,4.0,1311073 -3252234,1630361547,2,62,0,1,1630146273,2,6.0,-9.0,-9.0,-9.0,4.0,1311074 -3252235,1630361862,2,54,0,1,1630146274,1,6.0,-9.0,-9.0,-9.0,2.0,1311075 -3252236,1630361801,2,59,0,1,1630146275,1,6.0,11.0,6.0,-9.0,4.0,1311076 -3252237,1630361099,2,50,0,1,1630146276,2,6.0,-9.0,-9.0,-9.0,4.0,1311077 -3252238,1630361839,2,58,0,1,1630146277,1,6.0,-9.0,-9.0,-9.0,4.0,1311078 -3252239,1630361882,2,45,0,1,1630146278,1,6.0,-9.0,-9.0,-9.0,4.0,1311079 -3252240,1630361906,2,56,0,1,1630146279,1,6.0,-9.0,-9.0,-9.0,4.0,1311080 -3252241,1630361576,2,53,0,1,1630146280,2,6.0,-9.0,-9.0,-9.0,4.0,1311081 -3252242,1630361308,2,63,0,1,1630146281,2,6.0,-9.0,-9.0,-9.0,4.0,1311082 -3252243,1630361485,2,61,0,1,1630146282,2,6.0,-9.0,-9.0,-9.0,4.0,1311083 -3252244,1630361897,2,62,0,1,1630146283,1,6.0,-9.0,-9.0,-9.0,2.0,1311084 -3252245,1630361964,2,61,0,1,1630146284,1,6.0,-9.0,-9.0,-9.0,4.0,1311085 -3252246,1630361130,2,64,0,1,1630146285,2,6.0,15.0,5.0,-9.0,4.0,1311086 -3252247,1630361118,2,62,0,1,1630146286,2,6.0,-9.0,-9.0,-9.0,4.0,1311087 -3252248,1630361789,2,55,0,1,1630146287,1,6.0,-9.0,-9.0,-9.0,4.0,1311088 -3252249,1630361457,2,56,0,1,1630146288,2,6.0,-9.0,-9.0,-9.0,4.0,1311089 -3252250,1630361375,2,59,0,1,1630146289,2,6.0,-9.0,-9.0,-9.0,4.0,1311090 -3252251,1630361720,2,58,0,1,1630146290,2,6.0,-9.0,-9.0,-9.0,4.0,1311091 -3252252,1630361573,2,59,0,1,1630146291,2,6.0,-9.0,-9.0,-9.0,4.0,1311092 -3252253,1630361907,2,56,0,1,1630146292,1,6.0,-9.0,-9.0,-9.0,4.0,1311093 -3252254,1630362097,4,46,0,1,1630146293,2,6.0,10.0,6.0,15.0,4.0,1311094 -3252255,1630362051,4,62,0,1,1630146294,1,6.0,-9.0,-9.0,-9.0,4.0,1311095 -3252256,1630362052,4,62,0,1,1630146295,1,6.0,-9.0,-9.0,-9.0,4.0,1311096 -3252257,1630362113,4,60,0,1,1630146296,2,6.0,-9.0,-9.0,-9.0,4.0,1311097 -3252258,1630362068,4,49,0,1,1630146297,1,6.0,4.0,6.0,-9.0,2.0,1311098 -3252259,1630360918,1,62,0,1,1630146298,2,6.0,-9.0,-9.0,-9.0,4.0,1311099 -3252260,1630361980,2,58,0,1,1630146299,1,6.0,-9.0,-9.0,-9.0,4.0,1311100 -3252261,1630361999,2,52,0,1,1630146300,1,6.0,-9.0,-9.0,-9.0,4.0,1311101 -3252262,1630361773,2,58,0,1,1630146301,2,6.0,-9.0,-9.0,-9.0,4.0,1311102 -3252263,1630361822,2,45,0,1,1630146302,1,6.0,55.0,4.0,-9.0,4.0,1311103 -3252264,1630361696,2,49,0,1,1630146303,2,6.0,20.0,5.0,-9.0,4.0,1311104 -3252265,1630361879,2,61,0,1,1630146304,1,6.0,-9.0,-9.0,-9.0,2.0,1311105 -3252266,1630361880,2,61,0,1,1630146305,1,6.0,-9.0,-9.0,-9.0,2.0,1311106 -3252267,1630361925,2,63,0,1,1630146306,1,6.0,-9.0,-9.0,-9.0,2.0,1311107 -3252268,1630361098,2,47,0,1,1630146307,2,6.0,-9.0,-9.0,15.0,4.0,1311108 -3252269,1630361498,2,47,0,1,1630146308,2,6.0,-9.0,-9.0,-9.0,4.0,1311109 -3252270,1630361748,2,61,0,1,1630146309,2,6.0,40.0,6.0,-9.0,4.0,1311110 -3252271,1630361934,2,54,0,1,1630146310,1,6.0,-9.0,-9.0,-9.0,2.0,1311111 -3252272,1630361854,2,60,0,1,1630146311,1,6.0,-9.0,-9.0,-9.0,4.0,1311112 -3252273,1630361946,2,57,0,1,1630146312,1,6.0,-9.0,-9.0,-9.0,4.0,1311113 -3252274,1630361670,2,50,0,1,1630146313,2,3.0,-9.0,-9.0,15.0,4.0,1311114 -3252275,1630361877,2,64,0,1,1630146314,1,6.0,-9.0,-9.0,-9.0,2.0,1311115 -3252276,1630361898,2,63,0,1,1630146315,1,6.0,-9.0,-9.0,-9.0,2.0,1311116 -3252277,1630361706,2,61,0,1,1630146316,1,3.0,-9.0,-9.0,15.0,4.0,1311117 -3252278,1630361705,2,48,13,2,1630146316,2,3.0,-9.0,-9.0,15.0,4.0,1311117 -3252279,1630361707,2,21,15,3,1630146316,1,6.0,-9.0,-9.0,15.0,4.0,1311117 -3252280,1630361601,2,49,0,1,1630146317,2,6.0,-9.0,-9.0,-9.0,4.0,1311118 -3252281,1630361603,2,35,1,2,1630146317,1,6.0,-9.0,-9.0,-9.0,4.0,1311118 -3252282,1630361605,2,30,12,3,1630146317,1,6.0,-9.0,-9.0,-9.0,4.0,1311118 -3252283,1630361816,2,54,0,1,1630146318,1,6.0,-9.0,-9.0,-9.0,4.0,1311119 -3252284,1630361818,2,75,15,2,1630146318,1,3.0,-9.0,-9.0,-9.0,4.0,1311119 -3252285,1630361817,2,58,15,3,1630146318,1,3.0,-9.0,-9.0,-9.0,4.0,1311119 -3252286,1630361602,2,49,0,1,1630146319,2,6.0,-9.0,-9.0,-9.0,4.0,1311120 -3252287,1630361604,2,35,1,2,1630146319,1,6.0,-9.0,-9.0,-9.0,4.0,1311120 -3252288,1630361606,2,30,12,3,1630146319,1,6.0,-9.0,-9.0,-9.0,4.0,1311120 -3252289,1630361011,2,57,0,1,1630146320,2,6.0,-9.0,-9.0,-9.0,4.0,1311121 -3252290,1630361013,2,23,2,2,1630146320,1,6.0,-9.0,-9.0,14.0,4.0,1311121 -3252291,1630361012,2,22,2,3,1630146320,2,6.0,20.0,6.0,-9.0,4.0,1311121 -3252292,1630361490,2,47,0,1,1630146321,2,6.0,-9.0,-9.0,-9.0,4.0,1311122 -3252293,1630361491,2,13,2,2,1630146321,1,-9.0,-9.0,-9.0,9.0,-9.0,1311122 -3252294,1630361492,2,13,2,3,1630146321,2,-9.0,-9.0,-9.0,9.0,-9.0,1311122 -3252295,1630361021,2,57,0,1,1630146322,1,6.0,-9.0,-9.0,-9.0,2.0,1311123 -3252296,1630361020,2,45,13,2,1630146322,2,6.0,-9.0,-9.0,-9.0,4.0,1311123 -3252297,1630361461,2,58,0,1,1630146323,2,6.0,-9.0,-9.0,-9.0,4.0,1311124 -3252298,1630361522,2,57,0,1,1630146324,2,6.0,-9.0,-9.0,-9.0,4.0,1311125 -3252299,1630361708,2,55,0,1,1630146325,2,6.0,-9.0,-9.0,-9.0,4.0,1311126 -3252300,1630361709,2,55,15,2,1630146325,1,6.0,-9.0,-9.0,-9.0,4.0,1311126 -3252301,1630361055,2,62,0,1,1630146326,1,6.0,-9.0,-9.0,-9.0,4.0,1311127 -3252302,1630361462,2,58,0,1,1630146327,2,6.0,-9.0,-9.0,-9.0,4.0,1311128 -3252303,1630361465,2,62,1,2,1630146327,1,6.0,-9.0,-9.0,-9.0,4.0,1311128 -3252304,1630361315,2,57,0,1,1630146328,2,6.0,-9.0,-9.0,-9.0,4.0,1311129 -3252305,1630361316,2,30,2,2,1630146328,1,6.0,-9.0,-9.0,-9.0,4.0,1311129 -3252306,1630361053,2,50,0,1,1630146329,1,6.0,-9.0,-9.0,-9.0,4.0,1311130 -3252307,1630361052,2,35,2,2,1630146329,2,6.0,-9.0,-9.0,-9.0,4.0,1311130 -3252308,1630361523,2,57,0,1,1630146330,2,6.0,-9.0,-9.0,-9.0,4.0,1311131 -3252309,1630361525,2,71,1,2,1630146330,1,6.0,-9.0,-9.0,-9.0,4.0,1311131 -3252310,1630361794,2,60,0,1,1630146331,1,6.0,-9.0,-9.0,-9.0,4.0,1311132 -3252311,1630361795,2,45,15,2,1630146331,1,6.0,-9.0,-9.0,-9.0,4.0,1311132 -3252312,1630361692,2,63,0,1,1630146332,1,6.0,-9.0,-9.0,-9.0,2.0,1311133 -3252313,1630361691,2,41,13,2,1630146332,2,3.0,-9.0,-9.0,-9.0,4.0,1311133 -3252314,1630360829,2,51,0,1,1630146333,1,3.0,-9.0,-9.0,-9.0,4.0,1311134 -3252315,1630360828,2,71,6,2,1630146333,2,6.0,-9.0,-9.0,-9.0,4.0,1311134 -3252316,1630361677,2,59,0,1,1630146334,2,6.0,-9.0,-9.0,-9.0,4.0,1311135 -3252317,1630361678,2,53,13,2,1630146334,1,6.0,-9.0,-9.0,-9.0,4.0,1311135 -3252318,1630361463,2,58,0,1,1630146335,2,6.0,-9.0,-9.0,-9.0,4.0,1311136 -3252319,1630361466,2,62,1,2,1630146335,1,6.0,-9.0,-9.0,-9.0,4.0,1311136 -3252320,1630361831,2,61,0,1,1630146336,1,6.0,-9.0,-9.0,-9.0,2.0,1311137 -3252321,1630361832,2,26,10,2,1630146336,1,3.0,-9.0,-9.0,-9.0,4.0,1311137 -3252322,1630361000,2,51,0,1,1630146337,2,6.0,-9.0,-9.0,-9.0,4.0,1311138 -3252323,1630361001,2,16,2,2,1630146337,1,6.0,-9.0,-9.0,10.0,-9.0,1311138 -3252324,1630361301,2,54,0,1,1630146338,2,6.0,-9.0,-9.0,-9.0,4.0,1311139 -3252325,1630361302,2,17,2,2,1630146338,2,6.0,-9.0,-9.0,13.0,4.0,1311139 -3252326,1630361070,2,59,0,1,1630146339,2,6.0,-9.0,-9.0,-9.0,4.0,1311140 -3252327,1630361071,2,22,2,2,1630146339,2,3.0,-9.0,-9.0,-9.0,4.0,1311140 -3252328,1630361617,2,56,0,1,1630146340,2,3.0,10.0,4.0,-9.0,4.0,1311141 -3252329,1630361618,2,18,2,2,1630146340,1,3.0,-9.0,-9.0,15.0,4.0,1311141 -3252330,1630361377,2,51,0,1,1630146341,1,6.0,-9.0,-9.0,-9.0,4.0,1311142 -3252331,1630361376,2,52,1,2,1630146341,2,3.0,-9.0,-9.0,-9.0,4.0,1311142 -3252332,1630361575,2,58,0,1,1630146342,1,6.0,-9.0,-9.0,-9.0,2.0,1311143 -3252333,1630361574,2,56,12,2,1630146342,2,6.0,-9.0,-9.0,15.0,4.0,1311143 -3252334,1630361125,2,46,0,1,1630146343,2,6.0,25.0,5.0,-9.0,4.0,1311144 -3252335,1630361127,2,20,2,2,1630146343,2,6.0,-9.0,-9.0,-9.0,4.0,1311144 -3252336,1630361126,2,46,0,1,1630146344,2,6.0,25.0,5.0,-9.0,4.0,1311145 -3252337,1630361128,2,20,2,2,1630146344,2,6.0,-9.0,-9.0,-9.0,4.0,1311145 -3252338,1630361242,2,47,0,1,1630146345,2,3.0,40.0,3.0,15.0,4.0,1311146 -3252339,1630361243,2,8,2,2,1630146345,2,-9.0,-9.0,-9.0,5.0,-9.0,1311146 -3252340,1630362004,2,45,0,1,1630146346,1,1.0,12.0,5.0,-9.0,4.0,1311147 -3252341,1630361400,2,56,0,1,1630146347,2,1.0,99.0,1.0,-9.0,4.0,1311148 -3252342,1630361066,2,61,0,1,1630146348,2,1.0,38.0,1.0,-9.0,4.0,1311149 -3252343,1630361894,2,56,0,1,1630146349,1,1.0,32.0,1.0,-9.0,2.0,1311150 -3252344,1630361828,2,63,0,1,1630146350,1,1.0,25.0,1.0,-9.0,4.0,1311151 -3252345,1630361272,2,60,0,1,1630146351,2,1.0,50.0,2.0,-9.0,4.0,1311152 -3252346,1630361903,2,47,0,1,1630146352,1,1.0,32.0,1.0,-9.0,4.0,1311153 -3252347,1630361345,2,57,0,1,1630146353,2,1.0,40.0,1.0,-9.0,4.0,1311154 -3252348,1630361140,2,59,0,1,1630146354,2,1.0,20.0,4.0,-9.0,4.0,1311155 -3252349,1630361947,2,48,0,1,1630146355,1,1.0,36.0,6.0,-9.0,4.0,1311156 -3252350,1630361067,2,61,0,1,1630146356,2,1.0,38.0,1.0,-9.0,4.0,1311157 -3252351,1630361346,2,57,0,1,1630146357,2,1.0,40.0,1.0,-9.0,4.0,1311158 -3252352,1630361840,2,51,0,1,1630146358,1,1.0,20.0,1.0,-9.0,2.0,1311159 -3252353,1630361229,2,59,0,1,1630146359,2,1.0,40.0,1.0,-9.0,4.0,1311160 -3252354,1630361141,2,59,0,1,1630146360,2,1.0,20.0,4.0,-9.0,4.0,1311161 -3252355,1630362005,2,45,0,1,1630146361,1,1.0,12.0,5.0,-9.0,4.0,1311162 -3252356,1630361886,2,54,0,1,1630146362,1,1.0,25.0,1.0,-9.0,4.0,1311163 -3252357,1630361347,2,57,0,1,1630146363,2,1.0,40.0,1.0,-9.0,4.0,1311164 -3252358,1630361887,2,54,0,1,1630146364,1,1.0,25.0,1.0,-9.0,4.0,1311165 -3252359,1630361195,2,49,0,1,1630146365,2,1.0,30.0,1.0,13.0,4.0,1311166 -3252360,1630361535,2,64,0,1,1630146366,2,2.0,7.0,2.0,-9.0,4.0,1311167 -3252361,1630361196,2,49,0,1,1630146367,2,1.0,30.0,1.0,13.0,4.0,1311168 -3252362,1630361568,2,58,0,1,1630146368,2,1.0,40.0,1.0,-9.0,4.0,1311169 -3252363,1630361401,2,56,0,1,1630146369,2,1.0,99.0,1.0,-9.0,4.0,1311170 -3252364,1630361124,2,52,0,1,1630146370,2,1.0,40.0,1.0,-9.0,4.0,1311171 -3252365,1630361824,2,49,0,1,1630146371,1,1.0,25.0,1.0,-9.0,4.0,1311172 -3252366,1630361941,2,61,0,1,1630146372,1,1.0,3.0,6.0,-9.0,4.0,1311173 -3252367,1630361406,2,62,0,1,1630146373,2,1.0,40.0,1.0,-9.0,4.0,1311174 -3252368,1630361407,2,62,0,1,1630146374,2,1.0,40.0,1.0,-9.0,4.0,1311175 -3252369,1630361833,2,64,0,1,1630146375,1,1.0,40.0,1.0,-9.0,4.0,1311176 -3252370,1630362095,4,58,0,1,1630146376,2,1.0,40.0,1.0,-9.0,4.0,1311177 -3252371,1630362096,4,58,0,1,1630146377,2,1.0,40.0,1.0,-9.0,4.0,1311178 -3252372,1630361487,2,58,0,1,1630146378,2,1.0,40.0,1.0,-9.0,4.0,1311179 -3252373,1630361924,2,54,0,1,1630146379,1,1.0,40.0,1.0,-9.0,4.0,1311180 -3252374,1630361914,2,53,0,1,1630146380,1,1.0,40.0,1.0,-9.0,4.0,1311181 -3252375,1630361749,2,55,0,1,1630146381,2,2.0,40.0,4.0,-9.0,4.0,1311182 -3252376,1630361970,2,60,0,1,1630146382,1,1.0,35.0,1.0,-9.0,4.0,1311183 -3252377,1630361767,2,48,0,1,1630146383,2,1.0,37.0,1.0,16.0,4.0,1311184 -3252378,1630361607,2,51,0,1,1630146384,2,1.0,36.0,1.0,15.0,4.0,1311185 -3252379,1630361968,2,47,0,1,1630146385,1,1.0,37.0,4.0,-9.0,4.0,1311186 -3252380,1630361513,2,56,0,1,1630146386,2,1.0,25.0,1.0,-9.0,4.0,1311187 -3252381,1630361514,2,56,0,1,1630146387,2,1.0,25.0,1.0,-9.0,4.0,1311188 -3252382,1630361990,2,52,0,1,1630146388,1,1.0,32.0,6.0,-9.0,4.0,1311189 -3252383,1630361515,2,56,0,1,1630146389,2,1.0,25.0,1.0,-9.0,4.0,1311190 -3252384,1630361426,2,55,0,1,1630146390,2,1.0,38.0,1.0,-9.0,4.0,1311191 -3252385,1630361608,2,51,0,1,1630146391,2,1.0,36.0,1.0,15.0,4.0,1311192 -3252386,1630361842,2,54,0,1,1630146392,1,1.0,35.0,4.0,-9.0,2.0,1311193 -3252387,1630361609,2,51,0,1,1630146393,2,1.0,36.0,1.0,15.0,4.0,1311194 -3252388,1630361273,2,53,0,1,1630146394,2,1.0,32.0,1.0,-9.0,4.0,1311195 -3252389,1630362099,4,50,0,1,1630146395,2,1.0,40.0,1.0,-9.0,4.0,1311196 -3252390,1630362066,4,61,0,1,1630146396,1,1.0,24.0,1.0,-9.0,4.0,1311197 -3252391,1630362067,4,61,0,1,1630146397,1,1.0,24.0,1.0,-9.0,4.0,1311198 -3252392,1630361846,2,51,0,1,1630146398,1,1.0,40.0,1.0,-9.0,4.0,1311199 -3252393,1630361847,2,51,0,1,1630146399,1,1.0,40.0,1.0,-9.0,4.0,1311200 -3252394,1630361626,2,58,0,1,1630146400,2,6.0,-9.0,-9.0,-9.0,3.0,1311201 -3252395,1630361628,2,21,2,2,1630146400,2,1.0,30.0,3.0,15.0,4.0,1311201 -3252396,1630361630,2,24,15,3,1630146400,1,6.0,20.0,6.0,-9.0,4.0,1311201 -3252397,1630361627,2,58,0,1,1630146401,2,6.0,-9.0,-9.0,-9.0,3.0,1311202 -3252398,1630361629,2,21,2,2,1630146401,2,1.0,30.0,3.0,15.0,4.0,1311202 -3252399,1630361631,2,24,15,3,1630146401,1,6.0,20.0,6.0,-9.0,4.0,1311202 -3252400,1630361005,2,55,0,1,1630146402,1,1.0,20.0,5.0,-9.0,4.0,1311203 -3252401,1630361008,2,19,2,2,1630146402,1,3.0,-9.0,-9.0,-9.0,4.0,1311203 -3252402,1630361002,2,51,10,3,1630146402,2,6.0,-9.0,-9.0,-9.0,4.0,1311203 -3252403,1630361006,2,55,0,1,1630146403,1,1.0,20.0,5.0,-9.0,4.0,1311204 -3252404,1630361009,2,19,2,2,1630146403,1,3.0,-9.0,-9.0,-9.0,4.0,1311204 -3252405,1630361003,2,51,10,3,1630146403,2,6.0,-9.0,-9.0,-9.0,4.0,1311204 -3252406,1630361358,2,46,0,1,1630146404,2,1.0,40.0,5.0,-9.0,4.0,1311205 -3252407,1630361359,2,28,10,2,1630146404,1,6.0,-9.0,-9.0,-9.0,4.0,1311205 -3252408,1630361360,2,33,12,3,1630146404,1,6.0,-9.0,-9.0,-9.0,4.0,1311205 -3252409,1630361385,2,49,0,1,1630146405,2,1.0,40.0,2.0,-9.0,4.0,1311206 -3252410,1630361386,2,14,2,2,1630146405,1,-9.0,-9.0,-9.0,10.0,-9.0,1311206 -3252411,1630361387,2,9,2,3,1630146405,1,-9.0,-9.0,-9.0,5.0,-9.0,1311206 -3252412,1630360805,2,46,0,1,1630146406,2,1.0,30.0,4.0,-9.0,4.0,1311207 -3252413,1630360803,2,78,6,2,1630146406,2,6.0,-9.0,-9.0,-9.0,4.0,1311207 -3252414,1630360804,2,87,10,3,1630146406,2,6.0,-9.0,-9.0,-9.0,4.0,1311207 -3252415,1630361034,2,45,0,1,1630146407,2,1.0,13.0,5.0,-9.0,4.0,1311208 -3252416,1630361035,2,22,2,2,1630146407,2,6.0,-9.0,-9.0,15.0,4.0,1311208 -3252417,1630361036,2,22,2,3,1630146407,1,6.0,-9.0,-9.0,14.0,4.0,1311208 -3252418,1630361025,2,48,0,1,1630146408,2,1.0,37.0,1.0,-9.0,4.0,1311209 -3252419,1630361026,2,49,1,2,1630146408,1,6.0,-9.0,-9.0,-9.0,4.0,1311209 -3252420,1630361027,2,11,2,3,1630146408,2,-9.0,-9.0,-9.0,7.0,-9.0,1311209 -3252421,1630361561,2,62,0,1,1630146409,2,3.0,40.0,6.0,-9.0,4.0,1311210 -3252422,1630361563,2,23,2,2,1630146409,2,1.0,23.0,5.0,-9.0,4.0,1311210 -3252423,1630360843,2,54,0,1,1630146410,2,1.0,50.0,4.0,-9.0,4.0,1311211 -3252424,1630360842,2,88,6,2,1630146410,2,6.0,-9.0,-9.0,-9.0,4.0,1311211 -3252425,1630361595,2,52,0,1,1630146411,2,1.0,8.0,6.0,-9.0,4.0,1311212 -3252426,1630361596,2,60,15,2,1630146411,1,6.0,-9.0,-9.0,-9.0,4.0,1311212 -3252427,1630361562,2,62,0,1,1630146412,2,3.0,40.0,6.0,-9.0,4.0,1311213 -3252428,1630361564,2,23,2,2,1630146412,2,1.0,23.0,5.0,-9.0,4.0,1311213 -3252429,1630361493,2,52,0,1,1630146413,2,6.0,-9.0,-9.0,-9.0,4.0,1311214 -3252430,1630361494,2,22,2,2,1630146413,1,1.0,21.0,1.0,-9.0,4.0,1311214 -3252431,1630362084,4,61,0,1,1630146414,2,6.0,-9.0,-9.0,-9.0,4.0,1311215 -3252432,1630362081,4,23,2,2,1630146414,1,1.0,50.0,6.0,14.0,4.0,1311215 -3252433,1630362085,4,61,0,1,1630146415,2,6.0,-9.0,-9.0,-9.0,4.0,1311216 -3252434,1630362082,4,23,2,2,1630146415,1,1.0,50.0,6.0,14.0,4.0,1311216 -3252435,1630361103,2,55,0,1,1630146416,2,1.0,20.0,4.0,-9.0,4.0,1311217 -3252436,1630361105,2,23,2,2,1630146416,1,6.0,-9.0,-9.0,-9.0,4.0,1311217 -3252437,1630361727,2,58,0,1,1630146417,2,1.0,30.0,1.0,15.0,4.0,1311218 -3252438,1630361729,2,34,2,2,1630146417,2,3.0,22.0,3.0,15.0,4.0,1311218 -3252439,1630361356,2,45,0,1,1630146418,2,1.0,20.0,1.0,-9.0,4.0,1311219 -3252440,1630361357,2,22,2,2,1630146418,1,3.0,40.0,6.0,-9.0,4.0,1311219 -3252441,1630361104,2,55,0,1,1630146419,2,1.0,20.0,4.0,-9.0,4.0,1311220 -3252442,1630361106,2,23,2,2,1630146419,1,6.0,-9.0,-9.0,-9.0,4.0,1311220 -3252443,1630361728,2,58,0,1,1630146420,2,1.0,30.0,1.0,15.0,4.0,1311221 -3252444,1630361730,2,34,2,2,1630146420,2,3.0,22.0,3.0,15.0,4.0,1311221 -3252445,1630361090,2,47,0,1,1630146421,2,1.0,91.0,1.0,-9.0,4.0,1311222 -3252446,1630361091,2,25,15,2,1630146421,2,6.0,-9.0,-9.0,-9.0,4.0,1311222 -3252447,1630361502,2,60,0,1,1630146422,2,6.0,-9.0,-9.0,-9.0,4.0,1311223 -3252448,1630361503,2,42,2,2,1630146422,1,1.0,40.0,6.0,15.0,4.0,1311223 -3252449,1630361632,2,57,0,1,1630146423,2,1.0,40.0,1.0,-9.0,4.0,1311224 -3252450,1630361634,2,48,5,2,1630146423,1,6.0,-9.0,-9.0,-9.0,4.0,1311224 -3252451,1630361060,2,50,0,1,1630146424,2,1.0,40.0,1.0,-9.0,4.0,1311225 -3252452,1630361061,2,24,2,2,1630146424,2,3.0,-9.0,-9.0,-9.0,4.0,1311225 -3252453,1630361633,2,57,0,1,1630146425,2,1.0,40.0,1.0,-9.0,4.0,1311226 -3252454,1630361635,2,48,5,2,1630146425,1,6.0,-9.0,-9.0,-9.0,4.0,1311226 -3252455,1630362064,4,48,0,1,1630146426,2,6.0,20.0,6.0,-9.0,4.0,1311227 -3252456,1630362062,4,19,2,2,1630146426,1,1.0,18.0,6.0,-9.0,4.0,1311227 -3252457,1630362065,4,48,0,1,1630146427,2,6.0,20.0,6.0,-9.0,4.0,1311228 -3252458,1630362063,4,19,2,2,1630146427,1,1.0,18.0,6.0,-9.0,4.0,1311228 -3252459,1630360888,2,53,0,1,1630146428,1,1.0,40.0,1.0,-9.0,4.0,1311229 -3252460,1630360885,3,46,13,2,1630146428,2,6.0,-9.0,-9.0,-9.0,4.0,1311229 -3252461,1630360889,2,53,0,1,1630146429,1,1.0,40.0,1.0,-9.0,4.0,1311230 -3252462,1630360886,3,46,13,2,1630146429,2,6.0,-9.0,-9.0,-9.0,4.0,1311230 -3252463,1630360890,2,53,0,1,1630146430,1,1.0,40.0,1.0,-9.0,4.0,1311231 -3252464,1630360887,3,46,13,2,1630146430,2,6.0,-9.0,-9.0,-9.0,4.0,1311231 -3252465,1630362056,4,52,0,1,1630146431,1,1.0,3.0,6.0,-9.0,4.0,1311232 -3252466,1630362059,4,43,1,2,1630146431,2,6.0,-9.0,-9.0,-9.0,4.0,1311232 -3252467,1630362057,4,52,0,1,1630146432,1,1.0,3.0,6.0,-9.0,4.0,1311233 -3252468,1630362060,4,43,1,2,1630146432,2,6.0,-9.0,-9.0,-9.0,4.0,1311233 -3252469,1630361565,2,54,0,1,1630146433,2,1.0,32.0,1.0,-9.0,4.0,1311234 -3252470,1630361566,2,51,1,2,1630146433,1,1.0,20.0,5.0,15.0,4.0,1311234 -3252471,1630361731,2,52,0,1,1630146434,2,2.0,40.0,3.0,-9.0,4.0,1311235 -3252472,1630361732,2,19,12,2,1630146434,2,1.0,40.0,1.0,15.0,4.0,1311235 -3252473,1630361533,2,50,0,1,1630146435,2,1.0,30.0,1.0,-9.0,4.0,1311236 -3252474,1630361534,2,19,2,2,1630146435,2,1.0,20.0,3.0,-9.0,4.0,1311236 -3252475,1630360765,2,87,0,1,1630146436,2,6.0,-9.0,-9.0,-9.0,4.0,1311237 -3252476,1630360852,2,66,0,1,1630146437,2,6.0,-9.0,-9.0,-9.0,4.0,1311238 -3252477,1630360782,2,74,0,1,1630146438,2,6.0,-9.0,-9.0,-9.0,4.0,1311239 -3252478,1630360766,2,68,0,1,1630146439,2,6.0,-9.0,-9.0,-9.0,4.0,1311240 -3252479,1630360853,2,88,0,1,1630146440,2,6.0,-9.0,-9.0,-9.0,4.0,1311241 -3252480,1630360854,2,24,7,2,1630146440,1,6.0,-9.0,-9.0,-9.0,4.0,1311241 -3252481,1630362039,2,66,0,1,1630146441,1,1.0,40.0,1.0,-9.0,4.0,1311242 -3252482,1630360832,2,75,0,1,1630146442,2,1.0,20.0,1.0,-9.0,4.0,1311243 -3252483,1630360777,2,65,0,1,1630146443,2,6.0,30.0,5.0,-9.0,4.0,1311244 -3252484,1630360838,2,69,0,1,1630146444,2,1.0,37.0,1.0,-9.0,4.0,1311245 -3252485,1630362043,2,67,0,1,1630146445,1,1.0,50.0,1.0,-9.0,4.0,1311246 -3252486,1630362044,2,67,0,1,1630146446,1,1.0,50.0,1.0,-9.0,4.0,1311247 -3252487,1630361363,2,69,0,1,1630146447,1,6.0,12.0,6.0,-9.0,2.0,1311248 -3252488,1630361361,2,61,1,2,1630146447,2,1.0,45.0,1.0,-9.0,4.0,1311248 -3252489,1630360846,2,68,0,1,1630146448,2,3.0,40.0,3.0,-9.0,4.0,1311249 -3252490,1630360848,2,52,1,2,1630146448,1,1.0,40.0,1.0,-9.0,4.0,1311249 -3252491,1630360834,2,71,0,1,1630146449,2,6.0,-9.0,-9.0,-9.0,4.0,1311250 -3252492,1630360835,2,53,2,2,1630146449,1,1.0,60.0,1.0,-9.0,4.0,1311250 -3252493,1630360836,2,51,2,3,1630146449,1,1.0,40.0,1.0,-9.0,4.0,1311250 -3252494,1630360799,2,67,0,1,1630146450,2,6.0,-9.0,-9.0,-9.0,4.0,1311251 -3252495,1630362050,2,86,0,1,1630146451,1,6.0,-9.0,-9.0,-9.0,2.0,1311252 -3252496,1630360839,2,78,0,1,1630146452,2,6.0,-9.0,-9.0,-9.0,4.0,1311253 -3252497,1630360837,2,69,0,1,1630146453,2,6.0,-9.0,-9.0,-9.0,4.0,1311254 -3252498,1630360840,2,78,0,1,1630146454,2,6.0,-9.0,-9.0,-9.0,4.0,1311255 -3252499,1630362036,2,70,0,1,1630146455,1,6.0,-9.0,-9.0,-9.0,4.0,1311256 -3252500,1630362042,2,65,0,1,1630146456,1,6.0,-9.0,-9.0,-9.0,2.0,1311257 -3252501,1630360767,2,70,0,1,1630146457,2,6.0,-9.0,-9.0,-9.0,4.0,1311258 -3252502,1630360757,2,81,0,1,1630146458,2,6.0,-9.0,-9.0,-9.0,4.0,1311259 -3252503,1630362032,2,94,0,1,1630146459,1,6.0,-9.0,-9.0,-9.0,4.0,1311260 -3252504,1630362038,2,72,0,1,1630146460,1,3.0,-9.0,-9.0,15.0,2.0,1311261 -3252505,1630360856,2,80,0,1,1630146461,2,6.0,-9.0,-9.0,-9.0,4.0,1311262 -3252506,1630360779,2,65,0,1,1630146462,2,6.0,-9.0,-9.0,-9.0,4.0,1311263 -3252507,1630362033,2,71,0,1,1630146463,1,6.0,-9.0,-9.0,-9.0,4.0,1311264 -3252508,1630360814,2,67,0,1,1630146464,2,6.0,-9.0,-9.0,-9.0,4.0,1311265 -3252509,1630360808,2,72,0,1,1630146465,2,6.0,-9.0,-9.0,-9.0,4.0,1311266 -3252510,1630360858,2,67,0,1,1630146466,2,6.0,8.0,6.0,-9.0,4.0,1311267 -3252511,1630360813,2,78,0,1,1630146467,2,6.0,-9.0,-9.0,-9.0,4.0,1311268 -3252512,1630360870,2,82,0,1,1630146468,2,6.0,-9.0,-9.0,-9.0,4.0,1311269 -3252513,1630360823,2,67,0,1,1630146469,2,6.0,-9.0,-9.0,-9.0,4.0,1311270 -3252514,1630360768,2,72,0,1,1630146470,2,6.0,-9.0,-9.0,-9.0,3.0,1311271 -3252515,1630360761,2,82,0,1,1630146471,2,6.0,-9.0,-9.0,-9.0,4.0,1311272 -3252516,1630360762,2,82,0,1,1630146472,2,6.0,-9.0,-9.0,-9.0,4.0,1311273 -3252517,1630360774,2,65,0,1,1630146473,2,6.0,-9.0,-9.0,-9.0,4.0,1311274 -3252518,1630360821,2,69,0,1,1630146474,2,6.0,-9.0,-9.0,-9.0,4.0,1311275 -3252519,1630362040,2,75,0,1,1630146475,1,6.0,-9.0,-9.0,-9.0,2.0,1311276 -3252520,1630360800,2,67,0,1,1630146476,2,6.0,-9.0,-9.0,-9.0,4.0,1311277 -3252521,1630360770,2,68,0,1,1630146477,2,6.0,-9.0,-9.0,-9.0,4.0,1311278 -3252522,1630360855,2,73,0,1,1630146478,2,6.0,-9.0,-9.0,-9.0,4.0,1311279 -3252523,1630360780,2,65,0,1,1630146479,2,6.0,-9.0,-9.0,-9.0,4.0,1311280 -3252524,1630362037,2,77,0,1,1630146480,1,6.0,-9.0,-9.0,-9.0,4.0,1311281 -3252525,1630362025,4,70,0,1,1630146481,2,6.0,-9.0,-9.0,-9.0,4.0,1311282 -3252526,1630360860,2,68,0,1,1630146482,2,6.0,-9.0,-9.0,-9.0,4.0,1311283 -3252527,1630360769,2,71,0,1,1630146483,2,6.0,-9.0,-9.0,-9.0,4.0,1311284 -3252528,1630360859,2,65,0,1,1630146484,2,6.0,-9.0,-9.0,-9.0,4.0,1311285 -3252529,1630360863,2,79,0,1,1630146485,2,6.0,-9.0,-9.0,-9.0,4.0,1311286 -3252530,1630362030,2,83,0,1,1630146486,1,6.0,-9.0,-9.0,-9.0,4.0,1311287 -3252531,1630360806,2,66,0,1,1630146487,2,6.0,-9.0,-9.0,-9.0,4.0,1311288 -3252532,1630360807,2,66,0,1,1630146488,2,6.0,-9.0,-9.0,-9.0,4.0,1311289 -3252533,1630362028,2,86,0,1,1630146489,1,6.0,-9.0,-9.0,-9.0,2.0,1311290 -3252534,1630360758,2,67,0,1,1630146490,2,6.0,-9.0,-9.0,-9.0,4.0,1311291 -3252535,1630360783,2,69,0,1,1630146491,2,6.0,-9.0,-9.0,-9.0,4.0,1311292 -3252536,1630360841,2,84,0,1,1630146492,2,3.0,-9.0,-9.0,-9.0,4.0,1311293 -3252537,1630360811,2,71,0,1,1630146493,2,6.0,-9.0,-9.0,-9.0,4.0,1311294 -3252538,1630360812,2,71,1,2,1630146493,1,6.0,-9.0,-9.0,-9.0,4.0,1311294 -3252539,1630360861,2,66,0,1,1630146494,2,6.0,-9.0,-9.0,-9.0,4.0,1311295 -3252540,1630360862,2,21,10,2,1630146494,1,3.0,-9.0,-9.0,-9.0,4.0,1311295 -3252541,1630360867,2,90,0,1,1630146495,1,6.0,-9.0,-9.0,-9.0,2.0,1311296 -3252542,1630360866,2,85,1,2,1630146495,2,6.0,-9.0,-9.0,-9.0,4.0,1311296 -3252543,1630360786,2,76,0,1,1630146496,1,6.0,-9.0,-9.0,-9.0,2.0,1311297 -3252544,1630360785,2,68,1,2,1630146496,2,6.0,-9.0,-9.0,-9.0,4.0,1311297 -3252545,1630360868,2,81,0,1,1630146497,2,6.0,-9.0,-9.0,-9.0,4.0,1311298 -3252546,1630360869,2,55,2,2,1630146497,2,6.0,-9.0,-9.0,-9.0,2.0,1311298 -3252547,1630362029,2,66,0,1,1630146498,1,1.0,35.0,1.0,-9.0,4.0,1311299 -3252548,1630362034,2,72,0,1,1630146499,1,1.0,30.0,1.0,-9.0,4.0,1311300 -3252549,1630361935,2,23,0,1,1630146500,1,1.0,40.0,3.0,-9.0,4.0,1311301 -3252550,1630361908,2,20,0,1,1630146501,1,1.0,40.0,1.0,-9.0,4.0,1311302 -3252551,1630361936,2,23,0,1,1630146502,1,1.0,40.0,3.0,-9.0,4.0,1311303 -3252552,1630361937,2,23,0,1,1630146503,1,1.0,40.0,3.0,-9.0,4.0,1311304 -3252553,1630361938,2,23,0,1,1630146504,1,1.0,40.0,3.0,-9.0,4.0,1311305 -3252554,1630361909,2,20,0,1,1630146505,1,1.0,40.0,1.0,-9.0,4.0,1311306 -3252555,1630361939,2,23,0,1,1630146506,1,1.0,40.0,3.0,-9.0,4.0,1311307 -3252556,1630361940,2,23,0,1,1630146507,1,1.0,40.0,3.0,-9.0,4.0,1311308 -3252557,1630360939,1,24,0,1,1630146508,1,1.0,45.0,1.0,-9.0,4.0,1311309 -3252558,1630360880,1,24,0,1,1630146509,2,1.0,40.0,1.0,-9.0,4.0,1311310 -3252559,1630360881,1,26,1,2,1630146509,1,6.0,40.0,6.0,16.0,4.0,1311310 -3252560,1630361802,2,23,0,1,1630146510,1,6.0,40.0,1.0,15.0,4.0,1311311 -3252561,1630361809,2,62,6,2,1630146510,1,1.0,40.0,1.0,-9.0,4.0,1311311 -3252562,1630361803,2,23,0,1,1630146511,1,6.0,40.0,1.0,15.0,4.0,1311312 -3252563,1630361810,2,62,6,2,1630146511,1,1.0,40.0,1.0,-9.0,4.0,1311312 -3252564,1630361866,2,21,0,1,1630146512,1,1.0,48.0,1.0,-9.0,4.0,1311313 -3252565,1630361867,2,21,0,1,1630146513,1,1.0,48.0,1.0,-9.0,4.0,1311314 -3252566,1630361871,2,24,15,2,1630146513,1,6.0,-9.0,-9.0,-9.0,4.0,1311314 -3252567,1630361804,2,23,0,1,1630146514,1,6.0,40.0,1.0,15.0,4.0,1311315 -3252568,1630361811,2,62,6,2,1630146514,1,1.0,40.0,1.0,-9.0,4.0,1311315 -3252569,1630361868,2,21,0,1,1630146515,1,1.0,48.0,1.0,-9.0,4.0,1311316 -3252570,1630361872,2,24,15,2,1630146515,1,6.0,-9.0,-9.0,-9.0,4.0,1311316 -3252571,1630361805,2,23,0,1,1630146516,1,6.0,40.0,1.0,15.0,4.0,1311317 -3252572,1630361812,2,62,6,2,1630146516,1,1.0,40.0,1.0,-9.0,4.0,1311317 -3252573,1630361806,2,23,0,1,1630146517,1,6.0,40.0,1.0,15.0,4.0,1311318 -3252574,1630361813,2,62,6,2,1630146517,1,1.0,40.0,1.0,-9.0,4.0,1311318 -3252575,1630361807,2,23,0,1,1630146518,1,6.0,40.0,1.0,15.0,4.0,1311319 -3252576,1630361814,2,62,6,2,1630146518,1,1.0,40.0,1.0,-9.0,4.0,1311319 -3252577,1630361808,2,23,0,1,1630146519,1,6.0,40.0,1.0,15.0,4.0,1311320 -3252578,1630361815,2,62,6,2,1630146519,1,1.0,40.0,1.0,-9.0,4.0,1311320 -3252579,1630361317,2,22,0,1,1630146520,2,1.0,37.0,2.0,-9.0,4.0,1311321 -3252580,1630361319,2,2,2,2,1630146520,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311321 -3252581,1630361318,2,22,0,1,1630146521,2,1.0,37.0,2.0,-9.0,4.0,1311322 -3252582,1630361320,2,2,2,2,1630146521,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311322 -3252583,1630362101,4,24,0,1,1630146522,2,1.0,45.0,1.0,-9.0,4.0,1311323 -3252584,1630362107,4,2,2,2,1630146522,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311323 -3252585,1630362102,4,24,0,1,1630146523,2,1.0,45.0,1.0,-9.0,4.0,1311324 -3252586,1630362108,4,2,2,2,1630146523,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311324 -3252587,1630362103,4,24,0,1,1630146524,2,1.0,45.0,1.0,-9.0,4.0,1311325 -3252588,1630362109,4,2,2,2,1630146524,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311325 -3252589,1630362104,4,24,0,1,1630146525,2,1.0,45.0,1.0,-9.0,4.0,1311326 -3252590,1630362110,4,2,2,2,1630146525,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311326 -3252591,1630362105,4,24,0,1,1630146526,2,1.0,45.0,1.0,-9.0,4.0,1311327 -3252592,1630362111,4,2,2,2,1630146526,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311327 -3252593,1630360909,1,23,0,1,1630146527,1,1.0,35.0,1.0,16.0,4.0,1311328 -3252594,1630360910,4,22,11,2,1630146527,2,1.0,35.0,1.0,-9.0,4.0,1311328 -3252595,1630360908,1,22,11,3,1630146527,2,1.0,25.0,4.0,15.0,4.0,1311328 -3252596,1630360875,1,22,0,1,1630146528,2,1.0,45.0,4.0,-9.0,4.0,1311329 -3252597,1630360876,1,24,12,2,1630146528,2,1.0,50.0,1.0,-9.0,4.0,1311329 -3252598,1630360877,1,21,12,3,1630146528,2,1.0,35.0,3.0,-9.0,4.0,1311329 -3252599,1630360960,1,24,0,1,1630146529,1,1.0,55.0,1.0,-9.0,4.0,1311330 -3252600,1630360961,1,24,0,1,1630146530,1,1.0,55.0,1.0,-9.0,4.0,1311331 -3252601,1630360962,1,24,0,1,1630146531,1,1.0,55.0,1.0,-9.0,4.0,1311332 -3252602,1630360899,1,24,0,1,1630146532,2,1.0,50.0,1.0,-9.0,4.0,1311333 -3252603,1630360895,1,22,0,1,1630146533,2,2.0,40.0,1.0,16.0,4.0,1311334 -3252604,1630360897,1,27,13,2,1630146533,1,1.0,60.0,1.0,-9.0,4.0,1311334 -3252605,1630360896,1,22,0,1,1630146534,2,2.0,40.0,1.0,16.0,4.0,1311335 -3252606,1630360898,1,27,13,2,1630146534,1,1.0,60.0,1.0,-9.0,4.0,1311335 -3252607,1630360932,1,24,0,1,1630146535,2,1.0,40.0,1.0,15.0,4.0,1311336 -3252608,1630360935,1,31,13,2,1630146535,1,1.0,20.0,1.0,16.0,4.0,1311336 -3252609,1630360971,1,24,0,1,1630146536,1,1.0,40.0,1.0,-9.0,4.0,1311337 -3252610,1630360973,1,24,12,2,1630146536,1,1.0,40.0,1.0,-9.0,4.0,1311337 -3252611,1630360933,1,24,0,1,1630146537,2,1.0,40.0,1.0,15.0,4.0,1311338 -3252612,1630360936,1,31,13,2,1630146537,1,1.0,20.0,1.0,16.0,4.0,1311338 -3252613,1630360904,1,23,0,1,1630146538,2,1.0,45.0,1.0,-9.0,4.0,1311339 -3252614,1630360906,1,23,12,2,1630146538,2,1.0,24.0,1.0,-9.0,4.0,1311339 -3252615,1630360934,1,24,0,1,1630146539,2,1.0,40.0,1.0,15.0,4.0,1311340 -3252616,1630360937,1,31,13,2,1630146539,1,1.0,20.0,1.0,16.0,4.0,1311340 -3252617,1630360972,1,24,0,1,1630146540,1,1.0,40.0,1.0,-9.0,4.0,1311341 -3252618,1630360974,1,24,12,2,1630146540,1,1.0,40.0,1.0,-9.0,4.0,1311341 -3252619,1630360905,1,23,0,1,1630146541,2,1.0,45.0,1.0,-9.0,4.0,1311342 -3252620,1630360907,1,23,12,2,1630146541,2,1.0,24.0,1.0,-9.0,4.0,1311342 -3252621,1630361073,2,24,0,1,1630146542,2,6.0,10.0,6.0,15.0,4.0,1311343 -3252622,1630361900,2,19,0,1,1630146543,1,3.0,-9.0,-9.0,-9.0,4.0,1311344 -3252623,1630361074,2,24,0,1,1630146544,2,6.0,10.0,6.0,15.0,4.0,1311345 -3252624,1630361115,2,22,0,1,1630146545,2,6.0,40.0,1.0,-9.0,4.0,1311346 -3252625,1630361901,2,19,0,1,1630146546,1,3.0,-9.0,-9.0,-9.0,4.0,1311347 -3252626,1630361075,2,24,0,1,1630146547,2,6.0,10.0,6.0,15.0,4.0,1311348 -3252627,1630361076,2,24,0,1,1630146548,2,6.0,10.0,6.0,15.0,4.0,1311349 -3252628,1630361077,2,24,0,1,1630146549,2,6.0,10.0,6.0,15.0,4.0,1311350 -3252629,1630361902,2,19,0,1,1630146550,1,3.0,-9.0,-9.0,-9.0,4.0,1311351 -3252630,1630361078,2,24,0,1,1630146551,2,6.0,10.0,6.0,15.0,4.0,1311352 -3252631,1630361116,2,22,0,1,1630146552,2,6.0,40.0,1.0,-9.0,4.0,1311353 -3252632,1630361079,2,24,0,1,1630146553,2,6.0,10.0,6.0,15.0,4.0,1311354 -3252633,1630361117,2,22,0,1,1630146554,2,6.0,40.0,1.0,-9.0,4.0,1311355 -3252634,1630360994,1,22,0,1,1630146555,1,6.0,28.0,4.0,16.0,4.0,1311356 -3252635,1630361774,2,23,0,1,1630146556,2,6.0,-9.0,-9.0,-9.0,4.0,1311357 -3252636,1630361758,2,23,0,1,1630146557,2,3.0,35.0,6.0,-9.0,4.0,1311358 -3252637,1630361775,2,23,0,1,1630146558,2,6.0,-9.0,-9.0,-9.0,4.0,1311359 -3252638,1630361776,2,23,0,1,1630146559,2,6.0,-9.0,-9.0,-9.0,4.0,1311360 -3252639,1630360913,1,24,0,1,1630146560,2,6.0,40.0,6.0,16.0,4.0,1311361 -3252640,1630360922,1,24,0,1,1630146561,2,6.0,-9.0,-9.0,16.0,4.0,1311362 -3252641,1630360965,1,24,0,1,1630146562,1,6.0,24.0,3.0,16.0,4.0,1311363 -3252642,1630361495,2,22,0,1,1630146563,2,3.0,-9.0,-9.0,-9.0,4.0,1311364 -3252643,1630361496,2,2,2,2,1630146563,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311364 -3252644,1630361497,2,13,5,3,1630146563,1,-9.0,-9.0,-9.0,9.0,-9.0,1311364 -3252645,1630361323,2,20,0,1,1630146564,2,6.0,-9.0,-9.0,-9.0,4.0,1311365 -3252646,1630361329,2,1,2,2,1630146564,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311365 -3252647,1630361326,2,25,12,3,1630146564,1,3.0,-9.0,-9.0,-9.0,4.0,1311365 -3252648,1630361324,2,20,0,1,1630146565,2,6.0,-9.0,-9.0,-9.0,4.0,1311366 -3252649,1630361330,2,1,2,2,1630146565,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311366 -3252650,1630361327,2,25,12,3,1630146565,1,3.0,-9.0,-9.0,-9.0,4.0,1311366 -3252651,1630361039,2,24,0,1,1630146566,2,3.0,32.0,5.0,-9.0,4.0,1311367 -3252652,1630361042,2,8,2,2,1630146566,1,-9.0,-9.0,-9.0,4.0,-9.0,1311367 -3252653,1630361250,2,21,0,1,1630146567,2,3.0,-9.0,-9.0,-9.0,4.0,1311368 -3252654,1630361252,2,1,2,2,1630146567,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311368 -3252655,1630361370,2,20,0,1,1630146568,2,3.0,-9.0,-9.0,-9.0,4.0,1311369 -3252656,1630361372,2,1,2,2,1630146568,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311369 -3252657,1630361040,2,24,0,1,1630146569,2,3.0,32.0,5.0,-9.0,4.0,1311370 -3252658,1630361043,2,8,2,2,1630146569,1,-9.0,-9.0,-9.0,4.0,-9.0,1311370 -3252659,1630361251,2,21,0,1,1630146570,2,3.0,-9.0,-9.0,-9.0,4.0,1311371 -3252660,1630361253,2,1,2,2,1630146570,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311371 -3252661,1630361041,2,24,0,1,1630146571,2,3.0,32.0,5.0,-9.0,4.0,1311372 -3252662,1630361044,2,8,2,2,1630146571,1,-9.0,-9.0,-9.0,4.0,-9.0,1311372 -3252663,1630361119,2,19,0,1,1630146572,2,3.0,22.0,1.0,-9.0,4.0,1311373 -3252664,1630361120,2,1,2,2,1630146572,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311373 -3252665,1630360916,1,24,0,1,1630146573,2,6.0,8.0,6.0,16.0,4.0,1311374 -3252666,1630360917,4,24,12,2,1630146573,2,6.0,-9.0,-9.0,16.0,4.0,1311374 -3252667,1630361432,2,20,0,1,1630146574,2,1.0,16.0,6.0,-9.0,4.0,1311375 -3252668,1630362001,2,22,0,1,1630146575,1,1.0,20.0,6.0,-9.0,4.0,1311376 -3252669,1630361982,2,19,0,1,1630146576,1,1.0,50.0,1.0,-9.0,4.0,1311377 -3252670,1630361660,2,24,0,1,1630146577,2,1.0,35.0,1.0,-9.0,4.0,1311378 -3252671,1630361453,2,23,0,1,1630146578,2,1.0,32.0,1.0,-9.0,4.0,1311379 -3252672,1630362002,2,22,0,1,1630146579,1,1.0,20.0,6.0,-9.0,4.0,1311380 -3252673,1630361433,2,20,0,1,1630146580,2,1.0,16.0,6.0,-9.0,4.0,1311381 -3252674,1630362003,2,22,0,1,1630146581,1,1.0,20.0,6.0,-9.0,4.0,1311382 -3252675,1630361434,2,20,0,1,1630146582,2,1.0,16.0,6.0,-9.0,4.0,1311383 -3252676,1630361661,2,24,0,1,1630146583,2,1.0,35.0,1.0,-9.0,4.0,1311384 -3252677,1630361454,2,23,0,1,1630146584,2,1.0,32.0,1.0,-9.0,4.0,1311385 -3252678,1630361662,2,24,0,1,1630146585,2,1.0,35.0,1.0,-9.0,4.0,1311386 -3252679,1630361663,2,24,0,1,1630146586,2,1.0,35.0,1.0,-9.0,4.0,1311387 -3252680,1630361455,2,23,0,1,1630146587,2,1.0,32.0,1.0,-9.0,4.0,1311388 -3252681,1630361456,2,23,0,1,1630146588,2,1.0,32.0,1.0,-9.0,4.0,1311389 -3252682,1630361435,2,20,0,1,1630146589,2,1.0,16.0,6.0,-9.0,4.0,1311390 -3252683,1630361983,2,19,0,1,1630146590,1,1.0,50.0,1.0,-9.0,4.0,1311391 -3252684,1630361436,2,20,0,1,1630146591,2,1.0,16.0,6.0,-9.0,4.0,1311392 -3252685,1630361984,2,19,0,1,1630146592,1,1.0,50.0,1.0,-9.0,4.0,1311393 -3252686,1630361664,2,24,0,1,1630146593,2,1.0,35.0,1.0,-9.0,4.0,1311394 -3252687,1630361665,2,24,0,1,1630146594,2,1.0,35.0,1.0,-9.0,4.0,1311395 -3252688,1630361437,2,20,0,1,1630146595,2,1.0,16.0,6.0,-9.0,4.0,1311396 -3252689,1630360955,1,20,0,1,1630146596,1,1.0,40.0,5.0,15.0,4.0,1311397 -3252690,1630361850,2,24,0,1,1630146597,1,1.0,40.0,1.0,-9.0,4.0,1311398 -3252691,1630361851,2,24,0,1,1630146598,1,1.0,40.0,1.0,-9.0,4.0,1311399 -3252692,1630361540,2,22,0,1,1630146599,2,1.0,40.0,1.0,-9.0,4.0,1311400 -3252693,1630361852,2,24,0,1,1630146600,1,1.0,40.0,1.0,-9.0,4.0,1311401 -3252694,1630361530,2,20,0,1,1630146601,2,1.0,40.0,1.0,-9.0,4.0,1311402 -3252695,1630361541,2,22,0,1,1630146602,2,1.0,40.0,1.0,-9.0,4.0,1311403 -3252696,1630361531,2,20,0,1,1630146603,2,1.0,40.0,1.0,-9.0,4.0,1311404 -3252697,1630361542,2,22,0,1,1630146604,2,1.0,40.0,1.0,-9.0,4.0,1311405 -3252698,1630361543,2,22,0,1,1630146605,2,1.0,40.0,1.0,-9.0,4.0,1311406 -3252699,1630361544,2,22,0,1,1630146606,2,1.0,40.0,1.0,-9.0,4.0,1311407 -3252700,1630361545,2,22,0,1,1630146607,2,1.0,40.0,1.0,-9.0,4.0,1311408 -3252701,1630362069,4,22,0,1,1630146608,1,2.0,20.0,4.0,16.0,4.0,1311409 -3252702,1630362070,4,22,0,1,1630146609,1,2.0,20.0,4.0,16.0,4.0,1311410 -3252703,1630362071,4,22,0,1,1630146610,1,2.0,20.0,4.0,16.0,4.0,1311411 -3252704,1630362072,4,22,0,1,1630146611,1,2.0,20.0,4.0,16.0,4.0,1311412 -3252705,1630362073,4,22,0,1,1630146612,1,2.0,20.0,4.0,16.0,4.0,1311413 -3252706,1630362074,4,22,0,1,1630146613,1,2.0,20.0,4.0,16.0,4.0,1311414 -3252707,1630362075,4,22,0,1,1630146614,1,2.0,20.0,4.0,16.0,4.0,1311415 -3252708,1630362076,4,22,0,1,1630146615,1,2.0,20.0,4.0,16.0,4.0,1311416 -3252709,1630362077,4,22,0,1,1630146616,1,2.0,20.0,4.0,16.0,4.0,1311417 -3252710,1630360942,1,22,0,1,1630146617,1,1.0,40.0,3.0,-9.0,4.0,1311418 -3252711,1630360985,1,23,0,1,1630146618,1,1.0,40.0,3.0,15.0,4.0,1311419 -3252712,1630360914,1,24,0,1,1630146619,2,1.0,24.0,1.0,-9.0,4.0,1311420 -3252713,1630362020,2,23,0,1,1630146620,1,1.0,40.0,1.0,-9.0,4.0,1311421 -3252714,1630362021,2,23,0,1,1630146621,1,1.0,40.0,1.0,-9.0,4.0,1311422 -3252715,1630362022,2,23,0,1,1630146622,1,1.0,40.0,1.0,-9.0,4.0,1311423 -3252716,1630361760,2,23,0,1,1630146623,2,1.0,40.0,1.0,15.0,4.0,1311424 -3252717,1630361761,2,23,0,1,1630146624,2,1.0,40.0,1.0,15.0,4.0,1311425 -3252718,1630362023,2,23,0,1,1630146625,1,1.0,40.0,1.0,-9.0,4.0,1311426 -3252719,1630361762,2,23,0,1,1630146626,2,1.0,40.0,1.0,15.0,4.0,1311427 -3252720,1630362024,2,23,0,1,1630146627,1,1.0,40.0,1.0,-9.0,4.0,1311428 -3252721,1630361336,2,20,0,1,1630146628,2,3.0,48.0,6.0,15.0,4.0,1311429 -3252722,1630361342,2,0,2,2,1630146628,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311429 -3252723,1630361339,2,24,15,3,1630146628,1,1.0,30.0,1.0,-9.0,4.0,1311429 -3252724,1630361337,2,20,0,1,1630146629,2,3.0,48.0,6.0,15.0,4.0,1311430 -3252725,1630361343,2,0,2,2,1630146629,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311430 -3252726,1630361340,2,24,15,3,1630146629,1,1.0,30.0,1.0,-9.0,4.0,1311430 -3252727,1630361338,2,20,0,1,1630146630,2,3.0,48.0,6.0,15.0,4.0,1311431 -3252728,1630361344,2,0,2,2,1630146630,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311431 -3252729,1630361341,2,24,15,3,1630146630,1,1.0,30.0,1.0,-9.0,4.0,1311431 -3252730,1630361142,2,24,0,1,1630146631,2,3.0,-9.0,-9.0,15.0,4.0,1311432 -3252731,1630361154,2,24,1,2,1630146631,1,6.0,-9.0,-9.0,15.0,4.0,1311432 -3252732,1630361148,2,59,6,3,1630146631,2,1.0,25.0,1.0,-9.0,4.0,1311432 -3252733,1630361143,2,24,0,1,1630146632,2,3.0,-9.0,-9.0,15.0,4.0,1311433 -3252734,1630361155,2,24,1,2,1630146632,1,6.0,-9.0,-9.0,15.0,4.0,1311433 -3252735,1630361149,2,59,6,3,1630146632,2,1.0,25.0,1.0,-9.0,4.0,1311433 -3252736,1630361144,2,24,0,1,1630146633,2,3.0,-9.0,-9.0,15.0,4.0,1311434 -3252737,1630361156,2,24,1,2,1630146633,1,6.0,-9.0,-9.0,15.0,4.0,1311434 -3252738,1630361150,2,59,6,3,1630146633,2,1.0,25.0,1.0,-9.0,4.0,1311434 -3252739,1630361145,2,24,0,1,1630146634,2,3.0,-9.0,-9.0,15.0,4.0,1311435 -3252740,1630361157,2,24,1,2,1630146634,1,6.0,-9.0,-9.0,15.0,4.0,1311435 -3252741,1630361151,2,59,6,3,1630146634,2,1.0,25.0,1.0,-9.0,4.0,1311435 -3252742,1630361146,2,24,0,1,1630146635,2,3.0,-9.0,-9.0,15.0,4.0,1311436 -3252743,1630361158,2,24,1,2,1630146635,1,6.0,-9.0,-9.0,15.0,4.0,1311436 -3252744,1630361152,2,59,6,3,1630146635,2,1.0,25.0,1.0,-9.0,4.0,1311436 -3252745,1630361147,2,24,0,1,1630146636,2,3.0,-9.0,-9.0,15.0,4.0,1311437 -3252746,1630361159,2,24,1,2,1630146636,1,6.0,-9.0,-9.0,15.0,4.0,1311437 -3252747,1630361153,2,59,6,3,1630146636,2,1.0,25.0,1.0,-9.0,4.0,1311437 -3252748,1630360957,1,19,0,1,1630146637,1,6.0,-9.0,-9.0,15.0,4.0,1311438 -3252749,1630360958,1,19,12,2,1630146637,1,1.0,30.0,1.0,15.0,4.0,1311438 -3252750,1630360959,1,19,12,3,1630146637,1,6.0,-9.0,-9.0,15.0,4.0,1311438 -3252751,1630361348,2,23,0,1,1630146638,2,1.0,40.0,1.0,-9.0,4.0,1311439 -3252752,1630361350,2,6,2,2,1630146638,1,-9.0,-9.0,-9.0,3.0,-9.0,1311439 -3252753,1630361352,2,3,2,3,1630146638,2,-9.0,-9.0,-9.0,1.0,-9.0,1311439 -3252754,1630361232,2,24,0,1,1630146639,2,1.0,24.0,1.0,15.0,4.0,1311440 -3252755,1630361234,2,6,2,2,1630146639,2,-9.0,-9.0,-9.0,3.0,-9.0,1311440 -3252756,1630361236,2,4,2,3,1630146639,2,-9.0,-9.0,-9.0,1.0,-9.0,1311440 -3252757,1630361476,2,23,0,1,1630146640,2,1.0,23.0,6.0,15.0,4.0,1311441 -3252758,1630361479,2,6,2,2,1630146640,1,-9.0,-9.0,-9.0,3.0,-9.0,1311441 -3252759,1630361482,2,2,2,3,1630146640,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311441 -3252760,1630361477,2,23,0,1,1630146641,2,1.0,23.0,6.0,15.0,4.0,1311442 -3252761,1630361480,2,6,2,2,1630146641,1,-9.0,-9.0,-9.0,3.0,-9.0,1311442 -3252762,1630361483,2,2,2,3,1630146641,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311442 -3252763,1630361180,2,22,0,1,1630146642,2,1.0,45.0,4.0,-9.0,4.0,1311443 -3252764,1630361185,2,2,2,2,1630146642,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311443 -3252765,1630361190,2,1,2,3,1630146642,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311443 -3252766,1630361478,2,23,0,1,1630146643,2,1.0,23.0,6.0,15.0,4.0,1311444 -3252767,1630361481,2,6,2,2,1630146643,1,-9.0,-9.0,-9.0,3.0,-9.0,1311444 -3252768,1630361484,2,2,2,3,1630146643,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311444 -3252769,1630361181,2,22,0,1,1630146644,2,1.0,45.0,4.0,-9.0,4.0,1311445 -3252770,1630361186,2,2,2,2,1630146644,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311445 -3252771,1630361191,2,1,2,3,1630146644,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311445 -3252772,1630361172,2,23,0,1,1630146645,1,1.0,8.0,1.0,15.0,4.0,1311446 -3252773,1630361173,2,4,2,2,1630146645,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311446 -3252774,1630361171,2,21,13,3,1630146645,2,6.0,-9.0,-9.0,-9.0,4.0,1311446 -3252775,1630361349,2,23,0,1,1630146646,2,1.0,40.0,1.0,-9.0,4.0,1311447 -3252776,1630361351,2,6,2,2,1630146646,1,-9.0,-9.0,-9.0,3.0,-9.0,1311447 -3252777,1630361353,2,3,2,3,1630146646,2,-9.0,-9.0,-9.0,1.0,-9.0,1311447 -3252778,1630361182,2,22,0,1,1630146647,2,1.0,45.0,4.0,-9.0,4.0,1311448 -3252779,1630361187,2,2,2,2,1630146647,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311448 -3252780,1630361192,2,1,2,3,1630146647,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311448 -3252781,1630361183,2,22,0,1,1630146648,2,1.0,45.0,4.0,-9.0,4.0,1311449 -3252782,1630361188,2,2,2,2,1630146648,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311449 -3252783,1630361193,2,1,2,3,1630146648,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311449 -3252784,1630361184,2,22,0,1,1630146649,2,1.0,45.0,4.0,-9.0,4.0,1311450 -3252785,1630361189,2,2,2,2,1630146649,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311450 -3252786,1630361194,2,1,2,3,1630146649,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311450 -3252787,1630360943,1,20,0,1,1630146650,1,1.0,5.0,3.0,15.0,4.0,1311451 -3252788,1630360945,1,23,12,2,1630146650,1,6.0,40.0,6.0,15.0,4.0,1311451 -3252789,1630360947,1,20,12,3,1630146650,1,6.0,40.0,6.0,15.0,4.0,1311451 -3252790,1630360944,1,20,0,1,1630146651,1,1.0,5.0,3.0,15.0,4.0,1311452 -3252791,1630360946,1,23,12,2,1630146651,1,6.0,40.0,6.0,15.0,4.0,1311452 -3252792,1630360948,1,20,12,3,1630146651,1,6.0,40.0,6.0,15.0,4.0,1311452 -3252793,1630361264,2,24,0,1,1630146652,1,1.0,42.0,1.0,-9.0,4.0,1311453 -3252794,1630361265,2,24,0,1,1630146653,1,1.0,42.0,1.0,-9.0,4.0,1311454 -3252795,1630361259,2,24,1,2,1630146653,2,6.0,-9.0,-9.0,-9.0,4.0,1311454 -3252796,1630361266,2,24,0,1,1630146654,1,1.0,42.0,1.0,-9.0,4.0,1311455 -3252797,1630361260,2,24,1,2,1630146654,2,6.0,-9.0,-9.0,-9.0,4.0,1311455 -3252798,1630361267,2,24,0,1,1630146655,1,1.0,42.0,1.0,-9.0,4.0,1311456 -3252799,1630361261,2,24,1,2,1630146655,2,6.0,-9.0,-9.0,-9.0,4.0,1311456 -3252800,1630361268,2,24,0,1,1630146656,1,1.0,42.0,1.0,-9.0,4.0,1311457 -3252801,1630361262,2,24,1,2,1630146656,2,6.0,-9.0,-9.0,-9.0,4.0,1311457 -3252802,1630360924,1,20,0,1,1630146657,2,6.0,15.0,6.0,15.0,4.0,1311458 -3252803,1630360925,1,19,12,2,1630146657,2,1.0,30.0,1.0,15.0,4.0,1311458 -3252804,1630361750,2,22,0,1,1630146658,2,1.0,20.0,1.0,15.0,4.0,1311459 -3252805,1630361754,2,3,2,2,1630146658,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311459 -3252806,1630361559,2,22,0,1,1630146659,2,1.0,40.0,6.0,-9.0,4.0,1311460 -3252807,1630361560,2,0,2,2,1630146659,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311460 -3252808,1630361751,2,22,0,1,1630146660,2,1.0,20.0,1.0,15.0,4.0,1311461 -3252809,1630361755,2,3,2,2,1630146660,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311461 -3252810,1630361752,2,22,0,1,1630146661,2,1.0,20.0,1.0,15.0,4.0,1311462 -3252811,1630361756,2,3,2,2,1630146661,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311462 -3252812,1630360980,2,24,0,1,1630146662,1,1.0,20.0,1.0,15.0,4.0,1311463 -3252813,1630360975,1,19,12,2,1630146662,1,3.0,56.0,6.0,15.0,4.0,1311463 -3252814,1630360981,2,24,0,1,1630146663,1,1.0,20.0,1.0,15.0,4.0,1311464 -3252815,1630360976,1,19,12,2,1630146663,1,3.0,56.0,6.0,15.0,4.0,1311464 -3252816,1630360982,2,24,0,1,1630146664,1,1.0,20.0,1.0,15.0,4.0,1311465 -3252817,1630360977,1,19,12,2,1630146664,1,3.0,56.0,6.0,15.0,4.0,1311465 -3252818,1630360983,2,24,0,1,1630146665,1,1.0,20.0,1.0,15.0,4.0,1311466 -3252819,1630360978,1,19,12,2,1630146665,1,3.0,56.0,6.0,15.0,4.0,1311466 -3252820,1630361784,2,16,0,1,1630146666,1,6.0,-9.0,-9.0,14.0,-9.0,1311467 -3252821,1630361786,2,38,15,2,1630146666,1,1.0,40.0,1.0,-9.0,4.0,1311467 -3252822,1630361685,2,24,0,1,1630146667,1,1.0,20.0,1.0,16.0,4.0,1311468 -3252823,1630361679,2,24,13,2,1630146667,2,6.0,-9.0,-9.0,16.0,4.0,1311468 -3252824,1630361686,2,24,0,1,1630146668,1,1.0,20.0,1.0,16.0,4.0,1311469 -3252825,1630361680,2,24,13,2,1630146668,2,6.0,-9.0,-9.0,16.0,4.0,1311469 -3252826,1630361687,2,24,0,1,1630146669,1,1.0,20.0,1.0,16.0,4.0,1311470 -3252827,1630361681,2,24,13,2,1630146669,2,6.0,-9.0,-9.0,16.0,4.0,1311470 -3252828,1630361688,2,24,0,1,1630146670,1,1.0,20.0,1.0,16.0,4.0,1311471 -3252829,1630361682,2,24,13,2,1630146670,2,6.0,-9.0,-9.0,16.0,4.0,1311471 -3252830,1630361689,2,24,0,1,1630146671,1,1.0,20.0,1.0,16.0,4.0,1311472 -3252831,1630361683,2,24,13,2,1630146671,2,6.0,-9.0,-9.0,16.0,4.0,1311472 -3252832,1630360893,1,24,0,1,1630146672,1,1.0,35.0,1.0,-9.0,4.0,1311473 -3252833,1630360891,1,23,13,2,1630146672,2,6.0,20.0,4.0,16.0,4.0,1311473 -3252834,1630360894,1,24,0,1,1630146673,1,1.0,35.0,1.0,-9.0,4.0,1311474 -3252835,1630360892,1,23,13,2,1630146673,2,6.0,20.0,4.0,16.0,4.0,1311474 -3252836,1630361714,2,22,0,1,1630146674,1,1.0,40.0,1.0,-9.0,4.0,1311475 -3252837,1630361712,2,1,2,2,1630146674,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311475 -3252838,1630361710,2,22,13,3,1630146674,2,1.0,40.0,1.0,-9.0,4.0,1311475 -3252839,1630361956,4,19,0,1,1630146675,2,1.0,40.0,5.0,-9.0,4.0,1311476 -3252840,1630361948,2,21,13,2,1630146675,1,1.0,50.0,1.0,-9.0,4.0,1311476 -3252841,1630361957,4,19,0,1,1630146676,2,1.0,40.0,5.0,-9.0,4.0,1311477 -3252842,1630361949,2,21,13,2,1630146676,1,1.0,50.0,1.0,-9.0,4.0,1311477 -3252843,1630361958,4,19,0,1,1630146677,2,1.0,40.0,5.0,-9.0,4.0,1311478 -3252844,1630361950,2,21,13,2,1630146677,1,1.0,50.0,1.0,-9.0,4.0,1311478 -3252845,1630361959,4,19,0,1,1630146678,2,1.0,40.0,5.0,-9.0,4.0,1311479 -3252846,1630361951,2,21,13,2,1630146678,1,1.0,50.0,1.0,-9.0,4.0,1311479 -3252847,1630361960,4,19,0,1,1630146679,2,1.0,40.0,5.0,-9.0,4.0,1311480 -3252848,1630361952,2,21,13,2,1630146679,1,1.0,50.0,1.0,-9.0,4.0,1311480 -3252849,1630361961,4,19,0,1,1630146680,2,1.0,40.0,5.0,-9.0,4.0,1311481 -3252850,1630361953,2,21,13,2,1630146680,1,1.0,50.0,1.0,-9.0,4.0,1311481 -3252851,1630361962,4,19,0,1,1630146681,2,1.0,40.0,5.0,-9.0,4.0,1311482 -3252852,1630361954,2,21,13,2,1630146681,1,1.0,50.0,1.0,-9.0,4.0,1311482 -3252853,1630360883,1,24,0,1,1630146682,2,1.0,20.0,3.0,15.0,4.0,1311483 -3252854,1630360884,1,29,1,2,1630146682,1,1.0,31.0,3.0,15.0,4.0,1311483 -3252855,1630361591,2,21,0,1,1630146683,1,1.0,40.0,4.0,-9.0,4.0,1311484 -3252856,1630361587,2,21,15,2,1630146683,2,1.0,40.0,1.0,15.0,4.0,1311484 -3252857,1630361592,2,21,0,1,1630146684,1,1.0,40.0,4.0,-9.0,4.0,1311485 -3252858,1630361588,2,21,15,2,1630146684,2,1.0,40.0,1.0,15.0,4.0,1311485 -3252859,1630361593,2,21,0,1,1630146685,1,1.0,40.0,4.0,-9.0,4.0,1311486 -3252860,1630361589,2,21,15,2,1630146685,2,1.0,40.0,1.0,15.0,4.0,1311486 -3252861,1630361698,2,31,0,1,1630146686,2,6.0,-9.0,-9.0,-9.0,4.0,1311487 -3252862,1630361306,2,46,0,1,1630146687,1,1.0,60.0,1.0,-9.0,4.0,1311488 -3252863,1630361305,2,45,1,2,1630146687,2,1.0,40.0,1.0,-9.0,4.0,1311488 -3252864,1630361307,2,2,2,3,1630146687,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311488 -3252865,1630362080,4,63,0,1,1630146688,2,6.0,-9.0,-9.0,-9.0,4.0,1311489 -3252866,1630362079,4,40,2,2,1630146688,1,1.0,40.0,1.0,15.0,2.0,1311489 -3252867,1630361841,2,37,0,1,1630146689,1,1.0,40.0,6.0,-9.0,4.0,1311490 -3252868,1630361963,4,19,0,1,1630146690,2,1.0,40.0,5.0,-9.0,4.0,1311491 -3252869,1630361955,2,21,13,2,1630146690,1,1.0,50.0,1.0,-9.0,4.0,1311491 -3252870,1630361614,2,55,0,1,1630146691,1,6.0,16.0,6.0,-9.0,4.0,1311492 -3252871,1630361612,2,51,1,2,1630146691,2,6.0,16.0,3.0,-9.0,4.0,1311492 -3252872,1630361616,2,26,2,3,1630146691,1,1.0,40.0,2.0,-9.0,4.0,1311492 -3252873,1630361405,2,63,0,1,1630146692,1,6.0,-9.0,-9.0,-9.0,4.0,1311493 -3252874,1630361403,2,62,1,2,1630146692,2,6.0,-9.0,-9.0,-9.0,4.0,1311493 -3252875,1630360900,1,24,0,1,1630146693,2,1.0,50.0,1.0,-9.0,4.0,1311494 -3252876,1630361785,2,16,0,1,1630146694,1,6.0,-9.0,-9.0,14.0,-9.0,1311495 -3252877,1630361787,2,38,15,2,1630146694,1,1.0,40.0,1.0,-9.0,4.0,1311495 -3252878,1630360963,1,52,0,1,1630146695,1,1.0,40.0,1.0,-9.0,4.0,1311496 -3252879,1630361062,2,54,0,1,1630146696,2,6.0,-9.0,-9.0,-9.0,4.0,1311497 -3252880,1630361063,2,34,2,2,1630146696,1,3.0,-9.0,-9.0,-9.0,4.0,1311497 -3252881,1630360929,1,22,0,1,1630146697,2,1.0,20.0,1.0,15.0,4.0,1311498 -3252882,1630360930,1,18,5,2,1630146697,2,1.0,40.0,6.0,15.0,4.0,1311498 -3252883,1630360931,1,23,12,3,1630146697,2,1.0,15.0,3.0,15.0,4.0,1311498 -3252884,1630361296,2,54,0,1,1630146698,2,6.0,-9.0,-9.0,15.0,4.0,1311499 -3252885,1630361298,2,25,2,2,1630146698,2,1.0,65.0,1.0,-9.0,4.0,1311499 -3252886,1630361300,2,19,2,3,1630146698,2,3.0,3.0,6.0,-9.0,4.0,1311499 -3252887,1630360995,1,21,0,1,1630146699,1,1.0,20.0,3.0,15.0,4.0,1311500 -3252888,1630360996,1,22,12,2,1630146699,1,6.0,-9.0,-9.0,15.0,4.0,1311500 -3252889,1630360997,1,21,12,3,1630146699,1,6.0,20.0,5.0,15.0,4.0,1311500 -3252890,1630361241,2,43,0,1,1630146700,1,1.0,40.0,1.0,-9.0,4.0,1311501 -3252891,1630361240,2,18,2,2,1630146700,2,6.0,-9.0,-9.0,14.0,4.0,1311501 -3252892,1630361365,2,63,0,1,1630146701,2,1.0,40.0,1.0,-9.0,4.0,1311502 -3252893,1630361366,2,17,7,2,1630146701,2,6.0,-9.0,-9.0,13.0,4.0,1311502 -3252894,1630360966,1,33,0,1,1630146702,1,1.0,50.0,1.0,-9.0,4.0,1311503 -3252895,1630360967,2,33,12,2,1630146702,1,1.0,50.0,1.0,-9.0,4.0,1311503 -3252896,1630361177,2,45,0,1,1630146703,2,6.0,-9.0,-9.0,-9.0,4.0,1311504 -3252897,1630361178,2,27,2,2,1630146703,2,6.0,-9.0,-9.0,-9.0,4.0,1311504 -3252898,1630361179,2,35,12,3,1630146703,1,6.0,40.0,6.0,-9.0,4.0,1311504 -3252899,1630360760,2,56,0,1,1630146704,2,1.0,40.0,1.0,16.0,4.0,1311505 -3252900,1630360759,2,82,6,2,1630146704,2,6.0,-9.0,-9.0,-9.0,2.0,1311505 -3252901,1630361645,2,31,0,1,1630146705,2,3.0,40.0,3.0,-9.0,4.0,1311506 -3252902,1630361649,2,39,1,2,1630146705,1,1.0,40.0,1.0,-9.0,4.0,1311506 -3252903,1630361197,2,58,0,1,1630146706,2,1.0,40.0,1.0,-9.0,4.0,1311507 -3252904,1630361198,2,21,2,2,1630146706,1,1.0,32.0,2.0,-9.0,4.0,1311507 -3252905,1630361199,2,58,13,3,1630146706,1,6.0,-9.0,-9.0,-9.0,2.0,1311507 -3252906,1630361892,2,58,0,1,1630146707,1,6.0,-9.0,-9.0,-9.0,4.0,1311508 -3252907,1630361371,2,20,0,1,1630146708,2,3.0,-9.0,-9.0,-9.0,4.0,1311509 -3252908,1630361373,2,1,2,2,1630146708,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311509 -3252909,1630360763,2,74,0,1,1630146709,2,6.0,-9.0,-9.0,-9.0,4.0,1311510 -3252910,1630360764,2,46,2,2,1630146709,1,6.0,-9.0,-9.0,-9.0,4.0,1311510 -3252911,1630361891,2,47,0,1,1630146710,1,1.0,40.0,1.0,-9.0,2.0,1311511 -3252912,1630361641,2,64,0,1,1630146711,1,1.0,32.0,1.0,-9.0,2.0,1311512 -3252913,1630361638,2,61,1,2,1630146711,2,6.0,-9.0,-9.0,-9.0,4.0,1311512 -3252914,1630361910,2,63,0,1,1630146712,1,6.0,-9.0,-9.0,-9.0,2.0,1311513 -3252915,1630360791,2,84,0,1,1630146713,2,6.0,-9.0,-9.0,-9.0,4.0,1311514 -3252916,1630360792,2,49,2,2,1630146713,1,6.0,-9.0,-9.0,-9.0,4.0,1311514 -3252917,1630361486,2,61,0,1,1630146714,2,6.0,-9.0,-9.0,-9.0,4.0,1311515 -3252918,1630361082,2,40,0,1,1630146715,1,2.0,25.0,1.0,15.0,4.0,1311516 -3252919,1630361081,2,40,1,2,1630146715,2,1.0,40.0,1.0,16.0,4.0,1311516 -3252920,1630361083,2,19,2,3,1630146715,1,6.0,25.0,5.0,15.0,4.0,1311516 -3252921,1630361228,2,61,0,1,1630146716,2,1.0,40.0,1.0,-9.0,4.0,1311517 -3252922,1630360772,2,64,0,1,1630146717,2,6.0,-9.0,-9.0,-9.0,4.0,1311518 -3252923,1630360771,2,65,5,2,1630146717,2,6.0,-9.0,-9.0,-9.0,4.0,1311518 -3252924,1630360773,2,22,10,3,1630146717,2,1.0,10.0,1.0,-9.0,4.0,1311518 -3252925,1630360986,1,55,0,1,1630146718,1,1.0,40.0,3.0,-9.0,4.0,1311519 -3252926,1630361693,2,60,0,1,1630146719,2,6.0,-9.0,-9.0,-9.0,4.0,1311520 -3252927,1630361694,2,64,5,2,1630146719,1,6.0,-9.0,-9.0,-9.0,2.0,1311520 -3252928,1630361695,2,61,11,3,1630146719,1,6.0,-9.0,-9.0,-9.0,4.0,1311520 -3252929,1630362094,4,50,0,1,1630146720,2,6.0,-9.0,-9.0,15.0,4.0,1311521 -3252930,1630361655,2,43,0,1,1630146721,2,1.0,40.0,1.0,-9.0,2.0,1311522 -3252931,1630361656,2,11,2,2,1630146721,1,-9.0,-9.0,-9.0,8.0,-9.0,1311522 -3252932,1630361166,2,58,0,1,1630146722,1,6.0,-9.0,-9.0,-9.0,4.0,1311523 -3252933,1630361165,2,52,15,2,1630146722,2,3.0,-9.0,-9.0,-9.0,4.0,1311523 -3252934,1630361309,2,41,0,1,1630146723,2,1.0,48.0,1.0,15.0,4.0,1311524 -3252935,1630361919,2,44,0,1,1630146724,1,1.0,50.0,1.0,-9.0,4.0,1311525 -3252936,1630361921,2,15,2,2,1630146724,2,-9.0,-9.0,-9.0,12.0,-9.0,1311525 -3252937,1630361923,2,9,2,3,1630146724,2,-9.0,-9.0,-9.0,7.0,-9.0,1311525 -3252938,1630361452,2,67,0,1,1630146725,1,6.0,-9.0,-9.0,-9.0,4.0,1311526 -3252939,1630361450,2,61,1,2,1630146725,2,6.0,-9.0,-9.0,-9.0,4.0,1311526 -3252940,1630361451,2,20,2,3,1630146725,2,6.0,-9.0,-9.0,-9.0,4.0,1311526 -3252941,1630360915,1,24,0,1,1630146726,2,1.0,24.0,1.0,-9.0,4.0,1311527 -3252942,1630361699,2,56,0,1,1630146727,2,1.0,40.0,1.0,-9.0,4.0,1311528 -3252943,1630361700,2,22,2,2,1630146727,1,1.0,40.0,1.0,-9.0,4.0,1311528 -3252944,1630361701,2,57,13,3,1630146727,1,6.0,-9.0,-9.0,-9.0,2.0,1311528 -3252945,1630362026,4,77,0,1,1630146728,2,6.0,-9.0,-9.0,-9.0,4.0,1311529 -3252946,1630362027,4,46,2,2,1630146728,2,6.0,-9.0,-9.0,-9.0,4.0,1311529 -3252947,1630360956,1,20,0,1,1630146729,1,1.0,40.0,5.0,15.0,4.0,1311530 -3252948,1630360927,4,60,0,1,1630146730,1,1.0,32.0,1.0,-9.0,4.0,1311531 -3252949,1630360926,1,54,1,2,1630146730,2,6.0,-9.0,-9.0,-9.0,4.0,1311531 -3252950,1630360928,4,30,2,3,1630146730,2,1.0,40.0,5.0,-9.0,4.0,1311531 -3252951,1630361024,2,58,0,1,1630146731,1,1.0,40.0,1.0,-9.0,4.0,1311532 -3252952,1630361022,2,52,1,2,1630146731,2,3.0,-9.0,-9.0,-9.0,4.0,1311532 -3252953,1630361023,2,31,2,3,1630146731,2,1.0,40.0,1.0,-9.0,4.0,1311532 -3252954,1630361058,2,34,0,1,1630146732,2,1.0,40.0,1.0,-9.0,4.0,1311533 -3252955,1630361059,2,32,1,2,1630146732,1,1.0,30.0,3.0,-9.0,4.0,1311533 -3252956,1630361853,2,46,0,1,1630146733,1,6.0,-9.0,-9.0,-9.0,4.0,1311534 -3252957,1630360984,2,24,0,1,1630146734,1,1.0,20.0,1.0,15.0,4.0,1311535 -3252958,1630360979,1,19,12,2,1630146734,1,3.0,56.0,6.0,15.0,4.0,1311535 -3252959,1630362013,2,58,0,1,1630146735,1,1.0,50.0,3.0,-9.0,4.0,1311536 -3252960,1630362016,2,28,2,2,1630146735,1,3.0,35.0,4.0,-9.0,4.0,1311536 -3252961,1630362019,2,32,11,3,1630146735,1,1.0,30.0,3.0,-9.0,4.0,1311536 -3252962,1630361893,2,62,0,1,1630146736,1,6.0,-9.0,-9.0,-9.0,4.0,1311537 -3252963,1630361759,2,58,0,1,1630146737,2,1.0,23.0,2.0,-9.0,4.0,1311538 -3252964,1630361577,2,59,0,1,1630146738,2,1.0,31.0,4.0,-9.0,4.0,1311539 -3252965,1630361579,2,41,2,2,1630146738,1,3.0,-9.0,-9.0,-9.0,4.0,1311539 -3252966,1630361578,2,21,7,3,1630146738,2,1.0,38.0,5.0,-9.0,4.0,1311539 -3252967,1630361133,2,31,0,1,1630146739,2,1.0,40.0,1.0,-9.0,4.0,1311540 -3252968,1630361135,2,11,2,2,1630146739,1,-9.0,-9.0,-9.0,7.0,-9.0,1311540 -3252969,1630361137,2,33,12,3,1630146739,1,1.0,50.0,1.0,-9.0,4.0,1311540 -3252970,1630362086,4,61,0,1,1630146740,2,6.0,-9.0,-9.0,-9.0,4.0,1311541 -3252971,1630362083,4,23,2,2,1630146740,1,1.0,50.0,6.0,14.0,4.0,1311541 -3252972,1630361874,2,64,0,1,1630146741,1,6.0,-9.0,-9.0,-9.0,4.0,1311542 -3252973,1630361509,2,57,0,1,1630146742,2,6.0,-9.0,-9.0,-9.0,4.0,1311543 -3252974,1630361510,2,38,2,2,1630146742,1,6.0,-9.0,-9.0,-9.0,4.0,1311543 -3252975,1630361511,2,20,2,3,1630146742,1,6.0,-9.0,-9.0,-9.0,4.0,1311543 -3252976,1630360911,1,23,0,1,1630146743,2,1.0,60.0,4.0,16.0,4.0,1311544 -3252977,1630360912,1,22,12,2,1630146743,2,1.0,40.0,1.0,-9.0,4.0,1311544 -3252978,1630361526,2,44,0,1,1630146744,2,3.0,-9.0,-9.0,-9.0,4.0,1311545 -3252979,1630360940,1,24,0,1,1630146745,1,1.0,45.0,1.0,-9.0,4.0,1311546 -3252980,1630360781,2,93,0,1,1630146746,2,6.0,-9.0,-9.0,-9.0,4.0,1311547 -3252981,1630360920,1,21,0,1,1630146747,2,6.0,10.0,5.0,16.0,4.0,1311548 -3252982,1630360921,1,20,12,2,1630146747,2,6.0,20.0,4.0,15.0,4.0,1311548 -3252983,1630361233,2,24,0,1,1630146748,2,1.0,24.0,1.0,15.0,4.0,1311549 -3252984,1630361235,2,6,2,2,1630146748,2,-9.0,-9.0,-9.0,3.0,-9.0,1311549 -3252985,1630361237,2,4,2,3,1630146748,2,-9.0,-9.0,-9.0,1.0,-9.0,1311549 -3252986,1630361057,2,36,0,1,1630146749,1,2.0,25.0,1.0,-9.0,4.0,1311550 -3252987,1630361056,2,34,1,2,1630146749,2,1.0,16.0,1.0,15.0,4.0,1311550 -3252988,1630361409,2,31,0,1,1630146750,2,1.0,50.0,1.0,-9.0,4.0,1311551 -3252989,1630361269,2,24,0,1,1630146751,1,1.0,42.0,1.0,-9.0,4.0,1311552 -3252990,1630361263,2,24,1,2,1630146751,2,6.0,-9.0,-9.0,-9.0,4.0,1311552 -3252991,1630361397,2,59,0,1,1630146752,2,6.0,-9.0,-9.0,15.0,4.0,1311553 -3252992,1630361399,2,75,1,2,1630146752,1,6.0,-9.0,-9.0,-9.0,4.0,1311553 -3252993,1630361398,2,39,2,3,1630146752,2,3.0,-9.0,-9.0,15.0,4.0,1311553 -3252994,1630362035,2,72,0,1,1630146753,1,6.0,-9.0,-9.0,-9.0,4.0,1311554 -3252995,1630360847,2,68,0,1,1630146754,2,3.0,40.0,3.0,-9.0,4.0,1311555 -3252996,1630360849,2,52,1,2,1630146754,1,1.0,40.0,1.0,-9.0,4.0,1311555 -3252997,1630361734,2,54,0,1,1630146755,1,6.0,-9.0,-9.0,-9.0,4.0,1311556 -3252998,1630361733,2,52,13,2,1630146755,2,1.0,24.0,1.0,-9.0,4.0,1311556 -3252999,1630360776,2,56,0,1,1630146756,2,6.0,-9.0,-9.0,-9.0,2.0,1311557 -3253000,1630360775,2,74,6,2,1630146756,2,6.0,-9.0,-9.0,-9.0,4.0,1311557 -3253001,1630361667,2,27,0,1,1630146757,2,3.0,-9.0,-9.0,-9.0,4.0,1311558 -3253002,1630362098,4,60,0,1,1630146758,2,1.0,49.0,1.0,-9.0,4.0,1311559 -3253003,1630360919,1,28,0,1,1630146759,2,1.0,40.0,1.0,16.0,4.0,1311560 -3253004,1630361314,2,58,0,1,1630146760,2,1.0,75.0,1.0,-9.0,4.0,1311561 -3253005,1630361945,2,42,0,1,1630146761,1,1.0,40.0,1.0,-9.0,4.0,1311562 -3253006,1630361354,2,56,0,1,1630146762,2,1.0,60.0,2.0,-9.0,4.0,1311563 -3253007,1630361355,2,58,5,2,1630146762,2,1.0,8.0,3.0,-9.0,4.0,1311563 -3253008,1630361499,2,49,0,1,1630146763,2,1.0,48.0,1.0,-9.0,4.0,1311564 -3253009,1630361500,2,26,2,2,1630146763,1,1.0,3.0,6.0,-9.0,4.0,1311564 -3253010,1630360990,2,32,0,1,1630146764,2,2.0,40.0,1.0,-9.0,4.0,1311565 -3253011,1630360989,1,35,1,2,1630146764,1,3.0,-9.0,-9.0,15.0,4.0,1311565 -3253012,1630360991,2,12,2,3,1630146764,2,-9.0,-9.0,-9.0,8.0,-9.0,1311565 -3253013,1630360818,2,86,0,1,1630146765,2,6.0,-9.0,-9.0,-9.0,4.0,1311566 -3253014,1630360819,2,62,2,2,1630146765,2,1.0,15.0,3.0,-9.0,4.0,1311566 -3253015,1630360969,4,41,0,1,1630146766,2,1.0,40.0,1.0,-9.0,4.0,1311567 -3253016,1630360968,1,41,1,2,1630146766,1,1.0,40.0,5.0,-9.0,4.0,1311567 -3253017,1630361753,2,22,0,1,1630146767,2,1.0,20.0,1.0,15.0,4.0,1311568 -3253018,1630361757,2,3,2,2,1630146767,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311568 -3253019,1630361741,2,57,0,1,1630146768,2,1.0,40.0,1.0,-9.0,4.0,1311569 -3253020,1630361747,2,35,2,2,1630146768,1,6.0,-9.0,-9.0,-9.0,4.0,1311569 -3253021,1630361744,2,33,2,3,1630146768,2,1.0,40.0,1.0,15.0,4.0,1311569 -3253022,1630361715,2,22,0,1,1630146769,1,1.0,40.0,1.0,-9.0,4.0,1311570 -3253023,1630361713,2,1,2,2,1630146769,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311570 -3253024,1630361711,2,22,13,3,1630146769,2,1.0,40.0,1.0,-9.0,4.0,1311570 -3253025,1630360923,1,24,0,1,1630146770,2,6.0,-9.0,-9.0,16.0,4.0,1311571 -3253026,1630361876,2,60,0,1,1630146771,1,1.0,40.0,1.0,-9.0,4.0,1311572 -3253027,1630361736,2,53,0,1,1630146772,2,1.0,45.0,1.0,-9.0,4.0,1311573 -3253028,1630361737,2,32,2,2,1630146772,2,1.0,40.0,1.0,-9.0,4.0,1311573 -3253029,1630362058,4,52,0,1,1630146773,1,1.0,3.0,6.0,-9.0,4.0,1311574 -3253030,1630362061,4,43,1,2,1630146773,2,6.0,-9.0,-9.0,-9.0,4.0,1311574 -3253031,1630361989,2,58,0,1,1630146774,1,6.0,-9.0,-9.0,-9.0,4.0,1311575 -3253032,1630360938,1,24,0,1,1630146775,2,6.0,-9.0,-9.0,16.0,4.0,1311576 -3253033,1630361427,2,56,0,1,1630146776,2,1.0,40.0,1.0,-9.0,4.0,1311577 -3253034,1630361428,2,7,14,2,1630146776,2,-9.0,-9.0,-9.0,4.0,-9.0,1311577 -3253035,1630361429,2,6,14,3,1630146776,2,-9.0,-9.0,-9.0,3.0,-9.0,1311577 -3253036,1630360882,1,58,0,1,1630146777,2,1.0,55.0,1.0,-9.0,4.0,1311578 -3253037,1630360787,2,65,0,1,1630146778,2,6.0,-9.0,-9.0,-9.0,4.0,1311579 -3253038,1630360788,2,65,1,2,1630146778,1,6.0,-9.0,-9.0,-9.0,4.0,1311579 -3253039,1630361723,2,62,0,1,1630146779,2,1.0,50.0,1.0,-9.0,4.0,1311580 -3253040,1630360778,2,65,0,1,1630146780,2,6.0,30.0,5.0,-9.0,4.0,1311581 -3253041,1630361716,2,50,0,1,1630146781,2,3.0,-9.0,-9.0,-9.0,4.0,1311582 -3253042,1630361717,2,71,1,2,1630146781,1,6.0,-9.0,-9.0,-9.0,2.0,1311582 -3253043,1630361230,2,46,0,1,1630146782,2,6.0,-9.0,-9.0,-9.0,2.0,1311583 -3253044,1630361231,2,53,1,2,1630146782,1,6.0,-9.0,-9.0,-9.0,4.0,1311583 -3253045,1630361257,2,31,0,1,1630146783,1,1.0,40.0,1.0,-9.0,4.0,1311584 -3253046,1630361256,2,31,1,2,1630146783,2,1.0,40.0,6.0,-9.0,4.0,1311584 -3253047,1630361581,2,44,0,1,1630146784,2,1.0,40.0,1.0,-9.0,4.0,1311585 -3253048,1630361585,2,15,2,2,1630146784,2,-9.0,-9.0,-9.0,12.0,-9.0,1311585 -3253049,1630361583,2,1,2,3,1630146784,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311585 -3253050,1630361334,2,60,0,1,1630146785,1,6.0,-9.0,-9.0,-9.0,4.0,1311586 -3253051,1630361333,2,56,1,2,1630146785,2,1.0,40.0,1.0,-9.0,4.0,1311586 -3253052,1630361335,2,6,10,3,1630146785,2,-9.0,-9.0,-9.0,2.0,-9.0,1311586 -3253053,1630361792,2,39,0,1,1630146786,1,1.0,48.0,1.0,-9.0,4.0,1311587 -3253054,1630360801,2,85,0,1,1630146787,2,6.0,-9.0,-9.0,15.0,4.0,1311588 -3253055,1630360802,2,25,7,2,1630146787,2,1.0,45.0,1.0,-9.0,4.0,1311588 -3253056,1630362078,4,22,0,1,1630146788,1,2.0,20.0,4.0,16.0,4.0,1311589 -3253057,1630361869,2,21,0,1,1630146789,1,1.0,48.0,1.0,-9.0,4.0,1311590 -3253058,1630361873,2,24,15,2,1630146789,1,6.0,-9.0,-9.0,-9.0,4.0,1311590 -3253059,1630361821,2,61,0,1,1630146790,1,1.0,40.0,1.0,-9.0,4.0,1311591 -3253060,1630361325,2,20,0,1,1630146791,2,6.0,-9.0,-9.0,-9.0,4.0,1311592 -3253061,1630361331,2,1,2,2,1630146791,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311592 -3253062,1630361328,2,25,12,3,1630146791,1,3.0,-9.0,-9.0,-9.0,4.0,1311592 -3253063,1630360815,2,94,0,1,1630146792,2,6.0,-9.0,-9.0,-9.0,4.0,1311593 -3253064,1630360816,2,65,2,2,1630146792,2,6.0,-9.0,-9.0,-9.0,4.0,1311593 -3253065,1630360817,2,44,7,3,1630146792,2,1.0,20.0,1.0,15.0,4.0,1311593 -3253066,1630361367,2,32,0,1,1630146793,2,6.0,40.0,5.0,16.0,4.0,1311594 -3253067,1630361368,2,31,1,2,1630146793,2,6.0,40.0,5.0,-9.0,4.0,1311594 -3253068,1630361369,2,5,2,3,1630146793,2,-9.0,-9.0,-9.0,2.0,-9.0,1311594 -3253069,1630360878,1,48,0,1,1630146794,2,2.0,55.0,4.0,-9.0,4.0,1311595 -3253070,1630360879,3,29,12,2,1630146794,1,1.0,38.0,1.0,-9.0,4.0,1311595 -3253071,1630361430,2,57,0,1,1630146795,2,6.0,-9.0,-9.0,-9.0,4.0,1311596 -3253072,1630361431,2,60,5,2,1630146795,1,6.0,-9.0,-9.0,-9.0,4.0,1311596 -3253073,1630360992,1,22,0,1,1630146796,1,6.0,-9.0,-9.0,15.0,4.0,1311597 -3253074,1630360993,1,24,11,2,1630146796,1,3.0,-9.0,-9.0,15.0,4.0,1311597 -3253075,1630362106,4,24,0,1,1630146797,2,1.0,45.0,1.0,-9.0,4.0,1311598 -3253076,1630362112,4,2,2,2,1630146797,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311598 -3253077,1630362049,4,52,0,1,1630146798,2,3.0,-9.0,-9.0,-9.0,4.0,1311599 -3253078,1630362048,2,66,1,2,1630146798,1,6.0,40.0,5.0,-9.0,4.0,1311599 -3253079,1630361122,2,46,0,1,1630146799,2,1.0,60.0,1.0,-9.0,4.0,1311600 -3253080,1630360865,2,73,0,1,1630146800,1,1.0,4.0,5.0,-9.0,4.0,1311601 -3253081,1630360864,2,80,1,2,1630146800,2,6.0,-9.0,-9.0,-9.0,4.0,1311601 -3253082,1630362100,4,50,0,1,1630146801,2,1.0,40.0,1.0,-9.0,4.0,1311602 -3253083,1630361213,2,64,0,1,1630146802,2,6.0,-9.0,-9.0,-9.0,4.0,1311603 -3253084,1630361227,2,67,1,2,1630146802,1,6.0,-9.0,-9.0,-9.0,4.0,1311603 -3253085,1630361220,2,33,2,3,1630146802,1,1.0,8.0,6.0,15.0,4.0,1311603 -3253086,1630361572,2,57,0,1,1630146803,1,1.0,40.0,1.0,-9.0,4.0,1311604 -3253087,1630361570,2,42,11,2,1630146803,2,1.0,40.0,1.0,-9.0,4.0,1311604 -3253088,1630362046,2,66,0,1,1630146804,1,1.0,30.0,1.0,-9.0,2.0,1311605 -3253089,1630361798,2,48,0,1,1630146805,1,1.0,50.0,1.0,-9.0,4.0,1311606 -3253090,1630361724,2,51,0,1,1630146806,2,6.0,40.0,3.0,-9.0,4.0,1311607 -3253091,1630361725,2,17,2,2,1630146806,1,6.0,-9.0,-9.0,14.0,4.0,1311607 -3253092,1630361726,2,14,2,3,1630146806,2,-9.0,-9.0,-9.0,11.0,-9.0,1311607 -3253093,1630361702,2,40,0,1,1630146807,2,1.0,40.0,1.0,-9.0,4.0,1311608 -3253094,1630361704,2,17,2,2,1630146807,2,6.0,-9.0,-9.0,14.0,4.0,1311608 -3253095,1630361703,2,12,2,3,1630146807,1,-9.0,-9.0,-9.0,9.0,-9.0,1311608 -3253096,1630360998,2,40,0,1,1630146808,2,1.0,40.0,1.0,-9.0,4.0,1311609 -3253097,1630360999,2,52,1,2,1630146808,1,1.0,40.0,1.0,-9.0,4.0,1311609 -3253098,1630360872,2,85,0,1,1630146809,1,6.0,-9.0,-9.0,-9.0,2.0,1311610 -3253099,1630360871,1,67,1,2,1630146809,2,1.0,40.0,1.0,-9.0,4.0,1311610 -3253100,1630360873,4,26,2,3,1630146809,2,6.0,12.0,6.0,-9.0,4.0,1311610 -3253101,1630361837,2,42,0,1,1630146810,1,6.0,-9.0,-9.0,-9.0,4.0,1311611 -3253102,1630361838,2,30,10,2,1630146810,1,6.0,40.0,5.0,-9.0,4.0,1311611 -3253103,1630361998,4,83,0,1,1630146811,1,1.0,30.0,4.0,-9.0,4.0,1311612 -3253104,1630361997,2,26,10,2,1630146811,1,3.0,-9.0,-9.0,14.0,4.0,1311612 -3253105,1630361108,2,61,0,1,1630146812,2,6.0,-9.0,-9.0,-9.0,4.0,1311613 -3253106,1630361110,2,69,5,2,1630146812,1,6.0,-9.0,-9.0,-9.0,4.0,1311613 -3253107,1630361537,2,57,0,1,1630146813,2,1.0,28.0,4.0,-9.0,4.0,1311614 -3253108,1630361539,2,28,2,2,1630146813,1,6.0,-9.0,-9.0,13.0,4.0,1311614 -3253109,1630361538,2,6,7,3,1630146813,1,-9.0,-9.0,-9.0,4.0,-9.0,1311614 -3253110,1630362114,4,65,0,1,1630146814,1,6.0,-9.0,-9.0,-9.0,4.0,1311615 -3253111,1630360789,2,71,0,1,1630146815,2,6.0,-9.0,-9.0,-9.0,4.0,1311616 -3253112,1630360790,2,52,15,2,1630146815,2,1.0,28.0,1.0,-9.0,4.0,1311616 -3253113,1630361594,2,21,0,1,1630146816,1,1.0,40.0,4.0,-9.0,4.0,1311617 -3253114,1630361590,2,21,15,2,1630146816,2,1.0,40.0,1.0,15.0,4.0,1311617 -3253115,1630362031,2,73,0,1,1630146817,1,6.0,-9.0,-9.0,-9.0,4.0,1311618 -3253116,1630361015,2,55,0,1,1630146818,2,1.0,40.0,1.0,-9.0,4.0,1311619 -3253117,1630361017,2,26,2,2,1630146818,1,3.0,1.0,6.0,15.0,4.0,1311619 -3253118,1630361019,2,19,2,3,1630146818,1,6.0,-9.0,-9.0,15.0,4.0,1311619 -3253119,1630360941,1,63,0,1,1630146819,1,1.0,92.0,1.0,-9.0,4.0,1311620 -3253120,1630361586,2,64,0,1,1630146820,2,6.0,40.0,6.0,-9.0,4.0,1311621 -3253121,1630361861,2,57,0,1,1630146821,1,6.0,40.0,1.0,-9.0,4.0,1311622 -3253122,1630361676,2,60,0,1,1630146822,1,1.0,48.0,1.0,-9.0,4.0,1311623 -3253123,1630361673,2,60,1,2,1630146822,2,6.0,-9.0,-9.0,-9.0,4.0,1311623 -3253124,1630361007,2,55,0,1,1630146823,1,1.0,20.0,5.0,-9.0,4.0,1311624 -3253125,1630361010,2,19,2,2,1630146823,1,3.0,-9.0,-9.0,-9.0,4.0,1311624 -3253126,1630361004,2,51,10,3,1630146823,2,6.0,-9.0,-9.0,-9.0,4.0,1311624 -3253127,1630361763,2,23,0,1,1630146824,2,1.0,40.0,1.0,15.0,4.0,1311625 -3253128,1630360874,1,76,0,1,1630146825,2,6.0,-9.0,-9.0,-9.0,4.0,1311626 -3253129,1630361467,2,45,0,1,1630146826,2,1.0,40.0,1.0,-9.0,4.0,1311627 -3253130,1630361469,2,11,2,2,1630146826,2,-9.0,-9.0,-9.0,8.0,-9.0,1311627 -3253131,1630361468,2,11,2,3,1630146826,1,-9.0,-9.0,-9.0,8.0,-9.0,1311627 -3253132,1630361069,2,74,0,1,1630146827,1,6.0,-9.0,-9.0,-9.0,4.0,1311628 -3253133,1630361068,2,64,15,2,1630146827,2,1.0,10.0,1.0,-9.0,4.0,1311628 -3253134,1630361826,2,54,0,1,1630146828,1,6.0,60.0,4.0,-9.0,2.0,1311629 -3253135,1630361932,2,48,0,1,1630146829,1,1.0,40.0,1.0,-9.0,4.0,1311630 -3253136,1630360850,2,73,0,1,1630146830,2,6.0,-9.0,-9.0,-9.0,4.0,1311631 -3253137,1630360851,2,66,5,2,1630146830,2,1.0,6.0,3.0,-9.0,4.0,1311631 -3253138,1630360964,1,24,0,1,1630146831,1,3.0,47.0,3.0,15.0,4.0,1311632 -3253139,1630361160,2,31,0,1,1630146832,2,1.0,37.0,1.0,-9.0,4.0,1311633 -3253140,1630361161,2,30,13,2,1630146832,1,1.0,37.0,1.0,-9.0,4.0,1311633 -3253141,1630361471,2,59,0,1,1630146833,2,6.0,-9.0,-9.0,-9.0,2.0,1311634 -3253142,1630361475,2,29,4,2,1630146833,1,6.0,-9.0,-9.0,-9.0,4.0,1311634 -3253143,1630361473,2,57,13,3,1630146833,2,1.0,40.0,1.0,-9.0,2.0,1311634 -3253144,1630361092,2,51,0,1,1630146834,2,1.0,40.0,2.0,-9.0,4.0,1311635 -3253145,1630361093,2,24,2,2,1630146834,2,1.0,40.0,1.0,-9.0,4.0,1311635 -3253146,1630360952,2,44,0,1,1630146835,2,1.0,29.0,1.0,-9.0,4.0,1311636 -3253147,1630360950,1,41,1,2,1630146835,1,3.0,-9.0,-9.0,-9.0,4.0,1311636 -3253148,1630360954,4,16,2,3,1630146835,2,6.0,-9.0,-9.0,13.0,-9.0,1311636 -3253149,1630360784,2,75,0,1,1630146836,2,6.0,-9.0,-9.0,-9.0,4.0,1311637 -3253150,1630361722,2,30,0,1,1630146837,1,1.0,40.0,1.0,15.0,4.0,1311638 -3253151,1630361721,2,27,15,2,1630146837,2,1.0,40.0,1.0,15.0,4.0,1311638 -3253152,1630361550,2,69,0,1,1630146838,1,6.0,-9.0,-9.0,-9.0,2.0,1311639 -3253153,1630361549,2,61,12,2,1630146838,2,6.0,-9.0,-9.0,-9.0,4.0,1311639 -3253154,1630361048,2,45,0,1,1630146839,2,1.0,55.0,1.0,-9.0,4.0,1311640 -3253155,1630361049,2,55,1,2,1630146839,1,1.0,80.0,1.0,-9.0,4.0,1311640 -3253156,1630360822,2,65,0,1,1630146840,2,6.0,-9.0,-9.0,-9.0,4.0,1311641 -3253157,1630361504,2,53,0,1,1630146841,2,1.0,40.0,1.0,-9.0,4.0,1311642 -3253158,1630361505,2,46,1,2,1630146841,1,1.0,40.0,1.0,-9.0,4.0,1311642 -3253159,1630361986,2,43,0,1,1630146842,1,6.0,40.0,1.0,-9.0,4.0,1311643 -3253160,1630361417,2,28,0,1,1630146843,2,1.0,40.0,1.0,15.0,4.0,1311644 -3253161,1630361418,2,3,2,2,1630146843,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311644 -3253162,1630361690,2,24,0,1,1630146844,1,1.0,20.0,1.0,16.0,4.0,1311645 -3253163,1630361684,2,24,13,2,1630146844,2,6.0,-9.0,-9.0,16.0,4.0,1311645 -3253164,1630361102,2,26,0,1,1630146845,1,1.0,40.0,1.0,-9.0,4.0,1311646 -3253165,1630361101,2,25,13,2,1630146845,2,6.0,-9.0,-9.0,-9.0,4.0,1311646 -3253166,1630360857,2,72,0,1,1630146846,2,1.0,40.0,1.0,-9.0,4.0,1311647 -3253167,1630361364,2,69,0,1,1630146847,1,6.0,12.0,6.0,-9.0,2.0,1311648 -3253168,1630361362,2,61,1,2,1630146847,2,1.0,45.0,1.0,-9.0,4.0,1311648 -3253169,1630360796,2,68,0,1,1630146848,2,6.0,40.0,2.0,-9.0,4.0,1311649 -3253170,1630360797,2,42,2,2,1630146848,1,6.0,-9.0,-9.0,-9.0,4.0,1311649 -3253171,1630360798,2,21,7,3,1630146848,1,6.0,-9.0,-9.0,-9.0,4.0,1311649 -3253172,1630360902,1,56,0,1,1630146849,2,1.0,35.0,1.0,-9.0,4.0,1311650 -3253173,1630360903,1,67,1,2,1630146849,1,6.0,-9.0,-9.0,-9.0,2.0,1311650 -3253174,1630360830,2,72,0,1,1630146850,2,6.0,-9.0,-9.0,-9.0,4.0,1311651 -3253175,1630360831,2,41,2,2,1630146850,1,1.0,40.0,1.0,-9.0,4.0,1311651 -3253176,1630361567,2,40,0,1,1630146851,2,1.0,60.0,3.0,-9.0,4.0,1311652 -3253177,1630360988,1,29,0,1,1630146852,1,1.0,40.0,1.0,16.0,4.0,1311653 -3253178,1630361164,2,63,0,1,1630146853,2,6.0,-9.0,-9.0,-9.0,4.0,1311654 -3253179,1630361388,2,45,0,1,1630146854,2,1.0,40.0,1.0,-9.0,4.0,1311655 -3253180,1630361389,2,14,2,2,1630146854,2,-9.0,-9.0,-9.0,10.0,-9.0,1311655 -3253181,1630361239,2,59,0,1,1630146855,1,2.0,72.0,1.0,-9.0,4.0,1311656 -3253182,1630361238,2,49,1,2,1630146855,2,1.0,40.0,1.0,-9.0,4.0,1311656 -3253183,1630360809,2,67,0,1,1630146856,2,6.0,-9.0,-9.0,-9.0,4.0,1311657 -3253184,1630360810,2,27,2,2,1630146856,1,1.0,30.0,1.0,-9.0,4.0,1311657 -3253185,1630360970,1,27,0,1,1630146857,1,1.0,48.0,1.0,-9.0,4.0,1311658 -3253186,1630361286,2,58,0,1,1630146858,1,6.0,-9.0,-9.0,-9.0,4.0,1311659 -3253187,1630361284,2,52,1,2,1630146858,2,1.0,32.0,4.0,-9.0,4.0,1311659 -3253188,1630361285,2,14,2,3,1630146858,1,-9.0,-9.0,-9.0,10.0,-9.0,1311659 -3253189,1630361506,2,58,0,1,1630146859,2,1.0,55.0,1.0,-9.0,4.0,1311660 -3253190,1630361507,2,59,1,2,1630146859,1,1.0,40.0,1.0,-9.0,4.0,1311660 -3253191,1630361508,2,47,15,3,1630146859,1,1.0,30.0,1.0,-9.0,4.0,1311660 -3253192,1630361047,2,61,0,1,1630146860,2,1.0,40.0,1.0,-9.0,4.0,1311661 -3253193,1630361303,2,37,0,1,1630146861,2,2.0,25.0,1.0,-9.0,4.0,1311662 -3253194,1630361304,2,19,2,2,1630146861,1,3.0,-9.0,-9.0,-9.0,4.0,1311662 -3253195,1630362045,2,67,0,1,1630146862,1,1.0,50.0,1.0,-9.0,4.0,1311663 -3253196,1630361777,2,23,0,1,1630146863,2,6.0,-9.0,-9.0,-9.0,4.0,1311664 -3253197,1630362047,2,66,0,1,1630146864,1,6.0,-9.0,-9.0,-9.0,4.0,1311665 -3253198,1630361282,2,57,0,1,1630146865,2,6.0,-9.0,-9.0,-9.0,4.0,1311666 -3253199,1630361976,2,44,0,1,1630146866,1,6.0,-9.0,-9.0,14.0,4.0,1311667 -3253200,1630361977,2,50,5,2,1630146866,1,6.0,-9.0,-9.0,-9.0,4.0,1311667 -3253201,1630362323,2,62,0,1,1630146867,2,6.0,-9.0,-9.0,-9.0,4.0,1311668 -3253202,1630362325,2,24,2,2,1630146867,2,1.0,40.0,3.0,-9.0,4.0,1311668 -3253203,1630362256,2,45,0,1,1630146868,2,1.0,55.0,1.0,-9.0,4.0,1311669 -3253204,1630362257,2,55,1,2,1630146868,1,1.0,80.0,1.0,-9.0,4.0,1311669 -3253205,1630362384,2,60,0,1,1630146869,1,1.0,84.0,1.0,-9.0,4.0,1311670 -3253206,1630362383,2,51,5,2,1630146869,2,4.0,50.0,1.0,-9.0,1.0,1311670 -3253207,1630362556,2,61,0,1,1630146870,1,6.0,-9.0,-9.0,-9.0,4.0,1311671 -3253208,1630362555,2,60,1,2,1630146870,2,6.0,-9.0,-9.0,-9.0,4.0,1311671 -3253209,1630362478,2,62,0,1,1630146871,2,1.0,40.0,1.0,-9.0,4.0,1311672 -3253210,1630362532,2,63,0,1,1630146872,2,1.0,50.0,1.0,-9.0,4.0,1311673 -3253211,1630362574,2,54,0,1,1630146873,2,1.0,35.0,1.0,-9.0,4.0,1311674 -3253212,1630362385,2,63,0,1,1630146874,2,6.0,-9.0,-9.0,-9.0,4.0,1311675 -3253213,1630362388,2,25,2,2,1630146874,2,1.0,40.0,2.0,-9.0,4.0,1311675 -3253214,1630362386,2,63,0,1,1630146875,2,6.0,-9.0,-9.0,-9.0,4.0,1311676 -3253215,1630362389,2,25,2,2,1630146875,2,1.0,40.0,2.0,-9.0,4.0,1311676 -3253216,1630362387,2,63,0,1,1630146876,2,6.0,-9.0,-9.0,-9.0,4.0,1311677 -3253217,1630362390,2,25,2,2,1630146876,2,1.0,40.0,2.0,-9.0,4.0,1311677 -3253218,1630362359,2,64,0,1,1630146877,2,6.0,-9.0,-9.0,-9.0,4.0,1311678 -3253219,1630362360,2,30,2,2,1630146877,2,1.0,45.0,4.0,-9.0,4.0,1311678 -3253220,1630362368,2,56,0,1,1630146878,2,3.0,-9.0,-9.0,-9.0,4.0,1311679 -3253221,1630362297,2,63,0,1,1630146879,2,6.0,-9.0,-9.0,16.0,4.0,1311680 -3253222,1630362338,2,51,0,1,1630146880,2,3.0,-9.0,-9.0,-9.0,4.0,1311681 -3253223,1630362518,2,52,0,1,1630146881,2,6.0,-9.0,-9.0,-9.0,4.0,1311682 -3253224,1630362544,2,63,0,1,1630146882,2,6.0,-9.0,-9.0,-9.0,4.0,1311683 -3253225,1630362545,2,60,13,2,1630146882,1,6.0,-9.0,-9.0,-9.0,2.0,1311683 -3253226,1630362439,2,60,0,1,1630146883,2,6.0,-9.0,-9.0,-9.0,4.0,1311684 -3253227,1630362440,2,69,1,2,1630146883,1,6.0,-9.0,-9.0,-9.0,2.0,1311684 -3253228,1630362580,2,58,0,1,1630146884,2,3.0,-9.0,-9.0,15.0,4.0,1311685 -3253229,1630362581,2,28,2,2,1630146884,1,6.0,-9.0,-9.0,16.0,4.0,1311685 -3253230,1630362434,2,55,0,1,1630146885,2,6.0,-9.0,-9.0,-9.0,4.0,1311686 -3253231,1630362435,2,56,1,2,1630146885,1,6.0,-9.0,-9.0,-9.0,4.0,1311686 -3253232,1630362493,2,48,0,1,1630146886,2,1.0,10.0,1.0,15.0,4.0,1311687 -3253233,1630362578,2,55,0,1,1630146887,2,1.0,37.0,1.0,-9.0,4.0,1311688 -3253234,1630362457,2,59,0,1,1630146888,2,1.0,30.0,1.0,-9.0,4.0,1311689 -3253235,1630362412,2,63,0,1,1630146889,2,3.0,-9.0,-9.0,-9.0,4.0,1311690 -3253236,1630362413,2,25,2,2,1630146889,2,1.0,30.0,1.0,15.0,4.0,1311690 -3253237,1630362590,2,55,0,1,1630146890,2,1.0,30.0,1.0,-9.0,4.0,1311691 -3253238,1630362591,2,57,5,2,1630146890,2,6.0,-9.0,-9.0,-9.0,4.0,1311691 -3253239,1630362334,2,60,0,1,1630146891,1,1.0,1.0,6.0,-9.0,4.0,1311692 -3253240,1630362333,2,61,1,2,1630146891,2,1.0,7.0,1.0,-9.0,4.0,1311692 -3253241,1630362170,1,27,0,1,1630146892,1,1.0,40.0,1.0,16.0,4.0,1311693 -3253242,1630362168,1,29,15,2,1630146892,2,1.0,50.0,1.0,-9.0,4.0,1311693 -3253243,1630362331,2,35,0,1,1630146893,1,1.0,48.0,1.0,-9.0,4.0,1311694 -3253244,1630362332,2,11,2,2,1630146893,2,-9.0,-9.0,-9.0,7.0,-9.0,1311694 -3253245,1630362330,2,3,2,3,1630146893,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311694 -3253246,1630362329,2,40,13,4,1630146893,2,3.0,-9.0,-9.0,-9.0,4.0,1311694 -3253247,1630362697,2,39,0,1,1630146894,1,1.0,48.0,1.0,-9.0,4.0,1311695 -3253248,1630362477,2,26,0,1,1630146895,2,1.0,40.0,1.0,-9.0,4.0,1311696 -3253249,1630362653,2,34,0,1,1630146896,2,2.0,40.0,1.0,-9.0,4.0,1311697 -3253250,1630362456,2,27,0,1,1630146897,2,1.0,40.0,1.0,-9.0,4.0,1311698 -3253251,1630362251,2,26,0,1,1630146898,2,1.0,50.0,1.0,-9.0,4.0,1311699 -3253252,1630362486,2,32,0,1,1630146899,2,1.0,70.0,1.0,-9.0,4.0,1311700 -3253253,1630362436,2,43,0,1,1630146900,2,1.0,50.0,1.0,-9.0,4.0,1311701 -3253254,1630362728,2,34,0,1,1630146901,1,1.0,40.0,1.0,-9.0,4.0,1311702 -3253255,1630362231,1,29,0,1,1630146902,1,1.0,40.0,1.0,-9.0,2.0,1311703 -3253256,1630362218,1,26,0,1,1630146903,2,1.0,40.0,1.0,-9.0,4.0,1311704 -3253257,1630362592,2,38,0,1,1630146904,2,1.0,36.0,1.0,-9.0,4.0,1311705 -3253258,1630362593,2,4,2,2,1630146904,2,-9.0,-9.0,-9.0,1.0,-9.0,1311705 -3253259,1630362487,2,42,0,1,1630146905,2,1.0,40.0,1.0,-9.0,4.0,1311706 -3253260,1630362488,2,7,2,2,1630146905,2,-9.0,-9.0,-9.0,4.0,-9.0,1311706 -3253261,1630362676,2,43,0,1,1630146906,2,1.0,40.0,1.0,15.0,4.0,1311707 -3253262,1630362678,2,19,2,2,1630146906,1,3.0,36.0,6.0,15.0,4.0,1311707 -3253263,1630362226,1,25,0,1,1630146907,1,6.0,-9.0,-9.0,16.0,4.0,1311708 -3253264,1630362225,1,26,1,2,1630146907,2,1.0,50.0,1.0,-9.0,4.0,1311708 -3253265,1630362420,2,29,0,1,1630146908,1,1.0,20.0,5.0,-9.0,4.0,1311709 -3253266,1630362419,2,49,6,2,1630146908,2,1.0,35.0,1.0,15.0,4.0,1311709 -3253267,1630362205,1,30,0,1,1630146909,1,1.0,60.0,1.0,16.0,4.0,1311710 -3253268,1630362204,1,29,1,2,1630146909,2,1.0,65.0,1.0,16.0,4.0,1311710 -3253269,1630362431,2,28,0,1,1630146910,2,1.0,40.0,5.0,16.0,4.0,1311711 -3253270,1630362432,2,29,12,2,1630146910,2,1.0,40.0,1.0,-9.0,4.0,1311711 -3253271,1630362236,1,29,0,1,1630146911,1,1.0,50.0,1.0,16.0,4.0,1311712 -3253272,1630362237,1,34,12,2,1630146911,1,1.0,40.0,1.0,16.0,4.0,1311712 -3253273,1630362654,2,30,0,1,1630146912,2,3.0,-9.0,-9.0,-9.0,4.0,1311713 -3253274,1630362656,2,9,2,2,1630146912,2,-9.0,-9.0,-9.0,5.0,-9.0,1311713 -3253275,1630362657,2,8,2,3,1630146912,2,-9.0,-9.0,-9.0,5.0,-9.0,1311713 -3253276,1630362655,2,5,2,4,1630146912,1,-9.0,-9.0,-9.0,2.0,-9.0,1311713 -3253277,1630362638,2,40,0,1,1630146913,2,3.0,-9.0,-9.0,-9.0,4.0,1311714 -3253278,1630362639,2,19,2,2,1630146913,2,6.0,-9.0,-9.0,15.0,4.0,1311714 -3253279,1630362640,2,18,2,3,1630146913,1,6.0,-9.0,-9.0,14.0,4.0,1311714 -3253280,1630362641,2,3,7,4,1630146913,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311714 -3253281,1630362707,2,44,0,1,1630146914,1,3.0,6.0,6.0,-9.0,2.0,1311715 -3253282,1630362396,2,44,0,1,1630146915,2,3.0,8.0,6.0,-9.0,4.0,1311716 -3253283,1630362371,2,41,0,1,1630146916,2,6.0,-9.0,-9.0,-9.0,2.0,1311717 -3253284,1630362327,2,32,0,1,1630146917,2,6.0,-9.0,-9.0,16.0,4.0,1311718 -3253285,1630362497,2,41,0,1,1630146918,2,3.0,-9.0,-9.0,-9.0,4.0,1311719 -3253286,1630362595,2,29,0,1,1630146919,2,3.0,40.0,5.0,-9.0,4.0,1311720 -3253287,1630362702,2,34,0,1,1630146920,1,3.0,-9.0,-9.0,-9.0,4.0,1311721 -3253288,1630362704,2,18,10,2,1630146920,1,6.0,-9.0,-9.0,14.0,4.0,1311721 -3253289,1630362703,2,34,0,1,1630146921,1,3.0,-9.0,-9.0,-9.0,4.0,1311722 -3253290,1630362705,2,18,10,2,1630146921,1,6.0,-9.0,-9.0,14.0,4.0,1311722 -3253291,1630362575,2,26,0,1,1630146922,2,3.0,-9.0,-9.0,15.0,4.0,1311723 -3253292,1630362576,2,6,2,2,1630146922,2,-9.0,-9.0,-9.0,3.0,-9.0,1311723 -3253293,1630362308,2,43,0,1,1630146923,2,6.0,40.0,1.0,-9.0,4.0,1311724 -3253294,1630362309,2,46,12,2,1630146923,1,3.0,20.0,5.0,-9.0,4.0,1311724 -3253295,1630362642,2,42,0,1,1630146924,2,6.0,-9.0,-9.0,-9.0,4.0,1311725 -3253296,1630362643,2,3,2,2,1630146924,2,-9.0,-9.0,-9.0,1.0,-9.0,1311725 -3253297,1630362620,2,38,0,1,1630146925,2,1.0,35.0,3.0,-9.0,4.0,1311726 -3253298,1630362622,2,14,2,2,1630146925,1,-9.0,-9.0,-9.0,10.0,-9.0,1311726 -3253299,1630362624,2,12,2,3,1630146925,1,-9.0,-9.0,-9.0,8.0,-9.0,1311726 -3253300,1630362626,2,10,2,4,1630146925,2,-9.0,-9.0,-9.0,6.0,-9.0,1311726 -3253301,1630362243,2,30,0,1,1630146926,2,2.0,40.0,5.0,-9.0,4.0,1311727 -3253302,1630362245,2,10,2,2,1630146926,2,-9.0,-9.0,-9.0,7.0,-9.0,1311727 -3253303,1630362244,2,2,2,3,1630146926,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311727 -3253304,1630362246,2,0,2,4,1630146926,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311727 -3253305,1630362598,2,38,0,1,1630146927,2,3.0,-9.0,-9.0,-9.0,4.0,1311728 -3253306,1630362600,2,18,2,2,1630146927,1,1.0,8.0,4.0,14.0,4.0,1311728 -3253307,1630362601,2,11,2,3,1630146927,2,-9.0,-9.0,-9.0,7.0,-9.0,1311728 -3253308,1630362599,2,64,6,4,1630146927,2,6.0,-9.0,-9.0,-9.0,4.0,1311728 -3253309,1630362481,2,44,0,1,1630146928,2,3.0,32.0,4.0,-9.0,4.0,1311729 -3253310,1630362482,2,19,2,2,1630146928,2,1.0,20.0,6.0,15.0,4.0,1311729 -3253311,1630362483,2,15,2,3,1630146928,1,-9.0,-9.0,-9.0,12.0,-9.0,1311729 -3253312,1630362484,2,7,2,4,1630146928,2,-9.0,-9.0,-9.0,4.0,-9.0,1311729 -3253313,1630362446,2,30,0,1,1630146929,2,1.0,20.0,6.0,-9.0,4.0,1311730 -3253314,1630362447,2,9,2,2,1630146929,1,-9.0,-9.0,-9.0,6.0,-9.0,1311730 -3253315,1630362448,2,6,2,3,1630146929,2,-9.0,-9.0,-9.0,3.0,-9.0,1311730 -3253316,1630362449,2,3,2,4,1630146929,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311730 -3253317,1630362621,2,38,0,1,1630146930,2,1.0,35.0,3.0,-9.0,4.0,1311731 -3253318,1630362623,2,14,2,2,1630146930,1,-9.0,-9.0,-9.0,10.0,-9.0,1311731 -3253319,1630362625,2,12,2,3,1630146930,1,-9.0,-9.0,-9.0,8.0,-9.0,1311731 -3253320,1630362627,2,10,2,4,1630146930,2,-9.0,-9.0,-9.0,6.0,-9.0,1311731 -3253321,1630362382,2,42,0,1,1630146931,2,1.0,45.0,1.0,-9.0,4.0,1311732 -3253322,1630362717,2,40,0,1,1630146932,1,1.0,40.0,6.0,-9.0,4.0,1311733 -3253323,1630362720,2,39,0,1,1630146933,1,1.0,40.0,1.0,-9.0,4.0,1311734 -3253324,1630362210,1,25,0,1,1630146934,2,1.0,30.0,3.0,-9.0,4.0,1311735 -3253325,1630362743,2,29,0,1,1630146935,1,1.0,40.0,1.0,-9.0,4.0,1311736 -3253326,1630362602,2,44,0,1,1630146936,2,1.0,40.0,1.0,-9.0,4.0,1311737 -3253327,1630362571,2,42,0,1,1630146937,2,1.0,38.0,1.0,15.0,4.0,1311738 -3253328,1630362603,2,44,0,1,1630146938,2,1.0,40.0,1.0,-9.0,4.0,1311739 -3253329,1630362222,1,31,0,1,1630146939,2,1.0,80.0,5.0,-9.0,4.0,1311740 -3253330,1630362193,1,26,0,1,1630146940,2,1.0,40.0,5.0,-9.0,4.0,1311741 -3253331,1630362649,2,31,0,1,1630146941,1,6.0,-9.0,-9.0,-9.0,4.0,1311742 -3253332,1630362647,2,62,6,2,1630146941,2,1.0,37.0,1.0,-9.0,4.0,1311742 -3253333,1630362397,2,37,0,1,1630146942,2,2.0,25.0,1.0,-9.0,4.0,1311743 -3253334,1630362398,2,19,2,2,1630146942,1,3.0,-9.0,-9.0,-9.0,4.0,1311743 -3253335,1630362650,2,31,0,1,1630146943,1,6.0,-9.0,-9.0,-9.0,4.0,1311744 -3253336,1630362648,2,62,6,2,1630146943,2,1.0,37.0,1.0,-9.0,4.0,1311744 -3253337,1630362421,2,34,0,1,1630146944,2,1.0,40.0,1.0,-9.0,4.0,1311745 -3253338,1630362423,2,14,2,2,1630146944,2,-9.0,-9.0,-9.0,11.0,-9.0,1311745 -3253339,1630362546,2,31,0,1,1630146945,2,1.0,40.0,1.0,-9.0,4.0,1311746 -3253340,1630362549,2,30,10,2,1630146945,1,6.0,-9.0,-9.0,-9.0,4.0,1311746 -3253341,1630362345,2,36,0,1,1630146946,2,1.0,25.0,1.0,-9.0,4.0,1311747 -3253342,1630362346,2,18,2,2,1630146946,1,6.0,-9.0,-9.0,14.0,4.0,1311747 -3253343,1630362547,2,31,0,1,1630146947,2,1.0,40.0,1.0,-9.0,4.0,1311748 -3253344,1630362550,2,30,10,2,1630146947,1,6.0,-9.0,-9.0,-9.0,4.0,1311748 -3253345,1630362525,2,29,0,1,1630146948,2,1.0,30.0,1.0,15.0,4.0,1311749 -3253346,1630362526,2,4,2,2,1630146948,2,-9.0,-9.0,-9.0,1.0,-9.0,1311749 -3253347,1630362563,2,32,0,1,1630146949,2,1.0,20.0,1.0,-9.0,4.0,1311750 -3253348,1630362564,2,10,2,2,1630146949,1,-9.0,-9.0,-9.0,7.0,-9.0,1311750 -3253349,1630362316,2,25,0,1,1630146950,2,1.0,40.0,5.0,-9.0,4.0,1311751 -3253350,1630362318,2,1,2,2,1630146950,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311751 -3253351,1630362317,2,25,0,1,1630146951,2,1.0,40.0,5.0,-9.0,4.0,1311752 -3253352,1630362319,2,1,2,2,1630146951,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311752 -3253353,1630362454,2,43,0,1,1630146952,2,6.0,20.0,6.0,15.0,4.0,1311753 -3253354,1630362455,2,18,2,2,1630146952,1,2.0,20.0,4.0,14.0,4.0,1311753 -3253355,1630362351,2,29,0,1,1630146953,2,6.0,-9.0,-9.0,-9.0,4.0,1311754 -3253356,1630362353,2,32,12,2,1630146953,1,2.0,40.0,4.0,-9.0,4.0,1311754 -3253357,1630362270,2,49,0,1,1630146954,2,1.0,50.0,1.0,-9.0,4.0,1311755 -3253358,1630362271,2,43,1,2,1630146954,1,1.0,55.0,1.0,-9.0,4.0,1311755 -3253359,1630362666,2,50,0,1,1630146955,2,6.0,40.0,1.0,-9.0,4.0,1311756 -3253360,1630362668,2,53,1,2,1630146955,1,6.0,-9.0,-9.0,-9.0,4.0,1311756 -3253361,1630362669,2,26,2,3,1630146955,1,6.0,-9.0,-9.0,-9.0,4.0,1311756 -3253362,1630362667,2,20,2,4,1630146955,2,1.0,25.0,1.0,-9.0,4.0,1311756 -3253363,1630362339,2,59,0,1,1630146956,2,1.0,40.0,4.0,-9.0,4.0,1311757 -3253364,1630362680,2,61,0,1,1630146957,2,1.0,40.0,1.0,-9.0,4.0,1311758 -3253365,1630362403,2,55,0,1,1630146958,2,1.0,40.0,1.0,-9.0,4.0,1311759 -3253366,1630362596,2,59,0,1,1630146959,2,1.0,40.0,1.0,-9.0,4.0,1311760 -3253367,1630362300,2,60,0,1,1630146960,2,1.0,40.0,1.0,-9.0,4.0,1311761 -3253368,1630362597,2,59,0,1,1630146961,2,1.0,40.0,1.0,-9.0,4.0,1311762 -3253369,1630362301,2,60,0,1,1630146962,2,1.0,40.0,1.0,-9.0,4.0,1311763 -3253370,1630362340,2,55,0,1,1630146963,2,1.0,40.0,1.0,-9.0,4.0,1311764 -3253371,1630362433,2,62,0,1,1630146964,2,1.0,40.0,1.0,-9.0,4.0,1311765 -3253372,1630362522,2,50,0,1,1630146965,2,1.0,40.0,1.0,-9.0,4.0,1311766 -3253373,1630362381,2,61,0,1,1630146966,2,1.0,20.0,1.0,-9.0,4.0,1311767 -3253374,1630362683,2,56,0,1,1630146967,2,1.0,40.0,1.0,-9.0,4.0,1311768 -3253375,1630362369,2,62,0,1,1630146968,2,1.0,40.0,1.0,-9.0,4.0,1311769 -3253376,1630362370,2,63,1,2,1630146968,1,6.0,-9.0,-9.0,-9.0,4.0,1311769 -3253377,1630362714,2,61,0,1,1630146969,1,1.0,40.0,1.0,-9.0,4.0,1311770 -3253378,1630362715,2,51,10,2,1630146969,1,6.0,-9.0,-9.0,-9.0,4.0,1311770 -3253379,1630362530,2,58,0,1,1630146970,2,1.0,40.0,1.0,-9.0,4.0,1311771 -3253380,1630362531,2,26,2,2,1630146970,1,3.0,-9.0,-9.0,-9.0,4.0,1311771 -3253381,1630362737,2,60,0,1,1630146971,1,6.0,-9.0,-9.0,-9.0,4.0,1311772 -3253382,1630362739,2,58,5,2,1630146971,1,1.0,40.0,1.0,-9.0,2.0,1311772 -3253383,1630362378,2,51,0,1,1630146972,2,1.0,45.0,1.0,-9.0,4.0,1311773 -3253384,1630362379,2,20,2,2,1630146972,1,6.0,-9.0,-9.0,-9.0,4.0,1311773 -3253385,1630362247,2,45,0,1,1630146973,2,1.0,40.0,1.0,-9.0,4.0,1311774 -3253386,1630362249,2,22,2,2,1630146973,1,3.0,-9.0,-9.0,-9.0,4.0,1311774 -3253387,1630362248,2,45,0,1,1630146974,2,1.0,40.0,1.0,-9.0,4.0,1311775 -3253388,1630362250,2,22,2,2,1630146974,1,3.0,-9.0,-9.0,-9.0,4.0,1311775 -3253389,1630362442,2,58,0,1,1630146975,2,3.0,-9.0,-9.0,-9.0,2.0,1311776 -3253390,1630362444,2,45,12,2,1630146975,2,1.0,40.0,1.0,-9.0,4.0,1311776 -3253391,1630362272,2,53,0,1,1630146976,2,1.0,35.0,1.0,-9.0,4.0,1311777 -3253392,1630362273,2,34,2,2,1630146976,2,6.0,-9.0,-9.0,-9.0,4.0,1311777 -3253393,1630362443,2,58,0,1,1630146977,2,3.0,-9.0,-9.0,-9.0,2.0,1311778 -3253394,1630362445,2,45,12,2,1630146977,2,1.0,40.0,1.0,-9.0,4.0,1311778 -3253395,1630362174,2,50,0,1,1630146978,2,3.0,40.0,5.0,-9.0,4.0,1311779 -3253396,1630362176,2,50,13,2,1630146978,1,1.0,20.0,1.0,-9.0,4.0,1311779 -3253397,1630362178,2,48,15,3,1630146978,1,1.0,25.0,1.0,-9.0,4.0,1311779 -3253398,1630362172,1,47,15,4,1630146978,2,3.0,-9.0,-9.0,-9.0,4.0,1311779 -3253399,1630362357,2,54,0,1,1630146979,1,1.0,30.0,1.0,-9.0,4.0,1311780 -3253400,1630362355,2,53,1,2,1630146979,2,1.0,40.0,1.0,15.0,4.0,1311780 -3253401,1630362736,2,62,0,1,1630146980,1,6.0,-9.0,-9.0,-9.0,4.0,1311781 -3253402,1630362604,2,51,0,1,1630146981,2,3.0,-9.0,-9.0,-9.0,4.0,1311782 -3253403,1630362605,2,51,0,1,1630146982,2,3.0,-9.0,-9.0,-9.0,4.0,1311783 -3253404,1630362672,2,51,0,1,1630146983,2,3.0,40.0,3.0,-9.0,2.0,1311784 -3253405,1630362752,2,50,0,1,1630146984,1,6.0,-9.0,-9.0,-9.0,4.0,1311785 -3253406,1630362517,2,55,0,1,1630146985,2,6.0,-9.0,-9.0,-9.0,4.0,1311786 -3253407,1630362362,2,47,0,1,1630146986,2,6.0,-9.0,-9.0,-9.0,4.0,1311787 -3253408,1630362619,2,63,0,1,1630146987,2,6.0,-9.0,-9.0,-9.0,4.0,1311788 -3253409,1630362391,2,58,0,1,1630146988,2,6.0,-9.0,-9.0,-9.0,4.0,1311789 -3253410,1630362529,2,62,0,1,1630146989,2,6.0,-9.0,-9.0,-9.0,4.0,1311790 -3253411,1630362675,2,52,0,1,1630146990,2,3.0,-9.0,-9.0,-9.0,4.0,1311791 -3253412,1630362450,2,58,0,1,1630146991,2,3.0,-9.0,-9.0,12.0,4.0,1311792 -3253413,1630362367,2,54,0,1,1630146992,2,6.0,-9.0,-9.0,-9.0,4.0,1311793 -3253414,1630362735,2,51,0,1,1630146993,1,3.0,-9.0,-9.0,-9.0,4.0,1311794 -3253415,1630362399,2,63,0,1,1630146994,2,6.0,-9.0,-9.0,-9.0,4.0,1311795 -3253416,1630362706,2,59,0,1,1630146995,1,6.0,11.0,6.0,-9.0,4.0,1311796 -3253417,1630362745,2,54,0,1,1630146996,1,6.0,-9.0,-9.0,-9.0,4.0,1311797 -3253418,1630362485,2,48,0,1,1630146997,2,6.0,-9.0,-9.0,-9.0,4.0,1311798 -3253419,1630362562,2,53,0,1,1630146998,2,6.0,-9.0,-9.0,-9.0,4.0,1311799 -3253420,1630362718,2,58,0,1,1630146999,1,6.0,-9.0,-9.0,-9.0,4.0,1311800 -3253421,1630362594,2,53,0,1,1630147000,2,6.0,-9.0,-9.0,-9.0,4.0,1311801 -3253422,1630362504,2,53,0,1,1630147001,2,6.0,-9.0,-9.0,-9.0,4.0,1311802 -3253423,1630362311,2,58,0,1,1630147002,2,6.0,-9.0,-9.0,-9.0,4.0,1311803 -3253424,1630362552,2,62,0,1,1630147003,2,6.0,-9.0,-9.0,-9.0,4.0,1311804 -3253425,1630362328,2,53,0,1,1630147004,2,6.0,-9.0,-9.0,-9.0,4.0,1311805 -3253426,1630362635,2,58,0,1,1630147005,2,6.0,-9.0,-9.0,-9.0,4.0,1311806 -3253427,1630362559,2,63,0,1,1630147006,2,6.0,-9.0,-9.0,-9.0,4.0,1311807 -3253428,1630362335,2,63,0,1,1630147007,2,6.0,-9.0,-9.0,-9.0,4.0,1311808 -3253429,1630362579,2,58,0,1,1630147008,2,6.0,-9.0,-9.0,-9.0,4.0,1311809 -3253430,1630362722,2,54,0,1,1630147009,1,6.0,45.0,5.0,-9.0,4.0,1311810 -3253431,1630362684,2,58,0,1,1630147010,2,6.0,-9.0,-9.0,-9.0,4.0,1311811 -3253432,1630362473,2,58,0,1,1630147011,2,6.0,-9.0,-9.0,-9.0,4.0,1311812 -3253433,1630362474,2,62,1,2,1630147011,1,6.0,-9.0,-9.0,-9.0,4.0,1311812 -3253434,1630362469,2,53,0,1,1630147012,2,6.0,-9.0,-9.0,-9.0,4.0,1311813 -3253435,1630362471,2,52,1,2,1630147012,1,3.0,-9.0,-9.0,-9.0,4.0,1311813 -3253436,1630362283,2,61,0,1,1630147013,1,3.0,-9.0,-9.0,-9.0,4.0,1311814 -3253437,1630362281,2,48,1,2,1630147013,2,3.0,15.0,6.0,-9.0,4.0,1311814 -3253438,1630362265,2,62,0,1,1630147014,1,6.0,-9.0,-9.0,-9.0,4.0,1311815 -3253439,1630362264,2,48,1,2,1630147014,2,6.0,-9.0,-9.0,-9.0,4.0,1311815 -3253440,1630362633,2,51,0,1,1630147015,2,3.0,-9.0,-9.0,-9.0,3.0,1311816 -3253441,1630362634,2,57,13,2,1630147015,1,3.0,40.0,5.0,-9.0,4.0,1311816 -3253442,1630362628,2,55,0,1,1630147016,2,6.0,-9.0,-9.0,-9.0,4.0,1311817 -3253443,1630362629,2,55,15,2,1630147016,1,6.0,-9.0,-9.0,-9.0,4.0,1311817 -3253444,1630362470,2,53,0,1,1630147017,2,6.0,-9.0,-9.0,-9.0,4.0,1311818 -3253445,1630362472,2,52,1,2,1630147017,1,3.0,-9.0,-9.0,-9.0,4.0,1311818 -3253446,1630362284,2,61,0,1,1630147018,1,3.0,-9.0,-9.0,-9.0,4.0,1311819 -3253447,1630362282,2,48,1,2,1630147018,2,3.0,15.0,6.0,-9.0,4.0,1311819 -3253448,1630362287,2,53,0,1,1630147019,2,6.0,-9.0,-9.0,-9.0,4.0,1311820 -3253449,1630362400,2,59,0,1,1630147020,2,6.0,-9.0,-9.0,-9.0,4.0,1311821 -3253450,1630362401,2,42,2,2,1630147020,1,3.0,-9.0,-9.0,-9.0,4.0,1311821 -3253451,1630362394,2,54,0,1,1630147021,2,6.0,-9.0,-9.0,-9.0,4.0,1311822 -3253452,1630362395,2,17,2,2,1630147021,2,6.0,-9.0,-9.0,13.0,4.0,1311822 -3253453,1630362505,2,56,0,1,1630147022,2,6.0,-9.0,-9.0,-9.0,4.0,1311823 -3253454,1630362507,2,21,2,2,1630147022,2,6.0,-9.0,-9.0,15.0,4.0,1311823 -3253455,1630362476,2,55,0,1,1630147023,1,6.0,-9.0,-9.0,-9.0,3.0,1311824 -3253456,1630362475,2,55,1,2,1630147023,2,6.0,30.0,3.0,-9.0,4.0,1311824 -3253457,1630362506,2,56,0,1,1630147024,2,6.0,-9.0,-9.0,-9.0,4.0,1311825 -3253458,1630362508,2,21,2,2,1630147024,2,6.0,-9.0,-9.0,15.0,4.0,1311825 -3253459,1630362298,2,51,0,1,1630147025,2,6.0,-9.0,-9.0,-9.0,4.0,1311826 -3253460,1630362299,2,54,15,2,1630147025,1,6.0,-9.0,-9.0,-9.0,4.0,1311826 -3253461,1630362343,2,49,0,1,1630147026,2,1.0,30.0,1.0,13.0,4.0,1311827 -3253462,1630362685,2,47,0,1,1630147027,2,1.0,40.0,1.0,-9.0,4.0,1311828 -3253463,1630362662,2,61,0,1,1630147028,2,1.0,35.0,1.0,-9.0,4.0,1311829 -3253464,1630362344,2,49,0,1,1630147029,2,1.0,30.0,1.0,13.0,4.0,1311830 -3253465,1630362451,2,62,0,1,1630147030,2,1.0,40.0,1.0,-9.0,4.0,1311831 -3253466,1630362441,2,56,0,1,1630147031,2,1.0,99.0,1.0,-9.0,4.0,1311832 -3253467,1630362731,2,47,0,1,1630147032,1,1.0,32.0,1.0,-9.0,4.0,1311833 -3253468,1630362320,2,52,0,1,1630147033,2,1.0,40.0,1.0,-9.0,4.0,1311834 -3253469,1630362732,2,54,0,1,1630147034,1,1.0,42.0,1.0,-9.0,4.0,1311835 -3253470,1630362719,2,64,0,1,1630147035,1,1.0,40.0,1.0,-9.0,4.0,1311836 -3253471,1630362523,2,58,0,1,1630147036,2,1.0,12.0,1.0,-9.0,4.0,1311837 -3253472,1630362716,2,49,0,1,1630147037,1,1.0,25.0,1.0,-9.0,4.0,1311838 -3253473,1630362673,2,45,0,1,1630147038,2,2.0,40.0,1.0,-9.0,4.0,1311839 -3253474,1630362663,2,61,0,1,1630147039,2,1.0,35.0,1.0,-9.0,4.0,1311840 -3253475,1630362527,2,60,0,1,1630147040,2,1.0,40.0,1.0,-9.0,4.0,1311841 -3253476,1630362561,2,48,0,1,1630147041,2,1.0,40.0,1.0,15.0,4.0,1311842 -3253477,1630362524,2,46,0,1,1630147042,2,1.0,30.0,3.0,15.0,4.0,1311843 -3253478,1630362747,2,52,0,1,1630147043,1,1.0,32.0,6.0,-9.0,4.0,1311844 -3253479,1630362733,2,53,0,1,1630147044,1,1.0,40.0,1.0,-9.0,4.0,1311845 -3253480,1630362584,2,46,0,1,1630147045,2,1.0,38.0,1.0,-9.0,4.0,1311846 -3253481,1630362418,2,48,0,1,1630147046,2,1.0,20.0,1.0,-9.0,4.0,1311847 -3253482,1630362534,2,62,0,1,1630147047,2,3.0,40.0,6.0,-9.0,4.0,1311848 -3253483,1630362536,2,23,2,2,1630147047,2,1.0,23.0,5.0,-9.0,4.0,1311848 -3253484,1630362392,2,46,0,1,1630147048,2,1.0,38.0,1.0,-9.0,4.0,1311849 -3253485,1630362393,2,21,2,2,1630147048,1,6.0,-9.0,-9.0,-9.0,4.0,1311849 -3253486,1630362567,2,52,0,1,1630147049,2,1.0,8.0,6.0,-9.0,4.0,1311850 -3253487,1630362569,2,60,15,2,1630147049,1,6.0,-9.0,-9.0,-9.0,4.0,1311850 -3253488,1630362535,2,62,0,1,1630147050,2,3.0,40.0,6.0,-9.0,4.0,1311851 -3253489,1630362537,2,23,2,2,1630147050,2,1.0,23.0,5.0,-9.0,4.0,1311851 -3253490,1630362568,2,52,0,1,1630147051,2,1.0,8.0,6.0,-9.0,4.0,1311852 -3253491,1630362570,2,60,15,2,1630147051,1,6.0,-9.0,-9.0,-9.0,4.0,1311852 -3253492,1630362606,2,50,0,1,1630147052,2,1.0,40.0,2.0,-9.0,4.0,1311853 -3253493,1630362609,2,31,2,2,1630147052,1,3.0,24.0,6.0,-9.0,4.0,1311853 -3253494,1630362502,2,60,0,1,1630147053,2,6.0,-9.0,-9.0,-9.0,4.0,1311854 -3253495,1630362503,2,42,2,2,1630147053,1,1.0,40.0,6.0,15.0,4.0,1311854 -3253496,1630362304,2,55,0,1,1630147054,2,1.0,20.0,4.0,-9.0,4.0,1311855 -3253497,1630362305,2,23,2,2,1630147054,1,6.0,-9.0,-9.0,-9.0,4.0,1311855 -3253498,1630362645,2,54,0,1,1630147055,1,6.0,-9.0,-9.0,-9.0,4.0,1311856 -3253499,1630362644,2,52,13,2,1630147055,2,1.0,24.0,1.0,-9.0,4.0,1311856 -3253500,1630362266,2,50,0,1,1630147056,2,1.0,40.0,1.0,-9.0,4.0,1311857 -3253501,1630362267,2,24,2,2,1630147056,2,3.0,-9.0,-9.0,-9.0,4.0,1311857 -3253502,1630362607,2,50,0,1,1630147057,2,1.0,40.0,2.0,-9.0,4.0,1311858 -3253503,1630362610,2,31,2,2,1630147057,1,3.0,24.0,6.0,-9.0,4.0,1311858 -3253504,1630362258,2,55,0,1,1630147058,2,1.0,40.0,1.0,-9.0,4.0,1311859 -3253505,1630362259,2,25,2,2,1630147058,1,3.0,-9.0,-9.0,-9.0,4.0,1311859 -3253506,1630362608,2,50,0,1,1630147059,2,1.0,40.0,2.0,-9.0,4.0,1311860 -3253507,1630362611,2,31,2,2,1630147059,1,3.0,24.0,6.0,-9.0,4.0,1311860 -3253508,1630362285,2,47,0,1,1630147060,2,1.0,91.0,1.0,-9.0,4.0,1311861 -3253509,1630362286,2,25,15,2,1630147060,2,6.0,-9.0,-9.0,-9.0,4.0,1311861 -3253510,1630362515,2,54,0,1,1630147061,1,1.0,40.0,3.0,-9.0,2.0,1311862 -3253511,1630362513,2,49,1,2,1630147061,2,6.0,-9.0,-9.0,-9.0,4.0,1311862 -3253512,1630362516,2,54,0,1,1630147062,1,1.0,40.0,3.0,-9.0,2.0,1311863 -3253513,1630362514,2,49,1,2,1630147062,2,6.0,-9.0,-9.0,-9.0,4.0,1311863 -3253514,1630362542,2,54,0,1,1630147063,2,1.0,32.0,1.0,-9.0,4.0,1311864 -3253515,1630362543,2,51,1,2,1630147063,1,1.0,20.0,5.0,15.0,4.0,1311864 -3253516,1630362636,2,52,0,1,1630147064,2,2.0,40.0,3.0,-9.0,4.0,1311865 -3253517,1630362637,2,19,12,2,1630147064,2,1.0,40.0,1.0,15.0,4.0,1311865 -3253518,1630362276,2,61,0,1,1630147065,2,1.0,25.0,1.0,-9.0,4.0,1311866 -3253519,1630362277,2,27,2,2,1630147065,1,1.0,2.0,1.0,-9.0,4.0,1311866 -3253520,1630362754,2,66,0,1,1630147066,1,6.0,-9.0,-9.0,-9.0,4.0,1311867 -3253521,1630362136,2,74,0,1,1630147067,2,6.0,-9.0,-9.0,-9.0,4.0,1311868 -3253522,1630362148,2,69,0,1,1630147068,2,6.0,-9.0,-9.0,-9.0,4.0,1311869 -3253523,1630362139,2,73,0,1,1630147069,2,6.0,-9.0,-9.0,-9.0,4.0,1311870 -3253524,1630362755,2,66,0,1,1630147070,1,6.0,-9.0,-9.0,-9.0,4.0,1311871 -3253525,1630362125,2,70,0,1,1630147071,2,6.0,-9.0,-9.0,-9.0,4.0,1311872 -3253526,1630362133,2,71,0,1,1630147072,2,6.0,-9.0,-9.0,-9.0,4.0,1311873 -3253527,1630362753,2,76,0,1,1630147073,1,6.0,-9.0,-9.0,-9.0,4.0,1311874 -3253528,1630362138,2,66,0,1,1630147074,2,6.0,-9.0,-9.0,-9.0,4.0,1311875 -3253529,1630362117,2,73,0,1,1630147075,2,6.0,-9.0,-9.0,-9.0,4.0,1311876 -3253530,1630362118,2,43,2,2,1630147075,2,6.0,-9.0,-9.0,-9.0,4.0,1311876 -3253531,1630362157,2,90,0,1,1630147076,1,6.0,-9.0,-9.0,-9.0,2.0,1311877 -3253532,1630362156,2,85,1,2,1630147076,2,6.0,-9.0,-9.0,-9.0,4.0,1311877 -3253533,1630362708,2,23,0,1,1630147077,1,6.0,40.0,1.0,15.0,4.0,1311878 -3253534,1630362709,2,62,6,2,1630147077,1,1.0,40.0,1.0,-9.0,4.0,1311878 -3253535,1630362479,2,20,0,1,1630147078,2,6.0,-9.0,-9.0,-9.0,4.0,1311879 -3253536,1630362480,2,2,2,2,1630147078,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311879 -3253537,1630362589,2,24,0,1,1630147079,2,1.0,35.0,1.0,-9.0,4.0,1311880 -3253538,1630362458,2,20,0,1,1630147080,2,1.0,16.0,6.0,-9.0,4.0,1311881 -3253539,1630362528,2,22,0,1,1630147081,2,1.0,40.0,1.0,-9.0,4.0,1311882 -3253540,1630362373,2,24,0,1,1630147082,1,1.0,42.0,1.0,-9.0,4.0,1311883 -3253541,1630362372,2,24,1,2,1630147082,2,6.0,-9.0,-9.0,-9.0,4.0,1311883 -3253542,1630362670,2,22,0,1,1630147083,2,1.0,20.0,1.0,15.0,4.0,1311884 -3253543,1630362671,2,3,2,2,1630147083,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311884 -3253544,1630362207,1,31,0,1,1630147084,2,1.0,50.0,1.0,-9.0,4.0,1311885 -3253545,1630362175,2,50,0,1,1630147085,2,3.0,40.0,5.0,-9.0,4.0,1311886 -3253546,1630362177,2,50,13,2,1630147085,1,1.0,20.0,1.0,-9.0,4.0,1311886 -3253547,1630362179,2,48,15,3,1630147085,1,1.0,25.0,1.0,-9.0,4.0,1311886 -3253548,1630362173,1,47,15,4,1630147085,2,3.0,-9.0,-9.0,-9.0,4.0,1311886 -3253549,1630362310,2,22,0,1,1630147086,2,6.0,40.0,1.0,-9.0,4.0,1311887 -3253550,1630362190,1,60,0,1,1630147087,2,6.0,-9.0,-9.0,-9.0,4.0,1311888 -3253551,1630362404,2,55,0,1,1630147088,2,1.0,26.0,1.0,-9.0,4.0,1311889 -3253552,1630362405,2,15,7,2,1630147088,2,-9.0,-9.0,-9.0,10.0,-9.0,1311889 -3253553,1630362406,2,14,7,3,1630147088,2,-9.0,-9.0,-9.0,10.0,-9.0,1311889 -3253554,1630362407,2,11,10,4,1630147088,2,-9.0,-9.0,-9.0,6.0,-9.0,1311889 -3253555,1630362202,1,20,0,1,1630147089,2,1.0,30.0,3.0,15.0,4.0,1311890 -3253556,1630362203,1,21,12,2,1630147089,2,6.0,30.0,4.0,15.0,4.0,1311890 -3253557,1630362721,2,51,0,1,1630147090,1,1.0,40.0,1.0,-9.0,4.0,1311891 -3253558,1630362494,2,46,0,1,1630147091,2,1.0,40.0,1.0,-9.0,4.0,1311892 -3253559,1630362613,2,24,0,1,1630147092,1,1.0,20.0,1.0,16.0,4.0,1311893 -3253560,1630362612,2,24,13,2,1630147092,2,6.0,-9.0,-9.0,16.0,4.0,1311893 -3253561,1630362235,1,62,0,1,1630147093,1,1.0,31.0,1.0,-9.0,4.0,1311894 -3253562,1630362232,1,61,0,1,1630147094,1,1.0,50.0,3.0,-9.0,4.0,1311895 -3253563,1630362324,2,62,0,1,1630147095,2,6.0,-9.0,-9.0,-9.0,4.0,1311896 -3253564,1630362326,2,24,2,2,1630147095,2,1.0,40.0,3.0,-9.0,4.0,1311896 -3253565,1630362234,2,24,0,1,1630147096,1,1.0,20.0,1.0,15.0,4.0,1311897 -3253566,1630362233,1,19,12,2,1630147096,1,3.0,56.0,6.0,15.0,4.0,1311897 -3253567,1630362630,2,61,0,1,1630147097,2,6.0,-9.0,-9.0,-9.0,4.0,1311898 -3253568,1630362631,2,62,12,2,1630147097,1,6.0,-9.0,-9.0,-9.0,2.0,1311898 -3253569,1630362291,2,51,0,1,1630147098,2,1.0,40.0,2.0,-9.0,4.0,1311899 -3253570,1630362292,2,24,2,2,1630147098,2,1.0,40.0,1.0,-9.0,4.0,1311899 -3253571,1630362269,2,64,0,1,1630147099,1,1.0,36.0,1.0,-9.0,2.0,1311900 -3253572,1630362268,2,53,1,2,1630147099,2,1.0,40.0,1.0,-9.0,4.0,1311900 -3253573,1630362154,2,41,0,1,1630147100,2,1.0,40.0,1.0,-9.0,4.0,1311901 -3253574,1630362153,2,71,6,2,1630147100,2,6.0,-9.0,-9.0,-9.0,4.0,1311901 -3253575,1630362221,1,21,0,1,1630147101,2,1.0,25.0,1.0,-9.0,4.0,1311902 -3253576,1630362402,2,42,0,1,1630147102,2,6.0,-9.0,-9.0,-9.0,4.0,1311903 -3253577,1630362187,2,55,0,1,1630147103,1,1.0,48.0,1.0,-9.0,2.0,1311904 -3253578,1630362186,1,52,1,2,1630147103,2,6.0,-9.0,-9.0,-9.0,4.0,1311904 -3253579,1630362189,4,20,2,3,1630147103,2,6.0,-9.0,-9.0,15.0,4.0,1311904 -3253580,1630362188,4,18,2,4,1630147103,1,6.0,-9.0,-9.0,15.0,4.0,1311904 -3253581,1630362632,2,45,0,1,1630147104,2,1.0,40.0,1.0,-9.0,4.0,1311905 -3253582,1630362135,2,61,0,1,1630147105,1,1.0,40.0,1.0,-9.0,4.0,1311906 -3253583,1630362459,2,49,0,1,1630147106,2,3.0,-9.0,-9.0,-9.0,4.0,1311907 -3253584,1630362460,2,45,1,2,1630147106,1,1.0,40.0,1.0,-9.0,4.0,1311907 -3253585,1630362461,2,23,2,3,1630147106,1,1.0,45.0,6.0,-9.0,4.0,1311907 -3253586,1630362462,2,43,10,4,1630147106,1,6.0,-9.0,-9.0,-9.0,4.0,1311907 -3253587,1630362288,2,53,0,1,1630147107,2,6.0,-9.0,-9.0,-9.0,4.0,1311908 -3253588,1630362290,2,19,2,2,1630147107,2,6.0,-9.0,-9.0,15.0,4.0,1311908 -3253589,1630362192,1,59,0,1,1630147108,1,1.0,40.0,1.0,-9.0,4.0,1311909 -3253590,1630362191,1,44,1,2,1630147108,2,1.0,50.0,1.0,-9.0,4.0,1311909 -3253591,1630362206,1,33,0,1,1630147109,2,1.0,65.0,1.0,-9.0,4.0,1311910 -3253592,1630362115,2,65,0,1,1630147110,2,6.0,-9.0,-9.0,-9.0,4.0,1311911 -3253593,1630362116,2,32,2,2,1630147110,2,6.0,-9.0,-9.0,-9.0,4.0,1311911 -3253594,1630362729,2,54,0,1,1630147111,1,3.0,-9.0,-9.0,-9.0,2.0,1311912 -3253595,1630362730,2,15,2,2,1630147111,2,-9.0,-9.0,-9.0,12.0,-9.0,1311912 -3253596,1630362146,2,75,0,1,1630147112,2,1.0,20.0,1.0,-9.0,4.0,1311913 -3253597,1630362147,2,62,13,2,1630147112,2,6.0,-9.0,-9.0,-9.0,4.0,1311913 -3253598,1630362725,2,21,0,1,1630147113,1,1.0,48.0,1.0,-9.0,4.0,1311914 -3253599,1630362726,2,24,15,2,1630147113,1,6.0,-9.0,-9.0,-9.0,4.0,1311914 -3253600,1630362341,2,33,0,1,1630147114,2,3.0,42.0,6.0,-9.0,4.0,1311915 -3253601,1630362342,2,14,2,2,1630147114,2,-9.0,-9.0,-9.0,11.0,-9.0,1311915 -3253602,1630362278,2,61,0,1,1630147115,2,6.0,-9.0,-9.0,-9.0,4.0,1311916 -3253603,1630362312,2,54,0,1,1630147116,2,6.0,-9.0,-9.0,-9.0,4.0,1311917 -3253604,1630362313,2,25,2,2,1630147116,2,1.0,30.0,3.0,-9.0,4.0,1311917 -3253605,1630362315,2,2,7,3,1630147116,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311917 -3253606,1630362314,2,52,15,4,1630147116,1,6.0,-9.0,-9.0,-9.0,4.0,1311917 -3253607,1630362126,2,65,0,1,1630147117,2,6.0,-9.0,-9.0,-9.0,4.0,1311918 -3253608,1630362618,2,27,0,1,1630147118,2,1.0,35.0,1.0,-9.0,4.0,1311919 -3253609,1630362677,2,43,0,1,1630147119,2,1.0,40.0,1.0,15.0,4.0,1311920 -3253610,1630362679,2,19,2,2,1630147119,1,3.0,36.0,6.0,15.0,4.0,1311920 -3253611,1630362429,2,63,0,1,1630147120,2,1.0,40.0,1.0,-9.0,4.0,1311921 -3253612,1630362430,2,17,7,2,1630147120,2,6.0,-9.0,-9.0,13.0,4.0,1311921 -3253613,1630362710,2,24,0,1,1630147121,1,1.0,35.0,1.0,-9.0,4.0,1311922 -3253614,1630362711,2,18,5,2,1630147121,1,1.0,16.0,3.0,15.0,4.0,1311922 -3253615,1630362712,2,61,11,3,1630147121,1,6.0,-9.0,-9.0,-9.0,4.0,1311922 -3253616,1630362713,2,66,12,4,1630147121,1,1.0,16.0,3.0,-9.0,4.0,1311922 -3253617,1630362275,2,74,0,1,1630147122,1,6.0,-9.0,-9.0,-9.0,4.0,1311923 -3253618,1630362274,2,64,15,2,1630147122,2,1.0,10.0,1.0,-9.0,4.0,1311923 -3253619,1630362572,2,28,0,1,1630147123,2,6.0,-9.0,-9.0,15.0,4.0,1311924 -3253620,1630362573,2,3,2,2,1630147123,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311924 -3253621,1630362701,2,44,0,1,1630147124,1,6.0,-9.0,-9.0,-9.0,4.0,1311925 -3253622,1630362307,2,53,0,1,1630147125,1,1.0,40.0,1.0,-9.0,2.0,1311926 -3253623,1630362306,2,53,1,2,1630147125,2,2.0,40.0,1.0,-9.0,4.0,1311926 -3253624,1630362533,2,63,0,1,1630147126,2,1.0,50.0,1.0,-9.0,4.0,1311927 -3253625,1630362490,2,63,0,1,1630147127,1,6.0,-9.0,-9.0,-9.0,4.0,1311928 -3253626,1630362489,2,64,1,2,1630147127,2,1.0,30.0,1.0,-9.0,4.0,1311928 -3253627,1630362425,2,45,0,1,1630147128,2,1.0,20.0,1.0,-9.0,4.0,1311929 -3253628,1630362426,2,22,2,2,1630147128,1,3.0,40.0,6.0,-9.0,4.0,1311929 -3253629,1630362557,2,26,0,1,1630147129,2,1.0,40.0,4.0,15.0,4.0,1311930 -3253630,1630362558,2,35,13,2,1630147129,1,1.0,20.0,1.0,-9.0,4.0,1311930 -3253631,1630362417,2,50,0,1,1630147130,1,1.0,49.0,1.0,-9.0,4.0,1311931 -3253632,1630362414,2,49,1,2,1630147130,2,1.0,90.0,1.0,-9.0,4.0,1311931 -3253633,1630362415,2,18,2,3,1630147130,2,6.0,-9.0,-9.0,14.0,4.0,1311931 -3253634,1630362416,2,16,2,4,1630147130,1,6.0,-9.0,-9.0,12.0,-9.0,1311931 -3253635,1630362614,2,63,0,1,1630147131,2,6.0,-9.0,-9.0,-9.0,4.0,1311932 -3253636,1630362615,2,40,2,2,1630147131,2,1.0,40.0,1.0,-9.0,4.0,1311932 -3253637,1630362616,2,36,2,3,1630147131,1,3.0,45.0,4.0,-9.0,4.0,1311932 -3253638,1630362617,2,12,7,4,1630147131,2,-9.0,-9.0,-9.0,9.0,-9.0,1311932 -3253639,1630362674,2,23,0,1,1630147132,2,1.0,40.0,1.0,15.0,4.0,1311933 -3253640,1630362519,2,47,0,1,1630147133,2,1.0,40.0,1.0,-9.0,4.0,1311934 -3253641,1630362520,2,14,2,2,1630147133,2,-9.0,-9.0,-9.0,12.0,-9.0,1311934 -3253642,1630362123,2,50,0,1,1630147134,1,3.0,-9.0,-9.0,-9.0,4.0,1311935 -3253643,1630362121,2,81,10,2,1630147134,2,6.0,-9.0,-9.0,-9.0,4.0,1311935 -3253644,1630362124,2,58,10,3,1630147134,1,1.0,40.0,1.0,-9.0,4.0,1311935 -3253645,1630362122,2,23,10,4,1630147134,2,1.0,16.0,1.0,15.0,4.0,1311935 -3253646,1630362352,2,29,0,1,1630147135,2,6.0,-9.0,-9.0,-9.0,4.0,1311936 -3253647,1630362354,2,32,12,2,1630147135,1,2.0,40.0,4.0,-9.0,4.0,1311936 -3253648,1630362585,2,26,0,1,1630147136,2,1.0,15.0,1.0,-9.0,4.0,1311937 -3253649,1630362586,2,6,2,2,1630147136,1,-9.0,-9.0,-9.0,3.0,-9.0,1311937 -3253650,1630362588,2,2,2,3,1630147136,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311937 -3253651,1630362587,2,34,13,4,1630147136,1,1.0,25.0,1.0,-9.0,4.0,1311937 -3253652,1630362741,2,23,0,1,1630147137,1,1.0,40.0,3.0,-9.0,4.0,1311938 -3253653,1630362279,2,61,0,1,1630147138,2,6.0,-9.0,-9.0,-9.0,4.0,1311939 -3253654,1630362280,2,17,7,2,1630147138,2,6.0,-9.0,-9.0,14.0,4.0,1311939 -3253655,1630362742,2,36,0,1,1630147139,1,1.0,40.0,1.0,-9.0,4.0,1311940 -3253656,1630362132,2,64,0,1,1630147140,1,6.0,-9.0,-9.0,-9.0,2.0,1311941 -3253657,1630362131,2,66,5,2,1630147140,2,1.0,37.0,1.0,-9.0,4.0,1311941 -3253658,1630362658,2,40,0,1,1630147141,2,1.0,35.0,1.0,-9.0,4.0,1311942 -3253659,1630362660,2,46,1,2,1630147141,1,1.0,40.0,1.0,-9.0,4.0,1311942 -3253660,1630362659,2,11,2,3,1630147141,1,-9.0,-9.0,-9.0,8.0,-9.0,1311942 -3253661,1630362661,2,9,2,4,1630147141,2,-9.0,-9.0,-9.0,5.0,-9.0,1311942 -3253662,1630362171,1,27,0,1,1630147142,1,1.0,40.0,1.0,16.0,4.0,1311943 -3253663,1630362169,1,29,15,2,1630147142,2,1.0,50.0,1.0,-9.0,4.0,1311943 -3253664,1630362380,2,59,0,1,1630147143,2,1.0,40.0,1.0,-9.0,4.0,1311944 -3253665,1630362260,2,40,0,1,1630147144,2,1.0,72.0,1.0,-9.0,4.0,1311945 -3253666,1630362263,2,19,2,2,1630147144,1,3.0,-9.0,-9.0,-9.0,4.0,1311945 -3253667,1630362261,2,18,2,3,1630147144,2,6.0,-9.0,-9.0,14.0,4.0,1311945 -3253668,1630362262,2,16,2,4,1630147144,1,6.0,-9.0,-9.0,13.0,-9.0,1311945 -3253669,1630362220,1,64,0,1,1630147145,1,1.0,65.0,1.0,-9.0,4.0,1311946 -3253670,1630362219,1,61,1,2,1630147145,2,6.0,-9.0,-9.0,-9.0,4.0,1311946 -3253671,1630362361,2,58,0,1,1630147146,2,1.0,50.0,1.0,-9.0,4.0,1311947 -3253672,1630362738,2,60,0,1,1630147147,1,6.0,-9.0,-9.0,-9.0,4.0,1311948 -3253673,1630362740,2,58,5,2,1630147147,1,1.0,40.0,1.0,-9.0,2.0,1311948 -3253674,1630362560,2,54,0,1,1630147148,2,1.0,40.0,5.0,-9.0,4.0,1311949 -3253675,1630362302,2,56,0,1,1630147149,2,1.0,40.0,1.0,-9.0,4.0,1311950 -3253676,1630362303,2,56,1,2,1630147149,1,6.0,-9.0,-9.0,-9.0,2.0,1311950 -3253677,1630362358,2,54,0,1,1630147150,1,1.0,30.0,1.0,-9.0,4.0,1311951 -3253678,1630362356,2,53,1,2,1630147150,2,1.0,40.0,1.0,15.0,4.0,1311951 -3253679,1630362686,2,41,0,1,1630147151,2,1.0,40.0,1.0,-9.0,4.0,1311952 -3253680,1630362427,2,51,0,1,1630147152,2,1.0,13.0,4.0,-9.0,4.0,1311953 -3253681,1630362428,2,16,2,2,1630147152,1,6.0,-9.0,-9.0,13.0,-9.0,1311953 -3253682,1630362128,2,44,0,1,1630147153,2,3.0,40.0,4.0,-9.0,4.0,1311954 -3253683,1630362129,2,59,6,2,1630147153,1,6.0,-9.0,-9.0,-9.0,4.0,1311954 -3253684,1630362127,2,68,11,3,1630147153,2,6.0,-9.0,-9.0,-9.0,4.0,1311954 -3253685,1630362130,2,45,13,4,1630147153,1,6.0,-9.0,-9.0,-9.0,4.0,1311954 -3253686,1630362566,2,21,0,1,1630147154,1,1.0,40.0,4.0,-9.0,4.0,1311955 -3253687,1630362565,2,21,15,2,1630147154,2,1.0,40.0,1.0,15.0,4.0,1311955 -3253688,1630362227,1,24,0,1,1630147155,2,6.0,-9.0,-9.0,16.0,4.0,1311956 -3253689,1630362158,1,22,0,1,1630147156,2,1.0,30.0,4.0,-9.0,4.0,1311957 -3253690,1630362159,1,27,13,2,1630147156,1,1.0,40.0,3.0,-9.0,4.0,1311957 -3253691,1630362577,2,29,0,1,1630147157,2,1.0,40.0,2.0,-9.0,4.0,1311958 -3253692,1630362239,1,24,0,1,1630147158,1,6.0,12.0,5.0,16.0,4.0,1311959 -3253693,1630362240,1,29,12,2,1630147158,1,6.0,-9.0,-9.0,16.0,4.0,1311959 -3253694,1630362241,1,25,12,3,1630147158,1,1.0,36.0,1.0,16.0,4.0,1311959 -3253695,1630362242,1,22,12,4,1630147158,1,6.0,20.0,6.0,15.0,4.0,1311959 -3253696,1630362228,1,20,0,1,1630147159,2,6.0,15.0,6.0,15.0,4.0,1311960 -3253697,1630362229,1,19,12,2,1630147159,2,1.0,30.0,1.0,15.0,4.0,1311960 -3253698,1630362498,2,23,0,1,1630147160,2,6.0,-9.0,-9.0,-9.0,4.0,1311961 -3253699,1630362499,2,21,5,2,1630147160,2,6.0,-9.0,-9.0,-9.0,4.0,1311961 -3253700,1630362500,2,4,10,3,1630147160,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311961 -3253701,1630362501,2,1,10,4,1630147160,1,-9.0,-9.0,-9.0,-9.0,-9.0,1311961 -3253702,1630362180,1,24,0,1,1630147161,2,1.0,40.0,1.0,-9.0,4.0,1311962 -3253703,1630362181,1,26,1,2,1630147161,1,6.0,40.0,6.0,16.0,4.0,1311962 -3253704,1630362238,1,57,0,1,1630147162,1,1.0,45.0,2.0,-9.0,4.0,1311963 -3253705,1630362699,2,44,0,1,1630147163,1,1.0,40.0,1.0,-9.0,4.0,1311964 -3253706,1630362700,2,25,10,2,1630147163,1,1.0,40.0,1.0,-9.0,4.0,1311964 -3253707,1630362197,2,54,0,1,1630147164,2,6.0,-9.0,-9.0,-9.0,4.0,1311965 -3253708,1630362198,2,25,2,2,1630147164,2,6.0,-9.0,-9.0,-9.0,4.0,1311965 -3253709,1630362199,2,51,5,3,1630147164,2,6.0,-9.0,-9.0,-9.0,4.0,1311965 -3253710,1630362196,1,54,15,4,1630147164,2,6.0,-9.0,-9.0,-9.0,4.0,1311965 -3253711,1630362165,1,27,0,1,1630147165,1,1.0,55.0,1.0,-9.0,4.0,1311966 -3253712,1630362166,1,32,12,2,1630147165,1,3.0,25.0,6.0,-9.0,4.0,1311966 -3253713,1630362164,1,26,12,3,1630147165,2,3.0,40.0,6.0,-9.0,4.0,1311966 -3253714,1630362646,2,60,0,1,1630147166,2,6.0,-9.0,-9.0,-9.0,4.0,1311967 -3253715,1630362252,2,48,0,1,1630147167,2,6.0,-9.0,-9.0,-9.0,4.0,1311968 -3253716,1630362253,2,60,5,2,1630147167,1,6.0,-9.0,-9.0,-9.0,4.0,1311968 -3253717,1630362364,2,51,0,1,1630147168,1,1.0,20.0,1.0,-9.0,4.0,1311969 -3253718,1630362363,2,51,13,2,1630147168,2,1.0,36.0,4.0,-9.0,4.0,1311969 -3253719,1630362365,2,21,15,3,1630147168,1,3.0,-9.0,-9.0,-9.0,4.0,1311969 -3253720,1630362366,2,20,15,4,1630147168,1,6.0,-9.0,-9.0,13.0,4.0,1311969 -3253721,1630362422,2,34,0,1,1630147169,2,1.0,40.0,1.0,-9.0,4.0,1311970 -3253722,1630362424,2,14,2,2,1630147169,2,-9.0,-9.0,-9.0,11.0,-9.0,1311970 -3253723,1630362495,2,26,0,1,1630147170,2,1.0,50.0,1.0,-9.0,4.0,1311971 -3253724,1630362496,2,27,13,2,1630147170,1,1.0,40.0,1.0,-9.0,4.0,1311971 -3253725,1630362727,2,62,0,1,1630147171,1,6.0,-9.0,-9.0,-9.0,4.0,1311972 -3253726,1630362491,2,49,0,1,1630147172,2,1.0,48.0,1.0,-9.0,4.0,1311973 -3253727,1630362492,2,26,2,2,1630147172,1,1.0,3.0,6.0,-9.0,4.0,1311973 -3253728,1630362467,2,62,0,1,1630147173,2,6.0,-9.0,-9.0,-9.0,4.0,1311974 -3253729,1630362554,2,57,0,1,1630147174,1,1.0,40.0,1.0,-9.0,4.0,1311975 -3253730,1630362553,2,42,11,2,1630147174,2,1.0,40.0,1.0,-9.0,4.0,1311975 -3253731,1630362664,2,53,0,1,1630147175,2,1.0,45.0,1.0,-9.0,4.0,1311976 -3253732,1630362665,2,32,2,2,1630147175,2,1.0,40.0,1.0,-9.0,4.0,1311976 -3253733,1630362216,1,62,0,1,1630147176,1,1.0,20.0,6.0,-9.0,2.0,1311977 -3253734,1630362215,1,51,13,2,1630147176,2,6.0,-9.0,-9.0,-9.0,4.0,1311977 -3253735,1630362689,2,47,0,1,1630147177,1,6.0,-9.0,-9.0,-9.0,4.0,1311978 -3253736,1630362687,2,17,2,2,1630147177,1,6.0,-9.0,-9.0,13.0,4.0,1311978 -3253737,1630362688,2,16,2,3,1630147177,1,6.0,-9.0,-9.0,12.0,-9.0,1311978 -3253738,1630362690,2,70,15,4,1630147177,1,6.0,-9.0,-9.0,-9.0,2.0,1311978 -3253739,1630362452,2,33,0,1,1630147178,2,3.0,30.0,6.0,-9.0,4.0,1311979 -3253740,1630362453,2,18,2,2,1630147178,2,6.0,-9.0,-9.0,-9.0,4.0,1311979 -3253741,1630362698,2,57,0,1,1630147179,1,1.0,15.0,5.0,-9.0,2.0,1311980 -3253742,1630362744,2,35,0,1,1630147180,1,1.0,40.0,1.0,-9.0,2.0,1311981 -3253743,1630362201,1,59,0,1,1630147181,1,1.0,48.0,1.0,-9.0,4.0,1311982 -3253744,1630362200,1,59,1,2,1630147181,2,1.0,45.0,1.0,-9.0,4.0,1311982 -3253745,1630362468,2,59,0,1,1630147182,2,1.0,40.0,1.0,-9.0,4.0,1311983 -3253746,1630362321,2,32,0,1,1630147183,2,1.0,40.0,1.0,15.0,2.0,1311984 -3253747,1630362322,2,11,2,2,1630147183,1,-9.0,-9.0,-9.0,8.0,-9.0,1311984 -3253748,1630362746,2,63,0,1,1630147184,1,6.0,-9.0,-9.0,-9.0,4.0,1311985 -3253749,1630362347,2,32,0,1,1630147185,2,1.0,40.0,1.0,-9.0,4.0,1311986 -3253750,1630362348,2,16,2,2,1630147185,1,6.0,-9.0,-9.0,13.0,-9.0,1311986 -3253751,1630362349,2,6,2,3,1630147185,2,-9.0,-9.0,-9.0,3.0,-9.0,1311986 -3253752,1630362350,2,5,2,4,1630147185,2,-9.0,-9.0,-9.0,2.0,-9.0,1311986 -3253753,1630362509,2,50,0,1,1630147186,2,1.0,40.0,3.0,-9.0,3.0,1311987 -3253754,1630362510,2,19,2,2,1630147186,1,1.0,22.0,5.0,-9.0,4.0,1311987 -3253755,1630362511,2,16,7,3,1630147186,2,6.0,-9.0,-9.0,12.0,-9.0,1311987 -3253756,1630362512,2,12,7,4,1630147186,2,-9.0,-9.0,-9.0,9.0,-9.0,1311987 -3253757,1630362137,2,87,0,1,1630147187,2,6.0,-9.0,-9.0,-9.0,4.0,1311988 -3253758,1630362651,2,62,0,1,1630147188,2,1.0,40.0,1.0,-9.0,4.0,1311989 -3253759,1630362652,2,61,1,2,1630147188,1,1.0,60.0,1.0,-9.0,4.0,1311989 -3253760,1630362254,2,53,0,1,1630147189,2,1.0,98.0,1.0,-9.0,4.0,1311990 -3253761,1630362255,2,58,1,2,1630147189,1,6.0,-9.0,-9.0,-9.0,4.0,1311990 -3253762,1630362155,2,79,0,1,1630147190,2,6.0,-9.0,-9.0,-9.0,4.0,1311991 -3253763,1630362337,2,58,0,1,1630147191,1,6.0,-9.0,-9.0,-9.0,4.0,1311992 -3253764,1630362336,2,52,15,2,1630147191,2,3.0,-9.0,-9.0,-9.0,4.0,1311992 -3253765,1630362465,2,42,0,1,1630147192,1,6.0,-9.0,-9.0,-9.0,4.0,1311993 -3253766,1630362463,2,38,1,2,1630147192,2,3.0,-9.0,-9.0,-9.0,4.0,1311993 -3253767,1630362464,2,19,4,3,1630147192,2,6.0,-9.0,-9.0,-9.0,4.0,1311993 -3253768,1630362466,2,18,4,4,1630147192,1,6.0,-9.0,-9.0,-9.0,4.0,1311993 -3253769,1630362182,1,34,0,1,1630147193,2,1.0,65.0,1.0,-9.0,4.0,1311994 -3253770,1630362183,1,42,13,2,1630147193,1,1.0,43.0,1.0,-9.0,4.0,1311994 -3253771,1630362548,2,31,0,1,1630147194,2,1.0,40.0,1.0,-9.0,4.0,1311995 -3253772,1630362551,2,30,10,2,1630147194,1,6.0,-9.0,-9.0,-9.0,4.0,1311995 -3253773,1630362143,2,64,0,1,1630147195,1,1.0,23.0,6.0,-9.0,4.0,1311996 -3253774,1630362142,2,65,1,2,1630147195,2,6.0,16.0,6.0,-9.0,4.0,1311996 -3253775,1630362723,2,32,0,1,1630147196,1,6.0,56.0,1.0,-9.0,4.0,1311997 -3253776,1630362724,2,29,12,2,1630147196,1,6.0,-9.0,-9.0,-9.0,4.0,1311997 -3253777,1630362293,2,53,0,1,1630147197,2,6.0,-9.0,-9.0,-9.0,4.0,1311998 -3253778,1630362294,2,22,2,2,1630147197,2,1.0,6.0,1.0,15.0,4.0,1311998 -3253779,1630362295,2,13,2,3,1630147197,1,-9.0,-9.0,-9.0,11.0,-9.0,1311998 -3253780,1630362296,2,1,7,4,1630147197,2,-9.0,-9.0,-9.0,-9.0,-9.0,1311998 -3253781,1630362408,2,48,0,1,1630147198,2,3.0,40.0,2.0,-9.0,4.0,1311999 -3253782,1630362409,2,60,13,2,1630147198,1,6.0,-9.0,-9.0,-9.0,4.0,1311999 -3253783,1630362437,2,45,0,1,1630147199,2,1.0,40.0,1.0,-9.0,4.0,1312000 -3253784,1630362438,2,14,2,2,1630147199,2,-9.0,-9.0,-9.0,10.0,-9.0,1312000 -3253785,1630362151,2,80,0,1,1630147200,2,6.0,-9.0,-9.0,-9.0,4.0,1312001 -3253786,1630362152,2,51,2,2,1630147200,2,6.0,-9.0,-9.0,-9.0,4.0,1312001 -3253787,1630362583,2,64,0,1,1630147201,1,1.0,32.0,1.0,-9.0,2.0,1312002 -3253788,1630362582,2,61,1,2,1630147201,2,6.0,-9.0,-9.0,-9.0,4.0,1312002 -3253789,1630362538,2,38,0,1,1630147202,2,1.0,40.0,1.0,-9.0,4.0,1312003 -3253790,1630362539,2,4,2,2,1630147202,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312003 -3253791,1630362540,2,2,2,3,1630147202,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312003 -3253792,1630362541,2,40,13,4,1630147202,1,6.0,-9.0,-9.0,-9.0,4.0,1312003 -3253793,1630362692,2,45,0,1,1630147203,1,1.0,85.0,1.0,-9.0,4.0,1312004 -3253794,1630362693,2,14,2,2,1630147203,2,-9.0,-9.0,-9.0,9.0,-9.0,1312004 -3253795,1630362691,2,10,2,3,1630147203,1,-9.0,-9.0,-9.0,7.0,-9.0,1312004 -3253796,1630362694,2,8,2,4,1630147203,2,-9.0,-9.0,-9.0,4.0,-9.0,1312004 -3253797,1630362214,2,79,0,1,1630147204,1,6.0,-9.0,-9.0,-9.0,4.0,1312005 -3253798,1630362213,3,60,15,2,1630147204,2,6.0,-9.0,-9.0,-9.0,4.0,1312005 -3253799,1630362211,1,43,0,1,1630147205,2,6.0,-9.0,-9.0,-9.0,4.0,1312006 -3253800,1630362212,1,52,13,2,1630147205,1,1.0,25.0,1.0,-9.0,4.0,1312006 -3253801,1630362208,1,55,0,1,1630147206,2,1.0,40.0,1.0,-9.0,4.0,1312007 -3253802,1630362209,1,57,1,2,1630147206,2,1.0,40.0,1.0,-9.0,4.0,1312007 -3253803,1630362521,2,64,0,1,1630147207,2,2.0,7.0,2.0,-9.0,4.0,1312008 -3253804,1630362140,2,90,0,1,1630147208,2,6.0,-9.0,-9.0,-9.0,4.0,1312009 -3253805,1630362141,1,56,11,2,1630147208,1,6.0,-9.0,-9.0,-9.0,4.0,1312009 -3253806,1630362748,2,56,0,1,1630147209,1,6.0,-9.0,-9.0,-9.0,4.0,1312010 -3253807,1630362749,2,23,2,2,1630147209,1,6.0,-9.0,-9.0,-9.0,4.0,1312010 -3253808,1630362750,2,23,2,3,1630147209,1,6.0,-9.0,-9.0,-9.0,4.0,1312010 -3253809,1630362751,2,20,2,4,1630147209,1,6.0,-9.0,-9.0,-9.0,4.0,1312010 -3253810,1630362162,1,53,0,1,1630147210,2,6.0,-9.0,-9.0,-9.0,4.0,1312011 -3253811,1630362163,1,26,2,2,1630147210,1,6.0,-9.0,-9.0,-9.0,4.0,1312011 -3253812,1630362230,1,20,0,1,1630147211,1,1.0,40.0,5.0,15.0,4.0,1312012 -3253813,1630362184,1,27,0,1,1630147212,2,1.0,20.0,1.0,16.0,4.0,1312013 -3253814,1630362185,1,26,1,2,1630147212,1,3.0,-9.0,-9.0,16.0,4.0,1312013 -3253815,1630362217,1,37,0,1,1630147213,2,6.0,-9.0,-9.0,16.0,4.0,1312014 -3253816,1630362734,2,45,0,1,1630147214,1,1.0,40.0,1.0,-9.0,4.0,1312015 -3253817,1630362681,2,36,0,1,1630147215,2,6.0,-9.0,-9.0,-9.0,4.0,1312016 -3253818,1630362145,2,87,0,1,1630147216,1,6.0,-9.0,-9.0,-9.0,4.0,1312017 -3253819,1630362144,2,83,1,2,1630147216,2,6.0,-9.0,-9.0,-9.0,4.0,1312017 -3253820,1630362119,2,85,0,1,1630147217,2,6.0,-9.0,-9.0,-9.0,4.0,1312018 -3253821,1630362120,2,48,7,2,1630147217,2,1.0,50.0,1.0,-9.0,4.0,1312018 -3253822,1630362224,1,60,0,1,1630147218,1,1.0,70.0,5.0,-9.0,4.0,1312019 -3253823,1630362223,1,60,1,2,1630147218,2,6.0,-9.0,-9.0,-9.0,4.0,1312019 -3253824,1630362374,2,42,0,1,1630147219,2,1.0,45.0,1.0,-9.0,4.0,1312020 -3253825,1630362375,2,20,2,2,1630147219,2,1.0,72.0,1.0,-9.0,4.0,1312020 -3253826,1630362376,2,12,2,3,1630147219,1,-9.0,-9.0,-9.0,8.0,-9.0,1312020 -3253827,1630362377,2,9,2,4,1630147219,2,-9.0,-9.0,-9.0,4.0,-9.0,1312020 -3253828,1630362695,2,16,0,1,1630147220,1,6.0,-9.0,-9.0,14.0,-9.0,1312021 -3253829,1630362696,2,38,15,2,1630147220,1,1.0,40.0,1.0,-9.0,4.0,1312021 -3253830,1630362161,1,49,0,1,1630147221,1,1.0,80.0,1.0,-9.0,4.0,1312022 -3253831,1630362160,1,40,1,2,1630147221,2,3.0,-9.0,-9.0,-9.0,4.0,1312022 -3253832,1630362149,2,71,0,1,1630147222,2,6.0,-9.0,-9.0,-9.0,4.0,1312023 -3253833,1630362150,2,87,6,2,1630147222,2,6.0,-9.0,-9.0,-9.0,4.0,1312023 -3253834,1630362410,2,22,0,1,1630147223,2,1.0,37.0,2.0,-9.0,4.0,1312024 -3253835,1630362411,2,2,2,2,1630147223,2,-9.0,-9.0,-9.0,-9.0,-9.0,1312024 -3253836,1630362195,1,27,0,1,1630147224,1,1.0,50.0,1.0,-9.0,4.0,1312025 -3253837,1630363204,1,42,0,1,1630147225,1,1.0,50.0,1.0,-9.0,4.0,1312026 -3253838,1630362957,1,42,0,1,1630147226,2,1.0,55.0,1.0,-9.0,4.0,1312027 -3253839,1630362958,1,39,1,2,1630147226,1,1.0,55.0,1.0,-9.0,4.0,1312027 -3253840,1630363707,2,40,0,1,1630147227,2,1.0,40.0,1.0,-9.0,4.0,1312028 -3253841,1630363092,1,35,0,1,1630147228,2,1.0,40.0,2.0,-9.0,4.0,1312029 -3253842,1630363528,2,31,0,1,1630147229,2,1.0,50.0,1.0,-9.0,4.0,1312030 -3253843,1630363161,1,41,0,1,1630147230,1,1.0,40.0,1.0,-9.0,4.0,1312031 -3253844,1630363162,1,41,0,1,1630147231,1,1.0,40.0,1.0,-9.0,4.0,1312032 -3253845,1630363136,4,29,0,1,1630147232,2,1.0,80.0,1.0,-9.0,4.0,1312033 -3253846,1630363134,1,26,13,2,1630147232,1,3.0,40.0,4.0,16.0,4.0,1312033 -3253847,1630363859,2,42,0,1,1630147233,1,1.0,70.0,1.0,-9.0,4.0,1312034 -3253848,1630363860,2,41,15,2,1630147233,1,6.0,-9.0,-9.0,-9.0,4.0,1312034 -3253849,1630363718,2,33,0,1,1630147234,1,1.0,40.0,1.0,-9.0,4.0,1312035 -3253850,1630363717,2,11,2,2,1630147234,1,-9.0,-9.0,-9.0,8.0,-9.0,1312035 -3253851,1630363719,2,26,5,3,1630147234,1,1.0,55.0,1.0,15.0,4.0,1312035 -3253852,1630363480,2,52,0,1,1630147235,1,1.0,40.0,1.0,-9.0,2.0,1312036 -3253853,1630363478,2,58,5,2,1630147235,2,1.0,35.0,1.0,-9.0,4.0,1312036 -3253854,1630363479,2,23,10,3,1630147235,2,1.0,12.0,3.0,15.0,4.0,1312036 -3253855,1630363687,2,62,0,1,1630147236,2,1.0,50.0,1.0,-9.0,4.0,1312037 -3253856,1630363601,2,56,0,1,1630147237,2,1.0,40.0,1.0,-9.0,4.0,1312038 -3253857,1630363872,2,61,0,1,1630147238,1,1.0,40.0,1.0,-9.0,4.0,1312039 -3253858,1630363723,2,64,0,1,1630147239,1,1.0,20.0,4.0,-9.0,4.0,1312040 -3253859,1630363713,2,64,0,1,1630147240,2,1.0,56.0,1.0,-9.0,4.0,1312041 -3253860,1630363745,2,63,0,1,1630147241,1,1.0,40.0,1.0,-9.0,3.0,1312042 -3253861,1630363154,1,58,0,1,1630147242,1,1.0,39.0,3.0,-9.0,4.0,1312043 -3253862,1630363791,2,55,0,1,1630147243,1,1.0,48.0,1.0,-9.0,4.0,1312044 -3253863,1630363793,2,53,5,2,1630147243,1,3.0,-9.0,-9.0,-9.0,4.0,1312044 -3253864,1630363795,2,19,10,3,1630147243,1,6.0,-9.0,-9.0,14.0,4.0,1312044 -3253865,1630363428,2,56,0,1,1630147244,2,1.0,40.0,1.0,-9.0,4.0,1312045 -3253866,1630363432,2,43,10,2,1630147244,2,6.0,-9.0,-9.0,-9.0,4.0,1312045 -3253867,1630363436,2,63,13,3,1630147244,1,6.0,-9.0,-9.0,-9.0,4.0,1312045 -3253868,1630363429,2,56,0,1,1630147245,2,1.0,40.0,1.0,-9.0,4.0,1312046 -3253869,1630363433,2,43,10,2,1630147245,2,6.0,-9.0,-9.0,-9.0,4.0,1312046 -3253870,1630363437,2,63,13,3,1630147245,1,6.0,-9.0,-9.0,-9.0,4.0,1312046 -3253871,1630363328,2,64,0,1,1630147246,1,6.0,40.0,3.0,-9.0,2.0,1312047 -3253872,1630363326,2,63,1,2,1630147246,2,6.0,-9.0,-9.0,-9.0,4.0,1312047 -3253873,1630363327,2,34,2,3,1630147246,2,2.0,40.0,4.0,-9.0,4.0,1312047 -3253874,1630363430,2,56,0,1,1630147247,2,1.0,40.0,1.0,-9.0,4.0,1312048 -3253875,1630363434,2,43,10,2,1630147247,2,6.0,-9.0,-9.0,-9.0,4.0,1312048 -3253876,1630363438,2,63,13,3,1630147247,1,6.0,-9.0,-9.0,-9.0,4.0,1312048 -3253877,1630363431,2,56,0,1,1630147248,2,1.0,40.0,1.0,-9.0,4.0,1312049 -3253878,1630363435,2,43,10,2,1630147248,2,6.0,-9.0,-9.0,-9.0,4.0,1312049 -3253879,1630363439,2,63,13,3,1630147248,1,6.0,-9.0,-9.0,-9.0,4.0,1312049 -3253880,1630363440,2,63,0,1,1630147249,2,6.0,-9.0,-9.0,-9.0,4.0,1312050 -3253881,1630363441,2,25,2,2,1630147249,2,1.0,40.0,2.0,-9.0,4.0,1312050 -3253882,1630363683,2,63,0,1,1630147250,2,6.0,-9.0,-9.0,-9.0,4.0,1312051 -3253883,1630363684,2,63,1,2,1630147250,1,1.0,40.0,1.0,-9.0,2.0,1312051 -3253884,1630363784,2,47,0,1,1630147251,1,1.0,40.0,1.0,-9.0,2.0,1312052 -3253885,1630363746,2,54,0,1,1630147252,1,1.0,65.0,1.0,-9.0,4.0,1312053 -3253886,1630363468,2,59,0,1,1630147253,2,1.0,45.0,1.0,-9.0,4.0,1312054 -3253887,1630363446,2,64,0,1,1630147254,2,2.0,36.0,4.0,-9.0,4.0,1312055 -3253888,1630363447,2,64,0,1,1630147255,2,2.0,36.0,4.0,-9.0,4.0,1312056 -3253889,1630363790,2,54,0,1,1630147256,1,1.0,40.0,1.0,-9.0,4.0,1312057 -3253890,1630363418,2,59,0,1,1630147257,2,1.0,40.0,1.0,-9.0,4.0,1312058 -3253891,1630363354,2,54,0,1,1630147258,2,1.0,40.0,1.0,-9.0,4.0,1312059 -3253892,1630362938,1,58,0,1,1630147259,2,1.0,55.0,1.0,-9.0,4.0,1312060 -3253893,1630362959,1,57,0,1,1630147260,2,1.0,30.0,1.0,-9.0,4.0,1312061 -3253894,1630362939,1,58,0,1,1630147261,2,1.0,55.0,1.0,-9.0,4.0,1312062 -3253895,1630363188,1,62,0,1,1630147262,1,1.0,50.0,1.0,16.0,4.0,1312063 -3253896,1630363341,2,46,0,1,1630147263,2,1.0,60.0,1.0,-9.0,4.0,1312064 -3253897,1630363342,2,46,0,1,1630147264,2,1.0,60.0,1.0,-9.0,4.0,1312065 -3253898,1630363155,1,59,0,1,1630147265,1,1.0,60.0,1.0,-9.0,4.0,1312066 -3253899,1630363156,1,59,0,1,1630147266,1,1.0,60.0,1.0,-9.0,4.0,1312067 -3253900,1630363555,2,59,0,1,1630147267,2,6.0,-9.0,-9.0,-9.0,2.0,1312068 -3253901,1630363559,2,29,4,2,1630147267,1,6.0,-9.0,-9.0,-9.0,4.0,1312068 -3253902,1630363557,2,57,13,3,1630147267,2,1.0,40.0,1.0,-9.0,2.0,1312068 -3253903,1630363556,2,59,0,1,1630147268,2,6.0,-9.0,-9.0,-9.0,2.0,1312069 -3253904,1630363560,2,29,4,2,1630147268,1,6.0,-9.0,-9.0,-9.0,4.0,1312069 -3253905,1630363558,2,57,13,3,1630147268,2,1.0,40.0,1.0,-9.0,2.0,1312069 -3253906,1630362906,1,62,0,1,1630147269,1,6.0,-9.0,-9.0,-9.0,2.0,1312070 -3253907,1630362898,1,59,1,2,1630147269,2,6.0,-9.0,-9.0,-9.0,4.0,1312070 -3253908,1630362902,1,26,2,3,1630147269,2,1.0,30.0,1.0,-9.0,4.0,1312070 -3253909,1630362907,1,62,0,1,1630147270,1,6.0,-9.0,-9.0,-9.0,2.0,1312071 -3253910,1630362899,1,59,1,2,1630147270,2,6.0,-9.0,-9.0,-9.0,4.0,1312071 -3253911,1630362903,1,26,2,3,1630147270,2,1.0,30.0,1.0,-9.0,4.0,1312071 -3253912,1630362908,1,62,0,1,1630147271,1,6.0,-9.0,-9.0,-9.0,2.0,1312072 -3253913,1630362900,1,59,1,2,1630147271,2,6.0,-9.0,-9.0,-9.0,4.0,1312072 -3253914,1630362904,1,26,2,3,1630147271,2,1.0,30.0,1.0,-9.0,4.0,1312072 -3253915,1630363644,2,64,0,1,1630147272,1,1.0,32.0,1.0,-9.0,2.0,1312073 -3253916,1630363642,2,61,1,2,1630147272,2,6.0,-9.0,-9.0,-9.0,4.0,1312073 -3253917,1630363708,2,56,0,1,1630147273,2,1.0,40.0,1.0,-9.0,4.0,1312074 -3253918,1630363709,2,27,2,2,1630147273,1,3.0,24.0,6.0,-9.0,4.0,1312074 -3253919,1630362986,1,56,0,1,1630147274,2,1.0,35.0,1.0,-9.0,4.0,1312075 -3253920,1630362988,1,67,1,2,1630147274,1,6.0,-9.0,-9.0,-9.0,2.0,1312075 -3253921,1630362987,1,56,0,1,1630147275,2,1.0,35.0,1.0,-9.0,4.0,1312076 -3253922,1630362989,1,67,1,2,1630147275,1,6.0,-9.0,-9.0,-9.0,2.0,1312076 -3253923,1630363603,2,45,0,1,1630147276,2,1.0,60.0,1.0,16.0,4.0,1312077 -3253924,1630363605,2,24,2,2,1630147276,1,6.0,-9.0,-9.0,-9.0,4.0,1312077 -3253925,1630363604,2,19,2,3,1630147276,2,1.0,40.0,1.0,15.0,4.0,1312077 -3253926,1630363596,2,61,0,1,1630147277,1,1.0,40.0,3.0,-9.0,2.0,1312078 -3253927,1630363595,2,61,1,2,1630147277,2,1.0,35.0,1.0,-9.0,4.0,1312078 -3253928,1630363597,2,50,5,3,1630147277,1,6.0,-9.0,-9.0,-9.0,4.0,1312078 -3253929,1630363695,2,57,0,1,1630147278,2,1.0,40.0,1.0,-9.0,4.0,1312079 -3253930,1630363699,2,35,2,2,1630147278,1,6.0,-9.0,-9.0,-9.0,4.0,1312079 -3253931,1630363697,2,33,2,3,1630147278,2,1.0,40.0,1.0,15.0,4.0,1312079 -3253932,1630363531,2,58,0,1,1630147279,1,1.0,40.0,1.0,-9.0,4.0,1312080 -3253933,1630363529,2,58,1,2,1630147279,2,1.0,40.0,1.0,-9.0,4.0,1312080 -3253934,1630363530,2,49,10,3,1630147279,2,6.0,-9.0,-9.0,-9.0,4.0,1312080 -3253935,1630363231,1,49,0,1,1630147280,1,1.0,52.0,1.0,-9.0,4.0,1312081 -3253936,1630363233,1,33,12,2,1630147280,1,6.0,-9.0,-9.0,-9.0,4.0,1312081 -3253937,1630363235,1,54,13,3,1630147280,1,1.0,48.0,1.0,-9.0,4.0,1312081 -3253938,1630363036,1,45,0,1,1630147281,1,1.0,60.0,1.0,-9.0,4.0,1312082 -3253939,1630363035,1,44,1,2,1630147281,2,1.0,40.0,1.0,-9.0,4.0,1312082 -3253940,1630363037,1,5,2,3,1630147281,1,-9.0,-9.0,-9.0,3.0,-9.0,1312082 -3253941,1630363614,2,57,0,1,1630147282,1,1.0,40.0,1.0,-9.0,4.0,1312083 -3253942,1630363613,2,42,11,2,1630147282,2,1.0,40.0,1.0,-9.0,4.0,1312083 -3253943,1630363081,1,46,0,1,1630147283,1,1.0,40.0,1.0,-9.0,4.0,1312084 -3253944,1630363080,1,36,1,2,1630147283,2,1.0,16.0,1.0,-9.0,4.0,1312084 -3253945,1630362927,1,58,0,1,1630147284,1,2.0,40.0,1.0,-9.0,2.0,1312085 -3253946,1630362926,1,57,1,2,1630147284,2,2.0,16.0,1.0,-9.0,4.0,1312085 -3253947,1630363670,2,61,0,1,1630147285,2,6.0,-9.0,-9.0,-9.0,4.0,1312086 -3253948,1630363519,2,56,0,1,1630147286,2,6.0,-9.0,-9.0,-9.0,4.0,1312087 -3253949,1630363844,2,53,0,1,1630147287,1,6.0,-9.0,-9.0,-9.0,4.0,1312088 -3253950,1630363732,2,51,0,1,1630147288,1,6.0,-9.0,-9.0,-9.0,4.0,1312089 -3253951,1630363061,1,62,0,1,1630147289,2,6.0,-9.0,-9.0,-9.0,4.0,1312090 -3253952,1630363369,2,51,0,1,1630147290,2,3.0,-9.0,-9.0,-9.0,4.0,1312091 -3253953,1630363608,2,64,0,1,1630147291,2,6.0,-9.0,-9.0,-9.0,4.0,1312092 -3253954,1630363806,2,52,0,1,1630147292,1,6.0,-9.0,-9.0,-9.0,4.0,1312093 -3253955,1630363144,1,54,0,1,1630147293,1,3.0,30.0,6.0,-9.0,4.0,1312094 -3253956,1630363335,2,61,0,1,1630147294,2,6.0,-9.0,-9.0,-9.0,4.0,1312095 -3253957,1630363336,2,45,2,2,1630147294,1,6.0,-9.0,-9.0,-9.0,4.0,1312095 -3253958,1630363337,2,69,5,3,1630147294,1,6.0,-9.0,-9.0,-9.0,4.0,1312095 -3253959,1630363586,2,48,0,1,1630147295,2,6.0,20.0,1.0,15.0,4.0,1312096 -3253960,1630363774,2,49,0,1,1630147296,1,1.0,36.0,1.0,-9.0,4.0,1312097 -3253961,1630363766,2,57,0,1,1630147297,1,2.0,72.0,1.0,-9.0,4.0,1312098 -3253962,1630363513,2,50,0,1,1630147298,2,1.0,40.0,1.0,-9.0,4.0,1312099 -3253963,1630363767,2,57,0,1,1630147299,1,2.0,72.0,1.0,-9.0,4.0,1312100 -3253964,1630363473,2,63,0,1,1630147300,2,3.0,-9.0,-9.0,-9.0,4.0,1312101 -3253965,1630363474,2,25,2,2,1630147300,2,1.0,30.0,1.0,15.0,4.0,1312101 -3253966,1630362995,1,37,0,1,1630147301,1,1.0,50.0,3.0,-9.0,4.0,1312102 -3253967,1630362994,1,39,13,2,1630147301,2,1.0,45.0,3.0,-9.0,4.0,1312102 -3253968,1630363553,2,26,0,1,1630147302,2,1.0,40.0,1.0,-9.0,4.0,1312103 -3253969,1630363554,2,26,0,1,1630147303,2,1.0,40.0,1.0,-9.0,4.0,1312104 -3253970,1630363725,2,39,0,1,1630147304,1,1.0,48.0,1.0,-9.0,4.0,1312105 -3253971,1630363285,1,29,0,1,1630147305,1,1.0,35.0,1.0,-9.0,4.0,1312106 -3253972,1630362990,1,33,0,1,1630147306,2,1.0,65.0,1.0,-9.0,4.0,1312107 -3253973,1630363286,1,29,0,1,1630147307,1,1.0,35.0,1.0,-9.0,4.0,1312108 -3253974,1630363160,1,29,0,1,1630147308,1,1.0,45.0,1.0,-9.0,4.0,1312109 -3253975,1630364007,4,42,0,1,1630147309,1,1.0,40.0,3.0,-9.0,4.0,1312110 -3253976,1630363989,4,27,0,1,1630147310,1,1.0,40.0,1.0,-9.0,4.0,1312111 -3253977,1630364001,4,30,0,1,1630147311,1,1.0,60.0,1.0,16.0,4.0,1312112 -3253978,1630364008,4,42,0,1,1630147312,1,1.0,40.0,3.0,-9.0,4.0,1312113 -3253979,1630363982,4,44,0,1,1630147313,1,1.0,55.0,1.0,-9.0,4.0,1312114 -3253980,1630363990,4,27,0,1,1630147314,1,1.0,40.0,1.0,-9.0,4.0,1312115 -3253981,1630363991,4,27,0,1,1630147315,1,1.0,40.0,1.0,-9.0,4.0,1312116 -3253982,1630364012,4,33,0,1,1630147316,1,2.0,12.0,1.0,-9.0,4.0,1312117 -3253983,1630363842,2,35,0,1,1630147317,1,1.0,40.0,1.0,-9.0,2.0,1312118 -3253984,1630363517,2,43,0,1,1630147318,2,1.0,50.0,1.0,-9.0,4.0,1312119 -3253985,1630363843,2,35,0,1,1630147319,1,1.0,40.0,1.0,-9.0,2.0,1312120 -3253986,1630363458,2,32,0,1,1630147320,2,1.0,40.0,1.0,-9.0,4.0,1312121 -3253987,1630363868,2,35,0,1,1630147321,1,1.0,40.0,1.0,-9.0,4.0,1312122 -3253988,1630363800,2,34,0,1,1630147322,1,1.0,40.0,1.0,-9.0,4.0,1312123 -3253989,1630363459,2,32,0,1,1630147323,2,1.0,40.0,1.0,-9.0,4.0,1312124 -3253990,1630363724,2,30,0,1,1630147324,1,1.0,40.0,1.0,-9.0,4.0,1312125 -3253991,1630363518,2,43,0,1,1630147325,2,1.0,50.0,1.0,-9.0,4.0,1312126 -3253992,1630363240,1,31,0,1,1630147326,1,2.0,70.0,1.0,-9.0,4.0,1312127 -3253993,1630363183,1,29,0,1,1630147327,1,1.0,50.0,1.0,-9.0,4.0,1312128 -3253994,1630363185,1,29,0,1,1630147328,1,1.0,40.0,1.0,-9.0,2.0,1312129 -3253995,1630363257,1,27,0,1,1630147329,1,1.0,40.0,1.0,-9.0,4.0,1312130 -3253996,1630363196,1,34,0,1,1630147330,1,1.0,40.0,1.0,-9.0,4.0,1312131 -3253997,1630363258,1,27,0,1,1630147331,1,1.0,40.0,1.0,-9.0,4.0,1312132 -3253998,1630363259,1,27,0,1,1630147332,1,1.0,40.0,1.0,-9.0,4.0,1312133 -3253999,1630363184,1,29,0,1,1630147333,1,1.0,50.0,1.0,-9.0,4.0,1312134 -3254000,1630363056,1,33,0,1,1630147334,2,1.0,60.0,1.0,15.0,4.0,1312135 -3254001,1630363654,2,35,0,1,1630147335,2,1.0,40.0,1.0,15.0,4.0,1312136 -3254002,1630363211,1,26,0,1,1630147336,1,3.0,40.0,2.0,-9.0,4.0,1312137 -3254003,1630363212,1,22,12,2,1630147336,1,1.0,40.0,5.0,-9.0,4.0,1312137 -3254004,1630363085,1,25,0,1,1630147337,1,6.0,-9.0,-9.0,16.0,4.0,1312138 -3254005,1630363084,1,26,1,2,1630147337,2,1.0,50.0,1.0,-9.0,4.0,1312138 -3254006,1630363096,1,37,0,1,1630147338,1,1.0,50.0,1.0,16.0,4.0,1312139 -3254007,1630363094,1,49,1,2,1630147338,2,1.0,30.0,1.0,-9.0,4.0,1312139 -3254008,1630362947,1,32,0,1,1630147339,1,1.0,40.0,1.0,-9.0,4.0,1312140 -3254009,1630362945,1,42,1,2,1630147339,2,1.0,40.0,1.0,-9.0,4.0,1312140 -3254010,1630363983,4,25,0,1,1630147340,1,1.0,70.0,5.0,-9.0,2.0,1312141 -3254011,1630363984,4,25,0,1,1630147341,1,1.0,70.0,5.0,-9.0,2.0,1312142 -3254012,1630363985,4,25,0,1,1630147342,1,1.0,70.0,5.0,-9.0,2.0,1312143 -3254013,1630363758,2,29,0,1,1630147343,1,1.0,40.0,1.0,-9.0,4.0,1312144 -3254014,1630363736,2,31,0,1,1630147344,1,1.0,40.0,1.0,-9.0,4.0,1312145 -3254015,1630363879,2,42,0,1,1630147345,1,2.0,60.0,1.0,-9.0,2.0,1312146 -3254016,1630363854,2,33,0,1,1630147346,1,1.0,40.0,1.0,-9.0,4.0,1312147 -3254017,1630363855,2,33,0,1,1630147347,1,1.0,40.0,1.0,-9.0,4.0,1312148 -3254018,1630363856,2,33,0,1,1630147348,1,1.0,40.0,1.0,-9.0,4.0,1312149 -3254019,1630363828,2,34,0,1,1630147349,1,1.0,60.0,1.0,-9.0,4.0,1312150 -3254020,1630363221,1,27,0,1,1630147350,1,1.0,40.0,1.0,-9.0,4.0,1312151 -3254021,1630363206,1,25,0,1,1630147351,1,1.0,40.0,1.0,-9.0,4.0,1312152 -3254022,1630363222,1,27,0,1,1630147352,1,1.0,40.0,1.0,-9.0,4.0,1312153 -3254023,1630363017,1,28,0,1,1630147353,2,1.0,40.0,1.0,-9.0,4.0,1312154 -3254024,1630363018,1,32,0,1,1630147354,2,1.0,50.0,1.0,-9.0,4.0,1312155 -3254025,1630363207,1,25,0,1,1630147355,1,1.0,40.0,1.0,-9.0,4.0,1312156 -3254026,1630363141,1,26,0,1,1630147356,1,1.0,40.0,3.0,-9.0,4.0,1312157 -3254027,1630363142,1,26,0,1,1630147357,1,1.0,40.0,3.0,-9.0,4.0,1312158 -3254028,1630363208,1,25,0,1,1630147358,1,1.0,40.0,1.0,-9.0,4.0,1312159 -3254029,1630363223,1,27,0,1,1630147359,1,1.0,40.0,1.0,-9.0,4.0,1312160 -3254030,1630363747,2,36,0,1,1630147360,1,1.0,40.0,1.0,-9.0,4.0,1312161 -3254031,1630363217,1,40,0,1,1630147361,1,1.0,43.0,1.0,-9.0,4.0,1312162 -3254032,1630363182,1,39,0,1,1630147362,1,1.0,40.0,1.0,-9.0,4.0,1312163 -3254033,1630363218,1,40,0,1,1630147363,1,1.0,43.0,1.0,-9.0,4.0,1312164 -3254034,1630362972,1,37,0,1,1630147364,1,1.0,33.0,1.0,-9.0,4.0,1312165 -3254035,1630362971,1,27,13,2,1630147364,2,6.0,40.0,5.0,-9.0,4.0,1312165 -3254036,1630362976,1,29,0,1,1630147365,2,1.0,45.0,1.0,-9.0,4.0,1312166 -3254037,1630362978,1,29,1,2,1630147365,1,6.0,45.0,6.0,16.0,4.0,1312166 -3254038,1630363973,4,27,0,1,1630147366,1,1.0,80.0,1.0,-9.0,4.0,1312167 -3254039,1630363965,4,26,1,2,1630147366,2,1.0,80.0,3.0,-9.0,4.0,1312167 -3254040,1630363969,4,19,5,3,1630147366,2,6.0,-9.0,-9.0,15.0,4.0,1312167 -3254041,1630363974,4,27,0,1,1630147367,1,1.0,80.0,1.0,-9.0,4.0,1312168 -3254042,1630363966,4,26,1,2,1630147367,2,1.0,80.0,3.0,-9.0,4.0,1312168 -3254043,1630363970,4,19,5,3,1630147367,2,6.0,-9.0,-9.0,15.0,4.0,1312168 -3254044,1630363975,4,27,0,1,1630147368,1,1.0,80.0,1.0,-9.0,4.0,1312169 -3254045,1630363967,4,26,1,2,1630147368,2,1.0,80.0,3.0,-9.0,4.0,1312169 -3254046,1630363971,4,19,5,3,1630147368,2,6.0,-9.0,-9.0,15.0,4.0,1312169 -3254047,1630363976,4,27,0,1,1630147369,1,1.0,80.0,1.0,-9.0,4.0,1312170 -3254048,1630363968,4,26,1,2,1630147369,2,1.0,80.0,3.0,-9.0,4.0,1312170 -3254049,1630363030,1,32,0,1,1630147370,1,1.0,40.0,3.0,16.0,4.0,1312171 -3254050,1630363026,1,40,12,2,1630147370,2,1.0,40.0,1.0,16.0,4.0,1312171 -3254051,1630363028,1,30,13,3,1630147370,2,2.0,40.0,3.0,16.0,4.0,1312171 -3254052,1630363069,1,26,0,1,1630147371,2,1.0,35.0,1.0,-9.0,4.0,1312172 -3254053,1630363073,1,26,12,2,1630147371,1,1.0,40.0,1.0,-9.0,4.0,1312172 -3254054,1630363071,1,21,12,3,1630147371,2,1.0,35.0,1.0,15.0,4.0,1312172 -3254055,1630363070,1,26,0,1,1630147372,2,1.0,35.0,1.0,-9.0,4.0,1312173 -3254056,1630363074,1,26,12,2,1630147372,1,1.0,40.0,1.0,-9.0,4.0,1312173 -3254057,1630363072,1,21,12,3,1630147372,2,1.0,35.0,1.0,15.0,4.0,1312173 -3254058,1630363059,1,25,0,1,1630147373,1,1.0,45.0,1.0,-9.0,4.0,1312174 -3254059,1630363057,1,24,13,2,1630147373,2,1.0,40.0,1.0,-9.0,4.0,1312174 -3254060,1630363060,1,25,0,1,1630147374,1,1.0,45.0,1.0,-9.0,4.0,1312175 -3254061,1630363058,1,24,13,2,1630147374,2,1.0,40.0,1.0,-9.0,4.0,1312175 -3254062,1630363949,4,30,0,1,1630147375,2,1.0,44.0,1.0,-9.0,4.0,1312176 -3254063,1630363951,4,34,1,2,1630147375,1,1.0,40.0,2.0,-9.0,4.0,1312176 -3254064,1630363405,2,41,0,1,1630147376,2,1.0,40.0,1.0,-9.0,4.0,1312177 -3254065,1630363406,2,53,1,2,1630147376,1,1.0,45.0,1.0,-9.0,4.0,1312177 -3254066,1630363106,1,31,0,1,1630147377,1,1.0,40.0,3.0,-9.0,4.0,1312178 -3254067,1630363105,1,26,1,2,1630147377,2,1.0,40.0,1.0,16.0,4.0,1312178 -3254068,1630363041,1,28,0,1,1630147378,2,1.0,80.0,1.0,-9.0,2.0,1312179 -3254069,1630363044,1,26,13,2,1630147378,1,1.0,65.0,1.0,-9.0,4.0,1312179 -3254070,1630363042,1,28,0,1,1630147379,2,1.0,80.0,1.0,-9.0,2.0,1312180 -3254071,1630363045,1,26,13,2,1630147379,1,1.0,65.0,1.0,-9.0,4.0,1312180 -3254072,1630363082,1,28,0,1,1630147380,2,1.0,55.0,1.0,-9.0,4.0,1312181 -3254073,1630363083,1,28,1,2,1630147380,1,1.0,40.0,1.0,-9.0,4.0,1312181 -3254074,1630363087,1,26,0,1,1630147381,1,1.0,40.0,1.0,-9.0,4.0,1312182 -3254075,1630363086,1,25,13,2,1630147381,2,1.0,30.0,1.0,-9.0,4.0,1312182 -3254076,1630363863,2,39,0,1,1630147382,1,6.0,-9.0,-9.0,-9.0,4.0,1312183 -3254077,1630363839,2,39,0,1,1630147383,1,6.0,-9.0,-9.0,-9.0,4.0,1312184 -3254078,1630363865,2,42,0,1,1630147384,1,6.0,-9.0,-9.0,-9.0,4.0,1312185 -3254079,1630363757,2,28,0,1,1630147385,1,3.0,-9.0,-9.0,-9.0,4.0,1312186 -3254080,1630363733,2,44,0,1,1630147386,1,3.0,6.0,6.0,-9.0,2.0,1312187 -3254081,1630363741,2,26,0,1,1630147387,1,6.0,-9.0,-9.0,-9.0,4.0,1312188 -3254082,1630363363,2,32,0,1,1630147388,2,6.0,-9.0,-9.0,16.0,4.0,1312189 -3254083,1630363409,2,41,0,1,1630147389,2,6.0,-9.0,-9.0,-9.0,2.0,1312190 -3254084,1630363104,1,37,0,1,1630147390,2,6.0,-9.0,-9.0,-9.0,4.0,1312191 -3254085,1630363520,2,44,0,1,1630147391,2,6.0,-9.0,-9.0,-9.0,4.0,1312192 -3254086,1630363383,2,33,0,1,1630147392,2,3.0,-9.0,-9.0,-9.0,4.0,1312193 -3254087,1630363835,2,40,0,1,1630147393,1,6.0,-9.0,-9.0,-9.0,4.0,1312194 -3254088,1630363840,2,29,0,1,1630147394,1,6.0,-9.0,-9.0,16.0,3.0,1312195 -3254089,1630363107,1,26,0,1,1630147395,2,6.0,-9.0,-9.0,16.0,4.0,1312196 -3254090,1630363448,2,39,0,1,1630147396,2,6.0,-9.0,-9.0,-9.0,4.0,1312197 -3254091,1630363449,2,17,2,2,1630147396,1,6.0,-9.0,-9.0,13.0,4.0,1312197 -3254092,1630363450,2,15,2,3,1630147396,1,-9.0,-9.0,-9.0,11.0,-9.0,1312197 -3254093,1630363567,2,26,0,1,1630147397,2,3.0,-9.0,-9.0,-9.0,4.0,1312198 -3254094,1630363568,2,8,2,2,1630147397,1,-9.0,-9.0,-9.0,4.0,-9.0,1312198 -3254095,1630363569,2,2,2,3,1630147397,2,-9.0,-9.0,-9.0,-9.0,-9.0,1312198 -3254096,1630363202,4,28,0,1,1630147398,1,6.0,-9.0,-9.0,16.0,4.0,1312199 -3254097,1630363198,1,28,12,2,1630147398,1,6.0,-9.0,-9.0,16.0,4.0,1312199 -3254098,1630363200,1,25,12,3,1630147398,1,6.0,-9.0,-9.0,16.0,4.0,1312199 -3254099,1630364010,4,26,0,1,1630147399,1,6.0,36.0,5.0,-9.0,4.0,1312200 -3254100,1630364011,4,25,12,2,1630147399,1,6.0,-9.0,-9.0,-9.0,4.0,1312200 -3254101,1630363822,2,35,0,1,1630147400,1,6.0,-9.0,-9.0,-9.0,4.0,1312201 -3254102,1630363823,2,30,5,2,1630147400,1,6.0,-9.0,-9.0,-9.0,4.0,1312201 -3254103,1630363743,2,40,0,1,1630147401,1,1.0,40.0,6.0,-9.0,4.0,1312202 -3254104,1630363693,2,41,0,1,1630147402,2,1.0,40.0,1.0,-9.0,4.0,1312203 -3254105,1630363420,2,42,0,1,1630147403,2,1.0,45.0,1.0,-9.0,4.0,1312204 -3254106,1630363421,2,42,0,1,1630147404,2,1.0,45.0,1.0,-9.0,4.0,1312205 -3254107,1630363744,2,40,0,1,1630147405,1,1.0,40.0,6.0,-9.0,4.0,1312206 -3254108,1630363752,2,37,0,1,1630147406,1,1.0,40.0,6.0,-9.0,4.0,1312207 -3254109,1630363247,1,32,0,1,1630147407,1,1.0,60.0,5.0,-9.0,4.0,1312208 -3254110,1630363024,1,44,0,1,1630147408,2,1.0,40.0,1.0,-9.0,4.0,1312209 -3254111,1630363133,1,42,0,1,1630147409,1,1.0,40.0,1.0,-9.0,2.0,1312210 -3254112,1630363016,1,25,0,1,1630147410,2,1.0,30.0,3.0,-9.0,4.0,1312211 -3254113,1630363248,1,32,0,1,1630147411,1,1.0,60.0,5.0,-9.0,4.0,1312212 -3254114,1630363997,4,26,0,1,1630147412,1,1.0,60.0,3.0,-9.0,4.0,1312213 -3254115,1630363979,4,32,0,1,1630147413,1,1.0,40.0,6.0,16.0,4.0,1312214 -3254116,1630363960,4,30,0,1,1630147414,2,1.0,40.0,1.0,-9.0,4.0,1312215 -3254117,1630363980,4,32,0,1,1630147415,1,1.0,40.0,6.0,16.0,4.0,1312216 -3254118,1630363981,4,32,0,1,1630147416,1,1.0,40.0,6.0,16.0,4.0,1312217 -3254119,1630363998,4,26,0,1,1630147417,1,1.0,60.0,3.0,-9.0,4.0,1312218 -3254120,1630364000,4,31,0,1,1630147418,1,1.0,17.0,1.0,16.0,4.0,1312219 -3254121,1630363701,2,26,0,1,1630147419,2,1.0,30.0,1.0,-9.0,4.0,1312220 -3254122,1630363834,2,29,0,1,1630147420,1,1.0,40.0,1.0,-9.0,4.0,1312221 -3254123,1630363821,2,33,0,1,1630147421,1,1.0,10.0,6.0,-9.0,4.0,1312222 -3254124,1630363851,2,44,0,1,1630147422,1,1.0,40.0,1.0,-9.0,4.0,1312223 -3254125,1630363788,2,30,0,1,1630147423,1,1.0,40.0,1.0,-9.0,4.0,1312224 -3254126,1630363810,2,29,0,1,1630147424,1,1.0,40.0,1.0,-9.0,4.0,1312225 -3254127,1630363266,1,31,0,1,1630147425,1,1.0,40.0,6.0,16.0,2.0,1312226 -3254128,1630363225,1,27,0,1,1630147426,1,1.0,40.0,1.0,-9.0,4.0,1312227 -3254129,1630363267,1,31,0,1,1630147427,1,1.0,40.0,6.0,16.0,2.0,1312228 -3254130,1630363237,1,27,0,1,1630147428,1,1.0,40.0,1.0,-9.0,4.0,1312229 -3254131,1630363187,1,25,0,1,1630147429,1,1.0,10.0,5.0,16.0,4.0,1312230 -3254132,1630363068,1,31,0,1,1630147430,2,1.0,80.0,5.0,-9.0,4.0,1312231 -3254133,1630363239,1,30,0,1,1630147431,1,1.0,50.0,1.0,-9.0,4.0,1312232 -3254134,1630362973,1,28,0,1,1630147432,2,1.0,50.0,1.0,16.0,4.0,1312233 -3254135,1630363098,1,31,0,1,1630147433,2,1.0,20.0,1.0,-9.0,4.0,1312234 -3254136,1630363252,1,26,0,1,1630147434,1,1.0,60.0,2.0,16.0,4.0,1312235 -3254137,1630363128,1,31,0,1,1630147435,1,1.0,35.0,1.0,-9.0,4.0,1312236 -3254138,1630363268,1,31,0,1,1630147436,1,1.0,40.0,6.0,16.0,2.0,1312237 -3254139,1630363945,4,31,0,1,1630147437,1,6.0,-9.0,-9.0,-9.0,4.0,1312238 -3254140,1630363943,4,30,1,2,1630147437,2,1.0,20.0,1.0,16.0,4.0,1312238 -3254141,1630363947,4,2,2,3,1630147437,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312238 -3254142,1630363946,4,31,0,1,1630147438,1,6.0,-9.0,-9.0,-9.0,4.0,1312239 -3254143,1630363944,4,30,1,2,1630147438,2,1.0,20.0,1.0,16.0,4.0,1312239 -3254144,1630363948,4,2,2,3,1630147438,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312239 -3254145,1630363651,2,39,0,1,1630147439,2,6.0,-9.0,-9.0,-9.0,4.0,1312240 -3254146,1630363652,2,22,2,2,1630147439,2,1.0,40.0,1.0,-9.0,4.0,1312240 -3254147,1630363653,2,9,2,3,1630147439,1,-9.0,-9.0,-9.0,4.0,-9.0,1312240 -3254148,1630363958,4,28,0,1,1630147440,1,6.0,-9.0,-9.0,15.0,4.0,1312241 -3254149,1630363957,4,31,1,2,1630147440,2,1.0,40.0,1.0,16.0,4.0,1312241 -3254150,1630363959,4,1,2,3,1630147440,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312241 -3254151,1630363631,2,34,0,1,1630147441,2,1.0,40.0,1.0,-9.0,4.0,1312242 -3254152,1630363632,2,12,2,2,1630147441,2,-9.0,-9.0,-9.0,9.0,-9.0,1312242 -3254153,1630363633,2,7,2,3,1630147441,2,-9.0,-9.0,-9.0,4.0,-9.0,1312242 -3254154,1630363674,2,40,0,1,1630147442,2,1.0,40.0,1.0,-9.0,4.0,1312243 -3254155,1630363678,2,17,2,2,1630147442,2,6.0,-9.0,-9.0,14.0,4.0,1312243 -3254156,1630363676,2,12,2,3,1630147442,1,-9.0,-9.0,-9.0,9.0,-9.0,1312243 -3254157,1630363675,2,40,0,1,1630147443,2,1.0,40.0,1.0,-9.0,4.0,1312244 -3254158,1630363679,2,17,2,2,1630147443,2,6.0,-9.0,-9.0,14.0,4.0,1312244 -3254159,1630363677,2,12,2,3,1630147443,1,-9.0,-9.0,-9.0,9.0,-9.0,1312244 -3254160,1630363443,2,28,0,1,1630147444,2,1.0,40.0,1.0,-9.0,4.0,1312245 -3254161,1630363444,2,9,2,2,1630147444,1,-9.0,-9.0,-9.0,5.0,-9.0,1312245 -3254162,1630363445,2,7,2,3,1630147444,2,-9.0,-9.0,-9.0,3.0,-9.0,1312245 -3254163,1630363939,4,26,0,1,1630147445,2,6.0,-9.0,-9.0,-9.0,4.0,1312246 -3254164,1630363941,4,26,1,2,1630147445,1,1.0,40.0,1.0,16.0,4.0,1312246 -3254165,1630363940,4,26,0,1,1630147446,2,6.0,-9.0,-9.0,-9.0,4.0,1312247 -3254166,1630363942,4,26,1,2,1630147446,1,1.0,40.0,1.0,16.0,4.0,1312247 -3254167,1630363564,2,30,0,1,1630147447,2,1.0,15.0,4.0,-9.0,4.0,1312248 -3254168,1630363565,2,30,1,2,1630147447,1,6.0,-9.0,-9.0,-9.0,4.0,1312248 -3254169,1630363384,2,36,0,1,1630147448,2,1.0,25.0,1.0,-9.0,4.0,1312249 -3254170,1630363385,2,18,2,2,1630147448,1,6.0,-9.0,-9.0,14.0,4.0,1312249 -3254171,1630363599,2,29,0,1,1630147449,2,1.0,30.0,1.0,15.0,4.0,1312250 -3254172,1630363600,2,4,2,2,1630147449,2,-9.0,-9.0,-9.0,1.0,-9.0,1312250 -3254173,1630363534,2,43,0,1,1630147450,2,6.0,20.0,6.0,15.0,4.0,1312251 -3254174,1630363535,2,18,2,2,1630147450,1,2.0,20.0,4.0,14.0,4.0,1312251 -3254175,1630363255,1,57,0,1,1630147451,1,1.0,45.0,2.0,-9.0,4.0,1312252 -3254176,1630363340,2,64,0,1,1630147452,2,6.0,-9.0,-9.0,-9.0,4.0,1312253 -3254177,1630363836,2,47,0,1,1630147453,1,1.0,40.0,1.0,-9.0,4.0,1312254 -3254178,1630363776,2,47,0,1,1630147454,1,1.0,40.0,1.0,-9.0,4.0,1312255 -3254179,1630363370,2,59,0,1,1630147455,2,1.0,40.0,4.0,-9.0,4.0,1312256 -3254180,1630363777,2,47,0,1,1630147456,1,1.0,40.0,1.0,-9.0,4.0,1312257 -3254181,1630364013,4,51,0,1,1630147457,1,1.0,70.0,1.0,16.0,4.0,1312258 -3254182,1630363858,2,46,0,1,1630147458,1,1.0,40.0,1.0,-9.0,4.0,1312259 -3254183,1630363721,2,46,0,1,1630147459,1,1.0,45.0,1.0,-9.0,4.0,1312260 -3254184,1630363657,2,61,0,1,1630147460,2,1.0,40.0,1.0,-9.0,2.0,1312261 -3254185,1630363419,2,47,0,1,1630147461,2,1.0,30.0,1.0,-9.0,4.0,1312262 -3254186,1630363714,2,56,0,1,1630147462,2,1.0,40.0,1.0,-9.0,4.0,1312263 -3254187,1630363722,2,46,0,1,1630147463,1,1.0,45.0,1.0,-9.0,4.0,1312264 -3254188,1630363861,2,48,0,1,1630147464,1,1.0,48.0,1.0,-9.0,4.0,1312265 -3254189,1630363742,2,63,0,1,1630147465,1,1.0,24.0,1.0,-9.0,2.0,1312266 -3254190,1630363853,2,60,0,1,1630147466,1,1.0,45.0,1.0,-9.0,4.0,1312267 -3254191,1630363325,2,55,0,1,1630147467,2,1.0,40.0,1.0,-9.0,4.0,1312268 -3254192,1630363180,1,52,0,1,1630147468,1,1.0,40.0,1.0,-9.0,4.0,1312269 -3254193,1630363194,1,61,0,1,1630147469,1,1.0,50.0,3.0,-9.0,4.0,1312270 -3254194,1630363245,1,63,0,1,1630147470,1,1.0,40.0,1.0,-9.0,4.0,1312271 -3254195,1630363570,2,46,0,1,1630147471,2,1.0,40.0,1.0,-9.0,4.0,1312272 -3254196,1630363295,2,55,0,1,1630147472,2,1.0,40.0,1.0,-9.0,4.0,1312273 -3254197,1630363296,2,26,2,2,1630147472,1,3.0,1.0,6.0,15.0,4.0,1312273 -3254198,1630363297,2,19,2,3,1630147472,1,6.0,-9.0,-9.0,15.0,4.0,1312273 -3254199,1630363451,2,54,0,1,1630147473,2,6.0,-9.0,-9.0,15.0,4.0,1312274 -3254200,1630363452,2,25,2,2,1630147473,2,1.0,65.0,1.0,-9.0,4.0,1312274 -3254201,1630363453,2,19,2,3,1630147473,2,3.0,3.0,6.0,-9.0,4.0,1312274 -3254202,1630363532,2,55,0,1,1630147474,2,6.0,-9.0,-9.0,-9.0,4.0,1312275 -3254203,1630363533,2,66,1,2,1630147474,1,1.0,40.0,1.0,-9.0,4.0,1312275 -3254204,1630363825,2,60,0,1,1630147475,1,6.0,-9.0,-9.0,-9.0,4.0,1312276 -3254205,1630363826,2,58,5,2,1630147475,1,1.0,40.0,1.0,-9.0,2.0,1312276 -3254206,1630363319,2,53,0,1,1630147476,2,1.0,35.0,1.0,-9.0,4.0,1312277 -3254207,1630363380,2,58,0,1,1630147477,2,1.0,40.0,1.0,-9.0,4.0,1312278 -3254208,1630363381,2,21,2,2,1630147477,1,1.0,32.0,2.0,-9.0,4.0,1312278 -3254209,1630363382,2,58,13,3,1630147477,1,6.0,-9.0,-9.0,-9.0,2.0,1312278 -3254210,1630363993,4,45,0,1,1630147478,1,1.0,36.0,1.0,-9.0,4.0,1312279 -3254211,1630363994,4,45,0,1,1630147479,1,1.0,36.0,1.0,-9.0,4.0,1312280 -3254212,1630363995,4,45,0,1,1630147480,1,1.0,36.0,1.0,-9.0,4.0,1312281 -3254213,1630363996,4,45,0,1,1630147481,1,1.0,36.0,1.0,-9.0,4.0,1312282 -3254214,1630363467,2,58,0,1,1630147482,2,1.0,75.0,1.0,-9.0,4.0,1312283 -3254215,1630363813,2,45,0,1,1630147483,1,1.0,40.0,1.0,-9.0,4.0,1312284 -3254216,1630363317,2,61,0,1,1630147484,2,1.0,40.0,1.0,-9.0,4.0,1312285 -3254217,1630363781,2,62,0,1,1630147485,1,1.0,50.0,1.0,-9.0,2.0,1312286 -3254218,1630363819,2,61,0,1,1630147486,1,1.0,28.0,1.0,-9.0,4.0,1312287 -3254219,1630363103,1,48,0,1,1630147487,2,1.0,50.0,1.0,-9.0,4.0,1312288 -3254220,1630362980,1,55,0,1,1630147488,2,1.0,50.0,1.0,-9.0,4.0,1312289 -3254221,1630362981,1,55,0,1,1630147489,2,1.0,50.0,1.0,-9.0,4.0,1312290 -3254222,1630363132,1,63,0,1,1630147490,1,1.0,92.0,1.0,-9.0,4.0,1312291 -3254223,1630363388,2,64,0,1,1630147491,2,6.0,-9.0,-9.0,-9.0,4.0,1312292 -3254224,1630363394,2,67,1,2,1630147491,1,6.0,-9.0,-9.0,-9.0,4.0,1312292 -3254225,1630363391,2,33,2,3,1630147491,1,1.0,8.0,6.0,15.0,4.0,1312292 -3254226,1630363389,2,64,0,1,1630147492,2,6.0,-9.0,-9.0,-9.0,4.0,1312293 -3254227,1630363395,2,67,1,2,1630147492,1,6.0,-9.0,-9.0,-9.0,4.0,1312293 -3254228,1630363392,2,33,2,3,1630147492,1,1.0,8.0,6.0,15.0,4.0,1312293 -3254229,1630363390,2,64,0,1,1630147493,2,6.0,-9.0,-9.0,-9.0,4.0,1312294 -3254230,1630363396,2,67,1,2,1630147493,1,6.0,-9.0,-9.0,-9.0,4.0,1312294 -3254231,1630363393,2,33,2,3,1630147493,1,1.0,8.0,6.0,15.0,4.0,1312294 -3254232,1630363521,2,50,0,1,1630147494,2,1.0,40.0,1.0,-9.0,4.0,1312295 -3254233,1630363522,2,28,2,2,1630147494,2,1.0,35.0,1.0,-9.0,4.0,1312295 -3254234,1630363846,2,50,0,1,1630147495,1,6.0,-9.0,-9.0,-9.0,4.0,1312296 -3254235,1630363773,2,61,0,1,1630147496,1,6.0,-9.0,-9.0,-9.0,4.0,1312297 -3254236,1630363545,2,56,0,1,1630147497,2,6.0,-9.0,-9.0,-9.0,4.0,1312298 -3254237,1630363769,2,59,0,1,1630147498,1,6.0,-9.0,-9.0,-9.0,2.0,1312299 -3254238,1630363778,2,61,0,1,1630147499,1,6.0,32.0,6.0,15.0,4.0,1312300 -3254239,1630363324,2,46,0,1,1630147500,2,3.0,40.0,6.0,-9.0,4.0,1312301 -3254240,1630363694,2,59,0,1,1630147501,2,6.0,-9.0,-9.0,-9.0,4.0,1312302 -3254241,1630363802,2,62,0,1,1630147502,1,6.0,30.0,4.0,-9.0,4.0,1312303 -3254242,1630363759,2,49,0,1,1630147503,1,3.0,-9.0,-9.0,-9.0,4.0,1312304 -3254243,1630363771,2,58,0,1,1630147504,1,6.0,-9.0,-9.0,-9.0,4.0,1312305 -3254244,1630363318,2,57,0,1,1630147505,2,6.0,-9.0,-9.0,-9.0,4.0,1312306 -3254245,1630363720,2,55,0,1,1630147506,1,6.0,-9.0,-9.0,-9.0,4.0,1312307 -3254246,1630363862,2,50,0,1,1630147507,1,6.0,-9.0,-9.0,-9.0,4.0,1312308 -3254247,1630363772,2,58,0,1,1630147508,1,6.0,-9.0,-9.0,-9.0,4.0,1312309 -3254248,1630363416,2,55,0,1,1630147509,2,6.0,-9.0,-9.0,-9.0,4.0,1312310 -3254249,1630363770,2,59,0,1,1630147510,1,6.0,-9.0,-9.0,-9.0,2.0,1312311 -3254250,1630363730,2,53,0,1,1630147511,1,6.0,-9.0,-9.0,-9.0,4.0,1312312 -3254251,1630363636,2,57,0,1,1630147512,2,6.0,-9.0,-9.0,-9.0,4.0,1312313 -3254252,1630363749,2,55,0,1,1630147513,1,6.0,-9.0,-9.0,-9.0,2.0,1312314 -3254253,1630363315,2,61,0,1,1630147514,2,6.0,-9.0,-9.0,-9.0,4.0,1312315 -3254254,1630363779,2,61,0,1,1630147515,1,6.0,32.0,6.0,15.0,4.0,1312316 -3254255,1630363811,2,53,0,1,1630147516,1,6.0,-9.0,-9.0,-9.0,4.0,1312317 -3254256,1630363740,2,58,0,1,1630147517,1,6.0,-9.0,-9.0,-9.0,4.0,1312318 -3254257,1630363812,2,64,0,1,1630147518,1,6.0,-9.0,-9.0,-9.0,2.0,1312319 -3254258,1630363400,2,47,0,1,1630147519,2,6.0,-9.0,-9.0,-9.0,4.0,1312320 -3254259,1630363316,2,61,0,1,1630147520,2,6.0,-9.0,-9.0,-9.0,4.0,1312321 -3254260,1630363820,2,45,0,1,1630147521,1,6.0,-9.0,-9.0,-9.0,4.0,1312322 -3254261,1630363417,2,55,0,1,1630147522,2,6.0,-9.0,-9.0,-9.0,4.0,1312323 -3254262,1630363669,2,63,0,1,1630147523,2,6.0,-9.0,-9.0,-9.0,4.0,1312324 -3254263,1630363750,2,55,0,1,1630147524,1,6.0,-9.0,-9.0,-9.0,2.0,1312325 -3254264,1630363566,2,64,0,1,1630147525,2,6.0,-9.0,-9.0,-9.0,4.0,1312326 -3254265,1630363755,2,54,0,1,1630147526,1,6.0,-9.0,-9.0,-9.0,4.0,1312327 -3254266,1630363785,2,60,0,1,1630147527,1,6.0,-9.0,-9.0,-9.0,4.0,1312328 -3254267,1630363546,2,56,0,1,1630147528,2,6.0,-9.0,-9.0,-9.0,4.0,1312329 -3254268,1630363401,2,47,0,1,1630147529,2,6.0,-9.0,-9.0,-9.0,4.0,1312330 -3254269,1630363648,2,62,0,1,1630147530,2,6.0,-9.0,-9.0,-9.0,4.0,1312331 -3254270,1630363731,2,54,0,1,1630147531,1,6.0,20.0,4.0,-9.0,4.0,1312332 -3254271,1630363786,2,60,0,1,1630147532,1,6.0,-9.0,-9.0,-9.0,4.0,1312333 -3254272,1630362914,1,51,0,1,1630147533,2,6.0,-9.0,-9.0,-9.0,2.0,1312334 -3254273,1630363250,1,50,0,1,1630147534,1,3.0,-9.0,-9.0,-9.0,2.0,1312335 -3254274,1630363262,1,53,0,1,1630147535,1,6.0,8.0,6.0,-9.0,4.0,1312336 -3254275,1630363263,1,53,0,1,1630147536,1,6.0,8.0,6.0,-9.0,4.0,1312337 -3254276,1630363753,2,58,0,1,1630147537,1,6.0,-9.0,-9.0,-9.0,4.0,1312338 -3254277,1630363841,2,53,0,1,1630147538,1,6.0,-9.0,-9.0,-9.0,2.0,1312339 -3254278,1630363768,2,64,0,1,1630147539,1,6.0,-9.0,-9.0,-9.0,2.0,1312340 -3254279,1630363824,2,63,0,1,1630147540,1,6.0,-9.0,-9.0,-9.0,4.0,1312341 -3254280,1630363818,2,64,0,1,1630147541,1,6.0,-9.0,-9.0,-9.0,4.0,1312342 -3254281,1630363661,2,50,0,1,1630147542,2,3.0,-9.0,-9.0,15.0,4.0,1312343 -3254282,1630363623,2,49,0,1,1630147543,2,6.0,-9.0,-9.0,-9.0,4.0,1312344 -3254283,1630363627,2,30,12,2,1630147543,1,6.0,-9.0,-9.0,-9.0,4.0,1312344 -3254284,1630363575,2,57,0,1,1630147544,2,6.0,-9.0,-9.0,-9.0,4.0,1312345 -3254285,1630363577,2,38,2,2,1630147544,1,6.0,-9.0,-9.0,-9.0,4.0,1312345 -3254286,1630363579,2,20,2,3,1630147544,1,6.0,-9.0,-9.0,-9.0,4.0,1312345 -3254287,1630363576,2,57,0,1,1630147545,2,6.0,-9.0,-9.0,-9.0,4.0,1312346 -3254288,1630363578,2,38,2,2,1630147545,1,6.0,-9.0,-9.0,-9.0,4.0,1312346 -3254289,1630363580,2,20,2,3,1630147545,1,6.0,-9.0,-9.0,-9.0,4.0,1312346 -3254290,1630363408,2,55,0,1,1630147546,1,6.0,-9.0,-9.0,-9.0,4.0,1312347 -3254291,1630363407,2,48,15,2,1630147546,2,6.0,-9.0,-9.0,-9.0,4.0,1312347 -3254292,1630363665,2,63,0,1,1630147547,1,6.0,-9.0,-9.0,-9.0,2.0,1312348 -3254293,1630363664,2,41,13,2,1630147547,2,3.0,-9.0,-9.0,-9.0,4.0,1312348 -3254294,1630363548,2,53,0,1,1630147548,2,6.0,-9.0,-9.0,-9.0,4.0,1312349 -3254295,1630363549,2,52,1,2,1630147548,1,3.0,-9.0,-9.0,-9.0,4.0,1312349 -3254296,1630363727,2,60,0,1,1630147549,1,6.0,-9.0,-9.0,-9.0,4.0,1312350 -3254297,1630363728,2,45,15,2,1630147549,1,6.0,-9.0,-9.0,-9.0,4.0,1312350 -3254298,1630363584,2,56,0,1,1630147550,2,6.0,-9.0,-9.0,-9.0,4.0,1312351 -3254299,1630363585,2,21,2,2,1630147550,2,6.0,-9.0,-9.0,15.0,4.0,1312351 -3254300,1630363866,2,45,0,1,1630147551,1,1.0,12.0,5.0,-9.0,4.0,1312352 -3254301,1630363715,2,47,0,1,1630147552,2,1.0,40.0,1.0,-9.0,4.0,1312353 -3254302,1630363787,2,59,0,1,1630147553,1,1.0,40.0,1.0,-9.0,2.0,1312354 -3254303,1630363852,2,46,0,1,1630147554,1,1.0,32.0,6.0,-9.0,4.0,1312355 -3254304,1630363612,2,58,0,1,1630147555,2,1.0,40.0,1.0,-9.0,4.0,1312356 -3254305,1630363867,2,45,0,1,1630147556,1,1.0,12.0,5.0,-9.0,4.0,1312357 -3254306,1630363487,2,57,0,1,1630147557,2,1.0,40.0,1.0,-9.0,4.0,1312358 -3254307,1630363751,2,51,0,1,1630147558,1,1.0,20.0,1.0,-9.0,2.0,1312359 -3254308,1630363346,2,52,0,1,1630147559,2,1.0,40.0,1.0,-9.0,4.0,1312360 -3254309,1630363801,2,47,0,1,1630147560,1,1.0,32.0,1.0,-9.0,4.0,1312361 -3254310,1630363379,2,49,0,1,1630147561,2,1.0,30.0,1.0,13.0,4.0,1312362 -3254311,1630363598,2,64,0,1,1630147562,2,2.0,7.0,2.0,-9.0,4.0,1312363 -3254312,1630363827,2,48,0,1,1630147563,1,1.0,40.0,1.0,-9.0,4.0,1312364 -3254313,1630363399,2,59,0,1,1630147564,2,1.0,40.0,1.0,-9.0,4.0,1312365 -3254314,1630363442,2,58,0,1,1630147565,2,1.0,37.0,4.0,-9.0,4.0,1312366 -3254315,1630363705,2,45,0,1,1630147566,2,2.0,40.0,1.0,-9.0,4.0,1312367 -3254316,1630363803,2,54,0,1,1630147567,1,1.0,42.0,1.0,-9.0,4.0,1312368 -3254317,1630363780,2,54,0,1,1630147568,1,1.0,25.0,1.0,-9.0,4.0,1312369 -3254318,1630363987,4,63,0,1,1630147569,1,1.0,40.0,1.0,-9.0,4.0,1312370 -3254319,1630363988,4,63,0,1,1630147570,1,1.0,40.0,1.0,-9.0,4.0,1312371 -3254320,1630363837,2,47,0,1,1630147571,1,1.0,37.0,4.0,-9.0,4.0,1312372 -3254321,1630363845,2,45,0,1,1630147572,1,1.0,48.0,1.0,-9.0,4.0,1312373 -3254322,1630363876,2,58,0,1,1630147573,1,1.0,40.0,1.0,-9.0,4.0,1312374 -3254323,1630363838,2,47,0,1,1630147574,1,1.0,37.0,4.0,-9.0,4.0,1312375 -3254324,1630363711,2,48,0,1,1630147575,2,1.0,37.0,1.0,16.0,4.0,1312376 -3254325,1630363615,2,54,0,1,1630147576,2,1.0,40.0,5.0,-9.0,4.0,1312377 -3254326,1630363704,2,55,0,1,1630147577,2,2.0,40.0,4.0,-9.0,4.0,1312378 -3254327,1630363241,1,62,0,1,1630147578,1,1.0,31.0,1.0,-9.0,4.0,1312379 -3254328,1630363251,1,46,0,1,1630147579,1,1.0,43.0,1.0,-9.0,4.0,1312380 -3254329,1630363809,2,62,0,1,1630147580,1,1.0,45.0,1.0,-9.0,4.0,1312381 -3254330,1630363503,2,46,0,1,1630147581,2,1.0,40.0,5.0,-9.0,4.0,1312382 -3254331,1630363505,2,28,10,2,1630147581,1,6.0,-9.0,-9.0,-9.0,4.0,1312382 -3254332,1630363507,2,33,12,3,1630147581,1,6.0,-9.0,-9.0,-9.0,4.0,1312382 -3254333,1630363291,2,55,0,1,1630147582,1,1.0,20.0,5.0,-9.0,4.0,1312383 -3254334,1630363293,2,19,2,2,1630147582,1,3.0,-9.0,-9.0,-9.0,4.0,1312383 -3254335,1630363292,2,55,0,1,1630147583,1,1.0,20.0,5.0,-9.0,4.0,1312384 -3254336,1630363294,2,19,2,2,1630147583,1,3.0,-9.0,-9.0,-9.0,4.0,1312384 -3254337,1630363290,2,51,10,3,1630147583,2,6.0,-9.0,-9.0,-9.0,4.0,1312384 -3254338,1630363504,2,46,0,1,1630147584,2,1.0,40.0,5.0,-9.0,4.0,1312385 -3254339,1630363506,2,28,10,2,1630147584,1,6.0,-9.0,-9.0,-9.0,4.0,1312385 -3254340,1630363508,2,33,12,3,1630147584,1,6.0,-9.0,-9.0,-9.0,4.0,1312385 -3254341,1630363307,2,45,0,1,1630147585,2,1.0,13.0,5.0,-9.0,4.0,1312386 -3254342,1630363308,2,22,2,2,1630147585,2,6.0,-9.0,-9.0,15.0,4.0,1312386 -3254343,1630363309,2,22,2,3,1630147585,1,6.0,-9.0,-9.0,14.0,4.0,1312386 -3254344,1630363454,2,46,0,1,1630147586,2,1.0,38.0,1.0,-9.0,4.0,1312387 -3254345,1630363455,2,21,2,2,1630147586,1,6.0,-9.0,-9.0,-9.0,4.0,1312387 -3254346,1630363609,2,62,0,1,1630147587,2,3.0,40.0,6.0,-9.0,4.0,1312388 -3254347,1630363610,2,23,2,2,1630147587,2,1.0,23.0,5.0,-9.0,4.0,1312388 -3254348,1630363501,2,45,0,1,1630147588,2,1.0,20.0,1.0,-9.0,4.0,1312389 -3254349,1630363502,2,22,2,2,1630147588,1,3.0,40.0,6.0,-9.0,4.0,1312389 -3254350,1630363571,2,60,0,1,1630147589,2,6.0,-9.0,-9.0,-9.0,4.0,1312390 -3254351,1630363573,2,42,2,2,1630147589,1,1.0,40.0,6.0,15.0,4.0,1312390 -3254352,1630363572,2,60,0,1,1630147590,2,6.0,-9.0,-9.0,-9.0,4.0,1312391 -3254353,1630363574,2,42,2,2,1630147590,1,1.0,40.0,6.0,15.0,4.0,1312391 -3254354,1630363936,1,67,0,1,1630147591,1,1.0,40.0,1.0,-9.0,4.0,1312392 -3254355,1630362812,2,87,0,1,1630147592,2,6.0,-9.0,-9.0,-9.0,4.0,1312393 -3254356,1630362790,2,75,0,1,1630147593,2,6.0,-9.0,-9.0,-9.0,4.0,1312394 -3254357,1630362791,2,75,0,1,1630147594,2,6.0,-9.0,-9.0,-9.0,4.0,1312395 -3254358,1630362879,2,85,0,1,1630147595,2,6.0,-9.0,-9.0,-9.0,4.0,1312396 -3254359,1630362872,2,66,0,1,1630147596,2,6.0,-9.0,-9.0,-9.0,4.0,1312397 -3254360,1630362770,2,68,0,1,1630147597,2,6.0,-9.0,-9.0,-9.0,4.0,1312398 -3254361,1630362786,2,74,0,1,1630147598,2,6.0,-9.0,-9.0,-9.0,4.0,1312399 -3254362,1630362800,2,87,0,1,1630147599,2,6.0,-9.0,-9.0,-9.0,4.0,1312400 -3254363,1630363937,1,66,0,1,1630147600,1,6.0,-9.0,-9.0,-9.0,2.0,1312401 -3254364,1630362801,2,68,0,1,1630147601,2,6.0,40.0,2.0,-9.0,4.0,1312402 -3254365,1630362802,2,42,2,2,1630147601,1,6.0,-9.0,-9.0,-9.0,4.0,1312402 -3254366,1630362803,2,21,7,3,1630147601,1,6.0,-9.0,-9.0,-9.0,4.0,1312402 -3254367,1630362874,2,88,0,1,1630147602,2,6.0,-9.0,-9.0,-9.0,4.0,1312403 -3254368,1630362875,2,24,7,2,1630147602,1,6.0,-9.0,-9.0,-9.0,4.0,1312403 -3254369,1630362878,2,72,0,1,1630147603,2,1.0,40.0,1.0,-9.0,4.0,1312404 -3254370,1630363913,2,66,0,1,1630147604,1,1.0,30.0,1.0,-9.0,2.0,1312405 -3254371,1630363914,2,66,0,1,1630147605,1,1.0,30.0,1.0,-9.0,2.0,1312406 -3254372,1630362829,2,86,0,1,1630147606,2,6.0,-9.0,-9.0,-9.0,4.0,1312407 -3254373,1630362831,2,62,2,2,1630147606,2,1.0,15.0,3.0,-9.0,4.0,1312407 -3254374,1630362833,2,47,2,3,1630147606,1,3.0,8.0,1.0,-9.0,4.0,1312407 -3254375,1630363119,1,66,0,1,1630147607,1,1.0,50.0,6.0,-9.0,2.0,1312408 -3254376,1630363115,1,51,1,2,1630147607,2,6.0,-9.0,-9.0,-9.0,4.0,1312408 -3254377,1630363117,1,55,5,3,1630147607,1,6.0,-9.0,-9.0,-9.0,4.0,1312408 -3254378,1630363120,1,66,0,1,1630147608,1,1.0,50.0,6.0,-9.0,2.0,1312409 -3254379,1630363116,1,51,1,2,1630147608,2,6.0,-9.0,-9.0,-9.0,4.0,1312409 -3254380,1630363118,1,55,5,3,1630147608,1,6.0,-9.0,-9.0,-9.0,4.0,1312409 -3254381,1630362843,2,75,0,1,1630147609,2,1.0,20.0,1.0,-9.0,4.0,1312410 -3254382,1630362844,2,62,13,2,1630147609,2,6.0,-9.0,-9.0,-9.0,4.0,1312410 -3254383,1630362893,1,82,0,1,1630147610,1,1.0,48.0,1.0,-9.0,2.0,1312411 -3254384,1630362892,1,76,1,2,1630147610,2,1.0,48.0,1.0,-9.0,4.0,1312411 -3254385,1630363909,2,74,0,1,1630147611,1,6.0,-9.0,-9.0,-9.0,2.0,1312412 -3254386,1630362782,2,65,0,1,1630147612,2,6.0,30.0,5.0,-9.0,4.0,1312413 -3254387,1630363906,2,67,0,1,1630147613,1,1.0,50.0,1.0,-9.0,4.0,1312414 -3254388,1630363907,2,67,0,1,1630147614,1,1.0,50.0,1.0,-9.0,4.0,1312415 -3254389,1630363908,2,67,0,1,1630147615,1,1.0,50.0,1.0,-9.0,4.0,1312416 -3254390,1630362855,2,69,0,1,1630147616,2,1.0,37.0,1.0,-9.0,4.0,1312417 -3254391,1630363510,2,69,0,1,1630147617,1,6.0,12.0,6.0,-9.0,2.0,1312418 -3254392,1630363509,2,61,1,2,1630147617,2,1.0,45.0,1.0,-9.0,4.0,1312418 -3254393,1630362865,2,68,0,1,1630147618,2,3.0,40.0,3.0,-9.0,4.0,1312419 -3254394,1630362866,2,52,1,2,1630147618,1,1.0,40.0,1.0,-9.0,4.0,1312419 -3254395,1630362846,2,71,0,1,1630147619,2,6.0,-9.0,-9.0,-9.0,4.0,1312420 -3254396,1630362848,2,53,2,2,1630147619,1,1.0,60.0,1.0,-9.0,4.0,1312420 -3254397,1630362850,2,51,2,3,1630147619,1,1.0,40.0,1.0,-9.0,4.0,1312420 -3254398,1630362768,2,94,0,1,1630147620,2,6.0,-9.0,-9.0,-9.0,4.0,1312421 -3254399,1630362757,2,69,0,1,1630147621,2,6.0,-9.0,-9.0,-9.0,4.0,1312422 -3254400,1630363919,2,66,0,1,1630147622,1,6.0,-9.0,-9.0,-9.0,2.0,1312423 -3254401,1630363887,2,66,0,1,1630147623,1,6.0,-9.0,-9.0,-9.0,2.0,1312424 -3254402,1630363917,2,86,0,1,1630147624,1,6.0,-9.0,-9.0,-9.0,4.0,1312425 -3254403,1630363888,2,66,0,1,1630147625,1,6.0,-9.0,-9.0,-9.0,2.0,1312426 -3254404,1630363900,2,69,0,1,1630147626,1,6.0,-9.0,-9.0,-9.0,2.0,1312427 -3254405,1630362863,2,65,0,1,1630147627,2,6.0,-9.0,-9.0,-9.0,4.0,1312428 -3254406,1630363898,2,72,0,1,1630147628,1,3.0,-9.0,-9.0,15.0,2.0,1312429 -3254407,1630363882,2,71,0,1,1630147629,1,6.0,-9.0,-9.0,-9.0,4.0,1312430 -3254408,1630362814,2,72,0,1,1630147630,2,6.0,-9.0,-9.0,-9.0,4.0,1312431 -3254409,1630362856,2,78,0,1,1630147631,2,6.0,-9.0,-9.0,-9.0,4.0,1312432 -3254410,1630363899,2,75,0,1,1630147632,1,6.0,-9.0,-9.0,-9.0,4.0,1312433 -3254411,1630362806,2,74,0,1,1630147633,2,6.0,-9.0,-9.0,-9.0,4.0,1312434 -3254412,1630363904,2,66,0,1,1630147634,1,6.0,-9.0,-9.0,-9.0,4.0,1312435 -3254413,1630363920,2,66,0,1,1630147635,1,6.0,-9.0,-9.0,-9.0,2.0,1312436 -3254414,1630362773,2,82,0,1,1630147636,2,6.0,-9.0,-9.0,-9.0,4.0,1312437 -3254415,1630362804,2,66,0,1,1630147637,2,6.0,-9.0,-9.0,-9.0,4.0,1312438 -3254416,1630362821,2,78,0,1,1630147638,2,6.0,-9.0,-9.0,-9.0,4.0,1312439 -3254417,1630363918,2,76,0,1,1630147639,1,6.0,-9.0,-9.0,-9.0,4.0,1312440 -3254418,1630362817,2,70,0,1,1630147640,2,6.0,-9.0,-9.0,-9.0,4.0,1312441 -3254419,1630363889,2,66,0,1,1630147641,1,6.0,-9.0,-9.0,-9.0,2.0,1312442 -3254420,1630362818,2,70,0,1,1630147642,2,6.0,-9.0,-9.0,-9.0,4.0,1312443 -3254421,1630362854,2,73,0,1,1630147643,2,6.0,-9.0,-9.0,-9.0,4.0,1312444 -3254422,1630362852,2,65,0,1,1630147644,2,6.0,-9.0,-9.0,-9.0,4.0,1312445 -3254423,1630362823,2,67,0,1,1630147645,2,6.0,-9.0,-9.0,-9.0,4.0,1312446 -3254424,1630362787,2,88,0,1,1630147646,2,6.0,-9.0,-9.0,-9.0,4.0,1312447 -3254425,1630363883,2,71,0,1,1630147647,1,6.0,-9.0,-9.0,-9.0,4.0,1312448 -3254426,1630363910,2,66,0,1,1630147648,1,6.0,-9.0,-9.0,-9.0,4.0,1312449 -3254427,1630362822,2,78,0,1,1630147649,2,6.0,-9.0,-9.0,-9.0,4.0,1312450 -3254428,1630362828,2,78,0,1,1630147650,2,6.0,-9.0,-9.0,-9.0,4.0,1312451 -3254429,1630362775,2,71,0,1,1630147651,2,6.0,-9.0,-9.0,-9.0,4.0,1312452 -3254430,1630362776,2,71,0,1,1630147652,2,6.0,-9.0,-9.0,-9.0,4.0,1312453 -3254431,1630362824,2,67,0,1,1630147653,2,6.0,-9.0,-9.0,-9.0,4.0,1312454 -3254432,1630362777,2,71,0,1,1630147654,2,6.0,-9.0,-9.0,-9.0,4.0,1312455 -3254433,1630362838,2,69,0,1,1630147655,2,6.0,-9.0,-9.0,-9.0,4.0,1312456 -3254434,1630362845,2,67,0,1,1630147656,2,6.0,-9.0,-9.0,-9.0,4.0,1312457 -3254435,1630362788,2,88,0,1,1630147657,2,6.0,-9.0,-9.0,-9.0,4.0,1312458 -3254436,1630362853,2,65,0,1,1630147658,2,6.0,-9.0,-9.0,-9.0,4.0,1312459 -3254437,1630362813,2,94,0,1,1630147659,2,6.0,-9.0,-9.0,-9.0,4.0,1312460 -3254438,1630362873,2,65,0,1,1630147660,2,6.0,-9.0,-9.0,-9.0,4.0,1312461 -3254439,1630362819,2,70,0,1,1630147661,2,6.0,-9.0,-9.0,-9.0,4.0,1312462 -3254440,1630362772,2,65,0,1,1630147662,2,6.0,-9.0,-9.0,-9.0,4.0,1312463 -3254441,1630363901,2,75,0,1,1630147663,1,6.0,-9.0,-9.0,-9.0,2.0,1312464 -3254442,1630363905,2,67,0,1,1630147664,1,6.0,-9.0,-9.0,-9.0,4.0,1312465 -3254443,1630362807,2,74,0,1,1630147665,2,6.0,-9.0,-9.0,-9.0,4.0,1312466 -3254444,1630363892,2,79,0,1,1630147666,1,6.0,-9.0,-9.0,-9.0,2.0,1312467 -3254445,1630363916,2,82,0,1,1630147667,1,6.0,-9.0,-9.0,-9.0,2.0,1312468 -3254446,1630362864,2,88,0,1,1630147668,2,6.0,-9.0,-9.0,-9.0,4.0,1312469 -3254447,1630362876,2,73,0,1,1630147669,2,6.0,-9.0,-9.0,-9.0,4.0,1312470 -3254448,1630362774,2,68,0,1,1630147670,2,6.0,-9.0,-9.0,-9.0,4.0,1312471 -3254449,1630362771,2,70,0,1,1630147671,2,6.0,-9.0,-9.0,-9.0,4.0,1312472 -3254450,1630362781,2,68,0,1,1630147672,2,6.0,-9.0,-9.0,-9.0,4.0,1312473 -3254451,1630363911,2,66,0,1,1630147673,1,6.0,-9.0,-9.0,-9.0,4.0,1312474 -3254452,1630362760,2,81,0,1,1630147674,2,6.0,-9.0,-9.0,-9.0,4.0,1312475 -3254453,1630362839,2,69,0,1,1630147675,2,6.0,-9.0,-9.0,-9.0,4.0,1312476 -3254454,1630362820,2,65,0,1,1630147676,2,6.0,-9.0,-9.0,-9.0,4.0,1312477 -3254455,1630362789,2,71,0,1,1630147677,2,6.0,-9.0,-9.0,-9.0,4.0,1312478 -3254456,1630363915,2,70,0,1,1630147678,1,6.0,-9.0,-9.0,-9.0,3.0,1312479 -3254457,1630362769,2,94,0,1,1630147679,2,6.0,-9.0,-9.0,-9.0,4.0,1312480 -3254458,1630362796,2,73,0,1,1630147680,2,6.0,-9.0,-9.0,-9.0,4.0,1312481 -3254459,1630362895,1,76,0,1,1630147681,2,6.0,-9.0,-9.0,-9.0,4.0,1312482 -3254460,1630362882,1,69,0,1,1630147682,2,6.0,-9.0,-9.0,-9.0,4.0,1312483 -3254461,1630362884,1,65,0,1,1630147683,2,6.0,-9.0,-9.0,-9.0,4.0,1312484 -3254462,1630362883,1,69,0,1,1630147684,2,6.0,-9.0,-9.0,-9.0,4.0,1312485 -3254463,1630362894,1,67,0,1,1630147685,2,6.0,-9.0,-9.0,-9.0,4.0,1312486 -3254464,1630362891,1,67,0,1,1630147686,2,6.0,-9.0,-9.0,-9.0,4.0,1312487 -3254465,1630362885,1,65,0,1,1630147687,2,6.0,-9.0,-9.0,-9.0,4.0,1312488 -3254466,1630363902,2,84,0,1,1630147688,1,6.0,-9.0,-9.0,-9.0,4.0,1312489 -3254467,1630363890,2,70,0,1,1630147689,1,6.0,-9.0,-9.0,-9.0,4.0,1312490 -3254468,1630362762,2,80,0,1,1630147690,2,6.0,-9.0,-9.0,-9.0,4.0,1312491 -3254469,1630363891,2,70,0,1,1630147691,1,6.0,-9.0,-9.0,-9.0,4.0,1312492 -3254470,1630363903,2,84,0,1,1630147692,1,6.0,-9.0,-9.0,-9.0,4.0,1312493 -3254471,1630362756,2,76,0,1,1630147693,2,6.0,-9.0,-9.0,-9.0,4.0,1312494 -3254472,1630362808,2,69,0,1,1630147694,2,6.0,-9.0,-9.0,-9.0,4.0,1312495 -3254473,1630363895,2,66,0,1,1630147695,1,6.0,-9.0,-9.0,-9.0,4.0,1312496 -3254474,1630362767,2,66,0,1,1630147696,2,6.0,-9.0,-9.0,-9.0,4.0,1312497 -3254475,1630362763,2,80,0,1,1630147697,2,6.0,-9.0,-9.0,-9.0,4.0,1312498 -3254476,1630362805,2,85,0,1,1630147698,2,6.0,-9.0,-9.0,-9.0,4.0,1312499 -3254477,1630363896,2,66,0,1,1630147699,1,6.0,-9.0,-9.0,-9.0,4.0,1312500 -3254478,1630362811,2,77,0,1,1630147700,2,6.0,-9.0,-9.0,-9.0,4.0,1312501 -3254479,1630362780,2,84,0,1,1630147701,2,6.0,-9.0,-9.0,-9.0,4.0,1312502 -3254480,1630362797,2,65,0,1,1630147702,2,6.0,-9.0,-9.0,-9.0,4.0,1312503 -3254481,1630362764,2,80,0,1,1630147703,2,6.0,-9.0,-9.0,-9.0,4.0,1312504 -3254482,1630362857,2,87,0,1,1630147704,2,6.0,-9.0,-9.0,-9.0,4.0,1312505 -3254483,1630362859,2,57,2,2,1630147704,2,6.0,-9.0,-9.0,-9.0,4.0,1312505 -3254484,1630362861,2,53,2,3,1630147704,1,6.0,-9.0,-9.0,-9.0,4.0,1312505 -3254485,1630362858,2,87,0,1,1630147705,2,6.0,-9.0,-9.0,-9.0,4.0,1312506 -3254486,1630362860,2,57,2,2,1630147705,2,6.0,-9.0,-9.0,-9.0,4.0,1312506 -3254487,1630362862,2,53,2,3,1630147705,1,6.0,-9.0,-9.0,-9.0,4.0,1312506 -3254488,1630362778,2,71,0,1,1630147706,2,6.0,-9.0,-9.0,-9.0,4.0,1312507 -3254489,1630362779,2,74,1,2,1630147706,1,6.0,-9.0,-9.0,-9.0,4.0,1312507 -3254490,1630363352,2,77,0,1,1630147707,1,6.0,-9.0,-9.0,-9.0,2.0,1312508 -3254491,1630363350,2,62,1,2,1630147707,2,6.0,-9.0,-9.0,-9.0,4.0,1312508 -3254492,1630362793,2,76,0,1,1630147708,1,6.0,-9.0,-9.0,-9.0,2.0,1312509 -3254493,1630362792,2,68,1,2,1630147708,2,6.0,-9.0,-9.0,-9.0,4.0,1312509 -3254494,1630362758,2,73,0,1,1630147709,2,6.0,-9.0,-9.0,-9.0,4.0,1312510 -3254495,1630362759,2,43,2,2,1630147709,2,6.0,-9.0,-9.0,-9.0,4.0,1312510 -3254496,1630363353,2,77,0,1,1630147710,1,6.0,-9.0,-9.0,-9.0,2.0,1312511 -3254497,1630363351,2,62,1,2,1630147710,2,6.0,-9.0,-9.0,-9.0,4.0,1312511 -3254498,1630363641,2,66,0,1,1630147711,1,6.0,-9.0,-9.0,-9.0,2.0,1312512 -3254499,1630363640,2,63,1,2,1630147711,2,6.0,-9.0,-9.0,-9.0,4.0,1312512 -3254500,1630363894,2,66,0,1,1630147712,1,1.0,30.0,1.0,-9.0,4.0,1312513 -3254501,1630363880,2,66,0,1,1630147713,1,1.0,35.0,1.0,-9.0,4.0,1312514 -3254502,1630363881,2,66,0,1,1630147714,1,1.0,35.0,1.0,-9.0,4.0,1312515 -3254503,1630363884,2,72,0,1,1630147715,1,1.0,30.0,1.0,-9.0,4.0,1312516 -3254504,1630362825,2,94,0,1,1630147716,2,6.0,-9.0,-9.0,-9.0,4.0,1312517 -3254505,1630362826,2,65,2,2,1630147716,2,6.0,-9.0,-9.0,-9.0,4.0,1312517 -3254506,1630362827,2,44,7,3,1630147716,2,1.0,20.0,1.0,15.0,4.0,1312517 -3254507,1630364002,4,23,0,1,1630147717,1,1.0,80.0,1.0,-9.0,4.0,1312518 -3254508,1630364003,4,23,0,1,1630147718,1,1.0,80.0,1.0,-9.0,4.0,1312519 -3254509,1630364004,4,23,0,1,1630147719,1,1.0,80.0,1.0,-9.0,4.0,1312520 -3254510,1630364005,4,23,0,1,1630147720,1,1.0,80.0,1.0,-9.0,4.0,1312521 -3254511,1630363807,2,20,0,1,1630147721,1,1.0,40.0,1.0,-9.0,4.0,1312522 -3254512,1630363832,2,23,0,1,1630147722,1,1.0,40.0,3.0,-9.0,4.0,1312523 -3254513,1630363220,1,23,0,1,1630147723,1,1.0,40.0,1.0,-9.0,4.0,1312524 -3254514,1630363129,1,24,0,1,1630147724,1,1.0,45.0,1.0,-9.0,4.0,1312525 -3254515,1630363130,1,24,0,1,1630147725,1,1.0,45.0,1.0,-9.0,4.0,1312526 -3254516,1630362929,1,24,0,1,1630147726,2,1.0,40.0,1.0,-9.0,4.0,1312527 -3254517,1630362932,1,26,1,2,1630147726,1,6.0,40.0,6.0,16.0,4.0,1312527 -3254518,1630362930,1,24,0,1,1630147727,2,1.0,40.0,1.0,-9.0,4.0,1312528 -3254519,1630362933,1,26,1,2,1630147727,1,6.0,40.0,6.0,16.0,4.0,1312528 -3254520,1630363762,2,21,0,1,1630147728,1,1.0,48.0,1.0,-9.0,4.0,1312529 -3254521,1630363764,2,24,15,2,1630147728,1,6.0,-9.0,-9.0,-9.0,4.0,1312529 -3254522,1630363763,2,21,0,1,1630147729,1,1.0,48.0,1.0,-9.0,4.0,1312530 -3254523,1630363765,2,24,15,2,1630147729,1,6.0,-9.0,-9.0,-9.0,4.0,1312530 -3254524,1630363002,1,23,0,1,1630147730,1,1.0,35.0,1.0,16.0,4.0,1312531 -3254525,1630363006,4,22,11,2,1630147730,2,1.0,35.0,1.0,-9.0,4.0,1312531 -3254526,1630362998,1,22,11,3,1630147730,2,1.0,25.0,4.0,15.0,4.0,1312531 -3254527,1630363003,1,23,0,1,1630147731,1,1.0,35.0,1.0,16.0,4.0,1312532 -3254528,1630363007,4,22,11,2,1630147731,2,1.0,35.0,1.0,-9.0,4.0,1312532 -3254529,1630362999,1,22,11,3,1630147731,2,1.0,25.0,4.0,15.0,4.0,1312532 -3254530,1630363004,1,23,0,1,1630147732,1,1.0,35.0,1.0,16.0,4.0,1312533 -3254531,1630363008,4,22,11,2,1630147732,2,1.0,35.0,1.0,-9.0,4.0,1312533 -3254532,1630363000,1,22,11,3,1630147732,2,1.0,25.0,4.0,15.0,4.0,1312533 -3254533,1630362915,1,22,0,1,1630147733,2,1.0,45.0,4.0,-9.0,4.0,1312534 -3254534,1630362918,1,24,12,2,1630147733,2,1.0,50.0,1.0,-9.0,4.0,1312534 -3254535,1630362921,1,21,12,3,1630147733,2,1.0,35.0,3.0,-9.0,4.0,1312534 -3254536,1630362916,1,22,0,1,1630147734,2,1.0,45.0,4.0,-9.0,4.0,1312535 -3254537,1630362919,1,24,12,2,1630147734,2,1.0,50.0,1.0,-9.0,4.0,1312535 -3254538,1630362922,1,21,12,3,1630147734,2,1.0,35.0,3.0,-9.0,4.0,1312535 -3254539,1630363175,1,24,0,1,1630147735,1,1.0,55.0,1.0,-9.0,4.0,1312536 -3254540,1630362974,1,24,0,1,1630147736,2,1.0,50.0,1.0,-9.0,4.0,1312537 -3254541,1630363176,1,24,0,1,1630147737,1,1.0,55.0,1.0,-9.0,4.0,1312538 -3254542,1630362975,1,24,0,1,1630147738,2,1.0,50.0,1.0,-9.0,4.0,1312539 -3254543,1630363177,1,24,0,1,1630147739,1,1.0,55.0,1.0,-9.0,4.0,1312540 -3254544,1630363178,1,24,0,1,1630147740,1,1.0,55.0,1.0,-9.0,4.0,1312541 -3254545,1630363179,1,24,0,1,1630147741,1,1.0,55.0,1.0,-9.0,4.0,1312542 -3254546,1630362967,1,22,0,1,1630147742,2,2.0,40.0,1.0,16.0,4.0,1312543 -3254547,1630362969,1,27,13,2,1630147742,1,1.0,60.0,1.0,-9.0,4.0,1312543 -3254548,1630363121,1,24,0,1,1630147743,2,1.0,40.0,1.0,15.0,4.0,1312544 -3254549,1630363124,1,31,13,2,1630147743,1,1.0,20.0,1.0,16.0,4.0,1312544 -3254550,1630363213,1,24,0,1,1630147744,1,1.0,40.0,1.0,-9.0,4.0,1312545 -3254551,1630363215,1,24,12,2,1630147744,1,1.0,40.0,1.0,-9.0,4.0,1312545 -3254552,1630363122,1,24,0,1,1630147745,2,1.0,40.0,1.0,15.0,4.0,1312546 -3254553,1630363125,1,31,13,2,1630147745,1,1.0,20.0,1.0,16.0,4.0,1312546 -3254554,1630363214,1,24,0,1,1630147746,1,1.0,40.0,1.0,-9.0,4.0,1312547 -3254555,1630363216,1,24,12,2,1630147746,1,1.0,40.0,1.0,-9.0,4.0,1312547 -3254556,1630363123,1,24,0,1,1630147747,2,1.0,40.0,1.0,15.0,4.0,1312548 -3254557,1630363126,1,31,13,2,1630147747,1,1.0,20.0,1.0,16.0,4.0,1312548 -3254558,1630363734,2,23,0,1,1630147748,1,6.0,-9.0,-9.0,-9.0,4.0,1312549 -3254559,1630363735,2,23,0,1,1630147749,1,6.0,-9.0,-9.0,-9.0,4.0,1312550 -3254560,1630363338,2,22,0,1,1630147750,2,6.0,40.0,1.0,-9.0,4.0,1312551 -3254561,1630363339,2,22,0,1,1630147751,2,6.0,40.0,1.0,-9.0,4.0,1312552 -3254562,1630363190,1,24,0,1,1630147752,1,3.0,20.0,5.0,-9.0,4.0,1312553 -3254563,1630363191,1,24,0,1,1630147753,1,3.0,20.0,5.0,-9.0,4.0,1312554 -3254564,1630363127,1,24,0,1,1630147754,2,6.0,-9.0,-9.0,16.0,4.0,1312555 -3254565,1630363716,2,23,0,1,1630147755,2,6.0,-9.0,-9.0,-9.0,4.0,1312556 -3254566,1630363189,1,24,0,1,1630147756,1,6.0,24.0,3.0,16.0,4.0,1312557 -3254567,1630363246,1,20,0,1,1630147757,1,6.0,35.0,5.0,15.0,4.0,1312558 -3254568,1630363032,1,24,0,1,1630147758,2,6.0,-9.0,-9.0,16.0,4.0,1312559 -3254569,1630363033,1,24,0,1,1630147759,2,6.0,-9.0,-9.0,16.0,4.0,1312560 -3254570,1630363025,1,24,0,1,1630147760,2,6.0,40.0,6.0,16.0,4.0,1312561 -3254571,1630363224,1,24,0,1,1630147761,1,3.0,50.0,5.0,-9.0,4.0,1312562 -3254572,1630363475,2,20,0,1,1630147762,2,6.0,-9.0,-9.0,-9.0,4.0,1312563 -3254573,1630363477,2,1,2,2,1630147762,2,-9.0,-9.0,-9.0,-9.0,-9.0,1312563 -3254574,1630363476,2,25,12,3,1630147762,1,3.0,-9.0,-9.0,-9.0,4.0,1312563 -3254575,1630363926,4,23,0,1,1630147763,2,6.0,-9.0,-9.0,16.0,4.0,1312564 -3254576,1630363931,4,24,15,2,1630147763,2,6.0,-9.0,-9.0,16.0,4.0,1312564 -3254577,1630363921,4,24,15,3,1630147763,2,6.0,-9.0,-9.0,16.0,4.0,1312564 -3254578,1630363927,4,23,0,1,1630147764,2,6.0,-9.0,-9.0,16.0,4.0,1312565 -3254579,1630363932,4,24,15,2,1630147764,2,6.0,-9.0,-9.0,16.0,4.0,1312565 -3254580,1630363922,4,24,15,3,1630147764,2,6.0,-9.0,-9.0,16.0,4.0,1312565 -3254581,1630363928,4,23,0,1,1630147765,2,6.0,-9.0,-9.0,16.0,4.0,1312566 -3254582,1630363933,4,24,15,2,1630147765,2,6.0,-9.0,-9.0,16.0,4.0,1312566 -3254583,1630363923,4,24,15,3,1630147765,2,6.0,-9.0,-9.0,16.0,4.0,1312566 -3254584,1630363929,4,23,0,1,1630147766,2,6.0,-9.0,-9.0,16.0,4.0,1312567 -3254585,1630363934,4,24,15,2,1630147766,2,6.0,-9.0,-9.0,16.0,4.0,1312567 -3254586,1630363924,4,24,15,3,1630147766,2,6.0,-9.0,-9.0,16.0,4.0,1312567 -3254587,1630363066,1,21,0,1,1630147767,2,6.0,10.0,5.0,16.0,4.0,1312568 -3254588,1630363067,1,20,12,2,1630147767,2,6.0,20.0,4.0,15.0,4.0,1312568 -3254589,1630363461,2,23,0,1,1630147768,2,3.0,20.0,6.0,15.0,4.0,1312569 -3254590,1630363462,2,2,2,2,1630147768,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312569 -3254591,1630363088,1,22,0,1,1630147769,2,6.0,-9.0,-9.0,16.0,4.0,1312570 -3254592,1630363090,1,22,11,2,1630147769,2,6.0,-9.0,-9.0,16.0,4.0,1312570 -3254593,1630363848,2,19,0,1,1630147770,1,1.0,50.0,1.0,-9.0,4.0,1312571 -3254594,1630363849,2,19,0,1,1630147771,1,1.0,50.0,1.0,-9.0,4.0,1312572 -3254595,1630363864,2,22,0,1,1630147772,1,1.0,20.0,6.0,-9.0,4.0,1312573 -3254596,1630363850,2,19,0,1,1630147773,1,1.0,50.0,1.0,-9.0,4.0,1312574 -3254597,1630363541,2,20,0,1,1630147774,2,1.0,16.0,6.0,-9.0,4.0,1312575 -3254598,1630363655,2,24,0,1,1630147775,2,1.0,35.0,1.0,-9.0,4.0,1312576 -3254599,1630363542,2,20,0,1,1630147776,2,1.0,16.0,6.0,-9.0,4.0,1312577 -3254600,1630363544,2,23,0,1,1630147777,2,1.0,32.0,1.0,-9.0,4.0,1312578 -3254601,1630363253,1,22,0,1,1630147778,1,1.0,15.0,1.0,15.0,4.0,1312579 -3254602,1630363157,1,20,0,1,1630147779,1,1.0,40.0,5.0,15.0,4.0,1312580 -3254603,1630363158,1,20,0,1,1630147780,1,1.0,40.0,5.0,15.0,4.0,1312581 -3254604,1630363159,1,20,0,1,1630147781,1,1.0,40.0,5.0,15.0,4.0,1312582 -3254605,1630363254,1,22,0,1,1630147782,1,1.0,15.0,1.0,15.0,4.0,1312583 -3254606,1630363961,4,22,0,1,1630147783,2,1.0,25.0,1.0,15.0,4.0,1312584 -3254607,1630363962,4,22,0,1,1630147784,2,1.0,25.0,1.0,15.0,4.0,1312585 -3254608,1630363963,4,22,0,1,1630147785,2,1.0,25.0,1.0,15.0,4.0,1312586 -3254609,1630363602,2,22,0,1,1630147786,2,1.0,40.0,1.0,-9.0,4.0,1312587 -3254610,1630363594,2,20,0,1,1630147787,2,1.0,40.0,1.0,-9.0,4.0,1312588 -3254611,1630363756,2,24,0,1,1630147788,1,1.0,40.0,1.0,-9.0,4.0,1312589 -3254612,1630363038,1,24,0,1,1630147789,2,1.0,24.0,1.0,-9.0,4.0,1312590 -3254613,1630363138,1,22,0,1,1630147790,1,1.0,40.0,3.0,-9.0,4.0,1312591 -3254614,1630363229,1,23,0,1,1630147791,1,1.0,40.0,3.0,15.0,4.0,1312592 -3254615,1630363064,1,21,0,1,1630147792,2,1.0,25.0,1.0,-9.0,4.0,1312593 -3254616,1630363139,1,22,0,1,1630147793,1,1.0,40.0,3.0,-9.0,4.0,1312594 -3254617,1630363065,1,21,0,1,1630147794,2,1.0,25.0,1.0,-9.0,4.0,1312595 -3254618,1630363140,1,22,0,1,1630147795,1,1.0,40.0,3.0,-9.0,4.0,1312596 -3254619,1630363230,1,23,0,1,1630147796,1,1.0,40.0,3.0,15.0,4.0,1312597 -3254620,1630363877,2,23,0,1,1630147797,1,1.0,40.0,1.0,-9.0,4.0,1312598 -3254621,1630363706,2,23,0,1,1630147798,2,1.0,40.0,1.0,15.0,4.0,1312599 -3254622,1630363481,2,20,0,1,1630147799,2,3.0,48.0,6.0,15.0,4.0,1312600 -3254623,1630363485,2,0,2,2,1630147799,2,-9.0,-9.0,-9.0,-9.0,-9.0,1312600 -3254624,1630363483,2,24,15,3,1630147799,1,1.0,30.0,1.0,-9.0,4.0,1312600 -3254625,1630363357,2,24,0,1,1630147800,2,3.0,-9.0,-9.0,15.0,4.0,1312601 -3254626,1630363361,2,24,1,2,1630147800,1,6.0,-9.0,-9.0,15.0,4.0,1312601 -3254627,1630363359,2,59,6,3,1630147800,2,1.0,25.0,1.0,-9.0,4.0,1312601 -3254628,1630363358,2,24,0,1,1630147801,2,3.0,-9.0,-9.0,15.0,4.0,1312602 -3254629,1630363362,2,24,1,2,1630147801,1,6.0,-9.0,-9.0,15.0,4.0,1312602 -3254630,1630363360,2,59,6,3,1630147801,2,1.0,25.0,1.0,-9.0,4.0,1312602 -3254631,1630363163,1,19,0,1,1630147802,1,6.0,-9.0,-9.0,15.0,4.0,1312603 -3254632,1630363167,1,19,12,2,1630147802,1,1.0,30.0,1.0,15.0,4.0,1312603 -3254633,1630363171,1,19,12,3,1630147802,1,6.0,-9.0,-9.0,15.0,4.0,1312603 -3254634,1630363164,1,19,0,1,1630147803,1,6.0,-9.0,-9.0,15.0,4.0,1312604 -3254635,1630363168,1,19,12,2,1630147803,1,1.0,30.0,1.0,15.0,4.0,1312604 -3254636,1630363172,1,19,12,3,1630147803,1,6.0,-9.0,-9.0,15.0,4.0,1312604 -3254637,1630363165,1,19,0,1,1630147804,1,6.0,-9.0,-9.0,15.0,4.0,1312605 -3254638,1630363169,1,19,12,2,1630147804,1,1.0,30.0,1.0,15.0,4.0,1312605 -3254639,1630363173,1,19,12,3,1630147804,1,6.0,-9.0,-9.0,15.0,4.0,1312605 -3254640,1630363561,2,23,0,1,1630147805,2,1.0,23.0,6.0,15.0,4.0,1312606 -3254641,1630363562,2,6,2,2,1630147805,1,-9.0,-9.0,-9.0,3.0,-9.0,1312606 -3254642,1630363563,2,2,2,3,1630147805,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312606 -3254643,1630363488,2,23,0,1,1630147806,2,1.0,40.0,1.0,-9.0,4.0,1312607 -3254644,1630363491,2,6,2,2,1630147806,1,-9.0,-9.0,-9.0,3.0,-9.0,1312607 -3254645,1630363494,2,3,2,3,1630147806,2,-9.0,-9.0,-9.0,1.0,-9.0,1312607 -3254646,1630363489,2,23,0,1,1630147807,2,1.0,40.0,1.0,-9.0,4.0,1312608 -3254647,1630363492,2,6,2,2,1630147807,1,-9.0,-9.0,-9.0,3.0,-9.0,1312608 -3254648,1630363495,2,3,2,3,1630147807,2,-9.0,-9.0,-9.0,1.0,-9.0,1312608 -3254649,1630363374,2,22,0,1,1630147808,2,1.0,45.0,4.0,-9.0,4.0,1312609 -3254650,1630363375,2,2,2,2,1630147808,2,-9.0,-9.0,-9.0,-9.0,-9.0,1312609 -3254651,1630363376,2,1,2,3,1630147808,2,-9.0,-9.0,-9.0,-9.0,-9.0,1312609 -3254652,1630363270,1,21,0,1,1630147809,1,1.0,20.0,3.0,15.0,4.0,1312610 -3254653,1630363275,1,22,12,2,1630147809,1,6.0,-9.0,-9.0,15.0,4.0,1312610 -3254654,1630363280,1,21,12,3,1630147809,1,6.0,20.0,5.0,15.0,4.0,1312610 -3254655,1630363145,1,20,0,1,1630147810,1,1.0,5.0,3.0,15.0,4.0,1312611 -3254656,1630363148,1,23,12,2,1630147810,1,6.0,40.0,6.0,15.0,4.0,1312611 -3254657,1630363151,1,20,12,3,1630147810,1,6.0,40.0,6.0,15.0,4.0,1312611 -3254658,1630363271,1,21,0,1,1630147811,1,1.0,20.0,3.0,15.0,4.0,1312612 -3254659,1630363276,1,22,12,2,1630147811,1,6.0,-9.0,-9.0,15.0,4.0,1312612 -3254660,1630363281,1,21,12,3,1630147811,1,6.0,20.0,5.0,15.0,4.0,1312612 -3254661,1630363272,1,21,0,1,1630147812,1,1.0,20.0,3.0,15.0,4.0,1312613 -3254662,1630363277,1,22,12,2,1630147812,1,6.0,-9.0,-9.0,15.0,4.0,1312613 -3254663,1630363282,1,21,12,3,1630147812,1,6.0,20.0,5.0,15.0,4.0,1312613 -3254664,1630363273,1,21,0,1,1630147813,1,1.0,20.0,3.0,15.0,4.0,1312614 -3254665,1630363278,1,22,12,2,1630147813,1,6.0,-9.0,-9.0,15.0,4.0,1312614 -3254666,1630363283,1,21,12,3,1630147813,1,6.0,20.0,5.0,15.0,4.0,1312614 -3254667,1630363274,1,21,0,1,1630147814,1,1.0,20.0,3.0,15.0,4.0,1312615 -3254668,1630363279,1,22,12,2,1630147814,1,6.0,-9.0,-9.0,15.0,4.0,1312615 -3254669,1630363284,1,21,12,3,1630147814,1,6.0,20.0,5.0,15.0,4.0,1312615 -3254670,1630363146,1,20,0,1,1630147815,1,1.0,5.0,3.0,15.0,4.0,1312616 -3254671,1630363149,1,23,12,2,1630147815,1,6.0,40.0,6.0,15.0,4.0,1312616 -3254672,1630363152,1,20,12,3,1630147815,1,6.0,40.0,6.0,15.0,4.0,1312616 -3254673,1630363147,1,20,0,1,1630147816,1,1.0,5.0,3.0,15.0,4.0,1312617 -3254674,1630363150,1,23,12,2,1630147816,1,6.0,40.0,6.0,15.0,4.0,1312617 -3254675,1630363153,1,20,12,3,1630147816,1,6.0,40.0,6.0,15.0,4.0,1312617 -3254676,1630363412,2,24,0,1,1630147817,1,1.0,42.0,1.0,-9.0,4.0,1312618 -3254677,1630363410,2,24,1,2,1630147817,2,6.0,-9.0,-9.0,-9.0,4.0,1312618 -3254678,1630363099,1,20,0,1,1630147818,2,6.0,15.0,6.0,15.0,4.0,1312619 -3254679,1630363101,1,19,12,2,1630147818,2,1.0,30.0,1.0,15.0,4.0,1312619 -3254680,1630363100,1,20,0,1,1630147819,2,6.0,15.0,6.0,15.0,4.0,1312620 -3254681,1630363102,1,19,12,2,1630147819,2,1.0,30.0,1.0,15.0,4.0,1312620 -3254682,1630363606,2,22,0,1,1630147820,2,1.0,40.0,6.0,-9.0,4.0,1312621 -3254683,1630363607,2,0,2,2,1630147820,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312621 -3254684,1630363663,2,24,0,1,1630147821,1,1.0,20.0,1.0,16.0,4.0,1312622 -3254685,1630363662,2,24,13,2,1630147821,2,6.0,-9.0,-9.0,16.0,4.0,1312622 -3254686,1630362982,1,20,0,1,1630147822,2,1.0,30.0,3.0,15.0,4.0,1312623 -3254687,1630362984,1,21,12,2,1630147822,2,6.0,30.0,4.0,15.0,4.0,1312623 -3254688,1630362983,1,20,0,1,1630147823,2,1.0,30.0,3.0,15.0,4.0,1312624 -3254689,1630362985,1,21,12,2,1630147823,2,6.0,30.0,4.0,15.0,4.0,1312624 -3254690,1630362951,1,24,0,1,1630147824,1,1.0,35.0,1.0,-9.0,4.0,1312625 -3254691,1630363109,1,22,0,1,1630147825,2,1.0,20.0,1.0,15.0,4.0,1312626 -3254692,1630363111,1,18,5,2,1630147825,2,1.0,40.0,6.0,15.0,4.0,1312626 -3254693,1630363113,1,23,12,3,1630147825,2,1.0,15.0,3.0,15.0,4.0,1312626 -3254694,1630363110,1,22,0,1,1630147826,2,1.0,20.0,1.0,15.0,4.0,1312627 -3254695,1630363112,1,18,5,2,1630147826,2,1.0,40.0,6.0,15.0,4.0,1312627 -3254696,1630363114,1,23,12,3,1630147826,2,1.0,15.0,3.0,15.0,4.0,1312627 -3254697,1630362896,1,22,0,1,1630147827,2,1.0,30.0,4.0,-9.0,4.0,1312628 -3254698,1630362897,1,27,13,2,1630147827,1,1.0,40.0,3.0,-9.0,4.0,1312628 -3254699,1630363137,4,29,0,1,1630147828,2,1.0,80.0,1.0,-9.0,4.0,1312629 -3254700,1630363135,1,26,13,2,1630147828,1,3.0,40.0,4.0,16.0,4.0,1312629 -3254701,1630362888,1,72,0,1,1630147829,2,1.0,15.0,3.0,-9.0,4.0,1312630 -3254702,1630363726,2,55,0,1,1630147830,1,6.0,-9.0,-9.0,-9.0,4.0,1312631 -3254703,1630363992,4,27,0,1,1630147831,1,1.0,40.0,1.0,-9.0,4.0,1312632 -3254704,1630363588,2,26,0,1,1630147832,2,3.0,9.0,6.0,-9.0,4.0,1312633 -3254705,1630363589,2,8,2,2,1630147832,1,-9.0,-9.0,-9.0,4.0,-9.0,1312633 -3254706,1630363590,2,1,2,3,1630147832,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312633 -3254707,1630363873,2,58,0,1,1630147833,1,1.0,50.0,3.0,-9.0,4.0,1312634 -3254708,1630363874,2,28,2,2,1630147833,1,3.0,35.0,4.0,-9.0,4.0,1312634 -3254709,1630363875,2,32,11,3,1630147833,1,1.0,30.0,3.0,-9.0,4.0,1312634 -3254710,1630362809,2,85,0,1,1630147834,2,6.0,-9.0,-9.0,15.0,4.0,1312635 -3254711,1630362810,2,25,7,2,1630147834,2,1.0,45.0,1.0,-9.0,4.0,1312635 -3254712,1630362996,1,23,0,1,1630147835,2,1.0,45.0,1.0,-9.0,4.0,1312636 -3254713,1630362997,1,23,12,2,1630147835,2,1.0,24.0,1.0,-9.0,4.0,1312636 -3254714,1630363737,2,61,0,1,1630147836,1,1.0,40.0,1.0,-9.0,4.0,1312637 -3254715,1630363738,2,51,10,2,1630147836,1,6.0,-9.0,-9.0,-9.0,4.0,1312637 -3254716,1630363469,2,41,0,1,1630147837,2,2.0,40.0,1.0,-9.0,4.0,1312638 -3254717,1630363470,2,17,2,2,1630147837,2,6.0,30.0,6.0,14.0,4.0,1312638 -3254718,1630363209,1,33,0,1,1630147838,1,1.0,50.0,1.0,-9.0,4.0,1312639 -3254719,1630363210,2,33,12,2,1630147838,1,1.0,50.0,1.0,-9.0,4.0,1312639 -3254720,1630363760,2,36,0,1,1630147839,1,1.0,46.0,1.0,-9.0,4.0,1312640 -3254721,1630363761,2,70,6,2,1630147839,1,6.0,-9.0,-9.0,-9.0,4.0,1312640 -3254722,1630363332,2,44,0,1,1630147840,2,1.0,38.0,1.0,-9.0,4.0,1312641 -3254723,1630363333,2,14,2,2,1630147840,1,-9.0,-9.0,-9.0,11.0,-9.0,1312641 -3254724,1630363334,2,5,2,3,1630147840,2,-9.0,-9.0,-9.0,1.0,-9.0,1312641 -3254725,1630363052,1,37,0,1,1630147841,2,6.0,-9.0,-9.0,16.0,4.0,1312642 -3254726,1630363775,2,49,0,1,1630147842,1,1.0,36.0,1.0,-9.0,4.0,1312643 -3254727,1630362887,1,69,0,1,1630147843,2,6.0,-9.0,-9.0,-9.0,4.0,1312644 -3254728,1630363739,2,29,0,1,1630147844,1,1.0,40.0,1.0,-9.0,4.0,1312645 -3254729,1630363256,1,50,0,1,1630147845,1,1.0,40.0,1.0,-9.0,4.0,1312646 -3254730,1630363287,1,29,0,1,1630147846,1,1.0,35.0,1.0,-9.0,4.0,1312647 -3254731,1630363621,2,45,0,1,1630147847,2,1.0,45.0,1.0,15.0,4.0,1312648 -3254732,1630363622,2,18,2,2,1630147847,1,1.0,40.0,1.0,-9.0,4.0,1312648 -3254733,1630363242,1,62,0,1,1630147848,1,1.0,31.0,1.0,-9.0,4.0,1312649 -3254734,1630363186,1,29,0,1,1630147849,1,1.0,40.0,1.0,-9.0,2.0,1312650 -3254735,1630363238,1,45,0,1,1630147850,1,1.0,50.0,1.0,-9.0,4.0,1312651 -3254736,1630363310,2,58,0,1,1630147851,2,1.0,35.0,1.0,-9.0,4.0,1312652 -3254737,1630363311,2,61,10,2,1630147851,1,6.0,-9.0,-9.0,-9.0,4.0,1312652 -3254738,1630363938,1,68,0,1,1630147852,1,1.0,60.0,1.0,-9.0,4.0,1312653 -3254739,1630363305,2,53,0,1,1630147853,2,1.0,98.0,1.0,-9.0,4.0,1312654 -3254740,1630363306,2,58,1,2,1630147853,1,6.0,-9.0,-9.0,-9.0,4.0,1312654 -3254741,1630363181,1,24,0,1,1630147854,1,3.0,47.0,3.0,15.0,4.0,1312655 -3254742,1630363014,1,23,0,1,1630147855,2,1.0,60.0,4.0,16.0,4.0,1312656 -3254743,1630363015,1,22,12,2,1630147855,2,1.0,40.0,1.0,-9.0,4.0,1312656 -3254744,1630363203,4,28,0,1,1630147856,1,6.0,-9.0,-9.0,16.0,4.0,1312657 -3254745,1630363199,1,28,12,2,1630147856,1,6.0,-9.0,-9.0,16.0,4.0,1312657 -3254746,1630363201,1,25,12,3,1630147856,1,6.0,-9.0,-9.0,16.0,4.0,1312657 -3254747,1630363298,2,64,0,1,1630147857,2,6.0,-9.0,-9.0,-9.0,4.0,1312658 -3254748,1630363299,2,69,13,2,1630147857,1,6.0,-9.0,-9.0,-9.0,4.0,1312658 -3254749,1630362952,1,58,0,1,1630147858,2,1.0,40.0,1.0,-9.0,4.0,1312659 -3254750,1630363950,4,30,0,1,1630147859,2,1.0,44.0,1.0,-9.0,4.0,1312660 -3254751,1630363952,4,34,1,2,1630147859,1,1.0,40.0,2.0,-9.0,4.0,1312660 -3254752,1630363205,1,40,0,1,1630147860,1,1.0,50.0,1.0,-9.0,4.0,1312661 -3254753,1630363227,2,24,0,1,1630147861,1,1.0,20.0,1.0,15.0,4.0,1312662 -3254754,1630363226,1,19,12,2,1630147861,1,3.0,56.0,6.0,15.0,4.0,1312662 -3254755,1630363686,2,30,0,1,1630147862,1,1.0,40.0,1.0,15.0,4.0,1312663 -3254756,1630363685,2,27,15,2,1630147862,2,1.0,40.0,1.0,15.0,4.0,1312663 -3254757,1630363964,4,22,0,1,1630147863,2,1.0,25.0,1.0,15.0,4.0,1312664 -3254758,1630363999,4,26,0,1,1630147864,1,1.0,60.0,3.0,-9.0,4.0,1312665 -3254759,1630363269,1,22,0,1,1630147865,1,6.0,28.0,4.0,16.0,4.0,1312666 -3254760,1630363885,2,72,0,1,1630147866,1,1.0,30.0,1.0,-9.0,4.0,1312667 -3254761,1630363377,2,33,0,1,1630147867,2,3.0,42.0,6.0,-9.0,4.0,1312668 -3254762,1630363378,2,14,2,2,1630147867,2,-9.0,-9.0,-9.0,11.0,-9.0,1312668 -3254763,1630362765,2,74,0,1,1630147868,2,6.0,-9.0,-9.0,-9.0,4.0,1312669 -3254764,1630362766,2,46,2,2,1630147868,1,6.0,-9.0,-9.0,-9.0,4.0,1312669 -3254765,1630362761,2,75,0,1,1630147869,2,1.0,52.0,1.0,-9.0,4.0,1312670 -3254766,1630363954,4,30,0,1,1630147870,1,1.0,60.0,1.0,16.0,4.0,1312671 -3254767,1630363953,4,33,1,2,1630147870,2,1.0,60.0,1.0,16.0,4.0,1312671 -3254768,1630362798,2,71,0,1,1630147871,2,6.0,-9.0,-9.0,-9.0,4.0,1312672 -3254769,1630362799,2,52,15,2,1630147871,2,1.0,28.0,1.0,-9.0,4.0,1312672 -3254770,1630363523,2,49,0,1,1630147872,2,1.0,40.0,2.0,-9.0,4.0,1312673 -3254771,1630363524,2,14,2,2,1630147872,1,-9.0,-9.0,-9.0,10.0,-9.0,1312673 -3254772,1630363525,2,9,2,3,1630147872,1,-9.0,-9.0,-9.0,5.0,-9.0,1312673 -3254773,1630363847,2,63,0,1,1630147873,1,6.0,-9.0,-9.0,-9.0,4.0,1312674 -3254774,1630363288,2,60,0,1,1630147874,2,6.0,-9.0,-9.0,-9.0,4.0,1312675 -3254775,1630363637,2,39,0,1,1630147875,2,6.0,27.0,1.0,-9.0,4.0,1312676 -3254776,1630363638,2,26,10,2,1630147875,2,6.0,-9.0,-9.0,-9.0,4.0,1312676 -3254777,1630363857,2,52,0,1,1630147876,1,1.0,32.0,6.0,-9.0,4.0,1312677 -3254778,1630363414,2,50,0,1,1630147877,2,1.0,36.0,1.0,-9.0,4.0,1312678 -3254779,1630363415,2,54,1,2,1630147877,1,1.0,40.0,1.0,-9.0,4.0,1312678 -3254780,1630362991,1,27,0,1,1630147878,2,6.0,-9.0,-9.0,16.0,4.0,1312679 -3254781,1630362993,4,26,12,2,1630147878,2,6.0,-9.0,-9.0,16.0,4.0,1312679 -3254782,1630363463,2,48,0,1,1630147879,2,3.0,40.0,2.0,-9.0,4.0,1312680 -3254783,1630363464,2,60,13,2,1630147879,1,6.0,-9.0,-9.0,-9.0,4.0,1312680 -3254784,1630363093,1,35,0,1,1630147880,2,1.0,40.0,2.0,-9.0,4.0,1312681 -3254785,1630363897,2,66,0,1,1630147881,1,6.0,-9.0,-9.0,-9.0,4.0,1312682 -3254786,1630363022,1,42,0,1,1630147882,1,1.0,30.0,1.0,-9.0,4.0,1312683 -3254787,1630363021,1,30,1,2,1630147882,2,1.0,43.0,1.0,-9.0,4.0,1312683 -3254788,1630363023,1,0,2,3,1630147882,2,-9.0,-9.0,-9.0,-9.0,-9.0,1312683 -3254789,1630363547,2,59,0,1,1630147883,2,1.0,40.0,1.0,-9.0,4.0,1312684 -3254790,1630363666,2,60,0,1,1630147884,2,6.0,-9.0,-9.0,-9.0,4.0,1312685 -3254791,1630363667,2,64,5,2,1630147884,1,6.0,-9.0,-9.0,-9.0,2.0,1312685 -3254792,1630363668,2,61,11,3,1630147884,1,6.0,-9.0,-9.0,-9.0,4.0,1312685 -3254793,1630363729,2,48,0,1,1630147885,1,1.0,50.0,1.0,-9.0,4.0,1312686 -3254794,1630362867,2,73,0,1,1630147886,2,6.0,-9.0,-9.0,-9.0,4.0,1312687 -3254795,1630363302,2,58,0,1,1630147887,1,1.0,40.0,1.0,-9.0,4.0,1312688 -3254796,1630363300,2,52,1,2,1630147887,2,3.0,-9.0,-9.0,-9.0,4.0,1312688 -3254797,1630363301,2,31,2,3,1630147887,2,1.0,40.0,1.0,-9.0,4.0,1312688 -3254798,1630363365,2,58,0,1,1630147888,1,6.0,-9.0,-9.0,-9.0,4.0,1312689 -3254799,1630363364,2,52,15,2,1630147888,2,3.0,-9.0,-9.0,-9.0,4.0,1312689 -3254800,1630363228,1,55,0,1,1630147889,1,1.0,50.0,1.0,-9.0,4.0,1312690 -3254801,1630362868,2,73,0,1,1630147890,2,6.0,-9.0,-9.0,-9.0,4.0,1312691 -3254802,1630362869,2,66,5,2,1630147890,2,1.0,6.0,3.0,-9.0,4.0,1312691 -3254803,1630363425,2,47,0,1,1630147891,2,6.0,-9.0,-9.0,-9.0,2.0,1312692 -3254804,1630363427,2,15,2,2,1630147891,2,-9.0,-9.0,-9.0,11.0,-9.0,1312692 -3254805,1630363426,2,49,12,3,1630147891,1,1.0,40.0,1.0,-9.0,4.0,1312692 -3254806,1630363195,1,64,0,1,1630147892,1,6.0,-9.0,-9.0,-9.0,2.0,1312693 -3254807,1630363460,2,25,0,1,1630147893,2,1.0,40.0,1.0,-9.0,4.0,1312694 -3254808,1630363869,2,54,0,1,1630147894,1,6.0,-9.0,-9.0,-9.0,4.0,1312695 -3254809,1630363870,2,44,12,2,1630147894,1,6.0,-9.0,-9.0,-9.0,4.0,1312695 -3254810,1630363871,2,36,12,3,1630147894,1,1.0,40.0,1.0,-9.0,4.0,1312695 -3254811,1630362870,2,68,0,1,1630147895,2,6.0,-9.0,-9.0,-9.0,4.0,1312696 -3254812,1630362871,2,55,1,2,1630147895,1,6.0,-9.0,-9.0,-9.0,2.0,1312696 -3254813,1630363031,1,32,0,1,1630147896,1,1.0,40.0,3.0,16.0,4.0,1312697 -3254814,1630363027,1,40,12,2,1630147896,2,1.0,40.0,1.0,16.0,4.0,1312697 -3254815,1630363029,1,30,13,3,1630147896,2,2.0,40.0,3.0,16.0,4.0,1312697 -3254816,1630364009,4,26,0,1,1630147897,1,6.0,-9.0,-9.0,16.0,4.0,1312698 -3254817,1630363131,1,24,0,1,1630147898,1,1.0,45.0,1.0,-9.0,4.0,1312699 -3254818,1630363592,2,52,0,1,1630147899,1,3.0,40.0,6.0,-9.0,2.0,1312700 -3254819,1630363591,2,60,1,2,1630147899,2,1.0,40.0,1.0,-9.0,4.0,1312700 -3254820,1630363593,2,21,2,3,1630147899,1,6.0,-9.0,-9.0,15.0,4.0,1312700 -3254821,1630362935,1,51,0,1,1630147900,2,1.0,40.0,1.0,-9.0,2.0,1312701 -3254822,1630363537,2,57,0,1,1630147901,1,1.0,37.0,1.0,-9.0,2.0,1312702 -3254823,1630363536,2,56,1,2,1630147901,2,1.0,12.0,4.0,-9.0,4.0,1312702 -3254824,1630363978,4,27,0,1,1630147902,1,1.0,54.0,2.0,16.0,4.0,1312703 -3254825,1630363977,4,26,1,2,1630147902,2,1.0,15.0,6.0,16.0,4.0,1312703 -3254826,1630362783,2,65,0,1,1630147903,2,6.0,-9.0,-9.0,-9.0,4.0,1312704 -3254827,1630362785,2,68,1,2,1630147903,1,6.0,-9.0,-9.0,-9.0,4.0,1312704 -3254828,1630363456,2,37,0,1,1630147904,2,2.0,25.0,1.0,-9.0,4.0,1312705 -3254829,1630363457,2,19,2,2,1630147904,1,3.0,-9.0,-9.0,-9.0,4.0,1312705 -3254830,1630363658,2,26,0,1,1630147905,2,1.0,15.0,3.0,-9.0,4.0,1312706 -3254831,1630363659,2,10,2,2,1630147905,2,-9.0,-9.0,-9.0,7.0,-9.0,1312706 -3254832,1630363660,2,6,2,3,1630147905,2,-9.0,-9.0,-9.0,2.0,-9.0,1312706 -3254833,1630363656,2,27,0,1,1630147906,2,3.0,-9.0,-9.0,-9.0,4.0,1312707 -3254834,1630363193,1,87,0,1,1630147907,1,6.0,-9.0,-9.0,-9.0,2.0,1312708 -3254835,1630363192,1,51,12,2,1630147907,1,6.0,-9.0,-9.0,-9.0,4.0,1312708 -3254836,1630362815,2,71,0,1,1630147908,2,6.0,-9.0,-9.0,-9.0,4.0,1312709 -3254837,1630362816,2,71,1,2,1630147908,1,6.0,-9.0,-9.0,-9.0,4.0,1312709 -3254838,1630363691,2,52,0,1,1630147909,2,2.0,40.0,3.0,-9.0,4.0,1312710 -3254839,1630363692,2,19,12,2,1630147909,2,1.0,40.0,1.0,15.0,4.0,1312710 -3254840,1630362928,1,60,0,1,1630147910,2,6.0,-9.0,-9.0,-9.0,4.0,1312711 -3254841,1630363912,2,71,0,1,1630147911,1,6.0,-9.0,-9.0,-9.0,2.0,1312712 -3254842,1630363930,4,23,0,1,1630147912,2,6.0,-9.0,-9.0,16.0,4.0,1312713 -3254843,1630363935,4,24,15,2,1630147912,2,6.0,-9.0,-9.0,16.0,4.0,1312713 -3254844,1630363925,4,24,15,3,1630147912,2,6.0,-9.0,-9.0,16.0,4.0,1312713 -3254845,1630362968,1,22,0,1,1630147913,2,2.0,40.0,1.0,16.0,4.0,1312714 -3254846,1630362970,1,27,13,2,1630147913,1,1.0,60.0,1.0,-9.0,4.0,1312714 -3254847,1630363702,2,40,0,1,1630147914,2,6.0,-9.0,-9.0,-9.0,4.0,1312715 -3254848,1630363703,2,21,2,2,1630147914,2,6.0,30.0,6.0,15.0,4.0,1312715 -3254849,1630362881,2,73,0,1,1630147915,1,1.0,4.0,5.0,-9.0,4.0,1312716 -3254850,1630362880,2,80,1,2,1630147915,2,6.0,-9.0,-9.0,-9.0,4.0,1312716 -3254851,1630362948,1,32,0,1,1630147916,1,1.0,40.0,1.0,-9.0,4.0,1312717 -3254852,1630362946,1,42,1,2,1630147916,2,1.0,40.0,1.0,-9.0,4.0,1312717 -3254853,1630362963,1,59,0,1,1630147917,1,1.0,40.0,1.0,-9.0,4.0,1312718 -3254854,1630362962,1,44,1,2,1630147917,2,1.0,50.0,1.0,-9.0,4.0,1312718 -3254855,1630363629,2,28,0,1,1630147918,2,6.0,-9.0,-9.0,15.0,4.0,1312719 -3254856,1630363630,2,3,2,2,1630147918,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312719 -3254857,1630363499,2,34,0,1,1630147919,2,1.0,40.0,1.0,-9.0,4.0,1312720 -3254858,1630363500,2,14,2,2,1630147919,2,-9.0,-9.0,-9.0,11.0,-9.0,1312720 -3254859,1630363710,2,43,0,1,1630147920,2,1.0,40.0,1.0,-9.0,4.0,1312721 -3254860,1630363329,2,60,0,1,1630147921,2,1.0,40.0,1.0,-9.0,4.0,1312722 -3254861,1630362840,2,69,0,1,1630147922,2,6.0,-9.0,-9.0,-9.0,4.0,1312723 -3254862,1630363581,2,46,0,1,1630147923,2,6.0,-9.0,-9.0,-9.0,4.0,1312724 -3254863,1630363583,2,48,1,2,1630147923,1,1.0,70.0,1.0,-9.0,4.0,1312724 -3254864,1630363582,2,8,2,3,1630147923,1,-9.0,-9.0,-9.0,5.0,-9.0,1312724 -3254865,1630363260,1,22,0,1,1630147924,1,6.0,-9.0,-9.0,15.0,4.0,1312725 -3254866,1630363261,1,24,11,2,1630147924,1,3.0,-9.0,-9.0,15.0,4.0,1312725 -3254867,1630363005,1,23,0,1,1630147925,1,1.0,35.0,1.0,16.0,4.0,1312726 -3254868,1630363009,4,22,11,2,1630147925,2,1.0,35.0,1.0,-9.0,4.0,1312726 -3254869,1630363001,1,22,11,3,1630147925,2,1.0,25.0,4.0,15.0,4.0,1312726 -3254870,1630363833,2,61,0,1,1630147926,1,1.0,3.0,6.0,-9.0,4.0,1312727 -3254871,1630363886,2,68,0,1,1630147927,1,3.0,-9.0,-9.0,-9.0,2.0,1312728 -3254872,1630363304,2,49,0,1,1630147928,1,1.0,40.0,1.0,-9.0,4.0,1312729 -3254873,1630363303,2,49,1,2,1630147928,2,3.0,-9.0,-9.0,-9.0,3.0,1312729 -3254874,1630363624,2,49,0,1,1630147929,2,6.0,-9.0,-9.0,-9.0,4.0,1312730 -3254875,1630363626,2,35,1,2,1630147929,1,6.0,-9.0,-9.0,-9.0,4.0,1312730 -3254876,1630363628,2,30,12,3,1630147929,1,6.0,-9.0,-9.0,-9.0,4.0,1312730 -3254877,1630363893,2,72,0,1,1630147930,1,6.0,-9.0,-9.0,-9.0,4.0,1312731 -3254878,1630363048,1,62,0,1,1630147931,1,1.0,20.0,6.0,-9.0,2.0,1312732 -3254879,1630363047,1,51,13,2,1630147931,2,6.0,-9.0,-9.0,-9.0,4.0,1312732 -3254880,1630363019,1,43,0,1,1630147932,2,6.0,-9.0,-9.0,-9.0,4.0,1312733 -3254881,1630363020,1,52,13,2,1630147932,1,1.0,25.0,1.0,-9.0,4.0,1312733 -3254882,1630363647,2,60,0,1,1630147933,1,1.0,45.0,1.0,-9.0,4.0,1312734 -3254883,1630363646,2,56,1,2,1630147933,2,1.0,50.0,1.0,-9.0,4.0,1312734 -3254884,1630362917,1,22,0,1,1630147934,2,1.0,45.0,4.0,-9.0,4.0,1312735 -3254885,1630362920,1,24,12,2,1630147934,2,1.0,50.0,1.0,-9.0,4.0,1312735 -3254886,1630362923,1,21,12,3,1630147934,2,1.0,35.0,3.0,-9.0,4.0,1312735 -3254887,1630363645,2,64,0,1,1630147935,1,1.0,32.0,1.0,-9.0,2.0,1312736 -3254888,1630363643,2,61,1,2,1630147935,2,6.0,-9.0,-9.0,-9.0,4.0,1312736 -3254889,1630362847,2,71,0,1,1630147936,2,6.0,-9.0,-9.0,-9.0,4.0,1312737 -3254890,1630362849,2,53,2,2,1630147936,1,1.0,60.0,1.0,-9.0,4.0,1312737 -3254891,1630362851,2,51,2,3,1630147936,1,1.0,40.0,1.0,-9.0,4.0,1312737 -3254892,1630363197,1,57,0,1,1630147937,1,1.0,55.0,1.0,-9.0,4.0,1312738 -3254893,1630363043,1,28,0,1,1630147938,2,1.0,80.0,1.0,-9.0,2.0,1312739 -3254894,1630363046,1,26,13,2,1630147938,1,1.0,65.0,1.0,-9.0,4.0,1312739 -3254895,1630363688,2,49,0,1,1630147939,2,1.0,50.0,1.0,-9.0,4.0,1312740 -3254896,1630363690,2,50,1,2,1630147939,1,3.0,-9.0,-9.0,-9.0,4.0,1312740 -3254897,1630363689,2,18,2,3,1630147939,2,3.0,-9.0,-9.0,14.0,4.0,1312740 -3254898,1630362886,1,65,0,1,1630147940,2,6.0,-9.0,-9.0,-9.0,4.0,1312741 -3254899,1630363696,2,57,0,1,1630147941,2,1.0,40.0,1.0,-9.0,4.0,1312742 -3254900,1630363700,2,35,2,2,1630147941,1,6.0,-9.0,-9.0,-9.0,4.0,1312742 -3254901,1630363698,2,33,2,3,1630147941,2,1.0,40.0,1.0,15.0,4.0,1312742 -3254902,1630362961,1,77,0,1,1630147942,1,6.0,-9.0,-9.0,-9.0,4.0,1312743 -3254903,1630362960,1,55,15,2,1630147942,2,6.0,-9.0,-9.0,-9.0,4.0,1312743 -3254904,1630363808,2,63,0,1,1630147943,1,6.0,-9.0,-9.0,-9.0,2.0,1312744 -3254905,1630363830,2,52,0,1,1630147944,1,6.0,-9.0,-9.0,-9.0,4.0,1312745 -3254906,1630363831,2,4,2,2,1630147944,2,-9.0,-9.0,-9.0,1.0,-9.0,1312745 -3254907,1630363402,2,37,0,1,1630147945,2,1.0,40.0,1.0,-9.0,4.0,1312746 -3254908,1630363404,2,17,2,2,1630147945,2,3.0,-9.0,-9.0,14.0,4.0,1312746 -3254909,1630363403,2,15,2,3,1630147945,1,-9.0,-9.0,-9.0,13.0,-9.0,1312746 -3254910,1630362889,1,65,0,1,1630147946,2,6.0,-9.0,-9.0,-9.0,4.0,1312747 -3254911,1630362890,1,77,1,2,1630147946,1,1.0,50.0,1.0,-9.0,4.0,1312747 -3254912,1630363356,2,57,0,1,1630147947,1,6.0,32.0,5.0,-9.0,4.0,1312748 -3254913,1630363355,2,55,1,2,1630147947,2,6.0,-9.0,-9.0,-9.0,4.0,1312748 -3254914,1630363397,2,49,0,1,1630147948,2,1.0,40.0,1.0,-9.0,4.0,1312749 -3254915,1630363398,2,32,10,2,1630147948,2,1.0,35.0,1.0,-9.0,4.0,1312749 -3254916,1630363817,2,60,0,1,1630147949,1,1.0,40.0,1.0,-9.0,4.0,1312750 -3254917,1630363312,2,45,0,1,1630147950,2,6.0,-9.0,-9.0,-9.0,4.0,1312751 -3254918,1630363314,2,11,7,2,1630147950,2,-9.0,-9.0,-9.0,6.0,-9.0,1312751 -3254919,1630363313,2,45,13,3,1630147950,1,3.0,-9.0,-9.0,-9.0,4.0,1312751 -3254920,1630363063,1,64,0,1,1630147951,1,1.0,65.0,1.0,-9.0,4.0,1312752 -3254921,1630363062,1,61,1,2,1630147951,2,6.0,-9.0,-9.0,-9.0,4.0,1312752 -3254922,1630363243,1,29,0,1,1630147952,1,1.0,40.0,1.0,16.0,4.0,1312753 -3254923,1630363371,2,45,0,1,1630147953,2,6.0,-9.0,-9.0,-9.0,4.0,1312754 -3254924,1630363372,2,27,2,2,1630147953,2,6.0,-9.0,-9.0,-9.0,4.0,1312754 -3254925,1630363373,2,35,12,3,1630147953,1,6.0,40.0,6.0,-9.0,4.0,1312754 -3254926,1630363748,2,35,0,1,1630147954,1,1.0,40.0,4.0,-9.0,4.0,1312755 -3254927,1630363712,2,61,0,1,1630147955,2,1.0,40.0,1.0,-9.0,4.0,1312756 -3254928,1630363472,2,77,0,1,1630147956,1,6.0,-9.0,-9.0,-9.0,4.0,1312757 -3254929,1630363471,2,64,5,2,1630147956,2,6.0,-9.0,-9.0,-9.0,4.0,1312757 -3254930,1630363010,1,55,0,1,1630147957,2,1.0,40.0,1.0,-9.0,4.0,1312758 -3254931,1630363011,1,57,1,2,1630147957,2,1.0,40.0,1.0,-9.0,4.0,1312758 -3254932,1630363387,2,54,0,1,1630147958,1,1.0,30.0,1.0,-9.0,4.0,1312759 -3254933,1630363386,2,53,1,2,1630147958,2,1.0,40.0,1.0,15.0,4.0,1312759 -3254934,1630363620,2,21,0,1,1630147959,1,1.0,40.0,4.0,-9.0,4.0,1312760 -3254935,1630363619,2,21,15,2,1630147959,2,1.0,40.0,1.0,15.0,4.0,1312760 -3254936,1630363797,2,62,0,1,1630147960,1,1.0,55.0,1.0,-9.0,4.0,1312761 -3254937,1630363798,2,22,2,2,1630147960,1,3.0,40.0,3.0,-9.0,4.0,1312761 -3254938,1630363143,1,39,0,1,1630147961,1,6.0,8.0,6.0,16.0,4.0,1312762 -3254939,1630362924,1,61,0,1,1630147962,2,3.0,-9.0,-9.0,-9.0,4.0,1312763 -3254940,1630362925,1,63,5,2,1630147962,1,6.0,-9.0,-9.0,-9.0,2.0,1312763 -3254941,1630363049,1,64,0,1,1630147963,2,6.0,-9.0,-9.0,-9.0,4.0,1312764 -3254942,1630363050,1,41,2,2,1630147963,1,6.0,-9.0,-9.0,-9.0,4.0,1312764 -3254943,1630363051,4,33,10,3,1630147963,1,6.0,-9.0,-9.0,-9.0,4.0,1312764 -3254944,1630363244,1,57,0,1,1630147964,1,1.0,60.0,1.0,-9.0,4.0,1312765 -3254945,1630363805,4,33,0,1,1630147965,2,1.0,55.0,1.0,-9.0,4.0,1312766 -3254946,1630363804,2,34,13,2,1630147965,1,1.0,40.0,4.0,16.0,4.0,1312766 -3254947,1630363366,2,43,0,1,1630147966,2,1.0,40.0,1.0,-9.0,4.0,1312767 -3254948,1630363367,2,43,1,2,1630147966,1,6.0,-9.0,-9.0,-9.0,4.0,1312767 -3254949,1630363368,2,14,2,3,1630147966,2,-9.0,-9.0,-9.0,11.0,-9.0,1312767 -3254950,1630363089,1,22,0,1,1630147967,2,6.0,-9.0,-9.0,16.0,4.0,1312768 -3254951,1630363091,1,22,11,2,1630147967,2,6.0,-9.0,-9.0,16.0,4.0,1312768 -3254952,1630362936,1,27,0,1,1630147968,2,1.0,20.0,1.0,16.0,4.0,1312769 -3254953,1630362937,1,26,1,2,1630147968,1,3.0,-9.0,-9.0,16.0,4.0,1312769 -3254954,1630362940,1,24,0,1,1630147969,2,1.0,20.0,3.0,15.0,4.0,1312770 -3254955,1630362941,1,29,1,2,1630147969,1,1.0,31.0,3.0,15.0,4.0,1312770 -3254956,1630362909,1,62,0,1,1630147970,1,6.0,-9.0,-9.0,-9.0,2.0,1312771 -3254957,1630362901,1,59,1,2,1630147970,2,6.0,-9.0,-9.0,-9.0,4.0,1312771 -3254958,1630362905,1,26,2,3,1630147970,2,1.0,30.0,1.0,-9.0,4.0,1312771 -3254959,1630363550,2,45,0,1,1630147971,2,1.0,40.0,1.0,-9.0,4.0,1312772 -3254960,1630363552,2,11,2,2,1630147971,2,-9.0,-9.0,-9.0,8.0,-9.0,1312772 -3254961,1630363551,2,11,2,3,1630147971,1,-9.0,-9.0,-9.0,8.0,-9.0,1312772 -3254962,1630362911,1,49,0,1,1630147972,1,1.0,80.0,1.0,-9.0,4.0,1312773 -3254963,1630362910,1,40,1,2,1630147972,2,3.0,-9.0,-9.0,-9.0,4.0,1312773 -3254964,1630363814,2,44,0,1,1630147973,1,1.0,50.0,1.0,-9.0,4.0,1312774 -3254965,1630363815,2,15,2,2,1630147973,2,-9.0,-9.0,-9.0,12.0,-9.0,1312774 -3254966,1630363816,2,9,2,3,1630147973,2,-9.0,-9.0,-9.0,7.0,-9.0,1312774 -3254967,1630363543,2,20,0,1,1630147974,2,1.0,16.0,6.0,-9.0,4.0,1312775 -3254968,1630363166,1,19,0,1,1630147975,1,6.0,-9.0,-9.0,15.0,4.0,1312776 -3254969,1630363170,1,19,12,2,1630147975,1,1.0,30.0,1.0,15.0,4.0,1312776 -3254970,1630363174,1,19,12,3,1630147975,1,6.0,-9.0,-9.0,15.0,4.0,1312776 -3254971,1630362912,1,19,0,1,1630147976,2,1.0,55.0,4.0,-9.0,4.0,1312777 -3254972,1630362913,1,0,2,2,1630147976,2,-9.0,-9.0,-9.0,-9.0,-9.0,1312777 -3254973,1630363511,2,28,0,1,1630147977,2,1.0,40.0,5.0,16.0,4.0,1312778 -3254974,1630363512,2,29,12,2,1630147977,2,1.0,40.0,1.0,-9.0,4.0,1312778 -3254975,1630362956,1,59,0,1,1630147978,2,6.0,-9.0,-9.0,-9.0,4.0,1312779 -3254976,1630362931,1,24,0,1,1630147979,2,1.0,40.0,1.0,-9.0,4.0,1312780 -3254977,1630362934,1,26,1,2,1630147979,1,6.0,40.0,6.0,16.0,4.0,1312780 -3254978,1630362949,1,60,0,1,1630147980,2,2.0,40.0,2.0,-9.0,4.0,1312781 -3254979,1630363799,2,63,0,1,1630147981,1,6.0,-9.0,-9.0,-9.0,2.0,1312782 -3254980,1630362877,2,94,0,1,1630147982,2,6.0,-9.0,-9.0,-9.0,4.0,1312783 -3254981,1630362830,2,86,0,1,1630147983,2,6.0,-9.0,-9.0,-9.0,4.0,1312784 -3254982,1630362832,2,62,2,2,1630147983,2,1.0,15.0,3.0,-9.0,4.0,1312784 -3254983,1630362834,2,47,2,3,1630147983,1,3.0,8.0,1.0,-9.0,4.0,1312784 -3254984,1630363039,1,62,0,1,1630147984,2,6.0,-9.0,-9.0,-9.0,4.0,1312785 -3254985,1630363040,1,63,1,2,1630147984,1,1.0,40.0,2.0,-9.0,4.0,1312785 -3254986,1630362841,2,72,0,1,1630147985,2,6.0,-9.0,-9.0,-9.0,4.0,1312786 -3254987,1630362842,2,41,2,2,1630147985,1,1.0,40.0,1.0,-9.0,4.0,1312786 -3254988,1630363650,2,58,0,1,1630147986,1,1.0,40.0,4.0,-9.0,4.0,1312787 -3254989,1630363649,2,60,1,2,1630147986,2,1.0,40.0,1.0,-9.0,4.0,1312787 -3254990,1630363526,2,63,0,1,1630147987,2,6.0,-9.0,-9.0,-9.0,4.0,1312788 -3254991,1630363527,2,47,2,2,1630147987,1,6.0,-9.0,-9.0,-9.0,4.0,1312788 -3254992,1630363516,2,38,0,1,1630147988,1,1.0,40.0,1.0,-9.0,4.0,1312789 -3254993,1630363514,2,32,1,2,1630147988,2,1.0,40.0,3.0,16.0,4.0,1312789 -3254994,1630363515,2,10,2,3,1630147988,1,-9.0,-9.0,-9.0,7.0,-9.0,1312789 -3254995,1630363611,2,40,0,1,1630147989,2,1.0,60.0,3.0,-9.0,4.0,1312790 -3254996,1630363343,2,61,0,1,1630147990,2,1.0,40.0,1.0,-9.0,4.0,1312791 -3254997,1630363345,2,36,2,2,1630147990,1,6.0,40.0,5.0,-9.0,4.0,1312791 -3254998,1630363344,2,2,7,3,1630147990,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312791 -3254999,1630363829,2,34,0,1,1630147991,1,1.0,60.0,1.0,-9.0,4.0,1312792 -3255000,1630363108,1,56,0,1,1630147992,2,1.0,50.0,1.0,-9.0,4.0,1312793 -3255001,1630363682,2,22,0,1,1630147993,1,1.0,40.0,1.0,-9.0,4.0,1312794 -3255002,1630363681,2,1,2,2,1630147993,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312794 -3255003,1630363680,2,22,13,3,1630147993,2,1.0,40.0,1.0,-9.0,4.0,1312794 -3255004,1630363497,2,56,0,1,1630147994,2,1.0,60.0,2.0,-9.0,4.0,1312795 -3255005,1630363498,2,58,5,2,1630147994,2,1.0,8.0,3.0,-9.0,4.0,1312795 -3255006,1630362836,2,54,0,1,1630147995,2,3.0,35.0,5.0,-9.0,4.0,1312796 -3255007,1630362837,2,54,1,2,1630147995,1,1.0,40.0,2.0,-9.0,4.0,1312796 -3255008,1630362835,2,86,8,3,1630147995,2,6.0,-9.0,-9.0,-9.0,4.0,1312796 -3255009,1630363789,2,40,0,1,1630147996,1,3.0,-9.0,-9.0,-9.0,4.0,1312797 -3255010,1630363956,4,30,0,1,1630147997,1,1.0,45.0,1.0,-9.0,4.0,1312798 -3255011,1630363955,4,27,1,2,1630147997,2,1.0,40.0,1.0,-9.0,4.0,1312798 -3255012,1630363012,1,63,0,1,1630147998,2,6.0,-9.0,-9.0,-9.0,4.0,1312799 -3255013,1630363013,2,82,1,2,1630147998,1,6.0,-9.0,-9.0,-9.0,2.0,1312799 -3255014,1630363754,2,41,0,1,1630147999,1,3.0,-9.0,-9.0,-9.0,4.0,1312800 -3255015,1630363348,2,58,0,1,1630148000,1,3.0,40.0,4.0,-9.0,2.0,1312801 -3255016,1630363347,2,52,1,2,1630148000,2,1.0,40.0,1.0,-9.0,4.0,1312801 -3255017,1630363349,2,18,2,3,1630148000,1,1.0,20.0,4.0,14.0,4.0,1312801 -3255018,1630363538,2,56,0,1,1630148001,2,1.0,40.0,1.0,-9.0,4.0,1312802 -3255019,1630363539,2,7,14,2,1630148001,2,-9.0,-9.0,-9.0,4.0,-9.0,1312802 -3255020,1630363540,2,6,14,3,1630148001,2,-9.0,-9.0,-9.0,3.0,-9.0,1312802 -3255021,1630363079,1,60,0,1,1630148002,1,1.0,70.0,5.0,-9.0,4.0,1312803 -3255022,1630363078,1,60,1,2,1630148002,2,6.0,-9.0,-9.0,-9.0,4.0,1312803 -3255023,1630363878,2,23,0,1,1630148003,1,1.0,40.0,1.0,-9.0,4.0,1312804 -3255024,1630363792,2,55,0,1,1630148004,1,1.0,48.0,1.0,-9.0,4.0,1312805 -3255025,1630363794,2,53,5,2,1630148004,1,3.0,-9.0,-9.0,-9.0,4.0,1312805 -3255026,1630363796,2,19,10,3,1630148004,1,6.0,-9.0,-9.0,14.0,4.0,1312805 -3255027,1630363634,2,39,0,1,1630148005,2,1.0,40.0,1.0,-9.0,4.0,1312806 -3255028,1630363635,2,36,1,2,1630148005,1,3.0,40.0,6.0,-9.0,4.0,1312806 -3255029,1630363616,2,44,0,1,1630148006,2,1.0,40.0,1.0,-9.0,4.0,1312807 -3255030,1630363618,2,15,2,2,1630148006,2,-9.0,-9.0,-9.0,12.0,-9.0,1312807 -3255031,1630363617,2,1,2,3,1630148006,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312807 -3255032,1630362795,2,61,0,1,1630148007,1,1.0,40.0,1.0,-9.0,4.0,1312808 -3255033,1630362794,2,73,15,2,1630148007,2,6.0,-9.0,-9.0,-9.0,4.0,1312808 -3255034,1630363782,2,43,0,1,1630148008,1,1.0,30.0,1.0,-9.0,2.0,1312809 -3255035,1630363783,2,36,11,2,1630148008,1,1.0,40.0,1.0,15.0,4.0,1312809 -3255036,1630363323,2,29,0,1,1630148009,1,1.0,50.0,5.0,-9.0,4.0,1312810 -3255037,1630363322,2,2,2,2,1630148009,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312810 -3255038,1630363321,2,27,13,3,1630148009,2,1.0,45.0,1.0,-9.0,4.0,1312810 -3255039,1630362953,1,50,0,1,1630148010,2,1.0,40.0,4.0,-9.0,4.0,1312811 -3255040,1630362954,1,14,2,2,1630148010,2,-9.0,-9.0,-9.0,11.0,-9.0,1312811 -3255041,1630362955,1,12,2,3,1630148010,2,-9.0,-9.0,-9.0,8.0,-9.0,1312811 -3255042,1630363264,1,38,0,1,1630148011,1,1.0,40.0,1.0,-9.0,4.0,1312812 -3255043,1630363265,1,42,12,2,1630148011,1,1.0,40.0,1.0,-9.0,4.0,1312812 -3255044,1630363232,1,49,0,1,1630148012,1,1.0,52.0,1.0,-9.0,4.0,1312813 -3255045,1630363234,1,33,12,2,1630148012,1,6.0,-9.0,-9.0,-9.0,4.0,1312813 -3255046,1630363236,1,54,13,3,1630148012,1,1.0,48.0,1.0,-9.0,4.0,1312813 -3255047,1630363075,1,49,0,1,1630148013,2,1.0,40.0,1.0,-9.0,4.0,1312814 -3255048,1630363076,1,14,2,2,1630148013,2,-9.0,-9.0,-9.0,10.0,-9.0,1312814 -3255049,1630363077,1,9,2,3,1630148013,1,-9.0,-9.0,-9.0,5.0,-9.0,1312814 -3255050,1630363097,1,37,0,1,1630148014,1,1.0,50.0,1.0,16.0,4.0,1312815 -3255051,1630363095,1,49,1,2,1630148014,2,1.0,30.0,1.0,-9.0,4.0,1312815 -3255052,1630363053,1,33,0,1,1630148015,2,6.0,-9.0,-9.0,-9.0,4.0,1312816 -3255053,1630363054,1,42,1,2,1630148015,1,1.0,50.0,1.0,-9.0,4.0,1312816 -3255054,1630363055,1,1,2,3,1630148015,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312816 -3255055,1630363034,1,33,0,1,1630148016,2,1.0,50.0,1.0,-9.0,4.0,1312817 -3255056,1630363986,4,25,0,1,1630148017,1,1.0,70.0,5.0,-9.0,2.0,1312818 -3255057,1630362964,1,32,0,1,1630148018,2,3.0,-9.0,-9.0,-9.0,4.0,1312819 -3255058,1630362965,1,8,2,2,1630148018,1,-9.0,-9.0,-9.0,4.0,-9.0,1312819 -3255059,1630362966,1,6,2,3,1630148018,1,-9.0,-9.0,-9.0,-9.0,-9.0,1312819 -3255060,1630362943,1,53,0,1,1630148019,1,1.0,45.0,1.0,-9.0,4.0,1312820 -3255061,1630362942,1,48,1,2,1630148019,2,1.0,45.0,1.0,-9.0,4.0,1312820 -3255062,1630362944,1,22,2,3,1630148019,1,1.0,40.0,1.0,15.0,4.0,1312820 -3255063,1630363331,2,26,0,1,1630148020,1,1.0,40.0,1.0,-9.0,4.0,1312821 -3255064,1630363330,2,25,13,2,1630148020,2,6.0,-9.0,-9.0,-9.0,4.0,1312821 -3255065,1630363671,2,56,0,1,1630148021,2,1.0,40.0,1.0,-9.0,4.0,1312822 -3255066,1630363672,2,22,2,2,1630148021,1,1.0,40.0,1.0,-9.0,4.0,1312822 -3255067,1630363673,2,57,13,3,1630148021,1,6.0,-9.0,-9.0,-9.0,2.0,1312822 -3255068,1630362977,1,29,0,1,1630148022,2,1.0,45.0,1.0,-9.0,4.0,1312823 -3255069,1630362979,1,29,1,2,1630148022,1,6.0,45.0,6.0,16.0,4.0,1312823 -3255070,1630363465,2,54,0,1,1630148023,2,3.0,-9.0,-9.0,-9.0,4.0,1312824 -3255071,1630363466,2,28,2,2,1630148023,1,6.0,-9.0,-9.0,-9.0,4.0,1312824 -3255072,1630363413,2,24,0,1,1630148024,1,1.0,42.0,1.0,-9.0,4.0,1312825 -3255073,1630363411,2,24,1,2,1630148024,2,6.0,-9.0,-9.0,-9.0,4.0,1312825 -3255074,1630363482,2,20,0,1,1630148025,2,3.0,48.0,6.0,15.0,4.0,1312826 -3255075,1630363486,2,0,2,2,1630148025,2,-9.0,-9.0,-9.0,-9.0,-9.0,1312826 -3255076,1630363484,2,24,15,3,1630148025,1,1.0,30.0,1.0,-9.0,4.0,1312826 -3255077,1630363422,2,59,0,1,1630148026,2,1.0,10.0,1.0,-9.0,4.0,1312827 -3255078,1630363424,2,52,1,2,1630148026,1,1.0,5.0,1.0,15.0,4.0,1312827 -3255079,1630363423,2,21,2,3,1630148026,2,1.0,4.0,1.0,-9.0,4.0,1312827 -3255080,1630363219,1,40,0,1,1630148027,1,1.0,43.0,1.0,-9.0,4.0,1312828 -3255081,1630363490,2,23,0,1,1630148028,2,1.0,40.0,1.0,-9.0,4.0,1312829 -3255082,1630363493,2,6,2,2,1630148028,1,-9.0,-9.0,-9.0,3.0,-9.0,1312829 -3255083,1630363496,2,3,2,3,1630148028,2,-9.0,-9.0,-9.0,1.0,-9.0,1312829 -3255084,1630364006,4,23,0,1,1630148029,1,1.0,80.0,1.0,-9.0,4.0,1312830 -3255085,1630363249,1,32,0,1,1630148030,1,1.0,60.0,5.0,-9.0,4.0,1312831 -4619910,1631732389,2,34,0,1,1630687834,2,1.0,24.0,1.0,-9.0,4.0,1852407 -4619911,1631732390,2,34,0,1,1630687835,2,1.0,24.0,1.0,-9.0,4.0,1852408 -4619912,1631732391,2,34,0,1,1630687836,2,1.0,24.0,1.0,-9.0,4.0,1852409 -4619913,1631732412,2,37,0,1,1630687837,2,1.0,35.0,2.0,-9.0,4.0,1852410 -4619914,1631732371,1,44,0,1,1630687838,2,1.0,40.0,1.0,-9.0,4.0,1852411 -4619915,1631732367,1,25,0,1,1630687839,2,1.0,30.0,3.0,-9.0,4.0,1852412 -4619916,1631732372,1,44,0,1,1630687840,2,1.0,40.0,1.0,-9.0,4.0,1852413 -4619917,1631732382,1,26,0,1,1630687842,2,1.0,65.0,2.0,-9.0,4.0,1852414 -4619918,1631732383,1,26,0,1,1630687843,2,1.0,65.0,2.0,-9.0,4.0,1852415 -4619919,1631732384,1,26,0,1,1630687844,2,1.0,65.0,2.0,-9.0,4.0,1852416 -4619920,1631732369,1,25,0,1,1630687845,2,1.0,30.0,3.0,-9.0,4.0,1852417 -4619921,1631732385,1,26,0,1,1630687846,2,1.0,65.0,2.0,-9.0,4.0,1852418 -4619922,1631732373,1,44,0,1,1630687847,2,1.0,40.0,1.0,-9.0,4.0,1852419 -4619923,1631732374,1,44,0,1,1630687848,2,1.0,40.0,1.0,-9.0,4.0,1852420 -4619924,1631732406,2,32,0,1,1630687849,2,1.0,20.0,5.0,16.0,4.0,1852421 -4619925,1631732411,2,25,0,1,1630687850,2,1.0,40.0,1.0,-9.0,4.0,1852422 -4619926,1631732381,1,31,0,1,1630687851,2,1.0,80.0,5.0,-9.0,4.0,1852423 -4619927,1631732362,1,28,0,1,1630687852,2,1.0,50.0,1.0,16.0,4.0,1852424 -4619928,1631732363,1,28,0,1,1630687854,2,1.0,50.0,1.0,16.0,4.0,1852425 -4619929,1631732359,1,26,0,1,1630687855,2,1.0,40.0,5.0,-9.0,4.0,1852426 -4619930,1631732360,1,26,0,1,1630687856,2,1.0,40.0,5.0,-9.0,4.0,1852427 -4619931,1631732377,1,25,0,1,1630687857,2,1.0,40.0,4.0,-9.0,4.0,1852428 -4619932,1631732386,1,31,0,1,1630687858,2,1.0,20.0,1.0,-9.0,4.0,1852429 -4619933,1631732361,1,26,0,1,1630687859,2,1.0,40.0,5.0,-9.0,4.0,1852430 -4619934,1631732375,1,26,0,1,1630687860,2,1.0,20.0,4.0,16.0,4.0,1852431 -4619935,1631732365,1,31,0,1,1630687861,2,1.0,50.0,1.0,-9.0,4.0,1852432 -4619936,1631732378,1,25,0,1,1630687862,2,1.0,40.0,4.0,-9.0,4.0,1852433 -4619937,1631732379,1,25,0,1,1630687863,2,1.0,40.0,4.0,-9.0,4.0,1852434 -4619938,1631732364,1,28,0,1,1630687864,2,1.0,50.0,1.0,16.0,4.0,1852435 -4619939,1631732380,1,25,0,1,1630687865,2,1.0,40.0,4.0,-9.0,4.0,1852436 -4619940,1631732413,2,45,0,1,1630687867,2,2.0,40.0,1.0,-9.0,4.0,1852437 -4619941,1631732395,2,59,0,1,1630687868,2,1.0,40.0,1.0,-9.0,4.0,1852438 -4619942,1631732392,2,52,0,1,1630687869,2,1.0,40.0,1.0,-9.0,4.0,1852439 -4619943,1631732400,2,55,0,1,1630687870,2,1.0,40.0,1.0,-9.0,4.0,1852440 -4619944,1631732415,2,47,0,1,1630687871,2,1.0,40.0,1.0,-9.0,4.0,1852441 -4619945,1631732414,2,47,0,1,1630687872,2,1.0,40.0,1.0,-9.0,4.0,1852442 -4619946,1631732398,2,62,0,1,1630687873,2,1.0,40.0,1.0,-9.0,4.0,1852443 -4619947,1631732401,2,55,0,1,1630687874,2,1.0,40.0,1.0,-9.0,4.0,1852444 -4619948,1631732408,2,58,0,1,1630687875,2,1.0,40.0,1.0,-9.0,4.0,1852445 -4619949,1630227223,3,44,10,1,1630687876,2,1.0,99.0,1.0,-9.0,4.0,1852446 -4619950,1631732397,2,56,0,2,1630687876,2,1.0,99.0,1.0,-9.0,4.0,1852446 -4619951,1630227219,2,60,5,3,1630687876,2,6.0,-9.0,-9.0,-9.0,4.0,1852446 -4619952,1630227221,2,74,6,4,1630687876,1,6.0,-9.0,-9.0,16.0,2.0,1852446 -4619953,1631732393,2,52,0,1,1630687877,2,1.0,40.0,1.0,-9.0,4.0,1852447 -4619954,1631732405,2,58,0,1,1630687879,2,1.0,12.0,1.0,-9.0,4.0,1852448 -4619955,1631732410,2,61,0,1,1630687880,2,1.0,35.0,1.0,-9.0,4.0,1852449 -4619956,1631732396,2,59,0,1,1630687881,2,1.0,40.0,1.0,-9.0,4.0,1852450 -4619957,1631732387,1,55,0,1,1630687882,1,1.0,50.0,1.0,-9.0,4.0,1852451 -4619958,1631732388,1,55,0,1,1630687883,1,1.0,50.0,1.0,-9.0,4.0,1852452 -4619959,1631732399,2,55,0,1,1630687884,2,1.0,38.0,1.0,-9.0,4.0,1852453 -4619960,1631732402,2,56,0,1,1630687885,2,1.0,25.0,1.0,-9.0,4.0,1852454 -4619961,1631732403,2,56,0,1,1630687886,2,1.0,25.0,1.0,-9.0,4.0,1852455 -4619962,1631732409,2,51,0,1,1630687887,2,1.0,36.0,1.0,15.0,4.0,1852456 -4619963,1631732354,1,53,0,1,1630687888,2,1.0,50.0,1.0,-9.0,4.0,1852457 -4619964,1631732355,1,53,0,1,1630687889,2,1.0,50.0,1.0,-9.0,4.0,1852458 -4619965,1631732356,1,53,0,1,1630687890,2,1.0,50.0,1.0,-9.0,4.0,1852459 -4619966,1631732357,1,53,0,1,1630687891,2,1.0,50.0,1.0,-9.0,4.0,1852460 -4619967,1631732366,1,31,0,1,1630687892,2,1.0,50.0,1.0,-9.0,4.0,1852461 -4619968,1631732358,1,53,0,1,1630687893,2,1.0,50.0,1.0,-9.0,4.0,1852462 -4619969,1631732407,2,32,0,1,1630687894,2,1.0,20.0,5.0,16.0,4.0,1852463 -4619970,1631732370,1,25,0,1,1630687895,2,1.0,30.0,3.0,-9.0,4.0,1852464 -4620586,1631748372,1,63,0,1,1630688134,2,1.0,40.0,1.0,-9.0,4.0,1852703 -4620612,1631748371,1,40,0,1,1630688148,1,1.0,40.0,1.0,-9.0,4.0,1852717 -4620613,1631748370,1,43,1,2,1630688148,2,1.0,26.0,1.0,-9.0,4.0,1852717 -4621019,1631748327,3,34,0,1,1630688302,2,1.0,80.0,2.0,-9.0,4.0,1852871 -4621020,1631748354,2,44,0,1,1630688303,1,1.0,40.0,1.0,-9.0,4.0,1852872 -4621021,1631748268,2,60,0,1,1630688304,2,6.0,-9.0,-9.0,-9.0,4.0,1852873 -4621022,1631748326,3,44,0,1,1630688305,2,1.0,40.0,1.0,-9.0,4.0,1852874 -4621023,1631748324,2,60,5,2,1630688305,2,6.0,-9.0,-9.0,-9.0,4.0,1852874 -4621024,1631748325,2,74,6,3,1630688305,1,6.0,-9.0,-9.0,-9.0,2.0,1852874 -4621025,1631748276,2,74,0,1,1630688306,2,6.0,-9.0,-9.0,-9.0,4.0,1852875 -4621026,1631748306,1,24,0,1,1630688307,1,3.0,20.0,5.0,-9.0,4.0,1852876 -4621027,1631748311,1,32,0,1,1630688308,2,3.0,-9.0,-9.0,-9.0,4.0,1852877 -4621028,1631748312,1,8,2,2,1630688308,1,-9.0,-9.0,-9.0,4.0,-9.0,1852877 -4621029,1631748313,1,6,2,3,1630688308,1,-9.0,-9.0,-9.0,-9.0,-9.0,1852877 -4621030,1631748266,2,53,0,1,1630688309,2,6.0,-9.0,-9.0,-9.0,4.0,1852878 -4621031,1631748267,2,19,2,2,1630688309,2,6.0,-9.0,-9.0,15.0,4.0,1852878 -4621032,1631748314,2,61,0,1,1630688310,2,6.0,-9.0,-9.0,-9.0,4.0,1852879 -4621033,1631748315,2,45,2,2,1630688310,1,6.0,-9.0,-9.0,-9.0,4.0,1852879 -4621034,1631748316,2,69,5,3,1630688310,1,6.0,-9.0,-9.0,-9.0,4.0,1852879 -4621035,1631748252,2,58,0,1,1630688311,2,6.0,-9.0,-9.0,-9.0,4.0,1852880 -4621036,1631748242,1,24,0,1,1630688312,1,3.0,47.0,3.0,15.0,4.0,1852881 -4621037,1631748436,1,59,0,1,1630688313,1,1.0,48.0,1.0,-9.0,4.0,1852882 -4621038,1631748435,1,59,1,2,1630688313,2,1.0,45.0,1.0,-9.0,4.0,1852882 -4621039,1631748442,1,30,0,1,1630688314,1,1.0,40.0,1.0,-9.0,4.0,1852883 -4621040,1631748307,1,57,0,1,1630688315,1,1.0,60.0,1.0,-9.0,4.0,1852884 -4621041,1631748298,1,34,0,1,1630688316,1,1.0,40.0,1.0,-9.0,4.0,1852885 -4621042,1631748432,2,31,0,1,1630688317,1,6.0,-9.0,-9.0,-9.0,4.0,1852886 -4621043,1631748433,2,0,2,2,1630688317,2,-9.0,-9.0,-9.0,-9.0,-9.0,1852886 -4621044,1631748431,2,38,13,3,1630688317,2,6.0,-9.0,-9.0,-9.0,4.0,1852886 -4621045,1631748308,2,70,0,1,1630688318,2,6.0,-9.0,-9.0,-9.0,4.0,1852887 -4621046,1631748269,2,58,0,1,1630688319,1,6.0,-9.0,-9.0,-9.0,4.0,1852888 -4621047,1631748317,2,41,0,1,1630688320,2,6.0,-9.0,-9.0,-9.0,4.0,1852889 -4621048,1631748258,2,69,0,1,1630688321,2,1.0,37.0,1.0,-9.0,4.0,1852890 -4621049,1631748251,2,74,0,1,1630688322,2,6.0,-9.0,-9.0,-9.0,4.0,1852891 -4621050,1631748243,1,28,0,1,1630688323,1,1.0,60.0,1.0,16.0,4.0,1852892 -4621051,1631748355,2,39,0,1,1630688324,1,6.0,-9.0,-9.0,-9.0,4.0,1852893 -4621052,1631748351,2,33,0,1,1630688325,1,1.0,10.0,6.0,-9.0,4.0,1852894 -4621053,1631748309,1,84,0,1,1630688326,2,6.0,-9.0,-9.0,-9.0,4.0,1852895 -4621054,1631748270,2,52,0,1,1630688327,1,6.0,-9.0,-9.0,-9.0,4.0,1852896 -4621055,1631748301,2,29,0,1,1630688328,2,6.0,-9.0,-9.0,-9.0,4.0,1852897 -4621056,1631748302,2,14,2,2,1630688328,1,-9.0,-9.0,-9.0,9.0,-9.0,1852897 -4621057,1631748303,2,4,2,3,1630688328,1,-9.0,-9.0,-9.0,-9.0,-9.0,1852897 -4621058,1631748304,2,2,2,4,1630688328,1,-9.0,-9.0,-9.0,-9.0,-9.0,1852897 -4621059,1631748305,2,45,6,5,1630688328,1,3.0,-9.0,-9.0,-9.0,4.0,1852897 -4621060,1631748272,1,24,0,1,1630688329,2,6.0,-9.0,-9.0,16.0,4.0,1852898 -4621061,1631748329,4,33,0,1,1630688330,1,2.0,12.0,1.0,-9.0,4.0,1852899 -4621062,1631748352,2,35,0,1,1630688331,1,6.0,-9.0,-9.0,-9.0,4.0,1852900 -4621063,1631748353,2,30,5,2,1630688331,1,6.0,-9.0,-9.0,-9.0,4.0,1852900 -4621064,1631748335,2,55,0,1,1630688332,2,1.0,35.0,1.0,-9.0,4.0,1852901 -4621065,1631748336,2,23,2,2,1630688332,1,3.0,-9.0,-9.0,15.0,4.0,1852901 -4621066,1631748262,2,55,0,1,1630688333,1,6.0,-9.0,-9.0,-9.0,4.0,1852902 -4621067,1631748261,2,48,15,2,1630688333,2,6.0,-9.0,-9.0,-9.0,4.0,1852902 -4621068,1631748247,2,38,0,1,1630688334,2,3.0,-9.0,-9.0,-9.0,4.0,1852903 -4621069,1631748249,2,18,2,2,1630688334,1,1.0,8.0,4.0,14.0,4.0,1852903 -4621070,1631748250,2,11,2,3,1630688334,2,-9.0,-9.0,-9.0,7.0,-9.0,1852903 -4621071,1631748248,2,64,6,4,1630688334,2,6.0,-9.0,-9.0,-9.0,4.0,1852903 -4621072,1631748259,2,81,0,1,1630688335,2,6.0,-9.0,-9.0,-9.0,4.0,1852904 -4621073,1631748260,2,55,2,2,1630688335,2,6.0,-9.0,-9.0,-9.0,2.0,1852904 -4621074,1631748275,2,68,0,1,1630688336,2,6.0,-9.0,-9.0,-9.0,4.0,1852905 -4621075,1631748271,1,24,0,1,1630688337,2,1.0,50.0,1.0,-9.0,4.0,1852906 -4621076,1631748337,2,23,0,1,1630688338,2,6.0,-9.0,-9.0,-9.0,4.0,1852907 -4621077,1631748340,2,4,2,2,1630688338,2,-9.0,-9.0,-9.0,1.0,-9.0,1852907 -4621078,1631748339,2,1,2,3,1630688338,1,-9.0,-9.0,-9.0,-9.0,-9.0,1852907 -4621079,1631748338,2,51,10,4,1630688338,2,6.0,-9.0,-9.0,-9.0,4.0,1852907 -4621080,1631748341,2,2,10,5,1630688338,2,-9.0,-9.0,-9.0,-9.0,-9.0,1852907 -4621081,1631748244,1,67,0,1,1630688339,1,1.0,40.0,1.0,-9.0,4.0,1852908 -4621082,1631748253,2,50,0,1,1630688340,2,6.0,-9.0,-9.0,-9.0,4.0,1852909 -4621083,1631748254,2,16,2,2,1630688340,1,6.0,-9.0,-9.0,11.0,-9.0,1852909 -4621084,1631748323,3,44,0,1,1630688341,2,1.0,40.0,1.0,-9.0,4.0,1852910 -4621085,1631748321,2,60,5,2,1630688341,2,6.0,-9.0,-9.0,-9.0,4.0,1852910 -4621086,1631748322,2,74,6,3,1630688341,1,6.0,-9.0,-9.0,-9.0,2.0,1852910 -4621087,1631748356,2,22,0,1,1630688342,1,1.0,20.0,6.0,-9.0,4.0,1852911 -4621088,1631748347,2,55,0,1,1630688343,2,1.0,30.0,1.0,-9.0,4.0,1852912 -4621089,1631748348,2,57,5,2,1630688343,2,6.0,-9.0,-9.0,-9.0,4.0,1852912 -4621090,1631748299,1,22,0,1,1630688344,1,6.0,-9.0,-9.0,15.0,4.0,1852913 -4621091,1631748300,1,24,11,2,1630688344,1,3.0,-9.0,-9.0,15.0,4.0,1852913 -4621092,1631748441,2,58,0,1,1630688345,1,6.0,-9.0,-9.0,-9.0,4.0,1852914 -4621093,1631748434,2,69,0,1,1630688346,2,6.0,-9.0,-9.0,-9.0,4.0,1852915 -4621094,1631748274,2,59,0,1,1630688347,2,3.0,-9.0,-9.0,-9.0,4.0,1852916 -4621095,1631748349,2,61,0,1,1630688348,1,1.0,40.0,1.0,-9.0,4.0,1852917 -4621096,1631748350,2,51,10,2,1630688348,1,6.0,-9.0,-9.0,-9.0,4.0,1852917 -4621097,1631748342,2,59,0,1,1630688349,2,6.0,-9.0,-9.0,-9.0,4.0,1852918 -4621098,1631748343,2,42,2,2,1630688349,1,3.0,-9.0,-9.0,-9.0,4.0,1852918 -4621099,1631748273,1,22,0,1,1630688350,1,6.0,28.0,4.0,16.0,4.0,1852919 -4621100,1631748437,2,32,0,1,1630688351,2,1.0,40.0,1.0,-9.0,4.0,1852920 -4621101,1631748430,2,55,0,1,1630688352,2,6.0,-9.0,-9.0,-9.0,4.0,1852921 -4621102,1631748257,2,73,0,1,1630688353,2,6.0,-9.0,-9.0,-9.0,4.0,1852922 -4621103,1631748263,2,45,0,1,1630688354,2,1.0,20.0,1.0,-9.0,4.0,1852923 -4621104,1631748264,2,22,2,2,1630688354,1,3.0,40.0,6.0,-9.0,4.0,1852923 -4621105,1631748256,2,87,0,1,1630688355,2,6.0,-9.0,-9.0,-9.0,4.0,1852924 -4621106,1631748440,2,58,0,1,1630688356,2,6.0,-9.0,-9.0,-9.0,4.0,1852925 -4621107,1631748330,1,33,0,1,1630688357,2,1.0,40.0,1.0,-9.0,4.0,1852926 -4621108,1631748331,1,28,15,2,1630688357,2,1.0,30.0,1.0,16.0,4.0,1852926 -4621109,1631748333,1,28,15,3,1630688357,1,1.0,65.0,1.0,-9.0,4.0,1852926 -4621110,1631748334,1,25,15,4,1630688357,1,1.0,50.0,1.0,-9.0,4.0,1852926 -4621111,1631748332,1,24,15,5,1630688357,2,1.0,15.0,4.0,16.0,4.0,1852926 -4621112,1631748265,2,29,0,1,1630688358,1,1.0,40.0,1.0,-9.0,4.0,1852927 -4621113,1631748438,2,56,0,1,1630688359,2,6.0,-9.0,-9.0,-9.0,4.0,1852928 -4621114,1631748439,2,21,2,2,1630688359,2,6.0,-9.0,-9.0,15.0,4.0,1852928 -4621115,1631748344,2,22,0,1,1630688360,2,3.0,-9.0,-9.0,-9.0,4.0,1852929 -4621116,1631748345,2,2,2,2,1630688360,1,-9.0,-9.0,-9.0,-9.0,-9.0,1852929 -4621117,1631748346,2,13,5,3,1630688360,1,-9.0,-9.0,-9.0,9.0,-9.0,1852929 -4621118,1631748443,2,51,0,1,1630688361,1,6.0,-9.0,-9.0,-9.0,4.0,1852930 -4621119,1631748277,2,34,0,1,1630688362,2,1.0,24.0,1.0,-9.0,4.0,1852931 -4621120,1631748278,2,15,2,2,1630688362,1,-9.0,-9.0,-9.0,12.0,-9.0,1852931 -4621121,1631748281,2,14,2,3,1630688362,2,-9.0,-9.0,-9.0,-9.0,-9.0,1852931 -4621122,1631748279,2,12,2,4,1630688362,1,-9.0,-9.0,-9.0,-9.0,-9.0,1852931 -4621123,1631748280,2,8,2,5,1630688362,1,-9.0,-9.0,-9.0,4.0,-9.0,1852931 -4621124,1631748255,2,54,0,1,1630688363,1,6.0,45.0,5.0,-9.0,4.0,1852932 -4621125,1631748328,1,77,0,1,1630688364,1,6.0,-9.0,-9.0,-9.0,4.0,1852933 -4621126,1631748318,2,27,0,1,1630688365,2,6.0,-9.0,-9.0,-9.0,4.0,1852934 -4621127,1631748320,2,0,2,2,1630688365,2,-9.0,-9.0,-9.0,-9.0,-9.0,1852934 -4621128,1631748319,2,35,13,3,1630688365,1,6.0,-9.0,-9.0,-9.0,4.0,1852934 -4621129,1631748310,1,49,0,1,1630688366,2,6.0,-9.0,-9.0,-9.0,4.0,1852935 -4621130,1631748245,2,26,0,1,1630688367,2,1.0,35.0,5.0,-9.0,4.0,1852936 -4621131,1631748246,2,3,2,2,1630688367,2,-9.0,-9.0,-9.0,-9.0,-9.0,1852936 -4621132,1631748297,1,30,0,1,1630688368,1,1.0,60.0,1.0,16.0,4.0,1852937 -4621133,1631748296,1,29,1,2,1630688368,2,1.0,65.0,1.0,16.0,4.0,1852937 -4681801,2000038755,1,25,17,1,2000038755,1,6.0,-9.0,-9.0,-9.0,4.0,1900751 -4681802,2000038756,1,25,17,1,2000038756,1,6.0,20.0,5.0,15.0,4.0,1900752 -4681803,2000038757,1,25,17,1,2000038757,1,6.0,-9.0,-9.0,-9.0,4.0,1900753 -4681804,2000038758,1,25,17,1,2000038758,2,6.0,35.0,6.0,-9.0,4.0,1900754 -4681805,2000038759,1,25,17,1,2000038759,1,6.0,-9.0,-9.0,-9.0,4.0,1900755 -4681806,2000038760,1,25,17,1,2000038760,1,6.0,-9.0,-9.0,-9.0,4.0,1900756 -4681833,2000038787,1,25,17,1,2000038787,1,6.0,-9.0,-9.0,-9.0,4.0,1900783 -4681834,2000038788,1,25,17,1,2000038788,1,6.0,20.0,5.0,15.0,4.0,1900784 -4681835,2000038789,2,58,17,1,2000038789,1,6.0,-9.0,-9.0,-9.0,4.0,1900785 -4681836,2000038790,2,43,17,1,2000038790,1,6.0,-9.0,-9.0,-9.0,4.0,1900786 -4681837,2000038791,2,44,17,1,2000038791,2,1.0,25.0,6.0,15.0,4.0,1900787 -4681838,2000038792,2,43,17,1,2000038792,1,6.0,-9.0,-9.0,-9.0,4.0,1900788 -4681841,2000038795,2,58,17,1,2000038795,1,6.0,-9.0,-9.0,-9.0,4.0,1900791 -4681842,2000038796,2,56,17,1,2000038796,1,3.0,40.0,4.0,-9.0,4.0,1900792 -4681843,2000038797,2,58,17,1,2000038797,1,6.0,-9.0,-9.0,-9.0,4.0,1900793 -4681844,2000038798,2,41,17,1,2000038798,2,6.0,-9.0,-9.0,-9.0,4.0,1900794 -4681845,2000038799,1,25,17,1,2000038799,1,6.0,-9.0,-9.0,-9.0,4.0,1900795 -4681846,2000038800,2,56,17,1,2000038800,1,3.0,40.0,4.0,-9.0,4.0,1900796 -4682283,2000039237,3,20,17,1,2000039237,2,6.0,-9.0,-9.0,15.0,4.0,1901233 -4682284,2000039238,2,22,17,1,2000039238,2,3.0,-9.0,-9.0,-9.0,4.0,1901234 -4682285,2000039239,1,18,17,1,2000039239,2,6.0,-9.0,-9.0,15.0,4.0,1901235 -4682286,2000039240,3,20,17,1,2000039240,2,6.0,-9.0,-9.0,15.0,4.0,1901236 -4682287,2000039241,1,27,17,1,2000039241,1,6.0,40.0,5.0,-9.0,4.0,1901237 -4682288,2000039242,2,18,17,1,2000039242,2,3.0,-9.0,-9.0,15.0,4.0,1901238 -4682289,2000039243,2,22,17,1,2000039243,2,3.0,-9.0,-9.0,-9.0,4.0,1901239 -4682290,2000039244,3,20,17,1,2000039244,2,6.0,-9.0,-9.0,15.0,4.0,1901240 -4682291,2000039245,2,22,17,1,2000039245,1,6.0,40.0,6.0,16.0,4.0,1901241 -4682292,2000039246,3,20,17,1,2000039246,2,6.0,-9.0,-9.0,15.0,4.0,1901242 -4682293,2000039247,3,20,17,1,2000039247,2,6.0,-9.0,-9.0,15.0,4.0,1901243 -4682294,2000039248,2,20,17,1,2000039248,2,1.0,12.0,5.0,15.0,4.0,1901244 -4682295,2000039249,3,20,17,1,2000039249,2,6.0,-9.0,-9.0,15.0,4.0,1901245 -4682296,2000039250,3,20,17,1,2000039250,2,6.0,-9.0,-9.0,15.0,4.0,1901246 -4682297,2000039251,3,20,17,1,2000039251,2,6.0,-9.0,-9.0,15.0,4.0,1901247 -4682298,2000039252,1,27,17,1,2000039252,1,6.0,40.0,5.0,-9.0,4.0,1901248 -4682299,2000039253,2,22,17,1,2000039253,2,3.0,-9.0,-9.0,-9.0,4.0,1901249 -4682300,2000039254,3,20,17,1,2000039254,2,6.0,-9.0,-9.0,15.0,4.0,1901250 -4682301,2000039255,2,22,17,1,2000039255,1,3.0,16.0,1.0,15.0,4.0,1901251 -4682302,2000039256,3,20,17,1,2000039256,2,6.0,-9.0,-9.0,15.0,4.0,1901252 -4682303,2000039257,3,20,17,1,2000039257,2,6.0,-9.0,-9.0,15.0,4.0,1901253 -4682304,2000039258,2,20,17,1,2000039258,1,6.0,-9.0,-9.0,15.0,4.0,1901254 -4682305,2000039259,3,20,17,1,2000039259,2,6.0,-9.0,-9.0,15.0,4.0,1901255 -4682306,2000039260,3,20,17,1,2000039260,2,6.0,-9.0,-9.0,15.0,4.0,1901256 -4682307,2000039261,1,18,17,1,2000039261,2,6.0,8.0,6.0,15.0,4.0,1901257 -4682308,2000039262,3,20,17,1,2000039262,2,6.0,-9.0,-9.0,15.0,4.0,1901258 -4682309,2000039263,3,20,17,1,2000039263,2,6.0,-9.0,-9.0,15.0,4.0,1901259 -4682310,2000039264,3,20,17,1,2000039264,2,6.0,-9.0,-9.0,15.0,4.0,1901260 -4682311,2000039265,3,20,17,1,2000039265,2,6.0,-9.0,-9.0,15.0,4.0,1901261 -4682312,2000039266,1,18,17,1,2000039266,2,6.0,-9.0,-9.0,15.0,4.0,1901262 -4682313,2000039267,3,20,17,1,2000039267,2,6.0,-9.0,-9.0,15.0,4.0,1901263 -4682314,2000039268,3,20,17,1,2000039268,2,6.0,-9.0,-9.0,15.0,4.0,1901264 -4682315,2000039269,3,20,17,1,2000039269,2,6.0,-9.0,-9.0,15.0,4.0,1901265 -4682316,2000039270,2,22,17,1,2000039270,1,3.0,-9.0,-9.0,15.0,4.0,1901266 -4682317,2000039271,1,18,17,1,2000039271,2,6.0,-9.0,-9.0,15.0,4.0,1901267 -4682318,2000039272,3,20,17,1,2000039272,2,6.0,-9.0,-9.0,15.0,4.0,1901268 -4682319,2000039273,2,22,17,1,2000039273,2,1.0,16.0,1.0,-9.0,4.0,1901269 -4682320,2000039274,3,20,17,1,2000039274,2,6.0,-9.0,-9.0,15.0,4.0,1901270 -4682321,2000039275,2,25,17,1,2000039275,1,6.0,-9.0,-9.0,-9.0,4.0,1901271 -4682322,2000039276,2,22,17,1,2000039276,2,3.0,-9.0,-9.0,13.0,4.0,1901272 -4682323,2000039277,3,20,17,1,2000039277,2,6.0,-9.0,-9.0,15.0,4.0,1901273 -4682324,2000039278,3,20,17,1,2000039278,2,6.0,-9.0,-9.0,15.0,4.0,1901274 -4682325,2000039279,2,22,17,1,2000039279,1,3.0,25.0,2.0,15.0,4.0,1901275 -4682326,2000039280,1,18,17,1,2000039280,2,6.0,8.0,6.0,15.0,4.0,1901276 -4682327,2000039281,3,20,17,1,2000039281,2,6.0,-9.0,-9.0,15.0,4.0,1901277 -4682328,2000039282,3,20,17,1,2000039282,2,6.0,-9.0,-9.0,15.0,4.0,1901278 -4682329,2000039283,3,20,17,1,2000039283,2,6.0,-9.0,-9.0,15.0,4.0,1901279 -4682330,2000039284,1,18,17,1,2000039284,2,6.0,8.0,6.0,15.0,4.0,1901280 -4682331,2000039285,1,18,17,1,2000039285,1,6.0,-9.0,-9.0,15.0,4.0,1901281 -4682332,2000039286,3,20,17,1,2000039286,2,6.0,-9.0,-9.0,15.0,4.0,1901282 -4682333,2000039287,2,22,17,1,2000039287,2,3.0,-9.0,-9.0,-9.0,4.0,1901283 -4682334,2000039288,3,20,17,1,2000039288,2,6.0,-9.0,-9.0,15.0,4.0,1901284 -4682335,2000039289,1,18,17,1,2000039289,2,6.0,24.0,1.0,15.0,4.0,1901285 -4682336,2000039290,3,20,17,1,2000039290,2,6.0,-9.0,-9.0,15.0,4.0,1901286 -4682337,2000039291,3,20,17,1,2000039291,2,6.0,-9.0,-9.0,15.0,4.0,1901287 -4682338,2000039292,2,22,17,1,2000039292,2,1.0,16.0,1.0,-9.0,4.0,1901288 -4682339,2000039293,2,20,17,1,2000039293,2,1.0,12.0,5.0,15.0,4.0,1901289 -4682340,2000039294,2,18,17,1,2000039294,2,6.0,-9.0,-9.0,13.0,4.0,1901290 -4682341,2000039295,1,26,17,1,2000039295,1,6.0,-9.0,-9.0,-9.0,4.0,1901291 -4682342,2000039296,3,20,17,1,2000039296,2,6.0,-9.0,-9.0,15.0,4.0,1901292 -4682343,2000039297,2,20,17,1,2000039297,2,1.0,12.0,5.0,15.0,4.0,1901293 -4682344,2000039298,1,27,17,1,2000039298,1,6.0,40.0,5.0,-9.0,4.0,1901294 -4682345,2000039299,2,22,17,1,2000039299,2,3.0,-9.0,-9.0,-9.0,4.0,1901295 -4682346,2000039300,3,20,17,1,2000039300,2,6.0,-9.0,-9.0,15.0,4.0,1901296 -4682347,2000039301,1,18,17,1,2000039301,2,6.0,-9.0,-9.0,15.0,4.0,1901297 -4682348,2000039302,2,22,17,1,2000039302,2,6.0,40.0,5.0,-9.0,4.0,1901298 -4682349,2000039303,3,20,17,1,2000039303,2,6.0,-9.0,-9.0,15.0,4.0,1901299 -4682350,2000039304,2,22,17,1,2000039304,2,3.0,-9.0,-9.0,13.0,4.0,1901300 -4682351,2000039305,2,18,17,1,2000039305,2,6.0,-9.0,-9.0,13.0,4.0,1901301 -4682352,2000039306,1,18,17,1,2000039306,2,6.0,-9.0,-9.0,15.0,4.0,1901302 -4682353,2000039307,3,20,17,1,2000039307,2,6.0,-9.0,-9.0,15.0,4.0,1901303 -4682354,2000039308,1,18,17,1,2000039308,2,6.0,50.0,3.0,15.0,4.0,1901304 -4682355,2000039309,3,20,17,1,2000039309,2,6.0,-9.0,-9.0,15.0,4.0,1901305 -4682356,2000039310,2,22,17,1,2000039310,2,3.0,-9.0,-9.0,-9.0,4.0,1901306 -4682357,2000039311,1,18,17,1,2000039311,2,6.0,24.0,1.0,15.0,4.0,1901307 -4682358,2000039312,1,18,17,1,2000039312,1,6.0,-9.0,-9.0,15.0,4.0,1901308 -4682359,2000039313,1,18,17,1,2000039313,2,6.0,24.0,1.0,15.0,4.0,1901309 -4682360,2000039314,3,20,17,1,2000039314,2,6.0,-9.0,-9.0,15.0,4.0,1901310 -4682361,2000039315,2,22,17,1,2000039315,2,3.0,-9.0,-9.0,-9.0,4.0,1901311 -4682362,2000039316,3,20,17,1,2000039316,2,6.0,-9.0,-9.0,15.0,4.0,1901312 -4682363,2000039317,1,18,17,1,2000039317,2,6.0,24.0,1.0,15.0,4.0,1901313 -4682364,2000039318,3,20,17,1,2000039318,2,6.0,-9.0,-9.0,15.0,4.0,1901314 -4682365,2000039319,2,20,17,1,2000039319,2,1.0,20.0,5.0,15.0,4.0,1901315 -4682366,2000039320,2,22,17,1,2000039320,1,6.0,-9.0,-9.0,-9.0,4.0,1901316 -4682367,2000039321,2,18,17,1,2000039321,1,6.0,-9.0,-9.0,-9.0,4.0,1901317 -4682368,2000039322,1,18,17,1,2000039322,2,6.0,-9.0,-9.0,15.0,4.0,1901318 -4682369,2000039323,3,20,17,1,2000039323,2,6.0,-9.0,-9.0,15.0,4.0,1901319 -4682370,2000039324,2,22,17,1,2000039324,1,3.0,-9.0,-9.0,15.0,4.0,1901320 -4682371,2000039325,2,22,17,1,2000039325,1,3.0,25.0,2.0,15.0,4.0,1901321 -4682372,2000039326,1,18,17,1,2000039326,2,6.0,24.0,1.0,15.0,4.0,1901322 -4682373,2000039327,2,22,17,1,2000039327,2,6.0,40.0,5.0,-9.0,4.0,1901323 -4682374,2000039328,3,20,17,1,2000039328,2,6.0,-9.0,-9.0,15.0,4.0,1901324 -4682375,2000039329,3,20,17,1,2000039329,2,6.0,-9.0,-9.0,15.0,4.0,1901325 -4682376,2000039330,3,20,17,1,2000039330,2,6.0,-9.0,-9.0,15.0,4.0,1901326 -4682377,2000039331,2,20,17,1,2000039331,1,6.0,-9.0,-9.0,15.0,4.0,1901327 -4682378,2000039332,3,20,17,1,2000039332,2,6.0,-9.0,-9.0,15.0,4.0,1901328 -4682379,2000039333,3,20,17,1,2000039333,2,6.0,-9.0,-9.0,15.0,4.0,1901329 -4682380,2000039334,1,18,17,1,2000039334,2,6.0,-9.0,-9.0,15.0,4.0,1901330 -4682381,2000039335,3,20,17,1,2000039335,2,6.0,-9.0,-9.0,15.0,4.0,1901331 -4682382,2000039336,2,22,17,1,2000039336,1,6.0,40.0,6.0,16.0,4.0,1901332 -4682383,2000039337,2,20,17,1,2000039337,2,1.0,12.0,5.0,15.0,4.0,1901333 -4682384,2000039338,1,18,17,1,2000039338,2,6.0,-9.0,-9.0,15.0,4.0,1901334 -4682385,2000039339,3,20,17,1,2000039339,2,6.0,-9.0,-9.0,15.0,4.0,1901335 -4682386,2000039340,1,18,17,1,2000039340,2,6.0,-9.0,-9.0,15.0,4.0,1901336 -4682387,2000039341,3,20,17,1,2000039341,2,6.0,-9.0,-9.0,15.0,4.0,1901337 -4682388,2000039342,3,20,17,1,2000039342,2,6.0,-9.0,-9.0,15.0,4.0,1901338 -4682389,2000039343,3,20,17,1,2000039343,2,6.0,-9.0,-9.0,15.0,4.0,1901339 -4682390,2000039344,3,20,17,1,2000039344,2,6.0,-9.0,-9.0,15.0,4.0,1901340 -4682391,2000039345,2,22,17,1,2000039345,2,1.0,16.0,1.0,-9.0,4.0,1901341 -4682392,2000039346,3,20,17,1,2000039346,2,6.0,-9.0,-9.0,15.0,4.0,1901342 -4682393,2000039347,3,20,17,1,2000039347,2,6.0,-9.0,-9.0,15.0,4.0,1901343 -4682394,2000039348,1,27,17,1,2000039348,1,6.0,40.0,5.0,-9.0,4.0,1901344 -4682395,2000039349,1,18,17,1,2000039349,1,6.0,-9.0,-9.0,15.0,4.0,1901345 -4682396,2000039350,2,22,17,1,2000039350,2,3.0,-9.0,-9.0,-9.0,4.0,1901346 -4682397,2000039351,3,20,17,1,2000039351,2,6.0,-9.0,-9.0,15.0,4.0,1901347 -4682398,2000039352,2,22,17,1,2000039352,1,6.0,35.0,5.0,-9.0,4.0,1901348 -4682399,2000039353,1,18,17,1,2000039353,1,6.0,-9.0,-9.0,15.0,4.0,1901349 -4682400,2000039354,3,20,17,1,2000039354,2,6.0,-9.0,-9.0,15.0,4.0,1901350 -4682401,2000039355,2,22,17,1,2000039355,2,1.0,16.0,1.0,-9.0,4.0,1901351 -4682402,2000039356,3,20,17,1,2000039356,2,6.0,-9.0,-9.0,15.0,4.0,1901352 -4682403,2000039357,2,20,17,1,2000039357,1,6.0,-9.0,-9.0,15.0,4.0,1901353 -4682404,2000039358,3,20,17,1,2000039358,2,6.0,-9.0,-9.0,15.0,4.0,1901354 -4682405,2000039359,3,20,17,1,2000039359,2,6.0,-9.0,-9.0,15.0,4.0,1901355 -4682406,2000039360,3,20,17,1,2000039360,2,6.0,-9.0,-9.0,15.0,4.0,1901356 -4682407,2000039361,3,20,17,1,2000039361,2,6.0,-9.0,-9.0,15.0,4.0,1901357 -4682408,2000039362,2,18,17,1,2000039362,2,6.0,-9.0,-9.0,15.0,4.0,1901358 -4682409,2000039363,3,20,17,1,2000039363,2,6.0,-9.0,-9.0,15.0,4.0,1901359 -4682410,2000039364,2,22,17,1,2000039364,2,3.0,-9.0,-9.0,13.0,4.0,1901360 -4682411,2000039365,2,20,17,1,2000039365,1,6.0,-9.0,-9.0,15.0,4.0,1901361 -4682412,2000039366,2,20,17,1,2000039366,2,1.0,12.0,5.0,15.0,4.0,1901362 -4682413,2000039367,2,20,17,1,2000039367,1,6.0,-9.0,-9.0,15.0,4.0,1901363 -4682414,2000039368,3,20,17,1,2000039368,2,6.0,-9.0,-9.0,15.0,4.0,1901364 -4682415,2000039369,3,20,17,1,2000039369,2,6.0,-9.0,-9.0,15.0,4.0,1901365 -4682416,2000039370,3,20,17,1,2000039370,2,6.0,-9.0,-9.0,15.0,4.0,1901366 -4682417,2000039371,2,22,17,1,2000039371,1,6.0,35.0,5.0,-9.0,4.0,1901367 -4682418,2000039372,3,20,17,1,2000039372,2,6.0,-9.0,-9.0,15.0,4.0,1901368 -4682419,2000039373,1,18,17,1,2000039373,2,6.0,-9.0,-9.0,15.0,4.0,1901369 -4682420,2000039374,1,26,17,1,2000039374,1,6.0,-9.0,-9.0,-9.0,4.0,1901370 -4682421,2000039375,1,18,17,1,2000039375,2,6.0,-9.0,-9.0,15.0,4.0,1901371 -4682422,2000039376,2,18,17,1,2000039376,2,6.0,-9.0,-9.0,13.0,4.0,1901372 -4682423,2000039377,1,18,17,1,2000039377,2,6.0,-9.0,-9.0,15.0,4.0,1901373 -4682424,2000039378,1,18,17,1,2000039378,2,1.0,9.0,4.0,15.0,4.0,1901374 -4682425,2000039379,3,20,17,1,2000039379,2,6.0,-9.0,-9.0,15.0,4.0,1901375 -4682426,2000039380,3,20,17,1,2000039380,2,6.0,-9.0,-9.0,15.0,4.0,1901376 -4682427,2000039381,3,20,17,1,2000039381,2,6.0,-9.0,-9.0,15.0,4.0,1901377 -4682428,2000039382,3,20,17,1,2000039382,2,6.0,-9.0,-9.0,15.0,4.0,1901378 -4682429,2000039383,3,20,17,1,2000039383,2,6.0,-9.0,-9.0,15.0,4.0,1901379 -4682430,2000039384,2,22,17,1,2000039384,2,3.0,-9.0,-9.0,13.0,4.0,1901380 -4682431,2000039385,3,20,17,1,2000039385,2,6.0,-9.0,-9.0,15.0,4.0,1901381 -4682432,2000039386,2,22,17,1,2000039386,1,6.0,35.0,5.0,-9.0,4.0,1901382 -4682433,2000039387,3,20,17,1,2000039387,2,6.0,-9.0,-9.0,15.0,4.0,1901383 -4682434,2000039388,3,20,17,1,2000039388,2,6.0,-9.0,-9.0,15.0,4.0,1901384 -4682435,2000039389,3,20,17,1,2000039389,2,6.0,-9.0,-9.0,15.0,4.0,1901385 -4682436,2000039390,2,20,17,1,2000039390,1,6.0,-9.0,-9.0,15.0,4.0,1901386 -4682437,2000039391,2,25,17,1,2000039391,1,6.0,-9.0,-9.0,-9.0,4.0,1901387 -4682438,2000039392,2,22,17,1,2000039392,2,3.0,-9.0,-9.0,13.0,4.0,1901388 -4682439,2000039393,1,18,17,1,2000039393,1,6.0,-9.0,-9.0,15.0,4.0,1901389 -4682440,2000039394,1,27,17,1,2000039394,1,6.0,40.0,5.0,-9.0,4.0,1901390 -4682441,2000039395,1,18,17,1,2000039395,2,6.0,-9.0,-9.0,15.0,4.0,1901391 -4682442,2000039396,1,18,17,1,2000039396,1,6.0,-9.0,-9.0,15.0,4.0,1901392 -4682443,2000039397,2,22,17,1,2000039397,1,6.0,40.0,6.0,16.0,4.0,1901393 -4682444,2000039398,2,22,17,1,2000039398,1,6.0,40.0,6.0,16.0,4.0,1901394 -4682445,2000039399,2,22,17,1,2000039399,1,6.0,35.0,5.0,-9.0,4.0,1901395 -4682446,2000039400,3,20,17,1,2000039400,2,6.0,-9.0,-9.0,15.0,4.0,1901396 -4682447,2000039401,1,27,17,1,2000039401,1,6.0,40.0,5.0,-9.0,4.0,1901397 -4682448,2000039402,1,18,17,1,2000039402,2,1.0,9.0,4.0,15.0,4.0,1901398 -4682449,2000039403,2,22,17,1,2000039403,1,6.0,35.0,5.0,-9.0,4.0,1901399 -4682450,2000039404,1,18,17,1,2000039404,1,6.0,-9.0,-9.0,15.0,4.0,1901400 -4682451,2000039405,3,20,17,1,2000039405,2,6.0,-9.0,-9.0,15.0,4.0,1901401 -4682452,2000039406,1,26,17,1,2000039406,1,6.0,-9.0,-9.0,-9.0,4.0,1901402 -4682453,2000039407,2,25,17,1,2000039407,2,3.0,-9.0,-9.0,-9.0,4.0,1901403 -4682454,2000039408,3,20,17,1,2000039408,2,6.0,-9.0,-9.0,15.0,4.0,1901404 -4682455,2000039409,1,18,17,1,2000039409,2,6.0,-9.0,-9.0,15.0,4.0,1901405 -4682456,2000039410,2,22,17,1,2000039410,2,1.0,16.0,1.0,-9.0,4.0,1901406 -4682457,2000039411,3,20,17,1,2000039411,2,6.0,-9.0,-9.0,15.0,4.0,1901407 -4682458,2000039412,2,22,17,1,2000039412,1,3.0,25.0,2.0,15.0,4.0,1901408 -4682459,2000039413,2,20,17,1,2000039413,2,1.0,12.0,5.0,15.0,4.0,1901409 -4682460,2000039414,1,27,17,1,2000039414,1,6.0,40.0,5.0,-9.0,4.0,1901410 -4682461,2000039415,3,20,17,1,2000039415,2,6.0,-9.0,-9.0,15.0,4.0,1901411 -4682462,2000039416,3,20,17,1,2000039416,2,6.0,-9.0,-9.0,15.0,4.0,1901412 -4682463,2000039417,2,22,17,1,2000039417,1,3.0,25.0,2.0,15.0,4.0,1901413 -4682464,2000039418,3,20,17,1,2000039418,2,6.0,-9.0,-9.0,15.0,4.0,1901414 -4682465,2000039419,2,18,17,1,2000039419,2,6.0,-9.0,-9.0,15.0,4.0,1901415 -4682466,2000039420,3,20,17,1,2000039420,2,6.0,-9.0,-9.0,15.0,4.0,1901416 -4682467,2000039421,2,25,17,1,2000039421,1,6.0,-9.0,-9.0,-9.0,4.0,1901417 -4682468,2000039422,3,20,17,1,2000039422,2,6.0,-9.0,-9.0,15.0,4.0,1901418 -4682469,2000039423,3,20,17,1,2000039423,2,6.0,-9.0,-9.0,15.0,4.0,1901419 -4682470,2000039424,1,26,17,1,2000039424,1,6.0,-9.0,-9.0,-9.0,4.0,1901420 -4682471,2000039425,2,22,17,1,2000039425,2,3.0,-9.0,-9.0,-9.0,4.0,1901421 -4682472,2000039426,3,20,17,1,2000039426,2,6.0,-9.0,-9.0,15.0,4.0,1901422 -4682473,2000039427,3,20,17,1,2000039427,2,6.0,-9.0,-9.0,15.0,4.0,1901423 -4682474,2000039428,3,20,17,1,2000039428,2,6.0,-9.0,-9.0,15.0,4.0,1901424 -4682475,2000039429,3,20,17,1,2000039429,2,6.0,-9.0,-9.0,15.0,4.0,1901425 -4682476,2000039430,2,20,17,1,2000039430,2,1.0,12.0,5.0,15.0,4.0,1901426 -4682477,2000039431,2,22,17,1,2000039431,2,6.0,40.0,5.0,-9.0,4.0,1901427 -4682478,2000039432,3,20,17,1,2000039432,2,6.0,-9.0,-9.0,15.0,4.0,1901428 -4682479,2000039433,3,20,17,1,2000039433,2,6.0,-9.0,-9.0,15.0,4.0,1901429 -4682480,2000039434,3,20,17,1,2000039434,2,6.0,-9.0,-9.0,15.0,4.0,1901430 -4682481,2000039435,3,20,17,1,2000039435,2,6.0,-9.0,-9.0,15.0,4.0,1901431 -4682482,2000039436,1,18,17,1,2000039436,2,6.0,-9.0,-9.0,15.0,4.0,1901432 -4682483,2000039437,3,20,17,1,2000039437,2,6.0,-9.0,-9.0,15.0,4.0,1901433 -4682484,2000039438,3,20,17,1,2000039438,2,6.0,-9.0,-9.0,15.0,4.0,1901434 -4682485,2000039439,2,20,17,1,2000039439,2,1.0,12.0,5.0,15.0,4.0,1901435 -4682486,2000039440,3,20,17,1,2000039440,2,6.0,-9.0,-9.0,15.0,4.0,1901436 -4682487,2000039441,1,18,17,1,2000039441,2,6.0,24.0,1.0,15.0,4.0,1901437 -4682488,2000039442,3,20,17,1,2000039442,2,6.0,-9.0,-9.0,15.0,4.0,1901438 -4682489,2000039443,3,20,17,1,2000039443,2,6.0,-9.0,-9.0,15.0,4.0,1901439 -4682490,2000039444,2,22,17,1,2000039444,2,1.0,16.0,1.0,-9.0,4.0,1901440 -4682491,2000039445,2,22,17,1,2000039445,2,3.0,-9.0,-9.0,-9.0,4.0,1901441 -4682492,2000039446,1,26,17,1,2000039446,1,6.0,-9.0,-9.0,-9.0,4.0,1901442 -4682493,2000039447,3,20,17,1,2000039447,2,6.0,-9.0,-9.0,15.0,4.0,1901443 -4682494,2000039448,2,20,17,1,2000039448,1,6.0,-9.0,-9.0,15.0,4.0,1901444 -4682495,2000039449,3,20,17,1,2000039449,2,6.0,-9.0,-9.0,15.0,4.0,1901445 -4682496,2000039450,3,20,17,1,2000039450,2,6.0,-9.0,-9.0,15.0,4.0,1901446 -4682497,2000039451,3,20,17,1,2000039451,2,6.0,-9.0,-9.0,15.0,4.0,1901447 -4682498,2000039452,3,20,17,1,2000039452,2,6.0,-9.0,-9.0,15.0,4.0,1901448 -4682499,2000039453,2,22,17,1,2000039453,2,1.0,16.0,1.0,-9.0,4.0,1901449 -4682500,2000039454,2,22,17,1,2000039454,2,3.0,-9.0,-9.0,-9.0,4.0,1901450 -4682501,2000039455,3,20,17,1,2000039455,2,6.0,-9.0,-9.0,15.0,4.0,1901451 -4682502,2000039456,2,22,17,1,2000039456,1,3.0,25.0,2.0,15.0,4.0,1901452 -4682503,2000039457,2,22,17,1,2000039457,2,6.0,40.0,5.0,-9.0,4.0,1901453 -4682504,2000039458,2,18,17,1,2000039458,2,6.0,-9.0,-9.0,15.0,4.0,1901454 -4682505,2000039459,3,20,17,1,2000039459,2,6.0,-9.0,-9.0,15.0,4.0,1901455 -4682506,2000039460,3,20,17,1,2000039460,2,6.0,-9.0,-9.0,15.0,4.0,1901456 -4682507,2000039461,3,20,17,1,2000039461,2,6.0,-9.0,-9.0,15.0,4.0,1901457 -4682508,2000039462,3,20,17,1,2000039462,2,6.0,-9.0,-9.0,15.0,4.0,1901458 -4682509,2000039463,3,20,17,1,2000039463,2,6.0,-9.0,-9.0,15.0,4.0,1901459 -4682510,2000039464,1,18,17,1,2000039464,2,6.0,50.0,3.0,15.0,4.0,1901460 -4682511,2000039465,3,20,17,1,2000039465,2,6.0,-9.0,-9.0,15.0,4.0,1901461 -4682512,2000039466,2,22,17,1,2000039466,2,1.0,16.0,1.0,-9.0,4.0,1901462 -4682513,2000039467,2,20,17,1,2000039467,2,1.0,12.0,5.0,15.0,4.0,1901463 -4682514,2000039468,2,18,17,1,2000039468,2,6.0,-9.0,-9.0,13.0,4.0,1901464 -4682515,2000039469,3,20,17,1,2000039469,2,6.0,-9.0,-9.0,15.0,4.0,1901465 -4682516,2000039470,3,20,17,1,2000039470,2,6.0,-9.0,-9.0,15.0,4.0,1901466 -4682517,2000039471,3,20,17,1,2000039471,2,6.0,-9.0,-9.0,15.0,4.0,1901467 -4682518,2000039472,2,22,17,1,2000039472,2,3.0,-9.0,-9.0,-9.0,4.0,1901468 -4682519,2000039473,3,20,17,1,2000039473,2,6.0,-9.0,-9.0,15.0,4.0,1901469 -4682520,2000039474,3,20,17,1,2000039474,2,6.0,-9.0,-9.0,15.0,4.0,1901470 -4682521,2000039475,1,18,17,1,2000039475,2,6.0,50.0,3.0,15.0,4.0,1901471 -4682522,2000039476,3,20,17,1,2000039476,2,6.0,-9.0,-9.0,15.0,4.0,1901472 -4682523,2000039477,3,20,17,1,2000039477,2,6.0,-9.0,-9.0,15.0,4.0,1901473 -4682524,2000039478,3,20,17,1,2000039478,2,6.0,-9.0,-9.0,15.0,4.0,1901474 -4682525,2000039479,2,22,17,1,2000039479,2,6.0,40.0,5.0,-9.0,4.0,1901475 -4682526,2000039480,2,20,17,1,2000039480,2,1.0,20.0,5.0,15.0,4.0,1901476 -4682527,2000039481,1,18,17,1,2000039481,2,6.0,-9.0,-9.0,15.0,4.0,1901477 -4682528,2000039482,1,27,17,1,2000039482,1,6.0,40.0,5.0,-9.0,4.0,1901478 -4682529,2000039483,3,20,17,1,2000039483,2,6.0,-9.0,-9.0,15.0,4.0,1901479 -4682530,2000039484,3,20,17,1,2000039484,2,6.0,-9.0,-9.0,15.0,4.0,1901480 -4682531,2000039485,3,20,17,1,2000039485,2,6.0,-9.0,-9.0,15.0,4.0,1901481 -4682532,2000039486,3,20,17,1,2000039486,2,6.0,-9.0,-9.0,15.0,4.0,1901482 -4682533,2000039487,2,22,17,1,2000039487,2,3.0,-9.0,-9.0,-9.0,4.0,1901483 -4682534,2000039488,3,20,17,1,2000039488,2,6.0,-9.0,-9.0,15.0,4.0,1901484 -4682535,2000039489,3,20,17,1,2000039489,2,6.0,-9.0,-9.0,15.0,4.0,1901485 -4682536,2000039490,2,25,17,1,2000039490,1,6.0,-9.0,-9.0,-9.0,4.0,1901486 -4682537,2000039491,2,18,17,1,2000039491,2,6.0,-9.0,-9.0,13.0,4.0,1901487 -4682538,2000039492,2,18,17,1,2000039492,2,3.0,40.0,4.0,14.0,4.0,1901488 -4682539,2000039493,3,20,17,1,2000039493,2,6.0,-9.0,-9.0,15.0,4.0,1901489 -4682540,2000039494,3,20,17,1,2000039494,2,6.0,-9.0,-9.0,15.0,4.0,1901490 -4682541,2000039495,2,22,17,1,2000039495,2,3.0,-9.0,-9.0,13.0,4.0,1901491 -4682542,2000039496,2,18,17,1,2000039496,1,6.0,-9.0,-9.0,-9.0,4.0,1901492 -4682543,2000039497,2,22,17,1,2000039497,2,6.0,40.0,5.0,-9.0,4.0,1901493 -4682544,2000039498,3,20,17,1,2000039498,2,6.0,-9.0,-9.0,15.0,4.0,1901494 -4682545,2000039499,1,26,17,1,2000039499,1,6.0,-9.0,-9.0,-9.0,4.0,1901495 -4682546,2000039500,2,22,17,1,2000039500,2,6.0,40.0,5.0,-9.0,4.0,1901496 -4682547,2000039501,2,20,17,1,2000039501,2,1.0,20.0,5.0,15.0,4.0,1901497 -4682548,2000039502,3,20,17,1,2000039502,2,6.0,-9.0,-9.0,15.0,4.0,1901498 -4682549,2000039503,3,20,17,1,2000039503,2,6.0,-9.0,-9.0,15.0,4.0,1901499 -4682550,2000039504,1,27,17,1,2000039504,1,6.0,40.0,5.0,-9.0,4.0,1901500 -4682551,2000039505,3,20,17,1,2000039505,2,6.0,-9.0,-9.0,15.0,4.0,1901501 -4682552,2000039506,2,22,17,1,2000039506,1,3.0,25.0,2.0,15.0,4.0,1901502 -4682553,2000039507,2,18,17,1,2000039507,2,6.0,-9.0,-9.0,15.0,4.0,1901503 -4682554,2000039508,2,22,17,1,2000039508,2,3.0,-9.0,-9.0,13.0,4.0,1901504 -4682555,2000039509,2,22,17,1,2000039509,1,6.0,40.0,6.0,16.0,4.0,1901505 -4682556,2000039510,3,20,17,1,2000039510,2,6.0,-9.0,-9.0,15.0,4.0,1901506 -4682557,2000039511,1,18,17,1,2000039511,2,6.0,-9.0,-9.0,15.0,4.0,1901507 -4682558,2000039512,2,22,17,1,2000039512,1,3.0,-9.0,-9.0,15.0,4.0,1901508 -4682559,2000039513,3,20,17,1,2000039513,2,6.0,-9.0,-9.0,15.0,4.0,1901509 -4682560,2000039514,3,20,17,1,2000039514,2,6.0,-9.0,-9.0,15.0,4.0,1901510 -4682561,2000039515,1,26,17,1,2000039515,1,6.0,-9.0,-9.0,-9.0,4.0,1901511 -4682562,2000039516,2,18,17,1,2000039516,2,3.0,40.0,4.0,14.0,4.0,1901512 -4682563,2000039517,1,26,17,1,2000039517,1,6.0,-9.0,-9.0,-9.0,4.0,1901513 -4682564,2000039518,1,18,17,1,2000039518,1,6.0,-9.0,-9.0,15.0,4.0,1901514 -4682565,2000039519,2,18,17,1,2000039519,1,6.0,-9.0,-9.0,-9.0,4.0,1901515 -4682566,2000039520,1,18,17,1,2000039520,1,6.0,-9.0,-9.0,15.0,4.0,1901516 -4682567,2000039521,3,20,17,1,2000039521,2,6.0,-9.0,-9.0,15.0,4.0,1901517 -4682568,2000039522,3,20,17,1,2000039522,2,6.0,-9.0,-9.0,15.0,4.0,1901518 -4682569,2000039523,3,20,17,1,2000039523,2,6.0,-9.0,-9.0,15.0,4.0,1901519 -4682570,2000039524,1,18,17,1,2000039524,1,6.0,-9.0,-9.0,15.0,4.0,1901520 -4682571,2000039525,3,20,17,1,2000039525,2,6.0,-9.0,-9.0,15.0,4.0,1901521 -4682572,2000039526,3,20,17,1,2000039526,2,6.0,-9.0,-9.0,15.0,4.0,1901522 -4682573,2000039527,1,18,17,1,2000039527,2,6.0,-9.0,-9.0,15.0,4.0,1901523 -4682574,2000039528,1,18,17,1,2000039528,1,6.0,-9.0,-9.0,15.0,4.0,1901524 -4682575,2000039529,3,20,17,1,2000039529,2,6.0,-9.0,-9.0,15.0,4.0,1901525 -4682576,2000039530,3,20,17,1,2000039530,2,6.0,-9.0,-9.0,15.0,4.0,1901526 -4682577,2000039531,2,22,17,1,2000039531,2,1.0,16.0,1.0,-9.0,4.0,1901527 -4682578,2000039532,3,20,17,1,2000039532,2,6.0,-9.0,-9.0,15.0,4.0,1901528 -4682579,2000039533,3,20,17,1,2000039533,2,6.0,-9.0,-9.0,15.0,4.0,1901529 -4682580,2000039534,1,18,17,1,2000039534,2,1.0,9.0,4.0,15.0,4.0,1901530 -4682581,2000039535,3,20,17,1,2000039535,2,6.0,-9.0,-9.0,15.0,4.0,1901531 -4682582,2000039536,3,20,17,1,2000039536,2,6.0,-9.0,-9.0,15.0,4.0,1901532 -4682583,2000039537,1,18,17,1,2000039537,2,6.0,-9.0,-9.0,15.0,4.0,1901533 -4682584,2000039538,3,20,17,1,2000039538,2,6.0,-9.0,-9.0,15.0,4.0,1901534 -4682585,2000039539,2,18,17,1,2000039539,2,3.0,40.0,4.0,14.0,4.0,1901535 -4682586,2000039540,1,26,17,1,2000039540,1,6.0,-9.0,-9.0,-9.0,4.0,1901536 -4682587,2000039541,3,20,17,1,2000039541,2,6.0,-9.0,-9.0,15.0,4.0,1901537 -4682588,2000039542,3,20,17,1,2000039542,2,6.0,-9.0,-9.0,15.0,4.0,1901538 -4682589,2000039543,3,20,17,1,2000039543,2,6.0,-9.0,-9.0,15.0,4.0,1901539 -4682590,2000039544,2,18,17,1,2000039544,2,6.0,-9.0,-9.0,15.0,4.0,1901540 -4682591,2000039545,2,25,17,1,2000039545,2,3.0,-9.0,-9.0,-9.0,4.0,1901541 -4682592,2000039546,2,22,17,1,2000039546,1,3.0,25.0,2.0,15.0,4.0,1901542 -4682593,2000039547,3,20,17,1,2000039547,2,6.0,-9.0,-9.0,15.0,4.0,1901543 -4682594,2000039548,2,20,17,1,2000039548,2,1.0,12.0,5.0,15.0,4.0,1901544 -4682595,2000039549,1,18,17,1,2000039549,2,6.0,-9.0,-9.0,15.0,4.0,1901545 -4682596,2000039550,1,27,17,1,2000039550,1,6.0,40.0,5.0,-9.0,4.0,1901546 -4682597,2000039551,2,20,17,1,2000039551,2,1.0,12.0,5.0,15.0,4.0,1901547 -4682598,2000039552,3,20,17,1,2000039552,2,6.0,-9.0,-9.0,15.0,4.0,1901548 -4682599,2000039553,1,18,17,1,2000039553,2,6.0,24.0,1.0,15.0,4.0,1901549 -4682600,2000039554,3,20,17,1,2000039554,2,6.0,-9.0,-9.0,15.0,4.0,1901550 -4682601,2000039555,2,22,17,1,2000039555,1,3.0,25.0,2.0,15.0,4.0,1901551 -4682602,2000039556,2,22,17,1,2000039556,2,6.0,40.0,5.0,-9.0,4.0,1901552 -4682603,2000039557,1,18,17,1,2000039557,2,6.0,24.0,1.0,15.0,4.0,1901553 -4682604,2000039558,3,20,17,1,2000039558,2,6.0,-9.0,-9.0,15.0,4.0,1901554 -4682605,2000039559,2,20,17,1,2000039559,2,1.0,20.0,5.0,15.0,4.0,1901555 -4682606,2000039560,1,18,17,1,2000039560,2,6.0,-9.0,-9.0,15.0,4.0,1901556 -4682607,2000039561,1,18,17,1,2000039561,2,6.0,50.0,3.0,15.0,4.0,1901557 -4682608,2000039562,2,18,17,1,2000039562,2,6.0,-9.0,-9.0,13.0,4.0,1901558 -4682609,2000039563,2,22,17,1,2000039563,2,6.0,40.0,5.0,-9.0,4.0,1901559 -4682610,2000039564,3,20,17,1,2000039564,2,6.0,-9.0,-9.0,15.0,4.0,1901560 -4682611,2000039565,3,20,17,1,2000039565,2,6.0,-9.0,-9.0,15.0,4.0,1901561 -4682612,2000039566,2,25,17,1,2000039566,2,3.0,-9.0,-9.0,-9.0,4.0,1901562 -4682613,2000039567,3,20,17,1,2000039567,2,6.0,-9.0,-9.0,15.0,4.0,1901563 -4682614,2000039568,3,20,17,1,2000039568,2,6.0,-9.0,-9.0,15.0,4.0,1901564 -4682615,2000039569,3,20,17,1,2000039569,2,6.0,-9.0,-9.0,15.0,4.0,1901565 -4682616,2000039570,3,20,17,1,2000039570,2,6.0,-9.0,-9.0,15.0,4.0,1901566 -4682617,2000039571,3,20,17,1,2000039571,2,6.0,-9.0,-9.0,15.0,4.0,1901567 -4682618,2000039572,2,22,17,1,2000039572,1,3.0,-9.0,-9.0,15.0,4.0,1901568 -4682619,2000039573,2,18,17,1,2000039573,2,6.0,-9.0,-9.0,13.0,4.0,1901569 -4682620,2000039574,1,18,17,1,2000039574,2,6.0,-9.0,-9.0,15.0,4.0,1901570 -4682621,2000039575,3,20,17,1,2000039575,2,6.0,-9.0,-9.0,15.0,4.0,1901571 -4682622,2000039576,2,18,17,1,2000039576,1,6.0,-9.0,-9.0,-9.0,4.0,1901572 -4682623,2000039577,2,22,17,1,2000039577,1,6.0,-9.0,-9.0,-9.0,4.0,1901573 -4682624,2000039578,2,20,17,1,2000039578,2,1.0,20.0,5.0,15.0,4.0,1901574 -4682625,2000039579,3,20,17,1,2000039579,2,6.0,-9.0,-9.0,15.0,4.0,1901575 -4682626,2000039580,1,18,17,1,2000039580,2,6.0,-9.0,-9.0,15.0,4.0,1901576 -4682627,2000039581,3,20,17,1,2000039581,2,6.0,-9.0,-9.0,15.0,4.0,1901577 -4682628,2000039582,1,18,17,1,2000039582,2,6.0,50.0,3.0,15.0,4.0,1901578 -4682629,2000039583,3,20,17,1,2000039583,2,6.0,-9.0,-9.0,15.0,4.0,1901579 -4682630,2000039584,3,20,17,1,2000039584,2,6.0,-9.0,-9.0,15.0,4.0,1901580 -4682631,2000039585,1,18,17,1,2000039585,1,6.0,-9.0,-9.0,15.0,4.0,1901581 -4682632,2000039586,2,18,17,1,2000039586,2,6.0,-9.0,-9.0,13.0,4.0,1901582 -4682633,2000039587,3,20,17,1,2000039587,2,6.0,-9.0,-9.0,15.0,4.0,1901583 -4682634,2000039588,2,22,17,1,2000039588,1,3.0,16.0,1.0,15.0,4.0,1901584 -4682635,2000039589,2,22,17,1,2000039589,1,6.0,35.0,5.0,-9.0,4.0,1901585 -4682636,2000039590,1,27,17,1,2000039590,1,6.0,40.0,5.0,-9.0,4.0,1901586 -4682637,2000039591,3,20,17,1,2000039591,2,6.0,-9.0,-9.0,15.0,4.0,1901587 -4682638,2000039592,3,20,17,1,2000039592,2,6.0,-9.0,-9.0,15.0,4.0,1901588 -4682639,2000039593,2,18,17,1,2000039593,2,6.0,-9.0,-9.0,13.0,4.0,1901589 -4682640,2000039594,1,18,17,1,2000039594,2,6.0,8.0,6.0,15.0,4.0,1901590 -4682641,2000039595,3,20,17,1,2000039595,2,6.0,-9.0,-9.0,15.0,4.0,1901591 -4682642,2000039596,3,20,17,1,2000039596,2,6.0,-9.0,-9.0,15.0,4.0,1901592 -4682643,2000039597,3,20,17,1,2000039597,2,6.0,-9.0,-9.0,15.0,4.0,1901593 -4682644,2000039598,3,20,17,1,2000039598,2,6.0,-9.0,-9.0,15.0,4.0,1901594 -4682645,2000039599,3,20,17,1,2000039599,2,6.0,-9.0,-9.0,15.0,4.0,1901595 -4682646,2000039600,3,20,17,1,2000039600,2,6.0,-9.0,-9.0,15.0,4.0,1901596 -4682647,2000039601,3,20,17,1,2000039601,2,6.0,-9.0,-9.0,15.0,4.0,1901597 -4682648,2000039602,1,18,17,1,2000039602,2,1.0,9.0,4.0,15.0,4.0,1901598 -4682649,2000039603,3,20,17,1,2000039603,2,6.0,-9.0,-9.0,15.0,4.0,1901599 -4682650,2000039604,2,22,17,1,2000039604,2,3.0,-9.0,-9.0,-9.0,4.0,1901600 -4682651,2000039605,1,18,17,1,2000039605,1,6.0,-9.0,-9.0,15.0,4.0,1901601 -4682652,2000039606,2,22,17,1,2000039606,2,1.0,16.0,1.0,-9.0,4.0,1901602 -4682653,2000039607,3,20,17,1,2000039607,2,6.0,-9.0,-9.0,15.0,4.0,1901603 -4682654,2000039608,3,20,17,1,2000039608,2,6.0,-9.0,-9.0,15.0,4.0,1901604 -4682655,2000039609,1,26,17,1,2000039609,1,6.0,-9.0,-9.0,-9.0,4.0,1901605 -4682656,2000039610,2,22,17,1,2000039610,2,6.0,40.0,5.0,-9.0,4.0,1901606 -4682657,2000039611,1,18,17,1,2000039611,2,1.0,9.0,4.0,15.0,4.0,1901607 -4682658,2000039612,3,20,17,1,2000039612,2,6.0,-9.0,-9.0,15.0,4.0,1901608 -4682659,2000039613,2,22,17,1,2000039613,2,1.0,16.0,1.0,-9.0,4.0,1901609 -4682660,2000039614,2,18,17,1,2000039614,2,6.0,-9.0,-9.0,15.0,4.0,1901610 -4682661,2000039615,2,22,17,1,2000039615,2,6.0,40.0,5.0,-9.0,4.0,1901611 -4682662,2000039616,2,22,17,1,2000039616,2,6.0,40.0,5.0,-9.0,4.0,1901612 -4682663,2000039617,1,18,17,1,2000039617,2,6.0,24.0,1.0,15.0,4.0,1901613 -4682664,2000039618,3,20,17,1,2000039618,2,6.0,-9.0,-9.0,15.0,4.0,1901614 -4682665,2000039619,3,20,17,1,2000039619,2,6.0,-9.0,-9.0,15.0,4.0,1901615 -4682666,2000039620,2,18,17,1,2000039620,2,6.0,-9.0,-9.0,13.0,4.0,1901616 -4682667,2000039621,3,20,17,1,2000039621,2,6.0,-9.0,-9.0,15.0,4.0,1901617 -4682668,2000039622,3,20,17,1,2000039622,2,6.0,-9.0,-9.0,15.0,4.0,1901618 -4682669,2000039623,3,20,17,1,2000039623,2,6.0,-9.0,-9.0,15.0,4.0,1901619 -4682670,2000039624,2,20,17,1,2000039624,1,6.0,-9.0,-9.0,15.0,4.0,1901620 -4682671,2000039625,3,20,17,1,2000039625,2,6.0,-9.0,-9.0,15.0,4.0,1901621 -4682672,2000039626,3,20,17,1,2000039626,2,6.0,-9.0,-9.0,15.0,4.0,1901622 -4682673,2000039627,2,22,17,1,2000039627,1,6.0,35.0,5.0,-9.0,4.0,1901623 -4682674,2000039628,2,18,17,1,2000039628,2,3.0,-9.0,-9.0,15.0,4.0,1901624 -4682675,2000039629,2,22,17,1,2000039629,2,3.0,-9.0,-9.0,13.0,4.0,1901625 -4682676,2000039630,2,20,17,1,2000039630,2,1.0,20.0,5.0,15.0,4.0,1901626 -4682677,2000039631,2,20,17,1,2000039631,2,1.0,20.0,5.0,15.0,4.0,1901627 -4682678,2000039632,2,18,17,1,2000039632,2,3.0,-9.0,-9.0,15.0,4.0,1901628 -4682679,2000039633,1,18,17,1,2000039633,2,6.0,-9.0,-9.0,15.0,4.0,1901629 -4682680,2000039634,3,20,17,1,2000039634,2,6.0,-9.0,-9.0,15.0,4.0,1901630 -4682681,2000039635,2,22,17,1,2000039635,1,6.0,35.0,5.0,-9.0,4.0,1901631 -4682682,2000039636,3,20,17,1,2000039636,2,6.0,-9.0,-9.0,15.0,4.0,1901632 -4682683,2000039637,3,20,17,1,2000039637,2,6.0,-9.0,-9.0,15.0,4.0,1901633 -4682684,2000039638,3,20,17,1,2000039638,2,6.0,-9.0,-9.0,15.0,4.0,1901634 -4682685,2000039639,2,18,17,1,2000039639,1,6.0,-9.0,-9.0,-9.0,4.0,1901635 -4682686,2000039640,3,20,17,1,2000039640,2,6.0,-9.0,-9.0,15.0,4.0,1901636 -4682687,2000039641,1,18,17,1,2000039641,2,6.0,-9.0,-9.0,15.0,4.0,1901637 -4682688,2000039642,2,20,17,1,2000039642,1,6.0,-9.0,-9.0,15.0,4.0,1901638 -4682689,2000039643,3,20,17,1,2000039643,2,6.0,-9.0,-9.0,15.0,4.0,1901639 -4682690,2000039644,3,20,17,1,2000039644,2,6.0,-9.0,-9.0,15.0,4.0,1901640 -4682691,2000039645,3,20,17,1,2000039645,2,6.0,-9.0,-9.0,15.0,4.0,1901641 -4682692,2000039646,2,18,17,1,2000039646,1,6.0,-9.0,-9.0,-9.0,4.0,1901642 -4682693,2000039647,3,20,17,1,2000039647,2,6.0,-9.0,-9.0,15.0,4.0,1901643 -4682694,2000039648,1,18,17,1,2000039648,2,6.0,-9.0,-9.0,15.0,4.0,1901644 -4682695,2000039649,3,20,17,1,2000039649,2,6.0,-9.0,-9.0,15.0,4.0,1901645 -4682696,2000039650,2,22,17,1,2000039650,1,3.0,25.0,2.0,15.0,4.0,1901646 -4682697,2000039651,3,20,17,1,2000039651,2,6.0,-9.0,-9.0,15.0,4.0,1901647 -4682698,2000039652,3,20,17,1,2000039652,2,6.0,-9.0,-9.0,15.0,4.0,1901648 -4682699,2000039653,3,20,17,1,2000039653,2,6.0,-9.0,-9.0,15.0,4.0,1901649 -4682700,2000039654,2,20,17,1,2000039654,2,1.0,12.0,5.0,15.0,4.0,1901650 -4682701,2000039655,1,18,17,1,2000039655,1,6.0,-9.0,-9.0,15.0,4.0,1901651 -4682702,2000039656,2,18,17,1,2000039656,2,6.0,-9.0,-9.0,13.0,4.0,1901652 -4682703,2000039657,1,26,17,1,2000039657,1,6.0,-9.0,-9.0,-9.0,4.0,1901653 -4682704,2000039658,3,20,17,1,2000039658,2,6.0,-9.0,-9.0,15.0,4.0,1901654 -4682705,2000039659,2,18,17,1,2000039659,2,3.0,-9.0,-9.0,15.0,4.0,1901655 -4682706,2000039660,2,18,17,1,2000039660,2,6.0,-9.0,-9.0,15.0,4.0,1901656 -4682707,2000039661,2,20,17,1,2000039661,1,6.0,-9.0,-9.0,15.0,4.0,1901657 -4682708,2000039662,3,20,17,1,2000039662,2,6.0,-9.0,-9.0,15.0,4.0,1901658 -4682709,2000039663,3,20,17,1,2000039663,2,6.0,-9.0,-9.0,15.0,4.0,1901659 -4682710,2000039664,1,18,17,1,2000039664,2,6.0,-9.0,-9.0,15.0,4.0,1901660 -4682711,2000039665,1,18,17,1,2000039665,2,6.0,8.0,6.0,15.0,4.0,1901661 -4682712,2000039666,3,20,17,1,2000039666,2,6.0,-9.0,-9.0,15.0,4.0,1901662 -4682713,2000039667,3,20,17,1,2000039667,2,6.0,-9.0,-9.0,15.0,4.0,1901663 -4682714,2000039668,1,18,17,1,2000039668,1,6.0,-9.0,-9.0,15.0,4.0,1901664 -4682715,2000039669,1,18,17,1,2000039669,2,6.0,8.0,6.0,15.0,4.0,1901665 -4682716,2000039670,2,22,17,1,2000039670,1,6.0,-9.0,-9.0,-9.0,4.0,1901666 -4682717,2000039671,1,18,17,1,2000039671,1,6.0,-9.0,-9.0,15.0,4.0,1901667 -4682718,2000039672,3,20,17,1,2000039672,2,6.0,-9.0,-9.0,15.0,4.0,1901668 -4682719,2000039673,3,20,17,1,2000039673,2,6.0,-9.0,-9.0,15.0,4.0,1901669 -4682720,2000039674,2,18,17,1,2000039674,2,3.0,-9.0,-9.0,15.0,4.0,1901670 -4682721,2000039675,2,22,17,1,2000039675,1,3.0,25.0,2.0,15.0,4.0,1901671 -4682722,2000039676,3,20,17,1,2000039676,2,6.0,-9.0,-9.0,15.0,4.0,1901672 -4682723,2000039677,3,20,17,1,2000039677,2,6.0,-9.0,-9.0,15.0,4.0,1901673 -4682724,2000039678,2,18,17,1,2000039678,2,6.0,-9.0,-9.0,15.0,4.0,1901674 -4682725,2000039679,3,20,17,1,2000039679,2,6.0,-9.0,-9.0,15.0,4.0,1901675 -4682726,2000039680,2,20,17,1,2000039680,2,1.0,12.0,5.0,15.0,4.0,1901676 -4682727,2000039681,3,20,17,1,2000039681,2,6.0,-9.0,-9.0,15.0,4.0,1901677 -4682728,2000039682,1,27,17,1,2000039682,1,6.0,40.0,5.0,-9.0,4.0,1901678 -4682729,2000039683,1,26,17,1,2000039683,1,6.0,-9.0,-9.0,-9.0,4.0,1901679 -4682730,2000039684,2,22,17,1,2000039684,2,3.0,-9.0,-9.0,13.0,4.0,1901680 -4682731,2000039685,1,26,17,1,2000039685,1,6.0,-9.0,-9.0,-9.0,4.0,1901681 -4682732,2000039686,3,20,17,1,2000039686,2,6.0,-9.0,-9.0,15.0,4.0,1901682 -4682733,2000039687,2,22,17,1,2000039687,1,3.0,-9.0,-9.0,15.0,4.0,1901683 -4682734,2000039688,3,20,17,1,2000039688,2,6.0,-9.0,-9.0,15.0,4.0,1901684 -4682735,2000039689,3,20,17,1,2000039689,2,6.0,-9.0,-9.0,15.0,4.0,1901685 -4682736,2000039690,2,18,17,1,2000039690,2,6.0,-9.0,-9.0,15.0,4.0,1901686 -4682737,2000039691,2,22,17,1,2000039691,2,3.0,-9.0,-9.0,-9.0,4.0,1901687 -4682738,2000039692,3,20,17,1,2000039692,2,6.0,-9.0,-9.0,15.0,4.0,1901688 -4682739,2000039693,2,20,17,1,2000039693,2,1.0,12.0,5.0,15.0,4.0,1901689 -4682740,2000039694,3,20,17,1,2000039694,2,6.0,-9.0,-9.0,15.0,4.0,1901690 -4682741,2000039695,2,22,17,1,2000039695,1,6.0,-9.0,-9.0,-9.0,4.0,1901691 -4682742,2000039696,2,18,17,1,2000039696,1,6.0,-9.0,-9.0,-9.0,4.0,1901692 -4682743,2000039697,3,20,17,1,2000039697,2,6.0,-9.0,-9.0,15.0,4.0,1901693 -4682744,2000039698,1,18,17,1,2000039698,2,6.0,-9.0,-9.0,15.0,4.0,1901694 -4682745,2000039699,3,20,17,1,2000039699,2,6.0,-9.0,-9.0,15.0,4.0,1901695 -4682746,2000039700,1,18,17,1,2000039700,2,1.0,9.0,4.0,15.0,4.0,1901696 -4682747,2000039701,3,20,17,1,2000039701,2,6.0,-9.0,-9.0,15.0,4.0,1901697 -4682748,2000039702,3,20,17,1,2000039702,2,6.0,-9.0,-9.0,15.0,4.0,1901698 -4682749,2000039703,2,22,17,1,2000039703,1,6.0,35.0,5.0,-9.0,4.0,1901699 -4682750,2000039704,3,20,17,1,2000039704,2,6.0,-9.0,-9.0,15.0,4.0,1901700 -4682751,2000039705,1,18,17,1,2000039705,2,6.0,-9.0,-9.0,15.0,4.0,1901701 -4682752,2000039706,3,20,17,1,2000039706,2,6.0,-9.0,-9.0,15.0,4.0,1901702 -4682753,2000039707,3,20,17,1,2000039707,2,6.0,-9.0,-9.0,15.0,4.0,1901703 -4682754,2000039708,3,20,17,1,2000039708,2,6.0,-9.0,-9.0,15.0,4.0,1901704 -4682755,2000039709,1,27,17,1,2000039709,1,6.0,40.0,5.0,-9.0,4.0,1901705 -4682756,2000039710,2,22,17,1,2000039710,1,3.0,-9.0,-9.0,15.0,4.0,1901706 -4682757,2000039711,2,18,17,1,2000039711,2,6.0,-9.0,-9.0,15.0,4.0,1901707 -4682758,2000039712,2,22,17,1,2000039712,2,1.0,16.0,1.0,-9.0,4.0,1901708 -4682759,2000039713,3,20,17,1,2000039713,2,6.0,-9.0,-9.0,15.0,4.0,1901709 -4682760,2000039714,2,20,17,1,2000039714,1,6.0,-9.0,-9.0,15.0,4.0,1901710 -4682761,2000039715,2,18,17,1,2000039715,2,6.0,-9.0,-9.0,15.0,4.0,1901711 -4682762,2000039716,2,25,17,1,2000039716,1,6.0,-9.0,-9.0,-9.0,4.0,1901712 -4682763,2000039717,3,20,17,1,2000039717,2,6.0,-9.0,-9.0,15.0,4.0,1901713 -4682764,2000039718,1,18,17,1,2000039718,1,6.0,-9.0,-9.0,15.0,4.0,1901714 -4682765,2000039719,1,27,17,1,2000039719,1,6.0,40.0,5.0,-9.0,4.0,1901715 -4682766,2000039720,2,22,17,1,2000039720,2,6.0,40.0,5.0,-9.0,4.0,1901716 -4682767,2000039721,3,20,17,1,2000039721,2,6.0,-9.0,-9.0,15.0,4.0,1901717 -4682768,2000039722,3,20,17,1,2000039722,2,6.0,-9.0,-9.0,15.0,4.0,1901718 -4682769,2000039723,2,20,17,1,2000039723,1,6.0,-9.0,-9.0,15.0,4.0,1901719 -4682770,2000039724,2,18,17,1,2000039724,2,3.0,40.0,4.0,14.0,4.0,1901720 -4682771,2000039725,2,25,17,1,2000039725,1,6.0,-9.0,-9.0,-9.0,4.0,1901721 -4682772,2000039726,3,20,17,1,2000039726,2,6.0,-9.0,-9.0,15.0,4.0,1901722 -4682773,2000039727,1,18,17,1,2000039727,2,6.0,-9.0,-9.0,15.0,4.0,1901723 -4682774,2000039728,1,27,17,1,2000039728,1,6.0,40.0,5.0,-9.0,4.0,1901724 -4682775,2000039729,2,22,17,1,2000039729,1,6.0,35.0,5.0,-9.0,4.0,1901725 -4682776,2000039730,3,20,17,1,2000039730,2,6.0,-9.0,-9.0,15.0,4.0,1901726 -4682777,2000039731,3,20,17,1,2000039731,2,6.0,-9.0,-9.0,15.0,4.0,1901727 -4682778,2000039732,2,20,17,1,2000039732,1,6.0,-9.0,-9.0,15.0,4.0,1901728 -4682779,2000039733,3,20,17,1,2000039733,2,6.0,-9.0,-9.0,15.0,4.0,1901729 -4682780,2000039734,2,18,17,1,2000039734,2,6.0,-9.0,-9.0,15.0,4.0,1901730 -4682862,2000039816,2,22,17,1,2000039816,1,6.0,35.0,5.0,-9.0,4.0,1901812 -4682863,2000039817,2,22,17,1,2000039817,2,3.0,-9.0,-9.0,13.0,4.0,1901813 -4682864,2000039818,2,18,17,1,2000039818,2,6.0,-9.0,-9.0,15.0,4.0,1901814 -4682865,2000039819,3,20,17,1,2000039819,2,6.0,-9.0,-9.0,15.0,4.0,1901815 -4682866,2000039820,3,20,17,1,2000039820,2,6.0,-9.0,-9.0,15.0,4.0,1901816 -4682867,2000039821,1,18,17,1,2000039821,2,1.0,9.0,4.0,15.0,4.0,1901817 -4682868,2000039822,3,20,17,1,2000039822,2,6.0,-9.0,-9.0,15.0,4.0,1901818 -4682869,2000039823,2,22,17,1,2000039823,1,6.0,-9.0,-9.0,-9.0,4.0,1901819 -4682870,2000039824,3,20,17,1,2000039824,2,6.0,-9.0,-9.0,15.0,4.0,1901820 -4682871,2000039825,3,20,17,1,2000039825,2,6.0,-9.0,-9.0,15.0,4.0,1901821 -4682872,2000039826,3,20,17,1,2000039826,2,6.0,-9.0,-9.0,15.0,4.0,1901822 -4682873,2000039827,2,18,17,1,2000039827,2,6.0,-9.0,-9.0,13.0,4.0,1901823 -4682874,2000039828,2,22,17,1,2000039828,2,6.0,40.0,5.0,-9.0,4.0,1901824 -4682875,2000039829,3,20,17,1,2000039829,2,6.0,-9.0,-9.0,15.0,4.0,1901825 -4682876,2000039830,2,22,17,1,2000039830,2,3.0,-9.0,-9.0,-9.0,4.0,1901826 -4682877,2000039831,2,20,17,1,2000039831,2,1.0,20.0,5.0,15.0,4.0,1901827 -4682878,2000039832,2,22,17,1,2000039832,2,3.0,-9.0,-9.0,-9.0,4.0,1901828 -4682879,2000039833,3,20,17,1,2000039833,2,6.0,-9.0,-9.0,15.0,4.0,1901829 -4682880,2000039834,3,20,17,1,2000039834,2,6.0,-9.0,-9.0,15.0,4.0,1901830 -4682881,2000039835,2,22,17,1,2000039835,2,1.0,16.0,1.0,-9.0,4.0,1901831 -4682882,2000039836,3,20,17,1,2000039836,2,6.0,-9.0,-9.0,15.0,4.0,1901832 -4682883,2000039837,3,20,17,1,2000039837,2,6.0,-9.0,-9.0,15.0,4.0,1901833 -4682884,2000039838,3,20,17,1,2000039838,2,6.0,-9.0,-9.0,15.0,4.0,1901834 -4682885,2000039839,2,22,17,1,2000039839,2,6.0,40.0,5.0,-9.0,4.0,1901835 -4682886,2000039840,2,22,17,1,2000039840,2,1.0,16.0,1.0,-9.0,4.0,1901836 -4682887,2000039841,2,22,17,1,2000039841,1,6.0,35.0,5.0,-9.0,4.0,1901837 -4682888,2000039842,2,20,17,1,2000039842,2,1.0,20.0,5.0,15.0,4.0,1901838 -4682889,2000039843,3,20,17,1,2000039843,2,6.0,-9.0,-9.0,15.0,4.0,1901839 -4682890,2000039844,1,18,17,1,2000039844,2,6.0,-9.0,-9.0,15.0,4.0,1901840 -4682891,2000039845,1,18,17,1,2000039845,1,6.0,-9.0,-9.0,15.0,4.0,1901841 -4682892,2000039846,3,20,17,1,2000039846,2,6.0,-9.0,-9.0,15.0,4.0,1901842 -4682893,2000039847,2,22,17,1,2000039847,1,3.0,25.0,2.0,15.0,4.0,1901843 -4682894,2000039848,3,20,17,1,2000039848,2,6.0,-9.0,-9.0,15.0,4.0,1901844 -4682895,2000039849,3,20,17,1,2000039849,2,6.0,-9.0,-9.0,15.0,4.0,1901845 -4682896,2000039850,1,18,17,1,2000039850,1,6.0,-9.0,-9.0,15.0,4.0,1901846 -4682897,2000039851,2,20,17,1,2000039851,2,1.0,20.0,5.0,15.0,4.0,1901847 -4682898,2000039852,3,20,17,1,2000039852,2,6.0,-9.0,-9.0,15.0,4.0,1901848 -4682899,2000039853,1,18,17,1,2000039853,1,6.0,-9.0,-9.0,15.0,4.0,1901849 -4682900,2000039854,1,18,17,1,2000039854,2,6.0,-9.0,-9.0,15.0,4.0,1901850 -4682901,2000039855,1,18,17,1,2000039855,1,6.0,-9.0,-9.0,15.0,4.0,1901851 -4682902,2000039856,3,20,17,1,2000039856,2,6.0,-9.0,-9.0,15.0,4.0,1901852 -4682903,2000039857,3,20,17,1,2000039857,2,6.0,-9.0,-9.0,15.0,4.0,1901853 -4682904,2000039858,1,18,17,1,2000039858,2,6.0,24.0,1.0,15.0,4.0,1901854 -4682905,2000039859,3,20,17,1,2000039859,2,6.0,-9.0,-9.0,15.0,4.0,1901855 -4682906,2000039860,3,20,17,1,2000039860,2,6.0,-9.0,-9.0,15.0,4.0,1901856 -4682907,2000039861,1,18,17,1,2000039861,2,6.0,-9.0,-9.0,15.0,4.0,1901857 -4682908,2000039862,3,20,17,1,2000039862,2,6.0,-9.0,-9.0,15.0,4.0,1901858 -4682909,2000039863,3,20,17,1,2000039863,2,6.0,-9.0,-9.0,15.0,4.0,1901859 -4682910,2000039864,2,22,17,1,2000039864,1,3.0,-9.0,-9.0,15.0,4.0,1901860 -4682911,2000039865,3,20,17,1,2000039865,2,6.0,-9.0,-9.0,15.0,4.0,1901861 -4682912,2000039866,2,20,17,1,2000039866,1,6.0,-9.0,-9.0,15.0,4.0,1901862 -4682913,2000039867,1,18,17,1,2000039867,1,6.0,-9.0,-9.0,15.0,4.0,1901863 -4682914,2000039868,2,18,17,1,2000039868,2,3.0,40.0,4.0,14.0,4.0,1901864 -4682915,2000039869,2,22,17,1,2000039869,1,3.0,16.0,1.0,15.0,4.0,1901865 -4682916,2000039870,2,22,17,1,2000039870,1,3.0,-9.0,-9.0,15.0,4.0,1901866 -4682917,2000039871,1,18,17,1,2000039871,2,6.0,-9.0,-9.0,15.0,4.0,1901867 -4682918,2000039872,3,20,17,1,2000039872,2,6.0,-9.0,-9.0,15.0,4.0,1901868 -4682919,2000039873,2,22,17,1,2000039873,1,6.0,35.0,5.0,-9.0,4.0,1901869 -4682920,2000039874,3,20,17,1,2000039874,2,6.0,-9.0,-9.0,15.0,4.0,1901870 -4682921,2000039875,1,18,17,1,2000039875,2,6.0,-9.0,-9.0,15.0,4.0,1901871 -4682922,2000039876,3,20,17,1,2000039876,2,6.0,-9.0,-9.0,15.0,4.0,1901872 -4682923,2000039877,1,18,17,1,2000039877,1,6.0,-9.0,-9.0,15.0,4.0,1901873 -4682924,2000039878,3,20,17,1,2000039878,2,6.0,-9.0,-9.0,15.0,4.0,1901874 -4682925,2000039879,2,18,17,1,2000039879,2,6.0,-9.0,-9.0,15.0,4.0,1901875 -4682926,2000039880,3,20,17,1,2000039880,2,6.0,-9.0,-9.0,15.0,4.0,1901876 -4682927,2000039881,3,20,17,1,2000039881,2,6.0,-9.0,-9.0,15.0,4.0,1901877 -4682928,2000039882,3,20,17,1,2000039882,2,6.0,-9.0,-9.0,15.0,4.0,1901878 -4682929,2000039883,2,18,17,1,2000039883,1,6.0,-9.0,-9.0,-9.0,4.0,1901879 -4682930,2000039884,3,20,17,1,2000039884,2,6.0,-9.0,-9.0,15.0,4.0,1901880 -4682931,2000039885,3,20,17,1,2000039885,2,6.0,-9.0,-9.0,15.0,4.0,1901881 -4682932,2000039886,2,22,17,1,2000039886,2,3.0,-9.0,-9.0,-9.0,4.0,1901882 -4682933,2000039887,3,20,17,1,2000039887,2,6.0,-9.0,-9.0,15.0,4.0,1901883 -4682934,2000039888,2,22,17,1,2000039888,1,6.0,35.0,5.0,-9.0,4.0,1901884 -4682935,2000039889,2,22,17,1,2000039889,1,6.0,35.0,5.0,-9.0,4.0,1901885 -4682941,2000039895,1,65,17,1,2000039895,2,6.0,-9.0,-9.0,-9.0,4.0,1901891 -4682942,2000039896,2,18,17,1,2000039896,1,6.0,-9.0,-9.0,-9.0,4.0,1901892 -4682943,2000039897,3,20,17,1,2000039897,2,6.0,-9.0,-9.0,15.0,4.0,1901893 -4682945,2000039899,2,22,17,1,2000039899,2,3.0,-9.0,-9.0,-9.0,4.0,1901895 -4682946,2000039900,3,20,17,1,2000039900,2,6.0,-9.0,-9.0,15.0,4.0,1901896 -4682947,2000039901,2,22,17,1,2000039901,2,3.0,-9.0,-9.0,13.0,4.0,1901897 -4682949,2000039903,1,65,17,1,2000039903,2,6.0,-9.0,-9.0,-9.0,4.0,1901899 -4682950,2000039904,2,20,17,1,2000039904,2,1.0,12.0,5.0,15.0,4.0,1901900 -4682951,2000039905,2,25,17,1,2000039905,1,6.0,-9.0,-9.0,-9.0,4.0,1901901 -4682954,2000039908,3,20,17,1,2000039908,2,6.0,-9.0,-9.0,15.0,4.0,1901904 -4682955,2000039909,3,20,17,1,2000039909,2,6.0,-9.0,-9.0,15.0,4.0,1901905 -4682957,2000039911,2,20,17,1,2000039911,2,1.0,12.0,5.0,15.0,4.0,1901907 -4682958,2000039912,3,20,17,1,2000039912,2,6.0,-9.0,-9.0,15.0,4.0,1901908 -4682960,2000039914,3,20,17,1,2000039914,2,6.0,-9.0,-9.0,15.0,4.0,1901910 -4683245,2000040199,2,24,17,1,2000040199,2,6.0,-9.0,-9.0,-9.0,4.0,1902195 -4683246,2000040200,2,24,17,1,2000040200,2,6.0,-9.0,-9.0,-9.0,4.0,1902196 -4683247,2000040201,2,24,17,1,2000040201,2,6.0,-9.0,-9.0,-9.0,4.0,1902197 -4683248,2000040202,2,24,17,1,2000040202,2,6.0,-9.0,-9.0,-9.0,4.0,1902198 -4683249,2000040203,2,24,17,1,2000040203,1,1.0,17.0,4.0,15.0,4.0,1902199 -4683250,2000040204,2,24,17,1,2000040204,2,6.0,-9.0,-9.0,-9.0,4.0,1902200 -4683251,2000040205,2,24,17,1,2000040205,2,6.0,-9.0,-9.0,-9.0,4.0,1902201 -4683252,2000040206,2,24,17,1,2000040206,1,1.0,17.0,4.0,15.0,4.0,1902202 -4683253,2000040207,3,20,17,1,2000040207,2,6.0,-9.0,-9.0,15.0,4.0,1902203 -4683254,2000040208,2,24,17,1,2000040208,2,6.0,-9.0,-9.0,-9.0,4.0,1902204 -4683255,2000040209,2,24,17,1,2000040209,2,6.0,-9.0,-9.0,-9.0,4.0,1902205 -4683256,2000040210,3,20,17,1,2000040210,2,6.0,-9.0,-9.0,15.0,4.0,1902206 -4683257,2000040211,2,24,17,1,2000040211,1,1.0,17.0,4.0,15.0,4.0,1902207 -4683258,2000040212,1,25,17,1,2000040212,1,6.0,-9.0,-9.0,-9.0,4.0,1902208 -4683259,2000040213,2,24,17,1,2000040213,2,6.0,-9.0,-9.0,-9.0,4.0,1902209 -4683260,2000040214,1,25,17,1,2000040214,1,6.0,-9.0,-9.0,-9.0,4.0,1902210 -4683261,2000040215,2,24,17,1,2000040215,2,6.0,-9.0,-9.0,-9.0,4.0,1902211 -4683262,2000040216,2,24,17,1,2000040216,2,6.0,-9.0,-9.0,-9.0,4.0,1902212 -4683263,2000040217,3,20,17,1,2000040217,2,6.0,-9.0,-9.0,15.0,4.0,1902213 -4683264,2000040218,3,20,17,1,2000040218,2,6.0,-9.0,-9.0,15.0,4.0,1902214 -4683265,2000040219,3,20,17,1,2000040219,2,6.0,-9.0,-9.0,15.0,4.0,1902215 -4683266,2000040220,1,25,17,1,2000040220,2,6.0,35.0,6.0,-9.0,4.0,1902216 -4683267,2000040221,1,25,17,1,2000040221,2,6.0,35.0,6.0,-9.0,4.0,1902217 -4683268,2000040222,2,24,17,1,2000040222,2,6.0,-9.0,-9.0,-9.0,4.0,1902218 -4683269,2000040223,2,24,17,1,2000040223,1,1.0,17.0,4.0,15.0,4.0,1902219 -4683270,2000040224,2,24,17,1,2000040224,1,1.0,17.0,4.0,15.0,4.0,1902220 -4683271,2000040225,2,24,17,1,2000040225,2,6.0,-9.0,-9.0,-9.0,4.0,1902221 -4683272,2000040226,2,24,17,1,2000040226,1,1.0,17.0,4.0,15.0,4.0,1902222 -4683273,2000040227,2,24,17,1,2000040227,1,1.0,17.0,4.0,15.0,4.0,1902223 -4683274,2000040228,2,24,17,1,2000040228,1,1.0,17.0,4.0,15.0,4.0,1902224 -4683275,2000040229,2,24,17,1,2000040229,2,6.0,-9.0,-9.0,-9.0,4.0,1902225 -4683276,2000040230,2,24,17,1,2000040230,2,6.0,-9.0,-9.0,-9.0,4.0,1902226 -4683277,2000040231,2,24,17,1,2000040231,2,6.0,-9.0,-9.0,-9.0,4.0,1902227 -4683278,2000040232,2,24,17,1,2000040232,1,1.0,17.0,4.0,15.0,4.0,1902228 -4683279,2000040233,1,25,17,1,2000040233,1,6.0,20.0,5.0,15.0,4.0,1902229 -4683280,2000040234,2,24,17,1,2000040234,1,1.0,17.0,4.0,15.0,4.0,1902230 -4683281,2000040235,2,24,17,1,2000040235,1,1.0,17.0,4.0,15.0,4.0,1902231 -4683282,2000040236,3,20,17,1,2000040236,2,6.0,-9.0,-9.0,15.0,4.0,1902232 -4683283,2000040237,2,24,17,1,2000040237,2,6.0,-9.0,-9.0,-9.0,4.0,1902233 -4683284,2000040238,2,24,17,1,2000040238,1,1.0,17.0,4.0,15.0,4.0,1902234 -4683285,2000040239,2,24,17,1,2000040239,1,1.0,17.0,4.0,15.0,4.0,1902235 -4683286,2000040240,2,24,17,1,2000040240,2,6.0,-9.0,-9.0,-9.0,4.0,1902236 -4683287,2000040241,2,24,17,1,2000040241,2,6.0,-9.0,-9.0,-9.0,4.0,1902237 -4683288,2000040242,1,25,17,1,2000040242,2,6.0,35.0,6.0,-9.0,4.0,1902238 -4683289,2000040243,2,24,17,1,2000040243,2,6.0,-9.0,-9.0,-9.0,4.0,1902239 -4683290,2000040244,1,25,17,1,2000040244,2,6.0,35.0,6.0,-9.0,4.0,1902240 -4683291,2000040245,3,20,17,1,2000040245,2,6.0,-9.0,-9.0,15.0,4.0,1902241 -4683292,2000040246,2,24,17,1,2000040246,1,1.0,17.0,4.0,15.0,4.0,1902242 -4683293,2000040247,2,24,17,1,2000040247,1,1.0,17.0,4.0,15.0,4.0,1902243 -4683294,2000040248,1,25,17,1,2000040248,1,6.0,-9.0,-9.0,-9.0,4.0,1902244 -4683295,2000040249,1,25,17,1,2000040249,2,6.0,35.0,6.0,-9.0,4.0,1902245 -4683296,2000040250,2,24,17,1,2000040250,1,1.0,17.0,4.0,15.0,4.0,1902246 -4683297,2000040251,2,24,17,1,2000040251,1,1.0,17.0,4.0,15.0,4.0,1902247 -4683298,2000040252,2,24,17,1,2000040252,2,6.0,-9.0,-9.0,-9.0,4.0,1902248 -4683299,2000040253,2,24,17,1,2000040253,2,6.0,-9.0,-9.0,-9.0,4.0,1902249 -4683300,2000040254,3,20,17,1,2000040254,2,6.0,-9.0,-9.0,15.0,4.0,1902250 -4683357,2000040311,1,25,17,1,2000040311,1,6.0,20.0,5.0,15.0,4.0,1902307 -4683358,2000040312,2,24,17,1,2000040312,1,1.0,17.0,4.0,15.0,4.0,1902308 -4683359,2000040313,2,24,17,1,2000040313,2,6.0,-9.0,-9.0,-9.0,4.0,1902309 -4683360,2000040314,2,24,17,1,2000040314,2,6.0,-9.0,-9.0,-9.0,4.0,1902310 -4683361,2000040315,2,24,17,1,2000040315,2,6.0,-9.0,-9.0,-9.0,4.0,1902311 -4683362,2000040316,2,24,17,1,2000040316,1,1.0,17.0,4.0,15.0,4.0,1902312 -4683363,2000040317,2,63,17,1,2000040317,1,1.0,20.0,6.0,-9.0,4.0,1902313 -4683365,2000040319,2,43,17,1,2000040319,1,6.0,-9.0,-9.0,-9.0,4.0,1902315 -4683366,2000040320,4,51,17,1,2000040320,1,6.0,-9.0,-9.0,-9.0,4.0,1902316 -4683367,2000040321,2,43,17,1,2000040321,1,6.0,-9.0,-9.0,-9.0,4.0,1902317 -4683368,2000040322,2,63,17,1,2000040322,1,1.0,20.0,6.0,-9.0,4.0,1902318 -4683370,2000040324,2,52,17,1,2000040324,2,6.0,-9.0,-9.0,-9.0,4.0,1902320 -4683371,2000040325,2,48,17,1,2000040325,1,6.0,-9.0,-9.0,-9.0,4.0,1902321 -4683372,2000040326,2,24,17,1,2000040326,2,6.0,-9.0,-9.0,-9.0,4.0,1902322 -4683373,2000040327,1,59,17,1,2000040327,1,3.0,-9.0,-9.0,-9.0,4.0,1902323 -4683377,2000040331,2,43,17,1,2000040331,1,6.0,-9.0,-9.0,-9.0,4.0,1902327 -4683378,2000040332,2,43,17,1,2000040332,1,6.0,-9.0,-9.0,-9.0,4.0,1902328 -4683381,2000040335,2,24,17,1,2000040335,2,6.0,-9.0,-9.0,-9.0,4.0,1902331 -4683383,2000040337,2,63,17,1,2000040337,1,1.0,20.0,6.0,-9.0,4.0,1902333 -4683384,2000040338,1,79,17,1,2000040338,1,6.0,-9.0,-9.0,-9.0,4.0,1902334 -4683385,2000040339,2,46,17,1,2000040339,1,6.0,-9.0,-9.0,-9.0,4.0,1902335 -4683386,2000040340,2,41,17,1,2000040340,2,6.0,-9.0,-9.0,-9.0,4.0,1902336 -4684555,2000041509,1,18,17,1,2000041509,2,6.0,-9.0,-9.0,15.0,4.0,1903505 -4684556,2000041510,2,19,17,1,2000041510,2,3.0,-9.0,-9.0,15.0,4.0,1903506 -4684557,2000041511,2,19,17,1,2000041511,1,6.0,-9.0,-9.0,15.0,4.0,1903507 -4684558,2000041512,2,18,17,1,2000041512,2,3.0,40.0,4.0,14.0,4.0,1903508 -4684559,2000041513,1,25,17,1,2000041513,1,6.0,20.0,5.0,15.0,4.0,1903509 -4684560,2000041514,2,19,17,1,2000041514,2,3.0,-9.0,-9.0,15.0,4.0,1903510 -4684561,2000041515,2,19,17,1,2000041515,2,3.0,-9.0,-9.0,15.0,4.0,1903511 -4684562,2000041516,1,18,17,1,2000041516,2,6.0,-9.0,-9.0,15.0,4.0,1903512 -4684563,2000041517,2,19,17,1,2000041517,1,6.0,-9.0,-9.0,15.0,4.0,1903513 -4684564,2000041518,2,18,17,1,2000041518,2,6.0,-9.0,-9.0,15.0,4.0,1903514 -4684565,2000041519,2,19,17,1,2000041519,1,6.0,-9.0,-9.0,-9.0,4.0,1903515 -4684566,2000041520,1,18,17,1,2000041520,1,6.0,-9.0,-9.0,15.0,4.0,1903516 -4684567,2000041521,1,18,17,1,2000041521,1,6.0,-9.0,-9.0,15.0,4.0,1903517 -4684568,2000041522,1,25,17,1,2000041522,2,6.0,35.0,6.0,-9.0,4.0,1903518 -4684569,2000041523,2,19,17,1,2000041523,2,3.0,-9.0,-9.0,15.0,4.0,1903519 -4684570,2000041524,2,19,17,1,2000041524,1,6.0,-9.0,-9.0,15.0,4.0,1903520 -4684571,2000041525,1,25,17,1,2000041525,2,6.0,35.0,6.0,-9.0,4.0,1903521 -4684572,2000041526,1,18,17,1,2000041526,2,6.0,-9.0,-9.0,15.0,4.0,1903522 -4684573,2000041527,1,18,17,1,2000041527,2,6.0,-9.0,-9.0,15.0,4.0,1903523 -4684574,2000041528,2,19,17,1,2000041528,1,6.0,-9.0,-9.0,-9.0,4.0,1903524 -4684575,2000041529,2,19,17,1,2000041529,2,1.0,5.0,6.0,15.0,4.0,1903525 -4684576,2000041530,2,19,17,1,2000041530,2,1.0,5.0,6.0,15.0,4.0,1903526 -4684577,2000041531,2,19,17,1,2000041531,1,6.0,-9.0,-9.0,15.0,4.0,1903527 -4684578,2000041532,2,19,17,1,2000041532,2,3.0,-9.0,-9.0,15.0,4.0,1903528 -4684579,2000041533,2,19,17,1,2000041533,2,1.0,5.0,6.0,15.0,4.0,1903529 -4684580,2000041534,1,18,17,1,2000041534,2,6.0,-9.0,-9.0,15.0,4.0,1903530 -4684581,2000041535,1,18,17,1,2000041535,1,6.0,-9.0,-9.0,15.0,4.0,1903531 -4684582,2000041536,2,19,17,1,2000041536,1,6.0,-9.0,-9.0,-9.0,4.0,1903532 -4684583,2000041537,1,25,17,1,2000041537,1,6.0,20.0,5.0,15.0,4.0,1903533 -4684584,2000041538,1,18,17,1,2000041538,1,6.0,-9.0,-9.0,15.0,4.0,1903534 -4684585,2000041539,2,19,17,1,2000041539,1,6.0,-9.0,-9.0,15.0,4.0,1903535 -4684586,2000041540,2,19,17,1,2000041540,2,3.0,-9.0,-9.0,15.0,4.0,1903536 -4684587,2000041541,1,18,17,1,2000041541,2,6.0,-9.0,-9.0,15.0,4.0,1903537 -4684588,2000041542,1,25,17,1,2000041542,1,6.0,-9.0,-9.0,-9.0,4.0,1903538 -4684589,2000041543,2,19,17,1,2000041543,2,1.0,5.0,6.0,15.0,4.0,1903539 -4684590,2000041544,1,25,17,1,2000041544,2,6.0,35.0,6.0,-9.0,4.0,1903540 -4684591,2000041545,2,19,17,1,2000041545,1,6.0,-9.0,-9.0,-9.0,4.0,1903541 -4684592,2000041546,2,18,17,1,2000041546,2,3.0,40.0,4.0,14.0,4.0,1903542 -4684593,2000041547,1,25,17,1,2000041547,2,6.0,35.0,6.0,-9.0,4.0,1903543 -4684594,2000041548,1,18,17,1,2000041548,1,6.0,-9.0,-9.0,15.0,4.0,1903544 -4684595,2000041549,2,19,17,1,2000041549,1,6.0,-9.0,-9.0,15.0,4.0,1903545 -4684596,2000041550,2,19,17,1,2000041550,2,3.0,-9.0,-9.0,15.0,4.0,1903546 -4684597,2000041551,2,19,17,1,2000041551,1,6.0,-9.0,-9.0,-9.0,4.0,1903547 -4684598,2000041552,2,19,17,1,2000041552,2,1.0,5.0,6.0,15.0,4.0,1903548 -4684599,2000041553,1,18,17,1,2000041553,2,6.0,50.0,3.0,15.0,4.0,1903549 -4684600,2000041554,2,19,17,1,2000041554,1,6.0,-9.0,-9.0,15.0,4.0,1903550 -4684601,2000041555,2,24,17,1,2000041555,1,1.0,17.0,4.0,15.0,4.0,1903551 -4684602,2000041556,1,18,17,1,2000041556,2,6.0,-9.0,-9.0,15.0,4.0,1903552 -4684603,2000041557,2,19,17,1,2000041557,1,6.0,-9.0,-9.0,15.0,4.0,1903553 -4684604,2000041558,1,18,17,1,2000041558,2,6.0,8.0,6.0,15.0,4.0,1903554 -4684605,2000041559,2,19,17,1,2000041559,1,6.0,-9.0,-9.0,-9.0,4.0,1903555 -4684606,2000041560,2,19,17,1,2000041560,2,1.0,5.0,6.0,15.0,4.0,1903556 -4684607,2000041561,1,18,17,1,2000041561,2,6.0,-9.0,-9.0,15.0,4.0,1903557 -4684608,2000041562,1,18,17,1,2000041562,2,6.0,8.0,6.0,15.0,4.0,1903558 -4684609,2000041563,1,18,17,1,2000041563,2,6.0,-9.0,-9.0,15.0,4.0,1903559 -4684610,2000041564,1,18,17,1,2000041564,1,6.0,-9.0,-9.0,15.0,4.0,1903560 -4684611,2000041565,1,18,17,1,2000041565,1,6.0,-9.0,-9.0,15.0,4.0,1903561 -4684612,2000041566,2,20,17,1,2000041566,2,1.0,20.0,5.0,15.0,4.0,1903562 -4684613,2000041567,2,19,17,1,2000041567,1,6.0,-9.0,-9.0,15.0,4.0,1903563 -4684614,2000041568,1,18,17,1,2000041568,2,6.0,-9.0,-9.0,15.0,4.0,1903564 -4684615,2000041569,2,19,17,1,2000041569,1,6.0,-9.0,-9.0,15.0,4.0,1903565 -4684616,2000041570,2,18,17,1,2000041570,2,3.0,40.0,4.0,14.0,4.0,1903566 -4684617,2000041571,2,19,17,1,2000041571,2,1.0,5.0,6.0,15.0,4.0,1903567 -4684618,2000041572,2,24,17,1,2000041572,1,1.0,17.0,4.0,15.0,4.0,1903568 -4684619,2000041573,1,18,17,1,2000041573,2,6.0,-9.0,-9.0,15.0,4.0,1903569 -4684620,2000041574,2,18,17,1,2000041574,1,6.0,-9.0,-9.0,-9.0,4.0,1903570 -4684621,2000041575,1,25,17,1,2000041575,1,6.0,20.0,5.0,15.0,4.0,1903571 -4684622,2000041576,2,24,17,1,2000041576,2,6.0,-9.0,-9.0,-9.0,4.0,1903572 -4684623,2000041577,2,18,17,1,2000041577,2,3.0,-9.0,-9.0,15.0,4.0,1903573 -4684624,2000041578,1,18,17,1,2000041578,2,6.0,-9.0,-9.0,15.0,4.0,1903574 -4684625,2000041579,1,18,17,1,2000041579,2,6.0,8.0,6.0,15.0,4.0,1903575 -4684626,2000041580,1,18,17,1,2000041580,2,6.0,-9.0,-9.0,15.0,4.0,1903576 -4684627,2000041581,2,19,17,1,2000041581,1,6.0,-9.0,-9.0,15.0,4.0,1903577 -4684628,2000041582,1,18,17,1,2000041582,1,6.0,-9.0,-9.0,15.0,4.0,1903578 -4684629,2000041583,1,25,17,1,2000041583,1,6.0,-9.0,-9.0,-9.0,4.0,1903579 -4684630,2000041584,2,19,17,1,2000041584,2,3.0,-9.0,-9.0,15.0,4.0,1903580 -4684631,2000041585,2,19,17,1,2000041585,2,3.0,-9.0,-9.0,15.0,4.0,1903581 -4684632,2000041586,1,18,17,1,2000041586,2,6.0,50.0,3.0,15.0,4.0,1903582 -4684633,2000041587,2,19,17,1,2000041587,1,6.0,-9.0,-9.0,15.0,4.0,1903583 -4684634,2000041588,1,18,17,1,2000041588,2,6.0,8.0,6.0,15.0,4.0,1903584 -4684635,2000041589,1,25,17,1,2000041589,1,6.0,20.0,5.0,15.0,4.0,1903585 -4684636,2000041590,1,25,17,1,2000041590,1,6.0,-9.0,-9.0,-9.0,4.0,1903586 -4684637,2000041591,2,19,17,1,2000041591,2,3.0,-9.0,-9.0,15.0,4.0,1903587 -4684638,2000041592,2,19,17,1,2000041592,2,1.0,5.0,6.0,15.0,4.0,1903588 -4684639,2000041593,2,19,17,1,2000041593,1,6.0,-9.0,-9.0,15.0,4.0,1903589 -4684640,2000041594,1,18,17,1,2000041594,2,6.0,50.0,3.0,15.0,4.0,1903590 -4684641,2000041595,1,25,17,1,2000041595,1,6.0,20.0,5.0,15.0,4.0,1903591 -4684642,2000041596,2,24,17,1,2000041596,2,6.0,-9.0,-9.0,-9.0,4.0,1903592 -4684643,2000041597,1,18,17,1,2000041597,2,6.0,24.0,1.0,15.0,4.0,1903593 -4684644,2000041598,1,18,17,1,2000041598,2,6.0,-9.0,-9.0,15.0,4.0,1903594 -4684645,2000041599,1,18,17,1,2000041599,2,6.0,-9.0,-9.0,15.0,4.0,1903595 -4684646,2000041600,1,18,17,1,2000041600,2,6.0,-9.0,-9.0,15.0,4.0,1903596 -4684647,2000041601,2,19,17,1,2000041601,2,3.0,-9.0,-9.0,15.0,4.0,1903597 -4684648,2000041602,1,18,17,1,2000041602,2,6.0,8.0,6.0,15.0,4.0,1903598 -4684649,2000041603,1,18,17,1,2000041603,1,6.0,-9.0,-9.0,15.0,4.0,1903599 -4684650,2000041604,2,19,17,1,2000041604,1,6.0,-9.0,-9.0,-9.0,4.0,1903600 -4684651,2000041605,2,29,17,1,2000041605,1,6.0,-9.0,-9.0,-9.0,4.0,1903601 -4684652,2000041606,2,19,17,1,2000041606,2,1.0,5.0,6.0,15.0,4.0,1903602 -4684653,2000041607,2,18,17,1,2000041607,2,6.0,-9.0,-9.0,13.0,4.0,1903603 -4684654,2000041608,1,18,17,1,2000041608,2,1.0,9.0,4.0,15.0,4.0,1903604 -4684655,2000041609,2,19,17,1,2000041609,1,6.0,-9.0,-9.0,15.0,4.0,1903605 -4684656,2000041610,1,18,17,1,2000041610,2,6.0,-9.0,-9.0,15.0,4.0,1903606 -4684657,2000041611,2,19,17,1,2000041611,1,6.0,-9.0,-9.0,15.0,4.0,1903607 -4684658,2000041612,1,18,17,1,2000041612,2,6.0,50.0,3.0,15.0,4.0,1903608 -4684659,2000041613,2,19,17,1,2000041613,2,3.0,-9.0,-9.0,15.0,4.0,1903609 -4684660,2000041614,2,24,17,1,2000041614,1,1.0,17.0,4.0,15.0,4.0,1903610 -4684661,2000041615,1,25,17,1,2000041615,1,6.0,20.0,5.0,15.0,4.0,1903611 -4684662,2000041616,1,18,17,1,2000041616,2,6.0,24.0,1.0,15.0,4.0,1903612 -4684663,2000041617,2,19,17,1,2000041617,2,3.0,-9.0,-9.0,15.0,4.0,1903613 -4684664,2000041618,2,19,17,1,2000041618,2,3.0,-9.0,-9.0,15.0,4.0,1903614 -4684665,2000041619,2,20,17,1,2000041619,2,1.0,20.0,5.0,15.0,4.0,1903615 -4684666,2000041620,2,20,17,1,2000041620,2,1.0,20.0,5.0,15.0,4.0,1903616 -4684667,2000041621,2,19,17,1,2000041621,2,3.0,-9.0,-9.0,15.0,4.0,1903617 -4684668,2000041622,1,18,17,1,2000041622,1,6.0,-9.0,-9.0,15.0,4.0,1903618 -4684669,2000041623,1,18,17,1,2000041623,2,6.0,-9.0,-9.0,15.0,4.0,1903619 -4684670,2000041624,1,18,17,1,2000041624,2,6.0,24.0,1.0,15.0,4.0,1903620 -4684671,2000041625,2,19,17,1,2000041625,1,6.0,-9.0,-9.0,-9.0,4.0,1903621 -4684672,2000041626,2,24,17,1,2000041626,2,6.0,-9.0,-9.0,-9.0,4.0,1903622 -4684673,2000041627,2,29,17,1,2000041627,1,3.0,-9.0,-9.0,-9.0,4.0,1903623 -4684674,2000041628,2,20,17,1,2000041628,2,1.0,12.0,5.0,15.0,4.0,1903624 -4684675,2000041629,2,19,17,1,2000041629,2,3.0,-9.0,-9.0,15.0,4.0,1903625 -4684676,2000041630,1,25,17,1,2000041630,2,6.0,35.0,6.0,-9.0,4.0,1903626 -4684677,2000041631,1,18,17,1,2000041631,2,6.0,-9.0,-9.0,15.0,4.0,1903627 -4684678,2000041632,2,19,17,1,2000041632,2,3.0,-9.0,-9.0,15.0,4.0,1903628 -4684679,2000041633,2,19,17,1,2000041633,1,6.0,-9.0,-9.0,15.0,4.0,1903629 -4684680,2000041634,2,24,17,1,2000041634,2,6.0,-9.0,-9.0,-9.0,4.0,1903630 -4684681,2000041635,1,18,17,1,2000041635,2,6.0,50.0,3.0,15.0,4.0,1903631 -4684682,2000041636,2,19,17,1,2000041636,2,3.0,-9.0,-9.0,15.0,4.0,1903632 -4684683,2000041637,1,18,17,1,2000041637,2,6.0,-9.0,-9.0,15.0,4.0,1903633 -4684684,2000041638,2,19,17,1,2000041638,1,6.0,-9.0,-9.0,-9.0,4.0,1903634 -4684685,2000041639,1,25,17,1,2000041639,2,6.0,35.0,6.0,-9.0,4.0,1903635 -4684686,2000041640,2,19,17,1,2000041640,1,6.0,-9.0,-9.0,15.0,4.0,1903636 -4684687,2000041641,2,18,17,1,2000041641,1,6.0,-9.0,-9.0,-9.0,4.0,1903637 -4684688,2000041642,2,24,17,1,2000041642,1,1.0,17.0,4.0,15.0,4.0,1903638 -4684689,2000041643,2,24,17,1,2000041643,2,6.0,-9.0,-9.0,-9.0,4.0,1903639 -4684690,2000041644,2,19,17,1,2000041644,1,6.0,-9.0,-9.0,15.0,4.0,1903640 -4684691,2000041645,1,25,17,1,2000041645,1,6.0,20.0,5.0,15.0,4.0,1903641 -4684692,2000041646,2,19,17,1,2000041646,2,3.0,-9.0,-9.0,15.0,4.0,1903642 -4684693,2000041647,2,19,17,1,2000041647,1,6.0,-9.0,-9.0,15.0,4.0,1903643 -4684694,2000041648,2,19,17,1,2000041648,2,1.0,5.0,6.0,15.0,4.0,1903644 -4684695,2000041649,2,20,17,1,2000041649,2,1.0,20.0,5.0,15.0,4.0,1903645 -4684696,2000041650,2,19,17,1,2000041650,2,3.0,-9.0,-9.0,15.0,4.0,1903646 -4684697,2000041651,2,19,17,1,2000041651,1,6.0,-9.0,-9.0,15.0,4.0,1903647 -4684698,2000041652,1,25,17,1,2000041652,2,6.0,35.0,6.0,-9.0,4.0,1903648 -4684699,2000041653,2,19,17,1,2000041653,2,1.0,5.0,6.0,15.0,4.0,1903649 -4684700,2000041654,2,20,17,1,2000041654,2,1.0,20.0,5.0,15.0,4.0,1903650 -4684701,2000041655,2,18,17,1,2000041655,2,6.0,-9.0,-9.0,15.0,4.0,1903651 -4684702,2000041656,2,19,17,1,2000041656,1,6.0,-9.0,-9.0,15.0,4.0,1903652 -4684703,2000041657,2,29,17,1,2000041657,1,6.0,-9.0,-9.0,-9.0,4.0,1903653 -4684704,2000041658,2,19,17,1,2000041658,1,6.0,-9.0,-9.0,-9.0,4.0,1903654 -4684705,2000041659,2,19,17,1,2000041659,2,3.0,-9.0,-9.0,15.0,4.0,1903655 -4684706,2000041660,1,18,17,1,2000041660,2,6.0,-9.0,-9.0,15.0,4.0,1903656 -4684707,2000041661,1,18,17,1,2000041661,2,6.0,50.0,3.0,15.0,4.0,1903657 -4684708,2000041662,2,19,17,1,2000041662,1,6.0,-9.0,-9.0,15.0,4.0,1903658 -4684709,2000041663,1,18,17,1,2000041663,2,6.0,8.0,6.0,15.0,4.0,1903659 -4684710,2000041664,1,18,17,1,2000041664,2,6.0,-9.0,-9.0,15.0,4.0,1903660 -4684711,2000041665,2,19,17,1,2000041665,1,6.0,-9.0,-9.0,15.0,4.0,1903661 -4684712,2000041666,2,29,17,1,2000041666,1,6.0,-9.0,-9.0,-9.0,4.0,1903662 -4684713,2000041667,2,19,17,1,2000041667,2,3.0,-9.0,-9.0,15.0,4.0,1903663 -4684714,2000041668,1,18,17,1,2000041668,1,6.0,-9.0,-9.0,15.0,4.0,1903664 -4684715,2000041669,2,19,17,1,2000041669,1,6.0,-9.0,-9.0,15.0,4.0,1903665 -4684716,2000041670,1,25,17,1,2000041670,2,6.0,35.0,6.0,-9.0,4.0,1903666 -4684717,2000041671,2,19,17,1,2000041671,2,3.0,-9.0,-9.0,15.0,4.0,1903667 -4684718,2000041672,2,19,17,1,2000041672,1,6.0,-9.0,-9.0,15.0,4.0,1903668 -4684719,2000041673,2,29,17,1,2000041673,1,6.0,-9.0,-9.0,-9.0,4.0,1903669 -4684720,2000041674,1,18,17,1,2000041674,2,6.0,-9.0,-9.0,15.0,4.0,1903670 -4684721,2000041675,1,18,17,1,2000041675,2,1.0,9.0,4.0,15.0,4.0,1903671 -4684722,2000041676,2,19,17,1,2000041676,2,1.0,5.0,6.0,15.0,4.0,1903672 -4684723,2000041677,1,18,17,1,2000041677,2,6.0,-9.0,-9.0,15.0,4.0,1903673 -4684724,2000041678,2,19,17,1,2000041678,2,3.0,-9.0,-9.0,15.0,4.0,1903674 -4684725,2000041679,2,19,17,1,2000041679,2,1.0,5.0,6.0,15.0,4.0,1903675 -4684726,2000041680,1,18,17,1,2000041680,2,6.0,-9.0,-9.0,15.0,4.0,1903676 -4684727,2000041681,1,18,17,1,2000041681,1,6.0,-9.0,-9.0,15.0,4.0,1903677 -4684728,2000041682,2,19,17,1,2000041682,1,6.0,-9.0,-9.0,15.0,4.0,1903678 -4684729,2000041683,2,19,17,1,2000041683,2,3.0,-9.0,-9.0,15.0,4.0,1903679 -4684730,2000041684,1,18,17,1,2000041684,2,6.0,24.0,1.0,15.0,4.0,1903680 -4684731,2000041685,2,19,17,1,2000041685,1,6.0,-9.0,-9.0,15.0,4.0,1903681 -4684732,2000041686,1,18,17,1,2000041686,2,6.0,-9.0,-9.0,15.0,4.0,1903682 -4684733,2000041687,2,19,17,1,2000041687,2,1.0,5.0,6.0,15.0,4.0,1903683 -4684734,2000041688,2,19,17,1,2000041688,1,6.0,-9.0,-9.0,15.0,4.0,1903684 -4684735,2000041689,2,19,17,1,2000041689,2,3.0,-9.0,-9.0,15.0,4.0,1903685 -4684736,2000041690,1,18,17,1,2000041690,2,6.0,-9.0,-9.0,15.0,4.0,1903686 -4684737,2000041691,2,19,17,1,2000041691,1,6.0,-9.0,-9.0,15.0,4.0,1903687 -4684738,2000041692,1,18,17,1,2000041692,1,6.0,-9.0,-9.0,15.0,4.0,1903688 -4684739,2000041693,2,19,17,1,2000041693,1,6.0,-9.0,-9.0,15.0,4.0,1903689 -4684740,2000041694,1,18,17,1,2000041694,2,6.0,50.0,3.0,15.0,4.0,1903690 -4684741,2000041695,2,19,17,1,2000041695,1,6.0,-9.0,-9.0,15.0,4.0,1903691 -4684742,2000041696,1,18,17,1,2000041696,2,1.0,9.0,4.0,15.0,4.0,1903692 -4684743,2000041697,2,19,17,1,2000041697,2,3.0,-9.0,-9.0,15.0,4.0,1903693 -4684744,2000041698,2,19,17,1,2000041698,2,1.0,5.0,6.0,15.0,4.0,1903694 -4684745,2000041699,1,18,17,1,2000041699,2,6.0,24.0,1.0,15.0,4.0,1903695 -4684746,2000041700,1,18,17,1,2000041700,2,6.0,-9.0,-9.0,15.0,4.0,1903696 -4684747,2000041701,2,19,17,1,2000041701,2,3.0,-9.0,-9.0,15.0,4.0,1903697 -4684748,2000041702,2,19,17,1,2000041702,2,3.0,-9.0,-9.0,15.0,4.0,1903698 -4684749,2000041703,2,29,17,1,2000041703,1,3.0,-9.0,-9.0,-9.0,4.0,1903699 -4684750,2000041704,2,19,17,1,2000041704,1,6.0,-9.0,-9.0,15.0,4.0,1903700 -4684751,2000041705,2,20,17,1,2000041705,2,1.0,12.0,5.0,15.0,4.0,1903701 -4684752,2000041706,1,18,17,1,2000041706,2,1.0,9.0,4.0,15.0,4.0,1903702 -4684753,2000041707,1,18,17,1,2000041707,2,6.0,-9.0,-9.0,15.0,4.0,1903703 -4684754,2000041708,2,19,17,1,2000041708,1,6.0,-9.0,-9.0,-9.0,4.0,1903704 -4684755,2000041709,1,18,17,1,2000041709,2,6.0,-9.0,-9.0,15.0,4.0,1903705 -4684756,2000041710,2,19,17,1,2000041710,2,3.0,-9.0,-9.0,15.0,4.0,1903706 -4684757,2000041711,2,19,17,1,2000041711,1,6.0,-9.0,-9.0,15.0,4.0,1903707 -4684758,2000041712,2,19,17,1,2000041712,2,3.0,-9.0,-9.0,15.0,4.0,1903708 -4684759,2000041713,2,19,17,1,2000041713,1,6.0,-9.0,-9.0,15.0,4.0,1903709 -4684760,2000041714,1,18,17,1,2000041714,2,6.0,24.0,1.0,15.0,4.0,1903710 -4684761,2000041715,1,25,17,1,2000041715,2,6.0,35.0,6.0,-9.0,4.0,1903711 -4684762,2000041716,2,19,17,1,2000041716,1,6.0,-9.0,-9.0,-9.0,4.0,1903712 -4684763,2000041717,2,18,17,1,2000041717,2,6.0,-9.0,-9.0,15.0,4.0,1903713 -4684764,2000041718,1,25,17,1,2000041718,1,6.0,-9.0,-9.0,-9.0,4.0,1903714 -4684765,2000041719,1,18,17,1,2000041719,1,6.0,-9.0,-9.0,15.0,4.0,1903715 -4684766,2000041720,1,18,17,1,2000041720,2,6.0,8.0,6.0,15.0,4.0,1903716 -4684767,2000041721,2,19,17,1,2000041721,1,6.0,-9.0,-9.0,15.0,4.0,1903717 -4684768,2000041722,1,25,17,1,2000041722,2,6.0,35.0,6.0,-9.0,4.0,1903718 -4684769,2000041723,2,19,17,1,2000041723,2,3.0,-9.0,-9.0,15.0,4.0,1903719 -4684770,2000041724,1,18,17,1,2000041724,2,6.0,8.0,6.0,15.0,4.0,1903720 -4684771,2000041725,2,19,17,1,2000041725,1,6.0,-9.0,-9.0,-9.0,4.0,1903721 -4684772,2000041726,2,19,17,1,2000041726,2,3.0,-9.0,-9.0,15.0,4.0,1903722 -4684773,2000041727,1,18,17,1,2000041727,2,1.0,9.0,4.0,15.0,4.0,1903723 -4684774,2000041728,1,18,17,1,2000041728,2,6.0,-9.0,-9.0,15.0,4.0,1903724 -4684775,2000041729,1,18,17,1,2000041729,2,6.0,-9.0,-9.0,15.0,4.0,1903725 -4684776,2000041730,2,19,17,1,2000041730,1,6.0,-9.0,-9.0,15.0,4.0,1903726 -4684777,2000041731,1,18,17,1,2000041731,2,6.0,-9.0,-9.0,15.0,4.0,1903727 -4684778,2000041732,2,19,17,1,2000041732,2,1.0,5.0,6.0,15.0,4.0,1903728 -4684779,2000041733,1,18,17,1,2000041733,2,6.0,-9.0,-9.0,15.0,4.0,1903729 -4684780,2000041734,2,19,17,1,2000041734,1,6.0,-9.0,-9.0,15.0,4.0,1903730 -4684781,2000041735,1,18,17,1,2000041735,2,6.0,-9.0,-9.0,15.0,4.0,1903731 -4684782,2000041736,2,19,17,1,2000041736,2,1.0,5.0,6.0,15.0,4.0,1903732 -4684783,2000041737,1,18,17,1,2000041737,1,6.0,-9.0,-9.0,15.0,4.0,1903733 -4684784,2000041738,2,19,17,1,2000041738,2,3.0,-9.0,-9.0,15.0,4.0,1903734 -4684785,2000041739,2,20,17,1,2000041739,1,6.0,-9.0,-9.0,15.0,4.0,1903735 -4684786,2000041740,2,19,17,1,2000041740,2,1.0,5.0,6.0,15.0,4.0,1903736 -4684787,2000041741,2,19,17,1,2000041741,2,1.0,5.0,6.0,15.0,4.0,1903737 -4684788,2000041742,1,18,17,1,2000041742,2,6.0,-9.0,-9.0,15.0,4.0,1903738 -4684789,2000041743,1,18,17,1,2000041743,2,6.0,8.0,6.0,15.0,4.0,1903739 -4684790,2000041744,2,24,17,1,2000041744,1,1.0,17.0,4.0,15.0,4.0,1903740 -4684791,2000041745,2,19,17,1,2000041745,2,3.0,-9.0,-9.0,15.0,4.0,1903741 -4684792,2000041746,2,19,17,1,2000041746,1,6.0,-9.0,-9.0,-9.0,4.0,1903742 -4684793,2000041747,1,18,17,1,2000041747,1,6.0,-9.0,-9.0,15.0,4.0,1903743 -4684794,2000041748,2,19,17,1,2000041748,1,6.0,-9.0,-9.0,15.0,4.0,1903744 -4684795,2000041749,2,18,17,1,2000041749,1,6.0,-9.0,-9.0,-9.0,4.0,1903745 -4684796,2000041750,1,25,17,1,2000041750,1,6.0,-9.0,-9.0,-9.0,4.0,1903746 -4684797,2000041751,2,19,17,1,2000041751,1,6.0,-9.0,-9.0,15.0,4.0,1903747 -4684798,2000041752,2,19,17,1,2000041752,1,6.0,-9.0,-9.0,15.0,4.0,1903748 -4684799,2000041753,1,18,17,1,2000041753,2,6.0,-9.0,-9.0,15.0,4.0,1903749 -4684800,2000041754,2,19,17,1,2000041754,2,3.0,-9.0,-9.0,15.0,4.0,1903750 -4684801,2000041755,1,18,17,1,2000041755,2,6.0,8.0,6.0,15.0,4.0,1903751 -4684802,2000041756,1,25,17,1,2000041756,1,6.0,20.0,5.0,15.0,4.0,1903752 -4684803,2000041757,2,19,17,1,2000041757,1,6.0,-9.0,-9.0,15.0,4.0,1903753 -4684804,2000041758,2,19,17,1,2000041758,2,3.0,-9.0,-9.0,15.0,4.0,1903754 -4684805,2000041759,2,19,17,1,2000041759,1,6.0,-9.0,-9.0,-9.0,4.0,1903755 -4684806,2000041760,1,18,17,1,2000041760,2,6.0,8.0,6.0,15.0,4.0,1903756 -4684807,2000041761,1,18,17,1,2000041761,2,6.0,-9.0,-9.0,15.0,4.0,1903757 -4684808,2000041762,2,19,17,1,2000041762,1,6.0,-9.0,-9.0,15.0,4.0,1903758 -4684809,2000041763,2,19,17,1,2000041763,2,3.0,-9.0,-9.0,15.0,4.0,1903759 -4684810,2000041764,2,29,17,1,2000041764,1,3.0,-9.0,-9.0,-9.0,4.0,1903760 -4684811,2000041765,2,19,17,1,2000041765,1,6.0,-9.0,-9.0,15.0,4.0,1903761 -4684812,2000041766,2,18,17,1,2000041766,2,6.0,-9.0,-9.0,15.0,4.0,1903762 -4684813,2000041767,1,18,17,1,2000041767,2,6.0,-9.0,-9.0,15.0,4.0,1903763 -4684814,2000041768,1,18,17,1,2000041768,1,6.0,-9.0,-9.0,15.0,4.0,1903764 -4684815,2000041769,2,19,17,1,2000041769,2,3.0,-9.0,-9.0,15.0,4.0,1903765 -4684816,2000041770,1,25,17,1,2000041770,2,6.0,35.0,6.0,-9.0,4.0,1903766 -4684817,2000041771,1,18,17,1,2000041771,2,6.0,-9.0,-9.0,15.0,4.0,1903767 -4684818,2000041772,2,18,17,1,2000041772,2,6.0,-9.0,-9.0,15.0,4.0,1903768 -4684819,2000041773,2,19,17,1,2000041773,1,6.0,-9.0,-9.0,15.0,4.0,1903769 -4684820,2000041774,2,18,17,1,2000041774,2,3.0,40.0,4.0,14.0,4.0,1903770 -4684821,2000041775,2,19,17,1,2000041775,1,6.0,-9.0,-9.0,-9.0,4.0,1903771 -4684822,2000041776,2,29,17,1,2000041776,1,6.0,-9.0,-9.0,-9.0,4.0,1903772 -4684823,2000041777,1,18,17,1,2000041777,2,1.0,9.0,4.0,15.0,4.0,1903773 -4684824,2000041778,2,20,17,1,2000041778,2,1.0,12.0,5.0,15.0,4.0,1903774 -4684825,2000041779,2,19,17,1,2000041779,1,6.0,-9.0,-9.0,15.0,4.0,1903775 -4684826,2000041780,2,18,17,1,2000041780,2,6.0,-9.0,-9.0,15.0,4.0,1903776 -4684827,2000041781,2,19,17,1,2000041781,2,1.0,5.0,6.0,15.0,4.0,1903777 -4684828,2000041782,2,19,17,1,2000041782,1,6.0,-9.0,-9.0,-9.0,4.0,1903778 -4684829,2000041783,1,18,17,1,2000041783,2,6.0,50.0,3.0,15.0,4.0,1903779 -4684830,2000041784,2,18,17,1,2000041784,2,6.0,-9.0,-9.0,13.0,4.0,1903780 -4684831,2000041785,2,19,17,1,2000041785,2,1.0,5.0,6.0,15.0,4.0,1903781 -4684832,2000041786,2,19,17,1,2000041786,1,6.0,-9.0,-9.0,15.0,4.0,1903782 -4684833,2000041787,1,18,17,1,2000041787,1,6.0,-9.0,-9.0,15.0,4.0,1903783 -4684834,2000041788,1,18,17,1,2000041788,1,6.0,-9.0,-9.0,15.0,4.0,1903784 -4684835,2000041789,1,18,17,1,2000041789,2,6.0,-9.0,-9.0,15.0,4.0,1903785 -4684836,2000041790,2,19,17,1,2000041790,2,3.0,-9.0,-9.0,15.0,4.0,1903786 -4684837,2000041791,2,19,17,1,2000041791,1,6.0,-9.0,-9.0,-9.0,4.0,1903787 -4684838,2000041792,2,19,17,1,2000041792,2,1.0,5.0,6.0,15.0,4.0,1903788 -4684839,2000041793,2,19,17,1,2000041793,2,3.0,-9.0,-9.0,15.0,4.0,1903789 -4684840,2000041794,2,19,17,1,2000041794,2,1.0,5.0,6.0,15.0,4.0,1903790 -4684841,2000041795,2,19,17,1,2000041795,1,6.0,-9.0,-9.0,-9.0,4.0,1903791 -4684842,2000041796,1,25,17,1,2000041796,1,6.0,20.0,5.0,15.0,4.0,1903792 -4684843,2000041797,2,18,17,1,2000041797,2,6.0,-9.0,-9.0,15.0,4.0,1903793 -4684844,2000041798,1,18,17,1,2000041798,2,6.0,-9.0,-9.0,15.0,4.0,1903794 -4684845,2000041799,1,18,17,1,2000041799,1,6.0,-9.0,-9.0,15.0,4.0,1903795 -4684846,2000041800,2,29,17,1,2000041800,1,6.0,-9.0,-9.0,-9.0,4.0,1903796 -4684847,2000041801,2,19,17,1,2000041801,1,6.0,-9.0,-9.0,15.0,4.0,1903797 -4684848,2000041802,2,19,17,1,2000041802,2,3.0,-9.0,-9.0,15.0,4.0,1903798 -4684849,2000041803,2,24,17,1,2000041803,1,1.0,17.0,4.0,15.0,4.0,1903799 -4684850,2000041804,2,18,17,1,2000041804,1,6.0,-9.0,-9.0,-9.0,4.0,1903800 -4684851,2000041805,1,18,17,1,2000041805,1,6.0,-9.0,-9.0,15.0,4.0,1903801 -4684852,2000041806,1,18,17,1,2000041806,2,1.0,9.0,4.0,15.0,4.0,1903802 -4684853,2000041807,2,19,17,1,2000041807,1,6.0,-9.0,-9.0,15.0,4.0,1903803 -4684854,2000041808,2,18,17,1,2000041808,2,6.0,-9.0,-9.0,15.0,4.0,1903804 -4684855,2000041809,2,19,17,1,2000041809,1,6.0,-9.0,-9.0,15.0,4.0,1903805 -4684856,2000041810,1,18,17,1,2000041810,2,6.0,-9.0,-9.0,15.0,4.0,1903806 -4684857,2000041811,2,19,17,1,2000041811,2,3.0,-9.0,-9.0,15.0,4.0,1903807 -4684858,2000041812,2,24,17,1,2000041812,2,6.0,-9.0,-9.0,-9.0,4.0,1903808 -4684859,2000041813,2,18,17,1,2000041813,2,6.0,-9.0,-9.0,13.0,4.0,1903809 -4684860,2000041814,2,19,17,1,2000041814,1,6.0,-9.0,-9.0,15.0,4.0,1903810 -4684861,2000041815,2,19,17,1,2000041815,2,3.0,-9.0,-9.0,15.0,4.0,1903811 -4684862,2000041816,2,19,17,1,2000041816,2,3.0,-9.0,-9.0,15.0,4.0,1903812 -4684863,2000041817,1,18,17,1,2000041817,2,6.0,-9.0,-9.0,15.0,4.0,1903813 -4684864,2000041818,2,19,17,1,2000041818,1,6.0,-9.0,-9.0,-9.0,4.0,1903814 -4684865,2000041819,1,18,17,1,2000041819,2,6.0,8.0,6.0,15.0,4.0,1903815 -4684866,2000041820,1,18,17,1,2000041820,2,6.0,-9.0,-9.0,15.0,4.0,1903816 -4684867,2000041821,2,19,17,1,2000041821,2,1.0,5.0,6.0,15.0,4.0,1903817 -4684868,2000041822,2,19,17,1,2000041822,2,3.0,-9.0,-9.0,15.0,4.0,1903818 -4684869,2000041823,2,19,17,1,2000041823,2,1.0,5.0,6.0,15.0,4.0,1903819 -4684870,2000041824,1,18,17,1,2000041824,2,6.0,-9.0,-9.0,15.0,4.0,1903820 -4684871,2000041825,1,18,17,1,2000041825,2,6.0,-9.0,-9.0,15.0,4.0,1903821 -4684872,2000041826,2,19,17,1,2000041826,1,6.0,-9.0,-9.0,-9.0,4.0,1903822 -4684873,2000041827,2,19,17,1,2000041827,2,3.0,-9.0,-9.0,15.0,4.0,1903823 -4684874,2000041828,2,19,17,1,2000041828,2,1.0,5.0,6.0,15.0,4.0,1903824 -4684875,2000041829,2,19,17,1,2000041829,1,6.0,-9.0,-9.0,-9.0,4.0,1903825 -4684876,2000041830,2,19,17,1,2000041830,1,6.0,-9.0,-9.0,-9.0,4.0,1903826 -4684877,2000041831,2,20,17,1,2000041831,2,1.0,12.0,5.0,15.0,4.0,1903827 -4684878,2000041832,1,25,17,1,2000041832,2,6.0,35.0,6.0,-9.0,4.0,1903828 -4684879,2000041833,1,18,17,1,2000041833,2,6.0,8.0,6.0,15.0,4.0,1903829 -4684880,2000041834,1,18,17,1,2000041834,2,1.0,9.0,4.0,15.0,4.0,1903830 -4684881,2000041835,2,19,17,1,2000041835,1,6.0,-9.0,-9.0,15.0,4.0,1903831 -4684882,2000041836,1,25,17,1,2000041836,1,6.0,20.0,5.0,15.0,4.0,1903832 -4684883,2000041837,2,20,17,1,2000041837,2,1.0,12.0,5.0,15.0,4.0,1903833 -4684884,2000041838,2,18,17,1,2000041838,2,6.0,-9.0,-9.0,15.0,4.0,1903834 -4684885,2000041839,2,29,17,1,2000041839,1,3.0,-9.0,-9.0,-9.0,4.0,1903835 -4684886,2000041840,2,19,17,1,2000041840,2,1.0,5.0,6.0,15.0,4.0,1903836 -4684887,2000041841,2,18,17,1,2000041841,2,6.0,-9.0,-9.0,15.0,4.0,1903837 -4684888,2000041842,2,29,17,1,2000041842,1,3.0,-9.0,-9.0,-9.0,4.0,1903838 -4684889,2000041843,2,18,17,1,2000041843,2,6.0,-9.0,-9.0,13.0,4.0,1903839 -4684890,2000041844,1,18,17,1,2000041844,2,1.0,9.0,4.0,15.0,4.0,1903840 -4684891,2000041845,1,18,17,1,2000041845,2,6.0,50.0,3.0,15.0,4.0,1903841 -4684892,2000041846,2,29,17,1,2000041846,1,3.0,-9.0,-9.0,-9.0,4.0,1903842 -4684893,2000041847,2,19,17,1,2000041847,1,6.0,-9.0,-9.0,15.0,4.0,1903843 -4684894,2000041848,2,19,17,1,2000041848,2,3.0,-9.0,-9.0,15.0,4.0,1903844 -4684895,2000041849,2,18,17,1,2000041849,2,6.0,-9.0,-9.0,15.0,4.0,1903845 -4684896,2000041850,2,19,17,1,2000041850,1,6.0,-9.0,-9.0,15.0,4.0,1903846 -4684897,2000041851,1,18,17,1,2000041851,1,6.0,-9.0,-9.0,15.0,4.0,1903847 -4684898,2000041852,2,19,17,1,2000041852,2,3.0,-9.0,-9.0,15.0,4.0,1903848 -4684899,2000041853,2,19,17,1,2000041853,2,1.0,5.0,6.0,15.0,4.0,1903849 -4684900,2000041854,1,25,17,1,2000041854,1,6.0,20.0,5.0,15.0,4.0,1903850 -4684901,2000041855,2,19,17,1,2000041855,2,1.0,5.0,6.0,15.0,4.0,1903851 -4684902,2000041856,1,25,17,1,2000041856,1,6.0,-9.0,-9.0,-9.0,4.0,1903852 -4684903,2000041857,1,18,17,1,2000041857,2,6.0,-9.0,-9.0,15.0,4.0,1903853 -4684904,2000041858,1,25,17,1,2000041858,2,6.0,35.0,6.0,-9.0,4.0,1903854 -4684905,2000041859,1,18,17,1,2000041859,2,6.0,-9.0,-9.0,15.0,4.0,1903855 -4684906,2000041860,1,18,17,1,2000041860,2,6.0,-9.0,-9.0,15.0,4.0,1903856 -4684907,2000041861,2,19,17,1,2000041861,1,6.0,-9.0,-9.0,15.0,4.0,1903857 -4684908,2000041862,1,18,17,1,2000041862,2,6.0,-9.0,-9.0,15.0,4.0,1903858 -4684909,2000041863,1,18,17,1,2000041863,2,6.0,-9.0,-9.0,15.0,4.0,1903859 -4684910,2000041864,2,19,17,1,2000041864,1,6.0,-9.0,-9.0,-9.0,4.0,1903860 -4684911,2000041865,2,19,17,1,2000041865,2,3.0,-9.0,-9.0,15.0,4.0,1903861 -4684912,2000041866,2,29,17,1,2000041866,1,6.0,-9.0,-9.0,-9.0,4.0,1903862 -4684913,2000041867,2,19,17,1,2000041867,2,3.0,-9.0,-9.0,15.0,4.0,1903863 -4684914,2000041868,1,25,17,1,2000041868,1,6.0,-9.0,-9.0,-9.0,4.0,1903864 -4684915,2000041869,2,19,17,1,2000041869,2,1.0,5.0,6.0,15.0,4.0,1903865 -4684916,2000041870,2,24,17,1,2000041870,2,6.0,-9.0,-9.0,-9.0,4.0,1903866 -4684917,2000041871,2,19,17,1,2000041871,1,6.0,-9.0,-9.0,-9.0,4.0,1903867 -4684918,2000041872,1,18,17,1,2000041872,2,6.0,50.0,3.0,15.0,4.0,1903868 -4684919,2000041873,2,20,17,1,2000041873,2,1.0,12.0,5.0,15.0,4.0,1903869 -4684920,2000041874,2,18,17,1,2000041874,2,3.0,-9.0,-9.0,15.0,4.0,1903870 -4684921,2000041875,2,19,17,1,2000041875,2,1.0,5.0,6.0,15.0,4.0,1903871 -4684922,2000041876,1,18,17,1,2000041876,1,6.0,-9.0,-9.0,15.0,4.0,1903872 -4684923,2000041877,2,19,17,1,2000041877,2,1.0,5.0,6.0,15.0,4.0,1903873 -4684924,2000041878,1,18,17,1,2000041878,2,6.0,-9.0,-9.0,15.0,4.0,1903874 -4684925,2000041879,2,19,17,1,2000041879,1,6.0,-9.0,-9.0,15.0,4.0,1903875 -4684926,2000041880,1,18,17,1,2000041880,1,6.0,-9.0,-9.0,15.0,4.0,1903876 -4684927,2000041881,1,18,17,1,2000041881,1,6.0,-9.0,-9.0,15.0,4.0,1903877 -4684928,2000041882,1,25,17,1,2000041882,2,6.0,35.0,6.0,-9.0,4.0,1903878 -4684929,2000041883,2,20,17,1,2000041883,1,6.0,-9.0,-9.0,15.0,4.0,1903879 -4684930,2000041884,2,19,17,1,2000041884,2,1.0,5.0,6.0,15.0,4.0,1903880 -4684931,2000041885,2,19,17,1,2000041885,2,3.0,-9.0,-9.0,15.0,4.0,1903881 -4684932,2000041886,2,19,17,1,2000041886,1,6.0,-9.0,-9.0,-9.0,4.0,1903882 -4684933,2000041887,1,18,17,1,2000041887,2,6.0,24.0,1.0,15.0,4.0,1903883 -4684934,2000041888,2,19,17,1,2000041888,1,6.0,-9.0,-9.0,-9.0,4.0,1903884 -4684935,2000041889,2,19,17,1,2000041889,2,3.0,-9.0,-9.0,15.0,4.0,1903885 -4684936,2000041890,2,18,17,1,2000041890,2,6.0,-9.0,-9.0,13.0,4.0,1903886 -4684937,2000041891,2,19,17,1,2000041891,2,1.0,5.0,6.0,15.0,4.0,1903887 -4684938,2000041892,1,18,17,1,2000041892,2,6.0,-9.0,-9.0,15.0,4.0,1903888 -4684939,2000041893,2,19,17,1,2000041893,2,1.0,5.0,6.0,15.0,4.0,1903889 -4684940,2000041894,1,18,17,1,2000041894,2,6.0,50.0,3.0,15.0,4.0,1903890 -4684941,2000041895,2,19,17,1,2000041895,1,6.0,-9.0,-9.0,-9.0,4.0,1903891 -4684942,2000041896,2,19,17,1,2000041896,1,6.0,-9.0,-9.0,15.0,4.0,1903892 -4684943,2000041897,2,20,17,1,2000041897,2,1.0,12.0,5.0,15.0,4.0,1903893 -4684944,2000041898,1,18,17,1,2000041898,1,6.0,-9.0,-9.0,15.0,4.0,1903894 -4684945,2000041899,1,18,17,1,2000041899,1,6.0,-9.0,-9.0,15.0,4.0,1903895 -4684946,2000041900,2,19,17,1,2000041900,1,6.0,-9.0,-9.0,15.0,4.0,1903896 -4684947,2000041901,2,19,17,1,2000041901,2,1.0,5.0,6.0,15.0,4.0,1903897 -4684948,2000041902,2,18,17,1,2000041902,2,6.0,-9.0,-9.0,15.0,4.0,1903898 -4684949,2000041903,1,25,17,1,2000041903,2,6.0,35.0,6.0,-9.0,4.0,1903899 -4684950,2000041904,2,18,17,1,2000041904,1,6.0,-9.0,-9.0,-9.0,4.0,1903900 -4684951,2000041905,1,18,17,1,2000041905,2,6.0,-9.0,-9.0,15.0,4.0,1903901 -4684952,2000041906,1,18,17,1,2000041906,2,1.0,9.0,4.0,15.0,4.0,1903902 -4684953,2000041907,2,19,17,1,2000041907,1,6.0,-9.0,-9.0,-9.0,4.0,1903903 -4684954,2000041908,2,19,17,1,2000041908,1,6.0,-9.0,-9.0,15.0,4.0,1903904 -4684955,2000041909,1,18,17,1,2000041909,2,6.0,-9.0,-9.0,15.0,4.0,1903905 -4684956,2000041910,1,18,17,1,2000041910,2,6.0,-9.0,-9.0,15.0,4.0,1903906 -4684957,2000041911,2,19,17,1,2000041911,1,6.0,-9.0,-9.0,15.0,4.0,1903907 -4684958,2000041912,1,18,17,1,2000041912,1,6.0,-9.0,-9.0,15.0,4.0,1903908 -4684959,2000041913,1,18,17,1,2000041913,1,6.0,-9.0,-9.0,15.0,4.0,1903909 -4684960,2000041914,2,19,17,1,2000041914,1,6.0,-9.0,-9.0,15.0,4.0,1903910 -4684961,2000041915,1,18,17,1,2000041915,1,6.0,-9.0,-9.0,15.0,4.0,1903911 -4684962,2000041916,2,19,17,1,2000041916,1,6.0,-9.0,-9.0,-9.0,4.0,1903912 -4684963,2000041917,2,19,17,1,2000041917,1,6.0,-9.0,-9.0,-9.0,4.0,1903913 -4684964,2000041918,1,18,17,1,2000041918,2,6.0,-9.0,-9.0,15.0,4.0,1903914 -4684965,2000041919,1,18,17,1,2000041919,2,6.0,50.0,3.0,15.0,4.0,1903915 -4684966,2000041920,2,19,17,1,2000041920,1,6.0,-9.0,-9.0,15.0,4.0,1903916 -4684967,2000041921,1,18,17,1,2000041921,2,6.0,-9.0,-9.0,15.0,4.0,1903917 -4684968,2000041922,1,18,17,1,2000041922,2,6.0,8.0,6.0,15.0,4.0,1903918 -4684969,2000041923,2,19,17,1,2000041923,2,3.0,-9.0,-9.0,15.0,4.0,1903919 -4684970,2000041924,2,19,17,1,2000041924,2,3.0,-9.0,-9.0,15.0,4.0,1903920 -4684971,2000041925,2,20,17,1,2000041925,1,6.0,-9.0,-9.0,15.0,4.0,1903921 -4684972,2000041926,1,18,17,1,2000041926,1,6.0,-9.0,-9.0,15.0,4.0,1903922 -4684973,2000041927,1,25,17,1,2000041927,2,6.0,35.0,6.0,-9.0,4.0,1903923 -4684974,2000041928,1,25,17,1,2000041928,2,6.0,35.0,6.0,-9.0,4.0,1903924 -4684975,2000041929,2,18,17,1,2000041929,1,6.0,-9.0,-9.0,-9.0,4.0,1903925 -4684976,2000041930,1,18,17,1,2000041930,2,6.0,-9.0,-9.0,15.0,4.0,1903926 -4684977,2000041931,2,19,17,1,2000041931,2,3.0,-9.0,-9.0,15.0,4.0,1903927 -4684978,2000041932,1,18,17,1,2000041932,2,6.0,-9.0,-9.0,15.0,4.0,1903928 -4684979,2000041933,2,19,17,1,2000041933,2,3.0,-9.0,-9.0,15.0,4.0,1903929 -4684980,2000041934,1,18,17,1,2000041934,2,6.0,-9.0,-9.0,15.0,4.0,1903930 -4684981,2000041935,1,18,17,1,2000041935,2,6.0,-9.0,-9.0,15.0,4.0,1903931 -4684982,2000041936,2,19,17,1,2000041936,2,3.0,-9.0,-9.0,15.0,4.0,1903932 -4684983,2000041937,2,19,17,1,2000041937,1,6.0,-9.0,-9.0,15.0,4.0,1903933 -4684984,2000041938,1,18,17,1,2000041938,1,6.0,-9.0,-9.0,15.0,4.0,1903934 -4684985,2000041939,2,18,17,1,2000041939,2,6.0,-9.0,-9.0,15.0,4.0,1903935 -4684986,2000041940,2,19,17,1,2000041940,1,6.0,-9.0,-9.0,15.0,4.0,1903936 -4684987,2000041941,1,18,17,1,2000041941,2,6.0,-9.0,-9.0,15.0,4.0,1903937 -4684988,2000041942,1,18,17,1,2000041942,2,6.0,-9.0,-9.0,15.0,4.0,1903938 -4684989,2000041943,2,24,17,1,2000041943,2,6.0,-9.0,-9.0,-9.0,4.0,1903939 -4684990,2000041944,2,19,17,1,2000041944,1,6.0,-9.0,-9.0,15.0,4.0,1903940 -4684991,2000041945,1,18,17,1,2000041945,2,6.0,24.0,1.0,15.0,4.0,1903941 -4684992,2000041946,1,18,17,1,2000041946,1,6.0,-9.0,-9.0,15.0,4.0,1903942 -4684993,2000041947,1,18,17,1,2000041947,2,6.0,-9.0,-9.0,15.0,4.0,1903943 -4684994,2000041948,1,25,17,1,2000041948,1,6.0,-9.0,-9.0,-9.0,4.0,1903944 -4684995,2000041949,1,25,17,1,2000041949,1,6.0,-9.0,-9.0,-9.0,4.0,1903945 -4684996,2000041950,1,18,17,1,2000041950,2,6.0,-9.0,-9.0,15.0,4.0,1903946 -4684997,2000041951,1,18,17,1,2000041951,2,6.0,24.0,1.0,15.0,4.0,1903947 -4684998,2000041952,2,19,17,1,2000041952,2,1.0,5.0,6.0,15.0,4.0,1903948 -4684999,2000041953,2,19,17,1,2000041953,1,6.0,-9.0,-9.0,-9.0,4.0,1903949 -4685000,2000041954,1,18,17,1,2000041954,1,6.0,-9.0,-9.0,15.0,4.0,1903950 -4685001,2000041955,1,18,17,1,2000041955,1,6.0,-9.0,-9.0,15.0,4.0,1903951 -4685002,2000041956,1,18,17,1,2000041956,2,6.0,-9.0,-9.0,15.0,4.0,1903952 -4685003,2000041957,1,18,17,1,2000041957,2,6.0,-9.0,-9.0,15.0,4.0,1903953 -4685004,2000041958,1,18,17,1,2000041958,1,6.0,-9.0,-9.0,15.0,4.0,1903954 -4685005,2000041959,2,19,17,1,2000041959,1,6.0,-9.0,-9.0,15.0,4.0,1903955 -4685006,2000041960,2,19,17,1,2000041960,2,3.0,-9.0,-9.0,15.0,4.0,1903956 -4685007,2000041961,2,19,17,1,2000041961,2,3.0,-9.0,-9.0,15.0,4.0,1903957 -4685008,2000041962,1,25,17,1,2000041962,1,6.0,-9.0,-9.0,-9.0,4.0,1903958 -4685009,2000041963,2,29,17,1,2000041963,1,3.0,-9.0,-9.0,-9.0,4.0,1903959 -4685010,2000041964,1,25,17,1,2000041964,1,6.0,20.0,5.0,15.0,4.0,1903960 -4685011,2000041965,1,18,17,1,2000041965,2,6.0,24.0,1.0,15.0,4.0,1903961 -4685012,2000041966,2,19,17,1,2000041966,2,1.0,5.0,6.0,15.0,4.0,1903962 -4685013,2000041967,2,19,17,1,2000041967,1,6.0,-9.0,-9.0,15.0,4.0,1903963 -4685014,2000041968,2,19,17,1,2000041968,2,3.0,-9.0,-9.0,15.0,4.0,1903964 -4685015,2000041969,1,18,17,1,2000041969,2,6.0,-9.0,-9.0,15.0,4.0,1903965 -4685016,2000041970,1,18,17,1,2000041970,2,6.0,-9.0,-9.0,15.0,4.0,1903966 -4685017,2000041971,1,25,17,1,2000041971,2,6.0,35.0,6.0,-9.0,4.0,1903967 -4685018,2000041972,2,19,17,1,2000041972,2,3.0,-9.0,-9.0,15.0,4.0,1903968 -4685019,2000041973,2,20,17,1,2000041973,2,1.0,12.0,5.0,15.0,4.0,1903969 -4685020,2000041974,1,18,17,1,2000041974,2,6.0,50.0,3.0,15.0,4.0,1903970 -4685021,2000041975,2,19,17,1,2000041975,2,1.0,5.0,6.0,15.0,4.0,1903971 -4685022,2000041976,1,25,17,1,2000041976,2,6.0,35.0,6.0,-9.0,4.0,1903972 -4685023,2000041977,2,19,17,1,2000041977,2,1.0,5.0,6.0,15.0,4.0,1903973 -4685024,2000041978,2,20,17,1,2000041978,1,6.0,-9.0,-9.0,15.0,4.0,1903974 -4685025,2000041979,2,19,17,1,2000041979,1,6.0,-9.0,-9.0,-9.0,4.0,1903975 -4685026,2000041980,2,19,17,1,2000041980,2,1.0,5.0,6.0,15.0,4.0,1903976 -4685027,2000041981,2,19,17,1,2000041981,1,6.0,-9.0,-9.0,15.0,4.0,1903977 -4685028,2000041982,2,19,17,1,2000041982,1,6.0,-9.0,-9.0,15.0,4.0,1903978 -4685029,2000041983,1,18,17,1,2000041983,2,6.0,-9.0,-9.0,15.0,4.0,1903979 -4685030,2000041984,1,18,17,1,2000041984,2,6.0,-9.0,-9.0,15.0,4.0,1903980 -4685031,2000041985,1,25,17,1,2000041985,1,6.0,-9.0,-9.0,-9.0,4.0,1903981 -4685032,2000041986,2,24,17,1,2000041986,1,1.0,17.0,4.0,15.0,4.0,1903982 -4685033,2000041987,1,25,17,1,2000041987,1,6.0,20.0,5.0,15.0,4.0,1903983 -4685034,2000041988,2,19,17,1,2000041988,2,1.0,5.0,6.0,15.0,4.0,1903984 -4685035,2000041989,1,25,17,1,2000041989,1,6.0,-9.0,-9.0,-9.0,4.0,1903985 -4685036,2000041990,1,18,17,1,2000041990,2,6.0,24.0,1.0,15.0,4.0,1903986 -4685037,2000041991,1,18,17,1,2000041991,2,6.0,-9.0,-9.0,15.0,4.0,1903987 -4685038,2000041992,2,19,17,1,2000041992,1,6.0,-9.0,-9.0,15.0,4.0,1903988 -4685039,2000041993,2,24,17,1,2000041993,2,6.0,-9.0,-9.0,-9.0,4.0,1903989 -4685040,2000041994,1,18,17,1,2000041994,2,6.0,24.0,1.0,15.0,4.0,1903990 -4685041,2000041995,2,19,17,1,2000041995,1,6.0,-9.0,-9.0,15.0,4.0,1903991 -4685042,2000041996,2,18,17,1,2000041996,2,3.0,-9.0,-9.0,15.0,4.0,1903992 -4685043,2000041997,1,25,17,1,2000041997,1,6.0,20.0,5.0,15.0,4.0,1903993 -4685044,2000041998,2,20,17,1,2000041998,2,1.0,12.0,5.0,15.0,4.0,1903994 -4685045,2000041999,1,18,17,1,2000041999,2,6.0,-9.0,-9.0,15.0,4.0,1903995 -4685046,2000042000,2,18,17,1,2000042000,1,6.0,-9.0,-9.0,-9.0,4.0,1903996 -4685047,2000042001,2,19,17,1,2000042001,1,6.0,-9.0,-9.0,15.0,4.0,1903997 -4685048,2000042002,2,19,17,1,2000042002,2,1.0,5.0,6.0,15.0,4.0,1903998 -4685049,2000042003,1,18,17,1,2000042003,1,6.0,-9.0,-9.0,15.0,4.0,1903999 -4685050,2000042004,2,19,17,1,2000042004,2,3.0,-9.0,-9.0,15.0,4.0,1904000 -4685051,2000042005,2,19,17,1,2000042005,2,1.0,5.0,6.0,15.0,4.0,1904001 -4685052,2000042006,2,24,17,1,2000042006,1,1.0,17.0,4.0,15.0,4.0,1904002 -4685053,2000042007,1,18,17,1,2000042007,1,6.0,-9.0,-9.0,15.0,4.0,1904003 -4685054,2000042008,2,19,17,1,2000042008,1,6.0,-9.0,-9.0,15.0,4.0,1904004 -4685055,2000042009,1,25,17,1,2000042009,2,6.0,35.0,6.0,-9.0,4.0,1904005 -4685056,2000042010,1,18,17,1,2000042010,2,6.0,-9.0,-9.0,15.0,4.0,1904006 -4685057,2000042011,2,19,17,1,2000042011,2,3.0,-9.0,-9.0,15.0,4.0,1904007 -4685058,2000042012,1,18,17,1,2000042012,2,6.0,-9.0,-9.0,15.0,4.0,1904008 -4685059,2000042013,2,19,17,1,2000042013,2,1.0,5.0,6.0,15.0,4.0,1904009 -4685060,2000042014,2,19,17,1,2000042014,2,3.0,-9.0,-9.0,15.0,4.0,1904010 -4685061,2000042015,2,19,17,1,2000042015,1,6.0,-9.0,-9.0,15.0,4.0,1904011 -4685062,2000042016,2,19,17,1,2000042016,2,3.0,-9.0,-9.0,15.0,4.0,1904012 -4685063,2000042017,1,18,17,1,2000042017,2,6.0,24.0,1.0,15.0,4.0,1904013 -4685064,2000042018,2,19,17,1,2000042018,1,6.0,-9.0,-9.0,15.0,4.0,1904014 -4685065,2000042019,2,18,17,1,2000042019,1,6.0,-9.0,-9.0,-9.0,4.0,1904015 -4685066,2000042020,1,25,17,1,2000042020,1,6.0,20.0,5.0,15.0,4.0,1904016 -4685067,2000042021,2,19,17,1,2000042021,2,1.0,5.0,6.0,15.0,4.0,1904017 -4685068,2000042022,2,20,17,1,2000042022,2,1.0,12.0,5.0,15.0,4.0,1904018 -4685069,2000042023,1,18,17,1,2000042023,1,6.0,-9.0,-9.0,15.0,4.0,1904019 -4685070,2000042024,2,19,17,1,2000042024,2,3.0,-9.0,-9.0,15.0,4.0,1904020 -4685071,2000042025,1,18,17,1,2000042025,2,6.0,-9.0,-9.0,15.0,4.0,1904021 -4685072,2000042026,2,19,17,1,2000042026,2,3.0,-9.0,-9.0,15.0,4.0,1904022 -4685073,2000042027,2,19,17,1,2000042027,1,6.0,-9.0,-9.0,-9.0,4.0,1904023 -4685074,2000042028,2,19,17,1,2000042028,2,3.0,-9.0,-9.0,15.0,4.0,1904024 -4685075,2000042029,2,19,17,1,2000042029,1,6.0,-9.0,-9.0,15.0,4.0,1904025 -4685076,2000042030,2,18,17,1,2000042030,2,6.0,-9.0,-9.0,13.0,4.0,1904026 -4685077,2000042031,2,19,17,1,2000042031,2,3.0,-9.0,-9.0,15.0,4.0,1904027 -4685078,2000042032,1,18,17,1,2000042032,2,6.0,-9.0,-9.0,15.0,4.0,1904028 -4685079,2000042033,2,19,17,1,2000042033,2,1.0,5.0,6.0,15.0,4.0,1904029 -4685080,2000042034,2,18,17,1,2000042034,1,6.0,-9.0,-9.0,-9.0,4.0,1904030 -4685081,2000042035,2,19,17,1,2000042035,2,3.0,-9.0,-9.0,15.0,4.0,1904031 -4685082,2000042036,2,19,17,1,2000042036,2,3.0,-9.0,-9.0,15.0,4.0,1904032 -4685083,2000042037,2,19,17,1,2000042037,1,6.0,-9.0,-9.0,15.0,4.0,1904033 -4685084,2000042038,1,18,17,1,2000042038,2,6.0,24.0,1.0,15.0,4.0,1904034 -4685085,2000042039,1,18,17,1,2000042039,1,6.0,-9.0,-9.0,15.0,4.0,1904035 -4685086,2000042040,2,24,17,1,2000042040,1,1.0,17.0,4.0,15.0,4.0,1904036 -4685087,2000042041,1,18,17,1,2000042041,2,6.0,50.0,3.0,15.0,4.0,1904037 -4685088,2000042042,2,19,17,1,2000042042,1,6.0,-9.0,-9.0,15.0,4.0,1904038 -4685089,2000042043,2,19,17,1,2000042043,2,1.0,5.0,6.0,15.0,4.0,1904039 -4685090,2000042044,1,18,17,1,2000042044,2,6.0,-9.0,-9.0,15.0,4.0,1904040 -4685091,2000042045,2,18,17,1,2000042045,2,6.0,-9.0,-9.0,15.0,4.0,1904041 -4685092,2000042046,2,19,17,1,2000042046,1,6.0,-9.0,-9.0,-9.0,4.0,1904042 -4685093,2000042047,1,18,17,1,2000042047,2,6.0,-9.0,-9.0,15.0,4.0,1904043 -4685094,2000042048,1,18,17,1,2000042048,2,6.0,-9.0,-9.0,15.0,4.0,1904044 -4685095,2000042049,2,19,17,1,2000042049,1,6.0,-9.0,-9.0,15.0,4.0,1904045 -4685096,2000042050,1,18,17,1,2000042050,2,1.0,9.0,4.0,15.0,4.0,1904046 -4685097,2000042051,1,18,17,1,2000042051,2,6.0,-9.0,-9.0,15.0,4.0,1904047 -4685098,2000042052,2,19,17,1,2000042052,2,3.0,-9.0,-9.0,15.0,4.0,1904048 -4685099,2000042053,2,19,17,1,2000042053,1,6.0,-9.0,-9.0,15.0,4.0,1904049 -4685100,2000042054,2,19,17,1,2000042054,2,3.0,-9.0,-9.0,15.0,4.0,1904050 -4685101,2000042055,2,29,17,1,2000042055,1,3.0,-9.0,-9.0,-9.0,4.0,1904051 -4685102,2000042056,2,19,17,1,2000042056,2,3.0,-9.0,-9.0,15.0,4.0,1904052 -4685103,2000042057,2,18,17,1,2000042057,2,3.0,40.0,4.0,14.0,4.0,1904053 -4685104,2000042058,2,18,17,1,2000042058,2,6.0,-9.0,-9.0,15.0,4.0,1904054 -4685105,2000042059,1,25,17,1,2000042059,1,6.0,-9.0,-9.0,-9.0,4.0,1904055 -4685106,2000042060,2,19,17,1,2000042060,2,3.0,-9.0,-9.0,15.0,4.0,1904056 -4685107,2000042061,2,19,17,1,2000042061,1,6.0,-9.0,-9.0,15.0,4.0,1904057 -4685108,2000042062,1,18,17,1,2000042062,2,6.0,-9.0,-9.0,15.0,4.0,1904058 -4685109,2000042063,2,18,17,1,2000042063,2,6.0,-9.0,-9.0,15.0,4.0,1904059 -4685110,2000042064,2,19,17,1,2000042064,2,3.0,-9.0,-9.0,15.0,4.0,1904060 -4685111,2000042065,2,20,17,1,2000042065,2,1.0,12.0,5.0,15.0,4.0,1904061 -4685112,2000042066,2,19,17,1,2000042066,1,6.0,-9.0,-9.0,15.0,4.0,1904062 -4685113,2000042067,1,18,17,1,2000042067,2,6.0,8.0,6.0,15.0,4.0,1904063 -4685114,2000042068,2,20,17,1,2000042068,2,1.0,12.0,5.0,15.0,4.0,1904064 -4685115,2000042069,2,18,17,1,2000042069,2,6.0,-9.0,-9.0,15.0,4.0,1904065 -4685116,2000042070,1,18,17,1,2000042070,2,6.0,24.0,1.0,15.0,4.0,1904066 -4685117,2000042071,1,18,17,1,2000042071,2,6.0,24.0,1.0,15.0,4.0,1904067 -4685118,2000042072,2,19,17,1,2000042072,1,6.0,-9.0,-9.0,15.0,4.0,1904068 -4685119,2000042073,1,18,17,1,2000042073,2,6.0,-9.0,-9.0,15.0,4.0,1904069 -4685120,2000042074,1,18,17,1,2000042074,2,6.0,50.0,3.0,15.0,4.0,1904070 -4685121,2000042075,1,18,17,1,2000042075,2,6.0,-9.0,-9.0,15.0,4.0,1904071 -4685122,2000042076,2,18,17,1,2000042076,2,3.0,40.0,4.0,14.0,4.0,1904072 -4685123,2000042077,1,18,17,1,2000042077,2,6.0,-9.0,-9.0,15.0,4.0,1904073 -4685124,2000042078,2,19,17,1,2000042078,1,6.0,-9.0,-9.0,15.0,4.0,1904074 -4685125,2000042079,1,18,17,1,2000042079,2,6.0,50.0,3.0,15.0,4.0,1904075 -4685126,2000042080,2,29,17,1,2000042080,1,3.0,-9.0,-9.0,-9.0,4.0,1904076 -4685127,2000042081,1,25,17,1,2000042081,1,6.0,20.0,5.0,15.0,4.0,1904077 -4685128,2000042082,2,19,17,1,2000042082,1,6.0,-9.0,-9.0,-9.0,4.0,1904078 -4685129,2000042083,1,18,17,1,2000042083,2,6.0,-9.0,-9.0,15.0,4.0,1904079 -4685130,2000042084,1,18,17,1,2000042084,2,6.0,-9.0,-9.0,15.0,4.0,1904080 -4685131,2000042085,1,18,17,1,2000042085,1,6.0,-9.0,-9.0,15.0,4.0,1904081 -4685132,2000042086,2,18,17,1,2000042086,2,6.0,-9.0,-9.0,15.0,4.0,1904082 -4685133,2000042087,1,25,17,1,2000042087,1,6.0,20.0,5.0,15.0,4.0,1904083 -4685134,2000042088,1,18,17,1,2000042088,2,6.0,8.0,6.0,15.0,4.0,1904084 -4685135,2000042089,2,19,17,1,2000042089,2,3.0,-9.0,-9.0,15.0,4.0,1904085 -4685136,2000042090,2,19,17,1,2000042090,1,6.0,-9.0,-9.0,15.0,4.0,1904086 -4685137,2000042091,2,19,17,1,2000042091,1,6.0,-9.0,-9.0,15.0,4.0,1904087 -4685138,2000042092,2,19,17,1,2000042092,2,3.0,-9.0,-9.0,15.0,4.0,1904088 -4685139,2000042093,1,25,17,1,2000042093,2,6.0,35.0,6.0,-9.0,4.0,1904089 -4685140,2000042094,2,24,17,1,2000042094,1,1.0,17.0,4.0,15.0,4.0,1904090 -4685141,2000042095,1,18,17,1,2000042095,2,6.0,8.0,6.0,15.0,4.0,1904091 -4685142,2000042096,2,19,17,1,2000042096,2,3.0,-9.0,-9.0,15.0,4.0,1904092 -4685143,2000042097,2,19,17,1,2000042097,1,6.0,-9.0,-9.0,15.0,4.0,1904093 -4685144,2000042098,1,18,17,1,2000042098,2,6.0,-9.0,-9.0,15.0,4.0,1904094 -4685145,2000042099,2,19,17,1,2000042099,1,6.0,-9.0,-9.0,15.0,4.0,1904095 -4685146,2000042100,2,19,17,1,2000042100,2,1.0,5.0,6.0,15.0,4.0,1904096 -4685147,2000042101,1,18,17,1,2000042101,2,1.0,9.0,4.0,15.0,4.0,1904097 -4685148,2000042102,2,19,17,1,2000042102,2,1.0,5.0,6.0,15.0,4.0,1904098 -4685149,2000042103,2,19,17,1,2000042103,2,3.0,-9.0,-9.0,15.0,4.0,1904099 -4685150,2000042104,2,19,17,1,2000042104,1,6.0,-9.0,-9.0,15.0,4.0,1904100 -4685151,2000042105,2,19,17,1,2000042105,2,3.0,-9.0,-9.0,15.0,4.0,1904101 -4685152,2000042106,2,24,17,1,2000042106,2,6.0,-9.0,-9.0,-9.0,4.0,1904102 -4685153,2000042107,1,18,17,1,2000042107,2,6.0,-9.0,-9.0,15.0,4.0,1904103 -4685154,2000042108,2,18,17,1,2000042108,2,6.0,-9.0,-9.0,15.0,4.0,1904104 -4685155,2000042109,2,18,17,1,2000042109,2,3.0,-9.0,-9.0,15.0,4.0,1904105 -4685156,2000042110,1,18,17,1,2000042110,2,6.0,-9.0,-9.0,15.0,4.0,1904106 -4685157,2000042111,1,18,17,1,2000042111,2,6.0,-9.0,-9.0,15.0,4.0,1904107 -4685158,2000042112,2,19,17,1,2000042112,2,1.0,5.0,6.0,15.0,4.0,1904108 -4685159,2000042113,2,29,17,1,2000042113,1,6.0,-9.0,-9.0,-9.0,4.0,1904109 -4685160,2000042114,1,18,17,1,2000042114,2,6.0,-9.0,-9.0,15.0,4.0,1904110 -4685161,2000042115,2,19,17,1,2000042115,1,6.0,-9.0,-9.0,15.0,4.0,1904111 -4685162,2000042116,1,18,17,1,2000042116,2,6.0,-9.0,-9.0,15.0,4.0,1904112 -4685163,2000042117,2,19,17,1,2000042117,2,3.0,-9.0,-9.0,15.0,4.0,1904113 -4685164,2000042118,1,25,17,1,2000042118,2,6.0,35.0,6.0,-9.0,4.0,1904114 -4685165,2000042119,1,18,17,1,2000042119,2,6.0,-9.0,-9.0,15.0,4.0,1904115 -4685166,2000042120,2,18,17,1,2000042120,1,6.0,-9.0,-9.0,-9.0,4.0,1904116 -4685167,2000042121,1,18,17,1,2000042121,2,6.0,50.0,3.0,15.0,4.0,1904117 -4685168,2000042122,1,18,17,1,2000042122,2,6.0,-9.0,-9.0,15.0,4.0,1904118 -4685169,2000042123,2,18,17,1,2000042123,2,3.0,40.0,4.0,14.0,4.0,1904119 -4685170,2000042124,2,19,17,1,2000042124,2,3.0,-9.0,-9.0,15.0,4.0,1904120 -4685171,2000042125,2,19,17,1,2000042125,2,1.0,5.0,6.0,15.0,4.0,1904121 -4685172,2000042126,2,19,17,1,2000042126,1,6.0,-9.0,-9.0,15.0,4.0,1904122 -4685173,2000042127,1,18,17,1,2000042127,2,6.0,-9.0,-9.0,15.0,4.0,1904123 -4685174,2000042128,2,19,17,1,2000042128,2,3.0,-9.0,-9.0,15.0,4.0,1904124 -4685175,2000042129,2,19,17,1,2000042129,2,3.0,-9.0,-9.0,15.0,4.0,1904125 -4685176,2000042130,1,18,17,1,2000042130,1,6.0,-9.0,-9.0,15.0,4.0,1904126 -4685177,2000042131,2,18,17,1,2000042131,2,3.0,-9.0,-9.0,15.0,4.0,1904127 -4685178,2000042132,1,18,17,1,2000042132,1,6.0,-9.0,-9.0,15.0,4.0,1904128 -4685179,2000042133,2,19,17,1,2000042133,2,1.0,5.0,6.0,15.0,4.0,1904129 -4685180,2000042134,2,19,17,1,2000042134,2,3.0,-9.0,-9.0,15.0,4.0,1904130 -4685181,2000042135,1,18,17,1,2000042135,2,1.0,9.0,4.0,15.0,4.0,1904131 -4685182,2000042136,1,18,17,1,2000042136,2,6.0,-9.0,-9.0,15.0,4.0,1904132 -4685183,2000042137,2,19,17,1,2000042137,2,1.0,5.0,6.0,15.0,4.0,1904133 -4685184,2000042138,2,19,17,1,2000042138,1,6.0,-9.0,-9.0,15.0,4.0,1904134 -4685185,2000042139,1,18,17,1,2000042139,2,6.0,-9.0,-9.0,15.0,4.0,1904135 -4685186,2000042140,1,18,17,1,2000042140,2,6.0,24.0,1.0,15.0,4.0,1904136 -4685187,2000042141,1,18,17,1,2000042141,1,6.0,-9.0,-9.0,15.0,4.0,1904137 -4685188,2000042142,2,18,17,1,2000042142,1,6.0,-9.0,-9.0,-9.0,4.0,1904138 -4685189,2000042143,1,18,17,1,2000042143,2,6.0,8.0,6.0,15.0,4.0,1904139 -4685190,2000042144,2,19,17,1,2000042144,2,3.0,-9.0,-9.0,15.0,4.0,1904140 -4685191,2000042145,1,25,17,1,2000042145,1,6.0,-9.0,-9.0,-9.0,4.0,1904141 -4685192,2000042146,1,25,17,1,2000042146,1,6.0,-9.0,-9.0,-9.0,4.0,1904142 -4685193,2000042147,2,19,17,1,2000042147,1,6.0,-9.0,-9.0,15.0,4.0,1904143 -4685194,2000042148,1,18,17,1,2000042148,2,6.0,-9.0,-9.0,15.0,4.0,1904144 -4685195,2000042149,1,18,17,1,2000042149,2,1.0,9.0,4.0,15.0,4.0,1904145 -4685196,2000042150,1,18,17,1,2000042150,2,6.0,-9.0,-9.0,15.0,4.0,1904146 -4685197,2000042151,2,19,17,1,2000042151,1,6.0,-9.0,-9.0,15.0,4.0,1904147 -4685198,2000042152,2,19,17,1,2000042152,1,6.0,-9.0,-9.0,15.0,4.0,1904148 -4685199,2000042153,2,19,17,1,2000042153,1,6.0,-9.0,-9.0,15.0,4.0,1904149 -4685200,2000042154,2,19,17,1,2000042154,1,6.0,-9.0,-9.0,15.0,4.0,1904150 -4685201,2000042155,2,19,17,1,2000042155,2,3.0,-9.0,-9.0,15.0,4.0,1904151 -4685202,2000042156,2,19,17,1,2000042156,1,6.0,-9.0,-9.0,15.0,4.0,1904152 -4685203,2000042157,2,19,17,1,2000042157,1,6.0,-9.0,-9.0,-9.0,4.0,1904153 -4685204,2000042158,1,18,17,1,2000042158,2,6.0,-9.0,-9.0,15.0,4.0,1904154 -4685205,2000042159,1,18,17,1,2000042159,2,6.0,-9.0,-9.0,15.0,4.0,1904155 -4685206,2000042160,2,19,17,1,2000042160,1,6.0,-9.0,-9.0,15.0,4.0,1904156 -4685207,2000042161,2,19,17,1,2000042161,1,6.0,-9.0,-9.0,15.0,4.0,1904157 -4685208,2000042162,2,19,17,1,2000042162,2,3.0,-9.0,-9.0,15.0,4.0,1904158 -4685209,2000042163,2,19,17,1,2000042163,2,1.0,5.0,6.0,15.0,4.0,1904159 -4685210,2000042164,1,18,17,1,2000042164,2,6.0,-9.0,-9.0,15.0,4.0,1904160 -4685211,2000042165,2,19,17,1,2000042165,1,6.0,-9.0,-9.0,-9.0,4.0,1904161 -4685212,2000042166,1,25,17,1,2000042166,2,6.0,35.0,6.0,-9.0,4.0,1904162 -4685213,2000042167,2,19,17,1,2000042167,1,6.0,-9.0,-9.0,15.0,4.0,1904163 -4685214,2000042168,2,18,17,1,2000042168,2,6.0,-9.0,-9.0,13.0,4.0,1904164 -4685215,2000042169,1,25,17,1,2000042169,1,6.0,20.0,5.0,15.0,4.0,1904165 -4685216,2000042170,1,18,17,1,2000042170,2,6.0,-9.0,-9.0,15.0,4.0,1904166 -4685217,2000042171,2,19,17,1,2000042171,1,6.0,-9.0,-9.0,15.0,4.0,1904167 -4685218,2000042172,1,18,17,1,2000042172,2,6.0,-9.0,-9.0,15.0,4.0,1904168 -4685219,2000042173,2,19,17,1,2000042173,1,6.0,-9.0,-9.0,15.0,4.0,1904169 -4685220,2000042174,1,18,17,1,2000042174,2,6.0,-9.0,-9.0,15.0,4.0,1904170 -4685221,2000042175,1,18,17,1,2000042175,2,6.0,-9.0,-9.0,15.0,4.0,1904171 -4685222,2000042176,1,25,17,1,2000042176,2,6.0,35.0,6.0,-9.0,4.0,1904172 -4685223,2000042177,2,19,17,1,2000042177,2,1.0,5.0,6.0,15.0,4.0,1904173 -4685224,2000042178,1,18,17,1,2000042178,2,6.0,-9.0,-9.0,15.0,4.0,1904174 -4685225,2000042179,1,18,17,1,2000042179,1,6.0,-9.0,-9.0,15.0,4.0,1904175 -4685226,2000042180,2,19,17,1,2000042180,1,6.0,-9.0,-9.0,-9.0,4.0,1904176 -4685227,2000042181,2,19,17,1,2000042181,1,6.0,-9.0,-9.0,-9.0,4.0,1904177 -4685228,2000042182,2,19,17,1,2000042182,2,3.0,-9.0,-9.0,15.0,4.0,1904178 -4685229,2000042183,2,19,17,1,2000042183,2,3.0,-9.0,-9.0,15.0,4.0,1904179 -4685230,2000042184,2,19,17,1,2000042184,1,6.0,-9.0,-9.0,-9.0,4.0,1904180 -4685231,2000042185,1,25,17,1,2000042185,1,6.0,-9.0,-9.0,-9.0,4.0,1904181 -4685232,2000042186,1,18,17,1,2000042186,2,6.0,24.0,1.0,15.0,4.0,1904182 -4685233,2000042187,2,19,17,1,2000042187,2,3.0,-9.0,-9.0,15.0,4.0,1904183 -4685234,2000042188,2,19,17,1,2000042188,2,3.0,-9.0,-9.0,15.0,4.0,1904184 -4685235,2000042189,2,19,17,1,2000042189,2,3.0,-9.0,-9.0,15.0,4.0,1904185 -4685236,2000042190,1,18,17,1,2000042190,2,6.0,8.0,6.0,15.0,4.0,1904186 -4685237,2000042191,2,19,17,1,2000042191,2,3.0,-9.0,-9.0,15.0,4.0,1904187 -4685238,2000042192,1,25,17,1,2000042192,1,6.0,-9.0,-9.0,-9.0,4.0,1904188 -4685239,2000042193,2,19,17,1,2000042193,1,6.0,-9.0,-9.0,-9.0,4.0,1904189 -4685240,2000042194,1,18,17,1,2000042194,2,6.0,-9.0,-9.0,15.0,4.0,1904190 -4685241,2000042195,1,18,17,1,2000042195,2,6.0,-9.0,-9.0,15.0,4.0,1904191 -4685242,2000042196,2,19,17,1,2000042196,2,1.0,5.0,6.0,15.0,4.0,1904192 -4685243,2000042197,1,18,17,1,2000042197,2,6.0,-9.0,-9.0,15.0,4.0,1904193 -4685244,2000042198,2,19,17,1,2000042198,2,1.0,5.0,6.0,15.0,4.0,1904194 -4685245,2000042199,2,24,17,1,2000042199,2,6.0,-9.0,-9.0,-9.0,4.0,1904195 -4685246,2000042200,2,19,17,1,2000042200,2,3.0,-9.0,-9.0,15.0,4.0,1904196 -4685247,2000042201,2,24,17,1,2000042201,1,1.0,17.0,4.0,15.0,4.0,1904197 -4685248,2000042202,2,19,17,1,2000042202,2,1.0,5.0,6.0,15.0,4.0,1904198 -4685249,2000042203,2,20,17,1,2000042203,2,1.0,12.0,5.0,15.0,4.0,1904199 -4685250,2000042204,2,19,17,1,2000042204,1,6.0,-9.0,-9.0,15.0,4.0,1904200 -4685251,2000042205,1,18,17,1,2000042205,2,6.0,24.0,1.0,15.0,4.0,1904201 -4685252,2000042206,1,18,17,1,2000042206,1,6.0,-9.0,-9.0,15.0,4.0,1904202 -4685253,2000042207,2,19,17,1,2000042207,1,6.0,-9.0,-9.0,-9.0,4.0,1904203 -4685254,2000042208,1,25,17,1,2000042208,1,6.0,-9.0,-9.0,-9.0,4.0,1904204 -4685255,2000042209,2,19,17,1,2000042209,1,6.0,-9.0,-9.0,-9.0,4.0,1904205 -4685256,2000042210,1,18,17,1,2000042210,2,6.0,50.0,3.0,15.0,4.0,1904206 -4685257,2000042211,2,19,17,1,2000042211,1,6.0,-9.0,-9.0,15.0,4.0,1904207 -4685258,2000042212,2,24,17,1,2000042212,2,6.0,-9.0,-9.0,-9.0,4.0,1904208 -4685259,2000042213,1,25,17,1,2000042213,1,6.0,20.0,5.0,15.0,4.0,1904209 -4685260,2000042214,1,18,17,1,2000042214,1,6.0,-9.0,-9.0,15.0,4.0,1904210 -4685261,2000042215,1,18,17,1,2000042215,1,6.0,-9.0,-9.0,15.0,4.0,1904211 -4685262,2000042216,2,19,17,1,2000042216,2,1.0,5.0,6.0,15.0,4.0,1904212 -4685263,2000042217,2,19,17,1,2000042217,2,3.0,-9.0,-9.0,15.0,4.0,1904213 -4685264,2000042218,2,19,17,1,2000042218,1,6.0,-9.0,-9.0,15.0,4.0,1904214 -4685265,2000042219,1,18,17,1,2000042219,2,6.0,-9.0,-9.0,15.0,4.0,1904215 -4685266,2000042220,2,19,17,1,2000042220,1,6.0,-9.0,-9.0,15.0,4.0,1904216 -4685267,2000042221,2,19,17,1,2000042221,1,6.0,-9.0,-9.0,15.0,4.0,1904217 -4685268,2000042222,1,18,17,1,2000042222,2,6.0,-9.0,-9.0,15.0,4.0,1904218 -4685269,2000042223,2,19,17,1,2000042223,1,6.0,-9.0,-9.0,15.0,4.0,1904219 -4685270,2000042224,2,20,17,1,2000042224,1,6.0,-9.0,-9.0,15.0,4.0,1904220 -4685271,2000042225,2,19,17,1,2000042225,1,6.0,-9.0,-9.0,15.0,4.0,1904221 -4685272,2000042226,2,19,17,1,2000042226,2,3.0,-9.0,-9.0,15.0,4.0,1904222 -4685273,2000042227,2,19,17,1,2000042227,1,6.0,-9.0,-9.0,15.0,4.0,1904223 -4685274,2000042228,1,18,17,1,2000042228,2,1.0,9.0,4.0,15.0,4.0,1904224 -4685275,2000042229,2,20,17,1,2000042229,2,1.0,12.0,5.0,15.0,4.0,1904225 -4685276,2000042230,2,19,17,1,2000042230,1,6.0,-9.0,-9.0,-9.0,4.0,1904226 -4685277,2000042231,2,18,17,1,2000042231,2,6.0,-9.0,-9.0,13.0,4.0,1904227 -4685278,2000042232,2,19,17,1,2000042232,2,3.0,-9.0,-9.0,15.0,4.0,1904228 -4685279,2000042233,2,24,17,1,2000042233,2,6.0,-9.0,-9.0,-9.0,4.0,1904229 -4685280,2000042234,2,20,17,1,2000042234,2,1.0,12.0,5.0,15.0,4.0,1904230 -4685281,2000042235,2,24,17,1,2000042235,2,6.0,-9.0,-9.0,-9.0,4.0,1904231 -4685282,2000042236,2,20,17,1,2000042236,2,1.0,20.0,5.0,15.0,4.0,1904232 -4685283,2000042237,2,18,17,1,2000042237,1,6.0,-9.0,-9.0,-9.0,4.0,1904233 -4685284,2000042238,2,20,17,1,2000042238,1,6.0,-9.0,-9.0,15.0,4.0,1904234 -4685285,2000042239,1,18,17,1,2000042239,2,6.0,8.0,6.0,15.0,4.0,1904235 -4685286,2000042240,1,25,17,1,2000042240,1,6.0,-9.0,-9.0,-9.0,4.0,1904236 -4685287,2000042241,2,19,17,1,2000042241,2,3.0,-9.0,-9.0,15.0,4.0,1904237 -4685288,2000042242,2,19,17,1,2000042242,1,6.0,-9.0,-9.0,15.0,4.0,1904238 -4685289,2000042243,1,18,17,1,2000042243,1,6.0,-9.0,-9.0,15.0,4.0,1904239 -4685290,2000042244,2,20,17,1,2000042244,2,1.0,12.0,5.0,15.0,4.0,1904240 -4685291,2000042245,2,19,17,1,2000042245,2,3.0,-9.0,-9.0,15.0,4.0,1904241 -4685292,2000042246,1,25,17,1,2000042246,2,6.0,35.0,6.0,-9.0,4.0,1904242 -4685293,2000042247,2,19,17,1,2000042247,2,1.0,5.0,6.0,15.0,4.0,1904243 -4685294,2000042248,2,19,17,1,2000042248,2,1.0,5.0,6.0,15.0,4.0,1904244 -4685295,2000042249,2,19,17,1,2000042249,2,1.0,5.0,6.0,15.0,4.0,1904245 -4685296,2000042250,2,19,17,1,2000042250,1,6.0,-9.0,-9.0,-9.0,4.0,1904246 -4685297,2000042251,2,19,17,1,2000042251,1,6.0,-9.0,-9.0,15.0,4.0,1904247 -4685298,2000042252,2,19,17,1,2000042252,1,6.0,-9.0,-9.0,15.0,4.0,1904248 -4685299,2000042253,2,29,17,1,2000042253,1,6.0,-9.0,-9.0,-9.0,4.0,1904249 -4685300,2000042254,2,24,17,1,2000042254,2,6.0,-9.0,-9.0,-9.0,4.0,1904250 -4685301,2000042255,1,18,17,1,2000042255,2,6.0,24.0,1.0,15.0,4.0,1904251 -4685302,2000042256,1,18,17,1,2000042256,2,6.0,8.0,6.0,15.0,4.0,1904252 -4685303,2000042257,2,19,17,1,2000042257,2,1.0,5.0,6.0,15.0,4.0,1904253 -4685304,2000042258,1,18,17,1,2000042258,2,6.0,-9.0,-9.0,15.0,4.0,1904254 -4685305,2000042259,2,18,17,1,2000042259,1,6.0,-9.0,-9.0,-9.0,4.0,1904255 -4685306,2000042260,2,19,17,1,2000042260,2,3.0,-9.0,-9.0,15.0,4.0,1904256 -4685307,2000042261,2,29,17,1,2000042261,1,3.0,-9.0,-9.0,-9.0,4.0,1904257 -4685308,2000042262,2,19,17,1,2000042262,1,6.0,-9.0,-9.0,-9.0,4.0,1904258 -4685309,2000042263,2,19,17,1,2000042263,2,3.0,-9.0,-9.0,15.0,4.0,1904259 -4685310,2000042264,2,19,17,1,2000042264,1,6.0,-9.0,-9.0,15.0,4.0,1904260 -4685311,2000042265,2,19,17,1,2000042265,2,1.0,5.0,6.0,15.0,4.0,1904261 -4685312,2000042266,1,18,17,1,2000042266,2,6.0,-9.0,-9.0,15.0,4.0,1904262 -4685313,2000042267,1,18,17,1,2000042267,1,6.0,-9.0,-9.0,15.0,4.0,1904263 -4685314,2000042268,2,18,17,1,2000042268,2,3.0,-9.0,-9.0,15.0,4.0,1904264 -4685315,2000042269,2,19,17,1,2000042269,1,6.0,-9.0,-9.0,15.0,4.0,1904265 -4685316,2000042270,1,18,17,1,2000042270,2,6.0,50.0,3.0,15.0,4.0,1904266 -4685317,2000042271,2,19,17,1,2000042271,2,1.0,5.0,6.0,15.0,4.0,1904267 -4685318,2000042272,1,18,17,1,2000042272,1,6.0,-9.0,-9.0,15.0,4.0,1904268 -4685319,2000042273,2,19,17,1,2000042273,1,6.0,-9.0,-9.0,15.0,4.0,1904269 -4685320,2000042274,1,18,17,1,2000042274,2,6.0,-9.0,-9.0,15.0,4.0,1904270 -4685321,2000042275,1,18,17,1,2000042275,2,6.0,-9.0,-9.0,15.0,4.0,1904271 -4685322,2000042276,2,19,17,1,2000042276,2,1.0,5.0,6.0,15.0,4.0,1904272 -4685323,2000042277,1,18,17,1,2000042277,2,6.0,50.0,3.0,15.0,4.0,1904273 -4685324,2000042278,2,19,17,1,2000042278,2,1.0,5.0,6.0,15.0,4.0,1904274 -4685325,2000042279,2,19,17,1,2000042279,2,1.0,5.0,6.0,15.0,4.0,1904275 -4685326,2000042280,2,19,17,1,2000042280,1,6.0,-9.0,-9.0,15.0,4.0,1904276 -4685327,2000042281,2,19,17,1,2000042281,2,1.0,5.0,6.0,15.0,4.0,1904277 -4685328,2000042282,2,18,17,1,2000042282,2,6.0,-9.0,-9.0,15.0,4.0,1904278 -4685329,2000042283,1,25,17,1,2000042283,1,6.0,20.0,5.0,15.0,4.0,1904279 -4685330,2000042284,2,19,17,1,2000042284,1,6.0,-9.0,-9.0,15.0,4.0,1904280 -4685331,2000042285,1,25,17,1,2000042285,2,6.0,35.0,6.0,-9.0,4.0,1904281 -4685332,2000042286,2,18,17,1,2000042286,2,6.0,-9.0,-9.0,15.0,4.0,1904282 -4685333,2000042287,2,19,17,1,2000042287,2,1.0,5.0,6.0,15.0,4.0,1904283 -4685334,2000042288,2,19,17,1,2000042288,2,1.0,5.0,6.0,15.0,4.0,1904284 -4685335,2000042289,2,18,17,1,2000042289,2,3.0,40.0,4.0,14.0,4.0,1904285 -4685336,2000042290,2,24,17,1,2000042290,2,6.0,-9.0,-9.0,-9.0,4.0,1904286 -4685337,2000042291,1,18,17,1,2000042291,1,6.0,-9.0,-9.0,15.0,4.0,1904287 -4685338,2000042292,1,18,17,1,2000042292,2,6.0,-9.0,-9.0,15.0,4.0,1904288 -4685339,2000042293,2,19,17,1,2000042293,2,1.0,5.0,6.0,15.0,4.0,1904289 -4685340,2000042294,2,19,17,1,2000042294,1,6.0,-9.0,-9.0,15.0,4.0,1904290 -4685341,2000042295,2,29,17,1,2000042295,1,3.0,-9.0,-9.0,-9.0,4.0,1904291 -4685342,2000042296,2,19,17,1,2000042296,2,1.0,5.0,6.0,15.0,4.0,1904292 -4685343,2000042297,2,19,17,1,2000042297,1,6.0,-9.0,-9.0,-9.0,4.0,1904293 -4685344,2000042298,1,25,17,1,2000042298,1,6.0,-9.0,-9.0,-9.0,4.0,1904294 -4685345,2000042299,1,18,17,1,2000042299,2,6.0,50.0,3.0,15.0,4.0,1904295 -4685346,2000042300,2,29,17,1,2000042300,1,6.0,-9.0,-9.0,-9.0,4.0,1904296 -4685347,2000042301,1,18,17,1,2000042301,1,6.0,-9.0,-9.0,15.0,4.0,1904297 -4685348,2000042302,2,19,17,1,2000042302,1,6.0,-9.0,-9.0,15.0,4.0,1904298 -4685349,2000042303,2,19,17,1,2000042303,1,6.0,-9.0,-9.0,15.0,4.0,1904299 -4685350,2000042304,1,18,17,1,2000042304,2,6.0,8.0,6.0,15.0,4.0,1904300 -4685351,2000042305,2,19,17,1,2000042305,1,6.0,-9.0,-9.0,15.0,4.0,1904301 -4685352,2000042306,2,19,17,1,2000042306,2,1.0,5.0,6.0,15.0,4.0,1904302 -4685353,2000042307,2,18,17,1,2000042307,2,3.0,40.0,4.0,14.0,4.0,1904303 -4685354,2000042308,2,24,17,1,2000042308,2,6.0,-9.0,-9.0,-9.0,4.0,1904304 -4685355,2000042309,2,19,17,1,2000042309,2,3.0,-9.0,-9.0,15.0,4.0,1904305 -4685356,2000042310,2,24,17,1,2000042310,1,1.0,17.0,4.0,15.0,4.0,1904306 -4685357,2000042311,1,18,17,1,2000042311,2,6.0,-9.0,-9.0,15.0,4.0,1904307 -4685358,2000042312,2,19,17,1,2000042312,1,6.0,-9.0,-9.0,15.0,4.0,1904308 -4685359,2000042313,2,19,17,1,2000042313,2,3.0,-9.0,-9.0,15.0,4.0,1904309 -4685360,2000042314,2,19,17,1,2000042314,2,3.0,-9.0,-9.0,15.0,4.0,1904310 -4685361,2000042315,2,19,17,1,2000042315,2,3.0,-9.0,-9.0,15.0,4.0,1904311 -4685362,2000042316,2,19,17,1,2000042316,1,6.0,-9.0,-9.0,15.0,4.0,1904312 -4685363,2000042317,2,19,17,1,2000042317,2,3.0,-9.0,-9.0,15.0,4.0,1904313 -4685364,2000042318,1,18,17,1,2000042318,2,6.0,8.0,6.0,15.0,4.0,1904314 -4685365,2000042319,1,18,17,1,2000042319,2,6.0,-9.0,-9.0,15.0,4.0,1904315 -4685366,2000042320,2,19,17,1,2000042320,2,3.0,-9.0,-9.0,15.0,4.0,1904316 -4685367,2000042321,1,25,17,1,2000042321,1,6.0,20.0,5.0,15.0,4.0,1904317 -4685368,2000042322,2,20,17,1,2000042322,2,1.0,12.0,5.0,15.0,4.0,1904318 -4685369,2000042323,2,18,17,1,2000042323,2,6.0,-9.0,-9.0,13.0,4.0,1904319 -4685370,2000042324,2,19,17,1,2000042324,1,6.0,-9.0,-9.0,-9.0,4.0,1904320 -4685371,2000042325,1,18,17,1,2000042325,2,6.0,-9.0,-9.0,15.0,4.0,1904321 -4685372,2000042326,2,18,17,1,2000042326,1,6.0,-9.0,-9.0,-9.0,4.0,1904322 -4685373,2000042327,2,19,17,1,2000042327,2,3.0,-9.0,-9.0,15.0,4.0,1904323 -4685374,2000042328,2,19,17,1,2000042328,1,6.0,-9.0,-9.0,15.0,4.0,1904324 -4685375,2000042329,1,25,17,1,2000042329,1,6.0,-9.0,-9.0,-9.0,4.0,1904325 -4685376,2000042330,2,18,17,1,2000042330,1,6.0,-9.0,-9.0,-9.0,4.0,1904326 -4685377,2000042331,2,19,17,1,2000042331,1,6.0,-9.0,-9.0,-9.0,4.0,1904327 -4685378,2000042332,1,25,17,1,2000042332,1,6.0,20.0,5.0,15.0,4.0,1904328 -4685379,2000042333,2,19,17,1,2000042333,2,3.0,-9.0,-9.0,15.0,4.0,1904329 -4685380,2000042334,1,25,17,1,2000042334,1,6.0,-9.0,-9.0,-9.0,4.0,1904330 -4685381,2000042335,2,19,17,1,2000042335,1,6.0,-9.0,-9.0,15.0,4.0,1904331 -4685382,2000042336,1,18,17,1,2000042336,1,6.0,-9.0,-9.0,15.0,4.0,1904332 -4685383,2000042337,2,18,17,1,2000042337,2,6.0,-9.0,-9.0,15.0,4.0,1904333 -4685384,2000042338,1,18,17,1,2000042338,2,6.0,24.0,1.0,15.0,4.0,1904334 -4685385,2000042339,1,18,17,1,2000042339,2,6.0,8.0,6.0,15.0,4.0,1904335 -4685386,2000042340,2,19,17,1,2000042340,1,6.0,-9.0,-9.0,15.0,4.0,1904336 -4685387,2000042341,2,20,17,1,2000042341,1,6.0,-9.0,-9.0,15.0,4.0,1904337 -4685388,2000042342,2,19,17,1,2000042342,2,3.0,-9.0,-9.0,15.0,4.0,1904338 -4685389,2000042343,1,18,17,1,2000042343,2,6.0,-9.0,-9.0,15.0,4.0,1904339 -4685390,2000042344,1,18,17,1,2000042344,2,6.0,-9.0,-9.0,15.0,4.0,1904340 -4685391,2000042345,2,19,17,1,2000042345,2,3.0,-9.0,-9.0,15.0,4.0,1904341 -4685392,2000042346,2,20,17,1,2000042346,2,1.0,12.0,5.0,15.0,4.0,1904342 -4685393,2000042347,2,18,17,1,2000042347,1,6.0,-9.0,-9.0,-9.0,4.0,1904343 -4685394,2000042348,2,19,17,1,2000042348,1,6.0,-9.0,-9.0,15.0,4.0,1904344 -4685395,2000042349,1,18,17,1,2000042349,2,6.0,-9.0,-9.0,15.0,4.0,1904345 -4685396,2000042350,2,19,17,1,2000042350,1,6.0,-9.0,-9.0,15.0,4.0,1904346 -4685397,2000042351,1,25,17,1,2000042351,1,6.0,-9.0,-9.0,-9.0,4.0,1904347 -4685398,2000042352,2,19,17,1,2000042352,2,1.0,5.0,6.0,15.0,4.0,1904348 -4685399,2000042353,2,19,17,1,2000042353,2,1.0,5.0,6.0,15.0,4.0,1904349 -4685400,2000042354,1,18,17,1,2000042354,2,6.0,-9.0,-9.0,15.0,4.0,1904350 -4685401,2000042355,1,25,17,1,2000042355,2,6.0,35.0,6.0,-9.0,4.0,1904351 -4685402,2000042356,1,25,17,1,2000042356,1,6.0,-9.0,-9.0,-9.0,4.0,1904352 -4685403,2000042357,1,18,17,1,2000042357,2,6.0,-9.0,-9.0,15.0,4.0,1904353 -4685404,2000042358,2,19,17,1,2000042358,1,6.0,-9.0,-9.0,15.0,4.0,1904354 -4685405,2000042359,2,19,17,1,2000042359,2,1.0,5.0,6.0,15.0,4.0,1904355 -4685406,2000042360,2,19,17,1,2000042360,2,3.0,-9.0,-9.0,15.0,4.0,1904356 -4685407,2000042361,2,19,17,1,2000042361,1,6.0,-9.0,-9.0,15.0,4.0,1904357 -4685408,2000042362,1,18,17,1,2000042362,1,6.0,-9.0,-9.0,15.0,4.0,1904358 -4685409,2000042363,2,29,17,1,2000042363,1,6.0,-9.0,-9.0,-9.0,4.0,1904359 -4685410,2000042364,2,18,17,1,2000042364,2,6.0,-9.0,-9.0,15.0,4.0,1904360 -4685411,2000042365,2,19,17,1,2000042365,1,6.0,-9.0,-9.0,15.0,4.0,1904361 -4685412,2000042366,2,18,17,1,2000042366,2,6.0,-9.0,-9.0,15.0,4.0,1904362 -4685413,2000042367,2,18,17,1,2000042367,2,6.0,-9.0,-9.0,15.0,4.0,1904363 -4685414,2000042368,2,24,17,1,2000042368,1,1.0,17.0,4.0,15.0,4.0,1904364 -4685415,2000042369,2,19,17,1,2000042369,1,6.0,-9.0,-9.0,-9.0,4.0,1904365 -4685416,2000042370,2,24,17,1,2000042370,1,1.0,17.0,4.0,15.0,4.0,1904366 -4685417,2000042371,2,19,17,1,2000042371,1,6.0,-9.0,-9.0,15.0,4.0,1904367 -4685418,2000042372,2,18,17,1,2000042372,2,3.0,40.0,4.0,14.0,4.0,1904368 -4685419,2000042373,2,19,17,1,2000042373,2,3.0,-9.0,-9.0,15.0,4.0,1904369 -4685420,2000042374,1,18,17,1,2000042374,2,1.0,9.0,4.0,15.0,4.0,1904370 -4685421,2000042375,2,19,17,1,2000042375,1,6.0,-9.0,-9.0,-9.0,4.0,1904371 -4685422,2000042376,2,19,17,1,2000042376,2,1.0,5.0,6.0,15.0,4.0,1904372 -4685423,2000042377,2,19,17,1,2000042377,2,3.0,-9.0,-9.0,15.0,4.0,1904373 -4685424,2000042378,2,19,17,1,2000042378,2,3.0,-9.0,-9.0,15.0,4.0,1904374 -4685425,2000042379,1,18,17,1,2000042379,2,6.0,-9.0,-9.0,15.0,4.0,1904375 -4685426,2000042380,2,19,17,1,2000042380,1,6.0,-9.0,-9.0,15.0,4.0,1904376 -4685427,2000042381,2,29,17,1,2000042381,1,3.0,-9.0,-9.0,-9.0,4.0,1904377 -4685428,2000042382,2,19,17,1,2000042382,1,6.0,-9.0,-9.0,15.0,4.0,1904378 -4685429,2000042383,2,19,17,1,2000042383,1,6.0,-9.0,-9.0,15.0,4.0,1904379 -4685430,2000042384,1,18,17,1,2000042384,2,6.0,50.0,3.0,15.0,4.0,1904380 -4685431,2000042385,2,19,17,1,2000042385,1,6.0,-9.0,-9.0,-9.0,4.0,1904381 -4685432,2000042386,1,18,17,1,2000042386,2,1.0,9.0,4.0,15.0,4.0,1904382 -4685433,2000042387,1,18,17,1,2000042387,2,6.0,24.0,1.0,15.0,4.0,1904383 -4685434,2000042388,2,19,17,1,2000042388,2,3.0,-9.0,-9.0,15.0,4.0,1904384 -4685435,2000042389,2,20,17,1,2000042389,1,6.0,-9.0,-9.0,15.0,4.0,1904385 -4685436,2000042390,2,19,17,1,2000042390,2,3.0,-9.0,-9.0,15.0,4.0,1904386 -4685437,2000042391,2,19,17,1,2000042391,2,3.0,-9.0,-9.0,15.0,4.0,1904387 -4685438,2000042392,2,19,17,1,2000042392,1,6.0,-9.0,-9.0,15.0,4.0,1904388 -4685439,2000042393,1,25,17,1,2000042393,2,6.0,35.0,6.0,-9.0,4.0,1904389 -4685440,2000042394,2,18,17,1,2000042394,2,3.0,-9.0,-9.0,15.0,4.0,1904390 -4685441,2000042395,2,19,17,1,2000042395,1,6.0,-9.0,-9.0,15.0,4.0,1904391 -4685442,2000042396,2,20,17,1,2000042396,1,6.0,-9.0,-9.0,15.0,4.0,1904392 -4685443,2000042397,2,20,17,1,2000042397,2,1.0,12.0,5.0,15.0,4.0,1904393 -4685444,2000042398,2,19,17,1,2000042398,2,3.0,-9.0,-9.0,15.0,4.0,1904394 -4685445,2000042399,1,18,17,1,2000042399,2,6.0,24.0,1.0,15.0,4.0,1904395 -4685446,2000042400,1,18,17,1,2000042400,2,6.0,24.0,1.0,15.0,4.0,1904396 -4685447,2000042401,2,20,17,1,2000042401,2,1.0,20.0,5.0,15.0,4.0,1904397 -4685448,2000042402,2,19,17,1,2000042402,1,6.0,-9.0,-9.0,15.0,4.0,1904398 -4685449,2000042403,2,19,17,1,2000042403,1,6.0,-9.0,-9.0,15.0,4.0,1904399 -4685450,2000042404,2,19,17,1,2000042404,1,6.0,-9.0,-9.0,15.0,4.0,1904400 -4685451,2000042405,2,19,17,1,2000042405,1,6.0,-9.0,-9.0,15.0,4.0,1904401 -4685452,2000042406,1,18,17,1,2000042406,2,6.0,24.0,1.0,15.0,4.0,1904402 -4685453,2000042407,1,18,17,1,2000042407,1,6.0,-9.0,-9.0,15.0,4.0,1904403 -4685454,2000042408,1,18,17,1,2000042408,1,6.0,-9.0,-9.0,15.0,4.0,1904404 -4685455,2000042409,1,18,17,1,2000042409,2,6.0,-9.0,-9.0,15.0,4.0,1904405 -4685456,2000042410,2,29,17,1,2000042410,1,6.0,-9.0,-9.0,-9.0,4.0,1904406 -4685457,2000042411,2,19,17,1,2000042411,2,3.0,-9.0,-9.0,15.0,4.0,1904407 -4685458,2000042412,2,18,17,1,2000042412,1,6.0,-9.0,-9.0,-9.0,4.0,1904408 -4685459,2000042413,2,20,17,1,2000042413,2,1.0,20.0,5.0,15.0,4.0,1904409 -4685460,2000042414,2,19,17,1,2000042414,1,6.0,-9.0,-9.0,-9.0,4.0,1904410 -4685461,2000042415,1,18,17,1,2000042415,2,6.0,50.0,3.0,15.0,4.0,1904411 -4685462,2000042416,2,18,17,1,2000042416,1,6.0,-9.0,-9.0,-9.0,4.0,1904412 -4685463,2000042417,1,25,17,1,2000042417,1,6.0,-9.0,-9.0,-9.0,4.0,1904413 -4685464,2000042418,2,19,17,1,2000042418,2,1.0,5.0,6.0,15.0,4.0,1904414 -4685465,2000042419,2,19,17,1,2000042419,1,6.0,-9.0,-9.0,15.0,4.0,1904415 -4685466,2000042420,1,18,17,1,2000042420,1,6.0,-9.0,-9.0,15.0,4.0,1904416 -4685467,2000042421,1,18,17,1,2000042421,1,6.0,-9.0,-9.0,15.0,4.0,1904417 -4685468,2000042422,2,19,17,1,2000042422,1,6.0,-9.0,-9.0,-9.0,4.0,1904418 -4685469,2000042423,2,18,17,1,2000042423,2,3.0,40.0,4.0,14.0,4.0,1904419 -4685470,2000042424,2,19,17,1,2000042424,1,6.0,-9.0,-9.0,-9.0,4.0,1904420 -4685471,2000042425,1,18,17,1,2000042425,2,6.0,24.0,1.0,15.0,4.0,1904421 -4685472,2000042426,2,19,17,1,2000042426,1,6.0,-9.0,-9.0,-9.0,4.0,1904422 -4685473,2000042427,2,19,17,1,2000042427,1,6.0,-9.0,-9.0,15.0,4.0,1904423 -4685474,2000042428,1,18,17,1,2000042428,2,6.0,-9.0,-9.0,15.0,4.0,1904424 -4685475,2000042429,1,18,17,1,2000042429,2,6.0,-9.0,-9.0,15.0,4.0,1904425 -4685476,2000042430,2,19,17,1,2000042430,1,6.0,-9.0,-9.0,-9.0,4.0,1904426 -4685477,2000042431,1,25,17,1,2000042431,2,6.0,35.0,6.0,-9.0,4.0,1904427 -4685478,2000042432,1,18,17,1,2000042432,2,1.0,9.0,4.0,15.0,4.0,1904428 -4685479,2000042433,2,29,17,1,2000042433,1,3.0,-9.0,-9.0,-9.0,4.0,1904429 -4685480,2000042434,1,18,17,1,2000042434,1,6.0,-9.0,-9.0,15.0,4.0,1904430 -4685481,2000042435,1,25,17,1,2000042435,1,6.0,-9.0,-9.0,-9.0,4.0,1904431 -4685482,2000042436,2,19,17,1,2000042436,2,3.0,-9.0,-9.0,15.0,4.0,1904432 -4685483,2000042437,2,19,17,1,2000042437,2,1.0,5.0,6.0,15.0,4.0,1904433 -4685484,2000042438,1,25,17,1,2000042438,1,6.0,-9.0,-9.0,-9.0,4.0,1904434 -4685485,2000042439,2,24,17,1,2000042439,1,1.0,17.0,4.0,15.0,4.0,1904435 -4685486,2000042440,2,19,17,1,2000042440,1,6.0,-9.0,-9.0,15.0,4.0,1904436 -4685487,2000042441,2,19,17,1,2000042441,1,6.0,-9.0,-9.0,15.0,4.0,1904437 -4685488,2000042442,1,25,17,1,2000042442,1,6.0,20.0,5.0,15.0,4.0,1904438 -4685489,2000042443,1,18,17,1,2000042443,2,6.0,-9.0,-9.0,15.0,4.0,1904439 -4685490,2000042444,1,18,17,1,2000042444,2,6.0,24.0,1.0,15.0,4.0,1904440 -4685491,2000042445,2,19,17,1,2000042445,1,6.0,-9.0,-9.0,-9.0,4.0,1904441 -4685492,2000042446,2,19,17,1,2000042446,2,3.0,-9.0,-9.0,15.0,4.0,1904442 -4685493,2000042447,2,19,17,1,2000042447,2,1.0,5.0,6.0,15.0,4.0,1904443 -4685494,2000042448,2,19,17,1,2000042448,2,1.0,5.0,6.0,15.0,4.0,1904444 -4685495,2000042449,1,18,17,1,2000042449,1,6.0,-9.0,-9.0,15.0,4.0,1904445 -4685496,2000042450,2,19,17,1,2000042450,1,6.0,-9.0,-9.0,-9.0,4.0,1904446 -4685497,2000042451,2,18,17,1,2000042451,2,6.0,-9.0,-9.0,13.0,4.0,1904447 -4685498,2000042452,2,19,17,1,2000042452,1,6.0,-9.0,-9.0,-9.0,4.0,1904448 -4685499,2000042453,1,18,17,1,2000042453,1,6.0,-9.0,-9.0,15.0,4.0,1904449 -4685500,2000042454,2,19,17,1,2000042454,1,6.0,-9.0,-9.0,-9.0,4.0,1904450 -4685501,2000042455,1,18,17,1,2000042455,1,6.0,-9.0,-9.0,15.0,4.0,1904451 -4685502,2000042456,2,29,17,1,2000042456,1,3.0,-9.0,-9.0,-9.0,4.0,1904452 -4685503,2000042457,1,25,17,1,2000042457,1,6.0,-9.0,-9.0,-9.0,4.0,1904453 -4685504,2000042458,2,19,17,1,2000042458,1,6.0,-9.0,-9.0,15.0,4.0,1904454 -4685505,2000042459,2,19,17,1,2000042459,2,1.0,5.0,6.0,15.0,4.0,1904455 -4685506,2000042460,2,19,17,1,2000042460,2,3.0,-9.0,-9.0,15.0,4.0,1904456 -4685507,2000042461,2,19,17,1,2000042461,1,6.0,-9.0,-9.0,15.0,4.0,1904457 -4685508,2000042462,2,20,17,1,2000042462,2,1.0,12.0,5.0,15.0,4.0,1904458 -4685509,2000042463,2,19,17,1,2000042463,1,6.0,-9.0,-9.0,15.0,4.0,1904459 -4685510,2000042464,2,19,17,1,2000042464,1,6.0,-9.0,-9.0,15.0,4.0,1904460 -4685511,2000042465,1,18,17,1,2000042465,2,6.0,24.0,1.0,15.0,4.0,1904461 -4685512,2000042466,2,19,17,1,2000042466,2,1.0,5.0,6.0,15.0,4.0,1904462 -4685513,2000042467,1,25,17,1,2000042467,2,6.0,35.0,6.0,-9.0,4.0,1904463 -4685514,2000042468,2,18,17,1,2000042468,2,3.0,-9.0,-9.0,15.0,4.0,1904464 -4685515,2000042469,2,19,17,1,2000042469,2,1.0,5.0,6.0,15.0,4.0,1904465 -4685516,2000042470,2,19,17,1,2000042470,1,6.0,-9.0,-9.0,15.0,4.0,1904466 -4685517,2000042471,2,18,17,1,2000042471,2,6.0,-9.0,-9.0,15.0,4.0,1904467 -4685518,2000042472,1,18,17,1,2000042472,1,6.0,-9.0,-9.0,15.0,4.0,1904468 -4685519,2000042473,2,18,17,1,2000042473,1,6.0,-9.0,-9.0,-9.0,4.0,1904469 -4685520,2000042474,2,19,17,1,2000042474,1,6.0,-9.0,-9.0,15.0,4.0,1904470 -4685521,2000042475,2,19,17,1,2000042475,2,3.0,-9.0,-9.0,15.0,4.0,1904471 -4685522,2000042476,1,18,17,1,2000042476,1,6.0,-9.0,-9.0,15.0,4.0,1904472 -4685523,2000042477,1,18,17,1,2000042477,2,6.0,-9.0,-9.0,15.0,4.0,1904473 -4685524,2000042478,1,18,17,1,2000042478,2,6.0,-9.0,-9.0,15.0,4.0,1904474 -4685525,2000042479,2,19,17,1,2000042479,1,6.0,-9.0,-9.0,-9.0,4.0,1904475 -4685526,2000042480,2,18,17,1,2000042480,2,3.0,-9.0,-9.0,15.0,4.0,1904476 -4685527,2000042481,1,18,17,1,2000042481,2,6.0,24.0,1.0,15.0,4.0,1904477 -4685528,2000042482,1,18,17,1,2000042482,2,6.0,-9.0,-9.0,15.0,4.0,1904478 -4685529,2000042483,1,18,17,1,2000042483,2,6.0,-9.0,-9.0,15.0,4.0,1904479 -4685530,2000042484,2,19,17,1,2000042484,2,3.0,-9.0,-9.0,15.0,4.0,1904480 -4685531,2000042485,2,19,17,1,2000042485,1,6.0,-9.0,-9.0,15.0,4.0,1904481 -4685532,2000042486,1,18,17,1,2000042486,2,6.0,24.0,1.0,15.0,4.0,1904482 -4685533,2000042487,2,29,17,1,2000042487,1,6.0,-9.0,-9.0,-9.0,4.0,1904483 -4685534,2000042488,2,19,17,1,2000042488,2,1.0,5.0,6.0,15.0,4.0,1904484 -4685535,2000042489,1,18,17,1,2000042489,2,6.0,-9.0,-9.0,15.0,4.0,1904485 -4685536,2000042490,1,18,17,1,2000042490,1,6.0,-9.0,-9.0,15.0,4.0,1904486 -4685537,2000042491,1,18,17,1,2000042491,2,6.0,-9.0,-9.0,15.0,4.0,1904487 -4685538,2000042492,2,29,17,1,2000042492,1,6.0,-9.0,-9.0,-9.0,4.0,1904488 -4685539,2000042493,2,20,17,1,2000042493,2,1.0,20.0,5.0,15.0,4.0,1904489 -4685540,2000042494,2,19,17,1,2000042494,1,6.0,-9.0,-9.0,-9.0,4.0,1904490 -4685541,2000042495,1,18,17,1,2000042495,2,6.0,-9.0,-9.0,15.0,4.0,1904491 -4685542,2000042496,1,25,17,1,2000042496,2,6.0,35.0,6.0,-9.0,4.0,1904492 -4685543,2000042497,1,18,17,1,2000042497,2,6.0,-9.0,-9.0,15.0,4.0,1904493 -4685544,2000042498,2,19,17,1,2000042498,2,3.0,-9.0,-9.0,15.0,4.0,1904494 -4685545,2000042499,1,25,17,1,2000042499,1,6.0,-9.0,-9.0,-9.0,4.0,1904495 -4685546,2000042500,2,19,17,1,2000042500,1,6.0,-9.0,-9.0,15.0,4.0,1904496 -4685547,2000042501,2,19,17,1,2000042501,2,1.0,5.0,6.0,15.0,4.0,1904497 -4685548,2000042502,2,18,17,1,2000042502,2,6.0,-9.0,-9.0,15.0,4.0,1904498 -4685549,2000042503,2,19,17,1,2000042503,2,3.0,-9.0,-9.0,15.0,4.0,1904499 -4685550,2000042504,1,18,17,1,2000042504,1,6.0,-9.0,-9.0,15.0,4.0,1904500 -4685551,2000042505,2,20,17,1,2000042505,1,6.0,-9.0,-9.0,15.0,4.0,1904501 -4685552,2000042506,1,18,17,1,2000042506,2,6.0,50.0,3.0,15.0,4.0,1904502 -4685553,2000042507,2,19,17,1,2000042507,2,3.0,-9.0,-9.0,15.0,4.0,1904503 -4685554,2000042508,2,19,17,1,2000042508,1,6.0,-9.0,-9.0,15.0,4.0,1904504 -4685555,2000042509,2,19,17,1,2000042509,1,6.0,-9.0,-9.0,-9.0,4.0,1904505 -4685556,2000042510,2,18,17,1,2000042510,2,6.0,-9.0,-9.0,15.0,4.0,1904506 -4685557,2000042511,2,18,17,1,2000042511,2,6.0,-9.0,-9.0,13.0,4.0,1904507 -4685558,2000042512,2,19,17,1,2000042512,1,6.0,-9.0,-9.0,15.0,4.0,1904508 -4685559,2000042513,2,18,17,1,2000042513,1,6.0,-9.0,-9.0,-9.0,4.0,1904509 -4685560,2000042514,2,20,17,1,2000042514,2,1.0,20.0,5.0,15.0,4.0,1904510 -4685561,2000042515,2,19,17,1,2000042515,1,6.0,-9.0,-9.0,15.0,4.0,1904511 -4685562,2000042516,1,18,17,1,2000042516,1,6.0,-9.0,-9.0,15.0,4.0,1904512 -4685563,2000042517,1,18,17,1,2000042517,2,6.0,-9.0,-9.0,15.0,4.0,1904513 -4685564,2000042518,1,18,17,1,2000042518,2,6.0,-9.0,-9.0,15.0,4.0,1904514 -4685565,2000042519,2,19,17,1,2000042519,2,1.0,5.0,6.0,15.0,4.0,1904515 -4685566,2000042520,2,19,17,1,2000042520,2,3.0,-9.0,-9.0,15.0,4.0,1904516 -4685567,2000042521,1,25,17,1,2000042521,1,6.0,20.0,5.0,15.0,4.0,1904517 -4685568,2000042522,2,19,17,1,2000042522,1,6.0,-9.0,-9.0,15.0,4.0,1904518 -4685569,2000042523,2,19,17,1,2000042523,2,3.0,-9.0,-9.0,15.0,4.0,1904519 -4685570,2000042524,2,24,17,1,2000042524,1,1.0,17.0,4.0,15.0,4.0,1904520 -4685571,2000042525,2,18,17,1,2000042525,2,6.0,-9.0,-9.0,15.0,4.0,1904521 -4685572,2000042526,1,18,17,1,2000042526,1,6.0,-9.0,-9.0,15.0,4.0,1904522 -4685573,2000042527,1,18,17,1,2000042527,2,6.0,50.0,3.0,15.0,4.0,1904523 -4685574,2000042528,2,19,17,1,2000042528,2,1.0,5.0,6.0,15.0,4.0,1904524 -4685575,2000042529,2,19,17,1,2000042529,1,6.0,-9.0,-9.0,-9.0,4.0,1904525 -4685576,2000042530,1,18,17,1,2000042530,2,6.0,50.0,3.0,15.0,4.0,1904526 -4685577,2000042531,1,18,17,1,2000042531,2,6.0,24.0,1.0,15.0,4.0,1904527 -4685578,2000042532,2,19,17,1,2000042532,1,6.0,-9.0,-9.0,15.0,4.0,1904528 -4685579,2000042533,2,19,17,1,2000042533,1,6.0,-9.0,-9.0,-9.0,4.0,1904529 -4685580,2000042534,2,19,17,1,2000042534,1,6.0,-9.0,-9.0,15.0,4.0,1904530 -4685581,2000042535,2,19,17,1,2000042535,2,1.0,5.0,6.0,15.0,4.0,1904531 -4685582,2000042536,2,19,17,1,2000042536,1,6.0,-9.0,-9.0,-9.0,4.0,1904532 -4685583,2000042537,1,18,17,1,2000042537,1,6.0,-9.0,-9.0,15.0,4.0,1904533 -4685584,2000042538,2,19,17,1,2000042538,2,3.0,-9.0,-9.0,15.0,4.0,1904534 -4685585,2000042539,1,18,17,1,2000042539,2,6.0,-9.0,-9.0,15.0,4.0,1904535 -4685586,2000042540,1,18,17,1,2000042540,2,6.0,50.0,3.0,15.0,4.0,1904536 -4685587,2000042541,1,18,17,1,2000042541,1,6.0,-9.0,-9.0,15.0,4.0,1904537 -4685588,2000042542,2,29,17,1,2000042542,1,3.0,-9.0,-9.0,-9.0,4.0,1904538 -4685589,2000042543,2,19,17,1,2000042543,1,6.0,-9.0,-9.0,15.0,4.0,1904539 -4685590,2000042544,1,18,17,1,2000042544,2,6.0,24.0,1.0,15.0,4.0,1904540 -4685591,2000042545,1,18,17,1,2000042545,1,6.0,-9.0,-9.0,15.0,4.0,1904541 -4685592,2000042546,1,18,17,1,2000042546,2,6.0,-9.0,-9.0,15.0,4.0,1904542 -4685593,2000042547,2,19,17,1,2000042547,1,6.0,-9.0,-9.0,15.0,4.0,1904543 -4685594,2000042548,2,19,17,1,2000042548,1,6.0,-9.0,-9.0,15.0,4.0,1904544 -4685595,2000042549,2,19,17,1,2000042549,2,1.0,5.0,6.0,15.0,4.0,1904545 -4685596,2000042550,2,19,17,1,2000042550,1,6.0,-9.0,-9.0,-9.0,4.0,1904546 -4685597,2000042551,2,19,17,1,2000042551,1,6.0,-9.0,-9.0,-9.0,4.0,1904547 -4685598,2000042552,2,19,17,1,2000042552,2,1.0,5.0,6.0,15.0,4.0,1904548 -4685599,2000042553,2,19,17,1,2000042553,2,1.0,5.0,6.0,15.0,4.0,1904549 -4685600,2000042554,1,25,17,1,2000042554,2,6.0,35.0,6.0,-9.0,4.0,1904550 -4685601,2000042555,2,19,17,1,2000042555,1,6.0,-9.0,-9.0,15.0,4.0,1904551 -4685602,2000042556,1,18,17,1,2000042556,2,6.0,50.0,3.0,15.0,4.0,1904552 -4685603,2000042557,2,19,17,1,2000042557,2,3.0,-9.0,-9.0,15.0,4.0,1904553 -4685604,2000042558,2,19,17,1,2000042558,1,6.0,-9.0,-9.0,-9.0,4.0,1904554 -4685605,2000042559,1,18,17,1,2000042559,2,6.0,24.0,1.0,15.0,4.0,1904555 -4685606,2000042560,2,20,17,1,2000042560,2,1.0,20.0,5.0,15.0,4.0,1904556 -4685607,2000042561,2,29,17,1,2000042561,1,6.0,-9.0,-9.0,-9.0,4.0,1904557 -4685608,2000042562,2,19,17,1,2000042562,2,3.0,-9.0,-9.0,15.0,4.0,1904558 -4685609,2000042563,2,19,17,1,2000042563,1,6.0,-9.0,-9.0,15.0,4.0,1904559 -4685610,2000042564,2,18,17,1,2000042564,2,6.0,-9.0,-9.0,13.0,4.0,1904560 -4685611,2000042565,2,19,17,1,2000042565,2,3.0,-9.0,-9.0,15.0,4.0,1904561 -4685612,2000042566,1,18,17,1,2000042566,1,6.0,-9.0,-9.0,15.0,4.0,1904562 -4685613,2000042567,2,18,17,1,2000042567,2,6.0,-9.0,-9.0,15.0,4.0,1904563 -4685614,2000042568,2,19,17,1,2000042568,2,3.0,-9.0,-9.0,15.0,4.0,1904564 -4685615,2000042569,2,18,17,1,2000042569,2,6.0,-9.0,-9.0,15.0,4.0,1904565 -4685616,2000042570,1,18,17,1,2000042570,2,6.0,50.0,3.0,15.0,4.0,1904566 -4685617,2000042571,2,29,17,1,2000042571,1,3.0,-9.0,-9.0,-9.0,4.0,1904567 -4685618,2000042572,1,25,17,1,2000042572,2,6.0,35.0,6.0,-9.0,4.0,1904568 -4685619,2000042573,1,25,17,1,2000042573,2,6.0,35.0,6.0,-9.0,4.0,1904569 -4685620,2000042574,1,18,17,1,2000042574,1,6.0,-9.0,-9.0,15.0,4.0,1904570 -4685621,2000042575,2,19,17,1,2000042575,1,6.0,-9.0,-9.0,15.0,4.0,1904571 -4685622,2000042576,1,25,17,1,2000042576,2,6.0,35.0,6.0,-9.0,4.0,1904572 -4685623,2000042577,2,19,17,1,2000042577,1,6.0,-9.0,-9.0,-9.0,4.0,1904573 -4685624,2000042578,2,19,17,1,2000042578,2,3.0,-9.0,-9.0,15.0,4.0,1904574 -4685625,2000042579,2,29,17,1,2000042579,1,3.0,-9.0,-9.0,-9.0,4.0,1904575 -4685626,2000042580,1,18,17,1,2000042580,2,6.0,-9.0,-9.0,15.0,4.0,1904576 -4685627,2000042581,2,19,17,1,2000042581,1,6.0,-9.0,-9.0,15.0,4.0,1904577 -4685628,2000042582,2,29,17,1,2000042582,1,3.0,-9.0,-9.0,-9.0,4.0,1904578 -4685629,2000042583,2,19,17,1,2000042583,1,6.0,-9.0,-9.0,15.0,4.0,1904579 -4685630,2000042584,2,19,17,1,2000042584,1,6.0,-9.0,-9.0,15.0,4.0,1904580 -4685631,2000042585,2,24,17,1,2000042585,1,1.0,17.0,4.0,15.0,4.0,1904581 -4685632,2000042586,2,19,17,1,2000042586,2,3.0,-9.0,-9.0,15.0,4.0,1904582 -4685633,2000042587,2,19,17,1,2000042587,1,6.0,-9.0,-9.0,15.0,4.0,1904583 -4685634,2000042588,1,18,17,1,2000042588,2,6.0,8.0,6.0,15.0,4.0,1904584 -4685635,2000042589,2,18,17,1,2000042589,2,6.0,-9.0,-9.0,15.0,4.0,1904585 -4685636,2000042590,1,18,17,1,2000042590,2,6.0,-9.0,-9.0,15.0,4.0,1904586 -4685637,2000042591,1,18,17,1,2000042591,2,6.0,50.0,3.0,15.0,4.0,1904587 -4685638,2000042592,1,18,17,1,2000042592,2,6.0,-9.0,-9.0,15.0,4.0,1904588 -4685639,2000042593,2,19,17,1,2000042593,1,6.0,-9.0,-9.0,15.0,4.0,1904589 -4685640,2000042594,2,20,17,1,2000042594,2,1.0,12.0,5.0,15.0,4.0,1904590 -4685641,2000042595,1,18,17,1,2000042595,2,6.0,-9.0,-9.0,15.0,4.0,1904591 -4685642,2000042596,2,19,17,1,2000042596,1,6.0,-9.0,-9.0,15.0,4.0,1904592 -4685643,2000042597,1,4,17,1,2000042597,1,-9.0,-9.0,-9.0,-9.0,-9.0,1904593 -4685644,2000042598,1,4,17,1,2000042598,1,-9.0,-9.0,-9.0,-9.0,-9.0,1904594 -4685645,2000042599,1,4,17,1,2000042599,1,-9.0,-9.0,-9.0,-9.0,-9.0,1904595 -4685646,2000042600,1,4,17,1,2000042600,1,-9.0,-9.0,-9.0,-9.0,-9.0,1904596 -4685647,2000042601,1,4,17,1,2000042601,1,-9.0,-9.0,-9.0,-9.0,-9.0,1904597 -4685648,2000042602,1,4,17,1,2000042602,1,-9.0,-9.0,-9.0,-9.0,-9.0,1904598 -4685649,2000042603,1,4,17,1,2000042603,1,-9.0,-9.0,-9.0,-9.0,-9.0,1904599 -4685650,2000042604,1,4,17,1,2000042604,1,-9.0,-9.0,-9.0,-9.0,-9.0,1904600 -4685651,2000042605,1,4,17,1,2000042605,1,-9.0,-9.0,-9.0,-9.0,-9.0,1904601 -4685652,2000042606,2,19,17,1,2000042606,2,3.0,-9.0,-9.0,15.0,4.0,1904602 -4685653,2000042607,2,18,17,1,2000042607,2,6.0,-9.0,-9.0,15.0,4.0,1904603 -4685654,2000042608,1,18,17,1,2000042608,1,6.0,-9.0,-9.0,15.0,4.0,1904604 -4685655,2000042609,2,29,17,1,2000042609,1,3.0,-9.0,-9.0,-9.0,4.0,1904605 -4685656,2000042610,1,25,17,1,2000042610,1,6.0,-9.0,-9.0,-9.0,4.0,1904606 -4685657,2000042611,1,25,17,1,2000042611,1,6.0,20.0,5.0,15.0,4.0,1904607 -4685658,2000042612,1,18,17,1,2000042612,2,6.0,-9.0,-9.0,15.0,4.0,1904608 -4685659,2000042613,2,19,17,1,2000042613,2,3.0,-9.0,-9.0,15.0,4.0,1904609 -4685660,2000042614,1,25,17,1,2000042614,1,6.0,-9.0,-9.0,-9.0,4.0,1904610 -4685661,2000042615,2,19,17,1,2000042615,1,6.0,-9.0,-9.0,-9.0,4.0,1904611 -4685662,2000042616,2,19,17,1,2000042616,2,3.0,-9.0,-9.0,15.0,4.0,1904612 -4685663,2000042617,2,29,17,1,2000042617,1,6.0,-9.0,-9.0,-9.0,4.0,1904613 -4685664,2000042618,1,18,17,1,2000042618,1,6.0,-9.0,-9.0,15.0,4.0,1904614 -4685665,2000042619,2,19,17,1,2000042619,2,3.0,-9.0,-9.0,15.0,4.0,1904615 -4685666,2000042620,2,29,17,1,2000042620,1,3.0,-9.0,-9.0,-9.0,4.0,1904616 -4685667,2000042621,2,19,17,1,2000042621,2,1.0,5.0,6.0,15.0,4.0,1904617 -4685668,2000042622,2,19,17,1,2000042622,2,1.0,5.0,6.0,15.0,4.0,1904618 -4685669,2000042623,2,24,17,1,2000042623,1,1.0,17.0,4.0,15.0,4.0,1904619 -4685670,2000042624,2,19,17,1,2000042624,1,6.0,-9.0,-9.0,15.0,4.0,1904620 -4685671,2000042625,2,19,17,1,2000042625,1,6.0,-9.0,-9.0,15.0,4.0,1904621 -4685672,2000042626,1,18,17,1,2000042626,2,6.0,8.0,6.0,15.0,4.0,1904622 -4685673,2000042627,2,18,17,1,2000042627,2,6.0,-9.0,-9.0,13.0,4.0,1904623 -4685674,2000042628,1,18,17,1,2000042628,2,6.0,24.0,1.0,15.0,4.0,1904624 -4685675,2000042629,1,18,17,1,2000042629,2,6.0,24.0,1.0,15.0,4.0,1904625 -4685676,2000042630,1,18,17,1,2000042630,1,6.0,-9.0,-9.0,15.0,4.0,1904626 -4685677,2000042631,2,19,17,1,2000042631,1,6.0,-9.0,-9.0,-9.0,4.0,1904627 -4685678,2000042632,2,20,17,1,2000042632,2,1.0,20.0,5.0,15.0,4.0,1904628 -4685679,2000042633,1,18,17,1,2000042633,1,6.0,-9.0,-9.0,15.0,4.0,1904629 -4685680,2000042634,2,19,17,1,2000042634,2,3.0,-9.0,-9.0,15.0,4.0,1904630 -4685681,2000042635,2,19,17,1,2000042635,2,3.0,-9.0,-9.0,15.0,4.0,1904631 -4685682,2000042636,2,19,17,1,2000042636,2,1.0,5.0,6.0,15.0,4.0,1904632 -4685683,2000042637,2,18,17,1,2000042637,2,6.0,-9.0,-9.0,13.0,4.0,1904633 -4685684,2000042638,1,18,17,1,2000042638,2,6.0,50.0,3.0,15.0,4.0,1904634 -4685685,2000042639,2,19,17,1,2000042639,2,1.0,5.0,6.0,15.0,4.0,1904635 -4685686,2000042640,2,18,17,1,2000042640,2,6.0,-9.0,-9.0,13.0,4.0,1904636 -4685687,2000042641,2,19,17,1,2000042641,1,6.0,-9.0,-9.0,15.0,4.0,1904637 -4685688,2000042642,2,18,17,1,2000042642,2,6.0,-9.0,-9.0,15.0,4.0,1904638 -4685689,2000042643,2,19,17,1,2000042643,1,6.0,-9.0,-9.0,15.0,4.0,1904639 -4685690,2000042644,1,18,17,1,2000042644,2,6.0,-9.0,-9.0,15.0,4.0,1904640 -4685691,2000042645,2,18,17,1,2000042645,2,6.0,-9.0,-9.0,15.0,4.0,1904641 -4685692,2000042646,2,19,17,1,2000042646,2,3.0,-9.0,-9.0,15.0,4.0,1904642 -4686004,2000042958,2,19,17,1,2000042958,1,6.0,-9.0,-9.0,-9.0,4.0,1904954 -4686005,2000042959,1,18,17,1,2000042959,1,6.0,-9.0,-9.0,15.0,4.0,1904955 -4686006,2000042960,1,18,17,1,2000042960,2,6.0,-9.0,-9.0,15.0,4.0,1904956 -4686007,2000042961,2,20,17,1,2000042961,2,1.0,12.0,5.0,15.0,4.0,1904957 -4686008,2000042962,2,19,17,1,2000042962,1,6.0,-9.0,-9.0,15.0,4.0,1904958 -4686009,2000042963,2,19,17,1,2000042963,1,6.0,-9.0,-9.0,15.0,4.0,1904959 -4686010,2000042964,1,25,17,1,2000042964,1,6.0,-9.0,-9.0,-9.0,4.0,1904960 -4686011,2000042965,2,19,17,1,2000042965,1,6.0,-9.0,-9.0,15.0,4.0,1904961 -4686012,2000042966,2,19,17,1,2000042966,1,6.0,-9.0,-9.0,15.0,4.0,1904962 -4686013,2000042967,2,19,17,1,2000042967,1,6.0,-9.0,-9.0,15.0,4.0,1904963 -4686014,2000042968,2,19,17,1,2000042968,2,3.0,-9.0,-9.0,15.0,4.0,1904964 -4686015,2000042969,2,19,17,1,2000042969,2,3.0,-9.0,-9.0,15.0,4.0,1904965 -4686016,2000042970,2,19,17,1,2000042970,1,6.0,-9.0,-9.0,-9.0,4.0,1904966 -4686017,2000042971,2,19,17,1,2000042971,2,1.0,5.0,6.0,15.0,4.0,1904967 -4686018,2000042972,1,18,17,1,2000042972,1,6.0,-9.0,-9.0,15.0,4.0,1904968 -4686019,2000042973,2,19,17,1,2000042973,2,3.0,-9.0,-9.0,15.0,4.0,1904969 -4686020,2000042974,2,19,17,1,2000042974,1,6.0,-9.0,-9.0,15.0,4.0,1904970 -4686021,2000042975,2,19,17,1,2000042975,1,6.0,-9.0,-9.0,15.0,4.0,1904971 -4686022,2000042976,1,18,17,1,2000042976,2,6.0,8.0,6.0,15.0,4.0,1904972 -4686023,2000042977,2,19,17,1,2000042977,1,6.0,-9.0,-9.0,15.0,4.0,1904973 -4686024,2000042978,2,19,17,1,2000042978,2,3.0,-9.0,-9.0,15.0,4.0,1904974 -4686025,2000042979,2,19,17,1,2000042979,1,6.0,-9.0,-9.0,15.0,4.0,1904975 -4686026,2000042980,1,18,17,1,2000042980,2,6.0,8.0,6.0,15.0,4.0,1904976 -4686027,2000042981,1,18,17,1,2000042981,2,6.0,-9.0,-9.0,15.0,4.0,1904977 -4686028,2000042982,1,18,17,1,2000042982,2,1.0,9.0,4.0,15.0,4.0,1904978 -4686029,2000042983,2,20,17,1,2000042983,2,1.0,12.0,5.0,15.0,4.0,1904979 -4686030,2000042984,2,19,17,1,2000042984,2,3.0,-9.0,-9.0,15.0,4.0,1904980 -4686031,2000042985,1,18,17,1,2000042985,1,6.0,-9.0,-9.0,15.0,4.0,1904981 -4686032,2000042986,2,19,17,1,2000042986,1,6.0,-9.0,-9.0,-9.0,4.0,1904982 -4686033,2000042987,2,19,17,1,2000042987,1,6.0,-9.0,-9.0,15.0,4.0,1904983 -4686034,2000042988,1,18,17,1,2000042988,2,1.0,9.0,4.0,15.0,4.0,1904984 -4686035,2000042989,1,25,17,1,2000042989,2,6.0,35.0,6.0,-9.0,4.0,1904985 -4686036,2000042990,1,18,17,1,2000042990,2,6.0,50.0,3.0,15.0,4.0,1904986 -4686037,2000042991,1,18,17,1,2000042991,1,6.0,-9.0,-9.0,15.0,4.0,1904987 -4686038,2000042992,1,18,17,1,2000042992,2,1.0,9.0,4.0,15.0,4.0,1904988 -4686039,2000042993,1,25,17,1,2000042993,1,6.0,20.0,5.0,15.0,4.0,1904989 -4686040,2000042994,2,18,17,1,2000042994,2,6.0,-9.0,-9.0,15.0,4.0,1904990 -4686041,2000042995,2,19,17,1,2000042995,1,6.0,-9.0,-9.0,15.0,4.0,1904991 -4686042,2000042996,1,25,17,1,2000042996,1,6.0,20.0,5.0,15.0,4.0,1904992 -4686043,2000042997,1,18,17,1,2000042997,2,6.0,50.0,3.0,15.0,4.0,1904993 -4686044,2000042998,1,18,17,1,2000042998,2,6.0,-9.0,-9.0,15.0,4.0,1904994 -4686045,2000042999,1,18,17,1,2000042999,2,6.0,-9.0,-9.0,15.0,4.0,1904995 -4686046,2000043000,1,18,17,1,2000043000,2,6.0,24.0,1.0,15.0,4.0,1904996 -4686047,2000043001,1,18,17,1,2000043001,2,1.0,9.0,4.0,15.0,4.0,1904997 -4686048,2000043002,2,19,17,1,2000043002,2,3.0,-9.0,-9.0,15.0,4.0,1904998 -4686049,2000043003,2,19,17,1,2000043003,1,6.0,-9.0,-9.0,-9.0,4.0,1904999 -4686050,2000043004,1,18,17,1,2000043004,1,6.0,-9.0,-9.0,15.0,4.0,1905000 -4686051,2000043005,1,18,17,1,2000043005,1,6.0,-9.0,-9.0,15.0,4.0,1905001 -4686052,2000043006,1,18,17,1,2000043006,1,6.0,-9.0,-9.0,15.0,4.0,1905002 -4686053,2000043007,1,18,17,1,2000043007,1,6.0,-9.0,-9.0,15.0,4.0,1905003 -4686054,2000043008,1,18,17,1,2000043008,2,1.0,9.0,4.0,15.0,4.0,1905004 -4686055,2000043009,1,18,17,1,2000043009,1,6.0,-9.0,-9.0,15.0,4.0,1905005 -4686056,2000043010,2,19,17,1,2000043010,1,6.0,-9.0,-9.0,-9.0,4.0,1905006 -4686057,2000043011,2,19,17,1,2000043011,1,6.0,-9.0,-9.0,-9.0,4.0,1905007 -4686058,2000043012,2,19,17,1,2000043012,2,1.0,5.0,6.0,15.0,4.0,1905008 -4686059,2000043013,2,19,17,1,2000043013,1,6.0,-9.0,-9.0,15.0,4.0,1905009 -4686060,2000043014,2,19,17,1,2000043014,1,6.0,-9.0,-9.0,15.0,4.0,1905010 -4686061,2000043015,2,18,17,1,2000043015,2,3.0,-9.0,-9.0,15.0,4.0,1905011 -4686062,2000043016,1,25,17,1,2000043016,2,6.0,35.0,6.0,-9.0,4.0,1905012 -4686063,2000043017,1,18,17,1,2000043017,2,6.0,50.0,3.0,15.0,4.0,1905013 -4686064,2000043018,2,18,17,1,2000043018,2,3.0,-9.0,-9.0,15.0,4.0,1905014 -4686065,2000043019,1,18,17,1,2000043019,2,6.0,24.0,1.0,15.0,4.0,1905015 -4686066,2000043020,2,19,17,1,2000043020,1,6.0,-9.0,-9.0,-9.0,4.0,1905016 -4686067,2000043021,2,19,17,1,2000043021,2,1.0,5.0,6.0,15.0,4.0,1905017 -4686068,2000043022,2,24,17,1,2000043022,1,1.0,17.0,4.0,15.0,4.0,1905018 -4686069,2000043023,1,18,17,1,2000043023,1,6.0,-9.0,-9.0,15.0,4.0,1905019 -4686070,2000043024,2,19,17,1,2000043024,1,6.0,-9.0,-9.0,15.0,4.0,1905020 -4686071,2000043025,1,18,17,1,2000043025,2,6.0,-9.0,-9.0,15.0,4.0,1905021 -4686072,2000043026,1,18,17,1,2000043026,1,6.0,-9.0,-9.0,15.0,4.0,1905022 -4686073,2000043027,2,19,17,1,2000043027,1,6.0,-9.0,-9.0,-9.0,4.0,1905023 -4686074,2000043028,1,18,17,1,2000043028,2,6.0,24.0,1.0,15.0,4.0,1905024 -4686075,2000043029,2,20,17,1,2000043029,2,1.0,12.0,5.0,15.0,4.0,1905025 -4686076,2000043030,2,19,17,1,2000043030,2,1.0,5.0,6.0,15.0,4.0,1905026 -4686077,2000043031,1,18,17,1,2000043031,2,1.0,9.0,4.0,15.0,4.0,1905027 -4686078,2000043032,1,25,17,1,2000043032,2,6.0,35.0,6.0,-9.0,4.0,1905028 -4686079,2000043033,2,19,17,1,2000043033,2,3.0,-9.0,-9.0,15.0,4.0,1905029 -4686080,2000043034,2,19,17,1,2000043034,1,6.0,-9.0,-9.0,-9.0,4.0,1905030 -4686081,2000043035,2,19,17,1,2000043035,1,6.0,-9.0,-9.0,-9.0,4.0,1905031 -4686082,2000043036,2,20,17,1,2000043036,1,6.0,-9.0,-9.0,15.0,4.0,1905032 -4686083,2000043037,2,19,17,1,2000043037,2,3.0,-9.0,-9.0,15.0,4.0,1905033 -4686084,2000043038,2,19,17,1,2000043038,1,6.0,-9.0,-9.0,15.0,4.0,1905034 -4686085,2000043039,2,24,17,1,2000043039,1,1.0,17.0,4.0,15.0,4.0,1905035 -4686086,2000043040,2,19,17,1,2000043040,2,3.0,-9.0,-9.0,15.0,4.0,1905036 -4686087,2000043041,2,19,17,1,2000043041,2,1.0,5.0,6.0,15.0,4.0,1905037 -4686088,2000043042,1,18,17,1,2000043042,2,6.0,50.0,3.0,15.0,4.0,1905038 -4686089,2000043043,2,19,17,1,2000043043,2,3.0,-9.0,-9.0,15.0,4.0,1905039 -4686090,2000043044,1,18,17,1,2000043044,2,6.0,24.0,1.0,15.0,4.0,1905040 -4686091,2000043045,2,19,17,1,2000043045,2,1.0,5.0,6.0,15.0,4.0,1905041 -4686092,2000043046,1,18,17,1,2000043046,2,6.0,-9.0,-9.0,15.0,4.0,1905042 -4686093,2000043047,2,19,17,1,2000043047,1,6.0,-9.0,-9.0,15.0,4.0,1905043 -4686094,2000043048,1,18,17,1,2000043048,2,6.0,-9.0,-9.0,15.0,4.0,1905044 -4686095,2000043049,1,18,17,1,2000043049,2,6.0,8.0,6.0,15.0,4.0,1905045 -4686096,2000043050,2,19,17,1,2000043050,2,3.0,-9.0,-9.0,15.0,4.0,1905046 -4686097,2000043051,2,18,17,1,2000043051,2,3.0,-9.0,-9.0,15.0,4.0,1905047 -4686098,2000043052,2,19,17,1,2000043052,1,6.0,-9.0,-9.0,15.0,4.0,1905048 -4686099,2000043053,1,18,17,1,2000043053,1,6.0,-9.0,-9.0,15.0,4.0,1905049 -4686100,2000043054,1,18,17,1,2000043054,1,6.0,-9.0,-9.0,15.0,4.0,1905050 -4686101,2000043055,1,18,17,1,2000043055,2,6.0,24.0,1.0,15.0,4.0,1905051 -4686102,2000043056,2,19,17,1,2000043056,2,3.0,-9.0,-9.0,15.0,4.0,1905052 -4686103,2000043057,1,25,17,1,2000043057,2,6.0,35.0,6.0,-9.0,4.0,1905053 -4686104,2000043058,2,19,17,1,2000043058,1,6.0,-9.0,-9.0,-9.0,4.0,1905054 -4686105,2000043059,1,25,17,1,2000043059,2,6.0,35.0,6.0,-9.0,4.0,1905055 -4686106,2000043060,2,19,17,1,2000043060,1,6.0,-9.0,-9.0,-9.0,4.0,1905056 -4686107,2000043061,1,18,17,1,2000043061,2,6.0,50.0,3.0,15.0,4.0,1905057 -4686108,2000043062,1,18,17,1,2000043062,1,6.0,-9.0,-9.0,15.0,4.0,1905058 -4686109,2000043063,2,19,17,1,2000043063,1,6.0,-9.0,-9.0,15.0,4.0,1905059 -4686110,2000043064,1,18,17,1,2000043064,2,6.0,24.0,1.0,15.0,4.0,1905060 -4686111,2000043065,1,18,17,1,2000043065,2,6.0,24.0,1.0,15.0,4.0,1905061 -4686112,2000043066,2,19,17,1,2000043066,2,1.0,5.0,6.0,15.0,4.0,1905062 -4686113,2000043067,1,18,17,1,2000043067,1,6.0,-9.0,-9.0,15.0,4.0,1905063 -4686114,2000043068,2,19,17,1,2000043068,1,6.0,-9.0,-9.0,-9.0,4.0,1905064 -4686115,2000043069,2,19,17,1,2000043069,1,6.0,-9.0,-9.0,-9.0,4.0,1905065 -4686116,2000043070,1,18,17,1,2000043070,2,6.0,-9.0,-9.0,15.0,4.0,1905066 -4686117,2000043071,2,19,17,1,2000043071,1,6.0,-9.0,-9.0,15.0,4.0,1905067 -4686118,2000043072,2,19,17,1,2000043072,2,3.0,-9.0,-9.0,15.0,4.0,1905068 -4686119,2000043073,2,19,17,1,2000043073,1,6.0,-9.0,-9.0,15.0,4.0,1905069 -4686120,2000043074,2,19,17,1,2000043074,1,6.0,-9.0,-9.0,15.0,4.0,1905070 -4686121,2000043075,1,18,17,1,2000043075,2,6.0,8.0,6.0,15.0,4.0,1905071 -4686122,2000043076,1,18,17,1,2000043076,2,6.0,50.0,3.0,15.0,4.0,1905072 -4686123,2000043077,2,19,17,1,2000043077,1,6.0,-9.0,-9.0,-9.0,4.0,1905073 -4686124,2000043078,2,19,17,1,2000043078,1,6.0,-9.0,-9.0,15.0,4.0,1905074 -4686125,2000043079,2,19,17,1,2000043079,1,6.0,-9.0,-9.0,-9.0,4.0,1905075 -4686126,2000043080,1,18,17,1,2000043080,2,6.0,24.0,1.0,15.0,4.0,1905076 -4686127,2000043081,1,18,17,1,2000043081,2,6.0,-9.0,-9.0,15.0,4.0,1905077 -4686128,2000043082,2,24,17,1,2000043082,2,6.0,-9.0,-9.0,-9.0,4.0,1905078 -4686129,2000043083,2,19,17,1,2000043083,1,6.0,-9.0,-9.0,15.0,4.0,1905079 -4686130,2000043084,2,19,17,1,2000043084,1,6.0,-9.0,-9.0,15.0,4.0,1905080 -4686131,2000043085,2,19,17,1,2000043085,1,6.0,-9.0,-9.0,-9.0,4.0,1905081 -4686132,2000043086,2,19,17,1,2000043086,2,3.0,-9.0,-9.0,15.0,4.0,1905082 -4686133,2000043087,2,19,17,1,2000043087,2,3.0,-9.0,-9.0,15.0,4.0,1905083 -4686134,2000043088,2,19,17,1,2000043088,1,6.0,-9.0,-9.0,-9.0,4.0,1905084 -4686135,2000043089,2,19,17,1,2000043089,1,6.0,-9.0,-9.0,15.0,4.0,1905085 -4686136,2000043090,1,18,17,1,2000043090,2,6.0,-9.0,-9.0,15.0,4.0,1905086 -4686137,2000043091,1,18,17,1,2000043091,2,6.0,-9.0,-9.0,15.0,4.0,1905087 -4686138,2000043092,2,19,17,1,2000043092,2,3.0,-9.0,-9.0,15.0,4.0,1905088 -4686139,2000043093,2,19,17,1,2000043093,2,3.0,-9.0,-9.0,15.0,4.0,1905089 -4686140,2000043094,1,18,17,1,2000043094,1,6.0,-9.0,-9.0,15.0,4.0,1905090 -4686141,2000043095,2,18,17,1,2000043095,2,6.0,-9.0,-9.0,15.0,4.0,1905091 -4686142,2000043096,2,19,17,1,2000043096,2,3.0,-9.0,-9.0,15.0,4.0,1905092 -4686143,2000043097,1,18,17,1,2000043097,2,1.0,9.0,4.0,15.0,4.0,1905093 -4686144,2000043098,2,19,17,1,2000043098,2,3.0,-9.0,-9.0,15.0,4.0,1905094 -4686145,2000043099,2,19,17,1,2000043099,2,3.0,-9.0,-9.0,15.0,4.0,1905095 -4686146,2000043100,2,19,17,1,2000043100,2,3.0,-9.0,-9.0,15.0,4.0,1905096 -4686147,2000043101,2,19,17,1,2000043101,1,6.0,-9.0,-9.0,15.0,4.0,1905097 -4686148,2000043102,2,19,17,1,2000043102,1,6.0,-9.0,-9.0,-9.0,4.0,1905098 -4686149,2000043103,2,18,17,1,2000043103,2,6.0,-9.0,-9.0,15.0,4.0,1905099 -4686150,2000043104,2,19,17,1,2000043104,2,3.0,-9.0,-9.0,15.0,4.0,1905100 -4686151,2000043105,2,18,17,1,2000043105,2,6.0,-9.0,-9.0,15.0,4.0,1905101 -4686152,2000043106,2,19,17,1,2000043106,1,6.0,-9.0,-9.0,15.0,4.0,1905102 -4686153,2000043107,2,19,17,1,2000043107,1,6.0,-9.0,-9.0,-9.0,4.0,1905103 -4686154,2000043108,1,25,17,1,2000043108,1,6.0,20.0,5.0,15.0,4.0,1905104 -4686155,2000043109,1,18,17,1,2000043109,2,6.0,24.0,1.0,15.0,4.0,1905105 -4686156,2000043110,1,18,17,1,2000043110,2,1.0,9.0,4.0,15.0,4.0,1905106 -4686157,2000043111,2,18,17,1,2000043111,2,6.0,-9.0,-9.0,15.0,4.0,1905107 -4686158,2000043112,1,18,17,1,2000043112,2,6.0,-9.0,-9.0,15.0,4.0,1905108 -4686159,2000043113,1,18,17,1,2000043113,1,6.0,-9.0,-9.0,15.0,4.0,1905109 -4686160,2000043114,2,24,17,1,2000043114,1,1.0,17.0,4.0,15.0,4.0,1905110 -4686161,2000043115,2,18,17,1,2000043115,1,6.0,-9.0,-9.0,-9.0,4.0,1905111 -4686162,2000043116,2,19,17,1,2000043116,1,6.0,-9.0,-9.0,15.0,4.0,1905112 -4686163,2000043117,2,24,17,1,2000043117,2,6.0,-9.0,-9.0,-9.0,4.0,1905113 -4686164,2000043118,2,19,17,1,2000043118,1,6.0,-9.0,-9.0,-9.0,4.0,1905114 -4686165,2000043119,1,18,17,1,2000043119,2,1.0,9.0,4.0,15.0,4.0,1905115 -4686166,2000043120,1,18,17,1,2000043120,2,6.0,-9.0,-9.0,15.0,4.0,1905116 -4686167,2000043121,2,19,17,1,2000043121,1,6.0,-9.0,-9.0,15.0,4.0,1905117 -4686168,2000043122,1,25,17,1,2000043122,2,6.0,35.0,6.0,-9.0,4.0,1905118 -4686169,2000043123,2,19,17,1,2000043123,1,6.0,-9.0,-9.0,-9.0,4.0,1905119 -4686170,2000043124,1,18,17,1,2000043124,2,6.0,-9.0,-9.0,15.0,4.0,1905120 -4686171,2000043125,2,19,17,1,2000043125,2,1.0,5.0,6.0,15.0,4.0,1905121 -4686172,2000043126,2,20,17,1,2000043126,2,1.0,20.0,5.0,15.0,4.0,1905122 -4686173,2000043127,1,18,17,1,2000043127,1,6.0,-9.0,-9.0,15.0,4.0,1905123 -4686174,2000043128,2,19,17,1,2000043128,2,1.0,5.0,6.0,15.0,4.0,1905124 -4686175,2000043129,2,19,17,1,2000043129,1,6.0,-9.0,-9.0,15.0,4.0,1905125 -4686176,2000043130,1,18,17,1,2000043130,2,6.0,-9.0,-9.0,15.0,4.0,1905126 -4686177,2000043131,2,19,17,1,2000043131,1,6.0,-9.0,-9.0,15.0,4.0,1905127 -4686178,2000043132,2,19,17,1,2000043132,2,3.0,-9.0,-9.0,15.0,4.0,1905128 -4686179,2000043133,2,19,17,1,2000043133,1,6.0,-9.0,-9.0,15.0,4.0,1905129 -4686180,2000043134,1,25,17,1,2000043134,1,6.0,-9.0,-9.0,-9.0,4.0,1905130 -4686182,2000043136,1,18,17,1,2000043136,2,6.0,-9.0,-9.0,15.0,4.0,1905132 -4686183,2000043137,2,63,17,1,2000043137,1,1.0,20.0,6.0,-9.0,4.0,1905133 -4686188,2000043142,1,18,17,1,2000043142,2,6.0,-9.0,-9.0,15.0,4.0,1905138 -4686189,2000043143,1,18,17,1,2000043143,2,6.0,-9.0,-9.0,15.0,4.0,1905139 -4686195,2000043149,2,56,17,1,2000043149,1,3.0,40.0,4.0,-9.0,4.0,1905145 -4686196,2000043150,2,56,17,1,2000043150,1,6.0,-9.0,-9.0,-9.0,4.0,1905146 -4686199,2000043153,2,60,17,1,2000043153,1,6.0,-9.0,-9.0,-9.0,2.0,1905149 -4686200,2000043154,2,19,17,1,2000043154,2,3.0,-9.0,-9.0,15.0,4.0,1905150 -4686202,2000043156,2,60,17,1,2000043156,1,6.0,-9.0,-9.0,-9.0,2.0,1905152 -4686203,2000043157,2,56,17,1,2000043157,1,6.0,-9.0,-9.0,-9.0,2.0,1905153 -4686207,2000043161,2,56,17,1,2000043161,1,6.0,-9.0,-9.0,-9.0,4.0,1905157 -4686208,2000043162,4,57,17,1,2000043162,1,1.0,20.0,1.0,-9.0,4.0,1905158 -4686210,2000043164,4,57,17,1,2000043164,1,1.0,20.0,1.0,-9.0,4.0,1905160 -4686211,2000043165,2,56,17,1,2000043165,1,6.0,-9.0,-9.0,-9.0,2.0,1905161 -4686214,2000043168,1,18,17,1,2000043168,2,6.0,-9.0,-9.0,15.0,4.0,1905164 -4686216,2000043170,1,18,17,1,2000043170,1,6.0,-9.0,-9.0,15.0,4.0,1905166 -4686217,2000043171,2,24,17,1,2000043171,1,1.0,17.0,4.0,15.0,4.0,1905167 -4686219,2000043173,2,19,17,1,2000043173,1,6.0,-9.0,-9.0,15.0,4.0,1905169 -4686220,2000043174,2,63,17,1,2000043174,1,1.0,20.0,6.0,-9.0,4.0,1905170 -4686221,2000043175,2,19,17,1,2000043175,2,1.0,5.0,6.0,15.0,4.0,1905171 -4686222,2000043176,1,65,17,1,2000043176,2,6.0,-9.0,-9.0,-9.0,4.0,1905172 -4686223,2000043177,2,20,17,1,2000043177,2,1.0,12.0,5.0,15.0,4.0,1905173 -4686224,2000043178,2,19,17,1,2000043178,2,3.0,-9.0,-9.0,15.0,4.0,1905174 -4686229,2000043183,1,78,17,1,2000043183,2,6.0,-9.0,-9.0,-9.0,4.0,1905179 -4686230,2000043184,1,18,17,1,2000043184,2,6.0,50.0,3.0,15.0,4.0,1905180 -4686231,2000043185,2,60,17,1,2000043185,1,6.0,-9.0,-9.0,-9.0,2.0,1905181 -4686232,2000043186,2,19,17,1,2000043186,2,1.0,5.0,6.0,15.0,4.0,1905182 -4686233,2000043187,1,25,17,1,2000043187,1,6.0,20.0,5.0,15.0,4.0,1905183 -4686234,2000043188,4,57,17,1,2000043188,1,1.0,20.0,1.0,-9.0,4.0,1905184 -4686235,2000043189,2,18,17,1,2000043189,2,3.0,-9.0,-9.0,15.0,4.0,1905185 -4686237,2000043191,2,34,17,1,2000043191,1,6.0,-9.0,-9.0,-9.0,4.0,1905187 -4686238,2000043192,2,19,17,1,2000043192,2,1.0,5.0,6.0,15.0,4.0,1905188 -4686239,2000043193,2,19,17,1,2000043193,2,3.0,-9.0,-9.0,15.0,4.0,1905189 -4686240,2000043194,1,25,17,1,2000043194,1,6.0,-9.0,-9.0,-9.0,4.0,1905190 -4686241,2000043195,1,78,17,1,2000043195,2,6.0,-9.0,-9.0,-9.0,4.0,1905191 -4686242,2000043196,2,58,17,1,2000043196,1,6.0,-9.0,-9.0,-9.0,4.0,1905192 -4686243,2000043197,2,19,17,1,2000043197,1,6.0,-9.0,-9.0,-9.0,4.0,1905193 -4686246,2000043200,1,78,17,1,2000043200,2,6.0,-9.0,-9.0,-9.0,4.0,1905196 -4686247,2000043201,2,60,17,1,2000043201,2,6.0,-9.0,-9.0,-9.0,4.0,1905197 -4686249,2000043203,2,19,17,1,2000043203,2,3.0,-9.0,-9.0,15.0,4.0,1905199 -4686250,2000043204,1,18,17,1,2000043204,2,6.0,-9.0,-9.0,15.0,4.0,1905200 -4686252,2000043206,2,56,17,1,2000043206,1,6.0,-9.0,-9.0,-9.0,4.0,1905202 -4686253,2000043207,1,25,17,1,2000043207,1,6.0,20.0,5.0,15.0,4.0,1905203 -4686255,2000043209,1,56,17,1,2000043209,1,6.0,-9.0,-9.0,-9.0,4.0,1905205 -4686256,2000043210,2,52,17,1,2000043210,2,6.0,-9.0,-9.0,-9.0,4.0,1905206 -4686257,2000043211,1,18,17,1,2000043211,2,6.0,-9.0,-9.0,15.0,4.0,1905207 -4686258,2000043212,1,78,17,1,2000043212,2,6.0,-9.0,-9.0,-9.0,4.0,1905208 -4686260,2000043214,2,19,17,1,2000043214,2,3.0,-9.0,-9.0,15.0,4.0,1905210 -4686262,2000043216,4,57,17,1,2000043216,1,1.0,20.0,1.0,-9.0,4.0,1905212 -4686264,2000043218,2,19,17,1,2000043218,2,1.0,5.0,6.0,15.0,4.0,1905214 -4686265,2000043219,2,19,17,1,2000043219,2,1.0,5.0,6.0,15.0,4.0,1905215 -4686266,2000043220,2,41,17,1,2000043220,2,6.0,-9.0,-9.0,-9.0,4.0,1905216 -4686267,2000043221,2,38,17,1,2000043221,2,6.0,-9.0,-9.0,-9.0,4.0,1905217 -4686269,2000043223,2,29,17,1,2000043223,1,3.0,-9.0,-9.0,-9.0,4.0,1905219 -4686270,2000043224,2,24,17,1,2000043224,1,1.0,17.0,4.0,15.0,4.0,1905220 -4686272,2000043226,2,19,17,1,2000043226,2,3.0,-9.0,-9.0,15.0,4.0,1905222 -4686274,2000043228,2,60,17,1,2000043228,2,6.0,-9.0,-9.0,-9.0,4.0,1905224 -4687035,2000043989,4,21,17,1,2000043989,1,6.0,-9.0,-9.0,15.0,4.0,1905985 -4687036,2000043990,4,20,17,1,2000043990,2,6.0,-9.0,-9.0,15.0,4.0,1905986 -4687037,2000043991,1,18,17,1,2000043991,2,6.0,-9.0,-9.0,15.0,4.0,1905987 -4687038,2000043992,1,18,17,1,2000043992,1,6.0,-9.0,-9.0,15.0,4.0,1905988 -4687039,2000043993,4,21,17,1,2000043993,1,6.0,-9.0,-9.0,15.0,4.0,1905989 -4687040,2000043994,2,18,17,1,2000043994,1,6.0,-9.0,-9.0,-9.0,4.0,1905990 -4687041,2000043995,1,18,17,1,2000043995,1,6.0,-9.0,-9.0,15.0,4.0,1905991 -4687042,2000043996,2,18,17,1,2000043996,2,3.0,40.0,4.0,14.0,4.0,1905992 -4687043,2000043997,4,20,17,1,2000043997,2,6.0,-9.0,-9.0,15.0,4.0,1905993 -4687044,2000043998,1,18,17,1,2000043998,2,6.0,-9.0,-9.0,15.0,4.0,1905994 -4687045,2000043999,2,22,17,1,2000043999,1,3.0,-9.0,-9.0,15.0,4.0,1905995 -4687046,2000044000,2,22,17,1,2000044000,2,3.0,-9.0,-9.0,13.0,4.0,1905996 -4687047,2000044001,4,20,17,1,2000044001,2,6.0,-9.0,-9.0,15.0,4.0,1905997 -4687048,2000044002,4,20,17,1,2000044002,2,6.0,-9.0,-9.0,15.0,4.0,1905998 -4687049,2000044003,2,22,17,1,2000044003,2,3.0,-9.0,-9.0,-9.0,4.0,1905999 -4687050,2000044004,4,21,17,1,2000044004,1,6.0,-9.0,-9.0,15.0,4.0,1906000 -4687051,2000044005,2,25,17,1,2000044005,1,6.0,-9.0,-9.0,-9.0,4.0,1906001 -4687052,2000044006,4,20,17,1,2000044006,2,6.0,-9.0,-9.0,15.0,4.0,1906002 -4687053,2000044007,2,22,17,1,2000044007,1,6.0,-9.0,-9.0,-9.0,4.0,1906003 -4687054,2000044008,1,18,17,1,2000044008,2,6.0,24.0,1.0,15.0,4.0,1906004 -4687055,2000044009,4,21,17,1,2000044009,1,6.0,-9.0,-9.0,15.0,4.0,1906005 -4687056,2000044010,4,21,17,1,2000044010,1,6.0,-9.0,-9.0,15.0,4.0,1906006 -4687057,2000044011,4,20,17,1,2000044011,2,6.0,-9.0,-9.0,15.0,4.0,1906007 -4687058,2000044012,4,20,17,1,2000044012,2,6.0,-9.0,-9.0,15.0,4.0,1906008 -4687059,2000044013,1,18,17,1,2000044013,1,6.0,-9.0,-9.0,15.0,4.0,1906009 -4687060,2000044014,2,22,17,1,2000044014,2,3.0,-9.0,-9.0,13.0,4.0,1906010 -4687061,2000044015,2,18,17,1,2000044015,2,3.0,-9.0,-9.0,15.0,4.0,1906011 -4687062,2000044016,1,18,17,1,2000044016,1,6.0,-9.0,-9.0,15.0,4.0,1906012 -4687063,2000044017,2,18,17,1,2000044017,2,3.0,-9.0,-9.0,15.0,4.0,1906013 -4687064,2000044018,2,29,17,1,2000044018,1,6.0,-9.0,-9.0,-9.0,4.0,1906014 -4687065,2000044019,2,22,17,1,2000044019,1,6.0,35.0,5.0,-9.0,4.0,1906015 -4687066,2000044020,4,21,17,1,2000044020,1,6.0,-9.0,-9.0,15.0,4.0,1906016 -4687067,2000044021,1,18,17,1,2000044021,2,6.0,-9.0,-9.0,15.0,4.0,1906017 -4687068,2000044022,1,25,17,1,2000044022,1,6.0,-9.0,-9.0,-9.0,4.0,1906018 -4687069,2000044023,2,18,17,1,2000044023,2,6.0,-9.0,-9.0,15.0,4.0,1906019 -4687070,2000044024,2,18,17,1,2000044024,2,3.0,40.0,4.0,14.0,4.0,1906020 -4687071,2000044025,2,18,17,1,2000044025,2,6.0,-9.0,-9.0,15.0,4.0,1906021 -4687072,2000044026,1,18,17,1,2000044026,2,6.0,-9.0,-9.0,15.0,4.0,1906022 -4687073,2000044027,2,22,17,1,2000044027,1,6.0,35.0,5.0,-9.0,4.0,1906023 -4687074,2000044028,4,21,17,1,2000044028,1,6.0,-9.0,-9.0,15.0,4.0,1906024 -4687075,2000044029,2,18,17,1,2000044029,2,6.0,-9.0,-9.0,15.0,4.0,1906025 -4687076,2000044030,4,21,17,1,2000044030,1,6.0,-9.0,-9.0,15.0,4.0,1906026 -4687077,2000044031,4,20,17,1,2000044031,2,6.0,-9.0,-9.0,15.0,4.0,1906027 -4687078,2000044032,1,18,17,1,2000044032,1,6.0,-9.0,-9.0,15.0,4.0,1906028 -4687079,2000044033,2,22,17,1,2000044033,2,3.0,-9.0,-9.0,13.0,4.0,1906029 -4687080,2000044034,1,18,17,1,2000044034,2,6.0,-9.0,-9.0,15.0,4.0,1906030 -4687081,2000044035,2,22,17,1,2000044035,1,6.0,-9.0,-9.0,-9.0,4.0,1906031 -4687082,2000044036,2,18,17,1,2000044036,1,6.0,-9.0,-9.0,-9.0,4.0,1906032 -4687083,2000044037,4,21,17,1,2000044037,1,6.0,-9.0,-9.0,15.0,4.0,1906033 -4687084,2000044038,4,21,17,1,2000044038,1,6.0,-9.0,-9.0,15.0,4.0,1906034 -4687085,2000044039,2,18,17,1,2000044039,2,6.0,-9.0,-9.0,15.0,4.0,1906035 -4687086,2000044040,2,25,17,1,2000044040,1,6.0,-9.0,-9.0,-9.0,4.0,1906036 -4687087,2000044041,1,18,17,1,2000044041,2,6.0,8.0,6.0,15.0,4.0,1906037 -4687088,2000044042,2,18,17,1,2000044042,2,6.0,-9.0,-9.0,13.0,4.0,1906038 -4687089,2000044043,2,18,17,1,2000044043,2,6.0,-9.0,-9.0,13.0,4.0,1906039 -4687090,2000044044,2,22,17,1,2000044044,1,6.0,40.0,6.0,16.0,4.0,1906040 -4687091,2000044045,4,20,17,1,2000044045,2,6.0,-9.0,-9.0,15.0,4.0,1906041 -4687092,2000044046,1,18,17,1,2000044046,2,6.0,-9.0,-9.0,15.0,4.0,1906042 -4687093,2000044047,1,18,17,1,2000044047,2,6.0,-9.0,-9.0,15.0,4.0,1906043 -4687094,2000044048,2,18,17,1,2000044048,1,6.0,-9.0,-9.0,-9.0,4.0,1906044 -4687095,2000044049,2,18,17,1,2000044049,2,3.0,40.0,4.0,14.0,4.0,1906045 -4687096,2000044050,2,18,17,1,2000044050,2,3.0,40.0,4.0,14.0,4.0,1906046 -4687097,2000044051,2,18,17,1,2000044051,2,3.0,40.0,4.0,14.0,4.0,1906047 -4687098,2000044052,2,18,17,1,2000044052,2,6.0,-9.0,-9.0,15.0,4.0,1906048 -4687099,2000044053,4,20,17,1,2000044053,2,6.0,-9.0,-9.0,15.0,4.0,1906049 -4687100,2000044054,4,21,17,1,2000044054,1,6.0,-9.0,-9.0,15.0,4.0,1906050 -4687101,2000044055,2,22,17,1,2000044055,2,3.0,-9.0,-9.0,-9.0,4.0,1906051 -4687102,2000044056,1,18,17,1,2000044056,2,6.0,50.0,3.0,15.0,4.0,1906052 -4687103,2000044057,1,18,17,1,2000044057,2,1.0,9.0,4.0,15.0,4.0,1906053 -4687104,2000044058,4,20,17,1,2000044058,2,6.0,-9.0,-9.0,15.0,4.0,1906054 -4687105,2000044059,4,21,17,1,2000044059,1,6.0,-9.0,-9.0,15.0,4.0,1906055 -4687106,2000044060,2,18,17,1,2000044060,2,6.0,-9.0,-9.0,15.0,4.0,1906056 -4687107,2000044061,4,20,17,1,2000044061,2,6.0,-9.0,-9.0,15.0,4.0,1906057 -4687108,2000044062,4,20,17,1,2000044062,2,6.0,-9.0,-9.0,15.0,4.0,1906058 -4687109,2000044063,4,21,17,1,2000044063,1,6.0,-9.0,-9.0,15.0,4.0,1906059 -4687110,2000044064,1,18,17,1,2000044064,2,6.0,-9.0,-9.0,15.0,4.0,1906060 -4687111,2000044065,1,18,17,1,2000044065,2,6.0,-9.0,-9.0,15.0,4.0,1906061 -4687112,2000044066,2,25,17,1,2000044066,1,6.0,-9.0,-9.0,-9.0,4.0,1906062 -4687113,2000044067,4,20,17,1,2000044067,2,6.0,-9.0,-9.0,15.0,4.0,1906063 -4687114,2000044068,4,21,17,1,2000044068,1,6.0,-9.0,-9.0,15.0,4.0,1906064 -4687115,2000044069,4,20,17,1,2000044069,2,6.0,-9.0,-9.0,15.0,4.0,1906065 -4687116,2000044070,1,25,17,1,2000044070,1,6.0,-9.0,-9.0,-9.0,4.0,1906066 -4687117,2000044071,2,22,17,1,2000044071,2,3.0,-9.0,-9.0,-9.0,4.0,1906067 -4687118,2000044072,2,22,17,1,2000044072,1,6.0,-9.0,-9.0,-9.0,4.0,1906068 -4687119,2000044073,4,21,17,1,2000044073,1,6.0,-9.0,-9.0,15.0,4.0,1906069 -4687120,2000044074,1,18,17,1,2000044074,2,6.0,-9.0,-9.0,15.0,4.0,1906070 -4687121,2000044075,1,18,17,1,2000044075,2,1.0,9.0,4.0,15.0,4.0,1906071 -4687122,2000044076,2,29,17,1,2000044076,1,6.0,-9.0,-9.0,-9.0,4.0,1906072 -4687123,2000044077,1,18,17,1,2000044077,2,6.0,-9.0,-9.0,15.0,4.0,1906073 -4687124,2000044078,1,18,17,1,2000044078,2,6.0,-9.0,-9.0,15.0,4.0,1906074 -4687125,2000044079,2,18,17,1,2000044079,2,6.0,-9.0,-9.0,15.0,4.0,1906075 -4687126,2000044080,4,20,17,1,2000044080,2,6.0,-9.0,-9.0,15.0,4.0,1906076 -4687127,2000044081,1,18,17,1,2000044081,2,6.0,-9.0,-9.0,15.0,4.0,1906077 -4687128,2000044082,2,22,17,1,2000044082,1,3.0,-9.0,-9.0,15.0,4.0,1906078 -4687129,2000044083,2,22,17,1,2000044083,2,3.0,-9.0,-9.0,13.0,4.0,1906079 -4687130,2000044084,4,20,17,1,2000044084,2,6.0,-9.0,-9.0,15.0,4.0,1906080 -4687131,2000044085,2,18,17,1,2000044085,2,6.0,-9.0,-9.0,15.0,4.0,1906081 -4687132,2000044086,2,18,17,1,2000044086,2,6.0,-9.0,-9.0,15.0,4.0,1906082 -4687133,2000044087,4,21,17,1,2000044087,1,6.0,-9.0,-9.0,15.0,4.0,1906083 -4687134,2000044088,2,18,17,1,2000044088,2,6.0,-9.0,-9.0,15.0,4.0,1906084 -4687135,2000044089,4,21,17,1,2000044089,1,6.0,-9.0,-9.0,15.0,4.0,1906085 -4687136,2000044090,4,21,17,1,2000044090,1,6.0,-9.0,-9.0,15.0,4.0,1906086 -4687137,2000044091,2,25,17,1,2000044091,1,6.0,-9.0,-9.0,-9.0,4.0,1906087 -4687138,2000044092,2,18,17,1,2000044092,2,3.0,-9.0,-9.0,15.0,4.0,1906088 -4687139,2000044093,4,21,17,1,2000044093,1,6.0,-9.0,-9.0,15.0,4.0,1906089 -4687140,2000044094,2,25,17,1,2000044094,1,6.0,-9.0,-9.0,-9.0,4.0,1906090 -4687141,2000044095,1,25,17,1,2000044095,1,6.0,-9.0,-9.0,-9.0,4.0,1906091 -4687142,2000044096,2,18,17,1,2000044096,1,6.0,-9.0,-9.0,-9.0,4.0,1906092 -4687143,2000044097,1,18,17,1,2000044097,1,6.0,-9.0,-9.0,15.0,4.0,1906093 -4687144,2000044098,4,21,17,1,2000044098,1,6.0,-9.0,-9.0,15.0,4.0,1906094 -4687145,2000044099,2,18,17,1,2000044099,2,3.0,-9.0,-9.0,15.0,4.0,1906095 -4687146,2000044100,4,21,17,1,2000044100,1,6.0,-9.0,-9.0,15.0,4.0,1906096 -4687147,2000044101,4,21,17,1,2000044101,1,6.0,-9.0,-9.0,15.0,4.0,1906097 -4687148,2000044102,1,18,17,1,2000044102,2,6.0,-9.0,-9.0,15.0,4.0,1906098 -4687149,2000044103,1,18,17,1,2000044103,2,6.0,-9.0,-9.0,15.0,4.0,1906099 -4687150,2000044104,1,18,17,1,2000044104,1,6.0,-9.0,-9.0,15.0,4.0,1906100 -4687151,2000044105,1,18,17,1,2000044105,1,6.0,-9.0,-9.0,15.0,4.0,1906101 -4687152,2000044106,2,25,17,1,2000044106,1,6.0,-9.0,-9.0,-9.0,4.0,1906102 -4687153,2000044107,4,21,17,1,2000044107,1,6.0,-9.0,-9.0,15.0,4.0,1906103 -4687154,2000044108,1,18,17,1,2000044108,2,6.0,50.0,3.0,15.0,4.0,1906104 -4687155,2000044109,4,21,17,1,2000044109,1,6.0,-9.0,-9.0,15.0,4.0,1906105 -4687156,2000044110,4,21,17,1,2000044110,1,6.0,-9.0,-9.0,15.0,4.0,1906106 -4687157,2000044111,2,18,17,1,2000044111,2,6.0,-9.0,-9.0,13.0,4.0,1906107 -4687158,2000044112,1,18,17,1,2000044112,2,6.0,-9.0,-9.0,15.0,4.0,1906108 -4687159,2000044113,2,22,17,1,2000044113,2,3.0,-9.0,-9.0,-9.0,4.0,1906109 -4687160,2000044114,1,18,17,1,2000044114,2,6.0,-9.0,-9.0,15.0,4.0,1906110 -4687161,2000044115,1,18,17,1,2000044115,2,6.0,50.0,3.0,15.0,4.0,1906111 -4687162,2000044116,4,21,17,1,2000044116,1,6.0,-9.0,-9.0,15.0,4.0,1906112 -4687163,2000044117,1,18,17,1,2000044117,2,6.0,-9.0,-9.0,15.0,4.0,1906113 -4687164,2000044118,2,18,17,1,2000044118,1,6.0,-9.0,-9.0,-9.0,4.0,1906114 -4687165,2000044119,4,21,17,1,2000044119,1,6.0,-9.0,-9.0,15.0,4.0,1906115 -4687166,2000044120,4,21,17,1,2000044120,1,6.0,-9.0,-9.0,15.0,4.0,1906116 -4687167,2000044121,2,29,17,1,2000044121,1,6.0,-9.0,-9.0,-9.0,4.0,1906117 -4687168,2000044122,1,18,17,1,2000044122,2,6.0,-9.0,-9.0,15.0,4.0,1906118 -4687169,2000044123,2,22,17,1,2000044123,2,3.0,-9.0,-9.0,13.0,4.0,1906119 -4687170,2000044124,4,21,17,1,2000044124,1,6.0,-9.0,-9.0,15.0,4.0,1906120 -4687171,2000044125,1,18,17,1,2000044125,2,6.0,-9.0,-9.0,15.0,4.0,1906121 -4687172,2000044126,1,18,17,1,2000044126,2,6.0,24.0,1.0,15.0,4.0,1906122 -4687173,2000044127,4,21,17,1,2000044127,1,6.0,-9.0,-9.0,15.0,4.0,1906123 -4687174,2000044128,2,29,17,1,2000044128,1,3.0,-9.0,-9.0,-9.0,4.0,1906124 -4687175,2000044129,4,20,17,1,2000044129,2,6.0,-9.0,-9.0,15.0,4.0,1906125 -4687176,2000044130,4,20,17,1,2000044130,2,6.0,-9.0,-9.0,15.0,4.0,1906126 -4687177,2000044131,1,18,17,1,2000044131,2,6.0,-9.0,-9.0,15.0,4.0,1906127 -4687178,2000044132,4,20,17,1,2000044132,2,6.0,-9.0,-9.0,15.0,4.0,1906128 -4687179,2000044133,1,18,17,1,2000044133,2,6.0,-9.0,-9.0,15.0,4.0,1906129 -4687180,2000044134,2,22,17,1,2000044134,2,3.0,-9.0,-9.0,13.0,4.0,1906130 -4687181,2000044135,2,18,17,1,2000044135,1,6.0,-9.0,-9.0,-9.0,4.0,1906131 -4687182,2000044136,1,18,17,1,2000044136,1,6.0,-9.0,-9.0,15.0,4.0,1906132 -4687183,2000044137,1,18,17,1,2000044137,2,6.0,50.0,3.0,15.0,4.0,1906133 -4687184,2000044138,4,20,17,1,2000044138,2,6.0,-9.0,-9.0,15.0,4.0,1906134 -4687185,2000044139,1,18,17,1,2000044139,2,6.0,-9.0,-9.0,15.0,4.0,1906135 -4687186,2000044140,1,18,17,1,2000044140,2,6.0,-9.0,-9.0,15.0,4.0,1906136 -4687187,2000044141,4,21,17,1,2000044141,1,6.0,-9.0,-9.0,15.0,4.0,1906137 -4687188,2000044142,1,18,17,1,2000044142,2,6.0,-9.0,-9.0,15.0,4.0,1906138 -4687189,2000044143,4,21,17,1,2000044143,1,6.0,-9.0,-9.0,15.0,4.0,1906139 -4687190,2000044144,2,18,17,1,2000044144,2,6.0,-9.0,-9.0,15.0,4.0,1906140 -4687191,2000044145,2,29,17,1,2000044145,1,3.0,-9.0,-9.0,-9.0,4.0,1906141 -4687192,2000044146,2,18,17,1,2000044146,2,6.0,-9.0,-9.0,15.0,4.0,1906142 -4687193,2000044147,4,20,17,1,2000044147,2,6.0,-9.0,-9.0,15.0,4.0,1906143 -4687194,2000044148,1,25,17,1,2000044148,2,6.0,35.0,6.0,-9.0,4.0,1906144 -4687195,2000044149,4,20,17,1,2000044149,2,6.0,-9.0,-9.0,15.0,4.0,1906145 -4687196,2000044150,2,18,17,1,2000044150,2,6.0,-9.0,-9.0,15.0,4.0,1906146 -4687197,2000044151,2,22,17,1,2000044151,1,6.0,40.0,6.0,16.0,4.0,1906147 -4687198,2000044152,1,18,17,1,2000044152,2,6.0,50.0,3.0,15.0,4.0,1906148 -4687199,2000044153,4,21,17,1,2000044153,1,6.0,-9.0,-9.0,15.0,4.0,1906149 -4687200,2000044154,1,18,17,1,2000044154,2,6.0,8.0,6.0,15.0,4.0,1906150 -4687201,2000044155,2,22,17,1,2000044155,2,3.0,-9.0,-9.0,13.0,4.0,1906151 -4687202,2000044156,1,18,17,1,2000044156,2,6.0,-9.0,-9.0,15.0,4.0,1906152 -4687203,2000044157,2,18,17,1,2000044157,2,3.0,40.0,4.0,14.0,4.0,1906153 -4687204,2000044158,2,22,17,1,2000044158,1,3.0,25.0,2.0,15.0,4.0,1906154 -4687205,2000044159,2,18,17,1,2000044159,2,3.0,40.0,4.0,14.0,4.0,1906155 -4687206,2000044160,2,29,17,1,2000044160,1,6.0,-9.0,-9.0,-9.0,4.0,1906156 -4687207,2000044161,2,22,17,1,2000044161,2,1.0,16.0,1.0,-9.0,4.0,1906157 -4687208,2000044162,2,18,17,1,2000044162,2,6.0,-9.0,-9.0,13.0,4.0,1906158 -4687209,2000044163,2,22,17,1,2000044163,1,3.0,-9.0,-9.0,15.0,4.0,1906159 -4687210,2000044164,2,18,17,1,2000044164,2,6.0,-9.0,-9.0,15.0,4.0,1906160 -4687211,2000044165,2,18,17,1,2000044165,1,6.0,-9.0,-9.0,-9.0,4.0,1906161 -4687212,2000044166,2,18,17,1,2000044166,2,6.0,-9.0,-9.0,15.0,4.0,1906162 -4687213,2000044167,2,25,17,1,2000044167,1,6.0,-9.0,-9.0,-9.0,4.0,1906163 -4687214,2000044168,1,25,17,1,2000044168,2,6.0,35.0,6.0,-9.0,4.0,1906164 -4687215,2000044169,4,21,17,1,2000044169,1,6.0,-9.0,-9.0,15.0,4.0,1906165 -4687216,2000044170,4,20,17,1,2000044170,2,6.0,-9.0,-9.0,15.0,4.0,1906166 -4687217,2000044171,1,18,17,1,2000044171,2,6.0,-9.0,-9.0,15.0,4.0,1906167 -4687218,2000044172,1,18,17,1,2000044172,1,6.0,-9.0,-9.0,15.0,4.0,1906168 -4687219,2000044173,1,18,17,1,2000044173,2,6.0,-9.0,-9.0,15.0,4.0,1906169 -4687220,2000044174,2,18,17,1,2000044174,1,6.0,-9.0,-9.0,-9.0,4.0,1906170 -4687221,2000044175,2,18,17,1,2000044175,2,6.0,-9.0,-9.0,15.0,4.0,1906171 -4687222,2000044176,4,20,17,1,2000044176,2,6.0,-9.0,-9.0,15.0,4.0,1906172 -4687223,2000044177,1,18,17,1,2000044177,1,6.0,-9.0,-9.0,15.0,4.0,1906173 -4687224,2000044178,4,21,17,1,2000044178,1,6.0,-9.0,-9.0,15.0,4.0,1906174 -4687225,2000044179,4,20,17,1,2000044179,2,6.0,-9.0,-9.0,15.0,4.0,1906175 -4687226,2000044180,4,21,17,1,2000044180,1,6.0,-9.0,-9.0,15.0,4.0,1906176 -4687227,2000044181,2,18,17,1,2000044181,2,6.0,-9.0,-9.0,13.0,4.0,1906177 -4687228,2000044182,4,21,17,1,2000044182,1,6.0,-9.0,-9.0,15.0,4.0,1906178 -4687229,2000044183,2,18,17,1,2000044183,1,6.0,-9.0,-9.0,-9.0,4.0,1906179 -4687230,2000044184,4,21,17,1,2000044184,1,6.0,-9.0,-9.0,15.0,4.0,1906180 -4687231,2000044185,1,18,17,1,2000044185,2,6.0,24.0,1.0,15.0,4.0,1906181 -4687232,2000044186,4,21,17,1,2000044186,1,6.0,-9.0,-9.0,15.0,4.0,1906182 -4687233,2000044187,2,18,17,1,2000044187,2,6.0,-9.0,-9.0,15.0,4.0,1906183 -4687234,2000044188,2,18,17,1,2000044188,1,6.0,-9.0,-9.0,-9.0,4.0,1906184 -4687235,2000044189,4,21,17,1,2000044189,1,6.0,-9.0,-9.0,15.0,4.0,1906185 -4687236,2000044190,2,22,17,1,2000044190,1,3.0,-9.0,-9.0,15.0,4.0,1906186 -4687237,2000044191,2,29,17,1,2000044191,1,3.0,-9.0,-9.0,-9.0,4.0,1906187 -4687238,2000044192,2,18,17,1,2000044192,2,6.0,-9.0,-9.0,13.0,4.0,1906188 -4687239,2000044193,2,22,17,1,2000044193,2,3.0,-9.0,-9.0,-9.0,4.0,1906189 -4687240,2000044194,4,20,17,1,2000044194,2,6.0,-9.0,-9.0,15.0,4.0,1906190 -4687241,2000044195,1,18,17,1,2000044195,2,6.0,-9.0,-9.0,15.0,4.0,1906191 -4687242,2000044196,2,18,17,1,2000044196,1,6.0,-9.0,-9.0,-9.0,4.0,1906192 -4687243,2000044197,1,18,17,1,2000044197,1,6.0,-9.0,-9.0,15.0,4.0,1906193 -4687244,2000044198,2,25,17,1,2000044198,1,6.0,-9.0,-9.0,-9.0,2.0,1906194 -4687245,2000044199,2,22,17,1,2000044199,1,6.0,-9.0,-9.0,-9.0,4.0,1906195 -4687246,2000044200,2,22,17,1,2000044200,2,3.0,-9.0,-9.0,-9.0,4.0,1906196 -4687247,2000044201,1,18,17,1,2000044201,2,6.0,-9.0,-9.0,15.0,4.0,1906197 -4687248,2000044202,1,25,17,1,2000044202,1,6.0,-9.0,-9.0,-9.0,4.0,1906198 -4687249,2000044203,2,29,17,1,2000044203,1,3.0,-9.0,-9.0,-9.0,4.0,1906199 -4687250,2000044204,2,18,17,1,2000044204,2,3.0,-9.0,-9.0,15.0,4.0,1906200 -4687251,2000044205,4,21,17,1,2000044205,1,6.0,-9.0,-9.0,15.0,4.0,1906201 -4687252,2000044206,1,18,17,1,2000044206,2,6.0,24.0,1.0,15.0,4.0,1906202 -4687253,2000044207,2,18,17,1,2000044207,1,6.0,-9.0,-9.0,-9.0,4.0,1906203 -4687254,2000044208,2,22,17,1,2000044208,1,3.0,25.0,2.0,15.0,4.0,1906204 -4687255,2000044209,1,18,17,1,2000044209,2,6.0,-9.0,-9.0,15.0,4.0,1906205 -4687256,2000044210,4,20,17,1,2000044210,2,6.0,-9.0,-9.0,15.0,4.0,1906206 -4687257,2000044211,2,18,17,1,2000044211,1,6.0,-9.0,-9.0,-9.0,4.0,1906207 -4687258,2000044212,4,21,17,1,2000044212,1,6.0,-9.0,-9.0,15.0,4.0,1906208 -4687259,2000044213,4,21,17,1,2000044213,1,6.0,-9.0,-9.0,15.0,4.0,1906209 -4687260,2000044214,1,18,17,1,2000044214,2,6.0,24.0,1.0,15.0,4.0,1906210 -4687261,2000044215,1,18,17,1,2000044215,2,6.0,-9.0,-9.0,15.0,4.0,1906211 -4687262,2000044216,1,25,17,1,2000044216,1,6.0,20.0,5.0,15.0,4.0,1906212 -4687263,2000044217,4,21,17,1,2000044217,1,6.0,-9.0,-9.0,15.0,4.0,1906213 -4687264,2000044218,2,22,17,1,2000044218,1,3.0,16.0,1.0,15.0,4.0,1906214 -4687265,2000044219,2,18,17,1,2000044219,1,6.0,-9.0,-9.0,-9.0,4.0,1906215 -4687266,2000044220,1,18,17,1,2000044220,1,6.0,-9.0,-9.0,15.0,4.0,1906216 -4687267,2000044221,1,18,17,1,2000044221,2,6.0,50.0,3.0,15.0,4.0,1906217 -4687268,2000044222,1,18,17,1,2000044222,2,6.0,-9.0,-9.0,15.0,4.0,1906218 -4687269,2000044223,2,18,17,1,2000044223,2,6.0,-9.0,-9.0,15.0,4.0,1906219 -4687270,2000044224,1,18,17,1,2000044224,2,6.0,-9.0,-9.0,15.0,4.0,1906220 -4687271,2000044225,1,18,17,1,2000044225,2,6.0,-9.0,-9.0,15.0,4.0,1906221 -4687272,2000044226,4,21,17,1,2000044226,1,6.0,-9.0,-9.0,15.0,4.0,1906222 -4687273,2000044227,1,18,17,1,2000044227,2,6.0,50.0,3.0,15.0,4.0,1906223 -4687274,2000044228,2,18,17,1,2000044228,2,6.0,-9.0,-9.0,15.0,4.0,1906224 -4687275,2000044229,2,18,17,1,2000044229,1,6.0,-9.0,-9.0,-9.0,4.0,1906225 -4687276,2000044230,1,18,17,1,2000044230,2,1.0,9.0,4.0,15.0,4.0,1906226 -4687277,2000044231,2,18,17,1,2000044231,2,6.0,-9.0,-9.0,13.0,4.0,1906227 -4687278,2000044232,4,21,17,1,2000044232,1,6.0,-9.0,-9.0,15.0,4.0,1906228 -4687279,2000044233,2,25,17,1,2000044233,1,6.0,-9.0,-9.0,-9.0,2.0,1906229 -4687280,2000044234,2,29,17,1,2000044234,1,3.0,-9.0,-9.0,-9.0,4.0,1906230 -4687281,2000044235,4,21,17,1,2000044235,1,6.0,-9.0,-9.0,15.0,4.0,1906231 -4687282,2000044236,4,20,17,1,2000044236,2,6.0,-9.0,-9.0,15.0,4.0,1906232 -4687283,2000044237,1,18,17,1,2000044237,2,6.0,-9.0,-9.0,15.0,4.0,1906233 -4687284,2000044238,2,18,17,1,2000044238,2,6.0,-9.0,-9.0,15.0,4.0,1906234 -4687285,2000044239,2,22,17,1,2000044239,1,3.0,25.0,2.0,15.0,4.0,1906235 -4687286,2000044240,2,18,17,1,2000044240,1,6.0,-9.0,-9.0,-9.0,4.0,1906236 -4687287,2000044241,2,18,17,1,2000044241,2,6.0,-9.0,-9.0,15.0,4.0,1906237 -4687288,2000044242,2,22,17,1,2000044242,1,6.0,-9.0,-9.0,-9.0,4.0,1906238 -4687289,2000044243,2,18,17,1,2000044243,1,6.0,-9.0,-9.0,-9.0,4.0,1906239 -4687290,2000044244,4,21,17,1,2000044244,1,6.0,-9.0,-9.0,15.0,4.0,1906240 -4687291,2000044245,4,21,17,1,2000044245,1,6.0,-9.0,-9.0,15.0,4.0,1906241 -4687292,2000044246,1,18,17,1,2000044246,2,6.0,-9.0,-9.0,15.0,4.0,1906242 -4687293,2000044247,2,25,17,1,2000044247,2,3.0,-9.0,-9.0,-9.0,4.0,1906243 -4687294,2000044248,2,22,17,1,2000044248,2,3.0,-9.0,-9.0,13.0,4.0,1906244 -4687295,2000044249,4,21,17,1,2000044249,1,6.0,-9.0,-9.0,15.0,4.0,1906245 -4687296,2000044250,4,21,17,1,2000044250,1,6.0,-9.0,-9.0,15.0,4.0,1906246 -4687297,2000044251,4,21,17,1,2000044251,1,6.0,-9.0,-9.0,15.0,4.0,1906247 -4687298,2000044252,4,20,17,1,2000044252,2,6.0,-9.0,-9.0,15.0,4.0,1906248 -4687299,2000044253,1,18,17,1,2000044253,2,6.0,-9.0,-9.0,15.0,4.0,1906249 -4687300,2000044254,4,21,17,1,2000044254,1,6.0,-9.0,-9.0,15.0,4.0,1906250 -4687301,2000044255,1,18,17,1,2000044255,2,6.0,-9.0,-9.0,15.0,4.0,1906251 -4687302,2000044256,4,20,17,1,2000044256,2,6.0,-9.0,-9.0,15.0,4.0,1906252 -4687303,2000044257,4,21,17,1,2000044257,1,6.0,-9.0,-9.0,15.0,4.0,1906253 -4687304,2000044258,1,18,17,1,2000044258,2,6.0,-9.0,-9.0,15.0,4.0,1906254 -4687305,2000044259,2,18,17,1,2000044259,2,6.0,-9.0,-9.0,15.0,4.0,1906255 -4687306,2000044260,4,20,17,1,2000044260,2,6.0,-9.0,-9.0,15.0,4.0,1906256 -4687307,2000044261,4,20,17,1,2000044261,2,6.0,-9.0,-9.0,15.0,4.0,1906257 -4687308,2000044262,1,25,17,1,2000044262,1,6.0,20.0,5.0,15.0,4.0,1906258 -4687309,2000044263,4,21,17,1,2000044263,1,6.0,-9.0,-9.0,15.0,4.0,1906259 -4687310,2000044264,4,20,17,1,2000044264,2,6.0,-9.0,-9.0,15.0,4.0,1906260 -4687311,2000044265,1,18,17,1,2000044265,2,6.0,-9.0,-9.0,15.0,4.0,1906261 -4687312,2000044266,2,18,17,1,2000044266,2,6.0,-9.0,-9.0,15.0,4.0,1906262 -4687313,2000044267,2,18,17,1,2000044267,2,3.0,-9.0,-9.0,15.0,4.0,1906263 -4687314,2000044268,4,20,17,1,2000044268,2,6.0,-9.0,-9.0,15.0,4.0,1906264 -4687315,2000044269,2,18,17,1,2000044269,2,3.0,-9.0,-9.0,15.0,4.0,1906265 -4687316,2000044270,1,18,17,1,2000044270,2,6.0,-9.0,-9.0,15.0,4.0,1906266 -4687317,2000044271,4,21,17,1,2000044271,1,6.0,-9.0,-9.0,15.0,4.0,1906267 -4687318,2000044272,2,18,17,1,2000044272,1,6.0,-9.0,-9.0,-9.0,4.0,1906268 -4687319,2000044273,4,21,17,1,2000044273,1,6.0,-9.0,-9.0,15.0,4.0,1906269 -4687320,2000044274,2,22,17,1,2000044274,2,3.0,-9.0,-9.0,13.0,4.0,1906270 -4687321,2000044275,4,21,17,1,2000044275,1,6.0,-9.0,-9.0,15.0,4.0,1906271 -4687322,2000044276,1,18,17,1,2000044276,2,6.0,-9.0,-9.0,15.0,4.0,1906272 -4687323,2000044277,2,18,17,1,2000044277,2,3.0,-9.0,-9.0,15.0,4.0,1906273 -4687324,2000044278,2,18,17,1,2000044278,2,6.0,-9.0,-9.0,13.0,4.0,1906274 -4687325,2000044279,4,20,17,1,2000044279,2,6.0,-9.0,-9.0,15.0,4.0,1906275 -4687326,2000044280,2,29,17,1,2000044280,1,3.0,-9.0,-9.0,-9.0,4.0,1906276 -4687327,2000044281,4,21,17,1,2000044281,1,6.0,-9.0,-9.0,15.0,4.0,1906277 -4687328,2000044282,4,21,17,1,2000044282,1,6.0,-9.0,-9.0,15.0,4.0,1906278 -4687329,2000044283,2,25,17,1,2000044283,1,6.0,-9.0,-9.0,-9.0,4.0,1906279 -4687330,2000044284,4,20,17,1,2000044284,2,6.0,-9.0,-9.0,15.0,4.0,1906280 -4687331,2000044285,1,18,17,1,2000044285,2,1.0,9.0,4.0,15.0,4.0,1906281 -4687332,2000044286,2,18,17,1,2000044286,2,3.0,40.0,4.0,14.0,4.0,1906282 -4687333,2000044287,2,22,17,1,2000044287,1,6.0,35.0,5.0,-9.0,4.0,1906283 -4687334,2000044288,4,20,17,1,2000044288,2,6.0,-9.0,-9.0,15.0,4.0,1906284 -4687335,2000044289,2,18,17,1,2000044289,2,3.0,40.0,4.0,14.0,4.0,1906285 -4687336,2000044290,2,18,17,1,2000044290,2,3.0,-9.0,-9.0,15.0,4.0,1906286 -4687337,2000044291,1,18,17,1,2000044291,2,6.0,50.0,3.0,15.0,4.0,1906287 -4687338,2000044292,4,21,17,1,2000044292,1,6.0,-9.0,-9.0,15.0,4.0,1906288 -4687339,2000044293,1,18,17,1,2000044293,1,6.0,-9.0,-9.0,15.0,4.0,1906289 -4687340,2000044294,2,18,17,1,2000044294,1,6.0,-9.0,-9.0,-9.0,4.0,1906290 -4687341,2000044295,1,18,17,1,2000044295,2,6.0,-9.0,-9.0,15.0,4.0,1906291 -4687342,2000044296,2,25,17,1,2000044296,1,6.0,-9.0,-9.0,-9.0,4.0,1906292 -4687343,2000044297,2,25,17,1,2000044297,1,6.0,-9.0,-9.0,-9.0,4.0,1906293 -4687344,2000044298,1,18,17,1,2000044298,2,6.0,-9.0,-9.0,15.0,4.0,1906294 -4687345,2000044299,2,18,17,1,2000044299,2,6.0,-9.0,-9.0,15.0,4.0,1906295 -4687346,2000044300,4,21,17,1,2000044300,1,6.0,-9.0,-9.0,15.0,4.0,1906296 -4687347,2000044301,4,20,17,1,2000044301,2,6.0,-9.0,-9.0,15.0,4.0,1906297 -4687348,2000044302,1,18,17,1,2000044302,1,6.0,-9.0,-9.0,15.0,4.0,1906298 -4687349,2000044303,4,21,17,1,2000044303,1,6.0,-9.0,-9.0,15.0,4.0,1906299 -4687350,2000044304,2,18,17,1,2000044304,2,6.0,-9.0,-9.0,15.0,4.0,1906300 -4687351,2000044305,1,18,17,1,2000044305,2,1.0,9.0,4.0,15.0,4.0,1906301 -4687352,2000044306,2,22,17,1,2000044306,1,3.0,-9.0,-9.0,15.0,4.0,1906302 -4687353,2000044307,2,18,17,1,2000044307,1,6.0,-9.0,-9.0,-9.0,4.0,1906303 -4687354,2000044308,1,18,17,1,2000044308,2,6.0,-9.0,-9.0,15.0,4.0,1906304 -4687355,2000044309,1,18,17,1,2000044309,1,6.0,-9.0,-9.0,15.0,4.0,1906305 -4687356,2000044310,4,21,17,1,2000044310,1,6.0,-9.0,-9.0,15.0,4.0,1906306 -4687357,2000044311,2,22,17,1,2000044311,1,6.0,-9.0,-9.0,-9.0,4.0,1906307 -4687358,2000044312,2,18,17,1,2000044312,1,6.0,-9.0,-9.0,-9.0,4.0,1906308 -4687359,2000044313,4,20,17,1,2000044313,2,6.0,-9.0,-9.0,15.0,4.0,1906309 -4687360,2000044314,2,22,17,1,2000044314,2,3.0,-9.0,-9.0,-9.0,4.0,1906310 -4687361,2000044315,4,21,17,1,2000044315,1,6.0,-9.0,-9.0,15.0,4.0,1906311 -4687362,2000044316,2,18,17,1,2000044316,2,6.0,-9.0,-9.0,15.0,4.0,1906312 -4687363,2000044317,4,21,17,1,2000044317,1,6.0,-9.0,-9.0,15.0,4.0,1906313 -4687364,2000044318,1,18,17,1,2000044318,2,6.0,-9.0,-9.0,15.0,4.0,1906314 -4687365,2000044319,2,18,17,1,2000044319,2,3.0,40.0,4.0,14.0,4.0,1906315 -4687366,2000044320,2,18,17,1,2000044320,2,3.0,-9.0,-9.0,15.0,4.0,1906316 -4687367,2000044321,4,20,17,1,2000044321,2,6.0,-9.0,-9.0,15.0,4.0,1906317 -4687368,2000044322,1,18,17,1,2000044322,2,6.0,-9.0,-9.0,15.0,4.0,1906318 -4687369,2000044323,4,21,17,1,2000044323,1,6.0,-9.0,-9.0,15.0,4.0,1906319 -4687370,2000044324,2,22,17,1,2000044324,2,1.0,16.0,1.0,-9.0,4.0,1906320 -4687371,2000044325,1,18,17,1,2000044325,2,1.0,9.0,4.0,15.0,4.0,1906321 -4687372,2000044326,1,18,17,1,2000044326,2,6.0,8.0,6.0,15.0,4.0,1906322 -4687373,2000044327,2,18,17,1,2000044327,1,6.0,-9.0,-9.0,-9.0,4.0,1906323 -4687374,2000044328,2,18,17,1,2000044328,2,3.0,-9.0,-9.0,15.0,4.0,1906324 -4687375,2000044329,2,29,17,1,2000044329,1,3.0,-9.0,-9.0,-9.0,4.0,1906325 -4687376,2000044330,1,18,17,1,2000044330,2,6.0,-9.0,-9.0,15.0,4.0,1906326 -4687377,2000044331,1,18,17,1,2000044331,2,6.0,-9.0,-9.0,15.0,4.0,1906327 -4687378,2000044332,1,18,17,1,2000044332,2,1.0,9.0,4.0,15.0,4.0,1906328 -4687379,2000044333,2,18,17,1,2000044333,2,6.0,-9.0,-9.0,15.0,4.0,1906329 -4687380,2000044334,2,22,17,1,2000044334,1,6.0,-9.0,-9.0,-9.0,4.0,1906330 -4687381,2000044335,4,20,17,1,2000044335,2,6.0,-9.0,-9.0,15.0,4.0,1906331 -4687382,2000044336,1,18,17,1,2000044336,2,6.0,-9.0,-9.0,15.0,4.0,1906332 -4687383,2000044337,2,18,17,1,2000044337,2,3.0,-9.0,-9.0,15.0,4.0,1906333 -4687384,2000044338,2,18,17,1,2000044338,2,3.0,-9.0,-9.0,15.0,4.0,1906334 -4687385,2000044339,1,18,17,1,2000044339,2,6.0,24.0,1.0,15.0,4.0,1906335 -4687386,2000044340,4,20,17,1,2000044340,2,6.0,-9.0,-9.0,15.0,4.0,1906336 -4687387,2000044341,2,18,17,1,2000044341,2,6.0,-9.0,-9.0,15.0,4.0,1906337 -4687388,2000044342,1,18,17,1,2000044342,2,6.0,-9.0,-9.0,15.0,4.0,1906338 -4687389,2000044343,2,22,17,1,2000044343,2,6.0,40.0,5.0,-9.0,4.0,1906339 -4687390,2000044344,2,18,17,1,2000044344,1,6.0,-9.0,-9.0,-9.0,4.0,1906340 -4687391,2000044345,4,20,17,1,2000044345,2,6.0,-9.0,-9.0,15.0,4.0,1906341 -4687392,2000044346,2,18,17,1,2000044346,2,6.0,-9.0,-9.0,15.0,4.0,1906342 -4687393,2000044347,2,22,17,1,2000044347,2,1.0,16.0,1.0,-9.0,4.0,1906343 -4687394,2000044348,2,22,17,1,2000044348,1,3.0,16.0,1.0,15.0,4.0,1906344 -4687395,2000044349,2,25,17,1,2000044349,1,6.0,-9.0,-9.0,-9.0,4.0,1906345 -4687396,2000044350,2,18,17,1,2000044350,2,6.0,-9.0,-9.0,15.0,4.0,1906346 -4687397,2000044351,4,20,17,1,2000044351,2,6.0,-9.0,-9.0,15.0,4.0,1906347 -4687398,2000044352,2,18,17,1,2000044352,2,6.0,-9.0,-9.0,15.0,4.0,1906348 -4687399,2000044353,4,20,17,1,2000044353,2,6.0,-9.0,-9.0,15.0,4.0,1906349 -4687400,2000044354,2,18,17,1,2000044354,1,6.0,-9.0,-9.0,-9.0,4.0,1906350 -4687401,2000044355,2,22,17,1,2000044355,1,3.0,-9.0,-9.0,15.0,4.0,1906351 -4687402,2000044356,2,22,17,1,2000044356,1,6.0,-9.0,-9.0,-9.0,4.0,1906352 -4687403,2000044357,2,25,17,1,2000044357,1,6.0,-9.0,-9.0,-9.0,2.0,1906353 -4687404,2000044358,2,18,17,1,2000044358,2,6.0,-9.0,-9.0,15.0,4.0,1906354 -4687405,2000044359,4,20,17,1,2000044359,2,6.0,-9.0,-9.0,15.0,4.0,1906355 -4687406,2000044360,2,22,17,1,2000044360,2,6.0,40.0,5.0,-9.0,4.0,1906356 -4687524,2000044478,2,22,17,1,2000044478,1,6.0,40.0,6.0,16.0,4.0,1906474 -4687525,2000044479,2,18,17,1,2000044479,2,3.0,40.0,4.0,14.0,4.0,1906475 -4687526,2000044480,2,18,17,1,2000044480,2,6.0,-9.0,-9.0,15.0,4.0,1906476 -4687527,2000044481,2,18,17,1,2000044481,2,3.0,40.0,4.0,14.0,4.0,1906477 -4687528,2000044482,1,18,17,1,2000044482,2,6.0,-9.0,-9.0,15.0,4.0,1906478 -4687529,2000044483,4,21,17,1,2000044483,1,6.0,-9.0,-9.0,15.0,4.0,1906479 -4687530,2000044484,2,18,17,1,2000044484,1,6.0,-9.0,-9.0,-9.0,4.0,1906480 -4687531,2000044485,2,22,17,1,2000044485,2,1.0,16.0,1.0,-9.0,4.0,1906481 -4687532,2000044486,4,21,17,1,2000044486,1,6.0,-9.0,-9.0,15.0,4.0,1906482 -4687533,2000044487,2,18,17,1,2000044487,1,6.0,-9.0,-9.0,-9.0,4.0,1906483 -4687534,2000044488,2,18,17,1,2000044488,1,6.0,-9.0,-9.0,-9.0,4.0,1906484 -4687535,2000044489,2,22,17,1,2000044489,1,6.0,35.0,5.0,-9.0,4.0,1906485 -4687536,2000044490,4,21,17,1,2000044490,1,6.0,-9.0,-9.0,15.0,4.0,1906486 -4687537,2000044491,4,21,17,1,2000044491,1,6.0,-9.0,-9.0,15.0,4.0,1906487 -4687538,2000044492,2,22,17,1,2000044492,2,6.0,40.0,5.0,-9.0,4.0,1906488 -4687539,2000044493,4,20,17,1,2000044493,2,6.0,-9.0,-9.0,15.0,4.0,1906489 -4687540,2000044494,4,21,17,1,2000044494,1,6.0,-9.0,-9.0,15.0,4.0,1906490 -4687541,2000044495,2,22,17,1,2000044495,1,6.0,-9.0,-9.0,-9.0,4.0,1906491 -4687542,2000044496,2,18,17,1,2000044496,2,6.0,-9.0,-9.0,15.0,4.0,1906492 -4687543,2000044497,4,20,17,1,2000044497,2,6.0,-9.0,-9.0,15.0,4.0,1906493 -4687544,2000044498,2,18,17,1,2000044498,1,6.0,-9.0,-9.0,-9.0,4.0,1906494 -4687545,2000044499,4,20,17,1,2000044499,2,6.0,-9.0,-9.0,15.0,4.0,1906495 -4687546,2000044500,2,18,17,1,2000044500,1,6.0,-9.0,-9.0,-9.0,4.0,1906496 -4687547,2000044501,1,18,17,1,2000044501,2,6.0,50.0,3.0,15.0,4.0,1906497 -4687548,2000044502,2,18,17,1,2000044502,2,6.0,-9.0,-9.0,13.0,4.0,1906498 -4687549,2000044503,4,21,17,1,2000044503,1,6.0,-9.0,-9.0,15.0,4.0,1906499 -4687550,2000044504,2,18,17,1,2000044504,1,6.0,-9.0,-9.0,-9.0,4.0,1906500 -4687551,2000044505,4,21,17,1,2000044505,1,6.0,-9.0,-9.0,15.0,4.0,1906501 -4687552,2000044506,1,25,17,1,2000044506,1,6.0,-9.0,-9.0,-9.0,4.0,1906502 -4687553,2000044507,1,18,17,1,2000044507,1,6.0,-9.0,-9.0,15.0,4.0,1906503 -4687554,2000044508,2,18,17,1,2000044508,2,6.0,-9.0,-9.0,13.0,4.0,1906504 -4687555,2000044509,1,18,17,1,2000044509,1,6.0,-9.0,-9.0,15.0,4.0,1906505 -4687556,2000044510,2,18,17,1,2000044510,2,6.0,-9.0,-9.0,15.0,4.0,1906506 -4687557,2000044511,4,21,17,1,2000044511,1,6.0,-9.0,-9.0,15.0,4.0,1906507 -4687558,2000044512,4,20,17,1,2000044512,2,6.0,-9.0,-9.0,15.0,4.0,1906508 -4687559,2000044513,4,21,17,1,2000044513,1,6.0,-9.0,-9.0,15.0,4.0,1906509 -4687560,2000044514,4,21,17,1,2000044514,1,6.0,-9.0,-9.0,15.0,4.0,1906510 -4687561,2000044515,4,20,17,1,2000044515,2,6.0,-9.0,-9.0,15.0,4.0,1906511 -4687562,2000044516,4,21,17,1,2000044516,1,6.0,-9.0,-9.0,15.0,4.0,1906512 -4687563,2000044517,4,20,17,1,2000044517,2,6.0,-9.0,-9.0,15.0,4.0,1906513 -4687564,2000044518,4,21,17,1,2000044518,1,6.0,-9.0,-9.0,15.0,4.0,1906514 -4687565,2000044519,2,18,17,1,2000044519,2,6.0,-9.0,-9.0,13.0,4.0,1906515 -4687566,2000044520,4,20,17,1,2000044520,2,6.0,-9.0,-9.0,15.0,4.0,1906516 -4687567,2000044521,1,18,17,1,2000044521,1,6.0,-9.0,-9.0,15.0,4.0,1906517 -4687568,2000044522,4,21,17,1,2000044522,1,6.0,-9.0,-9.0,15.0,4.0,1906518 -4687569,2000044523,2,22,17,1,2000044523,2,1.0,16.0,1.0,-9.0,4.0,1906519 -4687570,2000044524,2,18,17,1,2000044524,2,3.0,-9.0,-9.0,15.0,4.0,1906520 -4687571,2000044525,2,18,17,1,2000044525,1,6.0,-9.0,-9.0,-9.0,4.0,1906521 -4687572,2000044526,2,22,17,1,2000044526,1,3.0,-9.0,-9.0,15.0,4.0,1906522 -4687573,2000044527,4,21,17,1,2000044527,1,6.0,-9.0,-9.0,15.0,4.0,1906523 -4687574,2000044528,2,18,17,1,2000044528,2,6.0,-9.0,-9.0,13.0,4.0,1906524 -4687575,2000044529,2,18,17,1,2000044529,2,3.0,40.0,4.0,14.0,4.0,1906525 -4687576,2000044530,2,22,17,1,2000044530,1,6.0,35.0,5.0,-9.0,4.0,1906526 -4687577,2000044531,1,18,17,1,2000044531,2,6.0,-9.0,-9.0,15.0,4.0,1906527 -4687578,2000044532,4,20,17,1,2000044532,2,6.0,-9.0,-9.0,15.0,4.0,1906528 -4687579,2000044533,1,18,17,1,2000044533,2,6.0,8.0,6.0,15.0,4.0,1906529 -4687580,2000044534,4,20,17,1,2000044534,2,6.0,-9.0,-9.0,15.0,4.0,1906530 -4687581,2000044535,1,18,17,1,2000044535,2,1.0,9.0,4.0,15.0,4.0,1906531 -4687582,2000044536,4,21,17,1,2000044536,1,6.0,-9.0,-9.0,15.0,4.0,1906532 -4687583,2000044537,2,18,17,1,2000044537,2,6.0,-9.0,-9.0,15.0,4.0,1906533 -4687584,2000044538,2,18,17,1,2000044538,2,6.0,-9.0,-9.0,15.0,4.0,1906534 -4687585,2000044539,2,22,17,1,2000044539,2,3.0,-9.0,-9.0,13.0,4.0,1906535 -4687586,2000044540,4,21,17,1,2000044540,1,6.0,-9.0,-9.0,15.0,4.0,1906536 -4687587,2000044541,2,18,17,1,2000044541,2,6.0,-9.0,-9.0,13.0,4.0,1906537 -4687588,2000044542,2,18,17,1,2000044542,2,3.0,40.0,4.0,14.0,4.0,1906538 -4687589,2000044543,1,18,17,1,2000044543,1,6.0,-9.0,-9.0,15.0,4.0,1906539 -4687590,2000044544,1,18,17,1,2000044544,2,6.0,50.0,3.0,15.0,4.0,1906540 -4687591,2000044545,2,56,17,1,2000044545,1,6.0,-9.0,-9.0,-9.0,4.0,1906541 -4687592,2000044546,2,63,17,1,2000044546,1,1.0,20.0,6.0,-9.0,4.0,1906542 -4687593,2000044547,2,22,17,1,2000044547,2,1.0,16.0,1.0,-9.0,4.0,1906543 -4687594,2000044548,4,21,17,1,2000044548,1,6.0,-9.0,-9.0,15.0,4.0,1906544 -4687595,2000044549,2,56,17,1,2000044549,1,6.0,-9.0,-9.0,-9.0,2.0,1906545 -4687597,2000044551,1,79,17,1,2000044551,1,6.0,-9.0,-9.0,-9.0,4.0,1906547 -4687599,2000044553,2,22,17,1,2000044553,2,6.0,40.0,5.0,-9.0,4.0,1906549 -4687600,2000044554,4,21,17,1,2000044554,1,6.0,-9.0,-9.0,15.0,4.0,1906550 -4687603,2000044557,4,21,17,1,2000044557,1,6.0,-9.0,-9.0,15.0,4.0,1906553 -4687606,2000044560,2,41,17,1,2000044560,1,6.0,-9.0,-9.0,-9.0,4.0,1906556 -4687607,2000044561,1,56,17,1,2000044561,1,6.0,-9.0,-9.0,-9.0,4.0,1906557 -4687608,2000044562,2,18,17,1,2000044562,1,6.0,-9.0,-9.0,-9.0,4.0,1906558 -4687609,2000044563,2,18,17,1,2000044563,2,3.0,40.0,4.0,14.0,4.0,1906559 -4687610,2000044564,1,56,17,1,2000044564,1,6.0,-9.0,-9.0,-9.0,4.0,1906560 -4687611,2000044565,1,18,17,1,2000044565,2,6.0,-9.0,-9.0,15.0,4.0,1906561 -4687612,2000044566,2,22,17,1,2000044566,1,3.0,25.0,2.0,15.0,4.0,1906562 -4687614,2000044568,1,56,17,1,2000044568,1,6.0,-9.0,-9.0,-9.0,4.0,1906564 -4687615,2000044569,1,79,17,1,2000044569,1,6.0,-9.0,-9.0,-9.0,4.0,1906565 -4687618,2000044572,2,69,17,1,2000044572,1,6.0,-9.0,-9.0,-9.0,2.0,1906568 -4687620,2000044574,2,56,17,1,2000044574,1,6.0,-9.0,-9.0,-9.0,4.0,1906570 diff --git a/activitysim/examples/prototype_semcog/output/.gitignore b/activitysim/examples/prototype_semcog/output/.gitignore deleted file mode 100644 index bf5bf15e3..000000000 --- a/activitysim/examples/prototype_semcog/output/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -*.csv -*.log -*.prof -*.h5 -*.txt -*.yaml -*.omx diff --git a/activitysim/examples/prototype_semcog/scripts/reindex_household_ids.py b/activitysim/examples/prototype_semcog/scripts/reindex_household_ids.py deleted file mode 100644 index 538f9d3f9..000000000 --- a/activitysim/examples/prototype_semcog/scripts/reindex_household_ids.py +++ /dev/null @@ -1,192 +0,0 @@ -# ActivitySim -# See full license in LICENSE.txt. - -""" -reindex household_id in households and persons tables -legacy tables have household_ids starting at 930000000 -which causes headaches for activitysim's automatic generation of trip and tour ids based on hosuehold_id -(predictable trip and tour ids are used for repeatable random number stream generation) -""" - -import os -import sys - -import numpy as np -import pandas as pd - -if sys.version_info[0] < 3: - raise Exception("Must be using Python 3") - -file_names = { - "households": "households.csv", - "persons": "persons.csv", - "land_use": "land_use.csv", -} - -land_use_zone_col = "ZONE" -hh_zone_col = "zone_id" - - -def drop_and_dump(df, drop, msg, tag, output_dir): - - print("Checking for %s" % msg) - if drop.any(): - print( - "WARNING: dropping %s out of %s %s (%s)" % (drop.sum(), len(df), msg, tag) - ) - df[drop].to_csv(os.path.join(output_dir, "%s.csv" % tag), index=False) - df = df[~drop] - - return df - - -def create_subset(input_dir, output_dir, drop_dir): - - ### - # land_use - ### - land_use_df = pd.read_csv(os.path.join(input_dir, file_names["land_use"])) - land_use_df = land_use_df.sort_values(by=land_use_zone_col) - land_use_df.to_csv(os.path.join(output_dir, file_names["land_use"]), index=False) - - print("zones: %s" % len(land_use_df)) - - ### - # households - ### - - households = pd.read_csv( - os.path.join(input_dir, file_names["households"]), - dtype={"household_id": np.int64}, - ) - households = households.sort_values(by="household_id") - households.rename(columns={"household_id": "legacy_household_id"}, inplace=True) - - raw_household_count = len(households) - - # all households must have a zone_id - null_zones = households[hh_zone_col].isnull() - households = drop_and_dump( - households, - null_zones, - msg="households with null zones", - tag="households_with_null_zones", - output_dir=drop_dir, - ) - households[hh_zone_col] = households[hh_zone_col].astype(np.int64) - - # all households zone_ids must be in land_use - orphan_zones = ~households[hh_zone_col].isin(land_use_df[land_use_zone_col]) - households = drop_and_dump( - households, - orphan_zones, - msg="households with unknown zones", - tag="households_with_unknown_zones", - output_dir=drop_dir, - ) - - # reindexed household_id as both index and column - households.index = np.arange(1, len(households) + 1) - households["household_id"] = households.index - - ### - # persons - ### - persons = pd.read_csv( - os.path.join(input_dir, file_names["persons"]), - dtype={"household_id": np.int64, "person_id": np.int64}, - ) - persons = persons.sort_values(by=["household_id", "member_id"]) - persons.rename( - columns={ - "person_id": "legacy_person_id", - "household_id": "legacy_household_id", - }, - inplace=True, - ) - persons.legacy_household_id = persons.legacy_household_id.astype(np.int64) - - raw_person_count = len(persons) - - assert not persons.legacy_household_id.isnull().any() - - orphan_persons = ~persons.legacy_household_id.isin(households.legacy_household_id) - persons = drop_and_dump( - persons, - orphan_persons, - msg="persons without households", - tag="persons_without_households", - output_dir=drop_dir, - ) - - persons = pd.merge( - persons, - households[["legacy_household_id", "household_id"]], - left_on="legacy_household_id", - right_on="legacy_household_id", - how="left", - ) - assert not persons.household_id.isnull().any() - persons.household_id = persons.household_id.astype(np.int64) - - # reindexed person_id as both index and column - persons.index = np.arange(1, len(persons) + 1) - persons["person_id"] = persons.index - - # check that we have the right number of persons in every household" - assert (persons.groupby("household_id").size() == households.persons).all() - - # check that all persons in household have different member_id" - persons_with_dupe_member_id = persons.duplicated( - ["household_id", "member_id"], keep="first" - ) - household_ids_with_dupe_member_id = persons.household_id[ - persons_with_dupe_member_id - ].unique() - households_with_dupe_members = households.household_id.isin( - household_ids_with_dupe_member_id - ) - persons_in_households_with_dupe_members = persons.household_id.isin( - household_ids_with_dupe_member_id - ) - - print( - "%s of %s persons_with_dupe_member_id" - % (persons_with_dupe_member_id.sum(), len(persons)) - ) - persons = drop_and_dump( - persons, - persons_in_households_with_dupe_members, - msg="persons in households with duplicate (household_id, member_id)", - tag="persons_in_households_with_dupe_member_id", - output_dir=drop_dir, - ) - - households = drop_and_dump( - households, - households_with_dupe_members, - msg="households with duplicate persons.member_id", - tag="households_with_dupe_member_id", - output_dir=drop_dir, - ) - - missing_member1 = ~households.household_id.isin( - persons.household_id[persons.member_id == 1] - ) - # print("%s of %s households missing member_id 1" % (missing_member1.sum(), len(households))) - assert not missing_member1.any() - - print( - "Writing %s households. Dropped %s" - % (len(households), raw_household_count - len(households)) - ) - households.to_csv(os.path.join(output_dir, file_names["households"]), index=False) - - print( - "Writing %s persons. Dropped %s" - % (len(persons), raw_person_count - len(persons)) - ) - persons.to_csv(os.path.join(output_dir, file_names["persons"]), index=False) - - -create_subset(input_dir="data_raw/", output_dir="data/", drop_dir="data_raw/dropped") diff --git a/activitysim/examples/prototype_semcog/test/configs/settings.yaml b/activitysim/examples/prototype_semcog/test/configs/settings.yaml deleted file mode 100644 index 94653b605..000000000 --- a/activitysim/examples/prototype_semcog/test/configs/settings.yaml +++ /dev/null @@ -1,33 +0,0 @@ -inherit_settings: True - -# EXAMPLE_HAS_WARNINGS -strict: False - -# number of households to simulate -households_sample_size: 10 -# simulate all households -# households_sample_size: 0 - -chunk_size: 0 - -# - shadow pricing global switches -# turn shadow_pricing on and off for all models (e.g. school and work) -# shadow pricing is deprecated for less than full samples -# see shadow_pricing.yaml for additional settings -use_shadow_pricing: False - -# 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 - -# global switch to turn on or off presampling of destination alternatives at TAZ level (multizone models only) -want_dest_choice_presampling: True - -# - tracing -# trace household id; comment out or leave empty for no trace -trace_hh_id: - -# trace origin, destination in accessibility calculation; comment out or leave empty for no trace -# trace_od: [5, 11] -trace_od: - diff --git a/activitysim/examples/prototype_semcog/test/output/.gitignore b/activitysim/examples/prototype_semcog/test/output/.gitignore deleted file mode 100644 index bf5bf15e3..000000000 --- a/activitysim/examples/prototype_semcog/test/output/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -*.csv -*.log -*.prof -*.h5 -*.txt -*.yaml -*.omx diff --git a/activitysim/examples/prototype_semcog/test/output/cache/.gitignore b/activitysim/examples/prototype_semcog/test/output/cache/.gitignore deleted file mode 100644 index 3dd2e62f9..000000000 --- a/activitysim/examples/prototype_semcog/test/output/cache/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.mmap -*.feather diff --git a/activitysim/examples/prototype_semcog/test/output/trace/.gitignore b/activitysim/examples/prototype_semcog/test/output/trace/.gitignore deleted file mode 100644 index 8edb80678..000000000 --- a/activitysim/examples/prototype_semcog/test/output/trace/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -*.csv -*.log -*.txt diff --git a/activitysim/examples/prototype_semcog/test/regress/final_trips.csv b/activitysim/examples/prototype_semcog/test/regress/final_trips.csv deleted file mode 100644 index 42f97f336..000000000 --- a/activitysim/examples/prototype_semcog/test/regress/final_trips.csv +++ /dev/null @@ -1,55 +0,0 @@ -trip_id,person_id,household_id,primary_purpose,trip_num,outbound,trip_count,destination,origin,tour_id,purpose,destination_logsum,depart,trip_mode,mode_choice_logsum -1015768905,3096856,1247711,othmaint,1,True,1,155,170,126971113,othmaint,,24,SHARED3,-0.5224065888961006 -1015768909,3096856,1247711,othmaint,1,False,1,170,155,126971113,home,,24,SHARED3,-0.5214112548235572 -1015768937,3096858,1247711,social,1,True,1,170,170,126971117,social,,29,SHARED2,0.018380193040923982 -1015768941,3096858,1247711,social,1,False,1,170,170,126971117,home,,30,SHARED2,0.018380193040923982 -1015769409,3096857,1247711,work,1,True,1,158,170,126971176,work,,9,BIKE,-1.551361834854566 -1015769413,3096857,1247711,work,1,False,1,170,158,126971176,home,,32,BIKE,-1.5954322251021176 -1015770001,3096859,1247711,school,1,True,1,160,170,126971250,school,,10,SCHOOLBUS,-1.106635583043288 -1015770005,3096859,1247711,school,1,False,1,170,160,126971250,home,,28,WALK,-3.5252223368334636 -1015770153,3096860,1247711,escort,1,True,2,197,170,126971269,shopping,9.340663518005645,10,SHARED3,-0.38521051166029324 -1015770154,3096860,1247711,escort,2,True,2,169,197,126971269,escort,,10,SHARED2,-0.5143323902010828 -1015770157,3096860,1247711,escort,1,False,1,170,169,126971269,home,,11,SHARED3,0.1252561224106634 -1015770281,3096860,1247711,othdiscr,1,True,1,165,170,126971285,othdiscr,,23,WALK,-1.0876453989916266 -1015770285,3096860,1247711,othdiscr,1,False,3,167,165,126971285,escort,9.513677266467274,27,WALK,-0.4332948711405552 -1015770286,3096860,1247711,othdiscr,2,False,3,163,167,126971285,escort,10.062635404175836,28,WALK,-0.5801291209667215 -1015770287,3096860,1247711,othdiscr,3,False,3,170,163,126971285,home,,29,WALK,-1.0333637435819232 -1015770481,3096861,1247711,escort,1,True,1,209,170,126971310,escort,,22,WALK,-1.572053385843179 -1015770485,3096861,1247711,escort,1,False,1,170,209,126971310,home,,22,WALK,-1.4752747100222015 -1015770489,3096861,1247711,escort,1,True,1,179,170,126971311,escort,,11,SHARED3,0.02214822606002906 -1015770493,3096861,1247711,escort,1,False,1,170,179,126971311,home,,12,SHARED3,0.023321787829616875 -1016930417,3100397,1250148,othdiscr,1,True,2,163,161,127116302,social,12.212521934851118,14,WALK,-0.17275023397856193 -1016930418,3100397,1250148,othdiscr,2,True,2,174,163,127116302,othdiscr,,14,DRIVEALONE,-0.1322078440586566 -1016930421,3100397,1250148,othdiscr,1,False,2,167,174,127116302,othmaint,12.07198234539738,16,WALK,-0.17069849305888207 -1016930422,3100397,1250148,othdiscr,2,False,2,161,167,127116302,home,,16,DRIVEALONE,-0.31739374427451184 -1018799409,3106095,1252993,univ,1,True,2,162,178,127349926,shopping,5.918653633947262,16,WALK,-0.5997271129518842 -1018799410,3106095,1252993,univ,2,True,2,176,162,127349926,univ,,16,WALK,-0.8486233827839652 -1018799413,3106095,1252993,univ,1,False,1,178,176,127349926,home,,36,WALK,-0.7449051070757122 -1018799537,3106096,1252993,eatout,1,True,1,215,178,127349942,eatout,,45,DRIVEALONE,-0.16384130314024997 -1018799541,3106096,1252993,eatout,1,False,1,178,215,127349942,home,,46,DRIVEALONE,-0.18543271322870275 -1018799561,3106096,1252993,escort,1,True,1,197,178,127349945,escort,,42,SHARED2,-0.09023792542355757 -1018799565,3106096,1252993,escort,1,False,1,178,197,127349945,home,,42,SHARED2,-0.08937318354292034 -1018799737,3106096,1252993,univ,1,True,3,162,178,127349967,eatout,7.30848970144714,8,WALK,-0.599726966285296 -1018799738,3106096,1252993,univ,2,True,3,163,162,127349967,escort,7.51338406324683,12,WALK,-0.6826425039403304 -1018799739,3106096,1252993,univ,3,True,3,175,163,127349967,univ,,25,WALK,-1.3004756476179076 -1018799741,3106096,1252993,univ,1,False,1,178,175,127349967,home,,40,WALK,-0.8656871872367368 -1020377481,3110906,1256006,work,1,True,1,174,173,127547185,work,,11,DRIVEALONE,0.015214549190366217 -1020377485,3110906,1256006,work,1,False,1,173,174,127547185,home,,33,DRIVEALONE,0.015220933756621136 -1020377745,3110907,1256006,school,1,True,1,154,173,127547218,school,,9,SHARED2,-0.18292193406062562 -1020377749,3110907,1256006,school,1,False,1,173,154,127547218,home,,26,SHARED2,-0.1788225634720692 -1020378073,3110908,1256006,school,1,True,1,173,173,127547259,school,,8,SCHOOLBUS,-0.6001706576288278 -1020378077,3110908,1256006,school,1,False,2,167,173,127547259,social,5.486995392285553,21,TAXI,-2.1471364017050782 -1020378078,3110908,1256006,school,2,False,2,173,167,127547259,home,,22,WALK,-2.1510598454458765 -1021352137,3113878,1258160,shopping,1,True,1,208,213,127669017,shopping,,31,SHARED2,0.2342801115423382 -1021352141,3113878,1258160,shopping,1,False,1,213,208,127669017,home,,33,SHARED2,0.21393799448899808 -1021352273,3113878,1258160,social,1,True,1,200,213,127669034,social,,33,WALK,-0.5375736471412192 -1021352277,3113878,1258160,social,1,False,1,213,200,127669034,home,,33,WALK,-0.515560757105025 -1021352297,3113878,1258160,work,1,True,1,149,213,127669037,work,,9,DRIVEALONE,-0.022708832857146595 -1021352301,3113878,1258160,work,1,False,1,213,149,127669037,home,,26,DRIVEALONE,-0.027889305701053062 -1021563089,3114521,1258716,othdiscr,1,True,1,184,198,127695386,othdiscr,,14,WALK,-2.200526355762286 -1021563093,3114521,1258716,othdiscr,1,False,1,198,184,127695386,home,,18,WALK,-2.2005370524197625 -1060133985,3232115,1302573,shopping,1,True,1,172,159,132516748,shopping,,16,TNC_SHARED,-0.3624498540609999 -1060133989,3232115,1302573,shopping,1,False,2,215,172,132516748,othdiscr,12.243546183861788,19,DRIVEALONE,0.13824405758422004 -1060133990,3232115,1302573,shopping,2,False,2,159,215,132516748,home,,19,DRIVEALONE,-0.4253274747222848 -1537045593,4686114,1905064,othdiscr,1,True,1,180,155,192130699,othdiscr,,27,WALK_PRM,-0.19429825736820502 -1537045597,4686114,1905064,othdiscr,1,False,1,155,180,192130699,home,,34,WALK_PRM,-0.32654811068511325 diff --git a/activitysim/examples/prototype_semcog/test/test_semcog.py b/activitysim/examples/prototype_semcog/test/test_semcog.py deleted file mode 100644 index e941238c3..000000000 --- a/activitysim/examples/prototype_semcog/test/test_semcog.py +++ /dev/null @@ -1,59 +0,0 @@ -# ActivitySim -# See full license in LICENSE.txt. -import os -import subprocess -import sys - -import pandas as pd -import pandas.testing as pdt -import pkg_resources - -from activitysim.core import inject - - -def teardown_function(func): - inject.clear_cache() - inject.reinject_decorated_tables() - - -def test_semcog(): - def example_path(dirname): - resource = os.path.join("examples", "prototype_semcog", dirname) - return pkg_resources.resource_filename("activitysim", resource) - - def test_path(dirname): - return os.path.join(os.path.dirname(__file__), dirname) - - def regress(): - regress_trips_df = pd.read_csv(test_path("regress/final_trips.csv")) - final_trips_df = pd.read_csv(test_path("output/final_trips.csv")) - - # person_id,household_id,tour_id,primary_purpose,trip_num,outbound,trip_count,purpose, - # destination,origin,destination_logsum,depart,trip_mode,mode_choice_logsum - # compare_cols = [] - pdt.assert_frame_equal(final_trips_df, regress_trips_df) - - file_path = os.path.join(os.path.dirname(__file__), "../simulation.py") - - run_args = [ - "-c", - test_path("configs"), - "-c", - example_path("configs"), - "-d", - example_path("data"), - "-o", - test_path("output"), - ] - - if os.environ.get("GITHUB_ACTIONS") == "true": - subprocess.run(["coverage", "run", "-a", file_path] + run_args, check=True) - else: - subprocess.run([sys.executable, file_path] + run_args, check=True) - - regress() - - -if __name__ == "__main__": - - test_semcog() diff --git a/activitysim/examples/test/__init__.py b/activitysim/examples/test/__init__.py new file mode 100644 index 000000000..d9431399d --- /dev/null +++ b/activitysim/examples/test/__init__.py @@ -0,0 +1 @@ +# tests for downloading external examples diff --git a/activitysim/examples/test/test_external_examples.py b/activitysim/examples/test/test_external_examples.py new file mode 100644 index 000000000..50d797bab --- /dev/null +++ b/activitysim/examples/test/test_external_examples.py @@ -0,0 +1,46 @@ +from __future__ import annotations + +import tempfile + +from activitysim.cli.create import sha256_checksum +from activitysim.examples.external import registered_external_example + + +def test_external_download_unpack(): + """Test the external download mechanism, including unpacking assets""" + t = tempfile.TemporaryDirectory() + p = registered_external_example("estimation_example", t.name) + assert p.joinpath("configs/settings.yaml").is_file() + assert p.joinpath("data_sf/survey_data").is_dir() + assert ( + sha256_checksum(p.joinpath("data_sf/households.csv")) + == "7e782bb59c05a79110503a5f8173e3470b3969a40451af0271795d0d23909069" + ) + assert ( + sha256_checksum(p.joinpath("data_sf/skims.omx")) + == "579d6007266db3b055d0f9e4814004f4d5ccfae27a36e40f4881e3662bc3d3f1" + ) + assert ( + sha256_checksum(p.joinpath("data_sf/land_use.csv")) + == "83e1051fffa23ad1d6ec339fcb675532f0782c94ddf76d54020631d73bfca12f" + ) + assert ( + sha256_checksum(p.joinpath("data_sf/persons.csv")) + == "e24db9ac6c20592e672cd9fc4e8160528fe38a7c16cc54fe4920c516a29d732c" + ) + assert ( + sha256_checksum(p.joinpath("data_sf/survey_data/survey_tours.csv")) + == "633f734d964dcf25a20a4032a859982d861e1d327443d4f1bac64af9ef69cc7a" + ) + + +def test_external_download_basic(): + """Test the external download mechanism, including unpacking assets""" + t = tempfile.TemporaryDirectory() + p = registered_external_example("prototype_mtc", t.name) + assert p.joinpath("configs/settings.yaml").is_file() + assert p.joinpath("test/prototype_mtc_reference_pipeline.zip").is_file() + assert ( + sha256_checksum(p.joinpath("test/prototype_mtc_reference_pipeline.zip")) + == "394e5b403d4c61d5214493cefe161432db840ba4967c23c999d914178d43a1f0" + ) diff --git a/activitysim/standalone/__init__.py b/activitysim/standalone/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/activitysim/standalone/compare.py b/activitysim/standalone/compare.py deleted file mode 100644 index 024c720a3..000000000 --- a/activitysim/standalone/compare.py +++ /dev/null @@ -1,319 +0,0 @@ -import os -import warnings - -import altair as alt -import pandas as pd - -from .data_dictionary import check_data_dictionary -from .pipeline import load_checkpointed_tables - - -def load_pipelines(pipelines, tables=None, checkpoint_name=None): - """ - Parameters - ---------- - pipelines : Dict[Str, Path-like] - Mapping run name to path of pipeline file. - checkpoint : str - Name of checkpoint to load for all pipelines - """ - return { - key: load_checkpointed_tables( - pth, - tables=tables, - checkpoint_name=checkpoint_name, - )[1] - for key, pth in pipelines.items() - } - - -def load_final_tables(output_dirs, tables=None, index_cols=None): - result = {} - for key, pth in output_dirs.items(): - if not os.path.exists(pth): - warnings.warn(f"{key} directory does not exist: {pth}") - continue - result[key] = {} - for tname, tfile in tables.items(): - tpath = os.path.join(pth, tfile) - kwargs = {} - if index_cols is not None and tname in index_cols: - kwargs["index_col"] = index_cols[tname] - if os.path.exists(tpath): - result[key][tname] = pd.read_csv(tpath, **kwargs) - if len(result[key]) == 0: - # no tables were loaded, delete the entire group - del result[key] - return result - - -def compare_trip_mode_choice( - tablesets, title="Trip Mode Choice", grouping="primary_purpose" -): - - d = {} - groupings = [ - grouping, - ] - - for key, tableset in tablesets.items(): - df = ( - tableset["trips"] - .groupby(groupings + ["trip_mode"]) - .size() - .rename("n_trips") - .reset_index() - ) - df["share_trips"] = df["n_trips"] / df.groupby(groupings)["n_trips"].transform( - "sum" - ) - d[key] = df - - all_d = pd.concat(d, names=["source"]).reset_index() - - selection = alt.selection_multi( - fields=["trip_mode"], - bind="legend", - ) - - fig = ( - alt.Chart(all_d) - .mark_bar() - .encode( - color="trip_mode", - y=alt.Y("source", axis=alt.Axis(grid=False, title=""), sort=None), - x=alt.X( - "share_trips", - axis=alt.Axis(grid=False, labels=False, title="Mode Share"), - ), - row="primary_purpose", - opacity=alt.condition(selection, alt.value(1), alt.value(0.2)), - tooltip=[ - "trip_mode", - "source", - "n_trips", - alt.Tooltip("share_trips:Q", format=".2%"), - ], - ) - .add_selection( - selection, - ) - ) - - if title: - fig = fig.properties(title=title).configure_title( - fontSize=20, - anchor="start", - color="black", - ) - - return fig - - -def compare_trip_distance( - tablesets, - skims, - dist_skim_name, - otaz_col="origin", - dtaz_col="destination", - time_col="depart", - dist_bins=20, - grouping="primary_purpose", - title="Trip Length Distribution", - max_dist=None, -): - groupings = [grouping] - if not isinstance(skims, dict): - skims = {i: skims for i in tablesets.keys()} - - distances = {} - for key, tableset in tablesets.items(): - skim_dist = skims[key][[dist_skim_name]] - - zone_ids = tableset["land_use"].index - if ( - zone_ids.is_monotonic_increasing - and zone_ids[-1] == len(zone_ids) + zone_ids[0] - 1 - ): - offset = zone_ids[0] - looks = [ - tableset["trips"][otaz_col].rename("otaz") - offset, - tableset["trips"][dtaz_col].rename("dtaz") - offset, - ] - else: - remapper = dict(zip(zone_ids, pd.RangeIndex(len(zone_ids)))) - looks = [ - tableset["trips"][otaz_col].rename("otaz").apply(remapper.get), - tableset["trips"][dtaz_col].rename("dtaz").apply(remapper.get), - ] - if "time_period" in skim_dist.dims: - looks.append( - tableset["trips"][time_col] - .apply(skims[key].attrs["time_period_imap"].get) - .rename("time_period"), - ) - look = pd.concat(looks, axis=1) - distances[key] = skims[key][[dist_skim_name]].iat.df(look) - - if dist_bins is not None: - result = pd.concat(distances, names=["source"]) - if max_dist is not None: - result = result[result <= max_dist] - result = pd.cut(result.iloc[:, 0], dist_bins).to_frame() - distances = {k: result.loc[k] for k in tablesets.keys()} - - data = {} - for key, tableset in tablesets.items(): - data[key] = tableset["trips"].assign(**{"distance": distances[key]}) - - d = {} - for key, dat in data.items(): - df = ( - dat.groupby(groupings + ["distance"]) - .size() - .rename("n_trips") - .unstack("distance") - .fillna(0) - .stack() - .rename("n_trips") - .reset_index() - ) - df["share_trips"] = df["n_trips"] / df.groupby(groupings)["n_trips"].transform( - "sum" - ) - d[key] = df - - all_d = pd.concat(d, names=["source"]).reset_index() - all_d["distance"] = all_d["distance"].apply(lambda x: x.mid) - - fig = ( - alt.Chart(all_d) - .mark_line( - interpolate="monotone", - ) - .encode( - color="source", - y=alt.Y("share_trips", axis=alt.Axis(grid=False, title="")), - x=alt.X("distance", axis=alt.Axis(grid=False, title="Distance")), - # opacity=alt.condition(selection, alt.value(1), alt.value(0.2)), - # tooltip = ['trip_mode', 'source', 'n_trips', alt.Tooltip('share_trips:Q', format='.2%')], - facet=alt.Facet(grouping, columns=3), - strokeWidth="source", - ) - .properties( - width=200, - height=120, - ) - ) - - if title: - fig = fig.properties(title=title).configure_title( - fontSize=20, - anchor="start", - color="black", - ) - - return fig - - -def compare_work_district( - tablesets, - district_id, - label="district", - hometaz_col="home_zone_id", - worktaz_col="workplace_zone_id", - data_dictionary=None, -): - data_dictionary = check_data_dictionary(data_dictionary) - - d = {} - h = f"home_{label}" - w = f"work_{label}" - - for key, tableset in tablesets.items(): - persons = tableset["persons"] - workers = persons[persons[worktaz_col] >= 0].copy() - district_map = tableset["land_use"][district_id] - # workers[f"home_{label}_"] = workers[hometaz_col].map(district_map) - # workers[f"work_{label}_"] = workers[worktaz_col].map(district_map) - home_district = workers[hometaz_col].map(district_map).rename(h) - work_district = workers[worktaz_col].map(district_map).rename(w) - df = ( - workers.groupby( - [home_district, work_district] - # [f"home_{label}_", f"work_{label}_"] - ) - .size() - .rename("n_workers") - ) - d[key] = df - - all_d = pd.concat(d, names=["source"]).reset_index() - - district_names = data_dictionary.get("land_use", {}).get(district_id, None) - if district_names is not None: - all_d[h] = all_d[h].map(district_names) - all_d[w] = all_d[w].map(district_names) - - selection = alt.selection_multi( - fields=[w], - bind="legend", - ) - - fig = ( - alt.Chart(all_d) - .mark_bar() - .encode( - color=f"{w}:N", - y=alt.Y("source", axis=alt.Axis(grid=False, title=""), sort=None), - x=alt.X("n_workers", axis=alt.Axis(grid=False)), - row=f"{h}:N", - opacity=alt.condition(selection, alt.value(1), alt.value(0.2)), - tooltip=[f"{h}:N", f"{w}:N", "source", "n_workers"], - ) - .add_selection( - selection, - ) - ) - - return fig - - -def compare_runtime(combo_timing_log): - df = pd.read_csv(combo_timing_log, index_col="model_name") - df1 = ( - df[["sharrow", "legacy"]] - .rename_axis(columns="source") - .unstack() - .rename("seconds") - .reset_index() - ) - c = alt.Chart( - df1, - height={"step": 20}, - ) - - result = c.mark_bar(yOffset=-3, size=6,).transform_filter( - (alt.datum.source == "legacy") - ).encode( - x=alt.X("seconds:Q", stack=None), - y=alt.Y("model_name", type="nominal", sort=None), - color="source", - tooltip=["source", "model_name", "seconds"], - ) + c.mark_bar( - yOffset=4, - size=6, - ).transform_filter( - (alt.datum.source == "sharrow") - ).encode( - x=alt.X("seconds:Q", stack=None), - y=alt.Y("model_name", type="nominal", sort=None), - color="source", - tooltip=["source", "model_name", "seconds"], - ) | alt.Chart( - df1 - ).mark_bar().encode( - color="source", x="source", y="sum(seconds)", tooltip=["source", "sum(seconds)"] - ) - - return result diff --git a/activitysim/standalone/pipeline.py b/activitysim/standalone/pipeline.py deleted file mode 100644 index 948914d10..000000000 --- a/activitysim/standalone/pipeline.py +++ /dev/null @@ -1,45 +0,0 @@ -import pandas as pd - -from ..core import pipeline - - -def load_checkpointed_tables( - pipeline_file_path, - tables=None, - checkpoint_name=None, -): - pipeline_store = pd.HDFStore(pipeline_file_path, mode="r") - - checkpoints = pipeline_store[pipeline.CHECKPOINT_TABLE_NAME] - - # checkpoint row as series - if checkpoint_name is None: - checkpoint = checkpoints.iloc[-1] - checkpoint_name = checkpoint.loc[pipeline.CHECKPOINT_NAME] - else: - i = checkpoints.set_index(pipeline.CHECKPOINT_NAME).index.get_loc( - checkpoint_name - ) - checkpoint = checkpoints.iloc[i] - - # series with table name as index and checkpoint_name as value - checkpoint_tables = checkpoint[~checkpoint.index.isin(pipeline.NON_TABLE_COLUMNS)] - - # omit dropped tables with empty checkpoint name - checkpoint_tables = checkpoint_tables[checkpoint_tables != ""] - - # hdf5 key is / - checkpoint_tables = { - table_name: pipeline.pipeline_table_key(table_name, checkpoint_name) - for table_name, checkpoint_name in checkpoint_tables.items() - } - - data = {} - for table_name, table_key in checkpoint_tables.items(): - if tables is None or table_name in tables: - data[table_name] = pipeline_store[table_key] - - pipeline_store.close() - - # checkpoint name and series mapping table name to hdf5 key for tables in that checkpoint - return checkpoint_name, data diff --git a/activitysim/standalone/render.py b/activitysim/standalone/render.py deleted file mode 100644 index ad672a7d1..000000000 --- a/activitysim/standalone/render.py +++ /dev/null @@ -1,64 +0,0 @@ -import logging -import os -import textwrap -from contextlib import contextmanager -from pathlib import Path - -import nbclient -import nbformat as nbf -from nbconvert import HTMLExporter -from xmle import NumberedCaption, Reporter - -from .. import __version__ - -# from jupyter_contrib_nbextensions.nbconvert_support import TocExporter # problematic - - -@contextmanager -def chdir(path: Path): - """ - Sets the cwd within the context - - Args: - path (Path): The path to the cwd - - Yields: - None - """ - - cwd = Path().absolute() - try: - os.chdir(path) - yield - finally: - os.chdir(cwd) - - -def render_notebook(nb_filename, cellcontent): - nb_filename = os.path.splitext(nb_filename)[0] - nb = nbf.v4.new_notebook() - - cells = [] - for c in cellcontent: - c = textwrap.dedent(c).strip() - if c[:4] == "[md]": - cells.append(nbf.v4.new_markdown_cell(c[4:])) - else: - cells.append(nbf.v4.new_code_cell(c)) - nb["cells"] = cells - nbf.write(nb, nb_filename + ".ipynb") - - nb = nbclient.execute(nb, cwd=os.path.dirname(nb_filename)) - nbf.write(nb, nb_filename + "-e.ipynb") - - html_exporter = HTMLExporter( - embed_images=True, - exclude_input_prompt=True, - exclude_output_prompt=True, - exclude_input=True, - # template_name = 'classic' - ) - (body, resources) = html_exporter.from_notebook_node(nb) - - with open(nb_filename + ".html", "w") as f: - f.write(body) diff --git a/activitysim/standalone/skims.py b/activitysim/standalone/skims.py deleted file mode 100644 index 1065383c5..000000000 --- a/activitysim/standalone/skims.py +++ /dev/null @@ -1,64 +0,0 @@ -import glob -import logging -import os - -import numpy as np -import openmatrix -import sharrow as sh -import yaml - -logger = logging.getLogger(__name__) - - -def load_skims( - network_los_settings_filename, - data_dir, -): - with open(network_los_settings_filename, "rt") as f: - settings = yaml.safe_load(f) - - skim_settings = settings["taz_skims"] - if isinstance(skim_settings, str): - skims_omx_fileglob = skim_settings - else: - skims_omx_fileglob = skim_settings.get("omx", None) - skims_omx_fileglob = skim_settings.get("files", skims_omx_fileglob) - skims_filenames = glob.glob(os.path.join(data_dir, skims_omx_fileglob)) - index_names = ("otaz", "dtaz", "time_period") - indexes = None - time_period_breaks = settings.get("skim_time_periods", {}).get("periods") - time_periods = settings.get("skim_time_periods", {}).get("labels") - time_period_sep = "__" - - time_window = settings.get("skim_time_periods", {}).get("time_window") - period_minutes = settings.get("skim_time_periods", {}).get("period_minutes") - n_periods = int(time_window / period_minutes) - - tp_map = {} - tp_imap = {} - label = time_periods[0] - i = 0 - for t in range(n_periods): - if t in time_period_breaks: - i = time_period_breaks.index(t) - label = time_periods[i] - tp_map[t + 1] = label - tp_imap[t + 1] = i - - omxs = [ - openmatrix.open_file(skims_filename, mode="r") - for skims_filename in skims_filenames - ] - if isinstance(time_periods, (list, tuple)): - time_periods = np.asarray(time_periods) - result = sh.dataset.from_omx_3d( - omxs, - index_names=index_names, - indexes=indexes, - time_periods=time_periods, - time_period_sep=time_period_sep, - ) - result.attrs["time_period_map"] = tp_map - result.attrs["time_period_imap"] = tp_imap - - return result diff --git a/activitysim/workflows/steps/chunk_sizing.py b/activitysim/workflows/steps/chunk_sizing.py index ee0ceca69..f19c19ab3 100644 --- a/activitysim/workflows/steps/chunk_sizing.py +++ b/activitysim/workflows/steps/chunk_sizing.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import warnings import psutil @@ -43,7 +45,8 @@ def chunk_sizing( if chunk_size > total_ram: warnings.warn( f"chunk size of {chunk_size/ 2**30:.2f}GB exceeds " - f"total RAM of {total_ram/ 2**30:.2f}" + f"total RAM of {total_ram/ 2**30:.2f}", + stacklevel=2, ) out = dict(chunk_size=chunk_size) diff --git a/activitysim/workflows/steps/contrast/contrast_setup.py b/activitysim/workflows/steps/contrast/contrast_setup.py index fd91a814c..077abbdee 100644 --- a/activitysim/workflows/steps/contrast/contrast_setup.py +++ b/activitysim/workflows/steps/contrast/contrast_setup.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import multiprocessing import time @@ -19,6 +21,7 @@ def contrast_setup( multiprocess=0, chunk_training_mode=None, main_n_households=None, + persist_sharrow_cache=False, ): reset_progress_step(description="Constrast Setup") if tag is None: @@ -30,6 +33,8 @@ def contrast_setup( flags.append(f" -r {resume_after}") if fast: flags.append("--fast") + if persist_sharrow_cache: + flags.append("--persist-sharrow-cache") out = dict(tag=tag, contrast=contrast, flags=" ".join(flags)) if isinstance(reference, str) and "." in reference: diff --git a/activitysim/workflows/steps/contrast/district_to_district.py b/activitysim/workflows/steps/contrast/district_to_district.py index 93358ea78..6c978adec 100644 --- a/activitysim/workflows/steps/contrast/district_to_district.py +++ b/activitysim/workflows/steps/contrast/district_to_district.py @@ -1,12 +1,12 @@ +from __future__ import annotations + import logging import altair as alt import pandas as pd -from pypyr.context import Context -from ....standalone.data_dictionary import check_data_dictionary -from ..progression import reset_progress_step -from ..wrapping import workstep +from activitysim.workflows.steps.wrapping import workstep +from activitysim.workflows.utils.data_dictionary import check_data_dictionary logger = logging.getLogger(__name__) diff --git a/activitysim/workflows/steps/contrast/load_skims.py b/activitysim/workflows/steps/contrast/load_skims.py index 85071b8f7..f5cdcc048 100644 --- a/activitysim/workflows/steps/contrast/load_skims.py +++ b/activitysim/workflows/steps/contrast/load_skims.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import glob import logging import os @@ -9,9 +11,8 @@ import sharrow as sh import yaml -from activitysim.standalone.utils import chdir - -from ..wrapping import workstep +from activitysim.workflows.steps.wrapping import workstep +from activitysim.workflows.utils import chdir logger = logging.getLogger(__name__) diff --git a/activitysim/workflows/steps/contrast/load_tables.py b/activitysim/workflows/steps/contrast/load_tables.py index 16e33920e..b7c5d0e0e 100644 --- a/activitysim/workflows/steps/contrast/load_tables.py +++ b/activitysim/workflows/steps/contrast/load_tables.py @@ -1,33 +1,32 @@ +from __future__ import annotations + import os -from pathlib import Path +import warnings -from pypyr.context import Context +import pandas as pd -from activitysim.standalone.compare import load_final_tables -from activitysim.standalone.utils import chdir +from activitysim.workflows.steps.wrapping import workstep +from activitysim.workflows.utils import chdir -from ..error_handler import error_logging -from ..progression import reset_progress_step -from ..wrapping import workstep -# databases = context.get_formatted('databases') -# # the various different output directories to process, for example: -# # { -# # "sharrow": "output-sharrow", -# # "legacy": "output-legacy", -# # } -# -# tables = context.get_formatted('tables') -# # the various tables in the output directories to read, for example: -# # trips: -# # filename: final_trips.csv -# # index_col: trip_id -# # persons: -# # filename: final_persons.csv -# # index_col: person_id -# # land_use: -# # filename: final_land_use.csv -# # index_col: zone_id +def load_final_tables(output_dirs, tables=None, index_cols=None): + result = {} + for key, pth in output_dirs.items(): + if not os.path.exists(pth): + warnings.warn(f"{key} directory does not exist: {pth}") + continue + result[key] = {} + for tname, tfile in tables.items(): + tpath = os.path.join(pth, tfile) + kwargs = {} + if index_cols is not None and tname in index_cols: + kwargs["index_col"] = index_cols[tname] + if os.path.exists(tpath): + result[key][tname] = pd.read_csv(tpath, **kwargs) + if len(result[key]) == 0: + # no tables were loaded, delete the entire group + del result[key] + return result @workstep("tablesets") diff --git a/activitysim/workflows/steps/copy_files.py b/activitysim/workflows/steps/copy_files.py index e9ee247af..be8b52ce2 100644 --- a/activitysim/workflows/steps/copy_files.py +++ b/activitysim/workflows/steps/copy_files.py @@ -1,14 +1,10 @@ +from __future__ import annotations + import glob import os import shutil -from pypyr.errors import KeyNotInContextError -from pypyr.steps.fetchyaml import run_step as _fetch -from pypyr.steps.filewriteyaml import run_step as _write -from pypyr.steps.py import run_step as _run_step - -from .progression import progress, progress_overall, progress_step -from .wrapping import workstep +from activitysim.workflows.steps.wrapping import workstep @workstep diff --git a/activitysim/workflows/steps/create.py b/activitysim/workflows/steps/create.py index 70857240c..a16c2d4c7 100644 --- a/activitysim/workflows/steps/create.py +++ b/activitysim/workflows/steps/create.py @@ -1,9 +1,11 @@ +from __future__ import annotations + import os import shlex -from ...standalone.utils import chdir -from .progression import reset_progress_step -from .wrapping import workstep +from activitysim.workflows.steps.progression import reset_progress_step +from activitysim.workflows.steps.wrapping import workstep +from activitysim.workflows.utils import chdir @workstep diff --git a/activitysim/workflows/steps/error_handler.py b/activitysim/workflows/steps/error_handler.py index 97e85bb61..367996750 100644 --- a/activitysim/workflows/steps/error_handler.py +++ b/activitysim/workflows/steps/error_handler.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import logging @@ -8,7 +10,7 @@ def wrapper(*args, **kwargs): except Exception as err: logging.error(f"===== ERROR IN {func.__name__} =====") logging.exception(f"{err}") - logging.error(f"===== / =====") + logging.error("===== / =====") raise return wrapper diff --git a/activitysim/workflows/steps/install_env.py b/activitysim/workflows/steps/install_env.py index 0a30d53c8..d2cd21332 100644 --- a/activitysim/workflows/steps/install_env.py +++ b/activitysim/workflows/steps/install_env.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import logging import os.path import subprocess @@ -15,6 +17,7 @@ def install_env( asim_version="1.0.4", cwd=None, label=None, + python_version="3.9", ): if os.path.exists(env_prefix): return 0 @@ -26,7 +29,7 @@ def install_env( "create", "--prefix", env_prefix, - f"python=3.9", + f"python={python_version}", f"activitysim={asim_version}", "-c", "conda-forge", diff --git a/activitysim/workflows/steps/main.py b/activitysim/workflows/steps/main.py index 9fd7c7f5c..aa4e0d528 100644 --- a/activitysim/workflows/steps/main.py +++ b/activitysim/workflows/steps/main.py @@ -1,4 +1,6 @@ """Naive custom loader without any error handling.""" +from __future__ import annotations + import os import signal import sys @@ -59,7 +61,7 @@ def main(args): from pypyr.cli import get_args from pypyr.config import config except ImportError: - raise ImportError("activitysim.workflows requires pypyr") + raise ImportError("activitysim.workflows requires pypyr") from None parsed_args = get_args(args) diff --git a/activitysim/workflows/steps/memory_stress_test.py b/activitysim/workflows/steps/memory_stress_test.py index 0fc42d7c2..371d5104c 100644 --- a/activitysim/workflows/steps/memory_stress_test.py +++ b/activitysim/workflows/steps/memory_stress_test.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import logging import os import time @@ -5,8 +7,8 @@ import numpy as np import psutil -from ...core.util import si_units -from .wrapping import workstep +from activitysim.core.util import si_units +from activitysim.workflows.steps.wrapping import workstep def ping_mem(pid=None): @@ -31,5 +33,5 @@ def memory_stress_test(n=37): logging.critical(f"ping_mem = {ping_mem()}") time.sleep(5.0) logging.critical(f"ping_mem = {ping_mem()}") - logging.critical(f"bye") + logging.critical("bye") return {} diff --git a/activitysim/workflows/steps/run.py b/activitysim/workflows/steps/run.py index bce4d1d30..a795dc612 100644 --- a/activitysim/workflows/steps/run.py +++ b/activitysim/workflows/steps/run.py @@ -1,10 +1,12 @@ +from __future__ import annotations + import shlex from pypyr.errors import KeyNotInContextError -from ...standalone.utils import chdir -from .progression import reset_progress_step -from .wrapping import workstep +from activitysim.workflows.steps.progression import reset_progress_step +from activitysim.workflows.steps.wrapping import workstep +from activitysim.workflows.utils import chdir def _get_formatted(context, key, default): @@ -60,18 +62,8 @@ def run_activitysim( reset_progress_step(description=f"{label}", prefix="[bold green]") - # Clear all saved state from ORCA - import orca - - orca.clear_cache() - orca.clear_all() - - # Re-inject everything from ActivitySim - from ...core.inject import reinject_decorated_tables - - reinject_decorated_tables(steps=True) - # Call the run program inside this process + import activitysim.abm # noqa: F401 from activitysim.cli.main import prog with chdir(cwd): diff --git a/activitysim/workflows/steps/run_subprocess.py b/activitysim/workflows/steps/run_subprocess.py index 35db46347..fea3a86ae 100644 --- a/activitysim/workflows/steps/run_subprocess.py +++ b/activitysim/workflows/steps/run_subprocess.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import logging import os import subprocess @@ -61,6 +63,7 @@ def run_activitysim_as_subprocess( conda_prefix=None, single_thread=True, multi_thread=None, + persist_sharrow_cache=False, ) -> None: if isinstance(pre_config_dirs, str): pre_config_dirs = [pre_config_dirs] @@ -81,6 +84,8 @@ def run_activitysim_as_subprocess( flags.append(f" -r {resume_after}") if fast: flags.append("--fast") + if persist_sharrow_cache: + flags.append("--persist-sharrow-cache") if settings_file: flags.append(f"-s {settings_file}") flags = " ".join(flags) @@ -97,7 +102,7 @@ def run_activitysim_as_subprocess( # args = shlex.split(args) env = os.environ.copy() - pythonpath = env.pop("PYTHONPATH", None) + _pythonpath = env.pop("PYTHONPATH", None) if single_thread: env["MKL_NUM_THREADS"] = "1" @@ -115,18 +120,6 @@ def run_activitysim_as_subprocess( env["VECLIB_MAXIMUM_THREADS"] = str(multi_thread.get("VECLIB", 1)) env["NUMEXPR_NUM_THREADS"] = str(multi_thread.get("NUMEXPR", 1)) - # if pythonpath: - # print(f"removed PYTHONPATH from ENV: {pythonpath}") - # else: - # print(f"no removed PYTHONPATH from ENV!") - # - # for k, v in env.items(): - # print(f" - {k}: {v}") - - # if conda_prefix is not None: - # args = ["conda", "init", "bash", "&&", 'conda', 'activate', conda_prefix, '&&'] + list(args) - # args = ['conda', 'run', '-p', conda_prefix] + list(args) - if conda_prefix: conda_prefix_1 = os.environ.get("CONDA_PREFIX_1", None) if conda_prefix_1 is None: diff --git a/activitysim/workflows/steps/update_yaml.py b/activitysim/workflows/steps/update_yaml.py index 079eb878f..ae6b35e5f 100644 --- a/activitysim/workflows/steps/update_yaml.py +++ b/activitysim/workflows/steps/update_yaml.py @@ -1,9 +1,8 @@ -from pypyr.errors import KeyNotInContextError +from __future__ import annotations + +import yaml from pypyr.steps.fetchyaml import run_step as _fetch from pypyr.steps.filewriteyaml import run_step as _write -from pypyr.steps.py import run_step as _run_step - -from .progression import progress, progress_overall, progress_step def run_step(context): @@ -48,3 +47,11 @@ def run_step(context): "encoding": fetch_yaml_input.get("encoding", None), } _write(context) + + +def update_yaml(path, payload): + with open(path) as f: + content = yaml.safe_load(f) + content.update(payload) + with open(path, "w") as f: + yaml.safe_dump(content, f) diff --git a/activitysim/workflows/steps/wrapping.py b/activitysim/workflows/steps/wrapping.py index ca3f48c8b..e7bee52d0 100644 --- a/activitysim/workflows/steps/wrapping.py +++ b/activitysim/workflows/steps/wrapping.py @@ -1,13 +1,15 @@ +from __future__ import annotations + import importlib import logging +from collections.abc import Mapping from inspect import getfullargspec -from typing import Mapping from pypyr.context import Context -from . import get_formatted_or_default -from .error_handler import error_logging -from .progression import reset_progress_step +from activitysim.workflows.steps import get_formatted_or_default +from activitysim.workflows.steps.error_handler import error_logging +from activitysim.workflows.steps.progression import reset_progress_step logger = logging.getLogger(__name__) @@ -88,7 +90,7 @@ def __new__(cls, wrapped_func=None, *, returns_names=None, updates_context=False wrapped_func : Callable The function being decorated. """ - if isinstance(wrapped_func, (str, tuple, list)): + if isinstance(wrapped_func, str | tuple | list): # the returns_names are provided instead of the wrapped func returns_names = wrapped_func wrapped_func = None @@ -117,15 +119,19 @@ def __call__(self, wrapped_func): returns_names = (returns_names,) def run_step(context: Context = None) -> None: - caption = get_formatted_or_default(context, "caption", None) progress_tag = get_formatted_or_default(context, "progress_tag", caption) if progress_tag is not None: reset_progress_step(description=progress_tag) return_type = _annotations.get("return", "") - _updates_context = updates_context or return_type in {dict, Context} - if return_type not in {None, dict, Context}: + _updates_context = updates_context or return_type in { + dict, + Context, + "dict", + "Context", + } + if return_type not in {None, dict, Context, "None", "dict", "Context"}: if returns_names is None and not _updates_context: context.assert_key_has_value( key="report", caller=wrapped_func.__module__ diff --git a/activitysim/standalone/utils.py b/activitysim/workflows/utils/__init__.py similarity index 91% rename from activitysim/standalone/utils.py rename to activitysim/workflows/utils/__init__.py index 7ba7c4ca4..ee86b6ad1 100644 --- a/activitysim/standalone/utils.py +++ b/activitysim/workflows/utils/__init__.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import os from contextlib import contextmanager from pathlib import Path diff --git a/activitysim/standalone/data_dictionary.py b/activitysim/workflows/utils/data_dictionary.py similarity index 87% rename from activitysim/standalone/data_dictionary.py rename to activitysim/workflows/utils/data_dictionary.py index a4fc9e4b7..0714f2ab0 100644 --- a/activitysim/standalone/data_dictionary.py +++ b/activitysim/workflows/utils/data_dictionary.py @@ -1,6 +1,8 @@ +from __future__ import annotations + import os.path import warnings -from typing import Mapping +from collections.abc import Mapping import yaml @@ -17,9 +19,9 @@ def check_data_dictionary(input): return {} elif isinstance(input, str): if not os.path.exists(input): - warnings.warn(f"data dictionary file {input} is missing") + warnings.warn(f"data dictionary file {input} is missing", stacklevel=2) return {} - with open(input, "rt") as f: + with open(input) as f: content = yaml.safe_load(f) else: content = input diff --git a/activitysim/workflows/v1.3/_contrast_runner.yaml b/activitysim/workflows/v1.3/_contrast_runner.yaml new file mode 100644 index 000000000..942677dc8 --- /dev/null +++ b/activitysim/workflows/v1.3/_contrast_runner.yaml @@ -0,0 +1,712 @@ +# activitysim workflow example_runner example_name=prototype_mtc + +context_parser: pypyr.parser.keyvaluepairs + +on_failure: +- name: activitysim.workflows.steps.py + in: + py: | + import time + print("FAILURE", time.strftime("%Y-%m-%d %I:%M:%S%p")) + +steps: + +- description: Setting default workflow parameters + name: pypyr.steps.default + in: + defaults: + example_name: prototype_mtc + workflow_name: sharrow-contrast + workspace: workspace + multiprocess: 0 + chunk_size: 0 + create: True + compile: True + sharrow: True + legacy: True + reference: True + reference_asim_version: "1.2.0" + reference_python_version: "3.9" + tag: + resume_after: + fast: False + compile_n_households: 1000 + main_n_households: 100000 + config_dirs: configs + data_dir: data + ext_dirs: + instrument: False + memory_profile: False + trace_hh_id: + trace_od: + chunk_method: hybrid_uss + chunk_training_mode: disabled + machine_name: + disable_zarr: False + settings_file: settings.yaml + report_skip: [] + copy_report_to: + +- description: Ensure integer types for numbers + name: activitysim.workflows.steps.py + in: + label: Ensure integer types for numbers + py: | + def int_or_none(i): + return int(i) if i is not None else i + save( + compile_n_households=int_or_none(compile_n_households), + main_n_households=int_or_none(main_n_households), + multiprocess=int_or_none(multiprocess), + chunk_size=int_or_none(chunk_size), + ) + +- name: activitysim.workflows.steps.title + in: + label: "activitysim workflow {workflow_name}" + formatting: bold cyan + +- name: activitysim.workflows.steps.py + in: + label: Make {workspace} directory if it does not exist + py: | + import os + os.makedirs(f"{workspace}", exist_ok=True) + +- name: activitysim.workflows.steps.py + in: + label: Detect if debugging + py: | + def is_debug(): + import sys + gettrace = getattr(sys, 'gettrace', None) + if gettrace is None: + return False + else: + v = gettrace() + if v is None: + return False + else: + return True + should_swallow_errors = not is_debug() + save('should_swallow_errors') + +- activitysim.workflows.steps.contrast.contrast_setup + +- name: activitysim.workflows.steps.create + run: '{create}' + in: + destination: "{workspace}" + +- activitysim.workflows.steps.contrast.directory_prep + +- name: pypyr.steps.call + run: '{compile}' + in: + call: run-compile + swallow: False + +- name: pypyr.steps.call + run: '{sharrow}' + in: + call: run-sharrow + swallow: '{should_swallow_errors}' + +- name: pypyr.steps.call + run: '{legacy}' + in: + call: run-legacy + swallow: '{should_swallow_errors}' + +- name: pypyr.steps.call + run: '{reference}' + in: + call: run-reference + swallow: '{should_swallow_errors}' + +- activitysim.workflows.steps.contrast.composite_log + +- name: pypyr.steps.call + in: + call: + groups: reporting + success: report-save + failure: report-save + swallow: False + +################################################################################ +run-compile: + # This step group runs activitysim with a (usually) smaller sample of + # household, to generate the compiled numba code for the local machine + +- description: write configs_sh_compile + name: pypyr.steps.filewriteyaml + in: + fileWriteYaml: + path: "{workspace}/{example_name}/configs_sh_compile/{settings_file}" + payload: + inherit_settings: True + sharrow: test + chunk_training_mode: disabled + households_sample_size: '{compile_n_households}' + # cache_dir: cache_sharrow + trace_hh_id: '{trace_hh_id}' + trace_od: '{trace_od}' + instrument: '{instrument}' + disable_zarr: '{disable_zarr}' + multiprocess: False + recode_pipeline_columns: True + +- description: Run activitysim to compile and test sharrow-enabled model + name: activitysim.workflows.steps.run_subprocess + in: + pre_config_dirs: configs_sh_compile + output_dir: 'output-{tag}/output-compile' + cwd: "{workspace}/{example_name}" + label: "{example_name} -- sharrow compile" + persist_sharrow_cache: True + + +################################################################################ +run-sharrow: + +- description: write configs_sh + name: pypyr.steps.filewriteyaml + in: + fileWriteYaml: + path: "{workspace}/{example_name}/configs_sh/{settings_file}" + payload: + inherit_settings: True + sharrow: require + # cache_dir: cache_sharrow + households_sample_size: '{main_n_households}' + trace_hh_id: '{trace_hh_id}' + trace_od: '{trace_od}' + instrument: '{instrument}' + memory_profile: '{memory_profile}' + chunk_size: '{chunk_size}' + num_processes: '{num_processes}' + multiprocess: '{is_multiprocess}' + chunk_method: '{chunk_method}' + chunk_training_mode: '{chunk_training_mode}' + disable_zarr: '{disable_zarr}' + recode_pipeline_columns: True + +- description: Run activitysim to evaluate sharrow-enabled model + name: activitysim.workflows.steps.run_subprocess + in: + pre_config_dirs: configs_sh + output_dir: 'output-{tag}/output-sharrow' + cwd: "{workspace}/{example_name}" + label: "{example_name} -- sharrow run" + persist_sharrow_cache: True + +################################################################################ +run-legacy: + +- description: write.configs_legacy + name: pypyr.steps.filewriteyaml + in: + fileWriteYaml: + path: "{workspace}/{example_name}/configs_legacy/{settings_file}" + payload: + inherit_settings: True + recode_pipeline_columns: False + cache_dir: cache_legacy + households_sample_size: '{main_n_households}' + trace_hh_id: '{trace_hh_id}' + trace_od: '{trace_od}' + instrument: '{instrument}' + memory_profile: '{memory_profile}' + chunk_size: '{chunk_size}' + num_processes: '{num_processes}' + multiprocess: '{is_multiprocess}' + chunk_method: '{chunk_method}' + chunk_training_mode: '{chunk_training_mode}' + +- description: Run activitysim to evaluate legacy model + name: activitysim.workflows.steps.run_subprocess + in: + pre_config_dirs: configs_legacy + output_dir: 'output-{tag}/output-legacy' + cwd: "{workspace}/{example_name}" + label: "{example_name} -- legacy run" + + +################################################################################ +run-reference: + +- description: Install a reference environment + name: activitysim.workflows.steps.install_env + in: + label: "{example_name} -- install ref env {reference_asim_version}" + env_prefix: "{workspace}/env/asim-ref-{reference_asim_version}" + asim_version: '{reference_asim_version}' + python_version: '{reference_python_version}' + +- name: activitysim.workflows.steps.py + in: + label: Identify first config dir + py: | + if isinstance(config_dirs, str): + first_config_dir = config_dirs + else: + first_config_dir = config_dirs[0] + save('first_config_dir') + +- description: Copy required reference settings + name: activitysim.workflows.steps.copy_files + in: + source_glob: + - "{workspace}/{example_name}/{first_config_dir}/legacy-{reference_asim_version}/*.yaml" + - "{workspace}/{example_name}/{first_config_dir}/legacy-{reference_asim_version}/*.csv" + dest_dir: "{workspace}/{example_name}/configs_reference" + +- name: activitysim.workflows.steps.py + in: + label: Allow resume_after in ref only if pipeline exists + # Older versions of ActivitySim choke on resume_after if pipeline is missing. + py: | + import os + ref_pipeline = f"{workspace}/{example_name}/output-{tag}/output-reference/pipeline.h5" + if os.path.exists(ref_pipeline): + resume_after_ref = resume_after + else: + resume_after_ref = None + save('resume_after_ref') + +- description: write.configs_reference + name: activitysim.workflows.steps.update_yaml + in: + updateYaml: + path: "{workspace}/{example_name}/configs_reference/{settings_file}" + payload: + inherit_settings: True + households_sample_size: '{main_n_households}' + trace_hh_id: '{trace_hh_id}' + trace_od: '{trace_od}' + resume_after: '{resume_after_ref}' + chunk_size: '{chunk_size}' + num_processes: '{num_processes}' + multiprocess: '{is_multiprocess}' + chunk_method: '{chunk_method}' + chunk_training_mode: '{chunk_training_mode}' + +- description: Run activitysim to evaluate reference model + name: activitysim.workflows.steps.run_subprocess + in: + resume_after: + pre_config_dirs: configs_reference + output_dir: 'output-{tag}/output-reference' + cwd: "{workspace}/{example_name}" + label: "{example_name} -- reference run" + conda_prefix: "../env/asim-ref-{reference_asim_version}" + + +################################################################################ +reporting: + +- name: activitysim.workflows.steps.contrast.load_tables + in: + common_output_directory: "{workspace}/{example_name}/output-{tag}" + databases: + sharrow: "output-sharrow" + legacy: "output-legacy" + reference: "output-reference" + tables: + households: + filename: final_households.csv + index_col: household_id + persons: + filename: final_persons.csv + index_col: person_id + tours: + filename: final_tours.csv + index_col: tour_id + trips: + filename: final_trips.csv + index_col: trip_id + land_use: + filename: final_land_use.csv + index_col: zone_id + +- name: activitysim.workflows.steps.contrast.load_skims + in: + common_directory: "{workspace}/{example_name}" + +- name: activitysim.workflows.steps.reporting.init_report + in: + title: "{example_name} report" + common_directory: "{workspace}/{example_name}" + +- name: activitysim.workflows.steps.reporting.machine_info + in: + caption: Machine Info + +- name: activitysim.workflows.steps.reporting.settings + in: + caption: Settings + names: + - disable_zarr + - resume_after + - instrument + - memory_profile + - fast + - chunk_method + - chunk_training_mode + - chunk_size + - multiprocess + + +#### Runtime and Data Inventory #### + +- name: activitysim.workflows.steps.contrast.runtime + in: + caption: Model Runtime + include_runs: + - reference + - legacy + - sharrow + +- name: activitysim.workflows.steps.reporting.section_title + in: + title: Memory Usage + +- name: activitysim.workflows.steps.contrast.memory_use + in: + caption: USS + caption_level: 3 + memory_measure: uss + include_runs: + - reference + - legacy + - sharrow + +- name: activitysim.workflows.steps.contrast.memory_use + in: + caption: RSS + caption_level: 3 + memory_measure: rss + include_runs: + - reference + - legacy + - sharrow + +- name: activitysim.workflows.steps.contrast.memory_use + in: + caption: Full RSS + caption_level: 3 + memory_measure: full_rss + include_runs: + - reference + - legacy + - sharrow + +- name: activitysim.workflows.steps.contrast.memory_use_peak + in: + caption: Peak RSS by Component + caption_level: 3 + memory_measure: rss + include_runs: + - reference + - legacy + - sharrow + +- name: activitysim.workflows.steps.contrast.memory_use_peak + in: + caption: Peak USS by Component + caption_level: 3 + memory_measure: uss + include_runs: + - reference + - legacy + - sharrow + + +- name: activitysim.workflows.steps.contrast.data_inventory + + +#### Workplace Location #### + +- name: activitysim.workflows.steps.reporting.load_data_dictionary + in: + cwd: "{workspace}/{example_name}" + +- name: pypyr.steps.default + in: + defaults: + workplace_zone_agg: + +- name: activitysim.workflows.steps.reporting.section_title + skip: !py "'work location' in report_skip" + run: '{workplace_zone_agg}' + in: + title: Workplace Location + +- name: activitysim.workflows.steps.contrast.district_to_district + skip: !py "'work location' in report_skip" + run: '{workplace_zone_agg}' + in: + tablename: persons + caption: '{workplace_zone_agg[caption]}' + caption_level: 3 + district_id: '{workplace_zone_agg[district_id]}' + orig_label: home district + dest_label: work district + orig_col: home_zone_id + dest_col: workplace_zone_id + filter: workplace_zone_id >= 0 + size_label: n_workers + +- name: activitysim.workflows.steps.contrast.transform_data + skip: !py "household_income is None" + in: + tablename: households + column: '{household_income}' + out: income_tertile + qcut: + q: 3 + labels: + - low + - mid + - high + +- name: activitysim.workflows.steps.contrast.join_table_data + skip: !py "household_income is None" + in: + caption: Join Income to Persons + tablename: persons + from_tablename: households + columns: income_tertile + on: household_id + +- name: activitysim.workflows.steps.contrast.trip_distance + skip: !py "'work location' in report_skip" + in: + caption: Workplace Distance by Income + caption_level: 3 + dist_bins: 20 + dist_skim_name: 'distance_to_work' + tablename: persons + grouping: income_tertile + +- name: activitysim.workflows.steps.contrast.trip_distance + skip: !py "'school location' in report_skip" + in: + caption: School Distance by Income + caption_level: 3 + dist_bins: 20 + dist_skim_name: 'distance_to_school' + tablename: persons + grouping: income_tertile + +#### Auto Ownership #### + +- name: activitysim.workflows.steps.reporting.section_title + skip: !py "'auto ownership' in report_skip" + in: + title: Auto Ownership + +- name: activitysim.workflows.steps.contrast.transform_data + skip: !py "'auto ownership' in report_skip" + in: + tablename: households + column: hhsize + out: hhsize_to5 + clip: + upper: 5 + +- name: activitysim.workflows.steps.contrast.nominal_choice + skip: !py "'auto ownership' in report_skip" + in: + caption: Household Auto Ownership Counts by Household Size + caption_level: 3 + tablename: households + nominal_col: auto_ownership + row_grouping: + field: hhsize_to5 + title: Household Size (up to 5) + col_grouping: + field: income_tertile + sort: [low, mid, high] + title: Income Tertile + ordinal: true + plot_type: count + axis_label: "# of Households" + +- name: activitysim.workflows.steps.contrast.nominal_choice + skip: !py "'auto ownership' in report_skip" + in: + caption: Household Auto Ownership Shares by Household Size + caption_level: 3 + tablename: households + nominal_col: auto_ownership + row_grouping: + field: hhsize_to5 + title: Household Size (up to 5) + col_grouping: + field: income_tertile + sort: [low, mid, high] + title: Income Tertile + ordinal: true + + +#### CDAP #### + +- name: activitysim.workflows.steps.reporting.section_title + skip: !py "'cdap' in report_skip" + in: + title: Coordinated Daily Activity Pattern + +- name: activitysim.workflows.steps.contrast.nominal_choice + skip: !py "'cdap' in report_skip" + in: + caption: Coordinated Daily Activity Pattern by Person Type + caption_level: 3 + tablename: persons + nominal_col: cdap_activity + row_grouping: + field: ptype + title: Person Type + axis_label: Daily Activity Pattern Count + plot_type: count + + +#### Tour Mode Choice #### + +- name: activitysim.workflows.steps.reporting.section_title + in: + title: Tour Mode Choice + +- name: activitysim.workflows.steps.contrast.nominal_choice + in: + caption: Tour Mode Choice by Primary Purpose + caption_level: 3 + tablename: tours + nominal_col: tour_mode + row_grouping: primary_purpose + axis_label: Tour Mode Share + +- name: activitysim.workflows.steps.contrast.nominal_choice + skip: !py "'tour mode by composition' in report_skip" + in: + caption: Tour Mode Choice by Composition + caption_level: 3 + tablename: tours + nominal_col: tour_mode + row_grouping: composition + axis_label: Tour Mode Share + + +#### Tour Schedule #### + +- name: activitysim.workflows.steps.reporting.section_title + in: + title: Tour Scheduling + +- name: activitysim.workflows.steps.contrast.ordinal_distribution + in: + caption: Tour Start Time by Primary Purpose + caption_level: 3 + tablename: tours + ordinal_col: start + facet_grouping: primary_purpose + plot_type: count + +- name: activitysim.workflows.steps.contrast.ordinal_distribution + in: + caption: Tour Duration by Primary Purpose + caption_level: 3 + tablename: tours + ordinal_col: duration + facet_grouping: primary_purpose + plot_type: count + + +#### Trip Mode Choice #### + +- name: activitysim.workflows.steps.reporting.section_title + in: + title: Trip Mode Choice + +- name: activitysim.workflows.steps.contrast.nominal_choice + in: + caption: Trip Mode Choice by Primary Purpose + caption_level: 3 + tablename: trips + nominal_col: trip_mode + row_grouping: primary_purpose + axis_label: Trip Mode Share + +- name: activitysim.workflows.steps.contrast.nominal_choice + in: + caption: Trip Mode Choice by Departure Time + caption_level: 3 + tablename: trips + nominal_col: trip_mode + row_grouping: depart + axis_label: Trip Mode Share + + +#### Trip Distance #### + +- name: activitysim.workflows.steps.reporting.section_title + in: + title: Trip Distance + +- name: activitysim.workflows.steps.contrast.attach_skim_data + in: + tablename: trips + otaz_col: origin + dtaz_col: destination + time_col: depart + skim_vars: '{distance_skim}' + +- name: activitysim.workflows.steps.contrast.transform_data + in: + tablename: trips + column: '{distance_skim}' + out: distance_to10_binned + censor: + left: 0 + right: 10 + cut: + bins: 20 + labels: midpoint + +- name: activitysim.workflows.steps.contrast.ordinal_distribution + in: + caption: Trip Distance by the Primary Purpose, <10 miles + caption_level: 3 + tablename: trips + ordinal_col: distance_to10_binned + facet_grouping: primary_purpose + plot_type: count + interpolate: step + value_format: "0.2f" + axis_label: Distance (to 10 miles) + +- name: activitysim.workflows.steps.contrast.trip_distance + in: + caption: Trip Distance by Primary Purpose, <10 miles + caption_level: 3 + grouping: primary_purpose + dist_bins: 20 + dist_skim_name: '{distance_skim}' + max_dist: 10 + +- name: activitysim.workflows.steps.contrast.trip_distance + in: + caption: Trip Distance by Primary Purpose + caption_level: 3 + grouping: primary_purpose + dist_bins: 20 + dist_skim_name: '{distance_skim}' + + +################################################################################ +report-save: +- name: activitysim.workflows.steps.reporting.save_report + in: + html_filename: "{workspace}/{example_name}/output-{tag}/report-{tag}.html" + copy_filename: '{copy_report_to}' diff --git a/activitysim/workflows/v1.3/mtc_mini.yaml b/activitysim/workflows/v1.3/mtc_mini.yaml new file mode 100644 index 000000000..f1eff7f80 --- /dev/null +++ b/activitysim/workflows/v1.3/mtc_mini.yaml @@ -0,0 +1,44 @@ +# +# mtc_mini +# +# This workflow runs the Prototype MTC model using mini skims (190 zones), +# in a single process runner. It is for mainly for rapid testing of the code +# and specification files for errors, not for policy analysis. +# + +context_parser: pypyr.parser.keyvaluepairs +steps: + +- description: Setting default workflow parameters + name: pypyr.steps.default + in: + defaults: + example_name: prototype_mtc_sf + workflow_name: v1.3/mtc_mini + workspace: workspace # this is the directory where model runs are stored + create: True + compile: False + sharrow: True + legacy: True + reference: True + tag: + resume_after: + fast: False + compile_n_households: 500 + main_n_households: 50000 + config_dirs: configs + data_dir: data + instrument: False + memory_profile: True + trace_hh_id: + trace_od: + workplace_zone_agg: + caption: Workplaces by County + district_id: county_id + distance_skim: DIST + household_income: income + +- name: activitysim.workflows.steps.pype + in: + pype: + name: v1.3/_contrast_runner diff --git a/conda-environments/activitysim-dev-base.yml b/conda-environments/activitysim-dev-base.yml index 1e63b621d..47e6f19f1 100644 --- a/conda-environments/activitysim-dev-base.yml +++ b/conda-environments/activitysim-dev-base.yml @@ -13,8 +13,9 @@ channels: - conda-forge - nodefaults dependencies: -- python=3.9 +- python=3.10 - pip +- altair - asv # for benchmarking - black >= 22.0,<23 - bump2version # for making a release @@ -35,6 +36,7 @@ dependencies: - myst-parser # allows markdown in sphinx - nbconvert - nbformat +- nbmake - numba = 0.56.* - numexpr - numpy = 1.23.* @@ -42,16 +44,17 @@ dependencies: - openmatrix = 0.3.* - orca = 1.8 - pandas = 1.4.* +- pandera >= 0.15 - platformdirs = 3.2.* - pre-commit - psutil = 5.9.* - pyarrow = 11.* - pycodestyle -- pydantic = 1.10.* +- pydantic = 2.6.* - pydata-sphinx-theme - pyinstrument = 4.4 - pypyr = 5.8.* -- pytables >=3.5.1,<3.7 +- pytables >=3.7 - pytest = 7.2.* - pytest-cov - pytest-regressions @@ -59,6 +62,7 @@ dependencies: - requests = 2.28.* - rich = 13.3.* - ruby # required for benchmarking pre-commit hooks +- ruff - setuptools_scm - scikit-learn = 1.2.* - simwrapper > 1.7 @@ -69,6 +73,7 @@ dependencies: - xarray = 2023.2.* - xmle - zarr = 2.14.* +- zstandard - pip: - autodoc_pydantic diff --git a/conda-environments/activitysim-dev.yml b/conda-environments/activitysim-dev.yml index cac073df6..f379d4b50 100644 --- a/conda-environments/activitysim-dev.yml +++ b/conda-environments/activitysim-dev.yml @@ -9,8 +9,9 @@ channels: - conda-forge - nodefaults dependencies: -- python=3.9 +- python=3.10 - pip +- altair - asv # for benchmarking - black >= 22.0,<23 - bump2version # for making a release @@ -31,6 +32,7 @@ dependencies: - myst-parser # allows markdown in sphinx - nbconvert - nbformat +- nbmake - numba = 0.56.* - numexpr - numpy = 1.23.* @@ -38,16 +40,17 @@ dependencies: - openmatrix = 0.3.* - orca = 1.8 - pandas = 1.4.* +- pandera >= 0.15 - platformdirs = 3.2.* - pre-commit - psutil = 5.9.* - pyarrow = 11.* - pycodestyle -- pydantic = 1.10.* +- pydantic = 2.6.* - pydata-sphinx-theme - pyinstrument = 4.4 - pypyr = 5.8.* -- pytables >=3.5.1,<3.7 +- pytables >=3.7 - pytest = 7.2.* - pytest-cov - pytest-regressions @@ -55,9 +58,10 @@ dependencies: - requests = 2.28.* - rich = 13.3.* - ruby # required for benchmarking pre-commit hooks +- ruff - setuptools_scm - scikit-learn = 1.2.* -- sharrow >= 2.5.2 +- sharrow >= 2.6.0 - simwrapper > 1.7 - snakeviz # for profiling - sphinx = 6.1.* @@ -66,6 +70,7 @@ dependencies: - xarray = 2023.2.* - xmle - zarr = 2.14.* +- zstandard - pip: - autodoc_pydantic diff --git a/conda-environments/docbuild.yml b/conda-environments/docbuild.yml index 879338d1c..c738ab3a1 100644 --- a/conda-environments/docbuild.yml +++ b/conda-environments/docbuild.yml @@ -10,8 +10,9 @@ name: docbuild channels: - conda-forge dependencies: -- python=3.9 +- python=3.10 - pip +- altair - black >= 22.0,<23 - bump2version - coveralls @@ -24,27 +25,32 @@ dependencies: - jupyterlab - larch >=5.5.3 - matplotlib +- myst-nb - myst-parser - numba >= 0.56.4 - numpy >= 1.16.1 - numpydoc - openmatrix >= 0.3.4.1 - orca >= 1.6 -- pandas >= 1.1.0 +- pandas >= 1.1.0,<2 +- platformdirs - psutil >= 4.1 - pyarrow >= 2.0 -- pydantic +- pydantic = 2.6.* - pypyr >= 5.3 -- pytables >=3.5.1,<3.7 +- pytables >=3.7 - pytest - pytest-cov - pytest-regressions - pyyaml >= 5.1 - requests >= 2.7 - scikit-learn >= 1.1 -- sharrow >= 2.5.2 +- sharrow >= 2.6.0 - simwrapper > 1.7 - sphinx-argparse +- sphinx-autosummary-accessors +- sphinx-copybutton +- sphinx-remove-toctrees - sphinx_rtd_theme - xarray >= 0.21 - zarr diff --git a/conda-environments/github-actions-tests.yml b/conda-environments/github-actions-tests.yml index 28d6c51f8..5edb8fef7 100644 --- a/conda-environments/github-actions-tests.yml +++ b/conda-environments/github-actions-tests.yml @@ -7,29 +7,33 @@ channels: - conda-forge dependencies: - pip -- black >= 22.0,<23 -- coveralls -- cytoolz = 0.12.* -- dask = 2023.3.* -- isort -- nbmake -- numba = 0.56.* -- numpy = 1.23.* -- openmatrix = 0.3.* +- black = 22.12.0 +- coveralls = 3.3.1 +- cytoolz = 0.12.2 +- dask = 2023.3.2 +- isort = 5.12.0 +- nbmake = 1.4.6 +- numba = 0.56.4 +- numpy = 1.23.5 +- openmatrix = 0.3.5.0 - orca = 1.8 +- pandera >= 0.15 - pandas = 1.4.* - platformdirs = 3.2.* - psutil = 5.9.* - pyarrow = 11.* +- pydantic = 2.6.* - pypyr = 5.8.* -- pytables >= 3.5.1,<3.7 # orca's constraint +- pytables >= 3.7 - pytest = 7.2.* - pytest-cov - pytest-regressions - pyyaml = 6.* - requests = 2.28.* +- ruff - scikit-learn = 1.2.* -- sharrow >= 2.5.2 +- sharrow >= 2.6.0 - simwrapper > 1.7 - xarray = 2023.2.* - zarr = 2.14.* +- zstandard diff --git a/docs/_static/theme_overrides.css b/docs/_static/theme_overrides.css index a78755ebc..231ec5701 100644 --- a/docs/_static/theme_overrides.css +++ b/docs/_static/theme_overrides.css @@ -1,6 +1,7 @@ a.navbar-brand { font-size: 20pt; font-weight: bold; + padding-right: 30px; } div.sd-card-header { diff --git a/docs/_templates/autopydantic-inherits.rst b/docs/_templates/autopydantic-inherits.rst new file mode 100644 index 000000000..7f1268b39 --- /dev/null +++ b/docs/_templates/autopydantic-inherits.rst @@ -0,0 +1,7 @@ +{{ name | escape | underline}} + +.. currentmodule:: {{ module }} + +.. auto{{ objtype }}:: {{ objname }} + :inherited-members: BaseModel + :show-inheritance: diff --git a/docs/_templates/autosummary/accessor.rst b/docs/_templates/autosummary/accessor.rst new file mode 100644 index 000000000..fb962b53d --- /dev/null +++ b/docs/_templates/autosummary/accessor.rst @@ -0,0 +1,12 @@ +{{ objname }} +{{ underline }} + +{% if module.startswith('activitysim.core.workflow') %} +.. currentmodule:: {{ module.split('.')[:3] | join('.') }} + +.. autoaccessor:: {{ (module.split('.')[3:] + [objname]) | join('.') }} +{% else %} +.. currentmodule:: {{ module.split('.')[0] }} + +.. autoaccessor:: {{ (module.split('.')[1:] + [objname]) | join('.') }} +{% endif %} diff --git a/docs/_templates/autosummary/accessor_attribute.rst b/docs/_templates/autosummary/accessor_attribute.rst new file mode 100644 index 000000000..bc9972469 --- /dev/null +++ b/docs/_templates/autosummary/accessor_attribute.rst @@ -0,0 +1,12 @@ +{{ objname }} +{{ underline }} + +{% if module.startswith('activitysim.core.workflow') %} +.. currentmodule:: {{ module.split('.')[:3] | join('.') }} + +.. autoaccessorattribute:: {{ (module.split('.')[3:] + [objname]) | join('.') }} +{% else %} +.. currentmodule:: {{ module.split('.')[0] }} + +.. autoaccessorattribute:: {{ (module.split('.')[1:] + [objname]) | join('.') }} +{% endif %} diff --git a/docs/_templates/autosummary/accessor_callable.rst b/docs/_templates/autosummary/accessor_callable.rst new file mode 100644 index 000000000..39502b2db --- /dev/null +++ b/docs/_templates/autosummary/accessor_callable.rst @@ -0,0 +1,12 @@ +{{ objname }} +{{ underline }} + +{% if module.startswith('activitysim.core.workflow') %} +.. currentmodule:: {{ module.split('.')[:3] | join('.') }} + +.. autoaccessorcallable:: {{ (module.split('.')[3:] + [objname]) | join('.') }}.__call__ +{% else %} +.. currentmodule:: {{ module.split('.')[0] }} + +.. autoaccessorcallable:: {{ (module.split('.')[1:] + [objname]) | join('.') }}.__call__ +{% endif %} diff --git a/docs/_templates/autosummary/accessor_method.rst b/docs/_templates/autosummary/accessor_method.rst new file mode 100644 index 000000000..46d1b7c28 --- /dev/null +++ b/docs/_templates/autosummary/accessor_method.rst @@ -0,0 +1,12 @@ +{{ objname }} +{{ underline }} + +{% if module.startswith('activitysim.core.workflow') %} +.. currentmodule:: {{ module.split('.')[:3] | join('.') }} + +.. autoaccessormethod:: {{ (module.split('.')[3:] + [objname]) | join('.') }} +{% else %} +.. currentmodule:: {{ module.split('.')[0] }} + +.. autoaccessormethod:: {{ (module.split('.')[1:] + [objname]) | join('.') }} +{% endif %} diff --git a/docs/_templates/autosummary/accessor_property.rst b/docs/_templates/autosummary/accessor_property.rst new file mode 100644 index 000000000..46d1b7c28 --- /dev/null +++ b/docs/_templates/autosummary/accessor_property.rst @@ -0,0 +1,12 @@ +{{ objname }} +{{ underline }} + +{% if module.startswith('activitysim.core.workflow') %} +.. currentmodule:: {{ module.split('.')[:3] | join('.') }} + +.. autoaccessormethod:: {{ (module.split('.')[3:] + [objname]) | join('.') }} +{% else %} +.. currentmodule:: {{ module.split('.')[0] }} + +.. autoaccessormethod:: {{ (module.split('.')[1:] + [objname]) | join('.') }} +{% endif %} diff --git a/docs/_templates/autosummary/base.rst b/docs/_templates/autosummary/base.rst new file mode 100644 index 000000000..e03319b8d --- /dev/null +++ b/docs/_templates/autosummary/base.rst @@ -0,0 +1,5 @@ +{{ objname | escape | underline}} + +.. currentmodule:: {{ module }} + +.. auto{{ objtype }}:: {{ objname }} diff --git a/docs/_templates/autosummary/class.rst b/docs/_templates/autosummary/class.rst new file mode 100644 index 000000000..4de83f616 --- /dev/null +++ b/docs/_templates/autosummary/class.rst @@ -0,0 +1,29 @@ +{{ objname | escape | underline}} + +.. currentmodule:: {{ module }} + +.. autoclass:: {{ objname }} + + {% block methods %} + {% if methods %} + .. rubric:: {{ _('Methods') }} + + .. autosummary:: + :toctree: + {% for item in methods %} + ~{{ name }}.{{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block attributes %} + {% if attributes %} + .. rubric:: {{ _('Attributes') }} + + .. autosummary:: + :toctree: + {% for item in attributes %} + ~{{ name }}.{{ item }} + {%- endfor %} + {% endif %} + {% endblock %} diff --git a/docs/_templates/autosummary/class_decorator.rst b/docs/_templates/autosummary/class_decorator.rst new file mode 100644 index 000000000..e9011ba79 --- /dev/null +++ b/docs/_templates/autosummary/class_decorator.rst @@ -0,0 +1,12 @@ +{{ objname | escape | underline}} + +{% if module.startswith('activitysim.core.workflow') %} +.. currentmodule:: {{ module }} + +.. autoclass:: {{ objname }} + :show-inheritance: +{% else %} +.. currentmodule:: {{ module }} + +.. autoclass:: {{ objname }} +{% endif %} diff --git a/docs/_templates/autosummary/class_no_init.rst b/docs/_templates/autosummary/class_no_init.rst new file mode 100644 index 000000000..5e9f1b8f8 --- /dev/null +++ b/docs/_templates/autosummary/class_no_init.rst @@ -0,0 +1,32 @@ +{{ fullname }} +{{ underline }} + +.. currentmodule:: {{ module }} + +.. autoclass:: {{ objname }}() + + {% block methods %} + {% if methods %} + .. rubric:: {{ _('Methods') }} + + .. autosummary:: + :toctree: generated/ + {% for item in methods %} + {% if item != "__init__" %} + ~{{ [module, name] | join('.') }}.{{ item }} + {% endif %} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block attributes %} + {% if attributes %} + .. rubric:: {{ _('Attributes') }} + + .. autosummary:: + :toctree: generated/ + {% for item in attributes %} + ~{{ [module, name] | join('.') }}.{{ item }} + {%- endfor %} + {% endif %} + {% endblock %} diff --git a/docs/_templates/autosummary/module.rst b/docs/_templates/autosummary/module.rst new file mode 100644 index 000000000..be3cf9874 --- /dev/null +++ b/docs/_templates/autosummary/module.rst @@ -0,0 +1,66 @@ +{{ fullname | escape | underline}} + +.. automodule:: {{ fullname }} + + {% block attributes %} + {% if attributes %} + .. rubric:: Module Attributes + + .. autosummary:: + :toctree: + {% for item in attributes %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block functions %} + {% if functions %} + .. rubric:: {{ _('Functions') }} + + .. autosummary:: + :toctree: + {% for item in functions %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block classes %} + {% if classes %} + .. rubric:: {{ _('Classes') }} + + .. autosummary:: + :toctree: + :template: autosummary/class.rst + {% for item in classes %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block exceptions %} + {% if exceptions %} + .. rubric:: {{ _('Exceptions') }} + + .. autosummary:: + :toctree: + {% for item in exceptions %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + +{% block modules %} +{% if modules %} +.. rubric:: Modules + +.. autosummary:: + :toctree: + :template: autosummary/module.rst + :recursive: +{% for item in modules %} + {{ item }} +{%- endfor %} +{% endif %} +{% endblock %} diff --git a/docs/conf.py b/docs/conf.py index 9149b0e37..f6f56f081 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # # ActivitySim documentation build configuration file, created by # sphinx-quickstart on Tue May 26 14:13:47 2016. @@ -12,8 +11,9 @@ # All configuration values have a default; values that are commented out # serve to show the default. +from __future__ import annotations + import os -import sys # -- Get Package Version -------------------------------------------------- import activitysim @@ -36,26 +36,42 @@ "sphinx.ext.mathjax", "numpydoc", "sphinx.ext.autosummary", - "myst_parser", + "myst_nb", + # "myst_parser", "sphinx_design", "sphinxarg.ext", + "sphinx.ext.intersphinx", "sphinxcontrib.autodoc_pydantic", + "sphinx_autosummary_accessors", + "sphinx_remove_toctrees", + "sphinx_copybutton", + "sphinx.ext.autosectionlabel", ] +remove_from_toctrees = [ + "dev-guide/_generated/*", + "dev-guide/_generated2/*", + "users-guide/_generated/*", +] myst_enable_extensions = ["colon_fence"] +myst_heading_anchors = 3 +nb_merge_streams = True numpydoc_show_class_members = False autosummary_generate = True autodoc_pydantic_model_signature_prefix = "settings" autodoc_pydantic_model_show_json = False +autodoc_typehints_format = "short" +python_use_unqualified_type_names = True + # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] # The suffix of source filenames. source_suffix = { ".rst": "restructuredtext", - ".txt": "markdown", - ".md": "markdown", + # ".txt": "markdown", + # ".md": "markdown", } # The encoding of source files. @@ -134,7 +150,7 @@ print("github repo owner: " + GITHUB_REPOSITORY_OWNER) html_theme_options = { - "footer_items": ["version-date", "sphinx-version"], + "footer_start": ["version-date", "sphinx-version"], "switcher": { "json_url": f"https://{GITHUB_REPOSITORY_OWNER}.github.io/activitysim/switcher.json", "version_match": version, @@ -147,7 +163,7 @@ # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -html_title = f"ActivitySim {release}" +html_title = "ActivitySim" # A shorter title for the navigation bar. Default is the same as html_title. # html_short_title = None @@ -215,6 +231,14 @@ # Output file base name for HTML help builder. htmlhelp_basename = "ActivitySimdoc" +intersphinx_mapping = { + "python": ("https://docs.python.org/3", None), + "pandas": ("http://pandas.pydata.org/pandas-docs/stable", None), + "xarray": ("https://docs.xarray.dev/en/stable", None), + "pyarrow": ("https://arrow.apache.org/docs", None), + "numba": ("https://numba.pydata.org/numba-doc/latest", None), + "psutil": ("https://psutil.readthedocs.io/en/latest", None), +} # -- Options for LaTeX output --------------------------------------------- diff --git a/docs/core.rst b/docs/core.rst index c8438e3fe..687e8f956 100644 --- a/docs/core.rst +++ b/docs/core.rst @@ -64,20 +64,6 @@ API .. automodule:: activitysim.core.skim_dictionary :members: -.. _pipeline_in_detail: - -Pipeline -~~~~~~~~ - -Data pipeline manager, which manages the list of model steps, runs them, reads -and writes data tables from/to the pipeline datastore, and supports restarting of the pipeline -at any model step. - -API -^^^ - -.. automodule:: activitysim.core.pipeline - :members: .. _random_in_detail: @@ -122,6 +108,8 @@ API .. automodule:: activitysim.core.random :members: +.. _trace : + Tracing ~~~~~~~ @@ -141,7 +129,7 @@ API :members: -.. _expressions: +.. _util_expressions: Utility Expressions ------------------- @@ -719,19 +707,6 @@ API .. automodule:: activitysim.core.config :members: -.. _inject: - -Inject -~~~~~~ - -Model orchestration and data pipeline interaction. - -API -^^^ - -.. automodule:: activitysim.core.inject - :members: - Mem ~~~ diff --git a/docs/dev-guide/build-docs.md b/docs/dev-guide/build-docs.md new file mode 100644 index 000000000..dc8c5d67d --- /dev/null +++ b/docs/dev-guide/build-docs.md @@ -0,0 +1,49 @@ + +(write-docs)= +# Documentation + +The core documentation for ActivitySim is built with [Sphinx](https://www.sphinx-doc.org). +The input files for this documentation can be written either in +[markdown](https://www.markdownguide.org) with filenames ending in `.md` (preferred +for new documentation pages) or +[reStructuredText](http://docutils.sourceforge.net/rst.html) with filenames ending in `.rst`. +In addition to converting *.md and *.rst files +to html format, Sphinx can also read the inline Python docstrings and convert +them into html as well. ActivitySim's docstrings are written in +[numpydoc](https://numpydoc.readthedocs.io/en/latest/format.html#docstring-standard) format. + +## Building the Documentation + +Developers who want to test a build of the ActivitySim documentation locally can +do so using `sphinx`. A pre-packaged conda environment is available to simplify this +process. On the command line, starting from the `activitysim` directory that constitutes the +main repository (i.e. you should see subdirectories including `activitysim`, +`conda-environments`, `docs`, and a few others) run these commands: + +```bash +mkdir -p ../.env +mamba env update -p ../.env/DOCBUILD -f conda-environments/docbuild.yml +conda activate ../.env/DOCBUILD +cd docs +make clean +make html +``` + +This will build the docs in the `docs/_build/html` directory. They can be viewed +in a web browser using the `file:///` protocol, or by double-clicking on the +`index.html` file (or any other .html file in that directory). + +## Automatic Documentation Builds + +Documentation can also be rendered online automatically by GitHub. Several scripts +are included in this repository's GitHub Actions to do so when updates are made +to the `main` or `develop` branches in the primary `ActivitySim` repository. + +If you are working in a *fork* of the primary `ActivitySim/activitysim` repository, you +can generate test builds of the documentation by pushing a commit to your branch +with the tag `[makedocs]` in the commit message. Note to prevent conflicts this +only works on a fork, not within the primary `ActivitySim` repository, and only +on branches named something other than `develop`. The documentation will then be +published on your own subdomain. For example, if your fork is `tacocat/activitysim`, +and you are working on the `featuring-cilantro` branch, the GitHub will render your +documentation build at `https://tacocat.github.io/activitysim/featuring-cilantro`. diff --git a/docs/dev-guide/checkpointing.md b/docs/dev-guide/checkpointing.md new file mode 100644 index 000000000..0698a7b63 --- /dev/null +++ b/docs/dev-guide/checkpointing.md @@ -0,0 +1,45 @@ +# Checkpointing + +```{eval-rst} +.. currentmodule:: activitysim.core.workflow.checkpoint +``` + +ActivitySim provides a checkpointing mechanism, whereby the content of data tables +can be stored to disk in an intermediate state. This intermediate state can +subsequently be restored from disk, setting up the data tables to resume +simulation from that point forward. + +There are currently two data file formats available for checkpointing: + +- [HDF5](https://www.hdfgroup.org/solutions/hdf5/), the longstanding default + format for ActivitySim checkpointing, and +- [Apache Parquet](https://parquet.apache.org/), added as an option as of + ActivitySim version 1.3. + +## Usage + +The operation of automatic checkpointing during an ActivitySim run is controlled +via a few values in the top-level settings: + +- [`checkpoint_format`](activitysim.core.configuration.Settings.checkpoint_format) + controls which checkpoint data file format is used. +- [`checkpoints`](activitysim.core.configuration.Settings.checkpoints) + controls how frequently checkpoints are written (after every component, after + only certain components, or not at all). + +For code developers wanting to integrate some aspect of checkpointing into +a manual workflow or a new component, the +[`State.checkpoint`](activitysim.core.workflow.State.checkpoint) +accessor has most of the relevant methods. + +## API + +```{eval-rst} +.. autosummary:: + :toctree: _generated + :recursive: + + GenericCheckpointStore + HdfStore + ParquetStore +``` diff --git a/docs/dev-guide/component-configs.md b/docs/dev-guide/component-configs.md new file mode 100644 index 000000000..0fd1a9705 --- /dev/null +++ b/docs/dev-guide/component-configs.md @@ -0,0 +1,20 @@ +(component-config)= +# Component Configuration + +Individual components each have their own component-level configuration. These +configuration can include custom component-specific settings, as well as groups +of settings from these boilerplate base classes: + +```{eval-rst} +.. currentmodule:: activitysim.core.configuration +.. autosummary:: + :toctree: _generated + :template: autopydantic-inherits.rst + :recursive: + + ~base.PydanticReadable + ~base.PreprocessorSettings + ~logit.LogitComponentSettings + ~logit.TemplatedLogitComponentSettings + ~logit.LogitNestSpec +``` diff --git a/docs/dev-guide/components/accessibility.md b/docs/dev-guide/components/accessibility.md new file mode 100644 index 000000000..32c97d4bc --- /dev/null +++ b/docs/dev-guide/components/accessibility.md @@ -0,0 +1,69 @@ +(component-accessibility)= +# Accessibility + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.accessibility +``` + +The accessibilities model is an aggregate model that calculates multiple origin-based accessibility +measures by origin zone to all destination zones. + +The accessibility measure first multiplies an employment variable by a mode-specific decay function. The +product reflects the difficulty of accessing the activities the farther (in terms of round-trip travel time) +the jobs are from the location in question. The products to each destination zone are next summed over +each origin zone, and the logarithm of the product mutes large differences. The decay function on +the walk accessibility measure is steeper than automobile or transit. The minimum accessibility is zero. + +Level-of-service variables from three time periods are used, specifically the AM peak period (6 am to 10 am), the +midday period (10 am to 3 pm), and the PM peak period (3 pm to 7 pm). + +*Inputs* + +* Highway skims for the three periods. Each skim is expected to include a table named "TOLLTIMEDA", which is the drive alone in-vehicle travel time for automobiles willing to pay a "value" (time-savings) toll. +* Transit skims for the three periods. Each skim is expected to include the following tables: (i) "IVT", in-vehicle time; (ii) "IWAIT", initial wait time; (iii) "XWAIT", transfer wait time; (iv) "WACC", walk access time; (v) "WAUX", auxiliary walk time; and, (vi) "WEGR", walk egress time. +* Zonal data with the following fields: (i) "TOTEMP", total employment; (ii) "RETEMPN", retail trade employment per the NAICS classification. + +*Outputs* + +* taz, travel analysis zone number +* autoPeakRetail, the accessibility by automobile during peak conditions to retail employment for this TAZ +* autoPeakTotal, the accessibility by automobile during peak conditions to all employment +* autoOffPeakRetail, the accessibility by automobile during off-peak conditions to retail employment +* autoOffPeakTotal, the accessibility by automobile during off-peak conditions to all employment +* transitPeakRetail, the accessibility by transit during peak conditions to retail employment +* transitPeakTotal, the accessibility by transit during peak conditions to all employment +* transitOffPeakRetail, the accessiblity by transit during off-peak conditions to retail employment +* transitOffPeakTotal, the accessiblity by transit during off-peak conditions to all employment +* nonMotorizedRetail, the accessibility by walking during all time periods to retail employment +* nonMotorizedTotal, the accessibility by walking during all time periods to all employment + +The main interface to the accessibility model is the +[compute_accessibility](activitysim.abm.models.accessibility.compute_accessibility) +function. This function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `accessibility.yaml` +- *Core Table*: `skims` +- *Result Table*: `accessibility` + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: AccessibilitySettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/accessibility.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/accessibility.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: compute_accessibility +``` diff --git a/docs/dev-guide/components/atwork_subtour_destination.md b/docs/dev-guide/components/atwork_subtour_destination.md new file mode 100644 index 000000000..8c08193a2 --- /dev/null +++ b/docs/dev-guide/components/atwork_subtour_destination.md @@ -0,0 +1,46 @@ +(component-atwork-subtour-destination)= +# At-work Subtours Destination Choice + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.atwork_subtour_destination +``` + +The at-work subtours destination choice model is made up of three model steps: + + * sample - selects a sample of alternative locations for the next model step. This selects X locations from the full set of model zones using a simple utility. + * logsums - starts with the table created above and calculates and adds the mode choice logsum expression for each alternative location. + * simulate - starts with the table created above and chooses a final location, this time with the mode choice logsum included. + +At-work subtour location choice for [multiple_zone_systems](multiple_zone_systems) models uses [presampling](presampling) by default. + +The main interface to the at-work subtour destination model is the +[atwork_subtour_destination](ctivitysim.abm.models.atwork_subtour_destination.atwork_subtour_destination) +function. This function is registered as an Inject step in the example Pipeline. +[writing_logsums](writing_logsums) for how to write logsums for estimation. + +## Structure + +- *Configuration File*: `atwork_subtour_destination.yaml` +- *Core Table*: `tours` +- *Result Field*: `destination` +- *Skims keys*: `workplace_taz, alt_dest, MD time period` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TourLocationComponentSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/atwork_subtour_destination.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/atwork_subtour_destination.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: atwork_subtour_destination +``` diff --git a/docs/dev-guide/components/atwork_subtour_frequency.md b/docs/dev-guide/components/atwork_subtour_frequency.md new file mode 100644 index 000000000..0b0b4c78a --- /dev/null +++ b/docs/dev-guide/components/atwork_subtour_frequency.md @@ -0,0 +1,48 @@ +(component-atwork-subtour-frequency)= +# At-work Subtours Frequency + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.atwork_subtour_frequency +``` + +The at-work subtour frequency model selects the number of at-work subtours made for each work tour. +It also creates at-work subtours by adding them to the tours table in the data pipeline. +These at-work sub-tours are travel tours taken during the workday with their origin at the work +location, rather than from home. Explanatory variables include employment status, +income, auto ownership, the frequency of other tours, characteristics of the parent work tour, and +characteristics of the workplace zone. + +Choosers: work tours +Alternatives: none, 1 eating out tour, 1 business tour, 1 maintenance tour, 2 business tours, 1 eating out tour + 1 business tour +Dependent tables: household, person, accessibility +Outputs: work tour subtour frequency choice, at-work tours table (with only tour origin zone at this point) + +The main interface to the at-work subtours frequency model is the +[atwork_subtour_frequency](activitysim.abm.models.atwork_subtour_frequency.atwork_subtour_frequency) +function. This function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `atwork_subtour_frequency.yaml` +- *Core Table*: `tours` +- *Result Field*: `atwork_subtour_frequency` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: AtworkSubtourFrequencySettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/atwork_subtour_destination.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/atwork_subtour_destination.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: atwork_subtour_frequency +``` diff --git a/docs/dev-guide/components/atwork_subtour_mode_choice.md b/docs/dev-guide/components/atwork_subtour_mode_choice.md new file mode 100644 index 000000000..a3038badc --- /dev/null +++ b/docs/dev-guide/components/atwork_subtour_mode_choice.md @@ -0,0 +1,41 @@ +(component-atwork-subtour-mode-choice)= +# At-work Subtour Mode + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.atwork_subtour_mode_choice +``` + +The at-work subtour mode choice model assigns a travel mode to each at-work subtour using the `tour_mode_choice` model. + +The main interface to the at-work subtour mode choice model is the +[atwork_subtour_mode_choice](activitysim.abm.models.atwork_subtour_mode_choice.atwork_subtour_mode_choice) +function. This function is called in the Inject step `atwork_subtour_mode_choice` and +is registered as an Inject step in the example Pipeline. +[writing_logsums](writing_logsums) for how to write logsums for estimation. + +## Structure + +- *Configuration File*: `tour_mode_choice.yaml` +- *Core Table*: `tour` +- *Result Field*: `tour_mode` +- *Skims keys*: `workplace_taz, destination, start, end` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TourModeComponentSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/tour_mode_choice.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/tour_mode_choice.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: atwork_subtour_mode_choice +``` diff --git a/docs/dev-guide/components/atwork_subtour_scheduling.md b/docs/dev-guide/components/atwork_subtour_scheduling.md new file mode 100644 index 000000000..bac01be00 --- /dev/null +++ b/docs/dev-guide/components/atwork_subtour_scheduling.md @@ -0,0 +1,50 @@ +(component-atwork-subtour-scheduling)= +# At-work Subtour Scheduling + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.atwork_subtour_scheduling +``` + +The at-work subtours scheduling model selects a tour departure and duration period (and therefore a start and end +period as well) for each at-work subtour. This model uses person `time_windows`. + +This model is the same as the mandatory tour scheduling model except it operates on the at-work tours and +constrains the alternative set to available person `time_windows`. The at-work subtour scheduling model does not use mode choice logsums. +The at-work subtour frequency model can choose multiple tours so this model must process all first tours and then second +tours since isFirstAtWorkTour is an explanatory variable. + +Choosers: at-work tours +Alternatives: alternative departure time and arrival back at origin time pairs WITHIN the work tour departure time and arrival time back at origin AND the person time window. If no time window is available for the tour, make the first and last time periods within the work tour available, make the choice, and log the number of times this occurs. +Dependent tables: skims, person, land use, work tour +Outputs: at-work tour departure time and arrival back at origin time, updated person time windows + +The main interface to the at-work subtours scheduling model is the +[atwork_subtour_scheduling](activitysim.abm.models.atwork_subtour_scheduling.atwork_subtour_scheduling) +function. This function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `tour_scheduling_atwork.yaml` +- *Core Table*: `tours` +- *Result Field*: `start, end, duration` +- *Skims keys*: `workplace_taz, alt_dest, MD time period, MD time period` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TourSchedulingSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/tour_scheduling_atwork.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/tour_scheduling_atwork.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: atwork_subtour_scheduling +``` diff --git a/docs/dev-guide/components/auto_ownership.md b/docs/dev-guide/components/auto_ownership.md new file mode 100644 index 000000000..5c2dd6c9f --- /dev/null +++ b/docs/dev-guide/components/auto_ownership.md @@ -0,0 +1,36 @@ +(component-auto-ownership)= +# Auto Ownership + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.auto_ownership +``` + +The auto ownership model selects a number of autos for each household in the simulation. +The primary model components are household demographics, zonal density, and accessibility. + +## Structure + +- *Configuration File*: `auto_ownership.yaml` +- *Core Table*: `households` +- *Result Field*: `auto_owenership` + +This model is typically structured as multinomial logit model. + +## Configuration + +```{eval-rst} +.. autopydantic_model:: AutoOwnershipSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/auto_ownership.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/auto_ownership.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: auto_ownership_simulate +``` diff --git a/docs/dev-guide/components/cdap.md b/docs/dev-guide/components/cdap.md new file mode 100644 index 000000000..63e665543 --- /dev/null +++ b/docs/dev-guide/components/cdap.md @@ -0,0 +1,53 @@ +(component-cdap)= +# Coordinated Daily Activity Pattern + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.cdap +``` + +The Coordinated Daily Activity Pattern (CDAP) model predicts the choice of daily activity pattern (DAP) +for each member in the household, simultaneously. The DAP is categorized in to three types as +follows: +* Mandatory: the person engages in travel to at least one out-of-home mandatory activity - work, university, or school. The mandatory pattern may also include non-mandatory activities such as separate home-based tours or intermediate stops on mandatory tours. +* Non-mandatory: the person engages in only maintenance and discretionary tours, which, by definition, do not contain mandatory activities. +* Home: the person does not travel outside the home. + +The CDAP model is a sequence of vectorized table operations: + +* create a person level table and rank each person in the household for inclusion in the CDAP model. Priority is given to full time workers (up to two), then to part time workers (up to two workers, of any type), then to children (youngest to oldest, up to three). Additional members up to five are randomly included for the CDAP calculation. +* solve individual M/N/H utilities for each person +* take as input an interaction coefficients table and then programmatically produce and write out the expression files for households size 1, 2, 3, 4, and 5 models independent of one another +* select households of size 1, join all required person attributes, and then read and solve the automatically generated expressions +* repeat for households size 2, 3, 4, and 5. Each model is independent of one another. + +The main interface to the CDAP model is the [run_cdap](activitysim.abm.models.util.cdap.run_cdap) +function. This function is called by the Inject step `cdap_simulate` which is +registered as an Inject step in the example Pipeline. There are two cdap class definitions in +ActivitySim. The first is at [cdap](activitysim.abm.models.cdap) and contains the Inject +wrapper for running it as part of the model pipeline. The second is +at [cdap](activitysim.abm.models.util.cdap) and contains CDAP model logic. + +## Structure + +- *Configuration File*: `cdap.yaml` +- *Core Table*: `persons` +- *Result Field*: `cdap_activity` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: CdapSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/cdap.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/cdap.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: cdap_simulate +``` diff --git a/docs/dev-guide/components/disaggregate_accessibility.md b/docs/dev-guide/components/disaggregate_accessibility.md new file mode 100644 index 000000000..7705f4b9c --- /dev/null +++ b/docs/dev-guide/components/disaggregate_accessibility.md @@ -0,0 +1,77 @@ +(component-disaggregate-accessibility)= +# Disaggregate Accessibility + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.disaggregate_accessibility +``` + +The disaggregate accessibility model is an extension of the base accessibility model. +While the base accessibility model is based on a mode-specific decay function and uses fixed market +segments in the population (i.e., income), the disaggregate accessibility model extracts the actual +destination choice logsums by purpose (i.e., mandatory fixed school/work location and non-mandatory +tour destinations by purpose) from the actual model calculations using a user-defined proto-population. +This enables users to include features that may be more critical to destination +choice than just income (e.g., automobile ownership). + +## Structure + +*Inputs* + * disaggregate_accessibility.yaml - Configuration settings for disaggregate accessibility model. + * annotate.csv [optional] - Users can specify additional annotations specific to disaggregate accessibility. For example, annotating the proto-population tables. + +*Outputs* + * final_disaggregate_accessibility.csv [optional] + * final_non_mandatory_tour_destination_accesibility.csv [optional] + * final_workplace_location_accessibility.csv [optional] + * final_school_location_accessibility.csv [optional] + * final_proto_persons.csv [optional] + * final_proto_households.csv [optional] + * final_proto_tours.csv [optional] + +The above tables are created in the model pipeline, but the model will not save +any outputs unless specified in settings.yaml - output_tables. Users can return +the proto population tables for inspection, as well as the raw logsum accessibilities +for mandatory school/work and non-mandatory destinations. The logsums are then merged +at the household level in final_disaggregate_accessibility.csv, which each tour purpose +logsums shown as separate columns. + +*Usage* + +The disaggregate accessibility model is run as a model step in the model list. +There are two necessary steps: + +* `initialize_proto_population` +* `compute_disaggregate_accessibility` + +The reason the steps must be separate is to enable multiprocessing. +The proto-population must be fully generated and initialized before activitysim +slices the tables into separate threads. These steps must also occur before +initialize_households in order to avoid conflict with the shadow_pricing model. + +The model steps can be run either as part the activitysim model run, or setup +to run as a standalone run to pre-computing the accessibility values. +For standalone implementations, the final_disaggregate_accessibility.csv is read +into the pipeline and initialized with the initialize_household model step. + +- *Configuration File*: `disaggregate_accessibility.yaml` +- *Core Table*: Users define the variables to be generated for 'PROTO_HOUSEHOLDS', 'PROTO_PERSONS', and 'PROTO_TOURS' tables. These tables must include all basic fields necessary for running the actual model. Additional fields can be annotated in pre-processing using the annotation settings of this file. + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: DisaggregateAccessibilitySettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC_Extended](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc_extended/configs/disaggregate_accessibility.yaml) +- [Placeholder_SANDAG_2_Zone](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/placeholder_sandag/test/configs_2_zone/disaggregate_accessibility.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: disaggregate_accessibility +``` diff --git a/docs/dev-guide/components/free_parking.md b/docs/dev-guide/components/free_parking.md new file mode 100644 index 000000000..b1bc9de10 --- /dev/null +++ b/docs/dev-guide/components/free_parking.md @@ -0,0 +1,40 @@ +(component-free-parking)= +# Free Parking Eligibility + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.free_parking +``` + +The Free Parking Eligibility model predicts the availability of free parking at a person's +workplace. It is applied for people who work in zones that have parking charges, which are +generally located in the Central Business Districts. The purpose of the model is to adequately +reflect the cost of driving to work in subsequent models, particularly in mode choice. + +## Structure + +- *Configuration File*: `free_parking.yaml` +- *Core Table*: `persons` +- *Result Field*: `free_parking_at_work` + +This model generates only True or False outcomes, and is structured as a binary +logit model. + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: FreeParkingSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/free_parking.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/free_parking.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: free_parking +``` diff --git a/docs/dev-guide/components/index.rst b/docs/dev-guide/components/index.rst index e4ffabfb0..9329f3b0d 100644 --- a/docs/dev-guide/components/index.rst +++ b/docs/dev-guide/components/index.rst @@ -1,12 +1,51 @@ +.. _dev_components : + ========== Components ========== .. toctree:: - :maxdepth: 1 - + :maxdepth: 1 + initialize + initialize_los + initialize_tours + accessibility + auto_ownership + vehicle_type_choice + telecommute_frequency + cdap + mandatory_tour_frequency + school_escorting + joint_tour_composition + joint_tour_participation + joint_tour_destination + joint_tour_scheduling + non_mandatory_tour_frequency + non_mandatory_destination + non_mandatory_scheduling + mandatory_scheduling + disaggregate_accessibility + free_parking + school_location_choice + transit_pass_ownership + transit_pass_subsidy trip_destination - + work_from_home + work_location_choice + tour_mode_choice + 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_choice + trip_departure_choice + trip_mode_choice + parking_location_choice + write_trip_matrices .. note:: diff --git a/docs/dev-guide/components/initialize.md b/docs/dev-guide/components/initialize.md new file mode 100644 index 000000000..90bba4a35 --- /dev/null +++ b/docs/dev-guide/components/initialize.md @@ -0,0 +1,25 @@ +(component-initialize)= +# Initialize + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.initialize +``` + +The initialize model isn't really a model, but rather a few data processing steps in the data pipeline. +The initialize data processing steps code variables used in downstream models, such as household and person +value-of-time. This step also pre-loads the land_use, households, persons, and person_windows tables because +random seeds are set differently for each step and therefore the sampling of households depends on which step +they are initially loaded in. + +The main interface to the initialize land use step is the [initialize_landuse](activitysim.abm.models.initialize.initialize_landuse) +function. The main interface to the initialize household step is the [initialize_households](activitysim.abm.models.initialize.initialize_households) +function. The main interface to the initialize tours step is the [initialize_tours](activitysim.abm.models.initialize_tours.initialize_tours) +function. These functions are registered as Inject steps in the example Pipeline. + + +## Implementation + +```{eval-rst} +.. autofunction:: initialize_landuse +.. autofunction:: initialize_households +``` diff --git a/docs/dev-guide/components/initialize_los.md b/docs/dev-guide/components/initialize_los.md new file mode 100644 index 000000000..98f0363c6 --- /dev/null +++ b/docs/dev-guide/components/initialize_los.md @@ -0,0 +1,25 @@ +(component-initialize-los)= +# Initialize LOS + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.initialize_los +``` + +The initialize LOS model isn't really a model, but rather a series of data processing steps in the data pipeline. +The initialize LOS model does two things: + + * Loads skims and cache for later if desired + * Loads network LOS inputs for transit virtual path building (see [transit_virtual_path_builder](transit_virtual_path_builder), pre-computes tap-to-tap total utilities and cache for later if desired + +The main interface to the initialize LOS step is the [initialize_los](activitysim.abm.models.initialize_los.initialize_los) +function. The main interface to the initialize TVPB step is the [initialize_tvpb](activitysim.abm.models.initialize_los.initialize_tvpb) +function. These functions are registered as Inject steps in the example Pipeline. + + +## Implementation + +```{eval-rst} +.. autofunction:: initialize_los +.. autofunction:: compute_utilities_for_attribute_tuple +.. autofunction:: initialize_tvpb +``` diff --git a/docs/dev-guide/components/initialize_tours.md b/docs/dev-guide/components/initialize_tours.md new file mode 100644 index 000000000..a05ec127f --- /dev/null +++ b/docs/dev-guide/components/initialize_tours.md @@ -0,0 +1,15 @@ +(component-initialize-tours)= +# Initialize Tours + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.initialize_tours +``` + + + + +## Implementation + +```{eval-rst} +.. autofunction:: initialize_tours +``` diff --git a/docs/dev-guide/components/joint_tour_composition.md b/docs/dev-guide/components/joint_tour_composition.md new file mode 100644 index 000000000..980bd38a3 --- /dev/null +++ b/docs/dev-guide/components/joint_tour_composition.md @@ -0,0 +1,42 @@ +(component-joint-tour-composition)= +# Joint Tour Composition + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.joint_tour_composition +``` +In the joint tour party composition model, the makeup of the travel party (adults, children, or +mixed - adults and children) is determined for each joint tour. The party composition determines the +general makeup of the party of participants in each joint tour in order to allow the micro-simulation +to faithfully represent the prevalence of adult-only, children-only, and mixed joint travel tours +for each purpose while permitting simplicity in the subsequent person participation model. + +The main interface to the joint tour composition model is the +[joint_tour_composition](activitysim.abm.models.joint_tour_composition.joint_tour_composition) +function. This function is registered as an Inject step in the example Pipeline. + + +## Structure + +- *Configuration File*: `joint_tour_composition.yaml` +- *Core Table*: `tours` +- *Result Field*: `composition` + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: JointTourCompositionSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/free_parking.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/joint_tour_composition.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: joint_tour_composition +``` diff --git a/docs/dev-guide/components/joint_tour_destination.md b/docs/dev-guide/components/joint_tour_destination.md new file mode 100644 index 000000000..21700fdd0 --- /dev/null +++ b/docs/dev-guide/components/joint_tour_destination.md @@ -0,0 +1,60 @@ +(component-joint-tour-destination)= +# Joint Tour Destination + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.joint_tour_destination +``` + +The joint tour destination choice model operate similarly to the usual work and +school location choice model, selecting the primary destination for travel tours. The only +procedural difference between the models is that the usual work and school location choice +model selects the usual location of an activity whether or not the activity is undertaken during the +travel day, while the joint tour destination choice model selects the location for an +activity which has already been generated. + +The tour's primary destination is the location of the activity that is assumed to provide the greatest +impetus for engaging in the travel tour. In the household survey, the primary destination was not asked, but +rather inferred from the pattern of stops in a closed loop in the respondents' travel diaries. The +inference was made by weighing multiple criteria including a defined hierarchy of purposes, the +duration of activities, and the distance from the tour origin. The model operates in the reverse +direction, designating the primary purpose and destination and then adding intermediate stops +based on spatial, temporal, and modal characteristics of the inbound and outbound journeys to +the primary destination. + +The joint tour destination choice model is made up of three model steps: + * sample - selects a sample of alternative locations for the next model step. This selects X locations from the full set of model zones using a simple utility. + * logsums - starts with the table created above and calculates and adds the mode choice logsum expression for each alternative location. + * simulate - starts with the table created above and chooses a final location, this time with the mode choice logsum included. + +Joint tour location choice for [multiple_zone_systems](multiple_zone_systems) models uses [presampling](presampling) by default. + +The main interface to the model is the [joint_tour_destination](activitysim.abm.models.joint_tour_destination.joint_tour_destination) +function. This function is registered as an Inject step in the example Pipeline. See [writing_logsums](writing_logsums) for how +to write logsums for estimation. + +## Structure + +- *Configuration File*: `joint_tour_destination.yaml` +- *Core Table*: `tours` +- *Result Field*: `destination` +- *Skims Keys*: `TAZ, alt_dest, MD time period` + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TourLocationComponentSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MWCOG](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mwcog/configs/joint_tour_destination.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/joint_tour_destination.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: joint_tour_destination +``` diff --git a/docs/dev-guide/components/joint_tour_participation.md b/docs/dev-guide/components/joint_tour_participation.md new file mode 100644 index 000000000..b93d5d33b --- /dev/null +++ b/docs/dev-guide/components/joint_tour_participation.md @@ -0,0 +1,48 @@ +(component-joint-tour-participation)= +# Joint Tour Participation + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.joint_tour_participation +``` +In the joint tour person participation model, each eligible person sequentially makes a +choice to participate or not participate in each joint tour. Since the party composition model +determines what types of people are eligible to join a given tour, the person participation model +can operate in an iterative fashion, with each household member choosing to join or not to join +a travel party independent of the decisions of other household members. In the event that the +constraints posed by the result of the party composition model are not met, the person +participation model cycles through the household members multiple times until the required +types of people have joined the travel party. + +This step also creates the ``joint_tour_participants`` table in the pipeline, which stores the +person ids for each person on the tour. + +The main interface to the joint tour participation model is the +[joint_tour_participation](activitysim.abm.models.joint_tour_participation.joint_tour_participation) +function. This function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `joint_tour_participation.yaml` +- *Core Table*: `tours` +- *Result Field*: `number_of_participants, person_id (for the point person)` + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: JointTourParticipationSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/joint_tour_participation.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/joint_tour_participation.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: joint_tour_participation +.. autofunction:: participants_chooser +``` diff --git a/docs/dev-guide/components/joint_tour_scheduling.md b/docs/dev-guide/components/joint_tour_scheduling.md new file mode 100644 index 000000000..6a9fa2190 --- /dev/null +++ b/docs/dev-guide/components/joint_tour_scheduling.md @@ -0,0 +1,46 @@ +(component-joint-tour-scheduling)= +# Joint Tour Scheduling + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.joint_tour_scheduling +``` + +The joint tour scheduling model selects a tour departure and duration period (and therefore a start and end +period as well) for each joint tour. This model uses person [time_windows](time_windows). The primary drivers in the +models are accessibility-based parameters such +as the auto travel time for the departure/arrival hour combination, demographics, and time +pattern characteristics such as the time windows available from previously scheduled tours. +The joint tour scheduling model does not use mode choice logsums. + +The main interface to the joint tour purpose scheduling model is the +[joint_tour_scheduling](activitysim.abm.models.joint_tour_scheduling.joint_tour_scheduling) +function. This function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `joint_tour_scheduling.yaml` +- *Core Table*: `tours` +- *Result Field*: `start, end, duration` +- *Skims Keys*: ` TAZ, destination, MD time period, MD time period` + + + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TourSchedulingSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/joint_tour_scheduling.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/joint_tour_scheduling.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: joint_tour_scheduling +``` diff --git a/docs/dev-guide/components/mandatory_scheduling.md b/docs/dev-guide/components/mandatory_scheduling.md new file mode 100644 index 000000000..7780bc81f --- /dev/null +++ b/docs/dev-guide/components/mandatory_scheduling.md @@ -0,0 +1,52 @@ +(component-mandatory-scheduling)= +# Mandatory Tour Scheduling + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.mandatory_scheduling +``` + +The mandatory tour scheduling model selects a tour departure and duration period (and therefore a +start and end period as well) for each mandatory tour. The primary drivers in the model are +accessibility-based parameters such as the mode choice logsum for the departure/arrival hour +combination, demographics, and time pattern characteristics such as the time windows available +from previously scheduled tours. This model uses person :ref:`time_windows`. + +```{note} +For `prototype_mtc`, the modeled time periods for all submodels are hourly from 3 am to +3 am the next day, and any times before 5 am are shifted to time period 5, and any times +after 11 pm are shifted to time period 23. +``` + +If ``tour_departure_and_duration_segments.csv`` is included in the configs, then the model +will use these representative start and end time periods when calculating mode choice logsums +instead of the specific start and end combinations for each alternative to reduce runtime. This +feature, know as ``representative logsums``, takes advantage of the fact that the mode choice logsum, +say, from 6 am to 2 pm is very similar to the logsum from 6 am to 3 pm, and 6 am to 4 pm, and so using +just 6 am to 3 pm (with the idea that 3 pm is the "representative time period") for these alternatives is +sufficient for tour scheduling. By reusing the 6 am to 3 pm mode choice logsum, ActivitySim saves +significant runtime. + +The main interface to the mandatory tour purpose scheduling model is the +[mandatory_tour_scheduling](activitysim.abm.models.mandatory_scheduling.mandatory_tour_scheduling) +function. This function is registered as an Inject step in the example Pipeline + +## Structure + +- *Configuration File*: `mandatory_tour_scheduling.yaml` +- *Core Table*: `tours` +- *Result Field*: `start`,`end`,`duration` +- *Skim Keys*: `TAZ`,`workplace_taz`,`school_taz`,`start`,`end` + +This model generates only True or False outcomes, and is structured as a binary +logit model. + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/mandatory_tour_scheduling.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/mandatory_tour_scheduling.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: mandatory_tour_scheduling +``` diff --git a/docs/dev-guide/components/mandatory_tour_frequency.md b/docs/dev-guide/components/mandatory_tour_frequency.md new file mode 100644 index 000000000..2a5e61706 --- /dev/null +++ b/docs/dev-guide/components/mandatory_tour_frequency.md @@ -0,0 +1,44 @@ +(component-mandatory-tour-frequency)= +# Mandatory Tour Frequency + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.mandatory_tour_frequency +``` + +The individual mandatory tour frequency model predicts the number of work and school tours +taken by each person with a mandatory DAP. The primary drivers of mandatory tour frequency +are demographics, accessibility-based parameters such as drive time to work, and household +automobile ownership. It also creates mandatory tours in the data pipeline. + +The main interface to the mandatory tour purpose frequency model is the +[mandatory_tour_frequency](activitysim.abm.models.mandatory_tour_frequency.mandatory_tour_frequency) +function. This function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `mandatory_tour_frequency.yaml` +- *Core Table*: `persons` +- *Result Field*: `mandatory_tour_frequency` + +This model generates only True or False outcomes, and is structured as a binary +logit model. + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: MandatoryTourFrequencySettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/mandatory_tour_frequency.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/mandatory_tour_frequency.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: mandatory_tour_frequency +``` diff --git a/docs/dev-guide/components/non_mandatory_destination.md b/docs/dev-guide/components/non_mandatory_destination.md new file mode 100644 index 000000000..11ce041fe --- /dev/null +++ b/docs/dev-guide/components/non_mandatory_destination.md @@ -0,0 +1,43 @@ +(component-non-mandatory-destination)= +# Non-Mandatory Destination Choice + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.non_mandatory_destination +``` + +The non-mandatory tour destination choice model chooses a destination zone for +non-mandatory tours. The three step (sample, logsums, final choice) process also used for +mandatory tour destination choice is used for non-mandatory tour destination choice. + +Non-mandatory tour location choice for [multiple_zone_systems](multiple_zone_systems) models uses [presampling](presampling) by default. + +The main interface to the non-mandatory tour destination choice model is the +[non_mandatory_tour_destination](activitysim.abm.models.non_mandatory_destination.non_mandatory_tour_destination) +function. This function is registered as an Inject step in the example Pipeline. See :ref:`writing_logsums` +for how to write logsums for estimation. + +## Structure + +- *Configuration File*: `non_mandatory_tour_destination.yaml` +- *Core Table*: `tours` +- *Result Field*: `destination` +- *Skims Keys*: `TAZ, alt_dest, MD time period, MD time period` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TourLocationComponentSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/non_mandatory_tour_destination.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/non_mandatory_tour_destination.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: non_mandatory_tour_destination +``` diff --git a/docs/dev-guide/components/non_mandatory_scheduling.md b/docs/dev-guide/components/non_mandatory_scheduling.md new file mode 100644 index 000000000..3c73bdb78 --- /dev/null +++ b/docs/dev-guide/components/non_mandatory_scheduling.md @@ -0,0 +1,30 @@ +(component-non-mandatory-scheduling)= +# Non-Mandatory Tour Scheduling + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.non_mandatory_scheduling +``` +The non-mandatory tour scheduling model selects a tour departure and duration period (and therefore a start and end +period as well) for each non-mandatory tour. This model uses person [time_windows](time_windows). Includes support +for [representative_logsums](representative_logsums). + +The main interface to the non-mandatory tour purpose scheduling model is the +[non_mandatory_tour_scheduling](activitysim.abm.models.non_mandatory_scheduling.non_mandatory_tour_scheduling) +function. This function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `non_mandatory_tour_scheduling.yaml` +- *Core Table*: `tours` +- *Result Field*: `start, end, duration` +- *Skims Keys*: `TAZ, destination, MD time period, MD time period` + +### Examples + +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/non_mandatory_tour_scheduling.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: non_mandatory_tour_scheduling +``` diff --git a/docs/dev-guide/components/non_mandatory_tour_frequency.md b/docs/dev-guide/components/non_mandatory_tour_frequency.md new file mode 100644 index 000000000..c4bd957de --- /dev/null +++ b/docs/dev-guide/components/non_mandatory_tour_frequency.md @@ -0,0 +1,42 @@ +(component-non-mandatory-tour-frequency)= +# Non-Mandatory Tour Frequency + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.non_mandatory_tour_frequency +``` + +The non-mandatory tour frequency model selects the number of non-mandatory tours made by each person on the simulation day. +It also adds non-mandatory tours to the tours in the data pipeline. The individual non-mandatory tour frequency model +operates in two stages: + + * A choice is made using a random utility model between combinations of tours containing zero, one, and two or more escort tours, and between zero and one or more tours of each other purpose. + * Up to two additional tours of each purpose are added according to fixed extension probabilities. + +The main interface to the non-mandatory tour purpose frequency model is the +[non_mandatory_tour_frequency](activitysim.abm.models.non_mandatory_tour_frequency.non_mandatory_tour_frequency) +function. This function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `non_mandatory_tour_frequency.yaml` +- *Core Table*: `persons` +- *Result Field*: `non_mandatory_tour_frequency` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: NonMandatoryTourFrequencySettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/non_mandatory_tour_frequency.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/non_mandatory_tour_frequency.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: non_mandatory_tour_frequency +``` diff --git a/docs/dev-guide/components/parking_location_choice.md b/docs/dev-guide/components/parking_location_choice.md new file mode 100644 index 000000000..05b6e2a3f --- /dev/null +++ b/docs/dev-guide/components/parking_location_choice.md @@ -0,0 +1,78 @@ +(component-parking-location-choice)= +# Parking Location Choice + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.parking_location_choice +``` + +The parking location choice model selects a parking location for specified trips. While the model does not +require parking location be applied to any specific set of trips, it is usually applied for drive trips to +specific zones (e.g., CBD) in the model. + +The model provides provides a filter for both the eligible choosers and eligible parking location zone. The +trips dataframe is the chooser of this model. The zone selection filter is applied to the land use zones +dataframe. + +If this model is specified in the pipeline, the `Write Trip Matrices`_ step will using the parking location +choice results to build trip tables in lieu of the trip destination. + +The main interface to the trip mode choice model is the +[parking_location_choice](activitysim.abm.models.parking_location_choice.parking_location_choice) function. This function +is registered as an Inject step, and it is available from the pipeline. + +## Structure + +- *Configuration File*: `parking_location_choice.yaml` +- *Core Table*: `trips` +- *Result*: `omx trip matrices` +- *Skims*: `odt_skims: Origin to Destination by Time of Day`, `dot_skims: Destination to Origin by Time of Day`, +`opt_skims: Origin to Parking Zone by Time of Day`, `pdt_skims: Parking Zone to Destination by Time of Day`, +`od_skims: Origin to Destination`, `do_skims: Destination to Origin`, `op_skims: Origin to Parking Zone`, +`pd_skims: Parking Zone to Destination` + +#### Required YAML attributes: + +- `SPECIFICATION`: + This file defines the logit specification for each chooser segment. +- `COEFFICIENTS`: + Specification coefficients +- `PREPROCESSOR`: + Preprocessor definitions to run on the chooser dataframe (trips) before the model is run +- `CHOOSER_FILTER_COLUMN_NAME`: + Boolean field on the chooser table defining which choosers are eligible to parking location choice model. If no + filter is specified, all choosers (trips) are eligible for the model. +- `CHOOSER_SEGMENT_COLUMN_NAME`: + Column on the chooser table defining the parking segment for the logit model +- `SEGMENTS`: + List of eligible chooser segments in the logit specification +- `ALTERNATIVE_FILTER_COLUMN_NAME`: + Boolean field used to filter land use zones as eligible parking location choices. If no filter is specified, + then all land use zones are considered as viable choices. +- `ALT_DEST_COL_NAME`: + The column name to append with the parking location choice results. For choosers (trips) ineligible for this + model, a -1 value will be placed in column. +- `TRIP_ORIGIN`: + Origin field on the chooser trip table +- `TRIP_DESTINATION`: + Destination field on the chooser trip table + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: ParkingLocationSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/parking_location_choice.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: parking_location +.. autofunction:: wrap_skims +.. autofunction:: parking_destination_simulate +``` diff --git a/docs/dev-guide/components/school_escorting.md b/docs/dev-guide/components/school_escorting.md new file mode 100644 index 000000000..f1f162603 --- /dev/null +++ b/docs/dev-guide/components/school_escorting.md @@ -0,0 +1,167 @@ +(component-school-escorting)= +# School Escorting + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.school_escorting +``` +The school escort model determines whether children are dropped-off at or picked-up from school, +simultaneously with the chaperone responsible for chauffeuring the children, +which children are bundled together on half-tours, and the type of tour (pure escort versus rideshare). +The model is run after work and school locations have been chosen for all household members, +and after work and school tours have been generated and scheduled. +The model labels household members of driving age as potential ‘chauffeurs’ and children with school tours as potential ‘escortees’. +The model then attempts to match potential chauffeurs with potential escortees in a choice model whose alternatives +consist of ‘bundles’ of escortees with a chauffeur for each half tour. + +School escorting is a household level decision – each household will choose an alternative from the ``school_escorting_alts.csv`` file, +with the first alternative being no escorting. This file contains the following columns: + +```{eval-rst} ++------------------------------------------------+--------------------------------------------------------------------+ +| Column Name | Column Description | ++================================================+====================================================================+ +| Alt | Alternative number | ++------------------------------------------------+--------------------------------------------------------------------+ +| bundle[1,2,3] | bundle number for child 1,2, and 3 | ++------------------------------------------------+--------------------------------------------------------------------+ +| chauf[1,2,3] | chauffeur number for child 1,2, and 3 | +| | - 0 = child not escorted | +| | - 1 = chauffeur 1 as ride share | +| | - 2 = chauffeur 1 as pure escort | +| | - 3 = chauffeur 2 as ride share | +| | - 4 = chauffeur 3 as pure escort | ++------------------------------------------------+--------------------------------------------------------------------+ +| nbund[1,2] | - number of escorting bundles for chauffeur 1 and 2 | ++------------------------------------------------+--------------------------------------------------------------------+ +| nbundles | - total number of bundles | +| | - equals nbund1 + nbund2 | ++------------------------------------------------+--------------------------------------------------------------------+ +| nrs1 | - number of ride share bundles for chauffeur 1 | ++------------------------------------------------+--------------------------------------------------------------------+ +| npe1 | - number of pure escort bundles for chauffeur 1 | ++------------------------------------------------+--------------------------------------------------------------------+ +| nrs2 | - number of ride share bundles for chauffeur 2 | ++------------------------------------------------+--------------------------------------------------------------------+ +| npe2 | - number of pure escort bundles for chauffeur 2 | ++------------------------------------------------+--------------------------------------------------------------------+ +| Description | - text description of alternative | ++------------------------------------------------+--------------------------------------------------------------------+ +``` + +The model as currently implemented contains three escortees and two chauffeurs. +Escortees are students under age 16 with a mandatory tour whereas chaperones are all persons in the household over the age of 18. +For households that have more than three possible escortees, the three youngest children are selected for the model. +The two chaperones are selected as the adults of the household with the highest weight according to the following calculation: +`Weight = 100*personType + 10*gender + 1*age(0,1)` +Where `personType` is the person type number from 1 to 5, `gender` is 1 for male and 2 for female, and +`age` is a binary indicator equal to 1 if age is over 25 else 0. + +The model is run sequentially three times, once in the outbound direction, once in the inbound direction, +and again in the outbound direction with additional conditions on what happened in the inbound direction. +There are therefore three sets of utility specifications, coefficients, and pre-processor files. +Each of these files is specified in the school_escorting.yaml file along with the number of escortees and number of chaperones. + +There is also a constants section in the school_escorting.yaml file which contain two constants. +One which sets the maximum time bin difference to match school and work tours for ride sharing +and another to set the number of minutes per time bin. +In the [prototype_mtc_extended](prototype_mtc_extended) example, these are set to 1 and 60 respectively. + +After a school escorting alternative is chosen for the inbound and outbound direction, the model will +create the tours and trips associated with the decision. Pure escort tours are created, +and the mandatory tour start and end times are changed to match the school escort bundle start and end times. +(Outbound tours have their start times matched and inbound tours have their end times matched.) +Escortee drop-off / pick-up order is determined by the distance from home to the school locations. +They are ordered from smallest to largest in the outbound direction, and largest to smallest in the inbound direction. +Trips are created for each half-tour that includes school escorting according to the provided order. + +The created pure escort tours are joined to the already created mandatory tour table in the pipeline +and are also saved separately to the pipeline under the table name “school_escort_tours”. +Created school escorting trips are saved to the pipeline under the table name “school_escort_trips”. +By saving these to the pipeline, their data can be queried in downstream models to set correct purposes, +destinations, and schedules to satisfy the school escorting model choice. + +There are a host of downstream model changes that are involved when including the school escorting model. +The following list contains the models that are changed in some way when school escorting is included: + +```{eval-rst} ++--------------------------------------------------------------------+------------------------------------------------------------------+ +| File Name(s) | Change(s) Needed | ++====================================================================+==================================================================+ +| - `non_mandatory_tour_scheduling_annotate_tours_preprocessor.csv` | | +| - `tour_scheduling_nonmandatory.csv` | - Set availability conditions based on those times | +| | - Do not schedule over other school escort tours | ++--------------------------------------------------------------------+------------------------------------------------------------------+ +| - `tour_mode_choice_annotate_choosers_preprocessor.csv` | - count number of escortees on tour by parsing the | +| - `tour_mode_choice.csv` | ``escort_participants`` column | +| | - set mode choice availability based on number of escortees | +| | | ++--------------------------------------------------------------------+------------------------------------------------------------------+ +| - `stop_frequency_school.csv` | Do not allow stops for half-tours that include school escorting | +| - `stop_frequency_work.csv` | | +| - `stop_frequency_univ.csv` | | +| - `stop_frequency_escort.csv` | | ++--------------------------------------------------------------------+------------------------------------------------------------------+ +| - `trip_mode_choice_annotate_trips_preprocessor.csv` | - count number of escortees on trip by parsing the | +| - `trip_mode_choice.csv` | ``escort_participants`` column | +| | - set mode choice availability based on number of escortees | +| | | ++--------------------------------------------------------------------+------------------------------------------------------------------+ +``` + +- *Joint tour scheduling:* Joint tours are not allowed to be scheduled over school escort tours. + This happens automatically by updating the timetable object with the updated mandatory tour times + and created pure escort tour times after the school escorting model is run. + There were no code or config changes in this model, but it is still affected by school escorting. +- *Non-Mandatory tour frequency:* Pure school escort tours are joined to the tours created in the + non-mandatory tour frequency model and tour statistics (such as tour_count and tour_num) are re-calculated. +- *Non-Mandatory tour destination:* Since the primary destination of pure school escort tours is known, + they are removed from the choosers table and have their destination set according to the destination in\ + school_escort_tours table. They are also excluded from the estimation data bundle. +- *Non-Mandatory tour scheduling:* Pure escort tours need to have the non-escorting portion of their tour scheduled. + This is done by inserting availability conditions in the model specification that ensures the alternative + chosen for the start of the tour is equal to the alternative start time for outbound tours and the end time + is equal to the alternative end time for the inbound tours. There are additional terms that ensure the tour + does not overlap with subsequent school escorting tours as well. Beware -- If the availability conditions + in the school escorting model are not set correctly, the tours created may not be consistent with each other + and this model will fail. +- *Tour mode choice:* Availability conditions are set in tour mode choice to prohibit the drive alone mode + if the tour contains an escortee and the shared-ride 2 mode if the tour contains more than one escortee. +- *Stop Frequency:* No stops are allowed on half-tours that include school escorting. + This is enforced by adding availability conditions in the stop frequency model. After the stop frequency + model is run, the school escorting trips are merged from the trips created by the stop frequency model + and a new stop frequency is computed along with updated trip numbers. +- *Trip purpose, destination, and scheduling:* Trip purpose, destination, and departure times are known + for school escorting trips. As such they are removed from their respective chooser tables and the estimation + data bundles, and set according to the values in the school_escort_trips table residing in the pipeline. +- *Trip mode choice:* Like in tour mode choice, availability conditions are set to prohibit trip containing + an escortee to use the drive alone mode or the shared-ride 2 mode for trips with more than one escortee. + +Many of the changes discussed in the above list are handled in the code and the user is not required to make any +changes when implementing the school escorting model. However, it is the users responsibility to include the +changes in the following model configuration files for models downstream of the school escorting model: + + +When not including the school escorting model, all of the escort trips to and from school are counted implicitly in +escort tours determined in the non-mandatory tour frequency model. Thus, when including the school escort model and +accounting for these tours explicitly, extra care should be taken not to double count them in the non-mandatory +tour frequency model. The non-mandatory tour frequency model should be re-evaluated and likely changed to decrease +the number of escort tours generated by that model. This was not implemented in the [prototype_mtc_extended](prototype_mtc_extended) +implementation due to a lack of data surrounding the number of escort tours in the region. + +## Configuration + +```{eval-rst} +.. autopydantic_model:: SchoolEscortSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC Extended](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc_extended/configs/school_escorting.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: school_escorting +``` diff --git a/docs/dev-guide/components/school_location_choice.md b/docs/dev-guide/components/school_location_choice.md new file mode 100644 index 000000000..6238d8e42 --- /dev/null +++ b/docs/dev-guide/components/school_location_choice.md @@ -0,0 +1,53 @@ +(component-location_choice)= +# School Location + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.location_choice.school_location +``` + +The usual school location choice models assign a usual school location for the primary +mandatory activity of each child and university student in the +synthetic population. The models are composed of a set of accessibility-based parameters +(including one-way distance between home and primary destination and the tour mode choice +logsum - the expected maximum utility in the mode choice model which is given by the +logarithm of the sum of exponentials in the denominator of the logit formula) and size terms, +which describe the quantity of grade-school or university opportunities in each possible +destination. + +The school location model is made up of four steps: + * sampling - selects a sample of alternative school locations for the next model step. This selects X locations from the full set of model zones using a simple utility. + * logsums - starts with the table created above and calculates and adds the mode choice logsum expression for each alternative school location. + * simulate - starts with the table created above and chooses a final school location, this time with the mode choice logsum included. + * shadow prices - compare modeled zonal destinations to target zonal size terms and calculate updated shadow prices. + +These steps are repeated until shadow pricing convergence criteria are satisfied or a max number of iterations is reached. See [shadow_pricing](shadow_pricing). + +School location choice for [multiple_zone_systems](multiple_zone_systems) models uses [presampling](presampling) by default. + +The main interfaces to the model is the [school_location](activitysim.abm.models.location_choice.school_location) function. +This function is registered as an Inject step in the example Pipeline. [writing_logsums](writing_logsums) for how to write logsums for estimation. + +## Structure + +- *Configuration File*: `school_location.yaml` +- *Core Table*: `persons` +- *Result Field*: `school_taz` +- *School Location - Skims Keys*: `TAZ, alt_dest, AM time period, MD time period` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TourLocationComponentSettings +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/school_location.yaml) +- [Prototype MWCOG](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mwcog/configs/school_location.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: school_location +``` diff --git a/docs/dev-guide/components/shadow_pricing.md b/docs/dev-guide/components/shadow_pricing.md new file mode 100644 index 000000000..c618858fe --- /dev/null +++ b/docs/dev-guide/components/shadow_pricing.md @@ -0,0 +1,83 @@ +(component-shadow-pricing)= +# Shadow Pricing + +```{eval-rst} +.. currentmodule:: activitysim.abm.tables.shadow_pricing +``` + +The shadow pricing calculator used by work and school location choice. + +## Structure +- *Configuration File*: `shadow_pricing.yaml` + +### Turning on and saving shadow prices + +Shadow pricing is activated by setting the `use_shadow_pricing` to True in the settings.yaml file. +Once this setting has been activated, ActivitySim will search for shadow pricing configuration in +the shadow_pricing.yaml file. When shadow pricing is activated, the shadow pricing outputs will be +exported by the tracing engine. As a result, the shadow pricing output files will be prepended with +`trace` followed by the iteration number the results represent. For example, the shadow pricing +outputs for iteration 3 of the school location model will be called +`trace.shadow_price_school_shadow_prices_3.csv`. + +In total, ActivitySim generates three types of output files for each model with shadow pricing: + +- `trace.shadow_price__desired_size.csv` The size terms by zone that the ctramp and daysim + methods are attempting to target. These equal the size term columns in the land use data + multiplied by size term coefficients. + +- `trace.shadow_price__modeled_size_.csv` These are the modeled size terms after + the iteration of shadow pricing identified by the number. In other words, these are + the predicted choices by zone and segment for the model after the iteration completes. (Not + applicable for ``simulation`` option.) + +- `trace.shadow_price__shadow_prices_.csv` The actual shadow price for each zone + and segment after the of shadow pricing. This is the file that can be used to warm + start the shadow pricing mechanism in ActivitySim. (Not applicable for `simulation` option.) + +There are three shadow pricing methods in activitysim: `ctramp`, `daysim`, and `simulation`. +The first two methods try to match model output with workplace/school location model size terms, +while the last method matches model output with actual employment/enrollmment data. + +The simulation approach operates the following steps. First, every worker / student will be +assigned without shadow prices applied. The modeled share and the target share for each zone are +compared. If the zone is overassigned, a sample of people from the over-assigned zones will be +selected for re-simulation. Shadow prices are set to -999 for the next iteration for overassigned +zones which removes the zone from the set of alternatives in the next iteration. The sampled people +will then be forced to choose from one of the under-assigned zones that still have the initial +shadow price of 0. (In this approach, the shadow price variable is really just a switch turning that +zone on or off for selection in the subsequent iterations. For this reason, warm-start functionality +for this approach is not applicable.) This process repeats until the overall convergence criteria +is met or the maximum number of allowed iterations is reached. + +Because the simulation approach only re-simulates workers / students who were over-assigned in the +previous iteration, run time is significantly less (~90%) than the CTRAMP or DaySim approaches which +re-simulate all workers and students at each iteration. + +## Configuration + +```{eval-rst} +.. autopydantic_model:: ShadowPriceSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/free_parking.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/free_parking.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: ShadowPriceCalculator +.. autofunction:: buffers_for_shadow_pricing +.. autofunction:: buffers_for_shadow_pricing_choice +.. autofunction:: shadow_price_data_from_buffers_choice +.. autofunction:: shadow_price_data_from_buffers +.. autofunction:: load_shadow_price_calculator +.. autofunction:: add_size_tables +.. autofunction:: get_shadow_pricing_info +.. autofunction:: get_shadow_pricing_choice_info + +``` diff --git a/docs/dev-guide/components/stop_frequency.md b/docs/dev-guide/components/stop_frequency.md new file mode 100644 index 000000000..84e3ba25e --- /dev/null +++ b/docs/dev-guide/components/stop_frequency.md @@ -0,0 +1,53 @@ +(component-stop-frequency)= +# Stop Frequency + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.stop_frequency +``` + +The stop frequency model assigns to each tour the number of intermediate destinations a person +will travel to on each leg of the tour from the origin to tour primary destination and back. +The model incorporates the ability for more than one stop in each direction, +up to a maximum of 3, for a total of 8 trips per tour (four on each tour leg). + +Intermediate stops are not modeled for drive-transit tours because doing so can have unintended +consequences because of the difficulty of tracking the location of the vehicle. For example, +consider someone who used a park and ride for work and then took transit to an intermediate +shopping stop on the way home. Without knowing the vehicle location, it cannot be determined +if it is reasonable to allow the person to drive home. Even if the tour were constrained to allow +driving only on the first and final trip, the trip home from an intermediate stop may not use the +same park and ride where the car was dropped off on the outbound leg, which is usually as close +as possible to home because of the impracticality of coding drive access links from every park +and ride lot to every zone. + +This model also creates a trips table in the pipeline for later models. + +The main interface to the intermediate stop frequency model is the +[stop_frequency](activitysim.abm.models.stop_frequency.stop_frequency) +function. This function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `stop_frequency.yaml` +- *Core Table*: `tours` +- *Result Field*: `stop_frequency` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: StopFrequencySettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/stop_frequency.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/stop_frequency.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: stop_frequency +``` diff --git a/docs/dev-guide/components/telecommute_frequency.md b/docs/dev-guide/components/telecommute_frequency.md new file mode 100644 index 000000000..971188533 --- /dev/null +++ b/docs/dev-guide/components/telecommute_frequency.md @@ -0,0 +1,44 @@ +(component-telecommute-frequency)= +# Telecommute Frequency + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.telecommute_frequency +``` + +Telecommuting is defined as workers who work from home instead of going to work. It only applies to +workers with a regular workplace outside of home. The telecommute model consists of two +submodels - a person [work_from_home](work_from_home) model and this person telecommute frequency model. + +For all workers that work out of the home, the telecommute models predicts the +level of telecommuting. The model alternatives are the frequency of telecommuting in +days per week (0 days, 1 day, 2 to 3 days, 4+ days). + +The main interface to the work from home model is the +[telecommute_frequency](activitysim.abm.models.telecommute_frequency) function. This +function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `telecommute_frequency.yaml` +- *Core Table*: `persons` +- *Result Field*: `telecommute_frequency` + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TelecommuteFrequencySettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MWCOG](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mwcog/configs/telecommute_frequency.yaml) +- [Prototype SEMCOG](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_semcog/configs/telecommute_frequency.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: telecommute_frequency +``` diff --git a/docs/dev-guide/components/tour_mode_choice.md b/docs/dev-guide/components/tour_mode_choice.md new file mode 100644 index 000000000..43c95c38c --- /dev/null +++ b/docs/dev-guide/components/tour_mode_choice.md @@ -0,0 +1,68 @@ +(component-tour-mode-choice)= +# Tour Mode Choice + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.tour_mode_choice +``` + +The mandatory, non-mandatory, and joint tour mode choice model assigns to each tour the "primary" mode that +is used to get from the origin to the primary destination. The tour-based modeling approach requires a reconsideration +of the conventional mode choice structure. Instead of a single mode choice model used in a four-step +structure, there are two different levels where the mode choice decision is modeled: (a) the +tour mode level (upper-level choice); and, (b) the trip mode level (lower-level choice conditional +upon the upper-level choice). + +The mandatory, non-mandatory, and joint tour mode level represents the decisions that apply to the entire tour, and +that will affect the alternatives available for each individual trip or joint trip. These decisions include the choice to use a private +car versus using public transit, walking, or biking; whether carpooling will be considered; and +whether transit will be accessed by car or by foot. Trip-level decisions correspond to details of +the exact mode used for each trip, which may or may not change over the trips in the tour. + +The mandatory, non-mandatory, and joint tour mode choice structure is a nested logit model which separates +similar modes into different nests to more accurately model the cross-elasticities between the alternatives. The +eighteen modes are incorporated into the nesting structure specified in the model settings file. The +first level of nesting represents the use a private car, non-motorized +means, or transit. In the second level of nesting, the auto nest is divided into vehicle occupancy +categories, and transit is divided into walk access and drive access nests. The final level splits +the auto nests into free or pay alternatives and the transit nests into the specific line-haul modes. + +The primary variables are in-vehicle time, other travel times, cost (the influence of which is derived +from the automobile in-vehicle time coefficient and the persons' modeled value of time), +characteristics of the destination zone, demographics, and the household's level of auto +ownership. + +The main interface to the mandatory, non-mandatory, and joint tour mode model is the +[tour_mode_choice_simulate](activitysim.abm.models.tour_mode_choice.tour_mode_choice_simulate) function. This function is +called in the Inject step [tour_mode_choice_simulate](tour_mode_choice_simulate) and is registered as an Inject step in the example Pipeline. +See [writing_logsums](writing_logsums) for how to write logsums for estimation. + +## Structure + +- *Configuration File*: `tour_mode_choice.yaml` +- *Core Table*: `tours` +- *Result Field*: `mode` +- *Skims Keys*: `TAZ, destination, start, end` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TourModeComponentSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/tour_mode_choice.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/tour_mode_choice.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: tour_mode_choice_simulate +.. autofunction:: create_logsum_trips +.. autofunction:: append_tour_leg_trip_mode_choice_logsums +.. autofunction:: get_trip_mc_logsums_for_all_modes +.. autofunction:: get_trip_mc_logsums_for_all_modes +``` diff --git a/docs/dev-guide/components/transit_pass_ownership.md b/docs/dev-guide/components/transit_pass_ownership.md new file mode 100644 index 000000000..845979878 --- /dev/null +++ b/docs/dev-guide/components/transit_pass_ownership.md @@ -0,0 +1,43 @@ +(component-transit-pass-ownership)= +# Transit Pass Ownership +```{eval-rst} +.. currentmodule:: activitysim.abm.models.transit_pass_ownership +``` + +The transit fare discount is defined as persons who purchase or are +provided a transit pass. The transit fare discount consists of two submodels - this +transit pass ownership model and a person [transit_pass_subsidy](transit_pass_subsidy) model. The +result of this model can be used to condition downstream models such as the tour and trip +mode choice models via fare discount adjustments. + +The main interface to the transit pass ownership model is the +[transit_pass_ownership](activitysim.abm.models.transit_pass_ownership) function. This +function is registered as an Inject step in the example Pipeline. + +This model generates only True or False outcomes, and is structured as a binary +logit model. + +## Structure + +- *Configuration File*: `transit_pass_ownership.yaml` +- *Core Table*: `persons` +- *Result Field*: `transit_pass_ownership` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TransitPassOwnershipSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype SEMCOG](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_semcog/configs/transit_pass_ownership.yaml) +- [Prototype MWCOG](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mwcog/configs/transit_pass_ownership.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: transit_pass_ownership +``` diff --git a/docs/dev-guide/components/transit_pass_subsidy.md b/docs/dev-guide/components/transit_pass_subsidy.md new file mode 100644 index 000000000..e8e2bf772 --- /dev/null +++ b/docs/dev-guide/components/transit_pass_subsidy.md @@ -0,0 +1,42 @@ +(component-transit-pass-subsidy)= +# Transit Pass Subsidy + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.transit_pass_subsidy +``` + +The transit pass subsidy model is a component of the transit fare discount model, which models persons who purchase or are +provided a transit pass. The transit fare discount consists of two submodels - this +transit pass subsidy model and a person [transit_pass_ownership](transit_pass_ownership) model. The +result of this model can be used to condition downstream models such as the +person [transit_pass_ownership](transit_pass_ownership) model and the tour and trip mode choice models +via fare discount adjustments. + +The main interface to the transit pass subsidy model is the +[transit_pass_subsidy](activitysim.abm.models.transit_pass_subsidy) function. This +function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `transit_pass_subsidy.yaml` +- *Core Table*: `persons` +- *Result Field*: `transit_pass_subsidy` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TransitPassSubsidySettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MWCOG](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mwcog/configs/transit_pass_subsidy.yaml) +- [Prototype SEMCOG](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_semcog/configs/transit_pass_subsidy.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: transit_pass_subsidy +``` diff --git a/docs/dev-guide/components/trip_departure_choice.md b/docs/dev-guide/components/trip_departure_choice.md new file mode 100644 index 000000000..268f3b3fa --- /dev/null +++ b/docs/dev-guide/components/trip_departure_choice.md @@ -0,0 +1,33 @@ +(component-trip-departure-choice)= +# Trip Departure Choice + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.trip_departure_choice +``` + +Used in conjuction with Trip Scheduling Choice (Logit Choice), this model chooses departure +time periods consistent with the time windows for the appropriate leg of the trip. + +## Structure + +- *Configuration File*: `trip_departure_choice.yaml` +- *Core Table*: `trips` +- *Result Field*: `depart` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TripDepartureChoiceSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/trip_departure_choice.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: trip_departure_choice +``` diff --git a/docs/dev-guide/components/trip_mode_choice.md b/docs/dev-guide/components/trip_mode_choice.md new file mode 100644 index 000000000..331f09f37 --- /dev/null +++ b/docs/dev-guide/components/trip_mode_choice.md @@ -0,0 +1,49 @@ +(component-trip-mode-choice)= +# Trip Mode Choice + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.trip_mode_choice +``` + +The trip mode choice model assigns a travel mode for each trip on a given tour. It +operates similarly to the tour mode choice model, but only certain trip modes are available for +each tour mode. The correspondence rules are defined according to the following principles: + + * Pay trip modes are only available for pay tour modes (for example, drive-alone pay is only available at the trip mode level if drive-alone pay is selected as a tour mode). + * The auto occupancy of the tour mode is determined by the maximum occupancy across all auto trips that make up the tour. Therefore, the auto occupancy for the tour mode is the maximum auto occupancy for any trip on the tour. + * Transit tours can include auto shared-ride trips for particular legs. Therefore, 'casual carpool', wherein travelers share a ride to work and take transit back to the tour origin, is explicitly allowed in the tour/trip mode choice model structure. + * The walk mode is allowed for any trip. + * The availability of transit line-haul submodes on transit tours depends on the skimming and tour mode choice hierarchy. Free shared-ride modes are also available in walk-transit tours, albeit with a low probability. Paid shared-ride modes are not allowed on transit tours because no stated preference data is available on the sensitivity of transit riders to automobile value tolls, and no observed data is available to verify the number of people shifting into paid shared-ride trips on transit tours. + +The trip mode choice models explanatory variables include household and person variables, level-of-service +between the trip origin and destination according to the time period for the tour leg, urban form +variables, and alternative-specific constants segmented by tour mode. + +The main interface to the trip mode choice model is the +[trip_mode_choice](activitysim.abm.models.trip_mode_choice.trip_mode_choice) function. This function +is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `trip_mode_choice.yaml` +- *Result Field*: `trip_mode` +- *Skim Keys*: `origin, destination, trip_period` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TripModeChoiceSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/trip_mode_choice.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/trip_mode_choice.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: trip_mode_choice +``` diff --git a/docs/dev-guide/components/trip_purpose.md b/docs/dev-guide/components/trip_purpose.md new file mode 100644 index 000000000..671db4091 --- /dev/null +++ b/docs/dev-guide/components/trip_purpose.md @@ -0,0 +1,46 @@ +(component-trip-purpose)= +# Trip Purpose + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.trip_purpose +``` + +For trip other than the last trip outbound or inbound, assign a purpose based on an +observed frequency distribution. The distribution is segmented by tour purpose, tour +direction and person type. Work tours are also segmented by departure or arrival time period. + +The main interface to the trip purpose model is the +[trip_purpose](activitysim.abm.models.trip_purpose.trip_purpose) +function. This function is registered as an Inject step in the example Pipeline. + + +## Structure + + +- *Core Table*: `trips` +- *Result Field*: `purpose` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Note +Trip purpose and trip destination choice can be run iteratively together [trip_purpose_and_destination_model](activitysim.abm.models.trip_purpose_and_destination.py) + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/trip_purpose.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/trip_purpose.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: trip_purpose +.. autofunction:: choose_intermediate_trip_purpose +.. autofunction:: run_trip_purpose +``` diff --git a/docs/dev-guide/components/trip_purpose_and_destination.md b/docs/dev-guide/components/trip_purpose_and_destination.md new file mode 100644 index 000000000..8d074fa08 --- /dev/null +++ b/docs/dev-guide/components/trip_purpose_and_destination.md @@ -0,0 +1,40 @@ +(component-trip-purpose-and-destination)= +# Trip Purpose and Destination + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.trip_purpose_and_destination +``` + +After running trip purpose and trip destination separately, the two model can be ran together in an iterative fashion on +the remaining failed trips (i.e. trips that cannot be assigned a destination). Each iteration uses new random numbers. + +The main interface to the trip purpose model is the +[trip_purpose_and_destination](activitysim.abm.models.trip_purpose_and_destination.trip_purpose_and_destination) +function. This function is registered as an Inject step in the example Pipeline. + + +## Structure + +- *Core Table*: `trips` +- *Result Field*: `purpose, destination` +- *Skims Keys*: `origin, (tour primary) destination, dest_taz, trip_period` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TripPurposeAndDestinationSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/trip_purpose_and_destination.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/trip_purpose_and_destination.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: trip_purpose_and_destination +``` diff --git a/docs/dev-guide/components/trip_scheduling_choice.md b/docs/dev-guide/components/trip_scheduling_choice.md new file mode 100644 index 000000000..186078e8f --- /dev/null +++ b/docs/dev-guide/components/trip_scheduling_choice.md @@ -0,0 +1,43 @@ +(component-trip-scheduling-choice)= +# Trip Scheduling Choice + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.trip_scheduling_choice +``` + +This model uses a logit-based formulation to determine potential trip windows for the three +main components of a tour. + +- Outbound Leg: The time from leaving the origin location to the time second to last outbound stop. +- Main Leg: The time window from the last outbound stop through the main tour destination to the first inbound stop. +- Inbound Leg: The time window from the first inbound stop to the tour origin location. + +## Structure + +- *Configuration File*: `trip_scheduling_choice.yaml` +- *Core Table*: `tours` +- *Result Field*: `outbound_duration`, `main_leg_duration`, `inbound_duration` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TripSchedulingChoiceSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/trip_scheduling_choice.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: trip_scheduling_choice +.. autofunction:: generate_schedule_alternatives +.. autofunction:: no_stops_patterns +.. autofunction:: stop_one_way_only_patterns +.. autofunction:: stop_two_way_only_patterns +.. autofunction:: get_pattern_index_and_arrays +.. autofunction:: get_spec_for_segment +``` diff --git a/docs/dev-guide/components/trip_scheduling_probabilistic.md b/docs/dev-guide/components/trip_scheduling_probabilistic.md new file mode 100644 index 000000000..a92fea627 --- /dev/null +++ b/docs/dev-guide/components/trip_scheduling_probabilistic.md @@ -0,0 +1,93 @@ +(component-trip-scheduling-probabilistic)= +# Trip Scheduling (Probabilistic) + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.trip_scheduling +``` + +For each trip, assign a departure hour based on an input lookup table of percents by tour purpose, +direction (inbound/outbound), tour hour, and trip index. + + * The tour hour is the tour start hour for outbound trips and the tour end hour for inbound trips. The trip index is the trip sequence on the tour, with up to four trips per half tour + * For outbound trips, the trip depart hour must be greater than or equal to the previously selected trip depart hour + * For inbound trips, trips are handled in reverse order from the next-to-last trip in the leg back to the first. The tour end hour serves as the anchor time point from which to start assigning trip time periods. + * Outbound trips on at-work subtours are assigned the tour depart hour and inbound trips on at-work subtours are assigned the tour end hour. + +The assignment of trip depart time is run iteratively up to a max number of iterations since it is possible that +the time period selected for an earlier trip in a half-tour makes selection of a later trip time +period impossible (or very low probability). Thus, the sampling is re-run until a feasible set of trip time +periods is found. If a trip can't be scheduled after the max iterations, then the trip is assigned +the previous trip's choice (i.e. assumed to happen right after the previous trip) or dropped, as configured by the user. +The trip scheduling model does not use mode choice logsums. + +Alternatives: Available time periods in the tour window (i.e. tour start and end period). When processing stops on +work tours, the available time periods is constrained by the at-work subtour start and end period as well. + +In order to avoid trip failing, a new probabilistic trip scheduling mode was developed named "relative". +When setting the _scheduling_mode_ option to relative, trips are scheduled relative to the previously scheduled trips. +The first trip still departs when the tour starts and for every subsequent trip, the choices are selected with respect to +the previous trip depart time. Inbound trips are no longer handled in reverse order. The key to this relative mode is to +index the probabilities based on how much time is remaining on the tour. For tours that include subtours, the time remaining will +be based on the subtour start time for outbound trips and will resume again for inbound trips after the subtour ends. +By indexing the probabilities based on time remaining and scheduling relative to the previous trip, scheduling trips in relative +mode will not fail. Note also that relative scheduling mode requires the use of logic +version 2 (see warning about logic versions, below). + +An example of trip scheduling in relative mode is included in the [prototype_mwcog](prototype_mwcog) example. In this example, trip +scheduling probabilities are indexed by the following columns: + + * periods_left_min: the minimum bin for the number of time periods left on the tour. + * periods_left_max: the maximum bin for the number of time periods left on the tour. This is the same as periods_left_min until the final time period bin. + * outbound: whether the trip occurs on the outbound leg of a tour. + * tour_purpose_grouped: Tour purpose grouped into mandatory and non-mandatory categories + * half_tour_stops_remaining_grouped: The number of stops remaining on the half tour with the categories of 0 and 1+ + +Each of these variables are listed as merge columns in the trip_scheduling.yaml file and are declared in the trip scheduling preprocessor. +The variables above attempt to balance the statistics available for probability creation with the amount of segmentation of trip characteristics. + +.. warning:: + + Earlier versions of ActivitySim contained a logic error in this model, whereby + the earliest departure time for inbound legs was bounded by the maximum outbound + departure time, even if there was a scheduling failure for one or more outbound + leg departures and that bound was NA. For continuity, this process has been + retained in this ActivitySim component as *logic_version* 1, and it remains the + default process if the user does not explicitly specify a logic version in the + model settings yaml file. The revised logic includes bounding inbound legs only + when the maximum outbound departure time is well defined. This version of the + model can be used by explicitly setting `logic_version: 2` (or greater) in the + model settings yaml file. It is strongly recommended that all new model + development efforts use logic version 2; a future version of ActivitySim may + make this the default for this component, and/or remove logic version 1 entirely. + +The main interface to the trip scheduling model is the +[trip_scheduling](activitysim.abm.models.trip_scheduling.trip_scheduling) function. +This function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `trip_scheduling.yaml` +- *Core Table*: `trips` +- *Result Field*: `depart` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TripSchedulingSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/camsys/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/trip_scheduling.yaml) +- [Prototype SEMCOG](https://github.com/camsys/activitysim/blob/main/activitysim/examples/prototype_semcog/configs/trip_scheduling.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: trip_scheduling +.. autofunction:: set_stop_num +.. autofunction:: update_tour_earliest +.. autofunction:: schedule_trips_in_leg +``` diff --git a/docs/dev-guide/components/vehicle_allocation.md b/docs/dev-guide/components/vehicle_allocation.md new file mode 100644 index 000000000..68d6de034 --- /dev/null +++ b/docs/dev-guide/components/vehicle_allocation.md @@ -0,0 +1,49 @@ +(component-vehicle_allocation)= +# Vehicle Allocation + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.vehicle_allocation +``` + +The vehicle allocation model selects which vehicle would be used for a tour of given occupancy. The alternatives for the vehicle +allocation model consist of the vehicles owned by the household and an additional non household vehicle option. (Zero-auto +households would be assigned the non-household vehicle option since there are no owned vehicles in the household). +A vehicle is selected for each occupancy level set by the user such that different tour modes that have different occupancies could see different operating +characteristics. The output of the vehicle allocation model is appended to the tour table with column names [vehicle_occup_{occupancy}](vehicle_occup_{occupancy}) and the values are +the vehicle type selected. + +In [prototype_mtc_extended](prototype_mtc_extended), three occupancy levels are used: 1, 2, and 3.5. The auto operating cost +for occupancy level 1 is used in the drive alone mode and drive to transit modes. Occupancy levels 2 and 3.5 are used for shared +ride 2 and shared ride 3+ auto operating costs, respectively. Auto operating costs are selected in the mode choice pre-processors by selecting the allocated +vehicle type data from the vehicles table. If the allocated vehicle type was the non-household vehicle, the auto operating costs uses +the previous default value from [prototype_mtc](prototype_mtc). All trips and atwork subtours use the auto operating cost of the parent tour. Functionality +was added in tour and atwork subtour mode choice to annotate the tour table and create a ``selected_vehicle`` which denotes the actual vehicle used. +If the tour mode does not include a vehicle, then the ``selected_vehicle`` entry is left blank. + +The current implementation does not account for possible use of the household vehicles by other household members. Thus, it is possible for a +selected vehicle to be used in two separate tours at the same time. + +## Structure + +- *Configuration File*: `vehicle_allocation.yaml` +- *Result Field*: `vehicle_occup_{occupancy}` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: VehicleAllocationSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC Extended](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc_extended/configs/vehicle_type_choice.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: vehicle_allocation +.. autofunction:: annotate_vehicle_allocation +.. autofunction:: get_skim_dict +``` diff --git a/docs/dev-guide/components/vehicle_type_choice.md b/docs/dev-guide/components/vehicle_type_choice.md new file mode 100644 index 000000000..bdf8d65c7 --- /dev/null +++ b/docs/dev-guide/components/vehicle_type_choice.md @@ -0,0 +1,70 @@ +(component-vehicle-type-choice)= +# Vehicle Type Choice + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.vehicle_type_choice +``` + +The vehicle type choice model selects a vehicle type for each household vehicle. A vehicle type +is a combination of the vehicle's body type, age, and fuel type. For example, a 13 year old +gas powered van would have a vehicle type of *van_13_gas*. + +There are two vehicle type choice model structures implemented: + +1. Simultaneous choice of body type, age, and fuel type. +2. Simultaneous choice of body type and age, with fuel type assigned from a probability distribution. + +## Structure + +- *Configuration File*: `vehicle_type_choice.yaml` + +Input vehicle type data included in [prototype_mtc_extended](prototype_mtc_extended) came from a variety of sources. The number of vehicle makes, models, MPG, and +electric vehicle range was sourced from the Enivornmental Protection Agency (EPA). Additional data on vehicle costs were derived from the +National Household Travel Survey. Auto operating costs in the vehicle type data file were a sum of fuel costs and maintenance costs. +Fuel costs were calculated from MPG assuming a $3.00 cost for a gallon of gas. When MPG was not available to calculate fuel costs, +the closest year, vehicle type, or body type available was used. Maintenance costs were taken from AAA's +[2017 driving cost study](https://exchange.aaa.com/wp-content/uploads/2017/08/17-0013_Your-Driving-Costs-Brochure-2017-FNL-CX-1.pdf). +Size categories within body types were averaged, e.g. car was an average of AAA's small, medium, and large sedan categories. +Motorcycles were assigned the small sedan maintenance costs since they were not included in AAA's report. +Maintenance costs were not varied by vehicle year. (According to +`data from the U.S. [Bureau of Labor Statistics](https://www.bls.gov/opub/btn/volume-3/pdf/americans-aging-autos.pdf), +there was no consistent relationship between vehicle age and maintenance costs.) + +Using the above methodology, the average auto operating costs of vehicles output from :ref:`prototype_mtc_extended` was 18.4 cents. +This value is very close to the auto operating cost of 18.3 cents used in [prototype_mtc](prototype_mtc). +Non-household vehicles in prototype_mtc_extended use the auto operating cost of 18.3 cents used in prototype_mtc. +Users are encouraged to make their own assumptions and calculate auto operating costs as they see fit. + +The distribution of fuel type probabilities included in [prototype_mtc_extended](prototype_mtc_extended) are computed directly from the National Household Travel Survey data +and include the entire US. Therefore, there is "lumpiness" in probabilities due to poor statistics in the data for some vehicle types. +The user is encouraged to adjust the probabilities to their modeling region and "smooth" them for more consistent results. + +Further discussion of output results and model sensitivities can be found [here](https://github.com/ActivitySim/activitysim/wiki/Project-Meeting-2022.05.05). + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: VehicleTypeChoiceSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc_extended/configs/vehicle_type_choice.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: vehicle_type_choice +.. autofunction:: append_probabilistic_vehtype_type_choices +.. autofunction:: annotate_vehicle_type_choice_households +.. autofunction:: annotate_vehicle_type_choice_persons +.. autofunction:: annotate_vehicle_type_choice_vehicles +.. autofunction:: get_combinatorial_vehicle_alternatives +.. autofunction:: construct_model_alternatives +.. autofunction:: get_vehicle_type_data +.. autofunction:: iterate_vehicle_type_choice +``` diff --git a/docs/dev-guide/components/work_from_home.md b/docs/dev-guide/components/work_from_home.md new file mode 100644 index 000000000..d5faf9cc3 --- /dev/null +++ b/docs/dev-guide/components/work_from_home.md @@ -0,0 +1,51 @@ +(component-work_from_home)= +# Work from Home + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.work_from_home +``` + +Telecommuting is defined as workers who work from home instead of going +to work. It only applies to workers with a regular workplace outside of home. +The telecommute model consists of two submodels - this work from home model and a +person [telecommute_frequency](telecommute_frequency) model. This model predicts for all workers whether they +usually work from home. + +The work from home model includes the ability to adjust a work from home alternative +constant to attempt to realize a work from home percent for what-if type analysis. +This iterative single process procedure takes as input a number of iterations, a filter on +the choosers to use for the calculation, a target work from home percent, a tolerance percent +for convergence, and the name of the coefficient to adjust. An example setup is provided and +the coefficient adjustment at each iteration is: +``new_coefficient = log( target_percent / current_percent ) + current_coefficient``. + +The main interface to the work from home model is the +[work_from_home](activitysim.abm.models.work_from_home) function. This +function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Configuration File*: `work_from_home.yaml` +- *Core Table*: `persons` +- *Result Table*: `work_from_home` + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: WorkFromHomeSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype SEMCOG](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_semcog/configs/work_from_home.yaml) +- [Prototype MWCOG](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mwcog/configs/work_from_home.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: work_from_home +``` diff --git a/docs/dev-guide/components/work_location_choice.md b/docs/dev-guide/components/work_location_choice.md new file mode 100644 index 000000000..5a484cd30 --- /dev/null +++ b/docs/dev-guide/components/work_location_choice.md @@ -0,0 +1,52 @@ +(component-location_choice)= +# Work Location + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.location_choice.workplace_location +``` + +The usual work location choice models assign a usual work location for the primary +mandatory activity of each employed person in the +synthetic population. The models are composed of a set of accessibility-based parameters +(including one-way distance between home and primary destination and the tour mode choice +logsum - the expected maximum utility in the mode choice model which is given by the +logarithm of the sum of exponentials in the denominator of the logit formula) and size terms, +which describe the quantity of work opportunities in each possible destination. + +The work location model is made up of four steps: + * sample - selects a sample of alternative work locations for the next model step. This selects X locations from the full set of model zones using a simple utility. + * logsums - starts with the table created above and calculates and adds the mode choice logsum expression for each alternative work location. + * simulate - starts with the table created above and chooses a final work location, this time with the mode choice logsum included. + * shadow prices - compare modeled zonal destinations to target zonal size terms and calculate updated shadow prices. + +These steps are repeated until shadow pricing convergence criteria are satisfied or a max number of iterations is reached. See [shadow_pricing](shadow_pricing). + +Work location choice for [multiple_zone_systems](multiple_zone_systems) models uses [presampling](presampling) by default. + +The main interfaces to the model is the [workplace_location](activitysim.abm.models.location_choice.workplace_location) function. +This function is registered as an Inject step in the example Pipeline. See [writing_logsums](writing_logsums) for how to write logsums for estimation. + +## Structure + +- *Configuration File*: `workplace_location.yaml` +- *Core Table*: `persons` +- *Result Field*: `workplace_taz` +- *School Location - Skims Keys*: `TAZ, alt_dest, AM time period, PM time period` + +## Configuration + +```{eval-rst} +.. autopydantic_model:: TourLocationComponentSettings +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/workplace_location.yaml) +- [Prototype MWCOG](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mwcog/configs/workplace_location.yaml) + + +## Implementation + +```{eval-rst} +.. autofunction:: workplace_location +``` diff --git a/docs/dev-guide/components/write_trip_matrices.md b/docs/dev-guide/components/write_trip_matrices.md new file mode 100644 index 000000000..c5349c707 --- /dev/null +++ b/docs/dev-guide/components/write_trip_matrices.md @@ -0,0 +1,42 @@ +(component-write-trip-matrices)= +# Write Trip Matrices + +```{eval-rst} +.. currentmodule:: activitysim.abm.models.trip_matrices +``` + +Write open matrix (OMX) trip matrices for assignment. Reads the trips table post preprocessor and run expressions +to code additional data fields, with one data fields for each matrix specified. The matrices are scaled by a +household level expansion factor, which is the household sample rate by default, which is calculated when +households are read in at the beginning of a model run. The main interface to write trip +matrices is the [write_trip_matrices](activitysim.abm.models.trip_matrices.write_trip_matrices) function. +This function is registered as an Inject step in the example Pipeline. + +## Structure + +- *Core Table*: `trips` +- *Result*: `omx trip matrices` +- *Skims Keys*: `origin, destination` + +This model generates only True or False outcomes, and is structured as a binary +logit model. + + +## Configuration + +```{eval-rst} +.. autopydantic_model:: WriteTripMatricesSettings + :inherited-members: BaseModel, PydanticReadable + :show-inheritance: +``` + +### Examples + +- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/write_trip_matrices.yaml) +- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/write_trip_matrices.yaml) + +## Implementation + +```{eval-rst} +.. autofunction:: write_trip_matrices +``` diff --git a/docs/dev-guide/core-workflow-api.md b/docs/dev-guide/core-workflow-api.md new file mode 100644 index 000000000..71cb339c1 --- /dev/null +++ b/docs/dev-guide/core-workflow-api.md @@ -0,0 +1,290 @@ +# State API + +```{eval-rst} +.. currentmodule:: activitysim.core.workflow + +.. autosummary:: + :toctree: _generated + :recursive: + + State +``` + +## Constructors + +```{eval-rst} +.. autosummary:: + :toctree: _generated + :recursive: + + State.__init__ + State.make_default + State.make_temp + create_example +``` + +## Model Setup + +```{eval-rst} +.. autosummary:: + + State.init_state + State.import_extensions + State.initialize_filesystem + State.default_settings + State.load_settings + State.settings + State.filesystem + State.network_settings +``` + + + +## Basic Context Management + +The most basic function of the `State` object is to serve as a defined +namespace for storing model-relevant variables. This includes the top-level +model settings, data tables, skims, and any other Python variables +that represent the current state of a particular modeling system (or when +multiprocessing, sub-system). Below are the basic methods to get and set values +in this context in their "raw" form, with minimal additional processing. + +```{eval-rst} +.. autosummary:: + + State.get + State.set + State.drop + State.access + State.get_injectable + State.add_injectable +``` + + +## Data Access and Manipulation + +In addition to "raw" access to context variable, several methods are provided +to simplify different kinds access to the "tables" that represent the +simulation inputs and outputs of ActivitySim. We say "tables" here in the +abstract sense -- historically these tables have been stored internally by +ORCA as `pandas.DataFrame`s, but the exact internal storage format is abstracted +away here in favor of providing access to the data in several specific formats. + +```{eval-rst} + +.. rubric:: Methods + +.. autosummary:: + + State.get_dataset + State.get_dataframe + State.get_dataarray + State.get_dataframe_index_name + State.get_pyarrow + State.add_table + State.is_table + State.registered_tables + State.get_table + +.. rubric:: Accessor + +.. autosummary:: + :toctree: _generated2 + :template: autosummary/accessor.rst + + State.dataset +``` + + +## Run + +Executing model components is handled by methods in the `run` accessor. + +```{eval-rst} + +.. rubric:: Accessor + +.. autosummary:: + :toctree: _generated2 + :template: autosummary/accessor_callable.rst + + State.run + + + +.. rubric:: Attributes + +.. autosummary:: + :toctree: _generated + :template: autosummary/accessor_attribute.rst + + State.run.heading_level + + + +.. rubric:: Methods + +.. autosummary:: + :toctree: _generated + :template: autosummary/accessor_method.rst + + State.run.by_name + State.run.all +``` + +(state-checkpoint)= +## Checkpoints + +The `State` object provides access to [checkpointing](checkpointing.md) functions +within the `checkpoint` accessor. + +```{eval-rst} + +.. rubric:: Accessor + +.. autosummary:: + :toctree: _generated2 + :template: autosummary/accessor.rst + + State.checkpoint + + +.. rubric:: Attributes + +.. autosummary:: + :toctree: _generated + :template: autosummary/accessor_attribute.rst + + State.checkpoint.last_checkpoint + State.checkpoint.checkpoints + State.checkpoint.store + + +.. rubric:: Methods + +.. autosummary:: + :toctree: _generated + :template: autosummary/accessor_method.rst + + State.checkpoint.store_is_open + State.checkpoint.open_store + State.checkpoint.close_store + State.checkpoint.add + State.checkpoint.list_tables + State.checkpoint.load + State.checkpoint.get_inventory + State.checkpoint.restore + State.checkpoint.restore_from + State.checkpoint.check_against + State.checkpoint.cleanup + State.checkpoint.load_dataframe + State.checkpoint.last_checkpoint_name + State.checkpoint.is_readonly + State.checkpoint.default_pipeline_file_path + +``` + + +## Tracing + +```{eval-rst} + +.. rubric:: Attributes + +.. autosummary:: + :toctree: _generated + :template: autosummary/accessor_attribute.rst + + State.tracing.traceable_tables + State.tracing.traceable_table_ids + State.tracing.traceable_table_indexes + State.tracing.run_id + State.tracing.validation_directory + + + +.. rubric:: Methods + +.. autosummary:: + :toctree: _generated + :template: autosummary/accessor_method.rst + + State.tracing.initialize + State.tracing.register_traceable_table + State.tracing.deregister_traceable_table + State.tracing.write_csv + State.tracing.trace_df + State.tracing.trace_interaction_eval_results + State.tracing.get_trace_target + State.tracing.trace_targets + State.tracing.has_trace_targets + State.tracing.dump_df + State.tracing.delete_output_files + State.tracing.delete_trace_files +``` + + +## Logging + +```{eval-rst} + +.. rubric:: Methods + +.. autosummary:: + :toctree: _generated + :template: autosummary/accessor_method.rst + + State.logging.config_logger + State.logging.rotate_log_directory +``` + + +## Reporting + +```{eval-rst} + +.. rubric:: Accessor + +.. autosummary:: + :toctree: _generated2 + :template: autosummary/accessor.rst + + State.report + + +.. rubric:: Methods + +.. autosummary:: + :toctree: _generated + :template: autosummary/accessor_method.rst + + State.report.nominal_distribution + State.report.ordinal_distribution + State.report.histogram +``` + + +## Extending + +Methods to extend ActivitySim's functionality are available under the `extend` +accessor. + +```{eval-rst} + +.. rubric:: Accessor + +.. autosummary:: + :toctree: _generated2 + :template: autosummary/accessor.rst + + State.extend + + +.. rubric:: Methods + +.. autosummary:: + :toctree: _generated + :template: autosummary/accessor_method.rst + + State.extend.declare_table +``` diff --git a/docs/dev-guide/core-workflow-steps.md b/docs/dev-guide/core-workflow-steps.md new file mode 100644 index 000000000..c3d12541e --- /dev/null +++ b/docs/dev-guide/core-workflow-steps.md @@ -0,0 +1,76 @@ +(workflow-steps)= +# Workflow Steps + +An ActivitySim component is written as a Python function with a `@workflow.step` +decorator: + +```python +import pandas as pd +from activitysim.core import workflow + +@workflow.step +def component_name( + state: workflow.State, + named_temp_table: pd.DataFrame, + named_table: pd.DataFrame, + cached_object: bool = False, +) -> None: + ... # do something +``` + +Similar to a typical Python class method, the first argument to a +workflow step must be a reference to a [`State`](core-workflow-api.md) +object named `state`. Unlike a typical Python class method, this is +rigorously enforced -- if you decorate a function as a `workflow.step` +and the first argument is not named `state` a `TypeError` will be raised. + +Similar to the legacy ORCA-based implementation of ActivitySim, when called +by the automated processes that orchestrate component execution, the names +of all subsequent arguments should generally match objects that are expected +to be already stored as keys in the `state` context, or have decorated +constructors declared elsewhere in the imported codebase. However, if an +argument is provided with a default value, then the default value is used +unless it is explicitly overloaded in the function call; i.e. the default +value in the function signature takes precedence over any value stored in the +state's context. + +Unlike typical Python functions, the type annotations for the decorated +function's arguments are *not* totally ignored, at least when the function is +called via the [`State.run`](activitysim.core.workflow.State.run) mechanisms. +When asking for a data table to be provided, the type annotation is respected +if it is `pandas.DataFrame` or `xarray.Dataset`; the caller will receive the +table in the indicated format. + +The decorator will spin off a reference of the decorated function in the +`_RUNNABLE_STEPS` class attribute for `State`, facilitating the automatic +discovery and/or execution of this function via the +[`State.run`](activitysim.core.workflow.State.run) mechanisms. +The original function also remains available to import and use without +changes. + +The decorated function may mutate the `state` argument by adding or removing +things from the state's context. Most existing workflow steps operate in this +manner. The return type annotation can be given as "None" to flag that +this mutation behavior is indeed baked in to the decorated function -- indeed, +by implication it must be as there is no other pathway to output a result, +although that is not otherwise checked. + +Alternatively, the wrapped function can return a `Mapping[str, Any]` that +will be used to update the state's context. This happens automatically when +the step is called via the `State.run` accessor, or can (must) be handled +separately by the caller if the function is executed directly. (Future work +may migrate ActivitySim to favor or require this "pure" function behavior.) + + +## API + +```{eval-rst} +.. currentmodule:: activitysim.core.workflow + +.. autosummary:: + :toctree: _generated + :template: autosummary/class_decorator.rst + :recursive: + + step +``` diff --git a/docs/dev-guide/core-workflow-table.md b/docs/dev-guide/core-workflow-table.md new file mode 100644 index 000000000..16ce5b788 --- /dev/null +++ b/docs/dev-guide/core-workflow-table.md @@ -0,0 +1,117 @@ +# Workflow Tables + +## Standard Tables + +An ActivitySim table definition is written as a Python function with a +`workflow.table` decorator: + +```python +import pandas as pd +from activitysim.core import workflow + +@workflow.table +def households(state: workflow.State) -> pd.DataFrame: + df = pd.DataFrame(...) + # do something to set up table here + return df +``` + +Similar to a typical Python class method, the first argument to a workflow table +function is always a reference to a [`State`](core-workflow-api.md) +object named `state`. Unlike a typical Python class method, this is rigorously +enforced -- if you decorate a function as a `workflow.table` and the first +argument is not named `state` a `TypeError` will be raised. + +For most tables, the initialization of the table will be defined by values in +the {py:class}`Settings `, and there will +be no other function arguments. + +If table initialization does require access to other tables (e.g. the *vehicles* +table needs access to the *households* table to be initialized) then other tables +can be provided as matching-named arguments, in the same way as +[`workflow.step`](core-workflow-steps) functions. + +The `workflow.table` function should return a `pandas.DataFrame` or +`xarray.Dataset` representation of the table. When this function is called +automatically by the processes that orchestrate execution, this object will be +stored in the state's context as the name of the table. + + +## Temporary Tables + +In addition to the main `workflow.table` decorator, there is also a similar +`workflow.temp_table` decorator for temporary tables. + +```python +import pandas as pd +from activitysim.core import workflow + +@workflow.temp_table +def households_merged( + state: workflow.State, + households: pd.DataFrame, + land_use: pd.DataFrame, + accessibility: pd.DataFrame, +) -> pd.DataFrame: + df = pd.DataFrame(...) + # do something to set up table here + return df +``` + +There are two main differences between regular tables and temporary tables: + +1. Temporary tables are never checkpointed. + + The supposition for temporary tables is that they are generally large, and + easy to re-create on the fly, so storing them to disk is wasteful. Most + temporary tables in ActivitySim are simply merges of other existing tables, + although that is not formally a requirement of a temporary tables. + +2. Temporary tables are dropped when any predicate argument is changed in the same `State`. + + The *predicates* are all the named arguments of the `workflow.temp_table` + wrapped function after the `state`. If another ActivitySim instruction + triggers an update to *any* of these predicate arguments, the temporary + table is dropped from the state's context. It can (presumably) be recreated + easily from the (now different) predicate values if/when needed for later steps. + + +(core-workflow-cached-objects)= +## Other Cached Objects + +Other arbitrary Python objects can also be generated by functions that are +handled by the same automatic system as tables, using the `workflow.cached_object` +decorator. + +```python +from activitysim.core import workflow + +@workflow.cached_object +def name_of_object( + state: workflow.State, + other_thing: bool = False, +): + obj = [1,2,3] if other_thing else [7,8,9] # or any python object + return obj +``` + +Similar to temporary tables, these objects are not stored in checkpoint files. +Unlike temporary tables, they are not formally predicated on their arguments, so +for example in the `cached_object` above, a change in the value of `other_thing` +will cause `name_of_object` to be regenerated if it already exists in the state's +context. + +## API + +```{eval-rst} +.. currentmodule:: activitysim.core.workflow + +.. autosummary:: + :toctree: _generated + :template: autosummary/class_decorator.rst + :recursive: + + table + temp_table + cached_object +``` diff --git a/docs/dev-guide/core-workflow.md b/docs/dev-guide/core-workflow.md new file mode 100644 index 000000000..d20280902 --- /dev/null +++ b/docs/dev-guide/core-workflow.md @@ -0,0 +1,42 @@ +# Workflow State + +The general framework of each ActivitySim model is defined within an encapsulated +[`State`](core-workflow-api) object. This object maintains references to data and +model structures in a well-defined context, and allow the user to pass that context +around to the various functions and methods that progressively build up the simulated +activity patterns. + +The [`State`](core-workflow-api) object replaces the ORCA framework, and allows for data +from multiple models, or multiple versions of the same model, to co-exist in a single +Python instance simultaneously. The state contains references for overall model +settings, the network level of service features, as well as the state of the +simulated households, persons, etc. Extensive documentation on the +[API](core-workflow-api.md) for working with the state is available. + +The [`State`](core-workflow-api) class for ActivitySim also offers hooks for a +few fundamental elements: + +- [**Steps**](core-workflow-steps), also referred to as "model components", + which represent the fundamental mathematical building blocks of an ActivitySim + model. Each component contains instructions for incrementally augmenting the + state of the model, generally by adding columns or rows to an existing table, + although components are not limited to that and can potentially do other things + as well. +- [**Data Tables**](core-workflow-table), sometimes referred to in older + documentation sections as "pipeline tables". These tables include households, + persons, trips, tours, and potentially other tables that represent aspects of + the simulated agents. +- [**Other Cached Objects**](core-workflow-table.md#other-cached-objects), which can + be any arbitrary Python object that can be created programmatically and stored + in the state's context dictionary. + + +```{eval-rst} +.. toctree:: + :maxdepth: 1 + :hidden: + + core-workflow-api + core-workflow-steps + core-workflow-table +``` diff --git a/docs/dev-guide/index.rst b/docs/dev-guide/index.rst index 2ec96f83e..1f6400abc 100644 --- a/docs/dev-guide/index.rst +++ b/docs/dev-guide/index.rst @@ -23,11 +23,15 @@ Contents :maxdepth: 3 install + core-workflow using-sharrow skim-dataset + checkpointing workflows + logging ../development - ../models + component-configs components/index ../core ../benchmarking + build-docs diff --git a/docs/dev-guide/logging.md b/docs/dev-guide/logging.md new file mode 100644 index 000000000..f2a5a3db7 --- /dev/null +++ b/docs/dev-guide/logging.md @@ -0,0 +1,71 @@ +# Logging + +ActivitySim uses the usual Python [logging](https://docs.python.org/3/library/logging.html) +infrastructure, with just a few additional features. + +Generally, logging configuration is done via the +[dictConfig](https://docs.python.org/3/library/logging.config.html#logging.config.dictConfig) +interface, with keys and values as documented +[here](https://docs.python.org/3/library/logging.config.html#dictionary-schema-details). +This dictionary fed to this configurator is loaded from the `logging.yaml` +file(s) located in your model's configuration directory(s) following the +usual pattern for finding and loading config files. + +```{versionadded} 1.3 +ActivitySim no longer permits the use of `!!python/object/apply` directives inside +yaml input files. These commands imply the capability to allow arbitrary code +execution, and we would like to move away from that. +``` + +Instead of allowing arbitrary code to be loaded into and modify the logging configuration, +there are just a few particular ActivitySim functions are exposed. + +## Log file locations + +As noted above, the logging configuration implementation relies heavily on the +standard Python logging library, which by default knows nothing about ActivitySim +or its typical layout of output files, including placement of logs in a designated +output directory. Therefore, if you set the filename of a logging FileHandler to +just a string like this: + +```yaml +logfile: + class: logging.FileHandler + filename: just-a-file-name.log +``` + +then that file will be created in the Python current working directory (typically +wherever you invoked the script) and not in your designated output directory. +To fix this and write the log into your designated output directory, you can use +`get_log_file_path` as an intervening key in the configuration between the +`filename` key and the desired value, like this: + +```yaml +logfile: + class: logging.FileHandler + filename: + get_log_file_path: my-file-name.log +``` + +This special formatting will be pre-processed by ActivitySim before configuring +the logging, so that the file will be created in your designated output directory. +This also works when subprocesses are running, in which case the log file will +then be created in (or relative to) the process' log file directory, +not in (or relative to) the main output directory. + +## Identifying Subprocesses + +You may want to have different settings for subprocess workers and the main +ActivitySim process. For example, you may have the main processes log everything it writes +to both the console and a log file, while the subprocesses log mostly to files, and +only write higher priority messages (warnings and errors) to the console. Any +logging configuration can be set to bifurcate like this between the main process and +subtasks by setting "is_sub_task" and "is_not_sub_task" keys like this: + +```yaml +handlers: + console: + level: + if_sub_task: WARNING + if_not_sub_task: NOTSET +``` diff --git a/docs/dev-guide/using-sharrow.md b/docs/dev-guide/using-sharrow.md index 4e7cb9083..1feb8178a 100644 --- a/docs/dev-guide/using-sharrow.md +++ b/docs/dev-guide/using-sharrow.md @@ -216,6 +216,28 @@ For models with utility expressions that include a lot of string comparisons, been updated) sharrow can be disabled by setting `sharrow_skip: true` in the component's configuration yaml file. +### Multiprocessing Performance + +Sharrow leverages a number of performance enhancing techniques, including +parallelization of various computations. This multi-threading can provide significant +benefits within a single-process, but if enabled alongside ActivitySim's multiprocessing +paradigm, the multi-threading does more harm than good, as too many threads will +compete for limited computational resources. To avoid this, the user should completely +disable multi-threading and rely exclusively on multiprocessing to generate parallelism. +This can be done by setting a number of thread-limiting environment variables before +running Python, or immediately at the start of a Python script before ActivitySim +is loaded: + +```python +import os +os.environ["MKL_NUM_THREADS"] = "1" +os.environ["OMP_NUM_THREADS"] = "1" +os.environ["OPENBLAS_NUM_THREADS"] = "1" +os.environ["NUMBA_NUM_THREADS"] = "1" +os.environ["VECLIB_MAXIMUM_THREADS"] = "1" +os.environ["NUMEXPR_NUM_THREADS"] = "1" +``` + ### Limited Tracing and Estimation Mode Capabilities When running sharrow-optimized code, large parts of certain calculations are routed @@ -234,6 +256,44 @@ Similar constraints apply to estimation mode, as complete estimation mode output capabilities are not yet integrated with the sharrow engine. Estimation mode remains fully available when running with sharrow disabled. + +### Arithmetic on Logical Values + +In expressions written in specification files, boolean values must be treated with +care. When an expression is evaluated in the legacy implementation, the addition +of two boolean values will be processed according to numpy logic, such that: + +```python +np.array([True]) + np.array([True]) == np.array([True]) +np.array([True]) + np.array([False]) == np.array([True]) +np.array([False]) + np.array([True]) == np.array([True]) +np.array([False]) + np.array([False]) == np.array([False]) +``` + +When the same expression is evaluated using sharrow, the expression is evaluated +using Pythonesque rules, such that logical values are implicitly upcast to integers, +giving: + +```python +True + True == 2 +True + False == 1 +False + True == 1 +False + False == 0 +``` + +If this value is later upcast to a number and used in a mathematical calculation +(e.g. multiplied by a float-valued coefficient), obviously the results will vary, +as in the first case the result is never other than 1 or 0, but in the latter case +the result can also be 2. This mismatch can be readily avoided by wrapping the +term in an extra logic gate, which will evaluate the same in both environments: + +```python +(True + True)>0 == True +(True + False)>0 == True +(False + True)>0 == True +(False + False)>0 == False +``` + (digital-encoding)= ## Digital Encoding diff --git a/docs/dev-guide/workflows.md b/docs/dev-guide/workflows.md index d9bc2e2d3..133ad6435 100644 --- a/docs/dev-guide/workflows.md +++ b/docs/dev-guide/workflows.md @@ -15,7 +15,7 @@ a number of pre-packaged workflows that are included with ActivitySim. A collection of workflows used to compare the new *sharrow* code against legacy implementations can be found in the -[sharrow-contrast](https://github.com/camsys/activitysim/tree/sharrow-black/activitysim/workflows/sharrow-contrast) +[sharrow-contrast](https://github.com/ActivitySim/activitysim/tree/main/activitysim/workflows/sharrow-contrast) workflow subdirectory. Each of these first runs the relevant example model in test mode to compile the relevant functions, and then runs in production mode to measure runtime and memory usage. This is followed by another run in diff --git a/docs/development.rst b/docs/development.rst index 1c891115b..8ba941f24 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -235,21 +235,8 @@ a profiler file. Then run snakeviz on the profiler file to interactively explor Documentation ~~~~~~~~~~~~~ -The documentation is written in `reStructuredText `__ markup -and built with `Sphinx `__. In addition to converting rst files -to html and other document formats, these tools also read the inline Python docstrings and convert -them into html as well. ActivitySim's docstrings are written in `numpydoc format -`__ since it is easier to use -than standard rst format. +See :ref:`Documentation `. -To build the documentation, first make sure the required packages are installed. Next, build the -documentation in html format with the ``make html`` command run from the ``docs`` folder. - -If the activitysim package is installed, then the documentation will be built from that version of -the source code instead of the git repo version. When pushing revisions to the repo, the documentation -is automatically built by Travis after successfully passing the tests. - -GitHub automatically publishes the gh-pages branch at https://activitysim.github.io/activitysim. .. _release_steps : diff --git a/docs/estimation.rst b/docs/estimation.rst index 814575e6c..faffde5f5 100644 --- a/docs/estimation.rst +++ b/docs/estimation.rst @@ -1,5 +1,5 @@ -.. _estimation : +.. _estimation_old : Estimation ---------- @@ -80,7 +80,7 @@ Additional settings for running ActivitySim in estimation mode are specified in * ``survey_tables`` - the list of input ActivitySim format survey tables with observed choices to override model simulation choices in order to write EDBs. These tables are the output of the ``scripts\infer.py`` script that pre-processes the ActivitySim format household travel survey files for the example data and submodels -.. _estimation_example_notebooks: +.. _estimation_example_notebooks_old: Estimation Notebooks ~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/examples.rst b/docs/examples.rst index 0b9634d28..efe0ae707 100644 --- a/docs/examples.rst +++ b/docs/examples.rst @@ -4,8 +4,8 @@ .. _example : .. _examples : -Examples -======== +Built-in Examples +================= This page describes the example models included with ActivitySim. There are three basic types of example model: @@ -48,7 +48,7 @@ The current examples are: +---------------------------------+-----------------------------------------------------------+--------------+----------------------+ | :ref:`prototype_arc` | ARC agency example | 1 | In development | +---------------------------------+-----------------------------------------------------------+--------------+----------------------+ -| :ref:`prototype_semcog` | SEMCOG agency example | 1 | In development | +| :ref:`production_semcog` | SEMCOG agency example | 1 | In production | +---------------------------------+-----------------------------------------------------------+--------------+----------------------+ | :ref:`placeholder_psrc` | PSRC agency example | 2 | Future development | +---------------------------------+-----------------------------------------------------------+--------------+----------------------+ @@ -64,7 +64,7 @@ The current examples are: contains example commands to create and run several versions of the examples. See also :ref:`adding_agency_examples` for more information on agency example models. -.. _prototype_mtc : + prototype_mtc ------------- @@ -523,7 +523,7 @@ Python/pandas/numpy expressions, alternatives, and other settings used by each m alternatives file since the alternatives are not easily described as columns in the expressions file. An example of this is the ``non_mandatory_tour_frequency_alternatives.csv`` file, which lists each alternative as a row and each columns indicates the number of non-mandatory tours by purpose. The set of files for the prototype_mtc are below. The -:ref:`prototype_arc`, :ref:`prototype_semcog`, and :ref:`prototype_mtc_extended` examples added additional submodels. +:ref:`prototype_arc`, :ref:`production_semcog`, and :ref:`prototype_mtc_extended` examples added additional submodels. +------------------------------------------------+--------------------------------------------------------------------+ | Model | Specification Files | @@ -1078,7 +1078,7 @@ for examples that illustrate running ActivitySim in estimation mode and using la .. index:: multiple_zone_systems .. _multiple_zone_systems : -.. _placeholder_multiple_zone : +.. _placeholder_multiple_zone_old : placeholder_multiple_zone ------------------------- @@ -1484,9 +1484,9 @@ Example See example commands in `example_manifest.yaml `_ for running prototype_arc. For optimal performance, configure multiprocessing and chunk_size based on machine hardware. -.. _prototype_semcog : -prototype_semcog + +production_semcog ---------------- .. note:: @@ -1494,7 +1494,7 @@ prototype_semcog This example is in development -The prototype_semcog added a :ref:`work_from_home`, :ref:`telecommute_frequency`, :ref:`transit_pass_subsidy` +The production_semcog model added a :ref:`work_from_home`, :ref:`telecommute_frequency`, :ref:`transit_pass_subsidy` and :ref:`transit_pass_ownership` submodel. These submodel specification files are below, and are in addition to the :ref:`prototype_mtc` submodel :ref:`sub-model-spec-files`. These submodels were added to prototype_semcog as extensions, which is a way for users to add submodels within their model setup as opposed to formally adding them to the activitysim package. Extension submodels are run through @@ -1526,11 +1526,28 @@ Example SEMCOG Sub-Model Specification Files | | - transit_pass_ownership_coeffs.csv | +------------------------------------------------+--------------------------------------------------------------------+ +Additional extensions were included specifically as part of the production_semcog model to deal with the unique travel of +university students attending the University of Michigan (UofM). First off, UofM students have their school zones resampled +weighted by enrollment. This happens after both school location choice in the university_location_zone_override model and +after university trip destination choice in the trip_destination_univ_zone_override model. Next, parking trips are handled +explicitly by first choosing a parking location if the trip destination is in a UofM zone. Parking locations are selected +proportionally to the parking lot size as part of the parking_location_choice_at_university. Finally explicit trips are +inserted into the trips table to and from the parking lot locations in the stop_frequency_university_parking model. +While a persons vehicle is parked, trip mode choice treats the tour mode as walk-transit to determine trip mode availability +until the person returns back to their car. For more information, please see SEMCOG's final model documentation and the +SEMCOG model user quide. + +These submodels were added to production_semcog as extensions, which is a way for users to add +submodels within their model setup as opposed to formally adding them to the activitysim package. Extension submodels are run through +the `models` settings. However, the model must be run with the `simulation.py` script instead of the command line interface +in order to load the extensions folder. + + Example ~~~~~~~ See example commands in `example_manifest.yaml `_ -for running prototype_semcog. For optimal performance, configure multiprocessing and chunk_size based on machine hardware. +for running production_semcog. For optimal performance, configure multiprocessing and chunk_size based on machine hardware. .. _placeholder_psrc : diff --git a/docs/gettingstarted.rst b/docs/gettingstarted.rst index 69ed9392d..6f7a6413d 100644 --- a/docs/gettingstarted.rst +++ b/docs/gettingstarted.rst @@ -24,7 +24,7 @@ installs a variety of things on your system, and it is quite likely to be flagge Windows, anti-virus, or institutional IT policies as "unusual" software, which may require special treatment to actually install and use. -Download the installer from GitHub `here `__. +Download the installer from GitHub `here `_. It is strongly recommended to choose the option to install "for me only", as this should not require administrator privileges on your machine. Pay attention to the *complete path* of the installation location. You will need to know diff --git a/docs/howitworks.rst b/docs/howitworks.rst index 91046053c..00102fa7e 100644 --- a/docs/howitworks.rst +++ b/docs/howitworks.rst @@ -2,14 +2,16 @@ How the System Works ==================== -This page describes how the software works, how multiprocessing works, and the primary example model data schema. The code snippets below may not exactly match the latest version of the software, but they are close enough to illustrate how the system works. +This page describes how the software works, how multiprocessing works, and the primary example model data schema. The code snippets below may not exactly match the latest version of the software, but they are close enough to illustrate how the system works. .. _how_the_system_works: Execution Flow -------------- -The example model run starts by running the steps in :ref:`example_run`. +An example model run starts by running the steps in :ref:`example_run`. The following flow chart represents steps of ActivitySim, but specific implementations will have different individual model components in their execution. + +.. image:: images/example_flowchart.png Initialization ~~~~~~~~~~~~~~ @@ -209,7 +211,7 @@ as well. The various calls also setup logging, tracing, stable random number ma if trace_hh_id: tracing.register_traceable_table('persons', df) - tracing.trace_df(df, "raw.persons", warn_if_empty=True) + whale.trace_df(df, "raw.persons", warn_if_empty=True) return df @@ -232,262 +234,11 @@ actually reads the input tables from the input HDF5 or CSV file using the ``inpu column_map: HHID: household_id -School Location -~~~~~~~~~~~~~~~ - -Now that the persons, households, and other data are in memory, and also annotated with additional fields -for later calculations, the school location model can be run. The school location model is defined -in :mod:`activitysim.abm.models.location_choice`. As shown below, the school location model -actually uses the ``persons_merged`` table, which includes joined household, land use, and accessibility -tables as well. The school location model also requires the network_los object, which is discussed next. -Before running the generic iterate location choice function, the model reads the model settings file, which -defines various settings, including the expression files, sample size, mode choice logsum -calculation settings, time periods for skim lookups, shadow pricing settings, etc. - -:: - - #persons.py - # another common merge for persons - @inject.table() - def persons_merged(persons, households, land_use, accessibility): - return inject.merge_tables(persons.name, tables=[persons, households, land_use, accessibility]) - - #location_choice.py - @inject.step() - def school_location( - persons_merged, persons, households, - network_los, chunk_size, trace_hh_id, locutor - ): - - trace_label = 'school_location' - model_settings = config.read_model_settings('school_location.yaml') - - iterate_location_choice( - model_settings, - persons_merged, persons, households, - network_los, - chunk_size, trace_hh_id, locutor, trace_label - - -Deep inside the method calls, the skim matrix lookups required for this model are configured via ``network_los``. The following -code sets the keys for looking up the skim values for this model. In this case there is a ``TAZ`` column -in the households table that is renamed to `TAZ_chooser`` and a ``TAZ`` in the alternatives generation code. -The skims are lazy loaded under the name "skims" and are available in the expressions using the ``@skims`` expression. - -:: - - # create wrapper with keys for this lookup - in this case there is a home_zone_id in the choosers - # and a zone_id in the alternatives which get merged during interaction - # (logit.interaction_dataset suffixes duplicate chooser column with '_chooser') - # the skims will be available under the name "skims" for any @ expressions - skim_dict = network_los.get_default_skim_dict() - skims = skim_dict.wrap('home_zone_id', 'zone_id') - - locals_d = { - 'skims': skims, - } - -The next step is to call the :func:`activitysim.core.interaction_sample.interaction_sample` function which -selects a sample of alternatives by running a MNL choice model simulation in which alternatives must be -merged with choosers because there are interaction terms. The choosers table, the alternatives table, the -sample size, the model specification expressions file, the skims, the skims lookups, the chunk size, and the -trace labels are passed in. - -:: - - #interaction_sample - choices = interaction_sample( - choosers, - alternatives, - sample_size=sample_size, - alt_col_name=alt_dest_col_name, - spec=spec_for_segment(model_spec, segment_name), - skims=skims, - locals_d=locals_d, - chunk_size=chunk_size, - trace_label=trace_label) - -This function solves the utilities, calculates probabilities, draws random numbers, selects choices with -replacement, and returns the choices. This is done in a for loop of chunks of chooser records in order to avoid -running out of RAM when building the often large data tables. This method does a lot, and eventually -calls :func:`activitysim.core.interaction_simulate.eval_interaction_utilities`, which loops through each -expression in the expression file and solves it at once for all records in the chunked chooser -table using Python's ``eval``. - -The :func:`activitysim.core.interaction_sample.interaction_sample` method is currently only a multinomial -logit choice model. The :func:`activitysim.core.simulate.simple_simulate` method supports both MNL and NL as specified by -the ``LOGIT_TYPE`` setting in the model settings YAML file. The ``auto_ownership.yaml`` file for example specifies -the ``LOGIT_TYPE`` as ``MNL.`` - -If the expression is a skim matrix, then the entire column of chooser OD pairs is retrieved from the matrix (i.e. numpy array) -in one vectorized step. The ``orig`` and ``dest`` objects in ``self.data[orig, dest]`` in :mod:`activitysim.core.los` are vectors -and selecting numpy array items with vector indexes returns a vector. Trace data is also written out if configured (not shown below). - -:: - - # evaluate expressions from the spec multiply by coefficients and sum - interaction_utilities, trace_eval_results \ - = eval_interaction_utilities(spec, interaction_df, locals_d, trace_label, trace_rows) - - # reshape utilities (one utility column and one row per row in model_design) - # to a dataframe with one row per chooser and one column per alternative - utilities = pd.DataFrame( - interaction_utilities.values.reshape(len(choosers), alternative_count), - index=choosers.index) - - # convert to probabilities (utilities exponentiated and normalized to probs) - # probs is same shape as utilities, one row per chooser and one column for alternative - probs = logit.utils_to_probs(utilities, allow_zero_probs=allow_zero_probs, - trace_label=trace_label, trace_choosers=choosers) - - choices_df = make_sample_choices( - choosers, probs, alternatives, sample_size, alternative_count, alt_col_name, - allow_zero_probs=allow_zero_probs, trace_label=trace_label) - - # pick_count is number of duplicate picks - pick_group = choices_df.groupby([choosers.index.name, alt_col_name]) - - # number each item in each group from 0 to the length of that group - 1. - choices_df['pick_count'] = pick_group.cumcount(ascending=True) - # flag duplicate rows after first - choices_df['pick_dup'] = choices_df['pick_count'] > 0 - # add reverse cumcount to get total pick_count (conveniently faster than groupby.count + merge) - choices_df['pick_count'] += pick_group.cumcount(ascending=False) + 1 - - # drop the duplicates - choices_df = choices_df[~choices_df['pick_dup']] - del choices_df['pick_dup'] - - return choices_df - -The model creates the ``location_sample_df`` table using the choices above. This table is -then used for the next model step - solving the logsums for the sample. - -:: - - # - location_logsums - location_sample_df = run_location_logsums( - segment_name, - choosers, - network_los, - location_sample_df, - model_settings, - chunk_size, - trace_hh_id, - tracing.extend_trace_label(trace_label, 'logsums.%s' % segment_name)) - -The next steps are similar to what the sampling model does, except this time the sampled locations -table is the choosers and the model is calculating and adding the tour mode choice logsums using the -logsums settings and expression files. The resulting logsums are added to the chooser table as the -``mode_choice_logsum`` column. - -:: - - #inside run_location_logsums() defined in location_choice.py - logsums = logsum.compute_logsums( - choosers, - tour_purpose, - logsum_settings, model_settings, - network_los, - chunk_size, - trace_label) - - location_sample_df['mode_choice_logsum'] = logsums - -The :func:`activitysim.abm.models.util.logsums.compute_logsums` method goes through a similar series -of steps as the interaction_sample function but ends up calling -:func:`activitysim.core.simulate.simple_simulate_logsums` since it supports nested logit models, which -are required for the mode choice logsum calculation. The -:func:`activitysim.core.simulate.simple_simulate_logsums` returns a vector of logsums (instead of a vector -choices). - -The final school location choice model operates on the ``location_sample_df`` table created -above and is called as follows: - -:: - - # - location_simulate - choices = \ - run_location_simulate( - segment_name, - choosers, - location_sample_df, - network_los, - dest_size_terms, - model_settings, - chunk_size, - tracing.extend_trace_label(trace_label, 'simulate.%s' % segment_name)) - - choices_list.append(choices) - -The operations executed by this model are very similar to the earlier models, except -this time the sampled locations table is the choosers and the model selects one alternative for -each chooser using the school location simulate expression files and the -:func:`activitysim.core.interaction_sample_simulate.interaction_sample_simulate` function. - -Back in ``iterate_location_choice()``, the model adds the choices as a column to the ``persons`` table and adds -additional output columns using a postprocessor table annotation if specified in the settings file. Refer -to :ref:`table_annotation` for more information and the :func:`activitysim.abm.models.util.expressions.assign_columns` -function. The overall school location model is run within a shadow pricing iterative loop as shown below. Refer -to :ref:`shadow_pricing` for more information. - -:: - - - # in iterate_location_choice() in location_choice.py - for iteration in range(1, max_iterations + 1): - - if spc.use_shadow_pricing and iteration > 1: - spc.update_shadow_prices() - - choices = run_location_choice( - persons_merged_df, - network_los, - spc, - model_settings, - chunk_size, trace_hh_id, - trace_label=tracing.extend_trace_label(trace_label, 'i%s' % iteration)) - - choices_df = choices.to_frame('dest_choice') - choices_df['segment_id'] = \ - persons_merged_df[chooser_segment_column].reindex(choices_df.index) - - spc.set_choices(choices_df) - - if locutor: - spc.write_trace_files(iteration) - - if spc.use_shadow_pricing and spc.check_fit(iteration): - logging.info("%s converged after iteration %s" % (trace_label, iteration,)) - break - - # - shadow price table - if locutor: - if spc.use_shadow_pricing and 'SHADOW_PRICE_TABLE' in model_settings: - inject.add_table(model_settings['SHADOW_PRICE_TABLE'], spc.shadow_prices) - if 'MODELED_SIZE_TABLE' in model_settings: - inject.add_table(model_settings['MODELED_SIZE_TABLE'], spc.modeled_size) - - dest_choice_column_name = model_settings['DEST_CHOICE_COLUMN_NAME'] - tracing.print_summary(dest_choice_column_name, choices, value_counts=True) - - persons_df = persons.to_frame() - # We only chose school locations for the subset of persons who go to school - # so we backfill the empty choices with -1 to code as no school location - NO_DEST_TAZ = -1 - persons_df[dest_choice_column_name] = \ - choices.reindex(persons_df.index).fillna(NO_DEST_TAZ).astype(int) - - # - annotate persons table - if 'annotate_persons' in model_settings: - expressions.assign_columns( - df=persons_df, - model_settings=model_settings.get('annotate_persons'), - trace_label=tracing.extend_trace_label(trace_label, 'annotate_persons')) - - pipeline.replace_table("persons", persons_df) +Running Model Components +~~~~~~~~~~~~~~~~~~~~~~~~ +The next steps include running the model components specific to the individual implementation that you are running and as specified in the ``settings.yaml`` file. Finishing Up ~~~~~~~~~~~~ @@ -502,2553 +253,8 @@ Back in the main ``run`` command, the final steps are to: * close the data pipeline (and attached HDF5 file) -Additional Notes ----------------- - -The rest of the microsimulation models operate in a similar fashion with a few notable additions: - -* creating new tables -* vectorized 3D skims indexing -* aggregate (OD-level) accessibilities model - -Creating New Tables -~~~~~~~~~~~~~~~~~~~ - -In addition to calculating the mandatory tour frequency for a person, the model must also create mandatory tour records. -Once the number of tours is known, then the next step is to create tours records for subsequent models. This is done by the -:func:`activitysim.abm.models.util.tour_frequency.process_tours` function, which is called by the -:func:`activitysim.abm.models.mandatory_tour_frequency.mandatory_tour_frequency` function, which adds the tours to -the ``tours`` table managed in the data pipeline. This is the same basic pattern used for creating new tables - tours, trips, etc. - -:: - - @inject.step() - def mandatory_tour_frequency(persons_merged, chunk_size, trace_hh_id): - - choosers['mandatory_tour_frequency'] = choices - mandatory_tours = process_mandatory_tours( - persons=choosers, - mandatory_tour_frequency_alts=alternatives - ) - tours = pipeline.extend_table("tours", mandatory_tours) - - -Vectorized 3D Skim Indexing -~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The mode choice model uses a collection of skims with a third dimension, which in this case -is time period. Setting up the 3D index for skims is done as follows: - -:: - - skim_dict = network_los.get_default_skim_dict() - - # setup skim keys - orig_col_name = 'home_zone_id' - dest_col_name = 'destination' - - out_time_col_name = 'start' - in_time_col_name = 'end' - odt_skim_stack_wrapper = skim_dict.wrap_3d(orig_key=orig_col_name, dest_key=dest_col_name, - dim3_key='out_period') - dot_skim_stack_wrapper = skim_dict.wrap_3d(orig_key=dest_col_name, dest_key=orig_col_name, - dim3_key='in_period') - odr_skim_stack_wrapper = skim_dict.wrap_3d(orig_key=orig_col_name, dest_key=dest_col_name, - dim3_key='in_period') - dor_skim_stack_wrapper = skim_dict.wrap_3d(orig_key=dest_col_name, dest_key=orig_col_name, - dim3_key='out_period') - od_skim_stack_wrapper = skim_dict.wrap(orig_col_name, dest_col_name) - - skims = { - "odt_skims": odt_skim_stack_wrapper, - "dot_skims": dot_skim_stack_wrapper, - "od_skims": od_skim_stack_wrapper, - 'orig_col_name': orig_col_name, - 'dest_col_name': dest_col_name, - 'out_time_col_name': out_time_col_name, - 'in_time_col_name': in_time_col_name - } - -When model expressions such as ``@odt_skims['WLK_LOC_WLK_TOTIVT']`` are solved, -the ``WLK_LOC_WLK_TOTIVT`` skim matrix values for all chooser table origins, destinations, and -out_periods can be retrieved in one vectorized request. - -All the skims are preloaded (cached) by the pipeline manager at the beginning of the model -run in order to avoid repeatedly reading the skims from the OMX files on disk. This saves -significant model runtime. - -See :ref:`los_in_detail` for more information on skim handling. - -Accessibilities Model -~~~~~~~~~~~~~~~~~~~~~ - -Unlike the microsimulation models, which operate on a table of choosers, the accessibilities model is -an aggregate model that calculates accessibility measures by origin zone to all destination zones. This -model could be implemented with a matrix library such as numpy since it involves a series of matrix -and vector operations. However, all the other ActivitySim AB models - the -microsimulation models - are implemented with pandas.DataFrame tables, and so this would be a -different approach for just this model. The benefits of keeping with the same table approach to -data setup, expression management, and solving means ActivitySim has one expression syntax, is -easier to understand and document, and is more efficiently implemented. - -As illustrated below, in order to convert the -accessibility calculation into a table operation, a table of OD pairs is first built using numpy -``repeat`` and ``tile`` functions. Once constructed, the additional data columns are added to the -table in order to solve the accessibility calculations. The skim data is also added in column form. -After solving the expressions for each OD pair row, the accessibility module aggregates the results -to origin zone and write them to the datastore. - -:: - - # create OD dataframe - od_df = pd.DataFrame( - data={ - 'orig': np.repeat(np.asanyarray(land_use_df.index), zone_count), - 'dest': np.tile(np.asanyarray(land_use_df.index), zone_count) - } - ) - - -.. index:: multiprocessing - -.. _multiprocessing: - -Multiprocessing ---------------- - -Most models can be implemented as a series of independent vectorized operations on pandas DataFrames and -numpy arrays. These vectorized operations are much faster than sequential Python because they are -implemented by native code (compiled C) and are to some extent multi-threaded. But the benefits of -numpy multi-processing are limited because they only apply to atomic numpy or pandas calls, and as -soon as control returns to Python it is single-threaded and slow. - -Multi-threading is not an attractive strategy to get around the Python performance problem because -of the limitations imposed by Python's global interpreter lock (GIL). Rather than struggling with -Python multi-threading, ActivitySim uses the -Python `multiprocessing `__ library to parallelize -most models. - -ActivitySim's modular and extensible architecture makes it possible to not hardwire the multiprocessing -architecture. The specification of which models should be run in parallel, how many processers -should be used, and the segmentation of the data between processes are all specified in the -settings config file. - -Mutliprocessing Configuration -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The multiprocess_steps setting below indicate that the simulation should be broken into three steps. - -:: +Components +---------- - models: - ### mp_initialize step - - initialize_landuse - - compute_accessibility - - initialize_households - ### mp_households step - - school_location - - workplace_location - - auto_ownership_simulate - - free_parking - ### mp_summarize step - - write_tables - - multiprocess_steps: - - name: mp_initialize - begin: initialize_landuse - - name: mp_households - begin: school_location - num_processes: 2 - slice: - tables: - - households - - persons - - name: mp_summarize - begin: write_tables - - -The first multiprocess_step, ``mp_initialize``, begins with the initialize landuse step and is -implicity single-process because there is no 'slice' key indicating how to apportion the tables. -This first step includes all models listed in the 'models' setting up until the first step -in the next multiprocess_steps. - -The second multiprocess_step, ``mp_households``, starts with the school location model and continues -through auto ownership. The 'slice' info indicates that the tables should be sliced by -``households``, and that ``persons`` is a dependent table and so ``persons`` with a ref_col (foreign key -column with the same name as the ``Households`` table index) referencing a household record should be -taken to 'belong' to that household. Similarly, any other table that either share an index -(i.e. having the same name) with either the ``households`` or ``persons`` table, or have a ref_col to -either of their indexes, should also be considered a dependent table. - -The num_processes setting of 2 indicates that the pipeline should be split in two, and half of the -households should be apportioned into each subprocess pipeline, and all dependent tables should -likewise be apportioned accordingly. All other tables (e.g. ``land_use``) that do share an index (name) -or have a ref_col should be considered mirrored and be included in their entirety. - -The primary table is sliced by num_processes-sized strides. (e.g. for num_processes == 2, the -sub-processes get every second record starting at offsets 0 and 1 respectively. All other dependent -tables slices are based (directly or indirectly) on this primary stride segmentation of the primary -table index. - -Two separate sub-process are launched (num_processes == 2) and each passed the name of their -apportioned pipeline file. They execute independently and if they terminate successfully, their -contents are then coalesced into a single pipeline file whose tables should then be essentially -the same as it had been generated by a single process. - -We assume that any new tables that are created by the sub-processes are directly dependent on the -previously primary tables or are mirrored. Thus we can coalesce the sub-process pipelines by -concatenating the primary and dependent tables and simply retaining any copy of the mirrored tables -(since they should all be identical.) - -The third multiprocess_step, ``mp_summarize``, then is handled in single-process mode and runs the -``write_tables`` model, writing the results, but also leaving the tables in the pipeline, with -essentially the same tables and results as if the whole simulation had been run as a single process. - -Shared Data -~~~~~~~~~~~ - -Although multiprocessing subprocesses each have their apportioned pipeline, they also share some -data passed to them by the parent process: - - * read-only shared data such as skim matrices - * read-write shared memory when needed. For example when school and work modeled destinations by zone are compared to target zone sizes (as calculated by the size terms). - -Outputs -~~~~~~~ - -When multiprocessing is run, the following additional outputs are created, which are useful for understanding how multiprocessing works: - - * run_list.txt - which contains the expanded model run list with additional annotation for single and multiprocessed steps - * Log files for each multiprocess step and process, for example ``mp_households_0-activitysim.log`` and ``mp_households_1-activitysim.log`` - * Pipeline file for each multiprocess step and process, for example ``mp_households_0-pipeline.h5`` - * mem.csv - memory used for each step - * breadcrumbs.yaml - multiprocess global info - -See the :ref:`multiprocessing_in_detail` section for more detail. - - -.. index:: data tables -.. index:: tables -.. index:: data schema - -Data Schema ------------ - -The ActivitySim data schema depends on the sub-models implemented. The data schema listed below is for -the primary TM1 example model. These tables and skims are defined in the :mod:`activitysim.abm.tables` package. - -.. index:: constants -.. index:: households -.. index:: input store -.. index:: land use -.. index:: persons -.. index:: size terms -.. index:: time windows table -.. index:: tours -.. index:: trips - -Data Tables -~~~~~~~~~~~ - -The following tables are currently implemented: - - * households - household attributes for each household being simulated. Index: ``household_id`` (see ``activitysim.abm.tables.households.py``) - * landuse - zonal land use (such as population and employment) attributes. Index: ``zone_id`` (see ``activitysim.abm.tables.landuse.py``) - * persons - person attributes for each person being simulated. Index: ``person_id`` (see ``activitysim.abm.tables.persons.py``) - * time windows - manages person time windows throughout the simulation. See :ref:`time_windows`. Index: ``person_id`` (see the person_windows table create decorator in ``activitysim.abm.tables.time_windows.py``) - * tours - tour attributes for each tour (mandatory, non-mandatory, joint, and atwork-subtour) being simulated. Index: ``tour_id`` (see ``activitysim.abm.models.util.tour_frequency.py``) - * trips - trip attributes for each trip being simulated. Index: ``trip_id`` (see ``activitysim.abm.models.stop_frequency.py``) - -A few additional tables are also used, which are not really tables, but classes: - - * input store - reads input data tables from the input data store - * constants - various constants used throughout the model system, such as person type codes - * shadow pricing - shadow price calculator and associated utility methods, see :ref:`shadow_pricing` - * size terms - created by reading the ``destination_choice_size_terms.csv`` input file. Index - ``segment`` (see ``activitysim.abm.tables.size_terms.py``) - * skims - see :ref:`skims` - * table dictionary - stores which tables should be registered as random number generator channels for restartability of the pipeline - -Data Schema -~~~~~~~~~~~ - -The following table lists the pipeline data tables, each final field, the data type, the step that created it, and the -number of columns and rows in the table at the time of creation. The ``other_resources\scripts\make_pipeline_output.py`` script -uses the information stored in the pipeline file to create the table below for a small sample of households. - -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| Table | Field | DType | Creator |NCol |NRow | -+============================+===============================+=========+==============================+======+======+ -| accessibility | auPkRetail | float32 | compute_accessibility | 10 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| accessibility | auPkTotal | float32 | compute_accessibility | 10 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| accessibility | auOpRetail | float32 | compute_accessibility | 10 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| accessibility | auOpTotal | float32 | compute_accessibility | 10 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| accessibility | trPkRetail | float32 | compute_accessibility | 10 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| accessibility | trPkTotal | float32 | compute_accessibility | 10 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| accessibility | trOpRetail | float32 | compute_accessibility | 10 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| accessibility | trOpTotal | float32 | compute_accessibility | 10 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| accessibility | nmRetail | float32 | compute_accessibility | 10 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| accessibility | nmTotal | float32 | compute_accessibility | 10 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | TAZ | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | SERIALNO | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | PUMA5 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | income | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hhsize | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | HHT | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | UNITTYPE | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | NOC | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | BLDGSZ | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | TENURE | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | VEHICL | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hinccat1 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hinccat2 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hhagecat | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hsizecat | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hfamily | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hunittype | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hNOCcat | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hwrkrcat | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | h0004 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | h0511 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | h1215 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | h1617 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | h1824 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | h2534 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | h3549 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | h5064 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | h6579 | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | h80up | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_workers | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hwork_f | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hwork_p | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | huniv | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hnwork | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hretire | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hpresch | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hschpred | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hschdriv | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | htypdwel | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hownrent | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hadnwst | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hadwpst | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hadkids | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | bucketBin | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | originalPUMA | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hmultiunit | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | chunk_id | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | income_in_thousands | float64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | income_segment | int32 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | median_value_of_time | float64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hh_value_of_time | float64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_non_workers | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_drivers | int8 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_adults | int8 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_children | int8 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_young_children | int8 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_children_5_to_15 | int8 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_children_16_to_17 | int8 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_college_age | int8 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_young_adults | int8 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | non_family | bool | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | family | bool | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | home_is_urban | bool | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | home_is_rural | bool | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | auto_ownership | int64 | initialize_households | 65 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | hh_work_auto_savings_ratio | float32 | workplace_location | 66 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_under16_not_at_school | int8 | cdap_simulate | 73 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_travel_active | int8 | cdap_simulate | 73 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_travel_active_adults | int8 | cdap_simulate | 73 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_travel_active_preschoolers| int8 | cdap_simulate | 73 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_travel_active_children | int8 | cdap_simulate | 73 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households |num_travel_active_non_presch | int8 | cdap_simulate | 73 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | participates_in_jtf_model | int8 | cdap_simulate | 73 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | joint_tour_frequency | object | joint_tour_frequency | 75 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| households | num_hh_joint_tours | int8 | joint_tour_frequency | 75 | 100 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| joint_tour_participants | tour_id | int64 | joint_tour_participation | 4 | 13 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| joint_tour_participants | household_id | int64 | joint_tour_participation | 4 | 13 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| joint_tour_participants | person_id | int64 | joint_tour_participation | 4 | 13 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| joint_tour_participants | participant_num | int64 | joint_tour_participation | 4 | 13 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | DISTRICT | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | SD | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | county_id | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | TOTHH | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | HHPOP | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | TOTPOP | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | EMPRES | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | SFDU | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | MFDU | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | HHINCQ1 | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | HHINCQ2 | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | HHINCQ3 | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | HHINCQ4 | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | TOTACRE | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | RESACRE | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | CIACRE | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | SHPOP62P | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | TOTEMP | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | AGE0004 | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | AGE0519 | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | AGE2044 | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | AGE4564 | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | AGE65P | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | RETEMPN | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | FPSEMPN | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | HEREMPN | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | OTHEMPN | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | AGREMPN | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | MWTEMPN | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | PRKCST | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | OPRKCST | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | area_type | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | HSENROLL | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | COLLFTE | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | COLLPTE | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | TOPOLOGY | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | TERMINAL | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | ZERO | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | hhlds | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | sftaz | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | gqpop | int64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | household_density | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | employment_density | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| land_use | density_index | float64 | initialize_landuse | 44 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 4 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 5 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 6 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 7 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 8 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 9 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 10 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 11 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 12 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 13 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 14 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 15 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 16 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 17 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 18 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 19 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 20 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 21 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 22 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 23 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| person_windows | 24 | int8 | initialize_households | 21 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | household_id | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | age | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | RELATE | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | ESR | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | GRADE | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | PNUM | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | PAUG | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | DDP | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | sex | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | WEEKS | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | HOURS | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | MSP | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | POVERTY | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | EARNS | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | pagecat | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | pemploy | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | pstudent | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | ptype | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | padkid | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | age_16_to_19 | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | age_16_p | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | adult | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | male | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | female | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | has_non_worker | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | has_retiree | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | has_preschool_kid | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | has_driving_kid | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | has_school_kid | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | has_full_time | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | has_part_time | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | has_university | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | student_is_employed | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | nonstudent_to_school | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | is_student | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | is_gradeschool | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | is_highschool | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | is_university | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | school_segment | int8 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | is_worker | bool | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | home_taz | int64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | value_of_time | float64 | initialize_households | 42 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | school_taz | int32 | school_location | 45 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | distance_to_school | float32 | school_location | 45 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | roundtrip_auto_time_to_school | float32 | school_location | 45 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | workplace_taz | int32 | workplace_location | 52 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | distance_to_work | float32 | workplace_location | 52 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | workplace_in_cbd | bool | workplace_location | 52 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | work_zone_area_type | float64 | workplace_location | 52 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | roundtrip_auto_time_to_work | float32 | workplace_location | 52 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | work_auto_savings | float32 | workplace_location | 52 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | work_auto_savings_ratio | float32 | workplace_location | 52 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | free_parking_at_work | bool | free_parking | 53 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | cdap_activity | object | cdap_simulate | 59 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | cdap_rank | int64 | cdap_simulate | 59 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | travel_active | bool | cdap_simulate | 59 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | under16_not_at_school | bool | cdap_simulate | 59 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | has_preschool_kid_at_home | bool | cdap_simulate | 59 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | has_school_kid_at_home | bool | cdap_simulate | 59 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | mandatory_tour_frequency | object | mandatory_tour_frequency | 64 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | work_and_school_and_worker | bool | mandatory_tour_frequency | 64 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | work_and_school_and_student | bool | mandatory_tour_frequency | 64 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | num_mand | int8 | mandatory_tour_frequency | 64 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | num_work_tours | int8 | mandatory_tour_frequency | 64 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | num_joint_tours | int8 | joint_tour_participation | 65 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | non_mandatory_tour_frequency | int8 | non_mandatory_tour_frequency | 74 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | num_non_mand | int8 | non_mandatory_tour_frequency | 74 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | num_escort_tours | int8 | non_mandatory_tour_frequency | 74 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | num_eatout_tours | int8 | non_mandatory_tour_frequency | 74 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | num_shop_tours | int8 | non_mandatory_tour_frequency | 74 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | num_maint_tours | int8 | non_mandatory_tour_frequency | 74 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | num_discr_tours | int8 | non_mandatory_tour_frequency | 74 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | num_social_tours | int8 | non_mandatory_tour_frequency | 74 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| persons | num_non_escort_tours | int8 | non_mandatory_tour_frequency | 74 | 271 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| school_destination_size | gradeschool | float64 | initialize_households | 3 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| school_destination_size | highschool | float64 | initialize_households | 3 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| school_destination_size | university | float64 | initialize_households | 3 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| school_modeled_size | gradeschool | int32 | school_location | 3 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| school_modeled_size | highschool | int32 | school_location | 3 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| school_modeled_size | university | int32 | school_location | 3 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | person_id | int64 | mandatory_tour_frequency | 11 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | tour_type | object | mandatory_tour_frequency | 11 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | tour_type_count | int64 | mandatory_tour_frequency | 11 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | tour_type_num | int64 | mandatory_tour_frequency | 11 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | tour_num | int64 | mandatory_tour_frequency | 11 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | tour_count | int64 | mandatory_tour_frequency | 11 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | tour_category | object | mandatory_tour_frequency | 11 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | number_of_participants | int64 | mandatory_tour_frequency | 11 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | destination | int32 | mandatory_tour_frequency | 11 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | origin | int64 | mandatory_tour_frequency | 11 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | household_id | int64 | mandatory_tour_frequency | 11 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | start | int8 | mandatory_tour_scheduling | 15 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | end | int8 | mandatory_tour_scheduling | 15 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | duration | int8 | mandatory_tour_scheduling | 15 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | tdd | int64 | mandatory_tour_scheduling | 15 | 153 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | composition | object | joint_tour_composition | 16 | 159 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | tour_mode | object | tour_mode_choice_simulate | 17 | 319 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | atwork_subtour_frequency | object | atwork_subtour_frequency | 19 | 344 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | parent_tour_id | float64 | atwork_subtour_frequency | 19 | 344 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | stop_frequency | object | stop_frequency | 21 | 344 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| tours | primary_purpose | object | stop_frequency | 21 | 344 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | person_id | int64 | stop_frequency | 7 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | household_id | int64 | stop_frequency | 7 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | tour_id | int64 | stop_frequency | 7 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | primary_purpose | object | stop_frequency | 7 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | trip_num | int64 | stop_frequency | 7 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | outbound | bool | stop_frequency | 7 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | trip_count | int64 | stop_frequency | 7 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | purpose | object | trip_purpose | 8 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | destination | int32 | trip_destination | 11 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | origin | int32 | trip_destination | 11 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | failed | bool | trip_destination | 11 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | depart | float64 | trip_scheduling | 11 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| trips | trip_mode | object | trip_mode_choice | 12 | 859 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| workplace_destination_size | work_high | float64 | initialize_households | 4 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| workplace_destination_size | work_low | float64 | initialize_households | 4 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| workplace_destination_size | work_med | float64 | initialize_households | 4 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| workplace_destination_size | work_veryhigh | float64 | initialize_households | 4 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| workplace_modeled_size | work_high | int32 | workplace_location | 4 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| workplace_modeled_size | work_low | int32 | workplace_location | 4 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| workplace_modeled_size | work_med | int32 | workplace_location | 4 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ -| workplace_modeled_size | work_veryhigh | int32 | workplace_location | 4 | 1454 | -+----------------------------+-------------------------------+---------+------------------------------+------+------+ - -.. index:: skims -.. index:: omx_file -.. index:: skim matrices - -.. _skims: - -Skims -~~~~~ - -The skims class defines Inject injectables to access the skim matrices. The skims class reads the -skims from the omx_file on disk. The injectables and omx_file for the example are listed below. -The skims are float64 matrix. - -Skims are named ___